From c0f01ac59d2ba8cd5d7e7ecfad4f79ffe1584070 Mon Sep 17 00:00:00 2001 From: mumiao <1270865802zl@gmail.com> Date: Fri, 16 May 2025 14:28:55 +0800 Subject: [PATCH 01/15] chore(release): 4.3.0 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 600f244b..9bf5acef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [4.3.0](https://github.com/DTStack/dt-sql-parser/compare/v4.2.0...v4.3.0) (2025-05-16) + + +### Features + +* [#410](https://github.com/DTStack/dt-sql-parser/issues/410) optimize processCandidates tokenIndexOffset ([#411](https://github.com/DTStack/dt-sql-parser/issues/411)) ([5fccaa1](https://github.com/DTStack/dt-sql-parser/commit/5fccaa1ac6724419e3f4799b4e4f8fcdba8c049d)) +* **all sql:** add all sql expression column ([#358](https://github.com/DTStack/dt-sql-parser/issues/358)) ([26219b8](https://github.com/DTStack/dt-sql-parser/commit/26219b8eb2086f560670d2a72469f1f6cb77fb44)) +* collect entity's attribute([#333](https://github.com/DTStack/dt-sql-parser/issues/333)) ([ab60b14](https://github.com/DTStack/dt-sql-parser/commit/ab60b144bcdb74383c3f0064531282d89bf46f75)) +* complete after error syntax ([#334](https://github.com/DTStack/dt-sql-parser/issues/334)) ([99b01e5](https://github.com/DTStack/dt-sql-parser/commit/99b01e5310597dc373c3d1589c1dcca2094c22c2)) +* **flinksql:** collect comment, type attribute for entity ([#319](https://github.com/DTStack/dt-sql-parser/issues/319)) ([1f1dd19](https://github.com/DTStack/dt-sql-parser/commit/1f1dd19ff1ef3b062ffbb99f60e8539b41ad1401)), closes [#305](https://github.com/DTStack/dt-sql-parser/issues/305) +* improve errorListener msg ([#281](https://github.com/DTStack/dt-sql-parser/issues/281)) ([ff49c91](https://github.com/DTStack/dt-sql-parser/commit/ff49c91623ae05f389bb0d9205bc485acbf7e0fb)) +* **merge conflict:** merge main solve conflict ([f17f19f](https://github.com/DTStack/dt-sql-parser/commit/f17f19f57a546aad9b9c8440ad6cfb4721f93f5c)) +* support semantic context of isNewStatement ([#361](https://github.com/DTStack/dt-sql-parser/issues/361)) ([042477d](https://github.com/DTStack/dt-sql-parser/commit/042477d363e7a3f7cdb7adb0a49625346506b4c5)) +* unify variables in lexer ([#366](https://github.com/DTStack/dt-sql-parser/issues/366)) ([07ff5dc](https://github.com/DTStack/dt-sql-parser/commit/07ff5dc5a1455efda434f71536b4fef38e45b5f0)) + + +### Bug Fixes + +* [#362](https://github.com/DTStack/dt-sql-parser/issues/362) set hiveVar value ([#369](https://github.com/DTStack/dt-sql-parser/issues/369)) ([ba9e3d6](https://github.com/DTStack/dt-sql-parser/commit/ba9e3d67cd43ccf07059e369cad7157931723221)) +* [#371](https://github.com/DTStack/dt-sql-parser/issues/371) export EntityContext types ([#372](https://github.com/DTStack/dt-sql-parser/issues/372)) ([c0a2854](https://github.com/DTStack/dt-sql-parser/commit/c0a28546a0dfa3b42e7a94e81db8b833a62d3f9e)) +* **flink:** fix flinksql syntax error about ROW and function using ([#383](https://github.com/DTStack/dt-sql-parser/issues/383)) ([188d42d](https://github.com/DTStack/dt-sql-parser/commit/188d42da72ad81d5e1f96c453e9e8238692cdb9f)) +* **flink:** resolve conflicts ([ec65d4e](https://github.com/DTStack/dt-sql-parser/commit/ec65d4e21ff0a4ca8e2997b42ccc887b3bba763b)) +* minimum collect candidates boundary to fix parse performance ([#378](https://github.com/DTStack/dt-sql-parser/issues/378)) ([64ed7e4](https://github.com/DTStack/dt-sql-parser/commit/64ed7e4cd30ed12238390d113f202d4122ef9d73)) +* spell check ([#337](https://github.com/DTStack/dt-sql-parser/issues/337)) ([fb55c99](https://github.com/DTStack/dt-sql-parser/commit/fb55c999542a11b197d33b35c25bd5801eff6fa7)) + ## [4.2.0](https://github.com/DTStack/dt-sql-parser/compare/v4.1.1...v4.2.0) (2025-05-09) diff --git a/package.json b/package.json index da996e01..c031cb52 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dt-sql-parser", - "version": "4.2.0", + "version": "4.3.0", "authors": "DTStack Corporation", "description": "SQL Parsers for BigData, built with antlr4", "keywords": [ From ce8a9572a50d56830efa50ab27c49aace4bee123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=90=89=E6=98=93?= Date: Thu, 5 Jun 2025 16:41:43 +0800 Subject: [PATCH 02/15] fix(common): #424 allTokens slice when caretTokenIndex use tokenIndexOffset (#426) * test: #424 syntax after comments * fix(common): #424 allTokens slice when caretTokenIndex use tokenIndexOffset --- src/parser/common/basicSQL.ts | 3 +- .../completeAfterSyntaxError.test.ts | 16 +++++++ .../flink/suggestion/syntaxSuggestion.test.ts | 48 +++++++++++++++++++ .../completeAfterSyntaxError.test.ts | 16 +++++++ .../hive/suggestion/syntaxSuggestion.test.ts | 48 +++++++++++++++++++ .../completeAfterSyntaxError.test.ts | 16 +++++++ .../suggestion/syntaxSuggestion.test.ts | 48 +++++++++++++++++++ .../completeAfterSyntaxError.test.ts | 16 +++++++ .../mysql/suggestion/syntaxSuggestion.test.ts | 48 +++++++++++++++++++ .../completeAfterSyntaxError.test.ts | 16 +++++++ .../suggestion/syntaxSuggestion.test.ts | 48 +++++++++++++++++++ .../completeAfterSyntaxError.test.ts | 16 +++++++ .../spark/suggestion/syntaxSuggestion.test.ts | 48 +++++++++++++++++++ .../completeAfterSyntaxError.test.ts | 16 +++++++ .../trino/suggestion/syntaxSuggestion.test.ts | 48 +++++++++++++++++++ 15 files changed, 450 insertions(+), 1 deletion(-) diff --git a/src/parser/common/basicSQL.ts b/src/parser/common/basicSQL.ts index db0e4f88..385ab2dc 100644 --- a/src/parser/common/basicSQL.ts +++ b/src/parser/common/basicSQL.ts @@ -414,7 +414,7 @@ export abstract class BasicSQL< // A boundary consisting of the index of the input. const startIndex = startStatement?.start?.start ?? 0; - const stopIndex = stopStatement?.stop?.stop ?? inputSlice.length - 1; + const stopIndex = stopStatement?.stop?.stop ?? inputSlice.length; /** * Save offset of the tokenIndex in the range of input @@ -518,6 +518,7 @@ export abstract class BasicSQL< } else { if (statementCount > 1) { caretTokenIndex = caretTokenIndex - tokenIndexOffset; + allTokens = allTokens.slice(tokenIndexOffset); } } diff --git a/test/parser/flink/suggestion/completeAfterSyntaxError.test.ts b/test/parser/flink/suggestion/completeAfterSyntaxError.test.ts index a6def22a..1b593a97 100644 --- a/test/parser/flink/suggestion/completeAfterSyntaxError.test.ts +++ b/test/parser/flink/suggestion/completeAfterSyntaxError.test.ts @@ -7,6 +7,7 @@ describe('FlinkSQL Complete After Syntax Error', () => { const sql1 = `SELECT FROM tb2;\nINSERT INTO `; const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; const sql3 = `SELECT FROM t1;\nSL`; + const sql4 = `SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; test('Syntax error but end with semi, should suggest tableName', () => { const pos: CaretPosition = { @@ -62,4 +63,19 @@ describe('FlinkSQL Complete After Syntax Error', () => { ); expect(filterKeywords).toMatchUnorderedArray(['SELECT']); }); + + test('Syntax suggestion after error and comments', () => { + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + const syntaxes = flink.getSuggestionAtCaretPosition(sql4, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + // syntax + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/flink/suggestion/syntaxSuggestion.test.ts b/test/parser/flink/suggestion/syntaxSuggestion.test.ts index 7a6dd004..bd3d9b79 100644 --- a/test/parser/flink/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/flink/suggestion/syntaxSuggestion.test.ts @@ -497,4 +497,52 @@ describe('Flink SQL Syntax Suggestion', () => { expect(suggestion[0].syntaxContextType).toBe(scenario.entityContextType); }); }); + + test('Syntax suggestion after a comment', () => { + const sql = `-- the comment\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 2, + column: 18, + }; + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 3, + column: 18, + }; + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + + const syntaxes = flink.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/hive/suggestion/completeAfterSyntaxError.test.ts b/test/parser/hive/suggestion/completeAfterSyntaxError.test.ts index 93e7f9af..a30c4ac2 100644 --- a/test/parser/hive/suggestion/completeAfterSyntaxError.test.ts +++ b/test/parser/hive/suggestion/completeAfterSyntaxError.test.ts @@ -7,6 +7,7 @@ describe('HiveSQL Complete After Syntax Error', () => { const sql1 = `SELECT FROM tb2;\nINSERT INTO `; const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; const sql3 = `SELECT FROM t1;\nSL`; + const sql4 = `SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; test('Syntax error but end with semi, should suggest tableName', () => { const pos: CaretPosition = { @@ -63,4 +64,19 @@ describe('HiveSQL Complete After Syntax Error', () => { ); expect(filterKeywords).toMatchUnorderedArray(['SELECT']); }); + + test('Syntax suggestion after error and comments', () => { + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + const syntaxes = hive.getSuggestionAtCaretPosition(sql4, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + // syntax + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/hive/suggestion/syntaxSuggestion.test.ts b/test/parser/hive/suggestion/syntaxSuggestion.test.ts index 2013d578..764c90eb 100644 --- a/test/parser/hive/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/hive/suggestion/syntaxSuggestion.test.ts @@ -591,4 +591,52 @@ describe('Hive SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['month']); }); + + test('Syntax suggestion after a comment', () => { + const sql = `-- the comment\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 2, + column: 18, + }; + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 3, + column: 18, + }; + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + + const syntaxes = hive.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/impala/suggestion/completeAfterSyntaxError.test.ts b/test/parser/impala/suggestion/completeAfterSyntaxError.test.ts index 792e87c6..7ea9ce5c 100644 --- a/test/parser/impala/suggestion/completeAfterSyntaxError.test.ts +++ b/test/parser/impala/suggestion/completeAfterSyntaxError.test.ts @@ -7,6 +7,7 @@ describe('ImpalaSQL Complete After Syntax Error', () => { const sql1 = `SELECT FROM tb2;\nINSERT INTO `; const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; const sql3 = `SELECT FROM t1;\nSL`; + const sql4 = `SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; test('Syntax error but end with semi, should suggest tableName', () => { const pos: CaretPosition = { @@ -63,4 +64,19 @@ describe('ImpalaSQL Complete After Syntax Error', () => { ); expect(filterKeywords).toMatchUnorderedArray(['SELECT']); }); + + test('Syntax suggestion after error and comments', () => { + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + const syntaxes = impala.getSuggestionAtCaretPosition(sql4, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + // syntax + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/impala/suggestion/syntaxSuggestion.test.ts b/test/parser/impala/suggestion/syntaxSuggestion.test.ts index 02cf8d4d..d2cb2a62 100644 --- a/test/parser/impala/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/impala/suggestion/syntaxSuggestion.test.ts @@ -462,4 +462,52 @@ describe('Impala SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['YEAR']); }); + + test('Syntax suggestion after a comment', () => { + const sql = `-- the comment\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 2, + column: 18, + }; + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 3, + column: 18, + }; + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + + const syntaxes = impala.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/mysql/suggestion/completeAfterSyntaxError.test.ts b/test/parser/mysql/suggestion/completeAfterSyntaxError.test.ts index 7f5acc4a..38fc56bf 100644 --- a/test/parser/mysql/suggestion/completeAfterSyntaxError.test.ts +++ b/test/parser/mysql/suggestion/completeAfterSyntaxError.test.ts @@ -7,6 +7,7 @@ describe('MySQL Complete After Syntax Error', () => { const sql1 = `SELECT FROM tb2;\nINSERT INTO `; const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; const sql3 = `SELECT FROM t1;\nSL`; + const sql4 = `SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; test('Syntax error but end with semi, should suggest tableName', () => { const pos: CaretPosition = { @@ -62,4 +63,19 @@ describe('MySQL Complete After Syntax Error', () => { ); expect(filterKeywords).toMatchUnorderedArray(['SELECT', 'SIGNAL']); }); + + test('Syntax suggestion after error and comments', () => { + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition(sql4, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + // syntax + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts index 98bb4852..ea0f6d66 100644 --- a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts @@ -640,4 +640,52 @@ describe('MySQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['score']); }); + + test('Syntax suggestion after a comment', () => { + const sql = `-- the comment\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 2, + column: 18, + }; + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 3, + column: 18, + }; + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/postgresql/suggestion/completeAfterSyntaxError.test.ts b/test/parser/postgresql/suggestion/completeAfterSyntaxError.test.ts index 07f5ddac..09b2ffeb 100644 --- a/test/parser/postgresql/suggestion/completeAfterSyntaxError.test.ts +++ b/test/parser/postgresql/suggestion/completeAfterSyntaxError.test.ts @@ -7,6 +7,7 @@ describe('PostgreSQL Complete After Syntax Error', () => { const sql1 = `SELECT FROM tb2;\nINSERT INTO `; const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; const sql3 = `SELECT FROM t1;\nSL`; + const sql4 = `SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; test('Syntax error but end with semi, should suggest tableName', () => { const pos: CaretPosition = { @@ -62,4 +63,19 @@ describe('PostgreSQL Complete After Syntax Error', () => { ); expect(filterKeywords).toMatchUnorderedArray(['SELECT']); }); + + test('Syntax suggestion after error and comments', () => { + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + const syntaxes = postgresql.getSuggestionAtCaretPosition(sql4, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + // syntax + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts b/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts index abc906ba..4e80d599 100644 --- a/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts @@ -1142,4 +1142,52 @@ describe('Postgre SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['depname']); }); + + test('Syntax suggestion after a comment', () => { + const sql = `-- the comment\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 2, + column: 18, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 3, + column: 18, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + + const syntaxes = postgresql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/spark/suggestion/completeAfterSyntaxError.test.ts b/test/parser/spark/suggestion/completeAfterSyntaxError.test.ts index fde5b27d..96c1ba16 100644 --- a/test/parser/spark/suggestion/completeAfterSyntaxError.test.ts +++ b/test/parser/spark/suggestion/completeAfterSyntaxError.test.ts @@ -7,6 +7,7 @@ describe('SparkSQL Complete After Syntax Error', () => { const sql1 = `SELECT FROM tb2;\nINSERT INTO `; const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; const sql3 = `SELECT FROM t1;\nSL`; + const sql4 = `SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; test('Syntax error but end with semi, should suggest tableName', () => { const pos: CaretPosition = { @@ -63,4 +64,19 @@ describe('SparkSQL Complete After Syntax Error', () => { ); expect(filterKeywords).toMatchUnorderedArray(['SELECT']); }); + + test('Syntax suggestion after error and comments', () => { + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + const syntaxes = spark.getSuggestionAtCaretPosition(sql4, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + // syntax + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/spark/suggestion/syntaxSuggestion.test.ts b/test/parser/spark/suggestion/syntaxSuggestion.test.ts index 4bb8245f..207cb550 100644 --- a/test/parser/spark/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/spark/suggestion/syntaxSuggestion.test.ts @@ -761,4 +761,52 @@ describe('Spark SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['quantity']); }); + + test('Syntax suggestion after a comment', () => { + const sql = `-- the comment\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 2, + column: 18, + }; + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 3, + column: 18, + }; + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + + const syntaxes = spark.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/trino/suggestion/completeAfterSyntaxError.test.ts b/test/parser/trino/suggestion/completeAfterSyntaxError.test.ts index 59f33213..4a38a64a 100644 --- a/test/parser/trino/suggestion/completeAfterSyntaxError.test.ts +++ b/test/parser/trino/suggestion/completeAfterSyntaxError.test.ts @@ -7,6 +7,7 @@ describe('TrinoSQL Complete After Syntax Error', () => { const sql1 = `SELECT FROM tb2;\nINSERT INTO `; const sql2 = `SELECT FROM tb3;\nCREATE TABLE `; const sql3 = `SELECT FROM t1;\nSL`; + const sql4 = `SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; test('Syntax error but end with semi, should suggest tableName', () => { const pos: CaretPosition = { @@ -62,4 +63,19 @@ describe('TrinoSQL Complete After Syntax Error', () => { ); expect(filterKeywords).toMatchUnorderedArray(['SELECT']); }); + + test('Syntax suggestion after error and comments', () => { + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + const syntaxes = trino.getSuggestionAtCaretPosition(sql4, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + // syntax + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); diff --git a/test/parser/trino/suggestion/syntaxSuggestion.test.ts b/test/parser/trino/suggestion/syntaxSuggestion.test.ts index 864ba751..947e27da 100644 --- a/test/parser/trino/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/trino/suggestion/syntaxSuggestion.test.ts @@ -564,4 +564,52 @@ describe('Trino SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['friends']); }); + + test('Syntax suggestion after a comment', () => { + const sql = `-- the comment\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 2, + column: 18, + }; + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 3, + column: 18, + }; + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); + + test('Syntax suggestion after comments', () => { + const sql = `-- SELECT FROM t1;\n-- the comment 1\n-- the comment 2\nSELECT * FROM db.`; + const pos: CaretPosition = { + lineNumber: 4, + column: 18, + }; + + const syntaxes = trino.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.TABLE + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']); + }); }); From 6671427aafb91a964de7aaad70060b146010043b Mon Sep 17 00:00:00 2001 From: mumiao <1270865802zl@gmail.com> Date: Thu, 5 Jun 2025 16:54:25 +0800 Subject: [PATCH 03/15] chore(release): 4.3.1 --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bf5acef..79a85ac5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [4.3.1](https://github.com/DTStack/dt-sql-parser/compare/v4.3.0...v4.3.1) (2025-06-05) + + +### Bug Fixes + +* **common:** [#424](https://github.com/DTStack/dt-sql-parser/issues/424) allTokens slice when caretTokenIndex use tokenIndexOffset ([#426](https://github.com/DTStack/dt-sql-parser/issues/426)) ([616dc11](https://github.com/DTStack/dt-sql-parser/commit/616dc1126d742bcdd902752ddaedab9b352a8927)) + ## [4.3.0](https://github.com/DTStack/dt-sql-parser/compare/v4.2.0...v4.3.0) (2025-05-16) diff --git a/package.json b/package.json index c031cb52..1d202d11 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dt-sql-parser", - "version": "4.3.0", + "version": "4.3.1", "authors": "DTStack Corporation", "description": "SQL Parsers for BigData, built with antlr4", "keywords": [ From e0b6a94b46f88f937d2ddaf5e190ae121e019abc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=90=89=E6=98=93?= Date: Tue, 24 Jun 2025 16:04:26 +0800 Subject: [PATCH 04/15] fix(postgresql): #432 remove error rule * test: #432 validate unComplete sql * fix: #432 remove error rule --- src/grammar/postgresql/PostgreSqlParser.g4 | 1 - src/lib/postgresql/PostgreSqlParser.interp | 2 +- src/lib/postgresql/PostgreSqlParser.ts | 4728 ++++++++--------- test/parser/flink/syntax/fixtures/select.sql | 6 +- test/parser/hive/syntax/fixtures/select.sql | 6 +- test/parser/impala/syntax/fixtures/select.sql | 6 +- test/parser/mysql/syntax/fixtures/select.sql | 4 + .../postgresql/syntax/fixtures/select.sql | 6 +- .../spark/syntax/fixtures/selectClusterBy.sql | 4 + test/parser/trino/syntax/fixtures/select.sql | 4 + 10 files changed, 2392 insertions(+), 2375 deletions(-) diff --git a/src/grammar/postgresql/PostgreSqlParser.g4 b/src/grammar/postgresql/PostgreSqlParser.g4 index 21ae81a9..592e0c76 100644 --- a/src/grammar/postgresql/PostgreSqlParser.g4 +++ b/src/grammar/postgresql/PostgreSqlParser.g4 @@ -2378,7 +2378,6 @@ primaryExpression | OPEN_PAREN expression COMMA exprList CLOSE_PAREN | row KW_OVERLAPS row | columnNamePath - | qualifiedName | primaryExpression TYPECAST typename | (PLUS | MINUS) primaryExpression | primaryExpression qualOp primaryExpression? diff --git a/src/lib/postgresql/PostgreSqlParser.interp b/src/lib/postgresql/PostgreSqlParser.interp index bf31e0f3..f46a6352 100644 --- a/src/lib/postgresql/PostgreSqlParser.interp +++ b/src/lib/postgresql/PostgreSqlParser.interp @@ -1657,4 +1657,4 @@ sqlExpression atn: -[4, 1, 592, 8485, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 1, 0, 5, 0, 932, 8, 0, 10, 0, 12, 0, 935, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 941, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1061, 8, 2, 3, 2, 1063, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1072, 8, 4, 1, 4, 5, 4, 1075, 8, 4, 10, 4, 12, 4, 1078, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1083, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1118, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1128, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1134, 8, 7, 1, 7, 5, 7, 1137, 8, 7, 10, 7, 12, 7, 1140, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1146, 8, 8, 1, 8, 5, 8, 1149, 8, 8, 10, 8, 12, 8, 1152, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1158, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1169, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1175, 8, 11, 10, 11, 12, 11, 1178, 9, 11, 1, 11, 3, 11, 1181, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1193, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1199, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1205, 8, 12, 1, 12, 1, 12, 3, 12, 1209, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1214, 8, 12, 1, 12, 1, 12, 3, 12, 1218, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1231, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1241, 8, 12, 3, 12, 1243, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1249, 8, 13, 1, 13, 5, 13, 1252, 8, 13, 10, 13, 12, 13, 1255, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1267, 8, 15, 1, 15, 3, 15, 1270, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1275, 8, 15, 1, 15, 5, 15, 1278, 8, 15, 10, 15, 12, 15, 1281, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1291, 8, 17, 1, 18, 1, 18, 3, 18, 1295, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1307, 8, 19, 1, 20, 1, 20, 3, 20, 1311, 8, 20, 1, 20, 3, 20, 1314, 8, 20, 1, 20, 1, 20, 3, 20, 1318, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1330, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1348, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1353, 8, 22, 10, 22, 12, 22, 1356, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1361, 8, 23, 10, 23, 12, 23, 1364, 9, 23, 1, 24, 1, 24, 3, 24, 1368, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1375, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1383, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1389, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1397, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1405, 8, 28, 1, 29, 1, 29, 3, 29, 1409, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1423, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1428, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1433, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1445, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1451, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1463, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1468, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1478, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1484, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1489, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1498, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1505, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1510, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1515, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1525, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1530, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1535, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1542, 8, 38, 1, 38, 1, 38, 3, 38, 1546, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1560, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1566, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1572, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1577, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1582, 8, 39, 10, 39, 12, 39, 1585, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1593, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1602, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1609, 8, 42, 10, 42, 12, 42, 1612, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1620, 8, 42, 1, 42, 1, 42, 3, 42, 1624, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1636, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1644, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1654, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1674, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1679, 8, 42, 1, 42, 3, 42, 1682, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1689, 8, 42, 1, 42, 3, 42, 1692, 8, 42, 1, 42, 1, 42, 3, 42, 1696, 8, 42, 1, 42, 1, 42, 3, 42, 1700, 8, 42, 1, 42, 3, 42, 1703, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1708, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1713, 8, 42, 1, 42, 1, 42, 3, 42, 1717, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1726, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1732, 8, 42, 1, 42, 1, 42, 3, 42, 1736, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1745, 8, 42, 1, 42, 3, 42, 1748, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1754, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1763, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1773, 8, 42, 11, 42, 12, 42, 1774, 1, 42, 1, 42, 3, 42, 1779, 8, 42, 1, 42, 1, 42, 3, 42, 1783, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1788, 8, 42, 1, 42, 3, 42, 1791, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1797, 8, 42, 4, 42, 1799, 8, 42, 11, 42, 12, 42, 1800, 1, 42, 1, 42, 3, 42, 1805, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1811, 8, 42, 1, 42, 1, 42, 3, 42, 1815, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1820, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1825, 8, 42, 1, 42, 1, 42, 3, 42, 1829, 8, 42, 1, 42, 3, 42, 1832, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1839, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1850, 8, 46, 10, 46, 12, 46, 1853, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1865, 8, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1890, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1898, 8, 50, 10, 50, 12, 50, 1901, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1907, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1912, 8, 51, 1, 51, 1, 51, 3, 51, 1916, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1923, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1928, 8, 51, 1, 51, 3, 51, 1931, 8, 51, 3, 51, 1933, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1938, 8, 52, 1, 53, 1, 53, 3, 53, 1942, 8, 53, 1, 53, 1, 53, 3, 53, 1946, 8, 53, 1, 53, 1, 53, 3, 53, 1950, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1955, 8, 53, 1, 53, 3, 53, 1958, 8, 53, 1, 53, 1, 53, 3, 53, 1962, 8, 53, 1, 53, 3, 53, 1965, 8, 53, 1, 53, 1, 53, 3, 53, 1969, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1977, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1982, 8, 53, 1, 53, 3, 53, 1985, 8, 53, 1, 53, 1, 53, 3, 53, 1989, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1995, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2004, 8, 54, 1, 54, 1, 54, 3, 54, 2008, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2018, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2023, 8, 54, 5, 54, 2025, 8, 54, 10, 54, 12, 54, 2028, 9, 54, 1, 54, 3, 54, 2031, 8, 54, 5, 54, 2033, 8, 54, 10, 54, 12, 54, 2036, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2042, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2047, 8, 55, 5, 55, 2049, 8, 55, 10, 55, 12, 55, 2052, 9, 55, 1, 55, 1, 55, 3, 55, 2056, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2066, 8, 56, 10, 56, 12, 56, 2069, 9, 56, 1, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 57, 1, 57, 3, 57, 2077, 8, 57, 1, 57, 1, 57, 3, 57, 2081, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2086, 8, 57, 1, 57, 1, 57, 3, 57, 2090, 8, 57, 1, 57, 3, 57, 2093, 8, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2110, 8, 57, 1, 57, 3, 57, 2113, 8, 57, 1, 57, 3, 57, 2116, 8, 57, 1, 57, 3, 57, 2119, 8, 57, 1, 57, 3, 57, 2122, 8, 57, 1, 57, 3, 57, 2125, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 1, 57, 3, 57, 2135, 8, 57, 1, 57, 3, 57, 2138, 8, 57, 1, 57, 3, 57, 2141, 8, 57, 1, 57, 3, 57, 2144, 8, 57, 1, 57, 3, 57, 2147, 8, 57, 3, 57, 2149, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2156, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2162, 8, 59, 10, 59, 12, 59, 2165, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2172, 8, 60, 10, 60, 12, 60, 2175, 9, 60, 1, 61, 1, 61, 3, 61, 2179, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2187, 8, 61, 10, 61, 12, 61, 2190, 9, 61, 3, 61, 2192, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2197, 8, 62, 1, 62, 5, 62, 2200, 8, 62, 10, 62, 12, 62, 2203, 9, 62, 1, 62, 1, 62, 3, 62, 2207, 8, 62, 1, 62, 3, 62, 2210, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2215, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2224, 8, 63, 3, 63, 2226, 8, 63, 1, 63, 1, 63, 3, 63, 2230, 8, 63, 1, 63, 3, 63, 2233, 8, 63, 1, 63, 1, 63, 3, 63, 2237, 8, 63, 1, 63, 5, 63, 2240, 8, 63, 10, 63, 12, 63, 2243, 9, 63, 1, 64, 1, 64, 3, 64, 2247, 8, 64, 1, 64, 1, 64, 3, 64, 2251, 8, 64, 1, 64, 3, 64, 2254, 8, 64, 1, 64, 1, 64, 3, 64, 2258, 8, 64, 1, 65, 3, 65, 2261, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2266, 8, 65, 1, 65, 3, 65, 2269, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2274, 8, 65, 1, 65, 3, 65, 2277, 8, 65, 1, 65, 1, 65, 3, 65, 2281, 8, 65, 1, 65, 3, 65, 2284, 8, 65, 1, 65, 3, 65, 2287, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2292, 8, 65, 1, 65, 3, 65, 2295, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2303, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2313, 8, 65, 11, 65, 12, 65, 2314, 1, 65, 1, 65, 3, 65, 2319, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2326, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2331, 8, 65, 1, 65, 3, 65, 2334, 8, 65, 1, 65, 3, 65, 2337, 8, 65, 1, 65, 3, 65, 2340, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2345, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2354, 8, 68, 10, 68, 12, 68, 2357, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2362, 8, 68, 1, 68, 1, 68, 3, 68, 2366, 8, 68, 1, 68, 3, 68, 2369, 8, 68, 1, 68, 3, 68, 2372, 8, 68, 1, 68, 5, 68, 2375, 8, 68, 10, 68, 12, 68, 2378, 9, 68, 1, 68, 1, 68, 5, 68, 2382, 8, 68, 10, 68, 12, 68, 2385, 9, 68, 3, 68, 2387, 8, 68, 1, 68, 1, 68, 3, 68, 2391, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2397, 8, 68, 10, 68, 12, 68, 2400, 9, 68, 1, 68, 1, 68, 3, 68, 2404, 8, 68, 1, 68, 3, 68, 2407, 8, 68, 1, 68, 3, 68, 2410, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2417, 8, 68, 1, 68, 5, 68, 2420, 8, 68, 10, 68, 12, 68, 2423, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2431, 8, 68, 1, 68, 3, 68, 2434, 8, 68, 1, 68, 3, 68, 2437, 8, 68, 1, 68, 5, 68, 2440, 8, 68, 10, 68, 12, 68, 2443, 9, 68, 3, 68, 2445, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2455, 8, 70, 10, 70, 12, 70, 2458, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2465, 8, 71, 10, 71, 12, 71, 2468, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2484, 8, 74, 1, 75, 1, 75, 3, 75, 2488, 8, 75, 1, 75, 1, 75, 3, 75, 2492, 8, 75, 3, 75, 2494, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2511, 8, 78, 3, 78, 2513, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2527, 8, 80, 10, 80, 12, 80, 2530, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2540, 8, 81, 1, 81, 3, 81, 2543, 8, 81, 1, 81, 3, 81, 2546, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2555, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2564, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2580, 8, 88, 1, 88, 3, 88, 2583, 8, 88, 1, 88, 3, 88, 2586, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2592, 8, 88, 10, 88, 12, 88, 2595, 9, 88, 1, 88, 3, 88, 2598, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2605, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2614, 8, 90, 1, 90, 1, 90, 3, 90, 2618, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2624, 8, 90, 1, 91, 1, 91, 3, 91, 2628, 8, 91, 1, 91, 3, 91, 2631, 8, 91, 1, 91, 3, 91, 2634, 8, 91, 1, 91, 3, 91, 2637, 8, 91, 1, 91, 3, 91, 2640, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2646, 8, 92, 1, 93, 1, 93, 3, 93, 2650, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2655, 8, 93, 1, 93, 1, 93, 3, 93, 2659, 8, 93, 1, 93, 3, 93, 2662, 8, 93, 1, 93, 3, 93, 2665, 8, 93, 1, 93, 3, 93, 2668, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2673, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2679, 8, 94, 1, 94, 1, 94, 3, 94, 2683, 8, 94, 1, 95, 1, 95, 3, 95, 2687, 8, 95, 1, 95, 1, 95, 3, 95, 2691, 8, 95, 1, 95, 1, 95, 4, 95, 2695, 8, 95, 11, 95, 12, 95, 2696, 3, 95, 2699, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2704, 8, 96, 1, 96, 1, 96, 4, 96, 2708, 8, 96, 11, 96, 12, 96, 2709, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2716, 8, 97, 1, 97, 1, 97, 3, 97, 2720, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2735, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2740, 8, 97, 1, 97, 3, 97, 2743, 8, 97, 3, 97, 2745, 8, 97, 1, 98, 3, 98, 2748, 8, 98, 1, 98, 1, 98, 3, 98, 2752, 8, 98, 1, 99, 1, 99, 3, 99, 2756, 8, 99, 1, 99, 3, 99, 2759, 8, 99, 1, 99, 3, 99, 2762, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2770, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2776, 8, 99, 3, 99, 2778, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2784, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2789, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2794, 8, 101, 1, 101, 1, 101, 3, 101, 2798, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2805, 8, 101, 10, 101, 12, 101, 2808, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2816, 8, 102, 10, 102, 12, 102, 2819, 9, 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, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2857, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2865, 8, 104, 11, 104, 12, 104, 2866, 3, 104, 2869, 8, 104, 1, 104, 3, 104, 2872, 8, 104, 1, 105, 1, 105, 3, 105, 2876, 8, 105, 1, 105, 1, 105, 3, 105, 2880, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2888, 8, 106, 11, 106, 12, 106, 2889, 3, 106, 2892, 8, 106, 1, 106, 1, 106, 4, 106, 2896, 8, 106, 11, 106, 12, 106, 2897, 3, 106, 2900, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2907, 8, 107, 10, 107, 12, 107, 2910, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2919, 8, 108, 10, 108, 12, 108, 2922, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2935, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2940, 8, 111, 1, 111, 3, 111, 2943, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2950, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2955, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2963, 8, 113, 3, 113, 2965, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2971, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2976, 8, 114, 1, 114, 1, 114, 3, 114, 2980, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2985, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2991, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2998, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3004, 8, 114, 3, 114, 3006, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3015, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3021, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3029, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3035, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3040, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3045, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3053, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3068, 8, 118, 3, 118, 3070, 8, 118, 1, 118, 1, 118, 3, 118, 3074, 8, 118, 1, 118, 1, 118, 3, 118, 3078, 8, 118, 1, 118, 3, 118, 3081, 8, 118, 1, 118, 3, 118, 3084, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3093, 8, 119, 1, 119, 3, 119, 3096, 8, 119, 1, 119, 3, 119, 3099, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3105, 8, 120, 1, 120, 1, 120, 5, 120, 3109, 8, 120, 10, 120, 12, 120, 3112, 9, 120, 1, 120, 3, 120, 3115, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3127, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3133, 8, 120, 1, 121, 3, 121, 3136, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3141, 8, 121, 1, 121, 1, 121, 3, 121, 3145, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3152, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3162, 8, 121, 3, 121, 3164, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3188, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3200, 8, 125, 1, 125, 4, 125, 3203, 8, 125, 11, 125, 12, 125, 3204, 3, 125, 3207, 8, 125, 1, 125, 1, 125, 3, 125, 3211, 8, 125, 1, 125, 3, 125, 3214, 8, 125, 1, 125, 3, 125, 3217, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3227, 8, 125, 1, 125, 3, 125, 3230, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3240, 8, 125, 1, 125, 5, 125, 3243, 8, 125, 10, 125, 12, 125, 3246, 9, 125, 1, 125, 1, 125, 3, 125, 3250, 8, 125, 1, 125, 3, 125, 3253, 8, 125, 1, 125, 3, 125, 3256, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3264, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3270, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3275, 8, 127, 10, 127, 12, 127, 3278, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3285, 8, 128, 1, 128, 3, 128, 3288, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3299, 8, 130, 1, 131, 1, 131, 3, 131, 3303, 8, 131, 1, 131, 1, 131, 5, 131, 3307, 8, 131, 10, 131, 12, 131, 3310, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3316, 8, 132, 1, 133, 3, 133, 3319, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3328, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3340, 8, 134, 10, 134, 12, 134, 3343, 9, 134, 3, 134, 3345, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3357, 8, 135, 10, 135, 12, 135, 3360, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3370, 8, 136, 1, 136, 3, 136, 3373, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3383, 8, 137, 10, 137, 12, 137, 3386, 9, 137, 1, 138, 1, 138, 3, 138, 3390, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3401, 8, 138, 10, 138, 12, 138, 3404, 9, 138, 1, 138, 1, 138, 3, 138, 3408, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3421, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3428, 8, 138, 10, 138, 12, 138, 3431, 9, 138, 3, 138, 3433, 8, 138, 1, 138, 3, 138, 3436, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3443, 8, 138, 1, 138, 3, 138, 3446, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3458, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3464, 8, 138, 3, 138, 3466, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3472, 8, 139, 10, 139, 12, 139, 3475, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3482, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3490, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3502, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3507, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3518, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3529, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3537, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3543, 8, 145, 10, 145, 12, 145, 3546, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3552, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3559, 8, 146, 3, 146, 3561, 8, 146, 1, 146, 3, 146, 3564, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3569, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3574, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3591, 8, 148, 10, 148, 12, 148, 3594, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3600, 8, 148, 10, 148, 12, 148, 3603, 9, 148, 3, 148, 3605, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 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, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3632, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3641, 8, 151, 1, 151, 3, 151, 3644, 8, 151, 1, 151, 1, 151, 3, 151, 3648, 8, 151, 1, 151, 1, 151, 3, 151, 3652, 8, 151, 1, 151, 1, 151, 3, 151, 3656, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3661, 8, 151, 10, 151, 12, 151, 3664, 9, 151, 1, 151, 3, 151, 3667, 8, 151, 1, 151, 1, 151, 3, 151, 3671, 8, 151, 1, 151, 1, 151, 3, 151, 3675, 8, 151, 1, 151, 1, 151, 3, 151, 3679, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3684, 8, 151, 1, 151, 1, 151, 3, 151, 3688, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3693, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3699, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3704, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3709, 8, 151, 10, 151, 12, 151, 3712, 9, 151, 1, 151, 3, 151, 3715, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3721, 8, 151, 1, 151, 1, 151, 3, 151, 3725, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3730, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3738, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3744, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3749, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3756, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3761, 8, 151, 1, 151, 1, 151, 3, 151, 3765, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3770, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3776, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3783, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3788, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3795, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3800, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3807, 8, 151, 1, 151, 1, 151, 3, 151, 3811, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3817, 8, 151, 10, 151, 12, 151, 3820, 9, 151, 1, 151, 3, 151, 3823, 8, 151, 3, 151, 3825, 8, 151, 1, 152, 3, 152, 3828, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3833, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3843, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3858, 8, 153, 1, 153, 3, 153, 3861, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3869, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3874, 8, 154, 10, 154, 12, 154, 3877, 9, 154, 1, 155, 1, 155, 3, 155, 3881, 8, 155, 1, 156, 1, 156, 4, 156, 3885, 8, 156, 11, 156, 12, 156, 3886, 1, 157, 1, 157, 3, 157, 3891, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3896, 8, 157, 10, 157, 12, 157, 3899, 9, 157, 1, 157, 1, 157, 3, 157, 3903, 8, 157, 1, 157, 3, 157, 3906, 8, 157, 1, 158, 3, 158, 3909, 8, 158, 1, 158, 1, 158, 3, 158, 3913, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3922, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3940, 8, 159, 1, 159, 3, 159, 3943, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3975, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3980, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3986, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4006, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4011, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4017, 8, 162, 1, 162, 3, 162, 4020, 8, 162, 1, 162, 1, 162, 3, 162, 4024, 8, 162, 1, 162, 1, 162, 3, 162, 4028, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4034, 8, 162, 1, 162, 3, 162, 4037, 8, 162, 1, 162, 1, 162, 3, 162, 4041, 8, 162, 1, 162, 1, 162, 3, 162, 4045, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4050, 8, 162, 1, 162, 3, 162, 4053, 8, 162, 1, 162, 3, 162, 4056, 8, 162, 1, 162, 3, 162, 4059, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4072, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4078, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4086, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4091, 8, 166, 10, 166, 12, 166, 4094, 9, 166, 1, 166, 1, 166, 3, 166, 4098, 8, 166, 1, 166, 3, 166, 4101, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4106, 8, 166, 10, 166, 12, 166, 4109, 9, 166, 3, 166, 4111, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4119, 8, 168, 1, 168, 3, 168, 4122, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4127, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4134, 8, 169, 1, 169, 3, 169, 4137, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4155, 8, 169, 10, 169, 12, 169, 4158, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4169, 8, 169, 1, 170, 3, 170, 4172, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4178, 8, 170, 1, 170, 5, 170, 4181, 8, 170, 10, 170, 12, 170, 4184, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4190, 8, 171, 10, 171, 12, 171, 4193, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4200, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4205, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4211, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4216, 8, 172, 10, 172, 12, 172, 4219, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4226, 8, 172, 1, 172, 3, 172, 4229, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4240, 8, 173, 10, 173, 12, 173, 4243, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4256, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4262, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4270, 8, 174, 3, 174, 4272, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4278, 8, 176, 1, 176, 1, 176, 3, 176, 4282, 8, 176, 1, 176, 3, 176, 4285, 8, 176, 1, 176, 3, 176, 4288, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4293, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4298, 8, 176, 1, 176, 1, 176, 3, 176, 4302, 8, 176, 1, 176, 3, 176, 4305, 8, 176, 1, 176, 3, 176, 4308, 8, 176, 1, 176, 3, 176, 4311, 8, 176, 1, 176, 3, 176, 4314, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4320, 8, 177, 10, 177, 12, 177, 4323, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4333, 8, 178, 1, 178, 3, 178, 4336, 8, 178, 1, 178, 3, 178, 4339, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4344, 8, 178, 1, 178, 3, 178, 4347, 8, 178, 1, 178, 1, 178, 3, 178, 4351, 8, 178, 1, 179, 1, 179, 3, 179, 4355, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4361, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4367, 8, 179, 10, 179, 12, 179, 4370, 9, 179, 3, 179, 4372, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4383, 8, 179, 10, 179, 12, 179, 4386, 9, 179, 1, 179, 1, 179, 3, 179, 4390, 8, 179, 3, 179, 4392, 8, 179, 1, 179, 4, 179, 4395, 8, 179, 11, 179, 12, 179, 4396, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4404, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4411, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4418, 8, 182, 10, 182, 12, 182, 4421, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4426, 8, 183, 10, 183, 12, 183, 4429, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4436, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4441, 8, 185, 10, 185, 12, 185, 4444, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4451, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4456, 8, 187, 10, 187, 12, 187, 4459, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4466, 8, 188, 1, 189, 1, 189, 3, 189, 4470, 8, 189, 1, 189, 1, 189, 3, 189, 4474, 8, 189, 3, 189, 4476, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4482, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4487, 8, 190, 1, 191, 1, 191, 3, 191, 4491, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4498, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4503, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4508, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4513, 8, 193, 3, 193, 4515, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4525, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4535, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4551, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4567, 8, 196, 10, 196, 12, 196, 4570, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4581, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4588, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4603, 8, 199, 1, 199, 4, 199, 4606, 8, 199, 11, 199, 12, 199, 4607, 1, 199, 3, 199, 4611, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4616, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4621, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4626, 8, 200, 1, 200, 3, 200, 4629, 8, 200, 1, 200, 3, 200, 4632, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4637, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4642, 8, 201, 10, 201, 12, 201, 4645, 9, 201, 1, 201, 3, 201, 4648, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4653, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4658, 8, 202, 10, 202, 12, 202, 4661, 9, 202, 1, 202, 3, 202, 4664, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4670, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4679, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4686, 8, 204, 10, 204, 12, 204, 4689, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4700, 8, 206, 11, 206, 12, 206, 4701, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4715, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4721, 8, 207, 1, 207, 1, 207, 3, 207, 4725, 8, 207, 3, 207, 4727, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4734, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4747, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4754, 8, 209, 3, 209, 4756, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4770, 8, 211, 10, 211, 12, 211, 4773, 9, 211, 1, 211, 3, 211, 4776, 8, 211, 1, 211, 1, 211, 3, 211, 4780, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4785, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4790, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4795, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4800, 8, 211, 1, 211, 3, 211, 4803, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4815, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4868, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4877, 8, 213, 1, 213, 1, 213, 3, 213, 4881, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4890, 8, 213, 1, 213, 1, 213, 3, 213, 4894, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4903, 8, 213, 1, 213, 1, 213, 3, 213, 4907, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4912, 8, 213, 1, 213, 3, 213, 4915, 8, 213, 1, 213, 1, 213, 3, 213, 4919, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4924, 8, 213, 3, 213, 4926, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4935, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4940, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4951, 8, 213, 1, 213, 1, 213, 3, 213, 4955, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4969, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4977, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5015, 8, 213, 3, 213, 5017, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5036, 8, 214, 1, 214, 3, 214, 5039, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5066, 8, 215, 1, 215, 1, 215, 3, 215, 5070, 8, 215, 1, 215, 1, 215, 3, 215, 5074, 8, 215, 1, 215, 1, 215, 3, 215, 5078, 8, 215, 1, 215, 1, 215, 3, 215, 5082, 8, 215, 1, 215, 3, 215, 5085, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5100, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5107, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5119, 8, 217, 10, 217, 12, 217, 5122, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5134, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5159, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5178, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5193, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5209, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5216, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5227, 8, 221, 1, 221, 3, 221, 5230, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5247, 8, 222, 10, 222, 12, 222, 5250, 9, 222, 3, 222, 5252, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5263, 8, 223, 10, 223, 12, 223, 5266, 9, 223, 1, 223, 3, 223, 5269, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5289, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5299, 8, 224, 10, 224, 12, 224, 5302, 9, 224, 1, 224, 3, 224, 5305, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5327, 8, 224, 1, 225, 1, 225, 3, 225, 5331, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5341, 8, 225, 1, 225, 1, 225, 3, 225, 5345, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5351, 8, 225, 1, 225, 1, 225, 3, 225, 5355, 8, 225, 5, 225, 5357, 8, 225, 10, 225, 12, 225, 5360, 9, 225, 1, 225, 3, 225, 5363, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5370, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5375, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5386, 8, 230, 1, 231, 1, 231, 3, 231, 5390, 8, 231, 1, 231, 3, 231, 5393, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5398, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5404, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5415, 8, 231, 1, 231, 1, 231, 3, 231, 5419, 8, 231, 1, 231, 3, 231, 5422, 8, 231, 1, 231, 1, 231, 3, 231, 5426, 8, 231, 1, 231, 1, 231, 3, 231, 5430, 8, 231, 1, 231, 3, 231, 5433, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5443, 8, 233, 1, 233, 3, 233, 5446, 8, 233, 1, 234, 1, 234, 3, 234, 5450, 8, 234, 1, 234, 5, 234, 5453, 8, 234, 10, 234, 12, 234, 5456, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5461, 8, 235, 1, 235, 3, 235, 5464, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5469, 8, 235, 1, 235, 3, 235, 5472, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5479, 8, 235, 3, 235, 5481, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5487, 8, 235, 1, 235, 1, 235, 3, 235, 5491, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5500, 8, 237, 1, 237, 4, 237, 5503, 8, 237, 11, 237, 12, 237, 5504, 3, 237, 5507, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5517, 8, 238, 1, 238, 3, 238, 5520, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5525, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5533, 8, 239, 1, 239, 3, 239, 5536, 8, 239, 1, 239, 4, 239, 5539, 8, 239, 11, 239, 12, 239, 5540, 3, 239, 5543, 8, 239, 3, 239, 5545, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5551, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5568, 8, 243, 1, 243, 1, 243, 5, 243, 5572, 8, 243, 10, 243, 12, 243, 5575, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5587, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5593, 8, 244, 1, 244, 1, 244, 3, 244, 5597, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5602, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5632, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5647, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5652, 8, 246, 1, 247, 1, 247, 3, 247, 5656, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5669, 8, 248, 1, 248, 1, 248, 3, 248, 5673, 8, 248, 3, 248, 5675, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5682, 8, 248, 10, 248, 12, 248, 5685, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5690, 8, 248, 3, 248, 5692, 8, 248, 1, 249, 1, 249, 3, 249, 5696, 8, 249, 1, 249, 3, 249, 5699, 8, 249, 1, 249, 3, 249, 5702, 8, 249, 1, 249, 3, 249, 5705, 8, 249, 1, 249, 3, 249, 5708, 8, 249, 3, 249, 5710, 8, 249, 1, 249, 3, 249, 5713, 8, 249, 1, 250, 1, 250, 3, 250, 5717, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5723, 8, 250, 10, 250, 12, 250, 5726, 9, 250, 1, 250, 1, 250, 3, 250, 5730, 8, 250, 1, 250, 3, 250, 5733, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5739, 8, 252, 1, 252, 1, 252, 3, 252, 5743, 8, 252, 1, 253, 1, 253, 3, 253, 5747, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5752, 8, 253, 3, 253, 5754, 8, 253, 1, 254, 1, 254, 3, 254, 5758, 8, 254, 1, 255, 1, 255, 3, 255, 5762, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5767, 8, 256, 10, 256, 12, 256, 5770, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5775, 8, 257, 1, 257, 1, 257, 3, 257, 5779, 8, 257, 3, 257, 5781, 8, 257, 3, 257, 5783, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5796, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5802, 8, 259, 10, 259, 12, 259, 5805, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5812, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5821, 8, 261, 10, 261, 12, 261, 5824, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5833, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5838, 8, 263, 1, 263, 1, 263, 3, 263, 5842, 8, 263, 1, 263, 1, 263, 3, 263, 5846, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5853, 8, 263, 1, 263, 3, 263, 5856, 8, 263, 3, 263, 5858, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5866, 8, 265, 1, 265, 1, 265, 3, 265, 5870, 8, 265, 1, 266, 3, 266, 5873, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5880, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5887, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5892, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5899, 8, 266, 1, 266, 3, 266, 5902, 8, 266, 3, 266, 5904, 8, 266, 1, 266, 3, 266, 5907, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5913, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5918, 8, 267, 1, 267, 1, 267, 3, 267, 5922, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5927, 8, 268, 10, 268, 12, 268, 5930, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5939, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5946, 8, 271, 1, 271, 3, 271, 5949, 8, 271, 1, 271, 3, 271, 5952, 8, 271, 1, 272, 1, 272, 3, 272, 5956, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5967, 8, 272, 1, 272, 3, 272, 5970, 8, 272, 1, 272, 3, 272, 5973, 8, 272, 1, 272, 3, 272, 5976, 8, 272, 1, 273, 3, 273, 5979, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5986, 8, 273, 1, 273, 3, 273, 5989, 8, 273, 1, 273, 3, 273, 5992, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 5997, 8, 274, 10, 274, 12, 274, 6000, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6011, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6018, 8, 275, 3, 275, 6020, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6025, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6030, 8, 276, 10, 276, 12, 276, 6033, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6038, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6045, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6050, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6055, 8, 279, 1, 279, 1, 279, 3, 279, 6059, 8, 279, 1, 279, 1, 279, 3, 279, 6063, 8, 279, 1, 279, 1, 279, 3, 279, 6067, 8, 279, 3, 279, 6069, 8, 279, 1, 280, 1, 280, 3, 280, 6073, 8, 280, 1, 281, 1, 281, 3, 281, 6077, 8, 281, 1, 281, 3, 281, 6080, 8, 281, 1, 281, 3, 281, 6083, 8, 281, 3, 281, 6085, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6095, 8, 281, 3, 281, 6097, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6102, 8, 281, 5, 281, 6104, 8, 281, 10, 281, 12, 281, 6107, 9, 281, 1, 282, 1, 282, 3, 282, 6111, 8, 282, 1, 283, 1, 283, 3, 283, 6115, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6120, 8, 283, 10, 283, 12, 283, 6123, 9, 283, 1, 284, 1, 284, 3, 284, 6127, 8, 284, 1, 284, 1, 284, 3, 284, 6131, 8, 284, 1, 284, 3, 284, 6134, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6140, 8, 284, 1, 284, 3, 284, 6143, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6162, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6169, 8, 287, 1, 287, 1, 287, 3, 287, 6173, 8, 287, 1, 288, 3, 288, 6176, 8, 288, 1, 288, 1, 288, 3, 288, 6180, 8, 288, 1, 288, 1, 288, 3, 288, 6184, 8, 288, 1, 288, 3, 288, 6187, 8, 288, 1, 288, 3, 288, 6190, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6195, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6202, 8, 290, 10, 290, 12, 290, 6205, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6211, 8, 291, 1, 291, 1, 291, 3, 291, 6215, 8, 291, 1, 292, 1, 292, 3, 292, 6219, 8, 292, 1, 292, 1, 292, 3, 292, 6223, 8, 292, 1, 292, 3, 292, 6226, 8, 292, 3, 292, 6228, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6233, 8, 293, 1, 293, 1, 293, 3, 293, 6237, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6242, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6248, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6255, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6260, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6265, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6272, 8, 298, 10, 298, 12, 298, 6275, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6281, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6287, 8, 299, 10, 299, 12, 299, 6290, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6300, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6305, 8, 300, 1, 300, 1, 300, 3, 300, 6309, 8, 300, 1, 300, 3, 300, 6312, 8, 300, 1, 300, 1, 300, 3, 300, 6316, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6321, 8, 300, 4, 300, 6323, 8, 300, 11, 300, 12, 300, 6324, 1, 300, 1, 300, 1, 300, 3, 300, 6330, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6336, 8, 301, 10, 301, 12, 301, 6339, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6347, 8, 303, 10, 303, 12, 303, 6350, 9, 303, 1, 304, 1, 304, 3, 304, 6354, 8, 304, 1, 304, 1, 304, 3, 304, 6358, 8, 304, 1, 304, 3, 304, 6361, 8, 304, 1, 304, 3, 304, 6364, 8, 304, 3, 304, 6366, 8, 304, 1, 304, 3, 304, 6369, 8, 304, 1, 304, 3, 304, 6372, 8, 304, 1, 304, 3, 304, 6375, 8, 304, 1, 304, 1, 304, 3, 304, 6379, 8, 304, 1, 304, 1, 304, 3, 304, 6383, 8, 304, 1, 304, 1, 304, 3, 304, 6387, 8, 304, 3, 304, 6389, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6398, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6403, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6409, 8, 304, 1, 304, 1, 304, 3, 304, 6413, 8, 304, 3, 304, 6415, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6422, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6427, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6433, 8, 304, 10, 304, 12, 304, 6436, 9, 304, 1, 305, 3, 305, 6439, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6446, 8, 305, 1, 306, 1, 306, 1, 306, 3, 306, 6451, 8, 306, 1, 306, 3, 306, 6454, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6460, 8, 306, 1, 307, 1, 307, 3, 307, 6464, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6470, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6479, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6485, 8, 309, 3, 309, 6487, 8, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6492, 8, 310, 1, 310, 3, 310, 6495, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6504, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6511, 8, 310, 3, 310, 6513, 8, 310, 1, 311, 1, 311, 1, 311, 5, 311, 6518, 8, 311, 10, 311, 12, 311, 6521, 9, 311, 1, 312, 1, 312, 3, 312, 6525, 8, 312, 1, 312, 3, 312, 6528, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6538, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 5, 314, 6547, 8, 314, 10, 314, 12, 314, 6550, 9, 314, 1, 314, 1, 314, 3, 314, 6554, 8, 314, 1, 314, 1, 314, 3, 314, 6558, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6566, 8, 315, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6576, 8, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6581, 8, 318, 10, 318, 12, 318, 6584, 9, 318, 1, 319, 1, 319, 1, 319, 3, 319, 6589, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6598, 8, 320, 10, 320, 12, 320, 6601, 9, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6606, 8, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6614, 8, 320, 10, 320, 12, 320, 6617, 9, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6625, 8, 321, 1, 321, 1, 321, 3, 321, 6629, 8, 321, 1, 321, 4, 321, 6632, 8, 321, 11, 321, 12, 321, 6633, 3, 321, 6636, 8, 321, 1, 321, 1, 321, 3, 321, 6640, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6648, 8, 322, 1, 323, 3, 323, 6651, 8, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6656, 8, 323, 1, 323, 5, 323, 6659, 8, 323, 10, 323, 12, 323, 6662, 9, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6668, 8, 323, 3, 323, 6670, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6676, 8, 323, 1, 324, 1, 324, 3, 324, 6680, 8, 324, 1, 324, 3, 324, 6683, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6688, 8, 324, 1, 324, 3, 324, 6691, 8, 324, 3, 324, 6693, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6699, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6708, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6714, 8, 326, 1, 326, 3, 326, 6717, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 3, 328, 6725, 8, 328, 1, 328, 3, 328, 6728, 8, 328, 1, 329, 1, 329, 3, 329, 6732, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6738, 8, 329, 3, 329, 6740, 8, 329, 1, 329, 3, 329, 6743, 8, 329, 1, 330, 1, 330, 3, 330, 6747, 8, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6752, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6759, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6766, 8, 331, 3, 331, 6768, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6774, 8, 331, 3, 331, 6776, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6781, 8, 331, 3, 331, 6783, 8, 331, 1, 332, 1, 332, 3, 332, 6787, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 3, 335, 6796, 8, 335, 1, 335, 1, 335, 3, 335, 6800, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 5, 335, 6808, 8, 335, 10, 335, 12, 335, 6811, 9, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6824, 8, 336, 1, 336, 3, 336, 6827, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6835, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6842, 8, 336, 10, 336, 12, 336, 6845, 9, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6850, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6855, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6863, 8, 336, 3, 336, 6865, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6870, 8, 336, 1, 336, 1, 336, 3, 336, 6874, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6879, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6884, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6890, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6906, 8, 337, 10, 337, 12, 337, 6909, 9, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6917, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6932, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6937, 8, 338, 1, 338, 3, 338, 6940, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6946, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6951, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6964, 8, 338, 1, 338, 4, 338, 6967, 8, 338, 11, 338, 12, 338, 6968, 1, 338, 1, 338, 3, 338, 6973, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6980, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7000, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7012, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7017, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7025, 8, 338, 5, 338, 7027, 8, 338, 10, 338, 12, 338, 7030, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7038, 8, 339, 1, 339, 3, 339, 7041, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7046, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7051, 8, 339, 1, 339, 3, 339, 7054, 8, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7065, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7073, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7078, 8, 340, 3, 340, 7080, 8, 340, 1, 340, 3, 340, 7083, 8, 340, 1, 341, 1, 341, 3, 341, 7087, 8, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7098, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7119, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7127, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7140, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7150, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7156, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7162, 8, 342, 1, 342, 3, 342, 7165, 8, 342, 1, 342, 3, 342, 7168, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7194, 8, 342, 3, 342, 7196, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7217, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7227, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7240, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7245, 8, 342, 1, 342, 1, 342, 3, 342, 7249, 8, 342, 3, 342, 7251, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7263, 8, 342, 1, 343, 1, 343, 1, 343, 5, 343, 7268, 8, 343, 10, 343, 12, 343, 7271, 9, 343, 1, 344, 1, 344, 1, 344, 3, 344, 7276, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 3, 346, 7282, 8, 346, 1, 346, 1, 346, 3, 346, 7286, 8, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 5, 348, 7295, 8, 348, 10, 348, 12, 348, 7298, 9, 348, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 7310, 8, 351, 1, 352, 1, 352, 3, 352, 7314, 8, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7319, 8, 352, 1, 352, 3, 352, 7322, 8, 352, 1, 352, 3, 352, 7325, 8, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7334, 8, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7345, 8, 353, 3, 353, 7347, 8, 353, 1, 354, 1, 354, 3, 354, 7351, 8, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7356, 8, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7365, 8, 355, 1, 356, 1, 356, 1, 356, 3, 356, 7370, 8, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 358, 1, 358, 3, 358, 7378, 8, 358, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7388, 8, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7396, 8, 361, 1, 362, 1, 362, 3, 362, 7400, 8, 362, 1, 362, 3, 362, 7403, 8, 362, 1, 363, 1, 363, 1, 363, 5, 363, 7408, 8, 363, 10, 363, 12, 363, 7411, 9, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7418, 8, 364, 1, 365, 1, 365, 3, 365, 7422, 8, 365, 1, 366, 1, 366, 1, 366, 5, 366, 7427, 8, 366, 10, 366, 12, 366, 7430, 9, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7437, 8, 367, 3, 367, 7439, 8, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 5, 368, 7446, 8, 368, 10, 368, 12, 368, 7449, 9, 368, 3, 368, 7451, 8, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 7463, 8, 369, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7472, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7479, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7488, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 3, 373, 7498, 8, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7503, 8, 373, 1, 373, 1, 373, 3, 373, 7507, 8, 373, 3, 373, 7509, 8, 373, 1, 373, 3, 373, 7512, 8, 373, 1, 374, 4, 374, 7515, 8, 374, 11, 374, 12, 374, 7516, 1, 375, 5, 375, 7520, 8, 375, 10, 375, 12, 375, 7523, 9, 375, 1, 376, 1, 376, 1, 376, 5, 376, 7528, 8, 376, 10, 376, 12, 376, 7531, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7538, 8, 377, 1, 377, 3, 377, 7541, 8, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7546, 8, 378, 10, 378, 12, 378, 7549, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7554, 8, 379, 10, 379, 12, 379, 7557, 9, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7562, 8, 380, 10, 380, 12, 380, 7565, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7570, 8, 381, 10, 381, 12, 381, 7573, 9, 381, 1, 382, 1, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 3, 388, 7589, 8, 388, 1, 389, 1, 389, 1, 389, 5, 389, 7594, 8, 389, 10, 389, 12, 389, 7597, 9, 389, 1, 390, 1, 390, 1, 390, 5, 390, 7602, 8, 390, 10, 390, 12, 390, 7605, 9, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7621, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7627, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7633, 8, 398, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7644, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7650, 8, 402, 1, 403, 1, 403, 1, 403, 3, 403, 7655, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 5, 404, 7661, 8, 404, 10, 404, 12, 404, 7664, 9, 404, 1, 404, 1, 404, 3, 404, 7668, 8, 404, 1, 405, 3, 405, 7671, 8, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7680, 8, 406, 1, 407, 1, 407, 1, 407, 5, 407, 7685, 8, 407, 10, 407, 12, 407, 7688, 9, 407, 1, 408, 1, 408, 3, 408, 7692, 8, 408, 1, 409, 1, 409, 3, 409, 7696, 8, 409, 1, 410, 1, 410, 1, 410, 3, 410, 7701, 8, 410, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7707, 8, 411, 1, 412, 1, 412, 1, 412, 3, 412, 7712, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7720, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7775, 8, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 417, 3, 417, 7782, 8, 417, 1, 417, 1, 417, 1, 417, 1, 417, 4, 417, 7788, 8, 417, 11, 417, 12, 417, 7789, 3, 417, 7792, 8, 417, 3, 417, 7794, 8, 417, 1, 417, 1, 417, 5, 417, 7798, 8, 417, 10, 417, 12, 417, 7801, 9, 417, 1, 417, 3, 417, 7804, 8, 417, 1, 417, 1, 417, 3, 417, 7808, 8, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7819, 8, 419, 1, 419, 3, 419, 7822, 8, 419, 1, 419, 1, 419, 3, 419, 7826, 8, 419, 1, 419, 1, 419, 3, 419, 7830, 8, 419, 1, 419, 1, 419, 3, 419, 7834, 8, 419, 1, 419, 3, 419, 7837, 8, 419, 1, 419, 3, 419, 7840, 8, 419, 1, 419, 3, 419, 7843, 8, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 5, 419, 7850, 8, 419, 10, 419, 12, 419, 7853, 9, 419, 1, 419, 1, 419, 3, 419, 7857, 8, 419, 1, 419, 1, 419, 3, 419, 7861, 8, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7894, 8, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7904, 8, 424, 1, 424, 1, 424, 3, 424, 7908, 8, 424, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7914, 8, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7919, 8, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 3, 426, 7928, 8, 426, 1, 426, 1, 426, 1, 426, 1, 426, 5, 426, 7934, 8, 426, 10, 426, 12, 426, 7937, 9, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 3, 428, 7947, 8, 428, 1, 428, 1, 428, 1, 428, 1, 428, 5, 428, 7953, 8, 428, 10, 428, 12, 428, 7956, 9, 428, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7962, 8, 429, 10, 429, 12, 429, 7965, 9, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7971, 8, 429, 10, 429, 12, 429, 7974, 9, 429, 5, 429, 7976, 8, 429, 10, 429, 12, 429, 7979, 9, 429, 1, 429, 3, 429, 7982, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 5, 430, 7990, 8, 430, 10, 430, 12, 430, 7993, 9, 430, 1, 431, 1, 431, 3, 431, 7997, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 8003, 8, 431, 10, 431, 12, 431, 8006, 9, 431, 4, 431, 8008, 8, 431, 11, 431, 12, 431, 8009, 1, 431, 3, 431, 8013, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 3, 432, 8020, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 3, 432, 8026, 8, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8034, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8042, 8, 433, 1, 433, 3, 433, 8045, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8052, 8, 433, 3, 433, 8054, 8, 433, 1, 434, 3, 434, 8057, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8063, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 3, 435, 8072, 8, 435, 1, 435, 1, 435, 3, 435, 8076, 8, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8090, 8, 436, 1, 436, 3, 436, 8093, 8, 436, 3, 436, 8095, 8, 436, 1, 436, 1, 436, 1, 437, 1, 437, 3, 437, 8101, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 4, 437, 8109, 8, 437, 11, 437, 12, 437, 8110, 3, 437, 8113, 8, 437, 3, 437, 8115, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 5, 437, 8121, 8, 437, 10, 437, 12, 437, 8124, 9, 437, 3, 437, 8126, 8, 437, 1, 437, 3, 437, 8129, 8, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8139, 8, 439, 1, 439, 1, 439, 1, 440, 1, 440, 5, 440, 8145, 8, 440, 10, 440, 12, 440, 8148, 9, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8153, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8159, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 3, 442, 8166, 8, 442, 1, 442, 1, 442, 3, 442, 8170, 8, 442, 1, 442, 1, 442, 3, 442, 8174, 8, 442, 1, 442, 3, 442, 8177, 8, 442, 1, 442, 3, 442, 8180, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 3, 443, 8186, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 3, 444, 8193, 8, 444, 1, 444, 3, 444, 8196, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8204, 8, 444, 3, 444, 8206, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 5, 444, 8213, 8, 444, 10, 444, 12, 444, 8216, 9, 444, 1, 444, 1, 444, 3, 444, 8220, 8, 444, 3, 444, 8222, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 3, 445, 8229, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 3, 446, 8235, 8, 446, 1, 446, 3, 446, 8238, 8, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8250, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8257, 8, 447, 3, 447, 8259, 8, 447, 1, 448, 1, 448, 3, 448, 8263, 8, 448, 1, 448, 1, 448, 1, 448, 1, 449, 3, 449, 8269, 8, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8274, 8, 449, 1, 449, 1, 449, 3, 449, 8278, 8, 449, 1, 449, 3, 449, 8281, 8, 449, 1, 449, 3, 449, 8284, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 4, 449, 8291, 8, 449, 11, 449, 12, 449, 8292, 1, 449, 3, 449, 8296, 8, 449, 1, 450, 3, 450, 8299, 8, 450, 1, 450, 1, 450, 3, 450, 8303, 8, 450, 1, 450, 1, 450, 3, 450, 8307, 8, 450, 3, 450, 8309, 8, 450, 1, 450, 3, 450, 8312, 8, 450, 1, 450, 3, 450, 8315, 8, 450, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8321, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8328, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8335, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8341, 8, 451, 3, 451, 8343, 8, 451, 1, 452, 1, 452, 3, 452, 8347, 8, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8352, 8, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 5, 453, 8368, 8, 453, 10, 453, 12, 453, 8371, 9, 453, 1, 453, 1, 453, 4, 453, 8375, 8, 453, 11, 453, 12, 453, 8376, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 5, 454, 8384, 8, 454, 10, 454, 12, 454, 8387, 9, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8393, 8, 454, 1, 455, 1, 455, 3, 455, 8397, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 3, 458, 8409, 8, 458, 1, 458, 3, 458, 8412, 8, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 3, 459, 8425, 8, 459, 1, 459, 3, 459, 8428, 8, 459, 1, 460, 1, 460, 3, 460, 8432, 8, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 5, 461, 8439, 8, 461, 10, 461, 12, 461, 8442, 9, 461, 1, 461, 1, 461, 5, 461, 8446, 8, 461, 10, 461, 12, 461, 8449, 9, 461, 4, 461, 8451, 8, 461, 11, 461, 12, 461, 8452, 1, 462, 1, 462, 1, 462, 3, 462, 8458, 8, 462, 1, 463, 1, 463, 3, 463, 8462, 8, 463, 1, 464, 3, 464, 8465, 8, 464, 1, 464, 3, 464, 8468, 8, 464, 1, 464, 3, 464, 8471, 8, 464, 1, 464, 3, 464, 8474, 8, 464, 1, 464, 3, 464, 8477, 8, 464, 1, 464, 3, 464, 8480, 8, 464, 1, 464, 3, 464, 8483, 8, 464, 1, 464, 0, 3, 670, 674, 676, 465, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 0, 119, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 158, 158, 277, 277, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 1, 0, 549, 551, 2, 0, 213, 213, 254, 254, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 574, 574, 576, 576, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9924, 0, 933, 1, 0, 0, 0, 2, 938, 1, 0, 0, 0, 4, 1062, 1, 0, 0, 0, 6, 1064, 1, 0, 0, 0, 8, 1067, 1, 0, 0, 0, 10, 1117, 1, 0, 0, 0, 12, 1127, 1, 0, 0, 0, 14, 1129, 1, 0, 0, 0, 16, 1141, 1, 0, 0, 0, 18, 1153, 1, 0, 0, 0, 20, 1164, 1, 0, 0, 0, 22, 1198, 1, 0, 0, 0, 24, 1242, 1, 0, 0, 0, 26, 1244, 1, 0, 0, 0, 28, 1256, 1, 0, 0, 0, 30, 1263, 1, 0, 0, 0, 32, 1282, 1, 0, 0, 0, 34, 1290, 1, 0, 0, 0, 36, 1292, 1, 0, 0, 0, 38, 1306, 1, 0, 0, 0, 40, 1310, 1, 0, 0, 0, 42, 1347, 1, 0, 0, 0, 44, 1349, 1, 0, 0, 0, 46, 1357, 1, 0, 0, 0, 48, 1367, 1, 0, 0, 0, 50, 1374, 1, 0, 0, 0, 52, 1382, 1, 0, 0, 0, 54, 1388, 1, 0, 0, 0, 56, 1404, 1, 0, 0, 0, 58, 1408, 1, 0, 0, 0, 60, 1410, 1, 0, 0, 0, 62, 1422, 1, 0, 0, 0, 64, 1427, 1, 0, 0, 0, 66, 1432, 1, 0, 0, 0, 68, 1434, 1, 0, 0, 0, 70, 1446, 1, 0, 0, 0, 72, 1454, 1, 0, 0, 0, 74, 1456, 1, 0, 0, 0, 76, 1576, 1, 0, 0, 0, 78, 1578, 1, 0, 0, 0, 80, 1592, 1, 0, 0, 0, 82, 1594, 1, 0, 0, 0, 84, 1831, 1, 0, 0, 0, 86, 1838, 1, 0, 0, 0, 88, 1840, 1, 0, 0, 0, 90, 1842, 1, 0, 0, 0, 92, 1845, 1, 0, 0, 0, 94, 1856, 1, 0, 0, 0, 96, 1859, 1, 0, 0, 0, 98, 1889, 1, 0, 0, 0, 100, 1891, 1, 0, 0, 0, 102, 1932, 1, 0, 0, 0, 104, 1934, 1, 0, 0, 0, 106, 1988, 1, 0, 0, 0, 108, 2034, 1, 0, 0, 0, 110, 2055, 1, 0, 0, 0, 112, 2057, 1, 0, 0, 0, 114, 2074, 1, 0, 0, 0, 116, 2155, 1, 0, 0, 0, 118, 2157, 1, 0, 0, 0, 120, 2168, 1, 0, 0, 0, 122, 2191, 1, 0, 0, 0, 124, 2209, 1, 0, 0, 0, 126, 2211, 1, 0, 0, 0, 128, 2246, 1, 0, 0, 0, 130, 2339, 1, 0, 0, 0, 132, 2344, 1, 0, 0, 0, 134, 2346, 1, 0, 0, 0, 136, 2444, 1, 0, 0, 0, 138, 2446, 1, 0, 0, 0, 140, 2450, 1, 0, 0, 0, 142, 2461, 1, 0, 0, 0, 144, 2469, 1, 0, 0, 0, 146, 2472, 1, 0, 0, 0, 148, 2475, 1, 0, 0, 0, 150, 2493, 1, 0, 0, 0, 152, 2495, 1, 0, 0, 0, 154, 2499, 1, 0, 0, 0, 156, 2512, 1, 0, 0, 0, 158, 2514, 1, 0, 0, 0, 160, 2519, 1, 0, 0, 0, 162, 2539, 1, 0, 0, 0, 164, 2547, 1, 0, 0, 0, 166, 2554, 1, 0, 0, 0, 168, 2556, 1, 0, 0, 0, 170, 2565, 1, 0, 0, 0, 172, 2568, 1, 0, 0, 0, 174, 2572, 1, 0, 0, 0, 176, 2576, 1, 0, 0, 0, 178, 2601, 1, 0, 0, 0, 180, 2611, 1, 0, 0, 0, 182, 2625, 1, 0, 0, 0, 184, 2641, 1, 0, 0, 0, 186, 2647, 1, 0, 0, 0, 188, 2674, 1, 0, 0, 0, 190, 2684, 1, 0, 0, 0, 192, 2700, 1, 0, 0, 0, 194, 2744, 1, 0, 0, 0, 196, 2751, 1, 0, 0, 0, 198, 2753, 1, 0, 0, 0, 200, 2779, 1, 0, 0, 0, 202, 2790, 1, 0, 0, 0, 204, 2809, 1, 0, 0, 0, 206, 2820, 1, 0, 0, 0, 208, 2858, 1, 0, 0, 0, 210, 2879, 1, 0, 0, 0, 212, 2881, 1, 0, 0, 0, 214, 2901, 1, 0, 0, 0, 216, 2913, 1, 0, 0, 0, 218, 2925, 1, 0, 0, 0, 220, 2928, 1, 0, 0, 0, 222, 2931, 1, 0, 0, 0, 224, 2951, 1, 0, 0, 0, 226, 2956, 1, 0, 0, 0, 228, 3005, 1, 0, 0, 0, 230, 3007, 1, 0, 0, 0, 232, 3030, 1, 0, 0, 0, 234, 3046, 1, 0, 0, 0, 236, 3058, 1, 0, 0, 0, 238, 3085, 1, 0, 0, 0, 240, 3100, 1, 0, 0, 0, 242, 3163, 1, 0, 0, 0, 244, 3165, 1, 0, 0, 0, 246, 3170, 1, 0, 0, 0, 248, 3176, 1, 0, 0, 0, 250, 3263, 1, 0, 0, 0, 252, 3269, 1, 0, 0, 0, 254, 3271, 1, 0, 0, 0, 256, 3287, 1, 0, 0, 0, 258, 3289, 1, 0, 0, 0, 260, 3298, 1, 0, 0, 0, 262, 3302, 1, 0, 0, 0, 264, 3315, 1, 0, 0, 0, 266, 3327, 1, 0, 0, 0, 268, 3329, 1, 0, 0, 0, 270, 3351, 1, 0, 0, 0, 272, 3363, 1, 0, 0, 0, 274, 3374, 1, 0, 0, 0, 276, 3465, 1, 0, 0, 0, 278, 3467, 1, 0, 0, 0, 280, 3478, 1, 0, 0, 0, 282, 3489, 1, 0, 0, 0, 284, 3491, 1, 0, 0, 0, 286, 3517, 1, 0, 0, 0, 288, 3519, 1, 0, 0, 0, 290, 3523, 1, 0, 0, 0, 292, 3573, 1, 0, 0, 0, 294, 3575, 1, 0, 0, 0, 296, 3581, 1, 0, 0, 0, 298, 3606, 1, 0, 0, 0, 300, 3610, 1, 0, 0, 0, 302, 3824, 1, 0, 0, 0, 304, 3842, 1, 0, 0, 0, 306, 3868, 1, 0, 0, 0, 308, 3870, 1, 0, 0, 0, 310, 3878, 1, 0, 0, 0, 312, 3884, 1, 0, 0, 0, 314, 3888, 1, 0, 0, 0, 316, 3908, 1, 0, 0, 0, 318, 3914, 1, 0, 0, 0, 320, 3981, 1, 0, 0, 0, 322, 4012, 1, 0, 0, 0, 324, 4058, 1, 0, 0, 0, 326, 4060, 1, 0, 0, 0, 328, 4062, 1, 0, 0, 0, 330, 4073, 1, 0, 0, 0, 332, 4110, 1, 0, 0, 0, 334, 4112, 1, 0, 0, 0, 336, 4118, 1, 0, 0, 0, 338, 4168, 1, 0, 0, 0, 340, 4171, 1, 0, 0, 0, 342, 4185, 1, 0, 0, 0, 344, 4206, 1, 0, 0, 0, 346, 4230, 1, 0, 0, 0, 348, 4271, 1, 0, 0, 0, 350, 4273, 1, 0, 0, 0, 352, 4275, 1, 0, 0, 0, 354, 4315, 1, 0, 0, 0, 356, 4332, 1, 0, 0, 0, 358, 4352, 1, 0, 0, 0, 360, 4405, 1, 0, 0, 0, 362, 4408, 1, 0, 0, 0, 364, 4414, 1, 0, 0, 0, 366, 4422, 1, 0, 0, 0, 368, 4435, 1, 0, 0, 0, 370, 4437, 1, 0, 0, 0, 372, 4450, 1, 0, 0, 0, 374, 4452, 1, 0, 0, 0, 376, 4465, 1, 0, 0, 0, 378, 4475, 1, 0, 0, 0, 380, 4486, 1, 0, 0, 0, 382, 4497, 1, 0, 0, 0, 384, 4499, 1, 0, 0, 0, 386, 4504, 1, 0, 0, 0, 388, 4518, 1, 0, 0, 0, 390, 4550, 1, 0, 0, 0, 392, 4587, 1, 0, 0, 0, 394, 4589, 1, 0, 0, 0, 396, 4592, 1, 0, 0, 0, 398, 4595, 1, 0, 0, 0, 400, 4612, 1, 0, 0, 0, 402, 4633, 1, 0, 0, 0, 404, 4649, 1, 0, 0, 0, 406, 4665, 1, 0, 0, 0, 408, 4687, 1, 0, 0, 0, 410, 4692, 1, 0, 0, 0, 412, 4695, 1, 0, 0, 0, 414, 4703, 1, 0, 0, 0, 416, 4728, 1, 0, 0, 0, 418, 4731, 1, 0, 0, 0, 420, 4759, 1, 0, 0, 0, 422, 4764, 1, 0, 0, 0, 424, 4804, 1, 0, 0, 0, 426, 5016, 1, 0, 0, 0, 428, 5018, 1, 0, 0, 0, 430, 5106, 1, 0, 0, 0, 432, 5108, 1, 0, 0, 0, 434, 5114, 1, 0, 0, 0, 436, 5125, 1, 0, 0, 0, 438, 5135, 1, 0, 0, 0, 440, 5215, 1, 0, 0, 0, 442, 5217, 1, 0, 0, 0, 444, 5231, 1, 0, 0, 0, 446, 5253, 1, 0, 0, 0, 448, 5326, 1, 0, 0, 0, 450, 5328, 1, 0, 0, 0, 452, 5369, 1, 0, 0, 0, 454, 5371, 1, 0, 0, 0, 456, 5376, 1, 0, 0, 0, 458, 5379, 1, 0, 0, 0, 460, 5382, 1, 0, 0, 0, 462, 5432, 1, 0, 0, 0, 464, 5434, 1, 0, 0, 0, 466, 5445, 1, 0, 0, 0, 468, 5447, 1, 0, 0, 0, 470, 5457, 1, 0, 0, 0, 472, 5492, 1, 0, 0, 0, 474, 5495, 1, 0, 0, 0, 476, 5516, 1, 0, 0, 0, 478, 5526, 1, 0, 0, 0, 480, 5546, 1, 0, 0, 0, 482, 5552, 1, 0, 0, 0, 484, 5558, 1, 0, 0, 0, 486, 5563, 1, 0, 0, 0, 488, 5576, 1, 0, 0, 0, 490, 5603, 1, 0, 0, 0, 492, 5651, 1, 0, 0, 0, 494, 5653, 1, 0, 0, 0, 496, 5691, 1, 0, 0, 0, 498, 5693, 1, 0, 0, 0, 500, 5714, 1, 0, 0, 0, 502, 5734, 1, 0, 0, 0, 504, 5738, 1, 0, 0, 0, 506, 5753, 1, 0, 0, 0, 508, 5755, 1, 0, 0, 0, 510, 5759, 1, 0, 0, 0, 512, 5763, 1, 0, 0, 0, 514, 5771, 1, 0, 0, 0, 516, 5795, 1, 0, 0, 0, 518, 5797, 1, 0, 0, 0, 520, 5808, 1, 0, 0, 0, 522, 5816, 1, 0, 0, 0, 524, 5832, 1, 0, 0, 0, 526, 5857, 1, 0, 0, 0, 528, 5859, 1, 0, 0, 0, 530, 5863, 1, 0, 0, 0, 532, 5872, 1, 0, 0, 0, 534, 5912, 1, 0, 0, 0, 536, 5923, 1, 0, 0, 0, 538, 5931, 1, 0, 0, 0, 540, 5934, 1, 0, 0, 0, 542, 5938, 1, 0, 0, 0, 544, 5953, 1, 0, 0, 0, 546, 5978, 1, 0, 0, 0, 548, 5993, 1, 0, 0, 0, 550, 6019, 1, 0, 0, 0, 552, 6021, 1, 0, 0, 0, 554, 6044, 1, 0, 0, 0, 556, 6046, 1, 0, 0, 0, 558, 6054, 1, 0, 0, 0, 560, 6072, 1, 0, 0, 0, 562, 6096, 1, 0, 0, 0, 564, 6108, 1, 0, 0, 0, 566, 6112, 1, 0, 0, 0, 568, 6124, 1, 0, 0, 0, 570, 6144, 1, 0, 0, 0, 572, 6152, 1, 0, 0, 0, 574, 6166, 1, 0, 0, 0, 576, 6189, 1, 0, 0, 0, 578, 6191, 1, 0, 0, 0, 580, 6196, 1, 0, 0, 0, 582, 6206, 1, 0, 0, 0, 584, 6227, 1, 0, 0, 0, 586, 6229, 1, 0, 0, 0, 588, 6238, 1, 0, 0, 0, 590, 6249, 1, 0, 0, 0, 592, 6259, 1, 0, 0, 0, 594, 6261, 1, 0, 0, 0, 596, 6268, 1, 0, 0, 0, 598, 6299, 1, 0, 0, 0, 600, 6329, 1, 0, 0, 0, 602, 6331, 1, 0, 0, 0, 604, 6340, 1, 0, 0, 0, 606, 6343, 1, 0, 0, 0, 608, 6414, 1, 0, 0, 0, 610, 6438, 1, 0, 0, 0, 612, 6459, 1, 0, 0, 0, 614, 6461, 1, 0, 0, 0, 616, 6469, 1, 0, 0, 0, 618, 6486, 1, 0, 0, 0, 620, 6512, 1, 0, 0, 0, 622, 6514, 1, 0, 0, 0, 624, 6522, 1, 0, 0, 0, 626, 6529, 1, 0, 0, 0, 628, 6553, 1, 0, 0, 0, 630, 6559, 1, 0, 0, 0, 632, 6567, 1, 0, 0, 0, 634, 6570, 1, 0, 0, 0, 636, 6577, 1, 0, 0, 0, 638, 6585, 1, 0, 0, 0, 640, 6590, 1, 0, 0, 0, 642, 6620, 1, 0, 0, 0, 644, 6647, 1, 0, 0, 0, 646, 6675, 1, 0, 0, 0, 648, 6692, 1, 0, 0, 0, 650, 6698, 1, 0, 0, 0, 652, 6716, 1, 0, 0, 0, 654, 6718, 1, 0, 0, 0, 656, 6722, 1, 0, 0, 0, 658, 6739, 1, 0, 0, 0, 660, 6744, 1, 0, 0, 0, 662, 6782, 1, 0, 0, 0, 664, 6784, 1, 0, 0, 0, 666, 6788, 1, 0, 0, 0, 668, 6790, 1, 0, 0, 0, 670, 6799, 1, 0, 0, 0, 672, 6883, 1, 0, 0, 0, 674, 6889, 1, 0, 0, 0, 676, 6999, 1, 0, 0, 0, 678, 7031, 1, 0, 0, 0, 680, 7082, 1, 0, 0, 0, 682, 7086, 1, 0, 0, 0, 684, 7262, 1, 0, 0, 0, 686, 7264, 1, 0, 0, 0, 688, 7272, 1, 0, 0, 0, 690, 7277, 1, 0, 0, 0, 692, 7279, 1, 0, 0, 0, 694, 7287, 1, 0, 0, 0, 696, 7290, 1, 0, 0, 0, 698, 7299, 1, 0, 0, 0, 700, 7302, 1, 0, 0, 0, 702, 7306, 1, 0, 0, 0, 704, 7311, 1, 0, 0, 0, 706, 7328, 1, 0, 0, 0, 708, 7355, 1, 0, 0, 0, 710, 7364, 1, 0, 0, 0, 712, 7366, 1, 0, 0, 0, 714, 7373, 1, 0, 0, 0, 716, 7377, 1, 0, 0, 0, 718, 7379, 1, 0, 0, 0, 720, 7387, 1, 0, 0, 0, 722, 7395, 1, 0, 0, 0, 724, 7402, 1, 0, 0, 0, 726, 7404, 1, 0, 0, 0, 728, 7417, 1, 0, 0, 0, 730, 7421, 1, 0, 0, 0, 732, 7423, 1, 0, 0, 0, 734, 7438, 1, 0, 0, 0, 736, 7440, 1, 0, 0, 0, 738, 7462, 1, 0, 0, 0, 740, 7464, 1, 0, 0, 0, 742, 7487, 1, 0, 0, 0, 744, 7489, 1, 0, 0, 0, 746, 7511, 1, 0, 0, 0, 748, 7514, 1, 0, 0, 0, 750, 7521, 1, 0, 0, 0, 752, 7524, 1, 0, 0, 0, 754, 7540, 1, 0, 0, 0, 756, 7542, 1, 0, 0, 0, 758, 7550, 1, 0, 0, 0, 760, 7558, 1, 0, 0, 0, 762, 7566, 1, 0, 0, 0, 764, 7574, 1, 0, 0, 0, 766, 7576, 1, 0, 0, 0, 768, 7578, 1, 0, 0, 0, 770, 7580, 1, 0, 0, 0, 772, 7582, 1, 0, 0, 0, 774, 7584, 1, 0, 0, 0, 776, 7586, 1, 0, 0, 0, 778, 7590, 1, 0, 0, 0, 780, 7598, 1, 0, 0, 0, 782, 7606, 1, 0, 0, 0, 784, 7608, 1, 0, 0, 0, 786, 7610, 1, 0, 0, 0, 788, 7612, 1, 0, 0, 0, 790, 7614, 1, 0, 0, 0, 792, 7620, 1, 0, 0, 0, 794, 7626, 1, 0, 0, 0, 796, 7632, 1, 0, 0, 0, 798, 7634, 1, 0, 0, 0, 800, 7637, 1, 0, 0, 0, 802, 7643, 1, 0, 0, 0, 804, 7649, 1, 0, 0, 0, 806, 7651, 1, 0, 0, 0, 808, 7667, 1, 0, 0, 0, 810, 7670, 1, 0, 0, 0, 812, 7679, 1, 0, 0, 0, 814, 7681, 1, 0, 0, 0, 816, 7691, 1, 0, 0, 0, 818, 7695, 1, 0, 0, 0, 820, 7700, 1, 0, 0, 0, 822, 7706, 1, 0, 0, 0, 824, 7719, 1, 0, 0, 0, 826, 7721, 1, 0, 0, 0, 828, 7774, 1, 0, 0, 0, 830, 7776, 1, 0, 0, 0, 832, 7778, 1, 0, 0, 0, 834, 7781, 1, 0, 0, 0, 836, 7809, 1, 0, 0, 0, 838, 7813, 1, 0, 0, 0, 840, 7864, 1, 0, 0, 0, 842, 7867, 1, 0, 0, 0, 844, 7893, 1, 0, 0, 0, 846, 7895, 1, 0, 0, 0, 848, 7918, 1, 0, 0, 0, 850, 7920, 1, 0, 0, 0, 852, 7925, 1, 0, 0, 0, 854, 7940, 1, 0, 0, 0, 856, 7946, 1, 0, 0, 0, 858, 7957, 1, 0, 0, 0, 860, 7987, 1, 0, 0, 0, 862, 7994, 1, 0, 0, 0, 864, 8019, 1, 0, 0, 0, 866, 8029, 1, 0, 0, 0, 868, 8056, 1, 0, 0, 0, 870, 8069, 1, 0, 0, 0, 872, 8079, 1, 0, 0, 0, 874, 8098, 1, 0, 0, 0, 876, 8130, 1, 0, 0, 0, 878, 8134, 1, 0, 0, 0, 880, 8142, 1, 0, 0, 0, 882, 8156, 1, 0, 0, 0, 884, 8162, 1, 0, 0, 0, 886, 8183, 1, 0, 0, 0, 888, 8189, 1, 0, 0, 0, 890, 8228, 1, 0, 0, 0, 892, 8232, 1, 0, 0, 0, 894, 8258, 1, 0, 0, 0, 896, 8260, 1, 0, 0, 0, 898, 8268, 1, 0, 0, 0, 900, 8308, 1, 0, 0, 0, 902, 8342, 1, 0, 0, 0, 904, 8344, 1, 0, 0, 0, 906, 8355, 1, 0, 0, 0, 908, 8392, 1, 0, 0, 0, 910, 8396, 1, 0, 0, 0, 912, 8398, 1, 0, 0, 0, 914, 8402, 1, 0, 0, 0, 916, 8405, 1, 0, 0, 0, 918, 8427, 1, 0, 0, 0, 920, 8431, 1, 0, 0, 0, 922, 8433, 1, 0, 0, 0, 924, 8457, 1, 0, 0, 0, 926, 8461, 1, 0, 0, 0, 928, 8464, 1, 0, 0, 0, 930, 932, 3, 2, 1, 0, 931, 930, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 936, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 0, 0, 1, 937, 1, 1, 0, 0, 0, 938, 940, 3, 4, 2, 0, 939, 941, 5, 7, 0, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 3, 1, 0, 0, 0, 942, 1063, 3, 272, 136, 0, 943, 1063, 3, 482, 241, 0, 944, 1063, 3, 478, 239, 0, 945, 1063, 3, 480, 240, 0, 946, 1063, 3, 346, 173, 0, 947, 1063, 3, 488, 244, 0, 948, 1063, 3, 286, 143, 0, 949, 1063, 3, 204, 102, 0, 950, 1063, 3, 206, 103, 0, 951, 1063, 3, 212, 106, 0, 952, 1063, 3, 226, 113, 0, 953, 1063, 3, 398, 199, 0, 954, 1063, 3, 28, 14, 0, 955, 1063, 3, 428, 214, 0, 956, 1063, 3, 430, 215, 0, 957, 1063, 3, 440, 220, 0, 958, 1063, 3, 432, 216, 0, 959, 1063, 3, 438, 219, 0, 960, 1063, 3, 238, 119, 0, 961, 1063, 3, 240, 120, 0, 962, 1063, 3, 192, 96, 0, 963, 1063, 3, 484, 242, 0, 964, 1063, 3, 76, 38, 0, 965, 1063, 3, 424, 212, 0, 966, 1063, 3, 100, 50, 0, 967, 1063, 3, 444, 222, 0, 968, 1063, 3, 18, 9, 0, 969, 1063, 3, 20, 10, 0, 970, 1063, 3, 16, 8, 0, 971, 1063, 3, 448, 224, 0, 972, 1063, 3, 178, 89, 0, 973, 1063, 3, 492, 246, 0, 974, 1063, 3, 490, 245, 0, 975, 1063, 3, 234, 117, 0, 976, 1063, 3, 500, 250, 0, 977, 1063, 3, 6, 3, 0, 978, 1063, 3, 72, 36, 0, 979, 1063, 3, 104, 52, 0, 980, 1063, 3, 496, 248, 0, 981, 1063, 3, 318, 159, 0, 982, 1063, 3, 70, 35, 0, 983, 1063, 3, 106, 53, 0, 984, 1063, 3, 248, 124, 0, 985, 1063, 3, 180, 90, 0, 986, 1063, 3, 274, 137, 0, 987, 1063, 3, 414, 207, 0, 988, 1063, 3, 494, 247, 0, 989, 1063, 3, 486, 243, 0, 990, 1063, 3, 202, 101, 0, 991, 1063, 3, 208, 104, 0, 992, 1063, 3, 222, 111, 0, 993, 1063, 3, 228, 114, 0, 994, 1063, 3, 358, 179, 0, 995, 1063, 3, 26, 13, 0, 996, 1063, 3, 186, 93, 0, 997, 1063, 3, 290, 145, 0, 998, 1063, 3, 294, 147, 0, 999, 1063, 3, 442, 221, 0, 1000, 1063, 3, 296, 148, 0, 1001, 1063, 3, 236, 118, 0, 1002, 1063, 3, 198, 99, 0, 1003, 1063, 3, 30, 15, 0, 1004, 1063, 3, 190, 95, 0, 1005, 1063, 3, 114, 57, 0, 1006, 1063, 3, 446, 223, 0, 1007, 1063, 3, 176, 88, 0, 1008, 1063, 3, 200, 100, 0, 1009, 1063, 3, 418, 209, 0, 1010, 1063, 3, 250, 125, 0, 1011, 1063, 3, 268, 134, 0, 1012, 1063, 3, 8, 4, 0, 1013, 1063, 3, 14, 7, 0, 1014, 1063, 3, 232, 116, 0, 1015, 1063, 3, 474, 237, 0, 1016, 1063, 3, 530, 265, 0, 1017, 1063, 3, 552, 276, 0, 1018, 1063, 3, 276, 138, 0, 1019, 1063, 3, 542, 271, 0, 1020, 1063, 3, 74, 37, 0, 1021, 1063, 3, 412, 206, 0, 1022, 1063, 3, 302, 151, 0, 1023, 1063, 3, 526, 263, 0, 1024, 1063, 3, 514, 257, 0, 1025, 1063, 3, 322, 161, 0, 1026, 1063, 3, 328, 164, 0, 1027, 1063, 3, 342, 171, 0, 1028, 1063, 3, 898, 449, 0, 1029, 1063, 3, 230, 115, 0, 1030, 1063, 3, 352, 176, 0, 1031, 1063, 3, 532, 266, 0, 1032, 1063, 3, 458, 229, 0, 1033, 1063, 3, 188, 94, 0, 1034, 1063, 3, 472, 236, 0, 1035, 1063, 3, 544, 272, 0, 1036, 1063, 3, 454, 227, 0, 1037, 1063, 3, 520, 260, 0, 1038, 1063, 3, 300, 150, 0, 1039, 1063, 3, 422, 211, 0, 1040, 1063, 3, 402, 201, 0, 1041, 1063, 3, 400, 200, 0, 1042, 1063, 3, 404, 202, 0, 1043, 1063, 3, 426, 213, 0, 1044, 1063, 3, 330, 165, 0, 1045, 1063, 3, 344, 172, 0, 1046, 1063, 3, 450, 225, 0, 1047, 1063, 3, 320, 160, 0, 1048, 1063, 3, 554, 277, 0, 1049, 1063, 3, 462, 231, 0, 1050, 1063, 3, 314, 157, 0, 1051, 1063, 3, 460, 230, 0, 1052, 1063, 3, 546, 273, 0, 1053, 1063, 3, 498, 249, 0, 1054, 1063, 3, 60, 30, 0, 1055, 1063, 3, 36, 18, 0, 1056, 1063, 3, 68, 34, 0, 1057, 1063, 3, 470, 235, 0, 1058, 1060, 5, 583, 0, 0, 1059, 1061, 5, 584, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 942, 1, 0, 0, 0, 1062, 943, 1, 0, 0, 0, 1062, 944, 1, 0, 0, 0, 1062, 945, 1, 0, 0, 0, 1062, 946, 1, 0, 0, 0, 1062, 947, 1, 0, 0, 0, 1062, 948, 1, 0, 0, 0, 1062, 949, 1, 0, 0, 0, 1062, 950, 1, 0, 0, 0, 1062, 951, 1, 0, 0, 0, 1062, 952, 1, 0, 0, 0, 1062, 953, 1, 0, 0, 0, 1062, 954, 1, 0, 0, 0, 1062, 955, 1, 0, 0, 0, 1062, 956, 1, 0, 0, 0, 1062, 957, 1, 0, 0, 0, 1062, 958, 1, 0, 0, 0, 1062, 959, 1, 0, 0, 0, 1062, 960, 1, 0, 0, 0, 1062, 961, 1, 0, 0, 0, 1062, 962, 1, 0, 0, 0, 1062, 963, 1, 0, 0, 0, 1062, 964, 1, 0, 0, 0, 1062, 965, 1, 0, 0, 0, 1062, 966, 1, 0, 0, 0, 1062, 967, 1, 0, 0, 0, 1062, 968, 1, 0, 0, 0, 1062, 969, 1, 0, 0, 0, 1062, 970, 1, 0, 0, 0, 1062, 971, 1, 0, 0, 0, 1062, 972, 1, 0, 0, 0, 1062, 973, 1, 0, 0, 0, 1062, 974, 1, 0, 0, 0, 1062, 975, 1, 0, 0, 0, 1062, 976, 1, 0, 0, 0, 1062, 977, 1, 0, 0, 0, 1062, 978, 1, 0, 0, 0, 1062, 979, 1, 0, 0, 0, 1062, 980, 1, 0, 0, 0, 1062, 981, 1, 0, 0, 0, 1062, 982, 1, 0, 0, 0, 1062, 983, 1, 0, 0, 0, 1062, 984, 1, 0, 0, 0, 1062, 985, 1, 0, 0, 0, 1062, 986, 1, 0, 0, 0, 1062, 987, 1, 0, 0, 0, 1062, 988, 1, 0, 0, 0, 1062, 989, 1, 0, 0, 0, 1062, 990, 1, 0, 0, 0, 1062, 991, 1, 0, 0, 0, 1062, 992, 1, 0, 0, 0, 1062, 993, 1, 0, 0, 0, 1062, 994, 1, 0, 0, 0, 1062, 995, 1, 0, 0, 0, 1062, 996, 1, 0, 0, 0, 1062, 997, 1, 0, 0, 0, 1062, 998, 1, 0, 0, 0, 1062, 999, 1, 0, 0, 0, 1062, 1000, 1, 0, 0, 0, 1062, 1001, 1, 0, 0, 0, 1062, 1002, 1, 0, 0, 0, 1062, 1003, 1, 0, 0, 0, 1062, 1004, 1, 0, 0, 0, 1062, 1005, 1, 0, 0, 0, 1062, 1006, 1, 0, 0, 0, 1062, 1007, 1, 0, 0, 0, 1062, 1008, 1, 0, 0, 0, 1062, 1009, 1, 0, 0, 0, 1062, 1010, 1, 0, 0, 0, 1062, 1011, 1, 0, 0, 0, 1062, 1012, 1, 0, 0, 0, 1062, 1013, 1, 0, 0, 0, 1062, 1014, 1, 0, 0, 0, 1062, 1015, 1, 0, 0, 0, 1062, 1016, 1, 0, 0, 0, 1062, 1017, 1, 0, 0, 0, 1062, 1018, 1, 0, 0, 0, 1062, 1019, 1, 0, 0, 0, 1062, 1020, 1, 0, 0, 0, 1062, 1021, 1, 0, 0, 0, 1062, 1022, 1, 0, 0, 0, 1062, 1023, 1, 0, 0, 0, 1062, 1024, 1, 0, 0, 0, 1062, 1025, 1, 0, 0, 0, 1062, 1026, 1, 0, 0, 0, 1062, 1027, 1, 0, 0, 0, 1062, 1028, 1, 0, 0, 0, 1062, 1029, 1, 0, 0, 0, 1062, 1030, 1, 0, 0, 0, 1062, 1031, 1, 0, 0, 0, 1062, 1032, 1, 0, 0, 0, 1062, 1033, 1, 0, 0, 0, 1062, 1034, 1, 0, 0, 0, 1062, 1035, 1, 0, 0, 0, 1062, 1036, 1, 0, 0, 0, 1062, 1037, 1, 0, 0, 0, 1062, 1038, 1, 0, 0, 0, 1062, 1039, 1, 0, 0, 0, 1062, 1040, 1, 0, 0, 0, 1062, 1041, 1, 0, 0, 0, 1062, 1042, 1, 0, 0, 0, 1062, 1043, 1, 0, 0, 0, 1062, 1044, 1, 0, 0, 0, 1062, 1045, 1, 0, 0, 0, 1062, 1046, 1, 0, 0, 0, 1062, 1047, 1, 0, 0, 0, 1062, 1048, 1, 0, 0, 0, 1062, 1049, 1, 0, 0, 0, 1062, 1050, 1, 0, 0, 0, 1062, 1051, 1, 0, 0, 0, 1062, 1052, 1, 0, 0, 0, 1062, 1053, 1, 0, 0, 0, 1062, 1054, 1, 0, 0, 0, 1062, 1055, 1, 0, 0, 0, 1062, 1056, 1, 0, 0, 0, 1062, 1057, 1, 0, 0, 0, 1062, 1058, 1, 0, 0, 0, 1063, 5, 1, 0, 0, 0, 1064, 1065, 5, 433, 0, 0, 1065, 1066, 3, 678, 339, 0, 1066, 7, 1, 0, 0, 0, 1067, 1068, 5, 46, 0, 0, 1068, 1069, 5, 318, 0, 0, 1069, 1071, 3, 812, 406, 0, 1070, 1072, 5, 105, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 1, 0, 0, 0, 1073, 1075, 3, 12, 6, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 9, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1082, 5, 287, 0, 0, 1080, 1083, 3, 806, 403, 0, 1081, 1083, 5, 78, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1118, 1, 0, 0, 0, 1084, 1085, 7, 0, 0, 0, 1085, 1086, 5, 287, 0, 0, 1086, 1118, 3, 806, 403, 0, 1087, 1118, 5, 228, 0, 0, 1088, 1118, 5, 229, 0, 0, 1089, 1118, 5, 236, 0, 0, 1090, 1118, 5, 237, 0, 0, 1091, 1118, 5, 234, 0, 0, 1092, 1118, 5, 235, 0, 0, 1093, 1118, 5, 232, 0, 0, 1094, 1118, 5, 233, 0, 0, 1095, 1118, 5, 230, 0, 0, 1096, 1118, 5, 231, 0, 0, 1097, 1118, 5, 535, 0, 0, 1098, 1118, 5, 536, 0, 0, 1099, 1118, 5, 537, 0, 0, 1100, 1118, 5, 538, 0, 0, 1101, 1118, 5, 539, 0, 0, 1102, 1118, 5, 540, 0, 0, 1103, 1104, 5, 164, 0, 0, 1104, 1105, 5, 74, 0, 0, 1105, 1118, 3, 810, 405, 0, 1106, 1107, 5, 371, 0, 0, 1107, 1108, 5, 368, 0, 0, 1108, 1118, 3, 806, 403, 0, 1109, 1110, 5, 68, 0, 0, 1110, 1111, 7, 1, 0, 0, 1111, 1118, 3, 780, 390, 0, 1112, 1113, 7, 2, 0, 0, 1113, 1118, 3, 814, 407, 0, 1114, 1115, 5, 134, 0, 0, 1115, 1118, 3, 780, 390, 0, 1116, 1118, 3, 824, 412, 0, 1117, 1079, 1, 0, 0, 0, 1117, 1084, 1, 0, 0, 0, 1117, 1087, 1, 0, 0, 0, 1117, 1088, 1, 0, 0, 0, 1117, 1089, 1, 0, 0, 0, 1117, 1090, 1, 0, 0, 0, 1117, 1091, 1, 0, 0, 0, 1117, 1092, 1, 0, 0, 0, 1117, 1093, 1, 0, 0, 0, 1117, 1094, 1, 0, 0, 0, 1117, 1095, 1, 0, 0, 0, 1117, 1096, 1, 0, 0, 0, 1117, 1097, 1, 0, 0, 0, 1117, 1098, 1, 0, 0, 0, 1117, 1099, 1, 0, 0, 0, 1117, 1100, 1, 0, 0, 0, 1117, 1101, 1, 0, 0, 0, 1117, 1102, 1, 0, 0, 0, 1117, 1103, 1, 0, 0, 0, 1117, 1106, 1, 0, 0, 0, 1117, 1109, 1, 0, 0, 0, 1117, 1112, 1, 0, 0, 0, 1117, 1114, 1, 0, 0, 0, 1117, 1116, 1, 0, 0, 0, 1118, 11, 1, 0, 0, 0, 1119, 1128, 3, 10, 5, 0, 1120, 1121, 5, 348, 0, 0, 1121, 1128, 5, 574, 0, 0, 1122, 1123, 7, 3, 0, 0, 1123, 1128, 3, 814, 407, 0, 1124, 1125, 5, 68, 0, 0, 1125, 1126, 7, 1, 0, 0, 1126, 1128, 3, 814, 407, 0, 1127, 1119, 1, 0, 0, 0, 1127, 1120, 1, 0, 0, 0, 1127, 1122, 1, 0, 0, 0, 1127, 1124, 1, 0, 0, 0, 1128, 13, 1, 0, 0, 0, 1129, 1130, 5, 46, 0, 0, 1130, 1131, 5, 99, 0, 0, 1131, 1133, 3, 812, 406, 0, 1132, 1134, 5, 105, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1138, 1, 0, 0, 0, 1135, 1137, 3, 12, 6, 0, 1136, 1135, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 15, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1142, 5, 138, 0, 0, 1142, 1143, 7, 2, 0, 0, 1143, 1145, 3, 812, 406, 0, 1144, 1146, 5, 105, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1150, 1, 0, 0, 0, 1147, 1149, 3, 10, 5, 0, 1148, 1147, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 17, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1154, 5, 138, 0, 0, 1154, 1157, 7, 2, 0, 0, 1155, 1158, 5, 30, 0, 0, 1156, 1158, 3, 812, 406, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 5, 68, 0, 0, 1160, 1161, 5, 175, 0, 0, 1161, 1162, 3, 784, 392, 0, 1162, 1163, 3, 64, 32, 0, 1163, 19, 1, 0, 0, 0, 1164, 1165, 5, 138, 0, 0, 1165, 1166, 5, 442, 0, 0, 1166, 1168, 3, 790, 395, 0, 1167, 1169, 3, 362, 181, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 3, 22, 11, 0, 1171, 21, 1, 0, 0, 0, 1172, 1176, 3, 24, 12, 0, 1173, 1175, 3, 24, 12, 0, 1174, 1173, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1181, 5, 315, 0, 0, 1180, 1179, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1199, 1, 0, 0, 0, 1182, 1183, 5, 309, 0, 0, 1183, 1184, 5, 94, 0, 0, 1184, 1199, 3, 788, 394, 0, 1185, 1186, 5, 282, 0, 0, 1186, 1187, 5, 94, 0, 0, 1187, 1199, 3, 812, 406, 0, 1188, 1189, 5, 333, 0, 0, 1189, 1190, 5, 323, 0, 0, 1190, 1199, 3, 32, 16, 0, 1191, 1193, 5, 269, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 5, 462, 0, 0, 1195, 1196, 5, 80, 0, 0, 1196, 1197, 5, 204, 0, 0, 1197, 1199, 3, 816, 408, 0, 1198, 1172, 1, 0, 0, 0, 1198, 1182, 1, 0, 0, 0, 1198, 1185, 1, 0, 0, 0, 1198, 1188, 1, 0, 0, 0, 1198, 1192, 1, 0, 0, 0, 1199, 23, 1, 0, 0, 0, 1200, 1243, 5, 222, 0, 0, 1201, 1243, 5, 338, 0, 0, 1202, 1243, 5, 377, 0, 0, 1203, 1205, 5, 77, 0, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1243, 5, 250, 0, 0, 1207, 1209, 5, 205, 0, 0, 1208, 1207, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 5, 327, 0, 0, 1211, 1218, 5, 243, 0, 0, 1212, 1214, 5, 205, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 5, 327, 0, 0, 1216, 1218, 5, 181, 0, 0, 1217, 1208, 1, 0, 0, 0, 1217, 1213, 1, 0, 0, 0, 1218, 1243, 1, 0, 0, 0, 1219, 1220, 5, 460, 0, 0, 1220, 1243, 7, 4, 0, 0, 1221, 1222, 5, 170, 0, 0, 1222, 1243, 3, 822, 411, 0, 1223, 1224, 5, 320, 0, 0, 1224, 1243, 3, 816, 408, 0, 1225, 1226, 5, 333, 0, 0, 1226, 1227, 3, 816, 408, 0, 1227, 1230, 7, 5, 0, 0, 1228, 1231, 3, 816, 408, 0, 1229, 1231, 5, 53, 0, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1243, 1, 0, 0, 0, 1232, 1233, 5, 333, 0, 0, 1233, 1234, 3, 816, 408, 0, 1234, 1235, 5, 64, 0, 0, 1235, 1236, 5, 434, 0, 0, 1236, 1243, 1, 0, 0, 0, 1237, 1240, 5, 313, 0, 0, 1238, 1241, 3, 816, 408, 0, 1239, 1241, 5, 30, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1239, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1200, 1, 0, 0, 0, 1242, 1201, 1, 0, 0, 0, 1242, 1202, 1, 0, 0, 0, 1242, 1204, 1, 0, 0, 0, 1242, 1217, 1, 0, 0, 0, 1242, 1219, 1, 0, 0, 0, 1242, 1221, 1, 0, 0, 0, 1242, 1223, 1, 0, 0, 0, 1242, 1225, 1, 0, 0, 0, 1242, 1232, 1, 0, 0, 0, 1242, 1237, 1, 0, 0, 0, 1243, 25, 1, 0, 0, 0, 1244, 1245, 5, 46, 0, 0, 1245, 1246, 5, 66, 0, 0, 1246, 1248, 3, 812, 406, 0, 1247, 1249, 5, 105, 0, 0, 1248, 1247, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1253, 1, 0, 0, 0, 1250, 1252, 3, 12, 6, 0, 1251, 1250, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 27, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1257, 5, 138, 0, 0, 1257, 1258, 5, 66, 0, 0, 1258, 1259, 3, 812, 406, 0, 1259, 1260, 7, 6, 0, 0, 1260, 1261, 5, 99, 0, 0, 1261, 1262, 3, 814, 407, 0, 1262, 29, 1, 0, 0, 0, 1263, 1264, 5, 46, 0, 0, 1264, 1266, 5, 323, 0, 0, 1265, 1267, 3, 288, 144, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1274, 1, 0, 0, 0, 1268, 1270, 3, 32, 16, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1272, 5, 106, 0, 0, 1272, 1275, 3, 812, 406, 0, 1273, 1275, 3, 32, 16, 0, 1274, 1269, 1, 0, 0, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1279, 1, 0, 0, 0, 1276, 1278, 3, 34, 17, 0, 1277, 1276, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 31, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1282, 1283, 3, 310, 155, 0, 1283, 33, 1, 0, 0, 0, 1284, 1291, 3, 114, 57, 0, 1285, 1291, 3, 352, 176, 0, 1286, 1291, 3, 190, 95, 0, 1287, 1291, 3, 250, 125, 0, 1288, 1291, 3, 328, 164, 0, 1289, 1291, 3, 470, 235, 0, 1290, 1284, 1, 0, 0, 0, 1290, 1285, 1, 0, 0, 0, 1290, 1286, 1, 0, 0, 0, 1290, 1287, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1289, 1, 0, 0, 0, 1291, 35, 1, 0, 0, 0, 1292, 1294, 5, 333, 0, 0, 1293, 1295, 7, 7, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 3, 38, 19, 0, 1297, 37, 1, 0, 0, 0, 1298, 1299, 5, 356, 0, 0, 1299, 1307, 3, 468, 234, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1302, 5, 154, 0, 0, 1302, 1303, 5, 36, 0, 0, 1303, 1304, 5, 356, 0, 0, 1304, 1307, 3, 468, 234, 0, 1305, 1307, 3, 42, 21, 0, 1306, 1298, 1, 0, 0, 0, 1306, 1300, 1, 0, 0, 0, 1306, 1305, 1, 0, 0, 0, 1307, 39, 1, 0, 0, 0, 1308, 1311, 5, 30, 0, 0, 1309, 1311, 3, 44, 22, 0, 1310, 1308, 1, 0, 0, 0, 1310, 1309, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1314, 7, 5, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1317, 1, 0, 0, 0, 1315, 1318, 5, 53, 0, 0, 1316, 1318, 3, 46, 23, 0, 1317, 1315, 1, 0, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 41, 1, 0, 0, 0, 1319, 1320, 5, 418, 0, 0, 1320, 1321, 5, 386, 0, 0, 1321, 1348, 3, 56, 28, 0, 1322, 1323, 5, 152, 0, 0, 1323, 1348, 3, 806, 403, 0, 1324, 1325, 5, 323, 0, 0, 1325, 1348, 3, 786, 393, 0, 1326, 1329, 5, 267, 0, 0, 1327, 1330, 3, 806, 403, 0, 1328, 1330, 5, 53, 0, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1348, 1, 0, 0, 0, 1331, 1332, 5, 318, 0, 0, 1332, 1348, 3, 58, 29, 0, 1333, 1334, 5, 332, 0, 0, 1334, 1335, 5, 106, 0, 0, 1335, 1348, 3, 58, 29, 0, 1336, 1337, 5, 383, 0, 0, 1337, 1338, 5, 279, 0, 0, 1338, 1348, 3, 690, 345, 0, 1339, 1340, 5, 356, 0, 0, 1340, 1341, 5, 337, 0, 0, 1341, 1348, 3, 806, 403, 0, 1342, 1343, 3, 44, 22, 0, 1343, 1344, 5, 64, 0, 0, 1344, 1345, 5, 434, 0, 0, 1345, 1348, 1, 0, 0, 0, 1346, 1348, 3, 40, 20, 0, 1347, 1319, 1, 0, 0, 0, 1347, 1322, 1, 0, 0, 0, 1347, 1324, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1331, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1336, 1, 0, 0, 0, 1347, 1339, 1, 0, 0, 0, 1347, 1342, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 43, 1, 0, 0, 0, 1349, 1354, 3, 816, 408, 0, 1350, 1351, 5, 11, 0, 0, 1351, 1353, 3, 816, 408, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 45, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1362, 3, 48, 24, 0, 1358, 1359, 5, 6, 0, 0, 1359, 1361, 3, 48, 24, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 47, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1368, 3, 54, 27, 0, 1366, 1368, 3, 196, 98, 0, 1367, 1365, 1, 0, 0, 0, 1367, 1366, 1, 0, 0, 0, 1368, 49, 1, 0, 0, 0, 1369, 1370, 5, 300, 0, 0, 1370, 1375, 7, 8, 0, 0, 1371, 1372, 5, 310, 0, 0, 1372, 1375, 5, 300, 0, 0, 1373, 1375, 5, 330, 0, 0, 1374, 1369, 1, 0, 0, 0, 1374, 1371, 1, 0, 0, 0, 1374, 1373, 1, 0, 0, 0, 1375, 51, 1, 0, 0, 0, 1376, 1383, 5, 96, 0, 0, 1377, 1383, 5, 60, 0, 0, 1378, 1383, 5, 80, 0, 0, 1379, 1383, 3, 796, 398, 0, 1380, 1383, 3, 830, 415, 0, 1381, 1383, 3, 806, 403, 0, 1382, 1376, 1, 0, 0, 0, 1382, 1377, 1, 0, 0, 0, 1382, 1378, 1, 0, 0, 0, 1382, 1379, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 53, 1, 0, 0, 0, 1384, 1389, 5, 96, 0, 0, 1385, 1389, 5, 60, 0, 0, 1386, 1389, 5, 80, 0, 0, 1387, 1389, 3, 58, 29, 0, 1388, 1384, 1, 0, 0, 0, 1388, 1385, 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1388, 1387, 1, 0, 0, 0, 1389, 55, 1, 0, 0, 0, 1390, 1405, 3, 806, 403, 0, 1391, 1405, 5, 53, 0, 0, 1392, 1405, 3, 824, 412, 0, 1393, 1394, 5, 403, 0, 0, 1394, 1396, 3, 806, 403, 0, 1395, 1397, 3, 662, 331, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1405, 1, 0, 0, 0, 1398, 1399, 5, 403, 0, 0, 1399, 1400, 3, 654, 327, 0, 1400, 1401, 3, 806, 403, 0, 1401, 1405, 1, 0, 0, 0, 1402, 1405, 3, 196, 98, 0, 1403, 1405, 5, 254, 0, 0, 1404, 1390, 1, 0, 0, 0, 1404, 1391, 1, 0, 0, 0, 1404, 1392, 1, 0, 0, 0, 1404, 1393, 1, 0, 0, 0, 1404, 1398, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 57, 1, 0, 0, 0, 1406, 1409, 3, 820, 410, 0, 1407, 1409, 3, 806, 403, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1407, 1, 0, 0, 0, 1409, 59, 1, 0, 0, 0, 1410, 1411, 5, 313, 0, 0, 1411, 1412, 3, 62, 31, 0, 1412, 61, 1, 0, 0, 0, 1413, 1414, 5, 418, 0, 0, 1414, 1423, 5, 386, 0, 0, 1415, 1416, 5, 356, 0, 0, 1416, 1417, 5, 244, 0, 0, 1417, 1423, 5, 251, 0, 0, 1418, 1419, 5, 332, 0, 0, 1419, 1423, 5, 106, 0, 0, 1420, 1423, 5, 30, 0, 0, 1421, 1423, 3, 44, 22, 0, 1422, 1413, 1, 0, 0, 0, 1422, 1415, 1, 0, 0, 0, 1422, 1418, 1, 0, 0, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1421, 1, 0, 0, 0, 1423, 63, 1, 0, 0, 0, 1424, 1425, 5, 333, 0, 0, 1425, 1428, 3, 38, 19, 0, 1426, 1428, 3, 60, 30, 0, 1427, 1424, 1, 0, 0, 0, 1427, 1426, 1, 0, 0, 0, 1428, 65, 1, 0, 0, 0, 1429, 1430, 5, 333, 0, 0, 1430, 1433, 3, 42, 21, 0, 1431, 1433, 3, 60, 30, 0, 1432, 1429, 1, 0, 0, 0, 1432, 1431, 1, 0, 0, 0, 1433, 67, 1, 0, 0, 0, 1434, 1444, 5, 335, 0, 0, 1435, 1445, 3, 44, 22, 0, 1436, 1437, 5, 418, 0, 0, 1437, 1445, 5, 386, 0, 0, 1438, 1439, 5, 356, 0, 0, 1439, 1440, 5, 244, 0, 0, 1440, 1445, 5, 251, 0, 0, 1441, 1442, 5, 332, 0, 0, 1442, 1445, 5, 106, 0, 0, 1443, 1445, 5, 30, 0, 0, 1444, 1435, 1, 0, 0, 0, 1444, 1436, 1, 0, 0, 0, 1444, 1438, 1, 0, 0, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1443, 1, 0, 0, 0, 1445, 69, 1, 0, 0, 0, 1446, 1447, 5, 333, 0, 0, 1447, 1450, 5, 165, 0, 0, 1448, 1451, 5, 30, 0, 0, 1449, 1451, 3, 756, 378, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1449, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 7, 9, 0, 0, 1453, 71, 1, 0, 0, 0, 1454, 1455, 5, 155, 0, 0, 1455, 73, 1, 0, 0, 0, 1456, 1457, 5, 187, 0, 0, 1457, 1458, 7, 10, 0, 0, 1458, 75, 1, 0, 0, 0, 1459, 1460, 5, 138, 0, 0, 1460, 1462, 5, 92, 0, 0, 1461, 1463, 3, 416, 208, 0, 1462, 1461, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1467, 3, 618, 309, 0, 1465, 1468, 3, 78, 39, 0, 1466, 1468, 3, 80, 40, 0, 1467, 1465, 1, 0, 0, 0, 1467, 1466, 1, 0, 0, 0, 1468, 1577, 1, 0, 0, 0, 1469, 1470, 5, 138, 0, 0, 1470, 1471, 5, 92, 0, 0, 1471, 1472, 5, 30, 0, 0, 1472, 1473, 5, 68, 0, 0, 1473, 1477, 3, 170, 85, 0, 1474, 1475, 5, 281, 0, 0, 1475, 1476, 5, 147, 0, 0, 1476, 1478, 3, 814, 407, 0, 1477, 1474, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 5, 333, 0, 0, 1480, 1481, 5, 351, 0, 0, 1481, 1483, 3, 766, 383, 0, 1482, 1484, 5, 272, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1577, 1, 0, 0, 0, 1485, 1486, 5, 138, 0, 0, 1486, 1488, 5, 92, 0, 0, 1487, 1489, 3, 416, 208, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 3, 770, 385, 0, 1491, 1492, 3, 82, 41, 0, 1492, 1493, 3, 98, 49, 0, 1493, 1577, 1, 0, 0, 0, 1494, 1495, 5, 138, 0, 0, 1495, 1497, 5, 92, 0, 0, 1496, 1498, 3, 416, 208, 0, 1497, 1496, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 3, 770, 385, 0, 1500, 1501, 5, 436, 0, 0, 1501, 1502, 5, 285, 0, 0, 1502, 1504, 3, 776, 388, 0, 1503, 1505, 7, 11, 0, 0, 1504, 1503, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1577, 1, 0, 0, 0, 1506, 1507, 5, 138, 0, 0, 1507, 1509, 5, 226, 0, 0, 1508, 1510, 3, 416, 208, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 3, 776, 388, 0, 1512, 1515, 3, 78, 39, 0, 1513, 1515, 3, 82, 41, 0, 1514, 1512, 1, 0, 0, 0, 1514, 1513, 1, 0, 0, 0, 1515, 1577, 1, 0, 0, 0, 1516, 1517, 5, 138, 0, 0, 1517, 1518, 5, 226, 0, 0, 1518, 1519, 5, 30, 0, 0, 1519, 1520, 5, 68, 0, 0, 1520, 1524, 3, 170, 85, 0, 1521, 1522, 5, 281, 0, 0, 1522, 1523, 5, 147, 0, 0, 1523, 1525, 3, 814, 407, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 5, 333, 0, 0, 1527, 1529, 3, 170, 85, 0, 1528, 1530, 5, 272, 0, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1577, 1, 0, 0, 0, 1531, 1532, 5, 138, 0, 0, 1532, 1534, 5, 328, 0, 0, 1533, 1535, 3, 416, 208, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 3, 776, 388, 0, 1537, 1538, 3, 78, 39, 0, 1538, 1577, 1, 0, 0, 0, 1539, 1541, 5, 138, 0, 0, 1540, 1542, 5, 259, 0, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 5, 376, 0, 0, 1544, 1546, 3, 416, 208, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 3, 774, 387, 0, 1548, 1549, 3, 78, 39, 0, 1549, 1577, 1, 0, 0, 0, 1550, 1551, 5, 138, 0, 0, 1551, 1552, 5, 259, 0, 0, 1552, 1553, 5, 376, 0, 0, 1553, 1554, 5, 30, 0, 0, 1554, 1555, 5, 68, 0, 0, 1555, 1559, 3, 170, 85, 0, 1556, 1557, 5, 281, 0, 0, 1557, 1558, 5, 147, 0, 0, 1558, 1560, 3, 814, 407, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 333, 0, 0, 1562, 1563, 5, 351, 0, 0, 1563, 1565, 3, 766, 383, 0, 1564, 1566, 5, 272, 0, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1577, 1, 0, 0, 0, 1567, 1568, 5, 138, 0, 0, 1568, 1569, 5, 63, 0, 0, 1569, 1571, 5, 92, 0, 0, 1570, 1572, 3, 416, 208, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 3, 618, 309, 0, 1574, 1575, 3, 78, 39, 0, 1575, 1577, 1, 0, 0, 0, 1576, 1459, 1, 0, 0, 0, 1576, 1469, 1, 0, 0, 0, 1576, 1485, 1, 0, 0, 0, 1576, 1494, 1, 0, 0, 0, 1576, 1506, 1, 0, 0, 0, 1576, 1516, 1, 0, 0, 0, 1576, 1531, 1, 0, 0, 0, 1576, 1539, 1, 0, 0, 0, 1576, 1550, 1, 0, 0, 0, 1576, 1567, 1, 0, 0, 0, 1577, 77, 1, 0, 0, 0, 1578, 1583, 3, 84, 42, 0, 1579, 1580, 5, 6, 0, 0, 1580, 1582, 3, 84, 42, 0, 1581, 1579, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1581, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 79, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1587, 3, 82, 41, 0, 1587, 1588, 3, 98, 49, 0, 1588, 1593, 1, 0, 0, 0, 1589, 1590, 5, 436, 0, 0, 1590, 1591, 5, 285, 0, 0, 1591, 1593, 3, 776, 388, 0, 1592, 1586, 1, 0, 0, 0, 1592, 1589, 1, 0, 0, 0, 1593, 81, 1, 0, 0, 0, 1594, 1595, 5, 435, 0, 0, 1595, 1596, 5, 285, 0, 0, 1596, 1597, 3, 776, 388, 0, 1597, 83, 1, 0, 0, 0, 1598, 1601, 5, 133, 0, 0, 1599, 1600, 5, 45, 0, 0, 1600, 1602, 3, 816, 408, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1832, 3, 136, 68, 0, 1604, 1605, 5, 138, 0, 0, 1605, 1606, 5, 45, 0, 0, 1606, 1610, 3, 816, 408, 0, 1607, 1609, 3, 266, 133, 0, 1608, 1607, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1832, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1614, 5, 372, 0, 0, 1614, 1615, 5, 45, 0, 0, 1615, 1832, 3, 816, 408, 0, 1616, 1617, 5, 191, 0, 0, 1617, 1619, 5, 45, 0, 0, 1618, 1620, 3, 416, 208, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1623, 3, 816, 408, 0, 1622, 1624, 3, 88, 44, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1832, 1, 0, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 379, 0, 0, 1627, 1832, 7, 12, 0, 0, 1628, 1629, 5, 158, 0, 0, 1629, 1630, 5, 80, 0, 0, 1630, 1832, 3, 816, 408, 0, 1631, 1632, 5, 333, 0, 0, 1632, 1832, 7, 13, 0, 0, 1633, 1635, 5, 193, 0, 0, 1634, 1636, 7, 14, 0, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1832, 5, 357, 0, 0, 1638, 1639, 5, 186, 0, 0, 1639, 1643, 5, 357, 0, 0, 1640, 1644, 5, 30, 0, 0, 1641, 1644, 5, 99, 0, 0, 1642, 1644, 3, 816, 408, 0, 1643, 1640, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1642, 1, 0, 0, 0, 1644, 1832, 1, 0, 0, 0, 1645, 1646, 5, 193, 0, 0, 1646, 1647, 7, 14, 0, 0, 1647, 1648, 5, 321, 0, 0, 1648, 1832, 3, 816, 408, 0, 1649, 1650, 5, 186, 0, 0, 1650, 1651, 5, 321, 0, 0, 1651, 1832, 3, 816, 408, 0, 1652, 1654, 5, 269, 0, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 5, 228, 0, 0, 1656, 1832, 3, 776, 388, 0, 1657, 1658, 5, 275, 0, 0, 1658, 1832, 3, 310, 155, 0, 1659, 1660, 5, 77, 0, 0, 1660, 1832, 5, 275, 0, 0, 1661, 1662, 5, 282, 0, 0, 1662, 1663, 5, 94, 0, 0, 1663, 1832, 3, 812, 406, 0, 1664, 1665, 5, 333, 0, 0, 1665, 1666, 5, 351, 0, 0, 1666, 1832, 3, 766, 383, 0, 1667, 1668, 5, 312, 0, 0, 1668, 1673, 5, 219, 0, 0, 1669, 1674, 5, 270, 0, 0, 1670, 1674, 5, 113, 0, 0, 1671, 1674, 5, 53, 0, 0, 1672, 1674, 3, 174, 87, 0, 1673, 1669, 1, 0, 0, 0, 1673, 1670, 1, 0, 0, 0, 1673, 1671, 1, 0, 0, 0, 1673, 1672, 1, 0, 0, 0, 1674, 1832, 1, 0, 0, 0, 1675, 1682, 5, 193, 0, 0, 1676, 1682, 5, 186, 0, 0, 1677, 1679, 5, 269, 0, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1682, 5, 209, 0, 0, 1681, 1675, 1, 0, 0, 0, 1681, 1676, 1, 0, 0, 0, 1681, 1678, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 5, 414, 0, 0, 1684, 1685, 5, 251, 0, 0, 1685, 1832, 5, 327, 0, 0, 1686, 1688, 5, 191, 0, 0, 1687, 1689, 5, 44, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1691, 1, 0, 0, 0, 1690, 1692, 3, 416, 208, 0, 1691, 1690, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 3, 796, 398, 0, 1694, 1696, 3, 88, 44, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1832, 1, 0, 0, 0, 1697, 1699, 5, 133, 0, 0, 1698, 1700, 5, 44, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 1, 0, 0, 0, 1701, 1703, 3, 288, 144, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1832, 3, 126, 63, 0, 1705, 1707, 5, 138, 0, 0, 1706, 1708, 5, 44, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1712, 3, 796, 398, 0, 1710, 1713, 3, 86, 43, 0, 1711, 1713, 3, 216, 108, 0, 1712, 1710, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 1832, 1, 0, 0, 0, 1714, 1716, 5, 138, 0, 0, 1715, 1717, 5, 44, 0, 0, 1716, 1715, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 3, 796, 398, 0, 1719, 1720, 7, 15, 0, 0, 1720, 1721, 5, 77, 0, 0, 1721, 1722, 5, 78, 0, 0, 1722, 1832, 1, 0, 0, 0, 1723, 1725, 5, 138, 0, 0, 1724, 1726, 5, 44, 0, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 3, 796, 398, 0, 1728, 1729, 5, 191, 0, 0, 1729, 1731, 5, 437, 0, 0, 1730, 1732, 3, 416, 208, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1832, 1, 0, 0, 0, 1733, 1735, 5, 138, 0, 0, 1734, 1736, 5, 44, 0, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 3, 796, 398, 0, 1738, 1739, 5, 333, 0, 0, 1739, 1740, 5, 342, 0, 0, 1740, 1741, 3, 810, 405, 0, 1741, 1832, 1, 0, 0, 0, 1742, 1744, 5, 138, 0, 0, 1743, 1745, 5, 44, 0, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1748, 3, 796, 398, 0, 1747, 1742, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 7, 16, 0, 0, 1750, 1832, 3, 92, 46, 0, 1751, 1753, 5, 138, 0, 0, 1752, 1754, 5, 44, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 3, 796, 398, 0, 1756, 1757, 5, 333, 0, 0, 1757, 1758, 5, 345, 0, 0, 1758, 1759, 3, 816, 408, 0, 1759, 1832, 1, 0, 0, 0, 1760, 1762, 5, 138, 0, 0, 1761, 1763, 5, 44, 0, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 796, 398, 0, 1765, 1766, 5, 133, 0, 0, 1766, 1767, 5, 438, 0, 0, 1767, 1768, 3, 132, 66, 0, 1768, 1769, 5, 36, 0, 0, 1769, 1778, 5, 219, 0, 0, 1770, 1772, 5, 2, 0, 0, 1771, 1773, 3, 194, 97, 0, 1772, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1772, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 5, 3, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1770, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1832, 1, 0, 0, 0, 1780, 1782, 5, 138, 0, 0, 1781, 1783, 5, 44, 0, 0, 1782, 1781, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1798, 3, 796, 398, 0, 1785, 1790, 5, 314, 0, 0, 1786, 1788, 5, 105, 0, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1791, 3, 196, 98, 0, 1790, 1787, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1799, 1, 0, 0, 0, 1792, 1796, 5, 333, 0, 0, 1793, 1797, 3, 194, 97, 0, 1794, 1795, 5, 438, 0, 0, 1795, 1797, 3, 132, 66, 0, 1796, 1793, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1797, 1799, 1, 0, 0, 0, 1798, 1785, 1, 0, 0, 0, 1798, 1792, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1832, 1, 0, 0, 0, 1802, 1804, 5, 138, 0, 0, 1803, 1805, 5, 44, 0, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 796, 398, 0, 1807, 1808, 5, 191, 0, 0, 1808, 1810, 5, 219, 0, 0, 1809, 1811, 3, 416, 208, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1832, 1, 0, 0, 0, 1812, 1814, 5, 138, 0, 0, 1813, 1815, 5, 44, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1819, 3, 796, 398, 0, 1817, 1818, 5, 333, 0, 0, 1818, 1820, 5, 174, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 5, 360, 0, 0, 1822, 1824, 3, 646, 323, 0, 1823, 1825, 3, 90, 45, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1827, 5, 100, 0, 0, 1827, 1829, 3, 668, 334, 0, 1828, 1826, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1832, 3, 216, 108, 0, 1831, 1598, 1, 0, 0, 0, 1831, 1604, 1, 0, 0, 0, 1831, 1613, 1, 0, 0, 0, 1831, 1616, 1, 0, 0, 0, 1831, 1625, 1, 0, 0, 0, 1831, 1628, 1, 0, 0, 0, 1831, 1631, 1, 0, 0, 0, 1831, 1633, 1, 0, 0, 0, 1831, 1638, 1, 0, 0, 0, 1831, 1645, 1, 0, 0, 0, 1831, 1649, 1, 0, 0, 0, 1831, 1653, 1, 0, 0, 0, 1831, 1657, 1, 0, 0, 0, 1831, 1659, 1, 0, 0, 0, 1831, 1661, 1, 0, 0, 0, 1831, 1664, 1, 0, 0, 0, 1831, 1667, 1, 0, 0, 0, 1831, 1681, 1, 0, 0, 0, 1831, 1686, 1, 0, 0, 0, 1831, 1697, 1, 0, 0, 0, 1831, 1705, 1, 0, 0, 0, 1831, 1714, 1, 0, 0, 0, 1831, 1723, 1, 0, 0, 0, 1831, 1733, 1, 0, 0, 0, 1831, 1747, 1, 0, 0, 0, 1831, 1751, 1, 0, 0, 0, 1831, 1760, 1, 0, 0, 0, 1831, 1780, 1, 0, 0, 0, 1831, 1802, 1, 0, 0, 0, 1831, 1812, 1, 0, 0, 0, 1831, 1830, 1, 0, 0, 0, 1832, 85, 1, 0, 0, 0, 1833, 1834, 5, 333, 0, 0, 1834, 1835, 5, 53, 0, 0, 1835, 1839, 3, 668, 334, 0, 1836, 1837, 5, 191, 0, 0, 1837, 1839, 5, 53, 0, 0, 1838, 1833, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 87, 1, 0, 0, 0, 1840, 1841, 7, 17, 0, 0, 1841, 89, 1, 0, 0, 0, 1842, 1843, 5, 43, 0, 0, 1843, 1844, 3, 310, 155, 0, 1844, 91, 1, 0, 0, 0, 1845, 1846, 5, 2, 0, 0, 1846, 1851, 3, 96, 48, 0, 1847, 1848, 5, 6, 0, 0, 1848, 1850, 3, 96, 48, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 3, 0, 0, 1855, 93, 1, 0, 0, 0, 1856, 1857, 5, 105, 0, 0, 1857, 1858, 3, 92, 46, 0, 1858, 95, 1, 0, 0, 0, 1859, 1864, 3, 822, 411, 0, 1860, 1861, 5, 10, 0, 0, 1861, 1865, 3, 282, 141, 0, 1862, 1863, 5, 11, 0, 0, 1863, 1865, 3, 280, 140, 0, 1864, 1860, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 97, 1, 0, 0, 0, 1866, 1867, 5, 62, 0, 0, 1867, 1868, 5, 422, 0, 0, 1868, 1869, 5, 105, 0, 0, 1869, 1870, 5, 2, 0, 0, 1870, 1871, 5, 533, 0, 0, 1871, 1872, 3, 196, 98, 0, 1872, 1873, 5, 6, 0, 0, 1873, 1874, 5, 534, 0, 0, 1874, 1875, 3, 196, 98, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1890, 1, 0, 0, 0, 1877, 1878, 5, 62, 0, 0, 1878, 1879, 5, 422, 0, 0, 1879, 1880, 5, 68, 0, 0, 1880, 1890, 3, 528, 264, 0, 1881, 1882, 5, 62, 0, 0, 1882, 1883, 5, 422, 0, 0, 1883, 1884, 5, 64, 0, 0, 1884, 1885, 3, 528, 264, 0, 1885, 1886, 5, 94, 0, 0, 1886, 1887, 3, 528, 264, 0, 1887, 1890, 1, 0, 0, 0, 1888, 1890, 5, 53, 0, 0, 1889, 1866, 1, 0, 0, 0, 1889, 1877, 1, 0, 0, 0, 1889, 1881, 1, 0, 0, 0, 1889, 1888, 1, 0, 0, 0, 1890, 99, 1, 0, 0, 0, 1891, 1892, 5, 138, 0, 0, 1892, 1893, 5, 360, 0, 0, 1893, 1894, 3, 310, 155, 0, 1894, 1899, 3, 102, 51, 0, 1895, 1896, 5, 6, 0, 0, 1896, 1898, 3, 102, 51, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 101, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1903, 5, 133, 0, 0, 1903, 1904, 5, 143, 0, 0, 1904, 1906, 3, 638, 319, 0, 1905, 1907, 3, 88, 44, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1933, 1, 0, 0, 0, 1908, 1909, 5, 191, 0, 0, 1909, 1911, 5, 143, 0, 0, 1910, 1912, 3, 416, 208, 0, 1911, 1910, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1915, 3, 816, 408, 0, 1914, 1916, 3, 88, 44, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1933, 1, 0, 0, 0, 1917, 1918, 5, 138, 0, 0, 1918, 1919, 5, 143, 0, 0, 1919, 1922, 3, 816, 408, 0, 1920, 1921, 5, 333, 0, 0, 1921, 1923, 5, 174, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 5, 360, 0, 0, 1925, 1927, 3, 646, 323, 0, 1926, 1928, 3, 90, 45, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1931, 3, 88, 44, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1933, 1, 0, 0, 0, 1932, 1902, 1, 0, 0, 0, 1932, 1908, 1, 0, 0, 0, 1932, 1917, 1, 0, 0, 0, 1933, 103, 1, 0, 0, 0, 1934, 1937, 5, 157, 0, 0, 1935, 1938, 3, 816, 408, 0, 1936, 1938, 5, 30, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 105, 1, 0, 0, 0, 1939, 1941, 5, 169, 0, 0, 1940, 1942, 5, 107, 0, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1945, 3, 770, 385, 0, 1944, 1946, 3, 138, 69, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1949, 7, 18, 0, 0, 1948, 1950, 5, 297, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1954, 1, 0, 0, 0, 1951, 1955, 3, 806, 403, 0, 1952, 1955, 5, 343, 0, 0, 1953, 1955, 5, 344, 0, 0, 1954, 1951, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1953, 1, 0, 0, 0, 1955, 1961, 1, 0, 0, 0, 1956, 1958, 5, 100, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 5, 184, 0, 0, 1960, 1962, 3, 806, 403, 0, 1961, 1957, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1965, 5, 105, 0, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1968, 3, 110, 55, 0, 1967, 1969, 3, 632, 316, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1989, 1, 0, 0, 0, 1970, 1971, 5, 169, 0, 0, 1971, 1972, 5, 2, 0, 0, 1972, 1973, 3, 524, 262, 0, 1973, 1974, 5, 3, 0, 0, 1974, 1976, 5, 94, 0, 0, 1975, 1977, 5, 297, 0, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1981, 1, 0, 0, 0, 1978, 1982, 3, 806, 403, 0, 1979, 1982, 5, 343, 0, 0, 1980, 1982, 5, 344, 0, 0, 1981, 1978, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1980, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 5, 105, 0, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 3, 110, 55, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1939, 1, 0, 0, 0, 1988, 1970, 1, 0, 0, 0, 1989, 107, 1, 0, 0, 0, 1990, 2033, 5, 107, 0, 0, 1991, 2033, 5, 112, 0, 0, 1992, 1994, 7, 19, 0, 0, 1993, 1995, 5, 36, 0, 0, 1994, 1993, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2033, 3, 806, 403, 0, 1997, 2033, 5, 171, 0, 0, 1998, 2033, 5, 216, 0, 0, 1999, 2000, 5, 209, 0, 0, 2000, 2003, 5, 298, 0, 0, 2001, 2004, 3, 142, 71, 0, 2002, 2004, 5, 9, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2002, 1, 0, 0, 0, 2004, 2033, 1, 0, 0, 0, 2005, 2007, 5, 209, 0, 0, 2006, 2008, 5, 77, 0, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2010, 5, 78, 0, 0, 2010, 2033, 3, 142, 71, 0, 2011, 2012, 5, 194, 0, 0, 2012, 2033, 3, 806, 403, 0, 2013, 2030, 7, 20, 0, 0, 2014, 2017, 5, 2, 0, 0, 2015, 2018, 3, 142, 71, 0, 2016, 2018, 5, 9, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2016, 1, 0, 0, 0, 2018, 2026, 1, 0, 0, 0, 2019, 2022, 5, 6, 0, 0, 2020, 2023, 3, 142, 71, 0, 2021, 2023, 5, 9, 0, 0, 2022, 2020, 1, 0, 0, 0, 2022, 2021, 1, 0, 0, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2019, 1, 0, 0, 0, 2025, 2028, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2029, 2031, 5, 3, 0, 0, 2030, 2014, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 1990, 1, 0, 0, 0, 2032, 1991, 1, 0, 0, 0, 2032, 1992, 1, 0, 0, 0, 2032, 1997, 1, 0, 0, 0, 2032, 1998, 1, 0, 0, 0, 2032, 1999, 1, 0, 0, 0, 2032, 2005, 1, 0, 0, 0, 2032, 2011, 1, 0, 0, 0, 2032, 2013, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 109, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2056, 3, 108, 54, 0, 2038, 2041, 5, 2, 0, 0, 2039, 2042, 3, 108, 54, 0, 2040, 2042, 3, 112, 56, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 2050, 1, 0, 0, 0, 2043, 2046, 5, 6, 0, 0, 2044, 2047, 3, 108, 54, 0, 2045, 2047, 3, 112, 56, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2045, 1, 0, 0, 0, 2047, 2049, 1, 0, 0, 0, 2048, 2043, 1, 0, 0, 0, 2049, 2052, 1, 0, 0, 0, 2050, 2048, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2053, 1, 0, 0, 0, 2052, 2050, 1, 0, 0, 0, 2053, 2054, 5, 3, 0, 0, 2054, 2056, 1, 0, 0, 0, 2055, 2037, 1, 0, 0, 0, 2055, 2038, 1, 0, 0, 0, 2056, 111, 1, 0, 0, 0, 2057, 2072, 3, 822, 411, 0, 2058, 2073, 3, 54, 27, 0, 2059, 2073, 3, 196, 98, 0, 2060, 2073, 5, 9, 0, 0, 2061, 2062, 5, 2, 0, 0, 2062, 2067, 3, 52, 26, 0, 2063, 2064, 5, 6, 0, 0, 2064, 2066, 3, 52, 26, 0, 2065, 2063, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2070, 1, 0, 0, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 1, 0, 0, 0, 2072, 2058, 1, 0, 0, 0, 2072, 2059, 1, 0, 0, 0, 2072, 2060, 1, 0, 0, 0, 2072, 2061, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 113, 1, 0, 0, 0, 2074, 2076, 5, 46, 0, 0, 2075, 2077, 3, 116, 58, 0, 2076, 2075, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 5, 92, 0, 0, 2079, 2081, 3, 288, 144, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2148, 3, 768, 384, 0, 2083, 2085, 5, 2, 0, 0, 2084, 2086, 3, 120, 60, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2089, 5, 3, 0, 0, 2088, 2090, 3, 158, 79, 0, 2089, 2088, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2093, 3, 160, 80, 0, 2092, 2091, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2096, 3, 164, 82, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 166, 83, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 168, 84, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 170, 85, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2149, 1, 0, 0, 0, 2106, 2107, 5, 275, 0, 0, 2107, 2109, 3, 310, 155, 0, 2108, 2110, 3, 118, 59, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 160, 80, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 164, 82, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 166, 83, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2122, 3, 168, 84, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 1, 0, 0, 0, 2123, 2125, 3, 170, 85, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2149, 1, 0, 0, 0, 2126, 2127, 5, 285, 0, 0, 2127, 2128, 5, 275, 0, 0, 2128, 2130, 3, 776, 388, 0, 2129, 2131, 3, 118, 59, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 3, 98, 49, 0, 2133, 2135, 3, 160, 80, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2138, 3, 164, 82, 0, 2137, 2136, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2140, 1, 0, 0, 0, 2139, 2141, 3, 166, 83, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2144, 3, 168, 84, 0, 2143, 2142, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2146, 1, 0, 0, 0, 2145, 2147, 3, 170, 85, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2083, 1, 0, 0, 0, 2148, 2106, 1, 0, 0, 0, 2148, 2126, 1, 0, 0, 0, 2149, 115, 1, 0, 0, 0, 2150, 2156, 5, 354, 0, 0, 2151, 2156, 5, 352, 0, 0, 2152, 2153, 7, 21, 0, 0, 2153, 2156, 7, 22, 0, 0, 2154, 2156, 5, 367, 0, 0, 2155, 2150, 1, 0, 0, 0, 2155, 2151, 1, 0, 0, 0, 2155, 2152, 1, 0, 0, 0, 2155, 2154, 1, 0, 0, 0, 2156, 117, 1, 0, 0, 0, 2157, 2158, 5, 2, 0, 0, 2158, 2163, 3, 124, 62, 0, 2159, 2160, 5, 6, 0, 0, 2160, 2162, 3, 124, 62, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2165, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2167, 5, 3, 0, 0, 2167, 119, 1, 0, 0, 0, 2168, 2173, 3, 122, 61, 0, 2169, 2170, 5, 6, 0, 0, 2170, 2172, 3, 122, 61, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 121, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 5, 45, 0, 0, 2177, 2179, 3, 816, 408, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2192, 3, 136, 68, 0, 2181, 2192, 3, 126, 63, 0, 2182, 2183, 5, 120, 0, 0, 2183, 2188, 3, 776, 388, 0, 2184, 2185, 7, 23, 0, 0, 2185, 2187, 3, 134, 67, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2190, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2192, 1, 0, 0, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2178, 1, 0, 0, 0, 2191, 2181, 1, 0, 0, 0, 2191, 2182, 1, 0, 0, 0, 2192, 123, 1, 0, 0, 0, 2193, 2196, 3, 800, 400, 0, 2194, 2195, 5, 105, 0, 0, 2195, 2197, 5, 280, 0, 0, 2196, 2194, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2201, 1, 0, 0, 0, 2198, 2200, 3, 128, 64, 0, 2199, 2198, 1, 0, 0, 0, 2200, 2203, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2210, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2205, 5, 45, 0, 0, 2205, 2207, 3, 816, 408, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 3, 136, 68, 0, 2209, 2193, 1, 0, 0, 0, 2209, 2206, 1, 0, 0, 0, 2210, 125, 1, 0, 0, 0, 2211, 2212, 3, 800, 400, 0, 2212, 2214, 3, 646, 323, 0, 2213, 2215, 3, 214, 107, 0, 2214, 2213, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2225, 1, 0, 0, 0, 2216, 2223, 5, 345, 0, 0, 2217, 2224, 5, 544, 0, 0, 2218, 2224, 5, 205, 0, 0, 2219, 2224, 5, 545, 0, 0, 2220, 2224, 5, 546, 0, 0, 2221, 2224, 5, 53, 0, 0, 2222, 2224, 3, 816, 408, 0, 2223, 2217, 1, 0, 0, 0, 2223, 2218, 1, 0, 0, 0, 2223, 2219, 1, 0, 0, 0, 2223, 2220, 1, 0, 0, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2222, 1, 0, 0, 0, 2224, 2226, 1, 0, 0, 0, 2225, 2216, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2229, 1, 0, 0, 0, 2227, 2228, 5, 543, 0, 0, 2228, 2230, 3, 816, 408, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2233, 3, 90, 45, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2235, 5, 105, 0, 0, 2235, 2237, 5, 280, 0, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2241, 1, 0, 0, 0, 2238, 2240, 3, 128, 64, 0, 2239, 2238, 1, 0, 0, 0, 2240, 2243, 1, 0, 0, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 127, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2245, 5, 45, 0, 0, 2245, 2247, 3, 816, 408, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2253, 3, 130, 65, 0, 2249, 2251, 5, 77, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2254, 5, 54, 0, 0, 2253, 2250, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2256, 5, 69, 0, 0, 2256, 2258, 7, 9, 0, 0, 2257, 2255, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 129, 1, 0, 0, 0, 2259, 2261, 5, 77, 0, 0, 2260, 2259, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2340, 5, 78, 0, 0, 2263, 2265, 5, 98, 0, 0, 2264, 2266, 3, 394, 197, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2268, 1, 0, 0, 0, 2267, 2269, 3, 172, 86, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2340, 1, 0, 0, 0, 2270, 2276, 5, 98, 0, 0, 2271, 2273, 5, 273, 0, 0, 2272, 2274, 5, 77, 0, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2277, 5, 56, 0, 0, 2276, 2271, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2280, 1, 0, 0, 0, 2278, 2279, 5, 441, 0, 0, 2279, 2281, 3, 354, 177, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 1, 0, 0, 0, 2282, 2284, 3, 566, 283, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2287, 3, 172, 86, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2340, 1, 0, 0, 0, 2288, 2289, 5, 85, 0, 0, 2289, 2291, 5, 245, 0, 0, 2290, 2292, 3, 394, 197, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2295, 3, 172, 86, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2340, 1, 0, 0, 0, 2296, 2297, 5, 42, 0, 0, 2297, 2298, 5, 2, 0, 0, 2298, 2299, 3, 668, 334, 0, 2299, 2302, 5, 3, 0, 0, 2300, 2301, 5, 269, 0, 0, 2301, 2303, 5, 228, 0, 0, 2302, 2300, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2340, 1, 0, 0, 0, 2304, 2305, 5, 53, 0, 0, 2305, 2340, 3, 676, 338, 0, 2306, 2307, 5, 438, 0, 0, 2307, 2308, 3, 132, 66, 0, 2308, 2325, 5, 36, 0, 0, 2309, 2318, 5, 219, 0, 0, 2310, 2312, 5, 2, 0, 0, 2311, 2313, 3, 194, 97, 0, 2312, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 2317, 5, 3, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2310, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2326, 1, 0, 0, 0, 2320, 2321, 5, 2, 0, 0, 2321, 2322, 3, 668, 334, 0, 2322, 2323, 5, 3, 0, 0, 2323, 2324, 5, 440, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2309, 1, 0, 0, 0, 2325, 2320, 1, 0, 0, 0, 2326, 2340, 1, 0, 0, 0, 2327, 2328, 5, 86, 0, 0, 2328, 2330, 3, 776, 388, 0, 2329, 2331, 3, 138, 69, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2334, 3, 146, 73, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2337, 3, 150, 75, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2340, 3, 90, 45, 0, 2339, 2260, 1, 0, 0, 0, 2339, 2263, 1, 0, 0, 0, 2339, 2270, 1, 0, 0, 0, 2339, 2288, 1, 0, 0, 0, 2339, 2296, 1, 0, 0, 0, 2339, 2304, 1, 0, 0, 0, 2339, 2306, 1, 0, 0, 0, 2339, 2327, 1, 0, 0, 0, 2339, 2338, 1, 0, 0, 0, 2340, 131, 1, 0, 0, 0, 2341, 2345, 5, 139, 0, 0, 2342, 2343, 5, 147, 0, 0, 2343, 2345, 5, 53, 0, 0, 2344, 2341, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2345, 133, 1, 0, 0, 0, 2346, 2347, 7, 24, 0, 0, 2347, 135, 1, 0, 0, 0, 2348, 2349, 5, 42, 0, 0, 2349, 2350, 5, 2, 0, 0, 2350, 2351, 3, 668, 334, 0, 2351, 2355, 5, 3, 0, 0, 2352, 2354, 3, 266, 133, 0, 2353, 2352, 1, 0, 0, 0, 2354, 2357, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2445, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2362, 5, 98, 0, 0, 2359, 2360, 5, 85, 0, 0, 2360, 2362, 5, 245, 0, 0, 2361, 2358, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2386, 1, 0, 0, 0, 2363, 2365, 3, 138, 69, 0, 2364, 2366, 3, 144, 72, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2368, 1, 0, 0, 0, 2367, 2369, 3, 394, 197, 0, 2368, 2367, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2371, 1, 0, 0, 0, 2370, 2372, 3, 172, 86, 0, 2371, 2370, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2376, 1, 0, 0, 0, 2373, 2375, 3, 266, 133, 0, 2374, 2373, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2387, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2383, 3, 174, 87, 0, 2380, 2382, 3, 266, 133, 0, 2381, 2380, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2387, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2363, 1, 0, 0, 0, 2386, 2379, 1, 0, 0, 0, 2387, 2445, 1, 0, 0, 0, 2388, 2390, 5, 199, 0, 0, 2389, 2391, 3, 164, 82, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2393, 5, 2, 0, 0, 2393, 2398, 3, 148, 74, 0, 2394, 2395, 5, 6, 0, 0, 2395, 2397, 3, 148, 74, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2400, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2401, 1, 0, 0, 0, 2400, 2398, 1, 0, 0, 0, 2401, 2403, 5, 3, 0, 0, 2402, 2404, 3, 144, 72, 0, 2403, 2402, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2406, 1, 0, 0, 0, 2405, 2407, 3, 394, 197, 0, 2406, 2405, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2410, 3, 172, 86, 0, 2409, 2408, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2416, 1, 0, 0, 0, 2411, 2412, 5, 103, 0, 0, 2412, 2413, 5, 2, 0, 0, 2413, 2414, 3, 668, 334, 0, 2414, 2415, 5, 3, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2411, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2421, 1, 0, 0, 0, 2418, 2420, 3, 266, 133, 0, 2419, 2418, 1, 0, 0, 0, 2420, 2423, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2445, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2425, 5, 63, 0, 0, 2425, 2426, 5, 245, 0, 0, 2426, 2427, 3, 138, 69, 0, 2427, 2428, 5, 86, 0, 0, 2428, 2430, 3, 776, 388, 0, 2429, 2431, 3, 138, 69, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2434, 3, 146, 73, 0, 2433, 2432, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, 1, 0, 0, 0, 2435, 2437, 3, 150, 75, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2441, 1, 0, 0, 0, 2438, 2440, 3, 266, 133, 0, 2439, 2438, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2445, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2348, 1, 0, 0, 0, 2444, 2361, 1, 0, 0, 0, 2444, 2388, 1, 0, 0, 0, 2444, 2424, 1, 0, 0, 0, 2445, 137, 1, 0, 0, 0, 2446, 2447, 5, 2, 0, 0, 2447, 2448, 3, 142, 71, 0, 2448, 2449, 5, 3, 0, 0, 2449, 139, 1, 0, 0, 0, 2450, 2451, 5, 2, 0, 0, 2451, 2456, 3, 800, 400, 0, 2452, 2453, 5, 6, 0, 0, 2453, 2455, 3, 800, 400, 0, 2454, 2452, 1, 0, 0, 0, 2455, 2458, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2459, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2460, 5, 3, 0, 0, 2460, 141, 1, 0, 0, 0, 2461, 2466, 3, 796, 398, 0, 2462, 2463, 5, 6, 0, 0, 2463, 2465, 3, 796, 398, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 143, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2470, 5, 441, 0, 0, 2470, 2471, 3, 138, 69, 0, 2471, 145, 1, 0, 0, 0, 2472, 2473, 5, 258, 0, 0, 2473, 2474, 7, 25, 0, 0, 2474, 147, 1, 0, 0, 0, 2475, 2476, 3, 356, 178, 0, 2476, 2483, 5, 105, 0, 0, 2477, 2484, 3, 408, 204, 0, 2478, 2479, 5, 278, 0, 0, 2479, 2480, 5, 2, 0, 0, 2480, 2481, 3, 408, 204, 0, 2481, 2482, 5, 3, 0, 0, 2482, 2484, 1, 0, 0, 0, 2483, 2477, 1, 0, 0, 0, 2483, 2478, 1, 0, 0, 0, 2484, 149, 1, 0, 0, 0, 2485, 2487, 3, 152, 76, 0, 2486, 2488, 3, 154, 77, 0, 2487, 2486, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2494, 1, 0, 0, 0, 2489, 2491, 3, 154, 77, 0, 2490, 2492, 3, 152, 76, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 1, 0, 0, 0, 2493, 2485, 1, 0, 0, 0, 2493, 2489, 1, 0, 0, 0, 2494, 151, 1, 0, 0, 0, 2495, 2496, 5, 80, 0, 0, 2496, 2497, 5, 369, 0, 0, 2497, 2498, 3, 156, 78, 0, 2498, 153, 1, 0, 0, 0, 2499, 2500, 5, 80, 0, 0, 2500, 2501, 5, 182, 0, 0, 2501, 2502, 3, 156, 78, 0, 2502, 155, 1, 0, 0, 0, 2503, 2504, 5, 269, 0, 0, 2504, 2513, 5, 132, 0, 0, 2505, 2513, 5, 315, 0, 0, 2506, 2513, 5, 150, 0, 0, 2507, 2508, 5, 333, 0, 0, 2508, 2510, 7, 26, 0, 0, 2509, 2511, 3, 142, 71, 0, 2510, 2509, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 1, 0, 0, 0, 2512, 2503, 1, 0, 0, 0, 2512, 2505, 1, 0, 0, 0, 2512, 2506, 1, 0, 0, 0, 2512, 2507, 1, 0, 0, 0, 2513, 157, 1, 0, 0, 0, 2514, 2515, 5, 238, 0, 0, 2515, 2516, 5, 2, 0, 0, 2516, 2517, 3, 756, 378, 0, 2517, 2518, 5, 3, 0, 0, 2518, 159, 1, 0, 0, 0, 2519, 2520, 5, 285, 0, 0, 2520, 2521, 5, 147, 0, 0, 2521, 2522, 3, 816, 408, 0, 2522, 2523, 5, 2, 0, 0, 2523, 2528, 3, 162, 81, 0, 2524, 2525, 5, 6, 0, 0, 2525, 2527, 3, 162, 81, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2530, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2531, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2531, 2532, 5, 3, 0, 0, 2532, 161, 1, 0, 0, 0, 2533, 2540, 3, 796, 398, 0, 2534, 2540, 3, 682, 341, 0, 2535, 2536, 5, 2, 0, 0, 2536, 2537, 3, 668, 334, 0, 2537, 2538, 5, 3, 0, 0, 2538, 2540, 1, 0, 0, 0, 2539, 2533, 1, 0, 0, 0, 2539, 2534, 1, 0, 0, 0, 2539, 2535, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 90, 45, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 310, 155, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 163, 1, 0, 0, 0, 2547, 2548, 5, 100, 0, 0, 2548, 2549, 3, 816, 408, 0, 2549, 165, 1, 0, 0, 0, 2550, 2551, 5, 105, 0, 0, 2551, 2555, 3, 92, 46, 0, 2552, 2553, 7, 27, 0, 0, 2553, 2555, 5, 277, 0, 0, 2554, 2550, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2555, 167, 1, 0, 0, 0, 2556, 2557, 5, 80, 0, 0, 2557, 2563, 5, 161, 0, 0, 2558, 2564, 5, 191, 0, 0, 2559, 2560, 5, 182, 0, 0, 2560, 2564, 5, 320, 0, 0, 2561, 2562, 5, 292, 0, 0, 2562, 2564, 5, 320, 0, 0, 2563, 2558, 1, 0, 0, 0, 2563, 2559, 1, 0, 0, 0, 2563, 2561, 1, 0, 0, 0, 2564, 169, 1, 0, 0, 0, 2565, 2566, 5, 351, 0, 0, 2566, 2567, 3, 766, 383, 0, 2567, 171, 1, 0, 0, 0, 2568, 2569, 5, 100, 0, 0, 2569, 2570, 5, 226, 0, 0, 2570, 2571, 3, 170, 85, 0, 2571, 173, 1, 0, 0, 0, 2572, 2573, 5, 100, 0, 0, 2573, 2574, 5, 226, 0, 0, 2574, 2575, 3, 816, 408, 0, 2575, 175, 1, 0, 0, 0, 2576, 2577, 5, 46, 0, 0, 2577, 2582, 5, 342, 0, 0, 2578, 2580, 3, 288, 144, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 3, 310, 155, 0, 2582, 2579, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2586, 3, 138, 69, 0, 2585, 2584, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2597, 5, 80, 0, 0, 2588, 2593, 3, 728, 364, 0, 2589, 2590, 5, 6, 0, 0, 2590, 2592, 3, 728, 364, 0, 2591, 2589, 1, 0, 0, 0, 2592, 2595, 1, 0, 0, 0, 2593, 2591, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2598, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2596, 2598, 3, 726, 363, 0, 2597, 2588, 1, 0, 0, 0, 2597, 2596, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 3, 604, 302, 0, 2600, 177, 1, 0, 0, 0, 2601, 2602, 5, 138, 0, 0, 2602, 2604, 5, 342, 0, 0, 2603, 2605, 3, 416, 208, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 3, 310, 155, 0, 2607, 2608, 5, 333, 0, 0, 2608, 2609, 5, 342, 0, 0, 2609, 2610, 3, 810, 405, 0, 2610, 179, 1, 0, 0, 0, 2611, 2613, 5, 46, 0, 0, 2612, 2614, 3, 116, 58, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 5, 92, 0, 0, 2616, 2618, 3, 288, 144, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 3, 182, 91, 0, 2620, 2621, 5, 36, 0, 0, 2621, 2623, 3, 554, 277, 0, 2622, 2624, 3, 184, 92, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 181, 1, 0, 0, 0, 2625, 2627, 3, 768, 384, 0, 2626, 2628, 3, 140, 70, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2630, 1, 0, 0, 0, 2629, 2631, 3, 164, 82, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2633, 1, 0, 0, 0, 2632, 2634, 3, 166, 83, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2637, 3, 168, 84, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 170, 85, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 183, 1, 0, 0, 0, 2641, 2645, 5, 105, 0, 0, 2642, 2646, 5, 174, 0, 0, 2643, 2644, 5, 269, 0, 0, 2644, 2646, 5, 174, 0, 0, 2645, 2642, 1, 0, 0, 0, 2645, 2643, 1, 0, 0, 0, 2646, 185, 1, 0, 0, 0, 2647, 2649, 5, 46, 0, 0, 2648, 2650, 5, 367, 0, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 5, 259, 0, 0, 2652, 2654, 5, 376, 0, 0, 2653, 2655, 3, 288, 144, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2658, 3, 772, 386, 0, 2657, 2659, 3, 140, 70, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 1, 0, 0, 0, 2660, 2662, 3, 164, 82, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2665, 3, 94, 47, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2667, 1, 0, 0, 0, 2666, 2668, 3, 170, 85, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 5, 36, 0, 0, 2670, 2672, 3, 554, 277, 0, 2671, 2673, 3, 184, 92, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 187, 1, 0, 0, 0, 2674, 2675, 5, 305, 0, 0, 2675, 2676, 5, 259, 0, 0, 2676, 2678, 5, 376, 0, 0, 2677, 2679, 5, 109, 0, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 3, 774, 387, 0, 2681, 2683, 3, 184, 92, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 189, 1, 0, 0, 0, 2684, 2686, 5, 46, 0, 0, 2685, 2687, 3, 116, 58, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 5, 328, 0, 0, 2689, 2691, 3, 288, 144, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2698, 3, 776, 388, 0, 2693, 2695, 3, 194, 97, 0, 2694, 2693, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2694, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2699, 1, 0, 0, 0, 2698, 2694, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 191, 1, 0, 0, 0, 2700, 2701, 5, 138, 0, 0, 2701, 2703, 5, 328, 0, 0, 2702, 2704, 3, 416, 208, 0, 2703, 2702, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2707, 3, 776, 388, 0, 2706, 2708, 3, 194, 97, 0, 2707, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 193, 1, 0, 0, 0, 2711, 2712, 5, 36, 0, 0, 2712, 2745, 3, 648, 324, 0, 2713, 2715, 5, 148, 0, 0, 2714, 2716, 3, 196, 98, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2745, 1, 0, 0, 0, 2717, 2719, 5, 225, 0, 0, 2718, 2720, 5, 147, 0, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2745, 3, 196, 98, 0, 2722, 2723, 7, 28, 0, 0, 2723, 2745, 3, 196, 98, 0, 2724, 2725, 5, 269, 0, 0, 2725, 2745, 7, 29, 0, 0, 2726, 2727, 5, 281, 0, 0, 2727, 2728, 5, 147, 0, 0, 2728, 2745, 3, 796, 398, 0, 2729, 2730, 5, 328, 0, 0, 2730, 2731, 5, 266, 0, 0, 2731, 2745, 3, 310, 155, 0, 2732, 2734, 5, 340, 0, 0, 2733, 2735, 5, 105, 0, 0, 2734, 2733, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2745, 3, 196, 98, 0, 2737, 2739, 5, 314, 0, 0, 2738, 2740, 5, 105, 0, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2742, 1, 0, 0, 0, 2741, 2743, 3, 196, 98, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2711, 1, 0, 0, 0, 2744, 2713, 1, 0, 0, 0, 2744, 2717, 1, 0, 0, 0, 2744, 2722, 1, 0, 0, 0, 2744, 2724, 1, 0, 0, 0, 2744, 2726, 1, 0, 0, 0, 2744, 2729, 1, 0, 0, 0, 2744, 2732, 1, 0, 0, 0, 2744, 2737, 1, 0, 0, 0, 2745, 195, 1, 0, 0, 0, 2746, 2748, 7, 30, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2752, 5, 576, 0, 0, 2750, 2752, 3, 810, 405, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2750, 1, 0, 0, 0, 2752, 197, 1, 0, 0, 0, 2753, 2755, 5, 46, 0, 0, 2754, 2756, 3, 360, 180, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2758, 1, 0, 0, 0, 2757, 2759, 5, 359, 0, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2762, 5, 295, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 5, 247, 0, 0, 2764, 2777, 3, 816, 408, 0, 2765, 2766, 5, 215, 0, 0, 2766, 2769, 3, 310, 155, 0, 2767, 2768, 5, 239, 0, 0, 2768, 2770, 3, 310, 155, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2775, 1, 0, 0, 0, 2771, 2772, 5, 373, 0, 0, 2772, 2776, 3, 310, 155, 0, 2773, 2774, 5, 269, 0, 0, 2774, 2776, 5, 373, 0, 0, 2775, 2771, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2778, 1, 0, 0, 0, 2777, 2765, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 199, 1, 0, 0, 0, 2779, 2780, 5, 46, 0, 0, 2780, 2783, 3, 170, 85, 0, 2781, 2782, 5, 282, 0, 0, 2782, 2784, 3, 812, 406, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 5, 255, 0, 0, 2786, 2788, 3, 806, 403, 0, 2787, 2789, 3, 94, 47, 0, 2788, 2787, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 201, 1, 0, 0, 0, 2790, 2791, 5, 46, 0, 0, 2791, 2793, 5, 204, 0, 0, 2792, 2794, 3, 288, 144, 0, 2793, 2792, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 3, 816, 408, 0, 2796, 2798, 5, 105, 0, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2806, 1, 0, 0, 0, 2799, 2800, 5, 323, 0, 0, 2800, 2805, 3, 786, 393, 0, 2801, 2802, 7, 31, 0, 0, 2802, 2805, 3, 58, 29, 0, 2803, 2805, 5, 150, 0, 0, 2804, 2799, 1, 0, 0, 0, 2804, 2801, 1, 0, 0, 0, 2804, 2803, 1, 0, 0, 0, 2805, 2808, 1, 0, 0, 0, 2806, 2804, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 203, 1, 0, 0, 0, 2808, 2806, 1, 0, 0, 0, 2809, 2810, 5, 138, 0, 0, 2810, 2811, 5, 204, 0, 0, 2811, 2812, 3, 816, 408, 0, 2812, 2817, 5, 369, 0, 0, 2813, 2814, 5, 94, 0, 0, 2814, 2816, 3, 58, 29, 0, 2815, 2813, 1, 0, 0, 0, 2816, 2819, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 205, 1, 0, 0, 0, 2819, 2817, 1, 0, 0, 0, 2820, 2821, 5, 138, 0, 0, 2821, 2822, 5, 204, 0, 0, 2822, 2823, 3, 816, 408, 0, 2823, 2856, 7, 6, 0, 0, 2824, 2825, 5, 443, 0, 0, 2825, 2826, 5, 62, 0, 0, 2826, 2827, 3, 646, 323, 0, 2827, 2828, 5, 247, 0, 0, 2828, 2829, 3, 816, 408, 0, 2829, 2857, 1, 0, 0, 0, 2830, 2831, 5, 442, 0, 0, 2831, 2857, 3, 368, 184, 0, 2832, 2833, 5, 296, 0, 0, 2833, 2857, 3, 372, 186, 0, 2834, 2835, 5, 278, 0, 0, 2835, 2836, 7, 32, 0, 0, 2836, 2837, 3, 310, 155, 0, 2837, 2838, 3, 164, 82, 0, 2838, 2857, 1, 0, 0, 0, 2839, 2840, 5, 278, 0, 0, 2840, 2857, 3, 410, 205, 0, 2841, 2842, 5, 211, 0, 0, 2842, 2857, 3, 376, 188, 0, 2843, 2844, 7, 33, 0, 0, 2844, 2857, 3, 646, 323, 0, 2845, 2846, 5, 41, 0, 0, 2846, 2847, 5, 2, 0, 0, 2847, 2848, 3, 646, 323, 0, 2848, 2849, 5, 36, 0, 0, 2849, 2850, 3, 646, 323, 0, 2850, 2851, 5, 3, 0, 0, 2851, 2857, 1, 0, 0, 0, 2852, 2853, 5, 136, 0, 0, 2853, 2857, 3, 388, 194, 0, 2854, 2857, 3, 306, 153, 0, 2855, 2857, 3, 304, 152, 0, 2856, 2824, 1, 0, 0, 0, 2856, 2830, 1, 0, 0, 0, 2856, 2832, 1, 0, 0, 0, 2856, 2834, 1, 0, 0, 0, 2856, 2839, 1, 0, 0, 0, 2856, 2841, 1, 0, 0, 0, 2856, 2843, 1, 0, 0, 0, 2856, 2845, 1, 0, 0, 0, 2856, 2852, 1, 0, 0, 0, 2856, 2854, 1, 0, 0, 0, 2856, 2855, 1, 0, 0, 0, 2857, 207, 1, 0, 0, 0, 2858, 2859, 5, 46, 0, 0, 2859, 2860, 5, 63, 0, 0, 2860, 2861, 5, 174, 0, 0, 2861, 2862, 5, 381, 0, 0, 2862, 2868, 3, 816, 408, 0, 2863, 2865, 3, 210, 105, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2864, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2871, 1, 0, 0, 0, 2870, 2872, 3, 214, 107, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 209, 1, 0, 0, 0, 2873, 2875, 7, 34, 0, 0, 2874, 2876, 3, 310, 155, 0, 2875, 2874, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2880, 1, 0, 0, 0, 2877, 2878, 5, 269, 0, 0, 2878, 2880, 7, 34, 0, 0, 2879, 2873, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 211, 1, 0, 0, 0, 2881, 2882, 5, 138, 0, 0, 2882, 2883, 5, 63, 0, 0, 2883, 2884, 5, 174, 0, 0, 2884, 2885, 5, 381, 0, 0, 2885, 2899, 3, 816, 408, 0, 2886, 2888, 3, 210, 105, 0, 2887, 2886, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2887, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2900, 3, 216, 108, 0, 2894, 2896, 3, 210, 105, 0, 2895, 2894, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2891, 1, 0, 0, 0, 2899, 2895, 1, 0, 0, 0, 2900, 213, 1, 0, 0, 0, 2901, 2902, 5, 280, 0, 0, 2902, 2903, 5, 2, 0, 0, 2903, 2908, 3, 220, 110, 0, 2904, 2905, 5, 6, 0, 0, 2905, 2907, 3, 220, 110, 0, 2906, 2904, 1, 0, 0, 0, 2907, 2910, 1, 0, 0, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2912, 5, 3, 0, 0, 2912, 215, 1, 0, 0, 0, 2913, 2914, 5, 280, 0, 0, 2914, 2915, 5, 2, 0, 0, 2915, 2920, 3, 218, 109, 0, 2916, 2917, 5, 6, 0, 0, 2917, 2919, 3, 218, 109, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 1, 0, 0, 0, 2922, 2920, 1, 0, 0, 0, 2923, 2924, 5, 3, 0, 0, 2924, 217, 1, 0, 0, 0, 2925, 2926, 7, 35, 0, 0, 2926, 2927, 3, 220, 110, 0, 2927, 219, 1, 0, 0, 0, 2928, 2929, 3, 822, 411, 0, 2929, 2930, 3, 806, 403, 0, 2930, 221, 1, 0, 0, 0, 2931, 2932, 5, 46, 0, 0, 2932, 2934, 5, 331, 0, 0, 2933, 2935, 3, 288, 144, 0, 2934, 2933, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2939, 3, 816, 408, 0, 2937, 2938, 5, 360, 0, 0, 2938, 2940, 3, 806, 403, 0, 2939, 2937, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2942, 1, 0, 0, 0, 2941, 2943, 3, 224, 112, 0, 2942, 2941, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2945, 5, 63, 0, 0, 2945, 2946, 5, 174, 0, 0, 2946, 2947, 5, 381, 0, 0, 2947, 2949, 3, 816, 408, 0, 2948, 2950, 3, 214, 107, 0, 2949, 2948, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 223, 1, 0, 0, 0, 2951, 2954, 5, 375, 0, 0, 2952, 2955, 3, 806, 403, 0, 2953, 2955, 5, 78, 0, 0, 2954, 2952, 1, 0, 0, 0, 2954, 2953, 1, 0, 0, 0, 2955, 225, 1, 0, 0, 0, 2956, 2957, 5, 138, 0, 0, 2957, 2958, 5, 331, 0, 0, 2958, 2964, 3, 816, 408, 0, 2959, 2965, 3, 216, 108, 0, 2960, 2962, 3, 224, 112, 0, 2961, 2963, 3, 216, 108, 0, 2962, 2961, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2959, 1, 0, 0, 0, 2964, 2960, 1, 0, 0, 0, 2965, 227, 1, 0, 0, 0, 2966, 2967, 5, 46, 0, 0, 2967, 2968, 5, 63, 0, 0, 2968, 2970, 5, 92, 0, 0, 2969, 2971, 3, 288, 144, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2973, 3, 768, 384, 0, 2973, 2975, 5, 2, 0, 0, 2974, 2976, 3, 120, 60, 0, 2975, 2974, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2979, 5, 3, 0, 0, 2978, 2980, 3, 158, 79, 0, 2979, 2978, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 5, 331, 0, 0, 2982, 2984, 3, 816, 408, 0, 2983, 2985, 3, 214, 107, 0, 2984, 2983, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 3006, 1, 0, 0, 0, 2986, 2987, 5, 46, 0, 0, 2987, 2988, 5, 63, 0, 0, 2988, 2990, 5, 92, 0, 0, 2989, 2991, 3, 288, 144, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 3, 768, 384, 0, 2993, 2994, 5, 285, 0, 0, 2994, 2995, 5, 275, 0, 0, 2995, 2997, 3, 770, 385, 0, 2996, 2998, 3, 118, 59, 0, 2997, 2996, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3000, 3, 98, 49, 0, 3000, 3001, 5, 331, 0, 0, 3001, 3003, 3, 816, 408, 0, 3002, 3004, 3, 214, 107, 0, 3003, 3002, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3006, 1, 0, 0, 0, 3005, 2966, 1, 0, 0, 0, 3005, 2986, 1, 0, 0, 0, 3006, 229, 1, 0, 0, 0, 3007, 3008, 5, 444, 0, 0, 3008, 3009, 5, 63, 0, 0, 3009, 3010, 5, 323, 0, 0, 3010, 3020, 3, 786, 393, 0, 3011, 3012, 5, 74, 0, 0, 3012, 3015, 5, 94, 0, 0, 3013, 3015, 5, 59, 0, 0, 3014, 3011, 1, 0, 0, 0, 3014, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 5, 2, 0, 0, 3017, 3018, 3, 622, 311, 0, 3018, 3019, 5, 3, 0, 0, 3019, 3021, 1, 0, 0, 0, 3020, 3014, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 5, 64, 0, 0, 3023, 3024, 5, 331, 0, 0, 3024, 3025, 3, 816, 408, 0, 3025, 3026, 5, 71, 0, 0, 3026, 3028, 3, 816, 408, 0, 3027, 3029, 3, 214, 107, 0, 3028, 3027, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 231, 1, 0, 0, 0, 3030, 3031, 5, 46, 0, 0, 3031, 3032, 5, 99, 0, 0, 3032, 3034, 5, 257, 0, 0, 3033, 3035, 3, 288, 144, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3039, 5, 62, 0, 0, 3037, 3040, 3, 812, 406, 0, 3038, 3040, 5, 99, 0, 0, 3039, 3037, 1, 0, 0, 0, 3039, 3038, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 5, 331, 0, 0, 3042, 3044, 3, 816, 408, 0, 3043, 3045, 3, 214, 107, 0, 3044, 3043, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 233, 1, 0, 0, 0, 3046, 3047, 5, 138, 0, 0, 3047, 3048, 5, 99, 0, 0, 3048, 3049, 5, 257, 0, 0, 3049, 3052, 5, 62, 0, 0, 3050, 3053, 3, 812, 406, 0, 3051, 3053, 5, 99, 0, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 5, 331, 0, 0, 3055, 3056, 3, 816, 408, 0, 3056, 3057, 3, 216, 108, 0, 3057, 235, 1, 0, 0, 0, 3058, 3059, 5, 46, 0, 0, 3059, 3060, 5, 445, 0, 0, 3060, 3061, 3, 816, 408, 0, 3061, 3062, 5, 80, 0, 0, 3062, 3069, 3, 776, 388, 0, 3063, 3067, 5, 36, 0, 0, 3064, 3068, 5, 541, 0, 0, 3065, 3068, 5, 542, 0, 0, 3066, 3068, 3, 824, 412, 0, 3067, 3064, 1, 0, 0, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3066, 1, 0, 0, 0, 3068, 3070, 1, 0, 0, 0, 3069, 3063, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3073, 1, 0, 0, 0, 3071, 3072, 5, 62, 0, 0, 3072, 3074, 7, 36, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3077, 1, 0, 0, 0, 3075, 3076, 5, 94, 0, 0, 3076, 3078, 3, 814, 407, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3081, 3, 244, 122, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3084, 3, 246, 123, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 237, 1, 0, 0, 0, 3085, 3086, 5, 138, 0, 0, 3086, 3087, 5, 445, 0, 0, 3087, 3088, 3, 816, 408, 0, 3088, 3089, 5, 80, 0, 0, 3089, 3092, 3, 776, 388, 0, 3090, 3091, 5, 94, 0, 0, 3091, 3093, 3, 814, 407, 0, 3092, 3090, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3096, 3, 244, 122, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3098, 1, 0, 0, 0, 3097, 3099, 3, 246, 123, 0, 3098, 3097, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 239, 1, 0, 0, 0, 3100, 3101, 5, 138, 0, 0, 3101, 3102, 5, 296, 0, 0, 3102, 3104, 3, 792, 396, 0, 3103, 3105, 3, 362, 181, 0, 3104, 3103, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3132, 1, 0, 0, 0, 3106, 3110, 3, 242, 121, 0, 3107, 3109, 3, 242, 121, 0, 3108, 3107, 1, 0, 0, 0, 3109, 3112, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3113, 3115, 5, 315, 0, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3133, 1, 0, 0, 0, 3116, 3117, 5, 309, 0, 0, 3117, 3118, 5, 94, 0, 0, 3118, 3133, 3, 794, 397, 0, 3119, 3120, 5, 282, 0, 0, 3120, 3121, 5, 94, 0, 0, 3121, 3133, 3, 812, 406, 0, 3122, 3123, 5, 333, 0, 0, 3123, 3124, 5, 323, 0, 0, 3124, 3133, 3, 32, 16, 0, 3125, 3127, 5, 269, 0, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 3129, 5, 462, 0, 0, 3129, 3130, 5, 80, 0, 0, 3130, 3131, 5, 204, 0, 0, 3131, 3133, 3, 816, 408, 0, 3132, 3106, 1, 0, 0, 0, 3132, 3116, 1, 0, 0, 0, 3132, 3119, 1, 0, 0, 0, 3132, 3122, 1, 0, 0, 0, 3132, 3126, 1, 0, 0, 0, 3133, 241, 1, 0, 0, 0, 3134, 3136, 5, 205, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 5, 327, 0, 0, 3138, 3145, 5, 243, 0, 0, 3139, 3141, 5, 205, 0, 0, 3140, 3139, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 5, 327, 0, 0, 3143, 3145, 5, 181, 0, 0, 3144, 3135, 1, 0, 0, 0, 3144, 3140, 1, 0, 0, 0, 3145, 3164, 1, 0, 0, 0, 3146, 3147, 5, 333, 0, 0, 3147, 3148, 3, 816, 408, 0, 3148, 3151, 7, 37, 0, 0, 3149, 3152, 3, 816, 408, 0, 3150, 3152, 5, 53, 0, 0, 3151, 3149, 1, 0, 0, 0, 3151, 3150, 1, 0, 0, 0, 3152, 3164, 1, 0, 0, 0, 3153, 3154, 5, 333, 0, 0, 3154, 3155, 3, 816, 408, 0, 3155, 3156, 5, 64, 0, 0, 3156, 3157, 5, 434, 0, 0, 3157, 3164, 1, 0, 0, 0, 3158, 3161, 5, 313, 0, 0, 3159, 3162, 3, 816, 408, 0, 3160, 3162, 5, 30, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3162, 3164, 1, 0, 0, 0, 3163, 3144, 1, 0, 0, 0, 3163, 3146, 1, 0, 0, 0, 3163, 3153, 1, 0, 0, 0, 3163, 3158, 1, 0, 0, 0, 3164, 243, 1, 0, 0, 0, 3165, 3166, 5, 100, 0, 0, 3166, 3167, 5, 2, 0, 0, 3167, 3168, 3, 668, 334, 0, 3168, 3169, 5, 3, 0, 0, 3169, 245, 1, 0, 0, 0, 3170, 3171, 5, 105, 0, 0, 3171, 3172, 5, 42, 0, 0, 3172, 3173, 5, 2, 0, 0, 3173, 3174, 3, 668, 334, 0, 3174, 3175, 5, 3, 0, 0, 3175, 247, 1, 0, 0, 0, 3176, 3177, 5, 46, 0, 0, 3177, 3178, 5, 131, 0, 0, 3178, 3179, 5, 446, 0, 0, 3179, 3180, 3, 816, 408, 0, 3180, 3181, 5, 360, 0, 0, 3181, 3182, 7, 38, 0, 0, 3182, 3183, 5, 215, 0, 0, 3183, 3184, 3, 310, 155, 0, 3184, 249, 1, 0, 0, 0, 3185, 3187, 5, 46, 0, 0, 3186, 3188, 3, 360, 180, 0, 3187, 3186, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3190, 5, 357, 0, 0, 3190, 3191, 3, 816, 408, 0, 3191, 3192, 3, 252, 126, 0, 3192, 3193, 3, 254, 127, 0, 3193, 3194, 5, 80, 0, 0, 3194, 3206, 3, 770, 385, 0, 3195, 3202, 5, 447, 0, 0, 3196, 3197, 7, 39, 0, 0, 3197, 3199, 7, 40, 0, 0, 3198, 3200, 5, 36, 0, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 3, 816, 408, 0, 3202, 3196, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3207, 1, 0, 0, 0, 3206, 3195, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3213, 1, 0, 0, 0, 3208, 3210, 5, 62, 0, 0, 3209, 3211, 5, 192, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3214, 7, 41, 0, 0, 3213, 3208, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3217, 3, 258, 129, 0, 3216, 3215, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 5, 202, 0, 0, 3219, 3220, 3, 260, 130, 0, 3220, 3221, 5, 2, 0, 0, 3221, 3222, 3, 262, 131, 0, 3222, 3223, 5, 3, 0, 0, 3223, 3264, 1, 0, 0, 0, 3224, 3226, 5, 46, 0, 0, 3225, 3227, 3, 360, 180, 0, 3226, 3225, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3229, 1, 0, 0, 0, 3228, 3230, 5, 45, 0, 0, 3229, 3228, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 5, 357, 0, 0, 3232, 3233, 3, 816, 408, 0, 3233, 3234, 3, 252, 126, 0, 3234, 3235, 3, 254, 127, 0, 3235, 3236, 5, 80, 0, 0, 3236, 3239, 3, 770, 385, 0, 3237, 3238, 5, 64, 0, 0, 3238, 3240, 3, 776, 388, 0, 3239, 3237, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3244, 1, 0, 0, 0, 3241, 3243, 3, 266, 133, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3246, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3252, 1, 0, 0, 0, 3246, 3244, 1, 0, 0, 0, 3247, 3249, 5, 62, 0, 0, 3248, 3250, 5, 192, 0, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3253, 7, 41, 0, 0, 3252, 3247, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 258, 129, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 5, 202, 0, 0, 3258, 3259, 3, 260, 130, 0, 3259, 3260, 5, 2, 0, 0, 3260, 3261, 3, 262, 131, 0, 3261, 3262, 5, 3, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3185, 1, 0, 0, 0, 3263, 3224, 1, 0, 0, 0, 3264, 251, 1, 0, 0, 0, 3265, 3270, 5, 145, 0, 0, 3266, 3270, 5, 135, 0, 0, 3267, 3268, 5, 242, 0, 0, 3268, 3270, 5, 275, 0, 0, 3269, 3265, 1, 0, 0, 0, 3269, 3266, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 253, 1, 0, 0, 0, 3271, 3276, 3, 256, 128, 0, 3272, 3273, 5, 82, 0, 0, 3273, 3275, 3, 256, 128, 0, 3274, 3272, 1, 0, 0, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3274, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 255, 1, 0, 0, 0, 3278, 3276, 1, 0, 0, 0, 3279, 3288, 5, 241, 0, 0, 3280, 3288, 5, 182, 0, 0, 3281, 3284, 5, 369, 0, 0, 3282, 3283, 5, 275, 0, 0, 3283, 3285, 3, 142, 71, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3288, 5, 358, 0, 0, 3287, 3279, 1, 0, 0, 0, 3287, 3280, 1, 0, 0, 0, 3287, 3281, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3288, 257, 1, 0, 0, 0, 3289, 3290, 5, 102, 0, 0, 3290, 3291, 5, 2, 0, 0, 3291, 3292, 3, 668, 334, 0, 3292, 3293, 5, 3, 0, 0, 3293, 259, 1, 0, 0, 0, 3294, 3295, 5, 211, 0, 0, 3295, 3299, 3, 804, 402, 0, 3296, 3297, 5, 296, 0, 0, 3297, 3299, 3, 792, 396, 0, 3298, 3294, 1, 0, 0, 0, 3298, 3296, 1, 0, 0, 0, 3299, 261, 1, 0, 0, 0, 3300, 3303, 3, 264, 132, 0, 3301, 3303, 1, 0, 0, 0, 3302, 3300, 1, 0, 0, 0, 3302, 3301, 1, 0, 0, 0, 3303, 3308, 1, 0, 0, 0, 3304, 3305, 5, 6, 0, 0, 3305, 3307, 3, 264, 132, 0, 3306, 3304, 1, 0, 0, 0, 3307, 3310, 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 263, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3311, 3316, 5, 574, 0, 0, 3312, 3316, 5, 576, 0, 0, 3313, 3316, 3, 806, 403, 0, 3314, 3316, 3, 822, 411, 0, 3315, 3311, 1, 0, 0, 0, 3315, 3312, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3315, 3314, 1, 0, 0, 0, 3316, 265, 1, 0, 0, 0, 3317, 3319, 5, 77, 0, 0, 3318, 3317, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3328, 5, 54, 0, 0, 3321, 3322, 5, 69, 0, 0, 3322, 3328, 7, 9, 0, 0, 3323, 3324, 5, 77, 0, 0, 3324, 3328, 5, 371, 0, 0, 3325, 3326, 5, 269, 0, 0, 3326, 3328, 5, 228, 0, 0, 3327, 3318, 1, 0, 0, 0, 3327, 3321, 1, 0, 0, 0, 3327, 3323, 1, 0, 0, 0, 3327, 3325, 1, 0, 0, 0, 3328, 267, 1, 0, 0, 0, 3329, 3330, 5, 46, 0, 0, 3330, 3331, 5, 198, 0, 0, 3331, 3332, 5, 357, 0, 0, 3332, 3333, 3, 816, 408, 0, 3333, 3334, 5, 80, 0, 0, 3334, 3344, 3, 822, 411, 0, 3335, 3336, 5, 102, 0, 0, 3336, 3341, 3, 270, 135, 0, 3337, 3338, 5, 33, 0, 0, 3338, 3340, 3, 270, 135, 0, 3339, 3337, 1, 0, 0, 0, 3340, 3343, 1, 0, 0, 0, 3341, 3339, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3345, 1, 0, 0, 0, 3343, 3341, 1, 0, 0, 0, 3344, 3335, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 5, 202, 0, 0, 3347, 3348, 3, 260, 130, 0, 3348, 3349, 5, 2, 0, 0, 3349, 3350, 5, 3, 0, 0, 3350, 269, 1, 0, 0, 0, 3351, 3352, 3, 816, 408, 0, 3352, 3353, 5, 68, 0, 0, 3353, 3354, 5, 2, 0, 0, 3354, 3358, 3, 806, 403, 0, 3355, 3357, 3, 456, 228, 0, 3356, 3355, 1, 0, 0, 0, 3357, 3360, 1, 0, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3361, 1, 0, 0, 0, 3360, 3358, 1, 0, 0, 0, 3361, 3362, 5, 3, 0, 0, 3362, 271, 1, 0, 0, 0, 3363, 3364, 5, 138, 0, 0, 3364, 3365, 5, 198, 0, 0, 3365, 3366, 5, 357, 0, 0, 3366, 3372, 3, 816, 408, 0, 3367, 3369, 5, 193, 0, 0, 3368, 3370, 7, 14, 0, 0, 3369, 3368, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3373, 1, 0, 0, 0, 3371, 3373, 5, 186, 0, 0, 3372, 3367, 1, 0, 0, 0, 3372, 3371, 1, 0, 0, 0, 3373, 273, 1, 0, 0, 0, 3374, 3375, 5, 46, 0, 0, 3375, 3376, 5, 140, 0, 0, 3376, 3377, 3, 310, 155, 0, 3377, 3378, 5, 42, 0, 0, 3378, 3379, 5, 2, 0, 0, 3379, 3380, 3, 668, 334, 0, 3380, 3384, 5, 3, 0, 0, 3381, 3383, 3, 266, 133, 0, 3382, 3381, 1, 0, 0, 0, 3383, 3386, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 275, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3389, 5, 46, 0, 0, 3388, 3390, 3, 360, 180, 0, 3389, 3388, 1, 0, 0, 0, 3389, 3390, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3392, 5, 136, 0, 0, 3392, 3407, 3, 804, 402, 0, 3393, 3394, 3, 386, 193, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3408, 1, 0, 0, 0, 3396, 3397, 5, 2, 0, 0, 3397, 3402, 3, 284, 142, 0, 3398, 3399, 5, 6, 0, 0, 3399, 3401, 3, 284, 142, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3404, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3405, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3405, 3406, 5, 3, 0, 0, 3406, 3408, 1, 0, 0, 0, 3407, 3393, 1, 0, 0, 0, 3407, 3396, 1, 0, 0, 0, 3408, 3466, 1, 0, 0, 0, 3409, 3410, 5, 46, 0, 0, 3410, 3411, 5, 278, 0, 0, 3411, 3412, 3, 408, 204, 0, 3412, 3413, 3, 278, 139, 0, 3413, 3466, 1, 0, 0, 0, 3414, 3415, 5, 46, 0, 0, 3415, 3416, 5, 360, 0, 0, 3416, 3417, 3, 310, 155, 0, 3417, 3435, 5, 36, 0, 0, 3418, 3420, 5, 2, 0, 0, 3419, 3421, 3, 636, 318, 0, 3420, 3419, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3436, 5, 3, 0, 0, 3423, 3424, 5, 196, 0, 0, 3424, 3432, 5, 2, 0, 0, 3425, 3429, 3, 806, 403, 0, 3426, 3428, 3, 456, 228, 0, 3427, 3426, 1, 0, 0, 0, 3428, 3431, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3433, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3432, 3425, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3436, 5, 3, 0, 0, 3435, 3418, 1, 0, 0, 0, 3435, 3423, 1, 0, 0, 0, 3436, 3466, 1, 0, 0, 0, 3437, 3438, 5, 46, 0, 0, 3438, 3439, 5, 360, 0, 0, 3439, 3445, 3, 310, 155, 0, 3440, 3441, 5, 36, 0, 0, 3441, 3443, 5, 299, 0, 0, 3442, 3440, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 3, 278, 139, 0, 3445, 3442, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3466, 1, 0, 0, 0, 3447, 3448, 5, 46, 0, 0, 3448, 3449, 5, 355, 0, 0, 3449, 3450, 5, 325, 0, 0, 3450, 3451, 7, 42, 0, 0, 3451, 3452, 3, 310, 155, 0, 3452, 3453, 3, 278, 139, 0, 3453, 3466, 1, 0, 0, 0, 3454, 3455, 5, 46, 0, 0, 3455, 3457, 5, 108, 0, 0, 3456, 3458, 3, 288, 144, 0, 3457, 3456, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3463, 3, 310, 155, 0, 3460, 3464, 3, 278, 139, 0, 3461, 3462, 5, 64, 0, 0, 3462, 3464, 3, 310, 155, 0, 3463, 3460, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3464, 3466, 1, 0, 0, 0, 3465, 3387, 1, 0, 0, 0, 3465, 3409, 1, 0, 0, 0, 3465, 3414, 1, 0, 0, 0, 3465, 3437, 1, 0, 0, 0, 3465, 3447, 1, 0, 0, 0, 3465, 3454, 1, 0, 0, 0, 3466, 277, 1, 0, 0, 0, 3467, 3468, 5, 2, 0, 0, 3468, 3473, 3, 280, 140, 0, 3469, 3470, 5, 6, 0, 0, 3470, 3472, 3, 280, 140, 0, 3471, 3469, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3476, 3477, 5, 3, 0, 0, 3477, 279, 1, 0, 0, 0, 3478, 3481, 3, 822, 411, 0, 3479, 3480, 5, 10, 0, 0, 3480, 3482, 3, 282, 141, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 281, 1, 0, 0, 0, 3483, 3490, 3, 382, 191, 0, 3484, 3490, 3, 832, 416, 0, 3485, 3490, 3, 722, 361, 0, 3486, 3490, 3, 196, 98, 0, 3487, 3490, 3, 806, 403, 0, 3488, 3490, 5, 407, 0, 0, 3489, 3483, 1, 0, 0, 0, 3489, 3484, 1, 0, 0, 0, 3489, 3485, 1, 0, 0, 0, 3489, 3486, 1, 0, 0, 0, 3489, 3487, 1, 0, 0, 0, 3489, 3488, 1, 0, 0, 0, 3490, 283, 1, 0, 0, 0, 3491, 3492, 3, 824, 412, 0, 3492, 3493, 5, 10, 0, 0, 3493, 3494, 3, 282, 141, 0, 3494, 285, 1, 0, 0, 0, 3495, 3496, 5, 138, 0, 0, 3496, 3497, 5, 360, 0, 0, 3497, 3498, 3, 310, 155, 0, 3498, 3499, 5, 133, 0, 0, 3499, 3501, 5, 450, 0, 0, 3500, 3502, 3, 288, 144, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3506, 3, 806, 403, 0, 3504, 3505, 7, 43, 0, 0, 3505, 3507, 3, 806, 403, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3518, 1, 0, 0, 0, 3508, 3509, 5, 138, 0, 0, 3509, 3510, 5, 360, 0, 0, 3510, 3511, 3, 310, 155, 0, 3511, 3512, 5, 309, 0, 0, 3512, 3513, 5, 450, 0, 0, 3513, 3514, 3, 806, 403, 0, 3514, 3515, 5, 94, 0, 0, 3515, 3516, 3, 806, 403, 0, 3516, 3518, 1, 0, 0, 0, 3517, 3495, 1, 0, 0, 0, 3517, 3508, 1, 0, 0, 0, 3518, 287, 1, 0, 0, 0, 3519, 3520, 5, 220, 0, 0, 3520, 3521, 5, 77, 0, 0, 3521, 3522, 5, 396, 0, 0, 3522, 289, 1, 0, 0, 0, 3523, 3524, 5, 46, 0, 0, 3524, 3525, 5, 278, 0, 0, 3525, 3526, 5, 156, 0, 0, 3526, 3528, 3, 310, 155, 0, 3527, 3529, 5, 53, 0, 0, 3528, 3527, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 5, 62, 0, 0, 3531, 3532, 5, 360, 0, 0, 3532, 3533, 3, 646, 323, 0, 3533, 3536, 3, 164, 82, 0, 3534, 3535, 5, 206, 0, 0, 3535, 3537, 3, 310, 155, 0, 3536, 3534, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3539, 5, 36, 0, 0, 3539, 3544, 3, 292, 146, 0, 3540, 3541, 5, 6, 0, 0, 3541, 3543, 3, 292, 146, 0, 3542, 3540, 1, 0, 0, 0, 3543, 3546, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 291, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 3548, 5, 278, 0, 0, 3548, 3549, 5, 574, 0, 0, 3549, 3551, 3, 408, 204, 0, 3550, 3552, 3, 406, 203, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3560, 1, 0, 0, 0, 3553, 3558, 5, 62, 0, 0, 3554, 3559, 5, 325, 0, 0, 3555, 3556, 5, 83, 0, 0, 3556, 3557, 5, 147, 0, 0, 3557, 3559, 3, 310, 155, 0, 3558, 3554, 1, 0, 0, 0, 3558, 3555, 1, 0, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3553, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3564, 5, 302, 0, 0, 3563, 3562, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3574, 1, 0, 0, 0, 3565, 3566, 5, 211, 0, 0, 3566, 3568, 5, 574, 0, 0, 3567, 3569, 3, 522, 261, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3574, 3, 376, 188, 0, 3571, 3572, 5, 345, 0, 0, 3572, 3574, 3, 646, 323, 0, 3573, 3547, 1, 0, 0, 0, 3573, 3565, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3574, 293, 1, 0, 0, 0, 3575, 3576, 5, 46, 0, 0, 3576, 3577, 5, 278, 0, 0, 3577, 3578, 5, 206, 0, 0, 3578, 3579, 3, 310, 155, 0, 3579, 3580, 3, 164, 82, 0, 3580, 295, 1, 0, 0, 0, 3581, 3582, 5, 138, 0, 0, 3582, 3583, 5, 278, 0, 0, 3583, 3584, 5, 206, 0, 0, 3584, 3585, 3, 310, 155, 0, 3585, 3604, 3, 164, 82, 0, 3586, 3587, 5, 133, 0, 0, 3587, 3592, 3, 292, 146, 0, 3588, 3589, 5, 6, 0, 0, 3589, 3591, 3, 292, 146, 0, 3590, 3588, 1, 0, 0, 0, 3591, 3594, 1, 0, 0, 0, 3592, 3590, 1, 0, 0, 0, 3592, 3593, 1, 0, 0, 0, 3593, 3605, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3595, 3596, 5, 191, 0, 0, 3596, 3601, 3, 298, 149, 0, 3597, 3598, 5, 6, 0, 0, 3598, 3600, 3, 298, 149, 0, 3599, 3597, 1, 0, 0, 0, 3600, 3603, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3605, 1, 0, 0, 0, 3603, 3601, 1, 0, 0, 0, 3604, 3586, 1, 0, 0, 0, 3604, 3595, 1, 0, 0, 0, 3605, 297, 1, 0, 0, 0, 3606, 3607, 7, 44, 0, 0, 3607, 3608, 5, 574, 0, 0, 3608, 3609, 3, 522, 261, 0, 3609, 299, 1, 0, 0, 0, 3610, 3611, 5, 301, 0, 0, 3611, 3612, 5, 281, 0, 0, 3612, 3613, 5, 147, 0, 0, 3613, 3614, 3, 814, 407, 0, 3614, 3615, 5, 94, 0, 0, 3615, 3616, 3, 812, 406, 0, 3616, 301, 1, 0, 0, 0, 3617, 3640, 5, 191, 0, 0, 3618, 3641, 5, 328, 0, 0, 3619, 3641, 5, 226, 0, 0, 3620, 3641, 5, 108, 0, 0, 3621, 3641, 5, 168, 0, 0, 3622, 3641, 5, 342, 0, 0, 3623, 3641, 5, 452, 0, 0, 3624, 3641, 5, 331, 0, 0, 3625, 3626, 5, 131, 0, 0, 3626, 3641, 5, 446, 0, 0, 3627, 3628, 5, 198, 0, 0, 3628, 3641, 5, 357, 0, 0, 3629, 3641, 5, 204, 0, 0, 3630, 3632, 5, 295, 0, 0, 3631, 3630, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3641, 5, 247, 0, 0, 3634, 3635, 5, 63, 0, 0, 3635, 3636, 5, 174, 0, 0, 3636, 3641, 5, 381, 0, 0, 3637, 3638, 5, 355, 0, 0, 3638, 3639, 5, 325, 0, 0, 3639, 3641, 7, 42, 0, 0, 3640, 3618, 1, 0, 0, 0, 3640, 3619, 1, 0, 0, 0, 3640, 3620, 1, 0, 0, 0, 3640, 3621, 1, 0, 0, 0, 3640, 3622, 1, 0, 0, 0, 3640, 3623, 1, 0, 0, 0, 3640, 3624, 1, 0, 0, 0, 3640, 3625, 1, 0, 0, 0, 3640, 3627, 1, 0, 0, 0, 3640, 3629, 1, 0, 0, 0, 3640, 3631, 1, 0, 0, 0, 3640, 3634, 1, 0, 0, 0, 3640, 3637, 1, 0, 0, 0, 3641, 3643, 1, 0, 0, 0, 3642, 3644, 3, 416, 208, 0, 3643, 3642, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3647, 3, 780, 390, 0, 3646, 3648, 3, 88, 44, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3825, 1, 0, 0, 0, 3649, 3651, 5, 191, 0, 0, 3650, 3652, 5, 259, 0, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3655, 5, 376, 0, 0, 3654, 3656, 3, 416, 208, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3662, 3, 774, 387, 0, 3658, 3659, 5, 6, 0, 0, 3659, 3661, 3, 774, 387, 0, 3660, 3658, 1, 0, 0, 0, 3661, 3664, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3665, 3667, 3, 88, 44, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3825, 1, 0, 0, 0, 3668, 3670, 5, 191, 0, 0, 3669, 3671, 5, 63, 0, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3674, 5, 92, 0, 0, 3673, 3675, 3, 416, 208, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3678, 3, 758, 379, 0, 3677, 3679, 3, 88, 44, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3825, 1, 0, 0, 0, 3680, 3681, 5, 191, 0, 0, 3681, 3683, 5, 323, 0, 0, 3682, 3684, 3, 416, 208, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3687, 3, 760, 380, 0, 3686, 3688, 3, 88, 44, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3825, 1, 0, 0, 0, 3689, 3690, 5, 191, 0, 0, 3690, 3692, 7, 45, 0, 0, 3691, 3693, 3, 416, 208, 0, 3692, 3691, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 3, 816, 408, 0, 3695, 3696, 5, 80, 0, 0, 3696, 3698, 3, 310, 155, 0, 3697, 3699, 3, 88, 44, 0, 3698, 3697, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 3825, 1, 0, 0, 0, 3700, 3701, 5, 191, 0, 0, 3701, 3703, 7, 33, 0, 0, 3702, 3704, 3, 416, 208, 0, 3703, 3702, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3710, 3, 646, 323, 0, 3706, 3707, 5, 6, 0, 0, 3707, 3709, 3, 646, 323, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3714, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3715, 3, 88, 44, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3825, 1, 0, 0, 0, 3716, 3717, 5, 191, 0, 0, 3717, 3718, 5, 226, 0, 0, 3718, 3720, 5, 109, 0, 0, 3719, 3721, 3, 416, 208, 0, 3720, 3719, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3724, 3, 308, 154, 0, 3723, 3725, 3, 88, 44, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3825, 1, 0, 0, 0, 3726, 3727, 5, 191, 0, 0, 3727, 3729, 5, 41, 0, 0, 3728, 3730, 3, 416, 208, 0, 3729, 3728, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 5, 2, 0, 0, 3732, 3733, 3, 646, 323, 0, 3733, 3734, 5, 36, 0, 0, 3734, 3735, 3, 646, 323, 0, 3735, 3737, 5, 3, 0, 0, 3736, 3738, 3, 88, 44, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3825, 1, 0, 0, 0, 3739, 3740, 5, 191, 0, 0, 3740, 3741, 5, 278, 0, 0, 3741, 3743, 7, 32, 0, 0, 3742, 3744, 3, 416, 208, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3746, 3, 310, 155, 0, 3746, 3748, 3, 164, 82, 0, 3747, 3749, 3, 88, 44, 0, 3748, 3747, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3825, 1, 0, 0, 0, 3750, 3751, 5, 191, 0, 0, 3751, 3752, 5, 281, 0, 0, 3752, 3753, 5, 147, 0, 0, 3753, 3755, 3, 814, 407, 0, 3754, 3756, 3, 88, 44, 0, 3755, 3754, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3825, 1, 0, 0, 0, 3757, 3758, 5, 191, 0, 0, 3758, 3760, 5, 451, 0, 0, 3759, 3761, 3, 416, 208, 0, 3760, 3759, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 3, 816, 408, 0, 3763, 3765, 3, 88, 44, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3825, 1, 0, 0, 0, 3766, 3767, 5, 191, 0, 0, 3767, 3769, 5, 351, 0, 0, 3768, 3770, 3, 416, 208, 0, 3769, 3768, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3825, 3, 766, 383, 0, 3772, 3773, 5, 191, 0, 0, 3773, 3775, 5, 443, 0, 0, 3774, 3776, 3, 416, 208, 0, 3775, 3774, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3778, 5, 62, 0, 0, 3778, 3779, 3, 646, 323, 0, 3779, 3780, 5, 247, 0, 0, 3780, 3782, 3, 816, 408, 0, 3781, 3783, 3, 88, 44, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3825, 1, 0, 0, 0, 3784, 3785, 5, 191, 0, 0, 3785, 3787, 7, 46, 0, 0, 3786, 3788, 3, 416, 208, 0, 3787, 3786, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3825, 3, 814, 407, 0, 3790, 3791, 5, 191, 0, 0, 3791, 3792, 5, 99, 0, 0, 3792, 3794, 5, 257, 0, 0, 3793, 3795, 3, 416, 208, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3799, 5, 62, 0, 0, 3797, 3800, 3, 812, 406, 0, 3798, 3800, 5, 99, 0, 0, 3799, 3797, 1, 0, 0, 0, 3799, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 5, 331, 0, 0, 3802, 3825, 3, 816, 408, 0, 3803, 3804, 5, 191, 0, 0, 3804, 3806, 5, 175, 0, 0, 3805, 3807, 3, 416, 208, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3822, 3, 784, 392, 0, 3809, 3811, 5, 105, 0, 0, 3810, 3809, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 5, 2, 0, 0, 3813, 3818, 5, 209, 0, 0, 3814, 3815, 5, 6, 0, 0, 3815, 3817, 5, 209, 0, 0, 3816, 3814, 1, 0, 0, 0, 3817, 3820, 1, 0, 0, 0, 3818, 3816, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3821, 1, 0, 0, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3823, 5, 3, 0, 0, 3822, 3810, 1, 0, 0, 0, 3822, 3823, 1, 0, 0, 0, 3823, 3825, 1, 0, 0, 0, 3824, 3617, 1, 0, 0, 0, 3824, 3649, 1, 0, 0, 0, 3824, 3668, 1, 0, 0, 0, 3824, 3680, 1, 0, 0, 0, 3824, 3689, 1, 0, 0, 0, 3824, 3700, 1, 0, 0, 0, 3824, 3716, 1, 0, 0, 0, 3824, 3726, 1, 0, 0, 0, 3824, 3739, 1, 0, 0, 0, 3824, 3750, 1, 0, 0, 0, 3824, 3757, 1, 0, 0, 0, 3824, 3766, 1, 0, 0, 0, 3824, 3772, 1, 0, 0, 0, 3824, 3784, 1, 0, 0, 0, 3824, 3790, 1, 0, 0, 0, 3824, 3803, 1, 0, 0, 0, 3825, 303, 1, 0, 0, 0, 3826, 3828, 5, 63, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 5, 92, 0, 0, 3830, 3843, 3, 770, 385, 0, 3831, 3833, 5, 259, 0, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3834, 1, 0, 0, 0, 3834, 3835, 5, 376, 0, 0, 3835, 3843, 3, 774, 387, 0, 3836, 3837, 7, 47, 0, 0, 3837, 3843, 3, 310, 155, 0, 3838, 3839, 5, 355, 0, 0, 3839, 3840, 5, 325, 0, 0, 3840, 3841, 7, 42, 0, 0, 3841, 3843, 3, 310, 155, 0, 3842, 3827, 1, 0, 0, 0, 3842, 3832, 1, 0, 0, 0, 3842, 3836, 1, 0, 0, 0, 3842, 3838, 1, 0, 0, 0, 3843, 305, 1, 0, 0, 0, 3844, 3845, 5, 198, 0, 0, 3845, 3861, 5, 357, 0, 0, 3846, 3847, 5, 131, 0, 0, 3847, 3861, 5, 446, 0, 0, 3848, 3861, 5, 204, 0, 0, 3849, 3861, 5, 452, 0, 0, 3850, 3861, 5, 331, 0, 0, 3851, 3861, 5, 318, 0, 0, 3852, 3861, 5, 451, 0, 0, 3853, 3854, 5, 63, 0, 0, 3854, 3855, 5, 174, 0, 0, 3855, 3861, 5, 381, 0, 0, 3856, 3858, 5, 295, 0, 0, 3857, 3856, 1, 0, 0, 0, 3857, 3858, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3861, 5, 247, 0, 0, 3860, 3844, 1, 0, 0, 0, 3860, 3846, 1, 0, 0, 0, 3860, 3848, 1, 0, 0, 0, 3860, 3849, 1, 0, 0, 0, 3860, 3850, 1, 0, 0, 0, 3860, 3851, 1, 0, 0, 0, 3860, 3852, 1, 0, 0, 0, 3860, 3853, 1, 0, 0, 0, 3860, 3857, 1, 0, 0, 0, 3861, 3862, 1, 0, 0, 0, 3862, 3869, 3, 816, 408, 0, 3863, 3864, 5, 323, 0, 0, 3864, 3869, 3, 786, 393, 0, 3865, 3866, 5, 175, 0, 0, 3866, 3869, 3, 784, 392, 0, 3867, 3869, 3, 170, 85, 0, 3868, 3860, 1, 0, 0, 0, 3868, 3863, 1, 0, 0, 0, 3868, 3865, 1, 0, 0, 0, 3868, 3867, 1, 0, 0, 0, 3869, 307, 1, 0, 0, 0, 3870, 3875, 3, 310, 155, 0, 3871, 3872, 5, 6, 0, 0, 3872, 3874, 3, 310, 155, 0, 3873, 3871, 1, 0, 0, 0, 3874, 3877, 1, 0, 0, 0, 3875, 3873, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 309, 1, 0, 0, 0, 3877, 3875, 1, 0, 0, 0, 3878, 3880, 3, 816, 408, 0, 3879, 3881, 3, 312, 156, 0, 3880, 3879, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 311, 1, 0, 0, 0, 3882, 3883, 5, 11, 0, 0, 3883, 3885, 3, 822, 411, 0, 3884, 3882, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3886, 3887, 1, 0, 0, 0, 3887, 313, 1, 0, 0, 0, 3888, 3890, 5, 358, 0, 0, 3889, 3891, 5, 92, 0, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3897, 3, 316, 158, 0, 3893, 3894, 5, 6, 0, 0, 3894, 3896, 3, 316, 158, 0, 3895, 3893, 1, 0, 0, 0, 3896, 3899, 1, 0, 0, 0, 3897, 3895, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3902, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3900, 3901, 7, 48, 0, 0, 3901, 3903, 5, 219, 0, 0, 3902, 3900, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3905, 1, 0, 0, 0, 3904, 3906, 3, 88, 44, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 315, 1, 0, 0, 0, 3907, 3909, 5, 81, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3912, 3, 770, 385, 0, 3911, 3913, 5, 9, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 317, 1, 0, 0, 0, 3914, 3915, 5, 159, 0, 0, 3915, 3974, 5, 80, 0, 0, 3916, 3975, 3, 304, 152, 0, 3917, 3975, 3, 306, 153, 0, 3918, 3919, 5, 44, 0, 0, 3919, 3921, 3, 816, 408, 0, 3920, 3922, 3, 312, 156, 0, 3921, 3920, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3924, 5, 11, 0, 0, 3924, 3925, 3, 796, 398, 0, 3925, 3975, 1, 0, 0, 0, 3926, 3927, 7, 33, 0, 0, 3927, 3975, 3, 646, 323, 0, 3928, 3929, 5, 136, 0, 0, 3929, 3975, 3, 388, 194, 0, 3930, 3931, 5, 211, 0, 0, 3931, 3975, 3, 376, 188, 0, 3932, 3933, 5, 278, 0, 0, 3933, 3975, 3, 410, 205, 0, 3934, 3935, 5, 45, 0, 0, 3935, 3936, 3, 816, 408, 0, 3936, 3942, 5, 80, 0, 0, 3937, 3943, 3, 770, 385, 0, 3938, 3940, 5, 189, 0, 0, 3939, 3938, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 3943, 3, 310, 155, 0, 3942, 3937, 1, 0, 0, 0, 3942, 3939, 1, 0, 0, 0, 3943, 3975, 1, 0, 0, 0, 3944, 3945, 7, 45, 0, 0, 3945, 3946, 3, 816, 408, 0, 3946, 3947, 5, 80, 0, 0, 3947, 3948, 3, 310, 155, 0, 3948, 3975, 1, 0, 0, 0, 3949, 3950, 5, 296, 0, 0, 3950, 3975, 3, 372, 186, 0, 3951, 3952, 5, 442, 0, 0, 3952, 3975, 3, 368, 184, 0, 3953, 3954, 5, 443, 0, 0, 3954, 3955, 5, 62, 0, 0, 3955, 3956, 3, 646, 323, 0, 3956, 3957, 5, 247, 0, 0, 3957, 3958, 3, 816, 408, 0, 3958, 3975, 1, 0, 0, 0, 3959, 3960, 5, 278, 0, 0, 3960, 3961, 7, 32, 0, 0, 3961, 3962, 3, 310, 155, 0, 3962, 3963, 3, 164, 82, 0, 3963, 3975, 1, 0, 0, 0, 3964, 3965, 5, 248, 0, 0, 3965, 3966, 5, 274, 0, 0, 3966, 3975, 3, 196, 98, 0, 3967, 3968, 5, 41, 0, 0, 3968, 3969, 5, 2, 0, 0, 3969, 3970, 3, 646, 323, 0, 3970, 3971, 5, 36, 0, 0, 3971, 3972, 3, 646, 323, 0, 3972, 3973, 5, 3, 0, 0, 3973, 3975, 1, 0, 0, 0, 3974, 3916, 1, 0, 0, 0, 3974, 3917, 1, 0, 0, 0, 3974, 3918, 1, 0, 0, 0, 3974, 3926, 1, 0, 0, 0, 3974, 3928, 1, 0, 0, 0, 3974, 3930, 1, 0, 0, 0, 3974, 3932, 1, 0, 0, 0, 3974, 3934, 1, 0, 0, 0, 3974, 3944, 1, 0, 0, 0, 3974, 3949, 1, 0, 0, 0, 3974, 3951, 1, 0, 0, 0, 3974, 3953, 1, 0, 0, 0, 3974, 3959, 1, 0, 0, 0, 3974, 3964, 1, 0, 0, 0, 3974, 3967, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3979, 5, 116, 0, 0, 3977, 3980, 3, 806, 403, 0, 3978, 3980, 5, 78, 0, 0, 3979, 3977, 1, 0, 0, 0, 3979, 3978, 1, 0, 0, 0, 3980, 319, 1, 0, 0, 0, 3981, 3982, 5, 327, 0, 0, 3982, 3985, 5, 246, 0, 0, 3983, 3984, 5, 62, 0, 0, 3984, 3986, 3, 58, 29, 0, 3985, 3983, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 4005, 5, 80, 0, 0, 3988, 3989, 7, 33, 0, 0, 3989, 4006, 3, 646, 323, 0, 3990, 3991, 5, 136, 0, 0, 3991, 4006, 3, 388, 194, 0, 3992, 3993, 5, 44, 0, 0, 3993, 4006, 3, 796, 398, 0, 3994, 3995, 5, 211, 0, 0, 3995, 4006, 3, 376, 188, 0, 3996, 3997, 5, 248, 0, 0, 3997, 3998, 5, 274, 0, 0, 3998, 4006, 3, 196, 98, 0, 3999, 4000, 5, 296, 0, 0, 4000, 4006, 3, 372, 186, 0, 4001, 4002, 5, 442, 0, 0, 4002, 4006, 3, 368, 184, 0, 4003, 4006, 3, 304, 152, 0, 4004, 4006, 3, 306, 153, 0, 4005, 3988, 1, 0, 0, 0, 4005, 3990, 1, 0, 0, 0, 4005, 3992, 1, 0, 0, 0, 4005, 3994, 1, 0, 0, 0, 4005, 3996, 1, 0, 0, 0, 4005, 3999, 1, 0, 0, 0, 4005, 4001, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4004, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4010, 5, 116, 0, 0, 4008, 4011, 3, 806, 403, 0, 4009, 4011, 5, 78, 0, 0, 4010, 4008, 1, 0, 0, 0, 4010, 4009, 1, 0, 0, 0, 4011, 321, 1, 0, 0, 0, 4012, 4013, 7, 49, 0, 0, 4013, 4014, 3, 324, 162, 0, 4014, 323, 1, 0, 0, 0, 4015, 4017, 7, 50, 0, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4019, 1, 0, 0, 0, 4018, 4020, 3, 326, 163, 0, 4019, 4018, 1, 0, 0, 0, 4019, 4020, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4059, 3, 816, 408, 0, 4022, 4024, 7, 51, 0, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 3, 810, 405, 0, 4026, 4028, 3, 326, 163, 0, 4027, 4026, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4030, 3, 816, 408, 0, 4030, 4059, 1, 0, 0, 0, 4031, 4033, 5, 210, 0, 0, 4032, 4034, 3, 810, 405, 0, 4033, 4032, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4036, 1, 0, 0, 0, 4035, 4037, 3, 326, 163, 0, 4036, 4035, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4059, 3, 816, 408, 0, 4039, 4041, 5, 210, 0, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 5, 30, 0, 0, 4043, 4045, 3, 326, 163, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4059, 3, 816, 408, 0, 4047, 4052, 5, 144, 0, 0, 4048, 4050, 5, 30, 0, 0, 4049, 4048, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4053, 1, 0, 0, 0, 4051, 4053, 3, 810, 405, 0, 4052, 4049, 1, 0, 0, 0, 4052, 4051, 1, 0, 0, 0, 4053, 4055, 1, 0, 0, 0, 4054, 4056, 3, 326, 163, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 3, 816, 408, 0, 4058, 4016, 1, 0, 0, 0, 4058, 4023, 1, 0, 0, 0, 4058, 4031, 1, 0, 0, 0, 4058, 4040, 1, 0, 0, 0, 4058, 4047, 1, 0, 0, 0, 4059, 325, 1, 0, 0, 0, 4060, 4061, 7, 52, 0, 0, 4061, 327, 1, 0, 0, 0, 4062, 4063, 5, 65, 0, 0, 4063, 4064, 3, 332, 166, 0, 4064, 4065, 5, 80, 0, 0, 4065, 4066, 3, 338, 169, 0, 4066, 4067, 5, 94, 0, 0, 4067, 4071, 3, 340, 170, 0, 4068, 4069, 5, 105, 0, 0, 4069, 4070, 5, 65, 0, 0, 4070, 4072, 5, 279, 0, 0, 4071, 4068, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 329, 1, 0, 0, 0, 4073, 4077, 5, 317, 0, 0, 4074, 4075, 5, 65, 0, 0, 4075, 4076, 5, 279, 0, 0, 4076, 4078, 5, 62, 0, 0, 4077, 4074, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4080, 3, 332, 166, 0, 4080, 4081, 5, 80, 0, 0, 4081, 4082, 3, 338, 169, 0, 4082, 4083, 5, 64, 0, 0, 4083, 4085, 3, 340, 170, 0, 4084, 4086, 3, 88, 44, 0, 4085, 4084, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 331, 1, 0, 0, 0, 4087, 4092, 3, 336, 168, 0, 4088, 4089, 5, 6, 0, 0, 4089, 4091, 3, 336, 168, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4094, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4111, 1, 0, 0, 0, 4094, 4092, 1, 0, 0, 0, 4095, 4097, 5, 30, 0, 0, 4096, 4098, 5, 294, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4100, 1, 0, 0, 0, 4099, 4101, 3, 138, 69, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4111, 1, 0, 0, 0, 4102, 4107, 3, 334, 167, 0, 4103, 4104, 5, 6, 0, 0, 4104, 4106, 3, 334, 167, 0, 4105, 4103, 1, 0, 0, 0, 4106, 4109, 1, 0, 0, 0, 4107, 4105, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 4111, 1, 0, 0, 0, 4109, 4107, 1, 0, 0, 0, 4110, 4087, 1, 0, 0, 0, 4110, 4095, 1, 0, 0, 0, 4110, 4102, 1, 0, 0, 0, 4111, 333, 1, 0, 0, 0, 4112, 4113, 7, 53, 0, 0, 4113, 335, 1, 0, 0, 0, 4114, 4119, 5, 88, 0, 0, 4115, 4119, 5, 86, 0, 0, 4116, 4119, 5, 46, 0, 0, 4117, 4119, 3, 816, 408, 0, 4118, 4114, 1, 0, 0, 0, 4118, 4115, 1, 0, 0, 0, 4118, 4116, 1, 0, 0, 0, 4118, 4117, 1, 0, 0, 0, 4119, 4121, 1, 0, 0, 0, 4120, 4122, 3, 138, 69, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 337, 1, 0, 0, 0, 4123, 4124, 5, 92, 0, 0, 4124, 4169, 3, 758, 379, 0, 4125, 4127, 5, 328, 0, 0, 4126, 4125, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4169, 3, 756, 378, 0, 4129, 4133, 5, 63, 0, 0, 4130, 4131, 5, 174, 0, 0, 4131, 4134, 5, 381, 0, 0, 4132, 4134, 5, 331, 0, 0, 4133, 4130, 1, 0, 0, 0, 4133, 4132, 1, 0, 0, 0, 4134, 4137, 1, 0, 0, 0, 4135, 4137, 5, 247, 0, 0, 4136, 4129, 1, 0, 0, 0, 4136, 4135, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4169, 3, 780, 390, 0, 4139, 4140, 5, 211, 0, 0, 4140, 4169, 3, 374, 187, 0, 4141, 4142, 5, 296, 0, 0, 4142, 4169, 3, 370, 185, 0, 4143, 4144, 5, 442, 0, 0, 4144, 4169, 3, 366, 183, 0, 4145, 4146, 5, 175, 0, 0, 4146, 4169, 3, 762, 381, 0, 4147, 4148, 7, 33, 0, 0, 4148, 4169, 3, 308, 154, 0, 4149, 4150, 5, 248, 0, 0, 4150, 4151, 5, 274, 0, 0, 4151, 4156, 3, 196, 98, 0, 4152, 4153, 5, 6, 0, 0, 4153, 4155, 3, 196, 98, 0, 4154, 4152, 1, 0, 0, 0, 4155, 4158, 1, 0, 0, 0, 4156, 4154, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4169, 1, 0, 0, 0, 4158, 4156, 1, 0, 0, 0, 4159, 4160, 5, 323, 0, 0, 4160, 4169, 3, 760, 380, 0, 4161, 4162, 5, 351, 0, 0, 4162, 4169, 3, 778, 389, 0, 4163, 4164, 5, 30, 0, 0, 4164, 4165, 7, 54, 0, 0, 4165, 4166, 5, 68, 0, 0, 4166, 4167, 5, 323, 0, 0, 4167, 4169, 3, 760, 380, 0, 4168, 4123, 1, 0, 0, 0, 4168, 4126, 1, 0, 0, 0, 4168, 4136, 1, 0, 0, 0, 4168, 4139, 1, 0, 0, 0, 4168, 4141, 1, 0, 0, 0, 4168, 4143, 1, 0, 0, 0, 4168, 4145, 1, 0, 0, 0, 4168, 4147, 1, 0, 0, 0, 4168, 4149, 1, 0, 0, 0, 4168, 4159, 1, 0, 0, 0, 4168, 4161, 1, 0, 0, 0, 4168, 4163, 1, 0, 0, 0, 4169, 339, 1, 0, 0, 0, 4170, 4172, 5, 66, 0, 0, 4171, 4170, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4174, 3, 812, 406, 0, 4174, 4182, 1, 0, 0, 0, 4175, 4177, 5, 6, 0, 0, 4176, 4178, 5, 66, 0, 0, 4177, 4176, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 4181, 3, 812, 406, 0, 4180, 4175, 1, 0, 0, 0, 4181, 4184, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 341, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4185, 4186, 5, 65, 0, 0, 4186, 4191, 3, 336, 168, 0, 4187, 4188, 5, 6, 0, 0, 4188, 4190, 3, 336, 168, 0, 4189, 4187, 1, 0, 0, 0, 4190, 4193, 1, 0, 0, 0, 4191, 4189, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 4194, 1, 0, 0, 0, 4193, 4191, 1, 0, 0, 0, 4194, 4195, 5, 94, 0, 0, 4195, 4199, 3, 814, 407, 0, 4196, 4197, 5, 105, 0, 0, 4197, 4198, 5, 134, 0, 0, 4198, 4200, 5, 279, 0, 0, 4199, 4196, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4204, 1, 0, 0, 0, 4201, 4202, 5, 214, 0, 0, 4202, 4203, 5, 147, 0, 0, 4203, 4205, 3, 812, 406, 0, 4204, 4201, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 343, 1, 0, 0, 0, 4206, 4210, 5, 317, 0, 0, 4207, 4208, 5, 134, 0, 0, 4208, 4209, 5, 279, 0, 0, 4209, 4211, 5, 62, 0, 0, 4210, 4207, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4217, 3, 336, 168, 0, 4213, 4214, 5, 6, 0, 0, 4214, 4216, 3, 336, 168, 0, 4215, 4213, 1, 0, 0, 0, 4216, 4219, 1, 0, 0, 0, 4217, 4215, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4220, 1, 0, 0, 0, 4219, 4217, 1, 0, 0, 0, 4220, 4221, 5, 64, 0, 0, 4221, 4225, 3, 814, 407, 0, 4222, 4223, 5, 214, 0, 0, 4223, 4224, 5, 147, 0, 0, 4224, 4226, 3, 812, 406, 0, 4225, 4222, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4229, 3, 88, 44, 0, 4228, 4227, 1, 0, 0, 0, 4228, 4229, 1, 0, 0, 0, 4229, 345, 1, 0, 0, 0, 4230, 4231, 5, 138, 0, 0, 4231, 4232, 5, 53, 0, 0, 4232, 4241, 5, 294, 0, 0, 4233, 4234, 5, 68, 0, 0, 4234, 4235, 5, 323, 0, 0, 4235, 4240, 3, 760, 380, 0, 4236, 4237, 5, 62, 0, 0, 4237, 4238, 7, 2, 0, 0, 4238, 4240, 3, 814, 407, 0, 4239, 4233, 1, 0, 0, 0, 4239, 4236, 1, 0, 0, 0, 4240, 4243, 1, 0, 0, 0, 4241, 4239, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 4244, 1, 0, 0, 0, 4243, 4241, 1, 0, 0, 0, 4244, 4245, 3, 348, 174, 0, 4245, 347, 1, 0, 0, 0, 4246, 4247, 5, 65, 0, 0, 4247, 4248, 3, 332, 166, 0, 4248, 4249, 5, 80, 0, 0, 4249, 4250, 3, 350, 175, 0, 4250, 4251, 5, 94, 0, 0, 4251, 4255, 3, 340, 170, 0, 4252, 4253, 5, 105, 0, 0, 4253, 4254, 5, 65, 0, 0, 4254, 4256, 5, 279, 0, 0, 4255, 4252, 1, 0, 0, 0, 4255, 4256, 1, 0, 0, 0, 4256, 4272, 1, 0, 0, 0, 4257, 4261, 5, 317, 0, 0, 4258, 4259, 5, 65, 0, 0, 4259, 4260, 5, 279, 0, 0, 4260, 4262, 5, 62, 0, 0, 4261, 4258, 1, 0, 0, 0, 4261, 4262, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4264, 3, 332, 166, 0, 4264, 4265, 5, 80, 0, 0, 4265, 4266, 3, 350, 175, 0, 4266, 4267, 5, 64, 0, 0, 4267, 4269, 3, 340, 170, 0, 4268, 4270, 3, 88, 44, 0, 4269, 4268, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4272, 1, 0, 0, 0, 4271, 4246, 1, 0, 0, 0, 4271, 4257, 1, 0, 0, 0, 4272, 349, 1, 0, 0, 0, 4273, 4274, 7, 55, 0, 0, 4274, 351, 1, 0, 0, 0, 4275, 4277, 5, 46, 0, 0, 4276, 4278, 5, 98, 0, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4281, 5, 226, 0, 0, 4280, 4282, 5, 109, 0, 0, 4281, 4280, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 1, 0, 0, 0, 4283, 4285, 3, 288, 144, 0, 4284, 4283, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4287, 1, 0, 0, 0, 4286, 4288, 3, 816, 408, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4290, 5, 80, 0, 0, 4290, 4292, 3, 618, 309, 0, 4291, 4293, 3, 164, 82, 0, 4292, 4291, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4294, 1, 0, 0, 0, 4294, 4297, 3, 354, 177, 0, 4295, 4296, 5, 441, 0, 0, 4296, 4298, 3, 354, 177, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4304, 1, 0, 0, 0, 4299, 4301, 5, 273, 0, 0, 4300, 4302, 5, 77, 0, 0, 4301, 4300, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4305, 5, 56, 0, 0, 4304, 4299, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 4307, 1, 0, 0, 0, 4306, 4308, 3, 94, 47, 0, 4307, 4306, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4310, 1, 0, 0, 0, 4309, 4311, 3, 170, 85, 0, 4310, 4309, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4313, 1, 0, 0, 0, 4312, 4314, 3, 632, 316, 0, 4313, 4312, 1, 0, 0, 0, 4313, 4314, 1, 0, 0, 0, 4314, 353, 1, 0, 0, 0, 4315, 4316, 5, 2, 0, 0, 4316, 4321, 3, 356, 178, 0, 4317, 4318, 5, 6, 0, 0, 4318, 4320, 3, 356, 178, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4323, 1, 0, 0, 0, 4321, 4319, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4324, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 4325, 5, 3, 0, 0, 4325, 355, 1, 0, 0, 0, 4326, 4333, 3, 796, 398, 0, 4327, 4333, 3, 682, 341, 0, 4328, 4329, 5, 2, 0, 0, 4329, 4330, 3, 668, 334, 0, 4330, 4331, 5, 3, 0, 0, 4331, 4333, 1, 0, 0, 0, 4332, 4326, 1, 0, 0, 0, 4332, 4327, 1, 0, 0, 0, 4332, 4328, 1, 0, 0, 0, 4333, 4335, 1, 0, 0, 0, 4334, 4336, 3, 90, 45, 0, 4335, 4334, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4343, 1, 0, 0, 0, 4337, 4339, 3, 310, 155, 0, 4338, 4337, 1, 0, 0, 0, 4338, 4339, 1, 0, 0, 0, 4339, 4344, 1, 0, 0, 0, 4340, 4341, 3, 310, 155, 0, 4341, 4342, 3, 92, 46, 0, 4342, 4344, 1, 0, 0, 0, 4343, 4338, 1, 0, 0, 0, 4343, 4340, 1, 0, 0, 0, 4344, 4346, 1, 0, 0, 0, 4345, 4347, 7, 56, 0, 0, 4346, 4345, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4350, 1, 0, 0, 0, 4348, 4349, 5, 273, 0, 0, 4349, 4351, 7, 57, 0, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 357, 1, 0, 0, 0, 4352, 4354, 5, 46, 0, 0, 4353, 4355, 3, 360, 180, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4360, 1, 0, 0, 0, 4356, 4357, 5, 211, 0, 0, 4357, 4361, 3, 802, 401, 0, 4358, 4359, 5, 296, 0, 0, 4359, 4361, 3, 794, 397, 0, 4360, 4356, 1, 0, 0, 0, 4360, 4358, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4371, 5, 2, 0, 0, 4363, 4368, 3, 384, 192, 0, 4364, 4365, 5, 6, 0, 0, 4365, 4367, 3, 384, 192, 0, 4366, 4364, 1, 0, 0, 0, 4367, 4370, 1, 0, 0, 0, 4368, 4366, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4372, 1, 0, 0, 0, 4370, 4368, 1, 0, 0, 0, 4371, 4363, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 4374, 5, 3, 0, 0, 4374, 4391, 1, 0, 0, 0, 4375, 4389, 5, 316, 0, 0, 4376, 4390, 3, 382, 191, 0, 4377, 4378, 5, 92, 0, 0, 4378, 4379, 5, 2, 0, 0, 4379, 4384, 3, 396, 198, 0, 4380, 4381, 5, 6, 0, 0, 4381, 4383, 3, 396, 198, 0, 4382, 4380, 1, 0, 0, 0, 4383, 4386, 1, 0, 0, 0, 4384, 4382, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 4387, 1, 0, 0, 0, 4386, 4384, 1, 0, 0, 0, 4387, 4388, 5, 3, 0, 0, 4388, 4390, 1, 0, 0, 0, 4389, 4376, 1, 0, 0, 0, 4389, 4377, 1, 0, 0, 0, 4390, 4392, 1, 0, 0, 0, 4391, 4375, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4394, 1, 0, 0, 0, 4393, 4395, 3, 392, 196, 0, 4394, 4393, 1, 0, 0, 0, 4395, 4396, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4396, 4397, 1, 0, 0, 0, 4397, 4403, 1, 0, 0, 0, 4398, 4399, 5, 105, 0, 0, 4399, 4400, 5, 2, 0, 0, 4400, 4401, 3, 780, 390, 0, 4401, 4402, 5, 3, 0, 0, 4402, 4404, 1, 0, 0, 0, 4403, 4398, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 359, 1, 0, 0, 0, 4405, 4406, 5, 82, 0, 0, 4406, 4407, 5, 311, 0, 0, 4407, 361, 1, 0, 0, 0, 4408, 4410, 5, 2, 0, 0, 4409, 4411, 3, 364, 182, 0, 4410, 4409, 1, 0, 0, 0, 4410, 4411, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 4413, 5, 3, 0, 0, 4413, 363, 1, 0, 0, 0, 4414, 4419, 3, 378, 189, 0, 4415, 4416, 5, 6, 0, 0, 4416, 4418, 3, 378, 189, 0, 4417, 4415, 1, 0, 0, 0, 4418, 4421, 1, 0, 0, 0, 4419, 4417, 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 365, 1, 0, 0, 0, 4421, 4419, 1, 0, 0, 0, 4422, 4427, 3, 368, 184, 0, 4423, 4424, 5, 6, 0, 0, 4424, 4426, 3, 368, 184, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4429, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 367, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4431, 3, 790, 395, 0, 4431, 4432, 3, 362, 181, 0, 4432, 4436, 1, 0, 0, 0, 4433, 4436, 3, 830, 415, 0, 4434, 4436, 3, 776, 388, 0, 4435, 4430, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4435, 4434, 1, 0, 0, 0, 4436, 369, 1, 0, 0, 0, 4437, 4442, 3, 372, 186, 0, 4438, 4439, 5, 6, 0, 0, 4439, 4441, 3, 372, 186, 0, 4440, 4438, 1, 0, 0, 0, 4441, 4444, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 371, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4445, 4446, 3, 792, 396, 0, 4446, 4447, 3, 362, 181, 0, 4447, 4451, 1, 0, 0, 0, 4448, 4451, 3, 830, 415, 0, 4449, 4451, 3, 776, 388, 0, 4450, 4445, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4449, 1, 0, 0, 0, 4451, 373, 1, 0, 0, 0, 4452, 4457, 3, 376, 188, 0, 4453, 4454, 5, 6, 0, 0, 4454, 4456, 3, 376, 188, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4459, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 375, 1, 0, 0, 0, 4459, 4457, 1, 0, 0, 0, 4460, 4461, 3, 804, 402, 0, 4461, 4462, 3, 362, 181, 0, 4462, 4466, 1, 0, 0, 0, 4463, 4466, 3, 830, 415, 0, 4464, 4466, 3, 776, 388, 0, 4465, 4460, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4465, 4464, 1, 0, 0, 0, 4466, 377, 1, 0, 0, 0, 4467, 4469, 3, 380, 190, 0, 4468, 4470, 3, 818, 409, 0, 4469, 4468, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4476, 1, 0, 0, 0, 4471, 4473, 3, 818, 409, 0, 4472, 4474, 3, 380, 190, 0, 4473, 4472, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 4476, 1, 0, 0, 0, 4475, 4467, 1, 0, 0, 0, 4475, 4471, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 4477, 1, 0, 0, 0, 4477, 4478, 3, 382, 191, 0, 4478, 379, 1, 0, 0, 0, 4479, 4481, 5, 68, 0, 0, 4480, 4482, 5, 453, 0, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4487, 1, 0, 0, 0, 4483, 4487, 5, 453, 0, 0, 4484, 4487, 5, 400, 0, 0, 4485, 4487, 5, 101, 0, 0, 4486, 4479, 1, 0, 0, 0, 4486, 4483, 1, 0, 0, 0, 4486, 4484, 1, 0, 0, 0, 4486, 4485, 1, 0, 0, 0, 4487, 381, 1, 0, 0, 0, 4488, 4498, 3, 646, 323, 0, 4489, 4491, 5, 415, 0, 0, 4490, 4489, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4493, 3, 818, 409, 0, 4493, 4494, 3, 312, 156, 0, 4494, 4495, 5, 27, 0, 0, 4495, 4496, 5, 360, 0, 0, 4496, 4498, 1, 0, 0, 0, 4497, 4488, 1, 0, 0, 0, 4497, 4490, 1, 0, 0, 0, 4498, 383, 1, 0, 0, 0, 4499, 4502, 3, 378, 189, 0, 4500, 4501, 7, 58, 0, 0, 4501, 4503, 3, 668, 334, 0, 4502, 4500, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 385, 1, 0, 0, 0, 4504, 4514, 5, 2, 0, 0, 4505, 4515, 5, 9, 0, 0, 4506, 4508, 3, 364, 182, 0, 4507, 4506, 1, 0, 0, 0, 4507, 4508, 1, 0, 0, 0, 4508, 4512, 1, 0, 0, 0, 4509, 4510, 5, 83, 0, 0, 4510, 4511, 5, 147, 0, 0, 4511, 4513, 3, 364, 182, 0, 4512, 4509, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4515, 1, 0, 0, 0, 4514, 4505, 1, 0, 0, 0, 4514, 4507, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4517, 5, 3, 0, 0, 4517, 387, 1, 0, 0, 0, 4518, 4519, 3, 804, 402, 0, 4519, 4520, 3, 386, 193, 0, 4520, 389, 1, 0, 0, 0, 4521, 4522, 5, 316, 0, 0, 4522, 4525, 5, 78, 0, 0, 4523, 4525, 5, 149, 0, 0, 4524, 4521, 1, 0, 0, 0, 4524, 4523, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4527, 5, 80, 0, 0, 4527, 4528, 5, 78, 0, 0, 4528, 4551, 5, 458, 0, 0, 4529, 4551, 5, 346, 0, 0, 4530, 4551, 5, 222, 0, 0, 4531, 4551, 5, 338, 0, 0, 4532, 4551, 5, 377, 0, 0, 4533, 4535, 5, 205, 0, 0, 4534, 4533, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 5, 327, 0, 0, 4537, 4551, 7, 59, 0, 0, 4538, 4551, 5, 250, 0, 0, 4539, 4540, 5, 77, 0, 0, 4540, 4551, 5, 250, 0, 0, 4541, 4542, 7, 60, 0, 0, 4542, 4551, 3, 196, 98, 0, 4543, 4544, 5, 459, 0, 0, 4544, 4551, 3, 310, 155, 0, 4545, 4546, 5, 333, 0, 0, 4546, 4551, 3, 42, 21, 0, 4547, 4551, 3, 60, 30, 0, 4548, 4549, 5, 460, 0, 0, 4549, 4551, 3, 816, 408, 0, 4550, 4524, 1, 0, 0, 0, 4550, 4529, 1, 0, 0, 0, 4550, 4530, 1, 0, 0, 0, 4550, 4531, 1, 0, 0, 0, 4550, 4532, 1, 0, 0, 0, 4550, 4534, 1, 0, 0, 0, 4550, 4538, 1, 0, 0, 0, 4550, 4539, 1, 0, 0, 0, 4550, 4541, 1, 0, 0, 0, 4550, 4543, 1, 0, 0, 0, 4550, 4545, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4550, 4548, 1, 0, 0, 0, 4551, 391, 1, 0, 0, 0, 4552, 4553, 5, 36, 0, 0, 4553, 4554, 3, 806, 403, 0, 4554, 4555, 3, 456, 228, 0, 4555, 4588, 1, 0, 0, 0, 4556, 4557, 5, 247, 0, 0, 4557, 4588, 3, 58, 29, 0, 4558, 4559, 5, 443, 0, 0, 4559, 4560, 5, 62, 0, 0, 4560, 4561, 5, 360, 0, 0, 4561, 4568, 3, 646, 323, 0, 4562, 4563, 5, 6, 0, 0, 4563, 4564, 5, 62, 0, 0, 4564, 4565, 5, 360, 0, 0, 4565, 4567, 3, 646, 323, 0, 4566, 4562, 1, 0, 0, 0, 4567, 4570, 1, 0, 0, 0, 4568, 4566, 1, 0, 0, 0, 4568, 4569, 1, 0, 0, 0, 4569, 4588, 1, 0, 0, 0, 4570, 4568, 1, 0, 0, 0, 4571, 4588, 5, 104, 0, 0, 4572, 4573, 5, 333, 0, 0, 4573, 4580, 3, 816, 408, 0, 4574, 4575, 5, 94, 0, 0, 4575, 4581, 3, 816, 408, 0, 4576, 4577, 5, 10, 0, 0, 4577, 4581, 3, 816, 408, 0, 4578, 4579, 5, 64, 0, 0, 4579, 4581, 5, 434, 0, 0, 4580, 4574, 1, 0, 0, 0, 4580, 4576, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4588, 1, 0, 0, 0, 4582, 4583, 5, 36, 0, 0, 4583, 4588, 3, 816, 408, 0, 4584, 4588, 3, 4, 2, 0, 4585, 4588, 3, 390, 195, 0, 4586, 4588, 3, 816, 408, 0, 4587, 4552, 1, 0, 0, 0, 4587, 4556, 1, 0, 0, 0, 4587, 4558, 1, 0, 0, 0, 4587, 4571, 1, 0, 0, 0, 4587, 4572, 1, 0, 0, 0, 4587, 4582, 1, 0, 0, 0, 4587, 4584, 1, 0, 0, 0, 4587, 4585, 1, 0, 0, 0, 4587, 4586, 1, 0, 0, 0, 4588, 393, 1, 0, 0, 0, 4589, 4590, 5, 105, 0, 0, 4590, 4591, 3, 278, 139, 0, 4591, 395, 1, 0, 0, 0, 4592, 4593, 3, 796, 398, 0, 4593, 4594, 3, 382, 191, 0, 4594, 397, 1, 0, 0, 0, 4595, 4602, 5, 138, 0, 0, 4596, 4597, 5, 211, 0, 0, 4597, 4603, 3, 376, 188, 0, 4598, 4599, 5, 296, 0, 0, 4599, 4603, 3, 372, 186, 0, 4600, 4601, 5, 442, 0, 0, 4601, 4603, 3, 368, 184, 0, 4602, 4596, 1, 0, 0, 0, 4602, 4598, 1, 0, 0, 0, 4602, 4600, 1, 0, 0, 0, 4603, 4605, 1, 0, 0, 0, 4604, 4606, 3, 390, 195, 0, 4605, 4604, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4610, 1, 0, 0, 0, 4609, 4611, 5, 315, 0, 0, 4610, 4609, 1, 0, 0, 0, 4610, 4611, 1, 0, 0, 0, 4611, 399, 1, 0, 0, 0, 4612, 4628, 5, 191, 0, 0, 4613, 4615, 5, 211, 0, 0, 4614, 4616, 3, 416, 208, 0, 4615, 4614, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4629, 3, 374, 187, 0, 4618, 4620, 5, 296, 0, 0, 4619, 4621, 3, 416, 208, 0, 4620, 4619, 1, 0, 0, 0, 4620, 4621, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4629, 3, 370, 185, 0, 4623, 4625, 5, 442, 0, 0, 4624, 4626, 3, 416, 208, 0, 4625, 4624, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4629, 3, 366, 183, 0, 4628, 4613, 1, 0, 0, 0, 4628, 4618, 1, 0, 0, 0, 4628, 4623, 1, 0, 0, 0, 4629, 4631, 1, 0, 0, 0, 4630, 4632, 3, 88, 44, 0, 4631, 4630, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 401, 1, 0, 0, 0, 4633, 4634, 5, 191, 0, 0, 4634, 4636, 5, 136, 0, 0, 4635, 4637, 3, 416, 208, 0, 4636, 4635, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4643, 3, 388, 194, 0, 4639, 4640, 5, 6, 0, 0, 4640, 4642, 3, 388, 194, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4647, 1, 0, 0, 0, 4645, 4643, 1, 0, 0, 0, 4646, 4648, 3, 88, 44, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 403, 1, 0, 0, 0, 4649, 4650, 5, 191, 0, 0, 4650, 4652, 5, 278, 0, 0, 4651, 4653, 3, 416, 208, 0, 4652, 4651, 1, 0, 0, 0, 4652, 4653, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4659, 3, 410, 205, 0, 4655, 4656, 5, 6, 0, 0, 4656, 4658, 3, 410, 205, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4661, 1, 0, 0, 0, 4659, 4657, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 4663, 1, 0, 0, 0, 4661, 4659, 1, 0, 0, 0, 4662, 4664, 3, 88, 44, 0, 4663, 4662, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 405, 1, 0, 0, 0, 4665, 4678, 5, 2, 0, 0, 4666, 4669, 3, 646, 323, 0, 4667, 4668, 5, 6, 0, 0, 4668, 4670, 3, 646, 323, 0, 4669, 4667, 1, 0, 0, 0, 4669, 4670, 1, 0, 0, 0, 4670, 4679, 1, 0, 0, 0, 4671, 4672, 5, 407, 0, 0, 4672, 4673, 5, 6, 0, 0, 4673, 4679, 3, 646, 323, 0, 4674, 4675, 3, 646, 323, 0, 4675, 4676, 5, 6, 0, 0, 4676, 4677, 5, 407, 0, 0, 4677, 4679, 1, 0, 0, 0, 4678, 4666, 1, 0, 0, 0, 4678, 4671, 1, 0, 0, 0, 4678, 4674, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 4681, 5, 3, 0, 0, 4681, 407, 1, 0, 0, 0, 4682, 4683, 3, 816, 408, 0, 4683, 4684, 5, 11, 0, 0, 4684, 4686, 1, 0, 0, 0, 4685, 4682, 1, 0, 0, 0, 4686, 4689, 1, 0, 0, 0, 4687, 4685, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4690, 1, 0, 0, 0, 4689, 4687, 1, 0, 0, 0, 4690, 4691, 3, 716, 358, 0, 4691, 409, 1, 0, 0, 0, 4692, 4693, 3, 408, 204, 0, 4693, 4694, 3, 406, 203, 0, 4694, 411, 1, 0, 0, 0, 4695, 4699, 5, 57, 0, 0, 4696, 4700, 3, 806, 403, 0, 4697, 4698, 5, 247, 0, 0, 4698, 4700, 3, 58, 29, 0, 4699, 4696, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4699, 1, 0, 0, 0, 4701, 4702, 1, 0, 0, 0, 4702, 413, 1, 0, 0, 0, 4703, 4704, 5, 46, 0, 0, 4704, 4705, 5, 41, 0, 0, 4705, 4706, 5, 2, 0, 0, 4706, 4707, 3, 646, 323, 0, 4707, 4708, 5, 36, 0, 0, 4708, 4709, 3, 646, 323, 0, 4709, 4726, 5, 3, 0, 0, 4710, 4711, 5, 379, 0, 0, 4711, 4714, 5, 211, 0, 0, 4712, 4713, 5, 36, 0, 0, 4713, 4715, 7, 61, 0, 0, 4714, 4712, 1, 0, 0, 0, 4714, 4715, 1, 0, 0, 0, 4715, 4727, 1, 0, 0, 0, 4716, 4720, 5, 105, 0, 0, 4717, 4718, 5, 211, 0, 0, 4718, 4721, 3, 376, 188, 0, 4719, 4721, 5, 400, 0, 0, 4720, 4717, 1, 0, 0, 0, 4720, 4719, 1, 0, 0, 0, 4721, 4724, 1, 0, 0, 0, 4722, 4723, 5, 36, 0, 0, 4723, 4725, 7, 61, 0, 0, 4724, 4722, 1, 0, 0, 0, 4724, 4725, 1, 0, 0, 0, 4725, 4727, 1, 0, 0, 0, 4726, 4710, 1, 0, 0, 0, 4726, 4716, 1, 0, 0, 0, 4727, 415, 1, 0, 0, 0, 4728, 4729, 5, 220, 0, 0, 4729, 4730, 5, 396, 0, 0, 4730, 417, 1, 0, 0, 0, 4731, 4733, 5, 46, 0, 0, 4732, 4734, 3, 360, 180, 0, 4733, 4732, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4735, 1, 0, 0, 0, 4735, 4736, 5, 443, 0, 0, 4736, 4737, 5, 62, 0, 0, 4737, 4738, 3, 646, 323, 0, 4738, 4739, 5, 247, 0, 0, 4739, 4740, 3, 816, 408, 0, 4740, 4755, 5, 2, 0, 0, 4741, 4742, 5, 64, 0, 0, 4742, 4746, 3, 420, 210, 0, 4743, 4744, 5, 6, 0, 0, 4744, 4745, 5, 94, 0, 0, 4745, 4747, 3, 420, 210, 0, 4746, 4743, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4756, 1, 0, 0, 0, 4748, 4749, 5, 94, 0, 0, 4749, 4753, 3, 420, 210, 0, 4750, 4751, 5, 6, 0, 0, 4751, 4752, 5, 64, 0, 0, 4752, 4754, 3, 420, 210, 0, 4753, 4750, 1, 0, 0, 0, 4753, 4754, 1, 0, 0, 0, 4754, 4756, 1, 0, 0, 0, 4755, 4741, 1, 0, 0, 0, 4755, 4748, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4758, 5, 3, 0, 0, 4758, 419, 1, 0, 0, 0, 4759, 4760, 5, 461, 0, 0, 4760, 4761, 5, 105, 0, 0, 4761, 4762, 5, 211, 0, 0, 4762, 4763, 3, 376, 188, 0, 4763, 421, 1, 0, 0, 0, 4764, 4775, 5, 306, 0, 0, 4765, 4766, 5, 2, 0, 0, 4766, 4771, 5, 128, 0, 0, 4767, 4768, 5, 6, 0, 0, 4768, 4770, 5, 128, 0, 0, 4769, 4767, 1, 0, 0, 0, 4770, 4773, 1, 0, 0, 0, 4771, 4769, 1, 0, 0, 0, 4771, 4772, 1, 0, 0, 0, 4772, 4774, 1, 0, 0, 0, 4773, 4771, 1, 0, 0, 0, 4774, 4776, 5, 3, 0, 0, 4775, 4765, 1, 0, 0, 0, 4775, 4776, 1, 0, 0, 0, 4776, 4802, 1, 0, 0, 0, 4777, 4779, 5, 226, 0, 0, 4778, 4780, 5, 109, 0, 0, 4779, 4778, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 4781, 1, 0, 0, 0, 4781, 4803, 3, 776, 388, 0, 4782, 4784, 5, 92, 0, 0, 4783, 4785, 5, 109, 0, 0, 4784, 4783, 1, 0, 0, 0, 4784, 4785, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4803, 3, 770, 385, 0, 4787, 4789, 5, 323, 0, 0, 4788, 4790, 5, 109, 0, 0, 4789, 4788, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4803, 3, 786, 393, 0, 4792, 4794, 5, 349, 0, 0, 4793, 4795, 5, 109, 0, 0, 4794, 4793, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 4803, 3, 816, 408, 0, 4797, 4799, 5, 175, 0, 0, 4798, 4800, 5, 109, 0, 0, 4799, 4798, 1, 0, 0, 0, 4799, 4800, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4803, 3, 784, 392, 0, 4802, 4777, 1, 0, 0, 0, 4802, 4782, 1, 0, 0, 0, 4802, 4787, 1, 0, 0, 0, 4802, 4792, 1, 0, 0, 0, 4802, 4797, 1, 0, 0, 0, 4803, 423, 1, 0, 0, 0, 4804, 4805, 5, 138, 0, 0, 4805, 4806, 3, 170, 85, 0, 4806, 4807, 7, 16, 0, 0, 4807, 4808, 3, 92, 46, 0, 4808, 425, 1, 0, 0, 0, 4809, 4814, 5, 138, 0, 0, 4810, 4811, 5, 136, 0, 0, 4811, 4815, 3, 388, 194, 0, 4812, 4813, 5, 442, 0, 0, 4813, 4815, 3, 368, 184, 0, 4814, 4810, 1, 0, 0, 0, 4814, 4812, 1, 0, 0, 0, 4815, 4816, 1, 0, 0, 0, 4816, 4817, 5, 309, 0, 0, 4817, 4818, 5, 94, 0, 0, 4818, 4819, 3, 816, 408, 0, 4819, 5017, 1, 0, 0, 0, 4820, 4821, 5, 138, 0, 0, 4821, 4822, 5, 175, 0, 0, 4822, 4823, 3, 784, 392, 0, 4823, 4824, 5, 309, 0, 0, 4824, 4825, 5, 94, 0, 0, 4825, 4826, 3, 782, 391, 0, 4826, 5017, 1, 0, 0, 0, 4827, 4828, 5, 138, 0, 0, 4828, 4829, 7, 62, 0, 0, 4829, 4830, 3, 310, 155, 0, 4830, 4831, 5, 309, 0, 0, 4831, 4832, 5, 94, 0, 0, 4832, 4833, 3, 816, 408, 0, 4833, 5017, 1, 0, 0, 0, 4834, 4835, 5, 138, 0, 0, 4835, 4836, 5, 211, 0, 0, 4836, 4837, 3, 376, 188, 0, 4837, 4838, 5, 309, 0, 0, 4838, 4839, 5, 94, 0, 0, 4839, 4840, 3, 802, 401, 0, 4840, 5017, 1, 0, 0, 0, 4841, 4842, 5, 138, 0, 0, 4842, 4843, 5, 278, 0, 0, 4843, 4844, 7, 32, 0, 0, 4844, 4845, 3, 310, 155, 0, 4845, 4846, 3, 164, 82, 0, 4846, 4847, 5, 309, 0, 0, 4847, 4848, 5, 94, 0, 0, 4848, 4849, 3, 816, 408, 0, 4849, 5017, 1, 0, 0, 0, 4850, 4851, 5, 138, 0, 0, 4851, 4852, 5, 296, 0, 0, 4852, 4853, 3, 372, 186, 0, 4853, 4854, 5, 309, 0, 0, 4854, 4855, 5, 94, 0, 0, 4855, 4856, 3, 794, 397, 0, 4856, 5017, 1, 0, 0, 0, 4857, 4858, 5, 138, 0, 0, 4858, 4859, 5, 323, 0, 0, 4859, 4860, 3, 786, 393, 0, 4860, 4861, 5, 309, 0, 0, 4861, 4862, 5, 94, 0, 0, 4862, 4863, 3, 32, 16, 0, 4863, 5017, 1, 0, 0, 0, 4864, 4865, 5, 138, 0, 0, 4865, 4867, 7, 63, 0, 0, 4866, 4868, 3, 416, 208, 0, 4867, 4866, 1, 0, 0, 0, 4867, 4868, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 4870, 3, 776, 388, 0, 4870, 4871, 5, 309, 0, 0, 4871, 4872, 5, 94, 0, 0, 4872, 4873, 3, 816, 408, 0, 4873, 5017, 1, 0, 0, 0, 4874, 4876, 5, 138, 0, 0, 4875, 4877, 5, 259, 0, 0, 4876, 4875, 1, 0, 0, 0, 4876, 4877, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 4880, 5, 376, 0, 0, 4879, 4881, 3, 416, 208, 0, 4880, 4879, 1, 0, 0, 0, 4880, 4881, 1, 0, 0, 0, 4881, 4882, 1, 0, 0, 0, 4882, 4883, 3, 774, 387, 0, 4883, 4884, 5, 309, 0, 0, 4884, 4885, 5, 94, 0, 0, 4885, 4886, 3, 772, 386, 0, 4886, 5017, 1, 0, 0, 0, 4887, 4889, 5, 138, 0, 0, 4888, 4890, 5, 63, 0, 0, 4889, 4888, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4893, 5, 92, 0, 0, 4892, 4894, 3, 416, 208, 0, 4893, 4892, 1, 0, 0, 0, 4893, 4894, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4896, 3, 618, 309, 0, 4896, 4897, 5, 309, 0, 0, 4897, 4898, 5, 94, 0, 0, 4898, 4899, 3, 768, 384, 0, 4899, 5017, 1, 0, 0, 0, 4900, 4925, 5, 138, 0, 0, 4901, 4903, 5, 63, 0, 0, 4902, 4901, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 1, 0, 0, 0, 4904, 4906, 5, 92, 0, 0, 4905, 4907, 3, 416, 208, 0, 4906, 4905, 1, 0, 0, 0, 4906, 4907, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4909, 3, 618, 309, 0, 4909, 4911, 5, 309, 0, 0, 4910, 4912, 5, 44, 0, 0, 4911, 4910, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4926, 1, 0, 0, 0, 4913, 4915, 5, 259, 0, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4918, 5, 376, 0, 0, 4917, 4919, 3, 416, 208, 0, 4918, 4917, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4921, 3, 774, 387, 0, 4921, 4923, 5, 309, 0, 0, 4922, 4924, 5, 44, 0, 0, 4923, 4922, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4926, 1, 0, 0, 0, 4925, 4902, 1, 0, 0, 0, 4925, 4914, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 3, 796, 398, 0, 4928, 4929, 5, 94, 0, 0, 4929, 4930, 3, 800, 400, 0, 4930, 5017, 1, 0, 0, 0, 4931, 4939, 5, 138, 0, 0, 4932, 4934, 5, 92, 0, 0, 4933, 4935, 3, 416, 208, 0, 4934, 4933, 1, 0, 0, 0, 4934, 4935, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4940, 3, 618, 309, 0, 4937, 4938, 5, 189, 0, 0, 4938, 4940, 3, 310, 155, 0, 4939, 4932, 1, 0, 0, 0, 4939, 4937, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 4942, 5, 309, 0, 0, 4942, 4943, 5, 45, 0, 0, 4943, 4944, 3, 816, 408, 0, 4944, 4945, 5, 94, 0, 0, 4945, 4946, 3, 816, 408, 0, 4946, 5017, 1, 0, 0, 0, 4947, 4954, 5, 138, 0, 0, 4948, 4950, 5, 445, 0, 0, 4949, 4951, 3, 416, 208, 0, 4950, 4949, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4955, 1, 0, 0, 0, 4952, 4955, 5, 321, 0, 0, 4953, 4955, 5, 357, 0, 0, 4954, 4948, 1, 0, 0, 0, 4954, 4952, 1, 0, 0, 0, 4954, 4953, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4957, 3, 816, 408, 0, 4957, 4958, 5, 80, 0, 0, 4958, 4959, 3, 776, 388, 0, 4959, 4960, 5, 309, 0, 0, 4960, 4961, 5, 94, 0, 0, 4961, 4962, 3, 816, 408, 0, 4962, 5017, 1, 0, 0, 0, 4963, 4976, 5, 138, 0, 0, 4964, 4965, 5, 63, 0, 0, 4965, 4966, 5, 174, 0, 0, 4966, 4977, 5, 381, 0, 0, 4967, 4969, 5, 295, 0, 0, 4968, 4967, 1, 0, 0, 0, 4968, 4969, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4977, 5, 247, 0, 0, 4971, 4977, 5, 452, 0, 0, 4972, 4977, 5, 331, 0, 0, 4973, 4977, 5, 451, 0, 0, 4974, 4975, 5, 198, 0, 0, 4975, 4977, 5, 357, 0, 0, 4976, 4964, 1, 0, 0, 0, 4976, 4968, 1, 0, 0, 0, 4976, 4971, 1, 0, 0, 0, 4976, 4972, 1, 0, 0, 0, 4976, 4973, 1, 0, 0, 0, 4976, 4974, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4979, 3, 816, 408, 0, 4979, 4980, 5, 309, 0, 0, 4980, 4981, 5, 94, 0, 0, 4981, 4982, 3, 816, 408, 0, 4982, 5017, 1, 0, 0, 0, 4983, 4984, 5, 138, 0, 0, 4984, 4985, 7, 46, 0, 0, 4985, 4986, 3, 812, 406, 0, 4986, 4987, 5, 309, 0, 0, 4987, 4988, 5, 94, 0, 0, 4988, 4989, 3, 812, 406, 0, 4989, 5017, 1, 0, 0, 0, 4990, 4991, 5, 138, 0, 0, 4991, 4992, 3, 170, 85, 0, 4992, 4993, 5, 309, 0, 0, 4993, 4994, 5, 94, 0, 0, 4994, 4995, 3, 766, 383, 0, 4995, 5017, 1, 0, 0, 0, 4996, 4997, 5, 138, 0, 0, 4997, 4998, 5, 355, 0, 0, 4998, 4999, 5, 325, 0, 0, 4999, 5000, 7, 42, 0, 0, 5000, 5001, 3, 310, 155, 0, 5001, 5002, 5, 309, 0, 0, 5002, 5003, 5, 94, 0, 0, 5003, 5004, 3, 816, 408, 0, 5004, 5017, 1, 0, 0, 0, 5005, 5006, 5, 138, 0, 0, 5006, 5007, 5, 360, 0, 0, 5007, 5008, 3, 310, 155, 0, 5008, 5009, 5, 309, 0, 0, 5009, 5010, 5, 143, 0, 0, 5010, 5011, 3, 816, 408, 0, 5011, 5012, 5, 94, 0, 0, 5012, 5014, 3, 816, 408, 0, 5013, 5015, 3, 88, 44, 0, 5014, 5013, 1, 0, 0, 0, 5014, 5015, 1, 0, 0, 0, 5015, 5017, 1, 0, 0, 0, 5016, 4809, 1, 0, 0, 0, 5016, 4820, 1, 0, 0, 0, 5016, 4827, 1, 0, 0, 0, 5016, 4834, 1, 0, 0, 0, 5016, 4841, 1, 0, 0, 0, 5016, 4850, 1, 0, 0, 0, 5016, 4857, 1, 0, 0, 0, 5016, 4864, 1, 0, 0, 0, 5016, 4874, 1, 0, 0, 0, 5016, 4887, 1, 0, 0, 0, 5016, 4900, 1, 0, 0, 0, 5016, 4931, 1, 0, 0, 0, 5016, 4947, 1, 0, 0, 0, 5016, 4963, 1, 0, 0, 0, 5016, 4983, 1, 0, 0, 0, 5016, 4990, 1, 0, 0, 0, 5016, 4996, 1, 0, 0, 0, 5016, 5005, 1, 0, 0, 0, 5017, 427, 1, 0, 0, 0, 5018, 5035, 5, 138, 0, 0, 5019, 5020, 5, 211, 0, 0, 5020, 5036, 3, 376, 188, 0, 5021, 5022, 5, 296, 0, 0, 5022, 5036, 3, 372, 186, 0, 5023, 5024, 5, 442, 0, 0, 5024, 5036, 3, 368, 184, 0, 5025, 5026, 5, 357, 0, 0, 5026, 5027, 3, 816, 408, 0, 5027, 5028, 5, 80, 0, 0, 5028, 5029, 3, 776, 388, 0, 5029, 5036, 1, 0, 0, 0, 5030, 5031, 5, 259, 0, 0, 5031, 5032, 5, 376, 0, 0, 5032, 5036, 3, 774, 387, 0, 5033, 5034, 5, 226, 0, 0, 5034, 5036, 3, 776, 388, 0, 5035, 5019, 1, 0, 0, 0, 5035, 5021, 1, 0, 0, 0, 5035, 5023, 1, 0, 0, 0, 5035, 5025, 1, 0, 0, 0, 5035, 5030, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5036, 5038, 1, 0, 0, 0, 5037, 5039, 5, 269, 0, 0, 5038, 5037, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5040, 1, 0, 0, 0, 5040, 5041, 5, 462, 0, 0, 5041, 5042, 5, 80, 0, 0, 5042, 5043, 5, 204, 0, 0, 5043, 5044, 3, 816, 408, 0, 5044, 429, 1, 0, 0, 0, 5045, 5084, 5, 138, 0, 0, 5046, 5047, 5, 136, 0, 0, 5047, 5085, 3, 388, 194, 0, 5048, 5049, 5, 204, 0, 0, 5049, 5085, 3, 816, 408, 0, 5050, 5051, 5, 211, 0, 0, 5051, 5085, 3, 376, 188, 0, 5052, 5053, 5, 278, 0, 0, 5053, 5085, 3, 410, 205, 0, 5054, 5055, 5, 278, 0, 0, 5055, 5056, 7, 32, 0, 0, 5056, 5057, 3, 310, 155, 0, 5057, 5058, 3, 164, 82, 0, 5058, 5085, 1, 0, 0, 0, 5059, 5060, 5, 296, 0, 0, 5060, 5085, 3, 372, 186, 0, 5061, 5062, 5, 442, 0, 0, 5062, 5085, 3, 368, 184, 0, 5063, 5065, 5, 328, 0, 0, 5064, 5066, 3, 416, 208, 0, 5065, 5064, 1, 0, 0, 0, 5065, 5066, 1, 0, 0, 0, 5066, 5067, 1, 0, 0, 0, 5067, 5085, 3, 776, 388, 0, 5068, 5070, 5, 259, 0, 0, 5069, 5068, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5071, 1, 0, 0, 0, 5071, 5073, 5, 376, 0, 0, 5072, 5074, 3, 416, 208, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5085, 3, 774, 387, 0, 5076, 5078, 5, 63, 0, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 5, 92, 0, 0, 5080, 5082, 3, 416, 208, 0, 5081, 5080, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5085, 3, 618, 309, 0, 5084, 5046, 1, 0, 0, 0, 5084, 5048, 1, 0, 0, 0, 5084, 5050, 1, 0, 0, 0, 5084, 5052, 1, 0, 0, 0, 5084, 5054, 1, 0, 0, 0, 5084, 5059, 1, 0, 0, 0, 5084, 5061, 1, 0, 0, 0, 5084, 5063, 1, 0, 0, 0, 5084, 5069, 1, 0, 0, 0, 5084, 5077, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 5087, 5, 333, 0, 0, 5087, 5088, 5, 323, 0, 0, 5088, 5089, 3, 786, 393, 0, 5089, 5107, 1, 0, 0, 0, 5090, 5099, 5, 138, 0, 0, 5091, 5092, 5, 355, 0, 0, 5092, 5093, 5, 325, 0, 0, 5093, 5100, 7, 42, 0, 0, 5094, 5100, 5, 108, 0, 0, 5095, 5100, 5, 168, 0, 0, 5096, 5100, 5, 189, 0, 0, 5097, 5100, 5, 342, 0, 0, 5098, 5100, 5, 360, 0, 0, 5099, 5091, 1, 0, 0, 0, 5099, 5094, 1, 0, 0, 0, 5099, 5095, 1, 0, 0, 0, 5099, 5096, 1, 0, 0, 0, 5099, 5097, 1, 0, 0, 0, 5099, 5098, 1, 0, 0, 0, 5100, 5101, 1, 0, 0, 0, 5101, 5102, 3, 310, 155, 0, 5102, 5103, 5, 333, 0, 0, 5103, 5104, 5, 323, 0, 0, 5104, 5105, 3, 786, 393, 0, 5105, 5107, 1, 0, 0, 0, 5106, 5045, 1, 0, 0, 0, 5106, 5090, 1, 0, 0, 0, 5107, 431, 1, 0, 0, 0, 5108, 5109, 5, 138, 0, 0, 5109, 5110, 5, 278, 0, 0, 5110, 5111, 3, 410, 205, 0, 5111, 5112, 5, 333, 0, 0, 5112, 5113, 3, 434, 217, 0, 5113, 433, 1, 0, 0, 0, 5114, 5115, 5, 2, 0, 0, 5115, 5120, 3, 436, 218, 0, 5116, 5117, 5, 6, 0, 0, 5117, 5119, 3, 436, 218, 0, 5118, 5116, 1, 0, 0, 0, 5119, 5122, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5123, 1, 0, 0, 0, 5122, 5120, 1, 0, 0, 0, 5123, 5124, 5, 3, 0, 0, 5124, 435, 1, 0, 0, 0, 5125, 5126, 3, 822, 411, 0, 5126, 5133, 5, 10, 0, 0, 5127, 5134, 5, 407, 0, 0, 5128, 5134, 3, 382, 191, 0, 5129, 5134, 3, 832, 416, 0, 5130, 5134, 3, 722, 361, 0, 5131, 5134, 3, 196, 98, 0, 5132, 5134, 3, 806, 403, 0, 5133, 5127, 1, 0, 0, 0, 5133, 5128, 1, 0, 0, 0, 5133, 5129, 1, 0, 0, 0, 5133, 5130, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5133, 5132, 1, 0, 0, 0, 5134, 437, 1, 0, 0, 0, 5135, 5136, 5, 138, 0, 0, 5136, 5137, 5, 360, 0, 0, 5137, 5138, 3, 310, 155, 0, 5138, 5139, 5, 333, 0, 0, 5139, 5140, 3, 434, 217, 0, 5140, 439, 1, 0, 0, 0, 5141, 5142, 5, 138, 0, 0, 5142, 5143, 5, 278, 0, 0, 5143, 5144, 7, 32, 0, 0, 5144, 5145, 3, 310, 155, 0, 5145, 5146, 3, 164, 82, 0, 5146, 5147, 5, 282, 0, 0, 5147, 5148, 5, 94, 0, 0, 5148, 5149, 3, 812, 406, 0, 5149, 5216, 1, 0, 0, 0, 5150, 5177, 5, 138, 0, 0, 5151, 5152, 5, 136, 0, 0, 5152, 5178, 3, 388, 194, 0, 5153, 5154, 5, 175, 0, 0, 5154, 5178, 3, 784, 392, 0, 5155, 5156, 5, 211, 0, 0, 5156, 5178, 3, 376, 188, 0, 5157, 5159, 5, 295, 0, 0, 5158, 5157, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5160, 1, 0, 0, 0, 5160, 5161, 5, 247, 0, 0, 5161, 5178, 3, 816, 408, 0, 5162, 5163, 5, 248, 0, 0, 5163, 5164, 5, 274, 0, 0, 5164, 5178, 3, 196, 98, 0, 5165, 5166, 5, 248, 0, 0, 5166, 5167, 5, 274, 0, 0, 5167, 5178, 3, 196, 98, 0, 5168, 5169, 5, 278, 0, 0, 5169, 5178, 3, 410, 205, 0, 5170, 5171, 5, 296, 0, 0, 5171, 5178, 3, 372, 186, 0, 5172, 5173, 5, 442, 0, 0, 5173, 5178, 3, 368, 184, 0, 5174, 5175, 5, 323, 0, 0, 5175, 5178, 3, 786, 393, 0, 5176, 5178, 3, 170, 85, 0, 5177, 5151, 1, 0, 0, 0, 5177, 5153, 1, 0, 0, 0, 5177, 5155, 1, 0, 0, 0, 5177, 5158, 1, 0, 0, 0, 5177, 5162, 1, 0, 0, 0, 5177, 5165, 1, 0, 0, 0, 5177, 5168, 1, 0, 0, 0, 5177, 5170, 1, 0, 0, 0, 5177, 5172, 1, 0, 0, 0, 5177, 5174, 1, 0, 0, 0, 5177, 5176, 1, 0, 0, 0, 5178, 5179, 1, 0, 0, 0, 5179, 5180, 5, 282, 0, 0, 5180, 5181, 5, 94, 0, 0, 5181, 5182, 3, 812, 406, 0, 5182, 5216, 1, 0, 0, 0, 5183, 5192, 5, 138, 0, 0, 5184, 5185, 5, 355, 0, 0, 5185, 5186, 5, 325, 0, 0, 5186, 5193, 7, 64, 0, 0, 5187, 5193, 5, 108, 0, 0, 5188, 5193, 5, 168, 0, 0, 5189, 5193, 5, 189, 0, 0, 5190, 5193, 5, 360, 0, 0, 5191, 5193, 5, 342, 0, 0, 5192, 5184, 1, 0, 0, 0, 5192, 5187, 1, 0, 0, 0, 5192, 5188, 1, 0, 0, 0, 5192, 5189, 1, 0, 0, 0, 5192, 5190, 1, 0, 0, 0, 5192, 5191, 1, 0, 0, 0, 5193, 5194, 1, 0, 0, 0, 5194, 5195, 3, 310, 155, 0, 5195, 5196, 5, 282, 0, 0, 5196, 5197, 5, 94, 0, 0, 5197, 5198, 3, 812, 406, 0, 5198, 5216, 1, 0, 0, 0, 5199, 5208, 5, 138, 0, 0, 5200, 5209, 5, 331, 0, 0, 5201, 5202, 5, 63, 0, 0, 5202, 5203, 5, 174, 0, 0, 5203, 5209, 5, 381, 0, 0, 5204, 5205, 5, 198, 0, 0, 5205, 5209, 5, 357, 0, 0, 5206, 5209, 5, 452, 0, 0, 5207, 5209, 5, 451, 0, 0, 5208, 5200, 1, 0, 0, 0, 5208, 5201, 1, 0, 0, 0, 5208, 5204, 1, 0, 0, 0, 5208, 5206, 1, 0, 0, 0, 5208, 5207, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5211, 3, 816, 408, 0, 5211, 5212, 5, 282, 0, 0, 5212, 5213, 5, 94, 0, 0, 5213, 5214, 3, 812, 406, 0, 5214, 5216, 1, 0, 0, 0, 5215, 5141, 1, 0, 0, 0, 5215, 5150, 1, 0, 0, 0, 5215, 5183, 1, 0, 0, 0, 5215, 5199, 1, 0, 0, 0, 5216, 441, 1, 0, 0, 0, 5217, 5218, 5, 46, 0, 0, 5218, 5219, 5, 452, 0, 0, 5219, 5226, 3, 816, 408, 0, 5220, 5221, 5, 62, 0, 0, 5221, 5222, 5, 92, 0, 0, 5222, 5227, 3, 622, 311, 0, 5223, 5224, 5, 62, 0, 0, 5224, 5225, 5, 30, 0, 0, 5225, 5227, 5, 350, 0, 0, 5226, 5220, 1, 0, 0, 0, 5226, 5223, 1, 0, 0, 0, 5226, 5227, 1, 0, 0, 0, 5227, 5229, 1, 0, 0, 0, 5228, 5230, 3, 394, 197, 0, 5229, 5228, 1, 0, 0, 0, 5229, 5230, 1, 0, 0, 0, 5230, 443, 1, 0, 0, 0, 5231, 5232, 5, 138, 0, 0, 5232, 5233, 5, 452, 0, 0, 5233, 5251, 3, 816, 408, 0, 5234, 5235, 5, 282, 0, 0, 5235, 5236, 5, 94, 0, 0, 5236, 5252, 3, 812, 406, 0, 5237, 5238, 5, 333, 0, 0, 5238, 5252, 3, 278, 139, 0, 5239, 5240, 5, 309, 0, 0, 5240, 5241, 5, 94, 0, 0, 5241, 5252, 3, 816, 408, 0, 5242, 5243, 7, 35, 0, 0, 5243, 5248, 3, 620, 310, 0, 5244, 5245, 5, 6, 0, 0, 5245, 5247, 3, 620, 310, 0, 5246, 5244, 1, 0, 0, 0, 5247, 5250, 1, 0, 0, 0, 5248, 5246, 1, 0, 0, 0, 5248, 5249, 1, 0, 0, 0, 5249, 5252, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5251, 5234, 1, 0, 0, 0, 5251, 5237, 1, 0, 0, 0, 5251, 5239, 1, 0, 0, 0, 5251, 5242, 1, 0, 0, 0, 5252, 445, 1, 0, 0, 0, 5253, 5254, 5, 46, 0, 0, 5254, 5255, 5, 451, 0, 0, 5255, 5256, 3, 816, 408, 0, 5256, 5257, 5, 164, 0, 0, 5257, 5258, 3, 806, 403, 0, 5258, 5259, 5, 452, 0, 0, 5259, 5264, 3, 822, 411, 0, 5260, 5261, 5, 6, 0, 0, 5261, 5263, 3, 822, 411, 0, 5262, 5260, 1, 0, 0, 0, 5263, 5266, 1, 0, 0, 0, 5264, 5262, 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 5268, 1, 0, 0, 0, 5266, 5264, 1, 0, 0, 0, 5267, 5269, 3, 394, 197, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 447, 1, 0, 0, 0, 5270, 5271, 5, 138, 0, 0, 5271, 5272, 5, 451, 0, 0, 5272, 5273, 3, 816, 408, 0, 5273, 5274, 5, 333, 0, 0, 5274, 5275, 3, 278, 139, 0, 5275, 5327, 1, 0, 0, 0, 5276, 5277, 5, 138, 0, 0, 5277, 5278, 5, 451, 0, 0, 5278, 5279, 3, 816, 408, 0, 5279, 5280, 5, 164, 0, 0, 5280, 5281, 3, 806, 403, 0, 5281, 5327, 1, 0, 0, 0, 5282, 5283, 5, 138, 0, 0, 5283, 5284, 5, 451, 0, 0, 5284, 5285, 3, 816, 408, 0, 5285, 5286, 5, 305, 0, 0, 5286, 5288, 5, 452, 0, 0, 5287, 5289, 3, 394, 197, 0, 5288, 5287, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5327, 1, 0, 0, 0, 5290, 5291, 5, 138, 0, 0, 5291, 5292, 5, 451, 0, 0, 5292, 5293, 3, 816, 408, 0, 5293, 5294, 7, 35, 0, 0, 5294, 5295, 5, 452, 0, 0, 5295, 5300, 3, 822, 411, 0, 5296, 5297, 5, 6, 0, 0, 5297, 5299, 3, 822, 411, 0, 5298, 5296, 1, 0, 0, 0, 5299, 5302, 1, 0, 0, 0, 5300, 5298, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5304, 1, 0, 0, 0, 5302, 5300, 1, 0, 0, 0, 5303, 5305, 3, 394, 197, 0, 5304, 5303, 1, 0, 0, 0, 5304, 5305, 1, 0, 0, 0, 5305, 5327, 1, 0, 0, 0, 5306, 5307, 5, 138, 0, 0, 5307, 5308, 5, 451, 0, 0, 5308, 5309, 3, 816, 408, 0, 5309, 5310, 7, 65, 0, 0, 5310, 5327, 1, 0, 0, 0, 5311, 5312, 5, 138, 0, 0, 5312, 5313, 5, 451, 0, 0, 5313, 5314, 3, 816, 408, 0, 5314, 5315, 5, 465, 0, 0, 5315, 5316, 5, 2, 0, 0, 5316, 5317, 3, 284, 142, 0, 5317, 5318, 5, 3, 0, 0, 5318, 5327, 1, 0, 0, 0, 5319, 5320, 5, 138, 0, 0, 5320, 5321, 5, 451, 0, 0, 5321, 5322, 3, 816, 408, 0, 5322, 5323, 5, 282, 0, 0, 5323, 5324, 5, 94, 0, 0, 5324, 5325, 3, 812, 406, 0, 5325, 5327, 1, 0, 0, 0, 5326, 5270, 1, 0, 0, 0, 5326, 5276, 1, 0, 0, 0, 5326, 5282, 1, 0, 0, 0, 5326, 5290, 1, 0, 0, 0, 5326, 5306, 1, 0, 0, 0, 5326, 5311, 1, 0, 0, 0, 5326, 5319, 1, 0, 0, 0, 5327, 449, 1, 0, 0, 0, 5328, 5330, 5, 46, 0, 0, 5329, 5331, 3, 360, 180, 0, 5330, 5329, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 5332, 1, 0, 0, 0, 5332, 5333, 5, 321, 0, 0, 5333, 5334, 3, 816, 408, 0, 5334, 5335, 5, 36, 0, 0, 5335, 5336, 5, 80, 0, 0, 5336, 5337, 7, 66, 0, 0, 5337, 5338, 5, 94, 0, 0, 5338, 5340, 3, 776, 388, 0, 5339, 5341, 3, 632, 316, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5344, 5, 57, 0, 0, 5343, 5345, 7, 67, 0, 0, 5344, 5343, 1, 0, 0, 0, 5344, 5345, 1, 0, 0, 0, 5345, 5362, 1, 0, 0, 0, 5346, 5363, 5, 270, 0, 0, 5347, 5363, 3, 452, 226, 0, 5348, 5350, 5, 2, 0, 0, 5349, 5351, 3, 452, 226, 0, 5350, 5349, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 5358, 1, 0, 0, 0, 5352, 5354, 5, 7, 0, 0, 5353, 5355, 3, 452, 226, 0, 5354, 5353, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5357, 1, 0, 0, 0, 5356, 5352, 1, 0, 0, 0, 5357, 5360, 1, 0, 0, 0, 5358, 5356, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5361, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5363, 5, 3, 0, 0, 5362, 5346, 1, 0, 0, 0, 5362, 5347, 1, 0, 0, 0, 5362, 5348, 1, 0, 0, 0, 5363, 451, 1, 0, 0, 0, 5364, 5370, 3, 554, 277, 0, 5365, 5370, 3, 532, 266, 0, 5366, 5370, 3, 546, 273, 0, 5367, 5370, 3, 542, 271, 0, 5368, 5370, 3, 454, 227, 0, 5369, 5364, 1, 0, 0, 0, 5369, 5365, 1, 0, 0, 0, 5369, 5366, 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5368, 1, 0, 0, 0, 5370, 453, 1, 0, 0, 0, 5371, 5372, 5, 271, 0, 0, 5372, 5374, 3, 816, 408, 0, 5373, 5375, 3, 456, 228, 0, 5374, 5373, 1, 0, 0, 0, 5374, 5375, 1, 0, 0, 0, 5375, 455, 1, 0, 0, 0, 5376, 5377, 5, 6, 0, 0, 5377, 5378, 3, 806, 403, 0, 5378, 457, 1, 0, 0, 0, 5379, 5380, 5, 252, 0, 0, 5380, 5381, 3, 816, 408, 0, 5381, 459, 1, 0, 0, 0, 5382, 5385, 5, 366, 0, 0, 5383, 5386, 3, 816, 408, 0, 5384, 5386, 5, 9, 0, 0, 5385, 5383, 1, 0, 0, 0, 5385, 5384, 1, 0, 0, 0, 5386, 461, 1, 0, 0, 0, 5387, 5389, 5, 146, 0, 0, 5388, 5390, 3, 464, 232, 0, 5389, 5388, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 5392, 1, 0, 0, 0, 5391, 5393, 3, 468, 234, 0, 5392, 5391, 1, 0, 0, 0, 5392, 5393, 1, 0, 0, 0, 5393, 5433, 1, 0, 0, 0, 5394, 5395, 5, 340, 0, 0, 5395, 5397, 5, 356, 0, 0, 5396, 5398, 3, 468, 234, 0, 5397, 5396, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5433, 1, 0, 0, 0, 5399, 5400, 5, 322, 0, 0, 5400, 5433, 3, 816, 408, 0, 5401, 5403, 5, 308, 0, 0, 5402, 5404, 5, 322, 0, 0, 5403, 5402, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5433, 3, 816, 408, 0, 5406, 5407, 5, 290, 0, 0, 5407, 5408, 5, 356, 0, 0, 5408, 5433, 3, 806, 403, 0, 5409, 5410, 7, 68, 0, 0, 5410, 5411, 5, 291, 0, 0, 5411, 5433, 3, 806, 403, 0, 5412, 5414, 7, 69, 0, 0, 5413, 5415, 3, 464, 232, 0, 5414, 5413, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5421, 1, 0, 0, 0, 5416, 5418, 5, 33, 0, 0, 5417, 5419, 5, 269, 0, 0, 5418, 5417, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 5422, 5, 153, 0, 0, 5421, 5416, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5433, 1, 0, 0, 0, 5423, 5425, 5, 319, 0, 0, 5424, 5426, 3, 464, 232, 0, 5425, 5424, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5429, 5, 94, 0, 0, 5428, 5430, 5, 322, 0, 0, 5429, 5428, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5433, 3, 816, 408, 0, 5432, 5387, 1, 0, 0, 0, 5432, 5394, 1, 0, 0, 0, 5432, 5399, 1, 0, 0, 0, 5432, 5401, 1, 0, 0, 0, 5432, 5406, 1, 0, 0, 0, 5432, 5409, 1, 0, 0, 0, 5432, 5412, 1, 0, 0, 0, 5432, 5423, 1, 0, 0, 0, 5433, 463, 1, 0, 0, 0, 5434, 5435, 7, 70, 0, 0, 5435, 465, 1, 0, 0, 0, 5436, 5437, 5, 244, 0, 0, 5437, 5438, 5, 251, 0, 0, 5438, 5446, 3, 50, 25, 0, 5439, 5440, 5, 300, 0, 0, 5440, 5446, 7, 71, 0, 0, 5441, 5443, 5, 77, 0, 0, 5442, 5441, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5446, 5, 54, 0, 0, 5445, 5436, 1, 0, 0, 0, 5445, 5439, 1, 0, 0, 0, 5445, 5442, 1, 0, 0, 0, 5446, 467, 1, 0, 0, 0, 5447, 5454, 3, 466, 233, 0, 5448, 5450, 5, 6, 0, 0, 5449, 5448, 1, 0, 0, 0, 5449, 5450, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5453, 3, 466, 233, 0, 5452, 5449, 1, 0, 0, 0, 5453, 5456, 1, 0, 0, 0, 5454, 5452, 1, 0, 0, 0, 5454, 5455, 1, 0, 0, 0, 5455, 469, 1, 0, 0, 0, 5456, 5454, 1, 0, 0, 0, 5457, 5460, 5, 46, 0, 0, 5458, 5459, 5, 82, 0, 0, 5459, 5461, 5, 311, 0, 0, 5460, 5458, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5463, 1, 0, 0, 0, 5462, 5464, 3, 116, 58, 0, 5463, 5462, 1, 0, 0, 0, 5463, 5464, 1, 0, 0, 0, 5464, 5480, 1, 0, 0, 0, 5465, 5466, 5, 376, 0, 0, 5466, 5468, 3, 772, 386, 0, 5467, 5469, 3, 140, 70, 0, 5468, 5467, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 1, 0, 0, 0, 5470, 5472, 3, 94, 47, 0, 5471, 5470, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5481, 1, 0, 0, 0, 5473, 5474, 5, 303, 0, 0, 5474, 5475, 5, 376, 0, 0, 5475, 5476, 3, 772, 386, 0, 5476, 5478, 3, 138, 69, 0, 5477, 5479, 3, 94, 47, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5481, 1, 0, 0, 0, 5480, 5465, 1, 0, 0, 0, 5480, 5473, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5483, 5, 36, 0, 0, 5483, 5490, 3, 554, 277, 0, 5484, 5486, 5, 105, 0, 0, 5485, 5487, 7, 72, 0, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5489, 5, 42, 0, 0, 5489, 5491, 5, 279, 0, 0, 5490, 5484, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 471, 1, 0, 0, 0, 5492, 5493, 5, 253, 0, 0, 5493, 5494, 3, 806, 403, 0, 5494, 473, 1, 0, 0, 0, 5495, 5496, 5, 46, 0, 0, 5496, 5497, 5, 175, 0, 0, 5497, 5499, 3, 782, 391, 0, 5498, 5500, 5, 105, 0, 0, 5499, 5498, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5506, 1, 0, 0, 0, 5501, 5503, 3, 476, 238, 0, 5502, 5501, 1, 0, 0, 0, 5503, 5504, 1, 0, 0, 0, 5504, 5502, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5507, 1, 0, 0, 0, 5506, 5502, 1, 0, 0, 0, 5506, 5507, 1, 0, 0, 0, 5507, 475, 1, 0, 0, 0, 5508, 5509, 5, 164, 0, 0, 5509, 5517, 5, 74, 0, 0, 5510, 5517, 5, 194, 0, 0, 5511, 5517, 5, 255, 0, 0, 5512, 5517, 5, 282, 0, 0, 5513, 5517, 5, 351, 0, 0, 5514, 5517, 5, 353, 0, 0, 5515, 5517, 3, 824, 412, 0, 5516, 5508, 1, 0, 0, 0, 5516, 5510, 1, 0, 0, 0, 5516, 5511, 1, 0, 0, 0, 5516, 5512, 1, 0, 0, 0, 5516, 5513, 1, 0, 0, 0, 5516, 5514, 1, 0, 0, 0, 5516, 5515, 1, 0, 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5520, 5, 10, 0, 0, 5519, 5518, 1, 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5524, 1, 0, 0, 0, 5521, 5525, 3, 810, 405, 0, 5522, 5525, 3, 54, 27, 0, 5523, 5525, 5, 53, 0, 0, 5524, 5521, 1, 0, 0, 0, 5524, 5522, 1, 0, 0, 0, 5524, 5523, 1, 0, 0, 0, 5525, 477, 1, 0, 0, 0, 5526, 5527, 5, 138, 0, 0, 5527, 5528, 5, 175, 0, 0, 5528, 5544, 3, 784, 392, 0, 5529, 5530, 5, 333, 0, 0, 5530, 5531, 5, 351, 0, 0, 5531, 5533, 3, 766, 383, 0, 5532, 5529, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5545, 1, 0, 0, 0, 5534, 5536, 5, 105, 0, 0, 5535, 5534, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5538, 1, 0, 0, 0, 5537, 5539, 3, 476, 238, 0, 5538, 5537, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5538, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5543, 1, 0, 0, 0, 5542, 5535, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5545, 1, 0, 0, 0, 5544, 5532, 1, 0, 0, 0, 5544, 5542, 1, 0, 0, 0, 5545, 479, 1, 0, 0, 0, 5546, 5547, 5, 138, 0, 0, 5547, 5548, 5, 175, 0, 0, 5548, 5550, 3, 784, 392, 0, 5549, 5551, 3, 64, 32, 0, 5550, 5549, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 481, 1, 0, 0, 0, 5552, 5553, 5, 138, 0, 0, 5553, 5554, 5, 108, 0, 0, 5554, 5555, 3, 310, 155, 0, 5555, 5556, 5, 305, 0, 0, 5556, 5557, 5, 375, 0, 0, 5557, 483, 1, 0, 0, 0, 5558, 5559, 5, 138, 0, 0, 5559, 5560, 5, 349, 0, 0, 5560, 5561, 7, 16, 0, 0, 5561, 5562, 3, 40, 20, 0, 5562, 485, 1, 0, 0, 0, 5563, 5564, 5, 46, 0, 0, 5564, 5565, 5, 189, 0, 0, 5565, 5567, 3, 310, 155, 0, 5566, 5568, 5, 36, 0, 0, 5567, 5566, 1, 0, 0, 0, 5567, 5568, 1, 0, 0, 0, 5568, 5569, 1, 0, 0, 0, 5569, 5573, 3, 646, 323, 0, 5570, 5572, 3, 128, 64, 0, 5571, 5570, 1, 0, 0, 0, 5572, 5575, 1, 0, 0, 0, 5573, 5571, 1, 0, 0, 0, 5573, 5574, 1, 0, 0, 0, 5574, 487, 1, 0, 0, 0, 5575, 5573, 1, 0, 0, 0, 5576, 5577, 5, 138, 0, 0, 5577, 5578, 5, 189, 0, 0, 5578, 5601, 3, 310, 155, 0, 5579, 5602, 3, 86, 43, 0, 5580, 5581, 7, 15, 0, 0, 5581, 5582, 5, 77, 0, 0, 5582, 5602, 5, 78, 0, 0, 5583, 5586, 5, 133, 0, 0, 5584, 5585, 5, 45, 0, 0, 5585, 5587, 3, 816, 408, 0, 5586, 5584, 1, 0, 0, 0, 5586, 5587, 1, 0, 0, 0, 5587, 5588, 1, 0, 0, 0, 5588, 5602, 3, 136, 68, 0, 5589, 5590, 5, 191, 0, 0, 5590, 5592, 5, 45, 0, 0, 5591, 5593, 3, 416, 208, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5596, 3, 816, 408, 0, 5595, 5597, 3, 88, 44, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5602, 1, 0, 0, 0, 5598, 5599, 5, 372, 0, 0, 5599, 5600, 5, 45, 0, 0, 5600, 5602, 3, 816, 408, 0, 5601, 5579, 1, 0, 0, 0, 5601, 5580, 1, 0, 0, 0, 5601, 5583, 1, 0, 0, 0, 5601, 5589, 1, 0, 0, 0, 5601, 5598, 1, 0, 0, 0, 5602, 489, 1, 0, 0, 0, 5603, 5604, 5, 138, 0, 0, 5604, 5605, 5, 355, 0, 0, 5605, 5606, 5, 325, 0, 0, 5606, 5607, 5, 185, 0, 0, 5607, 5608, 3, 310, 155, 0, 5608, 5609, 3, 278, 139, 0, 5609, 491, 1, 0, 0, 0, 5610, 5611, 5, 138, 0, 0, 5611, 5612, 5, 355, 0, 0, 5612, 5613, 5, 325, 0, 0, 5613, 5614, 5, 163, 0, 0, 5614, 5615, 3, 310, 155, 0, 5615, 5616, 7, 73, 0, 0, 5616, 5617, 5, 257, 0, 0, 5617, 5618, 5, 62, 0, 0, 5618, 5619, 3, 780, 390, 0, 5619, 5620, 5, 105, 0, 0, 5620, 5621, 3, 308, 154, 0, 5621, 5652, 1, 0, 0, 0, 5622, 5623, 5, 138, 0, 0, 5623, 5624, 5, 355, 0, 0, 5624, 5625, 5, 325, 0, 0, 5625, 5626, 5, 163, 0, 0, 5626, 5627, 3, 310, 155, 0, 5627, 5628, 5, 138, 0, 0, 5628, 5631, 5, 257, 0, 0, 5629, 5630, 5, 62, 0, 0, 5630, 5632, 3, 780, 390, 0, 5631, 5629, 1, 0, 0, 0, 5631, 5632, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5634, 5, 311, 0, 0, 5634, 5635, 3, 310, 155, 0, 5635, 5636, 5, 105, 0, 0, 5636, 5637, 3, 310, 155, 0, 5637, 5652, 1, 0, 0, 0, 5638, 5639, 5, 138, 0, 0, 5639, 5640, 5, 355, 0, 0, 5640, 5641, 5, 325, 0, 0, 5641, 5642, 5, 163, 0, 0, 5642, 5643, 3, 310, 155, 0, 5643, 5644, 5, 191, 0, 0, 5644, 5646, 5, 257, 0, 0, 5645, 5647, 3, 416, 208, 0, 5646, 5645, 1, 0, 0, 0, 5646, 5647, 1, 0, 0, 0, 5647, 5648, 1, 0, 0, 0, 5648, 5649, 5, 62, 0, 0, 5649, 5650, 3, 780, 390, 0, 5650, 5652, 1, 0, 0, 0, 5651, 5610, 1, 0, 0, 0, 5651, 5622, 1, 0, 0, 0, 5651, 5638, 1, 0, 0, 0, 5652, 493, 1, 0, 0, 0, 5653, 5655, 5, 46, 0, 0, 5654, 5656, 5, 53, 0, 0, 5655, 5654, 1, 0, 0, 0, 5655, 5656, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5658, 5, 168, 0, 0, 5658, 5659, 3, 310, 155, 0, 5659, 5660, 5, 62, 0, 0, 5660, 5661, 3, 806, 403, 0, 5661, 5662, 5, 94, 0, 0, 5662, 5663, 3, 806, 403, 0, 5663, 5664, 5, 64, 0, 0, 5664, 5665, 3, 310, 155, 0, 5665, 495, 1, 0, 0, 0, 5666, 5668, 5, 158, 0, 0, 5667, 5669, 3, 508, 254, 0, 5668, 5667, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5674, 1, 0, 0, 0, 5670, 5672, 3, 770, 385, 0, 5671, 5673, 3, 164, 82, 0, 5672, 5671, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5675, 1, 0, 0, 0, 5674, 5670, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5692, 1, 0, 0, 0, 5676, 5677, 5, 158, 0, 0, 5677, 5678, 5, 2, 0, 0, 5678, 5683, 3, 508, 254, 0, 5679, 5680, 5, 6, 0, 0, 5680, 5682, 3, 508, 254, 0, 5681, 5679, 1, 0, 0, 0, 5682, 5685, 1, 0, 0, 0, 5683, 5681, 1, 0, 0, 0, 5683, 5684, 1, 0, 0, 0, 5684, 5686, 1, 0, 0, 0, 5685, 5683, 1, 0, 0, 0, 5686, 5687, 5, 3, 0, 0, 5687, 5689, 3, 770, 385, 0, 5688, 5690, 3, 164, 82, 0, 5689, 5688, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 5692, 1, 0, 0, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5676, 1, 0, 0, 0, 5692, 497, 1, 0, 0, 0, 5693, 5709, 5, 370, 0, 0, 5694, 5696, 5, 113, 0, 0, 5695, 5694, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5698, 1, 0, 0, 0, 5697, 5699, 5, 112, 0, 0, 5698, 5697, 1, 0, 0, 0, 5698, 5699, 1, 0, 0, 0, 5699, 5701, 1, 0, 0, 0, 5700, 5702, 3, 508, 254, 0, 5701, 5700, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5704, 1, 0, 0, 0, 5703, 5705, 3, 502, 251, 0, 5704, 5703, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5710, 1, 0, 0, 0, 5706, 5708, 3, 518, 259, 0, 5707, 5706, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 5710, 1, 0, 0, 0, 5709, 5695, 1, 0, 0, 0, 5709, 5707, 1, 0, 0, 0, 5710, 5712, 1, 0, 0, 0, 5711, 5713, 3, 512, 256, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 499, 1, 0, 0, 0, 5714, 5729, 3, 502, 251, 0, 5715, 5717, 3, 508, 254, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5730, 1, 0, 0, 0, 5718, 5719, 5, 2, 0, 0, 5719, 5724, 3, 506, 253, 0, 5720, 5721, 5, 6, 0, 0, 5721, 5723, 3, 506, 253, 0, 5722, 5720, 1, 0, 0, 0, 5723, 5726, 1, 0, 0, 0, 5724, 5722, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5727, 1, 0, 0, 0, 5726, 5724, 1, 0, 0, 0, 5727, 5728, 5, 3, 0, 0, 5728, 5730, 1, 0, 0, 0, 5729, 5716, 1, 0, 0, 0, 5729, 5718, 1, 0, 0, 0, 5730, 5732, 1, 0, 0, 0, 5731, 5733, 3, 512, 256, 0, 5732, 5731, 1, 0, 0, 0, 5732, 5733, 1, 0, 0, 0, 5733, 501, 1, 0, 0, 0, 5734, 5735, 7, 74, 0, 0, 5735, 503, 1, 0, 0, 0, 5736, 5739, 3, 820, 410, 0, 5737, 5739, 3, 502, 251, 0, 5738, 5736, 1, 0, 0, 0, 5738, 5737, 1, 0, 0, 0, 5739, 5742, 1, 0, 0, 0, 5740, 5743, 3, 54, 27, 0, 5741, 5743, 3, 196, 98, 0, 5742, 5740, 1, 0, 0, 0, 5742, 5741, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 505, 1, 0, 0, 0, 5744, 5746, 7, 75, 0, 0, 5745, 5747, 7, 76, 0, 0, 5746, 5745, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 5754, 1, 0, 0, 0, 5748, 5751, 5, 548, 0, 0, 5749, 5752, 3, 196, 98, 0, 5750, 5752, 3, 806, 403, 0, 5751, 5749, 1, 0, 0, 0, 5751, 5750, 1, 0, 0, 0, 5752, 5754, 1, 0, 0, 0, 5753, 5744, 1, 0, 0, 0, 5753, 5748, 1, 0, 0, 0, 5754, 507, 1, 0, 0, 0, 5755, 5757, 5, 128, 0, 0, 5756, 5758, 7, 76, 0, 0, 5757, 5756, 1, 0, 0, 0, 5757, 5758, 1, 0, 0, 0, 5758, 509, 1, 0, 0, 0, 5759, 5761, 3, 770, 385, 0, 5760, 5762, 3, 138, 69, 0, 5761, 5760, 1, 0, 0, 0, 5761, 5762, 1, 0, 0, 0, 5762, 511, 1, 0, 0, 0, 5763, 5768, 3, 510, 255, 0, 5764, 5765, 5, 6, 0, 0, 5765, 5767, 3, 510, 255, 0, 5766, 5764, 1, 0, 0, 0, 5767, 5770, 1, 0, 0, 0, 5768, 5766, 1, 0, 0, 0, 5768, 5769, 1, 0, 0, 0, 5769, 513, 1, 0, 0, 0, 5770, 5768, 1, 0, 0, 0, 5771, 5782, 5, 203, 0, 0, 5772, 5783, 3, 518, 259, 0, 5773, 5775, 5, 128, 0, 0, 5774, 5773, 1, 0, 0, 0, 5774, 5775, 1, 0, 0, 0, 5775, 5783, 1, 0, 0, 0, 5776, 5778, 3, 502, 251, 0, 5777, 5779, 3, 508, 254, 0, 5778, 5777, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 5781, 1, 0, 0, 0, 5780, 5776, 1, 0, 0, 0, 5780, 5781, 1, 0, 0, 0, 5781, 5783, 1, 0, 0, 0, 5782, 5772, 1, 0, 0, 0, 5782, 5774, 1, 0, 0, 0, 5782, 5780, 1, 0, 0, 0, 5783, 5784, 1, 0, 0, 0, 5784, 5785, 3, 516, 258, 0, 5785, 515, 1, 0, 0, 0, 5786, 5796, 3, 554, 277, 0, 5787, 5796, 3, 532, 266, 0, 5788, 5796, 3, 546, 273, 0, 5789, 5796, 3, 542, 271, 0, 5790, 5796, 3, 552, 276, 0, 5791, 5796, 3, 180, 90, 0, 5792, 5796, 3, 186, 93, 0, 5793, 5796, 3, 188, 94, 0, 5794, 5796, 3, 526, 263, 0, 5795, 5786, 1, 0, 0, 0, 5795, 5787, 1, 0, 0, 0, 5795, 5788, 1, 0, 0, 0, 5795, 5789, 1, 0, 0, 0, 5795, 5790, 1, 0, 0, 0, 5795, 5791, 1, 0, 0, 0, 5795, 5792, 1, 0, 0, 0, 5795, 5793, 1, 0, 0, 0, 5795, 5794, 1, 0, 0, 0, 5796, 517, 1, 0, 0, 0, 5797, 5798, 5, 2, 0, 0, 5798, 5803, 3, 504, 252, 0, 5799, 5800, 5, 6, 0, 0, 5800, 5802, 3, 504, 252, 0, 5801, 5799, 1, 0, 0, 0, 5802, 5805, 1, 0, 0, 0, 5803, 5801, 1, 0, 0, 0, 5803, 5804, 1, 0, 0, 0, 5804, 5806, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5806, 5807, 5, 3, 0, 0, 5807, 519, 1, 0, 0, 0, 5808, 5809, 5, 290, 0, 0, 5809, 5811, 3, 816, 408, 0, 5810, 5812, 3, 522, 261, 0, 5811, 5810, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 5813, 1, 0, 0, 0, 5813, 5814, 5, 36, 0, 0, 5814, 5815, 3, 524, 262, 0, 5815, 521, 1, 0, 0, 0, 5816, 5817, 5, 2, 0, 0, 5817, 5822, 3, 646, 323, 0, 5818, 5819, 5, 6, 0, 0, 5819, 5821, 3, 646, 323, 0, 5820, 5818, 1, 0, 0, 0, 5821, 5824, 1, 0, 0, 0, 5822, 5820, 1, 0, 0, 0, 5822, 5823, 1, 0, 0, 0, 5823, 5825, 1, 0, 0, 0, 5824, 5822, 1, 0, 0, 0, 5825, 5826, 5, 3, 0, 0, 5826, 523, 1, 0, 0, 0, 5827, 5833, 3, 554, 277, 0, 5828, 5833, 3, 532, 266, 0, 5829, 5833, 3, 546, 273, 0, 5830, 5833, 3, 542, 271, 0, 5831, 5833, 3, 898, 449, 0, 5832, 5827, 1, 0, 0, 0, 5832, 5828, 1, 0, 0, 0, 5832, 5829, 1, 0, 0, 0, 5832, 5830, 1, 0, 0, 0, 5832, 5831, 1, 0, 0, 0, 5833, 525, 1, 0, 0, 0, 5834, 5835, 5, 202, 0, 0, 5835, 5837, 3, 816, 408, 0, 5836, 5838, 3, 528, 264, 0, 5837, 5836, 1, 0, 0, 0, 5837, 5838, 1, 0, 0, 0, 5838, 5858, 1, 0, 0, 0, 5839, 5841, 5, 46, 0, 0, 5840, 5842, 3, 116, 58, 0, 5841, 5840, 1, 0, 0, 0, 5841, 5842, 1, 0, 0, 0, 5842, 5843, 1, 0, 0, 0, 5843, 5845, 5, 92, 0, 0, 5844, 5846, 3, 288, 144, 0, 5845, 5844, 1, 0, 0, 0, 5845, 5846, 1, 0, 0, 0, 5846, 5847, 1, 0, 0, 0, 5847, 5848, 3, 182, 91, 0, 5848, 5849, 5, 36, 0, 0, 5849, 5850, 5, 202, 0, 0, 5850, 5852, 3, 816, 408, 0, 5851, 5853, 3, 528, 264, 0, 5852, 5851, 1, 0, 0, 0, 5852, 5853, 1, 0, 0, 0, 5853, 5855, 1, 0, 0, 0, 5854, 5856, 3, 184, 92, 0, 5855, 5854, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5858, 1, 0, 0, 0, 5857, 5834, 1, 0, 0, 0, 5857, 5839, 1, 0, 0, 0, 5858, 527, 1, 0, 0, 0, 5859, 5860, 5, 2, 0, 0, 5860, 5861, 3, 726, 363, 0, 5861, 5862, 5, 3, 0, 0, 5862, 529, 1, 0, 0, 0, 5863, 5865, 5, 177, 0, 0, 5864, 5866, 5, 290, 0, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5869, 1, 0, 0, 0, 5867, 5870, 3, 816, 408, 0, 5868, 5870, 5, 30, 0, 0, 5869, 5867, 1, 0, 0, 0, 5869, 5868, 1, 0, 0, 0, 5870, 531, 1, 0, 0, 0, 5871, 5873, 3, 566, 283, 0, 5872, 5871, 1, 0, 0, 0, 5872, 5873, 1, 0, 0, 0, 5873, 5874, 1, 0, 0, 0, 5874, 5875, 5, 241, 0, 0, 5875, 5876, 5, 71, 0, 0, 5876, 5879, 3, 770, 385, 0, 5877, 5878, 5, 36, 0, 0, 5878, 5880, 3, 816, 408, 0, 5879, 5877, 1, 0, 0, 0, 5879, 5880, 1, 0, 0, 0, 5880, 5881, 1, 0, 0, 0, 5881, 5903, 3, 534, 267, 0, 5882, 5883, 5, 80, 0, 0, 5883, 5891, 5, 464, 0, 0, 5884, 5886, 3, 354, 177, 0, 5885, 5887, 3, 632, 316, 0, 5886, 5885, 1, 0, 0, 0, 5886, 5887, 1, 0, 0, 0, 5887, 5892, 1, 0, 0, 0, 5888, 5889, 5, 80, 0, 0, 5889, 5890, 5, 45, 0, 0, 5890, 5892, 3, 816, 408, 0, 5891, 5884, 1, 0, 0, 0, 5891, 5888, 1, 0, 0, 0, 5891, 5892, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5901, 5, 57, 0, 0, 5894, 5895, 5, 369, 0, 0, 5895, 5896, 5, 333, 0, 0, 5896, 5898, 3, 548, 274, 0, 5897, 5899, 3, 632, 316, 0, 5898, 5897, 1, 0, 0, 0, 5898, 5899, 1, 0, 0, 0, 5899, 5902, 1, 0, 0, 0, 5900, 5902, 5, 270, 0, 0, 5901, 5894, 1, 0, 0, 0, 5901, 5900, 1, 0, 0, 0, 5902, 5904, 1, 0, 0, 0, 5903, 5882, 1, 0, 0, 0, 5903, 5904, 1, 0, 0, 0, 5904, 5906, 1, 0, 0, 0, 5905, 5907, 3, 540, 270, 0, 5906, 5905, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 533, 1, 0, 0, 0, 5908, 5909, 5, 2, 0, 0, 5909, 5910, 3, 536, 268, 0, 5910, 5911, 5, 3, 0, 0, 5911, 5913, 1, 0, 0, 0, 5912, 5908, 1, 0, 0, 0, 5912, 5913, 1, 0, 0, 0, 5913, 5917, 1, 0, 0, 0, 5914, 5915, 5, 463, 0, 0, 5915, 5916, 7, 77, 0, 0, 5916, 5918, 5, 450, 0, 0, 5917, 5914, 1, 0, 0, 0, 5917, 5918, 1, 0, 0, 0, 5918, 5921, 1, 0, 0, 0, 5919, 5922, 3, 908, 454, 0, 5920, 5922, 3, 554, 277, 0, 5921, 5919, 1, 0, 0, 0, 5921, 5920, 1, 0, 0, 0, 5922, 535, 1, 0, 0, 0, 5923, 5928, 3, 538, 269, 0, 5924, 5925, 5, 6, 0, 0, 5925, 5927, 3, 538, 269, 0, 5926, 5924, 1, 0, 0, 0, 5927, 5930, 1, 0, 0, 0, 5928, 5926, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 537, 1, 0, 0, 0, 5930, 5928, 1, 0, 0, 0, 5931, 5932, 3, 796, 398, 0, 5932, 5933, 3, 750, 375, 0, 5933, 539, 1, 0, 0, 0, 5934, 5935, 5, 87, 0, 0, 5935, 5936, 3, 752, 376, 0, 5936, 541, 1, 0, 0, 0, 5937, 5939, 3, 566, 283, 0, 5938, 5937, 1, 0, 0, 0, 5938, 5939, 1, 0, 0, 0, 5939, 5940, 1, 0, 0, 0, 5940, 5941, 5, 182, 0, 0, 5941, 5942, 5, 64, 0, 0, 5942, 5945, 3, 624, 312, 0, 5943, 5944, 5, 100, 0, 0, 5944, 5946, 3, 606, 303, 0, 5945, 5943, 1, 0, 0, 0, 5945, 5946, 1, 0, 0, 0, 5946, 5948, 1, 0, 0, 0, 5947, 5949, 3, 634, 317, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5951, 1, 0, 0, 0, 5950, 5952, 3, 540, 270, 0, 5951, 5950, 1, 0, 0, 0, 5951, 5952, 1, 0, 0, 0, 5952, 543, 1, 0, 0, 0, 5953, 5955, 5, 256, 0, 0, 5954, 5956, 5, 92, 0, 0, 5955, 5954, 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 5957, 1, 0, 0, 0, 5957, 5972, 3, 622, 311, 0, 5958, 5969, 5, 68, 0, 0, 5959, 5960, 7, 78, 0, 0, 5960, 5970, 7, 79, 0, 0, 5961, 5966, 5, 334, 0, 0, 5962, 5963, 5, 369, 0, 0, 5963, 5967, 5, 201, 0, 0, 5964, 5965, 5, 414, 0, 0, 5965, 5967, 5, 201, 0, 0, 5966, 5962, 1, 0, 0, 0, 5966, 5964, 1, 0, 0, 0, 5966, 5967, 1, 0, 0, 0, 5967, 5970, 1, 0, 0, 0, 5968, 5970, 5, 201, 0, 0, 5969, 5959, 1, 0, 0, 0, 5969, 5961, 1, 0, 0, 0, 5969, 5968, 1, 0, 0, 0, 5970, 5971, 1, 0, 0, 0, 5971, 5973, 5, 263, 0, 0, 5972, 5958, 1, 0, 0, 0, 5972, 5973, 1, 0, 0, 0, 5973, 5975, 1, 0, 0, 0, 5974, 5976, 5, 272, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 545, 1, 0, 0, 0, 5977, 5979, 3, 566, 283, 0, 5978, 5977, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 5980, 1, 0, 0, 0, 5980, 5981, 5, 369, 0, 0, 5981, 5982, 3, 624, 312, 0, 5982, 5983, 5, 333, 0, 0, 5983, 5985, 3, 548, 274, 0, 5984, 5986, 3, 604, 302, 0, 5985, 5984, 1, 0, 0, 0, 5985, 5986, 1, 0, 0, 0, 5986, 5988, 1, 0, 0, 0, 5987, 5989, 3, 634, 317, 0, 5988, 5987, 1, 0, 0, 0, 5988, 5989, 1, 0, 0, 0, 5989, 5991, 1, 0, 0, 0, 5990, 5992, 3, 540, 270, 0, 5991, 5990, 1, 0, 0, 0, 5991, 5992, 1, 0, 0, 0, 5992, 547, 1, 0, 0, 0, 5993, 5998, 3, 550, 275, 0, 5994, 5995, 5, 6, 0, 0, 5995, 5997, 3, 550, 275, 0, 5996, 5994, 1, 0, 0, 0, 5997, 6000, 1, 0, 0, 0, 5998, 5996, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 549, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6001, 6002, 3, 538, 269, 0, 6002, 6003, 5, 10, 0, 0, 6003, 6004, 3, 668, 334, 0, 6004, 6020, 1, 0, 0, 0, 6005, 6006, 5, 2, 0, 0, 6006, 6007, 3, 536, 268, 0, 6007, 6008, 5, 3, 0, 0, 6008, 6017, 5, 10, 0, 0, 6009, 6011, 5, 414, 0, 0, 6010, 6009, 1, 0, 0, 0, 6010, 6011, 1, 0, 0, 0, 6011, 6012, 1, 0, 0, 0, 6012, 6018, 3, 668, 334, 0, 6013, 6014, 5, 2, 0, 0, 6014, 6015, 3, 560, 280, 0, 6015, 6016, 5, 3, 0, 0, 6016, 6018, 1, 0, 0, 0, 6017, 6010, 1, 0, 0, 0, 6017, 6013, 1, 0, 0, 0, 6018, 6020, 1, 0, 0, 0, 6019, 6001, 1, 0, 0, 0, 6019, 6005, 1, 0, 0, 0, 6020, 551, 1, 0, 0, 0, 6021, 6022, 5, 178, 0, 0, 6022, 6031, 3, 816, 408, 0, 6023, 6025, 5, 269, 0, 0, 6024, 6023, 1, 0, 0, 0, 6024, 6025, 1, 0, 0, 0, 6025, 6026, 1, 0, 0, 0, 6026, 6030, 5, 324, 0, 0, 6027, 6030, 5, 107, 0, 0, 6028, 6030, 5, 240, 0, 0, 6029, 6024, 1, 0, 0, 0, 6029, 6027, 1, 0, 0, 0, 6029, 6028, 1, 0, 0, 0, 6030, 6033, 1, 0, 0, 0, 6031, 6029, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6034, 1, 0, 0, 0, 6033, 6031, 1, 0, 0, 0, 6034, 6037, 5, 172, 0, 0, 6035, 6036, 7, 27, 0, 0, 6036, 6038, 5, 217, 0, 0, 6037, 6035, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6040, 5, 62, 0, 0, 6040, 6041, 3, 554, 277, 0, 6041, 553, 1, 0, 0, 0, 6042, 6045, 3, 558, 279, 0, 6043, 6045, 3, 556, 278, 0, 6044, 6042, 1, 0, 0, 0, 6044, 6043, 1, 0, 0, 0, 6045, 555, 1, 0, 0, 0, 6046, 6049, 5, 2, 0, 0, 6047, 6050, 3, 558, 279, 0, 6048, 6050, 3, 556, 278, 0, 6049, 6047, 1, 0, 0, 0, 6049, 6048, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 5, 3, 0, 0, 6052, 557, 1, 0, 0, 0, 6053, 6055, 3, 566, 283, 0, 6054, 6053, 1, 0, 0, 0, 6054, 6055, 1, 0, 0, 0, 6055, 6056, 1, 0, 0, 0, 6056, 6058, 3, 560, 280, 0, 6057, 6059, 3, 580, 290, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6068, 1, 0, 0, 0, 6060, 6062, 3, 600, 300, 0, 6061, 6063, 3, 584, 292, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6069, 1, 0, 0, 0, 6064, 6066, 3, 584, 292, 0, 6065, 6067, 3, 600, 300, 0, 6066, 6065, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6069, 1, 0, 0, 0, 6068, 6060, 1, 0, 0, 0, 6068, 6064, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 559, 1, 0, 0, 0, 6070, 6073, 3, 562, 281, 0, 6071, 6073, 3, 556, 278, 0, 6072, 6070, 1, 0, 0, 0, 6072, 6071, 1, 0, 0, 0, 6073, 561, 1, 0, 0, 0, 6074, 6084, 5, 88, 0, 0, 6075, 6077, 5, 30, 0, 0, 6076, 6075, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 6079, 1, 0, 0, 0, 6078, 6080, 3, 574, 287, 0, 6079, 6078, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6085, 1, 0, 0, 0, 6081, 6083, 3, 578, 289, 0, 6082, 6081, 1, 0, 0, 0, 6082, 6083, 1, 0, 0, 0, 6083, 6085, 1, 0, 0, 0, 6084, 6076, 1, 0, 0, 0, 6084, 6082, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 6097, 3, 928, 464, 0, 6087, 6097, 3, 602, 301, 0, 6088, 6089, 5, 92, 0, 0, 6089, 6097, 3, 618, 309, 0, 6090, 6091, 3, 556, 278, 0, 6091, 6094, 3, 564, 282, 0, 6092, 6095, 3, 562, 281, 0, 6093, 6095, 3, 556, 278, 0, 6094, 6092, 1, 0, 0, 0, 6094, 6093, 1, 0, 0, 0, 6095, 6097, 1, 0, 0, 0, 6096, 6074, 1, 0, 0, 0, 6096, 6087, 1, 0, 0, 0, 6096, 6088, 1, 0, 0, 0, 6096, 6090, 1, 0, 0, 0, 6097, 6105, 1, 0, 0, 0, 6098, 6101, 3, 564, 282, 0, 6099, 6102, 3, 562, 281, 0, 6100, 6102, 3, 556, 278, 0, 6101, 6099, 1, 0, 0, 0, 6101, 6100, 1, 0, 0, 0, 6102, 6104, 1, 0, 0, 0, 6103, 6098, 1, 0, 0, 0, 6104, 6107, 1, 0, 0, 0, 6105, 6103, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 563, 1, 0, 0, 0, 6107, 6105, 1, 0, 0, 0, 6108, 6110, 7, 80, 0, 0, 6109, 6111, 7, 81, 0, 0, 6110, 6109, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 565, 1, 0, 0, 0, 6112, 6114, 5, 105, 0, 0, 6113, 6115, 5, 303, 0, 0, 6114, 6113, 1, 0, 0, 0, 6114, 6115, 1, 0, 0, 0, 6115, 6116, 1, 0, 0, 0, 6116, 6121, 3, 568, 284, 0, 6117, 6118, 5, 6, 0, 0, 6118, 6120, 3, 568, 284, 0, 6119, 6117, 1, 0, 0, 0, 6120, 6123, 1, 0, 0, 0, 6121, 6119, 1, 0, 0, 0, 6121, 6122, 1, 0, 0, 0, 6122, 567, 1, 0, 0, 0, 6123, 6121, 1, 0, 0, 0, 6124, 6126, 3, 816, 408, 0, 6125, 6127, 3, 138, 69, 0, 6126, 6125, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 6133, 5, 36, 0, 0, 6129, 6131, 5, 77, 0, 0, 6130, 6129, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 6134, 5, 259, 0, 0, 6133, 6130, 1, 0, 0, 0, 6133, 6134, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 5, 2, 0, 0, 6136, 6137, 3, 524, 262, 0, 6137, 6139, 5, 3, 0, 0, 6138, 6140, 3, 570, 285, 0, 6139, 6138, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6142, 1, 0, 0, 0, 6141, 6143, 3, 572, 286, 0, 6142, 6141, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 569, 1, 0, 0, 0, 6144, 6145, 5, 325, 0, 0, 6145, 6146, 7, 82, 0, 0, 6146, 6147, 5, 207, 0, 0, 6147, 6148, 5, 147, 0, 0, 6148, 6149, 3, 142, 71, 0, 6149, 6150, 5, 333, 0, 0, 6150, 6151, 3, 796, 398, 0, 6151, 571, 1, 0, 0, 0, 6152, 6153, 5, 173, 0, 0, 6153, 6154, 3, 142, 71, 0, 6154, 6155, 5, 333, 0, 0, 6155, 6161, 3, 796, 398, 0, 6156, 6157, 5, 94, 0, 0, 6157, 6158, 3, 816, 408, 0, 6158, 6159, 5, 53, 0, 0, 6159, 6160, 3, 816, 408, 0, 6160, 6162, 1, 0, 0, 0, 6161, 6156, 1, 0, 0, 0, 6161, 6162, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 6164, 5, 100, 0, 0, 6164, 6165, 3, 796, 398, 0, 6165, 573, 1, 0, 0, 0, 6166, 6172, 5, 71, 0, 0, 6167, 6169, 5, 346, 0, 0, 6168, 6167, 1, 0, 0, 0, 6168, 6169, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 6173, 3, 576, 288, 0, 6171, 6173, 3, 726, 363, 0, 6172, 6168, 1, 0, 0, 0, 6172, 6171, 1, 0, 0, 0, 6173, 575, 1, 0, 0, 0, 6174, 6176, 7, 21, 0, 0, 6175, 6174, 1, 0, 0, 0, 6175, 6176, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6179, 7, 22, 0, 0, 6178, 6180, 5, 92, 0, 0, 6179, 6178, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 6190, 3, 768, 384, 0, 6182, 6184, 5, 367, 0, 0, 6183, 6182, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6186, 1, 0, 0, 0, 6185, 6187, 5, 92, 0, 0, 6186, 6185, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6190, 3, 768, 384, 0, 6189, 6175, 1, 0, 0, 0, 6189, 6183, 1, 0, 0, 0, 6190, 577, 1, 0, 0, 0, 6191, 6194, 5, 56, 0, 0, 6192, 6193, 5, 80, 0, 0, 6193, 6195, 3, 528, 264, 0, 6194, 6192, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 579, 1, 0, 0, 0, 6196, 6197, 5, 83, 0, 0, 6197, 6198, 5, 147, 0, 0, 6198, 6203, 3, 582, 291, 0, 6199, 6200, 5, 6, 0, 0, 6200, 6202, 3, 582, 291, 0, 6201, 6199, 1, 0, 0, 0, 6202, 6205, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 581, 1, 0, 0, 0, 6205, 6203, 1, 0, 0, 0, 6206, 6210, 3, 730, 365, 0, 6207, 6208, 5, 100, 0, 0, 6208, 6211, 3, 722, 361, 0, 6209, 6211, 7, 56, 0, 0, 6210, 6207, 1, 0, 0, 0, 6210, 6209, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6214, 1, 0, 0, 0, 6212, 6213, 5, 273, 0, 0, 6213, 6215, 7, 57, 0, 0, 6214, 6212, 1, 0, 0, 0, 6214, 6215, 1, 0, 0, 0, 6215, 583, 1, 0, 0, 0, 6216, 6218, 3, 590, 295, 0, 6217, 6219, 3, 588, 294, 0, 6218, 6217, 1, 0, 0, 0, 6218, 6219, 1, 0, 0, 0, 6219, 6228, 1, 0, 0, 0, 6220, 6223, 3, 586, 293, 0, 6221, 6223, 3, 588, 294, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6221, 1, 0, 0, 0, 6223, 6225, 1, 0, 0, 0, 6224, 6226, 3, 590, 295, 0, 6225, 6224, 1, 0, 0, 0, 6225, 6226, 1, 0, 0, 0, 6226, 6228, 1, 0, 0, 0, 6227, 6216, 1, 0, 0, 0, 6227, 6222, 1, 0, 0, 0, 6228, 585, 1, 0, 0, 0, 6229, 6232, 5, 74, 0, 0, 6230, 6233, 3, 668, 334, 0, 6231, 6233, 5, 30, 0, 0, 6232, 6230, 1, 0, 0, 0, 6232, 6231, 1, 0, 0, 0, 6233, 6236, 1, 0, 0, 0, 6234, 6235, 5, 6, 0, 0, 6235, 6237, 3, 668, 334, 0, 6236, 6234, 1, 0, 0, 0, 6236, 6237, 1, 0, 0, 0, 6237, 587, 1, 0, 0, 0, 6238, 6239, 5, 61, 0, 0, 6239, 6241, 7, 83, 0, 0, 6240, 6242, 3, 592, 296, 0, 6241, 6240, 1, 0, 0, 0, 6241, 6242, 1, 0, 0, 0, 6242, 6243, 1, 0, 0, 0, 6243, 6247, 7, 84, 0, 0, 6244, 6248, 5, 81, 0, 0, 6245, 6246, 5, 105, 0, 0, 6246, 6248, 5, 467, 0, 0, 6247, 6244, 1, 0, 0, 0, 6247, 6245, 1, 0, 0, 0, 6248, 589, 1, 0, 0, 0, 6249, 6254, 5, 79, 0, 0, 6250, 6251, 3, 592, 296, 0, 6251, 6252, 7, 84, 0, 0, 6252, 6255, 1, 0, 0, 0, 6253, 6255, 3, 668, 334, 0, 6254, 6250, 1, 0, 0, 0, 6254, 6253, 1, 0, 0, 0, 6255, 591, 1, 0, 0, 0, 6256, 6257, 7, 30, 0, 0, 6257, 6260, 7, 85, 0, 0, 6258, 6260, 3, 676, 338, 0, 6259, 6256, 1, 0, 0, 0, 6259, 6258, 1, 0, 0, 0, 6260, 593, 1, 0, 0, 0, 6261, 6262, 5, 66, 0, 0, 6262, 6264, 5, 147, 0, 0, 6263, 6265, 7, 81, 0, 0, 6264, 6263, 1, 0, 0, 0, 6264, 6265, 1, 0, 0, 0, 6265, 6266, 1, 0, 0, 0, 6266, 6267, 3, 596, 298, 0, 6267, 595, 1, 0, 0, 0, 6268, 6273, 3, 598, 299, 0, 6269, 6270, 5, 6, 0, 0, 6270, 6272, 3, 598, 299, 0, 6271, 6269, 1, 0, 0, 0, 6272, 6275, 1, 0, 0, 0, 6273, 6271, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 597, 1, 0, 0, 0, 6275, 6273, 1, 0, 0, 0, 6276, 6300, 3, 730, 365, 0, 6277, 6278, 5, 2, 0, 0, 6278, 6300, 5, 3, 0, 0, 6279, 6281, 7, 86, 0, 0, 6280, 6279, 1, 0, 0, 0, 6280, 6281, 1, 0, 0, 0, 6281, 6282, 1, 0, 0, 0, 6282, 6283, 5, 2, 0, 0, 6283, 6288, 3, 730, 365, 0, 6284, 6285, 5, 6, 0, 0, 6285, 6287, 3, 730, 365, 0, 6286, 6284, 1, 0, 0, 0, 6287, 6290, 1, 0, 0, 0, 6288, 6286, 1, 0, 0, 0, 6288, 6289, 1, 0, 0, 0, 6289, 6291, 1, 0, 0, 0, 6290, 6288, 1, 0, 0, 0, 6291, 6292, 5, 3, 0, 0, 6292, 6300, 1, 0, 0, 0, 6293, 6294, 5, 470, 0, 0, 6294, 6295, 5, 471, 0, 0, 6295, 6296, 5, 2, 0, 0, 6296, 6297, 3, 596, 298, 0, 6297, 6298, 5, 3, 0, 0, 6298, 6300, 1, 0, 0, 0, 6299, 6276, 1, 0, 0, 0, 6299, 6277, 1, 0, 0, 0, 6299, 6280, 1, 0, 0, 0, 6299, 6293, 1, 0, 0, 0, 6300, 599, 1, 0, 0, 0, 6301, 6311, 5, 62, 0, 0, 6302, 6303, 5, 269, 0, 0, 6303, 6305, 5, 245, 0, 0, 6304, 6302, 1, 0, 0, 0, 6304, 6305, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 6312, 5, 369, 0, 0, 6307, 6309, 5, 245, 0, 0, 6308, 6307, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6310, 1, 0, 0, 0, 6310, 6312, 5, 334, 0, 0, 6311, 6304, 1, 0, 0, 0, 6311, 6308, 1, 0, 0, 0, 6312, 6315, 1, 0, 0, 0, 6313, 6314, 5, 275, 0, 0, 6314, 6316, 3, 756, 378, 0, 6315, 6313, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6320, 1, 0, 0, 0, 6317, 6321, 5, 272, 0, 0, 6318, 6319, 5, 465, 0, 0, 6319, 6321, 5, 466, 0, 0, 6320, 6317, 1, 0, 0, 0, 6320, 6318, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6323, 1, 0, 0, 0, 6322, 6301, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6322, 1, 0, 0, 0, 6324, 6325, 1, 0, 0, 0, 6325, 6330, 1, 0, 0, 0, 6326, 6327, 5, 62, 0, 0, 6327, 6328, 5, 300, 0, 0, 6328, 6330, 5, 81, 0, 0, 6329, 6322, 1, 0, 0, 0, 6329, 6326, 1, 0, 0, 0, 6330, 601, 1, 0, 0, 0, 6331, 6332, 5, 422, 0, 0, 6332, 6337, 3, 528, 264, 0, 6333, 6334, 5, 6, 0, 0, 6334, 6336, 3, 528, 264, 0, 6335, 6333, 1, 0, 0, 0, 6336, 6339, 1, 0, 0, 0, 6337, 6335, 1, 0, 0, 0, 6337, 6338, 1, 0, 0, 0, 6338, 603, 1, 0, 0, 0, 6339, 6337, 1, 0, 0, 0, 6340, 6341, 5, 64, 0, 0, 6341, 6342, 3, 606, 303, 0, 6342, 605, 1, 0, 0, 0, 6343, 6348, 3, 608, 304, 0, 6344, 6345, 5, 6, 0, 0, 6345, 6347, 3, 608, 304, 0, 6346, 6344, 1, 0, 0, 0, 6347, 6350, 1, 0, 0, 0, 6348, 6346, 1, 0, 0, 0, 6348, 6349, 1, 0, 0, 0, 6349, 607, 1, 0, 0, 0, 6350, 6348, 1, 0, 0, 0, 6351, 6366, 3, 618, 309, 0, 6352, 6354, 5, 81, 0, 0, 6353, 6352, 1, 0, 0, 0, 6353, 6354, 1, 0, 0, 0, 6354, 6355, 1, 0, 0, 0, 6355, 6357, 3, 774, 387, 0, 6356, 6358, 5, 9, 0, 0, 6357, 6356, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 1, 0, 0, 0, 6359, 6361, 3, 142, 71, 0, 6360, 6359, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 6363, 1, 0, 0, 0, 6362, 6364, 3, 632, 316, 0, 6363, 6362, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6366, 1, 0, 0, 0, 6365, 6351, 1, 0, 0, 0, 6365, 6353, 1, 0, 0, 0, 6366, 6368, 1, 0, 0, 0, 6367, 6369, 3, 610, 305, 0, 6368, 6367, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 6371, 1, 0, 0, 0, 6370, 6372, 3, 626, 313, 0, 6371, 6370, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6415, 1, 0, 0, 0, 6373, 6375, 5, 72, 0, 0, 6374, 6373, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6388, 1, 0, 0, 0, 6376, 6378, 3, 640, 320, 0, 6377, 6379, 3, 610, 305, 0, 6378, 6377, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6389, 1, 0, 0, 0, 6380, 6382, 3, 628, 314, 0, 6381, 6383, 3, 612, 306, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6389, 1, 0, 0, 0, 6384, 6386, 3, 556, 278, 0, 6385, 6387, 3, 610, 305, 0, 6386, 6385, 1, 0, 0, 0, 6386, 6387, 1, 0, 0, 0, 6387, 6389, 1, 0, 0, 0, 6388, 6376, 1, 0, 0, 0, 6388, 6380, 1, 0, 0, 0, 6388, 6384, 1, 0, 0, 0, 6389, 6415, 1, 0, 0, 0, 6390, 6391, 5, 2, 0, 0, 6391, 6408, 3, 608, 304, 0, 6392, 6393, 5, 110, 0, 0, 6393, 6394, 5, 118, 0, 0, 6394, 6409, 3, 608, 304, 0, 6395, 6397, 5, 121, 0, 0, 6396, 6398, 3, 614, 307, 0, 6397, 6396, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6400, 5, 118, 0, 0, 6400, 6409, 3, 608, 304, 0, 6401, 6403, 3, 614, 307, 0, 6402, 6401, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6405, 5, 118, 0, 0, 6405, 6406, 3, 608, 304, 0, 6406, 6407, 3, 616, 308, 0, 6407, 6409, 1, 0, 0, 0, 6408, 6392, 1, 0, 0, 0, 6408, 6395, 1, 0, 0, 0, 6408, 6402, 1, 0, 0, 0, 6408, 6409, 1, 0, 0, 0, 6409, 6410, 1, 0, 0, 0, 6410, 6412, 5, 3, 0, 0, 6411, 6413, 3, 610, 305, 0, 6412, 6411, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6415, 1, 0, 0, 0, 6414, 6365, 1, 0, 0, 0, 6414, 6374, 1, 0, 0, 0, 6414, 6390, 1, 0, 0, 0, 6415, 6434, 1, 0, 0, 0, 6416, 6417, 5, 110, 0, 0, 6417, 6418, 5, 118, 0, 0, 6418, 6433, 3, 608, 304, 0, 6419, 6421, 5, 121, 0, 0, 6420, 6422, 3, 614, 307, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 5, 118, 0, 0, 6424, 6433, 3, 608, 304, 0, 6425, 6427, 3, 614, 307, 0, 6426, 6425, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6429, 5, 118, 0, 0, 6429, 6430, 3, 608, 304, 0, 6430, 6431, 3, 616, 308, 0, 6431, 6433, 1, 0, 0, 0, 6432, 6416, 1, 0, 0, 0, 6432, 6419, 1, 0, 0, 0, 6432, 6426, 1, 0, 0, 0, 6433, 6436, 1, 0, 0, 0, 6434, 6432, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 609, 1, 0, 0, 0, 6436, 6434, 1, 0, 0, 0, 6437, 6439, 5, 36, 0, 0, 6438, 6437, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 6440, 1, 0, 0, 0, 6440, 6445, 3, 816, 408, 0, 6441, 6442, 5, 2, 0, 0, 6442, 6443, 3, 780, 390, 0, 6443, 6444, 5, 3, 0, 0, 6444, 6446, 1, 0, 0, 0, 6445, 6441, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 611, 1, 0, 0, 0, 6447, 6460, 3, 610, 305, 0, 6448, 6450, 5, 36, 0, 0, 6449, 6451, 3, 816, 408, 0, 6450, 6449, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6454, 1, 0, 0, 0, 6452, 6454, 3, 816, 408, 0, 6453, 6448, 1, 0, 0, 0, 6453, 6452, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 6456, 5, 2, 0, 0, 6456, 6457, 3, 636, 318, 0, 6457, 6458, 5, 3, 0, 0, 6458, 6460, 1, 0, 0, 0, 6459, 6447, 1, 0, 0, 0, 6459, 6453, 1, 0, 0, 0, 6460, 613, 1, 0, 0, 0, 6461, 6463, 7, 87, 0, 0, 6462, 6464, 5, 123, 0, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 615, 1, 0, 0, 0, 6465, 6466, 5, 100, 0, 0, 6466, 6470, 3, 138, 69, 0, 6467, 6468, 5, 80, 0, 0, 6468, 6470, 3, 668, 334, 0, 6469, 6465, 1, 0, 0, 0, 6469, 6467, 1, 0, 0, 0, 6470, 617, 1, 0, 0, 0, 6471, 6487, 3, 316, 158, 0, 6472, 6478, 5, 81, 0, 0, 6473, 6479, 3, 770, 385, 0, 6474, 6475, 5, 2, 0, 0, 6475, 6476, 3, 770, 385, 0, 6476, 6477, 5, 3, 0, 0, 6477, 6479, 1, 0, 0, 0, 6478, 6473, 1, 0, 0, 0, 6478, 6474, 1, 0, 0, 0, 6479, 6487, 1, 0, 0, 0, 6480, 6481, 5, 68, 0, 0, 6481, 6484, 5, 323, 0, 0, 6482, 6485, 3, 786, 393, 0, 6483, 6485, 5, 111, 0, 0, 6484, 6482, 1, 0, 0, 0, 6484, 6483, 1, 0, 0, 0, 6485, 6487, 1, 0, 0, 0, 6486, 6471, 1, 0, 0, 0, 6486, 6472, 1, 0, 0, 0, 6486, 6480, 1, 0, 0, 0, 6487, 619, 1, 0, 0, 0, 6488, 6489, 5, 92, 0, 0, 6489, 6491, 3, 316, 158, 0, 6490, 6492, 3, 138, 69, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6494, 1, 0, 0, 0, 6493, 6495, 3, 632, 316, 0, 6494, 6493, 1, 0, 0, 0, 6494, 6495, 1, 0, 0, 0, 6495, 6513, 1, 0, 0, 0, 6496, 6497, 5, 92, 0, 0, 6497, 6503, 5, 81, 0, 0, 6498, 6504, 3, 770, 385, 0, 6499, 6500, 5, 2, 0, 0, 6500, 6501, 3, 770, 385, 0, 6501, 6502, 5, 3, 0, 0, 6502, 6504, 1, 0, 0, 0, 6503, 6498, 1, 0, 0, 0, 6503, 6499, 1, 0, 0, 0, 6504, 6513, 1, 0, 0, 0, 6505, 6506, 5, 350, 0, 0, 6506, 6507, 5, 68, 0, 0, 6507, 6510, 5, 323, 0, 0, 6508, 6511, 3, 786, 393, 0, 6509, 6511, 5, 111, 0, 0, 6510, 6508, 1, 0, 0, 0, 6510, 6509, 1, 0, 0, 0, 6511, 6513, 1, 0, 0, 0, 6512, 6488, 1, 0, 0, 0, 6512, 6496, 1, 0, 0, 0, 6512, 6505, 1, 0, 0, 0, 6513, 621, 1, 0, 0, 0, 6514, 6519, 3, 618, 309, 0, 6515, 6516, 5, 6, 0, 0, 6516, 6518, 3, 618, 309, 0, 6517, 6515, 1, 0, 0, 0, 6518, 6521, 1, 0, 0, 0, 6519, 6517, 1, 0, 0, 0, 6519, 6520, 1, 0, 0, 0, 6520, 623, 1, 0, 0, 0, 6521, 6519, 1, 0, 0, 0, 6522, 6527, 3, 618, 309, 0, 6523, 6525, 5, 36, 0, 0, 6524, 6523, 1, 0, 0, 0, 6524, 6525, 1, 0, 0, 0, 6525, 6526, 1, 0, 0, 0, 6526, 6528, 3, 816, 408, 0, 6527, 6524, 1, 0, 0, 0, 6527, 6528, 1, 0, 0, 0, 6528, 625, 1, 0, 0, 0, 6529, 6530, 5, 472, 0, 0, 6530, 6531, 3, 804, 402, 0, 6531, 6537, 3, 528, 264, 0, 6532, 6533, 5, 310, 0, 0, 6533, 6534, 5, 2, 0, 0, 6534, 6535, 3, 668, 334, 0, 6535, 6536, 5, 3, 0, 0, 6536, 6538, 1, 0, 0, 0, 6537, 6532, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 627, 1, 0, 0, 0, 6539, 6554, 3, 682, 341, 0, 6540, 6541, 5, 320, 0, 0, 6541, 6542, 5, 64, 0, 0, 6542, 6543, 5, 2, 0, 0, 6543, 6548, 3, 630, 315, 0, 6544, 6545, 5, 6, 0, 0, 6545, 6547, 3, 630, 315, 0, 6546, 6544, 1, 0, 0, 0, 6547, 6550, 1, 0, 0, 0, 6548, 6546, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 6551, 1, 0, 0, 0, 6550, 6548, 1, 0, 0, 0, 6551, 6552, 5, 3, 0, 0, 6552, 6554, 1, 0, 0, 0, 6553, 6539, 1, 0, 0, 0, 6553, 6540, 1, 0, 0, 0, 6554, 6557, 1, 0, 0, 0, 6555, 6556, 5, 105, 0, 0, 6556, 6558, 5, 473, 0, 0, 6557, 6555, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 629, 1, 0, 0, 0, 6559, 6565, 3, 682, 341, 0, 6560, 6561, 5, 36, 0, 0, 6561, 6562, 5, 2, 0, 0, 6562, 6563, 3, 636, 318, 0, 6563, 6564, 5, 3, 0, 0, 6564, 6566, 1, 0, 0, 0, 6565, 6560, 1, 0, 0, 0, 6565, 6566, 1, 0, 0, 0, 6566, 631, 1, 0, 0, 0, 6567, 6568, 5, 103, 0, 0, 6568, 6569, 3, 730, 365, 0, 6569, 633, 1, 0, 0, 0, 6570, 6575, 5, 103, 0, 0, 6571, 6572, 5, 434, 0, 0, 6572, 6573, 5, 275, 0, 0, 6573, 6576, 3, 816, 408, 0, 6574, 6576, 3, 668, 334, 0, 6575, 6571, 1, 0, 0, 0, 6575, 6574, 1, 0, 0, 0, 6576, 635, 1, 0, 0, 0, 6577, 6582, 3, 638, 319, 0, 6578, 6579, 5, 6, 0, 0, 6579, 6581, 3, 638, 319, 0, 6580, 6578, 1, 0, 0, 0, 6581, 6584, 1, 0, 0, 0, 6582, 6580, 1, 0, 0, 0, 6582, 6583, 1, 0, 0, 0, 6583, 637, 1, 0, 0, 0, 6584, 6582, 1, 0, 0, 0, 6585, 6586, 3, 816, 408, 0, 6586, 6588, 3, 646, 323, 0, 6587, 6589, 3, 90, 45, 0, 6588, 6587, 1, 0, 0, 0, 6588, 6589, 1, 0, 0, 0, 6589, 639, 1, 0, 0, 0, 6590, 6591, 5, 474, 0, 0, 6591, 6605, 5, 2, 0, 0, 6592, 6593, 5, 476, 0, 0, 6593, 6594, 5, 2, 0, 0, 6594, 6599, 3, 644, 322, 0, 6595, 6596, 5, 6, 0, 0, 6596, 6598, 3, 644, 322, 0, 6597, 6595, 1, 0, 0, 0, 6598, 6601, 1, 0, 0, 0, 6599, 6597, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 6602, 1, 0, 0, 0, 6601, 6599, 1, 0, 0, 0, 6602, 6603, 5, 3, 0, 0, 6603, 6604, 5, 6, 0, 0, 6604, 6606, 1, 0, 0, 0, 6605, 6592, 1, 0, 0, 0, 6605, 6606, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 6608, 3, 676, 338, 0, 6608, 6609, 3, 692, 346, 0, 6609, 6610, 5, 475, 0, 0, 6610, 6615, 3, 642, 321, 0, 6611, 6612, 5, 6, 0, 0, 6612, 6614, 3, 642, 321, 0, 6613, 6611, 1, 0, 0, 0, 6614, 6617, 1, 0, 0, 0, 6615, 6613, 1, 0, 0, 0, 6615, 6616, 1, 0, 0, 0, 6616, 6618, 1, 0, 0, 0, 6617, 6615, 1, 0, 0, 0, 6618, 6619, 5, 3, 0, 0, 6619, 641, 1, 0, 0, 0, 6620, 6639, 3, 816, 408, 0, 6621, 6635, 3, 646, 323, 0, 6622, 6625, 5, 53, 0, 0, 6623, 6625, 3, 824, 412, 0, 6624, 6622, 1, 0, 0, 0, 6624, 6623, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6632, 3, 668, 334, 0, 6627, 6629, 5, 77, 0, 0, 6628, 6627, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6630, 1, 0, 0, 0, 6630, 6632, 5, 78, 0, 0, 6631, 6624, 1, 0, 0, 0, 6631, 6628, 1, 0, 0, 0, 6632, 6633, 1, 0, 0, 0, 6633, 6631, 1, 0, 0, 0, 6633, 6634, 1, 0, 0, 0, 6634, 6636, 1, 0, 0, 0, 6635, 6631, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6640, 1, 0, 0, 0, 6637, 6638, 5, 62, 0, 0, 6638, 6640, 5, 473, 0, 0, 6639, 6621, 1, 0, 0, 0, 6639, 6637, 1, 0, 0, 0, 6640, 643, 1, 0, 0, 0, 6641, 6642, 3, 676, 338, 0, 6642, 6643, 5, 36, 0, 0, 6643, 6644, 3, 822, 411, 0, 6644, 6648, 1, 0, 0, 0, 6645, 6646, 5, 53, 0, 0, 6646, 6648, 3, 676, 338, 0, 6647, 6641, 1, 0, 0, 0, 6647, 6645, 1, 0, 0, 0, 6648, 645, 1, 0, 0, 0, 6649, 6651, 5, 415, 0, 0, 6650, 6649, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6669, 3, 648, 324, 0, 6653, 6655, 5, 4, 0, 0, 6654, 6656, 5, 574, 0, 0, 6655, 6654, 1, 0, 0, 0, 6655, 6656, 1, 0, 0, 0, 6656, 6657, 1, 0, 0, 0, 6657, 6659, 5, 5, 0, 0, 6658, 6653, 1, 0, 0, 0, 6659, 6662, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6670, 1, 0, 0, 0, 6662, 6660, 1, 0, 0, 0, 6663, 6667, 5, 35, 0, 0, 6664, 6665, 5, 4, 0, 0, 6665, 6666, 5, 574, 0, 0, 6666, 6668, 5, 5, 0, 0, 6667, 6664, 1, 0, 0, 0, 6667, 6668, 1, 0, 0, 0, 6668, 6670, 1, 0, 0, 0, 6669, 6660, 1, 0, 0, 0, 6669, 6663, 1, 0, 0, 0, 6670, 6676, 1, 0, 0, 0, 6671, 6672, 3, 776, 388, 0, 6672, 6673, 5, 27, 0, 0, 6673, 6674, 7, 88, 0, 0, 6674, 6676, 1, 0, 0, 0, 6675, 6650, 1, 0, 0, 0, 6675, 6671, 1, 0, 0, 0, 6676, 647, 1, 0, 0, 0, 6677, 6679, 3, 818, 409, 0, 6678, 6680, 3, 312, 156, 0, 6679, 6678, 1, 0, 0, 0, 6679, 6680, 1, 0, 0, 0, 6680, 6682, 1, 0, 0, 0, 6681, 6683, 3, 528, 264, 0, 6682, 6681, 1, 0, 0, 0, 6682, 6683, 1, 0, 0, 0, 6683, 6693, 1, 0, 0, 0, 6684, 6693, 3, 650, 325, 0, 6685, 6690, 5, 403, 0, 0, 6686, 6688, 3, 662, 331, 0, 6687, 6686, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6691, 1, 0, 0, 0, 6689, 6691, 3, 654, 327, 0, 6690, 6687, 1, 0, 0, 0, 6690, 6689, 1, 0, 0, 0, 6691, 6693, 1, 0, 0, 0, 6692, 6677, 1, 0, 0, 0, 6692, 6684, 1, 0, 0, 0, 6692, 6685, 1, 0, 0, 0, 6693, 649, 1, 0, 0, 0, 6694, 6699, 3, 652, 326, 0, 6695, 6699, 3, 656, 328, 0, 6696, 6699, 3, 658, 329, 0, 6697, 6699, 3, 660, 330, 0, 6698, 6694, 1, 0, 0, 0, 6698, 6695, 1, 0, 0, 0, 6698, 6696, 1, 0, 0, 0, 6698, 6697, 1, 0, 0, 0, 6699, 651, 1, 0, 0, 0, 6700, 6717, 5, 401, 0, 0, 6701, 6717, 5, 402, 0, 0, 6702, 6717, 5, 416, 0, 0, 6703, 6717, 5, 388, 0, 0, 6704, 6717, 5, 413, 0, 0, 6705, 6707, 5, 398, 0, 0, 6706, 6708, 3, 654, 327, 0, 6707, 6706, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6717, 1, 0, 0, 0, 6709, 6710, 5, 190, 0, 0, 6710, 6717, 5, 412, 0, 0, 6711, 6713, 7, 89, 0, 0, 6712, 6714, 3, 528, 264, 0, 6713, 6712, 1, 0, 0, 0, 6713, 6714, 1, 0, 0, 0, 6714, 6717, 1, 0, 0, 0, 6715, 6717, 5, 390, 0, 0, 6716, 6700, 1, 0, 0, 0, 6716, 6701, 1, 0, 0, 0, 6716, 6702, 1, 0, 0, 0, 6716, 6703, 1, 0, 0, 0, 6716, 6704, 1, 0, 0, 0, 6716, 6705, 1, 0, 0, 0, 6716, 6709, 1, 0, 0, 0, 6716, 6711, 1, 0, 0, 0, 6716, 6715, 1, 0, 0, 0, 6717, 653, 1, 0, 0, 0, 6718, 6719, 5, 2, 0, 0, 6719, 6720, 5, 574, 0, 0, 6720, 6721, 5, 3, 0, 0, 6721, 655, 1, 0, 0, 0, 6722, 6724, 5, 389, 0, 0, 6723, 6725, 5, 374, 0, 0, 6724, 6723, 1, 0, 0, 0, 6724, 6725, 1, 0, 0, 0, 6725, 6727, 1, 0, 0, 0, 6726, 6728, 3, 528, 264, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 657, 1, 0, 0, 0, 6729, 6731, 7, 90, 0, 0, 6730, 6732, 5, 374, 0, 0, 6731, 6730, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6740, 1, 0, 0, 0, 6733, 6740, 5, 423, 0, 0, 6734, 6735, 5, 405, 0, 0, 6735, 6737, 7, 91, 0, 0, 6736, 6738, 5, 374, 0, 0, 6737, 6736, 1, 0, 0, 0, 6737, 6738, 1, 0, 0, 0, 6738, 6740, 1, 0, 0, 0, 6739, 6729, 1, 0, 0, 0, 6739, 6733, 1, 0, 0, 0, 6739, 6734, 1, 0, 0, 0, 6740, 6742, 1, 0, 0, 0, 6741, 6743, 3, 654, 327, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 659, 1, 0, 0, 0, 6744, 6746, 7, 92, 0, 0, 6745, 6747, 3, 654, 327, 0, 6746, 6745, 1, 0, 0, 0, 6746, 6747, 1, 0, 0, 0, 6747, 6751, 1, 0, 0, 0, 6748, 6749, 7, 27, 0, 0, 6749, 6750, 5, 418, 0, 0, 6750, 6752, 5, 386, 0, 0, 6751, 6748, 1, 0, 0, 0, 6751, 6752, 1, 0, 0, 0, 6752, 661, 1, 0, 0, 0, 6753, 6783, 5, 264, 0, 0, 6754, 6783, 3, 664, 332, 0, 6755, 6758, 5, 384, 0, 0, 6756, 6757, 5, 94, 0, 0, 6757, 6759, 5, 264, 0, 0, 6758, 6756, 1, 0, 0, 0, 6758, 6759, 1, 0, 0, 0, 6759, 6783, 1, 0, 0, 0, 6760, 6767, 5, 176, 0, 0, 6761, 6765, 5, 94, 0, 0, 6762, 6766, 5, 218, 0, 0, 6763, 6766, 5, 261, 0, 0, 6764, 6766, 3, 664, 332, 0, 6765, 6762, 1, 0, 0, 0, 6765, 6763, 1, 0, 0, 0, 6765, 6764, 1, 0, 0, 0, 6766, 6768, 1, 0, 0, 0, 6767, 6761, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6783, 1, 0, 0, 0, 6769, 6775, 5, 218, 0, 0, 6770, 6773, 5, 94, 0, 0, 6771, 6774, 5, 261, 0, 0, 6772, 6774, 3, 664, 332, 0, 6773, 6771, 1, 0, 0, 0, 6773, 6772, 1, 0, 0, 0, 6774, 6776, 1, 0, 0, 0, 6775, 6770, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 6783, 1, 0, 0, 0, 6777, 6780, 5, 261, 0, 0, 6778, 6779, 5, 94, 0, 0, 6779, 6781, 3, 664, 332, 0, 6780, 6778, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 6783, 1, 0, 0, 0, 6782, 6753, 1, 0, 0, 0, 6782, 6754, 1, 0, 0, 0, 6782, 6755, 1, 0, 0, 0, 6782, 6760, 1, 0, 0, 0, 6782, 6769, 1, 0, 0, 0, 6782, 6777, 1, 0, 0, 0, 6783, 663, 1, 0, 0, 0, 6784, 6786, 5, 326, 0, 0, 6785, 6787, 3, 654, 327, 0, 6786, 6785, 1, 0, 0, 0, 6786, 6787, 1, 0, 0, 0, 6787, 665, 1, 0, 0, 0, 6788, 6789, 7, 93, 0, 0, 6789, 667, 1, 0, 0, 0, 6790, 6791, 3, 670, 335, 0, 6791, 669, 1, 0, 0, 0, 6792, 6793, 6, 335, -1, 0, 6793, 6795, 3, 674, 337, 0, 6794, 6796, 3, 672, 336, 0, 6795, 6794, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6800, 1, 0, 0, 0, 6797, 6798, 5, 77, 0, 0, 6798, 6800, 3, 670, 335, 3, 6799, 6792, 1, 0, 0, 0, 6799, 6797, 1, 0, 0, 0, 6800, 6809, 1, 0, 0, 0, 6801, 6802, 10, 2, 0, 0, 6802, 6803, 5, 33, 0, 0, 6803, 6808, 3, 670, 335, 3, 6804, 6805, 10, 1, 0, 0, 6805, 6806, 5, 82, 0, 0, 6806, 6808, 3, 670, 335, 2, 6807, 6801, 1, 0, 0, 0, 6807, 6804, 1, 0, 0, 0, 6808, 6811, 1, 0, 0, 0, 6809, 6807, 1, 0, 0, 0, 6809, 6810, 1, 0, 0, 0, 6810, 671, 1, 0, 0, 0, 6811, 6809, 1, 0, 0, 0, 6812, 6813, 3, 666, 333, 0, 6813, 6814, 3, 674, 337, 0, 6814, 6884, 1, 0, 0, 0, 6815, 6816, 3, 666, 333, 0, 6816, 6817, 3, 724, 362, 0, 6817, 6823, 3, 714, 357, 0, 6818, 6824, 3, 556, 278, 0, 6819, 6820, 5, 2, 0, 0, 6820, 6821, 3, 668, 334, 0, 6821, 6822, 5, 3, 0, 0, 6822, 6824, 1, 0, 0, 0, 6823, 6818, 1, 0, 0, 0, 6823, 6819, 1, 0, 0, 0, 6824, 6884, 1, 0, 0, 0, 6825, 6827, 5, 77, 0, 0, 6826, 6825, 1, 0, 0, 0, 6826, 6827, 1, 0, 0, 0, 6827, 6828, 1, 0, 0, 0, 6828, 6829, 5, 387, 0, 0, 6829, 6830, 3, 674, 337, 0, 6830, 6831, 5, 33, 0, 0, 6831, 6832, 3, 674, 337, 0, 6832, 6884, 1, 0, 0, 0, 6833, 6835, 5, 77, 0, 0, 6834, 6833, 1, 0, 0, 0, 6834, 6835, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6837, 5, 68, 0, 0, 6837, 6838, 5, 2, 0, 0, 6838, 6843, 3, 668, 334, 0, 6839, 6840, 5, 6, 0, 0, 6840, 6842, 3, 668, 334, 0, 6841, 6839, 1, 0, 0, 0, 6842, 6845, 1, 0, 0, 0, 6843, 6841, 1, 0, 0, 0, 6843, 6844, 1, 0, 0, 0, 6844, 6846, 1, 0, 0, 0, 6845, 6843, 1, 0, 0, 0, 6846, 6847, 5, 3, 0, 0, 6847, 6884, 1, 0, 0, 0, 6848, 6850, 5, 77, 0, 0, 6849, 6848, 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6851, 1, 0, 0, 0, 6851, 6852, 5, 68, 0, 0, 6852, 6884, 3, 556, 278, 0, 6853, 6855, 5, 77, 0, 0, 6854, 6853, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6864, 1, 0, 0, 0, 6856, 6865, 5, 120, 0, 0, 6857, 6865, 5, 114, 0, 0, 6858, 6859, 5, 127, 0, 0, 6859, 6865, 5, 94, 0, 0, 6860, 6862, 5, 387, 0, 0, 6861, 6863, 5, 91, 0, 0, 6862, 6861, 1, 0, 0, 0, 6862, 6863, 1, 0, 0, 0, 6863, 6865, 1, 0, 0, 0, 6864, 6856, 1, 0, 0, 0, 6864, 6857, 1, 0, 0, 0, 6864, 6858, 1, 0, 0, 0, 6864, 6860, 1, 0, 0, 0, 6865, 6866, 1, 0, 0, 0, 6866, 6869, 3, 674, 337, 0, 6867, 6868, 5, 197, 0, 0, 6868, 6870, 3, 674, 337, 0, 6869, 6867, 1, 0, 0, 0, 6869, 6870, 1, 0, 0, 0, 6870, 6884, 1, 0, 0, 0, 6871, 6873, 5, 116, 0, 0, 6872, 6874, 5, 77, 0, 0, 6873, 6872, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6884, 5, 78, 0, 0, 6876, 6878, 5, 116, 0, 0, 6877, 6879, 5, 77, 0, 0, 6878, 6877, 1, 0, 0, 0, 6878, 6879, 1, 0, 0, 0, 6879, 6880, 1, 0, 0, 0, 6880, 6881, 5, 56, 0, 0, 6881, 6882, 5, 64, 0, 0, 6882, 6884, 3, 674, 337, 0, 6883, 6812, 1, 0, 0, 0, 6883, 6815, 1, 0, 0, 0, 6883, 6826, 1, 0, 0, 0, 6883, 6834, 1, 0, 0, 0, 6883, 6849, 1, 0, 0, 0, 6883, 6854, 1, 0, 0, 0, 6883, 6871, 1, 0, 0, 0, 6883, 6876, 1, 0, 0, 0, 6884, 673, 1, 0, 0, 0, 6885, 6886, 6, 337, -1, 0, 6886, 6890, 3, 676, 338, 0, 6887, 6888, 7, 30, 0, 0, 6888, 6890, 3, 674, 337, 4, 6889, 6885, 1, 0, 0, 0, 6889, 6887, 1, 0, 0, 0, 6890, 6907, 1, 0, 0, 0, 6891, 6892, 10, 3, 0, 0, 6892, 6893, 7, 94, 0, 0, 6893, 6906, 3, 674, 337, 4, 6894, 6895, 10, 2, 0, 0, 6895, 6896, 7, 30, 0, 0, 6896, 6906, 3, 674, 337, 3, 6897, 6898, 10, 1, 0, 0, 6898, 6899, 5, 15, 0, 0, 6899, 6906, 3, 674, 337, 2, 6900, 6901, 10, 5, 0, 0, 6901, 6902, 5, 142, 0, 0, 6902, 6903, 5, 418, 0, 0, 6903, 6904, 5, 386, 0, 0, 6904, 6906, 3, 668, 334, 0, 6905, 6891, 1, 0, 0, 0, 6905, 6894, 1, 0, 0, 0, 6905, 6897, 1, 0, 0, 0, 6905, 6900, 1, 0, 0, 0, 6906, 6909, 1, 0, 0, 0, 6907, 6905, 1, 0, 0, 0, 6907, 6908, 1, 0, 0, 0, 6908, 675, 1, 0, 0, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6911, 6, 338, -1, 0, 6911, 6912, 7, 95, 0, 0, 6912, 7000, 3, 556, 278, 0, 6913, 6916, 5, 35, 0, 0, 6914, 6917, 3, 556, 278, 0, 6915, 6917, 3, 736, 368, 0, 6916, 6914, 1, 0, 0, 0, 6916, 6915, 1, 0, 0, 0, 6917, 7000, 1, 0, 0, 0, 6918, 6919, 5, 28, 0, 0, 6919, 7000, 3, 750, 375, 0, 6920, 6921, 5, 470, 0, 0, 6921, 7000, 3, 528, 264, 0, 6922, 7000, 5, 574, 0, 0, 6923, 7000, 5, 576, 0, 0, 6924, 7000, 5, 566, 0, 0, 6925, 7000, 5, 570, 0, 0, 6926, 6936, 3, 804, 402, 0, 6927, 6937, 3, 806, 403, 0, 6928, 6929, 5, 2, 0, 0, 6929, 6931, 3, 732, 366, 0, 6930, 6932, 3, 580, 290, 0, 6931, 6930, 1, 0, 0, 0, 6931, 6932, 1, 0, 0, 0, 6932, 6933, 1, 0, 0, 0, 6933, 6934, 5, 3, 0, 0, 6934, 6935, 3, 806, 403, 0, 6935, 6937, 1, 0, 0, 0, 6936, 6927, 1, 0, 0, 0, 6936, 6928, 1, 0, 0, 0, 6937, 7000, 1, 0, 0, 0, 6938, 6940, 3, 650, 325, 0, 6939, 6938, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6941, 1, 0, 0, 0, 6941, 7000, 3, 806, 403, 0, 6942, 6950, 5, 403, 0, 0, 6943, 6945, 3, 806, 403, 0, 6944, 6946, 3, 662, 331, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6951, 1, 0, 0, 0, 6947, 6948, 3, 654, 327, 0, 6948, 6949, 3, 806, 403, 0, 6949, 6951, 1, 0, 0, 0, 6950, 6943, 1, 0, 0, 0, 6950, 6947, 1, 0, 0, 0, 6951, 7000, 1, 0, 0, 0, 6952, 7000, 5, 96, 0, 0, 6953, 7000, 5, 60, 0, 0, 6954, 7000, 5, 78, 0, 0, 6955, 7000, 5, 577, 0, 0, 6956, 6957, 5, 2, 0, 0, 6957, 6958, 3, 668, 334, 0, 6958, 6959, 5, 3, 0, 0, 6959, 6960, 3, 750, 375, 0, 6960, 7000, 1, 0, 0, 0, 6961, 6963, 5, 40, 0, 0, 6962, 6964, 3, 668, 334, 0, 6963, 6962, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6966, 1, 0, 0, 0, 6965, 6967, 3, 744, 372, 0, 6966, 6965, 1, 0, 0, 0, 6967, 6968, 1, 0, 0, 0, 6968, 6966, 1, 0, 0, 0, 6968, 6969, 1, 0, 0, 0, 6969, 6972, 1, 0, 0, 0, 6970, 6971, 5, 58, 0, 0, 6971, 6973, 3, 668, 334, 0, 6972, 6970, 1, 0, 0, 0, 6972, 6973, 1, 0, 0, 0, 6973, 6974, 1, 0, 0, 0, 6974, 6975, 5, 454, 0, 0, 6975, 7000, 1, 0, 0, 0, 6976, 7000, 3, 680, 340, 0, 6977, 6979, 3, 556, 278, 0, 6978, 6980, 3, 748, 374, 0, 6979, 6978, 1, 0, 0, 0, 6979, 6980, 1, 0, 0, 0, 6980, 7000, 1, 0, 0, 0, 6981, 7000, 3, 712, 356, 0, 6982, 6983, 5, 2, 0, 0, 6983, 6984, 3, 668, 334, 0, 6984, 6985, 5, 6, 0, 0, 6985, 6986, 3, 726, 363, 0, 6986, 6987, 5, 3, 0, 0, 6987, 7000, 1, 0, 0, 0, 6988, 6989, 3, 710, 355, 0, 6989, 6990, 5, 125, 0, 0, 6990, 6991, 3, 710, 355, 0, 6991, 7000, 1, 0, 0, 0, 6992, 7000, 3, 798, 399, 0, 6993, 7000, 3, 776, 388, 0, 6994, 6995, 7, 30, 0, 0, 6995, 7000, 3, 676, 338, 5, 6996, 6997, 3, 720, 360, 0, 6997, 6998, 3, 676, 338, 2, 6998, 7000, 1, 0, 0, 0, 6999, 6910, 1, 0, 0, 0, 6999, 6913, 1, 0, 0, 0, 6999, 6918, 1, 0, 0, 0, 6999, 6920, 1, 0, 0, 0, 6999, 6922, 1, 0, 0, 0, 6999, 6923, 1, 0, 0, 0, 6999, 6924, 1, 0, 0, 0, 6999, 6925, 1, 0, 0, 0, 6999, 6926, 1, 0, 0, 0, 6999, 6939, 1, 0, 0, 0, 6999, 6942, 1, 0, 0, 0, 6999, 6952, 1, 0, 0, 0, 6999, 6953, 1, 0, 0, 0, 6999, 6954, 1, 0, 0, 0, 6999, 6955, 1, 0, 0, 0, 6999, 6956, 1, 0, 0, 0, 6999, 6961, 1, 0, 0, 0, 6999, 6976, 1, 0, 0, 0, 6999, 6977, 1, 0, 0, 0, 6999, 6981, 1, 0, 0, 0, 6999, 6982, 1, 0, 0, 0, 6999, 6988, 1, 0, 0, 0, 6999, 6992, 1, 0, 0, 0, 6999, 6993, 1, 0, 0, 0, 6999, 6994, 1, 0, 0, 0, 6999, 6996, 1, 0, 0, 0, 7000, 7028, 1, 0, 0, 0, 7001, 7002, 10, 3, 0, 0, 7002, 7003, 3, 718, 359, 0, 7003, 7004, 3, 676, 338, 4, 7004, 7027, 1, 0, 0, 0, 7005, 7006, 10, 6, 0, 0, 7006, 7007, 5, 26, 0, 0, 7007, 7027, 3, 646, 323, 0, 7008, 7009, 10, 4, 0, 0, 7009, 7011, 3, 720, 360, 0, 7010, 7012, 3, 676, 338, 0, 7011, 7010, 1, 0, 0, 0, 7011, 7012, 1, 0, 0, 0, 7012, 7027, 1, 0, 0, 0, 7013, 7014, 10, 1, 0, 0, 7014, 7016, 5, 116, 0, 0, 7015, 7017, 5, 77, 0, 0, 7016, 7015, 1, 0, 0, 0, 7016, 7017, 1, 0, 0, 0, 7017, 7024, 1, 0, 0, 0, 7018, 7019, 5, 56, 0, 0, 7019, 7020, 5, 64, 0, 0, 7020, 7025, 3, 676, 338, 0, 7021, 7022, 5, 275, 0, 0, 7022, 7025, 3, 522, 261, 0, 7023, 7025, 5, 188, 0, 0, 7024, 7018, 1, 0, 0, 0, 7024, 7021, 1, 0, 0, 0, 7024, 7023, 1, 0, 0, 0, 7025, 7027, 1, 0, 0, 0, 7026, 7001, 1, 0, 0, 0, 7026, 7005, 1, 0, 0, 0, 7026, 7008, 1, 0, 0, 0, 7026, 7013, 1, 0, 0, 0, 7027, 7030, 1, 0, 0, 0, 7028, 7026, 1, 0, 0, 0, 7028, 7029, 1, 0, 0, 0, 7029, 677, 1, 0, 0, 0, 7030, 7028, 1, 0, 0, 0, 7031, 7032, 3, 804, 402, 0, 7032, 7053, 5, 2, 0, 0, 7033, 7037, 3, 732, 366, 0, 7034, 7035, 5, 6, 0, 0, 7035, 7036, 5, 101, 0, 0, 7036, 7038, 3, 734, 367, 0, 7037, 7034, 1, 0, 0, 0, 7037, 7038, 1, 0, 0, 0, 7038, 7040, 1, 0, 0, 0, 7039, 7041, 3, 580, 290, 0, 7040, 7039, 1, 0, 0, 0, 7040, 7041, 1, 0, 0, 0, 7041, 7054, 1, 0, 0, 0, 7042, 7043, 5, 101, 0, 0, 7043, 7045, 3, 734, 367, 0, 7044, 7046, 3, 580, 290, 0, 7045, 7044, 1, 0, 0, 0, 7045, 7046, 1, 0, 0, 0, 7046, 7054, 1, 0, 0, 0, 7047, 7048, 7, 81, 0, 0, 7048, 7050, 3, 732, 366, 0, 7049, 7051, 3, 580, 290, 0, 7050, 7049, 1, 0, 0, 0, 7050, 7051, 1, 0, 0, 0, 7051, 7054, 1, 0, 0, 0, 7052, 7054, 5, 9, 0, 0, 7053, 7033, 1, 0, 0, 0, 7053, 7042, 1, 0, 0, 0, 7053, 7047, 1, 0, 0, 0, 7053, 7052, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7055, 1, 0, 0, 0, 7055, 7056, 5, 3, 0, 0, 7056, 679, 1, 0, 0, 0, 7057, 7064, 3, 678, 339, 0, 7058, 7059, 5, 479, 0, 0, 7059, 7060, 5, 66, 0, 0, 7060, 7061, 5, 2, 0, 0, 7061, 7062, 3, 580, 290, 0, 7062, 7063, 5, 3, 0, 0, 7063, 7065, 1, 0, 0, 0, 7064, 7058, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7072, 1, 0, 0, 0, 7066, 7067, 5, 480, 0, 0, 7067, 7068, 5, 2, 0, 0, 7068, 7069, 5, 103, 0, 0, 7069, 7070, 3, 668, 334, 0, 7070, 7071, 5, 3, 0, 0, 7071, 7073, 1, 0, 0, 0, 7072, 7066, 1, 0, 0, 0, 7072, 7073, 1, 0, 0, 0, 7073, 7079, 1, 0, 0, 0, 7074, 7077, 5, 124, 0, 0, 7075, 7078, 3, 704, 352, 0, 7076, 7078, 3, 816, 408, 0, 7077, 7075, 1, 0, 0, 0, 7077, 7076, 1, 0, 0, 0, 7078, 7080, 1, 0, 0, 0, 7079, 7074, 1, 0, 0, 0, 7079, 7080, 1, 0, 0, 0, 7080, 7083, 1, 0, 0, 0, 7081, 7083, 3, 684, 342, 0, 7082, 7057, 1, 0, 0, 0, 7082, 7081, 1, 0, 0, 0, 7083, 681, 1, 0, 0, 0, 7084, 7087, 3, 678, 339, 0, 7085, 7087, 3, 684, 342, 0, 7086, 7084, 1, 0, 0, 0, 7086, 7085, 1, 0, 0, 0, 7087, 683, 1, 0, 0, 0, 7088, 7089, 5, 108, 0, 0, 7089, 7090, 5, 62, 0, 0, 7090, 7091, 5, 2, 0, 0, 7091, 7092, 3, 668, 334, 0, 7092, 7093, 5, 3, 0, 0, 7093, 7263, 1, 0, 0, 0, 7094, 7263, 5, 48, 0, 0, 7095, 7097, 7, 96, 0, 0, 7096, 7098, 3, 654, 327, 0, 7097, 7096, 1, 0, 0, 0, 7097, 7098, 1, 0, 0, 0, 7098, 7263, 1, 0, 0, 0, 7099, 7263, 5, 49, 0, 0, 7100, 7263, 5, 52, 0, 0, 7101, 7263, 5, 89, 0, 0, 7102, 7263, 5, 99, 0, 0, 7103, 7263, 5, 47, 0, 0, 7104, 7263, 5, 111, 0, 0, 7105, 7106, 7, 97, 0, 0, 7106, 7107, 5, 2, 0, 0, 7107, 7108, 3, 668, 334, 0, 7108, 7109, 5, 36, 0, 0, 7109, 7110, 3, 646, 323, 0, 7110, 7111, 5, 3, 0, 0, 7111, 7263, 1, 0, 0, 0, 7112, 7113, 5, 397, 0, 0, 7113, 7118, 5, 2, 0, 0, 7114, 7115, 3, 738, 369, 0, 7115, 7116, 5, 64, 0, 0, 7116, 7117, 3, 668, 334, 0, 7117, 7119, 1, 0, 0, 0, 7118, 7114, 1, 0, 0, 0, 7118, 7119, 1, 0, 0, 0, 7119, 7120, 1, 0, 0, 0, 7120, 7263, 5, 3, 0, 0, 7121, 7122, 5, 489, 0, 0, 7122, 7123, 5, 2, 0, 0, 7123, 7126, 3, 668, 334, 0, 7124, 7125, 5, 6, 0, 0, 7125, 7127, 3, 740, 370, 0, 7126, 7124, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7128, 1, 0, 0, 0, 7128, 7129, 5, 3, 0, 0, 7129, 7263, 1, 0, 0, 0, 7130, 7131, 5, 410, 0, 0, 7131, 7132, 5, 2, 0, 0, 7132, 7133, 3, 668, 334, 0, 7133, 7134, 5, 84, 0, 0, 7134, 7135, 3, 668, 334, 0, 7135, 7136, 5, 64, 0, 0, 7136, 7139, 3, 668, 334, 0, 7137, 7138, 5, 62, 0, 0, 7138, 7140, 3, 668, 334, 0, 7139, 7137, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7142, 5, 3, 0, 0, 7142, 7263, 1, 0, 0, 0, 7143, 7144, 5, 411, 0, 0, 7144, 7149, 5, 2, 0, 0, 7145, 7146, 3, 676, 338, 0, 7146, 7147, 5, 68, 0, 0, 7147, 7148, 3, 676, 338, 0, 7148, 7150, 1, 0, 0, 0, 7149, 7145, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7263, 5, 3, 0, 0, 7152, 7153, 5, 417, 0, 0, 7153, 7155, 5, 2, 0, 0, 7154, 7156, 3, 742, 371, 0, 7155, 7154, 1, 0, 0, 0, 7155, 7156, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7263, 5, 3, 0, 0, 7158, 7159, 5, 421, 0, 0, 7159, 7161, 5, 2, 0, 0, 7160, 7162, 7, 98, 0, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7167, 1, 0, 0, 0, 7163, 7165, 3, 668, 334, 0, 7164, 7163, 1, 0, 0, 0, 7164, 7165, 1, 0, 0, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7168, 5, 64, 0, 0, 7167, 7164, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7169, 1, 0, 0, 0, 7169, 7170, 3, 726, 363, 0, 7170, 7171, 1, 0, 0, 0, 7171, 7172, 5, 3, 0, 0, 7172, 7263, 1, 0, 0, 0, 7173, 7174, 5, 408, 0, 0, 7174, 7175, 5, 2, 0, 0, 7175, 7176, 3, 668, 334, 0, 7176, 7177, 5, 6, 0, 0, 7177, 7178, 3, 668, 334, 0, 7178, 7179, 5, 3, 0, 0, 7179, 7263, 1, 0, 0, 0, 7180, 7181, 7, 99, 0, 0, 7181, 7263, 3, 528, 264, 0, 7182, 7183, 5, 426, 0, 0, 7183, 7184, 5, 2, 0, 0, 7184, 7185, 5, 266, 0, 0, 7185, 7195, 3, 822, 411, 0, 7186, 7193, 5, 6, 0, 0, 7187, 7188, 5, 424, 0, 0, 7188, 7189, 5, 2, 0, 0, 7189, 7190, 3, 686, 343, 0, 7190, 7191, 5, 3, 0, 0, 7191, 7194, 1, 0, 0, 0, 7192, 7194, 3, 726, 363, 0, 7193, 7187, 1, 0, 0, 0, 7193, 7192, 1, 0, 0, 0, 7194, 7196, 1, 0, 0, 0, 7195, 7186, 1, 0, 0, 0, 7195, 7196, 1, 0, 0, 0, 7196, 7197, 1, 0, 0, 0, 7197, 7198, 5, 3, 0, 0, 7198, 7263, 1, 0, 0, 0, 7199, 7200, 5, 427, 0, 0, 7200, 7201, 5, 2, 0, 0, 7201, 7202, 3, 676, 338, 0, 7202, 7203, 3, 692, 346, 0, 7203, 7204, 5, 3, 0, 0, 7204, 7263, 1, 0, 0, 0, 7205, 7206, 5, 428, 0, 0, 7206, 7207, 5, 2, 0, 0, 7207, 7208, 3, 686, 343, 0, 7208, 7209, 5, 3, 0, 0, 7209, 7263, 1, 0, 0, 0, 7210, 7211, 5, 429, 0, 0, 7211, 7212, 5, 2, 0, 0, 7212, 7213, 3, 690, 345, 0, 7213, 7216, 3, 668, 334, 0, 7214, 7215, 7, 100, 0, 0, 7215, 7217, 5, 378, 0, 0, 7216, 7214, 1, 0, 0, 0, 7216, 7217, 1, 0, 0, 0, 7217, 7218, 1, 0, 0, 0, 7218, 7219, 5, 3, 0, 0, 7219, 7263, 1, 0, 0, 0, 7220, 7221, 5, 430, 0, 0, 7221, 7222, 5, 2, 0, 0, 7222, 7223, 5, 266, 0, 0, 7223, 7226, 3, 822, 411, 0, 7224, 7225, 5, 6, 0, 0, 7225, 7227, 3, 668, 334, 0, 7226, 7224, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 7229, 5, 3, 0, 0, 7229, 7263, 1, 0, 0, 0, 7230, 7231, 5, 431, 0, 0, 7231, 7232, 5, 2, 0, 0, 7232, 7233, 5, 383, 0, 0, 7233, 7234, 3, 668, 334, 0, 7234, 7235, 5, 6, 0, 0, 7235, 7239, 5, 375, 0, 0, 7236, 7237, 5, 269, 0, 0, 7237, 7240, 5, 450, 0, 0, 7238, 7240, 3, 668, 334, 0, 7239, 7236, 1, 0, 0, 0, 7239, 7238, 1, 0, 0, 0, 7240, 7250, 1, 0, 0, 0, 7241, 7242, 5, 6, 0, 0, 7242, 7248, 5, 339, 0, 0, 7243, 7245, 5, 269, 0, 0, 7244, 7243, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7246, 1, 0, 0, 0, 7246, 7249, 5, 450, 0, 0, 7247, 7249, 5, 385, 0, 0, 7248, 7244, 1, 0, 0, 0, 7248, 7247, 1, 0, 0, 0, 7249, 7251, 1, 0, 0, 0, 7250, 7241, 1, 0, 0, 0, 7250, 7251, 1, 0, 0, 0, 7251, 7252, 1, 0, 0, 0, 7252, 7253, 5, 3, 0, 0, 7253, 7263, 1, 0, 0, 0, 7254, 7255, 5, 432, 0, 0, 7255, 7256, 5, 2, 0, 0, 7256, 7257, 3, 690, 345, 0, 7257, 7258, 3, 668, 334, 0, 7258, 7259, 5, 36, 0, 0, 7259, 7260, 3, 648, 324, 0, 7260, 7261, 5, 3, 0, 0, 7261, 7263, 1, 0, 0, 0, 7262, 7088, 1, 0, 0, 0, 7262, 7094, 1, 0, 0, 0, 7262, 7095, 1, 0, 0, 0, 7262, 7099, 1, 0, 0, 0, 7262, 7100, 1, 0, 0, 0, 7262, 7101, 1, 0, 0, 0, 7262, 7102, 1, 0, 0, 0, 7262, 7103, 1, 0, 0, 0, 7262, 7104, 1, 0, 0, 0, 7262, 7105, 1, 0, 0, 0, 7262, 7112, 1, 0, 0, 0, 7262, 7121, 1, 0, 0, 0, 7262, 7130, 1, 0, 0, 0, 7262, 7143, 1, 0, 0, 0, 7262, 7152, 1, 0, 0, 0, 7262, 7158, 1, 0, 0, 0, 7262, 7173, 1, 0, 0, 0, 7262, 7180, 1, 0, 0, 0, 7262, 7182, 1, 0, 0, 0, 7262, 7199, 1, 0, 0, 0, 7262, 7205, 1, 0, 0, 0, 7262, 7210, 1, 0, 0, 0, 7262, 7220, 1, 0, 0, 0, 7262, 7230, 1, 0, 0, 0, 7262, 7254, 1, 0, 0, 0, 7263, 685, 1, 0, 0, 0, 7264, 7269, 3, 688, 344, 0, 7265, 7266, 5, 6, 0, 0, 7266, 7268, 3, 688, 344, 0, 7267, 7265, 1, 0, 0, 0, 7268, 7271, 1, 0, 0, 0, 7269, 7267, 1, 0, 0, 0, 7269, 7270, 1, 0, 0, 0, 7270, 687, 1, 0, 0, 0, 7271, 7269, 1, 0, 0, 0, 7272, 7275, 3, 668, 334, 0, 7273, 7274, 5, 36, 0, 0, 7274, 7276, 3, 822, 411, 0, 7275, 7273, 1, 0, 0, 0, 7275, 7276, 1, 0, 0, 0, 7276, 689, 1, 0, 0, 0, 7277, 7278, 7, 101, 0, 0, 7278, 691, 1, 0, 0, 0, 7279, 7281, 5, 286, 0, 0, 7280, 7282, 3, 694, 347, 0, 7281, 7280, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7283, 1, 0, 0, 0, 7283, 7285, 3, 676, 338, 0, 7284, 7286, 3, 694, 347, 0, 7285, 7284, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 693, 1, 0, 0, 0, 7287, 7288, 5, 147, 0, 0, 7288, 7289, 7, 102, 0, 0, 7289, 695, 1, 0, 0, 0, 7290, 7291, 5, 104, 0, 0, 7291, 7296, 3, 700, 350, 0, 7292, 7293, 5, 6, 0, 0, 7293, 7295, 3, 700, 350, 0, 7294, 7292, 1, 0, 0, 0, 7295, 7298, 1, 0, 0, 0, 7296, 7294, 1, 0, 0, 0, 7296, 7297, 1, 0, 0, 0, 7297, 697, 1, 0, 0, 0, 7298, 7296, 1, 0, 0, 0, 7299, 7300, 5, 67, 0, 0, 7300, 7301, 3, 668, 334, 0, 7301, 699, 1, 0, 0, 0, 7302, 7303, 3, 816, 408, 0, 7303, 7304, 5, 36, 0, 0, 7304, 7305, 3, 704, 352, 0, 7305, 701, 1, 0, 0, 0, 7306, 7309, 5, 124, 0, 0, 7307, 7310, 3, 704, 352, 0, 7308, 7310, 3, 816, 408, 0, 7309, 7307, 1, 0, 0, 0, 7309, 7308, 1, 0, 0, 0, 7310, 703, 1, 0, 0, 0, 7311, 7313, 5, 2, 0, 0, 7312, 7314, 3, 816, 408, 0, 7313, 7312, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 7318, 1, 0, 0, 0, 7315, 7316, 5, 285, 0, 0, 7316, 7317, 5, 147, 0, 0, 7317, 7319, 3, 726, 363, 0, 7318, 7315, 1, 0, 0, 0, 7318, 7319, 1, 0, 0, 0, 7319, 7321, 1, 0, 0, 0, 7320, 7322, 3, 580, 290, 0, 7321, 7320, 1, 0, 0, 0, 7321, 7322, 1, 0, 0, 0, 7322, 7324, 1, 0, 0, 0, 7323, 7325, 3, 706, 353, 0, 7324, 7323, 1, 0, 0, 0, 7324, 7325, 1, 0, 0, 0, 7325, 7326, 1, 0, 0, 0, 7326, 7327, 5, 3, 0, 0, 7327, 705, 1, 0, 0, 0, 7328, 7333, 7, 103, 0, 0, 7329, 7330, 5, 387, 0, 0, 7330, 7331, 3, 708, 354, 0, 7331, 7332, 5, 33, 0, 0, 7332, 7334, 1, 0, 0, 0, 7333, 7329, 1, 0, 0, 0, 7333, 7334, 1, 0, 0, 0, 7334, 7335, 1, 0, 0, 0, 7335, 7336, 3, 708, 354, 0, 7336, 7346, 1, 0, 0, 0, 7337, 7344, 5, 199, 0, 0, 7338, 7339, 5, 434, 0, 0, 7339, 7345, 5, 414, 0, 0, 7340, 7345, 5, 66, 0, 0, 7341, 7345, 5, 467, 0, 0, 7342, 7343, 5, 269, 0, 0, 7343, 7345, 5, 482, 0, 0, 7344, 7338, 1, 0, 0, 0, 7344, 7340, 1, 0, 0, 0, 7344, 7341, 1, 0, 0, 0, 7344, 7342, 1, 0, 0, 0, 7345, 7347, 1, 0, 0, 0, 7346, 7337, 1, 0, 0, 0, 7346, 7347, 1, 0, 0, 0, 7347, 707, 1, 0, 0, 0, 7348, 7351, 5, 362, 0, 0, 7349, 7351, 3, 668, 334, 0, 7350, 7348, 1, 0, 0, 0, 7350, 7349, 1, 0, 0, 0, 7351, 7352, 1, 0, 0, 0, 7352, 7356, 7, 104, 0, 0, 7353, 7354, 5, 434, 0, 0, 7354, 7356, 5, 414, 0, 0, 7355, 7350, 1, 0, 0, 0, 7355, 7353, 1, 0, 0, 0, 7356, 709, 1, 0, 0, 0, 7357, 7365, 3, 712, 356, 0, 7358, 7359, 5, 2, 0, 0, 7359, 7360, 3, 726, 363, 0, 7360, 7361, 5, 6, 0, 0, 7361, 7362, 3, 668, 334, 0, 7362, 7363, 5, 3, 0, 0, 7363, 7365, 1, 0, 0, 0, 7364, 7357, 1, 0, 0, 0, 7364, 7358, 1, 0, 0, 0, 7365, 711, 1, 0, 0, 0, 7366, 7367, 5, 414, 0, 0, 7367, 7369, 5, 2, 0, 0, 7368, 7370, 3, 726, 363, 0, 7369, 7368, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7371, 1, 0, 0, 0, 7371, 7372, 5, 3, 0, 0, 7372, 713, 1, 0, 0, 0, 7373, 7374, 7, 105, 0, 0, 7374, 715, 1, 0, 0, 0, 7375, 7378, 5, 29, 0, 0, 7376, 7378, 3, 718, 359, 0, 7377, 7375, 1, 0, 0, 0, 7377, 7376, 1, 0, 0, 0, 7378, 717, 1, 0, 0, 0, 7379, 7380, 7, 106, 0, 0, 7380, 719, 1, 0, 0, 0, 7381, 7388, 5, 29, 0, 0, 7382, 7383, 5, 278, 0, 0, 7383, 7384, 5, 2, 0, 0, 7384, 7385, 3, 408, 204, 0, 7385, 7386, 5, 3, 0, 0, 7386, 7388, 1, 0, 0, 0, 7387, 7381, 1, 0, 0, 0, 7387, 7382, 1, 0, 0, 0, 7388, 721, 1, 0, 0, 0, 7389, 7396, 3, 716, 358, 0, 7390, 7391, 5, 278, 0, 0, 7391, 7392, 5, 2, 0, 0, 7392, 7393, 3, 408, 204, 0, 7393, 7394, 5, 3, 0, 0, 7394, 7396, 1, 0, 0, 0, 7395, 7389, 1, 0, 0, 0, 7395, 7390, 1, 0, 0, 0, 7396, 723, 1, 0, 0, 0, 7397, 7403, 3, 722, 361, 0, 7398, 7400, 5, 77, 0, 0, 7399, 7398, 1, 0, 0, 0, 7399, 7400, 1, 0, 0, 0, 7400, 7401, 1, 0, 0, 0, 7401, 7403, 7, 107, 0, 0, 7402, 7397, 1, 0, 0, 0, 7402, 7399, 1, 0, 0, 0, 7403, 725, 1, 0, 0, 0, 7404, 7409, 3, 668, 334, 0, 7405, 7406, 5, 6, 0, 0, 7406, 7408, 3, 668, 334, 0, 7407, 7405, 1, 0, 0, 0, 7408, 7411, 1, 0, 0, 0, 7409, 7407, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 727, 1, 0, 0, 0, 7411, 7409, 1, 0, 0, 0, 7412, 7413, 5, 2, 0, 0, 7413, 7414, 3, 668, 334, 0, 7414, 7415, 5, 3, 0, 0, 7415, 7418, 1, 0, 0, 0, 7416, 7418, 3, 796, 398, 0, 7417, 7412, 1, 0, 0, 0, 7417, 7416, 1, 0, 0, 0, 7418, 729, 1, 0, 0, 0, 7419, 7422, 3, 668, 334, 0, 7420, 7422, 3, 796, 398, 0, 7421, 7419, 1, 0, 0, 0, 7421, 7420, 1, 0, 0, 0, 7422, 731, 1, 0, 0, 0, 7423, 7428, 3, 734, 367, 0, 7424, 7425, 5, 6, 0, 0, 7425, 7427, 3, 734, 367, 0, 7426, 7424, 1, 0, 0, 0, 7427, 7430, 1, 0, 0, 0, 7428, 7426, 1, 0, 0, 0, 7428, 7429, 1, 0, 0, 0, 7429, 733, 1, 0, 0, 0, 7430, 7428, 1, 0, 0, 0, 7431, 7439, 3, 796, 398, 0, 7432, 7439, 3, 668, 334, 0, 7433, 7436, 3, 818, 409, 0, 7434, 7435, 7, 108, 0, 0, 7435, 7437, 3, 668, 334, 0, 7436, 7434, 1, 0, 0, 0, 7436, 7437, 1, 0, 0, 0, 7437, 7439, 1, 0, 0, 0, 7438, 7431, 1, 0, 0, 0, 7438, 7432, 1, 0, 0, 0, 7438, 7433, 1, 0, 0, 0, 7439, 735, 1, 0, 0, 0, 7440, 7450, 5, 4, 0, 0, 7441, 7451, 3, 726, 363, 0, 7442, 7447, 3, 736, 368, 0, 7443, 7444, 5, 6, 0, 0, 7444, 7446, 3, 736, 368, 0, 7445, 7443, 1, 0, 0, 0, 7446, 7449, 1, 0, 0, 0, 7447, 7445, 1, 0, 0, 0, 7447, 7448, 1, 0, 0, 0, 7448, 7451, 1, 0, 0, 0, 7449, 7447, 1, 0, 0, 0, 7450, 7441, 1, 0, 0, 0, 7450, 7442, 1, 0, 0, 0, 7450, 7451, 1, 0, 0, 0, 7451, 7452, 1, 0, 0, 0, 7452, 7453, 5, 5, 0, 0, 7453, 737, 1, 0, 0, 0, 7454, 7463, 3, 824, 412, 0, 7455, 7463, 5, 384, 0, 0, 7456, 7463, 5, 264, 0, 0, 7457, 7463, 5, 176, 0, 0, 7458, 7463, 5, 218, 0, 0, 7459, 7463, 5, 261, 0, 0, 7460, 7463, 5, 326, 0, 0, 7461, 7463, 3, 806, 403, 0, 7462, 7454, 1, 0, 0, 0, 7462, 7455, 1, 0, 0, 0, 7462, 7456, 1, 0, 0, 0, 7462, 7457, 1, 0, 0, 0, 7462, 7458, 1, 0, 0, 0, 7462, 7459, 1, 0, 0, 0, 7462, 7460, 1, 0, 0, 0, 7462, 7461, 1, 0, 0, 0, 7463, 739, 1, 0, 0, 0, 7464, 7465, 7, 109, 0, 0, 7465, 741, 1, 0, 0, 0, 7466, 7467, 3, 668, 334, 0, 7467, 7468, 5, 64, 0, 0, 7468, 7471, 3, 668, 334, 0, 7469, 7470, 5, 62, 0, 0, 7470, 7472, 3, 668, 334, 0, 7471, 7469, 1, 0, 0, 0, 7471, 7472, 1, 0, 0, 0, 7472, 7488, 1, 0, 0, 0, 7473, 7474, 3, 668, 334, 0, 7474, 7475, 5, 62, 0, 0, 7475, 7478, 3, 668, 334, 0, 7476, 7477, 5, 64, 0, 0, 7477, 7479, 3, 668, 334, 0, 7478, 7476, 1, 0, 0, 0, 7478, 7479, 1, 0, 0, 0, 7479, 7488, 1, 0, 0, 0, 7480, 7481, 3, 668, 334, 0, 7481, 7482, 5, 127, 0, 0, 7482, 7483, 3, 668, 334, 0, 7483, 7484, 5, 197, 0, 0, 7484, 7485, 3, 668, 334, 0, 7485, 7488, 1, 0, 0, 0, 7486, 7488, 3, 726, 363, 0, 7487, 7466, 1, 0, 0, 0, 7487, 7473, 1, 0, 0, 0, 7487, 7480, 1, 0, 0, 0, 7487, 7486, 1, 0, 0, 0, 7488, 743, 1, 0, 0, 0, 7489, 7490, 5, 102, 0, 0, 7490, 7491, 3, 668, 334, 0, 7491, 7492, 5, 93, 0, 0, 7492, 7493, 3, 668, 334, 0, 7493, 745, 1, 0, 0, 0, 7494, 7497, 5, 11, 0, 0, 7495, 7498, 3, 822, 411, 0, 7496, 7498, 5, 9, 0, 0, 7497, 7495, 1, 0, 0, 0, 7497, 7496, 1, 0, 0, 0, 7498, 7512, 1, 0, 0, 0, 7499, 7508, 5, 4, 0, 0, 7500, 7509, 3, 668, 334, 0, 7501, 7503, 3, 668, 334, 0, 7502, 7501, 1, 0, 0, 0, 7502, 7503, 1, 0, 0, 0, 7503, 7504, 1, 0, 0, 0, 7504, 7506, 5, 8, 0, 0, 7505, 7507, 3, 668, 334, 0, 7506, 7505, 1, 0, 0, 0, 7506, 7507, 1, 0, 0, 0, 7507, 7509, 1, 0, 0, 0, 7508, 7500, 1, 0, 0, 0, 7508, 7502, 1, 0, 0, 0, 7509, 7510, 1, 0, 0, 0, 7510, 7512, 5, 5, 0, 0, 7511, 7494, 1, 0, 0, 0, 7511, 7499, 1, 0, 0, 0, 7512, 747, 1, 0, 0, 0, 7513, 7515, 3, 746, 373, 0, 7514, 7513, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 7514, 1, 0, 0, 0, 7516, 7517, 1, 0, 0, 0, 7517, 749, 1, 0, 0, 0, 7518, 7520, 3, 746, 373, 0, 7519, 7518, 1, 0, 0, 0, 7520, 7523, 1, 0, 0, 0, 7521, 7519, 1, 0, 0, 0, 7521, 7522, 1, 0, 0, 0, 7522, 751, 1, 0, 0, 0, 7523, 7521, 1, 0, 0, 0, 7524, 7529, 3, 754, 377, 0, 7525, 7526, 5, 6, 0, 0, 7526, 7528, 3, 754, 377, 0, 7527, 7525, 1, 0, 0, 0, 7528, 7531, 1, 0, 0, 0, 7529, 7527, 1, 0, 0, 0, 7529, 7530, 1, 0, 0, 0, 7530, 753, 1, 0, 0, 0, 7531, 7529, 1, 0, 0, 0, 7532, 7537, 3, 730, 365, 0, 7533, 7534, 5, 36, 0, 0, 7534, 7538, 3, 822, 411, 0, 7535, 7538, 3, 824, 412, 0, 7536, 7538, 1, 0, 0, 0, 7537, 7533, 1, 0, 0, 0, 7537, 7535, 1, 0, 0, 0, 7537, 7536, 1, 0, 0, 0, 7538, 7541, 1, 0, 0, 0, 7539, 7541, 5, 9, 0, 0, 7540, 7532, 1, 0, 0, 0, 7540, 7539, 1, 0, 0, 0, 7541, 755, 1, 0, 0, 0, 7542, 7547, 3, 776, 388, 0, 7543, 7544, 5, 6, 0, 0, 7544, 7546, 3, 776, 388, 0, 7545, 7543, 1, 0, 0, 0, 7546, 7549, 1, 0, 0, 0, 7547, 7545, 1, 0, 0, 0, 7547, 7548, 1, 0, 0, 0, 7548, 757, 1, 0, 0, 0, 7549, 7547, 1, 0, 0, 0, 7550, 7555, 3, 770, 385, 0, 7551, 7552, 5, 6, 0, 0, 7552, 7554, 3, 770, 385, 0, 7553, 7551, 1, 0, 0, 0, 7554, 7557, 1, 0, 0, 0, 7555, 7553, 1, 0, 0, 0, 7555, 7556, 1, 0, 0, 0, 7556, 759, 1, 0, 0, 0, 7557, 7555, 1, 0, 0, 0, 7558, 7563, 3, 786, 393, 0, 7559, 7560, 5, 6, 0, 0, 7560, 7562, 3, 786, 393, 0, 7561, 7559, 1, 0, 0, 0, 7562, 7565, 1, 0, 0, 0, 7563, 7561, 1, 0, 0, 0, 7563, 7564, 1, 0, 0, 0, 7564, 761, 1, 0, 0, 0, 7565, 7563, 1, 0, 0, 0, 7566, 7571, 3, 784, 392, 0, 7567, 7568, 5, 6, 0, 0, 7568, 7570, 3, 784, 392, 0, 7569, 7567, 1, 0, 0, 0, 7570, 7573, 1, 0, 0, 0, 7571, 7569, 1, 0, 0, 0, 7571, 7572, 1, 0, 0, 0, 7572, 763, 1, 0, 0, 0, 7573, 7571, 1, 0, 0, 0, 7574, 7575, 3, 776, 388, 0, 7575, 765, 1, 0, 0, 0, 7576, 7577, 3, 776, 388, 0, 7577, 767, 1, 0, 0, 0, 7578, 7579, 3, 776, 388, 0, 7579, 769, 1, 0, 0, 0, 7580, 7581, 3, 776, 388, 0, 7581, 771, 1, 0, 0, 0, 7582, 7583, 3, 776, 388, 0, 7583, 773, 1, 0, 0, 0, 7584, 7585, 3, 310, 155, 0, 7585, 775, 1, 0, 0, 0, 7586, 7588, 3, 816, 408, 0, 7587, 7589, 3, 748, 374, 0, 7588, 7587, 1, 0, 0, 0, 7588, 7589, 1, 0, 0, 0, 7589, 777, 1, 0, 0, 0, 7590, 7595, 3, 766, 383, 0, 7591, 7592, 5, 6, 0, 0, 7592, 7594, 3, 766, 383, 0, 7593, 7591, 1, 0, 0, 0, 7594, 7597, 1, 0, 0, 0, 7595, 7593, 1, 0, 0, 0, 7595, 7596, 1, 0, 0, 0, 7596, 779, 1, 0, 0, 0, 7597, 7595, 1, 0, 0, 0, 7598, 7603, 3, 816, 408, 0, 7599, 7600, 5, 6, 0, 0, 7600, 7602, 3, 816, 408, 0, 7601, 7599, 1, 0, 0, 0, 7602, 7605, 1, 0, 0, 0, 7603, 7601, 1, 0, 0, 0, 7603, 7604, 1, 0, 0, 0, 7604, 781, 1, 0, 0, 0, 7605, 7603, 1, 0, 0, 0, 7606, 7607, 3, 310, 155, 0, 7607, 783, 1, 0, 0, 0, 7608, 7609, 3, 310, 155, 0, 7609, 785, 1, 0, 0, 0, 7610, 7611, 3, 310, 155, 0, 7611, 787, 1, 0, 0, 0, 7612, 7613, 3, 816, 408, 0, 7613, 789, 1, 0, 0, 0, 7614, 7615, 3, 816, 408, 0, 7615, 791, 1, 0, 0, 0, 7616, 7621, 3, 818, 409, 0, 7617, 7618, 3, 816, 408, 0, 7618, 7619, 3, 748, 374, 0, 7619, 7621, 1, 0, 0, 0, 7620, 7616, 1, 0, 0, 0, 7620, 7617, 1, 0, 0, 0, 7621, 793, 1, 0, 0, 0, 7622, 7627, 3, 818, 409, 0, 7623, 7624, 3, 816, 408, 0, 7624, 7625, 3, 748, 374, 0, 7625, 7627, 1, 0, 0, 0, 7626, 7622, 1, 0, 0, 0, 7626, 7623, 1, 0, 0, 0, 7627, 795, 1, 0, 0, 0, 7628, 7629, 3, 816, 408, 0, 7629, 7630, 3, 750, 375, 0, 7630, 7633, 1, 0, 0, 0, 7631, 7633, 4, 398, 10, 0, 7632, 7628, 1, 0, 0, 0, 7632, 7631, 1, 0, 0, 0, 7633, 797, 1, 0, 0, 0, 7634, 7635, 3, 816, 408, 0, 7635, 7636, 3, 750, 375, 0, 7636, 799, 1, 0, 0, 0, 7637, 7638, 3, 816, 408, 0, 7638, 801, 1, 0, 0, 0, 7639, 7644, 3, 818, 409, 0, 7640, 7641, 3, 816, 408, 0, 7641, 7642, 3, 748, 374, 0, 7642, 7644, 1, 0, 0, 0, 7643, 7639, 1, 0, 0, 0, 7643, 7640, 1, 0, 0, 0, 7644, 803, 1, 0, 0, 0, 7645, 7650, 3, 818, 409, 0, 7646, 7647, 3, 816, 408, 0, 7647, 7648, 3, 748, 374, 0, 7648, 7650, 1, 0, 0, 0, 7649, 7645, 1, 0, 0, 0, 7649, 7646, 1, 0, 0, 0, 7650, 805, 1, 0, 0, 0, 7651, 7654, 3, 808, 404, 0, 7652, 7653, 5, 487, 0, 0, 7653, 7655, 3, 808, 404, 0, 7654, 7652, 1, 0, 0, 0, 7654, 7655, 1, 0, 0, 0, 7655, 807, 1, 0, 0, 0, 7656, 7668, 5, 561, 0, 0, 7657, 7668, 5, 563, 0, 0, 7658, 7662, 5, 565, 0, 0, 7659, 7661, 5, 590, 0, 0, 7660, 7659, 1, 0, 0, 0, 7661, 7664, 1, 0, 0, 0, 7662, 7660, 1, 0, 0, 0, 7662, 7663, 1, 0, 0, 0, 7663, 7665, 1, 0, 0, 0, 7664, 7662, 1, 0, 0, 0, 7665, 7668, 5, 591, 0, 0, 7666, 7668, 5, 586, 0, 0, 7667, 7656, 1, 0, 0, 0, 7667, 7657, 1, 0, 0, 0, 7667, 7658, 1, 0, 0, 0, 7667, 7666, 1, 0, 0, 0, 7668, 809, 1, 0, 0, 0, 7669, 7671, 7, 30, 0, 0, 7670, 7669, 1, 0, 0, 0, 7670, 7671, 1, 0, 0, 0, 7671, 7672, 1, 0, 0, 0, 7672, 7673, 5, 574, 0, 0, 7673, 811, 1, 0, 0, 0, 7674, 7680, 3, 820, 410, 0, 7675, 7680, 5, 52, 0, 0, 7676, 7680, 5, 49, 0, 0, 7677, 7680, 5, 89, 0, 0, 7678, 7680, 5, 524, 0, 0, 7679, 7674, 1, 0, 0, 0, 7679, 7675, 1, 0, 0, 0, 7679, 7676, 1, 0, 0, 0, 7679, 7677, 1, 0, 0, 0, 7679, 7678, 1, 0, 0, 0, 7680, 813, 1, 0, 0, 0, 7681, 7686, 3, 812, 406, 0, 7682, 7683, 5, 6, 0, 0, 7683, 7685, 3, 812, 406, 0, 7684, 7682, 1, 0, 0, 0, 7685, 7688, 1, 0, 0, 0, 7686, 7684, 1, 0, 0, 0, 7686, 7687, 1, 0, 0, 0, 7687, 815, 1, 0, 0, 0, 7688, 7686, 1, 0, 0, 0, 7689, 7692, 3, 824, 412, 0, 7690, 7692, 3, 828, 414, 0, 7691, 7689, 1, 0, 0, 0, 7691, 7690, 1, 0, 0, 0, 7692, 817, 1, 0, 0, 0, 7693, 7696, 3, 824, 412, 0, 7694, 7696, 3, 830, 415, 0, 7695, 7693, 1, 0, 0, 0, 7695, 7694, 1, 0, 0, 0, 7696, 819, 1, 0, 0, 0, 7697, 7701, 3, 824, 412, 0, 7698, 7701, 3, 828, 414, 0, 7699, 7701, 3, 830, 415, 0, 7700, 7697, 1, 0, 0, 0, 7700, 7698, 1, 0, 0, 0, 7700, 7699, 1, 0, 0, 0, 7701, 821, 1, 0, 0, 0, 7702, 7707, 3, 824, 412, 0, 7703, 7707, 3, 828, 414, 0, 7704, 7707, 3, 830, 415, 0, 7705, 7707, 3, 832, 416, 0, 7706, 7702, 1, 0, 0, 0, 7706, 7703, 1, 0, 0, 0, 7706, 7704, 1, 0, 0, 0, 7706, 7705, 1, 0, 0, 0, 7707, 823, 1, 0, 0, 0, 7708, 7711, 5, 552, 0, 0, 7709, 7710, 5, 487, 0, 0, 7710, 7712, 3, 808, 404, 0, 7711, 7709, 1, 0, 0, 0, 7711, 7712, 1, 0, 0, 0, 7712, 7720, 1, 0, 0, 0, 7713, 7720, 3, 806, 403, 0, 7714, 7720, 5, 553, 0, 0, 7715, 7720, 5, 557, 0, 0, 7716, 7720, 5, 577, 0, 0, 7717, 7720, 5, 578, 0, 0, 7718, 7720, 3, 826, 413, 0, 7719, 7708, 1, 0, 0, 0, 7719, 7713, 1, 0, 0, 0, 7719, 7714, 1, 0, 0, 0, 7719, 7715, 1, 0, 0, 0, 7719, 7716, 1, 0, 0, 0, 7719, 7717, 1, 0, 0, 0, 7719, 7718, 1, 0, 0, 0, 7720, 825, 1, 0, 0, 0, 7721, 7722, 7, 110, 0, 0, 7722, 827, 1, 0, 0, 0, 7723, 7775, 5, 387, 0, 0, 7724, 7775, 5, 388, 0, 0, 7725, 7775, 3, 656, 328, 0, 7726, 7775, 5, 390, 0, 0, 7727, 7775, 5, 391, 0, 0, 7728, 7775, 3, 658, 329, 0, 7729, 7775, 5, 393, 0, 0, 7730, 7775, 5, 394, 0, 0, 7731, 7775, 5, 395, 0, 0, 7732, 7775, 5, 396, 0, 0, 7733, 7775, 5, 397, 0, 0, 7734, 7775, 5, 398, 0, 0, 7735, 7775, 5, 399, 0, 0, 7736, 7775, 5, 470, 0, 0, 7737, 7775, 5, 400, 0, 0, 7738, 7775, 5, 401, 0, 0, 7739, 7775, 5, 402, 0, 0, 7740, 7775, 5, 403, 0, 0, 7741, 7775, 5, 404, 0, 0, 7742, 7775, 5, 405, 0, 0, 7743, 7775, 5, 406, 0, 0, 7744, 7775, 5, 407, 0, 0, 7745, 7775, 5, 489, 0, 0, 7746, 7775, 5, 408, 0, 0, 7747, 7775, 3, 652, 326, 0, 7748, 7775, 5, 453, 0, 0, 7749, 7775, 5, 410, 0, 0, 7750, 7775, 5, 411, 0, 0, 7751, 7775, 5, 412, 0, 0, 7752, 7775, 5, 413, 0, 0, 7753, 7775, 5, 414, 0, 0, 7754, 7775, 5, 415, 0, 0, 7755, 7775, 5, 416, 0, 0, 7756, 7775, 5, 417, 0, 0, 7757, 7775, 5, 418, 0, 0, 7758, 7775, 5, 419, 0, 0, 7759, 7775, 5, 420, 0, 0, 7760, 7775, 5, 421, 0, 0, 7761, 7775, 5, 422, 0, 0, 7762, 7775, 5, 423, 0, 0, 7763, 7775, 5, 424, 0, 0, 7764, 7775, 5, 425, 0, 0, 7765, 7775, 5, 426, 0, 0, 7766, 7775, 5, 427, 0, 0, 7767, 7775, 5, 428, 0, 0, 7768, 7775, 5, 476, 0, 0, 7769, 7775, 5, 429, 0, 0, 7770, 7775, 5, 430, 0, 0, 7771, 7775, 5, 431, 0, 0, 7772, 7775, 5, 432, 0, 0, 7773, 7775, 5, 474, 0, 0, 7774, 7723, 1, 0, 0, 0, 7774, 7724, 1, 0, 0, 0, 7774, 7725, 1, 0, 0, 0, 7774, 7726, 1, 0, 0, 0, 7774, 7727, 1, 0, 0, 0, 7774, 7728, 1, 0, 0, 0, 7774, 7729, 1, 0, 0, 0, 7774, 7730, 1, 0, 0, 0, 7774, 7731, 1, 0, 0, 0, 7774, 7732, 1, 0, 0, 0, 7774, 7733, 1, 0, 0, 0, 7774, 7734, 1, 0, 0, 0, 7774, 7735, 1, 0, 0, 0, 7774, 7736, 1, 0, 0, 0, 7774, 7737, 1, 0, 0, 0, 7774, 7738, 1, 0, 0, 0, 7774, 7739, 1, 0, 0, 0, 7774, 7740, 1, 0, 0, 0, 7774, 7741, 1, 0, 0, 0, 7774, 7742, 1, 0, 0, 0, 7774, 7743, 1, 0, 0, 0, 7774, 7744, 1, 0, 0, 0, 7774, 7745, 1, 0, 0, 0, 7774, 7746, 1, 0, 0, 0, 7774, 7747, 1, 0, 0, 0, 7774, 7748, 1, 0, 0, 0, 7774, 7749, 1, 0, 0, 0, 7774, 7750, 1, 0, 0, 0, 7774, 7751, 1, 0, 0, 0, 7774, 7752, 1, 0, 0, 0, 7774, 7753, 1, 0, 0, 0, 7774, 7754, 1, 0, 0, 0, 7774, 7755, 1, 0, 0, 0, 7774, 7756, 1, 0, 0, 0, 7774, 7757, 1, 0, 0, 0, 7774, 7758, 1, 0, 0, 0, 7774, 7759, 1, 0, 0, 0, 7774, 7760, 1, 0, 0, 0, 7774, 7761, 1, 0, 0, 0, 7774, 7762, 1, 0, 0, 0, 7774, 7763, 1, 0, 0, 0, 7774, 7764, 1, 0, 0, 0, 7774, 7765, 1, 0, 0, 0, 7774, 7766, 1, 0, 0, 0, 7774, 7767, 1, 0, 0, 0, 7774, 7768, 1, 0, 0, 0, 7774, 7769, 1, 0, 0, 0, 7774, 7770, 1, 0, 0, 0, 7774, 7771, 1, 0, 0, 0, 7774, 7772, 1, 0, 0, 0, 7774, 7773, 1, 0, 0, 0, 7775, 829, 1, 0, 0, 0, 7776, 7777, 7, 111, 0, 0, 7777, 831, 1, 0, 0, 0, 7778, 7779, 7, 112, 0, 0, 7779, 833, 1, 0, 0, 0, 7780, 7782, 3, 836, 418, 0, 7781, 7780, 1, 0, 0, 0, 7781, 7782, 1, 0, 0, 0, 7782, 7793, 1, 0, 0, 0, 7783, 7791, 5, 178, 0, 0, 7784, 7788, 3, 838, 419, 0, 7785, 7788, 5, 178, 0, 0, 7786, 7788, 3, 836, 418, 0, 7787, 7784, 1, 0, 0, 0, 7787, 7785, 1, 0, 0, 0, 7787, 7786, 1, 0, 0, 0, 7788, 7789, 1, 0, 0, 0, 7789, 7787, 1, 0, 0, 0, 7789, 7790, 1, 0, 0, 0, 7790, 7792, 1, 0, 0, 0, 7791, 7787, 1, 0, 0, 0, 7791, 7792, 1, 0, 0, 0, 7792, 7794, 1, 0, 0, 0, 7793, 7783, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7795, 1, 0, 0, 0, 7795, 7799, 5, 146, 0, 0, 7796, 7798, 3, 844, 422, 0, 7797, 7796, 1, 0, 0, 0, 7798, 7801, 1, 0, 0, 0, 7799, 7797, 1, 0, 0, 0, 7799, 7800, 1, 0, 0, 0, 7800, 7803, 1, 0, 0, 0, 7801, 7799, 1, 0, 0, 0, 7802, 7804, 3, 922, 461, 0, 7803, 7802, 1, 0, 0, 0, 7803, 7804, 1, 0, 0, 0, 7804, 7805, 1, 0, 0, 0, 7805, 7807, 5, 454, 0, 0, 7806, 7808, 3, 926, 463, 0, 7807, 7806, 1, 0, 0, 0, 7807, 7808, 1, 0, 0, 0, 7808, 835, 1, 0, 0, 0, 7809, 7810, 5, 18, 0, 0, 7810, 7811, 3, 926, 463, 0, 7811, 7812, 5, 19, 0, 0, 7812, 837, 1, 0, 0, 0, 7813, 7860, 3, 926, 463, 0, 7814, 7815, 5, 496, 0, 0, 7815, 7818, 5, 62, 0, 0, 7816, 7819, 5, 28, 0, 0, 7817, 7819, 3, 816, 408, 0, 7818, 7816, 1, 0, 0, 0, 7818, 7817, 1, 0, 0, 0, 7819, 7861, 1, 0, 0, 0, 7820, 7822, 5, 497, 0, 0, 7821, 7820, 1, 0, 0, 0, 7821, 7822, 1, 0, 0, 0, 7822, 7823, 1, 0, 0, 0, 7823, 7825, 3, 646, 323, 0, 7824, 7826, 3, 90, 45, 0, 7825, 7824, 1, 0, 0, 0, 7825, 7826, 1, 0, 0, 0, 7826, 7829, 1, 0, 0, 0, 7827, 7828, 5, 77, 0, 0, 7828, 7830, 5, 78, 0, 0, 7829, 7827, 1, 0, 0, 0, 7829, 7830, 1, 0, 0, 0, 7830, 7836, 1, 0, 0, 0, 7831, 7834, 3, 842, 421, 0, 7832, 7834, 5, 53, 0, 0, 7833, 7831, 1, 0, 0, 0, 7833, 7832, 1, 0, 0, 0, 7834, 7835, 1, 0, 0, 0, 7835, 7837, 3, 928, 464, 0, 7836, 7833, 1, 0, 0, 0, 7836, 7837, 1, 0, 0, 0, 7837, 7861, 1, 0, 0, 0, 7838, 7840, 5, 269, 0, 0, 7839, 7838, 1, 0, 0, 0, 7839, 7840, 1, 0, 0, 0, 7840, 7841, 1, 0, 0, 0, 7841, 7843, 5, 324, 0, 0, 7842, 7839, 1, 0, 0, 0, 7842, 7843, 1, 0, 0, 0, 7843, 7844, 1, 0, 0, 0, 7844, 7856, 5, 172, 0, 0, 7845, 7846, 5, 2, 0, 0, 7846, 7851, 3, 840, 420, 0, 7847, 7848, 5, 6, 0, 0, 7848, 7850, 3, 840, 420, 0, 7849, 7847, 1, 0, 0, 0, 7850, 7853, 1, 0, 0, 0, 7851, 7849, 1, 0, 0, 0, 7851, 7852, 1, 0, 0, 0, 7852, 7854, 1, 0, 0, 0, 7853, 7851, 1, 0, 0, 0, 7854, 7855, 5, 3, 0, 0, 7855, 7857, 1, 0, 0, 0, 7856, 7845, 1, 0, 0, 0, 7856, 7857, 1, 0, 0, 0, 7857, 7858, 1, 0, 0, 0, 7858, 7859, 7, 113, 0, 0, 7859, 7861, 3, 554, 277, 0, 7860, 7814, 1, 0, 0, 0, 7860, 7821, 1, 0, 0, 0, 7860, 7842, 1, 0, 0, 0, 7861, 7862, 1, 0, 0, 0, 7862, 7863, 5, 7, 0, 0, 7863, 839, 1, 0, 0, 0, 7864, 7865, 3, 926, 463, 0, 7865, 7866, 3, 646, 323, 0, 7866, 841, 1, 0, 0, 0, 7867, 7868, 7, 114, 0, 0, 7868, 843, 1, 0, 0, 0, 7869, 7870, 3, 834, 417, 0, 7870, 7871, 5, 7, 0, 0, 7871, 7894, 1, 0, 0, 0, 7872, 7894, 3, 872, 436, 0, 7873, 7894, 3, 874, 437, 0, 7874, 7894, 3, 850, 425, 0, 7875, 7894, 3, 858, 429, 0, 7876, 7894, 3, 862, 431, 0, 7877, 7894, 3, 864, 432, 0, 7878, 7894, 3, 868, 434, 0, 7879, 7894, 3, 870, 435, 0, 7880, 7894, 3, 878, 439, 0, 7881, 7894, 3, 882, 441, 0, 7882, 7894, 3, 884, 442, 0, 7883, 7894, 3, 846, 423, 0, 7884, 7894, 3, 848, 424, 0, 7885, 7894, 3, 852, 426, 0, 7886, 7894, 3, 888, 444, 0, 7887, 7894, 3, 892, 446, 0, 7888, 7894, 3, 896, 448, 0, 7889, 7894, 3, 912, 456, 0, 7890, 7894, 3, 914, 457, 0, 7891, 7894, 3, 916, 458, 0, 7892, 7894, 3, 918, 459, 0, 7893, 7869, 1, 0, 0, 0, 7893, 7872, 1, 0, 0, 0, 7893, 7873, 1, 0, 0, 0, 7893, 7874, 1, 0, 0, 0, 7893, 7875, 1, 0, 0, 0, 7893, 7876, 1, 0, 0, 0, 7893, 7877, 1, 0, 0, 0, 7893, 7878, 1, 0, 0, 0, 7893, 7879, 1, 0, 0, 0, 7893, 7880, 1, 0, 0, 0, 7893, 7881, 1, 0, 0, 0, 7893, 7882, 1, 0, 0, 0, 7893, 7883, 1, 0, 0, 0, 7893, 7884, 1, 0, 0, 0, 7893, 7885, 1, 0, 0, 0, 7893, 7886, 1, 0, 0, 0, 7893, 7887, 1, 0, 0, 0, 7893, 7888, 1, 0, 0, 0, 7893, 7889, 1, 0, 0, 0, 7893, 7890, 1, 0, 0, 0, 7893, 7891, 1, 0, 0, 0, 7893, 7892, 1, 0, 0, 0, 7894, 845, 1, 0, 0, 0, 7895, 7896, 5, 498, 0, 0, 7896, 7897, 3, 928, 464, 0, 7897, 7898, 5, 7, 0, 0, 7898, 847, 1, 0, 0, 0, 7899, 7900, 5, 433, 0, 0, 7900, 7907, 3, 926, 463, 0, 7901, 7903, 5, 2, 0, 0, 7902, 7904, 3, 726, 363, 0, 7903, 7902, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 1, 0, 0, 0, 7905, 7906, 5, 3, 0, 0, 7906, 7908, 5, 7, 0, 0, 7907, 7901, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7919, 1, 0, 0, 0, 7909, 7910, 5, 57, 0, 0, 7910, 7911, 3, 926, 463, 0, 7911, 7913, 5, 2, 0, 0, 7912, 7914, 3, 726, 363, 0, 7913, 7912, 1, 0, 0, 0, 7913, 7914, 1, 0, 0, 0, 7914, 7915, 1, 0, 0, 0, 7915, 7916, 5, 3, 0, 0, 7916, 7917, 5, 7, 0, 0, 7917, 7919, 1, 0, 0, 0, 7918, 7899, 1, 0, 0, 0, 7918, 7909, 1, 0, 0, 0, 7919, 849, 1, 0, 0, 0, 7920, 7921, 3, 856, 428, 0, 7921, 7922, 3, 842, 421, 0, 7922, 7923, 3, 928, 464, 0, 7923, 7924, 5, 7, 0, 0, 7924, 851, 1, 0, 0, 0, 7925, 7927, 5, 499, 0, 0, 7926, 7928, 7, 115, 0, 0, 7927, 7926, 1, 0, 0, 0, 7927, 7928, 1, 0, 0, 0, 7928, 7929, 1, 0, 0, 0, 7929, 7930, 5, 500, 0, 0, 7930, 7935, 3, 854, 427, 0, 7931, 7932, 5, 6, 0, 0, 7932, 7934, 3, 854, 427, 0, 7933, 7931, 1, 0, 0, 0, 7934, 7937, 1, 0, 0, 0, 7935, 7933, 1, 0, 0, 0, 7935, 7936, 1, 0, 0, 0, 7936, 7938, 1, 0, 0, 0, 7937, 7935, 1, 0, 0, 0, 7938, 7939, 5, 7, 0, 0, 7939, 853, 1, 0, 0, 0, 7940, 7941, 3, 856, 428, 0, 7941, 7942, 3, 842, 421, 0, 7942, 7943, 3, 816, 408, 0, 7943, 855, 1, 0, 0, 0, 7944, 7947, 3, 310, 155, 0, 7945, 7947, 5, 28, 0, 0, 7946, 7944, 1, 0, 0, 0, 7946, 7945, 1, 0, 0, 0, 7947, 7954, 1, 0, 0, 0, 7948, 7949, 5, 4, 0, 0, 7949, 7950, 3, 668, 334, 0, 7950, 7951, 5, 5, 0, 0, 7951, 7953, 1, 0, 0, 0, 7952, 7948, 1, 0, 0, 0, 7953, 7956, 1, 0, 0, 0, 7954, 7952, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 857, 1, 0, 0, 0, 7956, 7954, 1, 0, 0, 0, 7957, 7958, 5, 220, 0, 0, 7958, 7959, 3, 928, 464, 0, 7959, 7963, 5, 93, 0, 0, 7960, 7962, 3, 844, 422, 0, 7961, 7960, 1, 0, 0, 0, 7962, 7965, 1, 0, 0, 0, 7963, 7961, 1, 0, 0, 0, 7963, 7964, 1, 0, 0, 0, 7964, 7977, 1, 0, 0, 0, 7965, 7963, 1, 0, 0, 0, 7966, 7967, 5, 502, 0, 0, 7967, 7968, 3, 668, 334, 0, 7968, 7972, 5, 93, 0, 0, 7969, 7971, 3, 844, 422, 0, 7970, 7969, 1, 0, 0, 0, 7971, 7974, 1, 0, 0, 0, 7972, 7970, 1, 0, 0, 0, 7972, 7973, 1, 0, 0, 0, 7973, 7976, 1, 0, 0, 0, 7974, 7972, 1, 0, 0, 0, 7975, 7966, 1, 0, 0, 0, 7976, 7979, 1, 0, 0, 0, 7977, 7975, 1, 0, 0, 0, 7977, 7978, 1, 0, 0, 0, 7978, 7981, 1, 0, 0, 0, 7979, 7977, 1, 0, 0, 0, 7980, 7982, 3, 860, 430, 0, 7981, 7980, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 7983, 1, 0, 0, 0, 7983, 7984, 5, 454, 0, 0, 7984, 7985, 5, 220, 0, 0, 7985, 7986, 5, 7, 0, 0, 7986, 859, 1, 0, 0, 0, 7987, 7991, 5, 58, 0, 0, 7988, 7990, 3, 844, 422, 0, 7989, 7988, 1, 0, 0, 0, 7990, 7993, 1, 0, 0, 0, 7991, 7989, 1, 0, 0, 0, 7991, 7992, 1, 0, 0, 0, 7992, 861, 1, 0, 0, 0, 7993, 7991, 1, 0, 0, 0, 7994, 7996, 5, 40, 0, 0, 7995, 7997, 3, 928, 464, 0, 7996, 7995, 1, 0, 0, 0, 7996, 7997, 1, 0, 0, 0, 7997, 8007, 1, 0, 0, 0, 7998, 7999, 5, 102, 0, 0, 7999, 8000, 3, 726, 363, 0, 8000, 8004, 5, 93, 0, 0, 8001, 8003, 3, 844, 422, 0, 8002, 8001, 1, 0, 0, 0, 8003, 8006, 1, 0, 0, 0, 8004, 8002, 1, 0, 0, 0, 8004, 8005, 1, 0, 0, 0, 8005, 8008, 1, 0, 0, 0, 8006, 8004, 1, 0, 0, 0, 8007, 7998, 1, 0, 0, 0, 8008, 8009, 1, 0, 0, 0, 8009, 8007, 1, 0, 0, 0, 8009, 8010, 1, 0, 0, 0, 8010, 8012, 1, 0, 0, 0, 8011, 8013, 3, 860, 430, 0, 8012, 8011, 1, 0, 0, 0, 8012, 8013, 1, 0, 0, 0, 8013, 8014, 1, 0, 0, 0, 8014, 8015, 5, 454, 0, 0, 8015, 8016, 5, 40, 0, 0, 8016, 8017, 5, 7, 0, 0, 8017, 863, 1, 0, 0, 0, 8018, 8020, 3, 836, 418, 0, 8019, 8018, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 8025, 1, 0, 0, 0, 8021, 8022, 5, 503, 0, 0, 8022, 8026, 3, 668, 334, 0, 8023, 8024, 5, 62, 0, 0, 8024, 8026, 3, 866, 433, 0, 8025, 8021, 1, 0, 0, 0, 8025, 8023, 1, 0, 0, 0, 8025, 8026, 1, 0, 0, 0, 8026, 8027, 1, 0, 0, 0, 8027, 8028, 3, 880, 440, 0, 8028, 865, 1, 0, 0, 0, 8029, 8030, 3, 308, 154, 0, 8030, 8053, 5, 68, 0, 0, 8031, 8033, 3, 816, 408, 0, 8032, 8034, 3, 528, 264, 0, 8033, 8032, 1, 0, 0, 0, 8033, 8034, 1, 0, 0, 0, 8034, 8054, 1, 0, 0, 0, 8035, 8054, 3, 554, 277, 0, 8036, 8054, 3, 514, 257, 0, 8037, 8038, 5, 202, 0, 0, 8038, 8041, 3, 668, 334, 0, 8039, 8040, 5, 100, 0, 0, 8040, 8042, 3, 726, 363, 0, 8041, 8039, 1, 0, 0, 0, 8041, 8042, 1, 0, 0, 0, 8042, 8054, 1, 0, 0, 0, 8043, 8045, 5, 504, 0, 0, 8044, 8043, 1, 0, 0, 0, 8044, 8045, 1, 0, 0, 0, 8045, 8046, 1, 0, 0, 0, 8046, 8047, 3, 668, 334, 0, 8047, 8048, 5, 24, 0, 0, 8048, 8051, 3, 668, 334, 0, 8049, 8050, 5, 147, 0, 0, 8050, 8052, 3, 668, 334, 0, 8051, 8049, 1, 0, 0, 0, 8051, 8052, 1, 0, 0, 0, 8052, 8054, 1, 0, 0, 0, 8053, 8031, 1, 0, 0, 0, 8053, 8035, 1, 0, 0, 0, 8053, 8036, 1, 0, 0, 0, 8053, 8037, 1, 0, 0, 0, 8053, 8044, 1, 0, 0, 0, 8054, 867, 1, 0, 0, 0, 8055, 8057, 3, 836, 418, 0, 8056, 8055, 1, 0, 0, 0, 8056, 8057, 1, 0, 0, 0, 8057, 8058, 1, 0, 0, 0, 8058, 8059, 5, 505, 0, 0, 8059, 8062, 3, 308, 154, 0, 8060, 8061, 5, 506, 0, 0, 8061, 8063, 5, 574, 0, 0, 8062, 8060, 1, 0, 0, 0, 8062, 8063, 1, 0, 0, 0, 8063, 8064, 1, 0, 0, 0, 8064, 8065, 5, 68, 0, 0, 8065, 8066, 5, 35, 0, 0, 8066, 8067, 3, 668, 334, 0, 8067, 8068, 3, 880, 440, 0, 8068, 869, 1, 0, 0, 0, 8069, 8071, 7, 116, 0, 0, 8070, 8072, 3, 926, 463, 0, 8071, 8070, 1, 0, 0, 0, 8071, 8072, 1, 0, 0, 0, 8072, 8075, 1, 0, 0, 0, 8073, 8074, 5, 102, 0, 0, 8074, 8076, 3, 928, 464, 0, 8075, 8073, 1, 0, 0, 0, 8075, 8076, 1, 0, 0, 0, 8076, 8077, 1, 0, 0, 0, 8077, 8078, 5, 7, 0, 0, 8078, 871, 1, 0, 0, 0, 8079, 8094, 5, 508, 0, 0, 8080, 8081, 5, 268, 0, 0, 8081, 8095, 3, 928, 464, 0, 8082, 8089, 5, 509, 0, 0, 8083, 8084, 5, 202, 0, 0, 8084, 8085, 3, 668, 334, 0, 8085, 8086, 5, 100, 0, 0, 8086, 8087, 3, 726, 363, 0, 8087, 8090, 1, 0, 0, 0, 8088, 8090, 3, 554, 277, 0, 8089, 8083, 1, 0, 0, 0, 8089, 8088, 1, 0, 0, 0, 8090, 8095, 1, 0, 0, 0, 8091, 8093, 3, 928, 464, 0, 8092, 8091, 1, 0, 0, 0, 8092, 8093, 1, 0, 0, 0, 8093, 8095, 1, 0, 0, 0, 8094, 8080, 1, 0, 0, 0, 8094, 8082, 1, 0, 0, 0, 8094, 8092, 1, 0, 0, 0, 8095, 8096, 1, 0, 0, 0, 8096, 8097, 5, 7, 0, 0, 8097, 873, 1, 0, 0, 0, 8098, 8128, 5, 510, 0, 0, 8099, 8101, 7, 117, 0, 0, 8100, 8099, 1, 0, 0, 0, 8100, 8101, 1, 0, 0, 0, 8101, 8114, 1, 0, 0, 0, 8102, 8115, 3, 824, 412, 0, 8103, 8104, 5, 511, 0, 0, 8104, 8115, 3, 806, 403, 0, 8105, 8112, 3, 806, 403, 0, 8106, 8107, 5, 6, 0, 0, 8107, 8109, 3, 668, 334, 0, 8108, 8106, 1, 0, 0, 0, 8109, 8110, 1, 0, 0, 0, 8110, 8108, 1, 0, 0, 0, 8110, 8111, 1, 0, 0, 0, 8111, 8113, 1, 0, 0, 0, 8112, 8108, 1, 0, 0, 0, 8112, 8113, 1, 0, 0, 0, 8113, 8115, 1, 0, 0, 0, 8114, 8102, 1, 0, 0, 0, 8114, 8103, 1, 0, 0, 0, 8114, 8105, 1, 0, 0, 0, 8114, 8115, 1, 0, 0, 0, 8115, 8125, 1, 0, 0, 0, 8116, 8117, 5, 100, 0, 0, 8117, 8122, 3, 876, 438, 0, 8118, 8119, 5, 6, 0, 0, 8119, 8121, 3, 876, 438, 0, 8120, 8118, 1, 0, 0, 0, 8121, 8124, 1, 0, 0, 0, 8122, 8120, 1, 0, 0, 0, 8122, 8123, 1, 0, 0, 0, 8123, 8126, 1, 0, 0, 0, 8124, 8122, 1, 0, 0, 0, 8125, 8116, 1, 0, 0, 0, 8125, 8126, 1, 0, 0, 0, 8126, 8127, 1, 0, 0, 0, 8127, 8129, 5, 7, 0, 0, 8128, 8100, 1, 0, 0, 0, 8128, 8129, 1, 0, 0, 0, 8129, 875, 1, 0, 0, 0, 8130, 8131, 3, 824, 412, 0, 8131, 8132, 5, 10, 0, 0, 8132, 8133, 3, 668, 334, 0, 8133, 877, 1, 0, 0, 0, 8134, 8135, 5, 518, 0, 0, 8135, 8138, 3, 928, 464, 0, 8136, 8137, 5, 6, 0, 0, 8137, 8139, 3, 928, 464, 0, 8138, 8136, 1, 0, 0, 0, 8138, 8139, 1, 0, 0, 0, 8139, 8140, 1, 0, 0, 0, 8140, 8141, 5, 7, 0, 0, 8141, 879, 1, 0, 0, 0, 8142, 8146, 5, 519, 0, 0, 8143, 8145, 3, 844, 422, 0, 8144, 8143, 1, 0, 0, 0, 8145, 8148, 1, 0, 0, 0, 8146, 8144, 1, 0, 0, 0, 8146, 8147, 1, 0, 0, 0, 8147, 8149, 1, 0, 0, 0, 8148, 8146, 1, 0, 0, 0, 8149, 8150, 5, 454, 0, 0, 8150, 8152, 5, 519, 0, 0, 8151, 8153, 3, 926, 463, 0, 8152, 8151, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8154, 1, 0, 0, 0, 8154, 8155, 5, 7, 0, 0, 8155, 881, 1, 0, 0, 0, 8156, 8158, 3, 4, 2, 0, 8157, 8159, 3, 886, 443, 0, 8158, 8157, 1, 0, 0, 0, 8158, 8159, 1, 0, 0, 0, 8159, 8160, 1, 0, 0, 0, 8160, 8161, 5, 7, 0, 0, 8161, 883, 1, 0, 0, 0, 8162, 8163, 5, 202, 0, 0, 8163, 8179, 3, 668, 334, 0, 8164, 8166, 3, 886, 443, 0, 8165, 8164, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8169, 1, 0, 0, 0, 8167, 8168, 5, 100, 0, 0, 8168, 8170, 3, 726, 363, 0, 8169, 8167, 1, 0, 0, 0, 8169, 8170, 1, 0, 0, 0, 8170, 8180, 1, 0, 0, 0, 8171, 8172, 5, 100, 0, 0, 8172, 8174, 3, 726, 363, 0, 8173, 8171, 1, 0, 0, 0, 8173, 8174, 1, 0, 0, 0, 8174, 8176, 1, 0, 0, 0, 8175, 8177, 3, 886, 443, 0, 8176, 8175, 1, 0, 0, 0, 8176, 8177, 1, 0, 0, 0, 8177, 8180, 1, 0, 0, 0, 8178, 8180, 1, 0, 0, 0, 8179, 8165, 1, 0, 0, 0, 8179, 8173, 1, 0, 0, 0, 8179, 8178, 1, 0, 0, 0, 8180, 8181, 1, 0, 0, 0, 8181, 8182, 5, 7, 0, 0, 8182, 885, 1, 0, 0, 0, 8183, 8185, 5, 71, 0, 0, 8184, 8186, 5, 346, 0, 0, 8185, 8184, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8188, 3, 726, 363, 0, 8188, 887, 1, 0, 0, 0, 8189, 8221, 5, 520, 0, 0, 8190, 8195, 3, 920, 460, 0, 8191, 8193, 5, 269, 0, 0, 8192, 8191, 1, 0, 0, 0, 8192, 8193, 1, 0, 0, 0, 8193, 8194, 1, 0, 0, 0, 8194, 8196, 5, 324, 0, 0, 8195, 8192, 1, 0, 0, 0, 8195, 8196, 1, 0, 0, 0, 8196, 8197, 1, 0, 0, 0, 8197, 8205, 5, 62, 0, 0, 8198, 8206, 3, 554, 277, 0, 8199, 8200, 5, 202, 0, 0, 8200, 8203, 3, 928, 464, 0, 8201, 8202, 5, 100, 0, 0, 8202, 8204, 3, 726, 363, 0, 8203, 8201, 1, 0, 0, 0, 8203, 8204, 1, 0, 0, 0, 8204, 8206, 1, 0, 0, 0, 8205, 8198, 1, 0, 0, 0, 8205, 8199, 1, 0, 0, 0, 8206, 8222, 1, 0, 0, 0, 8207, 8219, 3, 816, 408, 0, 8208, 8209, 5, 2, 0, 0, 8209, 8214, 3, 890, 445, 0, 8210, 8211, 5, 6, 0, 0, 8211, 8213, 3, 890, 445, 0, 8212, 8210, 1, 0, 0, 0, 8213, 8216, 1, 0, 0, 0, 8214, 8212, 1, 0, 0, 0, 8214, 8215, 1, 0, 0, 0, 8215, 8217, 1, 0, 0, 0, 8216, 8214, 1, 0, 0, 0, 8217, 8218, 5, 3, 0, 0, 8218, 8220, 1, 0, 0, 0, 8219, 8208, 1, 0, 0, 0, 8219, 8220, 1, 0, 0, 0, 8220, 8222, 1, 0, 0, 0, 8221, 8190, 1, 0, 0, 0, 8221, 8207, 1, 0, 0, 0, 8222, 8223, 1, 0, 0, 0, 8223, 8224, 5, 7, 0, 0, 8224, 889, 1, 0, 0, 0, 8225, 8226, 3, 816, 408, 0, 8226, 8227, 5, 20, 0, 0, 8227, 8229, 1, 0, 0, 0, 8228, 8225, 1, 0, 0, 0, 8228, 8229, 1, 0, 0, 0, 8229, 8230, 1, 0, 0, 0, 8230, 8231, 3, 668, 334, 0, 8231, 891, 1, 0, 0, 0, 8232, 8234, 5, 61, 0, 0, 8233, 8235, 3, 894, 447, 0, 8234, 8233, 1, 0, 0, 0, 8234, 8235, 1, 0, 0, 0, 8235, 8237, 1, 0, 0, 0, 8236, 8238, 3, 326, 163, 0, 8237, 8236, 1, 0, 0, 0, 8237, 8238, 1, 0, 0, 0, 8238, 8239, 1, 0, 0, 0, 8239, 8240, 3, 920, 460, 0, 8240, 8241, 5, 71, 0, 0, 8241, 8242, 3, 726, 363, 0, 8242, 8243, 5, 7, 0, 0, 8243, 893, 1, 0, 0, 0, 8244, 8259, 5, 268, 0, 0, 8245, 8259, 5, 293, 0, 0, 8246, 8259, 5, 207, 0, 0, 8247, 8259, 5, 249, 0, 0, 8248, 8250, 7, 51, 0, 0, 8249, 8248, 1, 0, 0, 0, 8249, 8250, 1, 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 8259, 3, 668, 334, 0, 8252, 8259, 5, 30, 0, 0, 8253, 8256, 7, 118, 0, 0, 8254, 8257, 3, 668, 334, 0, 8255, 8257, 5, 30, 0, 0, 8256, 8254, 1, 0, 0, 0, 8256, 8255, 1, 0, 0, 0, 8256, 8257, 1, 0, 0, 0, 8257, 8259, 1, 0, 0, 0, 8258, 8244, 1, 0, 0, 0, 8258, 8245, 1, 0, 0, 0, 8258, 8246, 1, 0, 0, 0, 8258, 8247, 1, 0, 0, 0, 8258, 8249, 1, 0, 0, 0, 8258, 8252, 1, 0, 0, 0, 8258, 8253, 1, 0, 0, 0, 8259, 895, 1, 0, 0, 0, 8260, 8262, 5, 265, 0, 0, 8261, 8263, 3, 894, 447, 0, 8262, 8261, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, 8265, 3, 920, 460, 0, 8265, 8266, 5, 7, 0, 0, 8266, 897, 1, 0, 0, 0, 8267, 8269, 3, 566, 283, 0, 8268, 8267, 1, 0, 0, 0, 8268, 8269, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8271, 5, 525, 0, 0, 8271, 8273, 5, 71, 0, 0, 8272, 8274, 5, 81, 0, 0, 8273, 8272, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, 0, 8274, 8275, 1, 0, 0, 0, 8275, 8277, 3, 770, 385, 0, 8276, 8278, 5, 9, 0, 0, 8277, 8276, 1, 0, 0, 0, 8277, 8278, 1, 0, 0, 0, 8278, 8283, 1, 0, 0, 0, 8279, 8281, 5, 36, 0, 0, 8280, 8279, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 8282, 1, 0, 0, 0, 8282, 8284, 3, 816, 408, 0, 8283, 8280, 1, 0, 0, 0, 8283, 8284, 1, 0, 0, 0, 8284, 8285, 1, 0, 0, 0, 8285, 8286, 5, 100, 0, 0, 8286, 8287, 3, 900, 450, 0, 8287, 8288, 5, 80, 0, 0, 8288, 8290, 3, 668, 334, 0, 8289, 8291, 3, 902, 451, 0, 8290, 8289, 1, 0, 0, 0, 8291, 8292, 1, 0, 0, 0, 8292, 8290, 1, 0, 0, 0, 8292, 8293, 1, 0, 0, 0, 8293, 8295, 1, 0, 0, 0, 8294, 8296, 3, 540, 270, 0, 8295, 8294, 1, 0, 0, 0, 8295, 8296, 1, 0, 0, 0, 8296, 899, 1, 0, 0, 0, 8297, 8299, 5, 81, 0, 0, 8298, 8297, 1, 0, 0, 0, 8298, 8299, 1, 0, 0, 0, 8299, 8300, 1, 0, 0, 0, 8300, 8302, 3, 770, 385, 0, 8301, 8303, 5, 9, 0, 0, 8302, 8301, 1, 0, 0, 0, 8302, 8303, 1, 0, 0, 0, 8303, 8309, 1, 0, 0, 0, 8304, 8307, 3, 558, 279, 0, 8305, 8307, 3, 602, 301, 0, 8306, 8304, 1, 0, 0, 0, 8306, 8305, 1, 0, 0, 0, 8307, 8309, 1, 0, 0, 0, 8308, 8298, 1, 0, 0, 0, 8308, 8306, 1, 0, 0, 0, 8309, 8314, 1, 0, 0, 0, 8310, 8312, 5, 36, 0, 0, 8311, 8310, 1, 0, 0, 0, 8311, 8312, 1, 0, 0, 0, 8312, 8313, 1, 0, 0, 0, 8313, 8315, 3, 816, 408, 0, 8314, 8311, 1, 0, 0, 0, 8314, 8315, 1, 0, 0, 0, 8315, 901, 1, 0, 0, 0, 8316, 8317, 5, 102, 0, 0, 8317, 8320, 5, 526, 0, 0, 8318, 8319, 5, 33, 0, 0, 8319, 8321, 3, 668, 334, 0, 8320, 8318, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 8327, 5, 93, 0, 0, 8323, 8328, 3, 906, 453, 0, 8324, 8328, 5, 182, 0, 0, 8325, 8326, 5, 57, 0, 0, 8326, 8328, 5, 270, 0, 0, 8327, 8323, 1, 0, 0, 0, 8327, 8324, 1, 0, 0, 0, 8327, 8325, 1, 0, 0, 0, 8328, 8343, 1, 0, 0, 0, 8329, 8330, 5, 102, 0, 0, 8330, 8331, 5, 77, 0, 0, 8331, 8334, 5, 526, 0, 0, 8332, 8333, 5, 33, 0, 0, 8333, 8335, 3, 668, 334, 0, 8334, 8332, 1, 0, 0, 0, 8334, 8335, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 8340, 5, 93, 0, 0, 8337, 8341, 3, 904, 452, 0, 8338, 8339, 5, 57, 0, 0, 8339, 8341, 5, 270, 0, 0, 8340, 8337, 1, 0, 0, 0, 8340, 8338, 1, 0, 0, 0, 8341, 8343, 1, 0, 0, 0, 8342, 8316, 1, 0, 0, 0, 8342, 8329, 1, 0, 0, 0, 8343, 903, 1, 0, 0, 0, 8344, 8346, 5, 241, 0, 0, 8345, 8347, 3, 138, 69, 0, 8346, 8345, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8351, 1, 0, 0, 0, 8348, 8349, 5, 463, 0, 0, 8349, 8350, 7, 77, 0, 0, 8350, 8352, 5, 450, 0, 0, 8351, 8348, 1, 0, 0, 0, 8351, 8352, 1, 0, 0, 0, 8352, 8353, 1, 0, 0, 0, 8353, 8354, 3, 908, 454, 0, 8354, 905, 1, 0, 0, 0, 8355, 8356, 5, 369, 0, 0, 8356, 8374, 5, 333, 0, 0, 8357, 8358, 3, 796, 398, 0, 8358, 8359, 5, 10, 0, 0, 8359, 8360, 3, 910, 455, 0, 8360, 8375, 1, 0, 0, 0, 8361, 8362, 3, 138, 69, 0, 8362, 8363, 5, 10, 0, 0, 8363, 8364, 5, 2, 0, 0, 8364, 8369, 3, 910, 455, 0, 8365, 8366, 5, 6, 0, 0, 8366, 8368, 3, 910, 455, 0, 8367, 8365, 1, 0, 0, 0, 8368, 8371, 1, 0, 0, 0, 8369, 8367, 1, 0, 0, 0, 8369, 8370, 1, 0, 0, 0, 8370, 8372, 1, 0, 0, 0, 8371, 8369, 1, 0, 0, 0, 8372, 8373, 5, 3, 0, 0, 8373, 8375, 1, 0, 0, 0, 8374, 8357, 1, 0, 0, 0, 8374, 8361, 1, 0, 0, 0, 8375, 8376, 1, 0, 0, 0, 8376, 8374, 1, 0, 0, 0, 8376, 8377, 1, 0, 0, 0, 8377, 907, 1, 0, 0, 0, 8378, 8379, 5, 422, 0, 0, 8379, 8380, 5, 2, 0, 0, 8380, 8385, 3, 910, 455, 0, 8381, 8382, 5, 6, 0, 0, 8382, 8384, 3, 910, 455, 0, 8383, 8381, 1, 0, 0, 0, 8384, 8387, 1, 0, 0, 0, 8385, 8383, 1, 0, 0, 0, 8385, 8386, 1, 0, 0, 0, 8386, 8388, 1, 0, 0, 0, 8387, 8385, 1, 0, 0, 0, 8388, 8389, 5, 3, 0, 0, 8389, 8393, 1, 0, 0, 0, 8390, 8391, 5, 53, 0, 0, 8391, 8393, 5, 422, 0, 0, 8392, 8378, 1, 0, 0, 0, 8392, 8390, 1, 0, 0, 0, 8393, 909, 1, 0, 0, 0, 8394, 8397, 3, 582, 291, 0, 8395, 8397, 5, 53, 0, 0, 8396, 8394, 1, 0, 0, 0, 8396, 8395, 1, 0, 0, 0, 8397, 911, 1, 0, 0, 0, 8398, 8399, 5, 157, 0, 0, 8399, 8400, 3, 920, 460, 0, 8400, 8401, 5, 7, 0, 0, 8401, 913, 1, 0, 0, 0, 8402, 8403, 5, 78, 0, 0, 8403, 8404, 5, 7, 0, 0, 8404, 915, 1, 0, 0, 0, 8405, 8411, 7, 68, 0, 0, 8406, 8408, 5, 33, 0, 0, 8407, 8409, 5, 269, 0, 0, 8408, 8407, 1, 0, 0, 0, 8408, 8409, 1, 0, 0, 0, 8409, 8410, 1, 0, 0, 0, 8410, 8412, 5, 153, 0, 0, 8411, 8406, 1, 0, 0, 0, 8411, 8412, 1, 0, 0, 0, 8412, 8413, 1, 0, 0, 0, 8413, 8414, 5, 7, 0, 0, 8414, 917, 1, 0, 0, 0, 8415, 8416, 5, 333, 0, 0, 8416, 8417, 3, 310, 155, 0, 8417, 8418, 5, 94, 0, 0, 8418, 8419, 5, 53, 0, 0, 8419, 8420, 5, 7, 0, 0, 8420, 8428, 1, 0, 0, 0, 8421, 8424, 5, 313, 0, 0, 8422, 8425, 3, 310, 155, 0, 8423, 8425, 5, 30, 0, 0, 8424, 8422, 1, 0, 0, 0, 8424, 8423, 1, 0, 0, 0, 8425, 8426, 1, 0, 0, 0, 8426, 8428, 5, 7, 0, 0, 8427, 8415, 1, 0, 0, 0, 8427, 8421, 1, 0, 0, 0, 8428, 919, 1, 0, 0, 0, 8429, 8432, 3, 816, 408, 0, 8430, 8432, 5, 28, 0, 0, 8431, 8429, 1, 0, 0, 0, 8431, 8430, 1, 0, 0, 0, 8432, 921, 1, 0, 0, 0, 8433, 8450, 5, 517, 0, 0, 8434, 8435, 5, 102, 0, 0, 8435, 8440, 3, 924, 462, 0, 8436, 8437, 5, 82, 0, 0, 8437, 8439, 3, 924, 462, 0, 8438, 8436, 1, 0, 0, 0, 8439, 8442, 1, 0, 0, 0, 8440, 8438, 1, 0, 0, 0, 8440, 8441, 1, 0, 0, 0, 8441, 8443, 1, 0, 0, 0, 8442, 8440, 1, 0, 0, 0, 8443, 8447, 5, 93, 0, 0, 8444, 8446, 3, 844, 422, 0, 8445, 8444, 1, 0, 0, 0, 8446, 8449, 1, 0, 0, 0, 8447, 8445, 1, 0, 0, 0, 8447, 8448, 1, 0, 0, 0, 8448, 8451, 1, 0, 0, 0, 8449, 8447, 1, 0, 0, 0, 8450, 8434, 1, 0, 0, 0, 8451, 8452, 1, 0, 0, 0, 8452, 8450, 1, 0, 0, 0, 8452, 8453, 1, 0, 0, 0, 8453, 923, 1, 0, 0, 0, 8454, 8458, 3, 926, 463, 0, 8455, 8456, 5, 511, 0, 0, 8456, 8458, 3, 806, 403, 0, 8457, 8454, 1, 0, 0, 0, 8457, 8455, 1, 0, 0, 0, 8458, 925, 1, 0, 0, 0, 8459, 8462, 3, 816, 408, 0, 8460, 8462, 3, 826, 413, 0, 8461, 8459, 1, 0, 0, 0, 8461, 8460, 1, 0, 0, 0, 8462, 927, 1, 0, 0, 0, 8463, 8465, 3, 752, 376, 0, 8464, 8463, 1, 0, 0, 0, 8464, 8465, 1, 0, 0, 0, 8465, 8467, 1, 0, 0, 0, 8466, 8468, 3, 574, 287, 0, 8467, 8466, 1, 0, 0, 0, 8467, 8468, 1, 0, 0, 0, 8468, 8470, 1, 0, 0, 0, 8469, 8471, 3, 604, 302, 0, 8470, 8469, 1, 0, 0, 0, 8470, 8471, 1, 0, 0, 0, 8471, 8473, 1, 0, 0, 0, 8472, 8474, 3, 632, 316, 0, 8473, 8472, 1, 0, 0, 0, 8473, 8474, 1, 0, 0, 0, 8474, 8476, 1, 0, 0, 0, 8475, 8477, 3, 594, 297, 0, 8476, 8475, 1, 0, 0, 0, 8476, 8477, 1, 0, 0, 0, 8477, 8479, 1, 0, 0, 0, 8478, 8480, 3, 698, 349, 0, 8479, 8478, 1, 0, 0, 0, 8479, 8480, 1, 0, 0, 0, 8480, 8482, 1, 0, 0, 0, 8481, 8483, 3, 696, 348, 0, 8482, 8481, 1, 0, 0, 0, 8482, 8483, 1, 0, 0, 0, 8483, 929, 1, 0, 0, 0, 1190, 933, 940, 1060, 1062, 1071, 1076, 1082, 1117, 1127, 1133, 1138, 1145, 1150, 1157, 1168, 1176, 1180, 1192, 1198, 1204, 1208, 1213, 1217, 1230, 1240, 1242, 1248, 1253, 1266, 1269, 1274, 1279, 1290, 1294, 1306, 1310, 1313, 1317, 1329, 1347, 1354, 1362, 1367, 1374, 1382, 1388, 1396, 1404, 1408, 1422, 1427, 1432, 1444, 1450, 1462, 1467, 1477, 1483, 1488, 1497, 1504, 1509, 1514, 1524, 1529, 1534, 1541, 1545, 1559, 1565, 1571, 1576, 1583, 1592, 1601, 1610, 1619, 1623, 1635, 1643, 1653, 1673, 1678, 1681, 1688, 1691, 1695, 1699, 1702, 1707, 1712, 1716, 1725, 1731, 1735, 1744, 1747, 1753, 1762, 1774, 1778, 1782, 1787, 1790, 1796, 1798, 1800, 1804, 1810, 1814, 1819, 1824, 1828, 1831, 1838, 1851, 1864, 1889, 1899, 1906, 1911, 1915, 1922, 1927, 1930, 1932, 1937, 1941, 1945, 1949, 1954, 1957, 1961, 1964, 1968, 1976, 1981, 1984, 1988, 1994, 2003, 2007, 2017, 2022, 2026, 2030, 2032, 2034, 2041, 2046, 2050, 2055, 2067, 2072, 2076, 2080, 2085, 2089, 2092, 2095, 2098, 2101, 2104, 2109, 2112, 2115, 2118, 2121, 2124, 2130, 2134, 2137, 2140, 2143, 2146, 2148, 2155, 2163, 2173, 2178, 2188, 2191, 2196, 2201, 2206, 2209, 2214, 2223, 2225, 2229, 2232, 2236, 2241, 2246, 2250, 2253, 2257, 2260, 2265, 2268, 2273, 2276, 2280, 2283, 2286, 2291, 2294, 2302, 2314, 2318, 2325, 2330, 2333, 2336, 2339, 2344, 2355, 2361, 2365, 2368, 2371, 2376, 2383, 2386, 2390, 2398, 2403, 2406, 2409, 2416, 2421, 2430, 2433, 2436, 2441, 2444, 2456, 2466, 2483, 2487, 2491, 2493, 2510, 2512, 2528, 2539, 2542, 2545, 2554, 2563, 2579, 2582, 2585, 2593, 2597, 2604, 2613, 2617, 2623, 2627, 2630, 2633, 2636, 2639, 2645, 2649, 2654, 2658, 2661, 2664, 2667, 2672, 2678, 2682, 2686, 2690, 2696, 2698, 2703, 2709, 2715, 2719, 2734, 2739, 2742, 2744, 2747, 2751, 2755, 2758, 2761, 2769, 2775, 2777, 2783, 2788, 2793, 2797, 2804, 2806, 2817, 2856, 2866, 2868, 2871, 2875, 2879, 2889, 2891, 2897, 2899, 2908, 2920, 2934, 2939, 2942, 2949, 2954, 2962, 2964, 2970, 2975, 2979, 2984, 2990, 2997, 3003, 3005, 3014, 3020, 3028, 3034, 3039, 3044, 3052, 3067, 3069, 3073, 3077, 3080, 3083, 3092, 3095, 3098, 3104, 3110, 3114, 3126, 3132, 3135, 3140, 3144, 3151, 3161, 3163, 3187, 3199, 3204, 3206, 3210, 3213, 3216, 3226, 3229, 3239, 3244, 3249, 3252, 3255, 3263, 3269, 3276, 3284, 3287, 3298, 3302, 3308, 3315, 3318, 3327, 3341, 3344, 3358, 3369, 3372, 3384, 3389, 3402, 3407, 3420, 3429, 3432, 3435, 3442, 3445, 3457, 3463, 3465, 3473, 3481, 3489, 3501, 3506, 3517, 3528, 3536, 3544, 3551, 3558, 3560, 3563, 3568, 3573, 3592, 3601, 3604, 3631, 3640, 3643, 3647, 3651, 3655, 3662, 3666, 3670, 3674, 3678, 3683, 3687, 3692, 3698, 3703, 3710, 3714, 3720, 3724, 3729, 3737, 3743, 3748, 3755, 3760, 3764, 3769, 3775, 3782, 3787, 3794, 3799, 3806, 3810, 3818, 3822, 3824, 3827, 3832, 3842, 3857, 3860, 3868, 3875, 3880, 3886, 3890, 3897, 3902, 3905, 3908, 3912, 3921, 3939, 3942, 3974, 3979, 3985, 4005, 4010, 4016, 4019, 4023, 4027, 4033, 4036, 4040, 4044, 4049, 4052, 4055, 4058, 4071, 4077, 4085, 4092, 4097, 4100, 4107, 4110, 4118, 4121, 4126, 4133, 4136, 4156, 4168, 4171, 4177, 4182, 4191, 4199, 4204, 4210, 4217, 4225, 4228, 4239, 4241, 4255, 4261, 4269, 4271, 4277, 4281, 4284, 4287, 4292, 4297, 4301, 4304, 4307, 4310, 4313, 4321, 4332, 4335, 4338, 4343, 4346, 4350, 4354, 4360, 4368, 4371, 4384, 4389, 4391, 4396, 4403, 4410, 4419, 4427, 4435, 4442, 4450, 4457, 4465, 4469, 4473, 4475, 4481, 4486, 4490, 4497, 4502, 4507, 4512, 4514, 4524, 4534, 4550, 4568, 4580, 4587, 4602, 4607, 4610, 4615, 4620, 4625, 4628, 4631, 4636, 4643, 4647, 4652, 4659, 4663, 4669, 4678, 4687, 4699, 4701, 4714, 4720, 4724, 4726, 4733, 4746, 4753, 4755, 4771, 4775, 4779, 4784, 4789, 4794, 4799, 4802, 4814, 4867, 4876, 4880, 4889, 4893, 4902, 4906, 4911, 4914, 4918, 4923, 4925, 4934, 4939, 4950, 4954, 4968, 4976, 5014, 5016, 5035, 5038, 5065, 5069, 5073, 5077, 5081, 5084, 5099, 5106, 5120, 5133, 5158, 5177, 5192, 5208, 5215, 5226, 5229, 5248, 5251, 5264, 5268, 5288, 5300, 5304, 5326, 5330, 5340, 5344, 5350, 5354, 5358, 5362, 5369, 5374, 5385, 5389, 5392, 5397, 5403, 5414, 5418, 5421, 5425, 5429, 5432, 5442, 5445, 5449, 5454, 5460, 5463, 5468, 5471, 5478, 5480, 5486, 5490, 5499, 5504, 5506, 5516, 5519, 5524, 5532, 5535, 5540, 5542, 5544, 5550, 5567, 5573, 5586, 5592, 5596, 5601, 5631, 5646, 5651, 5655, 5668, 5672, 5674, 5683, 5689, 5691, 5695, 5698, 5701, 5704, 5707, 5709, 5712, 5716, 5724, 5729, 5732, 5738, 5742, 5746, 5751, 5753, 5757, 5761, 5768, 5774, 5778, 5780, 5782, 5795, 5803, 5811, 5822, 5832, 5837, 5841, 5845, 5852, 5855, 5857, 5865, 5869, 5872, 5879, 5886, 5891, 5898, 5901, 5903, 5906, 5912, 5917, 5921, 5928, 5938, 5945, 5948, 5951, 5955, 5966, 5969, 5972, 5975, 5978, 5985, 5988, 5991, 5998, 6010, 6017, 6019, 6024, 6029, 6031, 6037, 6044, 6049, 6054, 6058, 6062, 6066, 6068, 6072, 6076, 6079, 6082, 6084, 6094, 6096, 6101, 6105, 6110, 6114, 6121, 6126, 6130, 6133, 6139, 6142, 6161, 6168, 6172, 6175, 6179, 6183, 6186, 6189, 6194, 6203, 6210, 6214, 6218, 6222, 6225, 6227, 6232, 6236, 6241, 6247, 6254, 6259, 6264, 6273, 6280, 6288, 6299, 6304, 6308, 6311, 6315, 6320, 6324, 6329, 6337, 6348, 6353, 6357, 6360, 6363, 6365, 6368, 6371, 6374, 6378, 6382, 6386, 6388, 6397, 6402, 6408, 6412, 6414, 6421, 6426, 6432, 6434, 6438, 6445, 6450, 6453, 6459, 6463, 6469, 6478, 6484, 6486, 6491, 6494, 6503, 6510, 6512, 6519, 6524, 6527, 6537, 6548, 6553, 6557, 6565, 6575, 6582, 6588, 6599, 6605, 6615, 6624, 6628, 6631, 6633, 6635, 6639, 6647, 6650, 6655, 6660, 6667, 6669, 6675, 6679, 6682, 6687, 6690, 6692, 6698, 6707, 6713, 6716, 6724, 6727, 6731, 6737, 6739, 6742, 6746, 6751, 6758, 6765, 6767, 6773, 6775, 6780, 6782, 6786, 6795, 6799, 6807, 6809, 6823, 6826, 6834, 6843, 6849, 6854, 6862, 6864, 6869, 6873, 6878, 6883, 6889, 6905, 6907, 6916, 6931, 6936, 6939, 6945, 6950, 6963, 6968, 6972, 6979, 6999, 7011, 7016, 7024, 7026, 7028, 7037, 7040, 7045, 7050, 7053, 7064, 7072, 7077, 7079, 7082, 7086, 7097, 7118, 7126, 7139, 7149, 7155, 7161, 7164, 7167, 7193, 7195, 7216, 7226, 7239, 7244, 7248, 7250, 7262, 7269, 7275, 7281, 7285, 7296, 7309, 7313, 7318, 7321, 7324, 7333, 7344, 7346, 7350, 7355, 7364, 7369, 7377, 7387, 7395, 7399, 7402, 7409, 7417, 7421, 7428, 7436, 7438, 7447, 7450, 7462, 7471, 7478, 7487, 7497, 7502, 7506, 7508, 7511, 7516, 7521, 7529, 7537, 7540, 7547, 7555, 7563, 7571, 7588, 7595, 7603, 7620, 7626, 7632, 7643, 7649, 7654, 7662, 7667, 7670, 7679, 7686, 7691, 7695, 7700, 7706, 7711, 7719, 7774, 7781, 7787, 7789, 7791, 7793, 7799, 7803, 7807, 7818, 7821, 7825, 7829, 7833, 7836, 7839, 7842, 7851, 7856, 7860, 7893, 7903, 7907, 7913, 7918, 7927, 7935, 7946, 7954, 7963, 7972, 7977, 7981, 7991, 7996, 8004, 8009, 8012, 8019, 8025, 8033, 8041, 8044, 8051, 8053, 8056, 8062, 8071, 8075, 8089, 8092, 8094, 8100, 8110, 8112, 8114, 8122, 8125, 8128, 8138, 8146, 8152, 8158, 8165, 8169, 8173, 8176, 8179, 8185, 8192, 8195, 8203, 8205, 8214, 8219, 8221, 8228, 8234, 8237, 8249, 8256, 8258, 8262, 8268, 8273, 8277, 8280, 8283, 8292, 8295, 8298, 8302, 8306, 8308, 8311, 8314, 8320, 8327, 8334, 8340, 8342, 8346, 8351, 8369, 8374, 8376, 8385, 8392, 8396, 8408, 8411, 8424, 8427, 8431, 8440, 8447, 8452, 8457, 8461, 8464, 8467, 8470, 8473, 8476, 8479, 8482] \ No newline at end of file +[4, 1, 592, 8484, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 1, 0, 5, 0, 932, 8, 0, 10, 0, 12, 0, 935, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 941, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1061, 8, 2, 3, 2, 1063, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1072, 8, 4, 1, 4, 5, 4, 1075, 8, 4, 10, 4, 12, 4, 1078, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1083, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1118, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1128, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1134, 8, 7, 1, 7, 5, 7, 1137, 8, 7, 10, 7, 12, 7, 1140, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1146, 8, 8, 1, 8, 5, 8, 1149, 8, 8, 10, 8, 12, 8, 1152, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1158, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1169, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1175, 8, 11, 10, 11, 12, 11, 1178, 9, 11, 1, 11, 3, 11, 1181, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1193, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1199, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1205, 8, 12, 1, 12, 1, 12, 3, 12, 1209, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1214, 8, 12, 1, 12, 1, 12, 3, 12, 1218, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1231, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1241, 8, 12, 3, 12, 1243, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1249, 8, 13, 1, 13, 5, 13, 1252, 8, 13, 10, 13, 12, 13, 1255, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1267, 8, 15, 1, 15, 3, 15, 1270, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1275, 8, 15, 1, 15, 5, 15, 1278, 8, 15, 10, 15, 12, 15, 1281, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1291, 8, 17, 1, 18, 1, 18, 3, 18, 1295, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1307, 8, 19, 1, 20, 1, 20, 3, 20, 1311, 8, 20, 1, 20, 3, 20, 1314, 8, 20, 1, 20, 1, 20, 3, 20, 1318, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1330, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1348, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1353, 8, 22, 10, 22, 12, 22, 1356, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1361, 8, 23, 10, 23, 12, 23, 1364, 9, 23, 1, 24, 1, 24, 3, 24, 1368, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1375, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1383, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1389, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1397, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1405, 8, 28, 1, 29, 1, 29, 3, 29, 1409, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1423, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1428, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1433, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1445, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1451, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1463, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1468, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1478, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1484, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1489, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1498, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1505, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1510, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1515, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1525, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1530, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1535, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1542, 8, 38, 1, 38, 1, 38, 3, 38, 1546, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1560, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1566, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1572, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1577, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1582, 8, 39, 10, 39, 12, 39, 1585, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1593, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1602, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1609, 8, 42, 10, 42, 12, 42, 1612, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1620, 8, 42, 1, 42, 1, 42, 3, 42, 1624, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1636, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1644, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1654, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1674, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1679, 8, 42, 1, 42, 3, 42, 1682, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1689, 8, 42, 1, 42, 3, 42, 1692, 8, 42, 1, 42, 1, 42, 3, 42, 1696, 8, 42, 1, 42, 1, 42, 3, 42, 1700, 8, 42, 1, 42, 3, 42, 1703, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1708, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1713, 8, 42, 1, 42, 1, 42, 3, 42, 1717, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1726, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1732, 8, 42, 1, 42, 1, 42, 3, 42, 1736, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1745, 8, 42, 1, 42, 3, 42, 1748, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1754, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1763, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1773, 8, 42, 11, 42, 12, 42, 1774, 1, 42, 1, 42, 3, 42, 1779, 8, 42, 1, 42, 1, 42, 3, 42, 1783, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1788, 8, 42, 1, 42, 3, 42, 1791, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1797, 8, 42, 4, 42, 1799, 8, 42, 11, 42, 12, 42, 1800, 1, 42, 1, 42, 3, 42, 1805, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1811, 8, 42, 1, 42, 1, 42, 3, 42, 1815, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1820, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1825, 8, 42, 1, 42, 1, 42, 3, 42, 1829, 8, 42, 1, 42, 3, 42, 1832, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1839, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1850, 8, 46, 10, 46, 12, 46, 1853, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1865, 8, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1890, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1898, 8, 50, 10, 50, 12, 50, 1901, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1907, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1912, 8, 51, 1, 51, 1, 51, 3, 51, 1916, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1923, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1928, 8, 51, 1, 51, 3, 51, 1931, 8, 51, 3, 51, 1933, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1938, 8, 52, 1, 53, 1, 53, 3, 53, 1942, 8, 53, 1, 53, 1, 53, 3, 53, 1946, 8, 53, 1, 53, 1, 53, 3, 53, 1950, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1955, 8, 53, 1, 53, 3, 53, 1958, 8, 53, 1, 53, 1, 53, 3, 53, 1962, 8, 53, 1, 53, 3, 53, 1965, 8, 53, 1, 53, 1, 53, 3, 53, 1969, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1977, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1982, 8, 53, 1, 53, 3, 53, 1985, 8, 53, 1, 53, 1, 53, 3, 53, 1989, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1995, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2004, 8, 54, 1, 54, 1, 54, 3, 54, 2008, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2018, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2023, 8, 54, 5, 54, 2025, 8, 54, 10, 54, 12, 54, 2028, 9, 54, 1, 54, 3, 54, 2031, 8, 54, 5, 54, 2033, 8, 54, 10, 54, 12, 54, 2036, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2042, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2047, 8, 55, 5, 55, 2049, 8, 55, 10, 55, 12, 55, 2052, 9, 55, 1, 55, 1, 55, 3, 55, 2056, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2066, 8, 56, 10, 56, 12, 56, 2069, 9, 56, 1, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 57, 1, 57, 3, 57, 2077, 8, 57, 1, 57, 1, 57, 3, 57, 2081, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2086, 8, 57, 1, 57, 1, 57, 3, 57, 2090, 8, 57, 1, 57, 3, 57, 2093, 8, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2110, 8, 57, 1, 57, 3, 57, 2113, 8, 57, 1, 57, 3, 57, 2116, 8, 57, 1, 57, 3, 57, 2119, 8, 57, 1, 57, 3, 57, 2122, 8, 57, 1, 57, 3, 57, 2125, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 1, 57, 3, 57, 2135, 8, 57, 1, 57, 3, 57, 2138, 8, 57, 1, 57, 3, 57, 2141, 8, 57, 1, 57, 3, 57, 2144, 8, 57, 1, 57, 3, 57, 2147, 8, 57, 3, 57, 2149, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2156, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2162, 8, 59, 10, 59, 12, 59, 2165, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2172, 8, 60, 10, 60, 12, 60, 2175, 9, 60, 1, 61, 1, 61, 3, 61, 2179, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2187, 8, 61, 10, 61, 12, 61, 2190, 9, 61, 3, 61, 2192, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2197, 8, 62, 1, 62, 5, 62, 2200, 8, 62, 10, 62, 12, 62, 2203, 9, 62, 1, 62, 1, 62, 3, 62, 2207, 8, 62, 1, 62, 3, 62, 2210, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2215, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2224, 8, 63, 3, 63, 2226, 8, 63, 1, 63, 1, 63, 3, 63, 2230, 8, 63, 1, 63, 3, 63, 2233, 8, 63, 1, 63, 1, 63, 3, 63, 2237, 8, 63, 1, 63, 5, 63, 2240, 8, 63, 10, 63, 12, 63, 2243, 9, 63, 1, 64, 1, 64, 3, 64, 2247, 8, 64, 1, 64, 1, 64, 3, 64, 2251, 8, 64, 1, 64, 3, 64, 2254, 8, 64, 1, 64, 1, 64, 3, 64, 2258, 8, 64, 1, 65, 3, 65, 2261, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2266, 8, 65, 1, 65, 3, 65, 2269, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2274, 8, 65, 1, 65, 3, 65, 2277, 8, 65, 1, 65, 1, 65, 3, 65, 2281, 8, 65, 1, 65, 3, 65, 2284, 8, 65, 1, 65, 3, 65, 2287, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2292, 8, 65, 1, 65, 3, 65, 2295, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2303, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2313, 8, 65, 11, 65, 12, 65, 2314, 1, 65, 1, 65, 3, 65, 2319, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2326, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2331, 8, 65, 1, 65, 3, 65, 2334, 8, 65, 1, 65, 3, 65, 2337, 8, 65, 1, 65, 3, 65, 2340, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2345, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2354, 8, 68, 10, 68, 12, 68, 2357, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2362, 8, 68, 1, 68, 1, 68, 3, 68, 2366, 8, 68, 1, 68, 3, 68, 2369, 8, 68, 1, 68, 3, 68, 2372, 8, 68, 1, 68, 5, 68, 2375, 8, 68, 10, 68, 12, 68, 2378, 9, 68, 1, 68, 1, 68, 5, 68, 2382, 8, 68, 10, 68, 12, 68, 2385, 9, 68, 3, 68, 2387, 8, 68, 1, 68, 1, 68, 3, 68, 2391, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2397, 8, 68, 10, 68, 12, 68, 2400, 9, 68, 1, 68, 1, 68, 3, 68, 2404, 8, 68, 1, 68, 3, 68, 2407, 8, 68, 1, 68, 3, 68, 2410, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2417, 8, 68, 1, 68, 5, 68, 2420, 8, 68, 10, 68, 12, 68, 2423, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2431, 8, 68, 1, 68, 3, 68, 2434, 8, 68, 1, 68, 3, 68, 2437, 8, 68, 1, 68, 5, 68, 2440, 8, 68, 10, 68, 12, 68, 2443, 9, 68, 3, 68, 2445, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2455, 8, 70, 10, 70, 12, 70, 2458, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2465, 8, 71, 10, 71, 12, 71, 2468, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2484, 8, 74, 1, 75, 1, 75, 3, 75, 2488, 8, 75, 1, 75, 1, 75, 3, 75, 2492, 8, 75, 3, 75, 2494, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2511, 8, 78, 3, 78, 2513, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2527, 8, 80, 10, 80, 12, 80, 2530, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2540, 8, 81, 1, 81, 3, 81, 2543, 8, 81, 1, 81, 3, 81, 2546, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2555, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2564, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2580, 8, 88, 1, 88, 3, 88, 2583, 8, 88, 1, 88, 3, 88, 2586, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2592, 8, 88, 10, 88, 12, 88, 2595, 9, 88, 1, 88, 3, 88, 2598, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2605, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2614, 8, 90, 1, 90, 1, 90, 3, 90, 2618, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2624, 8, 90, 1, 91, 1, 91, 3, 91, 2628, 8, 91, 1, 91, 3, 91, 2631, 8, 91, 1, 91, 3, 91, 2634, 8, 91, 1, 91, 3, 91, 2637, 8, 91, 1, 91, 3, 91, 2640, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2646, 8, 92, 1, 93, 1, 93, 3, 93, 2650, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2655, 8, 93, 1, 93, 1, 93, 3, 93, 2659, 8, 93, 1, 93, 3, 93, 2662, 8, 93, 1, 93, 3, 93, 2665, 8, 93, 1, 93, 3, 93, 2668, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2673, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2679, 8, 94, 1, 94, 1, 94, 3, 94, 2683, 8, 94, 1, 95, 1, 95, 3, 95, 2687, 8, 95, 1, 95, 1, 95, 3, 95, 2691, 8, 95, 1, 95, 1, 95, 4, 95, 2695, 8, 95, 11, 95, 12, 95, 2696, 3, 95, 2699, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2704, 8, 96, 1, 96, 1, 96, 4, 96, 2708, 8, 96, 11, 96, 12, 96, 2709, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2716, 8, 97, 1, 97, 1, 97, 3, 97, 2720, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2735, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2740, 8, 97, 1, 97, 3, 97, 2743, 8, 97, 3, 97, 2745, 8, 97, 1, 98, 3, 98, 2748, 8, 98, 1, 98, 1, 98, 3, 98, 2752, 8, 98, 1, 99, 1, 99, 3, 99, 2756, 8, 99, 1, 99, 3, 99, 2759, 8, 99, 1, 99, 3, 99, 2762, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2770, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2776, 8, 99, 3, 99, 2778, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2784, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2789, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2794, 8, 101, 1, 101, 1, 101, 3, 101, 2798, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2805, 8, 101, 10, 101, 12, 101, 2808, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2816, 8, 102, 10, 102, 12, 102, 2819, 9, 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, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2857, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2865, 8, 104, 11, 104, 12, 104, 2866, 3, 104, 2869, 8, 104, 1, 104, 3, 104, 2872, 8, 104, 1, 105, 1, 105, 3, 105, 2876, 8, 105, 1, 105, 1, 105, 3, 105, 2880, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2888, 8, 106, 11, 106, 12, 106, 2889, 3, 106, 2892, 8, 106, 1, 106, 1, 106, 4, 106, 2896, 8, 106, 11, 106, 12, 106, 2897, 3, 106, 2900, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2907, 8, 107, 10, 107, 12, 107, 2910, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2919, 8, 108, 10, 108, 12, 108, 2922, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2935, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2940, 8, 111, 1, 111, 3, 111, 2943, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2950, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2955, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2963, 8, 113, 3, 113, 2965, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2971, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2976, 8, 114, 1, 114, 1, 114, 3, 114, 2980, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2985, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2991, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2998, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3004, 8, 114, 3, 114, 3006, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3015, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3021, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3029, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3035, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3040, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3045, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3053, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3068, 8, 118, 3, 118, 3070, 8, 118, 1, 118, 1, 118, 3, 118, 3074, 8, 118, 1, 118, 1, 118, 3, 118, 3078, 8, 118, 1, 118, 3, 118, 3081, 8, 118, 1, 118, 3, 118, 3084, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3093, 8, 119, 1, 119, 3, 119, 3096, 8, 119, 1, 119, 3, 119, 3099, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3105, 8, 120, 1, 120, 1, 120, 5, 120, 3109, 8, 120, 10, 120, 12, 120, 3112, 9, 120, 1, 120, 3, 120, 3115, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3127, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3133, 8, 120, 1, 121, 3, 121, 3136, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3141, 8, 121, 1, 121, 1, 121, 3, 121, 3145, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3152, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3162, 8, 121, 3, 121, 3164, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3188, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3200, 8, 125, 1, 125, 4, 125, 3203, 8, 125, 11, 125, 12, 125, 3204, 3, 125, 3207, 8, 125, 1, 125, 1, 125, 3, 125, 3211, 8, 125, 1, 125, 3, 125, 3214, 8, 125, 1, 125, 3, 125, 3217, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3227, 8, 125, 1, 125, 3, 125, 3230, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3240, 8, 125, 1, 125, 5, 125, 3243, 8, 125, 10, 125, 12, 125, 3246, 9, 125, 1, 125, 1, 125, 3, 125, 3250, 8, 125, 1, 125, 3, 125, 3253, 8, 125, 1, 125, 3, 125, 3256, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3264, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3270, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3275, 8, 127, 10, 127, 12, 127, 3278, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3285, 8, 128, 1, 128, 3, 128, 3288, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3299, 8, 130, 1, 131, 1, 131, 3, 131, 3303, 8, 131, 1, 131, 1, 131, 5, 131, 3307, 8, 131, 10, 131, 12, 131, 3310, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3316, 8, 132, 1, 133, 3, 133, 3319, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3328, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3340, 8, 134, 10, 134, 12, 134, 3343, 9, 134, 3, 134, 3345, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3357, 8, 135, 10, 135, 12, 135, 3360, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3370, 8, 136, 1, 136, 3, 136, 3373, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3383, 8, 137, 10, 137, 12, 137, 3386, 9, 137, 1, 138, 1, 138, 3, 138, 3390, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3401, 8, 138, 10, 138, 12, 138, 3404, 9, 138, 1, 138, 1, 138, 3, 138, 3408, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3421, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3428, 8, 138, 10, 138, 12, 138, 3431, 9, 138, 3, 138, 3433, 8, 138, 1, 138, 3, 138, 3436, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3443, 8, 138, 1, 138, 3, 138, 3446, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3458, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3464, 8, 138, 3, 138, 3466, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3472, 8, 139, 10, 139, 12, 139, 3475, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3482, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3490, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3502, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3507, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3518, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3529, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3537, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3543, 8, 145, 10, 145, 12, 145, 3546, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3552, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3559, 8, 146, 3, 146, 3561, 8, 146, 1, 146, 3, 146, 3564, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3569, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3574, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3591, 8, 148, 10, 148, 12, 148, 3594, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3600, 8, 148, 10, 148, 12, 148, 3603, 9, 148, 3, 148, 3605, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 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, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3632, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3641, 8, 151, 1, 151, 3, 151, 3644, 8, 151, 1, 151, 1, 151, 3, 151, 3648, 8, 151, 1, 151, 1, 151, 3, 151, 3652, 8, 151, 1, 151, 1, 151, 3, 151, 3656, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3661, 8, 151, 10, 151, 12, 151, 3664, 9, 151, 1, 151, 3, 151, 3667, 8, 151, 1, 151, 1, 151, 3, 151, 3671, 8, 151, 1, 151, 1, 151, 3, 151, 3675, 8, 151, 1, 151, 1, 151, 3, 151, 3679, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3684, 8, 151, 1, 151, 1, 151, 3, 151, 3688, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3693, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3699, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3704, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3709, 8, 151, 10, 151, 12, 151, 3712, 9, 151, 1, 151, 3, 151, 3715, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3721, 8, 151, 1, 151, 1, 151, 3, 151, 3725, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3730, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3738, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3744, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3749, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3756, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3761, 8, 151, 1, 151, 1, 151, 3, 151, 3765, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3770, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3776, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3783, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3788, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3795, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3800, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3807, 8, 151, 1, 151, 1, 151, 3, 151, 3811, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3817, 8, 151, 10, 151, 12, 151, 3820, 9, 151, 1, 151, 3, 151, 3823, 8, 151, 3, 151, 3825, 8, 151, 1, 152, 3, 152, 3828, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3833, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3843, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3858, 8, 153, 1, 153, 3, 153, 3861, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3869, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3874, 8, 154, 10, 154, 12, 154, 3877, 9, 154, 1, 155, 1, 155, 3, 155, 3881, 8, 155, 1, 156, 1, 156, 4, 156, 3885, 8, 156, 11, 156, 12, 156, 3886, 1, 157, 1, 157, 3, 157, 3891, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3896, 8, 157, 10, 157, 12, 157, 3899, 9, 157, 1, 157, 1, 157, 3, 157, 3903, 8, 157, 1, 157, 3, 157, 3906, 8, 157, 1, 158, 3, 158, 3909, 8, 158, 1, 158, 1, 158, 3, 158, 3913, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3922, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3940, 8, 159, 1, 159, 3, 159, 3943, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3975, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3980, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3986, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4006, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4011, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4017, 8, 162, 1, 162, 3, 162, 4020, 8, 162, 1, 162, 1, 162, 3, 162, 4024, 8, 162, 1, 162, 1, 162, 3, 162, 4028, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4034, 8, 162, 1, 162, 3, 162, 4037, 8, 162, 1, 162, 1, 162, 3, 162, 4041, 8, 162, 1, 162, 1, 162, 3, 162, 4045, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4050, 8, 162, 1, 162, 3, 162, 4053, 8, 162, 1, 162, 3, 162, 4056, 8, 162, 1, 162, 3, 162, 4059, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4072, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4078, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4086, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4091, 8, 166, 10, 166, 12, 166, 4094, 9, 166, 1, 166, 1, 166, 3, 166, 4098, 8, 166, 1, 166, 3, 166, 4101, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4106, 8, 166, 10, 166, 12, 166, 4109, 9, 166, 3, 166, 4111, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4119, 8, 168, 1, 168, 3, 168, 4122, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4127, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4134, 8, 169, 1, 169, 3, 169, 4137, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4155, 8, 169, 10, 169, 12, 169, 4158, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4169, 8, 169, 1, 170, 3, 170, 4172, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4178, 8, 170, 1, 170, 5, 170, 4181, 8, 170, 10, 170, 12, 170, 4184, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4190, 8, 171, 10, 171, 12, 171, 4193, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4200, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4205, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4211, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4216, 8, 172, 10, 172, 12, 172, 4219, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4226, 8, 172, 1, 172, 3, 172, 4229, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4240, 8, 173, 10, 173, 12, 173, 4243, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4256, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4262, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4270, 8, 174, 3, 174, 4272, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4278, 8, 176, 1, 176, 1, 176, 3, 176, 4282, 8, 176, 1, 176, 3, 176, 4285, 8, 176, 1, 176, 3, 176, 4288, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4293, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4298, 8, 176, 1, 176, 1, 176, 3, 176, 4302, 8, 176, 1, 176, 3, 176, 4305, 8, 176, 1, 176, 3, 176, 4308, 8, 176, 1, 176, 3, 176, 4311, 8, 176, 1, 176, 3, 176, 4314, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4320, 8, 177, 10, 177, 12, 177, 4323, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4333, 8, 178, 1, 178, 3, 178, 4336, 8, 178, 1, 178, 3, 178, 4339, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4344, 8, 178, 1, 178, 3, 178, 4347, 8, 178, 1, 178, 1, 178, 3, 178, 4351, 8, 178, 1, 179, 1, 179, 3, 179, 4355, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4361, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4367, 8, 179, 10, 179, 12, 179, 4370, 9, 179, 3, 179, 4372, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4383, 8, 179, 10, 179, 12, 179, 4386, 9, 179, 1, 179, 1, 179, 3, 179, 4390, 8, 179, 3, 179, 4392, 8, 179, 1, 179, 4, 179, 4395, 8, 179, 11, 179, 12, 179, 4396, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4404, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4411, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4418, 8, 182, 10, 182, 12, 182, 4421, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4426, 8, 183, 10, 183, 12, 183, 4429, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4436, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4441, 8, 185, 10, 185, 12, 185, 4444, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4451, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4456, 8, 187, 10, 187, 12, 187, 4459, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4466, 8, 188, 1, 189, 1, 189, 3, 189, 4470, 8, 189, 1, 189, 1, 189, 3, 189, 4474, 8, 189, 3, 189, 4476, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4482, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4487, 8, 190, 1, 191, 1, 191, 3, 191, 4491, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4498, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4503, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4508, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4513, 8, 193, 3, 193, 4515, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4525, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4535, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4551, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4567, 8, 196, 10, 196, 12, 196, 4570, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4581, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4588, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4603, 8, 199, 1, 199, 4, 199, 4606, 8, 199, 11, 199, 12, 199, 4607, 1, 199, 3, 199, 4611, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4616, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4621, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4626, 8, 200, 1, 200, 3, 200, 4629, 8, 200, 1, 200, 3, 200, 4632, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4637, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4642, 8, 201, 10, 201, 12, 201, 4645, 9, 201, 1, 201, 3, 201, 4648, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4653, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4658, 8, 202, 10, 202, 12, 202, 4661, 9, 202, 1, 202, 3, 202, 4664, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4670, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4679, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4686, 8, 204, 10, 204, 12, 204, 4689, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4700, 8, 206, 11, 206, 12, 206, 4701, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4715, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4721, 8, 207, 1, 207, 1, 207, 3, 207, 4725, 8, 207, 3, 207, 4727, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4734, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4747, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4754, 8, 209, 3, 209, 4756, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4770, 8, 211, 10, 211, 12, 211, 4773, 9, 211, 1, 211, 3, 211, 4776, 8, 211, 1, 211, 1, 211, 3, 211, 4780, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4785, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4790, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4795, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4800, 8, 211, 1, 211, 3, 211, 4803, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4815, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4868, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4877, 8, 213, 1, 213, 1, 213, 3, 213, 4881, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4890, 8, 213, 1, 213, 1, 213, 3, 213, 4894, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4903, 8, 213, 1, 213, 1, 213, 3, 213, 4907, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4912, 8, 213, 1, 213, 3, 213, 4915, 8, 213, 1, 213, 1, 213, 3, 213, 4919, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4924, 8, 213, 3, 213, 4926, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4935, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4940, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4951, 8, 213, 1, 213, 1, 213, 3, 213, 4955, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4969, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4977, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5015, 8, 213, 3, 213, 5017, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5036, 8, 214, 1, 214, 3, 214, 5039, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5066, 8, 215, 1, 215, 1, 215, 3, 215, 5070, 8, 215, 1, 215, 1, 215, 3, 215, 5074, 8, 215, 1, 215, 1, 215, 3, 215, 5078, 8, 215, 1, 215, 1, 215, 3, 215, 5082, 8, 215, 1, 215, 3, 215, 5085, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5100, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5107, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5119, 8, 217, 10, 217, 12, 217, 5122, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5134, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5159, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5178, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5193, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5209, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5216, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5227, 8, 221, 1, 221, 3, 221, 5230, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5247, 8, 222, 10, 222, 12, 222, 5250, 9, 222, 3, 222, 5252, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5263, 8, 223, 10, 223, 12, 223, 5266, 9, 223, 1, 223, 3, 223, 5269, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5289, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5299, 8, 224, 10, 224, 12, 224, 5302, 9, 224, 1, 224, 3, 224, 5305, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5327, 8, 224, 1, 225, 1, 225, 3, 225, 5331, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5341, 8, 225, 1, 225, 1, 225, 3, 225, 5345, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5351, 8, 225, 1, 225, 1, 225, 3, 225, 5355, 8, 225, 5, 225, 5357, 8, 225, 10, 225, 12, 225, 5360, 9, 225, 1, 225, 3, 225, 5363, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5370, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5375, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5386, 8, 230, 1, 231, 1, 231, 3, 231, 5390, 8, 231, 1, 231, 3, 231, 5393, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5398, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5404, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5415, 8, 231, 1, 231, 1, 231, 3, 231, 5419, 8, 231, 1, 231, 3, 231, 5422, 8, 231, 1, 231, 1, 231, 3, 231, 5426, 8, 231, 1, 231, 1, 231, 3, 231, 5430, 8, 231, 1, 231, 3, 231, 5433, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5443, 8, 233, 1, 233, 3, 233, 5446, 8, 233, 1, 234, 1, 234, 3, 234, 5450, 8, 234, 1, 234, 5, 234, 5453, 8, 234, 10, 234, 12, 234, 5456, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5461, 8, 235, 1, 235, 3, 235, 5464, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5469, 8, 235, 1, 235, 3, 235, 5472, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5479, 8, 235, 3, 235, 5481, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5487, 8, 235, 1, 235, 1, 235, 3, 235, 5491, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5500, 8, 237, 1, 237, 4, 237, 5503, 8, 237, 11, 237, 12, 237, 5504, 3, 237, 5507, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5517, 8, 238, 1, 238, 3, 238, 5520, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5525, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5533, 8, 239, 1, 239, 3, 239, 5536, 8, 239, 1, 239, 4, 239, 5539, 8, 239, 11, 239, 12, 239, 5540, 3, 239, 5543, 8, 239, 3, 239, 5545, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5551, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5568, 8, 243, 1, 243, 1, 243, 5, 243, 5572, 8, 243, 10, 243, 12, 243, 5575, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5587, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5593, 8, 244, 1, 244, 1, 244, 3, 244, 5597, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5602, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5632, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5647, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5652, 8, 246, 1, 247, 1, 247, 3, 247, 5656, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5669, 8, 248, 1, 248, 1, 248, 3, 248, 5673, 8, 248, 3, 248, 5675, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5682, 8, 248, 10, 248, 12, 248, 5685, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5690, 8, 248, 3, 248, 5692, 8, 248, 1, 249, 1, 249, 3, 249, 5696, 8, 249, 1, 249, 3, 249, 5699, 8, 249, 1, 249, 3, 249, 5702, 8, 249, 1, 249, 3, 249, 5705, 8, 249, 1, 249, 3, 249, 5708, 8, 249, 3, 249, 5710, 8, 249, 1, 249, 3, 249, 5713, 8, 249, 1, 250, 1, 250, 3, 250, 5717, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5723, 8, 250, 10, 250, 12, 250, 5726, 9, 250, 1, 250, 1, 250, 3, 250, 5730, 8, 250, 1, 250, 3, 250, 5733, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5739, 8, 252, 1, 252, 1, 252, 3, 252, 5743, 8, 252, 1, 253, 1, 253, 3, 253, 5747, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5752, 8, 253, 3, 253, 5754, 8, 253, 1, 254, 1, 254, 3, 254, 5758, 8, 254, 1, 255, 1, 255, 3, 255, 5762, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5767, 8, 256, 10, 256, 12, 256, 5770, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5775, 8, 257, 1, 257, 1, 257, 3, 257, 5779, 8, 257, 3, 257, 5781, 8, 257, 3, 257, 5783, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5796, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5802, 8, 259, 10, 259, 12, 259, 5805, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5812, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5821, 8, 261, 10, 261, 12, 261, 5824, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5833, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5838, 8, 263, 1, 263, 1, 263, 3, 263, 5842, 8, 263, 1, 263, 1, 263, 3, 263, 5846, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5853, 8, 263, 1, 263, 3, 263, 5856, 8, 263, 3, 263, 5858, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5866, 8, 265, 1, 265, 1, 265, 3, 265, 5870, 8, 265, 1, 266, 3, 266, 5873, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5880, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5887, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5892, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5899, 8, 266, 1, 266, 3, 266, 5902, 8, 266, 3, 266, 5904, 8, 266, 1, 266, 3, 266, 5907, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5913, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5918, 8, 267, 1, 267, 1, 267, 3, 267, 5922, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5927, 8, 268, 10, 268, 12, 268, 5930, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5939, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5946, 8, 271, 1, 271, 3, 271, 5949, 8, 271, 1, 271, 3, 271, 5952, 8, 271, 1, 272, 1, 272, 3, 272, 5956, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5967, 8, 272, 1, 272, 3, 272, 5970, 8, 272, 1, 272, 3, 272, 5973, 8, 272, 1, 272, 3, 272, 5976, 8, 272, 1, 273, 3, 273, 5979, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5986, 8, 273, 1, 273, 3, 273, 5989, 8, 273, 1, 273, 3, 273, 5992, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 5997, 8, 274, 10, 274, 12, 274, 6000, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6011, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6018, 8, 275, 3, 275, 6020, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6025, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6030, 8, 276, 10, 276, 12, 276, 6033, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6038, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6045, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6050, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6055, 8, 279, 1, 279, 1, 279, 3, 279, 6059, 8, 279, 1, 279, 1, 279, 3, 279, 6063, 8, 279, 1, 279, 1, 279, 3, 279, 6067, 8, 279, 3, 279, 6069, 8, 279, 1, 280, 1, 280, 3, 280, 6073, 8, 280, 1, 281, 1, 281, 3, 281, 6077, 8, 281, 1, 281, 3, 281, 6080, 8, 281, 1, 281, 3, 281, 6083, 8, 281, 3, 281, 6085, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6095, 8, 281, 3, 281, 6097, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6102, 8, 281, 5, 281, 6104, 8, 281, 10, 281, 12, 281, 6107, 9, 281, 1, 282, 1, 282, 3, 282, 6111, 8, 282, 1, 283, 1, 283, 3, 283, 6115, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6120, 8, 283, 10, 283, 12, 283, 6123, 9, 283, 1, 284, 1, 284, 3, 284, 6127, 8, 284, 1, 284, 1, 284, 3, 284, 6131, 8, 284, 1, 284, 3, 284, 6134, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6140, 8, 284, 1, 284, 3, 284, 6143, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6162, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6169, 8, 287, 1, 287, 1, 287, 3, 287, 6173, 8, 287, 1, 288, 3, 288, 6176, 8, 288, 1, 288, 1, 288, 3, 288, 6180, 8, 288, 1, 288, 1, 288, 3, 288, 6184, 8, 288, 1, 288, 3, 288, 6187, 8, 288, 1, 288, 3, 288, 6190, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6195, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6202, 8, 290, 10, 290, 12, 290, 6205, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6211, 8, 291, 1, 291, 1, 291, 3, 291, 6215, 8, 291, 1, 292, 1, 292, 3, 292, 6219, 8, 292, 1, 292, 1, 292, 3, 292, 6223, 8, 292, 1, 292, 3, 292, 6226, 8, 292, 3, 292, 6228, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6233, 8, 293, 1, 293, 1, 293, 3, 293, 6237, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6242, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6248, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6255, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6260, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6265, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6272, 8, 298, 10, 298, 12, 298, 6275, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6281, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6287, 8, 299, 10, 299, 12, 299, 6290, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6300, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6305, 8, 300, 1, 300, 1, 300, 3, 300, 6309, 8, 300, 1, 300, 3, 300, 6312, 8, 300, 1, 300, 1, 300, 3, 300, 6316, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6321, 8, 300, 4, 300, 6323, 8, 300, 11, 300, 12, 300, 6324, 1, 300, 1, 300, 1, 300, 3, 300, 6330, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6336, 8, 301, 10, 301, 12, 301, 6339, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6347, 8, 303, 10, 303, 12, 303, 6350, 9, 303, 1, 304, 1, 304, 3, 304, 6354, 8, 304, 1, 304, 1, 304, 3, 304, 6358, 8, 304, 1, 304, 3, 304, 6361, 8, 304, 1, 304, 3, 304, 6364, 8, 304, 3, 304, 6366, 8, 304, 1, 304, 3, 304, 6369, 8, 304, 1, 304, 3, 304, 6372, 8, 304, 1, 304, 3, 304, 6375, 8, 304, 1, 304, 1, 304, 3, 304, 6379, 8, 304, 1, 304, 1, 304, 3, 304, 6383, 8, 304, 1, 304, 1, 304, 3, 304, 6387, 8, 304, 3, 304, 6389, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6398, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6403, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6409, 8, 304, 1, 304, 1, 304, 3, 304, 6413, 8, 304, 3, 304, 6415, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6422, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6427, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6433, 8, 304, 10, 304, 12, 304, 6436, 9, 304, 1, 305, 3, 305, 6439, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6446, 8, 305, 1, 306, 1, 306, 1, 306, 3, 306, 6451, 8, 306, 1, 306, 3, 306, 6454, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6460, 8, 306, 1, 307, 1, 307, 3, 307, 6464, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6470, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6479, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6485, 8, 309, 3, 309, 6487, 8, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6492, 8, 310, 1, 310, 3, 310, 6495, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6504, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6511, 8, 310, 3, 310, 6513, 8, 310, 1, 311, 1, 311, 1, 311, 5, 311, 6518, 8, 311, 10, 311, 12, 311, 6521, 9, 311, 1, 312, 1, 312, 3, 312, 6525, 8, 312, 1, 312, 3, 312, 6528, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6538, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 5, 314, 6547, 8, 314, 10, 314, 12, 314, 6550, 9, 314, 1, 314, 1, 314, 3, 314, 6554, 8, 314, 1, 314, 1, 314, 3, 314, 6558, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6566, 8, 315, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6576, 8, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6581, 8, 318, 10, 318, 12, 318, 6584, 9, 318, 1, 319, 1, 319, 1, 319, 3, 319, 6589, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6598, 8, 320, 10, 320, 12, 320, 6601, 9, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6606, 8, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6614, 8, 320, 10, 320, 12, 320, 6617, 9, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6625, 8, 321, 1, 321, 1, 321, 3, 321, 6629, 8, 321, 1, 321, 4, 321, 6632, 8, 321, 11, 321, 12, 321, 6633, 3, 321, 6636, 8, 321, 1, 321, 1, 321, 3, 321, 6640, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6648, 8, 322, 1, 323, 3, 323, 6651, 8, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6656, 8, 323, 1, 323, 5, 323, 6659, 8, 323, 10, 323, 12, 323, 6662, 9, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6668, 8, 323, 3, 323, 6670, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6676, 8, 323, 1, 324, 1, 324, 3, 324, 6680, 8, 324, 1, 324, 3, 324, 6683, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6688, 8, 324, 1, 324, 3, 324, 6691, 8, 324, 3, 324, 6693, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6699, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6708, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6714, 8, 326, 1, 326, 3, 326, 6717, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 3, 328, 6725, 8, 328, 1, 328, 3, 328, 6728, 8, 328, 1, 329, 1, 329, 3, 329, 6732, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6738, 8, 329, 3, 329, 6740, 8, 329, 1, 329, 3, 329, 6743, 8, 329, 1, 330, 1, 330, 3, 330, 6747, 8, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6752, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6759, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6766, 8, 331, 3, 331, 6768, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6774, 8, 331, 3, 331, 6776, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6781, 8, 331, 3, 331, 6783, 8, 331, 1, 332, 1, 332, 3, 332, 6787, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 3, 335, 6796, 8, 335, 1, 335, 1, 335, 3, 335, 6800, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 5, 335, 6808, 8, 335, 10, 335, 12, 335, 6811, 9, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6824, 8, 336, 1, 336, 3, 336, 6827, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6835, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6842, 8, 336, 10, 336, 12, 336, 6845, 9, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6850, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6855, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6863, 8, 336, 3, 336, 6865, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6870, 8, 336, 1, 336, 1, 336, 3, 336, 6874, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6879, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6884, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6890, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6906, 8, 337, 10, 337, 12, 337, 6909, 9, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6917, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6932, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6937, 8, 338, 1, 338, 3, 338, 6940, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6946, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6951, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6964, 8, 338, 1, 338, 4, 338, 6967, 8, 338, 11, 338, 12, 338, 6968, 1, 338, 1, 338, 3, 338, 6973, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6980, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6999, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7011, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7016, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7024, 8, 338, 5, 338, 7026, 8, 338, 10, 338, 12, 338, 7029, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7037, 8, 339, 1, 339, 3, 339, 7040, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7045, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7050, 8, 339, 1, 339, 3, 339, 7053, 8, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7064, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7072, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7077, 8, 340, 3, 340, 7079, 8, 340, 1, 340, 3, 340, 7082, 8, 340, 1, 341, 1, 341, 3, 341, 7086, 8, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7097, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7118, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7126, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7139, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7149, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7155, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7161, 8, 342, 1, 342, 3, 342, 7164, 8, 342, 1, 342, 3, 342, 7167, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7193, 8, 342, 3, 342, 7195, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7216, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7226, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7239, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7244, 8, 342, 1, 342, 1, 342, 3, 342, 7248, 8, 342, 3, 342, 7250, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7262, 8, 342, 1, 343, 1, 343, 1, 343, 5, 343, 7267, 8, 343, 10, 343, 12, 343, 7270, 9, 343, 1, 344, 1, 344, 1, 344, 3, 344, 7275, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 3, 346, 7281, 8, 346, 1, 346, 1, 346, 3, 346, 7285, 8, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 5, 348, 7294, 8, 348, 10, 348, 12, 348, 7297, 9, 348, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 7309, 8, 351, 1, 352, 1, 352, 3, 352, 7313, 8, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7318, 8, 352, 1, 352, 3, 352, 7321, 8, 352, 1, 352, 3, 352, 7324, 8, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7333, 8, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7344, 8, 353, 3, 353, 7346, 8, 353, 1, 354, 1, 354, 3, 354, 7350, 8, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7355, 8, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7364, 8, 355, 1, 356, 1, 356, 1, 356, 3, 356, 7369, 8, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 358, 1, 358, 3, 358, 7377, 8, 358, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7387, 8, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7395, 8, 361, 1, 362, 1, 362, 3, 362, 7399, 8, 362, 1, 362, 3, 362, 7402, 8, 362, 1, 363, 1, 363, 1, 363, 5, 363, 7407, 8, 363, 10, 363, 12, 363, 7410, 9, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7417, 8, 364, 1, 365, 1, 365, 3, 365, 7421, 8, 365, 1, 366, 1, 366, 1, 366, 5, 366, 7426, 8, 366, 10, 366, 12, 366, 7429, 9, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7436, 8, 367, 3, 367, 7438, 8, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 5, 368, 7445, 8, 368, 10, 368, 12, 368, 7448, 9, 368, 3, 368, 7450, 8, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 7462, 8, 369, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7471, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7478, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7487, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 3, 373, 7497, 8, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7502, 8, 373, 1, 373, 1, 373, 3, 373, 7506, 8, 373, 3, 373, 7508, 8, 373, 1, 373, 3, 373, 7511, 8, 373, 1, 374, 4, 374, 7514, 8, 374, 11, 374, 12, 374, 7515, 1, 375, 5, 375, 7519, 8, 375, 10, 375, 12, 375, 7522, 9, 375, 1, 376, 1, 376, 1, 376, 5, 376, 7527, 8, 376, 10, 376, 12, 376, 7530, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7537, 8, 377, 1, 377, 3, 377, 7540, 8, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7545, 8, 378, 10, 378, 12, 378, 7548, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7553, 8, 379, 10, 379, 12, 379, 7556, 9, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7561, 8, 380, 10, 380, 12, 380, 7564, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7569, 8, 381, 10, 381, 12, 381, 7572, 9, 381, 1, 382, 1, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 3, 388, 7588, 8, 388, 1, 389, 1, 389, 1, 389, 5, 389, 7593, 8, 389, 10, 389, 12, 389, 7596, 9, 389, 1, 390, 1, 390, 1, 390, 5, 390, 7601, 8, 390, 10, 390, 12, 390, 7604, 9, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7620, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7626, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7632, 8, 398, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7643, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7649, 8, 402, 1, 403, 1, 403, 1, 403, 3, 403, 7654, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 5, 404, 7660, 8, 404, 10, 404, 12, 404, 7663, 9, 404, 1, 404, 1, 404, 3, 404, 7667, 8, 404, 1, 405, 3, 405, 7670, 8, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7679, 8, 406, 1, 407, 1, 407, 1, 407, 5, 407, 7684, 8, 407, 10, 407, 12, 407, 7687, 9, 407, 1, 408, 1, 408, 3, 408, 7691, 8, 408, 1, 409, 1, 409, 3, 409, 7695, 8, 409, 1, 410, 1, 410, 1, 410, 3, 410, 7700, 8, 410, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7706, 8, 411, 1, 412, 1, 412, 1, 412, 3, 412, 7711, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7719, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7774, 8, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 417, 3, 417, 7781, 8, 417, 1, 417, 1, 417, 1, 417, 1, 417, 4, 417, 7787, 8, 417, 11, 417, 12, 417, 7788, 3, 417, 7791, 8, 417, 3, 417, 7793, 8, 417, 1, 417, 1, 417, 5, 417, 7797, 8, 417, 10, 417, 12, 417, 7800, 9, 417, 1, 417, 3, 417, 7803, 8, 417, 1, 417, 1, 417, 3, 417, 7807, 8, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7818, 8, 419, 1, 419, 3, 419, 7821, 8, 419, 1, 419, 1, 419, 3, 419, 7825, 8, 419, 1, 419, 1, 419, 3, 419, 7829, 8, 419, 1, 419, 1, 419, 3, 419, 7833, 8, 419, 1, 419, 3, 419, 7836, 8, 419, 1, 419, 3, 419, 7839, 8, 419, 1, 419, 3, 419, 7842, 8, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 5, 419, 7849, 8, 419, 10, 419, 12, 419, 7852, 9, 419, 1, 419, 1, 419, 3, 419, 7856, 8, 419, 1, 419, 1, 419, 3, 419, 7860, 8, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7893, 8, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7903, 8, 424, 1, 424, 1, 424, 3, 424, 7907, 8, 424, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7913, 8, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7918, 8, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 3, 426, 7927, 8, 426, 1, 426, 1, 426, 1, 426, 1, 426, 5, 426, 7933, 8, 426, 10, 426, 12, 426, 7936, 9, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 3, 428, 7946, 8, 428, 1, 428, 1, 428, 1, 428, 1, 428, 5, 428, 7952, 8, 428, 10, 428, 12, 428, 7955, 9, 428, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7961, 8, 429, 10, 429, 12, 429, 7964, 9, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7970, 8, 429, 10, 429, 12, 429, 7973, 9, 429, 5, 429, 7975, 8, 429, 10, 429, 12, 429, 7978, 9, 429, 1, 429, 3, 429, 7981, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 5, 430, 7989, 8, 430, 10, 430, 12, 430, 7992, 9, 430, 1, 431, 1, 431, 3, 431, 7996, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 8002, 8, 431, 10, 431, 12, 431, 8005, 9, 431, 4, 431, 8007, 8, 431, 11, 431, 12, 431, 8008, 1, 431, 3, 431, 8012, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 3, 432, 8019, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 3, 432, 8025, 8, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8033, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8041, 8, 433, 1, 433, 3, 433, 8044, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8051, 8, 433, 3, 433, 8053, 8, 433, 1, 434, 3, 434, 8056, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8062, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 3, 435, 8071, 8, 435, 1, 435, 1, 435, 3, 435, 8075, 8, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8089, 8, 436, 1, 436, 3, 436, 8092, 8, 436, 3, 436, 8094, 8, 436, 1, 436, 1, 436, 1, 437, 1, 437, 3, 437, 8100, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 4, 437, 8108, 8, 437, 11, 437, 12, 437, 8109, 3, 437, 8112, 8, 437, 3, 437, 8114, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 5, 437, 8120, 8, 437, 10, 437, 12, 437, 8123, 9, 437, 3, 437, 8125, 8, 437, 1, 437, 3, 437, 8128, 8, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8138, 8, 439, 1, 439, 1, 439, 1, 440, 1, 440, 5, 440, 8144, 8, 440, 10, 440, 12, 440, 8147, 9, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8152, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8158, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 3, 442, 8165, 8, 442, 1, 442, 1, 442, 3, 442, 8169, 8, 442, 1, 442, 1, 442, 3, 442, 8173, 8, 442, 1, 442, 3, 442, 8176, 8, 442, 1, 442, 3, 442, 8179, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 3, 443, 8185, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 3, 444, 8192, 8, 444, 1, 444, 3, 444, 8195, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8203, 8, 444, 3, 444, 8205, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 5, 444, 8212, 8, 444, 10, 444, 12, 444, 8215, 9, 444, 1, 444, 1, 444, 3, 444, 8219, 8, 444, 3, 444, 8221, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 3, 445, 8228, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 3, 446, 8234, 8, 446, 1, 446, 3, 446, 8237, 8, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8249, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8256, 8, 447, 3, 447, 8258, 8, 447, 1, 448, 1, 448, 3, 448, 8262, 8, 448, 1, 448, 1, 448, 1, 448, 1, 449, 3, 449, 8268, 8, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8273, 8, 449, 1, 449, 1, 449, 3, 449, 8277, 8, 449, 1, 449, 3, 449, 8280, 8, 449, 1, 449, 3, 449, 8283, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 4, 449, 8290, 8, 449, 11, 449, 12, 449, 8291, 1, 449, 3, 449, 8295, 8, 449, 1, 450, 3, 450, 8298, 8, 450, 1, 450, 1, 450, 3, 450, 8302, 8, 450, 1, 450, 1, 450, 3, 450, 8306, 8, 450, 3, 450, 8308, 8, 450, 1, 450, 3, 450, 8311, 8, 450, 1, 450, 3, 450, 8314, 8, 450, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8320, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8327, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8334, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8340, 8, 451, 3, 451, 8342, 8, 451, 1, 452, 1, 452, 3, 452, 8346, 8, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8351, 8, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 5, 453, 8367, 8, 453, 10, 453, 12, 453, 8370, 9, 453, 1, 453, 1, 453, 4, 453, 8374, 8, 453, 11, 453, 12, 453, 8375, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 5, 454, 8383, 8, 454, 10, 454, 12, 454, 8386, 9, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8392, 8, 454, 1, 455, 1, 455, 3, 455, 8396, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 3, 458, 8408, 8, 458, 1, 458, 3, 458, 8411, 8, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 3, 459, 8424, 8, 459, 1, 459, 3, 459, 8427, 8, 459, 1, 460, 1, 460, 3, 460, 8431, 8, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 5, 461, 8438, 8, 461, 10, 461, 12, 461, 8441, 9, 461, 1, 461, 1, 461, 5, 461, 8445, 8, 461, 10, 461, 12, 461, 8448, 9, 461, 4, 461, 8450, 8, 461, 11, 461, 12, 461, 8451, 1, 462, 1, 462, 1, 462, 3, 462, 8457, 8, 462, 1, 463, 1, 463, 3, 463, 8461, 8, 463, 1, 464, 3, 464, 8464, 8, 464, 1, 464, 3, 464, 8467, 8, 464, 1, 464, 3, 464, 8470, 8, 464, 1, 464, 3, 464, 8473, 8, 464, 1, 464, 3, 464, 8476, 8, 464, 1, 464, 3, 464, 8479, 8, 464, 1, 464, 3, 464, 8482, 8, 464, 1, 464, 0, 3, 670, 674, 676, 465, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 0, 119, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 158, 158, 277, 277, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 1, 0, 549, 551, 2, 0, 213, 213, 254, 254, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 574, 574, 576, 576, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9922, 0, 933, 1, 0, 0, 0, 2, 938, 1, 0, 0, 0, 4, 1062, 1, 0, 0, 0, 6, 1064, 1, 0, 0, 0, 8, 1067, 1, 0, 0, 0, 10, 1117, 1, 0, 0, 0, 12, 1127, 1, 0, 0, 0, 14, 1129, 1, 0, 0, 0, 16, 1141, 1, 0, 0, 0, 18, 1153, 1, 0, 0, 0, 20, 1164, 1, 0, 0, 0, 22, 1198, 1, 0, 0, 0, 24, 1242, 1, 0, 0, 0, 26, 1244, 1, 0, 0, 0, 28, 1256, 1, 0, 0, 0, 30, 1263, 1, 0, 0, 0, 32, 1282, 1, 0, 0, 0, 34, 1290, 1, 0, 0, 0, 36, 1292, 1, 0, 0, 0, 38, 1306, 1, 0, 0, 0, 40, 1310, 1, 0, 0, 0, 42, 1347, 1, 0, 0, 0, 44, 1349, 1, 0, 0, 0, 46, 1357, 1, 0, 0, 0, 48, 1367, 1, 0, 0, 0, 50, 1374, 1, 0, 0, 0, 52, 1382, 1, 0, 0, 0, 54, 1388, 1, 0, 0, 0, 56, 1404, 1, 0, 0, 0, 58, 1408, 1, 0, 0, 0, 60, 1410, 1, 0, 0, 0, 62, 1422, 1, 0, 0, 0, 64, 1427, 1, 0, 0, 0, 66, 1432, 1, 0, 0, 0, 68, 1434, 1, 0, 0, 0, 70, 1446, 1, 0, 0, 0, 72, 1454, 1, 0, 0, 0, 74, 1456, 1, 0, 0, 0, 76, 1576, 1, 0, 0, 0, 78, 1578, 1, 0, 0, 0, 80, 1592, 1, 0, 0, 0, 82, 1594, 1, 0, 0, 0, 84, 1831, 1, 0, 0, 0, 86, 1838, 1, 0, 0, 0, 88, 1840, 1, 0, 0, 0, 90, 1842, 1, 0, 0, 0, 92, 1845, 1, 0, 0, 0, 94, 1856, 1, 0, 0, 0, 96, 1859, 1, 0, 0, 0, 98, 1889, 1, 0, 0, 0, 100, 1891, 1, 0, 0, 0, 102, 1932, 1, 0, 0, 0, 104, 1934, 1, 0, 0, 0, 106, 1988, 1, 0, 0, 0, 108, 2034, 1, 0, 0, 0, 110, 2055, 1, 0, 0, 0, 112, 2057, 1, 0, 0, 0, 114, 2074, 1, 0, 0, 0, 116, 2155, 1, 0, 0, 0, 118, 2157, 1, 0, 0, 0, 120, 2168, 1, 0, 0, 0, 122, 2191, 1, 0, 0, 0, 124, 2209, 1, 0, 0, 0, 126, 2211, 1, 0, 0, 0, 128, 2246, 1, 0, 0, 0, 130, 2339, 1, 0, 0, 0, 132, 2344, 1, 0, 0, 0, 134, 2346, 1, 0, 0, 0, 136, 2444, 1, 0, 0, 0, 138, 2446, 1, 0, 0, 0, 140, 2450, 1, 0, 0, 0, 142, 2461, 1, 0, 0, 0, 144, 2469, 1, 0, 0, 0, 146, 2472, 1, 0, 0, 0, 148, 2475, 1, 0, 0, 0, 150, 2493, 1, 0, 0, 0, 152, 2495, 1, 0, 0, 0, 154, 2499, 1, 0, 0, 0, 156, 2512, 1, 0, 0, 0, 158, 2514, 1, 0, 0, 0, 160, 2519, 1, 0, 0, 0, 162, 2539, 1, 0, 0, 0, 164, 2547, 1, 0, 0, 0, 166, 2554, 1, 0, 0, 0, 168, 2556, 1, 0, 0, 0, 170, 2565, 1, 0, 0, 0, 172, 2568, 1, 0, 0, 0, 174, 2572, 1, 0, 0, 0, 176, 2576, 1, 0, 0, 0, 178, 2601, 1, 0, 0, 0, 180, 2611, 1, 0, 0, 0, 182, 2625, 1, 0, 0, 0, 184, 2641, 1, 0, 0, 0, 186, 2647, 1, 0, 0, 0, 188, 2674, 1, 0, 0, 0, 190, 2684, 1, 0, 0, 0, 192, 2700, 1, 0, 0, 0, 194, 2744, 1, 0, 0, 0, 196, 2751, 1, 0, 0, 0, 198, 2753, 1, 0, 0, 0, 200, 2779, 1, 0, 0, 0, 202, 2790, 1, 0, 0, 0, 204, 2809, 1, 0, 0, 0, 206, 2820, 1, 0, 0, 0, 208, 2858, 1, 0, 0, 0, 210, 2879, 1, 0, 0, 0, 212, 2881, 1, 0, 0, 0, 214, 2901, 1, 0, 0, 0, 216, 2913, 1, 0, 0, 0, 218, 2925, 1, 0, 0, 0, 220, 2928, 1, 0, 0, 0, 222, 2931, 1, 0, 0, 0, 224, 2951, 1, 0, 0, 0, 226, 2956, 1, 0, 0, 0, 228, 3005, 1, 0, 0, 0, 230, 3007, 1, 0, 0, 0, 232, 3030, 1, 0, 0, 0, 234, 3046, 1, 0, 0, 0, 236, 3058, 1, 0, 0, 0, 238, 3085, 1, 0, 0, 0, 240, 3100, 1, 0, 0, 0, 242, 3163, 1, 0, 0, 0, 244, 3165, 1, 0, 0, 0, 246, 3170, 1, 0, 0, 0, 248, 3176, 1, 0, 0, 0, 250, 3263, 1, 0, 0, 0, 252, 3269, 1, 0, 0, 0, 254, 3271, 1, 0, 0, 0, 256, 3287, 1, 0, 0, 0, 258, 3289, 1, 0, 0, 0, 260, 3298, 1, 0, 0, 0, 262, 3302, 1, 0, 0, 0, 264, 3315, 1, 0, 0, 0, 266, 3327, 1, 0, 0, 0, 268, 3329, 1, 0, 0, 0, 270, 3351, 1, 0, 0, 0, 272, 3363, 1, 0, 0, 0, 274, 3374, 1, 0, 0, 0, 276, 3465, 1, 0, 0, 0, 278, 3467, 1, 0, 0, 0, 280, 3478, 1, 0, 0, 0, 282, 3489, 1, 0, 0, 0, 284, 3491, 1, 0, 0, 0, 286, 3517, 1, 0, 0, 0, 288, 3519, 1, 0, 0, 0, 290, 3523, 1, 0, 0, 0, 292, 3573, 1, 0, 0, 0, 294, 3575, 1, 0, 0, 0, 296, 3581, 1, 0, 0, 0, 298, 3606, 1, 0, 0, 0, 300, 3610, 1, 0, 0, 0, 302, 3824, 1, 0, 0, 0, 304, 3842, 1, 0, 0, 0, 306, 3868, 1, 0, 0, 0, 308, 3870, 1, 0, 0, 0, 310, 3878, 1, 0, 0, 0, 312, 3884, 1, 0, 0, 0, 314, 3888, 1, 0, 0, 0, 316, 3908, 1, 0, 0, 0, 318, 3914, 1, 0, 0, 0, 320, 3981, 1, 0, 0, 0, 322, 4012, 1, 0, 0, 0, 324, 4058, 1, 0, 0, 0, 326, 4060, 1, 0, 0, 0, 328, 4062, 1, 0, 0, 0, 330, 4073, 1, 0, 0, 0, 332, 4110, 1, 0, 0, 0, 334, 4112, 1, 0, 0, 0, 336, 4118, 1, 0, 0, 0, 338, 4168, 1, 0, 0, 0, 340, 4171, 1, 0, 0, 0, 342, 4185, 1, 0, 0, 0, 344, 4206, 1, 0, 0, 0, 346, 4230, 1, 0, 0, 0, 348, 4271, 1, 0, 0, 0, 350, 4273, 1, 0, 0, 0, 352, 4275, 1, 0, 0, 0, 354, 4315, 1, 0, 0, 0, 356, 4332, 1, 0, 0, 0, 358, 4352, 1, 0, 0, 0, 360, 4405, 1, 0, 0, 0, 362, 4408, 1, 0, 0, 0, 364, 4414, 1, 0, 0, 0, 366, 4422, 1, 0, 0, 0, 368, 4435, 1, 0, 0, 0, 370, 4437, 1, 0, 0, 0, 372, 4450, 1, 0, 0, 0, 374, 4452, 1, 0, 0, 0, 376, 4465, 1, 0, 0, 0, 378, 4475, 1, 0, 0, 0, 380, 4486, 1, 0, 0, 0, 382, 4497, 1, 0, 0, 0, 384, 4499, 1, 0, 0, 0, 386, 4504, 1, 0, 0, 0, 388, 4518, 1, 0, 0, 0, 390, 4550, 1, 0, 0, 0, 392, 4587, 1, 0, 0, 0, 394, 4589, 1, 0, 0, 0, 396, 4592, 1, 0, 0, 0, 398, 4595, 1, 0, 0, 0, 400, 4612, 1, 0, 0, 0, 402, 4633, 1, 0, 0, 0, 404, 4649, 1, 0, 0, 0, 406, 4665, 1, 0, 0, 0, 408, 4687, 1, 0, 0, 0, 410, 4692, 1, 0, 0, 0, 412, 4695, 1, 0, 0, 0, 414, 4703, 1, 0, 0, 0, 416, 4728, 1, 0, 0, 0, 418, 4731, 1, 0, 0, 0, 420, 4759, 1, 0, 0, 0, 422, 4764, 1, 0, 0, 0, 424, 4804, 1, 0, 0, 0, 426, 5016, 1, 0, 0, 0, 428, 5018, 1, 0, 0, 0, 430, 5106, 1, 0, 0, 0, 432, 5108, 1, 0, 0, 0, 434, 5114, 1, 0, 0, 0, 436, 5125, 1, 0, 0, 0, 438, 5135, 1, 0, 0, 0, 440, 5215, 1, 0, 0, 0, 442, 5217, 1, 0, 0, 0, 444, 5231, 1, 0, 0, 0, 446, 5253, 1, 0, 0, 0, 448, 5326, 1, 0, 0, 0, 450, 5328, 1, 0, 0, 0, 452, 5369, 1, 0, 0, 0, 454, 5371, 1, 0, 0, 0, 456, 5376, 1, 0, 0, 0, 458, 5379, 1, 0, 0, 0, 460, 5382, 1, 0, 0, 0, 462, 5432, 1, 0, 0, 0, 464, 5434, 1, 0, 0, 0, 466, 5445, 1, 0, 0, 0, 468, 5447, 1, 0, 0, 0, 470, 5457, 1, 0, 0, 0, 472, 5492, 1, 0, 0, 0, 474, 5495, 1, 0, 0, 0, 476, 5516, 1, 0, 0, 0, 478, 5526, 1, 0, 0, 0, 480, 5546, 1, 0, 0, 0, 482, 5552, 1, 0, 0, 0, 484, 5558, 1, 0, 0, 0, 486, 5563, 1, 0, 0, 0, 488, 5576, 1, 0, 0, 0, 490, 5603, 1, 0, 0, 0, 492, 5651, 1, 0, 0, 0, 494, 5653, 1, 0, 0, 0, 496, 5691, 1, 0, 0, 0, 498, 5693, 1, 0, 0, 0, 500, 5714, 1, 0, 0, 0, 502, 5734, 1, 0, 0, 0, 504, 5738, 1, 0, 0, 0, 506, 5753, 1, 0, 0, 0, 508, 5755, 1, 0, 0, 0, 510, 5759, 1, 0, 0, 0, 512, 5763, 1, 0, 0, 0, 514, 5771, 1, 0, 0, 0, 516, 5795, 1, 0, 0, 0, 518, 5797, 1, 0, 0, 0, 520, 5808, 1, 0, 0, 0, 522, 5816, 1, 0, 0, 0, 524, 5832, 1, 0, 0, 0, 526, 5857, 1, 0, 0, 0, 528, 5859, 1, 0, 0, 0, 530, 5863, 1, 0, 0, 0, 532, 5872, 1, 0, 0, 0, 534, 5912, 1, 0, 0, 0, 536, 5923, 1, 0, 0, 0, 538, 5931, 1, 0, 0, 0, 540, 5934, 1, 0, 0, 0, 542, 5938, 1, 0, 0, 0, 544, 5953, 1, 0, 0, 0, 546, 5978, 1, 0, 0, 0, 548, 5993, 1, 0, 0, 0, 550, 6019, 1, 0, 0, 0, 552, 6021, 1, 0, 0, 0, 554, 6044, 1, 0, 0, 0, 556, 6046, 1, 0, 0, 0, 558, 6054, 1, 0, 0, 0, 560, 6072, 1, 0, 0, 0, 562, 6096, 1, 0, 0, 0, 564, 6108, 1, 0, 0, 0, 566, 6112, 1, 0, 0, 0, 568, 6124, 1, 0, 0, 0, 570, 6144, 1, 0, 0, 0, 572, 6152, 1, 0, 0, 0, 574, 6166, 1, 0, 0, 0, 576, 6189, 1, 0, 0, 0, 578, 6191, 1, 0, 0, 0, 580, 6196, 1, 0, 0, 0, 582, 6206, 1, 0, 0, 0, 584, 6227, 1, 0, 0, 0, 586, 6229, 1, 0, 0, 0, 588, 6238, 1, 0, 0, 0, 590, 6249, 1, 0, 0, 0, 592, 6259, 1, 0, 0, 0, 594, 6261, 1, 0, 0, 0, 596, 6268, 1, 0, 0, 0, 598, 6299, 1, 0, 0, 0, 600, 6329, 1, 0, 0, 0, 602, 6331, 1, 0, 0, 0, 604, 6340, 1, 0, 0, 0, 606, 6343, 1, 0, 0, 0, 608, 6414, 1, 0, 0, 0, 610, 6438, 1, 0, 0, 0, 612, 6459, 1, 0, 0, 0, 614, 6461, 1, 0, 0, 0, 616, 6469, 1, 0, 0, 0, 618, 6486, 1, 0, 0, 0, 620, 6512, 1, 0, 0, 0, 622, 6514, 1, 0, 0, 0, 624, 6522, 1, 0, 0, 0, 626, 6529, 1, 0, 0, 0, 628, 6553, 1, 0, 0, 0, 630, 6559, 1, 0, 0, 0, 632, 6567, 1, 0, 0, 0, 634, 6570, 1, 0, 0, 0, 636, 6577, 1, 0, 0, 0, 638, 6585, 1, 0, 0, 0, 640, 6590, 1, 0, 0, 0, 642, 6620, 1, 0, 0, 0, 644, 6647, 1, 0, 0, 0, 646, 6675, 1, 0, 0, 0, 648, 6692, 1, 0, 0, 0, 650, 6698, 1, 0, 0, 0, 652, 6716, 1, 0, 0, 0, 654, 6718, 1, 0, 0, 0, 656, 6722, 1, 0, 0, 0, 658, 6739, 1, 0, 0, 0, 660, 6744, 1, 0, 0, 0, 662, 6782, 1, 0, 0, 0, 664, 6784, 1, 0, 0, 0, 666, 6788, 1, 0, 0, 0, 668, 6790, 1, 0, 0, 0, 670, 6799, 1, 0, 0, 0, 672, 6883, 1, 0, 0, 0, 674, 6889, 1, 0, 0, 0, 676, 6998, 1, 0, 0, 0, 678, 7030, 1, 0, 0, 0, 680, 7081, 1, 0, 0, 0, 682, 7085, 1, 0, 0, 0, 684, 7261, 1, 0, 0, 0, 686, 7263, 1, 0, 0, 0, 688, 7271, 1, 0, 0, 0, 690, 7276, 1, 0, 0, 0, 692, 7278, 1, 0, 0, 0, 694, 7286, 1, 0, 0, 0, 696, 7289, 1, 0, 0, 0, 698, 7298, 1, 0, 0, 0, 700, 7301, 1, 0, 0, 0, 702, 7305, 1, 0, 0, 0, 704, 7310, 1, 0, 0, 0, 706, 7327, 1, 0, 0, 0, 708, 7354, 1, 0, 0, 0, 710, 7363, 1, 0, 0, 0, 712, 7365, 1, 0, 0, 0, 714, 7372, 1, 0, 0, 0, 716, 7376, 1, 0, 0, 0, 718, 7378, 1, 0, 0, 0, 720, 7386, 1, 0, 0, 0, 722, 7394, 1, 0, 0, 0, 724, 7401, 1, 0, 0, 0, 726, 7403, 1, 0, 0, 0, 728, 7416, 1, 0, 0, 0, 730, 7420, 1, 0, 0, 0, 732, 7422, 1, 0, 0, 0, 734, 7437, 1, 0, 0, 0, 736, 7439, 1, 0, 0, 0, 738, 7461, 1, 0, 0, 0, 740, 7463, 1, 0, 0, 0, 742, 7486, 1, 0, 0, 0, 744, 7488, 1, 0, 0, 0, 746, 7510, 1, 0, 0, 0, 748, 7513, 1, 0, 0, 0, 750, 7520, 1, 0, 0, 0, 752, 7523, 1, 0, 0, 0, 754, 7539, 1, 0, 0, 0, 756, 7541, 1, 0, 0, 0, 758, 7549, 1, 0, 0, 0, 760, 7557, 1, 0, 0, 0, 762, 7565, 1, 0, 0, 0, 764, 7573, 1, 0, 0, 0, 766, 7575, 1, 0, 0, 0, 768, 7577, 1, 0, 0, 0, 770, 7579, 1, 0, 0, 0, 772, 7581, 1, 0, 0, 0, 774, 7583, 1, 0, 0, 0, 776, 7585, 1, 0, 0, 0, 778, 7589, 1, 0, 0, 0, 780, 7597, 1, 0, 0, 0, 782, 7605, 1, 0, 0, 0, 784, 7607, 1, 0, 0, 0, 786, 7609, 1, 0, 0, 0, 788, 7611, 1, 0, 0, 0, 790, 7613, 1, 0, 0, 0, 792, 7619, 1, 0, 0, 0, 794, 7625, 1, 0, 0, 0, 796, 7631, 1, 0, 0, 0, 798, 7633, 1, 0, 0, 0, 800, 7636, 1, 0, 0, 0, 802, 7642, 1, 0, 0, 0, 804, 7648, 1, 0, 0, 0, 806, 7650, 1, 0, 0, 0, 808, 7666, 1, 0, 0, 0, 810, 7669, 1, 0, 0, 0, 812, 7678, 1, 0, 0, 0, 814, 7680, 1, 0, 0, 0, 816, 7690, 1, 0, 0, 0, 818, 7694, 1, 0, 0, 0, 820, 7699, 1, 0, 0, 0, 822, 7705, 1, 0, 0, 0, 824, 7718, 1, 0, 0, 0, 826, 7720, 1, 0, 0, 0, 828, 7773, 1, 0, 0, 0, 830, 7775, 1, 0, 0, 0, 832, 7777, 1, 0, 0, 0, 834, 7780, 1, 0, 0, 0, 836, 7808, 1, 0, 0, 0, 838, 7812, 1, 0, 0, 0, 840, 7863, 1, 0, 0, 0, 842, 7866, 1, 0, 0, 0, 844, 7892, 1, 0, 0, 0, 846, 7894, 1, 0, 0, 0, 848, 7917, 1, 0, 0, 0, 850, 7919, 1, 0, 0, 0, 852, 7924, 1, 0, 0, 0, 854, 7939, 1, 0, 0, 0, 856, 7945, 1, 0, 0, 0, 858, 7956, 1, 0, 0, 0, 860, 7986, 1, 0, 0, 0, 862, 7993, 1, 0, 0, 0, 864, 8018, 1, 0, 0, 0, 866, 8028, 1, 0, 0, 0, 868, 8055, 1, 0, 0, 0, 870, 8068, 1, 0, 0, 0, 872, 8078, 1, 0, 0, 0, 874, 8097, 1, 0, 0, 0, 876, 8129, 1, 0, 0, 0, 878, 8133, 1, 0, 0, 0, 880, 8141, 1, 0, 0, 0, 882, 8155, 1, 0, 0, 0, 884, 8161, 1, 0, 0, 0, 886, 8182, 1, 0, 0, 0, 888, 8188, 1, 0, 0, 0, 890, 8227, 1, 0, 0, 0, 892, 8231, 1, 0, 0, 0, 894, 8257, 1, 0, 0, 0, 896, 8259, 1, 0, 0, 0, 898, 8267, 1, 0, 0, 0, 900, 8307, 1, 0, 0, 0, 902, 8341, 1, 0, 0, 0, 904, 8343, 1, 0, 0, 0, 906, 8354, 1, 0, 0, 0, 908, 8391, 1, 0, 0, 0, 910, 8395, 1, 0, 0, 0, 912, 8397, 1, 0, 0, 0, 914, 8401, 1, 0, 0, 0, 916, 8404, 1, 0, 0, 0, 918, 8426, 1, 0, 0, 0, 920, 8430, 1, 0, 0, 0, 922, 8432, 1, 0, 0, 0, 924, 8456, 1, 0, 0, 0, 926, 8460, 1, 0, 0, 0, 928, 8463, 1, 0, 0, 0, 930, 932, 3, 2, 1, 0, 931, 930, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 936, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 0, 0, 1, 937, 1, 1, 0, 0, 0, 938, 940, 3, 4, 2, 0, 939, 941, 5, 7, 0, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 3, 1, 0, 0, 0, 942, 1063, 3, 272, 136, 0, 943, 1063, 3, 482, 241, 0, 944, 1063, 3, 478, 239, 0, 945, 1063, 3, 480, 240, 0, 946, 1063, 3, 346, 173, 0, 947, 1063, 3, 488, 244, 0, 948, 1063, 3, 286, 143, 0, 949, 1063, 3, 204, 102, 0, 950, 1063, 3, 206, 103, 0, 951, 1063, 3, 212, 106, 0, 952, 1063, 3, 226, 113, 0, 953, 1063, 3, 398, 199, 0, 954, 1063, 3, 28, 14, 0, 955, 1063, 3, 428, 214, 0, 956, 1063, 3, 430, 215, 0, 957, 1063, 3, 440, 220, 0, 958, 1063, 3, 432, 216, 0, 959, 1063, 3, 438, 219, 0, 960, 1063, 3, 238, 119, 0, 961, 1063, 3, 240, 120, 0, 962, 1063, 3, 192, 96, 0, 963, 1063, 3, 484, 242, 0, 964, 1063, 3, 76, 38, 0, 965, 1063, 3, 424, 212, 0, 966, 1063, 3, 100, 50, 0, 967, 1063, 3, 444, 222, 0, 968, 1063, 3, 18, 9, 0, 969, 1063, 3, 20, 10, 0, 970, 1063, 3, 16, 8, 0, 971, 1063, 3, 448, 224, 0, 972, 1063, 3, 178, 89, 0, 973, 1063, 3, 492, 246, 0, 974, 1063, 3, 490, 245, 0, 975, 1063, 3, 234, 117, 0, 976, 1063, 3, 500, 250, 0, 977, 1063, 3, 6, 3, 0, 978, 1063, 3, 72, 36, 0, 979, 1063, 3, 104, 52, 0, 980, 1063, 3, 496, 248, 0, 981, 1063, 3, 318, 159, 0, 982, 1063, 3, 70, 35, 0, 983, 1063, 3, 106, 53, 0, 984, 1063, 3, 248, 124, 0, 985, 1063, 3, 180, 90, 0, 986, 1063, 3, 274, 137, 0, 987, 1063, 3, 414, 207, 0, 988, 1063, 3, 494, 247, 0, 989, 1063, 3, 486, 243, 0, 990, 1063, 3, 202, 101, 0, 991, 1063, 3, 208, 104, 0, 992, 1063, 3, 222, 111, 0, 993, 1063, 3, 228, 114, 0, 994, 1063, 3, 358, 179, 0, 995, 1063, 3, 26, 13, 0, 996, 1063, 3, 186, 93, 0, 997, 1063, 3, 290, 145, 0, 998, 1063, 3, 294, 147, 0, 999, 1063, 3, 442, 221, 0, 1000, 1063, 3, 296, 148, 0, 1001, 1063, 3, 236, 118, 0, 1002, 1063, 3, 198, 99, 0, 1003, 1063, 3, 30, 15, 0, 1004, 1063, 3, 190, 95, 0, 1005, 1063, 3, 114, 57, 0, 1006, 1063, 3, 446, 223, 0, 1007, 1063, 3, 176, 88, 0, 1008, 1063, 3, 200, 100, 0, 1009, 1063, 3, 418, 209, 0, 1010, 1063, 3, 250, 125, 0, 1011, 1063, 3, 268, 134, 0, 1012, 1063, 3, 8, 4, 0, 1013, 1063, 3, 14, 7, 0, 1014, 1063, 3, 232, 116, 0, 1015, 1063, 3, 474, 237, 0, 1016, 1063, 3, 530, 265, 0, 1017, 1063, 3, 552, 276, 0, 1018, 1063, 3, 276, 138, 0, 1019, 1063, 3, 542, 271, 0, 1020, 1063, 3, 74, 37, 0, 1021, 1063, 3, 412, 206, 0, 1022, 1063, 3, 302, 151, 0, 1023, 1063, 3, 526, 263, 0, 1024, 1063, 3, 514, 257, 0, 1025, 1063, 3, 322, 161, 0, 1026, 1063, 3, 328, 164, 0, 1027, 1063, 3, 342, 171, 0, 1028, 1063, 3, 898, 449, 0, 1029, 1063, 3, 230, 115, 0, 1030, 1063, 3, 352, 176, 0, 1031, 1063, 3, 532, 266, 0, 1032, 1063, 3, 458, 229, 0, 1033, 1063, 3, 188, 94, 0, 1034, 1063, 3, 472, 236, 0, 1035, 1063, 3, 544, 272, 0, 1036, 1063, 3, 454, 227, 0, 1037, 1063, 3, 520, 260, 0, 1038, 1063, 3, 300, 150, 0, 1039, 1063, 3, 422, 211, 0, 1040, 1063, 3, 402, 201, 0, 1041, 1063, 3, 400, 200, 0, 1042, 1063, 3, 404, 202, 0, 1043, 1063, 3, 426, 213, 0, 1044, 1063, 3, 330, 165, 0, 1045, 1063, 3, 344, 172, 0, 1046, 1063, 3, 450, 225, 0, 1047, 1063, 3, 320, 160, 0, 1048, 1063, 3, 554, 277, 0, 1049, 1063, 3, 462, 231, 0, 1050, 1063, 3, 314, 157, 0, 1051, 1063, 3, 460, 230, 0, 1052, 1063, 3, 546, 273, 0, 1053, 1063, 3, 498, 249, 0, 1054, 1063, 3, 60, 30, 0, 1055, 1063, 3, 36, 18, 0, 1056, 1063, 3, 68, 34, 0, 1057, 1063, 3, 470, 235, 0, 1058, 1060, 5, 583, 0, 0, 1059, 1061, 5, 584, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 942, 1, 0, 0, 0, 1062, 943, 1, 0, 0, 0, 1062, 944, 1, 0, 0, 0, 1062, 945, 1, 0, 0, 0, 1062, 946, 1, 0, 0, 0, 1062, 947, 1, 0, 0, 0, 1062, 948, 1, 0, 0, 0, 1062, 949, 1, 0, 0, 0, 1062, 950, 1, 0, 0, 0, 1062, 951, 1, 0, 0, 0, 1062, 952, 1, 0, 0, 0, 1062, 953, 1, 0, 0, 0, 1062, 954, 1, 0, 0, 0, 1062, 955, 1, 0, 0, 0, 1062, 956, 1, 0, 0, 0, 1062, 957, 1, 0, 0, 0, 1062, 958, 1, 0, 0, 0, 1062, 959, 1, 0, 0, 0, 1062, 960, 1, 0, 0, 0, 1062, 961, 1, 0, 0, 0, 1062, 962, 1, 0, 0, 0, 1062, 963, 1, 0, 0, 0, 1062, 964, 1, 0, 0, 0, 1062, 965, 1, 0, 0, 0, 1062, 966, 1, 0, 0, 0, 1062, 967, 1, 0, 0, 0, 1062, 968, 1, 0, 0, 0, 1062, 969, 1, 0, 0, 0, 1062, 970, 1, 0, 0, 0, 1062, 971, 1, 0, 0, 0, 1062, 972, 1, 0, 0, 0, 1062, 973, 1, 0, 0, 0, 1062, 974, 1, 0, 0, 0, 1062, 975, 1, 0, 0, 0, 1062, 976, 1, 0, 0, 0, 1062, 977, 1, 0, 0, 0, 1062, 978, 1, 0, 0, 0, 1062, 979, 1, 0, 0, 0, 1062, 980, 1, 0, 0, 0, 1062, 981, 1, 0, 0, 0, 1062, 982, 1, 0, 0, 0, 1062, 983, 1, 0, 0, 0, 1062, 984, 1, 0, 0, 0, 1062, 985, 1, 0, 0, 0, 1062, 986, 1, 0, 0, 0, 1062, 987, 1, 0, 0, 0, 1062, 988, 1, 0, 0, 0, 1062, 989, 1, 0, 0, 0, 1062, 990, 1, 0, 0, 0, 1062, 991, 1, 0, 0, 0, 1062, 992, 1, 0, 0, 0, 1062, 993, 1, 0, 0, 0, 1062, 994, 1, 0, 0, 0, 1062, 995, 1, 0, 0, 0, 1062, 996, 1, 0, 0, 0, 1062, 997, 1, 0, 0, 0, 1062, 998, 1, 0, 0, 0, 1062, 999, 1, 0, 0, 0, 1062, 1000, 1, 0, 0, 0, 1062, 1001, 1, 0, 0, 0, 1062, 1002, 1, 0, 0, 0, 1062, 1003, 1, 0, 0, 0, 1062, 1004, 1, 0, 0, 0, 1062, 1005, 1, 0, 0, 0, 1062, 1006, 1, 0, 0, 0, 1062, 1007, 1, 0, 0, 0, 1062, 1008, 1, 0, 0, 0, 1062, 1009, 1, 0, 0, 0, 1062, 1010, 1, 0, 0, 0, 1062, 1011, 1, 0, 0, 0, 1062, 1012, 1, 0, 0, 0, 1062, 1013, 1, 0, 0, 0, 1062, 1014, 1, 0, 0, 0, 1062, 1015, 1, 0, 0, 0, 1062, 1016, 1, 0, 0, 0, 1062, 1017, 1, 0, 0, 0, 1062, 1018, 1, 0, 0, 0, 1062, 1019, 1, 0, 0, 0, 1062, 1020, 1, 0, 0, 0, 1062, 1021, 1, 0, 0, 0, 1062, 1022, 1, 0, 0, 0, 1062, 1023, 1, 0, 0, 0, 1062, 1024, 1, 0, 0, 0, 1062, 1025, 1, 0, 0, 0, 1062, 1026, 1, 0, 0, 0, 1062, 1027, 1, 0, 0, 0, 1062, 1028, 1, 0, 0, 0, 1062, 1029, 1, 0, 0, 0, 1062, 1030, 1, 0, 0, 0, 1062, 1031, 1, 0, 0, 0, 1062, 1032, 1, 0, 0, 0, 1062, 1033, 1, 0, 0, 0, 1062, 1034, 1, 0, 0, 0, 1062, 1035, 1, 0, 0, 0, 1062, 1036, 1, 0, 0, 0, 1062, 1037, 1, 0, 0, 0, 1062, 1038, 1, 0, 0, 0, 1062, 1039, 1, 0, 0, 0, 1062, 1040, 1, 0, 0, 0, 1062, 1041, 1, 0, 0, 0, 1062, 1042, 1, 0, 0, 0, 1062, 1043, 1, 0, 0, 0, 1062, 1044, 1, 0, 0, 0, 1062, 1045, 1, 0, 0, 0, 1062, 1046, 1, 0, 0, 0, 1062, 1047, 1, 0, 0, 0, 1062, 1048, 1, 0, 0, 0, 1062, 1049, 1, 0, 0, 0, 1062, 1050, 1, 0, 0, 0, 1062, 1051, 1, 0, 0, 0, 1062, 1052, 1, 0, 0, 0, 1062, 1053, 1, 0, 0, 0, 1062, 1054, 1, 0, 0, 0, 1062, 1055, 1, 0, 0, 0, 1062, 1056, 1, 0, 0, 0, 1062, 1057, 1, 0, 0, 0, 1062, 1058, 1, 0, 0, 0, 1063, 5, 1, 0, 0, 0, 1064, 1065, 5, 433, 0, 0, 1065, 1066, 3, 678, 339, 0, 1066, 7, 1, 0, 0, 0, 1067, 1068, 5, 46, 0, 0, 1068, 1069, 5, 318, 0, 0, 1069, 1071, 3, 812, 406, 0, 1070, 1072, 5, 105, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 1, 0, 0, 0, 1073, 1075, 3, 12, 6, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 9, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1082, 5, 287, 0, 0, 1080, 1083, 3, 806, 403, 0, 1081, 1083, 5, 78, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1118, 1, 0, 0, 0, 1084, 1085, 7, 0, 0, 0, 1085, 1086, 5, 287, 0, 0, 1086, 1118, 3, 806, 403, 0, 1087, 1118, 5, 228, 0, 0, 1088, 1118, 5, 229, 0, 0, 1089, 1118, 5, 236, 0, 0, 1090, 1118, 5, 237, 0, 0, 1091, 1118, 5, 234, 0, 0, 1092, 1118, 5, 235, 0, 0, 1093, 1118, 5, 232, 0, 0, 1094, 1118, 5, 233, 0, 0, 1095, 1118, 5, 230, 0, 0, 1096, 1118, 5, 231, 0, 0, 1097, 1118, 5, 535, 0, 0, 1098, 1118, 5, 536, 0, 0, 1099, 1118, 5, 537, 0, 0, 1100, 1118, 5, 538, 0, 0, 1101, 1118, 5, 539, 0, 0, 1102, 1118, 5, 540, 0, 0, 1103, 1104, 5, 164, 0, 0, 1104, 1105, 5, 74, 0, 0, 1105, 1118, 3, 810, 405, 0, 1106, 1107, 5, 371, 0, 0, 1107, 1108, 5, 368, 0, 0, 1108, 1118, 3, 806, 403, 0, 1109, 1110, 5, 68, 0, 0, 1110, 1111, 7, 1, 0, 0, 1111, 1118, 3, 780, 390, 0, 1112, 1113, 7, 2, 0, 0, 1113, 1118, 3, 814, 407, 0, 1114, 1115, 5, 134, 0, 0, 1115, 1118, 3, 780, 390, 0, 1116, 1118, 3, 824, 412, 0, 1117, 1079, 1, 0, 0, 0, 1117, 1084, 1, 0, 0, 0, 1117, 1087, 1, 0, 0, 0, 1117, 1088, 1, 0, 0, 0, 1117, 1089, 1, 0, 0, 0, 1117, 1090, 1, 0, 0, 0, 1117, 1091, 1, 0, 0, 0, 1117, 1092, 1, 0, 0, 0, 1117, 1093, 1, 0, 0, 0, 1117, 1094, 1, 0, 0, 0, 1117, 1095, 1, 0, 0, 0, 1117, 1096, 1, 0, 0, 0, 1117, 1097, 1, 0, 0, 0, 1117, 1098, 1, 0, 0, 0, 1117, 1099, 1, 0, 0, 0, 1117, 1100, 1, 0, 0, 0, 1117, 1101, 1, 0, 0, 0, 1117, 1102, 1, 0, 0, 0, 1117, 1103, 1, 0, 0, 0, 1117, 1106, 1, 0, 0, 0, 1117, 1109, 1, 0, 0, 0, 1117, 1112, 1, 0, 0, 0, 1117, 1114, 1, 0, 0, 0, 1117, 1116, 1, 0, 0, 0, 1118, 11, 1, 0, 0, 0, 1119, 1128, 3, 10, 5, 0, 1120, 1121, 5, 348, 0, 0, 1121, 1128, 5, 574, 0, 0, 1122, 1123, 7, 3, 0, 0, 1123, 1128, 3, 814, 407, 0, 1124, 1125, 5, 68, 0, 0, 1125, 1126, 7, 1, 0, 0, 1126, 1128, 3, 814, 407, 0, 1127, 1119, 1, 0, 0, 0, 1127, 1120, 1, 0, 0, 0, 1127, 1122, 1, 0, 0, 0, 1127, 1124, 1, 0, 0, 0, 1128, 13, 1, 0, 0, 0, 1129, 1130, 5, 46, 0, 0, 1130, 1131, 5, 99, 0, 0, 1131, 1133, 3, 812, 406, 0, 1132, 1134, 5, 105, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1138, 1, 0, 0, 0, 1135, 1137, 3, 12, 6, 0, 1136, 1135, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 15, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1142, 5, 138, 0, 0, 1142, 1143, 7, 2, 0, 0, 1143, 1145, 3, 812, 406, 0, 1144, 1146, 5, 105, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1150, 1, 0, 0, 0, 1147, 1149, 3, 10, 5, 0, 1148, 1147, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 17, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1154, 5, 138, 0, 0, 1154, 1157, 7, 2, 0, 0, 1155, 1158, 5, 30, 0, 0, 1156, 1158, 3, 812, 406, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 5, 68, 0, 0, 1160, 1161, 5, 175, 0, 0, 1161, 1162, 3, 784, 392, 0, 1162, 1163, 3, 64, 32, 0, 1163, 19, 1, 0, 0, 0, 1164, 1165, 5, 138, 0, 0, 1165, 1166, 5, 442, 0, 0, 1166, 1168, 3, 790, 395, 0, 1167, 1169, 3, 362, 181, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 3, 22, 11, 0, 1171, 21, 1, 0, 0, 0, 1172, 1176, 3, 24, 12, 0, 1173, 1175, 3, 24, 12, 0, 1174, 1173, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1181, 5, 315, 0, 0, 1180, 1179, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1199, 1, 0, 0, 0, 1182, 1183, 5, 309, 0, 0, 1183, 1184, 5, 94, 0, 0, 1184, 1199, 3, 788, 394, 0, 1185, 1186, 5, 282, 0, 0, 1186, 1187, 5, 94, 0, 0, 1187, 1199, 3, 812, 406, 0, 1188, 1189, 5, 333, 0, 0, 1189, 1190, 5, 323, 0, 0, 1190, 1199, 3, 32, 16, 0, 1191, 1193, 5, 269, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 5, 462, 0, 0, 1195, 1196, 5, 80, 0, 0, 1196, 1197, 5, 204, 0, 0, 1197, 1199, 3, 816, 408, 0, 1198, 1172, 1, 0, 0, 0, 1198, 1182, 1, 0, 0, 0, 1198, 1185, 1, 0, 0, 0, 1198, 1188, 1, 0, 0, 0, 1198, 1192, 1, 0, 0, 0, 1199, 23, 1, 0, 0, 0, 1200, 1243, 5, 222, 0, 0, 1201, 1243, 5, 338, 0, 0, 1202, 1243, 5, 377, 0, 0, 1203, 1205, 5, 77, 0, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1243, 5, 250, 0, 0, 1207, 1209, 5, 205, 0, 0, 1208, 1207, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 5, 327, 0, 0, 1211, 1218, 5, 243, 0, 0, 1212, 1214, 5, 205, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 5, 327, 0, 0, 1216, 1218, 5, 181, 0, 0, 1217, 1208, 1, 0, 0, 0, 1217, 1213, 1, 0, 0, 0, 1218, 1243, 1, 0, 0, 0, 1219, 1220, 5, 460, 0, 0, 1220, 1243, 7, 4, 0, 0, 1221, 1222, 5, 170, 0, 0, 1222, 1243, 3, 822, 411, 0, 1223, 1224, 5, 320, 0, 0, 1224, 1243, 3, 816, 408, 0, 1225, 1226, 5, 333, 0, 0, 1226, 1227, 3, 816, 408, 0, 1227, 1230, 7, 5, 0, 0, 1228, 1231, 3, 816, 408, 0, 1229, 1231, 5, 53, 0, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1243, 1, 0, 0, 0, 1232, 1233, 5, 333, 0, 0, 1233, 1234, 3, 816, 408, 0, 1234, 1235, 5, 64, 0, 0, 1235, 1236, 5, 434, 0, 0, 1236, 1243, 1, 0, 0, 0, 1237, 1240, 5, 313, 0, 0, 1238, 1241, 3, 816, 408, 0, 1239, 1241, 5, 30, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1239, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1200, 1, 0, 0, 0, 1242, 1201, 1, 0, 0, 0, 1242, 1202, 1, 0, 0, 0, 1242, 1204, 1, 0, 0, 0, 1242, 1217, 1, 0, 0, 0, 1242, 1219, 1, 0, 0, 0, 1242, 1221, 1, 0, 0, 0, 1242, 1223, 1, 0, 0, 0, 1242, 1225, 1, 0, 0, 0, 1242, 1232, 1, 0, 0, 0, 1242, 1237, 1, 0, 0, 0, 1243, 25, 1, 0, 0, 0, 1244, 1245, 5, 46, 0, 0, 1245, 1246, 5, 66, 0, 0, 1246, 1248, 3, 812, 406, 0, 1247, 1249, 5, 105, 0, 0, 1248, 1247, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1253, 1, 0, 0, 0, 1250, 1252, 3, 12, 6, 0, 1251, 1250, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 27, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1257, 5, 138, 0, 0, 1257, 1258, 5, 66, 0, 0, 1258, 1259, 3, 812, 406, 0, 1259, 1260, 7, 6, 0, 0, 1260, 1261, 5, 99, 0, 0, 1261, 1262, 3, 814, 407, 0, 1262, 29, 1, 0, 0, 0, 1263, 1264, 5, 46, 0, 0, 1264, 1266, 5, 323, 0, 0, 1265, 1267, 3, 288, 144, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1274, 1, 0, 0, 0, 1268, 1270, 3, 32, 16, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1272, 5, 106, 0, 0, 1272, 1275, 3, 812, 406, 0, 1273, 1275, 3, 32, 16, 0, 1274, 1269, 1, 0, 0, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1279, 1, 0, 0, 0, 1276, 1278, 3, 34, 17, 0, 1277, 1276, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 31, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1282, 1283, 3, 310, 155, 0, 1283, 33, 1, 0, 0, 0, 1284, 1291, 3, 114, 57, 0, 1285, 1291, 3, 352, 176, 0, 1286, 1291, 3, 190, 95, 0, 1287, 1291, 3, 250, 125, 0, 1288, 1291, 3, 328, 164, 0, 1289, 1291, 3, 470, 235, 0, 1290, 1284, 1, 0, 0, 0, 1290, 1285, 1, 0, 0, 0, 1290, 1286, 1, 0, 0, 0, 1290, 1287, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1289, 1, 0, 0, 0, 1291, 35, 1, 0, 0, 0, 1292, 1294, 5, 333, 0, 0, 1293, 1295, 7, 7, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 3, 38, 19, 0, 1297, 37, 1, 0, 0, 0, 1298, 1299, 5, 356, 0, 0, 1299, 1307, 3, 468, 234, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1302, 5, 154, 0, 0, 1302, 1303, 5, 36, 0, 0, 1303, 1304, 5, 356, 0, 0, 1304, 1307, 3, 468, 234, 0, 1305, 1307, 3, 42, 21, 0, 1306, 1298, 1, 0, 0, 0, 1306, 1300, 1, 0, 0, 0, 1306, 1305, 1, 0, 0, 0, 1307, 39, 1, 0, 0, 0, 1308, 1311, 5, 30, 0, 0, 1309, 1311, 3, 44, 22, 0, 1310, 1308, 1, 0, 0, 0, 1310, 1309, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1314, 7, 5, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1317, 1, 0, 0, 0, 1315, 1318, 5, 53, 0, 0, 1316, 1318, 3, 46, 23, 0, 1317, 1315, 1, 0, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 41, 1, 0, 0, 0, 1319, 1320, 5, 418, 0, 0, 1320, 1321, 5, 386, 0, 0, 1321, 1348, 3, 56, 28, 0, 1322, 1323, 5, 152, 0, 0, 1323, 1348, 3, 806, 403, 0, 1324, 1325, 5, 323, 0, 0, 1325, 1348, 3, 786, 393, 0, 1326, 1329, 5, 267, 0, 0, 1327, 1330, 3, 806, 403, 0, 1328, 1330, 5, 53, 0, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1348, 1, 0, 0, 0, 1331, 1332, 5, 318, 0, 0, 1332, 1348, 3, 58, 29, 0, 1333, 1334, 5, 332, 0, 0, 1334, 1335, 5, 106, 0, 0, 1335, 1348, 3, 58, 29, 0, 1336, 1337, 5, 383, 0, 0, 1337, 1338, 5, 279, 0, 0, 1338, 1348, 3, 690, 345, 0, 1339, 1340, 5, 356, 0, 0, 1340, 1341, 5, 337, 0, 0, 1341, 1348, 3, 806, 403, 0, 1342, 1343, 3, 44, 22, 0, 1343, 1344, 5, 64, 0, 0, 1344, 1345, 5, 434, 0, 0, 1345, 1348, 1, 0, 0, 0, 1346, 1348, 3, 40, 20, 0, 1347, 1319, 1, 0, 0, 0, 1347, 1322, 1, 0, 0, 0, 1347, 1324, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1331, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1336, 1, 0, 0, 0, 1347, 1339, 1, 0, 0, 0, 1347, 1342, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 43, 1, 0, 0, 0, 1349, 1354, 3, 816, 408, 0, 1350, 1351, 5, 11, 0, 0, 1351, 1353, 3, 816, 408, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 45, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1362, 3, 48, 24, 0, 1358, 1359, 5, 6, 0, 0, 1359, 1361, 3, 48, 24, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 47, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1368, 3, 54, 27, 0, 1366, 1368, 3, 196, 98, 0, 1367, 1365, 1, 0, 0, 0, 1367, 1366, 1, 0, 0, 0, 1368, 49, 1, 0, 0, 0, 1369, 1370, 5, 300, 0, 0, 1370, 1375, 7, 8, 0, 0, 1371, 1372, 5, 310, 0, 0, 1372, 1375, 5, 300, 0, 0, 1373, 1375, 5, 330, 0, 0, 1374, 1369, 1, 0, 0, 0, 1374, 1371, 1, 0, 0, 0, 1374, 1373, 1, 0, 0, 0, 1375, 51, 1, 0, 0, 0, 1376, 1383, 5, 96, 0, 0, 1377, 1383, 5, 60, 0, 0, 1378, 1383, 5, 80, 0, 0, 1379, 1383, 3, 796, 398, 0, 1380, 1383, 3, 830, 415, 0, 1381, 1383, 3, 806, 403, 0, 1382, 1376, 1, 0, 0, 0, 1382, 1377, 1, 0, 0, 0, 1382, 1378, 1, 0, 0, 0, 1382, 1379, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 53, 1, 0, 0, 0, 1384, 1389, 5, 96, 0, 0, 1385, 1389, 5, 60, 0, 0, 1386, 1389, 5, 80, 0, 0, 1387, 1389, 3, 58, 29, 0, 1388, 1384, 1, 0, 0, 0, 1388, 1385, 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1388, 1387, 1, 0, 0, 0, 1389, 55, 1, 0, 0, 0, 1390, 1405, 3, 806, 403, 0, 1391, 1405, 5, 53, 0, 0, 1392, 1405, 3, 824, 412, 0, 1393, 1394, 5, 403, 0, 0, 1394, 1396, 3, 806, 403, 0, 1395, 1397, 3, 662, 331, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1405, 1, 0, 0, 0, 1398, 1399, 5, 403, 0, 0, 1399, 1400, 3, 654, 327, 0, 1400, 1401, 3, 806, 403, 0, 1401, 1405, 1, 0, 0, 0, 1402, 1405, 3, 196, 98, 0, 1403, 1405, 5, 254, 0, 0, 1404, 1390, 1, 0, 0, 0, 1404, 1391, 1, 0, 0, 0, 1404, 1392, 1, 0, 0, 0, 1404, 1393, 1, 0, 0, 0, 1404, 1398, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 57, 1, 0, 0, 0, 1406, 1409, 3, 820, 410, 0, 1407, 1409, 3, 806, 403, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1407, 1, 0, 0, 0, 1409, 59, 1, 0, 0, 0, 1410, 1411, 5, 313, 0, 0, 1411, 1412, 3, 62, 31, 0, 1412, 61, 1, 0, 0, 0, 1413, 1414, 5, 418, 0, 0, 1414, 1423, 5, 386, 0, 0, 1415, 1416, 5, 356, 0, 0, 1416, 1417, 5, 244, 0, 0, 1417, 1423, 5, 251, 0, 0, 1418, 1419, 5, 332, 0, 0, 1419, 1423, 5, 106, 0, 0, 1420, 1423, 5, 30, 0, 0, 1421, 1423, 3, 44, 22, 0, 1422, 1413, 1, 0, 0, 0, 1422, 1415, 1, 0, 0, 0, 1422, 1418, 1, 0, 0, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1421, 1, 0, 0, 0, 1423, 63, 1, 0, 0, 0, 1424, 1425, 5, 333, 0, 0, 1425, 1428, 3, 38, 19, 0, 1426, 1428, 3, 60, 30, 0, 1427, 1424, 1, 0, 0, 0, 1427, 1426, 1, 0, 0, 0, 1428, 65, 1, 0, 0, 0, 1429, 1430, 5, 333, 0, 0, 1430, 1433, 3, 42, 21, 0, 1431, 1433, 3, 60, 30, 0, 1432, 1429, 1, 0, 0, 0, 1432, 1431, 1, 0, 0, 0, 1433, 67, 1, 0, 0, 0, 1434, 1444, 5, 335, 0, 0, 1435, 1445, 3, 44, 22, 0, 1436, 1437, 5, 418, 0, 0, 1437, 1445, 5, 386, 0, 0, 1438, 1439, 5, 356, 0, 0, 1439, 1440, 5, 244, 0, 0, 1440, 1445, 5, 251, 0, 0, 1441, 1442, 5, 332, 0, 0, 1442, 1445, 5, 106, 0, 0, 1443, 1445, 5, 30, 0, 0, 1444, 1435, 1, 0, 0, 0, 1444, 1436, 1, 0, 0, 0, 1444, 1438, 1, 0, 0, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1443, 1, 0, 0, 0, 1445, 69, 1, 0, 0, 0, 1446, 1447, 5, 333, 0, 0, 1447, 1450, 5, 165, 0, 0, 1448, 1451, 5, 30, 0, 0, 1449, 1451, 3, 756, 378, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1449, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 7, 9, 0, 0, 1453, 71, 1, 0, 0, 0, 1454, 1455, 5, 155, 0, 0, 1455, 73, 1, 0, 0, 0, 1456, 1457, 5, 187, 0, 0, 1457, 1458, 7, 10, 0, 0, 1458, 75, 1, 0, 0, 0, 1459, 1460, 5, 138, 0, 0, 1460, 1462, 5, 92, 0, 0, 1461, 1463, 3, 416, 208, 0, 1462, 1461, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1467, 3, 618, 309, 0, 1465, 1468, 3, 78, 39, 0, 1466, 1468, 3, 80, 40, 0, 1467, 1465, 1, 0, 0, 0, 1467, 1466, 1, 0, 0, 0, 1468, 1577, 1, 0, 0, 0, 1469, 1470, 5, 138, 0, 0, 1470, 1471, 5, 92, 0, 0, 1471, 1472, 5, 30, 0, 0, 1472, 1473, 5, 68, 0, 0, 1473, 1477, 3, 170, 85, 0, 1474, 1475, 5, 281, 0, 0, 1475, 1476, 5, 147, 0, 0, 1476, 1478, 3, 814, 407, 0, 1477, 1474, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 5, 333, 0, 0, 1480, 1481, 5, 351, 0, 0, 1481, 1483, 3, 766, 383, 0, 1482, 1484, 5, 272, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1577, 1, 0, 0, 0, 1485, 1486, 5, 138, 0, 0, 1486, 1488, 5, 92, 0, 0, 1487, 1489, 3, 416, 208, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 3, 770, 385, 0, 1491, 1492, 3, 82, 41, 0, 1492, 1493, 3, 98, 49, 0, 1493, 1577, 1, 0, 0, 0, 1494, 1495, 5, 138, 0, 0, 1495, 1497, 5, 92, 0, 0, 1496, 1498, 3, 416, 208, 0, 1497, 1496, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 3, 770, 385, 0, 1500, 1501, 5, 436, 0, 0, 1501, 1502, 5, 285, 0, 0, 1502, 1504, 3, 776, 388, 0, 1503, 1505, 7, 11, 0, 0, 1504, 1503, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1577, 1, 0, 0, 0, 1506, 1507, 5, 138, 0, 0, 1507, 1509, 5, 226, 0, 0, 1508, 1510, 3, 416, 208, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 3, 776, 388, 0, 1512, 1515, 3, 78, 39, 0, 1513, 1515, 3, 82, 41, 0, 1514, 1512, 1, 0, 0, 0, 1514, 1513, 1, 0, 0, 0, 1515, 1577, 1, 0, 0, 0, 1516, 1517, 5, 138, 0, 0, 1517, 1518, 5, 226, 0, 0, 1518, 1519, 5, 30, 0, 0, 1519, 1520, 5, 68, 0, 0, 1520, 1524, 3, 170, 85, 0, 1521, 1522, 5, 281, 0, 0, 1522, 1523, 5, 147, 0, 0, 1523, 1525, 3, 814, 407, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 5, 333, 0, 0, 1527, 1529, 3, 170, 85, 0, 1528, 1530, 5, 272, 0, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1577, 1, 0, 0, 0, 1531, 1532, 5, 138, 0, 0, 1532, 1534, 5, 328, 0, 0, 1533, 1535, 3, 416, 208, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 3, 776, 388, 0, 1537, 1538, 3, 78, 39, 0, 1538, 1577, 1, 0, 0, 0, 1539, 1541, 5, 138, 0, 0, 1540, 1542, 5, 259, 0, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 5, 376, 0, 0, 1544, 1546, 3, 416, 208, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 3, 774, 387, 0, 1548, 1549, 3, 78, 39, 0, 1549, 1577, 1, 0, 0, 0, 1550, 1551, 5, 138, 0, 0, 1551, 1552, 5, 259, 0, 0, 1552, 1553, 5, 376, 0, 0, 1553, 1554, 5, 30, 0, 0, 1554, 1555, 5, 68, 0, 0, 1555, 1559, 3, 170, 85, 0, 1556, 1557, 5, 281, 0, 0, 1557, 1558, 5, 147, 0, 0, 1558, 1560, 3, 814, 407, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 333, 0, 0, 1562, 1563, 5, 351, 0, 0, 1563, 1565, 3, 766, 383, 0, 1564, 1566, 5, 272, 0, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1577, 1, 0, 0, 0, 1567, 1568, 5, 138, 0, 0, 1568, 1569, 5, 63, 0, 0, 1569, 1571, 5, 92, 0, 0, 1570, 1572, 3, 416, 208, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 3, 618, 309, 0, 1574, 1575, 3, 78, 39, 0, 1575, 1577, 1, 0, 0, 0, 1576, 1459, 1, 0, 0, 0, 1576, 1469, 1, 0, 0, 0, 1576, 1485, 1, 0, 0, 0, 1576, 1494, 1, 0, 0, 0, 1576, 1506, 1, 0, 0, 0, 1576, 1516, 1, 0, 0, 0, 1576, 1531, 1, 0, 0, 0, 1576, 1539, 1, 0, 0, 0, 1576, 1550, 1, 0, 0, 0, 1576, 1567, 1, 0, 0, 0, 1577, 77, 1, 0, 0, 0, 1578, 1583, 3, 84, 42, 0, 1579, 1580, 5, 6, 0, 0, 1580, 1582, 3, 84, 42, 0, 1581, 1579, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1581, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 79, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1587, 3, 82, 41, 0, 1587, 1588, 3, 98, 49, 0, 1588, 1593, 1, 0, 0, 0, 1589, 1590, 5, 436, 0, 0, 1590, 1591, 5, 285, 0, 0, 1591, 1593, 3, 776, 388, 0, 1592, 1586, 1, 0, 0, 0, 1592, 1589, 1, 0, 0, 0, 1593, 81, 1, 0, 0, 0, 1594, 1595, 5, 435, 0, 0, 1595, 1596, 5, 285, 0, 0, 1596, 1597, 3, 776, 388, 0, 1597, 83, 1, 0, 0, 0, 1598, 1601, 5, 133, 0, 0, 1599, 1600, 5, 45, 0, 0, 1600, 1602, 3, 816, 408, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1832, 3, 136, 68, 0, 1604, 1605, 5, 138, 0, 0, 1605, 1606, 5, 45, 0, 0, 1606, 1610, 3, 816, 408, 0, 1607, 1609, 3, 266, 133, 0, 1608, 1607, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1832, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1614, 5, 372, 0, 0, 1614, 1615, 5, 45, 0, 0, 1615, 1832, 3, 816, 408, 0, 1616, 1617, 5, 191, 0, 0, 1617, 1619, 5, 45, 0, 0, 1618, 1620, 3, 416, 208, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1623, 3, 816, 408, 0, 1622, 1624, 3, 88, 44, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1832, 1, 0, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 379, 0, 0, 1627, 1832, 7, 12, 0, 0, 1628, 1629, 5, 158, 0, 0, 1629, 1630, 5, 80, 0, 0, 1630, 1832, 3, 816, 408, 0, 1631, 1632, 5, 333, 0, 0, 1632, 1832, 7, 13, 0, 0, 1633, 1635, 5, 193, 0, 0, 1634, 1636, 7, 14, 0, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1832, 5, 357, 0, 0, 1638, 1639, 5, 186, 0, 0, 1639, 1643, 5, 357, 0, 0, 1640, 1644, 5, 30, 0, 0, 1641, 1644, 5, 99, 0, 0, 1642, 1644, 3, 816, 408, 0, 1643, 1640, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1642, 1, 0, 0, 0, 1644, 1832, 1, 0, 0, 0, 1645, 1646, 5, 193, 0, 0, 1646, 1647, 7, 14, 0, 0, 1647, 1648, 5, 321, 0, 0, 1648, 1832, 3, 816, 408, 0, 1649, 1650, 5, 186, 0, 0, 1650, 1651, 5, 321, 0, 0, 1651, 1832, 3, 816, 408, 0, 1652, 1654, 5, 269, 0, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 5, 228, 0, 0, 1656, 1832, 3, 776, 388, 0, 1657, 1658, 5, 275, 0, 0, 1658, 1832, 3, 310, 155, 0, 1659, 1660, 5, 77, 0, 0, 1660, 1832, 5, 275, 0, 0, 1661, 1662, 5, 282, 0, 0, 1662, 1663, 5, 94, 0, 0, 1663, 1832, 3, 812, 406, 0, 1664, 1665, 5, 333, 0, 0, 1665, 1666, 5, 351, 0, 0, 1666, 1832, 3, 766, 383, 0, 1667, 1668, 5, 312, 0, 0, 1668, 1673, 5, 219, 0, 0, 1669, 1674, 5, 270, 0, 0, 1670, 1674, 5, 113, 0, 0, 1671, 1674, 5, 53, 0, 0, 1672, 1674, 3, 174, 87, 0, 1673, 1669, 1, 0, 0, 0, 1673, 1670, 1, 0, 0, 0, 1673, 1671, 1, 0, 0, 0, 1673, 1672, 1, 0, 0, 0, 1674, 1832, 1, 0, 0, 0, 1675, 1682, 5, 193, 0, 0, 1676, 1682, 5, 186, 0, 0, 1677, 1679, 5, 269, 0, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1682, 5, 209, 0, 0, 1681, 1675, 1, 0, 0, 0, 1681, 1676, 1, 0, 0, 0, 1681, 1678, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 5, 414, 0, 0, 1684, 1685, 5, 251, 0, 0, 1685, 1832, 5, 327, 0, 0, 1686, 1688, 5, 191, 0, 0, 1687, 1689, 5, 44, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1691, 1, 0, 0, 0, 1690, 1692, 3, 416, 208, 0, 1691, 1690, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 3, 796, 398, 0, 1694, 1696, 3, 88, 44, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1832, 1, 0, 0, 0, 1697, 1699, 5, 133, 0, 0, 1698, 1700, 5, 44, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 1, 0, 0, 0, 1701, 1703, 3, 288, 144, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1832, 3, 126, 63, 0, 1705, 1707, 5, 138, 0, 0, 1706, 1708, 5, 44, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1712, 3, 796, 398, 0, 1710, 1713, 3, 86, 43, 0, 1711, 1713, 3, 216, 108, 0, 1712, 1710, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 1832, 1, 0, 0, 0, 1714, 1716, 5, 138, 0, 0, 1715, 1717, 5, 44, 0, 0, 1716, 1715, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 3, 796, 398, 0, 1719, 1720, 7, 15, 0, 0, 1720, 1721, 5, 77, 0, 0, 1721, 1722, 5, 78, 0, 0, 1722, 1832, 1, 0, 0, 0, 1723, 1725, 5, 138, 0, 0, 1724, 1726, 5, 44, 0, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 3, 796, 398, 0, 1728, 1729, 5, 191, 0, 0, 1729, 1731, 5, 437, 0, 0, 1730, 1732, 3, 416, 208, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1832, 1, 0, 0, 0, 1733, 1735, 5, 138, 0, 0, 1734, 1736, 5, 44, 0, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 3, 796, 398, 0, 1738, 1739, 5, 333, 0, 0, 1739, 1740, 5, 342, 0, 0, 1740, 1741, 3, 810, 405, 0, 1741, 1832, 1, 0, 0, 0, 1742, 1744, 5, 138, 0, 0, 1743, 1745, 5, 44, 0, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1748, 3, 796, 398, 0, 1747, 1742, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 7, 16, 0, 0, 1750, 1832, 3, 92, 46, 0, 1751, 1753, 5, 138, 0, 0, 1752, 1754, 5, 44, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 3, 796, 398, 0, 1756, 1757, 5, 333, 0, 0, 1757, 1758, 5, 345, 0, 0, 1758, 1759, 3, 816, 408, 0, 1759, 1832, 1, 0, 0, 0, 1760, 1762, 5, 138, 0, 0, 1761, 1763, 5, 44, 0, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 796, 398, 0, 1765, 1766, 5, 133, 0, 0, 1766, 1767, 5, 438, 0, 0, 1767, 1768, 3, 132, 66, 0, 1768, 1769, 5, 36, 0, 0, 1769, 1778, 5, 219, 0, 0, 1770, 1772, 5, 2, 0, 0, 1771, 1773, 3, 194, 97, 0, 1772, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1772, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 5, 3, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1770, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1832, 1, 0, 0, 0, 1780, 1782, 5, 138, 0, 0, 1781, 1783, 5, 44, 0, 0, 1782, 1781, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1798, 3, 796, 398, 0, 1785, 1790, 5, 314, 0, 0, 1786, 1788, 5, 105, 0, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1791, 3, 196, 98, 0, 1790, 1787, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1799, 1, 0, 0, 0, 1792, 1796, 5, 333, 0, 0, 1793, 1797, 3, 194, 97, 0, 1794, 1795, 5, 438, 0, 0, 1795, 1797, 3, 132, 66, 0, 1796, 1793, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1797, 1799, 1, 0, 0, 0, 1798, 1785, 1, 0, 0, 0, 1798, 1792, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1832, 1, 0, 0, 0, 1802, 1804, 5, 138, 0, 0, 1803, 1805, 5, 44, 0, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 796, 398, 0, 1807, 1808, 5, 191, 0, 0, 1808, 1810, 5, 219, 0, 0, 1809, 1811, 3, 416, 208, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1832, 1, 0, 0, 0, 1812, 1814, 5, 138, 0, 0, 1813, 1815, 5, 44, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1819, 3, 796, 398, 0, 1817, 1818, 5, 333, 0, 0, 1818, 1820, 5, 174, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 5, 360, 0, 0, 1822, 1824, 3, 646, 323, 0, 1823, 1825, 3, 90, 45, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1827, 5, 100, 0, 0, 1827, 1829, 3, 668, 334, 0, 1828, 1826, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1832, 3, 216, 108, 0, 1831, 1598, 1, 0, 0, 0, 1831, 1604, 1, 0, 0, 0, 1831, 1613, 1, 0, 0, 0, 1831, 1616, 1, 0, 0, 0, 1831, 1625, 1, 0, 0, 0, 1831, 1628, 1, 0, 0, 0, 1831, 1631, 1, 0, 0, 0, 1831, 1633, 1, 0, 0, 0, 1831, 1638, 1, 0, 0, 0, 1831, 1645, 1, 0, 0, 0, 1831, 1649, 1, 0, 0, 0, 1831, 1653, 1, 0, 0, 0, 1831, 1657, 1, 0, 0, 0, 1831, 1659, 1, 0, 0, 0, 1831, 1661, 1, 0, 0, 0, 1831, 1664, 1, 0, 0, 0, 1831, 1667, 1, 0, 0, 0, 1831, 1681, 1, 0, 0, 0, 1831, 1686, 1, 0, 0, 0, 1831, 1697, 1, 0, 0, 0, 1831, 1705, 1, 0, 0, 0, 1831, 1714, 1, 0, 0, 0, 1831, 1723, 1, 0, 0, 0, 1831, 1733, 1, 0, 0, 0, 1831, 1747, 1, 0, 0, 0, 1831, 1751, 1, 0, 0, 0, 1831, 1760, 1, 0, 0, 0, 1831, 1780, 1, 0, 0, 0, 1831, 1802, 1, 0, 0, 0, 1831, 1812, 1, 0, 0, 0, 1831, 1830, 1, 0, 0, 0, 1832, 85, 1, 0, 0, 0, 1833, 1834, 5, 333, 0, 0, 1834, 1835, 5, 53, 0, 0, 1835, 1839, 3, 668, 334, 0, 1836, 1837, 5, 191, 0, 0, 1837, 1839, 5, 53, 0, 0, 1838, 1833, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 87, 1, 0, 0, 0, 1840, 1841, 7, 17, 0, 0, 1841, 89, 1, 0, 0, 0, 1842, 1843, 5, 43, 0, 0, 1843, 1844, 3, 310, 155, 0, 1844, 91, 1, 0, 0, 0, 1845, 1846, 5, 2, 0, 0, 1846, 1851, 3, 96, 48, 0, 1847, 1848, 5, 6, 0, 0, 1848, 1850, 3, 96, 48, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 3, 0, 0, 1855, 93, 1, 0, 0, 0, 1856, 1857, 5, 105, 0, 0, 1857, 1858, 3, 92, 46, 0, 1858, 95, 1, 0, 0, 0, 1859, 1864, 3, 822, 411, 0, 1860, 1861, 5, 10, 0, 0, 1861, 1865, 3, 282, 141, 0, 1862, 1863, 5, 11, 0, 0, 1863, 1865, 3, 280, 140, 0, 1864, 1860, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 97, 1, 0, 0, 0, 1866, 1867, 5, 62, 0, 0, 1867, 1868, 5, 422, 0, 0, 1868, 1869, 5, 105, 0, 0, 1869, 1870, 5, 2, 0, 0, 1870, 1871, 5, 533, 0, 0, 1871, 1872, 3, 196, 98, 0, 1872, 1873, 5, 6, 0, 0, 1873, 1874, 5, 534, 0, 0, 1874, 1875, 3, 196, 98, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1890, 1, 0, 0, 0, 1877, 1878, 5, 62, 0, 0, 1878, 1879, 5, 422, 0, 0, 1879, 1880, 5, 68, 0, 0, 1880, 1890, 3, 528, 264, 0, 1881, 1882, 5, 62, 0, 0, 1882, 1883, 5, 422, 0, 0, 1883, 1884, 5, 64, 0, 0, 1884, 1885, 3, 528, 264, 0, 1885, 1886, 5, 94, 0, 0, 1886, 1887, 3, 528, 264, 0, 1887, 1890, 1, 0, 0, 0, 1888, 1890, 5, 53, 0, 0, 1889, 1866, 1, 0, 0, 0, 1889, 1877, 1, 0, 0, 0, 1889, 1881, 1, 0, 0, 0, 1889, 1888, 1, 0, 0, 0, 1890, 99, 1, 0, 0, 0, 1891, 1892, 5, 138, 0, 0, 1892, 1893, 5, 360, 0, 0, 1893, 1894, 3, 310, 155, 0, 1894, 1899, 3, 102, 51, 0, 1895, 1896, 5, 6, 0, 0, 1896, 1898, 3, 102, 51, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 101, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1903, 5, 133, 0, 0, 1903, 1904, 5, 143, 0, 0, 1904, 1906, 3, 638, 319, 0, 1905, 1907, 3, 88, 44, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1933, 1, 0, 0, 0, 1908, 1909, 5, 191, 0, 0, 1909, 1911, 5, 143, 0, 0, 1910, 1912, 3, 416, 208, 0, 1911, 1910, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1915, 3, 816, 408, 0, 1914, 1916, 3, 88, 44, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1933, 1, 0, 0, 0, 1917, 1918, 5, 138, 0, 0, 1918, 1919, 5, 143, 0, 0, 1919, 1922, 3, 816, 408, 0, 1920, 1921, 5, 333, 0, 0, 1921, 1923, 5, 174, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 5, 360, 0, 0, 1925, 1927, 3, 646, 323, 0, 1926, 1928, 3, 90, 45, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1931, 3, 88, 44, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1933, 1, 0, 0, 0, 1932, 1902, 1, 0, 0, 0, 1932, 1908, 1, 0, 0, 0, 1932, 1917, 1, 0, 0, 0, 1933, 103, 1, 0, 0, 0, 1934, 1937, 5, 157, 0, 0, 1935, 1938, 3, 816, 408, 0, 1936, 1938, 5, 30, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 105, 1, 0, 0, 0, 1939, 1941, 5, 169, 0, 0, 1940, 1942, 5, 107, 0, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1945, 3, 770, 385, 0, 1944, 1946, 3, 138, 69, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1949, 7, 18, 0, 0, 1948, 1950, 5, 297, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1954, 1, 0, 0, 0, 1951, 1955, 3, 806, 403, 0, 1952, 1955, 5, 343, 0, 0, 1953, 1955, 5, 344, 0, 0, 1954, 1951, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1953, 1, 0, 0, 0, 1955, 1961, 1, 0, 0, 0, 1956, 1958, 5, 100, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 5, 184, 0, 0, 1960, 1962, 3, 806, 403, 0, 1961, 1957, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1965, 5, 105, 0, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1968, 3, 110, 55, 0, 1967, 1969, 3, 632, 316, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1989, 1, 0, 0, 0, 1970, 1971, 5, 169, 0, 0, 1971, 1972, 5, 2, 0, 0, 1972, 1973, 3, 524, 262, 0, 1973, 1974, 5, 3, 0, 0, 1974, 1976, 5, 94, 0, 0, 1975, 1977, 5, 297, 0, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1981, 1, 0, 0, 0, 1978, 1982, 3, 806, 403, 0, 1979, 1982, 5, 343, 0, 0, 1980, 1982, 5, 344, 0, 0, 1981, 1978, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1980, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 5, 105, 0, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 3, 110, 55, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1939, 1, 0, 0, 0, 1988, 1970, 1, 0, 0, 0, 1989, 107, 1, 0, 0, 0, 1990, 2033, 5, 107, 0, 0, 1991, 2033, 5, 112, 0, 0, 1992, 1994, 7, 19, 0, 0, 1993, 1995, 5, 36, 0, 0, 1994, 1993, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2033, 3, 806, 403, 0, 1997, 2033, 5, 171, 0, 0, 1998, 2033, 5, 216, 0, 0, 1999, 2000, 5, 209, 0, 0, 2000, 2003, 5, 298, 0, 0, 2001, 2004, 3, 142, 71, 0, 2002, 2004, 5, 9, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2002, 1, 0, 0, 0, 2004, 2033, 1, 0, 0, 0, 2005, 2007, 5, 209, 0, 0, 2006, 2008, 5, 77, 0, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2010, 5, 78, 0, 0, 2010, 2033, 3, 142, 71, 0, 2011, 2012, 5, 194, 0, 0, 2012, 2033, 3, 806, 403, 0, 2013, 2030, 7, 20, 0, 0, 2014, 2017, 5, 2, 0, 0, 2015, 2018, 3, 142, 71, 0, 2016, 2018, 5, 9, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2016, 1, 0, 0, 0, 2018, 2026, 1, 0, 0, 0, 2019, 2022, 5, 6, 0, 0, 2020, 2023, 3, 142, 71, 0, 2021, 2023, 5, 9, 0, 0, 2022, 2020, 1, 0, 0, 0, 2022, 2021, 1, 0, 0, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2019, 1, 0, 0, 0, 2025, 2028, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2029, 2031, 5, 3, 0, 0, 2030, 2014, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 1990, 1, 0, 0, 0, 2032, 1991, 1, 0, 0, 0, 2032, 1992, 1, 0, 0, 0, 2032, 1997, 1, 0, 0, 0, 2032, 1998, 1, 0, 0, 0, 2032, 1999, 1, 0, 0, 0, 2032, 2005, 1, 0, 0, 0, 2032, 2011, 1, 0, 0, 0, 2032, 2013, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 109, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2056, 3, 108, 54, 0, 2038, 2041, 5, 2, 0, 0, 2039, 2042, 3, 108, 54, 0, 2040, 2042, 3, 112, 56, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 2050, 1, 0, 0, 0, 2043, 2046, 5, 6, 0, 0, 2044, 2047, 3, 108, 54, 0, 2045, 2047, 3, 112, 56, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2045, 1, 0, 0, 0, 2047, 2049, 1, 0, 0, 0, 2048, 2043, 1, 0, 0, 0, 2049, 2052, 1, 0, 0, 0, 2050, 2048, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2053, 1, 0, 0, 0, 2052, 2050, 1, 0, 0, 0, 2053, 2054, 5, 3, 0, 0, 2054, 2056, 1, 0, 0, 0, 2055, 2037, 1, 0, 0, 0, 2055, 2038, 1, 0, 0, 0, 2056, 111, 1, 0, 0, 0, 2057, 2072, 3, 822, 411, 0, 2058, 2073, 3, 54, 27, 0, 2059, 2073, 3, 196, 98, 0, 2060, 2073, 5, 9, 0, 0, 2061, 2062, 5, 2, 0, 0, 2062, 2067, 3, 52, 26, 0, 2063, 2064, 5, 6, 0, 0, 2064, 2066, 3, 52, 26, 0, 2065, 2063, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2070, 1, 0, 0, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 1, 0, 0, 0, 2072, 2058, 1, 0, 0, 0, 2072, 2059, 1, 0, 0, 0, 2072, 2060, 1, 0, 0, 0, 2072, 2061, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 113, 1, 0, 0, 0, 2074, 2076, 5, 46, 0, 0, 2075, 2077, 3, 116, 58, 0, 2076, 2075, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 5, 92, 0, 0, 2079, 2081, 3, 288, 144, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2148, 3, 768, 384, 0, 2083, 2085, 5, 2, 0, 0, 2084, 2086, 3, 120, 60, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2089, 5, 3, 0, 0, 2088, 2090, 3, 158, 79, 0, 2089, 2088, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2093, 3, 160, 80, 0, 2092, 2091, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2096, 3, 164, 82, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 166, 83, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 168, 84, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 170, 85, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2149, 1, 0, 0, 0, 2106, 2107, 5, 275, 0, 0, 2107, 2109, 3, 310, 155, 0, 2108, 2110, 3, 118, 59, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 160, 80, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 164, 82, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 166, 83, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2122, 3, 168, 84, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 1, 0, 0, 0, 2123, 2125, 3, 170, 85, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2149, 1, 0, 0, 0, 2126, 2127, 5, 285, 0, 0, 2127, 2128, 5, 275, 0, 0, 2128, 2130, 3, 776, 388, 0, 2129, 2131, 3, 118, 59, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 3, 98, 49, 0, 2133, 2135, 3, 160, 80, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2138, 3, 164, 82, 0, 2137, 2136, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2140, 1, 0, 0, 0, 2139, 2141, 3, 166, 83, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2144, 3, 168, 84, 0, 2143, 2142, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2146, 1, 0, 0, 0, 2145, 2147, 3, 170, 85, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2083, 1, 0, 0, 0, 2148, 2106, 1, 0, 0, 0, 2148, 2126, 1, 0, 0, 0, 2149, 115, 1, 0, 0, 0, 2150, 2156, 5, 354, 0, 0, 2151, 2156, 5, 352, 0, 0, 2152, 2153, 7, 21, 0, 0, 2153, 2156, 7, 22, 0, 0, 2154, 2156, 5, 367, 0, 0, 2155, 2150, 1, 0, 0, 0, 2155, 2151, 1, 0, 0, 0, 2155, 2152, 1, 0, 0, 0, 2155, 2154, 1, 0, 0, 0, 2156, 117, 1, 0, 0, 0, 2157, 2158, 5, 2, 0, 0, 2158, 2163, 3, 124, 62, 0, 2159, 2160, 5, 6, 0, 0, 2160, 2162, 3, 124, 62, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2165, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2167, 5, 3, 0, 0, 2167, 119, 1, 0, 0, 0, 2168, 2173, 3, 122, 61, 0, 2169, 2170, 5, 6, 0, 0, 2170, 2172, 3, 122, 61, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 121, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 5, 45, 0, 0, 2177, 2179, 3, 816, 408, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2192, 3, 136, 68, 0, 2181, 2192, 3, 126, 63, 0, 2182, 2183, 5, 120, 0, 0, 2183, 2188, 3, 776, 388, 0, 2184, 2185, 7, 23, 0, 0, 2185, 2187, 3, 134, 67, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2190, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2192, 1, 0, 0, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2178, 1, 0, 0, 0, 2191, 2181, 1, 0, 0, 0, 2191, 2182, 1, 0, 0, 0, 2192, 123, 1, 0, 0, 0, 2193, 2196, 3, 800, 400, 0, 2194, 2195, 5, 105, 0, 0, 2195, 2197, 5, 280, 0, 0, 2196, 2194, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2201, 1, 0, 0, 0, 2198, 2200, 3, 128, 64, 0, 2199, 2198, 1, 0, 0, 0, 2200, 2203, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2210, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2205, 5, 45, 0, 0, 2205, 2207, 3, 816, 408, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 3, 136, 68, 0, 2209, 2193, 1, 0, 0, 0, 2209, 2206, 1, 0, 0, 0, 2210, 125, 1, 0, 0, 0, 2211, 2212, 3, 800, 400, 0, 2212, 2214, 3, 646, 323, 0, 2213, 2215, 3, 214, 107, 0, 2214, 2213, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2225, 1, 0, 0, 0, 2216, 2223, 5, 345, 0, 0, 2217, 2224, 5, 544, 0, 0, 2218, 2224, 5, 205, 0, 0, 2219, 2224, 5, 545, 0, 0, 2220, 2224, 5, 546, 0, 0, 2221, 2224, 5, 53, 0, 0, 2222, 2224, 3, 816, 408, 0, 2223, 2217, 1, 0, 0, 0, 2223, 2218, 1, 0, 0, 0, 2223, 2219, 1, 0, 0, 0, 2223, 2220, 1, 0, 0, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2222, 1, 0, 0, 0, 2224, 2226, 1, 0, 0, 0, 2225, 2216, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2229, 1, 0, 0, 0, 2227, 2228, 5, 543, 0, 0, 2228, 2230, 3, 816, 408, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2233, 3, 90, 45, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2235, 5, 105, 0, 0, 2235, 2237, 5, 280, 0, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2241, 1, 0, 0, 0, 2238, 2240, 3, 128, 64, 0, 2239, 2238, 1, 0, 0, 0, 2240, 2243, 1, 0, 0, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 127, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2245, 5, 45, 0, 0, 2245, 2247, 3, 816, 408, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2253, 3, 130, 65, 0, 2249, 2251, 5, 77, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2254, 5, 54, 0, 0, 2253, 2250, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2256, 5, 69, 0, 0, 2256, 2258, 7, 9, 0, 0, 2257, 2255, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 129, 1, 0, 0, 0, 2259, 2261, 5, 77, 0, 0, 2260, 2259, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2340, 5, 78, 0, 0, 2263, 2265, 5, 98, 0, 0, 2264, 2266, 3, 394, 197, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2268, 1, 0, 0, 0, 2267, 2269, 3, 172, 86, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2340, 1, 0, 0, 0, 2270, 2276, 5, 98, 0, 0, 2271, 2273, 5, 273, 0, 0, 2272, 2274, 5, 77, 0, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2277, 5, 56, 0, 0, 2276, 2271, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2280, 1, 0, 0, 0, 2278, 2279, 5, 441, 0, 0, 2279, 2281, 3, 354, 177, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 1, 0, 0, 0, 2282, 2284, 3, 566, 283, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2287, 3, 172, 86, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2340, 1, 0, 0, 0, 2288, 2289, 5, 85, 0, 0, 2289, 2291, 5, 245, 0, 0, 2290, 2292, 3, 394, 197, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2295, 3, 172, 86, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2340, 1, 0, 0, 0, 2296, 2297, 5, 42, 0, 0, 2297, 2298, 5, 2, 0, 0, 2298, 2299, 3, 668, 334, 0, 2299, 2302, 5, 3, 0, 0, 2300, 2301, 5, 269, 0, 0, 2301, 2303, 5, 228, 0, 0, 2302, 2300, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2340, 1, 0, 0, 0, 2304, 2305, 5, 53, 0, 0, 2305, 2340, 3, 676, 338, 0, 2306, 2307, 5, 438, 0, 0, 2307, 2308, 3, 132, 66, 0, 2308, 2325, 5, 36, 0, 0, 2309, 2318, 5, 219, 0, 0, 2310, 2312, 5, 2, 0, 0, 2311, 2313, 3, 194, 97, 0, 2312, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 2317, 5, 3, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2310, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2326, 1, 0, 0, 0, 2320, 2321, 5, 2, 0, 0, 2321, 2322, 3, 668, 334, 0, 2322, 2323, 5, 3, 0, 0, 2323, 2324, 5, 440, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2309, 1, 0, 0, 0, 2325, 2320, 1, 0, 0, 0, 2326, 2340, 1, 0, 0, 0, 2327, 2328, 5, 86, 0, 0, 2328, 2330, 3, 776, 388, 0, 2329, 2331, 3, 138, 69, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2334, 3, 146, 73, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2337, 3, 150, 75, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2340, 3, 90, 45, 0, 2339, 2260, 1, 0, 0, 0, 2339, 2263, 1, 0, 0, 0, 2339, 2270, 1, 0, 0, 0, 2339, 2288, 1, 0, 0, 0, 2339, 2296, 1, 0, 0, 0, 2339, 2304, 1, 0, 0, 0, 2339, 2306, 1, 0, 0, 0, 2339, 2327, 1, 0, 0, 0, 2339, 2338, 1, 0, 0, 0, 2340, 131, 1, 0, 0, 0, 2341, 2345, 5, 139, 0, 0, 2342, 2343, 5, 147, 0, 0, 2343, 2345, 5, 53, 0, 0, 2344, 2341, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2345, 133, 1, 0, 0, 0, 2346, 2347, 7, 24, 0, 0, 2347, 135, 1, 0, 0, 0, 2348, 2349, 5, 42, 0, 0, 2349, 2350, 5, 2, 0, 0, 2350, 2351, 3, 668, 334, 0, 2351, 2355, 5, 3, 0, 0, 2352, 2354, 3, 266, 133, 0, 2353, 2352, 1, 0, 0, 0, 2354, 2357, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2445, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2362, 5, 98, 0, 0, 2359, 2360, 5, 85, 0, 0, 2360, 2362, 5, 245, 0, 0, 2361, 2358, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2386, 1, 0, 0, 0, 2363, 2365, 3, 138, 69, 0, 2364, 2366, 3, 144, 72, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2368, 1, 0, 0, 0, 2367, 2369, 3, 394, 197, 0, 2368, 2367, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2371, 1, 0, 0, 0, 2370, 2372, 3, 172, 86, 0, 2371, 2370, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2376, 1, 0, 0, 0, 2373, 2375, 3, 266, 133, 0, 2374, 2373, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2387, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2383, 3, 174, 87, 0, 2380, 2382, 3, 266, 133, 0, 2381, 2380, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2387, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2363, 1, 0, 0, 0, 2386, 2379, 1, 0, 0, 0, 2387, 2445, 1, 0, 0, 0, 2388, 2390, 5, 199, 0, 0, 2389, 2391, 3, 164, 82, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2393, 5, 2, 0, 0, 2393, 2398, 3, 148, 74, 0, 2394, 2395, 5, 6, 0, 0, 2395, 2397, 3, 148, 74, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2400, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2401, 1, 0, 0, 0, 2400, 2398, 1, 0, 0, 0, 2401, 2403, 5, 3, 0, 0, 2402, 2404, 3, 144, 72, 0, 2403, 2402, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2406, 1, 0, 0, 0, 2405, 2407, 3, 394, 197, 0, 2406, 2405, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2410, 3, 172, 86, 0, 2409, 2408, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2416, 1, 0, 0, 0, 2411, 2412, 5, 103, 0, 0, 2412, 2413, 5, 2, 0, 0, 2413, 2414, 3, 668, 334, 0, 2414, 2415, 5, 3, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2411, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2421, 1, 0, 0, 0, 2418, 2420, 3, 266, 133, 0, 2419, 2418, 1, 0, 0, 0, 2420, 2423, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2445, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2425, 5, 63, 0, 0, 2425, 2426, 5, 245, 0, 0, 2426, 2427, 3, 138, 69, 0, 2427, 2428, 5, 86, 0, 0, 2428, 2430, 3, 776, 388, 0, 2429, 2431, 3, 138, 69, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2434, 3, 146, 73, 0, 2433, 2432, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, 1, 0, 0, 0, 2435, 2437, 3, 150, 75, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2441, 1, 0, 0, 0, 2438, 2440, 3, 266, 133, 0, 2439, 2438, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2445, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2348, 1, 0, 0, 0, 2444, 2361, 1, 0, 0, 0, 2444, 2388, 1, 0, 0, 0, 2444, 2424, 1, 0, 0, 0, 2445, 137, 1, 0, 0, 0, 2446, 2447, 5, 2, 0, 0, 2447, 2448, 3, 142, 71, 0, 2448, 2449, 5, 3, 0, 0, 2449, 139, 1, 0, 0, 0, 2450, 2451, 5, 2, 0, 0, 2451, 2456, 3, 800, 400, 0, 2452, 2453, 5, 6, 0, 0, 2453, 2455, 3, 800, 400, 0, 2454, 2452, 1, 0, 0, 0, 2455, 2458, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2459, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2460, 5, 3, 0, 0, 2460, 141, 1, 0, 0, 0, 2461, 2466, 3, 796, 398, 0, 2462, 2463, 5, 6, 0, 0, 2463, 2465, 3, 796, 398, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 143, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2470, 5, 441, 0, 0, 2470, 2471, 3, 138, 69, 0, 2471, 145, 1, 0, 0, 0, 2472, 2473, 5, 258, 0, 0, 2473, 2474, 7, 25, 0, 0, 2474, 147, 1, 0, 0, 0, 2475, 2476, 3, 356, 178, 0, 2476, 2483, 5, 105, 0, 0, 2477, 2484, 3, 408, 204, 0, 2478, 2479, 5, 278, 0, 0, 2479, 2480, 5, 2, 0, 0, 2480, 2481, 3, 408, 204, 0, 2481, 2482, 5, 3, 0, 0, 2482, 2484, 1, 0, 0, 0, 2483, 2477, 1, 0, 0, 0, 2483, 2478, 1, 0, 0, 0, 2484, 149, 1, 0, 0, 0, 2485, 2487, 3, 152, 76, 0, 2486, 2488, 3, 154, 77, 0, 2487, 2486, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2494, 1, 0, 0, 0, 2489, 2491, 3, 154, 77, 0, 2490, 2492, 3, 152, 76, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 1, 0, 0, 0, 2493, 2485, 1, 0, 0, 0, 2493, 2489, 1, 0, 0, 0, 2494, 151, 1, 0, 0, 0, 2495, 2496, 5, 80, 0, 0, 2496, 2497, 5, 369, 0, 0, 2497, 2498, 3, 156, 78, 0, 2498, 153, 1, 0, 0, 0, 2499, 2500, 5, 80, 0, 0, 2500, 2501, 5, 182, 0, 0, 2501, 2502, 3, 156, 78, 0, 2502, 155, 1, 0, 0, 0, 2503, 2504, 5, 269, 0, 0, 2504, 2513, 5, 132, 0, 0, 2505, 2513, 5, 315, 0, 0, 2506, 2513, 5, 150, 0, 0, 2507, 2508, 5, 333, 0, 0, 2508, 2510, 7, 26, 0, 0, 2509, 2511, 3, 142, 71, 0, 2510, 2509, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 1, 0, 0, 0, 2512, 2503, 1, 0, 0, 0, 2512, 2505, 1, 0, 0, 0, 2512, 2506, 1, 0, 0, 0, 2512, 2507, 1, 0, 0, 0, 2513, 157, 1, 0, 0, 0, 2514, 2515, 5, 238, 0, 0, 2515, 2516, 5, 2, 0, 0, 2516, 2517, 3, 756, 378, 0, 2517, 2518, 5, 3, 0, 0, 2518, 159, 1, 0, 0, 0, 2519, 2520, 5, 285, 0, 0, 2520, 2521, 5, 147, 0, 0, 2521, 2522, 3, 816, 408, 0, 2522, 2523, 5, 2, 0, 0, 2523, 2528, 3, 162, 81, 0, 2524, 2525, 5, 6, 0, 0, 2525, 2527, 3, 162, 81, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2530, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2531, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2531, 2532, 5, 3, 0, 0, 2532, 161, 1, 0, 0, 0, 2533, 2540, 3, 796, 398, 0, 2534, 2540, 3, 682, 341, 0, 2535, 2536, 5, 2, 0, 0, 2536, 2537, 3, 668, 334, 0, 2537, 2538, 5, 3, 0, 0, 2538, 2540, 1, 0, 0, 0, 2539, 2533, 1, 0, 0, 0, 2539, 2534, 1, 0, 0, 0, 2539, 2535, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 90, 45, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 310, 155, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 163, 1, 0, 0, 0, 2547, 2548, 5, 100, 0, 0, 2548, 2549, 3, 816, 408, 0, 2549, 165, 1, 0, 0, 0, 2550, 2551, 5, 105, 0, 0, 2551, 2555, 3, 92, 46, 0, 2552, 2553, 7, 27, 0, 0, 2553, 2555, 5, 277, 0, 0, 2554, 2550, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2555, 167, 1, 0, 0, 0, 2556, 2557, 5, 80, 0, 0, 2557, 2563, 5, 161, 0, 0, 2558, 2564, 5, 191, 0, 0, 2559, 2560, 5, 182, 0, 0, 2560, 2564, 5, 320, 0, 0, 2561, 2562, 5, 292, 0, 0, 2562, 2564, 5, 320, 0, 0, 2563, 2558, 1, 0, 0, 0, 2563, 2559, 1, 0, 0, 0, 2563, 2561, 1, 0, 0, 0, 2564, 169, 1, 0, 0, 0, 2565, 2566, 5, 351, 0, 0, 2566, 2567, 3, 766, 383, 0, 2567, 171, 1, 0, 0, 0, 2568, 2569, 5, 100, 0, 0, 2569, 2570, 5, 226, 0, 0, 2570, 2571, 3, 170, 85, 0, 2571, 173, 1, 0, 0, 0, 2572, 2573, 5, 100, 0, 0, 2573, 2574, 5, 226, 0, 0, 2574, 2575, 3, 816, 408, 0, 2575, 175, 1, 0, 0, 0, 2576, 2577, 5, 46, 0, 0, 2577, 2582, 5, 342, 0, 0, 2578, 2580, 3, 288, 144, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 3, 310, 155, 0, 2582, 2579, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2586, 3, 138, 69, 0, 2585, 2584, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2597, 5, 80, 0, 0, 2588, 2593, 3, 728, 364, 0, 2589, 2590, 5, 6, 0, 0, 2590, 2592, 3, 728, 364, 0, 2591, 2589, 1, 0, 0, 0, 2592, 2595, 1, 0, 0, 0, 2593, 2591, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2598, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2596, 2598, 3, 726, 363, 0, 2597, 2588, 1, 0, 0, 0, 2597, 2596, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 3, 604, 302, 0, 2600, 177, 1, 0, 0, 0, 2601, 2602, 5, 138, 0, 0, 2602, 2604, 5, 342, 0, 0, 2603, 2605, 3, 416, 208, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 3, 310, 155, 0, 2607, 2608, 5, 333, 0, 0, 2608, 2609, 5, 342, 0, 0, 2609, 2610, 3, 810, 405, 0, 2610, 179, 1, 0, 0, 0, 2611, 2613, 5, 46, 0, 0, 2612, 2614, 3, 116, 58, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 5, 92, 0, 0, 2616, 2618, 3, 288, 144, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 3, 182, 91, 0, 2620, 2621, 5, 36, 0, 0, 2621, 2623, 3, 554, 277, 0, 2622, 2624, 3, 184, 92, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 181, 1, 0, 0, 0, 2625, 2627, 3, 768, 384, 0, 2626, 2628, 3, 140, 70, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2630, 1, 0, 0, 0, 2629, 2631, 3, 164, 82, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2633, 1, 0, 0, 0, 2632, 2634, 3, 166, 83, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2637, 3, 168, 84, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 170, 85, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 183, 1, 0, 0, 0, 2641, 2645, 5, 105, 0, 0, 2642, 2646, 5, 174, 0, 0, 2643, 2644, 5, 269, 0, 0, 2644, 2646, 5, 174, 0, 0, 2645, 2642, 1, 0, 0, 0, 2645, 2643, 1, 0, 0, 0, 2646, 185, 1, 0, 0, 0, 2647, 2649, 5, 46, 0, 0, 2648, 2650, 5, 367, 0, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 5, 259, 0, 0, 2652, 2654, 5, 376, 0, 0, 2653, 2655, 3, 288, 144, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2658, 3, 772, 386, 0, 2657, 2659, 3, 140, 70, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 1, 0, 0, 0, 2660, 2662, 3, 164, 82, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2665, 3, 94, 47, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2667, 1, 0, 0, 0, 2666, 2668, 3, 170, 85, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 5, 36, 0, 0, 2670, 2672, 3, 554, 277, 0, 2671, 2673, 3, 184, 92, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 187, 1, 0, 0, 0, 2674, 2675, 5, 305, 0, 0, 2675, 2676, 5, 259, 0, 0, 2676, 2678, 5, 376, 0, 0, 2677, 2679, 5, 109, 0, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 3, 774, 387, 0, 2681, 2683, 3, 184, 92, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 189, 1, 0, 0, 0, 2684, 2686, 5, 46, 0, 0, 2685, 2687, 3, 116, 58, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 5, 328, 0, 0, 2689, 2691, 3, 288, 144, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2698, 3, 776, 388, 0, 2693, 2695, 3, 194, 97, 0, 2694, 2693, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2694, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2699, 1, 0, 0, 0, 2698, 2694, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 191, 1, 0, 0, 0, 2700, 2701, 5, 138, 0, 0, 2701, 2703, 5, 328, 0, 0, 2702, 2704, 3, 416, 208, 0, 2703, 2702, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2707, 3, 776, 388, 0, 2706, 2708, 3, 194, 97, 0, 2707, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 193, 1, 0, 0, 0, 2711, 2712, 5, 36, 0, 0, 2712, 2745, 3, 648, 324, 0, 2713, 2715, 5, 148, 0, 0, 2714, 2716, 3, 196, 98, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2745, 1, 0, 0, 0, 2717, 2719, 5, 225, 0, 0, 2718, 2720, 5, 147, 0, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2745, 3, 196, 98, 0, 2722, 2723, 7, 28, 0, 0, 2723, 2745, 3, 196, 98, 0, 2724, 2725, 5, 269, 0, 0, 2725, 2745, 7, 29, 0, 0, 2726, 2727, 5, 281, 0, 0, 2727, 2728, 5, 147, 0, 0, 2728, 2745, 3, 796, 398, 0, 2729, 2730, 5, 328, 0, 0, 2730, 2731, 5, 266, 0, 0, 2731, 2745, 3, 310, 155, 0, 2732, 2734, 5, 340, 0, 0, 2733, 2735, 5, 105, 0, 0, 2734, 2733, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2745, 3, 196, 98, 0, 2737, 2739, 5, 314, 0, 0, 2738, 2740, 5, 105, 0, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2742, 1, 0, 0, 0, 2741, 2743, 3, 196, 98, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2711, 1, 0, 0, 0, 2744, 2713, 1, 0, 0, 0, 2744, 2717, 1, 0, 0, 0, 2744, 2722, 1, 0, 0, 0, 2744, 2724, 1, 0, 0, 0, 2744, 2726, 1, 0, 0, 0, 2744, 2729, 1, 0, 0, 0, 2744, 2732, 1, 0, 0, 0, 2744, 2737, 1, 0, 0, 0, 2745, 195, 1, 0, 0, 0, 2746, 2748, 7, 30, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2752, 5, 576, 0, 0, 2750, 2752, 3, 810, 405, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2750, 1, 0, 0, 0, 2752, 197, 1, 0, 0, 0, 2753, 2755, 5, 46, 0, 0, 2754, 2756, 3, 360, 180, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2758, 1, 0, 0, 0, 2757, 2759, 5, 359, 0, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2762, 5, 295, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 5, 247, 0, 0, 2764, 2777, 3, 816, 408, 0, 2765, 2766, 5, 215, 0, 0, 2766, 2769, 3, 310, 155, 0, 2767, 2768, 5, 239, 0, 0, 2768, 2770, 3, 310, 155, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2775, 1, 0, 0, 0, 2771, 2772, 5, 373, 0, 0, 2772, 2776, 3, 310, 155, 0, 2773, 2774, 5, 269, 0, 0, 2774, 2776, 5, 373, 0, 0, 2775, 2771, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2778, 1, 0, 0, 0, 2777, 2765, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 199, 1, 0, 0, 0, 2779, 2780, 5, 46, 0, 0, 2780, 2783, 3, 170, 85, 0, 2781, 2782, 5, 282, 0, 0, 2782, 2784, 3, 812, 406, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 5, 255, 0, 0, 2786, 2788, 3, 806, 403, 0, 2787, 2789, 3, 94, 47, 0, 2788, 2787, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 201, 1, 0, 0, 0, 2790, 2791, 5, 46, 0, 0, 2791, 2793, 5, 204, 0, 0, 2792, 2794, 3, 288, 144, 0, 2793, 2792, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 3, 816, 408, 0, 2796, 2798, 5, 105, 0, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2806, 1, 0, 0, 0, 2799, 2800, 5, 323, 0, 0, 2800, 2805, 3, 786, 393, 0, 2801, 2802, 7, 31, 0, 0, 2802, 2805, 3, 58, 29, 0, 2803, 2805, 5, 150, 0, 0, 2804, 2799, 1, 0, 0, 0, 2804, 2801, 1, 0, 0, 0, 2804, 2803, 1, 0, 0, 0, 2805, 2808, 1, 0, 0, 0, 2806, 2804, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 203, 1, 0, 0, 0, 2808, 2806, 1, 0, 0, 0, 2809, 2810, 5, 138, 0, 0, 2810, 2811, 5, 204, 0, 0, 2811, 2812, 3, 816, 408, 0, 2812, 2817, 5, 369, 0, 0, 2813, 2814, 5, 94, 0, 0, 2814, 2816, 3, 58, 29, 0, 2815, 2813, 1, 0, 0, 0, 2816, 2819, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 205, 1, 0, 0, 0, 2819, 2817, 1, 0, 0, 0, 2820, 2821, 5, 138, 0, 0, 2821, 2822, 5, 204, 0, 0, 2822, 2823, 3, 816, 408, 0, 2823, 2856, 7, 6, 0, 0, 2824, 2825, 5, 443, 0, 0, 2825, 2826, 5, 62, 0, 0, 2826, 2827, 3, 646, 323, 0, 2827, 2828, 5, 247, 0, 0, 2828, 2829, 3, 816, 408, 0, 2829, 2857, 1, 0, 0, 0, 2830, 2831, 5, 442, 0, 0, 2831, 2857, 3, 368, 184, 0, 2832, 2833, 5, 296, 0, 0, 2833, 2857, 3, 372, 186, 0, 2834, 2835, 5, 278, 0, 0, 2835, 2836, 7, 32, 0, 0, 2836, 2837, 3, 310, 155, 0, 2837, 2838, 3, 164, 82, 0, 2838, 2857, 1, 0, 0, 0, 2839, 2840, 5, 278, 0, 0, 2840, 2857, 3, 410, 205, 0, 2841, 2842, 5, 211, 0, 0, 2842, 2857, 3, 376, 188, 0, 2843, 2844, 7, 33, 0, 0, 2844, 2857, 3, 646, 323, 0, 2845, 2846, 5, 41, 0, 0, 2846, 2847, 5, 2, 0, 0, 2847, 2848, 3, 646, 323, 0, 2848, 2849, 5, 36, 0, 0, 2849, 2850, 3, 646, 323, 0, 2850, 2851, 5, 3, 0, 0, 2851, 2857, 1, 0, 0, 0, 2852, 2853, 5, 136, 0, 0, 2853, 2857, 3, 388, 194, 0, 2854, 2857, 3, 306, 153, 0, 2855, 2857, 3, 304, 152, 0, 2856, 2824, 1, 0, 0, 0, 2856, 2830, 1, 0, 0, 0, 2856, 2832, 1, 0, 0, 0, 2856, 2834, 1, 0, 0, 0, 2856, 2839, 1, 0, 0, 0, 2856, 2841, 1, 0, 0, 0, 2856, 2843, 1, 0, 0, 0, 2856, 2845, 1, 0, 0, 0, 2856, 2852, 1, 0, 0, 0, 2856, 2854, 1, 0, 0, 0, 2856, 2855, 1, 0, 0, 0, 2857, 207, 1, 0, 0, 0, 2858, 2859, 5, 46, 0, 0, 2859, 2860, 5, 63, 0, 0, 2860, 2861, 5, 174, 0, 0, 2861, 2862, 5, 381, 0, 0, 2862, 2868, 3, 816, 408, 0, 2863, 2865, 3, 210, 105, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2864, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2871, 1, 0, 0, 0, 2870, 2872, 3, 214, 107, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 209, 1, 0, 0, 0, 2873, 2875, 7, 34, 0, 0, 2874, 2876, 3, 310, 155, 0, 2875, 2874, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2880, 1, 0, 0, 0, 2877, 2878, 5, 269, 0, 0, 2878, 2880, 7, 34, 0, 0, 2879, 2873, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 211, 1, 0, 0, 0, 2881, 2882, 5, 138, 0, 0, 2882, 2883, 5, 63, 0, 0, 2883, 2884, 5, 174, 0, 0, 2884, 2885, 5, 381, 0, 0, 2885, 2899, 3, 816, 408, 0, 2886, 2888, 3, 210, 105, 0, 2887, 2886, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2887, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2900, 3, 216, 108, 0, 2894, 2896, 3, 210, 105, 0, 2895, 2894, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2891, 1, 0, 0, 0, 2899, 2895, 1, 0, 0, 0, 2900, 213, 1, 0, 0, 0, 2901, 2902, 5, 280, 0, 0, 2902, 2903, 5, 2, 0, 0, 2903, 2908, 3, 220, 110, 0, 2904, 2905, 5, 6, 0, 0, 2905, 2907, 3, 220, 110, 0, 2906, 2904, 1, 0, 0, 0, 2907, 2910, 1, 0, 0, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2912, 5, 3, 0, 0, 2912, 215, 1, 0, 0, 0, 2913, 2914, 5, 280, 0, 0, 2914, 2915, 5, 2, 0, 0, 2915, 2920, 3, 218, 109, 0, 2916, 2917, 5, 6, 0, 0, 2917, 2919, 3, 218, 109, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 1, 0, 0, 0, 2922, 2920, 1, 0, 0, 0, 2923, 2924, 5, 3, 0, 0, 2924, 217, 1, 0, 0, 0, 2925, 2926, 7, 35, 0, 0, 2926, 2927, 3, 220, 110, 0, 2927, 219, 1, 0, 0, 0, 2928, 2929, 3, 822, 411, 0, 2929, 2930, 3, 806, 403, 0, 2930, 221, 1, 0, 0, 0, 2931, 2932, 5, 46, 0, 0, 2932, 2934, 5, 331, 0, 0, 2933, 2935, 3, 288, 144, 0, 2934, 2933, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2939, 3, 816, 408, 0, 2937, 2938, 5, 360, 0, 0, 2938, 2940, 3, 806, 403, 0, 2939, 2937, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2942, 1, 0, 0, 0, 2941, 2943, 3, 224, 112, 0, 2942, 2941, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2945, 5, 63, 0, 0, 2945, 2946, 5, 174, 0, 0, 2946, 2947, 5, 381, 0, 0, 2947, 2949, 3, 816, 408, 0, 2948, 2950, 3, 214, 107, 0, 2949, 2948, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 223, 1, 0, 0, 0, 2951, 2954, 5, 375, 0, 0, 2952, 2955, 3, 806, 403, 0, 2953, 2955, 5, 78, 0, 0, 2954, 2952, 1, 0, 0, 0, 2954, 2953, 1, 0, 0, 0, 2955, 225, 1, 0, 0, 0, 2956, 2957, 5, 138, 0, 0, 2957, 2958, 5, 331, 0, 0, 2958, 2964, 3, 816, 408, 0, 2959, 2965, 3, 216, 108, 0, 2960, 2962, 3, 224, 112, 0, 2961, 2963, 3, 216, 108, 0, 2962, 2961, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2959, 1, 0, 0, 0, 2964, 2960, 1, 0, 0, 0, 2965, 227, 1, 0, 0, 0, 2966, 2967, 5, 46, 0, 0, 2967, 2968, 5, 63, 0, 0, 2968, 2970, 5, 92, 0, 0, 2969, 2971, 3, 288, 144, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2973, 3, 768, 384, 0, 2973, 2975, 5, 2, 0, 0, 2974, 2976, 3, 120, 60, 0, 2975, 2974, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2979, 5, 3, 0, 0, 2978, 2980, 3, 158, 79, 0, 2979, 2978, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 5, 331, 0, 0, 2982, 2984, 3, 816, 408, 0, 2983, 2985, 3, 214, 107, 0, 2984, 2983, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 3006, 1, 0, 0, 0, 2986, 2987, 5, 46, 0, 0, 2987, 2988, 5, 63, 0, 0, 2988, 2990, 5, 92, 0, 0, 2989, 2991, 3, 288, 144, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 3, 768, 384, 0, 2993, 2994, 5, 285, 0, 0, 2994, 2995, 5, 275, 0, 0, 2995, 2997, 3, 770, 385, 0, 2996, 2998, 3, 118, 59, 0, 2997, 2996, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3000, 3, 98, 49, 0, 3000, 3001, 5, 331, 0, 0, 3001, 3003, 3, 816, 408, 0, 3002, 3004, 3, 214, 107, 0, 3003, 3002, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3006, 1, 0, 0, 0, 3005, 2966, 1, 0, 0, 0, 3005, 2986, 1, 0, 0, 0, 3006, 229, 1, 0, 0, 0, 3007, 3008, 5, 444, 0, 0, 3008, 3009, 5, 63, 0, 0, 3009, 3010, 5, 323, 0, 0, 3010, 3020, 3, 786, 393, 0, 3011, 3012, 5, 74, 0, 0, 3012, 3015, 5, 94, 0, 0, 3013, 3015, 5, 59, 0, 0, 3014, 3011, 1, 0, 0, 0, 3014, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 5, 2, 0, 0, 3017, 3018, 3, 622, 311, 0, 3018, 3019, 5, 3, 0, 0, 3019, 3021, 1, 0, 0, 0, 3020, 3014, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 5, 64, 0, 0, 3023, 3024, 5, 331, 0, 0, 3024, 3025, 3, 816, 408, 0, 3025, 3026, 5, 71, 0, 0, 3026, 3028, 3, 816, 408, 0, 3027, 3029, 3, 214, 107, 0, 3028, 3027, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 231, 1, 0, 0, 0, 3030, 3031, 5, 46, 0, 0, 3031, 3032, 5, 99, 0, 0, 3032, 3034, 5, 257, 0, 0, 3033, 3035, 3, 288, 144, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3039, 5, 62, 0, 0, 3037, 3040, 3, 812, 406, 0, 3038, 3040, 5, 99, 0, 0, 3039, 3037, 1, 0, 0, 0, 3039, 3038, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 5, 331, 0, 0, 3042, 3044, 3, 816, 408, 0, 3043, 3045, 3, 214, 107, 0, 3044, 3043, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 233, 1, 0, 0, 0, 3046, 3047, 5, 138, 0, 0, 3047, 3048, 5, 99, 0, 0, 3048, 3049, 5, 257, 0, 0, 3049, 3052, 5, 62, 0, 0, 3050, 3053, 3, 812, 406, 0, 3051, 3053, 5, 99, 0, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 5, 331, 0, 0, 3055, 3056, 3, 816, 408, 0, 3056, 3057, 3, 216, 108, 0, 3057, 235, 1, 0, 0, 0, 3058, 3059, 5, 46, 0, 0, 3059, 3060, 5, 445, 0, 0, 3060, 3061, 3, 816, 408, 0, 3061, 3062, 5, 80, 0, 0, 3062, 3069, 3, 776, 388, 0, 3063, 3067, 5, 36, 0, 0, 3064, 3068, 5, 541, 0, 0, 3065, 3068, 5, 542, 0, 0, 3066, 3068, 3, 824, 412, 0, 3067, 3064, 1, 0, 0, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3066, 1, 0, 0, 0, 3068, 3070, 1, 0, 0, 0, 3069, 3063, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3073, 1, 0, 0, 0, 3071, 3072, 5, 62, 0, 0, 3072, 3074, 7, 36, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3077, 1, 0, 0, 0, 3075, 3076, 5, 94, 0, 0, 3076, 3078, 3, 814, 407, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3081, 3, 244, 122, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3084, 3, 246, 123, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 237, 1, 0, 0, 0, 3085, 3086, 5, 138, 0, 0, 3086, 3087, 5, 445, 0, 0, 3087, 3088, 3, 816, 408, 0, 3088, 3089, 5, 80, 0, 0, 3089, 3092, 3, 776, 388, 0, 3090, 3091, 5, 94, 0, 0, 3091, 3093, 3, 814, 407, 0, 3092, 3090, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3096, 3, 244, 122, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3098, 1, 0, 0, 0, 3097, 3099, 3, 246, 123, 0, 3098, 3097, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 239, 1, 0, 0, 0, 3100, 3101, 5, 138, 0, 0, 3101, 3102, 5, 296, 0, 0, 3102, 3104, 3, 792, 396, 0, 3103, 3105, 3, 362, 181, 0, 3104, 3103, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3132, 1, 0, 0, 0, 3106, 3110, 3, 242, 121, 0, 3107, 3109, 3, 242, 121, 0, 3108, 3107, 1, 0, 0, 0, 3109, 3112, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3113, 3115, 5, 315, 0, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3133, 1, 0, 0, 0, 3116, 3117, 5, 309, 0, 0, 3117, 3118, 5, 94, 0, 0, 3118, 3133, 3, 794, 397, 0, 3119, 3120, 5, 282, 0, 0, 3120, 3121, 5, 94, 0, 0, 3121, 3133, 3, 812, 406, 0, 3122, 3123, 5, 333, 0, 0, 3123, 3124, 5, 323, 0, 0, 3124, 3133, 3, 32, 16, 0, 3125, 3127, 5, 269, 0, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 3129, 5, 462, 0, 0, 3129, 3130, 5, 80, 0, 0, 3130, 3131, 5, 204, 0, 0, 3131, 3133, 3, 816, 408, 0, 3132, 3106, 1, 0, 0, 0, 3132, 3116, 1, 0, 0, 0, 3132, 3119, 1, 0, 0, 0, 3132, 3122, 1, 0, 0, 0, 3132, 3126, 1, 0, 0, 0, 3133, 241, 1, 0, 0, 0, 3134, 3136, 5, 205, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 5, 327, 0, 0, 3138, 3145, 5, 243, 0, 0, 3139, 3141, 5, 205, 0, 0, 3140, 3139, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 5, 327, 0, 0, 3143, 3145, 5, 181, 0, 0, 3144, 3135, 1, 0, 0, 0, 3144, 3140, 1, 0, 0, 0, 3145, 3164, 1, 0, 0, 0, 3146, 3147, 5, 333, 0, 0, 3147, 3148, 3, 816, 408, 0, 3148, 3151, 7, 37, 0, 0, 3149, 3152, 3, 816, 408, 0, 3150, 3152, 5, 53, 0, 0, 3151, 3149, 1, 0, 0, 0, 3151, 3150, 1, 0, 0, 0, 3152, 3164, 1, 0, 0, 0, 3153, 3154, 5, 333, 0, 0, 3154, 3155, 3, 816, 408, 0, 3155, 3156, 5, 64, 0, 0, 3156, 3157, 5, 434, 0, 0, 3157, 3164, 1, 0, 0, 0, 3158, 3161, 5, 313, 0, 0, 3159, 3162, 3, 816, 408, 0, 3160, 3162, 5, 30, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3162, 3164, 1, 0, 0, 0, 3163, 3144, 1, 0, 0, 0, 3163, 3146, 1, 0, 0, 0, 3163, 3153, 1, 0, 0, 0, 3163, 3158, 1, 0, 0, 0, 3164, 243, 1, 0, 0, 0, 3165, 3166, 5, 100, 0, 0, 3166, 3167, 5, 2, 0, 0, 3167, 3168, 3, 668, 334, 0, 3168, 3169, 5, 3, 0, 0, 3169, 245, 1, 0, 0, 0, 3170, 3171, 5, 105, 0, 0, 3171, 3172, 5, 42, 0, 0, 3172, 3173, 5, 2, 0, 0, 3173, 3174, 3, 668, 334, 0, 3174, 3175, 5, 3, 0, 0, 3175, 247, 1, 0, 0, 0, 3176, 3177, 5, 46, 0, 0, 3177, 3178, 5, 131, 0, 0, 3178, 3179, 5, 446, 0, 0, 3179, 3180, 3, 816, 408, 0, 3180, 3181, 5, 360, 0, 0, 3181, 3182, 7, 38, 0, 0, 3182, 3183, 5, 215, 0, 0, 3183, 3184, 3, 310, 155, 0, 3184, 249, 1, 0, 0, 0, 3185, 3187, 5, 46, 0, 0, 3186, 3188, 3, 360, 180, 0, 3187, 3186, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3190, 5, 357, 0, 0, 3190, 3191, 3, 816, 408, 0, 3191, 3192, 3, 252, 126, 0, 3192, 3193, 3, 254, 127, 0, 3193, 3194, 5, 80, 0, 0, 3194, 3206, 3, 770, 385, 0, 3195, 3202, 5, 447, 0, 0, 3196, 3197, 7, 39, 0, 0, 3197, 3199, 7, 40, 0, 0, 3198, 3200, 5, 36, 0, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 3, 816, 408, 0, 3202, 3196, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3207, 1, 0, 0, 0, 3206, 3195, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3213, 1, 0, 0, 0, 3208, 3210, 5, 62, 0, 0, 3209, 3211, 5, 192, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3214, 7, 41, 0, 0, 3213, 3208, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3217, 3, 258, 129, 0, 3216, 3215, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 5, 202, 0, 0, 3219, 3220, 3, 260, 130, 0, 3220, 3221, 5, 2, 0, 0, 3221, 3222, 3, 262, 131, 0, 3222, 3223, 5, 3, 0, 0, 3223, 3264, 1, 0, 0, 0, 3224, 3226, 5, 46, 0, 0, 3225, 3227, 3, 360, 180, 0, 3226, 3225, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3229, 1, 0, 0, 0, 3228, 3230, 5, 45, 0, 0, 3229, 3228, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 5, 357, 0, 0, 3232, 3233, 3, 816, 408, 0, 3233, 3234, 3, 252, 126, 0, 3234, 3235, 3, 254, 127, 0, 3235, 3236, 5, 80, 0, 0, 3236, 3239, 3, 770, 385, 0, 3237, 3238, 5, 64, 0, 0, 3238, 3240, 3, 776, 388, 0, 3239, 3237, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3244, 1, 0, 0, 0, 3241, 3243, 3, 266, 133, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3246, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3252, 1, 0, 0, 0, 3246, 3244, 1, 0, 0, 0, 3247, 3249, 5, 62, 0, 0, 3248, 3250, 5, 192, 0, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3253, 7, 41, 0, 0, 3252, 3247, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 258, 129, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 5, 202, 0, 0, 3258, 3259, 3, 260, 130, 0, 3259, 3260, 5, 2, 0, 0, 3260, 3261, 3, 262, 131, 0, 3261, 3262, 5, 3, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3185, 1, 0, 0, 0, 3263, 3224, 1, 0, 0, 0, 3264, 251, 1, 0, 0, 0, 3265, 3270, 5, 145, 0, 0, 3266, 3270, 5, 135, 0, 0, 3267, 3268, 5, 242, 0, 0, 3268, 3270, 5, 275, 0, 0, 3269, 3265, 1, 0, 0, 0, 3269, 3266, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 253, 1, 0, 0, 0, 3271, 3276, 3, 256, 128, 0, 3272, 3273, 5, 82, 0, 0, 3273, 3275, 3, 256, 128, 0, 3274, 3272, 1, 0, 0, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3274, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 255, 1, 0, 0, 0, 3278, 3276, 1, 0, 0, 0, 3279, 3288, 5, 241, 0, 0, 3280, 3288, 5, 182, 0, 0, 3281, 3284, 5, 369, 0, 0, 3282, 3283, 5, 275, 0, 0, 3283, 3285, 3, 142, 71, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3288, 5, 358, 0, 0, 3287, 3279, 1, 0, 0, 0, 3287, 3280, 1, 0, 0, 0, 3287, 3281, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3288, 257, 1, 0, 0, 0, 3289, 3290, 5, 102, 0, 0, 3290, 3291, 5, 2, 0, 0, 3291, 3292, 3, 668, 334, 0, 3292, 3293, 5, 3, 0, 0, 3293, 259, 1, 0, 0, 0, 3294, 3295, 5, 211, 0, 0, 3295, 3299, 3, 804, 402, 0, 3296, 3297, 5, 296, 0, 0, 3297, 3299, 3, 792, 396, 0, 3298, 3294, 1, 0, 0, 0, 3298, 3296, 1, 0, 0, 0, 3299, 261, 1, 0, 0, 0, 3300, 3303, 3, 264, 132, 0, 3301, 3303, 1, 0, 0, 0, 3302, 3300, 1, 0, 0, 0, 3302, 3301, 1, 0, 0, 0, 3303, 3308, 1, 0, 0, 0, 3304, 3305, 5, 6, 0, 0, 3305, 3307, 3, 264, 132, 0, 3306, 3304, 1, 0, 0, 0, 3307, 3310, 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 263, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3311, 3316, 5, 574, 0, 0, 3312, 3316, 5, 576, 0, 0, 3313, 3316, 3, 806, 403, 0, 3314, 3316, 3, 822, 411, 0, 3315, 3311, 1, 0, 0, 0, 3315, 3312, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3315, 3314, 1, 0, 0, 0, 3316, 265, 1, 0, 0, 0, 3317, 3319, 5, 77, 0, 0, 3318, 3317, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3328, 5, 54, 0, 0, 3321, 3322, 5, 69, 0, 0, 3322, 3328, 7, 9, 0, 0, 3323, 3324, 5, 77, 0, 0, 3324, 3328, 5, 371, 0, 0, 3325, 3326, 5, 269, 0, 0, 3326, 3328, 5, 228, 0, 0, 3327, 3318, 1, 0, 0, 0, 3327, 3321, 1, 0, 0, 0, 3327, 3323, 1, 0, 0, 0, 3327, 3325, 1, 0, 0, 0, 3328, 267, 1, 0, 0, 0, 3329, 3330, 5, 46, 0, 0, 3330, 3331, 5, 198, 0, 0, 3331, 3332, 5, 357, 0, 0, 3332, 3333, 3, 816, 408, 0, 3333, 3334, 5, 80, 0, 0, 3334, 3344, 3, 822, 411, 0, 3335, 3336, 5, 102, 0, 0, 3336, 3341, 3, 270, 135, 0, 3337, 3338, 5, 33, 0, 0, 3338, 3340, 3, 270, 135, 0, 3339, 3337, 1, 0, 0, 0, 3340, 3343, 1, 0, 0, 0, 3341, 3339, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3345, 1, 0, 0, 0, 3343, 3341, 1, 0, 0, 0, 3344, 3335, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 5, 202, 0, 0, 3347, 3348, 3, 260, 130, 0, 3348, 3349, 5, 2, 0, 0, 3349, 3350, 5, 3, 0, 0, 3350, 269, 1, 0, 0, 0, 3351, 3352, 3, 816, 408, 0, 3352, 3353, 5, 68, 0, 0, 3353, 3354, 5, 2, 0, 0, 3354, 3358, 3, 806, 403, 0, 3355, 3357, 3, 456, 228, 0, 3356, 3355, 1, 0, 0, 0, 3357, 3360, 1, 0, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3361, 1, 0, 0, 0, 3360, 3358, 1, 0, 0, 0, 3361, 3362, 5, 3, 0, 0, 3362, 271, 1, 0, 0, 0, 3363, 3364, 5, 138, 0, 0, 3364, 3365, 5, 198, 0, 0, 3365, 3366, 5, 357, 0, 0, 3366, 3372, 3, 816, 408, 0, 3367, 3369, 5, 193, 0, 0, 3368, 3370, 7, 14, 0, 0, 3369, 3368, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3373, 1, 0, 0, 0, 3371, 3373, 5, 186, 0, 0, 3372, 3367, 1, 0, 0, 0, 3372, 3371, 1, 0, 0, 0, 3373, 273, 1, 0, 0, 0, 3374, 3375, 5, 46, 0, 0, 3375, 3376, 5, 140, 0, 0, 3376, 3377, 3, 310, 155, 0, 3377, 3378, 5, 42, 0, 0, 3378, 3379, 5, 2, 0, 0, 3379, 3380, 3, 668, 334, 0, 3380, 3384, 5, 3, 0, 0, 3381, 3383, 3, 266, 133, 0, 3382, 3381, 1, 0, 0, 0, 3383, 3386, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 275, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3389, 5, 46, 0, 0, 3388, 3390, 3, 360, 180, 0, 3389, 3388, 1, 0, 0, 0, 3389, 3390, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3392, 5, 136, 0, 0, 3392, 3407, 3, 804, 402, 0, 3393, 3394, 3, 386, 193, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3408, 1, 0, 0, 0, 3396, 3397, 5, 2, 0, 0, 3397, 3402, 3, 284, 142, 0, 3398, 3399, 5, 6, 0, 0, 3399, 3401, 3, 284, 142, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3404, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3405, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3405, 3406, 5, 3, 0, 0, 3406, 3408, 1, 0, 0, 0, 3407, 3393, 1, 0, 0, 0, 3407, 3396, 1, 0, 0, 0, 3408, 3466, 1, 0, 0, 0, 3409, 3410, 5, 46, 0, 0, 3410, 3411, 5, 278, 0, 0, 3411, 3412, 3, 408, 204, 0, 3412, 3413, 3, 278, 139, 0, 3413, 3466, 1, 0, 0, 0, 3414, 3415, 5, 46, 0, 0, 3415, 3416, 5, 360, 0, 0, 3416, 3417, 3, 310, 155, 0, 3417, 3435, 5, 36, 0, 0, 3418, 3420, 5, 2, 0, 0, 3419, 3421, 3, 636, 318, 0, 3420, 3419, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3436, 5, 3, 0, 0, 3423, 3424, 5, 196, 0, 0, 3424, 3432, 5, 2, 0, 0, 3425, 3429, 3, 806, 403, 0, 3426, 3428, 3, 456, 228, 0, 3427, 3426, 1, 0, 0, 0, 3428, 3431, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3433, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3432, 3425, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3436, 5, 3, 0, 0, 3435, 3418, 1, 0, 0, 0, 3435, 3423, 1, 0, 0, 0, 3436, 3466, 1, 0, 0, 0, 3437, 3438, 5, 46, 0, 0, 3438, 3439, 5, 360, 0, 0, 3439, 3445, 3, 310, 155, 0, 3440, 3441, 5, 36, 0, 0, 3441, 3443, 5, 299, 0, 0, 3442, 3440, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 3, 278, 139, 0, 3445, 3442, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3466, 1, 0, 0, 0, 3447, 3448, 5, 46, 0, 0, 3448, 3449, 5, 355, 0, 0, 3449, 3450, 5, 325, 0, 0, 3450, 3451, 7, 42, 0, 0, 3451, 3452, 3, 310, 155, 0, 3452, 3453, 3, 278, 139, 0, 3453, 3466, 1, 0, 0, 0, 3454, 3455, 5, 46, 0, 0, 3455, 3457, 5, 108, 0, 0, 3456, 3458, 3, 288, 144, 0, 3457, 3456, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3463, 3, 310, 155, 0, 3460, 3464, 3, 278, 139, 0, 3461, 3462, 5, 64, 0, 0, 3462, 3464, 3, 310, 155, 0, 3463, 3460, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3464, 3466, 1, 0, 0, 0, 3465, 3387, 1, 0, 0, 0, 3465, 3409, 1, 0, 0, 0, 3465, 3414, 1, 0, 0, 0, 3465, 3437, 1, 0, 0, 0, 3465, 3447, 1, 0, 0, 0, 3465, 3454, 1, 0, 0, 0, 3466, 277, 1, 0, 0, 0, 3467, 3468, 5, 2, 0, 0, 3468, 3473, 3, 280, 140, 0, 3469, 3470, 5, 6, 0, 0, 3470, 3472, 3, 280, 140, 0, 3471, 3469, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3476, 3477, 5, 3, 0, 0, 3477, 279, 1, 0, 0, 0, 3478, 3481, 3, 822, 411, 0, 3479, 3480, 5, 10, 0, 0, 3480, 3482, 3, 282, 141, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 281, 1, 0, 0, 0, 3483, 3490, 3, 382, 191, 0, 3484, 3490, 3, 832, 416, 0, 3485, 3490, 3, 722, 361, 0, 3486, 3490, 3, 196, 98, 0, 3487, 3490, 3, 806, 403, 0, 3488, 3490, 5, 407, 0, 0, 3489, 3483, 1, 0, 0, 0, 3489, 3484, 1, 0, 0, 0, 3489, 3485, 1, 0, 0, 0, 3489, 3486, 1, 0, 0, 0, 3489, 3487, 1, 0, 0, 0, 3489, 3488, 1, 0, 0, 0, 3490, 283, 1, 0, 0, 0, 3491, 3492, 3, 824, 412, 0, 3492, 3493, 5, 10, 0, 0, 3493, 3494, 3, 282, 141, 0, 3494, 285, 1, 0, 0, 0, 3495, 3496, 5, 138, 0, 0, 3496, 3497, 5, 360, 0, 0, 3497, 3498, 3, 310, 155, 0, 3498, 3499, 5, 133, 0, 0, 3499, 3501, 5, 450, 0, 0, 3500, 3502, 3, 288, 144, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3506, 3, 806, 403, 0, 3504, 3505, 7, 43, 0, 0, 3505, 3507, 3, 806, 403, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3518, 1, 0, 0, 0, 3508, 3509, 5, 138, 0, 0, 3509, 3510, 5, 360, 0, 0, 3510, 3511, 3, 310, 155, 0, 3511, 3512, 5, 309, 0, 0, 3512, 3513, 5, 450, 0, 0, 3513, 3514, 3, 806, 403, 0, 3514, 3515, 5, 94, 0, 0, 3515, 3516, 3, 806, 403, 0, 3516, 3518, 1, 0, 0, 0, 3517, 3495, 1, 0, 0, 0, 3517, 3508, 1, 0, 0, 0, 3518, 287, 1, 0, 0, 0, 3519, 3520, 5, 220, 0, 0, 3520, 3521, 5, 77, 0, 0, 3521, 3522, 5, 396, 0, 0, 3522, 289, 1, 0, 0, 0, 3523, 3524, 5, 46, 0, 0, 3524, 3525, 5, 278, 0, 0, 3525, 3526, 5, 156, 0, 0, 3526, 3528, 3, 310, 155, 0, 3527, 3529, 5, 53, 0, 0, 3528, 3527, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 5, 62, 0, 0, 3531, 3532, 5, 360, 0, 0, 3532, 3533, 3, 646, 323, 0, 3533, 3536, 3, 164, 82, 0, 3534, 3535, 5, 206, 0, 0, 3535, 3537, 3, 310, 155, 0, 3536, 3534, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3539, 5, 36, 0, 0, 3539, 3544, 3, 292, 146, 0, 3540, 3541, 5, 6, 0, 0, 3541, 3543, 3, 292, 146, 0, 3542, 3540, 1, 0, 0, 0, 3543, 3546, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 291, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 3548, 5, 278, 0, 0, 3548, 3549, 5, 574, 0, 0, 3549, 3551, 3, 408, 204, 0, 3550, 3552, 3, 406, 203, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3560, 1, 0, 0, 0, 3553, 3558, 5, 62, 0, 0, 3554, 3559, 5, 325, 0, 0, 3555, 3556, 5, 83, 0, 0, 3556, 3557, 5, 147, 0, 0, 3557, 3559, 3, 310, 155, 0, 3558, 3554, 1, 0, 0, 0, 3558, 3555, 1, 0, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3553, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3564, 5, 302, 0, 0, 3563, 3562, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3574, 1, 0, 0, 0, 3565, 3566, 5, 211, 0, 0, 3566, 3568, 5, 574, 0, 0, 3567, 3569, 3, 522, 261, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3574, 3, 376, 188, 0, 3571, 3572, 5, 345, 0, 0, 3572, 3574, 3, 646, 323, 0, 3573, 3547, 1, 0, 0, 0, 3573, 3565, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3574, 293, 1, 0, 0, 0, 3575, 3576, 5, 46, 0, 0, 3576, 3577, 5, 278, 0, 0, 3577, 3578, 5, 206, 0, 0, 3578, 3579, 3, 310, 155, 0, 3579, 3580, 3, 164, 82, 0, 3580, 295, 1, 0, 0, 0, 3581, 3582, 5, 138, 0, 0, 3582, 3583, 5, 278, 0, 0, 3583, 3584, 5, 206, 0, 0, 3584, 3585, 3, 310, 155, 0, 3585, 3604, 3, 164, 82, 0, 3586, 3587, 5, 133, 0, 0, 3587, 3592, 3, 292, 146, 0, 3588, 3589, 5, 6, 0, 0, 3589, 3591, 3, 292, 146, 0, 3590, 3588, 1, 0, 0, 0, 3591, 3594, 1, 0, 0, 0, 3592, 3590, 1, 0, 0, 0, 3592, 3593, 1, 0, 0, 0, 3593, 3605, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3595, 3596, 5, 191, 0, 0, 3596, 3601, 3, 298, 149, 0, 3597, 3598, 5, 6, 0, 0, 3598, 3600, 3, 298, 149, 0, 3599, 3597, 1, 0, 0, 0, 3600, 3603, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3605, 1, 0, 0, 0, 3603, 3601, 1, 0, 0, 0, 3604, 3586, 1, 0, 0, 0, 3604, 3595, 1, 0, 0, 0, 3605, 297, 1, 0, 0, 0, 3606, 3607, 7, 44, 0, 0, 3607, 3608, 5, 574, 0, 0, 3608, 3609, 3, 522, 261, 0, 3609, 299, 1, 0, 0, 0, 3610, 3611, 5, 301, 0, 0, 3611, 3612, 5, 281, 0, 0, 3612, 3613, 5, 147, 0, 0, 3613, 3614, 3, 814, 407, 0, 3614, 3615, 5, 94, 0, 0, 3615, 3616, 3, 812, 406, 0, 3616, 301, 1, 0, 0, 0, 3617, 3640, 5, 191, 0, 0, 3618, 3641, 5, 328, 0, 0, 3619, 3641, 5, 226, 0, 0, 3620, 3641, 5, 108, 0, 0, 3621, 3641, 5, 168, 0, 0, 3622, 3641, 5, 342, 0, 0, 3623, 3641, 5, 452, 0, 0, 3624, 3641, 5, 331, 0, 0, 3625, 3626, 5, 131, 0, 0, 3626, 3641, 5, 446, 0, 0, 3627, 3628, 5, 198, 0, 0, 3628, 3641, 5, 357, 0, 0, 3629, 3641, 5, 204, 0, 0, 3630, 3632, 5, 295, 0, 0, 3631, 3630, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3641, 5, 247, 0, 0, 3634, 3635, 5, 63, 0, 0, 3635, 3636, 5, 174, 0, 0, 3636, 3641, 5, 381, 0, 0, 3637, 3638, 5, 355, 0, 0, 3638, 3639, 5, 325, 0, 0, 3639, 3641, 7, 42, 0, 0, 3640, 3618, 1, 0, 0, 0, 3640, 3619, 1, 0, 0, 0, 3640, 3620, 1, 0, 0, 0, 3640, 3621, 1, 0, 0, 0, 3640, 3622, 1, 0, 0, 0, 3640, 3623, 1, 0, 0, 0, 3640, 3624, 1, 0, 0, 0, 3640, 3625, 1, 0, 0, 0, 3640, 3627, 1, 0, 0, 0, 3640, 3629, 1, 0, 0, 0, 3640, 3631, 1, 0, 0, 0, 3640, 3634, 1, 0, 0, 0, 3640, 3637, 1, 0, 0, 0, 3641, 3643, 1, 0, 0, 0, 3642, 3644, 3, 416, 208, 0, 3643, 3642, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3647, 3, 780, 390, 0, 3646, 3648, 3, 88, 44, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3825, 1, 0, 0, 0, 3649, 3651, 5, 191, 0, 0, 3650, 3652, 5, 259, 0, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3655, 5, 376, 0, 0, 3654, 3656, 3, 416, 208, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3662, 3, 774, 387, 0, 3658, 3659, 5, 6, 0, 0, 3659, 3661, 3, 774, 387, 0, 3660, 3658, 1, 0, 0, 0, 3661, 3664, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3665, 3667, 3, 88, 44, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3825, 1, 0, 0, 0, 3668, 3670, 5, 191, 0, 0, 3669, 3671, 5, 63, 0, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3674, 5, 92, 0, 0, 3673, 3675, 3, 416, 208, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3678, 3, 758, 379, 0, 3677, 3679, 3, 88, 44, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3825, 1, 0, 0, 0, 3680, 3681, 5, 191, 0, 0, 3681, 3683, 5, 323, 0, 0, 3682, 3684, 3, 416, 208, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3687, 3, 760, 380, 0, 3686, 3688, 3, 88, 44, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3825, 1, 0, 0, 0, 3689, 3690, 5, 191, 0, 0, 3690, 3692, 7, 45, 0, 0, 3691, 3693, 3, 416, 208, 0, 3692, 3691, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 3, 816, 408, 0, 3695, 3696, 5, 80, 0, 0, 3696, 3698, 3, 310, 155, 0, 3697, 3699, 3, 88, 44, 0, 3698, 3697, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 3825, 1, 0, 0, 0, 3700, 3701, 5, 191, 0, 0, 3701, 3703, 7, 33, 0, 0, 3702, 3704, 3, 416, 208, 0, 3703, 3702, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3710, 3, 646, 323, 0, 3706, 3707, 5, 6, 0, 0, 3707, 3709, 3, 646, 323, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3714, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3715, 3, 88, 44, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3825, 1, 0, 0, 0, 3716, 3717, 5, 191, 0, 0, 3717, 3718, 5, 226, 0, 0, 3718, 3720, 5, 109, 0, 0, 3719, 3721, 3, 416, 208, 0, 3720, 3719, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3724, 3, 308, 154, 0, 3723, 3725, 3, 88, 44, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3825, 1, 0, 0, 0, 3726, 3727, 5, 191, 0, 0, 3727, 3729, 5, 41, 0, 0, 3728, 3730, 3, 416, 208, 0, 3729, 3728, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 5, 2, 0, 0, 3732, 3733, 3, 646, 323, 0, 3733, 3734, 5, 36, 0, 0, 3734, 3735, 3, 646, 323, 0, 3735, 3737, 5, 3, 0, 0, 3736, 3738, 3, 88, 44, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3825, 1, 0, 0, 0, 3739, 3740, 5, 191, 0, 0, 3740, 3741, 5, 278, 0, 0, 3741, 3743, 7, 32, 0, 0, 3742, 3744, 3, 416, 208, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3746, 3, 310, 155, 0, 3746, 3748, 3, 164, 82, 0, 3747, 3749, 3, 88, 44, 0, 3748, 3747, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3825, 1, 0, 0, 0, 3750, 3751, 5, 191, 0, 0, 3751, 3752, 5, 281, 0, 0, 3752, 3753, 5, 147, 0, 0, 3753, 3755, 3, 814, 407, 0, 3754, 3756, 3, 88, 44, 0, 3755, 3754, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3825, 1, 0, 0, 0, 3757, 3758, 5, 191, 0, 0, 3758, 3760, 5, 451, 0, 0, 3759, 3761, 3, 416, 208, 0, 3760, 3759, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 3, 816, 408, 0, 3763, 3765, 3, 88, 44, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3825, 1, 0, 0, 0, 3766, 3767, 5, 191, 0, 0, 3767, 3769, 5, 351, 0, 0, 3768, 3770, 3, 416, 208, 0, 3769, 3768, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3825, 3, 766, 383, 0, 3772, 3773, 5, 191, 0, 0, 3773, 3775, 5, 443, 0, 0, 3774, 3776, 3, 416, 208, 0, 3775, 3774, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3778, 5, 62, 0, 0, 3778, 3779, 3, 646, 323, 0, 3779, 3780, 5, 247, 0, 0, 3780, 3782, 3, 816, 408, 0, 3781, 3783, 3, 88, 44, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3825, 1, 0, 0, 0, 3784, 3785, 5, 191, 0, 0, 3785, 3787, 7, 46, 0, 0, 3786, 3788, 3, 416, 208, 0, 3787, 3786, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3825, 3, 814, 407, 0, 3790, 3791, 5, 191, 0, 0, 3791, 3792, 5, 99, 0, 0, 3792, 3794, 5, 257, 0, 0, 3793, 3795, 3, 416, 208, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3799, 5, 62, 0, 0, 3797, 3800, 3, 812, 406, 0, 3798, 3800, 5, 99, 0, 0, 3799, 3797, 1, 0, 0, 0, 3799, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 5, 331, 0, 0, 3802, 3825, 3, 816, 408, 0, 3803, 3804, 5, 191, 0, 0, 3804, 3806, 5, 175, 0, 0, 3805, 3807, 3, 416, 208, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3822, 3, 784, 392, 0, 3809, 3811, 5, 105, 0, 0, 3810, 3809, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 5, 2, 0, 0, 3813, 3818, 5, 209, 0, 0, 3814, 3815, 5, 6, 0, 0, 3815, 3817, 5, 209, 0, 0, 3816, 3814, 1, 0, 0, 0, 3817, 3820, 1, 0, 0, 0, 3818, 3816, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3821, 1, 0, 0, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3823, 5, 3, 0, 0, 3822, 3810, 1, 0, 0, 0, 3822, 3823, 1, 0, 0, 0, 3823, 3825, 1, 0, 0, 0, 3824, 3617, 1, 0, 0, 0, 3824, 3649, 1, 0, 0, 0, 3824, 3668, 1, 0, 0, 0, 3824, 3680, 1, 0, 0, 0, 3824, 3689, 1, 0, 0, 0, 3824, 3700, 1, 0, 0, 0, 3824, 3716, 1, 0, 0, 0, 3824, 3726, 1, 0, 0, 0, 3824, 3739, 1, 0, 0, 0, 3824, 3750, 1, 0, 0, 0, 3824, 3757, 1, 0, 0, 0, 3824, 3766, 1, 0, 0, 0, 3824, 3772, 1, 0, 0, 0, 3824, 3784, 1, 0, 0, 0, 3824, 3790, 1, 0, 0, 0, 3824, 3803, 1, 0, 0, 0, 3825, 303, 1, 0, 0, 0, 3826, 3828, 5, 63, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 5, 92, 0, 0, 3830, 3843, 3, 770, 385, 0, 3831, 3833, 5, 259, 0, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3834, 1, 0, 0, 0, 3834, 3835, 5, 376, 0, 0, 3835, 3843, 3, 774, 387, 0, 3836, 3837, 7, 47, 0, 0, 3837, 3843, 3, 310, 155, 0, 3838, 3839, 5, 355, 0, 0, 3839, 3840, 5, 325, 0, 0, 3840, 3841, 7, 42, 0, 0, 3841, 3843, 3, 310, 155, 0, 3842, 3827, 1, 0, 0, 0, 3842, 3832, 1, 0, 0, 0, 3842, 3836, 1, 0, 0, 0, 3842, 3838, 1, 0, 0, 0, 3843, 305, 1, 0, 0, 0, 3844, 3845, 5, 198, 0, 0, 3845, 3861, 5, 357, 0, 0, 3846, 3847, 5, 131, 0, 0, 3847, 3861, 5, 446, 0, 0, 3848, 3861, 5, 204, 0, 0, 3849, 3861, 5, 452, 0, 0, 3850, 3861, 5, 331, 0, 0, 3851, 3861, 5, 318, 0, 0, 3852, 3861, 5, 451, 0, 0, 3853, 3854, 5, 63, 0, 0, 3854, 3855, 5, 174, 0, 0, 3855, 3861, 5, 381, 0, 0, 3856, 3858, 5, 295, 0, 0, 3857, 3856, 1, 0, 0, 0, 3857, 3858, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3861, 5, 247, 0, 0, 3860, 3844, 1, 0, 0, 0, 3860, 3846, 1, 0, 0, 0, 3860, 3848, 1, 0, 0, 0, 3860, 3849, 1, 0, 0, 0, 3860, 3850, 1, 0, 0, 0, 3860, 3851, 1, 0, 0, 0, 3860, 3852, 1, 0, 0, 0, 3860, 3853, 1, 0, 0, 0, 3860, 3857, 1, 0, 0, 0, 3861, 3862, 1, 0, 0, 0, 3862, 3869, 3, 816, 408, 0, 3863, 3864, 5, 323, 0, 0, 3864, 3869, 3, 786, 393, 0, 3865, 3866, 5, 175, 0, 0, 3866, 3869, 3, 784, 392, 0, 3867, 3869, 3, 170, 85, 0, 3868, 3860, 1, 0, 0, 0, 3868, 3863, 1, 0, 0, 0, 3868, 3865, 1, 0, 0, 0, 3868, 3867, 1, 0, 0, 0, 3869, 307, 1, 0, 0, 0, 3870, 3875, 3, 310, 155, 0, 3871, 3872, 5, 6, 0, 0, 3872, 3874, 3, 310, 155, 0, 3873, 3871, 1, 0, 0, 0, 3874, 3877, 1, 0, 0, 0, 3875, 3873, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 309, 1, 0, 0, 0, 3877, 3875, 1, 0, 0, 0, 3878, 3880, 3, 816, 408, 0, 3879, 3881, 3, 312, 156, 0, 3880, 3879, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 311, 1, 0, 0, 0, 3882, 3883, 5, 11, 0, 0, 3883, 3885, 3, 822, 411, 0, 3884, 3882, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3886, 3887, 1, 0, 0, 0, 3887, 313, 1, 0, 0, 0, 3888, 3890, 5, 358, 0, 0, 3889, 3891, 5, 92, 0, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3897, 3, 316, 158, 0, 3893, 3894, 5, 6, 0, 0, 3894, 3896, 3, 316, 158, 0, 3895, 3893, 1, 0, 0, 0, 3896, 3899, 1, 0, 0, 0, 3897, 3895, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3902, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3900, 3901, 7, 48, 0, 0, 3901, 3903, 5, 219, 0, 0, 3902, 3900, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3905, 1, 0, 0, 0, 3904, 3906, 3, 88, 44, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 315, 1, 0, 0, 0, 3907, 3909, 5, 81, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3912, 3, 770, 385, 0, 3911, 3913, 5, 9, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 317, 1, 0, 0, 0, 3914, 3915, 5, 159, 0, 0, 3915, 3974, 5, 80, 0, 0, 3916, 3975, 3, 304, 152, 0, 3917, 3975, 3, 306, 153, 0, 3918, 3919, 5, 44, 0, 0, 3919, 3921, 3, 816, 408, 0, 3920, 3922, 3, 312, 156, 0, 3921, 3920, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3924, 5, 11, 0, 0, 3924, 3925, 3, 796, 398, 0, 3925, 3975, 1, 0, 0, 0, 3926, 3927, 7, 33, 0, 0, 3927, 3975, 3, 646, 323, 0, 3928, 3929, 5, 136, 0, 0, 3929, 3975, 3, 388, 194, 0, 3930, 3931, 5, 211, 0, 0, 3931, 3975, 3, 376, 188, 0, 3932, 3933, 5, 278, 0, 0, 3933, 3975, 3, 410, 205, 0, 3934, 3935, 5, 45, 0, 0, 3935, 3936, 3, 816, 408, 0, 3936, 3942, 5, 80, 0, 0, 3937, 3943, 3, 770, 385, 0, 3938, 3940, 5, 189, 0, 0, 3939, 3938, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 3943, 3, 310, 155, 0, 3942, 3937, 1, 0, 0, 0, 3942, 3939, 1, 0, 0, 0, 3943, 3975, 1, 0, 0, 0, 3944, 3945, 7, 45, 0, 0, 3945, 3946, 3, 816, 408, 0, 3946, 3947, 5, 80, 0, 0, 3947, 3948, 3, 310, 155, 0, 3948, 3975, 1, 0, 0, 0, 3949, 3950, 5, 296, 0, 0, 3950, 3975, 3, 372, 186, 0, 3951, 3952, 5, 442, 0, 0, 3952, 3975, 3, 368, 184, 0, 3953, 3954, 5, 443, 0, 0, 3954, 3955, 5, 62, 0, 0, 3955, 3956, 3, 646, 323, 0, 3956, 3957, 5, 247, 0, 0, 3957, 3958, 3, 816, 408, 0, 3958, 3975, 1, 0, 0, 0, 3959, 3960, 5, 278, 0, 0, 3960, 3961, 7, 32, 0, 0, 3961, 3962, 3, 310, 155, 0, 3962, 3963, 3, 164, 82, 0, 3963, 3975, 1, 0, 0, 0, 3964, 3965, 5, 248, 0, 0, 3965, 3966, 5, 274, 0, 0, 3966, 3975, 3, 196, 98, 0, 3967, 3968, 5, 41, 0, 0, 3968, 3969, 5, 2, 0, 0, 3969, 3970, 3, 646, 323, 0, 3970, 3971, 5, 36, 0, 0, 3971, 3972, 3, 646, 323, 0, 3972, 3973, 5, 3, 0, 0, 3973, 3975, 1, 0, 0, 0, 3974, 3916, 1, 0, 0, 0, 3974, 3917, 1, 0, 0, 0, 3974, 3918, 1, 0, 0, 0, 3974, 3926, 1, 0, 0, 0, 3974, 3928, 1, 0, 0, 0, 3974, 3930, 1, 0, 0, 0, 3974, 3932, 1, 0, 0, 0, 3974, 3934, 1, 0, 0, 0, 3974, 3944, 1, 0, 0, 0, 3974, 3949, 1, 0, 0, 0, 3974, 3951, 1, 0, 0, 0, 3974, 3953, 1, 0, 0, 0, 3974, 3959, 1, 0, 0, 0, 3974, 3964, 1, 0, 0, 0, 3974, 3967, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3979, 5, 116, 0, 0, 3977, 3980, 3, 806, 403, 0, 3978, 3980, 5, 78, 0, 0, 3979, 3977, 1, 0, 0, 0, 3979, 3978, 1, 0, 0, 0, 3980, 319, 1, 0, 0, 0, 3981, 3982, 5, 327, 0, 0, 3982, 3985, 5, 246, 0, 0, 3983, 3984, 5, 62, 0, 0, 3984, 3986, 3, 58, 29, 0, 3985, 3983, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 4005, 5, 80, 0, 0, 3988, 3989, 7, 33, 0, 0, 3989, 4006, 3, 646, 323, 0, 3990, 3991, 5, 136, 0, 0, 3991, 4006, 3, 388, 194, 0, 3992, 3993, 5, 44, 0, 0, 3993, 4006, 3, 796, 398, 0, 3994, 3995, 5, 211, 0, 0, 3995, 4006, 3, 376, 188, 0, 3996, 3997, 5, 248, 0, 0, 3997, 3998, 5, 274, 0, 0, 3998, 4006, 3, 196, 98, 0, 3999, 4000, 5, 296, 0, 0, 4000, 4006, 3, 372, 186, 0, 4001, 4002, 5, 442, 0, 0, 4002, 4006, 3, 368, 184, 0, 4003, 4006, 3, 304, 152, 0, 4004, 4006, 3, 306, 153, 0, 4005, 3988, 1, 0, 0, 0, 4005, 3990, 1, 0, 0, 0, 4005, 3992, 1, 0, 0, 0, 4005, 3994, 1, 0, 0, 0, 4005, 3996, 1, 0, 0, 0, 4005, 3999, 1, 0, 0, 0, 4005, 4001, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4004, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4010, 5, 116, 0, 0, 4008, 4011, 3, 806, 403, 0, 4009, 4011, 5, 78, 0, 0, 4010, 4008, 1, 0, 0, 0, 4010, 4009, 1, 0, 0, 0, 4011, 321, 1, 0, 0, 0, 4012, 4013, 7, 49, 0, 0, 4013, 4014, 3, 324, 162, 0, 4014, 323, 1, 0, 0, 0, 4015, 4017, 7, 50, 0, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4019, 1, 0, 0, 0, 4018, 4020, 3, 326, 163, 0, 4019, 4018, 1, 0, 0, 0, 4019, 4020, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4059, 3, 816, 408, 0, 4022, 4024, 7, 51, 0, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 3, 810, 405, 0, 4026, 4028, 3, 326, 163, 0, 4027, 4026, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4030, 3, 816, 408, 0, 4030, 4059, 1, 0, 0, 0, 4031, 4033, 5, 210, 0, 0, 4032, 4034, 3, 810, 405, 0, 4033, 4032, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4036, 1, 0, 0, 0, 4035, 4037, 3, 326, 163, 0, 4036, 4035, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4059, 3, 816, 408, 0, 4039, 4041, 5, 210, 0, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 5, 30, 0, 0, 4043, 4045, 3, 326, 163, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4059, 3, 816, 408, 0, 4047, 4052, 5, 144, 0, 0, 4048, 4050, 5, 30, 0, 0, 4049, 4048, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4053, 1, 0, 0, 0, 4051, 4053, 3, 810, 405, 0, 4052, 4049, 1, 0, 0, 0, 4052, 4051, 1, 0, 0, 0, 4053, 4055, 1, 0, 0, 0, 4054, 4056, 3, 326, 163, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 3, 816, 408, 0, 4058, 4016, 1, 0, 0, 0, 4058, 4023, 1, 0, 0, 0, 4058, 4031, 1, 0, 0, 0, 4058, 4040, 1, 0, 0, 0, 4058, 4047, 1, 0, 0, 0, 4059, 325, 1, 0, 0, 0, 4060, 4061, 7, 52, 0, 0, 4061, 327, 1, 0, 0, 0, 4062, 4063, 5, 65, 0, 0, 4063, 4064, 3, 332, 166, 0, 4064, 4065, 5, 80, 0, 0, 4065, 4066, 3, 338, 169, 0, 4066, 4067, 5, 94, 0, 0, 4067, 4071, 3, 340, 170, 0, 4068, 4069, 5, 105, 0, 0, 4069, 4070, 5, 65, 0, 0, 4070, 4072, 5, 279, 0, 0, 4071, 4068, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 329, 1, 0, 0, 0, 4073, 4077, 5, 317, 0, 0, 4074, 4075, 5, 65, 0, 0, 4075, 4076, 5, 279, 0, 0, 4076, 4078, 5, 62, 0, 0, 4077, 4074, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4080, 3, 332, 166, 0, 4080, 4081, 5, 80, 0, 0, 4081, 4082, 3, 338, 169, 0, 4082, 4083, 5, 64, 0, 0, 4083, 4085, 3, 340, 170, 0, 4084, 4086, 3, 88, 44, 0, 4085, 4084, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 331, 1, 0, 0, 0, 4087, 4092, 3, 336, 168, 0, 4088, 4089, 5, 6, 0, 0, 4089, 4091, 3, 336, 168, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4094, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4111, 1, 0, 0, 0, 4094, 4092, 1, 0, 0, 0, 4095, 4097, 5, 30, 0, 0, 4096, 4098, 5, 294, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4100, 1, 0, 0, 0, 4099, 4101, 3, 138, 69, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4111, 1, 0, 0, 0, 4102, 4107, 3, 334, 167, 0, 4103, 4104, 5, 6, 0, 0, 4104, 4106, 3, 334, 167, 0, 4105, 4103, 1, 0, 0, 0, 4106, 4109, 1, 0, 0, 0, 4107, 4105, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 4111, 1, 0, 0, 0, 4109, 4107, 1, 0, 0, 0, 4110, 4087, 1, 0, 0, 0, 4110, 4095, 1, 0, 0, 0, 4110, 4102, 1, 0, 0, 0, 4111, 333, 1, 0, 0, 0, 4112, 4113, 7, 53, 0, 0, 4113, 335, 1, 0, 0, 0, 4114, 4119, 5, 88, 0, 0, 4115, 4119, 5, 86, 0, 0, 4116, 4119, 5, 46, 0, 0, 4117, 4119, 3, 816, 408, 0, 4118, 4114, 1, 0, 0, 0, 4118, 4115, 1, 0, 0, 0, 4118, 4116, 1, 0, 0, 0, 4118, 4117, 1, 0, 0, 0, 4119, 4121, 1, 0, 0, 0, 4120, 4122, 3, 138, 69, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 337, 1, 0, 0, 0, 4123, 4124, 5, 92, 0, 0, 4124, 4169, 3, 758, 379, 0, 4125, 4127, 5, 328, 0, 0, 4126, 4125, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4169, 3, 756, 378, 0, 4129, 4133, 5, 63, 0, 0, 4130, 4131, 5, 174, 0, 0, 4131, 4134, 5, 381, 0, 0, 4132, 4134, 5, 331, 0, 0, 4133, 4130, 1, 0, 0, 0, 4133, 4132, 1, 0, 0, 0, 4134, 4137, 1, 0, 0, 0, 4135, 4137, 5, 247, 0, 0, 4136, 4129, 1, 0, 0, 0, 4136, 4135, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4169, 3, 780, 390, 0, 4139, 4140, 5, 211, 0, 0, 4140, 4169, 3, 374, 187, 0, 4141, 4142, 5, 296, 0, 0, 4142, 4169, 3, 370, 185, 0, 4143, 4144, 5, 442, 0, 0, 4144, 4169, 3, 366, 183, 0, 4145, 4146, 5, 175, 0, 0, 4146, 4169, 3, 762, 381, 0, 4147, 4148, 7, 33, 0, 0, 4148, 4169, 3, 308, 154, 0, 4149, 4150, 5, 248, 0, 0, 4150, 4151, 5, 274, 0, 0, 4151, 4156, 3, 196, 98, 0, 4152, 4153, 5, 6, 0, 0, 4153, 4155, 3, 196, 98, 0, 4154, 4152, 1, 0, 0, 0, 4155, 4158, 1, 0, 0, 0, 4156, 4154, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4169, 1, 0, 0, 0, 4158, 4156, 1, 0, 0, 0, 4159, 4160, 5, 323, 0, 0, 4160, 4169, 3, 760, 380, 0, 4161, 4162, 5, 351, 0, 0, 4162, 4169, 3, 778, 389, 0, 4163, 4164, 5, 30, 0, 0, 4164, 4165, 7, 54, 0, 0, 4165, 4166, 5, 68, 0, 0, 4166, 4167, 5, 323, 0, 0, 4167, 4169, 3, 760, 380, 0, 4168, 4123, 1, 0, 0, 0, 4168, 4126, 1, 0, 0, 0, 4168, 4136, 1, 0, 0, 0, 4168, 4139, 1, 0, 0, 0, 4168, 4141, 1, 0, 0, 0, 4168, 4143, 1, 0, 0, 0, 4168, 4145, 1, 0, 0, 0, 4168, 4147, 1, 0, 0, 0, 4168, 4149, 1, 0, 0, 0, 4168, 4159, 1, 0, 0, 0, 4168, 4161, 1, 0, 0, 0, 4168, 4163, 1, 0, 0, 0, 4169, 339, 1, 0, 0, 0, 4170, 4172, 5, 66, 0, 0, 4171, 4170, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4174, 3, 812, 406, 0, 4174, 4182, 1, 0, 0, 0, 4175, 4177, 5, 6, 0, 0, 4176, 4178, 5, 66, 0, 0, 4177, 4176, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 4181, 3, 812, 406, 0, 4180, 4175, 1, 0, 0, 0, 4181, 4184, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 341, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4185, 4186, 5, 65, 0, 0, 4186, 4191, 3, 336, 168, 0, 4187, 4188, 5, 6, 0, 0, 4188, 4190, 3, 336, 168, 0, 4189, 4187, 1, 0, 0, 0, 4190, 4193, 1, 0, 0, 0, 4191, 4189, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 4194, 1, 0, 0, 0, 4193, 4191, 1, 0, 0, 0, 4194, 4195, 5, 94, 0, 0, 4195, 4199, 3, 814, 407, 0, 4196, 4197, 5, 105, 0, 0, 4197, 4198, 5, 134, 0, 0, 4198, 4200, 5, 279, 0, 0, 4199, 4196, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4204, 1, 0, 0, 0, 4201, 4202, 5, 214, 0, 0, 4202, 4203, 5, 147, 0, 0, 4203, 4205, 3, 812, 406, 0, 4204, 4201, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 343, 1, 0, 0, 0, 4206, 4210, 5, 317, 0, 0, 4207, 4208, 5, 134, 0, 0, 4208, 4209, 5, 279, 0, 0, 4209, 4211, 5, 62, 0, 0, 4210, 4207, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4217, 3, 336, 168, 0, 4213, 4214, 5, 6, 0, 0, 4214, 4216, 3, 336, 168, 0, 4215, 4213, 1, 0, 0, 0, 4216, 4219, 1, 0, 0, 0, 4217, 4215, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4220, 1, 0, 0, 0, 4219, 4217, 1, 0, 0, 0, 4220, 4221, 5, 64, 0, 0, 4221, 4225, 3, 814, 407, 0, 4222, 4223, 5, 214, 0, 0, 4223, 4224, 5, 147, 0, 0, 4224, 4226, 3, 812, 406, 0, 4225, 4222, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4229, 3, 88, 44, 0, 4228, 4227, 1, 0, 0, 0, 4228, 4229, 1, 0, 0, 0, 4229, 345, 1, 0, 0, 0, 4230, 4231, 5, 138, 0, 0, 4231, 4232, 5, 53, 0, 0, 4232, 4241, 5, 294, 0, 0, 4233, 4234, 5, 68, 0, 0, 4234, 4235, 5, 323, 0, 0, 4235, 4240, 3, 760, 380, 0, 4236, 4237, 5, 62, 0, 0, 4237, 4238, 7, 2, 0, 0, 4238, 4240, 3, 814, 407, 0, 4239, 4233, 1, 0, 0, 0, 4239, 4236, 1, 0, 0, 0, 4240, 4243, 1, 0, 0, 0, 4241, 4239, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 4244, 1, 0, 0, 0, 4243, 4241, 1, 0, 0, 0, 4244, 4245, 3, 348, 174, 0, 4245, 347, 1, 0, 0, 0, 4246, 4247, 5, 65, 0, 0, 4247, 4248, 3, 332, 166, 0, 4248, 4249, 5, 80, 0, 0, 4249, 4250, 3, 350, 175, 0, 4250, 4251, 5, 94, 0, 0, 4251, 4255, 3, 340, 170, 0, 4252, 4253, 5, 105, 0, 0, 4253, 4254, 5, 65, 0, 0, 4254, 4256, 5, 279, 0, 0, 4255, 4252, 1, 0, 0, 0, 4255, 4256, 1, 0, 0, 0, 4256, 4272, 1, 0, 0, 0, 4257, 4261, 5, 317, 0, 0, 4258, 4259, 5, 65, 0, 0, 4259, 4260, 5, 279, 0, 0, 4260, 4262, 5, 62, 0, 0, 4261, 4258, 1, 0, 0, 0, 4261, 4262, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4264, 3, 332, 166, 0, 4264, 4265, 5, 80, 0, 0, 4265, 4266, 3, 350, 175, 0, 4266, 4267, 5, 64, 0, 0, 4267, 4269, 3, 340, 170, 0, 4268, 4270, 3, 88, 44, 0, 4269, 4268, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4272, 1, 0, 0, 0, 4271, 4246, 1, 0, 0, 0, 4271, 4257, 1, 0, 0, 0, 4272, 349, 1, 0, 0, 0, 4273, 4274, 7, 55, 0, 0, 4274, 351, 1, 0, 0, 0, 4275, 4277, 5, 46, 0, 0, 4276, 4278, 5, 98, 0, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4281, 5, 226, 0, 0, 4280, 4282, 5, 109, 0, 0, 4281, 4280, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 1, 0, 0, 0, 4283, 4285, 3, 288, 144, 0, 4284, 4283, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4287, 1, 0, 0, 0, 4286, 4288, 3, 816, 408, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4290, 5, 80, 0, 0, 4290, 4292, 3, 618, 309, 0, 4291, 4293, 3, 164, 82, 0, 4292, 4291, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4294, 1, 0, 0, 0, 4294, 4297, 3, 354, 177, 0, 4295, 4296, 5, 441, 0, 0, 4296, 4298, 3, 354, 177, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4304, 1, 0, 0, 0, 4299, 4301, 5, 273, 0, 0, 4300, 4302, 5, 77, 0, 0, 4301, 4300, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4305, 5, 56, 0, 0, 4304, 4299, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 4307, 1, 0, 0, 0, 4306, 4308, 3, 94, 47, 0, 4307, 4306, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4310, 1, 0, 0, 0, 4309, 4311, 3, 170, 85, 0, 4310, 4309, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4313, 1, 0, 0, 0, 4312, 4314, 3, 632, 316, 0, 4313, 4312, 1, 0, 0, 0, 4313, 4314, 1, 0, 0, 0, 4314, 353, 1, 0, 0, 0, 4315, 4316, 5, 2, 0, 0, 4316, 4321, 3, 356, 178, 0, 4317, 4318, 5, 6, 0, 0, 4318, 4320, 3, 356, 178, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4323, 1, 0, 0, 0, 4321, 4319, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4324, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 4325, 5, 3, 0, 0, 4325, 355, 1, 0, 0, 0, 4326, 4333, 3, 796, 398, 0, 4327, 4333, 3, 682, 341, 0, 4328, 4329, 5, 2, 0, 0, 4329, 4330, 3, 668, 334, 0, 4330, 4331, 5, 3, 0, 0, 4331, 4333, 1, 0, 0, 0, 4332, 4326, 1, 0, 0, 0, 4332, 4327, 1, 0, 0, 0, 4332, 4328, 1, 0, 0, 0, 4333, 4335, 1, 0, 0, 0, 4334, 4336, 3, 90, 45, 0, 4335, 4334, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4343, 1, 0, 0, 0, 4337, 4339, 3, 310, 155, 0, 4338, 4337, 1, 0, 0, 0, 4338, 4339, 1, 0, 0, 0, 4339, 4344, 1, 0, 0, 0, 4340, 4341, 3, 310, 155, 0, 4341, 4342, 3, 92, 46, 0, 4342, 4344, 1, 0, 0, 0, 4343, 4338, 1, 0, 0, 0, 4343, 4340, 1, 0, 0, 0, 4344, 4346, 1, 0, 0, 0, 4345, 4347, 7, 56, 0, 0, 4346, 4345, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4350, 1, 0, 0, 0, 4348, 4349, 5, 273, 0, 0, 4349, 4351, 7, 57, 0, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 357, 1, 0, 0, 0, 4352, 4354, 5, 46, 0, 0, 4353, 4355, 3, 360, 180, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4360, 1, 0, 0, 0, 4356, 4357, 5, 211, 0, 0, 4357, 4361, 3, 802, 401, 0, 4358, 4359, 5, 296, 0, 0, 4359, 4361, 3, 794, 397, 0, 4360, 4356, 1, 0, 0, 0, 4360, 4358, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4371, 5, 2, 0, 0, 4363, 4368, 3, 384, 192, 0, 4364, 4365, 5, 6, 0, 0, 4365, 4367, 3, 384, 192, 0, 4366, 4364, 1, 0, 0, 0, 4367, 4370, 1, 0, 0, 0, 4368, 4366, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4372, 1, 0, 0, 0, 4370, 4368, 1, 0, 0, 0, 4371, 4363, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 4374, 5, 3, 0, 0, 4374, 4391, 1, 0, 0, 0, 4375, 4389, 5, 316, 0, 0, 4376, 4390, 3, 382, 191, 0, 4377, 4378, 5, 92, 0, 0, 4378, 4379, 5, 2, 0, 0, 4379, 4384, 3, 396, 198, 0, 4380, 4381, 5, 6, 0, 0, 4381, 4383, 3, 396, 198, 0, 4382, 4380, 1, 0, 0, 0, 4383, 4386, 1, 0, 0, 0, 4384, 4382, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 4387, 1, 0, 0, 0, 4386, 4384, 1, 0, 0, 0, 4387, 4388, 5, 3, 0, 0, 4388, 4390, 1, 0, 0, 0, 4389, 4376, 1, 0, 0, 0, 4389, 4377, 1, 0, 0, 0, 4390, 4392, 1, 0, 0, 0, 4391, 4375, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4394, 1, 0, 0, 0, 4393, 4395, 3, 392, 196, 0, 4394, 4393, 1, 0, 0, 0, 4395, 4396, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4396, 4397, 1, 0, 0, 0, 4397, 4403, 1, 0, 0, 0, 4398, 4399, 5, 105, 0, 0, 4399, 4400, 5, 2, 0, 0, 4400, 4401, 3, 780, 390, 0, 4401, 4402, 5, 3, 0, 0, 4402, 4404, 1, 0, 0, 0, 4403, 4398, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 359, 1, 0, 0, 0, 4405, 4406, 5, 82, 0, 0, 4406, 4407, 5, 311, 0, 0, 4407, 361, 1, 0, 0, 0, 4408, 4410, 5, 2, 0, 0, 4409, 4411, 3, 364, 182, 0, 4410, 4409, 1, 0, 0, 0, 4410, 4411, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 4413, 5, 3, 0, 0, 4413, 363, 1, 0, 0, 0, 4414, 4419, 3, 378, 189, 0, 4415, 4416, 5, 6, 0, 0, 4416, 4418, 3, 378, 189, 0, 4417, 4415, 1, 0, 0, 0, 4418, 4421, 1, 0, 0, 0, 4419, 4417, 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 365, 1, 0, 0, 0, 4421, 4419, 1, 0, 0, 0, 4422, 4427, 3, 368, 184, 0, 4423, 4424, 5, 6, 0, 0, 4424, 4426, 3, 368, 184, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4429, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 367, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4431, 3, 790, 395, 0, 4431, 4432, 3, 362, 181, 0, 4432, 4436, 1, 0, 0, 0, 4433, 4436, 3, 830, 415, 0, 4434, 4436, 3, 776, 388, 0, 4435, 4430, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4435, 4434, 1, 0, 0, 0, 4436, 369, 1, 0, 0, 0, 4437, 4442, 3, 372, 186, 0, 4438, 4439, 5, 6, 0, 0, 4439, 4441, 3, 372, 186, 0, 4440, 4438, 1, 0, 0, 0, 4441, 4444, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 371, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4445, 4446, 3, 792, 396, 0, 4446, 4447, 3, 362, 181, 0, 4447, 4451, 1, 0, 0, 0, 4448, 4451, 3, 830, 415, 0, 4449, 4451, 3, 776, 388, 0, 4450, 4445, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4449, 1, 0, 0, 0, 4451, 373, 1, 0, 0, 0, 4452, 4457, 3, 376, 188, 0, 4453, 4454, 5, 6, 0, 0, 4454, 4456, 3, 376, 188, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4459, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 375, 1, 0, 0, 0, 4459, 4457, 1, 0, 0, 0, 4460, 4461, 3, 804, 402, 0, 4461, 4462, 3, 362, 181, 0, 4462, 4466, 1, 0, 0, 0, 4463, 4466, 3, 830, 415, 0, 4464, 4466, 3, 776, 388, 0, 4465, 4460, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4465, 4464, 1, 0, 0, 0, 4466, 377, 1, 0, 0, 0, 4467, 4469, 3, 380, 190, 0, 4468, 4470, 3, 818, 409, 0, 4469, 4468, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4476, 1, 0, 0, 0, 4471, 4473, 3, 818, 409, 0, 4472, 4474, 3, 380, 190, 0, 4473, 4472, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 4476, 1, 0, 0, 0, 4475, 4467, 1, 0, 0, 0, 4475, 4471, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 4477, 1, 0, 0, 0, 4477, 4478, 3, 382, 191, 0, 4478, 379, 1, 0, 0, 0, 4479, 4481, 5, 68, 0, 0, 4480, 4482, 5, 453, 0, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4487, 1, 0, 0, 0, 4483, 4487, 5, 453, 0, 0, 4484, 4487, 5, 400, 0, 0, 4485, 4487, 5, 101, 0, 0, 4486, 4479, 1, 0, 0, 0, 4486, 4483, 1, 0, 0, 0, 4486, 4484, 1, 0, 0, 0, 4486, 4485, 1, 0, 0, 0, 4487, 381, 1, 0, 0, 0, 4488, 4498, 3, 646, 323, 0, 4489, 4491, 5, 415, 0, 0, 4490, 4489, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4493, 3, 818, 409, 0, 4493, 4494, 3, 312, 156, 0, 4494, 4495, 5, 27, 0, 0, 4495, 4496, 5, 360, 0, 0, 4496, 4498, 1, 0, 0, 0, 4497, 4488, 1, 0, 0, 0, 4497, 4490, 1, 0, 0, 0, 4498, 383, 1, 0, 0, 0, 4499, 4502, 3, 378, 189, 0, 4500, 4501, 7, 58, 0, 0, 4501, 4503, 3, 668, 334, 0, 4502, 4500, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 385, 1, 0, 0, 0, 4504, 4514, 5, 2, 0, 0, 4505, 4515, 5, 9, 0, 0, 4506, 4508, 3, 364, 182, 0, 4507, 4506, 1, 0, 0, 0, 4507, 4508, 1, 0, 0, 0, 4508, 4512, 1, 0, 0, 0, 4509, 4510, 5, 83, 0, 0, 4510, 4511, 5, 147, 0, 0, 4511, 4513, 3, 364, 182, 0, 4512, 4509, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4515, 1, 0, 0, 0, 4514, 4505, 1, 0, 0, 0, 4514, 4507, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4517, 5, 3, 0, 0, 4517, 387, 1, 0, 0, 0, 4518, 4519, 3, 804, 402, 0, 4519, 4520, 3, 386, 193, 0, 4520, 389, 1, 0, 0, 0, 4521, 4522, 5, 316, 0, 0, 4522, 4525, 5, 78, 0, 0, 4523, 4525, 5, 149, 0, 0, 4524, 4521, 1, 0, 0, 0, 4524, 4523, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4527, 5, 80, 0, 0, 4527, 4528, 5, 78, 0, 0, 4528, 4551, 5, 458, 0, 0, 4529, 4551, 5, 346, 0, 0, 4530, 4551, 5, 222, 0, 0, 4531, 4551, 5, 338, 0, 0, 4532, 4551, 5, 377, 0, 0, 4533, 4535, 5, 205, 0, 0, 4534, 4533, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 5, 327, 0, 0, 4537, 4551, 7, 59, 0, 0, 4538, 4551, 5, 250, 0, 0, 4539, 4540, 5, 77, 0, 0, 4540, 4551, 5, 250, 0, 0, 4541, 4542, 7, 60, 0, 0, 4542, 4551, 3, 196, 98, 0, 4543, 4544, 5, 459, 0, 0, 4544, 4551, 3, 310, 155, 0, 4545, 4546, 5, 333, 0, 0, 4546, 4551, 3, 42, 21, 0, 4547, 4551, 3, 60, 30, 0, 4548, 4549, 5, 460, 0, 0, 4549, 4551, 3, 816, 408, 0, 4550, 4524, 1, 0, 0, 0, 4550, 4529, 1, 0, 0, 0, 4550, 4530, 1, 0, 0, 0, 4550, 4531, 1, 0, 0, 0, 4550, 4532, 1, 0, 0, 0, 4550, 4534, 1, 0, 0, 0, 4550, 4538, 1, 0, 0, 0, 4550, 4539, 1, 0, 0, 0, 4550, 4541, 1, 0, 0, 0, 4550, 4543, 1, 0, 0, 0, 4550, 4545, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4550, 4548, 1, 0, 0, 0, 4551, 391, 1, 0, 0, 0, 4552, 4553, 5, 36, 0, 0, 4553, 4554, 3, 806, 403, 0, 4554, 4555, 3, 456, 228, 0, 4555, 4588, 1, 0, 0, 0, 4556, 4557, 5, 247, 0, 0, 4557, 4588, 3, 58, 29, 0, 4558, 4559, 5, 443, 0, 0, 4559, 4560, 5, 62, 0, 0, 4560, 4561, 5, 360, 0, 0, 4561, 4568, 3, 646, 323, 0, 4562, 4563, 5, 6, 0, 0, 4563, 4564, 5, 62, 0, 0, 4564, 4565, 5, 360, 0, 0, 4565, 4567, 3, 646, 323, 0, 4566, 4562, 1, 0, 0, 0, 4567, 4570, 1, 0, 0, 0, 4568, 4566, 1, 0, 0, 0, 4568, 4569, 1, 0, 0, 0, 4569, 4588, 1, 0, 0, 0, 4570, 4568, 1, 0, 0, 0, 4571, 4588, 5, 104, 0, 0, 4572, 4573, 5, 333, 0, 0, 4573, 4580, 3, 816, 408, 0, 4574, 4575, 5, 94, 0, 0, 4575, 4581, 3, 816, 408, 0, 4576, 4577, 5, 10, 0, 0, 4577, 4581, 3, 816, 408, 0, 4578, 4579, 5, 64, 0, 0, 4579, 4581, 5, 434, 0, 0, 4580, 4574, 1, 0, 0, 0, 4580, 4576, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4588, 1, 0, 0, 0, 4582, 4583, 5, 36, 0, 0, 4583, 4588, 3, 816, 408, 0, 4584, 4588, 3, 4, 2, 0, 4585, 4588, 3, 390, 195, 0, 4586, 4588, 3, 816, 408, 0, 4587, 4552, 1, 0, 0, 0, 4587, 4556, 1, 0, 0, 0, 4587, 4558, 1, 0, 0, 0, 4587, 4571, 1, 0, 0, 0, 4587, 4572, 1, 0, 0, 0, 4587, 4582, 1, 0, 0, 0, 4587, 4584, 1, 0, 0, 0, 4587, 4585, 1, 0, 0, 0, 4587, 4586, 1, 0, 0, 0, 4588, 393, 1, 0, 0, 0, 4589, 4590, 5, 105, 0, 0, 4590, 4591, 3, 278, 139, 0, 4591, 395, 1, 0, 0, 0, 4592, 4593, 3, 796, 398, 0, 4593, 4594, 3, 382, 191, 0, 4594, 397, 1, 0, 0, 0, 4595, 4602, 5, 138, 0, 0, 4596, 4597, 5, 211, 0, 0, 4597, 4603, 3, 376, 188, 0, 4598, 4599, 5, 296, 0, 0, 4599, 4603, 3, 372, 186, 0, 4600, 4601, 5, 442, 0, 0, 4601, 4603, 3, 368, 184, 0, 4602, 4596, 1, 0, 0, 0, 4602, 4598, 1, 0, 0, 0, 4602, 4600, 1, 0, 0, 0, 4603, 4605, 1, 0, 0, 0, 4604, 4606, 3, 390, 195, 0, 4605, 4604, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4610, 1, 0, 0, 0, 4609, 4611, 5, 315, 0, 0, 4610, 4609, 1, 0, 0, 0, 4610, 4611, 1, 0, 0, 0, 4611, 399, 1, 0, 0, 0, 4612, 4628, 5, 191, 0, 0, 4613, 4615, 5, 211, 0, 0, 4614, 4616, 3, 416, 208, 0, 4615, 4614, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4629, 3, 374, 187, 0, 4618, 4620, 5, 296, 0, 0, 4619, 4621, 3, 416, 208, 0, 4620, 4619, 1, 0, 0, 0, 4620, 4621, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4629, 3, 370, 185, 0, 4623, 4625, 5, 442, 0, 0, 4624, 4626, 3, 416, 208, 0, 4625, 4624, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4629, 3, 366, 183, 0, 4628, 4613, 1, 0, 0, 0, 4628, 4618, 1, 0, 0, 0, 4628, 4623, 1, 0, 0, 0, 4629, 4631, 1, 0, 0, 0, 4630, 4632, 3, 88, 44, 0, 4631, 4630, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 401, 1, 0, 0, 0, 4633, 4634, 5, 191, 0, 0, 4634, 4636, 5, 136, 0, 0, 4635, 4637, 3, 416, 208, 0, 4636, 4635, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4643, 3, 388, 194, 0, 4639, 4640, 5, 6, 0, 0, 4640, 4642, 3, 388, 194, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4647, 1, 0, 0, 0, 4645, 4643, 1, 0, 0, 0, 4646, 4648, 3, 88, 44, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 403, 1, 0, 0, 0, 4649, 4650, 5, 191, 0, 0, 4650, 4652, 5, 278, 0, 0, 4651, 4653, 3, 416, 208, 0, 4652, 4651, 1, 0, 0, 0, 4652, 4653, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4659, 3, 410, 205, 0, 4655, 4656, 5, 6, 0, 0, 4656, 4658, 3, 410, 205, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4661, 1, 0, 0, 0, 4659, 4657, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 4663, 1, 0, 0, 0, 4661, 4659, 1, 0, 0, 0, 4662, 4664, 3, 88, 44, 0, 4663, 4662, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 405, 1, 0, 0, 0, 4665, 4678, 5, 2, 0, 0, 4666, 4669, 3, 646, 323, 0, 4667, 4668, 5, 6, 0, 0, 4668, 4670, 3, 646, 323, 0, 4669, 4667, 1, 0, 0, 0, 4669, 4670, 1, 0, 0, 0, 4670, 4679, 1, 0, 0, 0, 4671, 4672, 5, 407, 0, 0, 4672, 4673, 5, 6, 0, 0, 4673, 4679, 3, 646, 323, 0, 4674, 4675, 3, 646, 323, 0, 4675, 4676, 5, 6, 0, 0, 4676, 4677, 5, 407, 0, 0, 4677, 4679, 1, 0, 0, 0, 4678, 4666, 1, 0, 0, 0, 4678, 4671, 1, 0, 0, 0, 4678, 4674, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 4681, 5, 3, 0, 0, 4681, 407, 1, 0, 0, 0, 4682, 4683, 3, 816, 408, 0, 4683, 4684, 5, 11, 0, 0, 4684, 4686, 1, 0, 0, 0, 4685, 4682, 1, 0, 0, 0, 4686, 4689, 1, 0, 0, 0, 4687, 4685, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4690, 1, 0, 0, 0, 4689, 4687, 1, 0, 0, 0, 4690, 4691, 3, 716, 358, 0, 4691, 409, 1, 0, 0, 0, 4692, 4693, 3, 408, 204, 0, 4693, 4694, 3, 406, 203, 0, 4694, 411, 1, 0, 0, 0, 4695, 4699, 5, 57, 0, 0, 4696, 4700, 3, 806, 403, 0, 4697, 4698, 5, 247, 0, 0, 4698, 4700, 3, 58, 29, 0, 4699, 4696, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4699, 1, 0, 0, 0, 4701, 4702, 1, 0, 0, 0, 4702, 413, 1, 0, 0, 0, 4703, 4704, 5, 46, 0, 0, 4704, 4705, 5, 41, 0, 0, 4705, 4706, 5, 2, 0, 0, 4706, 4707, 3, 646, 323, 0, 4707, 4708, 5, 36, 0, 0, 4708, 4709, 3, 646, 323, 0, 4709, 4726, 5, 3, 0, 0, 4710, 4711, 5, 379, 0, 0, 4711, 4714, 5, 211, 0, 0, 4712, 4713, 5, 36, 0, 0, 4713, 4715, 7, 61, 0, 0, 4714, 4712, 1, 0, 0, 0, 4714, 4715, 1, 0, 0, 0, 4715, 4727, 1, 0, 0, 0, 4716, 4720, 5, 105, 0, 0, 4717, 4718, 5, 211, 0, 0, 4718, 4721, 3, 376, 188, 0, 4719, 4721, 5, 400, 0, 0, 4720, 4717, 1, 0, 0, 0, 4720, 4719, 1, 0, 0, 0, 4721, 4724, 1, 0, 0, 0, 4722, 4723, 5, 36, 0, 0, 4723, 4725, 7, 61, 0, 0, 4724, 4722, 1, 0, 0, 0, 4724, 4725, 1, 0, 0, 0, 4725, 4727, 1, 0, 0, 0, 4726, 4710, 1, 0, 0, 0, 4726, 4716, 1, 0, 0, 0, 4727, 415, 1, 0, 0, 0, 4728, 4729, 5, 220, 0, 0, 4729, 4730, 5, 396, 0, 0, 4730, 417, 1, 0, 0, 0, 4731, 4733, 5, 46, 0, 0, 4732, 4734, 3, 360, 180, 0, 4733, 4732, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4735, 1, 0, 0, 0, 4735, 4736, 5, 443, 0, 0, 4736, 4737, 5, 62, 0, 0, 4737, 4738, 3, 646, 323, 0, 4738, 4739, 5, 247, 0, 0, 4739, 4740, 3, 816, 408, 0, 4740, 4755, 5, 2, 0, 0, 4741, 4742, 5, 64, 0, 0, 4742, 4746, 3, 420, 210, 0, 4743, 4744, 5, 6, 0, 0, 4744, 4745, 5, 94, 0, 0, 4745, 4747, 3, 420, 210, 0, 4746, 4743, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4756, 1, 0, 0, 0, 4748, 4749, 5, 94, 0, 0, 4749, 4753, 3, 420, 210, 0, 4750, 4751, 5, 6, 0, 0, 4751, 4752, 5, 64, 0, 0, 4752, 4754, 3, 420, 210, 0, 4753, 4750, 1, 0, 0, 0, 4753, 4754, 1, 0, 0, 0, 4754, 4756, 1, 0, 0, 0, 4755, 4741, 1, 0, 0, 0, 4755, 4748, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4758, 5, 3, 0, 0, 4758, 419, 1, 0, 0, 0, 4759, 4760, 5, 461, 0, 0, 4760, 4761, 5, 105, 0, 0, 4761, 4762, 5, 211, 0, 0, 4762, 4763, 3, 376, 188, 0, 4763, 421, 1, 0, 0, 0, 4764, 4775, 5, 306, 0, 0, 4765, 4766, 5, 2, 0, 0, 4766, 4771, 5, 128, 0, 0, 4767, 4768, 5, 6, 0, 0, 4768, 4770, 5, 128, 0, 0, 4769, 4767, 1, 0, 0, 0, 4770, 4773, 1, 0, 0, 0, 4771, 4769, 1, 0, 0, 0, 4771, 4772, 1, 0, 0, 0, 4772, 4774, 1, 0, 0, 0, 4773, 4771, 1, 0, 0, 0, 4774, 4776, 5, 3, 0, 0, 4775, 4765, 1, 0, 0, 0, 4775, 4776, 1, 0, 0, 0, 4776, 4802, 1, 0, 0, 0, 4777, 4779, 5, 226, 0, 0, 4778, 4780, 5, 109, 0, 0, 4779, 4778, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 4781, 1, 0, 0, 0, 4781, 4803, 3, 776, 388, 0, 4782, 4784, 5, 92, 0, 0, 4783, 4785, 5, 109, 0, 0, 4784, 4783, 1, 0, 0, 0, 4784, 4785, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4803, 3, 770, 385, 0, 4787, 4789, 5, 323, 0, 0, 4788, 4790, 5, 109, 0, 0, 4789, 4788, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4803, 3, 786, 393, 0, 4792, 4794, 5, 349, 0, 0, 4793, 4795, 5, 109, 0, 0, 4794, 4793, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 4803, 3, 816, 408, 0, 4797, 4799, 5, 175, 0, 0, 4798, 4800, 5, 109, 0, 0, 4799, 4798, 1, 0, 0, 0, 4799, 4800, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4803, 3, 784, 392, 0, 4802, 4777, 1, 0, 0, 0, 4802, 4782, 1, 0, 0, 0, 4802, 4787, 1, 0, 0, 0, 4802, 4792, 1, 0, 0, 0, 4802, 4797, 1, 0, 0, 0, 4803, 423, 1, 0, 0, 0, 4804, 4805, 5, 138, 0, 0, 4805, 4806, 3, 170, 85, 0, 4806, 4807, 7, 16, 0, 0, 4807, 4808, 3, 92, 46, 0, 4808, 425, 1, 0, 0, 0, 4809, 4814, 5, 138, 0, 0, 4810, 4811, 5, 136, 0, 0, 4811, 4815, 3, 388, 194, 0, 4812, 4813, 5, 442, 0, 0, 4813, 4815, 3, 368, 184, 0, 4814, 4810, 1, 0, 0, 0, 4814, 4812, 1, 0, 0, 0, 4815, 4816, 1, 0, 0, 0, 4816, 4817, 5, 309, 0, 0, 4817, 4818, 5, 94, 0, 0, 4818, 4819, 3, 816, 408, 0, 4819, 5017, 1, 0, 0, 0, 4820, 4821, 5, 138, 0, 0, 4821, 4822, 5, 175, 0, 0, 4822, 4823, 3, 784, 392, 0, 4823, 4824, 5, 309, 0, 0, 4824, 4825, 5, 94, 0, 0, 4825, 4826, 3, 782, 391, 0, 4826, 5017, 1, 0, 0, 0, 4827, 4828, 5, 138, 0, 0, 4828, 4829, 7, 62, 0, 0, 4829, 4830, 3, 310, 155, 0, 4830, 4831, 5, 309, 0, 0, 4831, 4832, 5, 94, 0, 0, 4832, 4833, 3, 816, 408, 0, 4833, 5017, 1, 0, 0, 0, 4834, 4835, 5, 138, 0, 0, 4835, 4836, 5, 211, 0, 0, 4836, 4837, 3, 376, 188, 0, 4837, 4838, 5, 309, 0, 0, 4838, 4839, 5, 94, 0, 0, 4839, 4840, 3, 802, 401, 0, 4840, 5017, 1, 0, 0, 0, 4841, 4842, 5, 138, 0, 0, 4842, 4843, 5, 278, 0, 0, 4843, 4844, 7, 32, 0, 0, 4844, 4845, 3, 310, 155, 0, 4845, 4846, 3, 164, 82, 0, 4846, 4847, 5, 309, 0, 0, 4847, 4848, 5, 94, 0, 0, 4848, 4849, 3, 816, 408, 0, 4849, 5017, 1, 0, 0, 0, 4850, 4851, 5, 138, 0, 0, 4851, 4852, 5, 296, 0, 0, 4852, 4853, 3, 372, 186, 0, 4853, 4854, 5, 309, 0, 0, 4854, 4855, 5, 94, 0, 0, 4855, 4856, 3, 794, 397, 0, 4856, 5017, 1, 0, 0, 0, 4857, 4858, 5, 138, 0, 0, 4858, 4859, 5, 323, 0, 0, 4859, 4860, 3, 786, 393, 0, 4860, 4861, 5, 309, 0, 0, 4861, 4862, 5, 94, 0, 0, 4862, 4863, 3, 32, 16, 0, 4863, 5017, 1, 0, 0, 0, 4864, 4865, 5, 138, 0, 0, 4865, 4867, 7, 63, 0, 0, 4866, 4868, 3, 416, 208, 0, 4867, 4866, 1, 0, 0, 0, 4867, 4868, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 4870, 3, 776, 388, 0, 4870, 4871, 5, 309, 0, 0, 4871, 4872, 5, 94, 0, 0, 4872, 4873, 3, 816, 408, 0, 4873, 5017, 1, 0, 0, 0, 4874, 4876, 5, 138, 0, 0, 4875, 4877, 5, 259, 0, 0, 4876, 4875, 1, 0, 0, 0, 4876, 4877, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 4880, 5, 376, 0, 0, 4879, 4881, 3, 416, 208, 0, 4880, 4879, 1, 0, 0, 0, 4880, 4881, 1, 0, 0, 0, 4881, 4882, 1, 0, 0, 0, 4882, 4883, 3, 774, 387, 0, 4883, 4884, 5, 309, 0, 0, 4884, 4885, 5, 94, 0, 0, 4885, 4886, 3, 772, 386, 0, 4886, 5017, 1, 0, 0, 0, 4887, 4889, 5, 138, 0, 0, 4888, 4890, 5, 63, 0, 0, 4889, 4888, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4893, 5, 92, 0, 0, 4892, 4894, 3, 416, 208, 0, 4893, 4892, 1, 0, 0, 0, 4893, 4894, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4896, 3, 618, 309, 0, 4896, 4897, 5, 309, 0, 0, 4897, 4898, 5, 94, 0, 0, 4898, 4899, 3, 768, 384, 0, 4899, 5017, 1, 0, 0, 0, 4900, 4925, 5, 138, 0, 0, 4901, 4903, 5, 63, 0, 0, 4902, 4901, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 1, 0, 0, 0, 4904, 4906, 5, 92, 0, 0, 4905, 4907, 3, 416, 208, 0, 4906, 4905, 1, 0, 0, 0, 4906, 4907, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4909, 3, 618, 309, 0, 4909, 4911, 5, 309, 0, 0, 4910, 4912, 5, 44, 0, 0, 4911, 4910, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4926, 1, 0, 0, 0, 4913, 4915, 5, 259, 0, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4918, 5, 376, 0, 0, 4917, 4919, 3, 416, 208, 0, 4918, 4917, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4921, 3, 774, 387, 0, 4921, 4923, 5, 309, 0, 0, 4922, 4924, 5, 44, 0, 0, 4923, 4922, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4926, 1, 0, 0, 0, 4925, 4902, 1, 0, 0, 0, 4925, 4914, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 3, 796, 398, 0, 4928, 4929, 5, 94, 0, 0, 4929, 4930, 3, 800, 400, 0, 4930, 5017, 1, 0, 0, 0, 4931, 4939, 5, 138, 0, 0, 4932, 4934, 5, 92, 0, 0, 4933, 4935, 3, 416, 208, 0, 4934, 4933, 1, 0, 0, 0, 4934, 4935, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4940, 3, 618, 309, 0, 4937, 4938, 5, 189, 0, 0, 4938, 4940, 3, 310, 155, 0, 4939, 4932, 1, 0, 0, 0, 4939, 4937, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 4942, 5, 309, 0, 0, 4942, 4943, 5, 45, 0, 0, 4943, 4944, 3, 816, 408, 0, 4944, 4945, 5, 94, 0, 0, 4945, 4946, 3, 816, 408, 0, 4946, 5017, 1, 0, 0, 0, 4947, 4954, 5, 138, 0, 0, 4948, 4950, 5, 445, 0, 0, 4949, 4951, 3, 416, 208, 0, 4950, 4949, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4955, 1, 0, 0, 0, 4952, 4955, 5, 321, 0, 0, 4953, 4955, 5, 357, 0, 0, 4954, 4948, 1, 0, 0, 0, 4954, 4952, 1, 0, 0, 0, 4954, 4953, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4957, 3, 816, 408, 0, 4957, 4958, 5, 80, 0, 0, 4958, 4959, 3, 776, 388, 0, 4959, 4960, 5, 309, 0, 0, 4960, 4961, 5, 94, 0, 0, 4961, 4962, 3, 816, 408, 0, 4962, 5017, 1, 0, 0, 0, 4963, 4976, 5, 138, 0, 0, 4964, 4965, 5, 63, 0, 0, 4965, 4966, 5, 174, 0, 0, 4966, 4977, 5, 381, 0, 0, 4967, 4969, 5, 295, 0, 0, 4968, 4967, 1, 0, 0, 0, 4968, 4969, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4977, 5, 247, 0, 0, 4971, 4977, 5, 452, 0, 0, 4972, 4977, 5, 331, 0, 0, 4973, 4977, 5, 451, 0, 0, 4974, 4975, 5, 198, 0, 0, 4975, 4977, 5, 357, 0, 0, 4976, 4964, 1, 0, 0, 0, 4976, 4968, 1, 0, 0, 0, 4976, 4971, 1, 0, 0, 0, 4976, 4972, 1, 0, 0, 0, 4976, 4973, 1, 0, 0, 0, 4976, 4974, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4979, 3, 816, 408, 0, 4979, 4980, 5, 309, 0, 0, 4980, 4981, 5, 94, 0, 0, 4981, 4982, 3, 816, 408, 0, 4982, 5017, 1, 0, 0, 0, 4983, 4984, 5, 138, 0, 0, 4984, 4985, 7, 46, 0, 0, 4985, 4986, 3, 812, 406, 0, 4986, 4987, 5, 309, 0, 0, 4987, 4988, 5, 94, 0, 0, 4988, 4989, 3, 812, 406, 0, 4989, 5017, 1, 0, 0, 0, 4990, 4991, 5, 138, 0, 0, 4991, 4992, 3, 170, 85, 0, 4992, 4993, 5, 309, 0, 0, 4993, 4994, 5, 94, 0, 0, 4994, 4995, 3, 766, 383, 0, 4995, 5017, 1, 0, 0, 0, 4996, 4997, 5, 138, 0, 0, 4997, 4998, 5, 355, 0, 0, 4998, 4999, 5, 325, 0, 0, 4999, 5000, 7, 42, 0, 0, 5000, 5001, 3, 310, 155, 0, 5001, 5002, 5, 309, 0, 0, 5002, 5003, 5, 94, 0, 0, 5003, 5004, 3, 816, 408, 0, 5004, 5017, 1, 0, 0, 0, 5005, 5006, 5, 138, 0, 0, 5006, 5007, 5, 360, 0, 0, 5007, 5008, 3, 310, 155, 0, 5008, 5009, 5, 309, 0, 0, 5009, 5010, 5, 143, 0, 0, 5010, 5011, 3, 816, 408, 0, 5011, 5012, 5, 94, 0, 0, 5012, 5014, 3, 816, 408, 0, 5013, 5015, 3, 88, 44, 0, 5014, 5013, 1, 0, 0, 0, 5014, 5015, 1, 0, 0, 0, 5015, 5017, 1, 0, 0, 0, 5016, 4809, 1, 0, 0, 0, 5016, 4820, 1, 0, 0, 0, 5016, 4827, 1, 0, 0, 0, 5016, 4834, 1, 0, 0, 0, 5016, 4841, 1, 0, 0, 0, 5016, 4850, 1, 0, 0, 0, 5016, 4857, 1, 0, 0, 0, 5016, 4864, 1, 0, 0, 0, 5016, 4874, 1, 0, 0, 0, 5016, 4887, 1, 0, 0, 0, 5016, 4900, 1, 0, 0, 0, 5016, 4931, 1, 0, 0, 0, 5016, 4947, 1, 0, 0, 0, 5016, 4963, 1, 0, 0, 0, 5016, 4983, 1, 0, 0, 0, 5016, 4990, 1, 0, 0, 0, 5016, 4996, 1, 0, 0, 0, 5016, 5005, 1, 0, 0, 0, 5017, 427, 1, 0, 0, 0, 5018, 5035, 5, 138, 0, 0, 5019, 5020, 5, 211, 0, 0, 5020, 5036, 3, 376, 188, 0, 5021, 5022, 5, 296, 0, 0, 5022, 5036, 3, 372, 186, 0, 5023, 5024, 5, 442, 0, 0, 5024, 5036, 3, 368, 184, 0, 5025, 5026, 5, 357, 0, 0, 5026, 5027, 3, 816, 408, 0, 5027, 5028, 5, 80, 0, 0, 5028, 5029, 3, 776, 388, 0, 5029, 5036, 1, 0, 0, 0, 5030, 5031, 5, 259, 0, 0, 5031, 5032, 5, 376, 0, 0, 5032, 5036, 3, 774, 387, 0, 5033, 5034, 5, 226, 0, 0, 5034, 5036, 3, 776, 388, 0, 5035, 5019, 1, 0, 0, 0, 5035, 5021, 1, 0, 0, 0, 5035, 5023, 1, 0, 0, 0, 5035, 5025, 1, 0, 0, 0, 5035, 5030, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5036, 5038, 1, 0, 0, 0, 5037, 5039, 5, 269, 0, 0, 5038, 5037, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5040, 1, 0, 0, 0, 5040, 5041, 5, 462, 0, 0, 5041, 5042, 5, 80, 0, 0, 5042, 5043, 5, 204, 0, 0, 5043, 5044, 3, 816, 408, 0, 5044, 429, 1, 0, 0, 0, 5045, 5084, 5, 138, 0, 0, 5046, 5047, 5, 136, 0, 0, 5047, 5085, 3, 388, 194, 0, 5048, 5049, 5, 204, 0, 0, 5049, 5085, 3, 816, 408, 0, 5050, 5051, 5, 211, 0, 0, 5051, 5085, 3, 376, 188, 0, 5052, 5053, 5, 278, 0, 0, 5053, 5085, 3, 410, 205, 0, 5054, 5055, 5, 278, 0, 0, 5055, 5056, 7, 32, 0, 0, 5056, 5057, 3, 310, 155, 0, 5057, 5058, 3, 164, 82, 0, 5058, 5085, 1, 0, 0, 0, 5059, 5060, 5, 296, 0, 0, 5060, 5085, 3, 372, 186, 0, 5061, 5062, 5, 442, 0, 0, 5062, 5085, 3, 368, 184, 0, 5063, 5065, 5, 328, 0, 0, 5064, 5066, 3, 416, 208, 0, 5065, 5064, 1, 0, 0, 0, 5065, 5066, 1, 0, 0, 0, 5066, 5067, 1, 0, 0, 0, 5067, 5085, 3, 776, 388, 0, 5068, 5070, 5, 259, 0, 0, 5069, 5068, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5071, 1, 0, 0, 0, 5071, 5073, 5, 376, 0, 0, 5072, 5074, 3, 416, 208, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5085, 3, 774, 387, 0, 5076, 5078, 5, 63, 0, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 5, 92, 0, 0, 5080, 5082, 3, 416, 208, 0, 5081, 5080, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5085, 3, 618, 309, 0, 5084, 5046, 1, 0, 0, 0, 5084, 5048, 1, 0, 0, 0, 5084, 5050, 1, 0, 0, 0, 5084, 5052, 1, 0, 0, 0, 5084, 5054, 1, 0, 0, 0, 5084, 5059, 1, 0, 0, 0, 5084, 5061, 1, 0, 0, 0, 5084, 5063, 1, 0, 0, 0, 5084, 5069, 1, 0, 0, 0, 5084, 5077, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 5087, 5, 333, 0, 0, 5087, 5088, 5, 323, 0, 0, 5088, 5089, 3, 786, 393, 0, 5089, 5107, 1, 0, 0, 0, 5090, 5099, 5, 138, 0, 0, 5091, 5092, 5, 355, 0, 0, 5092, 5093, 5, 325, 0, 0, 5093, 5100, 7, 42, 0, 0, 5094, 5100, 5, 108, 0, 0, 5095, 5100, 5, 168, 0, 0, 5096, 5100, 5, 189, 0, 0, 5097, 5100, 5, 342, 0, 0, 5098, 5100, 5, 360, 0, 0, 5099, 5091, 1, 0, 0, 0, 5099, 5094, 1, 0, 0, 0, 5099, 5095, 1, 0, 0, 0, 5099, 5096, 1, 0, 0, 0, 5099, 5097, 1, 0, 0, 0, 5099, 5098, 1, 0, 0, 0, 5100, 5101, 1, 0, 0, 0, 5101, 5102, 3, 310, 155, 0, 5102, 5103, 5, 333, 0, 0, 5103, 5104, 5, 323, 0, 0, 5104, 5105, 3, 786, 393, 0, 5105, 5107, 1, 0, 0, 0, 5106, 5045, 1, 0, 0, 0, 5106, 5090, 1, 0, 0, 0, 5107, 431, 1, 0, 0, 0, 5108, 5109, 5, 138, 0, 0, 5109, 5110, 5, 278, 0, 0, 5110, 5111, 3, 410, 205, 0, 5111, 5112, 5, 333, 0, 0, 5112, 5113, 3, 434, 217, 0, 5113, 433, 1, 0, 0, 0, 5114, 5115, 5, 2, 0, 0, 5115, 5120, 3, 436, 218, 0, 5116, 5117, 5, 6, 0, 0, 5117, 5119, 3, 436, 218, 0, 5118, 5116, 1, 0, 0, 0, 5119, 5122, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5123, 1, 0, 0, 0, 5122, 5120, 1, 0, 0, 0, 5123, 5124, 5, 3, 0, 0, 5124, 435, 1, 0, 0, 0, 5125, 5126, 3, 822, 411, 0, 5126, 5133, 5, 10, 0, 0, 5127, 5134, 5, 407, 0, 0, 5128, 5134, 3, 382, 191, 0, 5129, 5134, 3, 832, 416, 0, 5130, 5134, 3, 722, 361, 0, 5131, 5134, 3, 196, 98, 0, 5132, 5134, 3, 806, 403, 0, 5133, 5127, 1, 0, 0, 0, 5133, 5128, 1, 0, 0, 0, 5133, 5129, 1, 0, 0, 0, 5133, 5130, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5133, 5132, 1, 0, 0, 0, 5134, 437, 1, 0, 0, 0, 5135, 5136, 5, 138, 0, 0, 5136, 5137, 5, 360, 0, 0, 5137, 5138, 3, 310, 155, 0, 5138, 5139, 5, 333, 0, 0, 5139, 5140, 3, 434, 217, 0, 5140, 439, 1, 0, 0, 0, 5141, 5142, 5, 138, 0, 0, 5142, 5143, 5, 278, 0, 0, 5143, 5144, 7, 32, 0, 0, 5144, 5145, 3, 310, 155, 0, 5145, 5146, 3, 164, 82, 0, 5146, 5147, 5, 282, 0, 0, 5147, 5148, 5, 94, 0, 0, 5148, 5149, 3, 812, 406, 0, 5149, 5216, 1, 0, 0, 0, 5150, 5177, 5, 138, 0, 0, 5151, 5152, 5, 136, 0, 0, 5152, 5178, 3, 388, 194, 0, 5153, 5154, 5, 175, 0, 0, 5154, 5178, 3, 784, 392, 0, 5155, 5156, 5, 211, 0, 0, 5156, 5178, 3, 376, 188, 0, 5157, 5159, 5, 295, 0, 0, 5158, 5157, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5160, 1, 0, 0, 0, 5160, 5161, 5, 247, 0, 0, 5161, 5178, 3, 816, 408, 0, 5162, 5163, 5, 248, 0, 0, 5163, 5164, 5, 274, 0, 0, 5164, 5178, 3, 196, 98, 0, 5165, 5166, 5, 248, 0, 0, 5166, 5167, 5, 274, 0, 0, 5167, 5178, 3, 196, 98, 0, 5168, 5169, 5, 278, 0, 0, 5169, 5178, 3, 410, 205, 0, 5170, 5171, 5, 296, 0, 0, 5171, 5178, 3, 372, 186, 0, 5172, 5173, 5, 442, 0, 0, 5173, 5178, 3, 368, 184, 0, 5174, 5175, 5, 323, 0, 0, 5175, 5178, 3, 786, 393, 0, 5176, 5178, 3, 170, 85, 0, 5177, 5151, 1, 0, 0, 0, 5177, 5153, 1, 0, 0, 0, 5177, 5155, 1, 0, 0, 0, 5177, 5158, 1, 0, 0, 0, 5177, 5162, 1, 0, 0, 0, 5177, 5165, 1, 0, 0, 0, 5177, 5168, 1, 0, 0, 0, 5177, 5170, 1, 0, 0, 0, 5177, 5172, 1, 0, 0, 0, 5177, 5174, 1, 0, 0, 0, 5177, 5176, 1, 0, 0, 0, 5178, 5179, 1, 0, 0, 0, 5179, 5180, 5, 282, 0, 0, 5180, 5181, 5, 94, 0, 0, 5181, 5182, 3, 812, 406, 0, 5182, 5216, 1, 0, 0, 0, 5183, 5192, 5, 138, 0, 0, 5184, 5185, 5, 355, 0, 0, 5185, 5186, 5, 325, 0, 0, 5186, 5193, 7, 64, 0, 0, 5187, 5193, 5, 108, 0, 0, 5188, 5193, 5, 168, 0, 0, 5189, 5193, 5, 189, 0, 0, 5190, 5193, 5, 360, 0, 0, 5191, 5193, 5, 342, 0, 0, 5192, 5184, 1, 0, 0, 0, 5192, 5187, 1, 0, 0, 0, 5192, 5188, 1, 0, 0, 0, 5192, 5189, 1, 0, 0, 0, 5192, 5190, 1, 0, 0, 0, 5192, 5191, 1, 0, 0, 0, 5193, 5194, 1, 0, 0, 0, 5194, 5195, 3, 310, 155, 0, 5195, 5196, 5, 282, 0, 0, 5196, 5197, 5, 94, 0, 0, 5197, 5198, 3, 812, 406, 0, 5198, 5216, 1, 0, 0, 0, 5199, 5208, 5, 138, 0, 0, 5200, 5209, 5, 331, 0, 0, 5201, 5202, 5, 63, 0, 0, 5202, 5203, 5, 174, 0, 0, 5203, 5209, 5, 381, 0, 0, 5204, 5205, 5, 198, 0, 0, 5205, 5209, 5, 357, 0, 0, 5206, 5209, 5, 452, 0, 0, 5207, 5209, 5, 451, 0, 0, 5208, 5200, 1, 0, 0, 0, 5208, 5201, 1, 0, 0, 0, 5208, 5204, 1, 0, 0, 0, 5208, 5206, 1, 0, 0, 0, 5208, 5207, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5211, 3, 816, 408, 0, 5211, 5212, 5, 282, 0, 0, 5212, 5213, 5, 94, 0, 0, 5213, 5214, 3, 812, 406, 0, 5214, 5216, 1, 0, 0, 0, 5215, 5141, 1, 0, 0, 0, 5215, 5150, 1, 0, 0, 0, 5215, 5183, 1, 0, 0, 0, 5215, 5199, 1, 0, 0, 0, 5216, 441, 1, 0, 0, 0, 5217, 5218, 5, 46, 0, 0, 5218, 5219, 5, 452, 0, 0, 5219, 5226, 3, 816, 408, 0, 5220, 5221, 5, 62, 0, 0, 5221, 5222, 5, 92, 0, 0, 5222, 5227, 3, 622, 311, 0, 5223, 5224, 5, 62, 0, 0, 5224, 5225, 5, 30, 0, 0, 5225, 5227, 5, 350, 0, 0, 5226, 5220, 1, 0, 0, 0, 5226, 5223, 1, 0, 0, 0, 5226, 5227, 1, 0, 0, 0, 5227, 5229, 1, 0, 0, 0, 5228, 5230, 3, 394, 197, 0, 5229, 5228, 1, 0, 0, 0, 5229, 5230, 1, 0, 0, 0, 5230, 443, 1, 0, 0, 0, 5231, 5232, 5, 138, 0, 0, 5232, 5233, 5, 452, 0, 0, 5233, 5251, 3, 816, 408, 0, 5234, 5235, 5, 282, 0, 0, 5235, 5236, 5, 94, 0, 0, 5236, 5252, 3, 812, 406, 0, 5237, 5238, 5, 333, 0, 0, 5238, 5252, 3, 278, 139, 0, 5239, 5240, 5, 309, 0, 0, 5240, 5241, 5, 94, 0, 0, 5241, 5252, 3, 816, 408, 0, 5242, 5243, 7, 35, 0, 0, 5243, 5248, 3, 620, 310, 0, 5244, 5245, 5, 6, 0, 0, 5245, 5247, 3, 620, 310, 0, 5246, 5244, 1, 0, 0, 0, 5247, 5250, 1, 0, 0, 0, 5248, 5246, 1, 0, 0, 0, 5248, 5249, 1, 0, 0, 0, 5249, 5252, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5251, 5234, 1, 0, 0, 0, 5251, 5237, 1, 0, 0, 0, 5251, 5239, 1, 0, 0, 0, 5251, 5242, 1, 0, 0, 0, 5252, 445, 1, 0, 0, 0, 5253, 5254, 5, 46, 0, 0, 5254, 5255, 5, 451, 0, 0, 5255, 5256, 3, 816, 408, 0, 5256, 5257, 5, 164, 0, 0, 5257, 5258, 3, 806, 403, 0, 5258, 5259, 5, 452, 0, 0, 5259, 5264, 3, 822, 411, 0, 5260, 5261, 5, 6, 0, 0, 5261, 5263, 3, 822, 411, 0, 5262, 5260, 1, 0, 0, 0, 5263, 5266, 1, 0, 0, 0, 5264, 5262, 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 5268, 1, 0, 0, 0, 5266, 5264, 1, 0, 0, 0, 5267, 5269, 3, 394, 197, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 447, 1, 0, 0, 0, 5270, 5271, 5, 138, 0, 0, 5271, 5272, 5, 451, 0, 0, 5272, 5273, 3, 816, 408, 0, 5273, 5274, 5, 333, 0, 0, 5274, 5275, 3, 278, 139, 0, 5275, 5327, 1, 0, 0, 0, 5276, 5277, 5, 138, 0, 0, 5277, 5278, 5, 451, 0, 0, 5278, 5279, 3, 816, 408, 0, 5279, 5280, 5, 164, 0, 0, 5280, 5281, 3, 806, 403, 0, 5281, 5327, 1, 0, 0, 0, 5282, 5283, 5, 138, 0, 0, 5283, 5284, 5, 451, 0, 0, 5284, 5285, 3, 816, 408, 0, 5285, 5286, 5, 305, 0, 0, 5286, 5288, 5, 452, 0, 0, 5287, 5289, 3, 394, 197, 0, 5288, 5287, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5327, 1, 0, 0, 0, 5290, 5291, 5, 138, 0, 0, 5291, 5292, 5, 451, 0, 0, 5292, 5293, 3, 816, 408, 0, 5293, 5294, 7, 35, 0, 0, 5294, 5295, 5, 452, 0, 0, 5295, 5300, 3, 822, 411, 0, 5296, 5297, 5, 6, 0, 0, 5297, 5299, 3, 822, 411, 0, 5298, 5296, 1, 0, 0, 0, 5299, 5302, 1, 0, 0, 0, 5300, 5298, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5304, 1, 0, 0, 0, 5302, 5300, 1, 0, 0, 0, 5303, 5305, 3, 394, 197, 0, 5304, 5303, 1, 0, 0, 0, 5304, 5305, 1, 0, 0, 0, 5305, 5327, 1, 0, 0, 0, 5306, 5307, 5, 138, 0, 0, 5307, 5308, 5, 451, 0, 0, 5308, 5309, 3, 816, 408, 0, 5309, 5310, 7, 65, 0, 0, 5310, 5327, 1, 0, 0, 0, 5311, 5312, 5, 138, 0, 0, 5312, 5313, 5, 451, 0, 0, 5313, 5314, 3, 816, 408, 0, 5314, 5315, 5, 465, 0, 0, 5315, 5316, 5, 2, 0, 0, 5316, 5317, 3, 284, 142, 0, 5317, 5318, 5, 3, 0, 0, 5318, 5327, 1, 0, 0, 0, 5319, 5320, 5, 138, 0, 0, 5320, 5321, 5, 451, 0, 0, 5321, 5322, 3, 816, 408, 0, 5322, 5323, 5, 282, 0, 0, 5323, 5324, 5, 94, 0, 0, 5324, 5325, 3, 812, 406, 0, 5325, 5327, 1, 0, 0, 0, 5326, 5270, 1, 0, 0, 0, 5326, 5276, 1, 0, 0, 0, 5326, 5282, 1, 0, 0, 0, 5326, 5290, 1, 0, 0, 0, 5326, 5306, 1, 0, 0, 0, 5326, 5311, 1, 0, 0, 0, 5326, 5319, 1, 0, 0, 0, 5327, 449, 1, 0, 0, 0, 5328, 5330, 5, 46, 0, 0, 5329, 5331, 3, 360, 180, 0, 5330, 5329, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 5332, 1, 0, 0, 0, 5332, 5333, 5, 321, 0, 0, 5333, 5334, 3, 816, 408, 0, 5334, 5335, 5, 36, 0, 0, 5335, 5336, 5, 80, 0, 0, 5336, 5337, 7, 66, 0, 0, 5337, 5338, 5, 94, 0, 0, 5338, 5340, 3, 776, 388, 0, 5339, 5341, 3, 632, 316, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5344, 5, 57, 0, 0, 5343, 5345, 7, 67, 0, 0, 5344, 5343, 1, 0, 0, 0, 5344, 5345, 1, 0, 0, 0, 5345, 5362, 1, 0, 0, 0, 5346, 5363, 5, 270, 0, 0, 5347, 5363, 3, 452, 226, 0, 5348, 5350, 5, 2, 0, 0, 5349, 5351, 3, 452, 226, 0, 5350, 5349, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 5358, 1, 0, 0, 0, 5352, 5354, 5, 7, 0, 0, 5353, 5355, 3, 452, 226, 0, 5354, 5353, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5357, 1, 0, 0, 0, 5356, 5352, 1, 0, 0, 0, 5357, 5360, 1, 0, 0, 0, 5358, 5356, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5361, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5363, 5, 3, 0, 0, 5362, 5346, 1, 0, 0, 0, 5362, 5347, 1, 0, 0, 0, 5362, 5348, 1, 0, 0, 0, 5363, 451, 1, 0, 0, 0, 5364, 5370, 3, 554, 277, 0, 5365, 5370, 3, 532, 266, 0, 5366, 5370, 3, 546, 273, 0, 5367, 5370, 3, 542, 271, 0, 5368, 5370, 3, 454, 227, 0, 5369, 5364, 1, 0, 0, 0, 5369, 5365, 1, 0, 0, 0, 5369, 5366, 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5368, 1, 0, 0, 0, 5370, 453, 1, 0, 0, 0, 5371, 5372, 5, 271, 0, 0, 5372, 5374, 3, 816, 408, 0, 5373, 5375, 3, 456, 228, 0, 5374, 5373, 1, 0, 0, 0, 5374, 5375, 1, 0, 0, 0, 5375, 455, 1, 0, 0, 0, 5376, 5377, 5, 6, 0, 0, 5377, 5378, 3, 806, 403, 0, 5378, 457, 1, 0, 0, 0, 5379, 5380, 5, 252, 0, 0, 5380, 5381, 3, 816, 408, 0, 5381, 459, 1, 0, 0, 0, 5382, 5385, 5, 366, 0, 0, 5383, 5386, 3, 816, 408, 0, 5384, 5386, 5, 9, 0, 0, 5385, 5383, 1, 0, 0, 0, 5385, 5384, 1, 0, 0, 0, 5386, 461, 1, 0, 0, 0, 5387, 5389, 5, 146, 0, 0, 5388, 5390, 3, 464, 232, 0, 5389, 5388, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 5392, 1, 0, 0, 0, 5391, 5393, 3, 468, 234, 0, 5392, 5391, 1, 0, 0, 0, 5392, 5393, 1, 0, 0, 0, 5393, 5433, 1, 0, 0, 0, 5394, 5395, 5, 340, 0, 0, 5395, 5397, 5, 356, 0, 0, 5396, 5398, 3, 468, 234, 0, 5397, 5396, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5433, 1, 0, 0, 0, 5399, 5400, 5, 322, 0, 0, 5400, 5433, 3, 816, 408, 0, 5401, 5403, 5, 308, 0, 0, 5402, 5404, 5, 322, 0, 0, 5403, 5402, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5433, 3, 816, 408, 0, 5406, 5407, 5, 290, 0, 0, 5407, 5408, 5, 356, 0, 0, 5408, 5433, 3, 806, 403, 0, 5409, 5410, 7, 68, 0, 0, 5410, 5411, 5, 291, 0, 0, 5411, 5433, 3, 806, 403, 0, 5412, 5414, 7, 69, 0, 0, 5413, 5415, 3, 464, 232, 0, 5414, 5413, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5421, 1, 0, 0, 0, 5416, 5418, 5, 33, 0, 0, 5417, 5419, 5, 269, 0, 0, 5418, 5417, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 5422, 5, 153, 0, 0, 5421, 5416, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5433, 1, 0, 0, 0, 5423, 5425, 5, 319, 0, 0, 5424, 5426, 3, 464, 232, 0, 5425, 5424, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5429, 5, 94, 0, 0, 5428, 5430, 5, 322, 0, 0, 5429, 5428, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5433, 3, 816, 408, 0, 5432, 5387, 1, 0, 0, 0, 5432, 5394, 1, 0, 0, 0, 5432, 5399, 1, 0, 0, 0, 5432, 5401, 1, 0, 0, 0, 5432, 5406, 1, 0, 0, 0, 5432, 5409, 1, 0, 0, 0, 5432, 5412, 1, 0, 0, 0, 5432, 5423, 1, 0, 0, 0, 5433, 463, 1, 0, 0, 0, 5434, 5435, 7, 70, 0, 0, 5435, 465, 1, 0, 0, 0, 5436, 5437, 5, 244, 0, 0, 5437, 5438, 5, 251, 0, 0, 5438, 5446, 3, 50, 25, 0, 5439, 5440, 5, 300, 0, 0, 5440, 5446, 7, 71, 0, 0, 5441, 5443, 5, 77, 0, 0, 5442, 5441, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5446, 5, 54, 0, 0, 5445, 5436, 1, 0, 0, 0, 5445, 5439, 1, 0, 0, 0, 5445, 5442, 1, 0, 0, 0, 5446, 467, 1, 0, 0, 0, 5447, 5454, 3, 466, 233, 0, 5448, 5450, 5, 6, 0, 0, 5449, 5448, 1, 0, 0, 0, 5449, 5450, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5453, 3, 466, 233, 0, 5452, 5449, 1, 0, 0, 0, 5453, 5456, 1, 0, 0, 0, 5454, 5452, 1, 0, 0, 0, 5454, 5455, 1, 0, 0, 0, 5455, 469, 1, 0, 0, 0, 5456, 5454, 1, 0, 0, 0, 5457, 5460, 5, 46, 0, 0, 5458, 5459, 5, 82, 0, 0, 5459, 5461, 5, 311, 0, 0, 5460, 5458, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5463, 1, 0, 0, 0, 5462, 5464, 3, 116, 58, 0, 5463, 5462, 1, 0, 0, 0, 5463, 5464, 1, 0, 0, 0, 5464, 5480, 1, 0, 0, 0, 5465, 5466, 5, 376, 0, 0, 5466, 5468, 3, 772, 386, 0, 5467, 5469, 3, 140, 70, 0, 5468, 5467, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 1, 0, 0, 0, 5470, 5472, 3, 94, 47, 0, 5471, 5470, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5481, 1, 0, 0, 0, 5473, 5474, 5, 303, 0, 0, 5474, 5475, 5, 376, 0, 0, 5475, 5476, 3, 772, 386, 0, 5476, 5478, 3, 138, 69, 0, 5477, 5479, 3, 94, 47, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5481, 1, 0, 0, 0, 5480, 5465, 1, 0, 0, 0, 5480, 5473, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5483, 5, 36, 0, 0, 5483, 5490, 3, 554, 277, 0, 5484, 5486, 5, 105, 0, 0, 5485, 5487, 7, 72, 0, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5489, 5, 42, 0, 0, 5489, 5491, 5, 279, 0, 0, 5490, 5484, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 471, 1, 0, 0, 0, 5492, 5493, 5, 253, 0, 0, 5493, 5494, 3, 806, 403, 0, 5494, 473, 1, 0, 0, 0, 5495, 5496, 5, 46, 0, 0, 5496, 5497, 5, 175, 0, 0, 5497, 5499, 3, 782, 391, 0, 5498, 5500, 5, 105, 0, 0, 5499, 5498, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5506, 1, 0, 0, 0, 5501, 5503, 3, 476, 238, 0, 5502, 5501, 1, 0, 0, 0, 5503, 5504, 1, 0, 0, 0, 5504, 5502, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5507, 1, 0, 0, 0, 5506, 5502, 1, 0, 0, 0, 5506, 5507, 1, 0, 0, 0, 5507, 475, 1, 0, 0, 0, 5508, 5509, 5, 164, 0, 0, 5509, 5517, 5, 74, 0, 0, 5510, 5517, 5, 194, 0, 0, 5511, 5517, 5, 255, 0, 0, 5512, 5517, 5, 282, 0, 0, 5513, 5517, 5, 351, 0, 0, 5514, 5517, 5, 353, 0, 0, 5515, 5517, 3, 824, 412, 0, 5516, 5508, 1, 0, 0, 0, 5516, 5510, 1, 0, 0, 0, 5516, 5511, 1, 0, 0, 0, 5516, 5512, 1, 0, 0, 0, 5516, 5513, 1, 0, 0, 0, 5516, 5514, 1, 0, 0, 0, 5516, 5515, 1, 0, 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5520, 5, 10, 0, 0, 5519, 5518, 1, 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5524, 1, 0, 0, 0, 5521, 5525, 3, 810, 405, 0, 5522, 5525, 3, 54, 27, 0, 5523, 5525, 5, 53, 0, 0, 5524, 5521, 1, 0, 0, 0, 5524, 5522, 1, 0, 0, 0, 5524, 5523, 1, 0, 0, 0, 5525, 477, 1, 0, 0, 0, 5526, 5527, 5, 138, 0, 0, 5527, 5528, 5, 175, 0, 0, 5528, 5544, 3, 784, 392, 0, 5529, 5530, 5, 333, 0, 0, 5530, 5531, 5, 351, 0, 0, 5531, 5533, 3, 766, 383, 0, 5532, 5529, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5545, 1, 0, 0, 0, 5534, 5536, 5, 105, 0, 0, 5535, 5534, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5538, 1, 0, 0, 0, 5537, 5539, 3, 476, 238, 0, 5538, 5537, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5538, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5543, 1, 0, 0, 0, 5542, 5535, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5545, 1, 0, 0, 0, 5544, 5532, 1, 0, 0, 0, 5544, 5542, 1, 0, 0, 0, 5545, 479, 1, 0, 0, 0, 5546, 5547, 5, 138, 0, 0, 5547, 5548, 5, 175, 0, 0, 5548, 5550, 3, 784, 392, 0, 5549, 5551, 3, 64, 32, 0, 5550, 5549, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 481, 1, 0, 0, 0, 5552, 5553, 5, 138, 0, 0, 5553, 5554, 5, 108, 0, 0, 5554, 5555, 3, 310, 155, 0, 5555, 5556, 5, 305, 0, 0, 5556, 5557, 5, 375, 0, 0, 5557, 483, 1, 0, 0, 0, 5558, 5559, 5, 138, 0, 0, 5559, 5560, 5, 349, 0, 0, 5560, 5561, 7, 16, 0, 0, 5561, 5562, 3, 40, 20, 0, 5562, 485, 1, 0, 0, 0, 5563, 5564, 5, 46, 0, 0, 5564, 5565, 5, 189, 0, 0, 5565, 5567, 3, 310, 155, 0, 5566, 5568, 5, 36, 0, 0, 5567, 5566, 1, 0, 0, 0, 5567, 5568, 1, 0, 0, 0, 5568, 5569, 1, 0, 0, 0, 5569, 5573, 3, 646, 323, 0, 5570, 5572, 3, 128, 64, 0, 5571, 5570, 1, 0, 0, 0, 5572, 5575, 1, 0, 0, 0, 5573, 5571, 1, 0, 0, 0, 5573, 5574, 1, 0, 0, 0, 5574, 487, 1, 0, 0, 0, 5575, 5573, 1, 0, 0, 0, 5576, 5577, 5, 138, 0, 0, 5577, 5578, 5, 189, 0, 0, 5578, 5601, 3, 310, 155, 0, 5579, 5602, 3, 86, 43, 0, 5580, 5581, 7, 15, 0, 0, 5581, 5582, 5, 77, 0, 0, 5582, 5602, 5, 78, 0, 0, 5583, 5586, 5, 133, 0, 0, 5584, 5585, 5, 45, 0, 0, 5585, 5587, 3, 816, 408, 0, 5586, 5584, 1, 0, 0, 0, 5586, 5587, 1, 0, 0, 0, 5587, 5588, 1, 0, 0, 0, 5588, 5602, 3, 136, 68, 0, 5589, 5590, 5, 191, 0, 0, 5590, 5592, 5, 45, 0, 0, 5591, 5593, 3, 416, 208, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5596, 3, 816, 408, 0, 5595, 5597, 3, 88, 44, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5602, 1, 0, 0, 0, 5598, 5599, 5, 372, 0, 0, 5599, 5600, 5, 45, 0, 0, 5600, 5602, 3, 816, 408, 0, 5601, 5579, 1, 0, 0, 0, 5601, 5580, 1, 0, 0, 0, 5601, 5583, 1, 0, 0, 0, 5601, 5589, 1, 0, 0, 0, 5601, 5598, 1, 0, 0, 0, 5602, 489, 1, 0, 0, 0, 5603, 5604, 5, 138, 0, 0, 5604, 5605, 5, 355, 0, 0, 5605, 5606, 5, 325, 0, 0, 5606, 5607, 5, 185, 0, 0, 5607, 5608, 3, 310, 155, 0, 5608, 5609, 3, 278, 139, 0, 5609, 491, 1, 0, 0, 0, 5610, 5611, 5, 138, 0, 0, 5611, 5612, 5, 355, 0, 0, 5612, 5613, 5, 325, 0, 0, 5613, 5614, 5, 163, 0, 0, 5614, 5615, 3, 310, 155, 0, 5615, 5616, 7, 73, 0, 0, 5616, 5617, 5, 257, 0, 0, 5617, 5618, 5, 62, 0, 0, 5618, 5619, 3, 780, 390, 0, 5619, 5620, 5, 105, 0, 0, 5620, 5621, 3, 308, 154, 0, 5621, 5652, 1, 0, 0, 0, 5622, 5623, 5, 138, 0, 0, 5623, 5624, 5, 355, 0, 0, 5624, 5625, 5, 325, 0, 0, 5625, 5626, 5, 163, 0, 0, 5626, 5627, 3, 310, 155, 0, 5627, 5628, 5, 138, 0, 0, 5628, 5631, 5, 257, 0, 0, 5629, 5630, 5, 62, 0, 0, 5630, 5632, 3, 780, 390, 0, 5631, 5629, 1, 0, 0, 0, 5631, 5632, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5634, 5, 311, 0, 0, 5634, 5635, 3, 310, 155, 0, 5635, 5636, 5, 105, 0, 0, 5636, 5637, 3, 310, 155, 0, 5637, 5652, 1, 0, 0, 0, 5638, 5639, 5, 138, 0, 0, 5639, 5640, 5, 355, 0, 0, 5640, 5641, 5, 325, 0, 0, 5641, 5642, 5, 163, 0, 0, 5642, 5643, 3, 310, 155, 0, 5643, 5644, 5, 191, 0, 0, 5644, 5646, 5, 257, 0, 0, 5645, 5647, 3, 416, 208, 0, 5646, 5645, 1, 0, 0, 0, 5646, 5647, 1, 0, 0, 0, 5647, 5648, 1, 0, 0, 0, 5648, 5649, 5, 62, 0, 0, 5649, 5650, 3, 780, 390, 0, 5650, 5652, 1, 0, 0, 0, 5651, 5610, 1, 0, 0, 0, 5651, 5622, 1, 0, 0, 0, 5651, 5638, 1, 0, 0, 0, 5652, 493, 1, 0, 0, 0, 5653, 5655, 5, 46, 0, 0, 5654, 5656, 5, 53, 0, 0, 5655, 5654, 1, 0, 0, 0, 5655, 5656, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5658, 5, 168, 0, 0, 5658, 5659, 3, 310, 155, 0, 5659, 5660, 5, 62, 0, 0, 5660, 5661, 3, 806, 403, 0, 5661, 5662, 5, 94, 0, 0, 5662, 5663, 3, 806, 403, 0, 5663, 5664, 5, 64, 0, 0, 5664, 5665, 3, 310, 155, 0, 5665, 495, 1, 0, 0, 0, 5666, 5668, 5, 158, 0, 0, 5667, 5669, 3, 508, 254, 0, 5668, 5667, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5674, 1, 0, 0, 0, 5670, 5672, 3, 770, 385, 0, 5671, 5673, 3, 164, 82, 0, 5672, 5671, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5675, 1, 0, 0, 0, 5674, 5670, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5692, 1, 0, 0, 0, 5676, 5677, 5, 158, 0, 0, 5677, 5678, 5, 2, 0, 0, 5678, 5683, 3, 508, 254, 0, 5679, 5680, 5, 6, 0, 0, 5680, 5682, 3, 508, 254, 0, 5681, 5679, 1, 0, 0, 0, 5682, 5685, 1, 0, 0, 0, 5683, 5681, 1, 0, 0, 0, 5683, 5684, 1, 0, 0, 0, 5684, 5686, 1, 0, 0, 0, 5685, 5683, 1, 0, 0, 0, 5686, 5687, 5, 3, 0, 0, 5687, 5689, 3, 770, 385, 0, 5688, 5690, 3, 164, 82, 0, 5689, 5688, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 5692, 1, 0, 0, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5676, 1, 0, 0, 0, 5692, 497, 1, 0, 0, 0, 5693, 5709, 5, 370, 0, 0, 5694, 5696, 5, 113, 0, 0, 5695, 5694, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5698, 1, 0, 0, 0, 5697, 5699, 5, 112, 0, 0, 5698, 5697, 1, 0, 0, 0, 5698, 5699, 1, 0, 0, 0, 5699, 5701, 1, 0, 0, 0, 5700, 5702, 3, 508, 254, 0, 5701, 5700, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5704, 1, 0, 0, 0, 5703, 5705, 3, 502, 251, 0, 5704, 5703, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5710, 1, 0, 0, 0, 5706, 5708, 3, 518, 259, 0, 5707, 5706, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 5710, 1, 0, 0, 0, 5709, 5695, 1, 0, 0, 0, 5709, 5707, 1, 0, 0, 0, 5710, 5712, 1, 0, 0, 0, 5711, 5713, 3, 512, 256, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 499, 1, 0, 0, 0, 5714, 5729, 3, 502, 251, 0, 5715, 5717, 3, 508, 254, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5730, 1, 0, 0, 0, 5718, 5719, 5, 2, 0, 0, 5719, 5724, 3, 506, 253, 0, 5720, 5721, 5, 6, 0, 0, 5721, 5723, 3, 506, 253, 0, 5722, 5720, 1, 0, 0, 0, 5723, 5726, 1, 0, 0, 0, 5724, 5722, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5727, 1, 0, 0, 0, 5726, 5724, 1, 0, 0, 0, 5727, 5728, 5, 3, 0, 0, 5728, 5730, 1, 0, 0, 0, 5729, 5716, 1, 0, 0, 0, 5729, 5718, 1, 0, 0, 0, 5730, 5732, 1, 0, 0, 0, 5731, 5733, 3, 512, 256, 0, 5732, 5731, 1, 0, 0, 0, 5732, 5733, 1, 0, 0, 0, 5733, 501, 1, 0, 0, 0, 5734, 5735, 7, 74, 0, 0, 5735, 503, 1, 0, 0, 0, 5736, 5739, 3, 820, 410, 0, 5737, 5739, 3, 502, 251, 0, 5738, 5736, 1, 0, 0, 0, 5738, 5737, 1, 0, 0, 0, 5739, 5742, 1, 0, 0, 0, 5740, 5743, 3, 54, 27, 0, 5741, 5743, 3, 196, 98, 0, 5742, 5740, 1, 0, 0, 0, 5742, 5741, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 505, 1, 0, 0, 0, 5744, 5746, 7, 75, 0, 0, 5745, 5747, 7, 76, 0, 0, 5746, 5745, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 5754, 1, 0, 0, 0, 5748, 5751, 5, 548, 0, 0, 5749, 5752, 3, 196, 98, 0, 5750, 5752, 3, 806, 403, 0, 5751, 5749, 1, 0, 0, 0, 5751, 5750, 1, 0, 0, 0, 5752, 5754, 1, 0, 0, 0, 5753, 5744, 1, 0, 0, 0, 5753, 5748, 1, 0, 0, 0, 5754, 507, 1, 0, 0, 0, 5755, 5757, 5, 128, 0, 0, 5756, 5758, 7, 76, 0, 0, 5757, 5756, 1, 0, 0, 0, 5757, 5758, 1, 0, 0, 0, 5758, 509, 1, 0, 0, 0, 5759, 5761, 3, 770, 385, 0, 5760, 5762, 3, 138, 69, 0, 5761, 5760, 1, 0, 0, 0, 5761, 5762, 1, 0, 0, 0, 5762, 511, 1, 0, 0, 0, 5763, 5768, 3, 510, 255, 0, 5764, 5765, 5, 6, 0, 0, 5765, 5767, 3, 510, 255, 0, 5766, 5764, 1, 0, 0, 0, 5767, 5770, 1, 0, 0, 0, 5768, 5766, 1, 0, 0, 0, 5768, 5769, 1, 0, 0, 0, 5769, 513, 1, 0, 0, 0, 5770, 5768, 1, 0, 0, 0, 5771, 5782, 5, 203, 0, 0, 5772, 5783, 3, 518, 259, 0, 5773, 5775, 5, 128, 0, 0, 5774, 5773, 1, 0, 0, 0, 5774, 5775, 1, 0, 0, 0, 5775, 5783, 1, 0, 0, 0, 5776, 5778, 3, 502, 251, 0, 5777, 5779, 3, 508, 254, 0, 5778, 5777, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 5781, 1, 0, 0, 0, 5780, 5776, 1, 0, 0, 0, 5780, 5781, 1, 0, 0, 0, 5781, 5783, 1, 0, 0, 0, 5782, 5772, 1, 0, 0, 0, 5782, 5774, 1, 0, 0, 0, 5782, 5780, 1, 0, 0, 0, 5783, 5784, 1, 0, 0, 0, 5784, 5785, 3, 516, 258, 0, 5785, 515, 1, 0, 0, 0, 5786, 5796, 3, 554, 277, 0, 5787, 5796, 3, 532, 266, 0, 5788, 5796, 3, 546, 273, 0, 5789, 5796, 3, 542, 271, 0, 5790, 5796, 3, 552, 276, 0, 5791, 5796, 3, 180, 90, 0, 5792, 5796, 3, 186, 93, 0, 5793, 5796, 3, 188, 94, 0, 5794, 5796, 3, 526, 263, 0, 5795, 5786, 1, 0, 0, 0, 5795, 5787, 1, 0, 0, 0, 5795, 5788, 1, 0, 0, 0, 5795, 5789, 1, 0, 0, 0, 5795, 5790, 1, 0, 0, 0, 5795, 5791, 1, 0, 0, 0, 5795, 5792, 1, 0, 0, 0, 5795, 5793, 1, 0, 0, 0, 5795, 5794, 1, 0, 0, 0, 5796, 517, 1, 0, 0, 0, 5797, 5798, 5, 2, 0, 0, 5798, 5803, 3, 504, 252, 0, 5799, 5800, 5, 6, 0, 0, 5800, 5802, 3, 504, 252, 0, 5801, 5799, 1, 0, 0, 0, 5802, 5805, 1, 0, 0, 0, 5803, 5801, 1, 0, 0, 0, 5803, 5804, 1, 0, 0, 0, 5804, 5806, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5806, 5807, 5, 3, 0, 0, 5807, 519, 1, 0, 0, 0, 5808, 5809, 5, 290, 0, 0, 5809, 5811, 3, 816, 408, 0, 5810, 5812, 3, 522, 261, 0, 5811, 5810, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 5813, 1, 0, 0, 0, 5813, 5814, 5, 36, 0, 0, 5814, 5815, 3, 524, 262, 0, 5815, 521, 1, 0, 0, 0, 5816, 5817, 5, 2, 0, 0, 5817, 5822, 3, 646, 323, 0, 5818, 5819, 5, 6, 0, 0, 5819, 5821, 3, 646, 323, 0, 5820, 5818, 1, 0, 0, 0, 5821, 5824, 1, 0, 0, 0, 5822, 5820, 1, 0, 0, 0, 5822, 5823, 1, 0, 0, 0, 5823, 5825, 1, 0, 0, 0, 5824, 5822, 1, 0, 0, 0, 5825, 5826, 5, 3, 0, 0, 5826, 523, 1, 0, 0, 0, 5827, 5833, 3, 554, 277, 0, 5828, 5833, 3, 532, 266, 0, 5829, 5833, 3, 546, 273, 0, 5830, 5833, 3, 542, 271, 0, 5831, 5833, 3, 898, 449, 0, 5832, 5827, 1, 0, 0, 0, 5832, 5828, 1, 0, 0, 0, 5832, 5829, 1, 0, 0, 0, 5832, 5830, 1, 0, 0, 0, 5832, 5831, 1, 0, 0, 0, 5833, 525, 1, 0, 0, 0, 5834, 5835, 5, 202, 0, 0, 5835, 5837, 3, 816, 408, 0, 5836, 5838, 3, 528, 264, 0, 5837, 5836, 1, 0, 0, 0, 5837, 5838, 1, 0, 0, 0, 5838, 5858, 1, 0, 0, 0, 5839, 5841, 5, 46, 0, 0, 5840, 5842, 3, 116, 58, 0, 5841, 5840, 1, 0, 0, 0, 5841, 5842, 1, 0, 0, 0, 5842, 5843, 1, 0, 0, 0, 5843, 5845, 5, 92, 0, 0, 5844, 5846, 3, 288, 144, 0, 5845, 5844, 1, 0, 0, 0, 5845, 5846, 1, 0, 0, 0, 5846, 5847, 1, 0, 0, 0, 5847, 5848, 3, 182, 91, 0, 5848, 5849, 5, 36, 0, 0, 5849, 5850, 5, 202, 0, 0, 5850, 5852, 3, 816, 408, 0, 5851, 5853, 3, 528, 264, 0, 5852, 5851, 1, 0, 0, 0, 5852, 5853, 1, 0, 0, 0, 5853, 5855, 1, 0, 0, 0, 5854, 5856, 3, 184, 92, 0, 5855, 5854, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5858, 1, 0, 0, 0, 5857, 5834, 1, 0, 0, 0, 5857, 5839, 1, 0, 0, 0, 5858, 527, 1, 0, 0, 0, 5859, 5860, 5, 2, 0, 0, 5860, 5861, 3, 726, 363, 0, 5861, 5862, 5, 3, 0, 0, 5862, 529, 1, 0, 0, 0, 5863, 5865, 5, 177, 0, 0, 5864, 5866, 5, 290, 0, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5869, 1, 0, 0, 0, 5867, 5870, 3, 816, 408, 0, 5868, 5870, 5, 30, 0, 0, 5869, 5867, 1, 0, 0, 0, 5869, 5868, 1, 0, 0, 0, 5870, 531, 1, 0, 0, 0, 5871, 5873, 3, 566, 283, 0, 5872, 5871, 1, 0, 0, 0, 5872, 5873, 1, 0, 0, 0, 5873, 5874, 1, 0, 0, 0, 5874, 5875, 5, 241, 0, 0, 5875, 5876, 5, 71, 0, 0, 5876, 5879, 3, 770, 385, 0, 5877, 5878, 5, 36, 0, 0, 5878, 5880, 3, 816, 408, 0, 5879, 5877, 1, 0, 0, 0, 5879, 5880, 1, 0, 0, 0, 5880, 5881, 1, 0, 0, 0, 5881, 5903, 3, 534, 267, 0, 5882, 5883, 5, 80, 0, 0, 5883, 5891, 5, 464, 0, 0, 5884, 5886, 3, 354, 177, 0, 5885, 5887, 3, 632, 316, 0, 5886, 5885, 1, 0, 0, 0, 5886, 5887, 1, 0, 0, 0, 5887, 5892, 1, 0, 0, 0, 5888, 5889, 5, 80, 0, 0, 5889, 5890, 5, 45, 0, 0, 5890, 5892, 3, 816, 408, 0, 5891, 5884, 1, 0, 0, 0, 5891, 5888, 1, 0, 0, 0, 5891, 5892, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5901, 5, 57, 0, 0, 5894, 5895, 5, 369, 0, 0, 5895, 5896, 5, 333, 0, 0, 5896, 5898, 3, 548, 274, 0, 5897, 5899, 3, 632, 316, 0, 5898, 5897, 1, 0, 0, 0, 5898, 5899, 1, 0, 0, 0, 5899, 5902, 1, 0, 0, 0, 5900, 5902, 5, 270, 0, 0, 5901, 5894, 1, 0, 0, 0, 5901, 5900, 1, 0, 0, 0, 5902, 5904, 1, 0, 0, 0, 5903, 5882, 1, 0, 0, 0, 5903, 5904, 1, 0, 0, 0, 5904, 5906, 1, 0, 0, 0, 5905, 5907, 3, 540, 270, 0, 5906, 5905, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 533, 1, 0, 0, 0, 5908, 5909, 5, 2, 0, 0, 5909, 5910, 3, 536, 268, 0, 5910, 5911, 5, 3, 0, 0, 5911, 5913, 1, 0, 0, 0, 5912, 5908, 1, 0, 0, 0, 5912, 5913, 1, 0, 0, 0, 5913, 5917, 1, 0, 0, 0, 5914, 5915, 5, 463, 0, 0, 5915, 5916, 7, 77, 0, 0, 5916, 5918, 5, 450, 0, 0, 5917, 5914, 1, 0, 0, 0, 5917, 5918, 1, 0, 0, 0, 5918, 5921, 1, 0, 0, 0, 5919, 5922, 3, 908, 454, 0, 5920, 5922, 3, 554, 277, 0, 5921, 5919, 1, 0, 0, 0, 5921, 5920, 1, 0, 0, 0, 5922, 535, 1, 0, 0, 0, 5923, 5928, 3, 538, 269, 0, 5924, 5925, 5, 6, 0, 0, 5925, 5927, 3, 538, 269, 0, 5926, 5924, 1, 0, 0, 0, 5927, 5930, 1, 0, 0, 0, 5928, 5926, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 537, 1, 0, 0, 0, 5930, 5928, 1, 0, 0, 0, 5931, 5932, 3, 796, 398, 0, 5932, 5933, 3, 750, 375, 0, 5933, 539, 1, 0, 0, 0, 5934, 5935, 5, 87, 0, 0, 5935, 5936, 3, 752, 376, 0, 5936, 541, 1, 0, 0, 0, 5937, 5939, 3, 566, 283, 0, 5938, 5937, 1, 0, 0, 0, 5938, 5939, 1, 0, 0, 0, 5939, 5940, 1, 0, 0, 0, 5940, 5941, 5, 182, 0, 0, 5941, 5942, 5, 64, 0, 0, 5942, 5945, 3, 624, 312, 0, 5943, 5944, 5, 100, 0, 0, 5944, 5946, 3, 606, 303, 0, 5945, 5943, 1, 0, 0, 0, 5945, 5946, 1, 0, 0, 0, 5946, 5948, 1, 0, 0, 0, 5947, 5949, 3, 634, 317, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5951, 1, 0, 0, 0, 5950, 5952, 3, 540, 270, 0, 5951, 5950, 1, 0, 0, 0, 5951, 5952, 1, 0, 0, 0, 5952, 543, 1, 0, 0, 0, 5953, 5955, 5, 256, 0, 0, 5954, 5956, 5, 92, 0, 0, 5955, 5954, 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 5957, 1, 0, 0, 0, 5957, 5972, 3, 622, 311, 0, 5958, 5969, 5, 68, 0, 0, 5959, 5960, 7, 78, 0, 0, 5960, 5970, 7, 79, 0, 0, 5961, 5966, 5, 334, 0, 0, 5962, 5963, 5, 369, 0, 0, 5963, 5967, 5, 201, 0, 0, 5964, 5965, 5, 414, 0, 0, 5965, 5967, 5, 201, 0, 0, 5966, 5962, 1, 0, 0, 0, 5966, 5964, 1, 0, 0, 0, 5966, 5967, 1, 0, 0, 0, 5967, 5970, 1, 0, 0, 0, 5968, 5970, 5, 201, 0, 0, 5969, 5959, 1, 0, 0, 0, 5969, 5961, 1, 0, 0, 0, 5969, 5968, 1, 0, 0, 0, 5970, 5971, 1, 0, 0, 0, 5971, 5973, 5, 263, 0, 0, 5972, 5958, 1, 0, 0, 0, 5972, 5973, 1, 0, 0, 0, 5973, 5975, 1, 0, 0, 0, 5974, 5976, 5, 272, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 545, 1, 0, 0, 0, 5977, 5979, 3, 566, 283, 0, 5978, 5977, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 5980, 1, 0, 0, 0, 5980, 5981, 5, 369, 0, 0, 5981, 5982, 3, 624, 312, 0, 5982, 5983, 5, 333, 0, 0, 5983, 5985, 3, 548, 274, 0, 5984, 5986, 3, 604, 302, 0, 5985, 5984, 1, 0, 0, 0, 5985, 5986, 1, 0, 0, 0, 5986, 5988, 1, 0, 0, 0, 5987, 5989, 3, 634, 317, 0, 5988, 5987, 1, 0, 0, 0, 5988, 5989, 1, 0, 0, 0, 5989, 5991, 1, 0, 0, 0, 5990, 5992, 3, 540, 270, 0, 5991, 5990, 1, 0, 0, 0, 5991, 5992, 1, 0, 0, 0, 5992, 547, 1, 0, 0, 0, 5993, 5998, 3, 550, 275, 0, 5994, 5995, 5, 6, 0, 0, 5995, 5997, 3, 550, 275, 0, 5996, 5994, 1, 0, 0, 0, 5997, 6000, 1, 0, 0, 0, 5998, 5996, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 549, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6001, 6002, 3, 538, 269, 0, 6002, 6003, 5, 10, 0, 0, 6003, 6004, 3, 668, 334, 0, 6004, 6020, 1, 0, 0, 0, 6005, 6006, 5, 2, 0, 0, 6006, 6007, 3, 536, 268, 0, 6007, 6008, 5, 3, 0, 0, 6008, 6017, 5, 10, 0, 0, 6009, 6011, 5, 414, 0, 0, 6010, 6009, 1, 0, 0, 0, 6010, 6011, 1, 0, 0, 0, 6011, 6012, 1, 0, 0, 0, 6012, 6018, 3, 668, 334, 0, 6013, 6014, 5, 2, 0, 0, 6014, 6015, 3, 560, 280, 0, 6015, 6016, 5, 3, 0, 0, 6016, 6018, 1, 0, 0, 0, 6017, 6010, 1, 0, 0, 0, 6017, 6013, 1, 0, 0, 0, 6018, 6020, 1, 0, 0, 0, 6019, 6001, 1, 0, 0, 0, 6019, 6005, 1, 0, 0, 0, 6020, 551, 1, 0, 0, 0, 6021, 6022, 5, 178, 0, 0, 6022, 6031, 3, 816, 408, 0, 6023, 6025, 5, 269, 0, 0, 6024, 6023, 1, 0, 0, 0, 6024, 6025, 1, 0, 0, 0, 6025, 6026, 1, 0, 0, 0, 6026, 6030, 5, 324, 0, 0, 6027, 6030, 5, 107, 0, 0, 6028, 6030, 5, 240, 0, 0, 6029, 6024, 1, 0, 0, 0, 6029, 6027, 1, 0, 0, 0, 6029, 6028, 1, 0, 0, 0, 6030, 6033, 1, 0, 0, 0, 6031, 6029, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6034, 1, 0, 0, 0, 6033, 6031, 1, 0, 0, 0, 6034, 6037, 5, 172, 0, 0, 6035, 6036, 7, 27, 0, 0, 6036, 6038, 5, 217, 0, 0, 6037, 6035, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6040, 5, 62, 0, 0, 6040, 6041, 3, 554, 277, 0, 6041, 553, 1, 0, 0, 0, 6042, 6045, 3, 558, 279, 0, 6043, 6045, 3, 556, 278, 0, 6044, 6042, 1, 0, 0, 0, 6044, 6043, 1, 0, 0, 0, 6045, 555, 1, 0, 0, 0, 6046, 6049, 5, 2, 0, 0, 6047, 6050, 3, 558, 279, 0, 6048, 6050, 3, 556, 278, 0, 6049, 6047, 1, 0, 0, 0, 6049, 6048, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 5, 3, 0, 0, 6052, 557, 1, 0, 0, 0, 6053, 6055, 3, 566, 283, 0, 6054, 6053, 1, 0, 0, 0, 6054, 6055, 1, 0, 0, 0, 6055, 6056, 1, 0, 0, 0, 6056, 6058, 3, 560, 280, 0, 6057, 6059, 3, 580, 290, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6068, 1, 0, 0, 0, 6060, 6062, 3, 600, 300, 0, 6061, 6063, 3, 584, 292, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6069, 1, 0, 0, 0, 6064, 6066, 3, 584, 292, 0, 6065, 6067, 3, 600, 300, 0, 6066, 6065, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6069, 1, 0, 0, 0, 6068, 6060, 1, 0, 0, 0, 6068, 6064, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 559, 1, 0, 0, 0, 6070, 6073, 3, 562, 281, 0, 6071, 6073, 3, 556, 278, 0, 6072, 6070, 1, 0, 0, 0, 6072, 6071, 1, 0, 0, 0, 6073, 561, 1, 0, 0, 0, 6074, 6084, 5, 88, 0, 0, 6075, 6077, 5, 30, 0, 0, 6076, 6075, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 6079, 1, 0, 0, 0, 6078, 6080, 3, 574, 287, 0, 6079, 6078, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6085, 1, 0, 0, 0, 6081, 6083, 3, 578, 289, 0, 6082, 6081, 1, 0, 0, 0, 6082, 6083, 1, 0, 0, 0, 6083, 6085, 1, 0, 0, 0, 6084, 6076, 1, 0, 0, 0, 6084, 6082, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 6097, 3, 928, 464, 0, 6087, 6097, 3, 602, 301, 0, 6088, 6089, 5, 92, 0, 0, 6089, 6097, 3, 618, 309, 0, 6090, 6091, 3, 556, 278, 0, 6091, 6094, 3, 564, 282, 0, 6092, 6095, 3, 562, 281, 0, 6093, 6095, 3, 556, 278, 0, 6094, 6092, 1, 0, 0, 0, 6094, 6093, 1, 0, 0, 0, 6095, 6097, 1, 0, 0, 0, 6096, 6074, 1, 0, 0, 0, 6096, 6087, 1, 0, 0, 0, 6096, 6088, 1, 0, 0, 0, 6096, 6090, 1, 0, 0, 0, 6097, 6105, 1, 0, 0, 0, 6098, 6101, 3, 564, 282, 0, 6099, 6102, 3, 562, 281, 0, 6100, 6102, 3, 556, 278, 0, 6101, 6099, 1, 0, 0, 0, 6101, 6100, 1, 0, 0, 0, 6102, 6104, 1, 0, 0, 0, 6103, 6098, 1, 0, 0, 0, 6104, 6107, 1, 0, 0, 0, 6105, 6103, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 563, 1, 0, 0, 0, 6107, 6105, 1, 0, 0, 0, 6108, 6110, 7, 80, 0, 0, 6109, 6111, 7, 81, 0, 0, 6110, 6109, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 565, 1, 0, 0, 0, 6112, 6114, 5, 105, 0, 0, 6113, 6115, 5, 303, 0, 0, 6114, 6113, 1, 0, 0, 0, 6114, 6115, 1, 0, 0, 0, 6115, 6116, 1, 0, 0, 0, 6116, 6121, 3, 568, 284, 0, 6117, 6118, 5, 6, 0, 0, 6118, 6120, 3, 568, 284, 0, 6119, 6117, 1, 0, 0, 0, 6120, 6123, 1, 0, 0, 0, 6121, 6119, 1, 0, 0, 0, 6121, 6122, 1, 0, 0, 0, 6122, 567, 1, 0, 0, 0, 6123, 6121, 1, 0, 0, 0, 6124, 6126, 3, 816, 408, 0, 6125, 6127, 3, 138, 69, 0, 6126, 6125, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 6133, 5, 36, 0, 0, 6129, 6131, 5, 77, 0, 0, 6130, 6129, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 6134, 5, 259, 0, 0, 6133, 6130, 1, 0, 0, 0, 6133, 6134, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 5, 2, 0, 0, 6136, 6137, 3, 524, 262, 0, 6137, 6139, 5, 3, 0, 0, 6138, 6140, 3, 570, 285, 0, 6139, 6138, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6142, 1, 0, 0, 0, 6141, 6143, 3, 572, 286, 0, 6142, 6141, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 569, 1, 0, 0, 0, 6144, 6145, 5, 325, 0, 0, 6145, 6146, 7, 82, 0, 0, 6146, 6147, 5, 207, 0, 0, 6147, 6148, 5, 147, 0, 0, 6148, 6149, 3, 142, 71, 0, 6149, 6150, 5, 333, 0, 0, 6150, 6151, 3, 796, 398, 0, 6151, 571, 1, 0, 0, 0, 6152, 6153, 5, 173, 0, 0, 6153, 6154, 3, 142, 71, 0, 6154, 6155, 5, 333, 0, 0, 6155, 6161, 3, 796, 398, 0, 6156, 6157, 5, 94, 0, 0, 6157, 6158, 3, 816, 408, 0, 6158, 6159, 5, 53, 0, 0, 6159, 6160, 3, 816, 408, 0, 6160, 6162, 1, 0, 0, 0, 6161, 6156, 1, 0, 0, 0, 6161, 6162, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 6164, 5, 100, 0, 0, 6164, 6165, 3, 796, 398, 0, 6165, 573, 1, 0, 0, 0, 6166, 6172, 5, 71, 0, 0, 6167, 6169, 5, 346, 0, 0, 6168, 6167, 1, 0, 0, 0, 6168, 6169, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 6173, 3, 576, 288, 0, 6171, 6173, 3, 726, 363, 0, 6172, 6168, 1, 0, 0, 0, 6172, 6171, 1, 0, 0, 0, 6173, 575, 1, 0, 0, 0, 6174, 6176, 7, 21, 0, 0, 6175, 6174, 1, 0, 0, 0, 6175, 6176, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6179, 7, 22, 0, 0, 6178, 6180, 5, 92, 0, 0, 6179, 6178, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 6190, 3, 768, 384, 0, 6182, 6184, 5, 367, 0, 0, 6183, 6182, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6186, 1, 0, 0, 0, 6185, 6187, 5, 92, 0, 0, 6186, 6185, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6190, 3, 768, 384, 0, 6189, 6175, 1, 0, 0, 0, 6189, 6183, 1, 0, 0, 0, 6190, 577, 1, 0, 0, 0, 6191, 6194, 5, 56, 0, 0, 6192, 6193, 5, 80, 0, 0, 6193, 6195, 3, 528, 264, 0, 6194, 6192, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 579, 1, 0, 0, 0, 6196, 6197, 5, 83, 0, 0, 6197, 6198, 5, 147, 0, 0, 6198, 6203, 3, 582, 291, 0, 6199, 6200, 5, 6, 0, 0, 6200, 6202, 3, 582, 291, 0, 6201, 6199, 1, 0, 0, 0, 6202, 6205, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 581, 1, 0, 0, 0, 6205, 6203, 1, 0, 0, 0, 6206, 6210, 3, 730, 365, 0, 6207, 6208, 5, 100, 0, 0, 6208, 6211, 3, 722, 361, 0, 6209, 6211, 7, 56, 0, 0, 6210, 6207, 1, 0, 0, 0, 6210, 6209, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6214, 1, 0, 0, 0, 6212, 6213, 5, 273, 0, 0, 6213, 6215, 7, 57, 0, 0, 6214, 6212, 1, 0, 0, 0, 6214, 6215, 1, 0, 0, 0, 6215, 583, 1, 0, 0, 0, 6216, 6218, 3, 590, 295, 0, 6217, 6219, 3, 588, 294, 0, 6218, 6217, 1, 0, 0, 0, 6218, 6219, 1, 0, 0, 0, 6219, 6228, 1, 0, 0, 0, 6220, 6223, 3, 586, 293, 0, 6221, 6223, 3, 588, 294, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6221, 1, 0, 0, 0, 6223, 6225, 1, 0, 0, 0, 6224, 6226, 3, 590, 295, 0, 6225, 6224, 1, 0, 0, 0, 6225, 6226, 1, 0, 0, 0, 6226, 6228, 1, 0, 0, 0, 6227, 6216, 1, 0, 0, 0, 6227, 6222, 1, 0, 0, 0, 6228, 585, 1, 0, 0, 0, 6229, 6232, 5, 74, 0, 0, 6230, 6233, 3, 668, 334, 0, 6231, 6233, 5, 30, 0, 0, 6232, 6230, 1, 0, 0, 0, 6232, 6231, 1, 0, 0, 0, 6233, 6236, 1, 0, 0, 0, 6234, 6235, 5, 6, 0, 0, 6235, 6237, 3, 668, 334, 0, 6236, 6234, 1, 0, 0, 0, 6236, 6237, 1, 0, 0, 0, 6237, 587, 1, 0, 0, 0, 6238, 6239, 5, 61, 0, 0, 6239, 6241, 7, 83, 0, 0, 6240, 6242, 3, 592, 296, 0, 6241, 6240, 1, 0, 0, 0, 6241, 6242, 1, 0, 0, 0, 6242, 6243, 1, 0, 0, 0, 6243, 6247, 7, 84, 0, 0, 6244, 6248, 5, 81, 0, 0, 6245, 6246, 5, 105, 0, 0, 6246, 6248, 5, 467, 0, 0, 6247, 6244, 1, 0, 0, 0, 6247, 6245, 1, 0, 0, 0, 6248, 589, 1, 0, 0, 0, 6249, 6254, 5, 79, 0, 0, 6250, 6251, 3, 592, 296, 0, 6251, 6252, 7, 84, 0, 0, 6252, 6255, 1, 0, 0, 0, 6253, 6255, 3, 668, 334, 0, 6254, 6250, 1, 0, 0, 0, 6254, 6253, 1, 0, 0, 0, 6255, 591, 1, 0, 0, 0, 6256, 6257, 7, 30, 0, 0, 6257, 6260, 7, 85, 0, 0, 6258, 6260, 3, 676, 338, 0, 6259, 6256, 1, 0, 0, 0, 6259, 6258, 1, 0, 0, 0, 6260, 593, 1, 0, 0, 0, 6261, 6262, 5, 66, 0, 0, 6262, 6264, 5, 147, 0, 0, 6263, 6265, 7, 81, 0, 0, 6264, 6263, 1, 0, 0, 0, 6264, 6265, 1, 0, 0, 0, 6265, 6266, 1, 0, 0, 0, 6266, 6267, 3, 596, 298, 0, 6267, 595, 1, 0, 0, 0, 6268, 6273, 3, 598, 299, 0, 6269, 6270, 5, 6, 0, 0, 6270, 6272, 3, 598, 299, 0, 6271, 6269, 1, 0, 0, 0, 6272, 6275, 1, 0, 0, 0, 6273, 6271, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 597, 1, 0, 0, 0, 6275, 6273, 1, 0, 0, 0, 6276, 6300, 3, 730, 365, 0, 6277, 6278, 5, 2, 0, 0, 6278, 6300, 5, 3, 0, 0, 6279, 6281, 7, 86, 0, 0, 6280, 6279, 1, 0, 0, 0, 6280, 6281, 1, 0, 0, 0, 6281, 6282, 1, 0, 0, 0, 6282, 6283, 5, 2, 0, 0, 6283, 6288, 3, 730, 365, 0, 6284, 6285, 5, 6, 0, 0, 6285, 6287, 3, 730, 365, 0, 6286, 6284, 1, 0, 0, 0, 6287, 6290, 1, 0, 0, 0, 6288, 6286, 1, 0, 0, 0, 6288, 6289, 1, 0, 0, 0, 6289, 6291, 1, 0, 0, 0, 6290, 6288, 1, 0, 0, 0, 6291, 6292, 5, 3, 0, 0, 6292, 6300, 1, 0, 0, 0, 6293, 6294, 5, 470, 0, 0, 6294, 6295, 5, 471, 0, 0, 6295, 6296, 5, 2, 0, 0, 6296, 6297, 3, 596, 298, 0, 6297, 6298, 5, 3, 0, 0, 6298, 6300, 1, 0, 0, 0, 6299, 6276, 1, 0, 0, 0, 6299, 6277, 1, 0, 0, 0, 6299, 6280, 1, 0, 0, 0, 6299, 6293, 1, 0, 0, 0, 6300, 599, 1, 0, 0, 0, 6301, 6311, 5, 62, 0, 0, 6302, 6303, 5, 269, 0, 0, 6303, 6305, 5, 245, 0, 0, 6304, 6302, 1, 0, 0, 0, 6304, 6305, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 6312, 5, 369, 0, 0, 6307, 6309, 5, 245, 0, 0, 6308, 6307, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6310, 1, 0, 0, 0, 6310, 6312, 5, 334, 0, 0, 6311, 6304, 1, 0, 0, 0, 6311, 6308, 1, 0, 0, 0, 6312, 6315, 1, 0, 0, 0, 6313, 6314, 5, 275, 0, 0, 6314, 6316, 3, 756, 378, 0, 6315, 6313, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6320, 1, 0, 0, 0, 6317, 6321, 5, 272, 0, 0, 6318, 6319, 5, 465, 0, 0, 6319, 6321, 5, 466, 0, 0, 6320, 6317, 1, 0, 0, 0, 6320, 6318, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6323, 1, 0, 0, 0, 6322, 6301, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6322, 1, 0, 0, 0, 6324, 6325, 1, 0, 0, 0, 6325, 6330, 1, 0, 0, 0, 6326, 6327, 5, 62, 0, 0, 6327, 6328, 5, 300, 0, 0, 6328, 6330, 5, 81, 0, 0, 6329, 6322, 1, 0, 0, 0, 6329, 6326, 1, 0, 0, 0, 6330, 601, 1, 0, 0, 0, 6331, 6332, 5, 422, 0, 0, 6332, 6337, 3, 528, 264, 0, 6333, 6334, 5, 6, 0, 0, 6334, 6336, 3, 528, 264, 0, 6335, 6333, 1, 0, 0, 0, 6336, 6339, 1, 0, 0, 0, 6337, 6335, 1, 0, 0, 0, 6337, 6338, 1, 0, 0, 0, 6338, 603, 1, 0, 0, 0, 6339, 6337, 1, 0, 0, 0, 6340, 6341, 5, 64, 0, 0, 6341, 6342, 3, 606, 303, 0, 6342, 605, 1, 0, 0, 0, 6343, 6348, 3, 608, 304, 0, 6344, 6345, 5, 6, 0, 0, 6345, 6347, 3, 608, 304, 0, 6346, 6344, 1, 0, 0, 0, 6347, 6350, 1, 0, 0, 0, 6348, 6346, 1, 0, 0, 0, 6348, 6349, 1, 0, 0, 0, 6349, 607, 1, 0, 0, 0, 6350, 6348, 1, 0, 0, 0, 6351, 6366, 3, 618, 309, 0, 6352, 6354, 5, 81, 0, 0, 6353, 6352, 1, 0, 0, 0, 6353, 6354, 1, 0, 0, 0, 6354, 6355, 1, 0, 0, 0, 6355, 6357, 3, 774, 387, 0, 6356, 6358, 5, 9, 0, 0, 6357, 6356, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 1, 0, 0, 0, 6359, 6361, 3, 142, 71, 0, 6360, 6359, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 6363, 1, 0, 0, 0, 6362, 6364, 3, 632, 316, 0, 6363, 6362, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6366, 1, 0, 0, 0, 6365, 6351, 1, 0, 0, 0, 6365, 6353, 1, 0, 0, 0, 6366, 6368, 1, 0, 0, 0, 6367, 6369, 3, 610, 305, 0, 6368, 6367, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 6371, 1, 0, 0, 0, 6370, 6372, 3, 626, 313, 0, 6371, 6370, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6415, 1, 0, 0, 0, 6373, 6375, 5, 72, 0, 0, 6374, 6373, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6388, 1, 0, 0, 0, 6376, 6378, 3, 640, 320, 0, 6377, 6379, 3, 610, 305, 0, 6378, 6377, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6389, 1, 0, 0, 0, 6380, 6382, 3, 628, 314, 0, 6381, 6383, 3, 612, 306, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6389, 1, 0, 0, 0, 6384, 6386, 3, 556, 278, 0, 6385, 6387, 3, 610, 305, 0, 6386, 6385, 1, 0, 0, 0, 6386, 6387, 1, 0, 0, 0, 6387, 6389, 1, 0, 0, 0, 6388, 6376, 1, 0, 0, 0, 6388, 6380, 1, 0, 0, 0, 6388, 6384, 1, 0, 0, 0, 6389, 6415, 1, 0, 0, 0, 6390, 6391, 5, 2, 0, 0, 6391, 6408, 3, 608, 304, 0, 6392, 6393, 5, 110, 0, 0, 6393, 6394, 5, 118, 0, 0, 6394, 6409, 3, 608, 304, 0, 6395, 6397, 5, 121, 0, 0, 6396, 6398, 3, 614, 307, 0, 6397, 6396, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6400, 5, 118, 0, 0, 6400, 6409, 3, 608, 304, 0, 6401, 6403, 3, 614, 307, 0, 6402, 6401, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6405, 5, 118, 0, 0, 6405, 6406, 3, 608, 304, 0, 6406, 6407, 3, 616, 308, 0, 6407, 6409, 1, 0, 0, 0, 6408, 6392, 1, 0, 0, 0, 6408, 6395, 1, 0, 0, 0, 6408, 6402, 1, 0, 0, 0, 6408, 6409, 1, 0, 0, 0, 6409, 6410, 1, 0, 0, 0, 6410, 6412, 5, 3, 0, 0, 6411, 6413, 3, 610, 305, 0, 6412, 6411, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6415, 1, 0, 0, 0, 6414, 6365, 1, 0, 0, 0, 6414, 6374, 1, 0, 0, 0, 6414, 6390, 1, 0, 0, 0, 6415, 6434, 1, 0, 0, 0, 6416, 6417, 5, 110, 0, 0, 6417, 6418, 5, 118, 0, 0, 6418, 6433, 3, 608, 304, 0, 6419, 6421, 5, 121, 0, 0, 6420, 6422, 3, 614, 307, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 5, 118, 0, 0, 6424, 6433, 3, 608, 304, 0, 6425, 6427, 3, 614, 307, 0, 6426, 6425, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6429, 5, 118, 0, 0, 6429, 6430, 3, 608, 304, 0, 6430, 6431, 3, 616, 308, 0, 6431, 6433, 1, 0, 0, 0, 6432, 6416, 1, 0, 0, 0, 6432, 6419, 1, 0, 0, 0, 6432, 6426, 1, 0, 0, 0, 6433, 6436, 1, 0, 0, 0, 6434, 6432, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 609, 1, 0, 0, 0, 6436, 6434, 1, 0, 0, 0, 6437, 6439, 5, 36, 0, 0, 6438, 6437, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 6440, 1, 0, 0, 0, 6440, 6445, 3, 816, 408, 0, 6441, 6442, 5, 2, 0, 0, 6442, 6443, 3, 780, 390, 0, 6443, 6444, 5, 3, 0, 0, 6444, 6446, 1, 0, 0, 0, 6445, 6441, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 611, 1, 0, 0, 0, 6447, 6460, 3, 610, 305, 0, 6448, 6450, 5, 36, 0, 0, 6449, 6451, 3, 816, 408, 0, 6450, 6449, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6454, 1, 0, 0, 0, 6452, 6454, 3, 816, 408, 0, 6453, 6448, 1, 0, 0, 0, 6453, 6452, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 6456, 5, 2, 0, 0, 6456, 6457, 3, 636, 318, 0, 6457, 6458, 5, 3, 0, 0, 6458, 6460, 1, 0, 0, 0, 6459, 6447, 1, 0, 0, 0, 6459, 6453, 1, 0, 0, 0, 6460, 613, 1, 0, 0, 0, 6461, 6463, 7, 87, 0, 0, 6462, 6464, 5, 123, 0, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 615, 1, 0, 0, 0, 6465, 6466, 5, 100, 0, 0, 6466, 6470, 3, 138, 69, 0, 6467, 6468, 5, 80, 0, 0, 6468, 6470, 3, 668, 334, 0, 6469, 6465, 1, 0, 0, 0, 6469, 6467, 1, 0, 0, 0, 6470, 617, 1, 0, 0, 0, 6471, 6487, 3, 316, 158, 0, 6472, 6478, 5, 81, 0, 0, 6473, 6479, 3, 770, 385, 0, 6474, 6475, 5, 2, 0, 0, 6475, 6476, 3, 770, 385, 0, 6476, 6477, 5, 3, 0, 0, 6477, 6479, 1, 0, 0, 0, 6478, 6473, 1, 0, 0, 0, 6478, 6474, 1, 0, 0, 0, 6479, 6487, 1, 0, 0, 0, 6480, 6481, 5, 68, 0, 0, 6481, 6484, 5, 323, 0, 0, 6482, 6485, 3, 786, 393, 0, 6483, 6485, 5, 111, 0, 0, 6484, 6482, 1, 0, 0, 0, 6484, 6483, 1, 0, 0, 0, 6485, 6487, 1, 0, 0, 0, 6486, 6471, 1, 0, 0, 0, 6486, 6472, 1, 0, 0, 0, 6486, 6480, 1, 0, 0, 0, 6487, 619, 1, 0, 0, 0, 6488, 6489, 5, 92, 0, 0, 6489, 6491, 3, 316, 158, 0, 6490, 6492, 3, 138, 69, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6494, 1, 0, 0, 0, 6493, 6495, 3, 632, 316, 0, 6494, 6493, 1, 0, 0, 0, 6494, 6495, 1, 0, 0, 0, 6495, 6513, 1, 0, 0, 0, 6496, 6497, 5, 92, 0, 0, 6497, 6503, 5, 81, 0, 0, 6498, 6504, 3, 770, 385, 0, 6499, 6500, 5, 2, 0, 0, 6500, 6501, 3, 770, 385, 0, 6501, 6502, 5, 3, 0, 0, 6502, 6504, 1, 0, 0, 0, 6503, 6498, 1, 0, 0, 0, 6503, 6499, 1, 0, 0, 0, 6504, 6513, 1, 0, 0, 0, 6505, 6506, 5, 350, 0, 0, 6506, 6507, 5, 68, 0, 0, 6507, 6510, 5, 323, 0, 0, 6508, 6511, 3, 786, 393, 0, 6509, 6511, 5, 111, 0, 0, 6510, 6508, 1, 0, 0, 0, 6510, 6509, 1, 0, 0, 0, 6511, 6513, 1, 0, 0, 0, 6512, 6488, 1, 0, 0, 0, 6512, 6496, 1, 0, 0, 0, 6512, 6505, 1, 0, 0, 0, 6513, 621, 1, 0, 0, 0, 6514, 6519, 3, 618, 309, 0, 6515, 6516, 5, 6, 0, 0, 6516, 6518, 3, 618, 309, 0, 6517, 6515, 1, 0, 0, 0, 6518, 6521, 1, 0, 0, 0, 6519, 6517, 1, 0, 0, 0, 6519, 6520, 1, 0, 0, 0, 6520, 623, 1, 0, 0, 0, 6521, 6519, 1, 0, 0, 0, 6522, 6527, 3, 618, 309, 0, 6523, 6525, 5, 36, 0, 0, 6524, 6523, 1, 0, 0, 0, 6524, 6525, 1, 0, 0, 0, 6525, 6526, 1, 0, 0, 0, 6526, 6528, 3, 816, 408, 0, 6527, 6524, 1, 0, 0, 0, 6527, 6528, 1, 0, 0, 0, 6528, 625, 1, 0, 0, 0, 6529, 6530, 5, 472, 0, 0, 6530, 6531, 3, 804, 402, 0, 6531, 6537, 3, 528, 264, 0, 6532, 6533, 5, 310, 0, 0, 6533, 6534, 5, 2, 0, 0, 6534, 6535, 3, 668, 334, 0, 6535, 6536, 5, 3, 0, 0, 6536, 6538, 1, 0, 0, 0, 6537, 6532, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 627, 1, 0, 0, 0, 6539, 6554, 3, 682, 341, 0, 6540, 6541, 5, 320, 0, 0, 6541, 6542, 5, 64, 0, 0, 6542, 6543, 5, 2, 0, 0, 6543, 6548, 3, 630, 315, 0, 6544, 6545, 5, 6, 0, 0, 6545, 6547, 3, 630, 315, 0, 6546, 6544, 1, 0, 0, 0, 6547, 6550, 1, 0, 0, 0, 6548, 6546, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 6551, 1, 0, 0, 0, 6550, 6548, 1, 0, 0, 0, 6551, 6552, 5, 3, 0, 0, 6552, 6554, 1, 0, 0, 0, 6553, 6539, 1, 0, 0, 0, 6553, 6540, 1, 0, 0, 0, 6554, 6557, 1, 0, 0, 0, 6555, 6556, 5, 105, 0, 0, 6556, 6558, 5, 473, 0, 0, 6557, 6555, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 629, 1, 0, 0, 0, 6559, 6565, 3, 682, 341, 0, 6560, 6561, 5, 36, 0, 0, 6561, 6562, 5, 2, 0, 0, 6562, 6563, 3, 636, 318, 0, 6563, 6564, 5, 3, 0, 0, 6564, 6566, 1, 0, 0, 0, 6565, 6560, 1, 0, 0, 0, 6565, 6566, 1, 0, 0, 0, 6566, 631, 1, 0, 0, 0, 6567, 6568, 5, 103, 0, 0, 6568, 6569, 3, 730, 365, 0, 6569, 633, 1, 0, 0, 0, 6570, 6575, 5, 103, 0, 0, 6571, 6572, 5, 434, 0, 0, 6572, 6573, 5, 275, 0, 0, 6573, 6576, 3, 816, 408, 0, 6574, 6576, 3, 668, 334, 0, 6575, 6571, 1, 0, 0, 0, 6575, 6574, 1, 0, 0, 0, 6576, 635, 1, 0, 0, 0, 6577, 6582, 3, 638, 319, 0, 6578, 6579, 5, 6, 0, 0, 6579, 6581, 3, 638, 319, 0, 6580, 6578, 1, 0, 0, 0, 6581, 6584, 1, 0, 0, 0, 6582, 6580, 1, 0, 0, 0, 6582, 6583, 1, 0, 0, 0, 6583, 637, 1, 0, 0, 0, 6584, 6582, 1, 0, 0, 0, 6585, 6586, 3, 816, 408, 0, 6586, 6588, 3, 646, 323, 0, 6587, 6589, 3, 90, 45, 0, 6588, 6587, 1, 0, 0, 0, 6588, 6589, 1, 0, 0, 0, 6589, 639, 1, 0, 0, 0, 6590, 6591, 5, 474, 0, 0, 6591, 6605, 5, 2, 0, 0, 6592, 6593, 5, 476, 0, 0, 6593, 6594, 5, 2, 0, 0, 6594, 6599, 3, 644, 322, 0, 6595, 6596, 5, 6, 0, 0, 6596, 6598, 3, 644, 322, 0, 6597, 6595, 1, 0, 0, 0, 6598, 6601, 1, 0, 0, 0, 6599, 6597, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 6602, 1, 0, 0, 0, 6601, 6599, 1, 0, 0, 0, 6602, 6603, 5, 3, 0, 0, 6603, 6604, 5, 6, 0, 0, 6604, 6606, 1, 0, 0, 0, 6605, 6592, 1, 0, 0, 0, 6605, 6606, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 6608, 3, 676, 338, 0, 6608, 6609, 3, 692, 346, 0, 6609, 6610, 5, 475, 0, 0, 6610, 6615, 3, 642, 321, 0, 6611, 6612, 5, 6, 0, 0, 6612, 6614, 3, 642, 321, 0, 6613, 6611, 1, 0, 0, 0, 6614, 6617, 1, 0, 0, 0, 6615, 6613, 1, 0, 0, 0, 6615, 6616, 1, 0, 0, 0, 6616, 6618, 1, 0, 0, 0, 6617, 6615, 1, 0, 0, 0, 6618, 6619, 5, 3, 0, 0, 6619, 641, 1, 0, 0, 0, 6620, 6639, 3, 816, 408, 0, 6621, 6635, 3, 646, 323, 0, 6622, 6625, 5, 53, 0, 0, 6623, 6625, 3, 824, 412, 0, 6624, 6622, 1, 0, 0, 0, 6624, 6623, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6632, 3, 668, 334, 0, 6627, 6629, 5, 77, 0, 0, 6628, 6627, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6630, 1, 0, 0, 0, 6630, 6632, 5, 78, 0, 0, 6631, 6624, 1, 0, 0, 0, 6631, 6628, 1, 0, 0, 0, 6632, 6633, 1, 0, 0, 0, 6633, 6631, 1, 0, 0, 0, 6633, 6634, 1, 0, 0, 0, 6634, 6636, 1, 0, 0, 0, 6635, 6631, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6640, 1, 0, 0, 0, 6637, 6638, 5, 62, 0, 0, 6638, 6640, 5, 473, 0, 0, 6639, 6621, 1, 0, 0, 0, 6639, 6637, 1, 0, 0, 0, 6640, 643, 1, 0, 0, 0, 6641, 6642, 3, 676, 338, 0, 6642, 6643, 5, 36, 0, 0, 6643, 6644, 3, 822, 411, 0, 6644, 6648, 1, 0, 0, 0, 6645, 6646, 5, 53, 0, 0, 6646, 6648, 3, 676, 338, 0, 6647, 6641, 1, 0, 0, 0, 6647, 6645, 1, 0, 0, 0, 6648, 645, 1, 0, 0, 0, 6649, 6651, 5, 415, 0, 0, 6650, 6649, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6669, 3, 648, 324, 0, 6653, 6655, 5, 4, 0, 0, 6654, 6656, 5, 574, 0, 0, 6655, 6654, 1, 0, 0, 0, 6655, 6656, 1, 0, 0, 0, 6656, 6657, 1, 0, 0, 0, 6657, 6659, 5, 5, 0, 0, 6658, 6653, 1, 0, 0, 0, 6659, 6662, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6670, 1, 0, 0, 0, 6662, 6660, 1, 0, 0, 0, 6663, 6667, 5, 35, 0, 0, 6664, 6665, 5, 4, 0, 0, 6665, 6666, 5, 574, 0, 0, 6666, 6668, 5, 5, 0, 0, 6667, 6664, 1, 0, 0, 0, 6667, 6668, 1, 0, 0, 0, 6668, 6670, 1, 0, 0, 0, 6669, 6660, 1, 0, 0, 0, 6669, 6663, 1, 0, 0, 0, 6670, 6676, 1, 0, 0, 0, 6671, 6672, 3, 776, 388, 0, 6672, 6673, 5, 27, 0, 0, 6673, 6674, 7, 88, 0, 0, 6674, 6676, 1, 0, 0, 0, 6675, 6650, 1, 0, 0, 0, 6675, 6671, 1, 0, 0, 0, 6676, 647, 1, 0, 0, 0, 6677, 6679, 3, 818, 409, 0, 6678, 6680, 3, 312, 156, 0, 6679, 6678, 1, 0, 0, 0, 6679, 6680, 1, 0, 0, 0, 6680, 6682, 1, 0, 0, 0, 6681, 6683, 3, 528, 264, 0, 6682, 6681, 1, 0, 0, 0, 6682, 6683, 1, 0, 0, 0, 6683, 6693, 1, 0, 0, 0, 6684, 6693, 3, 650, 325, 0, 6685, 6690, 5, 403, 0, 0, 6686, 6688, 3, 662, 331, 0, 6687, 6686, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6691, 1, 0, 0, 0, 6689, 6691, 3, 654, 327, 0, 6690, 6687, 1, 0, 0, 0, 6690, 6689, 1, 0, 0, 0, 6691, 6693, 1, 0, 0, 0, 6692, 6677, 1, 0, 0, 0, 6692, 6684, 1, 0, 0, 0, 6692, 6685, 1, 0, 0, 0, 6693, 649, 1, 0, 0, 0, 6694, 6699, 3, 652, 326, 0, 6695, 6699, 3, 656, 328, 0, 6696, 6699, 3, 658, 329, 0, 6697, 6699, 3, 660, 330, 0, 6698, 6694, 1, 0, 0, 0, 6698, 6695, 1, 0, 0, 0, 6698, 6696, 1, 0, 0, 0, 6698, 6697, 1, 0, 0, 0, 6699, 651, 1, 0, 0, 0, 6700, 6717, 5, 401, 0, 0, 6701, 6717, 5, 402, 0, 0, 6702, 6717, 5, 416, 0, 0, 6703, 6717, 5, 388, 0, 0, 6704, 6717, 5, 413, 0, 0, 6705, 6707, 5, 398, 0, 0, 6706, 6708, 3, 654, 327, 0, 6707, 6706, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6717, 1, 0, 0, 0, 6709, 6710, 5, 190, 0, 0, 6710, 6717, 5, 412, 0, 0, 6711, 6713, 7, 89, 0, 0, 6712, 6714, 3, 528, 264, 0, 6713, 6712, 1, 0, 0, 0, 6713, 6714, 1, 0, 0, 0, 6714, 6717, 1, 0, 0, 0, 6715, 6717, 5, 390, 0, 0, 6716, 6700, 1, 0, 0, 0, 6716, 6701, 1, 0, 0, 0, 6716, 6702, 1, 0, 0, 0, 6716, 6703, 1, 0, 0, 0, 6716, 6704, 1, 0, 0, 0, 6716, 6705, 1, 0, 0, 0, 6716, 6709, 1, 0, 0, 0, 6716, 6711, 1, 0, 0, 0, 6716, 6715, 1, 0, 0, 0, 6717, 653, 1, 0, 0, 0, 6718, 6719, 5, 2, 0, 0, 6719, 6720, 5, 574, 0, 0, 6720, 6721, 5, 3, 0, 0, 6721, 655, 1, 0, 0, 0, 6722, 6724, 5, 389, 0, 0, 6723, 6725, 5, 374, 0, 0, 6724, 6723, 1, 0, 0, 0, 6724, 6725, 1, 0, 0, 0, 6725, 6727, 1, 0, 0, 0, 6726, 6728, 3, 528, 264, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 657, 1, 0, 0, 0, 6729, 6731, 7, 90, 0, 0, 6730, 6732, 5, 374, 0, 0, 6731, 6730, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6740, 1, 0, 0, 0, 6733, 6740, 5, 423, 0, 0, 6734, 6735, 5, 405, 0, 0, 6735, 6737, 7, 91, 0, 0, 6736, 6738, 5, 374, 0, 0, 6737, 6736, 1, 0, 0, 0, 6737, 6738, 1, 0, 0, 0, 6738, 6740, 1, 0, 0, 0, 6739, 6729, 1, 0, 0, 0, 6739, 6733, 1, 0, 0, 0, 6739, 6734, 1, 0, 0, 0, 6740, 6742, 1, 0, 0, 0, 6741, 6743, 3, 654, 327, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 659, 1, 0, 0, 0, 6744, 6746, 7, 92, 0, 0, 6745, 6747, 3, 654, 327, 0, 6746, 6745, 1, 0, 0, 0, 6746, 6747, 1, 0, 0, 0, 6747, 6751, 1, 0, 0, 0, 6748, 6749, 7, 27, 0, 0, 6749, 6750, 5, 418, 0, 0, 6750, 6752, 5, 386, 0, 0, 6751, 6748, 1, 0, 0, 0, 6751, 6752, 1, 0, 0, 0, 6752, 661, 1, 0, 0, 0, 6753, 6783, 5, 264, 0, 0, 6754, 6783, 3, 664, 332, 0, 6755, 6758, 5, 384, 0, 0, 6756, 6757, 5, 94, 0, 0, 6757, 6759, 5, 264, 0, 0, 6758, 6756, 1, 0, 0, 0, 6758, 6759, 1, 0, 0, 0, 6759, 6783, 1, 0, 0, 0, 6760, 6767, 5, 176, 0, 0, 6761, 6765, 5, 94, 0, 0, 6762, 6766, 5, 218, 0, 0, 6763, 6766, 5, 261, 0, 0, 6764, 6766, 3, 664, 332, 0, 6765, 6762, 1, 0, 0, 0, 6765, 6763, 1, 0, 0, 0, 6765, 6764, 1, 0, 0, 0, 6766, 6768, 1, 0, 0, 0, 6767, 6761, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6783, 1, 0, 0, 0, 6769, 6775, 5, 218, 0, 0, 6770, 6773, 5, 94, 0, 0, 6771, 6774, 5, 261, 0, 0, 6772, 6774, 3, 664, 332, 0, 6773, 6771, 1, 0, 0, 0, 6773, 6772, 1, 0, 0, 0, 6774, 6776, 1, 0, 0, 0, 6775, 6770, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 6783, 1, 0, 0, 0, 6777, 6780, 5, 261, 0, 0, 6778, 6779, 5, 94, 0, 0, 6779, 6781, 3, 664, 332, 0, 6780, 6778, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 6783, 1, 0, 0, 0, 6782, 6753, 1, 0, 0, 0, 6782, 6754, 1, 0, 0, 0, 6782, 6755, 1, 0, 0, 0, 6782, 6760, 1, 0, 0, 0, 6782, 6769, 1, 0, 0, 0, 6782, 6777, 1, 0, 0, 0, 6783, 663, 1, 0, 0, 0, 6784, 6786, 5, 326, 0, 0, 6785, 6787, 3, 654, 327, 0, 6786, 6785, 1, 0, 0, 0, 6786, 6787, 1, 0, 0, 0, 6787, 665, 1, 0, 0, 0, 6788, 6789, 7, 93, 0, 0, 6789, 667, 1, 0, 0, 0, 6790, 6791, 3, 670, 335, 0, 6791, 669, 1, 0, 0, 0, 6792, 6793, 6, 335, -1, 0, 6793, 6795, 3, 674, 337, 0, 6794, 6796, 3, 672, 336, 0, 6795, 6794, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6800, 1, 0, 0, 0, 6797, 6798, 5, 77, 0, 0, 6798, 6800, 3, 670, 335, 3, 6799, 6792, 1, 0, 0, 0, 6799, 6797, 1, 0, 0, 0, 6800, 6809, 1, 0, 0, 0, 6801, 6802, 10, 2, 0, 0, 6802, 6803, 5, 33, 0, 0, 6803, 6808, 3, 670, 335, 3, 6804, 6805, 10, 1, 0, 0, 6805, 6806, 5, 82, 0, 0, 6806, 6808, 3, 670, 335, 2, 6807, 6801, 1, 0, 0, 0, 6807, 6804, 1, 0, 0, 0, 6808, 6811, 1, 0, 0, 0, 6809, 6807, 1, 0, 0, 0, 6809, 6810, 1, 0, 0, 0, 6810, 671, 1, 0, 0, 0, 6811, 6809, 1, 0, 0, 0, 6812, 6813, 3, 666, 333, 0, 6813, 6814, 3, 674, 337, 0, 6814, 6884, 1, 0, 0, 0, 6815, 6816, 3, 666, 333, 0, 6816, 6817, 3, 724, 362, 0, 6817, 6823, 3, 714, 357, 0, 6818, 6824, 3, 556, 278, 0, 6819, 6820, 5, 2, 0, 0, 6820, 6821, 3, 668, 334, 0, 6821, 6822, 5, 3, 0, 0, 6822, 6824, 1, 0, 0, 0, 6823, 6818, 1, 0, 0, 0, 6823, 6819, 1, 0, 0, 0, 6824, 6884, 1, 0, 0, 0, 6825, 6827, 5, 77, 0, 0, 6826, 6825, 1, 0, 0, 0, 6826, 6827, 1, 0, 0, 0, 6827, 6828, 1, 0, 0, 0, 6828, 6829, 5, 387, 0, 0, 6829, 6830, 3, 674, 337, 0, 6830, 6831, 5, 33, 0, 0, 6831, 6832, 3, 674, 337, 0, 6832, 6884, 1, 0, 0, 0, 6833, 6835, 5, 77, 0, 0, 6834, 6833, 1, 0, 0, 0, 6834, 6835, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6837, 5, 68, 0, 0, 6837, 6838, 5, 2, 0, 0, 6838, 6843, 3, 668, 334, 0, 6839, 6840, 5, 6, 0, 0, 6840, 6842, 3, 668, 334, 0, 6841, 6839, 1, 0, 0, 0, 6842, 6845, 1, 0, 0, 0, 6843, 6841, 1, 0, 0, 0, 6843, 6844, 1, 0, 0, 0, 6844, 6846, 1, 0, 0, 0, 6845, 6843, 1, 0, 0, 0, 6846, 6847, 5, 3, 0, 0, 6847, 6884, 1, 0, 0, 0, 6848, 6850, 5, 77, 0, 0, 6849, 6848, 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6851, 1, 0, 0, 0, 6851, 6852, 5, 68, 0, 0, 6852, 6884, 3, 556, 278, 0, 6853, 6855, 5, 77, 0, 0, 6854, 6853, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6864, 1, 0, 0, 0, 6856, 6865, 5, 120, 0, 0, 6857, 6865, 5, 114, 0, 0, 6858, 6859, 5, 127, 0, 0, 6859, 6865, 5, 94, 0, 0, 6860, 6862, 5, 387, 0, 0, 6861, 6863, 5, 91, 0, 0, 6862, 6861, 1, 0, 0, 0, 6862, 6863, 1, 0, 0, 0, 6863, 6865, 1, 0, 0, 0, 6864, 6856, 1, 0, 0, 0, 6864, 6857, 1, 0, 0, 0, 6864, 6858, 1, 0, 0, 0, 6864, 6860, 1, 0, 0, 0, 6865, 6866, 1, 0, 0, 0, 6866, 6869, 3, 674, 337, 0, 6867, 6868, 5, 197, 0, 0, 6868, 6870, 3, 674, 337, 0, 6869, 6867, 1, 0, 0, 0, 6869, 6870, 1, 0, 0, 0, 6870, 6884, 1, 0, 0, 0, 6871, 6873, 5, 116, 0, 0, 6872, 6874, 5, 77, 0, 0, 6873, 6872, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6884, 5, 78, 0, 0, 6876, 6878, 5, 116, 0, 0, 6877, 6879, 5, 77, 0, 0, 6878, 6877, 1, 0, 0, 0, 6878, 6879, 1, 0, 0, 0, 6879, 6880, 1, 0, 0, 0, 6880, 6881, 5, 56, 0, 0, 6881, 6882, 5, 64, 0, 0, 6882, 6884, 3, 674, 337, 0, 6883, 6812, 1, 0, 0, 0, 6883, 6815, 1, 0, 0, 0, 6883, 6826, 1, 0, 0, 0, 6883, 6834, 1, 0, 0, 0, 6883, 6849, 1, 0, 0, 0, 6883, 6854, 1, 0, 0, 0, 6883, 6871, 1, 0, 0, 0, 6883, 6876, 1, 0, 0, 0, 6884, 673, 1, 0, 0, 0, 6885, 6886, 6, 337, -1, 0, 6886, 6890, 3, 676, 338, 0, 6887, 6888, 7, 30, 0, 0, 6888, 6890, 3, 674, 337, 4, 6889, 6885, 1, 0, 0, 0, 6889, 6887, 1, 0, 0, 0, 6890, 6907, 1, 0, 0, 0, 6891, 6892, 10, 3, 0, 0, 6892, 6893, 7, 94, 0, 0, 6893, 6906, 3, 674, 337, 4, 6894, 6895, 10, 2, 0, 0, 6895, 6896, 7, 30, 0, 0, 6896, 6906, 3, 674, 337, 3, 6897, 6898, 10, 1, 0, 0, 6898, 6899, 5, 15, 0, 0, 6899, 6906, 3, 674, 337, 2, 6900, 6901, 10, 5, 0, 0, 6901, 6902, 5, 142, 0, 0, 6902, 6903, 5, 418, 0, 0, 6903, 6904, 5, 386, 0, 0, 6904, 6906, 3, 668, 334, 0, 6905, 6891, 1, 0, 0, 0, 6905, 6894, 1, 0, 0, 0, 6905, 6897, 1, 0, 0, 0, 6905, 6900, 1, 0, 0, 0, 6906, 6909, 1, 0, 0, 0, 6907, 6905, 1, 0, 0, 0, 6907, 6908, 1, 0, 0, 0, 6908, 675, 1, 0, 0, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6911, 6, 338, -1, 0, 6911, 6912, 7, 95, 0, 0, 6912, 6999, 3, 556, 278, 0, 6913, 6916, 5, 35, 0, 0, 6914, 6917, 3, 556, 278, 0, 6915, 6917, 3, 736, 368, 0, 6916, 6914, 1, 0, 0, 0, 6916, 6915, 1, 0, 0, 0, 6917, 6999, 1, 0, 0, 0, 6918, 6919, 5, 28, 0, 0, 6919, 6999, 3, 750, 375, 0, 6920, 6921, 5, 470, 0, 0, 6921, 6999, 3, 528, 264, 0, 6922, 6999, 5, 574, 0, 0, 6923, 6999, 5, 576, 0, 0, 6924, 6999, 5, 566, 0, 0, 6925, 6999, 5, 570, 0, 0, 6926, 6936, 3, 804, 402, 0, 6927, 6937, 3, 806, 403, 0, 6928, 6929, 5, 2, 0, 0, 6929, 6931, 3, 732, 366, 0, 6930, 6932, 3, 580, 290, 0, 6931, 6930, 1, 0, 0, 0, 6931, 6932, 1, 0, 0, 0, 6932, 6933, 1, 0, 0, 0, 6933, 6934, 5, 3, 0, 0, 6934, 6935, 3, 806, 403, 0, 6935, 6937, 1, 0, 0, 0, 6936, 6927, 1, 0, 0, 0, 6936, 6928, 1, 0, 0, 0, 6937, 6999, 1, 0, 0, 0, 6938, 6940, 3, 650, 325, 0, 6939, 6938, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6941, 1, 0, 0, 0, 6941, 6999, 3, 806, 403, 0, 6942, 6950, 5, 403, 0, 0, 6943, 6945, 3, 806, 403, 0, 6944, 6946, 3, 662, 331, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6951, 1, 0, 0, 0, 6947, 6948, 3, 654, 327, 0, 6948, 6949, 3, 806, 403, 0, 6949, 6951, 1, 0, 0, 0, 6950, 6943, 1, 0, 0, 0, 6950, 6947, 1, 0, 0, 0, 6951, 6999, 1, 0, 0, 0, 6952, 6999, 5, 96, 0, 0, 6953, 6999, 5, 60, 0, 0, 6954, 6999, 5, 78, 0, 0, 6955, 6999, 5, 577, 0, 0, 6956, 6957, 5, 2, 0, 0, 6957, 6958, 3, 668, 334, 0, 6958, 6959, 5, 3, 0, 0, 6959, 6960, 3, 750, 375, 0, 6960, 6999, 1, 0, 0, 0, 6961, 6963, 5, 40, 0, 0, 6962, 6964, 3, 668, 334, 0, 6963, 6962, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6966, 1, 0, 0, 0, 6965, 6967, 3, 744, 372, 0, 6966, 6965, 1, 0, 0, 0, 6967, 6968, 1, 0, 0, 0, 6968, 6966, 1, 0, 0, 0, 6968, 6969, 1, 0, 0, 0, 6969, 6972, 1, 0, 0, 0, 6970, 6971, 5, 58, 0, 0, 6971, 6973, 3, 668, 334, 0, 6972, 6970, 1, 0, 0, 0, 6972, 6973, 1, 0, 0, 0, 6973, 6974, 1, 0, 0, 0, 6974, 6975, 5, 454, 0, 0, 6975, 6999, 1, 0, 0, 0, 6976, 6999, 3, 680, 340, 0, 6977, 6979, 3, 556, 278, 0, 6978, 6980, 3, 748, 374, 0, 6979, 6978, 1, 0, 0, 0, 6979, 6980, 1, 0, 0, 0, 6980, 6999, 1, 0, 0, 0, 6981, 6999, 3, 712, 356, 0, 6982, 6983, 5, 2, 0, 0, 6983, 6984, 3, 668, 334, 0, 6984, 6985, 5, 6, 0, 0, 6985, 6986, 3, 726, 363, 0, 6986, 6987, 5, 3, 0, 0, 6987, 6999, 1, 0, 0, 0, 6988, 6989, 3, 710, 355, 0, 6989, 6990, 5, 125, 0, 0, 6990, 6991, 3, 710, 355, 0, 6991, 6999, 1, 0, 0, 0, 6992, 6999, 3, 798, 399, 0, 6993, 6994, 7, 30, 0, 0, 6994, 6999, 3, 676, 338, 5, 6995, 6996, 3, 720, 360, 0, 6996, 6997, 3, 676, 338, 2, 6997, 6999, 1, 0, 0, 0, 6998, 6910, 1, 0, 0, 0, 6998, 6913, 1, 0, 0, 0, 6998, 6918, 1, 0, 0, 0, 6998, 6920, 1, 0, 0, 0, 6998, 6922, 1, 0, 0, 0, 6998, 6923, 1, 0, 0, 0, 6998, 6924, 1, 0, 0, 0, 6998, 6925, 1, 0, 0, 0, 6998, 6926, 1, 0, 0, 0, 6998, 6939, 1, 0, 0, 0, 6998, 6942, 1, 0, 0, 0, 6998, 6952, 1, 0, 0, 0, 6998, 6953, 1, 0, 0, 0, 6998, 6954, 1, 0, 0, 0, 6998, 6955, 1, 0, 0, 0, 6998, 6956, 1, 0, 0, 0, 6998, 6961, 1, 0, 0, 0, 6998, 6976, 1, 0, 0, 0, 6998, 6977, 1, 0, 0, 0, 6998, 6981, 1, 0, 0, 0, 6998, 6982, 1, 0, 0, 0, 6998, 6988, 1, 0, 0, 0, 6998, 6992, 1, 0, 0, 0, 6998, 6993, 1, 0, 0, 0, 6998, 6995, 1, 0, 0, 0, 6999, 7027, 1, 0, 0, 0, 7000, 7001, 10, 3, 0, 0, 7001, 7002, 3, 718, 359, 0, 7002, 7003, 3, 676, 338, 4, 7003, 7026, 1, 0, 0, 0, 7004, 7005, 10, 6, 0, 0, 7005, 7006, 5, 26, 0, 0, 7006, 7026, 3, 646, 323, 0, 7007, 7008, 10, 4, 0, 0, 7008, 7010, 3, 720, 360, 0, 7009, 7011, 3, 676, 338, 0, 7010, 7009, 1, 0, 0, 0, 7010, 7011, 1, 0, 0, 0, 7011, 7026, 1, 0, 0, 0, 7012, 7013, 10, 1, 0, 0, 7013, 7015, 5, 116, 0, 0, 7014, 7016, 5, 77, 0, 0, 7015, 7014, 1, 0, 0, 0, 7015, 7016, 1, 0, 0, 0, 7016, 7023, 1, 0, 0, 0, 7017, 7018, 5, 56, 0, 0, 7018, 7019, 5, 64, 0, 0, 7019, 7024, 3, 676, 338, 0, 7020, 7021, 5, 275, 0, 0, 7021, 7024, 3, 522, 261, 0, 7022, 7024, 5, 188, 0, 0, 7023, 7017, 1, 0, 0, 0, 7023, 7020, 1, 0, 0, 0, 7023, 7022, 1, 0, 0, 0, 7024, 7026, 1, 0, 0, 0, 7025, 7000, 1, 0, 0, 0, 7025, 7004, 1, 0, 0, 0, 7025, 7007, 1, 0, 0, 0, 7025, 7012, 1, 0, 0, 0, 7026, 7029, 1, 0, 0, 0, 7027, 7025, 1, 0, 0, 0, 7027, 7028, 1, 0, 0, 0, 7028, 677, 1, 0, 0, 0, 7029, 7027, 1, 0, 0, 0, 7030, 7031, 3, 804, 402, 0, 7031, 7052, 5, 2, 0, 0, 7032, 7036, 3, 732, 366, 0, 7033, 7034, 5, 6, 0, 0, 7034, 7035, 5, 101, 0, 0, 7035, 7037, 3, 734, 367, 0, 7036, 7033, 1, 0, 0, 0, 7036, 7037, 1, 0, 0, 0, 7037, 7039, 1, 0, 0, 0, 7038, 7040, 3, 580, 290, 0, 7039, 7038, 1, 0, 0, 0, 7039, 7040, 1, 0, 0, 0, 7040, 7053, 1, 0, 0, 0, 7041, 7042, 5, 101, 0, 0, 7042, 7044, 3, 734, 367, 0, 7043, 7045, 3, 580, 290, 0, 7044, 7043, 1, 0, 0, 0, 7044, 7045, 1, 0, 0, 0, 7045, 7053, 1, 0, 0, 0, 7046, 7047, 7, 81, 0, 0, 7047, 7049, 3, 732, 366, 0, 7048, 7050, 3, 580, 290, 0, 7049, 7048, 1, 0, 0, 0, 7049, 7050, 1, 0, 0, 0, 7050, 7053, 1, 0, 0, 0, 7051, 7053, 5, 9, 0, 0, 7052, 7032, 1, 0, 0, 0, 7052, 7041, 1, 0, 0, 0, 7052, 7046, 1, 0, 0, 0, 7052, 7051, 1, 0, 0, 0, 7052, 7053, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7055, 5, 3, 0, 0, 7055, 679, 1, 0, 0, 0, 7056, 7063, 3, 678, 339, 0, 7057, 7058, 5, 479, 0, 0, 7058, 7059, 5, 66, 0, 0, 7059, 7060, 5, 2, 0, 0, 7060, 7061, 3, 580, 290, 0, 7061, 7062, 5, 3, 0, 0, 7062, 7064, 1, 0, 0, 0, 7063, 7057, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7071, 1, 0, 0, 0, 7065, 7066, 5, 480, 0, 0, 7066, 7067, 5, 2, 0, 0, 7067, 7068, 5, 103, 0, 0, 7068, 7069, 3, 668, 334, 0, 7069, 7070, 5, 3, 0, 0, 7070, 7072, 1, 0, 0, 0, 7071, 7065, 1, 0, 0, 0, 7071, 7072, 1, 0, 0, 0, 7072, 7078, 1, 0, 0, 0, 7073, 7076, 5, 124, 0, 0, 7074, 7077, 3, 704, 352, 0, 7075, 7077, 3, 816, 408, 0, 7076, 7074, 1, 0, 0, 0, 7076, 7075, 1, 0, 0, 0, 7077, 7079, 1, 0, 0, 0, 7078, 7073, 1, 0, 0, 0, 7078, 7079, 1, 0, 0, 0, 7079, 7082, 1, 0, 0, 0, 7080, 7082, 3, 684, 342, 0, 7081, 7056, 1, 0, 0, 0, 7081, 7080, 1, 0, 0, 0, 7082, 681, 1, 0, 0, 0, 7083, 7086, 3, 678, 339, 0, 7084, 7086, 3, 684, 342, 0, 7085, 7083, 1, 0, 0, 0, 7085, 7084, 1, 0, 0, 0, 7086, 683, 1, 0, 0, 0, 7087, 7088, 5, 108, 0, 0, 7088, 7089, 5, 62, 0, 0, 7089, 7090, 5, 2, 0, 0, 7090, 7091, 3, 668, 334, 0, 7091, 7092, 5, 3, 0, 0, 7092, 7262, 1, 0, 0, 0, 7093, 7262, 5, 48, 0, 0, 7094, 7096, 7, 96, 0, 0, 7095, 7097, 3, 654, 327, 0, 7096, 7095, 1, 0, 0, 0, 7096, 7097, 1, 0, 0, 0, 7097, 7262, 1, 0, 0, 0, 7098, 7262, 5, 49, 0, 0, 7099, 7262, 5, 52, 0, 0, 7100, 7262, 5, 89, 0, 0, 7101, 7262, 5, 99, 0, 0, 7102, 7262, 5, 47, 0, 0, 7103, 7262, 5, 111, 0, 0, 7104, 7105, 7, 97, 0, 0, 7105, 7106, 5, 2, 0, 0, 7106, 7107, 3, 668, 334, 0, 7107, 7108, 5, 36, 0, 0, 7108, 7109, 3, 646, 323, 0, 7109, 7110, 5, 3, 0, 0, 7110, 7262, 1, 0, 0, 0, 7111, 7112, 5, 397, 0, 0, 7112, 7117, 5, 2, 0, 0, 7113, 7114, 3, 738, 369, 0, 7114, 7115, 5, 64, 0, 0, 7115, 7116, 3, 668, 334, 0, 7116, 7118, 1, 0, 0, 0, 7117, 7113, 1, 0, 0, 0, 7117, 7118, 1, 0, 0, 0, 7118, 7119, 1, 0, 0, 0, 7119, 7262, 5, 3, 0, 0, 7120, 7121, 5, 489, 0, 0, 7121, 7122, 5, 2, 0, 0, 7122, 7125, 3, 668, 334, 0, 7123, 7124, 5, 6, 0, 0, 7124, 7126, 3, 740, 370, 0, 7125, 7123, 1, 0, 0, 0, 7125, 7126, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7128, 5, 3, 0, 0, 7128, 7262, 1, 0, 0, 0, 7129, 7130, 5, 410, 0, 0, 7130, 7131, 5, 2, 0, 0, 7131, 7132, 3, 668, 334, 0, 7132, 7133, 5, 84, 0, 0, 7133, 7134, 3, 668, 334, 0, 7134, 7135, 5, 64, 0, 0, 7135, 7138, 3, 668, 334, 0, 7136, 7137, 5, 62, 0, 0, 7137, 7139, 3, 668, 334, 0, 7138, 7136, 1, 0, 0, 0, 7138, 7139, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 5, 3, 0, 0, 7141, 7262, 1, 0, 0, 0, 7142, 7143, 5, 411, 0, 0, 7143, 7148, 5, 2, 0, 0, 7144, 7145, 3, 676, 338, 0, 7145, 7146, 5, 68, 0, 0, 7146, 7147, 3, 676, 338, 0, 7147, 7149, 1, 0, 0, 0, 7148, 7144, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7262, 5, 3, 0, 0, 7151, 7152, 5, 417, 0, 0, 7152, 7154, 5, 2, 0, 0, 7153, 7155, 3, 742, 371, 0, 7154, 7153, 1, 0, 0, 0, 7154, 7155, 1, 0, 0, 0, 7155, 7156, 1, 0, 0, 0, 7156, 7262, 5, 3, 0, 0, 7157, 7158, 5, 421, 0, 0, 7158, 7160, 5, 2, 0, 0, 7159, 7161, 7, 98, 0, 0, 7160, 7159, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7166, 1, 0, 0, 0, 7162, 7164, 3, 668, 334, 0, 7163, 7162, 1, 0, 0, 0, 7163, 7164, 1, 0, 0, 0, 7164, 7165, 1, 0, 0, 0, 7165, 7167, 5, 64, 0, 0, 7166, 7163, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7169, 3, 726, 363, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7171, 5, 3, 0, 0, 7171, 7262, 1, 0, 0, 0, 7172, 7173, 5, 408, 0, 0, 7173, 7174, 5, 2, 0, 0, 7174, 7175, 3, 668, 334, 0, 7175, 7176, 5, 6, 0, 0, 7176, 7177, 3, 668, 334, 0, 7177, 7178, 5, 3, 0, 0, 7178, 7262, 1, 0, 0, 0, 7179, 7180, 7, 99, 0, 0, 7180, 7262, 3, 528, 264, 0, 7181, 7182, 5, 426, 0, 0, 7182, 7183, 5, 2, 0, 0, 7183, 7184, 5, 266, 0, 0, 7184, 7194, 3, 822, 411, 0, 7185, 7192, 5, 6, 0, 0, 7186, 7187, 5, 424, 0, 0, 7187, 7188, 5, 2, 0, 0, 7188, 7189, 3, 686, 343, 0, 7189, 7190, 5, 3, 0, 0, 7190, 7193, 1, 0, 0, 0, 7191, 7193, 3, 726, 363, 0, 7192, 7186, 1, 0, 0, 0, 7192, 7191, 1, 0, 0, 0, 7193, 7195, 1, 0, 0, 0, 7194, 7185, 1, 0, 0, 0, 7194, 7195, 1, 0, 0, 0, 7195, 7196, 1, 0, 0, 0, 7196, 7197, 5, 3, 0, 0, 7197, 7262, 1, 0, 0, 0, 7198, 7199, 5, 427, 0, 0, 7199, 7200, 5, 2, 0, 0, 7200, 7201, 3, 676, 338, 0, 7201, 7202, 3, 692, 346, 0, 7202, 7203, 5, 3, 0, 0, 7203, 7262, 1, 0, 0, 0, 7204, 7205, 5, 428, 0, 0, 7205, 7206, 5, 2, 0, 0, 7206, 7207, 3, 686, 343, 0, 7207, 7208, 5, 3, 0, 0, 7208, 7262, 1, 0, 0, 0, 7209, 7210, 5, 429, 0, 0, 7210, 7211, 5, 2, 0, 0, 7211, 7212, 3, 690, 345, 0, 7212, 7215, 3, 668, 334, 0, 7213, 7214, 7, 100, 0, 0, 7214, 7216, 5, 378, 0, 0, 7215, 7213, 1, 0, 0, 0, 7215, 7216, 1, 0, 0, 0, 7216, 7217, 1, 0, 0, 0, 7217, 7218, 5, 3, 0, 0, 7218, 7262, 1, 0, 0, 0, 7219, 7220, 5, 430, 0, 0, 7220, 7221, 5, 2, 0, 0, 7221, 7222, 5, 266, 0, 0, 7222, 7225, 3, 822, 411, 0, 7223, 7224, 5, 6, 0, 0, 7224, 7226, 3, 668, 334, 0, 7225, 7223, 1, 0, 0, 0, 7225, 7226, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7228, 5, 3, 0, 0, 7228, 7262, 1, 0, 0, 0, 7229, 7230, 5, 431, 0, 0, 7230, 7231, 5, 2, 0, 0, 7231, 7232, 5, 383, 0, 0, 7232, 7233, 3, 668, 334, 0, 7233, 7234, 5, 6, 0, 0, 7234, 7238, 5, 375, 0, 0, 7235, 7236, 5, 269, 0, 0, 7236, 7239, 5, 450, 0, 0, 7237, 7239, 3, 668, 334, 0, 7238, 7235, 1, 0, 0, 0, 7238, 7237, 1, 0, 0, 0, 7239, 7249, 1, 0, 0, 0, 7240, 7241, 5, 6, 0, 0, 7241, 7247, 5, 339, 0, 0, 7242, 7244, 5, 269, 0, 0, 7243, 7242, 1, 0, 0, 0, 7243, 7244, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7248, 5, 450, 0, 0, 7246, 7248, 5, 385, 0, 0, 7247, 7243, 1, 0, 0, 0, 7247, 7246, 1, 0, 0, 0, 7248, 7250, 1, 0, 0, 0, 7249, 7240, 1, 0, 0, 0, 7249, 7250, 1, 0, 0, 0, 7250, 7251, 1, 0, 0, 0, 7251, 7252, 5, 3, 0, 0, 7252, 7262, 1, 0, 0, 0, 7253, 7254, 5, 432, 0, 0, 7254, 7255, 5, 2, 0, 0, 7255, 7256, 3, 690, 345, 0, 7256, 7257, 3, 668, 334, 0, 7257, 7258, 5, 36, 0, 0, 7258, 7259, 3, 648, 324, 0, 7259, 7260, 5, 3, 0, 0, 7260, 7262, 1, 0, 0, 0, 7261, 7087, 1, 0, 0, 0, 7261, 7093, 1, 0, 0, 0, 7261, 7094, 1, 0, 0, 0, 7261, 7098, 1, 0, 0, 0, 7261, 7099, 1, 0, 0, 0, 7261, 7100, 1, 0, 0, 0, 7261, 7101, 1, 0, 0, 0, 7261, 7102, 1, 0, 0, 0, 7261, 7103, 1, 0, 0, 0, 7261, 7104, 1, 0, 0, 0, 7261, 7111, 1, 0, 0, 0, 7261, 7120, 1, 0, 0, 0, 7261, 7129, 1, 0, 0, 0, 7261, 7142, 1, 0, 0, 0, 7261, 7151, 1, 0, 0, 0, 7261, 7157, 1, 0, 0, 0, 7261, 7172, 1, 0, 0, 0, 7261, 7179, 1, 0, 0, 0, 7261, 7181, 1, 0, 0, 0, 7261, 7198, 1, 0, 0, 0, 7261, 7204, 1, 0, 0, 0, 7261, 7209, 1, 0, 0, 0, 7261, 7219, 1, 0, 0, 0, 7261, 7229, 1, 0, 0, 0, 7261, 7253, 1, 0, 0, 0, 7262, 685, 1, 0, 0, 0, 7263, 7268, 3, 688, 344, 0, 7264, 7265, 5, 6, 0, 0, 7265, 7267, 3, 688, 344, 0, 7266, 7264, 1, 0, 0, 0, 7267, 7270, 1, 0, 0, 0, 7268, 7266, 1, 0, 0, 0, 7268, 7269, 1, 0, 0, 0, 7269, 687, 1, 0, 0, 0, 7270, 7268, 1, 0, 0, 0, 7271, 7274, 3, 668, 334, 0, 7272, 7273, 5, 36, 0, 0, 7273, 7275, 3, 822, 411, 0, 7274, 7272, 1, 0, 0, 0, 7274, 7275, 1, 0, 0, 0, 7275, 689, 1, 0, 0, 0, 7276, 7277, 7, 101, 0, 0, 7277, 691, 1, 0, 0, 0, 7278, 7280, 5, 286, 0, 0, 7279, 7281, 3, 694, 347, 0, 7280, 7279, 1, 0, 0, 0, 7280, 7281, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7284, 3, 676, 338, 0, 7283, 7285, 3, 694, 347, 0, 7284, 7283, 1, 0, 0, 0, 7284, 7285, 1, 0, 0, 0, 7285, 693, 1, 0, 0, 0, 7286, 7287, 5, 147, 0, 0, 7287, 7288, 7, 102, 0, 0, 7288, 695, 1, 0, 0, 0, 7289, 7290, 5, 104, 0, 0, 7290, 7295, 3, 700, 350, 0, 7291, 7292, 5, 6, 0, 0, 7292, 7294, 3, 700, 350, 0, 7293, 7291, 1, 0, 0, 0, 7294, 7297, 1, 0, 0, 0, 7295, 7293, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 697, 1, 0, 0, 0, 7297, 7295, 1, 0, 0, 0, 7298, 7299, 5, 67, 0, 0, 7299, 7300, 3, 668, 334, 0, 7300, 699, 1, 0, 0, 0, 7301, 7302, 3, 816, 408, 0, 7302, 7303, 5, 36, 0, 0, 7303, 7304, 3, 704, 352, 0, 7304, 701, 1, 0, 0, 0, 7305, 7308, 5, 124, 0, 0, 7306, 7309, 3, 704, 352, 0, 7307, 7309, 3, 816, 408, 0, 7308, 7306, 1, 0, 0, 0, 7308, 7307, 1, 0, 0, 0, 7309, 703, 1, 0, 0, 0, 7310, 7312, 5, 2, 0, 0, 7311, 7313, 3, 816, 408, 0, 7312, 7311, 1, 0, 0, 0, 7312, 7313, 1, 0, 0, 0, 7313, 7317, 1, 0, 0, 0, 7314, 7315, 5, 285, 0, 0, 7315, 7316, 5, 147, 0, 0, 7316, 7318, 3, 726, 363, 0, 7317, 7314, 1, 0, 0, 0, 7317, 7318, 1, 0, 0, 0, 7318, 7320, 1, 0, 0, 0, 7319, 7321, 3, 580, 290, 0, 7320, 7319, 1, 0, 0, 0, 7320, 7321, 1, 0, 0, 0, 7321, 7323, 1, 0, 0, 0, 7322, 7324, 3, 706, 353, 0, 7323, 7322, 1, 0, 0, 0, 7323, 7324, 1, 0, 0, 0, 7324, 7325, 1, 0, 0, 0, 7325, 7326, 5, 3, 0, 0, 7326, 705, 1, 0, 0, 0, 7327, 7332, 7, 103, 0, 0, 7328, 7329, 5, 387, 0, 0, 7329, 7330, 3, 708, 354, 0, 7330, 7331, 5, 33, 0, 0, 7331, 7333, 1, 0, 0, 0, 7332, 7328, 1, 0, 0, 0, 7332, 7333, 1, 0, 0, 0, 7333, 7334, 1, 0, 0, 0, 7334, 7335, 3, 708, 354, 0, 7335, 7345, 1, 0, 0, 0, 7336, 7343, 5, 199, 0, 0, 7337, 7338, 5, 434, 0, 0, 7338, 7344, 5, 414, 0, 0, 7339, 7344, 5, 66, 0, 0, 7340, 7344, 5, 467, 0, 0, 7341, 7342, 5, 269, 0, 0, 7342, 7344, 5, 482, 0, 0, 7343, 7337, 1, 0, 0, 0, 7343, 7339, 1, 0, 0, 0, 7343, 7340, 1, 0, 0, 0, 7343, 7341, 1, 0, 0, 0, 7344, 7346, 1, 0, 0, 0, 7345, 7336, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 707, 1, 0, 0, 0, 7347, 7350, 5, 362, 0, 0, 7348, 7350, 3, 668, 334, 0, 7349, 7347, 1, 0, 0, 0, 7349, 7348, 1, 0, 0, 0, 7350, 7351, 1, 0, 0, 0, 7351, 7355, 7, 104, 0, 0, 7352, 7353, 5, 434, 0, 0, 7353, 7355, 5, 414, 0, 0, 7354, 7349, 1, 0, 0, 0, 7354, 7352, 1, 0, 0, 0, 7355, 709, 1, 0, 0, 0, 7356, 7364, 3, 712, 356, 0, 7357, 7358, 5, 2, 0, 0, 7358, 7359, 3, 726, 363, 0, 7359, 7360, 5, 6, 0, 0, 7360, 7361, 3, 668, 334, 0, 7361, 7362, 5, 3, 0, 0, 7362, 7364, 1, 0, 0, 0, 7363, 7356, 1, 0, 0, 0, 7363, 7357, 1, 0, 0, 0, 7364, 711, 1, 0, 0, 0, 7365, 7366, 5, 414, 0, 0, 7366, 7368, 5, 2, 0, 0, 7367, 7369, 3, 726, 363, 0, 7368, 7367, 1, 0, 0, 0, 7368, 7369, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7371, 5, 3, 0, 0, 7371, 713, 1, 0, 0, 0, 7372, 7373, 7, 105, 0, 0, 7373, 715, 1, 0, 0, 0, 7374, 7377, 5, 29, 0, 0, 7375, 7377, 3, 718, 359, 0, 7376, 7374, 1, 0, 0, 0, 7376, 7375, 1, 0, 0, 0, 7377, 717, 1, 0, 0, 0, 7378, 7379, 7, 106, 0, 0, 7379, 719, 1, 0, 0, 0, 7380, 7387, 5, 29, 0, 0, 7381, 7382, 5, 278, 0, 0, 7382, 7383, 5, 2, 0, 0, 7383, 7384, 3, 408, 204, 0, 7384, 7385, 5, 3, 0, 0, 7385, 7387, 1, 0, 0, 0, 7386, 7380, 1, 0, 0, 0, 7386, 7381, 1, 0, 0, 0, 7387, 721, 1, 0, 0, 0, 7388, 7395, 3, 716, 358, 0, 7389, 7390, 5, 278, 0, 0, 7390, 7391, 5, 2, 0, 0, 7391, 7392, 3, 408, 204, 0, 7392, 7393, 5, 3, 0, 0, 7393, 7395, 1, 0, 0, 0, 7394, 7388, 1, 0, 0, 0, 7394, 7389, 1, 0, 0, 0, 7395, 723, 1, 0, 0, 0, 7396, 7402, 3, 722, 361, 0, 7397, 7399, 5, 77, 0, 0, 7398, 7397, 1, 0, 0, 0, 7398, 7399, 1, 0, 0, 0, 7399, 7400, 1, 0, 0, 0, 7400, 7402, 7, 107, 0, 0, 7401, 7396, 1, 0, 0, 0, 7401, 7398, 1, 0, 0, 0, 7402, 725, 1, 0, 0, 0, 7403, 7408, 3, 668, 334, 0, 7404, 7405, 5, 6, 0, 0, 7405, 7407, 3, 668, 334, 0, 7406, 7404, 1, 0, 0, 0, 7407, 7410, 1, 0, 0, 0, 7408, 7406, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 727, 1, 0, 0, 0, 7410, 7408, 1, 0, 0, 0, 7411, 7412, 5, 2, 0, 0, 7412, 7413, 3, 668, 334, 0, 7413, 7414, 5, 3, 0, 0, 7414, 7417, 1, 0, 0, 0, 7415, 7417, 3, 796, 398, 0, 7416, 7411, 1, 0, 0, 0, 7416, 7415, 1, 0, 0, 0, 7417, 729, 1, 0, 0, 0, 7418, 7421, 3, 668, 334, 0, 7419, 7421, 3, 796, 398, 0, 7420, 7418, 1, 0, 0, 0, 7420, 7419, 1, 0, 0, 0, 7421, 731, 1, 0, 0, 0, 7422, 7427, 3, 734, 367, 0, 7423, 7424, 5, 6, 0, 0, 7424, 7426, 3, 734, 367, 0, 7425, 7423, 1, 0, 0, 0, 7426, 7429, 1, 0, 0, 0, 7427, 7425, 1, 0, 0, 0, 7427, 7428, 1, 0, 0, 0, 7428, 733, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7430, 7438, 3, 796, 398, 0, 7431, 7438, 3, 668, 334, 0, 7432, 7435, 3, 818, 409, 0, 7433, 7434, 7, 108, 0, 0, 7434, 7436, 3, 668, 334, 0, 7435, 7433, 1, 0, 0, 0, 7435, 7436, 1, 0, 0, 0, 7436, 7438, 1, 0, 0, 0, 7437, 7430, 1, 0, 0, 0, 7437, 7431, 1, 0, 0, 0, 7437, 7432, 1, 0, 0, 0, 7438, 735, 1, 0, 0, 0, 7439, 7449, 5, 4, 0, 0, 7440, 7450, 3, 726, 363, 0, 7441, 7446, 3, 736, 368, 0, 7442, 7443, 5, 6, 0, 0, 7443, 7445, 3, 736, 368, 0, 7444, 7442, 1, 0, 0, 0, 7445, 7448, 1, 0, 0, 0, 7446, 7444, 1, 0, 0, 0, 7446, 7447, 1, 0, 0, 0, 7447, 7450, 1, 0, 0, 0, 7448, 7446, 1, 0, 0, 0, 7449, 7440, 1, 0, 0, 0, 7449, 7441, 1, 0, 0, 0, 7449, 7450, 1, 0, 0, 0, 7450, 7451, 1, 0, 0, 0, 7451, 7452, 5, 5, 0, 0, 7452, 737, 1, 0, 0, 0, 7453, 7462, 3, 824, 412, 0, 7454, 7462, 5, 384, 0, 0, 7455, 7462, 5, 264, 0, 0, 7456, 7462, 5, 176, 0, 0, 7457, 7462, 5, 218, 0, 0, 7458, 7462, 5, 261, 0, 0, 7459, 7462, 5, 326, 0, 0, 7460, 7462, 3, 806, 403, 0, 7461, 7453, 1, 0, 0, 0, 7461, 7454, 1, 0, 0, 0, 7461, 7455, 1, 0, 0, 0, 7461, 7456, 1, 0, 0, 0, 7461, 7457, 1, 0, 0, 0, 7461, 7458, 1, 0, 0, 0, 7461, 7459, 1, 0, 0, 0, 7461, 7460, 1, 0, 0, 0, 7462, 739, 1, 0, 0, 0, 7463, 7464, 7, 109, 0, 0, 7464, 741, 1, 0, 0, 0, 7465, 7466, 3, 668, 334, 0, 7466, 7467, 5, 64, 0, 0, 7467, 7470, 3, 668, 334, 0, 7468, 7469, 5, 62, 0, 0, 7469, 7471, 3, 668, 334, 0, 7470, 7468, 1, 0, 0, 0, 7470, 7471, 1, 0, 0, 0, 7471, 7487, 1, 0, 0, 0, 7472, 7473, 3, 668, 334, 0, 7473, 7474, 5, 62, 0, 0, 7474, 7477, 3, 668, 334, 0, 7475, 7476, 5, 64, 0, 0, 7476, 7478, 3, 668, 334, 0, 7477, 7475, 1, 0, 0, 0, 7477, 7478, 1, 0, 0, 0, 7478, 7487, 1, 0, 0, 0, 7479, 7480, 3, 668, 334, 0, 7480, 7481, 5, 127, 0, 0, 7481, 7482, 3, 668, 334, 0, 7482, 7483, 5, 197, 0, 0, 7483, 7484, 3, 668, 334, 0, 7484, 7487, 1, 0, 0, 0, 7485, 7487, 3, 726, 363, 0, 7486, 7465, 1, 0, 0, 0, 7486, 7472, 1, 0, 0, 0, 7486, 7479, 1, 0, 0, 0, 7486, 7485, 1, 0, 0, 0, 7487, 743, 1, 0, 0, 0, 7488, 7489, 5, 102, 0, 0, 7489, 7490, 3, 668, 334, 0, 7490, 7491, 5, 93, 0, 0, 7491, 7492, 3, 668, 334, 0, 7492, 745, 1, 0, 0, 0, 7493, 7496, 5, 11, 0, 0, 7494, 7497, 3, 822, 411, 0, 7495, 7497, 5, 9, 0, 0, 7496, 7494, 1, 0, 0, 0, 7496, 7495, 1, 0, 0, 0, 7497, 7511, 1, 0, 0, 0, 7498, 7507, 5, 4, 0, 0, 7499, 7508, 3, 668, 334, 0, 7500, 7502, 3, 668, 334, 0, 7501, 7500, 1, 0, 0, 0, 7501, 7502, 1, 0, 0, 0, 7502, 7503, 1, 0, 0, 0, 7503, 7505, 5, 8, 0, 0, 7504, 7506, 3, 668, 334, 0, 7505, 7504, 1, 0, 0, 0, 7505, 7506, 1, 0, 0, 0, 7506, 7508, 1, 0, 0, 0, 7507, 7499, 1, 0, 0, 0, 7507, 7501, 1, 0, 0, 0, 7508, 7509, 1, 0, 0, 0, 7509, 7511, 5, 5, 0, 0, 7510, 7493, 1, 0, 0, 0, 7510, 7498, 1, 0, 0, 0, 7511, 747, 1, 0, 0, 0, 7512, 7514, 3, 746, 373, 0, 7513, 7512, 1, 0, 0, 0, 7514, 7515, 1, 0, 0, 0, 7515, 7513, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 749, 1, 0, 0, 0, 7517, 7519, 3, 746, 373, 0, 7518, 7517, 1, 0, 0, 0, 7519, 7522, 1, 0, 0, 0, 7520, 7518, 1, 0, 0, 0, 7520, 7521, 1, 0, 0, 0, 7521, 751, 1, 0, 0, 0, 7522, 7520, 1, 0, 0, 0, 7523, 7528, 3, 754, 377, 0, 7524, 7525, 5, 6, 0, 0, 7525, 7527, 3, 754, 377, 0, 7526, 7524, 1, 0, 0, 0, 7527, 7530, 1, 0, 0, 0, 7528, 7526, 1, 0, 0, 0, 7528, 7529, 1, 0, 0, 0, 7529, 753, 1, 0, 0, 0, 7530, 7528, 1, 0, 0, 0, 7531, 7536, 3, 730, 365, 0, 7532, 7533, 5, 36, 0, 0, 7533, 7537, 3, 822, 411, 0, 7534, 7537, 3, 824, 412, 0, 7535, 7537, 1, 0, 0, 0, 7536, 7532, 1, 0, 0, 0, 7536, 7534, 1, 0, 0, 0, 7536, 7535, 1, 0, 0, 0, 7537, 7540, 1, 0, 0, 0, 7538, 7540, 5, 9, 0, 0, 7539, 7531, 1, 0, 0, 0, 7539, 7538, 1, 0, 0, 0, 7540, 755, 1, 0, 0, 0, 7541, 7546, 3, 776, 388, 0, 7542, 7543, 5, 6, 0, 0, 7543, 7545, 3, 776, 388, 0, 7544, 7542, 1, 0, 0, 0, 7545, 7548, 1, 0, 0, 0, 7546, 7544, 1, 0, 0, 0, 7546, 7547, 1, 0, 0, 0, 7547, 757, 1, 0, 0, 0, 7548, 7546, 1, 0, 0, 0, 7549, 7554, 3, 770, 385, 0, 7550, 7551, 5, 6, 0, 0, 7551, 7553, 3, 770, 385, 0, 7552, 7550, 1, 0, 0, 0, 7553, 7556, 1, 0, 0, 0, 7554, 7552, 1, 0, 0, 0, 7554, 7555, 1, 0, 0, 0, 7555, 759, 1, 0, 0, 0, 7556, 7554, 1, 0, 0, 0, 7557, 7562, 3, 786, 393, 0, 7558, 7559, 5, 6, 0, 0, 7559, 7561, 3, 786, 393, 0, 7560, 7558, 1, 0, 0, 0, 7561, 7564, 1, 0, 0, 0, 7562, 7560, 1, 0, 0, 0, 7562, 7563, 1, 0, 0, 0, 7563, 761, 1, 0, 0, 0, 7564, 7562, 1, 0, 0, 0, 7565, 7570, 3, 784, 392, 0, 7566, 7567, 5, 6, 0, 0, 7567, 7569, 3, 784, 392, 0, 7568, 7566, 1, 0, 0, 0, 7569, 7572, 1, 0, 0, 0, 7570, 7568, 1, 0, 0, 0, 7570, 7571, 1, 0, 0, 0, 7571, 763, 1, 0, 0, 0, 7572, 7570, 1, 0, 0, 0, 7573, 7574, 3, 776, 388, 0, 7574, 765, 1, 0, 0, 0, 7575, 7576, 3, 776, 388, 0, 7576, 767, 1, 0, 0, 0, 7577, 7578, 3, 776, 388, 0, 7578, 769, 1, 0, 0, 0, 7579, 7580, 3, 776, 388, 0, 7580, 771, 1, 0, 0, 0, 7581, 7582, 3, 776, 388, 0, 7582, 773, 1, 0, 0, 0, 7583, 7584, 3, 310, 155, 0, 7584, 775, 1, 0, 0, 0, 7585, 7587, 3, 816, 408, 0, 7586, 7588, 3, 748, 374, 0, 7587, 7586, 1, 0, 0, 0, 7587, 7588, 1, 0, 0, 0, 7588, 777, 1, 0, 0, 0, 7589, 7594, 3, 766, 383, 0, 7590, 7591, 5, 6, 0, 0, 7591, 7593, 3, 766, 383, 0, 7592, 7590, 1, 0, 0, 0, 7593, 7596, 1, 0, 0, 0, 7594, 7592, 1, 0, 0, 0, 7594, 7595, 1, 0, 0, 0, 7595, 779, 1, 0, 0, 0, 7596, 7594, 1, 0, 0, 0, 7597, 7602, 3, 816, 408, 0, 7598, 7599, 5, 6, 0, 0, 7599, 7601, 3, 816, 408, 0, 7600, 7598, 1, 0, 0, 0, 7601, 7604, 1, 0, 0, 0, 7602, 7600, 1, 0, 0, 0, 7602, 7603, 1, 0, 0, 0, 7603, 781, 1, 0, 0, 0, 7604, 7602, 1, 0, 0, 0, 7605, 7606, 3, 310, 155, 0, 7606, 783, 1, 0, 0, 0, 7607, 7608, 3, 310, 155, 0, 7608, 785, 1, 0, 0, 0, 7609, 7610, 3, 310, 155, 0, 7610, 787, 1, 0, 0, 0, 7611, 7612, 3, 816, 408, 0, 7612, 789, 1, 0, 0, 0, 7613, 7614, 3, 816, 408, 0, 7614, 791, 1, 0, 0, 0, 7615, 7620, 3, 818, 409, 0, 7616, 7617, 3, 816, 408, 0, 7617, 7618, 3, 748, 374, 0, 7618, 7620, 1, 0, 0, 0, 7619, 7615, 1, 0, 0, 0, 7619, 7616, 1, 0, 0, 0, 7620, 793, 1, 0, 0, 0, 7621, 7626, 3, 818, 409, 0, 7622, 7623, 3, 816, 408, 0, 7623, 7624, 3, 748, 374, 0, 7624, 7626, 1, 0, 0, 0, 7625, 7621, 1, 0, 0, 0, 7625, 7622, 1, 0, 0, 0, 7626, 795, 1, 0, 0, 0, 7627, 7628, 3, 816, 408, 0, 7628, 7629, 3, 750, 375, 0, 7629, 7632, 1, 0, 0, 0, 7630, 7632, 4, 398, 10, 0, 7631, 7627, 1, 0, 0, 0, 7631, 7630, 1, 0, 0, 0, 7632, 797, 1, 0, 0, 0, 7633, 7634, 3, 816, 408, 0, 7634, 7635, 3, 750, 375, 0, 7635, 799, 1, 0, 0, 0, 7636, 7637, 3, 816, 408, 0, 7637, 801, 1, 0, 0, 0, 7638, 7643, 3, 818, 409, 0, 7639, 7640, 3, 816, 408, 0, 7640, 7641, 3, 748, 374, 0, 7641, 7643, 1, 0, 0, 0, 7642, 7638, 1, 0, 0, 0, 7642, 7639, 1, 0, 0, 0, 7643, 803, 1, 0, 0, 0, 7644, 7649, 3, 818, 409, 0, 7645, 7646, 3, 816, 408, 0, 7646, 7647, 3, 748, 374, 0, 7647, 7649, 1, 0, 0, 0, 7648, 7644, 1, 0, 0, 0, 7648, 7645, 1, 0, 0, 0, 7649, 805, 1, 0, 0, 0, 7650, 7653, 3, 808, 404, 0, 7651, 7652, 5, 487, 0, 0, 7652, 7654, 3, 808, 404, 0, 7653, 7651, 1, 0, 0, 0, 7653, 7654, 1, 0, 0, 0, 7654, 807, 1, 0, 0, 0, 7655, 7667, 5, 561, 0, 0, 7656, 7667, 5, 563, 0, 0, 7657, 7661, 5, 565, 0, 0, 7658, 7660, 5, 590, 0, 0, 7659, 7658, 1, 0, 0, 0, 7660, 7663, 1, 0, 0, 0, 7661, 7659, 1, 0, 0, 0, 7661, 7662, 1, 0, 0, 0, 7662, 7664, 1, 0, 0, 0, 7663, 7661, 1, 0, 0, 0, 7664, 7667, 5, 591, 0, 0, 7665, 7667, 5, 586, 0, 0, 7666, 7655, 1, 0, 0, 0, 7666, 7656, 1, 0, 0, 0, 7666, 7657, 1, 0, 0, 0, 7666, 7665, 1, 0, 0, 0, 7667, 809, 1, 0, 0, 0, 7668, 7670, 7, 30, 0, 0, 7669, 7668, 1, 0, 0, 0, 7669, 7670, 1, 0, 0, 0, 7670, 7671, 1, 0, 0, 0, 7671, 7672, 5, 574, 0, 0, 7672, 811, 1, 0, 0, 0, 7673, 7679, 3, 820, 410, 0, 7674, 7679, 5, 52, 0, 0, 7675, 7679, 5, 49, 0, 0, 7676, 7679, 5, 89, 0, 0, 7677, 7679, 5, 524, 0, 0, 7678, 7673, 1, 0, 0, 0, 7678, 7674, 1, 0, 0, 0, 7678, 7675, 1, 0, 0, 0, 7678, 7676, 1, 0, 0, 0, 7678, 7677, 1, 0, 0, 0, 7679, 813, 1, 0, 0, 0, 7680, 7685, 3, 812, 406, 0, 7681, 7682, 5, 6, 0, 0, 7682, 7684, 3, 812, 406, 0, 7683, 7681, 1, 0, 0, 0, 7684, 7687, 1, 0, 0, 0, 7685, 7683, 1, 0, 0, 0, 7685, 7686, 1, 0, 0, 0, 7686, 815, 1, 0, 0, 0, 7687, 7685, 1, 0, 0, 0, 7688, 7691, 3, 824, 412, 0, 7689, 7691, 3, 828, 414, 0, 7690, 7688, 1, 0, 0, 0, 7690, 7689, 1, 0, 0, 0, 7691, 817, 1, 0, 0, 0, 7692, 7695, 3, 824, 412, 0, 7693, 7695, 3, 830, 415, 0, 7694, 7692, 1, 0, 0, 0, 7694, 7693, 1, 0, 0, 0, 7695, 819, 1, 0, 0, 0, 7696, 7700, 3, 824, 412, 0, 7697, 7700, 3, 828, 414, 0, 7698, 7700, 3, 830, 415, 0, 7699, 7696, 1, 0, 0, 0, 7699, 7697, 1, 0, 0, 0, 7699, 7698, 1, 0, 0, 0, 7700, 821, 1, 0, 0, 0, 7701, 7706, 3, 824, 412, 0, 7702, 7706, 3, 828, 414, 0, 7703, 7706, 3, 830, 415, 0, 7704, 7706, 3, 832, 416, 0, 7705, 7701, 1, 0, 0, 0, 7705, 7702, 1, 0, 0, 0, 7705, 7703, 1, 0, 0, 0, 7705, 7704, 1, 0, 0, 0, 7706, 823, 1, 0, 0, 0, 7707, 7710, 5, 552, 0, 0, 7708, 7709, 5, 487, 0, 0, 7709, 7711, 3, 808, 404, 0, 7710, 7708, 1, 0, 0, 0, 7710, 7711, 1, 0, 0, 0, 7711, 7719, 1, 0, 0, 0, 7712, 7719, 3, 806, 403, 0, 7713, 7719, 5, 553, 0, 0, 7714, 7719, 5, 557, 0, 0, 7715, 7719, 5, 577, 0, 0, 7716, 7719, 5, 578, 0, 0, 7717, 7719, 3, 826, 413, 0, 7718, 7707, 1, 0, 0, 0, 7718, 7712, 1, 0, 0, 0, 7718, 7713, 1, 0, 0, 0, 7718, 7714, 1, 0, 0, 0, 7718, 7715, 1, 0, 0, 0, 7718, 7716, 1, 0, 0, 0, 7718, 7717, 1, 0, 0, 0, 7719, 825, 1, 0, 0, 0, 7720, 7721, 7, 110, 0, 0, 7721, 827, 1, 0, 0, 0, 7722, 7774, 5, 387, 0, 0, 7723, 7774, 5, 388, 0, 0, 7724, 7774, 3, 656, 328, 0, 7725, 7774, 5, 390, 0, 0, 7726, 7774, 5, 391, 0, 0, 7727, 7774, 3, 658, 329, 0, 7728, 7774, 5, 393, 0, 0, 7729, 7774, 5, 394, 0, 0, 7730, 7774, 5, 395, 0, 0, 7731, 7774, 5, 396, 0, 0, 7732, 7774, 5, 397, 0, 0, 7733, 7774, 5, 398, 0, 0, 7734, 7774, 5, 399, 0, 0, 7735, 7774, 5, 470, 0, 0, 7736, 7774, 5, 400, 0, 0, 7737, 7774, 5, 401, 0, 0, 7738, 7774, 5, 402, 0, 0, 7739, 7774, 5, 403, 0, 0, 7740, 7774, 5, 404, 0, 0, 7741, 7774, 5, 405, 0, 0, 7742, 7774, 5, 406, 0, 0, 7743, 7774, 5, 407, 0, 0, 7744, 7774, 5, 489, 0, 0, 7745, 7774, 5, 408, 0, 0, 7746, 7774, 3, 652, 326, 0, 7747, 7774, 5, 453, 0, 0, 7748, 7774, 5, 410, 0, 0, 7749, 7774, 5, 411, 0, 0, 7750, 7774, 5, 412, 0, 0, 7751, 7774, 5, 413, 0, 0, 7752, 7774, 5, 414, 0, 0, 7753, 7774, 5, 415, 0, 0, 7754, 7774, 5, 416, 0, 0, 7755, 7774, 5, 417, 0, 0, 7756, 7774, 5, 418, 0, 0, 7757, 7774, 5, 419, 0, 0, 7758, 7774, 5, 420, 0, 0, 7759, 7774, 5, 421, 0, 0, 7760, 7774, 5, 422, 0, 0, 7761, 7774, 5, 423, 0, 0, 7762, 7774, 5, 424, 0, 0, 7763, 7774, 5, 425, 0, 0, 7764, 7774, 5, 426, 0, 0, 7765, 7774, 5, 427, 0, 0, 7766, 7774, 5, 428, 0, 0, 7767, 7774, 5, 476, 0, 0, 7768, 7774, 5, 429, 0, 0, 7769, 7774, 5, 430, 0, 0, 7770, 7774, 5, 431, 0, 0, 7771, 7774, 5, 432, 0, 0, 7772, 7774, 5, 474, 0, 0, 7773, 7722, 1, 0, 0, 0, 7773, 7723, 1, 0, 0, 0, 7773, 7724, 1, 0, 0, 0, 7773, 7725, 1, 0, 0, 0, 7773, 7726, 1, 0, 0, 0, 7773, 7727, 1, 0, 0, 0, 7773, 7728, 1, 0, 0, 0, 7773, 7729, 1, 0, 0, 0, 7773, 7730, 1, 0, 0, 0, 7773, 7731, 1, 0, 0, 0, 7773, 7732, 1, 0, 0, 0, 7773, 7733, 1, 0, 0, 0, 7773, 7734, 1, 0, 0, 0, 7773, 7735, 1, 0, 0, 0, 7773, 7736, 1, 0, 0, 0, 7773, 7737, 1, 0, 0, 0, 7773, 7738, 1, 0, 0, 0, 7773, 7739, 1, 0, 0, 0, 7773, 7740, 1, 0, 0, 0, 7773, 7741, 1, 0, 0, 0, 7773, 7742, 1, 0, 0, 0, 7773, 7743, 1, 0, 0, 0, 7773, 7744, 1, 0, 0, 0, 7773, 7745, 1, 0, 0, 0, 7773, 7746, 1, 0, 0, 0, 7773, 7747, 1, 0, 0, 0, 7773, 7748, 1, 0, 0, 0, 7773, 7749, 1, 0, 0, 0, 7773, 7750, 1, 0, 0, 0, 7773, 7751, 1, 0, 0, 0, 7773, 7752, 1, 0, 0, 0, 7773, 7753, 1, 0, 0, 0, 7773, 7754, 1, 0, 0, 0, 7773, 7755, 1, 0, 0, 0, 7773, 7756, 1, 0, 0, 0, 7773, 7757, 1, 0, 0, 0, 7773, 7758, 1, 0, 0, 0, 7773, 7759, 1, 0, 0, 0, 7773, 7760, 1, 0, 0, 0, 7773, 7761, 1, 0, 0, 0, 7773, 7762, 1, 0, 0, 0, 7773, 7763, 1, 0, 0, 0, 7773, 7764, 1, 0, 0, 0, 7773, 7765, 1, 0, 0, 0, 7773, 7766, 1, 0, 0, 0, 7773, 7767, 1, 0, 0, 0, 7773, 7768, 1, 0, 0, 0, 7773, 7769, 1, 0, 0, 0, 7773, 7770, 1, 0, 0, 0, 7773, 7771, 1, 0, 0, 0, 7773, 7772, 1, 0, 0, 0, 7774, 829, 1, 0, 0, 0, 7775, 7776, 7, 111, 0, 0, 7776, 831, 1, 0, 0, 0, 7777, 7778, 7, 112, 0, 0, 7778, 833, 1, 0, 0, 0, 7779, 7781, 3, 836, 418, 0, 7780, 7779, 1, 0, 0, 0, 7780, 7781, 1, 0, 0, 0, 7781, 7792, 1, 0, 0, 0, 7782, 7790, 5, 178, 0, 0, 7783, 7787, 3, 838, 419, 0, 7784, 7787, 5, 178, 0, 0, 7785, 7787, 3, 836, 418, 0, 7786, 7783, 1, 0, 0, 0, 7786, 7784, 1, 0, 0, 0, 7786, 7785, 1, 0, 0, 0, 7787, 7788, 1, 0, 0, 0, 7788, 7786, 1, 0, 0, 0, 7788, 7789, 1, 0, 0, 0, 7789, 7791, 1, 0, 0, 0, 7790, 7786, 1, 0, 0, 0, 7790, 7791, 1, 0, 0, 0, 7791, 7793, 1, 0, 0, 0, 7792, 7782, 1, 0, 0, 0, 7792, 7793, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7798, 5, 146, 0, 0, 7795, 7797, 3, 844, 422, 0, 7796, 7795, 1, 0, 0, 0, 7797, 7800, 1, 0, 0, 0, 7798, 7796, 1, 0, 0, 0, 7798, 7799, 1, 0, 0, 0, 7799, 7802, 1, 0, 0, 0, 7800, 7798, 1, 0, 0, 0, 7801, 7803, 3, 922, 461, 0, 7802, 7801, 1, 0, 0, 0, 7802, 7803, 1, 0, 0, 0, 7803, 7804, 1, 0, 0, 0, 7804, 7806, 5, 454, 0, 0, 7805, 7807, 3, 926, 463, 0, 7806, 7805, 1, 0, 0, 0, 7806, 7807, 1, 0, 0, 0, 7807, 835, 1, 0, 0, 0, 7808, 7809, 5, 18, 0, 0, 7809, 7810, 3, 926, 463, 0, 7810, 7811, 5, 19, 0, 0, 7811, 837, 1, 0, 0, 0, 7812, 7859, 3, 926, 463, 0, 7813, 7814, 5, 496, 0, 0, 7814, 7817, 5, 62, 0, 0, 7815, 7818, 5, 28, 0, 0, 7816, 7818, 3, 816, 408, 0, 7817, 7815, 1, 0, 0, 0, 7817, 7816, 1, 0, 0, 0, 7818, 7860, 1, 0, 0, 0, 7819, 7821, 5, 497, 0, 0, 7820, 7819, 1, 0, 0, 0, 7820, 7821, 1, 0, 0, 0, 7821, 7822, 1, 0, 0, 0, 7822, 7824, 3, 646, 323, 0, 7823, 7825, 3, 90, 45, 0, 7824, 7823, 1, 0, 0, 0, 7824, 7825, 1, 0, 0, 0, 7825, 7828, 1, 0, 0, 0, 7826, 7827, 5, 77, 0, 0, 7827, 7829, 5, 78, 0, 0, 7828, 7826, 1, 0, 0, 0, 7828, 7829, 1, 0, 0, 0, 7829, 7835, 1, 0, 0, 0, 7830, 7833, 3, 842, 421, 0, 7831, 7833, 5, 53, 0, 0, 7832, 7830, 1, 0, 0, 0, 7832, 7831, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 7836, 3, 928, 464, 0, 7835, 7832, 1, 0, 0, 0, 7835, 7836, 1, 0, 0, 0, 7836, 7860, 1, 0, 0, 0, 7837, 7839, 5, 269, 0, 0, 7838, 7837, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7840, 1, 0, 0, 0, 7840, 7842, 5, 324, 0, 0, 7841, 7838, 1, 0, 0, 0, 7841, 7842, 1, 0, 0, 0, 7842, 7843, 1, 0, 0, 0, 7843, 7855, 5, 172, 0, 0, 7844, 7845, 5, 2, 0, 0, 7845, 7850, 3, 840, 420, 0, 7846, 7847, 5, 6, 0, 0, 7847, 7849, 3, 840, 420, 0, 7848, 7846, 1, 0, 0, 0, 7849, 7852, 1, 0, 0, 0, 7850, 7848, 1, 0, 0, 0, 7850, 7851, 1, 0, 0, 0, 7851, 7853, 1, 0, 0, 0, 7852, 7850, 1, 0, 0, 0, 7853, 7854, 5, 3, 0, 0, 7854, 7856, 1, 0, 0, 0, 7855, 7844, 1, 0, 0, 0, 7855, 7856, 1, 0, 0, 0, 7856, 7857, 1, 0, 0, 0, 7857, 7858, 7, 113, 0, 0, 7858, 7860, 3, 554, 277, 0, 7859, 7813, 1, 0, 0, 0, 7859, 7820, 1, 0, 0, 0, 7859, 7841, 1, 0, 0, 0, 7860, 7861, 1, 0, 0, 0, 7861, 7862, 5, 7, 0, 0, 7862, 839, 1, 0, 0, 0, 7863, 7864, 3, 926, 463, 0, 7864, 7865, 3, 646, 323, 0, 7865, 841, 1, 0, 0, 0, 7866, 7867, 7, 114, 0, 0, 7867, 843, 1, 0, 0, 0, 7868, 7869, 3, 834, 417, 0, 7869, 7870, 5, 7, 0, 0, 7870, 7893, 1, 0, 0, 0, 7871, 7893, 3, 872, 436, 0, 7872, 7893, 3, 874, 437, 0, 7873, 7893, 3, 850, 425, 0, 7874, 7893, 3, 858, 429, 0, 7875, 7893, 3, 862, 431, 0, 7876, 7893, 3, 864, 432, 0, 7877, 7893, 3, 868, 434, 0, 7878, 7893, 3, 870, 435, 0, 7879, 7893, 3, 878, 439, 0, 7880, 7893, 3, 882, 441, 0, 7881, 7893, 3, 884, 442, 0, 7882, 7893, 3, 846, 423, 0, 7883, 7893, 3, 848, 424, 0, 7884, 7893, 3, 852, 426, 0, 7885, 7893, 3, 888, 444, 0, 7886, 7893, 3, 892, 446, 0, 7887, 7893, 3, 896, 448, 0, 7888, 7893, 3, 912, 456, 0, 7889, 7893, 3, 914, 457, 0, 7890, 7893, 3, 916, 458, 0, 7891, 7893, 3, 918, 459, 0, 7892, 7868, 1, 0, 0, 0, 7892, 7871, 1, 0, 0, 0, 7892, 7872, 1, 0, 0, 0, 7892, 7873, 1, 0, 0, 0, 7892, 7874, 1, 0, 0, 0, 7892, 7875, 1, 0, 0, 0, 7892, 7876, 1, 0, 0, 0, 7892, 7877, 1, 0, 0, 0, 7892, 7878, 1, 0, 0, 0, 7892, 7879, 1, 0, 0, 0, 7892, 7880, 1, 0, 0, 0, 7892, 7881, 1, 0, 0, 0, 7892, 7882, 1, 0, 0, 0, 7892, 7883, 1, 0, 0, 0, 7892, 7884, 1, 0, 0, 0, 7892, 7885, 1, 0, 0, 0, 7892, 7886, 1, 0, 0, 0, 7892, 7887, 1, 0, 0, 0, 7892, 7888, 1, 0, 0, 0, 7892, 7889, 1, 0, 0, 0, 7892, 7890, 1, 0, 0, 0, 7892, 7891, 1, 0, 0, 0, 7893, 845, 1, 0, 0, 0, 7894, 7895, 5, 498, 0, 0, 7895, 7896, 3, 928, 464, 0, 7896, 7897, 5, 7, 0, 0, 7897, 847, 1, 0, 0, 0, 7898, 7899, 5, 433, 0, 0, 7899, 7906, 3, 926, 463, 0, 7900, 7902, 5, 2, 0, 0, 7901, 7903, 3, 726, 363, 0, 7902, 7901, 1, 0, 0, 0, 7902, 7903, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 5, 3, 0, 0, 7905, 7907, 5, 7, 0, 0, 7906, 7900, 1, 0, 0, 0, 7906, 7907, 1, 0, 0, 0, 7907, 7918, 1, 0, 0, 0, 7908, 7909, 5, 57, 0, 0, 7909, 7910, 3, 926, 463, 0, 7910, 7912, 5, 2, 0, 0, 7911, 7913, 3, 726, 363, 0, 7912, 7911, 1, 0, 0, 0, 7912, 7913, 1, 0, 0, 0, 7913, 7914, 1, 0, 0, 0, 7914, 7915, 5, 3, 0, 0, 7915, 7916, 5, 7, 0, 0, 7916, 7918, 1, 0, 0, 0, 7917, 7898, 1, 0, 0, 0, 7917, 7908, 1, 0, 0, 0, 7918, 849, 1, 0, 0, 0, 7919, 7920, 3, 856, 428, 0, 7920, 7921, 3, 842, 421, 0, 7921, 7922, 3, 928, 464, 0, 7922, 7923, 5, 7, 0, 0, 7923, 851, 1, 0, 0, 0, 7924, 7926, 5, 499, 0, 0, 7925, 7927, 7, 115, 0, 0, 7926, 7925, 1, 0, 0, 0, 7926, 7927, 1, 0, 0, 0, 7927, 7928, 1, 0, 0, 0, 7928, 7929, 5, 500, 0, 0, 7929, 7934, 3, 854, 427, 0, 7930, 7931, 5, 6, 0, 0, 7931, 7933, 3, 854, 427, 0, 7932, 7930, 1, 0, 0, 0, 7933, 7936, 1, 0, 0, 0, 7934, 7932, 1, 0, 0, 0, 7934, 7935, 1, 0, 0, 0, 7935, 7937, 1, 0, 0, 0, 7936, 7934, 1, 0, 0, 0, 7937, 7938, 5, 7, 0, 0, 7938, 853, 1, 0, 0, 0, 7939, 7940, 3, 856, 428, 0, 7940, 7941, 3, 842, 421, 0, 7941, 7942, 3, 816, 408, 0, 7942, 855, 1, 0, 0, 0, 7943, 7946, 3, 310, 155, 0, 7944, 7946, 5, 28, 0, 0, 7945, 7943, 1, 0, 0, 0, 7945, 7944, 1, 0, 0, 0, 7946, 7953, 1, 0, 0, 0, 7947, 7948, 5, 4, 0, 0, 7948, 7949, 3, 668, 334, 0, 7949, 7950, 5, 5, 0, 0, 7950, 7952, 1, 0, 0, 0, 7951, 7947, 1, 0, 0, 0, 7952, 7955, 1, 0, 0, 0, 7953, 7951, 1, 0, 0, 0, 7953, 7954, 1, 0, 0, 0, 7954, 857, 1, 0, 0, 0, 7955, 7953, 1, 0, 0, 0, 7956, 7957, 5, 220, 0, 0, 7957, 7958, 3, 928, 464, 0, 7958, 7962, 5, 93, 0, 0, 7959, 7961, 3, 844, 422, 0, 7960, 7959, 1, 0, 0, 0, 7961, 7964, 1, 0, 0, 0, 7962, 7960, 1, 0, 0, 0, 7962, 7963, 1, 0, 0, 0, 7963, 7976, 1, 0, 0, 0, 7964, 7962, 1, 0, 0, 0, 7965, 7966, 5, 502, 0, 0, 7966, 7967, 3, 668, 334, 0, 7967, 7971, 5, 93, 0, 0, 7968, 7970, 3, 844, 422, 0, 7969, 7968, 1, 0, 0, 0, 7970, 7973, 1, 0, 0, 0, 7971, 7969, 1, 0, 0, 0, 7971, 7972, 1, 0, 0, 0, 7972, 7975, 1, 0, 0, 0, 7973, 7971, 1, 0, 0, 0, 7974, 7965, 1, 0, 0, 0, 7975, 7978, 1, 0, 0, 0, 7976, 7974, 1, 0, 0, 0, 7976, 7977, 1, 0, 0, 0, 7977, 7980, 1, 0, 0, 0, 7978, 7976, 1, 0, 0, 0, 7979, 7981, 3, 860, 430, 0, 7980, 7979, 1, 0, 0, 0, 7980, 7981, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 7983, 5, 454, 0, 0, 7983, 7984, 5, 220, 0, 0, 7984, 7985, 5, 7, 0, 0, 7985, 859, 1, 0, 0, 0, 7986, 7990, 5, 58, 0, 0, 7987, 7989, 3, 844, 422, 0, 7988, 7987, 1, 0, 0, 0, 7989, 7992, 1, 0, 0, 0, 7990, 7988, 1, 0, 0, 0, 7990, 7991, 1, 0, 0, 0, 7991, 861, 1, 0, 0, 0, 7992, 7990, 1, 0, 0, 0, 7993, 7995, 5, 40, 0, 0, 7994, 7996, 3, 928, 464, 0, 7995, 7994, 1, 0, 0, 0, 7995, 7996, 1, 0, 0, 0, 7996, 8006, 1, 0, 0, 0, 7997, 7998, 5, 102, 0, 0, 7998, 7999, 3, 726, 363, 0, 7999, 8003, 5, 93, 0, 0, 8000, 8002, 3, 844, 422, 0, 8001, 8000, 1, 0, 0, 0, 8002, 8005, 1, 0, 0, 0, 8003, 8001, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 8007, 1, 0, 0, 0, 8005, 8003, 1, 0, 0, 0, 8006, 7997, 1, 0, 0, 0, 8007, 8008, 1, 0, 0, 0, 8008, 8006, 1, 0, 0, 0, 8008, 8009, 1, 0, 0, 0, 8009, 8011, 1, 0, 0, 0, 8010, 8012, 3, 860, 430, 0, 8011, 8010, 1, 0, 0, 0, 8011, 8012, 1, 0, 0, 0, 8012, 8013, 1, 0, 0, 0, 8013, 8014, 5, 454, 0, 0, 8014, 8015, 5, 40, 0, 0, 8015, 8016, 5, 7, 0, 0, 8016, 863, 1, 0, 0, 0, 8017, 8019, 3, 836, 418, 0, 8018, 8017, 1, 0, 0, 0, 8018, 8019, 1, 0, 0, 0, 8019, 8024, 1, 0, 0, 0, 8020, 8021, 5, 503, 0, 0, 8021, 8025, 3, 668, 334, 0, 8022, 8023, 5, 62, 0, 0, 8023, 8025, 3, 866, 433, 0, 8024, 8020, 1, 0, 0, 0, 8024, 8022, 1, 0, 0, 0, 8024, 8025, 1, 0, 0, 0, 8025, 8026, 1, 0, 0, 0, 8026, 8027, 3, 880, 440, 0, 8027, 865, 1, 0, 0, 0, 8028, 8029, 3, 308, 154, 0, 8029, 8052, 5, 68, 0, 0, 8030, 8032, 3, 816, 408, 0, 8031, 8033, 3, 528, 264, 0, 8032, 8031, 1, 0, 0, 0, 8032, 8033, 1, 0, 0, 0, 8033, 8053, 1, 0, 0, 0, 8034, 8053, 3, 554, 277, 0, 8035, 8053, 3, 514, 257, 0, 8036, 8037, 5, 202, 0, 0, 8037, 8040, 3, 668, 334, 0, 8038, 8039, 5, 100, 0, 0, 8039, 8041, 3, 726, 363, 0, 8040, 8038, 1, 0, 0, 0, 8040, 8041, 1, 0, 0, 0, 8041, 8053, 1, 0, 0, 0, 8042, 8044, 5, 504, 0, 0, 8043, 8042, 1, 0, 0, 0, 8043, 8044, 1, 0, 0, 0, 8044, 8045, 1, 0, 0, 0, 8045, 8046, 3, 668, 334, 0, 8046, 8047, 5, 24, 0, 0, 8047, 8050, 3, 668, 334, 0, 8048, 8049, 5, 147, 0, 0, 8049, 8051, 3, 668, 334, 0, 8050, 8048, 1, 0, 0, 0, 8050, 8051, 1, 0, 0, 0, 8051, 8053, 1, 0, 0, 0, 8052, 8030, 1, 0, 0, 0, 8052, 8034, 1, 0, 0, 0, 8052, 8035, 1, 0, 0, 0, 8052, 8036, 1, 0, 0, 0, 8052, 8043, 1, 0, 0, 0, 8053, 867, 1, 0, 0, 0, 8054, 8056, 3, 836, 418, 0, 8055, 8054, 1, 0, 0, 0, 8055, 8056, 1, 0, 0, 0, 8056, 8057, 1, 0, 0, 0, 8057, 8058, 5, 505, 0, 0, 8058, 8061, 3, 308, 154, 0, 8059, 8060, 5, 506, 0, 0, 8060, 8062, 5, 574, 0, 0, 8061, 8059, 1, 0, 0, 0, 8061, 8062, 1, 0, 0, 0, 8062, 8063, 1, 0, 0, 0, 8063, 8064, 5, 68, 0, 0, 8064, 8065, 5, 35, 0, 0, 8065, 8066, 3, 668, 334, 0, 8066, 8067, 3, 880, 440, 0, 8067, 869, 1, 0, 0, 0, 8068, 8070, 7, 116, 0, 0, 8069, 8071, 3, 926, 463, 0, 8070, 8069, 1, 0, 0, 0, 8070, 8071, 1, 0, 0, 0, 8071, 8074, 1, 0, 0, 0, 8072, 8073, 5, 102, 0, 0, 8073, 8075, 3, 928, 464, 0, 8074, 8072, 1, 0, 0, 0, 8074, 8075, 1, 0, 0, 0, 8075, 8076, 1, 0, 0, 0, 8076, 8077, 5, 7, 0, 0, 8077, 871, 1, 0, 0, 0, 8078, 8093, 5, 508, 0, 0, 8079, 8080, 5, 268, 0, 0, 8080, 8094, 3, 928, 464, 0, 8081, 8088, 5, 509, 0, 0, 8082, 8083, 5, 202, 0, 0, 8083, 8084, 3, 668, 334, 0, 8084, 8085, 5, 100, 0, 0, 8085, 8086, 3, 726, 363, 0, 8086, 8089, 1, 0, 0, 0, 8087, 8089, 3, 554, 277, 0, 8088, 8082, 1, 0, 0, 0, 8088, 8087, 1, 0, 0, 0, 8089, 8094, 1, 0, 0, 0, 8090, 8092, 3, 928, 464, 0, 8091, 8090, 1, 0, 0, 0, 8091, 8092, 1, 0, 0, 0, 8092, 8094, 1, 0, 0, 0, 8093, 8079, 1, 0, 0, 0, 8093, 8081, 1, 0, 0, 0, 8093, 8091, 1, 0, 0, 0, 8094, 8095, 1, 0, 0, 0, 8095, 8096, 5, 7, 0, 0, 8096, 873, 1, 0, 0, 0, 8097, 8127, 5, 510, 0, 0, 8098, 8100, 7, 117, 0, 0, 8099, 8098, 1, 0, 0, 0, 8099, 8100, 1, 0, 0, 0, 8100, 8113, 1, 0, 0, 0, 8101, 8114, 3, 824, 412, 0, 8102, 8103, 5, 511, 0, 0, 8103, 8114, 3, 806, 403, 0, 8104, 8111, 3, 806, 403, 0, 8105, 8106, 5, 6, 0, 0, 8106, 8108, 3, 668, 334, 0, 8107, 8105, 1, 0, 0, 0, 8108, 8109, 1, 0, 0, 0, 8109, 8107, 1, 0, 0, 0, 8109, 8110, 1, 0, 0, 0, 8110, 8112, 1, 0, 0, 0, 8111, 8107, 1, 0, 0, 0, 8111, 8112, 1, 0, 0, 0, 8112, 8114, 1, 0, 0, 0, 8113, 8101, 1, 0, 0, 0, 8113, 8102, 1, 0, 0, 0, 8113, 8104, 1, 0, 0, 0, 8113, 8114, 1, 0, 0, 0, 8114, 8124, 1, 0, 0, 0, 8115, 8116, 5, 100, 0, 0, 8116, 8121, 3, 876, 438, 0, 8117, 8118, 5, 6, 0, 0, 8118, 8120, 3, 876, 438, 0, 8119, 8117, 1, 0, 0, 0, 8120, 8123, 1, 0, 0, 0, 8121, 8119, 1, 0, 0, 0, 8121, 8122, 1, 0, 0, 0, 8122, 8125, 1, 0, 0, 0, 8123, 8121, 1, 0, 0, 0, 8124, 8115, 1, 0, 0, 0, 8124, 8125, 1, 0, 0, 0, 8125, 8126, 1, 0, 0, 0, 8126, 8128, 5, 7, 0, 0, 8127, 8099, 1, 0, 0, 0, 8127, 8128, 1, 0, 0, 0, 8128, 875, 1, 0, 0, 0, 8129, 8130, 3, 824, 412, 0, 8130, 8131, 5, 10, 0, 0, 8131, 8132, 3, 668, 334, 0, 8132, 877, 1, 0, 0, 0, 8133, 8134, 5, 518, 0, 0, 8134, 8137, 3, 928, 464, 0, 8135, 8136, 5, 6, 0, 0, 8136, 8138, 3, 928, 464, 0, 8137, 8135, 1, 0, 0, 0, 8137, 8138, 1, 0, 0, 0, 8138, 8139, 1, 0, 0, 0, 8139, 8140, 5, 7, 0, 0, 8140, 879, 1, 0, 0, 0, 8141, 8145, 5, 519, 0, 0, 8142, 8144, 3, 844, 422, 0, 8143, 8142, 1, 0, 0, 0, 8144, 8147, 1, 0, 0, 0, 8145, 8143, 1, 0, 0, 0, 8145, 8146, 1, 0, 0, 0, 8146, 8148, 1, 0, 0, 0, 8147, 8145, 1, 0, 0, 0, 8148, 8149, 5, 454, 0, 0, 8149, 8151, 5, 519, 0, 0, 8150, 8152, 3, 926, 463, 0, 8151, 8150, 1, 0, 0, 0, 8151, 8152, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8154, 5, 7, 0, 0, 8154, 881, 1, 0, 0, 0, 8155, 8157, 3, 4, 2, 0, 8156, 8158, 3, 886, 443, 0, 8157, 8156, 1, 0, 0, 0, 8157, 8158, 1, 0, 0, 0, 8158, 8159, 1, 0, 0, 0, 8159, 8160, 5, 7, 0, 0, 8160, 883, 1, 0, 0, 0, 8161, 8162, 5, 202, 0, 0, 8162, 8178, 3, 668, 334, 0, 8163, 8165, 3, 886, 443, 0, 8164, 8163, 1, 0, 0, 0, 8164, 8165, 1, 0, 0, 0, 8165, 8168, 1, 0, 0, 0, 8166, 8167, 5, 100, 0, 0, 8167, 8169, 3, 726, 363, 0, 8168, 8166, 1, 0, 0, 0, 8168, 8169, 1, 0, 0, 0, 8169, 8179, 1, 0, 0, 0, 8170, 8171, 5, 100, 0, 0, 8171, 8173, 3, 726, 363, 0, 8172, 8170, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8175, 1, 0, 0, 0, 8174, 8176, 3, 886, 443, 0, 8175, 8174, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 8179, 1, 0, 0, 0, 8177, 8179, 1, 0, 0, 0, 8178, 8164, 1, 0, 0, 0, 8178, 8172, 1, 0, 0, 0, 8178, 8177, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 8181, 5, 7, 0, 0, 8181, 885, 1, 0, 0, 0, 8182, 8184, 5, 71, 0, 0, 8183, 8185, 5, 346, 0, 0, 8184, 8183, 1, 0, 0, 0, 8184, 8185, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8187, 3, 726, 363, 0, 8187, 887, 1, 0, 0, 0, 8188, 8220, 5, 520, 0, 0, 8189, 8194, 3, 920, 460, 0, 8190, 8192, 5, 269, 0, 0, 8191, 8190, 1, 0, 0, 0, 8191, 8192, 1, 0, 0, 0, 8192, 8193, 1, 0, 0, 0, 8193, 8195, 5, 324, 0, 0, 8194, 8191, 1, 0, 0, 0, 8194, 8195, 1, 0, 0, 0, 8195, 8196, 1, 0, 0, 0, 8196, 8204, 5, 62, 0, 0, 8197, 8205, 3, 554, 277, 0, 8198, 8199, 5, 202, 0, 0, 8199, 8202, 3, 928, 464, 0, 8200, 8201, 5, 100, 0, 0, 8201, 8203, 3, 726, 363, 0, 8202, 8200, 1, 0, 0, 0, 8202, 8203, 1, 0, 0, 0, 8203, 8205, 1, 0, 0, 0, 8204, 8197, 1, 0, 0, 0, 8204, 8198, 1, 0, 0, 0, 8205, 8221, 1, 0, 0, 0, 8206, 8218, 3, 816, 408, 0, 8207, 8208, 5, 2, 0, 0, 8208, 8213, 3, 890, 445, 0, 8209, 8210, 5, 6, 0, 0, 8210, 8212, 3, 890, 445, 0, 8211, 8209, 1, 0, 0, 0, 8212, 8215, 1, 0, 0, 0, 8213, 8211, 1, 0, 0, 0, 8213, 8214, 1, 0, 0, 0, 8214, 8216, 1, 0, 0, 0, 8215, 8213, 1, 0, 0, 0, 8216, 8217, 5, 3, 0, 0, 8217, 8219, 1, 0, 0, 0, 8218, 8207, 1, 0, 0, 0, 8218, 8219, 1, 0, 0, 0, 8219, 8221, 1, 0, 0, 0, 8220, 8189, 1, 0, 0, 0, 8220, 8206, 1, 0, 0, 0, 8221, 8222, 1, 0, 0, 0, 8222, 8223, 5, 7, 0, 0, 8223, 889, 1, 0, 0, 0, 8224, 8225, 3, 816, 408, 0, 8225, 8226, 5, 20, 0, 0, 8226, 8228, 1, 0, 0, 0, 8227, 8224, 1, 0, 0, 0, 8227, 8228, 1, 0, 0, 0, 8228, 8229, 1, 0, 0, 0, 8229, 8230, 3, 668, 334, 0, 8230, 891, 1, 0, 0, 0, 8231, 8233, 5, 61, 0, 0, 8232, 8234, 3, 894, 447, 0, 8233, 8232, 1, 0, 0, 0, 8233, 8234, 1, 0, 0, 0, 8234, 8236, 1, 0, 0, 0, 8235, 8237, 3, 326, 163, 0, 8236, 8235, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8238, 1, 0, 0, 0, 8238, 8239, 3, 920, 460, 0, 8239, 8240, 5, 71, 0, 0, 8240, 8241, 3, 726, 363, 0, 8241, 8242, 5, 7, 0, 0, 8242, 893, 1, 0, 0, 0, 8243, 8258, 5, 268, 0, 0, 8244, 8258, 5, 293, 0, 0, 8245, 8258, 5, 207, 0, 0, 8246, 8258, 5, 249, 0, 0, 8247, 8249, 7, 51, 0, 0, 8248, 8247, 1, 0, 0, 0, 8248, 8249, 1, 0, 0, 0, 8249, 8250, 1, 0, 0, 0, 8250, 8258, 3, 668, 334, 0, 8251, 8258, 5, 30, 0, 0, 8252, 8255, 7, 118, 0, 0, 8253, 8256, 3, 668, 334, 0, 8254, 8256, 5, 30, 0, 0, 8255, 8253, 1, 0, 0, 0, 8255, 8254, 1, 0, 0, 0, 8255, 8256, 1, 0, 0, 0, 8256, 8258, 1, 0, 0, 0, 8257, 8243, 1, 0, 0, 0, 8257, 8244, 1, 0, 0, 0, 8257, 8245, 1, 0, 0, 0, 8257, 8246, 1, 0, 0, 0, 8257, 8248, 1, 0, 0, 0, 8257, 8251, 1, 0, 0, 0, 8257, 8252, 1, 0, 0, 0, 8258, 895, 1, 0, 0, 0, 8259, 8261, 5, 265, 0, 0, 8260, 8262, 3, 894, 447, 0, 8261, 8260, 1, 0, 0, 0, 8261, 8262, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8264, 3, 920, 460, 0, 8264, 8265, 5, 7, 0, 0, 8265, 897, 1, 0, 0, 0, 8266, 8268, 3, 566, 283, 0, 8267, 8266, 1, 0, 0, 0, 8267, 8268, 1, 0, 0, 0, 8268, 8269, 1, 0, 0, 0, 8269, 8270, 5, 525, 0, 0, 8270, 8272, 5, 71, 0, 0, 8271, 8273, 5, 81, 0, 0, 8272, 8271, 1, 0, 0, 0, 8272, 8273, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, 0, 8274, 8276, 3, 770, 385, 0, 8275, 8277, 5, 9, 0, 0, 8276, 8275, 1, 0, 0, 0, 8276, 8277, 1, 0, 0, 0, 8277, 8282, 1, 0, 0, 0, 8278, 8280, 5, 36, 0, 0, 8279, 8278, 1, 0, 0, 0, 8279, 8280, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 8283, 3, 816, 408, 0, 8282, 8279, 1, 0, 0, 0, 8282, 8283, 1, 0, 0, 0, 8283, 8284, 1, 0, 0, 0, 8284, 8285, 5, 100, 0, 0, 8285, 8286, 3, 900, 450, 0, 8286, 8287, 5, 80, 0, 0, 8287, 8289, 3, 668, 334, 0, 8288, 8290, 3, 902, 451, 0, 8289, 8288, 1, 0, 0, 0, 8290, 8291, 1, 0, 0, 0, 8291, 8289, 1, 0, 0, 0, 8291, 8292, 1, 0, 0, 0, 8292, 8294, 1, 0, 0, 0, 8293, 8295, 3, 540, 270, 0, 8294, 8293, 1, 0, 0, 0, 8294, 8295, 1, 0, 0, 0, 8295, 899, 1, 0, 0, 0, 8296, 8298, 5, 81, 0, 0, 8297, 8296, 1, 0, 0, 0, 8297, 8298, 1, 0, 0, 0, 8298, 8299, 1, 0, 0, 0, 8299, 8301, 3, 770, 385, 0, 8300, 8302, 5, 9, 0, 0, 8301, 8300, 1, 0, 0, 0, 8301, 8302, 1, 0, 0, 0, 8302, 8308, 1, 0, 0, 0, 8303, 8306, 3, 558, 279, 0, 8304, 8306, 3, 602, 301, 0, 8305, 8303, 1, 0, 0, 0, 8305, 8304, 1, 0, 0, 0, 8306, 8308, 1, 0, 0, 0, 8307, 8297, 1, 0, 0, 0, 8307, 8305, 1, 0, 0, 0, 8308, 8313, 1, 0, 0, 0, 8309, 8311, 5, 36, 0, 0, 8310, 8309, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8312, 1, 0, 0, 0, 8312, 8314, 3, 816, 408, 0, 8313, 8310, 1, 0, 0, 0, 8313, 8314, 1, 0, 0, 0, 8314, 901, 1, 0, 0, 0, 8315, 8316, 5, 102, 0, 0, 8316, 8319, 5, 526, 0, 0, 8317, 8318, 5, 33, 0, 0, 8318, 8320, 3, 668, 334, 0, 8319, 8317, 1, 0, 0, 0, 8319, 8320, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, 8321, 8326, 5, 93, 0, 0, 8322, 8327, 3, 906, 453, 0, 8323, 8327, 5, 182, 0, 0, 8324, 8325, 5, 57, 0, 0, 8325, 8327, 5, 270, 0, 0, 8326, 8322, 1, 0, 0, 0, 8326, 8323, 1, 0, 0, 0, 8326, 8324, 1, 0, 0, 0, 8327, 8342, 1, 0, 0, 0, 8328, 8329, 5, 102, 0, 0, 8329, 8330, 5, 77, 0, 0, 8330, 8333, 5, 526, 0, 0, 8331, 8332, 5, 33, 0, 0, 8332, 8334, 3, 668, 334, 0, 8333, 8331, 1, 0, 0, 0, 8333, 8334, 1, 0, 0, 0, 8334, 8335, 1, 0, 0, 0, 8335, 8339, 5, 93, 0, 0, 8336, 8340, 3, 904, 452, 0, 8337, 8338, 5, 57, 0, 0, 8338, 8340, 5, 270, 0, 0, 8339, 8336, 1, 0, 0, 0, 8339, 8337, 1, 0, 0, 0, 8340, 8342, 1, 0, 0, 0, 8341, 8315, 1, 0, 0, 0, 8341, 8328, 1, 0, 0, 0, 8342, 903, 1, 0, 0, 0, 8343, 8345, 5, 241, 0, 0, 8344, 8346, 3, 138, 69, 0, 8345, 8344, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 8350, 1, 0, 0, 0, 8347, 8348, 5, 463, 0, 0, 8348, 8349, 7, 77, 0, 0, 8349, 8351, 5, 450, 0, 0, 8350, 8347, 1, 0, 0, 0, 8350, 8351, 1, 0, 0, 0, 8351, 8352, 1, 0, 0, 0, 8352, 8353, 3, 908, 454, 0, 8353, 905, 1, 0, 0, 0, 8354, 8355, 5, 369, 0, 0, 8355, 8373, 5, 333, 0, 0, 8356, 8357, 3, 796, 398, 0, 8357, 8358, 5, 10, 0, 0, 8358, 8359, 3, 910, 455, 0, 8359, 8374, 1, 0, 0, 0, 8360, 8361, 3, 138, 69, 0, 8361, 8362, 5, 10, 0, 0, 8362, 8363, 5, 2, 0, 0, 8363, 8368, 3, 910, 455, 0, 8364, 8365, 5, 6, 0, 0, 8365, 8367, 3, 910, 455, 0, 8366, 8364, 1, 0, 0, 0, 8367, 8370, 1, 0, 0, 0, 8368, 8366, 1, 0, 0, 0, 8368, 8369, 1, 0, 0, 0, 8369, 8371, 1, 0, 0, 0, 8370, 8368, 1, 0, 0, 0, 8371, 8372, 5, 3, 0, 0, 8372, 8374, 1, 0, 0, 0, 8373, 8356, 1, 0, 0, 0, 8373, 8360, 1, 0, 0, 0, 8374, 8375, 1, 0, 0, 0, 8375, 8373, 1, 0, 0, 0, 8375, 8376, 1, 0, 0, 0, 8376, 907, 1, 0, 0, 0, 8377, 8378, 5, 422, 0, 0, 8378, 8379, 5, 2, 0, 0, 8379, 8384, 3, 910, 455, 0, 8380, 8381, 5, 6, 0, 0, 8381, 8383, 3, 910, 455, 0, 8382, 8380, 1, 0, 0, 0, 8383, 8386, 1, 0, 0, 0, 8384, 8382, 1, 0, 0, 0, 8384, 8385, 1, 0, 0, 0, 8385, 8387, 1, 0, 0, 0, 8386, 8384, 1, 0, 0, 0, 8387, 8388, 5, 3, 0, 0, 8388, 8392, 1, 0, 0, 0, 8389, 8390, 5, 53, 0, 0, 8390, 8392, 5, 422, 0, 0, 8391, 8377, 1, 0, 0, 0, 8391, 8389, 1, 0, 0, 0, 8392, 909, 1, 0, 0, 0, 8393, 8396, 3, 582, 291, 0, 8394, 8396, 5, 53, 0, 0, 8395, 8393, 1, 0, 0, 0, 8395, 8394, 1, 0, 0, 0, 8396, 911, 1, 0, 0, 0, 8397, 8398, 5, 157, 0, 0, 8398, 8399, 3, 920, 460, 0, 8399, 8400, 5, 7, 0, 0, 8400, 913, 1, 0, 0, 0, 8401, 8402, 5, 78, 0, 0, 8402, 8403, 5, 7, 0, 0, 8403, 915, 1, 0, 0, 0, 8404, 8410, 7, 68, 0, 0, 8405, 8407, 5, 33, 0, 0, 8406, 8408, 5, 269, 0, 0, 8407, 8406, 1, 0, 0, 0, 8407, 8408, 1, 0, 0, 0, 8408, 8409, 1, 0, 0, 0, 8409, 8411, 5, 153, 0, 0, 8410, 8405, 1, 0, 0, 0, 8410, 8411, 1, 0, 0, 0, 8411, 8412, 1, 0, 0, 0, 8412, 8413, 5, 7, 0, 0, 8413, 917, 1, 0, 0, 0, 8414, 8415, 5, 333, 0, 0, 8415, 8416, 3, 310, 155, 0, 8416, 8417, 5, 94, 0, 0, 8417, 8418, 5, 53, 0, 0, 8418, 8419, 5, 7, 0, 0, 8419, 8427, 1, 0, 0, 0, 8420, 8423, 5, 313, 0, 0, 8421, 8424, 3, 310, 155, 0, 8422, 8424, 5, 30, 0, 0, 8423, 8421, 1, 0, 0, 0, 8423, 8422, 1, 0, 0, 0, 8424, 8425, 1, 0, 0, 0, 8425, 8427, 5, 7, 0, 0, 8426, 8414, 1, 0, 0, 0, 8426, 8420, 1, 0, 0, 0, 8427, 919, 1, 0, 0, 0, 8428, 8431, 3, 816, 408, 0, 8429, 8431, 5, 28, 0, 0, 8430, 8428, 1, 0, 0, 0, 8430, 8429, 1, 0, 0, 0, 8431, 921, 1, 0, 0, 0, 8432, 8449, 5, 517, 0, 0, 8433, 8434, 5, 102, 0, 0, 8434, 8439, 3, 924, 462, 0, 8435, 8436, 5, 82, 0, 0, 8436, 8438, 3, 924, 462, 0, 8437, 8435, 1, 0, 0, 0, 8438, 8441, 1, 0, 0, 0, 8439, 8437, 1, 0, 0, 0, 8439, 8440, 1, 0, 0, 0, 8440, 8442, 1, 0, 0, 0, 8441, 8439, 1, 0, 0, 0, 8442, 8446, 5, 93, 0, 0, 8443, 8445, 3, 844, 422, 0, 8444, 8443, 1, 0, 0, 0, 8445, 8448, 1, 0, 0, 0, 8446, 8444, 1, 0, 0, 0, 8446, 8447, 1, 0, 0, 0, 8447, 8450, 1, 0, 0, 0, 8448, 8446, 1, 0, 0, 0, 8449, 8433, 1, 0, 0, 0, 8450, 8451, 1, 0, 0, 0, 8451, 8449, 1, 0, 0, 0, 8451, 8452, 1, 0, 0, 0, 8452, 923, 1, 0, 0, 0, 8453, 8457, 3, 926, 463, 0, 8454, 8455, 5, 511, 0, 0, 8455, 8457, 3, 806, 403, 0, 8456, 8453, 1, 0, 0, 0, 8456, 8454, 1, 0, 0, 0, 8457, 925, 1, 0, 0, 0, 8458, 8461, 3, 816, 408, 0, 8459, 8461, 3, 826, 413, 0, 8460, 8458, 1, 0, 0, 0, 8460, 8459, 1, 0, 0, 0, 8461, 927, 1, 0, 0, 0, 8462, 8464, 3, 752, 376, 0, 8463, 8462, 1, 0, 0, 0, 8463, 8464, 1, 0, 0, 0, 8464, 8466, 1, 0, 0, 0, 8465, 8467, 3, 574, 287, 0, 8466, 8465, 1, 0, 0, 0, 8466, 8467, 1, 0, 0, 0, 8467, 8469, 1, 0, 0, 0, 8468, 8470, 3, 604, 302, 0, 8469, 8468, 1, 0, 0, 0, 8469, 8470, 1, 0, 0, 0, 8470, 8472, 1, 0, 0, 0, 8471, 8473, 3, 632, 316, 0, 8472, 8471, 1, 0, 0, 0, 8472, 8473, 1, 0, 0, 0, 8473, 8475, 1, 0, 0, 0, 8474, 8476, 3, 594, 297, 0, 8475, 8474, 1, 0, 0, 0, 8475, 8476, 1, 0, 0, 0, 8476, 8478, 1, 0, 0, 0, 8477, 8479, 3, 698, 349, 0, 8478, 8477, 1, 0, 0, 0, 8478, 8479, 1, 0, 0, 0, 8479, 8481, 1, 0, 0, 0, 8480, 8482, 3, 696, 348, 0, 8481, 8480, 1, 0, 0, 0, 8481, 8482, 1, 0, 0, 0, 8482, 929, 1, 0, 0, 0, 1190, 933, 940, 1060, 1062, 1071, 1076, 1082, 1117, 1127, 1133, 1138, 1145, 1150, 1157, 1168, 1176, 1180, 1192, 1198, 1204, 1208, 1213, 1217, 1230, 1240, 1242, 1248, 1253, 1266, 1269, 1274, 1279, 1290, 1294, 1306, 1310, 1313, 1317, 1329, 1347, 1354, 1362, 1367, 1374, 1382, 1388, 1396, 1404, 1408, 1422, 1427, 1432, 1444, 1450, 1462, 1467, 1477, 1483, 1488, 1497, 1504, 1509, 1514, 1524, 1529, 1534, 1541, 1545, 1559, 1565, 1571, 1576, 1583, 1592, 1601, 1610, 1619, 1623, 1635, 1643, 1653, 1673, 1678, 1681, 1688, 1691, 1695, 1699, 1702, 1707, 1712, 1716, 1725, 1731, 1735, 1744, 1747, 1753, 1762, 1774, 1778, 1782, 1787, 1790, 1796, 1798, 1800, 1804, 1810, 1814, 1819, 1824, 1828, 1831, 1838, 1851, 1864, 1889, 1899, 1906, 1911, 1915, 1922, 1927, 1930, 1932, 1937, 1941, 1945, 1949, 1954, 1957, 1961, 1964, 1968, 1976, 1981, 1984, 1988, 1994, 2003, 2007, 2017, 2022, 2026, 2030, 2032, 2034, 2041, 2046, 2050, 2055, 2067, 2072, 2076, 2080, 2085, 2089, 2092, 2095, 2098, 2101, 2104, 2109, 2112, 2115, 2118, 2121, 2124, 2130, 2134, 2137, 2140, 2143, 2146, 2148, 2155, 2163, 2173, 2178, 2188, 2191, 2196, 2201, 2206, 2209, 2214, 2223, 2225, 2229, 2232, 2236, 2241, 2246, 2250, 2253, 2257, 2260, 2265, 2268, 2273, 2276, 2280, 2283, 2286, 2291, 2294, 2302, 2314, 2318, 2325, 2330, 2333, 2336, 2339, 2344, 2355, 2361, 2365, 2368, 2371, 2376, 2383, 2386, 2390, 2398, 2403, 2406, 2409, 2416, 2421, 2430, 2433, 2436, 2441, 2444, 2456, 2466, 2483, 2487, 2491, 2493, 2510, 2512, 2528, 2539, 2542, 2545, 2554, 2563, 2579, 2582, 2585, 2593, 2597, 2604, 2613, 2617, 2623, 2627, 2630, 2633, 2636, 2639, 2645, 2649, 2654, 2658, 2661, 2664, 2667, 2672, 2678, 2682, 2686, 2690, 2696, 2698, 2703, 2709, 2715, 2719, 2734, 2739, 2742, 2744, 2747, 2751, 2755, 2758, 2761, 2769, 2775, 2777, 2783, 2788, 2793, 2797, 2804, 2806, 2817, 2856, 2866, 2868, 2871, 2875, 2879, 2889, 2891, 2897, 2899, 2908, 2920, 2934, 2939, 2942, 2949, 2954, 2962, 2964, 2970, 2975, 2979, 2984, 2990, 2997, 3003, 3005, 3014, 3020, 3028, 3034, 3039, 3044, 3052, 3067, 3069, 3073, 3077, 3080, 3083, 3092, 3095, 3098, 3104, 3110, 3114, 3126, 3132, 3135, 3140, 3144, 3151, 3161, 3163, 3187, 3199, 3204, 3206, 3210, 3213, 3216, 3226, 3229, 3239, 3244, 3249, 3252, 3255, 3263, 3269, 3276, 3284, 3287, 3298, 3302, 3308, 3315, 3318, 3327, 3341, 3344, 3358, 3369, 3372, 3384, 3389, 3402, 3407, 3420, 3429, 3432, 3435, 3442, 3445, 3457, 3463, 3465, 3473, 3481, 3489, 3501, 3506, 3517, 3528, 3536, 3544, 3551, 3558, 3560, 3563, 3568, 3573, 3592, 3601, 3604, 3631, 3640, 3643, 3647, 3651, 3655, 3662, 3666, 3670, 3674, 3678, 3683, 3687, 3692, 3698, 3703, 3710, 3714, 3720, 3724, 3729, 3737, 3743, 3748, 3755, 3760, 3764, 3769, 3775, 3782, 3787, 3794, 3799, 3806, 3810, 3818, 3822, 3824, 3827, 3832, 3842, 3857, 3860, 3868, 3875, 3880, 3886, 3890, 3897, 3902, 3905, 3908, 3912, 3921, 3939, 3942, 3974, 3979, 3985, 4005, 4010, 4016, 4019, 4023, 4027, 4033, 4036, 4040, 4044, 4049, 4052, 4055, 4058, 4071, 4077, 4085, 4092, 4097, 4100, 4107, 4110, 4118, 4121, 4126, 4133, 4136, 4156, 4168, 4171, 4177, 4182, 4191, 4199, 4204, 4210, 4217, 4225, 4228, 4239, 4241, 4255, 4261, 4269, 4271, 4277, 4281, 4284, 4287, 4292, 4297, 4301, 4304, 4307, 4310, 4313, 4321, 4332, 4335, 4338, 4343, 4346, 4350, 4354, 4360, 4368, 4371, 4384, 4389, 4391, 4396, 4403, 4410, 4419, 4427, 4435, 4442, 4450, 4457, 4465, 4469, 4473, 4475, 4481, 4486, 4490, 4497, 4502, 4507, 4512, 4514, 4524, 4534, 4550, 4568, 4580, 4587, 4602, 4607, 4610, 4615, 4620, 4625, 4628, 4631, 4636, 4643, 4647, 4652, 4659, 4663, 4669, 4678, 4687, 4699, 4701, 4714, 4720, 4724, 4726, 4733, 4746, 4753, 4755, 4771, 4775, 4779, 4784, 4789, 4794, 4799, 4802, 4814, 4867, 4876, 4880, 4889, 4893, 4902, 4906, 4911, 4914, 4918, 4923, 4925, 4934, 4939, 4950, 4954, 4968, 4976, 5014, 5016, 5035, 5038, 5065, 5069, 5073, 5077, 5081, 5084, 5099, 5106, 5120, 5133, 5158, 5177, 5192, 5208, 5215, 5226, 5229, 5248, 5251, 5264, 5268, 5288, 5300, 5304, 5326, 5330, 5340, 5344, 5350, 5354, 5358, 5362, 5369, 5374, 5385, 5389, 5392, 5397, 5403, 5414, 5418, 5421, 5425, 5429, 5432, 5442, 5445, 5449, 5454, 5460, 5463, 5468, 5471, 5478, 5480, 5486, 5490, 5499, 5504, 5506, 5516, 5519, 5524, 5532, 5535, 5540, 5542, 5544, 5550, 5567, 5573, 5586, 5592, 5596, 5601, 5631, 5646, 5651, 5655, 5668, 5672, 5674, 5683, 5689, 5691, 5695, 5698, 5701, 5704, 5707, 5709, 5712, 5716, 5724, 5729, 5732, 5738, 5742, 5746, 5751, 5753, 5757, 5761, 5768, 5774, 5778, 5780, 5782, 5795, 5803, 5811, 5822, 5832, 5837, 5841, 5845, 5852, 5855, 5857, 5865, 5869, 5872, 5879, 5886, 5891, 5898, 5901, 5903, 5906, 5912, 5917, 5921, 5928, 5938, 5945, 5948, 5951, 5955, 5966, 5969, 5972, 5975, 5978, 5985, 5988, 5991, 5998, 6010, 6017, 6019, 6024, 6029, 6031, 6037, 6044, 6049, 6054, 6058, 6062, 6066, 6068, 6072, 6076, 6079, 6082, 6084, 6094, 6096, 6101, 6105, 6110, 6114, 6121, 6126, 6130, 6133, 6139, 6142, 6161, 6168, 6172, 6175, 6179, 6183, 6186, 6189, 6194, 6203, 6210, 6214, 6218, 6222, 6225, 6227, 6232, 6236, 6241, 6247, 6254, 6259, 6264, 6273, 6280, 6288, 6299, 6304, 6308, 6311, 6315, 6320, 6324, 6329, 6337, 6348, 6353, 6357, 6360, 6363, 6365, 6368, 6371, 6374, 6378, 6382, 6386, 6388, 6397, 6402, 6408, 6412, 6414, 6421, 6426, 6432, 6434, 6438, 6445, 6450, 6453, 6459, 6463, 6469, 6478, 6484, 6486, 6491, 6494, 6503, 6510, 6512, 6519, 6524, 6527, 6537, 6548, 6553, 6557, 6565, 6575, 6582, 6588, 6599, 6605, 6615, 6624, 6628, 6631, 6633, 6635, 6639, 6647, 6650, 6655, 6660, 6667, 6669, 6675, 6679, 6682, 6687, 6690, 6692, 6698, 6707, 6713, 6716, 6724, 6727, 6731, 6737, 6739, 6742, 6746, 6751, 6758, 6765, 6767, 6773, 6775, 6780, 6782, 6786, 6795, 6799, 6807, 6809, 6823, 6826, 6834, 6843, 6849, 6854, 6862, 6864, 6869, 6873, 6878, 6883, 6889, 6905, 6907, 6916, 6931, 6936, 6939, 6945, 6950, 6963, 6968, 6972, 6979, 6998, 7010, 7015, 7023, 7025, 7027, 7036, 7039, 7044, 7049, 7052, 7063, 7071, 7076, 7078, 7081, 7085, 7096, 7117, 7125, 7138, 7148, 7154, 7160, 7163, 7166, 7192, 7194, 7215, 7225, 7238, 7243, 7247, 7249, 7261, 7268, 7274, 7280, 7284, 7295, 7308, 7312, 7317, 7320, 7323, 7332, 7343, 7345, 7349, 7354, 7363, 7368, 7376, 7386, 7394, 7398, 7401, 7408, 7416, 7420, 7427, 7435, 7437, 7446, 7449, 7461, 7470, 7477, 7486, 7496, 7501, 7505, 7507, 7510, 7515, 7520, 7528, 7536, 7539, 7546, 7554, 7562, 7570, 7587, 7594, 7602, 7619, 7625, 7631, 7642, 7648, 7653, 7661, 7666, 7669, 7678, 7685, 7690, 7694, 7699, 7705, 7710, 7718, 7773, 7780, 7786, 7788, 7790, 7792, 7798, 7802, 7806, 7817, 7820, 7824, 7828, 7832, 7835, 7838, 7841, 7850, 7855, 7859, 7892, 7902, 7906, 7912, 7917, 7926, 7934, 7945, 7953, 7962, 7971, 7976, 7980, 7990, 7995, 8003, 8008, 8011, 8018, 8024, 8032, 8040, 8043, 8050, 8052, 8055, 8061, 8070, 8074, 8088, 8091, 8093, 8099, 8109, 8111, 8113, 8121, 8124, 8127, 8137, 8145, 8151, 8157, 8164, 8168, 8172, 8175, 8178, 8184, 8191, 8194, 8202, 8204, 8213, 8218, 8220, 8227, 8233, 8236, 8248, 8255, 8257, 8261, 8267, 8272, 8276, 8279, 8282, 8291, 8294, 8297, 8301, 8305, 8307, 8310, 8313, 8319, 8326, 8333, 8339, 8341, 8345, 8350, 8368, 8373, 8375, 8384, 8391, 8395, 8407, 8410, 8423, 8426, 8430, 8439, 8446, 8451, 8456, 8460, 8463, 8466, 8469, 8472, 8475, 8478, 8481] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlParser.ts b/src/lib/postgresql/PostgreSqlParser.ts index d8ae6ee6..142b94b1 100644 --- a/src/lib/postgresql/PostgreSqlParser.ts +++ b/src/lib/postgresql/PostgreSqlParser.ts @@ -42400,7 +42400,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6999; + this.state = 6998; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 961, this.context) ) { case 1: @@ -42721,12 +42721,6 @@ export class PostgreSqlParser extends SQLParserBase { case 24: { this.state = 6993; - this.qualifiedName(); - } - break; - case 25: - { - this.state = 6994; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -42735,21 +42729,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6995; + this.state = 6994; this.primaryExpression(5); } break; - case 26: + case 25: { - this.state = 6996; + this.state = 6995; this.qualOp(); - this.state = 6997; + this.state = 6996; this.primaryExpression(2); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7028; + this.state = 7027; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42759,20 +42753,20 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7026; + this.state = 7025; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7001; + this.state = 7000; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7002; + this.state = 7001; this.mathOp(); - this.state = 7003; + this.state = 7002; this.primaryExpression(4); } break; @@ -42780,13 +42774,13 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7005; + this.state = 7004; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7006; + this.state = 7005; this.match(PostgreSqlParser.TYPECAST); - this.state = 7007; + this.state = 7006; this.typename(); } break; @@ -42794,18 +42788,18 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7008; + this.state = 7007; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7009; + this.state = 7008; this.qualOp(); - this.state = 7011; + this.state = 7010; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 7010; + this.state = 7009; this.primaryExpression(0); } break; @@ -42816,46 +42810,46 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7013; + this.state = 7012; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 7014; + this.state = 7013; this.match(PostgreSqlParser.KW_IS); - this.state = 7016; + this.state = 7015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7015; + this.state = 7014; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7024; + this.state = 7023; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DISTINCT: { - this.state = 7018; + this.state = 7017; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 7019; + this.state = 7018; this.match(PostgreSqlParser.KW_FROM); - this.state = 7020; + this.state = 7019; this.primaryExpression(0); } break; case PostgreSqlParser.KW_OF: { - this.state = 7021; + this.state = 7020; this.match(PostgreSqlParser.KW_OF); - this.state = 7022; + this.state = 7021; this.prepTypeClause(); } break; case PostgreSqlParser.KW_DOCUMENT: { - this.state = 7023; + this.state = 7022; this.match(PostgreSqlParser.KW_DOCUMENT); } break; @@ -42867,7 +42861,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 7030; + this.state = 7029; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); } @@ -42894,37 +42888,37 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7031; + this.state = 7030; this.functionName(); - this.state = 7032; + this.state = 7031; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7053; + this.state = 7052; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 971, this.context) ) { case 1: { - this.state = 7033; + this.state = 7032; this.funcArgList(); - this.state = 7037; + this.state = 7036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7034; + this.state = 7033; this.match(PostgreSqlParser.COMMA); - this.state = 7035; + this.state = 7034; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7036; + this.state = 7035; this.funcArgExpr(); } } - this.state = 7040; + this.state = 7039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7039; + this.state = 7038; this.sortClause(); } } @@ -42933,16 +42927,16 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7042; + this.state = 7041; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7043; + this.state = 7042; this.funcArgExpr(); - this.state = 7045; + this.state = 7044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7044; + this.state = 7043; this.sortClause(); } } @@ -42951,7 +42945,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7047; + this.state = 7046; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -42960,14 +42954,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7048; + this.state = 7047; this.funcArgList(); - this.state = 7050; + this.state = 7049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7049; + this.state = 7048; this.sortClause(); } } @@ -42976,12 +42970,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 4: { - this.state = 7052; + this.state = 7051; this.match(PostgreSqlParser.STAR); } break; } - this.state = 7055; + this.state = 7054; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -43003,63 +42997,63 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Func_exprContext(this.context, this.state); this.enterRule(localContext, 680, PostgreSqlParser.RULE_func_expr); try { - this.state = 7082; + this.state = 7081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7057; + this.state = 7056; this.funcApplication(); - this.state = 7064; + this.state = 7063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 7058; + this.state = 7057; this.match(PostgreSqlParser.KW_WITHIN); - this.state = 7059; + this.state = 7058; this.match(PostgreSqlParser.KW_GROUP); - this.state = 7060; + this.state = 7059; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7061; + this.state = 7060; this.sortClause(); - this.state = 7062; + this.state = 7061; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7072; + this.state = 7071; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 7066; + this.state = 7065; this.match(PostgreSqlParser.KW_FILTER); - this.state = 7067; + this.state = 7066; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7068; + this.state = 7067; this.match(PostgreSqlParser.KW_WHERE); - this.state = 7069; + this.state = 7068; this.expression(); - this.state = 7070; + this.state = 7069; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7079; + this.state = 7078; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { case 1: { - this.state = 7074; + this.state = 7073; this.match(PostgreSqlParser.KW_OVER); - this.state = 7077; + this.state = 7076; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7075; + this.state = 7074; this.windowSpecification(); } break; @@ -43458,7 +43452,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7076; + this.state = 7075; this.colId(); } break; @@ -43473,7 +43467,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7081; + this.state = 7080; this.funcExprCommonSubExpr(); } break; @@ -43497,20 +43491,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FuncExprWindowlessContext(this.context, this.state); this.enterRule(localContext, 682, PostgreSqlParser.RULE_funcExprWindowless); try { - this.state = 7086; + this.state = 7085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7084; + this.state = 7083; this.funcApplication(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7085; + this.state = 7084; this.funcExprCommonSubExpr(); } break; @@ -43535,28 +43529,28 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 684, PostgreSqlParser.RULE_funcExprCommonSubExpr); let _la: number; try { - this.state = 7262; + this.state = 7261; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 1); { - this.state = 7088; + this.state = 7087; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 7089; + this.state = 7088; this.match(PostgreSqlParser.KW_FOR); - this.state = 7090; + this.state = 7089; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7091; + this.state = 7090; this.expression(); - this.state = 7092; + this.state = 7091; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 7094; + this.state = 7093; this.match(PostgreSqlParser.KW_CURRENT_DATE); } break; @@ -43566,7 +43560,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 7095; + this.state = 7094; _la = this.tokenStream.LA(1); if(!(((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 100663299) !== 0))) { this.errorHandler.recoverInline(this); @@ -43575,12 +43569,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7097; + this.state = 7096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 7096; + this.state = 7095; this.optFloat(); } break; @@ -43590,42 +43584,42 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 4); { - this.state = 7099; + this.state = 7098; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case PostgreSqlParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 5); { - this.state = 7100; + this.state = 7099; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case PostgreSqlParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 6); { - this.state = 7101; + this.state = 7100; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case PostgreSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 7102; + this.state = 7101; this.match(PostgreSqlParser.KW_USER); } break; case PostgreSqlParser.KW_CURRENT_CATALOG: this.enterOuterAlt(localContext, 8); { - this.state = 7103; + this.state = 7102; this.match(PostgreSqlParser.KW_CURRENT_CATALOG); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: this.enterOuterAlt(localContext, 9); { - this.state = 7104; + this.state = 7103; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -43633,7 +43627,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TREAT: this.enterOuterAlt(localContext, 10); { - this.state = 7105; + this.state = 7104; _la = this.tokenStream.LA(1); if(!(_la === 41 || _la === 420)) { this.errorHandler.recoverInline(this); @@ -43642,162 +43636,162 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7106; + this.state = 7105; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7107; + this.state = 7106; this.expression(); - this.state = 7108; + this.state = 7107; this.match(PostgreSqlParser.KW_AS); - this.state = 7109; + this.state = 7108; this.typename(); - this.state = 7110; + this.state = 7109; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_EXTRACT: this.enterOuterAlt(localContext, 11); { - this.state = 7112; + this.state = 7111; this.match(PostgreSqlParser.KW_EXTRACT); - this.state = 7113; + this.state = 7112; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7118; + this.state = 7117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7114; + this.state = 7113; this.extractArg(); - this.state = 7115; + this.state = 7114; this.match(PostgreSqlParser.KW_FROM); - this.state = 7116; + this.state = 7115; this.expression(); } } - this.state = 7120; + this.state = 7119; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NORMALIZE: this.enterOuterAlt(localContext, 12); { - this.state = 7121; + this.state = 7120; this.match(PostgreSqlParser.KW_NORMALIZE); - this.state = 7122; + this.state = 7121; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7123; + this.state = 7122; this.expression(); - this.state = 7126; + this.state = 7125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7124; + this.state = 7123; this.match(PostgreSqlParser.COMMA); - this.state = 7125; + this.state = 7124; this.unicodeNormalForm(); } } - this.state = 7128; + this.state = 7127; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_OVERLAY: this.enterOuterAlt(localContext, 13); { - this.state = 7130; + this.state = 7129; this.match(PostgreSqlParser.KW_OVERLAY); - this.state = 7131; + this.state = 7130; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 7132; + this.state = 7131; this.expression(); - this.state = 7133; + this.state = 7132; this.match(PostgreSqlParser.KW_PLACING); - this.state = 7134; + this.state = 7133; this.expression(); - this.state = 7135; + this.state = 7134; this.match(PostgreSqlParser.KW_FROM); - this.state = 7136; + this.state = 7135; this.expression(); - this.state = 7139; + this.state = 7138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7137; + this.state = 7136; this.match(PostgreSqlParser.KW_FOR); - this.state = 7138; + this.state = 7137; this.expression(); } } } - this.state = 7141; + this.state = 7140; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_POSITION: this.enterOuterAlt(localContext, 14); { - this.state = 7143; + this.state = 7142; this.match(PostgreSqlParser.KW_POSITION); - this.state = 7144; + this.state = 7143; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7149; + this.state = 7148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763019) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7145; + this.state = 7144; this.primaryExpression(0); - this.state = 7146; + this.state = 7145; this.match(PostgreSqlParser.KW_IN); - this.state = 7147; + this.state = 7146; this.primaryExpression(0); } } - this.state = 7151; + this.state = 7150; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 15); { - this.state = 7152; + this.state = 7151; this.match(PostgreSqlParser.KW_SUBSTRING); - this.state = 7153; + this.state = 7152; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7155; + this.state = 7154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7154; + this.state = 7153; this.substrList(); } } - this.state = 7157; + this.state = 7156; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_TRIM: this.enterOuterAlt(localContext, 16); { - this.state = 7158; + this.state = 7157; this.match(PostgreSqlParser.KW_TRIM); - this.state = 7159; + this.state = 7158; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7161; + this.state = 7160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 73 || _la === 95) { { - this.state = 7160; + this.state = 7159; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 73 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -43810,47 +43804,47 @@ export class PostgreSqlParser extends SQLParserBase { } { - this.state = 7167; + this.state = 7166; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { case 1: { - this.state = 7164; + this.state = 7163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7163; + this.state = 7162; this.expression(); } } - this.state = 7166; + this.state = 7165; this.match(PostgreSqlParser.KW_FROM); } break; } - this.state = 7169; + this.state = 7168; this.exprList(); } - this.state = 7171; + this.state = 7170; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NULLIF: this.enterOuterAlt(localContext, 17); { - this.state = 7173; + this.state = 7172; this.match(PostgreSqlParser.KW_NULLIF); - this.state = 7174; + this.state = 7173; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7175; + this.state = 7174; this.expression(); - this.state = 7176; + this.state = 7175; this.match(PostgreSqlParser.COMMA); - this.state = 7177; + this.state = 7176; this.expression(); - this.state = 7178; + this.state = 7177; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -43860,7 +43854,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_XMLCONCAT: this.enterOuterAlt(localContext, 18); { - this.state = 7180; + this.state = 7179; _la = this.tokenStream.LA(1); if(!(((((_la - 393)) & ~0x1F) === 0 && ((1 << (_la - 393)) & 2113) !== 0) || _la === 425)) { this.errorHandler.recoverInline(this); @@ -43869,48 +43863,48 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7181; + this.state = 7180; this.executeParamClause(); } break; case PostgreSqlParser.KW_XMLELEMENT: this.enterOuterAlt(localContext, 19); { - this.state = 7182; + this.state = 7181; this.match(PostgreSqlParser.KW_XMLELEMENT); - this.state = 7183; + this.state = 7182; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7184; + this.state = 7183; this.match(PostgreSqlParser.KW_NAME); - this.state = 7185; + this.state = 7184; this.colLabel(); - this.state = 7195; + this.state = 7194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7186; + this.state = 7185; this.match(PostgreSqlParser.COMMA); - this.state = 7193; + this.state = 7192; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { { - this.state = 7187; + this.state = 7186; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); - this.state = 7188; + this.state = 7187; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7189; + this.state = 7188; this.xmlAttributeList(); - this.state = 7190; + this.state = 7189; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; case 2: { - this.state = 7192; + this.state = 7191; this.exprList(); } break; @@ -43918,55 +43912,55 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7197; + this.state = 7196; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLEXISTS: this.enterOuterAlt(localContext, 20); { - this.state = 7199; + this.state = 7198; this.match(PostgreSqlParser.KW_XMLEXISTS); - this.state = 7200; + this.state = 7199; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7201; + this.state = 7200; this.primaryExpression(0); - this.state = 7202; + this.state = 7201; this.xmlExistsArgument(); - this.state = 7203; + this.state = 7202; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLFOREST: this.enterOuterAlt(localContext, 21); { - this.state = 7205; + this.state = 7204; this.match(PostgreSqlParser.KW_XMLFOREST); - this.state = 7206; + this.state = 7205; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7207; + this.state = 7206; this.xmlAttributeList(); - this.state = 7208; + this.state = 7207; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPARSE: this.enterOuterAlt(localContext, 22); { - this.state = 7210; + this.state = 7209; this.match(PostgreSqlParser.KW_XMLPARSE); - this.state = 7211; + this.state = 7210; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7212; + this.state = 7211; this.documentOrContent(); - this.state = 7213; + this.state = 7212; this.expression(); - this.state = 7216; + this.state = 7215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 347) { { - this.state = 7214; + this.state = 7213; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -43975,111 +43969,111 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7215; + this.state = 7214; this.match(PostgreSqlParser.KW_WHITESPACE); } } - this.state = 7218; + this.state = 7217; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPI: this.enterOuterAlt(localContext, 23); { - this.state = 7220; + this.state = 7219; this.match(PostgreSqlParser.KW_XMLPI); - this.state = 7221; + this.state = 7220; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7222; + this.state = 7221; this.match(PostgreSqlParser.KW_NAME); - this.state = 7223; + this.state = 7222; this.colLabel(); - this.state = 7226; + this.state = 7225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7224; + this.state = 7223; this.match(PostgreSqlParser.COMMA); - this.state = 7225; + this.state = 7224; this.expression(); } } - this.state = 7228; + this.state = 7227; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLROOT: this.enterOuterAlt(localContext, 24); { - this.state = 7230; + this.state = 7229; this.match(PostgreSqlParser.KW_XMLROOT); - this.state = 7231; + this.state = 7230; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7232; + this.state = 7231; this.match(PostgreSqlParser.KW_XML); - this.state = 7233; + this.state = 7232; this.expression(); - this.state = 7234; + this.state = 7233; this.match(PostgreSqlParser.COMMA); - this.state = 7235; + this.state = 7234; this.match(PostgreSqlParser.KW_VERSION); - this.state = 7239; + this.state = 7238; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: { { - this.state = 7236; + this.state = 7235; this.match(PostgreSqlParser.KW_NO); - this.state = 7237; + this.state = 7236; this.match(PostgreSqlParser.KW_VALUE); } } break; case 2: { - this.state = 7238; + this.state = 7237; this.expression(); } break; } - this.state = 7250; + this.state = 7249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7241; + this.state = 7240; this.match(PostgreSqlParser.COMMA); - this.state = 7242; + this.state = 7241; this.match(PostgreSqlParser.KW_STANDALONE); - this.state = 7248; + this.state = 7247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_VALUE: { { - this.state = 7244; + this.state = 7243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7243; + this.state = 7242; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7246; + this.state = 7245; this.match(PostgreSqlParser.KW_VALUE); } } break; case PostgreSqlParser.KW_YES: { - this.state = 7247; + this.state = 7246; this.match(PostgreSqlParser.KW_YES); } break; @@ -44089,26 +44083,26 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7252; + this.state = 7251; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLSERIALIZE: this.enterOuterAlt(localContext, 25); { - this.state = 7254; + this.state = 7253; this.match(PostgreSqlParser.KW_XMLSERIALIZE); - this.state = 7255; + this.state = 7254; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7256; + this.state = 7255; this.documentOrContent(); - this.state = 7257; + this.state = 7256; this.expression(); - this.state = 7258; + this.state = 7257; this.match(PostgreSqlParser.KW_AS); - this.state = 7259; + this.state = 7258; this.simpleTypeName(); - this.state = 7260; + this.state = 7259; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -44137,21 +44131,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7264; + this.state = 7263; this.xmlAttributeEl(); - this.state = 7269; + this.state = 7268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7265; + this.state = 7264; this.match(PostgreSqlParser.COMMA); - this.state = 7266; + this.state = 7265; this.xmlAttributeEl(); } } - this.state = 7271; + this.state = 7270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44178,16 +44172,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7272; + this.state = 7271; this.expression(); - this.state = 7275; + this.state = 7274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7273; + this.state = 7272; this.match(PostgreSqlParser.KW_AS); - this.state = 7274; + this.state = 7273; this.colLabel(); } } @@ -44215,7 +44209,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7277; + this.state = 7276; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -44247,26 +44241,26 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7279; + this.state = 7278; this.match(PostgreSqlParser.KW_PASSING); - this.state = 7281; + this.state = 7280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 7280; + this.state = 7279; this.xmlPassingMech(); } break; } - this.state = 7283; + this.state = 7282; this.primaryExpression(0); - this.state = 7285; + this.state = 7284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 7284; + this.state = 7283; this.xmlPassingMech(); } } @@ -44294,9 +44288,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7287; + this.state = 7286; this.match(PostgreSqlParser.KW_BY); - this.state = 7288; + this.state = 7287; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -44328,25 +44322,25 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7290; + this.state = 7289; this.match(PostgreSqlParser.KW_WINDOW); - this.state = 7291; + this.state = 7290; this.windowDefinition(); - this.state = 7296; + this.state = 7295; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7292; + this.state = 7291; this.match(PostgreSqlParser.COMMA); - this.state = 7293; + this.state = 7292; this.windowDefinition(); } } } - this.state = 7298; + this.state = 7297; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); } @@ -44372,9 +44366,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7299; + this.state = 7298; this.match(PostgreSqlParser.KW_HAVING); - this.state = 7300; + this.state = 7299; this.expression(); } } @@ -44398,11 +44392,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7302; + this.state = 7301; this.colId(); - this.state = 7303; + this.state = 7302; this.match(PostgreSqlParser.KW_AS); - this.state = 7304; + this.state = 7303; this.windowSpecification(); } } @@ -44426,14 +44420,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7306; + this.state = 7305; this.match(PostgreSqlParser.KW_OVER); - this.state = 7309; + this.state = 7308; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7307; + this.state = 7306; this.windowSpecification(); } break; @@ -44832,7 +44826,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7308; + this.state = 7307; this.colId(); } break; @@ -44862,53 +44856,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7311; + this.state = 7310; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7313; + this.state = 7312; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 7312; + this.state = 7311; this.colId(); } break; } - this.state = 7318; + this.state = 7317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 7315; + this.state = 7314; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 7316; + this.state = 7315; this.match(PostgreSqlParser.KW_BY); - this.state = 7317; + this.state = 7316; this.exprList(); } } - this.state = 7321; + this.state = 7320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7320; + this.state = 7319; this.sortClause(); } } - this.state = 7324; + this.state = 7323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 299 || _la === 320 || _la === 481) { { - this.state = 7323; + this.state = 7322; this.optFrameClause(); } } - this.state = 7326; + this.state = 7325; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -44933,7 +44927,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7328; + this.state = 7327; _la = this.tokenStream.LA(1); if(!(_la === 299 || _la === 320 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -44943,58 +44937,58 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 7333; + this.state = 7332; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 7329; + this.state = 7328; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 7330; + this.state = 7329; this.frameBound(); - this.state = 7331; + this.state = 7330; this.match(PostgreSqlParser.KW_AND); } break; } - this.state = 7335; + this.state = 7334; this.frameBound(); } - this.state = 7346; + this.state = 7345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 7337; + this.state = 7336; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 7344; + this.state = 7343; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT: { - this.state = 7338; + this.state = 7337; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7339; + this.state = 7338; this.match(PostgreSqlParser.KW_ROW); } break; case PostgreSqlParser.KW_GROUP: { - this.state = 7340; + this.state = 7339; this.match(PostgreSqlParser.KW_GROUP); } break; case PostgreSqlParser.KW_TIES: { - this.state = 7341; + this.state = 7340; this.match(PostgreSqlParser.KW_TIES); } break; case PostgreSqlParser.KW_NO: { - this.state = 7342; + this.state = 7341; this.match(PostgreSqlParser.KW_NO); - this.state = 7343; + this.state = 7342; this.match(PostgreSqlParser.KW_OTHERS); } break; @@ -45025,29 +45019,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 708, PostgreSqlParser.RULE_frameBound); let _la: number; try { - this.state = 7355; + this.state = 7354; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7350; + this.state = 7349; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: { - this.state = 7348; + this.state = 7347; this.match(PostgreSqlParser.KW_UNBOUNDED); } break; case 2: { - this.state = 7349; + this.state = 7348; this.expression(); } break; } - this.state = 7352; + this.state = 7351; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -45061,9 +45055,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7353; + this.state = 7352; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7354; + this.state = 7353; this.match(PostgreSqlParser.KW_ROW); } break; @@ -45087,28 +45081,28 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RowContext(this.context, this.state); this.enterRule(localContext, 710, PostgreSqlParser.RULE_row); try { - this.state = 7364; + this.state = 7363; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ROW: this.enterOuterAlt(localContext, 1); { - this.state = 7357; + this.state = 7356; this.explicitRow(); } break; case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 7358; + this.state = 7357; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7359; + this.state = 7358; this.exprList(); - this.state = 7360; + this.state = 7359; this.match(PostgreSqlParser.COMMA); - this.state = 7361; + this.state = 7360; this.expression(); - this.state = 7362; + this.state = 7361; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45137,21 +45131,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7366; + this.state = 7365; this.match(PostgreSqlParser.KW_ROW); - this.state = 7367; + this.state = 7366; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7369; + this.state = 7368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7368; + this.state = 7367; this.exprList(); } } - this.state = 7371; + this.state = 7370; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45176,7 +45170,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7373; + this.state = 7372; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 34 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -45205,13 +45199,13 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AllOpContext(this.context, this.state); this.enterRule(localContext, 716, PostgreSqlParser.RULE_allOp); try { - this.state = 7377; + this.state = 7376; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7375; + this.state = 7374; this.match(PostgreSqlParser.Operator); } break; @@ -45229,7 +45223,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PERCENT: this.enterOuterAlt(localContext, 2); { - this.state = 7376; + this.state = 7375; this.mathOp(); } break; @@ -45258,7 +45252,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7379; + this.state = 7378; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { this.errorHandler.recoverInline(this); @@ -45287,26 +45281,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new QualOpContext(this.context, this.state); this.enterRule(localContext, 720, PostgreSqlParser.RULE_qualOp); try { - this.state = 7387; + this.state = 7386; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7381; + this.state = 7380; this.match(PostgreSqlParser.Operator); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7382; + this.state = 7381; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7383; + this.state = 7382; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7384; + this.state = 7383; this.anyOperator(); - this.state = 7385; + this.state = 7384; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45332,7 +45326,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new QualAllOpContext(this.context, this.state); this.enterRule(localContext, 722, PostgreSqlParser.RULE_qualAllOp); try { - this.state = 7395; + this.state = 7394; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45350,20 +45344,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7389; + this.state = 7388; this.allOp(); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7390; + this.state = 7389; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7391; + this.state = 7390; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7392; + this.state = 7391; this.anyOperator(); - this.state = 7393; + this.state = 7392; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45390,7 +45384,7 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 724, PostgreSqlParser.RULE_subqueryOperator); let _la: number; try { - this.state = 7402; + this.state = 7401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45409,7 +45403,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 7397; + this.state = 7396; this.qualAllOp(); } break; @@ -45418,17 +45412,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 7399; + this.state = 7398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7398; + this.state = 7397; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7401; + this.state = 7400; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 120)) { this.errorHandler.recoverInline(this); @@ -45464,23 +45458,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7404; + this.state = 7403; this.expression(); - this.state = 7409; + this.state = 7408; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7405; + this.state = 7404; this.match(PostgreSqlParser.COMMA); - this.state = 7406; + this.state = 7405; this.expression(); } } } - this.state = 7411; + this.state = 7410; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); } @@ -45504,18 +45498,18 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnExprContext(this.context, this.state); this.enterRule(localContext, 728, PostgreSqlParser.RULE_columnExpr); try { - this.state = 7417; + this.state = 7416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 7412; + this.state = 7411; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7413; + this.state = 7412; this.expression(); - this.state = 7414; + this.state = 7413; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45523,7 +45517,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7416; + this.state = 7415; this.columnName(); } break; @@ -45547,20 +45541,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnExprNoParenContext(this.context, this.state); this.enterRule(localContext, 730, PostgreSqlParser.RULE_columnExprNoParen); try { - this.state = 7421; + this.state = 7420; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7419; + this.state = 7418; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7420; + this.state = 7419; this.columnName(); } break; @@ -45587,23 +45581,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7423; + this.state = 7422; this.funcArgExpr(); - this.state = 7428; + this.state = 7427; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7424; + this.state = 7423; this.match(PostgreSqlParser.COMMA); - this.state = 7425; + this.state = 7424; this.funcArgExpr(); } } } - this.state = 7430; + this.state = 7429; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); } @@ -45628,34 +45622,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 734, PostgreSqlParser.RULE_funcArgExpr); let _la: number; try { - this.state = 7438; + this.state = 7437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7431; + this.state = 7430; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7432; + this.state = 7431; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7433; + this.state = 7432; this.typeFunctionName(); - this.state = 7436; + this.state = 7435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 22) { { - this.state = 7434; + this.state = 7433; _la = this.tokenStream.LA(1); if(!(_la === 20 || _la === 22)) { this.errorHandler.recoverInline(this); @@ -45664,7 +45658,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7435; + this.state = 7434; this.expression(); } } @@ -45694,9 +45688,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7440; + this.state = 7439; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7450; + this.state = 7449; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -46142,28 +46136,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7441; + this.state = 7440; this.exprList(); } break; case PostgreSqlParser.OPEN_BRACKET: { { - this.state = 7442; + this.state = 7441; this.arrayExpr(); - this.state = 7447; + this.state = 7446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7443; + this.state = 7442; this.match(PostgreSqlParser.COMMA); - this.state = 7444; + this.state = 7443; this.arrayExpr(); } } - this.state = 7449; + this.state = 7448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46175,7 +46169,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 7452; + this.state = 7451; this.match(PostgreSqlParser.CLOSE_BRACKET); } } @@ -46197,62 +46191,62 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExtractArgContext(this.context, this.state); this.enterRule(localContext, 738, PostgreSqlParser.RULE_extractArg); try { - this.state = 7462; + this.state = 7461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7454; + this.state = 7453; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7455; + this.state = 7454; this.match(PostgreSqlParser.KW_YEAR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7456; + this.state = 7455; this.match(PostgreSqlParser.KW_MONTH); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7457; + this.state = 7456; this.match(PostgreSqlParser.KW_DAY); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7458; + this.state = 7457; this.match(PostgreSqlParser.KW_HOUR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7459; + this.state = 7458; this.match(PostgreSqlParser.KW_MINUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7460; + this.state = 7459; this.match(PostgreSqlParser.KW_SECOND); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7461; + this.state = 7460; this.stringConst(); } break; @@ -46279,7 +46273,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7464; + this.state = 7463; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -46309,26 +46303,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 742, PostgreSqlParser.RULE_substrList); let _la: number; try { - this.state = 7487; + this.state = 7486; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7466; + this.state = 7465; this.expression(); - this.state = 7467; + this.state = 7466; this.match(PostgreSqlParser.KW_FROM); - this.state = 7468; + this.state = 7467; this.expression(); - this.state = 7471; + this.state = 7470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7469; + this.state = 7468; this.match(PostgreSqlParser.KW_FOR); - this.state = 7470; + this.state = 7469; this.expression(); } } @@ -46338,20 +46332,20 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7473; + this.state = 7472; this.expression(); - this.state = 7474; + this.state = 7473; this.match(PostgreSqlParser.KW_FOR); - this.state = 7475; + this.state = 7474; this.expression(); - this.state = 7478; + this.state = 7477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 7476; + this.state = 7475; this.match(PostgreSqlParser.KW_FROM); - this.state = 7477; + this.state = 7476; this.expression(); } } @@ -46361,22 +46355,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7480; + this.state = 7479; this.expression(); - this.state = 7481; + this.state = 7480; this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 7482; + this.state = 7481; this.expression(); - this.state = 7483; + this.state = 7482; this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 7484; + this.state = 7483; this.expression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7486; + this.state = 7485; this.exprList(); } break; @@ -46402,13 +46396,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7489; + this.state = 7488; this.match(PostgreSqlParser.KW_WHEN); - this.state = 7490; + this.state = 7489; this.expression(); - this.state = 7491; + this.state = 7490; this.match(PostgreSqlParser.KW_THEN); - this.state = 7492; + this.state = 7491; this.expression(); } } @@ -46431,15 +46425,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 746, PostgreSqlParser.RULE_indirectionEl); let _la: number; try { - this.state = 7511; + this.state = 7510; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.DOT: this.enterOuterAlt(localContext, 1); { - this.state = 7494; + this.state = 7493; this.match(PostgreSqlParser.DOT); - this.state = 7497; + this.state = 7496; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -46933,13 +46927,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7495; + this.state = 7494; this.colLabel(); } break; case PostgreSqlParser.STAR: { - this.state = 7496; + this.state = 7495; this.match(PostgreSqlParser.STAR); } break; @@ -46951,37 +46945,37 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 7499; + this.state = 7498; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7508; + this.state = 7507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 7500; + this.state = 7499; this.expression(); } break; case 2: { - this.state = 7502; + this.state = 7501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7501; + this.state = 7500; this.expression(); } } - this.state = 7504; + this.state = 7503; this.match(PostgreSqlParser.COLON); - this.state = 7506; + this.state = 7505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7505; + this.state = 7504; this.expression(); } } @@ -46989,7 +46983,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 7510; + this.state = 7509; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -47018,7 +47012,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7514; + this.state = 7513; this.errorHandler.sync(this); alternative = 1; do { @@ -47026,7 +47020,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 7513; + this.state = 7512; this.indirectionEl(); } } @@ -47034,7 +47028,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7516; + this.state = 7515; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -47061,19 +47055,19 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7521; + this.state = 7520; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7518; + this.state = 7517; this.indirectionEl(); } } } - this.state = 7523; + this.state = 7522; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); } @@ -47100,23 +47094,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7524; + this.state = 7523; this.targetEl(); - this.state = 7529; + this.state = 7528; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7525; + this.state = 7524; this.match(PostgreSqlParser.COMMA); - this.state = 7526; + this.state = 7525; this.targetEl(); } } } - this.state = 7531; + this.state = 7530; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); } @@ -47140,29 +47134,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TargetElContext(this.context, this.state); this.enterRule(localContext, 754, PostgreSqlParser.RULE_targetEl); try { - this.state = 7540; + this.state = 7539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { case 1: localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7532; + this.state = 7531; this.columnExprNoParen(); - this.state = 7537; + this.state = 7536; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7533; + this.state = 7532; this.match(PostgreSqlParser.KW_AS); - this.state = 7534; + this.state = 7533; this.colLabel(); } break; case 2: { - this.state = 7535; + this.state = 7534; this.identifier(); } break; @@ -47178,7 +47172,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7539; + this.state = 7538; this.match(PostgreSqlParser.STAR); } break; @@ -47205,21 +47199,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7542; + this.state = 7541; this.qualifiedName(); - this.state = 7547; + this.state = 7546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7543; + this.state = 7542; this.match(PostgreSqlParser.COMMA); - this.state = 7544; + this.state = 7543; this.qualifiedName(); } } - this.state = 7549; + this.state = 7548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47246,21 +47240,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7550; + this.state = 7549; this.tableName(); - this.state = 7555; + this.state = 7554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7551; + this.state = 7550; this.match(PostgreSqlParser.COMMA); - this.state = 7552; + this.state = 7551; this.tableName(); } } - this.state = 7557; + this.state = 7556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47287,21 +47281,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7558; + this.state = 7557; this.schemaName(); - this.state = 7563; + this.state = 7562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7559; + this.state = 7558; this.match(PostgreSqlParser.COMMA); - this.state = 7560; + this.state = 7559; this.schemaName(); } } - this.state = 7565; + this.state = 7564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47328,21 +47322,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7566; + this.state = 7565; this.databaseName(); - this.state = 7571; + this.state = 7570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7567; + this.state = 7566; this.match(PostgreSqlParser.COMMA); - this.state = 7568; + this.state = 7567; this.databaseName(); } } - this.state = 7573; + this.state = 7572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47368,7 +47362,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7574; + this.state = 7573; this.qualifiedName(); } } @@ -47392,7 +47386,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7576; + this.state = 7575; this.qualifiedName(); } } @@ -47416,7 +47410,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7578; + this.state = 7577; this.qualifiedName(); } } @@ -47440,7 +47434,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7580; + this.state = 7579; this.qualifiedName(); } } @@ -47464,7 +47458,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7582; + this.state = 7581; this.qualifiedName(); } } @@ -47488,7 +47482,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7584; + this.state = 7583; this.anyName(); } } @@ -47512,14 +47506,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7586; + this.state = 7585; this.colId(); - this.state = 7588; + this.state = 7587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7587; + this.state = 7586; this.indirection(); } break; @@ -47547,21 +47541,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7590; + this.state = 7589; this.tableSpaceName(); - this.state = 7595; + this.state = 7594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7591; + this.state = 7590; this.match(PostgreSqlParser.COMMA); - this.state = 7592; + this.state = 7591; this.tableSpaceName(); } } - this.state = 7597; + this.state = 7596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47588,21 +47582,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7598; + this.state = 7597; this.colId(); - this.state = 7603; + this.state = 7602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7599; + this.state = 7598; this.match(PostgreSqlParser.COMMA); - this.state = 7600; + this.state = 7599; this.colId(); } } - this.state = 7605; + this.state = 7604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47628,7 +47622,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7606; + this.state = 7605; this.anyName(); } } @@ -47652,7 +47646,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7608; + this.state = 7607; this.anyName(); } } @@ -47676,7 +47670,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7610; + this.state = 7609; this.anyName(); } } @@ -47700,7 +47694,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7612; + this.state = 7611; this.colId(); } } @@ -47724,7 +47718,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7614; + this.state = 7613; this.colId(); } } @@ -47746,22 +47740,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureNameContext(this.context, this.state); this.enterRule(localContext, 792, PostgreSqlParser.RULE_procedureName); try { - this.state = 7620; + this.state = 7619; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7616; + this.state = 7615; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7617; + this.state = 7616; this.colId(); - this.state = 7618; + this.state = 7617; this.indirection(); } break; @@ -47785,22 +47779,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureNameCreateContext(this.context, this.state); this.enterRule(localContext, 794, PostgreSqlParser.RULE_procedureNameCreate); try { - this.state = 7626; + this.state = 7625; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7622; + this.state = 7621; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7623; + this.state = 7622; this.colId(); - this.state = 7624; + this.state = 7623; this.indirection(); } break; @@ -47824,22 +47818,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 796, PostgreSqlParser.RULE_columnName); try { - this.state = 7632; + this.state = 7631; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7628; + this.state = 7627; this.colId(); - this.state = 7629; + this.state = 7628; this.optIndirection(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7631; + this.state = 7630; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -47867,9 +47861,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7634; + this.state = 7633; this.colId(); - this.state = 7635; + this.state = 7634; this.optIndirection(); } } @@ -47893,7 +47887,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7637; + this.state = 7636; this.colId(); } } @@ -47915,22 +47909,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionNameCreateContext(this.context, this.state); this.enterRule(localContext, 802, PostgreSqlParser.RULE_functionNameCreate); try { - this.state = 7643; + this.state = 7642; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7639; + this.state = 7638; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7640; + this.state = 7639; this.colId(); - this.state = 7641; + this.state = 7640; this.indirection(); } break; @@ -47954,22 +47948,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionNameContext(this.context, this.state); this.enterRule(localContext, 804, PostgreSqlParser.RULE_functionName); try { - this.state = 7649; + this.state = 7648; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7645; + this.state = 7644; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7646; + this.state = 7645; this.colId(); - this.state = 7647; + this.state = 7646; this.indirection(); } break; @@ -47995,16 +47989,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7651; + this.state = 7650; this.anysconst(); - this.state = 7654; + this.state = 7653; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7652; + this.state = 7651; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7653; + this.state = 7652; this.anysconst(); } break; @@ -48030,50 +48024,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 808, PostgreSqlParser.RULE_anysconst); let _la: number; try { - this.state = 7667; + this.state = 7666; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7656; + this.state = 7655; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7657; + this.state = 7656; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 7658; + this.state = 7657; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 7662; + this.state = 7661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 590) { { { - this.state = 7659; + this.state = 7658; this.match(PostgreSqlParser.DollarText); } } - this.state = 7664; + this.state = 7663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7665; + this.state = 7664; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 7666; + this.state = 7665; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -48102,12 +48096,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7670; + this.state = 7669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 7669; + this.state = 7668; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -48119,7 +48113,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7672; + this.state = 7671; this.match(PostgreSqlParser.Integral); } } @@ -48141,41 +48135,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RoleSpecContext(this.context, this.state); this.enterRule(localContext, 812, PostgreSqlParser.RULE_roleSpec); try { - this.state = 7679; + this.state = 7678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7674; + this.state = 7673; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7675; + this.state = 7674; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7676; + this.state = 7675; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7677; + this.state = 7676; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7678; + this.state = 7677; this.match(PostgreSqlParser.KW_PUBLIC); } break; @@ -48202,21 +48196,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7681; + this.state = 7680; this.roleSpec(); - this.state = 7686; + this.state = 7685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7682; + this.state = 7681; this.match(PostgreSqlParser.COMMA); - this.state = 7683; + this.state = 7682; this.roleSpec(); } } - this.state = 7688; + this.state = 7687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48240,20 +48234,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColIdContext(this.context, this.state); this.enterRule(localContext, 816, PostgreSqlParser.RULE_colId); try { - this.state = 7691; + this.state = 7690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7689; + this.state = 7688; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7690; + this.state = 7689; this.colNameKeyword(); } break; @@ -48277,20 +48271,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TypeFunctionNameContext(this.context, this.state); this.enterRule(localContext, 818, PostgreSqlParser.RULE_typeFunctionName); try { - this.state = 7695; + this.state = 7694; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7693; + this.state = 7692; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7694; + this.state = 7693; this.typeFuncNameKeyword(); } break; @@ -48314,27 +48308,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new NonReservedWordContext(this.context, this.state); this.enterRule(localContext, 820, PostgreSqlParser.RULE_nonReservedWord); try { - this.state = 7700; + this.state = 7699; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7697; + this.state = 7696; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7698; + this.state = 7697; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7699; + this.state = 7698; this.typeFuncNameKeyword(); } break; @@ -48358,34 +48352,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColLabelContext(this.context, this.state); this.enterRule(localContext, 822, PostgreSqlParser.RULE_colLabel); try { - this.state = 7706; + this.state = 7705; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7702; + this.state = 7701; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7703; + this.state = 7702; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7704; + this.state = 7703; this.typeFuncNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7705; + this.state = 7704; this.reservedKeyword(); } break; @@ -48409,22 +48403,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 824, PostgreSqlParser.RULE_identifier); try { - this.state = 7719; + this.state = 7718; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 7708; + this.state = 7707; this.match(PostgreSqlParser.Identifier); - this.state = 7711; + this.state = 7710; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: { - this.state = 7709; + this.state = 7708; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7710; + this.state = 7709; this.anysconst(); } break; @@ -48437,35 +48431,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7713; + this.state = 7712; this.stringConst(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 7714; + this.state = 7713; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 7715; + this.state = 7714; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 7716; + this.state = 7715; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 7717; + this.state = 7716; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } break; @@ -48805,7 +48799,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 7); { - this.state = 7718; + this.state = 7717; this.unreservedKeyword(); } break; @@ -48834,7 +48828,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7721; + this.state = 7720; _la = this.tokenStream.LA(1); if(!(_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || _la === 547 || _la === 548)) { this.errorHandler.recoverInline(this); @@ -48863,363 +48857,363 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColNameKeywordContext(this.context, this.state); this.enterRule(localContext, 828, PostgreSqlParser.RULE_colNameKeyword); try { - this.state = 7774; + this.state = 7773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7723; + this.state = 7722; this.match(PostgreSqlParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7724; + this.state = 7723; this.match(PostgreSqlParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7725; + this.state = 7724; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7726; + this.state = 7725; this.match(PostgreSqlParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7727; + this.state = 7726; this.match(PostgreSqlParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7728; + this.state = 7727; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7729; + this.state = 7728; this.match(PostgreSqlParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7730; + this.state = 7729; this.match(PostgreSqlParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7731; + this.state = 7730; this.match(PostgreSqlParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7732; + this.state = 7731; this.match(PostgreSqlParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7733; + this.state = 7732; this.match(PostgreSqlParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7734; + this.state = 7733; this.match(PostgreSqlParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7735; + this.state = 7734; this.match(PostgreSqlParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7736; + this.state = 7735; this.match(PostgreSqlParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7737; + this.state = 7736; this.match(PostgreSqlParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7738; + this.state = 7737; this.match(PostgreSqlParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7739; + this.state = 7738; this.match(PostgreSqlParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7740; + this.state = 7739; this.match(PostgreSqlParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7741; + this.state = 7740; this.match(PostgreSqlParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7742; + this.state = 7741; this.match(PostgreSqlParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7743; + this.state = 7742; this.match(PostgreSqlParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7744; + this.state = 7743; this.match(PostgreSqlParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7745; + this.state = 7744; this.match(PostgreSqlParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7746; + this.state = 7745; this.match(PostgreSqlParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7747; + this.state = 7746; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7748; + this.state = 7747; this.match(PostgreSqlParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7749; + this.state = 7748; this.match(PostgreSqlParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7750; + this.state = 7749; this.match(PostgreSqlParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7751; + this.state = 7750; this.match(PostgreSqlParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7752; + this.state = 7751; this.match(PostgreSqlParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7753; + this.state = 7752; this.match(PostgreSqlParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7754; + this.state = 7753; this.match(PostgreSqlParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7755; + this.state = 7754; this.match(PostgreSqlParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7756; + this.state = 7755; this.match(PostgreSqlParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7757; + this.state = 7756; this.match(PostgreSqlParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7758; + this.state = 7757; this.match(PostgreSqlParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7759; + this.state = 7758; this.match(PostgreSqlParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7760; + this.state = 7759; this.match(PostgreSqlParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7761; + this.state = 7760; this.match(PostgreSqlParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7762; + this.state = 7761; this.match(PostgreSqlParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7763; + this.state = 7762; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7764; + this.state = 7763; this.match(PostgreSqlParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7765; + this.state = 7764; this.match(PostgreSqlParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 7766; + this.state = 7765; this.match(PostgreSqlParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 7767; + this.state = 7766; this.match(PostgreSqlParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 7768; + this.state = 7767; this.match(PostgreSqlParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 7769; + this.state = 7768; this.match(PostgreSqlParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 7770; + this.state = 7769; this.match(PostgreSqlParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 7771; + this.state = 7770; this.match(PostgreSqlParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 7772; + this.state = 7771; this.match(PostgreSqlParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 7773; + this.state = 7772; this.match(PostgreSqlParser.KW_XMLTABLE); } break; @@ -49246,7 +49240,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7776; + this.state = 7775; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -49278,7 +49272,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7778; + this.state = 7777; _la = this.tokenStream.LA(1); if(!(((((_la - 30)) & ~0x1F) === 0 && ((1 << (_la - 30)) & 4286578687) !== 0) || ((((_la - 62)) & ~0x1F) === 0 && ((1 << (_la - 62)) & 4294966783) !== 0) || ((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 4095) !== 0) || _la === 454)) { this.errorHandler.recoverInline(this); @@ -49312,53 +49306,53 @@ export class PostgreSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 7781; + this.state = 7780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 7780; + this.state = 7779; this.labelDecl(); } } - this.state = 7793; + this.state = 7792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 7783; + this.state = 7782; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 7791; + this.state = 7790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7787; + this.state = 7786; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 7787; + this.state = 7786; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: { - this.state = 7784; + this.state = 7783; this.declStatement(); } break; case 2: { - this.state = 7785; + this.state = 7784; this.match(PostgreSqlParser.KW_DECLARE); } break; case 3: { - this.state = 7786; + this.state = 7785; this.labelDecl(); } break; @@ -49368,7 +49362,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7789; + this.state = 7788; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -49379,42 +49373,42 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7795; + this.state = 7794; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 7799; + this.state = 7798; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7796; + this.state = 7795; this.procStmt(); } } } - this.state = 7801; + this.state = 7800; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); } - this.state = 7803; + this.state = 7802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 7802; + this.state = 7801; this.exceptionSect(); } } - this.state = 7805; + this.state = 7804; this.match(PostgreSqlParser.KW_END); - this.state = 7807; + this.state = 7806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7806; + this.state = 7805; this.anyIdentifier(); } } @@ -49441,11 +49435,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7809; + this.state = 7808; this.match(PostgreSqlParser.LESS_LESS); - this.state = 7810; + this.state = 7809; this.anyIdentifier(); - this.state = 7811; + this.state = 7810; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -49470,23 +49464,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7813; + this.state = 7812; this.anyIdentifier(); - this.state = 7860; + this.state = 7859; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { case 1: { - this.state = 7814; + this.state = 7813; this.match(PostgreSqlParser.KW_ALIAS); - this.state = 7815; + this.state = 7814; this.match(PostgreSqlParser.KW_FOR); - this.state = 7818; + this.state = 7817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: { - this.state = 7816; + this.state = 7815; this.match(PostgreSqlParser.PARAM); } break; @@ -49885,7 +49879,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7817; + this.state = 7816; this.colId(); } break; @@ -49896,65 +49890,65 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7821; + this.state = 7820; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { case 1: { - this.state = 7820; + this.state = 7819; this.match(PostgreSqlParser.KW_CONSTANT); } break; } - this.state = 7823; + this.state = 7822; this.typename(); - this.state = 7825; + this.state = 7824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 7824; + this.state = 7823; this.collateClause(); } } - this.state = 7829; + this.state = 7828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7827; + this.state = 7826; this.match(PostgreSqlParser.KW_NOT); - this.state = 7828; + this.state = 7827; this.match(PostgreSqlParser.KW_NULL); } } - this.state = 7836; + this.state = 7835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 20 || _la === 53) { { - this.state = 7833; + this.state = 7832; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: { - this.state = 7831; + this.state = 7830; this.assignOperator(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 7832; + this.state = 7831; this.match(PostgreSqlParser.KW_DEFAULT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7835; + this.state = 7834; this.sqlExpression(); } } @@ -49963,59 +49957,59 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7842; + this.state = 7841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 7839; + this.state = 7838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7838; + this.state = 7837; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7841; + this.state = 7840; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 7844; + this.state = 7843; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 7856; + this.state = 7855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7845; + this.state = 7844; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7846; + this.state = 7845; this.declCursorArg(); - this.state = 7851; + this.state = 7850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7847; + this.state = 7846; this.match(PostgreSqlParser.COMMA); - this.state = 7848; + this.state = 7847; this.declCursorArg(); } } - this.state = 7853; + this.state = 7852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7854; + this.state = 7853; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7858; + this.state = 7857; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -50024,12 +50018,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7859; + this.state = 7858; this.selectStmt(); } break; } - this.state = 7862; + this.state = 7861; this.match(PostgreSqlParser.SEMI); } } @@ -50053,9 +50047,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7864; + this.state = 7863; this.anyIdentifier(); - this.state = 7865; + this.state = 7864; this.typename(); } } @@ -50080,7 +50074,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7867; + this.state = 7866; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -50109,162 +50103,162 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcStmtContext(this.context, this.state); this.enterRule(localContext, 844, PostgreSqlParser.RULE_procStmt); try { - this.state = 7893; + this.state = 7892; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7869; + this.state = 7868; this.plBlock(); - this.state = 7870; + this.state = 7869; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7872; + this.state = 7871; this.stmtReturn(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7873; + this.state = 7872; this.stmtRaise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7874; + this.state = 7873; this.stmtAssign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7875; + this.state = 7874; this.stmtIf(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7876; + this.state = 7875; this.stmtCase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7877; + this.state = 7876; this.stmtLoopWhileFor(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7878; + this.state = 7877; this.stmtForeach(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7879; + this.state = 7878; this.stmtExit(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7880; + this.state = 7879; this.stmtAssert(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7881; + this.state = 7880; this.stmtExecsql(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7882; + this.state = 7881; this.stmtDynexecute(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7883; + this.state = 7882; this.stmtPerform(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7884; + this.state = 7883; this.stmtCall(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7885; + this.state = 7884; this.stmtGetdiag(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7886; + this.state = 7885; this.stmtOpen(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7887; + this.state = 7886; this.stmtFetch(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7888; + this.state = 7887; this.stmtMove(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7889; + this.state = 7888; this.stmtClose(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7890; + this.state = 7889; this.stmtNull(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7891; + this.state = 7890; this.stmtCommitOrRollback(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7892; + this.state = 7891; this.stmtSet(); } break; @@ -50290,11 +50284,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7895; + this.state = 7894; this.match(PostgreSqlParser.KW_PERFORM); - this.state = 7896; + this.state = 7895; this.sqlExpression(); - this.state = 7897; + this.state = 7896; this.match(PostgreSqlParser.SEMI); } } @@ -50317,36 +50311,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 848, PostgreSqlParser.RULE_stmtCall); let _la: number; try { - this.state = 7918; + this.state = 7917; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 7899; + this.state = 7898; this.match(PostgreSqlParser.KW_CALL); - this.state = 7900; + this.state = 7899; this.anyIdentifier(); - this.state = 7907; + this.state = 7906; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: { - this.state = 7901; + this.state = 7900; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7903; + this.state = 7902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7902; + this.state = 7901; this.exprList(); } } - this.state = 7905; + this.state = 7904; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7906; + this.state = 7905; this.match(PostgreSqlParser.SEMI); } break; @@ -50356,25 +50350,25 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 7909; + this.state = 7908; this.match(PostgreSqlParser.KW_DO); - this.state = 7910; + this.state = 7909; this.anyIdentifier(); - this.state = 7911; + this.state = 7910; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7913; + this.state = 7912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7912; + this.state = 7911; this.exprList(); } } - this.state = 7915; + this.state = 7914; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7916; + this.state = 7915; this.match(PostgreSqlParser.SEMI); } break; @@ -50402,13 +50396,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7920; + this.state = 7919; this.assignVar(); - this.state = 7921; + this.state = 7920; this.assignOperator(); - this.state = 7922; + this.state = 7921; this.sqlExpression(); - this.state = 7923; + this.state = 7922; this.match(PostgreSqlParser.SEMI); } } @@ -50433,14 +50427,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7925; + this.state = 7924; this.match(PostgreSqlParser.KW_GET); - this.state = 7927; + this.state = 7926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 501) { { - this.state = 7926; + this.state = 7925; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 501)) { this.errorHandler.recoverInline(this); @@ -50452,29 +50446,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7929; + this.state = 7928; this.match(PostgreSqlParser.KW_DIAGNOSTICS); { - this.state = 7930; + this.state = 7929; this.getdiagListItem(); - this.state = 7935; + this.state = 7934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7931; + this.state = 7930; this.match(PostgreSqlParser.COMMA); - this.state = 7932; + this.state = 7931; this.getdiagListItem(); } } - this.state = 7937; + this.state = 7936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7938; + this.state = 7937; this.match(PostgreSqlParser.SEMI); } } @@ -50498,11 +50492,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7940; + this.state = 7939; this.assignVar(); - this.state = 7941; + this.state = 7940; this.assignOperator(); - this.state = 7942; + this.state = 7941; this.colId(); } } @@ -50527,7 +50521,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7946; + this.state = 7945; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -50925,34 +50919,34 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7944; + this.state = 7943; this.anyName(); } break; case PostgreSqlParser.PARAM: { - this.state = 7945; + this.state = 7944; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7954; + this.state = 7953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 7948; + this.state = 7947; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7949; + this.state = 7948; this.expression(); - this.state = 7950; + this.state = 7949; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 7956; + this.state = 7955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50980,79 +50974,79 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7957; + this.state = 7956; this.match(PostgreSqlParser.KW_IF); - this.state = 7958; + this.state = 7957; this.sqlExpression(); - this.state = 7959; + this.state = 7958; this.match(PostgreSqlParser.KW_THEN); - this.state = 7963; + this.state = 7962; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7960; + this.state = 7959; this.procStmt(); } } } - this.state = 7965; + this.state = 7964; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); } { - this.state = 7977; + this.state = 7976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 7966; + this.state = 7965; this.match(PostgreSqlParser.KW_ELSIF); - this.state = 7967; + this.state = 7966; this.expression(); - this.state = 7968; + this.state = 7967; this.match(PostgreSqlParser.KW_THEN); - this.state = 7972; + this.state = 7971; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7969; + this.state = 7968; this.procStmt(); } } } - this.state = 7974; + this.state = 7973; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); } } } - this.state = 7979; + this.state = 7978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7981; + this.state = 7980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 7980; + this.state = 7979; this.stmtElse(); } } - this.state = 7983; + this.state = 7982; this.match(PostgreSqlParser.KW_END); - this.state = 7984; + this.state = 7983; this.match(PostgreSqlParser.KW_IF); - this.state = 7985; + this.state = 7984; this.match(PostgreSqlParser.SEMI); } } @@ -51077,21 +51071,21 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7987; + this.state = 7986; this.match(PostgreSqlParser.KW_ELSE); - this.state = 7991; + this.state = 7990; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7988; + this.state = 7987; this.procStmt(); } } } - this.state = 7993; + this.state = 7992; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); } @@ -51119,67 +51113,67 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7994; + this.state = 7993; this.match(PostgreSqlParser.KW_CASE); - this.state = 7996; + this.state = 7995; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { case 1: { - this.state = 7995; + this.state = 7994; this.sqlExpression(); } break; } - this.state = 8007; + this.state = 8006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7998; + this.state = 7997; this.match(PostgreSqlParser.KW_WHEN); - this.state = 7999; + this.state = 7998; this.exprList(); - this.state = 8000; + this.state = 7999; this.match(PostgreSqlParser.KW_THEN); - this.state = 8004; + this.state = 8003; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8001; + this.state = 8000; this.procStmt(); } } } - this.state = 8006; + this.state = 8005; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); } } } - this.state = 8009; + this.state = 8008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8012; + this.state = 8011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8011; + this.state = 8010; this.stmtElse(); } } - this.state = 8014; + this.state = 8013; this.match(PostgreSqlParser.KW_END); - this.state = 8015; + this.state = 8014; this.match(PostgreSqlParser.KW_CASE); - this.state = 8016; + this.state = 8015; this.match(PostgreSqlParser.SEMI); } } @@ -51204,25 +51198,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8019; + this.state = 8018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8018; + this.state = 8017; this.labelDecl(); } } - this.state = 8025; + this.state = 8024; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WHILE: { { - this.state = 8021; + this.state = 8020; this.match(PostgreSqlParser.KW_WHILE); - this.state = 8022; + this.state = 8021; this.expression(); } } @@ -51230,9 +51224,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOR: { { - this.state = 8023; + this.state = 8022; this.match(PostgreSqlParser.KW_FOR); - this.state = 8024; + this.state = 8023; this.forControl(); } } @@ -51242,7 +51236,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 8027; + this.state = 8026; this.loopBody(); } } @@ -51267,23 +51261,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8029; + this.state = 8028; this.anyNameList(); - this.state = 8030; + this.state = 8029; this.match(PostgreSqlParser.KW_IN); - this.state = 8053; + this.state = 8052; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 8031; + this.state = 8030; this.colId(); - this.state = 8033; + this.state = 8032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8032; + this.state = 8031; this.executeParamClause(); } } @@ -51292,30 +51286,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8035; + this.state = 8034; this.selectStmt(); } break; case 3: { - this.state = 8036; + this.state = 8035; this.explainStmt(); } break; case 4: { - this.state = 8037; + this.state = 8036; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8038; + this.state = 8037; this.expression(); - this.state = 8041; + this.state = 8040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8039; + this.state = 8038; this.match(PostgreSqlParser.KW_USING); - this.state = 8040; + this.state = 8039; this.exprList(); } } @@ -51324,30 +51318,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 8044; + this.state = 8043; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 8043; + this.state = 8042; this.match(PostgreSqlParser.KW_REVERSE); } break; } - this.state = 8046; + this.state = 8045; this.expression(); - this.state = 8047; + this.state = 8046; this.match(PostgreSqlParser.DOT_DOT); - this.state = 8048; + this.state = 8047; this.expression(); - this.state = 8051; + this.state = 8050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 8049; + this.state = 8048; this.match(PostgreSqlParser.KW_BY); - this.state = 8050; + this.state = 8049; this.expression(); } } @@ -51378,39 +51372,39 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8056; + this.state = 8055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8055; + this.state = 8054; this.labelDecl(); } } - this.state = 8058; + this.state = 8057; this.match(PostgreSqlParser.KW_FOREACH); - this.state = 8059; + this.state = 8058; this.anyNameList(); - this.state = 8062; + this.state = 8061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 8060; + this.state = 8059; this.match(PostgreSqlParser.KW_SLICE); - this.state = 8061; + this.state = 8060; this.match(PostgreSqlParser.Integral); } } - this.state = 8064; + this.state = 8063; this.match(PostgreSqlParser.KW_IN); - this.state = 8065; + this.state = 8064; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 8066; + this.state = 8065; this.expression(); - this.state = 8067; + this.state = 8066; this.loopBody(); } } @@ -51435,7 +51429,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8069; + this.state = 8068; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -51444,29 +51438,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8071; + this.state = 8070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8070; + this.state = 8069; this.anyIdentifier(); } } - this.state = 8075; + this.state = 8074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 8073; + this.state = 8072; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8074; + this.state = 8073; this.sqlExpression(); } } - this.state = 8077; + this.state = 8076; this.match(PostgreSqlParser.SEMI); } } @@ -51490,35 +51484,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8079; + this.state = 8078; this.match(PostgreSqlParser.KW_RETURN); - this.state = 8094; + this.state = 8093; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { case 1: { - this.state = 8080; + this.state = 8079; this.match(PostgreSqlParser.KW_NEXT); - this.state = 8081; + this.state = 8080; this.sqlExpression(); } break; case 2: { - this.state = 8082; + this.state = 8081; this.match(PostgreSqlParser.KW_QUERY); - this.state = 8089; + this.state = 8088; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: { - this.state = 8083; + this.state = 8082; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8084; + this.state = 8083; this.expression(); - this.state = 8085; + this.state = 8084; this.match(PostgreSqlParser.KW_USING); - this.state = 8086; + this.state = 8085; this.exprList(); } break; @@ -51528,7 +51522,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8088; + this.state = 8087; this.selectStmt(); } break; @@ -51539,12 +51533,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 8092; + this.state = 8091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 8091; + this.state = 8090; this.sqlExpression(); } break; @@ -51552,7 +51546,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8096; + this.state = 8095; this.match(PostgreSqlParser.SEMI); } } @@ -51577,19 +51571,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8098; + this.state = 8097; this.match(PostgreSqlParser.KW_RAISE); - this.state = 8128; + this.state = 8127; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { case 1: { - this.state = 8100; + this.state = 8099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 8099; + this.state = 8098; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -51601,21 +51595,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8114; + this.state = 8113; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 8102; + this.state = 8101; this.identifier(); } break; case 2: { { - this.state = 8103; + this.state = 8102; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8104; + this.state = 8103; this.stringConst(); } } @@ -51623,26 +51617,26 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 8105; + this.state = 8104; this.stringConst(); - this.state = 8112; + this.state = 8111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8108; + this.state = 8107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8106; + this.state = 8105; this.match(PostgreSqlParser.COMMA); - this.state = 8107; + this.state = 8106; this.expression(); } } - this.state = 8110; + this.state = 8109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -51653,29 +51647,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8125; + this.state = 8124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8116; + this.state = 8115; this.match(PostgreSqlParser.KW_USING); { - this.state = 8117; + this.state = 8116; this.optRaiseUsingElem(); - this.state = 8122; + this.state = 8121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8118; + this.state = 8117; this.match(PostgreSqlParser.COMMA); - this.state = 8119; + this.state = 8118; this.optRaiseUsingElem(); } } - this.state = 8124; + this.state = 8123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -51683,7 +51677,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 8127; + this.state = 8126; this.match(PostgreSqlParser.SEMI); } break; @@ -51710,11 +51704,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8130; + this.state = 8129; this.identifier(); - this.state = 8131; + this.state = 8130; this.match(PostgreSqlParser.EQUAL); - this.state = 8132; + this.state = 8131; this.expression(); } } @@ -51739,23 +51733,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8134; + this.state = 8133; this.match(PostgreSqlParser.KW_ASSERT); - this.state = 8135; + this.state = 8134; this.sqlExpression(); - this.state = 8138; + this.state = 8137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8136; + this.state = 8135; this.match(PostgreSqlParser.COMMA); - this.state = 8137; + this.state = 8136; this.sqlExpression(); } } - this.state = 8140; + this.state = 8139; this.match(PostgreSqlParser.SEMI); } } @@ -51781,39 +51775,39 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8142; + this.state = 8141; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8146; + this.state = 8145; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8143; + this.state = 8142; this.procStmt(); } } } - this.state = 8148; + this.state = 8147; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); } - this.state = 8149; + this.state = 8148; this.match(PostgreSqlParser.KW_END); - this.state = 8150; + this.state = 8149; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8152; + this.state = 8151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8151; + this.state = 8150; this.anyIdentifier(); } } - this.state = 8154; + this.state = 8153; this.match(PostgreSqlParser.SEMI); } } @@ -51838,19 +51832,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8156; + this.state = 8155; this.stmt(); - this.state = 8158; + this.state = 8157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8157; + this.state = 8156; this.optExecuteInto(); } } - this.state = 8160; + this.state = 8159; this.match(PostgreSqlParser.SEMI); } } @@ -51875,33 +51869,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8162; + this.state = 8161; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8163; + this.state = 8162; this.expression(); - this.state = 8179; + this.state = 8178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { case 1: { - this.state = 8165; + this.state = 8164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8164; + this.state = 8163; this.optExecuteInto(); } } - this.state = 8169; + this.state = 8168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8167; + this.state = 8166; this.match(PostgreSqlParser.KW_USING); - this.state = 8168; + this.state = 8167; this.exprList(); } } @@ -51910,24 +51904,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8173; + this.state = 8172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8171; + this.state = 8170; this.match(PostgreSqlParser.KW_USING); - this.state = 8172; + this.state = 8171; this.exprList(); } } - this.state = 8176; + this.state = 8175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8175; + this.state = 8174; this.optExecuteInto(); } } @@ -51940,7 +51934,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8181; + this.state = 8180; this.match(PostgreSqlParser.SEMI); } } @@ -51964,19 +51958,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8183; + this.state = 8182; this.match(PostgreSqlParser.KW_INTO); - this.state = 8185; + this.state = 8184; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { case 1: { - this.state = 8184; + this.state = 8183; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 8187; + this.state = 8186; this.exprList(); } } @@ -52001,38 +51995,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8189; + this.state = 8188; this.match(PostgreSqlParser.KW_OPEN); - this.state = 8221; + this.state = 8220; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: { - this.state = 8190; + this.state = 8189; this.cursorVariable(); - this.state = 8195; + this.state = 8194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 8192; + this.state = 8191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8191; + this.state = 8190; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8194; + this.state = 8193; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 8197; + this.state = 8196; this.match(PostgreSqlParser.KW_FOR); - this.state = 8205; + this.state = 8204; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -52041,24 +52035,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8198; + this.state = 8197; this.selectStmt(); } break; case PostgreSqlParser.KW_EXECUTE: { - this.state = 8199; + this.state = 8198; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8200; + this.state = 8199; this.sqlExpression(); - this.state = 8203; + this.state = 8202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8201; + this.state = 8200; this.match(PostgreSqlParser.KW_USING); - this.state = 8202; + this.state = 8201; this.exprList(); } } @@ -52072,36 +52066,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8207; + this.state = 8206; this.colId(); - this.state = 8219; + this.state = 8218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8208; + this.state = 8207; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 8209; + this.state = 8208; this.optOpenBoundListItem(); - this.state = 8214; + this.state = 8213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8210; + this.state = 8209; this.match(PostgreSqlParser.COMMA); - this.state = 8211; + this.state = 8210; this.optOpenBoundListItem(); } } - this.state = 8216; + this.state = 8215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8217; + this.state = 8216; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -52109,7 +52103,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8223; + this.state = 8222; this.match(PostgreSqlParser.SEMI); } } @@ -52133,19 +52127,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8228; + this.state = 8227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { case 1: { - this.state = 8225; + this.state = 8224; this.colId(); - this.state = 8226; + this.state = 8225; this.match(PostgreSqlParser.COLON_EQUALS); } break; } - this.state = 8230; + this.state = 8229; this.expression(); } } @@ -52170,35 +52164,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8232; + this.state = 8231; this.match(PostgreSqlParser.KW_FETCH); - this.state = 8234; + this.state = 8233; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { - this.state = 8233; + this.state = 8232; localContext._direction = this.optFetchFirection(); } break; } - this.state = 8237; + this.state = 8236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 8236; + this.state = 8235; this.fromIn(); } } - this.state = 8239; + this.state = 8238; this.cursorVariable(); - this.state = 8240; + this.state = 8239; this.match(PostgreSqlParser.KW_INTO); - this.state = 8241; + this.state = 8240; this.exprList(); - this.state = 8242; + this.state = 8241; this.match(PostgreSqlParser.SEMI); } } @@ -52221,46 +52215,46 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 894, PostgreSqlParser.RULE_optFetchFirection); let _la: number; try { - this.state = 8258; + this.state = 8257; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8244; + this.state = 8243; this.match(PostgreSqlParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8245; + this.state = 8244; this.match(PostgreSqlParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8246; + this.state = 8245; this.match(PostgreSqlParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8247; + this.state = 8246; this.match(PostgreSqlParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8249; + this.state = 8248; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { case 1: { - this.state = 8248; + this.state = 8247; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -52272,21 +52266,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8251; + this.state = 8250; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8252; + this.state = 8251; this.match(PostgreSqlParser.KW_ALL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8253; + this.state = 8252; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -52295,18 +52289,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8256; + this.state = 8255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: { - this.state = 8254; + this.state = 8253; this.expression(); } break; case 2: { - this.state = 8255; + this.state = 8254; this.match(PostgreSqlParser.KW_ALL); } break; @@ -52335,21 +52329,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8260; + this.state = 8259; this.match(PostgreSqlParser.KW_MOVE); - this.state = 8262; + this.state = 8261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 8261; + this.state = 8260; this.optFetchFirection(); } break; } - this.state = 8264; + this.state = 8263; this.cursorVariable(); - this.state = 8265; + this.state = 8264; this.match(PostgreSqlParser.SEMI); } } @@ -52374,90 +52368,90 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8268; + this.state = 8267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8267; + this.state = 8266; this.withClause(); } } - this.state = 8270; + this.state = 8269; this.match(PostgreSqlParser.KW_MERGE); - this.state = 8271; + this.state = 8270; this.match(PostgreSqlParser.KW_INTO); - this.state = 8273; + this.state = 8272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8272; + this.state = 8271; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8275; + this.state = 8274; this.tableName(); - this.state = 8277; + this.state = 8276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8276; + this.state = 8275; this.match(PostgreSqlParser.STAR); } } - this.state = 8283; + this.state = 8282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8280; + this.state = 8279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8279; + this.state = 8278; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8282; + this.state = 8281; this.colId(); } } - this.state = 8285; + this.state = 8284; this.match(PostgreSqlParser.KW_USING); - this.state = 8286; + this.state = 8285; this.dataSource(); - this.state = 8287; + this.state = 8286; this.match(PostgreSqlParser.KW_ON); - this.state = 8288; + this.state = 8287; this.expression(); - this.state = 8290; + this.state = 8289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8289; + this.state = 8288; this.mergeWhenClause(); } } - this.state = 8292; + this.state = 8291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8295; + this.state = 8294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8294; + this.state = 8293; this.returningClause(); } } @@ -52485,29 +52479,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8308; + this.state = 8307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { case 1: { - this.state = 8298; + this.state = 8297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8297; + this.state = 8296; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8300; + this.state = 8299; this.tableName(); - this.state = 8302; + this.state = 8301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8301; + this.state = 8300; this.match(PostgreSqlParser.STAR); } } @@ -52516,18 +52510,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8306; + this.state = 8305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { case 1: { - this.state = 8304; + this.state = 8303; this.selectNoParens(); } break; case 2: { - this.state = 8305; + this.state = 8304; this.valuesClause(); } break; @@ -52535,22 +52529,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8314; + this.state = 8313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8311; + this.state = 8310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8310; + this.state = 8309; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8313; + this.state = 8312; this.colId(); } } @@ -52576,50 +52570,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 902, PostgreSqlParser.RULE_mergeWhenClause); let _la: number; try { - this.state = 8342; + this.state = 8341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8316; + this.state = 8315; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8317; + this.state = 8316; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8320; + this.state = 8319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8318; + this.state = 8317; this.match(PostgreSqlParser.KW_AND); - this.state = 8319; + this.state = 8318; this.expression(); } } - this.state = 8322; + this.state = 8321; this.match(PostgreSqlParser.KW_THEN); - this.state = 8327; + this.state = 8326; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 8323; + this.state = 8322; this.mergeUpdate(); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 8324; + this.state = 8323; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_DO: { - this.state = 8325; + this.state = 8324; this.match(PostgreSqlParser.KW_DO); - this.state = 8326; + this.state = 8325; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52631,40 +52625,40 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8329; + this.state = 8328; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8330; + this.state = 8329; this.match(PostgreSqlParser.KW_NOT); - this.state = 8331; + this.state = 8330; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8334; + this.state = 8333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8332; + this.state = 8331; this.match(PostgreSqlParser.KW_AND); - this.state = 8333; + this.state = 8332; this.expression(); } } - this.state = 8336; + this.state = 8335; this.match(PostgreSqlParser.KW_THEN); - this.state = 8340; + this.state = 8339; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: { - this.state = 8337; + this.state = 8336; this.mergeInsert(); } break; case PostgreSqlParser.KW_DO: { - this.state = 8338; + this.state = 8337; this.match(PostgreSqlParser.KW_DO); - this.state = 8339; + this.state = 8338; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52696,26 +52690,26 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8344; + this.state = 8343; this.match(PostgreSqlParser.KW_INSERT); - this.state = 8346; + this.state = 8345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8345; + this.state = 8344; this.optColumnList(); } } - this.state = 8351; + this.state = 8350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8348; + this.state = 8347; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 8349; + this.state = 8348; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -52724,12 +52718,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8350; + this.state = 8349; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 8353; + this.state = 8352; this.defaultValuesOrValues(); } } @@ -52755,57 +52749,57 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8355; + this.state = 8354; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 8356; + this.state = 8355; this.match(PostgreSqlParser.KW_SET); - this.state = 8374; + this.state = 8373; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 8374; + this.state = 8373; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { case 1: { - this.state = 8357; + this.state = 8356; this.columnName(); - this.state = 8358; + this.state = 8357; this.match(PostgreSqlParser.EQUAL); - this.state = 8359; + this.state = 8358; this.exprofdefault(); } break; case 2: { - this.state = 8361; + this.state = 8360; this.optColumnList(); - this.state = 8362; + this.state = 8361; this.match(PostgreSqlParser.EQUAL); - this.state = 8363; + this.state = 8362; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8364; + this.state = 8363; this.exprofdefault(); - this.state = 8369; + this.state = 8368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8365; + this.state = 8364; this.match(PostgreSqlParser.COMMA); - this.state = 8366; + this.state = 8365; this.exprofdefault(); } } - this.state = 8371; + this.state = 8370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8372; + this.state = 8371; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -52815,7 +52809,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 8376; + this.state = 8375; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -52840,44 +52834,44 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 908, PostgreSqlParser.RULE_defaultValuesOrValues); let _la: number; try { - this.state = 8392; + this.state = 8391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8378; + this.state = 8377; this.match(PostgreSqlParser.KW_VALUES); - this.state = 8379; + this.state = 8378; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8380; + this.state = 8379; this.exprofdefault(); - this.state = 8385; + this.state = 8384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8381; + this.state = 8380; this.match(PostgreSqlParser.COMMA); - this.state = 8382; + this.state = 8381; this.exprofdefault(); } } - this.state = 8387; + this.state = 8386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8388; + this.state = 8387; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 8390; + this.state = 8389; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8391; + this.state = 8390; this.match(PostgreSqlParser.KW_VALUES); } break; @@ -52903,20 +52897,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExprofdefaultContext(this.context, this.state); this.enterRule(localContext, 910, PostgreSqlParser.RULE_exprofdefault); try { - this.state = 8396; + this.state = 8395; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8394; + this.state = 8393; this.sortBy(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8395; + this.state = 8394; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -52942,11 +52936,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8398; + this.state = 8397; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 8399; + this.state = 8398; this.cursorVariable(); - this.state = 8400; + this.state = 8399; this.match(PostgreSqlParser.SEMI); } } @@ -52970,9 +52964,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8402; + this.state = 8401; this.match(PostgreSqlParser.KW_NULL); - this.state = 8403; + this.state = 8402; this.match(PostgreSqlParser.SEMI); } } @@ -52997,7 +52991,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8405; + this.state = 8404; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -53006,29 +53000,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8411; + this.state = 8410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8406; + this.state = 8405; this.match(PostgreSqlParser.KW_AND); - this.state = 8408; + this.state = 8407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8407; + this.state = 8406; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8410; + this.state = 8409; this.match(PostgreSqlParser.KW_CHAIN); } } - this.state = 8413; + this.state = 8412; this.match(PostgreSqlParser.SEMI); } } @@ -53050,30 +53044,30 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new StmtSetContext(this.context, this.state); this.enterRule(localContext, 918, PostgreSqlParser.RULE_stmtSet); try { - this.state = 8427; + this.state = 8426; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 8415; + this.state = 8414; this.match(PostgreSqlParser.KW_SET); - this.state = 8416; + this.state = 8415; this.anyName(); - this.state = 8417; + this.state = 8416; this.match(PostgreSqlParser.KW_TO); - this.state = 8418; + this.state = 8417; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8419; + this.state = 8418; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 8421; + this.state = 8420; this.match(PostgreSqlParser.KW_RESET); - this.state = 8424; + this.state = 8423; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53471,20 +53465,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8422; + this.state = 8421; this.anyName(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 8423; + this.state = 8422; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8426; + this.state = 8425; this.match(PostgreSqlParser.SEMI); } break; @@ -53510,7 +53504,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new CursorVariableContext(this.context, this.state); this.enterRule(localContext, 920, PostgreSqlParser.RULE_cursorVariable); try { - this.state = 8431; + this.state = 8430; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53909,14 +53903,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8429; + this.state = 8428; this.colId(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 8430; + this.state = 8429; this.match(PostgreSqlParser.PARAM); } break; @@ -53946,57 +53940,57 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8433; + this.state = 8432; this.match(PostgreSqlParser.KW_EXCEPTION); - this.state = 8450; + this.state = 8449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8434; + this.state = 8433; this.match(PostgreSqlParser.KW_WHEN); { - this.state = 8435; + this.state = 8434; this.procCondition(); - this.state = 8440; + this.state = 8439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 8436; + this.state = 8435; this.match(PostgreSqlParser.KW_OR); - this.state = 8437; + this.state = 8436; this.procCondition(); } } - this.state = 8442; + this.state = 8441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8443; + this.state = 8442; this.match(PostgreSqlParser.KW_THEN); - this.state = 8447; + this.state = 8446; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8444; + this.state = 8443; this.procStmt(); } } } - this.state = 8449; + this.state = 8448; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context); } } } - this.state = 8452; + this.state = 8451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -54020,22 +54014,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcConditionContext(this.context, this.state); this.enterRule(localContext, 924, PostgreSqlParser.RULE_procCondition); try { - this.state = 8457; + this.state = 8456; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8454; + this.state = 8453; this.anyIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8455; + this.state = 8454; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8456; + this.state = 8455; this.stringConst(); } break; @@ -54059,20 +54053,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AnyIdentifierContext(this.context, this.state); this.enterRule(localContext, 926, PostgreSqlParser.RULE_anyIdentifier); try { - this.state = 8461; + this.state = 8460; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8459; + this.state = 8458; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8460; + this.state = 8459; this.unreservedKeyword(); } break; @@ -54099,72 +54093,72 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8464; + this.state = 8463; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context) ) { case 1: { - this.state = 8463; + this.state = 8462; this.targetList(); } break; } - this.state = 8467; + this.state = 8466; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context) ) { case 1: { - this.state = 8466; + this.state = 8465; this.intoClause(); } break; } - this.state = 8470; + this.state = 8469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8469; + this.state = 8468; this.fromClause(); } } - this.state = 8473; + this.state = 8472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8472; + this.state = 8471; this.whereClause(); } } - this.state = 8476; + this.state = 8475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8475; + this.state = 8474; this.groupClause(); } } - this.state = 8479; + this.state = 8478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8478; + this.state = 8477; this.havingClause(); } } - this.state = 8482; + this.state = 8481; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1189, this.context) ) { case 1: { - this.state = 8481; + this.state = 8480; this.windowClause(); } break; @@ -54243,7 +54237,7 @@ export class PostgreSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,592,8485,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,592,8484,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, @@ -54939,697 +54933,697 @@ export class PostgreSqlParser extends SQLParserBase { 8,338,1,338,4,338,6967,8,338,11,338,12,338,6968,1,338,1,338,3,338, 6973,8,338,1,338,1,338,1,338,1,338,1,338,3,338,6980,8,338,1,338, 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,3,338,7000,8,338,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,3,338,7012,8,338, - 1,338,1,338,1,338,3,338,7017,8,338,1,338,1,338,1,338,1,338,1,338, - 1,338,3,338,7025,8,338,5,338,7027,8,338,10,338,12,338,7030,9,338, - 1,339,1,339,1,339,1,339,1,339,1,339,3,339,7038,8,339,1,339,3,339, - 7041,8,339,1,339,1,339,1,339,3,339,7046,8,339,1,339,1,339,1,339, - 3,339,7051,8,339,1,339,3,339,7054,8,339,1,339,1,339,1,340,1,340, - 1,340,1,340,1,340,1,340,1,340,3,340,7065,8,340,1,340,1,340,1,340, - 1,340,1,340,1,340,3,340,7073,8,340,1,340,1,340,1,340,3,340,7078, - 8,340,3,340,7080,8,340,1,340,3,340,7083,8,340,1,341,1,341,3,341, - 7087,8,341,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 3,342,7098,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,338,1,338,1,338,1,338,1,338,3,338,6999,8,338,1,338,1,338,1,338, + 1,338,1,338,1,338,1,338,1,338,1,338,1,338,3,338,7011,8,338,1,338, + 1,338,1,338,3,338,7016,8,338,1,338,1,338,1,338,1,338,1,338,1,338, + 3,338,7024,8,338,5,338,7026,8,338,10,338,12,338,7029,9,338,1,339, + 1,339,1,339,1,339,1,339,1,339,3,339,7037,8,339,1,339,3,339,7040, + 8,339,1,339,1,339,1,339,3,339,7045,8,339,1,339,1,339,1,339,3,339, + 7050,8,339,1,339,3,339,7053,8,339,1,339,1,339,1,340,1,340,1,340, + 1,340,1,340,1,340,1,340,3,340,7064,8,340,1,340,1,340,1,340,1,340, + 1,340,1,340,3,340,7072,8,340,1,340,1,340,1,340,3,340,7077,8,340, + 3,340,7079,8,340,1,340,3,340,7082,8,340,1,341,1,341,3,341,7086,8, + 341,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342, + 7097,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342, + 7118,8,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7126,8,342, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 3,342,7139,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 3,342,7149,8,342,1,342,1,342,1,342,1,342,3,342,7155,8,342,1,342, + 1,342,1,342,1,342,3,342,7161,8,342,1,342,3,342,7164,8,342,1,342, + 3,342,7167,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 3,342,7119,8,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7127, - 8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,3,342,7140,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,3,342,7150,8,342,1,342,1,342,1,342,1,342,3,342,7156,8,342, - 1,342,1,342,1,342,1,342,3,342,7162,8,342,1,342,3,342,7165,8,342, - 1,342,3,342,7168,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,1,342,1,342,1,342,1,342,3,342,7193,8,342,3,342,7195,8,342, 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,3,342,7194,8,342,3,342,7196, - 8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7217, - 8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7227, - 8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,3,342,7240,8,342,1,342,1,342,1,342,3,342,7245,8,342,1,342, - 1,342,3,342,7249,8,342,3,342,7251,8,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,3,342,7263,8,342,1,343,1,343, - 1,343,5,343,7268,8,343,10,343,12,343,7271,9,343,1,344,1,344,1,344, - 3,344,7276,8,344,1,345,1,345,1,346,1,346,3,346,7282,8,346,1,346, - 1,346,3,346,7286,8,346,1,347,1,347,1,347,1,348,1,348,1,348,1,348, - 5,348,7295,8,348,10,348,12,348,7298,9,348,1,349,1,349,1,349,1,350, - 1,350,1,350,1,350,1,351,1,351,1,351,3,351,7310,8,351,1,352,1,352, - 3,352,7314,8,352,1,352,1,352,1,352,3,352,7319,8,352,1,352,3,352, - 7322,8,352,1,352,3,352,7325,8,352,1,352,1,352,1,353,1,353,1,353, - 1,353,1,353,3,353,7334,8,353,1,353,1,353,1,353,1,353,1,353,1,353, - 1,353,1,353,1,353,3,353,7345,8,353,3,353,7347,8,353,1,354,1,354, - 3,354,7351,8,354,1,354,1,354,1,354,3,354,7356,8,354,1,355,1,355, - 1,355,1,355,1,355,1,355,1,355,3,355,7365,8,355,1,356,1,356,1,356, - 3,356,7370,8,356,1,356,1,356,1,357,1,357,1,358,1,358,3,358,7378, - 8,358,1,359,1,359,1,360,1,360,1,360,1,360,1,360,1,360,3,360,7388, - 8,360,1,361,1,361,1,361,1,361,1,361,1,361,3,361,7396,8,361,1,362, - 1,362,3,362,7400,8,362,1,362,3,362,7403,8,362,1,363,1,363,1,363, - 5,363,7408,8,363,10,363,12,363,7411,9,363,1,364,1,364,1,364,1,364, - 1,364,3,364,7418,8,364,1,365,1,365,3,365,7422,8,365,1,366,1,366, - 1,366,5,366,7427,8,366,10,366,12,366,7430,9,366,1,367,1,367,1,367, - 1,367,1,367,3,367,7437,8,367,3,367,7439,8,367,1,368,1,368,1,368, - 1,368,1,368,5,368,7446,8,368,10,368,12,368,7449,9,368,3,368,7451, - 8,368,1,368,1,368,1,369,1,369,1,369,1,369,1,369,1,369,1,369,1,369, - 3,369,7463,8,369,1,370,1,370,1,371,1,371,1,371,1,371,1,371,3,371, - 7472,8,371,1,371,1,371,1,371,1,371,1,371,3,371,7479,8,371,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,3,371,7488,8,371,1,372,1,372, - 1,372,1,372,1,372,1,373,1,373,1,373,3,373,7498,8,373,1,373,1,373, - 1,373,3,373,7503,8,373,1,373,1,373,3,373,7507,8,373,3,373,7509,8, - 373,1,373,3,373,7512,8,373,1,374,4,374,7515,8,374,11,374,12,374, - 7516,1,375,5,375,7520,8,375,10,375,12,375,7523,9,375,1,376,1,376, - 1,376,5,376,7528,8,376,10,376,12,376,7531,9,376,1,377,1,377,1,377, - 1,377,1,377,3,377,7538,8,377,1,377,3,377,7541,8,377,1,378,1,378, - 1,378,5,378,7546,8,378,10,378,12,378,7549,9,378,1,379,1,379,1,379, - 5,379,7554,8,379,10,379,12,379,7557,9,379,1,380,1,380,1,380,5,380, - 7562,8,380,10,380,12,380,7565,9,380,1,381,1,381,1,381,5,381,7570, - 8,381,10,381,12,381,7573,9,381,1,382,1,382,1,383,1,383,1,384,1,384, - 1,385,1,385,1,386,1,386,1,387,1,387,1,388,1,388,3,388,7589,8,388, - 1,389,1,389,1,389,5,389,7594,8,389,10,389,12,389,7597,9,389,1,390, - 1,390,1,390,5,390,7602,8,390,10,390,12,390,7605,9,390,1,391,1,391, - 1,392,1,392,1,393,1,393,1,394,1,394,1,395,1,395,1,396,1,396,1,396, - 1,396,3,396,7621,8,396,1,397,1,397,1,397,1,397,3,397,7627,8,397, - 1,398,1,398,1,398,1,398,3,398,7633,8,398,1,399,1,399,1,399,1,400, - 1,400,1,401,1,401,1,401,1,401,3,401,7644,8,401,1,402,1,402,1,402, - 1,402,3,402,7650,8,402,1,403,1,403,1,403,3,403,7655,8,403,1,404, - 1,404,1,404,1,404,5,404,7661,8,404,10,404,12,404,7664,9,404,1,404, - 1,404,3,404,7668,8,404,1,405,3,405,7671,8,405,1,405,1,405,1,406, - 1,406,1,406,1,406,1,406,3,406,7680,8,406,1,407,1,407,1,407,5,407, - 7685,8,407,10,407,12,407,7688,9,407,1,408,1,408,3,408,7692,8,408, - 1,409,1,409,3,409,7696,8,409,1,410,1,410,1,410,3,410,7701,8,410, - 1,411,1,411,1,411,1,411,3,411,7707,8,411,1,412,1,412,1,412,3,412, - 7712,8,412,1,412,1,412,1,412,1,412,1,412,1,412,3,412,7720,8,412, - 1,413,1,413,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7216,8,342, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7226,8,342, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 3,342,7239,8,342,1,342,1,342,1,342,3,342,7244,8,342,1,342,1,342, + 3,342,7248,8,342,3,342,7250,8,342,1,342,1,342,1,342,1,342,1,342, + 1,342,1,342,1,342,1,342,1,342,3,342,7262,8,342,1,343,1,343,1,343, + 5,343,7267,8,343,10,343,12,343,7270,9,343,1,344,1,344,1,344,3,344, + 7275,8,344,1,345,1,345,1,346,1,346,3,346,7281,8,346,1,346,1,346, + 3,346,7285,8,346,1,347,1,347,1,347,1,348,1,348,1,348,1,348,5,348, + 7294,8,348,10,348,12,348,7297,9,348,1,349,1,349,1,349,1,350,1,350, + 1,350,1,350,1,351,1,351,1,351,3,351,7309,8,351,1,352,1,352,3,352, + 7313,8,352,1,352,1,352,1,352,3,352,7318,8,352,1,352,3,352,7321,8, + 352,1,352,3,352,7324,8,352,1,352,1,352,1,353,1,353,1,353,1,353,1, + 353,3,353,7333,8,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1, + 353,1,353,3,353,7344,8,353,3,353,7346,8,353,1,354,1,354,3,354,7350, + 8,354,1,354,1,354,1,354,3,354,7355,8,354,1,355,1,355,1,355,1,355, + 1,355,1,355,1,355,3,355,7364,8,355,1,356,1,356,1,356,3,356,7369, + 8,356,1,356,1,356,1,357,1,357,1,358,1,358,3,358,7377,8,358,1,359, + 1,359,1,360,1,360,1,360,1,360,1,360,1,360,3,360,7387,8,360,1,361, + 1,361,1,361,1,361,1,361,1,361,3,361,7395,8,361,1,362,1,362,3,362, + 7399,8,362,1,362,3,362,7402,8,362,1,363,1,363,1,363,5,363,7407,8, + 363,10,363,12,363,7410,9,363,1,364,1,364,1,364,1,364,1,364,3,364, + 7417,8,364,1,365,1,365,3,365,7421,8,365,1,366,1,366,1,366,5,366, + 7426,8,366,10,366,12,366,7429,9,366,1,367,1,367,1,367,1,367,1,367, + 3,367,7436,8,367,3,367,7438,8,367,1,368,1,368,1,368,1,368,1,368, + 5,368,7445,8,368,10,368,12,368,7448,9,368,3,368,7450,8,368,1,368, + 1,368,1,369,1,369,1,369,1,369,1,369,1,369,1,369,1,369,3,369,7462, + 8,369,1,370,1,370,1,371,1,371,1,371,1,371,1,371,3,371,7471,8,371, + 1,371,1,371,1,371,1,371,1,371,3,371,7478,8,371,1,371,1,371,1,371, + 1,371,1,371,1,371,1,371,3,371,7487,8,371,1,372,1,372,1,372,1,372, + 1,372,1,373,1,373,1,373,3,373,7497,8,373,1,373,1,373,1,373,3,373, + 7502,8,373,1,373,1,373,3,373,7506,8,373,3,373,7508,8,373,1,373,3, + 373,7511,8,373,1,374,4,374,7514,8,374,11,374,12,374,7515,1,375,5, + 375,7519,8,375,10,375,12,375,7522,9,375,1,376,1,376,1,376,5,376, + 7527,8,376,10,376,12,376,7530,9,376,1,377,1,377,1,377,1,377,1,377, + 3,377,7537,8,377,1,377,3,377,7540,8,377,1,378,1,378,1,378,5,378, + 7545,8,378,10,378,12,378,7548,9,378,1,379,1,379,1,379,5,379,7553, + 8,379,10,379,12,379,7556,9,379,1,380,1,380,1,380,5,380,7561,8,380, + 10,380,12,380,7564,9,380,1,381,1,381,1,381,5,381,7569,8,381,10,381, + 12,381,7572,9,381,1,382,1,382,1,383,1,383,1,384,1,384,1,385,1,385, + 1,386,1,386,1,387,1,387,1,388,1,388,3,388,7588,8,388,1,389,1,389, + 1,389,5,389,7593,8,389,10,389,12,389,7596,9,389,1,390,1,390,1,390, + 5,390,7601,8,390,10,390,12,390,7604,9,390,1,391,1,391,1,392,1,392, + 1,393,1,393,1,394,1,394,1,395,1,395,1,396,1,396,1,396,1,396,3,396, + 7620,8,396,1,397,1,397,1,397,1,397,3,397,7626,8,397,1,398,1,398, + 1,398,1,398,3,398,7632,8,398,1,399,1,399,1,399,1,400,1,400,1,401, + 1,401,1,401,1,401,3,401,7643,8,401,1,402,1,402,1,402,1,402,3,402, + 7649,8,402,1,403,1,403,1,403,3,403,7654,8,403,1,404,1,404,1,404, + 1,404,5,404,7660,8,404,10,404,12,404,7663,9,404,1,404,1,404,3,404, + 7667,8,404,1,405,3,405,7670,8,405,1,405,1,405,1,406,1,406,1,406, + 1,406,1,406,3,406,7679,8,406,1,407,1,407,1,407,5,407,7684,8,407, + 10,407,12,407,7687,9,407,1,408,1,408,3,408,7691,8,408,1,409,1,409, + 3,409,7695,8,409,1,410,1,410,1,410,3,410,7700,8,410,1,411,1,411, + 1,411,1,411,3,411,7706,8,411,1,412,1,412,1,412,3,412,7711,8,412, + 1,412,1,412,1,412,1,412,1,412,1,412,3,412,7719,8,412,1,413,1,413, + 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,3,414,7775, - 8,414,1,415,1,415,1,416,1,416,1,417,3,417,7782,8,417,1,417,1,417, - 1,417,1,417,4,417,7788,8,417,11,417,12,417,7789,3,417,7792,8,417, - 3,417,7794,8,417,1,417,1,417,5,417,7798,8,417,10,417,12,417,7801, - 9,417,1,417,3,417,7804,8,417,1,417,1,417,3,417,7808,8,417,1,418, - 1,418,1,418,1,418,1,419,1,419,1,419,1,419,1,419,3,419,7819,8,419, - 1,419,3,419,7822,8,419,1,419,1,419,3,419,7826,8,419,1,419,1,419, - 3,419,7830,8,419,1,419,1,419,3,419,7834,8,419,1,419,3,419,7837,8, - 419,1,419,3,419,7840,8,419,1,419,3,419,7843,8,419,1,419,1,419,1, - 419,1,419,1,419,5,419,7850,8,419,10,419,12,419,7853,9,419,1,419, - 1,419,3,419,7857,8,419,1,419,1,419,3,419,7861,8,419,1,419,1,419, - 1,420,1,420,1,420,1,421,1,421,1,422,1,422,1,422,1,422,1,422,1,422, + 1,414,1,414,1,414,1,414,1,414,1,414,1,414,3,414,7774,8,414,1,415, + 1,415,1,416,1,416,1,417,3,417,7781,8,417,1,417,1,417,1,417,1,417, + 4,417,7787,8,417,11,417,12,417,7788,3,417,7791,8,417,3,417,7793, + 8,417,1,417,1,417,5,417,7797,8,417,10,417,12,417,7800,9,417,1,417, + 3,417,7803,8,417,1,417,1,417,3,417,7807,8,417,1,418,1,418,1,418, + 1,418,1,419,1,419,1,419,1,419,1,419,3,419,7818,8,419,1,419,3,419, + 7821,8,419,1,419,1,419,3,419,7825,8,419,1,419,1,419,3,419,7829,8, + 419,1,419,1,419,3,419,7833,8,419,1,419,3,419,7836,8,419,1,419,3, + 419,7839,8,419,1,419,3,419,7842,8,419,1,419,1,419,1,419,1,419,1, + 419,5,419,7849,8,419,10,419,12,419,7852,9,419,1,419,1,419,3,419, + 7856,8,419,1,419,1,419,3,419,7860,8,419,1,419,1,419,1,420,1,420, + 1,420,1,421,1,421,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422, 1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422, - 1,422,1,422,1,422,1,422,1,422,1,422,1,422,3,422,7894,8,422,1,423, - 1,423,1,423,1,423,1,424,1,424,1,424,1,424,3,424,7904,8,424,1,424, - 1,424,3,424,7908,8,424,1,424,1,424,1,424,1,424,3,424,7914,8,424, - 1,424,1,424,1,424,3,424,7919,8,424,1,425,1,425,1,425,1,425,1,425, - 1,426,1,426,3,426,7928,8,426,1,426,1,426,1,426,1,426,5,426,7934, - 8,426,10,426,12,426,7937,9,426,1,426,1,426,1,427,1,427,1,427,1,427, - 1,428,1,428,3,428,7947,8,428,1,428,1,428,1,428,1,428,5,428,7953, - 8,428,10,428,12,428,7956,9,428,1,429,1,429,1,429,1,429,5,429,7962, - 8,429,10,429,12,429,7965,9,429,1,429,1,429,1,429,1,429,5,429,7971, - 8,429,10,429,12,429,7974,9,429,5,429,7976,8,429,10,429,12,429,7979, - 9,429,1,429,3,429,7982,8,429,1,429,1,429,1,429,1,429,1,430,1,430, - 5,430,7990,8,430,10,430,12,430,7993,9,430,1,431,1,431,3,431,7997, - 8,431,1,431,1,431,1,431,1,431,5,431,8003,8,431,10,431,12,431,8006, - 9,431,4,431,8008,8,431,11,431,12,431,8009,1,431,3,431,8013,8,431, - 1,431,1,431,1,431,1,431,1,432,3,432,8020,8,432,1,432,1,432,1,432, - 1,432,3,432,8026,8,432,1,432,1,432,1,433,1,433,1,433,1,433,3,433, - 8034,8,433,1,433,1,433,1,433,1,433,1,433,1,433,3,433,8042,8,433, - 1,433,3,433,8045,8,433,1,433,1,433,1,433,1,433,1,433,3,433,8052, - 8,433,3,433,8054,8,433,1,434,3,434,8057,8,434,1,434,1,434,1,434, - 1,434,3,434,8063,8,434,1,434,1,434,1,434,1,434,1,434,1,435,1,435, - 3,435,8072,8,435,1,435,1,435,3,435,8076,8,435,1,435,1,435,1,436, - 1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436,8090, - 8,436,1,436,3,436,8093,8,436,3,436,8095,8,436,1,436,1,436,1,437, - 1,437,3,437,8101,8,437,1,437,1,437,1,437,1,437,1,437,1,437,4,437, - 8109,8,437,11,437,12,437,8110,3,437,8113,8,437,3,437,8115,8,437, - 1,437,1,437,1,437,1,437,5,437,8121,8,437,10,437,12,437,8124,9,437, - 3,437,8126,8,437,1,437,3,437,8129,8,437,1,438,1,438,1,438,1,438, - 1,439,1,439,1,439,1,439,3,439,8139,8,439,1,439,1,439,1,440,1,440, - 5,440,8145,8,440,10,440,12,440,8148,9,440,1,440,1,440,1,440,3,440, - 8153,8,440,1,440,1,440,1,441,1,441,3,441,8159,8,441,1,441,1,441, - 1,442,1,442,1,442,3,442,8166,8,442,1,442,1,442,3,442,8170,8,442, - 1,442,1,442,3,442,8174,8,442,1,442,3,442,8177,8,442,1,442,3,442, - 8180,8,442,1,442,1,442,1,443,1,443,3,443,8186,8,443,1,443,1,443, - 1,444,1,444,1,444,3,444,8193,8,444,1,444,3,444,8196,8,444,1,444, - 1,444,1,444,1,444,1,444,1,444,3,444,8204,8,444,3,444,8206,8,444, - 1,444,1,444,1,444,1,444,1,444,5,444,8213,8,444,10,444,12,444,8216, - 9,444,1,444,1,444,3,444,8220,8,444,3,444,8222,8,444,1,444,1,444, - 1,445,1,445,1,445,3,445,8229,8,445,1,445,1,445,1,446,1,446,3,446, - 8235,8,446,1,446,3,446,8238,8,446,1,446,1,446,1,446,1,446,1,446, - 1,447,1,447,1,447,1,447,1,447,3,447,8250,8,447,1,447,1,447,1,447, - 1,447,1,447,3,447,8257,8,447,3,447,8259,8,447,1,448,1,448,3,448, - 8263,8,448,1,448,1,448,1,448,1,449,3,449,8269,8,449,1,449,1,449, - 1,449,3,449,8274,8,449,1,449,1,449,3,449,8278,8,449,1,449,3,449, - 8281,8,449,1,449,3,449,8284,8,449,1,449,1,449,1,449,1,449,1,449, - 4,449,8291,8,449,11,449,12,449,8292,1,449,3,449,8296,8,449,1,450, - 3,450,8299,8,450,1,450,1,450,3,450,8303,8,450,1,450,1,450,3,450, - 8307,8,450,3,450,8309,8,450,1,450,3,450,8312,8,450,1,450,3,450,8315, - 8,450,1,451,1,451,1,451,1,451,3,451,8321,8,451,1,451,1,451,1,451, - 1,451,1,451,3,451,8328,8,451,1,451,1,451,1,451,1,451,1,451,3,451, - 8335,8,451,1,451,1,451,1,451,1,451,3,451,8341,8,451,3,451,8343,8, - 451,1,452,1,452,3,452,8347,8,452,1,452,1,452,1,452,3,452,8352,8, - 452,1,452,1,452,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453, - 1,453,1,453,1,453,1,453,5,453,8368,8,453,10,453,12,453,8371,9,453, - 1,453,1,453,4,453,8375,8,453,11,453,12,453,8376,1,454,1,454,1,454, - 1,454,1,454,5,454,8384,8,454,10,454,12,454,8387,9,454,1,454,1,454, - 1,454,1,454,3,454,8393,8,454,1,455,1,455,3,455,8397,8,455,1,456, - 1,456,1,456,1,456,1,457,1,457,1,457,1,458,1,458,1,458,3,458,8409, - 8,458,1,458,3,458,8412,8,458,1,458,1,458,1,459,1,459,1,459,1,459, - 1,459,1,459,1,459,1,459,1,459,3,459,8425,8,459,1,459,3,459,8428, - 8,459,1,460,1,460,3,460,8432,8,460,1,461,1,461,1,461,1,461,1,461, - 5,461,8439,8,461,10,461,12,461,8442,9,461,1,461,1,461,5,461,8446, - 8,461,10,461,12,461,8449,9,461,4,461,8451,8,461,11,461,12,461,8452, - 1,462,1,462,1,462,3,462,8458,8,462,1,463,1,463,3,463,8462,8,463, - 1,464,3,464,8465,8,464,1,464,3,464,8468,8,464,1,464,3,464,8471,8, - 464,1,464,3,464,8474,8,464,1,464,3,464,8477,8,464,1,464,3,464,8480, - 8,464,1,464,3,464,8483,8,464,1,464,0,3,670,674,676,465,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,120,122,124,126,128,130, - 132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162, - 164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194, - 196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226, - 228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258, - 260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290, - 292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322, - 324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354, - 356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386, - 388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418, - 420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450, - 452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482, - 484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,514, - 516,518,520,522,524,526,528,530,532,534,536,538,540,542,544,546, - 548,550,552,554,556,558,560,562,564,566,568,570,572,574,576,578, - 580,582,584,586,588,590,592,594,596,598,600,602,604,606,608,610, - 612,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642, - 644,646,648,650,652,654,656,658,660,662,664,666,668,670,672,674, - 676,678,680,682,684,686,688,690,692,694,696,698,700,702,704,706, - 708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738, - 740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770, - 772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802, - 804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834, - 836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866, - 868,870,872,874,876,878,880,882,884,886,888,890,892,894,896,898, - 900,902,904,906,908,910,912,914,916,918,920,922,924,926,928,0,119, - 2,0,195,195,364,364,2,0,66,66,318,318,2,0,99,99,318,318,2,0,134, - 134,318,318,1,0,529,531,2,0,10,10,94,94,2,0,133,133,191,191,2,0, - 254,254,332,332,2,0,162,162,363,363,2,0,180,180,221,221,5,0,30,30, - 288,288,329,329,352,352,354,354,2,0,109,109,532,532,2,0,158,158, - 277,277,2,0,367,367,439,439,2,0,139,139,312,312,2,0,191,191,333, - 333,2,0,313,313,333,333,2,0,150,150,315,315,2,0,64,64,94,94,4,0, - 78,78,183,183,197,197,298,298,1,0,549,551,2,0,213,213,254,254,2, - 0,352,352,354,354,2,0,200,200,224,224,9,0,30,30,160,160,165,165, - 179,179,219,219,227,227,342,342,345,345,438,438,3,0,113,113,284, - 284,336,336,2,0,53,53,78,78,2,0,105,105,379,379,2,0,260,260,262, - 262,3,0,173,173,260,260,262,262,1,0,12,13,2,0,64,64,375,375,2,0, - 156,156,206,206,2,0,189,189,360,360,2,0,215,215,373,373,3,0,133, - 133,191,191,333,333,5,0,30,30,88,88,182,182,241,241,369,369,2,0, - 9,9,94,94,2,0,92,92,226,226,1,0,448,449,2,0,92,92,414,414,2,0,341, - 341,414,414,4,0,163,163,185,185,283,283,353,353,2,0,135,135,145, - 145,2,0,211,211,278,278,3,0,321,321,357,357,445,445,3,0,66,66,99, - 99,318,318,5,0,108,108,168,168,226,226,328,328,342,342,2,0,167,167, - 314,314,2,0,61,61,265,265,4,0,207,207,249,249,268,268,293,293,2, - 0,130,130,307,307,2,0,64,64,68,68,10,0,46,46,88,88,182,182,202,202, - 241,241,352,352,354,354,357,358,369,369,521,523,5,0,212,212,329, - 329,350,350,455,455,457,457,5,0,212,212,329,329,350,350,361,361, - 455,456,2,0,37,37,55,55,2,0,207,207,249,249,2,0,10,10,53,53,2,0, - 181,181,243,243,2,0,170,170,320,320,2,0,141,141,223,223,5,0,108, - 108,168,168,189,189,342,342,360,360,2,0,226,226,328,328,2,0,163, - 163,185,185,2,0,186,186,193,193,4,0,88,88,182,182,241,241,369,369, - 2,0,137,137,242,242,2,0,161,161,319,319,4,0,129,129,161,161,319, - 319,454,454,2,0,356,356,380,380,2,0,81,81,382,382,2,0,151,151,254, - 254,2,0,133,133,138,138,1,0,31,32,2,0,128,128,547,547,2,0,60,60, - 96,96,2,0,99,99,349,349,2,0,131,131,414,414,2,0,201,201,334,334, - 3,0,59,59,70,70,97,97,2,0,30,30,56,56,1,0,527,528,2,0,207,207,268, - 268,2,0,320,320,414,414,2,0,574,574,576,576,1,0,468,469,4,0,113, - 113,115,115,119,119,126,126,2,0,360,360,477,477,2,0,394,395,409, - 409,2,0,391,392,406,406,1,0,391,392,1,0,418,419,5,0,10,10,16,17, - 21,21,23,23,25,25,3,0,9,9,14,14,27,27,2,0,98,98,396,396,2,0,50,51, - 75,76,2,0,41,41,420,420,3,0,39,39,73,73,95,95,4,0,393,393,399,399, - 404,404,425,425,2,0,292,292,347,347,2,0,166,166,188,188,2,0,304, - 304,450,450,3,0,299,299,320,320,481,481,2,0,208,208,289,289,3,0, - 30,30,34,34,90,90,6,0,9,10,12,17,21,21,23,23,25,25,27,27,2,0,114, - 114,120,120,2,0,20,20,22,22,1,0,483,486,17,0,53,53,116,116,123,124, - 129,228,238,386,433,452,455,469,471,471,473,473,475,475,477,488, - 490,502,504,504,506,518,520,520,524,524,547,548,3,0,106,123,125, - 128,472,472,4,0,30,52,54,70,72,105,454,454,2,0,62,62,116,116,2,0, - 10,10,20,20,2,0,434,434,501,501,2,0,167,167,507,507,1,0,512,517, - 2,0,144,144,210,210,9924,0,933,1,0,0,0,2,938,1,0,0,0,4,1062,1,0, - 0,0,6,1064,1,0,0,0,8,1067,1,0,0,0,10,1117,1,0,0,0,12,1127,1,0,0, - 0,14,1129,1,0,0,0,16,1141,1,0,0,0,18,1153,1,0,0,0,20,1164,1,0,0, - 0,22,1198,1,0,0,0,24,1242,1,0,0,0,26,1244,1,0,0,0,28,1256,1,0,0, - 0,30,1263,1,0,0,0,32,1282,1,0,0,0,34,1290,1,0,0,0,36,1292,1,0,0, - 0,38,1306,1,0,0,0,40,1310,1,0,0,0,42,1347,1,0,0,0,44,1349,1,0,0, - 0,46,1357,1,0,0,0,48,1367,1,0,0,0,50,1374,1,0,0,0,52,1382,1,0,0, - 0,54,1388,1,0,0,0,56,1404,1,0,0,0,58,1408,1,0,0,0,60,1410,1,0,0, - 0,62,1422,1,0,0,0,64,1427,1,0,0,0,66,1432,1,0,0,0,68,1434,1,0,0, - 0,70,1446,1,0,0,0,72,1454,1,0,0,0,74,1456,1,0,0,0,76,1576,1,0,0, - 0,78,1578,1,0,0,0,80,1592,1,0,0,0,82,1594,1,0,0,0,84,1831,1,0,0, - 0,86,1838,1,0,0,0,88,1840,1,0,0,0,90,1842,1,0,0,0,92,1845,1,0,0, - 0,94,1856,1,0,0,0,96,1859,1,0,0,0,98,1889,1,0,0,0,100,1891,1,0,0, - 0,102,1932,1,0,0,0,104,1934,1,0,0,0,106,1988,1,0,0,0,108,2034,1, - 0,0,0,110,2055,1,0,0,0,112,2057,1,0,0,0,114,2074,1,0,0,0,116,2155, - 1,0,0,0,118,2157,1,0,0,0,120,2168,1,0,0,0,122,2191,1,0,0,0,124,2209, - 1,0,0,0,126,2211,1,0,0,0,128,2246,1,0,0,0,130,2339,1,0,0,0,132,2344, - 1,0,0,0,134,2346,1,0,0,0,136,2444,1,0,0,0,138,2446,1,0,0,0,140,2450, - 1,0,0,0,142,2461,1,0,0,0,144,2469,1,0,0,0,146,2472,1,0,0,0,148,2475, - 1,0,0,0,150,2493,1,0,0,0,152,2495,1,0,0,0,154,2499,1,0,0,0,156,2512, - 1,0,0,0,158,2514,1,0,0,0,160,2519,1,0,0,0,162,2539,1,0,0,0,164,2547, - 1,0,0,0,166,2554,1,0,0,0,168,2556,1,0,0,0,170,2565,1,0,0,0,172,2568, - 1,0,0,0,174,2572,1,0,0,0,176,2576,1,0,0,0,178,2601,1,0,0,0,180,2611, - 1,0,0,0,182,2625,1,0,0,0,184,2641,1,0,0,0,186,2647,1,0,0,0,188,2674, - 1,0,0,0,190,2684,1,0,0,0,192,2700,1,0,0,0,194,2744,1,0,0,0,196,2751, - 1,0,0,0,198,2753,1,0,0,0,200,2779,1,0,0,0,202,2790,1,0,0,0,204,2809, - 1,0,0,0,206,2820,1,0,0,0,208,2858,1,0,0,0,210,2879,1,0,0,0,212,2881, - 1,0,0,0,214,2901,1,0,0,0,216,2913,1,0,0,0,218,2925,1,0,0,0,220,2928, - 1,0,0,0,222,2931,1,0,0,0,224,2951,1,0,0,0,226,2956,1,0,0,0,228,3005, - 1,0,0,0,230,3007,1,0,0,0,232,3030,1,0,0,0,234,3046,1,0,0,0,236,3058, - 1,0,0,0,238,3085,1,0,0,0,240,3100,1,0,0,0,242,3163,1,0,0,0,244,3165, - 1,0,0,0,246,3170,1,0,0,0,248,3176,1,0,0,0,250,3263,1,0,0,0,252,3269, - 1,0,0,0,254,3271,1,0,0,0,256,3287,1,0,0,0,258,3289,1,0,0,0,260,3298, - 1,0,0,0,262,3302,1,0,0,0,264,3315,1,0,0,0,266,3327,1,0,0,0,268,3329, - 1,0,0,0,270,3351,1,0,0,0,272,3363,1,0,0,0,274,3374,1,0,0,0,276,3465, - 1,0,0,0,278,3467,1,0,0,0,280,3478,1,0,0,0,282,3489,1,0,0,0,284,3491, - 1,0,0,0,286,3517,1,0,0,0,288,3519,1,0,0,0,290,3523,1,0,0,0,292,3573, - 1,0,0,0,294,3575,1,0,0,0,296,3581,1,0,0,0,298,3606,1,0,0,0,300,3610, - 1,0,0,0,302,3824,1,0,0,0,304,3842,1,0,0,0,306,3868,1,0,0,0,308,3870, - 1,0,0,0,310,3878,1,0,0,0,312,3884,1,0,0,0,314,3888,1,0,0,0,316,3908, - 1,0,0,0,318,3914,1,0,0,0,320,3981,1,0,0,0,322,4012,1,0,0,0,324,4058, - 1,0,0,0,326,4060,1,0,0,0,328,4062,1,0,0,0,330,4073,1,0,0,0,332,4110, - 1,0,0,0,334,4112,1,0,0,0,336,4118,1,0,0,0,338,4168,1,0,0,0,340,4171, - 1,0,0,0,342,4185,1,0,0,0,344,4206,1,0,0,0,346,4230,1,0,0,0,348,4271, - 1,0,0,0,350,4273,1,0,0,0,352,4275,1,0,0,0,354,4315,1,0,0,0,356,4332, - 1,0,0,0,358,4352,1,0,0,0,360,4405,1,0,0,0,362,4408,1,0,0,0,364,4414, - 1,0,0,0,366,4422,1,0,0,0,368,4435,1,0,0,0,370,4437,1,0,0,0,372,4450, - 1,0,0,0,374,4452,1,0,0,0,376,4465,1,0,0,0,378,4475,1,0,0,0,380,4486, - 1,0,0,0,382,4497,1,0,0,0,384,4499,1,0,0,0,386,4504,1,0,0,0,388,4518, - 1,0,0,0,390,4550,1,0,0,0,392,4587,1,0,0,0,394,4589,1,0,0,0,396,4592, - 1,0,0,0,398,4595,1,0,0,0,400,4612,1,0,0,0,402,4633,1,0,0,0,404,4649, - 1,0,0,0,406,4665,1,0,0,0,408,4687,1,0,0,0,410,4692,1,0,0,0,412,4695, - 1,0,0,0,414,4703,1,0,0,0,416,4728,1,0,0,0,418,4731,1,0,0,0,420,4759, - 1,0,0,0,422,4764,1,0,0,0,424,4804,1,0,0,0,426,5016,1,0,0,0,428,5018, - 1,0,0,0,430,5106,1,0,0,0,432,5108,1,0,0,0,434,5114,1,0,0,0,436,5125, - 1,0,0,0,438,5135,1,0,0,0,440,5215,1,0,0,0,442,5217,1,0,0,0,444,5231, - 1,0,0,0,446,5253,1,0,0,0,448,5326,1,0,0,0,450,5328,1,0,0,0,452,5369, - 1,0,0,0,454,5371,1,0,0,0,456,5376,1,0,0,0,458,5379,1,0,0,0,460,5382, - 1,0,0,0,462,5432,1,0,0,0,464,5434,1,0,0,0,466,5445,1,0,0,0,468,5447, - 1,0,0,0,470,5457,1,0,0,0,472,5492,1,0,0,0,474,5495,1,0,0,0,476,5516, - 1,0,0,0,478,5526,1,0,0,0,480,5546,1,0,0,0,482,5552,1,0,0,0,484,5558, - 1,0,0,0,486,5563,1,0,0,0,488,5576,1,0,0,0,490,5603,1,0,0,0,492,5651, - 1,0,0,0,494,5653,1,0,0,0,496,5691,1,0,0,0,498,5693,1,0,0,0,500,5714, - 1,0,0,0,502,5734,1,0,0,0,504,5738,1,0,0,0,506,5753,1,0,0,0,508,5755, - 1,0,0,0,510,5759,1,0,0,0,512,5763,1,0,0,0,514,5771,1,0,0,0,516,5795, - 1,0,0,0,518,5797,1,0,0,0,520,5808,1,0,0,0,522,5816,1,0,0,0,524,5832, - 1,0,0,0,526,5857,1,0,0,0,528,5859,1,0,0,0,530,5863,1,0,0,0,532,5872, - 1,0,0,0,534,5912,1,0,0,0,536,5923,1,0,0,0,538,5931,1,0,0,0,540,5934, - 1,0,0,0,542,5938,1,0,0,0,544,5953,1,0,0,0,546,5978,1,0,0,0,548,5993, - 1,0,0,0,550,6019,1,0,0,0,552,6021,1,0,0,0,554,6044,1,0,0,0,556,6046, - 1,0,0,0,558,6054,1,0,0,0,560,6072,1,0,0,0,562,6096,1,0,0,0,564,6108, - 1,0,0,0,566,6112,1,0,0,0,568,6124,1,0,0,0,570,6144,1,0,0,0,572,6152, - 1,0,0,0,574,6166,1,0,0,0,576,6189,1,0,0,0,578,6191,1,0,0,0,580,6196, - 1,0,0,0,582,6206,1,0,0,0,584,6227,1,0,0,0,586,6229,1,0,0,0,588,6238, - 1,0,0,0,590,6249,1,0,0,0,592,6259,1,0,0,0,594,6261,1,0,0,0,596,6268, - 1,0,0,0,598,6299,1,0,0,0,600,6329,1,0,0,0,602,6331,1,0,0,0,604,6340, - 1,0,0,0,606,6343,1,0,0,0,608,6414,1,0,0,0,610,6438,1,0,0,0,612,6459, - 1,0,0,0,614,6461,1,0,0,0,616,6469,1,0,0,0,618,6486,1,0,0,0,620,6512, - 1,0,0,0,622,6514,1,0,0,0,624,6522,1,0,0,0,626,6529,1,0,0,0,628,6553, - 1,0,0,0,630,6559,1,0,0,0,632,6567,1,0,0,0,634,6570,1,0,0,0,636,6577, - 1,0,0,0,638,6585,1,0,0,0,640,6590,1,0,0,0,642,6620,1,0,0,0,644,6647, - 1,0,0,0,646,6675,1,0,0,0,648,6692,1,0,0,0,650,6698,1,0,0,0,652,6716, - 1,0,0,0,654,6718,1,0,0,0,656,6722,1,0,0,0,658,6739,1,0,0,0,660,6744, - 1,0,0,0,662,6782,1,0,0,0,664,6784,1,0,0,0,666,6788,1,0,0,0,668,6790, - 1,0,0,0,670,6799,1,0,0,0,672,6883,1,0,0,0,674,6889,1,0,0,0,676,6999, - 1,0,0,0,678,7031,1,0,0,0,680,7082,1,0,0,0,682,7086,1,0,0,0,684,7262, - 1,0,0,0,686,7264,1,0,0,0,688,7272,1,0,0,0,690,7277,1,0,0,0,692,7279, - 1,0,0,0,694,7287,1,0,0,0,696,7290,1,0,0,0,698,7299,1,0,0,0,700,7302, - 1,0,0,0,702,7306,1,0,0,0,704,7311,1,0,0,0,706,7328,1,0,0,0,708,7355, - 1,0,0,0,710,7364,1,0,0,0,712,7366,1,0,0,0,714,7373,1,0,0,0,716,7377, - 1,0,0,0,718,7379,1,0,0,0,720,7387,1,0,0,0,722,7395,1,0,0,0,724,7402, - 1,0,0,0,726,7404,1,0,0,0,728,7417,1,0,0,0,730,7421,1,0,0,0,732,7423, - 1,0,0,0,734,7438,1,0,0,0,736,7440,1,0,0,0,738,7462,1,0,0,0,740,7464, - 1,0,0,0,742,7487,1,0,0,0,744,7489,1,0,0,0,746,7511,1,0,0,0,748,7514, - 1,0,0,0,750,7521,1,0,0,0,752,7524,1,0,0,0,754,7540,1,0,0,0,756,7542, - 1,0,0,0,758,7550,1,0,0,0,760,7558,1,0,0,0,762,7566,1,0,0,0,764,7574, - 1,0,0,0,766,7576,1,0,0,0,768,7578,1,0,0,0,770,7580,1,0,0,0,772,7582, - 1,0,0,0,774,7584,1,0,0,0,776,7586,1,0,0,0,778,7590,1,0,0,0,780,7598, - 1,0,0,0,782,7606,1,0,0,0,784,7608,1,0,0,0,786,7610,1,0,0,0,788,7612, - 1,0,0,0,790,7614,1,0,0,0,792,7620,1,0,0,0,794,7626,1,0,0,0,796,7632, - 1,0,0,0,798,7634,1,0,0,0,800,7637,1,0,0,0,802,7643,1,0,0,0,804,7649, - 1,0,0,0,806,7651,1,0,0,0,808,7667,1,0,0,0,810,7670,1,0,0,0,812,7679, - 1,0,0,0,814,7681,1,0,0,0,816,7691,1,0,0,0,818,7695,1,0,0,0,820,7700, - 1,0,0,0,822,7706,1,0,0,0,824,7719,1,0,0,0,826,7721,1,0,0,0,828,7774, - 1,0,0,0,830,7776,1,0,0,0,832,7778,1,0,0,0,834,7781,1,0,0,0,836,7809, - 1,0,0,0,838,7813,1,0,0,0,840,7864,1,0,0,0,842,7867,1,0,0,0,844,7893, - 1,0,0,0,846,7895,1,0,0,0,848,7918,1,0,0,0,850,7920,1,0,0,0,852,7925, - 1,0,0,0,854,7940,1,0,0,0,856,7946,1,0,0,0,858,7957,1,0,0,0,860,7987, - 1,0,0,0,862,7994,1,0,0,0,864,8019,1,0,0,0,866,8029,1,0,0,0,868,8056, - 1,0,0,0,870,8069,1,0,0,0,872,8079,1,0,0,0,874,8098,1,0,0,0,876,8130, - 1,0,0,0,878,8134,1,0,0,0,880,8142,1,0,0,0,882,8156,1,0,0,0,884,8162, - 1,0,0,0,886,8183,1,0,0,0,888,8189,1,0,0,0,890,8228,1,0,0,0,892,8232, - 1,0,0,0,894,8258,1,0,0,0,896,8260,1,0,0,0,898,8268,1,0,0,0,900,8308, - 1,0,0,0,902,8342,1,0,0,0,904,8344,1,0,0,0,906,8355,1,0,0,0,908,8392, - 1,0,0,0,910,8396,1,0,0,0,912,8398,1,0,0,0,914,8402,1,0,0,0,916,8405, - 1,0,0,0,918,8427,1,0,0,0,920,8431,1,0,0,0,922,8433,1,0,0,0,924,8457, - 1,0,0,0,926,8461,1,0,0,0,928,8464,1,0,0,0,930,932,3,2,1,0,931,930, - 1,0,0,0,932,935,1,0,0,0,933,931,1,0,0,0,933,934,1,0,0,0,934,936, - 1,0,0,0,935,933,1,0,0,0,936,937,5,0,0,1,937,1,1,0,0,0,938,940,3, - 4,2,0,939,941,5,7,0,0,940,939,1,0,0,0,940,941,1,0,0,0,941,3,1,0, - 0,0,942,1063,3,272,136,0,943,1063,3,482,241,0,944,1063,3,478,239, - 0,945,1063,3,480,240,0,946,1063,3,346,173,0,947,1063,3,488,244,0, - 948,1063,3,286,143,0,949,1063,3,204,102,0,950,1063,3,206,103,0,951, - 1063,3,212,106,0,952,1063,3,226,113,0,953,1063,3,398,199,0,954,1063, - 3,28,14,0,955,1063,3,428,214,0,956,1063,3,430,215,0,957,1063,3,440, - 220,0,958,1063,3,432,216,0,959,1063,3,438,219,0,960,1063,3,238,119, - 0,961,1063,3,240,120,0,962,1063,3,192,96,0,963,1063,3,484,242,0, - 964,1063,3,76,38,0,965,1063,3,424,212,0,966,1063,3,100,50,0,967, - 1063,3,444,222,0,968,1063,3,18,9,0,969,1063,3,20,10,0,970,1063,3, - 16,8,0,971,1063,3,448,224,0,972,1063,3,178,89,0,973,1063,3,492,246, - 0,974,1063,3,490,245,0,975,1063,3,234,117,0,976,1063,3,500,250,0, - 977,1063,3,6,3,0,978,1063,3,72,36,0,979,1063,3,104,52,0,980,1063, - 3,496,248,0,981,1063,3,318,159,0,982,1063,3,70,35,0,983,1063,3,106, - 53,0,984,1063,3,248,124,0,985,1063,3,180,90,0,986,1063,3,274,137, - 0,987,1063,3,414,207,0,988,1063,3,494,247,0,989,1063,3,486,243,0, - 990,1063,3,202,101,0,991,1063,3,208,104,0,992,1063,3,222,111,0,993, - 1063,3,228,114,0,994,1063,3,358,179,0,995,1063,3,26,13,0,996,1063, - 3,186,93,0,997,1063,3,290,145,0,998,1063,3,294,147,0,999,1063,3, - 442,221,0,1000,1063,3,296,148,0,1001,1063,3,236,118,0,1002,1063, - 3,198,99,0,1003,1063,3,30,15,0,1004,1063,3,190,95,0,1005,1063,3, - 114,57,0,1006,1063,3,446,223,0,1007,1063,3,176,88,0,1008,1063,3, - 200,100,0,1009,1063,3,418,209,0,1010,1063,3,250,125,0,1011,1063, - 3,268,134,0,1012,1063,3,8,4,0,1013,1063,3,14,7,0,1014,1063,3,232, - 116,0,1015,1063,3,474,237,0,1016,1063,3,530,265,0,1017,1063,3,552, - 276,0,1018,1063,3,276,138,0,1019,1063,3,542,271,0,1020,1063,3,74, - 37,0,1021,1063,3,412,206,0,1022,1063,3,302,151,0,1023,1063,3,526, - 263,0,1024,1063,3,514,257,0,1025,1063,3,322,161,0,1026,1063,3,328, - 164,0,1027,1063,3,342,171,0,1028,1063,3,898,449,0,1029,1063,3,230, - 115,0,1030,1063,3,352,176,0,1031,1063,3,532,266,0,1032,1063,3,458, - 229,0,1033,1063,3,188,94,0,1034,1063,3,472,236,0,1035,1063,3,544, - 272,0,1036,1063,3,454,227,0,1037,1063,3,520,260,0,1038,1063,3,300, - 150,0,1039,1063,3,422,211,0,1040,1063,3,402,201,0,1041,1063,3,400, - 200,0,1042,1063,3,404,202,0,1043,1063,3,426,213,0,1044,1063,3,330, - 165,0,1045,1063,3,344,172,0,1046,1063,3,450,225,0,1047,1063,3,320, - 160,0,1048,1063,3,554,277,0,1049,1063,3,462,231,0,1050,1063,3,314, - 157,0,1051,1063,3,460,230,0,1052,1063,3,546,273,0,1053,1063,3,498, - 249,0,1054,1063,3,60,30,0,1055,1063,3,36,18,0,1056,1063,3,68,34, - 0,1057,1063,3,470,235,0,1058,1060,5,583,0,0,1059,1061,5,584,0,0, - 1060,1059,1,0,0,0,1060,1061,1,0,0,0,1061,1063,1,0,0,0,1062,942,1, - 0,0,0,1062,943,1,0,0,0,1062,944,1,0,0,0,1062,945,1,0,0,0,1062,946, - 1,0,0,0,1062,947,1,0,0,0,1062,948,1,0,0,0,1062,949,1,0,0,0,1062, - 950,1,0,0,0,1062,951,1,0,0,0,1062,952,1,0,0,0,1062,953,1,0,0,0,1062, - 954,1,0,0,0,1062,955,1,0,0,0,1062,956,1,0,0,0,1062,957,1,0,0,0,1062, - 958,1,0,0,0,1062,959,1,0,0,0,1062,960,1,0,0,0,1062,961,1,0,0,0,1062, - 962,1,0,0,0,1062,963,1,0,0,0,1062,964,1,0,0,0,1062,965,1,0,0,0,1062, - 966,1,0,0,0,1062,967,1,0,0,0,1062,968,1,0,0,0,1062,969,1,0,0,0,1062, - 970,1,0,0,0,1062,971,1,0,0,0,1062,972,1,0,0,0,1062,973,1,0,0,0,1062, - 974,1,0,0,0,1062,975,1,0,0,0,1062,976,1,0,0,0,1062,977,1,0,0,0,1062, - 978,1,0,0,0,1062,979,1,0,0,0,1062,980,1,0,0,0,1062,981,1,0,0,0,1062, - 982,1,0,0,0,1062,983,1,0,0,0,1062,984,1,0,0,0,1062,985,1,0,0,0,1062, - 986,1,0,0,0,1062,987,1,0,0,0,1062,988,1,0,0,0,1062,989,1,0,0,0,1062, - 990,1,0,0,0,1062,991,1,0,0,0,1062,992,1,0,0,0,1062,993,1,0,0,0,1062, - 994,1,0,0,0,1062,995,1,0,0,0,1062,996,1,0,0,0,1062,997,1,0,0,0,1062, - 998,1,0,0,0,1062,999,1,0,0,0,1062,1000,1,0,0,0,1062,1001,1,0,0,0, - 1062,1002,1,0,0,0,1062,1003,1,0,0,0,1062,1004,1,0,0,0,1062,1005, - 1,0,0,0,1062,1006,1,0,0,0,1062,1007,1,0,0,0,1062,1008,1,0,0,0,1062, - 1009,1,0,0,0,1062,1010,1,0,0,0,1062,1011,1,0,0,0,1062,1012,1,0,0, - 0,1062,1013,1,0,0,0,1062,1014,1,0,0,0,1062,1015,1,0,0,0,1062,1016, - 1,0,0,0,1062,1017,1,0,0,0,1062,1018,1,0,0,0,1062,1019,1,0,0,0,1062, - 1020,1,0,0,0,1062,1021,1,0,0,0,1062,1022,1,0,0,0,1062,1023,1,0,0, - 0,1062,1024,1,0,0,0,1062,1025,1,0,0,0,1062,1026,1,0,0,0,1062,1027, - 1,0,0,0,1062,1028,1,0,0,0,1062,1029,1,0,0,0,1062,1030,1,0,0,0,1062, - 1031,1,0,0,0,1062,1032,1,0,0,0,1062,1033,1,0,0,0,1062,1034,1,0,0, - 0,1062,1035,1,0,0,0,1062,1036,1,0,0,0,1062,1037,1,0,0,0,1062,1038, - 1,0,0,0,1062,1039,1,0,0,0,1062,1040,1,0,0,0,1062,1041,1,0,0,0,1062, - 1042,1,0,0,0,1062,1043,1,0,0,0,1062,1044,1,0,0,0,1062,1045,1,0,0, - 0,1062,1046,1,0,0,0,1062,1047,1,0,0,0,1062,1048,1,0,0,0,1062,1049, - 1,0,0,0,1062,1050,1,0,0,0,1062,1051,1,0,0,0,1062,1052,1,0,0,0,1062, - 1053,1,0,0,0,1062,1054,1,0,0,0,1062,1055,1,0,0,0,1062,1056,1,0,0, - 0,1062,1057,1,0,0,0,1062,1058,1,0,0,0,1063,5,1,0,0,0,1064,1065,5, - 433,0,0,1065,1066,3,678,339,0,1066,7,1,0,0,0,1067,1068,5,46,0,0, - 1068,1069,5,318,0,0,1069,1071,3,812,406,0,1070,1072,5,105,0,0,1071, - 1070,1,0,0,0,1071,1072,1,0,0,0,1072,1076,1,0,0,0,1073,1075,3,12, - 6,0,1074,1073,1,0,0,0,1075,1078,1,0,0,0,1076,1074,1,0,0,0,1076,1077, - 1,0,0,0,1077,9,1,0,0,0,1078,1076,1,0,0,0,1079,1082,5,287,0,0,1080, - 1083,3,806,403,0,1081,1083,5,78,0,0,1082,1080,1,0,0,0,1082,1081, - 1,0,0,0,1083,1118,1,0,0,0,1084,1085,7,0,0,0,1085,1086,5,287,0,0, - 1086,1118,3,806,403,0,1087,1118,5,228,0,0,1088,1118,5,229,0,0,1089, - 1118,5,236,0,0,1090,1118,5,237,0,0,1091,1118,5,234,0,0,1092,1118, - 5,235,0,0,1093,1118,5,232,0,0,1094,1118,5,233,0,0,1095,1118,5,230, - 0,0,1096,1118,5,231,0,0,1097,1118,5,535,0,0,1098,1118,5,536,0,0, - 1099,1118,5,537,0,0,1100,1118,5,538,0,0,1101,1118,5,539,0,0,1102, - 1118,5,540,0,0,1103,1104,5,164,0,0,1104,1105,5,74,0,0,1105,1118, - 3,810,405,0,1106,1107,5,371,0,0,1107,1108,5,368,0,0,1108,1118,3, - 806,403,0,1109,1110,5,68,0,0,1110,1111,7,1,0,0,1111,1118,3,780,390, - 0,1112,1113,7,2,0,0,1113,1118,3,814,407,0,1114,1115,5,134,0,0,1115, - 1118,3,780,390,0,1116,1118,3,824,412,0,1117,1079,1,0,0,0,1117,1084, - 1,0,0,0,1117,1087,1,0,0,0,1117,1088,1,0,0,0,1117,1089,1,0,0,0,1117, - 1090,1,0,0,0,1117,1091,1,0,0,0,1117,1092,1,0,0,0,1117,1093,1,0,0, - 0,1117,1094,1,0,0,0,1117,1095,1,0,0,0,1117,1096,1,0,0,0,1117,1097, - 1,0,0,0,1117,1098,1,0,0,0,1117,1099,1,0,0,0,1117,1100,1,0,0,0,1117, - 1101,1,0,0,0,1117,1102,1,0,0,0,1117,1103,1,0,0,0,1117,1106,1,0,0, - 0,1117,1109,1,0,0,0,1117,1112,1,0,0,0,1117,1114,1,0,0,0,1117,1116, - 1,0,0,0,1118,11,1,0,0,0,1119,1128,3,10,5,0,1120,1121,5,348,0,0,1121, - 1128,5,574,0,0,1122,1123,7,3,0,0,1123,1128,3,814,407,0,1124,1125, - 5,68,0,0,1125,1126,7,1,0,0,1126,1128,3,814,407,0,1127,1119,1,0,0, - 0,1127,1120,1,0,0,0,1127,1122,1,0,0,0,1127,1124,1,0,0,0,1128,13, - 1,0,0,0,1129,1130,5,46,0,0,1130,1131,5,99,0,0,1131,1133,3,812,406, - 0,1132,1134,5,105,0,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0,1134,1138, - 1,0,0,0,1135,1137,3,12,6,0,1136,1135,1,0,0,0,1137,1140,1,0,0,0,1138, - 1136,1,0,0,0,1138,1139,1,0,0,0,1139,15,1,0,0,0,1140,1138,1,0,0,0, - 1141,1142,5,138,0,0,1142,1143,7,2,0,0,1143,1145,3,812,406,0,1144, - 1146,5,105,0,0,1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,1150,1,0, - 0,0,1147,1149,3,10,5,0,1148,1147,1,0,0,0,1149,1152,1,0,0,0,1150, - 1148,1,0,0,0,1150,1151,1,0,0,0,1151,17,1,0,0,0,1152,1150,1,0,0,0, - 1153,1154,5,138,0,0,1154,1157,7,2,0,0,1155,1158,5,30,0,0,1156,1158, - 3,812,406,0,1157,1155,1,0,0,0,1157,1156,1,0,0,0,1158,1159,1,0,0, - 0,1159,1160,5,68,0,0,1160,1161,5,175,0,0,1161,1162,3,784,392,0,1162, - 1163,3,64,32,0,1163,19,1,0,0,0,1164,1165,5,138,0,0,1165,1166,5,442, - 0,0,1166,1168,3,790,395,0,1167,1169,3,362,181,0,1168,1167,1,0,0, - 0,1168,1169,1,0,0,0,1169,1170,1,0,0,0,1170,1171,3,22,11,0,1171,21, - 1,0,0,0,1172,1176,3,24,12,0,1173,1175,3,24,12,0,1174,1173,1,0,0, - 0,1175,1178,1,0,0,0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1180, - 1,0,0,0,1178,1176,1,0,0,0,1179,1181,5,315,0,0,1180,1179,1,0,0,0, - 1180,1181,1,0,0,0,1181,1199,1,0,0,0,1182,1183,5,309,0,0,1183,1184, - 5,94,0,0,1184,1199,3,788,394,0,1185,1186,5,282,0,0,1186,1187,5,94, - 0,0,1187,1199,3,812,406,0,1188,1189,5,333,0,0,1189,1190,5,323,0, - 0,1190,1199,3,32,16,0,1191,1193,5,269,0,0,1192,1191,1,0,0,0,1192, - 1193,1,0,0,0,1193,1194,1,0,0,0,1194,1195,5,462,0,0,1195,1196,5,80, - 0,0,1196,1197,5,204,0,0,1197,1199,3,816,408,0,1198,1172,1,0,0,0, - 1198,1182,1,0,0,0,1198,1185,1,0,0,0,1198,1188,1,0,0,0,1198,1192, - 1,0,0,0,1199,23,1,0,0,0,1200,1243,5,222,0,0,1201,1243,5,338,0,0, - 1202,1243,5,377,0,0,1203,1205,5,77,0,0,1204,1203,1,0,0,0,1204,1205, - 1,0,0,0,1205,1206,1,0,0,0,1206,1243,5,250,0,0,1207,1209,5,205,0, - 0,1208,1207,1,0,0,0,1208,1209,1,0,0,0,1209,1210,1,0,0,0,1210,1211, - 5,327,0,0,1211,1218,5,243,0,0,1212,1214,5,205,0,0,1213,1212,1,0, - 0,0,1213,1214,1,0,0,0,1214,1215,1,0,0,0,1215,1216,5,327,0,0,1216, - 1218,5,181,0,0,1217,1208,1,0,0,0,1217,1213,1,0,0,0,1218,1243,1,0, - 0,0,1219,1220,5,460,0,0,1220,1243,7,4,0,0,1221,1222,5,170,0,0,1222, - 1243,3,822,411,0,1223,1224,5,320,0,0,1224,1243,3,816,408,0,1225, - 1226,5,333,0,0,1226,1227,3,816,408,0,1227,1230,7,5,0,0,1228,1231, - 3,816,408,0,1229,1231,5,53,0,0,1230,1228,1,0,0,0,1230,1229,1,0,0, - 0,1231,1243,1,0,0,0,1232,1233,5,333,0,0,1233,1234,3,816,408,0,1234, - 1235,5,64,0,0,1235,1236,5,434,0,0,1236,1243,1,0,0,0,1237,1240,5, - 313,0,0,1238,1241,3,816,408,0,1239,1241,5,30,0,0,1240,1238,1,0,0, - 0,1240,1239,1,0,0,0,1241,1243,1,0,0,0,1242,1200,1,0,0,0,1242,1201, - 1,0,0,0,1242,1202,1,0,0,0,1242,1204,1,0,0,0,1242,1217,1,0,0,0,1242, - 1219,1,0,0,0,1242,1221,1,0,0,0,1242,1223,1,0,0,0,1242,1225,1,0,0, - 0,1242,1232,1,0,0,0,1242,1237,1,0,0,0,1243,25,1,0,0,0,1244,1245, - 5,46,0,0,1245,1246,5,66,0,0,1246,1248,3,812,406,0,1247,1249,5,105, - 0,0,1248,1247,1,0,0,0,1248,1249,1,0,0,0,1249,1253,1,0,0,0,1250,1252, - 3,12,6,0,1251,1250,1,0,0,0,1252,1255,1,0,0,0,1253,1251,1,0,0,0,1253, - 1254,1,0,0,0,1254,27,1,0,0,0,1255,1253,1,0,0,0,1256,1257,5,138,0, - 0,1257,1258,5,66,0,0,1258,1259,3,812,406,0,1259,1260,7,6,0,0,1260, - 1261,5,99,0,0,1261,1262,3,814,407,0,1262,29,1,0,0,0,1263,1264,5, - 46,0,0,1264,1266,5,323,0,0,1265,1267,3,288,144,0,1266,1265,1,0,0, - 0,1266,1267,1,0,0,0,1267,1274,1,0,0,0,1268,1270,3,32,16,0,1269,1268, - 1,0,0,0,1269,1270,1,0,0,0,1270,1271,1,0,0,0,1271,1272,5,106,0,0, - 1272,1275,3,812,406,0,1273,1275,3,32,16,0,1274,1269,1,0,0,0,1274, - 1273,1,0,0,0,1275,1279,1,0,0,0,1276,1278,3,34,17,0,1277,1276,1,0, - 0,0,1278,1281,1,0,0,0,1279,1277,1,0,0,0,1279,1280,1,0,0,0,1280,31, - 1,0,0,0,1281,1279,1,0,0,0,1282,1283,3,310,155,0,1283,33,1,0,0,0, - 1284,1291,3,114,57,0,1285,1291,3,352,176,0,1286,1291,3,190,95,0, - 1287,1291,3,250,125,0,1288,1291,3,328,164,0,1289,1291,3,470,235, - 0,1290,1284,1,0,0,0,1290,1285,1,0,0,0,1290,1286,1,0,0,0,1290,1287, - 1,0,0,0,1290,1288,1,0,0,0,1290,1289,1,0,0,0,1291,35,1,0,0,0,1292, - 1294,5,333,0,0,1293,1295,7,7,0,0,1294,1293,1,0,0,0,1294,1295,1,0, - 0,0,1295,1296,1,0,0,0,1296,1297,3,38,19,0,1297,37,1,0,0,0,1298,1299, - 5,356,0,0,1299,1307,3,468,234,0,1300,1301,5,332,0,0,1301,1302,5, - 154,0,0,1302,1303,5,36,0,0,1303,1304,5,356,0,0,1304,1307,3,468,234, - 0,1305,1307,3,42,21,0,1306,1298,1,0,0,0,1306,1300,1,0,0,0,1306,1305, - 1,0,0,0,1307,39,1,0,0,0,1308,1311,5,30,0,0,1309,1311,3,44,22,0,1310, - 1308,1,0,0,0,1310,1309,1,0,0,0,1311,1313,1,0,0,0,1312,1314,7,5,0, - 0,1313,1312,1,0,0,0,1313,1314,1,0,0,0,1314,1317,1,0,0,0,1315,1318, - 5,53,0,0,1316,1318,3,46,23,0,1317,1315,1,0,0,0,1317,1316,1,0,0,0, - 1317,1318,1,0,0,0,1318,41,1,0,0,0,1319,1320,5,418,0,0,1320,1321, - 5,386,0,0,1321,1348,3,56,28,0,1322,1323,5,152,0,0,1323,1348,3,806, - 403,0,1324,1325,5,323,0,0,1325,1348,3,786,393,0,1326,1329,5,267, - 0,0,1327,1330,3,806,403,0,1328,1330,5,53,0,0,1329,1327,1,0,0,0,1329, - 1328,1,0,0,0,1329,1330,1,0,0,0,1330,1348,1,0,0,0,1331,1332,5,318, - 0,0,1332,1348,3,58,29,0,1333,1334,5,332,0,0,1334,1335,5,106,0,0, - 1335,1348,3,58,29,0,1336,1337,5,383,0,0,1337,1338,5,279,0,0,1338, - 1348,3,690,345,0,1339,1340,5,356,0,0,1340,1341,5,337,0,0,1341,1348, - 3,806,403,0,1342,1343,3,44,22,0,1343,1344,5,64,0,0,1344,1345,5,434, - 0,0,1345,1348,1,0,0,0,1346,1348,3,40,20,0,1347,1319,1,0,0,0,1347, - 1322,1,0,0,0,1347,1324,1,0,0,0,1347,1326,1,0,0,0,1347,1331,1,0,0, - 0,1347,1333,1,0,0,0,1347,1336,1,0,0,0,1347,1339,1,0,0,0,1347,1342, - 1,0,0,0,1347,1346,1,0,0,0,1348,43,1,0,0,0,1349,1354,3,816,408,0, - 1350,1351,5,11,0,0,1351,1353,3,816,408,0,1352,1350,1,0,0,0,1353, - 1356,1,0,0,0,1354,1352,1,0,0,0,1354,1355,1,0,0,0,1355,45,1,0,0,0, - 1356,1354,1,0,0,0,1357,1362,3,48,24,0,1358,1359,5,6,0,0,1359,1361, - 3,48,24,0,1360,1358,1,0,0,0,1361,1364,1,0,0,0,1362,1360,1,0,0,0, - 1362,1363,1,0,0,0,1363,47,1,0,0,0,1364,1362,1,0,0,0,1365,1368,3, - 54,27,0,1366,1368,3,196,98,0,1367,1365,1,0,0,0,1367,1366,1,0,0,0, - 1368,49,1,0,0,0,1369,1370,5,300,0,0,1370,1375,7,8,0,0,1371,1372, - 5,310,0,0,1372,1375,5,300,0,0,1373,1375,5,330,0,0,1374,1369,1,0, - 0,0,1374,1371,1,0,0,0,1374,1373,1,0,0,0,1375,51,1,0,0,0,1376,1383, - 5,96,0,0,1377,1383,5,60,0,0,1378,1383,5,80,0,0,1379,1383,3,796,398, - 0,1380,1383,3,830,415,0,1381,1383,3,806,403,0,1382,1376,1,0,0,0, - 1382,1377,1,0,0,0,1382,1378,1,0,0,0,1382,1379,1,0,0,0,1382,1380, - 1,0,0,0,1382,1381,1,0,0,0,1383,53,1,0,0,0,1384,1389,5,96,0,0,1385, - 1389,5,60,0,0,1386,1389,5,80,0,0,1387,1389,3,58,29,0,1388,1384,1, - 0,0,0,1388,1385,1,0,0,0,1388,1386,1,0,0,0,1388,1387,1,0,0,0,1389, - 55,1,0,0,0,1390,1405,3,806,403,0,1391,1405,5,53,0,0,1392,1405,3, - 824,412,0,1393,1394,5,403,0,0,1394,1396,3,806,403,0,1395,1397,3, - 662,331,0,1396,1395,1,0,0,0,1396,1397,1,0,0,0,1397,1405,1,0,0,0, - 1398,1399,5,403,0,0,1399,1400,3,654,327,0,1400,1401,3,806,403,0, - 1401,1405,1,0,0,0,1402,1405,3,196,98,0,1403,1405,5,254,0,0,1404, - 1390,1,0,0,0,1404,1391,1,0,0,0,1404,1392,1,0,0,0,1404,1393,1,0,0, - 0,1404,1398,1,0,0,0,1404,1402,1,0,0,0,1404,1403,1,0,0,0,1405,57, - 1,0,0,0,1406,1409,3,820,410,0,1407,1409,3,806,403,0,1408,1406,1, - 0,0,0,1408,1407,1,0,0,0,1409,59,1,0,0,0,1410,1411,5,313,0,0,1411, - 1412,3,62,31,0,1412,61,1,0,0,0,1413,1414,5,418,0,0,1414,1423,5,386, - 0,0,1415,1416,5,356,0,0,1416,1417,5,244,0,0,1417,1423,5,251,0,0, - 1418,1419,5,332,0,0,1419,1423,5,106,0,0,1420,1423,5,30,0,0,1421, - 1423,3,44,22,0,1422,1413,1,0,0,0,1422,1415,1,0,0,0,1422,1418,1,0, - 0,0,1422,1420,1,0,0,0,1422,1421,1,0,0,0,1423,63,1,0,0,0,1424,1425, - 5,333,0,0,1425,1428,3,38,19,0,1426,1428,3,60,30,0,1427,1424,1,0, - 0,0,1427,1426,1,0,0,0,1428,65,1,0,0,0,1429,1430,5,333,0,0,1430,1433, - 3,42,21,0,1431,1433,3,60,30,0,1432,1429,1,0,0,0,1432,1431,1,0,0, - 0,1433,67,1,0,0,0,1434,1444,5,335,0,0,1435,1445,3,44,22,0,1436,1437, - 5,418,0,0,1437,1445,5,386,0,0,1438,1439,5,356,0,0,1439,1440,5,244, - 0,0,1440,1445,5,251,0,0,1441,1442,5,332,0,0,1442,1445,5,106,0,0, - 1443,1445,5,30,0,0,1444,1435,1,0,0,0,1444,1436,1,0,0,0,1444,1438, - 1,0,0,0,1444,1441,1,0,0,0,1444,1443,1,0,0,0,1445,69,1,0,0,0,1446, - 1447,5,333,0,0,1447,1450,5,165,0,0,1448,1451,5,30,0,0,1449,1451, - 3,756,378,0,1450,1448,1,0,0,0,1450,1449,1,0,0,0,1451,1452,1,0,0, - 0,1452,1453,7,9,0,0,1453,71,1,0,0,0,1454,1455,5,155,0,0,1455,73, - 1,0,0,0,1456,1457,5,187,0,0,1457,1458,7,10,0,0,1458,75,1,0,0,0,1459, - 1460,5,138,0,0,1460,1462,5,92,0,0,1461,1463,3,416,208,0,1462,1461, - 1,0,0,0,1462,1463,1,0,0,0,1463,1464,1,0,0,0,1464,1467,3,618,309, - 0,1465,1468,3,78,39,0,1466,1468,3,80,40,0,1467,1465,1,0,0,0,1467, - 1466,1,0,0,0,1468,1577,1,0,0,0,1469,1470,5,138,0,0,1470,1471,5,92, - 0,0,1471,1472,5,30,0,0,1472,1473,5,68,0,0,1473,1477,3,170,85,0,1474, - 1475,5,281,0,0,1475,1476,5,147,0,0,1476,1478,3,814,407,0,1477,1474, - 1,0,0,0,1477,1478,1,0,0,0,1478,1479,1,0,0,0,1479,1480,5,333,0,0, - 1480,1481,5,351,0,0,1481,1483,3,766,383,0,1482,1484,5,272,0,0,1483, - 1482,1,0,0,0,1483,1484,1,0,0,0,1484,1577,1,0,0,0,1485,1486,5,138, - 0,0,1486,1488,5,92,0,0,1487,1489,3,416,208,0,1488,1487,1,0,0,0,1488, - 1489,1,0,0,0,1489,1490,1,0,0,0,1490,1491,3,770,385,0,1491,1492,3, - 82,41,0,1492,1493,3,98,49,0,1493,1577,1,0,0,0,1494,1495,5,138,0, - 0,1495,1497,5,92,0,0,1496,1498,3,416,208,0,1497,1496,1,0,0,0,1497, - 1498,1,0,0,0,1498,1499,1,0,0,0,1499,1500,3,770,385,0,1500,1501,5, - 436,0,0,1501,1502,5,285,0,0,1502,1504,3,776,388,0,1503,1505,7,11, - 0,0,1504,1503,1,0,0,0,1504,1505,1,0,0,0,1505,1577,1,0,0,0,1506,1507, - 5,138,0,0,1507,1509,5,226,0,0,1508,1510,3,416,208,0,1509,1508,1, - 0,0,0,1509,1510,1,0,0,0,1510,1511,1,0,0,0,1511,1514,3,776,388,0, - 1512,1515,3,78,39,0,1513,1515,3,82,41,0,1514,1512,1,0,0,0,1514,1513, - 1,0,0,0,1515,1577,1,0,0,0,1516,1517,5,138,0,0,1517,1518,5,226,0, - 0,1518,1519,5,30,0,0,1519,1520,5,68,0,0,1520,1524,3,170,85,0,1521, - 1522,5,281,0,0,1522,1523,5,147,0,0,1523,1525,3,814,407,0,1524,1521, - 1,0,0,0,1524,1525,1,0,0,0,1525,1526,1,0,0,0,1526,1527,5,333,0,0, - 1527,1529,3,170,85,0,1528,1530,5,272,0,0,1529,1528,1,0,0,0,1529, - 1530,1,0,0,0,1530,1577,1,0,0,0,1531,1532,5,138,0,0,1532,1534,5,328, - 0,0,1533,1535,3,416,208,0,1534,1533,1,0,0,0,1534,1535,1,0,0,0,1535, - 1536,1,0,0,0,1536,1537,3,776,388,0,1537,1538,3,78,39,0,1538,1577, - 1,0,0,0,1539,1541,5,138,0,0,1540,1542,5,259,0,0,1541,1540,1,0,0, - 0,1541,1542,1,0,0,0,1542,1543,1,0,0,0,1543,1545,5,376,0,0,1544,1546, - 3,416,208,0,1545,1544,1,0,0,0,1545,1546,1,0,0,0,1546,1547,1,0,0, - 0,1547,1548,3,774,387,0,1548,1549,3,78,39,0,1549,1577,1,0,0,0,1550, - 1551,5,138,0,0,1551,1552,5,259,0,0,1552,1553,5,376,0,0,1553,1554, - 5,30,0,0,1554,1555,5,68,0,0,1555,1559,3,170,85,0,1556,1557,5,281, - 0,0,1557,1558,5,147,0,0,1558,1560,3,814,407,0,1559,1556,1,0,0,0, - 1559,1560,1,0,0,0,1560,1561,1,0,0,0,1561,1562,5,333,0,0,1562,1563, - 5,351,0,0,1563,1565,3,766,383,0,1564,1566,5,272,0,0,1565,1564,1, - 0,0,0,1565,1566,1,0,0,0,1566,1577,1,0,0,0,1567,1568,5,138,0,0,1568, - 1569,5,63,0,0,1569,1571,5,92,0,0,1570,1572,3,416,208,0,1571,1570, - 1,0,0,0,1571,1572,1,0,0,0,1572,1573,1,0,0,0,1573,1574,3,618,309, - 0,1574,1575,3,78,39,0,1575,1577,1,0,0,0,1576,1459,1,0,0,0,1576,1469, - 1,0,0,0,1576,1485,1,0,0,0,1576,1494,1,0,0,0,1576,1506,1,0,0,0,1576, - 1516,1,0,0,0,1576,1531,1,0,0,0,1576,1539,1,0,0,0,1576,1550,1,0,0, - 0,1576,1567,1,0,0,0,1577,77,1,0,0,0,1578,1583,3,84,42,0,1579,1580, - 5,6,0,0,1580,1582,3,84,42,0,1581,1579,1,0,0,0,1582,1585,1,0,0,0, - 1583,1581,1,0,0,0,1583,1584,1,0,0,0,1584,79,1,0,0,0,1585,1583,1, - 0,0,0,1586,1587,3,82,41,0,1587,1588,3,98,49,0,1588,1593,1,0,0,0, - 1589,1590,5,436,0,0,1590,1591,5,285,0,0,1591,1593,3,776,388,0,1592, - 1586,1,0,0,0,1592,1589,1,0,0,0,1593,81,1,0,0,0,1594,1595,5,435,0, - 0,1595,1596,5,285,0,0,1596,1597,3,776,388,0,1597,83,1,0,0,0,1598, - 1601,5,133,0,0,1599,1600,5,45,0,0,1600,1602,3,816,408,0,1601,1599, - 1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0,0,1603,1832,3,136,68,0, - 1604,1605,5,138,0,0,1605,1606,5,45,0,0,1606,1610,3,816,408,0,1607, - 1609,3,266,133,0,1608,1607,1,0,0,0,1609,1612,1,0,0,0,1610,1608,1, - 0,0,0,1610,1611,1,0,0,0,1611,1832,1,0,0,0,1612,1610,1,0,0,0,1613, - 1614,5,372,0,0,1614,1615,5,45,0,0,1615,1832,3,816,408,0,1616,1617, - 5,191,0,0,1617,1619,5,45,0,0,1618,1620,3,416,208,0,1619,1618,1,0, - 0,0,1619,1620,1,0,0,0,1620,1621,1,0,0,0,1621,1623,3,816,408,0,1622, - 1624,3,88,44,0,1623,1622,1,0,0,0,1623,1624,1,0,0,0,1624,1832,1,0, - 0,0,1625,1626,5,333,0,0,1626,1627,5,379,0,0,1627,1832,7,12,0,0,1628, - 1629,5,158,0,0,1629,1630,5,80,0,0,1630,1832,3,816,408,0,1631,1632, - 5,333,0,0,1632,1832,7,13,0,0,1633,1635,5,193,0,0,1634,1636,7,14, - 0,0,1635,1634,1,0,0,0,1635,1636,1,0,0,0,1636,1637,1,0,0,0,1637,1832, - 5,357,0,0,1638,1639,5,186,0,0,1639,1643,5,357,0,0,1640,1644,5,30, - 0,0,1641,1644,5,99,0,0,1642,1644,3,816,408,0,1643,1640,1,0,0,0,1643, - 1641,1,0,0,0,1643,1642,1,0,0,0,1644,1832,1,0,0,0,1645,1646,5,193, - 0,0,1646,1647,7,14,0,0,1647,1648,5,321,0,0,1648,1832,3,816,408,0, - 1649,1650,5,186,0,0,1650,1651,5,321,0,0,1651,1832,3,816,408,0,1652, - 1654,5,269,0,0,1653,1652,1,0,0,0,1653,1654,1,0,0,0,1654,1655,1,0, - 0,0,1655,1656,5,228,0,0,1656,1832,3,776,388,0,1657,1658,5,275,0, - 0,1658,1832,3,310,155,0,1659,1660,5,77,0,0,1660,1832,5,275,0,0,1661, - 1662,5,282,0,0,1662,1663,5,94,0,0,1663,1832,3,812,406,0,1664,1665, - 5,333,0,0,1665,1666,5,351,0,0,1666,1832,3,766,383,0,1667,1668,5, - 312,0,0,1668,1673,5,219,0,0,1669,1674,5,270,0,0,1670,1674,5,113, - 0,0,1671,1674,5,53,0,0,1672,1674,3,174,87,0,1673,1669,1,0,0,0,1673, - 1670,1,0,0,0,1673,1671,1,0,0,0,1673,1672,1,0,0,0,1674,1832,1,0,0, - 0,1675,1682,5,193,0,0,1676,1682,5,186,0,0,1677,1679,5,269,0,0,1678, - 1677,1,0,0,0,1678,1679,1,0,0,0,1679,1680,1,0,0,0,1680,1682,5,209, - 0,0,1681,1675,1,0,0,0,1681,1676,1,0,0,0,1681,1678,1,0,0,0,1682,1683, - 1,0,0,0,1683,1684,5,414,0,0,1684,1685,5,251,0,0,1685,1832,5,327, - 0,0,1686,1688,5,191,0,0,1687,1689,5,44,0,0,1688,1687,1,0,0,0,1688, - 1689,1,0,0,0,1689,1691,1,0,0,0,1690,1692,3,416,208,0,1691,1690,1, - 0,0,0,1691,1692,1,0,0,0,1692,1693,1,0,0,0,1693,1695,3,796,398,0, - 1694,1696,3,88,44,0,1695,1694,1,0,0,0,1695,1696,1,0,0,0,1696,1832, - 1,0,0,0,1697,1699,5,133,0,0,1698,1700,5,44,0,0,1699,1698,1,0,0,0, - 1699,1700,1,0,0,0,1700,1702,1,0,0,0,1701,1703,3,288,144,0,1702,1701, - 1,0,0,0,1702,1703,1,0,0,0,1703,1704,1,0,0,0,1704,1832,3,126,63,0, - 1705,1707,5,138,0,0,1706,1708,5,44,0,0,1707,1706,1,0,0,0,1707,1708, - 1,0,0,0,1708,1709,1,0,0,0,1709,1712,3,796,398,0,1710,1713,3,86,43, - 0,1711,1713,3,216,108,0,1712,1710,1,0,0,0,1712,1711,1,0,0,0,1713, - 1832,1,0,0,0,1714,1716,5,138,0,0,1715,1717,5,44,0,0,1716,1715,1, - 0,0,0,1716,1717,1,0,0,0,1717,1718,1,0,0,0,1718,1719,3,796,398,0, - 1719,1720,7,15,0,0,1720,1721,5,77,0,0,1721,1722,5,78,0,0,1722,1832, - 1,0,0,0,1723,1725,5,138,0,0,1724,1726,5,44,0,0,1725,1724,1,0,0,0, - 1725,1726,1,0,0,0,1726,1727,1,0,0,0,1727,1728,3,796,398,0,1728,1729, - 5,191,0,0,1729,1731,5,437,0,0,1730,1732,3,416,208,0,1731,1730,1, - 0,0,0,1731,1732,1,0,0,0,1732,1832,1,0,0,0,1733,1735,5,138,0,0,1734, - 1736,5,44,0,0,1735,1734,1,0,0,0,1735,1736,1,0,0,0,1736,1737,1,0, - 0,0,1737,1738,3,796,398,0,1738,1739,5,333,0,0,1739,1740,5,342,0, - 0,1740,1741,3,810,405,0,1741,1832,1,0,0,0,1742,1744,5,138,0,0,1743, - 1745,5,44,0,0,1744,1743,1,0,0,0,1744,1745,1,0,0,0,1745,1746,1,0, - 0,0,1746,1748,3,796,398,0,1747,1742,1,0,0,0,1747,1748,1,0,0,0,1748, - 1749,1,0,0,0,1749,1750,7,16,0,0,1750,1832,3,92,46,0,1751,1753,5, - 138,0,0,1752,1754,5,44,0,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754, - 1755,1,0,0,0,1755,1756,3,796,398,0,1756,1757,5,333,0,0,1757,1758, - 5,345,0,0,1758,1759,3,816,408,0,1759,1832,1,0,0,0,1760,1762,5,138, - 0,0,1761,1763,5,44,0,0,1762,1761,1,0,0,0,1762,1763,1,0,0,0,1763, - 1764,1,0,0,0,1764,1765,3,796,398,0,1765,1766,5,133,0,0,1766,1767, - 5,438,0,0,1767,1768,3,132,66,0,1768,1769,5,36,0,0,1769,1778,5,219, - 0,0,1770,1772,5,2,0,0,1771,1773,3,194,97,0,1772,1771,1,0,0,0,1773, - 1774,1,0,0,0,1774,1772,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0,0, - 0,1776,1777,5,3,0,0,1777,1779,1,0,0,0,1778,1770,1,0,0,0,1778,1779, - 1,0,0,0,1779,1832,1,0,0,0,1780,1782,5,138,0,0,1781,1783,5,44,0,0, - 1782,1781,1,0,0,0,1782,1783,1,0,0,0,1783,1784,1,0,0,0,1784,1798, - 3,796,398,0,1785,1790,5,314,0,0,1786,1788,5,105,0,0,1787,1786,1, - 0,0,0,1787,1788,1,0,0,0,1788,1789,1,0,0,0,1789,1791,3,196,98,0,1790, - 1787,1,0,0,0,1790,1791,1,0,0,0,1791,1799,1,0,0,0,1792,1796,5,333, - 0,0,1793,1797,3,194,97,0,1794,1795,5,438,0,0,1795,1797,3,132,66, - 0,1796,1793,1,0,0,0,1796,1794,1,0,0,0,1797,1799,1,0,0,0,1798,1785, - 1,0,0,0,1798,1792,1,0,0,0,1799,1800,1,0,0,0,1800,1798,1,0,0,0,1800, - 1801,1,0,0,0,1801,1832,1,0,0,0,1802,1804,5,138,0,0,1803,1805,5,44, - 0,0,1804,1803,1,0,0,0,1804,1805,1,0,0,0,1805,1806,1,0,0,0,1806,1807, + 1,422,1,422,1,422,1,422,1,422,3,422,7893,8,422,1,423,1,423,1,423, + 1,423,1,424,1,424,1,424,1,424,3,424,7903,8,424,1,424,1,424,3,424, + 7907,8,424,1,424,1,424,1,424,1,424,3,424,7913,8,424,1,424,1,424, + 1,424,3,424,7918,8,424,1,425,1,425,1,425,1,425,1,425,1,426,1,426, + 3,426,7927,8,426,1,426,1,426,1,426,1,426,5,426,7933,8,426,10,426, + 12,426,7936,9,426,1,426,1,426,1,427,1,427,1,427,1,427,1,428,1,428, + 3,428,7946,8,428,1,428,1,428,1,428,1,428,5,428,7952,8,428,10,428, + 12,428,7955,9,428,1,429,1,429,1,429,1,429,5,429,7961,8,429,10,429, + 12,429,7964,9,429,1,429,1,429,1,429,1,429,5,429,7970,8,429,10,429, + 12,429,7973,9,429,5,429,7975,8,429,10,429,12,429,7978,9,429,1,429, + 3,429,7981,8,429,1,429,1,429,1,429,1,429,1,430,1,430,5,430,7989, + 8,430,10,430,12,430,7992,9,430,1,431,1,431,3,431,7996,8,431,1,431, + 1,431,1,431,1,431,5,431,8002,8,431,10,431,12,431,8005,9,431,4,431, + 8007,8,431,11,431,12,431,8008,1,431,3,431,8012,8,431,1,431,1,431, + 1,431,1,431,1,432,3,432,8019,8,432,1,432,1,432,1,432,1,432,3,432, + 8025,8,432,1,432,1,432,1,433,1,433,1,433,1,433,3,433,8033,8,433, + 1,433,1,433,1,433,1,433,1,433,1,433,3,433,8041,8,433,1,433,3,433, + 8044,8,433,1,433,1,433,1,433,1,433,1,433,3,433,8051,8,433,3,433, + 8053,8,433,1,434,3,434,8056,8,434,1,434,1,434,1,434,1,434,3,434, + 8062,8,434,1,434,1,434,1,434,1,434,1,434,1,435,1,435,3,435,8071, + 8,435,1,435,1,435,3,435,8075,8,435,1,435,1,435,1,436,1,436,1,436, + 1,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436,8089,8,436,1,436, + 3,436,8092,8,436,3,436,8094,8,436,1,436,1,436,1,437,1,437,3,437, + 8100,8,437,1,437,1,437,1,437,1,437,1,437,1,437,4,437,8108,8,437, + 11,437,12,437,8109,3,437,8112,8,437,3,437,8114,8,437,1,437,1,437, + 1,437,1,437,5,437,8120,8,437,10,437,12,437,8123,9,437,3,437,8125, + 8,437,1,437,3,437,8128,8,437,1,438,1,438,1,438,1,438,1,439,1,439, + 1,439,1,439,3,439,8138,8,439,1,439,1,439,1,440,1,440,5,440,8144, + 8,440,10,440,12,440,8147,9,440,1,440,1,440,1,440,3,440,8152,8,440, + 1,440,1,440,1,441,1,441,3,441,8158,8,441,1,441,1,441,1,442,1,442, + 1,442,3,442,8165,8,442,1,442,1,442,3,442,8169,8,442,1,442,1,442, + 3,442,8173,8,442,1,442,3,442,8176,8,442,1,442,3,442,8179,8,442,1, + 442,1,442,1,443,1,443,3,443,8185,8,443,1,443,1,443,1,444,1,444,1, + 444,3,444,8192,8,444,1,444,3,444,8195,8,444,1,444,1,444,1,444,1, + 444,1,444,1,444,3,444,8203,8,444,3,444,8205,8,444,1,444,1,444,1, + 444,1,444,1,444,5,444,8212,8,444,10,444,12,444,8215,9,444,1,444, + 1,444,3,444,8219,8,444,3,444,8221,8,444,1,444,1,444,1,445,1,445, + 1,445,3,445,8228,8,445,1,445,1,445,1,446,1,446,3,446,8234,8,446, + 1,446,3,446,8237,8,446,1,446,1,446,1,446,1,446,1,446,1,447,1,447, + 1,447,1,447,1,447,3,447,8249,8,447,1,447,1,447,1,447,1,447,1,447, + 3,447,8256,8,447,3,447,8258,8,447,1,448,1,448,3,448,8262,8,448,1, + 448,1,448,1,448,1,449,3,449,8268,8,449,1,449,1,449,1,449,3,449,8273, + 8,449,1,449,1,449,3,449,8277,8,449,1,449,3,449,8280,8,449,1,449, + 3,449,8283,8,449,1,449,1,449,1,449,1,449,1,449,4,449,8290,8,449, + 11,449,12,449,8291,1,449,3,449,8295,8,449,1,450,3,450,8298,8,450, + 1,450,1,450,3,450,8302,8,450,1,450,1,450,3,450,8306,8,450,3,450, + 8308,8,450,1,450,3,450,8311,8,450,1,450,3,450,8314,8,450,1,451,1, + 451,1,451,1,451,3,451,8320,8,451,1,451,1,451,1,451,1,451,1,451,3, + 451,8327,8,451,1,451,1,451,1,451,1,451,1,451,3,451,8334,8,451,1, + 451,1,451,1,451,1,451,3,451,8340,8,451,3,451,8342,8,451,1,452,1, + 452,3,452,8346,8,452,1,452,1,452,1,452,3,452,8351,8,452,1,452,1, + 452,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453, + 1,453,1,453,5,453,8367,8,453,10,453,12,453,8370,9,453,1,453,1,453, + 4,453,8374,8,453,11,453,12,453,8375,1,454,1,454,1,454,1,454,1,454, + 5,454,8383,8,454,10,454,12,454,8386,9,454,1,454,1,454,1,454,1,454, + 3,454,8392,8,454,1,455,1,455,3,455,8396,8,455,1,456,1,456,1,456, + 1,456,1,457,1,457,1,457,1,458,1,458,1,458,3,458,8408,8,458,1,458, + 3,458,8411,8,458,1,458,1,458,1,459,1,459,1,459,1,459,1,459,1,459, + 1,459,1,459,1,459,3,459,8424,8,459,1,459,3,459,8427,8,459,1,460, + 1,460,3,460,8431,8,460,1,461,1,461,1,461,1,461,1,461,5,461,8438, + 8,461,10,461,12,461,8441,9,461,1,461,1,461,5,461,8445,8,461,10,461, + 12,461,8448,9,461,4,461,8450,8,461,11,461,12,461,8451,1,462,1,462, + 1,462,3,462,8457,8,462,1,463,1,463,3,463,8461,8,463,1,464,3,464, + 8464,8,464,1,464,3,464,8467,8,464,1,464,3,464,8470,8,464,1,464,3, + 464,8473,8,464,1,464,3,464,8476,8,464,1,464,3,464,8479,8,464,1,464, + 3,464,8482,8,464,1,464,0,3,670,674,676,465,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,120,122,124,126,128,130,132,134, + 136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166, + 168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198, + 200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230, + 232,234,236,238,240,242,244,246,248,250,252,254,256,258,260,262, + 264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294, + 296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326, + 328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358, + 360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390, + 392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422, + 424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454, + 456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486, + 488,490,492,494,496,498,500,502,504,506,508,510,512,514,516,518, + 520,522,524,526,528,530,532,534,536,538,540,542,544,546,548,550, + 552,554,556,558,560,562,564,566,568,570,572,574,576,578,580,582, + 584,586,588,590,592,594,596,598,600,602,604,606,608,610,612,614, + 616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646, + 648,650,652,654,656,658,660,662,664,666,668,670,672,674,676,678, + 680,682,684,686,688,690,692,694,696,698,700,702,704,706,708,710, + 712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742, + 744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774, + 776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806, + 808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838, + 840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870, + 872,874,876,878,880,882,884,886,888,890,892,894,896,898,900,902, + 904,906,908,910,912,914,916,918,920,922,924,926,928,0,119,2,0,195, + 195,364,364,2,0,66,66,318,318,2,0,99,99,318,318,2,0,134,134,318, + 318,1,0,529,531,2,0,10,10,94,94,2,0,133,133,191,191,2,0,254,254, + 332,332,2,0,162,162,363,363,2,0,180,180,221,221,5,0,30,30,288,288, + 329,329,352,352,354,354,2,0,109,109,532,532,2,0,158,158,277,277, + 2,0,367,367,439,439,2,0,139,139,312,312,2,0,191,191,333,333,2,0, + 313,313,333,333,2,0,150,150,315,315,2,0,64,64,94,94,4,0,78,78,183, + 183,197,197,298,298,1,0,549,551,2,0,213,213,254,254,2,0,352,352, + 354,354,2,0,200,200,224,224,9,0,30,30,160,160,165,165,179,179,219, + 219,227,227,342,342,345,345,438,438,3,0,113,113,284,284,336,336, + 2,0,53,53,78,78,2,0,105,105,379,379,2,0,260,260,262,262,3,0,173, + 173,260,260,262,262,1,0,12,13,2,0,64,64,375,375,2,0,156,156,206, + 206,2,0,189,189,360,360,2,0,215,215,373,373,3,0,133,133,191,191, + 333,333,5,0,30,30,88,88,182,182,241,241,369,369,2,0,9,9,94,94,2, + 0,92,92,226,226,1,0,448,449,2,0,92,92,414,414,2,0,341,341,414,414, + 4,0,163,163,185,185,283,283,353,353,2,0,135,135,145,145,2,0,211, + 211,278,278,3,0,321,321,357,357,445,445,3,0,66,66,99,99,318,318, + 5,0,108,108,168,168,226,226,328,328,342,342,2,0,167,167,314,314, + 2,0,61,61,265,265,4,0,207,207,249,249,268,268,293,293,2,0,130,130, + 307,307,2,0,64,64,68,68,10,0,46,46,88,88,182,182,202,202,241,241, + 352,352,354,354,357,358,369,369,521,523,5,0,212,212,329,329,350, + 350,455,455,457,457,5,0,212,212,329,329,350,350,361,361,455,456, + 2,0,37,37,55,55,2,0,207,207,249,249,2,0,10,10,53,53,2,0,181,181, + 243,243,2,0,170,170,320,320,2,0,141,141,223,223,5,0,108,108,168, + 168,189,189,342,342,360,360,2,0,226,226,328,328,2,0,163,163,185, + 185,2,0,186,186,193,193,4,0,88,88,182,182,241,241,369,369,2,0,137, + 137,242,242,2,0,161,161,319,319,4,0,129,129,161,161,319,319,454, + 454,2,0,356,356,380,380,2,0,81,81,382,382,2,0,151,151,254,254,2, + 0,133,133,138,138,1,0,31,32,2,0,128,128,547,547,2,0,60,60,96,96, + 2,0,99,99,349,349,2,0,131,131,414,414,2,0,201,201,334,334,3,0,59, + 59,70,70,97,97,2,0,30,30,56,56,1,0,527,528,2,0,207,207,268,268,2, + 0,320,320,414,414,2,0,574,574,576,576,1,0,468,469,4,0,113,113,115, + 115,119,119,126,126,2,0,360,360,477,477,2,0,394,395,409,409,2,0, + 391,392,406,406,1,0,391,392,1,0,418,419,5,0,10,10,16,17,21,21,23, + 23,25,25,3,0,9,9,14,14,27,27,2,0,98,98,396,396,2,0,50,51,75,76,2, + 0,41,41,420,420,3,0,39,39,73,73,95,95,4,0,393,393,399,399,404,404, + 425,425,2,0,292,292,347,347,2,0,166,166,188,188,2,0,304,304,450, + 450,3,0,299,299,320,320,481,481,2,0,208,208,289,289,3,0,30,30,34, + 34,90,90,6,0,9,10,12,17,21,21,23,23,25,25,27,27,2,0,114,114,120, + 120,2,0,20,20,22,22,1,0,483,486,17,0,53,53,116,116,123,124,129,228, + 238,386,433,452,455,469,471,471,473,473,475,475,477,488,490,502, + 504,504,506,518,520,520,524,524,547,548,3,0,106,123,125,128,472, + 472,4,0,30,52,54,70,72,105,454,454,2,0,62,62,116,116,2,0,10,10,20, + 20,2,0,434,434,501,501,2,0,167,167,507,507,1,0,512,517,2,0,144,144, + 210,210,9922,0,933,1,0,0,0,2,938,1,0,0,0,4,1062,1,0,0,0,6,1064,1, + 0,0,0,8,1067,1,0,0,0,10,1117,1,0,0,0,12,1127,1,0,0,0,14,1129,1,0, + 0,0,16,1141,1,0,0,0,18,1153,1,0,0,0,20,1164,1,0,0,0,22,1198,1,0, + 0,0,24,1242,1,0,0,0,26,1244,1,0,0,0,28,1256,1,0,0,0,30,1263,1,0, + 0,0,32,1282,1,0,0,0,34,1290,1,0,0,0,36,1292,1,0,0,0,38,1306,1,0, + 0,0,40,1310,1,0,0,0,42,1347,1,0,0,0,44,1349,1,0,0,0,46,1357,1,0, + 0,0,48,1367,1,0,0,0,50,1374,1,0,0,0,52,1382,1,0,0,0,54,1388,1,0, + 0,0,56,1404,1,0,0,0,58,1408,1,0,0,0,60,1410,1,0,0,0,62,1422,1,0, + 0,0,64,1427,1,0,0,0,66,1432,1,0,0,0,68,1434,1,0,0,0,70,1446,1,0, + 0,0,72,1454,1,0,0,0,74,1456,1,0,0,0,76,1576,1,0,0,0,78,1578,1,0, + 0,0,80,1592,1,0,0,0,82,1594,1,0,0,0,84,1831,1,0,0,0,86,1838,1,0, + 0,0,88,1840,1,0,0,0,90,1842,1,0,0,0,92,1845,1,0,0,0,94,1856,1,0, + 0,0,96,1859,1,0,0,0,98,1889,1,0,0,0,100,1891,1,0,0,0,102,1932,1, + 0,0,0,104,1934,1,0,0,0,106,1988,1,0,0,0,108,2034,1,0,0,0,110,2055, + 1,0,0,0,112,2057,1,0,0,0,114,2074,1,0,0,0,116,2155,1,0,0,0,118,2157, + 1,0,0,0,120,2168,1,0,0,0,122,2191,1,0,0,0,124,2209,1,0,0,0,126,2211, + 1,0,0,0,128,2246,1,0,0,0,130,2339,1,0,0,0,132,2344,1,0,0,0,134,2346, + 1,0,0,0,136,2444,1,0,0,0,138,2446,1,0,0,0,140,2450,1,0,0,0,142,2461, + 1,0,0,0,144,2469,1,0,0,0,146,2472,1,0,0,0,148,2475,1,0,0,0,150,2493, + 1,0,0,0,152,2495,1,0,0,0,154,2499,1,0,0,0,156,2512,1,0,0,0,158,2514, + 1,0,0,0,160,2519,1,0,0,0,162,2539,1,0,0,0,164,2547,1,0,0,0,166,2554, + 1,0,0,0,168,2556,1,0,0,0,170,2565,1,0,0,0,172,2568,1,0,0,0,174,2572, + 1,0,0,0,176,2576,1,0,0,0,178,2601,1,0,0,0,180,2611,1,0,0,0,182,2625, + 1,0,0,0,184,2641,1,0,0,0,186,2647,1,0,0,0,188,2674,1,0,0,0,190,2684, + 1,0,0,0,192,2700,1,0,0,0,194,2744,1,0,0,0,196,2751,1,0,0,0,198,2753, + 1,0,0,0,200,2779,1,0,0,0,202,2790,1,0,0,0,204,2809,1,0,0,0,206,2820, + 1,0,0,0,208,2858,1,0,0,0,210,2879,1,0,0,0,212,2881,1,0,0,0,214,2901, + 1,0,0,0,216,2913,1,0,0,0,218,2925,1,0,0,0,220,2928,1,0,0,0,222,2931, + 1,0,0,0,224,2951,1,0,0,0,226,2956,1,0,0,0,228,3005,1,0,0,0,230,3007, + 1,0,0,0,232,3030,1,0,0,0,234,3046,1,0,0,0,236,3058,1,0,0,0,238,3085, + 1,0,0,0,240,3100,1,0,0,0,242,3163,1,0,0,0,244,3165,1,0,0,0,246,3170, + 1,0,0,0,248,3176,1,0,0,0,250,3263,1,0,0,0,252,3269,1,0,0,0,254,3271, + 1,0,0,0,256,3287,1,0,0,0,258,3289,1,0,0,0,260,3298,1,0,0,0,262,3302, + 1,0,0,0,264,3315,1,0,0,0,266,3327,1,0,0,0,268,3329,1,0,0,0,270,3351, + 1,0,0,0,272,3363,1,0,0,0,274,3374,1,0,0,0,276,3465,1,0,0,0,278,3467, + 1,0,0,0,280,3478,1,0,0,0,282,3489,1,0,0,0,284,3491,1,0,0,0,286,3517, + 1,0,0,0,288,3519,1,0,0,0,290,3523,1,0,0,0,292,3573,1,0,0,0,294,3575, + 1,0,0,0,296,3581,1,0,0,0,298,3606,1,0,0,0,300,3610,1,0,0,0,302,3824, + 1,0,0,0,304,3842,1,0,0,0,306,3868,1,0,0,0,308,3870,1,0,0,0,310,3878, + 1,0,0,0,312,3884,1,0,0,0,314,3888,1,0,0,0,316,3908,1,0,0,0,318,3914, + 1,0,0,0,320,3981,1,0,0,0,322,4012,1,0,0,0,324,4058,1,0,0,0,326,4060, + 1,0,0,0,328,4062,1,0,0,0,330,4073,1,0,0,0,332,4110,1,0,0,0,334,4112, + 1,0,0,0,336,4118,1,0,0,0,338,4168,1,0,0,0,340,4171,1,0,0,0,342,4185, + 1,0,0,0,344,4206,1,0,0,0,346,4230,1,0,0,0,348,4271,1,0,0,0,350,4273, + 1,0,0,0,352,4275,1,0,0,0,354,4315,1,0,0,0,356,4332,1,0,0,0,358,4352, + 1,0,0,0,360,4405,1,0,0,0,362,4408,1,0,0,0,364,4414,1,0,0,0,366,4422, + 1,0,0,0,368,4435,1,0,0,0,370,4437,1,0,0,0,372,4450,1,0,0,0,374,4452, + 1,0,0,0,376,4465,1,0,0,0,378,4475,1,0,0,0,380,4486,1,0,0,0,382,4497, + 1,0,0,0,384,4499,1,0,0,0,386,4504,1,0,0,0,388,4518,1,0,0,0,390,4550, + 1,0,0,0,392,4587,1,0,0,0,394,4589,1,0,0,0,396,4592,1,0,0,0,398,4595, + 1,0,0,0,400,4612,1,0,0,0,402,4633,1,0,0,0,404,4649,1,0,0,0,406,4665, + 1,0,0,0,408,4687,1,0,0,0,410,4692,1,0,0,0,412,4695,1,0,0,0,414,4703, + 1,0,0,0,416,4728,1,0,0,0,418,4731,1,0,0,0,420,4759,1,0,0,0,422,4764, + 1,0,0,0,424,4804,1,0,0,0,426,5016,1,0,0,0,428,5018,1,0,0,0,430,5106, + 1,0,0,0,432,5108,1,0,0,0,434,5114,1,0,0,0,436,5125,1,0,0,0,438,5135, + 1,0,0,0,440,5215,1,0,0,0,442,5217,1,0,0,0,444,5231,1,0,0,0,446,5253, + 1,0,0,0,448,5326,1,0,0,0,450,5328,1,0,0,0,452,5369,1,0,0,0,454,5371, + 1,0,0,0,456,5376,1,0,0,0,458,5379,1,0,0,0,460,5382,1,0,0,0,462,5432, + 1,0,0,0,464,5434,1,0,0,0,466,5445,1,0,0,0,468,5447,1,0,0,0,470,5457, + 1,0,0,0,472,5492,1,0,0,0,474,5495,1,0,0,0,476,5516,1,0,0,0,478,5526, + 1,0,0,0,480,5546,1,0,0,0,482,5552,1,0,0,0,484,5558,1,0,0,0,486,5563, + 1,0,0,0,488,5576,1,0,0,0,490,5603,1,0,0,0,492,5651,1,0,0,0,494,5653, + 1,0,0,0,496,5691,1,0,0,0,498,5693,1,0,0,0,500,5714,1,0,0,0,502,5734, + 1,0,0,0,504,5738,1,0,0,0,506,5753,1,0,0,0,508,5755,1,0,0,0,510,5759, + 1,0,0,0,512,5763,1,0,0,0,514,5771,1,0,0,0,516,5795,1,0,0,0,518,5797, + 1,0,0,0,520,5808,1,0,0,0,522,5816,1,0,0,0,524,5832,1,0,0,0,526,5857, + 1,0,0,0,528,5859,1,0,0,0,530,5863,1,0,0,0,532,5872,1,0,0,0,534,5912, + 1,0,0,0,536,5923,1,0,0,0,538,5931,1,0,0,0,540,5934,1,0,0,0,542,5938, + 1,0,0,0,544,5953,1,0,0,0,546,5978,1,0,0,0,548,5993,1,0,0,0,550,6019, + 1,0,0,0,552,6021,1,0,0,0,554,6044,1,0,0,0,556,6046,1,0,0,0,558,6054, + 1,0,0,0,560,6072,1,0,0,0,562,6096,1,0,0,0,564,6108,1,0,0,0,566,6112, + 1,0,0,0,568,6124,1,0,0,0,570,6144,1,0,0,0,572,6152,1,0,0,0,574,6166, + 1,0,0,0,576,6189,1,0,0,0,578,6191,1,0,0,0,580,6196,1,0,0,0,582,6206, + 1,0,0,0,584,6227,1,0,0,0,586,6229,1,0,0,0,588,6238,1,0,0,0,590,6249, + 1,0,0,0,592,6259,1,0,0,0,594,6261,1,0,0,0,596,6268,1,0,0,0,598,6299, + 1,0,0,0,600,6329,1,0,0,0,602,6331,1,0,0,0,604,6340,1,0,0,0,606,6343, + 1,0,0,0,608,6414,1,0,0,0,610,6438,1,0,0,0,612,6459,1,0,0,0,614,6461, + 1,0,0,0,616,6469,1,0,0,0,618,6486,1,0,0,0,620,6512,1,0,0,0,622,6514, + 1,0,0,0,624,6522,1,0,0,0,626,6529,1,0,0,0,628,6553,1,0,0,0,630,6559, + 1,0,0,0,632,6567,1,0,0,0,634,6570,1,0,0,0,636,6577,1,0,0,0,638,6585, + 1,0,0,0,640,6590,1,0,0,0,642,6620,1,0,0,0,644,6647,1,0,0,0,646,6675, + 1,0,0,0,648,6692,1,0,0,0,650,6698,1,0,0,0,652,6716,1,0,0,0,654,6718, + 1,0,0,0,656,6722,1,0,0,0,658,6739,1,0,0,0,660,6744,1,0,0,0,662,6782, + 1,0,0,0,664,6784,1,0,0,0,666,6788,1,0,0,0,668,6790,1,0,0,0,670,6799, + 1,0,0,0,672,6883,1,0,0,0,674,6889,1,0,0,0,676,6998,1,0,0,0,678,7030, + 1,0,0,0,680,7081,1,0,0,0,682,7085,1,0,0,0,684,7261,1,0,0,0,686,7263, + 1,0,0,0,688,7271,1,0,0,0,690,7276,1,0,0,0,692,7278,1,0,0,0,694,7286, + 1,0,0,0,696,7289,1,0,0,0,698,7298,1,0,0,0,700,7301,1,0,0,0,702,7305, + 1,0,0,0,704,7310,1,0,0,0,706,7327,1,0,0,0,708,7354,1,0,0,0,710,7363, + 1,0,0,0,712,7365,1,0,0,0,714,7372,1,0,0,0,716,7376,1,0,0,0,718,7378, + 1,0,0,0,720,7386,1,0,0,0,722,7394,1,0,0,0,724,7401,1,0,0,0,726,7403, + 1,0,0,0,728,7416,1,0,0,0,730,7420,1,0,0,0,732,7422,1,0,0,0,734,7437, + 1,0,0,0,736,7439,1,0,0,0,738,7461,1,0,0,0,740,7463,1,0,0,0,742,7486, + 1,0,0,0,744,7488,1,0,0,0,746,7510,1,0,0,0,748,7513,1,0,0,0,750,7520, + 1,0,0,0,752,7523,1,0,0,0,754,7539,1,0,0,0,756,7541,1,0,0,0,758,7549, + 1,0,0,0,760,7557,1,0,0,0,762,7565,1,0,0,0,764,7573,1,0,0,0,766,7575, + 1,0,0,0,768,7577,1,0,0,0,770,7579,1,0,0,0,772,7581,1,0,0,0,774,7583, + 1,0,0,0,776,7585,1,0,0,0,778,7589,1,0,0,0,780,7597,1,0,0,0,782,7605, + 1,0,0,0,784,7607,1,0,0,0,786,7609,1,0,0,0,788,7611,1,0,0,0,790,7613, + 1,0,0,0,792,7619,1,0,0,0,794,7625,1,0,0,0,796,7631,1,0,0,0,798,7633, + 1,0,0,0,800,7636,1,0,0,0,802,7642,1,0,0,0,804,7648,1,0,0,0,806,7650, + 1,0,0,0,808,7666,1,0,0,0,810,7669,1,0,0,0,812,7678,1,0,0,0,814,7680, + 1,0,0,0,816,7690,1,0,0,0,818,7694,1,0,0,0,820,7699,1,0,0,0,822,7705, + 1,0,0,0,824,7718,1,0,0,0,826,7720,1,0,0,0,828,7773,1,0,0,0,830,7775, + 1,0,0,0,832,7777,1,0,0,0,834,7780,1,0,0,0,836,7808,1,0,0,0,838,7812, + 1,0,0,0,840,7863,1,0,0,0,842,7866,1,0,0,0,844,7892,1,0,0,0,846,7894, + 1,0,0,0,848,7917,1,0,0,0,850,7919,1,0,0,0,852,7924,1,0,0,0,854,7939, + 1,0,0,0,856,7945,1,0,0,0,858,7956,1,0,0,0,860,7986,1,0,0,0,862,7993, + 1,0,0,0,864,8018,1,0,0,0,866,8028,1,0,0,0,868,8055,1,0,0,0,870,8068, + 1,0,0,0,872,8078,1,0,0,0,874,8097,1,0,0,0,876,8129,1,0,0,0,878,8133, + 1,0,0,0,880,8141,1,0,0,0,882,8155,1,0,0,0,884,8161,1,0,0,0,886,8182, + 1,0,0,0,888,8188,1,0,0,0,890,8227,1,0,0,0,892,8231,1,0,0,0,894,8257, + 1,0,0,0,896,8259,1,0,0,0,898,8267,1,0,0,0,900,8307,1,0,0,0,902,8341, + 1,0,0,0,904,8343,1,0,0,0,906,8354,1,0,0,0,908,8391,1,0,0,0,910,8395, + 1,0,0,0,912,8397,1,0,0,0,914,8401,1,0,0,0,916,8404,1,0,0,0,918,8426, + 1,0,0,0,920,8430,1,0,0,0,922,8432,1,0,0,0,924,8456,1,0,0,0,926,8460, + 1,0,0,0,928,8463,1,0,0,0,930,932,3,2,1,0,931,930,1,0,0,0,932,935, + 1,0,0,0,933,931,1,0,0,0,933,934,1,0,0,0,934,936,1,0,0,0,935,933, + 1,0,0,0,936,937,5,0,0,1,937,1,1,0,0,0,938,940,3,4,2,0,939,941,5, + 7,0,0,940,939,1,0,0,0,940,941,1,0,0,0,941,3,1,0,0,0,942,1063,3,272, + 136,0,943,1063,3,482,241,0,944,1063,3,478,239,0,945,1063,3,480,240, + 0,946,1063,3,346,173,0,947,1063,3,488,244,0,948,1063,3,286,143,0, + 949,1063,3,204,102,0,950,1063,3,206,103,0,951,1063,3,212,106,0,952, + 1063,3,226,113,0,953,1063,3,398,199,0,954,1063,3,28,14,0,955,1063, + 3,428,214,0,956,1063,3,430,215,0,957,1063,3,440,220,0,958,1063,3, + 432,216,0,959,1063,3,438,219,0,960,1063,3,238,119,0,961,1063,3,240, + 120,0,962,1063,3,192,96,0,963,1063,3,484,242,0,964,1063,3,76,38, + 0,965,1063,3,424,212,0,966,1063,3,100,50,0,967,1063,3,444,222,0, + 968,1063,3,18,9,0,969,1063,3,20,10,0,970,1063,3,16,8,0,971,1063, + 3,448,224,0,972,1063,3,178,89,0,973,1063,3,492,246,0,974,1063,3, + 490,245,0,975,1063,3,234,117,0,976,1063,3,500,250,0,977,1063,3,6, + 3,0,978,1063,3,72,36,0,979,1063,3,104,52,0,980,1063,3,496,248,0, + 981,1063,3,318,159,0,982,1063,3,70,35,0,983,1063,3,106,53,0,984, + 1063,3,248,124,0,985,1063,3,180,90,0,986,1063,3,274,137,0,987,1063, + 3,414,207,0,988,1063,3,494,247,0,989,1063,3,486,243,0,990,1063,3, + 202,101,0,991,1063,3,208,104,0,992,1063,3,222,111,0,993,1063,3,228, + 114,0,994,1063,3,358,179,0,995,1063,3,26,13,0,996,1063,3,186,93, + 0,997,1063,3,290,145,0,998,1063,3,294,147,0,999,1063,3,442,221,0, + 1000,1063,3,296,148,0,1001,1063,3,236,118,0,1002,1063,3,198,99,0, + 1003,1063,3,30,15,0,1004,1063,3,190,95,0,1005,1063,3,114,57,0,1006, + 1063,3,446,223,0,1007,1063,3,176,88,0,1008,1063,3,200,100,0,1009, + 1063,3,418,209,0,1010,1063,3,250,125,0,1011,1063,3,268,134,0,1012, + 1063,3,8,4,0,1013,1063,3,14,7,0,1014,1063,3,232,116,0,1015,1063, + 3,474,237,0,1016,1063,3,530,265,0,1017,1063,3,552,276,0,1018,1063, + 3,276,138,0,1019,1063,3,542,271,0,1020,1063,3,74,37,0,1021,1063, + 3,412,206,0,1022,1063,3,302,151,0,1023,1063,3,526,263,0,1024,1063, + 3,514,257,0,1025,1063,3,322,161,0,1026,1063,3,328,164,0,1027,1063, + 3,342,171,0,1028,1063,3,898,449,0,1029,1063,3,230,115,0,1030,1063, + 3,352,176,0,1031,1063,3,532,266,0,1032,1063,3,458,229,0,1033,1063, + 3,188,94,0,1034,1063,3,472,236,0,1035,1063,3,544,272,0,1036,1063, + 3,454,227,0,1037,1063,3,520,260,0,1038,1063,3,300,150,0,1039,1063, + 3,422,211,0,1040,1063,3,402,201,0,1041,1063,3,400,200,0,1042,1063, + 3,404,202,0,1043,1063,3,426,213,0,1044,1063,3,330,165,0,1045,1063, + 3,344,172,0,1046,1063,3,450,225,0,1047,1063,3,320,160,0,1048,1063, + 3,554,277,0,1049,1063,3,462,231,0,1050,1063,3,314,157,0,1051,1063, + 3,460,230,0,1052,1063,3,546,273,0,1053,1063,3,498,249,0,1054,1063, + 3,60,30,0,1055,1063,3,36,18,0,1056,1063,3,68,34,0,1057,1063,3,470, + 235,0,1058,1060,5,583,0,0,1059,1061,5,584,0,0,1060,1059,1,0,0,0, + 1060,1061,1,0,0,0,1061,1063,1,0,0,0,1062,942,1,0,0,0,1062,943,1, + 0,0,0,1062,944,1,0,0,0,1062,945,1,0,0,0,1062,946,1,0,0,0,1062,947, + 1,0,0,0,1062,948,1,0,0,0,1062,949,1,0,0,0,1062,950,1,0,0,0,1062, + 951,1,0,0,0,1062,952,1,0,0,0,1062,953,1,0,0,0,1062,954,1,0,0,0,1062, + 955,1,0,0,0,1062,956,1,0,0,0,1062,957,1,0,0,0,1062,958,1,0,0,0,1062, + 959,1,0,0,0,1062,960,1,0,0,0,1062,961,1,0,0,0,1062,962,1,0,0,0,1062, + 963,1,0,0,0,1062,964,1,0,0,0,1062,965,1,0,0,0,1062,966,1,0,0,0,1062, + 967,1,0,0,0,1062,968,1,0,0,0,1062,969,1,0,0,0,1062,970,1,0,0,0,1062, + 971,1,0,0,0,1062,972,1,0,0,0,1062,973,1,0,0,0,1062,974,1,0,0,0,1062, + 975,1,0,0,0,1062,976,1,0,0,0,1062,977,1,0,0,0,1062,978,1,0,0,0,1062, + 979,1,0,0,0,1062,980,1,0,0,0,1062,981,1,0,0,0,1062,982,1,0,0,0,1062, + 983,1,0,0,0,1062,984,1,0,0,0,1062,985,1,0,0,0,1062,986,1,0,0,0,1062, + 987,1,0,0,0,1062,988,1,0,0,0,1062,989,1,0,0,0,1062,990,1,0,0,0,1062, + 991,1,0,0,0,1062,992,1,0,0,0,1062,993,1,0,0,0,1062,994,1,0,0,0,1062, + 995,1,0,0,0,1062,996,1,0,0,0,1062,997,1,0,0,0,1062,998,1,0,0,0,1062, + 999,1,0,0,0,1062,1000,1,0,0,0,1062,1001,1,0,0,0,1062,1002,1,0,0, + 0,1062,1003,1,0,0,0,1062,1004,1,0,0,0,1062,1005,1,0,0,0,1062,1006, + 1,0,0,0,1062,1007,1,0,0,0,1062,1008,1,0,0,0,1062,1009,1,0,0,0,1062, + 1010,1,0,0,0,1062,1011,1,0,0,0,1062,1012,1,0,0,0,1062,1013,1,0,0, + 0,1062,1014,1,0,0,0,1062,1015,1,0,0,0,1062,1016,1,0,0,0,1062,1017, + 1,0,0,0,1062,1018,1,0,0,0,1062,1019,1,0,0,0,1062,1020,1,0,0,0,1062, + 1021,1,0,0,0,1062,1022,1,0,0,0,1062,1023,1,0,0,0,1062,1024,1,0,0, + 0,1062,1025,1,0,0,0,1062,1026,1,0,0,0,1062,1027,1,0,0,0,1062,1028, + 1,0,0,0,1062,1029,1,0,0,0,1062,1030,1,0,0,0,1062,1031,1,0,0,0,1062, + 1032,1,0,0,0,1062,1033,1,0,0,0,1062,1034,1,0,0,0,1062,1035,1,0,0, + 0,1062,1036,1,0,0,0,1062,1037,1,0,0,0,1062,1038,1,0,0,0,1062,1039, + 1,0,0,0,1062,1040,1,0,0,0,1062,1041,1,0,0,0,1062,1042,1,0,0,0,1062, + 1043,1,0,0,0,1062,1044,1,0,0,0,1062,1045,1,0,0,0,1062,1046,1,0,0, + 0,1062,1047,1,0,0,0,1062,1048,1,0,0,0,1062,1049,1,0,0,0,1062,1050, + 1,0,0,0,1062,1051,1,0,0,0,1062,1052,1,0,0,0,1062,1053,1,0,0,0,1062, + 1054,1,0,0,0,1062,1055,1,0,0,0,1062,1056,1,0,0,0,1062,1057,1,0,0, + 0,1062,1058,1,0,0,0,1063,5,1,0,0,0,1064,1065,5,433,0,0,1065,1066, + 3,678,339,0,1066,7,1,0,0,0,1067,1068,5,46,0,0,1068,1069,5,318,0, + 0,1069,1071,3,812,406,0,1070,1072,5,105,0,0,1071,1070,1,0,0,0,1071, + 1072,1,0,0,0,1072,1076,1,0,0,0,1073,1075,3,12,6,0,1074,1073,1,0, + 0,0,1075,1078,1,0,0,0,1076,1074,1,0,0,0,1076,1077,1,0,0,0,1077,9, + 1,0,0,0,1078,1076,1,0,0,0,1079,1082,5,287,0,0,1080,1083,3,806,403, + 0,1081,1083,5,78,0,0,1082,1080,1,0,0,0,1082,1081,1,0,0,0,1083,1118, + 1,0,0,0,1084,1085,7,0,0,0,1085,1086,5,287,0,0,1086,1118,3,806,403, + 0,1087,1118,5,228,0,0,1088,1118,5,229,0,0,1089,1118,5,236,0,0,1090, + 1118,5,237,0,0,1091,1118,5,234,0,0,1092,1118,5,235,0,0,1093,1118, + 5,232,0,0,1094,1118,5,233,0,0,1095,1118,5,230,0,0,1096,1118,5,231, + 0,0,1097,1118,5,535,0,0,1098,1118,5,536,0,0,1099,1118,5,537,0,0, + 1100,1118,5,538,0,0,1101,1118,5,539,0,0,1102,1118,5,540,0,0,1103, + 1104,5,164,0,0,1104,1105,5,74,0,0,1105,1118,3,810,405,0,1106,1107, + 5,371,0,0,1107,1108,5,368,0,0,1108,1118,3,806,403,0,1109,1110,5, + 68,0,0,1110,1111,7,1,0,0,1111,1118,3,780,390,0,1112,1113,7,2,0,0, + 1113,1118,3,814,407,0,1114,1115,5,134,0,0,1115,1118,3,780,390,0, + 1116,1118,3,824,412,0,1117,1079,1,0,0,0,1117,1084,1,0,0,0,1117,1087, + 1,0,0,0,1117,1088,1,0,0,0,1117,1089,1,0,0,0,1117,1090,1,0,0,0,1117, + 1091,1,0,0,0,1117,1092,1,0,0,0,1117,1093,1,0,0,0,1117,1094,1,0,0, + 0,1117,1095,1,0,0,0,1117,1096,1,0,0,0,1117,1097,1,0,0,0,1117,1098, + 1,0,0,0,1117,1099,1,0,0,0,1117,1100,1,0,0,0,1117,1101,1,0,0,0,1117, + 1102,1,0,0,0,1117,1103,1,0,0,0,1117,1106,1,0,0,0,1117,1109,1,0,0, + 0,1117,1112,1,0,0,0,1117,1114,1,0,0,0,1117,1116,1,0,0,0,1118,11, + 1,0,0,0,1119,1128,3,10,5,0,1120,1121,5,348,0,0,1121,1128,5,574,0, + 0,1122,1123,7,3,0,0,1123,1128,3,814,407,0,1124,1125,5,68,0,0,1125, + 1126,7,1,0,0,1126,1128,3,814,407,0,1127,1119,1,0,0,0,1127,1120,1, + 0,0,0,1127,1122,1,0,0,0,1127,1124,1,0,0,0,1128,13,1,0,0,0,1129,1130, + 5,46,0,0,1130,1131,5,99,0,0,1131,1133,3,812,406,0,1132,1134,5,105, + 0,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0,1134,1138,1,0,0,0,1135,1137, + 3,12,6,0,1136,1135,1,0,0,0,1137,1140,1,0,0,0,1138,1136,1,0,0,0,1138, + 1139,1,0,0,0,1139,15,1,0,0,0,1140,1138,1,0,0,0,1141,1142,5,138,0, + 0,1142,1143,7,2,0,0,1143,1145,3,812,406,0,1144,1146,5,105,0,0,1145, + 1144,1,0,0,0,1145,1146,1,0,0,0,1146,1150,1,0,0,0,1147,1149,3,10, + 5,0,1148,1147,1,0,0,0,1149,1152,1,0,0,0,1150,1148,1,0,0,0,1150,1151, + 1,0,0,0,1151,17,1,0,0,0,1152,1150,1,0,0,0,1153,1154,5,138,0,0,1154, + 1157,7,2,0,0,1155,1158,5,30,0,0,1156,1158,3,812,406,0,1157,1155, + 1,0,0,0,1157,1156,1,0,0,0,1158,1159,1,0,0,0,1159,1160,5,68,0,0,1160, + 1161,5,175,0,0,1161,1162,3,784,392,0,1162,1163,3,64,32,0,1163,19, + 1,0,0,0,1164,1165,5,138,0,0,1165,1166,5,442,0,0,1166,1168,3,790, + 395,0,1167,1169,3,362,181,0,1168,1167,1,0,0,0,1168,1169,1,0,0,0, + 1169,1170,1,0,0,0,1170,1171,3,22,11,0,1171,21,1,0,0,0,1172,1176, + 3,24,12,0,1173,1175,3,24,12,0,1174,1173,1,0,0,0,1175,1178,1,0,0, + 0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1180,1,0,0,0,1178,1176, + 1,0,0,0,1179,1181,5,315,0,0,1180,1179,1,0,0,0,1180,1181,1,0,0,0, + 1181,1199,1,0,0,0,1182,1183,5,309,0,0,1183,1184,5,94,0,0,1184,1199, + 3,788,394,0,1185,1186,5,282,0,0,1186,1187,5,94,0,0,1187,1199,3,812, + 406,0,1188,1189,5,333,0,0,1189,1190,5,323,0,0,1190,1199,3,32,16, + 0,1191,1193,5,269,0,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0,1193,1194, + 1,0,0,0,1194,1195,5,462,0,0,1195,1196,5,80,0,0,1196,1197,5,204,0, + 0,1197,1199,3,816,408,0,1198,1172,1,0,0,0,1198,1182,1,0,0,0,1198, + 1185,1,0,0,0,1198,1188,1,0,0,0,1198,1192,1,0,0,0,1199,23,1,0,0,0, + 1200,1243,5,222,0,0,1201,1243,5,338,0,0,1202,1243,5,377,0,0,1203, + 1205,5,77,0,0,1204,1203,1,0,0,0,1204,1205,1,0,0,0,1205,1206,1,0, + 0,0,1206,1243,5,250,0,0,1207,1209,5,205,0,0,1208,1207,1,0,0,0,1208, + 1209,1,0,0,0,1209,1210,1,0,0,0,1210,1211,5,327,0,0,1211,1218,5,243, + 0,0,1212,1214,5,205,0,0,1213,1212,1,0,0,0,1213,1214,1,0,0,0,1214, + 1215,1,0,0,0,1215,1216,5,327,0,0,1216,1218,5,181,0,0,1217,1208,1, + 0,0,0,1217,1213,1,0,0,0,1218,1243,1,0,0,0,1219,1220,5,460,0,0,1220, + 1243,7,4,0,0,1221,1222,5,170,0,0,1222,1243,3,822,411,0,1223,1224, + 5,320,0,0,1224,1243,3,816,408,0,1225,1226,5,333,0,0,1226,1227,3, + 816,408,0,1227,1230,7,5,0,0,1228,1231,3,816,408,0,1229,1231,5,53, + 0,0,1230,1228,1,0,0,0,1230,1229,1,0,0,0,1231,1243,1,0,0,0,1232,1233, + 5,333,0,0,1233,1234,3,816,408,0,1234,1235,5,64,0,0,1235,1236,5,434, + 0,0,1236,1243,1,0,0,0,1237,1240,5,313,0,0,1238,1241,3,816,408,0, + 1239,1241,5,30,0,0,1240,1238,1,0,0,0,1240,1239,1,0,0,0,1241,1243, + 1,0,0,0,1242,1200,1,0,0,0,1242,1201,1,0,0,0,1242,1202,1,0,0,0,1242, + 1204,1,0,0,0,1242,1217,1,0,0,0,1242,1219,1,0,0,0,1242,1221,1,0,0, + 0,1242,1223,1,0,0,0,1242,1225,1,0,0,0,1242,1232,1,0,0,0,1242,1237, + 1,0,0,0,1243,25,1,0,0,0,1244,1245,5,46,0,0,1245,1246,5,66,0,0,1246, + 1248,3,812,406,0,1247,1249,5,105,0,0,1248,1247,1,0,0,0,1248,1249, + 1,0,0,0,1249,1253,1,0,0,0,1250,1252,3,12,6,0,1251,1250,1,0,0,0,1252, + 1255,1,0,0,0,1253,1251,1,0,0,0,1253,1254,1,0,0,0,1254,27,1,0,0,0, + 1255,1253,1,0,0,0,1256,1257,5,138,0,0,1257,1258,5,66,0,0,1258,1259, + 3,812,406,0,1259,1260,7,6,0,0,1260,1261,5,99,0,0,1261,1262,3,814, + 407,0,1262,29,1,0,0,0,1263,1264,5,46,0,0,1264,1266,5,323,0,0,1265, + 1267,3,288,144,0,1266,1265,1,0,0,0,1266,1267,1,0,0,0,1267,1274,1, + 0,0,0,1268,1270,3,32,16,0,1269,1268,1,0,0,0,1269,1270,1,0,0,0,1270, + 1271,1,0,0,0,1271,1272,5,106,0,0,1272,1275,3,812,406,0,1273,1275, + 3,32,16,0,1274,1269,1,0,0,0,1274,1273,1,0,0,0,1275,1279,1,0,0,0, + 1276,1278,3,34,17,0,1277,1276,1,0,0,0,1278,1281,1,0,0,0,1279,1277, + 1,0,0,0,1279,1280,1,0,0,0,1280,31,1,0,0,0,1281,1279,1,0,0,0,1282, + 1283,3,310,155,0,1283,33,1,0,0,0,1284,1291,3,114,57,0,1285,1291, + 3,352,176,0,1286,1291,3,190,95,0,1287,1291,3,250,125,0,1288,1291, + 3,328,164,0,1289,1291,3,470,235,0,1290,1284,1,0,0,0,1290,1285,1, + 0,0,0,1290,1286,1,0,0,0,1290,1287,1,0,0,0,1290,1288,1,0,0,0,1290, + 1289,1,0,0,0,1291,35,1,0,0,0,1292,1294,5,333,0,0,1293,1295,7,7,0, + 0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1296,1,0,0,0,1296,1297, + 3,38,19,0,1297,37,1,0,0,0,1298,1299,5,356,0,0,1299,1307,3,468,234, + 0,1300,1301,5,332,0,0,1301,1302,5,154,0,0,1302,1303,5,36,0,0,1303, + 1304,5,356,0,0,1304,1307,3,468,234,0,1305,1307,3,42,21,0,1306,1298, + 1,0,0,0,1306,1300,1,0,0,0,1306,1305,1,0,0,0,1307,39,1,0,0,0,1308, + 1311,5,30,0,0,1309,1311,3,44,22,0,1310,1308,1,0,0,0,1310,1309,1, + 0,0,0,1311,1313,1,0,0,0,1312,1314,7,5,0,0,1313,1312,1,0,0,0,1313, + 1314,1,0,0,0,1314,1317,1,0,0,0,1315,1318,5,53,0,0,1316,1318,3,46, + 23,0,1317,1315,1,0,0,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318, + 41,1,0,0,0,1319,1320,5,418,0,0,1320,1321,5,386,0,0,1321,1348,3,56, + 28,0,1322,1323,5,152,0,0,1323,1348,3,806,403,0,1324,1325,5,323,0, + 0,1325,1348,3,786,393,0,1326,1329,5,267,0,0,1327,1330,3,806,403, + 0,1328,1330,5,53,0,0,1329,1327,1,0,0,0,1329,1328,1,0,0,0,1329,1330, + 1,0,0,0,1330,1348,1,0,0,0,1331,1332,5,318,0,0,1332,1348,3,58,29, + 0,1333,1334,5,332,0,0,1334,1335,5,106,0,0,1335,1348,3,58,29,0,1336, + 1337,5,383,0,0,1337,1338,5,279,0,0,1338,1348,3,690,345,0,1339,1340, + 5,356,0,0,1340,1341,5,337,0,0,1341,1348,3,806,403,0,1342,1343,3, + 44,22,0,1343,1344,5,64,0,0,1344,1345,5,434,0,0,1345,1348,1,0,0,0, + 1346,1348,3,40,20,0,1347,1319,1,0,0,0,1347,1322,1,0,0,0,1347,1324, + 1,0,0,0,1347,1326,1,0,0,0,1347,1331,1,0,0,0,1347,1333,1,0,0,0,1347, + 1336,1,0,0,0,1347,1339,1,0,0,0,1347,1342,1,0,0,0,1347,1346,1,0,0, + 0,1348,43,1,0,0,0,1349,1354,3,816,408,0,1350,1351,5,11,0,0,1351, + 1353,3,816,408,0,1352,1350,1,0,0,0,1353,1356,1,0,0,0,1354,1352,1, + 0,0,0,1354,1355,1,0,0,0,1355,45,1,0,0,0,1356,1354,1,0,0,0,1357,1362, + 3,48,24,0,1358,1359,5,6,0,0,1359,1361,3,48,24,0,1360,1358,1,0,0, + 0,1361,1364,1,0,0,0,1362,1360,1,0,0,0,1362,1363,1,0,0,0,1363,47, + 1,0,0,0,1364,1362,1,0,0,0,1365,1368,3,54,27,0,1366,1368,3,196,98, + 0,1367,1365,1,0,0,0,1367,1366,1,0,0,0,1368,49,1,0,0,0,1369,1370, + 5,300,0,0,1370,1375,7,8,0,0,1371,1372,5,310,0,0,1372,1375,5,300, + 0,0,1373,1375,5,330,0,0,1374,1369,1,0,0,0,1374,1371,1,0,0,0,1374, + 1373,1,0,0,0,1375,51,1,0,0,0,1376,1383,5,96,0,0,1377,1383,5,60,0, + 0,1378,1383,5,80,0,0,1379,1383,3,796,398,0,1380,1383,3,830,415,0, + 1381,1383,3,806,403,0,1382,1376,1,0,0,0,1382,1377,1,0,0,0,1382,1378, + 1,0,0,0,1382,1379,1,0,0,0,1382,1380,1,0,0,0,1382,1381,1,0,0,0,1383, + 53,1,0,0,0,1384,1389,5,96,0,0,1385,1389,5,60,0,0,1386,1389,5,80, + 0,0,1387,1389,3,58,29,0,1388,1384,1,0,0,0,1388,1385,1,0,0,0,1388, + 1386,1,0,0,0,1388,1387,1,0,0,0,1389,55,1,0,0,0,1390,1405,3,806,403, + 0,1391,1405,5,53,0,0,1392,1405,3,824,412,0,1393,1394,5,403,0,0,1394, + 1396,3,806,403,0,1395,1397,3,662,331,0,1396,1395,1,0,0,0,1396,1397, + 1,0,0,0,1397,1405,1,0,0,0,1398,1399,5,403,0,0,1399,1400,3,654,327, + 0,1400,1401,3,806,403,0,1401,1405,1,0,0,0,1402,1405,3,196,98,0,1403, + 1405,5,254,0,0,1404,1390,1,0,0,0,1404,1391,1,0,0,0,1404,1392,1,0, + 0,0,1404,1393,1,0,0,0,1404,1398,1,0,0,0,1404,1402,1,0,0,0,1404,1403, + 1,0,0,0,1405,57,1,0,0,0,1406,1409,3,820,410,0,1407,1409,3,806,403, + 0,1408,1406,1,0,0,0,1408,1407,1,0,0,0,1409,59,1,0,0,0,1410,1411, + 5,313,0,0,1411,1412,3,62,31,0,1412,61,1,0,0,0,1413,1414,5,418,0, + 0,1414,1423,5,386,0,0,1415,1416,5,356,0,0,1416,1417,5,244,0,0,1417, + 1423,5,251,0,0,1418,1419,5,332,0,0,1419,1423,5,106,0,0,1420,1423, + 5,30,0,0,1421,1423,3,44,22,0,1422,1413,1,0,0,0,1422,1415,1,0,0,0, + 1422,1418,1,0,0,0,1422,1420,1,0,0,0,1422,1421,1,0,0,0,1423,63,1, + 0,0,0,1424,1425,5,333,0,0,1425,1428,3,38,19,0,1426,1428,3,60,30, + 0,1427,1424,1,0,0,0,1427,1426,1,0,0,0,1428,65,1,0,0,0,1429,1430, + 5,333,0,0,1430,1433,3,42,21,0,1431,1433,3,60,30,0,1432,1429,1,0, + 0,0,1432,1431,1,0,0,0,1433,67,1,0,0,0,1434,1444,5,335,0,0,1435,1445, + 3,44,22,0,1436,1437,5,418,0,0,1437,1445,5,386,0,0,1438,1439,5,356, + 0,0,1439,1440,5,244,0,0,1440,1445,5,251,0,0,1441,1442,5,332,0,0, + 1442,1445,5,106,0,0,1443,1445,5,30,0,0,1444,1435,1,0,0,0,1444,1436, + 1,0,0,0,1444,1438,1,0,0,0,1444,1441,1,0,0,0,1444,1443,1,0,0,0,1445, + 69,1,0,0,0,1446,1447,5,333,0,0,1447,1450,5,165,0,0,1448,1451,5,30, + 0,0,1449,1451,3,756,378,0,1450,1448,1,0,0,0,1450,1449,1,0,0,0,1451, + 1452,1,0,0,0,1452,1453,7,9,0,0,1453,71,1,0,0,0,1454,1455,5,155,0, + 0,1455,73,1,0,0,0,1456,1457,5,187,0,0,1457,1458,7,10,0,0,1458,75, + 1,0,0,0,1459,1460,5,138,0,0,1460,1462,5,92,0,0,1461,1463,3,416,208, + 0,1462,1461,1,0,0,0,1462,1463,1,0,0,0,1463,1464,1,0,0,0,1464,1467, + 3,618,309,0,1465,1468,3,78,39,0,1466,1468,3,80,40,0,1467,1465,1, + 0,0,0,1467,1466,1,0,0,0,1468,1577,1,0,0,0,1469,1470,5,138,0,0,1470, + 1471,5,92,0,0,1471,1472,5,30,0,0,1472,1473,5,68,0,0,1473,1477,3, + 170,85,0,1474,1475,5,281,0,0,1475,1476,5,147,0,0,1476,1478,3,814, + 407,0,1477,1474,1,0,0,0,1477,1478,1,0,0,0,1478,1479,1,0,0,0,1479, + 1480,5,333,0,0,1480,1481,5,351,0,0,1481,1483,3,766,383,0,1482,1484, + 5,272,0,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484,1577,1,0,0,0, + 1485,1486,5,138,0,0,1486,1488,5,92,0,0,1487,1489,3,416,208,0,1488, + 1487,1,0,0,0,1488,1489,1,0,0,0,1489,1490,1,0,0,0,1490,1491,3,770, + 385,0,1491,1492,3,82,41,0,1492,1493,3,98,49,0,1493,1577,1,0,0,0, + 1494,1495,5,138,0,0,1495,1497,5,92,0,0,1496,1498,3,416,208,0,1497, + 1496,1,0,0,0,1497,1498,1,0,0,0,1498,1499,1,0,0,0,1499,1500,3,770, + 385,0,1500,1501,5,436,0,0,1501,1502,5,285,0,0,1502,1504,3,776,388, + 0,1503,1505,7,11,0,0,1504,1503,1,0,0,0,1504,1505,1,0,0,0,1505,1577, + 1,0,0,0,1506,1507,5,138,0,0,1507,1509,5,226,0,0,1508,1510,3,416, + 208,0,1509,1508,1,0,0,0,1509,1510,1,0,0,0,1510,1511,1,0,0,0,1511, + 1514,3,776,388,0,1512,1515,3,78,39,0,1513,1515,3,82,41,0,1514,1512, + 1,0,0,0,1514,1513,1,0,0,0,1515,1577,1,0,0,0,1516,1517,5,138,0,0, + 1517,1518,5,226,0,0,1518,1519,5,30,0,0,1519,1520,5,68,0,0,1520,1524, + 3,170,85,0,1521,1522,5,281,0,0,1522,1523,5,147,0,0,1523,1525,3,814, + 407,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525,1526,1,0,0,0,1526, + 1527,5,333,0,0,1527,1529,3,170,85,0,1528,1530,5,272,0,0,1529,1528, + 1,0,0,0,1529,1530,1,0,0,0,1530,1577,1,0,0,0,1531,1532,5,138,0,0, + 1532,1534,5,328,0,0,1533,1535,3,416,208,0,1534,1533,1,0,0,0,1534, + 1535,1,0,0,0,1535,1536,1,0,0,0,1536,1537,3,776,388,0,1537,1538,3, + 78,39,0,1538,1577,1,0,0,0,1539,1541,5,138,0,0,1540,1542,5,259,0, + 0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542,1543,1,0,0,0,1543,1545, + 5,376,0,0,1544,1546,3,416,208,0,1545,1544,1,0,0,0,1545,1546,1,0, + 0,0,1546,1547,1,0,0,0,1547,1548,3,774,387,0,1548,1549,3,78,39,0, + 1549,1577,1,0,0,0,1550,1551,5,138,0,0,1551,1552,5,259,0,0,1552,1553, + 5,376,0,0,1553,1554,5,30,0,0,1554,1555,5,68,0,0,1555,1559,3,170, + 85,0,1556,1557,5,281,0,0,1557,1558,5,147,0,0,1558,1560,3,814,407, + 0,1559,1556,1,0,0,0,1559,1560,1,0,0,0,1560,1561,1,0,0,0,1561,1562, + 5,333,0,0,1562,1563,5,351,0,0,1563,1565,3,766,383,0,1564,1566,5, + 272,0,0,1565,1564,1,0,0,0,1565,1566,1,0,0,0,1566,1577,1,0,0,0,1567, + 1568,5,138,0,0,1568,1569,5,63,0,0,1569,1571,5,92,0,0,1570,1572,3, + 416,208,0,1571,1570,1,0,0,0,1571,1572,1,0,0,0,1572,1573,1,0,0,0, + 1573,1574,3,618,309,0,1574,1575,3,78,39,0,1575,1577,1,0,0,0,1576, + 1459,1,0,0,0,1576,1469,1,0,0,0,1576,1485,1,0,0,0,1576,1494,1,0,0, + 0,1576,1506,1,0,0,0,1576,1516,1,0,0,0,1576,1531,1,0,0,0,1576,1539, + 1,0,0,0,1576,1550,1,0,0,0,1576,1567,1,0,0,0,1577,77,1,0,0,0,1578, + 1583,3,84,42,0,1579,1580,5,6,0,0,1580,1582,3,84,42,0,1581,1579,1, + 0,0,0,1582,1585,1,0,0,0,1583,1581,1,0,0,0,1583,1584,1,0,0,0,1584, + 79,1,0,0,0,1585,1583,1,0,0,0,1586,1587,3,82,41,0,1587,1588,3,98, + 49,0,1588,1593,1,0,0,0,1589,1590,5,436,0,0,1590,1591,5,285,0,0,1591, + 1593,3,776,388,0,1592,1586,1,0,0,0,1592,1589,1,0,0,0,1593,81,1,0, + 0,0,1594,1595,5,435,0,0,1595,1596,5,285,0,0,1596,1597,3,776,388, + 0,1597,83,1,0,0,0,1598,1601,5,133,0,0,1599,1600,5,45,0,0,1600,1602, + 3,816,408,0,1601,1599,1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0, + 0,1603,1832,3,136,68,0,1604,1605,5,138,0,0,1605,1606,5,45,0,0,1606, + 1610,3,816,408,0,1607,1609,3,266,133,0,1608,1607,1,0,0,0,1609,1612, + 1,0,0,0,1610,1608,1,0,0,0,1610,1611,1,0,0,0,1611,1832,1,0,0,0,1612, + 1610,1,0,0,0,1613,1614,5,372,0,0,1614,1615,5,45,0,0,1615,1832,3, + 816,408,0,1616,1617,5,191,0,0,1617,1619,5,45,0,0,1618,1620,3,416, + 208,0,1619,1618,1,0,0,0,1619,1620,1,0,0,0,1620,1621,1,0,0,0,1621, + 1623,3,816,408,0,1622,1624,3,88,44,0,1623,1622,1,0,0,0,1623,1624, + 1,0,0,0,1624,1832,1,0,0,0,1625,1626,5,333,0,0,1626,1627,5,379,0, + 0,1627,1832,7,12,0,0,1628,1629,5,158,0,0,1629,1630,5,80,0,0,1630, + 1832,3,816,408,0,1631,1632,5,333,0,0,1632,1832,7,13,0,0,1633,1635, + 5,193,0,0,1634,1636,7,14,0,0,1635,1634,1,0,0,0,1635,1636,1,0,0,0, + 1636,1637,1,0,0,0,1637,1832,5,357,0,0,1638,1639,5,186,0,0,1639,1643, + 5,357,0,0,1640,1644,5,30,0,0,1641,1644,5,99,0,0,1642,1644,3,816, + 408,0,1643,1640,1,0,0,0,1643,1641,1,0,0,0,1643,1642,1,0,0,0,1644, + 1832,1,0,0,0,1645,1646,5,193,0,0,1646,1647,7,14,0,0,1647,1648,5, + 321,0,0,1648,1832,3,816,408,0,1649,1650,5,186,0,0,1650,1651,5,321, + 0,0,1651,1832,3,816,408,0,1652,1654,5,269,0,0,1653,1652,1,0,0,0, + 1653,1654,1,0,0,0,1654,1655,1,0,0,0,1655,1656,5,228,0,0,1656,1832, + 3,776,388,0,1657,1658,5,275,0,0,1658,1832,3,310,155,0,1659,1660, + 5,77,0,0,1660,1832,5,275,0,0,1661,1662,5,282,0,0,1662,1663,5,94, + 0,0,1663,1832,3,812,406,0,1664,1665,5,333,0,0,1665,1666,5,351,0, + 0,1666,1832,3,766,383,0,1667,1668,5,312,0,0,1668,1673,5,219,0,0, + 1669,1674,5,270,0,0,1670,1674,5,113,0,0,1671,1674,5,53,0,0,1672, + 1674,3,174,87,0,1673,1669,1,0,0,0,1673,1670,1,0,0,0,1673,1671,1, + 0,0,0,1673,1672,1,0,0,0,1674,1832,1,0,0,0,1675,1682,5,193,0,0,1676, + 1682,5,186,0,0,1677,1679,5,269,0,0,1678,1677,1,0,0,0,1678,1679,1, + 0,0,0,1679,1680,1,0,0,0,1680,1682,5,209,0,0,1681,1675,1,0,0,0,1681, + 1676,1,0,0,0,1681,1678,1,0,0,0,1682,1683,1,0,0,0,1683,1684,5,414, + 0,0,1684,1685,5,251,0,0,1685,1832,5,327,0,0,1686,1688,5,191,0,0, + 1687,1689,5,44,0,0,1688,1687,1,0,0,0,1688,1689,1,0,0,0,1689,1691, + 1,0,0,0,1690,1692,3,416,208,0,1691,1690,1,0,0,0,1691,1692,1,0,0, + 0,1692,1693,1,0,0,0,1693,1695,3,796,398,0,1694,1696,3,88,44,0,1695, + 1694,1,0,0,0,1695,1696,1,0,0,0,1696,1832,1,0,0,0,1697,1699,5,133, + 0,0,1698,1700,5,44,0,0,1699,1698,1,0,0,0,1699,1700,1,0,0,0,1700, + 1702,1,0,0,0,1701,1703,3,288,144,0,1702,1701,1,0,0,0,1702,1703,1, + 0,0,0,1703,1704,1,0,0,0,1704,1832,3,126,63,0,1705,1707,5,138,0,0, + 1706,1708,5,44,0,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708,1709, + 1,0,0,0,1709,1712,3,796,398,0,1710,1713,3,86,43,0,1711,1713,3,216, + 108,0,1712,1710,1,0,0,0,1712,1711,1,0,0,0,1713,1832,1,0,0,0,1714, + 1716,5,138,0,0,1715,1717,5,44,0,0,1716,1715,1,0,0,0,1716,1717,1, + 0,0,0,1717,1718,1,0,0,0,1718,1719,3,796,398,0,1719,1720,7,15,0,0, + 1720,1721,5,77,0,0,1721,1722,5,78,0,0,1722,1832,1,0,0,0,1723,1725, + 5,138,0,0,1724,1726,5,44,0,0,1725,1724,1,0,0,0,1725,1726,1,0,0,0, + 1726,1727,1,0,0,0,1727,1728,3,796,398,0,1728,1729,5,191,0,0,1729, + 1731,5,437,0,0,1730,1732,3,416,208,0,1731,1730,1,0,0,0,1731,1732, + 1,0,0,0,1732,1832,1,0,0,0,1733,1735,5,138,0,0,1734,1736,5,44,0,0, + 1735,1734,1,0,0,0,1735,1736,1,0,0,0,1736,1737,1,0,0,0,1737,1738, + 3,796,398,0,1738,1739,5,333,0,0,1739,1740,5,342,0,0,1740,1741,3, + 810,405,0,1741,1832,1,0,0,0,1742,1744,5,138,0,0,1743,1745,5,44,0, + 0,1744,1743,1,0,0,0,1744,1745,1,0,0,0,1745,1746,1,0,0,0,1746,1748, + 3,796,398,0,1747,1742,1,0,0,0,1747,1748,1,0,0,0,1748,1749,1,0,0, + 0,1749,1750,7,16,0,0,1750,1832,3,92,46,0,1751,1753,5,138,0,0,1752, + 1754,5,44,0,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0, + 0,0,1755,1756,3,796,398,0,1756,1757,5,333,0,0,1757,1758,5,345,0, + 0,1758,1759,3,816,408,0,1759,1832,1,0,0,0,1760,1762,5,138,0,0,1761, + 1763,5,44,0,0,1762,1761,1,0,0,0,1762,1763,1,0,0,0,1763,1764,1,0, + 0,0,1764,1765,3,796,398,0,1765,1766,5,133,0,0,1766,1767,5,438,0, + 0,1767,1768,3,132,66,0,1768,1769,5,36,0,0,1769,1778,5,219,0,0,1770, + 1772,5,2,0,0,1771,1773,3,194,97,0,1772,1771,1,0,0,0,1773,1774,1, + 0,0,0,1774,1772,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0,0,0,1776, + 1777,5,3,0,0,1777,1779,1,0,0,0,1778,1770,1,0,0,0,1778,1779,1,0,0, + 0,1779,1832,1,0,0,0,1780,1782,5,138,0,0,1781,1783,5,44,0,0,1782, + 1781,1,0,0,0,1782,1783,1,0,0,0,1783,1784,1,0,0,0,1784,1798,3,796, + 398,0,1785,1790,5,314,0,0,1786,1788,5,105,0,0,1787,1786,1,0,0,0, + 1787,1788,1,0,0,0,1788,1789,1,0,0,0,1789,1791,3,196,98,0,1790,1787, + 1,0,0,0,1790,1791,1,0,0,0,1791,1799,1,0,0,0,1792,1796,5,333,0,0, + 1793,1797,3,194,97,0,1794,1795,5,438,0,0,1795,1797,3,132,66,0,1796, + 1793,1,0,0,0,1796,1794,1,0,0,0,1797,1799,1,0,0,0,1798,1785,1,0,0, + 0,1798,1792,1,0,0,0,1799,1800,1,0,0,0,1800,1798,1,0,0,0,1800,1801, + 1,0,0,0,1801,1832,1,0,0,0,1802,1804,5,138,0,0,1803,1805,5,44,0,0, + 1804,1803,1,0,0,0,1804,1805,1,0,0,0,1805,1806,1,0,0,0,1806,1807, 3,796,398,0,1807,1808,5,191,0,0,1808,1810,5,219,0,0,1809,1811,3, 416,208,0,1810,1809,1,0,0,0,1810,1811,1,0,0,0,1811,1832,1,0,0,0, 1812,1814,5,138,0,0,1813,1815,5,44,0,0,1814,1813,1,0,0,0,1814,1815, @@ -57469,583 +57463,582 @@ export class PostgreSqlParser extends SQLParserBase { 6904,5,386,0,0,6904,6906,3,668,334,0,6905,6891,1,0,0,0,6905,6894, 1,0,0,0,6905,6897,1,0,0,0,6905,6900,1,0,0,0,6906,6909,1,0,0,0,6907, 6905,1,0,0,0,6907,6908,1,0,0,0,6908,675,1,0,0,0,6909,6907,1,0,0, - 0,6910,6911,6,338,-1,0,6911,6912,7,95,0,0,6912,7000,3,556,278,0, + 0,6910,6911,6,338,-1,0,6911,6912,7,95,0,0,6912,6999,3,556,278,0, 6913,6916,5,35,0,0,6914,6917,3,556,278,0,6915,6917,3,736,368,0,6916, - 6914,1,0,0,0,6916,6915,1,0,0,0,6917,7000,1,0,0,0,6918,6919,5,28, - 0,0,6919,7000,3,750,375,0,6920,6921,5,470,0,0,6921,7000,3,528,264, - 0,6922,7000,5,574,0,0,6923,7000,5,576,0,0,6924,7000,5,566,0,0,6925, - 7000,5,570,0,0,6926,6936,3,804,402,0,6927,6937,3,806,403,0,6928, + 6914,1,0,0,0,6916,6915,1,0,0,0,6917,6999,1,0,0,0,6918,6919,5,28, + 0,0,6919,6999,3,750,375,0,6920,6921,5,470,0,0,6921,6999,3,528,264, + 0,6922,6999,5,574,0,0,6923,6999,5,576,0,0,6924,6999,5,566,0,0,6925, + 6999,5,570,0,0,6926,6936,3,804,402,0,6927,6937,3,806,403,0,6928, 6929,5,2,0,0,6929,6931,3,732,366,0,6930,6932,3,580,290,0,6931,6930, 1,0,0,0,6931,6932,1,0,0,0,6932,6933,1,0,0,0,6933,6934,5,3,0,0,6934, 6935,3,806,403,0,6935,6937,1,0,0,0,6936,6927,1,0,0,0,6936,6928,1, - 0,0,0,6937,7000,1,0,0,0,6938,6940,3,650,325,0,6939,6938,1,0,0,0, - 6939,6940,1,0,0,0,6940,6941,1,0,0,0,6941,7000,3,806,403,0,6942,6950, + 0,0,0,6937,6999,1,0,0,0,6938,6940,3,650,325,0,6939,6938,1,0,0,0, + 6939,6940,1,0,0,0,6940,6941,1,0,0,0,6941,6999,3,806,403,0,6942,6950, 5,403,0,0,6943,6945,3,806,403,0,6944,6946,3,662,331,0,6945,6944, 1,0,0,0,6945,6946,1,0,0,0,6946,6951,1,0,0,0,6947,6948,3,654,327, 0,6948,6949,3,806,403,0,6949,6951,1,0,0,0,6950,6943,1,0,0,0,6950, - 6947,1,0,0,0,6951,7000,1,0,0,0,6952,7000,5,96,0,0,6953,7000,5,60, - 0,0,6954,7000,5,78,0,0,6955,7000,5,577,0,0,6956,6957,5,2,0,0,6957, - 6958,3,668,334,0,6958,6959,5,3,0,0,6959,6960,3,750,375,0,6960,7000, + 6947,1,0,0,0,6951,6999,1,0,0,0,6952,6999,5,96,0,0,6953,6999,5,60, + 0,0,6954,6999,5,78,0,0,6955,6999,5,577,0,0,6956,6957,5,2,0,0,6957, + 6958,3,668,334,0,6958,6959,5,3,0,0,6959,6960,3,750,375,0,6960,6999, 1,0,0,0,6961,6963,5,40,0,0,6962,6964,3,668,334,0,6963,6962,1,0,0, 0,6963,6964,1,0,0,0,6964,6966,1,0,0,0,6965,6967,3,744,372,0,6966, 6965,1,0,0,0,6967,6968,1,0,0,0,6968,6966,1,0,0,0,6968,6969,1,0,0, 0,6969,6972,1,0,0,0,6970,6971,5,58,0,0,6971,6973,3,668,334,0,6972, 6970,1,0,0,0,6972,6973,1,0,0,0,6973,6974,1,0,0,0,6974,6975,5,454, - 0,0,6975,7000,1,0,0,0,6976,7000,3,680,340,0,6977,6979,3,556,278, + 0,0,6975,6999,1,0,0,0,6976,6999,3,680,340,0,6977,6979,3,556,278, 0,6978,6980,3,748,374,0,6979,6978,1,0,0,0,6979,6980,1,0,0,0,6980, - 7000,1,0,0,0,6981,7000,3,712,356,0,6982,6983,5,2,0,0,6983,6984,3, + 6999,1,0,0,0,6981,6999,3,712,356,0,6982,6983,5,2,0,0,6983,6984,3, 668,334,0,6984,6985,5,6,0,0,6985,6986,3,726,363,0,6986,6987,5,3, - 0,0,6987,7000,1,0,0,0,6988,6989,3,710,355,0,6989,6990,5,125,0,0, - 6990,6991,3,710,355,0,6991,7000,1,0,0,0,6992,7000,3,798,399,0,6993, - 7000,3,776,388,0,6994,6995,7,30,0,0,6995,7000,3,676,338,5,6996,6997, - 3,720,360,0,6997,6998,3,676,338,2,6998,7000,1,0,0,0,6999,6910,1, - 0,0,0,6999,6913,1,0,0,0,6999,6918,1,0,0,0,6999,6920,1,0,0,0,6999, - 6922,1,0,0,0,6999,6923,1,0,0,0,6999,6924,1,0,0,0,6999,6925,1,0,0, - 0,6999,6926,1,0,0,0,6999,6939,1,0,0,0,6999,6942,1,0,0,0,6999,6952, - 1,0,0,0,6999,6953,1,0,0,0,6999,6954,1,0,0,0,6999,6955,1,0,0,0,6999, - 6956,1,0,0,0,6999,6961,1,0,0,0,6999,6976,1,0,0,0,6999,6977,1,0,0, - 0,6999,6981,1,0,0,0,6999,6982,1,0,0,0,6999,6988,1,0,0,0,6999,6992, - 1,0,0,0,6999,6993,1,0,0,0,6999,6994,1,0,0,0,6999,6996,1,0,0,0,7000, - 7028,1,0,0,0,7001,7002,10,3,0,0,7002,7003,3,718,359,0,7003,7004, - 3,676,338,4,7004,7027,1,0,0,0,7005,7006,10,6,0,0,7006,7007,5,26, - 0,0,7007,7027,3,646,323,0,7008,7009,10,4,0,0,7009,7011,3,720,360, - 0,7010,7012,3,676,338,0,7011,7010,1,0,0,0,7011,7012,1,0,0,0,7012, - 7027,1,0,0,0,7013,7014,10,1,0,0,7014,7016,5,116,0,0,7015,7017,5, - 77,0,0,7016,7015,1,0,0,0,7016,7017,1,0,0,0,7017,7024,1,0,0,0,7018, - 7019,5,56,0,0,7019,7020,5,64,0,0,7020,7025,3,676,338,0,7021,7022, - 5,275,0,0,7022,7025,3,522,261,0,7023,7025,5,188,0,0,7024,7018,1, - 0,0,0,7024,7021,1,0,0,0,7024,7023,1,0,0,0,7025,7027,1,0,0,0,7026, - 7001,1,0,0,0,7026,7005,1,0,0,0,7026,7008,1,0,0,0,7026,7013,1,0,0, - 0,7027,7030,1,0,0,0,7028,7026,1,0,0,0,7028,7029,1,0,0,0,7029,677, - 1,0,0,0,7030,7028,1,0,0,0,7031,7032,3,804,402,0,7032,7053,5,2,0, - 0,7033,7037,3,732,366,0,7034,7035,5,6,0,0,7035,7036,5,101,0,0,7036, - 7038,3,734,367,0,7037,7034,1,0,0,0,7037,7038,1,0,0,0,7038,7040,1, - 0,0,0,7039,7041,3,580,290,0,7040,7039,1,0,0,0,7040,7041,1,0,0,0, - 7041,7054,1,0,0,0,7042,7043,5,101,0,0,7043,7045,3,734,367,0,7044, - 7046,3,580,290,0,7045,7044,1,0,0,0,7045,7046,1,0,0,0,7046,7054,1, - 0,0,0,7047,7048,7,81,0,0,7048,7050,3,732,366,0,7049,7051,3,580,290, - 0,7050,7049,1,0,0,0,7050,7051,1,0,0,0,7051,7054,1,0,0,0,7052,7054, - 5,9,0,0,7053,7033,1,0,0,0,7053,7042,1,0,0,0,7053,7047,1,0,0,0,7053, - 7052,1,0,0,0,7053,7054,1,0,0,0,7054,7055,1,0,0,0,7055,7056,5,3,0, - 0,7056,679,1,0,0,0,7057,7064,3,678,339,0,7058,7059,5,479,0,0,7059, - 7060,5,66,0,0,7060,7061,5,2,0,0,7061,7062,3,580,290,0,7062,7063, - 5,3,0,0,7063,7065,1,0,0,0,7064,7058,1,0,0,0,7064,7065,1,0,0,0,7065, - 7072,1,0,0,0,7066,7067,5,480,0,0,7067,7068,5,2,0,0,7068,7069,5,103, - 0,0,7069,7070,3,668,334,0,7070,7071,5,3,0,0,7071,7073,1,0,0,0,7072, - 7066,1,0,0,0,7072,7073,1,0,0,0,7073,7079,1,0,0,0,7074,7077,5,124, - 0,0,7075,7078,3,704,352,0,7076,7078,3,816,408,0,7077,7075,1,0,0, - 0,7077,7076,1,0,0,0,7078,7080,1,0,0,0,7079,7074,1,0,0,0,7079,7080, - 1,0,0,0,7080,7083,1,0,0,0,7081,7083,3,684,342,0,7082,7057,1,0,0, - 0,7082,7081,1,0,0,0,7083,681,1,0,0,0,7084,7087,3,678,339,0,7085, - 7087,3,684,342,0,7086,7084,1,0,0,0,7086,7085,1,0,0,0,7087,683,1, - 0,0,0,7088,7089,5,108,0,0,7089,7090,5,62,0,0,7090,7091,5,2,0,0,7091, - 7092,3,668,334,0,7092,7093,5,3,0,0,7093,7263,1,0,0,0,7094,7263,5, - 48,0,0,7095,7097,7,96,0,0,7096,7098,3,654,327,0,7097,7096,1,0,0, - 0,7097,7098,1,0,0,0,7098,7263,1,0,0,0,7099,7263,5,49,0,0,7100,7263, - 5,52,0,0,7101,7263,5,89,0,0,7102,7263,5,99,0,0,7103,7263,5,47,0, - 0,7104,7263,5,111,0,0,7105,7106,7,97,0,0,7106,7107,5,2,0,0,7107, - 7108,3,668,334,0,7108,7109,5,36,0,0,7109,7110,3,646,323,0,7110,7111, - 5,3,0,0,7111,7263,1,0,0,0,7112,7113,5,397,0,0,7113,7118,5,2,0,0, - 7114,7115,3,738,369,0,7115,7116,5,64,0,0,7116,7117,3,668,334,0,7117, - 7119,1,0,0,0,7118,7114,1,0,0,0,7118,7119,1,0,0,0,7119,7120,1,0,0, - 0,7120,7263,5,3,0,0,7121,7122,5,489,0,0,7122,7123,5,2,0,0,7123,7126, - 3,668,334,0,7124,7125,5,6,0,0,7125,7127,3,740,370,0,7126,7124,1, - 0,0,0,7126,7127,1,0,0,0,7127,7128,1,0,0,0,7128,7129,5,3,0,0,7129, - 7263,1,0,0,0,7130,7131,5,410,0,0,7131,7132,5,2,0,0,7132,7133,3,668, - 334,0,7133,7134,5,84,0,0,7134,7135,3,668,334,0,7135,7136,5,64,0, - 0,7136,7139,3,668,334,0,7137,7138,5,62,0,0,7138,7140,3,668,334,0, - 7139,7137,1,0,0,0,7139,7140,1,0,0,0,7140,7141,1,0,0,0,7141,7142, - 5,3,0,0,7142,7263,1,0,0,0,7143,7144,5,411,0,0,7144,7149,5,2,0,0, - 7145,7146,3,676,338,0,7146,7147,5,68,0,0,7147,7148,3,676,338,0,7148, - 7150,1,0,0,0,7149,7145,1,0,0,0,7149,7150,1,0,0,0,7150,7151,1,0,0, - 0,7151,7263,5,3,0,0,7152,7153,5,417,0,0,7153,7155,5,2,0,0,7154,7156, - 3,742,371,0,7155,7154,1,0,0,0,7155,7156,1,0,0,0,7156,7157,1,0,0, - 0,7157,7263,5,3,0,0,7158,7159,5,421,0,0,7159,7161,5,2,0,0,7160,7162, - 7,98,0,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162,7167,1,0,0,0,7163, - 7165,3,668,334,0,7164,7163,1,0,0,0,7164,7165,1,0,0,0,7165,7166,1, - 0,0,0,7166,7168,5,64,0,0,7167,7164,1,0,0,0,7167,7168,1,0,0,0,7168, - 7169,1,0,0,0,7169,7170,3,726,363,0,7170,7171,1,0,0,0,7171,7172,5, - 3,0,0,7172,7263,1,0,0,0,7173,7174,5,408,0,0,7174,7175,5,2,0,0,7175, - 7176,3,668,334,0,7176,7177,5,6,0,0,7177,7178,3,668,334,0,7178,7179, - 5,3,0,0,7179,7263,1,0,0,0,7180,7181,7,99,0,0,7181,7263,3,528,264, - 0,7182,7183,5,426,0,0,7183,7184,5,2,0,0,7184,7185,5,266,0,0,7185, - 7195,3,822,411,0,7186,7193,5,6,0,0,7187,7188,5,424,0,0,7188,7189, - 5,2,0,0,7189,7190,3,686,343,0,7190,7191,5,3,0,0,7191,7194,1,0,0, - 0,7192,7194,3,726,363,0,7193,7187,1,0,0,0,7193,7192,1,0,0,0,7194, - 7196,1,0,0,0,7195,7186,1,0,0,0,7195,7196,1,0,0,0,7196,7197,1,0,0, - 0,7197,7198,5,3,0,0,7198,7263,1,0,0,0,7199,7200,5,427,0,0,7200,7201, - 5,2,0,0,7201,7202,3,676,338,0,7202,7203,3,692,346,0,7203,7204,5, - 3,0,0,7204,7263,1,0,0,0,7205,7206,5,428,0,0,7206,7207,5,2,0,0,7207, - 7208,3,686,343,0,7208,7209,5,3,0,0,7209,7263,1,0,0,0,7210,7211,5, - 429,0,0,7211,7212,5,2,0,0,7212,7213,3,690,345,0,7213,7216,3,668, - 334,0,7214,7215,7,100,0,0,7215,7217,5,378,0,0,7216,7214,1,0,0,0, - 7216,7217,1,0,0,0,7217,7218,1,0,0,0,7218,7219,5,3,0,0,7219,7263, - 1,0,0,0,7220,7221,5,430,0,0,7221,7222,5,2,0,0,7222,7223,5,266,0, - 0,7223,7226,3,822,411,0,7224,7225,5,6,0,0,7225,7227,3,668,334,0, - 7226,7224,1,0,0,0,7226,7227,1,0,0,0,7227,7228,1,0,0,0,7228,7229, - 5,3,0,0,7229,7263,1,0,0,0,7230,7231,5,431,0,0,7231,7232,5,2,0,0, - 7232,7233,5,383,0,0,7233,7234,3,668,334,0,7234,7235,5,6,0,0,7235, - 7239,5,375,0,0,7236,7237,5,269,0,0,7237,7240,5,450,0,0,7238,7240, - 3,668,334,0,7239,7236,1,0,0,0,7239,7238,1,0,0,0,7240,7250,1,0,0, - 0,7241,7242,5,6,0,0,7242,7248,5,339,0,0,7243,7245,5,269,0,0,7244, - 7243,1,0,0,0,7244,7245,1,0,0,0,7245,7246,1,0,0,0,7246,7249,5,450, - 0,0,7247,7249,5,385,0,0,7248,7244,1,0,0,0,7248,7247,1,0,0,0,7249, - 7251,1,0,0,0,7250,7241,1,0,0,0,7250,7251,1,0,0,0,7251,7252,1,0,0, - 0,7252,7253,5,3,0,0,7253,7263,1,0,0,0,7254,7255,5,432,0,0,7255,7256, - 5,2,0,0,7256,7257,3,690,345,0,7257,7258,3,668,334,0,7258,7259,5, - 36,0,0,7259,7260,3,648,324,0,7260,7261,5,3,0,0,7261,7263,1,0,0,0, - 7262,7088,1,0,0,0,7262,7094,1,0,0,0,7262,7095,1,0,0,0,7262,7099, - 1,0,0,0,7262,7100,1,0,0,0,7262,7101,1,0,0,0,7262,7102,1,0,0,0,7262, - 7103,1,0,0,0,7262,7104,1,0,0,0,7262,7105,1,0,0,0,7262,7112,1,0,0, - 0,7262,7121,1,0,0,0,7262,7130,1,0,0,0,7262,7143,1,0,0,0,7262,7152, - 1,0,0,0,7262,7158,1,0,0,0,7262,7173,1,0,0,0,7262,7180,1,0,0,0,7262, - 7182,1,0,0,0,7262,7199,1,0,0,0,7262,7205,1,0,0,0,7262,7210,1,0,0, - 0,7262,7220,1,0,0,0,7262,7230,1,0,0,0,7262,7254,1,0,0,0,7263,685, - 1,0,0,0,7264,7269,3,688,344,0,7265,7266,5,6,0,0,7266,7268,3,688, - 344,0,7267,7265,1,0,0,0,7268,7271,1,0,0,0,7269,7267,1,0,0,0,7269, - 7270,1,0,0,0,7270,687,1,0,0,0,7271,7269,1,0,0,0,7272,7275,3,668, - 334,0,7273,7274,5,36,0,0,7274,7276,3,822,411,0,7275,7273,1,0,0,0, - 7275,7276,1,0,0,0,7276,689,1,0,0,0,7277,7278,7,101,0,0,7278,691, - 1,0,0,0,7279,7281,5,286,0,0,7280,7282,3,694,347,0,7281,7280,1,0, - 0,0,7281,7282,1,0,0,0,7282,7283,1,0,0,0,7283,7285,3,676,338,0,7284, - 7286,3,694,347,0,7285,7284,1,0,0,0,7285,7286,1,0,0,0,7286,693,1, - 0,0,0,7287,7288,5,147,0,0,7288,7289,7,102,0,0,7289,695,1,0,0,0,7290, - 7291,5,104,0,0,7291,7296,3,700,350,0,7292,7293,5,6,0,0,7293,7295, - 3,700,350,0,7294,7292,1,0,0,0,7295,7298,1,0,0,0,7296,7294,1,0,0, - 0,7296,7297,1,0,0,0,7297,697,1,0,0,0,7298,7296,1,0,0,0,7299,7300, - 5,67,0,0,7300,7301,3,668,334,0,7301,699,1,0,0,0,7302,7303,3,816, - 408,0,7303,7304,5,36,0,0,7304,7305,3,704,352,0,7305,701,1,0,0,0, - 7306,7309,5,124,0,0,7307,7310,3,704,352,0,7308,7310,3,816,408,0, - 7309,7307,1,0,0,0,7309,7308,1,0,0,0,7310,703,1,0,0,0,7311,7313,5, - 2,0,0,7312,7314,3,816,408,0,7313,7312,1,0,0,0,7313,7314,1,0,0,0, - 7314,7318,1,0,0,0,7315,7316,5,285,0,0,7316,7317,5,147,0,0,7317,7319, - 3,726,363,0,7318,7315,1,0,0,0,7318,7319,1,0,0,0,7319,7321,1,0,0, - 0,7320,7322,3,580,290,0,7321,7320,1,0,0,0,7321,7322,1,0,0,0,7322, - 7324,1,0,0,0,7323,7325,3,706,353,0,7324,7323,1,0,0,0,7324,7325,1, - 0,0,0,7325,7326,1,0,0,0,7326,7327,5,3,0,0,7327,705,1,0,0,0,7328, - 7333,7,103,0,0,7329,7330,5,387,0,0,7330,7331,3,708,354,0,7331,7332, - 5,33,0,0,7332,7334,1,0,0,0,7333,7329,1,0,0,0,7333,7334,1,0,0,0,7334, - 7335,1,0,0,0,7335,7336,3,708,354,0,7336,7346,1,0,0,0,7337,7344,5, - 199,0,0,7338,7339,5,434,0,0,7339,7345,5,414,0,0,7340,7345,5,66,0, - 0,7341,7345,5,467,0,0,7342,7343,5,269,0,0,7343,7345,5,482,0,0,7344, - 7338,1,0,0,0,7344,7340,1,0,0,0,7344,7341,1,0,0,0,7344,7342,1,0,0, - 0,7345,7347,1,0,0,0,7346,7337,1,0,0,0,7346,7347,1,0,0,0,7347,707, - 1,0,0,0,7348,7351,5,362,0,0,7349,7351,3,668,334,0,7350,7348,1,0, - 0,0,7350,7349,1,0,0,0,7351,7352,1,0,0,0,7352,7356,7,104,0,0,7353, - 7354,5,434,0,0,7354,7356,5,414,0,0,7355,7350,1,0,0,0,7355,7353,1, - 0,0,0,7356,709,1,0,0,0,7357,7365,3,712,356,0,7358,7359,5,2,0,0,7359, - 7360,3,726,363,0,7360,7361,5,6,0,0,7361,7362,3,668,334,0,7362,7363, - 5,3,0,0,7363,7365,1,0,0,0,7364,7357,1,0,0,0,7364,7358,1,0,0,0,7365, - 711,1,0,0,0,7366,7367,5,414,0,0,7367,7369,5,2,0,0,7368,7370,3,726, - 363,0,7369,7368,1,0,0,0,7369,7370,1,0,0,0,7370,7371,1,0,0,0,7371, - 7372,5,3,0,0,7372,713,1,0,0,0,7373,7374,7,105,0,0,7374,715,1,0,0, - 0,7375,7378,5,29,0,0,7376,7378,3,718,359,0,7377,7375,1,0,0,0,7377, - 7376,1,0,0,0,7378,717,1,0,0,0,7379,7380,7,106,0,0,7380,719,1,0,0, - 0,7381,7388,5,29,0,0,7382,7383,5,278,0,0,7383,7384,5,2,0,0,7384, - 7385,3,408,204,0,7385,7386,5,3,0,0,7386,7388,1,0,0,0,7387,7381,1, - 0,0,0,7387,7382,1,0,0,0,7388,721,1,0,0,0,7389,7396,3,716,358,0,7390, - 7391,5,278,0,0,7391,7392,5,2,0,0,7392,7393,3,408,204,0,7393,7394, - 5,3,0,0,7394,7396,1,0,0,0,7395,7389,1,0,0,0,7395,7390,1,0,0,0,7396, - 723,1,0,0,0,7397,7403,3,722,361,0,7398,7400,5,77,0,0,7399,7398,1, - 0,0,0,7399,7400,1,0,0,0,7400,7401,1,0,0,0,7401,7403,7,107,0,0,7402, - 7397,1,0,0,0,7402,7399,1,0,0,0,7403,725,1,0,0,0,7404,7409,3,668, - 334,0,7405,7406,5,6,0,0,7406,7408,3,668,334,0,7407,7405,1,0,0,0, - 7408,7411,1,0,0,0,7409,7407,1,0,0,0,7409,7410,1,0,0,0,7410,727,1, - 0,0,0,7411,7409,1,0,0,0,7412,7413,5,2,0,0,7413,7414,3,668,334,0, - 7414,7415,5,3,0,0,7415,7418,1,0,0,0,7416,7418,3,796,398,0,7417,7412, - 1,0,0,0,7417,7416,1,0,0,0,7418,729,1,0,0,0,7419,7422,3,668,334,0, - 7420,7422,3,796,398,0,7421,7419,1,0,0,0,7421,7420,1,0,0,0,7422,731, - 1,0,0,0,7423,7428,3,734,367,0,7424,7425,5,6,0,0,7425,7427,3,734, - 367,0,7426,7424,1,0,0,0,7427,7430,1,0,0,0,7428,7426,1,0,0,0,7428, - 7429,1,0,0,0,7429,733,1,0,0,0,7430,7428,1,0,0,0,7431,7439,3,796, - 398,0,7432,7439,3,668,334,0,7433,7436,3,818,409,0,7434,7435,7,108, - 0,0,7435,7437,3,668,334,0,7436,7434,1,0,0,0,7436,7437,1,0,0,0,7437, - 7439,1,0,0,0,7438,7431,1,0,0,0,7438,7432,1,0,0,0,7438,7433,1,0,0, - 0,7439,735,1,0,0,0,7440,7450,5,4,0,0,7441,7451,3,726,363,0,7442, - 7447,3,736,368,0,7443,7444,5,6,0,0,7444,7446,3,736,368,0,7445,7443, - 1,0,0,0,7446,7449,1,0,0,0,7447,7445,1,0,0,0,7447,7448,1,0,0,0,7448, - 7451,1,0,0,0,7449,7447,1,0,0,0,7450,7441,1,0,0,0,7450,7442,1,0,0, - 0,7450,7451,1,0,0,0,7451,7452,1,0,0,0,7452,7453,5,5,0,0,7453,737, - 1,0,0,0,7454,7463,3,824,412,0,7455,7463,5,384,0,0,7456,7463,5,264, - 0,0,7457,7463,5,176,0,0,7458,7463,5,218,0,0,7459,7463,5,261,0,0, - 7460,7463,5,326,0,0,7461,7463,3,806,403,0,7462,7454,1,0,0,0,7462, - 7455,1,0,0,0,7462,7456,1,0,0,0,7462,7457,1,0,0,0,7462,7458,1,0,0, - 0,7462,7459,1,0,0,0,7462,7460,1,0,0,0,7462,7461,1,0,0,0,7463,739, - 1,0,0,0,7464,7465,7,109,0,0,7465,741,1,0,0,0,7466,7467,3,668,334, - 0,7467,7468,5,64,0,0,7468,7471,3,668,334,0,7469,7470,5,62,0,0,7470, - 7472,3,668,334,0,7471,7469,1,0,0,0,7471,7472,1,0,0,0,7472,7488,1, - 0,0,0,7473,7474,3,668,334,0,7474,7475,5,62,0,0,7475,7478,3,668,334, - 0,7476,7477,5,64,0,0,7477,7479,3,668,334,0,7478,7476,1,0,0,0,7478, - 7479,1,0,0,0,7479,7488,1,0,0,0,7480,7481,3,668,334,0,7481,7482,5, - 127,0,0,7482,7483,3,668,334,0,7483,7484,5,197,0,0,7484,7485,3,668, - 334,0,7485,7488,1,0,0,0,7486,7488,3,726,363,0,7487,7466,1,0,0,0, - 7487,7473,1,0,0,0,7487,7480,1,0,0,0,7487,7486,1,0,0,0,7488,743,1, - 0,0,0,7489,7490,5,102,0,0,7490,7491,3,668,334,0,7491,7492,5,93,0, - 0,7492,7493,3,668,334,0,7493,745,1,0,0,0,7494,7497,5,11,0,0,7495, - 7498,3,822,411,0,7496,7498,5,9,0,0,7497,7495,1,0,0,0,7497,7496,1, - 0,0,0,7498,7512,1,0,0,0,7499,7508,5,4,0,0,7500,7509,3,668,334,0, - 7501,7503,3,668,334,0,7502,7501,1,0,0,0,7502,7503,1,0,0,0,7503,7504, - 1,0,0,0,7504,7506,5,8,0,0,7505,7507,3,668,334,0,7506,7505,1,0,0, - 0,7506,7507,1,0,0,0,7507,7509,1,0,0,0,7508,7500,1,0,0,0,7508,7502, - 1,0,0,0,7509,7510,1,0,0,0,7510,7512,5,5,0,0,7511,7494,1,0,0,0,7511, - 7499,1,0,0,0,7512,747,1,0,0,0,7513,7515,3,746,373,0,7514,7513,1, - 0,0,0,7515,7516,1,0,0,0,7516,7514,1,0,0,0,7516,7517,1,0,0,0,7517, - 749,1,0,0,0,7518,7520,3,746,373,0,7519,7518,1,0,0,0,7520,7523,1, - 0,0,0,7521,7519,1,0,0,0,7521,7522,1,0,0,0,7522,751,1,0,0,0,7523, - 7521,1,0,0,0,7524,7529,3,754,377,0,7525,7526,5,6,0,0,7526,7528,3, - 754,377,0,7527,7525,1,0,0,0,7528,7531,1,0,0,0,7529,7527,1,0,0,0, - 7529,7530,1,0,0,0,7530,753,1,0,0,0,7531,7529,1,0,0,0,7532,7537,3, - 730,365,0,7533,7534,5,36,0,0,7534,7538,3,822,411,0,7535,7538,3,824, - 412,0,7536,7538,1,0,0,0,7537,7533,1,0,0,0,7537,7535,1,0,0,0,7537, - 7536,1,0,0,0,7538,7541,1,0,0,0,7539,7541,5,9,0,0,7540,7532,1,0,0, - 0,7540,7539,1,0,0,0,7541,755,1,0,0,0,7542,7547,3,776,388,0,7543, - 7544,5,6,0,0,7544,7546,3,776,388,0,7545,7543,1,0,0,0,7546,7549,1, - 0,0,0,7547,7545,1,0,0,0,7547,7548,1,0,0,0,7548,757,1,0,0,0,7549, - 7547,1,0,0,0,7550,7555,3,770,385,0,7551,7552,5,6,0,0,7552,7554,3, - 770,385,0,7553,7551,1,0,0,0,7554,7557,1,0,0,0,7555,7553,1,0,0,0, - 7555,7556,1,0,0,0,7556,759,1,0,0,0,7557,7555,1,0,0,0,7558,7563,3, - 786,393,0,7559,7560,5,6,0,0,7560,7562,3,786,393,0,7561,7559,1,0, - 0,0,7562,7565,1,0,0,0,7563,7561,1,0,0,0,7563,7564,1,0,0,0,7564,761, - 1,0,0,0,7565,7563,1,0,0,0,7566,7571,3,784,392,0,7567,7568,5,6,0, - 0,7568,7570,3,784,392,0,7569,7567,1,0,0,0,7570,7573,1,0,0,0,7571, - 7569,1,0,0,0,7571,7572,1,0,0,0,7572,763,1,0,0,0,7573,7571,1,0,0, - 0,7574,7575,3,776,388,0,7575,765,1,0,0,0,7576,7577,3,776,388,0,7577, - 767,1,0,0,0,7578,7579,3,776,388,0,7579,769,1,0,0,0,7580,7581,3,776, - 388,0,7581,771,1,0,0,0,7582,7583,3,776,388,0,7583,773,1,0,0,0,7584, - 7585,3,310,155,0,7585,775,1,0,0,0,7586,7588,3,816,408,0,7587,7589, - 3,748,374,0,7588,7587,1,0,0,0,7588,7589,1,0,0,0,7589,777,1,0,0,0, - 7590,7595,3,766,383,0,7591,7592,5,6,0,0,7592,7594,3,766,383,0,7593, - 7591,1,0,0,0,7594,7597,1,0,0,0,7595,7593,1,0,0,0,7595,7596,1,0,0, - 0,7596,779,1,0,0,0,7597,7595,1,0,0,0,7598,7603,3,816,408,0,7599, - 7600,5,6,0,0,7600,7602,3,816,408,0,7601,7599,1,0,0,0,7602,7605,1, - 0,0,0,7603,7601,1,0,0,0,7603,7604,1,0,0,0,7604,781,1,0,0,0,7605, - 7603,1,0,0,0,7606,7607,3,310,155,0,7607,783,1,0,0,0,7608,7609,3, - 310,155,0,7609,785,1,0,0,0,7610,7611,3,310,155,0,7611,787,1,0,0, - 0,7612,7613,3,816,408,0,7613,789,1,0,0,0,7614,7615,3,816,408,0,7615, - 791,1,0,0,0,7616,7621,3,818,409,0,7617,7618,3,816,408,0,7618,7619, - 3,748,374,0,7619,7621,1,0,0,0,7620,7616,1,0,0,0,7620,7617,1,0,0, - 0,7621,793,1,0,0,0,7622,7627,3,818,409,0,7623,7624,3,816,408,0,7624, - 7625,3,748,374,0,7625,7627,1,0,0,0,7626,7622,1,0,0,0,7626,7623,1, - 0,0,0,7627,795,1,0,0,0,7628,7629,3,816,408,0,7629,7630,3,750,375, - 0,7630,7633,1,0,0,0,7631,7633,4,398,10,0,7632,7628,1,0,0,0,7632, - 7631,1,0,0,0,7633,797,1,0,0,0,7634,7635,3,816,408,0,7635,7636,3, - 750,375,0,7636,799,1,0,0,0,7637,7638,3,816,408,0,7638,801,1,0,0, - 0,7639,7644,3,818,409,0,7640,7641,3,816,408,0,7641,7642,3,748,374, - 0,7642,7644,1,0,0,0,7643,7639,1,0,0,0,7643,7640,1,0,0,0,7644,803, - 1,0,0,0,7645,7650,3,818,409,0,7646,7647,3,816,408,0,7647,7648,3, - 748,374,0,7648,7650,1,0,0,0,7649,7645,1,0,0,0,7649,7646,1,0,0,0, - 7650,805,1,0,0,0,7651,7654,3,808,404,0,7652,7653,5,487,0,0,7653, - 7655,3,808,404,0,7654,7652,1,0,0,0,7654,7655,1,0,0,0,7655,807,1, - 0,0,0,7656,7668,5,561,0,0,7657,7668,5,563,0,0,7658,7662,5,565,0, - 0,7659,7661,5,590,0,0,7660,7659,1,0,0,0,7661,7664,1,0,0,0,7662,7660, - 1,0,0,0,7662,7663,1,0,0,0,7663,7665,1,0,0,0,7664,7662,1,0,0,0,7665, - 7668,5,591,0,0,7666,7668,5,586,0,0,7667,7656,1,0,0,0,7667,7657,1, - 0,0,0,7667,7658,1,0,0,0,7667,7666,1,0,0,0,7668,809,1,0,0,0,7669, - 7671,7,30,0,0,7670,7669,1,0,0,0,7670,7671,1,0,0,0,7671,7672,1,0, - 0,0,7672,7673,5,574,0,0,7673,811,1,0,0,0,7674,7680,3,820,410,0,7675, - 7680,5,52,0,0,7676,7680,5,49,0,0,7677,7680,5,89,0,0,7678,7680,5, - 524,0,0,7679,7674,1,0,0,0,7679,7675,1,0,0,0,7679,7676,1,0,0,0,7679, - 7677,1,0,0,0,7679,7678,1,0,0,0,7680,813,1,0,0,0,7681,7686,3,812, - 406,0,7682,7683,5,6,0,0,7683,7685,3,812,406,0,7684,7682,1,0,0,0, - 7685,7688,1,0,0,0,7686,7684,1,0,0,0,7686,7687,1,0,0,0,7687,815,1, - 0,0,0,7688,7686,1,0,0,0,7689,7692,3,824,412,0,7690,7692,3,828,414, - 0,7691,7689,1,0,0,0,7691,7690,1,0,0,0,7692,817,1,0,0,0,7693,7696, - 3,824,412,0,7694,7696,3,830,415,0,7695,7693,1,0,0,0,7695,7694,1, - 0,0,0,7696,819,1,0,0,0,7697,7701,3,824,412,0,7698,7701,3,828,414, - 0,7699,7701,3,830,415,0,7700,7697,1,0,0,0,7700,7698,1,0,0,0,7700, - 7699,1,0,0,0,7701,821,1,0,0,0,7702,7707,3,824,412,0,7703,7707,3, - 828,414,0,7704,7707,3,830,415,0,7705,7707,3,832,416,0,7706,7702, - 1,0,0,0,7706,7703,1,0,0,0,7706,7704,1,0,0,0,7706,7705,1,0,0,0,7707, - 823,1,0,0,0,7708,7711,5,552,0,0,7709,7710,5,487,0,0,7710,7712,3, - 808,404,0,7711,7709,1,0,0,0,7711,7712,1,0,0,0,7712,7720,1,0,0,0, - 7713,7720,3,806,403,0,7714,7720,5,553,0,0,7715,7720,5,557,0,0,7716, - 7720,5,577,0,0,7717,7720,5,578,0,0,7718,7720,3,826,413,0,7719,7708, - 1,0,0,0,7719,7713,1,0,0,0,7719,7714,1,0,0,0,7719,7715,1,0,0,0,7719, - 7716,1,0,0,0,7719,7717,1,0,0,0,7719,7718,1,0,0,0,7720,825,1,0,0, - 0,7721,7722,7,110,0,0,7722,827,1,0,0,0,7723,7775,5,387,0,0,7724, - 7775,5,388,0,0,7725,7775,3,656,328,0,7726,7775,5,390,0,0,7727,7775, - 5,391,0,0,7728,7775,3,658,329,0,7729,7775,5,393,0,0,7730,7775,5, - 394,0,0,7731,7775,5,395,0,0,7732,7775,5,396,0,0,7733,7775,5,397, - 0,0,7734,7775,5,398,0,0,7735,7775,5,399,0,0,7736,7775,5,470,0,0, - 7737,7775,5,400,0,0,7738,7775,5,401,0,0,7739,7775,5,402,0,0,7740, - 7775,5,403,0,0,7741,7775,5,404,0,0,7742,7775,5,405,0,0,7743,7775, - 5,406,0,0,7744,7775,5,407,0,0,7745,7775,5,489,0,0,7746,7775,5,408, - 0,0,7747,7775,3,652,326,0,7748,7775,5,453,0,0,7749,7775,5,410,0, - 0,7750,7775,5,411,0,0,7751,7775,5,412,0,0,7752,7775,5,413,0,0,7753, - 7775,5,414,0,0,7754,7775,5,415,0,0,7755,7775,5,416,0,0,7756,7775, - 5,417,0,0,7757,7775,5,418,0,0,7758,7775,5,419,0,0,7759,7775,5,420, - 0,0,7760,7775,5,421,0,0,7761,7775,5,422,0,0,7762,7775,5,423,0,0, - 7763,7775,5,424,0,0,7764,7775,5,425,0,0,7765,7775,5,426,0,0,7766, - 7775,5,427,0,0,7767,7775,5,428,0,0,7768,7775,5,476,0,0,7769,7775, - 5,429,0,0,7770,7775,5,430,0,0,7771,7775,5,431,0,0,7772,7775,5,432, - 0,0,7773,7775,5,474,0,0,7774,7723,1,0,0,0,7774,7724,1,0,0,0,7774, - 7725,1,0,0,0,7774,7726,1,0,0,0,7774,7727,1,0,0,0,7774,7728,1,0,0, - 0,7774,7729,1,0,0,0,7774,7730,1,0,0,0,7774,7731,1,0,0,0,7774,7732, - 1,0,0,0,7774,7733,1,0,0,0,7774,7734,1,0,0,0,7774,7735,1,0,0,0,7774, - 7736,1,0,0,0,7774,7737,1,0,0,0,7774,7738,1,0,0,0,7774,7739,1,0,0, - 0,7774,7740,1,0,0,0,7774,7741,1,0,0,0,7774,7742,1,0,0,0,7774,7743, - 1,0,0,0,7774,7744,1,0,0,0,7774,7745,1,0,0,0,7774,7746,1,0,0,0,7774, - 7747,1,0,0,0,7774,7748,1,0,0,0,7774,7749,1,0,0,0,7774,7750,1,0,0, - 0,7774,7751,1,0,0,0,7774,7752,1,0,0,0,7774,7753,1,0,0,0,7774,7754, - 1,0,0,0,7774,7755,1,0,0,0,7774,7756,1,0,0,0,7774,7757,1,0,0,0,7774, - 7758,1,0,0,0,7774,7759,1,0,0,0,7774,7760,1,0,0,0,7774,7761,1,0,0, - 0,7774,7762,1,0,0,0,7774,7763,1,0,0,0,7774,7764,1,0,0,0,7774,7765, - 1,0,0,0,7774,7766,1,0,0,0,7774,7767,1,0,0,0,7774,7768,1,0,0,0,7774, - 7769,1,0,0,0,7774,7770,1,0,0,0,7774,7771,1,0,0,0,7774,7772,1,0,0, - 0,7774,7773,1,0,0,0,7775,829,1,0,0,0,7776,7777,7,111,0,0,7777,831, - 1,0,0,0,7778,7779,7,112,0,0,7779,833,1,0,0,0,7780,7782,3,836,418, - 0,7781,7780,1,0,0,0,7781,7782,1,0,0,0,7782,7793,1,0,0,0,7783,7791, - 5,178,0,0,7784,7788,3,838,419,0,7785,7788,5,178,0,0,7786,7788,3, - 836,418,0,7787,7784,1,0,0,0,7787,7785,1,0,0,0,7787,7786,1,0,0,0, - 7788,7789,1,0,0,0,7789,7787,1,0,0,0,7789,7790,1,0,0,0,7790,7792, - 1,0,0,0,7791,7787,1,0,0,0,7791,7792,1,0,0,0,7792,7794,1,0,0,0,7793, - 7783,1,0,0,0,7793,7794,1,0,0,0,7794,7795,1,0,0,0,7795,7799,5,146, - 0,0,7796,7798,3,844,422,0,7797,7796,1,0,0,0,7798,7801,1,0,0,0,7799, - 7797,1,0,0,0,7799,7800,1,0,0,0,7800,7803,1,0,0,0,7801,7799,1,0,0, - 0,7802,7804,3,922,461,0,7803,7802,1,0,0,0,7803,7804,1,0,0,0,7804, - 7805,1,0,0,0,7805,7807,5,454,0,0,7806,7808,3,926,463,0,7807,7806, - 1,0,0,0,7807,7808,1,0,0,0,7808,835,1,0,0,0,7809,7810,5,18,0,0,7810, - 7811,3,926,463,0,7811,7812,5,19,0,0,7812,837,1,0,0,0,7813,7860,3, - 926,463,0,7814,7815,5,496,0,0,7815,7818,5,62,0,0,7816,7819,5,28, - 0,0,7817,7819,3,816,408,0,7818,7816,1,0,0,0,7818,7817,1,0,0,0,7819, - 7861,1,0,0,0,7820,7822,5,497,0,0,7821,7820,1,0,0,0,7821,7822,1,0, - 0,0,7822,7823,1,0,0,0,7823,7825,3,646,323,0,7824,7826,3,90,45,0, - 7825,7824,1,0,0,0,7825,7826,1,0,0,0,7826,7829,1,0,0,0,7827,7828, - 5,77,0,0,7828,7830,5,78,0,0,7829,7827,1,0,0,0,7829,7830,1,0,0,0, - 7830,7836,1,0,0,0,7831,7834,3,842,421,0,7832,7834,5,53,0,0,7833, - 7831,1,0,0,0,7833,7832,1,0,0,0,7834,7835,1,0,0,0,7835,7837,3,928, - 464,0,7836,7833,1,0,0,0,7836,7837,1,0,0,0,7837,7861,1,0,0,0,7838, - 7840,5,269,0,0,7839,7838,1,0,0,0,7839,7840,1,0,0,0,7840,7841,1,0, - 0,0,7841,7843,5,324,0,0,7842,7839,1,0,0,0,7842,7843,1,0,0,0,7843, - 7844,1,0,0,0,7844,7856,5,172,0,0,7845,7846,5,2,0,0,7846,7851,3,840, - 420,0,7847,7848,5,6,0,0,7848,7850,3,840,420,0,7849,7847,1,0,0,0, - 7850,7853,1,0,0,0,7851,7849,1,0,0,0,7851,7852,1,0,0,0,7852,7854, - 1,0,0,0,7853,7851,1,0,0,0,7854,7855,5,3,0,0,7855,7857,1,0,0,0,7856, - 7845,1,0,0,0,7856,7857,1,0,0,0,7857,7858,1,0,0,0,7858,7859,7,113, - 0,0,7859,7861,3,554,277,0,7860,7814,1,0,0,0,7860,7821,1,0,0,0,7860, - 7842,1,0,0,0,7861,7862,1,0,0,0,7862,7863,5,7,0,0,7863,839,1,0,0, - 0,7864,7865,3,926,463,0,7865,7866,3,646,323,0,7866,841,1,0,0,0,7867, - 7868,7,114,0,0,7868,843,1,0,0,0,7869,7870,3,834,417,0,7870,7871, - 5,7,0,0,7871,7894,1,0,0,0,7872,7894,3,872,436,0,7873,7894,3,874, - 437,0,7874,7894,3,850,425,0,7875,7894,3,858,429,0,7876,7894,3,862, - 431,0,7877,7894,3,864,432,0,7878,7894,3,868,434,0,7879,7894,3,870, - 435,0,7880,7894,3,878,439,0,7881,7894,3,882,441,0,7882,7894,3,884, - 442,0,7883,7894,3,846,423,0,7884,7894,3,848,424,0,7885,7894,3,852, - 426,0,7886,7894,3,888,444,0,7887,7894,3,892,446,0,7888,7894,3,896, - 448,0,7889,7894,3,912,456,0,7890,7894,3,914,457,0,7891,7894,3,916, - 458,0,7892,7894,3,918,459,0,7893,7869,1,0,0,0,7893,7872,1,0,0,0, - 7893,7873,1,0,0,0,7893,7874,1,0,0,0,7893,7875,1,0,0,0,7893,7876, - 1,0,0,0,7893,7877,1,0,0,0,7893,7878,1,0,0,0,7893,7879,1,0,0,0,7893, - 7880,1,0,0,0,7893,7881,1,0,0,0,7893,7882,1,0,0,0,7893,7883,1,0,0, - 0,7893,7884,1,0,0,0,7893,7885,1,0,0,0,7893,7886,1,0,0,0,7893,7887, - 1,0,0,0,7893,7888,1,0,0,0,7893,7889,1,0,0,0,7893,7890,1,0,0,0,7893, - 7891,1,0,0,0,7893,7892,1,0,0,0,7894,845,1,0,0,0,7895,7896,5,498, - 0,0,7896,7897,3,928,464,0,7897,7898,5,7,0,0,7898,847,1,0,0,0,7899, - 7900,5,433,0,0,7900,7907,3,926,463,0,7901,7903,5,2,0,0,7902,7904, - 3,726,363,0,7903,7902,1,0,0,0,7903,7904,1,0,0,0,7904,7905,1,0,0, - 0,7905,7906,5,3,0,0,7906,7908,5,7,0,0,7907,7901,1,0,0,0,7907,7908, - 1,0,0,0,7908,7919,1,0,0,0,7909,7910,5,57,0,0,7910,7911,3,926,463, - 0,7911,7913,5,2,0,0,7912,7914,3,726,363,0,7913,7912,1,0,0,0,7913, - 7914,1,0,0,0,7914,7915,1,0,0,0,7915,7916,5,3,0,0,7916,7917,5,7,0, - 0,7917,7919,1,0,0,0,7918,7899,1,0,0,0,7918,7909,1,0,0,0,7919,849, - 1,0,0,0,7920,7921,3,856,428,0,7921,7922,3,842,421,0,7922,7923,3, - 928,464,0,7923,7924,5,7,0,0,7924,851,1,0,0,0,7925,7927,5,499,0,0, - 7926,7928,7,115,0,0,7927,7926,1,0,0,0,7927,7928,1,0,0,0,7928,7929, - 1,0,0,0,7929,7930,5,500,0,0,7930,7935,3,854,427,0,7931,7932,5,6, - 0,0,7932,7934,3,854,427,0,7933,7931,1,0,0,0,7934,7937,1,0,0,0,7935, - 7933,1,0,0,0,7935,7936,1,0,0,0,7936,7938,1,0,0,0,7937,7935,1,0,0, - 0,7938,7939,5,7,0,0,7939,853,1,0,0,0,7940,7941,3,856,428,0,7941, - 7942,3,842,421,0,7942,7943,3,816,408,0,7943,855,1,0,0,0,7944,7947, - 3,310,155,0,7945,7947,5,28,0,0,7946,7944,1,0,0,0,7946,7945,1,0,0, - 0,7947,7954,1,0,0,0,7948,7949,5,4,0,0,7949,7950,3,668,334,0,7950, - 7951,5,5,0,0,7951,7953,1,0,0,0,7952,7948,1,0,0,0,7953,7956,1,0,0, - 0,7954,7952,1,0,0,0,7954,7955,1,0,0,0,7955,857,1,0,0,0,7956,7954, - 1,0,0,0,7957,7958,5,220,0,0,7958,7959,3,928,464,0,7959,7963,5,93, - 0,0,7960,7962,3,844,422,0,7961,7960,1,0,0,0,7962,7965,1,0,0,0,7963, - 7961,1,0,0,0,7963,7964,1,0,0,0,7964,7977,1,0,0,0,7965,7963,1,0,0, - 0,7966,7967,5,502,0,0,7967,7968,3,668,334,0,7968,7972,5,93,0,0,7969, - 7971,3,844,422,0,7970,7969,1,0,0,0,7971,7974,1,0,0,0,7972,7970,1, - 0,0,0,7972,7973,1,0,0,0,7973,7976,1,0,0,0,7974,7972,1,0,0,0,7975, - 7966,1,0,0,0,7976,7979,1,0,0,0,7977,7975,1,0,0,0,7977,7978,1,0,0, - 0,7978,7981,1,0,0,0,7979,7977,1,0,0,0,7980,7982,3,860,430,0,7981, - 7980,1,0,0,0,7981,7982,1,0,0,0,7982,7983,1,0,0,0,7983,7984,5,454, - 0,0,7984,7985,5,220,0,0,7985,7986,5,7,0,0,7986,859,1,0,0,0,7987, - 7991,5,58,0,0,7988,7990,3,844,422,0,7989,7988,1,0,0,0,7990,7993, - 1,0,0,0,7991,7989,1,0,0,0,7991,7992,1,0,0,0,7992,861,1,0,0,0,7993, - 7991,1,0,0,0,7994,7996,5,40,0,0,7995,7997,3,928,464,0,7996,7995, - 1,0,0,0,7996,7997,1,0,0,0,7997,8007,1,0,0,0,7998,7999,5,102,0,0, - 7999,8000,3,726,363,0,8000,8004,5,93,0,0,8001,8003,3,844,422,0,8002, - 8001,1,0,0,0,8003,8006,1,0,0,0,8004,8002,1,0,0,0,8004,8005,1,0,0, - 0,8005,8008,1,0,0,0,8006,8004,1,0,0,0,8007,7998,1,0,0,0,8008,8009, - 1,0,0,0,8009,8007,1,0,0,0,8009,8010,1,0,0,0,8010,8012,1,0,0,0,8011, - 8013,3,860,430,0,8012,8011,1,0,0,0,8012,8013,1,0,0,0,8013,8014,1, - 0,0,0,8014,8015,5,454,0,0,8015,8016,5,40,0,0,8016,8017,5,7,0,0,8017, - 863,1,0,0,0,8018,8020,3,836,418,0,8019,8018,1,0,0,0,8019,8020,1, - 0,0,0,8020,8025,1,0,0,0,8021,8022,5,503,0,0,8022,8026,3,668,334, - 0,8023,8024,5,62,0,0,8024,8026,3,866,433,0,8025,8021,1,0,0,0,8025, - 8023,1,0,0,0,8025,8026,1,0,0,0,8026,8027,1,0,0,0,8027,8028,3,880, - 440,0,8028,865,1,0,0,0,8029,8030,3,308,154,0,8030,8053,5,68,0,0, - 8031,8033,3,816,408,0,8032,8034,3,528,264,0,8033,8032,1,0,0,0,8033, - 8034,1,0,0,0,8034,8054,1,0,0,0,8035,8054,3,554,277,0,8036,8054,3, - 514,257,0,8037,8038,5,202,0,0,8038,8041,3,668,334,0,8039,8040,5, - 100,0,0,8040,8042,3,726,363,0,8041,8039,1,0,0,0,8041,8042,1,0,0, - 0,8042,8054,1,0,0,0,8043,8045,5,504,0,0,8044,8043,1,0,0,0,8044,8045, - 1,0,0,0,8045,8046,1,0,0,0,8046,8047,3,668,334,0,8047,8048,5,24,0, - 0,8048,8051,3,668,334,0,8049,8050,5,147,0,0,8050,8052,3,668,334, - 0,8051,8049,1,0,0,0,8051,8052,1,0,0,0,8052,8054,1,0,0,0,8053,8031, - 1,0,0,0,8053,8035,1,0,0,0,8053,8036,1,0,0,0,8053,8037,1,0,0,0,8053, - 8044,1,0,0,0,8054,867,1,0,0,0,8055,8057,3,836,418,0,8056,8055,1, - 0,0,0,8056,8057,1,0,0,0,8057,8058,1,0,0,0,8058,8059,5,505,0,0,8059, - 8062,3,308,154,0,8060,8061,5,506,0,0,8061,8063,5,574,0,0,8062,8060, - 1,0,0,0,8062,8063,1,0,0,0,8063,8064,1,0,0,0,8064,8065,5,68,0,0,8065, - 8066,5,35,0,0,8066,8067,3,668,334,0,8067,8068,3,880,440,0,8068,869, - 1,0,0,0,8069,8071,7,116,0,0,8070,8072,3,926,463,0,8071,8070,1,0, - 0,0,8071,8072,1,0,0,0,8072,8075,1,0,0,0,8073,8074,5,102,0,0,8074, - 8076,3,928,464,0,8075,8073,1,0,0,0,8075,8076,1,0,0,0,8076,8077,1, - 0,0,0,8077,8078,5,7,0,0,8078,871,1,0,0,0,8079,8094,5,508,0,0,8080, - 8081,5,268,0,0,8081,8095,3,928,464,0,8082,8089,5,509,0,0,8083,8084, - 5,202,0,0,8084,8085,3,668,334,0,8085,8086,5,100,0,0,8086,8087,3, - 726,363,0,8087,8090,1,0,0,0,8088,8090,3,554,277,0,8089,8083,1,0, - 0,0,8089,8088,1,0,0,0,8090,8095,1,0,0,0,8091,8093,3,928,464,0,8092, - 8091,1,0,0,0,8092,8093,1,0,0,0,8093,8095,1,0,0,0,8094,8080,1,0,0, - 0,8094,8082,1,0,0,0,8094,8092,1,0,0,0,8095,8096,1,0,0,0,8096,8097, - 5,7,0,0,8097,873,1,0,0,0,8098,8128,5,510,0,0,8099,8101,7,117,0,0, - 8100,8099,1,0,0,0,8100,8101,1,0,0,0,8101,8114,1,0,0,0,8102,8115, - 3,824,412,0,8103,8104,5,511,0,0,8104,8115,3,806,403,0,8105,8112, - 3,806,403,0,8106,8107,5,6,0,0,8107,8109,3,668,334,0,8108,8106,1, - 0,0,0,8109,8110,1,0,0,0,8110,8108,1,0,0,0,8110,8111,1,0,0,0,8111, - 8113,1,0,0,0,8112,8108,1,0,0,0,8112,8113,1,0,0,0,8113,8115,1,0,0, - 0,8114,8102,1,0,0,0,8114,8103,1,0,0,0,8114,8105,1,0,0,0,8114,8115, - 1,0,0,0,8115,8125,1,0,0,0,8116,8117,5,100,0,0,8117,8122,3,876,438, - 0,8118,8119,5,6,0,0,8119,8121,3,876,438,0,8120,8118,1,0,0,0,8121, - 8124,1,0,0,0,8122,8120,1,0,0,0,8122,8123,1,0,0,0,8123,8126,1,0,0, - 0,8124,8122,1,0,0,0,8125,8116,1,0,0,0,8125,8126,1,0,0,0,8126,8127, - 1,0,0,0,8127,8129,5,7,0,0,8128,8100,1,0,0,0,8128,8129,1,0,0,0,8129, - 875,1,0,0,0,8130,8131,3,824,412,0,8131,8132,5,10,0,0,8132,8133,3, - 668,334,0,8133,877,1,0,0,0,8134,8135,5,518,0,0,8135,8138,3,928,464, - 0,8136,8137,5,6,0,0,8137,8139,3,928,464,0,8138,8136,1,0,0,0,8138, - 8139,1,0,0,0,8139,8140,1,0,0,0,8140,8141,5,7,0,0,8141,879,1,0,0, - 0,8142,8146,5,519,0,0,8143,8145,3,844,422,0,8144,8143,1,0,0,0,8145, - 8148,1,0,0,0,8146,8144,1,0,0,0,8146,8147,1,0,0,0,8147,8149,1,0,0, - 0,8148,8146,1,0,0,0,8149,8150,5,454,0,0,8150,8152,5,519,0,0,8151, - 8153,3,926,463,0,8152,8151,1,0,0,0,8152,8153,1,0,0,0,8153,8154,1, - 0,0,0,8154,8155,5,7,0,0,8155,881,1,0,0,0,8156,8158,3,4,2,0,8157, - 8159,3,886,443,0,8158,8157,1,0,0,0,8158,8159,1,0,0,0,8159,8160,1, - 0,0,0,8160,8161,5,7,0,0,8161,883,1,0,0,0,8162,8163,5,202,0,0,8163, - 8179,3,668,334,0,8164,8166,3,886,443,0,8165,8164,1,0,0,0,8165,8166, - 1,0,0,0,8166,8169,1,0,0,0,8167,8168,5,100,0,0,8168,8170,3,726,363, - 0,8169,8167,1,0,0,0,8169,8170,1,0,0,0,8170,8180,1,0,0,0,8171,8172, - 5,100,0,0,8172,8174,3,726,363,0,8173,8171,1,0,0,0,8173,8174,1,0, - 0,0,8174,8176,1,0,0,0,8175,8177,3,886,443,0,8176,8175,1,0,0,0,8176, - 8177,1,0,0,0,8177,8180,1,0,0,0,8178,8180,1,0,0,0,8179,8165,1,0,0, - 0,8179,8173,1,0,0,0,8179,8178,1,0,0,0,8180,8181,1,0,0,0,8181,8182, - 5,7,0,0,8182,885,1,0,0,0,8183,8185,5,71,0,0,8184,8186,5,346,0,0, - 8185,8184,1,0,0,0,8185,8186,1,0,0,0,8186,8187,1,0,0,0,8187,8188, - 3,726,363,0,8188,887,1,0,0,0,8189,8221,5,520,0,0,8190,8195,3,920, - 460,0,8191,8193,5,269,0,0,8192,8191,1,0,0,0,8192,8193,1,0,0,0,8193, - 8194,1,0,0,0,8194,8196,5,324,0,0,8195,8192,1,0,0,0,8195,8196,1,0, - 0,0,8196,8197,1,0,0,0,8197,8205,5,62,0,0,8198,8206,3,554,277,0,8199, - 8200,5,202,0,0,8200,8203,3,928,464,0,8201,8202,5,100,0,0,8202,8204, - 3,726,363,0,8203,8201,1,0,0,0,8203,8204,1,0,0,0,8204,8206,1,0,0, - 0,8205,8198,1,0,0,0,8205,8199,1,0,0,0,8206,8222,1,0,0,0,8207,8219, - 3,816,408,0,8208,8209,5,2,0,0,8209,8214,3,890,445,0,8210,8211,5, - 6,0,0,8211,8213,3,890,445,0,8212,8210,1,0,0,0,8213,8216,1,0,0,0, - 8214,8212,1,0,0,0,8214,8215,1,0,0,0,8215,8217,1,0,0,0,8216,8214, - 1,0,0,0,8217,8218,5,3,0,0,8218,8220,1,0,0,0,8219,8208,1,0,0,0,8219, - 8220,1,0,0,0,8220,8222,1,0,0,0,8221,8190,1,0,0,0,8221,8207,1,0,0, - 0,8222,8223,1,0,0,0,8223,8224,5,7,0,0,8224,889,1,0,0,0,8225,8226, - 3,816,408,0,8226,8227,5,20,0,0,8227,8229,1,0,0,0,8228,8225,1,0,0, - 0,8228,8229,1,0,0,0,8229,8230,1,0,0,0,8230,8231,3,668,334,0,8231, - 891,1,0,0,0,8232,8234,5,61,0,0,8233,8235,3,894,447,0,8234,8233,1, - 0,0,0,8234,8235,1,0,0,0,8235,8237,1,0,0,0,8236,8238,3,326,163,0, - 8237,8236,1,0,0,0,8237,8238,1,0,0,0,8238,8239,1,0,0,0,8239,8240, - 3,920,460,0,8240,8241,5,71,0,0,8241,8242,3,726,363,0,8242,8243,5, - 7,0,0,8243,893,1,0,0,0,8244,8259,5,268,0,0,8245,8259,5,293,0,0,8246, - 8259,5,207,0,0,8247,8259,5,249,0,0,8248,8250,7,51,0,0,8249,8248, - 1,0,0,0,8249,8250,1,0,0,0,8250,8251,1,0,0,0,8251,8259,3,668,334, - 0,8252,8259,5,30,0,0,8253,8256,7,118,0,0,8254,8257,3,668,334,0,8255, - 8257,5,30,0,0,8256,8254,1,0,0,0,8256,8255,1,0,0,0,8256,8257,1,0, - 0,0,8257,8259,1,0,0,0,8258,8244,1,0,0,0,8258,8245,1,0,0,0,8258,8246, - 1,0,0,0,8258,8247,1,0,0,0,8258,8249,1,0,0,0,8258,8252,1,0,0,0,8258, - 8253,1,0,0,0,8259,895,1,0,0,0,8260,8262,5,265,0,0,8261,8263,3,894, - 447,0,8262,8261,1,0,0,0,8262,8263,1,0,0,0,8263,8264,1,0,0,0,8264, - 8265,3,920,460,0,8265,8266,5,7,0,0,8266,897,1,0,0,0,8267,8269,3, - 566,283,0,8268,8267,1,0,0,0,8268,8269,1,0,0,0,8269,8270,1,0,0,0, - 8270,8271,5,525,0,0,8271,8273,5,71,0,0,8272,8274,5,81,0,0,8273,8272, - 1,0,0,0,8273,8274,1,0,0,0,8274,8275,1,0,0,0,8275,8277,3,770,385, - 0,8276,8278,5,9,0,0,8277,8276,1,0,0,0,8277,8278,1,0,0,0,8278,8283, - 1,0,0,0,8279,8281,5,36,0,0,8280,8279,1,0,0,0,8280,8281,1,0,0,0,8281, - 8282,1,0,0,0,8282,8284,3,816,408,0,8283,8280,1,0,0,0,8283,8284,1, - 0,0,0,8284,8285,1,0,0,0,8285,8286,5,100,0,0,8286,8287,3,900,450, - 0,8287,8288,5,80,0,0,8288,8290,3,668,334,0,8289,8291,3,902,451,0, - 8290,8289,1,0,0,0,8291,8292,1,0,0,0,8292,8290,1,0,0,0,8292,8293, - 1,0,0,0,8293,8295,1,0,0,0,8294,8296,3,540,270,0,8295,8294,1,0,0, - 0,8295,8296,1,0,0,0,8296,899,1,0,0,0,8297,8299,5,81,0,0,8298,8297, - 1,0,0,0,8298,8299,1,0,0,0,8299,8300,1,0,0,0,8300,8302,3,770,385, - 0,8301,8303,5,9,0,0,8302,8301,1,0,0,0,8302,8303,1,0,0,0,8303,8309, - 1,0,0,0,8304,8307,3,558,279,0,8305,8307,3,602,301,0,8306,8304,1, - 0,0,0,8306,8305,1,0,0,0,8307,8309,1,0,0,0,8308,8298,1,0,0,0,8308, - 8306,1,0,0,0,8309,8314,1,0,0,0,8310,8312,5,36,0,0,8311,8310,1,0, - 0,0,8311,8312,1,0,0,0,8312,8313,1,0,0,0,8313,8315,3,816,408,0,8314, - 8311,1,0,0,0,8314,8315,1,0,0,0,8315,901,1,0,0,0,8316,8317,5,102, - 0,0,8317,8320,5,526,0,0,8318,8319,5,33,0,0,8319,8321,3,668,334,0, - 8320,8318,1,0,0,0,8320,8321,1,0,0,0,8321,8322,1,0,0,0,8322,8327, - 5,93,0,0,8323,8328,3,906,453,0,8324,8328,5,182,0,0,8325,8326,5,57, - 0,0,8326,8328,5,270,0,0,8327,8323,1,0,0,0,8327,8324,1,0,0,0,8327, - 8325,1,0,0,0,8328,8343,1,0,0,0,8329,8330,5,102,0,0,8330,8331,5,77, - 0,0,8331,8334,5,526,0,0,8332,8333,5,33,0,0,8333,8335,3,668,334,0, - 8334,8332,1,0,0,0,8334,8335,1,0,0,0,8335,8336,1,0,0,0,8336,8340, - 5,93,0,0,8337,8341,3,904,452,0,8338,8339,5,57,0,0,8339,8341,5,270, - 0,0,8340,8337,1,0,0,0,8340,8338,1,0,0,0,8341,8343,1,0,0,0,8342,8316, - 1,0,0,0,8342,8329,1,0,0,0,8343,903,1,0,0,0,8344,8346,5,241,0,0,8345, - 8347,3,138,69,0,8346,8345,1,0,0,0,8346,8347,1,0,0,0,8347,8351,1, - 0,0,0,8348,8349,5,463,0,0,8349,8350,7,77,0,0,8350,8352,5,450,0,0, - 8351,8348,1,0,0,0,8351,8352,1,0,0,0,8352,8353,1,0,0,0,8353,8354, - 3,908,454,0,8354,905,1,0,0,0,8355,8356,5,369,0,0,8356,8374,5,333, - 0,0,8357,8358,3,796,398,0,8358,8359,5,10,0,0,8359,8360,3,910,455, - 0,8360,8375,1,0,0,0,8361,8362,3,138,69,0,8362,8363,5,10,0,0,8363, - 8364,5,2,0,0,8364,8369,3,910,455,0,8365,8366,5,6,0,0,8366,8368,3, - 910,455,0,8367,8365,1,0,0,0,8368,8371,1,0,0,0,8369,8367,1,0,0,0, - 8369,8370,1,0,0,0,8370,8372,1,0,0,0,8371,8369,1,0,0,0,8372,8373, - 5,3,0,0,8373,8375,1,0,0,0,8374,8357,1,0,0,0,8374,8361,1,0,0,0,8375, - 8376,1,0,0,0,8376,8374,1,0,0,0,8376,8377,1,0,0,0,8377,907,1,0,0, - 0,8378,8379,5,422,0,0,8379,8380,5,2,0,0,8380,8385,3,910,455,0,8381, - 8382,5,6,0,0,8382,8384,3,910,455,0,8383,8381,1,0,0,0,8384,8387,1, - 0,0,0,8385,8383,1,0,0,0,8385,8386,1,0,0,0,8386,8388,1,0,0,0,8387, - 8385,1,0,0,0,8388,8389,5,3,0,0,8389,8393,1,0,0,0,8390,8391,5,53, - 0,0,8391,8393,5,422,0,0,8392,8378,1,0,0,0,8392,8390,1,0,0,0,8393, - 909,1,0,0,0,8394,8397,3,582,291,0,8395,8397,5,53,0,0,8396,8394,1, - 0,0,0,8396,8395,1,0,0,0,8397,911,1,0,0,0,8398,8399,5,157,0,0,8399, - 8400,3,920,460,0,8400,8401,5,7,0,0,8401,913,1,0,0,0,8402,8403,5, - 78,0,0,8403,8404,5,7,0,0,8404,915,1,0,0,0,8405,8411,7,68,0,0,8406, - 8408,5,33,0,0,8407,8409,5,269,0,0,8408,8407,1,0,0,0,8408,8409,1, - 0,0,0,8409,8410,1,0,0,0,8410,8412,5,153,0,0,8411,8406,1,0,0,0,8411, - 8412,1,0,0,0,8412,8413,1,0,0,0,8413,8414,5,7,0,0,8414,917,1,0,0, - 0,8415,8416,5,333,0,0,8416,8417,3,310,155,0,8417,8418,5,94,0,0,8418, - 8419,5,53,0,0,8419,8420,5,7,0,0,8420,8428,1,0,0,0,8421,8424,5,313, - 0,0,8422,8425,3,310,155,0,8423,8425,5,30,0,0,8424,8422,1,0,0,0,8424, - 8423,1,0,0,0,8425,8426,1,0,0,0,8426,8428,5,7,0,0,8427,8415,1,0,0, - 0,8427,8421,1,0,0,0,8428,919,1,0,0,0,8429,8432,3,816,408,0,8430, - 8432,5,28,0,0,8431,8429,1,0,0,0,8431,8430,1,0,0,0,8432,921,1,0,0, - 0,8433,8450,5,517,0,0,8434,8435,5,102,0,0,8435,8440,3,924,462,0, - 8436,8437,5,82,0,0,8437,8439,3,924,462,0,8438,8436,1,0,0,0,8439, - 8442,1,0,0,0,8440,8438,1,0,0,0,8440,8441,1,0,0,0,8441,8443,1,0,0, - 0,8442,8440,1,0,0,0,8443,8447,5,93,0,0,8444,8446,3,844,422,0,8445, - 8444,1,0,0,0,8446,8449,1,0,0,0,8447,8445,1,0,0,0,8447,8448,1,0,0, - 0,8448,8451,1,0,0,0,8449,8447,1,0,0,0,8450,8434,1,0,0,0,8451,8452, - 1,0,0,0,8452,8450,1,0,0,0,8452,8453,1,0,0,0,8453,923,1,0,0,0,8454, - 8458,3,926,463,0,8455,8456,5,511,0,0,8456,8458,3,806,403,0,8457, - 8454,1,0,0,0,8457,8455,1,0,0,0,8458,925,1,0,0,0,8459,8462,3,816, - 408,0,8460,8462,3,826,413,0,8461,8459,1,0,0,0,8461,8460,1,0,0,0, - 8462,927,1,0,0,0,8463,8465,3,752,376,0,8464,8463,1,0,0,0,8464,8465, - 1,0,0,0,8465,8467,1,0,0,0,8466,8468,3,574,287,0,8467,8466,1,0,0, - 0,8467,8468,1,0,0,0,8468,8470,1,0,0,0,8469,8471,3,604,302,0,8470, - 8469,1,0,0,0,8470,8471,1,0,0,0,8471,8473,1,0,0,0,8472,8474,3,632, - 316,0,8473,8472,1,0,0,0,8473,8474,1,0,0,0,8474,8476,1,0,0,0,8475, - 8477,3,594,297,0,8476,8475,1,0,0,0,8476,8477,1,0,0,0,8477,8479,1, - 0,0,0,8478,8480,3,698,349,0,8479,8478,1,0,0,0,8479,8480,1,0,0,0, - 8480,8482,1,0,0,0,8481,8483,3,696,348,0,8482,8481,1,0,0,0,8482,8483, - 1,0,0,0,8483,929,1,0,0,0,1190,933,940,1060,1062,1071,1076,1082,1117, + 0,0,6987,6999,1,0,0,0,6988,6989,3,710,355,0,6989,6990,5,125,0,0, + 6990,6991,3,710,355,0,6991,6999,1,0,0,0,6992,6999,3,798,399,0,6993, + 6994,7,30,0,0,6994,6999,3,676,338,5,6995,6996,3,720,360,0,6996,6997, + 3,676,338,2,6997,6999,1,0,0,0,6998,6910,1,0,0,0,6998,6913,1,0,0, + 0,6998,6918,1,0,0,0,6998,6920,1,0,0,0,6998,6922,1,0,0,0,6998,6923, + 1,0,0,0,6998,6924,1,0,0,0,6998,6925,1,0,0,0,6998,6926,1,0,0,0,6998, + 6939,1,0,0,0,6998,6942,1,0,0,0,6998,6952,1,0,0,0,6998,6953,1,0,0, + 0,6998,6954,1,0,0,0,6998,6955,1,0,0,0,6998,6956,1,0,0,0,6998,6961, + 1,0,0,0,6998,6976,1,0,0,0,6998,6977,1,0,0,0,6998,6981,1,0,0,0,6998, + 6982,1,0,0,0,6998,6988,1,0,0,0,6998,6992,1,0,0,0,6998,6993,1,0,0, + 0,6998,6995,1,0,0,0,6999,7027,1,0,0,0,7000,7001,10,3,0,0,7001,7002, + 3,718,359,0,7002,7003,3,676,338,4,7003,7026,1,0,0,0,7004,7005,10, + 6,0,0,7005,7006,5,26,0,0,7006,7026,3,646,323,0,7007,7008,10,4,0, + 0,7008,7010,3,720,360,0,7009,7011,3,676,338,0,7010,7009,1,0,0,0, + 7010,7011,1,0,0,0,7011,7026,1,0,0,0,7012,7013,10,1,0,0,7013,7015, + 5,116,0,0,7014,7016,5,77,0,0,7015,7014,1,0,0,0,7015,7016,1,0,0,0, + 7016,7023,1,0,0,0,7017,7018,5,56,0,0,7018,7019,5,64,0,0,7019,7024, + 3,676,338,0,7020,7021,5,275,0,0,7021,7024,3,522,261,0,7022,7024, + 5,188,0,0,7023,7017,1,0,0,0,7023,7020,1,0,0,0,7023,7022,1,0,0,0, + 7024,7026,1,0,0,0,7025,7000,1,0,0,0,7025,7004,1,0,0,0,7025,7007, + 1,0,0,0,7025,7012,1,0,0,0,7026,7029,1,0,0,0,7027,7025,1,0,0,0,7027, + 7028,1,0,0,0,7028,677,1,0,0,0,7029,7027,1,0,0,0,7030,7031,3,804, + 402,0,7031,7052,5,2,0,0,7032,7036,3,732,366,0,7033,7034,5,6,0,0, + 7034,7035,5,101,0,0,7035,7037,3,734,367,0,7036,7033,1,0,0,0,7036, + 7037,1,0,0,0,7037,7039,1,0,0,0,7038,7040,3,580,290,0,7039,7038,1, + 0,0,0,7039,7040,1,0,0,0,7040,7053,1,0,0,0,7041,7042,5,101,0,0,7042, + 7044,3,734,367,0,7043,7045,3,580,290,0,7044,7043,1,0,0,0,7044,7045, + 1,0,0,0,7045,7053,1,0,0,0,7046,7047,7,81,0,0,7047,7049,3,732,366, + 0,7048,7050,3,580,290,0,7049,7048,1,0,0,0,7049,7050,1,0,0,0,7050, + 7053,1,0,0,0,7051,7053,5,9,0,0,7052,7032,1,0,0,0,7052,7041,1,0,0, + 0,7052,7046,1,0,0,0,7052,7051,1,0,0,0,7052,7053,1,0,0,0,7053,7054, + 1,0,0,0,7054,7055,5,3,0,0,7055,679,1,0,0,0,7056,7063,3,678,339,0, + 7057,7058,5,479,0,0,7058,7059,5,66,0,0,7059,7060,5,2,0,0,7060,7061, + 3,580,290,0,7061,7062,5,3,0,0,7062,7064,1,0,0,0,7063,7057,1,0,0, + 0,7063,7064,1,0,0,0,7064,7071,1,0,0,0,7065,7066,5,480,0,0,7066,7067, + 5,2,0,0,7067,7068,5,103,0,0,7068,7069,3,668,334,0,7069,7070,5,3, + 0,0,7070,7072,1,0,0,0,7071,7065,1,0,0,0,7071,7072,1,0,0,0,7072,7078, + 1,0,0,0,7073,7076,5,124,0,0,7074,7077,3,704,352,0,7075,7077,3,816, + 408,0,7076,7074,1,0,0,0,7076,7075,1,0,0,0,7077,7079,1,0,0,0,7078, + 7073,1,0,0,0,7078,7079,1,0,0,0,7079,7082,1,0,0,0,7080,7082,3,684, + 342,0,7081,7056,1,0,0,0,7081,7080,1,0,0,0,7082,681,1,0,0,0,7083, + 7086,3,678,339,0,7084,7086,3,684,342,0,7085,7083,1,0,0,0,7085,7084, + 1,0,0,0,7086,683,1,0,0,0,7087,7088,5,108,0,0,7088,7089,5,62,0,0, + 7089,7090,5,2,0,0,7090,7091,3,668,334,0,7091,7092,5,3,0,0,7092,7262, + 1,0,0,0,7093,7262,5,48,0,0,7094,7096,7,96,0,0,7095,7097,3,654,327, + 0,7096,7095,1,0,0,0,7096,7097,1,0,0,0,7097,7262,1,0,0,0,7098,7262, + 5,49,0,0,7099,7262,5,52,0,0,7100,7262,5,89,0,0,7101,7262,5,99,0, + 0,7102,7262,5,47,0,0,7103,7262,5,111,0,0,7104,7105,7,97,0,0,7105, + 7106,5,2,0,0,7106,7107,3,668,334,0,7107,7108,5,36,0,0,7108,7109, + 3,646,323,0,7109,7110,5,3,0,0,7110,7262,1,0,0,0,7111,7112,5,397, + 0,0,7112,7117,5,2,0,0,7113,7114,3,738,369,0,7114,7115,5,64,0,0,7115, + 7116,3,668,334,0,7116,7118,1,0,0,0,7117,7113,1,0,0,0,7117,7118,1, + 0,0,0,7118,7119,1,0,0,0,7119,7262,5,3,0,0,7120,7121,5,489,0,0,7121, + 7122,5,2,0,0,7122,7125,3,668,334,0,7123,7124,5,6,0,0,7124,7126,3, + 740,370,0,7125,7123,1,0,0,0,7125,7126,1,0,0,0,7126,7127,1,0,0,0, + 7127,7128,5,3,0,0,7128,7262,1,0,0,0,7129,7130,5,410,0,0,7130,7131, + 5,2,0,0,7131,7132,3,668,334,0,7132,7133,5,84,0,0,7133,7134,3,668, + 334,0,7134,7135,5,64,0,0,7135,7138,3,668,334,0,7136,7137,5,62,0, + 0,7137,7139,3,668,334,0,7138,7136,1,0,0,0,7138,7139,1,0,0,0,7139, + 7140,1,0,0,0,7140,7141,5,3,0,0,7141,7262,1,0,0,0,7142,7143,5,411, + 0,0,7143,7148,5,2,0,0,7144,7145,3,676,338,0,7145,7146,5,68,0,0,7146, + 7147,3,676,338,0,7147,7149,1,0,0,0,7148,7144,1,0,0,0,7148,7149,1, + 0,0,0,7149,7150,1,0,0,0,7150,7262,5,3,0,0,7151,7152,5,417,0,0,7152, + 7154,5,2,0,0,7153,7155,3,742,371,0,7154,7153,1,0,0,0,7154,7155,1, + 0,0,0,7155,7156,1,0,0,0,7156,7262,5,3,0,0,7157,7158,5,421,0,0,7158, + 7160,5,2,0,0,7159,7161,7,98,0,0,7160,7159,1,0,0,0,7160,7161,1,0, + 0,0,7161,7166,1,0,0,0,7162,7164,3,668,334,0,7163,7162,1,0,0,0,7163, + 7164,1,0,0,0,7164,7165,1,0,0,0,7165,7167,5,64,0,0,7166,7163,1,0, + 0,0,7166,7167,1,0,0,0,7167,7168,1,0,0,0,7168,7169,3,726,363,0,7169, + 7170,1,0,0,0,7170,7171,5,3,0,0,7171,7262,1,0,0,0,7172,7173,5,408, + 0,0,7173,7174,5,2,0,0,7174,7175,3,668,334,0,7175,7176,5,6,0,0,7176, + 7177,3,668,334,0,7177,7178,5,3,0,0,7178,7262,1,0,0,0,7179,7180,7, + 99,0,0,7180,7262,3,528,264,0,7181,7182,5,426,0,0,7182,7183,5,2,0, + 0,7183,7184,5,266,0,0,7184,7194,3,822,411,0,7185,7192,5,6,0,0,7186, + 7187,5,424,0,0,7187,7188,5,2,0,0,7188,7189,3,686,343,0,7189,7190, + 5,3,0,0,7190,7193,1,0,0,0,7191,7193,3,726,363,0,7192,7186,1,0,0, + 0,7192,7191,1,0,0,0,7193,7195,1,0,0,0,7194,7185,1,0,0,0,7194,7195, + 1,0,0,0,7195,7196,1,0,0,0,7196,7197,5,3,0,0,7197,7262,1,0,0,0,7198, + 7199,5,427,0,0,7199,7200,5,2,0,0,7200,7201,3,676,338,0,7201,7202, + 3,692,346,0,7202,7203,5,3,0,0,7203,7262,1,0,0,0,7204,7205,5,428, + 0,0,7205,7206,5,2,0,0,7206,7207,3,686,343,0,7207,7208,5,3,0,0,7208, + 7262,1,0,0,0,7209,7210,5,429,0,0,7210,7211,5,2,0,0,7211,7212,3,690, + 345,0,7212,7215,3,668,334,0,7213,7214,7,100,0,0,7214,7216,5,378, + 0,0,7215,7213,1,0,0,0,7215,7216,1,0,0,0,7216,7217,1,0,0,0,7217,7218, + 5,3,0,0,7218,7262,1,0,0,0,7219,7220,5,430,0,0,7220,7221,5,2,0,0, + 7221,7222,5,266,0,0,7222,7225,3,822,411,0,7223,7224,5,6,0,0,7224, + 7226,3,668,334,0,7225,7223,1,0,0,0,7225,7226,1,0,0,0,7226,7227,1, + 0,0,0,7227,7228,5,3,0,0,7228,7262,1,0,0,0,7229,7230,5,431,0,0,7230, + 7231,5,2,0,0,7231,7232,5,383,0,0,7232,7233,3,668,334,0,7233,7234, + 5,6,0,0,7234,7238,5,375,0,0,7235,7236,5,269,0,0,7236,7239,5,450, + 0,0,7237,7239,3,668,334,0,7238,7235,1,0,0,0,7238,7237,1,0,0,0,7239, + 7249,1,0,0,0,7240,7241,5,6,0,0,7241,7247,5,339,0,0,7242,7244,5,269, + 0,0,7243,7242,1,0,0,0,7243,7244,1,0,0,0,7244,7245,1,0,0,0,7245,7248, + 5,450,0,0,7246,7248,5,385,0,0,7247,7243,1,0,0,0,7247,7246,1,0,0, + 0,7248,7250,1,0,0,0,7249,7240,1,0,0,0,7249,7250,1,0,0,0,7250,7251, + 1,0,0,0,7251,7252,5,3,0,0,7252,7262,1,0,0,0,7253,7254,5,432,0,0, + 7254,7255,5,2,0,0,7255,7256,3,690,345,0,7256,7257,3,668,334,0,7257, + 7258,5,36,0,0,7258,7259,3,648,324,0,7259,7260,5,3,0,0,7260,7262, + 1,0,0,0,7261,7087,1,0,0,0,7261,7093,1,0,0,0,7261,7094,1,0,0,0,7261, + 7098,1,0,0,0,7261,7099,1,0,0,0,7261,7100,1,0,0,0,7261,7101,1,0,0, + 0,7261,7102,1,0,0,0,7261,7103,1,0,0,0,7261,7104,1,0,0,0,7261,7111, + 1,0,0,0,7261,7120,1,0,0,0,7261,7129,1,0,0,0,7261,7142,1,0,0,0,7261, + 7151,1,0,0,0,7261,7157,1,0,0,0,7261,7172,1,0,0,0,7261,7179,1,0,0, + 0,7261,7181,1,0,0,0,7261,7198,1,0,0,0,7261,7204,1,0,0,0,7261,7209, + 1,0,0,0,7261,7219,1,0,0,0,7261,7229,1,0,0,0,7261,7253,1,0,0,0,7262, + 685,1,0,0,0,7263,7268,3,688,344,0,7264,7265,5,6,0,0,7265,7267,3, + 688,344,0,7266,7264,1,0,0,0,7267,7270,1,0,0,0,7268,7266,1,0,0,0, + 7268,7269,1,0,0,0,7269,687,1,0,0,0,7270,7268,1,0,0,0,7271,7274,3, + 668,334,0,7272,7273,5,36,0,0,7273,7275,3,822,411,0,7274,7272,1,0, + 0,0,7274,7275,1,0,0,0,7275,689,1,0,0,0,7276,7277,7,101,0,0,7277, + 691,1,0,0,0,7278,7280,5,286,0,0,7279,7281,3,694,347,0,7280,7279, + 1,0,0,0,7280,7281,1,0,0,0,7281,7282,1,0,0,0,7282,7284,3,676,338, + 0,7283,7285,3,694,347,0,7284,7283,1,0,0,0,7284,7285,1,0,0,0,7285, + 693,1,0,0,0,7286,7287,5,147,0,0,7287,7288,7,102,0,0,7288,695,1,0, + 0,0,7289,7290,5,104,0,0,7290,7295,3,700,350,0,7291,7292,5,6,0,0, + 7292,7294,3,700,350,0,7293,7291,1,0,0,0,7294,7297,1,0,0,0,7295,7293, + 1,0,0,0,7295,7296,1,0,0,0,7296,697,1,0,0,0,7297,7295,1,0,0,0,7298, + 7299,5,67,0,0,7299,7300,3,668,334,0,7300,699,1,0,0,0,7301,7302,3, + 816,408,0,7302,7303,5,36,0,0,7303,7304,3,704,352,0,7304,701,1,0, + 0,0,7305,7308,5,124,0,0,7306,7309,3,704,352,0,7307,7309,3,816,408, + 0,7308,7306,1,0,0,0,7308,7307,1,0,0,0,7309,703,1,0,0,0,7310,7312, + 5,2,0,0,7311,7313,3,816,408,0,7312,7311,1,0,0,0,7312,7313,1,0,0, + 0,7313,7317,1,0,0,0,7314,7315,5,285,0,0,7315,7316,5,147,0,0,7316, + 7318,3,726,363,0,7317,7314,1,0,0,0,7317,7318,1,0,0,0,7318,7320,1, + 0,0,0,7319,7321,3,580,290,0,7320,7319,1,0,0,0,7320,7321,1,0,0,0, + 7321,7323,1,0,0,0,7322,7324,3,706,353,0,7323,7322,1,0,0,0,7323,7324, + 1,0,0,0,7324,7325,1,0,0,0,7325,7326,5,3,0,0,7326,705,1,0,0,0,7327, + 7332,7,103,0,0,7328,7329,5,387,0,0,7329,7330,3,708,354,0,7330,7331, + 5,33,0,0,7331,7333,1,0,0,0,7332,7328,1,0,0,0,7332,7333,1,0,0,0,7333, + 7334,1,0,0,0,7334,7335,3,708,354,0,7335,7345,1,0,0,0,7336,7343,5, + 199,0,0,7337,7338,5,434,0,0,7338,7344,5,414,0,0,7339,7344,5,66,0, + 0,7340,7344,5,467,0,0,7341,7342,5,269,0,0,7342,7344,5,482,0,0,7343, + 7337,1,0,0,0,7343,7339,1,0,0,0,7343,7340,1,0,0,0,7343,7341,1,0,0, + 0,7344,7346,1,0,0,0,7345,7336,1,0,0,0,7345,7346,1,0,0,0,7346,707, + 1,0,0,0,7347,7350,5,362,0,0,7348,7350,3,668,334,0,7349,7347,1,0, + 0,0,7349,7348,1,0,0,0,7350,7351,1,0,0,0,7351,7355,7,104,0,0,7352, + 7353,5,434,0,0,7353,7355,5,414,0,0,7354,7349,1,0,0,0,7354,7352,1, + 0,0,0,7355,709,1,0,0,0,7356,7364,3,712,356,0,7357,7358,5,2,0,0,7358, + 7359,3,726,363,0,7359,7360,5,6,0,0,7360,7361,3,668,334,0,7361,7362, + 5,3,0,0,7362,7364,1,0,0,0,7363,7356,1,0,0,0,7363,7357,1,0,0,0,7364, + 711,1,0,0,0,7365,7366,5,414,0,0,7366,7368,5,2,0,0,7367,7369,3,726, + 363,0,7368,7367,1,0,0,0,7368,7369,1,0,0,0,7369,7370,1,0,0,0,7370, + 7371,5,3,0,0,7371,713,1,0,0,0,7372,7373,7,105,0,0,7373,715,1,0,0, + 0,7374,7377,5,29,0,0,7375,7377,3,718,359,0,7376,7374,1,0,0,0,7376, + 7375,1,0,0,0,7377,717,1,0,0,0,7378,7379,7,106,0,0,7379,719,1,0,0, + 0,7380,7387,5,29,0,0,7381,7382,5,278,0,0,7382,7383,5,2,0,0,7383, + 7384,3,408,204,0,7384,7385,5,3,0,0,7385,7387,1,0,0,0,7386,7380,1, + 0,0,0,7386,7381,1,0,0,0,7387,721,1,0,0,0,7388,7395,3,716,358,0,7389, + 7390,5,278,0,0,7390,7391,5,2,0,0,7391,7392,3,408,204,0,7392,7393, + 5,3,0,0,7393,7395,1,0,0,0,7394,7388,1,0,0,0,7394,7389,1,0,0,0,7395, + 723,1,0,0,0,7396,7402,3,722,361,0,7397,7399,5,77,0,0,7398,7397,1, + 0,0,0,7398,7399,1,0,0,0,7399,7400,1,0,0,0,7400,7402,7,107,0,0,7401, + 7396,1,0,0,0,7401,7398,1,0,0,0,7402,725,1,0,0,0,7403,7408,3,668, + 334,0,7404,7405,5,6,0,0,7405,7407,3,668,334,0,7406,7404,1,0,0,0, + 7407,7410,1,0,0,0,7408,7406,1,0,0,0,7408,7409,1,0,0,0,7409,727,1, + 0,0,0,7410,7408,1,0,0,0,7411,7412,5,2,0,0,7412,7413,3,668,334,0, + 7413,7414,5,3,0,0,7414,7417,1,0,0,0,7415,7417,3,796,398,0,7416,7411, + 1,0,0,0,7416,7415,1,0,0,0,7417,729,1,0,0,0,7418,7421,3,668,334,0, + 7419,7421,3,796,398,0,7420,7418,1,0,0,0,7420,7419,1,0,0,0,7421,731, + 1,0,0,0,7422,7427,3,734,367,0,7423,7424,5,6,0,0,7424,7426,3,734, + 367,0,7425,7423,1,0,0,0,7426,7429,1,0,0,0,7427,7425,1,0,0,0,7427, + 7428,1,0,0,0,7428,733,1,0,0,0,7429,7427,1,0,0,0,7430,7438,3,796, + 398,0,7431,7438,3,668,334,0,7432,7435,3,818,409,0,7433,7434,7,108, + 0,0,7434,7436,3,668,334,0,7435,7433,1,0,0,0,7435,7436,1,0,0,0,7436, + 7438,1,0,0,0,7437,7430,1,0,0,0,7437,7431,1,0,0,0,7437,7432,1,0,0, + 0,7438,735,1,0,0,0,7439,7449,5,4,0,0,7440,7450,3,726,363,0,7441, + 7446,3,736,368,0,7442,7443,5,6,0,0,7443,7445,3,736,368,0,7444,7442, + 1,0,0,0,7445,7448,1,0,0,0,7446,7444,1,0,0,0,7446,7447,1,0,0,0,7447, + 7450,1,0,0,0,7448,7446,1,0,0,0,7449,7440,1,0,0,0,7449,7441,1,0,0, + 0,7449,7450,1,0,0,0,7450,7451,1,0,0,0,7451,7452,5,5,0,0,7452,737, + 1,0,0,0,7453,7462,3,824,412,0,7454,7462,5,384,0,0,7455,7462,5,264, + 0,0,7456,7462,5,176,0,0,7457,7462,5,218,0,0,7458,7462,5,261,0,0, + 7459,7462,5,326,0,0,7460,7462,3,806,403,0,7461,7453,1,0,0,0,7461, + 7454,1,0,0,0,7461,7455,1,0,0,0,7461,7456,1,0,0,0,7461,7457,1,0,0, + 0,7461,7458,1,0,0,0,7461,7459,1,0,0,0,7461,7460,1,0,0,0,7462,739, + 1,0,0,0,7463,7464,7,109,0,0,7464,741,1,0,0,0,7465,7466,3,668,334, + 0,7466,7467,5,64,0,0,7467,7470,3,668,334,0,7468,7469,5,62,0,0,7469, + 7471,3,668,334,0,7470,7468,1,0,0,0,7470,7471,1,0,0,0,7471,7487,1, + 0,0,0,7472,7473,3,668,334,0,7473,7474,5,62,0,0,7474,7477,3,668,334, + 0,7475,7476,5,64,0,0,7476,7478,3,668,334,0,7477,7475,1,0,0,0,7477, + 7478,1,0,0,0,7478,7487,1,0,0,0,7479,7480,3,668,334,0,7480,7481,5, + 127,0,0,7481,7482,3,668,334,0,7482,7483,5,197,0,0,7483,7484,3,668, + 334,0,7484,7487,1,0,0,0,7485,7487,3,726,363,0,7486,7465,1,0,0,0, + 7486,7472,1,0,0,0,7486,7479,1,0,0,0,7486,7485,1,0,0,0,7487,743,1, + 0,0,0,7488,7489,5,102,0,0,7489,7490,3,668,334,0,7490,7491,5,93,0, + 0,7491,7492,3,668,334,0,7492,745,1,0,0,0,7493,7496,5,11,0,0,7494, + 7497,3,822,411,0,7495,7497,5,9,0,0,7496,7494,1,0,0,0,7496,7495,1, + 0,0,0,7497,7511,1,0,0,0,7498,7507,5,4,0,0,7499,7508,3,668,334,0, + 7500,7502,3,668,334,0,7501,7500,1,0,0,0,7501,7502,1,0,0,0,7502,7503, + 1,0,0,0,7503,7505,5,8,0,0,7504,7506,3,668,334,0,7505,7504,1,0,0, + 0,7505,7506,1,0,0,0,7506,7508,1,0,0,0,7507,7499,1,0,0,0,7507,7501, + 1,0,0,0,7508,7509,1,0,0,0,7509,7511,5,5,0,0,7510,7493,1,0,0,0,7510, + 7498,1,0,0,0,7511,747,1,0,0,0,7512,7514,3,746,373,0,7513,7512,1, + 0,0,0,7514,7515,1,0,0,0,7515,7513,1,0,0,0,7515,7516,1,0,0,0,7516, + 749,1,0,0,0,7517,7519,3,746,373,0,7518,7517,1,0,0,0,7519,7522,1, + 0,0,0,7520,7518,1,0,0,0,7520,7521,1,0,0,0,7521,751,1,0,0,0,7522, + 7520,1,0,0,0,7523,7528,3,754,377,0,7524,7525,5,6,0,0,7525,7527,3, + 754,377,0,7526,7524,1,0,0,0,7527,7530,1,0,0,0,7528,7526,1,0,0,0, + 7528,7529,1,0,0,0,7529,753,1,0,0,0,7530,7528,1,0,0,0,7531,7536,3, + 730,365,0,7532,7533,5,36,0,0,7533,7537,3,822,411,0,7534,7537,3,824, + 412,0,7535,7537,1,0,0,0,7536,7532,1,0,0,0,7536,7534,1,0,0,0,7536, + 7535,1,0,0,0,7537,7540,1,0,0,0,7538,7540,5,9,0,0,7539,7531,1,0,0, + 0,7539,7538,1,0,0,0,7540,755,1,0,0,0,7541,7546,3,776,388,0,7542, + 7543,5,6,0,0,7543,7545,3,776,388,0,7544,7542,1,0,0,0,7545,7548,1, + 0,0,0,7546,7544,1,0,0,0,7546,7547,1,0,0,0,7547,757,1,0,0,0,7548, + 7546,1,0,0,0,7549,7554,3,770,385,0,7550,7551,5,6,0,0,7551,7553,3, + 770,385,0,7552,7550,1,0,0,0,7553,7556,1,0,0,0,7554,7552,1,0,0,0, + 7554,7555,1,0,0,0,7555,759,1,0,0,0,7556,7554,1,0,0,0,7557,7562,3, + 786,393,0,7558,7559,5,6,0,0,7559,7561,3,786,393,0,7560,7558,1,0, + 0,0,7561,7564,1,0,0,0,7562,7560,1,0,0,0,7562,7563,1,0,0,0,7563,761, + 1,0,0,0,7564,7562,1,0,0,0,7565,7570,3,784,392,0,7566,7567,5,6,0, + 0,7567,7569,3,784,392,0,7568,7566,1,0,0,0,7569,7572,1,0,0,0,7570, + 7568,1,0,0,0,7570,7571,1,0,0,0,7571,763,1,0,0,0,7572,7570,1,0,0, + 0,7573,7574,3,776,388,0,7574,765,1,0,0,0,7575,7576,3,776,388,0,7576, + 767,1,0,0,0,7577,7578,3,776,388,0,7578,769,1,0,0,0,7579,7580,3,776, + 388,0,7580,771,1,0,0,0,7581,7582,3,776,388,0,7582,773,1,0,0,0,7583, + 7584,3,310,155,0,7584,775,1,0,0,0,7585,7587,3,816,408,0,7586,7588, + 3,748,374,0,7587,7586,1,0,0,0,7587,7588,1,0,0,0,7588,777,1,0,0,0, + 7589,7594,3,766,383,0,7590,7591,5,6,0,0,7591,7593,3,766,383,0,7592, + 7590,1,0,0,0,7593,7596,1,0,0,0,7594,7592,1,0,0,0,7594,7595,1,0,0, + 0,7595,779,1,0,0,0,7596,7594,1,0,0,0,7597,7602,3,816,408,0,7598, + 7599,5,6,0,0,7599,7601,3,816,408,0,7600,7598,1,0,0,0,7601,7604,1, + 0,0,0,7602,7600,1,0,0,0,7602,7603,1,0,0,0,7603,781,1,0,0,0,7604, + 7602,1,0,0,0,7605,7606,3,310,155,0,7606,783,1,0,0,0,7607,7608,3, + 310,155,0,7608,785,1,0,0,0,7609,7610,3,310,155,0,7610,787,1,0,0, + 0,7611,7612,3,816,408,0,7612,789,1,0,0,0,7613,7614,3,816,408,0,7614, + 791,1,0,0,0,7615,7620,3,818,409,0,7616,7617,3,816,408,0,7617,7618, + 3,748,374,0,7618,7620,1,0,0,0,7619,7615,1,0,0,0,7619,7616,1,0,0, + 0,7620,793,1,0,0,0,7621,7626,3,818,409,0,7622,7623,3,816,408,0,7623, + 7624,3,748,374,0,7624,7626,1,0,0,0,7625,7621,1,0,0,0,7625,7622,1, + 0,0,0,7626,795,1,0,0,0,7627,7628,3,816,408,0,7628,7629,3,750,375, + 0,7629,7632,1,0,0,0,7630,7632,4,398,10,0,7631,7627,1,0,0,0,7631, + 7630,1,0,0,0,7632,797,1,0,0,0,7633,7634,3,816,408,0,7634,7635,3, + 750,375,0,7635,799,1,0,0,0,7636,7637,3,816,408,0,7637,801,1,0,0, + 0,7638,7643,3,818,409,0,7639,7640,3,816,408,0,7640,7641,3,748,374, + 0,7641,7643,1,0,0,0,7642,7638,1,0,0,0,7642,7639,1,0,0,0,7643,803, + 1,0,0,0,7644,7649,3,818,409,0,7645,7646,3,816,408,0,7646,7647,3, + 748,374,0,7647,7649,1,0,0,0,7648,7644,1,0,0,0,7648,7645,1,0,0,0, + 7649,805,1,0,0,0,7650,7653,3,808,404,0,7651,7652,5,487,0,0,7652, + 7654,3,808,404,0,7653,7651,1,0,0,0,7653,7654,1,0,0,0,7654,807,1, + 0,0,0,7655,7667,5,561,0,0,7656,7667,5,563,0,0,7657,7661,5,565,0, + 0,7658,7660,5,590,0,0,7659,7658,1,0,0,0,7660,7663,1,0,0,0,7661,7659, + 1,0,0,0,7661,7662,1,0,0,0,7662,7664,1,0,0,0,7663,7661,1,0,0,0,7664, + 7667,5,591,0,0,7665,7667,5,586,0,0,7666,7655,1,0,0,0,7666,7656,1, + 0,0,0,7666,7657,1,0,0,0,7666,7665,1,0,0,0,7667,809,1,0,0,0,7668, + 7670,7,30,0,0,7669,7668,1,0,0,0,7669,7670,1,0,0,0,7670,7671,1,0, + 0,0,7671,7672,5,574,0,0,7672,811,1,0,0,0,7673,7679,3,820,410,0,7674, + 7679,5,52,0,0,7675,7679,5,49,0,0,7676,7679,5,89,0,0,7677,7679,5, + 524,0,0,7678,7673,1,0,0,0,7678,7674,1,0,0,0,7678,7675,1,0,0,0,7678, + 7676,1,0,0,0,7678,7677,1,0,0,0,7679,813,1,0,0,0,7680,7685,3,812, + 406,0,7681,7682,5,6,0,0,7682,7684,3,812,406,0,7683,7681,1,0,0,0, + 7684,7687,1,0,0,0,7685,7683,1,0,0,0,7685,7686,1,0,0,0,7686,815,1, + 0,0,0,7687,7685,1,0,0,0,7688,7691,3,824,412,0,7689,7691,3,828,414, + 0,7690,7688,1,0,0,0,7690,7689,1,0,0,0,7691,817,1,0,0,0,7692,7695, + 3,824,412,0,7693,7695,3,830,415,0,7694,7692,1,0,0,0,7694,7693,1, + 0,0,0,7695,819,1,0,0,0,7696,7700,3,824,412,0,7697,7700,3,828,414, + 0,7698,7700,3,830,415,0,7699,7696,1,0,0,0,7699,7697,1,0,0,0,7699, + 7698,1,0,0,0,7700,821,1,0,0,0,7701,7706,3,824,412,0,7702,7706,3, + 828,414,0,7703,7706,3,830,415,0,7704,7706,3,832,416,0,7705,7701, + 1,0,0,0,7705,7702,1,0,0,0,7705,7703,1,0,0,0,7705,7704,1,0,0,0,7706, + 823,1,0,0,0,7707,7710,5,552,0,0,7708,7709,5,487,0,0,7709,7711,3, + 808,404,0,7710,7708,1,0,0,0,7710,7711,1,0,0,0,7711,7719,1,0,0,0, + 7712,7719,3,806,403,0,7713,7719,5,553,0,0,7714,7719,5,557,0,0,7715, + 7719,5,577,0,0,7716,7719,5,578,0,0,7717,7719,3,826,413,0,7718,7707, + 1,0,0,0,7718,7712,1,0,0,0,7718,7713,1,0,0,0,7718,7714,1,0,0,0,7718, + 7715,1,0,0,0,7718,7716,1,0,0,0,7718,7717,1,0,0,0,7719,825,1,0,0, + 0,7720,7721,7,110,0,0,7721,827,1,0,0,0,7722,7774,5,387,0,0,7723, + 7774,5,388,0,0,7724,7774,3,656,328,0,7725,7774,5,390,0,0,7726,7774, + 5,391,0,0,7727,7774,3,658,329,0,7728,7774,5,393,0,0,7729,7774,5, + 394,0,0,7730,7774,5,395,0,0,7731,7774,5,396,0,0,7732,7774,5,397, + 0,0,7733,7774,5,398,0,0,7734,7774,5,399,0,0,7735,7774,5,470,0,0, + 7736,7774,5,400,0,0,7737,7774,5,401,0,0,7738,7774,5,402,0,0,7739, + 7774,5,403,0,0,7740,7774,5,404,0,0,7741,7774,5,405,0,0,7742,7774, + 5,406,0,0,7743,7774,5,407,0,0,7744,7774,5,489,0,0,7745,7774,5,408, + 0,0,7746,7774,3,652,326,0,7747,7774,5,453,0,0,7748,7774,5,410,0, + 0,7749,7774,5,411,0,0,7750,7774,5,412,0,0,7751,7774,5,413,0,0,7752, + 7774,5,414,0,0,7753,7774,5,415,0,0,7754,7774,5,416,0,0,7755,7774, + 5,417,0,0,7756,7774,5,418,0,0,7757,7774,5,419,0,0,7758,7774,5,420, + 0,0,7759,7774,5,421,0,0,7760,7774,5,422,0,0,7761,7774,5,423,0,0, + 7762,7774,5,424,0,0,7763,7774,5,425,0,0,7764,7774,5,426,0,0,7765, + 7774,5,427,0,0,7766,7774,5,428,0,0,7767,7774,5,476,0,0,7768,7774, + 5,429,0,0,7769,7774,5,430,0,0,7770,7774,5,431,0,0,7771,7774,5,432, + 0,0,7772,7774,5,474,0,0,7773,7722,1,0,0,0,7773,7723,1,0,0,0,7773, + 7724,1,0,0,0,7773,7725,1,0,0,0,7773,7726,1,0,0,0,7773,7727,1,0,0, + 0,7773,7728,1,0,0,0,7773,7729,1,0,0,0,7773,7730,1,0,0,0,7773,7731, + 1,0,0,0,7773,7732,1,0,0,0,7773,7733,1,0,0,0,7773,7734,1,0,0,0,7773, + 7735,1,0,0,0,7773,7736,1,0,0,0,7773,7737,1,0,0,0,7773,7738,1,0,0, + 0,7773,7739,1,0,0,0,7773,7740,1,0,0,0,7773,7741,1,0,0,0,7773,7742, + 1,0,0,0,7773,7743,1,0,0,0,7773,7744,1,0,0,0,7773,7745,1,0,0,0,7773, + 7746,1,0,0,0,7773,7747,1,0,0,0,7773,7748,1,0,0,0,7773,7749,1,0,0, + 0,7773,7750,1,0,0,0,7773,7751,1,0,0,0,7773,7752,1,0,0,0,7773,7753, + 1,0,0,0,7773,7754,1,0,0,0,7773,7755,1,0,0,0,7773,7756,1,0,0,0,7773, + 7757,1,0,0,0,7773,7758,1,0,0,0,7773,7759,1,0,0,0,7773,7760,1,0,0, + 0,7773,7761,1,0,0,0,7773,7762,1,0,0,0,7773,7763,1,0,0,0,7773,7764, + 1,0,0,0,7773,7765,1,0,0,0,7773,7766,1,0,0,0,7773,7767,1,0,0,0,7773, + 7768,1,0,0,0,7773,7769,1,0,0,0,7773,7770,1,0,0,0,7773,7771,1,0,0, + 0,7773,7772,1,0,0,0,7774,829,1,0,0,0,7775,7776,7,111,0,0,7776,831, + 1,0,0,0,7777,7778,7,112,0,0,7778,833,1,0,0,0,7779,7781,3,836,418, + 0,7780,7779,1,0,0,0,7780,7781,1,0,0,0,7781,7792,1,0,0,0,7782,7790, + 5,178,0,0,7783,7787,3,838,419,0,7784,7787,5,178,0,0,7785,7787,3, + 836,418,0,7786,7783,1,0,0,0,7786,7784,1,0,0,0,7786,7785,1,0,0,0, + 7787,7788,1,0,0,0,7788,7786,1,0,0,0,7788,7789,1,0,0,0,7789,7791, + 1,0,0,0,7790,7786,1,0,0,0,7790,7791,1,0,0,0,7791,7793,1,0,0,0,7792, + 7782,1,0,0,0,7792,7793,1,0,0,0,7793,7794,1,0,0,0,7794,7798,5,146, + 0,0,7795,7797,3,844,422,0,7796,7795,1,0,0,0,7797,7800,1,0,0,0,7798, + 7796,1,0,0,0,7798,7799,1,0,0,0,7799,7802,1,0,0,0,7800,7798,1,0,0, + 0,7801,7803,3,922,461,0,7802,7801,1,0,0,0,7802,7803,1,0,0,0,7803, + 7804,1,0,0,0,7804,7806,5,454,0,0,7805,7807,3,926,463,0,7806,7805, + 1,0,0,0,7806,7807,1,0,0,0,7807,835,1,0,0,0,7808,7809,5,18,0,0,7809, + 7810,3,926,463,0,7810,7811,5,19,0,0,7811,837,1,0,0,0,7812,7859,3, + 926,463,0,7813,7814,5,496,0,0,7814,7817,5,62,0,0,7815,7818,5,28, + 0,0,7816,7818,3,816,408,0,7817,7815,1,0,0,0,7817,7816,1,0,0,0,7818, + 7860,1,0,0,0,7819,7821,5,497,0,0,7820,7819,1,0,0,0,7820,7821,1,0, + 0,0,7821,7822,1,0,0,0,7822,7824,3,646,323,0,7823,7825,3,90,45,0, + 7824,7823,1,0,0,0,7824,7825,1,0,0,0,7825,7828,1,0,0,0,7826,7827, + 5,77,0,0,7827,7829,5,78,0,0,7828,7826,1,0,0,0,7828,7829,1,0,0,0, + 7829,7835,1,0,0,0,7830,7833,3,842,421,0,7831,7833,5,53,0,0,7832, + 7830,1,0,0,0,7832,7831,1,0,0,0,7833,7834,1,0,0,0,7834,7836,3,928, + 464,0,7835,7832,1,0,0,0,7835,7836,1,0,0,0,7836,7860,1,0,0,0,7837, + 7839,5,269,0,0,7838,7837,1,0,0,0,7838,7839,1,0,0,0,7839,7840,1,0, + 0,0,7840,7842,5,324,0,0,7841,7838,1,0,0,0,7841,7842,1,0,0,0,7842, + 7843,1,0,0,0,7843,7855,5,172,0,0,7844,7845,5,2,0,0,7845,7850,3,840, + 420,0,7846,7847,5,6,0,0,7847,7849,3,840,420,0,7848,7846,1,0,0,0, + 7849,7852,1,0,0,0,7850,7848,1,0,0,0,7850,7851,1,0,0,0,7851,7853, + 1,0,0,0,7852,7850,1,0,0,0,7853,7854,5,3,0,0,7854,7856,1,0,0,0,7855, + 7844,1,0,0,0,7855,7856,1,0,0,0,7856,7857,1,0,0,0,7857,7858,7,113, + 0,0,7858,7860,3,554,277,0,7859,7813,1,0,0,0,7859,7820,1,0,0,0,7859, + 7841,1,0,0,0,7860,7861,1,0,0,0,7861,7862,5,7,0,0,7862,839,1,0,0, + 0,7863,7864,3,926,463,0,7864,7865,3,646,323,0,7865,841,1,0,0,0,7866, + 7867,7,114,0,0,7867,843,1,0,0,0,7868,7869,3,834,417,0,7869,7870, + 5,7,0,0,7870,7893,1,0,0,0,7871,7893,3,872,436,0,7872,7893,3,874, + 437,0,7873,7893,3,850,425,0,7874,7893,3,858,429,0,7875,7893,3,862, + 431,0,7876,7893,3,864,432,0,7877,7893,3,868,434,0,7878,7893,3,870, + 435,0,7879,7893,3,878,439,0,7880,7893,3,882,441,0,7881,7893,3,884, + 442,0,7882,7893,3,846,423,0,7883,7893,3,848,424,0,7884,7893,3,852, + 426,0,7885,7893,3,888,444,0,7886,7893,3,892,446,0,7887,7893,3,896, + 448,0,7888,7893,3,912,456,0,7889,7893,3,914,457,0,7890,7893,3,916, + 458,0,7891,7893,3,918,459,0,7892,7868,1,0,0,0,7892,7871,1,0,0,0, + 7892,7872,1,0,0,0,7892,7873,1,0,0,0,7892,7874,1,0,0,0,7892,7875, + 1,0,0,0,7892,7876,1,0,0,0,7892,7877,1,0,0,0,7892,7878,1,0,0,0,7892, + 7879,1,0,0,0,7892,7880,1,0,0,0,7892,7881,1,0,0,0,7892,7882,1,0,0, + 0,7892,7883,1,0,0,0,7892,7884,1,0,0,0,7892,7885,1,0,0,0,7892,7886, + 1,0,0,0,7892,7887,1,0,0,0,7892,7888,1,0,0,0,7892,7889,1,0,0,0,7892, + 7890,1,0,0,0,7892,7891,1,0,0,0,7893,845,1,0,0,0,7894,7895,5,498, + 0,0,7895,7896,3,928,464,0,7896,7897,5,7,0,0,7897,847,1,0,0,0,7898, + 7899,5,433,0,0,7899,7906,3,926,463,0,7900,7902,5,2,0,0,7901,7903, + 3,726,363,0,7902,7901,1,0,0,0,7902,7903,1,0,0,0,7903,7904,1,0,0, + 0,7904,7905,5,3,0,0,7905,7907,5,7,0,0,7906,7900,1,0,0,0,7906,7907, + 1,0,0,0,7907,7918,1,0,0,0,7908,7909,5,57,0,0,7909,7910,3,926,463, + 0,7910,7912,5,2,0,0,7911,7913,3,726,363,0,7912,7911,1,0,0,0,7912, + 7913,1,0,0,0,7913,7914,1,0,0,0,7914,7915,5,3,0,0,7915,7916,5,7,0, + 0,7916,7918,1,0,0,0,7917,7898,1,0,0,0,7917,7908,1,0,0,0,7918,849, + 1,0,0,0,7919,7920,3,856,428,0,7920,7921,3,842,421,0,7921,7922,3, + 928,464,0,7922,7923,5,7,0,0,7923,851,1,0,0,0,7924,7926,5,499,0,0, + 7925,7927,7,115,0,0,7926,7925,1,0,0,0,7926,7927,1,0,0,0,7927,7928, + 1,0,0,0,7928,7929,5,500,0,0,7929,7934,3,854,427,0,7930,7931,5,6, + 0,0,7931,7933,3,854,427,0,7932,7930,1,0,0,0,7933,7936,1,0,0,0,7934, + 7932,1,0,0,0,7934,7935,1,0,0,0,7935,7937,1,0,0,0,7936,7934,1,0,0, + 0,7937,7938,5,7,0,0,7938,853,1,0,0,0,7939,7940,3,856,428,0,7940, + 7941,3,842,421,0,7941,7942,3,816,408,0,7942,855,1,0,0,0,7943,7946, + 3,310,155,0,7944,7946,5,28,0,0,7945,7943,1,0,0,0,7945,7944,1,0,0, + 0,7946,7953,1,0,0,0,7947,7948,5,4,0,0,7948,7949,3,668,334,0,7949, + 7950,5,5,0,0,7950,7952,1,0,0,0,7951,7947,1,0,0,0,7952,7955,1,0,0, + 0,7953,7951,1,0,0,0,7953,7954,1,0,0,0,7954,857,1,0,0,0,7955,7953, + 1,0,0,0,7956,7957,5,220,0,0,7957,7958,3,928,464,0,7958,7962,5,93, + 0,0,7959,7961,3,844,422,0,7960,7959,1,0,0,0,7961,7964,1,0,0,0,7962, + 7960,1,0,0,0,7962,7963,1,0,0,0,7963,7976,1,0,0,0,7964,7962,1,0,0, + 0,7965,7966,5,502,0,0,7966,7967,3,668,334,0,7967,7971,5,93,0,0,7968, + 7970,3,844,422,0,7969,7968,1,0,0,0,7970,7973,1,0,0,0,7971,7969,1, + 0,0,0,7971,7972,1,0,0,0,7972,7975,1,0,0,0,7973,7971,1,0,0,0,7974, + 7965,1,0,0,0,7975,7978,1,0,0,0,7976,7974,1,0,0,0,7976,7977,1,0,0, + 0,7977,7980,1,0,0,0,7978,7976,1,0,0,0,7979,7981,3,860,430,0,7980, + 7979,1,0,0,0,7980,7981,1,0,0,0,7981,7982,1,0,0,0,7982,7983,5,454, + 0,0,7983,7984,5,220,0,0,7984,7985,5,7,0,0,7985,859,1,0,0,0,7986, + 7990,5,58,0,0,7987,7989,3,844,422,0,7988,7987,1,0,0,0,7989,7992, + 1,0,0,0,7990,7988,1,0,0,0,7990,7991,1,0,0,0,7991,861,1,0,0,0,7992, + 7990,1,0,0,0,7993,7995,5,40,0,0,7994,7996,3,928,464,0,7995,7994, + 1,0,0,0,7995,7996,1,0,0,0,7996,8006,1,0,0,0,7997,7998,5,102,0,0, + 7998,7999,3,726,363,0,7999,8003,5,93,0,0,8000,8002,3,844,422,0,8001, + 8000,1,0,0,0,8002,8005,1,0,0,0,8003,8001,1,0,0,0,8003,8004,1,0,0, + 0,8004,8007,1,0,0,0,8005,8003,1,0,0,0,8006,7997,1,0,0,0,8007,8008, + 1,0,0,0,8008,8006,1,0,0,0,8008,8009,1,0,0,0,8009,8011,1,0,0,0,8010, + 8012,3,860,430,0,8011,8010,1,0,0,0,8011,8012,1,0,0,0,8012,8013,1, + 0,0,0,8013,8014,5,454,0,0,8014,8015,5,40,0,0,8015,8016,5,7,0,0,8016, + 863,1,0,0,0,8017,8019,3,836,418,0,8018,8017,1,0,0,0,8018,8019,1, + 0,0,0,8019,8024,1,0,0,0,8020,8021,5,503,0,0,8021,8025,3,668,334, + 0,8022,8023,5,62,0,0,8023,8025,3,866,433,0,8024,8020,1,0,0,0,8024, + 8022,1,0,0,0,8024,8025,1,0,0,0,8025,8026,1,0,0,0,8026,8027,3,880, + 440,0,8027,865,1,0,0,0,8028,8029,3,308,154,0,8029,8052,5,68,0,0, + 8030,8032,3,816,408,0,8031,8033,3,528,264,0,8032,8031,1,0,0,0,8032, + 8033,1,0,0,0,8033,8053,1,0,0,0,8034,8053,3,554,277,0,8035,8053,3, + 514,257,0,8036,8037,5,202,0,0,8037,8040,3,668,334,0,8038,8039,5, + 100,0,0,8039,8041,3,726,363,0,8040,8038,1,0,0,0,8040,8041,1,0,0, + 0,8041,8053,1,0,0,0,8042,8044,5,504,0,0,8043,8042,1,0,0,0,8043,8044, + 1,0,0,0,8044,8045,1,0,0,0,8045,8046,3,668,334,0,8046,8047,5,24,0, + 0,8047,8050,3,668,334,0,8048,8049,5,147,0,0,8049,8051,3,668,334, + 0,8050,8048,1,0,0,0,8050,8051,1,0,0,0,8051,8053,1,0,0,0,8052,8030, + 1,0,0,0,8052,8034,1,0,0,0,8052,8035,1,0,0,0,8052,8036,1,0,0,0,8052, + 8043,1,0,0,0,8053,867,1,0,0,0,8054,8056,3,836,418,0,8055,8054,1, + 0,0,0,8055,8056,1,0,0,0,8056,8057,1,0,0,0,8057,8058,5,505,0,0,8058, + 8061,3,308,154,0,8059,8060,5,506,0,0,8060,8062,5,574,0,0,8061,8059, + 1,0,0,0,8061,8062,1,0,0,0,8062,8063,1,0,0,0,8063,8064,5,68,0,0,8064, + 8065,5,35,0,0,8065,8066,3,668,334,0,8066,8067,3,880,440,0,8067,869, + 1,0,0,0,8068,8070,7,116,0,0,8069,8071,3,926,463,0,8070,8069,1,0, + 0,0,8070,8071,1,0,0,0,8071,8074,1,0,0,0,8072,8073,5,102,0,0,8073, + 8075,3,928,464,0,8074,8072,1,0,0,0,8074,8075,1,0,0,0,8075,8076,1, + 0,0,0,8076,8077,5,7,0,0,8077,871,1,0,0,0,8078,8093,5,508,0,0,8079, + 8080,5,268,0,0,8080,8094,3,928,464,0,8081,8088,5,509,0,0,8082,8083, + 5,202,0,0,8083,8084,3,668,334,0,8084,8085,5,100,0,0,8085,8086,3, + 726,363,0,8086,8089,1,0,0,0,8087,8089,3,554,277,0,8088,8082,1,0, + 0,0,8088,8087,1,0,0,0,8089,8094,1,0,0,0,8090,8092,3,928,464,0,8091, + 8090,1,0,0,0,8091,8092,1,0,0,0,8092,8094,1,0,0,0,8093,8079,1,0,0, + 0,8093,8081,1,0,0,0,8093,8091,1,0,0,0,8094,8095,1,0,0,0,8095,8096, + 5,7,0,0,8096,873,1,0,0,0,8097,8127,5,510,0,0,8098,8100,7,117,0,0, + 8099,8098,1,0,0,0,8099,8100,1,0,0,0,8100,8113,1,0,0,0,8101,8114, + 3,824,412,0,8102,8103,5,511,0,0,8103,8114,3,806,403,0,8104,8111, + 3,806,403,0,8105,8106,5,6,0,0,8106,8108,3,668,334,0,8107,8105,1, + 0,0,0,8108,8109,1,0,0,0,8109,8107,1,0,0,0,8109,8110,1,0,0,0,8110, + 8112,1,0,0,0,8111,8107,1,0,0,0,8111,8112,1,0,0,0,8112,8114,1,0,0, + 0,8113,8101,1,0,0,0,8113,8102,1,0,0,0,8113,8104,1,0,0,0,8113,8114, + 1,0,0,0,8114,8124,1,0,0,0,8115,8116,5,100,0,0,8116,8121,3,876,438, + 0,8117,8118,5,6,0,0,8118,8120,3,876,438,0,8119,8117,1,0,0,0,8120, + 8123,1,0,0,0,8121,8119,1,0,0,0,8121,8122,1,0,0,0,8122,8125,1,0,0, + 0,8123,8121,1,0,0,0,8124,8115,1,0,0,0,8124,8125,1,0,0,0,8125,8126, + 1,0,0,0,8126,8128,5,7,0,0,8127,8099,1,0,0,0,8127,8128,1,0,0,0,8128, + 875,1,0,0,0,8129,8130,3,824,412,0,8130,8131,5,10,0,0,8131,8132,3, + 668,334,0,8132,877,1,0,0,0,8133,8134,5,518,0,0,8134,8137,3,928,464, + 0,8135,8136,5,6,0,0,8136,8138,3,928,464,0,8137,8135,1,0,0,0,8137, + 8138,1,0,0,0,8138,8139,1,0,0,0,8139,8140,5,7,0,0,8140,879,1,0,0, + 0,8141,8145,5,519,0,0,8142,8144,3,844,422,0,8143,8142,1,0,0,0,8144, + 8147,1,0,0,0,8145,8143,1,0,0,0,8145,8146,1,0,0,0,8146,8148,1,0,0, + 0,8147,8145,1,0,0,0,8148,8149,5,454,0,0,8149,8151,5,519,0,0,8150, + 8152,3,926,463,0,8151,8150,1,0,0,0,8151,8152,1,0,0,0,8152,8153,1, + 0,0,0,8153,8154,5,7,0,0,8154,881,1,0,0,0,8155,8157,3,4,2,0,8156, + 8158,3,886,443,0,8157,8156,1,0,0,0,8157,8158,1,0,0,0,8158,8159,1, + 0,0,0,8159,8160,5,7,0,0,8160,883,1,0,0,0,8161,8162,5,202,0,0,8162, + 8178,3,668,334,0,8163,8165,3,886,443,0,8164,8163,1,0,0,0,8164,8165, + 1,0,0,0,8165,8168,1,0,0,0,8166,8167,5,100,0,0,8167,8169,3,726,363, + 0,8168,8166,1,0,0,0,8168,8169,1,0,0,0,8169,8179,1,0,0,0,8170,8171, + 5,100,0,0,8171,8173,3,726,363,0,8172,8170,1,0,0,0,8172,8173,1,0, + 0,0,8173,8175,1,0,0,0,8174,8176,3,886,443,0,8175,8174,1,0,0,0,8175, + 8176,1,0,0,0,8176,8179,1,0,0,0,8177,8179,1,0,0,0,8178,8164,1,0,0, + 0,8178,8172,1,0,0,0,8178,8177,1,0,0,0,8179,8180,1,0,0,0,8180,8181, + 5,7,0,0,8181,885,1,0,0,0,8182,8184,5,71,0,0,8183,8185,5,346,0,0, + 8184,8183,1,0,0,0,8184,8185,1,0,0,0,8185,8186,1,0,0,0,8186,8187, + 3,726,363,0,8187,887,1,0,0,0,8188,8220,5,520,0,0,8189,8194,3,920, + 460,0,8190,8192,5,269,0,0,8191,8190,1,0,0,0,8191,8192,1,0,0,0,8192, + 8193,1,0,0,0,8193,8195,5,324,0,0,8194,8191,1,0,0,0,8194,8195,1,0, + 0,0,8195,8196,1,0,0,0,8196,8204,5,62,0,0,8197,8205,3,554,277,0,8198, + 8199,5,202,0,0,8199,8202,3,928,464,0,8200,8201,5,100,0,0,8201,8203, + 3,726,363,0,8202,8200,1,0,0,0,8202,8203,1,0,0,0,8203,8205,1,0,0, + 0,8204,8197,1,0,0,0,8204,8198,1,0,0,0,8205,8221,1,0,0,0,8206,8218, + 3,816,408,0,8207,8208,5,2,0,0,8208,8213,3,890,445,0,8209,8210,5, + 6,0,0,8210,8212,3,890,445,0,8211,8209,1,0,0,0,8212,8215,1,0,0,0, + 8213,8211,1,0,0,0,8213,8214,1,0,0,0,8214,8216,1,0,0,0,8215,8213, + 1,0,0,0,8216,8217,5,3,0,0,8217,8219,1,0,0,0,8218,8207,1,0,0,0,8218, + 8219,1,0,0,0,8219,8221,1,0,0,0,8220,8189,1,0,0,0,8220,8206,1,0,0, + 0,8221,8222,1,0,0,0,8222,8223,5,7,0,0,8223,889,1,0,0,0,8224,8225, + 3,816,408,0,8225,8226,5,20,0,0,8226,8228,1,0,0,0,8227,8224,1,0,0, + 0,8227,8228,1,0,0,0,8228,8229,1,0,0,0,8229,8230,3,668,334,0,8230, + 891,1,0,0,0,8231,8233,5,61,0,0,8232,8234,3,894,447,0,8233,8232,1, + 0,0,0,8233,8234,1,0,0,0,8234,8236,1,0,0,0,8235,8237,3,326,163,0, + 8236,8235,1,0,0,0,8236,8237,1,0,0,0,8237,8238,1,0,0,0,8238,8239, + 3,920,460,0,8239,8240,5,71,0,0,8240,8241,3,726,363,0,8241,8242,5, + 7,0,0,8242,893,1,0,0,0,8243,8258,5,268,0,0,8244,8258,5,293,0,0,8245, + 8258,5,207,0,0,8246,8258,5,249,0,0,8247,8249,7,51,0,0,8248,8247, + 1,0,0,0,8248,8249,1,0,0,0,8249,8250,1,0,0,0,8250,8258,3,668,334, + 0,8251,8258,5,30,0,0,8252,8255,7,118,0,0,8253,8256,3,668,334,0,8254, + 8256,5,30,0,0,8255,8253,1,0,0,0,8255,8254,1,0,0,0,8255,8256,1,0, + 0,0,8256,8258,1,0,0,0,8257,8243,1,0,0,0,8257,8244,1,0,0,0,8257,8245, + 1,0,0,0,8257,8246,1,0,0,0,8257,8248,1,0,0,0,8257,8251,1,0,0,0,8257, + 8252,1,0,0,0,8258,895,1,0,0,0,8259,8261,5,265,0,0,8260,8262,3,894, + 447,0,8261,8260,1,0,0,0,8261,8262,1,0,0,0,8262,8263,1,0,0,0,8263, + 8264,3,920,460,0,8264,8265,5,7,0,0,8265,897,1,0,0,0,8266,8268,3, + 566,283,0,8267,8266,1,0,0,0,8267,8268,1,0,0,0,8268,8269,1,0,0,0, + 8269,8270,5,525,0,0,8270,8272,5,71,0,0,8271,8273,5,81,0,0,8272,8271, + 1,0,0,0,8272,8273,1,0,0,0,8273,8274,1,0,0,0,8274,8276,3,770,385, + 0,8275,8277,5,9,0,0,8276,8275,1,0,0,0,8276,8277,1,0,0,0,8277,8282, + 1,0,0,0,8278,8280,5,36,0,0,8279,8278,1,0,0,0,8279,8280,1,0,0,0,8280, + 8281,1,0,0,0,8281,8283,3,816,408,0,8282,8279,1,0,0,0,8282,8283,1, + 0,0,0,8283,8284,1,0,0,0,8284,8285,5,100,0,0,8285,8286,3,900,450, + 0,8286,8287,5,80,0,0,8287,8289,3,668,334,0,8288,8290,3,902,451,0, + 8289,8288,1,0,0,0,8290,8291,1,0,0,0,8291,8289,1,0,0,0,8291,8292, + 1,0,0,0,8292,8294,1,0,0,0,8293,8295,3,540,270,0,8294,8293,1,0,0, + 0,8294,8295,1,0,0,0,8295,899,1,0,0,0,8296,8298,5,81,0,0,8297,8296, + 1,0,0,0,8297,8298,1,0,0,0,8298,8299,1,0,0,0,8299,8301,3,770,385, + 0,8300,8302,5,9,0,0,8301,8300,1,0,0,0,8301,8302,1,0,0,0,8302,8308, + 1,0,0,0,8303,8306,3,558,279,0,8304,8306,3,602,301,0,8305,8303,1, + 0,0,0,8305,8304,1,0,0,0,8306,8308,1,0,0,0,8307,8297,1,0,0,0,8307, + 8305,1,0,0,0,8308,8313,1,0,0,0,8309,8311,5,36,0,0,8310,8309,1,0, + 0,0,8310,8311,1,0,0,0,8311,8312,1,0,0,0,8312,8314,3,816,408,0,8313, + 8310,1,0,0,0,8313,8314,1,0,0,0,8314,901,1,0,0,0,8315,8316,5,102, + 0,0,8316,8319,5,526,0,0,8317,8318,5,33,0,0,8318,8320,3,668,334,0, + 8319,8317,1,0,0,0,8319,8320,1,0,0,0,8320,8321,1,0,0,0,8321,8326, + 5,93,0,0,8322,8327,3,906,453,0,8323,8327,5,182,0,0,8324,8325,5,57, + 0,0,8325,8327,5,270,0,0,8326,8322,1,0,0,0,8326,8323,1,0,0,0,8326, + 8324,1,0,0,0,8327,8342,1,0,0,0,8328,8329,5,102,0,0,8329,8330,5,77, + 0,0,8330,8333,5,526,0,0,8331,8332,5,33,0,0,8332,8334,3,668,334,0, + 8333,8331,1,0,0,0,8333,8334,1,0,0,0,8334,8335,1,0,0,0,8335,8339, + 5,93,0,0,8336,8340,3,904,452,0,8337,8338,5,57,0,0,8338,8340,5,270, + 0,0,8339,8336,1,0,0,0,8339,8337,1,0,0,0,8340,8342,1,0,0,0,8341,8315, + 1,0,0,0,8341,8328,1,0,0,0,8342,903,1,0,0,0,8343,8345,5,241,0,0,8344, + 8346,3,138,69,0,8345,8344,1,0,0,0,8345,8346,1,0,0,0,8346,8350,1, + 0,0,0,8347,8348,5,463,0,0,8348,8349,7,77,0,0,8349,8351,5,450,0,0, + 8350,8347,1,0,0,0,8350,8351,1,0,0,0,8351,8352,1,0,0,0,8352,8353, + 3,908,454,0,8353,905,1,0,0,0,8354,8355,5,369,0,0,8355,8373,5,333, + 0,0,8356,8357,3,796,398,0,8357,8358,5,10,0,0,8358,8359,3,910,455, + 0,8359,8374,1,0,0,0,8360,8361,3,138,69,0,8361,8362,5,10,0,0,8362, + 8363,5,2,0,0,8363,8368,3,910,455,0,8364,8365,5,6,0,0,8365,8367,3, + 910,455,0,8366,8364,1,0,0,0,8367,8370,1,0,0,0,8368,8366,1,0,0,0, + 8368,8369,1,0,0,0,8369,8371,1,0,0,0,8370,8368,1,0,0,0,8371,8372, + 5,3,0,0,8372,8374,1,0,0,0,8373,8356,1,0,0,0,8373,8360,1,0,0,0,8374, + 8375,1,0,0,0,8375,8373,1,0,0,0,8375,8376,1,0,0,0,8376,907,1,0,0, + 0,8377,8378,5,422,0,0,8378,8379,5,2,0,0,8379,8384,3,910,455,0,8380, + 8381,5,6,0,0,8381,8383,3,910,455,0,8382,8380,1,0,0,0,8383,8386,1, + 0,0,0,8384,8382,1,0,0,0,8384,8385,1,0,0,0,8385,8387,1,0,0,0,8386, + 8384,1,0,0,0,8387,8388,5,3,0,0,8388,8392,1,0,0,0,8389,8390,5,53, + 0,0,8390,8392,5,422,0,0,8391,8377,1,0,0,0,8391,8389,1,0,0,0,8392, + 909,1,0,0,0,8393,8396,3,582,291,0,8394,8396,5,53,0,0,8395,8393,1, + 0,0,0,8395,8394,1,0,0,0,8396,911,1,0,0,0,8397,8398,5,157,0,0,8398, + 8399,3,920,460,0,8399,8400,5,7,0,0,8400,913,1,0,0,0,8401,8402,5, + 78,0,0,8402,8403,5,7,0,0,8403,915,1,0,0,0,8404,8410,7,68,0,0,8405, + 8407,5,33,0,0,8406,8408,5,269,0,0,8407,8406,1,0,0,0,8407,8408,1, + 0,0,0,8408,8409,1,0,0,0,8409,8411,5,153,0,0,8410,8405,1,0,0,0,8410, + 8411,1,0,0,0,8411,8412,1,0,0,0,8412,8413,5,7,0,0,8413,917,1,0,0, + 0,8414,8415,5,333,0,0,8415,8416,3,310,155,0,8416,8417,5,94,0,0,8417, + 8418,5,53,0,0,8418,8419,5,7,0,0,8419,8427,1,0,0,0,8420,8423,5,313, + 0,0,8421,8424,3,310,155,0,8422,8424,5,30,0,0,8423,8421,1,0,0,0,8423, + 8422,1,0,0,0,8424,8425,1,0,0,0,8425,8427,5,7,0,0,8426,8414,1,0,0, + 0,8426,8420,1,0,0,0,8427,919,1,0,0,0,8428,8431,3,816,408,0,8429, + 8431,5,28,0,0,8430,8428,1,0,0,0,8430,8429,1,0,0,0,8431,921,1,0,0, + 0,8432,8449,5,517,0,0,8433,8434,5,102,0,0,8434,8439,3,924,462,0, + 8435,8436,5,82,0,0,8436,8438,3,924,462,0,8437,8435,1,0,0,0,8438, + 8441,1,0,0,0,8439,8437,1,0,0,0,8439,8440,1,0,0,0,8440,8442,1,0,0, + 0,8441,8439,1,0,0,0,8442,8446,5,93,0,0,8443,8445,3,844,422,0,8444, + 8443,1,0,0,0,8445,8448,1,0,0,0,8446,8444,1,0,0,0,8446,8447,1,0,0, + 0,8447,8450,1,0,0,0,8448,8446,1,0,0,0,8449,8433,1,0,0,0,8450,8451, + 1,0,0,0,8451,8449,1,0,0,0,8451,8452,1,0,0,0,8452,923,1,0,0,0,8453, + 8457,3,926,463,0,8454,8455,5,511,0,0,8455,8457,3,806,403,0,8456, + 8453,1,0,0,0,8456,8454,1,0,0,0,8457,925,1,0,0,0,8458,8461,3,816, + 408,0,8459,8461,3,826,413,0,8460,8458,1,0,0,0,8460,8459,1,0,0,0, + 8461,927,1,0,0,0,8462,8464,3,752,376,0,8463,8462,1,0,0,0,8463,8464, + 1,0,0,0,8464,8466,1,0,0,0,8465,8467,3,574,287,0,8466,8465,1,0,0, + 0,8466,8467,1,0,0,0,8467,8469,1,0,0,0,8468,8470,3,604,302,0,8469, + 8468,1,0,0,0,8469,8470,1,0,0,0,8470,8472,1,0,0,0,8471,8473,3,632, + 316,0,8472,8471,1,0,0,0,8472,8473,1,0,0,0,8473,8475,1,0,0,0,8474, + 8476,3,594,297,0,8475,8474,1,0,0,0,8475,8476,1,0,0,0,8476,8478,1, + 0,0,0,8477,8479,3,698,349,0,8478,8477,1,0,0,0,8478,8479,1,0,0,0, + 8479,8481,1,0,0,0,8480,8482,3,696,348,0,8481,8480,1,0,0,0,8481,8482, + 1,0,0,0,8482,929,1,0,0,0,1190,933,940,1060,1062,1071,1076,1082,1117, 1127,1133,1138,1145,1150,1157,1168,1176,1180,1192,1198,1204,1208, 1213,1217,1230,1240,1242,1248,1253,1266,1269,1274,1279,1290,1294, 1306,1310,1313,1317,1329,1347,1354,1362,1367,1374,1382,1388,1396, @@ -58119,24 +58112,24 @@ export class PostgreSqlParser extends SQLParserBase { 6731,6737,6739,6742,6746,6751,6758,6765,6767,6773,6775,6780,6782, 6786,6795,6799,6807,6809,6823,6826,6834,6843,6849,6854,6862,6864, 6869,6873,6878,6883,6889,6905,6907,6916,6931,6936,6939,6945,6950, - 6963,6968,6972,6979,6999,7011,7016,7024,7026,7028,7037,7040,7045, - 7050,7053,7064,7072,7077,7079,7082,7086,7097,7118,7126,7139,7149, - 7155,7161,7164,7167,7193,7195,7216,7226,7239,7244,7248,7250,7262, - 7269,7275,7281,7285,7296,7309,7313,7318,7321,7324,7333,7344,7346, - 7350,7355,7364,7369,7377,7387,7395,7399,7402,7409,7417,7421,7428, - 7436,7438,7447,7450,7462,7471,7478,7487,7497,7502,7506,7508,7511, - 7516,7521,7529,7537,7540,7547,7555,7563,7571,7588,7595,7603,7620, - 7626,7632,7643,7649,7654,7662,7667,7670,7679,7686,7691,7695,7700, - 7706,7711,7719,7774,7781,7787,7789,7791,7793,7799,7803,7807,7818, - 7821,7825,7829,7833,7836,7839,7842,7851,7856,7860,7893,7903,7907, - 7913,7918,7927,7935,7946,7954,7963,7972,7977,7981,7991,7996,8004, - 8009,8012,8019,8025,8033,8041,8044,8051,8053,8056,8062,8071,8075, - 8089,8092,8094,8100,8110,8112,8114,8122,8125,8128,8138,8146,8152, - 8158,8165,8169,8173,8176,8179,8185,8192,8195,8203,8205,8214,8219, - 8221,8228,8234,8237,8249,8256,8258,8262,8268,8273,8277,8280,8283, - 8292,8295,8298,8302,8306,8308,8311,8314,8320,8327,8334,8340,8342, - 8346,8351,8369,8374,8376,8385,8392,8396,8408,8411,8424,8427,8431, - 8440,8447,8452,8457,8461,8464,8467,8470,8473,8476,8479,8482 + 6963,6968,6972,6979,6998,7010,7015,7023,7025,7027,7036,7039,7044, + 7049,7052,7063,7071,7076,7078,7081,7085,7096,7117,7125,7138,7148, + 7154,7160,7163,7166,7192,7194,7215,7225,7238,7243,7247,7249,7261, + 7268,7274,7280,7284,7295,7308,7312,7317,7320,7323,7332,7343,7345, + 7349,7354,7363,7368,7376,7386,7394,7398,7401,7408,7416,7420,7427, + 7435,7437,7446,7449,7461,7470,7477,7486,7496,7501,7505,7507,7510, + 7515,7520,7528,7536,7539,7546,7554,7562,7570,7587,7594,7602,7619, + 7625,7631,7642,7648,7653,7661,7666,7669,7678,7685,7690,7694,7699, + 7705,7710,7718,7773,7780,7786,7788,7790,7792,7798,7802,7806,7817, + 7820,7824,7828,7832,7835,7838,7841,7850,7855,7859,7892,7902,7906, + 7912,7917,7926,7934,7945,7953,7962,7971,7976,7980,7990,7995,8003, + 8008,8011,8018,8024,8032,8040,8043,8050,8052,8055,8061,8070,8074, + 8088,8091,8093,8099,8109,8111,8113,8121,8124,8127,8137,8145,8151, + 8157,8164,8168,8172,8175,8178,8184,8191,8194,8202,8204,8213,8218, + 8220,8227,8233,8236,8248,8255,8257,8261,8267,8272,8276,8279,8282, + 8291,8294,8297,8301,8305,8307,8310,8313,8319,8326,8333,8339,8341, + 8345,8350,8368,8373,8375,8384,8391,8395,8407,8410,8423,8426,8430, + 8439,8446,8451,8456,8460,8463,8466,8469,8472,8475,8478,8481 ]; private static __ATN: antlr.ATN; @@ -78598,9 +78591,6 @@ export class PrimaryExpressionContext extends antlr.ParserRuleContext { public columnNamePath(): ColumnNamePathContext | null { return this.getRuleContext(0, ColumnNamePathContext); } - public qualifiedName(): QualifiedNameContext | null { - return this.getRuleContext(0, QualifiedNameContext); - } public primaryExpression(): PrimaryExpressionContext[]; public primaryExpression(i: number): PrimaryExpressionContext | null; public primaryExpression(i?: number): PrimaryExpressionContext[] | PrimaryExpressionContext | null { diff --git a/test/parser/flink/syntax/fixtures/select.sql b/test/parser/flink/syntax/fixtures/select.sql index 5cd8b9ca..006957ed 100644 --- a/test/parser/flink/syntax/fixtures/select.sql +++ b/test/parser/flink/syntax/fixtures/select.sql @@ -50,4 +50,8 @@ SELECT TIMESTAMP '2019-12-23 09:00:00' as time2, INTERVAL '10 00:00:00.004' DAY TO SECOND as time3 from - MyTable; + MyTable; + + +SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; +SELECT SUM(c.amount) AS total_amount FROM cust c; diff --git a/test/parser/hive/syntax/fixtures/select.sql b/test/parser/hive/syntax/fixtures/select.sql index bdad3f6a..7f7d0ac8 100644 --- a/test/parser/hive/syntax/fixtures/select.sql +++ b/test/parser/hive/syntax/fixtures/select.sql @@ -243,4 +243,8 @@ EXPLAIN select sum(hash(key)), sum(hash(value)) from src_orc_merge_test_part whe -- FROM xx SELECT FROM table_name_1 SELECT col1, col2; -FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT a.*; \ No newline at end of file +FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT a.*; + + +SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; +SELECT SUM(c.amount) AS total_amount FROM cust c; \ No newline at end of file diff --git a/test/parser/impala/syntax/fixtures/select.sql b/test/parser/impala/syntax/fixtures/select.sql index 6cef8ce9..73b19037 100644 --- a/test/parser/impala/syntax/fixtures/select.sql +++ b/test/parser/impala/syntax/fixtures/select.sql @@ -213,4 +213,8 @@ select true and null; select c_first_name, c_last_name from customer where lower(trim(c_last_name)) regexp '^de.*'; -select c_first_name, c_last_name from customer where lower(trim(c_last_name)) rlike '^de.*'; \ No newline at end of file +select c_first_name, c_last_name from customer where lower(trim(c_last_name)) rlike '^de.*'; + + +SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; +SELECT SUM(c.amount) AS total_amount FROM cust c; \ No newline at end of file diff --git a/test/parser/mysql/syntax/fixtures/select.sql b/test/parser/mysql/syntax/fixtures/select.sql index 4342b709..1b438994 100644 --- a/test/parser/mysql/syntax/fixtures/select.sql +++ b/test/parser/mysql/syntax/fixtures/select.sql @@ -78,3 +78,7 @@ SELECT ID ,SUM(COL_1) AS SUM_COL_1 FROM ( UNION ALL (SELECT ID ,COL_1 FROM TEST_AUTO_INC TAI) )SS GROUP BY 1 ORDER BY 1; + + +SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; +SELECT SUM(c.amount) AS total_amount FROM cust c; \ No newline at end of file diff --git a/test/parser/postgresql/syntax/fixtures/select.sql b/test/parser/postgresql/syntax/fixtures/select.sql index deb08d5c..36f50d14 100644 --- a/test/parser/postgresql/syntax/fixtures/select.sql +++ b/test/parser/postgresql/syntax/fixtures/select.sql @@ -195,4 +195,8 @@ SELECT f1[1][-2][3] AS e1, f1[1][-1][5] AS e2 SELECT int4range(10, 20) @> 3; -- Object Identifier Types -SELECT * FROM pg_attribute WHERE attrelid = 'mytable'::regclass; \ No newline at end of file +SELECT * FROM pg_attribute WHERE attrelid = 'mytable'::regclass; + + +SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; +SELECT SUM(c.amount) AS total_amount FROM cust c; \ No newline at end of file diff --git a/test/parser/spark/syntax/fixtures/selectClusterBy.sql b/test/parser/spark/syntax/fixtures/selectClusterBy.sql index 7e9b9751..9d7feca3 100644 --- a/test/parser/spark/syntax/fixtures/selectClusterBy.sql +++ b/test/parser/spark/syntax/fixtures/selectClusterBy.sql @@ -25,3 +25,7 @@ SELECT name, age FROM person; -- persons with age 16 are in the second partition. The rows are sorted based -- on age within each partition. SELECT age, name FROM person CLUSTER BY age; + + +SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; +SELECT SUM(c.amount) AS total_amount FROM cust c; \ No newline at end of file diff --git a/test/parser/trino/syntax/fixtures/select.sql b/test/parser/trino/syntax/fixtures/select.sql index 471b91de..7773e5b1 100644 --- a/test/parser/trino/syntax/fixtures/select.sql +++ b/test/parser/trino/syntax/fixtures/select.sql @@ -115,3 +115,7 @@ SELECT 123 INTERSECT DISTINCT SELECT 123 INTERSECT ALL SELECT 123; -- substring_built_in_function SELECT substring('string' FROM 2); SELECT substring('string' FROM 2 FOR 3); + + +SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; +SELECT SUM(c.amount) AS total_amount FROM cust c; From 6410d87d4ede7a2cd27a92132a48728d85748f2e Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Tue, 11 Nov 2025 13:57:00 +0800 Subject: [PATCH 05/15] feat: mark as entityCollecting in getAllEntities context to allow empty column --- src/parser/common/basicSQL.ts | 30 +++++++++---------- .../suggestion/suggestionWithEntity.test.ts | 19 ++++++------ .../suggestion/suggestionWithEntity.test.ts | 18 +++++------ 3 files changed, 32 insertions(+), 35 deletions(-) diff --git a/src/parser/common/basicSQL.ts b/src/parser/common/basicSQL.ts index 385ab2dc..cb708546 100644 --- a/src/parser/common/basicSQL.ts +++ b/src/parser/common/basicSQL.ts @@ -134,6 +134,7 @@ export abstract class BasicSQL< public createParser(input: string, errorListener?: ErrorListener) { const lexer = this.createLexer(input, errorListener); const tokenStream = new CommonTokenStream(lexer); + tokenStream.fill(); const parser = this.createParserFromTokenStream(tokenStream); parser.interpreter.predictionMode = PredictionMode.SLL; if (errorListener) { @@ -558,29 +559,28 @@ export abstract class BasicSQL< } public getAllEntities(input: string, caretPosition?: CaretPosition): EntityContext[] | null { - const allTokens = this.getAllTokens(input); + /** + * Create a new parser to generate brand new parse tree. + * And the new parse tree should not effect cached parse tree which is used by validate and getSuggestionAtCaretPosition method. + */ + const parser = this.createParser(input); + const allTokens = (parser.tokenStream as CommonTokenStream).getTokens(); + const caretTokenIndex = caretPosition ? findCaretTokenIndex(caretPosition, allTokens) : void 0; - const collectListener = this.createEntityCollector(input, allTokens, caretTokenIndex); - // const parser = this.createParserWithCache(input); - // parser.entityCollecting = true; - // if(caretPosition) { - // const allTokens = this.getAllTokens(input); - // const tokenIndex = findCaretTokenIndex(caretPosition, allTokens); - // parser.caretTokenIndex = tokenIndex; - // } - - // const parseTree = parser.program(); - - const parseTree = this.parseWithCache(input); + parser.entityCollecting = true; + if (caretPosition && caretTokenIndex !== undefined) { + parser.caretTokenIndex = caretTokenIndex; + } + const parseTree = parser.program(); this.listen(collectListener, parseTree); - // parser.caretTokenIndex = -1; - // parser.entityCollecting = false; + parser.caretTokenIndex = -1; + parser.entityCollecting = false; return collectListener.getEntities(); } diff --git a/test/parser/impala/suggestion/suggestionWithEntity.test.ts b/test/parser/impala/suggestion/suggestionWithEntity.test.ts index 2a5856e4..aeb69878 100644 --- a/test/parser/impala/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/impala/suggestion/suggestionWithEntity.test.ts @@ -70,15 +70,14 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = impala.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('insert_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - // TODO: - // expect(entities[1].text).toBe('from_tb'); - // expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - // expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with trailing comma', () => { @@ -121,14 +120,14 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = impala.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('sorted_census_data'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - // TODO: - // expect(entities[1].text).toBe('unsorted_census_data'); - // expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - // expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with trailing comma', () => { diff --git a/test/parser/trino/suggestion/suggestionWithEntity.test.ts b/test/parser/trino/suggestion/suggestionWithEntity.test.ts index 5d63a20e..2c546eea 100644 --- a/test/parser/trino/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/trino/suggestion/suggestionWithEntity.test.ts @@ -70,15 +70,14 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = trino.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('insert_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - // TODO: - // expect(entities[1].text).toBe('from_tb'); - // expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - // expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].text).toBe('from_tb'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with trailing comma', () => { @@ -121,15 +120,14 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = trino.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('sorted_census_data'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - // TODO: - // expect(entities[1].text).toBe('unsorted_census_data'); - // expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - // expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].text).toBe('unsorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with trailing comma', () => { From 34703ffdc96315be600e4ea8a1725ccd9e329e4c Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Tue, 11 Nov 2025 13:58:33 +0800 Subject: [PATCH 06/15] chore: update jest.config.js to hide console.log --- jest.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jest.config.js b/jest.config.js index 39533fa9..11dbcbeb 100644 --- a/jest.config.js +++ b/jest.config.js @@ -184,4 +184,7 @@ module.exports = { // watchman: true transformIgnorePatterns: ['dist/', '/node_modules/.pnpm/(?!(antlr4ng|antlr4-c3)@)'], + + // Disable console output in tests + silent: true, }; From 9a59c7711bf4763fa099971d98c7d4e04836a116 Mon Sep 17 00:00:00 2001 From: zhaoge <> Date: Wed, 27 Aug 2025 11:26:37 +0800 Subject: [PATCH 07/15] fix(flink): #442 fix flink's insert values() can't support function problem --- src/grammar/flink/FlinkSqlParser.g4 | 7 +- src/lib/flink/FlinkSqlParser.interp | 3 +- src/lib/flink/FlinkSqlParser.ts | 5518 +++++++++--------- src/lib/flink/FlinkSqlParserListener.ts | 11 + src/lib/flink/FlinkSqlParserVisitor.ts | 7 + test/parser/flink/syntax/fixtures/select.sql | 3 + 6 files changed, 2825 insertions(+), 2724 deletions(-) diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index b9689253..1c70c06a 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -439,7 +439,12 @@ valuesDefinition ; valuesRowDefinition - : LR_BRACKET constant (COMMA constant)* RR_BRACKET + : LR_BRACKET valueDefinition (COMMA valueDefinition)* RR_BRACKET + ; + +valueDefinition + : constant + | functionCallExpression ; insertMulStatementCompatibility diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 1de25841..80ed68bf 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1166,6 +1166,7 @@ insertSimpleStatement insertPartitionDefinition valuesDefinition valuesRowDefinition +valueDefinition insertMulStatementCompatibility insertMulStatement queryStatement @@ -1285,4 +1286,4 @@ nonReservedKeywords atn: -[4, 1, 542, 2313, 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, 1, 0, 5, 0, 388, 8, 0, 10, 0, 12, 0, 391, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 397, 8, 1, 1, 1, 3, 1, 400, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 414, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 432, 8, 4, 1, 5, 1, 5, 3, 5, 436, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 445, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 450, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 455, 8, 8, 10, 8, 12, 8, 458, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 468, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 475, 8, 11, 10, 11, 12, 11, 478, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 489, 8, 12, 1, 12, 3, 12, 492, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 499, 8, 12, 1, 12, 3, 12, 502, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 510, 8, 12, 1, 12, 1, 12, 3, 12, 514, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 519, 8, 12, 1, 12, 3, 12, 522, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 529, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 537, 8, 15, 1, 16, 1, 16, 3, 16, 541, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 553, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 561, 8, 18, 1, 18, 1, 18, 3, 18, 565, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 597, 8, 18, 1, 19, 3, 19, 600, 8, 19, 1, 19, 4, 19, 603, 8, 19, 11, 19, 12, 19, 604, 1, 20, 1, 20, 3, 20, 609, 8, 20, 1, 21, 1, 21, 3, 21, 613, 8, 21, 1, 21, 1, 21, 3, 21, 617, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 624, 8, 21, 10, 21, 12, 21, 627, 9, 21, 1, 21, 1, 21, 3, 21, 631, 8, 21, 1, 21, 1, 21, 3, 21, 635, 8, 21, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 644, 8, 21, 1, 21, 3, 21, 647, 8, 21, 1, 21, 1, 21, 3, 21, 651, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 656, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 662, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 667, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 672, 8, 24, 1, 24, 1, 24, 3, 24, 676, 8, 24, 1, 25, 1, 25, 3, 25, 680, 8, 25, 1, 26, 1, 26, 3, 26, 684, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 692, 8, 28, 10, 28, 12, 28, 695, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 702, 8, 29, 1, 29, 1, 29, 3, 29, 706, 8, 29, 1, 29, 1, 29, 3, 29, 710, 8, 29, 1, 29, 1, 29, 3, 29, 714, 8, 29, 1, 29, 1, 29, 3, 29, 718, 8, 29, 1, 29, 1, 29, 3, 29, 722, 8, 29, 1, 29, 1, 29, 3, 29, 726, 8, 29, 1, 29, 1, 29, 3, 29, 730, 8, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 3, 29, 736, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 746, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 754, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 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, 35, 1, 35, 5, 35, 776, 8, 35, 10, 35, 12, 35, 779, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 790, 8, 35, 10, 35, 12, 35, 793, 9, 35, 1, 35, 1, 35, 3, 35, 797, 8, 35, 1, 36, 1, 36, 3, 36, 801, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 807, 8, 36, 1, 36, 3, 36, 810, 8, 36, 1, 36, 3, 36, 813, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 820, 8, 37, 1, 37, 3, 37, 823, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 832, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 844, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 866, 8, 46, 10, 46, 12, 46, 869, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 878, 8, 47, 10, 47, 12, 47, 881, 9, 47, 1, 47, 1, 47, 3, 47, 885, 8, 47, 1, 48, 1, 48, 3, 48, 889, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 895, 8, 49, 10, 49, 12, 49, 898, 9, 49, 1, 49, 3, 49, 901, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 907, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 917, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 922, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 928, 8, 53, 1, 53, 1, 53, 3, 53, 932, 8, 53, 1, 53, 1, 53, 3, 53, 936, 8, 53, 1, 53, 1, 53, 3, 53, 940, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 949, 8, 54, 1, 54, 1, 54, 3, 54, 953, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 960, 8, 54, 1, 54, 3, 54, 963, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 971, 8, 55, 10, 55, 12, 55, 974, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 981, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 989, 8, 57, 1, 58, 1, 58, 3, 58, 993, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1008, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1027, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1038, 8, 66, 1, 66, 1, 66, 3, 66, 1042, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1049, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1054, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1060, 8, 68, 1, 68, 1, 68, 3, 68, 1064, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1071, 8, 69, 1, 69, 1, 69, 3, 69, 1075, 8, 69, 1, 70, 1, 70, 3, 70, 1079, 8, 70, 1, 70, 1, 70, 3, 70, 1083, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1091, 8, 71, 1, 71, 1, 71, 3, 71, 1095, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1100, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1106, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1112, 8, 73, 1, 73, 3, 73, 1115, 8, 73, 1, 73, 1, 73, 3, 73, 1119, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1128, 8, 75, 10, 75, 12, 75, 1131, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1137, 8, 76, 10, 76, 12, 76, 1140, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1151, 8, 77, 11, 77, 12, 77, 1152, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1163, 8, 78, 11, 78, 12, 78, 1164, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1180, 8, 79, 1, 79, 3, 79, 1183, 8, 79, 1, 79, 1, 79, 3, 79, 1187, 8, 79, 1, 79, 3, 79, 1190, 8, 79, 3, 79, 1192, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1197, 8, 79, 1, 79, 1, 79, 3, 79, 1201, 8, 79, 1, 79, 3, 79, 1204, 8, 79, 5, 79, 1206, 8, 79, 10, 79, 12, 79, 1209, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1215, 8, 80, 10, 80, 12, 80, 1218, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1224, 8, 81, 10, 81, 12, 81, 1227, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1234, 8, 82, 10, 82, 12, 82, 1237, 9, 82, 1, 82, 1, 82, 3, 82, 1241, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1252, 8, 84, 1, 84, 3, 84, 1255, 8, 84, 1, 84, 3, 84, 1258, 8, 84, 1, 84, 3, 84, 1261, 8, 84, 1, 84, 3, 84, 1264, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1270, 8, 84, 1, 85, 1, 85, 3, 85, 1274, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1280, 8, 85, 10, 85, 12, 85, 1283, 9, 85, 3, 85, 1285, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1290, 8, 86, 1, 86, 3, 86, 1293, 8, 86, 1, 86, 1, 86, 3, 86, 1297, 8, 86, 1, 86, 3, 86, 1300, 8, 86, 3, 86, 1302, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1316, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1325, 8, 89, 10, 89, 12, 89, 1328, 9, 89, 1, 89, 1, 89, 3, 89, 1332, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1340, 8, 89, 1, 89, 3, 89, 1343, 8, 89, 1, 89, 3, 89, 1346, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1351, 8, 89, 5, 89, 1353, 8, 89, 10, 89, 12, 89, 1356, 9, 89, 1, 90, 1, 90, 3, 90, 1360, 8, 90, 1, 91, 3, 91, 1363, 8, 91, 1, 91, 1, 91, 3, 91, 1367, 8, 91, 1, 91, 1, 91, 3, 91, 1371, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1380, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1391, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 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, 5, 96, 1416, 8, 96, 10, 96, 12, 96, 1419, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1440, 8, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1453, 8, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1463, 8, 103, 10, 103, 12, 103, 1466, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1476, 8, 104, 10, 104, 12, 104, 1479, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1488, 8, 104, 10, 104, 12, 104, 1491, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1500, 8, 104, 10, 104, 12, 104, 1503, 9, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1508, 8, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1533, 8, 111, 10, 111, 12, 111, 1536, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 3, 113, 1543, 8, 113, 1, 113, 1, 113, 3, 113, 1547, 8, 113, 1, 113, 3, 113, 1550, 8, 113, 1, 113, 3, 113, 1553, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1560, 8, 114, 1, 114, 3, 114, 1563, 8, 114, 1, 114, 3, 114, 1566, 8, 114, 1, 114, 3, 114, 1569, 8, 114, 1, 114, 3, 114, 1572, 8, 114, 1, 114, 3, 114, 1575, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1580, 8, 114, 1, 114, 3, 114, 1583, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1590, 8, 115, 10, 115, 12, 115, 1593, 9, 115, 1, 116, 1, 116, 3, 116, 1597, 8, 116, 1, 116, 1, 116, 3, 116, 1601, 8, 116, 1, 117, 1, 117, 1, 117, 3, 117, 1606, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1612, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1617, 8, 118, 5, 118, 1619, 8, 118, 10, 118, 12, 118, 1622, 9, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1640, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1646, 8, 120, 10, 120, 12, 120, 1649, 9, 120, 1, 121, 1, 121, 1, 121, 4, 121, 1654, 8, 121, 11, 121, 12, 121, 1655, 1, 121, 1, 121, 3, 121, 1660, 8, 121, 1, 122, 1, 122, 3, 122, 1664, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1674, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1700, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1706, 8, 125, 10, 125, 12, 125, 1709, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1720, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1742, 8, 130, 3, 130, 1744, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1755, 8, 130, 1, 130, 5, 130, 1758, 8, 130, 10, 130, 12, 130, 1761, 9, 130, 1, 131, 3, 131, 1764, 8, 131, 1, 131, 1, 131, 3, 131, 1768, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1775, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1782, 8, 131, 10, 131, 12, 131, 1785, 9, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1790, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1803, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1810, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1815, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1821, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1828, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1835, 8, 131, 3, 131, 1837, 8, 131, 1, 132, 3, 132, 1840, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1850, 8, 132, 10, 132, 12, 132, 1853, 9, 132, 1, 132, 1, 132, 3, 132, 1857, 8, 132, 1, 132, 3, 132, 1860, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1866, 8, 132, 3, 132, 1868, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1874, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1895, 8, 133, 10, 133, 12, 133, 1898, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1905, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1910, 8, 134, 10, 134, 12, 134, 1913, 9, 134, 3, 134, 1915, 8, 134, 1, 134, 1, 134, 3, 134, 1919, 8, 134, 1, 135, 1, 135, 1, 135, 4, 135, 1924, 8, 135, 11, 135, 12, 135, 1925, 1, 135, 1, 135, 3, 135, 1930, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 1937, 8, 135, 11, 135, 12, 135, 1938, 1, 135, 1, 135, 3, 135, 1943, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1959, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1968, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1996, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 2003, 8, 135, 10, 135, 12, 135, 2006, 9, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2014, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2020, 8, 138, 1, 139, 1, 139, 3, 139, 2024, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2030, 8, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 143, 1, 143, 3, 143, 2038, 8, 143, 1, 144, 1, 144, 1, 144, 3, 144, 2043, 8, 144, 1, 145, 1, 145, 3, 145, 2047, 8, 145, 1, 146, 1, 146, 1, 146, 4, 146, 2052, 8, 146, 11, 146, 12, 146, 2053, 1, 147, 1, 147, 1, 147, 3, 147, 2059, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 3, 149, 2067, 8, 149, 1, 149, 1, 149, 3, 149, 2071, 8, 149, 1, 150, 3, 150, 2074, 8, 150, 1, 150, 1, 150, 3, 150, 2078, 8, 150, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 4, 152, 2085, 8, 152, 11, 152, 12, 152, 2086, 1, 152, 3, 152, 2090, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2099, 8, 154, 10, 154, 12, 154, 2102, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2107, 8, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2125, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2130, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2135, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2142, 8, 163, 3, 163, 2144, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2149, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2156, 8, 164, 3, 164, 2158, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2163, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2170, 8, 165, 3, 165, 2172, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2177, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2184, 8, 166, 3, 166, 2186, 8, 166, 1, 167, 1, 167, 1, 167, 5, 167, 2191, 8, 167, 10, 167, 12, 167, 2194, 9, 167, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 2210, 8, 171, 10, 171, 12, 171, 2213, 9, 171, 1, 171, 1, 171, 1, 172, 1, 172, 3, 172, 2219, 8, 172, 1, 172, 3, 172, 2222, 8, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2227, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2233, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2241, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2257, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2266, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2276, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2283, 8, 180, 1, 180, 3, 180, 2286, 8, 180, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 2192, 5, 158, 178, 260, 266, 270, 193, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2519, 0, 389, 1, 0, 0, 0, 2, 399, 1, 0, 0, 0, 4, 413, 1, 0, 0, 0, 6, 415, 1, 0, 0, 0, 8, 431, 1, 0, 0, 0, 10, 435, 1, 0, 0, 0, 12, 437, 1, 0, 0, 0, 14, 440, 1, 0, 0, 0, 16, 451, 1, 0, 0, 0, 18, 459, 1, 0, 0, 0, 20, 467, 1, 0, 0, 0, 22, 469, 1, 0, 0, 0, 24, 521, 1, 0, 0, 0, 26, 523, 1, 0, 0, 0, 28, 530, 1, 0, 0, 0, 30, 534, 1, 0, 0, 0, 32, 538, 1, 0, 0, 0, 34, 542, 1, 0, 0, 0, 36, 596, 1, 0, 0, 0, 38, 602, 1, 0, 0, 0, 40, 608, 1, 0, 0, 0, 42, 610, 1, 0, 0, 0, 44, 652, 1, 0, 0, 0, 46, 666, 1, 0, 0, 0, 48, 668, 1, 0, 0, 0, 50, 679, 1, 0, 0, 0, 52, 683, 1, 0, 0, 0, 54, 685, 1, 0, 0, 0, 56, 687, 1, 0, 0, 0, 58, 735, 1, 0, 0, 0, 60, 737, 1, 0, 0, 0, 62, 741, 1, 0, 0, 0, 64, 749, 1, 0, 0, 0, 66, 757, 1, 0, 0, 0, 68, 761, 1, 0, 0, 0, 70, 796, 1, 0, 0, 0, 72, 812, 1, 0, 0, 0, 74, 814, 1, 0, 0, 0, 76, 824, 1, 0, 0, 0, 78, 826, 1, 0, 0, 0, 80, 833, 1, 0, 0, 0, 82, 835, 1, 0, 0, 0, 84, 843, 1, 0, 0, 0, 86, 851, 1, 0, 0, 0, 88, 853, 1, 0, 0, 0, 90, 857, 1, 0, 0, 0, 92, 861, 1, 0, 0, 0, 94, 884, 1, 0, 0, 0, 96, 888, 1, 0, 0, 0, 98, 890, 1, 0, 0, 0, 100, 906, 1, 0, 0, 0, 102, 908, 1, 0, 0, 0, 104, 913, 1, 0, 0, 0, 106, 925, 1, 0, 0, 0, 108, 944, 1, 0, 0, 0, 110, 964, 1, 0, 0, 0, 112, 975, 1, 0, 0, 0, 114, 977, 1, 0, 0, 0, 116, 990, 1, 0, 0, 0, 118, 997, 1, 0, 0, 0, 120, 1000, 1, 0, 0, 0, 122, 1009, 1, 0, 0, 0, 124, 1013, 1, 0, 0, 0, 126, 1017, 1, 0, 0, 0, 128, 1020, 1, 0, 0, 0, 130, 1028, 1, 0, 0, 0, 132, 1033, 1, 0, 0, 0, 134, 1050, 1, 0, 0, 0, 136, 1057, 1, 0, 0, 0, 138, 1067, 1, 0, 0, 0, 140, 1076, 1, 0, 0, 0, 142, 1086, 1, 0, 0, 0, 144, 1105, 1, 0, 0, 0, 146, 1107, 1, 0, 0, 0, 148, 1120, 1, 0, 0, 0, 150, 1123, 1, 0, 0, 0, 152, 1132, 1, 0, 0, 0, 154, 1143, 1, 0, 0, 0, 156, 1156, 1, 0, 0, 0, 158, 1191, 1, 0, 0, 0, 160, 1210, 1, 0, 0, 0, 162, 1219, 1, 0, 0, 0, 164, 1228, 1, 0, 0, 0, 166, 1247, 1, 0, 0, 0, 168, 1269, 1, 0, 0, 0, 170, 1271, 1, 0, 0, 0, 172, 1301, 1, 0, 0, 0, 174, 1315, 1, 0, 0, 0, 176, 1317, 1, 0, 0, 0, 178, 1331, 1, 0, 0, 0, 180, 1357, 1, 0, 0, 0, 182, 1390, 1, 0, 0, 0, 184, 1392, 1, 0, 0, 0, 186, 1398, 1, 0, 0, 0, 188, 1400, 1, 0, 0, 0, 190, 1405, 1, 0, 0, 0, 192, 1410, 1, 0, 0, 0, 194, 1422, 1, 0, 0, 0, 196, 1439, 1, 0, 0, 0, 198, 1441, 1, 0, 0, 0, 200, 1443, 1, 0, 0, 0, 202, 1452, 1, 0, 0, 0, 204, 1454, 1, 0, 0, 0, 206, 1457, 1, 0, 0, 0, 208, 1507, 1, 0, 0, 0, 210, 1509, 1, 0, 0, 0, 212, 1512, 1, 0, 0, 0, 214, 1514, 1, 0, 0, 0, 216, 1521, 1, 0, 0, 0, 218, 1523, 1, 0, 0, 0, 220, 1525, 1, 0, 0, 0, 222, 1528, 1, 0, 0, 0, 224, 1537, 1, 0, 0, 0, 226, 1542, 1, 0, 0, 0, 228, 1556, 1, 0, 0, 0, 230, 1584, 1, 0, 0, 0, 232, 1594, 1, 0, 0, 0, 234, 1602, 1, 0, 0, 0, 236, 1607, 1, 0, 0, 0, 238, 1639, 1, 0, 0, 0, 240, 1641, 1, 0, 0, 0, 242, 1650, 1, 0, 0, 0, 244, 1661, 1, 0, 0, 0, 246, 1673, 1, 0, 0, 0, 248, 1699, 1, 0, 0, 0, 250, 1701, 1, 0, 0, 0, 252, 1719, 1, 0, 0, 0, 254, 1721, 1, 0, 0, 0, 256, 1726, 1, 0, 0, 0, 258, 1729, 1, 0, 0, 0, 260, 1743, 1, 0, 0, 0, 262, 1836, 1, 0, 0, 0, 264, 1867, 1, 0, 0, 0, 266, 1873, 1, 0, 0, 0, 268, 1918, 1, 0, 0, 0, 270, 1995, 1, 0, 0, 0, 272, 2007, 1, 0, 0, 0, 274, 2013, 1, 0, 0, 0, 276, 2019, 1, 0, 0, 0, 278, 2023, 1, 0, 0, 0, 280, 2029, 1, 0, 0, 0, 282, 2031, 1, 0, 0, 0, 284, 2033, 1, 0, 0, 0, 286, 2037, 1, 0, 0, 0, 288, 2039, 1, 0, 0, 0, 290, 2044, 1, 0, 0, 0, 292, 2051, 1, 0, 0, 0, 294, 2055, 1, 0, 0, 0, 296, 2060, 1, 0, 0, 0, 298, 2070, 1, 0, 0, 0, 300, 2073, 1, 0, 0, 0, 302, 2079, 1, 0, 0, 0, 304, 2089, 1, 0, 0, 0, 306, 2091, 1, 0, 0, 0, 308, 2095, 1, 0, 0, 0, 310, 2106, 1, 0, 0, 0, 312, 2108, 1, 0, 0, 0, 314, 2110, 1, 0, 0, 0, 316, 2112, 1, 0, 0, 0, 318, 2117, 1, 0, 0, 0, 320, 2119, 1, 0, 0, 0, 322, 2121, 1, 0, 0, 0, 324, 2126, 1, 0, 0, 0, 326, 2143, 1, 0, 0, 0, 328, 2157, 1, 0, 0, 0, 330, 2171, 1, 0, 0, 0, 332, 2185, 1, 0, 0, 0, 334, 2187, 1, 0, 0, 0, 336, 2195, 1, 0, 0, 0, 338, 2198, 1, 0, 0, 0, 340, 2202, 1, 0, 0, 0, 342, 2205, 1, 0, 0, 0, 344, 2216, 1, 0, 0, 0, 346, 2226, 1, 0, 0, 0, 348, 2232, 1, 0, 0, 0, 350, 2240, 1, 0, 0, 0, 352, 2256, 1, 0, 0, 0, 354, 2265, 1, 0, 0, 0, 356, 2267, 1, 0, 0, 0, 358, 2269, 1, 0, 0, 0, 360, 2285, 1, 0, 0, 0, 362, 2287, 1, 0, 0, 0, 364, 2290, 1, 0, 0, 0, 366, 2292, 1, 0, 0, 0, 368, 2294, 1, 0, 0, 0, 370, 2296, 1, 0, 0, 0, 372, 2298, 1, 0, 0, 0, 374, 2300, 1, 0, 0, 0, 376, 2302, 1, 0, 0, 0, 378, 2304, 1, 0, 0, 0, 380, 2306, 1, 0, 0, 0, 382, 2308, 1, 0, 0, 0, 384, 2310, 1, 0, 0, 0, 386, 388, 3, 2, 1, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 5, 0, 0, 1, 393, 1, 1, 0, 0, 0, 394, 396, 3, 4, 2, 0, 395, 397, 5, 522, 0, 0, 396, 395, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 400, 3, 6, 3, 0, 399, 394, 1, 0, 0, 0, 399, 398, 1, 0, 0, 0, 400, 3, 1, 0, 0, 0, 401, 414, 3, 8, 4, 0, 402, 414, 3, 10, 5, 0, 403, 414, 3, 12, 6, 0, 404, 414, 3, 14, 7, 0, 405, 414, 3, 20, 10, 0, 406, 414, 3, 24, 12, 0, 407, 414, 3, 26, 13, 0, 408, 414, 3, 28, 14, 0, 409, 414, 3, 30, 15, 0, 410, 414, 3, 32, 16, 0, 411, 414, 3, 34, 17, 0, 412, 414, 3, 36, 18, 0, 413, 401, 1, 0, 0, 0, 413, 402, 1, 0, 0, 0, 413, 403, 1, 0, 0, 0, 413, 404, 1, 0, 0, 0, 413, 405, 1, 0, 0, 0, 413, 406, 1, 0, 0, 0, 413, 407, 1, 0, 0, 0, 413, 408, 1, 0, 0, 0, 413, 409, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 412, 1, 0, 0, 0, 414, 5, 1, 0, 0, 0, 415, 416, 5, 522, 0, 0, 416, 7, 1, 0, 0, 0, 417, 432, 3, 40, 20, 0, 418, 432, 3, 104, 52, 0, 419, 432, 3, 106, 53, 0, 420, 432, 3, 108, 54, 0, 421, 432, 3, 102, 51, 0, 422, 432, 3, 114, 57, 0, 423, 432, 3, 128, 64, 0, 424, 432, 3, 130, 65, 0, 425, 432, 3, 132, 66, 0, 426, 432, 3, 134, 67, 0, 427, 432, 3, 136, 68, 0, 428, 432, 3, 138, 69, 0, 429, 432, 3, 140, 70, 0, 430, 432, 3, 142, 71, 0, 431, 417, 1, 0, 0, 0, 431, 418, 1, 0, 0, 0, 431, 419, 1, 0, 0, 0, 431, 420, 1, 0, 0, 0, 431, 421, 1, 0, 0, 0, 431, 422, 1, 0, 0, 0, 431, 423, 1, 0, 0, 0, 431, 424, 1, 0, 0, 0, 431, 425, 1, 0, 0, 0, 431, 426, 1, 0, 0, 0, 431, 427, 1, 0, 0, 0, 431, 428, 1, 0, 0, 0, 431, 429, 1, 0, 0, 0, 431, 430, 1, 0, 0, 0, 432, 9, 1, 0, 0, 0, 433, 436, 3, 158, 79, 0, 434, 436, 3, 144, 72, 0, 435, 433, 1, 0, 0, 0, 435, 434, 1, 0, 0, 0, 436, 11, 1, 0, 0, 0, 437, 438, 7, 0, 0, 0, 438, 439, 3, 328, 164, 0, 439, 13, 1, 0, 0, 0, 440, 444, 5, 135, 0, 0, 441, 445, 3, 16, 8, 0, 442, 443, 5, 480, 0, 0, 443, 445, 5, 146, 0, 0, 444, 441, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 449, 1, 0, 0, 0, 446, 450, 3, 10, 5, 0, 447, 450, 3, 146, 73, 0, 448, 450, 3, 156, 78, 0, 449, 446, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 449, 448, 1, 0, 0, 0, 450, 15, 1, 0, 0, 0, 451, 456, 3, 18, 9, 0, 452, 453, 5, 521, 0, 0, 453, 455, 3, 18, 9, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 17, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 460, 7, 1, 0, 0, 460, 19, 1, 0, 0, 0, 461, 462, 5, 411, 0, 0, 462, 463, 5, 442, 0, 0, 463, 468, 3, 318, 159, 0, 464, 465, 5, 411, 0, 0, 465, 468, 3, 322, 161, 0, 466, 468, 3, 22, 11, 0, 467, 461, 1, 0, 0, 0, 467, 464, 1, 0, 0, 0, 467, 466, 1, 0, 0, 0, 468, 21, 1, 0, 0, 0, 469, 470, 5, 411, 0, 0, 470, 471, 5, 228, 0, 0, 471, 476, 3, 334, 167, 0, 472, 473, 5, 521, 0, 0, 473, 475, 3, 334, 167, 0, 474, 472, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 23, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, 480, 5, 342, 0, 0, 480, 522, 7, 2, 0, 0, 481, 482, 5, 342, 0, 0, 482, 483, 5, 76, 0, 0, 483, 522, 7, 3, 0, 0, 484, 485, 5, 342, 0, 0, 485, 488, 5, 375, 0, 0, 486, 487, 7, 4, 0, 0, 487, 489, 3, 322, 161, 0, 488, 486, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 491, 1, 0, 0, 0, 490, 492, 3, 264, 132, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 522, 1, 0, 0, 0, 493, 494, 5, 342, 0, 0, 494, 495, 5, 58, 0, 0, 495, 498, 7, 4, 0, 0, 496, 499, 3, 330, 165, 0, 497, 499, 3, 328, 164, 0, 498, 496, 1, 0, 0, 0, 498, 497, 1, 0, 0, 0, 499, 501, 1, 0, 0, 0, 500, 502, 3, 264, 132, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 522, 1, 0, 0, 0, 503, 504, 5, 342, 0, 0, 504, 509, 5, 72, 0, 0, 505, 506, 5, 374, 0, 0, 506, 510, 3, 328, 164, 0, 507, 508, 5, 502, 0, 0, 508, 510, 3, 330, 165, 0, 509, 505, 1, 0, 0, 0, 509, 507, 1, 0, 0, 0, 510, 522, 1, 0, 0, 0, 511, 513, 5, 342, 0, 0, 512, 514, 5, 412, 0, 0, 513, 512, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 522, 5, 154, 0, 0, 516, 518, 5, 342, 0, 0, 517, 519, 5, 152, 0, 0, 518, 517, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 5, 228, 0, 0, 521, 479, 1, 0, 0, 0, 521, 481, 1, 0, 0, 0, 521, 484, 1, 0, 0, 0, 521, 493, 1, 0, 0, 0, 521, 503, 1, 0, 0, 0, 521, 511, 1, 0, 0, 0, 521, 516, 1, 0, 0, 0, 522, 25, 1, 0, 0, 0, 523, 524, 5, 469, 0, 0, 524, 525, 5, 227, 0, 0, 525, 528, 3, 334, 167, 0, 526, 527, 5, 434, 0, 0, 527, 529, 3, 342, 171, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 27, 1, 0, 0, 0, 530, 531, 5, 501, 0, 0, 531, 532, 5, 227, 0, 0, 532, 533, 3, 334, 167, 0, 533, 29, 1, 0, 0, 0, 534, 536, 5, 341, 0, 0, 535, 537, 3, 344, 172, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 31, 1, 0, 0, 0, 538, 540, 5, 313, 0, 0, 539, 541, 3, 346, 173, 0, 540, 539, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 33, 1, 0, 0, 0, 542, 543, 7, 5, 0, 0, 543, 544, 5, 464, 0, 0, 544, 545, 3, 112, 56, 0, 545, 35, 1, 0, 0, 0, 546, 547, 5, 438, 0, 0, 547, 548, 5, 464, 0, 0, 548, 549, 5, 434, 0, 0, 549, 552, 3, 38, 19, 0, 550, 551, 5, 17, 0, 0, 551, 553, 3, 334, 167, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 597, 1, 0, 0, 0, 554, 555, 5, 438, 0, 0, 555, 556, 5, 457, 0, 0, 556, 557, 5, 434, 0, 0, 557, 560, 3, 38, 19, 0, 558, 559, 5, 17, 0, 0, 559, 561, 3, 334, 167, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 564, 1, 0, 0, 0, 562, 563, 5, 312, 0, 0, 563, 565, 3, 334, 167, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 597, 1, 0, 0, 0, 566, 567, 5, 438, 0, 0, 567, 568, 7, 6, 0, 0, 568, 569, 5, 434, 0, 0, 569, 570, 3, 38, 19, 0, 570, 571, 5, 312, 0, 0, 571, 572, 3, 334, 167, 0, 572, 597, 1, 0, 0, 0, 573, 574, 5, 438, 0, 0, 574, 575, 5, 487, 0, 0, 575, 597, 3, 38, 19, 0, 576, 577, 5, 438, 0, 0, 577, 578, 5, 454, 0, 0, 578, 579, 5, 457, 0, 0, 579, 580, 5, 434, 0, 0, 580, 581, 3, 38, 19, 0, 581, 582, 5, 312, 0, 0, 582, 583, 3, 334, 167, 0, 583, 584, 5, 467, 0, 0, 584, 585, 3, 334, 167, 0, 585, 597, 1, 0, 0, 0, 586, 587, 5, 438, 0, 0, 587, 588, 5, 444, 0, 0, 588, 589, 5, 457, 0, 0, 589, 590, 5, 434, 0, 0, 590, 591, 3, 38, 19, 0, 591, 592, 5, 146, 0, 0, 592, 593, 3, 334, 167, 0, 593, 594, 5, 17, 0, 0, 594, 595, 3, 334, 167, 0, 595, 597, 1, 0, 0, 0, 596, 546, 1, 0, 0, 0, 596, 554, 1, 0, 0, 0, 596, 566, 1, 0, 0, 0, 596, 573, 1, 0, 0, 0, 596, 576, 1, 0, 0, 0, 596, 586, 1, 0, 0, 0, 597, 37, 1, 0, 0, 0, 598, 600, 5, 535, 0, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 3, 334, 167, 0, 602, 599, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 39, 1, 0, 0, 0, 606, 609, 3, 42, 21, 0, 607, 609, 3, 44, 22, 0, 608, 606, 1, 0, 0, 0, 608, 607, 1, 0, 0, 0, 609, 41, 1, 0, 0, 0, 610, 612, 5, 72, 0, 0, 611, 613, 5, 498, 0, 0, 612, 611, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 616, 5, 374, 0, 0, 615, 617, 3, 338, 169, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 3, 326, 163, 0, 619, 620, 5, 517, 0, 0, 620, 625, 3, 46, 23, 0, 621, 622, 5, 521, 0, 0, 622, 624, 3, 46, 23, 0, 623, 621, 1, 0, 0, 0, 624, 627, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 628, 629, 5, 521, 0, 0, 629, 631, 3, 82, 41, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 633, 5, 521, 0, 0, 633, 635, 3, 84, 42, 0, 634, 632, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 637, 5, 521, 0, 0, 637, 639, 3, 88, 44, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 643, 5, 518, 0, 0, 641, 642, 5, 59, 0, 0, 642, 644, 5, 538, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 646, 1, 0, 0, 0, 645, 647, 3, 90, 45, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 3, 336, 168, 0, 649, 651, 3, 98, 49, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 43, 1, 0, 0, 0, 652, 653, 5, 72, 0, 0, 653, 655, 5, 374, 0, 0, 654, 656, 3, 338, 169, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 3, 326, 163, 0, 658, 661, 3, 336, 168, 0, 659, 660, 5, 17, 0, 0, 660, 662, 3, 158, 79, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 45, 1, 0, 0, 0, 663, 667, 3, 48, 24, 0, 664, 667, 3, 74, 37, 0, 665, 667, 3, 78, 39, 0, 666, 663, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 665, 1, 0, 0, 0, 667, 47, 1, 0, 0, 0, 668, 669, 3, 50, 25, 0, 669, 671, 3, 58, 29, 0, 670, 672, 3, 72, 36, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 674, 5, 59, 0, 0, 674, 676, 5, 538, 0, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 49, 1, 0, 0, 0, 677, 680, 3, 334, 167, 0, 678, 680, 3, 258, 129, 0, 679, 677, 1, 0, 0, 0, 679, 678, 1, 0, 0, 0, 680, 51, 1, 0, 0, 0, 681, 684, 3, 334, 167, 0, 682, 684, 4, 26, 0, 0, 683, 681, 1, 0, 0, 0, 683, 682, 1, 0, 0, 0, 684, 53, 1, 0, 0, 0, 685, 686, 3, 334, 167, 0, 686, 55, 1, 0, 0, 0, 687, 688, 5, 517, 0, 0, 688, 693, 3, 52, 26, 0, 689, 690, 5, 521, 0, 0, 690, 692, 3, 52, 26, 0, 691, 689, 1, 0, 0, 0, 692, 695, 1, 0, 0, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 696, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 696, 697, 5, 518, 0, 0, 697, 57, 1, 0, 0, 0, 698, 736, 7, 7, 0, 0, 699, 701, 7, 8, 0, 0, 700, 702, 3, 60, 30, 0, 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 736, 1, 0, 0, 0, 703, 705, 5, 380, 0, 0, 704, 706, 3, 60, 30, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 713, 1, 0, 0, 0, 707, 709, 7, 9, 0, 0, 708, 710, 5, 207, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 379, 0, 0, 712, 714, 5, 505, 0, 0, 713, 707, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 736, 1, 0, 0, 0, 715, 717, 7, 10, 0, 0, 716, 718, 3, 62, 31, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 736, 1, 0, 0, 0, 719, 721, 7, 11, 0, 0, 720, 722, 3, 66, 33, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 736, 1, 0, 0, 0, 723, 725, 5, 470, 0, 0, 724, 726, 3, 68, 34, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 736, 1, 0, 0, 0, 727, 729, 5, 322, 0, 0, 728, 730, 3, 70, 35, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 736, 1, 0, 0, 0, 731, 733, 5, 295, 0, 0, 732, 734, 3, 64, 32, 0, 733, 732, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 736, 1, 0, 0, 0, 735, 698, 1, 0, 0, 0, 735, 699, 1, 0, 0, 0, 735, 703, 1, 0, 0, 0, 735, 715, 1, 0, 0, 0, 735, 719, 1, 0, 0, 0, 735, 723, 1, 0, 0, 0, 735, 727, 1, 0, 0, 0, 735, 731, 1, 0, 0, 0, 736, 59, 1, 0, 0, 0, 737, 738, 5, 517, 0, 0, 738, 739, 3, 366, 183, 0, 739, 740, 5, 518, 0, 0, 740, 61, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 745, 3, 366, 183, 0, 743, 744, 5, 521, 0, 0, 744, 746, 3, 366, 183, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 5, 518, 0, 0, 748, 63, 1, 0, 0, 0, 749, 750, 5, 517, 0, 0, 750, 753, 3, 364, 182, 0, 751, 752, 5, 521, 0, 0, 752, 754, 3, 364, 182, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 5, 518, 0, 0, 756, 65, 1, 0, 0, 0, 757, 758, 5, 508, 0, 0, 758, 759, 3, 58, 29, 0, 759, 760, 5, 507, 0, 0, 760, 67, 1, 0, 0, 0, 761, 762, 5, 508, 0, 0, 762, 763, 3, 58, 29, 0, 763, 764, 5, 521, 0, 0, 764, 765, 3, 58, 29, 0, 765, 766, 1, 0, 0, 0, 766, 767, 5, 507, 0, 0, 767, 69, 1, 0, 0, 0, 768, 769, 5, 508, 0, 0, 769, 770, 3, 52, 26, 0, 770, 777, 3, 58, 29, 0, 771, 772, 5, 521, 0, 0, 772, 773, 3, 52, 26, 0, 773, 774, 3, 58, 29, 0, 774, 776, 1, 0, 0, 0, 775, 771, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 781, 5, 507, 0, 0, 781, 797, 1, 0, 0, 0, 782, 783, 5, 517, 0, 0, 783, 784, 3, 52, 26, 0, 784, 791, 3, 58, 29, 0, 785, 786, 5, 521, 0, 0, 786, 787, 3, 52, 26, 0, 787, 788, 3, 58, 29, 0, 788, 790, 1, 0, 0, 0, 789, 785, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 794, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 795, 5, 518, 0, 0, 795, 797, 1, 0, 0, 0, 796, 768, 1, 0, 0, 0, 796, 782, 1, 0, 0, 0, 797, 71, 1, 0, 0, 0, 798, 799, 5, 64, 0, 0, 799, 801, 3, 86, 43, 0, 800, 798, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 5, 289, 0, 0, 803, 806, 5, 467, 0, 0, 804, 805, 5, 242, 0, 0, 805, 807, 5, 125, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 813, 1, 0, 0, 0, 808, 810, 5, 242, 0, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 245, 0, 0, 812, 800, 1, 0, 0, 0, 812, 809, 1, 0, 0, 0, 813, 73, 1, 0, 0, 0, 814, 815, 3, 50, 25, 0, 815, 816, 3, 58, 29, 0, 816, 819, 5, 219, 0, 0, 817, 818, 5, 151, 0, 0, 818, 820, 3, 76, 38, 0, 819, 817, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 822, 1, 0, 0, 0, 821, 823, 5, 424, 0, 0, 822, 821, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 75, 1, 0, 0, 0, 824, 825, 5, 538, 0, 0, 825, 77, 1, 0, 0, 0, 826, 827, 3, 50, 25, 0, 827, 828, 5, 17, 0, 0, 828, 831, 3, 80, 40, 0, 829, 830, 5, 59, 0, 0, 830, 832, 5, 538, 0, 0, 831, 829, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 79, 1, 0, 0, 0, 833, 834, 3, 258, 129, 0, 834, 81, 1, 0, 0, 0, 835, 836, 5, 425, 0, 0, 836, 837, 5, 146, 0, 0, 837, 838, 3, 52, 26, 0, 838, 839, 5, 17, 0, 0, 839, 840, 3, 258, 129, 0, 840, 83, 1, 0, 0, 0, 841, 842, 5, 64, 0, 0, 842, 844, 3, 86, 43, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 5, 289, 0, 0, 846, 847, 5, 467, 0, 0, 847, 848, 3, 56, 28, 0, 848, 849, 5, 242, 0, 0, 849, 850, 5, 125, 0, 0, 850, 85, 1, 0, 0, 0, 851, 852, 3, 310, 155, 0, 852, 87, 1, 0, 0, 0, 853, 854, 5, 278, 0, 0, 854, 855, 5, 146, 0, 0, 855, 856, 5, 372, 0, 0, 856, 89, 1, 0, 0, 0, 857, 858, 5, 270, 0, 0, 858, 859, 5, 34, 0, 0, 859, 860, 3, 92, 46, 0, 860, 91, 1, 0, 0, 0, 861, 862, 5, 517, 0, 0, 862, 867, 3, 94, 47, 0, 863, 864, 5, 521, 0, 0, 864, 866, 3, 94, 47, 0, 865, 863, 1, 0, 0, 0, 866, 869, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 870, 871, 5, 518, 0, 0, 871, 93, 1, 0, 0, 0, 872, 885, 3, 52, 26, 0, 873, 874, 5, 517, 0, 0, 874, 879, 3, 96, 48, 0, 875, 876, 5, 521, 0, 0, 876, 878, 3, 96, 48, 0, 877, 875, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 882, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 883, 5, 518, 0, 0, 883, 885, 1, 0, 0, 0, 884, 872, 1, 0, 0, 0, 884, 873, 1, 0, 0, 0, 885, 95, 1, 0, 0, 0, 886, 889, 3, 286, 143, 0, 887, 889, 3, 360, 180, 0, 888, 886, 1, 0, 0, 0, 888, 887, 1, 0, 0, 0, 889, 97, 1, 0, 0, 0, 890, 891, 5, 203, 0, 0, 891, 900, 3, 328, 164, 0, 892, 896, 5, 517, 0, 0, 893, 895, 3, 100, 50, 0, 894, 893, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 899, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 901, 5, 518, 0, 0, 900, 892, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 99, 1, 0, 0, 0, 902, 903, 7, 12, 0, 0, 903, 907, 7, 13, 0, 0, 904, 905, 7, 14, 0, 0, 905, 907, 7, 15, 0, 0, 906, 902, 1, 0, 0, 0, 906, 904, 1, 0, 0, 0, 907, 101, 1, 0, 0, 0, 908, 909, 5, 72, 0, 0, 909, 910, 5, 442, 0, 0, 910, 911, 3, 320, 160, 0, 911, 912, 3, 336, 168, 0, 912, 103, 1, 0, 0, 0, 913, 914, 5, 72, 0, 0, 914, 916, 5, 448, 0, 0, 915, 917, 3, 338, 169, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 921, 3, 324, 162, 0, 919, 920, 5, 59, 0, 0, 920, 922, 5, 538, 0, 0, 921, 919, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 336, 168, 0, 924, 105, 1, 0, 0, 0, 925, 927, 5, 72, 0, 0, 926, 928, 5, 498, 0, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 931, 5, 502, 0, 0, 930, 932, 3, 338, 169, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 3, 332, 166, 0, 934, 936, 3, 56, 28, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 939, 1, 0, 0, 0, 937, 938, 5, 59, 0, 0, 938, 940, 5, 538, 0, 0, 939, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 5, 17, 0, 0, 942, 943, 3, 158, 79, 0, 943, 107, 1, 0, 0, 0, 944, 948, 5, 72, 0, 0, 945, 949, 5, 498, 0, 0, 946, 947, 5, 498, 0, 0, 947, 949, 5, 371, 0, 0, 948, 945, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 952, 5, 153, 0, 0, 951, 953, 3, 338, 169, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 955, 3, 272, 136, 0, 955, 956, 5, 17, 0, 0, 956, 959, 3, 310, 155, 0, 957, 958, 5, 196, 0, 0, 958, 960, 7, 16, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 1, 0, 0, 0, 961, 963, 3, 110, 55, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 109, 1, 0, 0, 0, 964, 965, 5, 413, 0, 0, 965, 966, 5, 464, 0, 0, 966, 972, 3, 112, 56, 0, 967, 968, 5, 521, 0, 0, 968, 969, 5, 464, 0, 0, 969, 971, 3, 112, 56, 0, 970, 967, 1, 0, 0, 0, 971, 974, 1, 0, 0, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 111, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 975, 976, 5, 538, 0, 0, 976, 113, 1, 0, 0, 0, 977, 978, 5, 8, 0, 0, 978, 980, 5, 374, 0, 0, 979, 981, 3, 340, 170, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 988, 3, 328, 164, 0, 983, 989, 3, 116, 58, 0, 984, 989, 3, 118, 59, 0, 985, 989, 3, 120, 60, 0, 986, 989, 3, 122, 61, 0, 987, 989, 3, 124, 62, 0, 988, 983, 1, 0, 0, 0, 988, 984, 1, 0, 0, 0, 988, 985, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 115, 1, 0, 0, 0, 990, 992, 5, 312, 0, 0, 991, 993, 3, 334, 167, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 5, 389, 0, 0, 995, 996, 3, 334, 167, 0, 996, 117, 1, 0, 0, 0, 997, 998, 5, 341, 0, 0, 998, 999, 3, 342, 171, 0, 999, 119, 1, 0, 0, 0, 1000, 1001, 5, 438, 0, 0, 1001, 1002, 5, 64, 0, 0, 1002, 1003, 3, 86, 43, 0, 1003, 1004, 5, 289, 0, 0, 1004, 1005, 5, 467, 0, 0, 1005, 1007, 3, 56, 28, 0, 1006, 1008, 3, 126, 63, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 121, 1, 0, 0, 0, 1009, 1010, 5, 116, 0, 0, 1010, 1011, 5, 64, 0, 0, 1011, 1012, 3, 86, 43, 0, 1012, 123, 1, 0, 0, 0, 1013, 1014, 5, 438, 0, 0, 1014, 1015, 5, 404, 0, 0, 1015, 1016, 3, 56, 28, 0, 1016, 125, 1, 0, 0, 0, 1017, 1018, 5, 242, 0, 0, 1018, 1019, 5, 125, 0, 0, 1019, 127, 1, 0, 0, 0, 1020, 1021, 5, 8, 0, 0, 1021, 1022, 5, 502, 0, 0, 1022, 1026, 3, 330, 165, 0, 1023, 1027, 3, 116, 58, 0, 1024, 1025, 5, 17, 0, 0, 1025, 1027, 3, 158, 79, 0, 1026, 1023, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1027, 129, 1, 0, 0, 0, 1028, 1029, 5, 8, 0, 0, 1029, 1030, 5, 448, 0, 0, 1030, 1031, 3, 322, 161, 0, 1031, 1032, 3, 118, 59, 0, 1032, 131, 1, 0, 0, 0, 1033, 1037, 5, 8, 0, 0, 1034, 1038, 5, 498, 0, 0, 1035, 1036, 5, 498, 0, 0, 1036, 1038, 5, 371, 0, 0, 1037, 1034, 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1041, 5, 153, 0, 0, 1040, 1042, 3, 340, 170, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 3, 274, 137, 0, 1044, 1045, 5, 17, 0, 0, 1045, 1048, 3, 310, 155, 0, 1046, 1047, 5, 196, 0, 0, 1047, 1049, 7, 16, 0, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 133, 1, 0, 0, 0, 1050, 1051, 5, 116, 0, 0, 1051, 1053, 5, 442, 0, 0, 1052, 1054, 3, 340, 170, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 3, 318, 159, 0, 1056, 135, 1, 0, 0, 0, 1057, 1059, 5, 116, 0, 0, 1058, 1060, 5, 498, 0, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 5, 374, 0, 0, 1062, 1064, 3, 340, 170, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 3, 328, 164, 0, 1066, 137, 1, 0, 0, 0, 1067, 1068, 5, 116, 0, 0, 1068, 1070, 5, 448, 0, 0, 1069, 1071, 3, 340, 170, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1074, 3, 322, 161, 0, 1073, 1075, 7, 17, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 139, 1, 0, 0, 0, 1076, 1078, 5, 116, 0, 0, 1077, 1079, 5, 498, 0, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1082, 5, 502, 0, 0, 1081, 1083, 3, 340, 170, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 3, 330, 165, 0, 1085, 141, 1, 0, 0, 0, 1086, 1090, 5, 116, 0, 0, 1087, 1091, 5, 498, 0, 0, 1088, 1089, 5, 498, 0, 0, 1089, 1091, 5, 371, 0, 0, 1090, 1087, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 5, 153, 0, 0, 1093, 1095, 3, 340, 170, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 274, 137, 0, 1097, 143, 1, 0, 0, 0, 1098, 1100, 5, 132, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1106, 3, 146, 73, 0, 1102, 1106, 3, 154, 77, 0, 1103, 1104, 5, 132, 0, 0, 1104, 1106, 3, 156, 78, 0, 1105, 1099, 1, 0, 0, 0, 1105, 1102, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1106, 145, 1, 0, 0, 0, 1107, 1108, 5, 177, 0, 0, 1108, 1109, 7, 18, 0, 0, 1109, 1118, 3, 328, 164, 0, 1110, 1112, 3, 148, 74, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1115, 3, 56, 28, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1119, 3, 158, 79, 0, 1117, 1119, 3, 150, 75, 0, 1118, 1111, 1, 0, 0, 0, 1118, 1117, 1, 0, 0, 0, 1119, 147, 1, 0, 0, 0, 1120, 1121, 5, 269, 0, 0, 1121, 1122, 3, 342, 171, 0, 1122, 149, 1, 0, 0, 0, 1123, 1124, 5, 415, 0, 0, 1124, 1129, 3, 152, 76, 0, 1125, 1126, 5, 521, 0, 0, 1126, 1128, 3, 152, 76, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 151, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1133, 5, 517, 0, 0, 1133, 1138, 3, 360, 180, 0, 1134, 1135, 5, 521, 0, 0, 1135, 1137, 3, 360, 180, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1141, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1142, 5, 518, 0, 0, 1142, 153, 1, 0, 0, 0, 1143, 1144, 5, 24, 0, 0, 1144, 1145, 5, 355, 0, 0, 1145, 1146, 5, 341, 0, 0, 1146, 1150, 5, 522, 0, 0, 1147, 1148, 3, 146, 73, 0, 1148, 1149, 5, 522, 0, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1147, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 5, 122, 0, 0, 1155, 155, 1, 0, 0, 0, 1156, 1157, 5, 355, 0, 0, 1157, 1158, 5, 341, 0, 0, 1158, 1162, 5, 24, 0, 0, 1159, 1160, 3, 146, 73, 0, 1160, 1161, 5, 522, 0, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1159, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 5, 122, 0, 0, 1167, 157, 1, 0, 0, 0, 1168, 1169, 6, 79, -1, 0, 1169, 1192, 3, 160, 80, 0, 1170, 1171, 3, 162, 81, 0, 1171, 1172, 3, 158, 79, 5, 1172, 1192, 1, 0, 0, 0, 1173, 1174, 5, 517, 0, 0, 1174, 1175, 3, 158, 79, 0, 1175, 1176, 5, 518, 0, 0, 1176, 1192, 1, 0, 0, 0, 1177, 1179, 3, 170, 85, 0, 1178, 1180, 3, 230, 115, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1183, 3, 234, 117, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1192, 1, 0, 0, 0, 1184, 1186, 3, 168, 84, 0, 1185, 1187, 3, 230, 115, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1190, 3, 234, 117, 0, 1189, 1188, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1192, 1, 0, 0, 0, 1191, 1168, 1, 0, 0, 0, 1191, 1170, 1, 0, 0, 0, 1191, 1173, 1, 0, 0, 0, 1191, 1177, 1, 0, 0, 0, 1191, 1184, 1, 0, 0, 0, 1192, 1207, 1, 0, 0, 0, 1193, 1194, 10, 3, 0, 0, 1194, 1196, 7, 19, 0, 0, 1195, 1197, 5, 5, 0, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1200, 3, 158, 79, 0, 1199, 1201, 3, 230, 115, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1204, 3, 234, 117, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 1, 0, 0, 0, 1205, 1193, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 159, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1211, 5, 415, 0, 0, 1211, 1216, 3, 258, 129, 0, 1212, 1213, 5, 521, 0, 0, 1213, 1215, 3, 258, 129, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 161, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1220, 5, 434, 0, 0, 1220, 1225, 3, 164, 82, 0, 1221, 1222, 5, 521, 0, 0, 1222, 1224, 3, 164, 82, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1227, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 163, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1240, 3, 166, 83, 0, 1229, 1230, 5, 517, 0, 0, 1230, 1235, 3, 52, 26, 0, 1231, 1232, 5, 521, 0, 0, 1232, 1234, 3, 52, 26, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1237, 1, 0, 0, 0, 1235, 1233, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1239, 5, 518, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1229, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 5, 17, 0, 0, 1243, 1244, 5, 517, 0, 0, 1244, 1245, 3, 158, 79, 0, 1245, 1246, 5, 518, 0, 0, 1246, 165, 1, 0, 0, 0, 1247, 1248, 3, 310, 155, 0, 1248, 167, 1, 0, 0, 0, 1249, 1251, 3, 170, 85, 0, 1250, 1252, 3, 176, 88, 0, 1251, 1250, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1255, 3, 204, 102, 0, 1254, 1253, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1258, 3, 206, 103, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1261, 3, 220, 110, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 1, 0, 0, 0, 1262, 1264, 3, 222, 111, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1270, 1, 0, 0, 0, 1265, 1266, 3, 170, 85, 0, 1266, 1267, 3, 176, 88, 0, 1267, 1268, 3, 228, 114, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1249, 1, 0, 0, 0, 1269, 1265, 1, 0, 0, 0, 1270, 169, 1, 0, 0, 0, 1271, 1273, 5, 337, 0, 0, 1272, 1274, 3, 370, 185, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1284, 1, 0, 0, 0, 1275, 1285, 5, 528, 0, 0, 1276, 1281, 3, 172, 86, 0, 1277, 1278, 5, 521, 0, 0, 1278, 1280, 3, 172, 86, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1275, 1, 0, 0, 0, 1284, 1276, 1, 0, 0, 0, 1285, 171, 1, 0, 0, 0, 1286, 1302, 3, 174, 87, 0, 1287, 1292, 3, 258, 129, 0, 1288, 1290, 5, 17, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 3, 52, 26, 0, 1292, 1289, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1302, 1, 0, 0, 0, 1294, 1299, 3, 52, 26, 0, 1295, 1297, 5, 17, 0, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 3, 258, 129, 0, 1299, 1296, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1286, 1, 0, 0, 0, 1301, 1287, 1, 0, 0, 0, 1301, 1294, 1, 0, 0, 0, 1302, 173, 1, 0, 0, 0, 1303, 1304, 3, 270, 135, 0, 1304, 1305, 5, 263, 0, 0, 1305, 1306, 3, 226, 113, 0, 1306, 1307, 5, 17, 0, 0, 1307, 1308, 3, 310, 155, 0, 1308, 1316, 1, 0, 0, 0, 1309, 1310, 3, 270, 135, 0, 1310, 1311, 5, 263, 0, 0, 1311, 1312, 3, 302, 151, 0, 1312, 1313, 5, 17, 0, 0, 1313, 1314, 3, 310, 155, 0, 1314, 1316, 1, 0, 0, 0, 1315, 1303, 1, 0, 0, 0, 1315, 1309, 1, 0, 0, 0, 1316, 175, 1, 0, 0, 0, 1317, 1318, 5, 151, 0, 0, 1318, 1319, 3, 178, 89, 0, 1319, 177, 1, 0, 0, 0, 1320, 1321, 6, 89, -1, 0, 1321, 1326, 3, 180, 90, 0, 1322, 1323, 5, 521, 0, 0, 1323, 1325, 3, 180, 90, 0, 1324, 1322, 1, 0, 0, 0, 1325, 1328, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1332, 1, 0, 0, 0, 1328, 1326, 1, 0, 0, 0, 1329, 1332, 3, 188, 94, 0, 1330, 1332, 3, 190, 95, 0, 1331, 1320, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1354, 1, 0, 0, 0, 1333, 1334, 10, 3, 0, 0, 1334, 1335, 5, 73, 0, 0, 1335, 1336, 5, 185, 0, 0, 1336, 1353, 3, 178, 89, 4, 1337, 1339, 10, 4, 0, 0, 1338, 1340, 5, 234, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1343, 7, 20, 0, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1346, 5, 262, 0, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 5, 185, 0, 0, 1348, 1350, 3, 178, 89, 0, 1349, 1351, 3, 202, 101, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1333, 1, 0, 0, 0, 1352, 1337, 1, 0, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 179, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1359, 3, 182, 91, 0, 1358, 1360, 3, 300, 150, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 181, 1, 0, 0, 0, 1361, 1363, 5, 374, 0, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1366, 3, 328, 164, 0, 1365, 1367, 3, 184, 92, 0, 1366, 1365, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1391, 1, 0, 0, 0, 1368, 1370, 3, 330, 165, 0, 1369, 1371, 3, 184, 92, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1391, 1, 0, 0, 0, 1372, 1373, 5, 199, 0, 0, 1373, 1374, 5, 374, 0, 0, 1374, 1375, 5, 517, 0, 0, 1375, 1376, 3, 268, 134, 0, 1376, 1377, 5, 518, 0, 0, 1377, 1391, 1, 0, 0, 0, 1378, 1380, 5, 199, 0, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 5, 517, 0, 0, 1382, 1383, 3, 158, 79, 0, 1383, 1384, 5, 518, 0, 0, 1384, 1391, 1, 0, 0, 0, 1385, 1386, 5, 406, 0, 0, 1386, 1387, 5, 517, 0, 0, 1387, 1388, 3, 258, 129, 0, 1388, 1389, 5, 518, 0, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1362, 1, 0, 0, 0, 1390, 1368, 1, 0, 0, 0, 1390, 1372, 1, 0, 0, 0, 1390, 1379, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1391, 183, 1, 0, 0, 0, 1392, 1393, 5, 146, 0, 0, 1393, 1394, 5, 372, 0, 0, 1394, 1395, 5, 17, 0, 0, 1395, 1396, 5, 250, 0, 0, 1396, 1397, 3, 186, 93, 0, 1397, 185, 1, 0, 0, 0, 1398, 1399, 3, 258, 129, 0, 1399, 187, 1, 0, 0, 0, 1400, 1401, 5, 517, 0, 0, 1401, 1402, 3, 150, 75, 0, 1402, 1403, 5, 518, 0, 0, 1403, 1404, 3, 300, 150, 0, 1404, 189, 1, 0, 0, 0, 1405, 1406, 5, 374, 0, 0, 1406, 1407, 5, 517, 0, 0, 1407, 1408, 3, 192, 96, 0, 1408, 1409, 5, 518, 0, 0, 1409, 191, 1, 0, 0, 0, 1410, 1411, 3, 194, 97, 0, 1411, 1412, 5, 517, 0, 0, 1412, 1417, 3, 196, 98, 0, 1413, 1414, 5, 521, 0, 0, 1414, 1416, 3, 196, 98, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 518, 0, 0, 1421, 193, 1, 0, 0, 0, 1422, 1423, 7, 21, 0, 0, 1423, 195, 1, 0, 0, 0, 1424, 1425, 5, 374, 0, 0, 1425, 1440, 3, 218, 109, 0, 1426, 1440, 3, 200, 100, 0, 1427, 1440, 3, 288, 144, 0, 1428, 1429, 5, 447, 0, 0, 1429, 1430, 5, 537, 0, 0, 1430, 1431, 5, 374, 0, 0, 1431, 1440, 3, 218, 109, 0, 1432, 1433, 5, 499, 0, 0, 1433, 1434, 5, 537, 0, 0, 1434, 1440, 3, 200, 100, 0, 1435, 1436, 3, 198, 99, 0, 1436, 1437, 5, 537, 0, 0, 1437, 1438, 3, 288, 144, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1424, 1, 0, 0, 0, 1439, 1426, 1, 0, 0, 0, 1439, 1427, 1, 0, 0, 0, 1439, 1428, 1, 0, 0, 0, 1439, 1432, 1, 0, 0, 0, 1439, 1435, 1, 0, 0, 0, 1440, 197, 1, 0, 0, 0, 1441, 1442, 7, 22, 0, 0, 1442, 199, 1, 0, 0, 0, 1443, 1444, 5, 452, 0, 0, 1444, 1445, 5, 517, 0, 0, 1445, 1446, 3, 52, 26, 0, 1446, 1447, 5, 518, 0, 0, 1447, 201, 1, 0, 0, 0, 1448, 1449, 5, 254, 0, 0, 1449, 1453, 3, 260, 130, 0, 1450, 1451, 5, 413, 0, 0, 1451, 1453, 3, 56, 28, 0, 1452, 1448, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 203, 1, 0, 0, 0, 1454, 1455, 5, 431, 0, 0, 1455, 1456, 3, 260, 130, 0, 1456, 205, 1, 0, 0, 0, 1457, 1458, 5, 159, 0, 0, 1458, 1459, 5, 34, 0, 0, 1459, 1464, 3, 208, 104, 0, 1460, 1461, 5, 521, 0, 0, 1461, 1463, 3, 208, 104, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1466, 1, 0, 0, 0, 1464, 1462, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 207, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1508, 3, 52, 26, 0, 1468, 1508, 3, 214, 107, 0, 1469, 1470, 5, 517, 0, 0, 1470, 1508, 5, 518, 0, 0, 1471, 1472, 5, 517, 0, 0, 1472, 1477, 3, 258, 129, 0, 1473, 1474, 5, 521, 0, 0, 1474, 1476, 3, 258, 129, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1479, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1481, 5, 518, 0, 0, 1481, 1508, 1, 0, 0, 0, 1482, 1483, 3, 212, 106, 0, 1483, 1484, 5, 517, 0, 0, 1484, 1489, 3, 258, 129, 0, 1485, 1486, 5, 521, 0, 0, 1486, 1488, 3, 258, 129, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1491, 1, 0, 0, 0, 1489, 1487, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1492, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1493, 5, 518, 0, 0, 1493, 1508, 1, 0, 0, 0, 1494, 1495, 3, 210, 105, 0, 1495, 1496, 5, 517, 0, 0, 1496, 1501, 3, 208, 104, 0, 1497, 1498, 5, 521, 0, 0, 1498, 1500, 3, 208, 104, 0, 1499, 1497, 1, 0, 0, 0, 1500, 1503, 1, 0, 0, 0, 1501, 1499, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1504, 1, 0, 0, 0, 1503, 1501, 1, 0, 0, 0, 1504, 1505, 5, 518, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1508, 3, 258, 129, 0, 1507, 1467, 1, 0, 0, 0, 1507, 1468, 1, 0, 0, 0, 1507, 1469, 1, 0, 0, 0, 1507, 1471, 1, 0, 0, 0, 1507, 1482, 1, 0, 0, 0, 1507, 1494, 1, 0, 0, 0, 1507, 1506, 1, 0, 0, 0, 1508, 209, 1, 0, 0, 0, 1509, 1510, 5, 160, 0, 0, 1510, 1511, 5, 494, 0, 0, 1511, 211, 1, 0, 0, 0, 1512, 1513, 7, 23, 0, 0, 1513, 213, 1, 0, 0, 0, 1514, 1515, 3, 216, 108, 0, 1515, 1516, 5, 517, 0, 0, 1516, 1517, 3, 218, 109, 0, 1517, 1518, 5, 521, 0, 0, 1518, 1519, 3, 288, 144, 0, 1519, 1520, 5, 518, 0, 0, 1520, 215, 1, 0, 0, 0, 1521, 1522, 7, 24, 0, 0, 1522, 217, 1, 0, 0, 0, 1523, 1524, 3, 334, 167, 0, 1524, 219, 1, 0, 0, 0, 1525, 1526, 5, 163, 0, 0, 1526, 1527, 3, 260, 130, 0, 1527, 221, 1, 0, 0, 0, 1528, 1529, 5, 433, 0, 0, 1529, 1534, 3, 224, 112, 0, 1530, 1531, 5, 521, 0, 0, 1531, 1533, 3, 224, 112, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1536, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 223, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1537, 1538, 3, 302, 151, 0, 1538, 1539, 5, 17, 0, 0, 1539, 1540, 3, 226, 113, 0, 1540, 225, 1, 0, 0, 0, 1541, 1543, 3, 302, 151, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 5, 517, 0, 0, 1545, 1547, 3, 236, 118, 0, 1546, 1545, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1549, 1, 0, 0, 0, 1548, 1550, 3, 230, 115, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 1, 0, 0, 0, 1551, 1553, 3, 252, 126, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 5, 518, 0, 0, 1555, 227, 1, 0, 0, 0, 1556, 1557, 5, 214, 0, 0, 1557, 1559, 5, 517, 0, 0, 1558, 1560, 3, 236, 118, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 1, 0, 0, 0, 1561, 1563, 3, 230, 115, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1565, 1, 0, 0, 0, 1564, 1566, 3, 240, 120, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1569, 3, 246, 123, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1572, 3, 248, 124, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1575, 3, 242, 121, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 3, 250, 125, 0, 1577, 1582, 5, 518, 0, 0, 1578, 1580, 5, 17, 0, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 3, 310, 155, 0, 1582, 1579, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 229, 1, 0, 0, 0, 1584, 1585, 5, 259, 0, 0, 1585, 1586, 5, 34, 0, 0, 1586, 1591, 3, 232, 116, 0, 1587, 1588, 5, 521, 0, 0, 1588, 1590, 3, 232, 116, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 231, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1596, 3, 52, 26, 0, 1595, 1597, 7, 25, 0, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1600, 1, 0, 0, 0, 1598, 1599, 5, 477, 0, 0, 1599, 1601, 7, 26, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 233, 1, 0, 0, 0, 1602, 1605, 5, 205, 0, 0, 1603, 1606, 5, 5, 0, 0, 1604, 1606, 3, 258, 129, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 235, 1, 0, 0, 0, 1607, 1608, 5, 269, 0, 0, 1608, 1611, 5, 34, 0, 0, 1609, 1612, 3, 52, 26, 0, 1610, 1612, 3, 270, 135, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1610, 1, 0, 0, 0, 1612, 1620, 1, 0, 0, 0, 1613, 1616, 5, 521, 0, 0, 1614, 1617, 3, 52, 26, 0, 1615, 1617, 3, 270, 135, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1619, 1, 0, 0, 0, 1618, 1613, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 237, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1623, 1640, 5, 528, 0, 0, 1624, 1640, 5, 531, 0, 0, 1625, 1640, 5, 536, 0, 0, 1626, 1627, 5, 519, 0, 0, 1627, 1628, 5, 539, 0, 0, 1628, 1629, 5, 521, 0, 0, 1629, 1630, 5, 539, 0, 0, 1630, 1640, 5, 520, 0, 0, 1631, 1632, 5, 519, 0, 0, 1632, 1633, 5, 539, 0, 0, 1633, 1634, 5, 521, 0, 0, 1634, 1640, 5, 520, 0, 0, 1635, 1636, 5, 519, 0, 0, 1636, 1637, 5, 521, 0, 0, 1637, 1638, 5, 539, 0, 0, 1638, 1640, 5, 520, 0, 0, 1639, 1623, 1, 0, 0, 0, 1639, 1624, 1, 0, 0, 0, 1639, 1625, 1, 0, 0, 0, 1639, 1626, 1, 0, 0, 0, 1639, 1631, 1, 0, 0, 0, 1639, 1635, 1, 0, 0, 0, 1640, 239, 1, 0, 0, 0, 1641, 1642, 5, 216, 0, 0, 1642, 1647, 3, 172, 86, 0, 1643, 1644, 5, 521, 0, 0, 1644, 1646, 3, 172, 86, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1649, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 241, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1651, 5, 272, 0, 0, 1651, 1653, 5, 517, 0, 0, 1652, 1654, 3, 244, 122, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1659, 5, 518, 0, 0, 1658, 1660, 3, 256, 128, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 243, 1, 0, 0, 0, 1661, 1663, 3, 312, 156, 0, 1662, 1664, 3, 238, 119, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 245, 1, 0, 0, 0, 1665, 1666, 5, 5, 0, 0, 1666, 1667, 5, 323, 0, 0, 1667, 1668, 5, 273, 0, 0, 1668, 1674, 5, 211, 0, 0, 1669, 1670, 5, 255, 0, 0, 1670, 1671, 5, 322, 0, 0, 1671, 1672, 5, 273, 0, 0, 1672, 1674, 5, 211, 0, 0, 1673, 1665, 1, 0, 0, 0, 1673, 1669, 1, 0, 0, 0, 1674, 247, 1, 0, 0, 0, 1675, 1676, 5, 439, 0, 0, 1676, 1677, 5, 211, 0, 0, 1677, 1678, 5, 344, 0, 0, 1678, 1679, 5, 479, 0, 0, 1679, 1680, 5, 468, 0, 0, 1680, 1700, 5, 322, 0, 0, 1681, 1682, 5, 439, 0, 0, 1682, 1683, 5, 211, 0, 0, 1683, 1684, 5, 344, 0, 0, 1684, 1685, 5, 389, 0, 0, 1685, 1686, 5, 238, 0, 0, 1686, 1700, 5, 322, 0, 0, 1687, 1688, 5, 439, 0, 0, 1688, 1689, 5, 211, 0, 0, 1689, 1690, 5, 344, 0, 0, 1690, 1691, 5, 389, 0, 0, 1691, 1692, 5, 468, 0, 0, 1692, 1700, 3, 312, 156, 0, 1693, 1694, 5, 439, 0, 0, 1694, 1695, 5, 211, 0, 0, 1695, 1696, 5, 344, 0, 0, 1696, 1697, 5, 389, 0, 0, 1697, 1698, 5, 458, 0, 0, 1698, 1700, 3, 312, 156, 0, 1699, 1675, 1, 0, 0, 0, 1699, 1681, 1, 0, 0, 0, 1699, 1687, 1, 0, 0, 0, 1699, 1693, 1, 0, 0, 0, 1700, 249, 1, 0, 0, 0, 1701, 1702, 5, 105, 0, 0, 1702, 1707, 3, 172, 86, 0, 1703, 1704, 5, 521, 0, 0, 1704, 1706, 3, 172, 86, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1709, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 251, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1710, 1711, 5, 293, 0, 0, 1711, 1712, 5, 27, 0, 0, 1712, 1713, 3, 288, 144, 0, 1713, 1714, 3, 254, 127, 0, 1714, 1720, 1, 0, 0, 0, 1715, 1716, 5, 323, 0, 0, 1716, 1717, 5, 27, 0, 0, 1717, 1718, 5, 539, 0, 0, 1718, 1720, 3, 254, 127, 0, 1719, 1710, 1, 0, 0, 0, 1719, 1715, 1, 0, 0, 0, 1720, 253, 1, 0, 0, 0, 1721, 1722, 5, 481, 0, 0, 1722, 1723, 5, 10, 0, 0, 1723, 1724, 5, 76, 0, 0, 1724, 1725, 5, 322, 0, 0, 1725, 255, 1, 0, 0, 0, 1726, 1727, 5, 435, 0, 0, 1727, 1728, 3, 288, 144, 0, 1728, 257, 1, 0, 0, 0, 1729, 1730, 3, 260, 130, 0, 1730, 259, 1, 0, 0, 0, 1731, 1732, 6, 130, -1, 0, 1732, 1733, 5, 242, 0, 0, 1733, 1744, 3, 260, 130, 6, 1734, 1735, 5, 133, 0, 0, 1735, 1736, 5, 517, 0, 0, 1736, 1737, 3, 158, 79, 0, 1737, 1738, 5, 518, 0, 0, 1738, 1744, 1, 0, 0, 0, 1739, 1741, 3, 266, 133, 0, 1740, 1742, 3, 262, 131, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1744, 1, 0, 0, 0, 1743, 1731, 1, 0, 0, 0, 1743, 1734, 1, 0, 0, 0, 1743, 1739, 1, 0, 0, 0, 1744, 1759, 1, 0, 0, 0, 1745, 1746, 10, 3, 0, 0, 1746, 1747, 5, 10, 0, 0, 1747, 1758, 3, 260, 130, 4, 1748, 1749, 10, 2, 0, 0, 1749, 1750, 5, 258, 0, 0, 1750, 1758, 3, 260, 130, 3, 1751, 1752, 10, 1, 0, 0, 1752, 1754, 5, 184, 0, 0, 1753, 1755, 5, 242, 0, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1758, 7, 27, 0, 0, 1757, 1745, 1, 0, 0, 0, 1757, 1748, 1, 0, 0, 0, 1757, 1751, 1, 0, 0, 0, 1758, 1761, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 261, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1762, 1764, 5, 242, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 5, 27, 0, 0, 1766, 1768, 7, 28, 0, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 3, 266, 133, 0, 1770, 1771, 5, 10, 0, 0, 1771, 1772, 3, 266, 133, 0, 1772, 1837, 1, 0, 0, 0, 1773, 1775, 5, 242, 0, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 5, 170, 0, 0, 1777, 1778, 5, 517, 0, 0, 1778, 1783, 3, 258, 129, 0, 1779, 1780, 5, 521, 0, 0, 1780, 1782, 3, 258, 129, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1785, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1786, 1787, 5, 518, 0, 0, 1787, 1837, 1, 0, 0, 0, 1788, 1790, 5, 242, 0, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 5, 170, 0, 0, 1792, 1793, 5, 517, 0, 0, 1793, 1794, 3, 158, 79, 0, 1794, 1795, 5, 518, 0, 0, 1795, 1837, 1, 0, 0, 0, 1796, 1797, 5, 133, 0, 0, 1797, 1798, 5, 517, 0, 0, 1798, 1799, 3, 158, 79, 0, 1799, 1800, 5, 518, 0, 0, 1800, 1837, 1, 0, 0, 0, 1801, 1803, 5, 242, 0, 0, 1802, 1801, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 5, 319, 0, 0, 1805, 1837, 3, 266, 133, 0, 1806, 1837, 3, 264, 132, 0, 1807, 1809, 5, 184, 0, 0, 1808, 1810, 5, 242, 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1837, 7, 27, 0, 0, 1812, 1814, 5, 184, 0, 0, 1813, 1815, 5, 242, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 5, 113, 0, 0, 1817, 1818, 5, 151, 0, 0, 1818, 1837, 3, 266, 133, 0, 1819, 1821, 5, 242, 0, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 5, 343, 0, 0, 1823, 1824, 5, 389, 0, 0, 1824, 1827, 3, 266, 133, 0, 1825, 1826, 5, 127, 0, 0, 1826, 1828, 3, 364, 182, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1837, 1, 0, 0, 0, 1829, 1830, 5, 184, 0, 0, 1830, 1834, 5, 186, 0, 0, 1831, 1835, 5, 414, 0, 0, 1832, 1835, 5, 13, 0, 0, 1833, 1835, 3, 310, 155, 0, 1834, 1831, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1837, 1, 0, 0, 0, 1836, 1763, 1, 0, 0, 0, 1836, 1774, 1, 0, 0, 0, 1836, 1789, 1, 0, 0, 0, 1836, 1796, 1, 0, 0, 0, 1836, 1802, 1, 0, 0, 0, 1836, 1806, 1, 0, 0, 0, 1836, 1807, 1, 0, 0, 0, 1836, 1812, 1, 0, 0, 0, 1836, 1820, 1, 0, 0, 0, 1836, 1829, 1, 0, 0, 0, 1837, 263, 1, 0, 0, 0, 1838, 1840, 5, 242, 0, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 5, 203, 0, 0, 1842, 1856, 7, 29, 0, 0, 1843, 1844, 5, 517, 0, 0, 1844, 1857, 5, 518, 0, 0, 1845, 1846, 5, 517, 0, 0, 1846, 1851, 3, 258, 129, 0, 1847, 1848, 5, 521, 0, 0, 1848, 1850, 3, 258, 129, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 518, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1843, 1, 0, 0, 0, 1856, 1845, 1, 0, 0, 0, 1857, 1868, 1, 0, 0, 0, 1858, 1860, 5, 242, 0, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 5, 203, 0, 0, 1862, 1865, 3, 266, 133, 0, 1863, 1864, 5, 127, 0, 0, 1864, 1866, 3, 364, 182, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1868, 1, 0, 0, 0, 1867, 1839, 1, 0, 0, 0, 1867, 1859, 1, 0, 0, 0, 1868, 265, 1, 0, 0, 0, 1869, 1870, 6, 133, -1, 0, 1870, 1874, 3, 270, 135, 0, 1871, 1872, 7, 30, 0, 0, 1872, 1874, 3, 266, 133, 7, 1873, 1869, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1874, 1896, 1, 0, 0, 0, 1875, 1876, 10, 6, 0, 0, 1876, 1877, 7, 31, 0, 0, 1877, 1895, 3, 266, 133, 7, 1878, 1879, 10, 5, 0, 0, 1879, 1880, 7, 32, 0, 0, 1880, 1895, 3, 266, 133, 6, 1881, 1882, 10, 4, 0, 0, 1882, 1883, 5, 512, 0, 0, 1883, 1895, 3, 266, 133, 5, 1884, 1885, 10, 3, 0, 0, 1885, 1886, 5, 513, 0, 0, 1886, 1895, 3, 266, 133, 4, 1887, 1888, 10, 2, 0, 0, 1888, 1889, 5, 511, 0, 0, 1889, 1895, 3, 266, 133, 3, 1890, 1891, 10, 1, 0, 0, 1891, 1892, 3, 352, 176, 0, 1892, 1893, 3, 266, 133, 2, 1893, 1895, 1, 0, 0, 0, 1894, 1875, 1, 0, 0, 0, 1894, 1878, 1, 0, 0, 0, 1894, 1881, 1, 0, 0, 0, 1894, 1884, 1, 0, 0, 0, 1894, 1887, 1, 0, 0, 0, 1894, 1890, 1, 0, 0, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 267, 1, 0, 0, 0, 1898, 1896, 1, 0, 0, 0, 1899, 1919, 3, 378, 189, 0, 1900, 1919, 3, 276, 138, 0, 1901, 1902, 3, 278, 139, 0, 1902, 1914, 5, 517, 0, 0, 1903, 1905, 3, 370, 185, 0, 1904, 1903, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1911, 3, 280, 140, 0, 1907, 1908, 5, 521, 0, 0, 1908, 1910, 3, 280, 140, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1915, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1904, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 5, 518, 0, 0, 1917, 1919, 1, 0, 0, 0, 1918, 1899, 1, 0, 0, 0, 1918, 1900, 1, 0, 0, 0, 1918, 1901, 1, 0, 0, 0, 1919, 269, 1, 0, 0, 0, 1920, 1921, 6, 135, -1, 0, 1921, 1923, 5, 40, 0, 0, 1922, 1924, 3, 316, 158, 0, 1923, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1929, 1, 0, 0, 0, 1927, 1928, 5, 120, 0, 0, 1928, 1930, 3, 258, 129, 0, 1929, 1927, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 5, 122, 0, 0, 1932, 1996, 1, 0, 0, 0, 1933, 1934, 5, 40, 0, 0, 1934, 1936, 3, 258, 129, 0, 1935, 1937, 3, 316, 158, 0, 1936, 1935, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1941, 5, 120, 0, 0, 1941, 1943, 3, 258, 129, 0, 1942, 1940, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1945, 5, 122, 0, 0, 1945, 1996, 1, 0, 0, 0, 1946, 1947, 5, 41, 0, 0, 1947, 1948, 5, 517, 0, 0, 1948, 1949, 3, 258, 129, 0, 1949, 1950, 5, 17, 0, 0, 1950, 1951, 3, 58, 29, 0, 1951, 1952, 5, 518, 0, 0, 1952, 1996, 1, 0, 0, 0, 1953, 1954, 5, 458, 0, 0, 1954, 1955, 5, 517, 0, 0, 1955, 1958, 3, 258, 129, 0, 1956, 1957, 5, 462, 0, 0, 1957, 1959, 5, 477, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 5, 518, 0, 0, 1961, 1996, 1, 0, 0, 0, 1962, 1963, 5, 468, 0, 0, 1963, 1964, 5, 517, 0, 0, 1964, 1967, 3, 258, 129, 0, 1965, 1966, 5, 462, 0, 0, 1966, 1968, 5, 477, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 5, 518, 0, 0, 1970, 1996, 1, 0, 0, 0, 1971, 1972, 5, 282, 0, 0, 1972, 1973, 5, 517, 0, 0, 1973, 1974, 3, 266, 133, 0, 1974, 1975, 5, 170, 0, 0, 1975, 1976, 3, 266, 133, 0, 1976, 1977, 5, 518, 0, 0, 1977, 1996, 1, 0, 0, 0, 1978, 1996, 3, 360, 180, 0, 1979, 1996, 5, 528, 0, 0, 1980, 1981, 3, 334, 167, 0, 1981, 1982, 5, 514, 0, 0, 1982, 1983, 5, 528, 0, 0, 1983, 1996, 1, 0, 0, 0, 1984, 1985, 5, 517, 0, 0, 1985, 1986, 3, 158, 79, 0, 1986, 1987, 5, 518, 0, 0, 1987, 1996, 1, 0, 0, 0, 1988, 1996, 3, 268, 134, 0, 1989, 1996, 3, 54, 27, 0, 1990, 1996, 3, 282, 141, 0, 1991, 1992, 5, 517, 0, 0, 1992, 1993, 3, 258, 129, 0, 1993, 1994, 5, 518, 0, 0, 1994, 1996, 1, 0, 0, 0, 1995, 1920, 1, 0, 0, 0, 1995, 1933, 1, 0, 0, 0, 1995, 1946, 1, 0, 0, 0, 1995, 1953, 1, 0, 0, 0, 1995, 1962, 1, 0, 0, 0, 1995, 1971, 1, 0, 0, 0, 1995, 1978, 1, 0, 0, 0, 1995, 1979, 1, 0, 0, 0, 1995, 1980, 1, 0, 0, 0, 1995, 1984, 1, 0, 0, 0, 1995, 1988, 1, 0, 0, 0, 1995, 1989, 1, 0, 0, 0, 1995, 1990, 1, 0, 0, 0, 1995, 1991, 1, 0, 0, 0, 1996, 2004, 1, 0, 0, 0, 1997, 1998, 10, 4, 0, 0, 1998, 1999, 5, 515, 0, 0, 1999, 2000, 3, 266, 133, 0, 2000, 2001, 5, 516, 0, 0, 2001, 2003, 1, 0, 0, 0, 2002, 1997, 1, 0, 0, 0, 2003, 2006, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 271, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2007, 2008, 3, 334, 167, 0, 2008, 273, 1, 0, 0, 0, 2009, 2014, 3, 382, 191, 0, 2010, 2014, 3, 378, 189, 0, 2011, 2014, 3, 380, 190, 0, 2012, 2014, 3, 334, 167, 0, 2013, 2009, 1, 0, 0, 0, 2013, 2010, 1, 0, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 275, 1, 0, 0, 0, 2015, 2016, 3, 380, 190, 0, 2016, 2017, 5, 538, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2020, 3, 288, 144, 0, 2019, 2015, 1, 0, 0, 0, 2019, 2018, 1, 0, 0, 0, 2020, 277, 1, 0, 0, 0, 2021, 2024, 3, 382, 191, 0, 2022, 2024, 3, 334, 167, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2022, 1, 0, 0, 0, 2024, 279, 1, 0, 0, 0, 2025, 2030, 3, 376, 188, 0, 2026, 2030, 3, 374, 187, 0, 2027, 2030, 3, 372, 186, 0, 2028, 2030, 3, 258, 129, 0, 2029, 2025, 1, 0, 0, 0, 2029, 2026, 1, 0, 0, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, 1, 0, 0, 0, 2030, 281, 1, 0, 0, 0, 2031, 2032, 3, 334, 167, 0, 2032, 283, 1, 0, 0, 0, 2033, 2034, 3, 310, 155, 0, 2034, 285, 1, 0, 0, 0, 2035, 2038, 3, 310, 155, 0, 2036, 2038, 3, 282, 141, 0, 2037, 2035, 1, 0, 0, 0, 2037, 2036, 1, 0, 0, 0, 2038, 287, 1, 0, 0, 0, 2039, 2042, 5, 182, 0, 0, 2040, 2043, 3, 290, 145, 0, 2041, 2043, 3, 294, 147, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 289, 1, 0, 0, 0, 2044, 2046, 3, 292, 146, 0, 2045, 2047, 3, 296, 148, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 291, 1, 0, 0, 0, 2048, 2049, 3, 298, 149, 0, 2049, 2050, 3, 374, 187, 0, 2050, 2052, 1, 0, 0, 0, 2051, 2048, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 293, 1, 0, 0, 0, 2055, 2058, 3, 296, 148, 0, 2056, 2059, 3, 292, 146, 0, 2057, 2059, 3, 296, 148, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 295, 1, 0, 0, 0, 2060, 2061, 3, 298, 149, 0, 2061, 2062, 3, 374, 187, 0, 2062, 2063, 5, 389, 0, 0, 2063, 2064, 3, 374, 187, 0, 2064, 297, 1, 0, 0, 0, 2065, 2067, 7, 33, 0, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2071, 7, 34, 0, 0, 2069, 2071, 5, 538, 0, 0, 2070, 2066, 1, 0, 0, 0, 2070, 2069, 1, 0, 0, 0, 2071, 299, 1, 0, 0, 0, 2072, 2074, 5, 17, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2077, 3, 310, 155, 0, 2076, 2078, 3, 306, 153, 0, 2077, 2076, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 301, 1, 0, 0, 0, 2079, 2080, 3, 310, 155, 0, 2080, 2081, 3, 304, 152, 0, 2081, 303, 1, 0, 0, 0, 2082, 2083, 5, 222, 0, 0, 2083, 2085, 3, 310, 155, 0, 2084, 2082, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2084, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2090, 1, 0, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2084, 1, 0, 0, 0, 2089, 2088, 1, 0, 0, 0, 2090, 305, 1, 0, 0, 0, 2091, 2092, 5, 517, 0, 0, 2092, 2093, 3, 308, 154, 0, 2093, 2094, 5, 518, 0, 0, 2094, 307, 1, 0, 0, 0, 2095, 2100, 3, 310, 155, 0, 2096, 2097, 5, 521, 0, 0, 2097, 2099, 3, 310, 155, 0, 2098, 2096, 1, 0, 0, 0, 2099, 2102, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 309, 1, 0, 0, 0, 2102, 2100, 1, 0, 0, 0, 2103, 2107, 3, 312, 156, 0, 2104, 2107, 3, 314, 157, 0, 2105, 2107, 3, 384, 192, 0, 2106, 2103, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2105, 1, 0, 0, 0, 2107, 311, 1, 0, 0, 0, 2108, 2109, 7, 35, 0, 0, 2109, 313, 1, 0, 0, 0, 2110, 2111, 5, 538, 0, 0, 2111, 315, 1, 0, 0, 0, 2112, 2113, 5, 429, 0, 0, 2113, 2114, 3, 258, 129, 0, 2114, 2115, 5, 377, 0, 0, 2115, 2116, 3, 258, 129, 0, 2116, 317, 1, 0, 0, 0, 2117, 2118, 3, 310, 155, 0, 2118, 319, 1, 0, 0, 0, 2119, 2120, 3, 310, 155, 0, 2120, 321, 1, 0, 0, 0, 2121, 2124, 3, 310, 155, 0, 2122, 2123, 5, 514, 0, 0, 2123, 2125, 3, 310, 155, 0, 2124, 2122, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 323, 1, 0, 0, 0, 2126, 2129, 3, 310, 155, 0, 2127, 2128, 5, 514, 0, 0, 2128, 2130, 3, 310, 155, 0, 2129, 2127, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 325, 1, 0, 0, 0, 2131, 2134, 3, 310, 155, 0, 2132, 2133, 5, 514, 0, 0, 2133, 2135, 3, 310, 155, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2144, 1, 0, 0, 0, 2136, 2137, 3, 310, 155, 0, 2137, 2138, 5, 514, 0, 0, 2138, 2141, 3, 310, 155, 0, 2139, 2140, 5, 514, 0, 0, 2140, 2142, 3, 310, 155, 0, 2141, 2139, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2131, 1, 0, 0, 0, 2143, 2136, 1, 0, 0, 0, 2144, 327, 1, 0, 0, 0, 2145, 2148, 3, 310, 155, 0, 2146, 2147, 5, 514, 0, 0, 2147, 2149, 3, 310, 155, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2158, 1, 0, 0, 0, 2150, 2151, 3, 310, 155, 0, 2151, 2152, 5, 514, 0, 0, 2152, 2155, 3, 310, 155, 0, 2153, 2154, 5, 514, 0, 0, 2154, 2156, 3, 310, 155, 0, 2155, 2153, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2158, 1, 0, 0, 0, 2157, 2145, 1, 0, 0, 0, 2157, 2150, 1, 0, 0, 0, 2158, 329, 1, 0, 0, 0, 2159, 2162, 3, 310, 155, 0, 2160, 2161, 5, 514, 0, 0, 2161, 2163, 3, 310, 155, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 2172, 1, 0, 0, 0, 2164, 2165, 3, 310, 155, 0, 2165, 2166, 5, 514, 0, 0, 2166, 2169, 3, 310, 155, 0, 2167, 2168, 5, 514, 0, 0, 2168, 2170, 3, 310, 155, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 1, 0, 0, 0, 2171, 2159, 1, 0, 0, 0, 2171, 2164, 1, 0, 0, 0, 2172, 331, 1, 0, 0, 0, 2173, 2176, 3, 310, 155, 0, 2174, 2175, 5, 514, 0, 0, 2175, 2177, 3, 310, 155, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2186, 1, 0, 0, 0, 2178, 2179, 3, 310, 155, 0, 2179, 2180, 5, 514, 0, 0, 2180, 2183, 3, 310, 155, 0, 2181, 2182, 5, 514, 0, 0, 2182, 2184, 3, 310, 155, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2186, 1, 0, 0, 0, 2185, 2173, 1, 0, 0, 0, 2185, 2178, 1, 0, 0, 0, 2186, 333, 1, 0, 0, 0, 2187, 2192, 3, 310, 155, 0, 2188, 2189, 5, 514, 0, 0, 2189, 2191, 3, 310, 155, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2194, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2192, 2190, 1, 0, 0, 0, 2193, 335, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2195, 2196, 5, 434, 0, 0, 2196, 2197, 3, 342, 171, 0, 2197, 337, 1, 0, 0, 0, 2198, 2199, 5, 167, 0, 0, 2199, 2200, 5, 242, 0, 0, 2200, 2201, 5, 133, 0, 0, 2201, 339, 1, 0, 0, 0, 2202, 2203, 5, 167, 0, 0, 2203, 2204, 5, 133, 0, 0, 2204, 341, 1, 0, 0, 0, 2205, 2206, 5, 517, 0, 0, 2206, 2211, 3, 344, 172, 0, 2207, 2208, 5, 521, 0, 0, 2208, 2210, 3, 344, 172, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2214, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2215, 5, 518, 0, 0, 2215, 343, 1, 0, 0, 0, 2216, 2221, 3, 346, 173, 0, 2217, 2219, 5, 506, 0, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2222, 3, 348, 174, 0, 2221, 2218, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 345, 1, 0, 0, 0, 2223, 2227, 3, 310, 155, 0, 2224, 2227, 3, 282, 141, 0, 2225, 2227, 5, 538, 0, 0, 2226, 2223, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2225, 1, 0, 0, 0, 2227, 347, 1, 0, 0, 0, 2228, 2233, 5, 539, 0, 0, 2229, 2233, 5, 540, 0, 0, 2230, 2233, 3, 368, 184, 0, 2231, 2233, 5, 538, 0, 0, 2232, 2228, 1, 0, 0, 0, 2232, 2229, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2231, 1, 0, 0, 0, 2233, 349, 1, 0, 0, 0, 2234, 2241, 5, 10, 0, 0, 2235, 2236, 5, 512, 0, 0, 2236, 2241, 5, 512, 0, 0, 2237, 2241, 5, 258, 0, 0, 2238, 2239, 5, 511, 0, 0, 2239, 2241, 5, 511, 0, 0, 2240, 2234, 1, 0, 0, 0, 2240, 2235, 1, 0, 0, 0, 2240, 2237, 1, 0, 0, 0, 2240, 2238, 1, 0, 0, 0, 2241, 351, 1, 0, 0, 0, 2242, 2257, 5, 506, 0, 0, 2243, 2257, 5, 507, 0, 0, 2244, 2257, 5, 508, 0, 0, 2245, 2246, 5, 508, 0, 0, 2246, 2257, 5, 506, 0, 0, 2247, 2248, 5, 507, 0, 0, 2248, 2257, 5, 506, 0, 0, 2249, 2250, 5, 508, 0, 0, 2250, 2257, 5, 507, 0, 0, 2251, 2252, 5, 509, 0, 0, 2252, 2257, 5, 506, 0, 0, 2253, 2254, 5, 508, 0, 0, 2254, 2255, 5, 506, 0, 0, 2255, 2257, 5, 507, 0, 0, 2256, 2242, 1, 0, 0, 0, 2256, 2243, 1, 0, 0, 0, 2256, 2244, 1, 0, 0, 0, 2256, 2245, 1, 0, 0, 0, 2256, 2247, 1, 0, 0, 0, 2256, 2249, 1, 0, 0, 0, 2256, 2251, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2257, 353, 1, 0, 0, 0, 2258, 2259, 5, 508, 0, 0, 2259, 2266, 5, 508, 0, 0, 2260, 2261, 5, 507, 0, 0, 2261, 2266, 5, 507, 0, 0, 2262, 2266, 5, 512, 0, 0, 2263, 2266, 5, 513, 0, 0, 2264, 2266, 5, 511, 0, 0, 2265, 2258, 1, 0, 0, 0, 2265, 2260, 1, 0, 0, 0, 2265, 2262, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2265, 2264, 1, 0, 0, 0, 2266, 355, 1, 0, 0, 0, 2267, 2268, 7, 36, 0, 0, 2268, 357, 1, 0, 0, 0, 2269, 2270, 7, 37, 0, 0, 2270, 359, 1, 0, 0, 0, 2271, 2286, 3, 288, 144, 0, 2272, 2286, 3, 362, 181, 0, 2273, 2286, 3, 364, 182, 0, 2274, 2276, 5, 530, 0, 0, 2275, 2274, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2286, 3, 366, 183, 0, 2278, 2286, 3, 368, 184, 0, 2279, 2286, 5, 540, 0, 0, 2280, 2286, 5, 541, 0, 0, 2281, 2283, 5, 242, 0, 0, 2282, 2281, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 5, 245, 0, 0, 2285, 2271, 1, 0, 0, 0, 2285, 2272, 1, 0, 0, 0, 2285, 2273, 1, 0, 0, 0, 2285, 2275, 1, 0, 0, 0, 2285, 2278, 1, 0, 0, 0, 2285, 2279, 1, 0, 0, 0, 2285, 2280, 1, 0, 0, 0, 2285, 2282, 1, 0, 0, 0, 2286, 361, 1, 0, 0, 0, 2287, 2288, 3, 372, 186, 0, 2288, 2289, 3, 364, 182, 0, 2289, 363, 1, 0, 0, 0, 2290, 2291, 5, 538, 0, 0, 2291, 365, 1, 0, 0, 0, 2292, 2293, 5, 539, 0, 0, 2293, 367, 1, 0, 0, 0, 2294, 2295, 7, 38, 0, 0, 2295, 369, 1, 0, 0, 0, 2296, 2297, 7, 39, 0, 0, 2297, 371, 1, 0, 0, 0, 2298, 2299, 7, 40, 0, 0, 2299, 373, 1, 0, 0, 0, 2300, 2301, 7, 41, 0, 0, 2301, 375, 1, 0, 0, 0, 2302, 2303, 7, 42, 0, 0, 2303, 377, 1, 0, 0, 0, 2304, 2305, 7, 43, 0, 0, 2305, 379, 1, 0, 0, 0, 2306, 2307, 7, 44, 0, 0, 2307, 381, 1, 0, 0, 0, 2308, 2309, 7, 45, 0, 0, 2309, 383, 1, 0, 0, 0, 2310, 2311, 7, 46, 0, 0, 2311, 385, 1, 0, 0, 0, 273, 389, 396, 399, 413, 431, 435, 444, 449, 456, 467, 476, 488, 491, 498, 501, 509, 513, 518, 521, 528, 536, 540, 552, 560, 564, 596, 599, 604, 608, 612, 616, 625, 630, 634, 638, 643, 646, 650, 655, 661, 666, 671, 675, 679, 683, 693, 701, 705, 709, 713, 717, 721, 725, 729, 733, 735, 745, 753, 777, 791, 796, 800, 806, 809, 812, 819, 822, 831, 843, 867, 879, 884, 888, 896, 900, 906, 916, 921, 927, 931, 935, 939, 948, 952, 959, 962, 972, 980, 988, 992, 1007, 1026, 1037, 1041, 1048, 1053, 1059, 1063, 1070, 1074, 1078, 1082, 1090, 1094, 1099, 1105, 1111, 1114, 1118, 1129, 1138, 1152, 1164, 1179, 1182, 1186, 1189, 1191, 1196, 1200, 1203, 1207, 1216, 1225, 1235, 1240, 1251, 1254, 1257, 1260, 1263, 1269, 1273, 1281, 1284, 1289, 1292, 1296, 1299, 1301, 1315, 1326, 1331, 1339, 1342, 1345, 1350, 1352, 1354, 1359, 1362, 1366, 1370, 1379, 1390, 1417, 1439, 1452, 1464, 1477, 1489, 1501, 1507, 1534, 1542, 1546, 1549, 1552, 1559, 1562, 1565, 1568, 1571, 1574, 1579, 1582, 1591, 1596, 1600, 1605, 1611, 1616, 1620, 1639, 1647, 1655, 1659, 1663, 1673, 1699, 1707, 1719, 1741, 1743, 1754, 1757, 1759, 1763, 1767, 1774, 1783, 1789, 1802, 1809, 1814, 1820, 1827, 1834, 1836, 1839, 1851, 1856, 1859, 1865, 1867, 1873, 1894, 1896, 1904, 1911, 1914, 1918, 1925, 1929, 1938, 1942, 1958, 1967, 1995, 2004, 2013, 2019, 2023, 2029, 2037, 2042, 2046, 2053, 2058, 2066, 2070, 2073, 2077, 2086, 2089, 2100, 2106, 2124, 2129, 2134, 2141, 2143, 2148, 2155, 2157, 2162, 2169, 2171, 2176, 2183, 2185, 2192, 2211, 2218, 2221, 2226, 2232, 2240, 2256, 2265, 2275, 2282, 2285] \ No newline at end of file +[4, 1, 542, 2319, 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, 1, 0, 5, 0, 390, 8, 0, 10, 0, 12, 0, 393, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 399, 8, 1, 1, 1, 3, 1, 402, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 416, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 434, 8, 4, 1, 5, 1, 5, 3, 5, 438, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 447, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 452, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 457, 8, 8, 10, 8, 12, 8, 460, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 470, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 477, 8, 11, 10, 11, 12, 11, 480, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 491, 8, 12, 1, 12, 3, 12, 494, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 501, 8, 12, 1, 12, 3, 12, 504, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 512, 8, 12, 1, 12, 1, 12, 3, 12, 516, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 521, 8, 12, 1, 12, 3, 12, 524, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 531, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 539, 8, 15, 1, 16, 1, 16, 3, 16, 543, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 555, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 563, 8, 18, 1, 18, 1, 18, 3, 18, 567, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 599, 8, 18, 1, 19, 3, 19, 602, 8, 19, 1, 19, 4, 19, 605, 8, 19, 11, 19, 12, 19, 606, 1, 20, 1, 20, 3, 20, 611, 8, 20, 1, 21, 1, 21, 3, 21, 615, 8, 21, 1, 21, 1, 21, 3, 21, 619, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 626, 8, 21, 10, 21, 12, 21, 629, 9, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 3, 21, 641, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 646, 8, 21, 1, 21, 3, 21, 649, 8, 21, 1, 21, 1, 21, 3, 21, 653, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 658, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 664, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 669, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 674, 8, 24, 1, 24, 1, 24, 3, 24, 678, 8, 24, 1, 25, 1, 25, 3, 25, 682, 8, 25, 1, 26, 1, 26, 3, 26, 686, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 694, 8, 28, 10, 28, 12, 28, 697, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 704, 8, 29, 1, 29, 1, 29, 3, 29, 708, 8, 29, 1, 29, 1, 29, 3, 29, 712, 8, 29, 1, 29, 1, 29, 3, 29, 716, 8, 29, 1, 29, 1, 29, 3, 29, 720, 8, 29, 1, 29, 1, 29, 3, 29, 724, 8, 29, 1, 29, 1, 29, 3, 29, 728, 8, 29, 1, 29, 1, 29, 3, 29, 732, 8, 29, 1, 29, 1, 29, 3, 29, 736, 8, 29, 3, 29, 738, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 748, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 756, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 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, 35, 1, 35, 5, 35, 778, 8, 35, 10, 35, 12, 35, 781, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 792, 8, 35, 10, 35, 12, 35, 795, 9, 35, 1, 35, 1, 35, 3, 35, 799, 8, 35, 1, 36, 1, 36, 3, 36, 803, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 809, 8, 36, 1, 36, 3, 36, 812, 8, 36, 1, 36, 3, 36, 815, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 822, 8, 37, 1, 37, 3, 37, 825, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 834, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 846, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 868, 8, 46, 10, 46, 12, 46, 871, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 880, 8, 47, 10, 47, 12, 47, 883, 9, 47, 1, 47, 1, 47, 3, 47, 887, 8, 47, 1, 48, 1, 48, 3, 48, 891, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 897, 8, 49, 10, 49, 12, 49, 900, 9, 49, 1, 49, 3, 49, 903, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 909, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 919, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 924, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 930, 8, 53, 1, 53, 1, 53, 3, 53, 934, 8, 53, 1, 53, 1, 53, 3, 53, 938, 8, 53, 1, 53, 1, 53, 3, 53, 942, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 951, 8, 54, 1, 54, 1, 54, 3, 54, 955, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 962, 8, 54, 1, 54, 3, 54, 965, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 973, 8, 55, 10, 55, 12, 55, 976, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 983, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 991, 8, 57, 1, 58, 1, 58, 3, 58, 995, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1010, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1029, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1040, 8, 66, 1, 66, 1, 66, 3, 66, 1044, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1051, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1056, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1062, 8, 68, 1, 68, 1, 68, 3, 68, 1066, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1073, 8, 69, 1, 69, 1, 69, 3, 69, 1077, 8, 69, 1, 70, 1, 70, 3, 70, 1081, 8, 70, 1, 70, 1, 70, 3, 70, 1085, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1093, 8, 71, 1, 71, 1, 71, 3, 71, 1097, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1102, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1108, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1114, 8, 73, 1, 73, 3, 73, 1117, 8, 73, 1, 73, 1, 73, 3, 73, 1121, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1130, 8, 75, 10, 75, 12, 75, 1133, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1139, 8, 76, 10, 76, 12, 76, 1142, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1148, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1157, 8, 78, 11, 78, 12, 78, 1158, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1169, 8, 79, 11, 79, 12, 79, 1170, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1186, 8, 80, 1, 80, 3, 80, 1189, 8, 80, 1, 80, 1, 80, 3, 80, 1193, 8, 80, 1, 80, 3, 80, 1196, 8, 80, 3, 80, 1198, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1203, 8, 80, 1, 80, 1, 80, 3, 80, 1207, 8, 80, 1, 80, 3, 80, 1210, 8, 80, 5, 80, 1212, 8, 80, 10, 80, 12, 80, 1215, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1221, 8, 81, 10, 81, 12, 81, 1224, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1230, 8, 82, 10, 82, 12, 82, 1233, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1240, 8, 83, 10, 83, 12, 83, 1243, 9, 83, 1, 83, 1, 83, 3, 83, 1247, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 1258, 8, 85, 1, 85, 3, 85, 1261, 8, 85, 1, 85, 3, 85, 1264, 8, 85, 1, 85, 3, 85, 1267, 8, 85, 1, 85, 3, 85, 1270, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1276, 8, 85, 1, 86, 1, 86, 3, 86, 1280, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 1286, 8, 86, 10, 86, 12, 86, 1289, 9, 86, 3, 86, 1291, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1296, 8, 87, 1, 87, 3, 87, 1299, 8, 87, 1, 87, 1, 87, 3, 87, 1303, 8, 87, 1, 87, 3, 87, 1306, 8, 87, 3, 87, 1308, 8, 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, 3, 88, 1322, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1331, 8, 90, 10, 90, 12, 90, 1334, 9, 90, 1, 90, 1, 90, 3, 90, 1338, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1346, 8, 90, 1, 90, 3, 90, 1349, 8, 90, 1, 90, 3, 90, 1352, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1357, 8, 90, 5, 90, 1359, 8, 90, 10, 90, 12, 90, 1362, 9, 90, 1, 91, 1, 91, 3, 91, 1366, 8, 91, 1, 92, 3, 92, 1369, 8, 92, 1, 92, 1, 92, 3, 92, 1373, 8, 92, 1, 92, 1, 92, 3, 92, 1377, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1386, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1397, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 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, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1422, 8, 97, 10, 97, 12, 97, 1425, 9, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1446, 8, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 1459, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1469, 8, 104, 10, 104, 12, 104, 1472, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1482, 8, 105, 10, 105, 12, 105, 1485, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1494, 8, 105, 10, 105, 12, 105, 1497, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1506, 8, 105, 10, 105, 12, 105, 1509, 9, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1514, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1539, 8, 112, 10, 112, 12, 112, 1542, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1549, 8, 114, 1, 114, 1, 114, 3, 114, 1553, 8, 114, 1, 114, 3, 114, 1556, 8, 114, 1, 114, 3, 114, 1559, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1566, 8, 115, 1, 115, 3, 115, 1569, 8, 115, 1, 115, 3, 115, 1572, 8, 115, 1, 115, 3, 115, 1575, 8, 115, 1, 115, 3, 115, 1578, 8, 115, 1, 115, 3, 115, 1581, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1586, 8, 115, 1, 115, 3, 115, 1589, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1596, 8, 116, 10, 116, 12, 116, 1599, 9, 116, 1, 117, 1, 117, 3, 117, 1603, 8, 117, 1, 117, 1, 117, 3, 117, 1607, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1612, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1618, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1623, 8, 119, 5, 119, 1625, 8, 119, 10, 119, 12, 119, 1628, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1646, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1652, 8, 121, 10, 121, 12, 121, 1655, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1660, 8, 122, 11, 122, 12, 122, 1661, 1, 122, 1, 122, 3, 122, 1666, 8, 122, 1, 123, 1, 123, 3, 123, 1670, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1680, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1706, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1712, 8, 126, 10, 126, 12, 126, 1715, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1726, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1748, 8, 131, 3, 131, 1750, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1761, 8, 131, 1, 131, 5, 131, 1764, 8, 131, 10, 131, 12, 131, 1767, 9, 131, 1, 132, 3, 132, 1770, 8, 132, 1, 132, 1, 132, 3, 132, 1774, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1781, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1788, 8, 132, 10, 132, 12, 132, 1791, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1796, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1809, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1816, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1821, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1827, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1834, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1841, 8, 132, 3, 132, 1843, 8, 132, 1, 133, 3, 133, 1846, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1856, 8, 133, 10, 133, 12, 133, 1859, 9, 133, 1, 133, 1, 133, 3, 133, 1863, 8, 133, 1, 133, 3, 133, 1866, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1872, 8, 133, 3, 133, 1874, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1880, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1901, 8, 134, 10, 134, 12, 134, 1904, 9, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1911, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1916, 8, 135, 10, 135, 12, 135, 1919, 9, 135, 3, 135, 1921, 8, 135, 1, 135, 1, 135, 3, 135, 1925, 8, 135, 1, 136, 1, 136, 1, 136, 4, 136, 1930, 8, 136, 11, 136, 12, 136, 1931, 1, 136, 1, 136, 3, 136, 1936, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 4, 136, 1943, 8, 136, 11, 136, 12, 136, 1944, 1, 136, 1, 136, 3, 136, 1949, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1965, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1974, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2002, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 2009, 8, 136, 10, 136, 12, 136, 2012, 9, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2020, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2026, 8, 139, 1, 140, 1, 140, 3, 140, 2030, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2036, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2044, 8, 144, 1, 145, 1, 145, 1, 145, 3, 145, 2049, 8, 145, 1, 146, 1, 146, 3, 146, 2053, 8, 146, 1, 147, 1, 147, 1, 147, 4, 147, 2058, 8, 147, 11, 147, 12, 147, 2059, 1, 148, 1, 148, 1, 148, 3, 148, 2065, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 3, 150, 2073, 8, 150, 1, 150, 1, 150, 3, 150, 2077, 8, 150, 1, 151, 3, 151, 2080, 8, 151, 1, 151, 1, 151, 3, 151, 2084, 8, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 4, 153, 2091, 8, 153, 11, 153, 12, 153, 2092, 1, 153, 3, 153, 2096, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 5, 155, 2105, 8, 155, 10, 155, 12, 155, 2108, 9, 155, 1, 156, 1, 156, 1, 156, 3, 156, 2113, 8, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2131, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2136, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2141, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2148, 8, 164, 3, 164, 2150, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2155, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2162, 8, 165, 3, 165, 2164, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2169, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2176, 8, 166, 3, 166, 2178, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2183, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2190, 8, 167, 3, 167, 2192, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 2197, 8, 168, 10, 168, 12, 168, 2200, 9, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2216, 8, 172, 10, 172, 12, 172, 2219, 9, 172, 1, 172, 1, 172, 1, 173, 1, 173, 3, 173, 2225, 8, 173, 1, 173, 3, 173, 2228, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2233, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2239, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2247, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2263, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2272, 8, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2282, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2289, 8, 181, 1, 181, 3, 181, 2292, 8, 181, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 2198, 5, 160, 180, 262, 268, 272, 194, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2525, 0, 391, 1, 0, 0, 0, 2, 401, 1, 0, 0, 0, 4, 415, 1, 0, 0, 0, 6, 417, 1, 0, 0, 0, 8, 433, 1, 0, 0, 0, 10, 437, 1, 0, 0, 0, 12, 439, 1, 0, 0, 0, 14, 442, 1, 0, 0, 0, 16, 453, 1, 0, 0, 0, 18, 461, 1, 0, 0, 0, 20, 469, 1, 0, 0, 0, 22, 471, 1, 0, 0, 0, 24, 523, 1, 0, 0, 0, 26, 525, 1, 0, 0, 0, 28, 532, 1, 0, 0, 0, 30, 536, 1, 0, 0, 0, 32, 540, 1, 0, 0, 0, 34, 544, 1, 0, 0, 0, 36, 598, 1, 0, 0, 0, 38, 604, 1, 0, 0, 0, 40, 610, 1, 0, 0, 0, 42, 612, 1, 0, 0, 0, 44, 654, 1, 0, 0, 0, 46, 668, 1, 0, 0, 0, 48, 670, 1, 0, 0, 0, 50, 681, 1, 0, 0, 0, 52, 685, 1, 0, 0, 0, 54, 687, 1, 0, 0, 0, 56, 689, 1, 0, 0, 0, 58, 737, 1, 0, 0, 0, 60, 739, 1, 0, 0, 0, 62, 743, 1, 0, 0, 0, 64, 751, 1, 0, 0, 0, 66, 759, 1, 0, 0, 0, 68, 763, 1, 0, 0, 0, 70, 798, 1, 0, 0, 0, 72, 814, 1, 0, 0, 0, 74, 816, 1, 0, 0, 0, 76, 826, 1, 0, 0, 0, 78, 828, 1, 0, 0, 0, 80, 835, 1, 0, 0, 0, 82, 837, 1, 0, 0, 0, 84, 845, 1, 0, 0, 0, 86, 853, 1, 0, 0, 0, 88, 855, 1, 0, 0, 0, 90, 859, 1, 0, 0, 0, 92, 863, 1, 0, 0, 0, 94, 886, 1, 0, 0, 0, 96, 890, 1, 0, 0, 0, 98, 892, 1, 0, 0, 0, 100, 908, 1, 0, 0, 0, 102, 910, 1, 0, 0, 0, 104, 915, 1, 0, 0, 0, 106, 927, 1, 0, 0, 0, 108, 946, 1, 0, 0, 0, 110, 966, 1, 0, 0, 0, 112, 977, 1, 0, 0, 0, 114, 979, 1, 0, 0, 0, 116, 992, 1, 0, 0, 0, 118, 999, 1, 0, 0, 0, 120, 1002, 1, 0, 0, 0, 122, 1011, 1, 0, 0, 0, 124, 1015, 1, 0, 0, 0, 126, 1019, 1, 0, 0, 0, 128, 1022, 1, 0, 0, 0, 130, 1030, 1, 0, 0, 0, 132, 1035, 1, 0, 0, 0, 134, 1052, 1, 0, 0, 0, 136, 1059, 1, 0, 0, 0, 138, 1069, 1, 0, 0, 0, 140, 1078, 1, 0, 0, 0, 142, 1088, 1, 0, 0, 0, 144, 1107, 1, 0, 0, 0, 146, 1109, 1, 0, 0, 0, 148, 1122, 1, 0, 0, 0, 150, 1125, 1, 0, 0, 0, 152, 1134, 1, 0, 0, 0, 154, 1147, 1, 0, 0, 0, 156, 1149, 1, 0, 0, 0, 158, 1162, 1, 0, 0, 0, 160, 1197, 1, 0, 0, 0, 162, 1216, 1, 0, 0, 0, 164, 1225, 1, 0, 0, 0, 166, 1234, 1, 0, 0, 0, 168, 1253, 1, 0, 0, 0, 170, 1275, 1, 0, 0, 0, 172, 1277, 1, 0, 0, 0, 174, 1307, 1, 0, 0, 0, 176, 1321, 1, 0, 0, 0, 178, 1323, 1, 0, 0, 0, 180, 1337, 1, 0, 0, 0, 182, 1363, 1, 0, 0, 0, 184, 1396, 1, 0, 0, 0, 186, 1398, 1, 0, 0, 0, 188, 1404, 1, 0, 0, 0, 190, 1406, 1, 0, 0, 0, 192, 1411, 1, 0, 0, 0, 194, 1416, 1, 0, 0, 0, 196, 1428, 1, 0, 0, 0, 198, 1445, 1, 0, 0, 0, 200, 1447, 1, 0, 0, 0, 202, 1449, 1, 0, 0, 0, 204, 1458, 1, 0, 0, 0, 206, 1460, 1, 0, 0, 0, 208, 1463, 1, 0, 0, 0, 210, 1513, 1, 0, 0, 0, 212, 1515, 1, 0, 0, 0, 214, 1518, 1, 0, 0, 0, 216, 1520, 1, 0, 0, 0, 218, 1527, 1, 0, 0, 0, 220, 1529, 1, 0, 0, 0, 222, 1531, 1, 0, 0, 0, 224, 1534, 1, 0, 0, 0, 226, 1543, 1, 0, 0, 0, 228, 1548, 1, 0, 0, 0, 230, 1562, 1, 0, 0, 0, 232, 1590, 1, 0, 0, 0, 234, 1600, 1, 0, 0, 0, 236, 1608, 1, 0, 0, 0, 238, 1613, 1, 0, 0, 0, 240, 1645, 1, 0, 0, 0, 242, 1647, 1, 0, 0, 0, 244, 1656, 1, 0, 0, 0, 246, 1667, 1, 0, 0, 0, 248, 1679, 1, 0, 0, 0, 250, 1705, 1, 0, 0, 0, 252, 1707, 1, 0, 0, 0, 254, 1725, 1, 0, 0, 0, 256, 1727, 1, 0, 0, 0, 258, 1732, 1, 0, 0, 0, 260, 1735, 1, 0, 0, 0, 262, 1749, 1, 0, 0, 0, 264, 1842, 1, 0, 0, 0, 266, 1873, 1, 0, 0, 0, 268, 1879, 1, 0, 0, 0, 270, 1924, 1, 0, 0, 0, 272, 2001, 1, 0, 0, 0, 274, 2013, 1, 0, 0, 0, 276, 2019, 1, 0, 0, 0, 278, 2025, 1, 0, 0, 0, 280, 2029, 1, 0, 0, 0, 282, 2035, 1, 0, 0, 0, 284, 2037, 1, 0, 0, 0, 286, 2039, 1, 0, 0, 0, 288, 2043, 1, 0, 0, 0, 290, 2045, 1, 0, 0, 0, 292, 2050, 1, 0, 0, 0, 294, 2057, 1, 0, 0, 0, 296, 2061, 1, 0, 0, 0, 298, 2066, 1, 0, 0, 0, 300, 2076, 1, 0, 0, 0, 302, 2079, 1, 0, 0, 0, 304, 2085, 1, 0, 0, 0, 306, 2095, 1, 0, 0, 0, 308, 2097, 1, 0, 0, 0, 310, 2101, 1, 0, 0, 0, 312, 2112, 1, 0, 0, 0, 314, 2114, 1, 0, 0, 0, 316, 2116, 1, 0, 0, 0, 318, 2118, 1, 0, 0, 0, 320, 2123, 1, 0, 0, 0, 322, 2125, 1, 0, 0, 0, 324, 2127, 1, 0, 0, 0, 326, 2132, 1, 0, 0, 0, 328, 2149, 1, 0, 0, 0, 330, 2163, 1, 0, 0, 0, 332, 2177, 1, 0, 0, 0, 334, 2191, 1, 0, 0, 0, 336, 2193, 1, 0, 0, 0, 338, 2201, 1, 0, 0, 0, 340, 2204, 1, 0, 0, 0, 342, 2208, 1, 0, 0, 0, 344, 2211, 1, 0, 0, 0, 346, 2222, 1, 0, 0, 0, 348, 2232, 1, 0, 0, 0, 350, 2238, 1, 0, 0, 0, 352, 2246, 1, 0, 0, 0, 354, 2262, 1, 0, 0, 0, 356, 2271, 1, 0, 0, 0, 358, 2273, 1, 0, 0, 0, 360, 2275, 1, 0, 0, 0, 362, 2291, 1, 0, 0, 0, 364, 2293, 1, 0, 0, 0, 366, 2296, 1, 0, 0, 0, 368, 2298, 1, 0, 0, 0, 370, 2300, 1, 0, 0, 0, 372, 2302, 1, 0, 0, 0, 374, 2304, 1, 0, 0, 0, 376, 2306, 1, 0, 0, 0, 378, 2308, 1, 0, 0, 0, 380, 2310, 1, 0, 0, 0, 382, 2312, 1, 0, 0, 0, 384, 2314, 1, 0, 0, 0, 386, 2316, 1, 0, 0, 0, 388, 390, 3, 2, 1, 0, 389, 388, 1, 0, 0, 0, 390, 393, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 394, 395, 5, 0, 0, 1, 395, 1, 1, 0, 0, 0, 396, 398, 3, 4, 2, 0, 397, 399, 5, 522, 0, 0, 398, 397, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 402, 3, 6, 3, 0, 401, 396, 1, 0, 0, 0, 401, 400, 1, 0, 0, 0, 402, 3, 1, 0, 0, 0, 403, 416, 3, 8, 4, 0, 404, 416, 3, 10, 5, 0, 405, 416, 3, 12, 6, 0, 406, 416, 3, 14, 7, 0, 407, 416, 3, 20, 10, 0, 408, 416, 3, 24, 12, 0, 409, 416, 3, 26, 13, 0, 410, 416, 3, 28, 14, 0, 411, 416, 3, 30, 15, 0, 412, 416, 3, 32, 16, 0, 413, 416, 3, 34, 17, 0, 414, 416, 3, 36, 18, 0, 415, 403, 1, 0, 0, 0, 415, 404, 1, 0, 0, 0, 415, 405, 1, 0, 0, 0, 415, 406, 1, 0, 0, 0, 415, 407, 1, 0, 0, 0, 415, 408, 1, 0, 0, 0, 415, 409, 1, 0, 0, 0, 415, 410, 1, 0, 0, 0, 415, 411, 1, 0, 0, 0, 415, 412, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 414, 1, 0, 0, 0, 416, 5, 1, 0, 0, 0, 417, 418, 5, 522, 0, 0, 418, 7, 1, 0, 0, 0, 419, 434, 3, 40, 20, 0, 420, 434, 3, 104, 52, 0, 421, 434, 3, 106, 53, 0, 422, 434, 3, 108, 54, 0, 423, 434, 3, 102, 51, 0, 424, 434, 3, 114, 57, 0, 425, 434, 3, 128, 64, 0, 426, 434, 3, 130, 65, 0, 427, 434, 3, 132, 66, 0, 428, 434, 3, 134, 67, 0, 429, 434, 3, 136, 68, 0, 430, 434, 3, 138, 69, 0, 431, 434, 3, 140, 70, 0, 432, 434, 3, 142, 71, 0, 433, 419, 1, 0, 0, 0, 433, 420, 1, 0, 0, 0, 433, 421, 1, 0, 0, 0, 433, 422, 1, 0, 0, 0, 433, 423, 1, 0, 0, 0, 433, 424, 1, 0, 0, 0, 433, 425, 1, 0, 0, 0, 433, 426, 1, 0, 0, 0, 433, 427, 1, 0, 0, 0, 433, 428, 1, 0, 0, 0, 433, 429, 1, 0, 0, 0, 433, 430, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 432, 1, 0, 0, 0, 434, 9, 1, 0, 0, 0, 435, 438, 3, 160, 80, 0, 436, 438, 3, 144, 72, 0, 437, 435, 1, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 11, 1, 0, 0, 0, 439, 440, 7, 0, 0, 0, 440, 441, 3, 330, 165, 0, 441, 13, 1, 0, 0, 0, 442, 446, 5, 135, 0, 0, 443, 447, 3, 16, 8, 0, 444, 445, 5, 480, 0, 0, 445, 447, 5, 146, 0, 0, 446, 443, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 451, 1, 0, 0, 0, 448, 452, 3, 10, 5, 0, 449, 452, 3, 146, 73, 0, 450, 452, 3, 158, 79, 0, 451, 448, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 450, 1, 0, 0, 0, 452, 15, 1, 0, 0, 0, 453, 458, 3, 18, 9, 0, 454, 455, 5, 521, 0, 0, 455, 457, 3, 18, 9, 0, 456, 454, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 17, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 461, 462, 7, 1, 0, 0, 462, 19, 1, 0, 0, 0, 463, 464, 5, 411, 0, 0, 464, 465, 5, 442, 0, 0, 465, 470, 3, 320, 160, 0, 466, 467, 5, 411, 0, 0, 467, 470, 3, 324, 162, 0, 468, 470, 3, 22, 11, 0, 469, 463, 1, 0, 0, 0, 469, 466, 1, 0, 0, 0, 469, 468, 1, 0, 0, 0, 470, 21, 1, 0, 0, 0, 471, 472, 5, 411, 0, 0, 472, 473, 5, 228, 0, 0, 473, 478, 3, 336, 168, 0, 474, 475, 5, 521, 0, 0, 475, 477, 3, 336, 168, 0, 476, 474, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 23, 1, 0, 0, 0, 480, 478, 1, 0, 0, 0, 481, 482, 5, 342, 0, 0, 482, 524, 7, 2, 0, 0, 483, 484, 5, 342, 0, 0, 484, 485, 5, 76, 0, 0, 485, 524, 7, 3, 0, 0, 486, 487, 5, 342, 0, 0, 487, 490, 5, 375, 0, 0, 488, 489, 7, 4, 0, 0, 489, 491, 3, 324, 162, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 493, 1, 0, 0, 0, 492, 494, 3, 266, 133, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 524, 1, 0, 0, 0, 495, 496, 5, 342, 0, 0, 496, 497, 5, 58, 0, 0, 497, 500, 7, 4, 0, 0, 498, 501, 3, 332, 166, 0, 499, 501, 3, 330, 165, 0, 500, 498, 1, 0, 0, 0, 500, 499, 1, 0, 0, 0, 501, 503, 1, 0, 0, 0, 502, 504, 3, 266, 133, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 524, 1, 0, 0, 0, 505, 506, 5, 342, 0, 0, 506, 511, 5, 72, 0, 0, 507, 508, 5, 374, 0, 0, 508, 512, 3, 330, 165, 0, 509, 510, 5, 502, 0, 0, 510, 512, 3, 332, 166, 0, 511, 507, 1, 0, 0, 0, 511, 509, 1, 0, 0, 0, 512, 524, 1, 0, 0, 0, 513, 515, 5, 342, 0, 0, 514, 516, 5, 412, 0, 0, 515, 514, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 524, 5, 154, 0, 0, 518, 520, 5, 342, 0, 0, 519, 521, 5, 152, 0, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 5, 228, 0, 0, 523, 481, 1, 0, 0, 0, 523, 483, 1, 0, 0, 0, 523, 486, 1, 0, 0, 0, 523, 495, 1, 0, 0, 0, 523, 505, 1, 0, 0, 0, 523, 513, 1, 0, 0, 0, 523, 518, 1, 0, 0, 0, 524, 25, 1, 0, 0, 0, 525, 526, 5, 469, 0, 0, 526, 527, 5, 227, 0, 0, 527, 530, 3, 336, 168, 0, 528, 529, 5, 434, 0, 0, 529, 531, 3, 344, 172, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 27, 1, 0, 0, 0, 532, 533, 5, 501, 0, 0, 533, 534, 5, 227, 0, 0, 534, 535, 3, 336, 168, 0, 535, 29, 1, 0, 0, 0, 536, 538, 5, 341, 0, 0, 537, 539, 3, 346, 173, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 31, 1, 0, 0, 0, 540, 542, 5, 313, 0, 0, 541, 543, 3, 348, 174, 0, 542, 541, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 33, 1, 0, 0, 0, 544, 545, 7, 5, 0, 0, 545, 546, 5, 464, 0, 0, 546, 547, 3, 112, 56, 0, 547, 35, 1, 0, 0, 0, 548, 549, 5, 438, 0, 0, 549, 550, 5, 464, 0, 0, 550, 551, 5, 434, 0, 0, 551, 554, 3, 38, 19, 0, 552, 553, 5, 17, 0, 0, 553, 555, 3, 336, 168, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 599, 1, 0, 0, 0, 556, 557, 5, 438, 0, 0, 557, 558, 5, 457, 0, 0, 558, 559, 5, 434, 0, 0, 559, 562, 3, 38, 19, 0, 560, 561, 5, 17, 0, 0, 561, 563, 3, 336, 168, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 566, 1, 0, 0, 0, 564, 565, 5, 312, 0, 0, 565, 567, 3, 336, 168, 0, 566, 564, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 599, 1, 0, 0, 0, 568, 569, 5, 438, 0, 0, 569, 570, 7, 6, 0, 0, 570, 571, 5, 434, 0, 0, 571, 572, 3, 38, 19, 0, 572, 573, 5, 312, 0, 0, 573, 574, 3, 336, 168, 0, 574, 599, 1, 0, 0, 0, 575, 576, 5, 438, 0, 0, 576, 577, 5, 487, 0, 0, 577, 599, 3, 38, 19, 0, 578, 579, 5, 438, 0, 0, 579, 580, 5, 454, 0, 0, 580, 581, 5, 457, 0, 0, 581, 582, 5, 434, 0, 0, 582, 583, 3, 38, 19, 0, 583, 584, 5, 312, 0, 0, 584, 585, 3, 336, 168, 0, 585, 586, 5, 467, 0, 0, 586, 587, 3, 336, 168, 0, 587, 599, 1, 0, 0, 0, 588, 589, 5, 438, 0, 0, 589, 590, 5, 444, 0, 0, 590, 591, 5, 457, 0, 0, 591, 592, 5, 434, 0, 0, 592, 593, 3, 38, 19, 0, 593, 594, 5, 146, 0, 0, 594, 595, 3, 336, 168, 0, 595, 596, 5, 17, 0, 0, 596, 597, 3, 336, 168, 0, 597, 599, 1, 0, 0, 0, 598, 548, 1, 0, 0, 0, 598, 556, 1, 0, 0, 0, 598, 568, 1, 0, 0, 0, 598, 575, 1, 0, 0, 0, 598, 578, 1, 0, 0, 0, 598, 588, 1, 0, 0, 0, 599, 37, 1, 0, 0, 0, 600, 602, 5, 535, 0, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 605, 3, 336, 168, 0, 604, 601, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 39, 1, 0, 0, 0, 608, 611, 3, 42, 21, 0, 609, 611, 3, 44, 22, 0, 610, 608, 1, 0, 0, 0, 610, 609, 1, 0, 0, 0, 611, 41, 1, 0, 0, 0, 612, 614, 5, 72, 0, 0, 613, 615, 5, 498, 0, 0, 614, 613, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 618, 5, 374, 0, 0, 617, 619, 3, 340, 170, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 3, 328, 164, 0, 621, 622, 5, 517, 0, 0, 622, 627, 3, 46, 23, 0, 623, 624, 5, 521, 0, 0, 624, 626, 3, 46, 23, 0, 625, 623, 1, 0, 0, 0, 626, 629, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 632, 1, 0, 0, 0, 629, 627, 1, 0, 0, 0, 630, 631, 5, 521, 0, 0, 631, 633, 3, 82, 41, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 636, 1, 0, 0, 0, 634, 635, 5, 521, 0, 0, 635, 637, 3, 84, 42, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 639, 5, 521, 0, 0, 639, 641, 3, 88, 44, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 645, 5, 518, 0, 0, 643, 644, 5, 59, 0, 0, 644, 646, 5, 538, 0, 0, 645, 643, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 1, 0, 0, 0, 647, 649, 3, 90, 45, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 3, 338, 169, 0, 651, 653, 3, 98, 49, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 43, 1, 0, 0, 0, 654, 655, 5, 72, 0, 0, 655, 657, 5, 374, 0, 0, 656, 658, 3, 340, 170, 0, 657, 656, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 3, 328, 164, 0, 660, 663, 3, 338, 169, 0, 661, 662, 5, 17, 0, 0, 662, 664, 3, 160, 80, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 45, 1, 0, 0, 0, 665, 669, 3, 48, 24, 0, 666, 669, 3, 74, 37, 0, 667, 669, 3, 78, 39, 0, 668, 665, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 667, 1, 0, 0, 0, 669, 47, 1, 0, 0, 0, 670, 671, 3, 50, 25, 0, 671, 673, 3, 58, 29, 0, 672, 674, 3, 72, 36, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 677, 1, 0, 0, 0, 675, 676, 5, 59, 0, 0, 676, 678, 5, 538, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 49, 1, 0, 0, 0, 679, 682, 3, 336, 168, 0, 680, 682, 3, 260, 130, 0, 681, 679, 1, 0, 0, 0, 681, 680, 1, 0, 0, 0, 682, 51, 1, 0, 0, 0, 683, 686, 3, 336, 168, 0, 684, 686, 4, 26, 0, 0, 685, 683, 1, 0, 0, 0, 685, 684, 1, 0, 0, 0, 686, 53, 1, 0, 0, 0, 687, 688, 3, 336, 168, 0, 688, 55, 1, 0, 0, 0, 689, 690, 5, 517, 0, 0, 690, 695, 3, 52, 26, 0, 691, 692, 5, 521, 0, 0, 692, 694, 3, 52, 26, 0, 693, 691, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 518, 0, 0, 699, 57, 1, 0, 0, 0, 700, 738, 7, 7, 0, 0, 701, 703, 7, 8, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 738, 1, 0, 0, 0, 705, 707, 5, 380, 0, 0, 706, 708, 3, 60, 30, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 715, 1, 0, 0, 0, 709, 711, 7, 9, 0, 0, 710, 712, 5, 207, 0, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 379, 0, 0, 714, 716, 5, 505, 0, 0, 715, 709, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 738, 1, 0, 0, 0, 717, 719, 7, 10, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 738, 1, 0, 0, 0, 721, 723, 7, 11, 0, 0, 722, 724, 3, 66, 33, 0, 723, 722, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 738, 1, 0, 0, 0, 725, 727, 5, 470, 0, 0, 726, 728, 3, 68, 34, 0, 727, 726, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 738, 1, 0, 0, 0, 729, 731, 5, 322, 0, 0, 730, 732, 3, 70, 35, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 738, 1, 0, 0, 0, 733, 735, 5, 295, 0, 0, 734, 736, 3, 64, 32, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 1, 0, 0, 0, 737, 700, 1, 0, 0, 0, 737, 701, 1, 0, 0, 0, 737, 705, 1, 0, 0, 0, 737, 717, 1, 0, 0, 0, 737, 721, 1, 0, 0, 0, 737, 725, 1, 0, 0, 0, 737, 729, 1, 0, 0, 0, 737, 733, 1, 0, 0, 0, 738, 59, 1, 0, 0, 0, 739, 740, 5, 517, 0, 0, 740, 741, 3, 368, 184, 0, 741, 742, 5, 518, 0, 0, 742, 61, 1, 0, 0, 0, 743, 744, 5, 517, 0, 0, 744, 747, 3, 368, 184, 0, 745, 746, 5, 521, 0, 0, 746, 748, 3, 368, 184, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 5, 518, 0, 0, 750, 63, 1, 0, 0, 0, 751, 752, 5, 517, 0, 0, 752, 755, 3, 366, 183, 0, 753, 754, 5, 521, 0, 0, 754, 756, 3, 366, 183, 0, 755, 753, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 5, 518, 0, 0, 758, 65, 1, 0, 0, 0, 759, 760, 5, 508, 0, 0, 760, 761, 3, 58, 29, 0, 761, 762, 5, 507, 0, 0, 762, 67, 1, 0, 0, 0, 763, 764, 5, 508, 0, 0, 764, 765, 3, 58, 29, 0, 765, 766, 5, 521, 0, 0, 766, 767, 3, 58, 29, 0, 767, 768, 1, 0, 0, 0, 768, 769, 5, 507, 0, 0, 769, 69, 1, 0, 0, 0, 770, 771, 5, 508, 0, 0, 771, 772, 3, 52, 26, 0, 772, 779, 3, 58, 29, 0, 773, 774, 5, 521, 0, 0, 774, 775, 3, 52, 26, 0, 775, 776, 3, 58, 29, 0, 776, 778, 1, 0, 0, 0, 777, 773, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 782, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 783, 5, 507, 0, 0, 783, 799, 1, 0, 0, 0, 784, 785, 5, 517, 0, 0, 785, 786, 3, 52, 26, 0, 786, 793, 3, 58, 29, 0, 787, 788, 5, 521, 0, 0, 788, 789, 3, 52, 26, 0, 789, 790, 3, 58, 29, 0, 790, 792, 1, 0, 0, 0, 791, 787, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 796, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 797, 5, 518, 0, 0, 797, 799, 1, 0, 0, 0, 798, 770, 1, 0, 0, 0, 798, 784, 1, 0, 0, 0, 799, 71, 1, 0, 0, 0, 800, 801, 5, 64, 0, 0, 801, 803, 3, 86, 43, 0, 802, 800, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 5, 289, 0, 0, 805, 808, 5, 467, 0, 0, 806, 807, 5, 242, 0, 0, 807, 809, 5, 125, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 815, 1, 0, 0, 0, 810, 812, 5, 242, 0, 0, 811, 810, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 5, 245, 0, 0, 814, 802, 1, 0, 0, 0, 814, 811, 1, 0, 0, 0, 815, 73, 1, 0, 0, 0, 816, 817, 3, 50, 25, 0, 817, 818, 3, 58, 29, 0, 818, 821, 5, 219, 0, 0, 819, 820, 5, 151, 0, 0, 820, 822, 3, 76, 38, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 824, 1, 0, 0, 0, 823, 825, 5, 424, 0, 0, 824, 823, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 75, 1, 0, 0, 0, 826, 827, 5, 538, 0, 0, 827, 77, 1, 0, 0, 0, 828, 829, 3, 50, 25, 0, 829, 830, 5, 17, 0, 0, 830, 833, 3, 80, 40, 0, 831, 832, 5, 59, 0, 0, 832, 834, 5, 538, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 79, 1, 0, 0, 0, 835, 836, 3, 260, 130, 0, 836, 81, 1, 0, 0, 0, 837, 838, 5, 425, 0, 0, 838, 839, 5, 146, 0, 0, 839, 840, 3, 52, 26, 0, 840, 841, 5, 17, 0, 0, 841, 842, 3, 260, 130, 0, 842, 83, 1, 0, 0, 0, 843, 844, 5, 64, 0, 0, 844, 846, 3, 86, 43, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 5, 289, 0, 0, 848, 849, 5, 467, 0, 0, 849, 850, 3, 56, 28, 0, 850, 851, 5, 242, 0, 0, 851, 852, 5, 125, 0, 0, 852, 85, 1, 0, 0, 0, 853, 854, 3, 312, 156, 0, 854, 87, 1, 0, 0, 0, 855, 856, 5, 278, 0, 0, 856, 857, 5, 146, 0, 0, 857, 858, 5, 372, 0, 0, 858, 89, 1, 0, 0, 0, 859, 860, 5, 270, 0, 0, 860, 861, 5, 34, 0, 0, 861, 862, 3, 92, 46, 0, 862, 91, 1, 0, 0, 0, 863, 864, 5, 517, 0, 0, 864, 869, 3, 94, 47, 0, 865, 866, 5, 521, 0, 0, 866, 868, 3, 94, 47, 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, 872, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 872, 873, 5, 518, 0, 0, 873, 93, 1, 0, 0, 0, 874, 887, 3, 52, 26, 0, 875, 876, 5, 517, 0, 0, 876, 881, 3, 96, 48, 0, 877, 878, 5, 521, 0, 0, 878, 880, 3, 96, 48, 0, 879, 877, 1, 0, 0, 0, 880, 883, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 884, 885, 5, 518, 0, 0, 885, 887, 1, 0, 0, 0, 886, 874, 1, 0, 0, 0, 886, 875, 1, 0, 0, 0, 887, 95, 1, 0, 0, 0, 888, 891, 3, 288, 144, 0, 889, 891, 3, 362, 181, 0, 890, 888, 1, 0, 0, 0, 890, 889, 1, 0, 0, 0, 891, 97, 1, 0, 0, 0, 892, 893, 5, 203, 0, 0, 893, 902, 3, 330, 165, 0, 894, 898, 5, 517, 0, 0, 895, 897, 3, 100, 50, 0, 896, 895, 1, 0, 0, 0, 897, 900, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 901, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 901, 903, 5, 518, 0, 0, 902, 894, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 99, 1, 0, 0, 0, 904, 905, 7, 12, 0, 0, 905, 909, 7, 13, 0, 0, 906, 907, 7, 14, 0, 0, 907, 909, 7, 15, 0, 0, 908, 904, 1, 0, 0, 0, 908, 906, 1, 0, 0, 0, 909, 101, 1, 0, 0, 0, 910, 911, 5, 72, 0, 0, 911, 912, 5, 442, 0, 0, 912, 913, 3, 322, 161, 0, 913, 914, 3, 338, 169, 0, 914, 103, 1, 0, 0, 0, 915, 916, 5, 72, 0, 0, 916, 918, 5, 448, 0, 0, 917, 919, 3, 340, 170, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 923, 3, 326, 163, 0, 921, 922, 5, 59, 0, 0, 922, 924, 5, 538, 0, 0, 923, 921, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 3, 338, 169, 0, 926, 105, 1, 0, 0, 0, 927, 929, 5, 72, 0, 0, 928, 930, 5, 498, 0, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 5, 502, 0, 0, 932, 934, 3, 340, 170, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 3, 334, 167, 0, 936, 938, 3, 56, 28, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 941, 1, 0, 0, 0, 939, 940, 5, 59, 0, 0, 940, 942, 5, 538, 0, 0, 941, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 944, 5, 17, 0, 0, 944, 945, 3, 160, 80, 0, 945, 107, 1, 0, 0, 0, 946, 950, 5, 72, 0, 0, 947, 951, 5, 498, 0, 0, 948, 949, 5, 498, 0, 0, 949, 951, 5, 371, 0, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 954, 5, 153, 0, 0, 953, 955, 3, 340, 170, 0, 954, 953, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 3, 274, 137, 0, 957, 958, 5, 17, 0, 0, 958, 961, 3, 312, 156, 0, 959, 960, 5, 196, 0, 0, 960, 962, 7, 16, 0, 0, 961, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 1, 0, 0, 0, 963, 965, 3, 110, 55, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 109, 1, 0, 0, 0, 966, 967, 5, 413, 0, 0, 967, 968, 5, 464, 0, 0, 968, 974, 3, 112, 56, 0, 969, 970, 5, 521, 0, 0, 970, 971, 5, 464, 0, 0, 971, 973, 3, 112, 56, 0, 972, 969, 1, 0, 0, 0, 973, 976, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 111, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 977, 978, 5, 538, 0, 0, 978, 113, 1, 0, 0, 0, 979, 980, 5, 8, 0, 0, 980, 982, 5, 374, 0, 0, 981, 983, 3, 342, 171, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 990, 3, 330, 165, 0, 985, 991, 3, 116, 58, 0, 986, 991, 3, 118, 59, 0, 987, 991, 3, 120, 60, 0, 988, 991, 3, 122, 61, 0, 989, 991, 3, 124, 62, 0, 990, 985, 1, 0, 0, 0, 990, 986, 1, 0, 0, 0, 990, 987, 1, 0, 0, 0, 990, 988, 1, 0, 0, 0, 990, 989, 1, 0, 0, 0, 991, 115, 1, 0, 0, 0, 992, 994, 5, 312, 0, 0, 993, 995, 3, 336, 168, 0, 994, 993, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 5, 389, 0, 0, 997, 998, 3, 336, 168, 0, 998, 117, 1, 0, 0, 0, 999, 1000, 5, 341, 0, 0, 1000, 1001, 3, 344, 172, 0, 1001, 119, 1, 0, 0, 0, 1002, 1003, 5, 438, 0, 0, 1003, 1004, 5, 64, 0, 0, 1004, 1005, 3, 86, 43, 0, 1005, 1006, 5, 289, 0, 0, 1006, 1007, 5, 467, 0, 0, 1007, 1009, 3, 56, 28, 0, 1008, 1010, 3, 126, 63, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 121, 1, 0, 0, 0, 1011, 1012, 5, 116, 0, 0, 1012, 1013, 5, 64, 0, 0, 1013, 1014, 3, 86, 43, 0, 1014, 123, 1, 0, 0, 0, 1015, 1016, 5, 438, 0, 0, 1016, 1017, 5, 404, 0, 0, 1017, 1018, 3, 56, 28, 0, 1018, 125, 1, 0, 0, 0, 1019, 1020, 5, 242, 0, 0, 1020, 1021, 5, 125, 0, 0, 1021, 127, 1, 0, 0, 0, 1022, 1023, 5, 8, 0, 0, 1023, 1024, 5, 502, 0, 0, 1024, 1028, 3, 332, 166, 0, 1025, 1029, 3, 116, 58, 0, 1026, 1027, 5, 17, 0, 0, 1027, 1029, 3, 160, 80, 0, 1028, 1025, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1029, 129, 1, 0, 0, 0, 1030, 1031, 5, 8, 0, 0, 1031, 1032, 5, 448, 0, 0, 1032, 1033, 3, 324, 162, 0, 1033, 1034, 3, 118, 59, 0, 1034, 131, 1, 0, 0, 0, 1035, 1039, 5, 8, 0, 0, 1036, 1040, 5, 498, 0, 0, 1037, 1038, 5, 498, 0, 0, 1038, 1040, 5, 371, 0, 0, 1039, 1036, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1043, 5, 153, 0, 0, 1042, 1044, 3, 342, 171, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1046, 3, 276, 138, 0, 1046, 1047, 5, 17, 0, 0, 1047, 1050, 3, 312, 156, 0, 1048, 1049, 5, 196, 0, 0, 1049, 1051, 7, 16, 0, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 133, 1, 0, 0, 0, 1052, 1053, 5, 116, 0, 0, 1053, 1055, 5, 442, 0, 0, 1054, 1056, 3, 342, 171, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 3, 320, 160, 0, 1058, 135, 1, 0, 0, 0, 1059, 1061, 5, 116, 0, 0, 1060, 1062, 5, 498, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 5, 374, 0, 0, 1064, 1066, 3, 342, 171, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 3, 330, 165, 0, 1068, 137, 1, 0, 0, 0, 1069, 1070, 5, 116, 0, 0, 1070, 1072, 5, 448, 0, 0, 1071, 1073, 3, 342, 171, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1076, 3, 324, 162, 0, 1075, 1077, 7, 17, 0, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 139, 1, 0, 0, 0, 1078, 1080, 5, 116, 0, 0, 1079, 1081, 5, 498, 0, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 5, 502, 0, 0, 1083, 1085, 3, 342, 171, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 3, 332, 166, 0, 1087, 141, 1, 0, 0, 0, 1088, 1092, 5, 116, 0, 0, 1089, 1093, 5, 498, 0, 0, 1090, 1091, 5, 498, 0, 0, 1091, 1093, 5, 371, 0, 0, 1092, 1089, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1096, 5, 153, 0, 0, 1095, 1097, 3, 342, 171, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 3, 276, 138, 0, 1099, 143, 1, 0, 0, 0, 1100, 1102, 5, 132, 0, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1108, 3, 146, 73, 0, 1104, 1108, 3, 156, 78, 0, 1105, 1106, 5, 132, 0, 0, 1106, 1108, 3, 158, 79, 0, 1107, 1101, 1, 0, 0, 0, 1107, 1104, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1108, 145, 1, 0, 0, 0, 1109, 1110, 5, 177, 0, 0, 1110, 1111, 7, 18, 0, 0, 1111, 1120, 3, 330, 165, 0, 1112, 1114, 3, 148, 74, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 3, 56, 28, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1121, 3, 160, 80, 0, 1119, 1121, 3, 150, 75, 0, 1120, 1113, 1, 0, 0, 0, 1120, 1119, 1, 0, 0, 0, 1121, 147, 1, 0, 0, 0, 1122, 1123, 5, 269, 0, 0, 1123, 1124, 3, 344, 172, 0, 1124, 149, 1, 0, 0, 0, 1125, 1126, 5, 415, 0, 0, 1126, 1131, 3, 152, 76, 0, 1127, 1128, 5, 521, 0, 0, 1128, 1130, 3, 152, 76, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 151, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1135, 5, 517, 0, 0, 1135, 1140, 3, 154, 77, 0, 1136, 1137, 5, 521, 0, 0, 1137, 1139, 3, 154, 77, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1143, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1144, 5, 518, 0, 0, 1144, 153, 1, 0, 0, 0, 1145, 1148, 3, 362, 181, 0, 1146, 1148, 3, 270, 135, 0, 1147, 1145, 1, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 155, 1, 0, 0, 0, 1149, 1150, 5, 24, 0, 0, 1150, 1151, 5, 355, 0, 0, 1151, 1152, 5, 341, 0, 0, 1152, 1156, 5, 522, 0, 0, 1153, 1154, 3, 146, 73, 0, 1154, 1155, 5, 522, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1153, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 5, 122, 0, 0, 1161, 157, 1, 0, 0, 0, 1162, 1163, 5, 355, 0, 0, 1163, 1164, 5, 341, 0, 0, 1164, 1168, 5, 24, 0, 0, 1165, 1166, 3, 146, 73, 0, 1166, 1167, 5, 522, 0, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1165, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 5, 122, 0, 0, 1173, 159, 1, 0, 0, 0, 1174, 1175, 6, 80, -1, 0, 1175, 1198, 3, 162, 81, 0, 1176, 1177, 3, 164, 82, 0, 1177, 1178, 3, 160, 80, 5, 1178, 1198, 1, 0, 0, 0, 1179, 1180, 5, 517, 0, 0, 1180, 1181, 3, 160, 80, 0, 1181, 1182, 5, 518, 0, 0, 1182, 1198, 1, 0, 0, 0, 1183, 1185, 3, 172, 86, 0, 1184, 1186, 3, 232, 116, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1189, 3, 236, 118, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1198, 1, 0, 0, 0, 1190, 1192, 3, 170, 85, 0, 1191, 1193, 3, 232, 116, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1196, 3, 236, 118, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1174, 1, 0, 0, 0, 1197, 1176, 1, 0, 0, 0, 1197, 1179, 1, 0, 0, 0, 1197, 1183, 1, 0, 0, 0, 1197, 1190, 1, 0, 0, 0, 1198, 1213, 1, 0, 0, 0, 1199, 1200, 10, 3, 0, 0, 1200, 1202, 7, 19, 0, 0, 1201, 1203, 5, 5, 0, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 3, 160, 80, 0, 1205, 1207, 3, 232, 116, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1210, 3, 236, 118, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1199, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 161, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1217, 5, 415, 0, 0, 1217, 1222, 3, 260, 130, 0, 1218, 1219, 5, 521, 0, 0, 1219, 1221, 3, 260, 130, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1224, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 163, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1225, 1226, 5, 434, 0, 0, 1226, 1231, 3, 166, 83, 0, 1227, 1228, 5, 521, 0, 0, 1228, 1230, 3, 166, 83, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 165, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1246, 3, 168, 84, 0, 1235, 1236, 5, 517, 0, 0, 1236, 1241, 3, 52, 26, 0, 1237, 1238, 5, 521, 0, 0, 1238, 1240, 3, 52, 26, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1245, 5, 518, 0, 0, 1245, 1247, 1, 0, 0, 0, 1246, 1235, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1249, 5, 17, 0, 0, 1249, 1250, 5, 517, 0, 0, 1250, 1251, 3, 160, 80, 0, 1251, 1252, 5, 518, 0, 0, 1252, 167, 1, 0, 0, 0, 1253, 1254, 3, 312, 156, 0, 1254, 169, 1, 0, 0, 0, 1255, 1257, 3, 172, 86, 0, 1256, 1258, 3, 178, 89, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1261, 3, 206, 103, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 1, 0, 0, 0, 1262, 1264, 3, 208, 104, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1267, 3, 222, 111, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1270, 3, 224, 112, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1276, 1, 0, 0, 0, 1271, 1272, 3, 172, 86, 0, 1272, 1273, 3, 178, 89, 0, 1273, 1274, 3, 230, 115, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1255, 1, 0, 0, 0, 1275, 1271, 1, 0, 0, 0, 1276, 171, 1, 0, 0, 0, 1277, 1279, 5, 337, 0, 0, 1278, 1280, 3, 372, 186, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1290, 1, 0, 0, 0, 1281, 1291, 5, 528, 0, 0, 1282, 1287, 3, 174, 87, 0, 1283, 1284, 5, 521, 0, 0, 1284, 1286, 3, 174, 87, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1281, 1, 0, 0, 0, 1290, 1282, 1, 0, 0, 0, 1291, 173, 1, 0, 0, 0, 1292, 1308, 3, 176, 88, 0, 1293, 1298, 3, 260, 130, 0, 1294, 1296, 5, 17, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 3, 52, 26, 0, 1298, 1295, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1308, 1, 0, 0, 0, 1300, 1305, 3, 52, 26, 0, 1301, 1303, 5, 17, 0, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1306, 3, 260, 130, 0, 1305, 1302, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1292, 1, 0, 0, 0, 1307, 1293, 1, 0, 0, 0, 1307, 1300, 1, 0, 0, 0, 1308, 175, 1, 0, 0, 0, 1309, 1310, 3, 272, 136, 0, 1310, 1311, 5, 263, 0, 0, 1311, 1312, 3, 228, 114, 0, 1312, 1313, 5, 17, 0, 0, 1313, 1314, 3, 312, 156, 0, 1314, 1322, 1, 0, 0, 0, 1315, 1316, 3, 272, 136, 0, 1316, 1317, 5, 263, 0, 0, 1317, 1318, 3, 304, 152, 0, 1318, 1319, 5, 17, 0, 0, 1319, 1320, 3, 312, 156, 0, 1320, 1322, 1, 0, 0, 0, 1321, 1309, 1, 0, 0, 0, 1321, 1315, 1, 0, 0, 0, 1322, 177, 1, 0, 0, 0, 1323, 1324, 5, 151, 0, 0, 1324, 1325, 3, 180, 90, 0, 1325, 179, 1, 0, 0, 0, 1326, 1327, 6, 90, -1, 0, 1327, 1332, 3, 182, 91, 0, 1328, 1329, 5, 521, 0, 0, 1329, 1331, 3, 182, 91, 0, 1330, 1328, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1338, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 3, 190, 95, 0, 1336, 1338, 3, 192, 96, 0, 1337, 1326, 1, 0, 0, 0, 1337, 1335, 1, 0, 0, 0, 1337, 1336, 1, 0, 0, 0, 1338, 1360, 1, 0, 0, 0, 1339, 1340, 10, 3, 0, 0, 1340, 1341, 5, 73, 0, 0, 1341, 1342, 5, 185, 0, 0, 1342, 1359, 3, 180, 90, 4, 1343, 1345, 10, 4, 0, 0, 1344, 1346, 5, 234, 0, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1349, 7, 20, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1351, 1, 0, 0, 0, 1350, 1352, 5, 262, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 5, 185, 0, 0, 1354, 1356, 3, 180, 90, 0, 1355, 1357, 3, 204, 102, 0, 1356, 1355, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1359, 1, 0, 0, 0, 1358, 1339, 1, 0, 0, 0, 1358, 1343, 1, 0, 0, 0, 1359, 1362, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 181, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1365, 3, 184, 92, 0, 1364, 1366, 3, 302, 151, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 183, 1, 0, 0, 0, 1367, 1369, 5, 374, 0, 0, 1368, 1367, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1372, 3, 330, 165, 0, 1371, 1373, 3, 186, 93, 0, 1372, 1371, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1397, 1, 0, 0, 0, 1374, 1376, 3, 332, 166, 0, 1375, 1377, 3, 186, 93, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1397, 1, 0, 0, 0, 1378, 1379, 5, 199, 0, 0, 1379, 1380, 5, 374, 0, 0, 1380, 1381, 5, 517, 0, 0, 1381, 1382, 3, 270, 135, 0, 1382, 1383, 5, 518, 0, 0, 1383, 1397, 1, 0, 0, 0, 1384, 1386, 5, 199, 0, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 5, 517, 0, 0, 1388, 1389, 3, 160, 80, 0, 1389, 1390, 5, 518, 0, 0, 1390, 1397, 1, 0, 0, 0, 1391, 1392, 5, 406, 0, 0, 1392, 1393, 5, 517, 0, 0, 1393, 1394, 3, 260, 130, 0, 1394, 1395, 5, 518, 0, 0, 1395, 1397, 1, 0, 0, 0, 1396, 1368, 1, 0, 0, 0, 1396, 1374, 1, 0, 0, 0, 1396, 1378, 1, 0, 0, 0, 1396, 1385, 1, 0, 0, 0, 1396, 1391, 1, 0, 0, 0, 1397, 185, 1, 0, 0, 0, 1398, 1399, 5, 146, 0, 0, 1399, 1400, 5, 372, 0, 0, 1400, 1401, 5, 17, 0, 0, 1401, 1402, 5, 250, 0, 0, 1402, 1403, 3, 188, 94, 0, 1403, 187, 1, 0, 0, 0, 1404, 1405, 3, 260, 130, 0, 1405, 189, 1, 0, 0, 0, 1406, 1407, 5, 517, 0, 0, 1407, 1408, 3, 150, 75, 0, 1408, 1409, 5, 518, 0, 0, 1409, 1410, 3, 302, 151, 0, 1410, 191, 1, 0, 0, 0, 1411, 1412, 5, 374, 0, 0, 1412, 1413, 5, 517, 0, 0, 1413, 1414, 3, 194, 97, 0, 1414, 1415, 5, 518, 0, 0, 1415, 193, 1, 0, 0, 0, 1416, 1417, 3, 196, 98, 0, 1417, 1418, 5, 517, 0, 0, 1418, 1423, 3, 198, 99, 0, 1419, 1420, 5, 521, 0, 0, 1420, 1422, 3, 198, 99, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1426, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1427, 5, 518, 0, 0, 1427, 195, 1, 0, 0, 0, 1428, 1429, 7, 21, 0, 0, 1429, 197, 1, 0, 0, 0, 1430, 1431, 5, 374, 0, 0, 1431, 1446, 3, 220, 110, 0, 1432, 1446, 3, 202, 101, 0, 1433, 1446, 3, 290, 145, 0, 1434, 1435, 5, 447, 0, 0, 1435, 1436, 5, 537, 0, 0, 1436, 1437, 5, 374, 0, 0, 1437, 1446, 3, 220, 110, 0, 1438, 1439, 5, 499, 0, 0, 1439, 1440, 5, 537, 0, 0, 1440, 1446, 3, 202, 101, 0, 1441, 1442, 3, 200, 100, 0, 1442, 1443, 5, 537, 0, 0, 1443, 1444, 3, 290, 145, 0, 1444, 1446, 1, 0, 0, 0, 1445, 1430, 1, 0, 0, 0, 1445, 1432, 1, 0, 0, 0, 1445, 1433, 1, 0, 0, 0, 1445, 1434, 1, 0, 0, 0, 1445, 1438, 1, 0, 0, 0, 1445, 1441, 1, 0, 0, 0, 1446, 199, 1, 0, 0, 0, 1447, 1448, 7, 22, 0, 0, 1448, 201, 1, 0, 0, 0, 1449, 1450, 5, 452, 0, 0, 1450, 1451, 5, 517, 0, 0, 1451, 1452, 3, 52, 26, 0, 1452, 1453, 5, 518, 0, 0, 1453, 203, 1, 0, 0, 0, 1454, 1455, 5, 254, 0, 0, 1455, 1459, 3, 262, 131, 0, 1456, 1457, 5, 413, 0, 0, 1457, 1459, 3, 56, 28, 0, 1458, 1454, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1459, 205, 1, 0, 0, 0, 1460, 1461, 5, 431, 0, 0, 1461, 1462, 3, 262, 131, 0, 1462, 207, 1, 0, 0, 0, 1463, 1464, 5, 159, 0, 0, 1464, 1465, 5, 34, 0, 0, 1465, 1470, 3, 210, 105, 0, 1466, 1467, 5, 521, 0, 0, 1467, 1469, 3, 210, 105, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1472, 1, 0, 0, 0, 1470, 1468, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 209, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1473, 1514, 3, 52, 26, 0, 1474, 1514, 3, 216, 108, 0, 1475, 1476, 5, 517, 0, 0, 1476, 1514, 5, 518, 0, 0, 1477, 1478, 5, 517, 0, 0, 1478, 1483, 3, 260, 130, 0, 1479, 1480, 5, 521, 0, 0, 1480, 1482, 3, 260, 130, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1485, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1486, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1487, 5, 518, 0, 0, 1487, 1514, 1, 0, 0, 0, 1488, 1489, 3, 214, 107, 0, 1489, 1490, 5, 517, 0, 0, 1490, 1495, 3, 260, 130, 0, 1491, 1492, 5, 521, 0, 0, 1492, 1494, 3, 260, 130, 0, 1493, 1491, 1, 0, 0, 0, 1494, 1497, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1498, 1, 0, 0, 0, 1497, 1495, 1, 0, 0, 0, 1498, 1499, 5, 518, 0, 0, 1499, 1514, 1, 0, 0, 0, 1500, 1501, 3, 212, 106, 0, 1501, 1502, 5, 517, 0, 0, 1502, 1507, 3, 210, 105, 0, 1503, 1504, 5, 521, 0, 0, 1504, 1506, 3, 210, 105, 0, 1505, 1503, 1, 0, 0, 0, 1506, 1509, 1, 0, 0, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1510, 1511, 5, 518, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1514, 3, 260, 130, 0, 1513, 1473, 1, 0, 0, 0, 1513, 1474, 1, 0, 0, 0, 1513, 1475, 1, 0, 0, 0, 1513, 1477, 1, 0, 0, 0, 1513, 1488, 1, 0, 0, 0, 1513, 1500, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 211, 1, 0, 0, 0, 1515, 1516, 5, 160, 0, 0, 1516, 1517, 5, 494, 0, 0, 1517, 213, 1, 0, 0, 0, 1518, 1519, 7, 23, 0, 0, 1519, 215, 1, 0, 0, 0, 1520, 1521, 3, 218, 109, 0, 1521, 1522, 5, 517, 0, 0, 1522, 1523, 3, 220, 110, 0, 1523, 1524, 5, 521, 0, 0, 1524, 1525, 3, 290, 145, 0, 1525, 1526, 5, 518, 0, 0, 1526, 217, 1, 0, 0, 0, 1527, 1528, 7, 24, 0, 0, 1528, 219, 1, 0, 0, 0, 1529, 1530, 3, 336, 168, 0, 1530, 221, 1, 0, 0, 0, 1531, 1532, 5, 163, 0, 0, 1532, 1533, 3, 262, 131, 0, 1533, 223, 1, 0, 0, 0, 1534, 1535, 5, 433, 0, 0, 1535, 1540, 3, 226, 113, 0, 1536, 1537, 5, 521, 0, 0, 1537, 1539, 3, 226, 113, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1542, 1, 0, 0, 0, 1540, 1538, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 225, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1543, 1544, 3, 304, 152, 0, 1544, 1545, 5, 17, 0, 0, 1545, 1546, 3, 228, 114, 0, 1546, 227, 1, 0, 0, 0, 1547, 1549, 3, 304, 152, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 5, 517, 0, 0, 1551, 1553, 3, 238, 119, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 1, 0, 0, 0, 1554, 1556, 3, 232, 116, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1559, 3, 254, 127, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 5, 518, 0, 0, 1561, 229, 1, 0, 0, 0, 1562, 1563, 5, 214, 0, 0, 1563, 1565, 5, 517, 0, 0, 1564, 1566, 3, 238, 119, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1569, 3, 232, 116, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1572, 3, 242, 121, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1575, 3, 248, 124, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1577, 1, 0, 0, 0, 1576, 1578, 3, 250, 125, 0, 1577, 1576, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1581, 3, 244, 122, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 3, 252, 126, 0, 1583, 1588, 5, 518, 0, 0, 1584, 1586, 5, 17, 0, 0, 1585, 1584, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1589, 3, 312, 156, 0, 1588, 1585, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 231, 1, 0, 0, 0, 1590, 1591, 5, 259, 0, 0, 1591, 1592, 5, 34, 0, 0, 1592, 1597, 3, 234, 117, 0, 1593, 1594, 5, 521, 0, 0, 1594, 1596, 3, 234, 117, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1599, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 233, 1, 0, 0, 0, 1599, 1597, 1, 0, 0, 0, 1600, 1602, 3, 52, 26, 0, 1601, 1603, 7, 25, 0, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1605, 5, 477, 0, 0, 1605, 1607, 7, 26, 0, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 235, 1, 0, 0, 0, 1608, 1611, 5, 205, 0, 0, 1609, 1612, 5, 5, 0, 0, 1610, 1612, 3, 260, 130, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1610, 1, 0, 0, 0, 1612, 237, 1, 0, 0, 0, 1613, 1614, 5, 269, 0, 0, 1614, 1617, 5, 34, 0, 0, 1615, 1618, 3, 52, 26, 0, 1616, 1618, 3, 272, 136, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1616, 1, 0, 0, 0, 1618, 1626, 1, 0, 0, 0, 1619, 1622, 5, 521, 0, 0, 1620, 1623, 3, 52, 26, 0, 1621, 1623, 3, 272, 136, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1625, 1, 0, 0, 0, 1624, 1619, 1, 0, 0, 0, 1625, 1628, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 239, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1646, 5, 528, 0, 0, 1630, 1646, 5, 531, 0, 0, 1631, 1646, 5, 536, 0, 0, 1632, 1633, 5, 519, 0, 0, 1633, 1634, 5, 539, 0, 0, 1634, 1635, 5, 521, 0, 0, 1635, 1636, 5, 539, 0, 0, 1636, 1646, 5, 520, 0, 0, 1637, 1638, 5, 519, 0, 0, 1638, 1639, 5, 539, 0, 0, 1639, 1640, 5, 521, 0, 0, 1640, 1646, 5, 520, 0, 0, 1641, 1642, 5, 519, 0, 0, 1642, 1643, 5, 521, 0, 0, 1643, 1644, 5, 539, 0, 0, 1644, 1646, 5, 520, 0, 0, 1645, 1629, 1, 0, 0, 0, 1645, 1630, 1, 0, 0, 0, 1645, 1631, 1, 0, 0, 0, 1645, 1632, 1, 0, 0, 0, 1645, 1637, 1, 0, 0, 0, 1645, 1641, 1, 0, 0, 0, 1646, 241, 1, 0, 0, 0, 1647, 1648, 5, 216, 0, 0, 1648, 1653, 3, 174, 87, 0, 1649, 1650, 5, 521, 0, 0, 1650, 1652, 3, 174, 87, 0, 1651, 1649, 1, 0, 0, 0, 1652, 1655, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 243, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1656, 1657, 5, 272, 0, 0, 1657, 1659, 5, 517, 0, 0, 1658, 1660, 3, 246, 123, 0, 1659, 1658, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 5, 518, 0, 0, 1664, 1666, 3, 258, 129, 0, 1665, 1664, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 245, 1, 0, 0, 0, 1667, 1669, 3, 314, 157, 0, 1668, 1670, 3, 240, 120, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 247, 1, 0, 0, 0, 1671, 1672, 5, 5, 0, 0, 1672, 1673, 5, 323, 0, 0, 1673, 1674, 5, 273, 0, 0, 1674, 1680, 5, 211, 0, 0, 1675, 1676, 5, 255, 0, 0, 1676, 1677, 5, 322, 0, 0, 1677, 1678, 5, 273, 0, 0, 1678, 1680, 5, 211, 0, 0, 1679, 1671, 1, 0, 0, 0, 1679, 1675, 1, 0, 0, 0, 1680, 249, 1, 0, 0, 0, 1681, 1682, 5, 439, 0, 0, 1682, 1683, 5, 211, 0, 0, 1683, 1684, 5, 344, 0, 0, 1684, 1685, 5, 479, 0, 0, 1685, 1686, 5, 468, 0, 0, 1686, 1706, 5, 322, 0, 0, 1687, 1688, 5, 439, 0, 0, 1688, 1689, 5, 211, 0, 0, 1689, 1690, 5, 344, 0, 0, 1690, 1691, 5, 389, 0, 0, 1691, 1692, 5, 238, 0, 0, 1692, 1706, 5, 322, 0, 0, 1693, 1694, 5, 439, 0, 0, 1694, 1695, 5, 211, 0, 0, 1695, 1696, 5, 344, 0, 0, 1696, 1697, 5, 389, 0, 0, 1697, 1698, 5, 468, 0, 0, 1698, 1706, 3, 314, 157, 0, 1699, 1700, 5, 439, 0, 0, 1700, 1701, 5, 211, 0, 0, 1701, 1702, 5, 344, 0, 0, 1702, 1703, 5, 389, 0, 0, 1703, 1704, 5, 458, 0, 0, 1704, 1706, 3, 314, 157, 0, 1705, 1681, 1, 0, 0, 0, 1705, 1687, 1, 0, 0, 0, 1705, 1693, 1, 0, 0, 0, 1705, 1699, 1, 0, 0, 0, 1706, 251, 1, 0, 0, 0, 1707, 1708, 5, 105, 0, 0, 1708, 1713, 3, 174, 87, 0, 1709, 1710, 5, 521, 0, 0, 1710, 1712, 3, 174, 87, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1715, 1, 0, 0, 0, 1713, 1711, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 253, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1717, 5, 293, 0, 0, 1717, 1718, 5, 27, 0, 0, 1718, 1719, 3, 290, 145, 0, 1719, 1720, 3, 256, 128, 0, 1720, 1726, 1, 0, 0, 0, 1721, 1722, 5, 323, 0, 0, 1722, 1723, 5, 27, 0, 0, 1723, 1724, 5, 539, 0, 0, 1724, 1726, 3, 256, 128, 0, 1725, 1716, 1, 0, 0, 0, 1725, 1721, 1, 0, 0, 0, 1726, 255, 1, 0, 0, 0, 1727, 1728, 5, 481, 0, 0, 1728, 1729, 5, 10, 0, 0, 1729, 1730, 5, 76, 0, 0, 1730, 1731, 5, 322, 0, 0, 1731, 257, 1, 0, 0, 0, 1732, 1733, 5, 435, 0, 0, 1733, 1734, 3, 290, 145, 0, 1734, 259, 1, 0, 0, 0, 1735, 1736, 3, 262, 131, 0, 1736, 261, 1, 0, 0, 0, 1737, 1738, 6, 131, -1, 0, 1738, 1739, 5, 242, 0, 0, 1739, 1750, 3, 262, 131, 6, 1740, 1741, 5, 133, 0, 0, 1741, 1742, 5, 517, 0, 0, 1742, 1743, 3, 160, 80, 0, 1743, 1744, 5, 518, 0, 0, 1744, 1750, 1, 0, 0, 0, 1745, 1747, 3, 268, 134, 0, 1746, 1748, 3, 264, 132, 0, 1747, 1746, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1737, 1, 0, 0, 0, 1749, 1740, 1, 0, 0, 0, 1749, 1745, 1, 0, 0, 0, 1750, 1765, 1, 0, 0, 0, 1751, 1752, 10, 3, 0, 0, 1752, 1753, 5, 10, 0, 0, 1753, 1764, 3, 262, 131, 4, 1754, 1755, 10, 2, 0, 0, 1755, 1756, 5, 258, 0, 0, 1756, 1764, 3, 262, 131, 3, 1757, 1758, 10, 1, 0, 0, 1758, 1760, 5, 184, 0, 0, 1759, 1761, 5, 242, 0, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1764, 7, 27, 0, 0, 1763, 1751, 1, 0, 0, 0, 1763, 1754, 1, 0, 0, 0, 1763, 1757, 1, 0, 0, 0, 1764, 1767, 1, 0, 0, 0, 1765, 1763, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 263, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1768, 1770, 5, 242, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 5, 27, 0, 0, 1772, 1774, 7, 28, 0, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 3, 268, 134, 0, 1776, 1777, 5, 10, 0, 0, 1777, 1778, 3, 268, 134, 0, 1778, 1843, 1, 0, 0, 0, 1779, 1781, 5, 242, 0, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 5, 170, 0, 0, 1783, 1784, 5, 517, 0, 0, 1784, 1789, 3, 260, 130, 0, 1785, 1786, 5, 521, 0, 0, 1786, 1788, 3, 260, 130, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1791, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1792, 1793, 5, 518, 0, 0, 1793, 1843, 1, 0, 0, 0, 1794, 1796, 5, 242, 0, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 5, 170, 0, 0, 1798, 1799, 5, 517, 0, 0, 1799, 1800, 3, 160, 80, 0, 1800, 1801, 5, 518, 0, 0, 1801, 1843, 1, 0, 0, 0, 1802, 1803, 5, 133, 0, 0, 1803, 1804, 5, 517, 0, 0, 1804, 1805, 3, 160, 80, 0, 1805, 1806, 5, 518, 0, 0, 1806, 1843, 1, 0, 0, 0, 1807, 1809, 5, 242, 0, 0, 1808, 1807, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 5, 319, 0, 0, 1811, 1843, 3, 268, 134, 0, 1812, 1843, 3, 266, 133, 0, 1813, 1815, 5, 184, 0, 0, 1814, 1816, 5, 242, 0, 0, 1815, 1814, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1843, 7, 27, 0, 0, 1818, 1820, 5, 184, 0, 0, 1819, 1821, 5, 242, 0, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 5, 113, 0, 0, 1823, 1824, 5, 151, 0, 0, 1824, 1843, 3, 268, 134, 0, 1825, 1827, 5, 242, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 5, 343, 0, 0, 1829, 1830, 5, 389, 0, 0, 1830, 1833, 3, 268, 134, 0, 1831, 1832, 5, 127, 0, 0, 1832, 1834, 3, 366, 183, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1843, 1, 0, 0, 0, 1835, 1836, 5, 184, 0, 0, 1836, 1840, 5, 186, 0, 0, 1837, 1841, 5, 414, 0, 0, 1838, 1841, 5, 13, 0, 0, 1839, 1841, 3, 312, 156, 0, 1840, 1837, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1769, 1, 0, 0, 0, 1842, 1780, 1, 0, 0, 0, 1842, 1795, 1, 0, 0, 0, 1842, 1802, 1, 0, 0, 0, 1842, 1808, 1, 0, 0, 0, 1842, 1812, 1, 0, 0, 0, 1842, 1813, 1, 0, 0, 0, 1842, 1818, 1, 0, 0, 0, 1842, 1826, 1, 0, 0, 0, 1842, 1835, 1, 0, 0, 0, 1843, 265, 1, 0, 0, 0, 1844, 1846, 5, 242, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 5, 203, 0, 0, 1848, 1862, 7, 29, 0, 0, 1849, 1850, 5, 517, 0, 0, 1850, 1863, 5, 518, 0, 0, 1851, 1852, 5, 517, 0, 0, 1852, 1857, 3, 260, 130, 0, 1853, 1854, 5, 521, 0, 0, 1854, 1856, 3, 260, 130, 0, 1855, 1853, 1, 0, 0, 0, 1856, 1859, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1860, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1861, 5, 518, 0, 0, 1861, 1863, 1, 0, 0, 0, 1862, 1849, 1, 0, 0, 0, 1862, 1851, 1, 0, 0, 0, 1863, 1874, 1, 0, 0, 0, 1864, 1866, 5, 242, 0, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 5, 203, 0, 0, 1868, 1871, 3, 268, 134, 0, 1869, 1870, 5, 127, 0, 0, 1870, 1872, 3, 366, 183, 0, 1871, 1869, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1874, 1, 0, 0, 0, 1873, 1845, 1, 0, 0, 0, 1873, 1865, 1, 0, 0, 0, 1874, 267, 1, 0, 0, 0, 1875, 1876, 6, 134, -1, 0, 1876, 1880, 3, 272, 136, 0, 1877, 1878, 7, 30, 0, 0, 1878, 1880, 3, 268, 134, 7, 1879, 1875, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 1902, 1, 0, 0, 0, 1881, 1882, 10, 6, 0, 0, 1882, 1883, 7, 31, 0, 0, 1883, 1901, 3, 268, 134, 7, 1884, 1885, 10, 5, 0, 0, 1885, 1886, 7, 32, 0, 0, 1886, 1901, 3, 268, 134, 6, 1887, 1888, 10, 4, 0, 0, 1888, 1889, 5, 512, 0, 0, 1889, 1901, 3, 268, 134, 5, 1890, 1891, 10, 3, 0, 0, 1891, 1892, 5, 513, 0, 0, 1892, 1901, 3, 268, 134, 4, 1893, 1894, 10, 2, 0, 0, 1894, 1895, 5, 511, 0, 0, 1895, 1901, 3, 268, 134, 3, 1896, 1897, 10, 1, 0, 0, 1897, 1898, 3, 354, 177, 0, 1898, 1899, 3, 268, 134, 2, 1899, 1901, 1, 0, 0, 0, 1900, 1881, 1, 0, 0, 0, 1900, 1884, 1, 0, 0, 0, 1900, 1887, 1, 0, 0, 0, 1900, 1890, 1, 0, 0, 0, 1900, 1893, 1, 0, 0, 0, 1900, 1896, 1, 0, 0, 0, 1901, 1904, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 269, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1905, 1925, 3, 380, 190, 0, 1906, 1925, 3, 278, 139, 0, 1907, 1908, 3, 280, 140, 0, 1908, 1920, 5, 517, 0, 0, 1909, 1911, 3, 372, 186, 0, 1910, 1909, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1917, 3, 282, 141, 0, 1913, 1914, 5, 521, 0, 0, 1914, 1916, 3, 282, 141, 0, 1915, 1913, 1, 0, 0, 0, 1916, 1919, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1921, 1, 0, 0, 0, 1919, 1917, 1, 0, 0, 0, 1920, 1910, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 5, 518, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1905, 1, 0, 0, 0, 1924, 1906, 1, 0, 0, 0, 1924, 1907, 1, 0, 0, 0, 1925, 271, 1, 0, 0, 0, 1926, 1927, 6, 136, -1, 0, 1927, 1929, 5, 40, 0, 0, 1928, 1930, 3, 318, 159, 0, 1929, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1934, 5, 120, 0, 0, 1934, 1936, 3, 260, 130, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1938, 5, 122, 0, 0, 1938, 2002, 1, 0, 0, 0, 1939, 1940, 5, 40, 0, 0, 1940, 1942, 3, 260, 130, 0, 1941, 1943, 3, 318, 159, 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, 1948, 1, 0, 0, 0, 1946, 1947, 5, 120, 0, 0, 1947, 1949, 3, 260, 130, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 5, 122, 0, 0, 1951, 2002, 1, 0, 0, 0, 1952, 1953, 5, 41, 0, 0, 1953, 1954, 5, 517, 0, 0, 1954, 1955, 3, 260, 130, 0, 1955, 1956, 5, 17, 0, 0, 1956, 1957, 3, 58, 29, 0, 1957, 1958, 5, 518, 0, 0, 1958, 2002, 1, 0, 0, 0, 1959, 1960, 5, 458, 0, 0, 1960, 1961, 5, 517, 0, 0, 1961, 1964, 3, 260, 130, 0, 1962, 1963, 5, 462, 0, 0, 1963, 1965, 5, 477, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 5, 518, 0, 0, 1967, 2002, 1, 0, 0, 0, 1968, 1969, 5, 468, 0, 0, 1969, 1970, 5, 517, 0, 0, 1970, 1973, 3, 260, 130, 0, 1971, 1972, 5, 462, 0, 0, 1972, 1974, 5, 477, 0, 0, 1973, 1971, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 5, 518, 0, 0, 1976, 2002, 1, 0, 0, 0, 1977, 1978, 5, 282, 0, 0, 1978, 1979, 5, 517, 0, 0, 1979, 1980, 3, 268, 134, 0, 1980, 1981, 5, 170, 0, 0, 1981, 1982, 3, 268, 134, 0, 1982, 1983, 5, 518, 0, 0, 1983, 2002, 1, 0, 0, 0, 1984, 2002, 3, 362, 181, 0, 1985, 2002, 5, 528, 0, 0, 1986, 1987, 3, 336, 168, 0, 1987, 1988, 5, 514, 0, 0, 1988, 1989, 5, 528, 0, 0, 1989, 2002, 1, 0, 0, 0, 1990, 1991, 5, 517, 0, 0, 1991, 1992, 3, 160, 80, 0, 1992, 1993, 5, 518, 0, 0, 1993, 2002, 1, 0, 0, 0, 1994, 2002, 3, 270, 135, 0, 1995, 2002, 3, 54, 27, 0, 1996, 2002, 3, 284, 142, 0, 1997, 1998, 5, 517, 0, 0, 1998, 1999, 3, 260, 130, 0, 1999, 2000, 5, 518, 0, 0, 2000, 2002, 1, 0, 0, 0, 2001, 1926, 1, 0, 0, 0, 2001, 1939, 1, 0, 0, 0, 2001, 1952, 1, 0, 0, 0, 2001, 1959, 1, 0, 0, 0, 2001, 1968, 1, 0, 0, 0, 2001, 1977, 1, 0, 0, 0, 2001, 1984, 1, 0, 0, 0, 2001, 1985, 1, 0, 0, 0, 2001, 1986, 1, 0, 0, 0, 2001, 1990, 1, 0, 0, 0, 2001, 1994, 1, 0, 0, 0, 2001, 1995, 1, 0, 0, 0, 2001, 1996, 1, 0, 0, 0, 2001, 1997, 1, 0, 0, 0, 2002, 2010, 1, 0, 0, 0, 2003, 2004, 10, 4, 0, 0, 2004, 2005, 5, 515, 0, 0, 2005, 2006, 3, 268, 134, 0, 2006, 2007, 5, 516, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2003, 1, 0, 0, 0, 2009, 2012, 1, 0, 0, 0, 2010, 2008, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 273, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2013, 2014, 3, 336, 168, 0, 2014, 275, 1, 0, 0, 0, 2015, 2020, 3, 384, 192, 0, 2016, 2020, 3, 380, 190, 0, 2017, 2020, 3, 382, 191, 0, 2018, 2020, 3, 336, 168, 0, 2019, 2015, 1, 0, 0, 0, 2019, 2016, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2019, 2018, 1, 0, 0, 0, 2020, 277, 1, 0, 0, 0, 2021, 2022, 3, 382, 191, 0, 2022, 2023, 5, 538, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2026, 3, 290, 145, 0, 2025, 2021, 1, 0, 0, 0, 2025, 2024, 1, 0, 0, 0, 2026, 279, 1, 0, 0, 0, 2027, 2030, 3, 384, 192, 0, 2028, 2030, 3, 336, 168, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, 1, 0, 0, 0, 2030, 281, 1, 0, 0, 0, 2031, 2036, 3, 378, 189, 0, 2032, 2036, 3, 376, 188, 0, 2033, 2036, 3, 374, 187, 0, 2034, 2036, 3, 260, 130, 0, 2035, 2031, 1, 0, 0, 0, 2035, 2032, 1, 0, 0, 0, 2035, 2033, 1, 0, 0, 0, 2035, 2034, 1, 0, 0, 0, 2036, 283, 1, 0, 0, 0, 2037, 2038, 3, 336, 168, 0, 2038, 285, 1, 0, 0, 0, 2039, 2040, 3, 312, 156, 0, 2040, 287, 1, 0, 0, 0, 2041, 2044, 3, 312, 156, 0, 2042, 2044, 3, 284, 142, 0, 2043, 2041, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 289, 1, 0, 0, 0, 2045, 2048, 5, 182, 0, 0, 2046, 2049, 3, 292, 146, 0, 2047, 2049, 3, 296, 148, 0, 2048, 2046, 1, 0, 0, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 291, 1, 0, 0, 0, 2050, 2052, 3, 294, 147, 0, 2051, 2053, 3, 298, 149, 0, 2052, 2051, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 293, 1, 0, 0, 0, 2054, 2055, 3, 300, 150, 0, 2055, 2056, 3, 376, 188, 0, 2056, 2058, 1, 0, 0, 0, 2057, 2054, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 295, 1, 0, 0, 0, 2061, 2064, 3, 298, 149, 0, 2062, 2065, 3, 294, 147, 0, 2063, 2065, 3, 298, 149, 0, 2064, 2062, 1, 0, 0, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 297, 1, 0, 0, 0, 2066, 2067, 3, 300, 150, 0, 2067, 2068, 3, 376, 188, 0, 2068, 2069, 5, 389, 0, 0, 2069, 2070, 3, 376, 188, 0, 2070, 299, 1, 0, 0, 0, 2071, 2073, 7, 33, 0, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2077, 7, 34, 0, 0, 2075, 2077, 5, 538, 0, 0, 2076, 2072, 1, 0, 0, 0, 2076, 2075, 1, 0, 0, 0, 2077, 301, 1, 0, 0, 0, 2078, 2080, 5, 17, 0, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2083, 3, 312, 156, 0, 2082, 2084, 3, 308, 154, 0, 2083, 2082, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 303, 1, 0, 0, 0, 2085, 2086, 3, 312, 156, 0, 2086, 2087, 3, 306, 153, 0, 2087, 305, 1, 0, 0, 0, 2088, 2089, 5, 222, 0, 0, 2089, 2091, 3, 312, 156, 0, 2090, 2088, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2096, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2090, 1, 0, 0, 0, 2095, 2094, 1, 0, 0, 0, 2096, 307, 1, 0, 0, 0, 2097, 2098, 5, 517, 0, 0, 2098, 2099, 3, 310, 155, 0, 2099, 2100, 5, 518, 0, 0, 2100, 309, 1, 0, 0, 0, 2101, 2106, 3, 312, 156, 0, 2102, 2103, 5, 521, 0, 0, 2103, 2105, 3, 312, 156, 0, 2104, 2102, 1, 0, 0, 0, 2105, 2108, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 311, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2109, 2113, 3, 314, 157, 0, 2110, 2113, 3, 316, 158, 0, 2111, 2113, 3, 386, 193, 0, 2112, 2109, 1, 0, 0, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2111, 1, 0, 0, 0, 2113, 313, 1, 0, 0, 0, 2114, 2115, 7, 35, 0, 0, 2115, 315, 1, 0, 0, 0, 2116, 2117, 5, 538, 0, 0, 2117, 317, 1, 0, 0, 0, 2118, 2119, 5, 429, 0, 0, 2119, 2120, 3, 260, 130, 0, 2120, 2121, 5, 377, 0, 0, 2121, 2122, 3, 260, 130, 0, 2122, 319, 1, 0, 0, 0, 2123, 2124, 3, 312, 156, 0, 2124, 321, 1, 0, 0, 0, 2125, 2126, 3, 312, 156, 0, 2126, 323, 1, 0, 0, 0, 2127, 2130, 3, 312, 156, 0, 2128, 2129, 5, 514, 0, 0, 2129, 2131, 3, 312, 156, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 325, 1, 0, 0, 0, 2132, 2135, 3, 312, 156, 0, 2133, 2134, 5, 514, 0, 0, 2134, 2136, 3, 312, 156, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 327, 1, 0, 0, 0, 2137, 2140, 3, 312, 156, 0, 2138, 2139, 5, 514, 0, 0, 2139, 2141, 3, 312, 156, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2150, 1, 0, 0, 0, 2142, 2143, 3, 312, 156, 0, 2143, 2144, 5, 514, 0, 0, 2144, 2147, 3, 312, 156, 0, 2145, 2146, 5, 514, 0, 0, 2146, 2148, 3, 312, 156, 0, 2147, 2145, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2137, 1, 0, 0, 0, 2149, 2142, 1, 0, 0, 0, 2150, 329, 1, 0, 0, 0, 2151, 2154, 3, 312, 156, 0, 2152, 2153, 5, 514, 0, 0, 2153, 2155, 3, 312, 156, 0, 2154, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2164, 1, 0, 0, 0, 2156, 2157, 3, 312, 156, 0, 2157, 2158, 5, 514, 0, 0, 2158, 2161, 3, 312, 156, 0, 2159, 2160, 5, 514, 0, 0, 2160, 2162, 3, 312, 156, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2151, 1, 0, 0, 0, 2163, 2156, 1, 0, 0, 0, 2164, 331, 1, 0, 0, 0, 2165, 2168, 3, 312, 156, 0, 2166, 2167, 5, 514, 0, 0, 2167, 2169, 3, 312, 156, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2178, 1, 0, 0, 0, 2170, 2171, 3, 312, 156, 0, 2171, 2172, 5, 514, 0, 0, 2172, 2175, 3, 312, 156, 0, 2173, 2174, 5, 514, 0, 0, 2174, 2176, 3, 312, 156, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 1, 0, 0, 0, 2177, 2165, 1, 0, 0, 0, 2177, 2170, 1, 0, 0, 0, 2178, 333, 1, 0, 0, 0, 2179, 2182, 3, 312, 156, 0, 2180, 2181, 5, 514, 0, 0, 2181, 2183, 3, 312, 156, 0, 2182, 2180, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2192, 1, 0, 0, 0, 2184, 2185, 3, 312, 156, 0, 2185, 2186, 5, 514, 0, 0, 2186, 2189, 3, 312, 156, 0, 2187, 2188, 5, 514, 0, 0, 2188, 2190, 3, 312, 156, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 1, 0, 0, 0, 2191, 2179, 1, 0, 0, 0, 2191, 2184, 1, 0, 0, 0, 2192, 335, 1, 0, 0, 0, 2193, 2198, 3, 312, 156, 0, 2194, 2195, 5, 514, 0, 0, 2195, 2197, 3, 312, 156, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2199, 337, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2201, 2202, 5, 434, 0, 0, 2202, 2203, 3, 344, 172, 0, 2203, 339, 1, 0, 0, 0, 2204, 2205, 5, 167, 0, 0, 2205, 2206, 5, 242, 0, 0, 2206, 2207, 5, 133, 0, 0, 2207, 341, 1, 0, 0, 0, 2208, 2209, 5, 167, 0, 0, 2209, 2210, 5, 133, 0, 0, 2210, 343, 1, 0, 0, 0, 2211, 2212, 5, 517, 0, 0, 2212, 2217, 3, 346, 173, 0, 2213, 2214, 5, 521, 0, 0, 2214, 2216, 3, 346, 173, 0, 2215, 2213, 1, 0, 0, 0, 2216, 2219, 1, 0, 0, 0, 2217, 2215, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2220, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2221, 5, 518, 0, 0, 2221, 345, 1, 0, 0, 0, 2222, 2227, 3, 348, 174, 0, 2223, 2225, 5, 506, 0, 0, 2224, 2223, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 3, 350, 175, 0, 2227, 2224, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 347, 1, 0, 0, 0, 2229, 2233, 3, 312, 156, 0, 2230, 2233, 3, 284, 142, 0, 2231, 2233, 5, 538, 0, 0, 2232, 2229, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2231, 1, 0, 0, 0, 2233, 349, 1, 0, 0, 0, 2234, 2239, 5, 539, 0, 0, 2235, 2239, 5, 540, 0, 0, 2236, 2239, 3, 370, 185, 0, 2237, 2239, 5, 538, 0, 0, 2238, 2234, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2238, 2237, 1, 0, 0, 0, 2239, 351, 1, 0, 0, 0, 2240, 2247, 5, 10, 0, 0, 2241, 2242, 5, 512, 0, 0, 2242, 2247, 5, 512, 0, 0, 2243, 2247, 5, 258, 0, 0, 2244, 2245, 5, 511, 0, 0, 2245, 2247, 5, 511, 0, 0, 2246, 2240, 1, 0, 0, 0, 2246, 2241, 1, 0, 0, 0, 2246, 2243, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2247, 353, 1, 0, 0, 0, 2248, 2263, 5, 506, 0, 0, 2249, 2263, 5, 507, 0, 0, 2250, 2263, 5, 508, 0, 0, 2251, 2252, 5, 508, 0, 0, 2252, 2263, 5, 506, 0, 0, 2253, 2254, 5, 507, 0, 0, 2254, 2263, 5, 506, 0, 0, 2255, 2256, 5, 508, 0, 0, 2256, 2263, 5, 507, 0, 0, 2257, 2258, 5, 509, 0, 0, 2258, 2263, 5, 506, 0, 0, 2259, 2260, 5, 508, 0, 0, 2260, 2261, 5, 506, 0, 0, 2261, 2263, 5, 507, 0, 0, 2262, 2248, 1, 0, 0, 0, 2262, 2249, 1, 0, 0, 0, 2262, 2250, 1, 0, 0, 0, 2262, 2251, 1, 0, 0, 0, 2262, 2253, 1, 0, 0, 0, 2262, 2255, 1, 0, 0, 0, 2262, 2257, 1, 0, 0, 0, 2262, 2259, 1, 0, 0, 0, 2263, 355, 1, 0, 0, 0, 2264, 2265, 5, 508, 0, 0, 2265, 2272, 5, 508, 0, 0, 2266, 2267, 5, 507, 0, 0, 2267, 2272, 5, 507, 0, 0, 2268, 2272, 5, 512, 0, 0, 2269, 2272, 5, 513, 0, 0, 2270, 2272, 5, 511, 0, 0, 2271, 2264, 1, 0, 0, 0, 2271, 2266, 1, 0, 0, 0, 2271, 2268, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2270, 1, 0, 0, 0, 2272, 357, 1, 0, 0, 0, 2273, 2274, 7, 36, 0, 0, 2274, 359, 1, 0, 0, 0, 2275, 2276, 7, 37, 0, 0, 2276, 361, 1, 0, 0, 0, 2277, 2292, 3, 290, 145, 0, 2278, 2292, 3, 364, 182, 0, 2279, 2292, 3, 366, 183, 0, 2280, 2282, 5, 530, 0, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2292, 3, 368, 184, 0, 2284, 2292, 3, 370, 185, 0, 2285, 2292, 5, 540, 0, 0, 2286, 2292, 5, 541, 0, 0, 2287, 2289, 5, 242, 0, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2292, 5, 245, 0, 0, 2291, 2277, 1, 0, 0, 0, 2291, 2278, 1, 0, 0, 0, 2291, 2279, 1, 0, 0, 0, 2291, 2281, 1, 0, 0, 0, 2291, 2284, 1, 0, 0, 0, 2291, 2285, 1, 0, 0, 0, 2291, 2286, 1, 0, 0, 0, 2291, 2288, 1, 0, 0, 0, 2292, 363, 1, 0, 0, 0, 2293, 2294, 3, 374, 187, 0, 2294, 2295, 3, 366, 183, 0, 2295, 365, 1, 0, 0, 0, 2296, 2297, 5, 538, 0, 0, 2297, 367, 1, 0, 0, 0, 2298, 2299, 5, 539, 0, 0, 2299, 369, 1, 0, 0, 0, 2300, 2301, 7, 38, 0, 0, 2301, 371, 1, 0, 0, 0, 2302, 2303, 7, 39, 0, 0, 2303, 373, 1, 0, 0, 0, 2304, 2305, 7, 40, 0, 0, 2305, 375, 1, 0, 0, 0, 2306, 2307, 7, 41, 0, 0, 2307, 377, 1, 0, 0, 0, 2308, 2309, 7, 42, 0, 0, 2309, 379, 1, 0, 0, 0, 2310, 2311, 7, 43, 0, 0, 2311, 381, 1, 0, 0, 0, 2312, 2313, 7, 44, 0, 0, 2313, 383, 1, 0, 0, 0, 2314, 2315, 7, 45, 0, 0, 2315, 385, 1, 0, 0, 0, 2316, 2317, 7, 46, 0, 0, 2317, 387, 1, 0, 0, 0, 274, 391, 398, 401, 415, 433, 437, 446, 451, 458, 469, 478, 490, 493, 500, 503, 511, 515, 520, 523, 530, 538, 542, 554, 562, 566, 598, 601, 606, 610, 614, 618, 627, 632, 636, 640, 645, 648, 652, 657, 663, 668, 673, 677, 681, 685, 695, 703, 707, 711, 715, 719, 723, 727, 731, 735, 737, 747, 755, 779, 793, 798, 802, 808, 811, 814, 821, 824, 833, 845, 869, 881, 886, 890, 898, 902, 908, 918, 923, 929, 933, 937, 941, 950, 954, 961, 964, 974, 982, 990, 994, 1009, 1028, 1039, 1043, 1050, 1055, 1061, 1065, 1072, 1076, 1080, 1084, 1092, 1096, 1101, 1107, 1113, 1116, 1120, 1131, 1140, 1147, 1158, 1170, 1185, 1188, 1192, 1195, 1197, 1202, 1206, 1209, 1213, 1222, 1231, 1241, 1246, 1257, 1260, 1263, 1266, 1269, 1275, 1279, 1287, 1290, 1295, 1298, 1302, 1305, 1307, 1321, 1332, 1337, 1345, 1348, 1351, 1356, 1358, 1360, 1365, 1368, 1372, 1376, 1385, 1396, 1423, 1445, 1458, 1470, 1483, 1495, 1507, 1513, 1540, 1548, 1552, 1555, 1558, 1565, 1568, 1571, 1574, 1577, 1580, 1585, 1588, 1597, 1602, 1606, 1611, 1617, 1622, 1626, 1645, 1653, 1661, 1665, 1669, 1679, 1705, 1713, 1725, 1747, 1749, 1760, 1763, 1765, 1769, 1773, 1780, 1789, 1795, 1808, 1815, 1820, 1826, 1833, 1840, 1842, 1845, 1857, 1862, 1865, 1871, 1873, 1879, 1900, 1902, 1910, 1917, 1920, 1924, 1931, 1935, 1944, 1948, 1964, 1973, 2001, 2010, 2019, 2025, 2029, 2035, 2043, 2048, 2052, 2059, 2064, 2072, 2076, 2079, 2083, 2092, 2095, 2106, 2112, 2130, 2135, 2140, 2147, 2149, 2154, 2161, 2163, 2168, 2175, 2177, 2182, 2189, 2191, 2198, 2217, 2224, 2227, 2232, 2238, 2246, 2262, 2271, 2281, 2288, 2291] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 7c2f5de7..d588bc49 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -636,122 +636,123 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_insertPartitionDefinition = 74; public static readonly RULE_valuesDefinition = 75; public static readonly RULE_valuesRowDefinition = 76; - public static readonly RULE_insertMulStatementCompatibility = 77; - public static readonly RULE_insertMulStatement = 78; - public static readonly RULE_queryStatement = 79; - public static readonly RULE_valuesClause = 80; - public static readonly RULE_withClause = 81; - public static readonly RULE_withItem = 82; - public static readonly RULE_withItemName = 83; - public static readonly RULE_selectStatement = 84; - public static readonly RULE_selectClause = 85; - public static readonly RULE_projectItemDefinition = 86; - public static readonly RULE_overWindowItem = 87; - public static readonly RULE_fromClause = 88; - public static readonly RULE_tableExpression = 89; - public static readonly RULE_tableReference = 90; - public static readonly RULE_tablePrimary = 91; - public static readonly RULE_systemTimePeriod = 92; - public static readonly RULE_dateTimeExpression = 93; - public static readonly RULE_inlineDataValueClause = 94; - public static readonly RULE_windowTVFClause = 95; - public static readonly RULE_windowTVFExpression = 96; - public static readonly RULE_windowTVFName = 97; - public static readonly RULE_windowTVFParam = 98; - public static readonly RULE_timeIntervalParamName = 99; - public static readonly RULE_columnDescriptor = 100; - public static readonly RULE_joinCondition = 101; - public static readonly RULE_whereClause = 102; - public static readonly RULE_groupByClause = 103; - public static readonly RULE_groupItemDefinition = 104; - public static readonly RULE_groupingSets = 105; - public static readonly RULE_groupingSetsNotationName = 106; - public static readonly RULE_groupWindowFunction = 107; - public static readonly RULE_groupWindowFunctionName = 108; - public static readonly RULE_timeAttrColumn = 109; - public static readonly RULE_havingClause = 110; - public static readonly RULE_windowClause = 111; - public static readonly RULE_namedWindow = 112; - public static readonly RULE_windowSpec = 113; - public static readonly RULE_matchRecognizeClause = 114; - public static readonly RULE_orderByClause = 115; - public static readonly RULE_orderItemDefinition = 116; - public static readonly RULE_limitClause = 117; - public static readonly RULE_partitionByClause = 118; - public static readonly RULE_quantifiers = 119; - public static readonly RULE_measuresClause = 120; - public static readonly RULE_patternDefinition = 121; - public static readonly RULE_patternVariable = 122; - public static readonly RULE_outputMode = 123; - public static readonly RULE_afterMatchStrategy = 124; - public static readonly RULE_patternVariablesDefinition = 125; - public static readonly RULE_windowFrame = 126; - public static readonly RULE_frameBound = 127; - public static readonly RULE_withinClause = 128; - public static readonly RULE_expression = 129; - public static readonly RULE_booleanExpression = 130; - public static readonly RULE_predicate = 131; - public static readonly RULE_likePredicate = 132; - public static readonly RULE_valueExpression = 133; - public static readonly RULE_functionCallExpression = 134; - public static readonly RULE_primaryExpression = 135; - public static readonly RULE_functionNameCreate = 136; - public static readonly RULE_functionName = 137; - public static readonly RULE_functionNameAndParams = 138; - public static readonly RULE_functionNameWithParams = 139; - public static readonly RULE_functionParam = 140; - public static readonly RULE_dereferenceDefinition = 141; - public static readonly RULE_correlationName = 142; - public static readonly RULE_qualifiedName = 143; - public static readonly RULE_timeIntervalExpression = 144; - public static readonly RULE_errorCapturingMultiUnitsInterval = 145; - public static readonly RULE_multiUnitsInterval = 146; - public static readonly RULE_errorCapturingUnitToUnitInterval = 147; - public static readonly RULE_unitToUnitInterval = 148; - public static readonly RULE_intervalValue = 149; - public static readonly RULE_tableAlias = 150; - public static readonly RULE_errorCapturingIdentifier = 151; - public static readonly RULE_errorCapturingIdentifierExtra = 152; - public static readonly RULE_identifierList = 153; - public static readonly RULE_identifierSeq = 154; - public static readonly RULE_identifier = 155; - public static readonly RULE_unquotedIdentifier = 156; - public static readonly RULE_quotedIdentifier = 157; - public static readonly RULE_whenClause = 158; - public static readonly RULE_catalogPath = 159; - public static readonly RULE_catalogPathCreate = 160; - public static readonly RULE_databasePath = 161; - public static readonly RULE_databasePathCreate = 162; - public static readonly RULE_tablePathCreate = 163; - public static readonly RULE_tablePath = 164; - public static readonly RULE_viewPath = 165; - public static readonly RULE_viewPathCreate = 166; - public static readonly RULE_uid = 167; - public static readonly RULE_withOption = 168; - public static readonly RULE_ifNotExists = 169; - public static readonly RULE_ifExists = 170; - public static readonly RULE_tablePropertyList = 171; - public static readonly RULE_tableProperty = 172; - public static readonly RULE_tablePropertyKey = 173; - public static readonly RULE_tablePropertyValue = 174; - public static readonly RULE_logicalOperator = 175; - public static readonly RULE_comparisonOperator = 176; - public static readonly RULE_bitOperator = 177; - public static readonly RULE_mathOperator = 178; - public static readonly RULE_unaryOperator = 179; - public static readonly RULE_constant = 180; - public static readonly RULE_timePointLiteral = 181; - public static readonly RULE_stringLiteral = 182; - public static readonly RULE_decimalLiteral = 183; - public static readonly RULE_booleanLiteral = 184; - public static readonly RULE_setQuantifier = 185; - public static readonly RULE_timePointUnit = 186; - public static readonly RULE_timeIntervalUnit = 187; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 188; - public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 189; - public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 190; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 191; - public static readonly RULE_nonReservedKeywords = 192; + public static readonly RULE_valueDefinition = 77; + public static readonly RULE_insertMulStatementCompatibility = 78; + public static readonly RULE_insertMulStatement = 79; + public static readonly RULE_queryStatement = 80; + public static readonly RULE_valuesClause = 81; + public static readonly RULE_withClause = 82; + public static readonly RULE_withItem = 83; + public static readonly RULE_withItemName = 84; + public static readonly RULE_selectStatement = 85; + public static readonly RULE_selectClause = 86; + public static readonly RULE_projectItemDefinition = 87; + public static readonly RULE_overWindowItem = 88; + public static readonly RULE_fromClause = 89; + public static readonly RULE_tableExpression = 90; + public static readonly RULE_tableReference = 91; + public static readonly RULE_tablePrimary = 92; + public static readonly RULE_systemTimePeriod = 93; + public static readonly RULE_dateTimeExpression = 94; + public static readonly RULE_inlineDataValueClause = 95; + public static readonly RULE_windowTVFClause = 96; + public static readonly RULE_windowTVFExpression = 97; + public static readonly RULE_windowTVFName = 98; + public static readonly RULE_windowTVFParam = 99; + public static readonly RULE_timeIntervalParamName = 100; + public static readonly RULE_columnDescriptor = 101; + public static readonly RULE_joinCondition = 102; + public static readonly RULE_whereClause = 103; + public static readonly RULE_groupByClause = 104; + public static readonly RULE_groupItemDefinition = 105; + public static readonly RULE_groupingSets = 106; + public static readonly RULE_groupingSetsNotationName = 107; + public static readonly RULE_groupWindowFunction = 108; + public static readonly RULE_groupWindowFunctionName = 109; + public static readonly RULE_timeAttrColumn = 110; + public static readonly RULE_havingClause = 111; + public static readonly RULE_windowClause = 112; + public static readonly RULE_namedWindow = 113; + public static readonly RULE_windowSpec = 114; + public static readonly RULE_matchRecognizeClause = 115; + public static readonly RULE_orderByClause = 116; + public static readonly RULE_orderItemDefinition = 117; + public static readonly RULE_limitClause = 118; + public static readonly RULE_partitionByClause = 119; + public static readonly RULE_quantifiers = 120; + public static readonly RULE_measuresClause = 121; + public static readonly RULE_patternDefinition = 122; + public static readonly RULE_patternVariable = 123; + public static readonly RULE_outputMode = 124; + public static readonly RULE_afterMatchStrategy = 125; + public static readonly RULE_patternVariablesDefinition = 126; + public static readonly RULE_windowFrame = 127; + public static readonly RULE_frameBound = 128; + public static readonly RULE_withinClause = 129; + public static readonly RULE_expression = 130; + public static readonly RULE_booleanExpression = 131; + public static readonly RULE_predicate = 132; + public static readonly RULE_likePredicate = 133; + public static readonly RULE_valueExpression = 134; + public static readonly RULE_functionCallExpression = 135; + public static readonly RULE_primaryExpression = 136; + public static readonly RULE_functionNameCreate = 137; + public static readonly RULE_functionName = 138; + public static readonly RULE_functionNameAndParams = 139; + public static readonly RULE_functionNameWithParams = 140; + public static readonly RULE_functionParam = 141; + public static readonly RULE_dereferenceDefinition = 142; + public static readonly RULE_correlationName = 143; + public static readonly RULE_qualifiedName = 144; + public static readonly RULE_timeIntervalExpression = 145; + public static readonly RULE_errorCapturingMultiUnitsInterval = 146; + public static readonly RULE_multiUnitsInterval = 147; + public static readonly RULE_errorCapturingUnitToUnitInterval = 148; + public static readonly RULE_unitToUnitInterval = 149; + public static readonly RULE_intervalValue = 150; + public static readonly RULE_tableAlias = 151; + public static readonly RULE_errorCapturingIdentifier = 152; + public static readonly RULE_errorCapturingIdentifierExtra = 153; + public static readonly RULE_identifierList = 154; + public static readonly RULE_identifierSeq = 155; + public static readonly RULE_identifier = 156; + public static readonly RULE_unquotedIdentifier = 157; + public static readonly RULE_quotedIdentifier = 158; + public static readonly RULE_whenClause = 159; + public static readonly RULE_catalogPath = 160; + public static readonly RULE_catalogPathCreate = 161; + public static readonly RULE_databasePath = 162; + public static readonly RULE_databasePathCreate = 163; + public static readonly RULE_tablePathCreate = 164; + public static readonly RULE_tablePath = 165; + public static readonly RULE_viewPath = 166; + public static readonly RULE_viewPathCreate = 167; + public static readonly RULE_uid = 168; + public static readonly RULE_withOption = 169; + public static readonly RULE_ifNotExists = 170; + public static readonly RULE_ifExists = 171; + public static readonly RULE_tablePropertyList = 172; + public static readonly RULE_tableProperty = 173; + public static readonly RULE_tablePropertyKey = 174; + public static readonly RULE_tablePropertyValue = 175; + public static readonly RULE_logicalOperator = 176; + public static readonly RULE_comparisonOperator = 177; + public static readonly RULE_bitOperator = 178; + public static readonly RULE_mathOperator = 179; + public static readonly RULE_unaryOperator = 180; + public static readonly RULE_constant = 181; + public static readonly RULE_timePointLiteral = 182; + public static readonly RULE_stringLiteral = 183; + public static readonly RULE_decimalLiteral = 184; + public static readonly RULE_booleanLiteral = 185; + public static readonly RULE_setQuantifier = 186; + public static readonly RULE_timePointUnit = 187; + public static readonly RULE_timeIntervalUnit = 188; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 189; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 190; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 191; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 192; + public static readonly RULE_nonReservedKeywords = 193; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -985,7 +986,7 @@ export class FlinkSqlParser extends SQLParserBase { "addUnique", "notForced", "alterView", "alterDatabase", "alterFunction", "dropCatalog", "dropTable", "dropDatabase", "dropView", "dropFunction", "insertStatement", "insertSimpleStatement", "insertPartitionDefinition", - "valuesDefinition", "valuesRowDefinition", "insertMulStatementCompatibility", + "valuesDefinition", "valuesRowDefinition", "valueDefinition", "insertMulStatementCompatibility", "insertMulStatement", "queryStatement", "valuesClause", "withClause", "withItem", "withItemName", "selectStatement", "selectClause", "projectItemDefinition", "overWindowItem", "fromClause", "tableExpression", "tableReference", @@ -1039,21 +1040,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 389; + this.state = 391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 177 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 822083585) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 142606353) !== 0) || _la === 451 || _la === 469 || ((((_la - 490)) & ~0x1F) === 0 && ((1 << (_la - 490)) & 134219777) !== 0) || _la === 522) { { { - this.state = 386; + this.state = 388; this.singleStatement(); } } - this.state = 391; + this.state = 393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 392; + this.state = 394; this.match(FlinkSqlParser.EOF); } } @@ -1075,7 +1076,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 399; + this.state = 401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1101,14 +1102,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 394; - this.sqlStatement(); this.state = 396; + this.sqlStatement(); + this.state = 398; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 395; + this.state = 397; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1118,7 +1119,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 398; + this.state = 400; this.emptyStatement(); } break; @@ -1144,90 +1145,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 413; + this.state = 415; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 401; + this.state = 403; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 402; + this.state = 404; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 403; + this.state = 405; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 404; + this.state = 406; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 405; + this.state = 407; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 406; + this.state = 408; this.showStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 407; + this.state = 409; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 408; + this.state = 410; this.unloadStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 409; + this.state = 411; this.setStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 410; + this.state = 412; this.resetStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 411; + this.state = 413; this.jarStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 412; + this.state = 414; this.dtAddStatement(); } break; @@ -1253,7 +1254,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 415; + this.state = 417; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1275,104 +1276,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 431; + this.state = 433; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 417; + this.state = 419; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 418; + this.state = 420; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 419; + this.state = 421; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 420; + this.state = 422; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 421; + this.state = 423; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 422; + this.state = 424; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 423; + this.state = 425; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 424; + this.state = 426; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 425; + this.state = 427; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 426; + this.state = 428; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 427; + this.state = 429; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 428; + this.state = 430; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 429; + this.state = 431; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 430; + this.state = 432; this.dropFunction(); } break; @@ -1396,7 +1397,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 435; + this.state = 437; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1405,7 +1406,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 433; + this.state = 435; this.queryStatement(0); } break; @@ -1414,7 +1415,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 434; + this.state = 436; this.insertStatement(); } break; @@ -1443,7 +1444,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 437; + this.state = 439; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 451)) { this.errorHandler.recoverInline(this); @@ -1452,7 +1453,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 438; + this.state = 440; this.tablePath(); } } @@ -1476,24 +1477,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 440; + this.state = 442; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 444; + this.state = 446; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CHANGELOG_MODE: case FlinkSqlParser.KW_ESTIMATED_COST: case FlinkSqlParser.KW_JSON_EXECUTION_PLAN: { - this.state = 441; + this.state = 443; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 442; + this.state = 444; this.match(FlinkSqlParser.KW_PLAN); - this.state = 443; + this.state = 445; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1509,24 +1510,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 449; + this.state = 451; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 446; + this.state = 448; this.dmlStatement(); } break; case 2: { - this.state = 447; + this.state = 449; this.insertSimpleStatement(); } break; case 3: { - this.state = 448; + this.state = 450; this.insertMulStatement(); } break; @@ -1554,21 +1555,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 451; + this.state = 453; this.explainDetail(); - this.state = 456; + this.state = 458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 452; + this.state = 454; this.match(FlinkSqlParser.COMMA); - this.state = 453; + this.state = 455; this.explainDetail(); } } - this.state = 458; + this.state = 460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1595,7 +1596,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 459; + this.state = 461; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -1624,33 +1625,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 467; + this.state = 469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 461; + this.state = 463; this.match(FlinkSqlParser.KW_USE); - this.state = 462; + this.state = 464; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 463; + this.state = 465; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 464; + this.state = 466; this.match(FlinkSqlParser.KW_USE); - this.state = 465; + this.state = 467; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 466; + this.state = 468; this.useModuleStatement(); } break; @@ -1677,25 +1678,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 469; + this.state = 471; this.match(FlinkSqlParser.KW_USE); - this.state = 470; + this.state = 472; this.match(FlinkSqlParser.KW_MODULES); - this.state = 471; + this.state = 473; this.uid(); - this.state = 476; + this.state = 478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 472; + this.state = 474; this.match(FlinkSqlParser.COMMA); - this.state = 473; + this.state = 475; this.uid(); } } - this.state = 478; + this.state = 480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1720,15 +1721,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatement); let _la: number; try { - this.state = 521; + this.state = 523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 479; + this.state = 481; this.match(FlinkSqlParser.KW_SHOW); - this.state = 480; + this.state = 482; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 423 || _la === 465)) { this.errorHandler.recoverInline(this); @@ -1742,11 +1743,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 481; + this.state = 483; this.match(FlinkSqlParser.KW_SHOW); - this.state = 482; + this.state = 484; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 483; + this.state = 485; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 448)) { this.errorHandler.recoverInline(this); @@ -1760,16 +1761,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 484; + this.state = 486; this.match(FlinkSqlParser.KW_SHOW); - this.state = 485; + this.state = 487; this.match(FlinkSqlParser.KW_TABLES); - this.state = 488; + this.state = 490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 170) { { - this.state = 486; + this.state = 488; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1778,17 +1779,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 487; + this.state = 489; this.databasePath(); } } - this.state = 491; + this.state = 493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 490; + this.state = 492; this.likePredicate(); } } @@ -1798,11 +1799,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 493; + this.state = 495; this.match(FlinkSqlParser.KW_SHOW); - this.state = 494; + this.state = 496; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 495; + this.state = 497; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1811,28 +1812,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 498; + this.state = 500; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 496; + this.state = 498; this.viewPath(); } break; case 2: { - this.state = 497; + this.state = 499; this.tablePath(); } break; } - this.state = 501; + this.state = 503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 500; + this.state = 502; this.likePredicate(); } } @@ -1842,26 +1843,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 503; + this.state = 505; this.match(FlinkSqlParser.KW_SHOW); - this.state = 504; + this.state = 506; this.match(FlinkSqlParser.KW_CREATE); - this.state = 509; + this.state = 511; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 505; + this.state = 507; this.match(FlinkSqlParser.KW_TABLE); - this.state = 506; + this.state = 508; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 507; + this.state = 509; this.match(FlinkSqlParser.KW_VIEW); - this.state = 508; + this.state = 510; this.viewPath(); } break; @@ -1873,38 +1874,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 511; - this.match(FlinkSqlParser.KW_SHOW); this.state = 513; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 412) { { - this.state = 512; + this.state = 514; this.match(FlinkSqlParser.KW_USER); } } - this.state = 515; + this.state = 517; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 516; - this.match(FlinkSqlParser.KW_SHOW); this.state = 518; + this.match(FlinkSqlParser.KW_SHOW); + this.state = 520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 517; + this.state = 519; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 520; + this.state = 522; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1930,20 +1931,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 523; + this.state = 525; this.match(FlinkSqlParser.KW_LOAD); - this.state = 524; + this.state = 526; this.match(FlinkSqlParser.KW_MODULE); - this.state = 525; + this.state = 527; this.uid(); - this.state = 528; + this.state = 530; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 526; + this.state = 528; this.match(FlinkSqlParser.KW_WITH); - this.state = 527; + this.state = 529; this.tablePropertyList(); } break; @@ -1970,11 +1971,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 530; + this.state = 532; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 531; + this.state = 533; this.match(FlinkSqlParser.KW_MODULE); - this.state = 532; + this.state = 534; this.uid(); } } @@ -1998,14 +1999,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 534; - this.match(FlinkSqlParser.KW_SET); this.state = 536; + this.match(FlinkSqlParser.KW_SET); + this.state = 538; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 535; + this.state = 537; this.tableProperty(); } break; @@ -2032,14 +2033,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 538; - this.match(FlinkSqlParser.KW_RESET); this.state = 540; + this.match(FlinkSqlParser.KW_RESET); + this.state = 542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 539; + this.state = 541; this.tablePropertyKey(); } break; @@ -2067,7 +2068,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 542; + this.state = 544; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 490)) { this.errorHandler.recoverInline(this); @@ -2076,9 +2077,9 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 543; + this.state = 545; this.match(FlinkSqlParser.KW_JAR); - this.state = 544; + this.state = 546; this.jarFileName(); } } @@ -2101,28 +2102,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 596; + this.state = 598; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 546; + this.state = 548; this.match(FlinkSqlParser.KW_ADD); - this.state = 547; + this.state = 549; this.match(FlinkSqlParser.KW_JAR); - this.state = 548; + this.state = 550; this.match(FlinkSqlParser.KW_WITH); - this.state = 549; + this.state = 551; this.dtFilePath(); - this.state = 552; + this.state = 554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 550; + this.state = 552; this.match(FlinkSqlParser.KW_AS); - this.state = 551; + this.state = 553; this.uid(); } } @@ -2132,34 +2133,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 554; + this.state = 556; this.match(FlinkSqlParser.KW_ADD); - this.state = 555; + this.state = 557; this.match(FlinkSqlParser.KW_FILE); - this.state = 556; + this.state = 558; this.match(FlinkSqlParser.KW_WITH); - this.state = 557; + this.state = 559; this.dtFilePath(); - this.state = 560; + this.state = 562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 558; + this.state = 560; this.match(FlinkSqlParser.KW_AS); - this.state = 559; + this.state = 561; this.uid(); } } - this.state = 564; + this.state = 566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 312) { { - this.state = 562; + this.state = 564; this.match(FlinkSqlParser.KW_RENAME); - this.state = 563; + this.state = 565; this.uid(); } } @@ -2169,9 +2170,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 566; + this.state = 568; this.match(FlinkSqlParser.KW_ADD); - this.state = 567; + this.state = 569; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2180,70 +2181,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 568; + this.state = 570; this.match(FlinkSqlParser.KW_WITH); - this.state = 569; + this.state = 571; this.dtFilePath(); - this.state = 570; + this.state = 572; this.match(FlinkSqlParser.KW_RENAME); - this.state = 571; + this.state = 573; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 573; + this.state = 575; this.match(FlinkSqlParser.KW_ADD); - this.state = 574; + this.state = 576; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 575; + this.state = 577; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 576; + this.state = 578; this.match(FlinkSqlParser.KW_ADD); - this.state = 577; + this.state = 579; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 578; + this.state = 580; this.match(FlinkSqlParser.KW_FILE); - this.state = 579; + this.state = 581; this.match(FlinkSqlParser.KW_WITH); - this.state = 580; + this.state = 582; this.dtFilePath(); - this.state = 581; + this.state = 583; this.match(FlinkSqlParser.KW_RENAME); - this.state = 582; + this.state = 584; this.uid(); - this.state = 583; + this.state = 585; this.match(FlinkSqlParser.KW_KEY); - this.state = 584; + this.state = 586; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 586; + this.state = 588; this.match(FlinkSqlParser.KW_ADD); - this.state = 587; + this.state = 589; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 588; + this.state = 590; this.match(FlinkSqlParser.KW_FILE); - this.state = 589; + this.state = 591; this.match(FlinkSqlParser.KW_WITH); - this.state = 590; + this.state = 592; this.dtFilePath(); - this.state = 591; + this.state = 593; this.match(FlinkSqlParser.KW_FOR); - this.state = 592; + this.state = 594; this.uid(); - this.state = 593; + this.state = 595; this.match(FlinkSqlParser.KW_AS); - this.state = 594; + this.state = 596; this.uid(); } break; @@ -2271,7 +2272,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 602; + this.state = 604; this.errorHandler.sync(this); alternative = 1; do { @@ -2279,17 +2280,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 599; + this.state = 601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 535) { { - this.state = 598; + this.state = 600; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 601; + this.state = 603; this.uid(); } } @@ -2297,7 +2298,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 604; + this.state = 606; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2323,18 +2324,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 608; + this.state = 610; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 606; + this.state = 608; this.simpleCreateTable(); } break; case 2: { - this.state = 607; + this.state = 609; this.createTableAsSelect(); } break; @@ -2363,122 +2364,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 610; - this.match(FlinkSqlParser.KW_CREATE); this.state = 612; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 611; + this.state = 613; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 614; - this.match(FlinkSqlParser.KW_TABLE); this.state = 616; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 615; + this.state = 617; this.ifNotExists(); } } - this.state = 618; + this.state = 620; this.tablePathCreate(); - this.state = 619; + this.state = 621; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 620; + this.state = 622; this.columnOptionDefinition(); - this.state = 625; + this.state = 627; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 621; + this.state = 623; this.match(FlinkSqlParser.COMMA); - this.state = 622; + this.state = 624; this.columnOptionDefinition(); } } } - this.state = 627; + this.state = 629; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 630; + this.state = 632; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 628; + this.state = 630; this.match(FlinkSqlParser.COMMA); - this.state = 629; + this.state = 631; this.watermarkDefinition(); } break; } - this.state = 634; + this.state = 636; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 632; + this.state = 634; this.match(FlinkSqlParser.COMMA); - this.state = 633; + this.state = 635; this.tableConstraint(); } break; } - this.state = 638; + this.state = 640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 636; + this.state = 638; this.match(FlinkSqlParser.COMMA); - this.state = 637; + this.state = 639; this.selfDefinitionClause(); } } - this.state = 640; + this.state = 642; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 643; + this.state = 645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 641; + this.state = 643; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 642; + this.state = 644; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 646; + this.state = 648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 270) { { - this.state = 645; + this.state = 647; this.partitionDefinition(); } } - this.state = 648; - this.withOption(); this.state = 650; + this.withOption(); + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 649; + this.state = 651; this.likeDefinition(); } } @@ -2506,32 +2507,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 652; + this.state = 654; this.match(FlinkSqlParser.KW_CREATE); - this.state = 653; - this.match(FlinkSqlParser.KW_TABLE); this.state = 655; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 654; + this.state = 656; this.ifNotExists(); } } - this.state = 657; + this.state = 659; this.tablePathCreate(); - this.state = 658; + this.state = 660; this.withOption(); - this.state = 661; + this.state = 663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 659; + this.state = 661; this.match(FlinkSqlParser.KW_AS); - this.state = 660; + this.state = 662; this.queryStatement(0); } } @@ -2556,27 +2557,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 666; + this.state = 668; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 663; + this.state = 665; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 664; + this.state = 666; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 665; + this.state = 667; this.computedColumnDefinition(); } break; @@ -2603,28 +2604,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 668; + this.state = 670; this.columnNameCreate(); - this.state = 669; - this.columnType(); this.state = 671; + this.columnType(); + this.state = 673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 242 || _la === 245 || _la === 289) { { - this.state = 670; + this.state = 672; this.columnConstraint(); } } - this.state = 675; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 673; + this.state = 675; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 674; + this.state = 676; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2649,20 +2650,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 679; + this.state = 681; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 677; + this.state = 679; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 678; + this.state = 680; this.expression(); } break; @@ -2686,20 +2687,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 683; + this.state = 685; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 681; + this.state = 683; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 682; + this.state = 684; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -2727,7 +2728,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 685; + this.state = 687; this.uid(); } } @@ -2752,27 +2753,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 687; + this.state = 689; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 688; + this.state = 690; this.columnName(); - this.state = 693; + this.state = 695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 689; + this.state = 691; this.match(FlinkSqlParser.COMMA); - this.state = 690; + this.state = 692; this.columnName(); } } - this.state = 695; + this.state = 697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 696; + this.state = 698; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2795,7 +2796,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 735; + this.state = 737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2803,7 +2804,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 698; + this.state = 700; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 245)) { @@ -2831,7 +2832,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 699; + this.state = 701; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 178 || _la === 179 || _la === 345 || _la === 361 || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 521) !== 0) || _la === 417 || _la === 418)) { @@ -2841,12 +2842,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 701; + this.state = 703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 700; + this.state = 702; this.lengthOneDimension(); } } @@ -2856,24 +2857,24 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 703; - localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); this.state = 705; + localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); + this.state = 707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 704; + this.state = 706; this.lengthOneDimension(); } } - this.state = 713; + this.state = 715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 436) { { - this.state = 707; + this.state = 709; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 436)) { this.errorHandler.recoverInline(this); @@ -2882,19 +2883,19 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 709; + this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 708; + this.state = 710; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 711; + this.state = 713; this.match(FlinkSqlParser.KW_TIME); - this.state = 712; + this.state = 714; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2908,7 +2909,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 715; + this.state = 717; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 247)) { @@ -2918,12 +2919,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 717; + this.state = 719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 716; + this.state = 718; this.lengthTwoOptionalDimension(); } } @@ -2934,7 +2935,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 719; + this.state = 721; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 232)) { @@ -2944,12 +2945,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 721; + this.state = 723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 720; + this.state = 722; this.lengthOneTypeDimension(); } } @@ -2959,14 +2960,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 723; - localContext._colType = this.match(FlinkSqlParser.KW_MAP); this.state = 725; + localContext._colType = this.match(FlinkSqlParser.KW_MAP); + this.state = 727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 724; + this.state = 726; this.mapTypeDimension(); } } @@ -2976,14 +2977,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 727; - localContext._colType = this.match(FlinkSqlParser.KW_ROW); this.state = 729; + localContext._colType = this.match(FlinkSqlParser.KW_ROW); + this.state = 731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 517) { { - this.state = 728; + this.state = 730; this.rowTypeDimension(); } } @@ -2993,14 +2994,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 731; - localContext._colType = this.match(FlinkSqlParser.KW_RAW); this.state = 733; + localContext._colType = this.match(FlinkSqlParser.KW_RAW); + this.state = 735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 732; + this.state = 734; this.lengthTwoStringDimension(); } } @@ -3031,11 +3032,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 737; + this.state = 739; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 738; + this.state = 740; this.decimalLiteral(); - this.state = 739; + this.state = 741; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3060,23 +3061,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 741; + this.state = 743; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 742; + this.state = 744; this.decimalLiteral(); - this.state = 745; + this.state = 747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 743; + this.state = 745; this.match(FlinkSqlParser.COMMA); - this.state = 744; + this.state = 746; this.decimalLiteral(); } } - this.state = 747; + this.state = 749; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3101,23 +3102,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 749; + this.state = 751; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 750; + this.state = 752; this.stringLiteral(); - this.state = 753; + this.state = 755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 751; + this.state = 753; this.match(FlinkSqlParser.COMMA); - this.state = 752; + this.state = 754; this.stringLiteral(); } } - this.state = 755; + this.state = 757; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3141,11 +3142,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 757; + this.state = 759; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 758; + this.state = 760; this.columnType(); - this.state = 759; + this.state = 761; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3169,17 +3170,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 761; + this.state = 763; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 762; + this.state = 764; this.columnType(); { - this.state = 763; + this.state = 765; this.match(FlinkSqlParser.COMMA); - this.state = 764; + this.state = 766; this.columnType(); } - this.state = 766; + this.state = 768; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3202,68 +3203,68 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 70, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 796; + this.state = 798; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 768; + this.state = 770; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 769; + this.state = 771; this.columnName(); - this.state = 770; + this.state = 772; this.columnType(); - this.state = 777; + this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 771; + this.state = 773; this.match(FlinkSqlParser.COMMA); - this.state = 772; + this.state = 774; this.columnName(); - this.state = 773; + this.state = 775; this.columnType(); } } - this.state = 779; + this.state = 781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 780; + this.state = 782; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 782; + this.state = 784; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 783; + this.state = 785; this.columnName(); - this.state = 784; + this.state = 786; this.columnType(); - this.state = 791; + this.state = 793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 785; + this.state = 787; this.match(FlinkSqlParser.COMMA); - this.state = 786; + this.state = 788; this.columnName(); - this.state = 787; + this.state = 789; this.columnType(); } } - this.state = 793; + this.state = 795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 794; + this.state = 796; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3290,37 +3291,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 72, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 812; + this.state = 814; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 800; + this.state = 802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 798; + this.state = 800; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 799; + this.state = 801; this.constraintName(); } } - this.state = 802; + this.state = 804; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 803; + this.state = 805; this.match(FlinkSqlParser.KW_KEY); - this.state = 806; + this.state = 808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 804; + this.state = 806; this.match(FlinkSqlParser.KW_NOT); - this.state = 805; + this.state = 807; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3331,17 +3332,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 809; + this.state = 811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 808; + this.state = 810; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 811; + this.state = 813; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3370,30 +3371,30 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 814; + this.state = 816; this.columnNameCreate(); - this.state = 815; + this.state = 817; this.columnType(); - this.state = 816; + this.state = 818; this.match(FlinkSqlParser.KW_METADATA); - this.state = 819; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 817; + this.state = 819; this.match(FlinkSqlParser.KW_FROM); - this.state = 818; + this.state = 820; this.metadataKey(); } } - this.state = 822; + this.state = 824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 424) { { - this.state = 821; + this.state = 823; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3420,7 +3421,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 824; + this.state = 826; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3445,20 +3446,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 826; + this.state = 828; this.columnNameCreate(); - this.state = 827; + this.state = 829; this.match(FlinkSqlParser.KW_AS); - this.state = 828; + this.state = 830; this.computedColumnExpression(); - this.state = 831; + this.state = 833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 829; + this.state = 831; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 830; + this.state = 832; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3485,7 +3486,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 833; + this.state = 835; this.expression(); } } @@ -3509,15 +3510,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 835; + this.state = 837; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 836; + this.state = 838; this.match(FlinkSqlParser.KW_FOR); - this.state = 837; + this.state = 839; this.columnName(); - this.state = 838; + this.state = 840; this.match(FlinkSqlParser.KW_AS); - this.state = 839; + this.state = 841; this.expression(); } } @@ -3542,27 +3543,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 843; + this.state = 845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 841; + this.state = 843; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 842; + this.state = 844; this.constraintName(); } } - this.state = 845; + this.state = 847; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 846; + this.state = 848; this.match(FlinkSqlParser.KW_KEY); - this.state = 847; + this.state = 849; this.columnNameList(); - this.state = 848; + this.state = 850; this.match(FlinkSqlParser.KW_NOT); - this.state = 849; + this.state = 851; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3586,7 +3587,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 851; + this.state = 853; this.identifier(); } } @@ -3610,11 +3611,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 853; + this.state = 855; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 854; + this.state = 856; this.match(FlinkSqlParser.KW_FOR); - this.state = 855; + this.state = 857; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3638,11 +3639,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 857; + this.state = 859; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 858; + this.state = 860; this.match(FlinkSqlParser.KW_BY); - this.state = 859; + this.state = 861; this.transformList(); } } @@ -3667,27 +3668,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 861; + this.state = 863; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 862; + this.state = 864; this.transform(); - this.state = 867; + this.state = 869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 863; + this.state = 865; this.match(FlinkSqlParser.COMMA); - this.state = 864; + this.state = 866; this.transform(); } } - this.state = 869; + this.state = 871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 870; + this.state = 872; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3710,14 +3711,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 884; + this.state = 886; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 872; + this.state = 874; this.columnName(); } break; @@ -3725,27 +3726,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 873; + this.state = 875; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 874; + this.state = 876; this.transformArgument(); - this.state = 879; + this.state = 881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 875; + this.state = 877; this.match(FlinkSqlParser.COMMA); - this.state = 876; + this.state = 878; this.transformArgument(); } } - this.state = 881; + this.state = 883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 882; + this.state = 884; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3769,20 +3770,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); try { - this.state = 888; + this.state = 890; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 886; + this.state = 888; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 887; + this.state = 889; this.constant(); } break; @@ -3809,32 +3810,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 890; + this.state = 892; this.match(FlinkSqlParser.KW_LIKE); - this.state = 891; + this.state = 893; this.tablePath(); - this.state = 900; + this.state = 902; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 892; + this.state = 894; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 896; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 267 || _la === 456 || _la === 463) { { { - this.state = 893; + this.state = 895; this.likeOption(); } } - this.state = 898; + this.state = 900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 899; + this.state = 901; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3860,14 +3861,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 906; + this.state = 908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 902; + this.state = 904; _la = this.tokenStream.LA(1); if(!(_la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3876,7 +3877,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 903; + this.state = 905; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 271 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -3892,7 +3893,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 904; + this.state = 906; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3901,7 +3902,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 905; + this.state = 907; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 459 || _la === 478)) { this.errorHandler.recoverInline(this); @@ -3935,13 +3936,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 908; + this.state = 910; this.match(FlinkSqlParser.KW_CREATE); - this.state = 909; + this.state = 911; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 910; + this.state = 912; this.catalogPathCreate(); - this.state = 911; + this.state = 913; this.withOption(); } } @@ -3966,35 +3967,35 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 913; + this.state = 915; this.match(FlinkSqlParser.KW_CREATE); - this.state = 914; - this.match(FlinkSqlParser.KW_DATABASE); this.state = 916; + this.match(FlinkSqlParser.KW_DATABASE); + this.state = 918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 915; + this.state = 917; this.ifNotExists(); } } - this.state = 918; + this.state = 920; this.databasePathCreate(); - this.state = 921; + this.state = 923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 919; + this.state = 921; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 920; + this.state = 922; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 923; + this.state = 925; this.withOption(); } } @@ -4019,57 +4020,57 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 925; - this.match(FlinkSqlParser.KW_CREATE); this.state = 927; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 926; + this.state = 928; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 929; - this.match(FlinkSqlParser.KW_VIEW); this.state = 931; + this.match(FlinkSqlParser.KW_VIEW); + this.state = 933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 930; + this.state = 932; this.ifNotExists(); } } - this.state = 933; - this.viewPathCreate(); this.state = 935; + this.viewPathCreate(); + this.state = 937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 934; + this.state = 936; this.columnNameList(); } } - this.state = 939; + this.state = 941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 937; + this.state = 939; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 938; + this.state = 940; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 941; + this.state = 943; this.match(FlinkSqlParser.KW_AS); - this.state = 942; + this.state = 944; this.queryStatement(0); } } @@ -4094,52 +4095,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 944; + this.state = 946; this.match(FlinkSqlParser.KW_CREATE); - this.state = 948; + this.state = 950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 945; + this.state = 947; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 946; + this.state = 948; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 947; + this.state = 949; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 950; - this.match(FlinkSqlParser.KW_FUNCTION); this.state = 952; + this.match(FlinkSqlParser.KW_FUNCTION); + this.state = 954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 951; + this.state = 953; this.ifNotExists(); } } - this.state = 954; + this.state = 956; this.functionNameCreate(); - this.state = 955; + this.state = 957; this.match(FlinkSqlParser.KW_AS); - this.state = 956; + this.state = 958; this.identifier(); - this.state = 959; + this.state = 961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 957; + this.state = 959; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 958; + this.state = 960; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4151,12 +4152,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 962; + this.state = 964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413) { { - this.state = 961; + this.state = 963; this.usingClause(); } } @@ -4184,27 +4185,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 964; + this.state = 966; this.match(FlinkSqlParser.KW_USING); - this.state = 965; + this.state = 967; this.match(FlinkSqlParser.KW_JAR); - this.state = 966; + this.state = 968; this.jarFileName(); - this.state = 972; + this.state = 974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 967; + this.state = 969; this.match(FlinkSqlParser.COMMA); - this.state = 968; + this.state = 970; this.match(FlinkSqlParser.KW_JAR); - this.state = 969; + this.state = 971; this.jarFileName(); } } - this.state = 974; + this.state = 976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4230,7 +4231,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 975; + this.state = 977; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4255,52 +4256,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 977; + this.state = 979; this.match(FlinkSqlParser.KW_ALTER); - this.state = 978; - this.match(FlinkSqlParser.KW_TABLE); this.state = 980; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 979; + this.state = 981; this.ifExists(); } } - this.state = 982; + this.state = 984; this.tablePath(); - this.state = 988; + this.state = 990; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 983; + this.state = 985; this.renameDefinition(); } break; case 2: { - this.state = 984; + this.state = 986; this.setKeyValueDefinition(); } break; case 3: { - this.state = 985; + this.state = 987; this.addConstraint(); } break; case 4: { - this.state = 986; + this.state = 988; this.dropConstraint(); } break; case 5: { - this.state = 987; + this.state = 989; this.addUnique(); } break; @@ -4328,21 +4329,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 990; - this.match(FlinkSqlParser.KW_RENAME); this.state = 992; + this.match(FlinkSqlParser.KW_RENAME); + this.state = 994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 991; + this.state = 993; this.uid(); } } - this.state = 994; + this.state = 996; this.match(FlinkSqlParser.KW_TO); - this.state = 995; + this.state = 997; this.uid(); } } @@ -4366,9 +4367,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 997; + this.state = 999; this.match(FlinkSqlParser.KW_SET); - this.state = 998; + this.state = 1000; this.tablePropertyList(); } } @@ -4393,24 +4394,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1000; + this.state = 1002; this.match(FlinkSqlParser.KW_ADD); - this.state = 1001; + this.state = 1003; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1002; + this.state = 1004; this.constraintName(); - this.state = 1003; + this.state = 1005; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 1004; + this.state = 1006; this.match(FlinkSqlParser.KW_KEY); - this.state = 1005; - this.columnNameList(); this.state = 1007; + this.columnNameList(); + this.state = 1009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1006; + this.state = 1008; this.notForced(); } } @@ -4437,11 +4438,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1009; + this.state = 1011; this.match(FlinkSqlParser.KW_DROP); - this.state = 1010; + this.state = 1012; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1011; + this.state = 1013; this.constraintName(); } } @@ -4465,11 +4466,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1013; + this.state = 1015; this.match(FlinkSqlParser.KW_ADD); - this.state = 1014; + this.state = 1016; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1015; + this.state = 1017; this.columnNameList(); } } @@ -4493,9 +4494,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1017; + this.state = 1019; this.match(FlinkSqlParser.KW_NOT); - this.state = 1018; + this.state = 1020; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4519,26 +4520,26 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1020; + this.state = 1022; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1021; + this.state = 1023; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1022; + this.state = 1024; this.viewPath(); - this.state = 1026; + this.state = 1028; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1023; + this.state = 1025; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1024; + this.state = 1026; this.match(FlinkSqlParser.KW_AS); - this.state = 1025; + this.state = 1027; this.queryStatement(0); } break; @@ -4567,13 +4568,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1028; + this.state = 1030; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1029; + this.state = 1031; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1030; + this.state = 1032; this.databasePath(); - this.state = 1031; + this.state = 1033; this.setKeyValueDefinition(); } } @@ -4598,52 +4599,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1033; + this.state = 1035; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1037; + this.state = 1039; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1034; + this.state = 1036; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1035; + this.state = 1037; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1036; + this.state = 1038; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1039; - this.match(FlinkSqlParser.KW_FUNCTION); this.state = 1041; + this.match(FlinkSqlParser.KW_FUNCTION); + this.state = 1043; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1040; + this.state = 1042; this.ifExists(); } break; } - this.state = 1043; + this.state = 1045; this.functionName(); - this.state = 1044; + this.state = 1046; this.match(FlinkSqlParser.KW_AS); - this.state = 1045; + this.state = 1047; this.identifier(); - this.state = 1048; + this.state = 1050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1046; + this.state = 1048; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1047; + this.state = 1049; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4678,21 +4679,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1050; + this.state = 1052; this.match(FlinkSqlParser.KW_DROP); - this.state = 1051; - this.match(FlinkSqlParser.KW_CATALOG); this.state = 1053; + this.match(FlinkSqlParser.KW_CATALOG); + this.state = 1055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1052; + this.state = 1054; this.ifExists(); } } - this.state = 1055; + this.state = 1057; this.catalogPath(); } } @@ -4717,31 +4718,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1057; - this.match(FlinkSqlParser.KW_DROP); this.state = 1059; + this.match(FlinkSqlParser.KW_DROP); + this.state = 1061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1058; + this.state = 1060; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1061; - this.match(FlinkSqlParser.KW_TABLE); this.state = 1063; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1062; + this.state = 1064; this.ifExists(); } } - this.state = 1065; + this.state = 1067; this.tablePath(); } } @@ -4766,28 +4767,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1067; + this.state = 1069; this.match(FlinkSqlParser.KW_DROP); - this.state = 1068; - this.match(FlinkSqlParser.KW_DATABASE); this.state = 1070; + this.match(FlinkSqlParser.KW_DATABASE); + this.state = 1072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1069; + this.state = 1071; this.ifExists(); } } - this.state = 1072; - this.databasePath(); this.state = 1074; + this.databasePath(); + this.state = 1076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 441 || _la === 491) { { - this.state = 1073; + this.state = 1075; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 441 || _la === 491)) { @@ -4823,31 +4824,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1076; - this.match(FlinkSqlParser.KW_DROP); this.state = 1078; + this.match(FlinkSqlParser.KW_DROP); + this.state = 1080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1077; + this.state = 1079; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1080; - this.match(FlinkSqlParser.KW_VIEW); this.state = 1082; + this.match(FlinkSqlParser.KW_VIEW); + this.state = 1084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1081; + this.state = 1083; this.ifExists(); } } - this.state = 1084; + this.state = 1086; this.viewPath(); } } @@ -4871,39 +4872,39 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1086; + this.state = 1088; this.match(FlinkSqlParser.KW_DROP); - this.state = 1090; + this.state = 1092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1087; + this.state = 1089; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1088; + this.state = 1090; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1089; + this.state = 1091; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1092; - this.match(FlinkSqlParser.KW_FUNCTION); this.state = 1094; + this.match(FlinkSqlParser.KW_FUNCTION); + this.state = 1096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1093; + this.state = 1095; this.ifExists(); } break; } - this.state = 1096; + this.state = 1098; this.functionName(); } } @@ -4926,24 +4927,24 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1105; + this.state = 1107; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1099; + this.state = 1101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1098; + this.state = 1100; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1101; + this.state = 1103; this.insertSimpleStatement(); } } @@ -4951,7 +4952,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1102; + this.state = 1104; this.insertMulStatementCompatibility(); } break; @@ -4959,9 +4960,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1103; + this.state = 1105; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1104; + this.state = 1106; this.insertMulStatement(); } } @@ -4989,9 +4990,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1107; + this.state = 1109; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1108; + this.state = 1110; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 266)) { this.errorHandler.recoverInline(this); @@ -5000,40 +5001,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1109; + this.state = 1111; this.tablePath(); - this.state = 1118; + this.state = 1120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1111; + this.state = 1113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1110; + this.state = 1112; this.insertPartitionDefinition(); } } - this.state = 1114; + this.state = 1116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1113; + this.state = 1115; this.columnNameList(); } break; } - this.state = 1116; + this.state = 1118; this.queryStatement(0); } break; case 2: { - this.state = 1117; + this.state = 1119; this.valuesDefinition(); } break; @@ -5060,9 +5061,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1120; + this.state = 1122; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1121; + this.state = 1123; this.tablePropertyList(); } } @@ -5087,23 +5088,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1123; + this.state = 1125; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1124; + this.state = 1126; this.valuesRowDefinition(); - this.state = 1129; + this.state = 1131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1125; + this.state = 1127; this.match(FlinkSqlParser.COMMA); - this.state = 1126; + this.state = 1128; this.valuesRowDefinition(); } } - this.state = 1131; + this.state = 1133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5130,27 +5131,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1132; + this.state = 1134; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1133; - this.constant(); - this.state = 1138; + this.state = 1135; + this.valueDefinition(); + this.state = 1140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1134; + this.state = 1136; this.match(FlinkSqlParser.COMMA); - this.state = 1135; - this.constant(); + this.state = 1137; + this.valueDefinition(); } } - this.state = 1140; + this.state = 1142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1141; + this.state = 1143; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5168,38 +5169,75 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public valueDefinition(): ValueDefinitionContext { + let localContext = new ValueDefinitionContext(this.context, this.state); + this.enterRule(localContext, 154, FlinkSqlParser.RULE_valueDefinition); + try { + this.state = 1147; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1145; + this.constant(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1146; + this.functionCallExpression(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public insertMulStatementCompatibility(): InsertMulStatementCompatibilityContext { let localContext = new InsertMulStatementCompatibilityContext(this.context, this.state); - this.enterRule(localContext, 154, FlinkSqlParser.RULE_insertMulStatementCompatibility); + this.enterRule(localContext, 156, FlinkSqlParser.RULE_insertMulStatementCompatibility); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1143; + this.state = 1149; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1144; + this.state = 1150; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1145; + this.state = 1151; this.match(FlinkSqlParser.KW_SET); - this.state = 1146; + this.state = 1152; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1150; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1147; + this.state = 1153; this.insertSimpleStatement(); - this.state = 1148; + this.state = 1154; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1152; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1154; + this.state = 1160; this.match(FlinkSqlParser.KW_END); } } @@ -5219,34 +5257,34 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatement(): InsertMulStatementContext { let localContext = new InsertMulStatementContext(this.context, this.state); - this.enterRule(localContext, 156, FlinkSqlParser.RULE_insertMulStatement); + this.enterRule(localContext, 158, FlinkSqlParser.RULE_insertMulStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1156; + this.state = 1162; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1157; + this.state = 1163; this.match(FlinkSqlParser.KW_SET); - this.state = 1158; + this.state = 1164; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1162; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1159; + this.state = 1165; this.insertSimpleStatement(); - this.state = 1160; + this.state = 1166; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1164; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1166; + this.state = 1172; this.match(FlinkSqlParser.KW_END); } } @@ -5276,60 +5314,60 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryStatementContext(this.context, parentState); let previousContext = localContext; - let _startState = 158; - this.enterRecursionRule(localContext, 158, FlinkSqlParser.RULE_queryStatement, _p); + let _startState = 160; + this.enterRecursionRule(localContext, 160, FlinkSqlParser.RULE_queryStatement, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1191; + this.state = 1197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1169; + this.state = 1175; this.valuesClause(); } break; case 2: { - this.state = 1170; + this.state = 1176; this.withClause(); - this.state = 1171; + this.state = 1177; this.queryStatement(5); } break; case 3: { - this.state = 1173; + this.state = 1179; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1174; + this.state = 1180; this.queryStatement(0); - this.state = 1175; + this.state = 1181; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1177; + this.state = 1183; this.selectClause(); - this.state = 1179; + this.state = 1185; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1178; + this.state = 1184; this.orderByClause(); } break; } - this.state = 1182; + this.state = 1188; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1181; + this.state = 1187; this.limitClause(); } break; @@ -5338,24 +5376,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1184; + this.state = 1190; this.selectStatement(); - this.state = 1186; + this.state = 1192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1185; + this.state = 1191; this.orderByClause(); } break; } - this.state = 1189; + this.state = 1195; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1188; + this.state = 1194; this.limitClause(); } break; @@ -5364,9 +5402,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1207; + this.state = 1213; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -5378,11 +5416,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1193; + this.state = 1199; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1194; + this.state = 1200; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 180 || _la === 403)) { @@ -5392,34 +5430,34 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1196; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1195; + this.state = 1201; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1198; + this.state = 1204; localContext._right = this.queryStatement(0); - this.state = 1200; + this.state = 1206; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1199; + this.state = 1205; this.orderByClause(); } break; } - this.state = 1203; + this.state = 1209; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1202; + this.state = 1208; this.limitClause(); } break; @@ -5427,9 +5465,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1209; + this.state = 1215; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); } } } @@ -5449,32 +5487,32 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 160, FlinkSqlParser.RULE_valuesClause); + this.enterRule(localContext, 162, FlinkSqlParser.RULE_valuesClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1210; + this.state = 1216; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1211; + this.state = 1217; this.expression(); - this.state = 1216; + this.state = 1222; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1212; + this.state = 1218; this.match(FlinkSqlParser.COMMA); - this.state = 1213; + this.state = 1219; this.expression(); } } } - this.state = 1218; + this.state = 1224; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); } } } @@ -5494,28 +5532,28 @@ export class FlinkSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 162, FlinkSqlParser.RULE_withClause); + this.enterRule(localContext, 164, FlinkSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1219; + this.state = 1225; this.match(FlinkSqlParser.KW_WITH); - this.state = 1220; + this.state = 1226; this.withItem(); - this.state = 1225; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1221; + this.state = 1227; this.match(FlinkSqlParser.COMMA); - this.state = 1222; + this.state = 1228; this.withItem(); } } - this.state = 1227; + this.state = 1233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5537,50 +5575,50 @@ export class FlinkSqlParser extends SQLParserBase { } public withItem(): WithItemContext { let localContext = new WithItemContext(this.context, this.state); - this.enterRule(localContext, 164, FlinkSqlParser.RULE_withItem); + this.enterRule(localContext, 166, FlinkSqlParser.RULE_withItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1228; + this.state = 1234; this.withItemName(); - this.state = 1240; + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 1229; + this.state = 1235; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1230; + this.state = 1236; this.columnName(); - this.state = 1235; + this.state = 1241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1231; + this.state = 1237; this.match(FlinkSqlParser.COMMA); - this.state = 1232; + this.state = 1238; this.columnName(); } } - this.state = 1237; + this.state = 1243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1238; + this.state = 1244; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1242; + this.state = 1248; this.match(FlinkSqlParser.KW_AS); - this.state = 1243; + this.state = 1249; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1244; + this.state = 1250; this.queryStatement(0); - this.state = 1245; + this.state = 1251; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5600,11 +5638,11 @@ export class FlinkSqlParser extends SQLParserBase { } public withItemName(): WithItemNameContext { let localContext = new WithItemNameContext(this.context, this.state); - this.enterRule(localContext, 166, FlinkSqlParser.RULE_withItemName); + this.enterRule(localContext, 168, FlinkSqlParser.RULE_withItemName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1247; + this.state = 1253; this.identifier(); } } @@ -5624,62 +5662,62 @@ export class FlinkSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1269; + this.state = 1275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1249; + this.state = 1255; this.selectClause(); - this.state = 1251; + this.state = 1257; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1250; + this.state = 1256; this.fromClause(); } break; } - this.state = 1254; + this.state = 1260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1253; + this.state = 1259; this.whereClause(); } break; } - this.state = 1257; + this.state = 1263; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1256; + this.state = 1262; this.groupByClause(); } break; } - this.state = 1260; + this.state = 1266; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1259; + this.state = 1265; this.havingClause(); } break; } - this.state = 1263; + this.state = 1269; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1262; + this.state = 1268; this.windowClause(); } break; @@ -5689,11 +5727,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1265; + this.state = 1271; this.selectClause(); - this.state = 1266; + this.state = 1272; this.fromClause(); - this.state = 1267; + this.state = 1273; this.matchRecognizeClause(); } break; @@ -5715,53 +5753,53 @@ export class FlinkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectClause); + this.enterRule(localContext, 172, FlinkSqlParser.RULE_selectClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1277; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1273; + this.state = 1279; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1272; + this.state = 1278; this.setQuantifier(); } break; } - this.state = 1284; + this.state = 1290; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { case 1: { - this.state = 1275; + this.state = 1281; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1276; + this.state = 1282; this.projectItemDefinition(); - this.state = 1281; + this.state = 1287; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1277; + this.state = 1283; this.match(FlinkSqlParser.COMMA); - this.state = 1278; + this.state = 1284; this.projectItemDefinition(); } } } - this.state = 1283; + this.state = 1289; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } } break; @@ -5784,40 +5822,40 @@ export class FlinkSqlParser extends SQLParserBase { } public projectItemDefinition(): ProjectItemDefinitionContext { let localContext = new ProjectItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 172, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localContext, 174, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1301; + this.state = 1307; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1286; + this.state = 1292; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1287; + this.state = 1293; this.expression(); - this.state = 1292; + this.state = 1298; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1289; + this.state = 1295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1288; + this.state = 1294; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1291; + this.state = 1297; this.columnName(); } break; @@ -5827,24 +5865,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1294; + this.state = 1300; this.columnName(); - this.state = 1299; + this.state = 1305; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: { - this.state = 1296; + this.state = 1302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1295; + this.state = 1301; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1298; + this.state = 1304; this.expression(); } break; @@ -5869,38 +5907,38 @@ export class FlinkSqlParser extends SQLParserBase { } public overWindowItem(): OverWindowItemContext { let localContext = new OverWindowItemContext(this.context, this.state); - this.enterRule(localContext, 174, FlinkSqlParser.RULE_overWindowItem); + this.enterRule(localContext, 176, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1315; + this.state = 1321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1303; + this.state = 1309; this.primaryExpression(0); - this.state = 1304; + this.state = 1310; this.match(FlinkSqlParser.KW_OVER); - this.state = 1305; + this.state = 1311; this.windowSpec(); - this.state = 1306; + this.state = 1312; this.match(FlinkSqlParser.KW_AS); - this.state = 1307; + this.state = 1313; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1309; + this.state = 1315; this.primaryExpression(0); - this.state = 1310; + this.state = 1316; this.match(FlinkSqlParser.KW_OVER); - this.state = 1311; + this.state = 1317; this.errorCapturingIdentifier(); - this.state = 1312; + this.state = 1318; this.match(FlinkSqlParser.KW_AS); - this.state = 1313; + this.state = 1319; this.identifier(); } break; @@ -5922,13 +5960,13 @@ export class FlinkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 176, FlinkSqlParser.RULE_fromClause); + this.enterRule(localContext, 178, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1317; + this.state = 1323; this.match(FlinkSqlParser.KW_FROM); - this.state = 1318; + this.state = 1324; this.tableExpression(0); } } @@ -5958,57 +5996,57 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TableExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 178; - this.enterRecursionRule(localContext, 178, FlinkSqlParser.RULE_tableExpression, _p); + let _startState = 180; + this.enterRecursionRule(localContext, 180, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1331; + this.state = 1337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1321; + this.state = 1327; this.tableReference(); - this.state = 1326; + this.state = 1332; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1322; + this.state = 1328; this.match(FlinkSqlParser.COMMA); - this.state = 1323; + this.state = 1329; this.tableReference(); } } } - this.state = 1328; + this.state = 1334; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); } } break; case 2: { - this.state = 1329; + this.state = 1335; this.inlineDataValueClause(); } break; case 3: { - this.state = 1330; + this.state = 1336; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1354; + this.state = 1360; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -6016,22 +6054,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1352; + this.state = 1358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1333; + this.state = 1339; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1334; + this.state = 1340; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1335; + this.state = 1341; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1336; + this.state = 1342; this.tableExpression(4); } break; @@ -6039,26 +6077,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1337; + this.state = 1343; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1339; + this.state = 1345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 234) { { - this.state = 1338; + this.state = 1344; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1342; + this.state = 1348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 202 || _la === 318) { { - this.state = 1341; + this.state = 1347; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 202 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -6070,26 +6108,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1345; + this.state = 1351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 1344; + this.state = 1350; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1347; + this.state = 1353; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1348; + this.state = 1354; this.tableExpression(0); - this.state = 1350; + this.state = 1356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1349; + this.state = 1355; this.joinCondition(); } break; @@ -6099,9 +6137,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1356; + this.state = 1362; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } } } @@ -6121,18 +6159,18 @@ export class FlinkSqlParser extends SQLParserBase { } public tableReference(): TableReferenceContext { let localContext = new TableReferenceContext(this.context, this.state); - this.enterRule(localContext, 180, FlinkSqlParser.RULE_tableReference); + this.enterRule(localContext, 182, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localContext, 1); { - this.state = 1357; + this.state = 1363; this.tablePrimary(); - this.state = 1359; + this.state = 1365; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: { - this.state = 1358; + this.state = 1364; this.tableAlias(); } break; @@ -6155,33 +6193,33 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePrimary(): TablePrimaryContext { let localContext = new TablePrimaryContext(this.context, this.state); - this.enterRule(localContext, 182, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localContext, 184, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1390; + this.state = 1396; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1362; + this.state = 1368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 374) { { - this.state = 1361; + this.state = 1367; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1364; + this.state = 1370; this.tablePath(); - this.state = 1366; + this.state = 1372; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1365; + this.state = 1371; this.systemTimePeriod(); } break; @@ -6191,14 +6229,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1368; + this.state = 1374; this.viewPath(); - this.state = 1370; + this.state = 1376; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1369; + this.state = 1375; this.systemTimePeriod(); } break; @@ -6208,49 +6246,49 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1372; + this.state = 1378; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1373; + this.state = 1379; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1374; + this.state = 1380; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1375; + this.state = 1381; this.functionCallExpression(); - this.state = 1376; + this.state = 1382; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1379; + this.state = 1385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 1378; + this.state = 1384; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1381; + this.state = 1387; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1382; + this.state = 1388; this.queryStatement(0); - this.state = 1383; + this.state = 1389; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1385; + this.state = 1391; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1386; + this.state = 1392; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1387; + this.state = 1393; this.expression(); - this.state = 1388; + this.state = 1394; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6272,19 +6310,19 @@ export class FlinkSqlParser extends SQLParserBase { } public systemTimePeriod(): SystemTimePeriodContext { let localContext = new SystemTimePeriodContext(this.context, this.state); - this.enterRule(localContext, 184, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localContext, 186, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1398; this.match(FlinkSqlParser.KW_FOR); - this.state = 1393; + this.state = 1399; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1394; + this.state = 1400; this.match(FlinkSqlParser.KW_AS); - this.state = 1395; + this.state = 1401; this.match(FlinkSqlParser.KW_OF); - this.state = 1396; + this.state = 1402; this.dateTimeExpression(); } } @@ -6304,11 +6342,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dateTimeExpression(): DateTimeExpressionContext { let localContext = new DateTimeExpressionContext(this.context, this.state); - this.enterRule(localContext, 186, FlinkSqlParser.RULE_dateTimeExpression); + this.enterRule(localContext, 188, FlinkSqlParser.RULE_dateTimeExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1398; + this.state = 1404; this.expression(); } } @@ -6328,17 +6366,17 @@ export class FlinkSqlParser extends SQLParserBase { } public inlineDataValueClause(): InlineDataValueClauseContext { let localContext = new InlineDataValueClauseContext(this.context, this.state); - this.enterRule(localContext, 188, FlinkSqlParser.RULE_inlineDataValueClause); + this.enterRule(localContext, 190, FlinkSqlParser.RULE_inlineDataValueClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1400; + this.state = 1406; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1401; + this.state = 1407; this.valuesDefinition(); - this.state = 1402; + this.state = 1408; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1403; + this.state = 1409; this.tableAlias(); } } @@ -6358,17 +6396,17 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFClause(): WindowTVFClauseContext { let localContext = new WindowTVFClauseContext(this.context, this.state); - this.enterRule(localContext, 190, FlinkSqlParser.RULE_windowTVFClause); + this.enterRule(localContext, 192, FlinkSqlParser.RULE_windowTVFClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1405; + this.state = 1411; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1406; + this.state = 1412; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1407; + this.state = 1413; this.windowTVFExpression(); - this.state = 1408; + this.state = 1414; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6388,34 +6426,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFExpression(): WindowTVFExpressionContext { let localContext = new WindowTVFExpressionContext(this.context, this.state); - this.enterRule(localContext, 192, FlinkSqlParser.RULE_windowTVFExpression); + this.enterRule(localContext, 194, FlinkSqlParser.RULE_windowTVFExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1410; + this.state = 1416; this.windowTVFName(); - this.state = 1411; + this.state = 1417; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1412; + this.state = 1418; this.windowTVFParam(); - this.state = 1417; + this.state = 1423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1413; + this.state = 1419; this.match(FlinkSqlParser.COMMA); - this.state = 1414; + this.state = 1420; this.windowTVFParam(); } } - this.state = 1419; + this.state = 1425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1420; + this.state = 1426; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6435,12 +6473,12 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFName(): WindowTVFNameContext { let localContext = new WindowTVFNameContext(this.context, this.state); - this.enterRule(localContext, 194, FlinkSqlParser.RULE_windowTVFName); + this.enterRule(localContext, 196, FlinkSqlParser.RULE_windowTVFName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1422; + this.state = 1428; _la = this.tokenStream.LA(1); if(!(_la === 446 || _la === 460 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -6467,66 +6505,66 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFParam(): WindowTVFParamContext { let localContext = new WindowTVFParamContext(this.context, this.state); - this.enterRule(localContext, 196, FlinkSqlParser.RULE_windowTVFParam); + this.enterRule(localContext, 198, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1439; + this.state = 1445; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1424; + this.state = 1430; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1425; + this.state = 1431; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1426; + this.state = 1432; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1427; + this.state = 1433; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1428; + this.state = 1434; this.match(FlinkSqlParser.KW_DATA); - this.state = 1429; + this.state = 1435; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1430; + this.state = 1436; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1431; + this.state = 1437; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1432; + this.state = 1438; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1433; + this.state = 1439; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1434; + this.state = 1440; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1435; + this.state = 1441; this.timeIntervalParamName(); - this.state = 1436; + this.state = 1442; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1437; + this.state = 1443; this.timeIntervalExpression(); } break; @@ -6548,12 +6586,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalParamName(): TimeIntervalParamNameContext { let localContext = new TimeIntervalParamNameContext(this.context, this.state); - this.enterRule(localContext, 198, FlinkSqlParser.RULE_timeIntervalParamName); + this.enterRule(localContext, 200, FlinkSqlParser.RULE_timeIntervalParamName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1441; + this.state = 1447; _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 447 || ((((_la - 495)) & ~0x1F) === 0 && ((1 << (_la - 495)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -6580,17 +6618,17 @@ export class FlinkSqlParser extends SQLParserBase { } public columnDescriptor(): ColumnDescriptorContext { let localContext = new ColumnDescriptorContext(this.context, this.state); - this.enterRule(localContext, 200, FlinkSqlParser.RULE_columnDescriptor); + this.enterRule(localContext, 202, FlinkSqlParser.RULE_columnDescriptor); try { this.enterOuterAlt(localContext, 1); { - this.state = 1443; + this.state = 1449; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1444; + this.state = 1450; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1445; + this.state = 1451; this.columnName(); - this.state = 1446; + this.state = 1452; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6610,26 +6648,26 @@ export class FlinkSqlParser extends SQLParserBase { } public joinCondition(): JoinConditionContext { let localContext = new JoinConditionContext(this.context, this.state); - this.enterRule(localContext, 202, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localContext, 204, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1452; + this.state = 1458; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1454; this.match(FlinkSqlParser.KW_ON); - this.state = 1449; + this.state = 1455; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1450; + this.state = 1456; this.match(FlinkSqlParser.KW_USING); - this.state = 1451; + this.state = 1457; this.columnNameList(); } break; @@ -6653,13 +6691,13 @@ export class FlinkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 204, FlinkSqlParser.RULE_whereClause); + this.enterRule(localContext, 206, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1460; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1455; + this.state = 1461; this.booleanExpression(0); } } @@ -6679,34 +6717,34 @@ export class FlinkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 206, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1463; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1458; + this.state = 1464; this.match(FlinkSqlParser.KW_BY); - this.state = 1459; + this.state = 1465; this.groupItemDefinition(); - this.state = 1464; + this.state = 1470; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1460; + this.state = 1466; this.match(FlinkSqlParser.COMMA); - this.state = 1461; + this.state = 1467; this.groupItemDefinition(); } } } - this.state = 1466; + this.state = 1472; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); } } } @@ -6726,124 +6764,124 @@ export class FlinkSqlParser extends SQLParserBase { } public groupItemDefinition(): GroupItemDefinitionContext { let localContext = new GroupItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1507; + this.state = 1513; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1467; + this.state = 1473; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1468; + this.state = 1474; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1469; + this.state = 1475; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1470; + this.state = 1476; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1471; + this.state = 1477; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1472; + this.state = 1478; this.expression(); - this.state = 1477; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1473; + this.state = 1479; this.match(FlinkSqlParser.COMMA); - this.state = 1474; + this.state = 1480; this.expression(); } } - this.state = 1479; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1480; + this.state = 1486; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1482; + this.state = 1488; this.groupingSetsNotationName(); - this.state = 1483; + this.state = 1489; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1484; + this.state = 1490; this.expression(); - this.state = 1489; + this.state = 1495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1485; + this.state = 1491; this.match(FlinkSqlParser.COMMA); - this.state = 1486; + this.state = 1492; this.expression(); } } - this.state = 1491; + this.state = 1497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1492; + this.state = 1498; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1494; + this.state = 1500; this.groupingSets(); - this.state = 1495; + this.state = 1501; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1496; + this.state = 1502; this.groupItemDefinition(); - this.state = 1501; + this.state = 1507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1497; + this.state = 1503; this.match(FlinkSqlParser.COMMA); - this.state = 1498; + this.state = 1504; this.groupItemDefinition(); } } - this.state = 1503; + this.state = 1509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1504; + this.state = 1510; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1506; + this.state = 1512; this.expression(); } break; @@ -6865,13 +6903,13 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSets(): GroupingSetsContext { let localContext = new GroupingSetsContext(this.context, this.state); - this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupingSets); + this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupingSets); try { this.enterOuterAlt(localContext, 1); { - this.state = 1509; + this.state = 1515; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1510; + this.state = 1516; this.match(FlinkSqlParser.KW_SETS); } } @@ -6891,12 +6929,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSetsNotationName(): GroupingSetsNotationNameContext { let localContext = new GroupingSetsNotationNameContext(this.context, this.state); - this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupingSetsNotationName); + this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupingSetsNotationName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1512; + this.state = 1518; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 321)) { this.errorHandler.recoverInline(this); @@ -6923,21 +6961,21 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunction(): GroupWindowFunctionContext { let localContext = new GroupWindowFunctionContext(this.context, this.state); - this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupWindowFunction); + this.enterRule(localContext, 216, FlinkSqlParser.RULE_groupWindowFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1514; + this.state = 1520; this.groupWindowFunctionName(); - this.state = 1515; + this.state = 1521; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1516; + this.state = 1522; this.timeAttrColumn(); - this.state = 1517; + this.state = 1523; this.match(FlinkSqlParser.COMMA); - this.state = 1518; + this.state = 1524; this.timeIntervalExpression(); - this.state = 1519; + this.state = 1525; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6957,12 +6995,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunctionName(): GroupWindowFunctionNameContext { let localContext = new GroupWindowFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 216, FlinkSqlParser.RULE_groupWindowFunctionName); + this.enterRule(localContext, 218, FlinkSqlParser.RULE_groupWindowFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1521; + this.state = 1527; _la = this.tokenStream.LA(1); if(!(_la === 460 || _la === 493 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -6989,11 +7027,11 @@ export class FlinkSqlParser extends SQLParserBase { } public timeAttrColumn(): TimeAttrColumnContext { let localContext = new TimeAttrColumnContext(this.context, this.state); - this.enterRule(localContext, 218, FlinkSqlParser.RULE_timeAttrColumn); + this.enterRule(localContext, 220, FlinkSqlParser.RULE_timeAttrColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 1523; + this.state = 1529; this.uid(); } } @@ -7013,13 +7051,13 @@ export class FlinkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 220, FlinkSqlParser.RULE_havingClause); + this.enterRule(localContext, 222, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1525; + this.state = 1531; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1526; + this.state = 1532; this.booleanExpression(0); } } @@ -7039,32 +7077,32 @@ export class FlinkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 222, FlinkSqlParser.RULE_windowClause); + this.enterRule(localContext, 224, FlinkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1528; + this.state = 1534; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1529; + this.state = 1535; this.namedWindow(); - this.state = 1534; + this.state = 1540; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1530; + this.state = 1536; this.match(FlinkSqlParser.COMMA); - this.state = 1531; + this.state = 1537; this.namedWindow(); } } } - this.state = 1536; + this.state = 1542; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); } } } @@ -7084,15 +7122,15 @@ export class FlinkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 224, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 226, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 1537; + this.state = 1543; localContext._name = this.errorCapturingIdentifier(); - this.state = 1538; + this.state = 1544; this.match(FlinkSqlParser.KW_AS); - this.state = 1539; + this.state = 1545; this.windowSpec(); } } @@ -7112,54 +7150,54 @@ export class FlinkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 226, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 228, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1542; + this.state = 1548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1541; + this.state = 1547; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1544; + this.state = 1550; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1546; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1545; + this.state = 1551; this.partitionByClause(); } } - this.state = 1549; + this.state = 1555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1548; + this.state = 1554; this.orderByClause(); } } - this.state = 1552; + this.state = 1558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293 || _la === 323) { { - this.state = 1551; + this.state = 1557; this.windowFrame(); } } - this.state = 1554; + this.state = 1560; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7179,95 +7217,95 @@ export class FlinkSqlParser extends SQLParserBase { } public matchRecognizeClause(): MatchRecognizeClauseContext { let localContext = new MatchRecognizeClauseContext(this.context, this.state); - this.enterRule(localContext, 228, FlinkSqlParser.RULE_matchRecognizeClause); + this.enterRule(localContext, 230, FlinkSqlParser.RULE_matchRecognizeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1556; + this.state = 1562; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1557; + this.state = 1563; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1559; + this.state = 1565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1558; + this.state = 1564; this.partitionByClause(); } } - this.state = 1562; + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1561; + this.state = 1567; this.orderByClause(); } } - this.state = 1565; + this.state = 1571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1564; + this.state = 1570; this.measuresClause(); } } - this.state = 1568; + this.state = 1574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 255) { { - this.state = 1567; + this.state = 1573; this.outputMode(); } } - this.state = 1571; + this.state = 1577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 439) { { - this.state = 1570; + this.state = 1576; this.afterMatchStrategy(); } } - this.state = 1574; + this.state = 1580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 272) { { - this.state = 1573; + this.state = 1579; this.patternDefinition(); } } - this.state = 1576; + this.state = 1582; this.patternVariablesDefinition(); - this.state = 1577; + this.state = 1583; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1582; + this.state = 1588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: { - this.state = 1579; + this.state = 1585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1578; + this.state = 1584; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1581; + this.state = 1587; this.identifier(); } break; @@ -7290,34 +7328,34 @@ export class FlinkSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 230, FlinkSqlParser.RULE_orderByClause); + this.enterRule(localContext, 232, FlinkSqlParser.RULE_orderByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1584; + this.state = 1590; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1585; + this.state = 1591; this.match(FlinkSqlParser.KW_BY); - this.state = 1586; + this.state = 1592; this.orderItemDefinition(); - this.state = 1591; + this.state = 1597; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 176, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1587; + this.state = 1593; this.match(FlinkSqlParser.COMMA); - this.state = 1588; + this.state = 1594; this.orderItemDefinition(); } } } - this.state = 1593; + this.state = 1599; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 176, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); } } } @@ -7337,19 +7375,19 @@ export class FlinkSqlParser extends SQLParserBase { } public orderItemDefinition(): OrderItemDefinitionContext { let localContext = new OrderItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 232, FlinkSqlParser.RULE_orderItemDefinition); + this.enterRule(localContext, 234, FlinkSqlParser.RULE_orderItemDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1594; + this.state = 1600; this.columnName(); - this.state = 1596; + this.state = 1602; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1595; + this.state = 1601; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 451)) { @@ -7362,14 +7400,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1600; + this.state = 1606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - this.state = 1598; + this.state = 1604; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1599; + this.state = 1605; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 458 || _la === 468)) { @@ -7400,18 +7438,18 @@ export class FlinkSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 234, FlinkSqlParser.RULE_limitClause); + this.enterRule(localContext, 236, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1602; + this.state = 1608; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1605; + this.state = 1611; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1603; + this.state = 1609; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7574,7 +7612,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1604; + this.state = 1610; localContext._limit = this.expression(); } break; @@ -7599,58 +7637,58 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 236, FlinkSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 238, FlinkSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1607; + this.state = 1613; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1608; + this.state = 1614; this.match(FlinkSqlParser.KW_BY); - this.state = 1611; + this.state = 1617; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1609; + this.state = 1615; this.columnName(); } break; case 2: { - this.state = 1610; + this.state = 1616; this.primaryExpression(0); } break; } - this.state = 1620; + this.state = 1626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1613; + this.state = 1619; this.match(FlinkSqlParser.COMMA); - this.state = 1616; + this.state = 1622; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1614; + this.state = 1620; this.columnName(); } break; case 2: { - this.state = 1615; + this.state = 1621; this.primaryExpression(0); } break; } } } - this.state = 1622; + this.state = 1628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7672,16 +7710,16 @@ export class FlinkSqlParser extends SQLParserBase { } public quantifiers(): QuantifiersContext { let localContext = new QuantifiersContext(this.context, this.state); - this.enterRule(localContext, 238, FlinkSqlParser.RULE_quantifiers); + this.enterRule(localContext, 240, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1639; + this.state = 1645; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1623; + this.state = 1629; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7690,7 +7728,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1624; + this.state = 1630; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7699,7 +7737,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1625; + this.state = 1631; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7708,15 +7746,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1626; + this.state = 1632; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1627; + this.state = 1633; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1628; + this.state = 1634; this.match(FlinkSqlParser.COMMA); - this.state = 1629; + this.state = 1635; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1630; + this.state = 1636; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7725,13 +7763,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1631; + this.state = 1637; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1632; + this.state = 1638; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1633; + this.state = 1639; this.match(FlinkSqlParser.COMMA); - this.state = 1634; + this.state = 1640; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7740,13 +7778,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1635; + this.state = 1641; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1636; + this.state = 1642; this.match(FlinkSqlParser.COMMA); - this.state = 1637; + this.state = 1643; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1638; + this.state = 1644; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7769,28 +7807,28 @@ export class FlinkSqlParser extends SQLParserBase { } public measuresClause(): MeasuresClauseContext { let localContext = new MeasuresClauseContext(this.context, this.state); - this.enterRule(localContext, 240, FlinkSqlParser.RULE_measuresClause); + this.enterRule(localContext, 242, FlinkSqlParser.RULE_measuresClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1641; + this.state = 1647; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1642; + this.state = 1648; this.projectItemDefinition(); - this.state = 1647; + this.state = 1653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1643; + this.state = 1649; this.match(FlinkSqlParser.COMMA); - this.state = 1644; + this.state = 1650; this.projectItemDefinition(); } } - this.state = 1649; + this.state = 1655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7812,37 +7850,37 @@ export class FlinkSqlParser extends SQLParserBase { } public patternDefinition(): PatternDefinitionContext { let localContext = new PatternDefinitionContext(this.context, this.state); - this.enterRule(localContext, 242, FlinkSqlParser.RULE_patternDefinition); + this.enterRule(localContext, 244, FlinkSqlParser.RULE_patternDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1650; + this.state = 1656; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1651; + this.state = 1657; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1653; + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1652; + this.state = 1658; this.patternVariable(); } } - this.state = 1655; + this.state = 1661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 539 || _la === 542); - this.state = 1657; + this.state = 1663; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1659; + this.state = 1665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 435) { { - this.state = 1658; + this.state = 1664; this.withinClause(); } } @@ -7865,19 +7903,19 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariable(): PatternVariableContext { let localContext = new PatternVariableContext(this.context, this.state); - this.enterRule(localContext, 244, FlinkSqlParser.RULE_patternVariable); + this.enterRule(localContext, 246, FlinkSqlParser.RULE_patternVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1661; + this.state = 1667; this.unquotedIdentifier(); - this.state = 1663; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 519)) & ~0x1F) === 0 && ((1 << (_la - 519)) & 135681) !== 0)) { { - this.state = 1662; + this.state = 1668; this.quantifiers(); } } @@ -7900,34 +7938,34 @@ export class FlinkSqlParser extends SQLParserBase { } public outputMode(): OutputModeContext { let localContext = new OutputModeContext(this.context, this.state); - this.enterRule(localContext, 246, FlinkSqlParser.RULE_outputMode); + this.enterRule(localContext, 248, FlinkSqlParser.RULE_outputMode); try { - this.state = 1673; + this.state = 1679; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1665; + this.state = 1671; this.match(FlinkSqlParser.KW_ALL); - this.state = 1666; + this.state = 1672; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1667; + this.state = 1673; this.match(FlinkSqlParser.KW_PER); - this.state = 1668; + this.state = 1674; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1669; + this.state = 1675; this.match(FlinkSqlParser.KW_ONE); - this.state = 1670; + this.state = 1676; this.match(FlinkSqlParser.KW_ROW); - this.state = 1671; + this.state = 1677; this.match(FlinkSqlParser.KW_PER); - this.state = 1672; + this.state = 1678; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7951,76 +7989,76 @@ export class FlinkSqlParser extends SQLParserBase { } public afterMatchStrategy(): AfterMatchStrategyContext { let localContext = new AfterMatchStrategyContext(this.context, this.state); - this.enterRule(localContext, 248, FlinkSqlParser.RULE_afterMatchStrategy); + this.enterRule(localContext, 250, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1699; + this.state = 1705; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1675; + this.state = 1681; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1676; + this.state = 1682; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1677; + this.state = 1683; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1678; + this.state = 1684; this.match(FlinkSqlParser.KW_PAST); - this.state = 1679; + this.state = 1685; this.match(FlinkSqlParser.KW_LAST); - this.state = 1680; + this.state = 1686; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1681; + this.state = 1687; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1682; + this.state = 1688; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1683; + this.state = 1689; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1684; + this.state = 1690; this.match(FlinkSqlParser.KW_TO); - this.state = 1685; + this.state = 1691; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1686; + this.state = 1692; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1687; + this.state = 1693; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1688; + this.state = 1694; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1689; + this.state = 1695; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1690; + this.state = 1696; this.match(FlinkSqlParser.KW_TO); - this.state = 1691; + this.state = 1697; this.match(FlinkSqlParser.KW_LAST); - this.state = 1692; + this.state = 1698; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1693; + this.state = 1699; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1694; + this.state = 1700; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1695; + this.state = 1701; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1696; + this.state = 1702; this.match(FlinkSqlParser.KW_TO); - this.state = 1697; + this.state = 1703; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1698; + this.state = 1704; this.unquotedIdentifier(); } break; @@ -8042,28 +8080,28 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariablesDefinition(): PatternVariablesDefinitionContext { let localContext = new PatternVariablesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 250, FlinkSqlParser.RULE_patternVariablesDefinition); + this.enterRule(localContext, 252, FlinkSqlParser.RULE_patternVariablesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1701; + this.state = 1707; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1702; + this.state = 1708; this.projectItemDefinition(); - this.state = 1707; + this.state = 1713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1703; + this.state = 1709; this.match(FlinkSqlParser.COMMA); - this.state = 1704; + this.state = 1710; this.projectItemDefinition(); } } - this.state = 1709; + this.state = 1715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8085,34 +8123,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 252, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 254, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1719; + this.state = 1725; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1710; + this.state = 1716; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1711; + this.state = 1717; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1712; + this.state = 1718; this.timeIntervalExpression(); - this.state = 1713; + this.state = 1719; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1715; + this.state = 1721; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1716; + this.state = 1722; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1717; + this.state = 1723; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1718; + this.state = 1724; this.frameBound(); } break; @@ -8136,17 +8174,17 @@ export class FlinkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 254, FlinkSqlParser.RULE_frameBound); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localContext, 1); { - this.state = 1721; + this.state = 1727; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1722; + this.state = 1728; this.match(FlinkSqlParser.KW_AND); - this.state = 1723; + this.state = 1729; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1724; + this.state = 1730; this.match(FlinkSqlParser.KW_ROW); } } @@ -8166,13 +8204,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 258, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1726; + this.state = 1732; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1727; + this.state = 1733; this.timeIntervalExpression(); } } @@ -8192,11 +8230,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 258, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 260, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1729; + this.state = 1735; this.booleanExpression(0); } } @@ -8226,25 +8264,25 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 260; - this.enterRecursionRule(localContext, 260, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 262; + this.enterRecursionRule(localContext, 262, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1743; + this.state = 1749; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1732; + this.state = 1738; this.match(FlinkSqlParser.KW_NOT); - this.state = 1733; + this.state = 1739; this.booleanExpression(6); } break; @@ -8253,13 +8291,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1734; + this.state = 1740; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1735; + this.state = 1741; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1736; + this.state = 1742; this.queryStatement(0); - this.state = 1737; + this.state = 1743; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8268,14 +8306,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1739; + this.state = 1745; this.valueExpression(0); - this.state = 1741; + this.state = 1747; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: { - this.state = 1740; + this.state = 1746; this.predicate(); } break; @@ -8284,9 +8322,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1759; + this.state = 1765; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8294,21 +8332,21 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1757; + this.state = 1763; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1745; + this.state = 1751; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1746; + this.state = 1752; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1747; + this.state = 1753; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8317,13 +8355,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1748; + this.state = 1754; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1749; + this.state = 1755; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1750; + this.state = 1756; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8331,23 +8369,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1751; + this.state = 1757; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1752; + this.state = 1758; this.match(FlinkSqlParser.KW_IS); - this.state = 1754; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1753; + this.state = 1759; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1756; + this.state = 1762; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8362,9 +8400,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1761; + this.state = 1767; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); } } } @@ -8384,33 +8422,33 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 262, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 264, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1836; + this.state = 1842; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1763; + this.state = 1769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1762; + this.state = 1768; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1765; + this.state = 1771; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1767; + this.state = 1773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 370) { { - this.state = 1766; + this.state = 1772; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 370)) { this.errorHandler.recoverInline(this); @@ -8422,131 +8460,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1769; + this.state = 1775; localContext._lower = this.valueExpression(0); - this.state = 1770; + this.state = 1776; this.match(FlinkSqlParser.KW_AND); - this.state = 1771; + this.state = 1777; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1774; + this.state = 1780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1773; + this.state = 1779; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1776; + this.state = 1782; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1777; + this.state = 1783; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1778; + this.state = 1784; this.expression(); - this.state = 1783; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1779; + this.state = 1785; this.match(FlinkSqlParser.COMMA); - this.state = 1780; + this.state = 1786; this.expression(); } } - this.state = 1785; + this.state = 1791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1786; + this.state = 1792; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1789; + this.state = 1795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1788; + this.state = 1794; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1791; + this.state = 1797; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1792; + this.state = 1798; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1793; + this.state = 1799; this.queryStatement(0); - this.state = 1794; + this.state = 1800; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1796; + this.state = 1802; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1797; + this.state = 1803; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1798; + this.state = 1804; this.queryStatement(0); - this.state = 1799; + this.state = 1805; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1802; + this.state = 1808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1801; + this.state = 1807; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1804; + this.state = 1810; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1805; + this.state = 1811; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1806; + this.state = 1812; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1807; + this.state = 1813; this.match(FlinkSqlParser.KW_IS); - this.state = 1809; + this.state = 1815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1808; + this.state = 1814; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1811; + this.state = 1817; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8561,53 +8599,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1812; + this.state = 1818; this.match(FlinkSqlParser.KW_IS); - this.state = 1814; + this.state = 1820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1813; + this.state = 1819; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1816; + this.state = 1822; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1817; + this.state = 1823; this.match(FlinkSqlParser.KW_FROM); - this.state = 1818; + this.state = 1824; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1820; + this.state = 1826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1819; + this.state = 1825; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1822; + this.state = 1828; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1823; + this.state = 1829; this.match(FlinkSqlParser.KW_TO); - this.state = 1824; + this.state = 1830; localContext._right = this.valueExpression(0); - this.state = 1827; + this.state = 1833; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 1825; + this.state = 1831; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1826; + this.state = 1832; this.stringLiteral(); } break; @@ -8617,28 +8655,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1829; + this.state = 1835; this.match(FlinkSqlParser.KW_IS); - this.state = 1830; + this.state = 1836; this.match(FlinkSqlParser.KW_JSON); - this.state = 1834; + this.state = 1840; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1831; + this.state = 1837; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1832; + this.state = 1838; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1833; + this.state = 1839; this.identifier(); } break; @@ -8663,28 +8701,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 264, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 266, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1867; + this.state = 1873; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1839; + this.state = 1845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1838; + this.state = 1844; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1841; + this.state = 1847; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1842; + this.state = 1848; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8694,40 +8732,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1856; + this.state = 1862; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { - this.state = 1843; + this.state = 1849; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1844; + this.state = 1850; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1845; + this.state = 1851; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1846; + this.state = 1852; this.expression(); - this.state = 1851; + this.state = 1857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1847; + this.state = 1853; this.match(FlinkSqlParser.COMMA); - this.state = 1848; + this.state = 1854; this.expression(); } } - this.state = 1853; + this.state = 1859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1854; + this.state = 1860; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8737,28 +8775,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1859; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1858; + this.state = 1864; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1861; + this.state = 1867; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1862; + this.state = 1868; localContext._pattern = this.valueExpression(0); - this.state = 1865; + this.state = 1871; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1863; + this.state = 1869; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1864; + this.state = 1870; this.stringLiteral(); } break; @@ -8793,23 +8831,23 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 266; - this.enterRecursionRule(localContext, 266, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 268; + this.enterRecursionRule(localContext, 268, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1873; + this.state = 1879; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1870; + this.state = 1876; this.primaryExpression(0); } break; @@ -8818,7 +8856,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1871; + this.state = 1877; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3145729) !== 0))) { @@ -8828,15 +8866,15 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1872; + this.state = 1878; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1896; + this.state = 1902; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8844,19 +8882,19 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1894; + this.state = 1900; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1875; + this.state = 1881; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1876; + this.state = 1882; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 145) !== 0))) { @@ -8866,7 +8904,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1877; + this.state = 1883; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8875,11 +8913,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1878; + this.state = 1884; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1879; + this.state = 1885; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 11) !== 0))) { @@ -8889,7 +8927,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1880; + this.state = 1886; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8898,13 +8936,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1881; + this.state = 1887; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1882; + this.state = 1888; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1883; + this.state = 1889; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8913,13 +8951,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1884; + this.state = 1890; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1885; + this.state = 1891; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1886; + this.state = 1892; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8928,13 +8966,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1887; + this.state = 1893; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1888; + this.state = 1894; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1889; + this.state = 1895; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -8943,22 +8981,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1890; + this.state = 1896; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1891; + this.state = 1897; this.comparisonOperator(); - this.state = 1892; + this.state = 1898; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1898; + this.state = 1904; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); } } } @@ -8978,10 +9016,10 @@ export class FlinkSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 268, FlinkSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 1918; + this.state = 1924; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -8991,7 +9029,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 1899; + this.state = 1905; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -9001,7 +9039,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 1900; + this.state = 1906; this.functionNameAndParams(); } break; @@ -9142,47 +9180,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 1901; + this.state = 1907; this.functionNameWithParams(); - this.state = 1902; + this.state = 1908; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1914; + this.state = 1920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396848) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 10489249) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 1883341377) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 201330753) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 488456033) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 390)) & ~0x1F) === 0 && ((1 << (_la - 390)) & 3238528833) !== 0) || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 4294966785) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 4294967295) !== 0) || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 33832959) !== 0) || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 31757) !== 0)) { { - this.state = 1904; + this.state = 1910; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 1903; + this.state = 1909; this.setQuantifier(); } break; } - this.state = 1906; + this.state = 1912; this.functionParam(); - this.state = 1911; + this.state = 1917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1907; + this.state = 1913; this.match(FlinkSqlParser.COMMA); - this.state = 1908; + this.state = 1914; this.functionParam(); } } - this.state = 1913; + this.state = 1919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1916; + this.state = 1922; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9216,51 +9254,51 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 270; - this.enterRecursionRule(localContext, 270, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 272; + this.enterRecursionRule(localContext, 272, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1995; + this.state = 2001; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1921; + this.state = 1927; this.match(FlinkSqlParser.KW_CASE); - this.state = 1923; + this.state = 1929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1922; + this.state = 1928; this.whenClause(); } } - this.state = 1925; + this.state = 1931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 1929; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1927; + this.state = 1933; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1928; + this.state = 1934; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1931; + this.state = 1937; this.match(FlinkSqlParser.KW_END); } break; @@ -9269,37 +9307,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1933; + this.state = 1939; this.match(FlinkSqlParser.KW_CASE); - this.state = 1934; + this.state = 1940; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1936; + this.state = 1942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1935; + this.state = 1941; this.whenClause(); } } - this.state = 1938; + this.state = 1944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 1942; + this.state = 1948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1940; + this.state = 1946; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1941; + this.state = 1947; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1944; + this.state = 1950; this.match(FlinkSqlParser.KW_END); } break; @@ -9308,17 +9346,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1946; + this.state = 1952; this.match(FlinkSqlParser.KW_CAST); - this.state = 1947; + this.state = 1953; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1948; + this.state = 1954; this.expression(); - this.state = 1949; + this.state = 1955; this.match(FlinkSqlParser.KW_AS); - this.state = 1950; + this.state = 1956; this.columnType(); - this.state = 1951; + this.state = 1957; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9327,25 +9365,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1953; + this.state = 1959; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1954; + this.state = 1960; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1955; + this.state = 1961; this.expression(); - this.state = 1958; + this.state = 1964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 1956; + this.state = 1962; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1957; + this.state = 1963; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1960; + this.state = 1966; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9354,25 +9392,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1962; + this.state = 1968; this.match(FlinkSqlParser.KW_LAST); - this.state = 1963; + this.state = 1969; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1964; + this.state = 1970; this.expression(); - this.state = 1967; + this.state = 1973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 1965; + this.state = 1971; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1966; + this.state = 1972; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1969; + this.state = 1975; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9381,17 +9419,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1971; + this.state = 1977; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1972; + this.state = 1978; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1973; + this.state = 1979; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1974; + this.state = 1980; this.match(FlinkSqlParser.KW_IN); - this.state = 1975; + this.state = 1981; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1976; + this.state = 1982; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9400,7 +9438,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1978; + this.state = 1984; this.constant(); } break; @@ -9409,7 +9447,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1979; + this.state = 1985; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9418,11 +9456,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1980; + this.state = 1986; this.uid(); - this.state = 1981; + this.state = 1987; this.match(FlinkSqlParser.DOT); - this.state = 1982; + this.state = 1988; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9431,11 +9469,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1984; + this.state = 1990; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1985; + this.state = 1991; this.queryStatement(0); - this.state = 1986; + this.state = 1992; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9444,7 +9482,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1988; + this.state = 1994; this.functionCallExpression(); } break; @@ -9453,7 +9491,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1989; + this.state = 1995; this.columnNamePath(); } break; @@ -9462,7 +9500,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1990; + this.state = 1996; this.dereferenceDefinition(); } break; @@ -9471,19 +9509,19 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1991; + this.state = 1997; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1992; + this.state = 1998; this.expression(); - this.state = 1993; + this.state = 1999; this.match(FlinkSqlParser.RR_BRACKET); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2004; + this.state = 2010; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9495,22 +9533,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 1997; + this.state = 2003; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1998; + this.state = 2004; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1999; + this.state = 2005; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2000; + this.state = 2006; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2006; + this.state = 2012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } } } @@ -9530,11 +9568,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2007; + this.state = 2013; this.uid(); } } @@ -9554,36 +9592,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionName); try { - this.state = 2013; + this.state = 2019; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2009; + this.state = 2015; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2010; + this.state = 2016; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2011; + this.state = 2017; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2012; + this.state = 2018; this.uid(); } break; @@ -9605,9 +9643,9 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameAndParams(): FunctionNameAndParamsContext { let localContext = new FunctionNameAndParamsContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionNameAndParams); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionNameAndParams); try { - this.state = 2019; + this.state = 2025; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_DATE: @@ -9615,16 +9653,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2015; + this.state = 2021; this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2016; + this.state = 2022; this.match(FlinkSqlParser.STRING_LITERAL); } break; case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 2018; + this.state = 2024; this.timeIntervalExpression(); } break; @@ -9648,22 +9686,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameWithParams(): FunctionNameWithParamsContext { let localContext = new FunctionNameWithParamsContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionNameWithParams); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 2023; + this.state = 2029; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2021; + this.state = 2027; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2022; + this.state = 2028; this.uid(); } break; @@ -9685,36 +9723,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_functionParam); try { - this.state = 2029; + this.state = 2035; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2025; + this.state = 2031; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2026; + this.state = 2032; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2027; + this.state = 2033; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2028; + this.state = 2034; this.expression(); } break; @@ -9736,11 +9774,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2031; + this.state = 2037; this.uid(); } } @@ -9760,11 +9798,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2039; this.identifier(); } } @@ -9784,22 +9822,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2037; + this.state = 2043; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2035; + this.state = 2041; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2036; + this.state = 2042; this.dereferenceDefinition(); } break; @@ -9821,24 +9859,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 2045; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2042; + this.state = 2048; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 2040; + this.state = 2046; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2041; + this.state = 2047; this.errorCapturingUnitToUnitInterval(); } break; @@ -9861,18 +9899,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2044; + this.state = 2050; this.multiUnitsInterval(); - this.state = 2046; + this.state = 2052; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 2045; + this.state = 2051; this.unitToUnitInterval(); } break; @@ -9895,12 +9933,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2051; + this.state = 2057; this.errorHandler.sync(this); alternative = 1; do { @@ -9908,9 +9946,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2048; + this.state = 2054; this.intervalValue(); - this.state = 2049; + this.state = 2055; this.timeIntervalUnit(); } } @@ -9918,9 +9956,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2053; + this.state = 2059; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -9940,24 +9978,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 2061; localContext._body = this.unitToUnitInterval(); - this.state = 2058; + this.state = 2064; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 2056; + this.state = 2062; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2057; + this.state = 2063; localContext._error2 = this.unitToUnitInterval(); } break; @@ -9980,17 +10018,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2060; + this.state = 2066; localContext._value = this.intervalValue(); - this.state = 2061; + this.state = 2067; localContext._from_ = this.timeIntervalUnit(); - this.state = 2062; + this.state = 2068; this.match(FlinkSqlParser.KW_TO); - this.state = 2063; + this.state = 2069; localContext._to = this.timeIntervalUnit(); } } @@ -10010,10 +10048,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2070; + this.state = 2076; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -10022,12 +10060,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2066; + this.state = 2072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530 || _la === 531) { { - this.state = 2065; + this.state = 2071; _la = this.tokenStream.LA(1); if(!(_la === 530 || _la === 531)) { this.errorHandler.recoverInline(this); @@ -10039,7 +10077,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2068; + this.state = 2074; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 540)) { this.errorHandler.recoverInline(this); @@ -10053,7 +10091,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2069; + this.state = 2075; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10077,29 +10115,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2073; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2072; + this.state = 2078; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2075; + this.state = 2081; localContext._alias = this.identifier(); - this.state = 2077; + this.state = 2083; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 2076; + this.state = 2082; this.identifierList(); } break; @@ -10122,13 +10160,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2079; + this.state = 2085; this.identifier(); - this.state = 2080; + this.state = 2086; this.errorCapturingIdentifierExtra(); } } @@ -10148,29 +10186,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2089; + this.state = 2095; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2082; + this.state = 2088; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2083; + this.state = 2089; this.identifier(); } } - this.state = 2086; + this.state = 2092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 222); @@ -10204,15 +10242,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2091; + this.state = 2097; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2092; + this.state = 2098; this.identifierSeq(); - this.state = 2093; + this.state = 2099; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10232,26 +10270,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2095; + this.state = 2101; this.identifier(); - this.state = 2100; + this.state = 2106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2096; + this.state = 2102; this.match(FlinkSqlParser.COMMA); - this.state = 2097; + this.state = 2103; this.identifier(); } } - this.state = 2102; + this.state = 2108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10273,9 +10311,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_identifier); try { - this.state = 2106; + this.state = 2112; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -10283,7 +10321,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2103; + this.state = 2109; this.unquotedIdentifier(); } break; @@ -10291,7 +10329,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2104; + this.state = 2110; this.quotedIdentifier(); } break; @@ -10366,7 +10404,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2105; + this.state = 2111; this.nonReservedKeywords(); } break; @@ -10390,12 +10428,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2108; + this.state = 2114; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 542)) { this.errorHandler.recoverInline(this); @@ -10422,11 +10460,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2110; + this.state = 2116; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10446,17 +10484,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2112; + this.state = 2118; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2113; + this.state = 2119; localContext._condition = this.expression(); - this.state = 2114; + this.state = 2120; this.match(FlinkSqlParser.KW_THEN); - this.state = 2115; + this.state = 2121; localContext._result = this.expression(); } } @@ -10476,11 +10514,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 2123; this.identifier(); } } @@ -10500,11 +10538,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2119; + this.state = 2125; this.identifier(); } } @@ -10524,21 +10562,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2121; + this.state = 2127; this.identifier(); - this.state = 2124; + this.state = 2130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2122; + this.state = 2128; this.match(FlinkSqlParser.DOT); - this.state = 2123; + this.state = 2129; this.identifier(); } } @@ -10561,21 +10599,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2126; + this.state = 2132; this.identifier(); - this.state = 2129; + this.state = 2135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2127; + this.state = 2133; this.match(FlinkSqlParser.DOT); - this.state = 2128; + this.state = 2134; this.identifier(); } } @@ -10598,25 +10636,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2143; + this.state = 2149; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2131; + this.state = 2137; this.identifier(); - this.state = 2134; + this.state = 2140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2132; + this.state = 2138; this.match(FlinkSqlParser.DOT); - this.state = 2133; + this.state = 2139; this.identifier(); } } @@ -10626,20 +10664,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2136; + this.state = 2142; this.identifier(); - this.state = 2137; + this.state = 2143; this.match(FlinkSqlParser.DOT); - this.state = 2138; + this.state = 2144; this.identifier(); - this.state = 2141; + this.state = 2147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2139; + this.state = 2145; this.match(FlinkSqlParser.DOT); - this.state = 2140; + this.state = 2146; this.identifier(); } } @@ -10664,24 +10702,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_tablePath); try { - this.state = 2157; + this.state = 2163; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2151; this.identifier(); - this.state = 2148; + this.state = 2154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2146; + this.state = 2152; this.match(FlinkSqlParser.DOT); - this.state = 2147; + this.state = 2153; this.identifier(); } break; @@ -10691,20 +10729,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2150; + this.state = 2156; this.identifier(); - this.state = 2151; + this.state = 2157; this.match(FlinkSqlParser.DOT); - this.state = 2152; + this.state = 2158; this.identifier(); - this.state = 2155; + this.state = 2161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2153; + this.state = 2159; this.match(FlinkSqlParser.DOT); - this.state = 2154; + this.state = 2160; this.identifier(); } break; @@ -10729,24 +10767,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_viewPath); try { - this.state = 2171; + this.state = 2177; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2159; + this.state = 2165; this.identifier(); - this.state = 2162; + this.state = 2168; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2160; + this.state = 2166; this.match(FlinkSqlParser.DOT); - this.state = 2161; + this.state = 2167; this.identifier(); } break; @@ -10756,20 +10794,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2164; + this.state = 2170; this.identifier(); - this.state = 2165; + this.state = 2171; this.match(FlinkSqlParser.DOT); - this.state = 2166; + this.state = 2172; this.identifier(); - this.state = 2169; + this.state = 2175; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2167; + this.state = 2173; this.match(FlinkSqlParser.DOT); - this.state = 2168; + this.state = 2174; this.identifier(); } break; @@ -10794,25 +10832,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2185; + this.state = 2191; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2179; this.identifier(); - this.state = 2176; + this.state = 2182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2174; + this.state = 2180; this.match(FlinkSqlParser.DOT); - this.state = 2175; + this.state = 2181; this.identifier(); } } @@ -10822,20 +10860,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2178; + this.state = 2184; this.identifier(); - this.state = 2179; + this.state = 2185; this.match(FlinkSqlParser.DOT); - this.state = 2180; + this.state = 2186; this.identifier(); - this.state = 2183; + this.state = 2189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2181; + this.state = 2187; this.match(FlinkSqlParser.DOT); - this.state = 2182; + this.state = 2188; this.identifier(); } } @@ -10860,30 +10898,30 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2187; + this.state = 2193; this.identifier(); - this.state = 2192; + this.state = 2198; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 261, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 262, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2188; + this.state = 2194; this.match(FlinkSqlParser.DOT); - this.state = 2189; + this.state = 2195; this.identifier(); } } } - this.state = 2194; + this.state = 2200; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 261, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 262, this.context); } } } @@ -10903,13 +10941,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2195; + this.state = 2201; this.match(FlinkSqlParser.KW_WITH); - this.state = 2196; + this.state = 2202; this.tablePropertyList(); } } @@ -10929,15 +10967,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2198; + this.state = 2204; this.match(FlinkSqlParser.KW_IF); - this.state = 2199; + this.state = 2205; this.match(FlinkSqlParser.KW_NOT); - this.state = 2200; + this.state = 2206; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10957,13 +10995,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2202; + this.state = 2208; this.match(FlinkSqlParser.KW_IF); - this.state = 2203; + this.state = 2209; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10983,32 +11021,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2211; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2206; + this.state = 2212; this.tableProperty(); - this.state = 2211; + this.state = 2217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2207; + this.state = 2213; this.match(FlinkSqlParser.COMMA); - this.state = 2208; + this.state = 2214; this.tableProperty(); } } - this.state = 2213; + this.state = 2219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2214; + this.state = 2220; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11028,29 +11066,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2216; + this.state = 2222; localContext._key = this.tablePropertyKey(); - this.state = 2221; + this.state = 2227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 398 || _la === 506 || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 7) !== 0)) { { - this.state = 2218; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 2217; + this.state = 2223; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2220; + this.state = 2226; localContext._value = this.tablePropertyValue(); } } @@ -11073,29 +11111,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2226; + this.state = 2232; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2229; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2224; + this.state = 2230; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2225; + this.state = 2231; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11117,22 +11155,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2232; + this.state = 2238; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2228; + this.state = 2234; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2229; + this.state = 2235; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -11140,14 +11178,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2230; + this.state = 2236; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2231; + this.state = 2237; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11171,40 +11209,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2240; + this.state = 2246; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2234; + this.state = 2240; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2241; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2236; + this.state = 2242; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2237; + this.state = 2243; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2238; + this.state = 2244; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2239; + this.state = 2245; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11228,76 +11266,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2256; + this.state = 2262; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2242; + this.state = 2248; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2243; + this.state = 2249; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2244; + this.state = 2250; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2245; + this.state = 2251; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2246; + this.state = 2252; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2247; + this.state = 2253; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2248; + this.state = 2254; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2249; + this.state = 2255; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2250; + this.state = 2256; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2251; + this.state = 2257; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2252; + this.state = 2258; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2253; + this.state = 2259; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2254; + this.state = 2260; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2255; + this.state = 2261; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11319,47 +11357,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2265; + this.state = 2271; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2258; + this.state = 2264; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2259; + this.state = 2265; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2260; + this.state = 2266; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2261; + this.state = 2267; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2262; + this.state = 2268; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2263; + this.state = 2269; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2264; + this.state = 2270; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11383,12 +11421,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2273; _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11415,12 +11453,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2275; _la = this.tokenStream.LA(1); if(!(_la === 242 || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11447,16 +11485,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2285; + this.state = 2291; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2277; this.timeIntervalExpression(); } break; @@ -11472,14 +11510,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2272; + this.state = 2278; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2273; + this.state = 2279; this.stringLiteral(); } break; @@ -11487,17 +11525,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2275; + this.state = 2281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530) { { - this.state = 2274; + this.state = 2280; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2277; + this.state = 2283; this.decimalLiteral(); } break; @@ -11505,21 +11543,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2278; + this.state = 2284; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2279; + this.state = 2285; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2280; + this.state = 2286; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11527,17 +11565,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2282; + this.state = 2288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 2281; + this.state = 2287; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2284; + this.state = 2290; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11561,13 +11599,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2287; + this.state = 2293; this.timePointUnit(); - this.state = 2288; + this.state = 2294; this.stringLiteral(); } } @@ -11587,11 +11625,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2290; + this.state = 2296; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11611,11 +11649,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2292; + this.state = 2298; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11635,12 +11673,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2294; + this.state = 2300; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 398)) { this.errorHandler.recoverInline(this); @@ -11667,12 +11705,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2296; + this.state = 2302; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11699,12 +11737,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2298; + this.state = 2304; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || _la === 437 || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 262149) !== 0) || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11731,12 +11769,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2300; + this.state = 2306; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 140542465) !== 0) || ((((_la - 461)) & ~0x1F) === 0 && ((1 << (_la - 461)) & 2415983617) !== 0) || _la === 503 || _la === 504)) { this.errorHandler.recoverInline(this); @@ -11763,12 +11801,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 376, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2308; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 201)) & ~0x1F) === 0 && ((1 << (_la - 201)) & 385) !== 0) || _la === 390 || _la === 414 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -11795,12 +11833,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 378, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2304; + this.state = 2310; _la = this.tokenStream.LA(1); if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -11827,12 +11865,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 380, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2306; + this.state = 2312; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 379 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -11859,12 +11897,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 382, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2308; + this.state = 2314; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 277391867) !== 0) || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 41943565) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 8389763) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339865) !== 0) || _la === 437 || _la === 470 || _la === 489 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11891,12 +11929,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 384, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 386, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2310; + this.state = 2316; _la = this.tokenStream.LA(1); if(!(((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11926,15 +11964,15 @@ export class FlinkSqlParser extends SQLParserBase { switch (ruleIndex) { case 26: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 79: + case 80: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); - case 89: + case 90: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 130: + case 131: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 133: + case 134: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 135: + case 136: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -11999,7 +12037,7 @@ export class FlinkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,542,2313,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,542,2319,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, @@ -12031,956 +12069,959 @@ export class FlinkSqlParser extends SQLParserBase { 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,1,0,5,0,388,8,0,10,0,12,0,391,9,0,1,0,1,0,1,1,1,1,3, - 1,397,8,1,1,1,3,1,400,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,3,2,414,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, - 4,1,4,1,4,1,4,1,4,1,4,3,4,432,8,4,1,5,1,5,3,5,436,8,5,1,6,1,6,1, - 6,1,7,1,7,1,7,1,7,3,7,445,8,7,1,7,1,7,1,7,3,7,450,8,7,1,8,1,8,1, - 8,5,8,455,8,8,10,8,12,8,458,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10, - 1,10,3,10,468,8,10,1,11,1,11,1,11,1,11,1,11,5,11,475,8,11,10,11, - 12,11,478,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12, - 489,8,12,1,12,3,12,492,8,12,1,12,1,12,1,12,1,12,1,12,3,12,499,8, - 12,1,12,3,12,502,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,510,8,12, - 1,12,1,12,3,12,514,8,12,1,12,1,12,1,12,3,12,519,8,12,1,12,3,12,522, - 8,12,1,13,1,13,1,13,1,13,1,13,3,13,529,8,13,1,14,1,14,1,14,1,14, - 1,15,1,15,3,15,537,8,15,1,16,1,16,3,16,541,8,16,1,17,1,17,1,17,1, - 17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,553,8,18,1,18,1,18,1,18,1, - 18,1,18,1,18,3,18,561,8,18,1,18,1,18,3,18,565,8,18,1,18,1,18,1,18, + 2,192,7,192,2,193,7,193,1,0,5,0,390,8,0,10,0,12,0,393,9,0,1,0,1, + 0,1,1,1,1,3,1,399,8,1,1,1,3,1,402,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,3,2,416,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1, + 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,434,8,4,1,5,1,5,3,5,438,8, + 5,1,6,1,6,1,6,1,7,1,7,1,7,1,7,3,7,447,8,7,1,7,1,7,1,7,3,7,452,8, + 7,1,8,1,8,1,8,5,8,457,8,8,10,8,12,8,460,9,8,1,9,1,9,1,10,1,10,1, + 10,1,10,1,10,1,10,3,10,470,8,10,1,11,1,11,1,11,1,11,1,11,5,11,477, + 8,11,10,11,12,11,480,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, + 1,12,3,12,491,8,12,1,12,3,12,494,8,12,1,12,1,12,1,12,1,12,1,12,3, + 12,501,8,12,1,12,3,12,504,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12, + 512,8,12,1,12,1,12,3,12,516,8,12,1,12,1,12,1,12,3,12,521,8,12,1, + 12,3,12,524,8,12,1,13,1,13,1,13,1,13,1,13,3,13,531,8,13,1,14,1,14, + 1,14,1,14,1,15,1,15,3,15,539,8,15,1,16,1,16,3,16,543,8,16,1,17,1, + 17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,555,8,18,1,18,1, + 18,1,18,1,18,1,18,1,18,3,18,563,8,18,1,18,1,18,3,18,567,8,18,1,18, 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 1,18,3,18,597,8,18,1,19,3,19,600,8,19,1,19,4,19,603,8,19,11,19,12, - 19,604,1,20,1,20,3,20,609,8,20,1,21,1,21,3,21,613,8,21,1,21,1,21, - 3,21,617,8,21,1,21,1,21,1,21,1,21,1,21,5,21,624,8,21,10,21,12,21, - 627,9,21,1,21,1,21,3,21,631,8,21,1,21,1,21,3,21,635,8,21,1,21,1, - 21,3,21,639,8,21,1,21,1,21,1,21,3,21,644,8,21,1,21,3,21,647,8,21, - 1,21,1,21,3,21,651,8,21,1,22,1,22,1,22,3,22,656,8,22,1,22,1,22,1, - 22,1,22,3,22,662,8,22,1,23,1,23,1,23,3,23,667,8,23,1,24,1,24,1,24, - 3,24,672,8,24,1,24,1,24,3,24,676,8,24,1,25,1,25,3,25,680,8,25,1, - 26,1,26,3,26,684,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5,28,692,8,28, - 10,28,12,28,695,9,28,1,28,1,28,1,29,1,29,1,29,3,29,702,8,29,1,29, - 1,29,3,29,706,8,29,1,29,1,29,3,29,710,8,29,1,29,1,29,3,29,714,8, - 29,1,29,1,29,3,29,718,8,29,1,29,1,29,3,29,722,8,29,1,29,1,29,3,29, - 726,8,29,1,29,1,29,3,29,730,8,29,1,29,1,29,3,29,734,8,29,3,29,736, - 8,29,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,746,8,31,1,31, - 1,31,1,32,1,32,1,32,1,32,3,32,754,8,32,1,32,1,32,1,33,1,33,1,33, - 1,33,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,35,1,35,5,35,776,8,35,10,35,12,35,779,9,35,1,35,1,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,5,35,790,8,35,10,35,12,35,793,9,35,1,35, - 1,35,3,35,797,8,35,1,36,1,36,3,36,801,8,36,1,36,1,36,1,36,1,36,3, - 36,807,8,36,1,36,3,36,810,8,36,1,36,3,36,813,8,36,1,37,1,37,1,37, - 1,37,1,37,3,37,820,8,37,1,37,3,37,823,8,37,1,38,1,38,1,39,1,39,1, - 39,1,39,1,39,3,39,832,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1, - 41,1,42,1,42,3,42,844,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1, - 43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5, - 46,866,8,46,10,46,12,46,869,9,46,1,46,1,46,1,47,1,47,1,47,1,47,1, - 47,5,47,878,8,47,10,47,12,47,881,9,47,1,47,1,47,3,47,885,8,47,1, - 48,1,48,3,48,889,8,48,1,49,1,49,1,49,1,49,5,49,895,8,49,10,49,12, - 49,898,9,49,1,49,3,49,901,8,49,1,50,1,50,1,50,1,50,3,50,907,8,50, - 1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,917,8,52,1,52,1,52, - 1,52,3,52,922,8,52,1,52,1,52,1,53,1,53,3,53,928,8,53,1,53,1,53,3, - 53,932,8,53,1,53,1,53,3,53,936,8,53,1,53,1,53,3,53,940,8,53,1,53, - 1,53,1,53,1,54,1,54,1,54,1,54,3,54,949,8,54,1,54,1,54,3,54,953,8, - 54,1,54,1,54,1,54,1,54,1,54,3,54,960,8,54,1,54,3,54,963,8,54,1,55, - 1,55,1,55,1,55,1,55,1,55,5,55,971,8,55,10,55,12,55,974,9,55,1,56, - 1,56,1,57,1,57,1,57,3,57,981,8,57,1,57,1,57,1,57,1,57,1,57,1,57, - 3,57,989,8,57,1,58,1,58,3,58,993,8,58,1,58,1,58,1,58,1,59,1,59,1, - 59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1008,8,60,1,61,1,61,1, - 61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1, - 64,1,64,3,64,1027,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1, - 66,3,66,1038,8,66,1,66,1,66,3,66,1042,8,66,1,66,1,66,1,66,1,66,1, - 66,3,66,1049,8,66,1,67,1,67,1,67,3,67,1054,8,67,1,67,1,67,1,68,1, - 68,3,68,1060,8,68,1,68,1,68,3,68,1064,8,68,1,68,1,68,1,69,1,69,1, - 69,3,69,1071,8,69,1,69,1,69,3,69,1075,8,69,1,70,1,70,3,70,1079,8, - 70,1,70,1,70,3,70,1083,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71,1091, - 8,71,1,71,1,71,3,71,1095,8,71,1,71,1,71,1,72,3,72,1100,8,72,1,72, - 1,72,1,72,1,72,3,72,1106,8,72,1,73,1,73,1,73,1,73,3,73,1112,8,73, - 1,73,3,73,1115,8,73,1,73,1,73,3,73,1119,8,73,1,74,1,74,1,74,1,75, - 1,75,1,75,1,75,5,75,1128,8,75,10,75,12,75,1131,9,75,1,76,1,76,1, - 76,1,76,5,76,1137,8,76,10,76,12,76,1140,9,76,1,76,1,76,1,77,1,77, - 1,77,1,77,1,77,1,77,1,77,4,77,1151,8,77,11,77,12,77,1152,1,77,1, - 77,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1163,8,78,11,78,12,78,1164, - 1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79, - 3,79,1180,8,79,1,79,3,79,1183,8,79,1,79,1,79,3,79,1187,8,79,1,79, - 3,79,1190,8,79,3,79,1192,8,79,1,79,1,79,1,79,3,79,1197,8,79,1,79, - 1,79,3,79,1201,8,79,1,79,3,79,1204,8,79,5,79,1206,8,79,10,79,12, - 79,1209,9,79,1,80,1,80,1,80,1,80,5,80,1215,8,80,10,80,12,80,1218, - 9,80,1,81,1,81,1,81,1,81,5,81,1224,8,81,10,81,12,81,1227,9,81,1, - 82,1,82,1,82,1,82,1,82,5,82,1234,8,82,10,82,12,82,1237,9,82,1,82, - 1,82,3,82,1241,8,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,84,1,84, - 3,84,1252,8,84,1,84,3,84,1255,8,84,1,84,3,84,1258,8,84,1,84,3,84, - 1261,8,84,1,84,3,84,1264,8,84,1,84,1,84,1,84,1,84,3,84,1270,8,84, - 1,85,1,85,3,85,1274,8,85,1,85,1,85,1,85,1,85,5,85,1280,8,85,10,85, - 12,85,1283,9,85,3,85,1285,8,85,1,86,1,86,1,86,3,86,1290,8,86,1,86, - 3,86,1293,8,86,1,86,1,86,3,86,1297,8,86,1,86,3,86,1300,8,86,3,86, - 1302,8,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87, - 1,87,3,87,1316,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,1325, - 8,89,10,89,12,89,1328,9,89,1,89,1,89,3,89,1332,8,89,1,89,1,89,1, - 89,1,89,1,89,1,89,3,89,1340,8,89,1,89,3,89,1343,8,89,1,89,3,89,1346, - 8,89,1,89,1,89,1,89,3,89,1351,8,89,5,89,1353,8,89,10,89,12,89,1356, - 9,89,1,90,1,90,3,90,1360,8,90,1,91,3,91,1363,8,91,1,91,1,91,3,91, - 1367,8,91,1,91,1,91,3,91,1371,8,91,1,91,1,91,1,91,1,91,1,91,1,91, - 1,91,3,91,1380,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91, - 3,91,1391,8,91,1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,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, - 5,96,1416,8,96,10,96,12,96,1419,9,96,1,96,1,96,1,97,1,97,1,98,1, - 98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1, - 98,3,98,1440,8,98,1,99,1,99,1,100,1,100,1,100,1,100,1,100,1,101, - 1,101,1,101,1,101,3,101,1453,8,101,1,102,1,102,1,102,1,103,1,103, - 1,103,1,103,1,103,5,103,1463,8,103,10,103,12,103,1466,9,103,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104,1476,8,104,10,104, - 12,104,1479,9,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104, - 1488,8,104,10,104,12,104,1491,9,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,5,104,1500,8,104,10,104,12,104,1503,9,104,1,104,1,104, - 1,104,3,104,1508,8,104,1,105,1,105,1,105,1,106,1,106,1,107,1,107, - 1,107,1,107,1,107,1,107,1,107,1,108,1,108,1,109,1,109,1,110,1,110, - 1,110,1,111,1,111,1,111,1,111,5,111,1533,8,111,10,111,12,111,1536, - 9,111,1,112,1,112,1,112,1,112,1,113,3,113,1543,8,113,1,113,1,113, - 3,113,1547,8,113,1,113,3,113,1550,8,113,1,113,3,113,1553,8,113,1, - 113,1,113,1,114,1,114,1,114,3,114,1560,8,114,1,114,3,114,1563,8, - 114,1,114,3,114,1566,8,114,1,114,3,114,1569,8,114,1,114,3,114,1572, - 8,114,1,114,3,114,1575,8,114,1,114,1,114,1,114,3,114,1580,8,114, - 1,114,3,114,1583,8,114,1,115,1,115,1,115,1,115,1,115,5,115,1590, - 8,115,10,115,12,115,1593,9,115,1,116,1,116,3,116,1597,8,116,1,116, - 1,116,3,116,1601,8,116,1,117,1,117,1,117,3,117,1606,8,117,1,118, - 1,118,1,118,1,118,3,118,1612,8,118,1,118,1,118,1,118,3,118,1617, - 8,118,5,118,1619,8,118,10,118,12,118,1622,9,118,1,119,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,3,119,1640,8,119,1,120,1,120,1,120,1,120,5,120,1646, - 8,120,10,120,12,120,1649,9,120,1,121,1,121,1,121,4,121,1654,8,121, - 11,121,12,121,1655,1,121,1,121,3,121,1660,8,121,1,122,1,122,3,122, - 1664,8,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123, - 1674,8,123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,3,124,1700,8,124,1,125,1,125,1,125,1,125, - 5,125,1706,8,125,10,125,12,125,1709,9,125,1,126,1,126,1,126,1,126, - 1,126,1,126,1,126,1,126,1,126,3,126,1720,8,126,1,127,1,127,1,127, - 1,127,1,127,1,128,1,128,1,128,1,129,1,129,1,130,1,130,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,3,130,1742,8,130,3,130,1744, - 8,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130, - 1755,8,130,1,130,5,130,1758,8,130,10,130,12,130,1761,9,130,1,131, - 3,131,1764,8,131,1,131,1,131,3,131,1768,8,131,1,131,1,131,1,131, - 1,131,1,131,3,131,1775,8,131,1,131,1,131,1,131,1,131,1,131,5,131, - 1782,8,131,10,131,12,131,1785,9,131,1,131,1,131,1,131,3,131,1790, - 8,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,3,131,1803,8,131,1,131,1,131,1,131,1,131,1,131,3,131,1810, - 8,131,1,131,1,131,1,131,3,131,1815,8,131,1,131,1,131,1,131,1,131, - 3,131,1821,8,131,1,131,1,131,1,131,1,131,1,131,3,131,1828,8,131, - 1,131,1,131,1,131,1,131,1,131,3,131,1835,8,131,3,131,1837,8,131, - 1,132,3,132,1840,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,5,132,1850,8,132,10,132,12,132,1853,9,132,1,132,1,132,3,132, - 1857,8,132,1,132,3,132,1860,8,132,1,132,1,132,1,132,1,132,3,132, - 1866,8,132,3,132,1868,8,132,1,133,1,133,1,133,1,133,3,133,1874,8, - 133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1895, - 8,133,10,133,12,133,1898,9,133,1,134,1,134,1,134,1,134,1,134,3,134, - 1905,8,134,1,134,1,134,1,134,5,134,1910,8,134,10,134,12,134,1913, - 9,134,3,134,1915,8,134,1,134,1,134,3,134,1919,8,134,1,135,1,135, - 1,135,4,135,1924,8,135,11,135,12,135,1925,1,135,1,135,3,135,1930, - 8,135,1,135,1,135,1,135,1,135,1,135,4,135,1937,8,135,11,135,12,135, - 1938,1,135,1,135,3,135,1943,8,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1959, - 8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1968,8,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,3,135,1996,8,135,1,135,1,135,1,135,1,135, - 1,135,5,135,2003,8,135,10,135,12,135,2006,9,135,1,136,1,136,1,137, - 1,137,1,137,1,137,3,137,2014,8,137,1,138,1,138,1,138,1,138,3,138, - 2020,8,138,1,139,1,139,3,139,2024,8,139,1,140,1,140,1,140,1,140, - 3,140,2030,8,140,1,141,1,141,1,142,1,142,1,143,1,143,3,143,2038, - 8,143,1,144,1,144,1,144,3,144,2043,8,144,1,145,1,145,3,145,2047, - 8,145,1,146,1,146,1,146,4,146,2052,8,146,11,146,12,146,2053,1,147, - 1,147,1,147,3,147,2059,8,147,1,148,1,148,1,148,1,148,1,148,1,149, - 3,149,2067,8,149,1,149,1,149,3,149,2071,8,149,1,150,3,150,2074,8, - 150,1,150,1,150,3,150,2078,8,150,1,151,1,151,1,151,1,152,1,152,4, - 152,2085,8,152,11,152,12,152,2086,1,152,3,152,2090,8,152,1,153,1, - 153,1,153,1,153,1,154,1,154,1,154,5,154,2099,8,154,10,154,12,154, - 2102,9,154,1,155,1,155,1,155,3,155,2107,8,155,1,156,1,156,1,157, - 1,157,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,160,1,160,1,161, - 1,161,1,161,3,161,2125,8,161,1,162,1,162,1,162,3,162,2130,8,162, - 1,163,1,163,1,163,3,163,2135,8,163,1,163,1,163,1,163,1,163,1,163, - 3,163,2142,8,163,3,163,2144,8,163,1,164,1,164,1,164,3,164,2149,8, - 164,1,164,1,164,1,164,1,164,1,164,3,164,2156,8,164,3,164,2158,8, - 164,1,165,1,165,1,165,3,165,2163,8,165,1,165,1,165,1,165,1,165,1, - 165,3,165,2170,8,165,3,165,2172,8,165,1,166,1,166,1,166,3,166,2177, - 8,166,1,166,1,166,1,166,1,166,1,166,3,166,2184,8,166,3,166,2186, - 8,166,1,167,1,167,1,167,5,167,2191,8,167,10,167,12,167,2194,9,167, - 1,168,1,168,1,168,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,171, - 1,171,1,171,1,171,5,171,2210,8,171,10,171,12,171,2213,9,171,1,171, - 1,171,1,172,1,172,3,172,2219,8,172,1,172,3,172,2222,8,172,1,173, - 1,173,1,173,3,173,2227,8,173,1,174,1,174,1,174,1,174,3,174,2233, - 8,174,1,175,1,175,1,175,1,175,1,175,1,175,3,175,2241,8,175,1,176, - 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,3,176,2257,8,176,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,3,177,2266,8,177,1,178,1,178,1,179,1,179,1,180,1,180,1,180, - 1,180,3,180,2276,8,180,1,180,1,180,1,180,1,180,1,180,3,180,2283, - 8,180,1,180,3,180,2286,8,180,1,181,1,181,1,181,1,182,1,182,1,183, - 1,183,1,184,1,184,1,185,1,185,1,186,1,186,1,187,1,187,1,188,1,188, - 1,189,1,189,1,190,1,190,1,191,1,191,1,192,1,192,1,192,1,2192,5,158, - 178,260,266,270,193,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,120,122,124,126,128,130,132,134,136,138,140,142,144,146, - 148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178, - 180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210, - 212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242, - 244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274, - 276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306, - 308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338, - 340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370, - 372,374,376,378,380,382,384,0,47,2,0,109,109,451,451,3,0,45,45,128, - 128,189,189,4,0,42,42,90,90,423,423,465,465,2,0,442,442,448,448, - 2,0,151,151,170,170,2,0,438,438,490,490,2,0,483,486,488,488,3,0, - 32,32,91,91,245,245,11,0,28,29,35,35,46,46,92,92,178,179,345,345, - 361,361,379,379,382,382,388,388,417,418,2,0,434,434,436,436,4,0, - 101,102,115,115,144,144,247,247,2,0,13,13,232,232,2,0,456,456,463, - 463,3,0,5,5,271,271,445,445,3,0,267,267,456,456,463,463,3,0,426, - 426,459,459,478,478,3,0,331,331,466,466,482,482,2,0,441,441,491, - 491,2,0,183,183,266,266,3,0,130,130,180,180,403,403,4,0,152,152, - 174,174,202,202,318,318,3,0,446,446,460,460,500,500,4,0,251,251, - 447,447,495,497,499,499,2,0,74,74,321,321,3,0,460,460,493,493,500, - 500,2,0,440,440,451,451,2,0,458,458,468,468,4,0,140,140,245,245, - 398,398,405,405,2,0,19,19,370,370,2,0,5,5,11,11,2,0,510,510,530, - 531,4,0,453,453,528,528,532,532,535,535,2,0,530,531,533,533,1,0, - 530,531,1,0,539,540,2,0,539,539,542,542,4,0,453,453,528,528,530, - 532,534,535,3,0,242,242,509,510,530,531,2,0,140,140,398,398,2,0, - 5,5,113,113,10,0,97,97,165,165,223,223,230,230,335,335,437,437,471, - 471,473,473,489,489,503,503,15,0,97,97,165,165,223,223,230,230,335, - 335,428,428,437,437,443,443,449,450,455,455,461,461,471,476,489, - 489,492,492,503,504,11,0,5,5,13,13,33,33,78,78,84,85,113,113,201, - 201,208,209,390,390,414,414,528,528,3,0,78,78,84,85,208,209,2,0, - 91,91,379,380,53,0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56, - 69,69,75,75,98,99,107,107,119,119,134,134,139,139,143,143,145,145, - 160,160,165,165,167,167,187,188,190,195,198,198,200,200,202,202, - 206,206,210,210,215,215,221,221,223,224,230,230,244,244,246,246, - 265,265,277,277,282,282,284,284,294,294,318,318,322,324,335,335, - 358,359,365,365,368,368,381,381,396,396,399,400,409,409,420,421, - 437,437,470,470,489,489,503,503,1,0,438,505,2519,0,389,1,0,0,0,2, - 399,1,0,0,0,4,413,1,0,0,0,6,415,1,0,0,0,8,431,1,0,0,0,10,435,1,0, - 0,0,12,437,1,0,0,0,14,440,1,0,0,0,16,451,1,0,0,0,18,459,1,0,0,0, - 20,467,1,0,0,0,22,469,1,0,0,0,24,521,1,0,0,0,26,523,1,0,0,0,28,530, - 1,0,0,0,30,534,1,0,0,0,32,538,1,0,0,0,34,542,1,0,0,0,36,596,1,0, - 0,0,38,602,1,0,0,0,40,608,1,0,0,0,42,610,1,0,0,0,44,652,1,0,0,0, - 46,666,1,0,0,0,48,668,1,0,0,0,50,679,1,0,0,0,52,683,1,0,0,0,54,685, - 1,0,0,0,56,687,1,0,0,0,58,735,1,0,0,0,60,737,1,0,0,0,62,741,1,0, - 0,0,64,749,1,0,0,0,66,757,1,0,0,0,68,761,1,0,0,0,70,796,1,0,0,0, - 72,812,1,0,0,0,74,814,1,0,0,0,76,824,1,0,0,0,78,826,1,0,0,0,80,833, - 1,0,0,0,82,835,1,0,0,0,84,843,1,0,0,0,86,851,1,0,0,0,88,853,1,0, - 0,0,90,857,1,0,0,0,92,861,1,0,0,0,94,884,1,0,0,0,96,888,1,0,0,0, - 98,890,1,0,0,0,100,906,1,0,0,0,102,908,1,0,0,0,104,913,1,0,0,0,106, - 925,1,0,0,0,108,944,1,0,0,0,110,964,1,0,0,0,112,975,1,0,0,0,114, - 977,1,0,0,0,116,990,1,0,0,0,118,997,1,0,0,0,120,1000,1,0,0,0,122, - 1009,1,0,0,0,124,1013,1,0,0,0,126,1017,1,0,0,0,128,1020,1,0,0,0, - 130,1028,1,0,0,0,132,1033,1,0,0,0,134,1050,1,0,0,0,136,1057,1,0, - 0,0,138,1067,1,0,0,0,140,1076,1,0,0,0,142,1086,1,0,0,0,144,1105, - 1,0,0,0,146,1107,1,0,0,0,148,1120,1,0,0,0,150,1123,1,0,0,0,152,1132, - 1,0,0,0,154,1143,1,0,0,0,156,1156,1,0,0,0,158,1191,1,0,0,0,160,1210, - 1,0,0,0,162,1219,1,0,0,0,164,1228,1,0,0,0,166,1247,1,0,0,0,168,1269, - 1,0,0,0,170,1271,1,0,0,0,172,1301,1,0,0,0,174,1315,1,0,0,0,176,1317, - 1,0,0,0,178,1331,1,0,0,0,180,1357,1,0,0,0,182,1390,1,0,0,0,184,1392, - 1,0,0,0,186,1398,1,0,0,0,188,1400,1,0,0,0,190,1405,1,0,0,0,192,1410, - 1,0,0,0,194,1422,1,0,0,0,196,1439,1,0,0,0,198,1441,1,0,0,0,200,1443, - 1,0,0,0,202,1452,1,0,0,0,204,1454,1,0,0,0,206,1457,1,0,0,0,208,1507, - 1,0,0,0,210,1509,1,0,0,0,212,1512,1,0,0,0,214,1514,1,0,0,0,216,1521, - 1,0,0,0,218,1523,1,0,0,0,220,1525,1,0,0,0,222,1528,1,0,0,0,224,1537, - 1,0,0,0,226,1542,1,0,0,0,228,1556,1,0,0,0,230,1584,1,0,0,0,232,1594, - 1,0,0,0,234,1602,1,0,0,0,236,1607,1,0,0,0,238,1639,1,0,0,0,240,1641, - 1,0,0,0,242,1650,1,0,0,0,244,1661,1,0,0,0,246,1673,1,0,0,0,248,1699, - 1,0,0,0,250,1701,1,0,0,0,252,1719,1,0,0,0,254,1721,1,0,0,0,256,1726, - 1,0,0,0,258,1729,1,0,0,0,260,1743,1,0,0,0,262,1836,1,0,0,0,264,1867, - 1,0,0,0,266,1873,1,0,0,0,268,1918,1,0,0,0,270,1995,1,0,0,0,272,2007, - 1,0,0,0,274,2013,1,0,0,0,276,2019,1,0,0,0,278,2023,1,0,0,0,280,2029, - 1,0,0,0,282,2031,1,0,0,0,284,2033,1,0,0,0,286,2037,1,0,0,0,288,2039, - 1,0,0,0,290,2044,1,0,0,0,292,2051,1,0,0,0,294,2055,1,0,0,0,296,2060, - 1,0,0,0,298,2070,1,0,0,0,300,2073,1,0,0,0,302,2079,1,0,0,0,304,2089, - 1,0,0,0,306,2091,1,0,0,0,308,2095,1,0,0,0,310,2106,1,0,0,0,312,2108, - 1,0,0,0,314,2110,1,0,0,0,316,2112,1,0,0,0,318,2117,1,0,0,0,320,2119, - 1,0,0,0,322,2121,1,0,0,0,324,2126,1,0,0,0,326,2143,1,0,0,0,328,2157, - 1,0,0,0,330,2171,1,0,0,0,332,2185,1,0,0,0,334,2187,1,0,0,0,336,2195, - 1,0,0,0,338,2198,1,0,0,0,340,2202,1,0,0,0,342,2205,1,0,0,0,344,2216, - 1,0,0,0,346,2226,1,0,0,0,348,2232,1,0,0,0,350,2240,1,0,0,0,352,2256, - 1,0,0,0,354,2265,1,0,0,0,356,2267,1,0,0,0,358,2269,1,0,0,0,360,2285, - 1,0,0,0,362,2287,1,0,0,0,364,2290,1,0,0,0,366,2292,1,0,0,0,368,2294, - 1,0,0,0,370,2296,1,0,0,0,372,2298,1,0,0,0,374,2300,1,0,0,0,376,2302, - 1,0,0,0,378,2304,1,0,0,0,380,2306,1,0,0,0,382,2308,1,0,0,0,384,2310, - 1,0,0,0,386,388,3,2,1,0,387,386,1,0,0,0,388,391,1,0,0,0,389,387, - 1,0,0,0,389,390,1,0,0,0,390,392,1,0,0,0,391,389,1,0,0,0,392,393, - 5,0,0,1,393,1,1,0,0,0,394,396,3,4,2,0,395,397,5,522,0,0,396,395, - 1,0,0,0,396,397,1,0,0,0,397,400,1,0,0,0,398,400,3,6,3,0,399,394, - 1,0,0,0,399,398,1,0,0,0,400,3,1,0,0,0,401,414,3,8,4,0,402,414,3, - 10,5,0,403,414,3,12,6,0,404,414,3,14,7,0,405,414,3,20,10,0,406,414, - 3,24,12,0,407,414,3,26,13,0,408,414,3,28,14,0,409,414,3,30,15,0, - 410,414,3,32,16,0,411,414,3,34,17,0,412,414,3,36,18,0,413,401,1, - 0,0,0,413,402,1,0,0,0,413,403,1,0,0,0,413,404,1,0,0,0,413,405,1, - 0,0,0,413,406,1,0,0,0,413,407,1,0,0,0,413,408,1,0,0,0,413,409,1, - 0,0,0,413,410,1,0,0,0,413,411,1,0,0,0,413,412,1,0,0,0,414,5,1,0, - 0,0,415,416,5,522,0,0,416,7,1,0,0,0,417,432,3,40,20,0,418,432,3, - 104,52,0,419,432,3,106,53,0,420,432,3,108,54,0,421,432,3,102,51, - 0,422,432,3,114,57,0,423,432,3,128,64,0,424,432,3,130,65,0,425,432, - 3,132,66,0,426,432,3,134,67,0,427,432,3,136,68,0,428,432,3,138,69, - 0,429,432,3,140,70,0,430,432,3,142,71,0,431,417,1,0,0,0,431,418, - 1,0,0,0,431,419,1,0,0,0,431,420,1,0,0,0,431,421,1,0,0,0,431,422, - 1,0,0,0,431,423,1,0,0,0,431,424,1,0,0,0,431,425,1,0,0,0,431,426, - 1,0,0,0,431,427,1,0,0,0,431,428,1,0,0,0,431,429,1,0,0,0,431,430, - 1,0,0,0,432,9,1,0,0,0,433,436,3,158,79,0,434,436,3,144,72,0,435, - 433,1,0,0,0,435,434,1,0,0,0,436,11,1,0,0,0,437,438,7,0,0,0,438,439, - 3,328,164,0,439,13,1,0,0,0,440,444,5,135,0,0,441,445,3,16,8,0,442, - 443,5,480,0,0,443,445,5,146,0,0,444,441,1,0,0,0,444,442,1,0,0,0, - 444,445,1,0,0,0,445,449,1,0,0,0,446,450,3,10,5,0,447,450,3,146,73, - 0,448,450,3,156,78,0,449,446,1,0,0,0,449,447,1,0,0,0,449,448,1,0, - 0,0,450,15,1,0,0,0,451,456,3,18,9,0,452,453,5,521,0,0,453,455,3, - 18,9,0,454,452,1,0,0,0,455,458,1,0,0,0,456,454,1,0,0,0,456,457,1, - 0,0,0,457,17,1,0,0,0,458,456,1,0,0,0,459,460,7,1,0,0,460,19,1,0, - 0,0,461,462,5,411,0,0,462,463,5,442,0,0,463,468,3,318,159,0,464, - 465,5,411,0,0,465,468,3,322,161,0,466,468,3,22,11,0,467,461,1,0, - 0,0,467,464,1,0,0,0,467,466,1,0,0,0,468,21,1,0,0,0,469,470,5,411, - 0,0,470,471,5,228,0,0,471,476,3,334,167,0,472,473,5,521,0,0,473, - 475,3,334,167,0,474,472,1,0,0,0,475,478,1,0,0,0,476,474,1,0,0,0, - 476,477,1,0,0,0,477,23,1,0,0,0,478,476,1,0,0,0,479,480,5,342,0,0, - 480,522,7,2,0,0,481,482,5,342,0,0,482,483,5,76,0,0,483,522,7,3,0, - 0,484,485,5,342,0,0,485,488,5,375,0,0,486,487,7,4,0,0,487,489,3, - 322,161,0,488,486,1,0,0,0,488,489,1,0,0,0,489,491,1,0,0,0,490,492, - 3,264,132,0,491,490,1,0,0,0,491,492,1,0,0,0,492,522,1,0,0,0,493, - 494,5,342,0,0,494,495,5,58,0,0,495,498,7,4,0,0,496,499,3,330,165, - 0,497,499,3,328,164,0,498,496,1,0,0,0,498,497,1,0,0,0,499,501,1, - 0,0,0,500,502,3,264,132,0,501,500,1,0,0,0,501,502,1,0,0,0,502,522, - 1,0,0,0,503,504,5,342,0,0,504,509,5,72,0,0,505,506,5,374,0,0,506, - 510,3,328,164,0,507,508,5,502,0,0,508,510,3,330,165,0,509,505,1, - 0,0,0,509,507,1,0,0,0,510,522,1,0,0,0,511,513,5,342,0,0,512,514, - 5,412,0,0,513,512,1,0,0,0,513,514,1,0,0,0,514,515,1,0,0,0,515,522, - 5,154,0,0,516,518,5,342,0,0,517,519,5,152,0,0,518,517,1,0,0,0,518, - 519,1,0,0,0,519,520,1,0,0,0,520,522,5,228,0,0,521,479,1,0,0,0,521, - 481,1,0,0,0,521,484,1,0,0,0,521,493,1,0,0,0,521,503,1,0,0,0,521, - 511,1,0,0,0,521,516,1,0,0,0,522,25,1,0,0,0,523,524,5,469,0,0,524, - 525,5,227,0,0,525,528,3,334,167,0,526,527,5,434,0,0,527,529,3,342, - 171,0,528,526,1,0,0,0,528,529,1,0,0,0,529,27,1,0,0,0,530,531,5,501, - 0,0,531,532,5,227,0,0,532,533,3,334,167,0,533,29,1,0,0,0,534,536, - 5,341,0,0,535,537,3,344,172,0,536,535,1,0,0,0,536,537,1,0,0,0,537, - 31,1,0,0,0,538,540,5,313,0,0,539,541,3,346,173,0,540,539,1,0,0,0, - 540,541,1,0,0,0,541,33,1,0,0,0,542,543,7,5,0,0,543,544,5,464,0,0, - 544,545,3,112,56,0,545,35,1,0,0,0,546,547,5,438,0,0,547,548,5,464, - 0,0,548,549,5,434,0,0,549,552,3,38,19,0,550,551,5,17,0,0,551,553, - 3,334,167,0,552,550,1,0,0,0,552,553,1,0,0,0,553,597,1,0,0,0,554, - 555,5,438,0,0,555,556,5,457,0,0,556,557,5,434,0,0,557,560,3,38,19, - 0,558,559,5,17,0,0,559,561,3,334,167,0,560,558,1,0,0,0,560,561,1, - 0,0,0,561,564,1,0,0,0,562,563,5,312,0,0,563,565,3,334,167,0,564, - 562,1,0,0,0,564,565,1,0,0,0,565,597,1,0,0,0,566,567,5,438,0,0,567, - 568,7,6,0,0,568,569,5,434,0,0,569,570,3,38,19,0,570,571,5,312,0, - 0,571,572,3,334,167,0,572,597,1,0,0,0,573,574,5,438,0,0,574,575, - 5,487,0,0,575,597,3,38,19,0,576,577,5,438,0,0,577,578,5,454,0,0, - 578,579,5,457,0,0,579,580,5,434,0,0,580,581,3,38,19,0,581,582,5, - 312,0,0,582,583,3,334,167,0,583,584,5,467,0,0,584,585,3,334,167, - 0,585,597,1,0,0,0,586,587,5,438,0,0,587,588,5,444,0,0,588,589,5, - 457,0,0,589,590,5,434,0,0,590,591,3,38,19,0,591,592,5,146,0,0,592, - 593,3,334,167,0,593,594,5,17,0,0,594,595,3,334,167,0,595,597,1,0, - 0,0,596,546,1,0,0,0,596,554,1,0,0,0,596,566,1,0,0,0,596,573,1,0, - 0,0,596,576,1,0,0,0,596,586,1,0,0,0,597,37,1,0,0,0,598,600,5,535, - 0,0,599,598,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,603,3,334, - 167,0,602,599,1,0,0,0,603,604,1,0,0,0,604,602,1,0,0,0,604,605,1, - 0,0,0,605,39,1,0,0,0,606,609,3,42,21,0,607,609,3,44,22,0,608,606, - 1,0,0,0,608,607,1,0,0,0,609,41,1,0,0,0,610,612,5,72,0,0,611,613, - 5,498,0,0,612,611,1,0,0,0,612,613,1,0,0,0,613,614,1,0,0,0,614,616, - 5,374,0,0,615,617,3,338,169,0,616,615,1,0,0,0,616,617,1,0,0,0,617, - 618,1,0,0,0,618,619,3,326,163,0,619,620,5,517,0,0,620,625,3,46,23, - 0,621,622,5,521,0,0,622,624,3,46,23,0,623,621,1,0,0,0,624,627,1, - 0,0,0,625,623,1,0,0,0,625,626,1,0,0,0,626,630,1,0,0,0,627,625,1, - 0,0,0,628,629,5,521,0,0,629,631,3,82,41,0,630,628,1,0,0,0,630,631, - 1,0,0,0,631,634,1,0,0,0,632,633,5,521,0,0,633,635,3,84,42,0,634, - 632,1,0,0,0,634,635,1,0,0,0,635,638,1,0,0,0,636,637,5,521,0,0,637, - 639,3,88,44,0,638,636,1,0,0,0,638,639,1,0,0,0,639,640,1,0,0,0,640, - 643,5,518,0,0,641,642,5,59,0,0,642,644,5,538,0,0,643,641,1,0,0,0, - 643,644,1,0,0,0,644,646,1,0,0,0,645,647,3,90,45,0,646,645,1,0,0, - 0,646,647,1,0,0,0,647,648,1,0,0,0,648,650,3,336,168,0,649,651,3, - 98,49,0,650,649,1,0,0,0,650,651,1,0,0,0,651,43,1,0,0,0,652,653,5, - 72,0,0,653,655,5,374,0,0,654,656,3,338,169,0,655,654,1,0,0,0,655, - 656,1,0,0,0,656,657,1,0,0,0,657,658,3,326,163,0,658,661,3,336,168, - 0,659,660,5,17,0,0,660,662,3,158,79,0,661,659,1,0,0,0,661,662,1, - 0,0,0,662,45,1,0,0,0,663,667,3,48,24,0,664,667,3,74,37,0,665,667, - 3,78,39,0,666,663,1,0,0,0,666,664,1,0,0,0,666,665,1,0,0,0,667,47, - 1,0,0,0,668,669,3,50,25,0,669,671,3,58,29,0,670,672,3,72,36,0,671, - 670,1,0,0,0,671,672,1,0,0,0,672,675,1,0,0,0,673,674,5,59,0,0,674, - 676,5,538,0,0,675,673,1,0,0,0,675,676,1,0,0,0,676,49,1,0,0,0,677, - 680,3,334,167,0,678,680,3,258,129,0,679,677,1,0,0,0,679,678,1,0, - 0,0,680,51,1,0,0,0,681,684,3,334,167,0,682,684,4,26,0,0,683,681, - 1,0,0,0,683,682,1,0,0,0,684,53,1,0,0,0,685,686,3,334,167,0,686,55, - 1,0,0,0,687,688,5,517,0,0,688,693,3,52,26,0,689,690,5,521,0,0,690, - 692,3,52,26,0,691,689,1,0,0,0,692,695,1,0,0,0,693,691,1,0,0,0,693, - 694,1,0,0,0,694,696,1,0,0,0,695,693,1,0,0,0,696,697,5,518,0,0,697, - 57,1,0,0,0,698,736,7,7,0,0,699,701,7,8,0,0,700,702,3,60,30,0,701, - 700,1,0,0,0,701,702,1,0,0,0,702,736,1,0,0,0,703,705,5,380,0,0,704, - 706,3,60,30,0,705,704,1,0,0,0,705,706,1,0,0,0,706,713,1,0,0,0,707, - 709,7,9,0,0,708,710,5,207,0,0,709,708,1,0,0,0,709,710,1,0,0,0,710, - 711,1,0,0,0,711,712,5,379,0,0,712,714,5,505,0,0,713,707,1,0,0,0, - 713,714,1,0,0,0,714,736,1,0,0,0,715,717,7,10,0,0,716,718,3,62,31, - 0,717,716,1,0,0,0,717,718,1,0,0,0,718,736,1,0,0,0,719,721,7,11,0, - 0,720,722,3,66,33,0,721,720,1,0,0,0,721,722,1,0,0,0,722,736,1,0, - 0,0,723,725,5,470,0,0,724,726,3,68,34,0,725,724,1,0,0,0,725,726, - 1,0,0,0,726,736,1,0,0,0,727,729,5,322,0,0,728,730,3,70,35,0,729, - 728,1,0,0,0,729,730,1,0,0,0,730,736,1,0,0,0,731,733,5,295,0,0,732, - 734,3,64,32,0,733,732,1,0,0,0,733,734,1,0,0,0,734,736,1,0,0,0,735, - 698,1,0,0,0,735,699,1,0,0,0,735,703,1,0,0,0,735,715,1,0,0,0,735, - 719,1,0,0,0,735,723,1,0,0,0,735,727,1,0,0,0,735,731,1,0,0,0,736, - 59,1,0,0,0,737,738,5,517,0,0,738,739,3,366,183,0,739,740,5,518,0, - 0,740,61,1,0,0,0,741,742,5,517,0,0,742,745,3,366,183,0,743,744,5, - 521,0,0,744,746,3,366,183,0,745,743,1,0,0,0,745,746,1,0,0,0,746, - 747,1,0,0,0,747,748,5,518,0,0,748,63,1,0,0,0,749,750,5,517,0,0,750, - 753,3,364,182,0,751,752,5,521,0,0,752,754,3,364,182,0,753,751,1, - 0,0,0,753,754,1,0,0,0,754,755,1,0,0,0,755,756,5,518,0,0,756,65,1, - 0,0,0,757,758,5,508,0,0,758,759,3,58,29,0,759,760,5,507,0,0,760, - 67,1,0,0,0,761,762,5,508,0,0,762,763,3,58,29,0,763,764,5,521,0,0, - 764,765,3,58,29,0,765,766,1,0,0,0,766,767,5,507,0,0,767,69,1,0,0, - 0,768,769,5,508,0,0,769,770,3,52,26,0,770,777,3,58,29,0,771,772, - 5,521,0,0,772,773,3,52,26,0,773,774,3,58,29,0,774,776,1,0,0,0,775, - 771,1,0,0,0,776,779,1,0,0,0,777,775,1,0,0,0,777,778,1,0,0,0,778, - 780,1,0,0,0,779,777,1,0,0,0,780,781,5,507,0,0,781,797,1,0,0,0,782, - 783,5,517,0,0,783,784,3,52,26,0,784,791,3,58,29,0,785,786,5,521, - 0,0,786,787,3,52,26,0,787,788,3,58,29,0,788,790,1,0,0,0,789,785, - 1,0,0,0,790,793,1,0,0,0,791,789,1,0,0,0,791,792,1,0,0,0,792,794, - 1,0,0,0,793,791,1,0,0,0,794,795,5,518,0,0,795,797,1,0,0,0,796,768, - 1,0,0,0,796,782,1,0,0,0,797,71,1,0,0,0,798,799,5,64,0,0,799,801, - 3,86,43,0,800,798,1,0,0,0,800,801,1,0,0,0,801,802,1,0,0,0,802,803, - 5,289,0,0,803,806,5,467,0,0,804,805,5,242,0,0,805,807,5,125,0,0, - 806,804,1,0,0,0,806,807,1,0,0,0,807,813,1,0,0,0,808,810,5,242,0, - 0,809,808,1,0,0,0,809,810,1,0,0,0,810,811,1,0,0,0,811,813,5,245, - 0,0,812,800,1,0,0,0,812,809,1,0,0,0,813,73,1,0,0,0,814,815,3,50, - 25,0,815,816,3,58,29,0,816,819,5,219,0,0,817,818,5,151,0,0,818,820, - 3,76,38,0,819,817,1,0,0,0,819,820,1,0,0,0,820,822,1,0,0,0,821,823, - 5,424,0,0,822,821,1,0,0,0,822,823,1,0,0,0,823,75,1,0,0,0,824,825, - 5,538,0,0,825,77,1,0,0,0,826,827,3,50,25,0,827,828,5,17,0,0,828, - 831,3,80,40,0,829,830,5,59,0,0,830,832,5,538,0,0,831,829,1,0,0,0, - 831,832,1,0,0,0,832,79,1,0,0,0,833,834,3,258,129,0,834,81,1,0,0, - 0,835,836,5,425,0,0,836,837,5,146,0,0,837,838,3,52,26,0,838,839, - 5,17,0,0,839,840,3,258,129,0,840,83,1,0,0,0,841,842,5,64,0,0,842, - 844,3,86,43,0,843,841,1,0,0,0,843,844,1,0,0,0,844,845,1,0,0,0,845, - 846,5,289,0,0,846,847,5,467,0,0,847,848,3,56,28,0,848,849,5,242, - 0,0,849,850,5,125,0,0,850,85,1,0,0,0,851,852,3,310,155,0,852,87, - 1,0,0,0,853,854,5,278,0,0,854,855,5,146,0,0,855,856,5,372,0,0,856, - 89,1,0,0,0,857,858,5,270,0,0,858,859,5,34,0,0,859,860,3,92,46,0, - 860,91,1,0,0,0,861,862,5,517,0,0,862,867,3,94,47,0,863,864,5,521, - 0,0,864,866,3,94,47,0,865,863,1,0,0,0,866,869,1,0,0,0,867,865,1, - 0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,867,1,0,0,0,870,871,5, - 518,0,0,871,93,1,0,0,0,872,885,3,52,26,0,873,874,5,517,0,0,874,879, - 3,96,48,0,875,876,5,521,0,0,876,878,3,96,48,0,877,875,1,0,0,0,878, - 881,1,0,0,0,879,877,1,0,0,0,879,880,1,0,0,0,880,882,1,0,0,0,881, - 879,1,0,0,0,882,883,5,518,0,0,883,885,1,0,0,0,884,872,1,0,0,0,884, - 873,1,0,0,0,885,95,1,0,0,0,886,889,3,286,143,0,887,889,3,360,180, - 0,888,886,1,0,0,0,888,887,1,0,0,0,889,97,1,0,0,0,890,891,5,203,0, - 0,891,900,3,328,164,0,892,896,5,517,0,0,893,895,3,100,50,0,894,893, - 1,0,0,0,895,898,1,0,0,0,896,894,1,0,0,0,896,897,1,0,0,0,897,899, - 1,0,0,0,898,896,1,0,0,0,899,901,5,518,0,0,900,892,1,0,0,0,900,901, - 1,0,0,0,901,99,1,0,0,0,902,903,7,12,0,0,903,907,7,13,0,0,904,905, - 7,14,0,0,905,907,7,15,0,0,906,902,1,0,0,0,906,904,1,0,0,0,907,101, - 1,0,0,0,908,909,5,72,0,0,909,910,5,442,0,0,910,911,3,320,160,0,911, - 912,3,336,168,0,912,103,1,0,0,0,913,914,5,72,0,0,914,916,5,448,0, - 0,915,917,3,338,169,0,916,915,1,0,0,0,916,917,1,0,0,0,917,918,1, - 0,0,0,918,921,3,324,162,0,919,920,5,59,0,0,920,922,5,538,0,0,921, - 919,1,0,0,0,921,922,1,0,0,0,922,923,1,0,0,0,923,924,3,336,168,0, - 924,105,1,0,0,0,925,927,5,72,0,0,926,928,5,498,0,0,927,926,1,0,0, - 0,927,928,1,0,0,0,928,929,1,0,0,0,929,931,5,502,0,0,930,932,3,338, - 169,0,931,930,1,0,0,0,931,932,1,0,0,0,932,933,1,0,0,0,933,935,3, - 332,166,0,934,936,3,56,28,0,935,934,1,0,0,0,935,936,1,0,0,0,936, - 939,1,0,0,0,937,938,5,59,0,0,938,940,5,538,0,0,939,937,1,0,0,0,939, - 940,1,0,0,0,940,941,1,0,0,0,941,942,5,17,0,0,942,943,3,158,79,0, - 943,107,1,0,0,0,944,948,5,72,0,0,945,949,5,498,0,0,946,947,5,498, - 0,0,947,949,5,371,0,0,948,945,1,0,0,0,948,946,1,0,0,0,948,949,1, - 0,0,0,949,950,1,0,0,0,950,952,5,153,0,0,951,953,3,338,169,0,952, - 951,1,0,0,0,952,953,1,0,0,0,953,954,1,0,0,0,954,955,3,272,136,0, - 955,956,5,17,0,0,956,959,3,310,155,0,957,958,5,196,0,0,958,960,7, - 16,0,0,959,957,1,0,0,0,959,960,1,0,0,0,960,962,1,0,0,0,961,963,3, - 110,55,0,962,961,1,0,0,0,962,963,1,0,0,0,963,109,1,0,0,0,964,965, - 5,413,0,0,965,966,5,464,0,0,966,972,3,112,56,0,967,968,5,521,0,0, - 968,969,5,464,0,0,969,971,3,112,56,0,970,967,1,0,0,0,971,974,1,0, - 0,0,972,970,1,0,0,0,972,973,1,0,0,0,973,111,1,0,0,0,974,972,1,0, - 0,0,975,976,5,538,0,0,976,113,1,0,0,0,977,978,5,8,0,0,978,980,5, - 374,0,0,979,981,3,340,170,0,980,979,1,0,0,0,980,981,1,0,0,0,981, - 982,1,0,0,0,982,988,3,328,164,0,983,989,3,116,58,0,984,989,3,118, - 59,0,985,989,3,120,60,0,986,989,3,122,61,0,987,989,3,124,62,0,988, - 983,1,0,0,0,988,984,1,0,0,0,988,985,1,0,0,0,988,986,1,0,0,0,988, - 987,1,0,0,0,989,115,1,0,0,0,990,992,5,312,0,0,991,993,3,334,167, - 0,992,991,1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0,994,995,5,389, - 0,0,995,996,3,334,167,0,996,117,1,0,0,0,997,998,5,341,0,0,998,999, - 3,342,171,0,999,119,1,0,0,0,1000,1001,5,438,0,0,1001,1002,5,64,0, - 0,1002,1003,3,86,43,0,1003,1004,5,289,0,0,1004,1005,5,467,0,0,1005, - 1007,3,56,28,0,1006,1008,3,126,63,0,1007,1006,1,0,0,0,1007,1008, - 1,0,0,0,1008,121,1,0,0,0,1009,1010,5,116,0,0,1010,1011,5,64,0,0, - 1011,1012,3,86,43,0,1012,123,1,0,0,0,1013,1014,5,438,0,0,1014,1015, - 5,404,0,0,1015,1016,3,56,28,0,1016,125,1,0,0,0,1017,1018,5,242,0, - 0,1018,1019,5,125,0,0,1019,127,1,0,0,0,1020,1021,5,8,0,0,1021,1022, - 5,502,0,0,1022,1026,3,330,165,0,1023,1027,3,116,58,0,1024,1025,5, - 17,0,0,1025,1027,3,158,79,0,1026,1023,1,0,0,0,1026,1024,1,0,0,0, - 1027,129,1,0,0,0,1028,1029,5,8,0,0,1029,1030,5,448,0,0,1030,1031, - 3,322,161,0,1031,1032,3,118,59,0,1032,131,1,0,0,0,1033,1037,5,8, - 0,0,1034,1038,5,498,0,0,1035,1036,5,498,0,0,1036,1038,5,371,0,0, - 1037,1034,1,0,0,0,1037,1035,1,0,0,0,1037,1038,1,0,0,0,1038,1039, - 1,0,0,0,1039,1041,5,153,0,0,1040,1042,3,340,170,0,1041,1040,1,0, - 0,0,1041,1042,1,0,0,0,1042,1043,1,0,0,0,1043,1044,3,274,137,0,1044, - 1045,5,17,0,0,1045,1048,3,310,155,0,1046,1047,5,196,0,0,1047,1049, - 7,16,0,0,1048,1046,1,0,0,0,1048,1049,1,0,0,0,1049,133,1,0,0,0,1050, - 1051,5,116,0,0,1051,1053,5,442,0,0,1052,1054,3,340,170,0,1053,1052, - 1,0,0,0,1053,1054,1,0,0,0,1054,1055,1,0,0,0,1055,1056,3,318,159, - 0,1056,135,1,0,0,0,1057,1059,5,116,0,0,1058,1060,5,498,0,0,1059, - 1058,1,0,0,0,1059,1060,1,0,0,0,1060,1061,1,0,0,0,1061,1063,5,374, - 0,0,1062,1064,3,340,170,0,1063,1062,1,0,0,0,1063,1064,1,0,0,0,1064, - 1065,1,0,0,0,1065,1066,3,328,164,0,1066,137,1,0,0,0,1067,1068,5, - 116,0,0,1068,1070,5,448,0,0,1069,1071,3,340,170,0,1070,1069,1,0, - 0,0,1070,1071,1,0,0,0,1071,1072,1,0,0,0,1072,1074,3,322,161,0,1073, - 1075,7,17,0,0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075,139,1,0,0, - 0,1076,1078,5,116,0,0,1077,1079,5,498,0,0,1078,1077,1,0,0,0,1078, - 1079,1,0,0,0,1079,1080,1,0,0,0,1080,1082,5,502,0,0,1081,1083,3,340, - 170,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0,1084, - 1085,3,330,165,0,1085,141,1,0,0,0,1086,1090,5,116,0,0,1087,1091, - 5,498,0,0,1088,1089,5,498,0,0,1089,1091,5,371,0,0,1090,1087,1,0, - 0,0,1090,1088,1,0,0,0,1090,1091,1,0,0,0,1091,1092,1,0,0,0,1092,1094, - 5,153,0,0,1093,1095,3,340,170,0,1094,1093,1,0,0,0,1094,1095,1,0, - 0,0,1095,1096,1,0,0,0,1096,1097,3,274,137,0,1097,143,1,0,0,0,1098, - 1100,5,132,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1101,1,0, - 0,0,1101,1106,3,146,73,0,1102,1106,3,154,77,0,1103,1104,5,132,0, - 0,1104,1106,3,156,78,0,1105,1099,1,0,0,0,1105,1102,1,0,0,0,1105, - 1103,1,0,0,0,1106,145,1,0,0,0,1107,1108,5,177,0,0,1108,1109,7,18, - 0,0,1109,1118,3,328,164,0,1110,1112,3,148,74,0,1111,1110,1,0,0,0, - 1111,1112,1,0,0,0,1112,1114,1,0,0,0,1113,1115,3,56,28,0,1114,1113, - 1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1119,3,158,79,0, - 1117,1119,3,150,75,0,1118,1111,1,0,0,0,1118,1117,1,0,0,0,1119,147, - 1,0,0,0,1120,1121,5,269,0,0,1121,1122,3,342,171,0,1122,149,1,0,0, - 0,1123,1124,5,415,0,0,1124,1129,3,152,76,0,1125,1126,5,521,0,0,1126, - 1128,3,152,76,0,1127,1125,1,0,0,0,1128,1131,1,0,0,0,1129,1127,1, - 0,0,0,1129,1130,1,0,0,0,1130,151,1,0,0,0,1131,1129,1,0,0,0,1132, - 1133,5,517,0,0,1133,1138,3,360,180,0,1134,1135,5,521,0,0,1135,1137, - 3,360,180,0,1136,1134,1,0,0,0,1137,1140,1,0,0,0,1138,1136,1,0,0, - 0,1138,1139,1,0,0,0,1139,1141,1,0,0,0,1140,1138,1,0,0,0,1141,1142, - 5,518,0,0,1142,153,1,0,0,0,1143,1144,5,24,0,0,1144,1145,5,355,0, - 0,1145,1146,5,341,0,0,1146,1150,5,522,0,0,1147,1148,3,146,73,0,1148, - 1149,5,522,0,0,1149,1151,1,0,0,0,1150,1147,1,0,0,0,1151,1152,1,0, - 0,0,1152,1150,1,0,0,0,1152,1153,1,0,0,0,1153,1154,1,0,0,0,1154,1155, - 5,122,0,0,1155,155,1,0,0,0,1156,1157,5,355,0,0,1157,1158,5,341,0, - 0,1158,1162,5,24,0,0,1159,1160,3,146,73,0,1160,1161,5,522,0,0,1161, - 1163,1,0,0,0,1162,1159,1,0,0,0,1163,1164,1,0,0,0,1164,1162,1,0,0, - 0,1164,1165,1,0,0,0,1165,1166,1,0,0,0,1166,1167,5,122,0,0,1167,157, - 1,0,0,0,1168,1169,6,79,-1,0,1169,1192,3,160,80,0,1170,1171,3,162, - 81,0,1171,1172,3,158,79,5,1172,1192,1,0,0,0,1173,1174,5,517,0,0, - 1174,1175,3,158,79,0,1175,1176,5,518,0,0,1176,1192,1,0,0,0,1177, - 1179,3,170,85,0,1178,1180,3,230,115,0,1179,1178,1,0,0,0,1179,1180, - 1,0,0,0,1180,1182,1,0,0,0,1181,1183,3,234,117,0,1182,1181,1,0,0, - 0,1182,1183,1,0,0,0,1183,1192,1,0,0,0,1184,1186,3,168,84,0,1185, - 1187,3,230,115,0,1186,1185,1,0,0,0,1186,1187,1,0,0,0,1187,1189,1, - 0,0,0,1188,1190,3,234,117,0,1189,1188,1,0,0,0,1189,1190,1,0,0,0, - 1190,1192,1,0,0,0,1191,1168,1,0,0,0,1191,1170,1,0,0,0,1191,1173, - 1,0,0,0,1191,1177,1,0,0,0,1191,1184,1,0,0,0,1192,1207,1,0,0,0,1193, - 1194,10,3,0,0,1194,1196,7,19,0,0,1195,1197,5,5,0,0,1196,1195,1,0, - 0,0,1196,1197,1,0,0,0,1197,1198,1,0,0,0,1198,1200,3,158,79,0,1199, - 1201,3,230,115,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201,1203,1, - 0,0,0,1202,1204,3,234,117,0,1203,1202,1,0,0,0,1203,1204,1,0,0,0, - 1204,1206,1,0,0,0,1205,1193,1,0,0,0,1206,1209,1,0,0,0,1207,1205, - 1,0,0,0,1207,1208,1,0,0,0,1208,159,1,0,0,0,1209,1207,1,0,0,0,1210, - 1211,5,415,0,0,1211,1216,3,258,129,0,1212,1213,5,521,0,0,1213,1215, - 3,258,129,0,1214,1212,1,0,0,0,1215,1218,1,0,0,0,1216,1214,1,0,0, - 0,1216,1217,1,0,0,0,1217,161,1,0,0,0,1218,1216,1,0,0,0,1219,1220, - 5,434,0,0,1220,1225,3,164,82,0,1221,1222,5,521,0,0,1222,1224,3,164, - 82,0,1223,1221,1,0,0,0,1224,1227,1,0,0,0,1225,1223,1,0,0,0,1225, - 1226,1,0,0,0,1226,163,1,0,0,0,1227,1225,1,0,0,0,1228,1240,3,166, - 83,0,1229,1230,5,517,0,0,1230,1235,3,52,26,0,1231,1232,5,521,0,0, - 1232,1234,3,52,26,0,1233,1231,1,0,0,0,1234,1237,1,0,0,0,1235,1233, - 1,0,0,0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237,1235,1,0,0,0,1238, - 1239,5,518,0,0,1239,1241,1,0,0,0,1240,1229,1,0,0,0,1240,1241,1,0, - 0,0,1241,1242,1,0,0,0,1242,1243,5,17,0,0,1243,1244,5,517,0,0,1244, - 1245,3,158,79,0,1245,1246,5,518,0,0,1246,165,1,0,0,0,1247,1248,3, - 310,155,0,1248,167,1,0,0,0,1249,1251,3,170,85,0,1250,1252,3,176, - 88,0,1251,1250,1,0,0,0,1251,1252,1,0,0,0,1252,1254,1,0,0,0,1253, - 1255,3,204,102,0,1254,1253,1,0,0,0,1254,1255,1,0,0,0,1255,1257,1, - 0,0,0,1256,1258,3,206,103,0,1257,1256,1,0,0,0,1257,1258,1,0,0,0, - 1258,1260,1,0,0,0,1259,1261,3,220,110,0,1260,1259,1,0,0,0,1260,1261, - 1,0,0,0,1261,1263,1,0,0,0,1262,1264,3,222,111,0,1263,1262,1,0,0, - 0,1263,1264,1,0,0,0,1264,1270,1,0,0,0,1265,1266,3,170,85,0,1266, - 1267,3,176,88,0,1267,1268,3,228,114,0,1268,1270,1,0,0,0,1269,1249, - 1,0,0,0,1269,1265,1,0,0,0,1270,169,1,0,0,0,1271,1273,5,337,0,0,1272, - 1274,3,370,185,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0,1274,1284,1, - 0,0,0,1275,1285,5,528,0,0,1276,1281,3,172,86,0,1277,1278,5,521,0, - 0,1278,1280,3,172,86,0,1279,1277,1,0,0,0,1280,1283,1,0,0,0,1281, - 1279,1,0,0,0,1281,1282,1,0,0,0,1282,1285,1,0,0,0,1283,1281,1,0,0, - 0,1284,1275,1,0,0,0,1284,1276,1,0,0,0,1285,171,1,0,0,0,1286,1302, - 3,174,87,0,1287,1292,3,258,129,0,1288,1290,5,17,0,0,1289,1288,1, - 0,0,0,1289,1290,1,0,0,0,1290,1291,1,0,0,0,1291,1293,3,52,26,0,1292, - 1289,1,0,0,0,1292,1293,1,0,0,0,1293,1302,1,0,0,0,1294,1299,3,52, - 26,0,1295,1297,5,17,0,0,1296,1295,1,0,0,0,1296,1297,1,0,0,0,1297, - 1298,1,0,0,0,1298,1300,3,258,129,0,1299,1296,1,0,0,0,1299,1300,1, - 0,0,0,1300,1302,1,0,0,0,1301,1286,1,0,0,0,1301,1287,1,0,0,0,1301, - 1294,1,0,0,0,1302,173,1,0,0,0,1303,1304,3,270,135,0,1304,1305,5, - 263,0,0,1305,1306,3,226,113,0,1306,1307,5,17,0,0,1307,1308,3,310, - 155,0,1308,1316,1,0,0,0,1309,1310,3,270,135,0,1310,1311,5,263,0, - 0,1311,1312,3,302,151,0,1312,1313,5,17,0,0,1313,1314,3,310,155,0, - 1314,1316,1,0,0,0,1315,1303,1,0,0,0,1315,1309,1,0,0,0,1316,175,1, - 0,0,0,1317,1318,5,151,0,0,1318,1319,3,178,89,0,1319,177,1,0,0,0, - 1320,1321,6,89,-1,0,1321,1326,3,180,90,0,1322,1323,5,521,0,0,1323, - 1325,3,180,90,0,1324,1322,1,0,0,0,1325,1328,1,0,0,0,1326,1324,1, - 0,0,0,1326,1327,1,0,0,0,1327,1332,1,0,0,0,1328,1326,1,0,0,0,1329, - 1332,3,188,94,0,1330,1332,3,190,95,0,1331,1320,1,0,0,0,1331,1329, - 1,0,0,0,1331,1330,1,0,0,0,1332,1354,1,0,0,0,1333,1334,10,3,0,0,1334, - 1335,5,73,0,0,1335,1336,5,185,0,0,1336,1353,3,178,89,4,1337,1339, - 10,4,0,0,1338,1340,5,234,0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0, - 1340,1342,1,0,0,0,1341,1343,7,20,0,0,1342,1341,1,0,0,0,1342,1343, - 1,0,0,0,1343,1345,1,0,0,0,1344,1346,5,262,0,0,1345,1344,1,0,0,0, - 1345,1346,1,0,0,0,1346,1347,1,0,0,0,1347,1348,5,185,0,0,1348,1350, - 3,178,89,0,1349,1351,3,202,101,0,1350,1349,1,0,0,0,1350,1351,1,0, - 0,0,1351,1353,1,0,0,0,1352,1333,1,0,0,0,1352,1337,1,0,0,0,1353,1356, - 1,0,0,0,1354,1352,1,0,0,0,1354,1355,1,0,0,0,1355,179,1,0,0,0,1356, - 1354,1,0,0,0,1357,1359,3,182,91,0,1358,1360,3,300,150,0,1359,1358, - 1,0,0,0,1359,1360,1,0,0,0,1360,181,1,0,0,0,1361,1363,5,374,0,0,1362, - 1361,1,0,0,0,1362,1363,1,0,0,0,1363,1364,1,0,0,0,1364,1366,3,328, - 164,0,1365,1367,3,184,92,0,1366,1365,1,0,0,0,1366,1367,1,0,0,0,1367, - 1391,1,0,0,0,1368,1370,3,330,165,0,1369,1371,3,184,92,0,1370,1369, - 1,0,0,0,1370,1371,1,0,0,0,1371,1391,1,0,0,0,1372,1373,5,199,0,0, - 1373,1374,5,374,0,0,1374,1375,5,517,0,0,1375,1376,3,268,134,0,1376, - 1377,5,518,0,0,1377,1391,1,0,0,0,1378,1380,5,199,0,0,1379,1378,1, - 0,0,0,1379,1380,1,0,0,0,1380,1381,1,0,0,0,1381,1382,5,517,0,0,1382, - 1383,3,158,79,0,1383,1384,5,518,0,0,1384,1391,1,0,0,0,1385,1386, - 5,406,0,0,1386,1387,5,517,0,0,1387,1388,3,258,129,0,1388,1389,5, - 518,0,0,1389,1391,1,0,0,0,1390,1362,1,0,0,0,1390,1368,1,0,0,0,1390, - 1372,1,0,0,0,1390,1379,1,0,0,0,1390,1385,1,0,0,0,1391,183,1,0,0, - 0,1392,1393,5,146,0,0,1393,1394,5,372,0,0,1394,1395,5,17,0,0,1395, - 1396,5,250,0,0,1396,1397,3,186,93,0,1397,185,1,0,0,0,1398,1399,3, - 258,129,0,1399,187,1,0,0,0,1400,1401,5,517,0,0,1401,1402,3,150,75, - 0,1402,1403,5,518,0,0,1403,1404,3,300,150,0,1404,189,1,0,0,0,1405, - 1406,5,374,0,0,1406,1407,5,517,0,0,1407,1408,3,192,96,0,1408,1409, - 5,518,0,0,1409,191,1,0,0,0,1410,1411,3,194,97,0,1411,1412,5,517, - 0,0,1412,1417,3,196,98,0,1413,1414,5,521,0,0,1414,1416,3,196,98, - 0,1415,1413,1,0,0,0,1416,1419,1,0,0,0,1417,1415,1,0,0,0,1417,1418, - 1,0,0,0,1418,1420,1,0,0,0,1419,1417,1,0,0,0,1420,1421,5,518,0,0, - 1421,193,1,0,0,0,1422,1423,7,21,0,0,1423,195,1,0,0,0,1424,1425,5, - 374,0,0,1425,1440,3,218,109,0,1426,1440,3,200,100,0,1427,1440,3, - 288,144,0,1428,1429,5,447,0,0,1429,1430,5,537,0,0,1430,1431,5,374, - 0,0,1431,1440,3,218,109,0,1432,1433,5,499,0,0,1433,1434,5,537,0, - 0,1434,1440,3,200,100,0,1435,1436,3,198,99,0,1436,1437,5,537,0,0, - 1437,1438,3,288,144,0,1438,1440,1,0,0,0,1439,1424,1,0,0,0,1439,1426, - 1,0,0,0,1439,1427,1,0,0,0,1439,1428,1,0,0,0,1439,1432,1,0,0,0,1439, - 1435,1,0,0,0,1440,197,1,0,0,0,1441,1442,7,22,0,0,1442,199,1,0,0, - 0,1443,1444,5,452,0,0,1444,1445,5,517,0,0,1445,1446,3,52,26,0,1446, - 1447,5,518,0,0,1447,201,1,0,0,0,1448,1449,5,254,0,0,1449,1453,3, - 260,130,0,1450,1451,5,413,0,0,1451,1453,3,56,28,0,1452,1448,1,0, - 0,0,1452,1450,1,0,0,0,1453,203,1,0,0,0,1454,1455,5,431,0,0,1455, - 1456,3,260,130,0,1456,205,1,0,0,0,1457,1458,5,159,0,0,1458,1459, - 5,34,0,0,1459,1464,3,208,104,0,1460,1461,5,521,0,0,1461,1463,3,208, - 104,0,1462,1460,1,0,0,0,1463,1466,1,0,0,0,1464,1462,1,0,0,0,1464, - 1465,1,0,0,0,1465,207,1,0,0,0,1466,1464,1,0,0,0,1467,1508,3,52,26, - 0,1468,1508,3,214,107,0,1469,1470,5,517,0,0,1470,1508,5,518,0,0, - 1471,1472,5,517,0,0,1472,1477,3,258,129,0,1473,1474,5,521,0,0,1474, - 1476,3,258,129,0,1475,1473,1,0,0,0,1476,1479,1,0,0,0,1477,1475,1, - 0,0,0,1477,1478,1,0,0,0,1478,1480,1,0,0,0,1479,1477,1,0,0,0,1480, - 1481,5,518,0,0,1481,1508,1,0,0,0,1482,1483,3,212,106,0,1483,1484, - 5,517,0,0,1484,1489,3,258,129,0,1485,1486,5,521,0,0,1486,1488,3, - 258,129,0,1487,1485,1,0,0,0,1488,1491,1,0,0,0,1489,1487,1,0,0,0, - 1489,1490,1,0,0,0,1490,1492,1,0,0,0,1491,1489,1,0,0,0,1492,1493, - 5,518,0,0,1493,1508,1,0,0,0,1494,1495,3,210,105,0,1495,1496,5,517, - 0,0,1496,1501,3,208,104,0,1497,1498,5,521,0,0,1498,1500,3,208,104, - 0,1499,1497,1,0,0,0,1500,1503,1,0,0,0,1501,1499,1,0,0,0,1501,1502, - 1,0,0,0,1502,1504,1,0,0,0,1503,1501,1,0,0,0,1504,1505,5,518,0,0, - 1505,1508,1,0,0,0,1506,1508,3,258,129,0,1507,1467,1,0,0,0,1507,1468, - 1,0,0,0,1507,1469,1,0,0,0,1507,1471,1,0,0,0,1507,1482,1,0,0,0,1507, - 1494,1,0,0,0,1507,1506,1,0,0,0,1508,209,1,0,0,0,1509,1510,5,160, - 0,0,1510,1511,5,494,0,0,1511,211,1,0,0,0,1512,1513,7,23,0,0,1513, - 213,1,0,0,0,1514,1515,3,216,108,0,1515,1516,5,517,0,0,1516,1517, - 3,218,109,0,1517,1518,5,521,0,0,1518,1519,3,288,144,0,1519,1520, - 5,518,0,0,1520,215,1,0,0,0,1521,1522,7,24,0,0,1522,217,1,0,0,0,1523, - 1524,3,334,167,0,1524,219,1,0,0,0,1525,1526,5,163,0,0,1526,1527, - 3,260,130,0,1527,221,1,0,0,0,1528,1529,5,433,0,0,1529,1534,3,224, - 112,0,1530,1531,5,521,0,0,1531,1533,3,224,112,0,1532,1530,1,0,0, - 0,1533,1536,1,0,0,0,1534,1532,1,0,0,0,1534,1535,1,0,0,0,1535,223, - 1,0,0,0,1536,1534,1,0,0,0,1537,1538,3,302,151,0,1538,1539,5,17,0, - 0,1539,1540,3,226,113,0,1540,225,1,0,0,0,1541,1543,3,302,151,0,1542, - 1541,1,0,0,0,1542,1543,1,0,0,0,1543,1544,1,0,0,0,1544,1546,5,517, - 0,0,1545,1547,3,236,118,0,1546,1545,1,0,0,0,1546,1547,1,0,0,0,1547, - 1549,1,0,0,0,1548,1550,3,230,115,0,1549,1548,1,0,0,0,1549,1550,1, - 0,0,0,1550,1552,1,0,0,0,1551,1553,3,252,126,0,1552,1551,1,0,0,0, - 1552,1553,1,0,0,0,1553,1554,1,0,0,0,1554,1555,5,518,0,0,1555,227, - 1,0,0,0,1556,1557,5,214,0,0,1557,1559,5,517,0,0,1558,1560,3,236, - 118,0,1559,1558,1,0,0,0,1559,1560,1,0,0,0,1560,1562,1,0,0,0,1561, - 1563,3,230,115,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563,1565,1, - 0,0,0,1564,1566,3,240,120,0,1565,1564,1,0,0,0,1565,1566,1,0,0,0, - 1566,1568,1,0,0,0,1567,1569,3,246,123,0,1568,1567,1,0,0,0,1568,1569, - 1,0,0,0,1569,1571,1,0,0,0,1570,1572,3,248,124,0,1571,1570,1,0,0, - 0,1571,1572,1,0,0,0,1572,1574,1,0,0,0,1573,1575,3,242,121,0,1574, - 1573,1,0,0,0,1574,1575,1,0,0,0,1575,1576,1,0,0,0,1576,1577,3,250, - 125,0,1577,1582,5,518,0,0,1578,1580,5,17,0,0,1579,1578,1,0,0,0,1579, - 1580,1,0,0,0,1580,1581,1,0,0,0,1581,1583,3,310,155,0,1582,1579,1, - 0,0,0,1582,1583,1,0,0,0,1583,229,1,0,0,0,1584,1585,5,259,0,0,1585, - 1586,5,34,0,0,1586,1591,3,232,116,0,1587,1588,5,521,0,0,1588,1590, - 3,232,116,0,1589,1587,1,0,0,0,1590,1593,1,0,0,0,1591,1589,1,0,0, - 0,1591,1592,1,0,0,0,1592,231,1,0,0,0,1593,1591,1,0,0,0,1594,1596, - 3,52,26,0,1595,1597,7,25,0,0,1596,1595,1,0,0,0,1596,1597,1,0,0,0, - 1597,1600,1,0,0,0,1598,1599,5,477,0,0,1599,1601,7,26,0,0,1600,1598, - 1,0,0,0,1600,1601,1,0,0,0,1601,233,1,0,0,0,1602,1605,5,205,0,0,1603, - 1606,5,5,0,0,1604,1606,3,258,129,0,1605,1603,1,0,0,0,1605,1604,1, - 0,0,0,1606,235,1,0,0,0,1607,1608,5,269,0,0,1608,1611,5,34,0,0,1609, - 1612,3,52,26,0,1610,1612,3,270,135,0,1611,1609,1,0,0,0,1611,1610, - 1,0,0,0,1612,1620,1,0,0,0,1613,1616,5,521,0,0,1614,1617,3,52,26, - 0,1615,1617,3,270,135,0,1616,1614,1,0,0,0,1616,1615,1,0,0,0,1617, - 1619,1,0,0,0,1618,1613,1,0,0,0,1619,1622,1,0,0,0,1620,1618,1,0,0, - 0,1620,1621,1,0,0,0,1621,237,1,0,0,0,1622,1620,1,0,0,0,1623,1640, - 5,528,0,0,1624,1640,5,531,0,0,1625,1640,5,536,0,0,1626,1627,5,519, - 0,0,1627,1628,5,539,0,0,1628,1629,5,521,0,0,1629,1630,5,539,0,0, - 1630,1640,5,520,0,0,1631,1632,5,519,0,0,1632,1633,5,539,0,0,1633, - 1634,5,521,0,0,1634,1640,5,520,0,0,1635,1636,5,519,0,0,1636,1637, - 5,521,0,0,1637,1638,5,539,0,0,1638,1640,5,520,0,0,1639,1623,1,0, - 0,0,1639,1624,1,0,0,0,1639,1625,1,0,0,0,1639,1626,1,0,0,0,1639,1631, - 1,0,0,0,1639,1635,1,0,0,0,1640,239,1,0,0,0,1641,1642,5,216,0,0,1642, - 1647,3,172,86,0,1643,1644,5,521,0,0,1644,1646,3,172,86,0,1645,1643, - 1,0,0,0,1646,1649,1,0,0,0,1647,1645,1,0,0,0,1647,1648,1,0,0,0,1648, - 241,1,0,0,0,1649,1647,1,0,0,0,1650,1651,5,272,0,0,1651,1653,5,517, - 0,0,1652,1654,3,244,122,0,1653,1652,1,0,0,0,1654,1655,1,0,0,0,1655, - 1653,1,0,0,0,1655,1656,1,0,0,0,1656,1657,1,0,0,0,1657,1659,5,518, - 0,0,1658,1660,3,256,128,0,1659,1658,1,0,0,0,1659,1660,1,0,0,0,1660, - 243,1,0,0,0,1661,1663,3,312,156,0,1662,1664,3,238,119,0,1663,1662, - 1,0,0,0,1663,1664,1,0,0,0,1664,245,1,0,0,0,1665,1666,5,5,0,0,1666, - 1667,5,323,0,0,1667,1668,5,273,0,0,1668,1674,5,211,0,0,1669,1670, - 5,255,0,0,1670,1671,5,322,0,0,1671,1672,5,273,0,0,1672,1674,5,211, - 0,0,1673,1665,1,0,0,0,1673,1669,1,0,0,0,1674,247,1,0,0,0,1675,1676, - 5,439,0,0,1676,1677,5,211,0,0,1677,1678,5,344,0,0,1678,1679,5,479, - 0,0,1679,1680,5,468,0,0,1680,1700,5,322,0,0,1681,1682,5,439,0,0, - 1682,1683,5,211,0,0,1683,1684,5,344,0,0,1684,1685,5,389,0,0,1685, - 1686,5,238,0,0,1686,1700,5,322,0,0,1687,1688,5,439,0,0,1688,1689, - 5,211,0,0,1689,1690,5,344,0,0,1690,1691,5,389,0,0,1691,1692,5,468, - 0,0,1692,1700,3,312,156,0,1693,1694,5,439,0,0,1694,1695,5,211,0, - 0,1695,1696,5,344,0,0,1696,1697,5,389,0,0,1697,1698,5,458,0,0,1698, - 1700,3,312,156,0,1699,1675,1,0,0,0,1699,1681,1,0,0,0,1699,1687,1, - 0,0,0,1699,1693,1,0,0,0,1700,249,1,0,0,0,1701,1702,5,105,0,0,1702, - 1707,3,172,86,0,1703,1704,5,521,0,0,1704,1706,3,172,86,0,1705,1703, - 1,0,0,0,1706,1709,1,0,0,0,1707,1705,1,0,0,0,1707,1708,1,0,0,0,1708, - 251,1,0,0,0,1709,1707,1,0,0,0,1710,1711,5,293,0,0,1711,1712,5,27, - 0,0,1712,1713,3,288,144,0,1713,1714,3,254,127,0,1714,1720,1,0,0, - 0,1715,1716,5,323,0,0,1716,1717,5,27,0,0,1717,1718,5,539,0,0,1718, - 1720,3,254,127,0,1719,1710,1,0,0,0,1719,1715,1,0,0,0,1720,253,1, - 0,0,0,1721,1722,5,481,0,0,1722,1723,5,10,0,0,1723,1724,5,76,0,0, - 1724,1725,5,322,0,0,1725,255,1,0,0,0,1726,1727,5,435,0,0,1727,1728, - 3,288,144,0,1728,257,1,0,0,0,1729,1730,3,260,130,0,1730,259,1,0, - 0,0,1731,1732,6,130,-1,0,1732,1733,5,242,0,0,1733,1744,3,260,130, - 6,1734,1735,5,133,0,0,1735,1736,5,517,0,0,1736,1737,3,158,79,0,1737, - 1738,5,518,0,0,1738,1744,1,0,0,0,1739,1741,3,266,133,0,1740,1742, - 3,262,131,0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742,1744,1,0,0, - 0,1743,1731,1,0,0,0,1743,1734,1,0,0,0,1743,1739,1,0,0,0,1744,1759, - 1,0,0,0,1745,1746,10,3,0,0,1746,1747,5,10,0,0,1747,1758,3,260,130, - 4,1748,1749,10,2,0,0,1749,1750,5,258,0,0,1750,1758,3,260,130,3,1751, - 1752,10,1,0,0,1752,1754,5,184,0,0,1753,1755,5,242,0,0,1754,1753, - 1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0,0,0,1756,1758,7,27,0,0,1757, - 1745,1,0,0,0,1757,1748,1,0,0,0,1757,1751,1,0,0,0,1758,1761,1,0,0, - 0,1759,1757,1,0,0,0,1759,1760,1,0,0,0,1760,261,1,0,0,0,1761,1759, - 1,0,0,0,1762,1764,5,242,0,0,1763,1762,1,0,0,0,1763,1764,1,0,0,0, - 1764,1765,1,0,0,0,1765,1767,5,27,0,0,1766,1768,7,28,0,0,1767,1766, - 1,0,0,0,1767,1768,1,0,0,0,1768,1769,1,0,0,0,1769,1770,3,266,133, - 0,1770,1771,5,10,0,0,1771,1772,3,266,133,0,1772,1837,1,0,0,0,1773, - 1775,5,242,0,0,1774,1773,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0, - 0,0,1776,1777,5,170,0,0,1777,1778,5,517,0,0,1778,1783,3,258,129, - 0,1779,1780,5,521,0,0,1780,1782,3,258,129,0,1781,1779,1,0,0,0,1782, - 1785,1,0,0,0,1783,1781,1,0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0, - 0,1785,1783,1,0,0,0,1786,1787,5,518,0,0,1787,1837,1,0,0,0,1788,1790, - 5,242,0,0,1789,1788,1,0,0,0,1789,1790,1,0,0,0,1790,1791,1,0,0,0, - 1791,1792,5,170,0,0,1792,1793,5,517,0,0,1793,1794,3,158,79,0,1794, - 1795,5,518,0,0,1795,1837,1,0,0,0,1796,1797,5,133,0,0,1797,1798,5, - 517,0,0,1798,1799,3,158,79,0,1799,1800,5,518,0,0,1800,1837,1,0,0, - 0,1801,1803,5,242,0,0,1802,1801,1,0,0,0,1802,1803,1,0,0,0,1803,1804, - 1,0,0,0,1804,1805,5,319,0,0,1805,1837,3,266,133,0,1806,1837,3,264, - 132,0,1807,1809,5,184,0,0,1808,1810,5,242,0,0,1809,1808,1,0,0,0, - 1809,1810,1,0,0,0,1810,1811,1,0,0,0,1811,1837,7,27,0,0,1812,1814, - 5,184,0,0,1813,1815,5,242,0,0,1814,1813,1,0,0,0,1814,1815,1,0,0, - 0,1815,1816,1,0,0,0,1816,1817,5,113,0,0,1817,1818,5,151,0,0,1818, - 1837,3,266,133,0,1819,1821,5,242,0,0,1820,1819,1,0,0,0,1820,1821, - 1,0,0,0,1821,1822,1,0,0,0,1822,1823,5,343,0,0,1823,1824,5,389,0, - 0,1824,1827,3,266,133,0,1825,1826,5,127,0,0,1826,1828,3,364,182, - 0,1827,1825,1,0,0,0,1827,1828,1,0,0,0,1828,1837,1,0,0,0,1829,1830, - 5,184,0,0,1830,1834,5,186,0,0,1831,1835,5,414,0,0,1832,1835,5,13, - 0,0,1833,1835,3,310,155,0,1834,1831,1,0,0,0,1834,1832,1,0,0,0,1834, - 1833,1,0,0,0,1834,1835,1,0,0,0,1835,1837,1,0,0,0,1836,1763,1,0,0, - 0,1836,1774,1,0,0,0,1836,1789,1,0,0,0,1836,1796,1,0,0,0,1836,1802, - 1,0,0,0,1836,1806,1,0,0,0,1836,1807,1,0,0,0,1836,1812,1,0,0,0,1836, - 1820,1,0,0,0,1836,1829,1,0,0,0,1837,263,1,0,0,0,1838,1840,5,242, - 0,0,1839,1838,1,0,0,0,1839,1840,1,0,0,0,1840,1841,1,0,0,0,1841,1842, - 5,203,0,0,1842,1856,7,29,0,0,1843,1844,5,517,0,0,1844,1857,5,518, - 0,0,1845,1846,5,517,0,0,1846,1851,3,258,129,0,1847,1848,5,521,0, - 0,1848,1850,3,258,129,0,1849,1847,1,0,0,0,1850,1853,1,0,0,0,1851, - 1849,1,0,0,0,1851,1852,1,0,0,0,1852,1854,1,0,0,0,1853,1851,1,0,0, - 0,1854,1855,5,518,0,0,1855,1857,1,0,0,0,1856,1843,1,0,0,0,1856,1845, - 1,0,0,0,1857,1868,1,0,0,0,1858,1860,5,242,0,0,1859,1858,1,0,0,0, - 1859,1860,1,0,0,0,1860,1861,1,0,0,0,1861,1862,5,203,0,0,1862,1865, - 3,266,133,0,1863,1864,5,127,0,0,1864,1866,3,364,182,0,1865,1863, - 1,0,0,0,1865,1866,1,0,0,0,1866,1868,1,0,0,0,1867,1839,1,0,0,0,1867, - 1859,1,0,0,0,1868,265,1,0,0,0,1869,1870,6,133,-1,0,1870,1874,3,270, - 135,0,1871,1872,7,30,0,0,1872,1874,3,266,133,7,1873,1869,1,0,0,0, - 1873,1871,1,0,0,0,1874,1896,1,0,0,0,1875,1876,10,6,0,0,1876,1877, - 7,31,0,0,1877,1895,3,266,133,7,1878,1879,10,5,0,0,1879,1880,7,32, - 0,0,1880,1895,3,266,133,6,1881,1882,10,4,0,0,1882,1883,5,512,0,0, - 1883,1895,3,266,133,5,1884,1885,10,3,0,0,1885,1886,5,513,0,0,1886, - 1895,3,266,133,4,1887,1888,10,2,0,0,1888,1889,5,511,0,0,1889,1895, - 3,266,133,3,1890,1891,10,1,0,0,1891,1892,3,352,176,0,1892,1893,3, - 266,133,2,1893,1895,1,0,0,0,1894,1875,1,0,0,0,1894,1878,1,0,0,0, - 1894,1881,1,0,0,0,1894,1884,1,0,0,0,1894,1887,1,0,0,0,1894,1890, - 1,0,0,0,1895,1898,1,0,0,0,1896,1894,1,0,0,0,1896,1897,1,0,0,0,1897, - 267,1,0,0,0,1898,1896,1,0,0,0,1899,1919,3,378,189,0,1900,1919,3, - 276,138,0,1901,1902,3,278,139,0,1902,1914,5,517,0,0,1903,1905,3, - 370,185,0,1904,1903,1,0,0,0,1904,1905,1,0,0,0,1905,1906,1,0,0,0, - 1906,1911,3,280,140,0,1907,1908,5,521,0,0,1908,1910,3,280,140,0, - 1909,1907,1,0,0,0,1910,1913,1,0,0,0,1911,1909,1,0,0,0,1911,1912, - 1,0,0,0,1912,1915,1,0,0,0,1913,1911,1,0,0,0,1914,1904,1,0,0,0,1914, - 1915,1,0,0,0,1915,1916,1,0,0,0,1916,1917,5,518,0,0,1917,1919,1,0, - 0,0,1918,1899,1,0,0,0,1918,1900,1,0,0,0,1918,1901,1,0,0,0,1919,269, - 1,0,0,0,1920,1921,6,135,-1,0,1921,1923,5,40,0,0,1922,1924,3,316, - 158,0,1923,1922,1,0,0,0,1924,1925,1,0,0,0,1925,1923,1,0,0,0,1925, - 1926,1,0,0,0,1926,1929,1,0,0,0,1927,1928,5,120,0,0,1928,1930,3,258, - 129,0,1929,1927,1,0,0,0,1929,1930,1,0,0,0,1930,1931,1,0,0,0,1931, - 1932,5,122,0,0,1932,1996,1,0,0,0,1933,1934,5,40,0,0,1934,1936,3, - 258,129,0,1935,1937,3,316,158,0,1936,1935,1,0,0,0,1937,1938,1,0, - 0,0,1938,1936,1,0,0,0,1938,1939,1,0,0,0,1939,1942,1,0,0,0,1940,1941, - 5,120,0,0,1941,1943,3,258,129,0,1942,1940,1,0,0,0,1942,1943,1,0, - 0,0,1943,1944,1,0,0,0,1944,1945,5,122,0,0,1945,1996,1,0,0,0,1946, - 1947,5,41,0,0,1947,1948,5,517,0,0,1948,1949,3,258,129,0,1949,1950, - 5,17,0,0,1950,1951,3,58,29,0,1951,1952,5,518,0,0,1952,1996,1,0,0, - 0,1953,1954,5,458,0,0,1954,1955,5,517,0,0,1955,1958,3,258,129,0, - 1956,1957,5,462,0,0,1957,1959,5,477,0,0,1958,1956,1,0,0,0,1958,1959, - 1,0,0,0,1959,1960,1,0,0,0,1960,1961,5,518,0,0,1961,1996,1,0,0,0, - 1962,1963,5,468,0,0,1963,1964,5,517,0,0,1964,1967,3,258,129,0,1965, - 1966,5,462,0,0,1966,1968,5,477,0,0,1967,1965,1,0,0,0,1967,1968,1, - 0,0,0,1968,1969,1,0,0,0,1969,1970,5,518,0,0,1970,1996,1,0,0,0,1971, - 1972,5,282,0,0,1972,1973,5,517,0,0,1973,1974,3,266,133,0,1974,1975, - 5,170,0,0,1975,1976,3,266,133,0,1976,1977,5,518,0,0,1977,1996,1, - 0,0,0,1978,1996,3,360,180,0,1979,1996,5,528,0,0,1980,1981,3,334, - 167,0,1981,1982,5,514,0,0,1982,1983,5,528,0,0,1983,1996,1,0,0,0, - 1984,1985,5,517,0,0,1985,1986,3,158,79,0,1986,1987,5,518,0,0,1987, - 1996,1,0,0,0,1988,1996,3,268,134,0,1989,1996,3,54,27,0,1990,1996, - 3,282,141,0,1991,1992,5,517,0,0,1992,1993,3,258,129,0,1993,1994, - 5,518,0,0,1994,1996,1,0,0,0,1995,1920,1,0,0,0,1995,1933,1,0,0,0, - 1995,1946,1,0,0,0,1995,1953,1,0,0,0,1995,1962,1,0,0,0,1995,1971, - 1,0,0,0,1995,1978,1,0,0,0,1995,1979,1,0,0,0,1995,1980,1,0,0,0,1995, - 1984,1,0,0,0,1995,1988,1,0,0,0,1995,1989,1,0,0,0,1995,1990,1,0,0, - 0,1995,1991,1,0,0,0,1996,2004,1,0,0,0,1997,1998,10,4,0,0,1998,1999, - 5,515,0,0,1999,2000,3,266,133,0,2000,2001,5,516,0,0,2001,2003,1, - 0,0,0,2002,1997,1,0,0,0,2003,2006,1,0,0,0,2004,2002,1,0,0,0,2004, - 2005,1,0,0,0,2005,271,1,0,0,0,2006,2004,1,0,0,0,2007,2008,3,334, - 167,0,2008,273,1,0,0,0,2009,2014,3,382,191,0,2010,2014,3,378,189, - 0,2011,2014,3,380,190,0,2012,2014,3,334,167,0,2013,2009,1,0,0,0, - 2013,2010,1,0,0,0,2013,2011,1,0,0,0,2013,2012,1,0,0,0,2014,275,1, - 0,0,0,2015,2016,3,380,190,0,2016,2017,5,538,0,0,2017,2020,1,0,0, - 0,2018,2020,3,288,144,0,2019,2015,1,0,0,0,2019,2018,1,0,0,0,2020, - 277,1,0,0,0,2021,2024,3,382,191,0,2022,2024,3,334,167,0,2023,2021, - 1,0,0,0,2023,2022,1,0,0,0,2024,279,1,0,0,0,2025,2030,3,376,188,0, - 2026,2030,3,374,187,0,2027,2030,3,372,186,0,2028,2030,3,258,129, - 0,2029,2025,1,0,0,0,2029,2026,1,0,0,0,2029,2027,1,0,0,0,2029,2028, - 1,0,0,0,2030,281,1,0,0,0,2031,2032,3,334,167,0,2032,283,1,0,0,0, - 2033,2034,3,310,155,0,2034,285,1,0,0,0,2035,2038,3,310,155,0,2036, - 2038,3,282,141,0,2037,2035,1,0,0,0,2037,2036,1,0,0,0,2038,287,1, - 0,0,0,2039,2042,5,182,0,0,2040,2043,3,290,145,0,2041,2043,3,294, - 147,0,2042,2040,1,0,0,0,2042,2041,1,0,0,0,2042,2043,1,0,0,0,2043, - 289,1,0,0,0,2044,2046,3,292,146,0,2045,2047,3,296,148,0,2046,2045, - 1,0,0,0,2046,2047,1,0,0,0,2047,291,1,0,0,0,2048,2049,3,298,149,0, - 2049,2050,3,374,187,0,2050,2052,1,0,0,0,2051,2048,1,0,0,0,2052,2053, - 1,0,0,0,2053,2051,1,0,0,0,2053,2054,1,0,0,0,2054,293,1,0,0,0,2055, - 2058,3,296,148,0,2056,2059,3,292,146,0,2057,2059,3,296,148,0,2058, - 2056,1,0,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,295,1,0,0, - 0,2060,2061,3,298,149,0,2061,2062,3,374,187,0,2062,2063,5,389,0, - 0,2063,2064,3,374,187,0,2064,297,1,0,0,0,2065,2067,7,33,0,0,2066, - 2065,1,0,0,0,2066,2067,1,0,0,0,2067,2068,1,0,0,0,2068,2071,7,34, - 0,0,2069,2071,5,538,0,0,2070,2066,1,0,0,0,2070,2069,1,0,0,0,2071, - 299,1,0,0,0,2072,2074,5,17,0,0,2073,2072,1,0,0,0,2073,2074,1,0,0, - 0,2074,2075,1,0,0,0,2075,2077,3,310,155,0,2076,2078,3,306,153,0, - 2077,2076,1,0,0,0,2077,2078,1,0,0,0,2078,301,1,0,0,0,2079,2080,3, - 310,155,0,2080,2081,3,304,152,0,2081,303,1,0,0,0,2082,2083,5,222, - 0,0,2083,2085,3,310,155,0,2084,2082,1,0,0,0,2085,2086,1,0,0,0,2086, - 2084,1,0,0,0,2086,2087,1,0,0,0,2087,2090,1,0,0,0,2088,2090,1,0,0, - 0,2089,2084,1,0,0,0,2089,2088,1,0,0,0,2090,305,1,0,0,0,2091,2092, - 5,517,0,0,2092,2093,3,308,154,0,2093,2094,5,518,0,0,2094,307,1,0, - 0,0,2095,2100,3,310,155,0,2096,2097,5,521,0,0,2097,2099,3,310,155, - 0,2098,2096,1,0,0,0,2099,2102,1,0,0,0,2100,2098,1,0,0,0,2100,2101, - 1,0,0,0,2101,309,1,0,0,0,2102,2100,1,0,0,0,2103,2107,3,312,156,0, - 2104,2107,3,314,157,0,2105,2107,3,384,192,0,2106,2103,1,0,0,0,2106, - 2104,1,0,0,0,2106,2105,1,0,0,0,2107,311,1,0,0,0,2108,2109,7,35,0, - 0,2109,313,1,0,0,0,2110,2111,5,538,0,0,2111,315,1,0,0,0,2112,2113, - 5,429,0,0,2113,2114,3,258,129,0,2114,2115,5,377,0,0,2115,2116,3, - 258,129,0,2116,317,1,0,0,0,2117,2118,3,310,155,0,2118,319,1,0,0, - 0,2119,2120,3,310,155,0,2120,321,1,0,0,0,2121,2124,3,310,155,0,2122, - 2123,5,514,0,0,2123,2125,3,310,155,0,2124,2122,1,0,0,0,2124,2125, - 1,0,0,0,2125,323,1,0,0,0,2126,2129,3,310,155,0,2127,2128,5,514,0, - 0,2128,2130,3,310,155,0,2129,2127,1,0,0,0,2129,2130,1,0,0,0,2130, - 325,1,0,0,0,2131,2134,3,310,155,0,2132,2133,5,514,0,0,2133,2135, - 3,310,155,0,2134,2132,1,0,0,0,2134,2135,1,0,0,0,2135,2144,1,0,0, - 0,2136,2137,3,310,155,0,2137,2138,5,514,0,0,2138,2141,3,310,155, - 0,2139,2140,5,514,0,0,2140,2142,3,310,155,0,2141,2139,1,0,0,0,2141, - 2142,1,0,0,0,2142,2144,1,0,0,0,2143,2131,1,0,0,0,2143,2136,1,0,0, - 0,2144,327,1,0,0,0,2145,2148,3,310,155,0,2146,2147,5,514,0,0,2147, - 2149,3,310,155,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2158,1, - 0,0,0,2150,2151,3,310,155,0,2151,2152,5,514,0,0,2152,2155,3,310, - 155,0,2153,2154,5,514,0,0,2154,2156,3,310,155,0,2155,2153,1,0,0, - 0,2155,2156,1,0,0,0,2156,2158,1,0,0,0,2157,2145,1,0,0,0,2157,2150, - 1,0,0,0,2158,329,1,0,0,0,2159,2162,3,310,155,0,2160,2161,5,514,0, - 0,2161,2163,3,310,155,0,2162,2160,1,0,0,0,2162,2163,1,0,0,0,2163, - 2172,1,0,0,0,2164,2165,3,310,155,0,2165,2166,5,514,0,0,2166,2169, - 3,310,155,0,2167,2168,5,514,0,0,2168,2170,3,310,155,0,2169,2167, - 1,0,0,0,2169,2170,1,0,0,0,2170,2172,1,0,0,0,2171,2159,1,0,0,0,2171, - 2164,1,0,0,0,2172,331,1,0,0,0,2173,2176,3,310,155,0,2174,2175,5, - 514,0,0,2175,2177,3,310,155,0,2176,2174,1,0,0,0,2176,2177,1,0,0, - 0,2177,2186,1,0,0,0,2178,2179,3,310,155,0,2179,2180,5,514,0,0,2180, - 2183,3,310,155,0,2181,2182,5,514,0,0,2182,2184,3,310,155,0,2183, - 2181,1,0,0,0,2183,2184,1,0,0,0,2184,2186,1,0,0,0,2185,2173,1,0,0, - 0,2185,2178,1,0,0,0,2186,333,1,0,0,0,2187,2192,3,310,155,0,2188, - 2189,5,514,0,0,2189,2191,3,310,155,0,2190,2188,1,0,0,0,2191,2194, - 1,0,0,0,2192,2193,1,0,0,0,2192,2190,1,0,0,0,2193,335,1,0,0,0,2194, - 2192,1,0,0,0,2195,2196,5,434,0,0,2196,2197,3,342,171,0,2197,337, - 1,0,0,0,2198,2199,5,167,0,0,2199,2200,5,242,0,0,2200,2201,5,133, - 0,0,2201,339,1,0,0,0,2202,2203,5,167,0,0,2203,2204,5,133,0,0,2204, - 341,1,0,0,0,2205,2206,5,517,0,0,2206,2211,3,344,172,0,2207,2208, - 5,521,0,0,2208,2210,3,344,172,0,2209,2207,1,0,0,0,2210,2213,1,0, - 0,0,2211,2209,1,0,0,0,2211,2212,1,0,0,0,2212,2214,1,0,0,0,2213,2211, - 1,0,0,0,2214,2215,5,518,0,0,2215,343,1,0,0,0,2216,2221,3,346,173, - 0,2217,2219,5,506,0,0,2218,2217,1,0,0,0,2218,2219,1,0,0,0,2219,2220, - 1,0,0,0,2220,2222,3,348,174,0,2221,2218,1,0,0,0,2221,2222,1,0,0, - 0,2222,345,1,0,0,0,2223,2227,3,310,155,0,2224,2227,3,282,141,0,2225, - 2227,5,538,0,0,2226,2223,1,0,0,0,2226,2224,1,0,0,0,2226,2225,1,0, - 0,0,2227,347,1,0,0,0,2228,2233,5,539,0,0,2229,2233,5,540,0,0,2230, - 2233,3,368,184,0,2231,2233,5,538,0,0,2232,2228,1,0,0,0,2232,2229, - 1,0,0,0,2232,2230,1,0,0,0,2232,2231,1,0,0,0,2233,349,1,0,0,0,2234, - 2241,5,10,0,0,2235,2236,5,512,0,0,2236,2241,5,512,0,0,2237,2241, - 5,258,0,0,2238,2239,5,511,0,0,2239,2241,5,511,0,0,2240,2234,1,0, - 0,0,2240,2235,1,0,0,0,2240,2237,1,0,0,0,2240,2238,1,0,0,0,2241,351, - 1,0,0,0,2242,2257,5,506,0,0,2243,2257,5,507,0,0,2244,2257,5,508, - 0,0,2245,2246,5,508,0,0,2246,2257,5,506,0,0,2247,2248,5,507,0,0, - 2248,2257,5,506,0,0,2249,2250,5,508,0,0,2250,2257,5,507,0,0,2251, - 2252,5,509,0,0,2252,2257,5,506,0,0,2253,2254,5,508,0,0,2254,2255, - 5,506,0,0,2255,2257,5,507,0,0,2256,2242,1,0,0,0,2256,2243,1,0,0, - 0,2256,2244,1,0,0,0,2256,2245,1,0,0,0,2256,2247,1,0,0,0,2256,2249, - 1,0,0,0,2256,2251,1,0,0,0,2256,2253,1,0,0,0,2257,353,1,0,0,0,2258, - 2259,5,508,0,0,2259,2266,5,508,0,0,2260,2261,5,507,0,0,2261,2266, - 5,507,0,0,2262,2266,5,512,0,0,2263,2266,5,513,0,0,2264,2266,5,511, - 0,0,2265,2258,1,0,0,0,2265,2260,1,0,0,0,2265,2262,1,0,0,0,2265,2263, - 1,0,0,0,2265,2264,1,0,0,0,2266,355,1,0,0,0,2267,2268,7,36,0,0,2268, - 357,1,0,0,0,2269,2270,7,37,0,0,2270,359,1,0,0,0,2271,2286,3,288, - 144,0,2272,2286,3,362,181,0,2273,2286,3,364,182,0,2274,2276,5,530, - 0,0,2275,2274,1,0,0,0,2275,2276,1,0,0,0,2276,2277,1,0,0,0,2277,2286, - 3,366,183,0,2278,2286,3,368,184,0,2279,2286,5,540,0,0,2280,2286, - 5,541,0,0,2281,2283,5,242,0,0,2282,2281,1,0,0,0,2282,2283,1,0,0, - 0,2283,2284,1,0,0,0,2284,2286,5,245,0,0,2285,2271,1,0,0,0,2285,2272, - 1,0,0,0,2285,2273,1,0,0,0,2285,2275,1,0,0,0,2285,2278,1,0,0,0,2285, - 2279,1,0,0,0,2285,2280,1,0,0,0,2285,2282,1,0,0,0,2286,361,1,0,0, - 0,2287,2288,3,372,186,0,2288,2289,3,364,182,0,2289,363,1,0,0,0,2290, - 2291,5,538,0,0,2291,365,1,0,0,0,2292,2293,5,539,0,0,2293,367,1,0, - 0,0,2294,2295,7,38,0,0,2295,369,1,0,0,0,2296,2297,7,39,0,0,2297, - 371,1,0,0,0,2298,2299,7,40,0,0,2299,373,1,0,0,0,2300,2301,7,41,0, - 0,2301,375,1,0,0,0,2302,2303,7,42,0,0,2303,377,1,0,0,0,2304,2305, - 7,43,0,0,2305,379,1,0,0,0,2306,2307,7,44,0,0,2307,381,1,0,0,0,2308, - 2309,7,45,0,0,2309,383,1,0,0,0,2310,2311,7,46,0,0,2311,385,1,0,0, - 0,273,389,396,399,413,431,435,444,449,456,467,476,488,491,498,501, - 509,513,518,521,528,536,540,552,560,564,596,599,604,608,612,616, - 625,630,634,638,643,646,650,655,661,666,671,675,679,683,693,701, - 705,709,713,717,721,725,729,733,735,745,753,777,791,796,800,806, - 809,812,819,822,831,843,867,879,884,888,896,900,906,916,921,927, - 931,935,939,948,952,959,962,972,980,988,992,1007,1026,1037,1041, - 1048,1053,1059,1063,1070,1074,1078,1082,1090,1094,1099,1105,1111, - 1114,1118,1129,1138,1152,1164,1179,1182,1186,1189,1191,1196,1200, - 1203,1207,1216,1225,1235,1240,1251,1254,1257,1260,1263,1269,1273, - 1281,1284,1289,1292,1296,1299,1301,1315,1326,1331,1339,1342,1345, - 1350,1352,1354,1359,1362,1366,1370,1379,1390,1417,1439,1452,1464, - 1477,1489,1501,1507,1534,1542,1546,1549,1552,1559,1562,1565,1568, - 1571,1574,1579,1582,1591,1596,1600,1605,1611,1616,1620,1639,1647, - 1655,1659,1663,1673,1699,1707,1719,1741,1743,1754,1757,1759,1763, - 1767,1774,1783,1789,1802,1809,1814,1820,1827,1834,1836,1839,1851, - 1856,1859,1865,1867,1873,1894,1896,1904,1911,1914,1918,1925,1929, - 1938,1942,1958,1967,1995,2004,2013,2019,2023,2029,2037,2042,2046, - 2053,2058,2066,2070,2073,2077,2086,2089,2100,2106,2124,2129,2134, - 2141,2143,2148,2155,2157,2162,2169,2171,2176,2183,2185,2192,2211, - 2218,2221,2226,2232,2240,2256,2265,2275,2282,2285 + 1,18,1,18,1,18,3,18,599,8,18,1,19,3,19,602,8,19,1,19,4,19,605,8, + 19,11,19,12,19,606,1,20,1,20,3,20,611,8,20,1,21,1,21,3,21,615,8, + 21,1,21,1,21,3,21,619,8,21,1,21,1,21,1,21,1,21,1,21,5,21,626,8,21, + 10,21,12,21,629,9,21,1,21,1,21,3,21,633,8,21,1,21,1,21,3,21,637, + 8,21,1,21,1,21,3,21,641,8,21,1,21,1,21,1,21,3,21,646,8,21,1,21,3, + 21,649,8,21,1,21,1,21,3,21,653,8,21,1,22,1,22,1,22,3,22,658,8,22, + 1,22,1,22,1,22,1,22,3,22,664,8,22,1,23,1,23,1,23,3,23,669,8,23,1, + 24,1,24,1,24,3,24,674,8,24,1,24,1,24,3,24,678,8,24,1,25,1,25,3,25, + 682,8,25,1,26,1,26,3,26,686,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5, + 28,694,8,28,10,28,12,28,697,9,28,1,28,1,28,1,29,1,29,1,29,3,29,704, + 8,29,1,29,1,29,3,29,708,8,29,1,29,1,29,3,29,712,8,29,1,29,1,29,3, + 29,716,8,29,1,29,1,29,3,29,720,8,29,1,29,1,29,3,29,724,8,29,1,29, + 1,29,3,29,728,8,29,1,29,1,29,3,29,732,8,29,1,29,1,29,3,29,736,8, + 29,3,29,738,8,29,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,748, + 8,31,1,31,1,31,1,32,1,32,1,32,1,32,3,32,756,8,32,1,32,1,32,1,33, + 1,33,1,33,1,33,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,35,1,35,5,35,778,8,35,10,35,12,35,781,9,35,1,35,1,35, + 1,35,1,35,1,35,1,35,1,35,1,35,1,35,5,35,792,8,35,10,35,12,35,795, + 9,35,1,35,1,35,3,35,799,8,35,1,36,1,36,3,36,803,8,36,1,36,1,36,1, + 36,1,36,3,36,809,8,36,1,36,3,36,812,8,36,1,36,3,36,815,8,36,1,37, + 1,37,1,37,1,37,1,37,3,37,822,8,37,1,37,3,37,825,8,37,1,38,1,38,1, + 39,1,39,1,39,1,39,1,39,3,39,834,8,39,1,40,1,40,1,41,1,41,1,41,1, + 41,1,41,1,41,1,42,1,42,3,42,846,8,42,1,42,1,42,1,42,1,42,1,42,1, + 42,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1, + 46,1,46,5,46,868,8,46,10,46,12,46,871,9,46,1,46,1,46,1,47,1,47,1, + 47,1,47,1,47,5,47,880,8,47,10,47,12,47,883,9,47,1,47,1,47,3,47,887, + 8,47,1,48,1,48,3,48,891,8,48,1,49,1,49,1,49,1,49,5,49,897,8,49,10, + 49,12,49,900,9,49,1,49,3,49,903,8,49,1,50,1,50,1,50,1,50,3,50,909, + 8,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,919,8,52,1,52, + 1,52,1,52,3,52,924,8,52,1,52,1,52,1,53,1,53,3,53,930,8,53,1,53,1, + 53,3,53,934,8,53,1,53,1,53,3,53,938,8,53,1,53,1,53,3,53,942,8,53, + 1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,951,8,54,1,54,1,54,3,54, + 955,8,54,1,54,1,54,1,54,1,54,1,54,3,54,962,8,54,1,54,3,54,965,8, + 54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,973,8,55,10,55,12,55,976,9, + 55,1,56,1,56,1,57,1,57,1,57,3,57,983,8,57,1,57,1,57,1,57,1,57,1, + 57,1,57,3,57,991,8,57,1,58,1,58,3,58,995,8,58,1,58,1,58,1,58,1,59, + 1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1010,8,60,1,61, + 1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64, + 1,64,1,64,1,64,3,64,1029,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66, + 1,66,1,66,3,66,1040,8,66,1,66,1,66,3,66,1044,8,66,1,66,1,66,1,66, + 1,66,1,66,3,66,1051,8,66,1,67,1,67,1,67,3,67,1056,8,67,1,67,1,67, + 1,68,1,68,3,68,1062,8,68,1,68,1,68,3,68,1066,8,68,1,68,1,68,1,69, + 1,69,1,69,3,69,1073,8,69,1,69,1,69,3,69,1077,8,69,1,70,1,70,3,70, + 1081,8,70,1,70,1,70,3,70,1085,8,70,1,70,1,70,1,71,1,71,1,71,1,71, + 3,71,1093,8,71,1,71,1,71,3,71,1097,8,71,1,71,1,71,1,72,3,72,1102, + 8,72,1,72,1,72,1,72,1,72,3,72,1108,8,72,1,73,1,73,1,73,1,73,3,73, + 1114,8,73,1,73,3,73,1117,8,73,1,73,1,73,3,73,1121,8,73,1,74,1,74, + 1,74,1,75,1,75,1,75,1,75,5,75,1130,8,75,10,75,12,75,1133,9,75,1, + 76,1,76,1,76,1,76,5,76,1139,8,76,10,76,12,76,1142,9,76,1,76,1,76, + 1,77,1,77,3,77,1148,8,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,4,78, + 1157,8,78,11,78,12,78,1158,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1, + 79,4,79,1169,8,79,11,79,12,79,1170,1,79,1,79,1,80,1,80,1,80,1,80, + 1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1186,8,80,1,80,3,80,1189, + 8,80,1,80,1,80,3,80,1193,8,80,1,80,3,80,1196,8,80,3,80,1198,8,80, + 1,80,1,80,1,80,3,80,1203,8,80,1,80,1,80,3,80,1207,8,80,1,80,3,80, + 1210,8,80,5,80,1212,8,80,10,80,12,80,1215,9,80,1,81,1,81,1,81,1, + 81,5,81,1221,8,81,10,81,12,81,1224,9,81,1,82,1,82,1,82,1,82,5,82, + 1230,8,82,10,82,12,82,1233,9,82,1,83,1,83,1,83,1,83,1,83,5,83,1240, + 8,83,10,83,12,83,1243,9,83,1,83,1,83,3,83,1247,8,83,1,83,1,83,1, + 83,1,83,1,83,1,84,1,84,1,85,1,85,3,85,1258,8,85,1,85,3,85,1261,8, + 85,1,85,3,85,1264,8,85,1,85,3,85,1267,8,85,1,85,3,85,1270,8,85,1, + 85,1,85,1,85,1,85,3,85,1276,8,85,1,86,1,86,3,86,1280,8,86,1,86,1, + 86,1,86,1,86,5,86,1286,8,86,10,86,12,86,1289,9,86,3,86,1291,8,86, + 1,87,1,87,1,87,3,87,1296,8,87,1,87,3,87,1299,8,87,1,87,1,87,3,87, + 1303,8,87,1,87,3,87,1306,8,87,3,87,1308,8,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,3,88,1322,8,88,1,89,1,89, + 1,89,1,90,1,90,1,90,1,90,5,90,1331,8,90,10,90,12,90,1334,9,90,1, + 90,1,90,3,90,1338,8,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1346,8, + 90,1,90,3,90,1349,8,90,1,90,3,90,1352,8,90,1,90,1,90,1,90,3,90,1357, + 8,90,5,90,1359,8,90,10,90,12,90,1362,9,90,1,91,1,91,3,91,1366,8, + 91,1,92,3,92,1369,8,92,1,92,1,92,3,92,1373,8,92,1,92,1,92,3,92,1377, + 8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1386,8,92,1,92,1,92, + 1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1397,8,92,1,93,1,93,1,93, + 1,93,1,93,1,93,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,97,1,97,1,97,1,97,1,97,5,97,1422,8,97,10,97,12,97,1425, + 9,97,1,97,1,97,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99, + 1,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,1446,8,99,1,100,1,100,1, + 101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,3,102,1459,8, + 102,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,5,104,1469,8, + 104,10,104,12,104,1472,9,104,1,105,1,105,1,105,1,105,1,105,1,105, + 1,105,1,105,5,105,1482,8,105,10,105,12,105,1485,9,105,1,105,1,105, + 1,105,1,105,1,105,1,105,1,105,5,105,1494,8,105,10,105,12,105,1497, + 9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1506,8,105, + 10,105,12,105,1509,9,105,1,105,1,105,1,105,3,105,1514,8,105,1,106, + 1,106,1,106,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108, + 1,109,1,109,1,110,1,110,1,111,1,111,1,111,1,112,1,112,1,112,1,112, + 5,112,1539,8,112,10,112,12,112,1542,9,112,1,113,1,113,1,113,1,113, + 1,114,3,114,1549,8,114,1,114,1,114,3,114,1553,8,114,1,114,3,114, + 1556,8,114,1,114,3,114,1559,8,114,1,114,1,114,1,115,1,115,1,115, + 3,115,1566,8,115,1,115,3,115,1569,8,115,1,115,3,115,1572,8,115,1, + 115,3,115,1575,8,115,1,115,3,115,1578,8,115,1,115,3,115,1581,8,115, + 1,115,1,115,1,115,3,115,1586,8,115,1,115,3,115,1589,8,115,1,116, + 1,116,1,116,1,116,1,116,5,116,1596,8,116,10,116,12,116,1599,9,116, + 1,117,1,117,3,117,1603,8,117,1,117,1,117,3,117,1607,8,117,1,118, + 1,118,1,118,3,118,1612,8,118,1,119,1,119,1,119,1,119,3,119,1618, + 8,119,1,119,1,119,1,119,3,119,1623,8,119,5,119,1625,8,119,10,119, + 12,119,1628,9,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,1646,8,120, + 1,121,1,121,1,121,1,121,5,121,1652,8,121,10,121,12,121,1655,9,121, + 1,122,1,122,1,122,4,122,1660,8,122,11,122,12,122,1661,1,122,1,122, + 3,122,1666,8,122,1,123,1,123,3,123,1670,8,123,1,124,1,124,1,124, + 1,124,1,124,1,124,1,124,1,124,3,124,1680,8,124,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125, + 1706,8,125,1,126,1,126,1,126,1,126,5,126,1712,8,126,10,126,12,126, + 1715,9,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, + 3,127,1726,8,127,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129, + 1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, + 1,131,3,131,1748,8,131,3,131,1750,8,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,3,131,1761,8,131,1,131,5,131,1764, + 8,131,10,131,12,131,1767,9,131,1,132,3,132,1770,8,132,1,132,1,132, + 3,132,1774,8,132,1,132,1,132,1,132,1,132,1,132,3,132,1781,8,132, + 1,132,1,132,1,132,1,132,1,132,5,132,1788,8,132,10,132,12,132,1791, + 9,132,1,132,1,132,1,132,3,132,1796,8,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,1809,8,132,1,132, + 1,132,1,132,1,132,1,132,3,132,1816,8,132,1,132,1,132,1,132,3,132, + 1821,8,132,1,132,1,132,1,132,1,132,3,132,1827,8,132,1,132,1,132, + 1,132,1,132,1,132,3,132,1834,8,132,1,132,1,132,1,132,1,132,1,132, + 3,132,1841,8,132,3,132,1843,8,132,1,133,3,133,1846,8,133,1,133,1, + 133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1856,8,133,10,133, + 12,133,1859,9,133,1,133,1,133,3,133,1863,8,133,1,133,3,133,1866, + 8,133,1,133,1,133,1,133,1,133,3,133,1872,8,133,3,133,1874,8,133, + 1,134,1,134,1,134,1,134,3,134,1880,8,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,5,134,1901,8,134,10,134,12,134,1904,9,134, + 1,135,1,135,1,135,1,135,1,135,3,135,1911,8,135,1,135,1,135,1,135, + 5,135,1916,8,135,10,135,12,135,1919,9,135,3,135,1921,8,135,1,135, + 1,135,3,135,1925,8,135,1,136,1,136,1,136,4,136,1930,8,136,11,136, + 12,136,1931,1,136,1,136,3,136,1936,8,136,1,136,1,136,1,136,1,136, + 1,136,4,136,1943,8,136,11,136,12,136,1944,1,136,1,136,3,136,1949, + 8,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,3,136,1965,8,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,3,136,1974,8,136,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136, + 2002,8,136,1,136,1,136,1,136,1,136,1,136,5,136,2009,8,136,10,136, + 12,136,2012,9,136,1,137,1,137,1,138,1,138,1,138,1,138,3,138,2020, + 8,138,1,139,1,139,1,139,1,139,3,139,2026,8,139,1,140,1,140,3,140, + 2030,8,140,1,141,1,141,1,141,1,141,3,141,2036,8,141,1,142,1,142, + 1,143,1,143,1,144,1,144,3,144,2044,8,144,1,145,1,145,1,145,3,145, + 2049,8,145,1,146,1,146,3,146,2053,8,146,1,147,1,147,1,147,4,147, + 2058,8,147,11,147,12,147,2059,1,148,1,148,1,148,3,148,2065,8,148, + 1,149,1,149,1,149,1,149,1,149,1,150,3,150,2073,8,150,1,150,1,150, + 3,150,2077,8,150,1,151,3,151,2080,8,151,1,151,1,151,3,151,2084,8, + 151,1,152,1,152,1,152,1,153,1,153,4,153,2091,8,153,11,153,12,153, + 2092,1,153,3,153,2096,8,153,1,154,1,154,1,154,1,154,1,155,1,155, + 1,155,5,155,2105,8,155,10,155,12,155,2108,9,155,1,156,1,156,1,156, + 3,156,2113,8,156,1,157,1,157,1,158,1,158,1,159,1,159,1,159,1,159, + 1,159,1,160,1,160,1,161,1,161,1,162,1,162,1,162,3,162,2131,8,162, + 1,163,1,163,1,163,3,163,2136,8,163,1,164,1,164,1,164,3,164,2141, + 8,164,1,164,1,164,1,164,1,164,1,164,3,164,2148,8,164,3,164,2150, + 8,164,1,165,1,165,1,165,3,165,2155,8,165,1,165,1,165,1,165,1,165, + 1,165,3,165,2162,8,165,3,165,2164,8,165,1,166,1,166,1,166,3,166, + 2169,8,166,1,166,1,166,1,166,1,166,1,166,3,166,2176,8,166,3,166, + 2178,8,166,1,167,1,167,1,167,3,167,2183,8,167,1,167,1,167,1,167, + 1,167,1,167,3,167,2190,8,167,3,167,2192,8,167,1,168,1,168,1,168, + 5,168,2197,8,168,10,168,12,168,2200,9,168,1,169,1,169,1,169,1,170, + 1,170,1,170,1,170,1,171,1,171,1,171,1,172,1,172,1,172,1,172,5,172, + 2216,8,172,10,172,12,172,2219,9,172,1,172,1,172,1,173,1,173,3,173, + 2225,8,173,1,173,3,173,2228,8,173,1,174,1,174,1,174,3,174,2233,8, + 174,1,175,1,175,1,175,1,175,3,175,2239,8,175,1,176,1,176,1,176,1, + 176,1,176,1,176,3,176,2247,8,176,1,177,1,177,1,177,1,177,1,177,1, + 177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,2263,8, + 177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,3,178,2272,8,178,1, + 179,1,179,1,180,1,180,1,181,1,181,1,181,1,181,3,181,2282,8,181,1, + 181,1,181,1,181,1,181,1,181,3,181,2289,8,181,1,181,3,181,2292,8, + 181,1,182,1,182,1,182,1,183,1,183,1,184,1,184,1,185,1,185,1,186, + 1,186,1,187,1,187,1,188,1,188,1,189,1,189,1,190,1,190,1,191,1,191, + 1,192,1,192,1,193,1,193,1,193,1,2198,5,160,180,262,268,272,194,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,120,122,124, + 126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156, + 158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188, + 190,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220, + 222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,252, + 254,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284, + 286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316, + 318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348, + 350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380, + 382,384,386,0,47,2,0,109,109,451,451,3,0,45,45,128,128,189,189,4, + 0,42,42,90,90,423,423,465,465,2,0,442,442,448,448,2,0,151,151,170, + 170,2,0,438,438,490,490,2,0,483,486,488,488,3,0,32,32,91,91,245, + 245,11,0,28,29,35,35,46,46,92,92,178,179,345,345,361,361,379,379, + 382,382,388,388,417,418,2,0,434,434,436,436,4,0,101,102,115,115, + 144,144,247,247,2,0,13,13,232,232,2,0,456,456,463,463,3,0,5,5,271, + 271,445,445,3,0,267,267,456,456,463,463,3,0,426,426,459,459,478, + 478,3,0,331,331,466,466,482,482,2,0,441,441,491,491,2,0,183,183, + 266,266,3,0,130,130,180,180,403,403,4,0,152,152,174,174,202,202, + 318,318,3,0,446,446,460,460,500,500,4,0,251,251,447,447,495,497, + 499,499,2,0,74,74,321,321,3,0,460,460,493,493,500,500,2,0,440,440, + 451,451,2,0,458,458,468,468,4,0,140,140,245,245,398,398,405,405, + 2,0,19,19,370,370,2,0,5,5,11,11,2,0,510,510,530,531,4,0,453,453, + 528,528,532,532,535,535,2,0,530,531,533,533,1,0,530,531,1,0,539, + 540,2,0,539,539,542,542,4,0,453,453,528,528,530,532,534,535,3,0, + 242,242,509,510,530,531,2,0,140,140,398,398,2,0,5,5,113,113,10,0, + 97,97,165,165,223,223,230,230,335,335,437,437,471,471,473,473,489, + 489,503,503,15,0,97,97,165,165,223,223,230,230,335,335,428,428,437, + 437,443,443,449,450,455,455,461,461,471,476,489,489,492,492,503, + 504,11,0,5,5,13,13,33,33,78,78,84,85,113,113,201,201,208,209,390, + 390,414,414,528,528,3,0,78,78,84,85,208,209,2,0,91,91,379,380,53, + 0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,98,99, + 107,107,119,119,134,134,139,139,143,143,145,145,160,160,165,165, + 167,167,187,188,190,195,198,198,200,200,202,202,206,206,210,210, + 215,215,221,221,223,224,230,230,244,244,246,246,265,265,277,277, + 282,282,284,284,294,294,318,318,322,324,335,335,358,359,365,365, + 368,368,381,381,396,396,399,400,409,409,420,421,437,437,470,470, + 489,489,503,503,1,0,438,505,2525,0,391,1,0,0,0,2,401,1,0,0,0,4,415, + 1,0,0,0,6,417,1,0,0,0,8,433,1,0,0,0,10,437,1,0,0,0,12,439,1,0,0, + 0,14,442,1,0,0,0,16,453,1,0,0,0,18,461,1,0,0,0,20,469,1,0,0,0,22, + 471,1,0,0,0,24,523,1,0,0,0,26,525,1,0,0,0,28,532,1,0,0,0,30,536, + 1,0,0,0,32,540,1,0,0,0,34,544,1,0,0,0,36,598,1,0,0,0,38,604,1,0, + 0,0,40,610,1,0,0,0,42,612,1,0,0,0,44,654,1,0,0,0,46,668,1,0,0,0, + 48,670,1,0,0,0,50,681,1,0,0,0,52,685,1,0,0,0,54,687,1,0,0,0,56,689, + 1,0,0,0,58,737,1,0,0,0,60,739,1,0,0,0,62,743,1,0,0,0,64,751,1,0, + 0,0,66,759,1,0,0,0,68,763,1,0,0,0,70,798,1,0,0,0,72,814,1,0,0,0, + 74,816,1,0,0,0,76,826,1,0,0,0,78,828,1,0,0,0,80,835,1,0,0,0,82,837, + 1,0,0,0,84,845,1,0,0,0,86,853,1,0,0,0,88,855,1,0,0,0,90,859,1,0, + 0,0,92,863,1,0,0,0,94,886,1,0,0,0,96,890,1,0,0,0,98,892,1,0,0,0, + 100,908,1,0,0,0,102,910,1,0,0,0,104,915,1,0,0,0,106,927,1,0,0,0, + 108,946,1,0,0,0,110,966,1,0,0,0,112,977,1,0,0,0,114,979,1,0,0,0, + 116,992,1,0,0,0,118,999,1,0,0,0,120,1002,1,0,0,0,122,1011,1,0,0, + 0,124,1015,1,0,0,0,126,1019,1,0,0,0,128,1022,1,0,0,0,130,1030,1, + 0,0,0,132,1035,1,0,0,0,134,1052,1,0,0,0,136,1059,1,0,0,0,138,1069, + 1,0,0,0,140,1078,1,0,0,0,142,1088,1,0,0,0,144,1107,1,0,0,0,146,1109, + 1,0,0,0,148,1122,1,0,0,0,150,1125,1,0,0,0,152,1134,1,0,0,0,154,1147, + 1,0,0,0,156,1149,1,0,0,0,158,1162,1,0,0,0,160,1197,1,0,0,0,162,1216, + 1,0,0,0,164,1225,1,0,0,0,166,1234,1,0,0,0,168,1253,1,0,0,0,170,1275, + 1,0,0,0,172,1277,1,0,0,0,174,1307,1,0,0,0,176,1321,1,0,0,0,178,1323, + 1,0,0,0,180,1337,1,0,0,0,182,1363,1,0,0,0,184,1396,1,0,0,0,186,1398, + 1,0,0,0,188,1404,1,0,0,0,190,1406,1,0,0,0,192,1411,1,0,0,0,194,1416, + 1,0,0,0,196,1428,1,0,0,0,198,1445,1,0,0,0,200,1447,1,0,0,0,202,1449, + 1,0,0,0,204,1458,1,0,0,0,206,1460,1,0,0,0,208,1463,1,0,0,0,210,1513, + 1,0,0,0,212,1515,1,0,0,0,214,1518,1,0,0,0,216,1520,1,0,0,0,218,1527, + 1,0,0,0,220,1529,1,0,0,0,222,1531,1,0,0,0,224,1534,1,0,0,0,226,1543, + 1,0,0,0,228,1548,1,0,0,0,230,1562,1,0,0,0,232,1590,1,0,0,0,234,1600, + 1,0,0,0,236,1608,1,0,0,0,238,1613,1,0,0,0,240,1645,1,0,0,0,242,1647, + 1,0,0,0,244,1656,1,0,0,0,246,1667,1,0,0,0,248,1679,1,0,0,0,250,1705, + 1,0,0,0,252,1707,1,0,0,0,254,1725,1,0,0,0,256,1727,1,0,0,0,258,1732, + 1,0,0,0,260,1735,1,0,0,0,262,1749,1,0,0,0,264,1842,1,0,0,0,266,1873, + 1,0,0,0,268,1879,1,0,0,0,270,1924,1,0,0,0,272,2001,1,0,0,0,274,2013, + 1,0,0,0,276,2019,1,0,0,0,278,2025,1,0,0,0,280,2029,1,0,0,0,282,2035, + 1,0,0,0,284,2037,1,0,0,0,286,2039,1,0,0,0,288,2043,1,0,0,0,290,2045, + 1,0,0,0,292,2050,1,0,0,0,294,2057,1,0,0,0,296,2061,1,0,0,0,298,2066, + 1,0,0,0,300,2076,1,0,0,0,302,2079,1,0,0,0,304,2085,1,0,0,0,306,2095, + 1,0,0,0,308,2097,1,0,0,0,310,2101,1,0,0,0,312,2112,1,0,0,0,314,2114, + 1,0,0,0,316,2116,1,0,0,0,318,2118,1,0,0,0,320,2123,1,0,0,0,322,2125, + 1,0,0,0,324,2127,1,0,0,0,326,2132,1,0,0,0,328,2149,1,0,0,0,330,2163, + 1,0,0,0,332,2177,1,0,0,0,334,2191,1,0,0,0,336,2193,1,0,0,0,338,2201, + 1,0,0,0,340,2204,1,0,0,0,342,2208,1,0,0,0,344,2211,1,0,0,0,346,2222, + 1,0,0,0,348,2232,1,0,0,0,350,2238,1,0,0,0,352,2246,1,0,0,0,354,2262, + 1,0,0,0,356,2271,1,0,0,0,358,2273,1,0,0,0,360,2275,1,0,0,0,362,2291, + 1,0,0,0,364,2293,1,0,0,0,366,2296,1,0,0,0,368,2298,1,0,0,0,370,2300, + 1,0,0,0,372,2302,1,0,0,0,374,2304,1,0,0,0,376,2306,1,0,0,0,378,2308, + 1,0,0,0,380,2310,1,0,0,0,382,2312,1,0,0,0,384,2314,1,0,0,0,386,2316, + 1,0,0,0,388,390,3,2,1,0,389,388,1,0,0,0,390,393,1,0,0,0,391,389, + 1,0,0,0,391,392,1,0,0,0,392,394,1,0,0,0,393,391,1,0,0,0,394,395, + 5,0,0,1,395,1,1,0,0,0,396,398,3,4,2,0,397,399,5,522,0,0,398,397, + 1,0,0,0,398,399,1,0,0,0,399,402,1,0,0,0,400,402,3,6,3,0,401,396, + 1,0,0,0,401,400,1,0,0,0,402,3,1,0,0,0,403,416,3,8,4,0,404,416,3, + 10,5,0,405,416,3,12,6,0,406,416,3,14,7,0,407,416,3,20,10,0,408,416, + 3,24,12,0,409,416,3,26,13,0,410,416,3,28,14,0,411,416,3,30,15,0, + 412,416,3,32,16,0,413,416,3,34,17,0,414,416,3,36,18,0,415,403,1, + 0,0,0,415,404,1,0,0,0,415,405,1,0,0,0,415,406,1,0,0,0,415,407,1, + 0,0,0,415,408,1,0,0,0,415,409,1,0,0,0,415,410,1,0,0,0,415,411,1, + 0,0,0,415,412,1,0,0,0,415,413,1,0,0,0,415,414,1,0,0,0,416,5,1,0, + 0,0,417,418,5,522,0,0,418,7,1,0,0,0,419,434,3,40,20,0,420,434,3, + 104,52,0,421,434,3,106,53,0,422,434,3,108,54,0,423,434,3,102,51, + 0,424,434,3,114,57,0,425,434,3,128,64,0,426,434,3,130,65,0,427,434, + 3,132,66,0,428,434,3,134,67,0,429,434,3,136,68,0,430,434,3,138,69, + 0,431,434,3,140,70,0,432,434,3,142,71,0,433,419,1,0,0,0,433,420, + 1,0,0,0,433,421,1,0,0,0,433,422,1,0,0,0,433,423,1,0,0,0,433,424, + 1,0,0,0,433,425,1,0,0,0,433,426,1,0,0,0,433,427,1,0,0,0,433,428, + 1,0,0,0,433,429,1,0,0,0,433,430,1,0,0,0,433,431,1,0,0,0,433,432, + 1,0,0,0,434,9,1,0,0,0,435,438,3,160,80,0,436,438,3,144,72,0,437, + 435,1,0,0,0,437,436,1,0,0,0,438,11,1,0,0,0,439,440,7,0,0,0,440,441, + 3,330,165,0,441,13,1,0,0,0,442,446,5,135,0,0,443,447,3,16,8,0,444, + 445,5,480,0,0,445,447,5,146,0,0,446,443,1,0,0,0,446,444,1,0,0,0, + 446,447,1,0,0,0,447,451,1,0,0,0,448,452,3,10,5,0,449,452,3,146,73, + 0,450,452,3,158,79,0,451,448,1,0,0,0,451,449,1,0,0,0,451,450,1,0, + 0,0,452,15,1,0,0,0,453,458,3,18,9,0,454,455,5,521,0,0,455,457,3, + 18,9,0,456,454,1,0,0,0,457,460,1,0,0,0,458,456,1,0,0,0,458,459,1, + 0,0,0,459,17,1,0,0,0,460,458,1,0,0,0,461,462,7,1,0,0,462,19,1,0, + 0,0,463,464,5,411,0,0,464,465,5,442,0,0,465,470,3,320,160,0,466, + 467,5,411,0,0,467,470,3,324,162,0,468,470,3,22,11,0,469,463,1,0, + 0,0,469,466,1,0,0,0,469,468,1,0,0,0,470,21,1,0,0,0,471,472,5,411, + 0,0,472,473,5,228,0,0,473,478,3,336,168,0,474,475,5,521,0,0,475, + 477,3,336,168,0,476,474,1,0,0,0,477,480,1,0,0,0,478,476,1,0,0,0, + 478,479,1,0,0,0,479,23,1,0,0,0,480,478,1,0,0,0,481,482,5,342,0,0, + 482,524,7,2,0,0,483,484,5,342,0,0,484,485,5,76,0,0,485,524,7,3,0, + 0,486,487,5,342,0,0,487,490,5,375,0,0,488,489,7,4,0,0,489,491,3, + 324,162,0,490,488,1,0,0,0,490,491,1,0,0,0,491,493,1,0,0,0,492,494, + 3,266,133,0,493,492,1,0,0,0,493,494,1,0,0,0,494,524,1,0,0,0,495, + 496,5,342,0,0,496,497,5,58,0,0,497,500,7,4,0,0,498,501,3,332,166, + 0,499,501,3,330,165,0,500,498,1,0,0,0,500,499,1,0,0,0,501,503,1, + 0,0,0,502,504,3,266,133,0,503,502,1,0,0,0,503,504,1,0,0,0,504,524, + 1,0,0,0,505,506,5,342,0,0,506,511,5,72,0,0,507,508,5,374,0,0,508, + 512,3,330,165,0,509,510,5,502,0,0,510,512,3,332,166,0,511,507,1, + 0,0,0,511,509,1,0,0,0,512,524,1,0,0,0,513,515,5,342,0,0,514,516, + 5,412,0,0,515,514,1,0,0,0,515,516,1,0,0,0,516,517,1,0,0,0,517,524, + 5,154,0,0,518,520,5,342,0,0,519,521,5,152,0,0,520,519,1,0,0,0,520, + 521,1,0,0,0,521,522,1,0,0,0,522,524,5,228,0,0,523,481,1,0,0,0,523, + 483,1,0,0,0,523,486,1,0,0,0,523,495,1,0,0,0,523,505,1,0,0,0,523, + 513,1,0,0,0,523,518,1,0,0,0,524,25,1,0,0,0,525,526,5,469,0,0,526, + 527,5,227,0,0,527,530,3,336,168,0,528,529,5,434,0,0,529,531,3,344, + 172,0,530,528,1,0,0,0,530,531,1,0,0,0,531,27,1,0,0,0,532,533,5,501, + 0,0,533,534,5,227,0,0,534,535,3,336,168,0,535,29,1,0,0,0,536,538, + 5,341,0,0,537,539,3,346,173,0,538,537,1,0,0,0,538,539,1,0,0,0,539, + 31,1,0,0,0,540,542,5,313,0,0,541,543,3,348,174,0,542,541,1,0,0,0, + 542,543,1,0,0,0,543,33,1,0,0,0,544,545,7,5,0,0,545,546,5,464,0,0, + 546,547,3,112,56,0,547,35,1,0,0,0,548,549,5,438,0,0,549,550,5,464, + 0,0,550,551,5,434,0,0,551,554,3,38,19,0,552,553,5,17,0,0,553,555, + 3,336,168,0,554,552,1,0,0,0,554,555,1,0,0,0,555,599,1,0,0,0,556, + 557,5,438,0,0,557,558,5,457,0,0,558,559,5,434,0,0,559,562,3,38,19, + 0,560,561,5,17,0,0,561,563,3,336,168,0,562,560,1,0,0,0,562,563,1, + 0,0,0,563,566,1,0,0,0,564,565,5,312,0,0,565,567,3,336,168,0,566, + 564,1,0,0,0,566,567,1,0,0,0,567,599,1,0,0,0,568,569,5,438,0,0,569, + 570,7,6,0,0,570,571,5,434,0,0,571,572,3,38,19,0,572,573,5,312,0, + 0,573,574,3,336,168,0,574,599,1,0,0,0,575,576,5,438,0,0,576,577, + 5,487,0,0,577,599,3,38,19,0,578,579,5,438,0,0,579,580,5,454,0,0, + 580,581,5,457,0,0,581,582,5,434,0,0,582,583,3,38,19,0,583,584,5, + 312,0,0,584,585,3,336,168,0,585,586,5,467,0,0,586,587,3,336,168, + 0,587,599,1,0,0,0,588,589,5,438,0,0,589,590,5,444,0,0,590,591,5, + 457,0,0,591,592,5,434,0,0,592,593,3,38,19,0,593,594,5,146,0,0,594, + 595,3,336,168,0,595,596,5,17,0,0,596,597,3,336,168,0,597,599,1,0, + 0,0,598,548,1,0,0,0,598,556,1,0,0,0,598,568,1,0,0,0,598,575,1,0, + 0,0,598,578,1,0,0,0,598,588,1,0,0,0,599,37,1,0,0,0,600,602,5,535, + 0,0,601,600,1,0,0,0,601,602,1,0,0,0,602,603,1,0,0,0,603,605,3,336, + 168,0,604,601,1,0,0,0,605,606,1,0,0,0,606,604,1,0,0,0,606,607,1, + 0,0,0,607,39,1,0,0,0,608,611,3,42,21,0,609,611,3,44,22,0,610,608, + 1,0,0,0,610,609,1,0,0,0,611,41,1,0,0,0,612,614,5,72,0,0,613,615, + 5,498,0,0,614,613,1,0,0,0,614,615,1,0,0,0,615,616,1,0,0,0,616,618, + 5,374,0,0,617,619,3,340,170,0,618,617,1,0,0,0,618,619,1,0,0,0,619, + 620,1,0,0,0,620,621,3,328,164,0,621,622,5,517,0,0,622,627,3,46,23, + 0,623,624,5,521,0,0,624,626,3,46,23,0,625,623,1,0,0,0,626,629,1, + 0,0,0,627,625,1,0,0,0,627,628,1,0,0,0,628,632,1,0,0,0,629,627,1, + 0,0,0,630,631,5,521,0,0,631,633,3,82,41,0,632,630,1,0,0,0,632,633, + 1,0,0,0,633,636,1,0,0,0,634,635,5,521,0,0,635,637,3,84,42,0,636, + 634,1,0,0,0,636,637,1,0,0,0,637,640,1,0,0,0,638,639,5,521,0,0,639, + 641,3,88,44,0,640,638,1,0,0,0,640,641,1,0,0,0,641,642,1,0,0,0,642, + 645,5,518,0,0,643,644,5,59,0,0,644,646,5,538,0,0,645,643,1,0,0,0, + 645,646,1,0,0,0,646,648,1,0,0,0,647,649,3,90,45,0,648,647,1,0,0, + 0,648,649,1,0,0,0,649,650,1,0,0,0,650,652,3,338,169,0,651,653,3, + 98,49,0,652,651,1,0,0,0,652,653,1,0,0,0,653,43,1,0,0,0,654,655,5, + 72,0,0,655,657,5,374,0,0,656,658,3,340,170,0,657,656,1,0,0,0,657, + 658,1,0,0,0,658,659,1,0,0,0,659,660,3,328,164,0,660,663,3,338,169, + 0,661,662,5,17,0,0,662,664,3,160,80,0,663,661,1,0,0,0,663,664,1, + 0,0,0,664,45,1,0,0,0,665,669,3,48,24,0,666,669,3,74,37,0,667,669, + 3,78,39,0,668,665,1,0,0,0,668,666,1,0,0,0,668,667,1,0,0,0,669,47, + 1,0,0,0,670,671,3,50,25,0,671,673,3,58,29,0,672,674,3,72,36,0,673, + 672,1,0,0,0,673,674,1,0,0,0,674,677,1,0,0,0,675,676,5,59,0,0,676, + 678,5,538,0,0,677,675,1,0,0,0,677,678,1,0,0,0,678,49,1,0,0,0,679, + 682,3,336,168,0,680,682,3,260,130,0,681,679,1,0,0,0,681,680,1,0, + 0,0,682,51,1,0,0,0,683,686,3,336,168,0,684,686,4,26,0,0,685,683, + 1,0,0,0,685,684,1,0,0,0,686,53,1,0,0,0,687,688,3,336,168,0,688,55, + 1,0,0,0,689,690,5,517,0,0,690,695,3,52,26,0,691,692,5,521,0,0,692, + 694,3,52,26,0,693,691,1,0,0,0,694,697,1,0,0,0,695,693,1,0,0,0,695, + 696,1,0,0,0,696,698,1,0,0,0,697,695,1,0,0,0,698,699,5,518,0,0,699, + 57,1,0,0,0,700,738,7,7,0,0,701,703,7,8,0,0,702,704,3,60,30,0,703, + 702,1,0,0,0,703,704,1,0,0,0,704,738,1,0,0,0,705,707,5,380,0,0,706, + 708,3,60,30,0,707,706,1,0,0,0,707,708,1,0,0,0,708,715,1,0,0,0,709, + 711,7,9,0,0,710,712,5,207,0,0,711,710,1,0,0,0,711,712,1,0,0,0,712, + 713,1,0,0,0,713,714,5,379,0,0,714,716,5,505,0,0,715,709,1,0,0,0, + 715,716,1,0,0,0,716,738,1,0,0,0,717,719,7,10,0,0,718,720,3,62,31, + 0,719,718,1,0,0,0,719,720,1,0,0,0,720,738,1,0,0,0,721,723,7,11,0, + 0,722,724,3,66,33,0,723,722,1,0,0,0,723,724,1,0,0,0,724,738,1,0, + 0,0,725,727,5,470,0,0,726,728,3,68,34,0,727,726,1,0,0,0,727,728, + 1,0,0,0,728,738,1,0,0,0,729,731,5,322,0,0,730,732,3,70,35,0,731, + 730,1,0,0,0,731,732,1,0,0,0,732,738,1,0,0,0,733,735,5,295,0,0,734, + 736,3,64,32,0,735,734,1,0,0,0,735,736,1,0,0,0,736,738,1,0,0,0,737, + 700,1,0,0,0,737,701,1,0,0,0,737,705,1,0,0,0,737,717,1,0,0,0,737, + 721,1,0,0,0,737,725,1,0,0,0,737,729,1,0,0,0,737,733,1,0,0,0,738, + 59,1,0,0,0,739,740,5,517,0,0,740,741,3,368,184,0,741,742,5,518,0, + 0,742,61,1,0,0,0,743,744,5,517,0,0,744,747,3,368,184,0,745,746,5, + 521,0,0,746,748,3,368,184,0,747,745,1,0,0,0,747,748,1,0,0,0,748, + 749,1,0,0,0,749,750,5,518,0,0,750,63,1,0,0,0,751,752,5,517,0,0,752, + 755,3,366,183,0,753,754,5,521,0,0,754,756,3,366,183,0,755,753,1, + 0,0,0,755,756,1,0,0,0,756,757,1,0,0,0,757,758,5,518,0,0,758,65,1, + 0,0,0,759,760,5,508,0,0,760,761,3,58,29,0,761,762,5,507,0,0,762, + 67,1,0,0,0,763,764,5,508,0,0,764,765,3,58,29,0,765,766,5,521,0,0, + 766,767,3,58,29,0,767,768,1,0,0,0,768,769,5,507,0,0,769,69,1,0,0, + 0,770,771,5,508,0,0,771,772,3,52,26,0,772,779,3,58,29,0,773,774, + 5,521,0,0,774,775,3,52,26,0,775,776,3,58,29,0,776,778,1,0,0,0,777, + 773,1,0,0,0,778,781,1,0,0,0,779,777,1,0,0,0,779,780,1,0,0,0,780, + 782,1,0,0,0,781,779,1,0,0,0,782,783,5,507,0,0,783,799,1,0,0,0,784, + 785,5,517,0,0,785,786,3,52,26,0,786,793,3,58,29,0,787,788,5,521, + 0,0,788,789,3,52,26,0,789,790,3,58,29,0,790,792,1,0,0,0,791,787, + 1,0,0,0,792,795,1,0,0,0,793,791,1,0,0,0,793,794,1,0,0,0,794,796, + 1,0,0,0,795,793,1,0,0,0,796,797,5,518,0,0,797,799,1,0,0,0,798,770, + 1,0,0,0,798,784,1,0,0,0,799,71,1,0,0,0,800,801,5,64,0,0,801,803, + 3,86,43,0,802,800,1,0,0,0,802,803,1,0,0,0,803,804,1,0,0,0,804,805, + 5,289,0,0,805,808,5,467,0,0,806,807,5,242,0,0,807,809,5,125,0,0, + 808,806,1,0,0,0,808,809,1,0,0,0,809,815,1,0,0,0,810,812,5,242,0, + 0,811,810,1,0,0,0,811,812,1,0,0,0,812,813,1,0,0,0,813,815,5,245, + 0,0,814,802,1,0,0,0,814,811,1,0,0,0,815,73,1,0,0,0,816,817,3,50, + 25,0,817,818,3,58,29,0,818,821,5,219,0,0,819,820,5,151,0,0,820,822, + 3,76,38,0,821,819,1,0,0,0,821,822,1,0,0,0,822,824,1,0,0,0,823,825, + 5,424,0,0,824,823,1,0,0,0,824,825,1,0,0,0,825,75,1,0,0,0,826,827, + 5,538,0,0,827,77,1,0,0,0,828,829,3,50,25,0,829,830,5,17,0,0,830, + 833,3,80,40,0,831,832,5,59,0,0,832,834,5,538,0,0,833,831,1,0,0,0, + 833,834,1,0,0,0,834,79,1,0,0,0,835,836,3,260,130,0,836,81,1,0,0, + 0,837,838,5,425,0,0,838,839,5,146,0,0,839,840,3,52,26,0,840,841, + 5,17,0,0,841,842,3,260,130,0,842,83,1,0,0,0,843,844,5,64,0,0,844, + 846,3,86,43,0,845,843,1,0,0,0,845,846,1,0,0,0,846,847,1,0,0,0,847, + 848,5,289,0,0,848,849,5,467,0,0,849,850,3,56,28,0,850,851,5,242, + 0,0,851,852,5,125,0,0,852,85,1,0,0,0,853,854,3,312,156,0,854,87, + 1,0,0,0,855,856,5,278,0,0,856,857,5,146,0,0,857,858,5,372,0,0,858, + 89,1,0,0,0,859,860,5,270,0,0,860,861,5,34,0,0,861,862,3,92,46,0, + 862,91,1,0,0,0,863,864,5,517,0,0,864,869,3,94,47,0,865,866,5,521, + 0,0,866,868,3,94,47,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,872,1,0,0,0,871,869,1,0,0,0,872,873,5, + 518,0,0,873,93,1,0,0,0,874,887,3,52,26,0,875,876,5,517,0,0,876,881, + 3,96,48,0,877,878,5,521,0,0,878,880,3,96,48,0,879,877,1,0,0,0,880, + 883,1,0,0,0,881,879,1,0,0,0,881,882,1,0,0,0,882,884,1,0,0,0,883, + 881,1,0,0,0,884,885,5,518,0,0,885,887,1,0,0,0,886,874,1,0,0,0,886, + 875,1,0,0,0,887,95,1,0,0,0,888,891,3,288,144,0,889,891,3,362,181, + 0,890,888,1,0,0,0,890,889,1,0,0,0,891,97,1,0,0,0,892,893,5,203,0, + 0,893,902,3,330,165,0,894,898,5,517,0,0,895,897,3,100,50,0,896,895, + 1,0,0,0,897,900,1,0,0,0,898,896,1,0,0,0,898,899,1,0,0,0,899,901, + 1,0,0,0,900,898,1,0,0,0,901,903,5,518,0,0,902,894,1,0,0,0,902,903, + 1,0,0,0,903,99,1,0,0,0,904,905,7,12,0,0,905,909,7,13,0,0,906,907, + 7,14,0,0,907,909,7,15,0,0,908,904,1,0,0,0,908,906,1,0,0,0,909,101, + 1,0,0,0,910,911,5,72,0,0,911,912,5,442,0,0,912,913,3,322,161,0,913, + 914,3,338,169,0,914,103,1,0,0,0,915,916,5,72,0,0,916,918,5,448,0, + 0,917,919,3,340,170,0,918,917,1,0,0,0,918,919,1,0,0,0,919,920,1, + 0,0,0,920,923,3,326,163,0,921,922,5,59,0,0,922,924,5,538,0,0,923, + 921,1,0,0,0,923,924,1,0,0,0,924,925,1,0,0,0,925,926,3,338,169,0, + 926,105,1,0,0,0,927,929,5,72,0,0,928,930,5,498,0,0,929,928,1,0,0, + 0,929,930,1,0,0,0,930,931,1,0,0,0,931,933,5,502,0,0,932,934,3,340, + 170,0,933,932,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935,937,3, + 334,167,0,936,938,3,56,28,0,937,936,1,0,0,0,937,938,1,0,0,0,938, + 941,1,0,0,0,939,940,5,59,0,0,940,942,5,538,0,0,941,939,1,0,0,0,941, + 942,1,0,0,0,942,943,1,0,0,0,943,944,5,17,0,0,944,945,3,160,80,0, + 945,107,1,0,0,0,946,950,5,72,0,0,947,951,5,498,0,0,948,949,5,498, + 0,0,949,951,5,371,0,0,950,947,1,0,0,0,950,948,1,0,0,0,950,951,1, + 0,0,0,951,952,1,0,0,0,952,954,5,153,0,0,953,955,3,340,170,0,954, + 953,1,0,0,0,954,955,1,0,0,0,955,956,1,0,0,0,956,957,3,274,137,0, + 957,958,5,17,0,0,958,961,3,312,156,0,959,960,5,196,0,0,960,962,7, + 16,0,0,961,959,1,0,0,0,961,962,1,0,0,0,962,964,1,0,0,0,963,965,3, + 110,55,0,964,963,1,0,0,0,964,965,1,0,0,0,965,109,1,0,0,0,966,967, + 5,413,0,0,967,968,5,464,0,0,968,974,3,112,56,0,969,970,5,521,0,0, + 970,971,5,464,0,0,971,973,3,112,56,0,972,969,1,0,0,0,973,976,1,0, + 0,0,974,972,1,0,0,0,974,975,1,0,0,0,975,111,1,0,0,0,976,974,1,0, + 0,0,977,978,5,538,0,0,978,113,1,0,0,0,979,980,5,8,0,0,980,982,5, + 374,0,0,981,983,3,342,171,0,982,981,1,0,0,0,982,983,1,0,0,0,983, + 984,1,0,0,0,984,990,3,330,165,0,985,991,3,116,58,0,986,991,3,118, + 59,0,987,991,3,120,60,0,988,991,3,122,61,0,989,991,3,124,62,0,990, + 985,1,0,0,0,990,986,1,0,0,0,990,987,1,0,0,0,990,988,1,0,0,0,990, + 989,1,0,0,0,991,115,1,0,0,0,992,994,5,312,0,0,993,995,3,336,168, + 0,994,993,1,0,0,0,994,995,1,0,0,0,995,996,1,0,0,0,996,997,5,389, + 0,0,997,998,3,336,168,0,998,117,1,0,0,0,999,1000,5,341,0,0,1000, + 1001,3,344,172,0,1001,119,1,0,0,0,1002,1003,5,438,0,0,1003,1004, + 5,64,0,0,1004,1005,3,86,43,0,1005,1006,5,289,0,0,1006,1007,5,467, + 0,0,1007,1009,3,56,28,0,1008,1010,3,126,63,0,1009,1008,1,0,0,0,1009, + 1010,1,0,0,0,1010,121,1,0,0,0,1011,1012,5,116,0,0,1012,1013,5,64, + 0,0,1013,1014,3,86,43,0,1014,123,1,0,0,0,1015,1016,5,438,0,0,1016, + 1017,5,404,0,0,1017,1018,3,56,28,0,1018,125,1,0,0,0,1019,1020,5, + 242,0,0,1020,1021,5,125,0,0,1021,127,1,0,0,0,1022,1023,5,8,0,0,1023, + 1024,5,502,0,0,1024,1028,3,332,166,0,1025,1029,3,116,58,0,1026,1027, + 5,17,0,0,1027,1029,3,160,80,0,1028,1025,1,0,0,0,1028,1026,1,0,0, + 0,1029,129,1,0,0,0,1030,1031,5,8,0,0,1031,1032,5,448,0,0,1032,1033, + 3,324,162,0,1033,1034,3,118,59,0,1034,131,1,0,0,0,1035,1039,5,8, + 0,0,1036,1040,5,498,0,0,1037,1038,5,498,0,0,1038,1040,5,371,0,0, + 1039,1036,1,0,0,0,1039,1037,1,0,0,0,1039,1040,1,0,0,0,1040,1041, + 1,0,0,0,1041,1043,5,153,0,0,1042,1044,3,342,171,0,1043,1042,1,0, + 0,0,1043,1044,1,0,0,0,1044,1045,1,0,0,0,1045,1046,3,276,138,0,1046, + 1047,5,17,0,0,1047,1050,3,312,156,0,1048,1049,5,196,0,0,1049,1051, + 7,16,0,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,133,1,0,0,0,1052, + 1053,5,116,0,0,1053,1055,5,442,0,0,1054,1056,3,342,171,0,1055,1054, + 1,0,0,0,1055,1056,1,0,0,0,1056,1057,1,0,0,0,1057,1058,3,320,160, + 0,1058,135,1,0,0,0,1059,1061,5,116,0,0,1060,1062,5,498,0,0,1061, + 1060,1,0,0,0,1061,1062,1,0,0,0,1062,1063,1,0,0,0,1063,1065,5,374, + 0,0,1064,1066,3,342,171,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066, + 1067,1,0,0,0,1067,1068,3,330,165,0,1068,137,1,0,0,0,1069,1070,5, + 116,0,0,1070,1072,5,448,0,0,1071,1073,3,342,171,0,1072,1071,1,0, + 0,0,1072,1073,1,0,0,0,1073,1074,1,0,0,0,1074,1076,3,324,162,0,1075, + 1077,7,17,0,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077,139,1,0,0, + 0,1078,1080,5,116,0,0,1079,1081,5,498,0,0,1080,1079,1,0,0,0,1080, + 1081,1,0,0,0,1081,1082,1,0,0,0,1082,1084,5,502,0,0,1083,1085,3,342, + 171,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085,1086,1,0,0,0,1086, + 1087,3,332,166,0,1087,141,1,0,0,0,1088,1092,5,116,0,0,1089,1093, + 5,498,0,0,1090,1091,5,498,0,0,1091,1093,5,371,0,0,1092,1089,1,0, + 0,0,1092,1090,1,0,0,0,1092,1093,1,0,0,0,1093,1094,1,0,0,0,1094,1096, + 5,153,0,0,1095,1097,3,342,171,0,1096,1095,1,0,0,0,1096,1097,1,0, + 0,0,1097,1098,1,0,0,0,1098,1099,3,276,138,0,1099,143,1,0,0,0,1100, + 1102,5,132,0,0,1101,1100,1,0,0,0,1101,1102,1,0,0,0,1102,1103,1,0, + 0,0,1103,1108,3,146,73,0,1104,1108,3,156,78,0,1105,1106,5,132,0, + 0,1106,1108,3,158,79,0,1107,1101,1,0,0,0,1107,1104,1,0,0,0,1107, + 1105,1,0,0,0,1108,145,1,0,0,0,1109,1110,5,177,0,0,1110,1111,7,18, + 0,0,1111,1120,3,330,165,0,1112,1114,3,148,74,0,1113,1112,1,0,0,0, + 1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1117,3,56,28,0,1116,1115, + 1,0,0,0,1116,1117,1,0,0,0,1117,1118,1,0,0,0,1118,1121,3,160,80,0, + 1119,1121,3,150,75,0,1120,1113,1,0,0,0,1120,1119,1,0,0,0,1121,147, + 1,0,0,0,1122,1123,5,269,0,0,1123,1124,3,344,172,0,1124,149,1,0,0, + 0,1125,1126,5,415,0,0,1126,1131,3,152,76,0,1127,1128,5,521,0,0,1128, + 1130,3,152,76,0,1129,1127,1,0,0,0,1130,1133,1,0,0,0,1131,1129,1, + 0,0,0,1131,1132,1,0,0,0,1132,151,1,0,0,0,1133,1131,1,0,0,0,1134, + 1135,5,517,0,0,1135,1140,3,154,77,0,1136,1137,5,521,0,0,1137,1139, + 3,154,77,0,1138,1136,1,0,0,0,1139,1142,1,0,0,0,1140,1138,1,0,0,0, + 1140,1141,1,0,0,0,1141,1143,1,0,0,0,1142,1140,1,0,0,0,1143,1144, + 5,518,0,0,1144,153,1,0,0,0,1145,1148,3,362,181,0,1146,1148,3,270, + 135,0,1147,1145,1,0,0,0,1147,1146,1,0,0,0,1148,155,1,0,0,0,1149, + 1150,5,24,0,0,1150,1151,5,355,0,0,1151,1152,5,341,0,0,1152,1156, + 5,522,0,0,1153,1154,3,146,73,0,1154,1155,5,522,0,0,1155,1157,1,0, + 0,0,1156,1153,1,0,0,0,1157,1158,1,0,0,0,1158,1156,1,0,0,0,1158,1159, + 1,0,0,0,1159,1160,1,0,0,0,1160,1161,5,122,0,0,1161,157,1,0,0,0,1162, + 1163,5,355,0,0,1163,1164,5,341,0,0,1164,1168,5,24,0,0,1165,1166, + 3,146,73,0,1166,1167,5,522,0,0,1167,1169,1,0,0,0,1168,1165,1,0,0, + 0,1169,1170,1,0,0,0,1170,1168,1,0,0,0,1170,1171,1,0,0,0,1171,1172, + 1,0,0,0,1172,1173,5,122,0,0,1173,159,1,0,0,0,1174,1175,6,80,-1,0, + 1175,1198,3,162,81,0,1176,1177,3,164,82,0,1177,1178,3,160,80,5,1178, + 1198,1,0,0,0,1179,1180,5,517,0,0,1180,1181,3,160,80,0,1181,1182, + 5,518,0,0,1182,1198,1,0,0,0,1183,1185,3,172,86,0,1184,1186,3,232, + 116,0,1185,1184,1,0,0,0,1185,1186,1,0,0,0,1186,1188,1,0,0,0,1187, + 1189,3,236,118,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1198,1, + 0,0,0,1190,1192,3,170,85,0,1191,1193,3,232,116,0,1192,1191,1,0,0, + 0,1192,1193,1,0,0,0,1193,1195,1,0,0,0,1194,1196,3,236,118,0,1195, + 1194,1,0,0,0,1195,1196,1,0,0,0,1196,1198,1,0,0,0,1197,1174,1,0,0, + 0,1197,1176,1,0,0,0,1197,1179,1,0,0,0,1197,1183,1,0,0,0,1197,1190, + 1,0,0,0,1198,1213,1,0,0,0,1199,1200,10,3,0,0,1200,1202,7,19,0,0, + 1201,1203,5,5,0,0,1202,1201,1,0,0,0,1202,1203,1,0,0,0,1203,1204, + 1,0,0,0,1204,1206,3,160,80,0,1205,1207,3,232,116,0,1206,1205,1,0, + 0,0,1206,1207,1,0,0,0,1207,1209,1,0,0,0,1208,1210,3,236,118,0,1209, + 1208,1,0,0,0,1209,1210,1,0,0,0,1210,1212,1,0,0,0,1211,1199,1,0,0, + 0,1212,1215,1,0,0,0,1213,1211,1,0,0,0,1213,1214,1,0,0,0,1214,161, + 1,0,0,0,1215,1213,1,0,0,0,1216,1217,5,415,0,0,1217,1222,3,260,130, + 0,1218,1219,5,521,0,0,1219,1221,3,260,130,0,1220,1218,1,0,0,0,1221, + 1224,1,0,0,0,1222,1220,1,0,0,0,1222,1223,1,0,0,0,1223,163,1,0,0, + 0,1224,1222,1,0,0,0,1225,1226,5,434,0,0,1226,1231,3,166,83,0,1227, + 1228,5,521,0,0,1228,1230,3,166,83,0,1229,1227,1,0,0,0,1230,1233, + 1,0,0,0,1231,1229,1,0,0,0,1231,1232,1,0,0,0,1232,165,1,0,0,0,1233, + 1231,1,0,0,0,1234,1246,3,168,84,0,1235,1236,5,517,0,0,1236,1241, + 3,52,26,0,1237,1238,5,521,0,0,1238,1240,3,52,26,0,1239,1237,1,0, + 0,0,1240,1243,1,0,0,0,1241,1239,1,0,0,0,1241,1242,1,0,0,0,1242,1244, + 1,0,0,0,1243,1241,1,0,0,0,1244,1245,5,518,0,0,1245,1247,1,0,0,0, + 1246,1235,1,0,0,0,1246,1247,1,0,0,0,1247,1248,1,0,0,0,1248,1249, + 5,17,0,0,1249,1250,5,517,0,0,1250,1251,3,160,80,0,1251,1252,5,518, + 0,0,1252,167,1,0,0,0,1253,1254,3,312,156,0,1254,169,1,0,0,0,1255, + 1257,3,172,86,0,1256,1258,3,178,89,0,1257,1256,1,0,0,0,1257,1258, + 1,0,0,0,1258,1260,1,0,0,0,1259,1261,3,206,103,0,1260,1259,1,0,0, + 0,1260,1261,1,0,0,0,1261,1263,1,0,0,0,1262,1264,3,208,104,0,1263, + 1262,1,0,0,0,1263,1264,1,0,0,0,1264,1266,1,0,0,0,1265,1267,3,222, + 111,0,1266,1265,1,0,0,0,1266,1267,1,0,0,0,1267,1269,1,0,0,0,1268, + 1270,3,224,112,0,1269,1268,1,0,0,0,1269,1270,1,0,0,0,1270,1276,1, + 0,0,0,1271,1272,3,172,86,0,1272,1273,3,178,89,0,1273,1274,3,230, + 115,0,1274,1276,1,0,0,0,1275,1255,1,0,0,0,1275,1271,1,0,0,0,1276, + 171,1,0,0,0,1277,1279,5,337,0,0,1278,1280,3,372,186,0,1279,1278, + 1,0,0,0,1279,1280,1,0,0,0,1280,1290,1,0,0,0,1281,1291,5,528,0,0, + 1282,1287,3,174,87,0,1283,1284,5,521,0,0,1284,1286,3,174,87,0,1285, + 1283,1,0,0,0,1286,1289,1,0,0,0,1287,1285,1,0,0,0,1287,1288,1,0,0, + 0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1290,1281,1,0,0,0,1290,1282, + 1,0,0,0,1291,173,1,0,0,0,1292,1308,3,176,88,0,1293,1298,3,260,130, + 0,1294,1296,5,17,0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297, + 1,0,0,0,1297,1299,3,52,26,0,1298,1295,1,0,0,0,1298,1299,1,0,0,0, + 1299,1308,1,0,0,0,1300,1305,3,52,26,0,1301,1303,5,17,0,0,1302,1301, + 1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1306,3,260,130, + 0,1305,1302,1,0,0,0,1305,1306,1,0,0,0,1306,1308,1,0,0,0,1307,1292, + 1,0,0,0,1307,1293,1,0,0,0,1307,1300,1,0,0,0,1308,175,1,0,0,0,1309, + 1310,3,272,136,0,1310,1311,5,263,0,0,1311,1312,3,228,114,0,1312, + 1313,5,17,0,0,1313,1314,3,312,156,0,1314,1322,1,0,0,0,1315,1316, + 3,272,136,0,1316,1317,5,263,0,0,1317,1318,3,304,152,0,1318,1319, + 5,17,0,0,1319,1320,3,312,156,0,1320,1322,1,0,0,0,1321,1309,1,0,0, + 0,1321,1315,1,0,0,0,1322,177,1,0,0,0,1323,1324,5,151,0,0,1324,1325, + 3,180,90,0,1325,179,1,0,0,0,1326,1327,6,90,-1,0,1327,1332,3,182, + 91,0,1328,1329,5,521,0,0,1329,1331,3,182,91,0,1330,1328,1,0,0,0, + 1331,1334,1,0,0,0,1332,1330,1,0,0,0,1332,1333,1,0,0,0,1333,1338, + 1,0,0,0,1334,1332,1,0,0,0,1335,1338,3,190,95,0,1336,1338,3,192,96, + 0,1337,1326,1,0,0,0,1337,1335,1,0,0,0,1337,1336,1,0,0,0,1338,1360, + 1,0,0,0,1339,1340,10,3,0,0,1340,1341,5,73,0,0,1341,1342,5,185,0, + 0,1342,1359,3,180,90,4,1343,1345,10,4,0,0,1344,1346,5,234,0,0,1345, + 1344,1,0,0,0,1345,1346,1,0,0,0,1346,1348,1,0,0,0,1347,1349,7,20, + 0,0,1348,1347,1,0,0,0,1348,1349,1,0,0,0,1349,1351,1,0,0,0,1350,1352, + 5,262,0,0,1351,1350,1,0,0,0,1351,1352,1,0,0,0,1352,1353,1,0,0,0, + 1353,1354,5,185,0,0,1354,1356,3,180,90,0,1355,1357,3,204,102,0,1356, + 1355,1,0,0,0,1356,1357,1,0,0,0,1357,1359,1,0,0,0,1358,1339,1,0,0, + 0,1358,1343,1,0,0,0,1359,1362,1,0,0,0,1360,1358,1,0,0,0,1360,1361, + 1,0,0,0,1361,181,1,0,0,0,1362,1360,1,0,0,0,1363,1365,3,184,92,0, + 1364,1366,3,302,151,0,1365,1364,1,0,0,0,1365,1366,1,0,0,0,1366,183, + 1,0,0,0,1367,1369,5,374,0,0,1368,1367,1,0,0,0,1368,1369,1,0,0,0, + 1369,1370,1,0,0,0,1370,1372,3,330,165,0,1371,1373,3,186,93,0,1372, + 1371,1,0,0,0,1372,1373,1,0,0,0,1373,1397,1,0,0,0,1374,1376,3,332, + 166,0,1375,1377,3,186,93,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0,1377, + 1397,1,0,0,0,1378,1379,5,199,0,0,1379,1380,5,374,0,0,1380,1381,5, + 517,0,0,1381,1382,3,270,135,0,1382,1383,5,518,0,0,1383,1397,1,0, + 0,0,1384,1386,5,199,0,0,1385,1384,1,0,0,0,1385,1386,1,0,0,0,1386, + 1387,1,0,0,0,1387,1388,5,517,0,0,1388,1389,3,160,80,0,1389,1390, + 5,518,0,0,1390,1397,1,0,0,0,1391,1392,5,406,0,0,1392,1393,5,517, + 0,0,1393,1394,3,260,130,0,1394,1395,5,518,0,0,1395,1397,1,0,0,0, + 1396,1368,1,0,0,0,1396,1374,1,0,0,0,1396,1378,1,0,0,0,1396,1385, + 1,0,0,0,1396,1391,1,0,0,0,1397,185,1,0,0,0,1398,1399,5,146,0,0,1399, + 1400,5,372,0,0,1400,1401,5,17,0,0,1401,1402,5,250,0,0,1402,1403, + 3,188,94,0,1403,187,1,0,0,0,1404,1405,3,260,130,0,1405,189,1,0,0, + 0,1406,1407,5,517,0,0,1407,1408,3,150,75,0,1408,1409,5,518,0,0,1409, + 1410,3,302,151,0,1410,191,1,0,0,0,1411,1412,5,374,0,0,1412,1413, + 5,517,0,0,1413,1414,3,194,97,0,1414,1415,5,518,0,0,1415,193,1,0, + 0,0,1416,1417,3,196,98,0,1417,1418,5,517,0,0,1418,1423,3,198,99, + 0,1419,1420,5,521,0,0,1420,1422,3,198,99,0,1421,1419,1,0,0,0,1422, + 1425,1,0,0,0,1423,1421,1,0,0,0,1423,1424,1,0,0,0,1424,1426,1,0,0, + 0,1425,1423,1,0,0,0,1426,1427,5,518,0,0,1427,195,1,0,0,0,1428,1429, + 7,21,0,0,1429,197,1,0,0,0,1430,1431,5,374,0,0,1431,1446,3,220,110, + 0,1432,1446,3,202,101,0,1433,1446,3,290,145,0,1434,1435,5,447,0, + 0,1435,1436,5,537,0,0,1436,1437,5,374,0,0,1437,1446,3,220,110,0, + 1438,1439,5,499,0,0,1439,1440,5,537,0,0,1440,1446,3,202,101,0,1441, + 1442,3,200,100,0,1442,1443,5,537,0,0,1443,1444,3,290,145,0,1444, + 1446,1,0,0,0,1445,1430,1,0,0,0,1445,1432,1,0,0,0,1445,1433,1,0,0, + 0,1445,1434,1,0,0,0,1445,1438,1,0,0,0,1445,1441,1,0,0,0,1446,199, + 1,0,0,0,1447,1448,7,22,0,0,1448,201,1,0,0,0,1449,1450,5,452,0,0, + 1450,1451,5,517,0,0,1451,1452,3,52,26,0,1452,1453,5,518,0,0,1453, + 203,1,0,0,0,1454,1455,5,254,0,0,1455,1459,3,262,131,0,1456,1457, + 5,413,0,0,1457,1459,3,56,28,0,1458,1454,1,0,0,0,1458,1456,1,0,0, + 0,1459,205,1,0,0,0,1460,1461,5,431,0,0,1461,1462,3,262,131,0,1462, + 207,1,0,0,0,1463,1464,5,159,0,0,1464,1465,5,34,0,0,1465,1470,3,210, + 105,0,1466,1467,5,521,0,0,1467,1469,3,210,105,0,1468,1466,1,0,0, + 0,1469,1472,1,0,0,0,1470,1468,1,0,0,0,1470,1471,1,0,0,0,1471,209, + 1,0,0,0,1472,1470,1,0,0,0,1473,1514,3,52,26,0,1474,1514,3,216,108, + 0,1475,1476,5,517,0,0,1476,1514,5,518,0,0,1477,1478,5,517,0,0,1478, + 1483,3,260,130,0,1479,1480,5,521,0,0,1480,1482,3,260,130,0,1481, + 1479,1,0,0,0,1482,1485,1,0,0,0,1483,1481,1,0,0,0,1483,1484,1,0,0, + 0,1484,1486,1,0,0,0,1485,1483,1,0,0,0,1486,1487,5,518,0,0,1487,1514, + 1,0,0,0,1488,1489,3,214,107,0,1489,1490,5,517,0,0,1490,1495,3,260, + 130,0,1491,1492,5,521,0,0,1492,1494,3,260,130,0,1493,1491,1,0,0, + 0,1494,1497,1,0,0,0,1495,1493,1,0,0,0,1495,1496,1,0,0,0,1496,1498, + 1,0,0,0,1497,1495,1,0,0,0,1498,1499,5,518,0,0,1499,1514,1,0,0,0, + 1500,1501,3,212,106,0,1501,1502,5,517,0,0,1502,1507,3,210,105,0, + 1503,1504,5,521,0,0,1504,1506,3,210,105,0,1505,1503,1,0,0,0,1506, + 1509,1,0,0,0,1507,1505,1,0,0,0,1507,1508,1,0,0,0,1508,1510,1,0,0, + 0,1509,1507,1,0,0,0,1510,1511,5,518,0,0,1511,1514,1,0,0,0,1512,1514, + 3,260,130,0,1513,1473,1,0,0,0,1513,1474,1,0,0,0,1513,1475,1,0,0, + 0,1513,1477,1,0,0,0,1513,1488,1,0,0,0,1513,1500,1,0,0,0,1513,1512, + 1,0,0,0,1514,211,1,0,0,0,1515,1516,5,160,0,0,1516,1517,5,494,0,0, + 1517,213,1,0,0,0,1518,1519,7,23,0,0,1519,215,1,0,0,0,1520,1521,3, + 218,109,0,1521,1522,5,517,0,0,1522,1523,3,220,110,0,1523,1524,5, + 521,0,0,1524,1525,3,290,145,0,1525,1526,5,518,0,0,1526,217,1,0,0, + 0,1527,1528,7,24,0,0,1528,219,1,0,0,0,1529,1530,3,336,168,0,1530, + 221,1,0,0,0,1531,1532,5,163,0,0,1532,1533,3,262,131,0,1533,223,1, + 0,0,0,1534,1535,5,433,0,0,1535,1540,3,226,113,0,1536,1537,5,521, + 0,0,1537,1539,3,226,113,0,1538,1536,1,0,0,0,1539,1542,1,0,0,0,1540, + 1538,1,0,0,0,1540,1541,1,0,0,0,1541,225,1,0,0,0,1542,1540,1,0,0, + 0,1543,1544,3,304,152,0,1544,1545,5,17,0,0,1545,1546,3,228,114,0, + 1546,227,1,0,0,0,1547,1549,3,304,152,0,1548,1547,1,0,0,0,1548,1549, + 1,0,0,0,1549,1550,1,0,0,0,1550,1552,5,517,0,0,1551,1553,3,238,119, + 0,1552,1551,1,0,0,0,1552,1553,1,0,0,0,1553,1555,1,0,0,0,1554,1556, + 3,232,116,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556,1558,1,0,0, + 0,1557,1559,3,254,127,0,1558,1557,1,0,0,0,1558,1559,1,0,0,0,1559, + 1560,1,0,0,0,1560,1561,5,518,0,0,1561,229,1,0,0,0,1562,1563,5,214, + 0,0,1563,1565,5,517,0,0,1564,1566,3,238,119,0,1565,1564,1,0,0,0, + 1565,1566,1,0,0,0,1566,1568,1,0,0,0,1567,1569,3,232,116,0,1568,1567, + 1,0,0,0,1568,1569,1,0,0,0,1569,1571,1,0,0,0,1570,1572,3,242,121, + 0,1571,1570,1,0,0,0,1571,1572,1,0,0,0,1572,1574,1,0,0,0,1573,1575, + 3,248,124,0,1574,1573,1,0,0,0,1574,1575,1,0,0,0,1575,1577,1,0,0, + 0,1576,1578,3,250,125,0,1577,1576,1,0,0,0,1577,1578,1,0,0,0,1578, + 1580,1,0,0,0,1579,1581,3,244,122,0,1580,1579,1,0,0,0,1580,1581,1, + 0,0,0,1581,1582,1,0,0,0,1582,1583,3,252,126,0,1583,1588,5,518,0, + 0,1584,1586,5,17,0,0,1585,1584,1,0,0,0,1585,1586,1,0,0,0,1586,1587, + 1,0,0,0,1587,1589,3,312,156,0,1588,1585,1,0,0,0,1588,1589,1,0,0, + 0,1589,231,1,0,0,0,1590,1591,5,259,0,0,1591,1592,5,34,0,0,1592,1597, + 3,234,117,0,1593,1594,5,521,0,0,1594,1596,3,234,117,0,1595,1593, + 1,0,0,0,1596,1599,1,0,0,0,1597,1595,1,0,0,0,1597,1598,1,0,0,0,1598, + 233,1,0,0,0,1599,1597,1,0,0,0,1600,1602,3,52,26,0,1601,1603,7,25, + 0,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603,1606,1,0,0,0,1604,1605, + 5,477,0,0,1605,1607,7,26,0,0,1606,1604,1,0,0,0,1606,1607,1,0,0,0, + 1607,235,1,0,0,0,1608,1611,5,205,0,0,1609,1612,5,5,0,0,1610,1612, + 3,260,130,0,1611,1609,1,0,0,0,1611,1610,1,0,0,0,1612,237,1,0,0,0, + 1613,1614,5,269,0,0,1614,1617,5,34,0,0,1615,1618,3,52,26,0,1616, + 1618,3,272,136,0,1617,1615,1,0,0,0,1617,1616,1,0,0,0,1618,1626,1, + 0,0,0,1619,1622,5,521,0,0,1620,1623,3,52,26,0,1621,1623,3,272,136, + 0,1622,1620,1,0,0,0,1622,1621,1,0,0,0,1623,1625,1,0,0,0,1624,1619, + 1,0,0,0,1625,1628,1,0,0,0,1626,1624,1,0,0,0,1626,1627,1,0,0,0,1627, + 239,1,0,0,0,1628,1626,1,0,0,0,1629,1646,5,528,0,0,1630,1646,5,531, + 0,0,1631,1646,5,536,0,0,1632,1633,5,519,0,0,1633,1634,5,539,0,0, + 1634,1635,5,521,0,0,1635,1636,5,539,0,0,1636,1646,5,520,0,0,1637, + 1638,5,519,0,0,1638,1639,5,539,0,0,1639,1640,5,521,0,0,1640,1646, + 5,520,0,0,1641,1642,5,519,0,0,1642,1643,5,521,0,0,1643,1644,5,539, + 0,0,1644,1646,5,520,0,0,1645,1629,1,0,0,0,1645,1630,1,0,0,0,1645, + 1631,1,0,0,0,1645,1632,1,0,0,0,1645,1637,1,0,0,0,1645,1641,1,0,0, + 0,1646,241,1,0,0,0,1647,1648,5,216,0,0,1648,1653,3,174,87,0,1649, + 1650,5,521,0,0,1650,1652,3,174,87,0,1651,1649,1,0,0,0,1652,1655, + 1,0,0,0,1653,1651,1,0,0,0,1653,1654,1,0,0,0,1654,243,1,0,0,0,1655, + 1653,1,0,0,0,1656,1657,5,272,0,0,1657,1659,5,517,0,0,1658,1660,3, + 246,123,0,1659,1658,1,0,0,0,1660,1661,1,0,0,0,1661,1659,1,0,0,0, + 1661,1662,1,0,0,0,1662,1663,1,0,0,0,1663,1665,5,518,0,0,1664,1666, + 3,258,129,0,1665,1664,1,0,0,0,1665,1666,1,0,0,0,1666,245,1,0,0,0, + 1667,1669,3,314,157,0,1668,1670,3,240,120,0,1669,1668,1,0,0,0,1669, + 1670,1,0,0,0,1670,247,1,0,0,0,1671,1672,5,5,0,0,1672,1673,5,323, + 0,0,1673,1674,5,273,0,0,1674,1680,5,211,0,0,1675,1676,5,255,0,0, + 1676,1677,5,322,0,0,1677,1678,5,273,0,0,1678,1680,5,211,0,0,1679, + 1671,1,0,0,0,1679,1675,1,0,0,0,1680,249,1,0,0,0,1681,1682,5,439, + 0,0,1682,1683,5,211,0,0,1683,1684,5,344,0,0,1684,1685,5,479,0,0, + 1685,1686,5,468,0,0,1686,1706,5,322,0,0,1687,1688,5,439,0,0,1688, + 1689,5,211,0,0,1689,1690,5,344,0,0,1690,1691,5,389,0,0,1691,1692, + 5,238,0,0,1692,1706,5,322,0,0,1693,1694,5,439,0,0,1694,1695,5,211, + 0,0,1695,1696,5,344,0,0,1696,1697,5,389,0,0,1697,1698,5,468,0,0, + 1698,1706,3,314,157,0,1699,1700,5,439,0,0,1700,1701,5,211,0,0,1701, + 1702,5,344,0,0,1702,1703,5,389,0,0,1703,1704,5,458,0,0,1704,1706, + 3,314,157,0,1705,1681,1,0,0,0,1705,1687,1,0,0,0,1705,1693,1,0,0, + 0,1705,1699,1,0,0,0,1706,251,1,0,0,0,1707,1708,5,105,0,0,1708,1713, + 3,174,87,0,1709,1710,5,521,0,0,1710,1712,3,174,87,0,1711,1709,1, + 0,0,0,1712,1715,1,0,0,0,1713,1711,1,0,0,0,1713,1714,1,0,0,0,1714, + 253,1,0,0,0,1715,1713,1,0,0,0,1716,1717,5,293,0,0,1717,1718,5,27, + 0,0,1718,1719,3,290,145,0,1719,1720,3,256,128,0,1720,1726,1,0,0, + 0,1721,1722,5,323,0,0,1722,1723,5,27,0,0,1723,1724,5,539,0,0,1724, + 1726,3,256,128,0,1725,1716,1,0,0,0,1725,1721,1,0,0,0,1726,255,1, + 0,0,0,1727,1728,5,481,0,0,1728,1729,5,10,0,0,1729,1730,5,76,0,0, + 1730,1731,5,322,0,0,1731,257,1,0,0,0,1732,1733,5,435,0,0,1733,1734, + 3,290,145,0,1734,259,1,0,0,0,1735,1736,3,262,131,0,1736,261,1,0, + 0,0,1737,1738,6,131,-1,0,1738,1739,5,242,0,0,1739,1750,3,262,131, + 6,1740,1741,5,133,0,0,1741,1742,5,517,0,0,1742,1743,3,160,80,0,1743, + 1744,5,518,0,0,1744,1750,1,0,0,0,1745,1747,3,268,134,0,1746,1748, + 3,264,132,0,1747,1746,1,0,0,0,1747,1748,1,0,0,0,1748,1750,1,0,0, + 0,1749,1737,1,0,0,0,1749,1740,1,0,0,0,1749,1745,1,0,0,0,1750,1765, + 1,0,0,0,1751,1752,10,3,0,0,1752,1753,5,10,0,0,1753,1764,3,262,131, + 4,1754,1755,10,2,0,0,1755,1756,5,258,0,0,1756,1764,3,262,131,3,1757, + 1758,10,1,0,0,1758,1760,5,184,0,0,1759,1761,5,242,0,0,1760,1759, + 1,0,0,0,1760,1761,1,0,0,0,1761,1762,1,0,0,0,1762,1764,7,27,0,0,1763, + 1751,1,0,0,0,1763,1754,1,0,0,0,1763,1757,1,0,0,0,1764,1767,1,0,0, + 0,1765,1763,1,0,0,0,1765,1766,1,0,0,0,1766,263,1,0,0,0,1767,1765, + 1,0,0,0,1768,1770,5,242,0,0,1769,1768,1,0,0,0,1769,1770,1,0,0,0, + 1770,1771,1,0,0,0,1771,1773,5,27,0,0,1772,1774,7,28,0,0,1773,1772, + 1,0,0,0,1773,1774,1,0,0,0,1774,1775,1,0,0,0,1775,1776,3,268,134, + 0,1776,1777,5,10,0,0,1777,1778,3,268,134,0,1778,1843,1,0,0,0,1779, + 1781,5,242,0,0,1780,1779,1,0,0,0,1780,1781,1,0,0,0,1781,1782,1,0, + 0,0,1782,1783,5,170,0,0,1783,1784,5,517,0,0,1784,1789,3,260,130, + 0,1785,1786,5,521,0,0,1786,1788,3,260,130,0,1787,1785,1,0,0,0,1788, + 1791,1,0,0,0,1789,1787,1,0,0,0,1789,1790,1,0,0,0,1790,1792,1,0,0, + 0,1791,1789,1,0,0,0,1792,1793,5,518,0,0,1793,1843,1,0,0,0,1794,1796, + 5,242,0,0,1795,1794,1,0,0,0,1795,1796,1,0,0,0,1796,1797,1,0,0,0, + 1797,1798,5,170,0,0,1798,1799,5,517,0,0,1799,1800,3,160,80,0,1800, + 1801,5,518,0,0,1801,1843,1,0,0,0,1802,1803,5,133,0,0,1803,1804,5, + 517,0,0,1804,1805,3,160,80,0,1805,1806,5,518,0,0,1806,1843,1,0,0, + 0,1807,1809,5,242,0,0,1808,1807,1,0,0,0,1808,1809,1,0,0,0,1809,1810, + 1,0,0,0,1810,1811,5,319,0,0,1811,1843,3,268,134,0,1812,1843,3,266, + 133,0,1813,1815,5,184,0,0,1814,1816,5,242,0,0,1815,1814,1,0,0,0, + 1815,1816,1,0,0,0,1816,1817,1,0,0,0,1817,1843,7,27,0,0,1818,1820, + 5,184,0,0,1819,1821,5,242,0,0,1820,1819,1,0,0,0,1820,1821,1,0,0, + 0,1821,1822,1,0,0,0,1822,1823,5,113,0,0,1823,1824,5,151,0,0,1824, + 1843,3,268,134,0,1825,1827,5,242,0,0,1826,1825,1,0,0,0,1826,1827, + 1,0,0,0,1827,1828,1,0,0,0,1828,1829,5,343,0,0,1829,1830,5,389,0, + 0,1830,1833,3,268,134,0,1831,1832,5,127,0,0,1832,1834,3,366,183, + 0,1833,1831,1,0,0,0,1833,1834,1,0,0,0,1834,1843,1,0,0,0,1835,1836, + 5,184,0,0,1836,1840,5,186,0,0,1837,1841,5,414,0,0,1838,1841,5,13, + 0,0,1839,1841,3,312,156,0,1840,1837,1,0,0,0,1840,1838,1,0,0,0,1840, + 1839,1,0,0,0,1840,1841,1,0,0,0,1841,1843,1,0,0,0,1842,1769,1,0,0, + 0,1842,1780,1,0,0,0,1842,1795,1,0,0,0,1842,1802,1,0,0,0,1842,1808, + 1,0,0,0,1842,1812,1,0,0,0,1842,1813,1,0,0,0,1842,1818,1,0,0,0,1842, + 1826,1,0,0,0,1842,1835,1,0,0,0,1843,265,1,0,0,0,1844,1846,5,242, + 0,0,1845,1844,1,0,0,0,1845,1846,1,0,0,0,1846,1847,1,0,0,0,1847,1848, + 5,203,0,0,1848,1862,7,29,0,0,1849,1850,5,517,0,0,1850,1863,5,518, + 0,0,1851,1852,5,517,0,0,1852,1857,3,260,130,0,1853,1854,5,521,0, + 0,1854,1856,3,260,130,0,1855,1853,1,0,0,0,1856,1859,1,0,0,0,1857, + 1855,1,0,0,0,1857,1858,1,0,0,0,1858,1860,1,0,0,0,1859,1857,1,0,0, + 0,1860,1861,5,518,0,0,1861,1863,1,0,0,0,1862,1849,1,0,0,0,1862,1851, + 1,0,0,0,1863,1874,1,0,0,0,1864,1866,5,242,0,0,1865,1864,1,0,0,0, + 1865,1866,1,0,0,0,1866,1867,1,0,0,0,1867,1868,5,203,0,0,1868,1871, + 3,268,134,0,1869,1870,5,127,0,0,1870,1872,3,366,183,0,1871,1869, + 1,0,0,0,1871,1872,1,0,0,0,1872,1874,1,0,0,0,1873,1845,1,0,0,0,1873, + 1865,1,0,0,0,1874,267,1,0,0,0,1875,1876,6,134,-1,0,1876,1880,3,272, + 136,0,1877,1878,7,30,0,0,1878,1880,3,268,134,7,1879,1875,1,0,0,0, + 1879,1877,1,0,0,0,1880,1902,1,0,0,0,1881,1882,10,6,0,0,1882,1883, + 7,31,0,0,1883,1901,3,268,134,7,1884,1885,10,5,0,0,1885,1886,7,32, + 0,0,1886,1901,3,268,134,6,1887,1888,10,4,0,0,1888,1889,5,512,0,0, + 1889,1901,3,268,134,5,1890,1891,10,3,0,0,1891,1892,5,513,0,0,1892, + 1901,3,268,134,4,1893,1894,10,2,0,0,1894,1895,5,511,0,0,1895,1901, + 3,268,134,3,1896,1897,10,1,0,0,1897,1898,3,354,177,0,1898,1899,3, + 268,134,2,1899,1901,1,0,0,0,1900,1881,1,0,0,0,1900,1884,1,0,0,0, + 1900,1887,1,0,0,0,1900,1890,1,0,0,0,1900,1893,1,0,0,0,1900,1896, + 1,0,0,0,1901,1904,1,0,0,0,1902,1900,1,0,0,0,1902,1903,1,0,0,0,1903, + 269,1,0,0,0,1904,1902,1,0,0,0,1905,1925,3,380,190,0,1906,1925,3, + 278,139,0,1907,1908,3,280,140,0,1908,1920,5,517,0,0,1909,1911,3, + 372,186,0,1910,1909,1,0,0,0,1910,1911,1,0,0,0,1911,1912,1,0,0,0, + 1912,1917,3,282,141,0,1913,1914,5,521,0,0,1914,1916,3,282,141,0, + 1915,1913,1,0,0,0,1916,1919,1,0,0,0,1917,1915,1,0,0,0,1917,1918, + 1,0,0,0,1918,1921,1,0,0,0,1919,1917,1,0,0,0,1920,1910,1,0,0,0,1920, + 1921,1,0,0,0,1921,1922,1,0,0,0,1922,1923,5,518,0,0,1923,1925,1,0, + 0,0,1924,1905,1,0,0,0,1924,1906,1,0,0,0,1924,1907,1,0,0,0,1925,271, + 1,0,0,0,1926,1927,6,136,-1,0,1927,1929,5,40,0,0,1928,1930,3,318, + 159,0,1929,1928,1,0,0,0,1930,1931,1,0,0,0,1931,1929,1,0,0,0,1931, + 1932,1,0,0,0,1932,1935,1,0,0,0,1933,1934,5,120,0,0,1934,1936,3,260, + 130,0,1935,1933,1,0,0,0,1935,1936,1,0,0,0,1936,1937,1,0,0,0,1937, + 1938,5,122,0,0,1938,2002,1,0,0,0,1939,1940,5,40,0,0,1940,1942,3, + 260,130,0,1941,1943,3,318,159,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,1948,1,0,0,0,1946,1947, + 5,120,0,0,1947,1949,3,260,130,0,1948,1946,1,0,0,0,1948,1949,1,0, + 0,0,1949,1950,1,0,0,0,1950,1951,5,122,0,0,1951,2002,1,0,0,0,1952, + 1953,5,41,0,0,1953,1954,5,517,0,0,1954,1955,3,260,130,0,1955,1956, + 5,17,0,0,1956,1957,3,58,29,0,1957,1958,5,518,0,0,1958,2002,1,0,0, + 0,1959,1960,5,458,0,0,1960,1961,5,517,0,0,1961,1964,3,260,130,0, + 1962,1963,5,462,0,0,1963,1965,5,477,0,0,1964,1962,1,0,0,0,1964,1965, + 1,0,0,0,1965,1966,1,0,0,0,1966,1967,5,518,0,0,1967,2002,1,0,0,0, + 1968,1969,5,468,0,0,1969,1970,5,517,0,0,1970,1973,3,260,130,0,1971, + 1972,5,462,0,0,1972,1974,5,477,0,0,1973,1971,1,0,0,0,1973,1974,1, + 0,0,0,1974,1975,1,0,0,0,1975,1976,5,518,0,0,1976,2002,1,0,0,0,1977, + 1978,5,282,0,0,1978,1979,5,517,0,0,1979,1980,3,268,134,0,1980,1981, + 5,170,0,0,1981,1982,3,268,134,0,1982,1983,5,518,0,0,1983,2002,1, + 0,0,0,1984,2002,3,362,181,0,1985,2002,5,528,0,0,1986,1987,3,336, + 168,0,1987,1988,5,514,0,0,1988,1989,5,528,0,0,1989,2002,1,0,0,0, + 1990,1991,5,517,0,0,1991,1992,3,160,80,0,1992,1993,5,518,0,0,1993, + 2002,1,0,0,0,1994,2002,3,270,135,0,1995,2002,3,54,27,0,1996,2002, + 3,284,142,0,1997,1998,5,517,0,0,1998,1999,3,260,130,0,1999,2000, + 5,518,0,0,2000,2002,1,0,0,0,2001,1926,1,0,0,0,2001,1939,1,0,0,0, + 2001,1952,1,0,0,0,2001,1959,1,0,0,0,2001,1968,1,0,0,0,2001,1977, + 1,0,0,0,2001,1984,1,0,0,0,2001,1985,1,0,0,0,2001,1986,1,0,0,0,2001, + 1990,1,0,0,0,2001,1994,1,0,0,0,2001,1995,1,0,0,0,2001,1996,1,0,0, + 0,2001,1997,1,0,0,0,2002,2010,1,0,0,0,2003,2004,10,4,0,0,2004,2005, + 5,515,0,0,2005,2006,3,268,134,0,2006,2007,5,516,0,0,2007,2009,1, + 0,0,0,2008,2003,1,0,0,0,2009,2012,1,0,0,0,2010,2008,1,0,0,0,2010, + 2011,1,0,0,0,2011,273,1,0,0,0,2012,2010,1,0,0,0,2013,2014,3,336, + 168,0,2014,275,1,0,0,0,2015,2020,3,384,192,0,2016,2020,3,380,190, + 0,2017,2020,3,382,191,0,2018,2020,3,336,168,0,2019,2015,1,0,0,0, + 2019,2016,1,0,0,0,2019,2017,1,0,0,0,2019,2018,1,0,0,0,2020,277,1, + 0,0,0,2021,2022,3,382,191,0,2022,2023,5,538,0,0,2023,2026,1,0,0, + 0,2024,2026,3,290,145,0,2025,2021,1,0,0,0,2025,2024,1,0,0,0,2026, + 279,1,0,0,0,2027,2030,3,384,192,0,2028,2030,3,336,168,0,2029,2027, + 1,0,0,0,2029,2028,1,0,0,0,2030,281,1,0,0,0,2031,2036,3,378,189,0, + 2032,2036,3,376,188,0,2033,2036,3,374,187,0,2034,2036,3,260,130, + 0,2035,2031,1,0,0,0,2035,2032,1,0,0,0,2035,2033,1,0,0,0,2035,2034, + 1,0,0,0,2036,283,1,0,0,0,2037,2038,3,336,168,0,2038,285,1,0,0,0, + 2039,2040,3,312,156,0,2040,287,1,0,0,0,2041,2044,3,312,156,0,2042, + 2044,3,284,142,0,2043,2041,1,0,0,0,2043,2042,1,0,0,0,2044,289,1, + 0,0,0,2045,2048,5,182,0,0,2046,2049,3,292,146,0,2047,2049,3,296, + 148,0,2048,2046,1,0,0,0,2048,2047,1,0,0,0,2048,2049,1,0,0,0,2049, + 291,1,0,0,0,2050,2052,3,294,147,0,2051,2053,3,298,149,0,2052,2051, + 1,0,0,0,2052,2053,1,0,0,0,2053,293,1,0,0,0,2054,2055,3,300,150,0, + 2055,2056,3,376,188,0,2056,2058,1,0,0,0,2057,2054,1,0,0,0,2058,2059, + 1,0,0,0,2059,2057,1,0,0,0,2059,2060,1,0,0,0,2060,295,1,0,0,0,2061, + 2064,3,298,149,0,2062,2065,3,294,147,0,2063,2065,3,298,149,0,2064, + 2062,1,0,0,0,2064,2063,1,0,0,0,2064,2065,1,0,0,0,2065,297,1,0,0, + 0,2066,2067,3,300,150,0,2067,2068,3,376,188,0,2068,2069,5,389,0, + 0,2069,2070,3,376,188,0,2070,299,1,0,0,0,2071,2073,7,33,0,0,2072, + 2071,1,0,0,0,2072,2073,1,0,0,0,2073,2074,1,0,0,0,2074,2077,7,34, + 0,0,2075,2077,5,538,0,0,2076,2072,1,0,0,0,2076,2075,1,0,0,0,2077, + 301,1,0,0,0,2078,2080,5,17,0,0,2079,2078,1,0,0,0,2079,2080,1,0,0, + 0,2080,2081,1,0,0,0,2081,2083,3,312,156,0,2082,2084,3,308,154,0, + 2083,2082,1,0,0,0,2083,2084,1,0,0,0,2084,303,1,0,0,0,2085,2086,3, + 312,156,0,2086,2087,3,306,153,0,2087,305,1,0,0,0,2088,2089,5,222, + 0,0,2089,2091,3,312,156,0,2090,2088,1,0,0,0,2091,2092,1,0,0,0,2092, + 2090,1,0,0,0,2092,2093,1,0,0,0,2093,2096,1,0,0,0,2094,2096,1,0,0, + 0,2095,2090,1,0,0,0,2095,2094,1,0,0,0,2096,307,1,0,0,0,2097,2098, + 5,517,0,0,2098,2099,3,310,155,0,2099,2100,5,518,0,0,2100,309,1,0, + 0,0,2101,2106,3,312,156,0,2102,2103,5,521,0,0,2103,2105,3,312,156, + 0,2104,2102,1,0,0,0,2105,2108,1,0,0,0,2106,2104,1,0,0,0,2106,2107, + 1,0,0,0,2107,311,1,0,0,0,2108,2106,1,0,0,0,2109,2113,3,314,157,0, + 2110,2113,3,316,158,0,2111,2113,3,386,193,0,2112,2109,1,0,0,0,2112, + 2110,1,0,0,0,2112,2111,1,0,0,0,2113,313,1,0,0,0,2114,2115,7,35,0, + 0,2115,315,1,0,0,0,2116,2117,5,538,0,0,2117,317,1,0,0,0,2118,2119, + 5,429,0,0,2119,2120,3,260,130,0,2120,2121,5,377,0,0,2121,2122,3, + 260,130,0,2122,319,1,0,0,0,2123,2124,3,312,156,0,2124,321,1,0,0, + 0,2125,2126,3,312,156,0,2126,323,1,0,0,0,2127,2130,3,312,156,0,2128, + 2129,5,514,0,0,2129,2131,3,312,156,0,2130,2128,1,0,0,0,2130,2131, + 1,0,0,0,2131,325,1,0,0,0,2132,2135,3,312,156,0,2133,2134,5,514,0, + 0,2134,2136,3,312,156,0,2135,2133,1,0,0,0,2135,2136,1,0,0,0,2136, + 327,1,0,0,0,2137,2140,3,312,156,0,2138,2139,5,514,0,0,2139,2141, + 3,312,156,0,2140,2138,1,0,0,0,2140,2141,1,0,0,0,2141,2150,1,0,0, + 0,2142,2143,3,312,156,0,2143,2144,5,514,0,0,2144,2147,3,312,156, + 0,2145,2146,5,514,0,0,2146,2148,3,312,156,0,2147,2145,1,0,0,0,2147, + 2148,1,0,0,0,2148,2150,1,0,0,0,2149,2137,1,0,0,0,2149,2142,1,0,0, + 0,2150,329,1,0,0,0,2151,2154,3,312,156,0,2152,2153,5,514,0,0,2153, + 2155,3,312,156,0,2154,2152,1,0,0,0,2154,2155,1,0,0,0,2155,2164,1, + 0,0,0,2156,2157,3,312,156,0,2157,2158,5,514,0,0,2158,2161,3,312, + 156,0,2159,2160,5,514,0,0,2160,2162,3,312,156,0,2161,2159,1,0,0, + 0,2161,2162,1,0,0,0,2162,2164,1,0,0,0,2163,2151,1,0,0,0,2163,2156, + 1,0,0,0,2164,331,1,0,0,0,2165,2168,3,312,156,0,2166,2167,5,514,0, + 0,2167,2169,3,312,156,0,2168,2166,1,0,0,0,2168,2169,1,0,0,0,2169, + 2178,1,0,0,0,2170,2171,3,312,156,0,2171,2172,5,514,0,0,2172,2175, + 3,312,156,0,2173,2174,5,514,0,0,2174,2176,3,312,156,0,2175,2173, + 1,0,0,0,2175,2176,1,0,0,0,2176,2178,1,0,0,0,2177,2165,1,0,0,0,2177, + 2170,1,0,0,0,2178,333,1,0,0,0,2179,2182,3,312,156,0,2180,2181,5, + 514,0,0,2181,2183,3,312,156,0,2182,2180,1,0,0,0,2182,2183,1,0,0, + 0,2183,2192,1,0,0,0,2184,2185,3,312,156,0,2185,2186,5,514,0,0,2186, + 2189,3,312,156,0,2187,2188,5,514,0,0,2188,2190,3,312,156,0,2189, + 2187,1,0,0,0,2189,2190,1,0,0,0,2190,2192,1,0,0,0,2191,2179,1,0,0, + 0,2191,2184,1,0,0,0,2192,335,1,0,0,0,2193,2198,3,312,156,0,2194, + 2195,5,514,0,0,2195,2197,3,312,156,0,2196,2194,1,0,0,0,2197,2200, + 1,0,0,0,2198,2199,1,0,0,0,2198,2196,1,0,0,0,2199,337,1,0,0,0,2200, + 2198,1,0,0,0,2201,2202,5,434,0,0,2202,2203,3,344,172,0,2203,339, + 1,0,0,0,2204,2205,5,167,0,0,2205,2206,5,242,0,0,2206,2207,5,133, + 0,0,2207,341,1,0,0,0,2208,2209,5,167,0,0,2209,2210,5,133,0,0,2210, + 343,1,0,0,0,2211,2212,5,517,0,0,2212,2217,3,346,173,0,2213,2214, + 5,521,0,0,2214,2216,3,346,173,0,2215,2213,1,0,0,0,2216,2219,1,0, + 0,0,2217,2215,1,0,0,0,2217,2218,1,0,0,0,2218,2220,1,0,0,0,2219,2217, + 1,0,0,0,2220,2221,5,518,0,0,2221,345,1,0,0,0,2222,2227,3,348,174, + 0,2223,2225,5,506,0,0,2224,2223,1,0,0,0,2224,2225,1,0,0,0,2225,2226, + 1,0,0,0,2226,2228,3,350,175,0,2227,2224,1,0,0,0,2227,2228,1,0,0, + 0,2228,347,1,0,0,0,2229,2233,3,312,156,0,2230,2233,3,284,142,0,2231, + 2233,5,538,0,0,2232,2229,1,0,0,0,2232,2230,1,0,0,0,2232,2231,1,0, + 0,0,2233,349,1,0,0,0,2234,2239,5,539,0,0,2235,2239,5,540,0,0,2236, + 2239,3,370,185,0,2237,2239,5,538,0,0,2238,2234,1,0,0,0,2238,2235, + 1,0,0,0,2238,2236,1,0,0,0,2238,2237,1,0,0,0,2239,351,1,0,0,0,2240, + 2247,5,10,0,0,2241,2242,5,512,0,0,2242,2247,5,512,0,0,2243,2247, + 5,258,0,0,2244,2245,5,511,0,0,2245,2247,5,511,0,0,2246,2240,1,0, + 0,0,2246,2241,1,0,0,0,2246,2243,1,0,0,0,2246,2244,1,0,0,0,2247,353, + 1,0,0,0,2248,2263,5,506,0,0,2249,2263,5,507,0,0,2250,2263,5,508, + 0,0,2251,2252,5,508,0,0,2252,2263,5,506,0,0,2253,2254,5,507,0,0, + 2254,2263,5,506,0,0,2255,2256,5,508,0,0,2256,2263,5,507,0,0,2257, + 2258,5,509,0,0,2258,2263,5,506,0,0,2259,2260,5,508,0,0,2260,2261, + 5,506,0,0,2261,2263,5,507,0,0,2262,2248,1,0,0,0,2262,2249,1,0,0, + 0,2262,2250,1,0,0,0,2262,2251,1,0,0,0,2262,2253,1,0,0,0,2262,2255, + 1,0,0,0,2262,2257,1,0,0,0,2262,2259,1,0,0,0,2263,355,1,0,0,0,2264, + 2265,5,508,0,0,2265,2272,5,508,0,0,2266,2267,5,507,0,0,2267,2272, + 5,507,0,0,2268,2272,5,512,0,0,2269,2272,5,513,0,0,2270,2272,5,511, + 0,0,2271,2264,1,0,0,0,2271,2266,1,0,0,0,2271,2268,1,0,0,0,2271,2269, + 1,0,0,0,2271,2270,1,0,0,0,2272,357,1,0,0,0,2273,2274,7,36,0,0,2274, + 359,1,0,0,0,2275,2276,7,37,0,0,2276,361,1,0,0,0,2277,2292,3,290, + 145,0,2278,2292,3,364,182,0,2279,2292,3,366,183,0,2280,2282,5,530, + 0,0,2281,2280,1,0,0,0,2281,2282,1,0,0,0,2282,2283,1,0,0,0,2283,2292, + 3,368,184,0,2284,2292,3,370,185,0,2285,2292,5,540,0,0,2286,2292, + 5,541,0,0,2287,2289,5,242,0,0,2288,2287,1,0,0,0,2288,2289,1,0,0, + 0,2289,2290,1,0,0,0,2290,2292,5,245,0,0,2291,2277,1,0,0,0,2291,2278, + 1,0,0,0,2291,2279,1,0,0,0,2291,2281,1,0,0,0,2291,2284,1,0,0,0,2291, + 2285,1,0,0,0,2291,2286,1,0,0,0,2291,2288,1,0,0,0,2292,363,1,0,0, + 0,2293,2294,3,374,187,0,2294,2295,3,366,183,0,2295,365,1,0,0,0,2296, + 2297,5,538,0,0,2297,367,1,0,0,0,2298,2299,5,539,0,0,2299,369,1,0, + 0,0,2300,2301,7,38,0,0,2301,371,1,0,0,0,2302,2303,7,39,0,0,2303, + 373,1,0,0,0,2304,2305,7,40,0,0,2305,375,1,0,0,0,2306,2307,7,41,0, + 0,2307,377,1,0,0,0,2308,2309,7,42,0,0,2309,379,1,0,0,0,2310,2311, + 7,43,0,0,2311,381,1,0,0,0,2312,2313,7,44,0,0,2313,383,1,0,0,0,2314, + 2315,7,45,0,0,2315,385,1,0,0,0,2316,2317,7,46,0,0,2317,387,1,0,0, + 0,274,391,398,401,415,433,437,446,451,458,469,478,490,493,500,503, + 511,515,520,523,530,538,542,554,562,566,598,601,606,610,614,618, + 627,632,636,640,645,648,652,657,663,668,673,677,681,685,695,703, + 707,711,715,719,723,727,731,735,737,747,755,779,793,798,802,808, + 811,814,821,824,833,845,869,881,886,890,898,902,908,918,923,929, + 933,937,941,950,954,961,964,974,982,990,994,1009,1028,1039,1043, + 1050,1055,1061,1065,1072,1076,1080,1084,1092,1096,1101,1107,1113, + 1116,1120,1131,1140,1147,1158,1170,1185,1188,1192,1195,1197,1202, + 1206,1209,1213,1222,1231,1241,1246,1257,1260,1263,1266,1269,1275, + 1279,1287,1290,1295,1298,1302,1305,1307,1321,1332,1337,1345,1348, + 1351,1356,1358,1360,1365,1368,1372,1376,1385,1396,1423,1445,1458, + 1470,1483,1495,1507,1513,1540,1548,1552,1555,1558,1565,1568,1571, + 1574,1577,1580,1585,1588,1597,1602,1606,1611,1617,1622,1626,1645, + 1653,1661,1665,1669,1679,1705,1713,1725,1747,1749,1760,1763,1765, + 1769,1773,1780,1789,1795,1808,1815,1820,1826,1833,1840,1842,1845, + 1857,1862,1865,1871,1873,1879,1900,1902,1910,1917,1920,1924,1931, + 1935,1944,1948,1964,1973,2001,2010,2019,2025,2029,2035,2043,2048, + 2052,2059,2064,2072,2076,2079,2083,2092,2095,2106,2112,2130,2135, + 2140,2147,2149,2154,2161,2163,2168,2175,2177,2182,2189,2191,2198, + 2217,2224,2227,2232,2238,2246,2262,2271,2281,2288,2291 ]; private static __ATN: antlr.ATN; @@ -16531,14 +16572,14 @@ export class ValuesRowDefinitionContext extends antlr.ParserRuleContext { public LR_BRACKET(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; } - public constant(): ConstantContext[]; - public constant(i: number): ConstantContext | null; - public constant(i?: number): ConstantContext[] | ConstantContext | null { + public valueDefinition(): ValueDefinitionContext[]; + public valueDefinition(i: number): ValueDefinitionContext | null; + public valueDefinition(i?: number): ValueDefinitionContext[] | ValueDefinitionContext | null { if (i === undefined) { - return this.getRuleContexts(ConstantContext); + return this.getRuleContexts(ValueDefinitionContext); } - return this.getRuleContext(i, ConstantContext); + return this.getRuleContext(i, ValueDefinitionContext); } public RR_BRACKET(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; @@ -16575,6 +16616,39 @@ export class ValuesRowDefinitionContext extends antlr.ParserRuleContext { } +export class ValueDefinitionContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public constant(): ConstantContext | null { + return this.getRuleContext(0, ConstantContext); + } + public functionCallExpression(): FunctionCallExpressionContext | null { + return this.getRuleContext(0, FunctionCallExpressionContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_valueDefinition; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterValueDefinition) { + listener.enterValueDefinition(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitValueDefinition) { + listener.exitValueDefinition(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitValueDefinition) { + return visitor.visitValueDefinition(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class InsertMulStatementCompatibilityContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index 08214fd4..07627b6d 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -86,6 +86,7 @@ import { InsertSimpleStatementContext } from "./FlinkSqlParser.js"; import { InsertPartitionDefinitionContext } from "./FlinkSqlParser.js"; import { ValuesDefinitionContext } from "./FlinkSqlParser.js"; import { ValuesRowDefinitionContext } from "./FlinkSqlParser.js"; +import { ValueDefinitionContext } from "./FlinkSqlParser.js"; import { InsertMulStatementCompatibilityContext } from "./FlinkSqlParser.js"; import { InsertMulStatementContext } from "./FlinkSqlParser.js"; import { QueryStatementContext } from "./FlinkSqlParser.js"; @@ -1016,6 +1017,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitValuesRowDefinition?: (ctx: ValuesRowDefinitionContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.valueDefinition`. + * @param ctx the parse tree + */ + enterValueDefinition?: (ctx: ValueDefinitionContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.valueDefinition`. + * @param ctx the parse tree + */ + exitValueDefinition?: (ctx: ValueDefinitionContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.insertMulStatementCompatibility`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 073b3883..02b4937e 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -86,6 +86,7 @@ import { InsertSimpleStatementContext } from "./FlinkSqlParser.js"; import { InsertPartitionDefinitionContext } from "./FlinkSqlParser.js"; import { ValuesDefinitionContext } from "./FlinkSqlParser.js"; import { ValuesRowDefinitionContext } from "./FlinkSqlParser.js"; +import { ValueDefinitionContext } from "./FlinkSqlParser.js"; import { InsertMulStatementCompatibilityContext } from "./FlinkSqlParser.js"; import { InsertMulStatementContext } from "./FlinkSqlParser.js"; import { QueryStatementContext } from "./FlinkSqlParser.js"; @@ -705,6 +706,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.valueDefinition`. + * @param ctx the parse tree + * @return the visitor result + */ + visitValueDefinition?: (ctx: ValueDefinitionContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.insertMulStatementCompatibility`. * @param ctx the parse tree diff --git a/test/parser/flink/syntax/fixtures/select.sql b/test/parser/flink/syntax/fixtures/select.sql index 006957ed..0b51270e 100644 --- a/test/parser/flink/syntax/fixtures/select.sql +++ b/test/parser/flink/syntax/fixtures/select.sql @@ -55,3 +55,6 @@ from SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; SELECT SUM(c.amount) AS total_amount FROM cust c; +INSERT INTO SR_CATALOG.DEMOS.DETAIL_DEMO VALUES(2, 'YY', 2, CURRENT_DATE, NOW(),func1(),func2(1),func3('a',2)); + +INSERT INTO SR_CATALOG.DEMOS.DETAIL_DEMO SELECT 2, 'YY', 2, CURRENT_DATE,NOW(),func1(),func2(1),func3('a',2); \ No newline at end of file From 5beda62fd0f177c8dbeb102ed84d84923517028f Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Thu, 20 Mar 2025 14:55:00 +0800 Subject: [PATCH 08/15] feat: remove noReserved keywords in completions --- src/parser/flink/index.ts | 12 ++++++++++++ src/parser/hive/index.ts | 6 ++++++ src/parser/impala/index.ts | 6 ++++++ src/parser/mysql/index.ts | 6 ++++++ src/parser/postgresql/index.ts | 6 ++++++ src/parser/spark/index.ts | 10 ++++++++++ src/parser/trino/index.ts | 6 ++++++ 7 files changed, 52 insertions(+) diff --git a/src/parser/flink/index.ts b/src/parser/flink/index.ts index 53b2bdcc..ebed25e6 100644 --- a/src/parser/flink/index.ts +++ b/src/parser/flink/index.ts @@ -29,6 +29,17 @@ export class FlinkSQL extends BasicSQL = new Set([ HiveSqlParser.RULE_dbSchemaName, // db or schema name HiveSqlParser.RULE_dbSchemaNameCreate, // db or schema name that will be created @@ -43,6 +48,7 @@ export class HiveSQL extends BasicSQL = new Set([ ImpalaSqlParser.RULE_functionNameCreate, ImpalaSqlParser.RULE_tableNameCreate, @@ -41,6 +46,7 @@ export class ImpalaSQL extends BasicSQL { return new MySqlParser(tokenStream); } + /** + * The rules that keywords you don't want to be suggested. + */ + protected excludeKeywordRules = new Set([MySqlParser.RULE_keywordsCanBeId]); + protected preferredRules: Set = new Set([ MySqlParser.RULE_databaseName, MySqlParser.RULE_databaseNameCreate, @@ -40,6 +45,7 @@ export class MySQL extends BasicSQL { MySqlParser.RULE_functionNameCreate, MySqlParser.RULE_columnName, MySqlParser.RULE_columnNameCreate, + ...this.excludeKeywordRules, ]); protected get splitListener() { diff --git a/src/parser/postgresql/index.ts b/src/parser/postgresql/index.ts index a62276cf..4a803690 100644 --- a/src/parser/postgresql/index.ts +++ b/src/parser/postgresql/index.ts @@ -30,6 +30,11 @@ export class PostgreSQL extends BasicSQL = new Set([ PostgreSqlParser.RULE_tableNameCreate, // table name PostgreSqlParser.RULE_tableName, // table name that will be created @@ -46,6 +51,7 @@ export class PostgreSQL extends BasicSQL = new Set([ SparkSqlParser.RULE_namespaceName, SparkSqlParser.RULE_namespaceNameCreate, @@ -41,6 +50,7 @@ export class SparkSQL extends BasicSQL = new Set([ TrinoSqlParser.RULE_catalogRef, TrinoSqlParser.RULE_catalogNameCreate, @@ -64,6 +69,7 @@ export class TrinoSQL extends BasicSQL Date: Mon, 16 Jun 2025 19:02:45 +0800 Subject: [PATCH 09/15] test: add filter keywords test case --- src/parser/postgresql/index.ts | 8 +++++++- .../flink/suggestion/fixtures/tokenSuggestion.sql | 2 ++ test/parser/flink/suggestion/tokenSuggestion.test.ts | 12 ++++++++++++ .../hive/suggestion/fixtures/tokenSuggestion.sql | 2 ++ test/parser/hive/suggestion/tokenSuggestion.test.ts | 12 ++++++++++++ .../impala/suggestion/fixtures/tokenSuggestion.sql | 2 ++ .../parser/impala/suggestion/tokenSuggestion.test.ts | 12 ++++++++++++ .../mysql/suggestion/fixtures/tokenSuggestion.sql | 2 ++ test/parser/mysql/suggestion/tokenSuggestion.test.ts | 12 ++++++++++++ .../suggestion/fixtures/tokenSuggestion.sql | 2 ++ .../postgresql/suggestion/tokenSuggestion.test.ts | 12 ++++++++++++ .../spark/suggestion/fixtures/tokenSuggestion.sql | 2 ++ test/parser/spark/suggestion/tokenSuggestion.test.ts | 12 ++++++++++++ .../trino/suggestion/fixtures/tokenSuggestion.sql | 2 ++ test/parser/trino/suggestion/tokenSuggestion.test.ts | 12 ++++++++++++ 15 files changed, 105 insertions(+), 1 deletion(-) diff --git a/src/parser/postgresql/index.ts b/src/parser/postgresql/index.ts index 4a803690..b8c85522 100644 --- a/src/parser/postgresql/index.ts +++ b/src/parser/postgresql/index.ts @@ -33,7 +33,13 @@ export class PostgreSQL extends BasicSQL = new Set([ PostgreSqlParser.RULE_tableNameCreate, // table name diff --git a/test/parser/flink/suggestion/fixtures/tokenSuggestion.sql b/test/parser/flink/suggestion/fixtures/tokenSuggestion.sql index 01a0ae89..905400b8 100644 --- a/test/parser/flink/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/flink/suggestion/fixtures/tokenSuggestion.sql @@ -12,3 +12,5 @@ CREATE TABLE IF NOT EXISTS CREATE TABLE tb (id ); + +SELECT id FROM ; \ No newline at end of file diff --git a/test/parser/flink/suggestion/tokenSuggestion.test.ts b/test/parser/flink/suggestion/tokenSuggestion.test.ts index 2b2ab1b3..67790c1a 100644 --- a/test/parser/flink/suggestion/tokenSuggestion.test.ts +++ b/test/parser/flink/suggestion/tokenSuggestion.test.ts @@ -105,4 +105,16 @@ describe('Flink SQL Token Suggestion', () => { )?.keywords; expect(suggestion.length).not.toBe(0); }); + + test('filter unreserved keywords', () => { + const pos: CaretPosition = { + lineNumber: 16, + column: 17, + }; + const suggestion = flink.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toMatchUnorderedArray(['TABLE', 'LATERAL', 'UNNEST']); + }); }); diff --git a/test/parser/hive/suggestion/fixtures/tokenSuggestion.sql b/test/parser/hive/suggestion/fixtures/tokenSuggestion.sql index b7d1854b..84834322 100644 --- a/test/parser/hive/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/hive/suggestion/fixtures/tokenSuggestion.sql @@ -24,3 +24,5 @@ CREATE TABLE IF NOT EXISTS CREATE TABLE tb (id ); + +SELECT id FROM ; \ No newline at end of file diff --git a/test/parser/hive/suggestion/tokenSuggestion.test.ts b/test/parser/hive/suggestion/tokenSuggestion.test.ts index 6eb2b2b4..a8d65f7a 100644 --- a/test/parser/hive/suggestion/tokenSuggestion.test.ts +++ b/test/parser/hive/suggestion/tokenSuggestion.test.ts @@ -272,4 +272,16 @@ describe('Hive SQL Token Suggestion', () => { )?.keywords; expect(suggestion.length).not.toBe(0); }); + + test('filter unreserved keywords', () => { + const pos: CaretPosition = { + lineNumber: 28, + column: 16, + }; + const suggestion = hive.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toMatchUnorderedArray(['TABLE', 'UNIQUEJOIN']); + }); }); diff --git a/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql b/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql index f6b45e13..3f6d446e 100644 --- a/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql @@ -15,3 +15,5 @@ CREATE TABLE IF NOT EXISTS; CREATE TABLE tb (id ); + +SELECT id FROM ; \ No newline at end of file diff --git a/test/parser/impala/suggestion/tokenSuggestion.test.ts b/test/parser/impala/suggestion/tokenSuggestion.test.ts index 68b24d85..ac142d4b 100644 --- a/test/parser/impala/suggestion/tokenSuggestion.test.ts +++ b/test/parser/impala/suggestion/tokenSuggestion.test.ts @@ -185,4 +185,16 @@ describe('Impala SQL Token Suggestion', () => { )?.keywords; expect(suggestion.length).not.toBe(0); }); + + test('filter unreserved keywords', () => { + const pos: CaretPosition = { + lineNumber: 19, + column: 17, + }; + const suggestion = impala.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toMatchUnorderedArray(['LATERAL', 'UNNEST']); + }); }); diff --git a/test/parser/mysql/suggestion/fixtures/tokenSuggestion.sql b/test/parser/mysql/suggestion/fixtures/tokenSuggestion.sql index 817d559c..18f75476 100644 --- a/test/parser/mysql/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/mysql/suggestion/fixtures/tokenSuggestion.sql @@ -20,3 +20,5 @@ CREATE TABLE IF NOT EXISTS CREATE TABLE tb (id ); + +SELECT id FROM ; diff --git a/test/parser/mysql/suggestion/tokenSuggestion.test.ts b/test/parser/mysql/suggestion/tokenSuggestion.test.ts index f252f7db..29319fca 100644 --- a/test/parser/mysql/suggestion/tokenSuggestion.test.ts +++ b/test/parser/mysql/suggestion/tokenSuggestion.test.ts @@ -297,4 +297,16 @@ describe('MySQL Token Suggestion', () => { )?.keywords; expect(suggestion.length).not.toBe(0); }); + + test('filter unreserved keywords', () => { + const pos: CaretPosition = { + lineNumber: 24, + column: 17, + }; + const suggestion = mysql.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toMatchUnorderedArray(['JSON_TABLE', 'LATERAL', 'SELECT']); + }); }); diff --git a/test/parser/postgresql/suggestion/fixtures/tokenSuggestion.sql b/test/parser/postgresql/suggestion/fixtures/tokenSuggestion.sql index a0abe5f8..928d5adc 100644 --- a/test/parser/postgresql/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/postgresql/suggestion/fixtures/tokenSuggestion.sql @@ -13,3 +13,5 @@ CREATE TABLE IF NOT EXISTS; CREATE TABLE tb (id ); + +SELECT id as FROM a1 \ No newline at end of file diff --git a/test/parser/postgresql/suggestion/tokenSuggestion.test.ts b/test/parser/postgresql/suggestion/tokenSuggestion.test.ts index 7f7b1b8e..742f6372 100644 --- a/test/parser/postgresql/suggestion/tokenSuggestion.test.ts +++ b/test/parser/postgresql/suggestion/tokenSuggestion.test.ts @@ -242,4 +242,16 @@ describe('Postgres SQL Token Suggestion', () => { )?.keywords; expect(suggestion.length).not.toBe(0); }); + + test('filter unreserved keywords', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 14, + }; + const suggestion = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toEqual([]); + }); }); diff --git a/test/parser/spark/suggestion/fixtures/tokenSuggestion.sql b/test/parser/spark/suggestion/fixtures/tokenSuggestion.sql index aa9b0e52..7dcb272a 100644 --- a/test/parser/spark/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/spark/suggestion/fixtures/tokenSuggestion.sql @@ -22,3 +22,5 @@ CREATE TABLE IF NOT EXISTS CREATE TABLE tb (id ); + +SELECT id FROM ; \ No newline at end of file diff --git a/test/parser/spark/suggestion/tokenSuggestion.test.ts b/test/parser/spark/suggestion/tokenSuggestion.test.ts index 7eb2c874..56266b74 100644 --- a/test/parser/spark/suggestion/tokenSuggestion.test.ts +++ b/test/parser/spark/suggestion/tokenSuggestion.test.ts @@ -240,4 +240,16 @@ describe('Spark SQL Token Suggestion', () => { )?.keywords; expect(suggestion.length).not.toBe(0); }); + + test('filter unreserved keywords', () => { + const pos: CaretPosition = { + lineNumber: 26, + column: 17, + }; + const suggestion = spark.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toMatchUnorderedArray(['LATERAL', 'IDENTIFIER', 'VALUES']); + }); }); diff --git a/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql b/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql index d3398ec9..5e2f21f8 100644 --- a/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/trino/suggestion/fixtures/tokenSuggestion.sql @@ -17,3 +17,5 @@ CREATE TABLE IF NOT EXISTS ; CREATE TABLE tb (id ); + +SELECT id FROM ; \ No newline at end of file diff --git a/test/parser/trino/suggestion/tokenSuggestion.test.ts b/test/parser/trino/suggestion/tokenSuggestion.test.ts index f1b72666..5ca64f11 100644 --- a/test/parser/trino/suggestion/tokenSuggestion.test.ts +++ b/test/parser/trino/suggestion/tokenSuggestion.test.ts @@ -171,4 +171,16 @@ describe('Trino SQL Token Suggestion', () => { )?.keywords; expect(suggestion.length).not.toBe(0); }); + + test('filter unreserved keywords', () => { + const pos: CaretPosition = { + lineNumber: 21, + column: 17, + }; + const suggestion = trino.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + expect(suggestion).toMatchUnorderedArray(['LATERAL', 'UNNEST', 'JSON_TABLE', 'TABLE']); + }); }); From 325926e172accdbf5ce7b4d30c7c38629d467dd2 Mon Sep 17 00:00:00 2001 From: liuxy0551 Date: Fri, 1 Aug 2025 11:41:55 +0800 Subject: [PATCH 10/15] test: #438 sync suggestion no duplicate syntaxContextType --- .../suggestion/fixtures/syntaxSuggestion.sql | 4 +++ .../flink/suggestion/syntaxSuggestion.test.ts | 33 +++++++++++++++++++ .../suggestion/fixtures/syntaxSuggestion.sql | 6 +++- .../hive/suggestion/syntaxSuggestion.test.ts | 33 +++++++++++++++++++ .../suggestion/fixtures/syntaxSuggestion.sql | 6 +++- .../suggestion/syntaxSuggestion.test.ts | 33 +++++++++++++++++++ .../suggestion/fixtures/syntaxSuggestion.sql | 6 +++- .../mysql/suggestion/syntaxSuggestion.test.ts | 33 +++++++++++++++++++ .../suggestion/fixtures/syntaxSuggestion.sql | 4 +++ .../suggestion/syntaxSuggestion.test.ts | 33 +++++++++++++++++++ .../suggestion/fixtures/syntaxSuggestion.sql | 4 +++ .../spark/suggestion/syntaxSuggestion.test.ts | 33 +++++++++++++++++++ .../suggestion/fixtures/syntaxSuggestion.sql | 4 +++ .../trino/suggestion/syntaxSuggestion.test.ts | 33 +++++++++++++++++++ 14 files changed, 262 insertions(+), 3 deletions(-) diff --git a/test/parser/flink/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/flink/suggestion/fixtures/syntaxSuggestion.sql index 15fb1890..f7cb677d 100644 --- a/test/parser/flink/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/flink/suggestion/fixtures/syntaxSuggestion.sql @@ -47,3 +47,7 @@ SELECT * FROM Orders ORDER BY orderTime LIMIT length(order_id); SELECT age CASE WHEN age < 18 THEN 1 ELSE 0 END AS is_minor FROM dt_catalog.dt_db.subscriptions; CREATE TABLE tmp_table (col INT) WITH ('connector'='kafka'); + +SELECT FROM tb1; + +SELECT age FROM tb1; \ No newline at end of file diff --git a/test/parser/flink/suggestion/syntaxSuggestion.test.ts b/test/parser/flink/suggestion/syntaxSuggestion.test.ts index bd3d9b79..41827cfb 100644 --- a/test/parser/flink/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/flink/suggestion/syntaxSuggestion.test.ts @@ -498,6 +498,39 @@ describe('Flink SQL Syntax Suggestion', () => { }); }); + test('Sync suggestion no duplicate syntaxContextType', () => { + const pos: CaretPosition = { + lineNumber: 51, + column: 8, + }; + const syntaxes = flink.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); + + expect(syntaxContextTypes).not.toBeUndefined(); + expect(syntaxContextTypes).toEqual([EntityContextType.FUNCTION, EntityContextType.COLUMN]); + }); + + test('Select function or column', () => { + const pos: CaretPosition = { + lineNumber: 53, + column: 11, + }; + const syntaxes = flink.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const wordRangesArr = syntaxes?.map((syn) => syn.wordRanges); + + expect(wordRangesArr).not.toBeUndefined(); + expect(wordRangesArr.length).toBe(2); + expect( + wordRangesArr.map((wordRanges) => wordRanges.map((wordRange) => wordRange.text)) + ).toEqual([['age'], ['age']]); + }); + test('Syntax suggestion after a comment', () => { const sql = `-- the comment\nSELECT * FROM db.`; const pos: CaretPosition = { diff --git a/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql index 840d210a..68512ff3 100644 --- a/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/hive/suggestion/fixtures/syntaxSuggestion.sql @@ -58,4 +58,8 @@ SELECT a, COUNT(b) OVER (PARTITION BY c, d) FROM T; SELECT a.* FROM a JOIN b ON (a.id = b.id AND a.department = b.department); -SELECT col1, col2, CASE WHEN month = 'January' THEN 2023 ELSE 2024 END AS year, CAST(day AS int) AS day FROM source_table; \ No newline at end of file +SELECT col1, col2, CASE WHEN month = 'January' THEN 2023 ELSE 2024 END AS year, CAST(day AS int) AS day FROM source_table; + +SELECT FROM tb1; + +SELECT age FROM tb1; \ No newline at end of file diff --git a/test/parser/hive/suggestion/syntaxSuggestion.test.ts b/test/parser/hive/suggestion/syntaxSuggestion.test.ts index 764c90eb..19db9684 100644 --- a/test/parser/hive/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/hive/suggestion/syntaxSuggestion.test.ts @@ -592,6 +592,39 @@ describe('Hive SQL Syntax Suggestion', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['month']); }); + test('Sync suggestion no duplicate syntaxContextType', () => { + const pos: CaretPosition = { + lineNumber: 63, + column: 8, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); + + expect(syntaxContextTypes).not.toBeUndefined(); + expect(syntaxContextTypes).toEqual([EntityContextType.COLUMN, EntityContextType.FUNCTION]); + }); + + test('Select function or column', () => { + const pos: CaretPosition = { + lineNumber: 65, + column: 11, + }; + const syntaxes = hive.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const wordRangesArr = syntaxes?.map((syn) => syn.wordRanges); + + expect(wordRangesArr).not.toBeUndefined(); + expect(wordRangesArr.length).toBe(2); + expect( + wordRangesArr.map((wordRanges) => wordRanges.map((wordRange) => wordRange.text)) + ).toEqual([['age'], ['age']]); + }); + test('Syntax suggestion after a comment', () => { const sql = `-- the comment\nSELECT * FROM db.`; const pos: CaretPosition = { diff --git a/test/parser/impala/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/impala/suggestion/fixtures/syntaxSuggestion.sql index b92003be..995db9c2 100644 --- a/test/parser/impala/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/impala/suggestion/fixtures/syntaxSuggestion.sql @@ -44,4 +44,8 @@ ALTER TABLE my_table ADD COLUMN age INT COMMENT 'Updated Age'; CREATE TABLE kudu_no_partition_by_clause (id bigint PRIMARY KEY, s STRING, b BOOLEAN ) STORED AS KUDU; -CREATE TABLE PARTITIONS_YES PARTITIONED BY (YEAR, MONTH); \ No newline at end of file +CREATE TABLE PARTITIONS_YES PARTITIONED BY (YEAR, MONTH); + +SELECT FROM tb1; + +SELECT age FROM tb1; \ No newline at end of file diff --git a/test/parser/impala/suggestion/syntaxSuggestion.test.ts b/test/parser/impala/suggestion/syntaxSuggestion.test.ts index d2cb2a62..aa0ef448 100644 --- a/test/parser/impala/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/impala/suggestion/syntaxSuggestion.test.ts @@ -463,6 +463,39 @@ describe('Impala SQL Syntax Suggestion', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['YEAR']); }); + test('Sync suggestion no duplicate syntaxContextType', () => { + const pos: CaretPosition = { + lineNumber: 49, + column: 8, + }; + const syntaxes = impala.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); + + expect(syntaxContextTypes).not.toBeUndefined(); + expect(syntaxContextTypes).toEqual([EntityContextType.COLUMN, EntityContextType.FUNCTION]); + }); + + test('Select function or column', () => { + const pos: CaretPosition = { + lineNumber: 51, + column: 11, + }; + const syntaxes = impala.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const wordRangesArr = syntaxes?.map((syn) => syn.wordRanges); + + expect(wordRangesArr).not.toBeUndefined(); + expect(wordRangesArr.length).toBe(2); + expect( + wordRangesArr.map((wordRanges) => wordRanges.map((wordRange) => wordRange.text)) + ).toEqual([['age'], ['age']]); + }); + test('Syntax suggestion after a comment', () => { const sql = `-- the comment\nSELECT * FROM db.`; const pos: CaretPosition = { diff --git a/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql index 878c11db..c51bd8d0 100644 --- a/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/mysql/suggestion/fixtures/syntaxSuggestion.sql @@ -60,4 +60,8 @@ SELECT user, MAX(salary) FROM users where age = 10 GROUP BY length(user) HAVING SELECT c.category_id FROM category c JOIN product p ON c.category_id = p.category_id; -SELECT score, CASE WHEN score >= 90 THEN 'A' ELSE 'F' END AS grade FROM students; \ No newline at end of file +SELECT score, CASE WHEN score >= 90 THEN 'A' ELSE 'F' END AS grade FROM students; + +SELECT FROM tb1; + +SELECT age FROM tb1; diff --git a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts index ea0f6d66..56dbd245 100644 --- a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts @@ -641,6 +641,39 @@ describe('MySQL Syntax Suggestion', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['score']); }); + test('Sync suggestion no duplicate syntaxContextType', () => { + const pos: CaretPosition = { + lineNumber: 65, + column: 8, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); + + expect(syntaxContextTypes).not.toBeUndefined(); + expect(syntaxContextTypes).toEqual([EntityContextType.FUNCTION, EntityContextType.COLUMN]); + }); + + test('Select function or column', () => { + const pos: CaretPosition = { + lineNumber: 67, + column: 11, + }; + const syntaxes = mysql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const wordRangesArr = syntaxes?.map((syn) => syn.wordRanges); + + expect(wordRangesArr).not.toBeUndefined(); + expect(wordRangesArr.length).toBe(2); + expect( + wordRangesArr.map((wordRanges) => wordRanges.map((wordRange) => wordRange.text)) + ).toEqual([['age'], ['age']]); + }); + test('Syntax suggestion after a comment', () => { const sql = `-- the comment\nSELECT * FROM db.`; const pos: CaretPosition = { diff --git a/test/parser/postgresql/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/postgresql/suggestion/fixtures/syntaxSuggestion.sql index 7870c462..1383abfb 100644 --- a/test/parser/postgresql/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/postgresql/suggestion/fixtures/syntaxSuggestion.sql @@ -87,3 +87,7 @@ VALUES (1, '3'), (3, 'sdsd') ORDER BY sort_expression ASC LIMIT id = 1; CREATE OR REPLACE RULE name AS ON SELECT TO table_name WHERE length(y+x) = 3 DO INSTEAD NOTHING; WITH query_name (id) AS (SELECT id FROM table_expression) SELECT DISTINCT ON (col1) random() AS name1 FROM table_expression WHERE name1=name1 GROUP BY id HAVING sum(len+y) < interval '5 hours' WINDOW w AS (PARTITION BY depname ORDER BY salary DESC) EXCEPT (SELECT * FROM others) ORDER BY salary USING > NULLS FIRST OFFSET start FETCH NEXT ROW ONLY FOR KEY SHARE OF table_name NOWAIT; + +SELECT FROM tb1; + +SELECT age FROM tb1; \ No newline at end of file diff --git a/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts b/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts index 4e80d599..a0cb5f25 100644 --- a/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts @@ -1143,6 +1143,39 @@ describe('Postgre SQL Syntax Suggestion', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['depname']); }); + test('Sync suggestion no duplicate syntaxContextType', () => { + const pos: CaretPosition = { + lineNumber: 91, + column: 8, + }; + const syntaxes = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); + + expect(syntaxContextTypes).not.toBeUndefined(); + expect(syntaxContextTypes).toEqual([EntityContextType.FUNCTION, EntityContextType.COLUMN]); + }); + + test('Select function or column', () => { + const pos: CaretPosition = { + lineNumber: 93, + column: 11, + }; + const syntaxes = postgresql.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const wordRangesArr = syntaxes?.map((syn) => syn.wordRanges); + + expect(wordRangesArr).not.toBeUndefined(); + expect(wordRangesArr.length).toBe(2); + expect( + wordRangesArr.map((wordRanges) => wordRanges.map((wordRange) => wordRange.text)) + ).toEqual([['age'], ['age']]); + }); + test('Syntax suggestion after a comment', () => { const sql = `-- the comment\nSELECT * FROM db.`; const pos: CaretPosition = { diff --git a/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql index 982aed11..a5fbc40a 100644 --- a/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql @@ -75,3 +75,7 @@ INSERT OVERWRITE students PARTITION (student_id = 222222) SELECT name, address F SELECT id, name, employee.deptno, deptname FROM employee FULL JOIN department ON employee.deptno = department.deptno; SELECT city, sum(quantity) AS sum FROM dealer GROUP BY sum(city) HAVING max(quantity) > 15; + +SELECT FROM tb1; + +SELECT age FROM tb1; \ No newline at end of file diff --git a/test/parser/spark/suggestion/syntaxSuggestion.test.ts b/test/parser/spark/suggestion/syntaxSuggestion.test.ts index 207cb550..2c5335cc 100644 --- a/test/parser/spark/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/spark/suggestion/syntaxSuggestion.test.ts @@ -762,6 +762,39 @@ describe('Spark SQL Syntax Suggestion', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['quantity']); }); + test('Sync suggestion no duplicate syntaxContextType', () => { + const pos: CaretPosition = { + lineNumber: 79, + column: 8, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); + + expect(syntaxContextTypes).not.toBeUndefined(); + expect(syntaxContextTypes).toEqual([EntityContextType.COLUMN, EntityContextType.FUNCTION]); + }); + + test('Select function or column', () => { + const pos: CaretPosition = { + lineNumber: 81, + column: 11, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const wordRangesArr = syntaxes?.map((syn) => syn.wordRanges); + + expect(wordRangesArr).not.toBeUndefined(); + expect(wordRangesArr.length).toBe(2); + expect( + wordRangesArr.map((wordRanges) => wordRanges.map((wordRange) => wordRange.text)) + ).toEqual([['age'], ['age']]); + }); + test('Syntax suggestion after a comment', () => { const sql = `-- the comment\nSELECT * FROM db.`; const pos: CaretPosition = { diff --git a/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql index a7adc828..2811a759 100644 --- a/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/trino/suggestion/fixtures/syntaxSuggestion.sql @@ -57,3 +57,7 @@ SELECT orderId FROM orders WINDOW w AS (PARTITION BY clerk ORDER BY totalprice D SELECT id, amount, CASE WHEN amount > 1000 THEN 'High' WHEN amount BETWEEN 500 AND 1000 THEN 'Medium' ELSE 'Low' END AS sales_category FROM sales; SELECT * FROM users CROSS JOIN UNNEST(friends) WITH ordinality; + +SELECT FROM tb1; + +SELECT age FROM tb1; diff --git a/test/parser/trino/suggestion/syntaxSuggestion.test.ts b/test/parser/trino/suggestion/syntaxSuggestion.test.ts index 947e27da..b23b0aee 100644 --- a/test/parser/trino/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/trino/suggestion/syntaxSuggestion.test.ts @@ -565,6 +565,39 @@ describe('Trino SQL Syntax Suggestion', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['friends']); }); + test('Sync suggestion no duplicate syntaxContextType', () => { + const pos: CaretPosition = { + lineNumber: 61, + column: 8, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); + + expect(syntaxContextTypes).not.toBeUndefined(); + expect(syntaxContextTypes).toEqual([EntityContextType.COLUMN, EntityContextType.FUNCTION]); + }); + + test('Select function or column', () => { + const pos: CaretPosition = { + lineNumber: 63, + column: 11, + }; + const syntaxes = trino.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const wordRangesArr = syntaxes?.map((syn) => syn.wordRanges); + + expect(wordRangesArr).not.toBeUndefined(); + expect(wordRangesArr.length).toBe(2); + expect( + wordRangesArr.map((wordRanges) => wordRanges.map((wordRange) => wordRange.text)) + ).toEqual([['age'], ['age']]); + }); + test('Syntax suggestion after a comment', () => { const sql = `-- the comment\nSELECT * FROM db.`; const pos: CaretPosition = { From b8a13b73a20b8ca638c0a55d50371dc45f23ca59 Mon Sep 17 00:00:00 2001 From: liuxy0551 Date: Fri, 1 Aug 2025 14:04:36 +0800 Subject: [PATCH 11/15] fix: #438 syntaxContextType not duplicate --- src/parser/flink/index.ts | 10 +++++++++- src/parser/hive/index.ts | 10 +++++++++- src/parser/impala/index.ts | 10 +++++++++- src/parser/mysql/index.ts | 10 +++++++++- src/parser/postgresql/index.ts | 10 +++++++++- src/parser/spark/index.ts | 10 +++++++++- src/parser/trino/index.ts | 10 +++++++++- 7 files changed, 63 insertions(+), 7 deletions(-) diff --git a/src/parser/flink/index.ts b/src/parser/flink/index.ts index ebed25e6..b196b27b 100644 --- a/src/parser/flink/index.ts +++ b/src/parser/flink/index.ts @@ -168,7 +168,15 @@ export class FlinkSQL extends BasicSQL + syn.syntaxContextType === syntaxContextType && + syn.wordRanges.map((wordRange: Token) => wordRange.text)?.join(',') === + tokenRanges.map((tokenRange: Token) => tokenRange.text)?.join(',') + ) + ) { originalSyntaxSuggestions.push({ syntaxContextType, wordRanges: tokenRanges, diff --git a/src/parser/hive/index.ts b/src/parser/hive/index.ts index 678ac697..c83cf02c 100644 --- a/src/parser/hive/index.ts +++ b/src/parser/hive/index.ts @@ -150,7 +150,15 @@ export class HiveSQL extends BasicSQL + syn.syntaxContextType === syntaxContextType && + syn.wordRanges.map((wordRange: Token) => wordRange.text)?.join(',') === + tokenRanges.map((tokenRange: Token) => tokenRange.text)?.join(',') + ) + ) { originalSyntaxSuggestions.push({ syntaxContextType, wordRanges: tokenRanges, diff --git a/src/parser/impala/index.ts b/src/parser/impala/index.ts index 614073c0..39dbbd18 100644 --- a/src/parser/impala/index.ts +++ b/src/parser/impala/index.ts @@ -138,7 +138,15 @@ export class ImpalaSQL extends BasicSQL + syn.syntaxContextType === syntaxContextType && + syn.wordRanges.map((wordRange: Token) => wordRange.text)?.join(',') === + tokenRanges.map((tokenRange: Token) => tokenRange.text)?.join(',') + ) + ) { originalSyntaxSuggestions.push({ syntaxContextType, wordRanges: tokenRanges, diff --git a/src/parser/mysql/index.ts b/src/parser/mysql/index.ts index 8a78a755..af1fc828 100644 --- a/src/parser/mysql/index.ts +++ b/src/parser/mysql/index.ts @@ -127,7 +127,15 @@ export class MySQL extends BasicSQL { break; } - if (syntaxContextType) { + if ( + syntaxContextType && + !originalSyntaxSuggestions.some( + (syn) => + syn.syntaxContextType === syntaxContextType && + syn.wordRanges.map((wordRange: Token) => wordRange.text)?.join(',') === + tokenRanges.map((tokenRange: Token) => tokenRange.text)?.join(',') + ) + ) { originalSyntaxSuggestions.push({ syntaxContextType, wordRanges: tokenRanges, diff --git a/src/parser/postgresql/index.ts b/src/parser/postgresql/index.ts index b8c85522..02944e39 100644 --- a/src/parser/postgresql/index.ts +++ b/src/parser/postgresql/index.ts @@ -168,7 +168,15 @@ export class PostgreSQL extends BasicSQL + syn.syntaxContextType === syntaxContextType && + syn.wordRanges.map((wordRange: Token) => wordRange.text)?.join(',') === + tokenRanges.map((tokenRange: Token) => tokenRange.text)?.join(',') + ) + ) { originalSyntaxSuggestions.push({ syntaxContextType, wordRanges: tokenRanges, diff --git a/src/parser/spark/index.ts b/src/parser/spark/index.ts index 3f8e5f39..22c62124 100644 --- a/src/parser/spark/index.ts +++ b/src/parser/spark/index.ts @@ -149,7 +149,15 @@ export class SparkSQL extends BasicSQL + syn.syntaxContextType === syntaxContextType && + syn.wordRanges.map((wordRange: Token) => wordRange.text)?.join(',') === + tokenRanges.map((tokenRange: Token) => tokenRange.text)?.join(',') + ) + ) { originalSyntaxSuggestions.push({ syntaxContextType, wordRanges: tokenRanges, diff --git a/src/parser/trino/index.ts b/src/parser/trino/index.ts index b8c9e491..1c86ca8d 100644 --- a/src/parser/trino/index.ts +++ b/src/parser/trino/index.ts @@ -151,7 +151,15 @@ export class TrinoSQL extends BasicSQL + syn.syntaxContextType === syntaxContextType && + syn.wordRanges.map((wordRange: Token) => wordRange.text)?.join(',') === + tokenRanges.map((tokenRange: Token) => tokenRange.text)?.join(',') + ) + ) { originalSyntaxSuggestions.push({ syntaxContextType, wordRanges: tokenRanges, From ed56dafa20ba043e25ed1c11bcf4bec53d097cb3 Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Tue, 18 Nov 2025 17:41:23 +0800 Subject: [PATCH 12/15] chore(release): 4.4.0-beta.0 --- CHANGELOG.md | 15 +++++++++++++++ package.json | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a85ac5..1953f4ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [4.4.0-beta.0](https://github.com/DTStack/dt-sql-parser/compare/v4.3.1...v4.4.0-beta.0) (2025-11-18) + + +### Features + +* mark as entityCollecting in getAllEntities context to allow empty column ([ba6fbbb](https://github.com/DTStack/dt-sql-parser/commit/ba6fbbbe90bee79a7bba22350c3d50d6c9205b0d)) +* remove noReserved keywords in completions ([cf1957e](https://github.com/DTStack/dt-sql-parser/commit/cf1957e66896fbcb587f6038242e8f174b7045ff)) + + +### Bug Fixes + +* [#438](https://github.com/DTStack/dt-sql-parser/issues/438) syntaxContextType not duplicate ([4705620](https://github.com/DTStack/dt-sql-parser/commit/47056209150ef6aaade7c612700b7a289c279208)) +* **flink:** [#442](https://github.com/DTStack/dt-sql-parser/issues/442) fix flink's insert values() can't support function problem ([98ab7d4](https://github.com/DTStack/dt-sql-parser/commit/98ab7d459b189b7ef07cc1bf820524594a0cc78c)) +* **postgresql:** [#432](https://github.com/DTStack/dt-sql-parser/issues/432) remove error rule ([3684ae7](https://github.com/DTStack/dt-sql-parser/commit/3684ae71e92cefe4bac18174b757e162d3f89457)) + ### [4.3.1](https://github.com/DTStack/dt-sql-parser/compare/v4.3.0...v4.3.1) (2025-06-05) diff --git a/package.json b/package.json index 1d202d11..fbab86bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dt-sql-parser", - "version": "4.3.1", + "version": "4.4.0-beta.0", "authors": "DTStack Corporation", "description": "SQL Parsers for BigData, built with antlr4", "keywords": [ From 821957c33f6ee69b97c3966e3ae9709f425bea93 Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Wed, 26 Nov 2025 10:29:35 +0800 Subject: [PATCH 13/15] chore(release): 4.4.0 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1953f4ae..9271446d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [4.4.0](https://github.com/DTStack/dt-sql-parser/compare/v4.4.0-beta.0...v4.4.0) (2025-11-26) + ## [4.4.0-beta.0](https://github.com/DTStack/dt-sql-parser/compare/v4.3.1...v4.4.0-beta.0) (2025-11-18) diff --git a/package.json b/package.json index fbab86bd..3ea2ef06 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dt-sql-parser", - "version": "4.4.0-beta.0", + "version": "4.4.0", "authors": "DTStack Corporation", "description": "SQL Parsers for BigData, built with antlr4", "keywords": [ From c8c64c02ab4d995e9c03a5cc9025e5fb0369f647 Mon Sep 17 00:00:00 2001 From: JackWang032 <64318393+JackWang032@users.noreply.github.com> Date: Tue, 16 Dec 2025 18:58:22 +0800 Subject: [PATCH 14/15] feat: support query result and derived table entity collecting (#434) * feat: support queryResult and derived table entities collecting * feat: support query result and derived table entity collecting * test: enhance hive and spark entity collect test case * fix: remove _ctx and add tokenIndex into position * fix: rename declareType COMMON to LITERAL * fix: optimize entity collector and update grammar * test: add derived table and query result entities test case * fix: remove isCaretInDerivedTableStmt and set default isAccessible to null * fix: update _caretStmt docs * test: add isAccessible test case * fix: skip _caretStmt ts check * docs: update README to include additional entity information * test: fix create view test case * fix: import from error sql module * test: update entity collection tests * fix: remove unused type --- README-zh_CN.md | 175 +- README.md | 143 +- docs/images/relation.png | Bin 0 -> 670106 bytes src/grammar/flink/FlinkSqlParser.g4 | 54 +- src/grammar/hive/HiveSqlParser.g4 | 38 +- src/grammar/impala/ImpalaSqlParser.g4 | 74 +- src/grammar/mysql/MySqlParser.g4 | 37 +- src/grammar/postgresql/PostgreSqlParser.g4 | 28 +- src/grammar/spark/SparkSqlParser.g4 | 48 +- src/grammar/trino/TrinoSql.g4 | 42 +- src/lib/flink/FlinkSqlParser.interp | 11 +- src/lib/flink/FlinkSqlParser.ts | 6346 ++--- src/lib/flink/FlinkSqlParserListener.ts | 99 + src/lib/flink/FlinkSqlParserVisitor.ts | 63 + src/lib/hive/HiveSqlParser.interp | 7 +- src/lib/hive/HiveSqlParser.ts | 11462 ++++----- src/lib/hive/HiveSqlParserListener.ts | 55 + src/lib/hive/HiveSqlParserVisitor.ts | 35 + src/lib/impala/ImpalaSqlParser.interp | 9 +- src/lib/impala/ImpalaSqlParser.ts | 7127 +++--- src/lib/impala/ImpalaSqlParserListener.ts | 90 +- src/lib/impala/ImpalaSqlParserVisitor.ts | 56 +- src/lib/mysql/MySqlParser.interp | 7 +- src/lib/mysql/MySqlParser.ts | 20265 +++++++-------- src/lib/mysql/MySqlParserListener.ts | 81 +- src/lib/mysql/MySqlParserVisitor.ts | 47 +- src/lib/postgresql/PostgreSqlParser.interp | 6 +- src/lib/postgresql/PostgreSqlParser.ts | 20390 ++++++++-------- .../postgresql/PostgreSqlParserListener.ts | 58 +- src/lib/postgresql/PostgreSqlParserVisitor.ts | 36 +- src/lib/spark/SparkSqlParser.interp | 10 +- src/lib/spark/SparkSqlParser.ts | 9620 ++++---- src/lib/spark/SparkSqlParserListener.ts | 152 +- src/lib/spark/SparkSqlParserVisitor.ts | 95 +- src/lib/trino/TrinoSql.interp | 8 +- src/lib/trino/TrinoSqlListener.ts | 127 +- src/lib/trino/TrinoSqlParser.ts | 9582 ++++---- src/lib/trino/TrinoSqlVisitor.ts | 76 +- src/parser/common/basicSQL.ts | 2 + src/parser/common/entityCollector.ts | 413 +- src/parser/common/textAndWord.ts | 12 +- src/parser/common/types.ts | 2 + src/parser/flink/flinkEntityCollector.ts | 140 +- src/parser/hive/hiveEntityCollector.ts | 140 +- src/parser/impala/impalaEntityCollector.ts | 119 +- src/parser/impala/index.ts | 3 +- src/parser/mysql/mysqlEntityCollector.ts | 103 +- .../postgresql/postgreEntityCollector.ts | 158 +- src/parser/spark/sparkEntityCollector.ts | 151 +- src/parser/trino/trinoEntityCollector.ts | 96 +- .../contextCollect/entityCollector.test.ts | 407 +- .../flink/contextCollect/fixtures/common.sql | 14 +- .../suggestion/suggestionWithEntity.test.ts | 103 +- .../contextCollect/entityCollector.test.ts | 961 +- .../hive/contextCollect/fixtures/common.sql | 12 +- .../suggestion/suggestionWithEntity.test.ts | 95 +- .../contextCollect/entityCollector.test.ts | 708 +- .../impala/contextCollect/fixtures/common.sql | 10 + .../suggestion/suggestionWithEntity.test.ts | 86 +- .../contextCollect/entityCollector.test.ts | 617 +- .../mysql/contextCollect/fixtures/common.sql | 10 + .../suggestion/suggestionWithEntity.test.ts | 62 +- .../mysql/suggestion/syntaxSuggestion.test.ts | 2 +- .../contextCollect/entityCollector.test.ts | 707 +- .../contextCollect/fixtures/common.sql | 10 + .../suggestion/suggestionWithEntity.test.ts | 69 +- .../suggestion/syntaxSuggestion.test.ts | 2 +- .../contextCollect/entityCollector.test.ts | 357 +- .../spark/contextCollect/fixtures/common.sql | 12 +- .../suggestion/suggestionWithEntity.test.ts | 60 +- .../contextCollect/entityCollector.test.ts | 269 +- .../trino/contextCollect/fixtures/common.sql | 10 + .../suggestion/suggestionWithEntity.test.ts | 56 +- 73 files changed, 49898 insertions(+), 42639 deletions(-) create mode 100644 docs/images/relation.png diff --git a/README-zh_CN.md b/README-zh_CN.md index 8ec50147..da261dfe 100644 --- a/README-zh_CN.md +++ b/README-zh_CN.md @@ -330,6 +330,8 @@ console.log(sqlSlices) { entityContextType: 'table', text: 'tb', + declareType: 0, + isAccessible: true, position: { line: 1, startIndex: 14, @@ -346,16 +348,181 @@ console.log(sqlSlices) }, relatedEntities: null, columns: null, - isAlias: false, - origin: null, - alias: null - } + _alias: null, + _comment: null + }, + { + entityContextType: 'queryResult', + text: '*', + declareType: undefined, + isAccessible: null, + position: { + line: 1, + startIndex: 7, + endIndex: 7, + startColumn: 8, + endColumn: 9 + }, + belongStmt: { + stmtContextType: 'selectStmt', + position: [Object], + rootStmt: [Object], + parentStmt: [Object], + isContainCaret: true + }, + relatedEntities: [ + // relate to table entity + ], + columns: [ + // relate to `*` column entity + ], + _alias: null, + _comment: null, + }, ] */ ``` 行列号信息不是必传的,如果传了行列号信息,那么收集到的实体中,如果实体位于对应行列号所在的语句下,那么实体的所属的语句对象上会带有 `isContainCaret` 标识,这在与自动补全功能结合时,可以帮助你快速筛选出需要的实体信息。 +在子查询嵌套的情况下,`isContainCaret` 可能不足以筛选出需要的实体,例如对于SQL: `SELECT id FROM t1 LEFT JOIN (SELECT id, name FROM t2) AS t3 ON t1.id = t3.id`, 当我们光标处在内部查询`t3`派生表内时, 期望提供`t2`表下的字段补全, 但由于`t1`与`t2`的`isContainCaret`都为`true`, 无法更细节的区分出可用的表实体。 + +所以, 针对`entityContextType`为`table`的实体类型, 收集到的实体上会带有`isAccessible`标识, 用于表示该实体是否可访问。`isAccessible`内部利用作用域深度来判断, 当实体的语句作用域深度与光标所在语句的作用域深度相同且`isContainCaret`为`true`时, 则认为该实体可访问(当然这种判断方法并非绝对,但能排除大多数无关实体)。 + +#### 实体额外信息说明 + +**别名(Alias)信息** + +当实体具有别名时,会在实体对象中包含 `_alias` 字段: +- `_alias`: 别名的详细信息,包含文本内容和位置信息 + +```typescript +// 示例:SELECT u.name FROM users AS u +{ + entityContextType: 'table', + text: 'users', + _alias: { // 表的别名信息 + text: 'u', + startIndex: 29, + endIndex: 29, + startColumn: 30, + endColumn: 31, + line: 1 + } +} + +// 示例:SELECT name AS username FROM users +{ + entityContextType: 'column', + text: 'name', + _alias: { // 列的别名信息 + text: 'username', + startIndex: 15, + endIndex: 22, + startColumn: 16, + endColumn: 24, + line: 1 + } +} +``` + +**声明类型(DeclareType)** + +`declareType` 字段用于标识实体的声明方式,不同类型的实体有不同的声明类型: + +**表实体的声明类型(TableDeclareType):** +- `LITERAL`:字面量表名,如 `SELECT * FROM users` +- `EXPRESSION`:表达式定义的表,如子查询 `SELECT * FROM (SELECT * FROM users) AS t` + +**列实体的声明类型(ColumnDeclareType):** +- `LITERAL`:字面量列名,如 `SELECT id, name FROM users` +- `ALL`:通配符语法,如 `SELECT users.* FROM users` +- `EXPRESSION`:复杂表达式,如子查询、CASE语句、函数调用等 + +```typescript +// 示例:不同 declareType 的示例 +// 1. 字面量列 +{ + entityContextType: 'column', + text: 'name', + declareType: ColumnDeclareType.LITERAL, +} + +// 2. 通配符列 +{ + entityContextType: 'column', + text: 'users.*', + declareType: ColumnDeclareType.ALL, +} + +// 3. 表达式列 +{ + entityContextType: 'column', + text: 'CASE WHEN age > 18 THEN "adult" ELSE "minor" END', + declareType: ColumnDeclareType.EXPRESSION, +} +``` + + +**其他元信息字段** + +**注释信息(Comment)** +- `_comment`:实体的注释信息,主要用于 CREATE 语句中的列注释或表注释 + +```typescript +// 示例:CREATE TABLE users (id INT COMMENT 'USERID', name VARCHAR(50) COMMENT 'USERNAME') +{ + entityContextType: 'column', + text: 'id', + _comment: { + text: "'USERID'", + startIndex: 35, + endIndex: 42, + startColumn: 36, + endColumn: 44, + line: 1 + }, + _colType: { + text: 'INT', + startIndex: 23, + endIndex: 42, + startColumn: 24, + endColumn: 44, + line: 1 + } +} +``` + +**列类型信息(Column Type)** +- `_colType`:列的数据类型信息,仅用于建表语句中的列实体,包含类型名称和位置信息 + +```typescript +// 示例:CREATE TABLE users (name VARCHAR(50) NOT NULL) +{ + entityContextType: 'columnCreate', + text: 'name', + _colType: { + text: 'VARCHAR(50)', + startIndex: 25, + endIndex: 35, + startColumn: 26, + endColumn: 37, + line: 1 + } +} +``` + +**关联信息字段** +- `relatedEntities`:与当前实体相关的其他实体列表,例如查询结果实体关联的表实体 +- `columns`:包含的字段列表 + +一个简单的实体关联实例: + +```sql +CREATE TABLE tb1 AS SELECT id FROM tb2; +``` + +![relation-image](./docs/images/relation.png) ### 获取语义上下文信息 调用 SQL 实例上的 `getSemanticContextAtCaretPosition` 方法,传入 sql 文本和指定位置的行列号, 例如: diff --git a/README.md b/README.md index 30a472b1..9e1c30da 100644 --- a/README.md +++ b/README.md @@ -347,9 +347,8 @@ Call the `getAllEntities` method on the SQL instance, and pass in the sql text a }, relatedEntities: null, columns: null, - isAlias: false, - origin: null, - alias: null + _alias: null, + _comment: null } ] */ @@ -357,6 +356,144 @@ Call the `getAllEntities` method on the SQL instance, and pass in the sql text a Position is not required, if the position is passed, then in the collected entities, if the entity is located under the statement where the corresponding position is located, then the statement object to which the entity belongs will be marked with `isContainCaret`, which can help you quickly filter out the required entities when combined with the code completion function. +In nested subquery scenarios, `isContainCaret` may not be sufficient to filter out the required entities. For example, for SQL: `SELECT id FROM t1 LEFT JOIN (SELECT id, name FROM t2) AS t3 ON t1.id = t3.id`, when our cursor is inside the inner query `t3` derived table, we expect to provide field completion for the `t2` table, but since both `t1` and `t2` have `isContainCaret` as `true`, we cannot distinguish available table entities in more detail. + +Therefore, for entity types with `entityContextType` as `table`, collected entities will have an `isAccessible` flag to indicate whether the entity is accessible. `isAccessible` uses scope depth internally to determine accessibility. When the entity's statement scope depth equals the cursor's statement scope depth and `isContainCaret` is `true`, the entity is considered accessible (though this determination method is not absolute, it can exclude most irrelevant entities). + +#### Additional Entity Information + +**Alias Information** + +When an entity has an alias, the entity object will contain the `_alias` field: +- `_alias`: Detailed alias information, including text content and position information + +```typescript +// Example: SELECT u.name FROM users AS u +{ + entityContextType: 'table', + text: 'users', + _alias: { // Table alias information + text: 'u', + startIndex: 29, + endIndex: 29, + startColumn: 30, + endColumn: 31, + line: 1 + } +} + +// Example: SELECT name AS username FROM users +{ + entityContextType: 'column', + text: 'name', + _alias: { // Column alias information + text: 'username', + startIndex: 15, + endIndex: 22, + startColumn: 16, + endColumn: 24, + line: 1 + } +} +``` + +**Declaration Type (DeclareType)** + +The `declareType` field identifies how an entity is declared, with different entity types having different declaration types: + +**Table Entity Declaration Types (TableDeclareType):** +- `LITERAL`: Literal table name, e.g., `SELECT * FROM users` +- `EXPRESSION`: Table defined by expression, e.g., subquery `SELECT * FROM (SELECT * FROM users) AS t` + +**Column Entity Declaration Types (ColumnDeclareType):** +- `LITERAL`: Literal column name, e.g., `SELECT id, name FROM users` +- `ALL`: Wildcard syntax, e.g., `SELECT users.* FROM users` +- `EXPRESSION`: Complex expressions like subqueries, CASE statements, function calls, etc. + +```typescript +// Examples of different declareType values +// 1. Literal column +{ + entityContextType: 'column', + text: 'name', + declareType: ColumnDeclareType.LITERAL, +} + +// 2. Wildcard column +{ + entityContextType: 'column', + text: 'users.*', + declareType: ColumnDeclareType.ALL, +} + +// 3. Expression column +{ + entityContextType: 'column', + text: 'CASE WHEN age > 18 THEN "adult" ELSE "minor" END', + declareType: ColumnDeclareType.EXPRESSION, +} +``` + +**Other Metadata Fields** + +**Comment Information** +- `_comment`: Entity comment information, mainly used for column or table comments in CREATE statements + +```typescript +// Example: CREATE TABLE users (id INT COMMENT 'USERID', name VARCHAR(50) COMMENT 'USERNAME') +{ + entityContextType: 'column', + text: 'id', + _comment: { + text: "'USERID'", + startIndex: 35, + endIndex: 42, + startColumn: 36, + endColumn: 44, + line: 1 + }, + _colType: { + text: 'INT', + startIndex: 23, + endIndex: 42, + startColumn: 24, + endColumn: 44, + line: 1 + } +} +``` + +**Column Type Information** +- `_colType`: Column data type information, only used for column entities in CREATE TABLE statements, includes type name and position information + +```typescript +// Example: CREATE TABLE users (name VARCHAR(50) NOT NULL) +{ + entityContextType: 'columnCreate', + text: 'name', + _colType: { + text: 'VARCHAR(50)', + startIndex: 25, + endIndex: 35, + startColumn: 26, + endColumn: 37, + line: 1 + } +} +``` + +**Relationship Fields** +- `relatedEntities`: List of other entities related to the current entity, e.g., query result entities related to table entities +- `columns`: List of contained columns + +A simple entity relationship example: + +```sql +CREATE TABLE tb1 AS SELECT id FROM tb2; +``` + +![relation-image](./docs/images/relation.png) + ### Get semantic context information Call the `getSemanticContextAtCaretPosition` method on the SQL instance, passing in the sql text and the line and column numbers at the specified position, for example: diff --git a/docs/images/relation.png b/docs/images/relation.png new file mode 100644 index 0000000000000000000000000000000000000000..e5e2de46715c35e57bb95a9e2f119d99f27d0e53 GIT binary patch literal 670106 zcmb5V3p~^B`#-L{OT7z~3OQA3lERepQ0Yx#R;gBKLJ?vyhs|LsMam(KoVSX|aVckW z$azl7Im0kxIosy6+4#NseE*;C=kWXfzMuXck3IIXy$<(%U)S}#p4aob7k9lCz=sro|S2f5c=#Ikpu%RdG? zC^1Vp6d&7m)Mx9~cU!kV67dLpV%rk_@=uY^y9q#C-5 zB_Y&29awcrSSZq?`73*y^p!BNv~8CA-rw3kgP!QRDneptcX;iEg1u;)yVDM%Xbd39y~ zo=-33lwKWU6`Yjs$4zpZJ~h&PyHY-31BUEkC2|?-&{p%JzDj;4 zsqyL7MWu^J4=czrNBUK^a$j%iJ-gvWKX2*dBQzxlx*Yd#aX;O5&vviT$`3Fzji2YY zqPI%3j3D&7laIlSn(W!lRld-A>ex9Di2#_T`GfeaeZt{e>i0P8={%@i6ZA+8B8w2* z^=TX^Z8|4AGPe`9)BTz0Gnr?;wW((G3j=%9nx6W8Qs^NN3KcjZHs_)6A%)e@=_}IC z^zAiU{GM~LEyVz>Cem3Cakm{yXCU%GspBkeP~;b z=3eC{X(b@%?^3>V%Z%>X?HK(0{_T&WvqHXN`r&tKl0N&_)J8dq-rD7RJzNAngsVEB zt!`sMFdDex{4<5d=oMpGOq`#vr-iwYw=s~gdk(HgSu5z-01 z_3rgVj*czn>b#rx+RBu$<6W_bcOe}$qUbF~dv;tnf9!>@+1;Z{h7$QG>4ZO>o?_nZ zhv5GdYUGFJ)N$G~$o}<3jZ#GVs zz(fXK0AH8uJs){R#rs%`iS7fbLt&QZ&U{yXu%%q+&day&<9@0ZiW!6>E+F5{{oGY3 zBAjrjvEBkK5)tWHaOsq^dDFcg4|And8cr5i=k7IRy4}+6dmdCDt|RO`CiZAs*eI)1 zi13us7(Y6JK7a@#G!n!eLTYs`Y_~u8{>7EcKP+`F>Ijc~6sy%g z8q<8tT4H#tBH?1&(T>BaM?4PCAHg3k-m4%HaOv0^Lo%KLeR+&!hDkr#rPrm}<=J)P zn#h#!?Z}50d_f{HIPyNPBW1B9Twp|C96y4e_`$3o9ewSn@`V=f7L69I%Zd{kA4AxQ z*?$#f_*;#Cy4{26(QrMzyn9)GIWj3JDKRO`x-jXMd%krd6;Z@-74J37cFP&eLiJkp z9GEum_4`D)Qk}LDYLa%llmCER2%%oH)|}fvw`DG5yK&vskjx`J329f~U(NKqF@8Mt zLP02|4-e0^gd;885PJ7R|&XoTI z{j}`P`)-gu*ioNw(?b4CSXo3F0fXbZBy_5GsCRyDsB;awBe#M;mf{KcOT=5qXqspx zjCV?KPVi80fVa$B6@4VEAMzk1YrBkShm^Nyzx2GOtvU(4wlP*M{UOvh6dZbHcgdk* zsTC<{nQby=k$uvs8q*q1ht{Q?rHNXGPD3uW>MZcy}-7{<#O zrU@41<hrWirj@?MsDnCi9Xkc6jNDoOj-R2OMBCXr7gc5McvNWE zHkGS-yZZ{JC+9(^9G@BQl1DHfy9Mm4yt*g{HG9J9Vf0!+8|wjk?dQ~FBC~9SqoyW8 zd`L`1P?~N;{#7~I_?zwj`cJFnG9=X{=5XH5NJB}PX zb?>j{)A+rxnw&|Wu=22uKMmwEC^gJS1W7U#N>0stkf5ZaRk}~`uisor zT{HwA_Pp<~UK%s*6j>2_@AWZD*Gr(|O2?3}d1(b5Z2MZ&{{GkxvB?s-N*2kF>_2>~ zPYE|w>QrJW$z3|04$7Ff5Y$F9;Ou}dw98C)`8L~c*57u$Cp;?pY{fWjt?d7HKDA0i zfC=?$%#P@=7-{QjQw76qRk3jg-V`a%1o_@uiJGOQ)TbDfF@}1E>h`&t6*HFZjgz}U zC1!IU|LR&%##{ASOuc%B)iv#>pSW0eAM3Wx z7=+qE1h>y$`KESeQTnNL`x&TnM>6-(LFc}=1I@FA1MR3b=Bb2kur}JG7cxzn#Z({E zJCJ`WP~XTCJH9n-8%h$gp}dxvbTsnl?asXCh+W#JYbC=ai&W(+(Zh6PLoNN)am(W$ zkK4W7@z$1)>7m>=T2+PGQOn!h2O1~pC*DkG!`JdZS!We}xjQj_!x7$_=ai?45csyI zYf4_eb6Gp@WB!d?cePz=ZnvBZJhDB_)3#vvLZvPYqulN~&I-Dt_k9#M*COs~o-?Kwcs0AJeDiIAmMGE8y^jvqNRM z+w-pWc+X!R@VW0-GaqUlMm-&n5O8_rY30kx;92uwKUDCKjY;8I;UbaK;`v7PI@fK( zdZ5Iad`d17dCB#GzN~*~S!WLG``#u+{UnRzlTp+1cYGuKAAT#Kjc;oTu)GBGPHofS zmSV1PhONde?-}6A2V=>shDW8Whz?>eX4$P2d;yo@7J*bcl=B(t!+RT+aFCmPO%Q({| z{1L;E)PU$m#I>qPL6=CV_{rcBK@hCMX1z0Pi@1$^gJJplt;Mwl2`)}eZWq1_|JLvf z=B8kXi?MRP!i+O&-0Wms;L%a=PJ(rCey|INJ!*#yF7l3^nMWTF=w0_G%LugfY2_sM z`S5AXqU!1}bG1QX$>@5}yqxK6;k;G zgKatda{IXyk#nZe^0~s!WmTxmFMGxY?xO1Z3y01wB418h@Ipq6ZQfn?*czFMonG+N$bP_n;A@s+VLqgktqbK$-COGeq>>3IF|AxCS^wD7V_H9(ddN=+bSJkkG;7zg}C+ zt{qzx5;`YjcJcgm^p@GmZ^Zkz{U?^coXi<4{poV+q9<1A~X;CqeE4`z!_}q>jsL6MUbgh#E@?&qzx9-&4HIRMs%O%=E zm2INRP3(G#g!X*E-h~G0wZ_T-!gAhnklO-^Hq0cgvr}_sR^o%X@zuNz?Gb?*t&GPv zB9;3y;Zkln!ancBdYWM zLpU3j|A)~uxb%LJY zs&B4$69lsq9@BNCaLUE-_a~Jrx5jVk7uO5M3g$YBe`_87>)AB|&rz9GrCulN-&nf8 z54Y6wow#1bzTcl;sh`-=d1htu7m)4mKSsgZSM={s{0}w-PJ6T<`!l2?K>I$l^!H6? z_;dEqf4=qKy=s)E`&}e;)uScp(SLHXe~dfm`+(-(Z}6Xew5AdTEbYQ@tmfG78tz1q8#azQPqf_0{_>7)-!3|j<((R%=oypB1${`hl zMl}If)Y9utQ5-F&9;~n-9Y^`D|7cl?VNqQ_r1*ys{nMb8g|9XSwGWpEEluE2^@-`lLOa0kQkqYf$3}@hId` zf=o%dbhGV4gP+t2=}+8_qGHWW8|@#X1OAu36nP-DqGVliI8Pl*JVV@Pjx4^V-5l!E zB^@x0tk0*q-^rZ6CZ2aA(q`Gc!SkVt@5d6!Cf2WE&@4r6_DANqiCX5-b&3zHe;@By z-fnl35Wb4V=VL<&GNz(TtjR!^?L;^&rgZA-NEuym+yEvqU@^Q*=ON^4hx92%L!BYvmtx15c`I6UIaj`kycl z%2_{x>AXuzKkO8Bn%;-giPLTRA&pu#Y+;7vp;?%>LItH*fA_-H%IPVfe3y+{3 z$2W#Xx`tj3@*)TF4w09K#QoSu?Mk$cY@DCDPp`3@fy&w_By~he_}Trx5wTcKXLX~s z%<~?upj-_jvzqaJU$9<5W{J;;#|(ZlXQ*TxO9-yJql*;m+er3R^IqPz%@q?T!T_Fx zbW|TvFfZQwLLbi&-uc31;fFKthx+Ou z{1mK}d9`j4Z%&(Dj4dV76T0%se(=tDddMa*^OGY6c}JdF{!hU2PbfKhM7PGED{uV+ zM!eUpIQ6*K$r85i?D~SwQULlJlPJ*BADmWzgru0A9h+E^_(ed&8c@cP^7NY`*g+c zmsIs=wF`@fmTY8???)*#%JV}kPhZ~rbEB{1;6h!xX4Bt2{eOAJ-xBcWiO2H$X5KIK z8PiVVwYfh+u-~&X2mCJ!_9!hv5w`7lzei0*+x^Z3f59wEULEQAlNMwp5ztFoiuIpC zUZ~DC8UKGf(7)!L8skU5;4pt}!BB9&M??_W5%&3$wekOuDE`Tw|KJg&yF}KUl*IL2 zR>z(=1B9U=`;*CUU#lec^9eI~<1^>m#uPQ+i)E72?_P>dll{J#!vWIL$S0CUV!&pk zCH{mXJIxeX-02dy{+}%H52}^2P@~-;9wdn2QDC*q>B>zY9_b6U$Xiy}TLNL-7 zP_A$XYXn-%JF1DUzvXMc7O;Pzrc%&dG_pAwG9!`_oxi00)UGEFeGi9m|vwlhc)~e$m={1{H6Fe9q-o&D^R0T zrmzLeho(~q!=H>J&YSnv6OJAU4&>$JAX`fG7Unk7I8Ra6vVS*(u84@~ zEDFR8b>3qa#-qjGAtk-ksyi_iZ(}QeFL-{owT7BPSm`<@GI_9e`OMA2k+&64jivyzqUJ#;r z7A|_p3Vnd%8Rl{yYW~Z^#Cx{LU-6QlAo&bvM5T;4VS^6n5bKk6)h(s#4${k6p?N9Q z>m}6z%X7%Ub@OJ}Mm2%-eUn`yiTu&FIkmZ-2_ND1`Bg!drkn|g%GLP*yA=%1(MrL# z5u6d)Q8L0^*(Jram%x|pS;tX~Dx=m<60*cQz)O|i)@clVoH~1VlVoW`$(!n?VA-`r-&=Gm4Z`AUB9eKd^R*N+eVpO9d14>#=8HT0W4U{%D z=I8^c&9a4T_pM2P>A+;>J5wB*a1+&IVmu8Ecl2CAW$`%M4MQ#6?W!*__ z__JOW@L6@9JF-1hUAJT@n9Y494g>9GZM;TDOG4a6kS8a3&lCrrjXn8TV!N8SOZIHP zkZN)m`@NnfEn8|dzk;tlLmB<^Ddsbk~$S zh+D36lwcn6=&E^Ml8GsJ?z@Hu}~hMtT5%@_i+B6~e-b4J`u z(4!Ih&3uToC?mV^c>vipWzqr#X>U&c=nz5$|M=0fa#GKMFH2M2p5GP* zE?Unpn8>kS(z6F4yW$Pn>Q$hXmI($3hgEe`%ow}8W9)g|;8pkj;~PgF5Nx`|Hyhwa z>qF+16t|lz&pG{rwL=GqUcqq$WBT`*CDc?3pAvpmY$FLW;Fn9=g%f`qm^V>o{4fd{ z^r*vlL9KIvRF8&X~Gd=AZtKUlq<+#f90fGzkVBKW4MK8L(9 zjdEw##u36K#;Fnud*|xE`yto~h7@NH|108ntp@dZPt!uB2$Y47LML7wv0AS`@kVow z^^~CQcU6LFB^uv1X%msMxw)jUiBpmHugVjLlm)ZCtycLhn+EfhZf#Pjm6-2bs%-YZ zahg&^ksqg6gRjqOnFpFLlmyS@g#G#O#{+8meS)K|@BE|>RhHJ5@xx8;&BC)pt*#Cg zBqNmH=6W=c1|VP(TtZ^zyn_t&KuC$CQcyn zGKmVL`0pKj5Y1ptJ1;|dBz_r{tz4=1)YGUaI#@;lU8M}@nhk{f`vt}S#-qcg9|ym} zjTABmllf+rTBWWJ(;t)%;DVwie#D3#l1f5j#9=Gat1=!&<&FIIYW9Lgpldz4N`+?7 zwwFfw7RSvm%uEW5xIiLkdh%uGvOuLnl<@w_qmtH>OhKAY-MR+V6ho$9!a4jX-jolF z8c`NSVigz|ku||&eU~&JOQ`%AR>sP82`Od_A;4!{&Af)CLJ&j}SrA^I<0)NDbnwLV zUv04?ej|eEL3vr2(b&Lvs(Od{g}Yxon3eaSFf51M-*?kBAoxa!W3v&Zj0|hCAW5VC zIO77t`d67^5|bl1MG1g6$C|U{zolzS17Cnm3xn`AnSDJlnj%%gX<_K_WT(DeYU@&T z%0d9ChmjEO*Rpz_sHkGJ+OZ1nG{J3e@)qT2Mu`{NGQ-K58my;Rjgu!KR?xe)G7(L$ z37n^dLW4$F>-NHXnncCDLnWcGQ7 zmqFlz96N5J8(5H17~R8=YPXvFnwiRhs*;o4?zOBwfZ{3g3uT&6ZskKL(-r1MEz-sN zFl8^WhNsF@PqD6Ky-vne~)SOmxGn?UG)g%pJM zgKtZKJM_8a1e668M?h#VD7iCJfr%D&ncx~(X8M&|XSlhA-?E^jj)H75*i^8DxnNY( z9hOF2^fx4%WAhDuIYxIGmIr|XA8p`PV(t3Q_RayOOi#sXz{%s>H-qVO31&ddyF}ir zG8I6sS@CpxQw@)W1_I7uP?AAbDYbR0EnV45jJg}uaewmdf30grDqx2l)DF+Wj3pGz zhE(QpO$MQmjJA>?rmR9aXWVLcQR1umFB(`4&$sH%;1W>i=(RFn8idoMYn1Rd>qf1E^Y#D6;P&Hh^k1YzSk3Ss7}hwkkza-5RQn zY!YB}pR+JS6IGnncwsN({_b1M)M;NMIENvN({jv8MZ~l|v$vfq=BKc6Afnaq%dsa) zBh&YSDQag*hX1C!`yt?2|ICcuiIGMhZ-&drKbqb&TS(T@N`Nr<@anZq#^>-43*v{4 z2I^D8|@>_@m?9D!p=)e~E|JP7Vu z34FmZOsFi<&I|Cmls8*F+a7lVnuv5==>5Y`(3W79T#!5UqPWR|s=L{>QrZSXO(o>+ zj8KpyuKPXnt6e*UNldcU=cEzb?q!pU>^_24O{hH|v|IuJ(_fbe%=d{RSXr>;JMpf1 z^h{>7r7Mi9tF~sgesQV6h{@As&AT{PnHH_0CnBfyT6P&4tQ2iu*z3+rD3nG;u$RGJ z16>G~e}sC+tGABVk`r81$)B}@h}$y zqF0BKY-OTQu6m~Wj_IjBPK3aqht>pBS9V#-qzn5SM%U2gOuiONW0KoVN$QfZuWy}6 zpVLg8Q5x#NaX031BbB_cO@>0MyziG0WQEMHW{5{%{^fsFa?szl1UHkB*lcbFR7OkQ z%k@lyaC;!Su`acG**w^Mf2PRIs3&1s?otPiMR-fC+WrhVBFVHLa;#ynTyRrT4$W{! zD^&oIwK8-;ViWokOmNp$Q!67NYF#9lG69pvDq9X|fG|@`(YpE*%(i&X$h~LUpD+W& z)DD@Vl_I=C9N8&>LnzFIqXdz-o&{>OwUJ`}rLxY*0y}`_42;4h!uo-*u$%nSWhu5+ z*};e*jP`)$a+PNgy|L7Rk@4e3$e-U+oIj=_&=!57rhR{a9KX}Xp>6fMOy-JRp9Xi~ zU0cA!tEktG(rNzaJH2Nc)}%aXu(@6c#zV!u=@`+=(!DQ}ev>MH#-+MN&kKf9?ev;M zxjr?*oEgc=fOpcece(@32Te@s1DKRTva8n}oqagX&df636*8rNM-xulEeS1=R$iIW z2BSXc(lK;lY97q(_r4gQ=5zzMd6d@L!|;J=#zZHfD?w~eF<`3o0TJr-JKQN*tKkTD zR&B5cl)MW*iIXC1#`$_ZHkWT|Mk(l*c=RXoFSde{GUGe(XlYbbd=_~;qiiWqEvudM z>02_82Um`}v3<_=K6|_F6}9rR-)$eL=u0%rPz!_8{7C2-rCLF)hC9sV7ulPSCyAN{ zLA=fz3cmD~xsm|ZI~f+BCbm= zwV%|)qQH%z7E*i>3p0ZfqTpcI+qs(6VXDMyyW+z3%NAVESXpJJt?g2!<9w zo(#tsYOd9}M1kK@<&CSV1~LenNZ4Z3`)ayRo^t4|iPrU<<32E~Ja^^T5PlbTp7oRk za;NxZ>odKw$+}&rvr34@%FuAhh*CI7Pwb|qu9{<%8SzDO;V|VuqYne=dS5|RA&mgR z2Hvo0JhqSx@`Pb65pxsTy_H>|uZpwH%AV{c_M4@wYR1cJyR5U~J3C6vl5Jg75YdV1 zJ);R}n!}%H{0jOqU&%;`7&u&~Z@+>LPgXb7VwG#f9S0F3t%h;Mc6FoMaQFZZfM2(i zGM1A@+mp_!J?iwZlEG5MPgCrG)V0pcr)15W={JGgr>~eJT-gaIfdv9H&V?ozxT8~y zvDxwnT)YoqW=Dz}lyuitr81^i-ITP?1pL5)is^XL8dwR6avpy0QLI!p8U6ffRrnLr zNWM!H<^bR&F`Dlu^l&Q-rIhUO)kjLv>$(65AqQLx$W}&$^mB{{!P$dN8T=Jj>xqiY z)EQ2(>ro@h^C~xmL?v~#8D_o8oW#Jg5x{E$qKem2oqxrJlzNV4t(_aMX>+L>VlX>P zD2SUWS@l)nko zDdw2X2d>N-))w4#M7;6K0{HItRWR#;MG)(rogV3A=<4FhP(x2F?n%Lv(__c<;|Lwj zATIogUzd|D_tDTgiNdeXky6hx2tvi{MC;b-H@u6746GKJLUDwRIdT?=&QMEg>2LZn zUvEK;xL>uXuO_HpYEhdyC(V63%?@AFBwc ziaXIWDKlKsKoh`WrW&F@$zgP6!5UrJsroOQF{cEh1vmNbZ}7~()0m>K6Ab$@q3ZMs$y+kPQd+>w45 zg!!@{)c}>6tWh}YX1QMxpO@5px;n1H|J-ZHfGMRYGkJFuMw*zSJ@ZyO>b6T7%*vu~ zRJN9JYvuOpp|lLML7$BBPOr9fsI3D(#fHVJlVE{hE38YJENr$5EIBa6n5z4hI?qf` zCFPWtpy6Os*UJd6C2(maY?!RiovO0nLP-w-Y$r8b00;jLxi30E!6c!jC04IXSOa)O zH7sTx@RVrm7o-Q(1EmYo3rI#!TERrm?0}b^bLM@|-j-y|R|aMsaeLN1zJku0+OeJ1 z(^3_%Z9|r(=yuP#&a_Z2t<0MUG79%>iv`G#j|5J3bf~)CVumvmrjdV!HQ!s$0%|uJ zpx)u(45n0}5;4WEwq_g;BUwQMsEegqK}l|MW2x#&AJjGg3Y1=%l&Pp0E{y4o^#L_v z;NaU$4#nv`}?b1^jd`+^*1i{Z3r+jKb@V><|y#}P6H6GX!%saAf_nPyK){E&tn z%V~IE)fP0zxXm3E5BP?zqPHKCh8uPb)LKyMxsm)736}~&*Bh+_{`Lm|S;i|&99QU1 zELCHq`TJwicB&M1K4WLElc8nr9no(l zgYVg%1F#YVVKaQS8Io71DX!u!XV-hyC7`PQ{TyV;#l{C09TjrJf_-lUb0A)df@I?g zBA%!Ks2un($s7&v7IKa)L8VQe*dNpbi+&Oepia+O`!4;`p&Ug`fJu7xP5X64O2Jh5Ea^dail2|1CylIves;Sz zef%z5it-oMf2eT9HhEQ|5tI2h#~1Z;2$X|rg5QD{(a>(lai?q-r0S}xHFs1qM&z{H zA|DQkGBXOl-5Zovx-l?EV8W@1YAJXMBU8aB-Y=UhNCD`_+|tXT)yaKr=?2_UN0qsH zv=M-eTgNq_330_uP|n3X+CGlo=C_dw{|!EOIhZ2bw<_rk?7>ib;FR@mjm@{hTz5ySF-?1^&f$!;(_s3tUtU zoU)aP0XTRBbVeRplm+TPh>YTrpi*9z7WrvrgN_;HO2kipard5K0p%#kstTx4C5V)X zy>n!hMq5)Ug;v{|Pfk%#&EpGzG3SP?h96`@xuAusbCsHJNI+!-NZ|xmF97kEP+f*k zziAU}9K7V92@zWW_5>zZWGCNBa`ie*dL(Bb_^?5xtpz6M=dO@kSP7zMxIJ~eNsUT$ zeL5I)DS{VH-l)g*-v`9E>)n7TkwDJrL9|Qg6dAN#*QN&ez@(zb*3wg@*h^rxr$Q_N zNI}{0@In`|e!G>!7fLy`d!;Czx`f(z?n%p;{L<5h-7tO zr;?W-uOn<->7k|qai$2!F!7w;e`!adXJi+VsL9X>=st1E1L_IzWb!eGAB9}w)AC+i zV@kI%5gEkXh8!b9K|;)xNSc|Fe8yA1-6?08?-rzZqlIRYM6dS*aTTd#ozXXHq>;KB zV-7zXw6x~~v78L-cR;rI)!rNSzoLSVIIq(GOg($&TpIwr z$K_}tWW#a#gu#$RV-tW`k5wGIVAXqzy85gcI;REcpr&;3`q5102Pq0B+D~(Y{0b3u z-w2$Qic)uhX@0AK;~YT}ck z6A}G{mB83W@CorGX7Do-dJy(CoghTv8N1I23Bl>Mm;D9={=GJzp8>net)Nlo18Vo= z6nAwbjovWKk&=^KO`nrutx4%-7Ow&MJW=*;s?s`c#ruw>k&=AB?i&Rl^||70ZMfwJ z9T6n}>22Slxg#w>krZ{i9fywY@s5HsI(#~aJG0LNqnkF&7LA{N8^x1#Y-74K%p`<6 z6Eorn2+n1F&T(Y4BH?sfeQN?r_FFofao*g0^-o%gc_YLLV4F|-QI<457xN4*1!y=~ zR#Fbv^o`VD3E@Ef#E(^NiY2a_4s$W`xlPc16ZH<9pe=s{6xF_w6^C726N$X2;0e8F`$1hddyRyz7<@QyE89hOO7pCym6g=-y)b+ zG%{VE)mj2Hgh`qAbN^M-vP0EWwo7nO`KoRK~HT(p!?-KEHZbLrZnI>ibCf>8@9+WWyUJ}^U)x)G3 z4Wa_Sh&S4}IzxYc2UN81M0AiU95HAA#RJVwNiGyvuW4wyw@XkNDs3;}O{||gKtOWB zSHKr7eVi>iBs{}eNi|HaAs|g_qKB8{zP3n4&^1CGalVu0LkQ?2cYBa~z9t|@vX7TQ zU}G%IR-@igl5FNgg0~I`kh~^GiU8u#0q$+Tg@`Ag_f$djZzoW3;vKC4N$c+bW?YMI zV<@CV-;A{;OoY=y1R_W585pFPW1eXF7kLtMM=#N?uECe$}>=VQ! zJu?GpC(SGmiV|nrIO3bWeTw79xr8)ob{HQ{joJ%PcS2I&?hR$5Mi-SilpT;w z?(eME?`41)1x>r0fP{B!gppb}c6pQJ(K{;TAd8#11dcjFm|bv@7%x`=$hc$hrjcM> za8t=?m681uPA}X05EdRMr*OF%?)wP?8NcHrR{jeGUljLt@`{B zxq^MN=*t30MFCPxhS4D2>XnK^jf)FK}Ro8Qoo)LaYfdaTwiDiv8?J_XVd{(e6HkFH~fe(;Z1Qx(nVR zyCV8O(|zPA(dfyB>gPEr2ZTc>_3nBB5~>>JCh!tWKA$`S&WCycVpWc^Br6yFO}}xS z6xPIaq1#)?z9a`KQ6xh84o17OF-Z&Y3EE>MVr7j+gG?efS*3+mlK(eAMRqRg_P?v5nT+|*b&fD0|+!4H;P zrU#m?AC(W3W8Nt z#78(I$#Fnr+}bLl|5x=S_!{GSId4{Jp)d*(ddMmnObKR#96QKJ`tv4ES~c8iBQOd5 z?byOuHJb#WhFEoFZvpyc24Z-#LGTne2FNr3@d~V!?F6aLte`xsSL-bdff{qniwMG- zKOj!81bX3{8&Dx3li(1e}i;Mx;nQB#4d98)mR`zvf{1>{X;s_O-}Urx$&c3qMf z7nmi3o9+z{n1&Se&~lP>lHBH8LhS4r-0L_m5I&>I!NbI^?S8F=rt%7~r-ev+CKA%Z z+(%RhTnHdmW&kQ4XP;Ai+P^9J9wJqONM!Zr^W6Zub}#dE5^gjxOU{WP8){lQ4qaSH z{!-g4;l7lvC|`X$Mw=)*4yh`TAiBop^XQAB#L|7^GC}Iyk)Dk=LJCO~;S$EO6ip&i zY8i7wb~)x1Pr`&+I~u}lWwmXShpgx|qy_G00twx#Gr{XB0nT#5)~=CGNHULD%D(hO z(1?9_^ys3dqP!fO09QzMs6iV(3fQeVnhNad&;?PxWz8#6$-APxb%9LcxS>Rm1A^H+ zmg;psOz<}vup zyBR=&V&ei+BqInYD=5&|QvzW!6WYY1a>EOjw&mv@S-%TW#dNNW|1GxyCDj+uVuY?Z zYD#=n$z5GuIE*4ey6Yv!<%hgK9u2I@QfMF`ci)s^cAzXZYyL_mwIuyqrzp`i?9eNG z+ld@KT|8G~a`}6va_DMSUXm;hA`uFXe!oD?NysaQbKjJdmZ*CRFPADN7?nABG zS{<5|9KWOH$P`5?kYx>A^wpX&m#0YV7PrG5;$L|~d8NvBg^+5qfQdLX%Qst@Bf@m- z);tB4AOavHAzzg1G9iqnAV1Fe)TIVZv6H9~a*3?~Z_-BH?w!)y7edG$BZt8*70lKC z`jyXf(bISSHH}>o;crs19J?Epktd&wIYnzFJxu4z_;okB9t!E-eE86#_=SC1X1k>B zNu$Wl)npxDLL=%#T4yWS_D zC$CbiRPQnhTw(GJTw6=SwL?!NBiQj`M8ioyHwEZ%?9BeUAB8JYesi-{C4G>lE|Eyx zrdCE~3Ji;I(-r6P+NZu*s%xmI-FSMk{0U-7_r;_}4P+MJw!ywX-6NrPz*%Dc)H=ceck@ zYj8lsXir!-6 zqVF`}478?JibSy4WTW*^F%TJEi?PJLz)taN!GTcg-nMsiC z_}r=Hau|&aBf7L`6Zh7p{JBmigvT4xZ$|W=<(gSIki;o5MNH~XGqw{VkS8BzLZCZuDRjCJ|H?lD!@ts#86 zYUAFV5&6lZw!nowayWyaZ7J2-e$X0=`g1olStm*YCv#t&%2&2)cw_;oRd1ZMgXrZ; zdFo&_we0Id#5~!51tAW^lNe9^HXiTcGve4x9Z!gCuT+qOhU8}z_o%T~>^l=5QX2BA z&|~&hg3X=NBw2VB_qC%nydxO`i0yG+aazQVU6jI=edCa>z62i7z@YV$fEE({)`Th4 z2C+Auc?)PF#=s`G#ImQTZ|QRJji zhHM+=Da=!;%||pG=!ff!;=~ccTuV~a`C$4JT%)J8LyEDF+rtCGl!Kwmy6rfJ7p5xf z5h~SjD|iB~xal3(o_}bI(}J}kF;)%SUG6XhuAi`_$B}OJ=8Z2xsrA54k3?550o+077V9vf+9~ zl%7V|Yk<}R`qO%Cd4bMYQ`aQ)7>oZVJ}HCK#T23is%zX)eBpVT4l>d#Zi!FnsbTQ0 zivrD|xjZQsmA>_#YuvLF+L&$eg-WzEE=Kibr&L*P;q&tW>=x$ziT1*kdUI9X%@)dx zlLeS@VI&%c1%WUyA92Fzz@U?$qGb#o5CNB_cbHf|>dHt^?5FhFwx~_rgX%>UtLwf6 z-+ivj#Tcknb&MrC1V-q1)@b*NQqHQqRCKa7l^1qOif?-^8+gi5Lvmsk%#LQaB!rzNqYDZ#VSo;1jUM(k^clNDJH&7JxFl209bk)k%gfGy; zQ4#c5#U{bnCsHflRv&d<1W_GhG;!2@LRcIcL_0GHA@2$e42pcw@5T-cHzR%)32Sl1 zOi1q>DTgl$FnfcE)>6JL%U_hf9QbP=$3e>FWPZ<0sR?mQu5xJqlwMOQeKeKL3Dcn8 zsH*QK5u|t$3paPCU=T0i+^30Hc_`O^H}IP>QcKu)4r*XLBWa~?hpu@TkW9h-WR$dp zYbIRns|iE_Q17u=(PT7A473|Ue)YCr7c-y0_();uZ(6*TqALL{WWlp04iv%5p&ZQK z*|x;RrKIQ=p{mBr+Ok3Yc!vzPH0GO`9dZ=E8#vUx-K<14NJs1X6puktaqr#T)S?o# z^Op!FnzOxOj}ez#TC#Iovu37$heM}dYW=;c`p2w$Vpqls(Y(eVBwo7$uWIZ#J`%S$&6#%07sXGCQ-114t9Qfz^y~h($!=|t z*pd1I&B-PI3}_`1Y73oxbyuUhGchU1{BLN5hka(j zE!%Pn$H+1!iFWLL!PXKB*yXwO`WJA-UYrzfN`chU?l>eu--r7@biHX@Qu)I-JdHCt zO)iy{xK~a(Z7ME-ic;gGmD@B{mJ2Rarsj$$q-bWjqGY&lRGMU_WG+eJj<}17Mwu(9 zxG&%aqCThVxv%@a|JU<*-u9yObk6yG_k)tM^X7G*+H65}gsyyFFV4eZ!q05~;rfNF z%fEo*JQ+9jZL+3C$Uj!npH+5vC~)LIa(Ns>iC19y^?fkUe?3)X8t&S5MF1t79}#@=1|vAcRF-{Ht)maE=v+e!-9B ztd~whuntL3eC#sYrGf%V+wC^4&=3-XJ;$s8M`=(=0{{rRrda$qD({PiAtX>^DGyIY~_PgcSmXmv4KYTkU3W&Eubze%fz&39<+ z5=r4pGYZG-Wo^?Rl&zzsrd>IDurIBBqLpp1$n>juF_GYhIC15<7Z0CB6@w1CSt^dgTS~;2hropVx z+z4%%0|o2X)68BhfR}9}j3q~CA$G#TbKnToERQxjv*!ikA%Pb{FXkrULgyCW8TrNp z3kW~owRsJ-nBI1l?{;L8w!?$0|CZn%FCtg}dkf(IC7lh!CQp^s^m;)#$Ik`ce^hzZ zgF7MDI$e?SC6J>iNFttd;`}P{K}2(4-Sp6u)y0S5xfmuX>srLDiQ2+UqwG+;pe~r^ zSAX^ArOFgr1SU7SW(eA;zWOQ$hK>Fc@;$*`=3A_t(Z1%JW@oNzcVId0XV||vx6eV` zp7ByUm)$-iQxgFQwB7&3W4m#3Mpp#=VG#Y^flv*}njkMS2OPZ3kw{ zEpAj+Xx6|i2JtMt`ZPJWGBc1OpNo(G?iQS zjKXs&@{Fp(TqKb+@jCnlt!|N=-Fr}~70Bwlz60*^^DrQi{l19)w6k)3%%KN>WQ<^E z93o9;$-xjiq-KG@N+TokoV>8woR#waB29Qcy1D$rV*IzQtf#aICJbw1$^VroAffj9 zd-Mv7wesnOfP>fi#t#tQ%`zr+o(F`p3P#vUFn)83;-+z?S?Oz zp^M$uAP<0t8Sq|iiY7Qndz=1Jaj%WEU;<64Y$@;4^lN%Zeqm!}y)I7_o`MgUu5<{9 zV{7o40pM~R+@~!Npi^n|=cdBq@W%Z-l8<7ivAqdJqeN-FlIURgRKmvW_AtcKf9FZ` zRHhhz0zujO6uI>Y^2_#yhwM-yP|h;LhP05jy#L4Y!^Y<*Po^2wL!X$e)3dmnLle zDmUoe-iZ-q;B+}@WO-(={NtM~4JN{|h$fR^5SpU7K--&+GHJPoR~bm2kh&o_D!XQs z4oD2Bj->~<*Ead`8MG0t5dP5iFQ~#IXWj(Q(OxD%OLGgzH_Q#W2!A4c`JB2h&{#I4 zsW8Oj#vIBnhYJW^s4*H1Fc~d6fuDGG9d$7aiN&TcHnr9l<@^uXU@U6B(eUOcom7zp_XOVhd{%S_o*xEEthTP+P4fg_QJnd3!wY{(Je5$3T|gPWgtWagfg<$yeSCOxq(`E-l}DOP-D zuN?0^Qgfje{fnLVR<)utx@90JwyLD_ZSp`qn4!*9T7K$}|$Y5FB7I z`7*OK{K+xE@a3goU{lvvkUCt8J|(tqXPU4(A&MLjY*wYCfb>h zGFE#vO@GOYb0FCa;!vqMmgiT!|Mb}rA6tx_)kv3I*U5}=%{YOrpm1nxKZQy0R*(Z_ zi)fZ%K7M2n#s$c6_T*%0P*qxVN3*pmwfu{m8{WK_G0lj0`cN&E`X&( z;tza1vUJLo=i;@cl+Vwb>SG#t1SLJ66!wKmZx1x%Cc_O}Nlw@_pReHMDWDo&}2^yZ=%B{WYf@j=_p1oWZMF|E|1{$1y z#b@$5P(c6ywKUaQctzn1U}%~O3~*nTp+WhTsuH0d@0WJ2d}o$->1@$~=+!JaJvj`I zeEpqWfPwirS~>}@_;Ap^;^4f?VIuJiZNd%(oNJ+uKK3>}CM^wf#`1S5n#p!N6T?3} zg=3CN5|;L^V0@mv{Em&W*%a@6C5q5g17x}*Wl6N3xxy07mD{60(|zfUpZlQ?Y?Ajs z+MECYWPVAhycR8@d)9FRrIE!8a6-{XMU-sipf>jhQDL;c|G!k>9|gf?S!?C1=j^@j zSBs|z=Uk~NKQAGdr@Bcr#q*;`dZ~;;&V%~$#F%p-YCOZIpZp7Fn#VEcrt4OsA&{pN z9O0wSGLR8gDy3$|LN^yOZ}#OG@2*bZc3}G)*Rx z+yFJ-NXt%iRL6PiH%-9_&DzVm(=1p$jQ4L?Li@*+mdNyi6hxywHVy5muAP+ki{ zOa^s!>IB8G$I1@_#A%Dns=P{Vz;E`BoMdeOErs{!J>IiLBmwHz@Fi)L%2KhOBn+w8 zT*Ct#eUJ4XDlCI6?mO)P%P5F=M&aBrG>+LYXjw)CA~q&$dhYO_3g~mlTcO@1OW>@| zj+`za#!-1#u({3NTCfbl-75uFGY0Y1`TxOHAU#p7gwb6+t#h^!`sbCe4)1@?l+kt% z9)h^CzRm*oqW!e3GVY)}B$HO&xiVBJyqoRZHf)qj+*r1SKo4n1Q#vv>wDOYtm71*N z<#4o4<*Qk603`}|hvMy7;jiIdCv+g1!O{OvYh<0}<+yJypyncG?k3WrkRthVto-fM zaD&f5s$QoR+zYMX0tE(EQyST0HENn)slN+Ic+ZGFU>#!;G#!T#6deSTyaRs^O(X$! zBLHe{7^d)!*gYURF00jEEpzUj$o>AYTuSonI;u1cfphE$O$qC!m#xilR zG&llLhS?5(6!xYOObjVIUFr44e!B}eb$V9MHzP5mk-{76@$Nfh=kPOC?X84FE%pKS zZv&=SL*c%R8Zv0$D8g%tT4Hz>??Jb+{_?Jm58%Vl!$cn$)0O=dZ@=${hc%`E^w24$F@QK;k!{s_ z$;qt2Dt9A|La@n%MXWMS!iF7r6Bjzg$^Dg0H9d5b?YHe~Ss+{)wS9dK?f`P_Ci1Up z&&oI76t!<2i2?Di4|T*&tcc^ zPCtMw9T{Ne4-2VLD>Ck~^?Lgg!8I^le`>J90kkGx;Q$d# z%-Ij#d!xFd^46z$j;%CF4sW!ZYn#ib{TsnK0MKbrc!2cah~1C=LKYYxR@7pqPcl~h zEb~_wy8zaj3sf0eUn~erCn2SVyey1!?Poz=P!^`h zaNd#gnf7!k-@!iOhfFBU0(p7necSkmg-?>jX*sRdKjJZnMvcX@{($|zhE}O-R}Q$f zVFU*3`?s~?EZy!%Zys91)Q(b=trrvS9F|~|r`+s$Y{LWHQykNdV&o#9d~KfGe-tk9H>vx%e_yb`F6ZdE`*kyaABEtl)D9cv)^GIB z^v*EexG5GB5&vSzvG0Hu4gh6RB$^TzY7Tpt9a&NGmN%dTZ_|(^ilO} z!CSwEILpB|UL6_bwDyPT9%BayKAsUD-TweyVEQ1nJQR(5*$F&dL~9!^Q!}r1H+#uhBiU#G*F7f$BAb@PaMo$wujX~d3qGKc>v$&bao|FK z$~lnG5Sv_=EU&+2>Z;pcJ9!x7RV=yo>Pb(q{2_{-1#aa5sk~izCP3wEHUUU-h->)h zvy5=6kYiB}$P#go>Ufd|20l3l!k_>{VCA(ACC(v&2Gp;; z{2CKH6WoC~5>VfxOMFnu-(qgWdro%Wh*+M6I`(}5wH7;#7+Fy7NOLDlOj8f*fLuOd z?KJLww5VB63E!AfKO3|@7vudjU6j8xB2Hu@`ObTYf>huyZg0hs#hQ3Z$;2xX>M3Yo z0s$oX{q!NHQ zHkWJe3E0%BR>@Qz2ABm_EtbTDcV9ATecVb0tmbSUcTgo`eJ^I4;2p4-tDuXJFYhr~ zJItj`hxrxTMDk%qy(l%zXxK(=36DuayXWU;g~Cf7ee?7viyR0O8}RDJQq0P z5W$H;bugLa>s^ln&rY56AAGJQO`TL)r{3_xlnE{(^CKTfXkv>md{iOZI66{PNEkBc zT}Lbk-U^MWX1)TjUZ+pGZhi&(u`G2{_!2z%GX#c^$7Lgns-!G{6w|; z_t!%j3ps5H0++nq9{p}2X?OV}X*G@F!&Az~#IFIP3A!D2X1BWzbR9C!RT2t~GUk3C zdK1%ShiifQe>qP=lY~O-J~^LuEbDZ#o!}WQV%VwFZuL+`W|}NG-?b<5%UQ(CemRB! zc?M`4pfyME2P^`=S;h+Ur!Irtf|6cKx@#hmifz{pO8^xW_kUx5$VOcNC5T&@E5;<} z0)64Pd}3KJ=DN*<-sGIH6thuABBLNXVlumi(;Y70T`ikAOdx%VZ?B`J=&UvtR!=2! zD`!N%FnC@~Z(;TBc~yW*)BA$z+TKa!z~PO&HTjX%Q`j4W9a`IkOkO@MS+@)nltOyr z{>JODIV_2rMVU=M@`E@s(SP{10wCLlzR*$_(sKcDv>tsk=EYrR#;;IqRQU%jPz|8& zAF;JRaVgc5u$7T_!{Qvl-$MpdgI)4r`zAl|8N7?=Q<7*#Zs=@uCy3EcKdm;9H@GMS ze2OxSovj@aFo?%SGy$TdaQZX1L`ywlbFka{=l>YkK#!?N{n*pk4Kf!@7PYCxOfurl zax_POnJoGf+13fBu`R5W-|rCd^GqpXy#zdcl0P%6BFz>H1R1Rbyd z78LZ)gP4Szqe9(2$TUzYQ^=p!uOF$I0S`aKUigmbH5z_ep7R{2Q_!PEK8qU?JX=1+ zzR=w8?#uszXI9Ow3N_Wc4UKw%IQ_`q*&YprN1Wf}Y=jAIM&2cBBD$kJ`YmJ2ON9!W zs7}G1SEV&xvb|r{E*aAvbWNCh(3oME?ZNkb>B$}#8-E%FJqeWFdP-rTXZb62x;>}Q z2E9}r|CLCKShywpsh*RX2m~+z>0Ad?x&7d8JmvJtrpUT<-i~%l0xY6R=4+~L5TQ%a zE7@_KRBLN~lTk~O5}e zAq0%acFSv0SoRSUT(dtc5U;)*;=$;5;7GlCe0z2^fD7o>w6Z+IAUu{o_i6Tq4Bgs? z9(gXmk^-;T6z2OpNNn{1x|?K&{-qP{koVREOijKq2;@`q z38!mcS0*#{qLQp`TDuc7 zJBRy<1=Jw3)V=zG?Xl zwB~DD`AMyqq$Eq z402eA7+Rr`%gX_*N{mz?Q!ILB!*)6xkgE=ey+q-GW|%06-2ZdMhhqxDnixvOW2J_L!YUa_vHrx%u=37!zSTv2K&aLun|vdw21Z(QRLRk7yO#Jd3eN%vHeVbCdM3$NZTgPi<+IoaKoOFKkZ)S9D|`gn z$9fO}L5?t$po`Ro&YKSw4Fht+Rf#mtRlnIV8zq5wEClFQA>YG+CdC-4dw+$)22jS4 zm-J&g7`7*#j48*j7>_%9B`SmiD$~OiF@{8f7l~K1VlYY|_7l&hO>}lmmk#!zgwEO8 z%W47na*{!b2k9By5$Ko*)=Idz`zegt>c;|C!Xjx4deuw%pR`Bm&PaXtXr~{~z zHU^pg?(~v6-4O+g!Da8^-=t!w*Wjoqi2oyS5t_aQbZ{EMnyP?36QL5iTa9U{0Gx?? z5ACIK1KnYc>xvo-Y(sCV&XQt|pTWM0gur~@?F}ug2<>U)&ZR+1ZAO}BaE!vU{tdnT zydPE?@K{i*JycL->j1*Sx(bCi%f`F>6Anxj%~HYx5P-2mlvCu^J+I{@1zjDwf!C!2 zV9gk&fDtzy+@{?iSBrX@zovYwua2Q`=|t+&rNUo(ko;`MO1mBV2!-}69W$V10c!cf zqBZ`OmnWX0=)w2=%lnS2V|(YO0Rw6S>re!8#(<{uqmDsxe->Lav10hM8lLyEsuet# zs?K{K5fUBM%u5IJQPvU3Kj{z52sI_em1PasTs9pns(j0W>qM;>zQ{ggPGj3>lVfw& zZHfyJz&6I+QSihwxfIPMSj%6RZmqUD{6|^)k8~1b-|w=mS48 z44%wGOW=KgkrX^OLjLZ@9-*VT2_=aoT6M-yP|+I(fOEzGNa@H#8uFS%xq+xFQOpV? z9COWPjO9%o#A7gW86N$iaIzR=CF{|G`rFAc&NCs4q35a_Ht1F;aSjOrh?TP1$Ojij zR78P5&n*4beVjNZp0JS|Re9gInp7#cr~exR(sBg`A>Vgf z)9pvLCE8RZpF}|R>AB84(uicrX}82nN!tW!EpcL;znr8TG8dohiHN>QQ?Z8yDmDiW zGz9VwTL|BT1kOUsD^*@uLqli&W{gBZSUp!oCooN z1`nW1*6+!n_A)c+mri39*&y)5OH_2k$nAp+ApcP#Su)lEFpJGpr!h#u6WmR(oaH>>w@< z(62#k%kP3tXU+V#dzOkwPXP52D2WTO2Q0uqPM0c+wnb4}thx}x(-R-<)QiN|SZ^df ziqL<+sCl~V`u&pvx)BeDokZxS<2Hl3wl>FnTL_&3JXruD-L z%OoiK0D<3a^pEw_K8i=fgc6`X)OIk>c-heKHf*Dor|N_8mm>wa0@N)-PBc4p=OEYE zDdJT9+ml;;>!>FHlhSJer=u)$eR$3X3%G8@Q2-LGwOg2%CxP*=BI(qgLYrKq-e|l+ z{>BK7VD9_>S5cd2AlGjSSVcV$FM!-94ScbGZA6dr~^Ob@k!>cU2`*d^iTjP#)PI$cg7Nw|*-u}>w9 z!rZNmdo=ti+wB0Xs`eWZ#+s(6;%W&g=25rzv0{ zG$7XsG$e=LR=TQOLR605*qIH}R$(d!7-et{%i+BFn)sUQ_Fu+;nHDvYzeq9KA$}z% zVd7%$k2vqZ!*ktW%h{gHwH^52uW@mc5*IcDph}`He%qU9sb=d7ypED{u!g$csDCL0Lkb*&w z%N-edZ|c4!Vr=Hb9-?p|&n_YGEbpS{lBn{@%3z*@;mWCn)hHz3h;Of2Z0Bmd1I(zy zWbqAPjD)xIlFGTN-Gp(aZhq}JJ!vH^cqWjk9|T-6(mo(qMLTB;GJv^aDoB~Es_$kM zfMFior)E}REj%SD!}<3+h3fXcsK1CwJp-?}3q3@1%Ip?w*1KuEqyS!|;htV9pry>{?ZdhBmTaL2Kpy5ic{zSpU^r!7p_?vEb24)<({y z;uFdJKW6}48ad&gf3aH<~NqNjMJL(FfT(YuNC!{gr@?s*|LNXJ#8 z{8)CATCyUbQD8^I3k`iZuZn78<(D^&voSx6kx?Mso%=oBVKCcdt;Ghvb(FIH<@mk9ZGAA9xTDg8VW^X;EzcXjRsuoA8C6&qZ{rjk&ik>+@F*i)coz;1W7}c21@bEs z9Fk9;i7wvP3l+ZP9K)M79(2^_+h=wyUE`w7!gw8@eZJlpb}|ga7lpT&lZ^g}Y|^a; z1_0J|iRXqERkyuNZFzDx2Z3E7=bIWr>^Dkz6DH|i)Jpl=95hLgXLv{2(LSk6B8Jq= zPc-WWm!NDxEpgEp#(QQBA<(xgyCIIvyu+FH>?WQA@{^XNYRJ^k^7|OAU794&ii#6} zg7ZQz;; zJa75m*TZpJi`ur_$Vo*11n6Q8)c0-NT9Q0>_Ou1=oq=xMg+mHPcL3ne>&zSt=hi@9 zRVARbb$7=0Cl^};p>Y9yDb)hLn%cnh(&5m)x~b1Lx1gp9P+E)*s>;7*FIRb4CorV> zu!@cFVc_mGv4D^wXM;Ws4-CLVvynmOi`1wmtwx~EoO2zPh^WspKvJ2RxujsY-%f%E zQ3T18bpfe-s#TZ@sR6tVb@SG({x}CLmtMtk6&|mD1q^UKNk;-$4wx5W!vK*cr>)&& z65`&*7HGJ-${T4-JmLwL={~l;(B3RqsP91GV0=L_GYrU8M!nF%d*o(>qy3t}?jZTr zBMj^-8ALbb)@B2m&K~$|)J8=kDtp(lkJ$blMF8PnGe#}Ug#VjYY#ts|vP7fDM`zB< z6MYEIeI>=+I44uDgy)k-6f5b|cdn!ZVUHS#Y5xi<8c zk)^cZl~`CCbI#(lsb?2*EO6v{gxfXqsl->0!)K1)Vj%)6gs#CP1DGEi1@k># z$=m>8R`UaukP#93>G?ctmJk@%0Dd75Qwr$1_aFOEJEuh>&%MW~Jxk{UCo+Y9IELG` zJ0h$wZvEG3yWOAPS;fd~oe=(N*TZT*y+yN>G5X+^8~Q2_y+zI0>En4O?K;~^3yXk- z$!wEJ*xHJ=@=(G!C=g-34)jFbay1062l6P-aP(yh1`elu}wpe@1>3*-Z5jDSHiR8n&kiFhR3TQOFlxFr*Vp%}jXsJUx9 z^3}+~tgfur)0(!buaL|tY!3Tz|6`!ZyhReG;d8$Oo&mH@On%)UB^m|%;Q7FI?*Q=e z1f3hf@&7~lp9^?s^N-&%v8KFHdAUI5={Z|7Nn7QUs-uJFAB|(YPu>_>{npml9d<4@ z;qn=yd)Cy=OlYwds!*afP*}nzzQ>3!waKnEZP4Zi0GzOlB_qS%y zu3nBH2Y!EuLgJNABt$EpRYG#myHJZfC9AF!z^IcE2BXenm#=7O`wzBNDAQ#u1ce~P zb>!3>^$!air`XD{gjqtkYCc8A0;)di>tmzg!YZtWLbeYtyIol;TY-Po<(`pLt|DZh z5VKrKe?Ez3jdl{8Re+plrvGZ89lj@$;f24Ggg*_GQkosR!dDu3dVse-wKE<~vTM4e zoD3v2067|u&6AhQ#9y!)q-oiLM&`u4Ovj!`k?y4BTMSkQ@6*hM+_4ARP8AR-mLZ#` z07MEBx1NWyM#Jwl42hT)oOSO^?<-7{b{d7({Ph~|hRp=etT(n5IUQz`mFR)F?(8vb zXH4I8zB_!+!~!=HU@a7WouH~K5Gu*y_c8bjVIPaYi$GZD-+d#_VZ|3+NnT@QaJr$9 zra?Z64jpC%@Xe=$d$o$U(G(yEt@4)n!xX-2zR zl=%z#ALFk^0J5`TF377ylEz231d47!xIlOUIDGg3M4SC2cQ34N*1yzFx5TF)C?%b_ zkE&AKF0i*jnD<=pXd_I4yQ0{CTR-S|&>g-Jlv2%3s`Fum`Ub63wFjEwVJ9NCTRfN$%B^v9GY)%;ygSD)2X=N@Sj$&bdAM+}((45a^|`5xSE$ zYOE^AQD{09%Bg11_a=9j_@|Pgx`WQB+#~~RZ(E`$+`JtM9k@hFcU0>PhveGuNtR;HNf7z0F8=nUs%QYy~m=C&LIdE7(%w;D-U>8T;!$7CW z#&A+bp;Qs-WiO3H0D1uM9Te1gI9k)6Kjq3lWiirN0;Z${u06TxiV$Jwt|7to=DIv_<+;|YWAJ0>a;(Le^sTYEqY0h%O(T}ih-c;spcY^>K`5!sa! z?S_BlB5%;fQq|F0o_hhl$DK8qI)pMEU6eqU*{A^OL?$xTRW!!~fdjM{wNaiT=`rCQ zZL-q5ek$~t0&d{E^{j3>+m3QoXd>qrArsw95JWWTN=4Z8ia$Y$W#qcSyMkRl++}-i zX-C-sUMH$3soxaql`&vE2vRogIjbT!ZH_rdbDx+jQ}C#V%Kb;?!f;(_F|^l z?##faC0f{8cS(-ZT78XZezt-M|0F6|68FtOcOL@d31$`xkqdeCjOF43g58RZ5O4;9 zjT?ROcl@D~#B}TSj@YKQy1m!f@1h=9#OFLO)=B(n?>`1-=le?^{(|2B22JTZUhCb9 z=(qT1Z(LHPg3ZFA%U6%?Ntn`xoE?kPkUG*gcq8XZ!tBkWi(Ji6A<~28-wGMVwvDl}K zsh+)~`(`;bzmvE{--0?_{D1!8OX3cK#uAclN03 z#VqQ`i>fs6E1kArr#y?hZ%*gUIEJA9wF6;ll) z*#PoUv%0Z8{jXVk;}_&30%GIC+|dlZyt>;a=(g)U7lVVO8|DMeL!EGELiHH8I^;8a zS{I+$ioV}jhP2AS?$DpG*>^}9vtIk8d1^R=z_ciyr&5_$+XQsnHDhK@y*9tzOuOyj zE8jA&KIb`ChRl+&Vt@#PG+|p1_BtubZ})`x&RGrGs&1cfILT@)ZY@4LifWvpva0JI zzVOAi)mSdGa$|T#4B^ zWBcOvRV$U5Gx%d#I344T;P0xj$A=2!OoK#g3cKI0p za^zO##Q}x-ZO%;m2UG0(fY%EjYB#%CAJiiq4qvE!la`EJ6{Th2`Viq?+xXE8wAm2PiaX*4_bc#w>#maA(?YP6wH6B*kNPr76sMryx) zNd}*1(Z?RdvNq04i|?1SqCz1<+69qfGQMDVRC)+ex}mUf-sHzK@joAuqk3cR`)
d-R5OuSEIS^XXNe`=X^yA?!)$)bMK}byJ5_)jxL)cPIkdRW%6U3 zJ&MT$QKt-L=TKqbn`oS)h(vv1r&!i~pc;QcaqIcal0o3C-I8T&(b;XVrWY<+PA*%S zkfjWM=P#HdRYEzBcu2}&{wf$mG&Z7UIUXQkh@9v2_{N?W^ku8lMhG8D}(`KNb z$`^KynScLQmb^md{b~mFavDlzc?D0py!WjS!E}Sl2NEql8PS|FIL`0$P#j~$z(qqj z)el?yY)N5RuHiF4vWBcPuW`#@KBS=?`$t(ASDQCD!wnj)d*2)t>$}}ty#?IJm`XpZ z!JW#aaDqKaAJTRi<=aCoa_ReAt#`S3t~zW*dMG!M{uFsso8nQxYE?Gf3N_{jsb%S` zEgt^BEI@$t9XQ@5>=Syp+_B~$Po+BzZJ_d`NTXOQPnxBt)%WEWDCaSE zR}<%r@{8mxGJKl#+>6n^=0`)}N(y{~_52p@nynDhfp^93X3*Xb1p6s_r!3|BuT%qx z?AEbJ;geme7-%F2mh%4W{pWVUyT4PWVt1xlx`Xe9T^Ghx+6-Geakc>MS^l>xlU|YnK3yw-;z~>YS{7wu2)*&9bw5qGo>SA7hkPil(@ z=qa$Ge*9A(dEDW!MzwqfR{wTo?d`h}><3B@9PZlLB1YBHn)e(Ny*yx0(pmom^zX>UGGvn?=}_#S;D z<3+vte8alMO@u~gQZ?8NXR;Q+=c5cdx=o-7LqO^;G@om)anAF{}F#|@2`6VM*d<4Fx;5b znY!oE_`1KAZnrtL&Op3$x?fn;xqU!p3Kr$6eTU(}{JWwP&b&XNCW-<27Ly-!mXj{K z77kp_vH~B|sD}1!yy2?sNxUoVIlF$dC=$0F@_pI^jt)WQAY)-D|KY-YuJj9cW1~&E zj0`pV`u0NW!NG4w50)}37vlrM2DVzC3;GkU!p^Wwvn&J&?K zO%6p{R-@Vu%T+GmDhmFwC;WY-8KGg#GblYGpt1`*kwYx( z>(h2qg&n`M%}nS0o*d8yTCb}%eD@a=gc&Mefj&3h$Y@_9NCz&2&p=NSsqzIp2DBx` zHg~XsqkkUwSE|PpSegGk@i;w`R^hkxTwBO>;xD2 z=bPc?Sl5Rpyedh%CXu|=)`)3BUf_d0C5MfC)Gof*>-y&6i*oUWyN9xu$zSwZDp=H; zqN)RyLdfqnp@(*3`VXt=)wW$u@p0?z_>x!w5)PK^+qe>y28vlY4XtSV)mEs-{Sq>6 z``s>o1Z@Iw|MYvPYA8d-uf-H7@q5fAF>&jwy&K_6*_PKQq=)b`2@6?voG;ZapU*4~ zpDjB51lIa*q*DqiY2!>2qW$p2g_N8YWxZVw8lm6u-D}g|Nw7nXdKA3J9~Y6WC+|}- zJ=9KUgG)iN0aFzT+~##1!lOIemU#^>b6(4!-Kwd7W7b>+sJEnB{o3DA$!~=TJ@-o5 zZuQ^dJ#k<@Val1ACVW!gS)P%*1$?lGN78OdR$g?u~Uxp<KI={UKPV z`K>{olIm7@XZLZh0O*;i?lYL_SNI)G%G@ytCg@{wL=*{XYOzMYY#JOdl?8)l`1*Bp zH+i(4ms9cI-^aY*q`b;{TAYKccz8T{r$}e|6v^niloO|!buJ{e+!fJr&q~n?cR?zD z+hcj~PSA+kCqFlfl-JB-+wzv*y?jE6?vQjZCzZgJw4CiDriB&1Y3h({FKFFag=`aJ z&1@XM=iSg`AKO{<_-oxbw~WP&xhpMFX?J$v`$O2PEg(I)uN@J-o;#wO-cBmPam5sB zz7#L*!Psh!^|mCt4D&2x6~c?F83ZrlQ3~dwPBcN;>7<0ks1|+T23beA&rkHp3B_J8 zoh~2>hrTVg=!-9Z8hf50_)Re&shGFtBXcHiVb#@yme6Sko}hV3_bCK~LXEU?6BQi@ z6{|S)>E%kM+plprt*Z zm<47V56XIHpeC*pic-OKOHn9@lgaly_QJF}rP@l*i2bx(>_O%geP1+Ke~>$PB#g|$ z_JpD7-L>JdopnPSOcj6N`+bdcZ9yH=u2ovmk>oHPl^99d+-xmri&tssCT-1-jJL(i zZE^dkQsGaQ1z+t^m_uG8n|+(A-M1!QQWAo=1Ap0nt1kk@!>|86Yxnr2e!>Nxv&`fF z>KLq~A~HUQOsbgve!nL^9(97(ynfjE_7t&bUv%dC=Sn-*@to?PkJLDbJ0IOS#7r$d z&f6NTU#G79{kmp;PjmH-_IHVla%b+Rb}~2E#hQ*g;jn4qYm(6>5pwU=<5ELtctO_b zVDAw;xS{?5^Gy?fzc-g7pE08jb6f#FyCI-f)CR;zZ`qfU&)H59!pjWVx5N8Zuk^&D z%o;z=OT!~4OIpk=!^v5oo+IEFV zY0788E(QMi68k6rX{wZ#XgoBFenE0Rg6p(3c-7L;dTq;wp+;OqKWGbR7*M!>fMDz~ ztz7N3oR%_mT@5<@u;p|&8((stsdZwtB_g;|PMeLjCqyV!^M8^}%H_V)X=@_(h#M;u z%?FF@c2l{BYx8wD29hGSOhNH)$-qPQ#-%KUDiQl=xhqXCImdv)0eKF73?^R4qhGFd zk)G-N81+lTeR@D1UN~RfPOeUQagyaFq6gB((UGdIfzP*+R59z(d-9-t+nRdsMTyd- z+&`B7m7ak^J&ufRHmfjmMsR07`Oc5QZO))xMNUsB{e5G%|AHo4LGSBGcWoJwI~rK^ zN~e#eNkBgh{*V-T5{ciIbmq)jah{c|e&E^f>iOON>Qh~K;?B1cVGq$)*Cp(7}mX=(K%SGy$-;y~!X-&2|$FJ7RU8EjsUizmD z*Yb19uQ!4<7av6ap2fe@adW7|bWhfwL)W#(svhMS8`>7^CXJJxn4s%cMS>4-Vh<<( z$-8G+;9=koKMDU(uLd4TPZ4C_BZvF;6DlBlXm_kv&dcxFVfsaeQqL{tRu4y}WVH-; z4A86EyoUPHklV^n{^7N$x*mW9WI@WveC*U+Tyo=j+;>>Nd?pA)y#*e(Q`hqNnCR>F zw753lNIGQ#H6{7IYAU?x9B+9!!?`rqPL-d9{HZLgtYvsD>&}#YZU=7+oIZ#8`fmGk zJ^wR{u$vZ1*(qo&b^0(1S9gy>D_$ zecc18=D;_dW?cs*Pj5qPH!INZ;hf4NyE&+f6KjqW$kcbNRR7S9mE#|A= zi7RK8aDGk3{-cGwf|#;bM6jyEWW-iAE@bA#)q8{I{iM_KN7+shd@}>p`l!#1oeM8@qe!=+9(@lDNP&U3LfQ zB=DU&Ngf=xiQ);36D}N5syO<(>p^7p#lq9o4X^G&gR17GzaL2-y8}+BI+i4xR5J>K z>V!`hzihz@S371Zmcq*z&l#adn!fB90laN(XRqntsi35vU)VKiXC09EwK1*!)^9GW zXNLZ*blN%@$Q%OkRKfq$Byx)Fh7dU=@!$8o5dC!~6gGLOjKQj%)~)Wc+?RgD^0b2+ z!RW%!+KxV|*`Ip1>?ydYDGNne*VVOPkyN6qY_-btM4zU!>;k<_7b5J?U;m0NcL8^Y ze+kc|&ej;FzqN-~bOko$3)(orIN6+P;h>YKxK=#G-06DoQJ}sv5C6L=TVS8fuB&hU zf7p8OaJKvR@4xCQ*Hx>nP0&_Ll_Ifcs*0+SOI@u^D-<;&_KHyy5fn9J)JR*kYR^!6 z$Ec{iW3QMY@ym7J$LDu{@B8@t@5muJ-mmxTJfDx}^E~@h82wh@=6F?5XH@M>-ngld zTt)8a9DeOZq+{m~>rgJ|;xH)_FIHOF+T@}5g%w& ze}?I2R$7tohPi2Vsq;%>CNcjpqKq&QvV=2)A4ZwOPwac;S&xcuRLmZ>zbM-D4q z`GX+3`Fn=ZsEO@ZNUSb)9|@LTDchBA<-`o->I>5;u4l+k26r;+0ZR7crYHKdL5t4? zy(K_RkIO1%T$4O___{RCPZKGNkfD7Sa}dkM;nf?plWLs`9Wuq|1o@~~ELroPIDZ0S z2-el%MY0B89CA*n2-(|?C2Cqtb>eIlV+X~BPWd>qYEiZ+>mD0!vE=qO;&pEKC7y;9 z;A8qa^!6Ye@;GZB&&<^@eOUK_U(ejbUE(tYu=HL?$icRKVz?81%@MD*IQ=MMhoQQ^ zPM-Sl7X=~}Z6V$kjMpS7`HU0VtcKZ3)Z)H+W&5IO%9O5R+;IB#PVGo1lDTn4^}9sx z-aA$;ZlXx6d0g)1?Ij<$-lifBwPLb(;ayX6m>NGOK-EWu1NZ6&sn0THhe1)vk`&7L z$aiA>{E``SK1yIBOG6j^YGnO%x#hgjCu^haFIf~lUuaG#T_*Gm{n2|*95iAM6@}+* z&z%-Xyh)LuZwESRd}k?2vtTbnPQr` zg0W)2l@!S2>> zk5ItcND+0c0))Rl#iRXxHooUj*~6;Ew@5nc&!FQ(tz2R;C`$|QKUl(lZqS`{8fInw z4>yimmRg@@Ngn{3?GKV}(laufdMinWb_}R8zqf=N|3Qyzy!nO6vMRChup{Hq;b_ax zl(DdqwxcpFFfb}aqIwKivRs@2HoW865h*Nd-5cEI33l3yqqnnnk-SGIkCrHL$4v&) z&k(Pa3PksWM|yaUG*i;(ZAh88nxs~{z)=J=X*IbJAderO9Jg9&z(%#oxVNL7<*d+g z8#a{6g3^qOk=<52DFB`2UJf~SyEa0-iOedia|*o=w_LS7>OOuC zw1dXh72@_+1@O|)8(LQNd^Uzc4kg1CR#q1NhogIO8NJqyN)F5I3q0oOjrxv#K{iUI zqum|=pUu^K?e^Wv7t`y(=;|3Qe$uHR^2a@ChZ*r zUP<@;1&8x7=~G7+)G^2ZE>6yDOS!0+V4!=12PxvD;V=<`cMQ$84jM~QU5?Q$qUT2OhejbHBp|jk$oub&i?6d1WO8Ap& zEvik%7l$G@KBN^VRt>?=6JBXf;hOM{%;HebwJ}qEc~K$Nxsa)><7JWQ@R)vN&snquK@2Z5D@b>}%8?v) zQ$wF1Tw5Z%NZ}L+5WX=L@CpUZd^IRlX!2zjyWJySFL7CgJrzJx&a)}&rlk`b{-!&- zhYhQBg=%)t;v7RtKT1Y8boB){Fn>J}18!&n0c&Ts4HU$WF^I`wS&(DURmF4=$z8jX z+5_GfZ~PZ)03aT-a{>JJ|K*g5zim-ZxY|I=0^$!=mWI7fi4+HU-pCGJ6qcZlAYIB0_MpS>WYljz9*`G`~ zOwH8l7R`G^#f0CL12&25S>(k+>>&Z5R_H>hTok`(I1Akt7mN)WiiIna+q_n3F72Zd z<AC;Dc3f%jlqwGH({A8L= z&M;X1d?OkKFLx8UF=%bWo?gh9ip;1Uuwt()bhZ^MD>(^1d%yDVy~zzgctJAwKoYAt z?&((`+3C*#8w`E9oxK==U7tJPG`B5uzTOw`(zPi?clu}+WPd%jRQVW{%p2q1ZsEUB zsh3b@eLI_a)IoL$qnKxogOWmd#mZcxVm#yZsZecL%@$Ij#JLkyXAHcRxY-kcQfP06 z0p%1vopNe8UzkGPrx&fyMgOHp_?6%4OIa6o*$uD2rJnou1mM+EO@NJuxkSS{R0yPO zJOFu?rZ~ictRf7WZy&77E7(1-E(sV^mK=KLJhb11atu+pSO61Ceyu8zVa)^8W_E6R-bCk!iU0=u%SI)wzgt|=WZmDVaveVH6O zYU)nqTy~gzo>|)D6@&om0H`lZI@A*axqC4L_Fn{8aqhjACAAy-L8mW-au3S>oC^cU z^H}RYb&+jB=FrGq3wa7;iDb-tA z&BO!A50Le^x+im|3sE%umGs8;&QT0{S^XMR;7G@;r{dtOwnSUH=X1>niwnm{Y}{EI zcy3eaia6^UeP~d2EARX+6Z0bnCt-+^(q+j6zh6|F&!z+yl{!}6qDLsADK9CS)4h*N zd6n3E6pR$`;yw4o@uyHEZtY0BZ7G3CzGjqRr8Td_+Y(B z_?~?fR2j>9+0i}yAy1+=-+Aknp{$RIeQ;qEt&4!GjThw`HC@pdS_srKEIn3p-H8oy z79DkvoL>O|T|AQ(ULtVozPE+W4I>?S>*_hpVd5*-m0^1Yy95=9Zi4cyny%o?YVW#@ zy5BupKDPeN0>iEeI%a&F;Q8MYLIF#w^<7`h@rj!BY1CQq9wW@4D4IbRF(sE~%uNU? zqcV+PQqwn83-f)_6WdPNDN*#WnHxXWa{mMK*7@Byb+iwdoqxOLU=V1Sg;fD`|X z6GKOGjub9j^Z<0c>2=X)j z!(N4}c~M2W7^O~=O=K}j-qE};-q8fzjIb6ZYwfszNGX0we9ru(Cla*O0++IK@L2J` zI0BsM4qDoBzY8=UlxcvAH(Lyc!W?^XSeGkm$j*>H-tom~wQRY8q@xIn#k&}kyY-W> zn5=L~+ryiFGw)L)Z31&8$|d;dj_9qr*_ljEd%{=-TGKSK)$PG?CBWMf9D%Zj2Uk!4 zJ%EG9zIMF}7Yu4A?Q4#)q|(2s6;UdhNK0v`VIppslLT6gVQ^Sw&T z@9w~B=78x6MiHMe2IyGDFVL04^`=BJ0G-Siy)+k)W)&_?EwAouU>K#w6!ODe8`yMa3&YDZHtZE?qr|}CTU5d5(UF8G7U`*+2++O4f z%^C8M;z)yet{s-EXVZ70rv# zB1+EUcjr$2ShioZZyz(9+i=1gGy5ms|9>%&$T_?pS)_u5|(C&8Sjy zep<|y|3O*BR2)ej7>DHLTSFz*wPjnljOBLs?7D9t*b{tyII-=tK%+FJ8|;R*VDL=(P5qop4rpB5P) zh9kY$n{v*9D%;2&*d3Qn{dDp=>h5BHc}GQ75zo{aduy-!?1UF;EHebfb=GT~#bdkk zQnw8}nXYvz*BONo_Ahy*+o0TEd$v733D3=&aAfR{vhrKRZ>oI1$N)K(a{FP)B)mSB zI`S(M&q}!~W&Py{?2M)Cc)z^tJ$vw}R`iN}x<^cZE z*Y}t-5pg+);_{Ep#ZH)|`{C?hvcRXu3gpcZV2L;_?vg8cn3*Pi8)F%$3D4%I}>r=(o<-1y1 zI6M}A=JkZ_Ed3bO=5`_kT!SF`lPkTbE!|)O8mYYOu;#(&uAAF4-t~g4}5` z^f^EDHj}=@^wx1HK+aPPxj;)^^*ma zWRgigYhPzmW*UW!njXiWJuQvS++Nq;lhU-og<&M3D*Dt*B=*Mo0?23Cr{05JZ*wE= z>K3o45vz*X`rZjp#z!B2U*t|PsTJ`%_39c;VtfBK_bZDtlAX2vLs6%-rhQLa0B9sN_fb}{d`Am2 zYzTI>Ict@#dr!g8 zQ0Z){^57_ew}Q*TH5iSukoSccVxd9S85pRD`?wuPbRE3p&FI{`^bWPfH2R*M+;Arb z?S~bB{u90oJfZ%h-v0wZXp>o{ODqA3qx+IcL-PfMkZc>A}!B>hQ%iVnR7O`J} zxPcIYpR#ZV{_gl7us5nYK}wPDwV5VgL4($K=u^AjjtT^JFWUC5&;ZblYF{My-H27^ zR|^}nz-0Bgi3Z)8m(9r9g9stT4Jd?ryBA8e7J`-w<7P2%(MH0e8L7}<(<#1pRrplT_d6Sg;ZTr{q2=VVm(BujhcNC_Q{s8*jdmCQ^V(wn=d zP@;>RFG2}`lvNp9(zM{t;k7e>tE7}B>Acn>?a*k-f*wE~ke8A>q?#8eVb9S!0u%z* zYcpR-`@QaD>i2g~qxbOJsfM{`DQ{7ZYRd*rHyOw$^`G|pA}mqh0H4JtC#lHukBsCx zmyZ6U`*B7@JakL?$Bfr+p0gs}tv`{kmYPKL(f&gSH0uFXKJ+2c1^y*xi|g@y%7~*P z&@e(4ol9H=RmZwie55~lHL`q^%8JCQ3XmSC;>JyzdN3|3#Mvh;0}UpV4W_I;{UURb zlv_lXos~=jEv5N-MDHf3y-ji8~USl)wyy z7=jbMR~)cs$%WQNz;|pH*H3D)9x74wqied+=|!i~Zn@agF|jfYnj$wX*pHw#54OBd zh;AEd^ii@rynnQmaf{gG3Y zgqhv;fr(RR`iV=RX8x|s9v4PD(LWW0iaC$=+QNQ}Y#rkuOFJCpufyX)37#7smKfHs z%`8qg$LtI{HtRLeTGPu(s-2c<@GH0Dx0iQ~enOxfz`eQnkD&WM%nO0N!SwtKq>xC; z!@}4MS+Zo6Qce#oi$%J!y=(0jDPE8F^e2rWb**?Gt*P}0WOIW5={jv+kaJX2rZQ}# zTE0gerD@KOBDQ>BmR5D-HCY_tI8F%B%;Hr8eB1_`)e^7Fy56`O$+S&;&MF+35b1oO z&BF&>;AzT&JB^N+$<;>t`)3N7NO;0yF9%e4Yh_`3+*7MQaEgh%5|p#GjVk(p?{xT%WTXocJ1}FitoZ_ft?7(Bia5@l(&qwMeHu_joym$tEpQy zhr?W6pb33Mg7y?DjFLVFkh5_&kALGVEDlGKZ19aIl69)#2+g(8 zJ!%E4>?>0C0I?kArYtqJ-Cs>o6DIH|YKJjE=JM10*ZVN4o|}hlh{eeDlF)lrg3rw$ z=7V<^1TGGg^y7#F=@k=U{UzPn2E>9Bl^}oQTeUCOKS4`=S*pZX_7M#1e*~M5)iKc# zZ5))|HX$t9cu5u}f-F9h^d&oh-K%C9A{nh9&wl~7d1&x5j9td2_wXV(buO3G1NG;|c0$@38Nd7k|Aq zJ34NvP?V&{NS4z?9J=xYr=oeWJmE09>pad6<|;dZrryu|RxS$LqT)}f*A@G4F1 zj90c1dOW4y_k^<{5Rg9#E=|Bh3C;oIRdr?tX%7qThAO_kohUaNn@cbZu=J+hUQ*tx z0v52k+23AFBc+xb@kLoyHp#!&Q;Rlj#`>n00pr=3{u>`+7^`pP4T;)(xPx~Wz+_p$ zMh6FFmEp8>6i0d_nz`9VcMa&(8I1Dh=aTk$jbT(2iPSxjbJ#kZPLgnjY*QS}sCFlb zQ#>qI#Pjf_iW@bz(YKU74xQYuXQWuwG`G*okT(xq#D84oW07hU0xevyWIvy|vDs_C zZitr{ZZ)qsln-y}TY70WInGJi`NT_=q?RFo!}%CNm*YO2G)u8-c~t0Xnv?x+bjB}} ztnyglXfJ%a;E|h`vS-UOok@cPw0dbx!9*oItQ;pJn z-=eH(06F}oG{|u-$4v^>`XlEZ4QqXL#L^~sCR^;i#o5CbNy7Rowj3K`@1k_}`+fCq zM*T}uyRs0lz$(!Ih8lCjfN!3P9tZ1SCxZuVvXuQKM|K{k18_t97k8<>@=+X%3X#JmyEL@wO5I9v zdw8F+yne48gKlVM1mgQka!N^N1+%6ZkPvGjF?aJG-@|TK&Sd%LyO}v2Ui9GTc zf^3Bj6nnQ8>uXpoJWw05se08v)_cwEYd=p-8kn>k)zle0IK0J4YdKeu14n2@a-Cta zoQ7S#<($M+@PtvLYqD(_=(Z8rlPJ`MGU&gPSIpgAd{>L5tzsu~PU8%ix^%|B} z#ss%ydVXf8Z0ad(v*_a;uxMRA4cZy(Rv6`bm9;8Xxay=~1gR1VRz4ip%h1knT^WOKRVI^9H3}Q8Fe*(te}+@*Ey$IX9?%+%tePpkZO-my^C6<<4#b9c%$ z6yC-~GOJo)!gN>Znk=U4v_7C~m+xdyHUwZ&R%E~^FeiEV)o>da*uD!pK6#HSmLNHT z<Tc2Oeloi$TsX10!^t4${xz1=c#ZyUvvbLi5z{=ER{=Um(s4LcM-a#qwO{TlP zqyS}jh>}N4e9dO7S-yPajV(I(7+$Dl$)oW}B2M_KR{3)$hTKg#@!t$u`xugzL16$* zqHMIvg!RScUTI*FJ-Om_)%8?1cRCcLGZ|a)r&c+Az0=TVfc)g=E0xiZiiybWNrI0+ z;q9j(&ht3_^NX^!-Is$GuV`F2kmLASW(D{1EJ_CKBZJ#MCc2;UkzxgK`Ng%#In~YWN8deGW494sRK*Lhmij4CwE!WL<1yQ25-72 zgOnXkf1dLVuh|GS_zKp%8s^PNwY{0)WS=RasCMyy}1XS0~%WHMN zTuu3Tf+eS1UaXJSs0NbyF{)vcy>>U3Sg3oOL^%x$N4xvl^heCSXA7EMFnW~DQ0c*( zw?$aDqCf+hFT!tfvM1Qk@!H<7Vu>;^-}e`1Nt_qrf0>GBv;SsE`Y(1U7I9kYzVwFp z?mG`ylmVIJdJ*f^{F%!3zwY<|o;vR-Yze=bS!}Qudajo4dYOHAArWGekTQ6#6`?l)O{KGHzdENmZ z1oJZ=Az>`6Vs#qk??F_$p7LDUkIb(yJt0e3+8k+QR|%p)Q4HBakf!`~2=&4!o!Jb~ zR)8%4KShatQeMl%Hd&dwLs8zKRUPxA5zfPdRSA#YJX&V2v8mr5y|oKZHW^AM;f%;A zRi9(^urTaoE*L-dF%8a>{z)ExcDDpHQ|&?e#_Uzk?_Qbo275EIxn$JA#+X+LjoKU# z^*96`d7c0HV{yx=Z4>%qDutC^iNk0Vo$Vqimjl*DA*&Pmi zrMO@qn(tzbm|5O;W&*eQZfmw)8H#IKCcZ$fXRGoO?wg;-HbBP!X{uo~Gq$+xMkKG5 z*QOR9sVWbwWVT#WTAnF&nv0z1uQo!KL}*3aZ8686X*`opT>GzWYT|Fs->B53nrzo!Q5 zTfZ+6czWSkxupH$z?scKtk+;UV9sdv!6fF-A~(5c1lwOd>SvB`>^Rf8@po29{=6GCGEk5spM46%;j5R*S}Q-X{z1eLrf*y z&BU@q&n4444TauT&X)co2KI%E4$G-BpuQ5lC^ z$OIN2Nn78>%=ukrO#sb2;!?&S_qx3O!0e!)nr{Zjl>=`@UwJhkvJ zOx0N!zN0{yjbm&taR<*cBmc|6)}kxvqk56In5pYX<)c!h=?gq*?XQn9{qmJ!Le}4u zWU(2setg2~)p8g%s~;Dt!+)X7_<6_^`;~r<7IXYdI}`orFuou+25G#Pv!A93{^7g! z9)hiVob|~om)fe!yW>bjGXWZLpFnnlFD+;De}T6hIk|mLGl1p?CcaKy+-?qhT3ghj zo|LOXz};u`7_D~iX%lc=zJnzW{hTQg;IHleJJWk>0fW||f~hG5eTB%DrxDZnx;6Jv z6W)0pdVuYg&FcB#_A2bbW7Q?iGjSK6ue6_SdpVttvn}}ZTfxpKB_EcJRFpj-#Fx2pIWFbonUcUr9tN>Y&zFkk zly0<9A}ILbqGGc^hf)~$MbFUSxJyvFC_EiBC`EEo(T6?*_^!!M(!J-hWHCEy6pK~j8+++<+0JQN;5d6X~ zT!BHH&3kW`?252r&k`$~*I}>IyjdRY5fD+}L$`y=#ky(k)1z00#IC$ZGE+6Y-5Wa9 zQug>y%QLw${Ah67r)#p%mRIb8U9O>@m^Ip6GOliXaQw~FJU053^x0KCPWXYtsp{71}(CFcF-ANuw00lji-DP{w@+R}amzB|^D36LU|^=m>eZIZW2>iVZjo}mSnfxE)Kw+j!inMpM7TmLSp zlZC%opa$a9<#_vKJX0VmLJDNxJ}J*tAWLlnERgMwH;h1zzs1OR{uDOGbU zQ)~)n122g!^7~cgN57rf6auY1I+U$Vn}I|0GcjM=%Q~^e*Dii=4FKMnx2*p48f%I7 zjgVNa@KNWSaxCu8EUlVXj^4M`-%~=DB7dvH11soSZ>FdoL`qaoR&@HuWHZF@gRF1Y zjDujPRjvoLGhl{0ky)UPm2>gt;Snsm_fe+v{Z5;?kfO`OO{>M@z`DM9#~P;bVzZ$G z_saA5e^aaiAAKJG7n%Ft6zlv~T5&mP%}x58W#9ROzmw=SmrEM%JSgE(s-G*PK3h~u z)5dw|1qtU#k(+u!j|?i?JRHGEYi))AziSl8Z$U=T)JafRBYI6fw6v|Pvbnj8M zSAj2kAJ@lDE4<Eqgp29qT8trFKuL0@UTI)g+a4omyYqeYg~ zsA9p6S`h|})})_v4`^U)mJ~Qp;mAsT{n*O1VI4Z8-qlfk#*SAp0<2n+K4Xvbgi)#w z1&bL=_a1i24y_Aj&%8p_)XvD(AH=^wc~5Z@?gRdn076^`;e$W(9L%^KNcF`H!)y0S z4)$2(z@@lI^K2tzjiWwQv{0<`-gRo#X`p@)JrpZQn`me=ggq{RyJ!K!-@+co*iDuS z?>s0$e$J#Ec%*k^@d&zoz5*@RvOLqJ84X=XWi=7&h`cX#{prZdWdP)Ti8YH~8%Ia? zQASSQUOu|_n#SPSKW`U|Z}Vsj_GWkV46m~$+4|4FaLR9~w&nr#5x&wljVo3AF22Z4 z$PJdscK^P(oFkGNLf&h@!r8@2=TSjhB?@4Mp7tv1yIm7J@ZdR~s#-_gqa&=r4e3Hl zWul0Mdz*Z2B(m6AfU;&Kar{kvAr<(gj@qVYwph&x5TkUmUwya!+R>;WKIwH46;tZ{ z3(>`K`KiBlaL&6RPWk(hjJ35Bg1XE>0dagM8=m>jLVt?1t6FiOLJ)>(0;^QB8Fk$? zLOf%^5s_HYh^Pj4x%x9x%jnFPTWBJuOiZTeAQ0@pohPsA5RGsI|Kxx>R+F?ZUt7afGn%;}K$Blvt)hT=KZ(}ND;vuDa^z}sJhA(st^#n2G_k%RVleMXp} z>&Y4OOw#%}wOjPAJWmYyw?QTZQ3#NsfGy~W@FMNXf3&Xu(Jj+<2S;+V=;Mr-OWQC( zZcjRC^Zja@8}9s>-InB~Z0yOyJ2AlPwf579o~Nlkw?)lYmigNeII(NsdHRI;k^q-) z1(PY3)!&YR(RQr{w%5Vp+q;(Shg*K`zxOLd3o+z9IUkX(IDK1MA9xVF>3MRW7;cF< zH?|bclbEsds4QYERmuwD@$Ws#IP4T*ZXW3uCZGOj=*eL|nD|^^Iop`SGI>Vtf~5&% z3?Pi?YbxP??|{&q%#HkxC-{k~Uk+|9Wdb~D?ZaM!fBCLHuU|69ggrV0I68YHo4s=3 z)ZE=gjl}^A-|G9N_l@!!|L~hGysbfaUUsl!mfndj{UhY7K(}^SyD!n@68T2FT|>xo z4ZB>bNZM4Toq<Q%4RqG!q% zIQ)sSAgb7un^L`mBzmD{br@Rp*YEQ4vxlGq1y}YVd zL=vkz^wYM4BeHmXdqY}H2UK2OCaqUjIf7F~pomo(Zuei?Eu8c!ojoVUr1k->nF^ea zS=5pYSEacqZsWdqfJ2Fu@6yU>_Qew79Xrn>{lFntG{Ym4KPy_STMOJY%k2Vf#j;1~ zoPp6?Kf1MDdhMb!IcSH|!j+>{9GO`FSvPb^y@u~6d4PNWST003TZd^SBx3e993gfK z+Lx!MzaQQ}UA-AD85H*dKn-V4){y%qoPaz?m#V2>@ z^;b&RfA;WJHy^J#*2H9zz}8Rge)HFE{iOlnc5~d(xXIn$i|-duMf{tV;`d!MsJ~82 zjkWNXvU76g0rj)Ka_9x+tx(p3lDWu%EWg;>+SmPdARbEi1a0#*(=gVs6djOtaKq~E zSP_?C;ZEQE>93SezGv-S;Go61FsFY(RG2RA&40`0k-J-1S!SAB|C+7$1-72IMycPT zf0iC8TCzZ3YE{+^F`)nDJJGA^u}+XolS}JZ{#Cf`QZpw{bnDK&>6A|YOcHnU(rH=I zWdk-q^HEc*Gd=RT^PMmi@-Kl?sy%8m%hkr7U;ilT!X|TaMP@(NQ0aA42)Nr@(H2Jy zr`z@tLMmL`kSGiBO`)fN5^wp}tFg9j{i1=mN`Ax6KD`LBk=t>Ppzn9&_dWojkA(?V zSQ>1b$kcX(zr+oXsfk=}!(E7yNLRo!#CjjEB#s=xP+h4Ge&l%=9*{2KyWz>h=(}-) z7FHC7go%Wq@Q0&ZVVR@tJ~fMJev=#3M~}K*SdG!-#qm{p!y(zN_r1N_I$jM9p`Cpc zKB??jAnOn#rQpu7?TKtkIAqX-Q0K83U>w3onUw9 zU>~Pz3#}wiV-}X56ZD#kmYg!~9w&%r@guoc2MxkDZsd6#mJ(YGG%w+U_QJ4*;jsqZ zVrR<^Afo9sb@LzdL#IGyPW|>^fFDVSsie9iS@W%&c%bD`AOzs7cCt^OQi${#k@a)X znNIp0YevOQm0<&eo6WarCCYPI)zdO74ql*+KJLa%%F?;{yNrmZT0{n=bD0ZPR3tX% z)bwFMt7_cv`0B%JSxi}6dt;+uQj`G?w@-HS(Yll?$7pKX+~wp+CjZ&MoZ_Vm0hfDp z*Y5Xct}|oLY-g?9guuKk>3n|@UD~4$+0vZ$h9t1x` zW{1J`0Z}711ue?E!56g|aMxJypyyOmaE}j*3RRS=TRW>e|2229xSk#8#-`K7ZwB{S z`(7%1Eb40q`{6!&(6svd^wFlFABx zQsa#@$%udO`%eqF&t92&(KOQNq)tYQo`ot|liVdhQBitOHmxaY@(XycDN${w80Qmx zsa8#$N_M*fF`@eZS}ack6GNz@3&Gd4TN>1P16b4m>B^6L^8{4&EHQPzSM^Mp4ajBP z3*VXBw{P^e4$-DpceGm8EYav$Z9y0%6Gn|-Ng=amf3nOV!LV8(=D_heWv4blPFdzX za=fm9`&W7|{_d(i(c=+u(hMiiSH=aNsC@Wwwr9SA9$}Nv8tG)@GKpk{CA3m@+reEL ze3HuwRt4*A+4)t@)7?2Ks@~j^2XxAc-SXAA-VZw1rLSZZ13El?Rzkc~y1ehzcP0`Q z8HLv6#L-m;Wh&UA0S&6I@nM*m9SQR36V?Ws&e)mEE|n6rgazH@{v+5Z=eG5EG-99{ zC_;TsNy!iw%0T850%>wR*k6wO2o%wbzlrfWx{t3{w(WOC@q+3)%NktVMiqD{p9N8k z`A0QGv3J9BRTswM!R!`0|@*^>K} zRv*(N46pCwN>u!chpmTU22l}O)A*iw1nTlW^;MUL7}?{EFe-KnsPdvfR4qorv4kn}z;!wIK&v%H+4!Eck(5x@ z7a8pGyFjXKzUcM(XjWTFa?$XRym8qy#{w*%o0@il%pTj8`J{g;jkSPy4c--AEJ{^6 zFgeTe+Uq!LNtLHdrtfsf8AT98Wv@KTzsVP zcE}@^_};yZH`mdg4+H|3!+hnp<_ocZGSFmjomfWqG#7UYG$qq5{eZ>cL-N|ofds%f1&a4MJ*a@8sA z?+b5wAAEoy;&TPWY#Z++g65yWiy86KWIe#C!YV0`Z!J^3{hcA5QbPu#!lyNJ#fi;| zYNcX6$$BI;0PE!ktL#GR4le9u)CQV^j7W)c!hYgZ^cRn5?F(=aU75Gl4J;0At^E?F z44VG%F|ruxPl&0m`V~0!M!v*>eku*_CS^3kT#Jr$HYI(O#xGh5kHT=jS0uWMH|=$l ztZk6p%RK54RZT8Q5!f`*<@Re!ADv0@ta5}+ec?bgPL=fPVc6C;=tW56(CXE61$CXK z9oLbSIb7fLyw1qH=VjTi6AmXwPIN=DEp&?rm^m!(Vn&m@m#hxzQIyT>>IVHuS-IZF zcKzMfk@6L-eJ9^tVuI3}-5x>A_TB+H0YC1H;_p`~PV|_67KWImY%R}@lEZiW|CpdO zO&{5t&t8*Jc{3Lki=dlKiE4t#mjWqDy`?&1l%LYkKHonE7MP-*XR8LqODo8AU(Qifm)=EE6~{cqx+lRGs>?s>#TS<)=a@_TN~)Of~90 z5H#da^i1Aq`1#w3yCsv5p1Qg;_;{!y+^g8oeg8q+Br~IjecRlTg7u-4>$p*izWMbS zqw(qZ+}cx8!<^@_ZOg?m9&4=OL`VqN)J?)lWhc9CF(S@X1~%+wwNyD>yDfaLv!*Rb zFah8%A?#SCX>rk zY=}AYBz8GOTL(R829;C;)QrJ~o?Gtht|gVywgu`cq4gPUm$$cWL&4%+)Y*evds0yLldFMcW{g_4kZv&I|)u$%a@L_Kk^8=l}M(VE8sLHlN`1V^@d8|N2 zdwX5HJZpAfFMAbn2j_JvWZvOk@Y0WEO$(~HWkTw>CP6H)SndZZlOs!=&lfzo?ctvR ze#>2j#alzXKaNj$Syd3d+=&!<&H~?;bbO2YJcuI=J{u=Ibq2}D*_jK-T#Gj|2E0e* zKGdYAcn+Wcvctw&95mj2Z$#g!==E}Ka153@;6{G3ZjjU2bFQVs%ep1+YnzPUgucRs z0UdapNsmo4OiKry?@x7F-%2^Vt=W5zWvW3%C(~m3pd~*f0r*p02%qbpS36_nK}{hI zIFgE-eY#^}0FTaxGL-_=B)YEfts2)@_zwiU``cXdNUNzb5zek!w@y@buxaTrU$7c{ zL$ZK(kB$v<`mAY>x++siyf!=*pl7niPumz!Y9QoUe|ehWRW?Hqtm|nCr=|{-WayyZ zM>!}_vAU=gPvAH8#<3npe6b#MhhSTO=n;{v{nIGg(s~r*bX&Jjk z5hJo%)+(31jw!NYj9bZf3$7q;Et1Cv*8(^8$2RiQ2Ee?4W9J4jB0yZ}&=W&C#*A8$ zaMKpj*Vb@|>v>@;YojVY=ZI=EH_NKUAq)J2y#R@aS_syzP=@ey9?s^6a5mf1z>ccs z2U|!@gF;Cmi)+}{E?EdqXf9&$bC^Vsvt!`3qHy4WO!QL@|A6Sf0mR4DFp>c>Kgv<9 zY!Pq`d>ziVV846b%exW-{kx;WWO-Rz{e<5QvH8{epJplXn1TytAxeqx9g%l0UZYh@ zF`E$s$lL>v`ym2+(GlHr{gwJqsD#GPrqxN)UO;6*>>MzMR+3bw$+zw(FXIeVH47W zOZq*RF2utiZ+f^ib~L_|svkMs2&eW-wYz8sctA{%zW;x}}6FK><_^d8wll zP~|9b>9Dh9Ki0yt8_?DvqYjfBrbJ)jtpUP+W6$`sKd>AIDcPQiB5GA$G|2id_XRF+ z8=49n!WNz+o6unRBHO=Vu!V02`m(ku-GY)MTN4e67e2LsV`qAm7Z8SlmK_Bv*5vBg zthj*<+~Ko9pH*qE-IIsbxnl($Q@ouGNtvDUt*?7!{IjP!O2t<}T`@+DB*S^-UF;;W zGQ8;cmp8y$J>G?qPOPY3(7cf6B*UCu{w%-j{rgk`c<=VVJ}B(BtyBNW2L)iM)xJ~* z+}Lj6f2~npm;0tctxp7!ykIT;E9$5;+H&gJ)!$C4JKG7t#TdmOw|OGJ0gt~I^sXs< z=d8lK{N(I6?Z@1S(qf$8?Ae79(g1Ed?FuL!U#oWe&Sefz+|fC}LsRp+k*TUONmOju z2rUBAo+r;J5_KZi#@&HWfzg58_&IsiD}AR~%rdH4Q}TI4%(oI(-gfpGV(ZUK7Gtk- z5SpWpJ&bSJmu8cgL|C^8`a`g)XqlC$W!o_7<4T==h2V_05NycRJ9}FoJGk5`Ynz8T zZ<8`C;3a36-ujM`_F57?Z;lQ4(|g6Pc=AxVqUw)NvFcl&Kpvnsla0uoF}x#4>_%1X zR1a7;!YuCb@(M0Xw=kzCz1$xZ93UPu5*|+}Acegcc_K%}TGU<059WQAA~-64Q*B&D z&VEr}A2iG<@XqvQA!1Be_~@w z159;6eH9j?9b6cFX9OWA#6tQ|<-^SKOY&*}0|rheKG=L@2_#bh{_~?6A#tQ5g%hvc zh|6@|fF19kBW|uuCiH3Jvce}QG6AoC3v{n9Ydt|d-QQMD`{2@2pA zYX24s$rIEuDqdh|EAN+n{Q_9NuYFqgfDhw$!Kp6vInR&ui8;q2etVa5^i7qFxb&4z!j%y+hQFLkzU zq(k1lSkVY}eoI$Ez)id&+!@WkS$+8dq8hQGz!ZI%X%VXno(tdFz2Z2IUYLqi9a_BH z&QcwL$;~c!Ty%`Welzv%x{wskjX@dBZMZ$ngH^+iX7T>n#~oWLaxRz`bSI7V z<=$ekfHsZ`GU>&z!_)er^UOod(y%c6u>>Ger4b)QL5KKg;BUC~v^CbJ3MM|9+!i{_ zn?n6p{!YgIM?t(&$ZsxpLI-dburb&a^2WcEc8xVt`ziSGJl6|vpc?h{_5iYG`Cj;= zWOjpUguGZz5><6)#z{}a@95NdA8_9nN@&7&4xDqbX4xdeKNh+g8d>BW;pQ2?yyx8?Q&X$Z zmBRY4sNfOps6+MXdge++F3i)L?qOZZCQb-vCh>ri%9U8&I`*>HhE~vfLuCJ7TceMX z)jrIkxU_#{@W!i!*=JyY>TZs}>LNmI|50r(`0YpI1h}@wqGSuOTKwemfoVq9;G+o) zPC}cdc15v-+;6D=d)=n9C;f1=SdZdN();jqH>1X!w-{nrb z9VQiE1pW>Wi3#t%kpbH2enH?+O7+83FP2m_KCxd*&J{}0r7!m9H$Yw{y~Z=;?LC<#mVyiBd{R-IhEIpr?;yQTQ3pciiJ$dx_j#+N zJ8#4{$_Bx4G?LR}>{Z{28`_?+*D0^%8}^6F3FX!ik9*p*gn7K~g1_{cVg!}=M*p^w zjNBPqjGMS_v5@Pb%USsJpWqm$u%2#B2@z-AtUZC*|mT<>@!DDkUOCY>n<`{XX=!S8-ReJn~w;?zuLA$-K2<}c! zxGq(7>(2Ooz?^w%OI6!HjG$-y#H_%$!sC$~jn$3!H>_*|?Hf>-zq8T_t@-$+WSk6& zIrH5wnBy$xYSq!h{Aspx_nhY2Wg+dcjL_tUtL_W**Gz75{kjd_E~{7zcV7LV;79XX z)lza)$sNio=E!$VpS4sy2_0g&XZbpgN!v-QNXA-p$e+=xbr<^AQU%`JOhCC!1?*y3 z;ip9Z8{hwbmf!pJy^YB{D4wv<`HLT;w0U&IMiXZ*4!VB|WZ?iXoW#akA7->%kJ@k5 zk#k}Wc3b)6Jq_bRV{}tl>_?JH;C4;_n2Y%Tnc3vwB>mB|Th%MsbB;23n@AM>utZ=f z@?<{!Wxykn+`-sZ`muRIz1GQs8Np`>cP=JrRjK(shX(!ihb#ntJczX?kZlmCTO zs_SHtqWrm${jp#5P+!DjNAF~{fM+#J54UU(KzTVE8fG^ILnJ{oyq6jJgA?;`~LQ|zNIhm8*G zuzGtL2fqs9nn)LRMd+W%nJoUDTs6P5$=vVB2!C9hqVIo^*W!pbZ{Sw>KzKnmsG$Ff ziO6Bzj{zq4zareFz1XsIvAj-h;GpS!0q_o&Wv|{&+-Y^_16&p&f|CXj4YC34Pv?mq z1k+6^s%17<|^&gA^!j#YY$fxy73~no8%^K>2X;fQ7IcdQ1q}P&sD_VK;Ozl~^Wk=YEdih#64kRr#nS z;rb=RirXQM5(!~_R|`T{){QSa%6q+BWqPe%X;M`Y&f~X2^!ii2^ve*Ba$Z>Hom((Y zEWD-`YYfs#ui4oq`k@NLW=`EPK)w8`_Trd{4H3K(>lPHT=!=Cf_MG8AX#e~Bby_oQ zXXnSbRU0-`8_0jPOTdd|SNcuA?BvT?XR=I4a?;(GN5<3se<5|`p+)zpf+6ObXtk{v zPS{OcWQ{ZU>d_sVbrP@Db~@&{p*YgN1vsbrcoS9k^z~t>Va}O5wts7sZ^TgV9&aa% zj*QfPh%)>5tt+jj${Mpk!E^NZAN5d^lOmaeHT*b$EEb2iUo%U{8)QI*vC8YEwN(DrjOd zH0rlp@qb6fjac7vX3wbdg5A`QJi-rC8yhALZlqOI+%RAa*#EP1dxNr|=a%CZNA!dz zQlA(t)_JcCFO3e;$#mW#WrF#mGy|PJc^_k89pY}8#e4Ct`{otdJ9xF!J7BH%eXi~wxPI6SFrkAC+SL# zdSC5kq*NpX*74LDwCU(QR(K8PmMrh` zxBW~4van1nanyn2iUtNTcI+1LqBORuswM4&{KwVW;sM<@JAIE%KEty5k_wQ5rTZa-W5lM~QUbu7hJ<+Qk%`qn!Rd{<7<@guLE`rcX3lq9x)$;9D# zz&pPZLIYB5AF!uGsyB*PooP#eeg1jbNxn7N{O1jx1Y15@PKnzu6@Po@#SJp~kI zj9Ry347#jh%~>3;%sLqHTD_rOR*gW1YA0>Axi`E$&Tb7Y?&e`GsLFQbn)tT`w%nnI zc+a2rQ$fXJ|L9=`>1As-$_lmYp7xBqz4DKczHJ$P5z+Z|_hFR!BpHV^jg*BuVv6LlLngi?q#D(<&FXMXd%jw(5rk zeRN+nWUCj;;ItzP9*)r8XK`E3`}JOeON6wJQG{xc4bCldOnYI41;)m;RYW&cqy@^^ zoj~G}b53lB1n#DW(050SYG3M!(<1jS(}wmGwrA;PIJl1gR>kn?=JH!3PCKhsFt2mX z<>H!)orr760^|>#^^o*E<37yyxT?wsgA?Gm{kt$JUB<@C8muR2VJSTUz8V_2#pFeU z`Zz_~|A#jV$vIiTxgBmS8e1p9tHL;q7XSEJ(=_)JyNm*0W1dUFu5~8kW_HxCDG6kY zjc740^ySIW>2T-$t;R@$lZq5z&{t3G&P>#g0&XR1ZP;kLfNK+r-f!aj2dOtddG)1> z^WfWkhkwJvrRg!Dkb<@^hMM-DHC>W97T1)qx8&JKwQl2Q<&Ne&o*0j$^pMW_C#DU=Kn%ELReF{8oq&7X#1ln<9$xgw#oB zgVkaRkxGmO^IUOD6c2Nrt1g3m^Vr{E@T=Y>8P)WtcgI33%mI^zZj8FnfEdp$hK?u`Q0m?GwWW( z?%Nb#IKQgmh7@fKo*UxG4s^{;hP?-w_x^H=3O;%y^7cr?g|SPk@A`0b3E?Bd={ zDRh$2^szpuAOwj}U$`%%kVc8g_UYFbB`>XW2@Pk}^x+>#@;tGuh~Rv3)g?pe5hBmv zd@p#T_1!n-yy;%09I^(#fZb&}fFWu}OBH2zFKB?yOSz&Wg0{9HaPJk_KSLs7tOBu` zW{qE?qo)Jb#o9zKL>89b;mE)jc?u~l(koCp26OE`J({r(@=m>feDcQR!h2>%Y{L~E zu_}AKu`O;W_6N_U^Gg7JzKo z>9cO-g+B+T?i!}cymC%CE#b?)xtNa(W($74)c>lhx(#2;f&;L$&{_St8CqHJ39Z|F_b7C+3!(s7IYCF*^ zbY1h`&0Ngy9$>we@Dtuk9T^dQS6M1}WNRWr9yL;UiyUNQObhJ)G}!a|taC)Z(a+d+>l zau~KB$7i>d z$7cO?!=p!PwU29gWWyfk6MPr}>H1?5#T+KZf37F=or>1ioeid3H!~PeGRM zT8!FjyIrhQ#k}@a9FqIcM^JU`w@)en9gcn}u9u+1-=aclYzcFOwloecMf&r6dC(1y z@wRJ9whwX;r{)$XSmi*`s`6P$HtS)Z_HQ$RxQ5%GCrh%#gZlFcKSe^kWG5BEJ_;qI zZCG=w67HKcj75@)NLl*zBcf;Ors*q+=7i3sC~frhR8CnvC_KFfpb*gPmUW(*_mAS`@*ZQix6qOvT2TLoLGC*FLM zfb&7VHIF*HY=t!8To=`bcbrO-P(ijr&a;iqqD2x+B`F9Q5hyPw#?ea z$$vX89_pELiRUkZr%VeErIz%|ASV#{2muvqoKgQ!QZkb$@7eUaB;K`d^xiMj%Sf=j zYe-^38?%g5sJTf7*)`0Ooh4LSIh~?PT-e=F{mQET27&O)ESmNr+B0O&4tT!B)$??7Q$pa3I&ROrUCC)fp%3qu3bo4Jyz!7f0~Y3?flwj zCsAT4e2^XKy=Sxf`PE1R;OYRmJfk%x@Wd>biM44qeF)MjDaf$7P!=A z6D!lRL|>&3somAAHsgY|>XfE)W#8>LLBrR}xO1%0o5cmNs(K4{n? zITl)wN6|%;Yc$X_E|!?#E)t2{eCfhbnM6<@-bTxRSKjL#{aq%TJ~pD6Qzak7v;M9J z_SdQ!&hL&}yS*575^Vgb`_&uY75Z5ylQ!f(Ue*oM2r*Q4(-u=W_a}ehx*xUmTXvOA zar|g>Zjay^L>&MMx;H1NKkT{oqHRA9se+FOtoQ-pVpz_{5xp&`UFV(t{{Zp7BSw~x z+M8n*L;{t|mtV_lSgvtg=L19CTXCWJB1W*YZ`R>Opmw>O!$E|m`s7=@YE2E`T4dVt zqBuqc-#EKqWyyJ+h5Z%$dKaQ;Hd3!4y3H4B6Nd_Fxq`L$i$qjw`&2F79yXa)TBv$X z?crC>%q*~?QBQER*?sndNy2QTh^ksxtD=gXTvp1DWY6v^j6`(+|6EEnVf0q!%1v!C z{nGL$yF=|#3GxrY;~p(KZ%8^w6mWXkAu9vy{vhIhVE8K{hKHd9@^~dwNBgr|R1#-M z>cA#y&)8}7h6jX~Iu}#BFHx@8GM>5z?83g7h#pp?Rjj)K8!~EdHat5DB16a^dr_o>tNL2#h;fiMV_s1Bp&1q0DFCEb5f*K=!8D+jyp`T| z3JLepQUt^_Fs`bG`pmsyLBVdZDba>@FNwAf1J3er!#iuB&=||%Cc~RSN%G!riswYS zu!&>HUn&cRpp`|*u4wrL4(1Euu_f4#l%?njp)RW@V&AxBfYO9NByghv^U&tru+TLeJ7;Of9dwQDz26@- zzK+Fr9Ncm4l~i$2^IgW=%S}R4Y4MtEgPJn@pc#0^?!@8PdWMEq@8og^V3m|osP4`8Mv-ep|9I0CTm^+I9}jDm}bsd?MURc<(Npdk~B# zM!N`xgEp?}k--xl^`T{)8U#g`=qvS@poF$RbI7IWsVI|!k0mhc3i$Vicw3|}lL!wZ zMYww=*+ceYxDDCz?^9+wNbi;Y&uZbngTaiAV`JM3OTNl7G^-GYhLhY;+?cKPD}mQb zY*lLhS{-v7XAnLY?D?Hqi!Ri2sPbH%KKjQYc{q};kbf|AKGl!^i<=iC^wvYlL|ep$2mdcVzu+1 z9Goq0>nR&n4eka6Je`nteXXqfwoKfM!sVtYm^zyeNywy}4X}3XMw>1=4mTC=+;(3b z(*=*I2KRRyM+#>Mo*i4q1R-+WUCZ3xj%RK|eV}v}Ll@km92I6_Z|QmAR%u?HE8%! zXM2oQMKvrERH3pc#6exaL$0ytSrUWZIEs^pBuqN{oLr;Zb``<+ar)?V(N_Z9JP*Y$ zOx!)4?K4gBLALeZ?25w-B~^=Nq9^;M&ebal+fmg*lMl`lm#qujksU9@SZKG9b;POG z_t`KJG0}%s_`it9oFk0*o*xw0H#6k|jA;g876jn`zIPio7p-v5|bOBTz`;gCTL$nS1 z({MKCK9tY5@ka0kSrF)o1&7?|;C(xC89yNJA+$-aC^vd=-J|>=)Uq@W|ANCN9*Lcd zU|)Cp$F`8lH!1x<2fR#rcx0K2(%1JdPj*w3yk9m^jddKn ze|s~+JvMpA;s?L(f#1q{sWcgroNUq5ErggaFJ8Z-tj2fvX6?E=ANrOo3~Rjq*God? zxKwP`B@U8xZofrw?~@?mkd$w*++IVkArw0qu{Tf#9m2_soIOjZNna0g>*ID$N>=>* z8NdfP_~P)2+}eA+s%@fkpl@OjGUaR4JuA85EqNl@$*ytY3}#u#4epw~@WpDp(HVyh z?o-@r@$cAYuME1i4^psv%^#RG&_$JZr2;{-$x9U*qSqB;MS z?2~cl?f*lvZ|Qu;kyF>`WH0+}E3Df`;L#Ry_=Wha{WDknE^`SlU#kwTO&p<#bWT#f zqT5u2*z6l>P}!OpjIbQ+JuV>)Z13TyVDlm8Aq&#sq#RVr+}Ho*24~`)Oa~oSQM` z^xR?jr06IV(DJ0D&xty-0*pBf;{vOcc)7JId}60fwTBh^%#e5Ev_mA|_Vq8>P`Dd8m_*A>T-0MCtnCaEJJ=zJ7g2@YU~`R&GNkt9ffJ7bskFK? zskAO1Kif+z6Ir}|p5^Ois#lCIyrFJn(?)iUr%fAQ+wT{vnjFx;D}u@@)U=EGNP+BC z_N<`nOR13WsRXSF`rvvRCz!!jK;==nsJ_d*=G)3BfBK}CI@zb^I#ZAR!|hanEDLhY zB_v`SL(PT#75fL+j(iSZiBQX)$RxYNI}+$x!@am&hZ{l1Q5ySbqOEYr<`3vW+PY$P z70+C3UVLz)jzcXFg)C5ks+;M8X>~Z?97)?kXb~OQmfs@|@*wCnhyDh)cq1ki1#5HB_dJ9NdT&3+_2qDsGdeCntuf!9O9sbnp4HF1g#{zxU_1i1PGW_8|6m zRFPc#-MAYOqOqEAG{N?Bn`qE*^RrRY?%Z>_vyrwu&q?vN2|C&g3;WR9#muCCXLM*X zB3pwldodSEOzHXiy{^Xdl0Ci|X(n+Z!T3sQvtWW+3NF&`v$^cIi^H^C^xTH&fVA$W zTi5S$<&_zk=&7tg6VZdlFn23*tGu0?TD~=_*}knvnkpaRZ=Hrnki;T~xyU#>Nz@}S zn=x_S>mKUXgMTolH`#)Px&jP#HMq(}NB#9~=$N`h?ircC=aRx0BEeYapv?}FMHKFw zv0%L460Bag^p&EWhRH8MF*pQ~bp%a_S_$ly3^FDcVPZ|Cy{6GMRxA&I{CCosK+c$7 zL>s5jM8I=#PhpBA>2cFmaY{MS^HD<&8rF=#BZqGIy8Y5f=ddpE31Ch~(S9(NX{uRW+Y%SD54x~sC($4LFgfaMGnHjF zoOqq5fz%((`{5StS|vye*c0L6+cwHsCz=ntB;7o5!L_+22coF`o(Raem+V&1f?vHH zBAob=J)K(V$$*(EUsOH_2@V*@ByNL45{=*gs|ft>g8#oI0xzfAr1u&4(jzE z^JvFVfNa=-U|$!a1hcvwE~GAdQG(ybyNSQ;AJ5j-0;RVTIyb1(qj{n^IzL87uO=Wg z{k+@9n~d0n6>>%NuC$8JRauRen(nYgqQAd#=iBzP&22%W7O$45Z^=~^qVkEmCRVUE z*_#2skioCJu-&0mlMgBq=1glY@nRUAWT)`<_RIcaQhwCvl3u3c`*ty1Pe9Zon|C=n zhFb}DM(o+JCr|g231kjdjg5FHRH7dAx3U-=!_8bSzb9%<0wN<8sxbOe+ley$aKYNj^_3iF5u>+E=*Sr_p4jDgnPp7FC|!12_`$+ zGV58P?l6gB=oc>3+-oRG{IQ;}C#(+N%_aC0+uN8oVCf8Gcar*qX}@)#D{$R`R9)}9 zR0^~jOwx-oy+$?9QK5Fn!w1>26*U;tno&7$qzsZiKp3sOdC)GmvM94sQ5H29e*=2W znIfr1-FKXxoL{$a+1me-OkoL5v?p$iu`%NSejHd)Gs^sE;c>P?v~bzI^BQjvlt=4>{q^iXH+I$n*B-!(_u;^SU0fncEw{^q|t9-IJtPU{&xHWms>(6^V?;NVO zwD=@v`fM)#eF~A+UiLyZV&Qf%Fa!yK*^QxpOeCG}bro(f8*W(4+6pUZc-^PCATjNS zn@>md0tdxd)6~To*W+1Jujc9elHQn_*dxtUntT*Z2(dF0K6gd=f?Oi&7j-rXXq5FW z#LwQQ9@P~8BgrTIFQU%8nxYnP2|jDW>sd?M_@!3y%&)O@5~E ziB)M)4cf+gw4-4CX|tQ>APEUrZY{_>UT4Rz7UKhxe~vi^ad1gMVDXzu>z%^~n6-Il|up zEi!dgp1pr>cC&bY?ch$<$|Ye_6ST-#AndsFp?S3!q+*uAA(MHOSg&bp6(m2*0i?MtLPYxCi^f z|5QJfP+9F(qS9SH(jOSnS0*vI(K%5rkl~knwV~d%vAw-)((dVhsXyI4>~ia4;S3c z9I>~3-sZr18O^G^%e z--(ymb95lPP+5kyl>Fm1va!fpoS&i#CAlUhh4qe#D>&LJo$88e)Y8@XNctYOuMMs_ zEj^!oX?%%8bhEX2S}?^a)!%j~$8cZ83g6TmMZXfRVps79s?N}oB3(>2oxaE~LlUe7 z?RQhnaujjfuPKp{!OS)Su~Kv4g_{5hcnzltFc1icTxioe^@7AX`cOmFR8Ta>jEMOnG6=6}ulvxdmh*^I{^41OZr<`*B{jO6Dyfx76jwcmYV2JAr>j8J`t8zp{mWV zbSGwF_b2C?N1Tm*s|casVUCZzg8YGRv=1*$_|@s+CvrTMZ{qfw4TPadCQ*LORii3L zy7}Vdx@lwxRtmB-TYwz-%F9o<2HW2~=r!$M#8>^q#lv zAZjv<#4WRf)~-9la-jM3IpIe@rg7o2D5<<8r+^{8lC0$27)l1bWGlw?vX4t(6TCn} zyn554rCOgTP(-MKFe(TUUaX{`smoo7G0GQ1Czkj?`pS72pF+Naa@Pf&Sf))wKiBV8 zjGQg?3T~?^*=n^zCHlt^GgYUbyU`bJ&##cRu9yCFYjhMB%sZ){$T!)682Q(U~QG(gVyBO>@&*3ZpdjkQI|TAo}+PU}}1 znJV=H(DuW%+KN~&Stft^kNe?8RIriQ!i&x&NgrAH36&``A9>TKh`iOS7FX?8B^qw= z<6NoDmG)L~E7%+Q%NX0>+c__+l4Q2@Y~p+Fvgy@dSDY8ami8>~BEd8JJQi6dcd@TYzaO|PXbEqNu-HL;wlNEcpl$UzGI~AWZNGan?QU^s>uv;?Uq`N}v;(*+yG46~eyNv3h$B5QBqt)|1rl9d7(3Il!GiZ4aH`V7>%Vb$|(e+%GAK2Nyazp4M~s_n*-x!sDyq@H-~1 zb&FR~DjPdDr|PtI{HcRY29J>vbF?hg;FBRB)%GY&1YBmMx2}Z(94*EQlAAK&)=J`Az-BqhKN`44;H@es?}3oDjF9}13jahm zt9rY;@b4&G3SN#$v&Jzfyu7aBCb59~#UPVt{>42{zPQH*81$(3Douruk5 zMRbha^fK#wtB%y*{TpTJ;hSoNBjx$@6+-xJ#K_x(>+nB641WMwdki64F=cO>Hs{e& z;Hu7jSa%HWlQIG1TsqKj?6Aos+kSsOVXPP%^vu*8t#R+*jD9^R!eH;**nGKfg-(*Q zU_oE*MID>fNu5o*(-+J`ZH|AIB%<@y7Ak8yf7cgqYn+R5ui5=J6-;rX`doQ-?Y^Vm zp!0jx)yY-F?bYKv!55Tstc@Gmr#)KMGP^LVowCZ6pLOcItLJ*xJb$)!8~{z$*G|x{ z_-2cz;V*{FuD;w3{W39ZAJ`=sILU<$EL%HX;V|Uq)bxF$ShTKD`%s>7gy_^+4+#P6 zjTy?X2k({mB*UNu> zkC5$(pE}lit>>){VOHJCa9e|6>g(Gs*MC(Rb}jnM4O-T9DfQKww~mf4qCNeFWGo@r z-T9IftKfmmE`8#5p7&vtv+2yt!9y%u+WJ{voM(8n>)zC>PH&Uo%0rTB17xjc6X`X+ zMe1^rLO~4ZYf>Lca}8HR7Rz9t&_IySeTL;rF*E%fLvF~zn5KU1b=P=sPvtme29R0| z@uTHB2jZp4!QY5F=Han^xAuoEek)J8y@2UyM6{dHIKf&kq`cTg{q=$E>9~P_;5=Sf z!rU!b0N$!0nYSJ{$-iE&c{DgH`Wcy78`fcEGUJXF2B`i4RN7f)=eFGKcINW*w1CPc z%`1M6$0%i0p9{F}p4K8ET+ZU2=FFtPC;NY zsOq`nZIbO{tVN=PJ4rH9R#JDaLlsV&8E`}nb73%oL=Od=ALr6oYmK4q~6aDTRDhMVj z3isg5Wsm9d3^X408QWh2V?2f11%kgo;lWo&g=9(#hNk&`3(Sm6$^E8^Lt3u)m zdcswvD->18;~ta9N61tkYDH7RQNHLi+&<1$ODdsc)At-t>pgKGcqiN)_fLb605K8m z@mQS3nrB)Y9lZ({EgN*@JK1L4dy(Alb`>;zU^($eKkC(>a&}u85zn zt915656I(MlW|N{vJbStEDz;jUytBP-sa$no|J~kDB$imnLcX!Ib2?PFSlN|51FG* zy&LX>lOUXSQ6gHt>W*j&+|H(0|HFtFiKM??W!i1~Hbn++CI~AL1V}Axe^N)sJMxlU z%dEy1Nn-_Ysi^s{$p$|a9jw|3`!q2FF~ctIr+B?_x9DaHSM}6W%Z)jKj}*-#dbvj& z!LQJU&quoPUS;+f6F!4&9l4kC(b)+Jix&`!Mx|d)waC@L1av&_GP|;uZgpFTCaC>t z5dOm4F|{P4=el}9UsG&4eR9Tsg@5eg*zjo{!rQ zTVVLlVq?i|sni7c%zD?luIEwAZ?m?jPv0t- z5`2K-_hwyTJ>dEHVpH(Bn8|X@V3>77xjX)awTPNW;@aD@4ovCnMyiH5Ccg-|7o$Yk z)^rY9vTDey?4=1xZBZmmR2$?1@ zO~iQ*CY7HgJ#1Z+L^vnO&D}_~lvD{JecFPS1X^G=g^8bK%3qJwrlwe(>=31;8Wdu4 zjry`;nrZzUB+2t{UyMvu4L54QR_;5G2TfrU>CEzGr!1cVUwfSF;d!On8j`#=yp*5 zxR$7Sm*-qqBwf(wVz7vY|8^8G>Y{K-;9`X!RLMIsEAo%Ry5hMv-ef9^q6d>P_loS- z))Cxo@hLQ$uHWFdwEfqB`h^n)cnYkuKSFwZ?my^3%#o2e&e9p7+OZM2@tGU^4=|!} z-FcL-Zq~0HO75|REzN^%DG2%TQkHPmOhMbrB}$&-`=(5q6!+-H=rV7*8jRk{;dmHc z$O+nG2Pb+iTdj7(iYy)P9>{w-{HZ>APZ zZ-7|P3OnTC$+(>;)QJ5EGk3`(J7_@IW$r0^+@bvE$_{`I&i|gqgNBJSPmuzmw!NxC ziA$-_gAVl3&&^i9u7TmsI5SZXrD7F;!vRU~b23$}cQZCLTV+w9K)i@3#LF4&CqZ&` z#}DX&s4R>{#-qTUDT;`uAC%VwJokD8>D$|t*3;7D$`o)&@$PT80EW!hlB8^@*oQV; zw59;qZbE0$`lj0voU)#?6MjRpyqXge`>qt;PIMzlic-CUKr$ngXoq0aj%lU{hYExU zJ8myNZ<)}IqF;VRtU?@kEZp(u$ALP8VPXPry)@LJN6({7S9yQ;L6~xw4_Q|%vpbKY zigs2kj6lDmDin2`CgalBtAfwsT^1@2LQHH~3yR||2CWo`PVlo&1HQPIM(bHJOEg;g z0T=gIF~KUy>V$S_ly_ejjE(7h^pB5AD?o$=u2WSNP6b}2&UaJ%9?6Aifkv30UypUx*3ONpr3hN@c)8nQ{mnuF-MhTJ*^ zZq3FsYK}*M`9J#dx2@{7IV$n=@l*>_M3!|m5sVknkG0;DeX<@9r@}Zjlx0j_=1{;( z*F0_fieK{1#Dy@@dS}gfS+B)rrL6mI*%*SeBtZ;*FkivwBfU!qbde9=?3t*!%eDW& zD`W%{H4a99sMeh*lKGmX1MYA0fj-FSWs zPNSqg$y7Ov^2JRrZlz;i zD_>XotVx4|v{w#ou;7z;!;H?nzkGn@&{QSNgg%DycgD=2KxVu02};LCMr1qCwvNGc zfm6{;fZLFtwiM;vbs*~qLyVBd!!N$%n;ocl!X~8CYl%C&d=Z=GxW6;`gLY&4#=&{F z_$c)Hc_COyubJHuK!>SYaOQkjHdL`y$FU}+WiEhQl;27g-{@sTd7^M+ohjhT_yZ1*Wvds804a^r z-_Ax`R5htS&|r3rl7f?d#6>6`y*YYG+7B1ABlZ_^Y+;EN6W}2G27s8tYgM;{ueYg* zD*F-+F4z1HzHoCa)s>2`u&B2@NfcuTk`_kO0KJ=J5QP;}HEN$N!eI*Cyyh%GWenx_ z$a@`qhq^^qi%NPg_cR38rPzzO9}lqk)4q{@i(EpGB7=%S{R=e}o7Pa_fJC+SJTBMe z3`e`CfxKtqve@4)hQqFkozVj`sOG;LDyrckUCiGmM?M;b&ykO;xs4O87PGgtp!r|bBRyeZ-PAgI;gh|GnHIF&SzDt zwDAcT>%ybBelod?;UH-*XHa+$=K-{sjtILNQO1D(lZ5zU zlfdjwlQg4trn33@4{Qn6BLd(1%<8R&o{mbeahR_*+L`3T?e@eOaj)WUFkT?C&@h6p zMzeA2Rgdc`u`l^rmTMo*w(POI{i$ zL$*CQUdy=azVsot&y+SLU@BCdQMf1`L9TNyjl6`pT6}3X^UL-1pKs;NYVvs6=Zbp* zj+N!$!JEcV2a&LCdx@kk!aB|04tO;EJ~WH!82IG<)=0tSFLzBvYcmTQ<}}KKI#lgp znb$vY83d{{Gq>NopB-#KWuv4eRc5LsNZr9 zsgN7(B{#IcWV}cgc}lj++S0Ifo>h*eJdIcN;tYKO6WcUf)a@lDp*v_rpy?Wv_UI_V z46}l}EQC>C_|6+Dyx^IF<|s$)-5FZBzi%7$ca3-Nwn_^|WK%IJiiQ!d4m8PRPQ8JYh zKKm{vhnZVnaZb>)7B}o?`mT^SYz!X$$I>Ov?j5T^?TpqFv)X&kbTsR$LKZOuE`Ybd zDjGSKD;3%=x7?Tr`4~T2^SMWTn|@Z1#kiY;5RN^=WBQnzIX??QX!N zHO+yq4*fmBuyn`%__Ya}1J>-vFY3$(dG9!R=r!eFGQ+bdsZxETy+F*zj16^g4u#|9 zbV)*la(X{0K_CIH=}8%#U``Z?Pkb;+-{&C0!VE)>|Um&!}BCdKo}zx2R+%v zcZJ~I`Q0RlYjNWL>6vb1n5&#Vutqg^9xqp4Dho)P(JZQ!qeR z{-9ru0QTIpn8*xSwFzw3`b27xqr~n4#oEJ=BYNJid0(abzuObh;rU}YtR=^W8`Uyv z&+@PomRFziaB&gQUL5OH^fQa(-n0W(Xm`fxh>V+$38G4btdVplihp+Cr9854MqThs zJi#xX38}=aZ1b(9uw%nkoFlU0YR*)w|gOs&dv6fY`x!=?f7vbbozT)vnW!$ba?wtF6Oip`FcDbkNdMV zzdtF`k)uR;=-2voruFX55!=#x>*)Rzg}5;Ghvg>#yxbU$o^>(ZDzOSB<=LS5nNnh= zgu6I$Ix78!W%Liwtx4L{OFMnbcLldwZQ5ZA#He3cYr%eAQ=y71ok}*laeT1N>7Ui* ztS-U!xVAle+a(;XhWLm7b!V?JR#dZh*lmosIL#5Y>|PjybBLU3X^12G(XpB=LZm-` zb_VroGHNq(aUcX$qZ-p^;JaDsaK>S$xaO|yBLZUCZa%zzy z7yB`m-=ou8#OvJTWjyOekj<(pEcPk{T~h)P`7@;Mv(DPlwnv#uP_5hsNZcLEdt29h zX)hWst?u;rGYTDxW7c>tO0$-yGhKS(y#jeGs-tM`V{dOOG%E`j?v0o~h^dsk6FY*a zuH$yZ*qg3S-`2x#!xrhT`%Ra63R)l{0eJ5YkoBXcXITq`TXp}zw6`)*3ys~OglMaa z@NzG%1vge#P#bCs`S0ysuy*3rb$7Bd?SAEABE2Dw=Xd8{cvLzwig@mewis~v8vX5q z*tPkn+?6l4P`h`k{)*!;;vkic%gfbq0fo0QOKM(tuWqZwB}7247<_*Oz;azYTGNL% z&k+u|JU(+|J_TVCXB<6M*`JtQRrz%qjH=iFW0>W_11IO+VLpcd~eq}%M zRxHt{w3vxEYMmDs${5Ghr*YW9|F7o~#r1vNl1NeTXbe)c)lKE>mnrHiB_{+mjwM*%9E}eNbyWi( zo2bzEvFX6lvrwqSqOB@*OjgYzf}1eXp%&z=`K$q;?qZ?? znmSohANpC2w+@FW?$np-SDJSg8I1V*cHXe~1HP4cl+6*4 zp{&@-s0U)ge=aplEhEXfxE!?VJEK1BK8)(q&iQ zPqLO~2)&=>br+pn%7-~i*2|G@krGB^u3(CS^;n8hqiTf$B*LH8Su$co!2`mf(;iOG z+5Q<&#Me&PO_j|>{*$Nju6mZILTI-4TY$-Gf%Z?OxsQXlW>D&Nj21Xuey1XFMnM7q zr7I=y@MX`!4YOdeK$F1nm2)DE%^%$q<8T7~wKTR$g?gdM!6gMczWqavgxH-EuHChp z%wWb=$kOECzrzJz?-s)ifC^5^CdbTLM2jmc12?9J5i7|dIrxy7Tg60?vhNhoao?fw z<9kIdA{Sf@tnKDP?3e@5d(_?@*WW>{t4?620D?XYF4=<)Jy)6ENii^sVjlNxQ`RZJ zn%SV=c=P-pahrGxpJQ%j`pMo7vjgdWhTmsxp%ZR$f-;!%=iSsT!9R~E+AzgF!Qsj>TMppPYGHYuVrYIMFOP*9r3IB7!tAeb?m4 zf5!jSvDHqEi=(bRsu@eL9;-aFQ8WlP5u+P2a2L^ ztn3i1#MJWnM0NcZegNyl_)04Y3_&#z8g?gD#EsS<8RAUuh*LPxpl^P2nzI%8Pn{D< z(+9hqOvwc}noWKMe;ik{ZPMU;(|jBv#H;k+QH;os8DJ+5M1*ipq>k`);jRYTpW2%Q z@4*luOU%jRNh8Ie&7Tgr==tV%AxIMWxhZkM_#_kVjGFtX^RZK2UHJaq0^#(b5`s?6 zt&CPSDH1B%;>UVzSOdM?q(2W7G-}t_vHA7y58fgy6owLICAZA>{wC;bR=(hRYxx~J zpD!2hB8|;1zvpSEm0Hv>u;OAi)S1;=TH1BhD}2!)AQ>^r+*(CyU)8#&qX z7W7Rpd%eNp1z~}ua*h)*4*MS9Aeja3s=03A<7wS)odI!8-VO*@b|7&fQc(%vn3BmM z{Gx)EJ1m}g4<@Ec=w1OJa0?Sj>Ly)*6t$)&;MgmAU73I;68%?8Twf7(X}D4^_B73F zu8{j;2Teo_VwCbjB38@32)>;rt;%?fpL~>&1obv;5GysvHa|cV?Io0c|+*o(z)8co5!%c|#?(v>Y&ZHS(c3phrZkATLuNGe?6%dsp|?ahk*zv;YP5AurGZ>%I>V6(KHXM;r#KP?l1e4IQ?@v4ZX-HyEw( zs1{GfLi`lTV1otzlP{kb?;35qp3ium z0mbfgIX^OOkNM;5g5!ln$A+hv<8QlMS||cr~bBWw*l)bZbD= z%6ML;9u@A=L;KrF)p0Wf|6xaVzF2_JkGkKqCqgb_!5oLh9_kdIqAq-ZXuqxIKD`SK zQ5O7@IWLDim1{Y_Q4_cMv!tsVuSeby`Q>VEsXKx;ahM!(XN;@3y6!>7!qT7q@HdD`+iI)BmP#=6A`2x5~NQ9EkZr>v<<3)uZ0Bhv})0sei!}k$BI!4l%Jn zZnuM;hsz@vg0JHN$x44YDM*dH+iJc#W*g1lq}&V1dL!XWhA% z^cR?4=x#tIi)#pQ(3X3sx0(#zet9D)Oi(V>rp8O4*Z#N3LoxSKhS4UGiQKP(KQzm2za|8OYLViO%oEPM{ zw7aE7KO^`*G0^|V^jTwcu3kHgopc}n%ltcMVt$sablK=>{jLXoN5`k#`lYXgS7)L~ zpKGc{Wg+v)&rKaWj3B|gY5fdmwJ^&dJm_nG^g5m7oJxTTqiK#Y;tmcpGNj7VyMv6`Y_uWk$+uQr*!d%v$(dL0TYZ}v}Azp}SAv|Go1jkdQi%?@ZY zfG=lsyjF*0iKv8!p%a7$q{4nwO%bvS*~d8d1*kutv8ly4=2j&^z0lS7!4j*igZUHj zfZ-OyCaOVnm?Q12o%uJwA;NVkh zBlvKAcb^vHwiU9sp^<(})u7g~vkWfIyk4Ar{|tj4mC6Eyd4E4J9UFRBxrV*uI=z(< zpVh=x(hV}JguQ7w(3VJ3O`yn;yfu6I$0tBO5D(a*mx#_^tj^5M5s!cTU7Fy&P4gU` zo^-zBuLq;Q0Ufj>0}0KAsPCnRB< z%xg4q0i?5EKk++mvd;4j3o7I-ktXJ*9s=bN|zBzjYlMP zh^1d%)32ALh7W(cVRI4#s=l@^65@Lej;To~0s?inO4=+=Dym0@H?98({zoC0*q~sJ zv09^Y-Z7d9I_LGU9z^lhyT#-cB1A|8!=o#A25MH^qUq0y{~_+J`sHvv1mDNuE51&- zagl=C0VvidOwXrzPEXYJ6^w8mlgsBaD4{XT8puBoF1_K${-0O^Pq-*x{)9vGh{CyG`qzKHl5&&C0d6Wp8uuW=`PDZ8ccumpOI2&o+Z@MR;R4{IVCn_5zq$ zrhuD+HfSEOCg*_?qNz&6#7jIgfyv(3W6 zH3zuQfki-WFKhgJ|6Cqca9_;;%$h>^xzuUE!*1oV(1i_w%^wTv7cb=Vp4i>drPnc> z&;HQQ)JS~jSOb=t8_Vp2mI6IeKSAQ62;60;tT0iZE~E#qQLIm44z9Iun`IM{kXHI; zA@YbI#~%>8r}8UDVC($6tsJMj-3~*PW(XzM#7We}1 zhxXMGOxAS2n?`TR7Y3GPg+BJe)?Q2jDRcAeJKq4Tb6^l|e(>`KA{$N4NXmlO`b(g) zve$4bGNNMr3Xz8WbAr>G8=Z34A={Bw@+0AYD=}eAzTtRid*Fslx zCEalI8Lu;h8Qr%bAf`*7F=|c5BGrs`t+(N_U;Qk0vYCM)(9IKQnLMWPJ_{fE-!rk^ zntJSI#lj}~c~OmwS?3e?&Jvk?=6aLE`VnN_HK`cwhLtjtjktTwDf0$3>RT$sC?io% zDuw^*MwX;YjOcNjr9Z3^z+?g+5CoDGe#v2CQ4B2e6Y*Fe(u(ybi3*hBddDPbND2wPM<9yEA6}fb!JwCr-}vI-@@u*cB6mZ~iJf z(zBzU)-eAh?44f8D!k{p zoed}Atr@4DrV9oe#*8=*LZsNb>41l*wIny4o4kLb% ztFF`GUj5(>aA!7-=LRoKj4qTKv4A0~=Q&>;*$|=vSq$1@Q1O~j{W-0M!i0Pw0HaHQ=L?QCm16vS_ zT7U74CQ#T$iIR{$A;?477}Y~5x;q;0LLVm{wuopSFozPu;@Uq@tn$)CDL$U#LwxWb zpX8VROWl&X|2XLuJX5Nq~x{fVfICNKf1pAFIz(;IAJsM(_wMcmZ_|0YtXKu?^vgMl6^@>!{jUDzhVQ%_|A!)Xt~L08mDo9^2!~QC zEOV$zEx40LkgOs`CmK@Rw)9jg@+hVQeM8MOYE=Unn$fqrD6R)S?FB&`epbkCYRQdJ zr^|g%?htBTXCia}v6kBE*LlvV>*RcBaKyiratH{fqW~(e#URsEHAzp|u#611D=r?& z(EObjd>rt6uKIdkt~rdoM92Lbg2pV>ivLJ-j}d7|Xn7P&SUzpR!3LsQznc1hCO|_b zCiPt%t?vNW##g*u63*ipc5O~L`Ou@R|ZA0WYM zOntWV3Kc`l*i74AGBvo$EL>N81IU=n3S3pSDdzqncQi!2`qN@EmO0rN3gr(n^t1NA zKJj)vYMf^8>>{~h@8UEHT71r-DxydgE6vnncKTWK+8Z_@v9^eBV-6?gFXmL4GM&@C zc9(1h>IAaAbjSQ-p4y(p_$6GCVO;6bVyV$j-detEK51}MzjEB?&bSZi%YhRW<5=XyK2?P5;dMQvy&T}l6Z zL}(u6+VJeT-RELlgs)4r1^hy#^DXHT_I*;N#<9j@@(8Vk&jHU*-945$_yLg``S@1e zIPy^pklxOEZ~F;vpBeDFsw=}Az|M`*(%fi#M%Kpc#6x@I@09ocY3g=sO+?S({B#9F zOxmO3I56y)$Vs@}hz<#0S_r+i1@HK7M7AssbR~XTd-A7V>gx%<1GuFot;KYWP*w=Q zmMe7bT#Y%!%V2jFnB48gk<@MzIUQBcUzEU@MSK6OL7G0VehKz-x%*}JRrrn7TI6Mf z{Rq$Ty~6gx7EQSZU1GVV*u_=t9eJl5f0SLbTrA-$Dz1D5gn7PGX-JLFSxKny2yKY?M!d*jEAgviTF$MQ-k1R;JpWi{m zt0Hiji?auHmSyb@r5?)xI;>23+d(t_$CKNW&G7^ZZju2h5@8UFW}H`Cy5B3z_VeUg&$_lTAgN^s^d#5rZ-co!#$1xp~W=? z&vrjGN5tflCRg|m6`OEfE>&P+BCI2RZg*~~F@jM;c@HTAn1#?3+ijFbZ8{3wPm!PB$75CP?ksPb z1>+W5Pdasea_>APdnKRP%&rK*4IXy@ud9}pu9gHt5{H+UG~-@tEfUS7){7JuIz6vb z2O^%evX8d7?BoEH?~Bl&V1nLc*g)cA)984fp>Nk^e_EG>{k3Dr+^mrp{(>jCvh5;72)HrY}8ey z##f)23k(zjpZfv~9)xh89G=7(D7W27#^QDt19Fmn3);|^OXeFx!au`g$jS(U0TCn>?t@>pyNTrV_O#Be3M8t=MkV z=Chy&Bq`)MMwiCUL5G3nd_8;dkf{*6WTrS&6W3KY%*&c!>0k*P&wSgGWqkPudwb9B zg~7%M?8<78njJo{zdCF(f!0$g#P@KEMY{sg4bn{1rf)X)O`X;YR!leVMVZ)ZRpPKT zOWrn1UM*#J4<{e~$dK!JroAQucf9oa^QCN9EowXjJ)-6i15DObWU=Usnr+J$L|CaxSgEuw&0t=tHmmf1xIKI-Waq*BrF9?AzrxjuE$y}civvaNyo6mpD>&!X`TE&z^dIA-;B>D7MSG~}!acwv z_ota>=Q)|@72Sejq42KMBnLK*rev*mGLb}i#Qhl3mvl~eB4sN!Ymrpo=m{-F*30XV z5)X?9lvL7g<8OEE;qe`i4R@Evk*tQE#xGA2D8Vc)pgMXE7fT zF+0%#juv#As7^@DlToRk03n}^WclUzv!_yS>MgV;UbNT1Wt!4z4OcZH?zPlrjx8A6 zv^yLXGPvN}b*EUOePXL1s#*qRIOebz6u3k$FsUt_*pgOV5PVN*ti>!USp~J%&rmOL zRK@AZ1TAsvbP@)Nyq9uFG^QBj4ZR(b&J%y@w7ER^d-2s(5%Tes!u53lp$MeR9=sT^#qFE;B>Ckz%74XHc5U_>7}g zX5!LpusaUD>|iE{=F-d3mCHRtNtt6F3mN)aIv3Yt{0> znjLU0h|PR;b|;x<5f42Bg&kH_A$iMV!h-1YX_(3NBL5kjKVo8ic>Jr;C{y*KlLa(@ z>>ggYGrO?+J^A`;xiLk{#sZUR7vjcZuQcAQM8#zCh=iK)zfn?UwgbZsz-CLq8O#Uv zV*|MGl6^M!yBM*cpGl%t(_kHG*HYXPrciseY`W?z?1!~gbV3et`4HMD8LbCqjFzdT!+|wkxU5Y!x zYHiKp%#pL@(0>>=+rP=;nK=2%_R|9+c)WYYy1~kq{Q=v5-aiD>q1zp0cTwFH8|%8# zs+RFFK5J7GL>Glh^ZFj`SjWD_hC!K_s*j;(b*1I{%fIfD$f$Y(I~Vn#p3QJ!6uTC0 zJTH6BFFSjd?25R{Z;DEx-=RQUC(6~+o2~jMk4qY)7iO2s_=Q`<{2Ugkv_Q~>?~9tu z(}U;y?#C@{weN;Ioj#=&zXR2eacSC{C02_|{I}B3+`d&EDH^UiMnO%No8{(MyuP3X z2QtxN)Ck)F>RAxJ|!%gk?*}|!{AN_c^TuWPO z?(0*uxE*55Uutn#Q9sVuveOIcR7pd;(0I-tg zp=W(6T$1Vs#sd$HX>KaCH;brrkE<-oW~N2HALRm?pJvk@Dw6v0g%Jaj9@>}n#+pC7 zAvfq@qw_F)o;B%I)IdX0XNj5ec-OLKj^YNt^n$X%tv@PRj{(5A$&!1aU5F*IuS6U+ zlXWA?A)kLH{=9wm38#2M6w9C10yVpF^_|pDB!X({W2TJem=Ucjc*;3} z7`GOzPkKZWy9g+gFFh)aFK(BREAwZ$tXBr&Rem4E;F*hEVJ&kj+mZc=H%41MI+yO0 zVcMR?hoG$)Kt|#1QE-sZYiaFQgZ~17axI95AGJH*<@QVH$I= z=Zv_LIcLN(6MAjkI{le$KNcHn<)yA4RQ`g;E|v57BufBN6r-twomytwTc-(P`K{nKx4%D8RXPvW zF{~%rBx@N&NvH(Uf_C0yvAqLyRmqDMJmo;|(cnh@{tGtaUJ`X|F;So<)_8SKqu2Cd z8by>oHQs7*;A?6&S5_7`uC>uV`YuS3w132{2{t*H!ii0y*w3slUFZqJNi{h)kzG6v zPx#-y51w^(+u$_q$5dHPLx~-i)Wwme?8R6=fcGCc^-A@1Tp`Zy(xJy%g_u zWWo#;7fIf?PuCM$OXX^ZNja+5A_5y`=I;|bx|OIj6+?wAk`J|xVjaFYGXMRu<$OZ7 z0e1XVVv+g!Csw_~lJ>AY#BEz#495ifQut=8ze`USl-FJivS?f|f@XHC#QstmWH;Jb z;JfvqZnzU37^bS62;HbP(C>0}^VyhKIbhicW#qxSEnn%FGy**Y?C7Lm6*==U#aNMj z+kqa@0@v7D8QWfpE!6SlfAP%Nx(Gn5r-t-hUNtcZ)CgMNr-l{tClNbS11{klGjaL4 zzpI+~CyOvEEO3ILY{%-(z)_Mx)W#CkCVE#jz1>)xNwK5wf^Jo~!M=-;&0@A#XO7qh z;Vq6P%NNIwLUbYXwvpeyr*KadH^0Og~GoG;r@nhWp#jyP=6?5ALYztk^Goo%#39zt=s_4!d1%RNwg<@D6mQ=c$anMGx; zVznUpReQ|o{u|WYxtZPL?-m#29dy;Vi+IoPV1!xUpiu~lHp_qVf^1^ebki%;tt0SA zhOv{oJjP+la>cQ7!~eGBz#Vh{vG4a@6-7?s(vx|H#T!(+&TAg}nDK?{2w^$o&Kmgb zaEXJ$2~%A{i|SF#o)vp3%J1iBj4boZBuengDC0J(b-#y`a|R&8@sY{{#=t$LPne_c z&V6Y?Z|az$ng|c(B#k2l_np?Kd*#N~qBdS@|4}UFjm;&CC#x3MXT&BGZL%3FCP2iR zsL@IvvU^?{sjfSrK4#^egYfdo4NY9$CSST}1fN`U2Uq~}<&K@##ICNX9>SJfa~vcs zrr(yP4P7?iES<$K(_T0L?*j(g2rZEwyr_FYeKtjY$Fz31ej{`VU;jRqx%v)*$RY+A zIM|ot-=@vL4g3W-KhPHA-r!v{hLtX}r? zSiV%O9Am{r@_@xECnA0&l@ckAE+?gi-rYT!m|}Qr_}*I$f9?Z$aZVPRgnO>)aijG1wUEi1+YaeMWZ=&oY}Z^v~}=q32`BBQ;x`oF^@ zisQYGjz>O8dWJT*G`Zem+OZk}`J)c~372%td^@Z)$sW?4mQ8caLDs?b1`SbSXRgO@ zx)CsN%?(g}3u<1UM3cGrxzqb1Xtd10B}*obo*w0VtU#Y8c7(**0P9y1>+jmBZdB`g zzw3`$)l}-@db?g|ODy&?tZbtxB%(+F9AD0Z%- zUgHT%AO~n1Qe6N(h!yv5wT6iCr80t2*Ga)hR+S}l+{(GqFgY*wVOuCVQJ3*!%Tf$= zF{6t+-_ooqB26pio|$#?|RXPiS_H0Waw(fMa(#h@%OuG@TD%-`rn zrAf;zqB8r*xUImH8*6RO#J(iwF*)Z>@4&8VSyCx+u!Z zjQruAySF&sqLf~k3yD5+bJ4&7dHt9%<=Au!|6lF9AjY5M{5uPmNCpN9KAyc$USo~A zQ&mjQpuv5buP!&znCar-w(EZz9o*{Fto`-o!jlEDaYHf3nq)ofoP8TFrd3MbIOL#k zt(+y;CLgbha*_^24#~G0SRK-lqHd zRnSC86_%uWyklN17wEMQZFzHHGVYRxs!UM&y-f?9`BF0I3mla;v57QD-_P2lKs<2d zxbY@mv6oh9O1?o?j8rJ_gI^8`4G5}=vz`%Gz6*%%vlOud&Nd}XjRO{L&-@c1sxV({ zymwCRSJfwgq|ZibBZ_qEjh`WIu6HK=uk2g@7-O273!-%_HaYA~hmDcIcZ2e@){ZO; zRkkU8UU@O^-tNqZLOuz~m3o}p0d*`%bez4Pt7Gx?Oydjfc54seu2ZjLWPer1Z87s| zAzCy8-kuvr(Z~E=+|DVyhuPb}?7c^+!6pqB2^9pRipRE*bkUC*O4e`xvQl+Mjtd2ivL4wG34rOhz>j9@2vU41MwK!P!SCee+F8 zHyK^JGsZ8wZe(oE_fPbEKTe8(oeGl*!V8l*SJDd?&cCNWi}IEw>w?1vC<(sfFI^Csr)O*{HclZZDr;r-J#_{ih7NWEWDG91_wRw_5=5<;=g$M zof?22{VDTsT*JW4Ea6iX4z=tGh+VPK^+Ci->z9;<7(D1j&A9@`T|K(Ka^)>T%$1}K zq5GaW!z@3kZjDuNDivBcsnr* z8e8k@vI)SiwI8=pL;AGcD45NZM2LygeyZG8*FDB(dr_f*ctKB>`jbiL>MX-Yt%Fr2 zv9E2^{)pNbIxejY4Tv2%9rpHc;Gr0?aL?S7xZfER@?Grh_{~mFfykLORG1hF;{F-3 zyW}Y)2I3KzF5)Uh(G5$Nu^01_@iCv-gkO5$LXF{ELt$R|e>#$drKJMeb!cPlN(xOu zq9Daws*WbFD>j>3k&>@l&2Lg2c7DOqhV93k^~A9Qa%0+%_cxo2x3Ck%V(QlH1n!L$ z`Cxb+woAj?3*_VG<9+`>@JvJ&WFQk|sAnil@6~z&hWZN!gGImtQn!-bEpoav9*wB? z;%1tbyoc$39|oNawW!2jW)ux}ZTiJ>fMrWZYlO*U=GF%>LAhiYLdnqI8E8^Q|2Z+3 zb=J^eeQf%XT@K@A<5n8nhq;YrHm-|qq!(bf2eo?oRYLx1h~?&RHsko_^i6gxsVLm- zKRWzhRmicVx-P^*n%xh=V(6*SK4<{gEctV(973zspn$g(?O@TE|8$6?ORDtVkW?C9 zz`cFiW_G6Z^RJFiy(p0B?hmpZSKvF2|5%rS5{w?b`Xa9f@{=7nY+iTrkac@?aEQ}y zHpwAZ+|tV|*J^IHOUqcSYI`Q>&*S~s?@C_z?vtMq{5B+xvu;`yoxc?NaDqvR6kny9 zuJ#?Pd#Jac0@8;}9*+;fGwZ82x3mklY|hO5g+rmVQ<-@cej72is+!;G>2YvnC6MbcfU{w)v9Kj+j>$b+RKE**_h(n zSr(_^cMb@LSVFHcqH!hQD7d3`Wh>}xi%=a^USCopLXfLwz;31rAu~=8VSPi6>Fx$O z$6;@1X2d%D?DQ5gtZURI;!yp%6sIQwU|-rfYiq*cVoNK=NNwTl!}x?vd_I96{BKg0(5fwVjR4MRZKV z^M2E57m%>dAvdXD?ZX$FeI}LY_P;L{@cd;N(H`3sFgbv>c(Z67kyfK0_FaqYs|E}7 zs-53}e%*#uu20)D_>Yhm%CG@w*7*2wAbUj7m_-owR7ZR9i1*qHBN4JQHMJ9SJ-~Jv zECtqt!Jxw2X9YD|_016tj7KsnG#gUDelrDMgk2ekUx6xrvy)hL(&OZbSl*1+){sL* zXJF?e3%MzeD!ZO)b)SupReVgNXu~|8l0_bkqi_0x*)M`-Q({MRY!HJ7aPa1y|F|I5 zgV;;sZG+^4-v7lE+i+fjx5i*w3tyX^^2%5e@p(i8^ z#q&J^XncF~ZFB6Jrs1lqYGBwNaKQ9(n&d4EG&Gf5sHDTZxn@L&26n=yecV=?fKNlB z(gT9Oz7d1Sd3SSm&MBaAiy(~}a%Z26g!-bi?2}^d`%L9&gOyr*%f>{(8kJ#ikybK) zhh+IRad=Bb`BF=#x8r4z>b0=q9qnY`FID~5w$94p;;Y=zHm;eb!ACyQ`gLP3P^qWo z^cI{;o`rn(YpzJtSKIq*vB^#s3OkE&R{@)Coy5ci7*VJvRLr1A4N!3L%YcnONz{Z} z9ZsnVUdy09wdv{CvHaCR{Ll(cYEud}0B(Y;VdtwCKkZb)`!fxp@^*lUxst%#pa+_r zs$6G1PT|+nV)h?Yqu0`;i?dl%7r_0X4ub9W*`Z^o3;f4xc_EA^W+TB1u_pJ&m7keF zNWX%`Q%&FXZ37divWn|?wSMT+Yjh>IE8u#}qJv6!?J&j=nJrCfC%hV-ueUTmvhD5H z;=Z!Vvi7C=cx0iOpQ>`ySLDsaY8+wG>j7VQgX%UPsrMM zqvSJcQDa?UL=UZ39FD?>SJ?{%VXTjzY6h4e^F)s+bO(>CLE*te!Lb_#9;{3-LnWVU z-n+tjqFsEm&o#QeCphD^=dX^db3^%?yvs{BA52!SimHRjAK1jUs7bnf@%fm_OPc_`&S4tnD3&yfPa4H-0CT z)ji?x(PZi7LU_Ze#yX99RwbuPvizg09MDS z;x8;l>ZglCMx^i7#*}^>0?}hsd{4A(8rMMBj={QCrddx}P1L`LOBcHN9(zyxeOb zSlaTURSUo1PqowucZzozeG1Le%SFvys}r8lvZ~BN(*~K*tLe=uaCHHbTU1tf3v@!k zGSJhVXivau}i?a#&>#2T#kCkFY?7@RR>tks2O7y9MoTCTiR&2gg#fe=Er}QY;$F?<{;9HL&fcoVkgsH^@1r zyF%S+X`}KF*(1TajsDXx2KlW!&5L*84Oa zrZJFN=}B(%XXyEPhxz@y*(YAQ$U3rE_$`_J$y`Tagrq?MZ8CCc|Fnb%fQRTGwJX&M z)Ap}7o94=7r|cHIfQJH;XHQmXs=?fEnY4QtTc}J#4?SLq@U2|QhR-(4Om%4(+$*j( z7;}zYT1L~hPE4S9sRcn#m8F&b13TW>yS}*o_{M)z<;D5(a}vjZ7|5V7;K4oj?WV8U zWN8f_UF$!ig6Dkz3ejSd*5;6W!)9WZVb)M@;LY1_4#|W@3T{9 z#_pbI3Y~9E*L1OtcMe@P*G{hwbNtnQu;qk?_A7JAmu7b#pOz7%(9SDf`1@4DRd;H_ z*^VK@hiA`Z2mST?nVvs7EIN9_a&!NT0Wpfmt32K#_y=c|bI%z^V*LgX1N`D%ZXcl~ zzs5*EY)g3Q*u#R zhKw@qaamy$>79<@%Dye?FBjff?Hr+YR)kQ<_OylZTiBraBe@YbQwjr}PuWO)*9#bw z*esc;@S~e~e=XP11J1_u9aJAELOg6!BH|n`pC!?+j^52sY`de6#E`D-yu?7)N9i)E zP^fxFhMfh*K=@9^{HY=1MzJ{lrW`$*jNExbDf%iM2yc(hRw9L#c?uYlw*U=aH&2 zSC>xS4iSeioN@h@3*80Ki-m0G)=mRqVi8F$j9l^o+UJ?k*jZ3Fd{=qpBvc{=wr18q zRn}~z&bg{~8p(MplW;04AJn#PRystT`!hEG8SYJ%Vfgzd!j`A9zIgy`>7yo`6TmR0 z)Cqo&5f?9K{p{UVGQ#3yx7n&0#S!Ne_!T&3!M`ocfjA4{xK><{z+!JHZsoL=LkMcF zOEJEvQXndS*C6hKM8X>oquxET`_`niX!IOtm*z^mxNPImnW8$@SpU>7wpek59P0Zc z@&@Lp=*xDIifJ#f?u7OEqln{Y`mbOYBw}0wMt*snyfU6HEvF2k7mRnK60cdmavDd&w`P_D?f%sCq)*=7Tx5{lS!~cF( zbHe8Qzm>>n%0jznKtgV9xjVq6w7WatT6eD#@0Ma$8OvF7W{WK^O$d92o|02Z*10MSZVe*w@Jo1c>2KH};V9J!a$9$ZgCZ z_QU}=l++Q znVC+VYyM#ad8*QpfT*Z1%O9=@Hroj~%CB3yLXh4Pj$}~E2(GpK8Di1U=NSxfJor;b za99q2kpxojU%_nesG4vqT*$7ok5;SSeQ4u4SQ=PGE={`E@Mb4}3C8GKHayN|L`I#P z^saALS1Ka+mABP1O6sW#i2ECfdYkGI(e^#yUoUgYo*~pONqG!vUqkJ#T~zn@@XXjV zw$#Weo|!gaqE)vZXo23P~3=O0=r$_unTP- z*qHV#^GG=7Kv^S_eNQng14?VDkFX3Kv(wlAYqQ9-7-yRzZJdfW_JP!<#b@M+e~MFH zQE`k&yaHgVgo`fd>;IN%=PvwnLWQ%fFfsK+PdRBQvJrJW1 zRk;KA-d&%WH$0G!jo1fslUwp95!+?H6L&L%JxUcbsG5vg-vO~)~F;ku)kCm|CPkgiGoLhex;#q8k}i% zK*wNo;9w^sHlZMT`$?Fpnw#&sa=}h}P%!-uj7+s+x$Vr6is)_wb0yN z`{|B%L92=kqsYc*YKZ=AAQ7%xHQS~Vu*J3-kPZv%KS_~*9)XWO(i#g$Je*OX7+ZYp ztI|p?s-p{P>k(KZTdLlfiA6$h6#O`u6T>1_#YJ*md7y8D;k)g(hnsnm7R_tRl&uwi za`XJ;PpKJU;&6l$^TdUv40eL%96EHlfZ-NlNHlgS4*42i>oV+Ae^)xt|IOs)s?D$~ zdD_^Ev-uWj|LJreyHt)BVi*<-W@Sm0Ak#7wksI-=N%e`Xv$4n2*2;Kd1d<3+z$UeHgb4Hc4Xyh zFK?)aOBV9L#zG2E^WBpvSopt9w`Y_ zi()4AviE3|DMMkm11d~l%9{crKb?3-!h%7~v;^@1($a*Q*nEM%yuKDui>K^BVy0Ez zRmE=A=*Ii12@ZDd!26r67(JZ+6?c82pywx6)Zbz?6-r?_@Z7__%~>N-7C9}v2GQNN z!GASqFCRM0^_M{=>GeNP`%)>?HjZ zA1E_;r_TA6C4?Q%1lW53iQMUNUY=n@pUdyPXV;*Piv6-mT^#Np4>(XqcfT*Jc0N#5 zDfYvF;zIUh|8kNs0d}uc@+~&`=@{ro>{`W#TPaZ*Q7?B)+*^J1S|a9)JDZEmZx%cZ zS3|BXNmt5SN`*Hck}HN)%*?D8=l)Jui8IdwhJ3%`|PM!hbD2DOmk^ie^{!bCzwYc+DT21e1 zV>UfWLj&^kLt-E^Sv5>wc8rk#us&Vc|I0!a!?u9f9 z%3%(bqEh5IW2SONU1F7T2y>Y89AZw>a3Lg{LvkLHoN}D=agx~_=WIw$V{>NC=5+76 zzmNOz`~B|k_woDBV}H+c@7MEqUD0hg(;mGXG77w~_(e;{-x98NM9$#j$U2SB`#i2Eo>^Y5DS_& z6>ofzlSU{Mtox+0Sd*X_h7r7gzzI#9xhC#8MQ#`fwEoz#H(%}6dnM;H(1rNKZ0pB5 zXH`;LnyyW4jxdJ|^{$$*CN0Lxn%!23EY0EI{p^j{)?#?7lETxO?z{JJ2F=x78~dV*nB{J;!FOgl^Vt_9 z;N@Hx_wLygcJ2c?StDkTxVsF1Q>p`m!qo^J8eYZ&F?hO9Qc_li8NWdXbqy1`S2~aw-~kir z@e>Z5xe9QZ)d*O(T^R}Q2Oj!HJ=eLrWzL6rNNOSMA(;2mQJ)Obb@PUNo%5paRrZl^ z9}r-lT!|TnR1{BSiweA(HQ~SedqDG~D9{i~@td|+R*|SPE@FmFK2b_qpxk7Jgp6X~1j z<}^E!a=_up^3(dc?F=MG99O1Rj;|4! zGV#1SFCHh}R0VS}tz^Zm9phccnRVk@o4XEFp~=T!bEmt9tFs1-v`Tfu?@x6lmmQQP zo7N5jE$g;cykwIRuH~3oEk=+Nea8TUfnE;m&PDvx{=J4nGTJu>%yd&?fB#d!^+K+3 zx^98Mg4OR>4mm}+Fb&+H2T^)!0h4^5TI+g@h<8(kqVdEUwIKUxl@^!bnlTM?f2g^pbDWk4Q zd^p==wA=GfQx=Kum!AIOOXMgb+SlG%%$zlX8n8XOGy8qAAxch_)wL?|2eFQxqz1z> z!Wr~?&{&mtipSl=HCGSARa_wKbF~UEp zBwSVlp;o%~!y~}<$J(c2sy?#TF8J&~%I=#~TZ|)(6=UyAG#|J|K1^S4_{6xr!8AJ; z#*jomXnUz6Z0i2m7Cmw^dd(JV`TV^zaem*9$8BpZ`?PfQw?Mgdd(JJl!=G}`swezr zyZ&*x_5XS5{TFP(zW(|4#b-hA=;5^+a=jZr&!;wAdgJ<;&^6TOnG98zRG*t!Jw~fyY zxdLZAuB|*)*dtvHD|->X*ZY_cd>FitAn#NxfwJx+xh&55{Q!={s4Yheo{$Q8!6+@( zRT!Ba0fl%RV$|9`_*Ccy6iOgJ(WVRp+CW1-i`X)GH&Xje$8OGNj6cjh`=Q0cT|;|6M0+G7wC;+kgQV$}4aDGQ&-UfH-o|E(i#0JdOmAJ*KT6h-P(*##iedwp>DA3mLSU^eS?*4*DQqwkK#hu=uec4eU$G!x$&U z6^1i!1NQOm>eh?lwH;m)-mgu`WZDDG*%W4G2L66JI;xyc-}g2x%t3z};fD}iG#*Jt z3~g!~xKi4wXIkO}5OqEAbKxU==5Na&V#tTWaoEQh=!&3rfy4%pc-GdTAzG=^m`V!a z-L5$Q_lMatnediw8n*>;K#$^Dvm){iH^35=2SOb!k(li_CE$Er;H9J65kE6ypLHdQ zmW&O7`)1MKkJZu3I9HDp3o`WXYr)})C5&IWcw67L?vaDFY)M8oX)cmv|LZlnt21J= z$0c3b5LLPCBB+VpsL$VWysPC1&%#H~p^Ec|j-{jY63w?*zYlws_HbO{$+8m`fs^#Q z;_a3(N&9m+#u__5&Pcg68M8@5WTJS=3H9ymA`w#3OYiBoOJXVTP&gMGNG#osjEC3n zS~e;)5#j!$kJ=JwpY|d}%jx$DquD_6u*#dV;zy||6sC#UGY?xn=SRgHMwy9b#5!m{(J_ee(_5!=|~C8NWo*>}^QEnE&f!Gz?1ocKT4C-R3+S z`sLKzW3e*kPsiE5>Fej!<#4^iax=XlTWg{5V7PyXZ#F1XR?w40P7J`WaPOM1dseKo zo)wCc#jWqoP0U(8YZ{A8-1fNO?_S!;ZAL0>7PrPl!Wa)V;To+!v^7~5!;2K&uE!EE zL*UVwU#aKT{j)sNIeeFJ$kc!l9jLSKxf2xA4JIt%N1v++5aJLl8)gZ6l^M>bsvlfr zH<#6(`h-1i!|qu?)8r=xUxewi#E+~)Fey$U66>RP04r09Fwf?HDjsT^mt7fYkGvgy zPr)4%1iEC9Mlb;_NlKEpLfxJ?qin3*wFbOGMJH$4$}flblPbfx1chxHMxQMNvHnnB zX=u*IxI4@aRI7CqmZ*#rgkYG?WAYGE0XAv9H;JRhpQby$pEMZdzIc^Sn{+zb?Yssl zxm?*pw)KIIvu%5{DkV#eMR{|r#r1P-u^72pO;Q$4j0@=16ISaA5n8`!+(E(#8L2GZ z=f~ecFc6x^S3M zkVFdOt)Zb>8d`^;V?k$C$}l&N>>Du>056iSwwP~JHuJF9jTT~m&kjBEXsyPt?L5>%2ym}*3Xzu-&Gm<)-ENaqT)E>GG3O28ph^09LEaSgt#~+ zWEuqEILN;ky?7wuj#=RNg@ww%680ZIzz zfSTJ-#qT|c%Mz^NT7-d+-q4ptRy;3M+q)}UH*Ryv^9vx>pK?>j!PNo(3)F?Ja}^oJ z|0NJBB?^V^OkN?v^d6_iuM}j|6)L~PQVTiI5`ayC;I30OktIJLg?s&UOS;6K=cHA{ zcRTKAg}8vEWFRSVyJl~oCjGOx)Uv`@LR4nEi5ir!`20lb2565s^GQJ8PSojHR;-ll zc5Zv^TJQeAV{#8{V+n4Ro@?v6Psu}n2p#hj`*S#lx$#-1%;`p%Yh5guN*WUjT+R%r zTt3{q+6xYE(cp z#A4~&hZMV`gj$+$9%@E(TLWq#pSJs>FCzDyMtCeA``z=?Y)38MZ|t*=-hD1il@a#yfXYWAVqX-e)nQxTsJmMvlF<`kVR|547LG zw*xBI>0i@TH?rK0E|oL$vUmtTgsEMsQ4^|72(`AYAf9jH0eK-{zh!$DXQl5UJWFPx zzKhn7w%D5)$MNNma+Kd4b)=1%sQfyIFyLS^D$08%W-UcxeXyAXddQ3AxrW}wHadNO zIB`ai&?l#s^=twZBgg?bXF*8=Ng6@xF`DF2sy+ba(#x-tR-qN`PQp-`U}z-#sKTn? zSsFh7@iP+q?#5W@Yn4R|xK3CG{CSdpeFQJn_0C09L$95yz^ohFznh$kD*wpvAAcs65Mzv{nw;LK3i^zyh_1g;s#c$ zHGBeg2Jd*3dG8S=0$VO}^SnXAqB1r@DaKqRQ$rdUtEvLZKfCl^ijgV31l9mPdM7Kh zqXBvx7njs8$fF!34REEn03n^b28j~stKjEN*mlj+-yS|~c%4Yek21(Om!1Et$oIEQ zr9Yji!+ru3c%b5CA^C~O+ODTVVL3BL(&F=MEY^;xluE$$Cfhbp65n{HUyjt%N5i}i z8(f3a4;HDb?Jq2jweuPfu{dJ{nSf$=uJ_)oC)p2Gn@?9KrENxp)b$&k@|vyD0r`Q8D{> zY5)=$+-kdAk9F`Se6CPdv*=iKBUJxC1oeMiEyvGaO|j*NHyfgIpM)N$z;0ZFnoOt; zNx7v*)xiG33VxN;hhc(cdI*1sqGH2%1p_)NOk6L1&Sc)wlHTNJ(}N+q)=KW%=Q$7Z zp?4#CAo%={5{zKF`%zmt+kbbA0r`K)jSAR`l)D9gY@~sf1MEqbnXBnDE_wz;}y`chzI;_ z(r!`GZE!KQ=s4aHxG}|+(*DumN*3xExo+BWAL3b9%W}@F(6VU4*rLVP#-;?02HTZ+ zih+T>4-@yr-QFVPWZ9dhDOabWQ0nY`Lc@bQCmY1zwF-G7uc`8hsq2#AFLWlxY#TaA zzGP8jBk}N&=t=zK{ksjFA*Dfb__;{SfZS zY;%5(=bIbTN;sKn*=tMNn`$<5o$U$uAu9`A56ilCtDbWc&-e zE^%G<7`x_*wz$}NG5I0;3&J4wyvgh$UX#LIR?%0@Y>&*8tD3)`ZhAB$&EN$!sE$nU zPSmfZLQe7nhoEl9OX?@vTk{&x`c1q0lZYhXM)s4_8 zg zNbds4zP&BKXBWvaBC=B_QxA{U9E4gycDvu@xxhV~*pVa- z!~>4KW@LuhumU1D*FZh@V|M;x%bP_Jqq`R?C3)$^fc8xpUv-tO$UJF6k}gcRo(xob z&4tzo+={rfWb2~ke+}07?nPs9g7mA*9fM;`G+olhU|>IoJ}4;atg5r^7Cc#z$|;OeXd`wJGu8rJSb z*}Q%W;kdX`fV+@ji`rEIa>Jak7T@2(e)LuX^1b+>kQ}?XUS|@cwZI{+v3cEfTSymH zZ_t_|#D3EZ4_}d|=>U$(ZeDqthO~8#kap?q6vDfU_v!%m2kk{W0!#02u>QVaBMeX( zmV-YGxRWlAkiJqgc#|O^hH@sMWAIlrN`44LE}aqYND?OVeP-IO;5a z{+Q}UK>5*l+;EVsOg=r$!yt)OdJbgdW4U3tvar1BBqdG=6OpE{IHS4xfGmm=boP*) z&LlopSrm?>Icjlq!b9!;?7oxoVQ+=%va#6JAEcJxRQdq2qNA7>2*r!&PHj!zxS7?w zlU?pMIe;MsM)zRz=gv28JkI(Qb`>ky#>wA(>#hG;87M#N;JwOy|HTqOv~A?t+*2)> z)f*m35d)>Jx-0Q)T_vM@4to)_Rs2w+rVHqPaY3U5VaYZ*|(TCQtzS%b^ zuvv38m4|p2i<<`FQevAw*7W_BN1o81K5h2{k(KPyIGn0`$Is2h*AuP%58Q$~ge@#I z4{b`6k1lc()T{d0fYHrexkwTN?Wq@Sn)T13ORec%B^q*biIWNJZ#*Jx|Da&%B{Tz* z%{lz%1-jq9diCLbBT68H2)>NhcF`7)!@uD6_=1{%`dtDjF}jP93u~5(zoZ!ET;j#{ z-h7?|zR~u(Q4ju z3Mj|f7ZhH4Hk=z=HB+-DB(x_*V57@lm#?TrDeoPg;+%c_joJ1NpO+5&kKN{+wL4J= z5yY+mPCV)Yh^K9FX;U7KMLvwm(q~Ghy=w{Iiw)3bAc0DUcNQOoHCm-M-IxTJ@q|?GC$KbpA%M%EZ=v zdt|>634vy-#aR%w!U+78h`0mdwODD@VOc;Y$)0z8kuAQrVFV8`d@#UH1lMFoT|$ci z7^6EWTkIF1Ui<=Z+Pb70pen2hdQ(tQ4x5ig2E#h?CRO?1Y)Sn0Z{QUYb;cY~^R?jj ze4@O6Ika)>W{(O$D9Y57)Sc=tpXWmn^KL7Q_a6LA(=nSRamx}6!qQO=AyC`-lsMH6 z1#z~2$J1B;Hw=| zChSJf2bQ2uM-zp8mgK%bZSz}w8^M{(snMnkX0jJmI+ zsLxlF)aF-!SGY7aSIA~NnkrxL#tJF#rq=62RL(G|-HIZ5LrHIjVf!=f8X3XmR-tKu zd}3ohd4NaY$8~$x2xZw;9R*KsqIbt=m4%lz_4Gvy8};w>WJjn1;~kX#Hka5)0R(IK z#7g@$*bS0|4$u04N4jBjm;BeQLr`r)jsofvtMykoJj2EIOr_=#`+%|CyBvZbo>zfB zWwv0vDwR)sF>DOXN7OyKD$+gp9q?0m72G?n{&rGQteo-pmP=l`|8e`IT%{o?G99Z< z|0Ien@oFni$yNfPY)g5b!Gzf-sa4v3ow;>pI#K(mP_vRXHf_E+SvQr+dEntHCx+<5 z_g*XxlOf_e4ZbRY5_7K#-vS^veAJV5qt?1&g(N_`3k%%LiSPj=Bvv)J4{bloxk%rXl(!U)bsxlq1NyCPTZ)(%#UD z9rur?yz;hLi)#f&DuP~(PQRA$QMx@ZhJ8#B+3>@$wh+l{A$5?-&^21Yu=JT#kGs{g zp@9tcp7#L10dDZ23P~~wpBH!Np`Y4x(iilS3pXoF_UY&yo$oT7noZv6nsIgbZ+Po>DUXhz8r zJ*x*Gvff5!bp0~x?KWtHcZ&9vA28}Mz@2kWZ1Jj!@j?N4iS!wS2#F%{ zgf`$Ong7&VC#sqNoWF>YtG|hw6ibp~L6aM`tHMA{CXthhOXKqD>vLngLKwp|2Op|? z<~?Q&XLv^}Bpq+3lFzEGy!&w0e0Jc=dtfuJRXN$k~YVy15K)| zSRb(b4=>l=5DA8jiz{_QeC0=fHPaqO%8CNl3e!9c#I5+%tiNPoS?WcNKo6!KZ!JZq zu#b;6QZ)4ZWU+KelldIrWTio7WoALD*3$#0uKDKy>F1%&(UY5hHKpvtW$Y0>4}h*E zxuCT)!rR$MZ1a-i|sbM`8=%+!!=RMZX6e4 zG@Jq@4pa7o2V`yc61ccNSqvCygBP>S$uG$pY@)dl!XOFheS>&A7(N<$YsIrAk~wOm zcQ55Hjp)TLZ13>_oRk?mpf>cRE6fr&`)7zWPhwMk!PAzwcO^CKb&`=>$%uD+tIPEO z)LbGbAN0$P+gl3umWXbe05+$8`t~CcLqT)j*T6G<_U8NbY4hsQ=JmCXHb-^xrrGn- z77>iyj0uhA#fHxk>1{1W^uG)ub5fOa_jhM2>#4ZKaJ5pE^&$DsJY}}Wk-OEmlA{8y zzb%&VE&>7v^FU}|Pm*+iOkC4>1_QmbRAPikYh22})1!0?EtLXNr8 zh!3Rq4W=<_^DbLyum2Tb4(D|Oz5Vh7ySCJ2Htib!HR}Bz)5*Wiz4h?g(`H1Aij&!; z3{s?;Qwvty&F}{@_RL&syr6eSDf6^|IjQ!+=4k+1%GD+H>ApbLIe@z=Y(e)27e4sUp*LbiaNvCNFtIF~&(6=^*ldj%R5zH*Cp7U)IPGZ9CQ zM2|?8LLnLmu=%j}$URjC|yCHk9SAK=mu40>o9ht#^B03F4 zy{7Pt`ddvcU8c{RhYUEO_X?@1#XJz4o9*DZacRh`VwHGav_Wf24HKg_RlNT~!qh)f zGK2kRcM)pI=t9*+59H}Y5gRZ@4jXDRS($gTV~#KiHsW&jjnX~JBQvjamN7*mFPJ{T z9oBQz(iYi2f)9%2Hg2SYjpBTU`OMh#inbW_qp2t6vHD)g#P-mFVg{?*)nmhNjD3s; zj_6SkCAHqHDK1UbMp}-~v$cJuL{b2~C6JIYdxi|Ml=xfR`N&2i77J2zMUUA~tO0Tj zei3P##68tS)(@D1ox4YOSx?H>geZ9ReDAqPsh2>>7hi509Gi0}IiW96!ftkpzg2^} ze{bfj)K~ta+udr!Ee&y`ttbsj03?BKasm>d1a;wqC)WfUP*m2y*CSIm~Xp`v;1E!=SAyv;RI6xm2@-3<%lh*Z-{m*A_QvId|Tas)R~s`$jY$w!68%6imS>rR5vShSD_i2fBwN3F=_()Pj|#oB?p6ygxPX&`3LZ&CNtc$>&^!DNIU>_XL^R1^DwV*Mpa2MW>o}kvq5C4uS;R2k^&+g7 zWtZp%2_iJ+n;CIe&d)&Sg6uc4Uk=~S5PL~w{1SjzgHjj<{voO3)|Mh;x`hozLs2bn zNzHsC6IVamr!t$hSYM=~B)PN{R$oYOz67qsG^?MigY4I15Vsg-_uqg!w%{&PzsXl# z>HrXHhGIuQ>+OiATTuL5jg@ay*{tT*=q_-xIGjyhDp_NUiM&-zt6VwT(Pb-90JLw`c^o8W|su;v*(a^z-}sO@WDQpE!2P&SHyQMehuu4e@?wokVEJhV5~el*_RU&dML-QIX}cxK*m?;d zHj`N4F1nxc495>dy%msNx*<#JXnh8-ov}_tj4|D1BZP&&@g7)9nu>6TL=i|0I-=yw zy`NkghmaXCFd*77Qf?QkccE%n%6746G;^(vOiEIeUizu}S!F(JDZ%~dYSY1LeeTI- zHAML+4th*ms6K9QGKN79x;CLuw??MRz-1$teB<1(k!rBvuwc^gpoS9cx9f?)yvfLRuzDTOcg=CO|qRF5*|yV`G9E`RD9q9Q#K2ZBMo+J3M*>z$&GG zapg>~n3?uUXNdaS)h&Oe`V4gE#PVouIsPY@hxdT6lR#YC|n-*1l?uMeP`sEW#| z2Tbx$#u(39ip6Z!y&N{wyrxR~#J5R>rVN8e zV$QT^I{QQnRH8U_oIY@gdYLPxUuB75dcig|%vGH*8bJ!iP`xBIMr>=n% zO0^0hDna^DiN@hhRNVII)qc#N&k(?Aa`x5cUl=7vm-Jukh(@=1F1Ku+bW_2?`Fmtz zs{_+~jT2;6I%v@gLjBV$im`@beGEt|S*k=tu}3Yo8(zXUzM(n_-t9v!C$eOrc?lL& z8K$QTeVUJ-PR z0Uu;JH#~@g*7t?s=W-sID?J)Pxu*#FU{K9%klEG=5!VinKzr1NBJHmZte9M>;uX@m z&V|m#>Y*eZ^>TPw*78K45BEV&z`HxVrl&Z~~(9YWXP*?F6I@w576JF0y!q5S0(9#%=a4`n~)B zv)x!N{{an;AA$&C-EM%=$d5L^5d0N6j}Lo7(#NrdJo2>}BQql9svA?8Yv7-e@D+ks zvI>YHDXU77lyVmmP&fziU;9?CrbTqs=`PO8TOOoSUDXw9VoHjI-l{<){dN=ku# zFm^n>+HmcBr@1fOLWV&t)-4r{#_qsncxk!E>TAVty5r^$?vulthet$n5{L-`(#d%(b_Dm*!FVAZ4E+`7!sQF6DU!$JhOl zO_g6GIA=4@0^x;%7m52tY+eENDBjn(bnFlzeHq@<0+#EtJxHU`UY99>Ob{9;v#++7 z*Z$Zj^mR~@o$THOuaB9Yyokj9wfGzAY8V%1RQu?FH*K=XaRK3XV4NhM;H6BqjvK%= z+nV=%c}03N6Vc;(BW_?EXCvwi(|LE2ZLe3-u$Qv4CVKy*7qq*Ut~xB^Vt>JiF|9=T*lE-Vz_XBmNA%9td4k#W%PXZ9pq_oCd#H zdQZLQGtoLQTak>=KMpzL$*vhxm)H1(3Qj{HlQ%`W{XK%r4A^9QRY&jio=A_5V>qN{ zu(|dkx9EN2@crsg!X`TZ*`(z^_lm*4iuGJ7V~uhdXL6pTDUYX->Z0JkcDi1%UGwS5 zYOepI0kz^Zdyh#0{8{kvLr8S0E|Yp_ZaB4uhKA90z?FdpAL7@Of!U$UH7RCK+|8s>v9a0CqUlexz+ zL#p^rZdcl7*cU(RtZ3dO;mD28j#*v4+7SOBn(9H!HoGyX4Dfpn%S-!2h;NVN$pFsc z6(Q_*frOi(VuBY}I6xsHGAdw{iwx-8U>iM{?SROd^O{0Nz+(83+Dk&h*yO{ zIJ!|js(4#u$ug}s$oX6ZHjR9Zwz_1$6-h~w1pBhQ%_K%1>^%xk8rN~fjAgr#1jyi6 ztt_m0!?z6`%XgA40dz1Y|^C~PZP5?%2yp&$6&VJmu zwR`L;oT3OF&L#h;N|8CZ$lT%CRg1cbC#RN@x>Rdon3zfdEio4oO@^i;*odL}Epmz3 z5e}~5B{Pzv(5r3#TfJSYpYuQR8v{X*tL%6ZG+GRdKUg9D#JAUq7R&+CvV;ESC=dzm z;^ujV_U-bFQmXh;wzQvnUiTgy>^N=?2G*)tn4fGR5_83O2W#Fsh|uG3KW0jL_(OH$ z;@qjYl7z=((3f=L()h+lWA|pnSJ>u~rwJ9DS;xrl`su*_!6`Oc4c0BX%1H1}?^qt| z2GIZ=x$3An*NhAYG)1)&RkG}$J@EeBYU-}{X0jARF62CyL=q*DgYQ6YD}ovIpe2!$%;2vzsoA{RsCRK*5DRcL~v9 zla03CX`!Ifm64>}WTEhiI34cA?ro zpc8vr$|{XS+X6S|PwOpXiV~y`XZsV?NY2h1^CC@^kA{I8ixxZ5Rx+|G6W<=&Zxx8C zP8bhY|58>bZ%OikL=@GAd)!wFFK-a}HU-G?%V>YvkiMB`w!!FqSJ(Ny z-&tv1{|FlSd*#)Zz2HjU6D8X@pS!Nb_p-+q+FB6JvlpXMeBLw9y!e!jwKazuM;j}s zrS1wFFhEBiLhmB%(UvvhV8edC5$jU9DuuVkro!BQ;($d-fkgkKXjRNZT8+ZdKk4*}SB|1jIxUi251L$4 z_l~+Hb-bIDy*KXxp;Qaxk>@}+5DFxmm=A<&ZcQ%?84>)F3*_BU)>pawn`y{hBOs3`j>Y|VcgA<1o_@;T`yzci z<~%C2EcX_JcNXf5iQjlNTL1jlY2+x=Jmm9U>B8nYXwU1G`C}b7w>15{EfHo3qv8E*?7#uMU5|5&`_23%9!gGO2exH@5XXY+Z5pce&ETWNt>-n6XSo z`VB}Mbs(5Klgd+B+djnT{F&p}CAx(w+L(U&iXMb>Smo#DshT@*Om|CHS_xCHljaGgKjhxIHq{%e3w;SX%{7p4>P#QZY z7&7TNm){?H2lBQ(-%BV7zM3oIQe(K1C%OGiKC-*t!EWXC1Vxi)i9=_}k^H^W zEaowF9!W`b|0b?RiSxr~&C4ie{BE02y9z))BB6g>eW_zHuc+hS64IO;W5Bi5^#brJ z<{of|UYU)pMdZ36-yjA1>@T()Fi+45#|9r_?9PsW7 zWGh|`vk-oS)1A4o)_{uQRUIqs;kkFD$je{8bWZfv(RaBhwT*dzTSu>ANgw9~T+5;@ zDG+|jU~(QKv=`b7=XtQF164^fQ`IJl8n12&EJEfjD^COF$V~kqEoE2894Z{Pd zPf5=A@XG1zZon*#X2ohmfEjQ;LXutbG2Yf^#cdK|x2U!MA zisXH7md4g&SR%;3#s4eyoWeL%lmJ+Ys6(!L=BcB~GfYV(4I3Q`hd$yd$EnfB)dLoL z^F4YJ2O}p+{)dSW$Pu5!L1%a1REPvFz213OJ<1XwVH^YcSQORZH(xwt#di65q<7_q zZiXk3f`v>d@!Q>d9*3`lSWngAeI$8LX56Ia{M%*G5udlaTOw*oBDxdaNP`IJeHOb* zS7h{=2?eP%xOls4lCZuShfS@mC7H=VYvv5zE1f9-wHx@wl*G60Ub0ZW;g}x$Yw4qu z*>wNxtXKZge{4pB%fXJuda`WFGROCH1>%J_r1{BRuz#)vDb*pYTfVw*Lj_7gb?4F8 z=23ybLvPcv34<5?N=~i@tH<%m1 zhSV~kd1rYHQ~GpUJOUnF)I2n#2OWqnXwPq$L&!P?QI%C}Tj6Krs=^ScPk)73dTHUF zMH8r~8h-q7hrtZHi9Ly}sC*f+q}~ zy_9(}` zMgKU{a<5MJ@c!dY(dCiHB>jVudun2CMFQu7OQ@|shnbOs}{duA~o+fEPPgLW98_yR$pn_b8h^gB)-2j zcQ*f5g)|!`#l1ctx`OZ+s{h;Go5zLHHH#k*6YDXMaVHMGh;D*$RC7HP0y`5TucB0{ z6P5mc#UteHm9L5vU=2&0deLs`3kSZ{2S!wk!lVWcH^eV#5#SLley&;71K}p7P|0DQ zv?h!F3Rvg6=F@a``lmzA4);w?>HE`hd&)(6(@1 zk#Am}F7kp)_y+F*kt17wSRZHjolm}07eEp)(y*o57WG!Q-{wUq`e%it30c0ea3M0a zC0Pi3W}*rWjA4G|yYl{oU$B-bbAB(fz&wDS#CObcMeu$VEw29augnju5M^Ubt;HhDjR1`mGnH%2yFHVU$xI zz8+h?Y+uPGvOjq{ZNoh+FD^jaZ2giJdaIN}5iSX%53d<)ZA6dGuEoa5CM?8LJAX@@hR-)=}2m44Pv!ja=IB?=W(vb3P{0puzpF9ljXzXVjC3$7LFv7&yfDZl#3t|QNWYrv~?E| z&H3WURSLTM@OLQ=02J?3*>%-C+>@QC4SE_ECq+eM)Ok{uZ@+u%r`PL{k}>3zpTL3j2+(}XM(O2SU0}}SER;Mxu z&TEr=v*k*pJ(!GW$_KFUsJBw*pVY8B$brh+Cn`Ecm$5JC!=QE?r5?VkW(~;P`z}7$M7HPE8F-q3O#159uI4+91op)VR?{#pxuP8|4NMM9!4b9YDt&bfexxLV3UxWT zVq2t1Rl=iJ-X3x!jPCZ&%1%PspAPiW2h17@A$_7aAaiG^VmePb5aKhOXmjj-DMi|T=zu`1hdx1t$8YA?a`nFd&!NE ztq@)XDo?{fdAkSUS$(DNk3L}Cd>bH=Q9(51680nI@ctTDNZL&?w{|`VEd8_Lu1H$o zj-LsF*bcusZSpG!e`)b{!lf7{d-1T9QiTrSRI~0Jro^MG`lO{e_AG#`lG@lXh)v zS%v1szR#b++D53_0Swzj3BScusEUlDxO)sgbmGQvlbYp2db4lwHIjn(mazm1E+|HK z{%n;i;aSLY!198{X7XVxA0((Q-i{MQY(@GnP5~rlt@VcZ2Snt69(EU2dKJUv-DZU& z57_@1ng@f~Zk!aLU$1cVsiTN^p|+`OGVhexFWsumFHI>2lzAM4D7`LYr?<21?QH?y|k}$o;S`5k#U&$4hB) z^J8i1nFfaP4#+LH`@?Nc)9tQ4mQ}g8=*7fZOFk3mPIHh#z|tVwPNzS1m26Qg09S#a zt>bD&KokODREICU?pqX6hF2|FIsnTSopN~~gYZC%5d_i75_Or1IAt;R%>o~v`HMm5 zhxR83>1fVd>D-M$S;jHHaAXij$aZ7R`$P`F1sAs6OO`CbVIIc|KF|KWxE*; zb!V`wsEF;1DpWX<(C2O@x-$4MosnVCia4B))a9M|CU)@qgDCyYq;=y|eQAn6v7d&F zL!!r`>B-1Zo{o8lYQU1uJk-{t*N0ntcgC+eh%;dd=)j3C=}4hvXU7d& zfG<|&RpbE84;4;Uh0TBeTsH{hBi(Il9r|ggvj1VTeev4cBF@s~aMFERl;oi$;Rcf) z+IEb+*$(A3y+<=^=+Uetzug>9{vqwa-cg1X1YMRoCHI8_eGs>2FS;m!{A2q%gRoYK zKag4hKl8 z$Dc`+)YyIRqhzcuFB_%$E^a}M8!NN&g^}JpC(p$O|FGXD4gh!FL1)lh{`YyM64*o_ zRNI@<;d`x|Q!3bhuly(LCZM6>U9dCj`hPhUT5RsnMBE!{U$*~#AnDVY@4z{p!_=Z@(XM4!4a<3XLk*1|IE|ObwGZ4dhJA>Q zJdU8{Kt}j@TngA-tShmhK@->g&pxY~$vs)<9#KyZBywm>(lEUp!nQC@m!0B571NIi zf$h(k-V1P4(}Xa^ZHtZdD5yiPiXu9U>kR5lQJxFINI)Zmz_z+>Ge?wS5J9I^Ka88Y z*51r~H!sFFF<8-A#^P}b=M#73?!P3Vqw-*!qVCX=480UW)-IMd z>4LtU$O3V|NS{YDH%HHN$=n6sVdI7;kH5d!nv|Z3Qg;kcqb)qr#u_GWV~lrzb}b7p zS2!4?17ZOYp%#Clq$aKd{0eu(bxGlj3SA!%R+X_c?D69A%66b~hR5uwH5}`M3Tfc8 ziJ`%jdy*%w(b-5OmR)Lvb1FlpZ=m`PnR$0O71&@^6^IG?5SO-5lDa!f#(b5+R0rZ# z)aFTX0DS{rLMnq2!O3o)58klWqa*=uAuK%T1i8@yc9*=frYX(0l^-An=>QE!pSsl5 zXUhsHol(Kj`^7re{9|Z}*K6LM?x*N?16%*v;D2BOsnD6U?osuiZGbl^egByqvAa`m zlFuXSMm`y^dynvUTctpb>KrX9WAw9ovO5AygdX5UX^b7? zaO%Vkx*kA21j$XHkMJ%5Y;GX$NJ!wlXkkX;*hjg`{u1P{48}V-kE$<)^Jaq14qsB9 z*neBs+P{A#o(UTx@{_jwH~M%i+}yGX_=3Rk2EV_mC+YzXnjV-Tj)>PfRM_rf zOI{w+$ZH$)kk!|1h{Ru%UJPQo(U)FgP=6!ko)J%$e3OYG4yQUe2Bh;=xf^%9W)iDP zx-ygBYjT=6X#w5Ys{EKV_3s|LfL=z5mhLh$*T#K|7_Hd=$m6!)Uf{^KAZTedOmwiV z(Zs$?H!H|h@#Hj0k4Gsv(S5r1AtFptN9&_nX9DdTnz0Z>Q_FfnVQSm5vE=xSdXe6u zV(O;91$jVK9_tO7ZhC^k`Yyz;&fHk*#rHWBlUvGDNzP@3&L0gEWhO&p?GQe%lHP3q z5RX(iQRgs^jS@@5AH~-?IumbM_Ln2ya<*@C1;4JCY*ZCz!T@Wb+4a`2I0tm>jJwXH zQ8!)!qrT!%W=pd$wz0N%t8=?fu`$faCMgbOo=+~Rk`(?dA``bSH^^LzVP@5$@;-rC>8fxPzalQxpp7h*u}&J>veDu%Vi?0>b2^tTl8>E z>IRmPIHI7Lq6b-tqs-E7Z`7IM6gEUTJ&EbLK>8Rg^l@C{Q1?NBNB}&Sc{Nqa3CBxr z-%piWYfBqo?+8uMGecMDZg&;(Zgjm4gG)o>)9VSeC;v)wdFyYIOjV_JYZ2fx;_nV# zX-xNJ-cefP9VHO^koATsbWg@QB1dkm(lZP8U{Y4DHx{`mrh6VHMO|ow%pC2}Z5{Wd zjTB1UlJ;4j{zZMMUFoLW9vfK63E3vn84g`)LKkKuds%lMxW}Z8MZ^OYNa+gc82r2# z=^G>aa70XLX4r2r(+ugiZ1=>T7~E}cTnyJeK^!~k)-p1xBKXB_-qU%4xNp&qM-Fd9 z779^j8S5H5*2ca9XEBNCz*=w0ITZtW(m(z%Gw=)2)&5BK;509gawnS^^A=h)T5bVE_g15i#&=`eZQ|zFFeyHOh%iYLz6y;z6h$=l< z>bR7u_!L(in?*}azT^bI;N|`x&VzjSU8Sbq9p_d$@M!OF?T`Vv)2e&8oncSRTkeV82ViZpgX&9Jf&a1I z-OAaexx=magVmb{rUOQqw6CVKgLM|G5lbstO1_UrK1XLZ854Mlm^Y&}EV%Zg?VQXw zn(#D96lx*u;;3O^2Ilk}wi^&9;40NeB?Az#T`w$Kp~_#=O+A*ohb`tKBjNjUy6E_P z?zCR8M%fW6eotgbLB-lCe84k7foct0|H2fw)6B{JlJj8X`@@~Vc@%?}J^zofn5>U( z5)^frDsn#JQSgTiG0c6P^hS;;Oy6n9{kEK!YL(<1b+Eq5drTtq2~KgY@qGvrqxL-& zl;J;|9tp$W7wrt-KHEC1(ZY$Iy7Nyi_uk;lu$ME3-HR7a1?>Bbe_uBml)hIP(e=Gh#%@XrgmE~o(n#o#Y5W5^lw}fD+v6p7|Mwh2O;gSx{xs49*c6D0D6StgW zMG*X+61|Hf??ix&s~O+qN;%KIv<*1%q$bmaxJ+ov2bXx|9H+JcxN+WLe;hBG_;x?{|ci~)ub@_$;u|I5AkP;{FWbo5;rY_<^127KV7-*rWQ zXT#kq^HD{!`z=&0f6<@2@k)|dV-ls8ey|{H@1V^Q3;6uG^?YYZ@1)BP z=vk}7?E-`YSUAtSWF?69%(1$C(QNZ^b&ex%;W4rpVc)X?)N#b*!v5zOD*u?FGBQzv zrt4jsqqzW=KDXZm?*$J%=u|J2x_i`u{8~;44&`o<-(gSX3TF^;`L!kjR>h*Z+&tVw znM?`Y^`5Fsi)`t*mFT4NSvFR4$c8{Fn~Z1NYG*C~U9T>>VzQj4nNegv3RRqqTl>Hq zd%-eE&*v8Dqt1oy`a7IcYiFfXgkBL)Pf}SEguC;XQ-tA2AtvdMiPG3h#6?sCT2#-u z=RRb6iO=24M07ITcPU(o91r!`ygeyZ7gviU;qxRROIC&2Ajgh38Z)w4BlN({c28cw zWm+9x0aI00zrG!@!)zCgi??fLNP=(1JFkOJQmFZz6Tl&^=jrRQ5D*{t@ryUPaEhn%sZ9Dm+T~ z$~z3)XG-Pfq^H~odN&Wo!eAbenw&Prvvkb1IX&-QUlgR(idv|Xi)$N@$% zGE}05`1pcO(q`?`U_beoFa06ROkLseW5!f!@Kt#W-06`!C#Ts@%NQtUqj_kQ4CY`$>5#Zg8F!E&RWgAhVwid6|^W@|ZbBkYW7N-u1+$-ug$dw&Bd<+mLBnynoN^n^$ zXXwpH6}Wu#+@ORvnS{<;xV!Hfa_1Q4vDB63k1j^4e!QYDc`v4`|8yiEub76u2!mkW z0LEMmFh-2)g`T90i-S<_t)ap@Ai1f4Cwio+*qoit87awa^R{1$nrevG%I7$>W)VkG z-3%O1M@uFHo!9o_W9|r78Mix{H8n=_$A7#Retr^LM!yWBSEim{wkx)iz1rbReH-qr zFyPc(BFQAQ%KTQ8RR&#_WE@EpDxh_r%#pdS{JktAPdP{B_67qNSAB|4ZSf$y^ zw)oPmK`V5^9 z@#^e)Yo8qmVWfLx#vH55-u9K08oM&_d*0`WAB_ANdJB7pVA)b1{>1sQ4MJSl{lP+x zb!wqyvx60_n6Z3v=1JbeE(c?Oi=QJ`XbGD4(dcydNxc)~1WkZAnw<&G$yBfKTRG;z zW*t09PSd#e@x|^-p|i+!XaB~e_dBQjN9=SYy)m#X zoTfpAfyaB_Wy$uhCOBizbQ(FEei9gi-+yqe^9lgF%dZ35A?K;J#?qWf^fOqo0FGMK z$Z#`8KQrS=>3@Vti}}!17nq9ApTx82^cJ^CVe(n*+?-x6;v}s8Z||LkOoBkgP%h~k zMwBN4K#8=9EiQ-3J~7cC0E>gO_dO5`y~UGS$4(iO4iyv=b#ZEoEM|0YAw#~>zG_S9 z;`BcW_ncC@OZxTsC?%p0=D^qEB6 z;Fl=h`LfY1G5mP>Z+U3t=bfd#D3C;D%dlHiIok)k)P#Hm>4vK3n=svZ59`NQ0eKhk zhfB9|Hdvc!mG3CFke&uy3MK_sk4p~@T%4NBVTU^i2m=*~3Ty3Ah1fm20c$CB3-r~x z%M(Rg>~2zV`OKbaTV?{elFs*S$F#U6|1$k}ZMDB;R~Sf`fWuC0oCf$D^2K(Ior#yE zSqY7{t*d;7R2|NPGE01>2A(4djN@0+NLP%0D4++OSc{b)3`w&4nmv{%KmOE-njU{o zGlgP|CtUZ$4{&)M>i%cOqRT5byBf;ict;inaJyOSdS`Y2u8e@C!!KKlW zEYZlh6^{W~iSHUZfWs+9CJ~}uJQ9g|T1iD0{ zmiJ|Ms8VvzZ&k#C%0&eRS^7$Fy_@ zo>DM{>+?IL^NU4E(0BtW4OMGk>(uqWA7BL9Uirq%<0hrfjX|o0x4h8+_^KTpk5&Xi z{U&4NwRz8n^=bxu&c{#A#}k-+&w7;33CgG8s6&y1oq> zNG|Q3Bb*4@>~P!UhSQ!<4trm_mU2KYMuC=fY3cz6ZucKQBD~emK8iitkKMHI!$k{* z-}vKG$?0sVcyf@a=uQ{5t1j<#T_6)?HQG*0uDZpTR!}9QvhgA5m^1$DAFfyK29=pF zfg{F@vW`s%clYpuTQtY>0IA1`m}bDn|J8o>J^+CDkn$FI zw6<$6`{#og4V?E}Ip_G@nc;GNg)w~cz}#ZnC*&{)xi;AzP*9=r6jH-vd~q^#0tltcV{)USqJpLXOWTz=s=% zfzo$7NqH5ko9f^*-NJp3?C(JsS?u9qp6Aq9!<8)c9iSxonOa)YV|k#^N3o>@I`_YX z0mGFv2euIC(Bylrogv1mdIQw z>mRUY69JNpOJCEoeE&|P_rhKPT>$kwV4l=TklVxWUSi{)x!x7tD{Z4n26{HFl4$sL zW^~HC!8bN>ZbudZp;tO2*HJ!`d=&e!ulpmlKY`<`joA#z#lh?wLoyyzg)|s;sXG>F z8?X{BcXSVII@WuHrv0DxUCgErlq%Z$e~kF<4%TZ+?#HGFlJn>OI}iQ*vC+Z^YxBHP zZ`6I~a-ZNdylY1y+Z&6&@)@g8$DLO;96PUo*Ia2UU;*j|`Nh4H75{j8?BGwN35k)> zW74_)#nc8!92kv7>)1FElpODm|>Y4X4jm)${e zut`Pq;f39n&cflNpC=cZsQD1FxTl{gIqr)==J__F9{elz?#j>8f1<3)MC*c@a1|G?(6wuslPRg1T?T6SjA zWyk?T=`!wHyRC;n88*`zJ{Jz&BnBDuRk5oo3U4TY-RNv-Db4#R#aXphN7KLMZ`ToY zfb81=#>HZOcy%rHzTd;Z2&OaSgjjktLh z_QR}{72Bl4MSP%Sm!(x#63$J2CLS!=!$&v5tBFvk!{GQ>F)>YNY8KJ=jGFO3Veqpz z^kSH*8l$?}!nPh(PS38z?^%;#u0LF;m$1g)HO$R6U88}XF|wO1o$dl_U4SxF-M)BV zu)X%fu`n~>uh`uJHaPpi4GuC3^%n3{lsRL1R|8;;k7~cd`txi;V>(V&h05wld>Fim zV`7qq3wfd^jtc|F<3$SCxt94@D`Hzcwy!9mnPGiU3sF{RuH?#nx)*`UdOu*q7?-Xx zsjkpiF2#M>a-M0=eWe5F{#wiRQX#`TYf(V>$h>i(BZ#AL8g*FW(X|+!Z(wo0^CLLt zC?@(`G*;qYtOLpMRQH829>cUb;sWk5UfzFN1a!V9RjT>;(}-x`h~?=v6`X}SEZfRY zj1AQE!-&pXIP!NkXtRH)iwub@1)tP;)9mL;OTMc!dRb$XVH4C^{0}TUyQq_^hco}> z6zGFjn+z>06$($3=&jdcrCay-nU&XT;RLYKK~f|+)(ux+cCOyzE^ym#$f3_dZ=Y?d zX-m>)mSX>y(WAE~LA&>8*_0v~_I{-zJHBxgg!jSz9 zf`I1V2~!suY_g(^@lsyVm!ySxOpc2$9E9#w^IWsSlty2>Ht1NQHA6x*ze{;8EiD+L z>DDBjdUNxa7tc| z@V`>v(d0bg$r(4sK~3kq?bKtkVe5D^AVyl+gyC-nGZHLPjfDLBsHyC(2f^@iux?gt z7WPDJ=4ZrXXRA-n?*Z~fPutyPaKIj1!Pe0IwmH3*dLeSUm# zlD*-Ni+u|E`|RqT!0`Wi(XPl}Y4sxTrBdZ$TqeJB68P`_On$y1wYfO`a^G zEjPM?fR>S94bztRT~(Kwx2OKmWxbVGpx}V*6}49!+AgE-Uo#kh7N7(po^l(N=NzM6 z9X-si0&o>=Jn?t1ncCApegd6B-z}$oMu0S46`kf2tr#C(YTVP+gfv8evxlErD4#G& zqRUfn8ZY?o-V9^rjt}260X%l#z<)%X%RNx5_oC%W=aQDEEPW0h_VrfhtUXj~hCIIS zxgbyx^MJFzXI$zo9njH1Uf8}SALbEo^o%nPhH0K`yp3V>-To1@pujW2b_5slYaN2v z@Q8Y~;uj+wxVpX#s!X}~>^FY1NGc}Zlt#a}=no#93A)CySE-k-qDW8uT&j??sL{OE zjr`2O;m{wN4r(ttiYUU zoc4c?3IB$LFiQ@xZm3bUPx+lCZ+gV(Gp85PwN2vCfnOJW?o^&ifxFM{_WPg6X=XBY zs7s<-*_eRnRko;dT^T#l9YcW(o9lsSUz;3RW9&Lr=?l<9P)jz;+!l?@e1g*Y>rMDJ zWFH2YN=yXFOSb-KtgF$~owHMT)c?{MyAr~acytcIL5=QHx}0}t!FalTqwqfE!nW-p5%TuWv?PB{x_VOybI5VJ{< zx*46pyY;gTkcKAaeS&h>4wxK z-_l=MPkz8$K12Z6A#WXYuX>fJyDLTNTh9$<-)>_OT2wc??tD-ocx@N>h~TmAxjE7K z{;e}w1jP(eEIbZ$JQLt+6m=KGFqz8KI}iCM+6y9i(;xp3oTR@iuEk9Da$L~Ue3IbW z?;e5-OHuaG^RxQ36Tr=UXw1PjjeWKG)z5n7fVK7Zd{$O~&A|4TPMp&d^2pwL3xCZK zz3T*J76Bsj^EW8zC7fR-9&dN_Re(jv2IS6ajTDEeN~dfcwRSW%G*jI)Mjl;phfGl+8~U{ z9Vh|`k9Lyf^-iyczH=FBsd0_%h48qYryRz^r>pijr!A@DY-7#yr-(lpcPdzFyvgbk zlan{`{;=3~HVkcZz#d1?;ouI*=RFhw6)4gY7J+?t#m@ChS565$OQ^&D&k^`vhhp9n&$YMa>z`3vgK>5`R1DR`NF^og6pnQ3HK__`VNL%oja_EN9~Q6N@2Z}yEns3For>6J0% z637p?Py~a|weVNO)Nd`dhi96eLTkXY;Jr-gz`o8pW9k=# z+tFY1eih-L4@`qbFl6c_z5qzOpjR9&$*C|pIwZCym;+L&V@iCX47GM-pM1a^hWeDx zgn1xR4m|mEaZ91@j{13#XO^V?U5?FP6<{&?w58x+c%6MzT9>5>{ytu4ue}I+XAj7L zj56EP<8lfvmaO5M-~XOHw)PwV8^JWeb(1Dzeai3C@zM4&r!fSl)1+017RSa@s|ln& zJy(Cvb8e3qMu_8-bGE~GsW65V@_Vr{`m+A{72fk#=)Utl@(1lrI@Fg6v4i#9x`VgC zleZqfQVMDgcQ^v~IHqqY^chUD^^M5);}REs6ZA}pd==vRUBfA!Fe#}j3Ev}J`SOyQ z-ZU7vXy19%5xnO2o)o)cN*vMfT!;eaOuRJ;KVTP;8cvPfoVR6Arfvd9Bm!XHZ%#BU z`rdi>VkC!M?74PJ4CJ_0pr)~cZj`^tR>%1WqyIyY8;!3^XkV8 zwyy*GS8svP&LFw$Q*V*Nv2)Vf*{n)XPb^oRg}fz4Avji9u62JvW{gD=Sk-lx^XQv+ zZ0pir%x*V}4A2N z_UD@|@90$;HbxJ7-G{^#LhXKu3py`&M`o3({U|Oy*xMQ~v-5vrxS-mdIv_KGn;N<% zZkU^FoSbLJvUOV)^1@12m(Rc>u2&IfEyM-9{mC(Ax|?65(QJ|a9fycx^{Xcak?zwX zr;7no&K6^LPoDqiJ&<-5JduW*HsVDR?8fB#G>3qP5p>rE^fR4go&-+G5q?PaG~oZ? zG75puexnUU?-BxCXCG|M44jd&GxM>feFJscA>As!VfTA`<;rkqCPhbOGZN#q4(*ks zBdHX@5E)NcA7rnRG1=zbyNc3rNPw0!wZnH-u62*~A~FiaUIGzK&5x0vX^Nz?nz{=M ziDrZ(HZC3g(WGkry+4`g_IHYpn$tjYqiqgeFaSAwplJ%;brIN(rG%2O4a!b(!-9a~ zRG-@wKnCqUin@?)$!p_Ya{|oeyUdO!+~6Sq#`p*3L~{x;v3?0=6VGHIM1 zn$$@lUG}wz>BHSU0g$5m!|0CR{Vu0CxLmz(r1=w!$%&ul-X6!e6*^%ae2p?UZS zYFGBU^0S-RCjgIFp|lexZFUg!N}O_ELoic9 z2Fwtvh&sB@z_s~$;w}{#+cyQ*4Y+Tur16qhjLr5u!jHPFe^I&F@`l-RiOUMn6%Mj` z*}5cJa4z7$+nvt?erTbL=ux${pKjVbV4z(r+Gi3w2ql(Dg@~A}&6Q^sH!|Oi=~Z0X zleO55>#ziW8)`az3-<~r?nQO7(Q!kTUtBn;iL8kdJY^0H8a*kFla^~qe9(uO!24>M zz~!!|7S9Z)J#*sXjrw0}q)I(vZm3qi%99sROpJY39$*&|@)cZGL3Orl|32ezGotzI zg#@0y@SKO$)O6{moig0+l#f}i{V_dH#c4%O;R|MQT@4=JfAKzqm@&Jy?R1an!TS73 z6xGvyG>LQ)9~gT)xU$zRii#_5rDU|ML0{lq=FdhK4d5>cUXIpR%N9{1A<6f(ySOr3Jjyfe560*H`tGIl&R#Cf|um{u`4RW!9T z;Ty_y*1WRAn_nW)_=wi_xA~BfNvnCI%0cn8y>l$DGXwCfEjv>o1TopPWYwR$(NX~} z4x))y@(9rOlI&-|pZO;>stZpK_~4rMJ-mG@)t;VlVCOrgo(VFsP8pf?RziTcDcHG zMw@08cOCz%Yk#&?MWiKs@Rp?;XQWcm0!fg+q4buxo6`@bpa$p4XRZV0$Fx`gQ9Ntc zSG&|uudQ5AtiyOxVT7R$oh{R(bKUmh)lR%1cZrB*3Mn~E@NrPJn4n5^n|Y43ih|&{ z`m(g9PJ;a&tC?Ypb4I;CL};z+ktSy%Ojuy5pgvj|o=7aM+Y$0TakcnvjBd{M?|MI4 zDO+N;g^v&8fl}!}u2;7>893i6U^l2YN!qk;-dc=a|M>4_f_7+H z(DKZE{mip&d6FpTFV~@4*khT%x9BVB&cC;pUO+M}T(8rIrYO#s6_&Okv(FU_aYA0V zfF26<{Q*wvHQnp+(rd2IdA^?CXRt3RADb}OD6;vAYhBw>_&VM1mCig6pVA(K>fP$D zE(;2mZk|CoC+%EOx^%1rMTSGUP3y~g(0 zklq(EP6^`#cz#g3%jJyUbgyA#a-&?O2QC+Dt$gG}94tqgPf~)7AG*wRb=yI@BBa+M zIh{nqwYf7DFI|Ltf1iw(Gez^#cM`tq()7jB}a?An_N-U|;ic(%wyVCvT z5^|vIY{2f|GIugLU~w11`R|_P-WOJdJpa`BOo?N>-l&MmkxTv`O!s{2gY4vUsk1ZF zxdh$7{oYU=khA}h;fo9gvJ<1f<;Af4=waJ=Yx(RiZ`5)2UI#Pm{@KZu9NqBE0AoMb zKf$Y|L8ls-W1~V^V;C&e2XC9|G!`n^RJolhVVCV5Ued^S2_Ubp{;IG@!?_*0hi4g3 zu}1^%POYeu%opp5goF5tqrxibJ7#Fd;KlVqnfU@M;)lD{_&eYEe)^dk3-B2SNdAt;=pz&< z0f6IuN%6=bj?{UC@Mhg~+;4j!`=rE&kdjHSE8q^#eJ)dHQrBQh7CSg}wkyE=$;fm5 z8l_bCrLgD5rHNvj3HpMK=<@i7^Pz(NKeRI|`B~JL;9acOaw9n%jh2j-)Dv!eH2OEC z%xqd*l{+=Ef5&b3r(QW;t+wkCq4MpYPF8gwcQtYP_5=7`+5QhDQ*QDy5taoeHwwtSpKj*qE8Xg}ooTO|p9Q2j zshRK8?PGo4q6pOkzamTAMjOs9S^d#7kA ziF@cSX_Q{LU)x$8ys53vlLO8+{>+!GQmeSrXS{sf4dQ5OhWDTPLJLk)X$$!~oqkEh zv>}qts}vJB!qia$$w)aTC*JuS_+z*Cs|{}<@8`hFRF)NuZ~xm149jPq;9#Fpce;Og z&qpmlPs$+;$VbdS@Zp2wjeuR-zD&i+7Gy4?UukATg3VR=*cW_3MJ4k{xOjxz(Xx7L ztNrhk9SW%?rIr!p)x;oDMhl6`@ofK37Jyhg;_SDa#>=dNiK98?%l+DC-FlG4RgjHL|f%f z@%HH>niQ=cbh2FdAM@*F->XIsqrZo9DcWpsnG#o^8mN^!1K1nMK>Nn>xg>0VKZb43L;iJ_um#*$q)7 ze<6R~+#cTLli$%tyW@9nDr31TSa#MN_>8yP34XVx_l=sZUH9(2nJ!>@(L7Gk**V1s zAC!&pK#Mi9EZFtKt5h%{nJT`FOIK5HNd)$YPW}1uNVkO)h7+0^o&p=TT<`1J%6V5% zPRqwC&~JZi#A)D<%Zo9$RnA$xUvd*SM0Um2y3cT;bUD>B z<$O7pS4W0zNPEkF{Uj=&qRe4+QZLBIK9zX7n|Kb?@f}jNw>sYTIN7f+bRRkn(6kLa z=)AC0+-T_>ZGaL+)3;!zO>1^Er?f<)SPX}faQ2?ONPd}!m8I;FfXN?9f-FViuCDX(MV}v664Sgq9m}6oi+}h{Bwcrw@C4# zCT5Suv^9MfyexUvp?5un_s9{rIA~58j(fXN!>NalDJF+W6>fqrb|kq*rLZ7jZl4uZ z`yrV7sGZ90>Mtciw0uEH1xh%EUA}7Xcq!-nf%(bUx|@W9qhIHIn^ep|z)v)ze+9 z76a%ou4eQ5G{1%8alKwvXAO&9KqTm|;Mg{)i5-P!buR#}_nlrB%({1&_j99J^OX@X9|QA z8+!}c2CMEhncug3IyDIb*g5FK7iCZ|`;yw@egNcU%2GqFeq=#P?)woTlw<|Pix~WZ- zx!U93OJR@&RU|z6eAKqZ!D4*Gl1STpy!e*060l=ErLp#Z9Q^<9t-$W`-O>-v#5K;W zCb%2XlR4s7SWGXwhz(QQPPS;9RX?J3e^8KK7Nbm15r_0_+XrDJYBIq=W%Yc zCM2|~#^2q=P4(o**kEf7D%Nk?3Bq4m_&&$lB=pLz4c8RYveund8*6f_$^D~!r`3Nx zpT2&xCd4|Q`I8HC#ykTm>zTgxg%J+H^D`}XybsRLmRo+PF+J`Ob`gdvW0MwGO(EUx(~4oZ%&OB&3BG;%KoRb!EuQ^H;bpMDxAfs8?;8 z2wG#vU{gX?9VZB!YT%GzA`19eb(CsQA>qZYl$cv*-dvSFzp#EoI*!1NVM#aL1!4U4 zEle&ITVk2 zbNnL-6yWo!G|50XP-DN!TqI(6J%J18feqnNNFmVSdUoIE*V(JxJ-e4Ew^B2vE4k&# z#lSF9pVov zdQ6GWG?Wi}_6nF!ogT6hLNVemnI$sQQ5VTug(c-pRi$DukMW&7qY59-cY7;K2{fSd z`vArLq_HNcbUDwDsijKmrLlRexyFg*Tw zv%2`Qz4YhgkZY`?TDrcP`rcyQOARMP<-Uvlz(9LVk3Y>A6vR^qB{LLdDE?@vWt|mv zS?Xe>J1xJ!Cf)&a6`M#GH~S+6Sf8{%O%3E;we{frpLQLD3G| z{G7AHd!0PVk!8uYXX_yK{PSv#!M$4((tfn`vIHJKNm% z26tWV7i553Ra%KJ0uXfU^8RCl*!!BAlQ49$b3FS~yIf|O%P}!gs#nuGTCi|BB4a~< z<4(Q0kUcItyfn$7{z7cB(l^tigok%%x+lda{zG4oidDbEjccljW;m&9=$|i1Pff09 z6ygP0fQkNltkS)jt$W2fPkzIGf$Gq+p3ehC1h4gH5qG!~qJ>1)NW?p-rR8)bf|skK z6{7E4GxW$1HE~cnd0M(1gXEA=y4W0ccK;dF@3yox6tBjbg4E-jku99{J0Ou%zHh2c z`N>t>^SHSkD*mOvrB}Mt7_#qp{_s`&`y10Vt5`xB4ZkWkr7;kt+uW3Jr?h`}CKzYo zjYIfXOexCl`sl4k>lp9jPp{IOp)ZCy((UUzggaJF9%zQ`g0F!gK$FnbBfmeNf+Z32 z5V88q8rys+LJ|b`ClxT(GA1pOcIbGXVwdGpxV$o0PwSeI+%4EV+};l_7ZZ0Euej&g zY?+Xi<-HQO4S_!n>UUr)Qgcd3DkmK_aTz6w!UUTlBZcZK_l}~TO!AalY zH{}hiyEvs?mg3aHnwYZ}RJWHpA3|GH2`-dkBOM*V*M>xfIC-6Br2fqu1|FZ+n$P2& zKIVJ>_we(V#0$OKyd5*(ySb9rtuwn~uCX6&$IUwQA%rw-Zb!-`+>+{jf4lcGy(cS= zFnjz~^6)Jzk;Bu2t=udP4%)l&?~V8;K-aDee?(gQH!jw&wf1oB>u*HTRY&Q5=spwJ zA!hE~@}F+`c#CIeIET9mEl&!OUm3dLqs08DWnvIU(nFLM4R{ z)_u7)o#XHM67Q26nN`~Xo;gM-bszLj`Y>`K_TdW#2WBH)Wg6LXu`6F$VBfh;a-$Er z-!gFVET!RC`Uk`lWzkZc{zteML5+=snG3~&-`8vknFum)q zf5;ZvR%4`7ccxBvL@rx@9n@KSK$BYJzAJEiY0>YP&rSHT=3aXA!Hld4zzJW&ZzsK% zVmW7)@ZC(HrNB2Dr@ArYHP<}_6 zG~^XOUo-iVe}ybIEjB(Y7XcdY?|fTVIABA27f901nnZ9?%wDUT+3<(q^fA8XBB62n zTm?5HLxbYH9)OkJ0GOZs=*^q;QgW0R?2R0%1vLpv-ghXUatWNy9P9i1JG*SLGrSNK z^gHU+57w!uAUCMuj;{uzuLijk7%Ojrv>*8&JiT{3+xs8(e|oglo*KnzQ6pBVYAJ1v zh^Q)|imKMAEk>0fcFd}_RwVWwHENV1O6*m{YV8rR_lVdd65*Hgy?^)pZyulj^2saj z_v^Z@=cRCjSJqbCYJvjS%0t+;U3a#3l+bs=b;$dMeOf%sI(JsL)fxV56y4E1Y1nUS z7bMls2AajjIX*j)ejS*9+GCiRICFMX{VnVK)ZXDF{WLe{{wvB*t;IcHCm_gQ!%dd; z2U_u{#$#}vGvUT}bgA=ftx=wWvH|v6yj`CYpxrw?`*R9Wj&#s1t+Mc;jfE?A$);(u z@?0`wuL0rSJ7rzs0_fUq`CWPUJcPIRTd})A@ofaE+JDtvX=Sh3bLO+!NR3*fcpC3W z2kCp3?tM5-?WV$=K*o6Y0&N4?AAjr*F0qWC$HqHwux+H=TTa>9(m&G3 z-P^!RWgc#?BZqaRCW9(S4!a7?501UIU-(i$w}K$nRy^ z5&P0l#U&OAOMSBFB@ug^w6Q_yRoKTU5v~BK2Bg_c2);?zePY3{?oG^r_W6q|H~G5@ zWNVLiaz&%|{L~tqmu$qJWoeWrCTzj>))P0&BxW^xIz9<#_I=JZSlNAV@HmmUG3E75 zFdW0n!(LK?+$>E{js23F)+{%-{EY8Rz|cB@X7$F7J1!bT^mnFu>{sxFmI#RyaaR|N z&ax+Ab(?rN__wL|w$Fbb^)&R#h~7+@CjXMh^kC9w70$E(frTZOfBv+d+kMV;PdZkQ z?SlTU{KH#oRjxTDi{0LgExp~%ZLOv}f%2N@NuRSzGg#q{r#*!CHh7u~&PH*VY^}gt z_1|y0`1Y$#D{99GcN=5vp!ltpgL?b2A{)-B%^M z&0^DUvrI^^w^TdF8}^{Px@WvzjHQ+tqu|yOrZdC;=!xmzrNaMs^;#M-=>9Rm{In&V zSe&`V9EZrO;L7)#qr^$ORCB~i4!F}%0%T*YNZyNn!)jv6Bh0Of=o)Dn6xFRYl5)rV zijrTO)1^<~tlL!M-htBdc>2C(wm^(OSUKXESTkilZ$nHmi~Ql3?f)%i0-MnGLj0R4)z;Zcg;aoijLxU*DgN2RP9+lmXYju_e zxqU>nUu>m_gu_ZRUybE4$s}s#eC>t5H|Jjb-X;3}#4gdI+|Z;YcIg@FqD&rA;<0x7 z*VTVimTodH-FIl)(2Xmp)D&@vu5}~auvOzBlB|XDb>6op_)Eh%;soHgdA(Xbyf=*_ zRI1%0ibM*fxE94}&}|Qk?Dg}@{PPw!mV3uTO--jmPd*}>;4oIlH@s{CD% zE|qB_sxTkd5Vu`>D`@jWBLge2yu@-w)`f?;!|{pL5-Z2|kw&}dPXW_u=E`}x&i8rC z6xMQ7pL&G`c;AaQ?{AcBJ0Pelm_H17CyMqu%+dMtU!_|Q$d!b2i`t_cO#D<zG8}ii`+x9d;CO>J_@n0*7Dhy$28p`iK=#~Ev`Jx13OvrwlKc8O}DE}8gv1{Dx zKvy~X#<-C%M_f_YJ+o0$9yEAEAv_^{4Zp3pUBeMmIru4RNVlx!9t>2YXQdHIsX-~FjjO4Tjx%f5LuaYk3)9Ck zaPu+q>ct+7i!QaaL?LD0k+p*i0L>nC-l!mHQV{vY>@|6x^S2ZPyfQ_7nX2rolKOBz z`bV+_ zvX(o1AyijWakaUOWm>!}VmcoafsO|2;~;U8m7V)fPVn{!y}m#pNJ_1-7}LPR*5?Xm z8D9X`HMIk>Sqzf=KgNVN-zNfYHf%5#6v$;!Ry;gsE?CtIA8YvOybF2|!|_n$V!e%8 z8kexj(n%t}1GcuKz-=aFsy959*#PMhYi}&&eBK>_^ZmwqRd&|F*j2*~tJ%*UiDWZW zOH8gHRKC?V1g5OsF^S}FDA&9d%#htiy^Ap;K;%r?>)hgMo`~GjJcgN{NBc;sHHN2kgV&{s&AClx3l!+!*z~2}$`49b!f2wkCVk84zacn<3#I!B?(lj9&%b`R zGizV_r%$eVtU9B#H8WRk7Mntr zy*!QP{f{nLNF4_|8Jj4NZ>&Hs+x4m7Mu=aI?M7nI<3c_o9eV0aJ3F82AoSuD^8h7! zkF-aIDo%^nwh+R%@v_p z4Eu|ftN*Nh;#*l`ARlj#SwrcEgQ3U@G^23Od8sXb;KBMa;6jl0Iko!H$S;>P3)OG> z#x(u?LP+{!_r1+utG)aSf)n~D-z?JCg8sAaw&>rw;OzX>M}JB6C7&NiX6l6+uk*jq z>9jlOO1-0`LpAvzSNF9xanhbEH6zOhQX2?YQlue=d*A=!U{x&ISDbmh5GmI)Q|Wtv zW8wC}%z`iKb50N}PG5J*k_PQ!6JSr5x<#4JMTA%j&R%l)E^^PyA3{Pkb zv*0_O@Sbvp$ms+LgZygV)3H8_C5L0tOyILk|1b?clW0tZWPcrLXTBp4c&4{9GFl)6 zYzG|VylCHAE(W=7`i%s$j)D%p`fmR7lNJUfw954~9?XrinzmY|_q6pGBpIz0AB}zH zo{SQ#`z;}z(3*(hklKsRErr>%=ly9K4M!~J@b5`q-f(}NDRWWM>weNxsvdRq#98^h zQn?^Zzm!^8iWexBYQ%l=qH1uP46=BZ6GKfUeXf}WqR#Feca1I2iz$Dy`lf6`Yoh+yUbk#<9ewb^KYV}2 z3-Ix-YEbm3eGe*J<|u(ucZvpX!2gvyVr#Mi`E{`H9Vm@81*=SUS!w4uwMEIA7SC4e zG=ED@mGd_DotY@aokp1M^Uj>fmD$uIf7db{n_+EPaeSXJ6!gIAYgak<{n!3|5N!Tu zYB-N|l0Y9F|rWcun%Kl72pE8pF# zVtK0>zNV=)XZh17+9n5WZs}#x&RwcI3$@o*AKOw)&$SDYc*_wPJi1$NBU-wEN#~U1 z&6f-zSsI<1`uYCV{yk`TQd6GEH{;TCh22LsH%w99#@RRHG)lI9o7C0+Q|5GjVwv_x zW!DA+v#vq~e1;56L47NcpcIz7Ahc44*}ZZ~;j-;(@*je&`IcIFPx zfA=;x$CbmYN;Hi~BgI!RpOF%BRod1i^;mlg0Salh7dadauIkpP=9i=!=VX5FV;kJ} z#u`hEc$EU|Qmfb3hLlg&{kv;$J#R{<)BlzeE5VSS56eK_21S^o_;y7MP-5L6_FT~i zgW0-hC^*dIr#~pkR^k1 z&;NbZmAk+xl8m{rRe1WaRHmTO;=L!AmW{?IH|O{temvVfQxVO4xdlRa1vxOF`*4$y)T9qXs)2i=Ym1c_%N_x0FjrJ1R^dR?0rK992x)3ITX}$ zIQw;B;K)NT@UP?7uapN*UaL2|)B}PG94@|aP9@I^ig!Pq=@n4A(VbZ{q@$c!k}DyT zd9T4Js?p(KiwKdFpx5*($c_})b(C|JO{UR0IQ=L}x#Cr2E-M>HZDBzJ z1de3z?4kV9qaLbh4&v6n=K!GlzxVm26tdDs|$$KG{xkr(Zgd9d=P<*&WGllGM zmZ081y2JDJOx)==-2my`tY$x5rNxmgl^T3{{c@}GWsXiDeeH61r(eDui1~1!%|l!W zzAA1%4Sv;$su_bpIQb8Kkje3f_Dkh4udj{L5|w3@MeG%g!bU5uOCXKkFztfzxh(SE z<2ir)6W-Ub#|AI})d|t2i_c{-H1W!gy!%7JkR=%2drE>--p1lUQ5~*-c9%9(tw*AI zM!q`xa9+aJUy!%(q)h?~D@OCC{h`n>v3kq4xon2W6bc z$;R?@0|XhU((`pOIsVJ3RgU{&!`^d0RCiB;#Eo8wr|v6499*SFa)U(~I`W(iea~hn zZR1klc?N8uYOXs|t0%a15>`Du1PmEDO)yf|Jc@bktZ>)7bKlM zD%)&)WER-HY^$|MZ!nVzSeQM#Pus&557%a$3O)FYyd*2GItcb$ROkLq)l|a$-X1P2 zK;a1yGJAn(OmKZE3fkq=XJOIe)W>c73bw<)Z??I-7PoTo=2b3(bI;;AjrUcWw_JOl zx1}!$!B-W9w6{DY?oQg+BrW~MKo#G_q7Qz~Rcii`ylE^Z8WeH<0|tH1t`kHy=Tb!5 ztgkt%K{abI-yfh8W|NwP+0)q-*^P`>z6A5om9n(aOgw*;ah%UxsM^Q7%@S;MBW;Px zQ2EZ@KPs^?4Sp3}Rhl)venYXK-tFN$-BO|UBcQXgK>J^V;lKc5aPr0C$dW%7!!S`|E`j`atg3Q_Vpz2L!<+6*@ zO+{_)RV9lT%jPQGlbiM0tFdMAy~$z4J#=#Zw1+#TcRUNY1bHzh zQ`XDt(7O{M^{-4qbJG4ScrQ$;W;wl=<_1oZ?uIg$H+253%EP}5AMsjpxOVc6k((Hw z9X3%ciH5dEdHT~mTSonA9dtUu_ zd%#pyM4p{%k;EC8Mh>v{=3C=D8;5*ATwnbdu8XylYBu`A`WgRE?0%l+nQ~RL7sUcF z&=f+u0%8`v?h-NP*~Vd8V})e>G&uid;8+|U*BoWk29lj_= znoCG?bFQ1LlXIvHCNke6;gNEFGwo{Bz49N;7}iSqjHHJLG@1{Tt#1aO>h1fUM3%rA zc(`3^a)U&5TV9(_PODZ-Woa}zyAq9rq)@c@f@YMkKh*~G<2W`PgjvoOyIkYBaGC!T z6YYtv31w2_Q>b`~)oFUxk%}>Du6_3#3%J61{OpxCQ~Py&KH5)oC4?FuuvS<~LM3on zM`WAF7igQT1zWu+3JGp7I&1@A+Ot{2b&Z?vs6LiF1R^3#D~tId7)KMj5j3;{ zRV}L()(7Q_dKvF{%whIp5sdZ3DB$F(NUu~G*;eyC?aG*Tjgn)`qnAf!j{8Cg{WZU07En4Yu7E-rRiuVz3Ag<|! z{cvpcnwswMa;T?mV{@xX3$kvsnDt7zjG3t5vp9dVDgiMW1EusYQI4_V(3>b7)^Buv zT9jxWR0kxQ;WMP^F#7$?dVZSo^KIXA#o;pNhWoTrh_ddrn@b9h1OLo=P+oPuI^Vno zp=bgY)AP2t1UZ^@i+IX>oSy~Q%14Cgl<4EUM)Yy;oD8_QgyMeU`IN9~6N76%OxD8h zhH2WPXJx0bm^i=N+@nopu_Ejei_c%Vs~t&+Z28F1LF93MYNC@8;rU2Kxw8C+^L9Cy zNO8^5dkpi{Cbg+cpIFf%M&4!)o-b+=1MO$tYPOa1-oz{iM8MpVL<(M0286pE+|XRZ zVy@zxS(AZ3hoXPzrHn)QyNdaLGUZ9N|8o~eZwkWclk58wr(N}6e>tCl-T4I zVf}?(R^PXiBJ5gOFWkGGqAVkpZ=X9ND8%s)Z z$y9fmbvF6!eQCFH7D3-#248edD}Od^)C#qQD{#8sOCJ8c>&AlJ@1mQ|c#V>0)lz3$ zC(Oz!n2PnTi9%zEB_P|=(BJc8Uc0uIKKvov%Ng0o$7GHq+vt1yy+uiR?tS0_Q1A44 z3#}K;Ca)_Te2wK5vlr zn`tty$Cu&%j)U8M1C%axdU?>5CcYtnt7E#*z`4&aws%ditOqXu|FfE9uCobbtL|N1 zxUh~`&9YzzORw+0KUh#Ph?H^Si}^wdN<&_cPtt zda>4dw3f^MFhPsici#=E*FJeIgt#s{R9jH8K{AJbtfjag2o>d)z}n>~j9EapgQ#3N z3LYi5X5BKb>_dpQZ{7gb5T5oMz4~Gea%3W4LSBp%!%Pgn)Vcq|q~Qd8mcfXiPsGP= zdo4w)1<-sDgu@-rm?T_>dwnic3ReN}oxbH{<<{Wcou9CutO~zRHSI05SMd(X-8NGMM)j*U6-Q@ss;EoxIL;=YWD9ixo&U;>; zo}xv)Mm!26f~w$m&_@$%ZOPY-y56pE*}f}VeHNdMM$%{HID_|HD~ZXnfDOlWWn~&{ zq#pBz^;{UWdvVsCjlby$*(oc70jKt2X%0>b@1{qinJ)G}L)Gkbe5b$Pfx&2|!?ogM z-Y6;Cca8J8z)W`=H|mr0qb!~JcsgP_gXr8Wo8h_^In>I?7vGF7!0wvFrCT&qX!6fI zq;2K&c1lah=kI3$v8B|Ls(-IdH!sMkF8uATcE&idP4b>;8Y#>0g}tqD{iE%oF6zttI>;DiHXo}>ClORPlvE?&yR@z4+4TikfAUTx ziGMPW!apyoyZDGOxXY)?HDr1FCidUb)Im=g;B3k}@Sh>YG&H-nG|hZ(KzbCVwbJ28q-XKE159 zi@yHR&8>jGQ2&%Bvlcz_h%F+hL6}`={p#g24Bwg?w)Sy8j4s~kt?TPpGHV*ej0hDa z2VESxT_97c**CP!-+jkv(PH<0|KQ0r`+p~QFfQzgQBg)+w};S5N+OD0r=L%UTTmEnJ-tCAK~HXyzNeZKMK!NkXioqY6ET zOWyB$j%(i8$2%#AiCHkp-amAnNnW})h180TQ<%!s*JhWMv*Y#XIqk)KolT#G^D7i+ zA%DK0C(5?xz0&bIaunj}JrJ%mgSAE#fT)&-4s?j_(+zLBzTLgL&&w2+%jz#l02Ge1 z=u?j19M2GN$Gt4dF+gd9jvTY8*s3Yi<)dPSO-_G!^pNfN;p_~?8q;t4fxzfREn`0T zVJDDon`0=$GD~4YIEaxeGh_~0NPEOy@ecL!(N;i0l-hN4wa=APBQ)xr* zNHo4&ur1^c;O^mqpla+s#X&9}AkOVf?}=)tvs%voou)&;T%G6er{)D!B80{AWhgAl zJ?)J13y!L$%k!$3Ql!`WpqNon*hbsKKs`p@NqXyR-K9L*hccMa+LOUfa(P+OeH^g# z#ZwDEa-mLpyNOS$jhbDJ79Z`jHuRmJXpZpLF6?lqr?~;Zo?3 zz#~>ZA>9B%m6+5*WO%yQhzi*H7n)0YW~bv7t`^A)_PGc#sbYaqR%@AABV-FBIZs4v zk+)@{&qmml*0l52QZ; zXy_ZoR%N^3Kg>ZHeu10b$JO~#?35Os@sWE98Dv5JUJ33?yK@O%q)2ATfN^DyITeas znmbyyyag!&2ElWKb{5m0Tn>t|uZ+BRF`vXNmT=#30(-<<=A&9GWz*ZIKTGa$K6T`M z@KxS>&T3NH@Uj9OZ}ORSJ_y7)u%9lIzk^I!4!b0ULjm)cJXg)zOF9$p8)xsfrL`x~ za7S8ar{C6<`_9mhyth=>-Lp>62eplTn#WPF&EJ8pUX-1Bu&IaG3%ooDXq)s%zRQn% zD}CrMXWWEyG3iG>QL;{!bhLNM((=L`5OBwg-0hMN2;2@equy-8Zk9$0Lmo-g{}*GZ zY|Ux7K~(=^)U+n0t8q>XIhO>|x0{lKwZ+Nq6aE=I~6159jlvPXd%Zdn$TP zf-fKMo809579NteOmgj9aXYKFhL`HTV9gf|uCm!2dW7ig?%?F8+&AbW;$q1%XZ0vT z)!d%S(`0!oxucV&+T(mp4y>e`sOlSQ{}iZ%dda<#H0P%5wO)(L_j>a`J%1bw4eRJA z)8iY@6KWcdevc>0xUV#&ZE2sA(dREW{tIhVE`RC2YirmaxZOLeO-Jh1Jn}tQ+wukO z6J#BdZp+QsJ$)OS=(XQ8&U>7Gr{$zgL2Fvpr_XOSXEB(!VfJYHM`kh(bf*1*uOA)8 zV@vLf7-yy})0$4bB{qrqX5&tu11Rh3F_@6`0YiX6?6OFd2FUX)_Sr{*jZTQtPZNhO z&pfS1G57wMd~)9J5>?R7q-JnvUB@I>S^D0pQqzc!S^7jsfZq;$GgMg8(<>pluCKW? zoY|dc75*j-nX0%kXa~B>?bM&OTP#>i%xOlYh1Va<@=+!5TqC<{iIh)wyVHK9#c_Oy+%`(b z^2ONRoHqAx;f8w;*23^Ghtc0D4h~!Pb&9LRy|IZdCX*nV$HXP&`xQjCKOK=n9~-Lf zy~Z{=6LT-80vJoGYfh{#$?OamW8MYcG7V~bY~n4&({*`l8|#1hT1rQ5sOO}Lqdh_= z&>1*T^89lszljs^n)?@-Sruqfsg8s}*>8!bjG=P^3>a-P*(uFeeD%KRwa;L^psgdn zMEtk(f73G-<*ave9Zb)5f9?EPO#<%n(&pOMv$ekzNPDA6I0yBy+qi-JlRB^S-;V$E z_4O&QxMnt&v_$P+;a@e@?5lV$FSaaaB;Aw(L6|3a<4cfi6m2@GWA9M}l)Hy$eY@TNW~F2`h?WsqI3DIR9b5n& zS3liPeL6vm0lC)IX7vU#wuQzI8<>sXtaywC_TVL*rA#&iLd?z3O?NpEga}_UFD!Sw zKuqdy+OyR-&R*~<<-hy8uIxDK$EL&6>g{a=C>dLjIkaY zkd_}db$7D%%;38jd%-P{$>gVL5Ry6{q2&OlZz?@nM8u%Gp3w;TFv1>=qiJ_k(&)NO zSMj84ny!sw(7PhUt`&ep_dK^$7`M^2)}<)C}y#WoE|CVaVDDw$t@ zG!{aJB18E%glTC2Y@U(8dU-CSH#38ajsr$NN&NR^$Ixi-SBqf>;|DbeSJ_? zC0Xs%3cGt9di=ASNubp#Pilk<{$>d9V!tD+=fQLTNr2fMVV1pEqoZ!T1CPSNJI0?P zI&J_#pGF+^5f;E!V7cnwT0gs=dEo7GHtEqeDwmgw0t%5H+ipL)w|b?tW-~(PFar<( zxy37;Q>&i$SmGYrU-nr6N7{>GO9`*sIrGk`XU7HqWzif)$a=OWrZz9~^#WImXJTf& zRwjqQ)U7lxyd$I0=SMu1d9%gUQ{u7CXJcQ>0u zdpX;;cTAzn%bts)h~ob!HIY*mjq_zgvGb0x>Es)$HD_L5YX$oE!(|ceLW!eL-YCH8-!i`)&efmj zq>$yV0pSUyzB@?8pr2zhyM7n>y4*7@d-ADbzVB0LU9ihE}Z=`!mk z*cP1*1ZaeAH@UREkAsR1X!zVWO)-S6yym=muSwk}MeMu@(jm}<_nzp|bNu$L({mO^$@A@yA5Cgo-uCeQMNHs29J z$ulz*MVpcl28IaVM%T!f=Zl(=Pu%lC4zA4rf$CE#?d!1~l^!vh3xD=O`Dt2$10$F% zxyhM6No%g`2z1%3Ryqv#+oVCzbq{8Z(sv~+h@=LVb5dJgg z;xi>exJ-{5Qg$$OoG8krK=|sj=!DFH*~|%xWt&i)f^v|%A)Fk9o{^eE25(Zk!bj)I z&o7Y7u$P-5UeS-$=^oYqkN8|BK^M1=zR2628hozes)>ge0`Cp?*ZjkxC~aUpc2pwF z8g6{|B*ZHW^EZRy?gghG5I!apPL11jGt{T=0+pLYY?j{@d}wqOE@Lwd?q1}AA42#K ziLjR%vk0Xj8IN&3#XJ2SUy&)txt)3s%jB`b-ssy027y)ZruMj2OhAVzKD zO$ybapN28)!h``9NSN$Wr9%eXc>MA8#!R4s%5}gdXI9%?`$MF-bg=xG`{lrcN%Djk z?eWcn#<3VqTOrZCE_ty+MJ!fy^!lN+kDzz-dqx#_h{@hy555Hk>#e2R@!~ zfBuV}9^2BAn{8OJI+3tIy!HKKVjeeho_SmV2%v_pr&^rJ{PCF!uGCfMu9_~ac&w!S z+C075sNuM&;g@t4!+_r`wW*ShSSVl(oMX5>zw(bR0VTiCb#Ua}APlQpZ9v)l>{y>sgRs1}1ZjsET@WA@V zE?&Ob@L!=7)Z^{i_%VP}ED$-oq@0p|1hg#kph=ZV1!M-!9>h-Z#Bn@ne3vDBtX)s4 zH9;_LoYo@LCZ=vL10PzIW4dL3MzhY%QfJIU+ern=4V9Jq(#t#I>p!-A90|@pN!M6| zP-j0^yWNe7q3CuN`n?8A6dAmTrr1H8#;bllef2672(0YRMQvdb z%fb@Ei+7bawDvZ-IUBafr5SI~WNNIc?#(7eR<7I**8Ufz2bJgMxkv_+l8TJ)v#iT} z*`%?;t{l$JdeiZ}4dr)TvLz*CN5g_41FY_!Ly5^ZpKK+ou+J68Kh^1|u6S!m)*{?#jS%~(k*i+6Fs{y@36oZW!wL8z(wPqT%fwz&hrtFlfW((h=G4e%yX zV(hzWrqsL_o8Dq^(kWRK6KhnqY#_OcxOXZ!ian!yuxp%piO+|C~zl{dTvcW$3D zpe1+NCovrLk+*5EaHA)<0>j4kJlcgHB*K$%Be#o;DR>mqMP2R6o?d6f;&cEscO$Ec=-r&z$2inK~`Hr>)|2}Iy z&qfD52skc2FZ3Z3(QAg8TwSB`bSM3&ucw(GfiYKyOT3MZN{9mfmeAn0by5qWA3t9n zFq(E@3Qi|W9Vj2~VY7WvZTdRr2h2@JOMA6|ZaEBHAny80{tEkh=_x2WyZe1%K_21s5?Io2dS2<~ggFYeQ4_9`+dXDD0 zs67Z80q!`OZwkZOr@%sh$s$$jJ4C(NXyb9bZ{whaO)kGb6zF}D?y*RcE12-^?~%AZ zu4@9TdP8tsWgezU1Pup_AO4DA+^Vqc9r`wI5zC)ZB?D`kwsXkJIMUX-oZ8MzI-c=! zL9DKz6t|MMc#nu~N~Vpzo~dVZ8S50pctHpjbO)voC^2>K;!$h|LZVlZ^IP#&(_JOU zsl3YZtjz@Mgs3vU--bzilGWp8ziIqdJxNZXNFiEuvl5=#(1A5;9)!;n>vys;O;+Zj zR{tUC=~#^XoN@H;WL_FYxF;4UuFS@WIspYq4TF8j>y%t(pZM^>Ki)H`SYC|U+w$&) zM~F=?v!Li!^gG7MHcr;OtZ9Gax8VK3N}I;p4(NeSyrN0z%uJd7&H~4(y7|oqnfv4$3J@ zm*3gIuLCKw;Zsn!07;sr_BHw0*lb*IaBE&NNsctCJF9=^12!{DpfJF zjsEI5u$9Ts&BHJ@+k?i$RxiH&!cfp5+45VaJq2CjB`PbP{eM{i?Q6?u(BUSBXRoCS zTd3EnR{WdG2r~Ezy9Ab}SYBsMWo?6J7tPA$B=zwmBoHV!ntgx6iqmhfiNbsMxdI+% z$glnx@%I<7FuE)nTNMnp@uM@O)0K^bMY6~#Fuo^`uynskXmVW~zkw>|P^?@B^dZrS6pXQ}A zoF$JXApLuswCksJCcnj@&Lcgh=CqLhIy}=qsYt3M z>MS>=VgiUis&(qOoBUEA`x_iLK6b*FKavm|X2DzaM2i&c;vL#Dh6&&B-fLnC{0CPEL2lu1CZP{wAV)FJe}sSn|DQj9IN{APT_tR`XQO89L+ChT`FzI59f8c8hQH&pU$ zkDxs(7?%&f`eob=u|`(9j|L;A+gM~pYzD$Xgq>?mT=9Y%6#jr*<`naWxBXyulc_1ytzYZ%?nL6>r|Iglb*5 zZ{%s4qf9U;D;>u$k~u zjDTM^Nk^klL?OU>M5Bzh!!~UWhMW&P4s3LeUFK$86unI8;o|YZW6Si^m0TAK}$qRozKQ`>Nqyr@f>q0$PE4@(d!EL>45Ua%Y&>s zH~Kq#SfyjOV_iG=Zl&ByxPLdvUb)acAZ*;h$5I%2x*@IiC0B;RK`O46Ofd)UG~mAL zmb8=2U_{+%G1nH(G&kfWPbas38ThW05CHv*OWB1X4WvrF&>SW#O=n0}243>MzEXuE z4E(x(Vjr*L?Ela8kuP!U%o}2pMzW9s<$k6ZgO&0FFRpNFd zt@IXO1U|y+pqDF~qZcP=Ex=%5F2!xlz8V(rj58~W4YFa4?_*{EC{rHE{E$l#z9Ib={U0|>YoaM~P#IkNKN8uL&(Yw28s4+7&8hp` z4@YRIvtXeXRz{=IiGu%0cD|6WP4JxRsRzDLwG5uGJ{(RNX;>fV>YoxIuVZ?b1gjK* z(W8MU8RjOivlybgF(dHmOHFM^=sD%-Z|kM7OGbtZ*5#|0s*U2a>^``l?re2Vvb? z3>)8nVS>9DG!X92%6$c}$>9~Pr&}Lovwv0R#e2O@DI3SeHJ9{Z3c3M1&&@*`P2Ro0 zAcM_y1k6VkA$>iAa)JnnjOu)8PvaFD z!61s`FryjQBmXWGN{5I0#KZJin_J@1;G^Xt4tV_Tyn^QyCHQ8X*E>exzVJJ$X^VoF z8{|tZpBx@uPxsj(oNb=!JZQ2%rQTFngeV-DS+sOE(W1_T7a1&<1mFkU{70i4j7>6Y zcovJvuJ=5%@o1UH{R)mH(NQvlPJS<^ViJ{a>Kf#Hgl*VpK?06Ju@2N7v^(UbBC>;a ztn0aA%FsP}=-Jh-ja=Ff;sU{(D4L#-c@;g(5=3wTOuI1N)eUO@$2vlW*m{fMUvn#lUCGB72rn4vpIf=Wef@o+Z z4{;8hs3SGop(eFJfAymm)oQmmK)W5m_V?(TD8{VOv*Yg*A2XFE!;(1&a<4IIRrp`n zD+9^IgvB*^tI&!?ZJs61#K1MJ=>oDhKt|f@o9?{--yGafH9l^fz@Bwhd}}FwP2*tj zY+V?Z2xZ!Ehos=e$}1UAc-|;gn%rNoSecP3ZDUg?3u{i7dLor zJNqnXE6AzsiY9wG%PdC8a_#0}ZnAzN&L-fRpJ9cL?%DR!+uh#E%sPG4k zs+cR;9?Bglfqf3tubaW&pF2cSMjW|G9|en`JpQzKb$u{!q_y1zwIIOZve986J0|YO z5Se*2e_U~cP8<0J2J%M9k?_me8X}mgC?@P^F8^wZd?f_XO8>Ykm=C_F`qtI)d?1{4 zZU8O)ZK~Jepi;Gd(FWkVTh1D;Ys}Px)kk@CAZ6CpIRhf#;qpD<1xmKoN(%#hwbqJQ zjN!PWsdaY*hOo-z4U=GS4&cjHe%t{jcuODXX2Cj3!Ng{W$IfkvXc;)P{7)Om2E#TP z_2!@htUg)kSf6A@ZDD)LS&y$YUwn(kLO1DXCMnBSXh{w~$m8%K|Dbd}U3uRbFr-6Z zTdP^Sp6)ntj{6D^mJ}YImfE(+P2~GminBJ#8$4zSY(I*#I3LRKJxNGP$fdEDl`cL^ zu7de26F3Y;p^>#5P&NQ)h(+xl0csjeX9m*4?$RCEX0e=@cagpr03rCee(sRir_~xZ2Vy?Dl%D={9BMaxmh!YWDF)rjpk0wcUWap4i&5 zR>y`zt6thIXa5_;eK(~uF#!XjxU&%WW;!Muifm~+OJ$XAZ;6^!=z%tJeCaNherK$Y z8tzQys#)ipY6Lf1kl7H+81sH^>*SC_wh(6~uCY3tr7n{%zr@&Tzxdww5J-8iFiv6J z`~E-*!&4?7w~DH>nTf{NJV5Kx+keFO4}zz!@s5cCz~w8t_23PNsTi(Ld~xb{-V*lX z2I%ATSqg;dvFjAY!DC0&U7!rHo*l;0VIs4Zn%(Kh;L6l+|vkS+@utL6CKxFJ8tO(tXgh zh3_o73$0fBEQ5DAW5%NPY>L@I3~aOIg@@%SfsnGc&?W6Gh6_6Blp^%O?&)lfa=dJu;9JT5FwKhB&SK~XFSsS)``Q!c<4h-EIm=XuYj^MXBrcKl9rB|?W zZ#Y@ehxHwatXBruPI1y+LG5<@w74+MsF}hGAz4Q4@KRiCCmdo*H*_IT!r1~gAq06doiaianY@O!F z7+QBID&^ye8+o2_#S1FKDU0sq$2YzcPLw8_n&6H`xTx0r`wP{gHRa={;huqe70cwK zd|AZaX*?pTi1i}IkhjXFbOSPLU4Q>u`Uar!X>y$OhEp5|U-pdutbknSYkmNJ>i^^F z&7+b|*thW-Qz}g|r^H0ate6>dAx8m4opRE8DxI=Pa~DcV+|d+K%q*AOGRM?F&2h>s zH!>I884-8PRK$HlFmXq4*B^b~_c`zP{Ql)|IB@vf+jU*{b^FZO_`ii(1ssSM-t&^E zTwfrKClGF=%YbA2;ybnLHe)px1JLVuZ_mlt`6O}h`ZYzp803o0HBJ=N*ifjP1XO*k zEN$8P12xz?N@fIKCl4>)eyk3Qa{z$Fq~lCG45G`90w4vV0{Sl%cG!W_{ukuTb-es1 z+c&>-w%f5k(|`iHl@48KZx0N8UUN6aP|w#s4bI&(n2{*^w^D$P9@>XkSw zK@^4eQg9Glf%FfKx(bQ>#pYR}XL~BT_vOxK(-L1}X)F!w$i+WN%K918S@sV~DNSIr z%6lBcPb30KF8$*Wevq%?yyz}4w(*>I`pL4gkoYeE6ShW1i+GZ40Ij* zFrRGKhoSG~8Fz$zI?*V`tz1;W@fy%NEmt!Z?rl_UCwh#%uD;^&5zNaq#7n?(R;{l= zgt>cG{veJBLvTGCj>E zD(M2T!hDbr4zN43W)|SX*Mbx&GqVJADJJJGb(0{%Fh(DJp*aR{4Az!QQ1N!yzC2K&5jP$N(LyTF~2bEbh_m zo{@Y1QDnIm5`O}QIyWfx#dQXk%n)xT9dY(=&CN0;v`>eA>6C}iy!9qwSy#!;o)d*C zl}ksQJ~zsaszF-4!u)Yz8F{1IjkvD)1R<|xHL{6M?R4?solS)QOP=0+P}nMeZl0H; z=vgG64tB^6Y)KANN%3pVH^X-Wp+7_!{73b9WTYLPc{KV+t;8yxa0=qK!2J^K4T=S5 zMQ=YWeWjrmoG9C`rhxw@vws_smr=}CiWmPI(bC98weBy*%_$D=_3M4d8AT`b`(~{q0mj_8{m^-GA<7&%Lds$su19$c~UV-V9YSRj2G#v5knR`Z+C z&A!;y%}yD`#H#Ya3o5m6MdMrjhbi>@RI2a8#-#WC8`o=6cIkU=r7oKv*=W2M+k`;d zO+}C#u`SWsaE@;fcO~Jb@myu&ElQiyt3hbI+1 z>vz6xMU0DjWYKh^qXt62FZYw3czJ8g8AK1X(`on`Vm521!%R&a8=hG)d?`wdC^07k@`_i1TW z%ui)jx@Ty~%^PntS@3g7W!%M%BXY*zmBvO{qVxFk{YkyUqrE9I@qsVRF2@r;2~?Xa zn>!Yd`1zhj0q`;()g4A#G%di`1EKtKYvo0rfe2N;+mVXp7(YYPtyUhxt~6LWK*XdBH>6iqDOVen4lbaPcdLVzO(67 zFrKaUa54ozp>ezC5j9tQv<$GqwTgvz?=JM3g&JfNR~cuc2FunW7cNr>KP)2QMQ6)H z$KEfm)26E)6GC)4}wCJT~+g+=0fj)ef7Nk^Da-@?giiPL6BngsQ9%H$ zs~RL(3$tZatP|&H_Vz;rYm@gwBXa9(1>v{i#WW1huQoxoEmQcriE9h~`t)Bi@fZcs zzQs_Fok2$M90i~_+qrX?EHZv2GeQ#;g6Kli1#nC;Z2;)!`bm-4nzj|cG4WUp>}S69 z*~BoKI<68l$_^of#p=88-@W5Kig#)a`~(rbv9X?IF`kVDSNPx43G<$K!`~hNJ2+_x z&W=(!k(r_VwveTtm+oC(d2-SEW*P#%^5Wwdu6oBjzee&eh&UXSP;Kl*yi@Y)B0dpl zv}i@@L8j4Uf_?+AtZm2k-+bW%=c08dew5ho4wK?2WV1Jv}ff!gR#_T1k7Gg@Dzx5UzO(UJx!M zq0JHU1w&qZhJ`k>G_?!7+0uzV3P7J{WX0DG`-A`aH&|)RD4h5!po;K+GH#gS)(mi!=>&;^y1`1JM8QY zOKBr%Vb>l~a1^J_Nv~nv*IxgSfaJeGm~`IgJQz}>h7R0&VOve7Vy$~?|41^xwu>zg zRtoDK+UM}42v&?+T*BrA%}@~S0+DXEKmOQ!RP2UzUg3eGXQ!$B8`jtYK&Bu6t>Qe# z)1@S?>6P%+mJC=Gn*bJ)Z=F!MaJ#g85E{%o%drR9P{RDITssq>`S6F=LV*j;9XN1R z^Al6TQT@z>z$uf%Ij@EnV_PY2FfHF|HX9bEYqF`;Ez}MlZ`#TiAbfDfi+!ltD3}Q% zil=gQ0!n=8Hx$Z4V}4Tz^R16av!jn+{;bc+yJxc6zGEJ`;@X~l=u2#nmJjC|BvFOP zP?#@OrI_j4!BBq{s5;E9S~{`OW8>E9qXlW8%|oo$PRf3+OK+{zCsk7b4ELn*Lb!k2 z{cGnX-!{ihfv@bTy6^!Q;VcaM4|~7bMtnXw;P>$20Nq~cAws-c_6paKb+WK}cl&_i zb+)oe|Ba&0t@s3~70MW8x!RreIG<2xl-_nE${7g@B+1lCe#pij$-Cu6hxXPmR~P9c zgIXwE&)%0?S=)img9*vH0%kgL>v9pVh}wEzLA1Q19G_!P(PTnPKv0QhZp&>1;G*w+W%FYs4H<8>X1TSgOyWXV4 zk%{O3)+{=Nh5N$U_Jtb#2_TUz#BaTnJ(mXOoyHxX!+1af#w-gWLy~zH5DtRBb_=>3 z$6q+gc+&6ORl|~A!F}_r!uT`F0lF-mt7!oAOLQ4xU5F~Ngn4(-}|d>OM&dM?NREBMr|_7ah)XkEt}Y&FmnD> z5MP6hUYTrOIAMI@9yW`cuc8rkvcy52yfqTZuSfcjo)O=>&vB^qjtDbU!zoU$*2pzX z%MIPH7GOhJ6Q7eef<%BCKfcwdku{v%YMPOz4GKAzv~>-`NLMl5ibOo%z0fDdz$=hD zt7BnpcEUV4%r|q1tRw5D%Jy9-h&bK?Hx&swp;$*tWP)<>Lg<&mlwe^CRXgDCr`*2vlBStT;1b0HfLUf2&pb+?X;ZGS`lScxurX}cF7w$H9TW?fg6BrJ6g z@b3nAa#}XAHVr)TuRlg=ui0XvJ**rg&&iYKQJkj1r6CeNV1fQ>e7xVilY89r3Z{3N zmYpF(YQkzFge)UF?84gSj;tECVN&0{bl$MB?~a3e8CfWesGZ6E(o@M8O+}@=1#sW= zpZ(V74TaaLsTl4%v$cmL*>h8$+moQl(Zj1f0RAMSC09F;A35SRsj9iYqq;A1DtDoj zJOA^#qirbvM2ex{l!dxNutyIIZ3DA_20sNQ`G}NYZ1e!YH^y-3u;CU3(UwAaeRQg| zX~VV3G$zuPT;3~}Hq3b;#>xOJAYL3>K}@|rhLE-LCJsBdm0znLbuvN2RvJ$4__oDp z*Rs2Dn|~;n6cU~`+JoA23uj~DX`n#87!fnO_P4Zp*7!AwL8Qwtm8YC*r4A<4rJbqA z%buH$U)ETWIu~afvg*R0T(fiYy^K28z?YRTp`QuTBiOZVzgfG)YkEhTOD^RFddh*V;Md=guG6q zp5$D!fdv}O`_EoL4L70m)dv``X7#iebK3q-h`&OUt94dRn0&`i6?HOGk!**tYPkRR z5TeO^Z}>Wb0qdruJ@ROLO48HsFP!gFbVMya&zILay!>~IJS0FTq>o;5sf&_oaE@4W zMX38%wfxABx?jgHA^Ul<8a0l8_%mdIrW>Cim@<8K2)J<~;hCvV5VoIUhIt8a7`0PM zA&y@xkX1m&V(54} zZ1P5{^xWD@)Px&50{}{|*)N~H(fQ0troPt+_aX6&NVpZ-$QplEPWqlSaG1u(HICD=YsoYz z7UZFkgy`&ao97(1Ov-f`As5vyteGR)2#TD4!Q~@v4!w0!fvd zuN<@Sxo`|?RX!5~j*s^27z(pD6S`|N`yf-fS-gcYiXa=o)3}qxyJ971GVE$~Jv#L= zFKeqIIVFUN^Wvr}@0B^^8i6G0fvADk6wvJLG?n-tSZEH@5ZiD^okC}5aleEe^l|i$ z3^eJu>{VvXJt}(Bm%EzZ30sfiKX!_ck#?jT zN?w09cBN*e4 z<{DB7)oKUYNASOx*N#t|Zl!cRsVr%W8$BsgG*|2RP!!NF3OiT)ZLv}oxBC{ z>`l4U>Fh~L7F^C-mSTlg*Zq4pn|RM$%2ctnD;YK;+Kx;+icv7V;X-}QG8Vm23c-Hv z+w6@+s9;I0pw_rYf|sBb*J49Vrnh*{+_>`72uM_+uVkhY=le0Ote%*#rv`Gjw0(hJ)tr2h)D$(#qw8VC%&%XtgOPx;rV&F6MS2Kax-O@ULFRZl@)Vk{?lP!8*rW9FNl+b*fc4c!uwQQoe z{Iy#6NONqdH|yX=y39-bLd`@sFe(_&R8({*GN`n7VZCm)6UZh}$CZf8swNzG>os=n zpyMD&b2gqvvktalqg|J#ZxEKQ6bYFZXw$du!gP79+eL@US1IzO>c%b5}|1q3`A&YY+3bbQi~IUQ@8_llsNOeNkD9n&Zs$Ya@=lcY;}Sc-bR3 zZw2h_J$u8i_QE;%fSTTbJThO6B5p6#4P>z+QAaWntBo1Ktli;GB!OSaPmKn7FuS(X zgV@R=qVpi8y%Z^86cu7x^gkD$1%g(18;2mAmfdN`mQ?Y_(zEQ%COb7FQ&c`9q$kRx zKO0G(Pu&9A{qD`esFz+Yz`c($3KGJjg1tC%HN018Aj$G@QUe$3y8}O3|NFfx-kEp1 z3cq;=&&hyTOk7wZ4X4Y{EJ{HKLh}iKx#(=O&SjImyfgGK{Mz+eD^LjI>|QuAg)RhS z-y*c$PfFvZ!IFGD`Bqs}MEXe^LaQcV^C$iOh~YI@8z^XuU~ z*j=9r;PStbnQFdFC9Kc#L#$_Q89B7~*}a9)qlPP|T*2+JP85)+B?C0Ms?V-#FpoF% z<^Lt`umEFLS}f%N3mrIG#SXJVpXbcHL!aCUjW@hznF9OS3JCH?k#Y)nokk?snt?N- z;ig1t1t_>g0|Ub5x-508{BCCInJPm8`MY})?kP|Qos2zsxBGRALslM_1#z1|*sPq_ z-=H)}OI1RI@mad6L$vs$tq=d)D{yR@+1eq!0qdpFUsZrOwvw@5hb4&<7k;H8XuUKX zq6-}1=gjBjWkpmA)IUJg#3bka*L3*%>cb|3;ZXA2fV}7C^lt#HSG<;70V*DghrS1D zSUIvaMY8}O$7u$jNLu@$LLN1Aq^k%I1BYEQ-d<`Pyg3rdmM4?Qq_3q}U!5x!&C0^o zMvA?*I_3vI2#XE>R6`%!=Djmz8i5?b*@ui@R#xe-P}cv46BBe8lH_2bRkvS^E_rcI z>(+gyXGb)r4P#>a6xqSpukMhoq%Ju4Khi=gMIMs$=`GR!!;1NTIvW)l6Nn*PS2zv8 zNO%T z4^Mu^)ZR)q{UlHIHHlxeYp;g(C53)0Ejz(V&65tD z!{!E&YSQ}Vn-=_KW1uUnC;>snxic(Z{hvNk3fGH*#(Qn7=^_=>9pv{Zt#IMD+MhlE zQL~r9v6WZa)NUScysZ3E#c#&EQoCZzKPT>2--Cg4@#)0%9Ln|aV_4^kj(q19LDTFX zwY&=uG92aO@w6FIC7X>6n2l7fuAmUuIvchA0joSTrZ>y?Axo*R0WG-LPN~_DFdZ@_ zk~@bDUe;W>V3>_%Yj)_L^|9+w+x9=2#6y3MWh80$e+7ANMr)e-4j9?xs3n+! z7}nZL4oT&MK9!8NL-im}aP@$T=am&n)It+7K#)wZ3ZK48t<6VV%mfbI*S%XF#&7BR ztZeFkX^S_JJqPuDx%RNyv~YgowaJjf-f}~Edr@_{T7R{Y=yq-G*V^=K?X3@@?!|JB zqqs_ksFOT2HGp#0(PQ1a!9&>YJwD}KS?#_VOGx;fEKia0V%w}w>a*rW5n`Orha=ha z0$DW!0iBH$Y65G2wNS(y$6rQBDYLfyifW<@h;<`tJ(Tt2O4xzS%2250JIo3itKfh? z8)bTm^T2yeGhnve`Ejx6M@4`yhS6SHr8>nop8+9Xv^~svoeK!kHQ#z+igyoR6&Q!| z`;$6}-=Yy-$8Cg7NxdLpb}&rTQL|oZ=<6S64mHY~mC|E(1lq+Wa)h9iMxb#)XI9wk zEehv5c)$LFkUtN_PX0Ic{vR$fw@(Er{<}rZ<{w7aGk@oOeR2PU_|06lS^0Nbw$O1_ zOS|;KLVg^QMf98FqQ$3?y5)?9#S_xJ2@7D#Td(HCT^1e~TGP;(r71OoQ<_miY}^F_C zAkJIwpkc6o+{iYoA@YU1nh~LcQogd;b#<{ya`yx_Td zdW+sUuK@&DFntc-H@j}@AwNpuF%x@F_7UpKA^e4OJ5tUK6GCLJPJhR?tKCoyO4}O4 zjV2T=MSLVMi&|2|dRAGEu*vrT1(%EMd5E#Ch_%m}X4`KcP10bW@2YiqR6hb5Y^?HM z8Jm4F!RFy4`7Mn#1qhK1;>p;~#rhqk$PsB~q7C!?T}s1eT?ynF)ks~@S)aN^hCF+e z5pmSTD<6gk4rTof6z>n0oWpmBr8@ZoCqjGwcbrVDcbvEN42LPv6o|O{YA<=6eR5aEIC|9HRmL#n+WcWEP>MCv9gg_yE&CL^mBP8 zS3}EauLd_!EV8aOzdRcSkZO=Xr4}mN>$W34>sr{**;o2rI$#f zI$euU@0G_X);`X}Y%}XxD8tsLp{?l^(ND2;O?QVgKb(;g_Ja+{!)MMdyE?9Q3MG}H zZ2lHM%+st01GPntRkh@{xLt2*IRYu5@lMXlp#6`@KnldFNyYq6^n=ZjWk(<(moa19X z6OwNOsME6F*_;2G05D!1g=N_hJTxt;vE|<^ zVQE|0M)cHg+XK3KF~hvVt@G(kO-F&}x@b$MRxYqnIY}4v)hn-s{!MUyXY{`z{{PlC zJ0tZ<|Ai-Nfw%PnGzr{|P~s8qWR+posKzANdlo3Tlo8&$bStSyPrC+EnFX z%emu7{i}Cbs-MaP3-3flP z;@$&ep3L5$6_Ri4#lC^~EICpKzNG95cory2sO z!78iZ5%M3vm*TfNIElQpobjZvqZE!~!dW;fT=FA?|HL)d)T48!8$?&G{>QZCszS|@ z1Jr2Q|MA5SiV#{*d~BfNx_(lyKmih=k__{Uj~*2;LFS`XW~=2zi-(O~ZcMb66{LSq z?n0G8w9IQdw1hIb>`MQSFgeALE1m0i!)Im9=efeFhQcKH%jQVpC*U^#@Lf^nqThPw zH=~xf>hX1L=JQL&*5A8C-dw`SHGgF+bSYPp^@8F&joPO`D9M8K3|xo;KM(XEd^8cl z1Jf%I2+3Q0l!IPb1F-_tz*MCJB-+M8<|NJv96V3bOM2WIaR(5_I$ z4pQnpy(}VSkMp0nbB+!i!4uk6IPrZgiACH2F&X-2d{lif8*%|f&5 zg|(+%p_#FY@jxTo-*KAF|D^%`7q!+D;95AX61ox{cbX}GiX}c>>U<`G@k(XIF*Hx- zUH#()oh!AE+v0v^wdRv%#Lf!p*XMfhD>+sCJ}pE zr@`D`Sk-}wGx1858P+2lNQ5j5U^IC|5&vs=A7jvZwzI4(+x0IE1^TqCpyqR{W>D<| zj`jKN81c!-8`SdW3?HkdgN7mQ@nQe*g`bS-51mI;$E(T@zyVgB*qI z$)?b1?@`4M)1cu+$~DB%qd>Of;QAKD5*m1WPyBgL5YzQ}Adl@W>>7NtlY}#))ndkM z%fq>WYpli_O-P}JPZqZ6E>Oy@ZFAErKwh4ubs>pAWbb?kt1t}yD;^F-3K8c5Is3Z# zMi0$#;hj5h`qucyvTKI&BEUTCMM|MvIj`Irh4bakr&Jk8AN;n+&JDeCXVzh&(#p@1 zOUaFdx8yljo_p4nLLdc1$^sGarMtaai(g2dd^blza`eVs`SjNgwV3$EY%_;9k@xYn zOQ(6(kbt#FdrI(*RI?cwxKw+FP<3a#CoxgCsp?oWcjtAextI|#Lc9|n!l4LGPknP? z>kIB>E=2QQs<;f6lHubteOw9WKj$CaGotwU>j5SDThg zvNWqL4!SUxYJkyX5Br0#N!_XrT1E!FQXBl%Dewj0a_`SN&750;c&F{7@62AMEfI8< zdu1xhZpG188O5EBd^s1dnbjyzbH~-hc(?c$S}59)WlWl7c%K%q`PzaH&%aPVNva@? zr@tf}OxZdxoZI0DU;#4q``bwhJvR^|y?l1&&|ZD>^$_WyoBvC>{oh!NGJ2u%?hpUu z43$xHm8*j_m6rq-bw+4MU%%X^@(<>T7k>iSZO?c{>#-sY65|X@4ibKghZU^8%%u8p1@xx=6e`=hC-! zd4|GL+x5G7y^Ig~Mev!`ubT~a`hFQU5Ddtn7{1w^oTG+?*fMWvVZ8A+&1q$CG$D&T zwZUda!{tPch%sWuHK&@ghKV}E+i^%@jJ4X7RMDV+PNW=Z4cR)(66FPAu9-=A&#+Zt zKe&wk3M=RL-tnn=iRkJp`bb~acc<(S7M3On2~3O`R-)<|vfn02*5eG@abJFyDH1S; z`I!<@hFN(PL}qrGeH`mCKLU{j0<_zKh2)%IjbTcqh{DJBAEjW$ro zLRaC*KLCCltaj^u(=kMc^zjq!{seRIxN?4&ch$;2-55`^!Zv7dnz@egO2J6Eu=;M+ z9msav)INFLKpYTXl!Gc+RMu=hDkpvZ1E;w5xwSX*6n~dWR;i`C1y0x5nIQg8x*(<) zbDo8AlL~Aig0j|2l=HGd2V4qOjSWMI3rs}-=6c`qhW;Te!Prn|ev>Oz(5UvmCe#}S zWh!rUYFf{ND`t5IrsxMph(l&lBT6_g(5XNcI{dK06rQ10LuT0paK15=RJp{NoLEXXMe%Qvf57peRfHJ#*4~ zJM}ZI&R^24VPAAP1_ZGgs^&#i*0-I7`J%`FBMbQ-Bm}V^=T5^tpBB38g^;*oo}9hx zpV?=ZLzm@U9zeIpC+2m-RqNh6-P)eX9{8?pl;~eWeoFX%N)pl)KxM-+Chq6l{y5jU z<0<7iac6W|D#zO>C&z1EtUO7OXGsYp8#~VvK(-&}4mRfa$1Y-<7QpC-dP8C#ET*-NXSyG)&f_t5k#+UGQ|-=AR8Df~@to;NbV&;xkcdPubn3_ZGhbA&SCM0eut` z#WCD+z0Sdq`S&26lEVwkH?SlZ>n$jBJ78;4$;HDmFq_8{K9oWt6z46z_3Hb-kA{?6oXieC~-wS z{}ji*A*SDAbQl_4$vBDkV)YMxVN`bgQ!lw{rFW1%usGmTpf7^6*KDy&$(fNj_{=6% z#gLRjICYNDeiP2bmpTWAGLIC#1z~21jgHb*?YJH)C}1|Qwh4={#qiFVZL@Op&&i>m z+(_gFcHAjIO8mOC%*jZlWih6q_`hBNn3V}{&P+NwF~Kd)wb^4GnoufaR^uN)9gJ640PY9dd#b~l2^s|<%mK*2& z%xiy`GR>eJk1MKQ`PXHc%T#Jk&k~Riu*%*(k`Vh1rZV*npRUn9XAGfT!MIM;IUoO{ zDd>1nIqMN83Nyk8>PyB} z?737w&%$mZRzHy@d{Oq#SY?|iI&P0^h1`59@rhRdnz+|BHH6B`?pc33A+_r-t6l1= zuBhE5FP5_`KCa=j1o!+;r}l4WsDU4OZWhWwZ;>L7cuqF(woqix!yyp0GDB1>?L@^w z4^z)t;u1Q;ao6VUPXa33B1ByEmXaBldG|bZyf7WWY>|PkpZ^7maX09r`hM1lh0(E2 zn&bkC;l5jN6^xetQ=SD8^y&AY68~dU8&Km*j!x~HgpNNHXsvN<`;2#SX|`sDlKsoE5jN;Y9&PA_sm%f<9bxfS+9UYt zFT|*oega6yTmFkqP~=6}QbboW={)L6<-TlD&?vF<(s}r1L1swLJ0}XN^atup`r%cEIJI&FSx^9+yr| z_4u#mq*K4Hh>F~Nxjcu=+-jx$k5_Tl8PWwmf-2bmz%@1mjhsfVt z`}eSMd5vnP?9tQiKgpRPb&I;2h|6by=^}3wYhE-rUk3jW zG~J-cs+lnd&GpX8y72=#?zky%ApZarHa_32rtx4_sviIjtk$zWwUy7VDPRS+M7?T2 zS0zGne;~v3wi>aZv2r)UzT(c$fr^fETW=Wl1gDrj#o}eIqlzBN3T=9TB7Cv{eizrX z=*V-8YcP14Z@AH_s{-mjMUrFDBft5yoY()BO*mZv4;;AwKq6c25=GyMJYnRPkL|!A zg6`;FXDiC4J6(S>0Ez_(`g$vR?+}4EzGwmM@Yw6*GhWP7%tj&1xg;WJudIHYkXUAG zj^g>xf2vr@>973In9R)qiF(D)u2Hs*OKX|VWF~BiIk=cpDNQC6gT}m)S9GB7u3z^4 zBs(=Ma$eo&G#hPD3|~0|fj;tD=$~b$q9u=MKd?cbGjpX6rP^v)PY#9Hal@3UJr(a4 z&P+_tV=HGH`k`>1E3?I7s_EA1BdPN5fgp?QUA_Ky+>nP_(V+9{uu7SfKbVCCEPUxw zQ}n~M_9S6%X?Q_1Ko>t4~IJRSY6dpiCjQbIN zPTDN-&J;;x(e#n*6(nIIbfaA)8h0kJ=c9yEuUD{cZV|joRD$hyj#iKr*^~LuFu0? zMf?QBD0jWS<3juA=~oWk@7n1-OVdq9RIXkbtQ^0pe!Uh{0H5(E`n}ajL%T8@^?gyw%$^VL3aX)Mn>M7j-nq2xBBkX(<4~TQtoo(U*1DAP-3YFKcM?>RlPgR7EH%S^c zbo;D43kQtir2}Q<<1Wf|ZhUgK(NPi(0{vCO{?1oR)vbcLswc_Nf?@88h4UmxbG$a9 zg=>1FCdHQCDgaqyXb!-sL1X$z|I6l(6lJs1IH{Cg0)(*45gHc~YkW%#fY>H7hn_K} z2IE+R;WN@*=5)djc?);c9IzlMPo72E)m0m}taRhq|Jz*SRB;G15hkawb$tZ7Me%ns zqejv^V=vBp6yC-+>as)1h>l8AAZSRv)pXD3XiH~s<%D{hhKd6d)vIlaSNi~^z{kIc zz?PvLsv}!Qf$)zN>3-*WyqiKA@r%BcSX8y~;wU&vMUDILlCw$m`X>A9@wNs5^u@el17@C`xquTB4;(n0oaaK zrjCi5v&FtnYn@PXu9IjBKX^5dTwnOPqirX$Q$4H9ob=Vo`t@cth2Q2S+2{N;l&(_; zlP-(digKqznKNBG`yAL2Mjyr?UzN9Kh~7EnbIMc+*Ys{AQV-SjT1EY;H$Jeo`=ed1 zB*YWj75F<0KrmFH7Y;dcush7Y*R<&)0oy1`VXBQ{d6|IQpwzQgZ7lZzWS*6?lk7>o}wJN|DcW#>xlooD-d2x zXt0K&>&D;Lwu3gDvK;}K>9casV6V;Phu6Hf!=Pimrert= zYD=>ECYF9~P1s6G_5)!NDO*y2Gx@l~N7O$owKgfMM^y<4($hcUk1l14s11{zk;6N9(k^d_viF8Z z!&@}sT;aaT0e?yLcjYqBof*r)iD-4s?!w}3Q5Y{5T7CCdSmx?Z`I<9H%yr2kjdni2 zdn_he32HhSvx`&>c~Q@hQ~Mk_D&5iu4x4=W-Xi>4L%Xx&t0bkz+Q$bq{#f!dt>$yE zPhH4LD@-acN9LO0MziX-U6eVC=Z6pD3BDd?hkif7Q$cgc!&ft5{ueesSN?`C!P!LBQ_{={3Ja z_QZLWtS1;)*M3o+dR1xfv$=$W5NnU#b0EA+a)w(^mguv0RoglCofp0T8Jut%-Do|i z*D5c^kb~~#M5nGd-BP=xeYkuM^{Dcg`Cbj`XWPwELqXJ$e55Dl7nQOzkODNjI~ddC zUK=mGakr#M9?egU(>@K{4e3!bd$f5-WsmX2SRiw5&0vWy<*n=vsG%kTwCYB|2)Xl5 zvV^ae*SnQ`nd$PBFl_weZi}!vQW1h&+3^f|b1`+HX?wCriO ztPzR7>u4Ir`K_R~ozB^SWr6--<&Z?FenoDR^C{)%JFS#06SR4=n>061UdR?x_`=kMvqZ5FD8&Z*aTwTymH)Bp;3 zkrb+~>4Ec)FnK~5JJMB!;1cg;ioP&4MY=mFIp#3>TYom#wO2LLZ*=7zxa_=lVM6|* zs;|H_Qqi_ZvplElx&r(Phbpim{YlClLGu3+9>Gl)fwo=<3^>`F=@lps@5+zbUCRc# z!P{a%?XcyAs48BC#q3pMDogKCWG6nyl#*_J$P>qgl718G}^ z@Qi*irXYoWZ0dxW9bO}io_TG-eB4AZ2=HW~+~ZuTO<0L`E`y?AWo%|foZV(J{(Mpm zJ4Y&#STzU|$etCrX9i|rhJ!lxM;q`erd?rjwCs4=hW;r(eq%HDb;ABdQ2a}YG#x(f z?@D)m<6wqeZyL8fhV9BsF_LPi)T7JoDWb2|3LCwhPJ%<$MVUs+F+|wl-&N@$=PSEj z>k18`3dyW83(QNEjsP@Ux#K7Oq5skCN<@m-DW9~3ibZllbY>f(ZaIOx{#PFQZSA59 z@a~K<-V(f=BN-aoEnki;*R0>3CVLK7R9oNJ-KyVl*jk5~c0;zf%?94vb!#Sz-6P>1 z2X-ca;lX=vL^!jpyQFr9a|jFKmknu#3e`Z9cSYiIw4>D9w62%1>?<{_dAmJhX-0j% z;~A9l|MB$g@l5}JyrfdORVs3uQdBOhlsik3Zm4|S!rX7U%$?b6B1v*7A-PN!N$$7F zW#)co?zds?bKA_=hOwRf&f{^;fBR#9?6b$`@qWKv&#SN{j8utlO8 z*W4XnAKV%jQl8$g$HuUK{bY6&k{c+fR2v0J)a`GNt2fG?*79<3mSOcJ1Ct8)WsfAo z8on8_=u)Gc?L`bO-*zO3;Fv&1liv_C4RkVNcp^RFlaWX{9V*yVS-iVdY*sfEJxDYKK#&PZJspdk~OLcw{|6YA| zeI0xxpp=a7Ql8GpUC1Q=JCC#)vnx%)2&-4mrjg&gaUPBR5o#|a$p2Zy8Vq+BEAEZG z1&4PX9Y~RYZu1K&$(BpCLC?q?SAxFtMlb2#uFmU@4Gr*bXl_N-=&akN`#XG$6Lp+^ zm9Hv2d!HgR+WnPpDm3yD_@FPTv|6;eQ594Iu)RaP{ES4cMv|*Ml&}w(-BbCKvhqs* zeD9MNkA0n5gDOW&`k_h@L~nk4hH#y`a)QVh<%*PoC`9lON?!7snSzq)<)?%HRylm- zIbwjh?g2jFoG-mz1$z^lQnw(nLCZkg22!d9&1~(iRC$%pzBBwlLn$MhD`O*&{3XB=!)PEkXrHWJ# zdYLx0Aq%mSRPmzzQM?Z(h;V)r-#%VD;%$w=#SMh@9`yK*phNLKQ34{3o;6*+`ACjM zZ|YKQ$6AAEGZofVLO6`uUlr=j;yU|}ar?l3`*rkeG9f4bAkU_DDv+-=Ja0WJwJ{!(BDbIQ6X2y3oR)Wn-MD$RYg)y78TOg#e&J*Q%K5l3baB8GHK&=1e9NDMh6l zYorh2yRT;B@Js#|tRu(ZYb~Dtdft)7#*EgMwaIJFMQeMlUlrETE@7Ufz18+cR<2|X z(&YJKuT&+Z`=*QH)}uQVV_OUOYv+L~h<`fh^7TuxZv1i9GNde6}Q z9;T@IbVfF7`CRr(Gv|oUTe_Vk{XXO|WwzAe;2YcnN{JZ=|aCn ziXdbWR3<`_(Az~g&jkG3mKR4oV6rYnwca`dUizgpEPqY5r=@q62H ztQzA_JXzLHp_xBL(aT~@{Xi&Xh>sy3;E<;)xO+NG*o)dQwqReQz63Sm=yO`{pBACXsq?Xe&pI~j9w`{;Wi-QrsgWiAQLkB1{1O*5z7-}+d2 zOX~mooMyf&Xjx1-GNzdsa4Kh2tp(X(_r*xLt_KxitFgA8g#FQ~NdRlNoxTJFs0Utx zykXN>3`TP<=x~+vA|W&YDKjSn*z=OE~;puS3lR?LB7rY-h99JtsD+;EO4w2^_SK-^>@ESA=El=NZTK zrYTp)gy1b97n@02s&Deb#Ya%Ao!sA}D=DUT{Z}M|#(kGN9{$$+#S{G7|2)>BqCFN| z(E`PNtK2$!E0*V(D$#1cs%{VJL>n=K2*GE0L{iD#3*E8eN}m&7GY6xw{dB@63I_NZ zYM&6t=L2ctTD<>Q3R>!@7Ysu!jWti<|MlN_n68RjoSnzTn)o?^Z?!DzyUr+_{z=gC z>=lp&hK{t(cWY$C1~wXc1+E`+U4B;%*7A>xJ1XXIUzA*mQ)R|eGX1*4fna6WRE}AyG-DD{)I;sS^=qN}zaf{9$mOv!W z^d0V1lg>jzO!4gVOvg2bIJ$+t8$T8%%b8z#MLXg2(@bMFH7RJ4=vt*sU^@)!JEfDV z+-otftI#9yc!icdB=7(X+Y@Ghk7CuDH9@;Y^a?ppA%T}Zv1EG4Jao+38mH5dVeS8g z(FLWJvyBdUrFKSHp&q{KgY8xKC16uyzn}Gp_i^Zi9~e?LPdfIG#<8!U@t|7Lq%JR} z&}*k(Aa@j6oQf^jGL)(MkF!+_kiZ@UkMDQHME?PDr^>}@f~j!o}Mt$TfGKh&|n zcAI>BU~Gm_8PsDQ?~a3Y5~@@&ONJ)5=r_i))B&NC@1$KIKsCy0FdSm}k1exFFgj%A zk;2W55sg8JK(CadCE%l}P{Ar5Hh&R2Yh7+ndj{Sxw2Aifzr?s*CaJb~Sv z6;TYBX?vV;=K*fx`ZuS@gN#Dc= z<5=EoY3LHOXxPTpb9xj$zGzXT>OA*7UIWN~WzA>a1`GOq zPco>JSS&R{X9;th4^9$97{G5FQc~&S+0xi}LBXm%D+N-uzZwN{cV+Kx(8CR-#+Ro8 z^k7~7S(E=`?9kJ{lVD6*+FRbfL30=N1?IfgtDh3M9Hi|kHkGt^y>xqqje@jTkXN5fGFxW17hVOTM!a}h>TB&M($syLR3LF^U zcwpIM;iuX6wFcXy2j19u`dDJ2X4FsoXI6E^ggmV!QT#D~hQm9D5_Q*wq)6Ymd=Am< zRrEKu^Y9vsJF8}*OPBu#@*{Rfcz3+@g!KpBr~vRSgW68>Jay)mtox&x>B`@os8#$wyD+Id<>2 z{tCN>n?Kk+jV#J^<16M?f!aI`U0{B?bw1LD(~EqQt_fY!qQ&8@2>%7(lJIdN`+Jarv)=YyYik^h1dGf9TU`D*0?91+U}RpaS-^z zWu~^RcGwE9poei-*JA3CnW3<6-xdN7CYSNSb9=v-mLO0*2V>Y|s4~3?o-)kwH~1>^zf zLOh3U>A>h;t5^$f4pT&K>WNrWJNS&j|An4mGU>HJhlXQ{JN-|=XiCQ$C834T?cDu! z{YWCv(Ao@m=dg9JzV~*+7~$*6aGHJ?RR zhs)+~%hQXJy}xOxM-ZE~fu0cP-eTiubiCG&X^%{pF>Pq(%oUJ|hl-F^-*(SBVswUG zqc^#cbm8Fa^t*J=@fxi3loE^78rHE|ZVWkK_n!fHr)#+n3aOc`>okTubDHzgS?8XOT^TvbHp$ghO5r*vS59q-dw1A9ISYTA%agZ)-2Rs zPt&a8VO8SIv$j7=1$lsIeR5|$tuBvi)~2R+RegO9nNc`O^bI_WQxzTEjJ{TcloI!m z&Q~m_RPFDywbmWbes>bi7Tq-z83b|Zrj>&Y_CB} zC3z+=8%uw$R+$H&cKXD7MPvMJHVE$RecrWz8Y{M!iUFMdo(0DlGK9S~d_N?JQtCy< z{XL-@!VR1UJ|s*TX|dks?MiHv<2)w)!Ij;Yu_d#_tJRm$sU-{TdgdWojY0)xmZ^zlNE@Ol_V-xlhzpEwSTlgiT_qP2CjlI`Ra)o~Oz&i6r>oH3l}&CAf$F#&uBjA0FS*}$7Fs@ zHI8$2D4Fu>t|WrkdvV5bQo&QcB%4iEYF_d1l7~lfZXoKWr1QqTAiKv%c{2s<8D!5b z_QXH;op$oW)=3XSEfaPvy&_kOmUpNJ^9|&n6=P_}nqnJmOl_L(RC5j1w|3}f&>FVB z+Ce0Dd$orncv{o}sUarpYDrZPAp|8-2(gSK5naTw{ckh(xf1CLZceTKP2 zS^%&KhouLxwg*3o6R=RGEt^)zS!+Dd#KS{E73a}vNxNhS%{K$Xz_7b1Dz1GQ^vq3o z?iRxjNz3P(Jltf5qe(${GzpEb$7vt?*jS7_TyKjU-^PK850`-Em4Tb(-t6vkxX{sZ z{5x@PwW!5ZVXBF|?d|~)|BCS{AG4wl^p-EUS$*cz?lS$Df-0HgiM1Myx1IlLbb+Dz zW^YHYi-S?u7J+Qnk*hr9Xb^lGfeq=Eh zBTZ>ts4ad5&OL0;1x;@zz&O-qRQ)m|Wdj+TKH)x{JEoqZR7V+`j%$K?VQ6C>R*=d- z*xFFmsF`h;-@@*4R(^;7T3&9&P%ZWnv)jLKH9j3iBRG{T#A^m2+e4`*YhQIIn}a71 zyUhSPwl07aI2MF74oFAqMPs#{+z%BY@m8!N@-Y$XewA;PFYxZU28y>aR+FlIa&lQd z4(#VK+h>KqRRnux&ORmeabe{_gmHN`j2kDqHUEJxFRT_a5z?0*><-c-eGF<$K#qWR zrmC1p#|}7Q)R=<-zA*hv5tMMsN#H`=pZ{FD4VSCEW-g21p#!V>*Q_|{m&-z0oaoz8 zl!&jM|CIz$;L*9xSnY$|GQo9aV@_m3x2`pKxH%#GR+Wa8*YYz-2uE*qzkem5DvUyhpk z^E?{0|K}?66=d;EH}vd+fY-ks9;IWoBC9RonD5LlXPe9=9reiCn=>XtD`wTcOL_ZS zwcyc$IF9x8h3i4&Pox?xak~{bQ?9*v7v~{94f`ooPR%f#G*4hZf#E@b;q~GP;s}W; zmpQdupqx9V`pP~+Z^8qGnbbpvy4B*SjMXsYH)bwkgZ?eOXch3ESJ^~F@zJ_cD|M$z zXE~v{4S~RNq3rS*#3?i{4msDjcxe;#t8@JVBg!8!y#y}CwO5g)`UFq>>RPs+ z%}E81(g{S=zQlnSwH)NJ&+V8y2hW3zbRD}P z1oBldE3|2QR8P zatozKHko9scH=>6aWKeHXW=65>np39I~{vc?8*h8a zf5~s<|H}~EXa1fT+@>zHEx~SHm=r*M9RkhP{ZAheT23B9hHmF+Y8SFYUu_E;*Dodx z`Kx5SCoXc*f_~uk7fnTCC9PT)RD(I0aC;YJHq49oLVHcC^SwE#ld@xPzGmcBF2R&V zmmRd~#?MCL9QppIQK}T2KjS~4dCPlij3Lj7YIxYNcUq>JQhmIS0}AdpT851q1Y ztX-ZEU-77eIeCM z>ZaZ;x+v)Oxl~$AXK2BI&d!72pQ-;dHP^aUHs5Cu$sMcH90lRv$1TVg#qp~lqTj8l z?N4i>rPw(dmD43mO_`|@P;Tv~SI+r`Reyi8cmv|bY(dp-rl=UwP%Ym*tQ3QHI#&m^ z+agD=ARH_&<|9M?G#YliXcKheP1&h(X!LWOGS+cXSV#!l_<1N7TYddMfZ6}0MA;>H zK9Nwnc0$j=q8w--ix5`xwfK~kZ|iyarTZGTzWbbp@gmFu31ZvP*KG2(7=~z-2dgJD z54Lfr(8M+YPwyQCBk(qe?Fu^(mLlk>OuG5WaKs#aB=&DbTg$`LeAaCm!)xHY6d6OW zWYUBlR+Q!drpEU;OvVITyMJek;>I2`_Wqocxy2Mx|8>ax4p@OKW+PYh0M;wQ2>=%5 z%vUBhxq9@K2hH{{^y&V61r&J(R*Vs)3q7+eUv=_D3abGEvZkg_95#H9rmOla&I_+a z2dkFOY{f_7z1b9@Z%jp0(H^JMi{U7B4MVhLIbUM`nNruF`pn`xD5^qYq9$2tBXQf9eE1JKU!9$F*xgFC2f!j=Hf*vrF5~ zo~vyW9d4P?e=+?2+K0=RPh69>S<@sy>A{Q*%ErqpDRnS) zn>L)X+jIG0cy97x5OwYy00Gx>1{+ zC~l@j+=si(d&}y!+M2A3c;^K0i?)v?8kYSPhRWjOu;)FOYaRFEZx!my6`y;Ayz+!f z^`D%fxFyR2M*|N`+c&^T#^2pv_m-(pYW^^)$D#^N`Rs;is^e0yjWhnmz%a%7hUZ1k z)Yt1=T{WSrCu*q&Q%^m$u;ZU{?OnvuAg^EBRr-hmp`k1FI>7e1);jy)bw0XlHx7Nu>7+Eu(aBg6bP~%ngp8oqPm-9Bv%LniY|5W; zuRfSxKU$b8gA0!E`5Xn}qOuT1Ucv(AmE2`lc&7)1lsW{wUW@Ng^yFcWBTb~lfL8VA zipOFExi0>Y0gCyAZfotPVYJ(UvVi1#Oj9#2d_12}(xfMU@rj;1 z`<@*B5$tfbljnNeu1Q^PvXm{bGrCA^0{k!(#Odzh>dZmr$Aew3+}Pzp4G!?0TQReJ zM%t$772{-Hp~K}eH=#!}cbxzgWdPeJf)x=JM*ST|Zg7;eG4#Xs&YH3mFACSKLy^)F z2-(d2uXyc;##2G9aLVG4tD}xK3-MVgE-x|F7@)TLMz)ZXAaRH7ku8Ep{I!??Uhdz+ zj;?@y>6qjqvPu&q(qQYi^{&L|^NGlQrCbOiO?u1?O837y3OcQOI>}B}-jhWu&UMK4 z-=i+s%j2!Hlak$Yp0B+b=2_Q}PceRP1Ns^YYoJO z#dNriYloegZRGUmG26~3Cg|+H$FNz%~AwT5f@%N&v(itl(<~_ zx93jjTp6fV4wyJj%Hx1HVs|Wey$m`cFrsW-EFZia>+<#i zuD`E$bOxWp|5dW7QK-Myz;|Zn6X@-TG*VnU6w_BJ1*KbV9e94EhkX{236Z*`4#V5B zzZG6HU^UvS9-Zz!x@_fz@6yRS;FPR+b0beNOeYJ6x`k{HFv{BcW!5>IyJMg+0UcJB zO?)8}f8(~@In?p|#fufH`TqhRX#-;K_76Fos=2#6A}t_hh;BS85UI;G3Fm}%-+?3m zAjTN#m$2Q(YTJJdy@_w>b6+E207*x_Wu&W3sF$mzce&%2?KQpP@y|I=3rrG>&^GDb zX`aWw#Wr9+fIK=F;A21zFni6C!lBXF$}$stj= zx+2f*5o2|TH{k7cfN^OvQd{k}Na1yfb+;wduJm(u&sgqtSD3Y({w`1dRjJ7qV;5=j z`skq6Z|6UaF67{cUO>1cG`CmAfD28iUaL0Y3SVEmsxq=oP>xvEHFRk@y0)|)hU zEEWek==uAW@Vnpvc>?2VaV#BX>0s{`Icz?h#?(&=S$Sc5Ll~}vDU-ROQ1ZgPE77DC z^QAPT_s3}y1+goUV80+ztp|SqmC5|+4tT{}=BVPXqVP7zYUK}0RdOF>ABi=&H303zulKvM^w_WN^}|~eeC-1Td6!NuX(6k0ipD30KTSZkerwV;@|B4C}TBwt(39cHU`2#CL)XQwt2%Dc`wZHgAnK5cs za`48d9eKlU35Y#lau|{7`l_oulGhs+0%IPktqumC+uNDxAj)YYul<~USv_o^d(-oW z7D>6xlyv1{SAKm{EI=!q3`bDtq2Rg3PVWinv_ZwXfE%0mn2ODXGV==StEm-?>cy8z zw)bTkbdb0K+0d*HZTKTbjoKq`LVtVZ5pMm6IpnlyEiC~j{%TS6^(M!(*B-;U;|{n1 zcZRRiL;{*R%~$B5OY&~q$x!hy(7pKm@|7@kHMf>xEpwk4?;P#8gY4TIpA=~FMNPVL z6V~oLZ2XaoTwU;ZIwC5DLP|vedkOFFi5)zFLxsdflmAcP7 zD251h<8x;Jeg(BGQ)|}i(&px4Y6n*f(K!^mTd`m4naocu6Hco)PUIaVe#$j}H6~$D zB$yXAsQB$a^Bc|UIX%RydNfMSwQbx<>J7O#1w#ESB_Ydv(WJTws!pw4i?VJQIw8XM z1f&wf`-CSmy(JD5ciJp=ukf;oJm-B&|54zXHWiL2j9}l6h;cZg{A>*j-@59{w2}3D zgJB2?EB)^_ZQ|ZQ#a!F4YKVyBA3Jaz`Tb-^oo+XSv%z(dCkP~fgxnpHpbpoh#tsiQ4qRmZz zwQcvk<{2 zYla6uv>Mc_Tsgx?VIO{+m0CQQ5Pkj~m*#2fAWL%25h^T7(c|O;$~;&8Lkr!SBG-|0 z`?G9Y_P)r5Z>)RP-3UEF_2GC?cnCb@%zJ`!D!6pz4KEo-b|(8{yUu*Gm&=kq11+9H z8S7a3-K+>)SDBM2x7wz%zq&$+ccrCO+aNd{=CgAK6nrs%uB3>Pg=4^= z?&8$$$zwYgR3B|e%A5He$(Zh>-vlPWt`}JVG#vh926lCLauuB9cDw6_vXrelB{+?^ z9n~nx1Eh$B=R~Rrj3>%{8wT%Q?Ds`dv_pDF%=M(^3XxdnF&kJRscc^V`s2I|zIRHBe9onW*vM3t2S$#{51VuoU;AFRPa9wUqxQLB(#U=cMw+;u*P# zgX(R*JC;)spL_ahHywyJ2yn>tORCT}oCHfKDvWNg=2&PQDY`hkMzMj>d%;(}RjycQ zUhg>C|2^h9I&+D^+sJn$v%(h2U``6TY{fxT;g{`Fk8!5-iNT%soOaJ&4B40~;E7M) zS4Ry=HTZ{?>4kpSz!KLN<1VbXjqR>LNX%-K94bKvOZgC6z|LlsD)#%+&YR;0uRblb zA9*(c;az-iV!<18?`{b}+Uj|JiO_R!xu=pv5J_Ncya(vI9MY5<6u44qE97CFTN;Kf z@QHpGnV>eVR6jfTG3993@k~TS-s2=|F3M5~X@%7;X=j>m8mBYz)?~*uB=z-1tRpG5 zb*R8<+WUoU;9s*6ufJcyg&U%k$lNy9Wk^ize@prPZ;S@HNGV1)_F*T*%)r0>h8~~U z*kUkZA$43HZ-*XcoGI>j4!C59=~T@h?(wc$bxBtt#r~VF06)|J?e=HkcDjx9K*7uL z!E+fqT`r49#xG~U_0uK7Mn3uKvrGKn;iYk*XU*1Sw95Nw`iDaXN}P9^ zhl;hG3BA2EzM%iETjduhTAz_sp8lY+X%b=#V)AS5Xa9UODL)tTp+<78wL<5H`Cm_X zs&ED3uyf3d{ib>|(DT!@WAmBY4P+jAMGisfjE91pOznUqGo&F$^MMc6&sGJ3Z<1PJ zhsOya8+P1>NE%wU&+QhnepBeFTXT_PzBHOz_mEAuH#15uc8L8q4rz0uT$iZ((Pku#NX z;DGZ5Qm~1U z{JVk3#N$`Q#c%*VKApGGZG@yU1E9epmo<@qNA+%X;Nfh&pwH1pVG&vl+wBY4Tj<9L zPR$GMFQ>oo&NSeV^96#NGFYsjDJcrG5! z`!Y)cy|W!1noSv77E1oFi~Tbs+fsR^38%X`gV{dr6S8o~+)RxcF|Stj(`TE2Pu_Gp z5>>9A=6N)TU%v3%mA&gE`4No0)NEY^O3Y#lI=PyQcS-k3Ii~I`?8>-xvRUP$XV}*x zx|ktjkPM&SOQRBpmiK3T??+2(S@qtw%o0*#ym+(kkJAS7`Q3jy`$hWl8>87)5!;WA zpZ2y-$=R-t$ZOc2J*i4rXo^+plD%Q?Ox;08WFM1P9}2%DpRZo^<#8G>AViukpzH}h zNCh%;na{8595!c%G52vGu#t0%r5%kq`PKW$?8JOzM#s$S{KEMsHt2B25kZB&GkC1rQupBcDZtE>fnhXuo;RH7!D_EZ=Y<}yosbsA&bs#jMtwoBf6XUI zc4fGdHrx z&`L?-5VzVFr@j+{cM)hG>V0wlcI{7D2(xk{LyzYe#D;3QIWa>1oLNQhWdQ(X9<*<+ zajSuRe)kJWIeG*3kp>E}#lLQsMVr)S`F6iLY55{Jisn&a)$*PApp8$hWi zR0Qsg4qyjZ&w&ttR>b7eYlAfROw&G7T0dr~d$~9()li{K`9nm;PHAL<*7#b~_Agr` zD^P~(uh)ot%Ctf)@>8oaH?z*R-?a2u)U#wVga6Fg8J9{)bL@|DXq4COlwp=}J+q}v z=eA19Q0}e`n>={ZEXZXpfEOz;_wYm$ca?X>}8r{hvS)rRFnylY0 z9y>s6nm1{!vU{J?m`1AeY0zOtr(P$2pjOZd*NhLpybCYweNV`8Sg@4@92~rY&r!#R zqTecG{8_^nGpFRaXj4#B*4(jzWO@@Q3m5b|4{I2<9&ACd$d%HhmF!!MRNaj;cMW_1 zWN;^CGwL;EyXGC4Ucnt?Q|cOOP1zkxI$C&7Z7aMzcPe(Npe}H;-jRPwwc?>AHg}5W zHrJ+jKvF8a^BHYd`iK?_Dg*A^U&}9^e`+d>JwZ6RBp)Sbb~PXG=I>E$^K|`Rm@B^C z(*F50NVQI4l{XiWKw89LsF}sW0aL&=Sbw%b((D(WERp>?D>;5{80|gkAW#YkoHaq2 zOD6I({5w~B69tY_3c5eo$xh9^(>=6df0KPiEC1a51)hY)N>qWL6OHPYHnN; z8Ozt3!N*dZqKTIbCF`*Nqn>1h+)L$6*#pB=@zOraf- zV}80``{lQFO`YQWck96WMI7)Hglv&Zqws)(;8N!{$oDL}^kzV@*}AHsE5a-Bcer!W zU-;d)-4^AkD`R2Yg;j*1^%({|9~qhf-=K9UtsG$99t`XF?72DRZU`3xy2E+;WvbU) zt3Uq;J1!AW?>+x?{fbx!JYBa~WeeTeo+lAz&?twM9?ET%v3*JAhCh*+o{I@ z?rzfmIP_QY{hgMWNreTHouowBp|NxQP*%r#o1J@5nzX`DqG4eEBtR0 zIK*S+U7aHUK)mG0vdxG@6w+JSwXbB=)~Jf}St&id)4Vpw{&G_1+jF9DKGA~uTo~$2u|0X@U!RVOP?I&%jgr3fb;%6m`npkuB$6qt% zEp-#W7Jl88V>j{w9$-1n?SP*wBy#6PjBW9H+paU_DCFpwXj@{WE$zTG$c3UxfIHHf ze@)}gw_$D-jgw-Xx6g2HJ0M38ZXaD|YPY2C+wft5x)jTLJMrZZa&P>I*ef6^Ec8g?sh4yCyzw&6zVG8V zMhE`mbJ0tVy*@`HsEx+HDZx6LD#H-Z_UZg!pyS}h*{aj72y$Jw(iX!Y_JZOwq9k#M zv7Ej@{jPd3Ugy7`E^#FeuDVkrM;iUj`uflmllmvsf6;%QeOHX-GgJ2ceUbYK^{JU+ zJbdvJcRW?!zS3yh+X_DtY~vL??UU+tAp)u;^U7c%pb2Zew6GxOdTaiZT z(=^L#cJVMg3-H-_Lyz`X>f2aXwW|_cIiPL>Nr%RS%1OiKZj)n?u4vs0JFEEGj-zLG zSBG-jQ}<5H92xeS{~JRe`1P2+(T$sIXLlYmTuE2dP_1fpPI)+?I^`F3VR1N~f4H_A zY*T=nsh!M=G-%n})dbWu3yOz^EDoGG%_9hKi!_$Vm>5SJTZ!-FbNe#k2*_p`u5aRs z{+%0eX{$)&pw9cLl7kDM_}OKz&&+yi?>Fl*B|Z6MfgMLOVSti^5&Vy=k-X=sgNoOy zhWiehEzN2@NgGk}mBL5&WPin<4BM_81IOv&)opR5_~OHSOHSp9DcPoK{dHWBn;TD! zzz2=Qb|>C3u_Zo~qibg1JJUk&-NBVeua{#MA(yTmaBB-~xHrGc{Icg5cujZ(d=EV- zE*Va(2O@4Q@oB=x^t?=W^$ei${ELk|^)I8I&{qh6SgiV|yX&#m(qFljd+yphZ*<+C z*a-&3MDnkWg`JE;)xC3R`!IFNYjE4Fcj2tA%F`mU+^J9bREa=xx&7Wd%b?-7vDQ04 z?vIE??|f_QlZwsp=I9oYqvLIof5>Jdm(A%=Tm7a8Au}6~vGa50yh8JOm1BlN(`Wl~ zuJL=nCy$iWd?u6-3Njo$O%Gn|a)yf{ZN|Poy^XK9T}OySNqW~F^HTO43YEe%;<7Eb z56maaPBq%gA$V`wPDE^sC$HL`%e0R4Uj2I&?U7J_>vSiCoM5}(@p>aYN!Lnye^4f| zl`5qjREB4N!|T2+ge(QauVOx_!Ao+;;myZiojBQY&oxftu7i}+%HhS#jc5Kl)$J`J z97xfx-*=+#PL)kqK1tmUn1ANTudw}%*U2enU0IA_bKw90@}SfPx&-(cy6=?pJNb5c z_IB7q=!61uMD@%OCBo6~n`8MaJKT%B0bD$tLk?S{viI|epFKL;MKbQ$hp}i%OpIfqK@|> z%knM%K!e=$c&>)7-V7sb>$zaMjh!Co)GFL15Z1C!K!=*9&!|H=P9qu@? zYM1t(_@>p1z`Ekd#Sba@o63vdqm5`3+HVQ2TxK#{Ol!>FO68smDv$J1;&xu~POPBS zmkV*Ju@aOYZ)_1i`5%SNABHPzHOER!a21c~r@3915qPA!dd@%!_TR(F?$hAgzpVB; zM0Kd0InU^MQ^Z4UF2%AXK5968ZqEt0)M1ECXwa1r|HK!E5PqMKzxbK%^>_y4*qIy1 zWqvBXk4NA2q-y5W%g5}iLM2Tfyw*dK=x<7Hc%VuqBe#!o%O)#fc0PMX1Qh$I%n7~u zaQ?=_pyOXSy@2JfpnZ%T>ICBKE~UAtDmiQ~oSSDJtr6OsT!yG!LbcG~Ijb*)&JnrE zJZ7iXdwS&h5YV{+h9(X+|-&?Nkw4i_(_gr7s;)K6k44l4}aN{#ey`Ve|=0hMVYfl8L1l%5h?7?cD`!nAH%<9gR>M@uIJlg-#ns%C(b6> z5!)L6cdNZ7w(SaBjFt@g*PC@$6K}L#P0Wh5LYcJPV84kxKH=Lg3BZXTCw~9M0j>+> zZLDXrxGXGSfCwVr$5hdJA^8iI+GoK-F_$Y}=DJijxoZAh8jM6|L#rJabL0B>p-!klO^u* zG(udRG~eYmZs$MqkUmX4 zF-a@3=Mt}!Yt5^jhU9xv9!mUh^$6L4y?gi(&Og3B*(zBy{I-((S;7cz#uapUM9=uw4@# zsuD>9p9LeIH&4*sqF87WfB7#2SJju>hVJWYGJkz~m?3~v%r9wa`&f-z#-Us*s|sv> z)nBu(EC3w*Y-e5&tBgMKc1P3js9{A+qEmK#RBwR~=#FP+Az~Jvpj#iY?(nBQYMBeN1gb?Ey{zo`>e=qpo8Ln&!ds3$8_VZSM+K=+-p_D$#% zg3XNm)z-JSP;K_zA+LpzF_DMt`D?5v zW4qhH^I)yn`umxL75!$@u!IWaOal-6pjB>yUa=?=P5Qz(Va2yuJp|r5Fx;E$9=M{S z*7?Rek-pzrBfirx7fN7dZ9_Zrn6(?0axIMn3ZodhkPQwlM*UWV#iahvUXi}zCL zGCqHW-8)mm`t!A~^Wa9t9>b-g5x7)zY*&sP3d6Eo2;9E|2LsVu)P%0U9DYPrc_{g1 z$|P^55d0p`BlB;$J)qc*pS;yn9yO=Giu#eyCfd*AM?fRs8_{wjim&!w`c-#<=dL8w z4UV5I4lt3;enx-)uI#^5&(i?&#m@G{90T{F*K&jXFxxjg50XaHZ#x~Ka8s)`LtI$;Ntewq52u*$`KK;OyYPQ<5E*I)b_X5 z;#2z}=&Z<@l|`?efnWk=_4OfNYD=|AEp1&~&TF3?iuyO7>tb=0LdS19B|Uj|I`_>d zfx@8NzD(s5ov_eo#e>kvKkJYVANL=4I=Z@cUBWV9KWDx> zeD=C_*SF(!Zy@(!s+Zi;BZcu)yb)F$J@kKQde68d+&AnyBUhHx&(xe)W@e_8nH$v1 z%w3sVu~KvI34$XtD|4^Rf#%AI6LXX?rUcwa(TFhpyjFizP9C-YSkn(rWb6fKoW~pCYd?b@U4O2CCJaE)EumisPxGK#k zo{swy3WkXvy|KFhGbz?vU1|*q8HKNmZ$59W)OmCKV~XmwQ>~%CEacs?01c)s1jdNB zTzsIGB*>B$3Oc^0p6eETYgo-VT)q2gR-3Jo8U1iiyP{)({j0o3*2Mx%(`NWw_OlX@ zs79Ms{-tw|V?o(1_1^~SN>|R^)Pom>{(2o}SyIqqO^tSg;mY;Thg=kJzZ?PzA+MU^ z)sja2TisFqu}oSQ^V(|52xDw^xWf^SgP{rDYPIDWr{RsD07^`Xn*Z;jwUOLr~`U$6>#DzDElk z+pPTRZS#)K1W%2~PIt=4Hb`~o1TnigR=O}Yn8n9TxGTCHcP)~?r0U;0EQS|}y-`|R z_PoO4%lOArj&3i7BJ($q)Xc#Bb}hUK_t!UwY>kjnZ)2IM zuWK%9oeg`0PX}mTSivs%zr2QQih?g-CWQDU^qIg@SiS2~Y38j+n7@%UI*}(-Qs6{I z?`uM1NSojGs3?!NJc)m7>bh(56vR>;gH1Wj<5E$WY|+6xKjWMo3}JI10M?duO{Hp; zmgIq`Ju5$P!ki?PF5&$v`q!*7N}9goD}zU)%|4-Nf%z zoOP$`aZ}xVH2}fbh_tUFei0;M)2?^8(?1O_`KRSeJqtPiV)b+1*ro;H`1W4)o}5_j zl0V@#pUv0e=>q>hy1afTTXd@b(o)EuK1v>>ylKvG3_%-9>!;h5AHNe>yai4p78&tZ z{FfPW(~-io>q({y3QzMU#cKgcqp6T)$0p9X{U&PQk=8-aI%eX}>iz0Xr~f$-Hyi8f zoG&_GB@BOK01E9i- zJ!2#OJ#o1Xaik*fJHyRACTl8-0Mj;yZz!v{<@INWPt*DnQ>0Hf&Y>|gSy?qeHbmx* zPPySPKxS*5kuwN-!|bgfexAV2N8~=d6utkglO}-hJTZSH3=tMjBY|Y|>aVAls9{&v z2yfY7NJBR?aCS5m|M2D8r=q`x z<9Jn_y2Yd{-|fNe&NwxGylImus&RM;vzS0R(0<=D+_V^KNa(4vhvI5bIfJNM>6PMW zD|~pcBNEoobiqbE@R7z*2=k|)U0P?cjr;qh&LQk&gjwx3`62nY^pJ#nr{RKwKh^zs z#$9o_pSVjXyJx1Tm~r3CYDa7q?i-wbH)QOpq-L6)7L*HIKgw4B@i#JNlTc?fwU+Ra zZDt-#+nl;?=gQp>U}j%jX9ZLtwq9Rqw{Q9jwH8E4oSXuIj=gu@USfonvZ=|4z?Vn+ zKaHOiX`Sq$DMl~;^k0yaVz!i%RzYhiSf_n|ZO=n#AK)_huzaRS&lEc}Us|~~>ZAG( zZxT=A%39a5_Fxqbd>UWZ)LtmL?06o#J*MCN8l#WBE%?X>D?&IbXkEO;wYk)j92;g} z;^(|1o_Oz+vRtz84s*zM!IjPRvyI%NllKEvnO;yL@Eu#bZc%%?yy;uE|E7{x0Lx`BU{$T} zc>#n+!LcfZk;02sLeVzmE1eI$81BUnr%kOtu~Q*zlBS2KpB{0ur*reQCheznHs1yO zru{lnCQAjIU+rJSheCvYKVxE1Sq&A)04czs!G-kI$&yk_iu;&tWac;Fn`L}8`QdJh zS_- z_bgB9h>tuFCt^Q5T5cVeDS9vB75}}4rhzWnGhc zvhx(Uox}(0T7Parq2cLuidfYz$$NY;$O%^^%fGeuQBs#3Yz(L}<%`x=u}{c};L5wm zY*u8d1~KsoFH?^&a=vI z;=!|j&5xs-Njts%t756YjSFIDsj+t$owSowCE+vQ{m)*qRh4{=P0ggg8|~FqWqIUp z*L}~PO&yRi_y=#*nRmzv?m%3a>@L75JxJJ1N4vQUwns^w9W{lQpVUVQgRbUh($51{ z)?F*%@eaxghik@V>Cq3MX%Fzh#=(W9bO-4#uS~5G`R&W+E--QOBjYkrlZx1E9rw2u z!Gm-iSpOTc_~8?d0ZD;~NJA0y^G+Rm?-EOiRF(d4=`i2*Pr|izg@fm+I^(648%rTd zTbF~jqL*FAOl>T~J1l?mUOUt`Zhls~ffuFjbeRmT0PH|;>RBa{Q;R9#liWp_>p)a! zs_xACO`wph1jN286|92Z*8qICek2NAeT=2pK&^$fEaZyH;#S4Oy8%;{Lz2**y!4tQ zzI}%1!-M~3oFyp|JT!3T=SLG<&SzN>%O_DWvY{D=D!14S!uF1C6~>%E^Q;g#tiLrZ z?6V9G3b2ey9CyJ`6xy8xIf;;EIM{!`F|5Whsn<%8Ga#JdOOT=y^LVrN z>*wqrN_H*tG8&Dz15;OSV4!cY@VC+J^LF3$udPKo<~PK>LrQEyYi7)$&{}qFtg;h85ktx?c)uYmv|RSE3)O9=r!t{FN!WJV!v@vo zDs_~)O#O9@nx7hAS{svuflRw39w(gjSSH)BjiQ?TQ97CN#XXuf zf|=Vi36RQ(a+C^r%m;{|DvU1geT$cB$D92Z8yK=Wp5Xt6c5lt(u!Pn*U{Y+G2oK#m z*=jir`|&W$rJx{{x>m2v#`ozjkI9{}>^=LYvW>)Y2o7y?Of@;I*PcYYV> zFF>zUruDSw<#Wb5!_pd^@QicyHTEzljZF?mnF$&zGAg{@9t$zK+Ui*OS5C7B`M!GQ zoJTYH&6I%!yd3?GTZ6Wd85Bi3P~KuI$q9%d)MtjAcx=kID1s;b$>>v8hU1NIH!D@v z;SYrFyCrzn#KD5x}D`JBIx;7aTYK13%y5)^eX|6i2;*c#U zie<^zfu26J+oy^ zunlgCF*1V29-;L-zRw>19kT5d$_4LFiTy(L-QS+_>F2N{{Cf*!xEdHUHL9&bJX3$b ztNa+2Z!7x%brQc-K2wkH)BROt^u%Vadn_36A5qZ1$8&ucW%}q5pP0U*7q+lZI~-P3 zX_%;*kjqp;%7Q8ECXQz_p0_t$R@ZFTIRE~WJa0O})ujd`+Ta*VU0KSEa2aQBpDp1e zq9yVGrr!msO$o276Wzw0wtK>-yI zY9QMUmWiO2=Cb)W5t4FkQa06Zb=e#jvB96y-U6wGdcS1+S0o}QxeH;Jb#EdMV#uzQ z)uZ595z*~wOlqym=(YXCyKT=aqIWZleSW4Sk5)^4mNf1u^LMjutey7Vlk%dSu%a2F z5ANRJ43hfymdj93;>KG_FmKAAh~${ae@Bo)k+ZeEqcE3;wtq85D?bA>2PIk@n3+F1 z&k33{g>@h#eHH+tM##lc&cB1XZ`d2S5R}RV6*Ts@~0`Efj~$|{T`xm8&khb4+|1};`Q!o>#Z+0EPfPwMo2}h z*IUt67I4XJ=IGvK*s&2x_G6u0cfymO&bAOto{{M)IXGNfF5v(d5!-b5 zB;>!7a~IF|#TvtEq>5`RK1CYWG;RwC+1z+JdM7l)BASD+@z-mi)HRp!|L>Fz@0lL_ z)Ie;sbR>LkHQ*p-8>>DedTZCW%Q+HH{3+A9n{A!KAHw>U(Sgz=y3#qH)!a~%ZH!rU z(-U;g=Z^?Tz@P@f{n=B)qe8S*gs_=H&@1U@JM5sRZu;cIKiB{23X+s9F9Vg=9?^=4 z`JXoZC;Q%K`Xp=)`KOx6n|x(RP!h3sjxTiC+*^SD2AoIx^ye!aT?~E-(!gyPh3vrX za$--qjEPQPHpt+ABFpQTH|?8FiY%d<)9LQ@$$m3X*Ha;Ep_|ptf09rNSHDwp9N_y5 zDWXu){h>+CuCRVzeBPbey(fqlTGa58Leu)=Yc`>gW4+hVSf(o9Qyna+N;&zO@QM>h z`I&|}?e&jt1Ko1F>XKH)y0QsU)SsgF(IBM2lLAV#=Y(h+C;qIk@V4ac9LG>`E>g6S zA(MG_^=OGV-wxM8}Zo~^x-zp7;pcMCKI&qL&iF%Gtbj6)^*|(QIWtD71j`#Ay zWSx}Z^x_~!es7VZyo<-~NvtQ%U?|LO;3JEQ!s;k@)0)2ZqUCB_NVW#>pn%{R1R>?R zKD;R+lqZphB5J0`cF;_ltc=0C38_~70BLe%;0yWMM7!%~CGD8SVyojBSl~NeAsJ*g zp_dC|_Y2sXTP0Xf(cET~H4|P0>wY&zi%^jZj4PYZ(eqC@=r<#sIU#|c1|ss~m)EbU z96RwTsLl4)TRl^9rC>z>J4#(8!at*8WY%tjz6+`-sNpU}XZ0q94bwG*pR8Y-P7s}j znL>r_K1TXVxbg$9Oc%Zx?z)pq5`~9$E6?amOSwLvu6vq@6OyPtYH|^LdJ3Z$8&%g= z_@=IUt@iHsSt4($@7@|o%lx)q)x&9mtEMt=ac8h)y2g_*#OAX)k?WY9dwFp0YysW3b%sySW817JNmF zn(bB3f;?}bBtv=6R}&ogI^MTrtgXEdedJ2Y4j(z zrQ&4shKCX7&5wo+ImEN&#=v@JjL4*!^1qeb&8!{o_M^}&aC;`ZUN)_%!dMRM#O98p z7F>0`9>Nd;&6e`VZLq9z*wg%4_Ys9UZqdWaIozd+{5$<@(^^FOUj7e<(aKI9Xlyy? zL2=hujVn2rx|FKPy%Cr#vZ5`XDd@HRZd1UcX%~F&FRPppRyRiN z-y=n;dHG2j{A<{*&lTsE$w1&ajHqDmE{k5M%da)evWFc zhDL^60X)%{eVNK)kOyyDsc4HdV`QIR$NBu05OqCXtlNwYuu5iD%(1=u#o(l)`{Ugw zEDE`aZtlZj;`aP;PT8#Gd2KnMjJ99d!hB6}tUE$lEzGSNzeX|T;|IwDN$er5Z(c3M zy0#gxd>Jk@h_y#Dep${}-X+Dw$I~qcTRYsR@b__+zq=I#vXV#N482Sv@QG(Qg~wiX z1+Z{_KG~PMzZ!#_lPxl>dk$GhJF9X$@#~&iwwp`9jLY(M0Bo&B>6j^aRKiWXo}}Mz zpsb|?Gnt^KVPzedDJvm&CO>@~W^?Nst>SzMPb9YdroUM)HfI z;g8@bgxuj5(akLeQnX~dgDwHZ=BXdT5x2Wn09G92$Y;`&lm}d%iY_@W3Ys@U?1Boou|} zI+*#kP!kHz@|td33ihdPZ}KECDz$Bk|46M|0JW}CSY$VOUfm9=Svc|ew80&QC zP7h6~ja8%*^MdTnF!IS%Ft>7sjdN{d-l|( zqE%#_b(2MPDd445`o?-HsmqYawE7K-%Nk0@N*zn|EjI(7^ro)7l}Cdd#i=aK1KOMi z@Qm@LO>wDoV{y+BU209tN^cA64+>`ay52n|-vH6FII?pIvm66? zVFF}Rs`^2X$U5--L_NLpy9p<@mAYNAO}( znH-H2Ql7DRcd~T12v|91&_`qcXa0h&jl&R(MFk2DYSJ4b(zoqN3A&277s}T$d2&zI znOp4OHgC0fM6$lHgKFvnD>P4Dz@0&GHSeU<3q8+;R}W+dl7ANLs;z$N(_iR(E+H29 zvL{KxEB#MU=jV?eX)=8Ev!P64o=H6PDF`t<;MC1BN?9@mD(f}>TVZat$d=W1X`vGo zB50~;n`rWgPR0^`+7avg=OTEy?w1k-0fM~7pkCAa z`V{CjSD&aEP%5~GdXh{2U=A9NzLxxDWoCa26U2@xiDVe+X1}doIAr|+HgmfD^5Obd z7tB3uleG=fie9mIB?@-4Z2w)t`{gmEE! z)9-?T%*NANyNH70<#SUeH`yHevl5vjS0qcTq#{nGfUX;;G(?VWYI)_hPwdIbx2TPr ziU7PSlhqXYlx4e!l&dGahOiuPAZTQ^#G_21r!6bk+kUB4{cxYwt=QB;^!!${*! zlEb&W@42YWov<^nKTJ3)Lkyj;79kCewt=k`o42d!IF zBi$eJp@NCx^x&r#V$?57%BxgzJ~h(e5Eb!o15ITAiTbqnMF_%o7X=o+rZ zCEi@jU4EyiL8eY7L5T0RX^~+64)O>e;-D;Z=s!2*1*>u#&8eN<+kqUMlxz#kwzP71 zG{4k$Ub@Mfl6*SDxe<{4mrqF<_eK4#jyL}U*DE0$dNfyy8XMfwQbA!B7^(Paw5s-J z&t28k>`>2)Lv}(L;%WL@qvrbg5PiK5!kJy!s=GFYa3O9ymu=_dm{2-5+(iJf=!2q- z?#5&NGbc^T9?$hWVLyDcBuL0XN`Gf=-lhy>1JzX38lCKg;jSiW{Xr^DWit_viQ7P5 zAMl~J!QqOfn=-a8m>y8=ARICY3namnD^AtN?CPc-6^`#suTlL8Htv7>+()%Lx5>{9j~h-w7gRI)sdp z+yBE=W{^LL-!nQ{g#B2UBy1)EeZuw^B02xMt*@D=yyl<)RMhA(7fVetE#yMBjt}X8 zm`zvZ2;+CfEjH?gig8C>s*S14RJDeD&qwcpn|eltZkd7TRTzr6UC%3!ZR^1At3sQ) z@0Be1qw(ZGo=|1!eqBhl2RanG_Q=BR5x?R$F<|QgErlcjVoXL@;j7vxwX~y4ra+h~ z>K#p&FpQJgvZo=BUJ$U|*fIA=f2{p@**rddB}v*Y#}JpWF#-$mP%~8Y&YP{{lF9ou zj7S>-ppPEZtnBu)b`ub0~$tGM&&nX1=6t=HEE|^S`CDPQ3<)y^I_&lb5(Z&kPz~hD8tjL;U){Dpn zgwmi$qFkI!wzmDS`?=4*6H`RPgA-YjJ8euOSppu0^wB$kKLC7Fc4LK1IJan6NQ6d~|@E&*ndwy z9iC1Clq7k??^cYPS854*6dm?W+&!(LBcIUdu>yBGW36wK@F%QKu zNQZY(YqW>FT+&D z&3+(F`_8>l);ZJYce4WN+bx#bAtJq0dh0DqcE1&G-xDeJCJ5B}zy1PgS`lz(W`vA? zK^jr@)n9UVJl)$Y!D+N6(Na@|&uoeIEix;d9_@z2)T+Qgz||KXh|vV83q5F54iqpM>IWy7;*Cz8xLe=Kr^ z8k`Mo?lnQ7i+BtGvP;)4aT1bPfci==HDb|LF8FGD?Agt#YU%1CA80>Ir>zaG&^ln$ z@5857zRWJhHtzx#=~mK8ZtTSGBG98OMO_Disz;E@3}AjRnb+KZ(!THuYHhA?p2N_t zqHw18$iG{R*J0D}^pc~oFdSKqpdrTA&1TtL&&JN2K55$WX~mSSzKKw`a(#2gYOrie zm;UQrDfKVF8$*!ZI-YQU^n4Hgbl*hqyiVWv=$65 zELNhe|C`B-<9JxRHKN4%qb*=UnvzM~pFPc_rc9fZ|2XjuT4*Y;jo4nA_ zyJy_tYz60WC$1?8gOQdKJpLn!y;LY%mLh=Pw`@y8|bryK5(62(G zkCfM^G54)c5epLOlr0smts*bOM^N(a+;Y|xz$+0vK0Nd6%;A3Yj}jKkSnuPX%q{h; z!VODpU7fn1NMVH8Kh^G!5p%f+Jim^`QdPZ_!>Ir2qx19!vx`N2rN(MOgpRU#cXc+L z{fN}Tu1jLI!x@JGwBHP0nnB;nIobMxvm1BVebL`l)pREf5eXCr-@fzefolagrdagd zo2_h~Z{95JTn}?4YN{nOS}P6zgSh+AL2j$_`OjvixMw?f`A@drs^TGaQ$qGT0xw(V z05W_N3GUWWs=diz2LMIj3jDB{eFHnYHCF0f{l%mumLbp1G3GXqM(uTbK^)DzR*Hcg ziT*Mtj&?*FoXRc){i}7@=x}lW%s-L##&6WPvaGO~ruo~;POsg9+if?g{a~IIJSh%B z{TBjifjA-c!j~zkek8ZITl;WukX^`&OVFWh(Vc<7G(^1!`oc=KR*SDU89}sEu}zB( zIW9XCI>nnBl_JBv{ePcmO?Nu3TP$F)eRj9Mll!_jDHD zVJNuvm_qT3YK0%4@9%8%^0MX3j69%2MEIVW9qt^2N=nB{+pW>Gj-kM4ipRc&I%Jf` z3L@mh=&Vuc&mIduMYpmZ{XGj)N!WB+Vm+lrc%M;B(1!W1>L`lv-Afb)LPTccQ(T9f z>Pf}-Wrc5a4#!Ium9=XG(Pj<1+IfyXJH7y8KvbL*!w?6qXV~z{gVTE=Od5>Emn66h zkUc^CWOm1a2(a&|TI^O$<_$~l?)6}iOpF1}O4bR)6sxzdQ|Ou^J(pw5=QPSL=;V4S zMz;SV^%*jOU6p8Wi#b*^w-C2mF<>Rn-)5v^-W}-!4u(JLl81orG)CKegr=So1~h znmvX7LM72~SzjEkD-M-sZ@WPWGa)+Jp?iiL!uGFp=0dM24p4)h9W0k{xrNh7LUOH! z>5Gkq5{64FxJR+a*Olxf{&MqEZ}40}s)^TEjgNQI&RKY17F!L|>X@v1N-`e-Y>Imq znjlr}iI;C@GT_`tdo7JjwD%aKXj(tzE#0RNNXMfSN*z;OF==Y)bXX5L%p~CLR$LdBnNYbKJ69T^AQdL7$A;Txqi~Aclh$* z@iaS^Yxj`Ym~?5dUjNa%7?DS~`>qlT#}lbG@OHD>KdOoQuF)eo8j=6iy?H|(<8#Pj z#3+EV1d0<4{I=%U+>Z zp}ea*WxRcNUB+=Jt5+;2PgcA-xgXZ~xn5orvO)}ZoBJ7Ya6ninvlw+AD{v!}!uXzLJxac9EH{y*@>=KF zDKpR$yV3Ac;|Qew7m1493+jaK+989H4{RTs>EnN5r~L_cDgxWNLq3<3EBI8~_ofWy z&1V^3A-RflK|P5g>4ICju!-;gZ5aoqzc(JIh6Yh5*B|5YVJWm~)qdmO! z5PXX28)&87G=Vm>@$#D)sBQwExAfgZ|73U_*k^umDo@Rz0^a`3xOd-um63~<`i5C* ze9<49NeRE<>r#PHzoc$JEH&znQP*dAej!8lS#et`$kQcmk=20z(sfgSg0D-JpdbKp zu}dY|RlR)wb>jYaD+N_24*g$WEhoA-v?l8dv$z1!joUSrD(R?y8+>wmy=fKpY9fH? z3wn*@iM|f#PGE*7=m+793r>IU$4{>LHNRrQ&-#ckDbJnEz!}e=&HV9s4k>y_b8IaE zIwfAaHc9h16%XoO`kokr-JD#+CcF?LV$9{_oszNa-m4+B%@*{u|1Y<=$5&N$*u?Im z5jJH9NJVXQ4de&$ z3LqS}#LDs?q?(^<9MpDh(;}?{Hfs+ShYii@Dm0hnef~|jV472!RchCtHFg~2LWKf0 zt^%;B-${EN*s&xKrh0`@^&wB_R#hEuH4 zz}nLP@7kx}!}|I4JBOB)AFYGixxJX>{2^Z3T)Qo=65nGr!=>h{z5B*}WE3I(Tdy3V zReE_W2aSU-O{4&}_*d^0C5pTT zPvV#T!OqHeP@J*Zt3dMT_yqf_T9KX9mZ?jp+Iv%-z_YNGhJRmO-2Q!?f`kKCTMjRY zs45?`r1b^RcapW2qawh3E*y0W43Lh>xZ0S13#rkG(VRdTXkR~``; ztY=Nl)XRo>w$8BrW?0MlGDX^`%hGT)H(hf|U%gad8)dCI%5S~CnNEKHkV>ov8%)p- zo0NwysJwo8kkG5?VZ{bV)~^kqfFD=qq2={U7V87mwg(py-PXW6-N7LS0w+0AqqALr zo=&|sRzktDBx|H_`M$@j{7d_w$?joQY#ksZU#313YFln$?M(3h+wd5M=V%_6YFaef z+7tt|*m7XcC8HRF`x~h${s;@wjA<7)dZ%mThQg9?+{NbY;UwLThK)IxfvE~S-Oj~= z)dS#!a!?0Knc^`BnhI)+aG`nfk`ig+pJ_#rbQ1fcs6K`x!V#F<3mlSa^i6gfhuCFQv2X{&iP%xxY>8QZhf7i{P@06f-ZC^ zQ5b*rB9Tg>vI_dWi>*0gJ4oP#9W3YlLvH%Liaj!M7EsyeN>1dBPR&`CT?+Lr@Vg|; z-*cwc2%6qT4UTqaur%#Ld1Gokw&yqWLuP|cuic-e++kdd-4P~-Bg@~~H+y+E z$ibJ;o!5-~;$yS-oL0%u$d0}1T#8wb4+1kL)BM9`ZR~lgAhG{T%`$DnaKOo9Ib}EiQvg^yGfIEyBLAMoOLH0aKlfZXjFD0w~5~O)SuvSK;0B#9X!5$oAuWJV*wmK?+xJ*e#wa5x0BFk znS9Hdbb8IE7wb&)dd)Akn|x9|H_+B|zNO(cYRS0V3Z4re&ktv(lQTy;Tii4*#hoIb zmiTX8x>MF{a+ymf_<1+i@uikPMX~(K^j1%8HIb5lZKzoMv1@O`_5|I*h0s4;p+9)a z)>?h`?I|+*J{!thyZ`oz0w8Z2d~^z8EK^7-{*A7{$ZRGmcs`=c@j6;QR8cG8&q zs-n(0I9{C}Agn6lpf)k+27fXGobTe5Kh$A0fJuknYXuGrb)%8t8vWt!t?Sxe{3Gh} zj@xuM<95aq)||KVu`flmCFGMZ2*6omNQjjNiomw5Rq&5Afe zV{Y2OqqZScYT}J|R&b`x?OFpM5rx}UI=Si%XFoGWSPjiPJse{X&IQP0ti)X*r{Ar8 zyO|FrG-BJ!?$@Gjdb2xMZA!OTeg~k4rPcja#vCRcnF875{d3Ylet5Rf)N-675SxcH zj!Sg-56r(oP_3J!vm(yrawlFF z0+HAch8z}w$aV3!LpS*&n*c(yd`u$;U(f{uxL5MQzR2Nz1#4z6Qbcr5{h|@PJ zDrns}4N8d&FXVwd>s5M}to73NzSf9Y8O(&qFO(t+gPo@BV*^JpbH>w}08XXBr&$N03<_;qxB*_hzAnsLgf6ThCo`n< z6C8w8LYH+V3sSiRy_u7Og5o4B_Mb#9uB;LM?gh?fYhV-J^D-*;YVMs)_1i8sTiunmDII6WVIsJ;56Z@49o3qX~pGN?QMo+;*mX~ zd}Qr8u(XBsM?afy%8c#$cJ=d~=fL9(NOln7g;{>DG;=7+%T0vmyjxzmt&N*sW+Rc(snZhil4-~x|FglBAeU^ z|6tb-hcBKwSReUDtE_1Lo3h{AAQa6`40)tZR!ODcv6i(}Ww+fURxV_d50JZb-g^qz zoxO-Tgh4U`h#J)~(VSFwk zFhs}W3J;XXgrp75kZ~n8c3SV1%H-<~$OJ8mKqOHBl3_$~R{(oGn`jH={T_Jln?=-` zNxkz@sZfQ6oUys_D2%?solg5}wcbGXzZck8L7dXZmmCGANBp|9Mx73r#k1N(YJaa- zE3^G&(0<@xcc#lEGoMw(pQ-D3KD|iJsV7n{4wJ&y(_NSb zwOEzz1QhO~O7u7v_j{n{H&$_Y!`oqV_z=JVcSSn+qUvTIyB_`@T|)6e%1A}gT*hIy zjX?~d#DAi|c1q|S@hbAGULq%0!+-5|TGnHQa$I==D=gc4k!d70m!0iXEN$gtiDih- z`n1#d57G;zcmN1xnut&6O!nS*rkd)yWFP4p1;a%MTYyEE;)Tl-7QA-Oc0CfdJXc-) zGbnMkw#Y`m*1$5LO3rPPkzH?g9ZE$;P1?QS3w@)7RhSc+b%1L;Qdhy4EwmZ z?t=g5eb^L$m?%8?ZX4;P zhZUMt+3~_VYnFNKsXaM*NF5)tOtMK_<&FAp$-;I_#3fM@&WfQ%vLix+mk7*IwSz0B zoi9=YoAigGFW4C3Sz;GI7@GDxpS}%-|Q^a zal~Xzevt{u)I8Zsd+(jhZYUhLy}ED&Wk#pyVpei?XSI`bv4*0ZdtI>FvJD+t>bN1l z&1!w5yINDRvcl>^!=pc};>`nRVed&+&4P<11_^U?FkN_={6R}59>^Kj|N18K2@sxd zFDeuEB4$54QVw)c!GnuBBE9+yWt5d*7u9(x9S*t#I++U|rd+pgr?$jP^%KM$Yzjbgn!5*nMOTCJp7Pm=1RFEbR^E9k>y^1=eR!ovtxwvTS5- zy~$RL1vN^m(zr8Ku^Kw$WJLA|AYb^_|4NSzgn^lS4opH2TUNt-L&K$69OoW(Nf9vchJGC95VL)uO}DG$Cv!n43+v|SPa0{Nz7{A@wScRO3d#YCACN7 zbzZXLyt=FvT@BPc;OGa0x6;lFVgqrm^EU)JiiP-)Lf`&|8G3+qA4hjQuzh*wHaloY z9PLcfkh^n>lKH@6^e3WrTgY5Sk(mz2qj19q<5FgMU$7G@ zH2>OqF1Bd|O}tN^!cAXZn7cz|&G^itPdqJlmqaTUb*+5dB5_ zWc)kY;z7-3dO+_+qCxpi+pp@Lbxpaz+5UD`7;*qUz1S>BM$ZRk7ycn+03-EQ9Vk;4 z`py>1@2yKssjxI?4-@|VX6Tx>g&#?-KmmWDxs@We_zE+b?mvc-LiBBI)-Or-bVwp` zQuv`Cx^>c;8}@AalHeI8dm^T!7kzvc(+$hmOOb{L zIl#tz-m3f{SFSH1XC{AuG89@%e^kC*atc2Aze$l}`s zc43>xS=;e7n?%5KT2gGpoCY}+^*@-q+t~fK-W_#=?oZG=19RKaBXWx$v~WYlxUkOg zM5J^2+QYOBeLwXD`&`0uvrrP#5VMd7KgI@;XX;ypR*^kar^6J=y9%bpFE?$7N$ngp z>+396Ybw~OiSx}ff%)gU3f1}khi?z*TwI8UVYKKPKW^0#8#$*L{&$U*mX;+$>NJ7X zfHC+|T0c?GQnQC~+LM_3`~2Kk(|R-uaEVWJdF0@bB9NWreia8k^za3k!7K6r)yyZW zAoG_YDm95A?tu)((NArRU9ogAukSbQZH`r~EC##%9Bfw&kcaS|$bckV%N&^3pgzHB z#~^<{KwFKfo318UbsNFR@dh@W7={5ve(rc%riaOKg!OxP2sE4PQplfoz?}wQYdnQ= z&6}u>4a|AQFFY8>qXtxCMd4^1mSS2m!zGI%x_(BDA9?ukYLgW9!{=5yK#xflMoXQS z+N6d^j_e=ro|T;7_&&9lZ9~f0^OK6{-^=EGLYNwUDvge3$?IKb*>=;Tr%j4ZXR-3- zSFEbU5zuzS-IB>K{{J)me~)=9aKDuy?NI?@NmZ%;JNv4pz&wEP#<@cEM3U75wxKga z!*|U_errR8S9iTtIGb23`9*Gno4@TM;@i|@^TSL4k5uC{3ks8^SHgPii+`7}^w|xh z_Ve@%Y}KCrQC-CjJ?wyClw}U%{6B6>9O^zo$hQBI(ZCy}#L? z&5Wck3h2LGtk&P3(Hi(DF7CJ4_5k2;u}f^cF3NRIXF4Yy)GUoQpkL=>2nyHGBsc`8 zC-dX%&No(m56oJ&e}au~glU6ziS)^B{$yH{XV-^BY@7H{|L>yxPmwZ?ni>`-?^({U zelV>{F4Rk`O3-R%>K4l!i>FDronF1lAqVK{8oyc8Jb4KLc<0#EQUQ56Yn= z$_=r@{2s;FJ<6E_C^6Z8Th@Us&Fk*%d@?b09C83EOj1rODe|~Fj1y|M?oamFs@+Sf z#Ct}qM54%*+KJY*d+whnFTAUHpp$*`@g+?+H{+u7&Zh|`kDXtLIWK*=wVBO#M-YFv zHuKT>j}D8A2QpA_Eai|H^SEIW@*Sihzm&OO}fv&3_o25#(uX3==d_? z$M!ab(%7=T(M-Wz&@!d_j@ku#Sg-Vy1*g^_5BYY#pc}mHU0OF_q~ldQYVvTP7V1TO z@Cns{g4AbNjhab&eHv9VTmL7(00zBIi_{;_YW;Znr!E8|i(DVz7DwCEpRhAl8G?g1 zNb%_7Sm~A{`QW7k58tY#fDU_IhZzeKQS16Ior&dEd*OJ$>%Tr+Ho+X|cHAXscy+ah z-CH3)Y4S0wPNf{}I?diGXux~TEd@kvMoqZ%*=1OQV#xPArYA^>>%X6UR_LPsNICt7 zoqE+S>&ZXo@sn&D#JAj0T;O{=KQ%Kq9(lMYnvQ-j7DY0HRnD7dz?-`<3e>6B*5fx$ zJuStB;4Lb@npHb@GFm$KtHlkj=9(=%tZTkpLZhY38bc|5epvC1YUEC(fbU)M_2a*R z^a;Ojjj0PWz`*%;;uwhagPV;*ZM?%xgH6yIy^%KXC4rEm#W4}#W3P7G=>uHzX8QuB zFV8aOexEmwhWkEsH%Bx*AOdU?lxOvF65~Z&=lhAd466U)%fgv^_1|6Z?pW6*HlMXu z@`a0m-P8|W9)=U+Wj2(@8OKz&*;flqsbKW}F0lePU1BHb`ATkC;gg13PsEHBgtCQ6 z^jR==aXI>ZJPCdON-}b9SulMjvnBDp&FpAd@Oq(#StQxq%CAlp|G7PJHDLPZVB7q? zF|ajVbiB~h_lS#y)!N^?^5+fo7v~SZ9_Upj;^*N@$)+D-cmGq`IsCRKCcCS?yV6Q1 z1Ds6ebO!no2g9^jg@yjV4~(r-Z1Gmj0G{O6N)bDYdYPExOU__h>q-ryY(#r`!Gr>~XMp(n=Zn zHDxw~#D=VcOiD9)whm-ulhj1b%FQ` zRmc9#)C~^7s;LIjefjwZvC2Yl8_%{0%jKitW!sp>+89xgKj2MEM&J+>l|ne!|0BgY zejgiTg*@rNq(-H_B9tOomD!-Qr1?*HJwT16rL# zQ%=`YPgg`$y=m(W)VVMl)gwB!>y2xv_f*5*h45Lw>(y;L7YX;%n&(c6BP;6Y@V{PK zyQ_T={Z8ra`^(AeujupPB@XOCl*fMaoHiNAH7+{7zl;l`GJgjMT`k^DTJX2;34)6Ugc2e>^ADCDepRRrqc4Nx{bdy)2 zCHXPcAJx-#*%!!EuIwvyDG*RT7#_q@a)T;-dD92_8xc{XffrVey7GL05$$cuT3DX$ zwXn@0=^Z=Q1J`%tfV>abcc*^~dZNvb)acaFBJ~Id$va?$_zq~z_=05`?Qv2M@Q6aJ zg_RXDTUr?yUdLKHNlyXCd(b;IZoM60haB2UU=*iD-u7S*vd=P?ocTJd!|r9#4(nj! zwM^ZLXTZ`7K5OyH0Yz|OvtP3_rr1=t9}?UWKwzI~7}x<)e-ItUfxL<-4MBgCpkEZV z>mP8In|1vran}6CaVck6lrR3jBI|!b43IM~BDcA~C=qLEcW-qa1g*0R8{ip&DMzD1y!20STl zE6nDI|Bha6@q_PJ7j{WA_3|TQCA`qx>N|cwD85R}KyHbZ%SP2lHMIfFoK3Y2$VR(`HhnT?}@!Z%am{`n1A^(@UiOBzMhZjV2LDsenU=rDip4Pz`UCl$A7Yj+F(dDW%^_xD*B z)kUKX)>`X;I2xnMO<-&|GnbVid~=95SoPLwPzp>sF4+1`6$jGPHSj#xGO0)s6D@uU ztrF0{N%AL{^~y2A?o`!&?XOd$vOrEbzd}I|GyhIvA92rHO8mwh{RbJWQ-m3Nnj50& zf7VdMO-jmMG|~m>TbPY}-7QJQH8`NoM}Wff+MHl&L_vxdPXFdytq-qUbgCfW{h>+J zL|K`I$v-c8eEU^=YQci2)dUKwstZ^jv270OTdk{(@3n{V1h42N`G_|xHBPK<+I$r=S1z0rCFxQ;= z23@^rsEv!cJ3JgzK2%df`^B^E*wStyo{_jvQc;HpN{R|QXDM0R{S70N`v=v(D%!$k zRaKXyVFR3SDOkB(<#;_QdUkQ-W2hhdp0|5b<2U4(+?Y@hj^&ENywy9WFXY>j8#T_3 zui|Sv>7U_#HZFBN-BM;B8oa*L6}i$CBG~wt`zUzVvp|PX*FS>idv5XaALQeJ_~7E8 z-?A%zAeyv5>(wvGDQn^;La03zfK(}VOU8;mLFV}>hM*W)){^N7Q}=}9U=o9K^$+n9 zXxlPxfy?p`G;eLk9txLuN&8A*8Z1qbQ5x_8!YMTd!qH^XNw#sI6FOz)I= z;kYH*&6%?%&7~o|5++J3(^YrYae(gFv!RC*!)8E_q=Z_`i1zsB_Q65U7+q@=;&t~O z=&;7M>h$onbEFX-Xvl&5R(-(59g%&+T_%V;;GGuJJ#?i+HYd{h7So;LF1 zrYRqkY;KuFHH`#-m3;z}@(#d1yhCJV{}l&hji;n`Ab2Ipg1VX! z^rXAn<-CF9oLkHLrzD4?!U#v-Riwn3swU~E=cq1`;9#^wJ62TrP$I+LEN4rMUytAnI!r?Rz+M~&e5T&GQ<$O*scK1 zjA?Y{m2)A_pb3prYi80@!eGR#rvJ#2`e}j_t94_8l-jY!#j8r;>u%l>=h`0k@~B(l$$wYd^r#p$Z1iZ!nI} z4zL}yeSW1cZw*^%07Nm&jIZr!#>iKwW}0%&#OfMz4jihGpTkc)fMPNbyU>{_MDp8d zlC00^`M%|1GcVkU>7vlj^W6j!zpNaz1`4ypur#ou{?lRE#(TTAYmu7+diApNwUX;+u{+3pUkC` zuDBom?*ROtNc`6yogcWOq%fud|7FO${DYD1!5e9|m|O|oGZ(TeXiBYoc0Y=*x~>u6 zlnTLb>~`X||3r)=xqLK9;Qv;XKigS1opDe5A5s2I9hxr;mrzefL=70uS;C#ymxFcaB)Y#8$|&XIT-aFgKgIdLm3wBD{UZWO(R6dpy67R~`+{UTweSSPnG(0(27Sq9ICsanGTC z%*)i&;MB8ZBr?%GsQ(ZpEcNCgdsi14S&%ewIsN9X?hdXk(MyyokHfs<@)?-&dhLY$ zF>n7_Njn|p+k2G^`lSX`#Fl_gT;2`C4(WTloUCr)X&y|+%%Rs=b5wntZ^s8IVF9g} za`KN27SMMThoUD%A!y^{?XvThjhbNn`ZheseX=w^EzNtPUAn5QtJ9ett6;t_Z_r(Y zeJxyGGSHz^3_3c9=+Pc7vnv@Gv$xMLj67Km zH_lJ_uFnD05v$?f@N3YUiz?jjqPRpP=%{vOezN&vEy$rze7X6OXpx||9S(nJoSfW-en3uY$ zTDI7q3b*@Kg*|bsfVU+bgg*GYO#C_7{+}G#k5s#F+ql^NI=o+Mr+$8EeS2zeynNBV zi1W7d*g^d4@*rx!v`~n3b4x1mb!TW-yqW06QNZpE{)eH)yU{K`Z#-~MY#~J2vtSN0 zn3dyZVG3PzJ6F~#dWJ~AIC1;m_*$jSx+GoUrJs*6lI5HyO2Up~c5#f2ugSnanmUvf zkrssa^MvL3VneQ>S+w+7{3t@o3XdD%JQ``a$Mh<__Gm5}eWGBDfZ^rBE8-jVd$daE zNt{?<*iCTd`^`P73e4(YWX;7P@7A4`3lB6e_!Opildmit-(@asTUzgiyP{U5$<=xQ z5$dw+PZW}Zac$Iyq@|p>_5SMU$(5U@WqQ*rAXbZ9$d&0^VxI;gj|z;BUHkhI<|z9G zF??bZ>g5L!8?R{7yo~n(c~atzQ1O6gb!w=@=vxO$bCt}5G=il{8WsGOmgls^vly}R zo(}S{z9-_?Vypr!5Zks1YK;sD$6Ikt+u@B@NG*IZ!NPKHH=*%j0n?dPe~llM@LQ~Shn@#&H4eX7$u%mIBoQ-{#G_KYw&)~f8YSk0j>9GR-U)vE{0sf zts4_=dO z>t6ODdK0|}7gTtLRK@j+I)1HYveGc#>OV9^xPo;&u@aeW@ zLO=2eSaqlW%giyk~uwBK`Srlgqw0a1bb zYRrT6sEyU%6r2o@j`etKueu>2mZBNo{S-qS!$94--d!zWkARC)Q-7MxN*e0G^mz7H zC!}v;1}Cnjz~SsqXDaNU1B(a4XA#xk;AQX6-=|VMAJ(F(fG0^l0X3A4{=SY4kLF{rYUF*xGr_TzzZi?*4F18&h+u?te6&{cCmY6d7%0~?w zM+6kPq&9k^uo=Uyi*+d(XFG$6rRnHT`M8@m1jb+!4Lnxoxi&&HKVbio#$~UuzZ}+R z7jMUb!s3=5c7R?q64z1hh(L6s@NalixjWwC87$6Az91Un`awWjnbJ0{m0-(e6-=wr zlWC4l)-L**}Q% z?57>|bJ?!B@2iv?MP53$D~eWhSIu)J=Tj*8VzUYobSd_S-6F zgsr`uLXh@Mi5JJX_r!xhzR!3isVo&Fj+p!{#t3qZwfBVRcZay|X`lEt;cz2wI$Hc; z%EicN|H2k){wL;N0Mbt2h0vmmrhd8#m9bCk4Co-$9kMrQT4<08nd4Y$>ffXGAarsl z>zv#NRaoU+qnu|+&R3fjN&E`;#7Z--Cyo@TCnJ`Mg?>^;ZJ2v-<*KJ(y!E zVG>F(h2-G_P*L98WQ~H3@P&X2qtg>dRM04cIVgfZB};)oM?~kgTl{-sG)S-SqHC-jjvYkci(CE8wBhDq=q(#1MzIN@+>A>1+d41_=hiRywA8}e_okktP{Ese9 zt^<9d35eyjx}j1;cRZ}ZtK@h=T6}G1aTX$-vAixfNl@n70Tgs)3;-XO;IlG&{^c(! zQ8Ut9%St*mYWxL_Rszsa;q%OTJOWTP!e9CL06OgK$&Go@L0B;B8fT|dKP7;?x-GQ2 z5%I197y?QWU1Acqne;u8+YO1EDbK*zeS7!=-T5h#SF_p_}>0s zO&xB)u>GA_4;eLgRkyf;*?+o@OcE1tl8_$unb8gc6(FIKcQ!v1XP4zpen1J7j8{Mr zg*!4Sxs})0T9fO3rtMx!6ZZ~)ey}W#G(jOPZ?<9oK>_FoBTSkzl~;yFxl`FZ+LW{_ z^+7bUF>IUB{U7sDA=Nwiq1#6#%K@d=V*TM)$J;zy!oVBD_1}RNEI@fQecF_sik7#a zjgnypd}wknG`*u$cv%X#to`I9$Y(1=w#Rb9xS0?M$juh|42_UZSzd1@MQ@L?)Z()B zJ^tWTY1qehF{3M>$rlFBlk6k-Nz=%VPGjbFLfDTM@tHE^xf-8<9+>-jIQ=JX9{y5p zy#xEpqVM{cPp6WmhCaZN8}+N8bEZ+z08FeLnmA)`9R6xD1k_QQ7OoMW#kL7O$v8Cl z&L#Qd+B&E_i{qGEiE+x*sCr2*!gZcG&(Iax$64+Y6^#`W`q_zo(=fR7%CEGI1Y^>l?152c*frk-aN(Ks&1GeLqGgqsrbY4q5HTaQ zJ6F^vzLEx40jZ`@zVc~`Kt_j^k>;GoKNU1L@OJ|mXvVIAewWxzWD0Bd0c?;eD7y$2 zaG^bS5C)!fVgP*yw(>RK>Wd>GA)Sbc|H$uP+-K45Q$fKAQqYrto`+>9$$B5JV^QhF zz`Gk9=t@F52+?zPX3}^+B~N+mD?6||uL$A6#OdykUStrA6DL>kV|~%|b5Q@r zB^{qrn{a_eYQN~WhCR536ds&JMn|OM;Ptkitp0@GoJ)gy2W)9na9TMda2y4uEAKSp z&ZK;UP6gzog3%wuteV#U`~}-o>%rQyFv6{QI3{T`{)fY;@)k5Cs!~2^JAhuu!yMIL zVsRTt`j<~l^TnoDws?aV*yIM3CeMMz;FhraPn(3KJx#L-to5S<%c4WpIS-%u(=J&C zw8eDCfk`_Znzx7TLpV_uA`ja>^8(6HC-N~<;!f=@m&BkyjR~H(6~duD&3E>LlJJ&V zDOLOBImm+YP}w5VGhiAfen;6m~p9!5DvwI#o!Zn|u8gF*$Y`?LR3USP= zr)jYHDdwe>aT{y==c;Y1@lmUaG>0tLXn+_rlS=Z%m5hx=~2iO0HAGl}Q1%H&Cfz-8YlVJ`gq}|?R zw4K=0%L9BcWKcGknjtcGVZXT{~-d1z{<@NhKB0()gY z?{g&>8oV^#$G-Z9FL-i!_*NK1RiWqn;$T@s9&b7OVU2YBWDLDmS5gnPYzzB=DWm#P>eM#c9qQ=C)Nlyt_t$>)e1{BQK078 zG|6VX6b7^swboQ3S*OCUD&LX~Q(_`sPb4c?S9Tg_j|uOXAH(F?)$@frSd(|hXtm2c zuH`mbAx+PYi)qXtX}6x#2{(@)7;Ai!v*x{+_J&B<7+`BHSnbx;|i_!wl&6m2fVk%xJM zbx*;@@a$E(bA% z>ocaQ0A@zgfDL$CJhe1_t!qD>Jf_yU!SYCz7js(thZGMLEzb>zX>ktR0SL`>Q9n<` zjDPQtE22w&cFRERQ$Ck<|pJN1g1CoFpQU9H7Fe{$*ku!&00w-xvbj6dPjt@POH z@$Vscm%bG-3!Gs4Lfq%4isJ0YH+wBtnDJ%G4VNHtgl<$Cto10w5pKGqM9pb`D2$Y()3qeP-e0G4sXXVIO0clyr%*W|ug*@CvB9~f1 zQ?H|oiIX?_0oA|;qQmq5L2wavkRR;a@K+4a{@VCXX%j!1wn)Dm=pOp69Z-9}fX4#3 z4%>(vI-{L~?!10WKSws-BGw!Q7G^4;+Mdufs$)uHGTaP6>|enlk(R?WT65#OaPB2ItE+9 zX(E4T}<03ig4f_ zPy{MNun+AR3Ckr{xMj0p#H-kMx5`-UgCECwOSgRovAXBXXw~oY#}a=qlF+GctG5iHdFF?!awUL9^f2wXtSV6!Xhi6b)wqm|JI{ zsYZsDu28a}s%J!Co|Xu~Z9HY7HmHAMtPZw5?jFx$P0-ghN8c0sC^u-9<#ofClS;#Y5Nnfc4<27PV#?su! z=Vf0C7&0E1y;pP&lu?s9zKdJ5D6Ys2-H4r()n|i*YuxR#uxc2{=gMr$&7ezdS8VCS zzd^cu;pG!kVRdJvDasuw`y~GuaFO5{N(mg^(K^m63lnj~$8#+4aTp3_s4fVby;{RF zHH}rEH|kQw$u$3m#soz&`#X)Ca@mE=qqlBg_^4c)9i)s&k3Sayn5&VB)9_mz7Who#&MQeBEq&!KIiKQe~7xBCe9 zRk#*+NfFuZftj`e@FW$-n7%%X=oF4I#tu=cNXW@B?x zTSggE$7gTUvi4MONe1Ev?W62tH%J68C1ZXuKi6SiD}1y1B#>;6AKVx`>ULBd<7y1k%R6hBFPk=agJ{%#XU@(BOt3DNy8~nXq!|Z0T)7%lnt5vdEj35049Z?q z?}VwkPSnDLS1A(bI`uQf@rwz(tLT`WR=oz zqZT6?iUqAMEUFLnCpsQ2zETiSc+9~=>J!kV&c|ghVuKoIQQ~6i?D{UCYo03qT#aPY z*%@fb${0y1nYf&i4XqG3D#y8K+RrI8W+CqUjITHPY@UB@16Qj0!Gdo1nJP2Ln`;B* zRrx5}xBuEFZFwSswCWfi^hQbr1!~1A$j?J09d<=ALAv0k@H&eSImXWFE-QD~b@MTI;;_AaHzEv1KY zEmu1yK04qQY^{-!O&YN6Dk$98%28OhFlDx4YyB3Hsn4|-#03025MnXeSxw@8uu?>X z>Zck$Q)7D1Tn+5N*W}ln+DwJYFZZ8zkS!~F?&U(?RyV$XLFJsruJ;+bSnUPA0rxre zVQi-ZE+@HrgO8Eg>gwIzDsVU@N)0)flb5}_mL5}rS&pVva^^rixeYbq`M7HFvADz$ zZi{3~Obs&RXjXXVpfl5DtRhkw=8pD4qY&>NN#o?guUUKIVF?`7&1*LCUb=hxUIFqZ z0G~2QgJEb_Ni$}oc-Zq~(^=z5?*rJ(#z79}@?TNn*@_X2wq za=1Jf`$@BM?U6jbf1)}p@f(u_p~(BoCb?$^B3{{3aE}1FDkxpQ9G$y%&sUH<-|uQC zSY*F(7N>+c*On&0o3g{O13bvjDUDGsd0L3^w>^nt@WeEBh&Barp|BpTzUzKcJDWVw z?~=Ysm3D8y<$TqX8I0&RcztZ{#OGTr_5S>U+{bVOFxY&?1FtbM6!oo=vTJUxy5hAi zk-))J3}Hkl$u^K?vwMNIG-3YG{R?-K)9pZ(LFhHyU7_s4_%_>y;*o0c@IgmJxZ?c%U!o> zqr=lMdz5aFW+Fb+6~&1J6}=c8@uXzc9;QOL?URMTTEMNs0 z`eRm6LkI2y1BDZ99ga@4s2r?Pq62Pz3)O0huc?KSoU16E3AwJ#6%jbk29lzF8xwP( zH6T#9yZ`!Ne}a2QlPV}^spOiy;PWaB=PJbV?ovo23i94=svf2a5%m>$xd%5HBdWzG zVY|?&e|Q4zY}ZF-SSv#i;9xn^yMJG}zXh`;5R7lvn=2iu1EjuywD_8CjN{F&58VNWJZ; zq0HPl6mf0JOuv;dDsH0R4mmkH-kna$X-Bo&4T+AEq})bvdg)WQJ6}qZ2`4TGEQx;t z>xq$?%(5=H3u)uMwMBI9WaGPzeX!EOg`#+d{%e2{Qu2B^Iswt7;9kS+Xq$6iW(TBe zQi1z6?u#JR?L(IoLAqwVNjRSZmbdphZ|#49e(Pp=2kXzQky zk@T!{nYn~v1*<+W{VSG$@-9*IIp%9W2V0V3F4$vq4Is-ur0}*o4!=g&@&B+f>=4F$ z-evm}u75iea<|&<1v~3?utOC6ZW+NQ9e>Tj2;Ff)S~Vs)7}L0#v@;^F+3$kzxBNOc zLYs1Ry^;hLjFffSjkWcBO}GJuk{0Ye?NZPuB%ZY+p5&4i9LDgK0|8NH4c!#ZZCO2{ zF|~ZZI3l{E=aEY>n&iEN&I_Eu*@MudIp(@rNcY2{yrZHos}x_lQz|h@qk%~Yydp1R z7G+bsaz47f0I|a}hm=*7s#8bXb!-^Exl2Et=v7q&TNlueJ9!y*WSOUQFx*DlLp=6H zcxSxF;TqNPlv#au9^xW>@y$VSrw#B7e&F$Mj3zHNEv>9h+@qgelw*e2v)4H=*^LnN zc48@Ar$2M7aic$xls5k9(}}==K1t%J=Vk3rh@oZE@1IHap}&r78(ycZ#+y34kyveq0K2hYYQ!&@iSBxiwfo=t zNIEiTqSkp({S-4AI#qND*9WCxcjw{;J#&$olH>gXKbH<#SPZ_L=MTVj@XaRBQ3T=0 zWf}pf=^LDE!EF3>`Sn(`{y;}7Jl50AG*OAoJTVE{37#8WzTe!D1CM1P$-(p~vIoae z3ohh7LU)GcX9#4++mH;xJztB`BR=1d8bx%iy&>bD-_3CYlbuaXq68iWf8gqHb&<0j z88sXr^#%KBjP~)mnMGc|!6tR!;3I54CLK{K4I>-kj!;a(>nHfZe>go4TofmqMATGd zb-aSkW{kIi+6GrXDf-%8r3_MU+}b}01O=7|t5L0ONyA*@rw82PG;43wK)YZOAGa9q zvImqbNrh0v6+8HUZVk*NjSu4tM_?PuTY~Aris*zQhnQEZaXMkwx1;U%+0ZDR_yi;& zY@n=@D^IQo>>Tg#tB6E&1g!TqZj1n8O2y>@%C@<+Dpa(4Tb7U1w?6D6SZ~aZtST@4 zQ3%A&4VuO1gn%ml+j{)(?(C53`mf@n|Nf+Y=7!bVuEy~gBR6B^w`cLLmf-LA10`O} zH7_7p6%R3ceN@z3smhp2It*%D+P56?$_kMW%_q;xi7iRsafBM9{h`Nau(Hd zPkb8MB$Mioe?d-W--FtEqn*rsV+z1WK7F{ir$-@_jc(_DN5iu1s-b9$?25b-!+91u zpuTW4THX-$$5{8zDJVl$TOqoEjA(Px%3+p7_C44}VN285O-usUcmeH|bG8$+o&HJ? zz*av!n-ukkNxZOnZx!Z3fmvWUAMq!t?;}-ceGRQ^W4!2Ec|%z8?bM4lo9mP?@uYgJ zQ54zV{~Mq~{Wa^=c53G$sx=p=ywP75m+ZInKAd0&i>qv7)n?W|*IfwcpYRu~99AGl z*4ojZl4mm>3p5)XC-@bnwE}>zt7J}S=mMphC_tNIYM8QSyjBdej&dQERR>c%l{u}6 zv-UMWaC#!tyw@gc)WK3JI4e$*?LQMc7b}b7cX)};+gIA&ix&E2NVWQ7LQAnHcq48S zln)cR2e_s&5>;GJQYu3^hwX_iDT?%L1?|~@hi3Y%WfptOM>Y)ixXQE8nLr<{<4fpD6_7j_> zLl(c9GmIGrteR3?8g4LzJCud)y%wnTb3-yan%h( zfRN~JWviFz^t$ce<@Q;xr?-se%?BM_oZ-~TwiRrh%WF%PbzNo(3_uKOcFPbEGKRu;jyX3UPY* z6-~|hlB*nnL{kIUtQU6UHj`Jm2ze?FzqHRZ9Vs_{czW3U;XSVYi{iCn^YXy>+7*1d zcUvxee2ZZ#6SLHtUM4qmzxUM$C8G1>A!hdVt2duC^OdT`FT!`LV*_>CM!=g?8#-2_Ri}tu44B zteUbprITWIj6I!wB5v-YA4&FAt)aWLgM37cMRu*<$gL=U;tdKY)qlnCt6MWE5n`&I zwI^{zFYP$W+gI-qBw!cDfb=)Lm_9RJ!N-8Zb&dQ7aU@Dzd;(&MYQ+@JWwxF*Hdm+1 z79;qA)9JI5uxZLO*le<^HCOyd3bdS`fCq!);&Et4LMVg5fRy zBq+1EmK3%PO<51xSnl!cDBJ-(nc42M=`~ijgIISD-nN;vX7;89P1GeS46dFSdi%$8 zTyNu^)|HFIs?Q)q(5h`Y#4<$w_G@iX4UGvjgHdwWQldmd@ zATbi2c&*WAS0Wp=udCCcXA1?9W!G9d^=tQkS z6F{5nb5Tc^#}@pD?$tBWao1|1J7p|}tRNR1S*mqfH=LHEmPJt!3{0&naCpP4GdVNQF!Ryc#_hK?r76(o zeRM7v<>n>H=PvPuOn>(4;dXNUreo@rM8Z*Xn7 z!9*EjYVgYqxFzMNRcmYKxM)aJu@-`S`2xdk@|+G)hAE`Y(U?)#**m@Hi92z#$U36w zT?=E-XU6(kKNRW4K1@jL4;0;amTL2?Tgy|?YzoCEFy{!zD@rGsrN=*(*K3an$6e2N8>}%n=Gxd>*3fo zTY~Y8XmXp_7Frdr@wHZPT0(o@IU1Co#xyhy`c?;ZrkZNW`?R^+8b=?Gs{0!K?rG04 zT*OFZI%E8!7>oE$s)`z6pnq5}a?pN`F8#oq+J;>!N_a$8Xc(z|s6TsEl4Uq; z&KeXyf_`&yRuW!Wa*7F3mogCi+)e%Mq=vb8g|LftRq^u9>i<(j#%FhtgVDwRt|Mu# z>kheitu5R*`?0TWu-Yc_Ki}eRT?B@K-=7$|0gJG!3ELIqv$m}g)3Y7~{pXuYz)`pD z%bFkEFFU*s4DMn}r@P3VfjOaa@#8STrueoLv-k8crm&(o#o@tb){1=IIY)%vo558K zALmm0PRRo0$0-@^LIp;6Fu;} zg+W`l-AzobEE%EJ{2Y(dWI)5$?=eqf8si-es6t0*oWVz3NN&UeWa_oXK;4mO#1ev} ze=CiT?yav`-IlgTSn$L2e(+@giGW8v3P!Zm+J2i8LuOz(iw=He` z^o@d_H2zDP=}ONz@8t_4CF&cAb3z+P?O%=q*IhM_u;Mb?ul&t6L`1o& zbtPxkE5?6hAj)lWEYDCVZU2nk=XRa<&-GcKTsFLOVWXlGbVV)tj)h7lC zE4E;R8JqOaXEFYQRe)^;L{TH*e)Eyo;u0^7{=Z^KDAP=}<;si}D>HgqXPG)Klp&8~ z$dzQvqz$EQ18;2mmk6>PooAqiv4f4xerKM_B((wT9t0>pBaPuRr)pcl#|2l`H_!Te z&)Oq0NPE7apJrCcVz?X5^9IC30wj^=JiZ_7!3#~)zu8!|BoU)Q8wdKo^iBv}7zkXk zE>l4hi?7CNZu~OeQp(AMADMHmicEEn#(pK*m6E-wets4PRA%o;DfJ2}MLN|%-dC-7 zL0$SDaX}&(95Fu`WuKD%wdxR1wJF}>3~!4e(q+i5`*n}f=BFQDEJv?z6;`_Ul}YocS@6~Sye*9bEU30o*GoS?Nd_UaGr&$ACl z>0gn^fnqk(C1a0v;>dQRrSmIi-HL18#z;q#vlkOmqQ1qw(_9+n%nLpCaxee$ez#K& zlYd$?k=H=#r*30=2T?0%9D;BMmcl_qn1=~F%IN<9z+A+Q#`3jSVN5aGwM_qiJp9XS zMasXOS5>uJ>~s4>4Gmb;t3i))YPcOki*^Sq`1`!{e+u8;h+ggL2P3ebYDnoQ2_l2C-?QV>akFqPz(~e!TtF`~>;~z$AEEw8Dw_H$Ga?b0_)%6ohyB|R8+bIrB z8~xac*TCqWSJ90_w~pAW#t5Tli%HtQ4UIMsKe>o-%7mZliGw!=OuUF3tpyeGt|NRV ziYE3k{I2IOvrA}h3eNWSYacUZKg&^t`6))St6N-(=uO_HLU@&~}0=2sc& zP_9P@u8Sm#ePyWb1TFVmdh40PYty6E7Y{XoJWtjU5gER;d?>b~*tm!`lop=UEf+q&bzo zcLaDCYS3gNF09}5AjVC~5nX#~6HMhs^_AZ8xlV-S7&K9s4&;qa)g;YX(OZun61TlPIHc6ei-TJnJRj$L7!l$lmPhn%%4ci<`8m?QT(xjLlx+Ap50&VQbo zDmrJ6ct%L_a2~%oNxGU{!(O z-X;!1?a`x8xUjr-vh0|JqTZHkBSxmAW!7zGrIIJWuDA-e;-`eqp|nt0MOz10Ps+Xz zfHT@LHsOI7(FyEXz7!TmK(Efm!GHrLsCq2@Fx6*S+>{yxQqbB|-3ZElvWjQ^9XAmW ziYPqoRu{vXfGB$A=i^5fsnh?`@cFOr^EaVchOfjMLhX(j_p&aVKP25ouCc4KR%sF@ zYkq9yKdmubTbdI^XW`D5ps%~T>b5U;g@BFY)*0Fsu3N?uMDgSMq$>_5?BiVj-ts}e zTa?08d4XZ5Xu#pV_s9+GrMtNHyt~J`eKl*{F`!e%xXJjS!F{uDB7^byp;$W4WE)cK z^&;4lD9)b4E2C$90(%1gQatXx(P4Tg_6X>#N>LgPyE)l#_ArMG$5jD`SFeMhH=C&s z_47e?B%KYi5hHWVw=**t^fztDJ>vaNm@U?!M;vmV z25!7FuUZ9owW(-L`3wk9ZJIJ(uNqis%)(=~U-X-DF?EVv<*a9WtWjnhS6=w*yPJ(Y zW7bbh^#aXRq87)QgyIw(g6w>YnQ3%L#}BClC@T|Ze5Y#0S(eq#V69RUeps8+jyy#v zKxW)J1kTLMy#$ug*z`XCmpd7L!%XS$4xRj%+v}3on<#DW&Prb!R~xa9FVR;w@gJmA zE+VI|jhcJxN20@Qyu zIxpjmG&A{rGmDdJi#)p2yf=a}z6;10hntgL7Qs{dxYyxxHQz=DtAv1N{`^Re;qLgA zxs~|JX6dq)cQTG7S!ge0qJMSE%}$$>jm@@@5%rO&P1%F2z-;GQb4*#fy(q?;Js3r9 z2s8mQ8$1^hivW0<5GY_TI)k>GUd+rs&b<{7>mT5cM;em%6Fep(QGR6f0W%-C^3BU- zzT)AG$JA<>E}5)Nkp0LoWq3AAoBg_O9c_qeuWsIb42O7AM;GiJtaW!4sGp#{b|`!W z|IOG0KNOk&v`uhRf3h=$RF_#lU8w)-_pIMHgMWlj?z(=y0-;dkkwaepod6B-5c2 zwqw!$_vHO>==z_{`98d}!-E{$%FCzwrs!GeugP}GEN8EpEL7*W56Rt-;pX`s7p=x}mV+8%km-XuN4-R-mROOeK|br?5$965Dda z^fPwq12wDq=>^2?n3|2adUwBt0>yd zaSk#bqB8ZeAGuK469I7V37bNX_Qo%g&F+bo-T-{Rx?u&Y5Ucp=JR;e+#7(qJl$qnG zz%XmQ14bYQ>mQL(Ba!pT6*04eC@tf2uVT}1(t>SX=9NQ-&4oZjrK53{n`UHD$5iq= zIJvNb(kcAAH&f|H;CRxo?%r$3Gi09bE-^nUG>;nb?p6xe=v6uu-Z-o}3M6LPc+bzN zL44JXc=yVYmRVcH7t5^uy7^y&GcJ=hi+u9N4Wiv}pM=}$@yNZCuTJc$_f<~Z^*^Ub*} z0xZJWzCIYUq4=fB#jL1B zq0rZl1(O!Cw{+sdJE6ZqY2DsU8n!^Fx-@icZeZry{?U=DOVp#<+ykFzu%e;&?N|qT z{>%LrArQV=rhhE9W2atIvevdH|2H7IbTjEIt=7g`zO~V_wQBTllxBFP!}PBUl6`Lg zD*ZF~&;AEJUvBy(&Mr-GZXzLEbEV}PP z1dqfAYH7EhEO!#S11&|}<1K6u&@HtQJos9f64iZauTdG{Rc>(v{>zkbv;(n+^?4F` zYMuAW;2QE2|3!_}71%NDF)10`W|Q255d3#LY+x9c?b(h9dA)zEZM*YOg7&L6J?ct@>oT53kG42N#9)$&{UiMQ{C;5RP?2L?k&rm5jpWp- z-{)cS>zK9FUky<*LS~?Ew}+2c3wi#Kc>8Z=>xO?79_@o!9{R7jX?x%EA_)#W^Rbs% zGM$^9^Pq-!-#NQxaROu|Oog~nMh;nN-Et7k17NfNb|`X(8NrpmFO0tAqEH3IWozw| z1=R#qcS78{h^S^&P$=^c?c)+#7KNP$c52qdNgpt++fF4@1T~Vhv9q9B$<=6~B)%kR z39ysPLTdQPmMx&0%T}FB_m(a3eQ5~D;$VZ;Zh9dsIR~+5+OG9r3-@-BiS)^m&&~RK z`<_5IhBL~>XKvl?1)OCMK*6o2FS>3ZiqWvJtdaQka&-I4?iV$pnh~~r9A&QZTlPZa zyHJ6kx$%i?Hn*)!=#p(v&Klkr1UUNXCmDys4XcmHsRjzj43hWBKdx()H%RN*I zTl<_C#rDf-QXBOur^^YdU3D671U3q?vf>a`Op&9ep7xhuT-5jNOA{~Zt@CGoj`LtL z>rRzM|D5s|v-Q18QhOz^HtQy|Kl+cCDOY^dT4(>#zs&y_2Qc<8^S?Q=vO&v8!aUz` zUkksmS;o`4BDGiDxt`j~qXw^Xr}F`(SB3xtXa)w|Lb+z$$EqU*W^ z!Y>smgkNnjT7qku7}W7sy5+PI_3){Q$(nFqZz#nhp`NAf0*h=&icRr)PYd$LIEf<#F{8&sJZ?LdJ@& z=T5GaOJrFzCUF#%wAo5+hOGj6t9@sqeMj}YB5BNKS%V$Ugp}h+*qbI1#C#}2qJ!UJ z=bS87H-`>>*)aMrV5m`fz{1l=XSwRe*4yV@Wz0fg@$Iqk%gflRwunDNAu^Hp7ay=< zc&UJuHP*(n!td0DTV4@tng~}d#EGsnaWdL^%&EbcV_UIpz9*Xc%F;n5X;xE7BW|sj z^&un{1?z3fT0J$o3)bN7jQ6Gp;sv~U+d&2^dr(hljCXRW_YCH^1+~n=g*zIv*QrMeYClVvFl|rfj7toS<79 zcQ9jT;a?=h@FCB1ChV!3YPUZVn*JqHLVwb_v(hEg3noY@d`!_HsI7zE*cD8of)0s~ zq;qg-j=*lDI#&BwI|aDI6IPH`=e-{C`GT7cF}5p*<4qTM^LuGSSX17sXGP1?k=2mq zrgaV|G$ui-$K4Cg7My|BXWVtgsIIz9Ey|kiJuaD|IRxhkaQhJLMZC@RFetkYQ&n8q z`&lSS^+nF)gd%r`F^i$2`}5dIf+CXDNF%iSn(n~gFpz3Vf6}Xx%OO%kGOtcdkpbi=PR~GEznl=Lz!RQ^i{cH=zAb;rs zAqtM8J_Qz>Y#&};b;271r!>Mu1YSB$oZen^&zJxxZ*xYxWpnQy??uvPqq9R}hmbX4 zdZeXeD&nQ?VIp-M>ms$e=WS`>qfPDA?aA-k9k+I?K0CK>pC4jAN@0D`?EuuNJ+WTh zaja24CX2A{H-<+>Zx-%|U9ibeuV$+^p;2kU+CLGqv71?HX)1}S(ed-O?yqkZ!ktfe zZhbk%Yg?Kp4%Z1rVtXsb9|mYIv@O4qB>rP^6JbOfcUW@gtnIwtfbOgTx5u=`$(5aI z7MZZ5oQ-#*geb#w?Bxrznuw;U#^hGwvlSj6naH2aG zO&R+e)y+?Y7o2Ch(WdcDi;3UnDJ@(OjlNuGV$B+Es<^#umP1Rt0 zLHL{YwTTGGjAxGPG9EZ7`MGGO7PO+g`Gt3hw&jN=R?IE>BsANtT;8@Q1X;9NOjZ*W zqO!b^N*JtURi+K|EJ~Qy2J0T@0j_OD3cKQ>nT7y$+mt%or7thnOD>m=`ID$(C#~(e zCr2j#x6@9jly|ObJMCWUG$vhN*IcbgLe@gVC!b^`e5EZnsQ9oe=?l#!x)hT1R55U! zucMjk2n_;Esz@j_{bp#zTmw=> zEqZY_Kfo}Gx1fusu%H3Z?{fp9E^y=}Mnxt?(_J4|+H9vW^Z-jC;|b)PIur;DJwa~X zd6!CcV5KJ`YOK`vx`+4YsA)#MsUC3o(y_tKbPGf%CU~CpVf-5xtbg>+pf#GW>XWiO z@2DzZ$!b)I`tG;P>Te-j&6kt);~&E@AMdh~HuRDvjT?zc6Y*-U59QTW!Q00+Vdy6i z7@jm+=M@v&`tEA!4Xfp5D%8gu6s0Y+dsGLT+~cBdI@H%S>(g(gEw@XE(~5DdS6RwG zNc-F2k(yk6F=DOXh{bvWp(1|oY6b)~wnyJX!`|7JWKC_d^Ssuzn%7dhRTyd5cPxat zCEl)wG&OHqOl^_J9n>|Y8`7#WrP#;|am9M}aSbT9`j>Hs#5E@<1 z&Ph)Dh9RVt`1v8XHTXyePKA{`+F(>4pbaI6ydwB^LEJUM#m*vI#s0DP88i1YOvKc{ zySJwf^))i&0faU`C-A|3Leh3duvFKzp<*p`&qOmaY6)w^#6ibPw2}ee7ozpTdA^P! z+gFYSb|`G$j!S$tz~zB&E-LkzBLjT~`d({Y2iM*RlD{Qi;mWNr#D0R@!qe9W*NGuT z&fYw{qDV*9Gqm%4gBi8FHN&@A)~@rY{AdBPI&_;vegWCcj6RuXoa-1!TD9RGfDifZAEo`le_88W5(anRjx4{W*b$)dCvyJu16eq4PoDvnJo~tW7DBnzrgkW{iY` z)Av0$6_LJ0(x@jEE@u9T@Q_ldgB=o)U~KNzMx`G~b-^uDH+9WGfN`r{VM`S6WBWId zb>R~Tgr@wwoC5DtcQIYtqx>2dqnJP2(Y0MO2pVy^b z7GR3-)O1ib)l^2E&I$am1~#Y|7v}D*i|S>F{Kq%%)sw<3x_&RLjFJqs9ZjD0;b8uh zxV1d4ykNP+#LLznx#I@XuNEOHlc8Mg32)#=+IYQSDo$s*R;aL3YXqhM(bFG_{t4Os zjf1{>QuLQAGs7Whd&9_QfmMogs5a5`JZ-AnjEIBK(AS?PZfA$XW2 ze_TjG^k!58HCpRqE7i7^B=zcs z_o<|OZ1}wWwi&= znx(0>4=%UPXJ~gTqFY!>s~>HeUT?IF>0Ua-%($}6h%S``R5|pBSFC1u?ycOa9S!_U zqGtT*`lC?I=EW(nt124S-gNh5-e#nac>q}0eNEab3$)(AClb@_+oOHMqIhgCEnB~f zTlZ^;9E~}U8iD;j)%IO*68Ueks#>XPOH#QQ*Mi94sDtW`#cirq(2MM@U}+D-RDwvK z>0;_*RuT==7Aq}H1HaaguC5oTLtq-m;ruw4E9 zWKYuMvd7MuiX>J?yUzOm@F$|>4$_DkK$|HgY|i)FuSGk*#_KrNCf!r0R>lI6fkru6 z73fxX!XMh1)m!YKYK4OaN9p3To?YQUIiCO9J7-9~@YsrO_0$HSeNI*3xWiu4HlU`~ z>WAw;n90=!N+**`njAQJyFw9Hpbo0TZT{M0PS@-;g_yQ>EkDQ5j5(wYiX0VN&Du21 zIi*dq#DmAg$z?{em#2$YhX&y7eO&Oi_pp5A@@&~2vyt)Bh~nQ z6)TXUk^ECRHsedr#hd8|D2m%hFk#l28Xt1RyHHJ{;c?@wg`SP)Z=;!b42N&AW8>0* zhiiK&vV?U|Bu}Q2V^Ei%h{eQ$tQ-pUYu0n;-#n^!H#-Ab%}z}8vy9y&Kr_$!qpa${ z_sSoZ+3H0~LQMCqDF_EBc^ff5NkfJBS(+w-rQQyxsxXmVpk!p5niy3CFoABbp zg_Khp88?G6jLYl)22~{Xo~1O337IhonF)0RL#_3Nc~gvv9GgsZn`q$;Ch>#v9X_x* zsv7A$&SROWv>4AEB z=w&xWN{u@Cq-YIst;}z7VRSuYWwaz;JDAxw|MCJc>L>qjzg9NpxDw18x>YzqTM0GO zCUf|aRrhi zTD|F{ZcJJ$dA4z)s+9Gh#%Ro|1?w>SVe> z4%!Hz?UQP1<$P?8=wGUruY3_&6*k%8a;X&2bpq;cOX0e!Texu?WGu5=dwr6Xql{h_eWNjdnkf23_1rxjQQ$S4x zetO8Id!Agal+S4W>Y*wP;n6N@okLruMV_UK`yy#9?fu(n zuUHLkiPi7i6Z?Kl=PIBni)gwq!tW=5udfi#`{{*fiH6W^mZUbl-BoOQfMp#>ih7*Cn-&Pc}J+B&=h^;>S9jVJXUH&$yMy;?(of+Oxp z0Lvj&$SD4kvbKgbtAtE%FAz6NtT}dCu6chf6ngO#p1SZ${K{@!ErAl5hcB*OXlq5Z2U;#V7)N(--Ah+%f@OK=xPK}LsK*pb z@0bK_ax)n7yIYhjjLc?Pl+Mt5<8gDGywI4YSCG^w(QEv-nZ!4WLV>a@zm>yZo~UeX zkoz9wT+%VMeFVYb&m%^JF$&mrYHswPYjPX)NN8ntz1W*n&7s=f&gvSc&Es~SLDcV; zys+EuI}7n}^5^A_3lxV1e^d1!d0~3YSKsmV=79_>et&0OL23&n*Ow}*f>*H1&f-C8e5oo6 zL!=UKEai>jIq*^@^lTz;I0K9cL<3oyPM2%sb#N$N$_0&9NErM{f zF9g;S-$Ah);$VL>U4uD>K>60$#1PstD2(1+^3XxVRMk>!F7|;u1%+NA{IhQgk``bb zqfCVe@dQcgdz(t=+im*y@FnZ|IMD=mScgHlR^=y7)2repNN1lQV9*j&i2QP{b={tX zj{tB;Qho)1x3n9zW@~5lll;$6_Pv*m31Q7^vNdq7ai$?k4$pp1h4~qx40_%+hIwk(b(Wl4Vl=xt5ay#QK(AY?I3%|!HgmZ1QYR?LhL8v{# z2rh~p!o^0ablbQG7e8xy>OQPpz++s<8<)(si&za;qN?8N9 zC3gDuREy(vW{<){+TsOXKT2OK9&(U_SjBM% z%r{Ee@%@LRd4mSf-vHzI z|2=iF`e#$z^mIA55G^W}Tycj;*S+_JNNo?Gendt`P1Fi$)MO=+qdL28NZwC1 zNuTOczf3iuB=JlPfu;`dJ3~IptDT}Y_`=Nef9W?N_>PBEdPTIg*AAg$xs4(_eQIa1 zD=ZE@nRz2Z`nLDHvBO#_JUXLu+4Kk?`V1R$V#->7&9F`V@n!BwBHwK<-G6{X$jVxV zBN$gRZw)+A=3__c2f47E^?fX!v;v4CVyhRrY&L5P)_g64qM-*<{f)4J65xUCGu&jj zPcESSRhKvVKV45-y;eIRRV~D~lZxq4LznQhEZP;I;%XxWQyot~<&xd(la`SWRD5Aa zUc)%g_bmlf6isGtCFM-KO4W>@fJr4T?e;Q{{5SiWAlT!(U-TV9^h_3>P3)^7H1rlZ#lu`+aYd(n0`X!TU z4T%xSc0q@6H-CusEH=}k(%9$yWyz=6Sy6!%1@^~LQ80#^DTCjaQMSz%(yr-0sI%xw zjf-K1yq|A$G(w?WL#q|wE{^GfYvAw^09Jb4o`&eJ>?%<9qAdCQ?pO1ye?Ac~Qd)l^{T#df>U#Z^kgW`{3wroj8n zm>0TAG5phsTE^*6Pt(OTMWzMgA8FhudoizwUwxhwmZqW~4GnoCDT@Hd_6s%-ebhN~ zB1+oik~X!K68Me$uR^lj2FkJ-(2;DD?Z~XMA5Nzg9u_v_RjB;a zY}jTXqM%(hzg`y~B;oQXoBZ#f_T8gt0-f-t4!k!o?+45a!@Y=*0xp9` z=)7V&oJ)OM-f{a%KtF4~O?}W_kT(4SvY~%&*=5GcYcFn4SqHkn)kbB_uc;0MRJnz% zo`ReT%B@tLj@Z0pzILD`cA6Z-1@v$K_r}PR)Kh%6LDfS|!@A6q-`z6N-)cjwwi{jbm zgP}91s@XUy94QSpJt6yOjyDGw;Zrf9z2$*e$`NVwRQy73MFWUB!;4#g=Eh$8P4xpD zA$sRvy+AKt6XjA2IYwc`eV^yZs{GnBPwJoRF4T1knKRF6V~ce`F^Z3X<*MKl2kZn6 zvda$%0{`G;4{gvtrjkT2B8pd!Bz@h~?`kuQ zCEN0auTa>#U0~rSEW#2fZmpiGkT}EBXoGYkYXI@}aa6{@?=KwM(5-6aZn z5R3R2!C;TqM}3MWJ#HQTEYMW@4t6k~!i-L4W?#=`CCW}Oc7GjVEgiyYb+vAzmt4S1 ze%D@#aO0Hn(AbviIikb}DW2_pIt^~^Z^~Z3b=x%}yQZ~B)$6-InJUVGHZ6i2L*N_N zs@b=Hc4o3IhDusur{d@F!K?m;uv3t*h3I+lb|g(jRsnYC9eR0N-r^V4np+%o&0a`J zyy!0%M{t_jit&USl%SaWWN*XjhvSWj-9e>SHe!MjKQt3H4wQcevo=eA)}8akM4-zw zjQZoN;w>h(k$ZVt5K1F{ZOSdrD;TTDHDnFmMlR|{mc^j$;TaJo5C6)E3X9$S0AJoJ3yhxNKeT}K z*rX=Z-5`V=EW|p4*v2wMduPo#b_%YwUoN2p8sw7}zRk-l_6?)0T7fnfGY~Hg zLHgN22hBoihp?`ulG(;j+g6+M8nkNh1g3|nsL0&|ZGpW@20pZ<*r`A1f>BUtrhg5l zuMuz%k=cHIlE%~BT;P662yho!fD%iLMd5v#ThpDdx106Xt0qxQ6&nwMA@iOZlWLx+ z-(5XnZJMrkF`#XmZFZ?HKhuk}V3Tu_c%RjR1)|Md7*sFWz&pBJk|6Xjjl6_X8M_D) zB8*shx#G{o=_e@Q}MtMz==-ML1A%h0`$RzZ66r)1kn~#u8@&jWc+5~JzH=UiVsDEza?Uv)_?5c%Jk>|@FmFu4~X$pwFW&Av`%Nx`4Q&Y&R5_{aZ_PL(# z!_w@3o6Dr0N1aG1ZJPE8Q&fsDEjZT=#%`b0_9KgJaLqMK_6_?di8K6HEp1@x^dp@@ zc&0%F96h0&{>lM;buYmFFZHP}@qN1|+nO0r)HEtP)4&R`YQ<$E_qxsW{!BV(!L8|^ z&dBngeUb_b585XfEKJ08`f`0;g#0w%CU_|?_UX>o=NN$GzjJ^9c2ZU2a0rcI2XYV& zr<4GjI%1aBUpj}SAu^{g=9O&^UKjmzGEJ>b%KTo~#;>2xvx{VN>uacQQ;92GSi-9E zv*Uul#w^5{kGK1eA#nWva!@t4B&iT)o@a-@;!ouFrmpe~1VY|+=QAoWCFdr~A;U`j z9|HpI#oLOplos#BP|-uG6;N!*@pUQ+)S?WC7$oE%qQX10jo^^+IniJJ=L^B2P(n^n zw^f6Wt-jHAry$8`p00N9Uu8+a<7qG(yVBWiNGrT3S!rIAUsqZpnVCLw%8pPq@E7Qs z3B+Y<;`0<>$ZT`Ei6!JeWn-=at}h#J>T6Ej2dxmd5$GOZWm9NoVY7jcwPzpXoC--= znwy=DJ&O=kH;dd(gsp2s*|8V*Zi+gZhOc{Q@!5K&&@L$~lUZY78yDy$bB*Tw*}9hL z6~;}+(XpuVaM^kLDfSQy_n}j$d5BpEdJS>Tdp1mW$kB_ypI;*`??Pd}cWaWwdU(oU zkb_BKZq!G8Kuh!OV?gf7wR8uZZ=+-6hpv_UCB;<_| zz45nlB#+^ud+lwLem4a#fGBiO=HO=SB^|-f4PF3}<@VW%c6s#1Bly2Jly-Ie2i(2X z`DdcEvlH(4E9O?uTVp%MIRE0gAts@%^Gdeyw+XXnLKpkKB4jGc3){K9UVQ&I%YSX# zJMAd6wmSrnv?yZxg8K~olMbI+|Au}F6efD62f;Wftxa3(i*UK=#fKErUo~WQH@O_X ztQpE?*!oE6M}Uy)*9F%}qjGbjhZfAB{pi}Hf_B)gs3jwBLx(dF*ax||@F4aS4knDM z{%}x{B+_wPc23~0rIj{YF|+_GB*AK?>v!w`pg2`u9r>Rf|D+gopMi16lo6}iW0_#^ zbtC!~!LpQTI`L2#h zuhAS^{8VE81ji&=5pH>zTFp)yfYAl`EEskeROsvxu@Ty@-e&-gli20GnGXdM9d4R6 zpca2p)|C$LIZmV(W`MOXzaC1huLrHqUbb<$s1tWoAT&MPSfrET6*3#t5AHiSRRl<$ zg*zI_u^!+;8>3I#;qfv>BFDyfo5F5~Z9nefK1`~=Fgf^u`)Skblu>AmXu6T)Ab0Ep zD=+INPPo!Lq1?NKT)t8HverdiZf=-IRy50jAALZ|=;AcdT*eoB^kmK~eE+eG%ER%HJJ}Fij zlt~T%x3OD?`z3DujB6$e^q%~2n>lGq_S{cfjwv}320T$o@nRQR2%aKGUnCO@%gA;K zl9E5;a2;i0Zf%Qa(9+Acxy2E9((G5r_C5PplXrUkr(OBX<-lK@6bqTTy6qIxd$;RU z;F{H!l4AA2LMkSL*U|B;I{N8~(b=Tz*@EUPG|{ez%5AK((L%#nQRh>4O>dTmzEs3A zGL2EWhCHlbd?GQuuZxr%2N7$tmOf9sX+nP``6Fx7`(a(p=jxC9_x$fJ00(TpBacj* zI}UQ_7$Wudks>Wo0yDDYRX@oPsnXpf zNfKLP7B~Fk>Bi$>q?2z_dC{iD4kNk_RZ$Nhh}Z~x~EYAF-N z=q^kGJ83Z`)z}hp{8pDahIc?cXnX;3{TP5Y`Nvhu@krR(f&e*2Q*raw+ACEx-kzA8 zDKTZq6|)nBm;8*GTsS*?XjWFPS3)=(ve^csr@|k-dzPcXoihy)COdC^=~_ge)uSY6 zbn|S-FC(ITGKqcuo$H4`Cw-d4=*^Al6nE`)cRDpeEs9pF38YX(vG-%U@N zMJ(yAv+r6PQP_s5sb8pTL9IWuZSONT)#vA2fzYw^ije3)moVEn&DE8UZkg2oa-4NA zA$$r@!_%$h(XW8RsyqN)^PWCsqXV3PF zd?7}xOISws$+g3Fcn5yQqGh9%(Ww(Y-^TilYQn@i?n zyOA3|2q1m=kOWCbO3v5i3VL%eiBH!ek-I=FZ^Dq@mu3ABXe|q#co>>88m*_)T=5sl z%Ag0CPgm_jw=y3Ce~_s6mW$AY#eV$JCsC`Ynwo+Z^+Im*?FTx6l+g)}#>lwHPVtfH z5R^NHTl|dlQ;4s5EH1NbnGheSd7BNr~C^9q|vcI00|Ijxj+6K`7f)e|D`RO3S1 zo*Ohqje5jFvAe>EOA@$eaSRZ#w*uN=x zYE|JSlo8@e%Fv<38Y}UdH$(85=U&uSvGInczi8{~q9%c!@@HWoDmx8H9;Bq(LSn=w z_)l~G?srf;J<=dO?lU9B_RZ}=U)PTgiVv@SW>y7hLy^)ScooXhmnIkf=t?yr)($|| zu4#O|SHvG(4m|{bKk*_*IovZ(!5O=?84;M#o#jBItvA+Q9t$B4L1WN+(ojjZ({|HX zm9}jyqkpW*#+(1YFS>t8lmD5zv6ninC&uL7`+m)ykY+mjvkL#ThF}(^XV2aL>p z4<@@JBWO(p=ZXP_lR-1s#htYo)y4{<-Xwlpwgmx~B+6ed@wNg7<&9N6#rEOK>2yku z-f8i*0^ix+F`st!pbI-9d8aVT1#(Lze4nVXIwV)fy*rk)Y)qs#51ejW{ACA7~$^mSw zexV$bi44z(gz02^Vy3x0B4|)3O!M%J&5pc6|k;)HZLi2dj=Iao=sSPuvOszN#whZCBc?{ z{L@c;wK!Wcikmpq?)fELb1Ao_{%z_N+8p2Cyq5oZkJV?`8n5EiWaXJzd(u!JFf8j# zCcISmpUPX-2-HR}IIPHGLG;AVDy<>=V2#b(x3k|J(1QOXpelHLHCQyF{yJ^V5d*KyM6G(ddP&9f!`n5AZ&DYf=*LcS9cB+j+GVVSl zxpTGu>4(Rw!C{bmH#c@(6g4iHk~H(e3Cra8QzXeI5PY}^FH6tVDgUWU0~_R0nR9)4tW{$T2YeTay^RoZAJ!jRCOd0Xp`uiY(_KlS}c@j-t;>;IoGt&v4B) zZXu&>`Y%6phsgRnZ(k3EUqnrq1)X|={yGONHSnX>fYwKyV5dS+)=Zw+=1&XRprQP> z^?N821I3apG@wjN;kc>pv_wOm)jd%=f2;n6;psAyEZYDpI+?TuuWZu9Pl3eR=9SeW zPo}hwe3rl%rZQ^~wwnR}EnIG8pVEsyV$>AizKZ;@`Q*;uBdhj~Ne1zQzYqNX8|MES zyrow<@qw@nQ0vidk6$N`;<^M`A9)@h^MU?yE0?%|-Zt7KZ(i)-Kk1LP>Fwj9xbT{t zB(hF?IMQ#8yYw3BKa5P27hcrAjQw>?+>zSoM9v?2Bl>_I?FUrRy4x4cvuzD3+y4mA zaO+XFch=61nAxGPgz2H|P`%aJIoc6)@G1^@lO+qpP7f_Tjf>rwWUMqO?a3HmQ>~yMVD{#?YH!gM@uC4iUUJq?%B06B!9BG;AEW zr~N%wed6KpIrt zO?<{F;k=lE%{kNmBs<4$$~qbFug&9rgrg{?vS%q9Rc*+P>l;S*E&D6EyvN4HZCP1J zw=?Cm8a70 znr+aFVlVGBY*q~<4!$%#@&w!*htht7tc%tcLL(NW#=t5>y5O>aCh|XDvpK(itIeN# zO$?6X*fWY;e70xrsiaQJW8bA!RE+8q<-50r^k=_|hYi44( z?eQYpEL@G-g7WgL*MnJGmc*9!6T)}(X-Ys%5mSE;BHJG*wAlmw{^bKnXSc+%^Lcf^ zMl)$v@}H!!0@|YT1t7kV^vxvz3bIg;VFU@uP396Qy+yzyyFR&YGs3qT( z4?vOWPE2dalVO4s8_@B!>SJI}bp&)!_Cbr}r_IY5XUNc?Or6qg(ea$3ka>4TRTMj` zjJm6g<5_sI5sld<8Po15mA3i`ray91$7hR>8Pg%ovbyrsmmB*7qvM@F>{rw^u+K!a zb5Fai2K$F!0O&NTw*!d$D9#LO8Ku7DgjoH>#O2dg81x;mXq+Cs^Aup)v+KamfwB1A zG|?xMIH?Mb!!G4>is(a4@{Z3Zaf=!&5q?7Rf;e*vHmv z70b5jjvFXb>m&vvC3W=vxK9Rwp)#XIveFU5&_z_+=+g9Gha{$*90%z`9XIrEjmz{y z=o6(kz2mF1EK=3jPf?I)4?`3}{z@QzdYgmQ3+RO6pB0-~Gi!Ec7vOFVZ$>KMNsbAh zhmthvoD=*Pi2CD%7cBH|#cuYrs9LqsFzHi2m0uykgV8@1FuYQl;XU@RMug|2k0 z{-p?AnWq0gORn|@g(m!6*7klltT!ehf9uy}tv{P`5xw5U*& z4;z6_^KZH8&s`WRER2|Zf6>x!u=@B-@FuNkD77kVyAaJ)cz1nM}xz~~Iz8Z5BU zr^sZVrNDB63S4L7EQySp>^yo9(0R6YJDLSTx{R)tRR>-)=mG_28pIM4zGcuv!f)+cZ^KgcJc+3Nz7^8&aIIBzythS+-Au=?j$gsst&ljMzc zS?%MM&ol3qQp=9Vq~q7Co116fV8*#bA;d-98XeqY&k?v}>Ce4PoVO z>7-H_znrT!nIOn6oN8#}e??)0$tSZE4J|Roj3bJT}ImggkbzZlsxD{N|_Fc9z z7HQ*y*H5Ko!>)}l+G809lB<~qR(+h!%9?af1HWpMFpRh|9$FoD(s{ry~-cJYpJnf47ysrOKF~^yI7+fW4kIL zE#gB7R}FxQb&)#91CCPIKEd62iT^KBaheId?KbIeE*=07b`qOn0#3(I!r`X?P;OdP zF;1?4ytwTSiTPtx!p#a70ysy<8vm8x$2jTX|2IPXcbeYnC*%S;3bnl+F~69cTbSfM zua;{+pfXw8yh^lBYjl>T!=ekVq@!9$o9_Xpe z3v+iVNc9A3gc;;jdq_gUjmOZAp3^7bO7l;Kh&R|7DTLm6mU+nf>rT+GYWX`@WWSAS z_gPxUFPWsas&}BvA+^@#Io3*>iwo;POh%NTgU|YJ0&cz-ZLx!_*$7J-`J540UMhK6 zy-;Jgv5PXb>ayEq?NhXF^UnM$2Ixp|p zt*&-RD$SHU=bi~kpw@6bMF*T?Jga~Q(t%_GN_!@gGCLC{`k!`4YgdK?qxobbR$#u4 zqBleTcsNQu2%rvElBwTYwn-1u&sMopjZ=XFtuG#`?A@$A((8>p`tAneF+S53l3?Pk zO)?5~e6TF?gyt%V_uX++hieJ{O@#{zb*V0jy&@{a>>0i~)K>}a=XM}Eydgndca5CT z^oSFTFYIs+ofJCmD_@0JFy0Zni;Qr!Clj0VqH>vsBsvjIADNTEZc-L8GZ4Saa--8I z)8)e)+zs7$Jj5x^>$W%l2ln}iz{r4?Ny&z7icDwdL9@v9pwcMOqo_9$ffm&TZah|x zRJI{{uU7LVj#)~5!tke!;OJ=fW@qxiwVJunYUH_P3oA`W*6*8a$GSoYNtFivU?4uo z%H?STKW!c5P*vhmhtCPrkC098&@fNc*OF!abD-R9&Nb^2_tPSz*vO3Duk1b>IDC@f z-{)S8JGwONil{MeV7r;PpjRDGMa19oC|_1i_=d2LZQLzQ5FN~QAAQ5}7U#RYa*oCJ zK9xPlwGLStt=4t2%N}u3FzuTI@VK6C$sS+2uT6NljVC1Gp}kmHxp6j0ou1Vr;Hu~p zPLJ0IAIKu_yFIN&iMM-LMt%#tIZ)bH>YDq|&pvsy%{RTEjvSRn0O^1x4tR z?gVFoXm4y%rV?WJmcWh*v_xN)v({{)emCvWx^*roMEifB-|cGap5u&vy_dImtOc)2 z)BO4YpfB2tpVl^-Wd=ebk2NL``f?~Tu;RbpLX1$UOu(?z7l_ra52yO8NBG$GF@O~D z(}%M)I9g#VlVXH|-7#xi9ixWBn6+H2CDDO-AUKYOQ(gpCNXOnp#nrT|NR@C~@#0HZ zVOeuNSy7uwjp;Y2ge9m!uo)70e-5B#AYAvN3wC`;R~EY1&vVA9lawB^@3c@UTeh= z=a7`*qGF6@2@f?@%qo1NP%Yg3goQRc!3!*Vt2@8V25GJN6=JmZY1|nXk%3^S#3nSG zafLIRIEI87=D36u-Ltkth%EL%xZjAU4Rbf%HNkTFB)j6eX@4dk0iuFfir@FT{lR0L zN?O#I$B%ZGlMx4jeoImH9~AJ?G*|zGxq~4qM#clQU{{T8(u)8ma8VwKoZVmKMqn3M z|6th+xi);#nI6CBsMFuno31xOx|GXY{dq46HAG-&o$d{*j{~x3{c)OIVKRY$|cS>ScSC;prG$D7^ zBNu`5K5^D1CStGij1Jj;Vh)9v3zDzfLt;_MN1iAa!1dF)!2bNMYlKzyev|3j z7bmZTba8m}KI8K-bR1*!qrThZPd0hLviF^bBZW=Id5Dje=CbH4Y*7Mkl@$mJH5tC& zoCb0S|Iu=PlrtMt(j*NgN3CAXc1Z7pLNa@FD||(YV_zc>nYM8gT zQY@zTb^yeBA@ani&up3z*R;|mG%4#C6g&3Xx^$yIalw=fyei%0jzC$bg=fo+(GMW1 z@xtg|fwbYr&1t<@Ph;_^*rxc0$rN#m^H7dML5BKN4kW}fv+|^jZMHub$bfMa!53%H z5hD<^Hq(r{4+wFN4(238e%;??7FueAc&J-QF&fhipUXzm((??B@$}eV_6iasdcyq^ zdQ4jFHls_8G8}#pet=ZLm4_CKe6vT~n{Dj!X`oaZ4;9IK+(x=#BVNcwn=uGB2jFZj zR;M+Av7Vr(v*I{AYTfUch1P<`8_9VjV++ad)LR}Kz7Ss>bd7qxoup9OynXHk%gP#Q zVS5$kUoHcuH})^?Zfav>1^A>LOR>g}=6yZ)nXKAyLUKn-?m6C2IR3Rvy3mN!N_^6c z;JudUw-;lHN>q+{in=O*O44H?j0($O4|U?C_Y|GS@eXu<|8 z%yTU+;ga(hUwLzlvqxK7)~0)!=JE(6)!NY3#{BHPS&Yg5$JU!iC7t*0|I=79bEi_{ zG-{}1md=djlD9j;G)`J$>D@S`C5lRB#4<^t{; zf(a;sAdBFS`TWlBoZt8Ue$M+p&XEI0Ua$B2bzRrvdcNt*`U4&Qxo-i^ZqoXG_vt>i zH0vbLM>exTWk*^?VbOAqLsMt>vAyhnM~`HolR;;d(yuXvvEKllFkLBKd5XIlRAtbR zbDsW2XCgGUn`Yzc2FJv_3H{I(YN}PtHbUCZg|cwK7eG>Tr%FfxbVv%k6^1sU`_mXs zLCsC8714c`0UYHYO=6X0(T%$fx$j1?tS>xGc+h>PCcB;TJnbBQ=E;&8rbg4Tp_o;Rh|s^|5T2BZt;tVpZs#W&Jud&t)*@t$V~0KAQ0BdvWGmNyzLSd~H=Ebs!*$rOqpJDm&cMgB zPE&W6K)$BJ1ATin)ouJ6k&8y^$w9g+nGEafYib2p%P(z{K0e3;9^Z1qBf}J`Za(k1 zK*<+*w%}VQbbKsh-k^TL+l@6c^V@AGRVTn zQ1bxp^q=~xI(@q@u%VFyZdFpI+VSS^R=F+-mKh{V6P=xxZPQ*M8dr;L-f+m5eV6Nu zCvuKrKYJ+sg*VrHm-EQZA35f*vuENAeOzSSAszf?SIXhc>_;g<{L8aW*O1hqCqh|^ zi9RYUVv#=-YCel@4>5#@w<|G|1+0TmqA&lES)3Ka2NcWhNxVC+Ytx819UW!F9QNc{ z$bNWPHIP8Ltb@FSt`<(4s)PIZzpK)Y+PLZ(80REVxRznFOmNg?V)C&~if-xVErfh9 zI9%vy+a#ag>)?GfHJB{pdlG6VhVE+_Lg(Y>F*9`Ywkkj66T5~ZW>?<>c*19KJuBI_ zfU_wybXkzI;LNHauPjNKw3!syxaOgjPDWbp(UzJ>vad2o;<1B6gZFnE84Y;4S&n;(a|# zu@onIwQwh;afZ;~#+7G?|0;(z_|+|QeA^|>0*cv82vr#-r<_~3wXjwj0w)=e$C<+aZ@_xq0*+bZe!(t@SWx< z8rCim3!Zx&(R(O0GLhr93+hukCWlEm3IpU0U6JP3iB>!Vrc`1+Z%%XA1pSW|du{hb z_pf||8-Zy@QDTqdv&>d&-zA8>vfviACbMgTt#ysrCaZaXqEB;!7y%JZlRCdz^ zYL62w8dCxUR6D%cygd1|WMm?_0-)7*!`oF?BkG)f{i=d$cAbm-OF|-AnbR1exAEyXPti+vT zR5+k6?|fwfKJ?resd`8&;f-oIa7d(a$2t(fO7sm#>lc{S^gCrweEE_Z=moe%@$II5 z^Fz9;zM_`Yh#$D*Oh4+6WXevO?EEKa>0IsM8IGwf7Vc}MU!8_Nx#CFEcc6>9{jDZk zOO+=|q%jv^cQH?*dv0_t0*DMyxJ)fFK1MQ)OJZsX=eAEC)J zKbST}CJB9cy%zHy{W0Ru=>~do=Zw6MU$Xry4H(g95D&*lhY*tyJ}KmPI%$B{ z5Yi9%Yzu2Ni9B@H-^Zxqy>L~Pqq^Ak#b7?Z4X=+G_`2MJrYn3glz+{z&aCGgR@#%< z@As7E{}CBdrk{(?QM@+7^;}JMXch9iGaV7Pg3`#2*lt{V2eapz^9bpE>?l_IJu zx=?m5skBam{_uHc%>mmxXW!l2uFBnwyu9+rb20<>nU0$C;zKa3U)*h^**33zXCnN_~6{h=-V(xC7+JSl6buFwpL704b`BYc-vb%BWVkrWjIboV`SAg1kPA>}~Y+ISuWlr{Bw_ZjdVhUj5o?Cqs`<#H> zwuo!MxKK|m?i$l{Qc)7!8~qmmp6rLzO6_YC9Q~kQ2aiM#n~G+=B}N0mRMs1)3l%!x z0!A$tM89!zpmex0fV+I~j5WcTV=c@tksG{6V5nm`cNW?=oOqtF?eZ)_B7CQl-f)mA z#kMY7-r)?ax>J$a=s>5%k80B_QSl66cZ$T*X78QDY+~le;+i>Hyylc7IBmzxE&@&J z;0*e)gCjc7LM*q-A5L$Sa64j}pqG@zxV=YX9+(hV$J)8RMrZNt%cSi#;S3wLBaQ23 z!xplWMl)sl7VyoKJ=LR6GS)VJOUELDU54_IPq3Yd#8u7Wn-)KJMoaBv?$j$z)kpmw z8!lX}zCJtYLp>{BD%SbT?$-78W} zD`q!lTC}`r--zv;q9)Ih!Z%wt=1@^7%^tdSuR7LR0F5oO? z^JzVcK@26MInY7Qzo3gtHn6+Dv~RX|KcycRP_l1mX4g4+`mO(?Wo|mHDijAyEvh^u zd!7Y*m*SD8z>aHPy>E&wEbi4xZ zg&C~&08)*^S%R$wFb5VrF!T~z@h8y25Pev+t#Ahk{-Zfk?IMZML_GHu(PEZ)r4Lbd z&X!f5FJT;{WYA~0nsKod*{OF9o}PWOh76b1(93cj#0{Bt7Qa#y_3sWh>|-wtIk{x@ zPi^0gzHx&zYedqn?{bjpRX5(^A=-h^Gl&jXc|(UEiq72|DO+g4fT>8QgQ&D47P8gy6~Xvzh6~JKr<)&WKKb_sR?*=Us-8)J z;-_-RS3Gv01jWt!$pbI_Ly6A+hAG~$)ra8kFZB`H|IyzG?Ko}n|DsFy^6uF|?h9P) z!{-kLj`e}ggw6UyTmPtK7}4K$cH4Cj=f4KoUkzLpnq=EAKX^V~+>Bk*r0kx_$DiZM z7ByfoCzF4j{C>0GG;)cU?Fn5pX^if<*W`)MJ$ld?e2bi?v?ls0@9L12L#cvw_gSu$ z5XwFL(o?KnZ1KI^-q5}PW;HOD^eE{NdDNbHpJ`a@5!AmjTGVxHJwOlhZ@|j$s$`Ks z1tfugwWnS72w&`z`^z8t8T6jV3X|eoo6UK7a(i>I*9JyZA~$P zH76<^06MYPJ7y25`Lij_s1Zk4| z3$39U(R%fs@8Syy?O%jwP+0k}bL-G1+oK7%^~xUW#tpdVim3(06#ON*5N^|`KUKLMXqb!|g2U5>FBv-Evo^{+hXo?D z>EZ>!>#`NHIK>A;`@9(n+K56TT6Oj+Q|7Z12T{{@M9EF3%{JjQD%0U34uy=yZ zN#Qh2ujC|ufOLjHIoEh1BJ6o-EUS>Wy%&Ami8W;r);gOq@L1L-92zyqxjemfcBf4}(!Voq zSSTl&ua?^_BvJIj$Bb=9RC{p^UQ;J7{79NV5p)D;F50C*3p?vRE=`nEeUTLPm7`WU z0WQOxW@I;>fiM8v%8G8E$NrEGM0Zz%6MGjsLRjq? zn9as`g#4Uvzil7aAP)OzIFm62V`=w6j+b`?#AvvdT75|=V*cX&{HB;R*F@#t388K zgo}}leVyEBUe(@Kcicx8E$-e|e;Xb6fz@v{hmbyBFyBYMq#5q-uAD02^m%eF!AFYbHe1}5X zMF(IlPpT8z(1O>X2>Z5Fo2PA*w{}SWafYy4;1d=#;EUY)!q%aSedz@0IO{{gDKN_R zJ6)`3%+0`%q-VCs?7E5`ZT}o>h>ZzyY0JIoq2U(kqi0Nc#~SC54N={+0)eingC0m5 zVOi6zR5ig~*2fkYyCn!RI+G_K)zt;pEKdQK8?I$KOuMs=ki0@vqe*H#Hcs=AoN#AJ z5ka3(&~%kUHg^SQvxb^G&QE&7?5hqcTP6jAU;7uUA|<#iDP*V4nDN>A%Y_00Nt32ev9|t!?U4>RqAHv0X$=bS|j7iV(r zUou43WwoDIIbum~%k(LBI_sZ+=9KMj$AR$CSYu8Ad`H8I3fWT=BDQ4U6gg}J5%W!m zRItix&Id2V&4f3Jd69@QdDJ|PYMd3<)H>I$7-Ks(60LojyE^&77F;0~F6p%pZ%u$Y zZJMmUpj|%=QhL=IZQtK&vh(Bp4r3)#q9jXh@8yQr&W@|wYY|SfFL_N1$p)=-e~c)< zg#VwNxs9kDin|Z<1rct)NuTqce>o$07Keygj_lr{<(1PCJZeVMC_kr#IU;@gNJt&O*xGeB~@Lpz1PM=mj7rCTgnm!lY7r?gog` zGl-%(R{|Z|e~Q;?6ZW_+{_5lybV}Te0b)w~p31eHRn%VA1w+AW12F0ax9k`(C3={+ zgE&2S&_nrpM&&{wJBV8q&VAqrjF+&tPkH}bZK_>UVQk!`F%!?ppvdm7v*5Oy&#Va~ z)jc=Dzg%QhMrw|jh%g@r*Qljh+t!34l@C(gE;w;Q3);3NW{dPiXfWb%ARhRszNe^T9heJ)y3Ym4lDo-<21l4hX4g(3v# z{jVH)AwuKN0eCzbggMATdF@gzrh9Sk6&zCNL~d^)0Hy8 z#s^}C^uuQ<_q)6_u7}XD4!fSbQSV?hm{oNs9x7zTN>9+1fu_$+5+>JsZ)#EnyS%g3fN zuWJ`1u1tZ&rxl66CS;8cJcZVJmD@b3^a=l|x*HzTUSWy}*8E(qX=qPLJTNc%Hcv(H zRXHMsWOX|wD{{C;*Ub=<2Gp;*K&b(~{jn1w{>H${jr3MaJ!0p(wy&gXX%P@g)a-P} zm+naesW~<`!HYxoEK^Ft_^a`T*WN!&9>bCHv>WSmC87B#zRAnh*;bIN_-H|iI|$gf z_1u&aQf5{11LINEfPaxToTRl_w+glLW_@c3tv#+K9V}!wND`g9vJsSY?c9)yIypq= z#g@mUyN?(3hQP&~ujYO5)*Tkc1*VOvlM3`fAaynaNo8!YXZe9GZqTPc5lJ-qf9gr2p#iZ*g)qT>UdWhh9T4)7z)F+DF5P28?og8K`Y7T}z3hjf0 zhMP|w2lidhckBbhlTJS}uQY7-qS4VohEi@wlZw_G<8e_`9tpeiaEjOfS^mN8{ShU-M=_vT8Y0pE&V}n*h!Hj@rLNTS1>Xq?H0~JToA{WbKi~V zSgNWNeSY0QT5ccTIpUM}7QE78+7e!CMv2L(4LKw?p*DP~sUa*>o-V@Se3nO-0#cUA zjJEERIdMt$k4@n$nmg5HQvVYoN>CX*066SLJUpzI=fh`;44vht%bHo~n(*m6i1F@M zV4GZ!kkR{KNwz8a%OPlSrLB=$?qK2?fgRX)0lad@o2Z+>MVsnD7eVqw&3ZsrqXKg~_R2c#YH+T3z3BtFhzapZfs??Cx zp^hZz8gp+Gzg`m*88=>Nj8vgf{&y!~&pMKPE$c4*x1M>?K+^a5o?Wf0Fx@or@AXTM zbt4~sB-Pz_hei5SmO36G=_OFw-#v@ZQ9{;UvCm6daeP7B>dq%KMVx(f>g9;9VsqWODhcRrD2*V zo3I}qumHIAB-MU}jLaBHIF;QIpfU}ZkL5i@8Jg*6`hL(E@v~pU1ov%Vlxt0nvky{d z06ojygOvnFX*SO+f%!_wtaX(iH+4(;bhGMxD!H?!q5W3^_ItNW!?|kulLgTaR4k)* zQ@twJ z^s*(6=qD{?CCI&<`Z9z!zDBm@icQh_#lYqk&yPIs$@36Yx4$qKx^w%)FeC{;~nJdIr-o;t+c8a+j}EoLvJ~G<*k|h`?<|l%uIMb zMg-}nhG7AfKeVp4VSM(id=^m41vl-;@!l`nn>?RDWx~LDf84=vVZIo47oC;)nHGuGJ_(>Y125^_H*A7vkjw_ zX|wb1%(RDW$J?q^X#PVtMZ?xnOUY+Uz)>;mOfrf=m z%{^<#h@SMkB+*-)&Ud`{k4oM|U*~r|O{j2N*q!0fKj8XV2TTyhyL>SKe-Db--B-0Z zgah_LRmJFV!S<$S`tD&&mycFhLub&cWuqImVgSvjoCFBF%XAgpS201|6;4;#8P%++ zk(M{DHQLbwPVy7}d&5IM=*=$x^wV@51Fam{As3_93E}!YqmJ|b#40Bt=h;%4ekt7* zB6+kOjW>V=P0U+`boP)VEvm9!+G2kL5G_!@HhB9d-X<2foKa6~s01OL6$M`X?xjAg z2b#_b=JGCk^Lybt;dWE0ZQt);er8AZVQ_K{fbvC-rXd}ypXeXbRp%kP{?%1;3ahf3 zZ7sR}QkOj{ELw#0^*s8Yuw0W|r?ia;Z;F@`S0@G)|KDU)6ezx{xVTMK5c9pL4rDea zW(^iMk9WV>DXv>mrx)AvXU8XS`zXJ{67E2$*4{{OElWm5{)dr}U-#%E?yyT01`)_Y zYhbO4PqDE}YRFk#aZ#@uc!Fd*460eI)D?$t_3}X*-;$~?cv#9FSb0zfR@J_X2^ij+ z^0Z$cfp#!L^|_MAnMpRCRBJ8>@vr9~U#OvDvk7A{nouzmnLQb99uqx&lZ#C-i5I71 zw+9mNxphegJSX>4XWzN1LSsRdK=?NRpmNHcn#w&AJ(XF8ldPm!Bo6?tTDjGVKfwK5 zYNzt2O_2%v5nx?wZlI_sBNA;?=$9b|c%b?q%qVsSSp*Z=nOy0k1_S&>@yAC_X4W6eEBDmiP_-%&( zo~+cQK3j~GeVwr|Q5+wE*pty)Idhxn9bZYcf1T{R#@3qV&_1s;8~-HHQ$&2Ld~i+% z0skZIl|J44H@lAdgr}7hu`;5PHcd(N$IN|g`rgez`Th4TaO~(go(&Nl+sbvxk7%F?+AO{G-<3}{ z1Y6wXHqGY1$y^;>tPd=VWG=NCZeK0?n1iI$&>I|80OX^Tn48YbSDmU-8oeep9FWw% zqliq2Oc@v;*8Z}sO}>5|1<(NNY5UgLC6+eDv%XBX@3GS=fV(?zE81i?%0A=fuzHvc z-5EICF5z&kKWw#ZWLWm+B`sdhxi{TD4=xyT_FG&nZdm3Nz?o;*kd(!K&e4`wZMAL- zIgU4JUuYMCB0r@^vZ}o=iUMH__uV4`s}6Jp`Kf7xZ-1|dp}_#I4*M_FF&wfCGw ze7i*F8^-h-HC=P~X9YK13who3zr+<9y#O^c34XrytWhDz@K#^M-vXnr?0%C541)e0 z*|PKnd8E{CYK@<`!pu4XeBVx5PPbd>Ctt=VuMY>h&w-r7uk-OL1)s=M1q z4jFcLOoU)|z1> zMnkuo{xAL%M!VFcM)Gi9<~@MgRU;3m?kM%}DLAu;^EySm53>6e^vIZLI?z%USXsx@ z(RJv01&l)>wVZ`xCh8ucwE253wZXH6v5o4Y)J%um9O%Hc9SgW~=f2HmU^;MxMcUNw z8=mrEh)}>lmyEom4{lWs0{)1zwXkK?0XOHk_WZG88xGC{lre^L^XjUNlHL&{71meZ z599$46&e$LSN;H$D1I@`Z-c&|H^dQ-y1=q2^(Lwm&sve0D_H(DI60%O$CaB>8e-0g zhD>H+Yu&iBk(23jjHodrCxD85r!HIdKLf+|1`LH-LWYAc^7V8|868z>t+$A|+8zD` z{6Rq7qxX9MB=FWUwzi&|)SQ$Jl02S(OhZ_IlwE&Ftg=-9WpkPtp2Z7H2$fg>Vz4L-Vo>tDC8?(Dg@GKn4I9!Y&p z({D?!#!7GtdrKrx-N>JHFEkA>W%0{Ds#n=sjz3CNNsg)=7j`WN^Ck2T#WA3xysj)i zb{++S%=(9nJFFXb+Aq_Oj?NKSIL&M?PiVtlX$SK=wGe+o*D=ZsjdZL?FO#=(c=0fn zLBHl5Q)J;|8MT7c)FV4GSI_$eokzS?gLdj>cE?#U98Liq%^i zOegJ!tzAEri-8fHhSMPItTvvfgS40KP1=i=3LuKmkxwFR583kJs@Qchd;?(lmHmo! zoL^~unJOB>RkKGfTI7fZ(y~veJ9qj&Hx57{o`om_@MPV6NToyB2o+kFmvg^t*=D~X zYrSlrN^$;EzlNZKSktsjc*BLB;zLd^PA9F=Q?RQk8#@DgyuY=b%Jn79I=nw2<6n9% zSdcF}^|hE#o~V`13X3XJSg#4TcN3pTM+t9>(@Mr4u@RzuJDJCKkH+}>FI+v-zSdUl z2>?|x!EPbu zUMj$fkgRRTSl7HJGJ4uLxDO0r;c9dN1{#lTF{A%1LA3F&nl^TI0{p61`1<4*IHlm4 znt1q09b-7Z&St3cbmaYO?su(v)ZF}{ELti6Y^Y^6+R`m@d_)IJ=`JJn7fKiNfZ{DH zbJgmW|I47FE-TGIE9Sc~gLEKvEWNC5^ucLBGXE-=J9(RzX~}Y8rCowi!F`OwlP1EU zmUo`k+hKb*iM1dCcEn~&lzN^@@<7(Dc{$siNm*`5jtN@X{WaBz=D@1GhQsV@wFy8O zIt4)}63|Ripk|?Q&J`zc85wCA!R_e6*U-kvsQwV=fxt^D zNb`KybVj&7ciV#V2f!*MHcT=B4eV3L!5NS6#{V=&C0j47<4O%fMgo4!u`tfcvl*z) zX>r@R!gAMOP325xjfiemEduQ%jycuh12aC!dJDK7)KQW>eA9%eMVJ&UB~dI^4aN>gThD)rSdA2zpM0Jn4cF?t*3P?c7te}fxyD{ zw%r~#=wydtCG^?MTZ+4RNArv%LDC@?Z;6USEL>UIVRd+t~Ege3gU@Y1k9-JfRP2NFlS-MinzdNt5X?f#n3gpS;Q$F)N%&6 zo%Iy z-TANa&?kLKo7l-q9pWDx&Uo{tnU_O4HV!9v;ZrS=#b4tckuf@H9;GB&t=@v;=v=4@ zp}kEPgy52&<9`7dYD5v9?mJ!y#3JfHZ;ROBWdDetyGCJ62OQ zeDRpc3$VWQr@uY5z)=q-D3@V^;HpQof|^o&-k;KCr<+5LxJev=|Pzn zoiS>}<2phTZ0XqRE$1STl4T086=%suAj1T7k3?L6mY8`$@iz>ul4AngaODpZc(U6~ zDmUioY~3{%D!IGkC#I@>gGB85@C5UB%!*g&c@1F?`Dt{8QEX?#Ej5C|#ng^IFk7Vq ze3BMp(!Qsm2CTXCB7G&*Ngd@8OH4RjapA&KsLb)SC<*rp(J=ITO;dvWfoHG8>u=m9rkNi% z2`;rM5$=3;gzl~{n3)$U+Q-zi5^fNEJ$@p&K3?ogd}xgj^%T}iPo_^#`37aI`hN?| z7b4pjf>#GiM6$2E{dc%%0jnVcEvT|jP`O$$uhsd(7-qSH^fuU%M65PLzv(W(o4sBS zT5l+B8B0e{>I`?l!m|9u0@}-H`$08IqRQxiHx&jCb$E0#O~krD+drU*b2qDeTtus( zcl@3BBaHD9NDs|Z?75=%t_?0M070T`au8QKI#iYCx-dQP%ind-UH~{J=u-i&?^@#dxb|G zqtpmh-JD2J=BtsTzr|~m|Lh0V{{YZ%I5miCCYeYiQJ27BtSU_p*&kGUhyGqPwtJ1> zkam{I9aQm{EjE@EZ^PK^0DdmWA9)>SzjCkKbt~psNE`R0Zcj@1Rw7gaPe@Mz`pUS;>|=uDLOn!QITND5CoRiE#1h*v7XfX z6PP2yQ)pH62wvEfKbf7SN=DtK9@rnY+7pqDR`jTsE53B2PIg1ky7}nD5cpl8cBZCP z2n8t(7*e?6fBekW#kU8Z%CQyv^yceP8akGRzhKdebnE#Hh!o#WFA~LGrY!~dH8#vk zKLnq$g)r}Uj$ASTb4(DdfhR9@Da@eKMV(c3LTpY_5>7iMCtxDdr>>)&rAhqr#a3uY z%BmHvfeqb!6E{wTw3bT1%FrfQ0s+vZV<`NvQNQ31c%R?Kq_--NVCgN4O!dFR^r~`o z|FrpvdrTo6e(}6mMWnxyQt3azF=G2YU8q=*N;W7{nZL(OVMgZXl2xv9+(J2Yb?>&^ zIcPy#mPfl4-#RnLhSI}!#aNzA#4QlZ#_OO$9C`PC9eZO6Y|$Pz7dXW=b?U~ZtSrRb z8pi;_b%%%dsX9({uUt8p8?wz1F0!R);kSJ=M8tQO_0B6I4Z7&P#L$4>0GtsDN}6K zLD)9LqLc>j(FK&+3r-Cl!0-&9dTJL1K26DMWoiM3!-kDN&vahx+2JhC=E!bX)EZ6p z>K4nZCr2Q*zm%!0YIYt9Uru>#XkQI7x197=!5Y)uR!`kJi*iaRfn{(NZV?gsMi;4K zAoRCgU=E{8_k8t+h^!wQrz<1$9XQZt8$)`ozSO@*aX+VxdD_mFG6ka!)j8h*tALI+ z20}qZke_dvh2?Ia1srT@N0k}&2Wtj|nlGM7ad3D&zFE&7;`F~LD+a=ks0`T~JiU~o zdy4-d*5o@8f|CD!(pEJM#cy=Q7AM=M9J)950%RERqfq@*u|v3oHS(R^1&I9)WuVw( zYn{516F>yE3n=gBpDm3=CK_Lb?pNXFWp*92QAL?T^h!=O<$juvY@pC)&DeFr3U7<0 z`2V$7ysT+HD~URRYeTEN?%`J+%GgqTAaydhgn6UHsuwS^R&WnC;$L>U#fZB1GltKV z`tVb$g#mA@b{@40zB0i)$oBDO<&zc(z~IrsrakMYQyq0|R=K&Wzx^XF0ez!GPym7s zujJ28_Cn-((T3Txox^$vd`q%~ncSTnkiXDSJTkmIft?7|$Kcw7@Giu65l9dnx#|Jt ze7LDksY$C7EM1#s{@Nz`zsotuGfBvg`5{=SCJB zhB;O)E$EDkVy5}TZP>-4V#YQ~dCyN!n@LL;iRHNMOzowylh*cKQ1!8G)3 zooeXJl)HT{KC6a63UuiTTsfcRK+NGBFMBCH6SuimNszsOKX$>Bx{5hnkl2>Eo`B?2 zcHEd1@6HZTnlS{;jaDa^8Yr3KzLee6#+iuL++SNInL2j<(Bqz1R^Iexi2xH$9xP@l z5~YzHZ3U24#{H$1 zW!UV`cG;u=m)`)$2tk^WX|y1~ZG4Vgktb}4m_ zwX_t&eah$7>g8Fp6(BI%q3EDAj3duG3IP9M&kDMTd}d6wrZ%&@tR#iLvUe;bU1$A| z{C1pAlY=R4R{TcQklAW#Krh%hzx#k_G!s0Pdqy)Qp%Z~?zN-F0KcVT0-pzD_;jk#XCNG z>pKpMy;iO&+CA#=!IXtu!ul`6)vChkL!SnUOJ9=n-M zQByfqAT##J$?(1W_IjXf`$vxanr%VPiT&2+{cY2~dU~Vbr+YWlE=2udB>C6z%RNR{ z&;7k}k(_eHi3cuq91{~d3N9|ZZ}<=A_wE3I>#C}D#iaG?Z@$#N|NXzd+2`cKxb*a= zxe>9lWI>27+w{jI(3b}j3H?CUQ>KwBc2?y2= z8qco%^b{A2#eQv)BTeY9!ntufG{$kEs+w?;8>ylaH&IpJcRgnNq*^rOULIKA24=bD zym$s@T{n5_R4`pr%awPe<+^DLGhe%1rIuf}PofKQ#78;=pZb`O@^xock9!!RUYM)5 zaVMB>EQpw7ck_*N!a*~*o|>K$eB)J5+PRx+ZY6&evX%SnKIrygv^vMF%Ht(BOBX*n z)q*Tk1Ap8|%x)b67r*7!Ko8EJT}o{-@Z zzPAKZmX{%FPS!Q|DSK5q!d|D%Jt+Vt(N^rOxh`CW@y8Yxk~c!UVLfq%9rTXRMRBVZ zeiO+i3RoonXXArlsio4JnuLUHRm8S`YQws%R(EW(z=w(vr#B9oMu`p`U695UyEDK<`ueljikZl)a-X zk2>RJZ*SSQ!OaYfa5 zRiDx?8FeA}_6t5A%uo7Iz5zgUjS}c59X^uGSvaEN$U)#%TaaBkDfm>FEN)S7d8Z+P z+oQgD1zaQe2w>kP$_9&5t~OByU(UA-yF@UtHxCi)HFo~c*CU`e%=pXra~kOmOU9;& zTf3@s@tb(RZ9DeiNL9mi3G0Q2Ua_Mz*II?IR3w&G>4(=7lRkgLcGJUZ`?iX?<9AP90ptZ z*Iia~&Uf=)e%QN_>5RpuhEc^2L)W_ohu{&h{d%B_?0L!3J}9oOUk{Ky+Hv1>WziIe zeumO@2X6!2LI_>Hp7V$`l*Nb7Mc;&e>tbF*3h`v+hgtxv`iENjdmVI_+0Nx)$Mt)8 z%^GqXkXByRuJ#m28aWUqQ&D`^Q4z1#xZ5+I!33Jr=vs&z`=L?>|-3x^aLvMMG1g zVKFW0Qw#MpXsh#Qy@lBh_K}5|h=fsK(?N^2+P$AH%vPl)tl_;wcX#V(P38V7&B)H3 zAo#2Nt`?SIz5CNEf;5jP#v=`;KtU5CS5s4{0&`<3bP7qh9V2Uhj^!6`h7!?I&n9rv zMCJ5QG9NJ0Iu%2rw^0FziN2z%C4V=HUL@d7Ttp|IS=a67lrVV58S|< zGSs^JgGwS%k7G@qemxjOYVj^iYh7g(&u}6V{T7H6p`H&ySipboUz( z-{}fX`yQU1)Y36l_;7ld(<^Mp8i+SxEsIep`Wc z?G)%n=)0UXUCP^b^3Bdq-X7BS`yt0NY0|+K*$IHvtw(wJ?d79H)5(|Hk2VXLj z=H@8&r49dN+Nm4NeRA+3v{F=O!XIDk?3hfcya(xVPuZ5mbn5#02P+0H7!>?fn5mss zvXiRI>#wmvskcetmqW_>ZM0hYJ_XDr%oE;jz1e%7N8uyc`t@r6edYYA71cH1@@cJ$ zY;^nXdAcVU=%HUF8+sxs{y{3}>bL?6Mt66gw0Nf*JNP**n|uuSpBVPuuqYKr4p3@K z*3Mid1}+Wg_@JL1hzw&7+$n=3n>3^fDj8&Kdxhvv zUII1i&xousE*$|&PlxRJf%PWag@_K_eeUfJ3^!5)pPBh1vXv!K-JL%kw!=KoXtD_2 zMlF!frsxeI+ai3Ri^IDg(+0r1)^^-}jh#2`Z==_zZ}`dd>F&!E=kxfEO*?TAD;s>q z<|Z7g%fgQ|tA5>aveXNDcpudMl}u=J*CE)Z!(Hy_yIS%mP!eDq1kj4vdN_CVOyAo| z8~m=|)i=BN!{wy@vzqIPSwl%77H{#ugoJ?~6t#Ll*v_HE+6|{0={8rj!UP#-8%?;` z?<-N4GHA1vB`O9u_P)~&C{FP1DhWkfHtw`p1mq}OOrSn1IYBFt7i%RMcD5J`^k|4? zf0X57CGF65l=b7{B4+PRYS1Hj{MtKp4SQD_6myKiHcbp2On!m%)OEw3fxJ|H0w9;j z&k$O4U-UR2^jl=ujbHxs=mf6 z9I{QzCZc`^@1F4%V_7+KyFFL*@Uaii=0hag?M=DBgq>AOI1j_>Zo9NA>ea0V z7biX&<7nWZ0podj-@?5JlJqHcMM+G7_R9zDDK`^ou4mP-G$KY{*AP`i5e z!ZoKkX228J)$x3n06ucfO&^#uSBrgSt>u_B{=<+_I{62H9P)l$jY19(xodPpWpwwc z)kUuzw7232DlGK)bW_Es^<&j=sJZ}VK*Y%8J*~DgkbY)Wwola&2*Y{&WxOs}FU2k9 zM&z&oJm?c0@*4n(z#jw6lq^w`f=|hh`TH+>YqV)89?jLWN|FUE;C@Mlo-`ojL^_(4 zZV<7K>`LPn-CY%o#txN<59lYN{hSg;)SO~A5J_*k?bmb%XH!Uh-jmg_hj8;YfzUxa zjC+kFu@^^*HMU-?aPS5AU_!z$SCT$z=cr`*m&kE_FS|jYf%D@Tc1A<)LR<-dD7T@0 z6BS;0v4elpqe1<~a&fUwFcNj8JV$X6AB#`a@^C_-0?o_NLH(w&lG^zVJK;G(@;1ZS z3;?;NMyqCa`(si){1f=J0>Aw@6}ExPCMLtf9!;Nnb<3 zJPX)qIocZvP>m`VMOpq;SZ<(aF0itNO6RoH=Wd1PH6eq-R}Xsyqq9OUiAXrGi(&L2 z<88!=)?`Uwh#%ZD=%bpe;5fY@2-XsLCt{I=5Rd>SJ7eG51wDKT4!8ps)*}`RO||Cy z;<4}BnbY}?eq}RT{4PnDiN@Yw!kk{~PUL`7tX>~>=}R?>(18Dkus4lr>g@YQwJ2#T zCR(Zl2t-R2TPzSLLl_b%ccrZgDr!Jx0>%n5BupU*h*Tmn1VjX6h)7#RAWR|znIcmd z0~JC*WD@hRy&ul~JZGJ?Kkro89hh_3H^G!= z8+LSCk5HYF6+MaX(Ow%kgV^Mx7CED7x!a$W9l2YnkE}In9&E5{lKu*o8=ILk8WluW z(@pdqN?Z!}sO6U{`>vm2$XntYyND~Ec45&oj?C0`OPg&rC^}B=vlwf4E4t75v|!#o z#B;Bosp^*Vzg$ha3(c$o57hDjaE{t%#Hs0Ht*a^Rtaznjs^y~msrsU@JRS4{!Zm4# zcrw7_$(cB$(nRE{tpSJ-(Hzu##}IepvbJ(X%TkP*dY;u|@0vSnuIl*NG$X>!b=*;z zDty;6NM5eIq1~sNEq}84*JoDkoiF%i@61Vk`4bsg-qUxsp85_tc#mkVZTY~Yf|(Qc zf*A`A5FnjI3uduPwXAHN>vx0$b9oEkZctO&PGOU3ld19)wY8hTIT2OFSmKr=5 zd~<%Z4$OZlR(@_inv3(FnF7Y95eH;#SDJ<2qmR5E_4F!Hb49>b=eWo7Hk$U$c2Ef- z$1xVhOIdR8CV6**EH)D@DExegiul5F$IH9Ph9{%EnNREtF1m*>In@PaQL^7IyIFc% zoblUhHG3ZQ9To$D?{jK{yv$7NJzWDA!RyBZVT(c`lX5L%7eSL2n8~eb^bv~8*m{L$ zq4rM6CGcD*^BPS)pGCm0hV!5|iWBz&#c9UG)}msl@A_d6 z`gm&*hqS~0F^>7FBM&9$9dc@a4$_2;P9L7FJ8j&IkP-|c+B#evX3!oj+%AlNtnz>$lvuUzR{Hglo8_o}{|UGTE=>xvPQaNrj2l zVjI(wgrN3Qfj)li_KkQWwb=WEmXuOQb@$oZIxrPOM!`DJ4}#e^frG90uH4;$ZA6_` zQ(o(&RsR?+ZD-x_-;UAJg6_O6!10FD-_Fc%vK0WY5g{Vpoou8mtyZ*9_QOeAEqWMy z$|dmj56UiF9n*cQ$ZlwD~%wk==;|}o=nzs(| zo+1!S% zFoFB^nb&(tjzNk|M$|%9&lzu?L7FOCtgD)dbWMZ#AC7Ux#wzmF0I`H&VoAQ9X^41n zrmd?CMfxtT?rnkXo!7Pu1EDXW^~1UezGTR* zJA)bRUVY{IGu(^}-qL&5F2%;!^WBAV`?W5Hb!3PNqGwKPf$dC^eW^wCxzZl{k(iVL zn}W*Hm|OfaxAvyep#GsvFN=d)=d2HL!i-SPXad2tlV!*dzipXZGpVJ0{da>p9c-$Hg zW?EI7$yNH7Pk7Xh4Fj-7*oV3pFK8NaFEKIOh+tTKR%EXQ-PA*Im-cLBSvKbht8XBg zFD}Vg=H61{^0UMaFJzO{qSs9u#Yb0!Fy#!nF(|{xVrG6*-{PJT+FOwKprC8ZP+HNK z_{iSU2~lK=?$B8Q4$pe(W{}bUd!+mKubm`|)gZ7{eJxu_k6Q6;dI}iq?v3XcHA+QR z-KYEV=~gfi`S(}J=ETq2)p9`oi+y^5+B1@rFZ+1jZ&dEICfU=ELxRnvFO2KCpG~BK zToGGOO65MiL8mrjqw06;aDAP&(J2+i_x5-dF#}EBfO7&ct@$2Rc;n8A3lkww(vu#m zSw674^cWMXGKA{*vOj+q;jK33il0?%7@HxPFW~DXoyf@9OwhZ*A+;YBPhwi?rcMo$ zgX5A@nXl7q?SpyKzrg*4MISdb$SKO?~ye z^gHp_N=*%?+`;Qr7yX6!rfZry!$(vKB*_tj&hM?*@|<5R5iDN=QuCY+wx9*#zic9% z8uMcdSYte0mz6P$A~?MpDAn;T7p(@{QxIMr_I}^rK?NIW0?kHhq$}d;a<<(RrSUj<(a_`M18r3O=1&~T0MzWs2I^6M9^mezO zT`8}+%||Oc@bf2fOpIy*c2jzfTI$TY98v7K9iKGY8Z{6E0g!&z7XDLqojq^v^qq+U zw%A-O$Nr&XCXVYyA?IH(zv-TRkqT*P^syGUX?8%1KplWy7ODpnmH0N@^EYI4oI|e) z4s)*&-}o=%DUicqdsyjG31rdP0aR20at zzm?XheYp#>K3Q6s|MfV1iXk|->~4w=47QxaYd>upR4XWmeFG{ArJk*&{HhaZJ(!nT}OEAxvc3s|5#4V$a+v5tXi*6GmxHRK$U8>g*5bYG#vYQyzydg-_ZPHYp*0cL)uU1fDx3)v|-vlI$xx)YB?LKw*G!S?%wcm@hacFWf*YuRi?!@7^+cv zXnrD5_%r#7=(%fsySFJR3pcekvidz_Wh28|A3h>9Ckdk3J5k>ma~e+@UqrsDQM1DA z95h`U9hlR29K1AT7BDjyi_4^L|KRKQ)qK@4)J2)A3PPQcApZu})TUWud4G$QPnTyV z$Xg1*9+cLEG&B0|z|abGcRY2Z2p*2}T>bVWgJgb6nwUMjeI~f|j|@_xS8}^XaB=ab z>RxMgm_R-|_*j+R6{6Wx#h6B_?cbO4kWnd!dyRZq(^(2u_0UpLB4BGo<5 zUn;c{ioJ@xQ;;u-{Q%GrtId1Uz`cQGWoPmab*Fr4F}2uPjLp1FLe~b?N4(7g{B+=U zAuA&Ee&YS}KKHkb`-fUg6pKY`(_YCx5Mo+lCTevOnQZ4-o-VQe7TV)SjZbw`y_BEb z3)BiFFAC&P5IQt|`mf90PG-?>KXb5Fp=72Npa9322mc`pqhhpi&P6AZ2#C2&L%j!? zcI+RBtogme9CpL!%BbN^sJa?lDs6B0<8n!8)Zm{-qe1l|JLoJQs3{$^v6`LngG*U? zE#|_US={|C1mBCHkLar~2D~R*?B3lsrGO_QXsY9w*^`8EUObKg_sc>Ht`;(Q*w0Mf+N zvWMYTU!_$fIc{o1h6Gi>6TgFC7Dd1Zv!dnNFgP*PyKGDcT$>m>e$asvINfP6;2Y2y z%vOra_itF8O;Cw;_hW2fGg`D?Qe$J>`WU=^gaevuM7p`Y-q;Uvk8AKrPKHfiGq8Wp zv04)LIs|wV_p!JK1Ibp3%0rOAVn5Q~> z6$;AINXNWBk<6@)Etb5VoMAn6kaWfLX`8EMK+RK%X!|XtaMKX*ZlXgH#+~w)AnF9R zq;5i*F9X{lvot-xz6ik)Q-sXP67Rip@bg?Ecdycpzu4CeG^qOTw%xTe_1H`VDwdLO zLa238-(~CPVIf^xBCOU%)Mwaa&&=%Ny>wN|9Lpe>Ey<#V&Tw9DF8ua>L&eZQ+8N_- z9dDC?a3bu8Mq?3X2%%B5w;``ej=SzdsJIv;$}GV2Ax%4eDT6Sj^Ih%X`bM_zVWOqO zm7y^|_gRcBG%RBF5{OgMDawSL~0be$NZ=Vh2vC z4q~*rGY#ZxSWOQabhWzC?F$QH9KlGrEjf8&TQWAjlo}!F%s9nv6?|_%xF~r+v%tN|W`I$O)8zzTC(MS6Glm|7Xx)O@ zV0Ik=wHf}kZC^$jd(cP4ht%eZo?)JqROTtX!jp4j(6$XoT8L*WmQxF)AS;gRD)z3U z_HJd>zDTH^X<^UnqIeCM@`CQY(^!W*ZBh{s$bfa9Hc}HLYGj)Sbt|<;^bpXej33+R zFDL~9N}qfN_Yif{2BZ%cwic*j15AkQCAWqg8!dKDl}BkV6_h# z2)MhVt}S}5W-oDYH{3#eh4E|7@ItjRD5uc-(+I2_;>T0kyrt`c;`j1++)m(3IGOic z%F=_b${sLlHHLRqRb%P4T2X_Z{z>6adEv%o3DNFNZi4|_FuFYWza-|wEdNX zfR;DiXo@4Z8QRfJX43F|705U4`is2Rskls&)NCX>#=*@+^fW=QWdcF{fP zp?(ALAYN$EjrKe^d&!9O9mm2w2=>og9Wl1#`-Ex3U#u24JkOn7w*|TbGooQXiCGZz z#a>;)a)T2-IAXPxO0*t(*j<++rdQwtdS|4@YO?|x)U5IR)s=&;+Pf*8p@W(;St6Y(8;9KR z2@utGVSCjAB0;+1(m;3SJQ0CF}@|p23C!hT&p0>78uju z`#aC7EF!cRrAS(2Ku+R)D?dzJjVNW#FrbZJRWW)oM^29NlD!b3vwl=Zb3;-P6ck z(C9r$94!mWy@q($EK&myeR|gip-RzX))1lHJJq&z(SRZ1-kNO%n z&Rd99BmuXKQaFXtnQg_iSMVD@==vJAK940XrDyi2yE1B^jLvjQbKy!uQuHY=$BEZz zW4!sq5>1#6vGW?y4SsRcM)x-AB5Jh=WcEb7_aoYHx#0y3YF-7wx1^(p4$0o{-)$KK zd714VztdJ!5m4_{8@m8NSzG40bdVWe4Cye9X{@FMga}!bGs{v5^dXH6gvaW?hesPp%9?z{16CjEn4Mq3 zQT?49;5YJWkhTDytOs6qaj1XhHVtKb8}}Of!FKH{(cb0&`dCfv@-%MxKDL#ooWDdkSm=E3x|J^!#*p zi&JA}e+MweeTU@FeScBg7oh_WmHZ8{g4uUw*?L$*yRs{WIuleJw9g^8C#%9UHyvLw15Ukh-z5_MZa#gbG$v@8pkZYJE~f?#tnoN^ z+mvuzr>36GtG%8Pw#IK}XHdA-qkf*#${tHWX#{*hcZ0{QizDSE7w3V0s<{!H>Ic6zLQJ-4vbR8(bvi)G@0HHJ9Ei`%;C25Ygzg(^72jX0C z=o9JLlad^_K^X7IrAyXeu_-umy8w<~&Q68MA5&wk{;`|jOm54=rZxiucW~8vod$d4 z?KzjdOQcPgiE%KDH@V!fIpJPo-BHL*>ZAOpkCz@F7+_)=)tQj9`B&5kXgOo2!Y(nC zJ64{p0aQN6c6U;fm3$f-Q0>ruJzU03H<|YH$TFUikf7j2yeDTY zMT>%#Ti2|WP!p~ZY&m&m8P{MtB?(L=G-rr=*MarAnDWa=t*GZCv}<&rKqt9TcyFb@ zx58K}6CJXA8Lr#?-}lX8bBpML^`YSMnKKWm2EUlA{OwA4lgRlcgKB{wHn&rG+HBEj z2s~tU_36z?D`;2uP3_Q`R6Vl_%1B-qnO}sG;7>S;FZQ+kIp$mly1bRvL9Pq^-9LP|IjrF?ct-F({oXE}c_+zJ)P0fgqna-e>ikt24j5gx>W zjXE>;uewr6=DU?q(oS2H92>vZHppYQu8Alqat%ulSxhl0seV8;frzr@uTK2u4sc)ZmO{k<$P2?a<&6MO-|s&rAt==qZ~<74%&CAU@egqFhswnO%>en z-F}F|>ZFB>B-@9Y>N;30er|YOJBC)6zs#;lLk(s!XAv_*cg?CQOFC0%1XWff#@Z*M zM%#v8ytbsz7m(L{o#4z)TZSO;JU06XG%idabT#vdtCeEyn-Y&Q0H+OIJet1d#kqDo z!9uiK?60q$P*>t|+xt_~Z8K=-OjYr~6ekB@aNf zp>kjS5<2A5oIk3St&yoqmGvCeDwwYi=A6P^UJ@w3o7_Lr2u3J;0)!Hd9h;wFeX|h0 z>;30t6={3d3l>8hEP0%!Moi9K`j^AOZ6inio58sQvKJmOXobR_K#9#o=zH7@?V-Z1 z)gdKyiwN?;hb45-kK~A$RP^h)ONL~q{CYr$;WINopdV-Iy7tK2NhR&^#~3&38{hb~ zOr~0&Y#DMgfzJpMVCAykfYf<^Sj1vsP8Q8#Rk#87G6F|{`Cvi~+Er`FVOhh)*)nJ2 z43KoJL4_`Y{C+&^DtXyL%LkM2-F^(u0bkg9F_c)XN6=ajbtkoE!7Vl)GX+QViNQ6HT13Pfhy}sRefG5u*nGV=uh{q`syv@uvR@F7hv|&nyK7llWZVelFVv+@w!hK_ znAGWGSQx*~V*t@=s8$Ge4hX5fNbU#V$Taa2cXv@`hp?&x;L#-B*pdWV5>I^ZgT4PA zy}=ee^G6{gyv^Ad#y!+Nans6NIdZ!hrtM?5;i!y@j@Jc-b1#31nqG~Sch95Zx+kfc zm$|R4L}sSMHx5Z@vYot`*weJA_LjK7y{z+V{M<1fbhVkeygg>_nRJv!K-NkC_0f@T zsuKxRNbKI%jg}UH?L3@+)>K||V~Vcrv8m09@u>yq>}?chFp zA5961{-Ae_G2zd{D|`P3c+dk@v6!;?QkB}YlWh$9Tk;o`sz)*Z1@R1+um<4=R=eSs zE=D!}xYnF*z~Z;j$d7fY5r(Zr2Ij3QE!PZVusJHlINA z)M1dcHDM~qEDYE;SmC4MFI=eF_ROVMd{2wmW!+2+uDwGJRzPhpkFNOwRVjMiC(WS9 zw<8WdJFaF+LWvv;BfgEF|FV$ui*yJV(0#j$zJQL*+n26?qHIPN?Jj6Vk48)R zfsu{j`y`G1QI~DM+^!&;K3he^jvBHcGJN!h8oiN?;hxe|x|PViYmEPhrhRL~yd(iV z@o8OAvWK?Yd$SZ!7^=2CRW}%=WMqdBHZyUpK_)nIX6#2AFk0n>PI>IZ;vJTv$91+4 zi8^K#y{DIYSnLEkk$q4(ni_g~JNJ#fzK>u6`+G-VYf`fLM$}JsxhfHr;X>}*5eMKz zv9d#39`%i78vpw`veQhwyEUeVAXY|17aa_de^>`pF_+;|UoT`0;f_Qicy=ad+w1$0 z_m*y&s;%ENWmw%bfP|GV!`FT{3pBsCPX=qiql59ji+mHi5G&HNVtQrR_O~m}@B2o_ z%H+Ec1E)B7R<@BTad4sV{6+P8-DK93UEsa*h^@aUmfHT3L0)UjN5AOg*3B-93BFI?OK@#% zr81x;)>>Xfh8k7=T^GKXB-ayT%brcE7SQ~rP#sj7e@mPmtP2xwpiJo)|w@=z3^4FY0{KXUIGve^RpK&!S5ewmOhZ_X&cVZ7b zW!A3$J(?6wnzx)B2%yZC?ov6Q_IHx)0~cRhG7DHWQp1SN`>T`)SjU;d;vu%KLbGmc|bQ3>)TVSWO`yCgJJcO`sKNj z%zELFNBwAV;{@1hm*mCucj{Cb;Kg*)(LVUW2Q$--L;*~?5m3dNxC`P46 z*nC%Cg8vz$o%|N7gZ4Of+Suqh$l9YT2^=b1RUaz%9*aagH*i$s<7Xe$nGEk-=j1@$ z=laO1WeozAI9tP(>VF_3M1gnG)=LZ{^Z5KZH1Y8n55ZHa-+EzK1#kDDvOYv8P%?-h zJ7&lcHQdBpgU_3rmnNkL0$2Fyc3}QMW96+yzOQwcH2!p8@6l`v#7*5Y=BbZ*>mbfl zTOQQBvn|vpPL|&BJ?`FSBgs4pf0kPBuBSXv*C=9t+?jd{86`M)mW{RksoVbik~Vqp z%-N+AN*<{B)fzibb^KX}q0{pd#YVwU?kTm}orAG27GmYJJZ9(NLZ(mC;Bh-EUSfhj z3{i62Vi#D98!|Yq!RerqimASdQ)$IvfP7G0#WrANj^T=$VhK*r>%vUl)emMVSzD|w zPLjE?wsi5soLyzxD0R4fTxeHrg&qi1jmiBs!bwS%NQud~<~#hAOIxPq8p|1tk(dle zI(VCb>lvvgUb@k~hJXnzbou9uhBtCnwyf(Q9r>`TV=55{Kd!`VIakRC;lDNWjZbD( z_qsz}z=m>|&9eCIq5~k|=61NV{PsKt=&P3>Z=AHvWt^y3n{JxxeBWK{{;tezTOuAc z;kv5AlwTZW4Gx;-6y4(dIP&EuYeL~fP^ ziyP;OJ}~Tqn;0hRPpvGn@jDb=hz%@m6dcl4sh7SP_1jOxjTeL(*%`_(^}+aYwpWP9 z9sijw+!bMcIRACMa3RCwn?Ou~yvr}~IL#!!A^_{Vw`F{#I&)$mw$?_Jl=q`7Z$cRpC0v37yi}D7qoghL1N9oR|BQClmP)z2#LmE! zDE~B-cpK}@|5|B+Jak%>28>#=SD$9d-xh{ZjPzZ%D$v!l7!JY{8ee3kwF;F_k(Qsk z07y73buP#Ef9ibvCl5lbv>UB1e>ZDw;WVFsGF(jrr*|racbSBx&&_qks91ucA(29L z!F>KvEhj9ozgsPi`0@nDri`0nWWFQ$`SW1%0z#BK=Gxhz5#MGw-;;q16}%qnDzW9p z(}FJ=wDJGcpSkL=gp;+CS%c>I7?!;~x5dgM@j>bC#%d|Vig>}yv@zZWfPQ5^qY6(u%<$P@F1B~8{46tipkk%;TC}wF zAy)ddWb@8+r7V>Wb5-{=iZ*BWiY-)3?(|v9UUdUSW7YOc3$a=aYe~P_E1YAY-pt#yk?SEE&%#RLnsxY15>NBb?P*-Bd6BC%!m-EaEC(;!I31^ScH&_ z$`5zKDfsJO<;d0H$dzz&{&P@bgn6@c8#ki+FVp*2X_k@$MGlO3gaSBAg?71AUDFmV zFu{bZ*6Oo6ZO{8L#D};$S-?fhzZRuv?!J0wf>bRe2D~;yi{q-=Su~B-@u@!@>>DFh~kCRp!mU7`_9BDm!a%^Igi}v4~SkGAM&mU3@I|1WXF#F7k0m0b7 zm$A?S3kWtz#xv3^YJm`QL%hyB0A)Z__Hz|29bm|2Ic!Q?rRgpLntuy+pSWL^b;0Vx z6HPwwqfFGA=u@~U-Hb8el9~nfWjIf7QC{B`px;w^dPAb_z?{J1hqrag5`Nf-aL+ald=6CFAW$h$4?htg6El-x;tn05#k)Hl{+d%1z$%w2Kw zA*AX0wd(o`W-5?h#WH3hIc9t3FXzU4AO!B3jo6}fa&&;!TkW=NwN z?U316)NID~neA(&wbb44ymIPGBU8e?Uq;A-&W;naqA@)w4}E0Tpb#_T)7#|=Sf~_y z8&iAlr>Z?L%TF<72~7jcsxuDn{u@jmiE;cGGZ52ZOIMHSRQp^J@!$|9bmJ;Wd7RzR z@*LJB!JBV90s(OEW$Ud1om-NKen%?J;6k%zHWT^Au|3YC(et>@im*Hry8V;2%5F11 z#{#IhLOz>5ebVYC2oh#4x>O-;i5~C1NlKGzQ0v!xk4+-+-VwiFAcx{(uvb5ZQCFS} zQ;QqC`%X~@)k(hNw>?O)C=bI^!`eDDLjaGON#-6viQdKa90kZGY;4+aW7em0YMZZu zdk!N#Mw_Qk;dUz36fx@K`&nqYb2jqTr9>;hP;7z6_l}#%2)U4IXa^EAi@=>T=0tsu zgN3?obkF~?0iPan1{oC$*Gh-4ZN6e^D!G>0jMTM#KO39O6G`*!{r+)KN5?hv>n@3! zh4h@Q0?zJZVDMVpx`B>dH2xy7p<5&3?9e;}(L0cHy&c{#+-i*D8^cRDC}K1Fs6#Y2 zBbv>c$PAoI*AXu_e8-uohpZk<100Q$$BtNH6leNepLOP%u*aHH5-h|Yspdfs)sOD1 zuH~JG)hG5Iwj5(O{%LZut_NNc<=xLJbzQotyu#kSo6Ak|V0?kX$Fo3SU&E{fBg{J1 zp0iG3NN%XZy)~&wSQZ+(V}x7p<=v#_Sh1PIDJz!ijbXi$P45~Mahjjj-NUYs6pc;8 z`aFWo_CF0CqW#}KnKe!yUAn&#>9@_tp{kvAqc--=cJ%x;X|OhC937-$4pp4`s1yVa z38mGdmoPJP*D;9EIfvzc-AKk^xs6OP{!iNG%RNs;qkib$5Cn9>QIVOAj5zFq#dcSN z(!`H@njxrsK#ge&eo%#xdV&!|Ydvei!X_6_@4o-ISF=}w(I z&HY#J?WLd049*nW>8nth2e;vtwbCL=5$QkfK|O9b;$tj@aWFVXv$!l=3Qk1c>DyBe zx>10_pHX0atX7+GgO-;G?=4L)j;jiL|5AERBS(p-S8~SKJiEy+M*rzRx^~9& zJSdLRed*BjVuhtsT-W^n3$<%Un4gCc~tCGTQhx*@&TcdCh;OBLNaHL>TJ7oIIiLzy*vg7odgQ8lDa{P zK^8DX)e!%5XmgtVyv5?NE@=2?c!*-|#Y^0l(QC!Dl7V<8>VQF6jxf=H+Hn0W1AQ(g zyxA8$Fmhyfs&q42@K7tuPw}m?`%I$jR^xf4juad}*8V-BVJ0D0qtZ+$%(qxoA!cH< zD&?)N?S*b5>`=p9>n#xw2Y>asQWoM#Zr#A`zv&G>>4uNffwB@qhq-I0 z#osrR8a@kz3AWb8e%1vkO7bN+C1)ep24z8aTz#;{X6Ru}En92(gR-y?sU9;;4eWE# zTU1rM{j7<|%bn5LOv>To%6f*(JptiNgL2$nyp6!O4EBeu-Tqj#Of#Dj)R*psl6>EN zFpjw7G0Ga$05sC|?F({)(0d?Girub-vo?9^EIhRRsjW&wa7oM6d5b)Nor=%M4lS;z zh%c6V$Lf-9iCWmJ4pTqc1N#svAnz2_pZO2+!sT@BnE(%|yTJ=6R zu4w)sHMoDy`tfD`F*I{R$p5+}-HWmn;qhei%RW~=>$&yuH1X@?Vx*V~){oGGKqKcH zWt?xe%*&1WzF>?D>J}B=-2Dq&k+FZ^K-lbvW(c=;%-s;jvm{pF_E|zlVr!PB6P41B zYdv_fpyu3B8VtXv0+IYp(0&rn zLTlzg5;#`X_Ex0f1o#d=qSqwwRa#ZYI!jZ|5$vT~-esO)a8W21FQRkhNTLdIhWdLdTez zws(IjDD+LY$pRn_GvEBtLK3`!)ol3Xu&yp4NF`L(Rjs3M&2D_4R_Ly-sf0$RBt)4-6KkIBiQYoLVVWtpN3j`y&Q3Tn_ZK%!9jnCz}% zaqnteT3zQ4q1<=_sE6zuFC*$3U@- zo%_TvTg5wHtqWgp3T~J8c&vHY{6v&*eP;<*xM@ z_+1A*-)jB33_YC63A6BvGv3ap1*gZeE(F3eyQ?Z0dA~F5_$+&v;@;>+?Nm(Dbu6LkYMjY$piQ1l07kH?^+h3|8EmF-0 zeVC?3TGsJb*^mH7hy^mh=ejRQYgd>#CH{qX0m z+Rc*ko6+T;rJ=TtC$xOG7T=PuPe={_)A)Jj_k}cS-(e8Rxv7FGi&T4sD8t+OrCEHkH{U?SkN`aw#>e0W4V}4N2ZmVS5br?X9V~qWZ3^H0GZWW<}IsrW3(t*e|iE zG^x+}R3GKhW&bVUM_x>WGQ1P-m$eO&ZsxVdTp1ZHa-2}?Oz*u5*lFu5@GpDDvcS6y z`TB<_I`#VM^xWyLY9S{;2AN~D!B)e0Q9%wf(?j+p7_n8ZETs+1Rz9zQH<$0J?53=f z4yl;#B&AC_@v)kTL}VjtdGvp_hs<_|!#JN%%zEMEWb`4eHktd=wCeT7a*zpJnsvm;N=0-TEpBhG z>PM?JI}d-M63LwQItRaRmn=4W_d?TRnZDz00w>tq$*Z27rF&JA9;F>TOTzZ*iOtpg z)jJfDFWWV;REJ}t%Dvtra8`=ec>%sV^elgSFexVCd~7Zu6B`#xy+ z(bY{rfEOtK@m;;SlWJxTR+W?El{A&P4I6+=EYgGB)D{(Y0!uj16FLrp*yX8#?Z_oN zn)Z@>%HYlo9Sg->vu%je{~T{10Z6V_WGw;3-*52QzZ}Lfo`9${NQiX};{Ii?uDSLRqD5-mK0HB=KV;W?7~EdR zYag0mbyHor$(OB^ks@593D{hG2fY8ePGGxT2g)=V`Pg~h7Di4qmNcPmxVb7 zR~a6I@RD+^%S>Vj9thl2N5g%8N(t%N5vVw(#T|i@x|&8Ecm}#G>odPeErCEc4_Wvy zR`rHa$It}hXlW;4tXuz8#h@Gr*~;wI=!Vq9XJo+UZWgNGl9a+Huw9JfFmAeqY~t=@ zLXp)?Q!_>ueD?;h<}T~_++(8+VhT*LE`^mceq3RfyuO)wFoSb&?uaaB(tX1k&5fGT zjjnWCtJE7crsIF!k0I>e-~JRG{juy__>Sz;C#7h~1_Ijw8?>w99r|ao#j9~q@Ug)exp?}C}*AB)ROugpdL-^-c zUQbft=40-X9yMTuA`!QRx#2VT50S&XRdXPtg0RRhJAX_2o;Mh1oneV|^L7SK&-#%C z&hSQF>+KpV$rGKuz+JHmX$ieebEifczeBu9jtFm9FIak`NByvoKcJIb6p3;x4Qx7sUgPU`$H>E6&Q)}?Db)iiNy4s1txae3osS4CptS`Rm8uN9;Dd3ePiH%e~e_=NX$M*9+pTL%B3ca_&lV!5-EA zH}_3UdU&H&T5y=>e?3!yWl9CHj@GLWI%7|ayey{bNk3`jm`k~8${Xc#G3gPl>{$2? zPt595`V%?RVKWlzj{m^w*Ih3SeOP4hlVl2REZd>2v=8fgt&)qBY}pew{BeEq6vP`5^fYZrn5Wxp@5i5$s~UYZYYG z=&=rnKqfDg|5RcqdH5@^yNE6_UlvpB=CxDJX8Vg@bibYyT@3C#YE9xf&6FQ^7~u*3 zOu)FlhUm*8Jv?5{N}y~E$|i~+l=nTf4Vm{a9o$# zkn*XH+sU=<%}U$;=w6N%?*;_4!`oh+jkEF`Gn)ZWOQjqkOCFx;3blDvnrEs!*SrdXPq9$m$uFO1}W-VVCugOpOHS2B~$7g}B$) z9!%fdF%>;ibCWs3w-$rvZYnE5j9^>eY?{ZS9;B&G)^T}717pq5OX%9|s&i4TKjIKl z%i-(ET`qK5*5tWln|$n|l|$sjP`f8G%S<%pUyZ9BT$;_NYTvddU>i1!!A3A= zN7<2Ak@Q!Ww6XKXO3CEDc(Z8iOEXi#QfoO)@wCul9q=4>U^|jS<*Nf_{xUWCZ7k>q z_^NPy%Z-LZuW;_fwuGv7osMMK{3XDf-B#q-e#c(4sKn8gczY6({R8@#MzwU&dUS}#SxmcI zMac{heiv)^ZtwI#gvSbIFHE$*v*CgE^(DLQ0G^P#|J4(66$G{p*@4{d$A8|XSTq|^5QzjDfHQkkYH zF;r@ta;8OGa=`_rvES>ut?Ce}5A-w(p*nns8>j-mZJdU+UbFlC?Nvk!jC7drKR`xiK;;tT%$IU|V?P+?(pEjF8NyXGwWmb zYCiw6bp^>{NuwqgqQ9wwE4#e10UDZ8>;!KIrWom%I$V`sQ%ea`?;>V<{XUeh*ZDHK zb^V4plR!JgqYT!ETI6)k;pv}=H?jm2MYI^~!1>pL7!BL_wD}OnsOk6>>~My-j`{_K znzemaUJJVpTkFFA&cYTndaTq=jxb&p(AD3SQ}MB=%{whSkF(81WtK;Z4b*fwNK(yp z06|PJ2ebcQ*!nZw0_>Wa^j26?ba*j(Qy-2!V`#2H<9QD6n0N#NV;>l;9t_!1!}ZlB zwQYx#?yX8AGAyj2r+EG^`qHf7MDbmo)SMMrL5x);zKq_~)tO(v29DdKKc)9r%@Qnx z`r!nTf@D9DqabNjdE;W9{q>?abo>X0kqR+t7DfKBZQ$=xq)zA{T-UX|sWv|@4IX%M zLzSJ_LF_wkz@D9tj?*-)quJU&RnMYa11u-$^{Usve53s7k+e`hVDAqdNA} z5#EsA3(qyuG@*eM!dNGaGeAVsIzNXu5InnVhux6IwogAn_U6<*UamAUzE?vdKCg-9evFcK^(Ds+Cv+PM zk7<}|kYL@5jw?9q<>FF+{=$OG(p13TU9p}fV6~YmuH8+C+un~ll}~G{c*pYl+gMGn zdFDxerZpUS!_Q1ysKL!`<{SPeb;+Fz8aTOmnekrdtId|_lz(D!O`HS;WoY@Hn3>_sgLNV5geq-j*jzARgtg@+9Z8g-KI zqV8?)iu{rIqn+%X8}p$ZdBXo%acR@mW{%=1+#Xf!ic6&oU*m#KiiEJIntnWH2R?BE z){)pN1A@870dYyS`0?@R_$3Y`b8e+9Tzme(ZMpI?t0P%jcAbG!PR(EuZ$xD`bQuY9LVx>e+jL;e0buMn8Cg+cK(4QrEPoxK#C@eJ%ReT zSIq(tV_v>JljsVb-^eQ=_yapfFpS);1#s;;?3+Zeqd`4WkTj>E9~EF$TsY2M&|mb% z{+I>jiN3|bu+x7g#z@<9BGxJqYQh1I;Ff31t{nZ^HjROQMzQA1qvrpRXw}aeCD9rN zt}<4eOdoOeiLsB+_{TR={X*tBd$R!X7HtiX@iFBhL|&-`9J&V3AAY2cqez5ew~+?^ z!`t`8+jr>HTc&qk8Rp!8%?Cj$a`Gad6t~S+_5wmM30N@54%&WNxMi^+qLsNKYx47) zGwd$M-*kA})3&uf>-UFd5>)b7;x0vXZ4F=4523*~(h*wh+$SHiU-UP5L@w}RZW`DK zp3&S^|5qgWnvfoOU-e@%9WS%GVMt&1e`p4*B%$a?O2OF_!~E7FYaOhnJ@f}hdFfdb{M%pIUk>*m?d9wLpdKxL zUcZbyvGxa3x6c2$x8E>wvgK{FF;eGIhg?90VG_?L`ye-7R$5O1bHLabMj(3_fC@&& zmd0ZMY(*dP;%UoNr(w%=tU`F~lV$NmgJEB@sd%$YbO!DRq7x?Fd9qlYmACbWu^aQ9 z;_zItD}1v-LKIsAC^I>UsIp8|=g|OgWaxC6WGCJN=4x4J8AxpUwK&Z-e#wi%rSi5& zo5phg?nGLIdDP}lu_SMWI?Sj@rdc2h{}CC6GP2NgPHh(}j~Z4qAR8aN!?}dTuEWfD zmtE%7ckS){T|8*qo`|JNH~DuJVr~xY`z$rTC;SB>vb_1Gx(1_9VJ{hq&)TzRP09TV zGVW)^##w|xXLlus*{@TW0K>MV9d(5-MO-O>JvO7m0%p&z77hbQto_SI;CmfSwYQYg zK*83LVzT91P={FUy2}?E{=E6fm>qT{9p9)H23A|UqWfCQd1Mn`YFXU zUifH}`EzfwPxUDBPH&JktO)nj{?QG>U9+`CR&L5_!17c-Kggt$dMl>gfvktYQumnZ z+*`{{j;pBzENd#`1$~7MZC0ITu})A)P@~fXabp@#UCodP1e0&2R7538?M@6IOvwUmb6}JKG*M5^xIq@jm+RO4!WWpRe3sUES4<~l5 zQYVt5tN9e%Sv!?nG^Pn#OW34H=tcMeD37X3Uwat3>VX?u49cHeku7J9m95gK6Kbkv zRdZ1MYdjB&>?;&1SRp}Vd=!!>#jHVA(5uqK=uf_G<3og{gXO`isx{fDZ}r5`%GQX1 z-~tc+&Ue!wi|WbPU`8#F%EW&sBVf_56iq>sV=x(;91LIcg-mqkUGUYIg){i9QC+yA zHEQL&TS(SwoxBD&H`SD=ZgJw!vW+%Xm4RZ(QSc?mca$#LhS;RK`$-BhE1>mGp1Z;# z_0M?U`&}h?YXloI+~u<(x6qDRN8M&aL|r!iC26*}$K8!ASm_xNw)p=h+upgl7XI%s zliZ&W_wD=SpMN>Ary$vUUduH0Zk!FQrL+0hd_(!wQtrrIT%U#~)=C!;s%};kBgF}t z@EN`*`fUWFqJO_pMYq7EJocIB;i0JY5=gOV?Yr9-O`Vc-(FOhnP+0uOzds1bo)*j7 zrsh#7Z&XUb_^|)#tiSIP{Qiz|Bk16eY{KDaHSGy+R5Y=beC3ND{v)J_=QIf#ydt?c zx2L&wv6=#y&8Dd>AFS-4!%g^|@`VO+u_MsOHsg=7$r*?5cvcLBVd<6p4qf z8%1D$x+deN9{-*Yoh(hGdq9Cfba-c_$ znHN4xMZz&{h|w~J*jpf@ugXRlG6`caN-#QvmUd2;SLLa;PYWCvB3avXxNJ(fd6Kc- zC3vk$Ylz;--Z;^9#`E9Vgd!a|Z|G{q?(2|1u}UP?ZH|Wj z=j)_Ulh|jtJ%ae8Qd+7UWsf}@-cQ7EQ_v{YqM9!QwpF=}Lh1z^YNF0{Wd|36pYIar za@LZf);o-=ODHw(3q*P0$mX%__GH+X$*p1QPX_>#BJfhZLKTBk+m?uxj)g)p@dH(M zs=v2@e{TDM1lcz!?v4J`rfSR)a6)AgH1_WHTvl}!U5=;?S5TurInBMLsnd5gYy;7A zaf9V(W<>0J`lM#0VnLHYTRG9LdPmuB-44u0x`$Y?+@tQlCX- z=?_H=IT=tpc!BfZzQIB;Ke)FwH3k>9Z&)C1dWl0%%cf>D!qgV$Uk9>`(GN|`rf!YZ zeAf;4t&5=MU##5q-;00MziRL2Bi8mt7bku^%Dc4>Wc5#nd+1tvo_omDTPsUL{LA8@ zEnqS2F)BX=>9E|@b0kKvfy4q^0ZGk&S2aQ6BAIA=%go-UX)paZMH@cVy0ao&zZ+c08cLia8 za1U)Pc8wQ1YL`N+TArAI>|@uove2(2nwsxMg6j45p+=@XktE(r3t(42d(toV3_ug8e;<-ug=0zDQ%FrLij^!x@;o9kQF{M(oq~EZRrcvr-jU@Af(nKTP!JId~Ovkd>ov4dy=yMKtVajmG+0O=JBKBRC zbmM-^vz3E%eWW+^;hp|*A;K}4|3{M%8U8=yBm-Et2eK1$)1c+8hU4is>5!Ordp7VNZAN^&F;6a<=1J-!Ow*^};b<7@UR`wvOHQhs~-WctgVi6cRkf z8ky9AZB9iAGT58&VB89nR|SxNm5l{KRPxcojlJR{*7R$}OkA5;bk)G8g5eeF_FF3P zz((iE@?|sIEK9%HQfsKgUEwMzEI3c%bzrtYf?+16h+n(Kw~u4#z};?I3n>o?(mfWr zZS{;Vp2IsE(41@fLEZL?TriYT-iOjmj=YK>4Fi2ApA==M%N&SX$!G{P_VSjLt%{dD zW-HIx33qm>ew%d!OE1}}>P5pdvLUvrbJV#vsA2Z2peH;QjpKrd?;NI=jc01{QxmJ< z>O(J_kCzX=33DH-VqcoSHze>ZOYx<0mnKE}8^5RrqoFM`T6ad|Ly2(+bm4}pXe z37^=#$Q=mdMB*5=hI1}Zwh=e7=eJ8@3Vh}zV<{&gRQ$U4TDP8qHh!sv_U3wto)LF4 z(K%_ZIBFJ=I8d`_5$2%B!s%TP3Fu=FDfJ*2Yj#_SP#Tp40ar zuYeB`i6^S-hxc4$KJc+-kG_K6Gi(Gsfjx385M5V1n$E2_;t5~-+;-5=`pf9z$-o%< zOM&_GHi}xqDQXVFAtZ3zrlqq?TkYHps!v4+`OaPh-D4IRY~>p(9vn)w%=T(JEoy3+VNF-|S#m4x8Ae9 zS#E3!cZ~AgzYo>%(1cwq{7Wz5pAyNQsMxpPCe7>jXN?^OpX+G>8l|X* zh%Kg-(4X-!XeCm0j&h+N00GQD)DK~3;>UhG2u z5D!1>2Ks>E;X7<%D5;4(L3>dA3EinsSozbrpLJ*|9n5S^sHlhF2A2|E5748NMj$3{Nf;yRq)%tyFK7w0m#LzmB1!d@8qg zx0m7OB1OG7x^yYt313i`mLQw}N{oLhHf==HU5u@|;43 zR?+z^sAN29hU@CpOyo%LMBLCxVtkKNVW;z{Gi@cO&JM972N}3SkslWkIVJiVLiHWp z$xVY-c`gS%TEpbqd_1jqX@OV;wUrs0bM$8Jq~5*l$VoCG9~gbzE1l{RZWI~1Zb&a& zEX%N8)U*qo8f8Zx2I8-4-ea$N!HgD&*3>5^wI7I@69&+U|2sE$o{V|RXhi56*7bz{ zUfN~9h5a?MHhT+!IGCPy$;!K`<-OhoTv zuNubRU2{kN^s^?=x_o1~3~1=1P49vHV52nQ0Z4LT?`duosWqQ; zUN7Gkb@`T-0bTqsbv#AWkX;`WaG{<)*mNP}O#C8S2>Y=0o7+T+CX`n_I&F;2Y`ZoM zzA@Vmh+82<@)OK*MFHIzx)*zoeT>bmw!&OH*;cVX-FCw& zWc`>y+`Y)t&mD(6zCwR8l>gNHu#|ilLGd;1O@KC~v-D;xjLk4uH#Nrj&f=5y{mHeq zo@>BLLc2G7;X{WknKrb?&$Mc=;?ufaQ%q}n9>%wP6u1vlc94KIXeuc+$i7@CjmoF> zzmZxY+A3ZqV10kVX5od!To?b5p)XtZR8lxy zdf{c|(9jej|5?quCs6_216v0YQzZKMT#2*pAuuydOH&d>VJ{)-^VvHRhh& zXVzv*jjv&-n_BwH_5uRYPafB2RHO zEmx3{b(_x*Y=gY%{e^eu4=jA*GiW^cgL5!hRdE%MF|}Kvsy4ja<<(#tbvZe1_3vT> zeaJjfC17wO;p%w9K||pdqIBq+xvxRw2}9MZx$u`Oj9^u&5vwx~POOEMqO85*uQZr* z{jbB-b3AEaFN%@$Ovs~$GIO#esi{oc+$Ps*t(Mtup+jeu8lbif9{8EW&Rw9*w_jU& z8ocBa-bs4hi!)Ts`k#K<3bn@EbQRYz}mP9pR5LBKaE1?-w7_G>@~EY&=dZvBC4vEk!0~Ezd#QEjP)) z+w&>J_{5j4%%e$Y=~=_=vk(Bg6gqyrWJBB99Q$14bebP`+hw1DwSF}O=tadN;qLG1OZT#k zHmj;G2i24El5Na7*Wa9ipq6~em~=9BS7Ag&dzA-WFFiSCskYNAWv11S#O=61j`4A9 zpCRqf(Z9|7gXL~JrrYut&9OV16=cZbol~9s){}c+GtB_l3q1}S`ynx!IH=F|HoBXa7{x?| zJ~GChdjoZ4h*~VP4Qg5zj3dQ{%}g0sXY{t8xp6$t{)S`2^Wx4TeNm2$VzvU zSHjU-ynU0lo>ae1%#rjW^Zcs)It}6yuBGvZh3D0y?V4f8`Zhx%XEQNKIiUQwE+fZY z#cgm6hgR?{_|aooK3|Yt%4CT=s&09vYg8Mlu&P2+`JYz+1m}%d7H)E;`rfC1i_6;v zNyBO=f}kd-d_N+!H_p{4B!*mk~hbJL}V{b1OJuLy9&~J{*Z8>)pLy zMs+091x3ZvV9p5C7-LGIQ1HV>tRJ>phO+rF7~+z%%GxB(Zo3IUACRqtr^Z^-@(Him|GfjJ{uPGxx=`$XXkfIQG+)S;tEihU$5n7 z7rQKCZKkrKSijoS;4$~@fy{`BxPdY>_9?ZQ0&{+ZAZ?F-lCfA1ihc3T9s<56u|dMJ zm+eIp>H;KfMTV+{A92XZ!f3htF}WUcriwZGYhCJ7tioTj8arjH4!g#5^Nw&ab;Es& z$*>+vSFk|Q#)*XSN?T3vmtgKXbr zpXlPxe^QwM0d7!_kc&=lAV0VXwtU4NsH>82X}BO|dcSCepKqs;y{;Jiq>39ITN{7z`9- zE;wLwfU*+P2IiB|{@IIp&w8bL2QY^AN1OTfO)isbw@mKJ^mjG`B`=hEtgMp(HOKdG zJd#7=sq;noKQzb8{mF`%Ewk_RPf5$ixTuk@R)VU_y|{x0)V}J-*}n`tbM-e6bo^$A zhE5ncxk$!|nN4DEw-oMq!+Zh@U1~^3;rdS>gRxVfX1D4WoCx}we4ow~GKsx4Hv|C2 zW?PVTr*0R;h+A#!=YL5XXYSHbZ_}8TDPlFGoIu8}hsXNi=Y|ANp6C|v8dmWsS%ucVwOgWB*2~-0 zrwFC)|33>rZw?kIH2!V7r#BhCJuP_8B2u{uYdduOU?=XWnb#yp?a!4Y(DP+tW7meBIhH7s@xI6eI`*c1Kkw9op3KtFx;v+{AmK>WghVV$Bv zae^6h>8b%HmFo=Oc&r|C!9oGEPvM|oPwZPlCEcH2sc-MYe4j5lTKmLhH$j}-`N-)+j zFU@B)+_C0?xuIXJlN!!=Ko|-f@JCs&YK}grk|7dySP^5UrH-@>AT{Rw2 znEP(<&X%Myv#VM)ape!9UCdK2rY91pYECODKC#5CICTqC2pnKUl_JzliC{OPgKy7K zw%@!KfKb*Dl`%H5RP#|dh||GS_;}$`+hPB59pq;E0X2xg$kni|>3tCy{li84{O9!K zy7l8}<5H(LWY4AN1O(mFK^DK~gW;0G%|14*$s4anR#r4+nOjlzVt1r-1LQjQ55Uhv z3_D$CU>+PS(z!USORAp)doXXEQO$@G3#g7ftP`hY7c+)hGQQ9XRGrW}<$|2Kb6Wjf zIE8UF(uIjPv|pvzkKT_kSsZAbWf`>>MZT!FB*fPIW#Kp10(6rYa1M-o*pwTpy}fHC zD~aNG_2Ihl&I2ZC9JG9H)$+TRPtRjQKdD@MOL9g zWqM@gFOidRJz_B#cm&a++5KQqMUx@Zj_y;XfN_bjAHL ztW4a>5NGReSSVpNGPO#P@ew-TaO61uH^GaSKWEDI4*8ZVp)`F5t<0>o$Ia z>0kR{s20j(mr+U=sNN`{o^1rgPLW|-E>Beb|27~ZV~H0o9CiG>Rlhtc;x%ly!w6k7oRRL>vlmF)r_OHL z1q{_s)ble}iqk1ujhQjw4S`T_HG}{ftX;4sDwoj_`@^klFm$wi%YRDhw~nn2@q-NU$y@ zq7pU1q{Sye6cNh?6^Z}1v?Sdsdw($mnr2YHwWC8nlf#&>gr5!H& zZQ{kp=?-lW==J{N*5|^WW4LENMsN|o{kwS!>^o9av%AwZP1_@}*8s9vm%{!x&w(vh z76kbTT4#~?Fo*5 zdI&r6_ydQH)q~PUtqy+_vZ=M_PO*O*ZeZ>!PqrDkqTaEuAd%8O3Z=~Fz=$1Sw8=fx ziSP%4d=;H;%eC-h_IZ%7dxK!njb-Z^Cf>d{yx|P&Oq2qJ=IFmj@%$=$rd>bm?n8AZ znWYUE+xstfLDy4EVoMM5%>)>iAG{lg9}?BiFJY%U_ID=WnrUSI$n8bYDLUV4AhULW zCHp2-AMvIM9nu~!IE}u?;M(!nF#R(zqStkjxb+7EIt=j!|6yWf#%e>RDv=Mej6SVMjz%1vio)EBi}b-KRT ze(qO6cM$AlmuLL)dWLG)m|p&s7T^E1=?UQ8{3D&OLC4LvBam^bzgYHV8Qb??9)o0y z3q7Z(*s`uXduA~OmN#WaFk6`I1X^g~?NU=Dd+>*Wa-n>?aCN(o!gYJMqUxDrXg=Nr zFYP!9Q_O9i4ByI7cLn8LiXgEjIsQLwMCnJ?20BG>5-I&p-S(T-@Kux1y~g={crZgv zj36(BjmL5e3U@{?*K%Fa3(S+7_20LqW)JArzUUA>>gme*MB2{~JJQQ0I$sNXI8oc@8_~MXQ@sx3Qs2RH>SdH+*N_1#Cw{L~T{xk{(LFNR9yI7e$(60;}2} z_|>B!DGyL~x#w+GaX zsNvXi>Ua!Vr=zOY05{`QD6lJUjPKtrV5`Gy{;S${f45w@i_NLvefaJJ=$Q2%3r=d? zEAdn9*WUqdVY!X7Z~lNkzW%!F+IvW7i>V(#_C7@z0en|ruWpr~O4h$|H24TxyBRui zb3Wk^SG>cUvsjM#A+bV_7)Du4)A6*(yll|tVYp>+XvR70X2`4+ft#2Py_Dp}8U4G+ z%Fz7Cz|?>2@E}&ZZdB?3JIj7(56O0!R6YM~>T!VPeoH@|r)n_|hHaR%O@yP)GE=3U z9Wj{uFN1^PM=m1+nU#|>>AHnW`wD>4oCD@P*=vFI3smnwZcW9j@a1PIV7)>g=g|(0 zH%l+(^vW#mrFJ#>2!A>kHgCt*3HLSf?{^Q9t#$MOgo9mhjjezoKLT# zxP>&fCx$RUCa|fOdJsjYyW)ORuUC_E>UEH*V)EKxr4_e~o*~rSGkMwfi}mTB%gtxn){_#sPRd_$LLH})pRg5oU_GWrk1ol>Uz36G|pTc8_@fmfUcl$P+8A~r7 zBl7J#M}{o_DTsXL4PuI5h7o@^>xu^`(xl`_4@G0B#UW^4Q5O{%+iK(1=`(k|HBW7X zHV|H^E8RYU6bC(ifspJZ@GEt`uA0r1akqMHNtpkD(ENksGdI!6T5c39^BH=Q=Gxdd zHT~L{Sh$HmZhnlKcV~qF>=th*j?J$&NF-yc4RiTSXE&9Pz^r((*g>_(TK!c2DQ?if z?SDiNSj<^F=_iLzqduZV2gYNX_^7umy61*WpzyJzb5rdovWCr%bL5%~?w_ZPs{q8U z=B~dFkv#=9ai@z7LJ@56ppF-)E%jP;)!dU&^=K}Ncxz{)E*8_cqV6KoLjCfJ633d* z`jp)iX0*E5RT<3q#IsB`vn6{(Dd!rSs#mWm?Wl6A6I@LL%q6?ckvZ}teihtM-L@l* zKmBPe480mJv8(mt3;{5cy6S@XR#YJDW8r=T#V&#@Y*s?K`%%6A!3*xm%ayq>`irK@ zl_lFOO?_DK-CN^#^+4RxZF%Z>&%BCPhQ0A>{J-cMe!~szzQr+~!T8c5&)(*i?{i}X zX~jEq>Xu=;ZoxRSC_ic;b^N2;O(Ydq|fTDrBH z=}EEUhV9Ba)Rk}U7Sgh?udY-(o3uM8Q8w;VRMc^v-19D z^}aT;3rYCYi26^H<@;li>qide)2Y)-XTQUPY!rW&j7tx>qne$N0Vk5xz-+3_8OvowoJ(lbXFxtS{L+<#p=M}ABF4csTgIgcodhQ*c0_O!D4DWrNUF+1>RR%!~IB7*(J~?wR(M9Yy zseaimhmVmhrf(j(Bx!dvQ zdA4SU?oqF9U$oRQJ%e&0>#sei@KakSZiQq!b2IE>*P6(06$yeMaaLiFy{LP0q0QmF zLG)~d;JLF&@M;{#?vRQYB-=F3WOP(3NEV}1yYf(?f~WG7ZNBc(J%9J9wPa-YbeC=c zvl-Z9+s9^D&1Q4wwGNSDOvUseS1l_`H?!e_2-#FHMl^0&DAgM7%|#`fu#IZ--C`|_ z?@4#M@%gtUl4JR4#PuA(PC(3WVBA2sJWlp`C@TtHJ&8ff+QEuQ8AMl=1=}PQEBzUT ziqFLxCmGc3O1LO|w5)ov_G+>nJr1F6igQNV{*|ez?uP0#=h~&t*0z^<0P2`4zS|L} zHuG8$KSgu(%h%-ZuA@6`ENRoJ4#eSM z@v@pbQzBRbF5OVf4gowP!Lq4V!Q7LqO^CE#w+a-#wVAuxUmu+4015U5z_-&?KX}Nt z+F-*3p*5#Zwl!ISLdeL3>EbaCQYP_jOV+pi)P3EjH##MG)p+&t8fol#9x!-e&6jO} zS{NWQ{~wummiZu6W)(U+{obvu>_Aj3_yZx`8r!Y^;j$}yBY3o5H%qcd$+t)yDb>Sc zt>#ZOhx#pQ=8H@}p5;kfQ?EvN97?AyC5cduCqBr1m$hF?laJEYigZns=RTiTna-w1 z{+Dp=e{~8>+Z8r49x`3%a;Y<{cf2p5!|{huweodQQ9gyJe}~n0Q|^Ho{T?}y{V$y6 zT~{-ViI&f{I$2m}j5If#fT1%8PMRZki{WzIQ@g)B45FC7acmZz^jBlViOXkq2y1gP z_t}|tG~alb7sPy4wvXN+6l#($R9i#8f1a!_ZU)-4WzgOm(KmL(+Uh=RnSy8U6j1`& z`>*9!4=$?zqfbg2Or3cL;*=z0PO}~AZ6hXtH~uz681FfTZ?tF zEw??+ma=-;eyBP-Hwb>suk?Vo^em!#a8MT}&D8vgyP$I~wM4YTTk%LU#DHz+P%%4d z{VD#22e*w5JMck+=kuT=sI=l`x$v6kugk8zhMa#6Q9QR=I#8#i7f80Il%vdGHP37R zz;QBdq~`bn7Y^9h-%o25vn?MEaj%7YT#n*ZS_b9<=D(X}7d5+?TuVMf^~5Pnv{) zkG`w4YR_?B?@Xjn9Pm#Pk~1;Bh*6+(Mn$qQ`H)L#`7G5P{*_Hd!@Ho3^v$pDH08-g@ z*EnoUqzE`Q{Br)Bd@#U6E{6KDOX{UZ!CvC#@i#gbdv_|!jN@Vt6q&4gEMpu#@9W)u z1t|Z>^*LEh^)F=&G^O2!%dl`ZVR;S`p5+^LU1sbS7l&&>8TOmVmIDP$kh=VXm21h> zx{R%34FqF{wO5-c_~u`mbqtxE+Kwpqm$h@^Ulm|Re+^~NIQ+!8a*oTXk8gETJh9|( z{N!T2v6p$75ZjK$V7E9g8CMejw=8zkojl|U+n$YDe4Q1w(2wBM`QilDI8~oZvLrr7 zm)QJlCps|IZd72v2ox6IDuYCR6Fo)H+%Qw#3mramOm+1aVC<{|M#AXd%cOB}lKL(V zTiq68I8Cfz+wf8k&^PS8R#nZLcBRPezBX*3YTRbXYiR zT+NbC1dUpH5<|6FjQ$I1W5hdf>^D~%KGHriMTV`Z)ch1nA$M^ovg+JuV?oZ?j zh3l2D`@r^;AIQ~P?@^TwFQ^JMMo(uAzU=kF7dzEp3j-p}+6ZIi&5 z=UD`Y{NJ;z0?ZF#F0LE~5bm5>Sb9_7^$N~yX5bYM1^~+bH2I@`o$hvk{+Za?58iLe ziRh!{n%}4&`@Vp)v+a>Zu6}sEG;>ev->jVlkihO=LmU4_1~%J-A}dT?Enr-i$!DqK zt(QQ&Z%u9j9G-<1T>~~(i!AS5Hr-^Lw_{owCIeV*;Kz-Az#CxjD8L%1a^H1U|GDBnqR$}p=OlKHjuQ<>{QHr z>_@|J=^kG6-u$67E*%IG{!=s`n{C(mEBhO@Apf*PTX?@h52-%;GsUfL6r-3*D```z z*AZ{$Sxfj6>Qn7}LZ2OCI9-@qL~m&nU|kA;wCOS-mlYu$X;g#aGU~{?kE0*@Hnc72 z`yAc!m{;@b%P(QxWM zRX*~#7kyUU!(QP`ZqhknK@Ll$ut`POs3`o8m1+(F9Sc(|x`o3fwd_cJFnu<@d$G9M znk<^PRHO*T(4x;|;%nb(^foAMJ~6CqM&b~RSYhxWRyMrkkn42+iTYTPS7`YJE&f?2 zWB-yvR^(4tM+x3m;&HrkxjL4GPV3eTVR9AJ;Ao}hGU4lYVO^Q01!W8sqk5GnP2VqL z40VK8tUnh8yWza-c;nbQW$Nj=;dvN}pI8Tf@0W99_*-+n3Hya4iT_Jz_e&UjTJ1Ug z$oB$aqEd_}BkomIb@6t_u`O)`YI7$425_KveB0VKxK|sG-dP<%GbADOfj0c;kohBr z$cx5kO|{*iBDcuCBcXsZK^kz1>Uy?Har29s^c5JYKn2mBH{Njm+u(9NA*FPO=Iq#y5XJ^ zrT=Ai`pVo>gc@*m`c8eool_m!#{sGhBW8Z3328dZDP_*oYQypnwpT;ro>lA!DaaKQ zR0d=vKDG@XnLYZg`RUNXlsnv7GkQzRx8H&F6~Bc^$S#fuM@HwZ$0MLbGD-X5P}yJA zVAqgQ(aer~k-uDxlcmnwH;dGRSkVlh@((9#=G7-ZEitGmb(G%d-dc(;c9DQpVtAAk z<1*{@!W!kCMYy`X#~ba={)4Gm7!xnt8BRekZwD8dD1d3|&Nj&%iA@@a2Oi)_U*uKP z^WsW{>$?h{h4cO}6ub}?prd{a4*+HjToV?s9A-Pyqofq!2|I$PTD^hv91O$ji`BAM#KJ<#dl6prr()mfkd|lJ_?Ok_&+?P#?{&AlV zWiPZ(j}dw4mR2Fj)6T42>_?$bCye2~zivn?amk?SZU1EKU6vSi9W>uVbF)L8O;-6> zwB(7tc>{|^@H1j&d%Uj0W2)TQ?4c>UlcG}2f#I(Dr)sVJ0JrX2&gi1|*X#@f@X$`u zmKvg}z3DTQ5>wF=`}-TUcoOA5DE4XcT=0`otJnVG+2`WV<_PGy~c2QHYu8ERUx)@W$aj@{+$a zs|7)!Xgk2fkTCw~z8=|QSjEvi?g_1H+#v11-jP8|9T?hrrYBVLs+SgwgpEVG@hCpX$pT?X6+OH1Iv9QqP7s-Fi5@dj{44L9#6TM{atJLyw` z{Kgw*kHNpV;+gLRnUKjZ^r)}w(P7l5Ph3~nCxaMr;@Abv{K3$TI?+?RQ67vTcX7El zyt5BgNc55|>@x{r$4~PGAkJ2tov zcKr-TF4|Pve(jeUMg^LJ+YH4URUdslqkJQ4yE>Fk4V6uXhVqB!$bm3PI-`0sKM8_L zZ$HfU&WX6!nOcbLlN zMvjDjt%?skrsl=VMt(qaGMQAR{xj%;F7Cr3!jD1->MNdpa!cuZEq+jcwNpWuNOcgM zWYrUb4rW7a8I@8O{{J2cbys#;S&VIRL`a)dtN+mYA5;aXUGsWH5GMoBNBbXlTa13g zOVT2Npw?lL7LUla5s0=uRv?fa;96f|M>BQFQ_IsjZzH&)AnNXLPe}z3PW@@p{?RVS zF0Y~Hoy+5Lelgv?>sq5xF*vegz#uu?)Kc@_8SGopRjzJ1IOOD>0vpi^ot#2m1;39Ir7m74W!kqJDJJ`l{yz6!MEm@O{p7Q%(!yEp* zoq_NR`Qp~;-x>(k`Y6#i*Y>6Coz3?)9j$Td>)$|~^3yAFJK)Gz`hjIr7VtJp;%oq# z?tiAy6Z4Ee{(NBJ;Z^22I6Jp~{-(XO$=G%&3m9*g6;N}>6YZzC{~8KOH8$o(TTWIb zo@D>5FIJkd@N+FqG4toZgylQFkD_Pus0;WVNl9h&SlC>?X_!OH-(4~Tz0@jo5b@4r zzP`P>z4%M9x+{L1!rYaVS&0){op@DJTx+Bqr;u&(gqYM9x8lYcST89~Z*|ja8 zbI<=0%MPOO{lLE#6*V~zu<18H#D*JzKzOgYBUVcb2et6IgvB~aDHIq<8aQE%8P@3z zDp!vXeCGI$hSe^;Q5xSVrz@AD8s8|!lzEv%r;SbDYU(bw@JS zTAx1{W;-(<^?9#x6+g<4ty8zM7WHNC6V4~E`d=ER9>CEE1L74`HLR{_rg?HR3>1wZ|!X((U|+{F7n}!&$F^!(=W z_uiM-tt}WVD_#~`L^m)RKjS(t7grg%BIQYf#oL*(2b$o!cUJkjO@~d$gJ>_x^a4BvFDrDn2 zuWqFdUFMp~V|7^unOffB-sr9uU|&Br3%|D!tcPvLqGJ6TgLG1j+ujxiCpWMJr3ZYZ z>X`SbkbtKa;G4^T1jUm=C)JmA%>GJzD5=d1zkTt3@}6G(7dhebz|+9=M9UX&&8BD2 z2d`hU_vDPM>s>}`?3sAxoyicV+K(}>_|q50vu#~7|95vro_w08XB|QNwKL_=xscr3 z0l@!{uQv@#GVT9|bDU(F6l$DG#ihp5DRV&+MNy~mPVdI;F2^NvCo{tpM8O0zCYJ=4 z$bGA^G*eOBF+@#8+%?zC+`yGgQA|Ru=bHa>JTLzD?{_@M`N|imM{-`*_p^Q@9VY-j z>;yS4Hz?HORQ${u|H`L$sW5Sg9O}|7cm$5j&C0cuY>sB;t?XO@e;yv0D=yWvc2oUy zKTJ6}YV%iX&UX%~fB9I`N|yRu$FoR-h_&xDP?wAS%5D0$Xn0YQ2Cobn8m8!_>X}u< z+e|}A=*r$hV>m~M&jlm#^wV}}4Wbhi#_4KAb6C{Fs!ABM{q?4;T=!L*nVs=$#tMiz z{%Y{s0{dl!>Pu9n;3dZf3AlTaeb9W|uo^ZMv^$5jJ3T=lYX;4|A|)Ko|GF~rWVPMW z(ZA1wxmPrGO?LvN(thiC8L4%w4pgb@uqb4Aixq6Lku_|Dz1nQKMam9$6jS9=108t#tH+<|Od|>CvZ@Mjr z#Bm^=vx){Le$jwYZc*t0Sw@GbSR-7uR)mHddWsTbyId7$M!21?GCb_rpwFGAZs#D zQsN|AEy&aQlIA#r#poC7Zj780Y|(^$Du@;fm;T(mxqus*w@}X=dW};ROS&Bk3B*ug z+IEmiIg`EEDx<<%N&%Y&b%ffPG95Evz376uQo`4++o5l3d4IHP>`nHxZzaIDjT>9g@2mPiuK;(5T-ns!mm`l}Dwk6*>Q)~5 zQI%svo8ESG2;KVYc%DdL<`ktGYh*~cBxYfB%P-C?4 z{*3hH#!W%fRj7nxr8XVKUc3rL{aJDm0<2j?z?iDmf{PQC%6YW?t3FQHY}yt${{ z5Oo>u$&1W`h3{m0o4LHZp|y3=aobjwlp3(GnzGQ1D^L!YC_M5SeYki=D|7-s*H4~a zgTAYaue|0lXE!V9{$i!sfLyuTKRlLawQDm){j}Sp(I-X95&YmaAO$Q1fA88lx-8R_ zhej6&|L(;(F0REZlsj@B6x>FhXjd=^N)=wQ@$lty@z{JEuM}cyc;q2Vu6*y@$DEA5AEH#L(%;R-P-> zcENsc`A_xZR4fguq76I0+tvv}FQ2itsI4o?+>UX7J?jYvyc{C?Sz_XujQoa=fet1s zd*jhX2FW5`lMiyEmokfYSZAL-;s;$yKuP73GT>gs z?X2`_@MzMc@Gto$ZY_%OaCHxouD?g?xY(MJU|_Dtf7#bKsJi@=lcL7in%cg}s>+Cm zNjw+(fyO8g>a`oQlM@KN+aDE6RvV5cLG(&(pn7A;!u_w0O9qUhc(FxaS&vB~NHX)f zjHTnJHw)^pmB&fu?2{JRM_Wb)r@?nJN%~%r@l&}u>S04aNxM)R) zLaoeShI{ck3egT;h`0*m1SPY>r`O>_Ur54b^Ly~AIa!zU)UE4P9#ZOaIS zA&Nmja)vyq(f{A#QF-f!n^JI_;Jk$A!FYv8-tFh!n3_o=_oMmodBD)H@oyKxPmTl; zEuL7m(A!U3EEV$P3q%!pCLgE&`rDe$s1nwKz4_fpMh%>j0`4@v^V|m%M?M`i1WjV8 zTdZKP7H?W8%-_O`aa^ih&w85QVixwJ_m#f8vJQ0gqR|7K`TV7i%Zl_K;D zOn|$jXq^e_AKQIJZq8A6Un@`F`jxafmWi2KocCTlUdZm`!nVlCto&1f7;Sx>6zo&` znY0kS&F6BB?lxt3M*3@C=Zc!O615++KRx5ati@Wo`hqsW1zDCvKg2I^XkC!~pY_cf z=$VOyUr0~|NGG=xb6?uB7e9A3J8TO`rA>bM<#|_2>b9qpBTouYsT+jHYlP!Xf6j6z zoo2i9iJP@fO*@}XedL~plxwA6D$)fBuKDt4_n_9z>6fIe4L%TX)1U45cMZuV;Jk|k z<;FJU;U2XZEW2IY=jx#zY8pZr848fLo&izXr9$ALh)nKgkF=)HPi3^5Y&#OiHd&v0 z;Y8W)$b$R6%2SZkI22TYUEEOY_Y_=GN_s3m^qV zpQ7!6rUD{CT9IOMaMsBE1{5|9R#h^_oluV###SnXm$7pdivnna@GN?xW<&6B~&$>LXP`i%qu^YP&4h@vbPr zDf|5)eRwzmBHO>_^Tm zSjw_hCd^@UPB(AY7o+^(pW2jcrt}J+R-pj~)#_bQjTs~c(5=6a+jO=;=&Bod zN3js(NAwoP$|+Ah9kjgFMFaL$los-j71^u$?I%2gSRgwdGn0lb^y@J4?p^aeOe-1n z%CEzVHitvS6DbkyV=&L<#4yBaZu1@-~iJsUF<7_Mb`C0%DX?EAfmqsEWI}dTL^P)T^5( zyv9fIBC7j@qDj|Idrp6Q&2fn9x`L+K_S1n5VAGTMRD8Iq460Bdo$XwBqzE}OFnPB> zEk8uB<9EyWz;YmFqVPp3bLVX)Yce@p@n{xFfr&4^Q&M^1rUQoxbP)*jw}LKiodw?c z2u%tvsonA5xgE!4om)DtaFdu@gxM+vw@A*gm5yRPCVpY?S;uUM#~)eTy)z?9Ppnu% z^;7%BSe--&m}gi*@%s}MK7MM(B$Lv9jWBPdD&aV&sY0650ybZgdzBwc%WC5Y7BFX+ zlV|76Jf#B zKC;;+jT)l%EMZ$GO927^qlvlJWHliYlhiQ`R5F%kxc z;~VWX9#^Iy8Eas>Tl-R|!kj{dpgHCKqsGKuUd=J+M`p2Z_>^&6g+h2YU=Xp=-Z=v=6XC}3xUluY!>mO3S|fE}DzurO%KdykL`837{> z=1!4-3$#F;P#$k@rRKxAlkcvFP{#XVyfzNv(n-PTl4@7qqS8UaOJ$Wtu^xD_hia>g zA(y#3$zTEAfS?{@RQpeOE`Mu|wo(7*C!wy%MtzTM*MA4`YrccJO2LhThn`mCo(=b& zHr84$KB5BEhwQc09JkALVok2K1lL=^S2owJj@|qCieioC==?1D=3$43@i(5ZAA_AxR1mM-L02Wg>AG5Q5(~04WAMt#B_#jo**}G z|D}7N1chG`b=*O6M>)7l)xCN1Ly-fPo!lZdBKDjH;)%dmzhdi7CcAAE+1-6lsz6B% zN$>`AoG0l0@gw$1ELH9=Xcxj0s@g?4v!k7Dg zPlWC+;uqJv5UGp94eTfKMfnPTF!4BeCdYAys?u+GP4Fg5xO#MUL9xUSDe8Vdh4^IC zKuLiSRwtMp4Li4@f41=`EYp*mGanCOSDoDusTYse^w0w^t-AW(tmBH7EWx#X+2T5% za!z4Wj^#|rRO0Gxn6mSP@OUNQRE%d8mfNkZHGOAEvz~F6=cpG?g=!>y(J5p%_4NxIux5!EXPE^2c#Wa8zZ)>RXqsP%*V>qpb9Rd4P1oKlXc|?ZE=~Hgx zboM3&+L#84$OTy{4Fwz*wAAbcS(KqC0TV33@t4d<{loaVzf)omqF&dnbMT!>1Vn_j z3uqrxULCmr(zpA@DFXN%@?k7LLw$9iKK37`&8RAicK3g%^WIK}lP7DJe@l{c2!34U z)9z^W+scPaiNa7hF#LV+zZ6Txq?4PNztf>iC-^G#^|k0yUT6>g)vRB5uk^*Bj9iwV zhsbHY^*>r&^KA~nZ`<%M&w^Ft6bF!5zomdZ*RCSxN|QeOHr{4!&fUx-P2TS%%W1Dy zFPRlQw7~vGkN;!S*&-B(jG>;TkUmjBUUpk-~U>O5@Y3FGrq0oJ)-wu5N{6D9SuKr@d93;*I?s1f*UYypUu*r z#N1P)xi=iK%NH5T=v8Roz!3q!uTUkQ1gW{=HTO4Zb=`FuEj(@=cqt3FBJ4c+n_jk2 zwXnx*!S37SWVxM3E~TAktRK-)Oy5f;hXpk%9nE5atQGce*&C9A*09ofq}EXrO8BJM zW58Ir7zNa4SPSRMBy?72BEz}8?xbK4=SQ7yg%j3t49$a{)Ln~EwpWr+N)}$(0=nmF zkx<#U(gz~*PZ3&s{PtJwgz~XapkZVCJ8NPFs@?r@=I7AiO{yH?mNJD&UxkK@ z14aM-pSZr1PUgcd4H@uWvLb3N@k(}B;mG9aiM-*7ENVP#yM8cThQn&(_Gf)X4@@yX zr!vZ5{wkZiobL+lOqXW;Rq?zqWvJ*9%F$kyaW;qGp+Dd`w z@V)}H-k14m&~>Oi4gI5vT@1iXpEWvAYGFxYH3i=}Om&-9{{Q8+05|zTCH%u7pFe?C z2l@q>awvT|u&AWX(I|k)d=MEf&V&aKiPS@S$`-IFik;+2ahtXkScECEF-4W)xOS#+ z)vw*O2ujM`hh7j+YfYOWoO4IfMgmg}ujQ{k>a_Mv&_&D2c=;N$xRx&{z>XvRjYm=? z115lk*~*uS<9(_Ay}$`h8QFZHCK>%BI}DZ4HTh)mW&FS9^5Tz&q*!>~;i^|6{3^1( zxy6JM^d3j>uknmD4^}eK9-4LFoz1^kcV{;5#BU7e*jbFro1(63LQpF&ADT1*lv9~u ze^hrifF>(WVfq=WZ~ZQAy*4-S^bJ>@oe5b9*yKl(+aj0Ds%;9c*^feH+5MVc`g2gz zi8B2ON~Y@_!Q!7Ag-Vd>!CwjGPMTiP$BN{>rITSWL-VaZV1C%=KQlAt)GVdD$kxGT zlu``)@5uvO)jAZ8@&=NO!x6f^wXvXF$|+epS<>T%9`901`uXrpZftozq@(u!Qaon$RhpV%5W~?f(AxTdH(?mRJqlEJd;`KslWcJFxPgkUM%L zW??A1W>Q3^FKJgQdvE6NmPYsjs;y=mY0>$1pA`|~;oqE)o{^`n!osn;&n%DQ=wA4j z=`Ny8zNDN@u|Ss(C@_3H{Oo;e%c|j+V@d3~Qb7-%`DoZmm0)mklUbkeV#b2wLfBIL z$4FtTOz-N6^>W+s@G5xVLl=1*=y`7ctHeuk>EI^x*4C3#vb$EQ({FNlTxK%A!+Az2 zDXWJzxOiN~UT^D{ktdAO?F72HR;lG$g2i$LCn@E4B%se6wFV3p+c#)1e|z;=CqU_L zO``Vz#@`LrETfxwWnkx#85>*B)IYbJQ%ftE@+&yFA&(UM-52p9s|wjVNso~ z;zjljnPNwezt-ILY$CGL7@Wem?<05X=7~ZU;N>q9BIs&?TdKCn9mgEfvG#KZ9ajon zd#_n+29($n{)~^Z00zgP8(MfQxRo2EvL?YrhYwEd{7?wvX$8%lx!u(^j!dT>rhH`x zlo!t-;cUux4kM9U&qELf=0vDhdS>4}i`m6tnZB1K#J9=&yUd4$k`L`!+h-#eJ6#TL zd`FKS=K|B4qy%D)0)%?6py~{Y|9S#SRO3e)yrH!|_w_*V7>XINO#Kkav7D`Yqtw0O%F%abxQ{@D z31zd2-rd*K0QYpzxW%@W3r~@#+4?L*^1h+4&97eW6_8(GUVfN&>3@Qcy;p~FPaC;; zf4H<52O{>IAb%`YyeQ`pTt76gMVJiqDTxVceVb~AcfI?$qeM6ZkiVrfu{YLVmCLy+>PGp&IDhvU;s(w|x$V5j zgY!KOymPbex-2@etCz&{*}1drJ(3Nw)&By3F=a#jSlvQP`@UV7QQatM~f)VNT|sFLB+g$LtF9j}A-L@30UEP0^*95;#x^{e3jR76GGUuO63+?SKPXdE=hbzSY1E+AZ0#g;1o zwMH@yW7^gkh2lty%Y{ut^}&eSm3U=?+v91hWNpP=dS!Gr)Of3V`A6mQL6a6tt|kEx z$%+6@^0U7Jrz|AACMf#wKagCvY2^*)n}6v$t$04cB*j@jk1si1e}`?bf5gDGYCxmS27BqZL7wNf==A@m=ZT7eQy zaO4;Ybk5&kRVZ@uET_N51kxY^REEucmajy=mKEc7aOV$)rsC2(`t)Yy)-HZrs; zPU7S>CKJPfZ&53oGyp5xqLNzui6Uf9Lt0_fikaIz{__yjnao!s4GI%ff~ozqccWLw z)1qq*VPjw@hRZA?Jc7XyPlP_vl4~xg`TJV18&JI9KpN7-m&!!{EpgV+_5H{qOWQ>+ zyR|!P6hl%Nb4Gp~(~!|;9GN&=hVokV$;||x z>8S*tygDlzmFfuZ>%|ZUNu>e-P|rL(MvCtB8P^I)zjH#STr=}Ra1wY%&&}m-<&Nwk zbp4i+mwEf$WR7e+Ybwl;(-U+tnY^QDRTw8H;P|(4WmJUO(skv66Le9{BWo~mB5(XA zWO69shL@xi*KO##Z@!V%1}slf;=3Wy)z(unpzQpm$IS;akhQwq{HzZ@L*~NQtw;$+ni<~YkJGG8^#;DqctPe6WnKQV44DN1RsGXNbVbV2|!B@e`RPYM-#=;+p$HP&z>Bj8;3 zc1p^U+}C&T`tNqdr}9scL~lM9&*Dcox6S^S0=TbfTA>}q&EMo|hvT~BetI@$mj0O|$>6 z3*a@y@8=fKzk~6N5i2l#ODRboHIVc*U7q~m&UWCZt>TcS(|`~K)WHAyDwNYojV>!= zCuA-e6LA<9sNPzwdVSyV0?eYLx#M(}N z#DEsQtFx$mkgccw8rf)2!YZ_a6&cj0g@k+Sn@0oBf5wW}Cx8(dc+Z9G`l)`5y`lS$ zVTO(dtTd-R@#%`vh1FRsufCDI)Df`7=tB(|kEQb(8;-^usIo!|(2VsH;AXqtbx^Pi zi6~FIW-oa_E)KjXb~Z8@DrYmw*fi6<5AzGsDm%U6A-@@QQ_L&f9DPtw`BBsgM&((r zvf`lOfbmW_sr76n<9`^kI-wi{1(Au!jD zzHa)&EPS=W>bh&+ohv-M@q^WLjfejPS6`F&0j>eKdD-#q-Q5FCf&lq^bb>XY(ZI^A-V zKw2c`BE=<(`|X$e`9N2kARBR31N%Efhj(SX(j5pBempv4nvxt)Y0@78VbJk$ko$Z+`RN=wW*mSF`LPe(?P4#Jg@MXp!Doy|Nl{h2(S9i zIv9bWQmM3DjVDC_-}I<;+3M%qrY}mu(f;uZxx*Yf2h?JM*Ei=yjvUEwhH;%h_5kCg z`Xsg}n+9K_^oRL%m3o=|_Db2ijtt5TT$xNAsj3497Z1C9`*3@=O$Clq&LtgVOtRj$ z&Otp<|5`qiZM+ZFZR+XA1G%e2FZ;m0%LRAU6l=D_(qy2vs_#8FSF7Rp21H*Y3&P(DR=&6hY)rWFlvL-rO$IcQ7PPAYuj1Zn=N zXZU1xiUNJ>ZNtg6xo+1E{(%SfI$SgG+UkOa_<%> z4%vA}efQTACj|uM9NKWpl9eb_)Jh?hUr86XoAlnEdQhm$clkOi%OR@%mt|m zl1mefKxSFi%46%POT9B;CEui~HfJOuvi1|h&dZ4|__rq(*g1P|!N!zVv7O4E10EU| zfbOTKl_tq@Km_L2gd9;xA6b7K0@DO#xhGLZ)^e(JC_a| zwdk60k$Qn3AMFFyg55H~k=B@fPFIR#Nl7K|O&1&hC`*^;*6rPFaRlnlxXT6iQh zfTj>WssTmTJ_2H6R=fIe#TvoCJ@Pg8MPFt-cxw$knCv~yXv)QyPQDx;u zhL*1B1|1IE1dsGW(tqECuQ4~IjQ-FV1O&V%EAM_@1j<4GrlbHKDc)c1Mmk9HyFZ#ZF@);kZa!ID}D)}=7M zQ*zAcF=GTmTsWRWkwgD0ALnfg5U7{XG<3$ja}!F9Ze`J*VD@A!UfHfPe8;m*Cn!M| zw{%)28^K*3AdQyF1nm|V{+I*ASD1!K@Uc}kK_{sqHXbTL6~g)dS^m+K z&>8y-H}hdIhwd6(zA(W2p0+DfFJ_R`la=D(hH%lEzNY9>IAGMaSpH4cC9KF_h9`M8 zn5STYW8BcfK6X@eA3LY(-j`&ud|k1?X?84;5#la!frNOtkW#!Id9Iz(m4Y8+F#~2M zjdyN9H`LH=(G!N>Wx^+WQDDmQ0ofMII+~PHyZzPQmc`@zeKEy2@Rj`yHszG5Ul`_$ z08lv6=l@OtM~`PR@{AZ;FVvPVgS%>nb*tsdaeB_a!_M?aValp{66d8H1^)kU(N1~! zp>H@;aL%EoFbwUv4n!5Bet}>nO6{V`Lt$_-^O_8=kYv3Pi=wNV5@W|IZee zt5hSG$Z8NI|9DZk$CBO~0PEG!tN{lFf6CI@Rx<7Y$mpQ&0ZtP2yw~s_NX()vOI<`> zB2+lBkGbNEpG1gz+*)Zok%7P8LXo06@^dHU6M{p@Hm|$R0fu%%RW!Nc>yTf+BKFfy zsKPKMb~J%p7@gdD6^QMvJ@)_EYs$%!bBFHog&K)y5;<*X293A>XS?G#)}x&wn8iJl`j6smJt8(}HaMda_FLRzpy#14{?ZewjXPHLgx*b3%+K=@NU3LiQWY=br8m z9s#wqE_G!J=vQj^;TP^fsm;r+BSVV^o%773DFpy*W#sjMg1~y zkMMKhuJ=@%Ze$%$gB{JVs=e&OvmDqvBD>Rv^9btr)AKIMV56foS5Q-#Emq~oP~hWt zYsW7*9DrM$Reh&i`nzH1hke@?h`Gy!gL1cWw*OqbrqY_wRX_EszxHSVs1iM?uyao4 zlN$=JPdX@(Q$VN;;*tx?)3aDct+)2QQ?V8E{;)}Yyj zG`1D;OP|6R#A6^5a%&ef&G}o6c-EdGG<9A+?S}%`R7+il{&!(?-<6T;bnNT9+Qlkt zjLMm1W1=t0?7Hrn4|u>LYdAXBdR%YA5`Sk&Z|j3p5@fx#(VP$B;XBoPZM?k3A{X>M zMLzass~Ua@x0yN;1)Ag=oBaHu zV6!#0@X=KZk##(!BNrKXdjuRDj`LibzoPnaTzS6TVTz)+R$jucIDrIuS^BO*Vd}Y$ zuEo)m)8|`_?D8>-haGVoe{)=P?WY}SwSQ!W7=&WUaR<8gqPsQoZ>A#1P;Iu(i?RqsVie#Ag^1#7JDWOsDfPM8ia9oyfq1JZ!F6V zb(eaSFH{1!Rg*{-re0NUiYE048ZrHeuA^hP7aQ(3)4Nn?z~&cYX#P&4S#E&+2c&-cck|6Tg?c`NP23k`;0m}J_8%RiJp_~p4ws*)4;K7jNc@)t^=GL4T^-Ey&Ky z6XGj|S$oV4+=qz+|B9WD&Ewmjc3WffQ14jUP#cb^4;MjT*eK@mQ%_OkWRcm@+Zq#F z)y@o=Hj%r zQ{13^$sj_C6a8`75GSs8PP{r(e}WYm`9ftXVgYJ?bh&9r12?(D`lTe#n)CNY#(X}02x>9m zcret9RvGe%FC=Z8an7l0jl*L<0p--s>0RF!^c{!pEA~E7&nkC%|LgMPXQB*+;0DEp zs;<5#5eP37QOox|lC@p`kEk(Osmo_U9yA;;;XO!3V`D7{tMN9TVa%o0T54mhG!NgK z1TN(0Li8tfk&-v7WtGIm*4FOn-muFh5X54QGbXpBkhvb;J~>wv5FcpHDI3_6arce_ z_xezLpUfX`-wEDzi9L9_{q-(0JL2$vA06k`{u8H-a7vBy$BU+Oe}UhBms4W2xXI@z zW|QL+U1m3HN&{u1V4HYqL7a|J%}Q#nbv9Lv!H+$ud1lI24$g^lJ$DIFyqq}t5-ny{1Az=74y{b%9;$f{9^lzsdjzmpGN!Kl{BvBVQ` z0`u}W#YSJv{Hp}gr-<@}EJ<4>qgKc7BSy9=n=@-EhYuK#VpahQw@|#CjB4ZX@z3BL zPRJjB3s`B`z_vzv+EI6jlr=hEpV(mu7@pNsmes^P1Zv*yUjfsPX=pr_HM}#8_S_aa zse1O`dsIl;o^OI}E}n7p1$s6dm!i^36aq1xK1CZHd^00dH&9EY+)M&^Xg*KM8TkWx zwnt+9X=jY^MqoCs+-Ebpbzx*y_-sUX;?g?5vzYe`jF_l89@DkOA)K|QFDGB=dx3v1 zMsCQ^ZQv?I%fD@HaNn6d!mEYF9+C>2>t>MW7 z#|dqKr)%@Wwv_vnLLuRE^AAY2fqA(2?~|D9c%(LJ1YHN~!T8b;q3iq4Q{eAxO)z@! zk0zQy9kmoWZ9-Fo$N~F(Ga^78vL$4n+6eFkN;j}(!$x0vV6pK+Bh5gr4Iv%nTNP^! zMc|!4<{Jhg6~aT^a7xQIS9$U2EWTW>Y2Y$t=jV1b_I!g}9#IV_xjY#h#MjdZ9E%N6 zRMzH^%Yyi(twKxFz=Sj*Zwe;|F%R(e`ZA?evOK%Hf2KWvcrB}a_{+b7&0!pnwfV0v z)PO1ljRuniDN6%;x`C>mS^WFmAElQ;1>X)mdHn%(cxDG;qDB(UueOmvyIEVsQzs_> z>xi2x@8@bGYgVr^jjm{;$OHYS^n(_qNfX~1x=9R; zOOEOxNB0^Z51F#9i!Fn3erHh})sEr+6RS;~#0=cYZ2G(|o`tc@<4sOts%}{DXa+&8 z*IS}b-}e}hx|<2#;+Cm3cEonOu8=j+z-mXcsxv1EtJaxzn?rYo0PGCgQ{jRNi$s0O0wQG_er`dI=xdJg%HX`%IxUn)%-}9rs=dFbRSrZ;P zlkq1SVFT-_yQgaHmi|5aCx{>#(~nrw`Lc$%%p!b? zN4bGE1-W9KZjlOdS=dk~CsB^sE6o=g$=t|O*caUcX7rg1S_!QC=m3e{e^r*DH;C0P zvdK+u2ue*X%!oMeAS@EpJJ4uDw*GcdfxqJ)L$y@9ZmkI;1{TO)YtumYb~tyyz8^tHH8#$zb$HXZDPP%;zl&l! z=?AXzp42P*K4L!TV8jh}lA)sebqE3Hvg7{-wn=RCotmEAo1Qf@i;VheCwO8mrkuK= z>bbZuCGM!bSm2Ul%%rB7<2;UXUhm!?X*?^F%t!upz?-?SNsk%oZt)YnNz$FU`6l;{ zi}!z>xf{;+<&vQq3!&{inQ}k9<}Yt`2p!xJeR$x5?ah$IBx$*u+rPda1TqBexw$uC zpS70T)ZxvDyoFxNzdmc}BH_lxa!t^XAbfvR4jHJ=AOG|=*0u{|&C#{qE(}g7lRCyfvfj{6Y>nvZU6`P9b-R?Y=o(oOH#)w0nqFaKvZ*9HX|-3Gau~X=8L}rs)(Off0nFu#(;<`t@1T{p z5C&|fR2q9;lfW1Qt7!Y(rERmY9cxK%PKhZXrYH|S%g z3JPG65 zSl@<9Ug^t62c`)J@4eI(JOJNYH{V;SDXGl&Gpy8)eH#GzNfa~lq(K^=O@L)d)cIzS1f{k&X<)PL@$Kn$w$p9Xng4pGPo8L8{!tWH zZG`O7D1|2l_e@70zrKA*M%C>-|BUuQ^ScM}az4RRk4yGe(O%wjFS?69JVSo_t=KQR ztUUnHidvSzEc_N3_`FcLASnRcI9j2{pIdqt_Lk#{Hv|z&@($dWr4*{+?(c_Ijc~LO z+)^q#ah8OS%5#%ZPl=#j{`~Y8V%TPp95V3Z_MtMuCN183t0$ZBvR!6Y5?~*Ar~d<@ zPS&APIy`ecmV`Gn$Blmn1|zG%l3-|H&^pvC0^nucURoBP$5!YHUR;zxU`IKmTll?0 zHw#WwGWh$BnnoBknKrZqJAmkrg~xoHa~(tS4)c7@!4Z|4?@2?kBN{LOJLLG%wv}bk z?e|=_viA77%Cu9-`w{oqC1U=Gb}blBbNQI$sx??#ZzsedCx=94?-Cd!>gC&c{QH#~ zTA{XCKniQCmej-4xmPf+wR}Q<_mi>>Z%{n6s8FuAB)d_!bNKc`x47JC83>5c;D8w6 z-X4C@EO^T;WYH5PKX^&aprAg@w5uA%?RdsivD6ymn^;Oe`n=`$N7xC{bK zmeVgB<3HA1EKk}mMML$>221kXdk2o_F~3qX2|6;l`+qSi?$!7ZtgS8QJB{su z=&EP2!!j0}h>5+Wru)Kzhxv?H2i03dsMh4@Ip9*1=H42&0uY1Mcs$_b^4G{^?PiU1 z@EY5+?Pn>(8hvN?sKxen3B*FYxeAHl_s0}_m@~MWr5nh^GY6*)Gyr!~w-2(yG6VgJ z$-{JsCH@(o)3>xL*z2pF*ZL z`kvX(9vCwBK2nk$i2^Wa?H>5gZ;b~B?bZ=PnpUQfM8Tb);mxD>?yPl@eEg5G5d z6L7%v$KJFrFKHkIq*El_5HAl}y4oii$pKhcjDt`mK6Y7-X*WvXE$5huThY^W(Q1qYBk`L%Kj3ykRSgjzZoOp@vNJPRH#Wb%K{v`{Yi0 zbMiyPGceSTxQkQ=hkn*73BmO39G3A&8TnDVAcCdYVPw`6;jQ7(WnF>Ex36QuWh6bU z_eQMR4%=-h+vIaN?%oNcM{dEr&|7^pyRL@E)Wh~}Tfd-|5B^|IoR{=LbNNBwg-(aT z#LpwUYHQh8xfTyzvYPByeKtpg+;D4)9jN=euZ*xj#zSes2UnqVVbF{+iRLiivi~`{ zinR27F_8>|?<;uC%ntXq?X+Q+{xA)%y#<4_>4V2JF+5RD-DY}%)_);hR*d#(@%)<#*{ zBy)bvRmXEmH+uU~tf}rI-DUrQ#DHXevx?d#H>+K`1e~vl|}VNt_gSoc0g=EC3a* zVAfyJED;mun@Zu`?-AX!tn;dzbFjXma?9;s#-cdxS0r3*mecK2V;H z{uuSPc-tyP2TcjwpYl84bCsjY8Lt-$fM2x2i{Gc%tZ<-~C8ijT9k!jR;qM;2MgXYP zE#X?6rTf~Jr=w?`C zey9DXK7+2OdyHp(c5TK+W3$gZTl~-X2l4H^rj(AtfyX3Fl;~(pY^>Me0v(QpO@q-( zLLqgaMYPajHxagx2DwpQxnkn5_5t3J!+Q>Nbp&{F-YY59z%jQfG-UIF$m{=LSlxdx z>}T@8y^Bl#3v_jLdTL~>y(>eZUPsME&^X2CA<`@D8b$+LCgCs*XhOr=c@c+3l&1ou zH31**TF0@YxmWxEY#zxM@i!r6a;7;1`I~Bwekx>ZfCCYsEVr353eq%}1&>%8Z7Jy`zs+ePHxF-kEI zNCH`Az%{kR&5u|&4>X{ffzu24iPOAU5)f84aQMiwO0fkua{xEod2D~7dboHhh|%L9jz4noJZ;?L(3Wt*8KyC7m8+; zi}CLx2epU|YND+-Y1@C~a!yCuQ&%k;-L<^CV-aZNc#msqEtomsI`N%sU9UJftO>)F z~=@ulc)GfH#;>U5#CMkcaYmnr) zjeO~aQaGhF9a_C)60%3g-?ExT4ekCg@krSHBG5b=HSsDaHRYZIYol!hb-IDwwDbX@ zYjW38n^KBBq^=3S6do{wsIAP{aP|E5@lXtkk~ASo(e*ocli5_C_FkDmv%qbhPRcy> zE}C(;T@WKIJXkK-`1Tc4q824?|7}*(tC~2LGTmX*ve5==`vNlY72K9xSv;hv8&U2w zL01qwP*KP+fnkP9lF>QU@W`oyZT5vKweT62b4G*z_xSVAS8_n4lol@)jK?^3aLyb3 z)|~c64!Vrw-V|!2uw}9T4_ogZmgN1%jn~|Ct<;sPEIia)GH2x}Q50p(E!RA4bE%nU zG9y$BJb(($tjzLIqdcKlvt-T#TAHbdnhKs#Nih$gf+$)c2NhBDclTV^?~muZ=kl-q zhzq?w_x*XlU&p!6NMv>PXOnC5A_(D$_w7<$qpY9y(OFM?4PlQDr+FCv(eB~Ybw+D# z{4MR>6MgF}+;sof-u#C-26xlb4iru)#V*u$3r8uUsLcB7o*|^wPiYp_$n@mu;@W>u zZ_{pdEM^3%#9EfXiGoO;VvP*zE7BtHB&~p6K+H0sZ{b|qO->MI|`u5B?}&Mp}|-K6v3C?9X^c7wuOjJu`hQ_bf^EEm5Qh*j@acF>5Vt~ zWZp8k+G#WTFTuoETCA&j9)1e&YR4=BdN`r|U9r{oXwLv(6F3Tco6?!U{0Cs6SpdS2 zSu$3?PxAw%W6_tmm=@6lzN%5iJxsjH?6b|Mm|SF=@eEAtuX0+-1bqgz$Pa_(-I?a5 z@^`q-5HF6`#IN^&7~=kl&JeCV`SsI*-`M#a?}26?-j3w&mQAD%hMZ>A5J`bj=kGTl z9;6ZRAQLnVs$iO$#$oKr7CwbQqB1{oT7CENQD8mCUJbhZ!3mnHC(cZWyM+jv_dBXpH+{CJ{)TpwBJDKx z$3g$&RBdbM2^zGwLYs!^xSlypa{27X+5|}-@b{JLRf(=p?{MOFYhZ-?G_1_$BK&dVic;vUA^8+O#!s=t0_c*SBQ$AL*Tzxp>{S z)7-<1GJj~af^$H_H7A^_LuPRGu}m$`0+f~LS&{y=(3FX9G#y#z_r-l_f|j+RS|Nd2 z?>o)Fx=n7jEU(s`*sA+-N+^t8o$To9kef?NTQ;}^#prxQD5r$(o=nX$6bG2jUc{TF zadIFVlU61YL%WJO#F(MGBbyLt*fgRV-#-M@d@`gU!?kkJ;RPE=~wx8{T?llcp`Nmlt ziWnwA1xMGPu9ZBI`}y<51jPi=ZqBC{|amch@uhSg-?xA-ncqm4igc( z>(}E1*S9Yl)8XqjJFDVbhl5~F#4V+Qx;>Tiy;^fn)Il+|s4a6(VgIC>^xQ`fwbid< z!%Rvl(+uVwsKZ~pIRS==vMFo56*S4&4`((P9IM)zx6dy0S+vB;?1((%^GV|WK$#)F zGZ%pw=%#%hWDSRloE5Nj*(i)SQ(O_E%3MOt;HXeBEzjn%U0ZSb?K5UCAbG@|=E9ps}?( zqwPeFKEce6Nqo0i^99K6y@KO#D3&nuw?$)B@pHA|J+0$0cN;HjWam?_KLAmL#mwBq zqEh&ST8Z-=Yb`{(=1xzl#QCdbDcWdWcs37~b#~Cc-z+Y~L5m51)6x;I zAWX*jMm%l)=j0IBA7_Gs$ac%$)7MZMIr<1-NT4qjf|t#iQr9bnz<#{kf7dynV>_nJRdoYdRAaFFprhoqg~zh5UZ)3{{(L>cynD<`o! z?)jM|%LmW#fy59GcdlO0CK$draeMWVEh}M6uYkROZ1&dS;F}^vM#*-kx1lxT1yOVr zHc+9xs+Z<5sAW0cUXk*?j6D>lsLJ%W=6cpmL2$i+uk|voz&$;q|HW3Hfj82YS6G+J1792Tj|u z6Vn>ts3(I46AkeLpAF(>Lb4-H_Lpu=?FDqx@e|#p@L19(^L;(EBGOnJq zH%J87>C4b7%3ZEDkm{YKzLZCKoP-o%bB-@!|2=deWFzQv;G}0+m3NHcMvvQhW?HQi za&QxN82AdSg!t;iM7#VMm$wCuYbUnY8Tr90)&S6cqwJMMM`=6hwgwHS?8VSA8 z!YRMuoa%7JQr&qY9g3>WklY!vz|3Zd#M=jNdys4IARFzr3HI+zZ3J%atTJQBBb9$> zcdb?LisH)4aKeMMc-6H=0f5XzmT5;%=zA^I^tosf?mgi8W#;)>iJqP;W9@hd&KRsk zoLo_)_I(vRmhC5tY5NFyLLX9pNCY8T4oep^q?e<~c`o{nMvxv*cf$nR&w8{^4-Zn)H`e`^&Es>Wn=2^<=VqJ}=lotqk6J z;e|R6AE+JGY#qC8Z%vG<>BFr)(<#7V3_A1IWBGEPHXIk$vzp}$eUQYn*JOSoY8f$t z;c&7%f67mun`akZ{G(cHG_U!;epa-7Q>Xf0H9r5myN>yEiu`xa?X0hW-0Z6{YghIf zK{CS%UEymTR-xnlP0~+I0P-Dgoj#R+w`ZW-!H%XJNZYfCC6$+CHpF$CurJaK^UV$= z7i#3gjx9C)8NN^UYvjBmD&5c?@tf#E;N~Y@z_SWUgJr?T4_Xj1IkDq3pfz+M)oqh9 zw=6A*e9mD01zmDnz;FIOh^uuoB7m=4sHn3+E3X=S=TU!+?5LP#_t?>o+|$S3r*%c} zCcXt*G*OZ`p=Tak1Lx3z@V}*+-$V|&Q}=88whx-(+b{EC43^=H6Vb^`b0$p8PSPx@ z10n?{&Y;5-CrssqI(63IxzcCan6Q}vsAmexPO6_Htrd;vLO3l${<9Ht#UD^1^OQ)3 zT;?&G(>%%SGQHhhy5c_!5>-meTsW%9%bfowVxUx19M*VC%bjV09@`z59ggrfT@(GJb$Vf<&a?d)8u$Cy zVf#Yjb4G~&2k3~Tc4cV9mlmjc;iK{dVR{XKGw5Voz+vt~SA(}+lMo^Fi9eD2ZcdV* zbw_Wfos&}GZ6xSm3mw(^!4osV1t__vV_e2^;+j2@1G^{?wlzrcCHGC#Yvb`i)xA!5 zkYnz{q$&yyk18u-RNE}8_KZ%HkZsj| zI~Sodh^xEhmNJu*&I>& z$iwI>wa1;4lYZ7>=zis(6_rTJD0aY4-S?9AkhF9gkz=OIe`gUpSFTmP(#*prMCnle z$)Y1Qyt4H$taL+<<~0}NrXpAKedGPd30@GV?asd-qKB(prYyb^_ue2gT$VLRj9i^| zfVNlS7CAcZ&iZ0iFG=gPtoOJnp>(;{B~KrR`Ott?*Lg5M0o%qq9d8Jf->5Cn$j|l- zs+D~wZ+Z=MJ2v<4hF`?uyS{WY8ZoNva?to1|u zkjw~wIKc~G&44vE^*GpSVo{46(AS;yTdqc?pwrePlb${QEYX31U$Gx}kQp4TIvc<5 z&G7}*$ZcQjm!$P?F^lUDlD!rUNWT1~->;msaZUDat@fCR^#ri|G>@DUn1#>t7&T8s zz{r>Qq5T1)=Hh5Tus0nL({zvbJSnR0usdb7Xn=}R8J*p7;+b_=Ilbyz_j^UP&0GCc z!bvEKvqQdA3;b~>*&TvifV*o z&?a1P#0>)W-?tkD*XwW9Gin8m^ z8Yb>@prNek%DL1W4Ry9DOp-#LPx(6@myq4?Y zYD!OJZ=_cm6A+SDPzr`9eGv>(({gqO#T8Uq5piLQ6nwKLyjVe6hpNgO2oqx80^VvtbKlwh6yncxjvMbe%dcy^M#=uk5kGs`Bp=iwin^FR^>YV@?EUUJ zB=Q&elf$rR>mIjk*!Wp46!-0wQ*|~*;kZtB=oz3XZQy|~s%!Q7s{>l+^ei0IVK$*a z7+iSfXLRjm#k3T#Z7hNb-g^sSVGqTZ#GRF@7mSsmy4l2kFJzy}7oEG}+{=-o5Utko zZx@cn2c`>0vwa&)gYj4MAQ+GZ0Rp6Jsf-*gF+(}%IjrX~s>BRpf3+uVFz)*jpzAb` z-W_9;V=bbT=vgQ)C4+A}Tt2BZ4T|%obdq&%0`?osF=yyQ{HUFpqu!Gl?_D(%PBG6E zXqG^qN)#P&@^4WuUMo~jD0r_&tRi8LvU9Ny$I%Szo%qK)R|5_(qFT)FZpuqWRrX8j^<*q7YuT9<10-e{)`V!B9Pwb}7%A%kV{U zp?^Ms6eo=7?2E@7^ODZDBtO!7iSf!uoMe|=?DVU6*wc(i^$naH;-YTBqm*x3cN#h9 z7082r4ku;*zSl z(I4~nnB0vaxU@`LU*g2n@*32&#DHutqPOaa8MmOY>qg}ro&brCnLbbJn|l}BLkgVy z@}9iIua0zhpZvwbr}kC>9n%6g-kV>G1b&-a;`?L>)~t7L1li0X`R+ zdLAB<|3Z9^e#w)Z{h1C9IcM7cP>&%Ss#u7Se;1Lxq{u2tzuS51^zxAO_&QF{jb}2E zLx+M*gTi{WZe*n<)D!#l$YxZ9wk~wsM>d*OE?I|MY+Zi^l%->KlFLmB$6g=^*{9jr*rI=Ii zzke?Z2%+r&L+6uL|G=U&C}WJ#BdxNBh^4ZknwHx=MNK{|{WnR`2!AFxu6y;SjsaBt z4h+X{H#iuV5M|Wu4!bv`?IIdL3S_1X+RVvcJX`(2ZuG{+RU1a#6AM&$P?(Q&ej%S& zGImZU`LP?^$+Z$s94ijH*k#@T>7CgmzR|yYjb;BOcI04!iK)Z`5Q~?7Ciak?ufRe^F18Zj(jJnku4AILSq~eiD2b z5KqEzD{D4Wx&MV6C4YVK>ipLRkY7HE_sEZ7-Dd~0zA_*zYMX-e?TVMcMs|dZ9>1CE zCf}CfscD8aJsqM%hr0cUt=@3~87Mt63K~j3jm^j1vBU1-q?;3tabUfwrEy^V69i`M z*2lm4kZ2_BN;SYRbF>}Q-^vT=ArCWdU0)iApA4u-V+em@gl|dVT@~4W$ld@1M{W@8 zlrwV9NI)`K(9RF=Qa0skK;E1SiW~}e8lLx?Bd5K9Jrpbda{XZDtQ+1Aq!nsKKGzAc zK6IG?jy@^@Oakw07<)`CfINW4T-W0Ip0pTC;X`801yPgW7MQDPZ2;K*@a?fti9xoS z1-0)st+!O4nCJp+N$1ucKcv@)q1oBFbQbJx(kJ=-yLol9M*{~pU+%{uPqzOmA9Q5> z=*~nLcE%-p^O$5YK5aRA&MH zBv@1KFtwTsYz06PdA?aLbLus=r;L?5zR7TR!WOlC$$zHups&Pw0$^QED~6B4XdiV8 zyQ7^+4@-0|lK_d(&ABG|7d#8V_&WEKOHDrAne7UrGVNNAWi#$w=+(3>4t$eCFWP+UA|#qHSyRjdecV2@IsKR>b0M5^`tq6+v}&ju`O#{9jI{bJeE|vzQ0D< zRsvbvE>3xGVaykaRIWQ)CC+MqSmNU*EOcoT|Jd-(m*t*`dKF!iZvcvAPANYc5+LOo z74D3>%seP*y|9NHT9-l>d_i9}j%BRO-2-p)qyCF1E(2X}xb9RyBKfs&>ebgA;I2)4 zUvts$;oaSQP&n@Gn+&mE&HfJCD!Zsf2gYc-=fZtpsJTTNgOpziJ^eO>&+ymeq@Q_T z5pLfE#Lu7UK=vt3`7uC3HPkc4*3|ADfFlQ+=>e_CE1@=qo}%`z4D?J1e1~mi-K-<3 z{%-36l%Z-ng)IWms1F%>2tr0VcJcaaVETvx-h-mf3W=yIL4M4eoT(dFZ7hVna~;zv zsvA4bIgnlr$Z{uQUX>O*2)tjG80h7&nUDKix;g>mJpa;|8H00@tJPM zQAhibS*fFT5W?ap)*zWhMdObmva@%qNjmDA4-$Hj|Kh7t2=lP7sg(;~xh=H3zDzeX zhCq4K=t%mNY$Kmis`%2rCL>_3)wK^#_FC_SjccV$b(FyCv_%9pKduKhdfjMFz%M zUgabD24z&;`2#OQe0|7wVOI*P@+8fAoXGyk6&v+Zn^Wkr|wJjTIQ}KV{#N;%e zHV=QQ1jzJ3Bzk{(JL?Z4AJOeB;?ekw2VlFXXj93_Aie?Q+z|tY1MiYab%%|e`;a>uT3V8RW&qF*cfv<~;UP6{7n|R#rk>lpb}=Z( zFz;ZQT48^EoX>~-3`$l6aC}wKLGS+3A{#V|@|l)SMm z0eBw}B|1*;_8v$oUUT|n=ZKqpB7!winmcwVV>AAZ1QbtjoX(;{qILZtI5# zRF8#e`YEy=O*BLwkFDz5TH|k5anL2iy>d=o@TN?BiN9WjzP}@(5jGT2?37LKX^ZV% z3ySl~)O72GI|J~oi5&77fr|3Bz`a)-}jJLFfdwV(Wi%mmdKj70tmCY2p=qW4;GByxNf=Yz*J$Ll>vxW_~e@hvp8X z71ieJ(PZw@P*)yA=v=9Yv0etu&T9eWIgN;u0W>CD9qSpT!LDM=ca?F^ay1(PKLbO) z`(FLufV1aupFU3x~a&Ew2w!m`y?lN7MJbN4l z5$!QucmUaWT#m1mOvF0*=F?p(Ef;;E!>)!H!#PJTJl~8_S76Cqa(r7U8^l|fqIB}0 zy<}+YKvL0&DIR;WOQ`PlQ@qD5SX@(de1S`BFCylFj-{THA0UfK~Lx=&I3SmCw5s)ob#A|xc&_4kz6M{#&}q+ zJ)ms-AZ3}dGKhS;Iuf|ik;kmdL<35izY_k9pi#F^?8YqC1ClW1hY5R0*N|7A-{S}9E>mBep<1V(mbf)e{}t&TMIM}0~F#RxDBanet`@2hW1b=2K2e{x*+-c|LN zQb5GG)1&2~SV;SE+i+OC8)R>MZMZ~N1OJ$#yCi#Z_+_1N{;a-k%biL1a1QJI9m&*>aKZo5N$OI@k)2o5JF`miRyaw0LLDn(9C5 zX4JO-5?W_+{Y0j1Gzc*}iZi7EW)Ij_hpFI^9qO4Uytie~ISYX33E6zN>_Ve> z)gJP&1aqce-RuQJX+1i2qwRP8m@nm$=(n)MeJeK87934?X3{;08FjFI;-VHVsc1rz zhs^$xRu8pYok=P*fwH7ofy^5c0}T~2tMQpn6jn^Ur7QPrrkG@gJD)tkK%OMI1fg!x z%+QLkGP+|fzy$z+=}8dB`ueOn-+MKRLK=A5;R(WDI>&Fy#cs_OF^^ewj^qm{AW3aV z*-PLXZYp2I;M=CZC-dy6O6JWTldDk7ebVjr{XUER{!?XE@{rIbjE)Lp=?wqLr;em(m z2?xDBcv!;tE#cfsO!`{hc2#RKT~=y*b)#)HSlON;HM^~vC+IXT{KhSdI_9!ILk><^ z=`q;IYuyOO`+KWe1qv;mrKE-Hm#`IZ?^a{}x)%=V1pZwM-N#XanFhKYV7THDfG%;> zK`z{ z(Hd~q{BK=vV;C%@OEE>N zVsSScmcQTZ;NpWeH}nc}Q5r{#7BVqBY<=H`LyH|zT)z$oz{X*&c?=1_>4=pP2#$Ze(dJZd*3_i7Pc#H9}1kP z>2U|mg_jnlw=`aVmh$g~$r-R6Q}mF(R*1P893p%CBWT&W%Q1AN1n-s4`!vB**?awm z+hBY%M0I{&(H;=#!kOh5@U*(fQjxF69j`A+nTWgF zurNFeHu|m-HymMDw&{(y@92CDL7pQo6~IW^O_dv8Xn2W+mZ=MmU=tyH>GT|^x!PsP z6rSluTL-G*aW?6q(9?+)XS6Ii2DQdP?|#pRy7CS~2uC7SXVj|xIp&cOf}*UTUgWVyjeoqm|0(zNL!>EkY%GwtR-y&b>DrV1RXIFW8mSbR>=E5ml4W*Osw zSNVYs+xK4E`NFf?Va>yKgrD z_03+j>+DY10B4KzQt_npMA?qJxpcTc17*Am9V|t_UJ92)B1(FR%_rLziK?~ z_-h>)syOK;%BUZ{Hqqcbze}L9^NF3RzyOwul0Bv%LU#v>$Xiq{y0QozN#9~x7p@Ez zkk-9%LlISq6X&2-on%QCW@l{S!*;SQy?NT}|8R8Wf-7(T>k#uxom#2c)2m@(2g|q^ z_4KHK`NaZ9^hMz0)5xK6gtr*|V#Mp@8LRFJ7gNE-P-}D;wgYc(zq6=ysPXzi4k*A% z+^h>uDus>y0(60hapD&`0jN?*#^Jz;O3TJQ(Lu=`u%5l9s24{yVkTC{N9?+^PDfQ| z!C}ZWcTfC3kBw1U=cZ2t7nDMrJe{@;`<~IWsEBso&0KJlZ1?6@CBU7s(tQ?=;o=;A zeCY`&-W)L9g&;KIcTEodH7Q?I?^B@B6u|E;)@u?C07_^o{$V<>YQ1*s`in99a{(&0 z-&X!31?ND0S%4c36nHoafQD?q9Qlhoi(~y#=5CuF@%*>+fj`oVlDtoLPGWER3Fiy( zB@)+<+Z=c9Gpt)x;()l%-z4#mk{^`ZNo+oD;|WyR~E zmc?NDMe<{u$6isl`W8uv8KVL9A=Qi)a^em+F_8!m>E;e2;62H|GzK zp)pSL1f)~Jy233qPz!a-m}|{_IXK(aY4P;FH@6)q>=5=}zpD#a5XFhFH%4Fc$t}}+{m1;r9xD zPoscjGpC%wgx77wcmzi>I$j{?tQ|oj46Eng;9ry1b9=ldXAmlEYeA{>X*J%TlHAu} z9xyIU{^<%)@#?Vzy}sSPu6{xl0LD1nY8L;)qrJh9Yb3<2V)=gh04yubId%rwGutv! z>sATFfUh(KuM#vI;poLlTt*tvx%AF(4zWEXPx|-r?ZAmMIYgOLJ@<>Ev5Jj`twHk@ z4@ps&&Hw6tKK?tP;?JF+d*rX}u1~Bo%{J>BZ(c{_>BpV|TQFul4Xw$)yq{UrzG$S= z-Ch9+z+NS#dy5{^a%<1#k=?_iI-i#85x97~AHOU*hyVA2{Mdr&#v$@SQ#+w~e|^y% zz%1<+HRIWTZQlV7;-0a8*w95cRrKtM+`80KR=kYlU~d|1cqxao6mv8hgnfly^tKyK z#b1W|&Go5{FO!Ktaqm5mSQTbhRU72h^R^a<5TyY6XW>KaJ*Ci3`ge&X^NvJ()^GEy zC#90cKo__IIn~)Y_(xj5Wm)kupRs;-&v8=$@`giJszRJ2<7F)*4|AZ@cs`qo%9hlL z{q8qY41*^Z$+i8^k=iznpcwm9-93qDo9Z*DY4)iQ5KN4A#p|3}c3jYC8g04lJn>z6 zC7?dr~=`g=vEJ4_kv-pgsxOgZAk{g)MT&^VD$wNyZCqHz2U z^wqPqJGp`%Prk31uO2;T>-Mz%jg&THfCPp!64wm5E~?(((AkV8`#4B z63Z3V&@azKKXS?5%kXBVCQT0r+U2}SK6M#e|jMvvwF?4v*ptSox{Qfh)a?W34ltoZ1sRbOd& z`(JXGsB1n`;=h#j)$tlDj7?cG(xm>i;x;$S0O!B?TORpT)bGG|YO{L#XJhQI)^F>o z!{?q6k4)Y?o0m@N{-`6af~YWk%dcL|)*I_sl`s2eJkV<1LlRVZ$o@thsTO`llAX~c zT;Zvs58B z^@;6CD-!75R-O*6>2U~gahn!43yQ;zODcU?T>6{nx%W8LufOrCA6c)3oSuJEdzA!a z04R$(RE3!Qxm)If0!uMjX|MQ&%ve`Ub-2polPl=8Ef4kLp5et1NfWJ8fQs+#0 zgUwdOCd8wql_llzdbgp)S`%3Xm`^&6zVSt@IL$v?wM}1}#(o;Wg~fT(mF#g-_Z+?a zOfRy6u-76USmK!)UI-cGT#BeWj-NL>pn#o0P4T&WkDa=W0 zz`OWmN$oHfpAgsvqM%RO@bywcphHuhS{2QxhKf7qVcxw(b_W>Dq-Ux3*e1FLhEv# zLoRAXn(_(VyMS=ofmD<~D-AaKMWpP{Wx9O#@^=j3@!W@v5NEB2C;UPn9p;U1LiEw4Mv#i;z>eq#aX<>%FV+}W(`gx+SWPL~&y@n6|6 z_byZJF(rxtvg!I;Qh6AVhxe@CJjlMRk*7`Ryzf1Rz55LK_JLZ0(Zd+_14gh1bk#-B z11wtisrsw~hEo~Gc?NEPdQB#Ds=&{_E9zWC_3m+JjsanhE(N~teIRR854k(k_R8G( zz#K!VFyh{Y z=>+}n;Z@5SC6x7?ex!ciR)3f$Ga-Zm`@9RR?M~GEgPLVc6HU{@-nlY;d-XIa4Gy%K z9{-+6$;Bh^+7-ri;QJNLcva^*9^!#)z$;3x<{)fL2#J`HJ!n*Si@nqb>8a z9{gt%h5@{qtkJCSfP3(=p9vb^+%MMj2312|9b<_-q}uM`+7R>T@Cdly)|KRey_&_u z`?G3L%JSjHWG~z8ck67TjKn@k1@tWikBI-t5>TG|x2@C*p4f!^8V!LpwiiQwCwza> z)b5uSfQr1(C%#14lSZ5B^w5XI>zT%7SZ%+{^9}4fV!^H3! zV9fwgRUilH(jO-eT z0oWY?Tpack5XZRJf5K&0=OW)Zu$h%}9eGm|m6vNm9A3hPz9I=u(c(LA3@Gl~TX}mj zZ9MD)*;R--qsfYa${_)yg18vNc74|ZpBd+eIb zBtR~O_W%&0X%-a6(GMZvX>*S{itwZBXI#tHnMPpCjmLPI_PVe+j`>5t3h#Gw%Lxx) z3dHDmN#i_2M%Ftg^F;(li0~BqSyA;yZba{;Ahkk2#Qe5F*+jte_H7@susx4B3rz2= zYmC~vhn*YShep-`@!{1DTd2qC)0}g3H6^BR;pjW-L&8gAn8D5JgVOsE^1prU-d4r} z`&@o**VBPNf8cZKu<9K8HDS+H`Og@4rw^WbmP~FR4+7PP_3D6 zTi29o3mmm*h$(gQV)=|0A6x zBruf)WE{MY?GRka%to4wf~NM6K;^v1`b=ZH5Y@R49w!_&Ii`eEIP3cyTmZ(m53#d-z?E8B$1 z(q#<~D<(`DLQ1Cq^EKB`>PBXQT3(r1zwK{Q|SYp4*-584?&KHY|ZaAhn`g+`k9y4 zL(Z*jBkN}QLZ>hC)J2#=<}Q8#M+hp`uTCOjXgvmHN>lztb_O?bDQT{lxu@C<5(vUM zf~{oVuD=2hVBj{^V+$|oC{4*1oZ2~cR>U|!su29fMiT0+V~9rF2Xz<}j3HGN9vqw9 z)|YsVQj{brrZ4)NqEW+A4%jO!@f0Eg4jJHJWbrUO|7vqCPzoFyhxec z<5|oYH3M6$KD9kpz@XTWq6=L)g>L*6VN0VRO^=TR{v`L41~Se&CL=p+^^KI}-fJz@ z1V__O1g8P}i96;7$#tKDJs=nR7S(}b>YkRLVRe?xTZ3Ar{s@}voMmelG6u>4*Wc#%A65vw#b**{`XWxs)lXiyeHbJZ+Byq{6Iheh z+W_36u`U|WcGOS)sBvDI7K}gv8!gt%85`+tv_`YU@8U2nL0ok|y^rqcarm?0i5uUL z4@@!(-MEMW@IL3s>iNo1VKWx^^wdDs2;)*Tr6+-XBx;1aG~~UHK9H7eRdYzMj2q2O zO&(gEScCyt3`W*H!;luygeJ@i)Cz;bt41$%xzi1U7v3=ZA(^a+}?OA0TsKj+)ie-2aoM0C!>on*Y;Tt6utVe8G(2>36xTWMi-cnB$-*tLh3wl z$(MbObEx9s&#(yRJtrN+O}}FSgj(X%^rg zL1*)>z`EZpJQodU7!?a{R~ENcKIu=3j+wdWB_{h_72VQCbtN6QUJmxG0jyiwN8ALi zIVCU8!?<bs<(FwNh%*C8N zAE=)IaHaaq^%wu$c~6?Rwfdgj1hpovqp!a@;=;OZY4?3(<<)Wx5=5`e&NnJ;Dj#W5 z$f$i%FPXBewu~Z?(e`hL%CfV9dqW&}%o(yrS-Qr!P*eY{e>hAD%y)0$Z)Y|qG>ZVx z-=Gf#-H$~$Fsku=-n=}^3S~_}SWlKS<7z=d4r$dLUghmc=~*vsXf7F7DD|+ai}S@; zoNU0L$FJ=&PZjOHNx}TwFKmwLexi;YnC)4$k-p5T@4-#1-vydW11iAzgY7O>bJn?? z?x@pIHE9iqvoxI`(a*9llK%W2>@GIk2Z)KA?k!u`?+oaJnwd{eivH5hN1ntMl@*qv zf`Fi*C4AHet6T#67Wev`${v@AUiv-VKvGWO&fPlfC;-9&3A8as`w1b4AoE=9Jgx2~ zHK8P~dXiHB8f&yeF>&&YIa9U_4J}Lj-9pa1ox6$(QqeY;WnAXv(qMZ-4T4_Z((bbp z9wn#pOJq|ABwqj{l|>w2vCk-2f=vjy`?^7H0(EwB2KqC zU{>JXmM%CQC!Elw*9k4DZ#?qFEvD)=6806LK2tZ++Bue!C>gJ57ETs*x-+CdwFt*d z!xX{mkkleWuY)v{?fUp;<&?c-^6`(9qJ9Sf^ZZI#Ko^ zcl}V-O8=6b`e;LvLT?pH~~r!b)ScIiTk+p+Dc_4*WgExm{^D z!lY``^-OhBOv%ol?&hR_-ARhOx=&5`GSpM#IR6xFwQ_|{8W4guvn`gN&mqZ|WPrDS zEw%rQ<`LuCI&J93=pivGoP#ghhc@=9D_P45)-ea{+qv>%pOD3q-A4d$uq*Cl=iO>u ziy;((p3!c)uwPki9ABVkeJT#n_^NLNz8wNb-vWqad_y&&@m2%tGqUhF<>6{^Q}w}o zfJef((<`%#sF~;s6$yo$yX(1$rpzKt(W`V1JXo{YO@D5=u+%NvEd7F0Jvs7Dmy0XL zhMLJvYJg>3l)jEYffS1)?9Ma^GF!jzvIb49+-);zL-3M%Flf`Rru@z!hP87f#xspt z?~%TTJE5>UrVC`Iw$7chUaTnaYFQ z!1SK=hu%z7RoO?RrA`~L+udgSHJ+wgE#lwE9_mf?+$+MO|Mg&ANm-t;icsB0Eq5;{iQjCf+~$o+wP_^lRR^weW)OTQ1yZ+mLoY{ni; z#clbN(lZUMmM7CGGTARS7BLf#!6mspsbwDAU!a@nc~U@>4$cL`_LQbgXR{cL0M;2g<+}YKm`|nB|c@+U21xJ8`xzfLW<75 z=fUJmc89p5U5{5iT2G&k3N|CT$Y&a-D#x=Z0N7{t~|KZZy zX!O4>@;?gzk5Ju%Jm=U`rM?Z%d!!VRKP_v|i@SD!2>wfxET!skT@>%G1chIiA_L|L zK*d}ZU1(BZV~{0I^c0Lh!h{qcq+vZes=BLB2}bAah5=_lSv`t<-ZTDBR89kQ$kp4^ zF;;vj6B=rl6)yTzK}kKJ>g^Z97SkJmMkf27 zs49o_-0~dA*mvRh#Zogc`^gy!Q1`qjyqv2qVg(-jrOfr;f!6IZLW1YSVni?Cs|56nolkUl;=I?@14v+1qC0@+ z&i8-kjJ>Jl-n&?saP(4)s_74NE7_XSiOtzrLaCK^l(lH^iQw#qq8dQzk$!q1k_NpD zEVx%9{iEIGb;bm0;KC4N_HlSn)Qi8$saAb2{+bPOmoezTpD}$}`WCh=JRPr^O*|MZ zbFc3$n%(W<3Bmp@ihF(*4eNZ}%IraHR8rTSp{Hwo{ZPct<24S5i6elKSK2w zuY)s(mE&)QqNjhJPu&;KVV2wRqdKniW<6ryJp%if>69_DOKgP;2*5t=(!%`5^3>gW z=lCM$&@%t_gdR-_is8HZ@USsSVvuJR6x(yWEbi38m81*ue&lO+==AH!+WSeWB?ouL zkv`a#75ddxbMls6;KXGZ;b$)FlwdE#032JaK^Jcx0?GxQV}W4OptqL^?L+=tjO>6# zIwj9iPa>qo8Dx4u3)VZ`V1{n8>ZQHsf~u2>Rz|U}ten<;7=ZbCAokZnNC@v=$%T^* zLT%>DIdS2F!SG9~i)`e{;dv~&-{ugm$I;3=nWP;6!C~m+ z1Y6DV<)qh-Ul^aH*Np|<^&$fa@v@s|?LtS^zX~2SQK8EhPC-wI4h31(4L+HNEyDL{ zf)t{bxdA%x`)fE`Lf3uhAyImofKQ4Iqox}Ps|*b|_NzsJ(rtwOaJ>_ti|c0t<1_)6vzcd zt!Z&wnIbg>v9cuhEEh=J6>={vals8xTtVCr*Y9q=_xJsl_x-+OzP~&?fQN_YzV2%| z&-1$Oy&mlb`CdV}4g-V;$-?6e6`!xCh!)duKPLh8FXDjYNeOQ;1xcD+$qZ|JM0j5M zM7f~o0Q_3hhu8`h-w5R!>mCc;JSg8>>rl!P2;`zJV3--xD{MqfVuPL<+gJ ztjFQ~S}=;;@XKo1qn}HSjqp6xfJvw{3~jS4|Jx1nnTu`Aj4A#hVTFrd{Zm zJ+#@=%gQMAj4Nb33Cze;Tg!Bq`cWbb%~DxCF3B9836jO7A^qrh=-W}J43=s; zVipxi+b035Qm{jEfACLzZ={^I&35pe7kTEou}xG}o~Mb?bs_uO*I~-=15cn5U|`{u zFav3ZWQ$SP9V^ULn|*!ijZt*pfoA6_Fwr4H>K=D$>DE5CfGHb%ZTK6q1o?y3Zs%^- z#x2Wst;64NiaT6!}r&kPN~nH z5KNFMM%)tkyKZY*Ce zvgICsT71e9Ouaxnc{OP;f54N$)sQUu-R|=)ruh7aVgZbF*ynI3;_=;n-0hmvM|`54 zEhHAv-cSoY$o1}LSIChHn7nSshO2FR!t<_VSPxxGj}L}W5G?1RC(^z7tl8(@a9@U- zJcCp`-5cPgKA|snlk#mb$C|Bd=I^CW)3z<)my5<1-VQ5EvS|BIAl*_br&G21>qB#C zB~vy}GaUxrf<9WOjPAm?y^{`tu%nU$rSiAdb4}qM^;ATs5z?@s6UC}OMFa_-3SDh# z@}P3~RBFIepAf3n*7vckROcjkvBbWQi#t?~JaU-svoPj#-0zL;Hs1|-0jbJQKU+ih z_1l2~I>X8AHDs_O{@b7yl(Mz{owo9TnHxV3VK%j^89ZyvD8+R^0 z+~>V_tV?>M*>OhO5RD?FCxzCL;nsUicDCago>Qsq0JDp_F`ZiQ5oL7%!5vnAT3qkP zww5lcUpJ!%f9X9lH$1mZGQ01X=nu8UyNa%jfCbE@H(j88E&@E`K?yNp4;e8Tnxzrw zWmLb=NbLqH-D^Z04+9H#y_nI^pG6-7Kgb);e3(>aa*nTQe=uCFao=(GZ2nKyYvcK zjr_I8E*n;Npubiz1Gebzi8zo3O%@43eB(Zt9Krf{%64{bJSzI+B26s{E-fc}44De(<*wO?&Kov&&QhY1CxzFvUI=I;`;|d(Mha#Ze+TFof1bae|y@bBmHe zmIl@7kMeT6>ZLA>m+ilt4SKJLMkTbDNHP{DBquH_D;JxrKZ6 z?o%nN=f0DA>iUmwb`vfWZ}1b)2~)>nL2N7clT zjha*sTl^FiNi|?GG;Uun6OV@g$SeOGhW4L;m+M_s?SYb$Yo+dTzy3FOYfr!~e!yff zG72u-I`8-KPcKX!gSPEO$V@ksc`DtHeJ^%LP=Xz|TeM;Lb?$6@u0sdR z_v73{7QvAKL4mHA3|8szf&PZ!#DXSla_~tvB3;S&=`pz00Rw=-f)6!2H&CGMdk69j zLC+lz#D5oniw8B9EOu;*uP<2vb2J2Jf|QJ;^DtAbCgZ*YN#Xd(%jC_@?Y!|K!=YZ| z&1As|Db%7bHi$o|=A6jEUXmAUg!;C@-X|JCCNi++ww6QA&r~N!&l75Nt|x#k{ywos zc3VPI-w)X?-K$FUdqwjCXe_d)*7S=4k&|>B0k;|G37W~fMU$$!kEQH6&wk4f%YNz- zcB4-=T1o&1fr)k*;Pd*K1C9O5r*K2J?v{ z!jBGIsasi?{VlcOT?APi4Bc~8z{%|7Rg99RFJ+J zch?k5=mxVS;`dO7?IXk3Yhc)g^!(b&IX)r31n@v*$ZFGy|FoAN`;7|@kcxUa80V|# z*NHCJ(Gd59@{)IFNGthe$i0WWr{0m5rwZfB0W`
nesd7SraJC`-0)z5`4W>epX z>j_#dYzo=J!3Hp*6kbg}c?_sv?n+oa*Qa|o9|tW6Dcls*e&D709)r%sQC0o!C(7^V zds*$zf0yS3=Qa;6ET3kE6;UHqY*|xr%&XIC8fzF?kylJ_m%(;N}NWIKj-H|2r@UtIA-PZn8XZzJ^f20O0AP*Ph$ z=xqpX1|F(-UAp@;?N-qu@6W&~bV^#s3C^pqd!q|~&{ytQ9l*^DFTboHNW&&q;axvU z>~w;`WHCwY<wW}97PT<&( ztC)ROpcBY5*oAvs@FaIe42E9pKTU+MlH>M*S~qGBQS@=f*2Wz;t56X9@8|@Ot<9f! zt6tO4#aUCpPQ1o2LTT*pE8v+`Hf{dBWrs+`OnYlLi9NdRUyj_7^A+o{bK*64EoVNNb;^@DQ`|3W|JD`m=;Pe_ybn7jw9Pxtzxh@ z){|JCcTIpypvi+Ym#laLiWH`$=^`=A+PpdHWD++o?D-nd`%mf80354G$#TZ~%)R%4l{sizj9oYP%p%O}!x=r-w?fYUwvl%OK(dY2XM!VSvT0_RP)Q}&r z73=MDR!5ZQ)8Q{|h24A!;e6K4MdRxza8C`yQ0@4w$-9(h>;P^n?q#ZH`hr@J9{sQx z`G!u()jWUO8Epu=gOTmjG3=F1`@(!q9dKQV_Yp?VN=8#j9*MiWhnESMMX{kw$$r~D_pwV}G^C4v0k%S652ni> zfhE|Mr)-d4cK0ee3@OQEl;kWmJba2M*Y<18a5tCpWfLTC1a_9dD<76)o`zp__ zWD%xcpocbW;vVyQSDP!i{Bc@6g;ndI5Ii+1h~2i(>PsmbNN1J_ zZttN3->3O#qp><}T}O6H7vPcB#!0I|8_*I(M@02d2^+EdmP?6W#7M!y2j^*4R^X&! zs!Y;fq3xSe@(=s?FKc0(*a+qZMa*q3U%Pzzk}q|ysrNmLKRa)FoJni8$8_VB9pwWQ zlkVRXlKP|R(J*FMdZa;aLlky!dVht`t??{xp}jVhk*ryaIc@G+>=WG%!Dh3J=(pU| zg3jVe?u1ee4=*y@v(KL8MP7+E<+`yi4%Mn2gRf;mOp?=k>=-IR?2?2fU9%`nESFyw z`LwlRi>k9H9w+=Z{cR?Zm@|E)X(k6(Z4syD6;DZNv|w1x2*;J1qI(F5{yZ&al7DLG z7Dws5f@}EQvd7zlZzU*s+!*ASUeiQ}=Z_xEeXO%|nYmjf&s`K>m)rNlJi!^EQ;z5 z_eGmxx72WN3<;nvx1HX?$HTXzjV&^hyjJb&9EXG+mqX)6M#Cy~&?T9;t4)LxN$|v# z+FZs8?|aN5!5!Li#;uRTUQ%l{T>OGy_FwE%N7bczGv1R9`wf1tc;**u4F%#)95 zVr+AQEXk)(j#G1M$K7M^H4)o(*@0v`SUauBtDem)8Lrim>tYz%JT>Kqx2LGV)>az* z&kTkNA5ywMqIl=A>6%^lDGE?-njT3ly3HF#94Oc$(J=Fz~-NnmhA?kwEq? zNDNXj@Q6AUo9W&yL_7H14CzyWNwqL_sRbsootVWRF~+FQV8mreyy$+|0|C-SFheco zYXz}guyj;Wyf)?YgS}?0x4=nzu_)fDQDYavSD`hj1_||z7BDov3bUVVO=$yIaMxTm4R4y|UxHR<4<@g{ZhcR4) z;LJT^-r3hu&6z;nVT>%(=i+9*70+08NQhn#&b1ev)bSf~scU@NdX^ny;Gu5SediJU zFs82Tp<)m}+Qradke^+AO>^tSeI1Rs)C3r^u<$G|7b=FSXjtC0wno3b(9fKERBQ#c zI(e<2Fq%uy#;}QI4p8}RZRm|b9F=aagC6=dr_-|^|N81FMNx)C)+?SdQGtJ&%yQXt zGCyQfO2xlt}vbl}2PA$D4 zD%3V9153%MuWL$6-D=epa4mdf48~be<)H_7qD}eyP;B@>*%!Ycfb$ry) z!Qs*~85N#!CgO{IQC6{|CD(0-zK!obgY&C*VJ$zT6eqUt=G6j}rR%N5)6yc?2^}-C zXs=j-%cU2d%bS3};7sVO7t+Ct%(Ex9xDFmqgvMK`spt!Cfq3?#{=BGu%aSqLOU!VY z&GA2QnnBy(fzdSU&8R-S-7g`|gBsZ*sA|RTN@M8os1aQznC|bmzFE{|hQC?)tKeQz zXYXc=d)j66?jRL+oTHSm>@u^7yV8McQ)58=;TE2@gC}JLA=N_#H)#l3Oq+rlr}sF@ zzHi{QUNe|so(@^?=Bem=sFaZG8Std3C6;dP4o}~wvz~-U1>{$bOSV0=JrBND9VSUjS6K^rzUaAgQE$n)%jNaFuNWi7(;hERSD9j7; ziNtMV`12@FZAk-Lk+5I~%~XN5*vgL$ciTbj2RpE~n-@b)+QVNd!H*4_)Rzf0&mX&a z>He$A#c^}F)XQ&;fv6|EsQt1w@w4bl>nY2R3We))f71D{KT}V2ek#B(wzQZ+`cbWG zt4(nlJMC3J6j@8#v|3XIRvR0}vSP$v=(2+|9jrpMFvG5c zzYm4awl+iwqGF)&7lsPYv}z+;ORKFlx`GiZC4$GwxeZIg5BGk5)>D~)h$2gO#N_Xo z0EO5I4r?^Lmy@G;tb_4jJmfmD&32|%Qd`FsT6nf0%FiNNrT2Ni{Q;z#kVFrZb zm0Tjw?|Ql2MC>?-srOO}I*VHP9DhmEW%gTh!3^_TO{Q{58@ZtNK_l4vk4*(uX&y`? zI`!URG->VW+*zbbiMKuW22myG0cG514qZJL{HA`j8*y0NK}EP-t&{8pYi=@==U*U| zyS}Z8FMdMy2GXsIpMK*FV3HdTs}BC*vZz;AI&Y`-fW5r^w$K3WW{|rh{!=0Yo)Mhn z^VXl@{o~wANxzwb<*S5XxEt0H*%{J!Xo9rbNt#&gPFwWjM7Wh3m6K+=bXN8{l4h`k z-Ulrl&kWPneVa%r zcXgaKKM#O=>Wv_gg1@p>G1&i-*46(O*(>U#W-XvmSDUFHdYG^7wJI_a;z)NVkpm{O z0{C69^MVrE4S8^sRY)E-l-1A^RxGp|t$&*0Pi|aFu@bRcmr@`arAN%7zF>9C61G=> zrvTYhoJ{ZWY2Kn%bl6OJPpC#VZn`KkEP>215ZBIy8z)^hji0_wbr`Mh+%LXpBL)$h z174I_Fi^)&%9DBf{OaPM>iuWNM&S;OeQCq>f_m!lK9JR_rStRrNv>(hqW!RU2}mT# z3T}_APk_4MaIw**#`&}8#wbB1p~bc?6{-@%Z?H)D{SnlPk*5Le+blaYo5QGTCYZ#O zHbgD7(NmHd*i75(CRK55ZecYW3z95w>-lvqqgxX3j*L9Qs~h|_IsxI8PHkySWdN#F ziHlqR?(G${)E=%U5AM5k;>W(2Bl{g0wd24kB9m%=wvA`y&CXWqL2nKs78c|!(rDAL z%5xZ%DojO>)6#1ZcM$%v_wrcD>N%q25wMM#(7X#{+WDldlLLj8D9WXipP z^ZW9y+TLbLOYAwm1(MrFHYCL%_3-|x{N5L$ZwuEh3~I>;9e;S3pEpZQS|C#lxp@ty zqNTU9yGmMJ*$_-CI6o`+!8qY6IqX>fk*{fm(J-Q+o|8pIhz|1_KO8N}Vtg%VmX9M_ zlLhvDUiY>|kyrFYOZ)Yu3?=v{VopPSeq*O!^HFS>`{# z#Wi;a!wfh>?z@JgSRIN2jA({2}@#dA$X2J*?^c{t_HcgZ=iqQqQ>a z{D}xV_+jy5Yc@Z{K)!G?3s>#utIsWT=C3A4EVl+lh&3ZHi+^8h0b@C+g`Vvg9`kLzOeBlMYhmY4TGkMU`d}N@;Lf-cC4?gy2 zoRp`%&{!DQybapYJtAkvTRUTZ2*ZEJF;p$PwIP|pH^#(6f)+p02{uCc8{9c@EXhg# z=T@*Z84(VBRv{UIQ8Dh_=wED9z)2$xHl3pVXLARhAGVpthdCf=vfXAn7`C?f=!X@O z2W~w~w8ccDR9E~NJ>JKR8p>fM72>w~dm#faffXk^b>O;BCeduiquxSL*L>h2;G;fxyer8b31pE|s>EgXJVj5$^BldDins5}i<@T0TlnlrCVNvE z`wVy|NRlh#qtffd%rCoqYAH~wkdXL=kJQqJo_x(t_XL_1+;cg({V`1(WDmCwc}#Cr z4s(ttEPp{~w00Qt87i{JG}}MtYXrFrBP64PVN0pqICDtUhIbP5WvLj3(5yn>^GIn!c3MOkK`hpPSzQenXC-gUo>X7jCp|6YEZ$wLWctTJ^S~m8|A^%o0>{##H80YVf3xg zaJ3rV5xUaK9`^`Cs4&uGPn~Ps&#~%wl{5|ahSC0|(`(4c42QBSm8#!{oL;Bt1C+wC z21}QP6crWyh1E@#o&uhWzYZlfzaf*~(y6Zr@tQ#I^GmQ*k$8@r)fLs1HBj{*_i)u2 z3Bz8t&8cZ97ZFaWgiml9Hwt)-Ygib$VH0KB^`p(A9nb6CM)1O}+1c@P0T?^yE28iO z>lV+kq?O#6+iqe#MuIil(j1>PZR4umvA;ezo0=6|A{0Vhuz1?>^6WM;DS`ER>CKpW z3~L4H9b1w&iTLT|0z`Nb~cqBJK2_1;$GzmO8-^QuN&7>7}0Ug8#7fesqKVv9q)qg=x2_8_*Y=; zUtlunr>iTjKXI}9W?5*?rO~JVeA__A(T`_ZC{PcsK_ASu;?I*W{$m~g56<>4m;0}` zSYEoTk3%-RTbja^&Ofl(9TIWAwZ`T9=Fk7_NB%Rd{?{bC(o@_2;u5oBoRnR5K0#yq zg!kH~qQ#xk)nA`-JWd5B{?DKKKN=7XNN?VlD@FpWMb^`^zb0rgFSh=0`Ik7 zLIIoTUj25nXGOr`}@x& z<*2_%E~5YO{sW;|Yxwt?PnODSyw^dtYmPSpngdzvTIkn(<$a`#;U}zh3iyvVIpFq@EQ^0FJVh zm)Pp~yKQ{`k>FO>UHeAGFKy`jI9Xum`aCu8?>!^5%SPmMlacMCnJy8nwAe84auWTUxzcRnV_CQPCjy}j zhWmRL0;POqfx=WK72HvGz@r(bjT%Z7*+i!T#Z(e||CsLIwUgkR;HSL=7kGZQ@0SPb zxvS~kF;7EZ|J{e|Fc7`#*@t?^?cuZHUY+P?UM_c)zd8iBEq~vuPt!|L))axg8kJ z8)@>XNctgBu1iTi^v~;l8|M`e|2sqb^8fnaf4-KuYXQJ%6Tv2vV0~SVk4ibe-5ovJ zFOs0UWJO;+u11aVr=unRk*WXRo|V7vu7OZ^=?8*uhM;>RPSVH8)6H0oZ_y!_N4fli zB6420y63aCp9~o|gJ=8!XGE;6o~b-x@s}BGx4*l(_$N$XHo4u528P9IxX-h>Hk$v6 z1Nk3NdG_J#I0T+An7Do3b!5W$ubo_}a&+oV%q7Q5!S6A3w3*fI={+Upx6fn?mkUXJ zN;^#6%+HQ5>-R^l!9T0#R@OKSTUiIQ{;&wVA#d zdm(HT`6fE8fD#xH{6&VcI=L9!@4?)^^8SA>_P_Tax02@AEp-(;@Xqh`{2n4EV5aKxs>;Nuj|3Fz1zqubxnMc zR0Ltg25Yd9GjZ%P&$JY^?Vd%Yhz1hW#V`z{Gf*SOvg+C zZPlh+g&|cC8s|tZ`7J*|Ufhz?OBOBWJ~n3$?*+h8yW}myKoKUOr=h$0`S0q6-}-B4 z$=ZyQit>NPMdVyF)->w?k)3nI|4UuA$5l*P_Jx5gZbQ-9i1W8E=GJb$PubX=!*yKO z5@*_~5q{$HyH+#P%}wwb{&-qf*l>)2xO`R5-JG;GwkLefZp{@{j+eDS`T{cIJT5y8 zGL$%8NDD;0fM?Gd1$00GdK19Y>L%ekEQkL@+S??w67bdK{Au`WMtkHcfvLl5Y&a?? z!|?WLtmt{y`sTUVBpD|~xeSHn&zu=VS(!v}g zcH_!5@CQzf&z9zKk6pF))j!u-+q~LQ6hxloJ+}2EcYkc1yVNB-*)tuKH}}ik_HpD~ z?r>BABB`o@@GB+eX=7}@vnIfn!+LR9{4#OKFxp*)Z<+fXnh`sCbj&n})-NT^PrPeQ zT@DuuWuHei{@SS2)9Yv-zq%XI)XjE>fm^#6AURZkFOyz^B&K=2SI79PpLWBJ`i${D zSYIp}l;22OqnG-Hj+eBa9X#D=P3a%;erIeNx94)2XARc5`oy2I(OzR?xr`M-nph=9Wz_}kT8Yr@b(ey@=NOnF=c|Q_&&h4)noO4FKzIO z>H+ir0H>S@R*tvlk@BM7AX|K8BpLpR&UDDM9*3W`TNRnjHWIABg+>X#hfL38b$mDB z!fY+IxJYTD22gpq23YRIO}_-8ku-?;!R}WBVIg3YR>}@Hw{(*utGn8^P1|< zM^TX5ZBdMirMYmXJ1G9k&Y*@S8L{&B4TSgS%(AJ8!)@SxhJ;XI0wL7hdFZLf9jloF zO2!QpKk)7&W^|#^uT1=k#i7!fvsEXoL z_->n$7v0T9ag91BAVP?>^?p~a#7$91Jwd$_ zaq>zUV_&}i0SHsaOb0F6r0H8c-~c7@_jesn>U^y?nmqHcj5I`SN10XGXh^3if)gc| zrU`q;-vPL?rKap9-NSCYyuoy?DIiU%KT6OAMB0IxROzQyYNbq`6c?N{dtPJ0to5+j zgY5n&^4?CS5(9IZbwa~MkcT^$`{sFSl4;nk{%@h-cEE>pra>SRq)VFqrX>Dcfi|+^ zQHjt7y;x{$R+57fZ48QAdVzcY+W2jT=%P)YD-gq4n$MljZM!j!Fx>2SI}V{MK8Iqs zw!UKZ4j-C3&x?F@7XTEQ8eE}u)97~9-dp^Yj-&BNQqoBQVTIk=o>&m*+# zs93r)&bw>}f3@9&CfW%LycHGdV>56VFxG&B5*I#C=yfx#q^NcjoY zMb9rc`OSI?D0daOOdXAAsy8ZS*qX>bL@?Wp9euipd3RsufN&gH{iyjd?c}yi&=Z_Y zM!{Kg*$$wdh^7=Y+)zql22frx5m)l?hmf4#SV)Juk_V=Sf7Hz6%$^5~Wb4rx8;!*i zBzl7>QyCUkX|2kB3}G4}{RbVgfp3{`MftoX#c=?=l(7lcj6Dtkj9Fb+EUiA3&`yWL zq`|CC2CY+s@MHl`aNG|-^bZu%_V4wwtpgq+59`QiV>1b5iOSIWNo0enY4^^OC7=*8 z{A!_z&h^*VtC|-NG_bMzW}J>grgX%$;85$z0M)v24?wq~#Iw&)cr*hriL+*Xvpd9> zpjPn1vP67K7@#?M8T>pP4s%S~>_Cu?EYW+f^tEqY9a2yacWU%%L}NZFQ-m#@9kV&Z zM+NB>XIh08IwVOa6^%Lu2x3_$Gsl0>)}^{xtpKIRvj_qD2NkecL?%f9Yj+^fha2jF zT4tL0EzCEOabS-s_Y`j=J(1BFoQ*q&k+Uv{V@voC8wpRyB;Wd@zQ-Y0Qw-a2D3$T{ zQAYI~;Ved;gG~#Hvtz`fS{o=;rk2c0h@i8l&L*E9m zMSxp=Sn8}fu!wlM?aThN7*f*Db)+>OYQk-~Ee2nu+=Tfn#@H#0nE!J7(YuRuPG0tU zkb2}9wPTCcpI(PNG_bm|)b7!*Q5G5$((vf&%l)tt!iJ`1U61$cxJqvpzcj-+}~JE%sNCTzNtd7#%}Z_C>2-Nt341f-bxFM(f&92gT}~O z`X&tKWbpt$sQ?^-^kYe|JeSJLsIKc^W--r;0q(mF#-VOLa1&`k6q7@)rty-=(}3-6 z?%gyYynbGZ7hO7y<$2&5f)mJi!(l`MtyYY5nXT0d+ezp5y|s9GxT5M;vm}NY3Lxv| zqRPJLaT9x+%c+r}Mcc(p zTT7O7v88dqD;_qZ|1ximqg9@b)q`IVgsX^YxJ7#~K-I$zZlB^_8vvilV{Ac)LgP$D zKM`)wxamFuDcx(EfveY4~4I+?_lnSK&mFfBUYHpGDxLxp-N@ zg*%5JaqA(ZuyG4#Sj+6paH1i`EkK!y9MJPUaz9(udrq3^zi<=1b_DIiN;6T*S4h7h z|Dy-CIrJ=I61s|6B zHjmz)6W*vR+m(;EhayqW9N~vI1$x7;ki$m>yjlw@%7ll2F_N@`5M{A?>HOKc?Wz7IT>i2qzcX! z74!K5DL;vkc_YF0>YZ_uf%jkSWcET|YI?ujdQu+8#x=557%FGDjm0;4MsS4JutMcqU$X~9HI+34?QaNV# z(Io0wL@~e@1bN?Zzg1^^GUj8s=`$6V6cB`W)sr_}?s87AGr&DAz}yMY%nk2ry7;Tz z-E+|Cb@caVY0)GUV&Q4e7<)g3IQE#tR;gfoj^vofCkmpfl<%!xV1BU1{!rS*28+L@tLoz$IhlDNjU}24D4G$SN z2eg8QZ|er}htZh2!#1r)1z+PAaNFKs?FB!==2c2sONOD?w-RKn%iw!3f!vV6GN2T( zQbUi@6@UY?BzVUM3v`1T-OIDB$~JD*E1LRGsq z)QjHouj>|V(BXjSh|ibX@w}byUg`?A>3m5WwFR6shtz5qQZ4D$9UVoxFq9pohBn!_ z2G(f%;~qh-zisQ+6db6)0JiVKpQmQA47}rB(p+%oC?2gcp^b0xNV2n+{wvW}7{j1q zby}R(w?zMF?U%<|T+}H|d%tE|3JUMS(3PR2KonwS$duhTUu#QNG9NLQ*OE(N5*pQ~ ze0H`c$ep+nLvAh$)u2pbsuibSmK87YpOCI*ycm8S{(medR3{vxG zC(DfP!8AAo!M@8Qc{yt$lc=gWOBxk2!QmhK>n)ekBj(Lh!pEuUWbU`AjTkcb(JMSW zKP~?5cF-ke$s-T0atwL<()?3PtLMC7K(bRm?&enW9o+Z0pPZT?du+W}DYL+z%LM_P z3c(+W|9mb5e_qeG60|l5tkB1Hmb^WeK{s3lhv~d>R~jU6=Kb4HG3kB%mBJ4DK&9AF!r;;nzkEfXl`f88xX_% zfLKJd8^bBPh2bY`V`-_k7BrN$;jL`y-#t(Ts?`Ox$OYa*feL2vvVcKYRSa4Wq=X<^ z-qJ4_VLl-LC*ko){? zCc_maH?hIB=lk0ubB1ZS#mlB`T%SOZeq(b;f#uf2^5j3IUe zb>*1>k_*Q$)o8F~rG)rn9WR>rI5ZaK|)N5lg%qcbOW zN2^Q7>LMzfC>t*&kzkIJrj1Q5C74O%LY$;OY$hnIU2KY6NQJ8Jh_b-{D}(wf6kDeAnQ9Q}xcR6YgO>bdA}_W;$(g zLi{C&<*DvccK|eiE%%gG$YR#6$;u%Wx7sG=`sJy;e%sXMDrTcl6G+(?_wuC)Z-Z8k zPU8G1BoJjTofY0|_A8TFmj=s#Ne(hEkDR#CrSr#GxN z4=42H6Gy)ouAz``E`1nvuUJXlJo5&cl+Rin69@IJc2D5Pd&(z2cZYh)#s>HIy+H`l z#ZkE4;CrRcnE(%#jfQIt@1Y^5l7lrV4_u2{akd#S(a$$RVnY!Lq;b%l#BgC&1z?uZ z*&f*XDy&X!2Wa~@%%ZkE3^t-igSLC1bdB9Z`P_glsMspj4}9TM0syjSALLDu=7_KW z=j=}kJiCoRaQ<#>PnET+^8uNm!idM|LUGZBPfC)uW(MO;4MZ`9(0*QnLe#cJRBvd6 zRn@0S2Q9B$IAbmS$jx{$eMOg9)nF(w7z}3BzTg`K?=$zP*F)FosPS59q5PO-X#G&dfzm*nKbyY(XjHBC&*%$IgDO$Xer8=MbL`b(Sgn(qR_e4mByqcQA*#^Hy-Y>yve@l%RUPS7M5e&c`Izkcz!?GUH(nb zu16iw)Lkj84`&haRu`gv9*I?4JW_pi#Q1<7(SBHm8w`mMh7N0MNt z9?f_#F2LOHn~Xk-Lun7KJx*VMKRZmg;5b*>HT!0a%;QroEgSA?J*c4jq21f_0IH z=x_G6dmr=S6}AhlG|VM6L*bpT-;5xpubeNi84z%GmJr`;;4UqEd`vOyDmXh&w~*Fb zTjF#?@BBSA)lHJV>ffuRzbl#m*{aV_VA|nagr!dw^EO4urbj2qRn|bxo5~oe?7YNt zDa@L_Zk;p8PlA?rx$y%j+H{3Ix?XkO-IsV@Ri+Oa%8(@_$_h!dt!s7yfkAFZ$RFH^ zV!L?Rb{$a<&YsI0CtvM}9!C#cU)PD>S-hk>^fFjlrM0xLA1GoRyRPX*Dat^IpwVEg zD3`k50ttFD@fXv-)aRkqix7Y)+MAACwY!Ir)Pa$u?@Z+Zte#kwvof4}sTTBM=G zkq0ClU&V0sN{+*S#Ial2lue6-Y}DRP-J!zkWX1r)Vd^8%M-MWQG;4>jB8)SREu`|g zIP8@y>NM|Higq7p3D9n~HSfCfDv@UuqK$%LxuOp;g1CSg8;g?S4GxV z)U&b^76uwArXO1I)LH`y3)AqvQ_7oyYsY75o$4l`&iMe6PeqGCX>0>fMckq7BDcmZ zOP|}BlJcqQ+2Ip`|FwJWpmqxd;?fWD;N~Sy&(H+-gKZC58dJWoeZNv2vt{22wkxV$ zaPGU0^O*Ge#iOQKH%=AZdmyYq{|

&BeYjel>wAn`T=S!wVqoi-ualg4Tjj*6JtH&r{qrd2rG&Q0}ex!=MqX$3Cbqw zYmb{Rg*?^>_Y&};xy-%UK57u-BvOxE$WF3zT{A*nWC@LLbefNH^x)ho+LiCGBD>_Q z2f~&UGBAgx-m|j=yj4F{RqW^`kScOH0F)(|`Xwj>StZaS7JQT$E3utzTo|4L(1YN@ z=)LZ3lcOoh1IIw-Rv(W1tN=>f@-%!W#O6y7T8xbtkb}KYE?TXgtqAoiTU%M8w{KGn za+`R5Bxu@h_#Xe#ZgIvT;Od*D@mIH>X}S0N$0N8@?e8#0X)0&(HlP)(F9=T_p-sl% zE(s4IyH6xJJeg6;dV$7?lw-AVTlU23^6UW?ZKB?I%4P$ZaMrAVpiMhrt*RpaBZiPY zywgl%jCoK>@YyB4IHUVU-z)*1hF45ko9=1Rx43v>dD*dS=_kqtfFD)Wp<85WH5qMW zLgoo`Z+#sxaX)+kafc3f2Ofzr3hBAkXI5}0V&!*LGi+W-WB$Cv(}=U-xMfvi^t&2D4oH`bOujIl|u zzLgZBkM*zw)feF;iKf1Np%0QMCw2n{;)d4)GwDku!TxN1Z*`nIdz=AMVe4D=&E%^! z5l4|F2i*WDFNMoCBNy&UcMPSe_qPW5O;3Jhfu@3wREE7rcCSi5Fy0ZLr~q^&9Z{Ov z6L;Z`xvme?UYLXVc_o8Z%ODJCJq5?*&H<=JP2|+aJ06%Ahl%z~SM@U4myWt}UIUfw zbeq~=`!lQh*Yomg#OP$fiAD7a_Wf*Rg>iB1E5Y<#7i)Ni634jsng9-h1KRE0Bq3v) zT0RsJt+W*jX-QFfK%rW>ds`7q#k*DOMB$*tldtEio%_bUu}8FJsrE3E^BRb;QyHVS zSP#MbuRznRUDJXcYN(o?$e7KBU3;?!0T!N|K3+d=EcU<-&M%CF+JFW`X6w$9G}Q!az8y~}MmN0@@X64D3>r;&K7l5- zt#k3(n7CxmP4Qr4FQ7MrRtf;r1<|NfZ!cPHt`pDFW2!xo;i@YC&N2LJPgUm;zdqfe zh(Bg}<0Hn!{YbexKYihJ)nP>+x4ouwcEeMd3f9_hs_K>R(P|s76 z(S#IH#fQ>{EqVDNTo@Uf3E`!M^|#X*^DT2^Jc;!w{d%;_sJmcC8+ClYj8xvaL> zhlKQ9zTTIB!nK?0Adl@#q9Rsb5zeW)r%mMzDFH%YZzB>)JFSv0&>gxT*WE#VBMa6R z7ZIGDHEHdShg+<55$jqkxBaEL0PxW2YWu9)tl&|=4fzorAV0Ds1e%tpzPbZVal!n| zWOgVS!05d1m*OfgIV)^qzu6=omJ=T)eSab2LvsIQ)W?%~owZ8aQ4wP%#VSGZpB#aH z7q?ZP1Tz%kcfo2Oi0MJm;VbPw~nQ0G)vpcBw>HYRZP^}n? zwIxLDk~SmkXsh2u+&8Uc@>REJE*HWC&8M(?Sw%_SKVs_-igvH6*)FTu_Q4a8oekHm zKvP)wjlt@ICos;YF$SlY;Cg@2JyZQb;3v-u7cSer=!}M3E+YT zpmYb`T*%G`^7BNWmIly)ij6W@qABNlB{bJRBBv$W@^@Nw9~+ih>BQM1sg3x9H-7Ut z-MDbS$`FXBAG$9tEPJF$wUP0k?vI;TaZ_LosZ#x+$pSlRE(rRekEQjfL2U>zYbLC5 zPWczk^ECK~2?w|B#KY|%?Hw19A|yc)+W(^I-Q$_=|3Ch#e4+?f7b2%!v6b0x9d|qI&LQ^w$;@PKR36%623mCD(T0NZzE)kiC!KUp2Zz1w4KgmP0Es9 z8#nCp-aWaB7BUulFJgeeV*fK$(@QS<{C&ni`VQ3eBzb@KE}+THyzH&HP^CraCdWEn zrQI#4>pmdCm1)zh9|(LDfj@z3iV@-uxb8Kc;X&-5DH)MOLxePHnj#lFCm^=CL-S3^ z1fKr;4xgm^NbJ)Kel9|+VD__aG}^5q?qbn>{UowPDPrkUUR`zb0zCqt-nrbOg4A*{y1Wjx=>`!2#_oqSoKVnhvKMHq~ zWvF<*93ztv3I9BgADfkDd%~z}{aWfFD+9$6M9*py$jrT0wtCy1%o`o^1Uj^P)i;MI zl}Lgoc_x+oa~Bdt1`O!AhsAt?xBM?8ydRb_+=5l z1;C*DCjr%~<6{8Rfe~{sJhS2}vaKT^p=^rnWH|iQ_NVv->RAxQO9e!oF;Z}vRMTdQ zFYNe3wLE}cqtO!dC{Q~=9aWyx{L@^Y-KK=msw*QYmc9oYUVK2SDZ>pmw}%2i9prVf z_3SL|Nh3!C#1SFo&4)>>6Ci_{5z0^vmxtvS0Yz9pz-$H zQT%8owK`5gfe$ty!CC+Twt@M0DJd?B-EA@1qdl`2entX9J4c+hN&2C?-F)4Q+C~{t zEjvvc&5|9CO(kd81zTSuP8TBv&TMCdq)8bRC!%!-CLBg!!xvxczyZGR=}@31ej;%` zgWNpgkxCX204EtWo*L_$#_cOXzZj}%%4f!=rjzBZj#7XJ(30KMUy1W~yQMraDj<-M zag7r0&RIW2b2`LfQxKgF6z-OCYqJ48Ula8d8f8U}DmqroVyGTn@nU(V5yDKqTqkPO zSH_GD0bT*m)bGU@s+ro843vTBmIjb?usTHWa20t@5qC;;QbeEx+M(U`6g3oSBiKFz zhw21MN0)~h$Xu>-1Cux9Zfoh;E`ZghH5oLBkmnaQ%h%F{!hAfdu}IWf1iToDAgHH-T1ED{YeWMV_Pz^mDlrmE71awTWMH^K=WK4{muByIQ|%gx(tvxs>uvpf8jczo@{ z8xwbbxSVa)!Iea7>E}8mj}kyJ+Z*Vt0n@(qwb2Mvp;UKb$Jq`Db+|bg zyiCl-+DCJC$n3_NVbw0*aEATp?XpmtR@)IHpe>D3S7^JTDdSJGyKjdS!-Y1vROAC{ zHfnF`7wMwyd*`z&vl>9O7%)h8|Ka2qw_*Jr4Au9J?5EC_-OIvSGk0R9d~C-5Im`VO zucR>kDKND_!6*6L=JbQJ0Z*n14UP`ypEih`Fma5zS~mNDj@<@cLZ1DXAS;fZt!Mo) zb~o3>v6X+>0N7@^`n$bvS+@<8OVB&rf3%&2lMAd(0G45-Q9KbdfJ??|p9iQ49nMCp zo%M*y;@V}po0z%5PP#aC$e_fETZH5&z7m1}L-Pa?gMz;t^ZS@gshWNRL1>==rdYP; z2=z=Br*&)Xax8f~{;d>FzgQdNIB!RtqUQCR_?6ycQ7F3_Ff)+?yc|k- zb?<&H173Daat{Hv$(8X`4%lKeq>Yv6zqCVc2g?)Ij#YC$-a!{$#O>mRR5>~xzp zr`kP0y*u)+Y9{Rt@J4(e$MUEEOnl5qdTV=qNx>t+GnED49smo(NtWQ4R#~m>g2uqC zA29A$anBJEOTak=i*VYVVKT)`sp_rOljkWx_$Z)EImTc)O<7veQ~OehR@~F)2O$*s zVp?(~(x2U40wC_E84#f0@2|4kdT*0#Kp)%7@ZRrQi+s}j{_mi!kYl(04(vADRB0C2OStThunuAG5RG$Lt3k~wr~1dh;32WBSd28oe7;!$>{UBxKrdjFLC%+E?r>RZpBzS>B{y z^KZ#UZWu_1khBrJocQP6-V@s!`NJlM47Sh<=luEu1h?D9wRULj)QSH*E8UfR#0Q3= z|M=7JZ81l0(vzS=3L978qlrdLAzYqG`y6&R*Q_RDObTkv!hZ{^=@2f*-4(7;44WM0~z)b7Hwa*oG&JA?xSWvu_y?q<}{9{3*pLhl_4P z#lXy>)xAmed@)8HM6@4)w^@M{0ez-x=B|@HghBI_|InvXuW@__6K*{pMPsgb?si0rJg101doYu)+g9 z3JR_&2uI#Q0$G~4rRdoe)(Y5;C3Q`J^G{}Ol$`?~%h|pi=4g4Xo%(&#gC_Rt2-9+yIVpezj{L@6MdGK6 znFWYkvj%QHd~mfG-Drol*PMPumch(_s6}aRGq&y!Pz*H#rgSm3EM6A^5cl(ImMmNA z?0dQt%-mm40qjOu6E;#IfPm%`ccoASX@50M+T^~G=y{Q=Es^il#o(j_9pcW6$km!U zNdw&_IlCsmK@>s>T{t`2X%V)%HVwP-PfFyaYt$2;6LO_z*eFlIO}Siadd~iq0M~Xe z=&jjaup;UHfqC2nZ)DuCj>EU6zL>c^R2=a+5B~5#p&yBo`*cOZ#)ePC&Y5c5a{X^_aeA zI-dBp--2h>R?WZE(0ZB_24^UD4Xk)BcE|M|6XWi!jzyscQ)}-=@M=upcciqi(77~& zE-l~Ip<}zB-R2-7JktvjG*U_dxjkZ4!C*QYTJ!5A!mGyZ`gK##5& zS~}P02K@!(U1X}Mw`Sgy!P~lP&njYnhl^MRz|AUh4#;vYqJYZlt<6`dRJ*ykG9d8* zX+3L(ag6>3B$?tAO$=t2?09?-=(xCK=vdQ5P5wEQhb`LW^$@px7%4pp}EPGuO+F{M0n%-n&b&YHt;<)r$_?b+axh>^#JN8 za?`!D9Y&HRX~4rshOf{LWVTi}tRDbVu0KuyT-tuZ9LRGOc`{C9EcvB*QTbgK0OES> z&~H~3iY|<}M|=S_SamP#Pe4w+f(Gxov5GpJ<%XNGhf+@aV*}0wxEssP>jD$8#TT3+ z*^LC~0|v^`k8I2mDM_31G1VPe$S6 zQB}<|6`yE&0{2j!#}t%5gi4Nw7Woml&OQQJ&iL z&YC-=3l}WeVr7-s%#qUFX05#i>B*RGwP*c#`lXz`{fX^#A^hC+;gYC*FI7`cjUnGm z|NmzJcm=hZU$Q5+KJDo;#n_oxg90;4##`c>$D2a#W3Y9(4~9TXfZ^nRkc+RnL1ppC1aeCb#}pWydL+s?Mqh{#w2eW=GGx4t1$GGqL-n;W;kV zK?7oAuniy;XvvyCba9o}ftBsWBox#@Wuoi)Rlm8g`Q7Eo-M!^4+7bTqrJdfjEKr#B zJ2PK>jMlxD6`76K$*vU|fO7tg#nwMcq?=164yu#@_bEUMd#M`9UI$}hr}+BA71XEB zM#H^|BF0LbJHOiRq@{ZP&ieW1sv5{(womh4Lz!Mg6GhzKT_DD875z;~6<{+^r-}kS zVAkQ`wTO8brMNsFNJ(_~T!(UKidBIn**Is!I9sE^)fzR>0Ms}b9x^vmepl~dnuwe) z2lM`zT;Ewh^^AOPi5!WeJue8U_;OH0bme(`*0qM3BL4?SCR@f>iJvu3KkP;f*w{`! zOZ92)w+2UsdRY;zVKN}ds)&`GAe=ZfJSPZ3nB@)aY@lajQ^Q_D?+646n^tryZi~4U zY<-}|@XvBvO@>!3yo%TTpHHHxxFYq>Vw5KiDDroF8=dtPl2G>Zky1V1_5lKsmolS+ zLxu%eva8pDTLkzvnRz-LfS5!QG+-1(OYSCcTSlo9yH0MmW_V7>V#o!dWnBDps*$(f z_p_iPsK-Zp;MLgrA(UGHm%~}dbq=TFbu6j(`aAYn=J(AfitX>WtPf18+0}NuG?MGw zyUS&!(yc}drx-YcJz-dy6df>e=O;M%%|#w39owEuMq9#AGj(~y68+7?vJ$0rS_)I= z+Y(FQp>^rih-_cK^FU~Rh<)TdC!hQh><242?Y}d)y1{A}FK#FkQ#PP=%RN?h-H6MA zjfiw2F+T@}l*|4(&%I5TA7fT{v3S{GEW4R2XeL`fs<`D=E$557I3RT{BcyW1dV7XT zQ;;NF=MW>Y3Ik zO~Hy6URGXx+|E?LyU z-`u9s2QGM*Taq)^J`fq>r$c9jbCd9)pL@mpHJ;g^e82$XV7M#J2`-G0b=QX$gQ3wh zR1JTVZWwKy&v`T8qCg~Ff1bjxwTMp^4Jo!hZl#ZNB1(ry65N!yEZzC*=*?+%>HC}W zZQi24DhS)5yAc;&I=0=LyM9S#7siVf2x9|p)sj|~4Mcc)TYAJ;fOmv)8gNJ&tli}{ z?2t&<(wXb$oq`wL0d`=pxSfPEym3wc259NmmOA}3XfpaXJqavqq6ccR00-VMkY|NX z43&~r_r0ErcO#pQ2~+=a^aKuXbM}>n{sANofafr?dTNf*Ut`DANUiy+=|CGG7;8Ts z{ZBE!PYTYx=E_XFC!I)nUewPW&m4!DY`RJEz~q2> z+g8Zgm4|ALVC$6B%eQ}DPVL_T9l2j!k6jEe$3%d>g{)i)2_DG*9fFMQ694LtIFU8^ zZp6F$ZNrGxQQ5exyP2$6GI{u>=J@Q{bW!uSiYVhL-y4S0YvUr{J|E^NC^AEoW;xcT zo)|I7#lo@*xXDCozJXW$2!#;(?2;LeZFG(Wu(ED4Qx7>HG7R~h;)2mL#R<9c1!U9b z9jZJ^R3|+Q5MJ5hA#w9x8Rk~q71-pR^uT^393ZXyCZnP83LrB{Bg$K97WXt3jgHL2 z!as+iy0%}MHzdfSH_x?&IM^`QqgMV#fqSTNmfh$uwN3-lCU!nb8DvloDY#S0ou7Mc z&1}Yb($cv3LfO*=jiB(^}9{ho$Fm-;WUbIbW~j z2p_^A`}JFs<82%OwF5-Jt>~CC8ADe7YBBSt+=dnOe-S3bVMIZ#D{!Z|ZGiul5C{91 zR?59@3j7r4F931KnTkU=BN>3GQlkMw)6aadofz%|j*P#AoIx#=p;Cmj)&`z@u9Eg|lewx( zpAQ~~&M8TkCM+{P%B^oqt}~8UY@t$oK|PmZk}r>_b#%AYxub6Oez;%&2gLk;{CX2S zMtUh?$s{t>?qfaX_VkC|*>GCf1+CZu4RSZwU6+~j@7z^zeJ5~TtQj*aGb%}mlt9@= ztogXOIj?5a@JAKV%X5vkeK%p~AEm5cb5{iEtL*l1*TiL0)Ac^G3TbEWcK7%*V~_XW zH#>Yw@Lk#6GdqTlfrn|xkwYEKa1 z=Xb8~OYR-P;W2Mwq(47;Z+IX1YwNl)FH@-`auEriUzc*G<`<)e)wJ#r>8d5DH0#yx z@yN`rmuDwVXVsRRjABnBZz+&>mVv14ZnlbWo86ok2IFbv%o0}h8)Uy*wUuC&FrAx& zi(ZTXFN8_e3&U1|Z6zSkI3Xfs)@BiHRXg0pDc=l5`||$hIDu7jX)}j|MTTdMwbaeY}6?j){%@cpQz!s z4EcQ@Fk~R zhQSGdJX!XSAq0=hubF?Dj2htUOIR{>*pTw;Fp4P@0fhN5x^2dA9T)1|gdU`>>P`jY zX)85umD`*aH9YWRX!J9)2)?S=LgA%D*?*A8{T7i*e8DrjnbzUE zkmh6YTRZ8laaI^#5G(I((+2>VQr09=)OzkHR;vUmm_Y}$8%MrYNb0aCQ+J7qKr?Q0 z;&*;e+1Mx`K?Ue0%qCZ`wHwQFrUi_H{?Bun`vi6T{6?BXQbE(bk=xOp*=I|Rv_1v= zXmS+onECxwum^{{c2*(TK3oTS5o5;f|6DfLC^)HrEFeMv`-b2qN=lG~D^U%$lkA5s zP)G)%=eHh0+YDuDEDqcxOPfj(!dp{Ly*En(1GmxPyvwZmQq;}Ao4u1bArU~N@2KeK zO)hcRWb^(qSQ-wAT;8n-LaRs_;QsO4sGe2AXMRr(%8h3nK< z60sfKwdzSRD#_5fnx6JV*a^^8bHZPd9S}k~HgjF|B6-=T& zBO+e$>(va2%Nd66JQt)US1=-+j@cX`YnZeOR7RYN-sTfN5M`+uI7dtL-fn(}PqUKA zBh-OV&~le)(7!#g!Osk|fNbL?X);hpD<^s-yEFne*t%oro}`431dZYcX6KFXr0Mc3 zY|J)k`}_kmxy}#TWR!NeVh=WgtpeYa6f@h2HQRAh5?}h_tHLcBxjm#=Y{m;$lJltm zqyXN;HUctphv|`1cACCftLbsVd_ei5})!ENl!Q8j9r`MM7=QJ zN6k5oT$lv7Q4p?u*8DlTav~6$1+00j_YUyLy+AM;@wN^fIAi0PptX&$>rSO62FOeT zk=pj!xeAwp%dy){C86AW_Ml(ry_r@r0$l$w4X&YR763jUDFgD1lK7g;I%7B=Wi3Jm z7+ti>LSg;V09G@~FCU>h(ec2?MH)q6j;htSc1O*$+>s%M;?TDWrcX`$lAjt{&Beod zk^+v%8n@xg5Sk^)N$#qPKV*UL(&l&MKPtme+Yth04?WX({)oWXa2OE;pBMw$53SG!8KOfkA~7Xuf6l2lgE^HWRNSObM%)>4UGGPd4w6`ES)0_|rppAu zM6Q#0B_YfK{&nPGC)# zHSi&U*G;oso+0!Z(pZUpqw`vuM0ss<)n()Nee0;S4elOEa{qEyJ z6nd`ubT=QiAi1VsFtAn0Tx!}$9Z);ftS|e-QeygA7P;(1H|r`?bWhJT!zu-}XEQuy z-t;BU#A52Sd$=8w; zNdR<=5nAfkcQgWUw;cUC&H+bAt<93?^RhLhDGpdy`B`x=u$i=F%pu#?c1ig)X<;L|-0V`&;=VyG5> z6CX0wbr5AUMuvUN2T3fRMR?Bvg2$A8x8aGJV~kLC!?!xYGK(Eyr&!trsp8Tg3+9wt+nMn zTbm^u*H2xKZPG^q`%`X>{39{{DcrLed0+P!24n@Uku=ylBNfS3=bVnzQQi4GAHSW8 zT|GWD7%HXOQzNQcV##zs&zTeFOG~JgCnXTiE`b#I*Of=e4r$_ChoQrq4!ksRP16&*UBgW0@Hk-pEQx#XF(p6JdU5eCI>SxeR@zJ^eJ`tcuzv?6!2ID5C{6bw))p{yHCcj{+4`PApfw0UoG5`v0}2*I^GL!yf>LiWaV z5b7IYG3&QufK$UH4Va@15wAVKptJK(*sVYDUryz_n_oh>Smr>H*i#(oWo4W|x*;%= zNKh(MEX=8s1d}D~Yo+D&t6MK?r{$^s+n0*%$<_mzJiOZUI#kB>c*x!D)&hK^n=*$N z2m%@Lz95p+>yLyWl%%0Y9t|rN&h_C4(cGT>)0&R~G<8<7N`-^xjiG1lZu_wfaj1#7 z?tXn=7nK%~tlFr+?(8Abl!mg$bz+hv%!$GQlD-oaZmejrIVqw?3~-1yD2z~_pTTRS z*9HJ^O=mK}FlqvqjB@1qELz7bMgL>7VXErl7+rzhld)m~{-E16)QA^Ic?yVF=q&%5 z5I3G$4eu7dk-6PyO2n~-Z=vVxrY_{=;ptjKBmmU==)96SaIDKEya#OdqQ>sqKo_nE z_tpNX&gOk&* zuh6HP4`Ka7=PI=O_9cXMvoKA0K;RW4g__=CIti1Q6os>x ziZEmYy~|DLF;ifn#j-~)#U9s7&XuH=_93@`)a+?Mb!;or_JK|57&O$Bb2jRk;Ijen zTb_uvPVSEw?KYKf3!Zi}-DGq+BDmPic|;SS-xlgeOFa{O4tp&L8#V&CnSV*_0qktv zxu~hnSXXvy=Eh|eNLaF47fU3k-z2PG*o=Ar$g*%};!S#*07n~d>^D2_bVMY%?2&|q zVw)yxJ&v{eBOcNXRCVhSsIH!}-`_G|>7Sw zmYu0zNi_Smy;$84zJmNL{fBo}q>X(F3gWmy-wa}2dXH?im}t!r^s*ZttgTPKr`|{z zAiA|aAXvRtj?#jxkG8}93OGJRk%LTstjR^-Kqa3)&_8ZA{-BoAAf87fIm5!|dFgQh zgMH}zGXBYlBi?I16@(zl+rYnM!CmtYS9%#6q?Eofjw_eO(SdmaGz?Po%)dOS>H6wU zc4@!p&P#>ecvtq7+VYg1LQd)PEE3G8AIeD`L`0F)jYJMj0dijYyxG*=ceAY&5zbs= z4-aHRVb{vSS2OLWZV&Z@Wy_Lb5oCTw$&t8jxy%x1ZC=y4d$Zg6Nf7ZYQO77n)rktG zkmZnt%fRa_h&9>H#`8ub#$C6>N7w@B=MKpWKTkIrVC-4mH@8W{B9NyE0N!85f5Q1m z3>I-qBveC@Vp_l82(hoNcj0FA-2cO}bGt{Q{+yFNuQKoFalcZqZ{%yCuo?$JXhXk7 zq?eG(?{*70Of)Ek$L=1<`Ad7>)@FWLBk(IgZ1sN}i|ew><*ZY&~$MRK#r zx~h}{!84%2YVfPm5{Ah#8o^06{A^rD9U{Vr%yev&YBm3?0-`p5IVx#py}hRixXSWc z+q|7vk9Sj&*WOrDF4xMpi1_{B$azk9C$T-Pe79Oxz3vrdqgoxO1fxP)es_rdQb%b* z(W8!@0#5d| zX%24cgbqvcaDEXW+*+5dWR@+Ex`UK4`USxE8!@HfvJkXCHEfS2p%=c2*vzoz4`=;n zMzvN1$lhgEX3P7$l5Kh{Yun>Zg6cr(>m0R~RBse5=cf5FpYu!NXu_W#t)WeeVi%;r z-lo*yCd*t2XHmn3H9`-BeCDV^f+?T}1@N>Qrq)Hci!~gqU0hI7 zfu3$0cs)R03Tw=6a777jPUB0KbD*^i+Vv6XXH3JoGX;6oXcaBeW;SAiPiUun$>co{ z$C4sA4ZcE-JkyaR2#9Y&^`-MhPO+ZIh|Yo|%{y>JVg|U2Q$Z z%lR7bbHmqq_k{N{j<3e3NiL2{8feU5DeTtP4|q$kgDd$>L&!27guGXMY`d0rEOAUt zwI^l!TP^>({|*hPEUplTWU~8O7Xhbp_^Wkr9lzlS0Hr~6`v$}SHGdy-MH&CxH1v!6 zb5SFxr_PWS250y5QtLG(jqV<&h!w>GnR;bZZra!@m7)&!ix;B)6g%gK7g2B>7){4`~SZ7n_f)c{;lh@EW;4&+qOg3az?il9j0&iKlzGYoJ%jjG^lmDt3v;C> z)#z$kBls_2*08pofSErq{IG0!F{&r6R_b|_f0dk+mdRYpoiEz=O?GRc=wk3jyS0tR z63PT%9Hb?qP8Y+0{9xM*x1EBtgThy?!}#s%>afih#@k5|En0qqWFYDaY$mV=yK5D% z^(hM0N#zIlg~5^%S83>+F3uC9MhDGb5j%<@N~L#M>DJ5(ORzBOpIfaM%0-ltT~X3*~D75^dRkALs!vI(9F9#jYVtDS)IUYnHg@=jES@b zo9E+d!o@1*GA>W~Q{>vD6U}xpV55_B%|@G~V&aXJ=wn@NF2Yo~ z$rGDPCA)*|&mce)R;52No<~hx-Tf$i$?{Ta-W|14+aIsbGrUs7OnqE}Ox2!AfD%fz zqUS1}8*F1Uv+;axcbgvYTb#h>uhPO?fXLCFe#2NQP>|a#z0~6xH5NegeOmL+a?N6x z1lvc^Bvc+5po_w?7%St&sSchlVH%ECTdtQ(>B`)u4iKEMf|b^pooRM2%*mQpj>T;f zmlPV6JX?)rkKg6zO!0qY5l0v67dpL*q(LTKU$%y&KwF#g$E(>{VVOh6=!F@P?jwHe zJAa(1w|!=h$*fjwSQwWa>~3s7rAmiFxYJAfHT%$iGfL8QZM3U`vRfv1Kl>&UC&R>r z3?uVUy?ZT|ZQa9Y|2wr{c3D$)nIJlzMNYu47LdyZkgKHSXeqhQhPyBlFG~7bD_3xK z=~uWU28b86+l>e&#RETp&vWr{soZ|c=f9S>?~(@z#Rxx2OkngmJb z_Coyn5dvT$H0jGB2cKqqQmgGAV{k~hBq-I^;X$C`zGBlzUhQ*rYZ<@wB? zVPab6{N9*T=IKCI4=C!Tr6M#ygR!ns(uwF7061hQ=cv^q#1Ml9<;^=K|akrF-%z0kkTO6F$pK9WhF9gJS!vH&%YfqLJ@;u^5Z@uI) zA}dUlNgTTXbZp15p}fpjoJ$m3G_GLNyDO~!%yvf;2M7%gd9stC`XU*IkClmt(j26s zacw{7~PDZH(Xf4)NmH zJAa&ht~JX4ub+?KpqpI%e6T>&U5bAvU`@67!yUGhQrBrnPUyxc&NTRmn4zB&u=^Gm zuBI}7SWfxx(S9By)}KWI{aR|~+nySC^ND&4gfC`hDg*lB(zl$;eWvCoueWEfNjr@;4+MQs*WP^86f_AY8Z>u#_ulNWfkI3hJeP2KJ zWF`{6>U0O$0t4x;>FJ2jQ8oiMtlRBorzWFKmXl<6Gy)nX&OV?X za5i!4C32$IaOl#s$y?})7{B|eT*A8YA99r%E}Xl-u7St)nghFmWg^##XqlwbMX;U( z1;7@<^H|Atqqd(; z;onb`YAW(yVLAWYpt@^rClDv~;J*cDMR=V3$e#gw0nS8KB-dFSG#T_t*4m`DIPe;X zt#0Uy*ha_BaBpmlo;hDrfsNL8@VoL73cd}Qo(4bZzQg|es1g+98d1)zow8A&0GnDM zL+Aa`Kg<#*@trMX#TU{N1`T~yN3yDlt6Zk43`<+!5zS&{X&+?pTA zHV!8qO&2zE|NeXuSZOnpDdq@q+scZuA`9+o(z40TT;I#1H|Rn`C1(XQnT=5H?>$|X z;d#kDA@}XLK>vRTxC;N?96>+VR;RISZ_4NY57DdP?~(r4Ul*M8Tac?yvv!ecJ$D{$ zL`2sI*BkTuYk@!h_qHxzH&R%;Wn}2*O>es2G}S11?=A-q9~>kh?wO&p6|5_?BH-Zq zH$qe&W*87Z%|4psaUD|AZg(HWJz8MiqCtZbu=q>`NJEm zY>KeqRjmX(%Enwo#!~h56bA(TFJeQ$`_2&R9+FpdO-k!0e)o0vaEo z@vLq$Qc549p=o1)NY+jWLzTgk020-f^b^i0MTm-OLi}D?wMaNqHIC4p601dbo0d_zF6 zGrilf`HaB(f)u>3k=^$Vnzau(*Bp^VQ<3NObLfNqhSb6ZGy z&)uPjO?PuU;!x`c!B0;07=shJ_n0$zp-weMOPr3kTJEGEb4iqPEl_snFP<}`*5wA_q;PUY~2pMPO|E8euA>m~mjDMWq)+=!$jvBM9`jpx>XFNYx)i{6+_4CQQckzaaT zhW<1z1~B((fQj_{6e_jyV5ca;v%{L?uThgR&2}&xySQ{XOgAeM-qbFRxe%1vY0=SO zc-07DTtY3c+yvC~&7v~;VZ>2%v>ib^TGUG6zoA^_@#hzSmewre>gAqe&YAv<8K7}q zJ0~Pz0Ku(gSj{}KroBWPS=hNkR^C}1zf)#kTT2UVYxwfu~1Qj?iQ24nuI+?aWeu+fRh{ho=ef9Hem1rsa>*Sxx` zPJ`tY6?DQ6#{?Gs(>3?MPv`%h`}6OUN0gc?DqU7o#XN7d)3hpwccy!Fr~lXvsow@(w0^|pI?ES+r)#L4TT2rm z%lpc-8jdl4Y?*Fc@QM}oFZA(>7~Q1g0*2mz&$=N-!YPapa#>X=C;h9FqxGg<(6s+n zaY;|{bN}1e%0lk@yXsdGI$+1BitCT3Fp%*aHW%_2Ou1_ui#} zA0ioS*kIG+0Q9M|&fmKd4uIv!<;GJt2LA^ZUJlq)HC{-{`eI(#ekJC#?0vOA2sMb} z!er}c>F0Tm_or^GEP*4JchCtp78>D)KD__b>UqWa=t*-VX_0XBt*T7VWeek_&n~?c zqSjXb*X-pqR@6Li&3rtZ(f%E+pxGj7gT&8KmG<4)VTGw0z% zdQ}+2AMw=C-b75%!>K09E+R-n`-rRzyk)G?77@%3EjBs!&IJH^YBTozLCh{iZ%1LHEJ~h6(MDt2DzpZt@H+Y7^HPJhTYGnkwB>&|UfA?WP$7 zSqCehOFHp3BgVWebS+Ev-0d&le_VFZ`}cL9KT2OP}^hm^&c(PB3gY-e5k=@L46*aHOW zk?fwFROBeu0BJ+MduG62^SjPU_};m^iZ`&CFrl$M)BeQkdo_{h zo$cuZ0N9G!RzEQOz~*M>W*jyNeXN_r3#2myVQp{2ARFO2by3Y#)tWg`9moe`%GGcy zk$u#SVeYcLSGgYojp-(@8gCzTtpYDieN93rsq#ah!i2Gu8|?d|i<-en)4tWRseCi? zUDa)zA1X>)X+}3Xq=ioo-Ya2o>dTnS{`3K#a6`lG%jJiSH$xA8n>n3e8b(#x zyVdx4^XNA{nP;CTZa!=VwLj?-edZ<+XA-18sP-qs$J=Y+l;0r(cpL4SOwa9)#t>;`hDdZ=BJ@k+MQQQQDl65iwD01Fexx__b{cDr92uL4IPusQ zuMz0LXwO0S6lT?0NgGQKk1n+~ZQO>uG-hXeu(;A%+Z5kcsn$N*g>BZ5r!*6={uITVv zK}sIAejM)R`n8qW&cXfRgh7u4p1kGaS4FQE`7%?N{U13#=v|8*JE3rKIOA9BC6S18 zhR0O3^)7lMn!`*z_3RA{c8$tx)lea=W zYYmao7o5R?(e5kj@kl|h?sioL(Q%5g4{;e^{JW|mYLJQx-by>iwW!}~=+!H$e2YAp zSk@LuHZ~?{`-~E&59)X0xy=T&a^Wxz%BhK-?fSJ3AM@E%h4tM%gN;D9>ufr;?>()% z>8i1ml!)1xZ`VBSzZOmwe6oNTp2wQKJu&t+Mq7vzEKE7Y2^%-fLG}DAOxwQ9nLaUK z2ocIZVU0Nv`b)QwX)9)b{M*jE89n6}Y$L4)?;~xoN0Sc~YZd3J-hFs{)`@X>o~qaW zlm(=dansLYOp=XSJI!9tnGjzegC5dH%r}o7=MMXuJ$Uxi|Kc<;kn@(|u)Q&S5@DiM ze$Eum_wRj`dZVhl1~1lr%~EGo)=7t{4uAqFiHGl68ckb?pIEO5oo?a{eapBSP?lA+ z!#V`(tW;*Y>vP)cNI z#>G2Ajy0FgaPl}>U;Ta6bp))(HC2P5}(?)h@TL3|MIKWFGo!SYSMP^~&PDf`KUmySTM+mAEHDyST`F}^I0?=9{&V%^4e4hqqRJCbv4LxbRq?M9l2r;k zPh7t<^0?@kM3s-e;iZARgqo(D=qxQE>y!cH(m0%@<`rtfO$cr=O+(Zn3Zj7lU(&-jUY zSC#MSt#|D!dp)mCHdJQzG`cTvXPq-wpG#Ql%mUG}AT^t6r4NTGVagF!1A>1frNKV~ zzOqL_$8WUG!-lsfUMZt4XLI29K7p-t{+(Gy*ZVq6QZ@^P#)~iU+Bk(1=vMkHxeg2; zIlU~u$<$dZ znhZEK(3w5YkQ|EVnM7CYv{?={r4NMR+g*FCl~rCJqZRIWI2%>$IBWXPSQw2M7_183 zBn7?V!Y-+>SS}Y6uIpgl8|n50_bU9~Vc;r!d%AXSOM#M&=eY9G6XBKHx!*iZT=+?C z(G#*41HR7X1+rYRaWrrEv!r-p`q9$HH4v?mv3BS|z{zacYNO5%;{gtpjWdd&%^Pin zlU`4+^A3gAZ!*y?=oTSoh^MR>U4j!~STOrFptrw(8|0sPU!)6$zXIBhV!a8d|A&Qq zaAL-$>RrV?Bh<`GiN?xd#w@iP#Rmz3#%xfU(Jv0{D4(z0VEs2c%{{5;{(@~+1$OY4 z79n3`n`rmLRJT<|*8}OVk4Xg4z$W~VbU$~7BjqQ#9jHf9ckg{(OiGlTXhb>-Vlkm3 zu0c~ZT6K`Qng8CFPj+tJ@}e8m3tU}evpN53zZT$d1MCycyHrXt$9Xj=y#)TZKE)H zOGvb-WdD>MnR!myyr*jGR@JKmEx>8S>ew!SZgm5rZIvfmz1G`~k~7)*S7-RHrsOQS zp(5}qy+cT6w%rCQqRcC%{##rw5l9;_3UMAWBXL!FmREHAl`Zi-EEDSg7OUPs`PL@b zrr^@lIkT@^p;8V@S=3NmMO0Jcj)RM|yIP0sLXMha$OXzbHC~QspU*cPq1el`)W@n8 z+#eyO`NIPq^6+Y=s~~Lc``*@hYDbQo%%T4l^~V2wuf9VP3=HC8F0~Myy38Mh4&@+T z##m#( z-*`05nZ~duJkF)X4}iu#vkf)pwG^GN{VM$wyYipr^6iL4E$Hjg!XsYY*MO zx3dZkE81ITGWXDqP7yhNPcVk+XAmO6sh1R8``-%cDO)k<)Oy-(AglA%eq?7 zbgJY-PAP~OPiy`}ufe|%)}2p19DqB0OnWjw2!9Z->d0W-vqie_7n8>jVxRK@Rtb;Z2T~02E>WMy}(z7L_-tGnS_Uw`7cU&r&3g8SV92G3M;uV zAl?a4h32?g2^<78^RC*{)%)s-Z**qOfrCcdFMACJf2;B;OWqT2OW3Jua)Wm$LYWZ_ zvu;Nd)yzjS(`O_#WQLH+#fzJvub)I?GmHNCvH8$ZS4+&5X^c|eEir~aAWt0FkZC!@or^HyKOaHsKsF5g2Jw5Htl%?BC#M4EBq$SC3iRLNqYp2NjiYUgbHst$C-ujHByHTHLjr*z_agL;K1dh3y3&)jpBQkhY{bmin#fPe8;K$W%N zxy@RR8pN?F2xn{9DO zK$G*~IPuM$>zHi?sOT}fj1%5JA%wq~$EUAVB)_RpR0fSc0-9Rc8m93jPkan)lMShz zr5#7a<}Tig>&VDqJhxIN7g%mY9%3d9Bu?oSX}w(>*ZBOaZp1UiD@3xOIVS8uakETG z=V3AKgdHF#YD@~>uND9G)f3b0ugThr`**e6KaB{aeRfFc#SKX8m|zHlxqXS@g(UyW z-E_K8H9~P z50Ww*7WqjZwl)?xmO*U!|7L$SvAtk&v!adw<2)hG55Zo>*A2oH!#n3Y8Ik-C-t65L z5OQ_HWGQ&VhsK<~cQOlvL;Nng56!kreuI(_;@Kehm`U;+2V)JE;bM%z3iJm7i~`|Z zcgvDvO##yofMSt_y|D?wEo#i@%j7@J>6_=30|NFl)WX}w_yyV)H-ps1Q5p&Gw$ekU zahve$zySqN{suXFVfL^BiwMm*Tp8Ig8~p=X5=JE$ic(#vD`}pg#d}hq`~aSAW^LJX zKtz|e`n`Jckd-DHq)rpG0G3TiMZv6|E&`3V^>U#%h$5UansK^i4|LkcU{XBcwGY*p zMD{N53SpjvwdKTu{z-;R6WoUCX?kFpYReL1-(EU(b0#N{T^6hzG@SPff;6Sd;Ay<) zpJI_8!%6k+XBE{g>6%SXoU{3nz4E7@2;e)BJ!zWr2ZSkYy^BAiA2cN4uJL;UlB z|E7UaUJDNnQlbZ+aKzGLB|I0)EueyiR_1n1lq$fh&i~d$+4FF1|VGZk1V?#eQQQ578$@ z^>cf53|QlTKP-iwr-Dc_78?+t^-hm)=!y~tBht1D2T(QCJuT!kQuQzCydZUpMd&Mn zW5VNfU5=NLH+cQ}r9LT%6wT)OK0#itE$@V5j^$bm-8~+7>}%;6I?A>iCm=dW{=IY4 z<0k5Ox1^34$v`nLSyaBp%v$hSznwe%$l1hk=QE(SZ}Dn=M!{LQ(m@^Ay9FjCMyruh zGyXz)bo!r9&}8e_cguG$pH!3Hv=GdUXn`mu%KD@X>ciY6Qi)Nh->oERwa{N2g@6uQ z(tV7r4U%d@4TK#p`Y`c9PZ}gR{27o?@eiDs+DyTm#c$bQJ)E=_Y`Oxg5;al_k=b~g z<>pb156{Lbj-Gw8)7HWx&k|pc9jtUG@E?Gca)`^r|9P#vS z%NF&NSNUOukUv2K7=W@pwuBHILuF10K_}6yOi4!eZ>$XGOt}m8DsDPB=2Z==U|*8^ zxVrsc6j<@MeJaia@dx^|<4^yihNynK`AkU3$lFJn*$m}2W%%c|dxkPnPJzzdH(BQt zbtX0PN8WBJT;@ijT|^4X5`}7Zz>G!yaKHL4EwntJ0Ye4hM%oyF*1eamBR6OiFQt+6 ztbHlqeD>Vxl~85F4g4cs3`aVp$Cz83jjPsOsQ3l))B z(jT<=ApZOhKz|+zc3r;GSo>PJL9$e{k|zS#VJ{w$Q)Kv;Y9fD4)%`6XAg6=N{NvH- zZ)_m^cNU)oenr5O`Vy?VE z;mm!v|JvS0rk5;`m2{-db7qt&bTX+VIf9$ntLwMc5*!2ExUKb2w#b#L&+o01^l)MD ztDTR?@(dn-mG3!wE1?5uQnl1k7J z;nY`DYdYU@>@yK*BO@Q4O!g>*dM%pwqZX=)YAW+MI`0ik7LpxLqPcoGW5%TB;YFQc z^79VZ)0(WVHu7dXoD4H+NZ+vqBpD=;3x%vjoj~Di{NMC2grzyh-EhYzxMfZs!w}MY zJk^x$$!_M3aOWhgI8CQ?2lcz0YFYXBC6*j^v~kesf?4| zy4M290{v4l*AvkA%zdpQ6%}u)=t!c$yD}_9M0h1mH!ikW%2V-{+*ZwfA9(_Hw zcQFcd4LyA{180PcT75+6IBuSv{NdbsyI15p!KdGDPyRaMzC?Y$mcoOvWOX^_Hg;Z7 zBZGkP+hcpWo6-%pMV(45hno71PNq~`jU=Z5HE7kZ-m*fKjRP{c&AtRk9M(Hr3C&TKyU<(+9C}g~If!LX{voyW6 zdSR%KGyQo#%n@SV;=ow|?Gd~w)?Ssr@fD3%Ca=O`fA%n*s=L*hI$f@C;Alo5UhSWd zcSE^<-I++iZPfW1?pq4OQJa8z@LIc>?zWGKQ!fUrB27*BkT7JBw z>8+Z-5@9?^Z@KagkRO&6R!n4RZ9JZ5^$q#sT5t?i7wL5GaUk*sHw`6&L_GC3{lkG+w$Qg*Z|sVN~u3A5n=6{XH_oB8_|6z4l1<2 zeT%4~gROG0-1T#`A?oBxR^5q8IR_pf}%McMC^i#fa2Gl%7BFHZhO*6j97i*wK%~7%*3RtVtsnZtWeb2 z^NaZq#_XaoEhR@JVxjW=H#+N{aAz-OW8lflUKqjaC^$bv-yFc`@L9WnQXb1v1R5dA zj4knj*#lJWyn*JIMR&?Vp*o%UW~KYk0JPo3PdKb?$A!#NlIRY?3)(c~J%@vj50PNG!`f($Sx`^n>q}_tFSP_kj1f*n8kL-*xUmFYc zp0P0PS#BqKX;5--^*rrEp1iRFNWIYFR_7vT^XfzMMct)K{<*h*`{bn+iXUPc>RmkE zc+SfG-$SGD(owNy)z(@9?N)&ZDG?yPV(p44t8y{szOj+Wf1F89a~9Vxe{0r}x|3w* zB%Z={L0u=Obl`O!e4bDId+H9oZ1(|EF+Ilu_Gs8$JJH#HXc)sDd6- z{G_(~>)@|(PBGz+HJ^LRaj)6X>FXc)B4S=G{ta2Km5=(oE3NZ+`GEq@wg;#kf-If- zjFk7Ky?PeH+XyNJ8hjX`pI8Guwh8;->-F&(dqc@c?Un7-5qK6Y%Q|&EsrSJt2XT85Gx`> z&!LvL_5Qr=t=W6Zbmq3gNDRsT(@l2TCqNCvkcnti1aQd~8};0lzeMorJhYFeqGIIE%lHV&AYv$850p#lSd+ z8znuc@V&ENk`s#e)nvx_`HH>DO&4cPqJNyuXki?a&4Vky4mSBC+H8l(^N|Y}>jMsQ zye@>dW#%B_8s5uYoSq5htd~h;|g@ApScQiWj14PMwtsXG-Lp))F(ma%Fb^jlOH7YJ$s3_2jxOJmhVI7F})*IN} zEVNW5ru3))dE?rE1ZVFF5!U@Oa4Vz;ulHjMAb;h2c35J%=N)PuZ<$XM%X5Bp8c89I zc=W6+4CZe1A3Sm1Ez{>8Sx8T_DzuVWl^-sQY|XBQdF+L zpfCh>X0S%HMM^YjOjSls{s0JPSiQlBNFhJ+2HDRuv`zwuYHo$)*R@w(%Y}rwnd~c_ zIAa=ycy0^%W?ZK5m67K5b)M9R4WZ*Gb_mNP5FK{3#Kl7IN5?f#ZZC(#`!L!GEIx|Q zTFnTTqoB@xH&Wh!$Xb8%aMl*HJKWXl)u}bq%RBgz%MnxhE2cJn@2=*lHO(KSZrvEP z*q(H;!y_68^~9&@Nv#E_ekqAEHPd*4P)@XkHwC6gxI=#xC?*&sRB$?F8f zYabgQ>o51csB@bob~N$E|Mq>Qrlxr2-$VZ{>)bdKU<-e2R{gflMJPvHpLgb20UUgc zeC2Pl-W2`F6;#J(L$Bl=(`N-fqje9`A})m{fm3U*BBs+e7En9gm3IGT=w*7?KimR@ z`z>uVjqb#MMrwG6az$8uiQ^xf6NS5N^Ly0V*!|lc7RnJct=1)K;Ht2~hVE6>=LgQu z-|NMBThgD+T;!M;Mb#`+oTQYrG(@R|ih2D8J4EK2XEyvvG+z3*l{-VWUEP28_vo;) zhkf_@;}`;8;@~CiLGj36T)MTPW#jL+qSF4KulyCAZc&|)ufDXITG%Dx?~yzhcYXt~DtD{)2MLN?e7UqaxV8~7U4UT@0URr81avzp|B zt~cth-LAZKNv45tzD{}O7HE2jU-wfHtZm$TavCKp8#>5m$MJ=T307UR+n?Kb! zWf+boqFFkQFBovLtqF`-LJt- z@7444eq+OW{b>D%Q{?Z5g!+D)+;91P?p5OB)uha0pM(B-xh^N@CyR0a$nuoTYx#E| zVlb?vL4+~Ev&hNu;}+s83#91SM}PI}N2N{B&)NsyNIrMg0F1z%wsEe1&+d~fnYn0O zEVq8154jk!1dBH}KPY9w4K&+er_WNL;Mq!5K4hFT?`{_6&u~7$C(CVtyecS+?7pmE z1WqaxnolGNsZx?k0)1rj(pz7q!=0?~173Ws>5H)!Wir%hY zaKKpYX;-7BOt_y+7pzrFJ5AM@~dp@^k+=`o5a3q;- zX&f9%R@hLN_m=L0QTZ;)AnO46G!Vd-qJ7Y4e5e;w2DX>62d1$sgLDvOd?ZiSH(&1A zk5YUrB6`9tVCa=Pa=jb>B}y|vqXgycWJE(K#-uk>bB!eHvZ25XVU7JG5VSsNq&ehW z?xXN2*lEe}1G9%84$c|QPo5HmFcS97@wYr7d(Z47ir8740WoaH%zvf3GvW`|p z-o_#WKDa%1>PSYkZ`G+NOnb{-ojz_4QtR2s?0g?dIP0K;&j5z>A6t}rrCg_U)8Fjvv!?=fsWwqCq>$W zwr19;V4Hv$7v!&!m!)@lg6=Gjdr4J8 zjoazsE*JQO^~7ZrH70aQ*`ECBk?!#Zef1Xoqc1~77$RQ(a|Llhj#?b2^w?+yzbp`Y~kLg{Tr()3|taStYj~bHGYhCJdpEz zoJgs)918m=YErRmt>Ag4WRn*h8ILVz(hgI)FhK_jb}VK7N|~DPVV~VhDs)wMcSH@W z#e@x5hUqZuR($Un2-%tJdE7PF)!Ys^Z`FU5&zcD6H1$6?rNaZ1gk|NqzX>|0`VsW99@w=Vwku+;f1UxXq9+3-^uzEp}E#aQqMpl(8= zjkGm^amA5`kb&RZ-^Ba!@{u!{d8-LS3GaQM8fV4e2M(w|B#gSU7_p_yro{-nWdz=Y z;ftBHz%bSLE}O(&KXIFx_{jD7xvtyhuFhe~7JQ;IxEDl>`z^HMH{;7e6PgC@O$y%A zMBkvJ?4COe=Islk)GNzQ`bU-SmkJ4 zB4Xp1K5GfMW@g#*q<%og)Syo&eE9SL^H;WwqPOwn&lAZ7*LsgzXsPLPXvcUz5r2u$ zdi$2v;hwwUFEfMX0mpo`xb5zjn~c}$xp8g2ath;~9R2DL_Fk#dfw>!|nxO@)@-H_y z#eK^wSnXkxp`_9Vk*K^}C?=CcJ3HyDJ?vZ|B?jVly!~OFxgxzv*ftT-ATDV>buBNu}fs&uKn23SCwO@Yd{lH^@MQ_=n?@a1bbt`Wl)x{9& zP;egmAVrw<3R$bYJb5CkcVxg59TS@emGPHNo0@G~>OKnCPpf7mVPZJ99!gfzzGp!x zV{V&6O#j2|C9~kgQ2+60~ zHoa(PqxOj-y8iFlJJ21y@^v%TzRi|bC)9e z(2Eztr?qg@W|oW&fR za?kVzvrOgdGcbNZCL6c2Nz8@4!N+S7+Mro8PDgfn)GyuU-tVJ>ES{fez->5FVeC|Y zxCs(;XeYb%QBmf{umamuD??@BwW6*vaKv8I0O_y z`%YWw6fY?mOzlY@`>MM#F~>I`~B~i1gaqdn8t}=2^G#;I}ivyJM1@cSC8=Fsp2U zd_uNY;V;M!K2;)J=}Y^zlKJ4!?kg7~FvB5D3$j4-WXh`p=q7y3r+p_}NkeM3YN0&K&g|%`5!AAyso_AEjr!jH%PLtE95{n)vy@r^= z;CM_va)Bg^Dj^H*2R#VB9HTU0c!3Y;7AF44PeN4?BL3Jh^Gd3^czTcnbcbDdMcmo3 zL&Hx{H!=`iG}u8_4)7PgZhPLK@d*dKBOa#*H6$9#jT=|Qw#qD zU-1(sjw@d;U;CMgFa<41zrSdIDRkIVR+V2q;A`3R9lEFWR7+}j;L@>cpN$^d#ma^D zRqi3rDcnX`-?s{^KA|9(u}EA080HW7Sbym+h=e39mPaQ@mejs~cBcF0-sj$Lux0Dl z0N&s|`_tNGLn0cFt_s9RK3SgJCD!R4V%AUg2-OdO8VbalB4|^9HAg;iRq5PsU5*~}z zHxVV5pcYoyM;5(zE^2wEnG5q~>YCBBy2W9F{kK&_)ZEd=vhCKpq4Ii&Kp{HSOML0J_MZ9wn__j;6gac?NP(G9;4O=$pK%{b*V`tWt>Xk*~H zPoo{%aylNkfPUiXPiUqnYDUPEMbfS56WSmQzU$IzvGV0E;P;fJ1&3YVQfPQpH(1@qLzz;E4dpjWlS`sn^!c&t) z`k|7|XGbw>fwdZg)g(XG6)&&%HTt?5+}hm5=ua z!e({%E#qP^Go=<{{m@1q;}9RWkDu3c@ymK(g{{M(I=z@>SFZ9R)TCKN&&VhSlV>4} zbpvKtuMk15nd?eA>n8(tcw0B zk%vxObAGQmpZMx)$doLT(QZ@h*sg-o^<){m_*SV^OC(AW)>38MR!WW7MTgP}(|c-t z%E?NA+^W&L+ktPEMCj|UTn8~*nW)#l@Qgl%SyH|4K=GbE*8ke~*NELdZd=u4Yw6Nx zUHNuA#fWZ}pOV~3=C}~c2Y1=MNc2>l?aIg3UFCzHr|x>)n|_F24;?eJ&&slUrw^M> z%;qS1uN>1A{G&-$d?chzU-P9Tsee44cwxDi@+8DZgkoYXL#j7rTFu>}PdhW9({+fPMH2gt#SO&?~4*$}|5@W&3$4Ln257_?e);xwB4i z+q!UN&6pv|9WPIW>TL3C9l_W)c(rmN2Y-#)9`guKV%M3%D7ESh$W~Pq!zZtEANsDLOn|78iQc9QQQ2=QCQD$O z0qOYV?8OuE)d?AkbCKAY;MnhVTc1O#wSceP#5;2~K5%lr|M3a?=Vy^L7L%T$LC*=7|2n8B=2TTq#ZZ+x()< z5`8~1yxz*yX>(Y4Z2Rs8E7C>CqnzP}&PYdH9r~k7k6q$%lh|h#aUi^dIjzrU3ab#( z^FL6ETo7MJU~SIDeA&ik^JobcmYnN#zGPO0AaqN^BsR0xWE}BS*;^9R^x;NwVjDMQ zKF!Iatg<^G7@AgiCG&kp`7{cdXv5R|97G*;CFC2{A`p5>mD1Xpj3*6hG66TOK@)2j zD2%6nv z3l&q+Sp2)0>+T2dvl~8K$*6(Pf=+@NrKVz{jM#gG&P`z#q{t(?7l=Bv2O2vMKGTbBej0CqE( zwXX_&Wu}_|YdOG*7q-!zHq^2wiVguWZk>x`p_KVucp}M@_7A2Ns>ywM*h$Aw3$X)0 zdO)tkSVy*@gjuNu@oP@DoYx3-`sD0XUV;y6Xm)m`Yv+*7wqo>KY9u~( zb~Mw==V0$-qu$;J@J_B!Uwu80L#Ye1&~M&ax<_5o;UVJFE~urxmS`sNl1jHy>cz#2 zv)zri&fe;N^-)a6aB1|IMP@_ajl)UjrZc5nsUa6v&d^pj3NO*!PZo_H#z142+~t11 zCy+4XkS(opUae6J9fC9}m95?6flEmj&P^; zW1^X-AUL(K@!zYX9}M@C%Iq~d6RkBuAA<|S#28~>R!B?DMxO;EQerO%XFFt!D$*10 zuA7~$pDmz}OhZjGqtx|9-5y`Rx;NdY_FPMmv=sYR9>I2ZV7B*OLd+6JE$(>*bB&w3`4hh6WW z6)AVDOTZ88sN4^Gq+g#Gy`+}iE8Ai=UR+O>$B!DEMq#%U8bNkB3b~E7@`*O#c1lJr z``KDw0v3nIx!+f_J9pw8se#9yu*q-UhgdjiI7*jC)!JGn?y#Mw2-EsscbC4R~N;)p+b0=U3VKAQ$x4 zUJBbn&3oQ0zvtk^=rTpHKihUW=0TWHKy}GSZ33O8MNVNwo(+@uGLSgqL$ykn1#K1% zH)x^r ztna-1=FdMFuMXanN>hCU0OmAYP+>bk*Kf2-X-A*vj%U8~;^zyVfKzK25QWis(LIsuXQRhs7pFh^e)-@mIn(hw?A zO-!&{fx`tOOF?I{_s=kEXQ7KNaON8xVRAV_3?*`#)29iVo`ah(yIyeh4h`UIL!x<1 z$2Gb(UT3czU&9Vl2t@|2pD&k|_dT0e#env4sgn*CUzXe{`zK{(2KYu+;=txn_%H>7fDs_9@TK+~mUrgV0 zmqni$1yH^5Z6_ZygFA4sm=N>8=Z*ao#22)`O9vUCX|-b={4FmG?|gN$SF*(=rrKnZT<8=0^0o&)aL~5<$63*)p2tc@gFkW; zdbrN?^Y;QqI7umRYaS5W9klwSa>VFS?%STzk71;~FW$}quEoYNlXb9(r^PgP|FbeA zf0u+};$l8ugD)j;%d>AXj6h%24_Hkt8hA{=aMz|;;}&`jq=j_8+qPD%t5xjQvqkTx znyi}nyAChBF`BI8O2^RhCq@SGAhqJIcK?@_vNQ;*#hkA-@{XRyfY6<>D@Nb zi*rlBjoDRPAUo+2kls|cX^a)}unexa{r~)FkYN7b>W zLu9UjZ8WD#4H!p0FT>TUSIw@gD}lZ&?X?KHhbcXkfy6(*3}l)A3YKjD*^drsUz5`b ziDp6b@&OdAx?AgHd$0bleo2PkhK13Nr%6xnyLWgVTh|k4%79-&%nyl|FV4ar@)%nf zGEse!w{VWKra{oJABBTT2FG|TyYN*OAF55fABI28B)z-Oy$>8f+4($W5F^Cw9H*^~z^Q zPu?1U4wB*TnebalR4gECJ-^qNpjrwsu&-e8R- zc>+gEPvp`ZMzU!S!9!U#MrH{V9?L7{z|vMHQFEKGEnlLzVa0xpb1o^87xa6!k>$BL z;7Fr8LCwqPP(8u&+#uYS0D4{J(6xY+BYsQA4Kb^k^`W$n8-4a|AD7r!3hQy*Px__k zg#Ou2)oMySm(5&l0ZFOy!;y5h?^lMZT4=SbVv($wv|z~R5UDrfJ)?CM3a^)n;UKsJ zdh5rFWoJT1=9JCu<+{athHGz?T(y_nTZ~f+DVm>A=Q4t)PmnrT6Dhw+)=HjHK4^Fp zxM;SqomW_W3&b6WLrF>$md#TjQ@!PBtqx%TysJaV&x1Ebiei z^gAy$8!u^ZKpOGXG_&42X5ctsMhG%@TuWJh_GCzacqEy6qhP#L79{vI(88~<^558> zVG?@c&nLHWE#>fei1CBAg#uUmpr~&9*99dp0e=jqtnv`wFLMAfLup>_qk9@N{Jx8O zfcA{gDcaW@?z%wSTdD-gkrWuX^!T7xiIusrRRj0Y2qkl))32}!$6w2!Qyv|(u`CXi zG|$e3BE-i46lwGf$l&V@t@>DBGwKpOkcYo|2T|CB8!CRXBhU75z_OQcm573Bgr}E! zQyggTX;D#Qq9P4Cf&MIJuw<3GP)E#LznKQIa`8IbwbkHeSSrwDv?9ZOlwdsic*J83 z7`s7z(M0))lX|1O;Y_r$f`1<(1*A z%iy8Hgj^gW+CT%BfMi(fkqUg&DX#w{W0(de_ zGL5sv^JAJCzztAOI+BFuxbp?f|8vlPAo3jai!&%ed}OH66Me-@;~ni&fOmR0iZ^jP zgYh-HJkpEbs9#v#fce1X`QEc1!6r|CdD;oNuD{H7b$Ngny;Am`?{lI?w7~#07)m_% zd-;ro7^*-;0Yb836Qdo!c<~uOatxpq?346^uCUGT82LI879O^H9X0K*iw4Rxt11^S zneO*j1uTGcfGm}~H?PCSe)V57SbGVTkD}w5iB-hSjVVTEr6`E^pr7Afe{4@R?To3d zuzZ@TKKoZ)$$-J=X$Uq1%zh$k*moH77%Vg0r#sa5ezBbl^C)8g!4%&9yzmpRu5DO~ zq1j^n`kObxjNIf3D{rb$rVB$Pa{U(0WJBLE3>vTeb?`0+`Zfm08efAQX`Y{NI_A_C zvb4?Hey?}EU~Yf}tXE~j6vqC7XklI0gD_-+NI3Gk-jD2bzv(E=!F7(Az&IWT;jc+g^!*9(6cprnp5Dle0}cqNg5+#td{Ecx?U?T`8&RSV>Jd*d1EW1%twUwQ69 znXzY(E+ylV1G5Tb>#^#S;n8RXsX|cjza^lcDA)?g>*(c$dlYC!uVi=;WqEI*`yKm) zfPoui%&phmtsfUQeZrpO?TGC&PUm%GU=O`&UU*~_3m)b3h6b`?)AjTvZlT3{xekx{f_s55lyGGJjdtLnWa}N)C%vs zDs7Zb_{u1=W%`Q>>aM4ZVox$rmG6(6+Eg!}6PEdXn-Bz<{%L}YQ1?9Jt)^4tC}*hq zS=y}hgDWH+dpY&irQ^Rq&qXpitGv}NHAaGykW!hinjPuF;2qQv_lA=}qn^Ih>QODn zwD7L-yAxcC+!A$Bqo}v?R7CCGb>SzGMG{ZPdcQvD9wzM5hdxKY`w%jCwj!f0;eG~H zKF#9WV@7F2&RzLHtsB+I&u$l9@9orwZYes5+`>UvX z-2vbGa^RX2zou96`h)$FH#Enyks6{AC z6dO9!1dfqgRPwP&TbUcGj_A4sBqI4Nxj?7@kRZ|&q&ko=CN&f!XE>UaJmG38N(mCu zpZPk%LN6c&q2Di=e>LJQfk7v-lf@#7a*GyYFV%Ni>h1|9UZ+P01x(?48wYRCKU>zVsDF?sI_ zFvOFMK)Q63FPqVvhdhx_T@l@zsJrCtb{?R=8SV9L_A$vevkTf0>a;18@#g#p@nmSd zGWP8qV_^jF`$zKROCa0ajDvFxy9-svG6{rov#c?YYsUo z+-YOUV>g!!JJ|z9VW& z>n!&|0-U6(HxF}em9E$D3r;PScaU7&$JVj?YPg}S)}7X`Aoh!>dwxswmYw*RzW0Xc z*Zwt4Xr6?w9b^@m`^h!*zJBz1MWLouKaJ28UQbrXTyjo30iV8@%VEEZ^xe;Yl$aUhX^lC(vhM(f{LgJt^;kt-?erk-ot=~slnA*~vQ;!c$ z0t79^iGTKu66`WEoet9iYsYb~L_j+#R+dIgoczo=>aN6PHR0H2}dKo#mz zf#bIqNR+zZ*H1JYwo$54A!@6x%ABYmy%Wsrbok#!)(Bn}z2qU~puMT@P5<5zIq5dKHR>sy8k!E-x=^KG__iAcc??dyLrJ$JuT#A!@UXnKhjItoM<) z=9aB}TqFBCid!?QibH*ItrrMfW8h>iv!VEchcS=EY7)HpehqlCbOp znhxXYz`|bA!|F|E?>vVHM{0b5kB&WB3rKJmpcLXYZ-bBxfl(ZVr^V!IWv9+l8P+5| zP`Tq`qlkR%_Ex$!RviWpUnWzh%duK~4Z#0q#9J}O zA^HG7RL7c}poVj7X(|#Bw5~e&vV&<>7j$$gh8Vpfimp>e=q0Z%n;SfBe=@!`Ap)mA zc$YvFz0aXtsz=TOQ(Z>$c#A!p`z?I1NPC0r5Z#Ig@K|8~;>tPg2T%IRwLp6vHI}`?&)#<7B!Tn?TL1JsnL4ZL+A{@TwGimBiObEJ zQw)DNeX4R#PQT}Q&q)K>lFpZ_KdvWfO^r0{mu$V&FL}}qMPw48kALR`davOh^@boT z3e`*2YTt8KSkHuS8xY7;WK`C4OH>w72faZ}PKQI&(-*PVRZA=)&lba>GFw-hbi6~2 zV$f8nh4nmI&gbGlm*yYWjVYu9)OXLxuraq#YaY{}Y${w|bdd0n>aTcRmBvd!`Lj2_ zfJvupb8=m`b!l_ZV#dZ&NsnvWZ*a+Igd=Rtc^0Im!jlLO_=sL6DwMth6lq8qmD^PU zayAN~DCH=xllmPo`c1-H^*;CuKFl!P+?uwzPedWtwazH#<)l!2F@;!iz$wXbJ9pCT zU4m41j0)`DC5@<->^h0iXJ*qY)FC|0CDs1kX+ixbk&Z1=HAclcf{xIZgq!EIISk*Lcn$wBPJ`rt{v zSsn@2veD?a-RLu7|4mG;Z1Bm{i{w5DidW>M#Y)yVyiipY#eM&#d9^yZFPPmO{Hnm1 z-LWxRk0<83?MwK~KKVop^TGoXTOwiwR8SoUT?ae4_rv7+NWAw{!)Dfd#5Wv`dDymg z>HuT=vid5kVdquz|KsUh{F(m$|NmEcMF;WfMInb(UO6P>kmJ~^yrgniQdADB=2Xt+ zG&V~@IfkTiSW@&#PC4f==Q(7f#V`yrGiTeF+3CC2`*ZpI{)9a*m)$P+$NhG@UGM8H zHItZ&p^Uaj{-q{w8ZLBV6n{?3S<>8IRnY2nmy<(AxNy3M8gh@|baY+ZW8rX)i<@hN zJ3qg_I6*8<|j#6|3Jc$)SE3-uN)q>c@%FtJp--!?5VoBn)tS2s43&OI6%mV!Q%s6b#Q;+WV$=xFEZr^T%CF;%_b(uK!v#CWE20Z|Kb< zQ|Z+6Vu5&vHX2M}Xb{d{(4P%G+R5BFx;tQs<(QvBp}bKBN5z@-C>vI2?)J+^M43|~ zFGpJTrAgWgF0*+|-WhZVwo2eb0s9Z`U0UZS%f+y&}5)xxJn!%&ddgpKS~XW4ytc?XGeb5i0E2@45`)_6fqi zNPnn!uOu*BK|UoP>>g;dfXDyW55ePO0mY(z$V<7R^KQ(iKxXZY?Vd8-TbW5ad4JJ& z=Z(mpvraC2#OfK#RH!OoGG&YezH>*xhFif_r%|S&u4Q;3^j`1iP%byST9kpbK!1R_ zZF-@h?|jqwExwlSz1%0TWr_ZSE*xudmD;ePt=!0i|He@`AIQ8C2NQ(1>j%@Mqu9&< z+(?xbOxZW|i{gczS>!2l=BH~{Op>q3>!{}EYxPG}d_xVNbnWbTP5#X)zKAK>YPF=2 zvX4p8etpvpo;pE8t`^Zu`d~8X%Cljik^`UoY56gLYvQgI>ZD{vQ-Jg^XVGl%$)&-@ z&1ZQ`&F0Nd>MGHOBb|R_fQkM5p}JYhVfgAnpVyd*c)RsdC9$yAmvm`h;A*jzFtq$K z3|AS>Ij7+Jjw_v}Vy_n>AaLe>R|5FWn&@C#H=Y5^tKLe};28d^kP$~Kb@rutizB%L7tB=~!`;m(;cBJl?khK(eaR;Z6s#ZEyyJyX zkFg3ASuV>!Lq^RWB(yIIXP~WQ`Kj3L#iE<8agD#0!`$-|4!sE*`tX96u(NL1%yj0< zJZmlKCN#rsx+Vei&R8}(<8IXKVEqMPFG+gFdHp*-JDj#C7Nepe4Xje1scdX%ng3Mz z+=dYN`~z){G5*?S&=@&lOx&;jMjE*Jw=7ZMs}b7vrDZcgH=nnQ3BCEm>Pr2$wegrf z`aQd5ubvyXo~a~j2DqF)@L^Y25#>f7E%Qk1wtMTeb#TmGiQyu5NBaZv zigzO~4eDCss91+rO|&1F%B;(T7hTdh>FvLQRSQSumpfELDBl?~Nq-_d&~C7W|1`OBXCPXM)cAJ+^C6PaVrkLV7?Q z`V6Dt>36P*!_kEI7j?NUue})eo-=pLIDei*B7O*-_lo|@)7qr`;<#)K?T&Gj-j|2n zZVQd3k+Z{YYS`bThA21_TaJn->d5N2+_+0zQKvtdgSUex9C34T#qy>&foe8<*5rz= z?!pwYnw5?H3o^BH9(7g~f=D}@PT6_bCjwHH&qSK;Ohu^p{k)W(xaNT}Ph7}P0y)H6 z!8~5a?O1+3Oac8*EWQ3GmUkc9%;G8k6H5vXUf9SKT(3SQrG>6EE=eO z7ij0L9mw|pc}8jCk~%lOP?s0Ox%Fdq)D|91kPk)9pmH5mW;ymDJx571QHe&=iLRf22-WKbkgoW;cHwS~N>iHi4Kpv{kBNA4m2GF|mi!1YJyO1I|ug*}T` z-f+cZK_HmTXTUdIfKsg61 z=M#1JE+xVS;#YhnqjY#J(1-Dfx}6E@{eP6w#3x}%C`(XWw%4=Pm!Ju`u=dvuLtQsk zsY>=uFC~EszVlx1U<^F$0L0L&2^|{vk57Tyt^F=-!7cKEcu3C+OKnm0oixC7EX=LZ zUiune&a+6$pYM$T+dyA2YYQb2oFgSPHA3Gx>2Kx0gQ7Uy^((;KeR*m#=amZN5?7wn zi2F_4w7yMu_0+E%#4>w!e*sg0O`=ZKU#h8h1x=vwV`;$M4;H#f#Zhq4L8+XK8Mb5h zKr&Qones^UvBx*4E$3+gU39nooY1Ad$@0^ z*$>|IG}7tk(~@9V++kC(47Q)8mOs{t(cd} zLF&Yc&(@~LGc|yL@ZBiW(4i`*;p*UrDx?381u!g%e{KAu>+4V7sytUE0{f4~URF=O zx*3r_=@HAq#(w2-0KyPXJDPXxE^O`{qYK1S^ro!ikPhx>TB0PP0XH<-@sUv!@LJ>kcx*DOk*G7V#N>M%a}z9H+Z+TLOr&#$_9zZ zE@Do&&sdIh3!6QFo{oaTvE~9O+;3smOSoWL7I63pOtea@Q+Ggr&R`!;)86yq%VdKh z5D!TL(GOrDsky4JTiNT{#DDbo7a@C}ytsoE`EDd1+^tbin)1K3LDADI1Gbfj2NTUS z0V4$?P^6AvrE&n=YJj%xWL=G0)b`@uI4KA<Koq3bpO(Nhztd%GF>u^sZON-abnRbfemve!+;?Mp?*-n-Tlya*ITGc0=8Khr5_p8(Jy`E$ zvwWuM(UYw_WpQvs<^$YXd4h?JWaomDD6t2x+cRwF{zt>VRljXHM}Zi2@U-q-zpDJer$DJZ3?<&tUtu&L~GwUbq+3qYT$^oZ8 z%E$Ach){a(7EO}yy*f)Gm*qm$;Z$Mje^C~N{`NZyywr~&zbhDQev}+n#%1HuQvWM9 z7tV{k6$6gnW5|u=M65l`>0{o%cT+q?sN$>Ekd~SG6NQ7p=iOPn#=}y=cDCX%whe7o zQ|-j44mzX=cFeAAH*M*%VBqy?%9W%%vFYEBbOj}Q+8Rs#>^DBwCo(h<#mR+em;9eH zYxN^ryuVk}9Pa#tP3pDVWGwOvf|CEDm@GYClz07Z`mCgbl4u)Ho%dJIDJ9>~PnN&g zw29zHi?m+HKD#yp#_%1;VEB(pQWU;&(`ii^nZqs z`sgje1t-AJllKJI9BL^KkD$5-Mf~EtsLg~UiL}23F}NOB!O4cS8h=}}i4(Ov>YW|a z66(q;re$Gu%^i`1(!3@dCHwkpwyMenw{=8#!OYa9ggtwGPLc{*E6;Ahsi`A&AD`*Q|T0Ou>OqCu0w~{mtdI|g7msJx4aLI5S9+iX{`T> z^!ao1M&G|C=L`>sZgMVC$_A!(q6}%GT6jueB3mH8$^XUbWCM|0i|h$Kwl$Pu7Pj2Ubs!0}^Wxr8%knpOY8_el`h`QclY{-??j_y|8X3dctK1v7cjqsf za4C)K;lWQM{}J9>O!W~=<8#mmB7W?{PJ;+Ue!yH^3M6Vl^qLg+*$bz4Nya%KK`Ur~ z1+S|TZf)8c7~UK^JF47Xon3Rnv=~Llt8QsbOp-%V-6QTt>-{-1m1vtMX}xZQPmpT9 zL~2wo(dhi`L!Hw-cTX$4Qa z9HkSVj(_xl6E;M9L3-00|npvjy1wUZ;Qq&n7HF*76@&cvn#!KvM3wOcpvzqe;Wx>a z>b|=KebFLy)}ZjeHL3!be$d4Gz1Qs12t$?s>1(aeeJF1f;Ssj?P%(+s_2xwF`7EY= z)`i-u)?i@zBZr#CA>*4rtsRbd68BjlI8W10?B!E>#oa&~#`b-`0Q-06)bEXgGu|H) zAw$H;eENeX?S+-JfB6S9g8D=qG%Bo3lhJa@rYmAyjJ|?6o+>g$B%=ZqQNBMDaK<51 zx2{Vx8;;~WM{Q2PIo?OOqBemP<%gb$ZVW?ODR&OYVZFwxx54fDyipw?Zqz~e1gO8y zn6qrwy&8s(NWa$jb7juE(07vxZViO4zVJ94SSjpyrK{AeJ<=rovY+^rc3GZbZ-N*& zp>OGJLR1uemV1rK3WW$+aKw8BO6oBp%=PC!tLWrQhDO~o>5C4y5e7Ue)mm76SOH!9 zktWy<{-$DSkV^qz7k=_3GZ$u<$VVwAjIiAP%~^XNlhcr1H^>QNC2@>1}pq)`6EKZKn&Va1&^ z$9Qj;mE*)%5{!A$~P@LHP|McL9FD}@y;Mq*8j2h_r zDiHTOA!U~04qg%=2gI?J%5+i3U7K@8!Lldscsy-!%W7+URC=Sld1pr0#?HkwZs7+D z(BF&Q>Qm1@3u4d@;!@EZ7>WF+oYx~|{Ki>vfMQR374T2s#?6Yw^=Z;3_2%;9&?+a>dfQr4fG z4fjXQmbcyyAjKs~)*CCezJI8bG7WP&P_L1?g}a(;F^X<~f2uYRxhnq2dMl|nMv9lO-r*31Kwg#}D&2i}qVqj*e+P)V7UA z+Dx=O9)F+^4NFqd3ThK*-%i>;=gyvTVg^qPTs!?r#s=?j7>Qw;W871oZ^kY`c)?ns zm&vhP9gF}n|B94fj1a=VyOK-Y+MOo0AR;-F#t17oC$}~9%pcWdjjmjMM3F`$GrfOX zul%oUCtW0caDa&76N!zQ@135vtbQ9D$SZzn%N>-Sc8dVEw5Sk>KI}EL zZs?T)zV@sFdP zN}U~~Myw`{TV+cyVIUZ>;E6Bh#oK{kS#ea=Xd7z3qVU|&z+DL)7^J}U$Ji8O)QfE! z8UJh1BJIJD>S*pcz05}uPqE=I|I*WRo$u z-+wHvGeNB+U!pWYwcu|3H%zh^T!if%A8x&PI}c^2PQr0mqDZ!q80Jn_?Uvc>)49+I zjFNO?Umt1&F#rl3Y*4WpyN zM0NRyhy9}EtLU{bFaq0QVqED*aK8m7!gg2c#bcWH#kuFLefr=u9jUqoj zEejDQy1Lw^*$JQ~K;QY>f1apiRh6|g25^e=WPCTwmy}eEa=;T%Vix{0kZ<^saM$JZwj?8 zAX+|H{dmk!r|nAxN<62T73Qt#8ohGL=%C>WrGOiy9+G##`T{x1MY%1pmr;x!KGtSL zDZb{8U7v;uF{BWmlQrk0&w$ih>xyRNpYb$)xx80tX}mVRlCc0{y_Wz{JWrZ#y<~@U zn@(h5`WB`>J2;0N|JrM#{jPY7&X^$R)_ty#l#YN9}Qm z4Vi9*`wn^L2SH3V(+`Q6%bE%|`5U?b-mX1$S*ubL(!?z*i3t6!yO8bYqPGCwD^i!5 zjb)-cm3xkp%Z=&=kIrdyPBnAxG(DtTyb+FdZ8@$Nahu_R(@3}J@LJBSKX?F~aOHUM zd(A7Y{#52*6Bnuuku~+Z^xS4#%0w2no^r;!b+J?DKtr};*mQSsh^DxxM6aBi3ci?} zFY>*=6Y%~p4bqxkgF0II%>#3loan1W@b0}x(pDd7*YcL7C_x-dJ=RfIVD2LIkD$=$ z!+6Bj-Zz88jzP%5l|gmmE2o(P0#$m0)Aem5oir#4_uUXIiW$G=vRB_ODFaO~G7(WW zG-d@NQ1&RXF7{#M`Hd~VhkJl_W6YL8dPFkmwYw0xLS+t+ag{=Jr{aCgwfXoUE6a! z=15s$z37jzcBxF8pLwaph+LlPPrkb$j0eX>uk1wu)U}uVDq{r;CIX~JXw}-6vcZY* zqpm4AtN_^<;R+=7eG9)dwjLP0IdYEMNwa7`&`6kumN3$w`u8}iOIy1$t^@T{$JKNS zA#&Pr#~l&PxJnh_{*h5!RVKwUOrsm*78%*gy=GN%{IV#=tMQE>A2Vrcs&|5UMfTR+ z$kE6KaoF+}F0MF@9BSO46Y)srh}p?z^U|5hL%PY|cyoWRH4i`ds+?Ld zOfr(<9D0{nUgqp^J7cS9axDB9)ZW@*apPoHyVa$QX)hdOW+}HgMpl#^GEs1;_wzVoTw92H2>&A;wXx$Lr%nD? z{N^8~CMuI{Ij3~gKbQU=2m5q}-40m3Z*e1#gE#Hp4lRcDjSMp_>Ga^4?Z2}5Lo4bV z>Z=ReeGkb^<88X9=e1qB zV$=WWCi}naqj8UnhG?^$C>kr-w$#u3yD#_knxj0qcD2m5VN*d)mx12-D|z5Z@#qwX zsPp=DeYW?>+H$8zp_HKUh#AMZ5#`e(W;9?!=5CM+;JWHF16V{%%^F zKPThSF5W&#*!Mi29K7x62{{r&y<{kF@pe^Ozd}`sD*sOH-kZ&jrHTRl!BVDF$+jgS zy45&ta`g+&pt9uVwX-?m8ix$;|1PgMasR@p)8vkJC~iVeY*Q)2G3cCt(2E@ zbALa5EPwO40p&Lv^S)tXNV9ebOYYrk zlT8tA<=4LKvG6PjaXrstB`ccQ*h?4sLcDI*sso2L>7WEVYmZ{fiE`}zZ@~4B z=067PUdz_nQHQH8zVE4qn1w8SvIB@g?L?V}{5TJi+)XV1P@Z8}pHI3IUQXXIWEIZ~ zS6Fz_0TnllMy?LaxV(*TAnPeNGTK=yF1*R^l}8}dP+C~p)5V@}RrnB}XeXD?{zZ3f z6ZAl-i+yR8AI>+idd|=)F&o5ETH9t50fnLiOussPd!*P3#Mo-7u5YvnL#GrDyw}RW z>;$LYc2h{mtI?S9KP)cmrm=p$vb6m2(XzuCch>Iq6i{>O6&D*rSC>Y8{iOuGt53OIDbnwRQ?aQVe$Edby?dOqxC%(P=Nz-XrC9U{d%ey5>_t|x zIGfPC9R8l|oC%A)eXi+(E+ep6IF^vqI>?TVmVE-cz&9$glLkgXCZ^5TW?+jYOZQsP zyiK7oe;&kR6LOeZ{z><_FtS3afACrRee^{;9^?;2a1E8R4kS5{gO zI@70DNpHfT+O;$L}oP%V6G9e zjkKPm*mPtOuVlb)HbFt}*DRZzMWs6+G@KC?9=O%-t{Xb9YwbWglW@c1P^&2MwD(9> zFW2RkTn5ns9ogyh`l*_=XSxODo`3oSo@(6Ba1{!wP)uI6l9PCB^;Zk6ktU$%6#c6=X!trWi1)Lf8C2-*)q8p)h}3W)ZdSS<@uTU(i|X75H5W z-X9Yi@NY53CgqyBf))OD?!HKE7mF*bJ>VI&fVdi?dZ_T7(DAw6zXasIptRhk%O#Zd z75&*i;scJ#6}Fu!O*M6i_k6%agRmZly4WgMd9zHG3nzRR+NwZI(hNPlx1{3P1gEFxV`K~`reNqYX z!>ZDpmu&#R@B_E%e?0>I%wg&o^P>J`18;1#ob+o~vJ+3juAgrDHz#*P&>Crv z7B1KmF1kPr+~M0fglpKXupU>p~|ZfNbetbb^bH64WTNa34ppQ=0^Q=pWhGIo%2=2-F#+J?wc`DPf^ZC|8` zM~|D92ox*N7aV~KmoYpBOWH#yO+UG2ts6VSdg|k0VzKrJVqw8ekh2$3R$@K(f{{+! z&t$*~eA%XTveTeu*>oF9#=sgU)(rSO4?Pakl9qOhT+;|W!(<`x^43l9(*B1-HhpD} zZA^#z`fvPuW?dSAXa6!j1CVD$U0iQv+a(3IdYN57HEhAjyDf3{r~NfUUu&n}Wq&h$ z{qjiLML17041P{)^T)b+Rk*WA#(U zn`~q2c`Fx$FCzQ+d%eO>R+-tCmz;1d!QFNM*xD~H?Wq?sC};m^n4aPRLCo@K3k@)3 zz-agLek9fq+H=^^BOb_bi5S;?eZ2VKi46YxFCBwZ4}qDk&iJvG2@H4km}nT?KGrkR z*^x^DTk@Zup+yy}yM=jOWUa{otDOP(`s+TED1I1)?_-~&XYaB6&A)?K)0Z2kBZKAl^1B30!swi|sfTaJ*h& z_wbMQN$V0hBL71T%|(~(LEC>O1ptyy*$^63B6}C^BsUw0-|uj_;vYhX+J#!S4>ldJx6>>} zDH~ⅆ4o&QvPO{ivHe*%5||}L$6<#(1{+4y_$^WH0#(D19{guO~*U>N~hPg*yOE(A1Ve)f5)e2h$XMUU~U ziLvzsF_ZTc2L&&sEZ&*;>1|Jm0`WF#&?h)v`P|cNSb(~lr+=SPz&hPF9Rq~Eav*K) zwN*vT^vQ1}AS%{2;Qlxy4)}y(vL+ijFbfc{B))ccCyOkNChza_#ejl9U=`{+eKHTb z@(65Fm#juB09mZHl-lE?$7<4}ECLqybAR@J6uR8Xl$<&O*$j6&Vfw;K0U<)x%wP3M zRgtkYLQ3Xz^~feW-F_*$DQT>r`@+TN=0^px%0J#Z>q;>LZmi!ub=J=(^geV{BB6vw z2}FQPWgJy8F~Q=nt&?&t$H;s1X_UohC|2uo%rTkN_*hI8i(dL$B)(r=SMTO2;Cgy< zsZ60trSNO#xPWVE;2!MI`Y?AMJaVG0x9qA<^jpGN%D_#SPrfYo2e~yeC^-x3PkQsLZDV7o7`M^w=4=X`2HUt}Vp2W&_6QVi910EHATszmfJ_@;Bpss9i2OtP8 z|583)K?=VQKYO7O9km(k$ec33%ZtE$4l}YR9X%7M$1ghI5t9a`()_WcFX=JCd+9`e zHN98HDB&)`GK^F5TU4i5DOg(NOOWeKIPp$-W2)0cD|dE?!p(r@sIp~iP}sul?xDvs zAJ{I{?Alh*1BiI|-lSgLauz~|E0RTp^vhVOC(gepYbEPqxm_cfNs zw$#77fM9UIg@O?Xhg?d-ELj&1=a;FE6zw8<jhYe*N`vxnGh#RUp#-$pe z-ygCx)oPYk(5y?+P{ z_>xnS8qkCMK`4yv_RHAsys=z9v4cpLIyx1bb^s#m?t@Z7^B<(&BFKd=Y-t5)i&qcb#>U}bN28V& zOl?&#^QXEvH%}_PYpb#^{L^PBw?Y*c`c-RR)Z{VMwP7@Lzgp2u#6mNRokEQ*{-TyeH`oHNCVkgdc z`tyhryg(eJdy7tcYNC6K7}i*|F1OcLgtfjvf*U+ga+@vjc$kqw=7>w9)~sBF&F)@| zPDMCpDQT4ZDQ258pgj`NH;NHN3{BUV%^l;xBi07Yj=L1Sp zO(vI(?dLbkQcZrc9=Uo6!hGMF^NwX(dM(gxEmPO^m$rGD#pUY&L#VB- z>$Jn-pLat>_xY%k2HsOlo?enE<>ne1(;t3T6=D1FoicB5E+MmLdoOsPvWVE<6gGRF ztcwtK>)1Y4Q=O5|rfxurmUOe>qrELveq1i)XZWxjQT`)68$0z&3UM-&@hh_gLp%Id z#fdHPu6jV?nEMqH?;%(@G!-*GXG}Y(-#WV=zx$_Cp;_y}5ALy#n#h--pbYfvaJOg~ zjT_{hwi=XYo|Zu>h%uydA>q5D&XaLq)si+$I}x%P;i@b#iTuNTsTwf$X5u@}p)tMO zgtv?VBC|cRuc_4UDfJ63DusojE_*M0dAPjuX{0C|mA&3}3gZ+wW&Fbjd&z}lRl?9I zXzU*Zo+2Q}a(`V?3#jaGA4GPzJ%}%Hn4h%;d7L5AZZ5_(UA4`xqkwbwHQ>uBQe$l6 zl{_`f<`EExzid9E*SbcG_1YVP#NgXef(Fd}y~QBmBHi3$PnnxVHcHO-zqJKZXg;^7r1LP4Hz7L^ zIQ2EZ_>bE?T8Ez%&zjK^kH@Re1P^9fxR;uKvHkLVcb&YKri%SHY}0E3HDF}j7=wS8(rj%|U$F`d6E2R{ zMXttH8LFbT&$&)Y=x~R_NCC(F=z0QK(|!(~kA&;u5|p<{6kKeDqF%2bXJx72!7 zS7ke{+qWs2?`)j=&U`n4N8ciA70^yHGmm#xEc`fLJpa_xBcZvhP2##1iPyEy*>VM4 z*_7j*zjqzyg;o@CDrCzXA1$Swq22XKqdZu=uHfRwri7MSTv^z1D-40k%xubiIEkeK zr8=$D!uP7hN#jLv2g+M8<`WLC;~weYgaZy9u76j$lXYQ;sLf&SNj^cYyJg)d!qZoi zAYvvEhZ{-=lviU?(R{@3QrMV)G6KE(g4*UnF>U8vP~Rfr$rUW@s9Cx;(h%7n@{~xo zbhxITuGax=F+eNJz5S0VAMb#cK}xCCEP`hmDuygVNB9Pq-M>|R`nz6pYS9qBm*QK8 zV%2mg$!mDJK0sVF;msS|&t#T^_ykf=XzbRbsmFl^n+JUEyDssbI@RAE_nyVri#Hzp z1kY@W=z1ylg#{}rkQ4ZsZSEa?Ti@6|w3aFv>#?epgz_&wQjb|$w0CMqk&@$k+!8&J zsmenTPcx%h>8i9tu7=Ehqxu$w8>QqMz^MdK^ov6QgovO1mHi?|Lb)w7h}m`YhOT8w zG17M)CqL^Yx#;4?qZ_wuzGRAjB~@cc{dp!V03GoQ6~eLi*h|t~I6!_y*9$+{QYRm3 zsaotY@4X(8wNITk;$Tc)Py#(y2h>9&19&~%I!Bw7jF*(+FTPbVHf-#D?tnS%V&l4( zTR%I}?P&8Zc6Bq)Wa%$^osV>@LU^{xChY6Wkiefd1QpV57VMacUWu?TD)l|uTape2 z*m|*~E&K_yN8NaNE-}k;yk8116X$1VawBA5Ply1-K9{D83Q=$Kbm9S~kPbEDT9$OH zLuo4P4rIy7=G~f27K9b*Ph_m{exd8$jH!t0N&E!(U&{#j0^bSdxOE+{fsFBbFjJA+ zE~KSOx|hn!e#*={DfuPOF6TmRQ6+Zh28e4SWs$(Tm;gmEM+4O=N> z;p5{bsPJf^SFSyvWj>zZgm1n7o%Jc#A=fRspOpmJ`bGz%@Y3n~X)~>PlmO69Tv_E_ zR?pQangw%;-Xn+cguAcZOMPLB`gxxP?M!2DB(t1MUBS z+r7#ETKI9Pj{OIOcb>CXv0wvkjq#6X-li3r*Q3^yH}V}?>jFn<^XnUKa1N^&MGZ=~ z6aY8d#fty%mW<%-LIgI@ix;%aUoZn)1UOdZ%x1|5KOVHpCluc6_}=n3!uessSranH zKKIsEu+wiyF1Q66y;&cf6VPK_yWU8 zMs4GHL4;<(bdaQSZ&oL}PmEJ0)U1+14K}zp8*M@0J?e5Q2QU&2)OVtbaetq)2`oLLu{-6#QoTkfxT1ue@Q7P~Kt&wGy zp`V&Fd6Vja&Y^|urkGq8jt;gnnV(K#gG)EcJCOkfm4TM@!XfshmG7Ad!W)}GPHU8` zDG0(Hta6V&VJaGBUw^&gzB8JoS3(8+E~~@Ehkn(Ws@^k!R0B!95=WL)R%#Cv&`#{2 zPXmZ~?n$vx5C1MEZg9pt$8gh2@dw0BFX5}9G5umsM_G>CNr!?K@!!PE@UYF^5N}Jl zWUa*uw@`Z=#E|nMSP2=o2>h0c8o3{)%qx0?!CnQlcVPp|);UdzA#xhrB)bci0q z6_-9w{lqyQ2!Z_`aSta=8Me*?2a;i-1z>`sWzRe`gG_E|qtM7d= zYJ3<#>CJ6Xxm1F`7^aVze|~x>h_PpKUkke2_MRL*=J}HJKmCkaQ0O~Dvz9}`+njd$ zTBomzl^DW(sS1%T%uk>i$Y0?(Q6rcqo z*aTys&Q}g~ze1th z4@EqDJgE3PqWD@(nxvsUsXO1;+D~ss@l^14kcD`F*G#q6kWu}QvxYdi>K{v3e>UP``P=pW0_-`GhVw zl?SyKPVQDtjOie!KCc@FvIy7bHS^9&;YxtqbT(PJ)8Nt zm-UGI_uGh7F_Pmib777o_}2~xfV$`o=3*G|_ZJd677o=;x>y$>!MI*o0(M>pSvw;w z{TA3}RqF1wdr^AUbN&5R<=|IkMP*~pX3#j!G~TZF2~Q)me(JQ(4}Zc-dk;{_2)e$? zYQ+qvuooQ|@v|TCu#}d)wbA%Uv0w^QJ5&iBMixo8s;Gx5IFT`QAG=p05$PNE@|7dg z98eQ8*RGKI-Y8N$QDN4qV$3?^-enk+`LjtPu8k@GsB!C=T~4B_vqijW9O=(%gbUw^giq>9`Wbl&aa26Ajy*w_U5f~Us$5gm|#Ksejn_Q*d2 zh}`MD7w!__P>}NVHeynC`HO}L>EZ2}IU;JTZRkrQukb<9-33FOW9nq&?r5W|X^<&> zhTa*2HnW!l2-v+S-cJ`Wc~6^c*1EMJv>WWn!SqiA0HWWvBm?y! zIgIFG%tPKRZ)azw3ke4dJlpo2b% z_xA{onQ5Zgk(o9g5xb=HhCt_@4+gw)MBzPa3P4Z>(&z6Ad6A`qC@zCeYTI@#l|xXB z?IM-A?JPkg1~4)r$iQq9O9^;jkkzXh?NaoGR`zt>{sk8hoky>bvk3aWqnTs`{adfn zQ=_xMI@T|5r_)yFZ7g*y2wkx|tyLoDj@V-P2$Dp z8kFG4VT3S(c0+riPPquVM?ib@bkvl9r$f5JrfEh^aG1z57y7O>khd%7zZBVEA{sRn z)&aDU_jA7Q5!y-gzoq$?KGET=3-~pDSoSkMukgad`xlpPwyTv4C^P-OKBhM3-VOsb zZp^;%TL*Vb;U=&{N`%;}aPP zn(?^FtwXW%miejtLiMUNON>fayIZr4o$KshLq-A}%B?U=pdqfd7|9Coqrvv{9r!L1 zsBZwXjA=i?L-P=keg_lepg)Zm`7Zj>4|h{6NrtdYWO1<|tkCRH86aUDO(GiU-;T>A-r^S1Nc9UeVvn5^VdO4^O?8?*(%2ur9&d1T#*SWf+@f zc($Es_`j`XpTXuNvBmpfO%}{`0kHrl{inH~2HNM$zv>>J&y`O?9qQ1^uMfzJ!#);o zT>7DSe14(R5YTQ#>(MsjygXE36I!&KU?4|qN^3jn9~j#58z5`~tjyb<&kJ~0+xT;S zJ86ZHCSw*d?%bOawiMeH&;M~CEO$g5I`6&X+oS1UNhQ2llFMHEakRe93O%&d1)6s( z!D>|Sm)R2HySaMreO8y=;JYtf0d2+8T-a}Ng-LiQqlb@g45a1e=Gkb z=vAe;4TPPXVg((QQ+Q`G@X;d5&zQcvgfWa-qV1;S>2HSSCn~G-T07xGYHXGKp<3Kg zy8beQggv2jc>nT~ecBc9KgHTwe$Bnfl2-WXyxcC=%(aEkssSts{TCfOeQ?>iv<}K) z{Y{3+2W8Rai^k`w8Fy1P0M`uq^XaRVe1=x?0jjItD~YaQ{oEh#$g9M zBtu3aY7dI3<@4T2_?ORhI+al5p@8gP*IXy%Y}|tT8fwiJ_eHC_N(5n`-`C@b=|qBn zVIKQvuUyD;B?MuZVxMpAqkSSUJs4>OKqJew#09gQks$>3D3TS*YG(Aj# zcRaW8BlBKYW6y#3E%x^76Y59{%?O*VkI9UKMR_ceE1ycbc014qKh@kyhfpM}`r7a+%^=tKX}WeYRT%2zXPsh0d`% z$iBml$)!H%YR$)&T&f3dhp4Kp-s%{be--lW%SDLGVdU%$q&ag238j(^z$UTt+hw() zez@QF@6Hj7>(jZs;Yf!{zO}pjJAX-$j3VME4{zmB7aWt0oq86TUz0-W~w$ z4bX>z;DdK2;F}fZrQ|4lOzs&P0nKrPI;Utlim8Z~NFf<4w?-XFPLQ(0B{v$w%(g=lKd)8h7>XFut#LmBAi z6P6a6^7u(mAJB;sNi&t0#Dcep=tgOE%GPxY-%VZuxNArMwRKr(xkFhtHqdh~{AlPN zKB7S@NFn~N_m8B;L>n;Vm+54P0>{hl#v77qlk-YrDvH72_1}qJH*)Y-1*0u%?6cRm zhD%jQwH2ZRczeM8@g=(c2K8{uWy3}bm-&yF``2n(PjpQJ@8!w7=z4RW%S}DfrY{N? z&r+vc2h*Y#AKHr-^5+?OElNRNp=}j&|Gx<8|2^G#MnuioE+?I#soIj9ALqsC!o^j# zwamyu!4O7eT44KJmopx;5A#EzaTS?68XqTCCQWZS)!Sne8j@m%xk2?-11wN``~umA zyDx3qq#upOZP;f4AMvg>vx?EiXXi_lp+6c&tgpCxR%Oer_We~!7=LObqo@?9@sS?W zcmx%oYMbp0R-_*Z-OMbSi)2fG$3FMp6SoLlm{(IUgSG=0>uFgLGB#)f)TZx1QNtLz zr7mwk#aQ2zU2Bm#g!)kc^r{_&J}IGVkv6juB^(&tpYT_3?$wQnDf!I8weCM+)LUnQ zfU}=f!S|E{w#p>yv%O=~Ekb@haPw!}Of>BZv2yi;l9;nre}pL5tS&??8nsE8JNo`3 zhni~0JZ1y=j#*+gCSm4;sw4a22pB*i5QxeEDgr74NJm1I zPH3Tu2$32Q>7hv*r3(fkp+iD%K|wksB=j0uAmM-f{?@aecUdd%vU2Wo-Piu?y>&@8 z*u@w&g##e>RgL!>D6Y?{F2%npn|3qwVKye1k%g^t_ZaQPmGIymOm+m;qVne64~B8+ zaoK;93vI3FhuqM|geDG^oYIqFXhZ5b;q`Wl-Ab~3*tQCIe51);6SZ|S88QY61)Iuf ziTj+6q^gaa_~+EtL)cxxW&KHg`Uiqpp_o3}@XmMdts-=InputCdbz3LCbKKJxS;|c z{EfQey0Z7t)DU3tDFwDs)g$?joqI1}Z&XYLw0|Wf7((zX zNw5E|3@#c9{NZ98@+QZ0Ds=k1jf#Gq=oH?gCbpy(=r-f(6pu~s`jB|;qowwPr}Bfr zyw(9sUpr>NKS_vcX086EYA=|Tb|I&1^e^$Y>{=tEX;7Z{$Ax@yLqZA+(WxQ?v#2Ck zQN508noS7Vej())S^QJyso(|r*sQsB@8m$vMm;&vWwu)?p$%v<$qfS=li?x;P@eCuEwdXs>XKY*1wqXU-Mba}tVe52>A~t!& zS!Oc}s2OQK$XHI#+RTwZ`COSP9!rR>gCehLrMxMzZa$) z`?f@^*{nZ!H3DsTFxoR+Gg$Fj1pZ8|tj$3_)bDcY>1-|&x2yzWcKPl`su&KkG6lJ( z!kLw)`s)&)j6}%Zhh_BoQ4MK5Wp?(6Ia?V3npJGvvar6hE+d-RNlmjkJXv0BKFX4~ z9viHepYQhc36trnc}rulb_ZuI8yB7%e81dw>bUR{EuWd2sd-2d;Tb%J6f^hwM=D|S z?~@FDZd+?x(8jAzMe$*j*rU6T3;Lrv%weJRZ=Y+o8@W2rhGZZIANKmYhB zQ@k@l-9^iMyRw^7T?9eTRlg79Kh{HCld8mNWHDdgnRHs43K+&M;Dg+ikMDg~brFCN ztAki3CE5coN*Au@n$BueQnQ$ijK1KKN>~MTbxNoXYSMF1f40$oCbE)C2#G1?6_<0! z>yISLqG4S%>k40#-S`Srmx|=p-^TIap(qzUVMZF6>%#YMR>+f=78WBtZ)F>c3%HsB z^`kHesv20XjGd=fGCV}Ch|=CFPDJbnRyNxWN%2}BH?*#U-$l_>?*)iCo3FI$iQV#< zdWT9QkGkCYF|g^vnQ`0F&52K)Y=9{^3Q*4Ouob~j=545Hnt{AhYzEXCa%|1@g61yY z$%Uc+8%Mq9Tu&$=`b@2wvBr(P$xUx@4dclf;yrfj1IAdmncz*$70zsQB&3Ra+Zz+n zNEAQ%EtRteKfZsK#A$TA`|)34q^lsKP!;qC)xS7=3PX65fHzxQ7>kxuAT)wo(P2u_ z*?5_!AWP6cc|?8PW^aPHihV}~7w<(k>qDn0=2NLX!iUUa4a8^bogqC@hY>7G1{FU!Vb%Un9XKE77oS)Boas(w zePX-AZF7uS7wT#?l5+8$ha8L-??Hh6I*`y3XNY$#X;;#{d1tA|h=7zR=W5=mmD2~6 zAID=9-D+Tqn4~fIiXt!*3h&lXue-vC#hrHc- zSJ*c@S@?FmW~d3fxX(s|+d*gpaR{78tcIRkuG>u83a-H9uJ~RFWAqBCUSF|?vFJi? zSDkm+#l$~2R17_|bQ=a#t{7Ifo5NI0~)BF*bZqzqyU}@X5GA)0xG*kxtxy= z^2gr@*mpYcZcv$J-OOy8zEt{vc5Os@^vCL5nZIzczWlgH4qKnc)1wT%D%4n?mt{&U z|5$NW5v~8c^K4cEI9nZ~th{AMlr|o|5j5nxy|Mt7cfy!-+L-^$_tHHx1plm!BT3JE|Jur$ z)YO=^l6`Inqh)A?Q(~`4c@K;U5Z9VtOdw{uNqqY`uyr*@GFwoCK}EWBVrsUL9u0Tf zUkbx0(@#Q(uTE|rpU{mDpx*Ub@oAuN`{XH;|1S%me;#pv87$>dzrUmJjf=(DR=+$!71Qk^yF4+Wr^$cD2?dE1FI_X|&@)at1N`cZK?bn&`8PlZX zJNpd_fWi*G{&gqg>>XTwf)MqZly-k-voK8}AUrU+d4voCS$YrXlW45o@1z`9m5lE` z{1q`L?53}#En9nzk*v)dswp$#!l{->t}@ZzgMO3+U!g{=3>O&^ra4f^A+5+N}Vd^e*W;$ zvRV1NA4_)i$m>QD3SkSrS1>uUp%2CE{~QxiB;3~60>tII;^Z-KBM5)ndg4V^>X?M9 zvMM!^b=xwKaT?Y2w|vkf_Lp$J`b$(F+x@br*`&0!Xj%5$wB`T4Ku2>0=C5@6H@_{( z6}f!8ja;`&1B4Z} zSbsaY9-zj2Dwt7A^6PNSDKwxOSRN@uGTj4RN_!u`^)Ps|H|Y4VyQER0 z5>gMv(xUyv>DHOo$S&1@w(lT@aIf3Kl1OMqxU<8b98JoT%9QsgjonY~w3MAga(kG= z5?{$=@gQ_biM5aVn_dL7jXTdCdI-2q6+>s&ac5+!e-_6~x-clqFzA}S#|L0ZO@7?? z0WKnp@Yoo-?9}yyKL*=+a}vi9c6fEbLEVIaIuDps{oLjc=$9xiTlFA994PTwN!lM<-0)SrwukyCIE(1vVL2bQJt(dbXaE;zhKW2 z^2}80*^<3;1T~Lep{NyIw?HlSV12YMnj=CKqrxD2D4l4gBeXUhgtQ;9plO?+JlY3=n##+ z>KSSuR(M%MBPI-|$3M{_J$L!Edh*iXKiB8<#DiOGF+Ky(BP6Xwa}9CXP}*n4Xm(E2 z`^n=^*rBib-Y8>-WzMLE24F#~7P`rfzRw+1?9H0Dh&0A8?ByLQtr;EO6pnRLt_r*@ z@6P|WrvgY;0v4{i!+TE}?+2=MDw}sdrQpkB0|ZiSYwr8@eO;mL<>?-BR>oq+t*PeQ zff_PVip0&&7MhmdN*x8h_F)VS2nd zi{H2`W`Ae)Qno{n0DP-O2Gxx0UKuQ1natQoTY9qAyX_bC*#>In8Ht7 z%ND2c!8ISf4=q{4(tTgd1LD1Zw$U6Uy@&aKchM?wzVLznPs2%z(x>BkPi2W}p_%=?MCkcZQt11>fV zhebKiy>D_M25!DaKw6kL2@4JDyh>P9eRlE-dYKEm5q%Un^AOeaLBe4DN)7!A5B|0o z91A*CR1vtjToRGA`yZ*tzT)jC8e*NnGaY}%Eo4~Ny{IoU{1e-C#l+K0g*pGzxgs&I zq3?pu1a%i*=as$cLf(wq*#oP-3tt-lw}Pz7IivZt&Z--ilO-1bT)R!#u~7pGrqnwB zI^nlmbWY=MJ0Ej6O+8L_T65Hx!0wR}k*pGg)6Xr3KSa#OyNB%&HC=AiBbQW!wn!?@ ze)EyN+L}Q!X@bi#WNoO>($Bo@sA8_ktLL()ji(=&?CT37OsEr7MZSPb7$)nsmk`^(-lSzQLll2nmG2~38M1+lrPBccrmad z8v-83emd~NCYiE})$vIkfZ)D4zUoUwFgG;Bikze7iufDub91kRCduS8ojhqXk^%wo z>K@3cCyq#G({JjXACPw|$qTX}%x>shGIkABB8Th&#_Ehd?$E9b5pZGWI~{9baHs8t z49Yq@on3*=d!F& zd(=j}ZSw&f{hUpmuls5i|a!i3YW>x z$>aA+$*QgG{wrmjepCUSJzS7&nr<3DdPWKnH9+)evio+z z2Fje-{t@sP&@i$}>hO#Gr0_suc)Gmm>FZ@fR!i>ZF|$UGpk-HUwa{M4Sv3={k6LWK z>3!41PP?YZ%OI!=eXK%qPL^$C0&=+tn`C%Jgn3A5x+bqkneTx6^IF9z>piWAl_~qs za8O3#J${B)KUjx6PP^V&oy8O4QMN(8UBEvot(<_V`7@zSe_L1($q$yH4sX!_NZInO zoiXN|Dy0fBB^F>Pr2%K@a`Oj&2BwRw?>fY#u98F9~6G$-K3uZJ(fo1|F_sv!5TkaPgkY zb0X*3!Md^72ah*uHB2;r)LqZk70@NV>=}7cCKECu?fhPy%7$>KpzZ#S@-&e$5mAjl zf=c;|;XP&ijg$>erGpa32m>s%UErdp%$otMs=<;%l+i?#mVvX;+O-ylzd0Mo%v?C}~}yT@HQ9AskpsL0T!Pt)N*6)ma(Ku(I2y zb5a$mJ9%m32i+A%9PH#=wJo|se>lTkW(-`IvJRflRdhpO%o0G1koJAQudB;HeE^>Ei^DI>=SxwTYhYG{KKl=O zX&oSr>nvfVdKX#G6*YGMQ6ri& zHs#mDm^j|^wp5fpq5lneHy8JlctyOwK8ZwF`VW>-`oc-Oc-1ewwQDM(|2b7l(qTjp zfaN#psrPc1b!Tk+`q-4!#?9MPO0wg#IsTxEh-UiW$`!VLP-P*8qVSTdi zTEuPbXw9QfkubBW`-Tm|kx&Lviz==2QpKCto^qrrZ6FS7&3BlZD^#FICfB>T_6z#X zl}195L*d6q#yZxC<*cH3R!ot?$daurh}}et z`<}zM6Ku*b1d&sT0)bsJ1&Km*vJI6zgD&YXsug{bfw+~ouB$8Rp2gwfeY6hsUS8GQ ze3Oh#c_^+5@!yc0uqL%?;vR}p6m8~~DutGcc#azs@j3gmP3yCdVaKVt*{pRKGk~OU z(l#ie**GVufN5HsZ1xN41O+Y9fjXI&c8la3#(o~_sutJC#QWm#1e5_|1nsiohbhQ5 zs@8hEVp{;p4Qdk1P}8(BnN2Q~uHm<&!Ua0TtPN%5JArJKK=#eg!77yjVkd1c7Oy9a z;lBOJ9o%utBqxPO8^ZZH>{Q9L_34~>Yc z|3h#k#Q|3DaX>Y0Vw~lHH;4vb$igT&p&lnl9(7`saYDNj@RqgNXB2y5ug=;&vsldK zAcaKsNRa!GAuzl3MfPBx9X-&*iO7P+KavP_1)Kahy|B#!Tc_*%2w zue3tbEfc_9B-|LGoS}OvCI8 z<*Cc#9%lDR1&-$zJtj6DY76patmpn>4pkM|Dnt8SbpY;gPXp1UTmOH$?oxLP;L2MP zjw_c!lYl9z=WA9Jep^DHN$BDH{x!}n(3LsYGAPpV0iMNae=>h|T$7If%S5MP=;$4n zS?0H%h@YO1-?a)>CkgY`P_ww48My8x*4t7!g|*>jl^cxr{tThNNZ=$>9?LABo%r5B zhW@3XiG8X`X45=k+$Qdx#mZiK%djcdz01L4ZWT63r|G}PrgW#*mMiqUCAl1S_d>YX zSu0sWCohRYd|HhIdf!$b#${ng`Am<8H2*PC@Lme=h`o1u1uax_wS*^R=N4ykwLHcq(lV6t;3#Hd2i81uzwhF54T4AiR-M`l%~J5^hD8!t?ekL z3}__3{rSr5m1w+&o>-L&L`pnnAoDRu)_$iRSewRMK#)TN!24Wv9!AV1Z9+pA8lb?r zP^+kWA_S)?3EH^ZtHk5#lNw7QChQX5$Q3trI|AyCculo;98xUWD zw~B0}UVry~Hz>p>c+?br0Kb2L24+W@($gVtNk;wKE*PUNPv$?`}X4W)V(j z;!NK@8-F303BSk1?;+h&739%jrg$(NwmNSbY7)_PKL^=zN`eLNQZ3%{Uv@FRX!mvM zc@!kv##<)mnQg-BB>yKhckMN0ZaPkt-4yHmg#14LTqdpZQFdJN!3N}o(I4e)Gtz$! zsnMsh%)WDKKT7TQ>7NklAxLG?7TvAWYaT zN{@U$MD+c|%a0RNS@7cO0+o81SwX6tPNg+74daqOwL{G=1S~^l>Q6R& zQu7Y#zRYaWUgn#&oxt*2ztSFUJpf2sIU0AF-QK(O^W_?BgP15urhFZ_ zn7O!S>Y3qGbMd)Vu?^=uigteO?lC9Vq-c8|4tsc6L>*~xw`k??9)Y$fvwE) zSl-0Q9Un#|&-hPR;&fv8`H1SiMzc@HkzD2EzY`1=%3j>^5av@HT2{geAr9?|#ZI1} z-7{G+(}R~7?`i)c?X;Az;s=Fe6}q(r>ki=;Y&x{r%M57HM;3PNy^ylLi76vgbw3W} zPP;N$+qW5wNKaFqTt<{sFE%~20kH+bMHj^HW)#fdh-6{im8$w%uCrMl7*PrV7TzZe z&TK&|-=_yiJx`^r^q#xcw)>oqmOq#^RA0L)lN^N0j#(949$NU1 zt^Zs@=*(IRDot69c{Rfa$#)a0a<;2wRYiF#MYt(7UPX9$(0pnIsdcs7dWFI*b|JUqd90RWyqgXMGrU5PLKTFyz(8u6lna799*UifTt(nCwIBJUak3GMW6vQDuBmHy$P zFg@|W{xGM5sKBZ6+RbKrJ?a3#wv6Il7(bQ;iX+&qErQ9)z6!ItS*&n50 zOWWK!7krFsC89-21HYF2@q6Kkdew16yY_&c8C0ZxQBOf9Nj3!EXnmk&^75LIdrXb9 ziT|_FzH8U;D1H#lH1j2AhGcYX@@q+)m$o!k=8rEhRranYQzEp5k?LD7PrWJ@U<>K7 z=;hfm-NzLn4ja>#shS?^~wmkrPBTK;;r zbE$LIj6?jKO(=U>+xmF;1@c>b-;qv=Y5z5)*a~eW!8C+Pw^iM0i*IY=G2!5rurBrI z4)BN!o@G>72^9!=B-Pj-=DZxpc)C??X`hsAM|rLtw0W{VaO3l{HLFAmW9RTL*GO4; z>XwgzT;{^Yv$gC{++vK>%~GT=Ul!|rW%fa$|JprNDA=LHA7Irqp<&hMn$VA-qx)~hLc#Hy7T0&=RyiP@`Npj2 zZy`h3!qCaeC!-d#-{gEW2WahgPINs1z$3~aHNrFPH7rPK=tqr$6?=V42*6_4GZG$# zze8~)a87-Vv(gxd^QGXEp6NouaJcSbZiV!G+zWyVvMX*?>v?rUU;TV0sH&pd7UZTd zk*{PrJ|YDylB3T~g(VZBns;Ja?{IU4Xs6jYD=>@k6+7St)Mfu? z94GT4yETc!J+@Awb*728dtTL$z(0h7#7DcgZ>tPM+!muVwq*{&8QT!=gsaSTVyTCo z4WsE1hEXDSAhS5gEL9XUZmkeBd=ic8;h+uxg zz3|0lG;?HsSJrd<^T~sf_*D6{)cvSpuy(jL*&yagUomu3oKvAk0h_D4-GG0zxZ= zT=mwV2=M;mc(b~^P}kq=iUS;L<9(1$P4lKU`rG^B*$D7Tgpt33wj8HEJp7X#TKmd= z|D}L!XZ!{!H1X_EehJKPOQ!4T^9AGDeX^|f0N-kJ(QnVOGCpPxJ_Zs1&`qb~e18v4 zR4}mOgOVUV=U*{VTS?HYt$pXBv`?xhp2yz|89QX@thQQ@yLe|;I){5I_A2L#NK-Wd zJL02$Gso_BOqxXO+s=X~92;F$FNWf;BIDNI=Lh-^b`wDZ#`Cx2`F|&}l#bgDG>Onm zn}kQKn=K2c|7t_1iMVSXUOrsWKmChc>b*5kEwWC5?+*)r}%1rrK znB8vwvy)PM_|jCrsH6eGfgi#oib}S>>~>hA3gv4U-m)>1ab6bJEe^2fCX3gerlt5B$ukaTzBtrY_}1Q8k(=Gb=4aU zF#`V_tW@k$x;~=yAM0WXaa3GF(Y5IvM<#30k6UQmJ5hpzy=fS@)+sZW|9||fi)1cd z8^=`-!MgemURJE7tI*g&y9&huU3Zt}ssD@t!AjVss%eKGJ|twefD^Y0**q%_GBf8d z9LS4`W4cc|&TV5NPQ<0O2Y}DESrOSvEv$teT6Pg@a_`ribh>_j_8KrHEp@*VY_a}t z!`C~GDAOL*q;i+;*NDgE&;C#t!OdMpxo4_evwK9ARpDLc@SXYK>;!$B1$tA!aYyy% z)^OGZ`&5)!&Bgt%+B%v*gBd@uTk_pn9ptWMCbpfK$+#-mrLrP$Ag zqlUHApsc#mvZ@TF*7Mr>xAotDE7bK8?Y{OPa`JfIVPiCjLtigG2W249T$~2<$c2xX z5TCN+KX}WxmFz*iEW2?_&|SgoDS|@cna}}S8*#;@p%KBQK5kz-r9@j%eU3HJlH1{Z z3D~?~ASfDMpb4LJx35ZJ%~dMs(W{!oq_DMj4Wfca3y%)qzn|28AAD+CB1a)2J5VHT+DTrxT=djw(wQ{J z$4m5GDMcjye$(U%`Axj0NE$X#NBv+_%F~6Di|{NwNyz}&WgiyYJbp6q4jfIXmh&Jc znXs!3x-870g|_;%Xb{~NWW7*pt4U%U?vhi#0UGQlDp(afFu$yzMh69Kr7!N)dNO{h z=zAV_p85hwQ#K4I8#U%qE+dXqlxD346s+Um7{=5i_3^*Iv^B2B(GJ z=f{K^5*6n@qd>U9Psu`nJ?@DPm-kW8(|nPsJT6}8Li%jC#tVfZr% zk6LaFBwR2tyj4Pwmw^3tbbHgR=5 zPe#=ONATYShQ4TN#zaJmYj+G{!l!l`4GG?-d}u4erP)NtY8e>SDb`tY9yiCc414P+)S%rb5MWCShoz^BDkpl@CZFa~pZIXU2 z@4NiOmN{Cns4TV$U(cu8tP=6C%iBAl zL+{&FsH-2_b$%{<#Y(7r)o10UneqzCCsZS5BH`e0;nN<4;|uP6l|7s+o}e5HN+6`f zgzGT4ZV%{>vuxYl1u)(?j@wXZ5lq}?uY7B{6_MeFZj zYKF#t2z*24JkdPvOy%IlDyva>pjV*wwX#6+ke<2lF<`tZIYudn!W*6LrAA|Df%Zam z4w?hZE|*>*MU|~lVgHtRa&uEUV#|3bW_7MBNWU^iiSMURzHdD^`~CAGMQcHABq8&{X8qRPEW7; z8qGP2Er!qT11cR6&K_dC{wwWd`}4&5wK5|4<~ZRbB{jl5e^=JM1IyB+DpvX5!;!R| zt?~OD$hkssK{7JQbD{p$uVJd=Tzj0e$3OVDI;NSNL7w(sHF5x%+BXu80Bd}jmf=xV}eV0@z zt_;561pBg6dmddJFC?;&q@vtq->hc$5ni@a*dWg8=F`0*8ff=mSJqH0aOs5txZJMmf^AJH24z!Z;C+B7Z>T;(AO1GjGn_U#fvWSb zNx+YHV3a2_P+)d`NWp)<^M-~Gx2C2K9j=6N>1%1ywxWX%?+G(&J0dpxrvjFgHbyTI zp?ArHnbtk=E&F{A&YMYiNawmj;YM<&wd{C2NtAu^%4TF!$Yv#49_N>LImQ6<6*Zvq!QO;HrC#0~@^Oe&Kjiea?h zYLB}wR>0=|W2*!bz%5TQSj8#{wY;d{%(EUQb$vQmA#L_Uul{F;rYBXVMO1> z@FNOvuM6L%o;oo`i4_>@EkA|l)`rI)HyZ-K(Y3>!)oAox-|b8Na&P(tu~PyamXa`H zclsCLoc)S;S(gnjoyI6_$nMliaEk}cS%z%K-SEsZO_r~Gq@5QlrOOYA(@u)JPnLdp zd3^;}-MpJkc**aQS`FWuvV88ts($$)1y%6ZKiicIv-PxdCb1YG_Qo{+ta($F`9==I zP-8sQ;cx9Chp<$hb00<7yegoqiDell>$eQ&gXw|WZ8Pmr4GYhpRu!&#sJ3zMfPZfa zK;m>U61g2u=$9&c<+yw@Wp9F>-7Kw_F>rVh-zGh)V`V=7Oh_`fcf21f5G4PfTxZuu zIiE~~Ta6DX<=e66vG4jO$DJrJU|HSP=!#8-fX#oNK^Z69p$kPmr9_(@IY4v07)Ask z$d5yHuNwqFl{CAMO64>*aWo&_V1W(zJ@;m}n*o?ph1iCB(0B4!IQDJaDZ)BLa;+%~ zB#Ph;ciuqtxn!1_XOpR>vzFS>H#AX;DX~tH)KuM?AV0xH;6GG(Y>a7tV)}NoPy6Sm zUc|3L$A;TCdp;{&AbzdKSgqsCy{ayV${d`0Tv^|=rO}?Hj7O6y$*s&bH#EP%yMeZC%%8z zXJSN?xO4MO#nI~-MU-p9@yOsbBYH-0%vGcb?9XN2;Ew#nW;hGPHyuwz+@aA)bY0P< zc#e#m(hW{Et?LycAC_6K(y&{G8QCX#;n9y1;&w&Vc~uUoVsiX}%wYrZ=L;jep|znG zg}wG{#KQPg4lXwe%_!I?A*_(#P(h4Z?OGB=N#F759JW6*WOvxMUm%>Rxg zBpurXyRJB-AU!63|9q{@f9C%vpSK(je%g0#d&gEgg0Xlu^}0#V&l1>><;nGa{qurH z)(<3-1(|Gk)~iy{Nz20k$f0so%knrKuI_%XRO!wNuaB_d%3o|)=FmjSm`;xK&ED)!HuwJolbdo9o}wee~Nj`V1wx zc&0@TC*i!-7bU`Q$=K~oliv7?gm8;LELB)mSFdd z$2H4p*}!Hhv)iAsb5R$*p!7NJ9oo?1Yb6u$-lB=F{TrN3c2a{Pwl|N%_X?7kjA(he-Fa--1Bp6E zk({QFTJfKNG7RUP{_I-Cm`J?xWEVa7LyjQbAM@p6o(G86zLIBJd;z(i`*B#OoP1Xx?G5&MCMS}(0dNp`ivP2j^wAPtB;lc0VAo>P*=bIX&d)W~d`^S;h^m7>cImTO5 zUrqCL8q}ar%w64Pd+Z0gABaDM+>wX>9RNvP5n{u-jJUP;A|=r_Og;52myQp(XF6_6 zO@l5l?`d`;v6JeUQjFrr3IscHvJ!_c+?MqFFmLK+?=ur%Gx|`JsOX*mf5G1~#AcBJ z=yzJkFf@TJ`RKns^NM%f5H5X^Aa+j**{AEB^wdyXt*>!3!s*nYo+7)85~~cZO=ga3 zmkgS@E#mJ{@eR3(!0dw#UjP}xjtplNnKddWr0t-I#$dy2YgSL1Vddex>ElX3DpRxa z9quH}G@@*Z#zPH`C%RR)ABr7sPXoDD-x8G>@fI7COV{Odmw z{QZArN7g37Cw<#U&5mS6?TV*WYV|TzDV{@m+fMRT&raIY=0(nZeA#uA*xQyr<@{}viKLDFq~DLnh7v!{)7AaI}kt8bz- zbwTfPPm9-7V9Ms6F~v8k0Dg-w2G^T^SLu+*um5!S?KP*y)U<_Np|lAbnKwH@V?}Sd zbuQbc-8b7Kz0JBqzz25h9R(Se0?9ATXB1Iwy9?>$$xI-BX?D4AoPhDJNHDDum{HW- za`1qQzBJx?-u;Mc5u|N^;Ay0=+kAf4_43~fW$n2m!!~{`mQ=4j3kpRf)eyf*ahcUe z>Et7mWNf5;6tN{nlrl(X?7WCx7?LTg`dvCi0d4_}&8Hx0chJU}OG}(54q<-=EHCBG z%4$b@rYA!5fVH{we_?<RmqLOkCns(Y~l>z^n_hQS0cw&R78>FkSJq3Hc#BOR{e(PglVE^Lw#3^5si z`gPv-SkJt5JUlFjjfnsNM~&RR#=aEql0;Sy$;rhlU`K%|yc?3^3JXb8`-zCtL>w z4yOq&jOWD^g)d!|D(4EZAhJh_NP3#kIgSzmV@yVfv#dg>Wy60&f4fY!qm@@B7;u{e zY$OAOT=7y$<+UHaY$3e#l_Py(UeFRAUA(*+J#nIs^Wcd2iu}5N>o+r6%N2vVX|gyt zWl&fmT^Rr^fWW4Ft3aE0ckki4m~wYON|s0M=*hz=%mE{JHp7vG)Y#diKU$gHK+>9;`==98u}}nY@JGuGF7KR zORT>>_c{;aa<}blPMO*{(J)+dfXklsuH`HHc&s7!V(FIlM=~GGHLZ*qY)Jn8oVIJ!CEGuACvNG%=8*gRtFF-3TS{w{Uv*s{b>Ex;+V` zU6)>ls0zb{a^0b7dhk=9uEP>d=z4-C^Jq?3T;C>oAjAWp?eC#Jb}5$7K5~`Lq?(*d ziR3kj=udeksdXlry`odIswIggYr5?ub0Y^)|El{@M~Ij-L(0Z4^m1cj$lV71_te)H zl@shHq=TrBI(8EL|G8S`d?Ah>*OwrBH1MtAGs4*R5$389*a-76;l7Xv!XwqrY*?T~ zG2C?eAfvz3(n+jY0^-#wZ4=0>gx|lE|$^1DTC6y2kr8uX#DHEJf=P<6yZ8+0T(%)?OTiF!G^roV& zYN8OWYgV*D+rS5Zs6q>o30nB~@?Tc#E?f-RM*d3>fz(Rng}+TjvxMOn`a?(~LQL^; zZ4XN2Wa!-1jWJ==HJVTVGgcDfLQA{ss5mF_RH4sZ{Wo6Ng!ZLZ&3*x82lj1j^Fqh1Lw-I7G3{CwREGy&04y$G zVJW-Hkt20-&XrQ^)jB7dqDm)GkjzoPKAg}9pdkB(^BD<;4D4RPrZGRgY1s(s0<0Dc zmETtfGYx2aLc_pcD=+z2XKYy+2+JDi+#4q`^K#iu2*0m`&x%z_h_W3I8&@6|SnnTH zTkn?8_@*>d2PD@>-{h8o+YM}K1C5QZ$xUlrhx+zy60-C)r>Uls3vH|5S6Sp)Kk~t;CdljKc*d!N}pfq=&YS!6T`m#=YfOz=Ivpu-aaqg+jl6|)-2ju zx>L21SO6AkhY|8%uew>7te8*n`1q&5-Sv1}mi$~ROJOf>%nN}TDiBryS4`(gB-dMU zs4u-7w3PH1(5G(?BHv&bTVEv&Md^Qv{1nw?9P2mwzqJs(wIwA&pNN$9dv`gG8R32f zOs;Hd8w+RTBc-qL;yRSYkB492NrDdFtbe(P9z>RiLzz*Aq|FZzygWP8X`|j*V6U}# z7mLS%%5KXb-`uek8Ti!5QhaDdNX^w`#9cA>$cN!nBWt3Sx|B32v|SUcxZz;|I>!8C zU}@i_1tYYnuv4-tcM_?*-)eJaHxv{BP7}C=dGjC#bC=_eRiL-JaLkGMy2&1nXnJHp zeA5GxCzl)Phkakdeo}YnIYtr##k~en^|ECw&N7OYRl*o5#VU>4`lLZ-+u+D;W|C_#DX z_D7i!dK)b;#np<8#59rjnZ2c&t@e`FqM*#qQ$9_bW$_wK$m^@5yM3C4fO+ zt)hmKc7O87Dj^Ks#aZM8j>8Bq$0ray$|e#fP0~+Dgi?#r-0hN0S0jqDia^tDy0%BEaRpcfWiTvZ`1M-=WQ-r}Em3?`>Dcj1`q))?mfg`M?fxB5 z5JXde2V%2x_f@9^yG?E{Mst2tf8IMjJfXY9x)84iJ6zhc z@tsTJK=AO2W@3Q{aOG_-O~bdfD5ll_KyXHNgRt$RuRv>5jp5WuY-W`-FD*i>Gdd#D zl$&lM>gf%hT?%k?#LKR9zUo@ZW@4mu-L&79#-JhNb%p<2LTK=SR4w_9XziH9P;G6^ zyj!5_(I}6PtsmnmHgj-%g|$vWkGs+qbKW)juQBj#2#?Kk+TxqU%xx&kS=ObCcXKPQ`+_H0Y zk6H*XCF@uD&iwJ}9FM*QGy1;eagw$a2&&}-Q=`5D3WJRj)141Luw){w!~b)}Yk9NU z`yVk#o*z1NEW^it@Jwp3BTsIO(SBDu`s<4N%%QLXLm50ikmc!2|6&uKtYR07Vp|%n z(rOpXRI~kC<1K?kwye<~=yxKXrw8{{c6z%}j3LA5-i1V2jI}PjPPtH9P_&V26gEL3$|`yd)qO#K|s8Blf=C zui2P*!9xok?Va<^?r2laq(-eC7QaQ;d}bTMP>>T$s{3O`xU1KTshJ6Qi73V6p7+pl zU+!N7-w5f<1l~K^GS=BwKr{#La%TkIc$ZWV_6~5Ue)+l%3n4!V)}=@G=N$c7KF(lH z=HOnk&CHHBO7v70QM!m#e#hkgs$tIf%P;WJ%5PzB;Bxy-p2cePX#E@M021zK0V%1Y z`?>wRLBq6~@gt+$zyYR2>yiqeeCbQO7vIY7JX7YsCt7$VH_`I&Mx0vD(IW_-Mh58k z&n1l@`<=1g+M8!fF>!aTfME=^%exiJ1lw<~LJnp|%hUBr)7#u&x+q`&!Q9%x>B>{P5YZm7@kj&Jw{KBsPQ*w2ksKtrB#_Qs-R~?h^ zB^Z<}#@DBG06tHfrLL$OE~k`jB)%ShRK-(3srad8IiY5%g}oxR)*N>13M8pMMEN_Y zn+`}-Mmcm{KN3B?twjeyEOV9pD(5^%x(AY@+>K7P7yJefJ=(4Pc2|CgC+td!^X2ti z8_nbJK^Fh}m8={540K}%Ly3K$ ziOB$lIC^EE#IR4=Xra}S2CG+c>9xi-!#}GZane?nF)QH?gy!<^5A;}rW)WDuqi#^n zwi}uCwx<%psnQ+ZH~n9f6Se5t>am&Sf46Smmgy9F9rr2?jkL1+3h*9|3n)`~8urA~ zbMiT&q&nZJ$g-p6!xKu}zr+8=mwb3@VwiT4?~O^#tygc7Z`Dv6`~9dpI@Gp99?Wnv z-?7_9_fEaK+k(2^LUt%FbPYmxa6Z)JUfapmCj6r3RpO-u{+6P@h2U(2bJBhMQn9#2 z`sUg74=ABXA^)H{U{Eip5xnm~G_hxUD_6-`d5_A>3R~Bk8G!4tRU-W0eZ1L*BOTvy zd9zA*?20-eohVei!fO*hi7AUsWjqB0RIE+-9DGQ1DM{2uEfw|3BM_kW$+X@9h)+Mf z^(>d(dWhFH0yN`euc5604}Cxrm=IT=zGez~68bY%eoDMSYjsGItNFJ;`Gx(=QPAf7 z?RT8@L0sFfoW?-%tj0@rieKI;)BQ8&9JF}nyuH~SJQ7epcTYvWdfFN0Wso~v)3~2| zhStXK>OwAv2KgL$$d_t!^3a6E(va)e#KY^k#a!TzLYht^QM(a2jLv~Bya03e)~fve z?u8A(&%Rp|r6JQ%w}bSBfNAh><6IR;eO)hlz;wK(-)Rmi>$%<1#evKl$;k?|jwWd? z|BVg}RFW|8Lbn#0RDTwLR!uOYZYO>bRtAS`l(pd|k|xoarb&rJtcBBX|{7GIp^4Ah0Z3Ifh+u7swCo7j=7>bo@r zs!p_7lOmX}x&K5Xt~Y+=#R_8DZ}GTLXI*sskSE#_+C*mkD6git#);5p-!f(!=v*Q%5%589<^L5&skl@UQMSqq$4 z;$&bRwDWX>*AbwlAUm24jlxUUl^{D$jEFZ<0~YT)R+IPYZiPZu|JcIT=al+IoRhV^ z09Y*};$a%=tJl+nz|zk=Lu9Oo zyBp-!ra)7z6tfE{yRz9n@jIK>6brBxUAyvS04mOnLeWXxL}*L)f2{<;#5;4Jh+DyShWJBF=~cEgmk0z4`gWpCBFl!wIhF@YkF@p-+A~a4aZ};&p*&%Je_Nw{Kt(b!Y+cmRFFYBlo|Ihw47km` z6w~pfzJ^9L?teMKO`l*iJoz}oE4_be7`iTD%ZD@n{pOk_$Jl*ex?EvNGQ`hiwgUTH$`E z*J;(n>t0I`{;>Zr^Lt+S`9u@x!%ohuIe4kXEWmq4>l(9$sxVtsw|h>9&Mk1D89l%i zk-d3UXyYK~j_nb&H<0ow2SGWA>na2z4rUkd-0GX;0bY767)5bI&JPc&K;AeIyy3Zg z^5a$7j6IGS|!E2$6lTCksRjkuxe>Onxz%FBRJ*|IR@E+hTA9CAaPu zk8HpEkG+p%5rneL`X#J1q-J;fWJI8HqvoG}d>)QAWGV%fMMW5r7GJ$Rje_fYL-wt} zzj-%5m@Y8iB4=dTj-l*WP(XW06q6S<>lx4)A#S+eg?B8o^Ws2dlE$lUQ^23MTp{}r zL7~?GaC2cjEh|b0Q;E9t!a`plV3&kGWh;r-AN$OZV=TNze3?%fK6zh5KKjKlbD>IN zabb6$hxtLiAN&zIPEO?wh(dW5CZPx?iWs5GI&`5!G2`5tm7e+-sc#xX@YUPoDh>UF zh^CkV0RTIbUgW#*H+WG(WiLFzjC3tQZ%ml>cWJ$3#bC4MI?y=HLtaQ5p_kZ&`Cve5 z&#E01;k83`74ZJaK=`YbC4m>KxCLp$rg~aIgiA@<8`DeoIV45>8l~*3mzRb-Wrz+@ z?oKoV>Nx>mNteQm-P_!XQt4i~p^FsbLzyCW7!6QgN4|cf7yhRVH-1Q0x zhzdsO@KoufOGZfbM66j~88X#dXbtq*>aFn)@)MMrJ!@>|vc9KdVuzYP_+u-z%OKiG^w9UxKj7lOZwSA+t6vQZmqh1dw^})4@Y8AwKNPo;#|ppi zU$=b2>gX)b`|ED_h1>nNbDFM7P|LTsFrO5;N1vuG^LY)Iw>@+D+D;xUT#8qXIZ*zw zXB@EY(Ho?3)ZW7^6!R^R;LLLHJ$gpWw6M#rnZs1W+Jh$hHZS`c^o=TIwX1U;!5=Q} z$HDvVxR$!$nT=SaT$2pwbVKik;II#S*Uq;URUB!%FLe;7wai9E+{dAB_;L&W`2Ia3 zsOJ}Mx@_v2gkql@7SJb`bi#o846TTtQGFnQ1te(vqf+y7 zWB+yryp)|8ST7A=AzYMr!0n!(ZQ(MQ3o0%`nrIvn@HBhm@@D&^=Ark??(Dqd3FAX& zsqM-HKiSPkhj$wHLb(A>0iZUq+oRAt8tY4dlUIVEmc&x^-Y5Ha^(Sh3bF^p4@*$K% z=&zl}+LUR4^x;o~k}}z&)!DYo{eA~?kmLSu}xz z3iWcw{l(YknhoSD_hz|sSnXB1vPQhm@h!|#)&g6adA$&AGD{=7uJug&=}HZrZy(sS zL|1Ec&C6-OnQ#^VrAUWert{O|cl379BSK)4<3I*FUpl+EEJ-Z{F^BJcgG1&0Q+hNL z?Y~l6w|}vutwv6AVC$1!{Y;IxhR^;^Tn5jj;@H_j;<2 z%yYQZdUD|Y^N;|N7Aig~pyh0Y9fB`IA~70q7p>ZwJkYgg6>WyxQo0X@+ZNwz=QnCP?S$K_Dw~dZ2HMP)Rh~-*FL3KR*Th@Ar3sTMTnaw%7{v(61WSsCF{IqbnS~%Uyuj=4pf6|Ak*%#k z>ERYW*LZ7wJ5i;DU8M_GqdxCXOZt?hdf)leA6zvQ#R{AlKps8ED)v{4@luoPIO$!S zy+?%7q6!X1Rupd!PgQl4G7O;DGa7VZy%3mwA>|{0uxrTsoR;E4drKtPNi>72WIg>_ z@g4AQ+G9MDyWK4VyoltZVaa>)v!FQc9B>#T2o}$e+wpnPdL2law5kw*ZFm8M)zDSi z^xOb%s#~0v=xXrFSMTx$j%Pd!Gw%eJPr+Tc>hUP*)`-mPa?!59mGX0ym z)7T3}fJ+?aI%k zTy#q;RJg{pHs{ZqekfsE?rNm8G@SG%fk<15fBp8*(nvp`qj4Jzx^lzh=~)SMelSH` zo=ZYH4xLbjxnhb}*{UcnIP)1aOT*)JO{;{@Ypsz3&EHizBCBoDUEHb*3YSa1Y@?G8 znT2g#Yc4J;!5OZwxrE^|jfs~w_J-E{L8|G5`v;%yzwrC2Sk=OE6TL+Zh5PIf z6I}jZob{)#0K;P@TZZ$La^s44{i3Ez;q|++Gt6?c;h%fkOo_QG-{136VnMzKS1&FE zefkgPb>;U$w#CPr^y-+pV8mBHk?W|+YwEqBFM_F_Xi@K-rbjQ(#V^qP9$TjyjwH^2 z18zP~2x`Vgu6*wREJ>9z->6s#HiT``xZ)?CjO;;=vo~W(&#`TwtQNoQKEwBx(QqSZ z;E=Ma&@}V3ix>7L`Y1o=@E2MjJ0boDm~|Qoq9;T)I!k-at0y%v3Y#jE0$KL~=q`Ah z#QfTPLV?37?O_9EUrXxW-R{w6TlLhSe0#uLvMM~IRyz8dXqbC+LL$O>V>V7-r(%US zS4%CeAt9B`l~jKYz)4MP-PYkpcLrB?RjlyWYa3{G${@&nbk+SXMt6G$Pj+#Hzz;=E zDhYMA(=A6#JomtbI_>>D7v84n!r4Q$UJ0cId~-Z-%MNGX;<4+vXJvY@;OJFW=4t3uI1acnw{(7h4Fz`pkRqmnLtIaMYW@yDymj_{xAYvE1 zqTb(eCp0B3#P3as{4au87G}&y2n;3j=uq$QLEHFCQJ8O_D>+3^{eYx<}17rJ0>z#j!0j4n;W~jH9{V zN$hqA{R+}?b2o^Fby&qY@nO$@>KyA2PiDHCg?)HrbxPUh(axH7V6iEGcL$KqmJF*Y-AlP=peFyHB(D)uqPws#vCq zD*9YD-p-3oTz-`O({=OD=4DI!Ygu|v=kIzAgXY_`1O1|3)Ckv>>7d}p3 zHb;HLK9nw6H}KBXI6M$|hrLk}#|c$0FTGRzdQi^GzRQX&2^Rg05>-Y!h!tJ5zjx0o znf4eR#0;l3=E;!7jq!itvbP7nOu~^@=Tt$PyR_Pk$$Fut%ZVY5&xm#v)VW5woETq- z=8ex#e^U}*;E}h|3*m$iS zRGvK~HAGoEg*8h`ZOkNZZ5GE9;RV{ek5qcrhk>BMUTrPR^~G9tO&ufK8@?6V3l->a zJNkXr0GM?!DOhHbB&kF5QBBZTuAHR2DuRvgy=l+A7DVB^FX?`UAc=--v!oo7E;7n@ z*r^R(D2V)73m<1G;E1pE6zJtH&ym z?q*lC{>(XD!uc;`T{Mv2p8KY2)2r!SKs;UAC{J}-5OH?dd!xzLPZDC%;}!fXvJtcW zb3dqY zJ4cn$I1rU9{x3n^Xxwaj&nrMGq8Q$o^|MQx+zq&&j>Nkc?|0FnihGB3nS!O5)>m6) z*%SA+asn3yA3``4r{5)4g&uKg)jaY!+d$`3dff)(CWH5vvl;oV+C{?b?u$K!BPVDjDo0+<^)T zX}KKMua!Q1uRYbLRF>EmoS;Gcm9+hs`TCQzHpzI$&F>TFaO0~0z$v}3H~6W|RP%W7 za}XR@116*+D+RK%n*(7UCT}u0s)|3LdfAh*u z>sMa`%~$fs(Ik9P520o4P*hbTcnoJH~KGJot0z~=bM zXesqrogEijFBS;Ny&?Xy{10{Kw2`RRTE!!^sj@Ng^4mmW)qk58{5r3kS-@2MSBXtD zjZRXy?bod2ThX0HY-M#!4MbCdGS9)3q43&;nk=IZbIX3Clq9DAii8|r%KFW)$$uT_ zFb6x53d@om14yzLY53ZV0gtn3X!U zvTaNHx=BF&iat{Pnb)al{*i%=OkAt%OF(PI9F9X;{2+`S#3_9nBHVgJe*u|c7E_lD z07;;M-w5_tJx0(;u+-@1pMP--oY@}H<2&`VJ&Apx#hpTTqWDLZ8oz_}+@easL7{4} z4Uabfgs%c0Hc1f>ikvsb8Fbh#AGpxm@j<$Kf4!u4Am|O;lf+RAgZBHFOU44I)P7dz zJ3E(#yx>j9N%5w`CX$v$?h4>tQ>PCUcd(eZW?NaRAW zPGplR6Me=xrv7Xu)U>bx@|P*tRf4LMw1E3ua(>h`s8K9k{UW<~ZH2x-j$ z{o%!GeJwvUxEQBhLQg*EUov#DJM-_}8|!z0x!K)*7a8F11`yxtTCu>2Li=;~b?3+- zKZUSD!O0tW{Cp}h?RWHO7saz6)#8$rKU_Ir4Ms;kw7jG5z)c5PsXU&{%;TzQs=v}D zZZ5|djI0E+@|sVd`?pgq+!I%6C*VSG2PM1Z)KG6uEx6v&F(Ukj^mSOzqZX&4V^i3# z65%iYu?uaS9bnM~G%XE6RX= zIz5p|=H1E+UEl#qUs;xsbDbU1&|a^~TbB3z8`>XUV=u*ipu-fJBzNIoDEhGPl(tKT zfDVUC6C*7T=u!n-W5mFuAy<;O`sfBZE)TXPGe;;)YGi0x?VIyv33*5vYgm;cNWLZhXL($BN|~Ne zv;Y;YUrrmpC|{%_ix%O>hL-%EVRiiO9Vc%-BT z0^_qlt^a~HQD2VQK+G*TPqnUvS%-1lxC>0RZUfP5TE6!=2>zFzV^$;347>zVpyc! zwg;S>akXGlGes+Gy(F8#(&5v&o6XYE2b6uClh*Lkb%+fY_(786(iyLA!iQH#tI-Mt z1)BY4JcwZ<`srowp6bocZC>ziNqGv`8xh9O_Geb+j@P)XC>mhVyk0fqYkwolM}=@o z*c__J>=&#uc>gPbNknxo7gc-iL9ox8+JZu-1V0B7;HawVCd!)23tLIBq(SyXnV7hA zr!`qD192BX6vuo+c51G=$)z>)h3;SfSO7v-s)hZpIcBSVoul*kNY^7LII0dxa<^K= zf5S7LsiKT&(g)fe@4Gs7M0JVZ$|Ws`JaImZ^z)At8JaL%gQQsHBHbe(gXzW#U5aYs zDe!(1)$tU4P6g4xx@am*i8T%*@CXNv=N=AS7E*O=i#>j*Z@|f7=qQlbb2=-nY3505)mnBC5L zc;wqq&pA!T2Rel(*uW@Ns3%E!22CBec)b=9_e9<9%Cqw)4}L?+_3CHy+PFagc81UF zqOmkIMay;ljN0MP+C%f`eyK{lZ1e^sLcaMSAxfO9d5`BLf>4}z_@4%5-q9l!8LPBY zxuCL;!hS~R3eBUJD&HdN@k4x}ck56i3g5 zpwT2{d^LW6<=Cpx>gLvqDcjwu*IQgq0&!l{{R{f-&nDjJ7JBKh<8K~ zup9HoYAVd#hiI4W6LzTc0}IAU!8f(Uz#vpV?{gHfakaW-%4Mnw^HiF4Q@Cn}HqaZ2 z@P&}IysHeH66;Pocp`kP>6j!e8uw>6#s?a(~aV^V83*4$q%mhv;{WHwb~Hz(lFaH^$NzT302 zR8cdVAL;yF?I+*qSmr*Jd1QnvvG39d8(V7XXy*c?avCq_VcW(T@T;KK6xqjGk>>J^YM@5>ZYq-wu}Bno@=DN&Z#f> zV!ac2mjhR$x@VfaQCm5_%$+G?eV70Ym^YZxuc}5RM z9b*0(8%-oYg85(dX-pk=YYy)=K=X#gp*nyC;A4L3U^Ku2x=c&0{Q-kP42_#tqvx`J zGA8!ojo0iFp{11TFVo7<7n`ltZiLRsv$SG%U&8Da5A6g5ygCbsAYZpUeBY*f^p%7L zDxz=8WNpJAm^XyujpDTDHvhWYS(@`BpIT@=)&)-<8@*;kZ$QtjO1kAZxSD32zI|yc z57P)Ahu=cP=q=8{H6Z(oGez^&n~*%h(9EyTDl442e>-y!T^61dLP^nrP0P|GkeoP! zji6V7`$h^N{ux^-TGlm;m&}U|q<{?zuGlH-6uuJO2wn_rEQ@3EO8X%oW6D0BZSvN$ z-J4e}+0wE}_`ISAQoE3v^}Uy(fP>qFZm?SO&>T~)w8E=^6P~i9@M5}pCJwGebsDq@K#lT%a;ZXZwL((ZgZk=~D4&uMOpa%vS%L;k-a(Xk5; z*n5I}JUs}~s=*!KU(~PU9BBNt_PJHQAR6O0KdFS;)Gy}8FKrKhXtmb-U;WiwE>Ir# z{~KfM6WMrc#59+mXFFvq zssE+LjY-aaZDtnCjL6Zfk}P{kxL5<;b9%x#v?MhRbctV^B_|1r^EyD{Qs8YoAVTKe z3ILW|gFul}Kq@UQehn7_!;(j{p1d;?x1C;;Bfe#yGFk}#Db&5uIJs}A0XrBHn$Z~- zoL8xZtNZ8S*fB!R&0ClH9aiL;~vhUDSXUOsfI1aaLGG^LDtag;l47%^`Z0*9WhzU%$lR^NkRlvjWSsZVDj1=0gb#-1Ub%Q9pvOz zKX1%S#r7n)gbMs+V0Ref5%v_Y1+nxrn6Q``2sBQ6t_<1vnPMtxb_HS%DWZu&?%=UB z-?srBQo#A8f4|t4?sY9rzP}PJ$Spf%_~+oC^u3;7Gq;^2qpjP#u=?`O?k0?jU6sY1 zC4Q5fUVC8c1#TJt6%CGhk>S^$^i(_~fFO69u~x+^sqp4e95vAl60w(NRXe za$hC)im%Z@DnWZ|9~D>>DhZffj-NPdYcG3&@yoP0i6iB8eJdM~!z9@R9LGWje5`sb z#|P>$hk}Pt!`0wMHDVb36gLcWcK{b3DF_dp8l%5$6Ap2Ye717fcm1;S-tKQ8+nvbk zJNtH2nKrlPx22Wz&TLCIq$VX~B4WqROd5{IQpiHWu_X>YMKo3YCSbGU>#DN=C{84y z%7`wuruH|CHJI`t@$rSi z#L@VR%z<8s_5H!-x}~vPnmh8hzH)ehpqhVs8r`C~yHV0ns^08}>74O}joyx2TA3hj zUk&Wyc#GiHfI=kb8K7mF9*Bvp56^zHB7Rzq$lN6{^RfZMdnA4^|@2pj0OmEtq za{IETg{z@sB2v)+Q1HI5a(6)+b9%jAMB{T^xFf`Az^&%+)DUD^JPU<4(b?~A_n&!F`LHRkj*OtxJ!s9_M3nz5u7^vS^2AOdK;Xl#R|IoXW^R4Hy9302o zYVvA?SC0!ux@d6;)?M|RKpOym)27`UA9{gxpJWJ>!PVr8BjM`93-vIr2@_@q2HgYw zd!>nArGWriav^oW;vKtR!$+sYF35g@guBU5#*nx%wgNA_+yJ+Q)f{U4Naok{AG?|W zbf2am*qtmmh)wq0;)hw6T8D;=xr~&?TvLkQIi3VYMj%|3uWo+sRT!$3wohN=71)tS zBydCN5t(i!xx+i}0+BW2hnV>gl~9KziQgD8wQrAR zgNpiqf7@N+yWZp@B7k~0_wnJ7I640c+`Nb&0=YA|xIV_Tmx#O^myMoDAtVo(iGw3_&E?B5ZF$FBZA_BnOr83~k z_~myFcl^g+-N*Z1v|uE0-f!*7_yr#gWzvb+G1tAQr`CJCFW&!$ zN-Eff{Hp8nQAXtlZH`RxjjWrUsDzE(yEO<^T356lK}D_<>Xayj_ESQuHf{vRRUBeQ zbx+nor-JN*?D(bma8_kMoVKLTuq~9V*BbE)-N;+upq)X;#h?|Pc3Yy%&u0_L6Ugn4 zsxo18yLFNLl6DO5HVri1osBghUO;__mS&)80;N2C`#2H97N z)0bYfda3-^D9O<{@m=zZgecCw-6uco6uOxacmRk;)#&q7qi>}jzM9-vl&EC7aGoCw zwF!yjPw4W4|lBIRGOjj1OJX^p;w5r?sCGVO=>(F#X}4F z4uGvsBYmjn5xIfgYW)xr`WCVN3l`OS|G@4y{bCGDOQXA`yq_T`IKLH+@RHdPr1hdd zO4nDgtZ#}oV>m4r>siNWYB3G@Kzgg%(3Qk#qZ{mV3Pu6z}1RL3L=sP0>R8V8nByqqEDl?j)y%%-4$(LGPM6)(xi)r7_ z-|#JmCf?iV*gz?GwhKc+{!)>#5e`}K(?Q&4k!u=fcVJ`7 zG3r5-?0ZbjbhF@}B7Dcq4g1aVmRganS%8FbrZ??_Zhxp3g=w75DDP6+W$B38K#yL% z+tW|jHC?nqL~;dWtMC4!0hA|MBt*S)|D+mbo|cy! zZQ5(7H1PoArKr&R8PQ}IHjyVY#|GCjl8_veUQ(uo*yodu$94UgL*$1CUlr~YxIeyH z_TtWfc+BM_y6CI)zQ)fhKMY0R{}eauuQr#twh1m28Wh&T{^B%JISV*}P7h9oW8LWWvv!rkSh% zunhZJPGnpxq}4KiZa!Dk>3eF&u!Q;Q+o<}W-!*hh08<4~svxhIdFV!=hb-4_x$E(+~}4n@U4!Y z!_Lv~Y1{0ZJ;rMSz2HVOKRQDg7zqFexHxacBA=Ne0%=Q6Kh96)im8S~U)n?p`6+oV zw!P%9m*F;>VJC%5c2An7Th%{u{PD6#r^mbU^3=_E%EzBU(~h*A2|`a_k)ihsEp0|s zHV9jMtntB@Xm^(~7nb zM3q?}TX^qdIciK#r3C8WPm1Tk>fU%s+Rz-_0H(SZ_RL3pKIzA^F=Ae$=n64H! z?N$ks^$Cim0Fd@rR0z#(2+LT!CL;ch_^3wRr2!JSNH#;xRSH&+hN830UO;%gkWZmB zGVe;BEOqxB7pKi(GNJeSe|?VT7y&7Eo^Zxw5EXq+6pR0{Qqj{r+O%IbpG7@zMUz$< zruLFHm}Uoze}1IT=w=hqb9LWetBY$6vj?$ZbFO%Lxovn@2 zbXF&S$Z(n?mmqVoU*+@mKBflFF$_&>n79AZ@%QM#IaaaW6-v*Z(xs+>ILK0jhARhm ze_2J3Ke3JPJye6vdDY5q*V{`&{hFhLY59U1v$oXPeGkrWp%$_wb7*<_sLD53IoodA zS!cgw?d$b4I{&2?QZPzKFLN$<5O20GT>aLM+oZTmJZel^fxW5rqP?Rr(m?h)uo zvj&jvnJn>^B^h{@nO`>Cz#E6)71#PGAbnbrvA6IF(Yc+7gCwmdGrVds)8oPAJ?vC% zNr2*(lpiuhLFyj?Q}P4_TjtG@MDCs}rMQ$1K(5 z+B$@Cbr;jAU;^W!S3`%&z*px1cS{ljQLc8ii2jgUBePWy?TPDNK56st0?jdT%`qcs z=x~E^$luxV$BbFunO^a9UXFBF;m*w8z{+E4IAGC4@r$?3zda6=IU+FGci9IY*>jlkzGD}#~V*Z_Zyo)`)lHq{7XHywyGPZ|l zNaJGZeSpj{*+wR=4#V|_tnnV|G0m-8%PrR;g_BSBPLK7cS=q1ly;bgBf*Wfy4h0MB zbD8f3IXuDmGCN#)BKdo~*$hh{GFViu0c2JiQnx)~+jF%r?33MY0e=rk$2FZxShJjT zkSOUA{Z7X;?z?nP)(DX%126q|y23|OXk#yQHWjuzUg6u(UC|~IqzEYZ>G!J{op;c` zC!TJbL471NwKKgDV+^TSsqBXaR3Jd8tcZ8kY7W& zcFK(_`M$$DWs39%dJR$sRR-NpGGO+~+O)84jtSz^?dIcxwT!U+hSYAkolxhoKhrtg zJIy;kHW;{U^T4rZqrSUx@F$KBb2RKh!BQhTx9P9r!|ZAt>P)oOTOzvqcvtOM$JSce83sbSA6I-AOP>sf6xwI$E!0y_FUBlGh1aC= zeoR`q`|P|GlN%5B3?&%yh9rr@q(nAUr&-%Ymy`C)ALQNT8m0*v_FaK4IAO6vEAhS@ z447m*IP2F|Jvw}mo{cD2KV>cv|2A2Vyt+Tw-TQgh!cRmE$lEYlj5Y!<`bQ36pqyHI zEPXR@WhZgma_S*C{-T=_IIxZbEOV}0q(>nNf@`@w1&s|&rVRc2Y% zB#?XJrg?F~aHXhL5oi_*J#QsQlV4eEJI7c5aJ~Hz6_B+c)>Jd;OLd^nM)veTDKU94Gqn1(+ z|D7@=*cGhXAhhkQpqq7gs_sG%d#!w_ik*rzTRG;W9)UClXdHKh>cGx~3`Du6(RHC| zXS;DWp0Q;M1gKWcsIxurGrCb)ypX8wf>aJbvp$#`Bqw5goU7tux8=nv{+vAwD$7sQ z+^Ek2ldDzZ?n_B>O@hHLlo-$ADg`(|H<-V6DLjiddYM*Je_I|KMCcHAZrnE?+3(i6 z<@Rk2N;4-MhR&}p(sM&sL&UH2En^`Yog2S08b4--ECdw6IC5%y+g%zS2NG zZ?RgwYCSiTvT#ooB7VX#53Zw08Aw+Vb&nXBKb4c}1oznHgi(R)zPuRH_c|O@cAbpT zTWYC|guGBZ^UGV09MyilZ8s{I?Us#tnXjVEL2YOT()eD3CJ6)KN5;p~&bs4%98>+< zbqZ0w<&6*3n!w;gC-skTs`}+|iX;w#n7-8=6->0xfh3Wg-~h<)*$4AFbiOQIX*QaB8B6SbBQw?(OpqY2Y+9BwcINY(QH`@ zI|_3!pE~$fyS3pta#&1tZNsPs`h>AT87iow%~VRivRg*jQDN9MzaxLsz1e2e*EHRK z>x1_?=E*zK&RL{alOY}|-Uh3a*!)gIFld{=n&td9;v))cT|BwEkXyk|H2=%8OvcFDcyS~Gnr zG`$UrvbG7Fsn{?M+lsC}yl-~+sD4krNB$4&pdg;_c(mCGJ#)F!t$AzAx0~Ml2vpDB zGKLl;art?UydRs#PHjftr2nWSUl(3T1aDjq+ZUVH^*KuQ?Y>&*yzRSC+o$-y&9(b% zf2f_-Y7Qvp_eh_O?~I@|auec1*F}Y*E>L`0DZima=wI_R9(*-~INvlNy048h=AK7bQ^*YX9Y*!#`Q# z(<*+wOiMgD@X<-Q9REJ`EsFoDk&#a1Wsa`#m4I2~>v(H26F*$&C-y+}=M~d=xJD$z zQf#%x-O1&d?cBxmrwJDf?X3RYP=3Vsth!E|`Ot9_Sr(wjFR5wUmyoaUd;6=3Z&W9- znYDS@-#T%T&&ZO^RQ~00|5t%qoA)Dg<=v)Nl2qL@ffJ{Q-s8a}#XBIyhn!SfW>qny zxJcx_(%d%wjo?esb63Ap3dd_DbzQ&ry(^^#5#aEgFmf@f(>s+fuYT7JxH{o#{><=& zj&V#tRu*{VNt;6Ld+AX?+T;7rF1c}FP@tZbl7p?7QF!&E_LH0qZYB1l_F<`lwTFOo zT&|AF7=I~MIHn9X3D72AcaySx{6{Wjo$LTqAi=$D@+NRT?WkhS#XF>hI+eeov(ML% zvflS(?o{8B(mP`xFybvq64dVJ(MCcw#oMzpmLA34Aa9GA;v&TA%ny z;{}uHvWz!OiWmP6}C!kFKG6H}qRsdOI zyg=zgfexqtmzHc?YXJbpS?6`IYf3!$JpQl!;FlYePCBdD7`RXKhz>7h3e61U`WY%B zptciVXI)6+T7zo}GrY&`ZhBF(Or7*h4>wc#W{Rv$-_67Dfgvmew~)`^LP2+a6Oa+c zM6DCTf-^GxO*tZ+d3hM&KLUGwb#hfqDw5}@x%V%_ULuf5e!4h^I{H>rdaZ#`W4o4i zl8y&Kz?c`o-ftOrB3E}C@Tgo3P1&lz9PX>Z2?^KSA{R4Eq4lU^Ug{d+cpi6L{{RR5 z0ok$d9_@{4P%^tlyJpbFG*<6eSdzgEeO;0=CFFRI*9WGfF z_3!*xQ+YXD?KwIE`s{Egk2(5BgLCJ?G*C_$#wL)K=t9p4{MIq$CKd2_ z%&W4u;`wBsUZY|8F@`+~nu1QB5Uz_~wZ6_FxU~MqbeRe{4-Ay4ulB}*h|s>jB(1Nb z^IJ|*bNw%Rnq41HeG+W;KzDE0)IQj>3Sr!=%S<;G|7BS(PuW-uKG_HMRTkUm;FoX+ z{*?>w)$IIn{h1C-GomC1%xasEAf72JWzwbMJrC9&awuu9atgmQCF-D7{9ni0ELnD` zAXA?G#Pz{~aJ_^9^8-%hAfco>0@N+;d$-v}9+o_oRLZ=5lvE(mXA&F}EQ1{LW>2#6 zIy#JwXJ3V@KzoNjFQh;>On6mW#l@+J@SFW75Wk6Hw{zLK+a&!dVSLyBm{E;pr|zM2 zn&suJ{b@vLUGY+|4Zd-TVpqVQIAdtj!8lI$wz@%`Y?`( zZbXI2`F7BD1!&wCl>AjrsBTXpPw4+4={y{gT>rm+%2QUR9*>olgUZUv)Xdxp$INU> zHr$FyW#+(<17%d^9@sHQImlyW=AJk~bKo|^i31fC7b2jDEFZqV=TEp9_vgCa7K$eQ z7u%qh?b;hOa9R^X_IS}&>9%FRI%u^sU??T&Vxe8>1zJ{!tr3$e-}7l=^aBXK-Ov+` z*{!Vb7e%qsLImbU+Y_`QD^U4w_A?j)KJLp5*1Iu>CIT9p5Nst%k)Se1xW;OZ0NAIw z5Q+q&cA`o@xnAu83X>V~ArHgN{?VEkMG0FE>|rhBSq%Yqap;Ciel~r$5xGLbYBi_;9m_+=UHMy<{dq~K=Ws!5&V3((hyl^eM=(DGkZHSl zS;G0sZVLdf>|#D+ao-+%pm@W$!kjI<6k<>>zQqc=5XO*UPyaXfC6&HU+4+$ei>%Pirf$3y7x;$s{#_QclrDQ4svZ;m#nbxGtK`+V5FFb z`Vxouz(z&7adR_n%lTWC7@eOiKG8%NN{wlI#6E60r$j4JDQ=W*aQq`jp7B26XngN+ z-Xpsc!F4TB!{3vUKlGXB$;KXmKvHd@_YLE=z@99xLk!Lt;EUh4`)9iPq>mU;o67r- zZ`z-oL~BQv;$Ms4s+1n9zCcPjYj`y)~gS z(U%y5H!EPfQ}Wy=@@* zuu{PLg47m^I&7WnjLg=Af9tV?Twt!6mf>+blZn~EHx-B1(!@ist)_M~&C88=RU8)4 zlOQ%l{q@Hm|NL?5y7{9c7tT@&KHB+_J7{Oq1y!NN8*S>q^2S|l(EY{!Y^RYT2hwh* z4HCWiA~$erWq84iv6B+MDRBeIY`yL7SRP=xn|BL(o%YGAt;6%UV`Ia{K^Z8h z8(ke;;9a+{lodejNL&cS^1adbeu&ZuM?n8d^MnRX1%h=3zT$4Cepq)5ojM?v+lv2x z2(XcEF=s@kUZXVy#U)bl`QpNZv5`)nde%&pdjH1GmyDDLaIp76`2gJ_wDa=_#@@tPHRp65=}S1z$^E2(=dW7aT?PC-ikc-|91bukCBw zCY`oV_t>NH3T~wSM1E?l{9g&bCIUK^uJ0AC1lidVXlaAmed{q3SG`7vYB*!>&8ZuJ zmpUJq2Wu3^G5Q@61D0}i=KHlhCHv#HG`fE?TzntasZB4`IE2}a^D0V;CTe~E^=^;K zz>utvRVshbo5zkol&AyArN^gC=6~fPT_%-7l9~sy^mV5<^_fA#ywj?k8MAgi_D9Rx z?SqBg`n*5%a8#?q8&L?8^cM!Q?k6K08;WS0Z@e!u_U=lR@ImlMi_8_fF}DHrAz${? zikR^=2ybf#u{+>VzS9O}{_AfT2vQW%BXcbM6fN7dVgwT=u55Oo3`|UEMhQuc!Kw<@ zPUsW=p#ZwRd>bXIY(OWlz%G(W6Gy%88QD%h1Jyu*Nsr+y&-=Syo{7+@F;Ml;qJTb9-+am>;A6rzcR zgFJQ(-IQ91s_JJ69}e{9%~F>$2lF+c-Zpg*DZVip${7q^1J+OP!Gz~0p!E6na)_{Kr>6y?&_42x4l>YtYV ziG{xLr+?#{AJ6F&-wByEyx9Ei>1Ii9SD|uCmpIiO*?2zTTD7c;T!D7&pct1DpY=F; z?vZJC>TnADEM?K=@?>MU>4kRenxtafO|QA8bmS==gw4BEsn;zQ+_~~1J+zA{a<;It zi^0#@%or>SN%g`gF|P?<5=uUg@V>pa#4bLfbLH_jG}IdQx+&a&OiE22#}!`)S#SIf zK(o5kLSXmU?@`(qVu7($^8yls^uOvCYRXix$$EA8z?-=*>=gH_8ke)x^xB$p6~p@e z8_r{7Y60VNwusk{s6n%CFoO;DSwsWNZ`YOp54%#t8BV74eQGth2dW1fKIn`GX*<7q z=pxr^IA~>C?c1=hg#5ITrMp?^tmd|OU8_vD^jvX3B+b-RRnD|)8_&OI`m>hw@zINf zx5kmbM112{-`eA3X+`V<_+8&5l&%P#s-XihF|n0~?IeG4b%&NzfR$wVM}$BGXX*Xq zd=%hdE#Ox^HHm+7CwsKj#kVkKNeU68ihctjW6T`>v~uVZK$$nZmYXF24GaddidY{r8=|7j#gQdM(6OU>cGlw5YQc{c*|p)u81}tckA!tahu%50m7r^_jox}A z`(c7AM-XfTi*xvb(^veKo`fJ1HnsO|=eXaUG{WZ}gEsl^7fYp)9-qx(0md!jD5|^- z92_^15@wCk9h51+Aj9RZHPnuZW5acV?)?>$7(cd*_Z2khRarOHp>5;bWg}9FW)PVSkK&$Xa}(!wvczA!GJEO6Q1% zbca{b(lZBD`ByVtb^9Ls2ljgbAD()27}&BHc+XAz5nSmM*QZTM7-Pig9=7@Mz<+*% zwM>7sdL+SbYU60!vS(V?`tP~>Yl+cW(B8$s7^1kJX6%s_RPQIO%>c0@68#ke<0TFR z?}WNx)6;sqlp;Mkj=CaWZARR6uA$p?^cmB~?#FmQ5}l6g$xI{?rU-p^)>D8?3zMC$ zE7XVkvGFV;V2~qdgWDE-G5eJAQ_%RsQgl~`e^H$<3bH+ovVKIm-wbN&arrj_C9U$JXN zq=8FTpsmPfmV%VDFMw_3&^GgDT@g41?rRCzOPKIQ>ba@&)N}$ke3sN>32XSCwUb@hz2#r|T8ar)+3kAC{*Z6_ z?7@5aSvf0Z8yOV0Wg*Mn+}KQH&in861^-<91+q7LuzXnXLyA+G^eMFM2vqbrLe)EP zr>i2q=Tx|=Bi{!btA;TM)R9;0T>J*$DhAfH-pElp@(U=rMp7`E^$Hj4UuxGz-GYmQ zik}e-0>Mtd;ezUL!&Dm6HFxX#5OHqWZ@Hqv4Kvv1(Lo32-4EZ9N>AG-b>qrn^-#wg z{>h%^;LR=tdKP;@cuR#kpx9kDpb`G-R1$*yD9co9$$ai}D}MFRXQ=Bgk2R@a+JKn1 z09+{DZ8A){ZW9#(buC-8+A@4&MmgB9aGLg2yfYMsJ>UFUca`TGXp^h!L%MW#1+5X7&FLz^gdC_?{I$_(*v9?E8j<{JPWVCctZB3KB8c4`&?B3}RfP^KRNSKUDuh_ca1b?!m~VdJy*_Uca0#-{$P(9!e!J07~oc>b`}Pxps_iBGIp z8A}V>zlnBkNXFTHKQ-JBBb0TFC~LgTo*J9vq9gh#hw4rh?Q8LUR#dl4vr&fRrs0|$ z30}r3w)QedPuvOV>$v^!d$!e)KtAKqTs&~-TEK7;=v3b2hKc`>h3|~|6w3j}wV`lv z)R)J2IR|xSmD6gsg>cOP5mSkx6_70}h6W&t-l%Wy$YXo+ygmG@`e*;K0-oA5i2b6Zbda2M)Y#vmF?lAM7Gt^SP3w*gbPZ0LNu zB?thiHc!{zs&JV;mI>ZuXEa;5xkX@2_s`8M$LB)Uj35;!WA1_MJP-dqM^kd(e6{Yd zOoNwYNpv8zUrDNE@HU#*YbxyAqg4%LhaWhYp(<5^K=x^^ih`75_0<>}|68nz$u zARBM%kzzQ`KD1Ze#!so$pizbYGK|nbkHcSqacRV|0M-5<9RS2GKXO$W)m9tI9I5u} zQiINZ6-eAbahETG$=K~i+BQfaxGV50)qM3|>q7*W>46$O4_d40+!-!KnyH$ZFmH~j zq1gsKZ0xpEHB22VXb)34VEs)&8Tkr6F(InuTK^^jIWYnADcDDkLmz2dKJEnk{+*9D zoNcRUl`(m=!_L_iuu4LjDiK=Kc3~_9g8ejq8l-`n3U(?5n{SG*o+J?yZ<~pv3a5BRV){roZFfZ zQ?jCVSaGkSQ+5N@iNZZHp&mvR-b>aG;WW`x z8d2PLAE@y@?m?m&`tWCdgm2R5*o%JZAqq$CBWk=~_|Cv!X&&`^zo%Dk=cK+UD{#}G zT?y;|I{I*TdFbK3E3c}&{AUKYwwVS{R9+5T!IkSCdsasgGcP59{3p+V z8dI`iGjAf}@7Vs~wCU|*$jOl8Jt7u3ZGDFMynqqZHl~gp^Sb1@@Xl}?oRjI6F|bzH zWb{teUR8S`(07BLcza^`A?oRQ;0R3lXoae9iFhO~E1BsM*7Y?NQak)JV4=<~RpUY{ z@g-Un93I3zU*=R&`*lS|m_)LWewHn?Ijdu znxMZdxqnRp5O!bl)lU=A4mWfxPeud7FD9mDd(hwBE;7ZJqkQG@3oxuf`P-x8QCvxt zzZlTDm?>P- z=5<*febQ4W)ss$Oezkv(3L9(q*$C8;M9mIdP3-VKqA{a0=!sGi(MIlHbVs~Fw()YT}mpXA+j4$4|F6OI& zFaF^;v|{%%xIM@DD$C`=qKwiZ-y^jj%KzPbU|ZD}c7N-h`HLH-JUBDBfm43pZ&i3w zI_q&==lD@JZ?78>*M31Ng!j#@3kv2_pUq4+2H_6<4SHkoCUI|S-5UR|J~8A+Or0p) z;2q8NS1uV^h}zblmZRcHDpGluYZ|pr{4M*xZE@qWHAnt*iNwI-zMAya?;c3!vM&C7 z5nU1kG{QJDMa#!N8fcmd17w}E%x!pnZw2F zefxqC9;%s+SCdYMuj7#COr;XNEw)s?$^FTAUyRs1s2mU|>cu9;skyYAfCxiumo}{L zQ{--!r~el+4Q_ET4tE$2XRp8KwXoIpEW(j%{)S&QHZ0<3sl*#9TNy>ZchANl2lt0+Q-UtWNN-1a{^8*Ku-lP{YCha$ZX+f z|B%6UP7z{Dg|2c|lnuJSfr9gv+BaY?JZX^G0TYvdkjoPSBVQj>xkXw*B3A$Dk@Ys_ zCrc2gg{|(x?cI4d8s#%rsiJyqq(3$|CpVqm8Oa=c4jA%;zY6e;;)=NdKGQ8Dviil^ z-paUykNijed7U2z9GbhJ6qb86UU&W5s}~U)ec>7Zrym+ipqcpXDYedct@^T!RwvtN zX6rw;7T3@M4sP4h`b|>UqHYhLvMX|YVS0Aj=~iyw!+BZ7!5&L%Z|-b9$nDGdRaubk zv&_HAAJf@t z6%{}4bXsN8f!QcdG%A&mv>#u~){N+qMiWuf~A+$v)n; zBXiw((PCQVGk_-!!h2%{@qV?2?#P{zG9V8tNSd(dksnZ3_8WIs%UhX|V+|n9^FBHO z*kp5fBYpJyLJ8_Ubs{veRi``n*zM%wSUO_l=UxL_<@^)XLJB_j|!P-G_2@m(IB>9;islADY1(0f;M(W$GC6Ecn`C{2-l7-{NVe9k9En~ zzXrPumYMIReBCpYKrKh*l>{|RcQ4bq48U4>L|egKfw`SSQXan#@nnLe@RnHNI2Hxb~NsI9=& zcHqgo^=S6ME|iATy;eAn(7sM^C!czs)_JAdi-9dZPH6-nr*u`#E&u0zYXsaGssaP4 zFBVf8f%*qsv?g~57wYFmLbIp?>uZl|$YF&**nwE_lnc)LPi}%Pitz5zy3?(z8uF-5 zhe>zkEcuJeek#i-r^IQ^L$LMHQV1+?JZw=vXu_TsWev!2FB!_&JxPEI`%;pYaXw;t zpMImpQry?P)Zpziu);YexQ)%F0dtFLpI9PIb?h5KA9ev30411D#;osZJtPR?(KuA3 zI-H91^If5c*Qf_$d-(E3FJUF&$|2Sf@i`Qzw~5E*{|eUJM^XKch?(Nfn0=Gc)+jTc zuablKN0Z}*+gt>sX5+|G8FE3EpW3BDmT5#=uji=?%S`OCa2^pECH*1(#*u>#7aS%OGKOrE9`2HPPl(N!>xExZBmC%C>!|EuoKdtJX@xl51f#t>lxu=Sg^*lhpypz~r0Bj@_q&JT=_bd8JLC#uUaByp6i zp{>>PpI<)1@vnrvh5NL;Pa=l5-G9DIIPH;yIU0|Y(ZanUNS1C@V8OJlK!G2lgisD+sRTca+pTsBj% zjCudpr2ojIC=^^?e#{8|)PFwnv`0gCDzGY&VLE!LdnCm5-GKWz39)77;zYg1(2tG{H@VU>iL?A}1P``Q%lWfx9jeDU>+&F2UWSyV! z=B{nuZ!?KwLsmHhxxLSPN2B4Ac|uszh0^Gm%l>j)uU-9>$Q0yEqNYb!5WSCIANCq+a1A8`3a@PSq3m2Zcq~s zh_gA;$eoKndT(bZ1)ESp;?C0k8qvgA3l5};^{jW9cV&@F7P?Npjs6ah`(Hp78AmKm z9ZKE|s_eS~t~BS&G;!jhu|rtr7S8o@_F5(E2j-I{x3aKweL{8fbL^^iv*0nZGbswOHz~;g zy*0?$qpI}chrEYRfJsHK66VUzq`G#@rX(gO!2OrP#MlW)VG6rI3;R16O^%wgiPFXm z9&H7libxKB)6Ge~r=f;=22Z#V6SAc@uk=x4 zI(-zw*4tHUR3KYbJv-OW4d~a|0Gxd`Pho=+>^|b#`)XEB_JsM0kKV_3*j9Tx;!IcP zrCzOdl^Yx`E8wFqo*`Q?%WOJokWZaJ4%UQUEjO;+aK2yjW&lP0@0=L-%rii~9glK8-9oVqXucP)w;BoL;wB zGUvKy0%L8I<}l1BvekU%qdE(_OTwr4{^E_owN5(~2Z~2Gzu~h-Bkw!UQ}v=ex&jTY z^f`~^>f0@i%ldn{)(3gda2gsg7l&y^2gNfvckNx8f8b(jnF66NUVLS zh)#Z{G{4xPW4>r#Azf{%4`17)PyXD0{7bLZm}>bb^yQv~x&hQHaR}sk$%W?oeoSHN zSmnQ!y^OdwuPskSMV@myPGa&KAYCEGmewzPh=LVe`HXnn5vM>aq)C*J8S){#GHS}{LWk7V4}4B!cWw;Nbx zzwj7d(qoE-R0@NS=vhP)bF`8k=cUfTCrfF9sf+hme+(OaLTptmj7}{~SK1> zLm+OF=jTq@_3OFMHf09RM#G_lmWeDb8=bnUCK-q(JH8ll&)XXLs~a_ zQ*jDH#}q~Rl|^jca}|i%WR14$<5U$@0lfwRuc9x%h;XEImg%5sR!tL(&OC#-<&hR; zj(_kEXspWApn5@%{~X5YbAP2*oD$`fKH@0$tdwN99S zF89lN6K?ZAMs5xt>=Kt_YTV#gRwMTa`~f>R zj~EXmL2e^!yvr$zDOx3EUFuyMbL{(H-r@T+yj|PlS!+oAoT=8ueE;3hsgyWAzVA zToS*Sar_(jlUC9A*Lm7C?6EmXGnmYvbqQ-<8D}Xr1?OoXYvj5>{toS}!to23FQDG6 zv42?J;^HzY5Y$p&aKjyctL;7P#VI??H624Y#Zu&r5_HXklGe(qqzUZGas;^StRFc` zH%;_*vUccA^u}443J$lxdOEu5t1LIN*X7xqtTD$1u<`1j< zxOd~jg*};#7;!NXS&YHeU32QUAM2SJoPy#cN4A|G4Dsl8g5YszOIx_(3!*k7Z@kRk zqG)Y-k+|uZVK>(l;sl=f=FF#h@lMlvrg~72ip?N_5rQ&{OK2eeVm&-#Z-K7o&oC2bs#<8 zf}g}oo9bSDA*$LDn}QH?S7HT!R=lxgO~W+6?%IG*ax!(<=4D~tUuQJq{9ik_f7(_L zQigGdr^4@ggfLu7m|vi>#+||04PLXOw8=~MhG?5UC7vZ15-wrnYd0lN%XZ}Wds?W|4mJt0Ba`sab2j_?A;PKhg*yO~x($g~ zJ*H}x0f9c1G5XfV^>GwNdi2Ji7u(@I_0hX{p*n%|d-y|%^_Lgd2T4CuEK3{@1YNR- zo^ycAC+!`K3f*1PY`9x=fB&}RgbQUi`G9kLRNiYUtn;P$FRN3Mj0US+?Qqy$nA79z zo&KJEf0k6em5#gm-`MFf=lgl?W^6>9?c2NW5+a&AIyI)pdXLc9Btspu?a; zIk2SKu2KmiQBpV4$Qf?3ReiTCVO6@E6*6qmzr5!t_Qmxu`nkihM!V1Wj1uK&g>pO9 zcdXc96Gknox&pY#$~{*Ozkg0!)@bL%Pw5c6S3^$~uwmmDGR#lC!+%?{I`A+`c#8H2 z%wlWU?MRbEmji(30A)J;3>Q-+lDp46y=~I>wu)mP0p;)mM2mjc=sNJO=Iv3@Q>U+B zAi~i<-OSFHQ+Fd~YIJwgvx{+eYw`zhKB2VkSpo%5+VX*{UR%3$Om@uXn|*IjzZ2zP z@#;=PhAy>gw|8|}@ne25&I#UmP>bl-8cDL~7p@Nj(k>-AkQ(hXT?af9H=IhgV~hed*~D!nZZfZT-Ok2?4E9XbNG`$9tt}8M0==9*wo3UqQ2V6*f)L|At&u z$HV0ls(TS-&o1eVeHeth^Ik&_<6|w8PDBe35*L9p%JRk!e3l%x9i^aW!3)hqBdq1e z_9usVk8@5CC&!FSsxLbw(zOn(^nEPXHZLArN@V;-}AWD?Bq$vk2zqTu31QuNi=okg0{~ zmHysod)XaEz2%Je)T2ASWOq2>lS0g96LEJOY-c$4-=sDiz(o&UB9;|3`&8}SdYAqr z6gqzDY?S;cYS4&az7%`O-umt^`wRfR2}3P52Crqh4x(Xn9~e3u^aPxxPR=>gdJsZx zieaA_OL+>;N{qxPh6Wt2;wyeb92E|!L@Tc@bC!E-LGTtg3%j;o9x5+r?HTsaFJRz& z8K7}XEiH7-?WIduCbVWD*#O?AevWoiwT4&RUa8t)Xe6^piMOO0ZZF+T)H`926|>XQ zP}@Zce;y>KMr$k_RZQ9%d9Rb@ged=5y49m3bbEACnX3Qlc9!QK|MY8%wJGD2%D(AgSuYW@4@jwZyrfX0r0 ztX7zA&s}zJoH4DoZR;}r4A}YUu@$X=Q2PUxR>x@dPzW4B6f>VD8Qlmdtk+*H$Wb2a z9ItgBTQuGBPmT75E33A55XY*l=3uYZ8;1qCEr0I4de!h#$a&pC?5kq34#Hq@($-38d4VL9C`7i$-3vA3;L= z2YZDQ>!wQtB78l#5Kz`cZNpWMs&135w+l$Xss5?;ReFC&)18J5ffPC18Uf~ao9I`q;Uq1C`_JkF zr9YLP6>wf0rFz*J$ONmta~ud)Eek>a@|+4LdoDPsZNRr<883+{+uhbyQzf;WI8Ka( zES;CRJHJf^Vy5$Pa1Tz&_C$3PO9A5rM)SZy6T|_befW?NFgzj9Q5fC0$soS>L}qC7 z>2v1OZRTcX`)@kKm#pSL(|KPLKlflJEByw>A(Ls73#Iym62C@sl z_FDy3ssX;b$bSQw$?`v!pUBEyQXpcN%}I6PeR!?<(dVL>*wLRyRIe^DPP0BQ|DfBV zq*B1(X}?mWE%KuLwCM2<)1^lC*?NUf%Vfh0!$3v1v`3Oyf-e#+M-HX_7YSi?*Pj-543J*2D(_Ir8>zSb$k zqOKzbV85+O52}u~#E7QJ6fqi==WEoi|0%2xqFuoop8Sxw>^5VJN#xlIE)*kRaT=8^EVlSGKNf7P=N@6Q}*w1;8p$Xz@Flqzm0j+5s3-Na{TR>H{Qi@qWI$LSMetiSIRC>j=NqBbj&R`zL& z9PR|w1Uv_}^-H<>jhABTeq-DW0Iz6!vgnSPjb#cErR?XIf_Mo~gs|;1E!2nB2SHwe zggRKQN3+WGM#9+c$^l1UqLoE(R?$A40N`M8B3`W|DRZDMNC#3gKc6;sz_|LRt6!Xd zRj!i)a^|15U+dMeA#@W}L~~(2pvDyS+p5vnt}R*&+7IR#rgwBtmOTat%0_hxNSGnV zC-M=5I_8O=CVrHS214Bm*MS&Ol98tmSIIXH^-eI)1O~*scQQk+6%t?8{yVA@Ymlb6 zDBbnxLHtGD6ZGUm)zRQ_AI`y65H|vpp_N7;5&xt`lJbd3;vdMwCgmd;~^qNY^YY6hc@ved4vo_k! zGw9_IkynJ(&f0Q5&OorDRL}dOZdTw@Azb77ZAvAr*MPwaLj=y^=(c!;pi6rxHx;r* zupsYYgGvaAK2ThiaI3VcaGQjgJR{;A^5OC zcUN)H#SPnIFdkEmp741N#m`{#!K?S6HSLG$yZ>`Xv7cP%A{gp1!u&Fnk}>WaOB9;=KoGyCqab*rub8+{Y; z!|%NmkQAZ(1rx}c-SZd3ZlyN1dgTfE-Rz!`pB^uZ!eXuyl`CWPmJgI4V_zO$$-f!f zCvj&$dtMKsTE_HC590{F3FK7&)=FxXFNLn4Qu=Fg4L#i!)~r^^WwsH~xp8VUGqWf! zcAM3swFZ&%RzY-rEMK)-f1rUE8PHyj?Nm1=$YmRjG=j3SUJ;j_wUR2?I&u?&nV`eS zlk)p>+8r}rEqdyFJNVSh3i=kBFIDPnI=`t`1DekQ>aD>rS8k{Vuws8%;!{ckKk7kx zcM){v>!8`z$*F}BVg2WUZDk9eV~QPSX73;g;lJM-6PAX$$4n<(Ox?0KOcAbnlB9_6 z5ea_wY7BWZI?MDGc5Z`@P4}(G6UMhbS}6~f?koK?-O22bpB@`CNZm(#`uUzJ@Z?@< zSZ?XS)Kj%{_0%u)IwN2VaSyEZ+{SOyUGQ(p=R~YFc@qVg3S_QVQ0*x?gi=s7uS)4-uMw zHpZy8qhP$*0~wW@V26Fv?G=u_jW^~d_ObrLjI|Hz5Is@!m6!`4Dkti`gKcGOiy*J3S{K@qKCJb zVYxbAh1EpGKqWo;JmsNPfO-7hbNj3VI8&>eiF0lSTEez2Q!AhzV8a1`D9Q|s^tr0t zrr?#S$<3;)TBt7vZkoujD)q-yFv79FU?-l^n-f@)5cn?@fRKBN+~%QmR6^CseX|F# z>L{V>D8I2R*%5U8Fs%~>?U9(S`zkxQnDKn%qf1Ugim<9Zp(C4kpp3wyKq#)8MNo2s zXacecez%mOoYaDd$zJ_Jy8`;w66+S2u*B-l^?9eGulNN(>XE(#f2lR&z9*S z8LD{JN%`5;#2lfN)s}ws+`}vef(F^7{Mt#OAiem_5FumvCw!N)qdV|IAscN&+#!wydP;-44PLy1$Ed#Cl zM^{IiuH@1^rZ;ry)=s5}$W*UbL8yTtM1|izfGQUf0pTzC<1~@C$;x-EXF3GbkXtU? zG|8U>z&G-a1@TEBA%hO1?1IP^GN_vk+@CP*l^UVU1a4G$`;M6;he~Ul`Oc|NZ>kXr zDZ4J=KX-*xdb5}T8!}m2fD}LhUNkHyywksJz^syv^9&}vwHKaSLo}UGy2i2u(7~Gx z-?j>f>KF~Tk7}6QetA?8<%l@H7cw`0JCo?i?hDLN!vHI$7IH&;6|#b#?C$&twCRWd zEXa#Z+pfa@EhF7dJblj^0N=I^8KqR+A5JI3Po^4ETelc2Ao zgttL+3oUlQ>w8-xzO}1ggMZfR`Vn0cs5+`H%lQk>83OHm!>aIA^7Xxr0ESFkinhc-Dw%2 z##`+%A+KgR>)sTjds!o*lt2wm8A#2R0L(-BMZS#POt2_ubZ3a(uN1OQ4{l$ehmV4> ze@yw4)^Hx`Lb6hckDWK+$5ya^aX_#<+F;9L$9A%*1)L zCc80)Xm=uyQRSb%Pqq=uAM%(OQL4$A)+*oH{JdTfytR2>sjjsO!b)CAKI{7 z_?+hT1%#O1s%W>h~*Jfh()V8a# zLD?|$4`RaPZfpzw*`F-DX6pW4_( zgJ29MJN)Oo&cRHfmp_+mP55bupi29{pI@e_K13dwJD-rpd!$lSH>i#?T~Y%GVzQw} zJe(m`MfpPROEv2xrK#$Vrtm&*-++vsu)w|hLBxF5(RW7iY96eI1A>`gh zjZ3%B1WcxSeDTs%cm*%ETs)m)SmYyY-t;Hdw>&4HjBp*dowCuFk9&NPk4F4>x<7Vlm>Xh8TX2nmf~r z!glN~Je)NP_LZeH)-g$njsBa(XaO;sRn{s#GiRVG`4mwD+92BlK;b4@Pltxjypi>7 z=taw3rGz$2_=c>&+(hPVhq?cIPQl%2&9gm{*|Hg_QGcJ~qY?(>4Tia)J!Ex-T z4V=K=>+OJjD$A}PHj?7{Nbzo{e@Q8$n}y}G?fcIKnp?3>XE^_5^dd#q{StXu4a}iF z1dpvo9?_Xk186}>`T*W=;9)MU{c0GpETS}+e1P}j@TQIoPcAU`o^%MIZ%70A*}6LJ$rArgor--s>FT${xMJDHTOY$Z+y9Y&S;7( zt36jcx?&((mQcF*d%Lc7`D7`I^@9X+_3UweL5+^d?F)knTWq|n2tZc6e*)KN|HdJd zUefBJ1n9p+!{vt$_h{b z=V;`Rf+sw1;(L(_1$HPj7Ys0v%h{^%z)f-NcZAop1Zd$qiZ=m139CYf?oteZXIB^j zz}bV~7oe@pe4K|0{AmMQRVnHk zSm8wj5JssNV0^=7wlJw6T9DaCe@&=|@qdGI#$kUr3yR~z`xXc5Uwu@Fd^YSFyWBI5VG(2ShSXWIMKaF%5CO_uQ z;Zb)6V?%;fuYDp`OZ3J!3g#;cNTuK01|rOF9wwnlD_RQ^kaF^!^`a3YgD;~lw;@vB z_}%S*D~KnZiB}Lgs?UKHfQNRHe^);YS8CJUj1txtQvm_r*A5PUybH**UJ|Yi^Z#JT zM2+#C4i}aWPpFMnUTAzh0YKeGUITAn>Tr0b(gAKHy3$xy9s3+{1a_x3Qz4uZCd_WZ ze5J3Cs+nH{*MllT3zoK+e$PNOQm#*Ax&Z$w%SN1Jwa8CF=vnyE&4SgwU>PJPfcj8eR6o(Q_jMC+Zg-Zu&)vDlUiW zK^WRmb%MFLFW{DzvE8pH5XXVhW$CC z_lK{bj0W>?%LmnQQl;yheS?*KU#PyBw6kTx)dk_t)QL4U;+_sI$XQYz6mNVH0T3^c zqlz1$Kl^x z)v&91x*(~$_9o2If_9OLXd`~@T>nm)hI+18cLBk zKyD*7c8O9areuUDR?Y4RVY$$5cNecLyxcJ{ubTxmbg;b zBk)nYZ8HdkMDZ{M5-oAu|IY#dJWsqd@d-cn)_S~QDQdhnS}+fM^l9Jw;-->!TmQR| zJ_TMouE_V;f{L*(Jm*yXcZx1UpD^BPKeeW(vK1-$<^3Izz#o{cS3^*bXT`6KF|&d; zPy_!n@PkdTx$2fN_r~k7HMFkF?IShtTf@Dbk{v*MrJ`tsmOIZ<;!5&bctw4x}?vEe;tkH6eX?{QM?`-gU$wet6l&`xuk=Bo;Ea=pQz>?um#3g&f0uo5n}3sz1}plr zCYh0wO@o+ozO;d*65x@{2HX>K}2<`owx%MNCML8v7ElnntU%FKgh)zYC%D zbb{KavI6Sg*ozCDswx`f|E&I7My?(U9ve9a|0%{cXPC&9LR~M0~NIjV*mXVuMOe=O4BlN0KDQV?J1&ybUCQ z8(37k4B-K)vP_rS?! ztE2ed$mS~jO6!f~&?@(DpEbgm)E^h}H&={DFq`w=ZoB7@iDl=W(haq}w$u?^mLrYz@mqG}yRYB}uc-p%!Dz!&8t!cjK4IhQqCX_jhB zY!*_aF@>D8QBC$u^v`7!Y3mPSP^v!#%{!vnw|fs%irofVjh*;?d%0M1I>QH)ei z5<2W`pjN)0vyTzFxjy;=?5mdf!rjCk#N`(*5WA%6Pbm#+tr(|e+v*AI#D|5q3j!@u zBlL2|xxeJQ9M{RP6w183kYj-)+>DjXI{Xe7y|i&hbPY{xrbAZBXIFgpeuk7UhYcl$ zi2y$$;k99F$RKc~@&)4fw3qF9@eRgDhqH)|Y^D5q7i9CEUIjCEaBLF#RXF9E&)vZo zTvBQloooBFdLU9m=+&NfFRTs#Cn2@UGXp`PUa1*1*T8G#0CR5t`C;!`kCx(>msb*V zijNujEq}|wZU$=bM;__1)x=%l=F>9fLdwDyBfY`d07yV*L#_?9bt+R6v%ft0d+d^2 zkijYb6qi?4w$|?8*_;r4;%u3CAMwOCQ<^eWPRX-K^G>A%C7-7#2;E-tbazNK(d--& z_r_c0fnVeYnoqk>lrfGBW@~`@mN9`!(!Lpz{=Csjt;#CkDdKXfq(_@G@MjsU{^QTo zlARl@R)NwR!|!`K?)e2@2XQkk8El~7_HjotEkxGc39 zez2|onex*~b5N}-KtL=72W1qf`Wm13Z|A=Kjog$Cv>pg3DsdbCTVn8i1#%>+UN&|> z8rry2QxN);=srxmwbq=081zwn&Xl9P_jyiD88P0FxD|ONg`w~$U*~8oLHz=uY}K@J zqqD`DvNUZcV7M zU!hNi!1SEf&7xS&cfNchh2B}}ZLDROGKivV!xjx(FXv%=|Amy_7Dm|-1@q268;>`` zo+S2s+FbuK;j_A&X+9oZL}q!rO;&rwX-|BRO8*@x3+>GJ5H)DH`SPulfGS40@Gq`j zfB!|C&js9L>3Lm~*Ll1@cA&0Sy_^t_uYZkNUVeImc+c#(IyD%2sXrYlK-eOUqkW$gid&siwH+&V*bkaz0>y3Lif*tA^uhBC+84|vNdtN zz-9tLHvGjmjjElVVO7_&D`w_=K<;oNP4p1B)x`i;m;RjTIJzdamiCgnK#QFzCw&vA z99sF2_AdmC_4lBay%qmdxydeGn*LFkh~P(^wl0@kV51Ch%it|@xAuUwmYYw5;ZYqw zJLQ_3B1~*g8QXBQ^R!`qYIZZ?=L_77w3~6mp|{<(7FsZ7@OCm}DK9=cHy|B^- z%DrK?;d0ED_(uW!+Z66$s7AK?M!@B;j#x3hoGP6Vle)OY_QL_99ad26EN`H!Cr&x& zF;pgc#GJXnxIHidlMgH68tb?_!Dw$sWdJf5GlcuV<))-HQl2`ELGK#kZdk;Ue<=f_ zXPvkYHJNGf5ZG~&=?+6?r0}d)xWjFoaCc<+wJ6TfyiKXa=Va_9QWs~VlKIr&QiD-) zq1{k{6kGrLcxglFAnth?J|)zs1+*ejFuc;`@tx4)P5_tK+d*@)7_)1()3!BX@r7bI z!6#{+ISQ(Bv(%TrUv*So^-N34<3vr{?!d<9agsklmvP|m7skSj>g!P|U8rTO>NCe{ zAaOOx1X|_GP;e_jcvqCqN@3O@a&hU~m`|8+ML+aoORR>w9ZaNO{i_6!W9?M6_S~)E zS_0~S%Og1&hyEQ~$&2`P`mR_FZ@$AMbVJykV|xjB=|57fEavyMmN1`){s;5UdL|PG zDmqI)R01yh4u6n^d{CddDpQfxr&A0XD~M|C;hOr@_W^>-bc9`r<^Vhu`d*P%^B-g~ z60Z^7TP_X77Mhzbs@?7e7}nu3CZ_9;{iRIq@q8ui%PSvV(T(p>x&3Ub`g+l=FAM?_1kbbchIy*F+N7HV0*Q6w1u*hJ}QB;qvI!QTO zP>MoVCif@8ng=0~^c89!%4F?QpYg;VO&ldpVdEWg?0$qT`% zyM+{X4{X|zl5GxyF8-x%hn(<)R*q#Zov;0AHTSc;CEYp@A56#eqzK|VDg3a1%48Qb z%eGhqe^tDyuG;$@-(co!U{e-Y`bd4(NLB>`B;Y!%I22K&x;|r`GQ<)!@eb^ znPg{-XzOwD=Z)r5$MG2K38*p*xR7HS5tf9x5yUNwx)j^hYjeyo7B1JNE06AIEZ$Eh zQwpw|hIhspj;EqR5|PV4&*vuAVO9M~!N`~T`Gyoy2IqQ5vzrghiM1AU3D>#M2h3Al*+(gF*mFsg4eW_<31sT8WvZWo(a0JEKN+KETeQ(*b}&G z1BZ%AFGov39>&)I(fEbQF7kGrkV_)FY|j}k71gcp&9u_Iq)yfSxK0c$=f87hL?U_? z86;h`MXmivNUdU1oso;I*rBBt9}XzujLAtw5YPxu@iHw785~CTO~U-v%^_JBQ6ynk zWTV3~1oBO@g9bU)<$=b28N2O=&9l5{!e^ZOgJ}UAtS ztA+&ArYSv))!~;2+Q&@5YlE!6yjfgHFH6(MS7VCbv+i0#_)nd|cHwu6>bN5|@SEiw zFMTuz#GvX}0`D3i;`Y;N*jwL{pBuRK%g-U6%J#7@88qp$I06v?0ECBmrFq0Xo==o{d2!fYA$SC6{B-9V3P!M2|V_R6}(V zZVy%0e&u{rUg~+Xe0ayoj+LjG(P92n3F~;DjJ3_Gm525cw_bE9=gXTDG+RBEL3gPP zd_j*}V}DjT5xk`{dauld&dbiX)4b;pC>K?aKHal3L-Ev_T<#syaw355tn4psI;jq` zDC#YMC?ib1g?`Tx$Q55n`yPL@e!6(EZ{t_VqY?Fs1z z4X#>y@=w3{UfjepM`jn{THMI3?X@r3GdvTnpsHCv_MmFR{&+|;sra+Z=D#1mw4EK#X?+cWq2t<~jq>c71>M_G4=MaUT{!o1N0sO<1JgvSR<>u1 zuE{VXwe=X4>-^%W9k|ub77Y{kreY}3YOB6wQ81x;7IT6%Gy_t?7leh?RdO&u|4ENA zPI`Xgr)p)1KHV}`{nSZEq5 zO4Z$b51e&AG5uq*698k@`dh0cL;0Cz&&k8hnP^Izl@@Z#z!O=`?j4QJo%$+$r{jkW zl6Pre%C$ZPNBMy=aQ(7|BMIuBoSLfuQhOUAxRiJLnev~LEB(E-i(K`tOA7$M$=~E! z0^*iPVwx;k;@bZ7dPf}jhZK^X%iThzjQ^xySwz{*=HHFa*s#!H32pF~*4#pZQmaH|w`7!cuAz(8w>I>cgIL9Z{Gb4c6>)&ty)kt(b8Z;5=lwb;c$?;ew$!otn6)?J zt0zX+7TyGR6mK(l1q?n_*wQ^Zv%w`T8oQNZFwN&}vBBW#Y-iO#;_r03;itoz{X2#? zjVho*Xv*km%Fq(N-X?N-kW_gvF*x_bd*l$QKP|2if6>zxB(lJlGM6fLtQ{&?ely@J zhN^{+1D-hZg_m{sJptaplbF91y!BRxrHndzh9e? zp?od$Vjp52eUSPYW`KeShO-=4aD|bg5OX&JQ4?kpLM}fnT|CVu^_@dTLc`>kPEwBO ztWWFN(Ql5F9=+PGgL4wgxaZQ0HF>Z4BdJRt{D-(l?ddhcHo;ndqHU(80bx>O^Oc=! z=-@_QiNWShmT>8N&z>r9*k`K)6fULpB_ld|fMLbT!mb9KR1p^9UEbGgW{JJJ520mP=XYo->4mj&1hSm?uN8N+l$PcL}frS zd*F2lnE2Mr+!Gr9#^mNnALvjbNwGyM3SEA3#;Itl-6%<<>m(0Nw4FZKD;Xw|?%oSs zoI*0V({$1^4bQJZWxgMM{!3Urqkc=K_HU^WuZ(Zkh)bV0e+5?LRXOnR_O^3j~Ef zF);KwXQ2F%nlF_fG=*NnsB)c&vdhO#5&HpOesVLcVP*{P_Ji$(3IoX900XtK=rSZC zdbW&^u2(E5W%Xxbf79&EHs)c2=0uJL{WPeYfShO?n6UA%C2TN<40g0$_TkVmH4y4` zKu~K9WlayjD0Zs9_O~y)`DXEzlJe&4s*ffQc*4ilrsW5nPFUT(U>9u>x)MNF7)O>c zlpnD@suvl%UunBU56x> z+HMs-_!FklW~5RViFK8I0V%Fn$FA+g9{|vlePR+12+RU!fb*|QOdQ8}B8S-3e|sZa zv5jK5&wQ+8^~aCbp5B80Q=^{gw*gufISqrOGNET?FkxFQQ;=> z^T-cNMvdRb*LD016nyqk_fIalyo@Abi$=P7lA52`)aOdUPh zgb5b|inOvYjRkjN-_zTITwd|eel2qK)sqC|$*)-JqX%fhS}b|C44?QV1`A>o8^(0g zD8oOfcUF_?4~tW^jt^_S-!cX@r)SG1EG&dE7Sa`nzy%1mCS^kkTqKdHRi}MMV#+~Iu27yB2Qfq z|8z+y|r~tX7L&5*)HGk5StY&5|sE*kuO)ky;4*9A2{FgbbOKGcU#GY>u& zTeJMxsd!M&f!qZwO^r9dSB8-IY_r`Fl%#)ZawbR7CCvu&x_8~FRut<0;@3XB+ff>r zBP^wGoqfdrgUIXrY9L6?g&^|-7E$XnMs2656t9iIm4x(7H1A>hz)6-+J4=2ow6yRk zcx~?pNV0RZbPK$!&d-vpCQLDj@Wla;sAJpVbkXUVfDBF3SmtGhz(~6jj zI<*Wc8b9$rv-0pHr(S~}C#(9c0?^P9S$-bpK(K0()~(j@*T4X&`kW;J#Nun_)ReOu=Lkn51`Z97cN!jA5 z(Lr)vi8yW2fFXKm%lDLE- zb^9%CI+l$~UBvd1f&#qOI!*?QoFKu`9oF#vjx%&+d%SOt^RTgb?b1aJ6Vq&cJGl_s zi~CFib+XPmeGYx%>szrx&@w`jo9MAr=E!u_Aqe{sdZT!|T3XrsMz3>47t`@lX9tOD zxCfuPB=d4J%oCo<^t!{_H-ObuN->)fzeknn4CU9J8O8{CyCcy0V1!yITAmWkQ+_@H zsMVNW{@6m@?*zejUH+(Oc{D18L~Ndlzpm2UwVp-4*}s$@{WrrU!bNI7dro}L>R4#y ztw!N{XFdw~t-Y#K?X#3!d~D*LUXMplP$EuGu1)i2_y+?CFl z$IkV?pZ$6-mol8L2)nd=b&SVr^D7c8Fbkld-F1R=tv#~qMiG2giM5}^p(&egGg1}Q zMgAVf$;sItA3~|D$jeuMXEt14w{|e4HudMW9NBX>YxgxTEn|rIkH*x{dP$4fj=cW5 zK^XTtJEizRl@+I(ce|xi=A)z1xQKD-Gb+$nfGm^bd;O8+OehLgqhL>@c(47=ib}nk7#V3t-dT z4taSzxyf)M=ypbJ7epgI5ws?>{}X~F^KT>M$EY4?4bkHfta@XT;2~sWUH|qT(QVGT zY{&U4D0*@~%^tH7lU>#+g# z+d6Xc5zD$5uT#dJX=Qn%+#5eQ*^w=|ZyL~xotF2J%0OdEc>ahv0I{>S5(+Ggk8>Y+ zqeEC|y43<{e#Tkr0)|A04lpUa$$k-NaOPBvPR?dlz93;3K#yGzxl-oVO`g3m2PqtSj0_{4s?0}lhKYY1KoMQv*Jkk9$ zDuX#yXt|w1(C7{a03>7sJKkjYDm%_(C2CKH_KyBCynf?zxg9VCDqn^<8)c-pXw%mTp{9tbk zAINxhnQ?_YmYH_hj3=K}{pEVQbh7;Ltg(*)Ywv`ry~PS+LIYpJaM9t9i!8rGfxnvL zL?$#?^}!EDGzljY-b+r86!{Y0<~0ypnr?dcO)adCUiEB?rgp?UN7@8eCpY`<369lhq56_XyoD6WWjKB)kJyW8@VCFS22j0l;<3JznuFj{y-+$m@ zfa^Ax9-iOeOuGK#+ZLIv#Se@jth6yb`eu8+3%H!+V^{#rhfU&rJvvQRwznXjSl5Q< zR2Djy?jm(*nMI(*8-h$_MwxPOO;s{PD?==bpuhQ`vt31@vEhAINWQB7H~{01kWE!s zO}+^zJsFgZ=bQsiAK{t`dScwDSfZAmQ7ft6LSHrcsmh%-)7MMEGa=Mets24rfDYp4 z51SBYhfzjB?1AG64VBHV!Gk+Gu1B@V3mU53W5d|tdxVe6%&Q=fQwM>2VnkBe_tAf& z%l*Ck(r*_n6;V-0b`NCGqZ16w@&ZaGll*&ld(|4rZ8$w2^Ep%#?iopRdS7=iMfDG= zEelDS72^)jm3QMhN#0+1PM|rsqr7YT*xKMwb)AH@+B!m`f;>Yu_A2-jwgpJu6grjt z32UzA3O>>f-3fwPA-EP_{o()efzNQ7B8V-uRD&}>)ysQ77-1y?nUswgwtjP-<@w(C z`Njw7#LE!uk2^Gb-D9WuG-?(-lEB%vV?o8=Q}f44V*JKFtpgw613eg;Iw(z>ZKWKt zX-^ky%di}tP`?P@3ydrBu|=DhkslHs13n10Ie{^sGgr=jlaRJEeh?hQwmOs66%RP7 z&oq~iX`v{3fa+<;d^)5xpkc}B`myFVn#FPN;uPnu z`H&^?BNT;QVHtC(j}g7o1~$)2ZQH(Ob#Pw%ih~=5`8~SrZY@qNN~;U%ykdT-GQ}7< zvO2_yuMzFG;#@`$*y|<~|u2R->ZO5J~G{NH8_71cB}Y2A6+J0XXfst$EZj#+;4T$qe|50kNCUDb+0ued${0LSpz$ zWR5B;(Z(}~3dh{&#j(Dnyqt($+zZG{)n<>jmJ{+MPVzVh7ePdmTzs$B>sEz0M`mO+ z%=%FiWO}^DN>1AO%D4OC7%9eZTF>~P!JfL1v}2As7=P;G!-9$0zzok=IbuP{)U~zJ zd^;YYbBm|T!m|y?*}mT5d{X69z(_3{U6hu!C|c@Y!x}oh@0CyXQ`W$kaICdkccRUY z9j;J$hHvRf^pN0y7ktM?lkUi9S3F|dcn%;8{>>N}+>;U$-qM^^uG!Bp%{K>t!mngn zkQec>1t-meF|q+dswu1d1LQdbkxwd#C*EtG07(gCNdRfZN=ID`95#B-8uXeS*s%ji z2=CY|y%hVlzD&K$f2>J6U$D_xj#?0Iqc7nvw{g(2_XXD47w-=QHJ;}vspa}lj zAy-2rF1*vhmzzsj?xxgE4JL$WFFJ8JAYNB|^&gmg*NNiGM!T0Z0}cV7u2q~R*K(pL zHZZLYMt(B~OHA3pNO0xSnbQU5M|b7d$G=9hpK(;PT4u5|7xMlM;f0Xs9DV*^b*Tk= zTMcun!^7AoXu5mLrW~J^(vtW*{vs3^$nKDC9bM4r%NM8f$b0N|oh{PO4hrR#9pR#T0C@at7&Pvl}|E}=7 zC)|vA(~#O%zB?z)UG|vF=Lo}(c$)vz#G{p&G*#L|pE-?JxirjkYS4piZ{jThs`BBK zJ?5kB9Iw*>uv))9$QZ0rR}cu94g1It9AJP~qo(0CwQ>|>ojDU7XiTsZ1r%%as=@WU z!T6qhBR%hEb>mI^K#bznz7rDr_{zPEld`DZz8 zW70}TbB>&6zGvOkp6w;;$A->*>I8e}!{nL0JdtDG;Ff+zTU_;2_`+?&#WSf6ws?mx z*0kx@MpldAuR5JauKO8RqY;wqiUyu=yI^gy!id*=Cxebqr|o_{{^qW}4pfqF0AG9V zNwa7>o7!@~m)PVnq3P}VP$Xh`JYKtx)_%r-j)}12&Ga1ykdq==sTnqcbCu9WMO6X? z(;s<>*JZul{A2j%hLPqw?*i#oK~hir05F$`&(->PGdAk^rU!s9oNwdFN-HzdkKsOq z3K7SR?u6Hto<5Kz>=v-!ScP@|48(jQHTmfQfHHf5Pz4CxL{F9iO~CHx&yL{ecd@_j z;D%E5bg&LR;WsyXGOVBkL{&y(@CsC4^$QK8ewW8<&juK(t{7l1AkW&Vl3iC`LGH|4 z&Y`gT3eeI`8iWNhKoa18n4m;Ii|>Mxn}J~EM`t?a=t}3PB*XIr>#!!l(y!Q-vNI+Z zJ2!aeNy?_*WC@3%QvHEV^i?(W4^MAc?iwSv;8F@XtgbfF=i`~xV2kL#`F(8zKmeK? z7=PHQ6+8fB^xMS&3TW87n(=vFE5*;GI#O}%OR;ZW<;?XAIwkrs=2y4iV zI36x>$PFKtm^9qeEG~u)8`bj5v_tT1jt%UO1*`GUYKlbpUAu>0Ti;E?&NQ8#>mI0S z83rs%1FDk*zdl3!nV3&~i5{H!wKQ_Nxh#(v?j6_pzSB650#E(NY{!_TmQlK9kcFFV zEGsUgav<_UMa!>RvN`q|{34%Y6O?4PS~L*QGuXy50Z#v@Q5&awY5BDYp=DYHNcO&b zLqlI|pphJ7eE77bf4BgbkdKqgn=)pn4c!~Ar4s+kmwk(KERxvbZ zb%4u(@!oMIJK>+=$9-w9ZGO(jeXcoBhEqhzMziwk{zUme`Gbl$15a)(y32%I-mwc1 zQ=)A*s}=HdP1^U1et3CU219>pN_5S4^M7|nMkdDBwCiU=L&mK{5!o~UHP;({|J~Lb z&C;rK=B8m4e`*}MRF|vpbj9Blt8@?hD`Wrp5bWlh_XN9y!&!#jzc&dko?`ZyMvbR# zZP`vmEMh#r2tQEI*num%&*Y5eRqDmZ{GFF24V_hVw%F(fdR<5<#DtA^WqJjfp!m|5 zZB9LKcTthAp`JRm*`^N_lG+T7?E3ZFLS{A%L>wxK$8~Ej{1A3+cl4VF6uEInN(g0@ zjwJ82GrH5)e5}l>n*A1=(O}b9FB-VsP0FzivW$hli}WjwXEp~W7Kmi9=2?q}+s$M@ zn=7CJ8*kFygNTJC!K%H20z)GLKPg5t`aLb;f_%jLAbeqH$RgUc@7e_1h*J#Yb#X?S zCOhtkOryALQfqc-w{FNO?0iNkYGq%q+e<6OT0R6+yTU6xNuFFhqsMw>0zl*^>XkaF z(!20CSxZ_&?~$_^RqwPDtMcdVBpGmYCn+ml*g=^Ovo(=tc!uvC@UV=Os{RRnVs3@j zbBF3j%=1qpmqbMi*Nv+;lW&YKXC?TSJfLL9mYl@RC2DCF;w4qxT=2V%w37YY!z&bL zEuOJU=&5{qJv}2w-jT082I`sLX&hQ=umSr&HW)T%{{4Gg(_wCj${!L;DzTmKZ`hhh zqB`5-FB*(evo$**?|4ZBInzVKbh(!6O7BKj+s4xQ_FYhlJ$E*s(FOtEA#SqkQyfmf z=51DXo*A_hHER-1UjqeCGZEV;s*>$C*li(d;h%sE2sYnVHIr;bTD@lnop=Ps%Kx|8r+-Ij+rD?T!> zJA!(QIa`5BGBb-w7_N@TPHiJzJuKRoBc3r-rOPPu=f?&a@o?=UZOIxRZaN z@BVWbpuQk72H@{LqN(8_LDIFm?i`Ipv=18u<$ls&P`=wffC$yR(?F=b+vusi@!lGl z|5cv|_7iK*#WLs=Gf(ab5F9mEF!L&#KMt>G8l-ZzuuxVvnIOwmlWGxBU?*3M^weTgV9&*zdq=iU^SU@euv7936QOcFo31z7J@Y% zj7Nl*Sj}As*Dykh4)5Ij!d>11qt!VpUEQ0{Q8O$FfA`2(=@@?KeRF~6@ygK}Tz|K9 zuuz<4bE-XtkagHi>Q_o_ri7Lbc}P`-!?hB0c)d-mDz0Ng!SuBw6<-n7g))X4lry2# zWelYv^51_ls|-SFUwVI-eILnKpPw*NH*s8SF^LL#Y(v70bmtK6%@X*M_noyD;zP~P z)^ijZWg3VBovCZ@ex_<_L6`s$Yag})UgydB80%&*!O$8Us7lsPq3+#Xh?rh9$*i|3 zCVkejqoDh+X|ugmZh|+q$K@1+Wo~ANCp;+wQw>?at{li5oi5jm1Ly`c*j9Ewa)C36 zHRJtaqB*s&DZC`X{eVhD5sGaxJUAu8?-f@qa!HO>8_QE?OHt8F9g3eceT(4be3s_3 zN5y5)b1E2+-`70V3q1;v-%WQfO?TP6)~lOv{a}h$R}0CBxi6q0Xn=zYjJJkzCnzfU z%Xwa4hVki7Nbws@r>j(z`j%Q^QUaXkghvkGO3HZs{CgufN#a8E=K^XoAEU`FfOl&m z6FId9cIdD%AsyMoKSR{7Imie?f9Ben2z%%|axrdtK7hVn3KwQI!OZwO6&D*n**lbs z1F)2Q%gY-!69)@u__sG2eBLL>V!Gh%tjN^T?YPv#@NkH~oytGByl}*vfne*3iBy=l zW4P*5ypJp`Ek?yp>jBR!-TKu;bJ8A>X&uK>^VF%Pv@hY$k!pTwd>Xi9i_IUbeqG$! z-!8FKIwI&GhtS47)Dqud6v|Gw4z|=+y)6*|6O=uQ?_YEE=&UJYniAvrsiZ=~2it94 z=6n_Ymt{hh#b16hV=wo4Jj3wcu4%5f{}Q%AA0Ny&B6mS+ev@-U6hNCyfW-4J?-TKx zrfx6tB4X~%UJMwzSdv$Z*2**)$@@;6{8sZr7|E#3PUtzGr|%Ko6pCQ~0cc77CfUm2 zEf+6mqlwG8YHB8IEnntDA8p3C>SIHK6bFYMZq`YDgLq%Sm>4}KMraU}@FWa&q59v) zQ9kD|@xul{X;6BxFZ)wW_ajsNM5Nfd!!Uz&xMu@Zik3Dyu~3NYsYDzvI}KKs9u!DhlHeV@fogX!HmlNG^b)=b-K$Q z3_p@&@yy`ceiRU~I4wAEhr7kFzZb?!^=HIPSGcwQR{8P{xL<$d&4F>!k!Q;1u_1Tv z&I0X>61oTC!!{!h|ud6DxGR`S*Y?dIlsR6}_yFu&zT2Fz7eY%xV zvA#8iTmnwh_3E*XX=C;(fA6qs0@1CQb=lu1T1Jk4e$4-!qr%v4eD zW`VV--s-**S5=>tPZ|xee6X#9lj1T%97>bb(viuUElMZ4*qwBqKA8)qS~9YzCG(pft6+BryIpNp&B07A#GW8 z)@UxZUUVdpa0am3BzRtv+0ecv$Uc_CAv^gHNE!t!=+>}0_E&S!cA)ZRJ@XohpCs;O zABLREwPGgEs2to=-PLm3#Fj6(ts(0x8@mi-mS49AT{DO-Kg@RP&B-+lBkLUZ>AhAy zYYYHQUqxb*fRFLlIG4V)KSQ8T>#%;G@M7@ZQp=Q|GBA;s0zU}(|B~+cemd#7#VF{A z-Kf0z_iLa1wb?NbCXlscx8KkXgP4$$3A^k$W8eX{#f4^)4#*jJWPn&GuiZa z&-p*{NO#_qnj*OiM8|WIprG-b~d13Trcm3`=^iP{P{1 zWxoaCt2afMAQC7AEY};MEU|WgF>SY^=CaF(dpjw$+0I}0t2>U#Qt}X!pO4poRDoC% zR8aW7OoZTX$O>&z%h3pm?M^{xPWh{bU@Jj879qzPBdJ%ykL}3$cxdM4eL*3S9v`jJ z74(G~e25m@Y~XkOqk?BHJ^~(LZ}2`j*m8D`uc>rX$nls*EFnTODRz#Qn-aPLdtroc z9Fz~Kt9yf4La+<3pTgL}-|0NnS1$lZD(35Ot3MuUv`LT}fBnf#WJSOAJ7zFhvTG_EeCZWFY zx4^2m*861}Qf$wk8aDcrTx`=q)gHGid#urJ*seUWc2RUfrLOobrYNo>iTl7qm0Vh-4hCKp*ngx+q+X6@4(`6*NQ1ILPE`MEn*=wOzV^>(138}=sv zGuDN$SsD5#j+Bbx8DtCLr}*vargHN)7674}KsdVBgh1+-ZD2B; zAnY41A{npgE9tfR3^JltcVo~Lg-(5n$cGX>Px_a@&0EiOX}R?N+{K`TsWcM6vgN+S zu+-%>i;u7ba6sG3uNY3m+?nD4caaSqYbMY5;7Oi*gMWlM>VD3M-+DlcQKctPwdY8R zm`j})NFA#;KOmNUgu-oN>e838b}OH2$mWS0TYQP&e|cSyyyp;`Bmc2gga*xPG7N8W zogHIn=1JZzhQPPxM+P9Da@le>EeP6is|%Bn^(_I82a3WQ9zZ+SMF8c+Q_(Pn}$ zLCCS7{RS^Ia2^VU4Kt2*+Oo#g@4kT#_nyf56*0AWb`m zsj2Jnhd3l_9jEP*40=H#+F;xxP(uAZjjr@EMO55l1znr3Q+!g|shyR>B~90TFW!;& zb4Dd!t-cW~JRLp%L(eowc>Vs`q1aa|T+jFZH#KuN!~Jf`1G|^S`W88@V%ux*pJ)D# zjX=NEzJ%?l%k$k@H10~t)4$-ickUWq-VbWJmk)vJ^IK6m!QA1EeXizLoBrzV?mU@uK~bdk ztNpGMRX>T*=pn!#Vc-nqpX7u(T*>5HLc8Vnz^Y4oyjZ0g88)f<8eoxE{159!nbOTO zHoV})jM;%wYGVLCL^$-h*s(76JzNiv%IrT7MBi$wv6Ht8H0)qB*hw>a({t*0S zCSxWVN>(g0U;(+>6s=G?Cj*T{Tj98r4*Efkf^)U(Y>0yh|Bw#|s!C zj~pC8wyNBW@LI-SW3q&w^^wa=8jlEm;%>+4W9M0Iq+Rwz1{3Ydks1jIIoWC}=T-^p z+au>MH2huj+&eed#TLE60VH+m>R6~xf9dnhu`e%yw*dBw&GRq6-tia-Ecmy8#ji5O zV^365FVZ;(j_Z0eoUQx1#}LcjNJ|G-DsVpKKeJ7q*-bZR?GDBSYKgJh>Lklm*s)9v z#flFB=jVhs(XB(;I$Ab{@s_9HY-zsBp6GpLE)aB1*Zw;*O$ox7h%Vj?)XgxU^x7#_ zqkyp_C(I4*h3*JOi#N++*;@*{C#p8)Aj+%Mw=#zy;%)n84|AxBsqtZ~<~)3VRc9&8 z!JAT|k24wWr~HpGDyn&=b6|^@rNwkAJK5t+)$?U3R(OvE z{U+kOl(~?pSM$XCh-)ZlDKO%1^qb4*$z!N6f~ui+FEl}2ZhMi1IQthgY2p|!{I8RmdBHE=sOL<0pCfE_?K;&g zO7w7yN4?@hPRa(+=9lHf=iK{`S%DQU9S#f|jlPvmlU*1)Bx!L&p2{Eg=k%=?z*wb= zy;X^MRcD=28B8hjZ|W9%+R5eP0K$Fx$s=qW24iOLd!|>d=|Hn=zWJR-qGM8D0B4mh z_&_tiaQmc}dH*X(0dal`Vbv>5PpJl9L%gEbZO54#Hhg;Q_s?|y?*@kHPW!141Woc!jU;ytMTUI0M&wLsPG&0ITzPR}7cW z?)N$6^Ib=>w+@V1z#tx^ozy>r7(55auw+|3j}_c?8vJltUC4Z^Q|j{*rpS(%ev>?Q zuh-^5Ag!>Vl_QO!U!Il7o>oIg(JlH+E4GV)W<4o@9$dYu!Gd?1 z!_L=X*m;CA8~}CHTG$WF^8(5T678Xj+4Rw%w!Q_~Pe#I<^O8h^W{zFoOceunJ0HoE z5WdwM-~#Ni1t=r;)~tM{Au9Z)nc}#yjdgqjYpRaz{LPkY!!0#G14{@cGqAvlo;P26+!sb&lwBS3m~U%Kku%DPd7$;z z4;;#TDNqwPI!yjDro&qwPf>Epj5u8dY!mZvuQFdqwCs>Z}N2WSk=Y0)poC^-LdiAYPbOHG%3LzHL}7ubm`mUU!u(LS5T0!g%9!pD}4+P z=r(d4?DvR7zNcU3sp@VUEpN_cwhC)2JRuv~ot*3i32Um@gMH zP1K9$+vfDDRLt zE*SZj^SYVx=84;yM0wHH0%e~YI9_lzAb6}D67Uzo(&Mxan*D>Y`YYn|ZM-4(I0n<;cg=1Fa1cpA1cVfe z8e2&E#vNgwot#`1?-=fbwgyW6OWM;>}O@ zzoqL>W<3e@xEb*8`uUs6pP|~Y`kDj^xqXigEadE2$C}B+RCq|KSN?ymw3bH?V*InT zd<%)d3{ZSK8qa=}yiuVtyDpAgD9xjm$m-|?Zu`@zI+^!3a*RUDd-~r4gTDg(*Nat< zm3$>Qf7#UMVK!W+#ZfhAq&Fhas&VB-Q#L6 z2*?Pri6I}y+-l$vr$9}u#P;EU#~s@*7dD%2_^D1@*|TwAId_hD7vr-PAEC0#FLm6g ztoyDc9G2YsvCH6(AKOv?8 zg}{1dw|*$stI-DK6Gbs=b^7o4&S(*an+4awlE2(=?!ZL~yh!IZ{l6hlQJGIEXg0fljT1+{$-;L>Gg9Pp6bveSIJp^|9X&9C!D#_ z!J^x*y=c!JivEOOB4jp)!*BWos4T9QinCVZ*Pyh`nYDBy@_Ss(Eld@Uw9us+HYxnS zLAtP37?3B@Ap7S*$BSGv1?iabDVt`sOSGGW&0@&pI9*Mr8!AQ*wZ;Qi4YAG}cM-6= z73`*T3%e(^{ICR5igv@aB(gLHB)bl>ENcxpihdHX5d3xGU098AgR`-;VPZxdXI|F| z@NZGLrnk5kdMF+B=&L^Qe)Bt`a~%^)-y&obUv4zfnuu@;u5UOvfR5;=m=5D)=1uAFdO@Q z4(ZEw;DmDnOqc6Z#DB!8xgS^SwB+8xU?)n4?#h$9POvuv)m^>&O9p{8Jy7z zn|HYHL!Yq)_F%FL5K9L+cWMJSqpvcT0x~<_4{seple8ijj8TligGREzFc`^?pC}2PW8~gFVSq^l)LRhUba5#xc=*d2me0v$-?Fk7%w#yrLGSfX3y#a zul;!Uz+~eg7SJEuBfB$V9KEZ0)9TbU@kIBs8Cx*p04LFMO{d``^h{4emZm-X=_w2y zdLsA$v1!zA0A7B#jd)kjLUA&O$e<2{YGEui2%muKPjeC=u^=~k>PLJ!)E{7M&Z1f}_ zp?WK2?8WCLF3Y$P6*+qwraEC!^q7e;UL9`DYD3PDl zV)Sf1yyq5;!JOYIm@l-Ow^<4i z(~vxH_h_=@2emh9bD_xxsHz%KKk<=&{hIiwED`XtUDLJ>Spg|Swit|@tHn`9-aK%#n?y19#aoM3Ek zc7nEV@C@rCppxRoL;ht>!&9n7S@_ZxyLMRMAw5!2xXohDmD*51hkMWWC6({~d;nmf z5v%gXmtgejp|b|lyp4S3xK4PU+_ajd@eS>h%U%7;muZwIW`%P}+F?)3%~J0*P&SDw zf7*WIS&pN;!h+Ja%{3>bC-o3xaiV>y8!Ig#k4p-Z;@(kYhlWx2$RQ{@aPYr8M(>6v zxiRl^aNkSjqvNVuvO{r)4|vCq{0&D2k_T2wnXPP^PkFG^d*?Q0)MTBH1~-X z^AUgFuaecj5ER5D8!%w`*pN>6P0a%$*^JvxCHCe5!8 z20#f4Ebm>gQ?!i!ysch=&qBJXsk}qSGbC<;Yg-jZ6@Kl#eTD`B$!p9}*zSm3H2I@^ z`1{^UJ`7g7LsVhehLQG!(sQqv4FP2SFeRLD z2sPK^-R~}R729Dk&l)sj?xb(tcuAJIXvFDQn8dFt@LyKT zTS`FZ#Ua#BzM+TWQAgye$oRoGIhpck<$G25$Ahe|5JTKa$^oLTi`F7PD zn_2uBBKW}37}P=VtXDS7y^Gt)=_Qqm>m9ZFkxgHH4M#pGDtz)fKD;un3~`?T1uQaE z1F*!eeHdrCIej*QF+NvOUCC7AkAIF%nu$@7QD{{+Hb>cQW1DuoSS#-#?S?1=ZJ&JB zMXX6kvQt1!52nZL##F=2U#g$fZ`MDlYazVpewP#?)TMsbz(J9O!;9IX`3esw(8k|` z8|J$s<-fv#Cz8H8*!Z`Zi(X0Y#=dinr_Mys@PFsXnk@kFdJ|U|+it$$ZO!W6%NpW* z6$h6d#dllzMK^5Tsp`yA+g?lBtV=AulIa41$i`*+>`$9&@Jk84e7%xw!7(1Qu1{W4 z-m68*s@)iu{pHJk6V`quWHx)FI>o%V0%Lq1ep2C-(T6W$V%@C{5dv!xbVkQcu;xn3 zz_`G*ZLLYy=e4Z%jwh{$d5kGe=?$mYrHndA*bv|H?1Dk3<*~X7?kRj}s`pG~XUc4Z zlQbO!nVbgj_U3A0d7S(gI5F-_<#_~S=;#CS= zc>Xkj7DttPk}V8zIG_zUmOwCCR|JO$`03stO1`cO@pYUHc(7KmBH}DvE#A9~P3nO( z#~%-z59;me7;rH>Bbx@2AP!wf}J|G$U}|4b>~U-EuHs8hNAbr zQ?8+io%W=-zS%kdvT#D_r(pYYl6~IP{J9?-`@gbWt5K7=)aI-|2yc|{BCR-WOLzOA z6OAqUGHr#yL4Bb+-N@nyPrq+6@l;-jM>kyXrtQUqbX@7Kq-CwK)$D`tj*tCX)6F-U zP@%ip-CUK;vFRuzD8b}DA)c#5#7mlv1$)8YD%p67^bCoGhaqccsT(49oZfrP-Gb%{ z)?|CYQC}C=x(Z|f*262Ed5>b`NwOTQgL`F?3@WE?mqMDGZk$jnC-KagNa<^g(x{!) zu=^X;Y2Y)ii`)q5iZ&lBIxV|lE*)e+R=4&kXR8?Mj@N|W<4D9@PV7zb1_PyzZ-5Oyo)qY8ORKJIwh|& z>iZc^F}vNkUg@=2zGWpG!5nTMesu^OXL+L|w*cv^mH-hwZ4Yi8@e5sy)bf{nl}>r( zru21rR5ZOk-3nePkX4&`)PJ~rtAw(s(6{-rqUnvAOd5kLRFSk(BgV|v$LkAb{w#Qr zR15uMl|ku6>DFw$$8`uM7ElkGm#+I6_}Rx^?fVkE(Su*X_*j=+*gNVV{M~`KJv8{- zXpNi}B$6ye4KAZh9X-xY-%SP)WxCjow)U$aQW2MQjRI3&M(xxWEq$CTj&mAs#2?|9 z-AFm0@X04e*-D&5EVn`Ph6Re7vo<(FO;ds2xE_!6hu8pvK7#NH89vZw*(^3@EKDx* z>-)AY-q!K&)Mc8lRwvm4dWgPR{S;DrHQ71Rk9$fl1rK;Q#AnV4R+?v1%@j1BuS;JD zJ;CGb9$UB=4W>mOh2Vayh56khaqf*Qse{K3DS;$y7MN7d-l34>nYU`8f1#$&ftV(^ zm3ly8FR@UDy};eE+GeJd&M9ss^8mzM{$A!DK_70({E%7M&*5)}KiUqdJ)SMOW*7FJc%s@0!%eV%*5lD;y=jS~dPau+m#i)4 zno}`3Fi2do@Nt1eO$VQ;*}4pmR0+6iB|4;tz%YmF?Rt0RhhhoX*>pAb&!)7T-%VBF z&Hje1{6ho8(mbDV__|A6HQJm$edu=%=hdOygn`=*^3wijOxWT_@hM2Rsk#Z_tf76% zQ66zFf@K@w_vzJTiRHzHA`EcHsawx{G_B$T)u>dPuZsW z-9M!Gu&7>g%!u;_H!pa+N82vU2v!`%DV8|5F}0eZk6JX3>5_O1s~Nat9j38{3!NjdJRf!GJcWZ02DIu2JWrZPRk z8t-q{*$A|2I}}k5*l!DvirEP0`W}4$XM_-0IF{W;_)*t{T)5=Uyh{_GG9i@Fmql-` z6snjsg9y{@)auzPnLB03d{NLD=^ti-bkUIz49W-woyin@X%sJHELF~Ly34+dC4PrC z7Zkd#WuKlh@-tk<5`g25^9PrDQ)k?LH=Gb-XBW$T+;m8Lg-d#f`+?Nrht*35qpa^{ z+{1>Hk9~`rOocK>Vrnb529|Q(moBB|n=WtgQ{`^!os||9_1L1O`6SV5X;?<+g^VCB z(|BP%gt6Fp!T90mtotoO#as}j-~{e)o8iDt%&yR&Y z%CSfJ-Dz_{`y~0~$D3oz^w7100y9=W$4PpYZ|q(3TV7m2C9bT+L?9SbjG<~8CpiZR zhDO?DNq+1vs^2c6YWwo9u-~b~G*pU(&(iqON~$kNBTet(X`#U%*d4M52A1Sft`bP@ z#%b!$9Q1Nf~hT(d;IOcH~JlaKX8m76nZt?m1U7D&YWT=U+) z9|jA2<85j)9yS-dfq1t@vavQ)m`+%5vy+9<0}F&l-!L;|Go6A9^|{$s$7g%T#_8lM zn0(N+B9-Lg@-8=A=xopTF3|w?n^L~5PTDYyBA(LXknN1yNe6*Oy z8*aLRRAnNkm$+N(Az~3e?128v-M-4^O*aiqkoaJz$2oR3u68-&Pu07Q^3euZUTtdp zI~F_&pG5@+cArR=X;q2JuA|wn7bqsChJnj`ceNDqn26DWabDMkd3O93d{X}4R|T)e z7WuCb_u$RPP)*78+l9+mA7^ggYGbbL*1->&kj|pY7C-DVy`rceo#&S481A+w^q|z% z@pZ*l8KqE4I63s@Laayq<2~tjo4hpK-mxLQ*I+#iaLfGHTAz4hDz3sv19jQtF;!#(Qt8YEtD`yKw-R4 zo;b~KBR|Jl4v0UC%*ri}@^Hdl&EH4Pxk;xm;MF{%LLZ&Y%Efl*+3Nj!Y*2#USbncI z6CkR8=WR6_O5DXtUjAjMTZ;gvp`ytB&n?XN}^F}RKf0ReN&N+yGL}Th))Xqe! zs5HNuh%|sOhx?-fUGfEcSqV`z26tF^xg1)K8R%8SEh;FTyTLi{%PP&T$7)H8De=G2 zb8BY5wS7kV*`o*^`PCDx#-TNxjD9KCBjVtR0Q@9n%S25c-RWLjjlL&_^?4V;@9`j< zH)!UK3G;8WC1cT4Qc+Z#Ynmtrn30T&)Kh^cZ@NaPuwmy3)t7x;rRMY@)NG@!|nZYW2djg8f<>bCm8{epdCjhKv7-jN9>M zYO~Eoedry_@~y8GYk8|4B|W(v!%m`@(gc{k$fJp+irVtsgG!0Un<#^{vk(hNZP zcZ!#K)!Hvh?|2)mG)C}9-AH-UQh*^}M6AD4^3f{<(Jl*r88Rbu(l(OB&Ljs4&h*V% z;g<&$sK)mOkgN6V&DkI>Mqz?*0y{~7b0ARcoOk?F6|(59+Uk>Mtok)8C0&CGS1M~y z3SiH&pR-wZi|WN6H;=;=Mo5kiSdhokz%p;=LaS|UO&ZL8PtK>a*1YEL#5;C4{$zdy zBOh$(Df&t6VrH0&0cU_2>BqiG(K(h-&Oe~|P0`x3@abK6DHjuA&%~AgEV1NSdoYnd zM{WPfHc1^sN?K$S%ou>9SzI($g+0lXXtUTCQiQibf;II)Y^wap;cAYy{3WKdLne$c z;927VhXF69M)O2j3v8Il93D?4jWF~Tw@T|fr0sfQpD7!mKKg%D%H~#rf&7j_Il1@P zu;X1SUHS@yJChN$j4in`Pl2pv{JBlHU;XkPiCxox?DTkFr0>-HwDSAn<@`VW0;bc= zf9E~V=zvMugE<4kH;QYP-ro(Y$Onf`W>;=+%!~C&JM6b>Xm7@IxYjKuMX?Rv^q_pD1un5GnB?pi`x1ikGt|+-!l=83%FA? zc?LbL_kKXtL;pt2*SV&62XyPO z@pI1qYEgFh_C4qp_+zSAG1RkH6>Plfbt;A5?9Y;RKcO&I`XY(ZE^E2BQO7+K@q%FS z@ihKj447bmf03>RpG=&I%EzJd6+@Q;+(xM(%QsRuE&Q=N-iC{7;pMV!|KKx=reRwv z;dFe#S+>J%-!h8um|JMTckunvkISp5q9{`WH0ru>sXqO$^-U^7tcv@^2&7_slU` zR`UV#H2xKC)8UG`0Bk#yv#T$JKA6#-x&%cp9x3t%H}%>oW0O9D<80wt@8Q^N7&smS z?gX`MAL+7BhfKEjOUvRU=N3ycAZZ~To|lF0QLuqgj#H@64I#NB>5P1p=j|dNm;IfA z(wrUe^oYGKk-ijq4ev&1{ZkI54=$8D;mBobFpEcih8yAO;=}%b$yL`qSzIHY-sWto ztU0HxxH`>A>?n~Q)AQz>Lxrre>lDAJf{3el#1kIjr-%2K&EibTL-I8^IT3ZoG%OC} z&AnCw&CvpMnj{2UmZ@8d|hunP-MbRl@j ztXK&uG}6cvMmN<`^ZpF{6vn5v=p!cs1xuI|R@SMdpvyaXOTMuYmuo7!e$Cve;Cyn+vOXI-_YBcCL0%(L=m-M11UhNRRA|rcy0R7`pAz z7A!`!1|hq|mq*OY$A<&sjwCSMg)nsv+>^Rl6X%+s2jr*B z!u%(E=$x2v>zADllKE;bA|A*nZDaJ_6jm*y>;H;;P~I7Z*vvLx7$gYm6n0Jzt*up5 zq{DFi*B#xo6~V-R^0t72a2UPa>WFDjfns|QpeGaq;&S}Edi!hEF^2lHB~1cKqHJM&$RUGG+`uwj*VCruX(QbxqF`3=9~w?fbO4J#VPQjT zb`l*^#Si#4i$Pxe7qL=SY+uGHz`o$NuXAA>EDj0hC+4}Vn5mka>@!CX9^*laOOGdD z;@gRhErCGD(Sz1f0(iG$u~DxR`2L4fI{k4U8dfgo(rCk*q*nW#?4nd|gzuu%x_GiR z9JO8WFAgZ}Htn;wb|E%C(d-*6jw>%07^5X%vvGKuRaqMWtW2?XA5%!rVa!oBs=@B) z1qU3|Wf=yA5|1+o`Iczx44Ik}aKEE9hmLVk!`w|CCjM!_J~hx?*1$F|t?wM_>&hZ5 zEnwL3rkL}Rhi`MJKx$!4y@1j4qCl}aEAWA7&ML4~^hia``Z~8vT@mc1oqL5ImlnXS z|MNDk2v641149!nQc4M=L{Qt{_(!uB>)u#@gO$}QSI%flh{;u16lwT{d`m;iGm9;Z z#EGRSUZ`=uz!rN%{%a)07AudUtVunU=aPJqy_zNK$)pAdhi#u#?!+$E=4ALKXoJ4q2K+)p=*=#*uA0e!^ zvDICkJQ^G$<)3B0RY?#&&Vq|Ad^2Dv%}4NYe&Eid4r&0zRQ8xx$p*s0R@Y4+iG093 z?dl)k@l^Z_u`I7v;ocDW?#{K!wf@t9p{I2&@t*RpAGv_bL6 z}EOhD<|H#fZ>Zx!3EATFJS%YHq?ntNNqI>KQq8QR-VNSb~rCLRTt6=T@d zLd>mX(^yNOd=&6oQx$Jganb}3fvIr_>RFU?Zycb_) z16aFo>w`VIw{Fm8em!CG7pYpyt*0U{zgll(h&FnJKiJPhiJ3;lmfj&g z3h3dtZE~$p>|qDvOvlBaA=-ViI95XJ<%b&PA@?NzLH#qi_7@HU$3H>^5`8eM!UN_v z*yu!Re{~^&B2nH|xhV41dC;2>NYd%*ATnA^7GLN4CHI&q>hqaeY1c^fYop!AWdYo7Uk9I73B=c(&E7I4UA2GsP9Ys z-^h!-Wer9g)1ASEYCjA`r5MQVBy<|m6cfQ^S8vlw(5D-0t#Ry+?=8JC-U!cSXSLe{ zu#b{D#dB^HFSZ#6Rm&H=e(NVb*%0BmnWsO@~0V9pQaotCR8rG$&CcoM$b) zNl}hFWW_Th-m4*F=b+{|rTG56`Jq{QU2L+c!$9$q(th(XZ4zVs4ypLBz zTfo!lm~^GU@#J-zX)*ZAYfT5R6z03A+gB8o9}jO`=8uTi;{z=;N&MTS4&F@<4EXLT z#}tY+E>yzBq;qtw@!ye+`w{X^qj4-DY$?2*3qRV0K5W9c8!>@8m*6@8Xm@oU76FT1 zLTx2@Un;-3j_U~@`;cslrkpNDA*3i8HDrZTz8w`dgD6 z1&=MME#jvvolNV8fy4!=kP6<0k1f1pBa~CsTZ#YvJyMaLfr6MQt+q^Ly*|xvArq#@Cx+Wv^9`B>Z7ssHQT02^G!flT&&GuyX`4H zFvWosw2AYkM3(!hnD>14XRnUaTs^^oHs!;Ijo)IP8vRhn)CQQOA~pV*i@uB&t&Jlt zJ|3qf(X{$7XqnZ0?cGhp>u?I`C?=2T_I;NJ5oYyY}E9MwQGpGPlB?Ha@e z+G&Hy^%dRt0auGT z(n8uTNeQX=18N9);~dTJZe2>|an5ekabI2{oM>utFnYGboOq>GHT}2otuX;ZRB2Wv z`Nax9yFPh54&iEzgRI!!E+Qxq0jSv!>$yzmckK%M8ngMd5L?N{ruM{Y zDaiiSFIIk4b_6$*-*k05KQ>LBEXscJC`O20*Cv4s;q0qG zc0u^Pd}1<)v}PJORLcl&JbqhdeSt^~CSd{`e_Ubc>lK9Vh zBEwk)fvXHP(8nyB-XgZ9CX;YpxxD!(=iiKDSa^4A1j?DJRveeDLhe>9)+jYKB(+wr z0ZK=y#L|9!JnE)XNu$b9$&g3h}nXHvCX13r_z~?XLs{o^&!?TrCaRJ zop&6i2Ft2$*6JvsLsk>$M1XolAwgk7eQ(?1<$A|I5bfMdctI+v`El;yr%i$hOtdLIB|OYEizpp%LPZ%w|fTzPJ%v{R>`)(Du-XKGmm zzT^AVZjF@>_{JhofzHn6fMK&jn|g{EcyJn=6w0VAlwG+p3;pidm1c~&xcEfedW!zD ze6|E>|FKlup01AA9F2Kbv)Vh*_@3%}DAiREBY)qZ1}8v+;=uBLA$l;XU?HXHd zGcqFcL~8aYYmO9yo0l(r(9d*^#Ias4J#JU;+Czd)Pgvh&8wtmgJ;s8=b7-=bSiQX) z#H-jsz7KVvpGVd+weQfECkOS`+c_twkrwyHYL&%r?Xm$8)cZ0<)~(!Wl~WtkYh}J1 zx-}d!=$~UATpNKA&Or=i9(NFT`xyC-39fB|;4}5bX0NnYX?k7w`t!xDPl3XLM zS%~ke-B$UI-w&nW6um|+P?=ZJKO(%C!(F$p#13yQRxC9c5znUW8Ynp7cQ9&`bCl6k z?h+t>QePyGY>Kqn2?)Ek)PjK@e8{@bdtAE!f0&ACntzBuu$Er>190n6yr_#Qji z0CdTfBabC6bDH|qE8p5Y)`}?s;zOiXO&Kq2)E6(F3t}rGR0mfY?M~Yh>eTBYEy-pW~fRtWrfu45AacA^ZaUB!DAKAB)p`>p!ce%rS zh5N74JREFVgmFX{`0CQY=Ygo3Y8vL#69leZ4G82HdW%+jYUya$sz=(xLdTAN{EB?9 z?m&jx+(y;g`Q#-XbVzvsR*X#uKm3E?HMtYD996_Yf`WM;@7RcZtUny|%(&^70o&Vr z#Q4rBy>g~FP{k;l#y2xR{{74C%pH1f&%VUlw z;KvySUS(>Gq_WkIr&DCk-cnf9;x31K4PJv%y}ZkUnCqNuWCy^E=WMCxvDt=3_q#(k zqhC@Gi=v~2m>0qxNrsbDqDu7rFHVy ztfw6_^jh*G>(FgUsEdXpavLw+$Ne5OY<)37r@!ePzU8=P5D96%)c6g&`~($z`trsI z)Y5r!d|#}$X~^S6=MbmSUpuwHXst)z18ijrU1&(=`^7ka*8(ZKq zk8jmqsTG>%{@VmM37%{0y{L;F2x<3WYTEPDjBrc!1^9Las}|`>=33&@dwYk6LL~+D zJ0;}M+to7>3kfxDtRUl#)i&s$f6e*hH(a~gb8?L=yw8yQ)pU#sn>>9^`w!PU`Tym8 zFe+Co-a2SwkS{iS$f*_$8zHSsJ(|eBVvpQ!M~L+&I&N<7|3%W?bXwAim!8s9rtLq5kJu#21R*kUS)G%Bvfw+|k0Qr!5H z^gXOddlnk47|ZL58Tm(%vr)Xm{9{|P7?kQ5G6TK+)Yv%iDPw~FboSG!!e`LxmDQzp zMq%&dwnr$Z(+XthvP@ZHyOw%es&uUj-m1`SZqqtwlxPe-;w8}tycc!ZfHO#bW5Z@( z+JDBl(;)GOOg@hcmEK|Qie17HLMab8G{thtwM%xnrc4ai0y)U&h2Hg1StiI}b4|~)##Cb|lP*|nT(}CB{+)qm zYd6uirRz}LU%-BAXD^|GIp4?@z01?91%wtDgrLctT2mY%HeJ}uJn|bnP@v_a`_Lb9 zqXVrC`G>{a3t&FeB(hnX+5p$%MgqW>W8gyi}R3`sfIYCc$ zF?_nE_%B7G92L#XvTX7=O;a!bBYu2|5O?QPpJA97fb+V$ zPNXPhyO&Nlw%vovospQ=5ql-s^V1UZgSRAS6PT2danfbfETd%a*ca1_&I{|$EN+7_ zF|k+J`!!+X9?c~S<|(bqI#<~@b^{w|s$OB(X;fm5-X%5|jhEg<+KAj!qZ~byYr$w!Gt2`bB79>jcqV9j~Bm7{s)p#$~ zL0;DX$cyDJlEtWg+A7W48aXcMx~Po%yQXWb6fpO(91)UFQe5W=B;vUR29IG@PAuRk zwu-+?(;nImpb7XyOsY8FLSotX*5y<&T}4J?y&5P)5I_#G*N!?JNFE+ZxyY$3o^YO)p=3h8bO+(kq90Ys z$ZCNqtYz`ruTPcz#|8j%zL>lxYYF)Pz8*CaHf*DzfnHip)qHf_(bddteWQ;v>2;BF zJ?!)E!DTb_u&tTOnfWT95k$ruwb>Z5?bn>QLvMQAoh$2eV>GB*r96%FBMSM)9=b>l z@ewHU1=;sD3UMU|Ke|V=aUpC+K60>lA#}Y8Bb#uXw9&4-wd)r-n7AXKn6l4m9o%_m z6tAL>(~@YmFBm>>3m$#C^hJ|(|B)&4+^PH`4{Q%C9`Kk^J80lZ{R8==_m80YL8%Z- zHyB&(L)YFw%t(pf(vhF0n#b%jtSt&~uuE>C&Ho}lJ%xLS`AG5ZT==dI%}ef|po&KS zn2$nIWTEvFEtM=$ic#odC%EQ`-@F4US>f_NtNU5gWB+?dIQCv6XPz0b=nTOBy;e^hQvU zxlS^C>1oGU zqLP#JKv?(JtKTma9KU!vywXb3FGD6aUwP#Ci#8bcn|#cXWqu;xGMm3R{v8=61F}M* z5C;vaYb1yLjF5#!X5^33I$QYuAb4<4z6o|Bt>#W(+&wpkhch)5O;u`P-t`0PUrE9` z(oR9M%A@a-6PD0d+7W}c!IKB0bPlOmOaH+ZFP-p8=mrF?zpfn&o;mZ`Iq^y21T)u~ z@B*YEkaUmtvDQ|Dv7MNA7XxY%Z3YTzUHganpjl`BkAF&E%6Ue7c`GkvuHC{^xJLDh zC3INo8(N6RL=`{#MXQlk6qY(M@F8o%qGs8$Blzb&w-DUY=+rb2lmS>ZNq%EYPxiE) zBG9RUq>Kl%F-rp_WYGFhfZy!S^R2P8WR`9+gxcNoTgQ~J9i4T+YOV|u6kcaB507M> z@JXj!X_hCO5;M|4h{f1O0~P5&1oc;pQM*Aua^Fpde=?w^u&Ul zN4H!(u<7`8V1_VENX1&N6}cT_4N6K+P~p z+iwz+A=!*@Y zbx`LN_Q)Kd@XD~%P(Tz!tSy!y`?wqx7oVKVx`U`wtJwG}pojlOLYLc!oW7kv zhs?eXt@hCc5eYgz;i?`PsM08CYK9;C>j_G@iLkD#HZI(NqF2qhgGiqIr~!HC_XF`n z{0*bj|Fm5I1q?=qZ(Cj6k@9PzcQ`*0MO`$*AJz5kqD-@2s-6B<;%0}Bs_ z9}1@tTfY^4UT)?4=M`lAGN*)=dd#jrPkk`qlh3%g9%RIfslFuneZaAL?CbLHFbzvb zr&~|I1RegwezH&f@s1|?!BywU!4DyO47c|~SDnv{v~;0&rt^0xWg6VvcvTmn2CuC4 z4SIUeadzXzt)F_m;gYF&hkRbxwr*KV$upjQX2w4v07%(rbOs^qt@j<|BnKNVM?#Qo zXPb}U?!?-FzKEt!Bc94eC%Ai*S45|EtI49Veda{cu1FGVf6I0z)`})Q1lkwacr7x^ zJgYJ%svB^iTYb9EpVZ#B*?F2d_?*#qVvFv+Hz?DoViR1^R>}A8IxUQ+n=5x!3d3GG zdi%P)LO%0~ODLC2#sB4%UU6f3GKvJLEr)whP*jL+e}j_l^!B^;?~rPrV@# zFHiQC6k2RTDH|7|Wq_dnCbm-kXI#G>?9jj*lT;nhabQWNMlR&*l4c!+-)&j?Y`W=D zh<35_`mq<)H>!eG4TmCUu)hrWF>F$KTfS{gm>-dSHiF8qVyN1P6-duhz~K#aa{ z98;Bsom0mN_3|X*DelHAH4Yu=e+u*lg^MI(;pS7Wj5+ ztAo*9cB{*Xv#V-Wtfd}ntk27!uHjbcoFTFkLRwAl4Q2GdiV~V@QE=aFNpX290|t4* z2JvTizr)e=8fIOW_n6n9CHVew@Jtj;U2AgiQ-q=^*rEHb5lwg`kE50WqwFm?z+-9D zuAGPBR|_OP9P%r5t>>gx&e;GD7ncck3qj3QR}a@zrx^M>FhF<{mx)c0@UP&L>*_;J zy{(w{@DM~R=8>*Jx!FaszXqHlu;BEntYJ&iKnR+2r^PeL6D*v|z zI2awD>GOzm7*JA37|3Nnge#kFI-@Do0lV$CqCovQF9UlUB9b{jS$kq-F#GAADVh&m z#pSm?kn`MvG@TxLKOV_Sl+}wD%!oe?SJ2$^D3#4c7`V62_;RTvBT_R85-8H=X*g%8 zFNO@=0nU+WxhN_>i_ZSGH%wye%~&?GHd&PhW3QelgsnB+kEK9L%T9^SNM^pVu{cs# zwurII<+324U=iQx_ON{8B!S#)sz{u^**``s`sm|Tn+odPQ9sV#GQERWqSjpChOwhp zJl1~y`hWPv>`yBimb8AM>777>^BeDWvem*WtC~MH*r}Nxfe#OU^}MyTVrn1u?VNsX zQ@WV zfqlv71nS^^WX`uf@$QgwQQ|666Pyv5IB zR2b_ap9_la=|jig|E`o_1!n4z7jqUk-?%;?bkNs}czJU;bob^JfgQE)aR+&^lmDQB z+v@i%;k)O%;=gk7-^y|x)iwfBCWowlb!ucLj81=0fX`LKx382slawwtA(8S+ z89}lT{6gGAkCkMTTk!wy1@NqmEdpV6K?|QR<<|@ezT@@S+6cIH%BzZNA5YhU_8rx) zu>F5by?0cT=O6!Fi%Km5S`<)5RI0R!M4;@D)S^c>=WsYA_qp!t`dsh#>jlD>W539l zA9%&K)8a0&s#eGblKM9L$qO`D&I{`QmRYl!OxSF6MRf*K1{&O(*#<+##ZWuhBLwqn zd}`9vkhVrL!^qLph~XJ{DXMc_(cG`&h8seEc@JFf>H=}Qs) z{3hM=7UF$snpEuh^j;=-cjD6d(_7QSp$MUlit_xaZ>GFoqI)b4jxA+`hGh}%`L6f_ zQIAvcSxr5%N(oI+Khy#yhF_4_HDid8DBN$*>+`y1RhS8V&vtsBkMwZ2UGT~=^463G zworm6adr5Xug~1%-rQJDaF{5F?@q{Y_HFs};=T9#K#ON_?nPQaz0mDg=Z)X;zwK(l zCsdmMt13AseCPVl>_;x$9gKP0gZz4ShV+(!*{RU1MY++H!hcGoxwzI!3|?b5nyZqw z?gW9+pv~!8~Sz5XY{Ko_CU#&8PeD?Uo`C z%m4oNK$K_+Kmm&SvPrG0s;5_{BLAfyjn78gWEG<4fkjSd zW4O8bGseiWT2OG%IoB~UuS>_IC_Mr@62`=v&?Le+KbHtDi{;1nY}Yy6nZlCP8uL?e znOl?AFGObWk^;Sj|E~WAE*-L}T)7kA(4^G@uDmn+ND8@9L7%EdWH=-E9dv|$cFi?f z@F(eS%$NZH3hXsgJ) zqfAi_>bP;$yWjzm`RLBWEag>8Um(P(WlEi$FaUNT-#NBJh}`&i4@%UEMuo-TapGOCuBu);A=O z@Q#bv`Uy;AG|t((|D=<{3Mp(Vp|gGmRFA-sYO|8>Q4}2{ZUDKpbWs))w*2o0Z1116 z>z1FqL6}Q)>H9Ctz2BfWzVCnC%-U0D=7+Pl7^wBCk>E>JqKy$eJPW@*?8$ApmtS~8 z(`H*Pgq@m2Rk4EOQJmfI2Y+FN-DMI>&fPZDu|_(`+mLXA!72JouzS7R@*V1j(7|F$a$#+a_xM;%g4VyG^XbEz_JA@4D6FY+_qbLru%X#~%SCkEE z!fv#=1t5?NL8jnwlEVlE9j z@yA*U0WWnXpDbqHUODE)>7zbvObmKzQbPaMZ(|49ew$=3YD2dji!Gt@lWZp(9cU&W zz3eJl<(q?5^h5kXeJv(YD5K0*t7&T8?toSX%x{$9YZx=16x6O$5Prvg2Ym@uJM89m zv$%@B+;x>hBFZ& zay?j&wx_>zFWolYf9V0xE7p2Gc|tuYeQ4{gX!f6F^@#qn0X5dP`YmU}<}K-moY8eT zcZ`N0PjVC8C$SVQuP-f!lP}R*i@|i*Ho~E$ljGZB%iHc|VH>kmc5V%M;sV1U&53A- z0uxlCYv4dP0?3r^vQynM-gP-sAqDguo|<92ktpR zMDJnrRI91+0sL`po5?SOokMXNuLRyO8xoCbNwahazZ--P?kw}niEQmUzTqAK z6m*d13YC>VPhshwb4lxa4zaNMzlvDj-&u%Gu-=;&=KdHTY*LQ&uPf<+1p2>q)FJzS zCMNnAPuz6rCS^Y1%%kyr_E>pbwkWnIq>*b?e*88yXIZ?VN-bAhNs&DBC#*L0##jXZ zV7r=6a&aSNTLsiY9XS}yg_)|L`ig8BcsFMRG4Xq=zpkS1ia*e%xUl45a3b{Y%A+8l z7ZMn>Y=-6omJim+_op+|t&$iNN<*%``+7eFT@sa`dS~#xl8z|?i+@%ssUM>JA%I*( zgLXIO1yKxR2xE8cIh*TeJ^1a&ct`zM;N@B=9jN$ZQqtT48Ed|Ffu0a0>=IgnvsiDE}ev% zq4J3|7?|-vdG}g4FFD++_u%j&X1r5?)H;G?dR`Dqo#g%N={JxvQ8L7!$WJWna`Dn; zKqPC`WAh?@N-^X&diX?|cjt2V6IL&s_f6g|q+cBi$D1u(1LAa zX_7AVuMra(q+PpnUdO0G#_CHeLZ4g&c}@E$p7?sPD$+}uAAjAQW=LHp&Jb35m9n4o zR?(&kP2RfwP`4TbYw2-p!$!hX zw%Z#K2RjN&JPK%+eXscCO+%(!UUeylMC&@RTTNlub_<`k$qM39-FkwOn)MM2ZfG(q zIQevKeE()(#o+aTAKm%~V#72!`;v5^^!Jy^tSNe9-I^Jr@ zx?^tvZ$B-3M9A!_y5oFTTG+pP1ajU=7{^2w+o>C=WNYPc=KISuo2w5>dAYcu0^9fU zhO@|8u}Wnehj8D&;j=J9^zN5TlAD2kToqyZX=#0@|G31ie~2McrF64G;@cWkY!rfP zW&0E(cY6|FTUr+%gvo~Ug1XFyUh!yN*opR_rhMM@fJzRbR=Z9x?MloRU+OB%#)lp~ zz)u_;t=?R2unJGE?8wcX=r!vRb$zOVZ4Q(UcY%JK%={ZbKRoQ-fia@~%UWvyw*6}X zFKi8;V=<10C?&sEMgw7N*=T6^e=!y%;#25p)c%&kI%ys(Mpts-E6T7XCUD+2b;h6A z(5BteT`JZ7?n03&ZVUPykj0KtO-H>rD`nsD54d0d!HcRn9AgoR)jyg~au!q7Ed*bI zFm{V&==v2z4;**T4e#`%SZr!x${!GVe^ScJ{qAd?#gG*@I3+UXTT4WIv>tRB^C|#s7Qyq*T%Vrv@Slea)fb4pDF^eveU_rms{7g7 z_85c%Rd;ug?5y_b6QK!^>2WoL`v znU0?EhwaG;x5%#=`VARr;#--4rp1Y(onBv+w}9AyG*9LppjA~OiEcBLpZ;U*%>NSE zUc0uQ09*VF?go(TQ$OAeq+P}gLRh!Z3FD2n@bn6|L_OQ}i-7(_j>&m++eFmbL$Dwa z*nTT*aKdLAAuZSZZQVLsb`h(O>Ff*o=E7j75H}4#anb4oHzVp~{gc$9hO+V(@L#MO zx(w&DXu*A{;3I6*+GKJNt~&kDpwU{KC;5PeawhKmPB-XyA-vL`z%KA>NY3mnik$z+ zL0>F!y|wvl>fH7&F!3yH!N=hh&;L9uvSEI4SL2uS3OFl+%<9;CC=vU1Ag1u1888W2 znM)!$!>tP;`~M_cu)-89zYe`x#>Gg*wV{^v$X3uVTT*0{5s2s zTXW${nLL-}9-Fz&QoGF*Wu`4xUKG3o@}RrdDx{d){Hl#}K!(T?#cz@nw#6TeTDq9g zDmL&c>|0;_K-mXELY2ywR&7!c_>k6|1@YC`A40F~%CG?IBGC=_Jm_u-Y;8t8&1I+v z8YEt9w%Xc90a$PMDVs$GTV_Soo6kz`M*dgF8DflJ|2hCn*0|6?9xj^YFRVk3+))q@ zk<_wmzxrdgM59ZGmp`L&E_6v6mm-%5EA%QFWAZFr66X}$Ag$lUov z+$Pft1TTs^;_Eh#4&~Bs{eVE=Gz^o0TZaYOVhZegE5T%O^U3@$FR@f$&-;lCS>*?P z3A5G8y3~BtGt9sB%U-L5{qCzPdA?pIb#SwszdgbJSgD`yxdK*Hog%LLo&L!AuKpC4 zQJl|}gu^x`QQE=wBa-^g>dlvzCca|8am+ig>ko=;Jj3Mb;I^{Uln&7^8D?77^1BKCR#6luC*_s@5lK zz0O&s$3f3wSICWfOV(xkaOjs&XzRaCnruKl`uDW6euKh($Y#x+MXSK?V zr8rT+*5X+>LL9}sGdrb3c2(w_HxHO~1stut%E)i1PyJi2&nc%>uD%OMLb-#Yxs}szu>UKi}&Dl&!?i3_k+1LY_Uk&;!s4&UZRnq&W zsgeQc!9yX+fYhmY1!EM*2Z}n!EuW@;v)ype!IvX15d>=FK%nUSfHk19Q}B^&{gPz5 zG7iSdCw2&*PrL?Kt{-Q%B(Wz&aM=e>J1u|E!f4ufVTyL^>PmyWbC3S99@_R11G>t0 z-nKCDEq~7vN+KjV*gv*gxA299828VTCc@kLL~93hI01iRviD}t8m6EGpxsV3M^%Ng z-xz=bP04|sE_RB?C4DeaLT0>HbBW{(h_c)v{$mMO?;y)khKj!+Gvf0I75YY)@|-~2 zq6YLivsZ11WbY&Z{!Yq%W+gqk`2uJKVf1L`n2u3 zT_DmO?z6sM|4Wg+&ZPGtcUaIA#fOH`dwy|PEu;EB>XUoNJ^f4@n51Fisk<*GOB;!e_Q{~&-Lm~o5HQW_Ww=*8Ri~6 zSpg?5yVhoQ7S%4Y<#e8fCwDi4X&JVdJ08{*i#Hg zMPnoqlp!JjU*Qr}n6uK_ z+U=-67e7%mR}>#+8J`sYUKm*7g_Gx#r;Q(sS}av=_Jui}G={Xz95a0MsP1f25_sfS zf}#x3JPcbfdca-XJl(Lg?+>ATHp^-P#?>EEosoy?7yo3p5^LBzu;F#kwx|q4$%Azc zQ#=C0x3@4td961~e(QLp3Y=C`ndo|3L&=Uol>uI)fx1um;LB4hx40>kK(F(WUr7XA zp4~VnNYK-h;ErBIuxd8t@g4oqOg-`FYSY3kG!c239oo3qe4P+@il{vfawwmA7SLx9 z{})PNQsA~4dk2gQs8>a{ygvNGH)mt>bXn74&Y=kWwz{OxU`|HJ_aNy@7(RtZ@>vC~`sHHz)Xl zd^L@+SM%`E;4O05c5ZnXcBP2&^%JF8zd-}f)MI|q7UL)R%h6rvo%Y@E+4Q(wozc9A z`w53@E{73TcbLbhoXYz;|b5?~|RL0dqK{Cksqm>6lV~ zl5Y4Mx#022Fl~{}=`{NxQ$G6sG6*X`oG78~zcY%_>je~6rWkV&MUi8+Wq^mHx2B$D zX2RY{?MEy`sdt=;Ygj}5Y_zCU-J1N8$lLf3Q8`*YQ2jRAbT>`WN})x?c?HYIM5@-} zu}!;#y*aOaM?7@aBr!qj6m>z2F~2wL2U|8lc&yQZYQ+lg{IdHCs^kV>)5R)SFG-ZK zFlUnxiw5T1qQi9=A?^y5 zo-#8O>;c}63pc6LVEs@kV)LuU$D@oRA0Z9FI9j=XlR*%R6NweTdiE3BTutXo!ETuxd zeX{RtQX;*{eMGm#u*YTIuIHSxdWJjDOY$E2*0f~5+7@)rj>bnr@SPP&0EeQ#ve?Zl zDS80pkvF98F`*N?`5Y3sLg^<-vPe3tS4)rY(9g02HQHL)+AJW+N^j|cmYZo}CtQSy z1x40$DuSx+{W>#fKAA9fM`yt_G|`73eXFGf`yqq3!Lnx=48gM^5Y7nZuJ@?}5Q~Xt z&Z0nQYx#dPPAX{H-{W?77`wMW?n75_z!aqT{JP&j0Rx z>wc8mo$7U;mPcOSSbA!A>&s(fsYFQL{`W~Y6(h7L9*GR1p56Xvsi(gbF0`#(-|pP4 zl45kvD`MvOR9?5J+qU>$%uQYwKZ}z_Uu*udSl-{g(uKz78@=;UUzUK!5nkj>r~$&eDF`XVVkL33Y}GW@C@O z>Uy4w2{RHMTb(~&R%3ZtA7SNCwHUho&Y^a}K@0j5yp#Bj6-JS^6w<9HcU572+$TI0 z-%@NV7q6gW^$yrC=^ZA@`5^v=i`=4!F)3Y4X3$bar;G6z`6ssndQ}6-+gEc8SykLS zbJby6_~VQesU|S8!BuP-(i0O`G`e8M^TS%LB#+@5bT}m)pNhC8*_?g>iht3ST)Qvm zf~wx|6v)3tb@W|d{4;&t!ND6Q6ERO?U-QmA`E+RVyjkEJ(k{+XA4SRAu)h6MP<^YV z_Pld9&&s-zujoxsejNX6ZGg*ae;VXM(&0nNRT)1Cb2!**MlIa*_kn5x)g^Rh>7N^M zf;_yyyeYY-S4p%)Iv8Uv_It{ETA^+by9PEQAtG@`*4}Lb^XlxN+n`KwYr(4QT{A_p zIaUkZhp<`fFhO-VbzS$!i;mlh!gh^lzw_C4+`B&I0XF*RxFp}2s_`#&*KPGB@c#Iq z@+H!e0q*)kxJxSw;q?|8xrU_3vktaXlyZS1Xud6TTzL95>D9QFOZ%F%OiHQoj zaWd6-B2LFC;Y!!ipR>`b_j9xA=6uOu_H{VX*p6o6XsKf#;+!me<8k# zQZHuOt+UWg7F}rWKAoRjxD;@^All>Atz>M#D?e~jb^DAiuT;i${Fkj{>h#py@ z{)aRAmgmg>x=sDLXqz7rG}Kw^JwJ=&?~>Ksr4;9ySEe_e$uSKV&@6YZIZQ1$_YvPpMUus&Bd>ZV!Ivj%EKXD6|9uX}jFA!68rX zWsbmub~hS-*A*KIe07csHpWo5R6Kwg`Vi=}IYoIK2Kr`*G*E(VPz01;t!66Tc~9bA zWyBMx7K`xdHy+C2X8_HQ_YtkCLj90{fO4(a)2xJi(WAMeJxZq{RMol zYWz_$*|j;=swE%aIZ)F&$A_jU?h5()OqP*qZs^-B|MXmku&2jY%n6CAOCwD!^76Ev zia!M58p_W z?&qD{iPl^TMYf}+MQ(uY2l-Csggm0=|BYD!*?M4NlX`Ia^n3kVXE*M-$c)G%8s(&P0Zx!wNuqX1T`MA4X ze14Y^9zgBVTAS+CvT#>E!UK~fl{$Y;7c;14E%Kb7O)y3i1vGa1$3f5Kv48P@@=orA zf5i619Njtv?pt~GP+&b+lC(Z#PuIH zL4A20G>RQcEiw95P_aP!$R2rZ?Yx1Ce&Xp^Sn;=% zAm4zxGa)%vr1}R%-@nm6gya=o6P0DEC*qH+k8b22S7XFW>-Z#+hSTQRaaiP}FaHuu z9_%L^szlM7H7Sc~8pzRfR`ZEUt#{>dXN@+L5T3S>7%g&Eyw(e8271p3uB4Ybgvxd) z5kTK5E6e8N1AxPYwiX$G#TsQtD-nIuUl&BH-cEAi5_~Q*Zr>37HKsiAMoaGi<&W)S zf0`6PU7IS^%|AknSyoPNi{U(?OyM~><>EolBrA?G2Cgp=f7FJcI^7VMdVO3tVu|+c z>LsSJY<>jB#Y-lo-s(qd^CX7&=}Vv_PYZ5EiQthcv0n5Zlzo7_^)0s@9g;(kgS|U(Tx4k@y~hK9p9QbIx*Q$f&R4D80~jQl=SAbX zvBJ%B(Ei07O-|D!O5yepzwN-&f+^bI4^A;^r43=YPew)>I;Lrm-8OfT#_U#PY^UT@ z&vg&>bJuo^UemRqJ3tyTUoV{mh2+a3ZscrkcP#WHJA;wl{EL}Q#yz|bVsW`tBlmQr zDQORDO6L)v%aI6vqdtsJI*lvpnDCy;Y+#!>1Xj(MRZ0Ye0dWypdnm%&dgHILS^Ig~ z@=cG+qO9dRpH1hkfpHUtMXsyU!AaAi@HY;rJvy%_$18(GR({Cwnt!73%I|(AynQJtot-s(NIAeJj>H9>vDq0j-Wd&Koi0n!_0Z) z=}rd^i3Lz^B8XQ;ZEi;*k?_3}LRXgHb;Xnm$5wehU$HYjd|8sEL;d->=P60^)Ym)7 zOtTGh@QIhCbMnqPBx6AX0(h5;;8H)n#32c}H~13?-Z~qRL9Vz;4q86N{PaM6?xXsG z2N(dYwwwU*7u4~w&**t%*$#*a>ouG*<9_p3r!M87U}J!cP^zj;4PD-663|%H+)ZGm zlT-*zZOjXs^GZv&wv|;6`SyI>o)MpGA%eQRlY+P3?K<@Rqj$&N9C3d8aN+FlW4OU z&(db@cJcm%m~eF{a$&w1iE6x*y>v2KhfmR*tf%zi4?rk)1s8bi-rTsL%d^){Xmn7* zUXHc79yC~|SK=Ne$7YrlzppF)t82dO$Ig>y^6Lw}SHHdMj=Bw~brxDbBKMjqBa1t? z_9P3pXN%VusW)ih(c{inx7i_&VYAckb=1#qhq1eB=S@S1(*6zq|JwVu>(%_+8uqyV z1ME|5-xICMx>O^-*g8Q;==58L`4e&M>!r~@<96hAJ_p~;vVv)Ajpq~Css)dGwvH1H@_z7u9aZ*QhtJl6p zlGiA|5>GqI@!?Sm0@qnxxq#h7u}@OY*z%T5JHWo;y;if*E(?7E_C9PO5L4u$366;g zLohF$(#W2@{Gj8!`+5=o+>x!*RhMVGa!G-}DmzP){n}Y8B=mm+fYh-}t64&6K;GKI zevJBe&948Im&^3Rd!rg%ju1cNw`+N5$k;mq3sfdvRnCS)$cbB zAt3gYmD78;+S`-MahGpwwX8%b(?7u;Z%-`GEDg~ome(^FnUFtmi=qwk)`fLX9C*EV z&^55x`INWy?)jo25nJ-KpZEM=;}%>t9Fh$0?C;6^Sswa{tji1FcS)_{8eH~ocfUoW zJ#u@)hP;>BursZlu zbv<>vcZvBlSV^-0TN*-qm>iRIXKO9)yiR{Z7$OwMJkw%IJcDfnWCBQ8tYkbbkp98%y67i<_%jG{N9taR<_}`kBe~;J3)d z>g#Vblg=hczWAQ*>^iOc8~#;u7=QT@H>)Xpa&ZI1iQvoFDVId@?k>aaZGw==m9Q0Z5kbViuUw0}& zDV0+4!FuaPB$IQt@lw(L2f;dsEW&D|KMpr-xZ6v(Cz70d6qX5T4``T)HoD;Tz#L)1 zs?T7Ux`zzz%%JMIZ``lHNH^DN$*O6;WCTR;CtsTp*ee+%m%X}z6yzI0HyE-UkUTqM#?DR_gyP+2ES*PjM4v=Y7rMw?Uu3Q{PPwXU{C0Mq@F=Ppw1eS>gA?C$BhE*sDn# zubm3eGD??UcR#5ZJ@-Jqo16%L2K2#Sj(?o6RtRQOT)c)I`5WevAKT}O zxBY6ja))xMfh7&Q75Q88bHYnr@|Oqaf8fbmEEhjy!e3CkW8G53;&bIW54>}yE*ct2 zxYhMB>V`D&S?0U(m|DZ;)nE9Qp&I@hf;Xl;PW5Jn(0e*4aa&wInb51G2eUTax z(U&Fit_$V)k@A*aR}~G*+ym?6j~>L1kIOlv*EsRN(B%#={*7h)Cr6Um@>4j||u`{`wEp&KJ_(U#;3+DPh3EFjoyVOQGv|fVo3re$>zste>BIwTlS?%>jS~|Wfg#gf1VpS-&pumh z^=}}pv84{YyTN9@QnaWzYgm)Glr=WZK^@Xh_w8yMQr@p$j{jHOa7 za-b|0vn*$k$0|q(S5SrvtdXA}wM&%_#9nM;qUGf|YDag+_7R~Hlg_AHu29TmE7PX{i1U~GM@3~#ty6x5n&-?SolM$O0<2YY21S~Y#rX?$3A z4aKwyHDD|DA;O!D=^;V38*{?)GI~&Gt>h!Q%HNn#L%g<->b`X~k{i|IPvR+70(sdv zgFUBPdqx0}x9E2v9ZudI!=f@KtEc(S3j*OFvg2`xX-ol?!b+NY+Km&I@h?G@2eyfAis9UpuD(_CpM6vH&YKzp8J+_oavAlw33R z!55^=0gV2+Bl^ao{bnF#*BgsV%i|=pI9UrMx{|gcHUruN>U#d)KEh11M0WQJt80=V zPW4D*!O^hp)9FxnV?>NQx#mv&q|0HU>)3|@^J7(Wu8W<@*|L*-C$9j(3+P1oew_ks z{_VnYp(gAwAw=IW^&qxy2Dq~$g-oV5#9ajW2X?bY)F~g-wV6AeKo3F|;zQy+A@uUe zKRyb^5;EtMYysETbHCu$KzjQCbmhjPuhGz{;MK2bDvKUMR_kz9LN?S|nKfSJHFkH9 zVNRz%EM%V<#z){j9^nwRxbJ_JR-tX!z% zRCG$y%N% za~FdJ-*e-?2S3g!SX2`I@h0UgM=XSCrz;>#`u!;wrUr1+5 z8VxHX|NazME3WeAEL4py`^^lMtJAg>3o;iR(Z+I~h#L@9xOnta=*tH`Yh{^8c4pLM z5g*`I2P(vTAFUt!=T4`4oD+=P>%4Kp(4S)+8!spXDgGQ^Xky47*y3Uh7Aw}jd*0&) z47(^gXnD!jwM=IwRgEFO_nsh_gWNKM+PqfZoYrWhHhO_I`-1ql8^`Bv`Gs*YzG-!C zKN~{U;;spU6wCtNI_&1AVyH)9FI$D-^6=v-h`T-d^c;5te)GT*Q3hJd*$SO2BPYTERQBZ{@q9TO#k>V(qy47iA~u}tjx98S=oG-*NRZ_X zS4@A5{j#107ZW?wij2rXWY8 zrHi!tpvZf1I?mA<02HRNrd~R@!3F~oyP&yhUO35`ASKOnVDn^wS+^uDv}?eniU}jc zj`uIa=NaZTjcT^#h=}>rz<5{r zF%E0#Bzl}e3*aLZkL50Dq8@S0tdf@GX6peo%S|_%9!7U4vZ0|R8Sz2&{R!%+cM2vo zqwT2A{X&ZRd=yn=BES zTbH7HJXW4)xw$WO)_rm)KhfqsbO5KDUutoGa^z7PKi4D}*OV_!sVkmQv9z8tIgoAL zI1?^DD_lu|x>hAAsm(c}TFWPY*Mu{?Uo{`$7jr8v1>Bgp`cb_FcT(RrE6L3bQVJCm ztC0i77R|#}2x^tZjo_czQTewRnRb8 zRRX1@jU8uVtSiV>qZaMpYwKiK4fnRar4Q1i11xD*<^Q#mkGSmGe6G9EM!2%T1;P=npQJ!3o{A8zWmK zJ9GjU22QA(F7rY*+8P&<;gZX>v#~DX5mzmcw3n==Zj%N}5YAombBCZrm2>pkbtvPa zECr4KApD){KSIAF*t4N;{s=ea0!kd2KKvzt}DXN z+Y`Cn^3}U@znuC+nX^-141%=owT5=B`?8@HEye*RccWuvnR$2aCkRy4)9j5|PA z)Gh5*HyZMX(G;-@4leRfiY;3r1HWou_y9&giyx-ZZ`v>f*>l&jIT4~C@Y%|uhRVB( z>Yy$B;tq~MW%xN_PyM0+L&+9=sczYGh_E#r3 z)~<43uZt>tI#Mgl7}yK4vM~H7kpCDPm*2%{Xp}ui9=$*~mMnL5;1tw3Mz-wessG>^ z+BSLWjpW<3`G$vC*D2VJ*=pU$!t>;`iW7XQz+q^O$5^!Vi#_ZcIiy2mDCTFU$i`c% z8HjttpiZXEWUql*;9NniQ;*`2$_ZjqiKxi7s#z!Sn=vSOl4QBLoq{HO7?sv>*aK-^ z{Zkz%TELTy{c|dQ0)HNE*71c++Su5HU7N*qWt4VXVm9?!ER4aBNXp=WWJ!K9hr-n5 zIN400*$W#Z+#ECcNxgV0Sk^tGYcfsYx^0dLXlRY!&~-<6gl1`JRxRU{7QfcgzoZ_lTAVz!X|rw~}>} zl|9-wlQ9G05J(uVTrDojkeNaoqx5B|NN)xNztwn8w!rHaW1fp1!zw;^xk_*AVv`*_ z7f)?ksbTgR7Mmi^EVaA)%*7Sc27jk|IcUe8PIMjY@CaUr$}|5xR(*tu5Jbj@G9Rfs z8jD*)3Zpt~j?~_n>DR60?*vAm4IlI}1XfeM${B}GCA)iW9DJXZwKia@cKh`RTilqc z?L9=zhsME)L*LoVdGgN~3)S=m-5VH1i=bIP8q68g^K#-=iUs4;6 zf{+w&7zmM|MR*;Gu~*h~)3K418`L^Yc5j3|kcP;fBf7L|b=MMojcyBI?#(x&K{@O! z6~0gj_MqsJ^=w2v%Gmp9vdx;C?d{-BjLq$qA~LcU?q;it)opMxp1iCiOgD4DzO)=N zqa(G~qzSjQMeP$~$)cwLgw>Oz!W|}p)R6o0_u0KO(WuU1!TY5E+y84CgTMAL(uxU0 z)bS1aXJjY04sCx8B4NMrKWZU8nuZJX zOvy<&VJ&aiYb{G8&DDZijcX|Uf3F(3*RfvW04eYcn+oYy9vH*^(w z4}>`3NFHh~)~;01w(Q3lQX|)V$X*`TkP@Z-#bxVj&RMOvM;qBovbwD^s>7*s;!<1V zE2CAcRd1~in>Fa#nB?C_GkL3nq3oGlF)j%wp3`AqI}NpZ7&lE_qy-GN6rVGGLTxVF z+CtL`1#EC3tse$>)92Fu&(dCy8FF1mbI`*bJs#1I)Ykrg=z8{8mnHk62mqfF21;j*AGp5WDA;-)Ow6b)}Ei@O*H4R)*QxW$C z1lL4x#ihfXbAG?`J?HT_fBP2?AFuc4{eE4~>$+$++1_DmXOt!J@GbC|Q=W7%ci>hs zxc^|YGB3yuv|kswQ zYClFZ+P}Fwd3GvD5%l92GkSPeAum_?E3$8J)-F7kEGuoTdh^0CC6_P+i`V?So}f7e z?BPK@=E>7kTOHbPI$3sMdBm<@2>OexzTYmc-X%uRzlZxg-IEi+J3N(b3N3n3FMa&c z1uQ4#-Z!?&mi-s(DWW(O0}0ysN{JaeQ9S|O)N*2%?fxR`YYWjgC9*rAQoll&2t)(M zwlUA5RtQG@IZenC8}T=~nVxy`)7Kaqe=HT( za6<(%DWMGM{~csW_0c1vu<(5R=XOADU6YlC>?j5tFMigD8B}4o68t`01zYdbT@kyk zU7FhJcrn>=I*hHIW4FCNP}u1^-2oDQyo&4yiR0fMqH^WakV!=v66cD<49mV88S4jW zqJM$wU3?cE>|cgIDAomItV8`}&5ov8ONnK8j(M8-SD3iz^peXB6~yZ_A~MeEx%tK@!1O&q=mgx2qhn60QlO7lR?Xs8f_y>(V>c+dy^F==lSs(|X0+0K z{rvR4g0?SpZ)9h%ZF>Y%R3l2b?k5iki-{TAg~i<4t!dmSJ?Kj-zdUyu0x+7|LLIzX zsqAeWAo=VRm)~vrq7vV?R!>rBc&o8`|7}|O663NeyBudNG?*?^TRLFlm1lE&~IviLqFvc?r7 zbsoESA(KM*j~VSR^UL@z(ei=3e&o(Wbj^NlgU|5p2gvb|@|f18(fIu~aJ5bKh?nz} zyY29jvZ@w(#qxa4-swYCRV;KtFw%Q^cc`knv{5IR6}MZNhBWaiFM;a$r3w1Otm|~w z3iRP~jN*xY&J_@;qZfPRzrEL=d@M$X4z9hO0`eP(MSv)oZH;e>zs&=$uonNumbdXl z87Diq@}os_^e!J7-}qhc3Dr?%9=x$(xi90`f(KR8LNEG&J)=^ELLN-4tO3Su)~#md z?6OOXCq`)xg_p+StTw0Z1vG?Sl`P+-mbJJhdKU96-m47ep~{-(6Lu#Gd={`{7iy}& zK0BDfR`r~`jTJ-hozBhd;ri+=Sb_XWTKQqv<^ZP#5@rE28jljBto&(MHeb6dlRh?o z7XKR^<{N7jDecMWmb@^H4-mP7F>n{Znd;Tr^tDTN%SVSV++HPqi4Ws^*%FK$i{DAw zT#+@6RFB}sA|)+}?_BiOIye6$`;5fR{m{GG)N+S}8J7F?*3OPB+D?%MPm9$rMU`Hk zoyh3xe}Z=q=^F!ijU2rH$??YCx-f_HX)Y1zmSH9jUQRAPwm&eGK`lw9sGtPn{kT@b zXZ{0#>pITEP?m@eg<|S6+e zrUrebYn5H~)YdzAJHSDB@b)F?lba9ewy2~$uI;-}8*mA$`I4Sof8ZO-JVd0!p(T== z3M;*etouIIM+Vg*N^CPYInmT?!q<5R{L-c!SNruv3Iiv-4N+FtK~U3?yS}1-b6q=% zQ65oQ@$MggccakT^tyia5+zbyxBb)X8IeI(8(?uAZrF4!H*R;6Ufy&O=c=?z?);uP zB386=i0t;5Rq4CsgkDmbigk(=OmDHWg1;SLM3`vJ0xI%!!4*{yqqX0-e7!UZBm*ec z2t64o9(Elx*@v{x1wlDwDIxJweG! zlfaN032sMkeVgg*dn3WQ;YjgBKGxH0Jj2)8>h~yrySQ(FLIGms(ZB4WA_o zt&~LezrJAdCHdpVh`r_*hU9~=;~eA#-E3HM647!LV1#yn{TkbKI_z$|tRwB>)Y9xF z2KLGB!}0LcGcdbBqnt_LNRHggwy&65dJlcxTku-J0%C%{Fn$ewSMu7#W5qd;(I@L$u+PYwJmFOt{eB^^RY{nl zRejxJ?A^*%+x|%aIRv+mvjc~)kncQDdrVW~+2%e^1u_%rpiG;D-SWoenYjp>bJi?t z1IU}DtMQdy@k8nV&yup#GWVHA^Sbc`aKC$Z>x42&OO#b#;CxZExr*jF4-GU^% zq*mH#IOfuXk5m}TmPWZ_pAma(fnY2f;DfINFScGk&cOr+1vK6%$FLKXdC>M1cn5t> zUSoYw8h<2?JZ3rH6d&6geGfg%{{tK9(Y0*_3)w5pdkE=hZ+ApAjM1i{938Q=Fmg)RZU^PVU@l>mDzQp;%&kqUX-8)MBVX8Qu}sJoesxT+!Y|R@&f} z?5bmPYXF0W46S8qDw6re6DnHV^XnBDf%cVemKyA9V!n3=O`YgLF09+ zCO7bDcHn@;B~RX{BEf7K_x81$_1@y{!dFa?EqAtRXfzXDmhi?llG~B?tiGct?BgkN zm(@aHgWMUseTP@y$^UF@%->-rTo{JncnRAWR*{c(x%oFrv{=C}VoyuzG3#j2Bpwh^ zEqsH0>SCetZN6IkM%R9y`yjzH_Q^+KCJ?our=tn$D+$qhq(u_Gjq~*?E;}wse=m0) z0TN4qt*&`+M@3sT3S2PKBoykEWh*91s zJ#I)V7rkLzpqHup=eRC8VTY(-_*#2CZ7?y0s{6i_d+*~bT`=xNV`z|3dq*m(uyk>T zyT=r->Fs95vp;EA3?Hf(_mz|1vrwed8rSQIXN@=Ijh(ktEFR;`c^x1xVT=b=|Zn)Wws z!*-EI7)+W612aAF)H>7@@pcTiHeI!ErbPnU?h7e#LVB#k%;>MiUBJ{zEV8s}f1o|^ z(3>ab_+#R<~dvykFM<1goa-g`Gtn3arwrge?jZ+WREawU5BUEu0Y z*ZxZI5* zMiW0xt`vAZ^9k;)@ow0D)=DZ?tAWeeT+(_E{CkizfpLT5lqY(kJhC)~Z9@RFSV=O`kQ8}zr7@ED^h=;pZeA&@p7;hZVV=RkwkbgZjKJp#;THX%( z$Kcq7f!_+kiaC(=DsNG-Px_pqJmEoHnaf3td8wzbL}v9UxYB~)V_+OUI@gY_`-ZbO zQ;Z!-Qe?K?Fi>vfYHbUZIiLj*Hi|x*xs8Y ze4U5r+%65)g%)_)3GGa&RgcD8sn>L(A_$C*1je&nEu7*O%8u%5y`qucO6s|;u@&pD z=+mi-W*jn*T`73YbuB8!e2qb35R9lzlmD@xJm;M-q6lr6)ikqTec_d$e&T%7npxy! zH}oyovAMRvv|rwkjnJN)D7NFR0TpWWuRp4xqmz{MLNPjtX<@8EXSIVM02o8=O+FV< zO;Pm3OZ{wJR^%6zG5PthNL(fDAg~pp|7GV>{M{{29NPMzR`6?;5&-`8f_toV3k;iF zR}x#z4?L0isd+UWqLmZgn9#jzfvPAD!s6;O#a7Lv_9+v;CMNlTi|u;@|9%Y`RQIWw zpPPR^^AUc(Qrp9eYs_qj`cJu$p#8M65vE9Rgo$iZeCEN!exe5{u5EKKN3!!>0!abE zX8s%{NbO((^h7Lia3Pr{2(Y)cv@oXXSnn7FcH*ArpQQq&zNUGUl-vR;5*p$LslAOs zl$gULmH>&g$cg<7zB5;ZW&7{-cPS-qJj%O;fX>%LFXxR8ndc%UiVN;Dxa1E2|~>K`SIjLFcVe%#e64&3v2KqO+FmJ&H?Ar zHAm{%?5DfBJJTwP{h>i0w0gYGJIU6=t%SKPNg1kKEEyt!+LTQr^LuyN_vT$1aO_CL zbR`q%l|0`v*MlPr_R(8jozIg6ddhyH(jjG5IIPD3)ekMr^hbDOqkn ztC@9v+{8wND4)^;e^tgVH&IlKIK!H)GpdlnO!)A3boMptaiQo&sAMrIeW%Nr;LNRh zh!#CquI*MCiSBx6v}Mb=j{*j;O95~z-85|5_sNOL1(TyM@ymSN^_%*RdU=D)^szlr zTFa-ltb1iHD`lvqhv=T7)#ABJ-yCR9$%yQ)v=F$LX|}qN;-f|vc}KHuK!xX&>#MX} z=8knqRi;GA$X?6oPK>_E1x!{GNHiPOoR&!VZ^4WFg+zzg4gC|WsPkVfMa>U%+i3`Q zX32?TR`Ta|E>rr=A5=7~uY-jr?Sgx*p<;#ef3(_{Pkr5b>%1WU-obnqdW!H}O;zh7 z8a|OR`X|Q-y=bNJsk`6vDKj;U8z6P{32(Cm3k(IV$PDvdSANIv-b{W=NA$(K^{i6{ zg7560^KN!org5;)*?^MHWL@Ms^)!s~nhU?krq~({^0%%A?5EygXV__ASu_Lhm_-wx zMLT=1iKcgiX~}Ov*Dl=FPKIXbTgcFAOebZ_p#Py#BY@}LcB1BmOE&v|_Nv%k3WRab zN%BhnYx6?*sxr6x0|UayeXfIF{_)$1_%=HYGzE5?4Thl$I<#`&dxKd3$XNAWiX$O- ztr#)iGg8ar)W7RWMXui=EHB7jtD=MK4i=ZjPB+Dce>vwIhhM#)q1%T)oI&^rwL#5E ze)vwu(zv<#RX0$AbqF6F&RYQ*N9)89Up&y$Gd|Ztps1)}E@~~EPn3n0v>neM9dgsc z7`8eQV7COdJ@kflv#Iot-=SBen!~E$vctn+8XAP>3BOusMDGR%9kkDuvUtgH5$`-*MC9wCa$YMiIEX8Hy3~RF+a8Qx2R=M+B=FapZ}}yo ztxqdZ&yOwTJVHV{a>k`^^1Xev?Rk#Y9wbU~FbHq28@n-!Yw%0#y7jp`tf$BQ1~{DE zXUBzy`VA9WQ*PnO9HP0_Y=?ck0`@x2fg)M`V~mDXjizZ@FmU-R+_g!Mc%Jq-94Y@Lzlag8ja+1D7DywbSCtXmD;_ z)5XuE$CpZ?>2E5SZux|6{`7rI%!{s_S9y`J5x4@Yq6g`l5o1394P}R05&b}N#l{t58sV4P{S)n5A*ZBNue zcLQfBO#N*u18M#R>L{2ED;{re%uBxMy%-b6E(7rne*rnoHV+D%N7tNhsREFgrE`M& z(1MK&)dsqo{W7uME>exF)!3n;JYoU1L=66{CkF>1XYve_9|JpDp*f|LXN3~@& zFI@FL?qaQGucvYLGF*4 z4cz}{5&d@2#Wy{^@7l3mo2_x@roSrH0>9m!`dcy8AnUBTuMp_lEfmIf%#mRD7RQc4 z-xfW5veSO8QF|=Sf0=E^xzZas7BXC|(7LKWOJd^Lsdkg=Ee4J;yu|u<4Fj) zC@*1&+#_Pfg32K^7$m`S3@5m-O2GcUAFc?V@jUNedBU&6wlh52r>ChCm*1Q1q79<^ z-C!#{12qe)ai<2_uD|*geB%Yan|JqoeR`zmc(C!mZg4n1vfQKtBqd+qTY%;!WN@s|Ds=aBvJwzr{~G}bHMiN zsNn5Seb%7?)w~wWu^v6N0p%11l9RxsC{ z{4Q|3Tm4H3z{J&k*0X%Rs?evQNa+y?M8=rd!6=8r{`p>n-A?FG`Bi#9y?F9a2mF4% zvl_fM(~uUA>r!R!Cn4)~!Iu8o#?hP$;Y<}qQ_4exGr0JB!Q1ZE7qgm>!azn! z`gm5p;AaNMXFJ#}{;lvA47qd_;%nph#NMlEh=ZUPKGm&(;}ew_k^U!x&TJ`+fooW# z9%+sZ+2t>ex7fzs7Tq@zAId?j&m0Y!Y?r>VdjG4*@UZ`qZiy-=XjNkMd z&My&u)2Cb_3?&*E+pvRRh7u_aLVc7g^tTksP#6zJWD^*o-RTMC~o z2#$kg_?m#D@HW%Ez)Ek)8ROWXA$7d*2I7T60aTD5N$Dn>;}{I*S)AxE*xg|O6=Vwi z2rTYQ!iH*NM2Tn~)$^`ycdsW!DSpUVo08)GjkOLF!G4)B27RH^6?kRW->8NAKi2_U zg-6C)VG8TrDq#I^3*vjd2;?dKyj1SFw}1ZLoQ4}%J2RN(wl4FUCw})Qx?%oFp_D5Y zBvnW5&9|mOR&rk@w{owU^w3jM_7<8@%>5x0qfdjs^-x!kytaOcoBXZd1B2PtnuZlR zmjmiC$lehdYo(&AY3vJl%Y{=F0=KBCWL;`W4V=hc-WCWxI*PT~XXmdn;S~#)gggnwqmQ7w+upy+y~Y{F;~_ z3IPCMy$CU7b4`GnJlM1?TraOtoX~i9Ap2;}#*YSNL3$(6*~vQ#iNW@t8^gGzF2w1c z=#CVh^0DT0(00lY0_EJd|8i1j8!Ad>#2V2wMU)GIB2LDEtL`+keFo`AO3aAGs0x@tfjr_bm>x_! z56K_$NLD;0rs_Uioy^jyZzm%EO}zz@w^eXO4{V12V04SgJ zeb7B`cvMt^;ns01RTBZnKeb%JC8f6V`S^)u=#8ef_Eh>N-s`?Ssx}qhkY&2l2Oe_~ zo*8EHaoJ>gr+i~8<1{rzZX)JgMg?GgaIvny9LJomUX-8w0pK(c3W_k3vN@>Qe($aQ zW6{59a_%~AM^V1zR8tS@y5fc&IU-luxo5W#>?G{IpNfaj9+nJqKy6Wifz9{U@9_F|6QXrY?X?%kBAh!7t>oKeNp~!|B}XebyubU}ek_+4hJ5zl}6&PX~;!C`%vIk4gY0_+OE1^4y1~bOSy*yud?Dp-`|XC>E+KW*ol7$ zUFImq0@(zF#9b$9Xu#5?MshPR%v*T!eNh@qJ5iBLEO^l24v!Q&qF7duZ>L%?xv*P` z`v?uDJq8Squ78PEa#DnY3y%)aZm!)y-Mvg6TdVy@Lt6UZmi9p!Imi9O%`Reg{Pe-3 zwwHJZ`4bv^nQG5ybaphlNYsBRZ|~wkp;ux30;eSi4JmxKLrpoHCrp3OEBjm=KBRL~ zsGq@nc78;)bF!~RiS4ih9RlcbR^7|#D7l*t z@i!M@Py=(oLf7k@T(Q<3;~ z>t@{o5q0$~n7p6V6d1VZnH7f$h^C#!&2w&)t)q8=1@d14BSa7A%yy2sYTgbkj>ABf z8A>dOEv5$GukU22cuR}0AdJX|rX4jf7BhcPPZ#vO^Y?e#*@ zyTQ{r#<3@B<$YFL#9F-fW5$k$4(FCpcwh-tN3j9wvf|rl%m#s?QVMC9%XzFU!^pjl zS(-SX;1+f%V zhRp|pLKHEy!f*3x2UB{Exk7nGJdnfC#Bla~!(O-2)1L3#i<2TZ;s0Yz_r@n-gv@o0 zr{2;={$cpG<-uJ1+UIK(kV>_jG%n&-UF(JJWQ|z90orDS4GHu9pz0mB7b1P4s-^Ay zQ>Jlk+o_m}6q?0)bvD4#pe;b7LvZEaAm7^NcIb16o;pe{`jbmaNrPj(eZMEan6sk% zN?d#hsWL&~Q^DNm7JK!2-`3DBcefmhdX4Ns1NQ;~7P-sQG_v|TkUB7hH$WnkJw<1Z=~ipzK(Fe;IF-(*TTAsx`Lk-utHMK0$UhOiwq zLQ0N<2YqX@$R-}LS9u$k4dNPZ_Y!_=R6z6WI8G)dNEgCe(<$QPmI-C-+BTpM1^*SK zj_!l&GAA?kZp%A70tENdopg~>-$G|bz1-oKG)45b6~?;Y`iT(uLkKN0rQ^EdkHf~h zqdTgX;<{uRTL*IoeX_svsi8Gfc#rprP{YwHV()Qqw6v<)2QFTZWV?I`fQ#E!E&mWC z)NveVGxMr$2CYzRo&n&rDOiDGxLFn(EMxCkk1&}f%BtHra07OYeCNYiJ9 z-MOJyvCaV*ko`C3Q63lhA7AFb(68yVcbtDKMqIBqz?35mtq=S|glCPeXIYuy2RWW^ zhoGImimzypgjl1Y8IS$9MP0;Gp>lGUCnc5j;KdzN$Xlw$?qAZP;}U6tOW7 zJHPQFjO(1ij6%0pDV8!Cax;z{Np{HvZ&nTT-<8}hM7KUeth?#Mu7~qg`b!;|X z#KDzGx8-gqS?eRm5%WLv7$zQ8ch;Fi#FI)Lg%u$mVkEolRIm!1nc2>kJ!;U?nYme( zGROQ?8+?*E_XflMocReIiod+cKisG|3NVm@#?ZNTD_H1hkV=O zg%LNN&d7w{eh4QUw;(CLqPd z+47mfq%EIGW41iUGlJ~GZ0(SQp3L~!`M{E=3*x;GW4#lP#^)AU-5u+9_&~e4A@(!E zs|KoejN*c>cA^jS0ohi@qBxW>*wH7p$WiqTYEa5hpwg&xiUVtpw^V2iuK zjoL~&>I^MuC$Z8Fym%Bf9^2ho-(jy7G}z@s~Z98L0{`MN))fW zfHmGnKC7U4ke)gtY7$)3f=O(}o_A{+**`wxSZ#OO`!tMiM`OOysj9p&eP=#Pi!^Qd zxeeZt(nw!if*uZ4_$n6yLlwgD2{qV!V5k=~&=S3Wt{f){QXfjW**C}k2;_i-zX6PP zg<&94Go;*{U68l&b5nOA`>9sEUX;8~Ha!d;-}I6WZobrN_}5Rn&CK{ujtAWxE7s!p zz$gjP;mgy)AUz+yi($lZeN-^3XKzNgSiMeoT#Tem5FVuzgnpMIb4TG`uC7hE4~?Em zv%XH*3!Zr~MZkQ=Y#=`CHl$p5sXp6B-f}_1$X|R|(L~W}g`3SGd1bb` zsYDE+NA@@ug_kwS4#-XnQkp#lyyY-FEFO3N=%}FKW_tL-%X*5@b+h;9_#!3z@<>*5 zU*T~w=BKh$#e=m?f7q%M7QaX-Kd(Ge8}1$`y}3W~BqaQG9&(<&NY0A}d$)h&(VKxB zreO|hTk)kmSv!8O*ry6ze*>|~CI6Z(^f5Yk)XUN@z)K^>8Gt$ckEOO zkRW@t$f=;m59zSJ!khLexml1SSa(NABye@d%{UL}J6*@v*nCaeq=Cz9w~j+qab;w? z)LErk9EEBRvZjLZ6~-RCG5fWbWt_9sEm5&)(7j z^}60}a7qAuus;!CbQ1G)3j2MRsloe#>Ap~IyF}{4U{QvCr|bYNIm*f!&;=&}8H@Tu zKkR$LgPAK}zmDRR71zf3HCg5%gJHwS9D$jmC`WL__z}`7VClXZcufcm47j)<`dOD; zFZW-j1n32augG*95;iuLmTPog6?-ZB;+M+e;C z_D1YgFsz+6`iY*QkimUFViCA;_Mt*X94e9%bF8)w(2|AMFbIh1gH26yq&PjwYAs!L z#Vw~Z9oaVIh#*e)dj7^%$%%sTKbb^+US(gWFm(YIOC_O5)LS!bH!J?>)zHP3=F|-f zwrfg@wQ_j(Yb$)ek)?+KMw5RZq!L6TzEQgsps1y2l{Pm2DbZ^7;yvM^49rD6ll}G6H+U)| z%Eri~VP!6;?Xi=E@%lz)LfPzRdj-VA-Ex()yqSTaymvTq2gaa6R*L2xj%2sqh!H=Z z#GW_PAoex)Rh&rb_olJh4sk5Rz5HGWL>*$E+A%Kb4DFlRh z`zs`61LK0Zq1?43jAkHGvA-@X(X~Mee`Dd7M>vI3_qDf!*=MzCQ)i0f=4CIHa_bL0 z=p}Vymu~?;I2{jCx+w>wZx!1-NGu|rp=m{KH)nZ-^V7yWOPdHsa^N!kYRey*`?@(% z^CrqBJ+7K}aH$JN{n($VTv$=$c2d_zL!b_vSGe}kRm(q{)tOH%Wt#XzwDVN-tj1^U z;)5Ifx~xRXkR37Hv>F-Q@AhT=qllk$J5R8az7ONi?uBV~v55lwcfuW~f zInsgtvZIM=ignXyddtxEV(sZ4^|$I_uNb9!-2D2iYH9ahBHFvv)sp{R3J&bsNW2!D** z*f(J@^@q*V1TO#v#3V0h_}plX#e!W=ka@RtX*fuxy8L*t5r2GgwvVBpR#1Bt^3 zN`m?xKkm=#bXGTn{5r|hXKJ`aeKXo9!D#q6!neBv3lCi`F%&n~HDf?9X>FpyYmz0( zoOhuRzOn`3zfRQ1F#(yaYpd$Q(f}|XfBMdX6KzcN7v>LBS)y$ywtY}5^du8Ojrb@r z@j1W=Y)RSm>!v3%;j}witJ@>+P(h}ltKfc1s7BIj8ldVMnz1^A6C>@6t>RCKXzuoamv$B z*<*3qnf(mJt5{@j=Fz*LDA6fmH!aibpPgF8s-s!u@c$-<-HzVa|96QL0N-)1P#_!8 zL*>Hrt!_sTG{2qpx7JaxbkU!(An$YkxZ#ivyXIZtU(R)jeZq{HIrbRX*6TViJEQkr z%Zz`UekR8BIXml=2*tDv+3=9~bl~k6aZ942$kN!ab%9H{xH1GJT*{FlF z*P4Y#wKqYUkw%yQGTpZxk@z{vIu;pP5;Iv}S#H$&h@z5O+)wHY(Dl^0Q;yVDiqD42 zu#OPkT={g{^SPIwSl`i3f^~aHLV_xIHx1;wwszI6(@%H?AP*njOHIkzxfSP|38-m% zgP6Z9Jznnp6qib0Qd7gymlngklkjTWeI|jj0c9TczB5mSH2HNON+1H>)eE1s?TWSa zl3F=NNQ5WiBivL7!95v`7Cw2-=}~RWbKK7BH~~!~ky@%Ua_myoRf;gv>-}l-l`C zN9cAkU>`7{qLv#P@(tw_42}znAK%}JdB<6n*KV@&r_A>ASyd;>MvNM!KOK1Feu>&d zDXfJsg$r=m$-1Vh*c|-+w4DY9_OjAZHnMisXHo3=vXwS!<;Xb$h$K}+`bo4PS|08_ z5XD%TuX$ppuDFE#y@|hnvwNienycW!=}mrPmJC3RJf0!H1fb93Nj9V`qj56oO{R&^GB=*oflSfB7ZS&mk_gsh; ze-$genV;4AqdPavgypZVRT~_hV_esL8o#{D52x6vuy0Lv%KbxqpL~39sUT_C$HpWI zKagRb4v6nQOBDX1Vz4!Ex171Lv{X}Hp3q}{_@2$9mzuUy*mir;RN?|A&_l5=@XI#k zL$!68xBZ^rCw{TVJyC^WmI}SJ9V0~f6KlS`#LL{1-&dB>d53k>Kf_%Hwdjqqp5#bb zvB_RmrB#H`gXVI_(sD5=_X3jWc|43EIgHWc`NVP`a!v=EZ8}A*KTIqDL`T5%#D_qU z(hm2RoW$|D7uDt(2s4be5hlP$*Q)+Wm?E-50UNJNU*bdi@49GJx-{MVvmxwGKg7;6rxL4;>BVb^il}Pe z`oEtJTPc1^dvW9JThpuSev+QJxt~I@z97?0C|J66X0q0IAgpok8z)vVz$A+ERW4EX z;PS|LN5U;fwh7e)hlU5&pRD zBVnD`=)JHJ5dU*t{b?nOuoE8ukf>SOkY+;=K3L;zLTXp`8`BI8g&>))pAqfE(fL-} z4n@H109DUh)rM%JuvDG%uz_y-Jn!<_)6bh&5xW=lhRr~dPi^yLNAHO4^b64K)8Z2# zChlNp?z$0y!eR0`SILQwCTe*{Z0br>;Msf-dCA!t1{o$<>XxKnK1{8BvQ&;;x;Ayy zh^VCOP`1m2`g==&@7X_VgFGkyrOzn=M{X&W2>AC4AFl7N2F#Y{0b#O&Z#=_wP@Mbf zSp^JaooCEEFp$fNiwUlb`EsF`OoP|1RQqpj4mRXk>>Zx?HKlymW~I_6xG;WYT`}_U zdk3hyT6yKAa^>xSBuzIcz|;qw*G=7r9*^WeyA z=Aixl6_f8M|>T?)6-?7xF`?+U@}wa=Rxz?&hOnxrh4QsRrsB7F_K z?|J{buhsM>_&fixz`b;{4Dj2)gd-$MX@bwp*=;J|Kzoet6j&NP&C;4wsyJaD=m1HS!TnO8aEG0gr>F>M-M-!FdskPH=SW{KW=-oissOzo&mjuR za_tR__nEMt^c0v8sqZx9Q2{DH~v=^0CIY;-=&;u^+TGD6`@-kI}veT2St+f>~z%nf)bhOL7|=7IjYFb z{(+L#AG5~~6#?;514xDJ4{$wZ7gVR%qK}5w2jQH$>1)@xl*CDBLN64Pf7aWO4#o7+}P}&~xr#OSinH6Kt(32+cJ-73)S{Tu4$W{umP0oY1iy zK8JnN8UDQM8GU}{wX-)C6Di3umh$VL2dZaUS11_Wn}w;6jaNz9$tzKcfwu%IRzGE+}0^$f4RcKwJq27If^<)m$Q3 zM|UmuA3?kj89a9+Emmv-<$)N2ce!$&x#Dpoo93^j4!~Ql4;Ty1D8GlD^vHYqv6-w( z1ueOjbOWqG+gYlS#QrgrrA%q<<6HydB~>FLNNeYg(rOgN(9Xt!xAo!fFs;;6^cPMS zvK_5v4&mJS?1oo3B5H9DM7f6AHvAqg6JSy* zcX7PPevQV2;^J?idSDqIP3O{rM2W%P@~;ECdj+GJUL@RH-3P}BD=rX%!SqJA+m^w+ z{RDPtiO7TYQTDQQDe%IOz@FNyJqj76 z9#du$kz`j8P$qih?TvBKrl_kiO;8br#m0){jp4+|YW9r`le+)kP5MtR_tPd3FV@dk z5jK<)ARlujvuTh||5+Bj5A&XR^b9NgaiS3+d1*f~tEkOPS^k*GXOg}V17)-Seh-~K z>=gFkg^KuEUF^D?ac5q`K-?Wu-uB z0)l;4;{*!!|1QUlcLls0-k!sHQB1g|LAn$EqQ;`#toGdxl~+{CwXkha z6+u4PNxLZ<^RXS{U?uzTdwgwodgIO~NUm(AuElui5VZj8IsP1r7+w5mi3mSwEn}A9 zMEo8*)b`rkqoY9&krt$p?>u%FF^+7mTy)(4^L35^y633gU4eR(jKcxVLjXY0L&b@B z(#MGN`FAC30@|Sho`@35xW)t{5CF>`gTj>yIB6i4?S6&S4L>;HqQcaKZ@?)%5@)|S`S z!I~{CPupC%E>m<(@qlpc>MGY=>6#^_2&olUf+FGp1Y}*7W}eopuvENSrI{(36Ga6w zMM?xJ1J9rkprWE8Aad}>?)&?@ANTzipT~p0IK1Ak_v?9jaY|30-=Vna9hvy7Bs9Gq zIC~?dHLGiZ85g$p>d1N>sOFE0)U37BbPTGA5u*U?G;I{xL!H>`qx7~D!mf+IdQ)z_ zf{801ro|1#A`)ZVO_I0h;&gTuAxWnx3{>;e=r0}ZSx;>VrMfo>jKG^Pj zpe0SrA`yu6bdPl38;6nUEoG-R0^CAdBxP+gId6C^A(3;)#^!_ktB7#=SCNt(#Vv;; zGTt9^Ps)_N<%ND*bhLIak2DBDrJ@5~8K(bs*WsQ^NX)$3k?){s{lD4alPB94iBAvp z!(i<*SNhUDZdY%;#ITbMSs&0#N^C&N`YkV0MN#G^lx^vQ+iS)BpYpvmys-veWHaH} z6FoOIH6)TL`1D@YcL>XBPvqvBfEV9H3{3ST*J)jpjV^M35B2u*&#<^jdn&_HVFa@J zaFENs(3Qv2n{&~FW25_c9W(#5cI>2_+XUo&iWQ4S#%|$Kz8d|LC%H|z+h^SwK43?D<9-*_TY|$0*;qovF?uOj ze`ZT`S;Wjg6KD9RYCzm?TR%B66cxg|qu<-wtEpH$;*E6l?{-0u?@VXGmu~@O4_Css zc4dAHpojc^xCRz6#?5PBp4q#tBzDbXzhlTna>=J29?P%3&*;w@Ous;dZd?0<-^1wt zdz~l9Xde^h zH=CqiF4=Pwrhe{6PJW{KeQ`Tn-mL#vvape;%}t_DwstjXXHRZiI8ONGw?8%|6^?yg z`Q5@v(Y-yfM*_b1rh;*1|7VQltDk-M@E@y%TyO9aCh@z?`(JH#|MGO=q5J>&eaXhR z52|sYj~*w+zCZWPN!S1U{>t&p&knmAQ5%a!GFTmE1|$FTKS9V5%?C@9HdfOLMv;e& z#CUUO6M18?E4Vwn`!91_Tv7u_;zI{K3>Q7W8;Ptca9ueDGXH|zjG%m2PP^sLo{DXe+O=xkYJ^iyg zt4dsU#Qjm`_xYo_Hvt7+R%z!MU@=x#I21rbuV5DEre$MsVFp!F_wNS)&L(b9Sv24P zP4$iOyo`M@Ial7xJuNcL-%`;KR^`tbP7xH4jonr$(lqH#Iz8;|z0+)Ml`(jXP?304XnSIQsvef)k(#8-)4~b`+yEtY8ly0fqn9jBl@yar7os^^ykaVrW%GLjo*a zb-IQH4~)Joa;b11V)y1~-+mR@pek8i|M+3h&wh+>nXbL;f^tVxSzQ}!y#G2%_NI|Z z+lv8}sycLWV3&`0((aoL$JXIt+*c7d1K2!whm8^>dv}QL8Wtu^8}0P#y|u8}o$aB_ zo(T8L&&5cUJwxY6nTLi~n&Zs2sZG__3X3A&QH_5*c8+Gv3LbzJi6;Qd#7}WucVW7hx4lWBZ1kF461e+s9PA+G!k%nNQC-`vI%x(t=w~+%Te_}A zTw_spPmig&hYnOKRI!t5&jbY0N-YrCc0VEzSf^y{Sa@ieo*r5KW9;Rl-kqSvBc@U8 zV*p^B1wKR%;bC22lweM8_YLQuVr)lSwOUjdk_qbC!tc_p--`+t4{rP#;o#wp&zO39 zHNrudod&kn=S1i;fUF%^knK|qDH@>Tpjp54Ln$3h!qxHVYoY zxnI@Z7pQ3vSG0bi*DLINT)=eAPP%dczVROQERvXDO>A%mP=eWwHIW0dG4_vuI+DMV zyNka3x;N&e`O868W?@5x+`Sz0ieWYWL^ReQwmBK=AR}LV=dbZis z!Bti4gIu%J33JCjpa9E5#{KcbLVH+C4Dl5CiZ>lWTHh{$=&dpxiBnD9*~^$n7;x>sb;{F#%eT&NpLElHikPT2 ztK#7SrVO<0GEN`=Art%3H`n?seEZ;CDwibcdSdDdjm0Z63v*VfRr7zC%KBDwE8 zq;-0f_-RfXw5$WYvL7J#+W|E_Z`&b8xCe_uoa5M~)AC1}E3i69s_xKbl!5~-BOjHs z3JyYD@QhZVx~&s@Eqh{Y9{{jTN1Jg`l%M5-ZRm3Uc|nb;+`OO;jILZXo?j-`|)Kp%dFqhVf%|~Q)~l(72DTxJxazB@9W!iq)$Kkxpt+4G2goV zqz(&8dddQ=s$3Xr^ISBXfzuY!dEAO4OgXP|`ywo&8!c{eGvZB+tlWMdUbwWnSHh13 zfMJ2ix&}I7!2Lj}AtONlSr!3%Erc+`{le)$wG8=o@nPd*c#kX9hp2JYGDR0uNicK78V#yX~<47kk!LNQ%qlLXtCzba`*(n_NvXi4&OGu5+l137jG*7 zg)Ys!c(}Q2hy5W&`y$R(6bUG|#2t4eWY}Ggn-QxabV_hqITLt$vLdToC@aab;!mFh z!TUSw^Lw4xULHxnKJ%|V2mCzN7p}i-rEWr|h;h>3nqZLXZ|}=Fp!w7h;){Qm%cqK8 z?;Yyh?g`fq(-Yq%{Mg~Wpr<_l&UFxsrvZp*hN+*)<_kHP(hl+av3Jv1kz%)D7W+mL zz%P=QeD$lMdPiljbv1q?&XLv_?s+~Aq{RQdJ9qNA7}6Q~%J3jJ)ml^zwC*8UdydH; zj1M(bMunzUNKT<~{;3|LHy=ZxuyqRi5AK8hl|#t3J9&UOl;8l>?awORL%sO0Rq=H) z#sk=^kH`sFJ~OmS)O-S+;CP6iX>aVN!yvIv+B`nkBUH78+o6Cs% zFOY{1$d&s2Y5-9^Bn=Dc4T(`OIm?o*9Yp#)WLrFo} ze6<^}eIU*q8)o>I7$gW-Tx~26WCqauXZb|Y9;p6NQG+8If81?p6j*CPp#V3Xhe!W`*s6;Rw%7ZejPUZdJgm+qms zg3PCD#BYM#N++Y|(L}+km_g+4y}zo?PTCO{^9P7o+?|z@s-DwZM%#LK)p|7FOERsr zW_tESJYA@TQQlW3MsDMP)Pc?jnD_^PBTdyYL8OpWkUnQ*Y5($a&X^+&%JX2tg|@YPiq6k>b0&IQA|~{Sw`@BrdB&2vB)mSeM>v zO@lL1AUM8_$#bnG{}sW^aw`=~BovFW0}HLH&Zy5jHBoyS2S<^C@pl0}*hhHSRd3 zEDQXUlre>2ZB}nrvRq;F#H4+-&t?;()^}YPKOj9dhQFyDNH_oOz<)GVtdc9hx{2Rl zl;#@86p}a(m~cWQDoFCgztnDDD=iuY9C%vh2xOUP%nK`o{}?L>V0YYnsO5X$rW$IA zco5gMyzwBJ$jdK3b;!bEPs}mb3uCjYXZhI8@su+fR}=BvZZF>4s2kted;DNncDUh} zb8hp(xKqlp^{KhMf?@ypIo;IWsCCnSoR5rfNjy2zuLjLLstA8xH12RR=p|b(*^K*H zvv@e@xrTp$s_1`;R3BV?76Jyp>n<*ubZJ{G`ZR~-bi_N3CrGnit-KZ>jB%g!kE7r& zI`(qh`mt0D3ksH!y-J3cuxhlE<-cVV5hFMiz-5FH?S*JVAKf+V-aLN@n*z zBUvy0YUs143F@H;9!Zj`h$E9zvcmL*TilG2+p z<4xPBMY6^x@Wv{~A<$6KgPOMQBVHFB&YuisWZ=H3HufX^f>0Fpg-hf2jof=K_KaU) z;|Z23ZRKXPCuiNz>0Flt6Lf_x``u8iQ_eOr4gqr%gvKb5K(TWc5pkQDN(qNt*XK^ax2O! zbH|CporSPQzWsOKG(>tC+#gRyi;*zDpbFr4+)}gB2?swSv~F_RSiGtX)%>n8<|bS( zs3>nytSrARpL;Z1K&sA8{z=<(f^Y%*D|-2nx*!CS*W2d{{n;(fm`qAcMOo1`Ej<;~ zir}#JH79~_{atTWpwzJ1O8&%a*mdEdY9~FX7}yjb6FNbvIU#C5d*5y#?-ijT2r^phlv#)sV6nX*z%JW;*~URtJc04 z)bpQH6KUF0{w(U9WxoQDQro}Qr<7Hi+yT7sMKpdNX7FCS^o47K_h3Kw6ZNKl9xWc> zF4gg7UrF5fjwBlQ?1yl`UsyN^bB1igfV^@f!@ zqRndXFVFAESmYR%zn~Yd{+sN+vJ_Br&hiNE+&jE=lTGDZO7UbgY(`Y9e+h;M*^~SF z_M=xzxy>n_Q$<^GBE~SlHn(f2f)y)abdRf1cA_Z3Zm(i{Q8D$oq}l$D*S zX_*lJKzYl*(|C!OIKTqU#k)tIl5}Wfk{gOaLDu+T-QO8)86@SMGMH`5J9n5iZr3Skxc7j8?n6-EtO@ZZgPp?o`ZrrYytM1|TaJ zfZ>o0cSM@CG6I}IP_6@iCCMUetIA%=6og4$Hno(I=NVf7@<#StqqE2yRudsG!;)~x z95F}v*7N5kr``fHs6cpMtkhQt7#9)W*e7T|g)lIOp0H9e&`*bwiE zEqc&!DIl@)?pl z^{joI|F!(YNn^5!D|TSG8s{ITiHmXSYEIxQZHMNXanOrFh|w76nSVKgDd~&d%1%Se zqx@`=?fEaxl(m4-i-whQ5D-EQcFQF0WWt52~C9BZX6NRi<(aVwm~ zeO-5#l|M1=Y2TEDeWmHpUH__SZkHUxm?$ zH9e9qVF9zH=sDt~?rocA7e+X-(3)I`B$Q0=>CKYd7$=N?2JXNG4cgdcT?#D8bdz7} z5fE(X{K)lkQtXM`&$mP+84?GXqG6{fZ$Z6u>K4-cMYc;oNzFO1b?Yeu(RxXCZlX&D z-#t{-R}>P$079&Vb=JR_|Mz4KF5iL2tZdYQ*fW-mR&&`z*$!CPn^S3mV9al$+R1Cr zvmcI?Sfx)o>kmLy-a;r{Jy}CH>s;7}ojDF4f4V=NrRnvM$O=^wNqBG~abz&i)g8mM=fre4cBjv8uI&CWm^tSkhp?@zl()Is zLrDoCw6AISN=FX-G4K4wJ9nT_wY}91{qf>aEcV6q1eEA`Lm8%Qo#{A}rrvsQ6`xSN z+@PE1OP=dSa-KGL!LXGPeg?^l6V-6Wvi=2=@P2bmiemTx?Y&bHwi1CRMm7pugW}ov z5=@}bIi|UeLp@1)ojAg{JNM7U)kpXHS^;JIhNi{YaEyEmjCSmMpVusKM+PZM__Pu> zu>_uy@C=EAEvBK<+u6xpT-j|T@DWh=!OuZ7tJHKyFL++qi|1SY-sO%0L+Ea>by$EZpmv1c>|=CW*faLE7FuH)i*=bPn^59 zq!tNPPNf1n~i$u`b%;vq!7i z(GI}zzgXo2LRC@D)_Wix5jQR;3}_M&Nc zPeD@K)cb;rHKI8;fcrkIb8UXjH1o}(#b^jDo>=d)7AcNpSZ~?xrNz{o!?vSd1V*jr z(pq10P(Nu0GNXXhg;NuyT-K=cCUo1b_Tf7!l0;%zb5+cdX7-u;)>q3ZgmVp)B!!|3 z;^v+`+~Hp;Uu#sTLP9Q7+9RRvkvbqvy!fnnGG#DCSjnz zNH7U{y4NPPXZQ|k-gBW*x~9va2eqe|whMHdZp7_^;$Raf-SF>NE6M!gU@iMvy$9}; zd?I(Rtl_-l!g)}#=7tXohQ_ad)EJu;+2mtxE}>7zp=HixxCcy{zAn2jskCegTNVQm+kCe~ zb;o%^5bxY(m47WwL2Ma%ZTN$%it<^PAp|QZsTt)bTVrFoNgBOO{|#lHvzA2Vti9#n zO*Jij4G4P$0<(3Mk+eG5_fOb@qU_<#wXAH(A%{x#%#qxH;PyJS8d(_p+%z4U zZF;8=s(uXOl`9YSuYD*{z@>@3Z@ThTPTn=Sze;pRb8z{McZtmD8}^UGb?L3@%uS`= zjECtj`%v#Uj^>^|PYdpSjzR39vLBjj@&JN&! zX&~J9V#?~uJ|||iXnG_|p!}LUIix?piGAM|&@b-pI4oLh6bylxjn+1AaV&@0Iw9{B zduC36dFmn}!?Jwwp}O1$Y+G|L>SeKZcVYX()E(5kh50)6y#9}ll^Dm|-y^GzXBLfH z5>|$?Yie>y!5`{Hqw;T&ftRD`s*WL(0QXoA#=Szoa7`ZF8s{!tDL%@rPK!*V)h_-9kVlBK$FDt571z#A6K@wm6Kiurk z`#46w!``P!4fHn;*`m1}6U5hTcF62WR{68NM6Xk_g3UR=r)jpF@D(q}+Ug}F2yaw% zRjOFGzybDR_ECnSBGpu0?@QI<^d{%xf<|&PQpR+x3Gi12fN`%+1eKOHbfiDhL8BN> z(Z1sxT|%eB1(Hvq{7%6mSA}8ek!mj3{2W_S`Ori0L>+uQ5GdrJ(l^5?7sq2wsd_h- z52mFw{TBY6pf!M^6JFMy-S9|I-fgHrmyXVH=aygWt#PbX;cw<#sN5jjR+C=zy#)=7 zk|fX+v>0`AMx4~N3?e|tG)v(K`A2}{7DitZ5EI>oCdWeuTJ@Kl5RLu*?bPpwolkVk zeJYz1w07o9w{$C=PsndN@Z9H%dEM>TzG|pL|o(nO+{PO7? z>5qG#Wb1J|5--H8Cg3J}UnoN9rpm1cCOhtr?rSa2(Je>WCX_4y$C!y-QA5;gyRGXW zaoo0IQkQBK{;sF6rEKn~{;?LTJ`-MfV#DxBtz~@3UAK!NTgl|;SM1nX2qMR%b4IFNjV0VD@4-&%+It(6qiZzSA5Ok||f*&xgE)V1CrSV{a5p?N9Ym%i4)cdbie z96oT;mfq^bWYopgkmN!ate_!@q51<6sk?>0ORdfohR|4-UyLF7jqLEK1(v?(tMnRH zeT`)$#dAb14OUM|wo>0GtyPQeg_X)LwBK#2L-kgtP9RUUedyiq`I@0`)iQTME7E&! zsV)`+NE4beuei>0FWIQJ@BwWHc06pYk&X`#C!I93eg*5!uuaA(r}Mg?n#D5Jxu}5} z_X0OeMhW@p>J@Dd)Z0vh+BNkwR_aolcc0?r+bYwnYA>(RQRi@cCOE5Pz&&cB^ux2T ziF1P<%pGq4Z}L%z|Lj z#{Fi++W#7?<5-)^0HLxupVcQ?ZN-j`+4LPaREM_e73IH{JLOc zs-T9~GrxH+1Vrl)P0XsdYrz+%u4*>zhx6nsb-IPT!_~K=!b^(Y<{bvaIbKOyeH6TI z0Gz}LIr-i;E&~ z3q#7}49ASGOK;b;DAs4L2|`m-tx*gE_XbMP8_Iyb_t_IUQSaOvIVWoh?^-h?bb1}! zQqU3a+}V-iU?;90l`otP0P^&_dx&ScpAN|g*3Ws;wq}o%l;Ee2L8ZcB!_kQ_UNg4m zS8kQH0jSjMkAwv;rA)l8v^P5U*2&)H1*)6TKX@)e_se+8*npEXATIo}&yG6IU#<2I z9jdCFN)a^d2mMD})odwhJa=W6ItnnGHsaKU)GT;#eYHh%=RE?_^cg(Thd-+X?~HG#bKaCU z-fIlmt2u%g2=X)}E@hA}*zW@&XV56z95>|UJfZhk-;;x9eOZ`|n}AwE z|0(<2&}s}+9^B#=*Nw&^TcZp`fL!v3u3mFwIsFd_`Wics#++4Nqn9fGHOkJ~KH8Cf zsYv}^oIVyAe$uVuc=$7#xMpWmg*;1&4y#i+sU+jh6O{b=?DTqO=+hc&_vPmE{K>fG z-4O_m%h#y^XnU?8p=rS*8&P^AMC~3ySSuNAoz7sl8wbd$1>E(T3B^BY;=PM|(yXT! zI~vM3IU|GhIA~2!_JrU%JNy+Ty(#tN%hXiE9KQyB62HFa+t$9tbu-dK@F_;G+og`r z&9P?oo%K~-_EsKO7qrn|kCil@cC$1SSt8Ys_oLLGj<4`CB@yj@3x#t}q)TgZ|3$Yv zr-y(z9M+Ef(r!A{lp5i=wz;c4L;A^ci#Vy>_ZCgZ{yJCRpI+Bn)ix>YVIG@)lD#Z0 zPcC&vOmvA>3JQ|O^|csZ{|{Nxc;n9@HP5054B9-}xZWH@cqM5ygG=?)22&viIZoc3 z1UDeC#>5XoM6qH_D4jYFu^jmyn%e%*l`-YJakP&558J}SKY6dwiA})U#PW$#X6eP} zlU)aedmO5Qd9tMyApB4G8&I=R3g~DnYjjZB0hdUg?lMsDYRZt%W4I(Blq36H@B&*Qo(qf1_1WfC}etEvs|h?jQcslHIrpENi@Ts+8=1(Q7^ov#zQo ze(5#8{*JGyTpo4oQ27DTj^0?btr0*8aU1<@?p7C;J@>#Fml)*iHVJ+T&s+p6kPTA2 zv$Ja6{bUff&M&HE?wUR6^RZC*fVZDU_mUZ|My?$v>&N zWnRiN$Mj*uTJo-k+2q={(?Z=ISlHIK)Dv+WF9}VZG zuw0!m;lIXNmlnd;#3oZ8x@Le{!Zv=cyyV!+&`tMlT%Pbhj??VBOLt3C3is3!c$tn! z-=Z)pKi<7V<4DP|p-Y!zqC#aw>1}=q^W{p0XIFcn7YEdDkLYA;(j<9EA{XI~y>lYI zW3(&3d4HM`?qOSPy_?Sc!CP=0PR8;TZhZU8W1iw$N|oRNJ}ZDs*i>^SyJ9|gAUd8j zsea*|Hcmgh_#W7V`ebksT9Lfaev>2h&qMQ-9HvwbsmvBOt?Ek8|(}BC%l~aJb26 z3Q6xmu$q4Oxh6Cwjyapt{&QJxP}#ixz>XGl@+{%nDUyaKgUO2=FpNZbX}k1|vu6Pb zdz%QMa_851akRvzw^*j${G@TqDoZ$3U#tAJYkdV1uKX-Iyi~a-dl7;)C786!FK@SF znIk0vAHVJ{QI>G!*Z-!fr>-m_J;3Ut;f^vIa~DW)E>1VnF=@mf*Bus0EYGXejuVTn zOhf43AxR&k3>ORa5ROx+zqP?xm5nJfR~Q+@g%PKmnsLcz@$sszaSPHuXDnaw$Fuh z#Tvfy3*T0K!+Y)`Uv$8kteLcMzn68u|L|MB-6frxh*dU8C7n4RZg^KFW%2}jI00dP zAB}?|Srz!KNK@Yj(OqGCP}^_#0rRm=d`D^Udp7`krE$BE@Z+iu2A0G^vUH7 z>uY_DDMlX(wqG9P=$bGd+q=|KM+H_xDwo+Azt~CY@9A8cx9-B!+rO`7k=;fR^WO=x|!os3?0uB{Nn`MFrQXKE@YJ*SNzp~}U0PxC(ExM40x zt+TPlVr7W~*XvLcSADJKEJ}L18|zkCM=PiYWc+^Dt}q!3|Gs)^D=(%*$-LSGS$fup z`X~-22#H5CT5YYE=D8=18R>@dRDlz7v5^mUI1|)n7MgqV}9pky7;~HH6_j;2VLeOi6nBV8nl3l`DajSQ6*HAQLn|_I%Ma0BT!* z<8d`=b*)>n+w%Y|UG7tsq~;o+=uWKL=zX62LRFOibo*T*V+8{lebp~D=q;Om#mOd` z4!3H#H9;n7YtH@hiW*xVYIxiF|EcBH9i*8&&u(kuSxmlpTuJ$pq;5ya9i?`K*=O!) zUZ)KC?*#LNA*SQj$!qzuD(70)D@j@FX2_B)t`xG`qwQp&$AcZeuQYdG+2dk6mTvuu z!W*&(gSRFsWYV|C z*DBMkr%%~|{pZ>v%6mrpvQi=_9D73l?qI%zlY-ln7y#$9|G^n_yN z`Y24Dd-eJ__3zv^uo5oSxs@M*vBE-R8#c#@mq5tLwzCCEZYma@y?zOXW@Lb^C)L0# zbR>SfXo;j&pCsRKNKFY-dDU&FOBr{K{@k^85P7eKi_q_<(rt~1Ow&4*Gi{Q=R>+>F zAu7Z;5CMR!4mcu6*m*j`I>G}RK!|R2_h>ezzF@vehgZH!s_6cgC)qvHHYeUXrx--BgMPtD# zm*)U*-US6HMy#8n7n51Y2AjVzagn=_8_&UphcithW5E6uJ4J13xb6uJTy|Ouo-y%H z6ddOiB%oxkqPJt0sjhxk_j_mSZxhwObioo6UJhZKAcHDF7LD4-%vm}|)#WBJD`k>` z$|_u9UQsp#8tKsqa_7?8-U+%u%_SO6u<3(ugbR4(cXLfaTpqVJ|rH>%x?_2F%9HRLb)M+09H;(A-Pr4z*Fn~ zp??W1z~4U-S{y*cmWa=XyCO*jH%BuQ6BOmb6V&(TByC?^gu}5HQ4fF-_J2}gHn~4h zNajijS5C?cf#XeDR>i`R090>->~+zK<#{&CFm6roCfklblm2nH8o&Ngh-f{R%h&Wwy(8ul-at{Men|>jVxcUGO!O7nC$Z>CW30;@P^Z z<-WpnYC}%KQ?5(X#BAv|U9rbAt8$o2Pg|U0x$RplYL6Jer_tN&gP?rigeJpv)cHYX9ly1$ zYFL>L5Xo!43s*jOxbKtt^$s2lF^`roa68y-hn(ZoPXS8s>H|mk#sz^xYD>|T;%wc! z*Q}6xN37R&@g(dk(pj-H#|!>>|C%(GMuaTpc%`bFbHV8vSsS&`!uPqXKGN>NSs12_ zHzIAFGCJPmUjNQ|oz?>=77gdU4^PZ2{?qilz|%v0W|gJ$;J% zcAReF-tzBAC1we4t#8UZvLFbft;a|5B(7U%Y{JM;(Fwri0P$(}{g z*W3a9_z=4gMODC!-k$NbQA({f5_aSv^>c;hqd7X>4==^N20M>GWEEE;*sP`}nMOai zI7?Xne(771K7ot8kNbB>VWVyCG9S@|k5w;Ra*4powPJqM(=L+o_ZrlwbACc!?>Fhy zFSEk3RYf5I)#fGT;)GI0ZmXEPlowasX#P0qUqm9TN%fPRtAY+cuzE7>{yeKP60p}$d)VG_Z-f)zIi|CWjABI5Ftm$&Nm`YcdD)cGC|0_Eo>N)fviSFb+dbiTusA|ZyJ zuVJ_?At|%slLf=-QnSBc@oK&OTFr}YvNz1Wr;Z0GYvmDc#nPLzJt@N+7sd*@R1b(? z7F`WX;qMj6pQlu{fNW)9;}QfSY_aGCe$;SuuaJC$4z?`cnC!-;lxd>C5fdM$s&R+G z<{qh=kQ%DqT(^@j#doK}jOe*N<<}k*Equk2zI<7gv#fWlozQPlkw*NoaWGcL+)U`_ z0I*BvTAN}tr1v*nPV}H5f%r?E$886Zd&YG`7+2QHbcIlJ6EI_Etu zsb&*9V@>kJanyD=i|;9#L#M5aL(YUxzprtmO*PVzGtp9P{w_s(h;y`?XNd0ktX5cf zD*O=)AB!>IB{DefP%g?TyJi#_03Ot z>^8bIXB^``a^_Sew!_z%4o{u4lY&935^Bk--Ytlx=ou)@&&+7w(=!VudQAs&?Bi7YW z;zJ424{KFltKeFLrKD~I=eVp3@q;EARKAGxm0CK-8nfu%0LZTqS?&YDow(GL`Q?f6 zUP~WnWr$mq*<8LJyD{VHlWIHzile$%$5`S(#X)|Z42WLrh+J%Cbj&Msd=guA#g?c! z+pUoWj>O(f$g2+`so9)@T}}lRa(+8=rM`?~b%+-D8`E3AXsuGhBXd7TR(NZM##Rfy z9a(KheZ=Z$q>}Xu+q;>E`p*eaT?@B>YcKbAyWs9YY?gx9oyd0?u28*_f)74{AK8yT0fT4-4noqm7Fz-&( z9X=pVK7?7ebI`v^{GL5f+0ckC#IOYUOMD%S8*{1P5|fu(>{ww^_Xyfk8kDmdqC*Y@TDd;>Ss7F z9hwyCnd&K|AAum3!Nax|^#BWdB!*iiShTWo-m-|<=A-kagY2wo-0sr~_ z*7tSjE?~m*0w2*_;}50__q|FFUnUeS|LkqQbnh^UJ0t(jzU>}-^Z;d8n?OzM5V6;l@W9C zh6OHx^Wd(;Ia`6p?hK{0wVvgtHJZYohfg`#rFueP+}&?yP6P_H;_ zn0HnVJ42t}d%ceKJbU}WC~PUVN8F&VsUYSsg57{n-9QXkZ(3EL5PR*xgEvLmb5(>C z52pC&{lgngZv_M^wku!I#$?4ktJ2C9BWS5h|JNn-O-CB?U5#Ts!oMBC>SxiOJ0jjz%N(h zokK^Z^MMaQ{(llxxekkit;B|qfoRUnLgTX%PPouH6*af7GAiCw868xiYREr)fPzH= zmItU)Bk;S>(%{qpJ4N+QyI@LOg4SU(#YJ=ZqckeT`U17}(f^+X&?TDI3c3idjxucC z{5sKoD_qiXLeyI($GN#v9MK<*Om6<7J-tGuMfo>q{5Ojhxkz(e4B+ zwF~5$O?RADyeWvMWWl~fciR0p%1M~f|N9Umv-zi6}FQRVd1xj(3$Wb%imL_+zewo z0n|G0Uy<;+@3n1(VaC8p(4&wWzKbxCKX*6O?yxk#O7rL)=vgCPL@2xxpSFuB$#UFW zz-fEX%R0R{_qL#4{v#^@9=Q&&yCSX3jViAV)v0V)q$z9r3_111bhGyd>H19L5uU1p zDXFCp!wbgsVdhFi(+8~*pO(M7AKh@3T87IH?{&HsUS7-xHVR4H&XK2f)opJ%&h90SK|Br*g-1XCyF)f z8$eK$AR=yVB_qDR-(UQ7c87nmm-0KXy3iqeIHW>ZTaJzzEB6y-{*6{raI4^Z&ia`Y zpjyw9kG#`(PPQF(Kjy2l>n80-z~I8+OMiMQUtBCQ(ggZUIyrgN>QZp-=f?i!=Vy}` z@)*paAWpz^oJW!dOVi9xyDRFUvqpa1ANL!)%<-bV5d`J~q;#{k5eC3K{-B;Ty{|E2jA2k!_ zn#z-K{MJru&SIf`*GJy_E_uUOp4LGDwZs#;o?F`^&PyC{2XDYnJpHQp+`F-h5G*#( zIpDwO=QYD_(!Uy5P8dRh5cQEOB$9Xd0BbA;Q~dCL+7q(*rDql@!KdBj9ql_6MwDVx z<}>3@G!YV>CM{zx=gq?I6yz#8;JAiAtz_*%bsp3tkiR-~K_Bly5`W7G*$c(#oA-|n zWX`3Dlb`L;Nj29hG8A*al(ZA%BROM8qw3t?>szHo8S%t-@Hk3`Dq6Ut^xfhoU0L~p zmjy;$LzGTJ=Zz~`g3GZeOuf!-ZSF`Y%J) zfAi7Z;;^N=8^7Cig$U-_hW#BVZ^^XQUO@w<@Wi-DN^~D*Kxb zJ0-O0-KRk;_Tcf~LIaxh?rLzw>URn1zW}mu_VEC#|I#b#lKMqcsYm2mmen+RBWE8q zkL9A6OF{|fFM8tTA?k{758UGPK!?Mud<9yD*Uf$l*mkhL12hVM!8w43+&{_&;xWdNoEzSNfi@xprtz*NXL%9&TN%V| zeSdfHxCq-^PbUnCBkxC#sQ%GT*|=pS4{>FKKkYD-gg{Qb_om?f1wnx`E7ru{V*Wp_ z-uy4g#Owc`nWmiHmW<;}T5gq<(^Qf*?ugSg=`@v2tCb2am6IDPxv*DOT5g$@mIBjQ znJX?Kq5>JNsnDWeqPPMo3JL8lf^gPoO>?uk4i^Olox$R0JedmXR+x zsW^Ew_UOQWdjr-h(PS|-Qs1^~--k*rQo44$3mfFbG1TNwECuA#Jf zblmdCbOSC&28zai%mo{va!wN<{RPMJnit2e*nx@ zD3+(UD&95g%H!FG;fyeAg8td_LXnV>oJPzjdQ~p+Z)qNYOF_3oa*CnK+8|>He!}5@ zQyU@VH83^M8>;TvV{NRRFbUzSaSLy(F|1gi?*MyX9?>{J$TgzB5RKbvMIIeovwOF4 z(ITl{Pr+%$kAlI;YTt1~D{;J^;4#oyFU^&I+9-|1`R;>ITc0qxnN5IG&DO#3s3;5{ zoe3j!PK)0@&k#A8wSiL`Ygj;o5s(dCBQQDxRl2Nzq6<8O2G zBI^*CiQBvf6Th&k-=DYo?gc;_{tXZGj=3qC{6c{>ikqml$}VOEX-_OEEB7LQQrP&0(Va4cy;o0;lnfW z4z^tLY*`#|em96N8#GI8Ivwq7d)jwt=wztk1#|e*T=Uz~w(JV}z*>flw~N~)U>?b| zo-idw0-MOUD(F+12XY>codz0@&Cd5gw?w5}E-blKYEZ9rL57iO+8dX1m?INC2eYPc(vPMd2y#a6iK3!2)P!pXpU8o{#6oyK{hXs3r zsB_7w9Y<$d2`kF&4A4Mk;D}?=Ss>KQbP3?QX5ql5AOq*c)6bMmn!86u*&z zf@7jRFR7j!#?)M-(r|X~4d;j)aWvvxJJ+|9wcJ5_l9xFe(^7jiN}B?&7$^-6Oem&Z z`B;(`+PY4+kT=l2dW1_$X5RPAt?Kl|Y3~HtE6AayjhXVzNdMdskwlm)U1;}ZDf5wq z&F@Z7RFy^8TJw-}kaGa-FMIc3;zofNLV55jwo=-E7)B8Ml{fSrv??~~2H^uqQfVRu zs~dQMoX%&~BR54!Q}_bXF1z`i%eKrP4m<1mTDeHWyxW~JE3bQfO&Un_Tc57>aRS6R zG8GS*WNlG_ZYAxj*wg|UoxWW$-s;%VGr(zy=8>zq(RbySxhU=TFA23Tdt>jl4C#8LU2Kq=b&$ zFW06G(gkT4xgY?y6hOjdO=J`qmme7?KgsqtUmdp{m34kPk>sHfd`9|N@eon_q~INW zdoqnl(`T5Q(>MX+W?SLjVyfV&*_T+vR9>SO-aGIu1p0A#M|zUG*(%5Nc+%VeJRcn$ zN+x(s?S?6OYx1r&&qpv1Kb4L6frk%?j%H085W0S52Z6;wslfcFG^EIa_YYqigH-0$nS`4YqFOYn6}W}C?yJ- zNU%#6->&!CQ8#40i{_OOG|A?dir#-V*U+q^rb7EF)5P}<*Di#NYpS@Vi4~OMX6AF| z+gsgc@cBfv%2Pe%Ch3f7%R}0{9G#1N`so4?>Y0@O_?QdrYVO-ED#|}EQLsLZzVbSd zR^1j1K-nEWq{N~EF zE~u#P=gl4;(_rnBV83Z=E0OZgoRkXdA?HBM+$wa?v26!`Wy#dFo4MGGMpWk0wTCyf zwLC6IHqf5XsktG+R83^QeLlIG5GUfF!g2eB@7uDkZd~o7pr+a+y%=HVkll3Ham=j> z3$Ll4JTUM^AV7kl|41KAVs^qg?6mxY7TBAn5aFZaY&lAN)2G7FoHV=kF1Hw8cej9& z5&^||?`=hQ#yQwM2kqD8i5#+GmnjqCe7PYZwtZ)+y2GtovscLHFQ9uFwCpwGtQ&k# zNuP$z4ljO=cwFwOR-pr>-cE$v!Nb$@9=l??Xo~uB+bU7@2LhPeiaFOWBaltVh>&xh zF0&4HWW{EMV(7M3u8O%{nFcabWX3uP)S`2lNr=i9BON;@!!Kr70Z{BNER3CC44;YB z=dg<#0iB-b8g+^iJ;b+Wqu=^ZcEsv@;{R%)(O2x#jb`9P{n{#%P))o*ad;JA20rGK z$iJ29GIkYTqK{=T@5C!A)yQ@J6vw$ry*6F`6@`i40v4ZZ^mt;d4*E z^l_u)0>IDVE2i^I$A+FYBTlR$9MWGl$;)LpMY5DoQRRZ3JF8-jvQtXTDXv$XbA%Rqc62woe)b*iqXB=Jb?{_o zq7ld+_d)PW(XiDLChcj}ZYXFjriR!&)2tB3I1e9Xd|nc%l8Cn#qTF8kyh{P5HL(sO-X>s@48s7!@FEF}Qw#+IjS`$r>L;Z( z3)6)!#$|Rk?hUbgP~XPWjEE{&el)u;g?^t$b1a&skwN+uTWQK-AcQXDmwp_YD~1*6T#dpb;z<#Kplo!XiTOEC~QEKeV~}9PKpka53vi=#0OLNjb7}(5l3rXH_%%e zk!qOpxH*tfnBb<2W+dJ3h_?@4R1ahIn%Noq{z?k4w}K7+q8#C~z7&>E^soyerv zm+|#&w}NrvUrjvZOOt&!9{Q2(d%9NEUFafteKvs335RFj_;-Wc=|w;!W~H35y$U$f zEu3U09Pik7r}pt9Ipo0cq>#gIZ)dgC)cMw65;}c#THKRq9X-vPFggChrjZv2DAfE+ zdwtV93|wx!FfYnS+^d;_}_o@Zw|`CNVmXuE;D*!Zk0s{g!d^!LF<$$| zzXQ)brqqO^WoO|wc04oJ5ca$+6U%AV^nUq&#|;JAr*nA~!vQt_H3ysQUJ1VrB*Fff z6Aidv9M6QeOfFt|gl(l_yTy*bsa~$?aWiX*@(l$h7|*m7D3L@b_9(@CK+Y~&I!|>{Mk~{#vq+7nz4W<={c78y3M$DA3vk)U+Mwg z&kh3{u4+V3`ovrQax_?du!!9nvn=a{K`|?MN7}NH9Ap?QkGPjM>izZes!YEM!hF9& zZF5X7o3KbiPXVEhe;7^fNgP76@h>vwgAZd?_Cbuh3wk~}C1{SWf`)`7Ee)L+n70LC`z%8q(*&?x@ z?oE>(xs51{sh~$n1m3Q7ag?G`Huji4#|JKtE^NK{xx}L+c03=q(hW2!)AT-+2mc+8 zpo^vJQi_FNBnmHoYF&gid9+}=8p&^hqsfcWTlnyO%cWdtGtX>lp0TW%o8cF&(|RR! zy+^qsSd%)tgVtYhn~_rjc53A6+uIR5U@k!{r`Xg@%AQp0YFNIeL=h_{XU0;#hm#(| z!`@L=HK#yOT3-`tqv;kl?P?pSOW?XIQQ1T9@ul_w#z%`7WML5U%b?7&;wL52rocv* zmD&q30?n!s8s0I$cQ`=w9Ihgdd`{#-y}eXk{Ueg)Qg>HDZ?GS+p^YQ=#YOO9J%0yv zEx#oLmLA|$q^DX4eQDqk)|Af^S-CcIG~#1Yoi)><5d&Oz#p~Y5V@bj@HOntE88=9N z!)dvbN1JOG=LB9N48*o3MMd`vV%RxbV;DdGn4o>rr2Qtyt!jOyx-otrZbfI$+}quI zG}BMCbj6iZP3}BY`K&$)w0Oi_{X5(nK3>Xogq^{mcEy!;*7aeqhS3mtSW)`Onz`kV zRX#bPlMN|hJkMs`$|P5=g3xXKoh+)UwDpU5<7Lq*0J@w{pGm8nr?yB05wKWWvtvwdw1HThUAsHOHo z{lN5K_H;0+1*Cm)M6}14C&*6I4@8T;3E3z3$pd<`Jmnh_H0JnYkK?8LJv%P(K(QGw zh^w9^Lkd<{77X;;4W&I}To_nR*ieg7G+3o%2Bq!oTK(Uhd)t`z(&|6*#iq!7q+gZy z(m_At9B|XvE6GM7qEY|J4@&0;w%J=#&pyw^PKaHwWZl2o+kcyo85(}|5JMwNK@Y5ZWPA!yRZ>VmJ1Zvf_cI%+JmNlv5f*eO~9-d^*x{;zp5*9 z)PE2`w~u{Q>!<8{rB9C5oB9m5_v3OFGzmXlRYcSdb_1oz?p7CR8z{{1aq=@5q3#ew z;|!XeQzG=FptaWc0{21GraVH#O|Kl0$@-)y$#>ejL71t>?1I_FKWtLTJBE6KD!Dci zG1Rb*$+Hfn|13V%`bmik#p=AeiXhh-X#bf$_FCuh{$MDSgHK9Yd0}rPVWmahqx5Pr ztQtR!wQLe&Oo@wi`ln*tVm1e@5Ku)FD0;nF(VGHv-g*g&ywupOC^881q4cRR=yGY1 zG#E->LDVb>OeO*Jz%~{fT4eV4&7}Orb9gdiaOJkpqzxDGtos~pYPUbM&s+UCVojc3 zttu*q$1}p?^=Xdv7oeg8e1?WaMAD-Zrwq?b;kZiwZsWp`Uy=`WMBW-b5CEf#0DA6Q zXqtn>D-jOC)nRm}{nD~O%m0yQ8p}v+%AN2edmljdzC6k3sVH|crrif@RC}d%P3Zm& zV933QQ?RTRwYz(jR(EE{2}O7yl1nCIsM;=XMW*G_Fi!caJM@6W&ALl;lRST9RQ<6t z1p$4Kwe7P8J$v~+dktn8_S|?o*eJ@zYABn~=N7UplOPTX#5LigD3bo#SCpi5<%@X5 z&urPNe9tBiW}WILtGEX)J@Scui?@7wupD;*IgJPYvm}XLxBxUQ?(wJ(O>VHge7$Za zV=*gj`P%jb=)3y%MQgVeP6@F?@tmflnwW5IMe)4IxyEQx!#rcD6qh zktELd8T}PihmND>j*K=BHirr#eW1T~SB;yPQLazaKOU_v$%`#xJmRW1wz9o209kbLTCK)uMJ64Ko~6Vs1no#Yo%(!mW#so2keT`q|}hJtZR|Ea@#`InrT@N3Y!!X8haduyLUF2z5*ZXC`I)_M#q0{Oq|*XLh7Q2PUaQJvj9J?ZBMFNwB6NCrX(C^&dIdBR(D*7tlKa{IV% z>qS*In9A~c3=O1vPWJ_o+?yJUoTW7WyJsBa+2d^LHBo6S;%!rG2LzW})mMCm(p;-r zh)m6YuNtwACf}`~BOk=Oe&+v$nckg;g_J21JO2h#n2 z#jK^yznRWvQ9i}^#^|fX|0Vn3zWO-BDq$sDVcUumnzKzOjmRZJ%+?&|4H(Bu9k}IS zOs{~)nD-&bS3QR5QYV~7CW7iMC1PuUaZ(Q4q&#-Z5v$0A87T7nG{%aAOJ8Zm_NvwL z7XeVDM90_4P*By8UK%h))6h}$(~K3@!f>Yu$23KfnfK6tTtCrwpKjyD*gKcqZLP-C zizz#`r>-!vI)K4Y!$<9}UFkawresTFZVXEBD41Z}^b#~QF>D><`7yV|hmR^wuWSTP zzMXz`u4xBa?x%31>1O4?>cm}rL$F7hfAXtI#Wjw*#)dDRg(2aYPAj)+fFBGp0nktC z<^VqLW(x0MHz_)=TF^mz*qowx#?1F-QTfe*dx7KgwyMig^#KVNLk*BppnYVwEmFfB zXZ^Z(GNIT{{!SI9Z2O@Rn)lJiO#ACWJS^TYY@)m9vjEq&o;)$^h^gmeJbDE!wc)~O z+l3fd!hVf_;(=MuW7JQ`1v=0lq!w`WEI3wq#L+envwJZ595B9f!TeXl4@8_OJHUV< z#;PDcBj!f>dhCm)Uw5|3W!r1m=dlfjgS$42Dyyh>-T2nEk^PT+6Q)tXs)@HfC+W#A z#+h|^c-P5zPw=uS)I(NC)bxsgy45uM&ige*E-GwNu$`ksR?M7NSK%T0q^zTFZ=dAt zj*h>kAGNMjHBXOVn=FtN;4{JK#iasa+G&D*f;VbwmOM?c7Q|&!yK6WDYd_IPG?cVu zg6ej1JVq;{6l?B7jB`U%=Or-^KK_%h16Hw#2W~gP2S806Y8^LC^arVwg1LgvE3-yxL6h6T@pL zs;RIfu!&!2YI)pt0pFT&%02p%n$f3m&1Y%(f0j;jLhzsGl82b4{2g&Qg*yn> zO#c-)RNYmxGn72~DT!zp3qYgBJmID4CX!D%r{?1F)b^z3z&i{ST~nv8HspTR?;}h| z9O^*}os*w2fYV`#zd5FkH@3&yg~Uc5e|zo3KP88C*B&HP6T&iu4!dxS3g9lt^lt+L zCHs!!dJc^KzqIJTg1(-^{8!8OdA4TkPxoLA|J!n@`C<2u1J(5_W6h}!a|-jIVNZ(3l27JRt4nmKHy@=C1qYjkKZ=3!Pp#iDV+v0)#t*ZYku102 z@xO0>=1)Bm?SWu(8$(6(JK3#IBg6p7Py|*hHIx&y>U&k|ys)3RdLcIqr95)4SdRS7 zj|7cq7-x<`-h`2Epz!9vps9<$Z{m`*EA1&KHlCJXK3oI3*yYXVJMk(SgNu@=15QbJ z$?dIt%pn^GAhf#?pqi(u{;43mGwltJnvhG$GJijJTyiE`qg-o6Kn4RpvY)0UOd$`I zLj}IvnIphXr3d}qK4V3nX%nyC0M_I5B%`9w^e|Nw15F7|`r1AZnyMsWndV9JBIx&* zhe>6Z$|y<&DZLok*#$Li88AF-!=nBaDEsqh-}L2~&sDi0wNvjpDa*PcI}xp@NtGCF zhmoq@(a4j#6v4h?k(jXmIO1bO!&$j6PyO8)7ZjtY+;b+d^0I3G_~-nC9(ssfqzY$8=XkwFU36v>AIpNa*b0$EHz9lqAVr3 ztaHp0B4lFMf{;+f&qQ>dF3iewPu8_Bz>kfO*$oJMfIVI7*CBCp4uzBGxp3@)8`ck= z4GVhIZ5fEZuwT$s%+B;Pcreh z2zRquLJ)9j7_*bE z!w1DhQgF?!7O$;m$Hpgz!4q3WA}IGbxU|*pbL9)K`XQgFWPp4Ip)(~V{vXe4&G-$9 z&Ki%+{(F2!x|kwAIa#&_7i*t*nChXV*v=ttJj6=xq{E&rFATV0VE0;+#%wV^NKg3C zkU4jCAy5#iu)j%h*WB6BqJhfJoEZq|SO0QrjSB(Qwts9Dx5&ke?Nd4X8G8G;xOR_G zhjSer<{`B}Lq`!v^k_O8NSaIhZQ+k{bPKvp9}iuMXFEO!|7P?U zQQMIr?=wB8iKh~pg->#^!t2au*i$)XMMYpKg&(I6*PbA1SB?xM3)6D;IJ6k_kD;=T zoe8SL>GeY@ffV^P$kPT6QXR+ENBdp_Jtv!_x`p(RzWH3|1RI2Xhz};6EuxE36iYBd zn9;Lun+XR(iLnC1PRb$gc}@e<#wh8DH~Xq8 zQR5emd^q>pA?mZbBY&9N#(iOaQ!! z1G&F$e*kjZ;@VaGAG<_Uc%5=5;+YIkBLtVKL)wB*2i1>0r?@!db;QKtGpasDj8onDv-0BQ)uO&f(%VzIsh(o* zfW(oG9AWrA?DdDPpP{RxsK~l)YWgu3F3-S0EXf^|fOn)B{w0l_N-LLBr z4wP7rp=#O!^4noF@4F$j!QuUa6sC8=F*f+kv*Dn08RS<;Vq||!UVaVwIm=d!E$dn&_Gun4H06X)n-- zUCtI85Y;>7#cMzyMfrinB2RG&zS0746BAop9q&+oja6cv!`&O#b=~?j_ipLLfwbgr zOUM;m-vXOeQ=;QkSy2|X12x#~s@jP3wLU-@Wtn5e&YSFeZC22@Ujin6ZLq#@Op(zk z^E*?!I_zsGVm8AMy={9RLourJl-O&aq^ht7lvti%pw|+j9G!;;Z!9*g8GXK;f9n7%^U5{Y8Jg?PE&y-IX;^l{ z+86d9z=P5e!7hnhc~=Pd!HK|YIBB|3M*;6B3AS^+C-=85CxO3+aCV337NeELUYt;& zE2V{6=Ny3fdp~P*aQ<+kon3w3KIecqJ8?!un`UyqS(L7SC$~nFm+752QhYdh>h#Pz z&4Q!NbOYc?h@bn{b_mP))319oSQ&oG@%#+7llUvWzYI`I(KN#e`R%li?h;A%45)Nk91FYCtUy z7?FgQxwVYV&kWug-4Ajn7vuMD)IO!-+AsX%*oDdbMO?;32vS^}k_gGEFT-6P3PvJk zbzQe%q}B4;j9#~?HJg+fqIIY{`U!`RB17c(_1-9F0xgFXO7!20GzOMU!LtZ|L_vR-Zu66MupUAb&d%CBFdP>BqH8V_Go|B zbMA)@1}{$3=L)m()1zeQ?mKzSW-*vmPa{0&63xjXa^bM@6MYg|3laAaZjjB$^pnOn zPBR>sez?Xf{!wsf7?gB-)pDxT$$PYKnbVR}$SiBK3-e*Gjr#*fGC8(xKm+5wfI8V{ z=r}YMH#AvrxJ3S@eBk2yJz%c}a5{QdL4c&gQp#_K4Gdd)2}g8f*`KEgQM1&*9{}by z@^^Sqe$$+1O8Ec0`i7nMo~lu}4_fn&9Qu*G-ek`Y9K3-%`~)y?ypjJZa(Y__K-n>9 zdp6;o{$o}NPqX!KsmEfDW%4$DPL=jg_m-nw=ivE?h{Mv-7za}wCI&2IDQp7t3g-2v zCB?e^=NXuyPnt?F8^qq%by0TXs}jJ~L5dq;!TEfQ?3(~^aZjwI{|2D_&agGSYP!lj za;AfH#s@WEI9aaljDqVw0Rag8n>WZh!C||kvzbKAQc|^|tdI+u7+@ENM%G0qXsRqW z6=W8Jf~yDM>-W0vrv?fq{(^31W}gQ{!Cn1())#H(s4M!+3D^r(NXe0FzkyP=J_+8S zyw~W#VT@uQeNqGj%sdXZ)qWGgknGJt{c^XrjkDc3JwAsVTg43$Sv(${rP7D%hc4DT z4G(PdXMJe1DnxB@Ne?}pD6?_8Q)c?fgw=1GL8L*ik7kkn)KBZWw)CI%nyhlWX_-In z_1SpO`k*&-srN{z(rS!)-Wl^n+4YLpqrO>fIiDU!p?@dGn*&`DhBA@YleV12{8X{6 zU|pfS+C~Q{5>&XAiG06s&2kKX_avpaK>qe|^5V-_9wvBHdQM*x8*rSn%S_#~(LplU zejY%#j2?Ldr=Nz&X4H{-&acPG74VI24E<4;xS6+i&ag(aS(c@xIlX69>%}vuYDA%J z2%)uiBdd5Jw|Hh7Zhr8A+qAPwd~&p1)2I_UfZCL}U721x03FNzs|?g}zsSk=;dHhr zY>;uO^_raPQvkgg4~jOd-3hH*-dP41M(>^-58w5LUY9FUoj3B)*eAR0Og|F?#Lc=> z4}dCND{tiAsVU_WGEL4ZY#CE{qhm>RHkCDINR(Z?Sx%z80=Y6_Y&KYl)xLnkI z*Tg-bm0Kk@uNzk1wCM$Av_9kU2Qx!-VUizomnCPjp*GV_kAZmw0z+y_8Viy<{^k-0 zD<1@wEe~nl*fks8bOLkQ-)HLHp0^D^mb3U#81+qG1{%!3j~mzeiXT9~sA}{_7xX{f zCZW~#L;S`1z5q~=s)luz6~;p3e<60eB`)H6>JWh<#bKY&-a{KsF&28o{#`=FJ29Et zZRt@DF)FIq2Tee%uk$+BBBUmk7MZmsz-9iFC~F@{)iG$;EK(FSx9uu(Vm+y+)>zw~ zl3Ho>>V=l7;$t+~M8Hgn??IMp{nP=LD@d7NPyWk^?~3g>pS~IXeRl!oAquz*zq8M) z&a(UxZDlxxNy>L^EAu_(m#~MSE-lge(^L_Yj++Y1w?S)3@&o>?>JQ{62lo!}Y!CD;t=i$U8zV9%fY>`{qu%C6zBqO6{JREEp4-)pw6 z0VJun2E**Yz;wfsCg_+k(Eq3KY z#(z>{PUZ9wm~$8J2Km)rO^Y+-{5?yknSJ7<-y9XMTpvo_Sq_?tDFv{Tufrj%L-vl# z!@eA|YsuPgVRqVsj$e;Ohqo8=M*3sHdAnB*ZwQ_JUEq30ejC`|8_XRy3#_-B?1y)U z+SORPbV8m>hM&H26@@8g$hbrs7*K5Ye({D)R8~=N$l?z++%NW`W&78WEH>G02S!nI z(}E@se`Gg9(pECU@~j=j#oRryJNeCR?v@#Bud)z^`~YP+eAfAaoMo3d=!-|pB-4C8 zFI;|TPF(G{oPQwUq3PAiygIzOmxn*!Y{Kkh&sC=6KY z{W2N@T|;aOf55xgpTQV;AJ7(_Yuh>FwHt`~QJaZJj>0aKxTe6)<}@QM>PfIwtu0TA zR|u6afS8IfIMXeDQLl{k@HMz@nOBF8zfcV{K{#pK<4f1e528(7W zYyAvNL%Si0fWD@^J0|_88gbOk`S1X^C1&bMK>$T7r9n}~Xg-(aEv`;a$CnTJkjZA%@j=KbHhC-!sxjM!(<&ITqEbC2ei3(` zH!>Zf?Xm{KMEWu6;>T=YydPD?k6%2@Z91Ii^}J?G|7Et~pz4GNEXG>bxgfr7&VmK& zrhka1v`RS+uM>>QTT$4iMZ=pHsBdqM@{}7&PzCi5Q2udYsJaOmf5ToWX63bH&k~K; z2wb1_Y||2z)W5cgQ<(=S72mOdajJ7MrN-;)P+d=gY(aUk@g3W{(ob{>F?*-IVc36U zpG4?NoGF(&mnebS4FPlKt^Jp_VlN1+OFF!|fb8~6ySBfauN3{@GcDPE2S^L_p8IWp zcTHDD!8e`oJcN$8l51B`ZH?EgUOmD1v#Qx~RHko23g$bTPr@oU=GnTBH?Lm4Jk*;# z*j#{}&WRRXFv`s7u`p`WB0YI7^tMqr;E}e$F1+3=I8Obk0-N+I_u_-7=iHGuXKd|~ zcM+SbT~%4x5N#IVCI9RkcjI~;U-%z%)?o)oR(fFZ)xopb_`yRxM->00h0 zH)plMnPl4)X;Q@6XCc7eyWp09rIF_het@!<4Vl^H=sMrAjg{>x&45row9jZ;T|cjh z;~zUO)%m6y9KHllE#a0h{g^ANAY_BG-zks4pV$ATgj@<8IE(nuNSs~SF>P1aDBHD( zp}%xIv~~?r(^>53hgr%Z@&&Z-z&jA7h3<-l;4VRP;Q%DY@pW+AP`hOaTp+JwyKw?G zfckxKPi?q+}Y^5S_>;`g8Xv(hq ze@j{+4F1zga8D2OL#9QS!rzv!x&9~Y!QErF-fI2dsB2MSQ9a_rPd!B84el!!p`C-+ z-piQP%~6>pWq^l?&$y7tA}(@JaAJeIernn2YIJ`oJdjh8#Q6g>-H{(BJYVY``R2K! z?WsjhA^fZ8YHVB|ma-jTV(HmDuzdOfe{zDeb7s+I@lS(MWLEYlz4w{>v5hOJO;m1_y~ zbB#~idyfUi{_Vf;#GKKVGbzki%f`jCc%#X)sQ>9gk^HKUgbBbSIsM5xF+}(I1 z1Trloya3O3TSV8=nigC^S)R#f{94o<2cf6{GzQuTl-;bL^?Hd(?#Q!#t9^is>OCU7 zXh&Q45~|~lr!~7i6ozQ;-3PIU;;ov15Y=tvve6K{h0)wV1&sE8EjBb$EGy?&1&$d!jW)a2A8dCNe*!3=xOF zGWsyIcUX!LhN6Yz;9V}$F{WCBUymc0wk^w(0S?0ws>m0$C`EKTQee>K#Z=~5kJo<2 zrOXkxVCX?WDUB{&QIP{2bUmpH*?IBKah}iMrkuv{kqeICR+>0Wn$Wt~6e1OvE&#-! zw6;N4Ri>(#I^&TSQ%*M-%@fTsiR#mf4=D`VVnd&cuaGy+XuvO3Ta8>Ug6w+k$Tsvf zj_fu{cP}ywELf8h@!A;*bv)E8hktOEX^Ob7rzT9brIvBYuhUk)XNReBxb`Y*R8Q=e zt}|@?y<8A^lQK>MPrM3u*c==`tHGO#3fBh)wQ2m zGB{*w2jf46%cD;NB#r6#`v=)6@S)hdiaAl%Uzt^16Wp%0S3D>1Eze7_pycaL1jP2? z#-Q4LV6}}?N4;5S6rv+{erq5u`4Yp_fMK6)d^z8BvOLr+xF*-;>srlPK&og?7tmIl zsZV0xKW33v2A)w|yR|u~xhW++i=+@BuK-O`5Lc5^LCxg`f#Zdp{-vT9vVg*Pk(xR@lbTR_RLD|ztaFg;9Q3+!d_Hoe zEaVt}&CF=-sdC{{8~wxw@kXE2gpZhEv+03WSG&T@&~Fs3tjvd!^Xa`Be+3u$Q`f}_*CIe$ zh4#&r1aYJAoq6B}cqf#*&vhv)tyUwCFt-hLlfEL3%((eO@%O z)>R42Uo8%jY>P`2SpP!4axMK$fw`~tp9F}fCBoD;`xgMlGzzbv{R?B7_rYQhK>BaK zu@9|?>Lu>ec4}~ku&wu*ub7Mrw}kIc4Laywoj*EH-Xvb~zL5Z!bk8?YS60Bb!AuM_ zG-G7Vyqt-Nz5UKB;vmVl8+fkN?PZ`#V%Lq$nAvAge)WfurEMJMaC2#yO&%w*ruSG5 zwyx*L;LhT4OofXD1Ow+F21cqo2{#K4AMX;_)mI(7!)%)^^-~{mbZ-{7$uSv7U$Zx5 zPKkRIv~OCe4TKg|`{kejU&nzP;GSdpL2*jEDYAV{iRgI?3aE|R>yE%M+D+3`#y->< zkEGuRa0W9rRQEt0VdhtDuWu$M>>-7H2CuXOnoNLO8)l`!aJmREYt z9$X_{k3&~3V!3KJ{?iMNN~_o~t(1_2NoK3QiUuytc-^sJ`94qumf2933rq)kuMQ_O zZn^=YUJ(5*J6z2um-wcCT-PzRq%c+pRw1`yq4tN+1C7K}o@>*xVvDL?)_#g8; zS9*?^eD#r~X?Q1a^0p@>hMzPaYC=M~(rN8?94+#?zGb7~xgRVM{#ec74c#MqRvRh! zIAtVsk=P<{z{WD6h`J%wWzITxry5j=T8!I{riuBu@k>)_%L4iQv^^Bx2q3P zTxH)eH_}RF_m3rXIhiUIyi#!{$6LoSNfjT&=!uX zHwWZ)+&vgHbk{8~r$zqror`ZSZIEvc%V^(1+1Hl1UAU`D|Ixm&h@RRA{!vzmdhICe zmK1xnSLFdky~7umF0iu-b()$NvX>US{9e0xjLPo&`8{{KBmbz{5KH#3yPF1kd-vNS z(NFFw0`)Z&yV?lRUoG^AZ|l}{K32SRg#2b}vqO|C8SPN>bMtLP)#DHer1tp#WC2`Y zG`~Bx*AI{QSQ7a4M~9UqGqQ(4xb6x`YDUr3@npBR1lOKN z-unCT=o-I~w(lE}onf0$_w8UB=7k#4$a?~6K|TVbMJZ1|+XnLyEG}MVs2h|W(S8+p znS`POx+W2g0(mA^zQ)1uUfCN&7$O*T(5nGp{i{?>Mf7W$ir;$Bu-L^OP>n3~(b!ns z!7*h{v|pLMs;Zkz^qP+zu`-R@shT-yd}|HAMhiARQCrva_o^&vy~=36Ul(_2>K;=8 z%gl_d)7H^a@4qH*8{Qt-F#Rqp2 z?TQNnLG|`&3-$VAtc~5Uzo1&pi$%(~{*Ga1w5cDQ8Le-BB6{u#f5HQOHmm=k&>Q|5 z;yD|}8rV|TdqUFjswBS*o3EMpf}Qd~{5LpX^5y(C2iLrM#lc$f%YD-L$%s5tIT7u1 z{f0WTF5}g~mkF_l1LncoS#q9#IUL=QeCl7x)Rv2p?yhaQu?2a3C;r8c&i1ForG+eX$_n)Z5YGbL_+ zn8<(AbeR2!>-A?@QaHx39*gPdJL~n`nmiqZJ5zr}CcJo)qz%q{YSv1f=!J)2_uu1! zqUwAyUl)v{j=DQ@B)S0jXbAD=LDp!Ym?t4%k_T*N1EX|gcyf@sp zG;U`^R$Al(>=E++xWKwFzr5d-?+q#gJpHaHYUy`O&sKokf1;@gz4dL8;%={|{gUql z^@DZP22Yr>eddH=_Rw0;cEB|H?_bggIqm9i?-738*c)X(Jh2qPbLh*i^%IA&9((l! z`GWu470r1$cAh$Pp)Ax&pLpI6i>TwlMTPE&cILiyzKGIR!^|ti-@K^2jv228VmFo~y(`45Iaq0pf*h+ZXIa{zzp?pkLzM7Q z3pJ#p|7S=1Pla%iHg9TLlY4T10^-aB_xY_m|bVK*M5@QSjDfqh2 z4wN?N#d*4TdlW+}19WUv-f*Q=s=iQYqJVV6XOfE8wL{WL8htNeXbc-#L#cD`l>OFr zJjRl?i^BLIQbpsGHzYhbyOq)nnx5UKTzL0r53i7De27?DP{3GPF_tc+%UrVE*Y)of z)2@7S8zT*jY-n+(uY|g3k7e{c3$Pop0ImEDu|ij+h7NJ;>u{=?u-2v;pO`SxMkc|B zPxGA><-D z(WA+s$y1JaiX!98Qg5sad^&T_xKEqIPNdLyo(^1=%hS0j$rqawc!>-A(t| z1ey5tC)S9fDx*eqduhZrxy)&E28-Wo>gj>gZK7W(L3Wc3o1*$J6GU<8fySeYt&&8p z@{LIW#3A2pet*qD6nLCawz>y4V&mi3B|LEDQX_bOb#`ok#L@waSk}^Wa&0sZQ2f!& z85?~?PrTc@E@OuG-;{iSF|2 zZWbGE<|1}>(FZK$!OALieU|8VeoF$CA^1|1a=Wc#E9af(xN2fQ0Q_~{0;LHgBJa#Y zXSt(x`XQCiGNOUXS9J3EY;W*XWgh0ie{anHtwBq`xi4^C;d;$n zHVb!@y=!6chR<2E`Hee0#`$r;G^_cI2XbE(BR}ok z6`+w{v9q%SpRp-RNJs)dZx0b$NBP<}CYI#`Oncwa@QK&pm|n=u!*$$?x~;$9%vg|# z$UODdSNUj}=gVD@J?+d5YOBN5n21tE`^oqvPol)60p&YBoDTTO-(_(Y^rKhM3i|i& zV7~t!UGE;w_8tF!x6?{DDm80SAv0}lQ-{=$5Xm|l?OIH&bq-D1S{vs$MTn}cVIrw& ziz3=ttLj`0qKQMLK}pb(5N9G$af{OTC?ND$L{g?jb0D_~DXN^4QE31hqk&qmnV zNAZV>^tek~MC+2zVXkX$t->(EN2_0E+3HNb*gq_8OAgWJc@=DZ+m)h?!b!?mm4W8n z?Gzog7@Fcbb@dM;2BPlK*wk0aWxSJ^y+fg<*#5#4&)C{J7m5bWd#tSxp8~C_d8{_t z<`{x2H6p%FJ+DE+IdATlrKtGK8%CZSt!;Z3*Ky%ue&Fb&f}Z{2FT%GAYOkawO|XGCRu`(l8}a5;eM%Zz{kTd-`YrZS^vPFlZG^m)+dDaQAm3dPW=J~?78*n z2GL`orhYqmL$Na&Snnu}?M{Zqm#j7{BrFUL+xYEGGVpybFVCg48Vm$`_>zAiy=|uB zE8_Z01`BpK3to3LD${G$&f*7Q6zIqKgoRDC?}Qj@u&&lTkQgQU(r_e-PNgp#0UQ&C)UAod|;bf~LUzAKo-|e_$fNg60|mGy(`jbM^&T|n&0?=u~ zPZ5U~wL09;xCjwqnu7ZQ6oefM7$x%GIpwFY;IxQ0pgb*@AT^wCTAOg&1G)O7rQP;q zU<0}-japajzm;zc^Ho{GoTIW*obnPqZkUg~_`Dd_zr;`*Zb&+rn0_|UC5JNP3ZD(! z9+gWL7M5!N-E7qmw2w&Q$J+76tg2=_nm-O1caywaO-d3iYoMc2Ts1cN`CYNxx{4J5 zDwWrJ&J16BLvD$-MSe$25EaP&vJ%CO-OH+~lJc&sL$imRHk{aD*&;-anjMFbzz;^Z zCslkQyC4H;Zk`9@N7U$8`oInl|+} z*KR;G7Eu?E;E*W9mx1;xhH{X*eBAK6&=mzeqW$K4C$Q=^Jqy7=e~sUU;UapBIqy%w^Q!fO8oBmMVqqxG^@ zt3y8NCj;OrC;PMf1lT$vXK*v(=ag#jumvd`v)GoK*ITfyzVkI}QI(B{R)=Jak(pv+S6TRu-BO8{qE$)#_=bU*e9-eS7Qnbn7%By`g`d7 zRpQ)tOr1<+vtV;(m0Q<&@YJ)0tR|l>Lqhv9c$EFxeQ^qs7;{Ns|B)@+W>zGWIYbYT zWTxfxrI8rfcFp!&Oe2jo{>CPxM~_+(m>BBLy1s0hP}izKS}A1x7R|Z7ix1FU*2?cq zOPrcTOOn>(0?wht$dDHlQ;6-%O;0`$zyxo2HFt80K;`!|0Zl;j6jp<_WrSHDf2BU}W{ z6P*r=2;}tF@X`wiM(et4BFYVv{XQ+>TJ;UN8)$*dl_ID1RoLUW&-k3SikE&d-Sumv zqK0RQinAIAG1$~NY?9Jf@c9r^#APd@) zG24M0?xhM_$f0FH+$~N3mCukWKi8Q6>`>RrCGP_Fm>q5+$3{HJY&*@xlvtKDx;x=i z+NC^EpnMk7n`Xu++-h?)_{A433M5?_@h({|UhN~0|1>Iyrxp(o3rX|{1L(QAZ7t>U<6CU^=&ut4SEujl_@Ew8 zErz}_zNPRPf?larS_vE%WpDkUamhG zP>Uv{0o4p3WF1!mI=a;yXi8HUS!vh&t=W3~jWvL8k?BD1-xf(x`^|-jfJ}G2@Ra2< z<$8hUIodw&iqgZE{&n%4H(DvBBUhR?-{)>aa#yp9#33E#=J+fb5@;CtZR*o5+<5Bg z4KDeNYKJXc3Ou#EB3S>-=4YpZS4!sPi4BSZ5-m5Rz8FeW*lW3P*;Jd_&8*Bf73{%( z^f3`hZ=}+a!RuLq#2LaUXZ_?gH7^c!_v8uKcQd8>gsrz|%zbx2`^ z+^(xdNA1jns*HYpn}vRdMD}KD+V=dr`H12qA z_w6mct=Uak{Ym`aFqboN)I79cYY#QN-P}-ZeRgHkK9lg0MXVqwQ=c`GuZEafofM^B5};V zAVsm;9=~>q_%glDS6()CSAYaGe%LL*F?0lg^vHF&zy$0dl0s9#UD11uRK+W926y*K%Zi^7=G6ADA0L0S9F zU~YhuFKDF{47FZAu-vw6tE3V%cq!-6lis0aCrOXk<KS_izf7iYlhFaAYO0lbMkY+#<#VkxuBAhnj3!H;@t ztP!#vCOwcGP_q4noi9;9$2Lote_1IQ`!wcFFSXu4tuxs|wZP$m^23T0NN-U2Fy-^*um@?d)y?1b8)N`30_{10R{WY1O>)wav$hWtjP1-|m855{ z1SZ@x7Jz=>0d712xg+hcLFCq_mZvb(j*sO=d`c$8DBHWyHr~rT_Rj|I5~o?-b@jEK zdzR=@USJv3-4`FUNE2RSbAIfCN8;boQm&5-IN@*5yfPJQU!v{1z|Y5${HZYMWJ)^A z2UO4LunKcdxthlo!@Wb9n(j)W0~KfCWlj)#Lr_>bCbK1OX6wtzyzxp@kQZGM@D;0P z{QO1blefslG(y6ZO7e7IUTow6U-A);$y*`t>{^+pZ~{`@I zxj9VW&en-9d@OH}K8|i8gZ71vZVFyfrsW-e??*pp#_Y2R9f>d5^`ZYfZ8Q4A_V=qZx#IP5 z*7Lde(fq+KwCvMdaANGQ+Y_US#hhjE?vuIt!E*iGjP?A1bx+QEW$kU>>e+nOw6pTe zX9e4Y$X&_i=~~z{qjp|XWV8L_XbH+TaSJq4O*ok0G?H-`qnyZzk-inMht?PS&G$~p zBK#x1G|^@=Vx%8H#&`6oXCBugu_^7VCse85I0^5hHxQho=BQ6kAxgE)@YapCp73r( zy7YmFw3q^qlQZ?-u**9lYJ3yn@)13tD=BX^Fu31VG}|DSKeMI@+;gqo%IgtphmIxL zY~O?eWj&%q_}I_0`bxoL-xjwJQJGdJMslV>`l!Q~iHWq>8h>aRJT_gW{JqP{KLp(7 zPV7-+jP7112j>-Sp8k$bj>2lr7A8y)4(QC(mUo(qd|XHuNZo}7y=I)T57F~1z0W^= zsL)khhawLl(w#%%u{xPr_VNqVU1Y^ae>|UQln4x6po2x8 z_Don?uzF1?RA0Bu9H_gWl}FeTBSs5laYu|no09e|zy_G0O?ne-PW4x0? z0k=0?Gu>#qXDn|A=5kK6$+GF8IC<39j|hlmoRJ4+Z^p`6w$BFEIVj8b&Lq4iPsM*v zS#84UW8pJ_)PEZkdCv%u^ZA&f|9ipEfAil`5i`4*^Kv_;JEp;7Hi! zZJfQAIh@#(33v|?cgEXP;u3ybemZ>oQHlBH8T06W=QU>s(loyCo;%#^5O%!?I%J2^9y^)a=USKq*!HV!SS{Va3Y%PcE)@?ATf)^?dNS%~R!*bz$}xnBfzVk(V81)5OyR_fEn)veD}fz#xt zVtAy*rWr3Ki7{zn_t*+5$DlRJ#>Og ztzs$JS!71j_ig;NWm>+#ovXuwhLwMWzUcCIc+;Yu$@y$ryPTT(RMz`y`ENf9KKbtI zqjLYv%}}NTR5@KkRu+nx=)ApzOLfr$*RyIy$MJ*a$USYl-M>SFHtFA4h!Ypf!O^5v z9YeGnn;ua73xw3Oj5VlQ0iJiBWkcsfnQHb>ML<=KmcF3}1Kr=>+JApgyqN2+x7v}r ze8c5$7$P)i+8?oCqBO3>B+kgSNdX42&F$AKURydPZCZLZw=KzhJJ|(ErU^bL@d~wC8GJdXYNOa(ZsEGrmSMdXRG!F*ew{i(zegpPwH5Po*;9DS=M@p@J75e z!he>u*ibEB7R+_8QuwlaM= zHMi~|`%5Xrx981%&WEi^#Mlc4J5i?1o<_K(rhMy(Qf>7+heN`r&-JCZbRk!h`SQD* z2nHA7f{_DemAC+dN-^{48}y>lV(dt2ZBcIunppOW0MYRQ^^*BkcLV4SA1sb4jfDfFbRpg&~+qNrsjm6@rByH$F8v))U$ZR^97AJbL2)%EMzc zaS|}|w3~Tp7N^0BRPDiPsbjhw-j<{E+T zd~yX)eAMCH03)GzF{cBD|E58ll4(T9y`YzuqhfG?v^G4%9FZuR4N%1PtewsM6yj3z z7f9li6$XW!P9sOra$1R4&;{ye8hd~EcQdQNLq0#-eGwtH!FF_tS9)1gzV&);Q%8E;6bs z+h&q$yDnCX6g9zvI$=?_?j^(6ESD(M2B4}J*RzFRBw|-^PO~k(x$B;6>*Y6B`iq^) z#h@K2Xj12m@~XO11Xcx4CibPn%WX?<^MM^v`x}b!QCa5;~A(qA#}r zXP4ZmJig+@b8&ZOR@{AU^!V7buTciJo)B|5<+R_Snm|3(Zc@q4g$n=sLT6`J}7^v;3h({(Lhl zX=VI=;zoqsr}SlTJ{>;M7TvUex!~AvV4pon-P~h1zHfrGcoqa5nhV?=$eDW|iWwk9 zPad|Z`8cXzL<@=@HB29nAYuq_Sgnf_kQ~bduRdub<5)pLWuwi=60S3tGLZOwH8*S5 z(byW>PXYoKHhl7>2fo`2jp$ohjc}#WoLTVhb@lL_*D_Hfd~f?1kQ#6}wr&})6Y;_L z)-R=vfP>Y$y1s5o0IeIg3>z@vNsj0H1JcU65g@9T5<|S;iQ4m&Y>KkB>u<~qd{jrNC_yY2Vd8E4eMzIIPmpUFeg!kE~>__s#dryI_e@5{Ny}7X* zSOv39jduLjXqoHYxfp%qooB~xb&Oy=#@g*~yC7G815L!oh2HR;iI6Z=b4h%}QyBwB z^Nr|3B)5yHpN7KygGc9z-~_obeYpxPJ%*z~wtALr%g}O4%gDHKR{TwyDE0Gm z!~RY+3w)E?3(AOVF{=fim1e}O+)Lu?MNjlN0Y*1sH8?*PRQVU!oo{_OAeVT`!Dnxarni%^}{=hahwxb z%0M!=xvPq-uzy)pahXMyZE0H05XFw{-rNO~D6nYvr6qd1)$@%#Zm)hsdawwJWGy{D zNLw}|ruRKJ>w0;)L<}^p{qk8{e{pupK`54N+t^K z1hWqqe~0=*#o=OuEHUxp4mr8tvtQ=J=^XJ#vf^gK4oz#chq3j*xYi?o(O+C*!+vGI zT4`L{#ZV5+lN1%~f1yMeomuH$eAzGHUGbnvmQ2i^=xtyL3+cWG@8!!ef49zCZ}+l7Y#$=MvQ>$itjhIL<Eq(BnQYa1S&wW$0Xre2FR={}PRLX!*$_mBV2HBu;++|yFOFUx1fowysm^ucafp!;Y|v!1AvtLDRyFD1LZ zXhHo^2wmx51hh&yC+atw?t#%*{^bS1fLi!K7t%cS({?zoD4@f((nA9uJ`#{pVjKO8 zSL)xmvflabV(b4Eaw~m78y`<@%07S8GK^WX0|*NjhjPaUOFq|H=uO%i)_-C1ptr^O zh5z?22`jwFuPk5ntr;LK`^BGvc@dYlBNLyA5MWy6IJNoJQfh;8CyH6 zr4H6v+uulJ4^$u}V`op|QdF|6fdL}~dm4NRsGko7LTF<>ynfrUJGhmAUrQ5uLPOv$ z(h)$QYP7{ozRda8IGb~?B(WPVr(at3(1+9{gA;!zjc$*Ou89Gl$kwKs*>vNhV^i72 z_BEV&iKvzntppFZc3ApH2ifh~?7E9KvCD*ljiBwfME~h6F%v&X+1+WG8v!?nCWtKT zyT9iruP@}U&Eu9(Q{k?`dKl8qKMSuen9CIopvoaPmxrk(9$C{uJse>Ytqr}M6s)~S92H)nyCMhE)f@cK;lLUr@QKI zWxio#S@D#=VsJoszvEErZYSx2MT7rI3aj{GmCRJifUN3r=MX%KkicRV^oq3q1 z!(%|F5l(knYJB_OE^J89?}U~slk90xoMuU zN8#NpvbT0aPkoXer}mnX`_j@e<>QTzs2wjo+kc!Pw%bGa8-l@ldA+VYW2jKhATPz) zJL|Ff#@k58BA1g1>ZnN_qdc{Ut0l5KB-PVHr6tRs71-ai#HEz16C%QYuo+5O{U_5& zzksM~6oB+^ONX}WM8I}jMm>lJsJJ~A-uqd9Bv8W;Zwd~MFy`)e1^ zQ(CBpOg6)#UBbQ>-%1Er+HJ}HyFyte`+nE=!g8B~et);0UIff33I<8{p|vu(u1YIj zLI}9I2TE-2Fy*mIfJ0d~Cq^q1LTd*?>yncgJ7_847B`2^UP)FhkdSSd zZoMM%ry(YHn3zPWR-su1MBp?OnfE``8*x&mi*2~i(^|EV-PD%3pX@XKo8VTK0c*@w zVXjLZ`;+9<13iz>+lus%i&M??+h^H1@91qE*?M@WMRx`_ed)+#i}QqTOMXE?+k#jnvhQXd1d)jQCxTnYxhtm-gI}mN6Z& zb*T9f>2B>sqTO+X#aV2;AXM?5sk+Ff6VjrkeUCk9AzSVm=f74c)(n~Hj zuGnPuf#K=lWP((IXH+o3^CHP75^~p2lNsxGERZaBD3Yz(C-$t}6QZ_?8-vhWYs|T& z4s(1-jL&d1TSg0>GBBx$UARp#|H^-9_OS9ocUt4x`doo|V||%Vb-Df6esB*C0ZLw|k|L_Gt)wW=0nCCI`Dv%JXw~Lr1y+B+vzM(zZeGl~S*s`Rb1e zcVU4EOYWRh0T_Tj@6@;-t2o)uZ`p{d*a-y)p3@(-7>j@IHsW(Qh31VbcVsoAv5Lf# z@rt-=X*sDjGjZ=h^i*QQE6&0YIv5`^RK)ZHWDU&rYn65Mi@hIAVwXMj5S|@zoX=|O zRMm*S9l(wK6=wEOja&KDOce@ia^srH4GYxaWgAgSi$g_}aHAXXXCV`i`#wGiqdMVVW{HB~Q)g;fm%2FT z)MYo9ba18tM@W{UM{63k_BslwRWr&9#|K2=gi}v7aCsm^Rm*w5o2}MBQ_7pp-Lu;} zMeoiSpzq7RwT}F`+#A}!-mAorjLqw2kJceQny>R8QeuMwnrstg9d7EarCGcDhVq$R zu1?yhefsF*kB%WfV|azf<;==?qdF%5-BN)gc)6CRbN1na2mE8<{xeE;!drS3;`>j%SncWRvBE!4(_3yQ-Fcb&F|<-#L$Y$l3HyyO4#p45-At@PUg!rC7?iv`6hdyh53a5L#9io#q$eD=QN zc?Uh)x9OjRvEQ2$GpNmvz{rjC3%)dkh@vrZB#b9Q{Lz&=XItcrOK9pYV6|oDS($qR zrX7ic9hw&}9?$&Mn7N~C^&+ArvqKI~=d}q`CYS{p&G6fls;hk%XvRK{!rJfFv z8~z&ITY3T-ee0VmrMSsVZRFgG@DpP zatpx94a>XX0)I3lW%Xv)>VZiLZKJqHdCq?NobYa0M0EFOX80B}3jXA=JT`UUqf|9H z9a;Vi$x9i3ahMuA`-N}+(MW=6R&Lyou^^|AC3ygv_cqc|Y*<#@;dMh^S&BWHXtwOO*4^*hVNWxWECmw@8B< z%Nv`imuN$!Ofq1FVRA>tR76TOf=yPoq`jdn*9xC$6Gdba`6peME~$Ca$AG-3=@8ap{{yg$TwMyb^gnts-aZ7 zfQc}s{Z06#OWd70IrPi``=Vu8g){#hzKV>1zc;;s&_Df|8G+~uUk~x}5$kmDvmYmn z#*8ovCKPs}ykwDmxR)NHJJUUPwQ$|`*a&`hKLV1eN5+4xde+q-$TtzGO|7+F{F?x* z5_%os@2|3l+FKr{C4+`J=X|@Yaw*ty>Qik1wqfZZ%kRsRsgh-Rv9l|nb~(Tw=+KF6 zZ`XvOJ$d#wt`6<5)~+P-n*^@6jUvKJ<)gsQ_+-5*Fm?PnDrjSw%?mBi@hM?;I6&%F z=)waU2OzNCgIVGI5y5?4KCrP=BOBb3_g-ECrdlV6i2-s2BAW%*rhDl1%fLq758AHK z_ouxB%(M}AqG;5F#6ap1+|JOM+8ix|ow2d;ww+ftIW`ELj>F)*l+`0LgBuq^SCcY5 zG=fsX#qX{MNpZ7Q$1e8CN(mV0-P;#1n~uvh8WSnu3~|*|oUu79%xFTFzNSu!{T~k1 zO8cmQt$zq4@3LZ{ogauC*6|_vtIXw7KZM#=UCz&4`pRN6%$?ZHN)_aWLr+Nna~)t2 zMZ6r%y#Z}oX?aLEQk1SI@5y`76CXB}j)H9DfymNt1N(~iH#1nhd=*s}i~dEUrReKx zSV%n%|0NFEtLQKal`_r6jyl0hCyI#hJ6eVFAoq<3+6F!(sJB3=pU{+K+DM&vDnN#P z-Fr1(SU@=8I(L+)Im-?E`HY6WEM=bE-U_<8)srxGpy;0Q`cZ|X5)(!}8XpkA2{a;$B$RFPVrm;QiWF*1Oh}g zbb`WqjPR9?5$O>gxv?}a|2ezx95lXGgBCGHF_O35m56fy%qy|fgkGw*d^x3AO1!Nf z&o5wg;xIV)Efsh4#fPG;?_DddN4rQV4*k>mSO~6;dp&rA8t%soe~sdCucJx3Ii|2e z`7s%Yg~!0hpTuk$BG-HqdE7t)R$d_z+pQ`6(-~=vT`3`O9m^$LGZ2o8x_x1!Gk;af zomG`|K7@5f=-WT7weeuck~djn~zAtgO$(FglZED1S*u4XDz!PFeRSXG-KjJ*|GfI@-iwD|jQ9+#xX>+X60F7MhRbO)MJqPHz>aRa>v*eLSQ>;ozvATG6+DlFYxq zL+kRzmKI6xzA1N?8eupQTf6&Ib;C){O<+3dM>Dyrz1+q|v6f#IE*|5@y@c9tt2#B9 zXBI6CZxo*i>V22-xbt8ZK4V+og^M^d61H=fS79^h(SO{iD1NLn1K%)YV5kw#5Jdn} za=+~#Av(%{GLhB3WY086l;4c_9}&R}rz0AYz8@NpW7=k~zix=)lx69}TH3^|Y2_Q# znYS%u$I8R!u?oWhw8dt_sdWef08{0FkrRmbaK&^A9N-vzd=yU0SAz!)fPxPBvaF3D zI-(;kJl4qSW3>vTfd9DE0~ICv*9^oo6i20zLn%JMA?UPu^7?32r!7jG9YM!S7 zRb6dKW`YJRAruy^u@vACd+wuSFl)CEba6?t`=|DB-1rY!B%!#!TKX$Qks7rdkjmFV zBimz@0RtZqAW}d@X?pBrW!075{bsNkL645?gn7J}`@0@F_Cu&ykZ`<(#IwYhX+W!V zDK5d1A81U$$nB>F2TvOPs{!LGE z{YTuWvVT_*P7~Dy;^y`ee<-Zo9j_|eJ&<<03bnG^?Cy)x4z4C#gaM8~;%F-{DzzAYOm~X4lv64hrycDUInsdMk8CgS`G>A&OyBP+^U>eJEr z9PW*f@Xh_tqtXhkTk~Vr-j1A64Y_qv1LCxX#O7`GDUv!yp2m#ygT*t*`$Z9j9VK+; z2gi`vUQg1jQjeHw*u|1D1~rH)hH1;0S_bR;;IpL;!W-rFHK{NU?AS|N)>qhUy3;H* z$9<$$XL6{_W0>`ajk&Mj^AG?}xWkflYlg4-iu`5H7sWHH)iYyd1Mn5LW3M=+=aHze zv{*2REKeeD{|P-$n_3yH-|e`%(3ZimDRK(uc^Pe1+W^bD#kr|A%zY=cC*q@O%*e;5 zGOHwbxgN&ozA@pdYd%B(g<{F!7*T1_)?5cNPB4m3m4AVV=xQ?bm$tej<}XYi&m|1) zxoy`vl_viDW_l28JaeO$-+xsAT|bW`~|RmXO5 zguiKRjZnq>AI7Rj2uxhkFtlY0COl&#RQfaIYwuZ_vh3rM9!Gmgz;3&ma7b86b4_Yp z-%sRbsJYacQ0jr9e=P1@dnyArS=NI3SARY)hS4!5!Ku@%&Yp>3pf_d{nZG@;?IHM^PGh{Kwd^}OGpU)ETr`BeRBO)7$O8Q;djS}<9g&jE zELfG$PqCqCaVVUY8m=L}uWc5^TM;6f{^GNzJHp2<7!UwO>erCE?$j2i&((Hk%IKg;RLMvn{Rg)GJ59}DH>r zY>X?|4=qVF{)ks7(1;o+;QAOb>x8<6&|KE*zRhd)*fD0~65zIU%2NSykS%uaAL@j! zTp&*z316I%(*`bxxiZ^;3j*qek^02(ZdY|uH3mH{fZqz|q`Gxsurc~N^jjse?}?7k zfE%vu4_DvjlOtn46|6SpLN7L-r2?l|qRUH5nHUPpKKcpU&&+X^*DF%Wlw3!?&tPJ} z7#4F*I(>H_jXeO3?Nb;bLRa4ZLM6Nn&09@!di1e4bN3tReFyylB>>SIFU@}W(X}z) zf-dRk=a|j**0QQ74+eE>B`(`|t}?h4O=KrMtPJGk3Essca-mQ?`@x%XHN` ziqP?aL>cOzx*kLhp8jta5D9f=s?dNp&3)KmZ&F%P4>XW|wF_zar2Q()P-tASHDtFg z;+#B%^TZLxYoXY&!W+^D%fuBxz2x^-gSl0r zSBaNFI6f~uatm-Pe!XhIHE3zcMi~k&qw5jb4%kYZrK-O`Yj1k1KxgR$2-bVeMgCbP zE4{=zax$yKv%jo&kj> z+P|VNZGCaqmzS-_=qy<4VZ1s ztkrQFFit6Ldc+2N41+e6hlUt>6EX%udzX6FN%GZ&QXt&roEzQ|?n%jmj7KoUCW82h zu?o3!DYH#wWcj7=Pg-Jc=wy2P?r&=MS)QZ4%_kPV<*~By{~xbpu}aK_xvi_Mf(uAe zv_VFkZJ%w_n15eVoK~EVP5DT+l>dDyz~BfssNo(_sd($WG@X3P;G5-fbG+em)QRR? z8_7s~t|)%2v}>!c*^};%y=|C9#0YK;n|&SB(>VG=!>& zlT=#A_kZY$Us5>$)D~NV6o*)^WbFv2PX8(+sS`zQ7$Kt+1JaIPDTM0=kjY@;&Rko? zQc@Y=?cHoj6%xxgEnnMjhs{GQKOH6d_`EAjyIR_o8j>z7q;+|2==!MG6Lt-njiylt za*gG3=$Us!HFNu7(upXGSxv5Y{h97mhql9^50QHS%qfIgjfpI`!dR9vu}ys=eF=wo z@R{l>le1ZIYXzP^=VnhyRjzafE9zCPfGD*QFcOUACzW>_t?#prlm#niHmWkze1!Km z$J>?%;lvq82~?jd@{jzNmr)=ul&3?7;qnURRQwd5aCC5bE8UcUfG)QEk$^AX33$KR z_Bq9x)u*_rH@-yz0RiS?9VEp+Fj+rXwc?uV+c8xR_035ugixoh&o-QITzlNg z?Cl!)DJ3eQM8H<~kjj%-1lJVHTDBKdM=4QpKodrFDE?0|^5#dZX+Pl=<+PQ7-hJfE zqL=0FY`zYyv&Fj_h>l&H_dvXg5x)X-~{9HMjUEGokfDcGdP)KZ*5m)W8HO>rOYxM=- za7(xQ=<|$#yl+%BgjYf)hS6cT^>gvO_N*GD_B0V?2M15IWe~V`1#y900F~m>_UATO z)9HDmS);@?9x@;wjXSYUtLw}ps4hIdrv>@F?tbn6VFADp#&{S#Z+gQq8a{4ePNbGt zPuMVXw_PLe5Q5X)Y|4cc%=&?x}9JdudZ3c!lu#21_d$O)?xA3bV9UwO_Z1 z<$6O1o$#G`5~57)^iNRu9{(@X$?l9eGduJ6u$LX7iM`E+{c~RVSyr?ydpe`>OzQ(T zvzf95J+BL8+NjtsGZD`f{{u((NCOhlR#iG}B zg?gf%^iL^)E6oqslEwW-!Kjrn8`mvjTU+i8`SM*zer{+~?2$Tl_#+Q}ba*cizzvAC zfMu}*%8HhLBcWd0`Q=5c@6wCOED8+kFBN|bV4h{U@* z@-o@O_X4bZ|L&}ct&U>)3oEJkHbJ8hlOEB29SD0Uw2Dv@@1FZ3TVLx^{MzM4ySvR^ z@i5oW9RD@AOpQ*680nw($EYzk-)X{_1^p|@{xs40Q8}M2aLcu2IdYE3;*xdW1r&NT zP`vyx=FIRPM1N@9GzyLQ5>G}{>L#bdWP>jfJKmiD;iSQg3=P-SK6cwnbdFw1Id>$ch)&SMV_us1z5y#Vi$!aBf z=&Rr1VDl`=Gmcz~Q@q{c?S@eQ%D{^5sW6m*0>D1lS=YTfCY=LZfj{Nx@OsY%ulYiK zr7}-K*TAD&2MT1Lv8Jp-dADmp{pnqSr-M?WBCoGq+V%?H(3HLH-~N?%4x>fwBE--h z%ib^Rk%aD}^s%>H89PEOwVs({hih}2>pcamIxn4-{o49!rD-f`vu7|bshIT7#Bfo> zSP_`v+AF}cG5^f6e*hEoa4tv1mJMuiPq>z!jE#_a3lZ&dWOv3?M2;SndFJ_}&h*0? z>-ISLJ`*}&-vY8}#@GpnN@dF4KzJ*+2Rin;Mp!@2c|VHUy_;^lcIBe;r5_3R7Ed4A z-j_oB0$fad-2TtMm)&n2OfMnaba%#IB0T@x{iCl*j$7`jW(e}N&c{c0Ds4cAVW!SM z{`hmVrsUeItBg@4xiNHa{hgBBblSV66}a`R~cYfWlW)*Yd0NyRC!~-}Lmu ze!~1N^>)LG@Wu0f4EgHNog&~wIff1GTc}}M-$2GW2&l7KR^P@l5g3Yk9Re{IWx&Qc+Oq#B+2*>+)0wu_@9tK~Jg&aYmj5T_D*!RyMu@7!%d(N3)x7w9`#Zj_(UG{JiHESaC(k}zJE(^o*|Cfn zOU?riP9Ve=VlC0PPK3sv39M$dTW`C>40l;S0`=pq z3esC-so~u83QptE4qWPe9oht2QOP9)ORg+C$qYb&=Gkdwn@MK_Lz~XT-~2f!K2wb} zRg4f)E-B}-HfCF1`7Zf>9qkuNsP%|yoNzz_z4l)pgF_!IPaTPM-0Iz_%B{$o)*+hi z&)hx-4HI59pFM0H_FXcNpvz(IS4IqFGwQ47NI@*WgeN`frNGkMOHfAPk^@+ocA%-W0Uf;5EHooh!l&VR$g-JhS z#7~{fs;88}5+cCO%}q949y?3Ex|_GxuYV8OkZk@-D^xgH{YzuXjL1}h-KV)^TiPO4 zw(~x|YRcO%5OQ5O!b#58`7YW0ZWrpB{j^R_fyiZL@d}moFIY!(2|a^N>40><2^qTZ zhgRA!TxxQvEB`uNc&YJyCW@DwJHC1C^xRe~^v_ayI5*7qf)gsLpqmgS#RpAT6t%Xe zG2;6^c}z(RZSMMRRJsWL5XYwdVkO=-XX10xYzfWg>nV^8i(9m<3@{mc4-xYa@%AsY z)6Vy`qO-V2*-^A~dQRmGq!9IlklqCAo?`hZU$PgyC3#k_RNn`@NUFCClz&O-M0Lq^ z8p=-+;9qt@8hg{rNxGurt4Z4VXW}IbtgHO7%I1fyD=L}Wsw}|l9CeT#)$G$~Q~3;> zx2e3{Y2mu;RT;af z6-*QZcoR5Rjb{3GrrHy(5SyrLe^yPsP`+HZh%&`PmZ$zuhG{u@sc-5)4QAhCeJ{+8 zEf1AjeQK#%dQx4qaowzcOhlWt`qfW(vm)hc@WzWk1{q-5J;<4KIK6HW!9VPq4sNWP zI}Df4%dM|Q-0tY-UY%}1HUbm{^B{Hj3@hkx=|kUXowXz)aE%?&s%%JY1wqKt{HUuq z3FAkQ5Lub4Mp$K9vtH9BkD=L}BKXQxga7l%TEqkZ)9T%)1p6{!o_x4mWqpva-so6^ zQa}CXQ>UJr#fZhnuS0LVi!FSKeEY8;cf!qV^D`cN<8A&c$dc4~Yx??+{HliEyEULg zyfd^2;h|%Vy^62zy<+!XKfIb$v^3^mzXr;o9E4)t5js72KXx^tac&OfMmmujZpPu% zRKDA4+W>lQ?F)2l$}i-8Lcjm5U!kN@4Ya{b{2vcmkIxpJfk^^FLO*o%LweHMQDYt5 zUGV8IU3aCY81c*dFVR*m2aa%Wbe$>9N03sp9Q)siJ!WTaxx6o=eDL)r9i*eCsaMUU zC8r&A?Fg(4Ir*gjq^_E8;@QfjC$0^f-TnzpS}k>AzV<*5>p4gEwM+TYxNX2;t4_eV zG*}&rQ{8g2?|)U$w)PhSwQ_1wN6#*9ihDZkq0Y{#Rj9Hu9qXaLyCKYTN}zm%1J6=d z)DJPai?NV2n^$-(UePTjMqEsk^2)0!(<2v$4WJf<%#NK1w0Xz7yeip~*7=^tbky4C z=(Sjma3xErme$ZF4n~s$UoF8z3A3Ug7U1OTdKqPFKO- zPi_7eUElrI^x6NbrIM!=iApOVBU-9B38UJs>DbQF0k~?Y=9PMl*%$f+&of)UIPaK9 zr;p%5fnE%02+t*Q4F`Q~Lu7BPm6B;IYUTL{gZNfHm=}=s3ndA?DAymP=!%fq48iYU z(`o;}k|SE{>0&}GXE);awAe(anObjo$`y!Y67)9}+DbpAOMTfhIi69sHabVXe}U#H zJV&Wn`qpZL5%wqMgbB~6YE*woXvgsw{zSi!35YjrlvmMjjMC?N!miCT9-%PjG4Bmz zS0=X)lQu`2|E4N_0YJXFC69b3(NpBI>P1;;@w-}(54p0CnLK)7c`x|iEEyF~|L5U4-i#b0n*jvN9BIrldVe2Ra2CMhc z%8*U>i)l_tApUsU*PwlK^x@1ry6FaA#BQ#AL`>lK- zYaJ16OHWY)OAIPuj;3^X)O@-P7x*V_j?ma3)bMN1IcKw}g|vF5G^3|B|20y}(N>0g zeGDM3vPT>+1#|>-B)v0#bqw)0-&Pq8JHdBYH!k3pnYWJfl9xo!^r1o5%{-;@B((D3 zE4s;E3s;_~X2Fd!a#`(!=0f$tTyv>Vn4~C<^zv_CMLEtkr-D;>74xD6vW`yhoS~hM zoz;4fh4HZ(!rL#&rq5_wf9XUMxV9tbL#3~Bp-p^KFlCeLZrC|GK(VY$IElo^I^qjT z2%BDkHZo-@N_?qy@pS%<(Q&koFIEgMsP1^&fnB~ASB zqf(huU43k(#o5KSBk22rIMtmuy7yV?{*4y;9MMT&k#A7N{$vJx@~5xOC;aQaN{Am9 z;mfJfdQB+-d9eOe_O&b3-;USG&C>NBH4mFgD`N1{Z~(Q*tOLlKgY`B)nH4xMy;Jh! z9M##jbDZI|8A22_A@cTW;W^#BI)*@~(UD^e6SN(HNd^1Twzb{oN^AVKVolT|Z5q#! zE4DQ?3!)rs=Z`y+NH+IMvIFH$L2322y}D)V{apvaoWYX)wKd1pb4>YLzbEgfF@{jQ zkkwd+g6GuQ4EAS-&QZ%w@2ThUm?U0ZM*HmKw}l0wTjMt~75f8KTV@C>R)Y)FAMI+l zJA+d4RW`&lVP z5wf#3p`A1v_t6#c>7jBIVcgb(Au@XQz~;xLU;)`F|GYqtg}PVDpEX58e6q}OaqF#3 zpen}GOJ#U%t!T!4J2QI57D_y8fObq)!Q>o_4l+nnN7oJyq7!}m0t($0LJHDiWN8HU z6Vx&#c=`>;279#d0wvh;S%x;dt>uZ;kRK{}h$S)Gk^@FG|*y9eAD=uO03`l1;{k$~D4U)@k_q*v3 z)cjS?ap~+C^>Dk^rUX@8{M{s;)D`3u?cbgg9wDmxMhQ~AbW>`AAl!q?98~60x0u~c zl-yPg_nY<}o(=O0m4YD{aE-TEtkNb&K?~h|B#^TT^@;f zmX{-xH@QR(kS(KCg2%tUEP#Dh0!M8`Hk7bfN+`jz zWao`^qq);?D`hLO^Ge)jX72OmKlS_x5{F5G(aT2D8JAx7s2>e{)`Bn2{i2_Yy2b*J z9G|1xSxRQB?a5BEGI^H!3U%<}>=QEad34Knt{Zw9f-+O%@nKRTn5ms^QdYB|uUxxr zXD@>W_r!k{mugjgjTL}ExhS5RJ}d3XWK*vQ+VbBhx+bSH8BJX&N{oDj&ys$GIQ?K^ zbD1BcHRX_uKBlXBx*`zV%Cja6ADi8i9Q z8f*Mq#m}zWXz_mLR&(WjO@GCa{RKK$J>X; z;O!*1xNApxlT}(^`ie&H+xnyl2btnM_TvS~CZk*aF*S-I_bJX~=uG@Fu_*Tw1rfbO zsWjP@NIqiPWV?IdXwl#hq~z^MJm?{(wC+L?BxnGHvz66#@AUia@!lGTW#L%=)|GU! z-C6lXu_B%s;ftD%-@XN>n!rif^jLjR1gP7 zVLiy}slD1s82g1QxpifY7Rep-8z`dCe7$2}Qmw1f$Si{FCbkRgY4Jy6YIo&L&4!+S z%Urfz7>_skpmZktQQl(x)T$`xc^fJ{>4CyabB1lyJCN!@c$g38(WVMkoGjxH^=J<= zpX6im-9xtXZeW`r5RL<&U3*~{XN2T%KMX87L*Kg&=P|mPQ=K`!&ktHebZaJt`PhDp z@plOndkj0LW# zFw*of%*(p+Q_;=kLL;1!%p~md{CHi{%P#l}j9ZZ#|5@=mPsGqluG#Hal=kJm*$-bd z3m9GZe^F?j=w~6WGWS}vq84QN(LXSa{(Htw{%6Kc-nieh5y06WU@wjXGCTu)&uUEk zt57w$|BB&qNMZn&9rl=MUXxsgAj z?2=yHH}G0J73hOC2QMWKS|g#V$$TP|eH%Q=}*n}Y;? z>uqSCkv<6T9l-j62CZpXNF(m+eNnVBB5AV=keFi)J#j8TlQ?v-YoGqAv1UC?^iIn| zjnKc37WUZx#Q>2OexZ=A-bLKZ@>!H zNkKww#IQ$Iv>_f@>ptu800Vx#O?Q3g3tNJG+42ed*Zh9dQqtFso}6wX_=XmaF?1GF z=xDdlM1_3p4?Aez&}1J&&sq`@_CKbUul`ZNLiw78n;lpFfN7r7Y#P69`cs z5`CZAXl&z|;ErA!E>msXCAsV%EqPImMKBE+e*_6H0u)=lfo%mrKaJHqz*a4<+u%QR z=Tv=Y91D&fiyoGRPh8|wIz8~*(dYyh%%ejmOQSO9O(L^u!)$XGl}~S+4-e^VIPu;e zSKyilL`O%wGl-;G8)t0sPXVuw5Pe|eoBHTidU z3ig}gd~geGN{OnbEjf@^`L4^fcQ?g0@$V!~j<~jbTjIpL{Fa`Kow*~Gx)D=4EI~E5l%&QbCVs^D zg0Nvi;xZa{hz-#VZTVFvS`c`F^Y7g8>%+9s>5lr#D1wRpJQZxk(RIA9GHYm_QPbk> z-!!}NV`UDKRhoM+!+q73&<(bi&!J+(K@Ninl?6OGLyO~Ks0milTkKJsG2e35vX~Vr zon9=<O9G53F-= z@lQw5`Y!>c?v{ZIi(QXznT*RL)6jl~gFIW1jPUYN9$bS6AzAyRb{X~vp$pR zaJ?37$)y4)#q^vO65)Gaa0f1rpZ%BJ{bfD5WI8rAw=Z_6(djj~rx6yoUgha^Ekj*b zR#JJ6WNt379vvMNa@9xTu*4HiARbai6z1*grPhY#;(_UF3 z&C;__@Ei)V6YAf=1C{B}&!uohPg6G?tYaW@JzS?as31 z^-P|ammWd;8mfrJgiB-_nx^n+IyOEaRPnk45|MrIr?pjy=3k-K7n^qx9Oz>Rx>^^`nT-hJVuIe0C zsiO0*vNGy_zO8{ddC^cnQH87?;TuP%Pk%DU^w*-Wk+@#pdO-yMDu!>0&8te?lkc=? zhuOy{Got2)0ByKI;P!p4zdS9^dKA=SQArfL?A7jdIK^=FK4R~d1!dFd>~8`7No)e9 z3^s544ilCh(t#D$gL>TfuMrU;-qj!3%aJnu?XxWLkD97MWoHrpGGRXmE$hNM${)6U zwylL}5500~oGc+Y-I+h5jJOx(k@6O?p<-+c*-oo(Rt0NpVjJlu3pFp&+APZAH=j2* zrP|1DJ%~m-tv~#2Q=UxvUqJ+TgC6|hX_>*Etv*zH6IwEF^pLm0jjfABg%5l_R3Y8= zda=a3Qm@JB2@b`8Ddw${`?_L#g}1E(+t)8^LX@KdbLXzJ9P?n0wq^hXWLYU}5p>$~ zm;}Vzg#I-*_l5%N3{35WcqE<>>OR+X9jwS;)vTy1pi+Cn8eX7t10OI6Y2epT-#&W>+Jp&o^ z=EHgzz4;VSo`v|bL8wY7yF0dSj&}y+=IiH}zg1 zDXHRLPCcy}egTeBhWE_9E*K#nQNDl*d%$i*pCuvNu4V#-c(QDhXt`UV@#Y6T(n%Ws zhmTf#RG=>{(<`N;ck(cJr2ewDGCicAuz2d`!Z>BqcX!mq{GCbTeEEC>sZj1_^0Bfy z?IE9(>?S}wdu0IZ+(($HgmQiTsM%UaVG~1@eUtoQ(G|-^@xmJC;Y9*hpSSKTvw^(XZeGL(l>Z5Z7@_)~FqrZ4ZPr-S{(!o@4 zP1Nq2_eCg5NI_E`-V^OJ=zW1Gf*(Z01)rmY41e7#wWclZ+37bZZfPz)4QNT2M3tu@ z^f0a?3bLo*+Q!ie7$4cddS`4j?kfEkD1t`v!ljV#$&s=HRBv5&|6I+>V(i(XtsB7U zqVtv0jKf7{=Dv3I6c)uh&m#+-cnHL_kO3)1Leil;czfX@V%(?c{l_vrv#kIg>a zY?e&#wyn2dh{nHj98J{}vY*sxmR-aVvl47G>woSM_v{=6>qp`I&_u4Q6n|>gI5USK z%?S*_m^Z-B)@Jacc3lpM-rx$la_aXnuj)TcN7CPp`QNu((%+?$>uk7^RI_qaVPb4I zYHscfvip!03ElTF4$mnZpQsi&(@1Zo%Yu1^kO-l^hCrkrSTE=REI)aQYl1tlMK)K$ z+G#Ro+oFbFJs4blvN4mEr5Y*pkA9c}-oUAfT~6O9(+R1!6Jk_|ScirA+5Z~f#Y%{9 zAo{(4c=MnbdbbuB;(F!Bb$S8%cRp05c_hYy0=wvotW#uYYG z0~=1*73tK0KXtt9aofDJ+B1NJ?>ki#p1dIarDvBK$ZGDYrrcT%<@NvKo$y%+lNfm{niH`TnJ@V44+Hrn0$kSrXoylL#DNc;%TM} zl;qe(?4K$ird87*DrE%klZc%v{YqE7gbx%QA(eWnoz5e^N%Wrn@_?kBtG4EkXA#Da<_=Ul1Y4p_jg05Lq8I2x|Dtd!^>M{_>3F z=|IoSbjWW}4d?f~FNZW0gR`P`AN|sMICERKp4hn?+>nLP5OovFk_)4~G+5sGR)RwK zqclBYpJtWZc>us3y&U1PA4lq*S8}i#_}{%R1WB6lUn$z16306?nJ$d!%Ls6|KG@T@DcKW7wq)p8M>i@quu}o%AI0Ih90P9jrM>e3 zQ@gLLq%o@lVQ&~SZoNfEUJD+34$%?I(C`S}4gE>0^yXW7xF~0UklwLVfS8XCs=)Ap zT<*s}L~&QgS3Ooq58wb+>Ez+V1^awZ!#~Fi8^od5oG@d=%p>trUDX*0u6`#d!DcZi zSy$CpWC~s%Cb8FQ{Z20T#5+zdkkJ$WdT;N)$Cv5uqslc$wD6Df(T7dKT4MExEz`_> zw&SA*{VZEfVAHxVEW7z~b)iV^g3)811aIy%7j~(|t=99u34|qw=&ROO&`SKg5MCvBD{M6e%ehwNQx&k78a?;_bAm{cE zaQx=#1_JK;h1>wC&jZX-yX4hMq~voN>SmE*AC#4UULQ=a^Za{7`fnAhdm#l~S799 zK6}D{i4gGCCRL9E(Lph)T7vBZd}p1VhVyI=%>NkpKv-cgGo0^JWoOy+)&vr?gheJ% z5-C_e-Of!vTFRVZT#e+C`G3Ey{~N!a*dJiLc0 z`>yEawb=RB`OOYcWAKqky`)3+=KQtEVUk_j^UVI?6X0AGadC*bBShHx!dCW6fiY4U zuvq_Y@FBrTGRe(JfD3ZKuYD4`NmrK5iNER?mGp9@``fcdEr;C%m^|Qov4)d-Hu-;- z-xdhlZ|X#EUCo5aZ%+aHdNAu9oVVmje3X_@xF|rm3tsnRUcaei7H1`PzoQ;j_}+Zs z^8uUFG53d|j=GVh1KE;H+UQ(snNw2iAswS6lRuh`c+F_fzr6I&6HFc<=(OiNPxG_O z>^+FIYz27FDV`P7V;nsy&4uy)o+-^5=ZO_io-jQ+h*x-Do7hAOexz0iHVYl8J))e8 z5|Pr7kO!iW--==cC60;F4E>|D`kDTm1dZWSkvo%p>S&tYW=eutb;g|XN7k*^q*a;3 z&VH_YXW^hDkxkXsxM^Y>R=zjKf&$?`E9VJyw>u^*J2$e|(;kLSJO-<5W@}jyLcWKJ z`?nn7g1A8W8MUtZLYuh{v!sjLFPzHuTMPpi*htuo%p*42HFPMw9zMX*Uh|H~Yh@WK zi;sgC@`SFi*aYrP=EhRhYQSE`JSR|o3on_b1njJJc;4-za_G82T=Qcr}2rnp_4f|e95J}`V@6416vH1CqBs~o=|1x`(!fpGzh$r z>b5e-#l!~}*4x(%kCJR~&H3<7SubkMI}6i2veWXLrVVNn_r1P2t#-pKTJkq}e@|{w zg0AW;e?!;Gve~H5*`<4Gvb`7}h+A$Tbr}I(C6~~l=?Cp6m4r$+5TTm-+g}=3N{m#) z<0@ba&!QC*E|*!KUc7w_!qux&{cmYn8IWVdGLScx9i_Zc0Xtyzb}8`=Sj zI+aH6J}?DX8wo6>OodMCB@j96JFT`{sSCw^?|EsnTT5$MqDS5~3X+@-$^#Os5}wC5 z4#SN-2}|iX%v-XjPITCEMWf&k`m&Z8d7LHrRU4;-MQzZGKe7){EfQP$)C=5s?R8DZ z6E-bF0xvTCU<=c?&LZl<6myq)%WpJf=5^hLuiaU7901Xq{5_lLnI-kZuX4jh?UmyE zAq#od!Kl!)33-(NqKE54|DlKLO9pf2CxBvlw&0K-T*K`L^SsIGKa0&@Z}Pj#vk2AK z=9veL^)Sqwa6aKzlYq%P%$Jke9j&1KODZA1k3~pdJvM#xq$uRvA~+e4lvKy}=0q*2 zV4$;?pcD=K*GS?CV^3mAQoj;#y(1!yC_y#0zf|>*4P=Ex*xS^}z_pC;p_^>bh<6O} zuuI@XSza(9_-jYBV9?K@UBxoX-5jQZ<$&rnLPtPr^4Jc>M*{CRq=WPT=;J6NluD^@ z*Om7@XyBGi>A`L)!8+w6Z?4wz@b3;f8r7PDKMRbby{?&=N0f6EUl+hwUvNB?%XTtF ze0R1tZeSJLeh%?c;~2NXprE?wsJ>)$yX!QycSoLk0@MF`^+11sCZZQW$eQd`X{XJK+sgq;cPTI3oCEmfeOjCpiLcqkwN}J#=wX0RO zW{^*1JDt~;)y5E$a9IbXY**OPc-{D&_4eaNV*Ad!vd+ydBB_9A?76luG>w6?enKz8 zn#lV>ZplFdF1-h$cfK9aKM$E18mghs*E}ZG3J#tQYwz%b5C6_yt9k9Asb#f2d&Ds= zet-~7j@9%_+oCdtvbGZXkv-4*sYUWs)T;Tt3DaXCD>gHR zpTPDCG}Cbp&_fH&pSd);HgOl1&T0>~r&jjF_P((*4CHnvr1-tWTC7>`oYNrw1evQ zqvZXW_=B3Bb~E>2v~*q*N9yYIAfyYc5Cr6YnC(4b5Rv?CmAx6~UX}S;O@M5GD}My2 z?%LO`&BOk;6bsOGtTaU}H0{{VN8Kv5wwV0TVXtr zGRHD1awu|OsoN@qXm}Zc3D#TIwzf53#G6LF-FM7$X)DFmFGvN4{`H`xr*dI0`G>Xf zCeF?vsW)IP*&af`}rzv_w}+DJRb%l#p1>iSTtpk0f{#EXz6e!+aE z)eakqc{`hZbt84XyQmC0F7LWbP=<5!Haa?yEBN0!Y$@E?-OMRqH`t}R`dmY#FEN7yWbDdKa_t1fsfZ+VIPW#tJ5qNJ-*_R zp&Nckx5A8mn6Bgl6ep=$gcV@-)pi(p|4XXQ$ z*v(-~f%L7?4Y&maNW!gj{n0~-*bG<>oyC5EjEo)OmPuRVpL?Hs+7LVI%P*L!_na(t z;+MtqgocUYiCPa?de`V(|J-5tS_4=T)0PIY(G1e3S(d$0V!qM9PbPVToC4$hrkdK* ztmJ+UT?@)kb)-DNY3>IQWhTAZZGR;ca*Wu)F?dY?-#5Fj@O}e#?Il8cS|I!t zg1MvS4-X5hD6*R}?a(7ziS+jTLRdZGRyV;HP*~^YklVue{ODWerZ8j$eoY^_tRIEx zawi_Ood_ZYCuJ>m^>altP_r;E8+D1fS;WFWfi_evoMFCtyGm$SY4tyx@~|+vkku3I z4&D{8bKO3h*PvffA~wGNSl70|a31K4;m7Id5L+_6o%(Bmy1u)()v%(^wlT!Mu2c=q zew~=3`OerI9PwO~yQq>Q_q$J6?`k-i6F9u@My|H-Xc`AE?%2MiVE@wdyc?+#QigyF zgd4|dqAq@)QMt%;MlXd0`dmTGYeMp1{OJ_+kyR9)r0b=F>gZ7Ff@C~@U^u~uXpTz3-)w{^6YD% z03xqY-4%F!)WSQtQfGY@yrbD!2R_qpZ3nL2I{ZuE0`nkH)`TzK%}`f{?`UP_o`>eH zG4z{m@3zZwEScyR50fW%?CP77Crx`Tf!X`>?WPBwDeEUsGqsam^$_%n3Eyzo7w>`;{WEuH?V$Ko?7 zndq{OY!E21G&Yl?(x4WtO{v?Hn;q^rZ-+$x0Mx2UbUujnCsg!jF}*^UXz?0sItV%R zM`n$+J-4IH>Rv#7Pe(rdThg*jGI8A43}2v)++CYt=9kuAWzq6iL;P}U zKtiQxuO`~5G>~b+rQ3-!zJVV&JNFDi{2Ml37u2;>hKDYB+u1nvNmt|V#u&3tZ4k`u zA!V03*-0+qC&l@-{7&AKh%hKXR_aCHao?+gQ6}Zj%jU_w{{*__HO}sYkG#s1#&n63 z^c!9hcb9q}T0_=`SL5Hk2MgjnhfV^U32*Q-b1RJ*J(u5Z!T;02K=!*0ki9Tf&mpCS zOS4}d&F^&IIEIRZ#;dTZ3sFnoZemGw>G( z-6Y01pnU2*S5#ox?9#|-zqpNzj;y!WUHouN9P66L5FGza)py2_UtL=5C8g{7_&T<$ zPyoPdt=LN367!9F9sMX6YODbWFJ3zath%Qt8jfUgo*wBvV`eck)|l#9kG`%O(y`xl z0@<=wXQ~{zh$U1Hy^n!a@i(?RvIiiZ81EB8sHs2ZE5bTm7Qa_z@F%~_iSCKN zOAy<#lAUDg7v$qg?Q)EN`$h2L8%M_=Dk5aAgDcl}%nSa+8i)UeRwRN0B=rYDN-;f_ zy_v}c3q9DCFBsdnyx_H}Dn`*j8Nv$SLBI9iDLI%I!n$TY^M>>Lvy(-9)3z;({{vSK z+k#d^h|q@5EoxeO1pq}=iw9MANLU%S79EPrtKfA{*X?dZmS$@DRHueVxa7iwqB!mQ z>CK6{Ki@mFwdM*4pVViVH$7EDBP-@o+T1!Tl|@RVdf9;n$$Rk4BCA;*smDU}=ffAX zm##xBCHpgj(_6a=qa}~9v^O1O==$K&39~xtd$5q|w7gZZ)7O=Wb%ODibgX8w!O=Y) zz#|TT!;N5GR-6pe!eW~ntlOS*?7D7CyfdzXGn{9ebcV0ww$rzVvA{%e4WZgsF4ir38 zwz89{<(IgO0FzH&SVozL5wR(U-ao5H3rnEUP{JV@9^C_M=^ z8i6cP2d8t0Z|Z{^g-UR-Ylar}Bqf?kTW?7j5LzF?uV~`>V~%_tUi_(KDRNmSTC*3{ zmjk8qc*x#aCySSg;?K0I`c+%=%A!Dg)Y$6F?aJkW0zutBwAAWrh)q>NB~e~wqrQjO zl5DKVZ1w{om zB)$u^)?xD<$f#AasaA%D#;0W^lEBRR=Kf2|fC`w_eQV3HEiRE}u@eHG26E=&!KSa0 z>oYdKx*i8SDov1nxUS4K;X;^&B9~cUdPYkPc!}5mW7!HBJol-M%W6$_urbmB)W-4G z!@Sl#&wn)4(8F~Qm0eq3Xax^UEm=l0)X#&pbD^4Jb%RMW%(VH>PdN?M$HE}fwijm4 zs5wC}q(w$q%MfzAf|v|ef^%*Z1Z2Sn)20+=OVLUD3U$g7Z5z0KIZn$;qB|GU+JJQm zFLIz-ZVgpB=wh~Xu*(84D9ago^!@SkD`6#9azlnaXnK)lX$kd@Aqa8d?MOO9))F+4 zL?V7O)&TIw%MHgG%a@)dQR;l2xBgw&Lty{IAj1^z!3)iwXeC-G^usw5T?Rj@(CKDC zknA^AY!gx|qFiN}Ej^N;iUPD^&5gZkzc3|=?+B4*q0$pwmbiz8%t1gA*E=x)AaLg%>v z4r>6$mHV*4mfQQ1yUvR^Qk(yf$2<^%{)Jv{eXeVh?H8g&pb}QvZ^buBKAoWtBt=_{opO3gYYa`cydrb2LFAPsj#pFj0_X_#FW2G zQ={(Bgo|#Og!^FC3pn2yX-k=88!xA6X-!6iKxL<5@=18A)>daiLxcS#GR^X~4Oc_R z{>3t~!<^$c2nrpsHd@nkU-?JbtPRNLdeuWqt`B$Xc2|~c4RSZNm{}|*8-T0Bq6p{J z;S7*Oyz{0)nuRbfEZbjGauX#m|NBl`90l)SATlyHq!u)o-YBcA)6NX`!8D~cq^n!v zU5V{U&f;IpTn)h%lGx>cv?2AvR%pPEdwz~=VsNE?8vURvDP-mXxC z<#Ar!kb&g$&OlMpY~SeNmnC3hMMrcqb020rHSd;(dQb<6ZD@cCJzJcAP4H99D$>+Y1)!N#JD1T+jTq{L6x%x&rU z3!bV5>_!Dfdbs;mYq0hMY!kjU7yGl%f@ztkDLxssMAo<;qDI+0WghN_!5fgO!h=*o z2Yhiw|_= zCpd~L7bHH3qz0B7ekVr``z5n}6deCU+lQY< zwiqKyBr)+E%1M2J7taYjkqJ?z> z#ra>&tByah;w8N~n-pM$G_T^-Q~lsI^xmAivwu0&GfY2bol_(4&ou85ox`-z5LZja z?OhY=;9i{_&bkEAOK=Y0UD51huNMX=hb77%U&Lktehdpc@N2km~TIJ&jH7l?Rd@b-OM@VF#_@%O8%>aS!IEvo!dL2$8KT@%eg@GWLcb%gUmn zfO|6#|ICIq#%&(cpNZ|L|B99G510CVZ4nx|oTjeD40HPxGdW(s>oA}F17e#edQfUx zW)2_DgS8mP_#`gaArZ^l#)+0kIT}I@!3B_21fbq5E9m5EZk_@@DQ@a+p{$!%WHsNd zo-u<(?rQ0aP1JpiBps_)4J9_@MXy6%8hp&IAP&CV?ju3Ay|M5MzRm)bjUxp$8I2!{9d?64sa;I4NqzQ~Fyc+?=L7Q?>UMA!(SQD z5G}gWH0`JR;j}s0R^HT|HrOrT;*bTCx4`4}Di85yG~GNx_x1$oc^%k@9>@&IUZ&=s;Igt?|@3XQ9tgmWs9x{{ee zD)?iKzA!d?oi~_TtoWJ2M!PK@*H6|{D&w0qE-6{?Z#@Je%ejmUVa4f)zSs_L0>+if zWk6Dr9zfTEr?hN=I*#Y`kpb?&Ye;qWmGn7L?Ez2R6SV+9E;PX}n7Yd{mYsow<}b42 z?>-P1)yP7ZLLF$FpSJz(TeipM#$OjZA9Kfc)x0}Y5HHTa+M5ghJ)QOD=NIp)0J5JykZ6hI zWy96Oz5M|Cct{5&GNjf21R%{>(1zHbIY?~VK+nA6& z#L6a62UP05P09U7MY89TU%=g6-(}7#nZaJ{4Sj5sl4*B6VXFt1E4mCwuPJqc?3}Qi zgFl8HqT%}B-V;(+*37{WRqL-EH*Q&Lu#G@Kg`$dpNub}WEUFK zc|AMEo(j{vkN=YeurvJyI5{GuYdY-eNY>069X$LZcdO6@Y}q$wNn!WVIzMM>^eQd$ z?JgJzr;QQ5hM)ayHpVb&0(gToFR(Pks~5iiQ5x>maQO|?4(}+l4)=WTuyJr9SEy0> zI?CX$iRhZ)O%8Ue(wg?m#7bC~&2}o-qTAI^CeCmVaISyGbj%$$PY2nf)tXE`fi!d1 zsV2{dWAv+h&pd>Ct{o=sru5Tx02K<0HrHCf)W%PY!tzK>TYwjmIU5t?Zr3q z=ir4>+ScECh^^EdLwa_ZyH%%#kpFO2> zayWIdEJtlfz;njUOb~vuj^sUQ-l&sY!p+&pa1EpVoG z_8ATQ^=DGv=E9PGRA~EP9yrD4Q=5DZ_g4@6?(EZ^eCAEgm+Uh);3Yu9_uE^{@AbG9q0u91C$HIi-Zl=bSoJ|4wZg;&^?KwI#n6L zKjva-jF8=20S=z2UpN1eL1Wdsg2e|0n}gz4xDr%Mxyd=Ou?@}ikwzxT2aE)0rj&{AI1ow@tK3ks>jTc~3?Y&-VV}>9&$1Tdce(K_4=y zI3NA0!05wlCjQG>#ZYgqhq{==+_BsKT5D%5$UeZrI6%NeK?E~AFL308Hs#(stKMCN zRIE)WS3|Hs_~u|v9eX(m6(qq5elua#PyuzXZ0^Cyhgaiw&Zhl0ndiI(5x zWLktKKJP$kn+*?h%TkR2FtdB`Iyy*CCz^Ha{V@FBsx!B=aJU=b0;`=R{cv))Z%79> zBw_9i)RGyGu=0y)D?e>0IW_A>va(EH-+;3%8S^Pji&0)pX;{1B0Gvi&8^~t&1n`x-U z>mGF_k2x=CC@MJ2q=dxSc2m92PzAVZUPVkhwE#v1MX$X{Q>tfh$m0R^j>(eK*fP9sA{`YI8olAnJmVSCA-<{7(9%`&-gDH_c+CXitB_oJC?*94 zIB^NTZog8CezjNmaf-W@Bui01J|%NQeD}^jfYwVsg^xI7RzeH5=Y{~7T+Kh4kgo0+ zbpu0vPfvL}2IsZ4@9^6(vQWMfC}Q_(G-%N+l1@E{t3K+&u%7>8@fB<{3xeAG>%R6H z7Z%l^$En^l?0essI5+u&|3=>z#6>YuHCaCBCMd2CIlDL2^0zBuF@wgk4GhpO)wHqE zP_&)$kz8>Mjns81nzzEmSq6WzdOWO25(~h(jMEW&&X}$|IGVR#(f`{X|G!C$@Ly~!kNl;@YEn9}qilyRw-l#%%>Dk()j5e;Q=?bD!k2xFj zJBbEouiJj~|D35%GU;ryQBe=RiN#%N`;}c$V{#1MQoQKF*+1eo{Fe&3@}`=`Mz)2b zDJ!QzTQlGD;N8@m-M5%z-TcIhfihNghn}O3@z(7LfU`JAo>!a!hiPN$&XJ7ZxXt<- z-;w;2L@2ug_;BK+CBubes>v};RkB7cG?!L3$X<(XmyFdos?`cGHlk-nQ2zgexYZB4 zRQ!Xqt(58T0Eo@&8g`-jh{K51(7V~wBRK$;xO+6Vf^>oWWz>$OEgB}8mHX)JX=(zZS4 z!P;R{i~5{j!)eV)6XQ?2QaIv$9&?(X?;)^Bn|2`R(_$l zL;O{KHn=96VzqEQ_?9hE(_{NOjS=M6u=W>)5zn|tg|$}G`i%H)za~g!*)N>Bp}1xz zR0t^*q+-hOZ+%J1DV)zVBe=P4d}kzi_@LR)4&RkOYu?F;*c=NCE_CzK(A4rs@958M zCSBIq%h2DO5@Yd>F@DRhejFVdC|H4o?%9rJHbi;vO{-BM-%f@0#4DU0i}cRw;W0gL zXRW5e`^qj0$f|Xbdb6`uLnwUTXIq4yBAq^F9j0f$VrprbUAV4@ZebZBX3t=lAoOf- zXj6g{Yv^=O<-6)=hqF_eo7v}amV?cy*h8<;wbHI!$I0EyWe9wovb?NbS5Mq7Xq?au zZ6b|kV9cs81-r9N+wE?Ut#;(7rGLRh&+gL5a=z9|f4+pv9G%SHXl4V^&$}G%>0=7UE{jgM&WwqC+oP zFY6UmCiFCxSJrRbLFz>PhM#$_dKVu!UfXti&m&^`$ub7AeP?X5DQUTVUU#S=dY3aw z_0JoDy!Fc&YYXRWQzv~!iCG5I`I6M!S zksf%;KV^>E$m)^!(SE0~<(;kZ>oHS~dwl)T>*|EUiJ;j-%SKL7_O+{O=9Qo&X;c3E z|6=OhMROFPoqUNcx zJS0lxmX#(R@_>qHDxxCjEb)9qP*Fip5JC98_x*jppWEjz|J7UZ;`w|$ACLQ^cUk-~ z@@GHbpqU~Gd=fyR5c;MX8<{dgFO+KoZ4I-Z&m^7YbQU=Z8mfJ-yi0uxFOB_m#pW#}O0`$o-YI40?b&fg z{3*KQS*g$~zWt5b1Gt&E);d=zJ#MF;MP6|eY|LA>|3u&8$rh}h^3*FV%^O!M8dc)M z2>d-d^Uy4vT+|r%n-SIFA7_nU`OdhG=hz2+!Gg+<>lOty`Pu7fmHc;+-uBHiWj7x~ z_4n0dKNYe*^;|sLOLb!!Z+2zC|MyZc;SrN-c#f6UzLmZ$!8QZ$);W`UfR^$Trim4M z$FvZ}=B}S~#m%(r@8p`Wn+~1iQ>{c#vow25&ddcLB)IG>0qx?v0+G5R%eqS$AeWJj zu!uh=lKavw_yLYxB*EoD^*OO2*(T}OHM9Dkvz8iwIaTx&)4gGz1$ArR z)k96fflV4Ub6=9gIiRE=%c+lcE)iF)MWPc2o1wd;JN96+jo`6Wk`U{-Vxw%r&h)LX z8BiT>l?rjsQq1HMexWRH{0XqLE%F~STiQ00Ck{1EY)(Z$KY*<+_nO#vxejuRJlqJj z1E(+J`}=`3<<&pwK&r7Vg&kPD9$skex?3^-SDy3@z4CED>gJ0xmsJAyV{Wg;S+DqG z>lTucy)Nw^hlUjJKM$T<35_pSdP?{EEPn&%gqs1kHb3EZ7TJ{&9;SAkVl<^$Xg0D` z_+@&{o*l#P)?ChsYZWNnHsgHaBOzixXseg)dK@DB+}1c*;B>`rqQQ6y3@#n~owag4 zlDqX+v$%Pk@>H>{mTo>WWbU+rVg*(?Xh zH-xMoF#&!i%zFN!TZ8dpdU$3{q9{jFO#))fOYM8+{%!9cb5T5DkB&(_H6G1e7LJg$ z%RO@bz%FoaWviP(uC+_W+m9@W% zq>YcD>5AzDK2~s@vVqpWB9#UW2(_UG9c$Twvi@=T!v){*JB8OIWX0H^{#{M3j(d6p zV-U*{tYTN{B&5W)fHo=G(2y{W6V{*&fRreJ%T0cbeD<=G9gEXu!Js6=H%9$c3}R=TC0b?%c5;QRP|zr*eBX?S+bueQ7KN)t#;P=H7mYZzAH`Kdd&sV zb>o_t`^c ztjX+OYS=^r`dwm^#wJKF%8#hEQZd)r-~vg9)*#W2(%BNP<$EPI!{qrx(7?Ir&LKa& z= zYYuJ5dVWkeG63>XwxBL^PRMEwI`KOGLi1Z4?}gd!=$$c-;-Ct){=*R#4TA(0Q9uSd z^yA9vjo5fFBX64rM!gdwK%i9qj?26YkzRE+7cMR#Y|&vdnmWZ+Lr(Ne~($C zqbW9?wQ5QKXd1gZHc`WFNa)FVyS!oUQ(rAD(umE*4tT_@^D!$47tZ_)6qqzki>}oo zhdO$^FlSi!AH>&2&tq=&`xVAzJkeO%JIy;oobq?9a#1!g`Plb8vqlHqI-PCZTOPV- z+y!uewDP0vYO%?e*j5l^)=>u2{51)@&r9akDi?g8aGRm3=634DhWrjRDe~8YpbGF| zQp?BOZ{&`Dqim&nK0ao(u~i=$-oECvQXk@61i2sWAo$+1?#hQQ%4=pEkBr_gZQ$0c zcSh}!!%})J%!_qH1Dcsn4T1JEftpz|L$5B!srAPR6f&7-_jkD1zeX zDG_BKJ(p@MxEnFwqr}DQAI-9GPwg}!P-4uzZ34%^|6Jl~ZubO-!hRLsnV9(KFWz={ zA7A-XbS#Ur@bqOm$YYf&5;$78og|sqgRB?Y;LF^lv<9D}kO#ajb{Ta&Twz)PuA! z;25HSAHPkh1>n`LxU5dCOf09kUx8QZHcXr~- zAjJrK&B-Fh{Z&`}V2Mpp84iqDKMl}z_(G|D+)C(-)#>s&mc;j0ibzC#kJc`uF;Fl4 zU(2^pM}py$d2h%Knfu&$sc@QNxXcLJdZ@h9+5C#7If}W-R^FYwiSnB5Vl`zObRw0i zj(rn{o@4ia@l5qaA@hM1!LU!A^!Xy9SuQ}=f7B=^vL{9tERP z&>g*2=AbfU9KsL|{f(jf=vQ-dG;_Xo2fy)Ip+*={R<6DX3mRUxFbs5Tq4*hAuv)ri z&ac)ySi58S6xC+%W<+5ni?qn1FJck?0v+rMTT#e}FVKWB)Jow5@n+{(L>5792hp`? z6%hUEM~FK`grdA-&D1b{6Y-u&(g|lMf!{Ox52@Gb&0$`hV*~d?GZ8rMdh(M5aWKX0 zD-eAQg#&?8mH&Yx^%3;X1kzO1n}JEzCw%2uNT%ufitpLqXaL%-J< zGGo33w7PUh`&9SOF|yQ4&`>EHlIO9lFXn1eL;KS9>|h1f7>hQ?9|^x)+PG8#w8Y(< zj(CP;hm>kEugpe7^X|{O@3-~xUJ-4lvo7zofR~%Y%TbGu2AFzl=1IwBacWwUdlmYM zTLWS+G)f^@&)q?*8O9LviUnjpe)^7_=}Y~-4D)%E=4nCfy5yCE6DgxR@qoV*udA~A z8za~xQ~5ux3#L)xpZ_QRH!ykp-BxD(*z2K29euv(LTORq^lC)~tf-l&RO2cxf*ix@#I3vJ`RO=Kywr z^l*yeudfq0To4QQz8}(JO!@hOVYA|v@1Ut!ka$r0mGpNn!Yz=Imz{E3ZlI=Odl8ZJ zd><4=x)&4{%76nF7h7WQ9cDrWmkH@x=(I*&y}P=)ZxT>l*H1%cyB}7f8p1(OIYneq!yo^1#zIT%g^`ke}ZJBD)9$3mNT{$%SJnV?nruJ!;^D*o%_E}9Mt-z^kjqC#jS;q_=#z%t~Td4&pSy*N@ zsK-%+%94)ww^cozD$U!2bk9JO9#@(l4!_axwx-QqeVk!mJ}MtMEM6%%A3YyvRIz@? zv|%hul&e|H7Jeplj%7Lwxlr8RWJNl5gMkVkPsMAN^Wb;n^6*|1GHjrv49r^XJqy93 zXd#v#?a`{%p5*tlm&y-}PA(NTh~8=}CAD#@+P_IgS#E5*SWs`l6c*m{&;m?Nm&8=Th+4R`l>ycp2Xd^TquLT z4yx?@X4z!KX<1FyBWopaZNL^IX={p#?9&4Xlt>AkqF>CSF*a-HkqrH7KSmrvvR!bU zq3sm{Ev^VA3-APviX~CkM{SvJgRpHYYOqQsz8rnVUR$qJuNHg{Ob$i=2E#Pq zaY2C?;WuT3dw8InSBYA_Jh}0!Ux3M{k-D)GeF)*>n*GmU_0X*C)_1-uDNP4|tD}rx z-#o{l;|_;0CcWk>2p>9e-uy^kP9Jq+fr=pg9qq9A^GON*`M5I3I##inL6g{2N?pBu zB0o*_ov8j+SX1T-xadCGd5UU507i6YpC+K9#W&x*naQZ}i?1|V+Cp5v%sQkOP1=;;o&j((C1KkzaoRD*V|j4L-7z;<)k|J3O+Jtr zMSfjs8S}rNCh2pdL=Cc^Y5UYo;+8nYpFhre{@-g!%5IvKmKd;jmH~TNZ1r)`2ny>~ ze2X@xF%AKExJ4C4^93*gx^4}+WlYY4AOze(-g zdQUqaHhls8Q@t$m$lQ5rd^M%r1txC(E|mWOm;$@@10M2!L< z;Us`?RN}+_ur6JD%r5SkW3MHkzr+LpKug4$0H`q4ki5x?8z?^p(+=>1G}U)Y@8KdG zR508(e!|AhbBSJP(W_PL(T*c&8D5bugGq6PeO)~?5?YJO{Ahx}ZJf{bm_3pmByHLa z_7r%>tn2D1Kyp3w2)4CTb`BRO%|>kk2NI;RERgjpFrbmknrJmTufxQ>eUdJ{zGsJW?K zL;p<{&j{Z6-ZaE(OY52$hTIy_48kr`v%->b62=5J!eeJBKP_ia)=ZZF(V=T##kxqS zh$-v_g^B4nKZuh)k)!J@>THMVuJMrqgnBSDJe&kyerg&xd-16UY2EyRs#(;rF{BFDlxy zg{F%Clz^Opxb$aSG9xbwz7U3(>Mx;@hjP1y05(G`m%beJKKQ6b>#!p=a^uPbH)Ce6X68TX-XM1PCBW2C}^m(5~E zP?~46Po>S&VsWb`93mPN==v_BIObVq1ajy5)>o@7;gkLr$^m&H0cgWWwAa?1xvG+=|=GlIR=C;#aT7ZiOaVguT_FDfXSGV9r*)9(eYUlaI48>e%w0Kyi__y zAM}Y*RvL#Z&mYVrbAXSTO;>^DwjF!3;@-p_z|S&t(y4E>u{{s7`OLc(bVY6#Ok#e@ zC!UOa0R5a-7dJ@yZ&_I(F%A-%xbs!ozB=Z!HURpx`B#=^h&tj+6gg!gIMdwYPyp?_ zn(Bwde`RDg*k4S-oieyet-(#P zz|CFyf{(pO@4i5|k5-8F?c&oX#isaylJYOzv<_zMK-ohOt0!_d0*?qMO83lVdx!&+ z_lg(Ofxlv3#OzDo!Fxq1e0bpKzf;>zlH+!zK8;)=#+nGKWS`+he6K4(_}(|t-vgDs zPY+K7#tF4RXjykNO)Jc%mHO#U7?su|5@`BMD=x zoi%SS*VX=$;<_o_j~Pk4pj}(T5LT)~>G~2cU(eZh9QL|KQ;nRYtUd13uL@_Imm(-h zo6H*#1oh^jIB8^u-qk-@C!6i4nw(% z+L4UZ4acb~52~B;A+clLQ!PWDSB)FSX1iV&7L!8xpG1&Fr^}>JHaV1rP zok3=mn&s<19BLb>oKXA!@gudvAfC(Yr=a%KJ&mZkG`DOp-#V1mZfBUarrN0~p zJgjfOiL$92c%AU5cHlN!Kz2<4LZ(F-<}wXforT1@}mec87-Da5M9e<9{`?x8O} z`#SCZ{(W65n_e=tHg2w4NhYK@uh$pssH1-1f{&S;6DYB z1x#bQ(tPsW>38sFpBcNsX9RsF`8eRi;@#4FgEPE(oUUUaYttGX*YNI~q zjVUvez*NJJsoPB2{COzIB9hmw=g&M#O*5FI)18|ZdA{z1hn24jnngG}+-7gm2k;Iy z?+)=2$3E-;HS!aPQrxSbE;(ZgXd$|QT+wj`kJi7Mv3%)v7cSN?V&U!#xXU7r@PpJ| z)_B$vyV+-9=e!qP&`T{52?sHfvp zCpl1(DgLj_<6bMsR{28~zrOprFwryGX2_!g7b0yLOsW3MNbS`@I||0&qivEN;6f4x z+zC_9mzq}Fp^#6S9@cvGrt!Qhpdl@S;NNP|l24I&#AkV|U*y|P!codj`a{?tcfMmU zHnqqSGgFB#meGohY`4|8moz9BIA5x;&NjE)a*X{x4f*QN=|5_>av9`!l$nOxFw z{t(v`k}S_><$V%%mZ$7ERMqBDc8b*m9@Rx4IPam_Paqz~mhSDvl6@a-_ojkDP3yPY zMwYVz$9II+TOzmxCLZ)9#Kgm zBe#UXvyF)I0|}}#qy0EpgK7dbc-(a3@p49`y5m0>uZ1w#&nCIfh!15^)|tad$voI5 zG6(9mF3zA=<_Y-B4=MW+IDYme8jmo`~< z6#i6)IodniaIcW{NVs($t_q?V2Hkpo2-Z!hh^S+=@NtFIU7ig zG~qMD$*KcLdipp(Ks#lI>u&D~eBAowVRa!%I<$6>ak%Vqd3Gi5hiL41Tdm6=w$`lN ziZ)e!ZI!dl8;Tuw&T-S#Ukl%vZ>216^&jH45>;=l+&BwGNTykg#G@tK3uYm85@v4C zoMz8yE~3>JdnD-fKj)NCt?oHR@x(WnY}mBQQ3o2R-r`AR)5>H}-PlG>qK$Z``i?J! z7uQ=OJVGZ8OVTHoL}};4K%MI-&Wf%*{_KL0F?$RJ9B^05K9X)N>9Ik{pq8`@JGj_h zeZ--1+PE0xp=>Kbsy$%tZr7T*gTPtX+n@5xH@$MgpjU&q9a-!oO*)mr*$4e;wq$a2 zQlm;=D175JBxyV(;^TySeR-LQ0ghb2VM|~&AN#)j;Gk0n`S2RP@4bS$j zc&W!+qVyGs-E@3^gsqAX7X%r8IL#@B#7>7Ys-vUSv?fW+&IdNW^;1gDFAg^l2~oKa zV_^oK63t6C<1|mVZM1iJCS-$TX1XSMwF7)9h|@g(V%(xSv8YK&hTHVG#>l#8IF|_D z2t@m$AdcAISod%}rA=^HxW@)dYVnkN`;PH?0~Nv6)^^Nm5@$GPuu~^Tu4Rt1C$f6I$z9Kp^-J!_ zCl?>j{UYYdFI8u+5Ptnx{0i!7nN7P_yp!g7r5Gws>D}{Tp~RFU@QR-zP`IJiM9Y|z zi^#TNE4AO?&Z2ce;M5bU`xtlduilzZT*|!;JK!78Q)MJ{^Ud5ge{QwFtKKC+oYqS- zH_FA|TP2>jMua2m5}qzg22$ zllNXOovm12EC|5-fls-9#I|qq&Nc0Nn}seW);vl_bOcIdV6%ubdnKvg#Ualv+Ly#3 zM7#WgW8_zDHyl5BO6J>Altjmi5m7p@>b`p=7!^7Kf&eq^6iR&i59(Xuw$m8JzG5xl zRC{C>$9CMCyHY9r9a4vUGiB?j#UT2c-VksoiWrCc+7bn-BO}=dIaU7$;vTC`h`=6!b6T z)_=g!@AKYuQ^}&N2py5Q=;^W4~vUG((KcGzMa6 zI8Y`!P{-e1&J#AcSh%%38^}CE%V~Y%0*X%$h>GvZw#4(cXXa9^!Vs z^cxSAd{R@zZX{pFFUNI!^gH6q25P>r41L_0p0kjq>rCvHpXubPIPnOEJh0w#6vM(# zPil3`=4|)mZuYj#orZY~6uriS29sxT7;83gH55XE>|=XDrcI`iSA8b#FW}Dkl&|cx zWME?sNo@N}tX3aRU)^hEk8OQPcc0Cc_7p7&_UIm=%y8mdK#10XH<$m^PMS}U)GNNN z6I)%4kUn2|oC|ey@|A9=wfcuET*)J>L%_t=N@8)a1Agql?1mh>qBXx;$1qHkO1d3w zbrn!?vcj&B!ZuePO{Dy`_LFJD4n8YHl(W@L(CmLXS4+S^P~>^6jOE!p+nEVj{A|_g z)l~Y;-b7oXQ$8Z(nh-qO^2I@9V@BKgXq^5KdU5J$dr`<3zB4*Yi-~`c3R6RYDYC_} zB^*Iwz31;rJrk%Fal=1`m&b@2QYs_FrX`i`Kl=s`RA76#0)Onj9DGY*rv0@_W%4Hw@`k^CTshlP_QeBmjI@|m z`St|wh(%=eK__{yPISgoIlR?GYUMxh40}-wxVl-VbeYr5H7<2)=Bae;c{8aLzBc{a z%_~nbo&aT2Rnb>^S74&bW7sOtJeK7`nQ@%jYl~8D0|0xYg#GveqhV!`Pkh&@C0^pe zl1z6a$f7e0M+eitG^*eFpYh?XQACmn|DWc-GD9=3htarVikZ!s7)mLxw92nX_y!DBokIE!3w#2W@wC`0`%=LWXw%L(dDf*dX zVJjl<%PNPAO!0A#I;n@|csobS{Mr+4cI2Ve+m57e*~9Vz4g8%%iP7Ca%PyC%r66TK zYl9;s(bh+h#E)&TO$+xKfulph%+;MkiL)Kv zSsfZkxfQm>yNs;o7KhE|dMHttBW|j~$@^WzxqdTr(P?f-->`4IxD?`y>&}R}Iru?n ziYFXhNNcM09~T7dTzi9`ew0Y}ZSH$_Pyo?^XP-8#oZ^&$$|F^u0t;jhb~;|sDrmTt zv`m@^XUmI=_}kIS?b(Q-2i2gGN6R+NnF0K9B;E!1p4rTU>SEOTt2UN1@>!3a2}>Ot zSye5S<;)1~0ryr%eRy2x*`0XG2C z4Y*kmYb0rb@wv#^Q?oEH&EMHbbItvAif_}BVlIub`C{&_Ih!pXErc+&gL8%U6RyC0 zt9h+ySwwf3R12CZx-SBk;8_p7J6CkFdWp|~CF;hrlFV`^_qk8K8EZxZLgs`Km};Hj z9hmgQg%Y)xakdOjpFcqO@&C|2BCJIPgh8oMk_p-7Fyl)Lg#P`uIp5c0;5xNOnT~7Q z2|Hrgq>_Kr6hZVW4`;I-Cbv{8s0oU6+Lm()q7PhNu9G$Y(y&%_+AMNUy9u%kz+^W< zArL&@j(VqIoGsgGQ@`xlCt&sPC7~t;pHl6k4gE>`%m5cfkW@IEJ}Wg?Q{vUA&c~BS zdWS}2^@$QJzl!iAG($Y;OkNB;9bY$2u%gcC!a!D?sNk;%>qZdE%78}Qm6e;at<;p> zA(e4zY+gZDvikcta`1J@t1LnWVx)Qk)!rRRt8`y9vJaGx^fbK;l||mIT;JBlok-bN zXI&k61n+OYF*eJ=k6iTiZ1+z^a5uu2V&7&7zQ9&q!+S;mapFAj!jR(XQhuh6CnWO* z|Lw#&3B1B_=zZB#a=Q~+99IBwP9S<9*NDGfvZ&I>IEnaq^Gi-NzWF2^Y(=?xl5_GH zT4D{}xC%)a(MqV94G~)3CS9<=L_cM7hk38pdO219fmgwQC(YtFcX_qh)SyH$^k9){p<65jP zv3%8l=|4IGF|T-;1i4#J8km4Jg?w1g_}&@xttp=P>;npa%Z$vmI~iaWA~xl?T{kI) zSgx*}qNK@-r|-C&@JA?`}zGmBKSVcb4gaxT=i!u+%Y-UXptOA*?Z zK$62?pvr9XrRLz29=+qFg^8{4Dsi|Iz6HF;b&I{p*^eJ`*cJqZzXk|4mp6_NF%-YU`=!2WkM2W{wzno{5i3Fhk|EMCL*obBh&}<3dH}>7d3x6+HzjEaoog6pK ziWb$X+`_^ORsVL60Gh;_LXsKJb5UmD+L*^6{dj@+%WUn5=&<|Kzl~qHM%c|BUjKsL zB)(Klle+{O%_i;~azPX0WN9cUY-=SD%f8(q$m5D&TOgA`?T*<|-&twIPXbl@n~r& zaBfm@-R4`q>!B8fmWjWlq5)z|`!1+S=ZE$60oE7%es|oFI6}KQWFL{K-;|=7nG;Bb z9kNOH!Iu@sT)k_B(w#1Pr#;$>CT>~f?2wI+PW_7!DSv52mOPMkA1=bVB|c)eCiQn% z>|Afe5Y^?rhe2Aks4KgNu{FY2s0t*m%yPz(zkk4H+3TBACJWUQI3yMuTa>)=$?u-j zB;hCd*mK~hu)bDhSGGE9t7ujh;E+7F;ya+%QM8)2$VY@3uR3-FeoMf%RXa_EoaJS? zeHhiYZz%R^@!KCJVDDO(5vXXHo%UH)Wn%ug0e-0-ZIJI1w~o?^CDP3&=-e-Eq}=4GaLmVi$R^o4i$f zkN_HQsvEK&yp_3?=LWE(dcdcN6PI6v?HVY0ndO@56g|@K(l;&pvJiKbPRQCDffhOb zDh{_!ZrSD1)46F9v$gLeMCyF3o-^NQQwJ;`|98Y#h@ZNMRJurA#4D2_NE;pcm^j_= zLJ5R*GceMYe1I|yK8TF=@Wq9BG=6cD-i$BQ#2;}YwT*&`M29$T8o8-2;&_s`EW=fA zQyT6lmJlb6Kncp{AoyO()4|~t^N;Uu!{{wWhe%u_nWJ$PuC&b_a%Js0NxK>|$SR(U zTgakUK27xpx|q18q-*f&5s29za=k7Z3-UD2V8Q%lyyW0rw=3xbk=M~>JFGpznQrgz z6xum?-Sz`zw%V@W**wCYXxnh%QJExXizNTk=x?V}X;8nl%IL7eZD|nge}i#@M=_(y zrtR6yH0ZwCbALl3pK=}kPa;;9vFEi1H4wJjT(-f}zk z?L+WX^4mVE(y%aZq1O)>2cA}U62^;`w_ zmco0s(^nwU7a-yWvxvJ{UwbsQE>U&L41n71iA3u;{Zv+t=;X2Hu>en1pdH@* zAgY@OmQNiv%O3*UV+T4}n2bV9+^y%FK=f?-elv1Rxrp`I4IFQJp{5scD}VKcJ;Wq$ z1+V0(Os%Jih{G2+M)P&S%C|jF{E%4u64N3B`aL~nPT~Mb>M_X$k>#m9XJO;tlSi|m z?wU`Pb5M4)?n$9Rf0-@66&N^5wbdP?Geu8D>z{iv`#?^-g^LrN&x~>{lOI$`PN=Bv zQeRqnq#^wYyZ122Qke*PeHt7@aZs?+tNJhGdV)aA#%ihplj}`kt8Eb z#*MQz{h<^Umd=8&zxK6J7RZ{fTPsaS8;>Hq2(N;*Bf=y06QnD&(RNbDVSU@?4-&>f z;@ThUYM8am-#~P7dYi_iG^qA<@;w7Rmo~iCXjE&(f-(<_jGW&{^bE55dM#6Do4{Y$ zvF=->6HQg*BGn`GpmNf%YtLa|qshsl5EC(bODt3SXHk$z(!TWQvhhvGpMlCO2KYf; zlcu*vO4eDJ2^U!OB$*-%sgva*HM8SL&-a*$_tUPeZf*dtV(~E+R0ndcqPoveeOK(< zMe)9^#UN}<5i$f0t#A@OK?QZs%dwV?%C5*GmV?J4c|+nKd~~SYrs9nu->Zz+E~8^g zBbZeoR#E`x$`S=Pg5>r3Xv!&vJ!sL+!7wIhz) zvh$tQ#}xdA4{gJ)2dJ@eH{~^Eq+UNTQa~4RZLob@#u-t;4%cY5uRu&F6O#h>bY^=rKvg&S%J@^O6{Nz#rzxn)jA*_12csSDq^aPhOkK zMa(}QE$8(&J5qC>o4Kn$iDUckgPD-y;-dscm74cwgE&=^5x1EE34oUUs09{_^Mo-X zHe+fDC*S_nG0qaLpm1{D7EL$L$8@H6;&|p++B^0xhrx>+&jT71`+4e)6PU8q2pN@+W;(clWk+)Bq ziHm%BV9r_7hNj$4V5%@3C%(vY$TL@baYZ+e=X{mB)m_tJMyCd*_Lv`=x4nXk>nVvRGsO$aNW<0k_`?sPzb+Wu&a(A7Qj?FB@CfQzV)*J5yzNhyz&5dJ%Csdw|$fE>+ zYBB-MI*}xA6V$+tU@V^kf`Pb%esofvF9O2NWZjI+;+%n8OxrxJOP- zR>~uOw@IWmDJ!C-y~?j?$?8nk@51Oo<`s>*fe#)26Dr{+$Q64&eC<>t^VNkMSmb{s z4flachNR}h_SB@Pe1Xx*7iN4Tr;XOIK%HkNxXxos-bH+%+%%iexzu{hIP)Uxm&q@% zko(hlm6!QLn@KiZmgP=)yb`UjrEvsUnt-Vy>I zF*DXNA^8MeRIGSrHPjVB7e+e{yF?zxjEe!bcPNrujeVhZuP9(A<5vYWFKYE=38Yn5 z2WI!ah{dJUys?O>M(P@rk+BgTyzwr|VYnb`vQcls9c2%kYOMXAeJSFUNiFaXaeDWS z)5_NIZJ6NKj|zC&@sM)Z%k&Su(Pw}q=?xeD?0~V)+QessS(;@$;ugNTH-i+mIlVpL zjO0IK!@b8~^P72Am6q)*xp&$s^xR-BV28u0dk|47Yg5o(K#JBr-@m*eF={VM3~5LZ zEz!y1+v(#bdzZ(3ZwyB4M%iL>Ov=df?|NGI40+26*Z67t_(7-1V{&(vR_!oyxG(8a0T z2%432Q}iQ5>FO8bVxyTG*(*>T*2i^)ISjoz6fTX1gwMt^rXEq<T;a6Vm6Mkjtaknzx9vY{9vuuOPT-h$o5xOtocVc(S?IW-*6nqW# z>aIy?zYo?B2}w{h65{iF%I;?Uq6Ymx7Qh%?G$T0^=P1xEVHTe@3P&3TsQ%=YFTFDd z=kVVh#Q)q0Usb3)?qk_;lJoUzM!92Ps{&`Nab@y2r}>XP>rR&v+$ zs=XQv$M-HbRE`?TT8peow;r!Mp%-t1NW#~G9qhG83&T+XDroc7+;u_n$i^dO`+f7C zYz9&BK9@%9T2n}ao8=gM^K_kFvZWd^hV$FSlNNdtxN7RPZ#;hMTpOXQxf2 zSK-twT5}9OD2&g15Jz5_4#TWTxRBPIlCk&-5HKq{({aT}6fG)KJ+ zg}wij1N2aIt91XBHk(f_U-N8UaNg*Q*X9{H8q3KU@^sp`cSXFH$!z%UE;rYVpdt`WQG7m=C5S z3f8SX6QYJPAxOmFeOp2_jj+;6NhIl-$y=*ll<(y_t3p$J-T)iRA7;IGGc=8}-yRa5 zmmr=lScWKcKZA0mH-kfhaxeQ#ROtZ7$o;wP(4^KFP0J<**Ssp6aBCJ3CzM5Xx)Qp6 z;W=f93G!^J6*0rDGw0`OjKh~nXXWs1LIk($a$HL)Pwz*UWLpGdprK9!*Gy;R9}Rc&POq<`1Z-9f_PD*q%Mu@$Nuppv`u6Wm(P*;{6c zsrpyS4&8FKb<9h%{D-mWDde%@vdFnxb+V%_(3qG5CUF$i^V!ordg9ixe@2`CyK@cy zow5w`5ac`=Q4sqQ_F|lwPC(*wWbm(aUj%Qj^0*koX_@wpI99oJ4YX(MYl#sErc%7$ z4r>F7dB9?!!m%8=dCe*iA=)cBy-P$q_rQeI*=_QW?C6RnUAk-Gb7OZZZOf~@-RK9Q z-Q8k%`-_9p$HIxwh@DkFN#HB;P;OTfPGM=14hPK3QKnb5Kpsv@7rM?w?CdJ_vAxkfQB!EC`U&Es67F%%WQOZ!`a{+5 zZ;U`=pbh75`LbH+?2b>dkv=#44SjaDA(m-qxAV>!Ku`P7WiB~C?x=F>K1pZ{_M zX6Z?6I|N`bbi!(5ufZ4FzekntpdW6&`n|;s9!nUx-$7~jtKw1}^VVN}nxDpSgJQ+5{YNimgag{`5{5jR-D)U zPVNTNB0#D;duf%EANyXYNpDyj`P`?7gb-b!Of3O<)WILEmDKEh_hPB;fmdRM%jVNG zKCw01uX7Rj{v)37u~j}v!}WC%M@$SQaOoktW9()8OnU)`J&W)3O0*>}d?D_|G?4K< z_v?;8$jY~~KLEW(w^r+xTUrXYif!+DMNDiJ%t;zVh^pPm*9wQ(O}Tbvc99(sa@#Q= z?^|w?UuwO^4}5gN6NLpVD<%9PQlXLkNqPig`OO@Ryp_?@3!7|eTK1w;jH&vNLCrG? zMxaBJ+=+^d$V6)&F@l2EURXe7$r8_8=_GDTAxfh+1S`}q^9Oy;hoJ}S-Wq7Lv@wUFv4^@fiQCqnpp~#(w&4ZF2EjEWD911azM|J4F8~QY z3FfHv12QW^MCPOgEphum+rC`*q@HC6nKpEfK-Blrav?!%o}ql**Ui8&Xx8UqL4>im zj&J;qWRaGBNLA+=WDMI)ORXcf^)nX0N=(@pehaCrOs$~|t(}mOULdY`y-_!8vnRl1 z>K3u95hP}1pCpdkb>0*kW2y|}yY>opFOd+fU0l{l2tOzj8FF;)PDGAu?c+4HkA#*iV+i7DQ zb@)5$cEwBLT?}Qbuje%#^cz?1Oq_DFv31%AFb93Bc~q)&^%4K=fuH-Gjoa97k|#dF zH~HKxDXA;Babqs^4{Mb%ogBK?w|x8+fpk1>KL|IK4LUxg+y-LjXAuYgC0N>KLCYJ1 z%twIUv5?cap+rT>VZwA9-9Ho2_Y~=YJr0c9O&n+R)xnnj1Z527wo#aaVhp`x`?_= zwJ}?>_RMUu_8dgmRC@B$P0pxp+}%gl5ua)-d!9~Tr{My;dpIk>bDI6Y18Y;_RPDA= z?=uC?kP7UbI2XmQe9UmF4$?PB!|%X%6sc7j8Z+hsBL*LgU87?fRL063_1`DVe5S>_j6gFNJ$R-bKp0E3kI=8?T8+M&ENMV)+AdprJJ|4H2moJd+ zfLyQ4{$?#S_bS%z_3^@sm=6e_Q&z>t2JS!19%3HcaOC0a3pWM*sgcq8$8s%{IH~w3 zL1Ow^PVF?s{ud?&p>qVui($E#Vu4A>7mrRNgInndaeiUsjmpZ)uJ{VH+&@#%&kDft%HV6|JGRT-6 z22L_dOiSHm>XC?%{KP2ajtcj+-n{k;#<_&Cz^aotv2jGF0t+%t+B{lh8MmL2JX1=a zZra^o5l0uu<&W&N?KlB#>D1tHeW8n+7IRb{&yGWO-}K`0yq;n>?{jFXJ7Ju&0qI^R zju~S+m#U$p_M4sm&nPnF5pyhl3eaV-+6!Mqv>h9X)1@Um!`z$pmh5zlo6Ji#r{$49 zH_k?@x_X>2e`v4e_?t32Q%~uJk0mif)u;E#HJ{w4!PZivw)$Q7sn2?XzFw?w;e~xJ z1#LaZmw5l-0lD-5ta;`9YGN@z$+k$VkRf3ukN7c&-b5$$f}; z>%Tdobe1AHVW8yuodF0~|{P=$7 zq&4rTaC^|o`LNM~T5~(4<4Xc`%h{|cM8{ajNM*ae=s|D`EyXLvfv4R^sJd~N{L$u# zxg9X|mo!st=U7sJUGj~-m$XXJkLiHl2~_BejpT6lnh~}Y1iD+ao%dAoEeZoUKrv~_ zmiM)I#1wetta#oZ!^l{4yGG-kwZ#E_6tih)Vm}Z!G7B3J=q__|hf)*05_Qmz*|0Di zV(OA`E6Nk0d32rQqzq+6K)+px%@jr3ib#;ek8*9)FAC=jlf1TJ!vC2i+P~Pp!?HPo6XueWDm$Iwp-3+l3sD&;2Tr8d! zo&{$2;-zOH0S=8zRjYH~A=<^v3?%k+8BeHNa=)tLczQVNeKNai0O$(zrFpdfyw(-IWxh-dH1vJA(sO@H^2 zAbHvVG*k*9lyzWJC!y6ly$PJVo_G&-&h!bYZzku@@Xy zA0txyBCD!qWwny)I)?&+Ebhz%UnN# z>n5GgjtN%N1+=kh`usJuUAtYgrmHyps4%x4ufLVJbM*uuLrrl5ryMg$zXh1$^3p0R z0K6UZ-&u&6+S&hQ^%^&m3vX?lMp7;UoK2X=bu+`SJYXk)`+GVzJ{R2`wDMcr9R{j! z*^>=w)jBSiU?x5ZbIBRw;;S>3cDlh@+gDF~O)*w9o4mG}X?DZg?fn0!Iv0O7@BaVS zta9(`kaf1ALZ(*MyNbw2Ld49s; ze(0*De90x$T8qg3kTxp>CBUAux<|SSb=S7IemG7LgfzdXr!m?h*&a$0uXnMLQLk@h zQ~1$x;p#&n4*1&A((H&+DO4|ssYbQPIXD-LkufJFqiZMJKnDS+z-|HN?qb^64c40` zrFDxe1%S+(9&HobTx-AYr?5`?5Wx2~C`M7>rQknzWs5GxA3$R}E~T|Y-1!7kC1&ZM zw!FCe;p{5}!?VW|YOOVA<5pM)z{~`gOAXy7X1K@hK9EGtW4doWA)7>+4L)F+BRlGo zK4f~8tbB#~J;akt-v1_MwP8cL_n_;XZhTz-OV`kPvZp_QMSRya56P}R;@5udhcF!x z8oaSs_)&Dv@u7+Ss8s?wL*Q|ra56Tk$m$4iSPd8ytLy$ zT8OV^#HjwzBfp87f6xD>3buld?|t4);><9Z-@ASE)r2G(v6+G(y{iJJ-Q%uf-ho3B zVpSwNYGHU67yy9^1?r;qmB-yV$ND+meeaMHZri~Y&731nDBXN}q=A8+ftCw4@?;3T zvoR-1oa2;0tal8xfJI#yUg++-YB@R-q|G{-(q=W2osW!5TyAq+2&ufE@3I?87tw;J zei`8(lWA^V2Dl?xfYc2V;P?R$uRr6Tkga&(|AiIT6HPUCAPWHI5#Zh_4#3o+v5Kwu z;bKZi{&4 z8|+vYPK>_^#Qh$U4M=b5=v{0rYb`nKnKWwv36M|bgfn>etW4@mW(qQ%qAl6%)pFRa z)D3r%Gcu$V%9RhuFNSRgki2Ck@tL1a^ww#qjNi~cB2szih_%x8&603sgqe^~ar)0x z1}Y?MglDchpLMaIV`8MK9??2Y7ZZfc z%Q~}1V)vxw#e5JMH(I5e)c9VBLn7p}3G8*lxUCUdaiV-Y<6TfT+`&F@{@As!cc5oP zj%M)R3sh0Y7v##%Xe%CD6UeRqqN;&wA#7?5QEAM<5TPQEO#8X~rpXVkS<;r1b1vE< zTq(04BJT7%un}^e%zPVGBD1oOtJ9M&q?HKVrCkU`zw|r18dILZh!FEj?~r$Z=tuse zl?{XaD}0y8?Tv#TF9!mtu4CjK$~;!_&vI~FstOM3{mD=8efT{PX-ji@qc_`9@R?t= zQzYSIAbtK5udVw17BiUv$YIw+;U=gJL5uE7f9R)bVt`Zjv7U{DV{}rhSLsZpRnIYL z-O6b%UEGVvUXcu z&(7kHCW53lwc?+5QN+iDlJWF2A^p4|IM0Ux+j@=cUhD)LMOJ?1(}v7mfa~bja7VMW z%_O4`@Fs89d< z!)n%Z-^qX5$XQ>W-Az89R%$2&$gi-)Zr={Fe)yB!*&wr!&^Y)-$!(9Y{hbq^78&qm z8h$$DUsgcIALQo(`*)s%hAr_-<2Myo&r!=LYtc2{=48=LIzW`o{WNEN6P_KlbL5Ic z!r!uyJ-HgUr52Xks~*yp?408-2ngG@wrNzQcX|4z+QSw$?qq<-L7^Yky0f*7>g*!q zOLN@&K9u@{alJi*?eq1FuZN3$_1ck~&5>STo|g}HPjm)kiEA*L-n+*_a&Bek+0Ru> zm|ti`JYPXlc;)>ir#Kq~a)`(u%E))o z+UEJ|WV32nBor0NNMwdcCSL?{@RUAgfoPd_HLO}_AmaVxDEJ}>s0I?C!cDgo$LN0T z@EsuNaI{rk85{97Ei)@SPi2BIp?6nsxD^BsjF zU@NA96BRr?-#%uI@M%Y2XUgKt=fGcUNN_{SBjqC$6ENA<`*xbS*T~KGH7Y?lRaiBi zUQVxl@aAht!v$z|I%AV|rI3)beBf}I1PNr{!On9-B1b+oOH>Epd%w>yqPDC%uVA#- zc5prR&DBRhPK3qg?arru*<+W#xKe`dlSjNVgY}J0!gsRlMFo79#Uax}4@wO|D(P+BqSR0}1y&PKlc3E^3QH zdXbK9#h&n5F^RgGdnNFB{%p&uO8=cl^{yMsxK+`8Q}W%)pGOYK0Ft?WY^4TMp~V0~t>GTvGnPJ5N8tvau^6Pkk>))bg9#ZDMkPsdLtkVlD$3KU1Ac8!E1HzsQWLA>sLvy zrR3YK7}`pM%x$A6Bk3dO6Li+Fni|uv!BA7ndg5i ztV8^@w8jDbRQ$l|dN87XL4NDc_<56#%sbe4F_2o`O@%ng6~W^mTAK-d{qrk4;a$L< zHwcuw!RUycKR# zs7+?5;Vq&Fmq4dp3IPf5)qWmf#>CJZCeli4seDZI1C;~_ZNr=I;lyQO1^&vyc5l;l zQGvPvZNo)ivmeddNv`r|k6pk;hHc+=t=_nfE}{+`lhx=4Ei)_wd56!^xjX4p)u2~` zX)ry9aV|w)e)T&m`x--@0bC1R`5P8gr$M%fkqXx)N6(DU7cysmuDL~TApu-7!RaoUya(#=(PptgnJ(m=4dS`bYE6|m{(0!Z_M?12 z_rxe*Yen{PT-x8g2upPq?0#EQ*i)oB-_&O0rutRYbt)~g8SA6l!h>Q*MhM+)gYY#M zNqauXh{BlJu*F18ET*(Ud}gpIvQi=!RU&{^chuGP%ofsZN6L(xP?hP&2&=cQcT^wI zvOQsii5Qn`IR|$HPq9Wo*nMC1Xal!I>3xnmCe`-OiP(1Y;70SeIw8s%B^6REVNh@6 z?bUYqqo$6Cld%IkK6+8KQ`_;54^s9Lq1t{Tb6|diqn6dx0%`@qmoI}%1BYzX?KO=exW^3&w+`RjM zdCtrXRa9Rq4EPp&bzg0uJquYOLp`G*wG@KtFnut^+iA3|AR2Shp)d{7f2qCanl}01 zrRDWBc#W;xOe1XMjd#FXkdF0Oc=W`7b_m=-jaL7=a5@(YQTMUJ2RBgVw2|pp8St zIjY-N0Uaf@`i*d|TRTPr{Q1^EGe?c(y_8p<#1`QpaW54SRp6MwQ`{GPi){2xa-N%0 zTnQHzSOflTsb2v4E@&-q%Tf3TbyLqc5u|grT$^V~@Dg#9wPrs9+nwLApI}4^(-8o)jq}uqd|XAqYjdHB72B^phWl z1BbE1xe)!p6Jd=Z3j09Ih*^QEY^I!haLcp+CCz6%;!2i3F!wAioyNzn?{%tFR?>l zRYM3yrb2`5JA5pc-dX`Bo=j5uXq))I298nl!?0|G!S=}KpqU6*Q5yb8MN(}d_QwJ^8Mx^ojsc* z9Q6IEJ^jE;K%yQ$m>0gX&*~hef40pz1@I@%HR*>6FS~|2h3E^8Y8`C-njyl zM_U1=r1?qw#{Ba{Q@|)M)@k+)kB*A92(pf+E#*T*d^Xl3WG_3V^q9OJWQ;@xf8-r@ zl#XD=9UtZZKh}ie`P&1V!=BkuHsv&5^~m&f#iXON>{WLco8;?G6gg#-86^dp7XoiH zT1x?NL#!WRA_#QDVw^m>5+M9!PJ-Dz)3K*}{oC9~?_xvougt5TVjypLQQcw75hw;nrQub)+w$gc=vwW?6Js;NvV+WTzC>} zW2$8y(J`Etr9QIhTG$qN*VKGH5v+@Ff_FZum&nc19DnMl9!`)U+Wx;M?!tdRanIh5 zN0HCPbQ+Gg9XV5oD4L8;P|wfE=PXjtfRe zHjVqo8wn%>;X7L(wYv-o`|!jld$M@6vstMTx389slpmWQ%^$9*-c8o_-O{I#P$zRB zJ1;#KT*LAUsSz8-&r;jNo`h;w)9Y-HwGtlt>i}G?P)1EIVMeI#w!>DxNZxs*S4IZP zz8lPoJNgd0k1Szp)|Um$m$3n}s0WUy&BuEE`S>y7sR`(Owqu6vumOIAFP=_|OnU7! zz}SARO~;1EXZOYX%QhAjhSQYmljy$c)2MPwzy`L^q7f;Af2c0nBfSRi1LtL_D$xJs zYrKb~uNQ^v8*ta^MVKFA^)E_wVHiG|{xi zUYTj*ravmI0=8Q06@pf zqrN%dl?${pM|mhgCn2p!ixdTZ47Y>u68Q^-j({8qbb`H_@`O>1aCOfSo3{@Xnmwy;kW%5iXWd0))#4CtJ;Wxci-|6QIU|p{|>l zHBtLLgutJ~s?{I@j@beCnV*v-kk7-7A;Ta8ONEPF0aCV+YT`d~5<79I+6e%S3t6rd z@wJ2g>jzO0PY?|8&N2SBI71fy`^sohA}^r_5LB{#rccbzr5KXyHv(tp62(hbexNjHXLJ81y z*Fv&f1$OHPz!AIBIYR&JcPp=%dgZ}8MRob?lMfAo;yvl?& zz&Glfc0O+U?g~k}vD_z`C_vxM&rbjVRue%1T`F9({W$12UzThje zEPTh?)IMUv8>lc$3Sx05yl7qq?$g=B`hSa}-L$3gf<(K>4NEEThoxR2oRX$#c~!@9 zx1Pq&e{I61!Y zG6)On6Q?EZX5v{Q^ny3L`V8G+O=4Wf%H)<@r5ANm9WQ#GRi+|KyhfgbNkBl1F_+9& z`~uzRximmNQwcal6C!_Y4-i4}fvdqJ9-g^gy!&eu>xRy?gdf{vU)gT9-*U4cxB~8J zO~XlAI8c-1jvCh{>I7RZz&)b^x}5~Sl+tTQ4We#HirU!yQ#Sg6Ftq<{lP9h}Zt;cE zL1^z3w^>#=?)GvM#PCjO&IUbGn%1cdTrBs~P0H6Z?^t+dM&T0pchkDDV$7=jnbdNZ&*U2fH z0%@U8e=HjFtk>@LuB_cULoNIY^JL;wkTt6gy!N{593t`R_xx6koj<)4`sIXy=_9(n zm@nra1~esch9}to&uCJ_84XA{JqyFMv+MN`+rd_Mm+kehP)AcjHeqhSC= z-FRskcQ@Y#&G4V?Ye9t@u!5&mj|k8%$NHvh$6mmESgqbI2OLYi6fZ|nzZgNW! z>|YO0^~K1?PsI&Bo!p&1)^)6d-19rA7@x!Y-B$ptx)YRyjp(T>T8i>ZtlMQZcUZNS z^G0)Ibkw6&y^@}#24FZc?*p-pi1v{8Ifur3K6P(p{$!*QqsH1!Uuly3!H78U*0pzy zLV%-a1fgL{w!)Hs2Pm(e!XHv^A`WalaI}+%&uqc7(fT5R#EW3s1Z@Xc*>&V|8WW61 z>XP_>n$>tMBsdN1{7h-L=mBZ9KsF|)Hz^v0G1uhFzJrn-Q|0BD_BD~@sVXF=zjv?a zTU`)MW?nQ24j8Wq0#KF@1h#z*@6vGM;a#{?4d4Evx0md+Q#X=ZvYl72`qrHF&=XWf zCr**&E8TJOZ=N~Lgh+n~uhiBVNp{At-xV`_)O#}@NOUP=<7+cpksDZ?mDtvFzX;wb za(rZ4WT+pV`R*xwtLIUD*skM*8<}R7Mlle0N1e*(N@L(Zfik6|QCxK$%No__F6jm> zd#bJk;-J&Qqk30=RSWRzeO!8fFmrNc^W4lOzbii_5oLqhvDL69l;&>e#g+%1@!SXk*|C;?y*H0J@@B^JynYV~2y zN?UAXx*On2PqV*YyQxBB(gYOvOWg}P1peq~?%y369+dicz&E!QEdL9XPds*IcR!BL z2=~uPp2+!++`u0?zJ&e;?r)d;$p7`O90;r@4XGASk#PXXJ(!pbu#OogTHDlIw}4t` z@DM-j?EBenpa9;&dcsq8!Gx*~o%C}0iR-Q%Xs@Fm_RJulh`w~I7pT^lm}jeAyIIVA z7zU%oKos96X^5NQRr6WQMquvZ8RdiY2K8x_dhd3Ri>5Mz92xU?i0gl4};0$dfXP-8Sa>qwULAJE|aspt#o&Y1}2sT zgqbU`tmB0nYQqBUfi9lFTXp$KFW$_aX|@iT(=}J5ArkQ=GJwv2 zuP#-Yg^%2v%$#T7+Sls%@R7=-dT-7xeq}0!;o8PS1c}QeQq(C#J=A()U&bWe ztJDdyP)Far!PYC=4(bqETiUTgXRd|w1jp849q(!{a;7MKf%oT=^D);}2lFzD02)nS zpsdNJR|IRP^aL(PeS8duipPL3wJE~fUc+&PbWd~TRd+tUaMVbw`3xl|eFBV<&*nH> z+%e!Hol;BMulXg>xZ3;vME~$i)l(iS~N)JUR;KhW3lD0}i)`6-rYK#}uPj zb$nNpSxRBXU`=^m#zBIgb(YsEaI}Q^N!{_yTZIjQ&6MiRbJYNw3KP}LO4m)vk=%*d zOIYoCoP)%>vO;3ol@t$SMZO+&-182#>V%*I5@F3df>QpYvE44gZz!YyN)dA*T9Z4^ z-L+b#-L@ORNTN|I>J_lmpXP4z9MuYpA8`Tq&FBg&&LBOK=9oHcoWgHr>sYf=(;9e8 zGel8|6dX?fINEbry(RNbs3&he)+<0U$)c$nBFQi3eW_*f0kMxvt>SoKqXr4eY0H0` z;WT`Sl3krwE9Bc!=hagm^R?7t$Gb+=74-Goq#Y`LNjT2>za0cXcPRxPz2$~-_1#xj zf$59W&8n%pO*$nMP}}1TvoF2EepF~&$ZRQCzwXCPhh4k-?D7ML=0#61yrt{7H=4&Z7&# zH1N-CpjX6tR=peG;o~CR;zYgXe@(M;EZR*@_s9mG1MpvLX2G^3#j)sqtzizT_IaiE35Us5qR)g!u=d;Cj}W$%if-z9u!YtTuy0{|=j8%0iF1axD}0tlo)5=ZK1H zyPmt$@Xs?J&n&yNSK(1}HnBPS6@{FlxiGut{ui?%dlQ4kr61(O!9eUxcK7*4h2 zT6|tPU|lkm$h>Hp;u(SWo{gmXv&3p$o5(2Ud(|8BEm2RH_6xUiUddJeB7T%wA^rs& zy`5Ww9?df<1GoL2VKrH-9xA;*|JAVMgf!4HphY7tVRz&v1tA*XFomkfMw#pExLEbSNV(6 zdY=y>l6`{j938OXGN8EPK+17c9@hcBI%xX4dE37fziGHzT>G$)q7@=O6)s7c#^n0< z@rHcBHk0-EAH`N)I}M&=qY?Evb@UOc{+@66^7h?4!Dyf`Hu*7PM^?ev&!D4s^xX^` zVDls9HEs(p3C7~zEw^yJ15#hf?MX=h;R~=Y#q*KNK!c&=^$~$Pj!I{A23ZwNfCP_& z_TPe>(wNt7=9?;MknN3l^PHkgxKuk1w*9#|A4=LPU1ieRGmF*4Kk);Q>hHG$$w1est+pj~kw;ATVuS(;@ zOIcNu`iahAT8dsU{qNbh`*t!s+jgZDJZx#4q|p{{^drbhMa^&7XsBLEBkD{en`Q&N zt$-}gZ(e6nZ`&2q^BNj$NIW;OW;%x*e;Pp<`AG|vl{L_kRhHSmLxoqmXrYbNwJ16` zAge-Ru9zUK{{Ot|i~r8M4&S)Rz?jDbL%Iu`-Lf2U z__Vp_-rK5NfGEGiiyIs(-?(ms576%6fWF@I)&mkqz+SXPbjOt33ID~760s1XoeuZh z;oN}|vPb^uCVveYNV{&$kTk?5?K)oxBjlMw!(KS>zam!-P0oL9SF{p2m%IB|7fQ@3 zEX1*H_;SS={*p=yv-m5Z@Qzo687@v%5Ym=)-pmV|Fb)!l&ma;=YkwO1izdr zT}oLKnz~N64G>p5OP0=5qgf_)Eg~c7FaDmlOrZO|Gh^;IrEUjIxua;tHPI#nH)c|H*Ei$!{m|(UiK4z*LGX;k7e#PKkmZov_ z{h=eLh}%IQx7LLfGg{rYw-fycW?L_|vJ$@`+vq^DV2v1I>$Aut(#x<>gLDJN8@(T* zqBh!am<$g-lk&PEe9Nrn1xKASQiuU{S&JaAcT5FPBjVP$i4-wsQo#RawCX%Gu8L#a z1T6FPHIp`$%StdkG1q`eq-?y1A2*l|L!j225e_pU`U<$G{PhD2n`y?5|7elZwq1ma zYSjVM&hz8r{_(l+M%$LgC?3Y@g$bxOIMH6A9v&(#8vv{l{sba9KW&tg0vCpFjc2F5rvrTK) z6%E*2Y?{F0PtvwZm1K#ocjV~v({l#?T6^Pwv+E9uq_rM6ctv*$3yQd&mhbzHV`>E% z>4WTR&9x*)epA!3-25MCk!L!g{?Rm#iiY`}N3!o{CZkLrBL12#N`SlT27`}q=K62$ zWEOweJe&%KvNKt0osX+=O_?7v%?WBLQ1B5<<%auRgPgXl*L(dQ)1+darkGhniETdKKEP3h?sR-$lOcj~g^hQ)Rk&$|43=AurS`O7?MnvXpjV zPqP_SbL)PU12I5f{EyUQ!mrYRV0SS}Uy-ZHgvkFKuCC^Pwahvrz606?@CU!9>d_{z z1m5c>@%ww6hGqq$Xi^=K=RP35+eI)f+%AbMjg1dx?O71Q-|XMTK_&wRc5 z?KCfZty1y}tFL61TAH!|srM#N6)_jOoe0hYiq9B~em%pK7RAF`)rs#R0fRv@vi{34 zzHAsnM_cu3&NXzP*bH1q&TKz3Rn{=!o4dPnpJ|xb-d^%!8ohSj)<5divr58@1Q7Y< zg|iAlnF`Ub<{%qpANhgm8yzy2<58M^{-}$E{5K75dtc%wnbpkq57#k( zT6W1_lI^ECZ7`~xUYZn}YDcMPsL z$@?iE)Io`?y}|iu7gmmmmm*NQw*kZM2CNcY+(KP@k2@jPIKIVt{?Utc>D^N2_L2+f zE>;M}25o^fyNvB05j{utTw}i}8SN7f6B{%A0T`G-J8rC|KJn){p?Q;iP+}0JZ`)gm zflAdXplB^}QQ2^|7nt1h%EE2yIBLD#_@%rkiRE6>R@sDE6SpgUZ)CUYd~l;M?0Wi` zPqg&*7wxaunNdVfz>2-fqrH)$j+L}m+>9y0dD(fv(Zryn%^>X|M!`}Qc#QHzxj+rI z93ZrjWM*VN&St1K7(f8`sQ}FDT_p>R{~i0EbIr5Mom*!l)E1j7*rc2Gxrmy{a|!Ba z)!W8AwGfY|C&$0p`ywA~B;Qa6PN5@dr;!HoMsy}{rWHPL(7P5^&7`^xfDZ3HhsSq* zU97nUxYw;Sd%iBVQbcwe`+qKUN!nB^%SM?hMz61AoIqeyor4UaTau!Sc1(Wt8EP%B z7b$;&p5r*Gr&&!_4SR3-W#R)v{dJDRd2X~7?X7_-K|0AGO6%%=o^&v>^Lfe)YJD^R zQu~(k3gL_~AvJ}_BYu*f2sVz`FxwwIHK*<+9w8rcN=%lK@8hWe2%VIbF*W)^y-*U% z-9B&HO;qdtopv7>VE3h)RPTmu}0BNqM?=)sarORV7bM)A$Yg^}{WEl_kO)YDAZgeqq(;12c#{L>5suTCx z7U2{4ESCY&CTDMl^hv%XUsbwdpNo^2fO;#{N|+`q&0{`?#9p>FH;THkQdSo>RON!!kM<=!=FI~(yu5;aWEvvBz{PfrCv(msDQ z4Qr&BtdU23**!_3!h>rU;>CrLJ#(k5VwPg|=igVCV0ig@@uHZQjiXVWXF_kt9ACHd z6Tc;Ag%6xWcqtEOXS!IfUCUaMYxenAM6iNsl9M)=c#rQ_Y!4Mmeh}O(J!az+=j*l$ zvLqM?RvMag;?~FXGzV&Xx#jU)o12eeQ#jHw7Yc=zvPuqyrp|SNcXIc?#7)&BmmWQ$ zTuXSwJAYO&inH#q^Cw4z|7qx$gZEY}0TDkx^~Py8zgWdj~d8qqj2ne^7rLN zj#2)IV89Ns7D6M;B*~Ds!<_!3sA({L3x1F>P|+b;n*Xb!+P-_D`DqhTXf>@CZm&p1 zK!fid3XbWXKr~~bi@rju)(XL9fOEwzQvOsMv2c>BS&b{Ngd&!wL+6V1uR%X8GMp%m zj-GQqVSJVxkPD)Va(kQmAXVr6oY?I2(xKW)jxGsf+iYQmD=Vl*wBYS=~ zCfOtrxO(MFJU7*I(AhvDW}BGBaNXX(q@=Xyg23I_ znwUNAzk55>vb;|(lyxF0?i~=!G=sw4CDQ?v{`h8|-k$8Kw^Q2(H&T4wy89UIa``@Q z^NfIzTjP?w^_Vqsat=PBtUTcYsUvJ`xlUQwAvXXv&Ejxv?S*`O!3-@#wsMCF51SaO zD4ut>kpFBP?Y8W*dkBFl4zI4#$A8l56;er7%_jbJ>PpvdCOGxsE#=87rfx@C zTwK<@UJ}8dT8}yokG;9hX-?TrHe@1!1k4WFIy+7QRLa;exu4?vz$nKhR0+_Dhruh8 zIT4bCD+m>`Q$LMi8o%3?VvcGtL%!p<)ztM?-*Lm4Yxv8mxP)n>7~c=jeaGzcvhb7z z(N9K-4VR+=K>HCtt}o>s%%)+1$n@SG`Y_lE62S4oqB@(M;7PUV@S~8qhe!E8tX=EK ztNPh8T6C|Z)Qc+@HMA%VFd~iEkwLs>VQrPku6uh4$g6efx_ZdLV!5X=`F=k_IdtB3 zu?d`COKsKQ8T70w_J1X|8naSU8o0Lxri%ONQXekv zDc|W&NK@U2%Lo0H` z`o0t#NBZ`+URWZ{Hs2JppbzZwv`e9ptsM(>R#bPzKT{S7hZ(z6^4B#!7)H*k;-sDD zQc#o}3fX*H!4DUa0BK2p-&i;fe<7xHkb5;OU=TKLH9xIAA2Aj=c};Jwkdi%q4?ljErwYhL~sCUJf7{{pVHyWdRWyF ziL_~v^iSAeHqZ(n6GFW@kmWo;(5ci1Qqj^=uG1GbH4>F-M!@Zywk}rDRj`ogEb%=` z&j4TB`lKNOABGLQW$GWvHURM|2UwXcbK`*)@x^KTc~);~bz21;b8M;oEa(!p-rhe> z(e`6ZF0`Z+m@%YSN{_&Yfv?+e;*UB~Zo@a1HsufN_kUPv+3cFJC(PjZ?a2gv5Q85S z-*0eM>6(dVi+Tt7)8DZ8S!%vX8||;troB(u*gnF2CpqW2A<9qGbh<{6?&UkcrkoPy zAL<)g;(zQ72@MQJRltu@I9XFIZypiCIufB-{9UA%!$5n>?9VH*(#`m9E{&AqaN&Mi zfkzE#?W?zEDB~a?7jZYg+x|_%SsB*dnoN65g^XMee>qoJm-v-o_h{h#+80tnHfH{y zC+(QS#cDN3{m19?&zXpdULp)3pS+aM9Bbm&xk^Xe#*jULt;~L8(bj2ee4cSBNi|D6 zf{jl&4fyaNzctzRsrgHDy?$$=a9sROr(6(3`d-Khpk9bgx`-=7j2isiNgB<|%HXlL z*MNUBO;S~R&m1NEwEKWC^^TDi0)ZP*{@&Cr4X72WVCAulgMis}NNrjvv{^KiO}lD2 z7W={EibGLbV`ei*sfbv}FotIL{A!h2R>Eub?}KNyai|cnL(~-oKM@`e=#O7?*D$*N zzno?m=wP~u#9jQs>2&kouRAaI_lAojx8RlPWEW1>!g(-oxJ^y_D*X0?`tPDA*@=q3 zN-*_$=T-M2(ZXuPBFg@#jSIH6eNgxe1=V^r7g8E1cQ!Wa-lLXX2=+Ya8|^=1ROFM? z^~YkuOW1f0R+RJ=D)IMK+s9$4OoRPQy$hp4PMRGa&;fvu8ZAB^3sF^o_KS4CJ}jbd z=SlYHbwpEHbii{5g|nMef10m%tIRwSZmj>IS%)>Sr{N{~)=VKi_|W~bgDsi>r>Fve zvF<6+d)weJUWlp_KPA4WY6ROv^7OEQ5=LMpCGxEeGId=TlWk13jmkWzmfmNYeB4r_ zt7Z#}rj;XE^yaNaO!ApR$shLFtR{_lOnBEXDFS2B5T95RWXYTso7P0Gg?Q&f7KF>B zv79ll_)V7q>C?8g^!4$S0cQ_`iukS<^{Fe2T7W#i@9@W^fh`XI2;RoB4Y)A8Lw65M zXYlE)BL6MI#ctWLT*u&2o1{1nK;B`*U(s-(VCOcjuZ&^U@!_K1QuCQblKD#T(nh|y zbmyb2^!!5AB5@?P=qEe@#(@2K?&Y7UKRhV-H{tCMrh2c~u@+e24`Eg4!LoAh&=Z$ZHur-Xe0EBrXr6DnV z6Ac?{N>}$+hLc0yH1sxC9;xz0$l9v)yUSHkC6hhpVpkIr)oHNhGWT6l>8X&FcMXV< zmhp3IJnzk3QF$y-KMyk^85M5rWM?&8a5uh*dvztFq{q6q z<>}25%$iQaUBG!sH1#yjo-I(H&WxO<;3`goVrmRahFc6wt>`;3D zGsC|NQ+DSIv6%glMMR;;fIN9|b){WNebvfZ(QeCpr#6h5BWQP)ouOopu=vCuvFmFK zbItr%l9n~=S`xLJE}d%B$IQ>_8xveX6M*hw5_z-?tVO@M-yqZp|ikCZTr9FIiSBJine#so=KyOUP z`>)iC=Dovi)S9Q)(zk)t!u6Hj94LKPxz&)>>=*<3zfZRP+V*rPq ziJfa2zZfq_rs*r(X(f_o{J-d`yVtK61?sDkQyRf%d7M0$xE##;6@f|JS=ev~H{SzU zkhb65a?$GDm@ND$FzVoWhgc27xRx|);t!Q^9`nBN^SmFX?y&2=%Eq;1Po9}vwvBuLz+72|!MwlZuq;E2 z5=%3r5AoNvV%poj)_``CE~hbMr|s-7wC~qJE87;%H6=b|ti11Ys&))W@Dt_fWum0& zxPBhIMI#Umn6;KtN&@b3XgI>bH(=ye0nyGXrp8%9zr3U?upKOJV>Q~fvEaR5o8dbP z+j;^*fMF@wKpmu-Z(nUGE>yK|oweVoEQ=p{W+ti4;*d7ey9e-(BUhw9rxjJ!qGkg& zXom|0pM@%#GvXvkjEb1vWLq6xv{7D;m-WUd^SRaByL)<>#4)GP-Q#XsCb)ZP7!i5o zmFJoWyM*Q3N=+%bP`;a9YWs!2HUKW-s5WfDFlfS}i`QIB(m2g!G$PI`x&PsFHE5Ya z&Aj)!9Pn9r0Q@at`Hipcnop}8z1pemUGDC4#o^VO;u4)1bfTGtyqB zb5~c0D?Q8{Rgvb_ucnE|cQq|CvSx6S`?gLBPPauLF+V8=t*d zZbw;WbuPXvUwSgdv~gX2u&S~zQT`zQB)Fe0JrYi$=Wl08OW-4rt`yT$lF^!&GU!#J zR9otl!jMGKyI>u9{9BuRl!c4A%RoeJ=e=e^ z_(N?@{i%W!yt)DG{WmAKx7*>qoCo`A2cEM}Q>m?mbrs zvyX7*v}EY&?*xnBJ~wEjv0?u1Pt(A!S~`9*uXJA>*YRFl-%y9>*>HDAJY(U4O&nrO zKAu+nP=V{*$hh}eiq-CWNBXPvd73qgG=xpu7M}T1!Mau>yjhGr5#HON9V^gI1(5T5 z=BGax$$a=hq^iR?C9Jcy*5*3dZDGLE()GH_y5lPX#pk{RtSD(^6y7V0=QBiIHT{wJ z+2ZQ+jOl=141pPCQE%ZcmOh>zrYtOK!(7d%rLX0Nk8i*gwcsq6UYrA6{8j$G#;{d0 z8+?;NulAGSK1}9RRp`*E;o}ha-DT2RMU@Vw_i|Gl$79tVppOEI_C4WB;{D&0C?`Ht zcHRF-u_};@&$J_KKU17gO3wS=y`)KdmG$#!(#>H*5M;QaIDXFFpV)QH(hcpuH(8jB znNk`I<9jj65|?tpk2D$7R@@Q*e+OeF0Cm)y%&w4+C57g5|eIgUVkDCw-hTnTfv%7eA*Da6bcK5CKH*LkGc` z=zxVSWc{po3x3UH{9`(Fb@DEs2@}k}e-QcR<+M1=uGOyp<-n_-}Eh_%dg1A|B zIwb0v$COtD)9qOcyyGN-{Gy?{)eBqw2)>!RpQ}!Lk-CvrBhW??I$j4^8s*Q}en7_d zQ%Ung3?KEX90Y1>i5S6zVY)Q;|>4jb=zx!TZWli-!imFmXSoDgUWoTp`)?XjCC zTj&;M&D}-m5lrenb|0+}fjb~R*nb0w$2W9CcsB%t8ekaYxSIXwQ5 zdx4iP{YRrMC&kis2uBuPZWY`?y0S#$bz#&Aqn$8Ersuf}D}?A_GmXq+QNnsx80nAt zOX;_YABVqwnNtTA*7()S9<=3qDoJl?H~OUiV07l&R~8G*QSU#=;Y%-UJzIU8`M}Vj zp?1+_<+D)1k<$siI~6Wa8-MFeOp?7$)uh{$7t+@}+ej3AuwBU^z0w_4QQ_-7L@fo= zsh_WpNjHU}?!v$l70*{VWJc3ZjpWsAW=nmSl5L#?XN=>!nw>;%1o$6(X|1D~naM_aU}{oe9BFJHqir%>(QMd zHfgi${TxE0C(BsLzv1n{ohYktx)&pDwkUy0&P^jOP@Wc`Vg>?>0F_Ztv)xAK91mka? zxBi__{Rckmret;u7aQ=uA7OiRz{kOO|BE*ysviL6C2ZboxcJH+pt-Ed{@)GHPP4t* zmZimGjqkF{w*7U<8)R+w%LVqKmL14kPK+-ph%1;2eA zUdjuBsJ1jeCGAH%fIuotSO41ORcWUVp+|Zl|BtLUk4ie<|A42lbmo^z<;;jH)3x;1 zG>K&Hh|@Te({*7c?`<)|h0>I8BUA)5b8?wnGAb8TYAneqMN?E}otYGwg{ot1n z3*7HIr_g^tQ?GLzb22D86N~QMf$EX>rP&%3abHIX-xcGnX!CS4Q%Km2$06|vdSe}( z9rv>vf&WBy`i!r?v`>x`0gf2Tab`s6_+ne`h#{nQeED*kkU>=w;6b^?C7J{wR6$_!&Wr zwmpw%OhwI>*g=BL5!*xkdk*(oj%uHheU$j>nzmT>O4oI=frY2?a7kpRZMv_{C~2Lk zmwJ{RT!t#Zss2aw0`mlJL~-t{p&JFK&y)3mDyCrD%&7(#s;NC6Sp5+z1oB%@#Cmh$ z_h_G;L5`&e4ic7R$XxSL%ZpmunFy$h4;FW{jF4IFFj(oGi6B^_Nc>RU?hO}hA3l8y zv;eGv(JXC1Hv-%Ru!%&gRD@U);Wg-;82(I4@F<9T ztbhCUGwctPSQOwqNZflzv8zR1#l|N<%1;Ttnqkrjna{KvaOSjVzH%6hg`r+C`)oqb zfLDw?*st-DyUP#lO$k{CXi_`nxDF|kS-;Sj>sRibEh*BxE#<*d92cJJ2cLFxl0S$H zXf1Q~wjMqh+!V0#GP1byx?KFDDNPsSm1)`wsDIKXV^EpW7mXQ5FUh)dDiEu>(-(9g z;P~0_h%G4`MqJeY&u5ITKXxDDtf3Xit6f(95%;%@^O+c^hrcc>u`%k%3Ul+q&4|Do zYvTzxmoTZ87MvZgkhtL;RoZYSA)l|4NeZ;JBsd31R%X4M^Tl1#j=M0R@yy1@&0h0D z&xbm*UUewR;$xZ?vzn5UKbUK^H4N_*CkB=zDi4YLR6l0cjjVu6a|CNQvMTiIgkS2m z{Gz|++tUc-ez;;%MSiR8R15S9T0Jr?Fm?oO{)}99t(|)uP4SUOpJ@bb#K$iIE|hnp zWMGpbtPwInSe$#PhL3--JV&~8AAFAU06Cfg69FS&o7C=evv9tvUJfPkzv&NuGD8MJBF(Au7pZ&u)XdXS}T!eWbs2H zZ(EtrnaEdiw`cFfUAr`W<0xV}2J7NRXarr+(s&7<^wPKNuBkWu<^J#LmDPq4p)=>0 zgXvIZy+&%jkD}?Im?{+Ib%^Oj7x>@IUo{uwS}~3hl5d)r5p!AMUEnKv$K332>AIm8 z2*9Up`S;;h=*_{2(~oJN#cnPz5^sijNS^kNDs*^OO+Cs}~`IN*J)OIFv(=jBy z+F>OmY5CW@z?B#Jz#3f9Bx`b`Qxsckr|8FAQS ze7;7TMK^BJwgG$whD0{ z{cMu0y5b%@q)s&aD$Umf%@)eltGe}NwI zt2!lHzp)I9yx zLs|DkQvij_ewI`6s(Nh;tso!UUgyW>qd*r{|4|=VXEmW>dYf--ma%c}_n(O-hTJf> z&2M!-rR*H&=y+^8d~=+N#Lt58g10t^lt%{x$0}Xf{?#aHOiNMN3L}l2 z96TjJJC>#0j#3;!BEk$p_wqvn>Gt`xTU>EmpM^hqKEqr)#7fCR9z33SlQjxFo99 zDcLd3*otie^zPXnuuTR2dYl&xIew6k*5|QjDug$g_-b1V z_VdYSr%fZR>Ovie9%?>nK#hR z2cGf(bfF8@QL($6K8GH)Y@N8eA&%HKlbJz@TufJ^l~WRZ z2ZQuh+*- z;>hjd^?uD@g0g~P!0!If+9hxEHj7`Goa%4wjP-3JewH9lnj?Y2CmuCv3A}Y02y11J zo;Sm=0ixRpw%DVDQfLln-w4SP$-aJFKYRY{cW40dfV^*C_qJ`$6idz}xPIT6q7#j% z8vnUj`HYg^Y@~x`^n!HVsc4wWpo!=(J`@_6znrETyqmZE5Qt$vp!k!yywsm(jsb=p#8yV4A_U>R96lj1p&y> znC9-hEEUc>nbXYmW?wPLFU9AkZB!;V6kR$=209FLG=GEvKL_ZvL+Z?6xcOq3UOMxV zX&kgrr+D7j^R;Hp8P@GQ%cjLsQqVT2nyMyXi4wMnckMXF(DnB1sRMu?AlokRnBM2C*QzOnml;BLkE`h(D5XP>5-gcgbx z-~Z|@!V!<+!To?y3_pW@x$JyOs>zXmod}FBOLgsB!dEFGM@MHva`1M`6u4=e%GmnSQW!8H?#t7N6Kn$m+!=frkz^X1Up z-h26rSN4{~YWG+^RRK`@@7ztDUg&{b z@n@hL&HDGdBM}=4XPrEFVCMYxwI%hojKOd^g%6t0qE;E~|m6(>i zmBtrMrA9Q4Cx_1eFaeM0=e{%Xjl4NKAg2aLuC){TPjaZk;@Pv`1(X<2pgQ8!)XP*P z!6|h#Ehd{_!=;AU@OW8gpxEAS5;N=k)`%7qrnz%eho*Q*(b$Tj$4wM3E^*r3y++`l zts6hj;{T?{b>CC8GjLSZFI$zv;*a3)_e?ny69xV;zC%)vbYJ#La<^mWG3;1$v}{p69Nb1jvnD@kbc;{&_6>8Kuf-t50UO6qW;rn;NuAS5R}+8mXTXOD>HyrtL$((B-PgGczN<;oiT z!QsF75R{u|y6*Hi#>XtfL_5D*39j9;sZ7}!2-$st00V8t z)xf&(IdHsAFCmq=9utH35`?3rE^hG(p{hN%#;+J^H|rOyj{6bAtjIPVQrx!gop+h$ zu7Bfhsx{$%l@tsN=jM|9eE{x16*LzBTP@ueTY2j8^cx==j*9>|iQ3elqS!4(VV6J9 zyeefUtxUGhcR(~N^KLter2UNz^N+WRNM&~WUa>WIdN62#f!4Y0&SW5TTw>STApf^q zctU!D=6^EyrAupRdI6s{SVt3UgDhl4e5j4$cEpehmDxPfInzVVVc-%kVjY!ZPbh-d zUoP@zixvBi;&IxcG4FZQB6hXRUCRWh=TXH>arcdg2BV8EQRQ+?h6?**bP5)5qtvkFbdtx$_S;f1m3p2O%u-9#-q|nsAaTTnu$560>$8;PYh~Vz`PDhvh_@_By(TK2ZwnZQS{I_wT>e6C#^iRg_*|b6@%bA zM|5c#$SNSz>I#8`83?!jB1>XUob!@&XkBK!0NsyyRt(w%o{r|=)hkFvY$n*LNRW5d zm%Z`OunDs0da1XZnH|qP3MAYTMdIyK%~{nx2p&V(r(J5!P8{;l&%Q?Ygsr_N1ZT$^ zXhjBioHh)<4!Hqf0B_HpYG{<#S((Fp-53@1u$Tu2+2_-oy8k+gQU%#&*2ojfKeW7e z{RzJH9Z^eg`;^zIS|CJW?gao$3o5Sm9yeoM@|LG!H*<$at`yiEd-L z1qWlFDd+%!lM_n2BO6)pQuz5r>=o@Hz97EEuB{p_-L_n*qP zh&uj?K# zs-hKk4!L2cx16#5!7IPjBVcR%q`^&flGuG2SmlsOqEL2}m)+fHZ%1vqwLRK7&X$9k zOR*3@95)C)4IZJ_`S+IcY-p7QPEo^Dycy5};T*i_p9VyL zLuui-FTET zyHweF&ZQ%gqA%7v?vS6^e4bNcvzghaEzsh>$lK?e$@UzXh`K*z=@fu^dMZZ)E*)2L z-jx@FzTIfh2+|J3i?5gDf(}&>)8f_MB&qH2PLy{N`LnzA=(QVqSx4RC72Ov|<2nu2 znn_;cC;7ykeg^=RpPlRnXJ-H*e&men*^6JE;~aPBhCjVgACiP7Jlmu-(|xAN6f2U6h@ zOct<9~`$5zj_vtIQFXDEi?gTx* zI2x!h?tzbl!)U}@O@<-O*%T=y$`2DV+v~KqP9R5$ki&*HH?S~VCRBFJ zFub9&W>C##Mjh79DH=~3iy~nW_3oNHb#)uu4ApXvbS?ej|S5(j+P%NTUwO<6@B??ZKiF2I-PZ0uxhs6 zpzJ@FGO^ujn5bHt^$0-hyo}=U;X~ zipJ0DlwBVF;klk7gFC(^@RoP5FvzFtrmSPyE)0v9yIf>v zz}8XBKLQAjv4FPUl8DZ9wTx(#&$6)IJc_hwQ{l6NU8>yaD!=%KaF^kED39wGKsfqheX73eUjVkW*%kgutvB7d5b&WJbs59v3I3GHw zZ;fGgcV704$u+3cxTKXio2pChos?E9O=Sq1$l{e}uPW?!#cd@D0Jz=ng0Z(&cGUmZ z5=LJ5oBcvm4D#3SEqt~|L1{Y_5K0%a!X~aucr1VunX+`mX15ePZX%4@mk}z%>iM1h zeqt)<7H6#^SUSyfOVn;QDiyE;y&<^&4ZV$z7e`AuH{CqJZGKxD?n;7|^}* zMjOUyud&I^0mlz;ccLD7E*UnvWW-JnN-u_g`e?d%D&c8l`-r*_rEr zT-`f!eD9~@d%suMRa?HsbDlmHeipBs(BT*9h{zx4+4i*X;a8ovBQ3p9mnP9(!u{Lj zk1_XsI8Qqe?=iE_v!KeZ)JtY(j530Dt~toGX4uIV3}o-TL1_+>)owGusY|ts-c3Qx zvOn*a6_afuHrcEJ6WM8p_=Ms%vGJXP@HQH}MdI&( zsQcIX_+$^N|C?6HN$6#gB$emr=Q;B(tMSv(GGYoZ!FD58xjNHLUrt)tp(A(2^b!tU zcc|BpSb_EL0S1ZXg+(X$H7)jb_Jy9Jsi4aS-8Tulfk@cEBR>_Ckd86iFjW}a&VI!I zk(|;{x7tCqllgj3kz`M)DIFUjp~2>DTjiI6#TNuczOU40E=Na2_o8gIo3@f}Bg%WM zQkd>YYo)Dp0PiC*>oC*V)U`2H<9Xy`P{*9vE22+Q{3D==BsB4^cL_cMJ{4$<`#RL@ z3Qm>dD4Wbr-T_n_t+py!lh%Je>gQU(=0$w-s|(MtMr#b7&~g6WM1CCuTQ#qg7`mYw z3%VkEbA5sxQ@g=Sq^DRj8{R373D#z8K%H_T5yq)it-b94Pt!?27AuXzd{UTjiEC+#rADW31HP49mV4kq1v3xa~MJ1hB6dZ$?H6g;fs)7ZvyOYw~OYscvuw9+bBmPCzOn3-`#nlcY3x{%`!q~scl?N!SHZ99mtw|m#5GlG6 z*qf8|R#ggeOW2&2viHyS<9kT!M7^qR!g2=+hayQm{S~p1`Jum>m=Al?X{@#kS~BS}Yu5jdrnL zu|OrWcB9mm(e- zj)F-m4QaFQG+d7&O}WsIlYCErdbiYU@0gkxpTS-J4B))tTI_SyqQ~$@s0jQ(cbVZ_ z%q`Jk%{J+eJ}VvjYJ%%qKEY-Y$6)mW-@0;0^ChRq(b8Id5)pGF9iWqiy0^AITyNg~ zs3Vl_{(p$&N!H#o%HG1#K}Kt0z$QyMW)@$jzs9q0C?ls(9iENd_5rDkX0rZ51aEeo z$30kkeo9BVqWD#w5+l2F_9UULw$5RF(rDtBS9YrlHHIUcwiJO$!cvj2o4z|(l5ilB zZSybS#py|d-hwU6Dfb<@iX{LO=ZrfQ5j;R>ZOPLd>Co_hk&ACmoTqMt1@v%9G#oEw98(^vnC#h3 zml4+10K|bQ7l)ykUEmouN^{ZL%-wtwu)WEm9zh(@Z8p94(DAsWVCg|)oBj!lJ;}aT z3}shHPX58mOs9|s0ZEZ}Shx9y^Za}v)~khr_s0{9&OoGByEXW0h}O&_9t=go@3HLX zJpZY{Nm&W5I11bT?v*}ZDCWUnT=Y1%lpW2}@9piDLTK-ol`Y`?A zZR-J{Ms~@N_;#|Vs2Udl*tLU8Y0Z^qHyfoDuAeHP!qe&&WqCilj$6-M^%lNf)Pe{0 z{%mfu-~fd!ZjD`14EY96?qF!Uy_@v!_9jC2tOt-zdBCf)Ym_2bx2G{7GaevWET9&h z$$y63-AKT$!mNWV%@y2yP9SopmqaI@A=5(w{L;o&@z$(}wSVfb=hP~T>bqm=?Ujmm zC(E!-Wu$e@t!F%Xv?BaIw?znEL}|rvtdOG$X9mwoYwxR$#CMSIKiQ`ur$5RkU}=#b zfdq@W{@?qA&YkhQ?{JS8Tfc+1!ZKqQ)-)i_@{dkc!#T91B_$n6+MYq~aYw{lSxGd3 z9FDblRkl%CvLJ7;$Yj0bNq-xUkpTAr(YvUq*9zL*GQnlFA#F77V9ZZul3p0Qlr#m) z>%7fg>t8oyoQrvmOhP%N^GJ(Mm(ex+^PUsUmjE#WW%;w<$zO`+Nx+l@%pz@(5mBWF z>sc9HR&>zb3p}O{do0;=@h7$uRIuwVGLj+rWj{if$*4W@hL)gv_`{Fni z+uw;2xdX5jNs1v!7DSBSC)C_P3|?nfXhHKy@tx9?qOmpoOn|vmtdxUJ<S0uO>JT?NMT~F@zz=|2ocyzGC3#l;a(Fq~CckKVNb*FR|JKGM5)E7LJJL z;N3t<%7^!4JtW6V>aUEidfNn~!zO;}V8RIp= z)3QPks*S>su18%e z)uB!Ri9FeCYvc&ahev#VuXQFS=|UVI5VVZCF0U^&PPJP(#EO#E2!C8u)_RY()NNQ- z7${fPn1@_v-Z3x>%iqVpD>!>?2vCb=Z{_XH8s_Z?cBkB~(RTM)3yH(4TH5wIJe1j| zV(y9w$p=-f&7GnS^0~? z=PluX5Vk4F~_0_OqGY|GS(x$+(JJ5jAa@JzYX1Mc4W^>>tnevF2 zTyUa{nVCz`OwbhR(K|~9u&j2W-CsAxuJ@lj7hLtpvP}3?kffMFy~8kNsXQlvTL3R< zcxPCUq+0W(XXzRU@WXQxLUfjV_h2HGh4AEvMxESz#_)uIH#ayi*iB@E+qW z{RgMzILNNSM?ycv852+XiVkxyRYlVo#iR|Y=O`)NA|T-?1e^n1t!!BnJ9|d<=4?zb zdZo;FMc1@$r6v>rWsS)u*BVTF4~Oa&v2tDu2-A!1idgFmE*k%-7wHJ*Qti8A=B*I4 z--`0IOu?(N$?fi1Nb%@@O@(>?C$(QU9JLObkgc^$y+)sqR-~X5hlKfK>fRbUE@|3RUlvg^ zW;@8GJI<`Ys(ei#giO!h@0 z!7e-{Pe(;K3|7|tOR)b*;YZ`@zEz!UHa-Qb0+4sO8?JrVa55j zs1MqlDce@0nJ9Tw45_>$3%~oB?f3%&ifLBC?RU_~&FU>n^HH4>lBs7jNg6*P-wd^w zk?Rnkou30gOEagGs^hNBc)Io}~gccfu_G^2>-|-o2UEhfPXQp4%L+X4TY@vKc_C z9WXcy6Q3Pt)px$s)27uac`n5%8OeVmk&l5r54QG}>A&?yzEX3nQurmY5%Fxf;diI$ z<4?95`S44_FVB#roKrrx&DGuIr{*`KE#%>5b_7ZpluG?I)!~gP67=WB zY)SCSwV5SS!%;pY{liUj8(k%}b_#F)eLm^Ldy?Dlw{>F?KLpx7G>~F~6w;IZP9N z1(3fOu3=TD&BHj?UyC4_rde0)R_l9b(hid<4@YyJ3mVswpG9D&-++cP*X)3W?)q+c zJwqmkgkKu}%@^0vgXkeS@=M}$W2cJ+Y0!9O@&#SmV4$Ect|4tHKsat6?ZKX?i8+E6 z@MhDsUW2pSuQ@}fUdR_|uufY)6G;9T(YLox%VAYF7+e7LD~=qQ+`0z<_D~W_5}wiL zgC()F4a$T~#D04~+gWK(Tk5gPkKb$@1H^flA9K!n1srs#R36t4P=6Gb@|2pU;*O7dK^hdWp|HjT24V?P%Kx;z5a$}C7C(&NpJXM3nA#Uih z;W|?{fsGSmqDQ)7rRtIwI9 zg|2DR5jF82d%?HXBd=d-jhWu-?qqG}xvl2;K#M0@6DPN=0yf@eC|!v@ zUMThJ69m>1HR@P*XB$QJFRlD?hs_W2#*Fh=8x~}Mt2FbXHJNEa-LXrrpOIHi1Cs35 zNva&&akW-_6t{^_kH3g9TYP;bn=2IR#dw_}=Hf%3@cO=Y)iI9JFD^+vBBy>$)9~GC zEq6^I(qB~v1621(vy%Mg_Q@H5`T}BUUmyM(-7kQ4cjnfx*|c-_&sJ!-)y`2~TaW#1 zJsK2#L$Ij3-1UEpw%ZP=|5k5A{g--!*q^KxQN7~+Y|?@T>TF7?AwY&ruZjQ21BYjD z8*xq!Cq0ZBPtJ>P$wiises!GYnqVRql*ykjC4Q0I+5d-ay)6^q@>d<%mwr$cWfm#a^*(v z^Q@es`oxx~a-G>ly$!LwND{QO^fj(vId|Mt{82UlhWz8xk5=j`jZ=~*q&EjS13Ysv zAY^m+Xh87VacCk8qo=Pbg#{+G%s%!Q1)o{`x;v9|vuB_7sZ==DRtOCg!?ZIItl2)f zCNtL~(;i%lYoSkgwOnw(TWc&Q*w$Amnu18Bigh-TeCil}Fg4JNPj%q&LB6gI&Kj z{Q$Tqvg2#ch0l=@#mg(@(+q@s|&hZduyHW#URV5)v=c;qOHXbPjH%xox`A zA-nBOke~BrxR8Q_@PeL441`i+*t#Y#>|ZACrTGN7l5d#p3HG*RbhkAkTe`Nfc5_&? zu@qUftG+67JT6JvX=N0%WiLQQi8Ex;W$>-k{OlleQDKs(*r)qY4pM)~rMSs|?YP8k zZ%|`2>B5ejePs<>Lv9NvHb>rGMu%UuVrO^kE<9NN2VyUX&21lxY~HJcZns|9Dnjp! zIuwgokuido-d-q^cJYLkw8W-NnDqVynbRQ5UzVLlq;CCzo<42aYEdNh)$LxniSzPG zlKM!SgfUL1Tf1=l7sSWX|A`h;!HfPWi&}fj$2qNpnE+bi>?+W{x;@uJPXoEdZdQnP zdHn*?R4CGIbESI_o^&YBk8AOg(f|6CFlOt#-W6ZP`}WY~FPU9qf1a{r4l{<)HZ8&r z@0cA=QqY91S^%|t9#Lx)HJmn(YL)c*^MgKSi-6WO6^tuTU;`vNI{sPhk*$TJBwHYN zGUh#6^5LE9@8g6+DbQtuuJxLFR{2Q>(}fw_`1*Y*C1}qvRuI!W$DZt2zPv(+NC|x& zQMpqH-%Dl)d?hPXq?#c(xDxEIgLP{2ir!EUnf>PzKj8w{I!P0kZc5eI{(TWKO6{6R z=K_Jr6=N;S$OSq$iYw#Y-n5(mawbtsN)yl!*KraI`Cnizlu7ospU%vIw>LJ=xycTv zJSkOTO#EAac$(T9w{T5)r(km!R90XD(|q=mwZZb*pU-6_=3Ym%BEw7ZwLV5VWsq+& zymiM$RN)IW(8bO;1a}HfQ^btPe$usoNnTwIzq|uz8t|l?{A_6t^urv#}X;c=z?yh;7}?4|uvB2dwN1$v(TAIZ!Y-KevzP7*C;Z z^^Em(JeBUtm-N{u!8Fs)x9-PET|NyH^}JM(e;kEi>@N)Ied0+_p6A|?UEo!oHmQYL(8_|@a(;kdAXf=Iaq zsQ?7eeEnrbv*p;`qm~So;6j|-gIOczGXw{MjZ+wyLK~Ijit^fBsoSRWT?pXgED2xO zd5?Drs63483HV|jSE+W2mCuKrDnAOlsb;>A?eD1Sj=4U5(+Tt>pMS}G#<{g_cFH%x zsWxMN_mAJwHsGMDu6HSspROeZeJAY;H=jPzk2wi6K+TjjuCB9UPH_rf6Q>VQWT!t3 zkRN!UFz+#UMpSq6CoU<{=kx3Og02gu=C+KLJ8~V-&RVy@^uQEYUT30(M4|h_muhFR zB^bY6>By0siz>Bfj~0;7ZI`S;h#2$vq8E)7Fl9mQ63gjN-h(D=JUxG49+-bgE!Jj2 zRVPpc(%S__RB$J5-VdXa=&E+} zcDrokgJkUs3 zpAVYyzBC*BR_LIfeguUJ`PXDa{{`dK$KGlEN?l>Pwb!SqSlk_)FmnV9SzeLX!@jV$ zh`h@pU|nFcbNIISnx-!VfF#R+Em=>!bV_10Vj7n?GAf__?=?KrA>1j!Gr$N)p`h}V-p8k5rd<*37P-L|>($+5OmMNs8;e<#I&7TjdQu`_D^l{;U z*QnR&gPcTHzJYc2^h9?*$g#7{iKXS4q1i@4c*}Ce)HBDepS>jZt9ABHjrxEG-m?TC z$gI<%DfaBw)%Y^NW3VKbc6yqH!$d8?NF)Z6NuKO4TsvN-tVzu*uwfs{t-+UpZOX^} zD6Z?@G3-2cns4*XW{X(YrkM_6s_<}p1}^bqP-247Bd8EytaOUYK^cIYUb9wgQ{kBu z`SdaIm8?kNsULGRWFf^a1Ms#l@SJ?8tP`Tlf`krM^wK?hzj7_4A|?~cKn}4OZC)Du zIIGU1d4rcWRwyj#$r>k4|L-}}8DrZ|#jGe@OQ8^qWBq=9X_tRDjU>(${(T;*7+rx) z6I_ZcWcjqV+`q@dt3>A}?4k4tV4H_s%d69ro<)SE%#+WoE1wiv&)&7RgALGXo228d zbyF4r;lE4_6a;_Z7q&4-3sA^py|tuY0;VZPGJ;B!+`on51%pil78~%vGK?u(zDs}$ z+osn6IV#5L@!Cz{x-)HFcKAeW|0{n(!l%KDI^N6Gjv-II8R9;^>qooqdp{sItiwj# zU_8%eC##SJ@4+)&ZO66E5*}kbyq4_bUx zJo%N`WWc`3y}n)GOr-H6Z>Z~4^<ZwD^58qxyWz!Lp>auZaG*)F%Pw z*f%kwKtT=O+*bi{CRN!&2u$uZT1%TMUsDb>(@Jf`L5!>nV-d%^M*?5=x7^cj1_p(8 z|Jtd07PtZ%R)DP`p^PLYqLI!#b`h(5oZ?ig{29T{@X(i7nUf5(;T?@l zNdQ`$-b3o+;?ao}H`ajXBTc+SDyTPHXzz!WdjlhrdKP;+qNHswjqw^Hjfw1&oTHK(F@RLjsiSDPoe! zNk@JGannkA7@8Pe48`%>^)d%kez?y5=BTyxTG-9W9&+}$=*#-W+zFbm9vAn>bC3kA zcx|H?LPqz*_3_1)=E(fojG8@FB@X7}Kgz);h9O%pC0|l@{+))zO~sF>%k@I0&u6k~ zp?KpI9-*KVHZUMWGWt2(872cg!f&`b=z_`L{2)yKl0rU9D|)CNloi>%ZwGvHXQ@u4 z@)TODs0HYUO%PsI#9a08bm4 zrHreeOun(4S-c;sq8NXWJ8u=9yH#lbBUH!%1ql!u(P^`0RGJOTn92{*?KX25Ui(fM zkO^0vH9@IgX@D%H9|zrtLh>DYEA4NIs->v5F3?u`B}K^_)r12tRY!ulBnoNJL6ZLH zkC9GjA#+&vAJOq(MU1YF-K_B>63Epm$f<*q-uFvS;V3!VWn>GGUnjoxLX&X+DdKmP zTQ*C=fd?r_Cr3-#Vu1SGHOy&;sFjU!h|js0;Es-8ua2^9=pZk1+wLC@l9EoxWf;OO zaAH%Xi|UtG0{7_}dS{<{tTYgnIG^Gf35!fGid0hP&M%nwb% zFTGTpd~q>9%U?@Tz}MSWc;S&PiW}clXP!4{wTr%`XKI^JY>C|*HSJue0gd!dDUW|? z-@Mquv7twPEa9^oG*w6veEVyy7l}X{PQC10vvJ<7QaS)oF^!)4U?mraBi!EIf8%mekEn^S_q4-qCstf<18rFk7MBTvKZDD}a&7a1efGrVUfHITbHY`s+BxfM97CF=!JDOQJ3^crtM5VVa$d zgCoEI&&i^Myh5=i#F_$?{dhlj^V-&0@#FaEsb|*f?*xd~iL|9LMscg@+HqFb@QggG zaqxFEPH#Xc49piF#eT9pD2T2p?8&#ou@*FIk8Y9N%UL|G`1@8CDyFK}$%s+{6THgzC437Y+KvOq& zE<8tDnv^6O4FMykUypwtzaA4#^|uUQ#4%?3jIS>PSpz^B5@#Z)Ca2Mm9}3917ktbV z#hYK!I{e>gPm`QJt5kM7T%%nWZOG_0wpWM#h-V=85**w91kyd3jmS{`V<^y3rAA%qhUb^Zvx-lvgrgNS~vP}bI9ls~n2&u+z zq=Wkh`?kKw#z1YhNOv8C)NM=MLcr`WV(O4n*8)qzq6^d3c{}He8aeSxoRB;7`1gfv z4{(^!|A(n-4@<&q`&;d`^_E#{o6X}|rEjY+D^O8!%}v(~tt>SKDP3uTmI59UXuUSg z46RvVC{i;eK|xY8FfsE$YC?t_JfN8hB8nn;AkDsK@Atje^<5W#_=ktf=eeKzx$oca zcmJMCETU`7+i&_b)fZbAe)(|3DrCJ_DN$!GDYJOLeDguB<0w`feHuJh-qF((P zF?hXMnH(7uifrz?FHbBVBY)@ahpqEIT_()dgSYGYT1ExC)};Tm-tH9q?=o-pjsGSB?oM9V8%i4!(t*_FE28RZuPBAA<@cUZubm)7FxftF zWV6>O>-;sH{_`ytqt|TvxjZFuwL zJQAK@hp#*%QM?*ZN!pR?wY;U@UbmBBUHWR53nO|ga9Q5tmbP))*{GsCZ?|&=(tk&k zexp{Q@ag?Z%L|I&12UY9q5P;%RAO=+e`K>vTGx(EXu^x zT4C^d5#{&T{wEr68MwW>oOQzxBXZYmA%dy!;Qlo>`YYn-Du3)Vcsu^Vl$Y1_$<~$} zmuRQ;;SF~_Ja46ai_RLj@Jb4VWV5X?FK<#YAg~o{fuGQe1vK^>m(W*J1vMUs2_&yh z@C`oRGQ7~8loknVqhIv-V#K|}&GGP9R}qW$D=q0DuNIt>28))m$BA6V<1O*pY;npS zpLsBUGEEw8CqB23!56#!h_0z-Za&|b8u#)jQowsPv3z~M_9HNHax9me12AMM;i02G;id)^0yMmBhFbso$Pm7cVxX_RwpQ(O;3MxP_TfDHAf|c?; z;8B6y z=NzJDNzP93*f+t&njN%rjF%Z){=i6O z(f18$O3M%~!!Nx5ny;n*J*p1=`T{#TNqPgLBm`K-svq4!2VM$tR} zC4MwNBTdn0`k7^tIh8SOpDkR>A1bB4+3FYRKC>xb)b_+eamsNYAde8PZF`kwWPw7n z+>uUI+;k((K&`^F1wY%qtZk^{QWN($Hx6hu>4*AJlMJY_JSdX19yfn9vfdMOVR7`8 zL|#dsAfHv}W6RE!MFpOT2|Rhg^vIW(`fd%C1H0 zj6b;zKUodHk6LHR5DiTHWif{2oWVZdH!A-RccEj5)&7X!+?OX~nAUA$bAK-PoGrfW z0_5ThaRSdp#^<$x*pc&rtP= zfe!fgg86fWR()i=Wu|SCzxa*z^nHxQZ|k?b?YWC1jf2@J=wZO_uX^lS_YUx8E=_N` z=(!hfgF&mvTW6@6B9ZR?=S3rbJ_dGK$d%ZiEX{A$J0g|>)`J%MU3;gOsAf3U7WH1S zI?C(F7yD1o{+zwV)NG*4Q+Cvqtn3Kl?npZz-Q=(6F(VuPU5B}FF9u?VksWicT`K)^ zOBxIH>>kk)%mujB_AA5VgG*fFq8Gy7c79kJv|urGYn{#YfWB{(Ph*#!TNFzczTiQ> zp}}XzWs-stI5$UgyJX6VQE1~kWW#q^Ej5-_OaH1h*%i(*YU&N5!4l6g zngHt3_w<)e#El5duKF^pH|A+f@#u-AhgPvyU9~%X_NGM&9|IE}9pZq6o!3OHsa%TM zhanZ&zJK+db#xUA?;&;GTi%?gUE{Ryc>&f8n||xgi>Kt-8K0j=2CMy*33`|xAS?-2 zkFIGzv=&*pumI`Umr=Y81HnhqOIpY)P%x#x=FSddzIw9<=b! z_03yyyQTChp8S;;;D6T~?(;ABYH>7A)2asUTOam2)n2^BW)L^il835o@}HtN3&!xP z&GQ#G=Ys+HhKr)=kAmH+BOcEvvtD#U>T+^v#@{CJixHjeYXvIQJLkS z&6`nF_gTsEpKBUnCh*+P7odTP8f~8|wMwh}G~d)Rvfp}Ybj*Fhd$CxlgdSE>+n$y3 z()uEwYkgFg2KQ(4Ez);5yOO8<4r~4Fl<2hV)y^)-N&Ed>Oq&mLOW_SZ#sxA`v(CyR z-Gx6hXH9*T*!cbs%3(9j9KC}s-2+!HHfK*+Ld4faiC~(X zJn~NqjOne?%?PFn-llz9=m2lX1{D0 zucF)42P(exkA{q`bNSFEWMwsB_32?pb7EJATMRj@Ko(2CGcs>m~bw9pO5^r(0O2#)fEjXC$4i@a!u<#H1+sy zF!s~tK!?5YTIj+<1BEX$pIoSp1CP=?3RUzVr2G<6p*3nE)!r3@u*C-;&9nd9kXjw8 zVfHO@=ZeVZsWX9IvFK(3Me&;t@RQlocI$l9sKB?;)90dx@lC#%UX$&?j#zJ$ne)A^ z^BVxOF^i2%2T$LcdtI<#;GC2;mGJV`x&o{+Nb#|+wtnHo19?HjEVelJTp?m(zIU4e zyKodDuxKe&hgX)sm~EF&zk`pZwUabC)DUg}Hskd6^V21VY%y&wu%ZiZv4=HS^*7Cw zxiPriDWHD_`|yG0@$A84R|ZD&Z-n`P#zxw0^GxjiS_DQlh>)4P`-%I%*gq9CyWhg= zX{_hfcE^aBOZ%Zs`{&rTCZU_$eazDsUYG7yxI883Q%&B)Zi(9Li|pN%W-Eg>mB7To z48cmzOoew{SwO>4psX2Q?x2^Edjy2MvCEi*y`xd*pN)En7mr0;ca5rH4U}y$brPRB z=RGCS&zov2?+lBa0`1eXhv{2ci=whQ%=S)`|09JNQS}+;s~~sBL-`9hb8Fym2Yb>i^p>cG;&+ z$wSY#iL9S#SF!@HX~YuX$rIVL;py^9-T8klStx-w!H*3)=bUaA|9;5!x?A`B`s;RW zGdIo_!TX{Xd)!Vx5g68d7u5srSO{6~ZqbLhGLSYnrC)v}u^DT(F16q0goQs>Sx19! zm8-43JN3TwSYySpehRyE1I)`i&xafv^KleZjOJ4*R}Mwi49jD#!_wZ=U%4FJ#}fpe z%2m9!=~4I>JEzWMSY+w~2vv(ybuO2IwgLuMa+ zejgW{=*=>3e@|k<@D7V&!_TI7B;|q1Gtn=c)ABCfCKtFnVL)>Yl49e_)`Iytk&bxI zw%CjLFtNk>x-SqREEE?6m}}>c9!@%J9u9c9DM;}O8u)bfH+7nQlaj~w6ZIri_N!HxS*U$hD;C}+<8bJKkbJ>Y?jHzA>5^qJsT25dx%3O&`i#~r*2c9EM$G_ zIAq95+#D)}PukyQZWa?t2CR0Sdb+jNBTcqDDC+4UN!FeV)I&_yY@^1;ZuMa-a705E z=U%22CZ?ZutjRv_*mr%j3#b;aZ^~d;t%@oV7pGm`EuM4VYfK;Beu{~UNHIOI9NOa& zxX*%Nkavfl9XP5!xmj$V554cru(i+knrCBH&a5xEKCD_Pr6_+u%^n82`Mt8a>a;R2 zi!pnkQGsCZ3C*g7O3sZ7&#jwJ7Rr_oei%Nlm)+yc=3x>m<1p+nLj4v)xK`$g?po zoD=^}k@k&G51XOC6wi3GRYIyYgY|2xVQiW0Y7h?`Z@%Riwni{V?%HEcK8)?>RD624 zFKRMl{>q`DLCUqXsq3Pa)0Lz2ky4^{=PnH`}B`BEMdK5ZFIsZ z`Rg@66yEOk@vj`$>?WGsWb5_In-7a0SUU0eoJMVdSBgAv&)Yw>A%`hhbG4sK4ECbI z)vlVRSRY_~c?8jl6nWHOWiGdnGc6>vu7LcZd1Pe24g7Mwnx#9w?8SE6t$=egBVH zjwHT`T()K`uuD99fg{c2vk`Hgl3L?-?@D^~grzeg;c!Eu95~bLwU-r8Zt9UfMY;3D zmjt}p^}~fTfNN)*%i&x5lfRW-*JtUmeL(5{2`M&(CoBWwKQ5>CxdH!pt6Pe-WsdLa z{nGYn?tqz^OaSs<5idU@AoJ&23aylF+s`Y1ax9ABM$cRpw1CIh9E&HlEjeKB)~#Xi z0;Xg7DvdPuM@d?CVd{R1!~KFmtd+GD81*NgqSNeTN|zeAwfmN?LYT<_Y%_x?z@Vu- zRB#92HT%>ABZpE#lUap3sol^*|H@ij?Er>Wegvs+TW%r}3N z-#3M|rRs_T;&WL-JUVwaz@cV;-L}EpCW(9M+bWAF?YQ zk@zNEF~=$%ZOzmk^U?9N7O58C_8FOu+%a8h(~{jCqPKA&$FAqk9%(+lP`c%9wl2N) z`lftD+~57p3t(VWo#3h(P{sxUS@ip~DbG6vgIcoV{Sd77Vv4Bcnc8)+T5`^E7DV{n z)P5RFuov_re`UUmXRpO*oSjC>=(ByXhc(apBK6LRKrXC^>)%ovURZn>{G8KU2s+}$ znfHS)3eH)ou)Wf9raH`D? zh`0_t2VNjF>;R`p5cA?Bn8%KtvqCmFKgoSZ%nLJ>6h}-X43SQeHl%+07JS+J=>W{oeOM zRqy2B=^A6r%f;b%w!u=mM&s@Y#DJ1(mw{_VyokFmF@nq@7hS& zC7GlD$TziJ72Kw|N56Ez{Cn?^RhvKduDL1;&v;rDe)_Oh>Ef^tlgg@n8cYVJ zBxk}sH^rqO80!|_&8=L?S{~&CaW0E;7I`Xn{-&2dF@^VLUuN`d=W=B|Io?_PF=kqw zvAdu5UPS&Q^+`)-ZpPS`tG@VbOZ)R9VQOVktFh$yw&6{yK5K6H=Ru3o?|<{#Xj;>9 z)&KBrww=S>gJqNK&vyyyuIB6u`|QGL#8R$}z!-tvS>5Ud;o+i=e>z^W`c-y}0B*#s{#aUsIGL%~4 z=fz=4&-kuyE8=Q%klv2ijlakguV;>gY7=B* z5zLPa>g-+4sz;gO*7c&?3i%G_ygwdGyN%j2 z*0#31`f6SAbj#OkNLPcSqf747N1Nf;Ip`f??}eg;Pbho3$Mjla@V0Z#E-MY{&l~8HEzvA5hhmM8d3iP0u%nLHPfS+Shnue67!a7{I9fq z4vkeB#G{+ZtN;W&cLQuxk5w10_R00DJ=lpq9T_hq@$-|#|J)GJ_&Y;3M-sZVUJKZO zo&47$k?SgHkt6T9`jm(v2e#H$!wEaeU(Go^YfPW@}T7j=Z*w-ovEZUn`gTb z_xs0w416@~3hfboNEMT)2D)%q*LWbraFJvwLeYEHSSwHy{3hlKSx z=MsrZttW*N_^-!=2ORhDj!f}&Ntq!Z_n?2u4GT92iSa{eS1_S&diFsy45x&u=qNj@(T&+JOfVZvX8FzM+B&SDV zbAuKxPHWv^YJ4tHzE}KDTdId`>aVO$D<6A*j^?#4#CEyJ+0;>#=IvuFPuJmuq?35j zqu$UA+^9biEh=V`9^^;|JibFu7$UJKYx~H0teP^YRE@u7p$ek$Kh~WNj-Qz$&8-VL zx9f2~0eXL%V-g3x*h43sH-=iiF6VcjNrk9h6i2HF=_kom#71_BDnX_TVZ`~W)zUM% zKc@%MMqwvt%TLR4kqb}XDOqGbx;{EMuenJnB#}RA=i7;J+tiCi3CuX~9IckV_(ios zWo&6PyK2qb86J+jY_Y1`!og+g(%fmT);jN-al*^ng}6no%F94fs1_sRtWcp9UtW@w zz26vtKqKdfpB2(wuw2iW68FVjK9xj1KM`$S3@3|}s@bDp~o5y}&CG31q0+_{au(L0$Ji_8P2a>Wnp`EL`+kiDTI_TA~l z*g&syReqE3S4QBykP3lnb#`_2jotDiIL-L?k2PEl3Y!a8hVh^!8O({Z5Ko6)#nq=9 zIyZeSYOG7}&OGP$`IR63{-C~Jb&e3pp8EAsDD_!W)9~>xE>+R)uNye`=&mWux?Fgn z(z~mYc+Tm4UaN!fVUAh9r>U*gRv8mWIwFY;!G05L6M1E*p3zMAY zI!Sre<>#+;S0d23i6az7Lgl8Vjxx!vT?gQW;cn;8E+g&WE1I%4zm&M7J8nrUZU1y6 z9N%UN-z@$nVKs*yP^+`C+^ZBQbRio?j}fuz*LT;uVb~jB#f_v1I&(9FO3{r$Q<3=e zc7(v{T%06YBF$yt;2VgQlF|t5Z)l+xmly{r479f8MIfMem`uh7BPZ`|QibX0?p`8n zrb6hzF&#y!&Jnbm#9!8Hp1UdtD7OgQZ0v|6x1Cp1i`cJC7vr-r)F~*@ z3%grB1(hquCVVLsCmf|IRI7Bo)P;Zrhn~H*u;bH8VTe}s&?0dhR|AU~F%x0)x*Yn(x_8rLuaY%C?!_7 z!Nj#tlr|gb=hZ`jC2i$CG)`Vpx$>+kZKcJ@QSsoi3qJ8Qcll)Dpt3Lh`&^~oW^%OI z*na+crSg*~v;MaD`Ct|^4}ACdg@KXs4XwP%S9hp2ULpmXs<}=3_!5Z3+it;`h&!8B zZQc0yhnD^9kMo4rpS)kpOV^xgLxVXZVvhAJ?|byCD~o&5uBW&>%}czAfk6Z+mTLhOgEb3++$T7uk|Mz+@xx{U*% z7_m-}uuZ4C@VbKF;D!B7CS5VDXKOsc(^h*3BKnB8V|NWub~SR#Y&efj=DWbulynLn z)Uf+IvNo_ffCH1`C7@%Qj>$vm_`_0D4QeGtB)p(bNNRZ*Qgk8pWz5;(4^PbaBjCQ z8Nto5;-j-v5IgJ=E|0TFHv>sEo&NUu1#8I7;dE9RvB{%vWA>nXAcu zbwh6}M@S2`HW5n?NPK1CuOK0eR*Wp3k~M5iQPW-UytT+nBRkOZhxqW2@h6t}OtB&L z{mQO8OTVz%6eJ0&n7L9Gi6AY6q19mH4D?PLbWASUx*kER$9$ibYA!K1#f@~^9ER)tsVjz!|YF!8n4_CRmOJ-~|BsNw1 z9Yd%=s2zG#3~Hm_siEH8#vbgpmFx8B0f#3L%I!2V+CZo(mj=`nAr}T7YMl{Fiwb&G zOy&D3u4*&_%ZAfC*L;Lv6y9Is7jEYE6ZmS@NISj%UMH5Te-sk$)d=$Lzc5POEQn6o z9R5jlx%Q}aVJ%sElodgocxuuqgv>uArKZ!BhC|-Y@M2MrmjQPNoE{ylHi6JC#h$X7 zKoG%im7S?nOle;fG}=coJPG? z2_*&A2T3f{@8LfNF3p~R$jc08Si#IrD9v#3LEmw;KzU|t4adV)3)T)nBuX1H4_PCZ zZ{=txxmAj(F_Dl(Z!4qjpPr3I3SNjm;$PBDpW9}}U9eXs7Yb1G@++6bzb1M_;(P1L z2C5EPw}o@eM7vQIKAGJ=f6UIyhoCo=7pE^8>0?X3Gn0Z*BCMrj=Asz|i(MRIw?qiOVXhqZ`lk98?*r@9yEsypk?4~Lh6GF9z1&7iY8@91j$63s z`rLs3mLnBT&o13a8}0TF?PvaR+J+Hx5K7;A!S=J%t#76YB124M-Q3&nj$0S)PBKp5 zAwO~~vBIl&tcJ#v=5Y|;1O9Nh1ZDk96oS9WoxPhgb^cp+UQ|8Ox_;?rE0IH?K-+Je z#64(o9n-?m>J>ja2}`+{f5pjH2)!e2YRgNps{+*|557`%jL+#3g|$R3b$+GPh23Q0 z;2|BrE)Y4>V~folZuZ#bSShywxd%<58009B?s(#UC9ot9Zn^q+cK3wx))-Tp7bIZ;ngN3 zKj?I|;MX^xE>1RGv#AjT)zT|}UKXuj6j zUVCKvf*u#Ao+Ao4h1#Xp*e;Z)BS_FAMAKAIpXH|sy}wweE7;uWe9}NB-F>F7 z{Rg4YdxKf7>|_T=rdo=pAFXV*M#N3b|ibca; z8Y z1ldPS>>O~3yt{v*&>Ba$*^zi)3pbbyFEm)*fD}1583W{7AB(&HsO8B~$Mcg6NuYgF zt@yD)c#yn!>P&3wVidMqq>Q<2oD|=O%~Ft zPO=Xr@~2Xd1)uq&a#=Iqekt)g^w?ivuTKriyM&;2=;Ba)+=Rd3x9QY0_LA{0w(r^z*$#F;=4wc@8I6Z~DboCMOpmy> z!?BCOiaQ1g{%(XeF_NCs^#w&A?r3_obX~L#VTWKD}2BrK8&##MyiakZ_`h{06 za**2;r0_qaos7;8){bZ$V6o|t*GJV*Yf_btM5+|!65z1{DUxEbFpJ&C(jm^56^ zBl--f{h$gJf@l8Tx=u&98XRAgru7vCXn$#d_=*>pPi}i?Z}<1mXAZJ7ox)U!ITfjL zVPMAzuxlBas>SfR`%X~S%-v2Y)G1`dpRR!G2c+I(!BX!=>;n!ury$dQ?+8M`9ITp?FVR*}2WkWMaHkzlA9eEz+eJ{GT*II3S z@eayb0lwvf@MG*fRcwHaT%%bIYnJMhG_yuhyA)G>%Z2}difIUZm<;6-JYt|+wA7vv zb#wav>g=o^Y#6i{-k-X!oSuo5gTgu0JB!2C<+nKNP?(V)dt6fa<>xO5-F`M?WMY2V z6++Gcv&WO{oIKu5CYAst3czKJqy|TiR38tXEBBgfdlt=C$VXu^+j?VHZd;%5Lsy_y zHs#~$#S{p=8*{bCfM|9fUpXEnK7ur?-sO|!SqQ?nx=VdaY?SU@Dj@4Qf|Un5!h3bhtO2YBV%oXOLuRK%v{l%0r8Pqe@%=e zYbZ{WoiyQxMLRt2U_~5)n?YszGx7jDGTD&_wPy`_*h_zgsjvhgBaheB8iKIHL=DOx z2yfe(-Uqy*pPy@@L8YNEu$?7+g{< zs)k^ESoNr$XUEWZzFvP+T~E&;Jm_yN<{U!AMg?o3AzlA))b_S&h=NFe0v!6-wB2ga zqfkI6O;1P{=orRk7N=a}x!^UY!h4;Fv5qhsst+pD_Qkx&65sZK4Q^~H14`g7M^B8N zRAp54j3LkzMxZuWIZ;F>O&yRfK+Vr(BM+S_U3omg?U=eD)ntD_Yoh3c^@^IZWXe+2 zwx1+^zlOk1wAaj8UtXvFuNQ#Fc>3PZ66`O^53kNV3?#f`{um}p#GQ)NR$!4f6+|;Z z>+rZQzIEE`k0`|YKIL*J9dm2qxqvHo`x*6< za#%S2gi7EbsUzU+msR2X<$p731$3{#m|$X@h+%d9C$Gj@=uMXL!L=q#7;j1!$4OBoPS)N7Z$+R+a?h{bm>u)6EtsCXz&@ij$2;txiAqKQV8|p1gV{k z$EoxsfqzlQX2wJ?aOl$s2F8@S_o7&rGyZl%&a@NMx(rCrT(@!?+CJpuy zplKAf$FYTDLiSBBjbvM$E^5i;;{!dk2V7%#N8JsYpLIW8Pw;enH^38R?tDCZuuj&U z_>P^Y0Qdw|jj+`Tt+0k*eQ~FfiEo*T3%`gqgqa0yEIka0A;lrt{rVzLAGJk1Q>ueY zJBE{Ix1~_oCCW|q({U5C5!FGl>`VcPXcy6{=qt+8&puIH$vxnXUQxfRAaf~iMZM2tLRH>`xxm4-$8ZcBW_VWJa5wDl7RuD!i)J}TO(JZ^MT?bT|6Yx0~Ux!SsB=#h104~&0F}5w(FUuo#2J z>ue$K|59+?-zoUK^iShgJD#B#Zs!LELRjmL?YXdt?Y6n13+=947pgIY5)0~)ED*>f z{lA|~gxE^|D8eGgg?=%<73>_w(g`#vHQ2e3TgLW`ku~geLab&&VB+~!E-{7gi9Tll zCG}ZPb*a#(8{BTT^?a*bjzhMbPL*H>-z38#^9g#7quLfOmS_;%yi{5KNXSrek;pl( zS#8?@LO_kGPoOcEUh3XQc9cyh($oP_O7hmn%MT*%mH3DRCkh@h4GN{r< z6IJinhhQ1tJRt+=?Nd)z^r%~tzeZ28`{h@tZFWJIyuaJf94(cPdZh5{nQINcyYrfh zwD}F2%tOtbP89`5_fRNFMPUYCgdy0ZPx8%bxRpynvC{Xjbm5rl<)Vjz zofuwzSdT%AQ3s4=_;|z_5aA<>UAAsz^&Wib=a)DB=hOM?o9AwDfo$rgzhgrMDL>`& z3a5KMs&oPYE4M8+JRfpF5f2)y`{$kus&xd8#m~CGip8kyOLl1K8PHg1aj&|Mh@c^i z=;=N*k{hrR07D}gR{YyiK!0VD<#$K2EB)p+*`6!uZV=20yV-EHZPMiN&3X09Uxtd! z2E=Hc#@bH~YM{3vYI;D7?<757>fJoc3kqP^-sr z%Zn%+?{qwF;jRq*{^xHf#mumy))^ycBs3Xh{BBdNWDVL859_m*S9*vl%uh!IWeGK2 z7y=0)KD!faPs0A#iMwbXjtT~{j;4ww00VtDRU z5z^W=-2%EF#Txk?DNkgAGKdLD1|?jIwiu8!H!-XTQ#pQq=z~y2$-UtpGh%~Zs&Sb| zAsuXO^SYi6PO((Qc}q7g)t-(drgqIK4HFp~jNXAUvR1C$s|m#ew7#u44CVZytgS7p zTNj5!(51$A`kMk&-0sN-oqWjG>AS!>d>9C(zP_2Kp%g(I11l0exM8!+ndH}Ywu9gCatruKAzYwZzw(_nqZF&sYk3TAAU;Vt(6c_A*Ix}+q-DogzVt}k6 zc)RuXK$)BSiMKH^B~YDWdBW~Lu=y`EF={c?w!!tylc;(t=y69JIX=+Z)3QdLl}62o zN8_0ZF4pGdpuypyhhz#u1J;Pqo~!T45xRB`0j71b%h2 z*mNobDQ|7l-wBeJ#1bR*211c`s%4)3u)1v? zbBickJZ?G3mWY&X0`DLER~L3vcUmvegStxl2*PWfDR1|pQWC5N&gN2aik?bUZ6~~)ON7I-i=6pqdQ?dOLcZqb%C0fah$thuvev+kFflmwIa64uH9;RvMVlBo4SDh}e_K8l?^Wl4uG7s{;tD*a0Nq7mao>Bk zhBU+;FGh=0=?o|gAwL@!v(K*aUeg5-2?-fo?el@OzfOWuMLN~Or2s4n^gehyR9$~Y zxU8s4q`JLYus6<*=V3?C3wi={$G^XsCeDQ@{#g^tDWPxIJ-$we0GfZ8mXa7 zk_naaIQ5+=hpZWab=)*+M<@&}dUV;Ur22F`6GB0cBp{L8{#K{Pi@6(vpvJ`-uX+`? zzRUoDd7L9aje~#pS0jQqBaZ#oC}1I{qNLD;FKwCZbZ6~VcY^t^&LcPnr41Vy8q7M1 zeTYwee+kA;yp=QkDPNx^y5#~kG));>0X-!)`5SLDH7e!8tJ+PG_dQu%86R*cDr-GYO4Co^^3_EyZgq7H*VwIQA z9!Ey{#*9F3rdapK3+a+yX*SD9O`ob~n8+*x-Fe#fVv$1kMFecLzc)330inG9AqZwr z>L62_0nKA<(H!_2DQ9rX-=|SVk73!wk_hst5U_XRYFQ$nVO6(d{yzVE7w9jDhiIzx zyz)+K+q@H(djDFkihe04klrm~W18vWn_S-TlvyF{eh9-0L5nRd)$=`zDI`d;e234% zHigJzK7ila5#1%9;=|ECc|!WtvBWR?iJrCuby*Iw(uS2y4PxmNwS=!|(+o>&04RxR zsekFs*)h};@hDmmb`mPY1E!*e%w4`^WfQ>Xm%~9cdU_n-Hy8rzJQw07cNB7+NZ>dW zc1#@5lEpHjQh^4P6TGLUWwRsC*3l0g@wyUvqWCqDA!vI+S3Nq}$yU^~{BvnXAq0l) zu(Xsx`uoI!*T40DXUH=1S851%J3i(NHGHI$xO$m9i!#ik{`(7cBLV zzX-}}4WBz01hWIOP^15ljs1%i7bKpgZ8!5>;GF4 za(?=jD&f==mXCF8yw{sXARKtQtm&+SCc1KRj(sgioy+;H@`SD8!>TO|_<~!RDpWl& zV%@FUA4hrlO)=P&^O4#(w)w9Jj7^ZqkN57yun)m|nqCb=Z>m>Zsq8Px zbmpUc`Pd3LW^+FoUfhxd)-{n$ogORVDtmed)&?cLe)v*LXvmbbVSlWjP>|`IcKz2u z7(L;{x*;tAyP{G+^L!`60Z8@teFJ5D6%-}MeE%MQ_u>}GL8wPgM-k~mYN#7Lq1vzR zeTBT#B9C~-%QK`!8Fo!AZwc>mY_Q=-_%|JGh|D)S1fCBTQ90&Hk(U+wqj8s32>fmX z;iR%ac0#QJ7q{66Nj}pI{v}rT4)H{&z6~VgA@*gmJkfTlw12mGV|sQBE8=cwF@uYn zms6SAp;kj&lA~_P22RXnnDkLR5C1QNhCGV{`0Y~sQMD+9s3m!Yga%g@3YPBGze8zg z+PN4cE0_pK+poI``^DE%9}OE(6!v90 zc3V-sr}tyrgY-TXwC=G1iMaOjq(rKJn;3unQJIZ7_23F5#xPoRL=*5IUCXntw%+j5 ze%1TpR^r^}Pv743FZ-+b<4kk&$7ROQBU8@i4U2#5HobSck~13DOo!YUYfeGW%mNAleL|^$ z9!HFwgbYE2F+_?&n@*cPHkrE`dV(S;^Yp(1M0xRH9H1@eLm>lTl&3jJOK^UA#WOWIHk{eY^lVIRqNPrV1iY0HpITnl5f`X5HOF*CzPIsW@WTT~G8>I|+S_qJ9E(x7^3v#=OL?Ly6+>U>Dd z&vV;d4?6ipRn^C9m2^Vj1!w0=zI%|8XpPzCKPr+7#LvMUNSxny8+CBi`z`&n#&^>} zDJc_Ht;(F=Ad$r3@7GiKoi;GaRyBHiwFdTj4q8L#_5uM9u-4=*UJjbbH+Jh3s#znw zsvLSkEo(8v{ip=Tf%25IRt*^f0-K_3Ts7$I(=CGz2vx8BN`MNLEg3+hAptrt2o^mh zmyj;VWaLN zoLp?t<1*Q7h51j8RwhU1jf}t-clQ#AOZw00Xk>!SSiui!#zTO@h_|WJqk@X`q6+AW zaRsXAtM~Rn3xa$Vv=Iuf4G#s0G-yNx2iM-0l&V_Td}YrlqQwI_IpGU&NT(*$(Z+Yn z$$hHGx_MxZ{}S9orhFom>!c8>M9Fm3iBLYeZsZU$0dG@0F3e1Q-*+yKEo8SZlylau zfI4UHG;$=Fz{wSFr9r*ateh@-f6-S#I*9x;=P}tBM@UQkb#=W!HOC!>NPBqGf1wV}Pj5iw zZa!VKY1P86Pa!{;hmuJ(pMQK(Url+i2S;%2jD}qJ@SM30b*Z}5c=6@{niPsAcm>K^ zi;qUvOHq>(8G&;g*oxEIrSRY`P~0eW6I`L(9|+Q*(5}{b)C12Q0`qJ6@r6ek|J}+H zxUn2>{s8Ey%5tW}r4hsd3v?#Wm50E_B~fenXxfv%>#@l=`pBWfR9TCkQhzp5Dh*V| zzi8~MC@%-mG{F`^F$cDYh8Pf7WK7IRdb?2uWHhckzNfl9)^r9r8EEap+hogIYlb{t zy4Up3OMMo6G0>?(BO_D9)sK#;BV%fhf&ghv-tf8-3ktZ3^m{6q1}7r$(JAq`m_Odx zsN;NhgOVbMx5i1ox*~@u3RQuI{j8^otg1?9fmL>L#@E8zmv5#;)hGX72 z&z~?V!7?mV0Lc?Jdb;144Ub2ju&zvR$`{h2@&jU;;j4>l4GAClmEiiLD%IviV}i>` zylq^C5KX}r+k&E-tL^Sn1^>IyWjv%9JAV#|yz=lRc~IU$S2jE@D^(gGLlA(hbRp6v z1@xze`V*Vs#nUKU9SGP!YkOXKwNApRZ>nxXAd!>gt~{Hf+i`4cWQuit=Xsr7lQY#x>?)MI*nOB23HJiW2Cco>HFQkQkM5&`(vRz!{S3$jbCI9Q?}R-In7 z=|k{f^z;hH^hxIW=|ywOdW?CQ=OxN9y{{c!)3}h8`SD#Ev+R}G;s1nfp_zXR+h%)> zK+Tza=6BYOjqaA8(ix4*@7)et1{n+whRsIDg_pWZqaUVS$mW>{pO1wRy%#qPp=Y87 z(AxtZ)c?S&ubN+{gCvui@qH?X|6%UEqngUPKH#y8WfV}ckpLM*K?Ol1gbrf^6$3JW z6e&uS7J5PxNOV*X1R|oKfe;l;=%IH4N{RH|I{`uu5FiN&@Lir~=2>r<@%8)TTkBhk zm37z6CCNEwpS^$kx61*Xjyg*9{9s8z`t+)zO^1pirx%ZRoDDbbAf(g)sthj&>L9gQ zg28IqWL+mM3h=AV8*nN-^g+jyUA4&*eI00uuWCwdtV)IRJ7(Y0bdtF@xewUej95lc z`oEBgc?jUmOsB&t(-}Yj51{|?6E?#7^c)7mtWwgti;&XC_B!8`e0L^2vlum&>T{@$ zr3QEMP)orpo18-twEV4$^}8Pt?5czJ^%wT!w}VPf(-Z>3v*+y%@*yh7g>o-%$!ll8UwI#_vln+=9G>84Hqif?_W?% zJ2N1y&b2{hl&cH4ZK6OLD3IJ%e35B-pPs1-?y91`v{cMs;U~~3MBWPl^Zn4{E*1Eu z@$7`+K)a4fo8pGK%D7*8{8gj@IL16Zn+zX6I|1y5!Y+p0026;V?FR4UL~@Pie1c>Z zv8}^>RQj0pj16K2U@xiBtt}N zEV{VJTg3dZ!Mtp%a;=_|4BIL+Pk1Iu|=`Y6y-~B z%8Q3s9N~Pr8^xJ>qJcqc8><17l(J;GPIv39y1Ks`Lu>m5#>qSMg)bE&`j}d5M(Izs zgqII24yi45%?JAz5OPlS|96vBs2@Qa1rdt8~)XS4HVz!ksKBHM8NL?>=gjQcUHb&Y9_3z=RJ}XJ3xAd?9$YvI<`7HYssPlh_tX~t(KN8 z069i-2H5Merv)HuZ-fX`Z);U>XFoZH_*@omnToG7emO9=O>u3~Dav%D>_OYqBMXOx z()kK%A%C?e)_69%Rig=C)Sb#zPAO`-8QtHai9;p4oRjg4W$JRd?p&_938LfSd^}=s z%14wR4J1$Cqy?zOtG-j`h@UMSsr3P9Pq~g~o3G)3llS=x`!i^Iak`>k=a}DF>;F6+ zslX&3$E<%Tu^RG(5rn)j0v$b^MZNrLYIN6qhDb5O*w>3|35!EICd0&H+B(;{*o}R! zh}s=#tk3Ms7sC~a%&8fsAfLURFzof5n|hnRP$#^lCgRTrA}rU;pL4cfc$asiaG z)=sb2N3;Q4lq%CEEpvob( zx%!x%?}zbHHIDC%J*J;t*M#bCoLQo(18k%>mEB5ui9L$6Gj21RQhn;L8rAlVexLxf zb7GKwTdbi03ZqnOl0*LO0QN}$fPHQ;#B&S3_Zx19W+_}A*4w+F6`%l&w~<)xtEAOP z{Ouwzu!6pw%aH5yc`nPBhfDTM%J#BChy~tyzlP|H`xJ2h`oL!Z zZT3njnEe`XlHRf=r{|r|?fWwr@t^1abHRIGZaB{vHT3&4MgC7N?qBKhe{)?ve#-4E zh``gtZg|+}cmA2~^RMjV?_7Id9{#!+)~I$?minEi{_9)b#Bv~z5*QyJKXL@8?!m4y zIcF83rfSl8DEmJ@{reZZXF!CIU87B||Ne7-zFTl}XX|9i&Eogw|CYG_<8@eb%jXKn zYB{U$XJO6v{~`U*mH@Z9kfMI<*XZxD2+?K$Q!pPncm4f;otf`kBloB;%(K-uDnS*j zEEUxvMRk7jl?u7C4FSg6%cFt+w5I?4{^9M*i-LlJbK4H>3E*<_CX{+sD7={CVw}n!njF|9x`*{eXr2b|7H=ZmHO7eXVf(y_#y1 zK*08(zkBk3eqj0dX*V<)onAw3@lEFltN-96KmplS7s%!O&yV|uuZ)!jgth4i_KzR> zO~37l-C7g!$D_pmCJujj1^@dd>hzWl(b36oJo5XGeust3_UKP7+=VMb0uEkQslrk{ zKQfs9vYmnubx}Z`8;_J5HYq;(;jdHOzI!)RRR|ytb=`Fsg@1b%FPC=2~dcYn1i#;mJ< z)tBFzJO_`sK5j($|1snLmb~Ue%Brf4UCfTr&-Um+>EppaYG_opcsZ5Tvt~aiPsf2( z643rp>HB}bf3~O|T)2x_t?%(4kW*mrZe_w-n<5DE$o_gZ3!`Ohi2Z@hRDSJ*8)tX~ zSR=ReDfJbLcqyMB_%Fb)m4B9SbNelxwP3-b9`;7ZNq^k=<0=qKWSqZ#K}@+5m@JX##4&O4;WJEz!KrcEBX>+8{9g+#jr4zh?gEkd8fJXz>?( z;zz%@&8@AVbosycxA?lC4=Mkc5gfjJXbYyf=)V3ztJb|`WdqP2GXI}_{%{gcaKdy; z*82BtP0akYca?jdpiTgS=p*Yc4E^30r>j2EZJG4ns1OnY3?X=_ZZrj>N}|@?e5^eV zm`C!m>%gPgt0F-`LW24wEOy}TxYZL<;oPqSS?&!fYaBgOPd~J=ie+Vyk0z(t%8U2M z91x0rfZ+_^#|Wwxs0;qHsw!aa{nH1yMqb$B#6|#4q(RO{ZcY1i88759KE|;z(YFG7 z(`QtSd0d<`EHoIXN+Q0Y1EhFKwyaP zpBijQAGT&qO?3Ne0&aCC1?f51VT7Ppbkl@m$QpC2OEWeQonB19>~3onf<&woNYxdJ z9Rd$2tB+6V$0>-~&9bJPlJyAjzP;T+ST1E4qpnwxjZmBxUGJs9@%iG#iv4Rf5JX(z~GQ`Dd2CgNcSUPcOXT<;=ek12kXEPJ6c{ z`BovV<>s*(%T9{VSVYp7LT8WGH}_5BT^v1HLt8&w8f!S47Sn{zKRM%QW1g)u5g8Vq z-Ce19A1K+O0FkDyO6}+oZpIyk6+3o*;6C24q!%9oT{e1j)Mf4Cy5Kow7e|n-`?Z%Ew`$h9r3yUJn{pJ<+rS>d{{RQRFiX znrMqRjEn=B-m;(ghT~4=voiBjVkb#~I621GJURddE@4Jz-xRwEj zXPx*3y9QJe%4vE~p6#zT;22+M8mjqHv0>^a;?~@-SrbT5NH8eAtHf*V_}$iqfA)6) zn42x>c5ox1bKD-CT;tKHc4!^Acm7F?lItu?MdcHTlxp99q5YJN-VPEh1TES(9iRJ| zbP(U!f631AnPb{?XW{6ACAVG?f3qzE#@2)S)uh3GlHRej2%>2Vk0d?;u1kjQ2j@4<=#O7M1>!(Tnha$x$BBFKv}cK$R7o`_`zQz57*#vVOxinr zpQq04-R}{)R{Oc3LUv%dVifmwMWfgs_K%z<+HWhC$meCM7{}+0{b7{mK>pa<4yQUx zwC92c#2{$hfrb8Hf!&niMHP3w;kGKP0u;Lvqok@hBrL!!avl2!A|=33;=GNcf+@(} zu7cA*(;!;llEirDt!ZL!s%fr|G?r=5;3jksHa8HN=h6Ym0Z0vZuhq3&LwDErXOD13yP=46E2 zl_GUXFM=N(NG7Bmx4%#sPBV}6Qg8)(XEC8Lq*{Yv=gsU?XKfpk-19@hZSGdl@tnGMT?>7pp@Lfva-e%78?!jjgvR6RrcQBr5_1>Ju zsdr74A(G^d(u$Io8e}A>VD17j1*|r%&{=>IA5nl^@W%HlWO_SQ8Um@E^3qMJKrz*1 zXLr4ByvTq9&=$$DSw(&N_qIISQKJF)Y~#e2CT{;!x}N4&*mo@)0M-Dsye3Gd9w>ls zSMx@N!`~-mCP?0OF0fChL&NR&IOsV66JRRAxGEfME95;sVkhw7tY^d9mlNQ*-S31= zKzRK|c-spLbwMw&nY8M64O4Cv=w@{EFiT_pZ#}4FzMA%D6Z5 zc23zu;Hsva%n4cEYGEz#RKkQ+7`#86%*aaeiy5L8jRy(%Nx|l`1H+u&P@0m=P>u<^ z0&VJaP~i>@{BupJM08zY*Bo2W+GEOR4XB~-0a_r0z4iB>yZTqq~bv3yjV z@LdLbf)hnS(^f#mjZzS_Oy>i-;wv0;+v0>xOk?|RxfX(&Yw_e;+$+O>MFIcT%(%VX z3vlUDkk2=ENCJW|?6kN4(QM}jTuDF7vHkW(m4{&@!o)A|ql#heZU(4Yu!=cK45Y%t z;|NU!Fo7Ijb;ny_3RM#ymNNO|z_$}wQ~o&JEKq0?qeObF0M?-=nc3Fx6KoJrVG-5TMN-PvL3SsZxJ z*^ziJzPmQM|2T?8kEexJ?V_T*yKmYp$2g6()#r;QB_o&HULaCgr4AK+&(oK2m9BQc9$Yq9qIpClT9W+C7J#{nrc zty@?vGr7#3<~G%z=CJ^u09=d}6w!hxR~7N_(EJ<{je2imXB z5|kA(_ZEt^im;#HDC1h^$F%l3PmNvrXD*=JQnH+Rf?`>Qi8glCp9c(+D<#1cV6@~6cV{rbt%wc24S<0pv*Ggl+`1-M4Z>)6%UwGZC^*u5kHt6;!mop;Q4uRXwo z>2*Q-gR3eLVTE%G<38j*MboN7M00wmV4W3v@5Cg>_o}QWtt_~Mfa_D{_%zguT(fgD z&6Y|A&W*dA&v8=hx664Cnl+DMwQRV0^k8!2P}Auu@pJ~Jhy3*E74`39#QHrJ&xWp$ zT6}H$z#|6=Vs{E|wp#mU6~>c7l^pET6O%3nBX-y_^lpTA*cw?P^yt-KMa3wa#BI<< zay3Eoq!Fk#%pzkk@Rff-#qVAr5(6!1$a`~8d~ahyM!3EPCFB-BnEoew+meO zVMHL$z&5LeR^4jv0U1r)RrQ5jtakA3%YaWRca~zHd|6ZeO958zGlFA=a&}?6e^Os3 z$rMIJztb&F@*_){8Ve%!N_84V+BnR+I~t}>zuE^|dScu_0m=#h$R#@&ic}MDbgEq> z6o4Vrns9tTBR#yL(F#`R)TB`baVFt1I!Zckeb58W-+KyY(16Y>hH>D6ziJ}>1491m zMY-`-{Mfj!rCoTt_x0h0OT2Hou5pQ(iMu+wZ}o7MjTP^qW7VheO7{}ZgBx^Wl7fxU zdEVXk^=0>GzsDOC^|3gU^On9#hN4c1Ujn}244lG`DOslofG~^`w)9@3r=qlOHShRO zC*ra$*`19xu&cX-X@AJo6D>J-b9SxeYh~B4GF%V3x_Byl=4J(=OSy8PXd%fnzV20{ zeRhQ&%C+ACuE~jSxGhjW5TxvaJD(eg>!fjWcHj@rJM`KQ&&UZWYm zo*z#wbbQ^QIUoYT+YR#j2M=CPZL#b7#_ATg(~f?VSO0b>r+|C0v$X9VI66P`VNf3J zq=}=fr{9K@sUpy~@;0jpvFMZTGIcyCm@pqckkMQ7aJk0;`pMe20~8#8yj!99H&ow)1=~%|}nOUa6Pk1pYkM%5my))Fi2CDEWs+DPHF4@8dUER*k!TN7R9U z#}=z@^?Bgd`4etOciMkl&=-jAeIvr?t0s){Ko}?XMHR@tGRD*Jhb0$vYHlltb$Gr#l4@4gR`9-*MRKpECY+S zm7HatKBvm`wR;JQQ{lQ&peX3g(!x5GQNOH~MeU`8j}zx;N{sqJjqb@Dm}uLtR0c2H zJCxCDYW@8|8~iH>7@{K%a6@I7Yx%!Ed|qC4!p(;>>~b;2wk^;1vc&U`wzU(SMjbyF z&{Z|~c@P5ncr2*eUa4onN7RrWOwYQcBcLdr5<#LXJKH!1d=r8w7Cy*svJ>`8d7__| z-P>NUB!XbJMp7~ADA@sa&s3L=SoBRfK5Q$e0H=$sby<#R^0>J`;25r!eX6O8JO zMBoraQlXNVwhmsVe#*t8C+q2zhbl#`J*ER{@cUI+%2FWQn0&8ukCS8nM4n1xeo%^jC_L=Da8gF#_%8VI zY&EMKN|plH_2kEF=lPnW?ACAZ4}X3l7Dh@xkI^;vQ@NC^&QOOR(f@Vs_i?l|)D3A>{9xjgh7T5BeKDEa3k%O(_v&J(~EgnmmBlDJn<`uM|RVWOj5BvDkpp(xjw*b;^J z0>yLaWD6LqPun#9NnPGSlBswM$k7D=u%e8sGV)QfnpR3MM5;3eXur@lxHzH=N)Hal z?w1D6VYb6Aq8elyk7N4wLljBMxuj%WSr?-5CQDP9dH^{~QVo8L8 zp0|^Bm~(v6w4+r(v*@}P2%Z{|&AkP4ycb6E!XvvCO7teiu2{AnJl4=6664TE2NT8O zQjM#@#c9N)OD6mmb+={2{ba{T{>phGKwex*X3K)cKJoLG$CqC%DcBN^5h_pOoOA z2$J;$d8i-)G|eEp?LaT|sTclPt%2~55K+`-PCyj5^f(%UJ8ITQ)pLZ57=B5$ zu=oDj>Lmi64E<>a-ykJ60aTMG8Vb}dF6N!JQ@rK*@uMPIJrBw+a32|gY8N}xO>dz? zna0tDeGci$oC7f*LB6*{>s*WFL=hjRR#U??4d>SO+_RCdcS(uoa1L0*)V+uXh&n@9 zYM58w=Hc4`3$C4cndF~hf=+PzPT0T^^h(G+T; z@Zz3hL9@S&B}_CDBJk^`eR~UleV?WA7a~YVCnu8RG53s*A`jq{G~#HurlG}nUdwPF zOeyU?!1+0a6Ya}u1L-k7hBD$^d{|MN`=;M3d$hp$SwbdlwA-{;iD%kdm=f``zY&|m zxoYTw$c~qo4@oNkYU^18lMBvwm2gL5XvQ?QOW+aBF`2w?PM$es@eO%N-`vrjp(+TA zn8sWUxE?y6VazZ@^^9p%-BBOq=m_96+nU`a6_9F~4;h$BmPR@0es;wlrgU+jspSjL z@2WzJ8(XHrcT_@=GIl2+@j$_coq&56Sq+wj-h;Mh*yu&-V(4h{wyRg{+j|{EZ-OC; zo_OuX!#9gW*|wnFU}9c`lz{)?yPjJ-l{Z8@W?(h`cG44z8j$F22_1P)OvLI_(I+?^kx7j|AiEE?C8TkYLBUSXkl#v150HF}gtm^einBXjBr z`%qQo7zMBHdll3I%MLM?Lz4;PWgg8|bJ|5Dz9shMJ1&)w7))Qd9adjlqzZO2j&^K~ zMSS1O{dvpF-O3mXicxa0xWqqucBicJHe^Awk7~=~69KN13k9&p)uj5oZ8@1ku$}Ky z&cD*YpErOoUKoW>?&qW3&C*s2+Kf*l9Y7yJ(sDZ9t?8f7s+-4bN~0 zvP#V#{KM8L_g}5WDy$GWeX#a%y4OJOyBH!x%HtroO7f_xDx{ij7~c+#PffC|bAHr4 zPKRMMGxYeN7|$uR;#s@dKik#(Evd0(-jtPY9bB z=XosS7YwXIj6Jn^^Db4vJ5)T2Qsb{sRjFn%n(0Q!xP3GcPkn8|c~rQxmUw(T=xv#k z(J`O{xD5bzbrE0jT1|#qeFbFcz5hO9b%TR0$(< zxk?+wAImmVYZ()T_cDa2$xmowbU$N8)?#<=E|2>KvMBcbxW9V5{tbhEV7vE|^4yuO zpr=ovs?6=R*8!avEAk}seJiYOPhwyQNM`W1fv`3bUuTCNf;~s4!j`lL2qaPWjQa)Y zN+a57Vi2d6`~n#`U=$7pm7Pc~BPRJDMtIm$?~!B2pT0-uk_tyT1DJRL?waK@!&B(- z{LCJhf&8mHkE?!saKv3mW~;k@hRAx!d$r8bZpqH@T{D%7yF`)u$I0q1OjuRnisAC@ zSKr_!XgXw5HE-%`S8iW=WKvbn{gYy&H^2fE5irnZn780lfeeur=&TWebV7}Sc$1>Q zX-;EJy_2YuUM)RKOF$DNrursHnfmVjBSo&VfC;8x({d3ka)Zfz&-=4eeDXige zApU}5hJ9mZi)-I+ef8YD6%mLF_%{x+U0cst^PHD6`Yf!0D8HH)5hSY!bRVdE)1*8w z@fGi3vVT@2Ig-|)r+7f8sPf^v#`f-qvN2&p!IDzcB?;ojW( ztqC-<=sDl1Qr+7V2{dTdj9v$t0;=`S&bCNK6LJmMm0YtK8_l+i{<{^iLcZT8tdDFt z!bb+W-vEwq*kh3Hp4Mj{d*T&Azx7{Bv^@rkAvNcHiI!*aF!8V$(5%6Nz=J@J!xBh=FHwdG%}&Dgh=VrNVWB<}(y_(>Q88Yr0KaD&a+# z82@lej8g6$u?aO0+$rJv^hffR5lo)5p9YNJwa2?&D%}Irzai3z)ch+RZ)G08tr8D1 zs@EwdRDT4d!vB8Vf+;6aMA9$61<#%BUk^%KQUtukDf^3xFA`ELGEFo@C61yL6EbGz zp+;h=>BZ75lOFfsis6zttqsn?s!|Dtv+i96#yK0h)%}k2A8KE&6xQF*T;IeXI2A(t za=K_$m6OkP0V%Z1YTjAka2kIl)ktyc;V-ub)Cb#_)5#@63#<8M0i35pzB8Ewr!k&Ap_$kir=c|l+#C4V^)rp4A%uRHhT2M!~?1%Xm`5L z2zj(0?;>e`>R6t~@{kpB{8l*u9Cex&=*q8lJ?=ssa~059&el>Z89z_w(k4Bw(3lga z@7&Li)KZPq*^D#C4w1s)~t{5?~s@H;`{cIJh zny$Z1Rr~X1!RwuIk3^CmRY}BHM_C6xh(zqMP~0A~>(%B!UEbO2J3=O2<7MNAR@0T< z`3MKnponG5di#E#r;csPeU3IJV9RuALh@bb!#aiG0MU4T@?QLXuRf3tk-7N=B1&a_ zmJ`#QMr>4UrE&yh^+@_T*oVh?ECv#14+Fge01`p`)evux{Y*W)P@W|jjm`~BU)|gH z$O4&V*LYjASHT0~X~nl3QslQ0*OEq9TD_U!~*zE`?-(QpL?S zb}4P9bO~-YytIOrj12L?GTzl~)$g#ZnKBF~RgUwO;3;Vs8L4b9{E~lo_l_zP%aE`E z5^1UtQTMQ}#xwRx$0@-giD*KA2gK<(=UlYQU|Nzaw}X>hgM20M==%UBdN0tX9HH#L z;0BoTlDgWNaSt8FqdS@VpGd=pI}!PMojR-sPEohQz>5CwQZAhm!mA8g{QmSBTx7QW z!`N|i&h<$8QVWPCGU<4aj$c~LO@2wSVVP=%#QS!XN1ad`ukfd{{L0olN5bfY^s<$^ zWh!ZKiw8qfS=zFM`8G|C4?*$-to8m8ttS0m$i@gwbIm-!G@59GBqn^McmE#Wlq-p` zDSp4XTE_FP01t7hN77vVz)>_6-Dqx*%c_~5eXpALy>L<)&{xuqGkT2b);Ffk8PgZB zTDXSwW8~Z%2c0-G$*k->Mk{cpGW02KGX`N=U!2)q?|C-|>Kl9k-GULA`@tHDr{+8vXY0 zk^}J@dc%H0Y9-$MX!oi;p>TZfSnRo+U3KlE@$a+Ad$XNCw0!uORN>ttq1;%E6Cl{s zq{BwqXImD-8pCCg^E#rg>h7TWpViEFj~3W!M2VrA zf>fF$svcT-Hb*rvH#LvaDv-DRs|+?wZ5SXhTiEZDXVql{z1TUB%Fv+Q!7l8k3AEy8 znBo455!Kq+FqIkx*?J{;q-$uIR5R*|t#}!vL!Fse$Q@cbUy&cc^WMKX=||P+*)PZK zjCO+P`_+Z2(z>PId3%NDsfWOKXwVPDNCB4i{DjN*0{V0rFY7qxGD2Fa?XhS3F ziYBRV@v397e%q-(3yb~%PEG^)yAVsil?>~&5X_hk<^gA#@~FkAeXEwj?oR)fdf89$ zZ9oQgg>N2j@~Kt`)MC{T)&0Lp`G0+1RWkHUNKi0N=6xVe(J&7VvaSe}i~^zH!nTgu z&Y-K21%25U9Gk!OVEV}*xTv8Fdga}UJ7!eka;AZJ_l4#xQmdY5PjR|``?pGyOw&G2 z3DW7p21JWrQGwVT%{*Iw7t3(2sH^5eHtCxi3o2NyoU_)~RcGdU#mHN^OFNFDwW*lFg7_5A&T!DC)Rh`Fi4+^ zY68dc$V3fw))mdM8-tv1&r&9iA2HIgIZG5|`VH{{ar|#~`0Oo07R zV?y=dbd{|l4ad4RYAO5Wc=Kfn>I{UIm(M&aPH8`rjcHq3cmlb=pP0e=az+;E&e#nG z#-$arO7pK@n4%9IS@+?+FvdSCTbL=+|D34v>(2Sm^0d1+ z0U!&oSRq1fSudU?xNT5>erQu@b7X-q#1*U1324{R$Kr11qIB$(toWl8tqooPar5Vj zm(=ML)yNLykOs_vO7ANx&D~6GT1y>qEgicXB((NH$Ps6^_-1E&&X-cyJs8rk?HW9a zv{!+fK#8QmTT?mEW0wIvF>%F-n&%4rvgw!u+4`ui@@v!9!dm#%#b_2^gUZHkvWND5Ay`{4 z9+6Yeq^|P<`h7ijKi!4H$LeF(+Jdx{1{YV-GaVM&-#}5ZK^ZcGwUH?tS2N zdiGBH+6yJ`KamayylHsU^{fYG+FaflqhTLD(}xofQ_Nr8>U%6u--2<3x%YQUg1Hym z&-+(T5I4nW1T{4&#^OGePxpuNG2Mw~O4aMli{W*yoL-6;W=#s~$f;Sxrm8!q&QY)p zUHh@iXZ7EY^1ncM>_E!ek{t2PX19+EW(zW?2b4rEu28V+zP*-h(m zfm*y^tYenn@D9@Ic)8`f{Ttfj4F503_G2$#WM%<)%+?R9WP+KEe8Z-I`2~IxucT(8 zGCI@6M{^CKmFMgs?mtZyB=W2=8|Y(WI9$_Plg-&OQR>`8!-yq)fMmV?m7*N=!DaJ! zzjx_OO{wz12gl=9S|A!7n<1II=I8wzr7)ulzI4lEBIgDXUGGX~HEF{_n;NHw zejRX;r@LHq{N!GTMvk7MUu<}>GbqRackn5mQ5NAem+YhzbIy-qmVsK9AkDVB_JUD56cTd6DthBQHsJY@J4TX7Ckw%&aB?^ZQ%6noHx#CMD^9H!_sm4;$ zyGs`5H^PNIy!}HASf{(+M09tV(*j%{1f7V;9W}H`j#EvS{E80|v;Os`ZF_$EY5Rf4 zKkfVu2BmN~AtihweMFmTNS3rGdv4XT775*d^@Jsq{lC9&Kkc zQGn`Ne$Mx4O1qnv0O$Zu?o_O>yRO`knDQIPM?Ci2HeHGcEY@IvZ}}?y4`#ube(u9;v@L&-fMg(=px~d&V;SH0-IEe5Hvd@J(%X}0af1H+ zbZjH)X6&5<;>*ByuLn)lyf=1uKkm@<=+2{Bk+M5f?9khvyV#pJq3EQ|3@>OMG|Bv%#C)ed!j^!%yS!ca<1fyG zIV$@ID6UEwnC!OCYv?ul=JX#dxid_9@tTy@4I#DZMD*8qz3VhFEdRI3JxQm~{8@&U zE;(+kZc3b8ptDw7w%&(c?2^@6Qd@h6czv}h9;aF4)Bj4}J775;n@10L#w9#aeP}kQ z<5Mj%RXnurf+xmEf2wbb+gLv7Z{hZZI~5|GerDqlnKX-QV2ZT+!6=PV>OzgU&UOjA z883R65((%304bt5@=Q2V&u#i}Qg5~YxyF;^HPvfuKHmqvm*8k(<@?Z=a&KzkA^X59 zH^imu2eW@_3(-Dm_COfI5V>~TvQF=7*xV5v`q3t+-KFZw;j~Zs;>e$Mt8SzCmt2GH zIcilIAlFJSCm|!8zYWC=qV`ugOx!h?`t(u}-f-KR=x(@@pR z%lYOI-xgeCF~;8<>O6n#s?nw~1$#x>Be|^WL=fp1b>Z5zNux~&l`A)uqdocN_*%Wp z$taTNa%yp?0|j5&hp9Wi!!O_nn0MW@!FjG%hb%?p7lhmURvy$z$j*AjqoSJN$1sa8 zZ!mWb%+R=%&Lu&h2v#qWa-Lk6@1&An*{6jH$klU^j%KIbx7rUSO=Mc=Gcd+leK~Bj zhStJhreIYPqE-_3wxENp?e6X3St+r4M0fTwl6e|eqtn3tG`+$Osn%(48<8qj&9Aoq z8$I)<_VJQDN%p&+1ew>h=|!_JCAF{ z!kZlP-b;ucYjbL$24Jl*C25r%tR=c^hn~v#o17+1-Ww#A+Zs*nUUTUwQd~zJy)hsj z1;Lr+gIze+)Dnapat5w{IC|5g3{`88B-3yDCi6Pt$@T4F)#|R0fJe7JMVTLd4El(? z5K&fLAl`0zI07oZK1)|G9Fl$$&O+_)ffj~b_>81=#F|e+Fin05*#Ou&IXY!Y7Ono`7%FOmtj{F&uX2@>jOH3Kt~xH z+{MDaJZIf0yRQAS^X?QrcO|^(h{=BO$h*5r@1!+!;V;mYNfwzDCSs*DI;>g6kMCYV zKElFpSX$9}_?sAhgKlf7kh;Nue{Xv{@YpW>`3C8L55Sc>h_0u zQ?JoKIKN2Ij?}~^u5K8D8H%v;YD-d%b0>g{ikKpt@G30d=h@uRL9&^;AfbUV)t-G|h zmn(<;{6f~%hYoII$dz0mU^lqjq3Ia*!9nDvo{aaY$F&>%LfC@Xd39J>KC_;$_a$E3 z%c$tI)>7ML219F;yDVL{B<&?l#4t%$@jByeiOFnYnfncH>X5)1i@2%2K1JNPvDj85 zq_NzrC!<s^kRLNcjINMo}bm`OK>ZoOmVwmTI&uf)8~a;T@27no(8t#X}k|4;N0M$K7%2vZd3;n}siS z9b2bsk?4?>#EZwuO6X$DTXqi)ewoXt5Yz>5=*&`Cn6>qwf=|6XEn#J*saBs+lDmg6 z9`LMCD|ujZgRQ@|QYGjAaSuVL30MBM3~zJ2^35JrnI>y0yxF%6uJpN#!_t!TD%+ST zi>vkf86_9j-tH%)#XW{K7{zewSf91`o^a(o)f!%pecpd4Afo)_V&x}YTzTuk$EQ*g zuYEcFi{c?mnNu~5?uti$ejiId68C^S(cdDw<~vwOkm{8Ve}3WRZ}QPL-CCWJWz9qL z-5?Vre`8*Oc*Cyjkz1`de+vrPBaD3`8&rOi3%UAgB^%`3pHL{!MPMT~u^_}^0eI{aI%vZ%{fV;HAEYzf}SXpcJqtNFa+2v;D z!aSZ9=gS8Q1!Q<0&Ld;j9B{Z=0zFbg4Ce_BX!oY zpCkO^gvZ+p)Ayl8|6m*>KY%|H4Ww&lc#(XJj!yK7l2xzr9yvDLISU_XrKJGMx6Az|Zw*Vf&dyr|w| zcWKS0gt~x+mjB^P{I#tCXXDn{C#58`Ws0qt$%OYt;re8d)=ex+3ERf~%yt%kt^X=1 zK$;kpeAn-j^sULO;LcuJU zd#^d_-5sA^If|JxZ*^OAH8Y0m-s*@`b0@x!W!1^*W@jr*wII7l+|9RT zjKf1tx%uhW5YtHNh|$_FXTUTgYbn)%uN;OP-+!&A36m#*so)4hHhnTXb(7g^i@%kx zFGy(`RHMyTB(SS3PrfA`?24pML+$&zVypd`Nf4yV#7fKB1HZXTeR7du-+K1EOncW` z|5k`n!+tR@vUea;oRJ6j0vh2mW1>(QQx~Fe`Yx(vos$~P@0Jp)jz5hMLnKogoxz$X z{@GFVTAV;MwY6&E(T-<4B@? z&KZ+uzjM{n{f%B$FZYDzfBIaFsIR703Xo^UkRwxi-X)Q#t?Z?mDrD9NZwkpuqlgRe z``T;EKQqWC8>7dj(zydUj?v@ZZqZ9-9sU{Mlb)4d z-9uow^jth$5bY(>1hfiU`jYIHm3-5C_=y=bvDeD1-85WMo|RU%$(zD%j9ZhGN~ape z7mHPENM37G`i{DPr#hVhIchG^lQ#8@m1F zN!x9oj~KS&w!fk%x_r6TwPeutj)Jh@U4sN)&k9E5-WFcR7c4%o)+rG+%DA%sb!kx z_#>=c#ZnYsynY`zb8#D6L;a;MS@0^%*M6XZZFj$m6Z;N=TA%U{;UkY($9Bf~TwcR2 z34zp^pXHFK$`R`1a#6;*tCiF7hXb?p z6e-O5Jw=~F@%GLjIrb-aD+REm#}(C@R<~0@6hUlqLrW9V`@;Cek4k6QvhJC{lu=h!i0rAV`aV z5NU~_2P8oSqLiRO2qnOg4xva17()5B_x|oV=ehTy{`LEw=i{$HHhayQHEZUbcV_LK zH4jJ0#wyP_EQGn%etX|>nj?K-Gf!vr&g8Ol{is4U9Ye$@nYi+C*c`G*6FG_2O>KaD zMRVPbH5DqqK2bKyr<=|tv%WH(5MFCVn@S?ty=%qGLYe|rni3J^^C!)&5DCyr^8M?~lu06Coie?PxS%xISG;)U z-G^G##+Vd(b0H*kWy!j}h&^uo;AKQa#Jv7SFXUGqB0td}} zDB(I^InV_};QzX)#4X0N$(f98Q=GqpZ^*P^=UzUCOmc^3H!E_GtWH;(rZA5ZyWc`r zo*5Fp7VbqnH=i7O40Z~AR$ho*2@qbpfnZ4+(oCI5p+m5|H*UO&3C$3qloh8URA?X? zVQz?b&2m~^%qD|MkEws-539@~0a@{ahG|JhRoJB+Nu*xA-EjCoXVk{9A1IPM{)#B* zN9TOugJRJpqaw)}OYXQX(@+Sfh2u(Yc~`6BmS2Vfeexs|md>Tj2sh4}+1MYWh1c4g zHeKk>H=tdc+JI=g7gW;JQ0j4WQL_99M)9^yR6Ooe_eFMdj9=x6vvc`v%E;eJMuPI`n7O;h<-sHiz zXEyI*H6%7Kyt~L66P5fJJb!2E<}`!32yoh!QfNbLjric#`+GW1i7ZA}+zWqIytlhU zdlfeQEDXYIsPB=6t51$&uS`yTX>G}XzFoPkV94j>Z&v%2PvuqK(pBP~GGA6NC2AOY zj}bH7*($#f8+h98+V=cZ-ZDqKLcWY&_~x_kuh$kt;NLE~w-0?n;gtER%_^(NufC$#QJY+F8x?yMSK}>(}WL7FbJNQ-}BrY}!c4Z826o~tI ze5>d(^_}E}e<2{x=|Gmy%*0F$&mfPXE-HbD^;2DLQ)>O_w9RmGb#N8S&P+G;X)Yky z7rAd$J2CC2`M#QEg=`PYEVH&(3IkiXP0pagY=t72Oy*64nA5x_=Le+DyKDB}LW%ob zO*1P;V)C*c3CG(f$1LYH&ra5?nmM&2972t#9_i+Y+TnEipBTdE1T*2BWGH1MSnc&N z`!lY?N6DU)yp#nIQFJ<7H1QG99QD0%NvBrW;r$MP*}VU9sE-OAxX9WWE^<-*%q zL0#FAcE>RlLd0FAs*}5v|7uWD8I_72Au~RhIU9t zrQeN4QgaD*ZI(#o&A=?J<*WtartX=kMgK5zl*AZ@}t`>Jxv~^*Z#lRaFlvDGXYogN#i(Pd4ds0^v+))$sOf=7aXjnxf zV`zJ8dkBZsYe$cFWd@bM>9omKRWcW`FP=y1Y)&r`KA^Li$t!KH+NVm}6*oWH*Do)> zN)qXcF$Mhk73acL=oS7XXPyk*SF=>Y!7t+RUb4H~Wn)2jC*4>4r0~@*na#A+H(l%x znv4}Cwwh|vqd`k44qKLu=bFsB1ca&3`B1HtDT*I1Yvi@$q_t4FdvjD{Ilnytrv|Vy z-^Xk8bXTUe87VS7iLBcQ#cYfNYPQmaF^5)EiEko!;DFw8(LPVjRpsa2b|*XNW$~jQ z<*QoAXve&(j~_~oJ`VyQRC=N@2G_lyiXR?QGJf(L>7A)D(P>A~bP+@{ z+JXo{x2y-;jO2Rc1Q`y7^VOH;8$udds6TP6Y2v%tv&`STSZhT-*{JKtM#<`uJ35a4 zas53y^22uKa97Z3-)8Qs;e0;DWT48sXRdDDZ~NrY;4A4bUdSn_-vs#fw9qdEn2c!1 zyKkst!b(sua z0F@B^+RiWGB+L}X^MMH`vR^f;c)}=ltbAJSfK;mi^#vPI1%ifQ=jUyLOE6gWpmgBf zcouSBq@04hEQmeR>8zen8s_#f*c(29<+sh=qsotJn%Xy~Mj0P3jAHPrV+yhPiUTj| zC$dPvbEDtmO>N8J`!kN{G~Mtb`90}HE*ocZ4M@e0kE&nJ_M2Y(k=hCk(4#?IeS_A! zsH2KNY8z{hb6-$qbt{7NAbT^oNUYC|rKazzh7}Ut{RG>bIoY70j=psYsX7w9fJxOWO3bP6l?G8SNFrQ*mYs24TRN$3yk_)rX*0!52d>}n`K)pa;+vC zvo_?uUvXQi96hTq;%WNS18f}FA~@soNP-j-T#n%6%wsRA;Vs}X$4QtJ+OBj0&zhi? z@}HoV;#<(&LY_}x={DZsrAl$`S>fTD-mZg7*6^W=zSmJbIqQQEIYv5USUWKVqH6sF zYL9GUxXB*~#pER%^ZIX;ZqCoQyu)oy`7nt3y3D zzRA3=Ci|{}`&`6LPVfhojz;J}<7d+K_!iOcRcm%iRwOya^^pp0@ZY%de^fKmymoV+ z^!FL6D7@Y?YVDrKaph&jca?q*s*8V!`NFAg?4$F2hK;kHA&;jFw96`uv?kR$goFR= zCam?}+kWLl8V};_TowC+!{FjZ;?u5JfBDP1pQO*q?%R9Q^$LG0=<150bQsY$K=Puc#;4P}?7T-qlo#wYt=42BOys>Y(+tDSK3ZT@6^OMcZ}pKf zdR!nQ4Y9&9EiYJY%=a5pk6OJkngBhbXfTRKn#A{^KfLAl_wMJ;J%~>g$jAxRq|)%N z75nCbHngw%l)hu#Ix?f;c_P+R6w$dePb2$BL|sSFiX6u{S|iv42^D&$ZsG8xYrQ4Vg~>?bX*OsgtdW2_&*TP+y- z33@M;xJfNA_1*bl-9oyHm+Ug=HyyUU(tV>xIJhNd-~X_#|0Ik9 z_iSD`c-Xm0W?~$i6?z4P=_6Eej6f0TL2e3k)c|jd9{Ry4oyk>!Th`bQIIt7wM2oNB zFyFieW<47&hY)uyF`zOCsy?sty9XL&MYZrF=czlV`;sXQx|vfvV3Poo895MmEj(x# zduV8lux2diwDfFazJ2?=SL4Se?r3o%-fI&20lLNd&hC2R47v9;>-|!(pepwfe+V_) zQm%>eAW=Pmb2-!~knp^8Z;ob<8fQ97{bVnh3Y&Aq70%a*G!@dQS^^ zx0m_avcOo=r>X8R4ALl_~;3LIba{_@YW>6&x$FpUlx3 z737LtvO%NZ0qf*x<@AT1o)d<0i;A=&TW#1NL%rKN4mYz=m6!#=`=V$Hp~6eu;IaM# zq>Htwy%A)igHSx1OJn|P4LhN>El1}nPA z9jiod^8ne)3~Wm%?|Y+WdK{u}3};nA$@G%#ezfjEOsLTiH;IwEXiSH}y%^(srpx2B ztbiT_^YxH)r@N6cP_CK@f^Ra?SVgy!kr3&EHOl7O)Y6)%07`JK>8gz9iU?kGL8hsv zc1DqkW}4vvvd6EWEWWjozUOe4*}2QQ=}-zO|J1~*+#iqD9wv~l9j3rF2lJjzH>F7mx;!l(;2Ld4f$ zLsonYDqXxJWJnlK;k!rUGGSRQ+^nTfo1Ng+m(_XN9iBAMM5)$wEt~>SY2)to?{{FfiAByEl#t>&ZIUze+?djp3Bd#GWD9#12B^d%Jrk z!HT{p{;?VaBn7IP>YZ*kTKjm(1tqTk$$%K*Vc9!^W)cEcOY1%j#(EyeE%;6boI&;a zh%K^-FnRogG5!{J#?tE-@m{&ekw$_SJ$*3f&_H8I$P&-V4($ZRv#F4?QF9dQ;>|K+ z*Q2*aX(t2gh=89IBBdfvfS?SmA-pK$$y0P=LVyf%q^M6GS*dgET-u3}cRCVJNfy}I z$%!gu-mss9Y3(0jnvBUZ76kdEX|I>C@0NLSL2hi!&K@{oXu|89+e?+&O76<$asw=& zoy#LkykeT3*Q<(Uty^TPM>R>uTri$Za2^k)rn9^^V+&m}Y%=stvp&i9yi%>gp?bLW zY9#|(^@Dj7y3Z!PzZj0uK^=>ygWsIvrOQMtr`iyy(~1mB!&xdrqrjV|dNnEjgd1T# z)Cg4t2e0MD!#_1Y$zYOWTEV2x(|V*ub)FB4=g}@l6obgzFRDEcfwEZFV18bdF3eSE z5fu*)nsRJio!b-(Wfniu%*Vp0-WhI_iUVVK!n*pU*FAHUsS;rkJC;A+(Ag#?KhVDg zYSD7VjR0ayNhxC`4hTQ8!hZl{#KuOL%0-@=WeqnPxev;6nLM~cm7?+F$oG#;aotu& zv&qq1DqwlCcm(!H6ZDG<##^LTGHB$L<;&0BXwZQRP6==U$xRIFO|FfrbA z8-5bNcD3)dUY)vi)fsJ<>`8jp+smPaX$hqPQ|j|M6Y!+rUfP~=jB$eH!sSA#Aw$Q9 zCt9R3F<$h=T8Cm5S&$xRRQe$h5#EO}M|p$eAlAbNO-MgM)($7%gb&u1$jD-Q)i^Ir zVlFiE?LKBB@kgADAGV1*=A4-(PMRAb(V%EGYYrNga|CN4c(T9XQxeDz9!R}6L{HukxF)r z*IJo`JE5_+k9eNyqR}+REma(lFo+f^9m%)>Yk$7XO7f{*z-Xh}v~&vfJzQ!H5P7Cx5U}1VDjKM%9QN%!{BJUOpe#g13nCD|Ro587O-_x&QgY z+V%_3cn3P)GHAJp5^U&NGeHKa zPwjeADW0?3Uoc(0EMRS}bu#E{%Ci4#ruFK`tBJP{hwiki`8>wY&VU25)vIPH5X4NY z36pWcvnw-wBiF5$j|AF-++tZG!B)$5!UoWyPn+kQhEL6DiBhjq=fb^5Yg$s_0T5S| z2@!V!k`EKunKwTpe*d$YUdE>zVsGp@uG}#zZxB~JeNa~T-L;W~$=jZPNXDKoGdmcl z_qJTj?WU_UML}O*kYuH0)?4(b%q-Z_Alj_+8v8*;0Gkr_(}UZh`;pAWnj&kt172k@ zXeN)fvbt{Yn=aRn&=Pa(KAl-P-8qCB$f9fh7SP`=^mqh)d7Eq|1 zp5;9Qo*{*d=K(J@TlY|`UKjB73Nd}suh4j=4XRaUHVnc)CljPiMd;D>3B_uZSL=w< z4$0=ZenaLNOpgO~vR@!$3BgaeXZMHYvPWzZy|aAL)s=c=1|GlXAYo@JIqkrYn2C#* z-Mzc+aRZH3bx|xvJSCbE>(A>TdrU20K8TG!-X0vY+p@~DNn?`ZlKH1op_8yMgx#)| zaBnREYoT^E8-{ft(MZ`DG>S6R@g|oK!%B9({*{G!3|JRlU(CmwAqrG)>mE6 zX;MJ(kss9N;Smz90h4AUT^>JE*z3RU=O;h;8NK;-9|KVu%v626?vVi1V9?jSl)mwg znYDib9@tj;7N;{6uyk}T#w$~*(ftJ#PwT)(K^ToN4)1tMy%kVI8|_gP0!Rx5r_@l; zQs>)spCX0HSY(IXT8f@&-(D2nyWOziloM%$duIlY=U5th4t%-5_$m=-wQ3L%e{=mS zkXx{&$-d$FD*uE6aW@Ei_9k!5wy4iQQDVbp<4b0wAcdRlWdi@{lObbd)kNR@W z6q{&Uzz1f8Im96^@3sm&i{~*2FS0B}qD(_4rmMDG22V$AWDUS*3Ky68;xkgHV+5}m zWeO<3NjtWWbP=8)yxfn*g4%;=o_7whn!p&T@6o}6m$i=@9tO}hH7hAepm=m5C#RlX z9`hi8+g?;|Kl8ieA?2W%c1F4mEWY1-QLSg;xia5W_B zXDk@k4-gT{*x1-e7IQsu%m&ZaPXg=T)O{b{$c?nU57SX_y`tNhrrYM+6?5X{| z2r*)zA$cqQuP#mwOT*KVDa`fAj18z9Z%Jz4698AawF1^|gO;9RQ80goBB4BUj0clAqC+KmTZrn3x)}mQz zzB12S9px~==lr1tj-_uoI381Wgk4V4mOQGS^nH`dQ71# zj!v#TM6qTSx{M#e4TPFjk>_fHqjgmFM(vo1${vp}RH)NzZ)=mc{Jys-i$4c`vG^VP z?qj{TcQ2=c%T7f#amUH8Ndu>4rr9;Y&W%fUUkB=DGtwL-Trolu&Ie+4^28E?1QR{J-uqISJw1<&ZXA2!bGWHV7=BHBUT0~S6Hrf=* zzSMZH_oR_lq-S2dIAQw}Cd26Tk1#>A;@ulDc;Tg~rkPEgOl{RJZqgVZ3js3g{j_>{ zBpYsUu>~5N1wF!HmR-#+kuf_=*l*4_n;NM(4v>*3qXA_%?VcQbzrnJiONHV=;Dy1| zL_~jA(Na(n3K}|yfMC43Ju+%_-pn|de;x1b!&cNft|=GxDreLx)T#DZn>s=b+*Z=Z z>Adt9YBm+U0fdNR3N%2c|24taNpXYUrSC3QD9B>i^9h8wQIGkHY8wP{hqpQ!dmbnL zW!_xBk2*q-%tG@o?cLb}tZ)Gw{80Vv+sA4K*+5>jr^Aoyg2gZ&HDaZ>z_L|tCXj19 zZ!}%r86!Bf7dfjc-SU`1=u`S0Mlebykqh2(MztNE?cs>gJ69xf)85bae6rcxAI6#w|!jw!M@fTaXr(ju`i$`bIj>fKUU~j>hLE@wSqAsL+9H?JtH7XkVX9jL7$8N z(Le~Zw&iByz4~%lcJA7J_eY{lm?jaV;oHc)|OG8&Uflf9PN8J-~!Msmqn0Ci* zd@*Y)?=?TDJ1=93s8wKf=K}016g(ayZg$GXR;+X7DgOyQxzfv(XQK4Zsg3s(8ff=P z#=2j=WK*xdH!(VYBA{ne)3WDP@IW_g%p7YAx_LAi5*@#h8y}W=`G`kw39pC!Vvw`q zU*@DQnNYmrz)A@&vh(h@>9LfE(O$^`YFnH!O{&lB@Wq!xu}PDLnRo1};2mS#!e4QP z`KOXSN*t}ZgQ9U>_4}}Ao}?fSFaqb5`p%fvpjCW_8d+*hk9M5Dk@61`!Ies0I$C9p z5G<=n(RFrlaWPQi1zp%S=f-Cw~UXm+swCq{i6^j+2pjTpJ;H87_jh(W&q@s1| zL24$2P2$g%40-&Vf=906H3wH6;z(n8iZPa2UNa$fM_LLC0%W4#8d0o0#R<-oI?1LO z@q&?V1nwXsRkbX}*vo^M#Z*n5d%JJ#_%MikTM%pBHagT#UY>95fC+y<^tp*r9yrwn zJ$!LduJ%ZHJt*WSuS^+niE$`(YgJss^C zAos`}Cw{^CDo0yKhn)MyBQ_L!jybYxObdFj&%{d%$R$@E?j6_4I&wTR<77m>f!kR~ zwjLRvi)1a1mAOd}zi*Lbw+?YYxgvA#xJF2K4;;98(uecwC1U$14sZ{5Vjed0SQBNf z@K`3Tf^1{j+5+>m3b=QyK<0gjal%PKrk)w5>eHs9)l%uGTiaV6G}3it`cwWf??Vm> z4F$JPg({bxnOL+bF$M~3+R>o`Gx5bSe^L8Yog92I`84h&9BO8{a^yDZWJFC%o{#$~ zoF?5SgZa@U>T!<_u1DJm=dpcUn4rB$)KL-q35Q^K*?F@zz#ZR2223DzpN`qdT@l*5 z!%bb)j`IS!p~j*G(8YbtO@IquW-N2;>W4TB_)oHYhFg4Na4SQE8=}J zHVLkBhg9a?fOc^z&vARWkKQ$^)IHe(dr%{T%4$kU>nY5S;iguYzbm`h)okX3C&jpv z^XioZv32vI?W+!4~*&PU}b>*odG;g<7<(`@FaBDUwaOG$b!#8#7& z{1#u`tSU5RT@@>O^rqIShkN7*hkk7F#=8P`(?yBQ35wUKaxE6$-@KWA`3Y2z^l38@ zg4&>s@r_h@F4-WZRV3bw^JjI%#+C-)c>z>^zDJ5(U$n_4(ztHl_;t7sws0Q#W|}>} zDu$tEqGh!q9dlP!3SVL{C4Zk6Su$6cEm-Lnfhru41~lnj8JtQii6M>JbCxc`0J<)UI7?HQT#@ zvo%80zb~5~{@9DRc%069S1^{4TQ`&PbhZEiw9EeGz+OBnlL%iXkqzyud;%nX)+?&@ z1CC_b9!ZkQ#BN0t&C7(Q zxW0-8TDkK^R-^U3FcZGMKgjB>SP`+ zYc_vIFk~C;x0jd$wv?Mgh|ZI|?=f`j6T23Ak01F-hVCwPj`I>)_qmnZi&f#9h+{T4 z*)|AdhAE=u8%N!>$P--dA#6E4%@0z%WoawX=GFA%?9tW6Y3`dEQkRrib~avg20_}V za$Z~;AKqvCS-{*-#-^`e;xAQ1ZYG>jf@@5r6+hbm%a-p3vYxh zC=b+u5K)Soecv;!-{!teJbWL!^ce z>8S9m(J_IOtAH0`^yz*vY_0q_p1;Pt^5nn+GsV)8Lortp1e?ldx}kJ#FZJ9^`oZ_+ z_P#>J9w*c})gi{Wg~@XvmucE3v7<>Ew+~m^oVD`F^D_{f43t}<*bGv?*Q_VYtbcTb zzH^OUh+gkEs5`6ggm@8*jfaodWEnKpKDTia4$_tL^QNB82q6lS@NlALPfdR+c`Ygo zBG0(3>>m-k>5?tx}lUC8w3Cw|h>k}dY~UIuu64}a)F%%f*}fHRO@yVv7eh_>EC znWi?APJ$pW*|@X2<8)tSvBzJAbW30S2zi=2oL%$96bIEI_4O6LwK}$9^$G2mG*dVd zXu|2?SXvdcnH^9qCBJ`2BT|C}cteCkv9?wL)jQc3{E!~E+wNG$HR(QG6eo!D+{&b7?4@25~^AVnWk`|ilPoG$+szR}fE_dj47iag~8 zHG*7hbefj7a1Klte7Ks)(!~>$KS}+GRP>i4R0j<%nZ?0UG*;;d!Mn4soe-0&nUL8h z@o-Xo8}xEprDXM^Hv%bjE#{Y^a5?7hF&(m*b<>8uwD7@zX)V$3&YUX8eSw3KwJW)C zwHsiK9p|=-&5AQZS!Kw7c{PRL7;`qne-3Y7RkCuU@aXR1*!#L^cyIVP%Ur4rlEj|} zTK<-|??cc)(6>S?)hV^9tO≈sw5Ek=gHh5+;+uy>O3MK}F2xed&}qU)mRBP(MSr zuE5U~6{{oKi}iGHGZpC%CFwW}U`YikoDlWjf~b?A>yIF{PqBdeKigfFc<8%nL?3cqyC@a4{B zBO4AN$FY7de|-;ILFE0&4gyHxn_k|v*)JBGCXR7BfpDGJi`n)GrU%Uwt36k22G{Ox z%$B=9Qa-WzCU$GQwnHDvOBF)Tdul$JPWIt(XGIR!(Mnkd&Jg(xKu(0Ed!8N!_PPj! z_{fHed>?1|WDyeE7C5fmIYfog!}~rEl+Ol#0Hbp}tuBxa-E0+wTIlZklG-5f$;39?FSdf}pTD?`QQR>(ZLE`}DE_4)CR1(jV9SzG`+ z)`cW>*ZuL6CiTDjAsUvro`zFJ1Z)d#07YA{BTrX8%{8tTPorZu9Dw#dj`|{R4hN(*WQjvd=_)Cmi_y(~W;rrgU^tLB9PJ z^y1UIcU=Cz^&@uf_y9sRT#IJd{E48BD$ zI~8P?|D`IviTlTYXDYYYUJd_XVr_w>JUfj$>!9r+(C@5$C%27HqPdLj6nGsWx#xFA z%J|_uTwX@*+Oap0Y`0VC|LTnkVjFDfR0USZe|E(D$L+wv!_Nb>j&4)91{j)PWX_d?pj`K6tQa@4vp?>7(q^23?LU z_1$#<*4!(9Sm|%=?I0*{A7?ubqvX%{o1;;$%(HeRG5+PzoddYjq;uddE>*L#8Upw+Qnrvh{qIPLA8f%jIxsXH! z9ug4{9GFn@>n&}Q&jtj^R12+%+dfzpOb6k0Bp7G*^ z!>!1Cc*cR8wL^e!m=SxkRv`-qRDAnP2xn3MY`?8Z5HHtHsto^S>J4tYWtfWB>BbrLf^G`IW4cR7mVli~oJ7cafq26zSH6Z>IRop!m^ zEs<3Ck3Xs;6!yHfGpNk}t`*R~{LVkHd#++C)caXlLU90Xt?P=L(T~k!vwQbCs~zY| zO3xU0?&3qInYEqW0f)4?%xkC z-`LO#rEMRJp03F>eCJQw<^kj}WyM34Fl1PGy1lIVJ?t6%!Ig~3*9(WY_3c@&i8eY2 zBC^)Ed0cQ(svtv!v7Owis#6NZc{MZRTh++EH`3<4w)yIs2glJw{+j8*FQfA+Iv#_o zTis5wEA!KY0+xR=YPQ;IP<<(M=H1Z{XQz*URz2IO;7f$chMei03boNG1r^0Z%F&w^ z!>XXT`e7cb>4(n&UK(}7`pmf}?T}6Vxknx%)sN$D1J_g}47R(thT?dP`0DsH{!^JM zvF+p;p>gykWtdNYa|<*do-}oSW^L=;LfqyyvaH;Wuhj(?KH5`b1Bzn^lKjD0N$>q# z17^a77(qO^FFJuM%9~nn3v;qrcwX3f0(vtUP7`3b4numS=U;DQPo(-=3>yhm-WjtA528LS_ zTnqgU*>2;XRGHs44YZ;|wly6}M2*&H+so6A-D}g|iA2V>&i0K#mAJv}!8s{V+-7wQ zY+FZjJ`{!vRV16z`AIG`RNUy+rgzZhK=KS+aBU&dZuB*gDEA08zhLIoJf4KwIwVTb z-yAev1-<~uZM!IF=cU)gkDk&QOj`Ht9_G|&y+-GHGo{vs*figCV{D)gp)?cDy#VtH zoRHckfaZ_#j0;k%o(}daKb~TcuxLDt4~#2M`I}el7BAAX5Ac0DwibK;FZ@c1@oofp()lmI33x z>EnNa6*eh9QiAcSa<^YY0V5E={(c(LDf)H%YbcVq{~3R_I!o_20#MnH`p4>)nbxmW zX7!^jz!E8nzaf&Vck5w&6hOkPjH6d8UYTu+&K;r(bC!}7J&qr>Y{q^8h$0O!+ io)(<(HW!%O-YcspI=7kHn6nG`xvFQPi@D_d;Qs(lggBr8 literal 0 HcmV?d00001 diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 1c70c06a..3184a47f 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -488,10 +488,34 @@ selectStatement ; selectClause - : KW_SELECT setQuantifier? ( - ASTERISK_SIGN - | projectItemDefinition (COMMA projectItemDefinition)* - ) + : KW_SELECT setQuantifier? selectList + ; + +selectList + : columnProjectItem (COMMA columnProjectItem)* + ; + +columnProjectItem + : selectWindowItemColumnName + | selectLiteralColumnName (columnAlias | KW_AS? expression)? + | tableAllColumns columnAlias? + | selectExpressionColumnName (columnAlias | KW_AS? columnName)? + ; + +selectWindowItemColumnName + : overWindowItem + ; + +selectExpressionColumnName + : expression + ; + +selectLiteralColumnName + : columnName + ; + +columnAlias + : KW_AS? alias=identifier ; projectItemDefinition @@ -500,9 +524,13 @@ projectItemDefinition | columnName (KW_AS? expression)? ; +tableAllColumns + : (identifier (DOT identifier)* DOT)? ASTERISK_SIGN + ; + overWindowItem - : primaryExpression KW_OVER windowSpec KW_AS identifier - | primaryExpression KW_OVER errorCapturingIdentifier KW_AS identifier + : primaryExpression KW_OVER windowSpec KW_AS alias=identifier + | primaryExpression KW_OVER errorCapturingIdentifier KW_AS alias=identifier ; fromClause @@ -524,8 +552,16 @@ tableReference tablePrimary : KW_TABLE? tablePath systemTimePeriod? | viewPath systemTimePeriod? - | KW_LATERAL KW_TABLE LR_BRACKET functionCallExpression RR_BRACKET - | KW_LATERAL? LR_BRACKET queryStatement RR_BRACKET + | atomFunctionTable + | atomExpressionTable + ; + +atomFunctionTable + : KW_LATERAL KW_TABLE LR_BRACKET functionCallExpression RR_BRACKET + ; + +atomExpressionTable + : KW_LATERAL? LR_BRACKET queryStatement RR_BRACKET | KW_UNNEST LR_BRACKET expression RR_BRACKET ; @@ -944,7 +980,7 @@ viewPathCreate ; uid - : identifier (DOT identifier)*? + : identifier (DOT identifier)* ; withOption diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index 96350298..f68798a0 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -1434,7 +1434,7 @@ viewNameCreate ; subQuerySource - : LPAREN queryStatementExpression RPAREN KW_AS? id_ + : LPAREN queryStatementExpression RPAREN KW_AS? alias=id_ ; /** @@ -1455,9 +1455,13 @@ partitionTableFunctionSource ; partitionedTableFunction + : atomPartitionedTableFunction alias=id_? + ; + +atomPartitionedTableFunction : n=id_ LPAREN KW_ON ptfsrc=partitionTableFunctionSource spec=partitioningSpec? ( Identifier LPAREN expression RPAREN (COMMA Identifier LPAREN expression RPAREN)* - )? RPAREN alias=id_? + )? RPAREN ; /** @@ -1485,12 +1489,16 @@ valuesClause ) ; +atomValuesClause + : KW_TABLE LPAREN valuesClause RPAREN + ; + /* This represents a clause like this: TABLE(VALUES(1,2),(2,3)) as VirtTable(col1,col2) */ virtualTableSource - : KW_TABLE LPAREN valuesClause RPAREN KW_AS? tableAlias (LPAREN id_ (COMMA id_)*)? RPAREN + : atomValuesClause KW_AS? alias=tableAlias (LPAREN id_ (COMMA id_)*)? RPAREN ; /* @@ -1498,10 +1506,7 @@ Rules for parsing selectClause select a,b,c ... */ selectClause - : KW_SELECT QUERY_HINT? ( - (KW_ALL | KW_DISTINCT)? selectItem (COMMA selectItem)* - | KW_TRANSFORM selectTrfmClause - ) + : KW_SELECT QUERY_HINT? ((KW_ALL | KW_DISTINCT)? selectList | KW_TRANSFORM selectTrfmClause) | trfmClause ; @@ -1511,9 +1516,26 @@ selectTrfmClause )? rowFormat recordReader ; +selectList + : selectItem (COMMA selectItem)* + ; + selectItem : tableAllColumns - | ((columnName | expression) (KW_AS? id_ | KW_AS LPAREN id_ (COMMA id_)* RPAREN)?) + | ( + (selectLiteralColumnName | selectExpressionColumnName) ( + KW_AS? alias=id_ + | KW_AS LPAREN alias=id_ (COMMA alias=id_)* RPAREN + )? + ) + ; + +selectLiteralColumnName + : columnName + ; + +selectExpressionColumnName + : expression ; trfmClause diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index ec4f4994..5cbf8838 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -771,9 +771,13 @@ sortItem ; querySpecification - : KW_SELECT setQuantifier? (KW_STRAIGHT_JOIN)? selectItem (COMMA selectItem)* ( - KW_FROM relation (COMMA relation)* - )? (whereClause)? (KW_GROUP KW_BY groupBy)? (havingClause)? + : KW_SELECT setQuantifier? (KW_STRAIGHT_JOIN)? selectList (KW_FROM relation (COMMA relation)*)? ( + whereClause + )? (KW_GROUP KW_BY groupBy)? (havingClause)? + ; + +selectList + : selectItem (COMMA selectItem)* ; whereClause @@ -807,9 +811,25 @@ setQuantifier ; selectItem - : columnItem (KW_AS? identifier)? # selectSingle - | qualifiedName DOT ASTERISK # selectAll - | ASTERISK # selectAll + : selectLiteralColumnName columnAlias? + | selectExpressionColumnName columnAlias? + | tableAllColumns + ; + +columnAlias + : KW_AS? alias=identifier + ; + +selectLiteralColumnName + : columnNamePath + ; + +selectExpressionColumnName + : expression + ; + +tableAllColumns + : (qualifiedName DOT)? ASTERISK ; relation @@ -861,11 +881,15 @@ columnAliases relationPrimary : tableOrViewPath - | KW_LATERAL? subQueryRelation + | atomSubQueryTableSource | unnest | parenthesizedRelation ; +atomSubQueryTableSource + : KW_LATERAL? subQueryRelation + ; + subQueryRelation : LPAREN queryStatement RPAREN ; @@ -916,23 +940,27 @@ valueExpression | left=valueExpression CONCAT right=valueExpression # concatenation ; -primaryExpression - : KW_NULL # nullLiteral - | interval # intervalLiteral - | identifier stringLiteral # typeConstructor - | DOUBLE_PRECISION stringLiteral # typeConstructor - | number # numericLiteral - | booleanValue # booleanLiteral - | stringLiteral # stringLiteralValues - | BINARY_LITERAL # binaryLiteral - | QUESTION # parameter - | KW_POSITION LPAREN valueExpression KW_IN valueExpression RPAREN # position - | LPAREN expression (KW_AS type)? (COMMA expression (KW_AS type)?)*? RPAREN # rowConstructor - | KW_ROW LPAREN expression (COMMA expression)* RPAREN # rowConstructor - | functionNamePath LPAREN ASTERISK RPAREN filter? over? # functionCall - | functionNamePath LPAREN (setQuantifier? expression (COMMA expression)*)? ( +functionCallExpression + : functionNamePath LPAREN (setQuantifier? expression (COMMA expression)*)? ( KW_ORDER KW_BY sortItem (COMMA sortItem)* - )? RPAREN filter? over? # functionCall + )? RPAREN filter? over? + ; + +primaryExpression + : KW_NULL # nullLiteral + | interval # intervalLiteral + | identifier stringLiteral # typeConstructor + | DOUBLE_PRECISION stringLiteral # typeConstructor + | number # numericLiteral + | booleanValue # booleanLiteral + | stringLiteral # stringLiteralValues + | BINARY_LITERAL # binaryLiteral + | QUESTION # parameter + | KW_POSITION LPAREN valueExpression KW_IN valueExpression RPAREN # position + | LPAREN expression (KW_AS type)? (COMMA expression (KW_AS type)?)*? RPAREN # rowConstructor + | KW_ROW LPAREN expression (COMMA expression)* RPAREN # rowConstructor + | functionNamePath LPAREN ASTERISK RPAREN filter? over? # functionCall + | functionCallExpression # functionCall | identifier RIGHT_ARROW expression # lambda | LPAREN (identifier (COMMA identifier)*)? RPAREN RIGHT_ARROW expression # lambda | LPAREN queryStatement RPAREN # subqueryExpression diff --git a/src/grammar/mysql/MySqlParser.g4 b/src/grammar/mysql/MySqlParser.g4 index 36a7f5d1..8484c29c 100644 --- a/src/grammar/mysql/MySqlParser.g4 +++ b/src/grammar/mysql/MySqlParser.g4 @@ -1087,9 +1087,14 @@ tableSource tableSourceItem : tableName (KW_PARTITION '(' partitionNames ')')? (KW_AS? alias=uid)? ( indexHint (',' indexHint)* - )? # atomTableItem - | KW_LATERAL? (selectStatement | '(' parenthesisSubquery=selectStatement ')') KW_AS? alias=uid fullColumnNames? # subqueryTableItem - | '(' tableSources ')' # tableSourcesItem + )? # atomTableItem + | KW_LATERAL? atomSubQueryTableSource KW_AS? alias=uid fullColumnNames? # subqueryTableItem + | '(' tableSources ')' # tableSourcesItem + ; + +atomSubQueryTableSource + : selectStatement + | '(' parenthesisSubquery=selectStatement ')' ; // (col_list) | (col_alias [, col_alias] ...) @@ -1196,14 +1201,30 @@ selectSpec ; selectElements - : (star='*' | selectElement) (',' selectElement)* + : (pureAllColumns | selectElement) (',' selectElement)* ; selectElement - : (LOCAL_ID VAR_ASSIGN)? expression (KW_AS? alias=uid)? # selectExpressionElement - | functionCall (KW_AS? alias=uid)? # selectFunctionElement - | select_element=fullId '.' '*' # selectStarElement - | columnName (KW_AS? alias=uid)? # selectColumnElement + : tableAllColumns + | selectLiteralColumnName (KW_AS? alias=uid)? + | selectExpressionColumnName (KW_AS? alias=uid)? + ; + +tableAllColumns + : fullId DOT STAR + ; + +pureAllColumns + : STAR + ; + +selectLiteralColumnName + : columnName + ; + +selectExpressionColumnName + : (LOCAL_ID VAR_ASSIGN)? expression # selectExpressionElement + | functionCall # selectFunctionElement ; intoClause diff --git a/src/grammar/postgresql/PostgreSqlParser.g4 b/src/grammar/postgresql/PostgreSqlParser.g4 index 592e0c76..eb43cbe8 100644 --- a/src/grammar/postgresql/PostgreSqlParser.g4 +++ b/src/grammar/postgresql/PostgreSqlParser.g4 @@ -2113,11 +2113,7 @@ fromList tableRef : ( (relationExpr | (KW_ONLY? viewName STAR? columnList? whereClause?)) aliasClause? tableSampleClause? - | KW_LATERAL? ( - xmlTable aliasClause? - | funcTable funcAliasClause? - | selectWithParens aliasClause? - ) + | KW_LATERAL? expressionTable | OPEN_PAREN tableRef ( KW_CROSS KW_JOIN tableRef | KW_NATURAL joinType? KW_JOIN tableRef @@ -2130,6 +2126,12 @@ tableRef )* ; +expressionTable + : xmlTable aliasClause? + | funcTable funcAliasClause? + | selectWithParens aliasClause? + ; + aliasClause : KW_AS? alias=colId (OPEN_PAREN nameList CLOSE_PAREN)? ; @@ -2551,6 +2553,14 @@ exprList : expression (COMMA expression)* ; +selectExpressionColumnName + : expression + ; + +selectLiteralColumnName + : columnName + ; + columnExpr : (OPEN_PAREN expression CLOSE_PAREN) | columnName @@ -2622,8 +2632,12 @@ targetList ; targetEl - : columnExprNoParen (KW_AS colLabel | identifier |) # target_label - | STAR # target_star + : tableAllColumns # target_star + | (selectLiteralColumnName | selectExpressionColumnName) (KW_AS? alias=identifier |) # target_label + ; + +tableAllColumns + : (colId DOT)* STAR ; qualifiedNameList diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index 2dad67ea..8c4b2f40 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -501,7 +501,7 @@ transformClause ; selectClause - : KW_SELECT (hints+=hint)* setQuantifier? namedExpressionSeq + : KW_SELECT (hints+=hint)* setQuantifier? selectList ; setClause @@ -724,11 +724,19 @@ identifierComment ; relationPrimary - : (tableName | viewName | identifierReference) temporalClause? sample? tableAlias - | LEFT_PAREN query RIGHT_PAREN sample? tableAlias - | LEFT_PAREN relation RIGHT_PAREN sample? tableAlias - | KW_VALUES expression (COMMA expression)* tableAlias - | functionName LEFT_PAREN (functionTableArgument (COMMA functionTableArgument)*)? RIGHT_PAREN tableAlias + : (tableName | viewName | identifierReference) temporalClause? sample? tableAlias # tableSource + | atomSubQueryTableSource sample? tableAlias # subQueryTableSource + | LEFT_PAREN relation RIGHT_PAREN sample? tableAlias # joinTableSource + | inlineTable tableAlias # inlineTableSource + | functionTable # functionTableSource + ; + +atomSubQueryTableSource + : LEFT_PAREN query RIGHT_PAREN + ; + +inlineTable + : KW_VALUES expression (COMMA expression)* ; functionTableSubqueryArgument @@ -763,6 +771,14 @@ functionTableArgument | functionArgument ; +functionTable + : atomFunctionTable tableAlias + ; + +atomFunctionTable + : functionName LEFT_PAREN (functionTableArgument (COMMA functionTableArgument)*)? RIGHT_PAREN + ; + tableAlias : (KW_AS? alias=strictIdentifier identifierList?)? ; @@ -804,14 +820,32 @@ viewIdentifier : (db=errorCapturingIdentifier DOT)? view=errorCapturingIdentifier ; +selectLiteralColumnName + : columnName + ; + +selectExpressionColumnName + : expression + ; + +tableAllColumns + : (qualifiedName DOT)* ASTERISK + ; + namedExpression - : (columnName | expression) (KW_AS? (name=errorCapturingIdentifier | identifierList))? + : (tableAllColumns | selectLiteralColumnName | selectExpressionColumnName) ( + KW_AS? (alias=errorCapturingIdentifier | identifierList) + )? ; namedExpressionSeq : namedExpression (COMMA namedExpression)* ; +selectList + : namedExpressionSeq + ; + partitionFieldList : LEFT_PAREN fields+=partitionField (COMMA fields+=partitionField)* RIGHT_PAREN ; diff --git a/src/grammar/trino/TrinoSql.g4 b/src/grammar/trino/TrinoSql.g4 index 9895ee27..5a8cf66d 100644 --- a/src/grammar/trino/TrinoSql.g4 +++ b/src/grammar/trino/TrinoSql.g4 @@ -280,9 +280,9 @@ sortItem ; querySpecification - : KW_SELECT setQuantifier? selectItem (',' selectItem)* (KW_FROM relation (',' relation)*)? ( - whereClause - )? (KW_GROUP KW_BY groupBy)? (havingClause)? (KW_WINDOW windowDefinition (',' windowDefinition)*)? + : KW_SELECT setQuantifier? selectList (KW_FROM relation (',' relation)*)? (whereClause)? ( + KW_GROUP KW_BY groupBy + )? (havingClause)? (KW_WINDOW windowDefinition (',' windowDefinition)*)? ; whereClause @@ -293,6 +293,10 @@ havingClause : KW_HAVING having=booleanExpression ; +selectList + : selectItem (',' selectItem)* + ; + groupBy : setQuantifier? groupingElement (',' groupingElement)* ; @@ -338,9 +342,25 @@ setQuantifier ; selectItem - : (columnRef | expression) (KW_AS? alias=identifier)? # selectSingle - | primaryExpression '.' ASTERISK (KW_AS columnAliases)? # selectAll - | ASTERISK # selectAll + : (selectLiteralColumnName | selectExpressionColumnName) (KW_AS? alias=identifier)? + | tableAllColumns (KW_AS columnAliases)? + | selectAllWithoutTable + ; + +selectAllWithoutTable + : ASTERISK + ; + +tableAllColumns + : primaryExpression '.' ASTERISK + ; + +selectLiteralColumnName + : columnRef + ; + +selectExpressionColumnName + : expression ; relation @@ -449,12 +469,16 @@ columnAliases ; relationPrimary - : tableOrViewName queryPeriod? # tableName - | '(' query ')' # subqueryRelation + : tableOrViewName queryPeriod? # tableName + | relationSourceTable # expressionSourceTable + | '(' relation ')' # parenthesizedRelation + ; + +relationSourceTable + : '(' query ')' # subqueryRelation | KW_UNNEST '(' expression (',' expression)* ')' (KW_WITH KW_ORDINALITY)? # unnest | KW_LATERAL '(' query ')' # lateral | KW_TABLE '(' tableFunctionCall ')' # tableFunctionInvocation - | '(' relation ')' # parenthesizedRelation | KW_JSON_TABLE '(' jsonPathInvocation KW_COLUMNS '(' jsonTableColumn (',' jsonTableColumn)* ')' ( KW_PLAN '(' jsonTableSpecificPlan ')' | KW_PLAN KW_DEFAULT '(' jsonTableDefaultPlan ')' diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 80ed68bf..7709f890 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1176,12 +1176,21 @@ withItem withItemName selectStatement selectClause +selectList +columnProjectItem +selectWindowItemColumnName +selectExpressionColumnName +selectLiteralColumnName +columnAlias projectItemDefinition +tableAllColumns overWindowItem fromClause tableExpression tableReference tablePrimary +atomFunctionTable +atomExpressionTable systemTimePeriod dateTimeExpression inlineDataValueClause @@ -1286,4 +1295,4 @@ nonReservedKeywords atn: -[4, 1, 542, 2319, 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, 1, 0, 5, 0, 390, 8, 0, 10, 0, 12, 0, 393, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 399, 8, 1, 1, 1, 3, 1, 402, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 416, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 434, 8, 4, 1, 5, 1, 5, 3, 5, 438, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 447, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 452, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 457, 8, 8, 10, 8, 12, 8, 460, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 470, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 477, 8, 11, 10, 11, 12, 11, 480, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 491, 8, 12, 1, 12, 3, 12, 494, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 501, 8, 12, 1, 12, 3, 12, 504, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 512, 8, 12, 1, 12, 1, 12, 3, 12, 516, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 521, 8, 12, 1, 12, 3, 12, 524, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 531, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 539, 8, 15, 1, 16, 1, 16, 3, 16, 543, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 555, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 563, 8, 18, 1, 18, 1, 18, 3, 18, 567, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 599, 8, 18, 1, 19, 3, 19, 602, 8, 19, 1, 19, 4, 19, 605, 8, 19, 11, 19, 12, 19, 606, 1, 20, 1, 20, 3, 20, 611, 8, 20, 1, 21, 1, 21, 3, 21, 615, 8, 21, 1, 21, 1, 21, 3, 21, 619, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 626, 8, 21, 10, 21, 12, 21, 629, 9, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 3, 21, 641, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 646, 8, 21, 1, 21, 3, 21, 649, 8, 21, 1, 21, 1, 21, 3, 21, 653, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 658, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 664, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 669, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 674, 8, 24, 1, 24, 1, 24, 3, 24, 678, 8, 24, 1, 25, 1, 25, 3, 25, 682, 8, 25, 1, 26, 1, 26, 3, 26, 686, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 694, 8, 28, 10, 28, 12, 28, 697, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 704, 8, 29, 1, 29, 1, 29, 3, 29, 708, 8, 29, 1, 29, 1, 29, 3, 29, 712, 8, 29, 1, 29, 1, 29, 3, 29, 716, 8, 29, 1, 29, 1, 29, 3, 29, 720, 8, 29, 1, 29, 1, 29, 3, 29, 724, 8, 29, 1, 29, 1, 29, 3, 29, 728, 8, 29, 1, 29, 1, 29, 3, 29, 732, 8, 29, 1, 29, 1, 29, 3, 29, 736, 8, 29, 3, 29, 738, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 748, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 756, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 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, 35, 1, 35, 5, 35, 778, 8, 35, 10, 35, 12, 35, 781, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 792, 8, 35, 10, 35, 12, 35, 795, 9, 35, 1, 35, 1, 35, 3, 35, 799, 8, 35, 1, 36, 1, 36, 3, 36, 803, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 809, 8, 36, 1, 36, 3, 36, 812, 8, 36, 1, 36, 3, 36, 815, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 822, 8, 37, 1, 37, 3, 37, 825, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 834, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 846, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 868, 8, 46, 10, 46, 12, 46, 871, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 880, 8, 47, 10, 47, 12, 47, 883, 9, 47, 1, 47, 1, 47, 3, 47, 887, 8, 47, 1, 48, 1, 48, 3, 48, 891, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 897, 8, 49, 10, 49, 12, 49, 900, 9, 49, 1, 49, 3, 49, 903, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 909, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 919, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 924, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 930, 8, 53, 1, 53, 1, 53, 3, 53, 934, 8, 53, 1, 53, 1, 53, 3, 53, 938, 8, 53, 1, 53, 1, 53, 3, 53, 942, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 951, 8, 54, 1, 54, 1, 54, 3, 54, 955, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 962, 8, 54, 1, 54, 3, 54, 965, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 973, 8, 55, 10, 55, 12, 55, 976, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 983, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 991, 8, 57, 1, 58, 1, 58, 3, 58, 995, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1010, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1029, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1040, 8, 66, 1, 66, 1, 66, 3, 66, 1044, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1051, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1056, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1062, 8, 68, 1, 68, 1, 68, 3, 68, 1066, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1073, 8, 69, 1, 69, 1, 69, 3, 69, 1077, 8, 69, 1, 70, 1, 70, 3, 70, 1081, 8, 70, 1, 70, 1, 70, 3, 70, 1085, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1093, 8, 71, 1, 71, 1, 71, 3, 71, 1097, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1102, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1108, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1114, 8, 73, 1, 73, 3, 73, 1117, 8, 73, 1, 73, 1, 73, 3, 73, 1121, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1130, 8, 75, 10, 75, 12, 75, 1133, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1139, 8, 76, 10, 76, 12, 76, 1142, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1148, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1157, 8, 78, 11, 78, 12, 78, 1158, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1169, 8, 79, 11, 79, 12, 79, 1170, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1186, 8, 80, 1, 80, 3, 80, 1189, 8, 80, 1, 80, 1, 80, 3, 80, 1193, 8, 80, 1, 80, 3, 80, 1196, 8, 80, 3, 80, 1198, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1203, 8, 80, 1, 80, 1, 80, 3, 80, 1207, 8, 80, 1, 80, 3, 80, 1210, 8, 80, 5, 80, 1212, 8, 80, 10, 80, 12, 80, 1215, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1221, 8, 81, 10, 81, 12, 81, 1224, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1230, 8, 82, 10, 82, 12, 82, 1233, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1240, 8, 83, 10, 83, 12, 83, 1243, 9, 83, 1, 83, 1, 83, 3, 83, 1247, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 1258, 8, 85, 1, 85, 3, 85, 1261, 8, 85, 1, 85, 3, 85, 1264, 8, 85, 1, 85, 3, 85, 1267, 8, 85, 1, 85, 3, 85, 1270, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1276, 8, 85, 1, 86, 1, 86, 3, 86, 1280, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 1286, 8, 86, 10, 86, 12, 86, 1289, 9, 86, 3, 86, 1291, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1296, 8, 87, 1, 87, 3, 87, 1299, 8, 87, 1, 87, 1, 87, 3, 87, 1303, 8, 87, 1, 87, 3, 87, 1306, 8, 87, 3, 87, 1308, 8, 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, 3, 88, 1322, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1331, 8, 90, 10, 90, 12, 90, 1334, 9, 90, 1, 90, 1, 90, 3, 90, 1338, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1346, 8, 90, 1, 90, 3, 90, 1349, 8, 90, 1, 90, 3, 90, 1352, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1357, 8, 90, 5, 90, 1359, 8, 90, 10, 90, 12, 90, 1362, 9, 90, 1, 91, 1, 91, 3, 91, 1366, 8, 91, 1, 92, 3, 92, 1369, 8, 92, 1, 92, 1, 92, 3, 92, 1373, 8, 92, 1, 92, 1, 92, 3, 92, 1377, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1386, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1397, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 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, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1422, 8, 97, 10, 97, 12, 97, 1425, 9, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1446, 8, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 1459, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1469, 8, 104, 10, 104, 12, 104, 1472, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1482, 8, 105, 10, 105, 12, 105, 1485, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1494, 8, 105, 10, 105, 12, 105, 1497, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1506, 8, 105, 10, 105, 12, 105, 1509, 9, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1514, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1539, 8, 112, 10, 112, 12, 112, 1542, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1549, 8, 114, 1, 114, 1, 114, 3, 114, 1553, 8, 114, 1, 114, 3, 114, 1556, 8, 114, 1, 114, 3, 114, 1559, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1566, 8, 115, 1, 115, 3, 115, 1569, 8, 115, 1, 115, 3, 115, 1572, 8, 115, 1, 115, 3, 115, 1575, 8, 115, 1, 115, 3, 115, 1578, 8, 115, 1, 115, 3, 115, 1581, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1586, 8, 115, 1, 115, 3, 115, 1589, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1596, 8, 116, 10, 116, 12, 116, 1599, 9, 116, 1, 117, 1, 117, 3, 117, 1603, 8, 117, 1, 117, 1, 117, 3, 117, 1607, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1612, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1618, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1623, 8, 119, 5, 119, 1625, 8, 119, 10, 119, 12, 119, 1628, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1646, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1652, 8, 121, 10, 121, 12, 121, 1655, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1660, 8, 122, 11, 122, 12, 122, 1661, 1, 122, 1, 122, 3, 122, 1666, 8, 122, 1, 123, 1, 123, 3, 123, 1670, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1680, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1706, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1712, 8, 126, 10, 126, 12, 126, 1715, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1726, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1748, 8, 131, 3, 131, 1750, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1761, 8, 131, 1, 131, 5, 131, 1764, 8, 131, 10, 131, 12, 131, 1767, 9, 131, 1, 132, 3, 132, 1770, 8, 132, 1, 132, 1, 132, 3, 132, 1774, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1781, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1788, 8, 132, 10, 132, 12, 132, 1791, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1796, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1809, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1816, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1821, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1827, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1834, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1841, 8, 132, 3, 132, 1843, 8, 132, 1, 133, 3, 133, 1846, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1856, 8, 133, 10, 133, 12, 133, 1859, 9, 133, 1, 133, 1, 133, 3, 133, 1863, 8, 133, 1, 133, 3, 133, 1866, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1872, 8, 133, 3, 133, 1874, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1880, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1901, 8, 134, 10, 134, 12, 134, 1904, 9, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1911, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1916, 8, 135, 10, 135, 12, 135, 1919, 9, 135, 3, 135, 1921, 8, 135, 1, 135, 1, 135, 3, 135, 1925, 8, 135, 1, 136, 1, 136, 1, 136, 4, 136, 1930, 8, 136, 11, 136, 12, 136, 1931, 1, 136, 1, 136, 3, 136, 1936, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 4, 136, 1943, 8, 136, 11, 136, 12, 136, 1944, 1, 136, 1, 136, 3, 136, 1949, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1965, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1974, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2002, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 2009, 8, 136, 10, 136, 12, 136, 2012, 9, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2020, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2026, 8, 139, 1, 140, 1, 140, 3, 140, 2030, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2036, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2044, 8, 144, 1, 145, 1, 145, 1, 145, 3, 145, 2049, 8, 145, 1, 146, 1, 146, 3, 146, 2053, 8, 146, 1, 147, 1, 147, 1, 147, 4, 147, 2058, 8, 147, 11, 147, 12, 147, 2059, 1, 148, 1, 148, 1, 148, 3, 148, 2065, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 3, 150, 2073, 8, 150, 1, 150, 1, 150, 3, 150, 2077, 8, 150, 1, 151, 3, 151, 2080, 8, 151, 1, 151, 1, 151, 3, 151, 2084, 8, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 4, 153, 2091, 8, 153, 11, 153, 12, 153, 2092, 1, 153, 3, 153, 2096, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 5, 155, 2105, 8, 155, 10, 155, 12, 155, 2108, 9, 155, 1, 156, 1, 156, 1, 156, 3, 156, 2113, 8, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2131, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2136, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2141, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2148, 8, 164, 3, 164, 2150, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2155, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2162, 8, 165, 3, 165, 2164, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2169, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2176, 8, 166, 3, 166, 2178, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2183, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2190, 8, 167, 3, 167, 2192, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 2197, 8, 168, 10, 168, 12, 168, 2200, 9, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2216, 8, 172, 10, 172, 12, 172, 2219, 9, 172, 1, 172, 1, 172, 1, 173, 1, 173, 3, 173, 2225, 8, 173, 1, 173, 3, 173, 2228, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2233, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2239, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2247, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2263, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2272, 8, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2282, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2289, 8, 181, 1, 181, 3, 181, 2292, 8, 181, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 2198, 5, 160, 180, 262, 268, 272, 194, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2525, 0, 391, 1, 0, 0, 0, 2, 401, 1, 0, 0, 0, 4, 415, 1, 0, 0, 0, 6, 417, 1, 0, 0, 0, 8, 433, 1, 0, 0, 0, 10, 437, 1, 0, 0, 0, 12, 439, 1, 0, 0, 0, 14, 442, 1, 0, 0, 0, 16, 453, 1, 0, 0, 0, 18, 461, 1, 0, 0, 0, 20, 469, 1, 0, 0, 0, 22, 471, 1, 0, 0, 0, 24, 523, 1, 0, 0, 0, 26, 525, 1, 0, 0, 0, 28, 532, 1, 0, 0, 0, 30, 536, 1, 0, 0, 0, 32, 540, 1, 0, 0, 0, 34, 544, 1, 0, 0, 0, 36, 598, 1, 0, 0, 0, 38, 604, 1, 0, 0, 0, 40, 610, 1, 0, 0, 0, 42, 612, 1, 0, 0, 0, 44, 654, 1, 0, 0, 0, 46, 668, 1, 0, 0, 0, 48, 670, 1, 0, 0, 0, 50, 681, 1, 0, 0, 0, 52, 685, 1, 0, 0, 0, 54, 687, 1, 0, 0, 0, 56, 689, 1, 0, 0, 0, 58, 737, 1, 0, 0, 0, 60, 739, 1, 0, 0, 0, 62, 743, 1, 0, 0, 0, 64, 751, 1, 0, 0, 0, 66, 759, 1, 0, 0, 0, 68, 763, 1, 0, 0, 0, 70, 798, 1, 0, 0, 0, 72, 814, 1, 0, 0, 0, 74, 816, 1, 0, 0, 0, 76, 826, 1, 0, 0, 0, 78, 828, 1, 0, 0, 0, 80, 835, 1, 0, 0, 0, 82, 837, 1, 0, 0, 0, 84, 845, 1, 0, 0, 0, 86, 853, 1, 0, 0, 0, 88, 855, 1, 0, 0, 0, 90, 859, 1, 0, 0, 0, 92, 863, 1, 0, 0, 0, 94, 886, 1, 0, 0, 0, 96, 890, 1, 0, 0, 0, 98, 892, 1, 0, 0, 0, 100, 908, 1, 0, 0, 0, 102, 910, 1, 0, 0, 0, 104, 915, 1, 0, 0, 0, 106, 927, 1, 0, 0, 0, 108, 946, 1, 0, 0, 0, 110, 966, 1, 0, 0, 0, 112, 977, 1, 0, 0, 0, 114, 979, 1, 0, 0, 0, 116, 992, 1, 0, 0, 0, 118, 999, 1, 0, 0, 0, 120, 1002, 1, 0, 0, 0, 122, 1011, 1, 0, 0, 0, 124, 1015, 1, 0, 0, 0, 126, 1019, 1, 0, 0, 0, 128, 1022, 1, 0, 0, 0, 130, 1030, 1, 0, 0, 0, 132, 1035, 1, 0, 0, 0, 134, 1052, 1, 0, 0, 0, 136, 1059, 1, 0, 0, 0, 138, 1069, 1, 0, 0, 0, 140, 1078, 1, 0, 0, 0, 142, 1088, 1, 0, 0, 0, 144, 1107, 1, 0, 0, 0, 146, 1109, 1, 0, 0, 0, 148, 1122, 1, 0, 0, 0, 150, 1125, 1, 0, 0, 0, 152, 1134, 1, 0, 0, 0, 154, 1147, 1, 0, 0, 0, 156, 1149, 1, 0, 0, 0, 158, 1162, 1, 0, 0, 0, 160, 1197, 1, 0, 0, 0, 162, 1216, 1, 0, 0, 0, 164, 1225, 1, 0, 0, 0, 166, 1234, 1, 0, 0, 0, 168, 1253, 1, 0, 0, 0, 170, 1275, 1, 0, 0, 0, 172, 1277, 1, 0, 0, 0, 174, 1307, 1, 0, 0, 0, 176, 1321, 1, 0, 0, 0, 178, 1323, 1, 0, 0, 0, 180, 1337, 1, 0, 0, 0, 182, 1363, 1, 0, 0, 0, 184, 1396, 1, 0, 0, 0, 186, 1398, 1, 0, 0, 0, 188, 1404, 1, 0, 0, 0, 190, 1406, 1, 0, 0, 0, 192, 1411, 1, 0, 0, 0, 194, 1416, 1, 0, 0, 0, 196, 1428, 1, 0, 0, 0, 198, 1445, 1, 0, 0, 0, 200, 1447, 1, 0, 0, 0, 202, 1449, 1, 0, 0, 0, 204, 1458, 1, 0, 0, 0, 206, 1460, 1, 0, 0, 0, 208, 1463, 1, 0, 0, 0, 210, 1513, 1, 0, 0, 0, 212, 1515, 1, 0, 0, 0, 214, 1518, 1, 0, 0, 0, 216, 1520, 1, 0, 0, 0, 218, 1527, 1, 0, 0, 0, 220, 1529, 1, 0, 0, 0, 222, 1531, 1, 0, 0, 0, 224, 1534, 1, 0, 0, 0, 226, 1543, 1, 0, 0, 0, 228, 1548, 1, 0, 0, 0, 230, 1562, 1, 0, 0, 0, 232, 1590, 1, 0, 0, 0, 234, 1600, 1, 0, 0, 0, 236, 1608, 1, 0, 0, 0, 238, 1613, 1, 0, 0, 0, 240, 1645, 1, 0, 0, 0, 242, 1647, 1, 0, 0, 0, 244, 1656, 1, 0, 0, 0, 246, 1667, 1, 0, 0, 0, 248, 1679, 1, 0, 0, 0, 250, 1705, 1, 0, 0, 0, 252, 1707, 1, 0, 0, 0, 254, 1725, 1, 0, 0, 0, 256, 1727, 1, 0, 0, 0, 258, 1732, 1, 0, 0, 0, 260, 1735, 1, 0, 0, 0, 262, 1749, 1, 0, 0, 0, 264, 1842, 1, 0, 0, 0, 266, 1873, 1, 0, 0, 0, 268, 1879, 1, 0, 0, 0, 270, 1924, 1, 0, 0, 0, 272, 2001, 1, 0, 0, 0, 274, 2013, 1, 0, 0, 0, 276, 2019, 1, 0, 0, 0, 278, 2025, 1, 0, 0, 0, 280, 2029, 1, 0, 0, 0, 282, 2035, 1, 0, 0, 0, 284, 2037, 1, 0, 0, 0, 286, 2039, 1, 0, 0, 0, 288, 2043, 1, 0, 0, 0, 290, 2045, 1, 0, 0, 0, 292, 2050, 1, 0, 0, 0, 294, 2057, 1, 0, 0, 0, 296, 2061, 1, 0, 0, 0, 298, 2066, 1, 0, 0, 0, 300, 2076, 1, 0, 0, 0, 302, 2079, 1, 0, 0, 0, 304, 2085, 1, 0, 0, 0, 306, 2095, 1, 0, 0, 0, 308, 2097, 1, 0, 0, 0, 310, 2101, 1, 0, 0, 0, 312, 2112, 1, 0, 0, 0, 314, 2114, 1, 0, 0, 0, 316, 2116, 1, 0, 0, 0, 318, 2118, 1, 0, 0, 0, 320, 2123, 1, 0, 0, 0, 322, 2125, 1, 0, 0, 0, 324, 2127, 1, 0, 0, 0, 326, 2132, 1, 0, 0, 0, 328, 2149, 1, 0, 0, 0, 330, 2163, 1, 0, 0, 0, 332, 2177, 1, 0, 0, 0, 334, 2191, 1, 0, 0, 0, 336, 2193, 1, 0, 0, 0, 338, 2201, 1, 0, 0, 0, 340, 2204, 1, 0, 0, 0, 342, 2208, 1, 0, 0, 0, 344, 2211, 1, 0, 0, 0, 346, 2222, 1, 0, 0, 0, 348, 2232, 1, 0, 0, 0, 350, 2238, 1, 0, 0, 0, 352, 2246, 1, 0, 0, 0, 354, 2262, 1, 0, 0, 0, 356, 2271, 1, 0, 0, 0, 358, 2273, 1, 0, 0, 0, 360, 2275, 1, 0, 0, 0, 362, 2291, 1, 0, 0, 0, 364, 2293, 1, 0, 0, 0, 366, 2296, 1, 0, 0, 0, 368, 2298, 1, 0, 0, 0, 370, 2300, 1, 0, 0, 0, 372, 2302, 1, 0, 0, 0, 374, 2304, 1, 0, 0, 0, 376, 2306, 1, 0, 0, 0, 378, 2308, 1, 0, 0, 0, 380, 2310, 1, 0, 0, 0, 382, 2312, 1, 0, 0, 0, 384, 2314, 1, 0, 0, 0, 386, 2316, 1, 0, 0, 0, 388, 390, 3, 2, 1, 0, 389, 388, 1, 0, 0, 0, 390, 393, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 394, 395, 5, 0, 0, 1, 395, 1, 1, 0, 0, 0, 396, 398, 3, 4, 2, 0, 397, 399, 5, 522, 0, 0, 398, 397, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 402, 3, 6, 3, 0, 401, 396, 1, 0, 0, 0, 401, 400, 1, 0, 0, 0, 402, 3, 1, 0, 0, 0, 403, 416, 3, 8, 4, 0, 404, 416, 3, 10, 5, 0, 405, 416, 3, 12, 6, 0, 406, 416, 3, 14, 7, 0, 407, 416, 3, 20, 10, 0, 408, 416, 3, 24, 12, 0, 409, 416, 3, 26, 13, 0, 410, 416, 3, 28, 14, 0, 411, 416, 3, 30, 15, 0, 412, 416, 3, 32, 16, 0, 413, 416, 3, 34, 17, 0, 414, 416, 3, 36, 18, 0, 415, 403, 1, 0, 0, 0, 415, 404, 1, 0, 0, 0, 415, 405, 1, 0, 0, 0, 415, 406, 1, 0, 0, 0, 415, 407, 1, 0, 0, 0, 415, 408, 1, 0, 0, 0, 415, 409, 1, 0, 0, 0, 415, 410, 1, 0, 0, 0, 415, 411, 1, 0, 0, 0, 415, 412, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 414, 1, 0, 0, 0, 416, 5, 1, 0, 0, 0, 417, 418, 5, 522, 0, 0, 418, 7, 1, 0, 0, 0, 419, 434, 3, 40, 20, 0, 420, 434, 3, 104, 52, 0, 421, 434, 3, 106, 53, 0, 422, 434, 3, 108, 54, 0, 423, 434, 3, 102, 51, 0, 424, 434, 3, 114, 57, 0, 425, 434, 3, 128, 64, 0, 426, 434, 3, 130, 65, 0, 427, 434, 3, 132, 66, 0, 428, 434, 3, 134, 67, 0, 429, 434, 3, 136, 68, 0, 430, 434, 3, 138, 69, 0, 431, 434, 3, 140, 70, 0, 432, 434, 3, 142, 71, 0, 433, 419, 1, 0, 0, 0, 433, 420, 1, 0, 0, 0, 433, 421, 1, 0, 0, 0, 433, 422, 1, 0, 0, 0, 433, 423, 1, 0, 0, 0, 433, 424, 1, 0, 0, 0, 433, 425, 1, 0, 0, 0, 433, 426, 1, 0, 0, 0, 433, 427, 1, 0, 0, 0, 433, 428, 1, 0, 0, 0, 433, 429, 1, 0, 0, 0, 433, 430, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 432, 1, 0, 0, 0, 434, 9, 1, 0, 0, 0, 435, 438, 3, 160, 80, 0, 436, 438, 3, 144, 72, 0, 437, 435, 1, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 11, 1, 0, 0, 0, 439, 440, 7, 0, 0, 0, 440, 441, 3, 330, 165, 0, 441, 13, 1, 0, 0, 0, 442, 446, 5, 135, 0, 0, 443, 447, 3, 16, 8, 0, 444, 445, 5, 480, 0, 0, 445, 447, 5, 146, 0, 0, 446, 443, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 451, 1, 0, 0, 0, 448, 452, 3, 10, 5, 0, 449, 452, 3, 146, 73, 0, 450, 452, 3, 158, 79, 0, 451, 448, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 450, 1, 0, 0, 0, 452, 15, 1, 0, 0, 0, 453, 458, 3, 18, 9, 0, 454, 455, 5, 521, 0, 0, 455, 457, 3, 18, 9, 0, 456, 454, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 17, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 461, 462, 7, 1, 0, 0, 462, 19, 1, 0, 0, 0, 463, 464, 5, 411, 0, 0, 464, 465, 5, 442, 0, 0, 465, 470, 3, 320, 160, 0, 466, 467, 5, 411, 0, 0, 467, 470, 3, 324, 162, 0, 468, 470, 3, 22, 11, 0, 469, 463, 1, 0, 0, 0, 469, 466, 1, 0, 0, 0, 469, 468, 1, 0, 0, 0, 470, 21, 1, 0, 0, 0, 471, 472, 5, 411, 0, 0, 472, 473, 5, 228, 0, 0, 473, 478, 3, 336, 168, 0, 474, 475, 5, 521, 0, 0, 475, 477, 3, 336, 168, 0, 476, 474, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 23, 1, 0, 0, 0, 480, 478, 1, 0, 0, 0, 481, 482, 5, 342, 0, 0, 482, 524, 7, 2, 0, 0, 483, 484, 5, 342, 0, 0, 484, 485, 5, 76, 0, 0, 485, 524, 7, 3, 0, 0, 486, 487, 5, 342, 0, 0, 487, 490, 5, 375, 0, 0, 488, 489, 7, 4, 0, 0, 489, 491, 3, 324, 162, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 493, 1, 0, 0, 0, 492, 494, 3, 266, 133, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 524, 1, 0, 0, 0, 495, 496, 5, 342, 0, 0, 496, 497, 5, 58, 0, 0, 497, 500, 7, 4, 0, 0, 498, 501, 3, 332, 166, 0, 499, 501, 3, 330, 165, 0, 500, 498, 1, 0, 0, 0, 500, 499, 1, 0, 0, 0, 501, 503, 1, 0, 0, 0, 502, 504, 3, 266, 133, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 524, 1, 0, 0, 0, 505, 506, 5, 342, 0, 0, 506, 511, 5, 72, 0, 0, 507, 508, 5, 374, 0, 0, 508, 512, 3, 330, 165, 0, 509, 510, 5, 502, 0, 0, 510, 512, 3, 332, 166, 0, 511, 507, 1, 0, 0, 0, 511, 509, 1, 0, 0, 0, 512, 524, 1, 0, 0, 0, 513, 515, 5, 342, 0, 0, 514, 516, 5, 412, 0, 0, 515, 514, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 524, 5, 154, 0, 0, 518, 520, 5, 342, 0, 0, 519, 521, 5, 152, 0, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 5, 228, 0, 0, 523, 481, 1, 0, 0, 0, 523, 483, 1, 0, 0, 0, 523, 486, 1, 0, 0, 0, 523, 495, 1, 0, 0, 0, 523, 505, 1, 0, 0, 0, 523, 513, 1, 0, 0, 0, 523, 518, 1, 0, 0, 0, 524, 25, 1, 0, 0, 0, 525, 526, 5, 469, 0, 0, 526, 527, 5, 227, 0, 0, 527, 530, 3, 336, 168, 0, 528, 529, 5, 434, 0, 0, 529, 531, 3, 344, 172, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 27, 1, 0, 0, 0, 532, 533, 5, 501, 0, 0, 533, 534, 5, 227, 0, 0, 534, 535, 3, 336, 168, 0, 535, 29, 1, 0, 0, 0, 536, 538, 5, 341, 0, 0, 537, 539, 3, 346, 173, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 31, 1, 0, 0, 0, 540, 542, 5, 313, 0, 0, 541, 543, 3, 348, 174, 0, 542, 541, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 33, 1, 0, 0, 0, 544, 545, 7, 5, 0, 0, 545, 546, 5, 464, 0, 0, 546, 547, 3, 112, 56, 0, 547, 35, 1, 0, 0, 0, 548, 549, 5, 438, 0, 0, 549, 550, 5, 464, 0, 0, 550, 551, 5, 434, 0, 0, 551, 554, 3, 38, 19, 0, 552, 553, 5, 17, 0, 0, 553, 555, 3, 336, 168, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 599, 1, 0, 0, 0, 556, 557, 5, 438, 0, 0, 557, 558, 5, 457, 0, 0, 558, 559, 5, 434, 0, 0, 559, 562, 3, 38, 19, 0, 560, 561, 5, 17, 0, 0, 561, 563, 3, 336, 168, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 566, 1, 0, 0, 0, 564, 565, 5, 312, 0, 0, 565, 567, 3, 336, 168, 0, 566, 564, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 599, 1, 0, 0, 0, 568, 569, 5, 438, 0, 0, 569, 570, 7, 6, 0, 0, 570, 571, 5, 434, 0, 0, 571, 572, 3, 38, 19, 0, 572, 573, 5, 312, 0, 0, 573, 574, 3, 336, 168, 0, 574, 599, 1, 0, 0, 0, 575, 576, 5, 438, 0, 0, 576, 577, 5, 487, 0, 0, 577, 599, 3, 38, 19, 0, 578, 579, 5, 438, 0, 0, 579, 580, 5, 454, 0, 0, 580, 581, 5, 457, 0, 0, 581, 582, 5, 434, 0, 0, 582, 583, 3, 38, 19, 0, 583, 584, 5, 312, 0, 0, 584, 585, 3, 336, 168, 0, 585, 586, 5, 467, 0, 0, 586, 587, 3, 336, 168, 0, 587, 599, 1, 0, 0, 0, 588, 589, 5, 438, 0, 0, 589, 590, 5, 444, 0, 0, 590, 591, 5, 457, 0, 0, 591, 592, 5, 434, 0, 0, 592, 593, 3, 38, 19, 0, 593, 594, 5, 146, 0, 0, 594, 595, 3, 336, 168, 0, 595, 596, 5, 17, 0, 0, 596, 597, 3, 336, 168, 0, 597, 599, 1, 0, 0, 0, 598, 548, 1, 0, 0, 0, 598, 556, 1, 0, 0, 0, 598, 568, 1, 0, 0, 0, 598, 575, 1, 0, 0, 0, 598, 578, 1, 0, 0, 0, 598, 588, 1, 0, 0, 0, 599, 37, 1, 0, 0, 0, 600, 602, 5, 535, 0, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 605, 3, 336, 168, 0, 604, 601, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 39, 1, 0, 0, 0, 608, 611, 3, 42, 21, 0, 609, 611, 3, 44, 22, 0, 610, 608, 1, 0, 0, 0, 610, 609, 1, 0, 0, 0, 611, 41, 1, 0, 0, 0, 612, 614, 5, 72, 0, 0, 613, 615, 5, 498, 0, 0, 614, 613, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 618, 5, 374, 0, 0, 617, 619, 3, 340, 170, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 3, 328, 164, 0, 621, 622, 5, 517, 0, 0, 622, 627, 3, 46, 23, 0, 623, 624, 5, 521, 0, 0, 624, 626, 3, 46, 23, 0, 625, 623, 1, 0, 0, 0, 626, 629, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 632, 1, 0, 0, 0, 629, 627, 1, 0, 0, 0, 630, 631, 5, 521, 0, 0, 631, 633, 3, 82, 41, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 636, 1, 0, 0, 0, 634, 635, 5, 521, 0, 0, 635, 637, 3, 84, 42, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 639, 5, 521, 0, 0, 639, 641, 3, 88, 44, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 645, 5, 518, 0, 0, 643, 644, 5, 59, 0, 0, 644, 646, 5, 538, 0, 0, 645, 643, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 1, 0, 0, 0, 647, 649, 3, 90, 45, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 3, 338, 169, 0, 651, 653, 3, 98, 49, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 43, 1, 0, 0, 0, 654, 655, 5, 72, 0, 0, 655, 657, 5, 374, 0, 0, 656, 658, 3, 340, 170, 0, 657, 656, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 3, 328, 164, 0, 660, 663, 3, 338, 169, 0, 661, 662, 5, 17, 0, 0, 662, 664, 3, 160, 80, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 45, 1, 0, 0, 0, 665, 669, 3, 48, 24, 0, 666, 669, 3, 74, 37, 0, 667, 669, 3, 78, 39, 0, 668, 665, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 667, 1, 0, 0, 0, 669, 47, 1, 0, 0, 0, 670, 671, 3, 50, 25, 0, 671, 673, 3, 58, 29, 0, 672, 674, 3, 72, 36, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 677, 1, 0, 0, 0, 675, 676, 5, 59, 0, 0, 676, 678, 5, 538, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 49, 1, 0, 0, 0, 679, 682, 3, 336, 168, 0, 680, 682, 3, 260, 130, 0, 681, 679, 1, 0, 0, 0, 681, 680, 1, 0, 0, 0, 682, 51, 1, 0, 0, 0, 683, 686, 3, 336, 168, 0, 684, 686, 4, 26, 0, 0, 685, 683, 1, 0, 0, 0, 685, 684, 1, 0, 0, 0, 686, 53, 1, 0, 0, 0, 687, 688, 3, 336, 168, 0, 688, 55, 1, 0, 0, 0, 689, 690, 5, 517, 0, 0, 690, 695, 3, 52, 26, 0, 691, 692, 5, 521, 0, 0, 692, 694, 3, 52, 26, 0, 693, 691, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 518, 0, 0, 699, 57, 1, 0, 0, 0, 700, 738, 7, 7, 0, 0, 701, 703, 7, 8, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 738, 1, 0, 0, 0, 705, 707, 5, 380, 0, 0, 706, 708, 3, 60, 30, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 715, 1, 0, 0, 0, 709, 711, 7, 9, 0, 0, 710, 712, 5, 207, 0, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 379, 0, 0, 714, 716, 5, 505, 0, 0, 715, 709, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 738, 1, 0, 0, 0, 717, 719, 7, 10, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 738, 1, 0, 0, 0, 721, 723, 7, 11, 0, 0, 722, 724, 3, 66, 33, 0, 723, 722, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 738, 1, 0, 0, 0, 725, 727, 5, 470, 0, 0, 726, 728, 3, 68, 34, 0, 727, 726, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 738, 1, 0, 0, 0, 729, 731, 5, 322, 0, 0, 730, 732, 3, 70, 35, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 738, 1, 0, 0, 0, 733, 735, 5, 295, 0, 0, 734, 736, 3, 64, 32, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 1, 0, 0, 0, 737, 700, 1, 0, 0, 0, 737, 701, 1, 0, 0, 0, 737, 705, 1, 0, 0, 0, 737, 717, 1, 0, 0, 0, 737, 721, 1, 0, 0, 0, 737, 725, 1, 0, 0, 0, 737, 729, 1, 0, 0, 0, 737, 733, 1, 0, 0, 0, 738, 59, 1, 0, 0, 0, 739, 740, 5, 517, 0, 0, 740, 741, 3, 368, 184, 0, 741, 742, 5, 518, 0, 0, 742, 61, 1, 0, 0, 0, 743, 744, 5, 517, 0, 0, 744, 747, 3, 368, 184, 0, 745, 746, 5, 521, 0, 0, 746, 748, 3, 368, 184, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 5, 518, 0, 0, 750, 63, 1, 0, 0, 0, 751, 752, 5, 517, 0, 0, 752, 755, 3, 366, 183, 0, 753, 754, 5, 521, 0, 0, 754, 756, 3, 366, 183, 0, 755, 753, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 5, 518, 0, 0, 758, 65, 1, 0, 0, 0, 759, 760, 5, 508, 0, 0, 760, 761, 3, 58, 29, 0, 761, 762, 5, 507, 0, 0, 762, 67, 1, 0, 0, 0, 763, 764, 5, 508, 0, 0, 764, 765, 3, 58, 29, 0, 765, 766, 5, 521, 0, 0, 766, 767, 3, 58, 29, 0, 767, 768, 1, 0, 0, 0, 768, 769, 5, 507, 0, 0, 769, 69, 1, 0, 0, 0, 770, 771, 5, 508, 0, 0, 771, 772, 3, 52, 26, 0, 772, 779, 3, 58, 29, 0, 773, 774, 5, 521, 0, 0, 774, 775, 3, 52, 26, 0, 775, 776, 3, 58, 29, 0, 776, 778, 1, 0, 0, 0, 777, 773, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 782, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 783, 5, 507, 0, 0, 783, 799, 1, 0, 0, 0, 784, 785, 5, 517, 0, 0, 785, 786, 3, 52, 26, 0, 786, 793, 3, 58, 29, 0, 787, 788, 5, 521, 0, 0, 788, 789, 3, 52, 26, 0, 789, 790, 3, 58, 29, 0, 790, 792, 1, 0, 0, 0, 791, 787, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 796, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 797, 5, 518, 0, 0, 797, 799, 1, 0, 0, 0, 798, 770, 1, 0, 0, 0, 798, 784, 1, 0, 0, 0, 799, 71, 1, 0, 0, 0, 800, 801, 5, 64, 0, 0, 801, 803, 3, 86, 43, 0, 802, 800, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 5, 289, 0, 0, 805, 808, 5, 467, 0, 0, 806, 807, 5, 242, 0, 0, 807, 809, 5, 125, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 815, 1, 0, 0, 0, 810, 812, 5, 242, 0, 0, 811, 810, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 5, 245, 0, 0, 814, 802, 1, 0, 0, 0, 814, 811, 1, 0, 0, 0, 815, 73, 1, 0, 0, 0, 816, 817, 3, 50, 25, 0, 817, 818, 3, 58, 29, 0, 818, 821, 5, 219, 0, 0, 819, 820, 5, 151, 0, 0, 820, 822, 3, 76, 38, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 824, 1, 0, 0, 0, 823, 825, 5, 424, 0, 0, 824, 823, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 75, 1, 0, 0, 0, 826, 827, 5, 538, 0, 0, 827, 77, 1, 0, 0, 0, 828, 829, 3, 50, 25, 0, 829, 830, 5, 17, 0, 0, 830, 833, 3, 80, 40, 0, 831, 832, 5, 59, 0, 0, 832, 834, 5, 538, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 79, 1, 0, 0, 0, 835, 836, 3, 260, 130, 0, 836, 81, 1, 0, 0, 0, 837, 838, 5, 425, 0, 0, 838, 839, 5, 146, 0, 0, 839, 840, 3, 52, 26, 0, 840, 841, 5, 17, 0, 0, 841, 842, 3, 260, 130, 0, 842, 83, 1, 0, 0, 0, 843, 844, 5, 64, 0, 0, 844, 846, 3, 86, 43, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 5, 289, 0, 0, 848, 849, 5, 467, 0, 0, 849, 850, 3, 56, 28, 0, 850, 851, 5, 242, 0, 0, 851, 852, 5, 125, 0, 0, 852, 85, 1, 0, 0, 0, 853, 854, 3, 312, 156, 0, 854, 87, 1, 0, 0, 0, 855, 856, 5, 278, 0, 0, 856, 857, 5, 146, 0, 0, 857, 858, 5, 372, 0, 0, 858, 89, 1, 0, 0, 0, 859, 860, 5, 270, 0, 0, 860, 861, 5, 34, 0, 0, 861, 862, 3, 92, 46, 0, 862, 91, 1, 0, 0, 0, 863, 864, 5, 517, 0, 0, 864, 869, 3, 94, 47, 0, 865, 866, 5, 521, 0, 0, 866, 868, 3, 94, 47, 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, 872, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 872, 873, 5, 518, 0, 0, 873, 93, 1, 0, 0, 0, 874, 887, 3, 52, 26, 0, 875, 876, 5, 517, 0, 0, 876, 881, 3, 96, 48, 0, 877, 878, 5, 521, 0, 0, 878, 880, 3, 96, 48, 0, 879, 877, 1, 0, 0, 0, 880, 883, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 884, 885, 5, 518, 0, 0, 885, 887, 1, 0, 0, 0, 886, 874, 1, 0, 0, 0, 886, 875, 1, 0, 0, 0, 887, 95, 1, 0, 0, 0, 888, 891, 3, 288, 144, 0, 889, 891, 3, 362, 181, 0, 890, 888, 1, 0, 0, 0, 890, 889, 1, 0, 0, 0, 891, 97, 1, 0, 0, 0, 892, 893, 5, 203, 0, 0, 893, 902, 3, 330, 165, 0, 894, 898, 5, 517, 0, 0, 895, 897, 3, 100, 50, 0, 896, 895, 1, 0, 0, 0, 897, 900, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 901, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 901, 903, 5, 518, 0, 0, 902, 894, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 99, 1, 0, 0, 0, 904, 905, 7, 12, 0, 0, 905, 909, 7, 13, 0, 0, 906, 907, 7, 14, 0, 0, 907, 909, 7, 15, 0, 0, 908, 904, 1, 0, 0, 0, 908, 906, 1, 0, 0, 0, 909, 101, 1, 0, 0, 0, 910, 911, 5, 72, 0, 0, 911, 912, 5, 442, 0, 0, 912, 913, 3, 322, 161, 0, 913, 914, 3, 338, 169, 0, 914, 103, 1, 0, 0, 0, 915, 916, 5, 72, 0, 0, 916, 918, 5, 448, 0, 0, 917, 919, 3, 340, 170, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 923, 3, 326, 163, 0, 921, 922, 5, 59, 0, 0, 922, 924, 5, 538, 0, 0, 923, 921, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 3, 338, 169, 0, 926, 105, 1, 0, 0, 0, 927, 929, 5, 72, 0, 0, 928, 930, 5, 498, 0, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 5, 502, 0, 0, 932, 934, 3, 340, 170, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 3, 334, 167, 0, 936, 938, 3, 56, 28, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 941, 1, 0, 0, 0, 939, 940, 5, 59, 0, 0, 940, 942, 5, 538, 0, 0, 941, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 944, 5, 17, 0, 0, 944, 945, 3, 160, 80, 0, 945, 107, 1, 0, 0, 0, 946, 950, 5, 72, 0, 0, 947, 951, 5, 498, 0, 0, 948, 949, 5, 498, 0, 0, 949, 951, 5, 371, 0, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 954, 5, 153, 0, 0, 953, 955, 3, 340, 170, 0, 954, 953, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 3, 274, 137, 0, 957, 958, 5, 17, 0, 0, 958, 961, 3, 312, 156, 0, 959, 960, 5, 196, 0, 0, 960, 962, 7, 16, 0, 0, 961, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 1, 0, 0, 0, 963, 965, 3, 110, 55, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 109, 1, 0, 0, 0, 966, 967, 5, 413, 0, 0, 967, 968, 5, 464, 0, 0, 968, 974, 3, 112, 56, 0, 969, 970, 5, 521, 0, 0, 970, 971, 5, 464, 0, 0, 971, 973, 3, 112, 56, 0, 972, 969, 1, 0, 0, 0, 973, 976, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 111, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 977, 978, 5, 538, 0, 0, 978, 113, 1, 0, 0, 0, 979, 980, 5, 8, 0, 0, 980, 982, 5, 374, 0, 0, 981, 983, 3, 342, 171, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 990, 3, 330, 165, 0, 985, 991, 3, 116, 58, 0, 986, 991, 3, 118, 59, 0, 987, 991, 3, 120, 60, 0, 988, 991, 3, 122, 61, 0, 989, 991, 3, 124, 62, 0, 990, 985, 1, 0, 0, 0, 990, 986, 1, 0, 0, 0, 990, 987, 1, 0, 0, 0, 990, 988, 1, 0, 0, 0, 990, 989, 1, 0, 0, 0, 991, 115, 1, 0, 0, 0, 992, 994, 5, 312, 0, 0, 993, 995, 3, 336, 168, 0, 994, 993, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 5, 389, 0, 0, 997, 998, 3, 336, 168, 0, 998, 117, 1, 0, 0, 0, 999, 1000, 5, 341, 0, 0, 1000, 1001, 3, 344, 172, 0, 1001, 119, 1, 0, 0, 0, 1002, 1003, 5, 438, 0, 0, 1003, 1004, 5, 64, 0, 0, 1004, 1005, 3, 86, 43, 0, 1005, 1006, 5, 289, 0, 0, 1006, 1007, 5, 467, 0, 0, 1007, 1009, 3, 56, 28, 0, 1008, 1010, 3, 126, 63, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 121, 1, 0, 0, 0, 1011, 1012, 5, 116, 0, 0, 1012, 1013, 5, 64, 0, 0, 1013, 1014, 3, 86, 43, 0, 1014, 123, 1, 0, 0, 0, 1015, 1016, 5, 438, 0, 0, 1016, 1017, 5, 404, 0, 0, 1017, 1018, 3, 56, 28, 0, 1018, 125, 1, 0, 0, 0, 1019, 1020, 5, 242, 0, 0, 1020, 1021, 5, 125, 0, 0, 1021, 127, 1, 0, 0, 0, 1022, 1023, 5, 8, 0, 0, 1023, 1024, 5, 502, 0, 0, 1024, 1028, 3, 332, 166, 0, 1025, 1029, 3, 116, 58, 0, 1026, 1027, 5, 17, 0, 0, 1027, 1029, 3, 160, 80, 0, 1028, 1025, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1029, 129, 1, 0, 0, 0, 1030, 1031, 5, 8, 0, 0, 1031, 1032, 5, 448, 0, 0, 1032, 1033, 3, 324, 162, 0, 1033, 1034, 3, 118, 59, 0, 1034, 131, 1, 0, 0, 0, 1035, 1039, 5, 8, 0, 0, 1036, 1040, 5, 498, 0, 0, 1037, 1038, 5, 498, 0, 0, 1038, 1040, 5, 371, 0, 0, 1039, 1036, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1043, 5, 153, 0, 0, 1042, 1044, 3, 342, 171, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1046, 3, 276, 138, 0, 1046, 1047, 5, 17, 0, 0, 1047, 1050, 3, 312, 156, 0, 1048, 1049, 5, 196, 0, 0, 1049, 1051, 7, 16, 0, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 133, 1, 0, 0, 0, 1052, 1053, 5, 116, 0, 0, 1053, 1055, 5, 442, 0, 0, 1054, 1056, 3, 342, 171, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 3, 320, 160, 0, 1058, 135, 1, 0, 0, 0, 1059, 1061, 5, 116, 0, 0, 1060, 1062, 5, 498, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 5, 374, 0, 0, 1064, 1066, 3, 342, 171, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 3, 330, 165, 0, 1068, 137, 1, 0, 0, 0, 1069, 1070, 5, 116, 0, 0, 1070, 1072, 5, 448, 0, 0, 1071, 1073, 3, 342, 171, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1076, 3, 324, 162, 0, 1075, 1077, 7, 17, 0, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 139, 1, 0, 0, 0, 1078, 1080, 5, 116, 0, 0, 1079, 1081, 5, 498, 0, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 5, 502, 0, 0, 1083, 1085, 3, 342, 171, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 3, 332, 166, 0, 1087, 141, 1, 0, 0, 0, 1088, 1092, 5, 116, 0, 0, 1089, 1093, 5, 498, 0, 0, 1090, 1091, 5, 498, 0, 0, 1091, 1093, 5, 371, 0, 0, 1092, 1089, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1096, 5, 153, 0, 0, 1095, 1097, 3, 342, 171, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 3, 276, 138, 0, 1099, 143, 1, 0, 0, 0, 1100, 1102, 5, 132, 0, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1108, 3, 146, 73, 0, 1104, 1108, 3, 156, 78, 0, 1105, 1106, 5, 132, 0, 0, 1106, 1108, 3, 158, 79, 0, 1107, 1101, 1, 0, 0, 0, 1107, 1104, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1108, 145, 1, 0, 0, 0, 1109, 1110, 5, 177, 0, 0, 1110, 1111, 7, 18, 0, 0, 1111, 1120, 3, 330, 165, 0, 1112, 1114, 3, 148, 74, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 3, 56, 28, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1121, 3, 160, 80, 0, 1119, 1121, 3, 150, 75, 0, 1120, 1113, 1, 0, 0, 0, 1120, 1119, 1, 0, 0, 0, 1121, 147, 1, 0, 0, 0, 1122, 1123, 5, 269, 0, 0, 1123, 1124, 3, 344, 172, 0, 1124, 149, 1, 0, 0, 0, 1125, 1126, 5, 415, 0, 0, 1126, 1131, 3, 152, 76, 0, 1127, 1128, 5, 521, 0, 0, 1128, 1130, 3, 152, 76, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 151, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1135, 5, 517, 0, 0, 1135, 1140, 3, 154, 77, 0, 1136, 1137, 5, 521, 0, 0, 1137, 1139, 3, 154, 77, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1143, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1144, 5, 518, 0, 0, 1144, 153, 1, 0, 0, 0, 1145, 1148, 3, 362, 181, 0, 1146, 1148, 3, 270, 135, 0, 1147, 1145, 1, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 155, 1, 0, 0, 0, 1149, 1150, 5, 24, 0, 0, 1150, 1151, 5, 355, 0, 0, 1151, 1152, 5, 341, 0, 0, 1152, 1156, 5, 522, 0, 0, 1153, 1154, 3, 146, 73, 0, 1154, 1155, 5, 522, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1153, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 5, 122, 0, 0, 1161, 157, 1, 0, 0, 0, 1162, 1163, 5, 355, 0, 0, 1163, 1164, 5, 341, 0, 0, 1164, 1168, 5, 24, 0, 0, 1165, 1166, 3, 146, 73, 0, 1166, 1167, 5, 522, 0, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1165, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 5, 122, 0, 0, 1173, 159, 1, 0, 0, 0, 1174, 1175, 6, 80, -1, 0, 1175, 1198, 3, 162, 81, 0, 1176, 1177, 3, 164, 82, 0, 1177, 1178, 3, 160, 80, 5, 1178, 1198, 1, 0, 0, 0, 1179, 1180, 5, 517, 0, 0, 1180, 1181, 3, 160, 80, 0, 1181, 1182, 5, 518, 0, 0, 1182, 1198, 1, 0, 0, 0, 1183, 1185, 3, 172, 86, 0, 1184, 1186, 3, 232, 116, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1189, 3, 236, 118, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1198, 1, 0, 0, 0, 1190, 1192, 3, 170, 85, 0, 1191, 1193, 3, 232, 116, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1196, 3, 236, 118, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1174, 1, 0, 0, 0, 1197, 1176, 1, 0, 0, 0, 1197, 1179, 1, 0, 0, 0, 1197, 1183, 1, 0, 0, 0, 1197, 1190, 1, 0, 0, 0, 1198, 1213, 1, 0, 0, 0, 1199, 1200, 10, 3, 0, 0, 1200, 1202, 7, 19, 0, 0, 1201, 1203, 5, 5, 0, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 3, 160, 80, 0, 1205, 1207, 3, 232, 116, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1210, 3, 236, 118, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1199, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 161, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1217, 5, 415, 0, 0, 1217, 1222, 3, 260, 130, 0, 1218, 1219, 5, 521, 0, 0, 1219, 1221, 3, 260, 130, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1224, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 163, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1225, 1226, 5, 434, 0, 0, 1226, 1231, 3, 166, 83, 0, 1227, 1228, 5, 521, 0, 0, 1228, 1230, 3, 166, 83, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 165, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1246, 3, 168, 84, 0, 1235, 1236, 5, 517, 0, 0, 1236, 1241, 3, 52, 26, 0, 1237, 1238, 5, 521, 0, 0, 1238, 1240, 3, 52, 26, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1245, 5, 518, 0, 0, 1245, 1247, 1, 0, 0, 0, 1246, 1235, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1249, 5, 17, 0, 0, 1249, 1250, 5, 517, 0, 0, 1250, 1251, 3, 160, 80, 0, 1251, 1252, 5, 518, 0, 0, 1252, 167, 1, 0, 0, 0, 1253, 1254, 3, 312, 156, 0, 1254, 169, 1, 0, 0, 0, 1255, 1257, 3, 172, 86, 0, 1256, 1258, 3, 178, 89, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1261, 3, 206, 103, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 1, 0, 0, 0, 1262, 1264, 3, 208, 104, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1267, 3, 222, 111, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1270, 3, 224, 112, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1276, 1, 0, 0, 0, 1271, 1272, 3, 172, 86, 0, 1272, 1273, 3, 178, 89, 0, 1273, 1274, 3, 230, 115, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1255, 1, 0, 0, 0, 1275, 1271, 1, 0, 0, 0, 1276, 171, 1, 0, 0, 0, 1277, 1279, 5, 337, 0, 0, 1278, 1280, 3, 372, 186, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1290, 1, 0, 0, 0, 1281, 1291, 5, 528, 0, 0, 1282, 1287, 3, 174, 87, 0, 1283, 1284, 5, 521, 0, 0, 1284, 1286, 3, 174, 87, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1281, 1, 0, 0, 0, 1290, 1282, 1, 0, 0, 0, 1291, 173, 1, 0, 0, 0, 1292, 1308, 3, 176, 88, 0, 1293, 1298, 3, 260, 130, 0, 1294, 1296, 5, 17, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 3, 52, 26, 0, 1298, 1295, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1308, 1, 0, 0, 0, 1300, 1305, 3, 52, 26, 0, 1301, 1303, 5, 17, 0, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1306, 3, 260, 130, 0, 1305, 1302, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1292, 1, 0, 0, 0, 1307, 1293, 1, 0, 0, 0, 1307, 1300, 1, 0, 0, 0, 1308, 175, 1, 0, 0, 0, 1309, 1310, 3, 272, 136, 0, 1310, 1311, 5, 263, 0, 0, 1311, 1312, 3, 228, 114, 0, 1312, 1313, 5, 17, 0, 0, 1313, 1314, 3, 312, 156, 0, 1314, 1322, 1, 0, 0, 0, 1315, 1316, 3, 272, 136, 0, 1316, 1317, 5, 263, 0, 0, 1317, 1318, 3, 304, 152, 0, 1318, 1319, 5, 17, 0, 0, 1319, 1320, 3, 312, 156, 0, 1320, 1322, 1, 0, 0, 0, 1321, 1309, 1, 0, 0, 0, 1321, 1315, 1, 0, 0, 0, 1322, 177, 1, 0, 0, 0, 1323, 1324, 5, 151, 0, 0, 1324, 1325, 3, 180, 90, 0, 1325, 179, 1, 0, 0, 0, 1326, 1327, 6, 90, -1, 0, 1327, 1332, 3, 182, 91, 0, 1328, 1329, 5, 521, 0, 0, 1329, 1331, 3, 182, 91, 0, 1330, 1328, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1338, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 3, 190, 95, 0, 1336, 1338, 3, 192, 96, 0, 1337, 1326, 1, 0, 0, 0, 1337, 1335, 1, 0, 0, 0, 1337, 1336, 1, 0, 0, 0, 1338, 1360, 1, 0, 0, 0, 1339, 1340, 10, 3, 0, 0, 1340, 1341, 5, 73, 0, 0, 1341, 1342, 5, 185, 0, 0, 1342, 1359, 3, 180, 90, 4, 1343, 1345, 10, 4, 0, 0, 1344, 1346, 5, 234, 0, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1349, 7, 20, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1351, 1, 0, 0, 0, 1350, 1352, 5, 262, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 5, 185, 0, 0, 1354, 1356, 3, 180, 90, 0, 1355, 1357, 3, 204, 102, 0, 1356, 1355, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1359, 1, 0, 0, 0, 1358, 1339, 1, 0, 0, 0, 1358, 1343, 1, 0, 0, 0, 1359, 1362, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 181, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1365, 3, 184, 92, 0, 1364, 1366, 3, 302, 151, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 183, 1, 0, 0, 0, 1367, 1369, 5, 374, 0, 0, 1368, 1367, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1372, 3, 330, 165, 0, 1371, 1373, 3, 186, 93, 0, 1372, 1371, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1397, 1, 0, 0, 0, 1374, 1376, 3, 332, 166, 0, 1375, 1377, 3, 186, 93, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1397, 1, 0, 0, 0, 1378, 1379, 5, 199, 0, 0, 1379, 1380, 5, 374, 0, 0, 1380, 1381, 5, 517, 0, 0, 1381, 1382, 3, 270, 135, 0, 1382, 1383, 5, 518, 0, 0, 1383, 1397, 1, 0, 0, 0, 1384, 1386, 5, 199, 0, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 5, 517, 0, 0, 1388, 1389, 3, 160, 80, 0, 1389, 1390, 5, 518, 0, 0, 1390, 1397, 1, 0, 0, 0, 1391, 1392, 5, 406, 0, 0, 1392, 1393, 5, 517, 0, 0, 1393, 1394, 3, 260, 130, 0, 1394, 1395, 5, 518, 0, 0, 1395, 1397, 1, 0, 0, 0, 1396, 1368, 1, 0, 0, 0, 1396, 1374, 1, 0, 0, 0, 1396, 1378, 1, 0, 0, 0, 1396, 1385, 1, 0, 0, 0, 1396, 1391, 1, 0, 0, 0, 1397, 185, 1, 0, 0, 0, 1398, 1399, 5, 146, 0, 0, 1399, 1400, 5, 372, 0, 0, 1400, 1401, 5, 17, 0, 0, 1401, 1402, 5, 250, 0, 0, 1402, 1403, 3, 188, 94, 0, 1403, 187, 1, 0, 0, 0, 1404, 1405, 3, 260, 130, 0, 1405, 189, 1, 0, 0, 0, 1406, 1407, 5, 517, 0, 0, 1407, 1408, 3, 150, 75, 0, 1408, 1409, 5, 518, 0, 0, 1409, 1410, 3, 302, 151, 0, 1410, 191, 1, 0, 0, 0, 1411, 1412, 5, 374, 0, 0, 1412, 1413, 5, 517, 0, 0, 1413, 1414, 3, 194, 97, 0, 1414, 1415, 5, 518, 0, 0, 1415, 193, 1, 0, 0, 0, 1416, 1417, 3, 196, 98, 0, 1417, 1418, 5, 517, 0, 0, 1418, 1423, 3, 198, 99, 0, 1419, 1420, 5, 521, 0, 0, 1420, 1422, 3, 198, 99, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1426, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1427, 5, 518, 0, 0, 1427, 195, 1, 0, 0, 0, 1428, 1429, 7, 21, 0, 0, 1429, 197, 1, 0, 0, 0, 1430, 1431, 5, 374, 0, 0, 1431, 1446, 3, 220, 110, 0, 1432, 1446, 3, 202, 101, 0, 1433, 1446, 3, 290, 145, 0, 1434, 1435, 5, 447, 0, 0, 1435, 1436, 5, 537, 0, 0, 1436, 1437, 5, 374, 0, 0, 1437, 1446, 3, 220, 110, 0, 1438, 1439, 5, 499, 0, 0, 1439, 1440, 5, 537, 0, 0, 1440, 1446, 3, 202, 101, 0, 1441, 1442, 3, 200, 100, 0, 1442, 1443, 5, 537, 0, 0, 1443, 1444, 3, 290, 145, 0, 1444, 1446, 1, 0, 0, 0, 1445, 1430, 1, 0, 0, 0, 1445, 1432, 1, 0, 0, 0, 1445, 1433, 1, 0, 0, 0, 1445, 1434, 1, 0, 0, 0, 1445, 1438, 1, 0, 0, 0, 1445, 1441, 1, 0, 0, 0, 1446, 199, 1, 0, 0, 0, 1447, 1448, 7, 22, 0, 0, 1448, 201, 1, 0, 0, 0, 1449, 1450, 5, 452, 0, 0, 1450, 1451, 5, 517, 0, 0, 1451, 1452, 3, 52, 26, 0, 1452, 1453, 5, 518, 0, 0, 1453, 203, 1, 0, 0, 0, 1454, 1455, 5, 254, 0, 0, 1455, 1459, 3, 262, 131, 0, 1456, 1457, 5, 413, 0, 0, 1457, 1459, 3, 56, 28, 0, 1458, 1454, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1459, 205, 1, 0, 0, 0, 1460, 1461, 5, 431, 0, 0, 1461, 1462, 3, 262, 131, 0, 1462, 207, 1, 0, 0, 0, 1463, 1464, 5, 159, 0, 0, 1464, 1465, 5, 34, 0, 0, 1465, 1470, 3, 210, 105, 0, 1466, 1467, 5, 521, 0, 0, 1467, 1469, 3, 210, 105, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1472, 1, 0, 0, 0, 1470, 1468, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 209, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1473, 1514, 3, 52, 26, 0, 1474, 1514, 3, 216, 108, 0, 1475, 1476, 5, 517, 0, 0, 1476, 1514, 5, 518, 0, 0, 1477, 1478, 5, 517, 0, 0, 1478, 1483, 3, 260, 130, 0, 1479, 1480, 5, 521, 0, 0, 1480, 1482, 3, 260, 130, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1485, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1486, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1487, 5, 518, 0, 0, 1487, 1514, 1, 0, 0, 0, 1488, 1489, 3, 214, 107, 0, 1489, 1490, 5, 517, 0, 0, 1490, 1495, 3, 260, 130, 0, 1491, 1492, 5, 521, 0, 0, 1492, 1494, 3, 260, 130, 0, 1493, 1491, 1, 0, 0, 0, 1494, 1497, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1498, 1, 0, 0, 0, 1497, 1495, 1, 0, 0, 0, 1498, 1499, 5, 518, 0, 0, 1499, 1514, 1, 0, 0, 0, 1500, 1501, 3, 212, 106, 0, 1501, 1502, 5, 517, 0, 0, 1502, 1507, 3, 210, 105, 0, 1503, 1504, 5, 521, 0, 0, 1504, 1506, 3, 210, 105, 0, 1505, 1503, 1, 0, 0, 0, 1506, 1509, 1, 0, 0, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1510, 1511, 5, 518, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1514, 3, 260, 130, 0, 1513, 1473, 1, 0, 0, 0, 1513, 1474, 1, 0, 0, 0, 1513, 1475, 1, 0, 0, 0, 1513, 1477, 1, 0, 0, 0, 1513, 1488, 1, 0, 0, 0, 1513, 1500, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 211, 1, 0, 0, 0, 1515, 1516, 5, 160, 0, 0, 1516, 1517, 5, 494, 0, 0, 1517, 213, 1, 0, 0, 0, 1518, 1519, 7, 23, 0, 0, 1519, 215, 1, 0, 0, 0, 1520, 1521, 3, 218, 109, 0, 1521, 1522, 5, 517, 0, 0, 1522, 1523, 3, 220, 110, 0, 1523, 1524, 5, 521, 0, 0, 1524, 1525, 3, 290, 145, 0, 1525, 1526, 5, 518, 0, 0, 1526, 217, 1, 0, 0, 0, 1527, 1528, 7, 24, 0, 0, 1528, 219, 1, 0, 0, 0, 1529, 1530, 3, 336, 168, 0, 1530, 221, 1, 0, 0, 0, 1531, 1532, 5, 163, 0, 0, 1532, 1533, 3, 262, 131, 0, 1533, 223, 1, 0, 0, 0, 1534, 1535, 5, 433, 0, 0, 1535, 1540, 3, 226, 113, 0, 1536, 1537, 5, 521, 0, 0, 1537, 1539, 3, 226, 113, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1542, 1, 0, 0, 0, 1540, 1538, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 225, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1543, 1544, 3, 304, 152, 0, 1544, 1545, 5, 17, 0, 0, 1545, 1546, 3, 228, 114, 0, 1546, 227, 1, 0, 0, 0, 1547, 1549, 3, 304, 152, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 5, 517, 0, 0, 1551, 1553, 3, 238, 119, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 1, 0, 0, 0, 1554, 1556, 3, 232, 116, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1559, 3, 254, 127, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 5, 518, 0, 0, 1561, 229, 1, 0, 0, 0, 1562, 1563, 5, 214, 0, 0, 1563, 1565, 5, 517, 0, 0, 1564, 1566, 3, 238, 119, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1569, 3, 232, 116, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1572, 3, 242, 121, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1575, 3, 248, 124, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1577, 1, 0, 0, 0, 1576, 1578, 3, 250, 125, 0, 1577, 1576, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1581, 3, 244, 122, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 3, 252, 126, 0, 1583, 1588, 5, 518, 0, 0, 1584, 1586, 5, 17, 0, 0, 1585, 1584, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1589, 3, 312, 156, 0, 1588, 1585, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 231, 1, 0, 0, 0, 1590, 1591, 5, 259, 0, 0, 1591, 1592, 5, 34, 0, 0, 1592, 1597, 3, 234, 117, 0, 1593, 1594, 5, 521, 0, 0, 1594, 1596, 3, 234, 117, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1599, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 233, 1, 0, 0, 0, 1599, 1597, 1, 0, 0, 0, 1600, 1602, 3, 52, 26, 0, 1601, 1603, 7, 25, 0, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1605, 5, 477, 0, 0, 1605, 1607, 7, 26, 0, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 235, 1, 0, 0, 0, 1608, 1611, 5, 205, 0, 0, 1609, 1612, 5, 5, 0, 0, 1610, 1612, 3, 260, 130, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1610, 1, 0, 0, 0, 1612, 237, 1, 0, 0, 0, 1613, 1614, 5, 269, 0, 0, 1614, 1617, 5, 34, 0, 0, 1615, 1618, 3, 52, 26, 0, 1616, 1618, 3, 272, 136, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1616, 1, 0, 0, 0, 1618, 1626, 1, 0, 0, 0, 1619, 1622, 5, 521, 0, 0, 1620, 1623, 3, 52, 26, 0, 1621, 1623, 3, 272, 136, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1625, 1, 0, 0, 0, 1624, 1619, 1, 0, 0, 0, 1625, 1628, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 239, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1646, 5, 528, 0, 0, 1630, 1646, 5, 531, 0, 0, 1631, 1646, 5, 536, 0, 0, 1632, 1633, 5, 519, 0, 0, 1633, 1634, 5, 539, 0, 0, 1634, 1635, 5, 521, 0, 0, 1635, 1636, 5, 539, 0, 0, 1636, 1646, 5, 520, 0, 0, 1637, 1638, 5, 519, 0, 0, 1638, 1639, 5, 539, 0, 0, 1639, 1640, 5, 521, 0, 0, 1640, 1646, 5, 520, 0, 0, 1641, 1642, 5, 519, 0, 0, 1642, 1643, 5, 521, 0, 0, 1643, 1644, 5, 539, 0, 0, 1644, 1646, 5, 520, 0, 0, 1645, 1629, 1, 0, 0, 0, 1645, 1630, 1, 0, 0, 0, 1645, 1631, 1, 0, 0, 0, 1645, 1632, 1, 0, 0, 0, 1645, 1637, 1, 0, 0, 0, 1645, 1641, 1, 0, 0, 0, 1646, 241, 1, 0, 0, 0, 1647, 1648, 5, 216, 0, 0, 1648, 1653, 3, 174, 87, 0, 1649, 1650, 5, 521, 0, 0, 1650, 1652, 3, 174, 87, 0, 1651, 1649, 1, 0, 0, 0, 1652, 1655, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 243, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1656, 1657, 5, 272, 0, 0, 1657, 1659, 5, 517, 0, 0, 1658, 1660, 3, 246, 123, 0, 1659, 1658, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 5, 518, 0, 0, 1664, 1666, 3, 258, 129, 0, 1665, 1664, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 245, 1, 0, 0, 0, 1667, 1669, 3, 314, 157, 0, 1668, 1670, 3, 240, 120, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 247, 1, 0, 0, 0, 1671, 1672, 5, 5, 0, 0, 1672, 1673, 5, 323, 0, 0, 1673, 1674, 5, 273, 0, 0, 1674, 1680, 5, 211, 0, 0, 1675, 1676, 5, 255, 0, 0, 1676, 1677, 5, 322, 0, 0, 1677, 1678, 5, 273, 0, 0, 1678, 1680, 5, 211, 0, 0, 1679, 1671, 1, 0, 0, 0, 1679, 1675, 1, 0, 0, 0, 1680, 249, 1, 0, 0, 0, 1681, 1682, 5, 439, 0, 0, 1682, 1683, 5, 211, 0, 0, 1683, 1684, 5, 344, 0, 0, 1684, 1685, 5, 479, 0, 0, 1685, 1686, 5, 468, 0, 0, 1686, 1706, 5, 322, 0, 0, 1687, 1688, 5, 439, 0, 0, 1688, 1689, 5, 211, 0, 0, 1689, 1690, 5, 344, 0, 0, 1690, 1691, 5, 389, 0, 0, 1691, 1692, 5, 238, 0, 0, 1692, 1706, 5, 322, 0, 0, 1693, 1694, 5, 439, 0, 0, 1694, 1695, 5, 211, 0, 0, 1695, 1696, 5, 344, 0, 0, 1696, 1697, 5, 389, 0, 0, 1697, 1698, 5, 468, 0, 0, 1698, 1706, 3, 314, 157, 0, 1699, 1700, 5, 439, 0, 0, 1700, 1701, 5, 211, 0, 0, 1701, 1702, 5, 344, 0, 0, 1702, 1703, 5, 389, 0, 0, 1703, 1704, 5, 458, 0, 0, 1704, 1706, 3, 314, 157, 0, 1705, 1681, 1, 0, 0, 0, 1705, 1687, 1, 0, 0, 0, 1705, 1693, 1, 0, 0, 0, 1705, 1699, 1, 0, 0, 0, 1706, 251, 1, 0, 0, 0, 1707, 1708, 5, 105, 0, 0, 1708, 1713, 3, 174, 87, 0, 1709, 1710, 5, 521, 0, 0, 1710, 1712, 3, 174, 87, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1715, 1, 0, 0, 0, 1713, 1711, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 253, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1717, 5, 293, 0, 0, 1717, 1718, 5, 27, 0, 0, 1718, 1719, 3, 290, 145, 0, 1719, 1720, 3, 256, 128, 0, 1720, 1726, 1, 0, 0, 0, 1721, 1722, 5, 323, 0, 0, 1722, 1723, 5, 27, 0, 0, 1723, 1724, 5, 539, 0, 0, 1724, 1726, 3, 256, 128, 0, 1725, 1716, 1, 0, 0, 0, 1725, 1721, 1, 0, 0, 0, 1726, 255, 1, 0, 0, 0, 1727, 1728, 5, 481, 0, 0, 1728, 1729, 5, 10, 0, 0, 1729, 1730, 5, 76, 0, 0, 1730, 1731, 5, 322, 0, 0, 1731, 257, 1, 0, 0, 0, 1732, 1733, 5, 435, 0, 0, 1733, 1734, 3, 290, 145, 0, 1734, 259, 1, 0, 0, 0, 1735, 1736, 3, 262, 131, 0, 1736, 261, 1, 0, 0, 0, 1737, 1738, 6, 131, -1, 0, 1738, 1739, 5, 242, 0, 0, 1739, 1750, 3, 262, 131, 6, 1740, 1741, 5, 133, 0, 0, 1741, 1742, 5, 517, 0, 0, 1742, 1743, 3, 160, 80, 0, 1743, 1744, 5, 518, 0, 0, 1744, 1750, 1, 0, 0, 0, 1745, 1747, 3, 268, 134, 0, 1746, 1748, 3, 264, 132, 0, 1747, 1746, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1737, 1, 0, 0, 0, 1749, 1740, 1, 0, 0, 0, 1749, 1745, 1, 0, 0, 0, 1750, 1765, 1, 0, 0, 0, 1751, 1752, 10, 3, 0, 0, 1752, 1753, 5, 10, 0, 0, 1753, 1764, 3, 262, 131, 4, 1754, 1755, 10, 2, 0, 0, 1755, 1756, 5, 258, 0, 0, 1756, 1764, 3, 262, 131, 3, 1757, 1758, 10, 1, 0, 0, 1758, 1760, 5, 184, 0, 0, 1759, 1761, 5, 242, 0, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1764, 7, 27, 0, 0, 1763, 1751, 1, 0, 0, 0, 1763, 1754, 1, 0, 0, 0, 1763, 1757, 1, 0, 0, 0, 1764, 1767, 1, 0, 0, 0, 1765, 1763, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 263, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1768, 1770, 5, 242, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 5, 27, 0, 0, 1772, 1774, 7, 28, 0, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 3, 268, 134, 0, 1776, 1777, 5, 10, 0, 0, 1777, 1778, 3, 268, 134, 0, 1778, 1843, 1, 0, 0, 0, 1779, 1781, 5, 242, 0, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 5, 170, 0, 0, 1783, 1784, 5, 517, 0, 0, 1784, 1789, 3, 260, 130, 0, 1785, 1786, 5, 521, 0, 0, 1786, 1788, 3, 260, 130, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1791, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1792, 1793, 5, 518, 0, 0, 1793, 1843, 1, 0, 0, 0, 1794, 1796, 5, 242, 0, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 5, 170, 0, 0, 1798, 1799, 5, 517, 0, 0, 1799, 1800, 3, 160, 80, 0, 1800, 1801, 5, 518, 0, 0, 1801, 1843, 1, 0, 0, 0, 1802, 1803, 5, 133, 0, 0, 1803, 1804, 5, 517, 0, 0, 1804, 1805, 3, 160, 80, 0, 1805, 1806, 5, 518, 0, 0, 1806, 1843, 1, 0, 0, 0, 1807, 1809, 5, 242, 0, 0, 1808, 1807, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 5, 319, 0, 0, 1811, 1843, 3, 268, 134, 0, 1812, 1843, 3, 266, 133, 0, 1813, 1815, 5, 184, 0, 0, 1814, 1816, 5, 242, 0, 0, 1815, 1814, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1843, 7, 27, 0, 0, 1818, 1820, 5, 184, 0, 0, 1819, 1821, 5, 242, 0, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 5, 113, 0, 0, 1823, 1824, 5, 151, 0, 0, 1824, 1843, 3, 268, 134, 0, 1825, 1827, 5, 242, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 5, 343, 0, 0, 1829, 1830, 5, 389, 0, 0, 1830, 1833, 3, 268, 134, 0, 1831, 1832, 5, 127, 0, 0, 1832, 1834, 3, 366, 183, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1843, 1, 0, 0, 0, 1835, 1836, 5, 184, 0, 0, 1836, 1840, 5, 186, 0, 0, 1837, 1841, 5, 414, 0, 0, 1838, 1841, 5, 13, 0, 0, 1839, 1841, 3, 312, 156, 0, 1840, 1837, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1769, 1, 0, 0, 0, 1842, 1780, 1, 0, 0, 0, 1842, 1795, 1, 0, 0, 0, 1842, 1802, 1, 0, 0, 0, 1842, 1808, 1, 0, 0, 0, 1842, 1812, 1, 0, 0, 0, 1842, 1813, 1, 0, 0, 0, 1842, 1818, 1, 0, 0, 0, 1842, 1826, 1, 0, 0, 0, 1842, 1835, 1, 0, 0, 0, 1843, 265, 1, 0, 0, 0, 1844, 1846, 5, 242, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 5, 203, 0, 0, 1848, 1862, 7, 29, 0, 0, 1849, 1850, 5, 517, 0, 0, 1850, 1863, 5, 518, 0, 0, 1851, 1852, 5, 517, 0, 0, 1852, 1857, 3, 260, 130, 0, 1853, 1854, 5, 521, 0, 0, 1854, 1856, 3, 260, 130, 0, 1855, 1853, 1, 0, 0, 0, 1856, 1859, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1860, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1861, 5, 518, 0, 0, 1861, 1863, 1, 0, 0, 0, 1862, 1849, 1, 0, 0, 0, 1862, 1851, 1, 0, 0, 0, 1863, 1874, 1, 0, 0, 0, 1864, 1866, 5, 242, 0, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 5, 203, 0, 0, 1868, 1871, 3, 268, 134, 0, 1869, 1870, 5, 127, 0, 0, 1870, 1872, 3, 366, 183, 0, 1871, 1869, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1874, 1, 0, 0, 0, 1873, 1845, 1, 0, 0, 0, 1873, 1865, 1, 0, 0, 0, 1874, 267, 1, 0, 0, 0, 1875, 1876, 6, 134, -1, 0, 1876, 1880, 3, 272, 136, 0, 1877, 1878, 7, 30, 0, 0, 1878, 1880, 3, 268, 134, 7, 1879, 1875, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 1902, 1, 0, 0, 0, 1881, 1882, 10, 6, 0, 0, 1882, 1883, 7, 31, 0, 0, 1883, 1901, 3, 268, 134, 7, 1884, 1885, 10, 5, 0, 0, 1885, 1886, 7, 32, 0, 0, 1886, 1901, 3, 268, 134, 6, 1887, 1888, 10, 4, 0, 0, 1888, 1889, 5, 512, 0, 0, 1889, 1901, 3, 268, 134, 5, 1890, 1891, 10, 3, 0, 0, 1891, 1892, 5, 513, 0, 0, 1892, 1901, 3, 268, 134, 4, 1893, 1894, 10, 2, 0, 0, 1894, 1895, 5, 511, 0, 0, 1895, 1901, 3, 268, 134, 3, 1896, 1897, 10, 1, 0, 0, 1897, 1898, 3, 354, 177, 0, 1898, 1899, 3, 268, 134, 2, 1899, 1901, 1, 0, 0, 0, 1900, 1881, 1, 0, 0, 0, 1900, 1884, 1, 0, 0, 0, 1900, 1887, 1, 0, 0, 0, 1900, 1890, 1, 0, 0, 0, 1900, 1893, 1, 0, 0, 0, 1900, 1896, 1, 0, 0, 0, 1901, 1904, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 269, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1905, 1925, 3, 380, 190, 0, 1906, 1925, 3, 278, 139, 0, 1907, 1908, 3, 280, 140, 0, 1908, 1920, 5, 517, 0, 0, 1909, 1911, 3, 372, 186, 0, 1910, 1909, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1917, 3, 282, 141, 0, 1913, 1914, 5, 521, 0, 0, 1914, 1916, 3, 282, 141, 0, 1915, 1913, 1, 0, 0, 0, 1916, 1919, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1921, 1, 0, 0, 0, 1919, 1917, 1, 0, 0, 0, 1920, 1910, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 5, 518, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1905, 1, 0, 0, 0, 1924, 1906, 1, 0, 0, 0, 1924, 1907, 1, 0, 0, 0, 1925, 271, 1, 0, 0, 0, 1926, 1927, 6, 136, -1, 0, 1927, 1929, 5, 40, 0, 0, 1928, 1930, 3, 318, 159, 0, 1929, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1934, 5, 120, 0, 0, 1934, 1936, 3, 260, 130, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1938, 5, 122, 0, 0, 1938, 2002, 1, 0, 0, 0, 1939, 1940, 5, 40, 0, 0, 1940, 1942, 3, 260, 130, 0, 1941, 1943, 3, 318, 159, 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, 1948, 1, 0, 0, 0, 1946, 1947, 5, 120, 0, 0, 1947, 1949, 3, 260, 130, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 5, 122, 0, 0, 1951, 2002, 1, 0, 0, 0, 1952, 1953, 5, 41, 0, 0, 1953, 1954, 5, 517, 0, 0, 1954, 1955, 3, 260, 130, 0, 1955, 1956, 5, 17, 0, 0, 1956, 1957, 3, 58, 29, 0, 1957, 1958, 5, 518, 0, 0, 1958, 2002, 1, 0, 0, 0, 1959, 1960, 5, 458, 0, 0, 1960, 1961, 5, 517, 0, 0, 1961, 1964, 3, 260, 130, 0, 1962, 1963, 5, 462, 0, 0, 1963, 1965, 5, 477, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 5, 518, 0, 0, 1967, 2002, 1, 0, 0, 0, 1968, 1969, 5, 468, 0, 0, 1969, 1970, 5, 517, 0, 0, 1970, 1973, 3, 260, 130, 0, 1971, 1972, 5, 462, 0, 0, 1972, 1974, 5, 477, 0, 0, 1973, 1971, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 5, 518, 0, 0, 1976, 2002, 1, 0, 0, 0, 1977, 1978, 5, 282, 0, 0, 1978, 1979, 5, 517, 0, 0, 1979, 1980, 3, 268, 134, 0, 1980, 1981, 5, 170, 0, 0, 1981, 1982, 3, 268, 134, 0, 1982, 1983, 5, 518, 0, 0, 1983, 2002, 1, 0, 0, 0, 1984, 2002, 3, 362, 181, 0, 1985, 2002, 5, 528, 0, 0, 1986, 1987, 3, 336, 168, 0, 1987, 1988, 5, 514, 0, 0, 1988, 1989, 5, 528, 0, 0, 1989, 2002, 1, 0, 0, 0, 1990, 1991, 5, 517, 0, 0, 1991, 1992, 3, 160, 80, 0, 1992, 1993, 5, 518, 0, 0, 1993, 2002, 1, 0, 0, 0, 1994, 2002, 3, 270, 135, 0, 1995, 2002, 3, 54, 27, 0, 1996, 2002, 3, 284, 142, 0, 1997, 1998, 5, 517, 0, 0, 1998, 1999, 3, 260, 130, 0, 1999, 2000, 5, 518, 0, 0, 2000, 2002, 1, 0, 0, 0, 2001, 1926, 1, 0, 0, 0, 2001, 1939, 1, 0, 0, 0, 2001, 1952, 1, 0, 0, 0, 2001, 1959, 1, 0, 0, 0, 2001, 1968, 1, 0, 0, 0, 2001, 1977, 1, 0, 0, 0, 2001, 1984, 1, 0, 0, 0, 2001, 1985, 1, 0, 0, 0, 2001, 1986, 1, 0, 0, 0, 2001, 1990, 1, 0, 0, 0, 2001, 1994, 1, 0, 0, 0, 2001, 1995, 1, 0, 0, 0, 2001, 1996, 1, 0, 0, 0, 2001, 1997, 1, 0, 0, 0, 2002, 2010, 1, 0, 0, 0, 2003, 2004, 10, 4, 0, 0, 2004, 2005, 5, 515, 0, 0, 2005, 2006, 3, 268, 134, 0, 2006, 2007, 5, 516, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2003, 1, 0, 0, 0, 2009, 2012, 1, 0, 0, 0, 2010, 2008, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 273, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2013, 2014, 3, 336, 168, 0, 2014, 275, 1, 0, 0, 0, 2015, 2020, 3, 384, 192, 0, 2016, 2020, 3, 380, 190, 0, 2017, 2020, 3, 382, 191, 0, 2018, 2020, 3, 336, 168, 0, 2019, 2015, 1, 0, 0, 0, 2019, 2016, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2019, 2018, 1, 0, 0, 0, 2020, 277, 1, 0, 0, 0, 2021, 2022, 3, 382, 191, 0, 2022, 2023, 5, 538, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2026, 3, 290, 145, 0, 2025, 2021, 1, 0, 0, 0, 2025, 2024, 1, 0, 0, 0, 2026, 279, 1, 0, 0, 0, 2027, 2030, 3, 384, 192, 0, 2028, 2030, 3, 336, 168, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, 1, 0, 0, 0, 2030, 281, 1, 0, 0, 0, 2031, 2036, 3, 378, 189, 0, 2032, 2036, 3, 376, 188, 0, 2033, 2036, 3, 374, 187, 0, 2034, 2036, 3, 260, 130, 0, 2035, 2031, 1, 0, 0, 0, 2035, 2032, 1, 0, 0, 0, 2035, 2033, 1, 0, 0, 0, 2035, 2034, 1, 0, 0, 0, 2036, 283, 1, 0, 0, 0, 2037, 2038, 3, 336, 168, 0, 2038, 285, 1, 0, 0, 0, 2039, 2040, 3, 312, 156, 0, 2040, 287, 1, 0, 0, 0, 2041, 2044, 3, 312, 156, 0, 2042, 2044, 3, 284, 142, 0, 2043, 2041, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 289, 1, 0, 0, 0, 2045, 2048, 5, 182, 0, 0, 2046, 2049, 3, 292, 146, 0, 2047, 2049, 3, 296, 148, 0, 2048, 2046, 1, 0, 0, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 291, 1, 0, 0, 0, 2050, 2052, 3, 294, 147, 0, 2051, 2053, 3, 298, 149, 0, 2052, 2051, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 293, 1, 0, 0, 0, 2054, 2055, 3, 300, 150, 0, 2055, 2056, 3, 376, 188, 0, 2056, 2058, 1, 0, 0, 0, 2057, 2054, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 295, 1, 0, 0, 0, 2061, 2064, 3, 298, 149, 0, 2062, 2065, 3, 294, 147, 0, 2063, 2065, 3, 298, 149, 0, 2064, 2062, 1, 0, 0, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 297, 1, 0, 0, 0, 2066, 2067, 3, 300, 150, 0, 2067, 2068, 3, 376, 188, 0, 2068, 2069, 5, 389, 0, 0, 2069, 2070, 3, 376, 188, 0, 2070, 299, 1, 0, 0, 0, 2071, 2073, 7, 33, 0, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2077, 7, 34, 0, 0, 2075, 2077, 5, 538, 0, 0, 2076, 2072, 1, 0, 0, 0, 2076, 2075, 1, 0, 0, 0, 2077, 301, 1, 0, 0, 0, 2078, 2080, 5, 17, 0, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2083, 3, 312, 156, 0, 2082, 2084, 3, 308, 154, 0, 2083, 2082, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 303, 1, 0, 0, 0, 2085, 2086, 3, 312, 156, 0, 2086, 2087, 3, 306, 153, 0, 2087, 305, 1, 0, 0, 0, 2088, 2089, 5, 222, 0, 0, 2089, 2091, 3, 312, 156, 0, 2090, 2088, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2096, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2090, 1, 0, 0, 0, 2095, 2094, 1, 0, 0, 0, 2096, 307, 1, 0, 0, 0, 2097, 2098, 5, 517, 0, 0, 2098, 2099, 3, 310, 155, 0, 2099, 2100, 5, 518, 0, 0, 2100, 309, 1, 0, 0, 0, 2101, 2106, 3, 312, 156, 0, 2102, 2103, 5, 521, 0, 0, 2103, 2105, 3, 312, 156, 0, 2104, 2102, 1, 0, 0, 0, 2105, 2108, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 311, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2109, 2113, 3, 314, 157, 0, 2110, 2113, 3, 316, 158, 0, 2111, 2113, 3, 386, 193, 0, 2112, 2109, 1, 0, 0, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2111, 1, 0, 0, 0, 2113, 313, 1, 0, 0, 0, 2114, 2115, 7, 35, 0, 0, 2115, 315, 1, 0, 0, 0, 2116, 2117, 5, 538, 0, 0, 2117, 317, 1, 0, 0, 0, 2118, 2119, 5, 429, 0, 0, 2119, 2120, 3, 260, 130, 0, 2120, 2121, 5, 377, 0, 0, 2121, 2122, 3, 260, 130, 0, 2122, 319, 1, 0, 0, 0, 2123, 2124, 3, 312, 156, 0, 2124, 321, 1, 0, 0, 0, 2125, 2126, 3, 312, 156, 0, 2126, 323, 1, 0, 0, 0, 2127, 2130, 3, 312, 156, 0, 2128, 2129, 5, 514, 0, 0, 2129, 2131, 3, 312, 156, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 325, 1, 0, 0, 0, 2132, 2135, 3, 312, 156, 0, 2133, 2134, 5, 514, 0, 0, 2134, 2136, 3, 312, 156, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 327, 1, 0, 0, 0, 2137, 2140, 3, 312, 156, 0, 2138, 2139, 5, 514, 0, 0, 2139, 2141, 3, 312, 156, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2150, 1, 0, 0, 0, 2142, 2143, 3, 312, 156, 0, 2143, 2144, 5, 514, 0, 0, 2144, 2147, 3, 312, 156, 0, 2145, 2146, 5, 514, 0, 0, 2146, 2148, 3, 312, 156, 0, 2147, 2145, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2137, 1, 0, 0, 0, 2149, 2142, 1, 0, 0, 0, 2150, 329, 1, 0, 0, 0, 2151, 2154, 3, 312, 156, 0, 2152, 2153, 5, 514, 0, 0, 2153, 2155, 3, 312, 156, 0, 2154, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2164, 1, 0, 0, 0, 2156, 2157, 3, 312, 156, 0, 2157, 2158, 5, 514, 0, 0, 2158, 2161, 3, 312, 156, 0, 2159, 2160, 5, 514, 0, 0, 2160, 2162, 3, 312, 156, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2151, 1, 0, 0, 0, 2163, 2156, 1, 0, 0, 0, 2164, 331, 1, 0, 0, 0, 2165, 2168, 3, 312, 156, 0, 2166, 2167, 5, 514, 0, 0, 2167, 2169, 3, 312, 156, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2178, 1, 0, 0, 0, 2170, 2171, 3, 312, 156, 0, 2171, 2172, 5, 514, 0, 0, 2172, 2175, 3, 312, 156, 0, 2173, 2174, 5, 514, 0, 0, 2174, 2176, 3, 312, 156, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 1, 0, 0, 0, 2177, 2165, 1, 0, 0, 0, 2177, 2170, 1, 0, 0, 0, 2178, 333, 1, 0, 0, 0, 2179, 2182, 3, 312, 156, 0, 2180, 2181, 5, 514, 0, 0, 2181, 2183, 3, 312, 156, 0, 2182, 2180, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2192, 1, 0, 0, 0, 2184, 2185, 3, 312, 156, 0, 2185, 2186, 5, 514, 0, 0, 2186, 2189, 3, 312, 156, 0, 2187, 2188, 5, 514, 0, 0, 2188, 2190, 3, 312, 156, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 1, 0, 0, 0, 2191, 2179, 1, 0, 0, 0, 2191, 2184, 1, 0, 0, 0, 2192, 335, 1, 0, 0, 0, 2193, 2198, 3, 312, 156, 0, 2194, 2195, 5, 514, 0, 0, 2195, 2197, 3, 312, 156, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2199, 337, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2201, 2202, 5, 434, 0, 0, 2202, 2203, 3, 344, 172, 0, 2203, 339, 1, 0, 0, 0, 2204, 2205, 5, 167, 0, 0, 2205, 2206, 5, 242, 0, 0, 2206, 2207, 5, 133, 0, 0, 2207, 341, 1, 0, 0, 0, 2208, 2209, 5, 167, 0, 0, 2209, 2210, 5, 133, 0, 0, 2210, 343, 1, 0, 0, 0, 2211, 2212, 5, 517, 0, 0, 2212, 2217, 3, 346, 173, 0, 2213, 2214, 5, 521, 0, 0, 2214, 2216, 3, 346, 173, 0, 2215, 2213, 1, 0, 0, 0, 2216, 2219, 1, 0, 0, 0, 2217, 2215, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2220, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2221, 5, 518, 0, 0, 2221, 345, 1, 0, 0, 0, 2222, 2227, 3, 348, 174, 0, 2223, 2225, 5, 506, 0, 0, 2224, 2223, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 3, 350, 175, 0, 2227, 2224, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 347, 1, 0, 0, 0, 2229, 2233, 3, 312, 156, 0, 2230, 2233, 3, 284, 142, 0, 2231, 2233, 5, 538, 0, 0, 2232, 2229, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2231, 1, 0, 0, 0, 2233, 349, 1, 0, 0, 0, 2234, 2239, 5, 539, 0, 0, 2235, 2239, 5, 540, 0, 0, 2236, 2239, 3, 370, 185, 0, 2237, 2239, 5, 538, 0, 0, 2238, 2234, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2238, 2237, 1, 0, 0, 0, 2239, 351, 1, 0, 0, 0, 2240, 2247, 5, 10, 0, 0, 2241, 2242, 5, 512, 0, 0, 2242, 2247, 5, 512, 0, 0, 2243, 2247, 5, 258, 0, 0, 2244, 2245, 5, 511, 0, 0, 2245, 2247, 5, 511, 0, 0, 2246, 2240, 1, 0, 0, 0, 2246, 2241, 1, 0, 0, 0, 2246, 2243, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2247, 353, 1, 0, 0, 0, 2248, 2263, 5, 506, 0, 0, 2249, 2263, 5, 507, 0, 0, 2250, 2263, 5, 508, 0, 0, 2251, 2252, 5, 508, 0, 0, 2252, 2263, 5, 506, 0, 0, 2253, 2254, 5, 507, 0, 0, 2254, 2263, 5, 506, 0, 0, 2255, 2256, 5, 508, 0, 0, 2256, 2263, 5, 507, 0, 0, 2257, 2258, 5, 509, 0, 0, 2258, 2263, 5, 506, 0, 0, 2259, 2260, 5, 508, 0, 0, 2260, 2261, 5, 506, 0, 0, 2261, 2263, 5, 507, 0, 0, 2262, 2248, 1, 0, 0, 0, 2262, 2249, 1, 0, 0, 0, 2262, 2250, 1, 0, 0, 0, 2262, 2251, 1, 0, 0, 0, 2262, 2253, 1, 0, 0, 0, 2262, 2255, 1, 0, 0, 0, 2262, 2257, 1, 0, 0, 0, 2262, 2259, 1, 0, 0, 0, 2263, 355, 1, 0, 0, 0, 2264, 2265, 5, 508, 0, 0, 2265, 2272, 5, 508, 0, 0, 2266, 2267, 5, 507, 0, 0, 2267, 2272, 5, 507, 0, 0, 2268, 2272, 5, 512, 0, 0, 2269, 2272, 5, 513, 0, 0, 2270, 2272, 5, 511, 0, 0, 2271, 2264, 1, 0, 0, 0, 2271, 2266, 1, 0, 0, 0, 2271, 2268, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2270, 1, 0, 0, 0, 2272, 357, 1, 0, 0, 0, 2273, 2274, 7, 36, 0, 0, 2274, 359, 1, 0, 0, 0, 2275, 2276, 7, 37, 0, 0, 2276, 361, 1, 0, 0, 0, 2277, 2292, 3, 290, 145, 0, 2278, 2292, 3, 364, 182, 0, 2279, 2292, 3, 366, 183, 0, 2280, 2282, 5, 530, 0, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2292, 3, 368, 184, 0, 2284, 2292, 3, 370, 185, 0, 2285, 2292, 5, 540, 0, 0, 2286, 2292, 5, 541, 0, 0, 2287, 2289, 5, 242, 0, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2292, 5, 245, 0, 0, 2291, 2277, 1, 0, 0, 0, 2291, 2278, 1, 0, 0, 0, 2291, 2279, 1, 0, 0, 0, 2291, 2281, 1, 0, 0, 0, 2291, 2284, 1, 0, 0, 0, 2291, 2285, 1, 0, 0, 0, 2291, 2286, 1, 0, 0, 0, 2291, 2288, 1, 0, 0, 0, 2292, 363, 1, 0, 0, 0, 2293, 2294, 3, 374, 187, 0, 2294, 2295, 3, 366, 183, 0, 2295, 365, 1, 0, 0, 0, 2296, 2297, 5, 538, 0, 0, 2297, 367, 1, 0, 0, 0, 2298, 2299, 5, 539, 0, 0, 2299, 369, 1, 0, 0, 0, 2300, 2301, 7, 38, 0, 0, 2301, 371, 1, 0, 0, 0, 2302, 2303, 7, 39, 0, 0, 2303, 373, 1, 0, 0, 0, 2304, 2305, 7, 40, 0, 0, 2305, 375, 1, 0, 0, 0, 2306, 2307, 7, 41, 0, 0, 2307, 377, 1, 0, 0, 0, 2308, 2309, 7, 42, 0, 0, 2309, 379, 1, 0, 0, 0, 2310, 2311, 7, 43, 0, 0, 2311, 381, 1, 0, 0, 0, 2312, 2313, 7, 44, 0, 0, 2313, 383, 1, 0, 0, 0, 2314, 2315, 7, 45, 0, 0, 2315, 385, 1, 0, 0, 0, 2316, 2317, 7, 46, 0, 0, 2317, 387, 1, 0, 0, 0, 274, 391, 398, 401, 415, 433, 437, 446, 451, 458, 469, 478, 490, 493, 500, 503, 511, 515, 520, 523, 530, 538, 542, 554, 562, 566, 598, 601, 606, 610, 614, 618, 627, 632, 636, 640, 645, 648, 652, 657, 663, 668, 673, 677, 681, 685, 695, 703, 707, 711, 715, 719, 723, 727, 731, 735, 737, 747, 755, 779, 793, 798, 802, 808, 811, 814, 821, 824, 833, 845, 869, 881, 886, 890, 898, 902, 908, 918, 923, 929, 933, 937, 941, 950, 954, 961, 964, 974, 982, 990, 994, 1009, 1028, 1039, 1043, 1050, 1055, 1061, 1065, 1072, 1076, 1080, 1084, 1092, 1096, 1101, 1107, 1113, 1116, 1120, 1131, 1140, 1147, 1158, 1170, 1185, 1188, 1192, 1195, 1197, 1202, 1206, 1209, 1213, 1222, 1231, 1241, 1246, 1257, 1260, 1263, 1266, 1269, 1275, 1279, 1287, 1290, 1295, 1298, 1302, 1305, 1307, 1321, 1332, 1337, 1345, 1348, 1351, 1356, 1358, 1360, 1365, 1368, 1372, 1376, 1385, 1396, 1423, 1445, 1458, 1470, 1483, 1495, 1507, 1513, 1540, 1548, 1552, 1555, 1558, 1565, 1568, 1571, 1574, 1577, 1580, 1585, 1588, 1597, 1602, 1606, 1611, 1617, 1622, 1626, 1645, 1653, 1661, 1665, 1669, 1679, 1705, 1713, 1725, 1747, 1749, 1760, 1763, 1765, 1769, 1773, 1780, 1789, 1795, 1808, 1815, 1820, 1826, 1833, 1840, 1842, 1845, 1857, 1862, 1865, 1871, 1873, 1879, 1900, 1902, 1910, 1917, 1920, 1924, 1931, 1935, 1944, 1948, 1964, 1973, 2001, 2010, 2019, 2025, 2029, 2035, 2043, 2048, 2052, 2059, 2064, 2072, 2076, 2079, 2083, 2092, 2095, 2106, 2112, 2130, 2135, 2140, 2147, 2149, 2154, 2161, 2163, 2168, 2175, 2177, 2182, 2189, 2191, 2198, 2217, 2224, 2227, 2232, 2238, 2246, 2262, 2271, 2281, 2288, 2291] \ No newline at end of file +[4, 1, 542, 2388, 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, 1, 0, 5, 0, 408, 8, 0, 10, 0, 12, 0, 411, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 417, 8, 1, 1, 1, 3, 1, 420, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 434, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 452, 8, 4, 1, 5, 1, 5, 3, 5, 456, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 465, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 470, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 475, 8, 8, 10, 8, 12, 8, 478, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 488, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 495, 8, 11, 10, 11, 12, 11, 498, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 509, 8, 12, 1, 12, 3, 12, 512, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 519, 8, 12, 1, 12, 3, 12, 522, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 530, 8, 12, 1, 12, 1, 12, 3, 12, 534, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 539, 8, 12, 1, 12, 3, 12, 542, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 549, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 557, 8, 15, 1, 16, 1, 16, 3, 16, 561, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 573, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 581, 8, 18, 1, 18, 1, 18, 3, 18, 585, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 617, 8, 18, 1, 19, 3, 19, 620, 8, 19, 1, 19, 4, 19, 623, 8, 19, 11, 19, 12, 19, 624, 1, 20, 1, 20, 3, 20, 629, 8, 20, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 644, 8, 21, 10, 21, 12, 21, 647, 9, 21, 1, 21, 1, 21, 3, 21, 651, 8, 21, 1, 21, 1, 21, 3, 21, 655, 8, 21, 1, 21, 1, 21, 3, 21, 659, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 664, 8, 21, 1, 21, 3, 21, 667, 8, 21, 1, 21, 1, 21, 3, 21, 671, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 676, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 682, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 687, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 692, 8, 24, 1, 24, 1, 24, 3, 24, 696, 8, 24, 1, 25, 1, 25, 3, 25, 700, 8, 25, 1, 26, 1, 26, 3, 26, 704, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 712, 8, 28, 10, 28, 12, 28, 715, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 722, 8, 29, 1, 29, 1, 29, 3, 29, 726, 8, 29, 1, 29, 1, 29, 3, 29, 730, 8, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 1, 29, 1, 29, 3, 29, 738, 8, 29, 1, 29, 1, 29, 3, 29, 742, 8, 29, 1, 29, 1, 29, 3, 29, 746, 8, 29, 1, 29, 1, 29, 3, 29, 750, 8, 29, 1, 29, 1, 29, 3, 29, 754, 8, 29, 3, 29, 756, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 766, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 774, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 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, 35, 1, 35, 5, 35, 796, 8, 35, 10, 35, 12, 35, 799, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 810, 8, 35, 10, 35, 12, 35, 813, 9, 35, 1, 35, 1, 35, 3, 35, 817, 8, 35, 1, 36, 1, 36, 3, 36, 821, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 827, 8, 36, 1, 36, 3, 36, 830, 8, 36, 1, 36, 3, 36, 833, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 840, 8, 37, 1, 37, 3, 37, 843, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 852, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 864, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 886, 8, 46, 10, 46, 12, 46, 889, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 898, 8, 47, 10, 47, 12, 47, 901, 9, 47, 1, 47, 1, 47, 3, 47, 905, 8, 47, 1, 48, 1, 48, 3, 48, 909, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 915, 8, 49, 10, 49, 12, 49, 918, 9, 49, 1, 49, 3, 49, 921, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 927, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 937, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 942, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 948, 8, 53, 1, 53, 1, 53, 3, 53, 952, 8, 53, 1, 53, 1, 53, 3, 53, 956, 8, 53, 1, 53, 1, 53, 3, 53, 960, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 969, 8, 54, 1, 54, 1, 54, 3, 54, 973, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 980, 8, 54, 1, 54, 3, 54, 983, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 991, 8, 55, 10, 55, 12, 55, 994, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1001, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1009, 8, 57, 1, 58, 1, 58, 3, 58, 1013, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1028, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1047, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1058, 8, 66, 1, 66, 1, 66, 3, 66, 1062, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1069, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1074, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1080, 8, 68, 1, 68, 1, 68, 3, 68, 1084, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1091, 8, 69, 1, 69, 1, 69, 3, 69, 1095, 8, 69, 1, 70, 1, 70, 3, 70, 1099, 8, 70, 1, 70, 1, 70, 3, 70, 1103, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1111, 8, 71, 1, 71, 1, 71, 3, 71, 1115, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1120, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1126, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1132, 8, 73, 1, 73, 3, 73, 1135, 8, 73, 1, 73, 1, 73, 3, 73, 1139, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1148, 8, 75, 10, 75, 12, 75, 1151, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1157, 8, 76, 10, 76, 12, 76, 1160, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1166, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1175, 8, 78, 11, 78, 12, 78, 1176, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1187, 8, 79, 11, 79, 12, 79, 1188, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1204, 8, 80, 1, 80, 3, 80, 1207, 8, 80, 1, 80, 1, 80, 3, 80, 1211, 8, 80, 1, 80, 3, 80, 1214, 8, 80, 3, 80, 1216, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1221, 8, 80, 1, 80, 1, 80, 3, 80, 1225, 8, 80, 1, 80, 3, 80, 1228, 8, 80, 5, 80, 1230, 8, 80, 10, 80, 12, 80, 1233, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1239, 8, 81, 10, 81, 12, 81, 1242, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1248, 8, 82, 10, 82, 12, 82, 1251, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1258, 8, 83, 10, 83, 12, 83, 1261, 9, 83, 1, 83, 1, 83, 3, 83, 1265, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 1276, 8, 85, 1, 85, 3, 85, 1279, 8, 85, 1, 85, 3, 85, 1282, 8, 85, 1, 85, 3, 85, 1285, 8, 85, 1, 85, 3, 85, 1288, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1294, 8, 85, 1, 86, 1, 86, 3, 86, 1298, 8, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 5, 87, 1305, 8, 87, 10, 87, 12, 87, 1308, 9, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1314, 8, 88, 1, 88, 3, 88, 1317, 8, 88, 1, 88, 1, 88, 3, 88, 1321, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1326, 8, 88, 1, 88, 3, 88, 1329, 8, 88, 3, 88, 1331, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 3, 92, 1340, 8, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 3, 93, 1347, 8, 93, 1, 93, 3, 93, 1350, 8, 93, 1, 93, 1, 93, 3, 93, 1354, 8, 93, 1, 93, 3, 93, 1357, 8, 93, 3, 93, 1359, 8, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1364, 8, 94, 10, 94, 12, 94, 1367, 9, 94, 1, 94, 1, 94, 3, 94, 1371, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 1387, 8, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1396, 8, 97, 10, 97, 12, 97, 1399, 9, 97, 1, 97, 1, 97, 3, 97, 1403, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1411, 8, 97, 1, 97, 3, 97, 1414, 8, 97, 1, 97, 3, 97, 1417, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1422, 8, 97, 5, 97, 1424, 8, 97, 10, 97, 12, 97, 1427, 9, 97, 1, 98, 1, 98, 3, 98, 1431, 8, 98, 1, 99, 3, 99, 1434, 8, 99, 1, 99, 1, 99, 3, 99, 1438, 8, 99, 1, 99, 1, 99, 3, 99, 1442, 8, 99, 1, 99, 1, 99, 3, 99, 1446, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 3, 101, 1455, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1466, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1491, 8, 106, 10, 106, 12, 106, 1494, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1515, 8, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1528, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 1538, 8, 113, 10, 113, 12, 113, 1541, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1551, 8, 114, 10, 114, 12, 114, 1554, 9, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1563, 8, 114, 10, 114, 12, 114, 1566, 9, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1575, 8, 114, 10, 114, 12, 114, 1578, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1583, 8, 114, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1608, 8, 121, 10, 121, 12, 121, 1611, 9, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 3, 123, 1618, 8, 123, 1, 123, 1, 123, 3, 123, 1622, 8, 123, 1, 123, 3, 123, 1625, 8, 123, 1, 123, 3, 123, 1628, 8, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 3, 124, 1635, 8, 124, 1, 124, 3, 124, 1638, 8, 124, 1, 124, 3, 124, 1641, 8, 124, 1, 124, 3, 124, 1644, 8, 124, 1, 124, 3, 124, 1647, 8, 124, 1, 124, 3, 124, 1650, 8, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1655, 8, 124, 1, 124, 3, 124, 1658, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1665, 8, 125, 10, 125, 12, 125, 1668, 9, 125, 1, 126, 1, 126, 3, 126, 1672, 8, 126, 1, 126, 1, 126, 3, 126, 1676, 8, 126, 1, 127, 1, 127, 1, 127, 3, 127, 1681, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1687, 8, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1692, 8, 128, 5, 128, 1694, 8, 128, 10, 128, 12, 128, 1697, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1715, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1721, 8, 130, 10, 130, 12, 130, 1724, 9, 130, 1, 131, 1, 131, 1, 131, 4, 131, 1729, 8, 131, 11, 131, 12, 131, 1730, 1, 131, 1, 131, 3, 131, 1735, 8, 131, 1, 132, 1, 132, 3, 132, 1739, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1749, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1775, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1781, 8, 135, 10, 135, 12, 135, 1784, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1795, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 1817, 8, 140, 3, 140, 1819, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 1830, 8, 140, 1, 140, 5, 140, 1833, 8, 140, 10, 140, 12, 140, 1836, 9, 140, 1, 141, 3, 141, 1839, 8, 141, 1, 141, 1, 141, 3, 141, 1843, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1850, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 1857, 8, 141, 10, 141, 12, 141, 1860, 9, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1865, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1878, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1885, 8, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1890, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1896, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1903, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1910, 8, 141, 3, 141, 1912, 8, 141, 1, 142, 3, 142, 1915, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 1925, 8, 142, 10, 142, 12, 142, 1928, 9, 142, 1, 142, 1, 142, 3, 142, 1932, 8, 142, 1, 142, 3, 142, 1935, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1941, 8, 142, 3, 142, 1943, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1949, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 5, 143, 1970, 8, 143, 10, 143, 12, 143, 1973, 9, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 1980, 8, 144, 1, 144, 1, 144, 1, 144, 5, 144, 1985, 8, 144, 10, 144, 12, 144, 1988, 9, 144, 3, 144, 1990, 8, 144, 1, 144, 1, 144, 3, 144, 1994, 8, 144, 1, 145, 1, 145, 1, 145, 4, 145, 1999, 8, 145, 11, 145, 12, 145, 2000, 1, 145, 1, 145, 3, 145, 2005, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 4, 145, 2012, 8, 145, 11, 145, 12, 145, 2013, 1, 145, 1, 145, 3, 145, 2018, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2034, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2043, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2071, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 2078, 8, 145, 10, 145, 12, 145, 2081, 9, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2089, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2095, 8, 148, 1, 149, 1, 149, 3, 149, 2099, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2105, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2113, 8, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2118, 8, 154, 1, 155, 1, 155, 3, 155, 2122, 8, 155, 1, 156, 1, 156, 1, 156, 4, 156, 2127, 8, 156, 11, 156, 12, 156, 2128, 1, 157, 1, 157, 1, 157, 3, 157, 2134, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 3, 159, 2142, 8, 159, 1, 159, 1, 159, 3, 159, 2146, 8, 159, 1, 160, 3, 160, 2149, 8, 160, 1, 160, 1, 160, 3, 160, 2153, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 4, 162, 2160, 8, 162, 11, 162, 12, 162, 2161, 1, 162, 3, 162, 2165, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 5, 164, 2174, 8, 164, 10, 164, 12, 164, 2177, 9, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2182, 8, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 3, 171, 2200, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 2205, 8, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2210, 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2217, 8, 173, 3, 173, 2219, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2224, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2231, 8, 174, 3, 174, 2233, 8, 174, 1, 175, 1, 175, 1, 175, 3, 175, 2238, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2245, 8, 175, 3, 175, 2247, 8, 175, 1, 176, 1, 176, 1, 176, 3, 176, 2252, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2259, 8, 176, 3, 176, 2261, 8, 176, 1, 177, 1, 177, 1, 177, 5, 177, 2266, 8, 177, 10, 177, 12, 177, 2269, 9, 177, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 5, 181, 2285, 8, 181, 10, 181, 12, 181, 2288, 9, 181, 1, 181, 1, 181, 1, 182, 1, 182, 3, 182, 2294, 8, 182, 1, 182, 3, 182, 2297, 8, 182, 1, 183, 1, 183, 1, 183, 3, 183, 2302, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2308, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2316, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2332, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2341, 8, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2351, 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2358, 8, 190, 1, 190, 3, 190, 2361, 8, 190, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 0, 5, 160, 194, 280, 286, 290, 203, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2597, 0, 409, 1, 0, 0, 0, 2, 419, 1, 0, 0, 0, 4, 433, 1, 0, 0, 0, 6, 435, 1, 0, 0, 0, 8, 451, 1, 0, 0, 0, 10, 455, 1, 0, 0, 0, 12, 457, 1, 0, 0, 0, 14, 460, 1, 0, 0, 0, 16, 471, 1, 0, 0, 0, 18, 479, 1, 0, 0, 0, 20, 487, 1, 0, 0, 0, 22, 489, 1, 0, 0, 0, 24, 541, 1, 0, 0, 0, 26, 543, 1, 0, 0, 0, 28, 550, 1, 0, 0, 0, 30, 554, 1, 0, 0, 0, 32, 558, 1, 0, 0, 0, 34, 562, 1, 0, 0, 0, 36, 616, 1, 0, 0, 0, 38, 622, 1, 0, 0, 0, 40, 628, 1, 0, 0, 0, 42, 630, 1, 0, 0, 0, 44, 672, 1, 0, 0, 0, 46, 686, 1, 0, 0, 0, 48, 688, 1, 0, 0, 0, 50, 699, 1, 0, 0, 0, 52, 703, 1, 0, 0, 0, 54, 705, 1, 0, 0, 0, 56, 707, 1, 0, 0, 0, 58, 755, 1, 0, 0, 0, 60, 757, 1, 0, 0, 0, 62, 761, 1, 0, 0, 0, 64, 769, 1, 0, 0, 0, 66, 777, 1, 0, 0, 0, 68, 781, 1, 0, 0, 0, 70, 816, 1, 0, 0, 0, 72, 832, 1, 0, 0, 0, 74, 834, 1, 0, 0, 0, 76, 844, 1, 0, 0, 0, 78, 846, 1, 0, 0, 0, 80, 853, 1, 0, 0, 0, 82, 855, 1, 0, 0, 0, 84, 863, 1, 0, 0, 0, 86, 871, 1, 0, 0, 0, 88, 873, 1, 0, 0, 0, 90, 877, 1, 0, 0, 0, 92, 881, 1, 0, 0, 0, 94, 904, 1, 0, 0, 0, 96, 908, 1, 0, 0, 0, 98, 910, 1, 0, 0, 0, 100, 926, 1, 0, 0, 0, 102, 928, 1, 0, 0, 0, 104, 933, 1, 0, 0, 0, 106, 945, 1, 0, 0, 0, 108, 964, 1, 0, 0, 0, 110, 984, 1, 0, 0, 0, 112, 995, 1, 0, 0, 0, 114, 997, 1, 0, 0, 0, 116, 1010, 1, 0, 0, 0, 118, 1017, 1, 0, 0, 0, 120, 1020, 1, 0, 0, 0, 122, 1029, 1, 0, 0, 0, 124, 1033, 1, 0, 0, 0, 126, 1037, 1, 0, 0, 0, 128, 1040, 1, 0, 0, 0, 130, 1048, 1, 0, 0, 0, 132, 1053, 1, 0, 0, 0, 134, 1070, 1, 0, 0, 0, 136, 1077, 1, 0, 0, 0, 138, 1087, 1, 0, 0, 0, 140, 1096, 1, 0, 0, 0, 142, 1106, 1, 0, 0, 0, 144, 1125, 1, 0, 0, 0, 146, 1127, 1, 0, 0, 0, 148, 1140, 1, 0, 0, 0, 150, 1143, 1, 0, 0, 0, 152, 1152, 1, 0, 0, 0, 154, 1165, 1, 0, 0, 0, 156, 1167, 1, 0, 0, 0, 158, 1180, 1, 0, 0, 0, 160, 1215, 1, 0, 0, 0, 162, 1234, 1, 0, 0, 0, 164, 1243, 1, 0, 0, 0, 166, 1252, 1, 0, 0, 0, 168, 1271, 1, 0, 0, 0, 170, 1293, 1, 0, 0, 0, 172, 1295, 1, 0, 0, 0, 174, 1301, 1, 0, 0, 0, 176, 1330, 1, 0, 0, 0, 178, 1332, 1, 0, 0, 0, 180, 1334, 1, 0, 0, 0, 182, 1336, 1, 0, 0, 0, 184, 1339, 1, 0, 0, 0, 186, 1358, 1, 0, 0, 0, 188, 1370, 1, 0, 0, 0, 190, 1386, 1, 0, 0, 0, 192, 1388, 1, 0, 0, 0, 194, 1402, 1, 0, 0, 0, 196, 1428, 1, 0, 0, 0, 198, 1445, 1, 0, 0, 0, 200, 1447, 1, 0, 0, 0, 202, 1465, 1, 0, 0, 0, 204, 1467, 1, 0, 0, 0, 206, 1473, 1, 0, 0, 0, 208, 1475, 1, 0, 0, 0, 210, 1480, 1, 0, 0, 0, 212, 1485, 1, 0, 0, 0, 214, 1497, 1, 0, 0, 0, 216, 1514, 1, 0, 0, 0, 218, 1516, 1, 0, 0, 0, 220, 1518, 1, 0, 0, 0, 222, 1527, 1, 0, 0, 0, 224, 1529, 1, 0, 0, 0, 226, 1532, 1, 0, 0, 0, 228, 1582, 1, 0, 0, 0, 230, 1584, 1, 0, 0, 0, 232, 1587, 1, 0, 0, 0, 234, 1589, 1, 0, 0, 0, 236, 1596, 1, 0, 0, 0, 238, 1598, 1, 0, 0, 0, 240, 1600, 1, 0, 0, 0, 242, 1603, 1, 0, 0, 0, 244, 1612, 1, 0, 0, 0, 246, 1617, 1, 0, 0, 0, 248, 1631, 1, 0, 0, 0, 250, 1659, 1, 0, 0, 0, 252, 1669, 1, 0, 0, 0, 254, 1677, 1, 0, 0, 0, 256, 1682, 1, 0, 0, 0, 258, 1714, 1, 0, 0, 0, 260, 1716, 1, 0, 0, 0, 262, 1725, 1, 0, 0, 0, 264, 1736, 1, 0, 0, 0, 266, 1748, 1, 0, 0, 0, 268, 1774, 1, 0, 0, 0, 270, 1776, 1, 0, 0, 0, 272, 1794, 1, 0, 0, 0, 274, 1796, 1, 0, 0, 0, 276, 1801, 1, 0, 0, 0, 278, 1804, 1, 0, 0, 0, 280, 1818, 1, 0, 0, 0, 282, 1911, 1, 0, 0, 0, 284, 1942, 1, 0, 0, 0, 286, 1948, 1, 0, 0, 0, 288, 1993, 1, 0, 0, 0, 290, 2070, 1, 0, 0, 0, 292, 2082, 1, 0, 0, 0, 294, 2088, 1, 0, 0, 0, 296, 2094, 1, 0, 0, 0, 298, 2098, 1, 0, 0, 0, 300, 2104, 1, 0, 0, 0, 302, 2106, 1, 0, 0, 0, 304, 2108, 1, 0, 0, 0, 306, 2112, 1, 0, 0, 0, 308, 2114, 1, 0, 0, 0, 310, 2119, 1, 0, 0, 0, 312, 2126, 1, 0, 0, 0, 314, 2130, 1, 0, 0, 0, 316, 2135, 1, 0, 0, 0, 318, 2145, 1, 0, 0, 0, 320, 2148, 1, 0, 0, 0, 322, 2154, 1, 0, 0, 0, 324, 2164, 1, 0, 0, 0, 326, 2166, 1, 0, 0, 0, 328, 2170, 1, 0, 0, 0, 330, 2181, 1, 0, 0, 0, 332, 2183, 1, 0, 0, 0, 334, 2185, 1, 0, 0, 0, 336, 2187, 1, 0, 0, 0, 338, 2192, 1, 0, 0, 0, 340, 2194, 1, 0, 0, 0, 342, 2196, 1, 0, 0, 0, 344, 2201, 1, 0, 0, 0, 346, 2218, 1, 0, 0, 0, 348, 2232, 1, 0, 0, 0, 350, 2246, 1, 0, 0, 0, 352, 2260, 1, 0, 0, 0, 354, 2262, 1, 0, 0, 0, 356, 2270, 1, 0, 0, 0, 358, 2273, 1, 0, 0, 0, 360, 2277, 1, 0, 0, 0, 362, 2280, 1, 0, 0, 0, 364, 2291, 1, 0, 0, 0, 366, 2301, 1, 0, 0, 0, 368, 2307, 1, 0, 0, 0, 370, 2315, 1, 0, 0, 0, 372, 2331, 1, 0, 0, 0, 374, 2340, 1, 0, 0, 0, 376, 2342, 1, 0, 0, 0, 378, 2344, 1, 0, 0, 0, 380, 2360, 1, 0, 0, 0, 382, 2362, 1, 0, 0, 0, 384, 2365, 1, 0, 0, 0, 386, 2367, 1, 0, 0, 0, 388, 2369, 1, 0, 0, 0, 390, 2371, 1, 0, 0, 0, 392, 2373, 1, 0, 0, 0, 394, 2375, 1, 0, 0, 0, 396, 2377, 1, 0, 0, 0, 398, 2379, 1, 0, 0, 0, 400, 2381, 1, 0, 0, 0, 402, 2383, 1, 0, 0, 0, 404, 2385, 1, 0, 0, 0, 406, 408, 3, 2, 1, 0, 407, 406, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 413, 5, 0, 0, 1, 413, 1, 1, 0, 0, 0, 414, 416, 3, 4, 2, 0, 415, 417, 5, 522, 0, 0, 416, 415, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 420, 1, 0, 0, 0, 418, 420, 3, 6, 3, 0, 419, 414, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 3, 1, 0, 0, 0, 421, 434, 3, 8, 4, 0, 422, 434, 3, 10, 5, 0, 423, 434, 3, 12, 6, 0, 424, 434, 3, 14, 7, 0, 425, 434, 3, 20, 10, 0, 426, 434, 3, 24, 12, 0, 427, 434, 3, 26, 13, 0, 428, 434, 3, 28, 14, 0, 429, 434, 3, 30, 15, 0, 430, 434, 3, 32, 16, 0, 431, 434, 3, 34, 17, 0, 432, 434, 3, 36, 18, 0, 433, 421, 1, 0, 0, 0, 433, 422, 1, 0, 0, 0, 433, 423, 1, 0, 0, 0, 433, 424, 1, 0, 0, 0, 433, 425, 1, 0, 0, 0, 433, 426, 1, 0, 0, 0, 433, 427, 1, 0, 0, 0, 433, 428, 1, 0, 0, 0, 433, 429, 1, 0, 0, 0, 433, 430, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 432, 1, 0, 0, 0, 434, 5, 1, 0, 0, 0, 435, 436, 5, 522, 0, 0, 436, 7, 1, 0, 0, 0, 437, 452, 3, 40, 20, 0, 438, 452, 3, 104, 52, 0, 439, 452, 3, 106, 53, 0, 440, 452, 3, 108, 54, 0, 441, 452, 3, 102, 51, 0, 442, 452, 3, 114, 57, 0, 443, 452, 3, 128, 64, 0, 444, 452, 3, 130, 65, 0, 445, 452, 3, 132, 66, 0, 446, 452, 3, 134, 67, 0, 447, 452, 3, 136, 68, 0, 448, 452, 3, 138, 69, 0, 449, 452, 3, 140, 70, 0, 450, 452, 3, 142, 71, 0, 451, 437, 1, 0, 0, 0, 451, 438, 1, 0, 0, 0, 451, 439, 1, 0, 0, 0, 451, 440, 1, 0, 0, 0, 451, 441, 1, 0, 0, 0, 451, 442, 1, 0, 0, 0, 451, 443, 1, 0, 0, 0, 451, 444, 1, 0, 0, 0, 451, 445, 1, 0, 0, 0, 451, 446, 1, 0, 0, 0, 451, 447, 1, 0, 0, 0, 451, 448, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 450, 1, 0, 0, 0, 452, 9, 1, 0, 0, 0, 453, 456, 3, 160, 80, 0, 454, 456, 3, 144, 72, 0, 455, 453, 1, 0, 0, 0, 455, 454, 1, 0, 0, 0, 456, 11, 1, 0, 0, 0, 457, 458, 7, 0, 0, 0, 458, 459, 3, 348, 174, 0, 459, 13, 1, 0, 0, 0, 460, 464, 5, 135, 0, 0, 461, 465, 3, 16, 8, 0, 462, 463, 5, 480, 0, 0, 463, 465, 5, 146, 0, 0, 464, 461, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 469, 1, 0, 0, 0, 466, 470, 3, 10, 5, 0, 467, 470, 3, 146, 73, 0, 468, 470, 3, 158, 79, 0, 469, 466, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 468, 1, 0, 0, 0, 470, 15, 1, 0, 0, 0, 471, 476, 3, 18, 9, 0, 472, 473, 5, 521, 0, 0, 473, 475, 3, 18, 9, 0, 474, 472, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 17, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, 480, 7, 1, 0, 0, 480, 19, 1, 0, 0, 0, 481, 482, 5, 411, 0, 0, 482, 483, 5, 442, 0, 0, 483, 488, 3, 338, 169, 0, 484, 485, 5, 411, 0, 0, 485, 488, 3, 342, 171, 0, 486, 488, 3, 22, 11, 0, 487, 481, 1, 0, 0, 0, 487, 484, 1, 0, 0, 0, 487, 486, 1, 0, 0, 0, 488, 21, 1, 0, 0, 0, 489, 490, 5, 411, 0, 0, 490, 491, 5, 228, 0, 0, 491, 496, 3, 354, 177, 0, 492, 493, 5, 521, 0, 0, 493, 495, 3, 354, 177, 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, 23, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 342, 0, 0, 500, 542, 7, 2, 0, 0, 501, 502, 5, 342, 0, 0, 502, 503, 5, 76, 0, 0, 503, 542, 7, 3, 0, 0, 504, 505, 5, 342, 0, 0, 505, 508, 5, 375, 0, 0, 506, 507, 7, 4, 0, 0, 507, 509, 3, 342, 171, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 512, 3, 284, 142, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 542, 1, 0, 0, 0, 513, 514, 5, 342, 0, 0, 514, 515, 5, 58, 0, 0, 515, 518, 7, 4, 0, 0, 516, 519, 3, 350, 175, 0, 517, 519, 3, 348, 174, 0, 518, 516, 1, 0, 0, 0, 518, 517, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 284, 142, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 542, 1, 0, 0, 0, 523, 524, 5, 342, 0, 0, 524, 529, 5, 72, 0, 0, 525, 526, 5, 374, 0, 0, 526, 530, 3, 348, 174, 0, 527, 528, 5, 502, 0, 0, 528, 530, 3, 350, 175, 0, 529, 525, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 542, 1, 0, 0, 0, 531, 533, 5, 342, 0, 0, 532, 534, 5, 412, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 542, 5, 154, 0, 0, 536, 538, 5, 342, 0, 0, 537, 539, 5, 152, 0, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 542, 5, 228, 0, 0, 541, 499, 1, 0, 0, 0, 541, 501, 1, 0, 0, 0, 541, 504, 1, 0, 0, 0, 541, 513, 1, 0, 0, 0, 541, 523, 1, 0, 0, 0, 541, 531, 1, 0, 0, 0, 541, 536, 1, 0, 0, 0, 542, 25, 1, 0, 0, 0, 543, 544, 5, 469, 0, 0, 544, 545, 5, 227, 0, 0, 545, 548, 3, 354, 177, 0, 546, 547, 5, 434, 0, 0, 547, 549, 3, 362, 181, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 27, 1, 0, 0, 0, 550, 551, 5, 501, 0, 0, 551, 552, 5, 227, 0, 0, 552, 553, 3, 354, 177, 0, 553, 29, 1, 0, 0, 0, 554, 556, 5, 341, 0, 0, 555, 557, 3, 364, 182, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 31, 1, 0, 0, 0, 558, 560, 5, 313, 0, 0, 559, 561, 3, 366, 183, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 33, 1, 0, 0, 0, 562, 563, 7, 5, 0, 0, 563, 564, 5, 464, 0, 0, 564, 565, 3, 112, 56, 0, 565, 35, 1, 0, 0, 0, 566, 567, 5, 438, 0, 0, 567, 568, 5, 464, 0, 0, 568, 569, 5, 434, 0, 0, 569, 572, 3, 38, 19, 0, 570, 571, 5, 17, 0, 0, 571, 573, 3, 354, 177, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 617, 1, 0, 0, 0, 574, 575, 5, 438, 0, 0, 575, 576, 5, 457, 0, 0, 576, 577, 5, 434, 0, 0, 577, 580, 3, 38, 19, 0, 578, 579, 5, 17, 0, 0, 579, 581, 3, 354, 177, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 583, 5, 312, 0, 0, 583, 585, 3, 354, 177, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 617, 1, 0, 0, 0, 586, 587, 5, 438, 0, 0, 587, 588, 7, 6, 0, 0, 588, 589, 5, 434, 0, 0, 589, 590, 3, 38, 19, 0, 590, 591, 5, 312, 0, 0, 591, 592, 3, 354, 177, 0, 592, 617, 1, 0, 0, 0, 593, 594, 5, 438, 0, 0, 594, 595, 5, 487, 0, 0, 595, 617, 3, 38, 19, 0, 596, 597, 5, 438, 0, 0, 597, 598, 5, 454, 0, 0, 598, 599, 5, 457, 0, 0, 599, 600, 5, 434, 0, 0, 600, 601, 3, 38, 19, 0, 601, 602, 5, 312, 0, 0, 602, 603, 3, 354, 177, 0, 603, 604, 5, 467, 0, 0, 604, 605, 3, 354, 177, 0, 605, 617, 1, 0, 0, 0, 606, 607, 5, 438, 0, 0, 607, 608, 5, 444, 0, 0, 608, 609, 5, 457, 0, 0, 609, 610, 5, 434, 0, 0, 610, 611, 3, 38, 19, 0, 611, 612, 5, 146, 0, 0, 612, 613, 3, 354, 177, 0, 613, 614, 5, 17, 0, 0, 614, 615, 3, 354, 177, 0, 615, 617, 1, 0, 0, 0, 616, 566, 1, 0, 0, 0, 616, 574, 1, 0, 0, 0, 616, 586, 1, 0, 0, 0, 616, 593, 1, 0, 0, 0, 616, 596, 1, 0, 0, 0, 616, 606, 1, 0, 0, 0, 617, 37, 1, 0, 0, 0, 618, 620, 5, 535, 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 3, 354, 177, 0, 622, 619, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 39, 1, 0, 0, 0, 626, 629, 3, 42, 21, 0, 627, 629, 3, 44, 22, 0, 628, 626, 1, 0, 0, 0, 628, 627, 1, 0, 0, 0, 629, 41, 1, 0, 0, 0, 630, 632, 5, 72, 0, 0, 631, 633, 5, 498, 0, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 636, 5, 374, 0, 0, 635, 637, 3, 358, 179, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 3, 346, 173, 0, 639, 640, 5, 517, 0, 0, 640, 645, 3, 46, 23, 0, 641, 642, 5, 521, 0, 0, 642, 644, 3, 46, 23, 0, 643, 641, 1, 0, 0, 0, 644, 647, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 650, 1, 0, 0, 0, 647, 645, 1, 0, 0, 0, 648, 649, 5, 521, 0, 0, 649, 651, 3, 82, 41, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 653, 5, 521, 0, 0, 653, 655, 3, 84, 42, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 658, 1, 0, 0, 0, 656, 657, 5, 521, 0, 0, 657, 659, 3, 88, 44, 0, 658, 656, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 663, 5, 518, 0, 0, 661, 662, 5, 59, 0, 0, 662, 664, 5, 538, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 666, 1, 0, 0, 0, 665, 667, 3, 90, 45, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 3, 356, 178, 0, 669, 671, 3, 98, 49, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 43, 1, 0, 0, 0, 672, 673, 5, 72, 0, 0, 673, 675, 5, 374, 0, 0, 674, 676, 3, 358, 179, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 3, 346, 173, 0, 678, 681, 3, 356, 178, 0, 679, 680, 5, 17, 0, 0, 680, 682, 3, 160, 80, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 45, 1, 0, 0, 0, 683, 687, 3, 48, 24, 0, 684, 687, 3, 74, 37, 0, 685, 687, 3, 78, 39, 0, 686, 683, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 686, 685, 1, 0, 0, 0, 687, 47, 1, 0, 0, 0, 688, 689, 3, 50, 25, 0, 689, 691, 3, 58, 29, 0, 690, 692, 3, 72, 36, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 695, 1, 0, 0, 0, 693, 694, 5, 59, 0, 0, 694, 696, 5, 538, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 49, 1, 0, 0, 0, 697, 700, 3, 354, 177, 0, 698, 700, 3, 278, 139, 0, 699, 697, 1, 0, 0, 0, 699, 698, 1, 0, 0, 0, 700, 51, 1, 0, 0, 0, 701, 704, 3, 354, 177, 0, 702, 704, 4, 26, 0, 0, 703, 701, 1, 0, 0, 0, 703, 702, 1, 0, 0, 0, 704, 53, 1, 0, 0, 0, 705, 706, 3, 354, 177, 0, 706, 55, 1, 0, 0, 0, 707, 708, 5, 517, 0, 0, 708, 713, 3, 52, 26, 0, 709, 710, 5, 521, 0, 0, 710, 712, 3, 52, 26, 0, 711, 709, 1, 0, 0, 0, 712, 715, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 716, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 716, 717, 5, 518, 0, 0, 717, 57, 1, 0, 0, 0, 718, 756, 7, 7, 0, 0, 719, 721, 7, 8, 0, 0, 720, 722, 3, 60, 30, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 756, 1, 0, 0, 0, 723, 725, 5, 380, 0, 0, 724, 726, 3, 60, 30, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 733, 1, 0, 0, 0, 727, 729, 7, 9, 0, 0, 728, 730, 5, 207, 0, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 5, 379, 0, 0, 732, 734, 5, 505, 0, 0, 733, 727, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 756, 1, 0, 0, 0, 735, 737, 7, 10, 0, 0, 736, 738, 3, 62, 31, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 756, 1, 0, 0, 0, 739, 741, 7, 11, 0, 0, 740, 742, 3, 66, 33, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 756, 1, 0, 0, 0, 743, 745, 5, 470, 0, 0, 744, 746, 3, 68, 34, 0, 745, 744, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 756, 1, 0, 0, 0, 747, 749, 5, 322, 0, 0, 748, 750, 3, 70, 35, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 756, 1, 0, 0, 0, 751, 753, 5, 295, 0, 0, 752, 754, 3, 64, 32, 0, 753, 752, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 756, 1, 0, 0, 0, 755, 718, 1, 0, 0, 0, 755, 719, 1, 0, 0, 0, 755, 723, 1, 0, 0, 0, 755, 735, 1, 0, 0, 0, 755, 739, 1, 0, 0, 0, 755, 743, 1, 0, 0, 0, 755, 747, 1, 0, 0, 0, 755, 751, 1, 0, 0, 0, 756, 59, 1, 0, 0, 0, 757, 758, 5, 517, 0, 0, 758, 759, 3, 386, 193, 0, 759, 760, 5, 518, 0, 0, 760, 61, 1, 0, 0, 0, 761, 762, 5, 517, 0, 0, 762, 765, 3, 386, 193, 0, 763, 764, 5, 521, 0, 0, 764, 766, 3, 386, 193, 0, 765, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 518, 0, 0, 768, 63, 1, 0, 0, 0, 769, 770, 5, 517, 0, 0, 770, 773, 3, 384, 192, 0, 771, 772, 5, 521, 0, 0, 772, 774, 3, 384, 192, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 5, 518, 0, 0, 776, 65, 1, 0, 0, 0, 777, 778, 5, 508, 0, 0, 778, 779, 3, 58, 29, 0, 779, 780, 5, 507, 0, 0, 780, 67, 1, 0, 0, 0, 781, 782, 5, 508, 0, 0, 782, 783, 3, 58, 29, 0, 783, 784, 5, 521, 0, 0, 784, 785, 3, 58, 29, 0, 785, 786, 1, 0, 0, 0, 786, 787, 5, 507, 0, 0, 787, 69, 1, 0, 0, 0, 788, 789, 5, 508, 0, 0, 789, 790, 3, 52, 26, 0, 790, 797, 3, 58, 29, 0, 791, 792, 5, 521, 0, 0, 792, 793, 3, 52, 26, 0, 793, 794, 3, 58, 29, 0, 794, 796, 1, 0, 0, 0, 795, 791, 1, 0, 0, 0, 796, 799, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 800, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 801, 5, 507, 0, 0, 801, 817, 1, 0, 0, 0, 802, 803, 5, 517, 0, 0, 803, 804, 3, 52, 26, 0, 804, 811, 3, 58, 29, 0, 805, 806, 5, 521, 0, 0, 806, 807, 3, 52, 26, 0, 807, 808, 3, 58, 29, 0, 808, 810, 1, 0, 0, 0, 809, 805, 1, 0, 0, 0, 810, 813, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 815, 5, 518, 0, 0, 815, 817, 1, 0, 0, 0, 816, 788, 1, 0, 0, 0, 816, 802, 1, 0, 0, 0, 817, 71, 1, 0, 0, 0, 818, 819, 5, 64, 0, 0, 819, 821, 3, 86, 43, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 5, 289, 0, 0, 823, 826, 5, 467, 0, 0, 824, 825, 5, 242, 0, 0, 825, 827, 5, 125, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 833, 1, 0, 0, 0, 828, 830, 5, 242, 0, 0, 829, 828, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 5, 245, 0, 0, 832, 820, 1, 0, 0, 0, 832, 829, 1, 0, 0, 0, 833, 73, 1, 0, 0, 0, 834, 835, 3, 50, 25, 0, 835, 836, 3, 58, 29, 0, 836, 839, 5, 219, 0, 0, 837, 838, 5, 151, 0, 0, 838, 840, 3, 76, 38, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 424, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 75, 1, 0, 0, 0, 844, 845, 5, 538, 0, 0, 845, 77, 1, 0, 0, 0, 846, 847, 3, 50, 25, 0, 847, 848, 5, 17, 0, 0, 848, 851, 3, 80, 40, 0, 849, 850, 5, 59, 0, 0, 850, 852, 5, 538, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 79, 1, 0, 0, 0, 853, 854, 3, 278, 139, 0, 854, 81, 1, 0, 0, 0, 855, 856, 5, 425, 0, 0, 856, 857, 5, 146, 0, 0, 857, 858, 3, 52, 26, 0, 858, 859, 5, 17, 0, 0, 859, 860, 3, 278, 139, 0, 860, 83, 1, 0, 0, 0, 861, 862, 5, 64, 0, 0, 862, 864, 3, 86, 43, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 5, 289, 0, 0, 866, 867, 5, 467, 0, 0, 867, 868, 3, 56, 28, 0, 868, 869, 5, 242, 0, 0, 869, 870, 5, 125, 0, 0, 870, 85, 1, 0, 0, 0, 871, 872, 3, 330, 165, 0, 872, 87, 1, 0, 0, 0, 873, 874, 5, 278, 0, 0, 874, 875, 5, 146, 0, 0, 875, 876, 5, 372, 0, 0, 876, 89, 1, 0, 0, 0, 877, 878, 5, 270, 0, 0, 878, 879, 5, 34, 0, 0, 879, 880, 3, 92, 46, 0, 880, 91, 1, 0, 0, 0, 881, 882, 5, 517, 0, 0, 882, 887, 3, 94, 47, 0, 883, 884, 5, 521, 0, 0, 884, 886, 3, 94, 47, 0, 885, 883, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 890, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 890, 891, 5, 518, 0, 0, 891, 93, 1, 0, 0, 0, 892, 905, 3, 52, 26, 0, 893, 894, 5, 517, 0, 0, 894, 899, 3, 96, 48, 0, 895, 896, 5, 521, 0, 0, 896, 898, 3, 96, 48, 0, 897, 895, 1, 0, 0, 0, 898, 901, 1, 0, 0, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 902, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 902, 903, 5, 518, 0, 0, 903, 905, 1, 0, 0, 0, 904, 892, 1, 0, 0, 0, 904, 893, 1, 0, 0, 0, 905, 95, 1, 0, 0, 0, 906, 909, 3, 306, 153, 0, 907, 909, 3, 380, 190, 0, 908, 906, 1, 0, 0, 0, 908, 907, 1, 0, 0, 0, 909, 97, 1, 0, 0, 0, 910, 911, 5, 203, 0, 0, 911, 920, 3, 348, 174, 0, 912, 916, 5, 517, 0, 0, 913, 915, 3, 100, 50, 0, 914, 913, 1, 0, 0, 0, 915, 918, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 919, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 919, 921, 5, 518, 0, 0, 920, 912, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 99, 1, 0, 0, 0, 922, 923, 7, 12, 0, 0, 923, 927, 7, 13, 0, 0, 924, 925, 7, 14, 0, 0, 925, 927, 7, 15, 0, 0, 926, 922, 1, 0, 0, 0, 926, 924, 1, 0, 0, 0, 927, 101, 1, 0, 0, 0, 928, 929, 5, 72, 0, 0, 929, 930, 5, 442, 0, 0, 930, 931, 3, 340, 170, 0, 931, 932, 3, 356, 178, 0, 932, 103, 1, 0, 0, 0, 933, 934, 5, 72, 0, 0, 934, 936, 5, 448, 0, 0, 935, 937, 3, 358, 179, 0, 936, 935, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 941, 3, 344, 172, 0, 939, 940, 5, 59, 0, 0, 940, 942, 5, 538, 0, 0, 941, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 944, 3, 356, 178, 0, 944, 105, 1, 0, 0, 0, 945, 947, 5, 72, 0, 0, 946, 948, 5, 498, 0, 0, 947, 946, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 951, 5, 502, 0, 0, 950, 952, 3, 358, 179, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 955, 3, 352, 176, 0, 954, 956, 3, 56, 28, 0, 955, 954, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 959, 1, 0, 0, 0, 957, 958, 5, 59, 0, 0, 958, 960, 5, 538, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 5, 17, 0, 0, 962, 963, 3, 160, 80, 0, 963, 107, 1, 0, 0, 0, 964, 968, 5, 72, 0, 0, 965, 969, 5, 498, 0, 0, 966, 967, 5, 498, 0, 0, 967, 969, 5, 371, 0, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 5, 153, 0, 0, 971, 973, 3, 358, 179, 0, 972, 971, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 3, 292, 146, 0, 975, 976, 5, 17, 0, 0, 976, 979, 3, 330, 165, 0, 977, 978, 5, 196, 0, 0, 978, 980, 7, 16, 0, 0, 979, 977, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 982, 1, 0, 0, 0, 981, 983, 3, 110, 55, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 109, 1, 0, 0, 0, 984, 985, 5, 413, 0, 0, 985, 986, 5, 464, 0, 0, 986, 992, 3, 112, 56, 0, 987, 988, 5, 521, 0, 0, 988, 989, 5, 464, 0, 0, 989, 991, 3, 112, 56, 0, 990, 987, 1, 0, 0, 0, 991, 994, 1, 0, 0, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 111, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 995, 996, 5, 538, 0, 0, 996, 113, 1, 0, 0, 0, 997, 998, 5, 8, 0, 0, 998, 1000, 5, 374, 0, 0, 999, 1001, 3, 360, 180, 0, 1000, 999, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1008, 3, 348, 174, 0, 1003, 1009, 3, 116, 58, 0, 1004, 1009, 3, 118, 59, 0, 1005, 1009, 3, 120, 60, 0, 1006, 1009, 3, 122, 61, 0, 1007, 1009, 3, 124, 62, 0, 1008, 1003, 1, 0, 0, 0, 1008, 1004, 1, 0, 0, 0, 1008, 1005, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1007, 1, 0, 0, 0, 1009, 115, 1, 0, 0, 0, 1010, 1012, 5, 312, 0, 0, 1011, 1013, 3, 354, 177, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 5, 389, 0, 0, 1015, 1016, 3, 354, 177, 0, 1016, 117, 1, 0, 0, 0, 1017, 1018, 5, 341, 0, 0, 1018, 1019, 3, 362, 181, 0, 1019, 119, 1, 0, 0, 0, 1020, 1021, 5, 438, 0, 0, 1021, 1022, 5, 64, 0, 0, 1022, 1023, 3, 86, 43, 0, 1023, 1024, 5, 289, 0, 0, 1024, 1025, 5, 467, 0, 0, 1025, 1027, 3, 56, 28, 0, 1026, 1028, 3, 126, 63, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 121, 1, 0, 0, 0, 1029, 1030, 5, 116, 0, 0, 1030, 1031, 5, 64, 0, 0, 1031, 1032, 3, 86, 43, 0, 1032, 123, 1, 0, 0, 0, 1033, 1034, 5, 438, 0, 0, 1034, 1035, 5, 404, 0, 0, 1035, 1036, 3, 56, 28, 0, 1036, 125, 1, 0, 0, 0, 1037, 1038, 5, 242, 0, 0, 1038, 1039, 5, 125, 0, 0, 1039, 127, 1, 0, 0, 0, 1040, 1041, 5, 8, 0, 0, 1041, 1042, 5, 502, 0, 0, 1042, 1046, 3, 350, 175, 0, 1043, 1047, 3, 116, 58, 0, 1044, 1045, 5, 17, 0, 0, 1045, 1047, 3, 160, 80, 0, 1046, 1043, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 129, 1, 0, 0, 0, 1048, 1049, 5, 8, 0, 0, 1049, 1050, 5, 448, 0, 0, 1050, 1051, 3, 342, 171, 0, 1051, 1052, 3, 118, 59, 0, 1052, 131, 1, 0, 0, 0, 1053, 1057, 5, 8, 0, 0, 1054, 1058, 5, 498, 0, 0, 1055, 1056, 5, 498, 0, 0, 1056, 1058, 5, 371, 0, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1055, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 5, 153, 0, 0, 1060, 1062, 3, 360, 180, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 3, 294, 147, 0, 1064, 1065, 5, 17, 0, 0, 1065, 1068, 3, 330, 165, 0, 1066, 1067, 5, 196, 0, 0, 1067, 1069, 7, 16, 0, 0, 1068, 1066, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 133, 1, 0, 0, 0, 1070, 1071, 5, 116, 0, 0, 1071, 1073, 5, 442, 0, 0, 1072, 1074, 3, 360, 180, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 3, 338, 169, 0, 1076, 135, 1, 0, 0, 0, 1077, 1079, 5, 116, 0, 0, 1078, 1080, 5, 498, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 5, 374, 0, 0, 1082, 1084, 3, 360, 180, 0, 1083, 1082, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 3, 348, 174, 0, 1086, 137, 1, 0, 0, 0, 1087, 1088, 5, 116, 0, 0, 1088, 1090, 5, 448, 0, 0, 1089, 1091, 3, 360, 180, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 3, 342, 171, 0, 1093, 1095, 7, 17, 0, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 139, 1, 0, 0, 0, 1096, 1098, 5, 116, 0, 0, 1097, 1099, 5, 498, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 5, 502, 0, 0, 1101, 1103, 3, 360, 180, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1105, 3, 350, 175, 0, 1105, 141, 1, 0, 0, 0, 1106, 1110, 5, 116, 0, 0, 1107, 1111, 5, 498, 0, 0, 1108, 1109, 5, 498, 0, 0, 1109, 1111, 5, 371, 0, 0, 1110, 1107, 1, 0, 0, 0, 1110, 1108, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 5, 153, 0, 0, 1113, 1115, 3, 360, 180, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 3, 294, 147, 0, 1117, 143, 1, 0, 0, 0, 1118, 1120, 5, 132, 0, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1126, 3, 146, 73, 0, 1122, 1126, 3, 156, 78, 0, 1123, 1124, 5, 132, 0, 0, 1124, 1126, 3, 158, 79, 0, 1125, 1119, 1, 0, 0, 0, 1125, 1122, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1126, 145, 1, 0, 0, 0, 1127, 1128, 5, 177, 0, 0, 1128, 1129, 7, 18, 0, 0, 1129, 1138, 3, 348, 174, 0, 1130, 1132, 3, 148, 74, 0, 1131, 1130, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1134, 1, 0, 0, 0, 1133, 1135, 3, 56, 28, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1139, 3, 160, 80, 0, 1137, 1139, 3, 150, 75, 0, 1138, 1131, 1, 0, 0, 0, 1138, 1137, 1, 0, 0, 0, 1139, 147, 1, 0, 0, 0, 1140, 1141, 5, 269, 0, 0, 1141, 1142, 3, 362, 181, 0, 1142, 149, 1, 0, 0, 0, 1143, 1144, 5, 415, 0, 0, 1144, 1149, 3, 152, 76, 0, 1145, 1146, 5, 521, 0, 0, 1146, 1148, 3, 152, 76, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1151, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 151, 1, 0, 0, 0, 1151, 1149, 1, 0, 0, 0, 1152, 1153, 5, 517, 0, 0, 1153, 1158, 3, 154, 77, 0, 1154, 1155, 5, 521, 0, 0, 1155, 1157, 3, 154, 77, 0, 1156, 1154, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1162, 5, 518, 0, 0, 1162, 153, 1, 0, 0, 0, 1163, 1166, 3, 380, 190, 0, 1164, 1166, 3, 288, 144, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1164, 1, 0, 0, 0, 1166, 155, 1, 0, 0, 0, 1167, 1168, 5, 24, 0, 0, 1168, 1169, 5, 355, 0, 0, 1169, 1170, 5, 341, 0, 0, 1170, 1174, 5, 522, 0, 0, 1171, 1172, 3, 146, 73, 0, 1172, 1173, 5, 522, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1171, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 5, 122, 0, 0, 1179, 157, 1, 0, 0, 0, 1180, 1181, 5, 355, 0, 0, 1181, 1182, 5, 341, 0, 0, 1182, 1186, 5, 24, 0, 0, 1183, 1184, 3, 146, 73, 0, 1184, 1185, 5, 522, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1183, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, 5, 122, 0, 0, 1191, 159, 1, 0, 0, 0, 1192, 1193, 6, 80, -1, 0, 1193, 1216, 3, 162, 81, 0, 1194, 1195, 3, 164, 82, 0, 1195, 1196, 3, 160, 80, 5, 1196, 1216, 1, 0, 0, 0, 1197, 1198, 5, 517, 0, 0, 1198, 1199, 3, 160, 80, 0, 1199, 1200, 5, 518, 0, 0, 1200, 1216, 1, 0, 0, 0, 1201, 1203, 3, 172, 86, 0, 1202, 1204, 3, 250, 125, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 1, 0, 0, 0, 1205, 1207, 3, 254, 127, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1216, 1, 0, 0, 0, 1208, 1210, 3, 170, 85, 0, 1209, 1211, 3, 250, 125, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1214, 3, 254, 127, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1216, 1, 0, 0, 0, 1215, 1192, 1, 0, 0, 0, 1215, 1194, 1, 0, 0, 0, 1215, 1197, 1, 0, 0, 0, 1215, 1201, 1, 0, 0, 0, 1215, 1208, 1, 0, 0, 0, 1216, 1231, 1, 0, 0, 0, 1217, 1218, 10, 3, 0, 0, 1218, 1220, 7, 19, 0, 0, 1219, 1221, 5, 5, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 3, 160, 80, 0, 1223, 1225, 3, 250, 125, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1228, 3, 254, 127, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1217, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 161, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1235, 5, 415, 0, 0, 1235, 1240, 3, 278, 139, 0, 1236, 1237, 5, 521, 0, 0, 1237, 1239, 3, 278, 139, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1242, 1, 0, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 163, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1244, 5, 434, 0, 0, 1244, 1249, 3, 166, 83, 0, 1245, 1246, 5, 521, 0, 0, 1246, 1248, 3, 166, 83, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1251, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 165, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1264, 3, 168, 84, 0, 1253, 1254, 5, 517, 0, 0, 1254, 1259, 3, 52, 26, 0, 1255, 1256, 5, 521, 0, 0, 1256, 1258, 3, 52, 26, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1262, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1263, 5, 518, 0, 0, 1263, 1265, 1, 0, 0, 0, 1264, 1253, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1267, 5, 17, 0, 0, 1267, 1268, 5, 517, 0, 0, 1268, 1269, 3, 160, 80, 0, 1269, 1270, 5, 518, 0, 0, 1270, 167, 1, 0, 0, 0, 1271, 1272, 3, 330, 165, 0, 1272, 169, 1, 0, 0, 0, 1273, 1275, 3, 172, 86, 0, 1274, 1276, 3, 192, 96, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1278, 1, 0, 0, 0, 1277, 1279, 3, 224, 112, 0, 1278, 1277, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1282, 3, 226, 113, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1285, 3, 240, 120, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1288, 3, 242, 121, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1294, 1, 0, 0, 0, 1289, 1290, 3, 172, 86, 0, 1290, 1291, 3, 192, 96, 0, 1291, 1292, 3, 248, 124, 0, 1292, 1294, 1, 0, 0, 0, 1293, 1273, 1, 0, 0, 0, 1293, 1289, 1, 0, 0, 0, 1294, 171, 1, 0, 0, 0, 1295, 1297, 5, 337, 0, 0, 1296, 1298, 3, 390, 195, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 3, 174, 87, 0, 1300, 173, 1, 0, 0, 0, 1301, 1306, 3, 176, 88, 0, 1302, 1303, 5, 521, 0, 0, 1303, 1305, 3, 176, 88, 0, 1304, 1302, 1, 0, 0, 0, 1305, 1308, 1, 0, 0, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 175, 1, 0, 0, 0, 1308, 1306, 1, 0, 0, 0, 1309, 1331, 3, 178, 89, 0, 1310, 1316, 3, 182, 91, 0, 1311, 1317, 3, 184, 92, 0, 1312, 1314, 5, 17, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 3, 278, 139, 0, 1316, 1311, 1, 0, 0, 0, 1316, 1313, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1331, 1, 0, 0, 0, 1318, 1320, 3, 188, 94, 0, 1319, 1321, 3, 184, 92, 0, 1320, 1319, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1331, 1, 0, 0, 0, 1322, 1328, 3, 180, 90, 0, 1323, 1329, 3, 184, 92, 0, 1324, 1326, 5, 17, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 3, 52, 26, 0, 1328, 1323, 1, 0, 0, 0, 1328, 1325, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1309, 1, 0, 0, 0, 1330, 1310, 1, 0, 0, 0, 1330, 1318, 1, 0, 0, 0, 1330, 1322, 1, 0, 0, 0, 1331, 177, 1, 0, 0, 0, 1332, 1333, 3, 190, 95, 0, 1333, 179, 1, 0, 0, 0, 1334, 1335, 3, 278, 139, 0, 1335, 181, 1, 0, 0, 0, 1336, 1337, 3, 52, 26, 0, 1337, 183, 1, 0, 0, 0, 1338, 1340, 5, 17, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 3, 330, 165, 0, 1342, 185, 1, 0, 0, 0, 1343, 1359, 3, 190, 95, 0, 1344, 1349, 3, 278, 139, 0, 1345, 1347, 5, 17, 0, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1350, 3, 52, 26, 0, 1349, 1346, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1359, 1, 0, 0, 0, 1351, 1356, 3, 52, 26, 0, 1352, 1354, 5, 17, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 3, 278, 139, 0, 1356, 1353, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1359, 1, 0, 0, 0, 1358, 1343, 1, 0, 0, 0, 1358, 1344, 1, 0, 0, 0, 1358, 1351, 1, 0, 0, 0, 1359, 187, 1, 0, 0, 0, 1360, 1365, 3, 330, 165, 0, 1361, 1362, 5, 514, 0, 0, 1362, 1364, 3, 330, 165, 0, 1363, 1361, 1, 0, 0, 0, 1364, 1367, 1, 0, 0, 0, 1365, 1363, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1368, 1, 0, 0, 0, 1367, 1365, 1, 0, 0, 0, 1368, 1369, 5, 514, 0, 0, 1369, 1371, 1, 0, 0, 0, 1370, 1360, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 5, 528, 0, 0, 1373, 189, 1, 0, 0, 0, 1374, 1375, 3, 290, 145, 0, 1375, 1376, 5, 263, 0, 0, 1376, 1377, 3, 246, 123, 0, 1377, 1378, 5, 17, 0, 0, 1378, 1379, 3, 330, 165, 0, 1379, 1387, 1, 0, 0, 0, 1380, 1381, 3, 290, 145, 0, 1381, 1382, 5, 263, 0, 0, 1382, 1383, 3, 322, 161, 0, 1383, 1384, 5, 17, 0, 0, 1384, 1385, 3, 330, 165, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1374, 1, 0, 0, 0, 1386, 1380, 1, 0, 0, 0, 1387, 191, 1, 0, 0, 0, 1388, 1389, 5, 151, 0, 0, 1389, 1390, 3, 194, 97, 0, 1390, 193, 1, 0, 0, 0, 1391, 1392, 6, 97, -1, 0, 1392, 1397, 3, 196, 98, 0, 1393, 1394, 5, 521, 0, 0, 1394, 1396, 3, 196, 98, 0, 1395, 1393, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1403, 1, 0, 0, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1403, 3, 208, 104, 0, 1401, 1403, 3, 210, 105, 0, 1402, 1391, 1, 0, 0, 0, 1402, 1400, 1, 0, 0, 0, 1402, 1401, 1, 0, 0, 0, 1403, 1425, 1, 0, 0, 0, 1404, 1405, 10, 3, 0, 0, 1405, 1406, 5, 73, 0, 0, 1406, 1407, 5, 185, 0, 0, 1407, 1424, 3, 194, 97, 4, 1408, 1410, 10, 4, 0, 0, 1409, 1411, 5, 234, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1413, 1, 0, 0, 0, 1412, 1414, 7, 20, 0, 0, 1413, 1412, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1417, 5, 262, 0, 0, 1416, 1415, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 5, 185, 0, 0, 1419, 1421, 3, 194, 97, 0, 1420, 1422, 3, 222, 111, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1404, 1, 0, 0, 0, 1423, 1408, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 195, 1, 0, 0, 0, 1427, 1425, 1, 0, 0, 0, 1428, 1430, 3, 198, 99, 0, 1429, 1431, 3, 320, 160, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 197, 1, 0, 0, 0, 1432, 1434, 5, 374, 0, 0, 1433, 1432, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1437, 3, 348, 174, 0, 1436, 1438, 3, 204, 102, 0, 1437, 1436, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1446, 1, 0, 0, 0, 1439, 1441, 3, 350, 175, 0, 1440, 1442, 3, 204, 102, 0, 1441, 1440, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1446, 1, 0, 0, 0, 1443, 1446, 3, 200, 100, 0, 1444, 1446, 3, 202, 101, 0, 1445, 1433, 1, 0, 0, 0, 1445, 1439, 1, 0, 0, 0, 1445, 1443, 1, 0, 0, 0, 1445, 1444, 1, 0, 0, 0, 1446, 199, 1, 0, 0, 0, 1447, 1448, 5, 199, 0, 0, 1448, 1449, 5, 374, 0, 0, 1449, 1450, 5, 517, 0, 0, 1450, 1451, 3, 288, 144, 0, 1451, 1452, 5, 518, 0, 0, 1452, 201, 1, 0, 0, 0, 1453, 1455, 5, 199, 0, 0, 1454, 1453, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1457, 5, 517, 0, 0, 1457, 1458, 3, 160, 80, 0, 1458, 1459, 5, 518, 0, 0, 1459, 1466, 1, 0, 0, 0, 1460, 1461, 5, 406, 0, 0, 1461, 1462, 5, 517, 0, 0, 1462, 1463, 3, 278, 139, 0, 1463, 1464, 5, 518, 0, 0, 1464, 1466, 1, 0, 0, 0, 1465, 1454, 1, 0, 0, 0, 1465, 1460, 1, 0, 0, 0, 1466, 203, 1, 0, 0, 0, 1467, 1468, 5, 146, 0, 0, 1468, 1469, 5, 372, 0, 0, 1469, 1470, 5, 17, 0, 0, 1470, 1471, 5, 250, 0, 0, 1471, 1472, 3, 206, 103, 0, 1472, 205, 1, 0, 0, 0, 1473, 1474, 3, 278, 139, 0, 1474, 207, 1, 0, 0, 0, 1475, 1476, 5, 517, 0, 0, 1476, 1477, 3, 150, 75, 0, 1477, 1478, 5, 518, 0, 0, 1478, 1479, 3, 320, 160, 0, 1479, 209, 1, 0, 0, 0, 1480, 1481, 5, 374, 0, 0, 1481, 1482, 5, 517, 0, 0, 1482, 1483, 3, 212, 106, 0, 1483, 1484, 5, 518, 0, 0, 1484, 211, 1, 0, 0, 0, 1485, 1486, 3, 214, 107, 0, 1486, 1487, 5, 517, 0, 0, 1487, 1492, 3, 216, 108, 0, 1488, 1489, 5, 521, 0, 0, 1489, 1491, 3, 216, 108, 0, 1490, 1488, 1, 0, 0, 0, 1491, 1494, 1, 0, 0, 0, 1492, 1490, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1495, 1, 0, 0, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1496, 5, 518, 0, 0, 1496, 213, 1, 0, 0, 0, 1497, 1498, 7, 21, 0, 0, 1498, 215, 1, 0, 0, 0, 1499, 1500, 5, 374, 0, 0, 1500, 1515, 3, 238, 119, 0, 1501, 1515, 3, 220, 110, 0, 1502, 1515, 3, 308, 154, 0, 1503, 1504, 5, 447, 0, 0, 1504, 1505, 5, 537, 0, 0, 1505, 1506, 5, 374, 0, 0, 1506, 1515, 3, 238, 119, 0, 1507, 1508, 5, 499, 0, 0, 1508, 1509, 5, 537, 0, 0, 1509, 1515, 3, 220, 110, 0, 1510, 1511, 3, 218, 109, 0, 1511, 1512, 5, 537, 0, 0, 1512, 1513, 3, 308, 154, 0, 1513, 1515, 1, 0, 0, 0, 1514, 1499, 1, 0, 0, 0, 1514, 1501, 1, 0, 0, 0, 1514, 1502, 1, 0, 0, 0, 1514, 1503, 1, 0, 0, 0, 1514, 1507, 1, 0, 0, 0, 1514, 1510, 1, 0, 0, 0, 1515, 217, 1, 0, 0, 0, 1516, 1517, 7, 22, 0, 0, 1517, 219, 1, 0, 0, 0, 1518, 1519, 5, 452, 0, 0, 1519, 1520, 5, 517, 0, 0, 1520, 1521, 3, 52, 26, 0, 1521, 1522, 5, 518, 0, 0, 1522, 221, 1, 0, 0, 0, 1523, 1524, 5, 254, 0, 0, 1524, 1528, 3, 280, 140, 0, 1525, 1526, 5, 413, 0, 0, 1526, 1528, 3, 56, 28, 0, 1527, 1523, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1528, 223, 1, 0, 0, 0, 1529, 1530, 5, 431, 0, 0, 1530, 1531, 3, 280, 140, 0, 1531, 225, 1, 0, 0, 0, 1532, 1533, 5, 159, 0, 0, 1533, 1534, 5, 34, 0, 0, 1534, 1539, 3, 228, 114, 0, 1535, 1536, 5, 521, 0, 0, 1536, 1538, 3, 228, 114, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 227, 1, 0, 0, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1583, 3, 52, 26, 0, 1543, 1583, 3, 234, 117, 0, 1544, 1545, 5, 517, 0, 0, 1545, 1583, 5, 518, 0, 0, 1546, 1547, 5, 517, 0, 0, 1547, 1552, 3, 278, 139, 0, 1548, 1549, 5, 521, 0, 0, 1549, 1551, 3, 278, 139, 0, 1550, 1548, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 1, 0, 0, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1556, 5, 518, 0, 0, 1556, 1583, 1, 0, 0, 0, 1557, 1558, 3, 232, 116, 0, 1558, 1559, 5, 517, 0, 0, 1559, 1564, 3, 278, 139, 0, 1560, 1561, 5, 521, 0, 0, 1561, 1563, 3, 278, 139, 0, 1562, 1560, 1, 0, 0, 0, 1563, 1566, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1567, 1, 0, 0, 0, 1566, 1564, 1, 0, 0, 0, 1567, 1568, 5, 518, 0, 0, 1568, 1583, 1, 0, 0, 0, 1569, 1570, 3, 230, 115, 0, 1570, 1571, 5, 517, 0, 0, 1571, 1576, 3, 228, 114, 0, 1572, 1573, 5, 521, 0, 0, 1573, 1575, 3, 228, 114, 0, 1574, 1572, 1, 0, 0, 0, 1575, 1578, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 1, 0, 0, 0, 1578, 1576, 1, 0, 0, 0, 1579, 1580, 5, 518, 0, 0, 1580, 1583, 1, 0, 0, 0, 1581, 1583, 3, 278, 139, 0, 1582, 1542, 1, 0, 0, 0, 1582, 1543, 1, 0, 0, 0, 1582, 1544, 1, 0, 0, 0, 1582, 1546, 1, 0, 0, 0, 1582, 1557, 1, 0, 0, 0, 1582, 1569, 1, 0, 0, 0, 1582, 1581, 1, 0, 0, 0, 1583, 229, 1, 0, 0, 0, 1584, 1585, 5, 160, 0, 0, 1585, 1586, 5, 494, 0, 0, 1586, 231, 1, 0, 0, 0, 1587, 1588, 7, 23, 0, 0, 1588, 233, 1, 0, 0, 0, 1589, 1590, 3, 236, 118, 0, 1590, 1591, 5, 517, 0, 0, 1591, 1592, 3, 238, 119, 0, 1592, 1593, 5, 521, 0, 0, 1593, 1594, 3, 308, 154, 0, 1594, 1595, 5, 518, 0, 0, 1595, 235, 1, 0, 0, 0, 1596, 1597, 7, 24, 0, 0, 1597, 237, 1, 0, 0, 0, 1598, 1599, 3, 354, 177, 0, 1599, 239, 1, 0, 0, 0, 1600, 1601, 5, 163, 0, 0, 1601, 1602, 3, 280, 140, 0, 1602, 241, 1, 0, 0, 0, 1603, 1604, 5, 433, 0, 0, 1604, 1609, 3, 244, 122, 0, 1605, 1606, 5, 521, 0, 0, 1606, 1608, 3, 244, 122, 0, 1607, 1605, 1, 0, 0, 0, 1608, 1611, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 243, 1, 0, 0, 0, 1611, 1609, 1, 0, 0, 0, 1612, 1613, 3, 322, 161, 0, 1613, 1614, 5, 17, 0, 0, 1614, 1615, 3, 246, 123, 0, 1615, 245, 1, 0, 0, 0, 1616, 1618, 3, 322, 161, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1621, 5, 517, 0, 0, 1620, 1622, 3, 256, 128, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1625, 3, 250, 125, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1627, 1, 0, 0, 0, 1626, 1628, 3, 272, 136, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 518, 0, 0, 1630, 247, 1, 0, 0, 0, 1631, 1632, 5, 214, 0, 0, 1632, 1634, 5, 517, 0, 0, 1633, 1635, 3, 256, 128, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1638, 3, 250, 125, 0, 1637, 1636, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1640, 1, 0, 0, 0, 1639, 1641, 3, 260, 130, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1644, 3, 266, 133, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1646, 1, 0, 0, 0, 1645, 1647, 3, 268, 134, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1650, 3, 262, 131, 0, 1649, 1648, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 3, 270, 135, 0, 1652, 1657, 5, 518, 0, 0, 1653, 1655, 5, 17, 0, 0, 1654, 1653, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1658, 3, 330, 165, 0, 1657, 1654, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 249, 1, 0, 0, 0, 1659, 1660, 5, 259, 0, 0, 1660, 1661, 5, 34, 0, 0, 1661, 1666, 3, 252, 126, 0, 1662, 1663, 5, 521, 0, 0, 1663, 1665, 3, 252, 126, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1668, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 251, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 1671, 3, 52, 26, 0, 1670, 1672, 7, 25, 0, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1675, 1, 0, 0, 0, 1673, 1674, 5, 477, 0, 0, 1674, 1676, 7, 26, 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 253, 1, 0, 0, 0, 1677, 1680, 5, 205, 0, 0, 1678, 1681, 5, 5, 0, 0, 1679, 1681, 3, 278, 139, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1679, 1, 0, 0, 0, 1681, 255, 1, 0, 0, 0, 1682, 1683, 5, 269, 0, 0, 1683, 1686, 5, 34, 0, 0, 1684, 1687, 3, 52, 26, 0, 1685, 1687, 3, 290, 145, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1685, 1, 0, 0, 0, 1687, 1695, 1, 0, 0, 0, 1688, 1691, 5, 521, 0, 0, 1689, 1692, 3, 52, 26, 0, 1690, 1692, 3, 290, 145, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1690, 1, 0, 0, 0, 1692, 1694, 1, 0, 0, 0, 1693, 1688, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 257, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1715, 5, 528, 0, 0, 1699, 1715, 5, 531, 0, 0, 1700, 1715, 5, 536, 0, 0, 1701, 1702, 5, 519, 0, 0, 1702, 1703, 5, 539, 0, 0, 1703, 1704, 5, 521, 0, 0, 1704, 1705, 5, 539, 0, 0, 1705, 1715, 5, 520, 0, 0, 1706, 1707, 5, 519, 0, 0, 1707, 1708, 5, 539, 0, 0, 1708, 1709, 5, 521, 0, 0, 1709, 1715, 5, 520, 0, 0, 1710, 1711, 5, 519, 0, 0, 1711, 1712, 5, 521, 0, 0, 1712, 1713, 5, 539, 0, 0, 1713, 1715, 5, 520, 0, 0, 1714, 1698, 1, 0, 0, 0, 1714, 1699, 1, 0, 0, 0, 1714, 1700, 1, 0, 0, 0, 1714, 1701, 1, 0, 0, 0, 1714, 1706, 1, 0, 0, 0, 1714, 1710, 1, 0, 0, 0, 1715, 259, 1, 0, 0, 0, 1716, 1717, 5, 216, 0, 0, 1717, 1722, 3, 186, 93, 0, 1718, 1719, 5, 521, 0, 0, 1719, 1721, 3, 186, 93, 0, 1720, 1718, 1, 0, 0, 0, 1721, 1724, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 261, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1725, 1726, 5, 272, 0, 0, 1726, 1728, 5, 517, 0, 0, 1727, 1729, 3, 264, 132, 0, 1728, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1728, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1734, 5, 518, 0, 0, 1733, 1735, 3, 276, 138, 0, 1734, 1733, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 263, 1, 0, 0, 0, 1736, 1738, 3, 332, 166, 0, 1737, 1739, 3, 258, 129, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 265, 1, 0, 0, 0, 1740, 1741, 5, 5, 0, 0, 1741, 1742, 5, 323, 0, 0, 1742, 1743, 5, 273, 0, 0, 1743, 1749, 5, 211, 0, 0, 1744, 1745, 5, 255, 0, 0, 1745, 1746, 5, 322, 0, 0, 1746, 1747, 5, 273, 0, 0, 1747, 1749, 5, 211, 0, 0, 1748, 1740, 1, 0, 0, 0, 1748, 1744, 1, 0, 0, 0, 1749, 267, 1, 0, 0, 0, 1750, 1751, 5, 439, 0, 0, 1751, 1752, 5, 211, 0, 0, 1752, 1753, 5, 344, 0, 0, 1753, 1754, 5, 479, 0, 0, 1754, 1755, 5, 468, 0, 0, 1755, 1775, 5, 322, 0, 0, 1756, 1757, 5, 439, 0, 0, 1757, 1758, 5, 211, 0, 0, 1758, 1759, 5, 344, 0, 0, 1759, 1760, 5, 389, 0, 0, 1760, 1761, 5, 238, 0, 0, 1761, 1775, 5, 322, 0, 0, 1762, 1763, 5, 439, 0, 0, 1763, 1764, 5, 211, 0, 0, 1764, 1765, 5, 344, 0, 0, 1765, 1766, 5, 389, 0, 0, 1766, 1767, 5, 468, 0, 0, 1767, 1775, 3, 332, 166, 0, 1768, 1769, 5, 439, 0, 0, 1769, 1770, 5, 211, 0, 0, 1770, 1771, 5, 344, 0, 0, 1771, 1772, 5, 389, 0, 0, 1772, 1773, 5, 458, 0, 0, 1773, 1775, 3, 332, 166, 0, 1774, 1750, 1, 0, 0, 0, 1774, 1756, 1, 0, 0, 0, 1774, 1762, 1, 0, 0, 0, 1774, 1768, 1, 0, 0, 0, 1775, 269, 1, 0, 0, 0, 1776, 1777, 5, 105, 0, 0, 1777, 1782, 3, 186, 93, 0, 1778, 1779, 5, 521, 0, 0, 1779, 1781, 3, 186, 93, 0, 1780, 1778, 1, 0, 0, 0, 1781, 1784, 1, 0, 0, 0, 1782, 1780, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 271, 1, 0, 0, 0, 1784, 1782, 1, 0, 0, 0, 1785, 1786, 5, 293, 0, 0, 1786, 1787, 5, 27, 0, 0, 1787, 1788, 3, 308, 154, 0, 1788, 1789, 3, 274, 137, 0, 1789, 1795, 1, 0, 0, 0, 1790, 1791, 5, 323, 0, 0, 1791, 1792, 5, 27, 0, 0, 1792, 1793, 5, 539, 0, 0, 1793, 1795, 3, 274, 137, 0, 1794, 1785, 1, 0, 0, 0, 1794, 1790, 1, 0, 0, 0, 1795, 273, 1, 0, 0, 0, 1796, 1797, 5, 481, 0, 0, 1797, 1798, 5, 10, 0, 0, 1798, 1799, 5, 76, 0, 0, 1799, 1800, 5, 322, 0, 0, 1800, 275, 1, 0, 0, 0, 1801, 1802, 5, 435, 0, 0, 1802, 1803, 3, 308, 154, 0, 1803, 277, 1, 0, 0, 0, 1804, 1805, 3, 280, 140, 0, 1805, 279, 1, 0, 0, 0, 1806, 1807, 6, 140, -1, 0, 1807, 1808, 5, 242, 0, 0, 1808, 1819, 3, 280, 140, 6, 1809, 1810, 5, 133, 0, 0, 1810, 1811, 5, 517, 0, 0, 1811, 1812, 3, 160, 80, 0, 1812, 1813, 5, 518, 0, 0, 1813, 1819, 1, 0, 0, 0, 1814, 1816, 3, 286, 143, 0, 1815, 1817, 3, 282, 141, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1819, 1, 0, 0, 0, 1818, 1806, 1, 0, 0, 0, 1818, 1809, 1, 0, 0, 0, 1818, 1814, 1, 0, 0, 0, 1819, 1834, 1, 0, 0, 0, 1820, 1821, 10, 3, 0, 0, 1821, 1822, 5, 10, 0, 0, 1822, 1833, 3, 280, 140, 4, 1823, 1824, 10, 2, 0, 0, 1824, 1825, 5, 258, 0, 0, 1825, 1833, 3, 280, 140, 3, 1826, 1827, 10, 1, 0, 0, 1827, 1829, 5, 184, 0, 0, 1828, 1830, 5, 242, 0, 0, 1829, 1828, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 7, 27, 0, 0, 1832, 1820, 1, 0, 0, 0, 1832, 1823, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1833, 1836, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 281, 1, 0, 0, 0, 1836, 1834, 1, 0, 0, 0, 1837, 1839, 5, 242, 0, 0, 1838, 1837, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1842, 5, 27, 0, 0, 1841, 1843, 7, 28, 0, 0, 1842, 1841, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1845, 3, 286, 143, 0, 1845, 1846, 5, 10, 0, 0, 1846, 1847, 3, 286, 143, 0, 1847, 1912, 1, 0, 0, 0, 1848, 1850, 5, 242, 0, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1852, 5, 170, 0, 0, 1852, 1853, 5, 517, 0, 0, 1853, 1858, 3, 278, 139, 0, 1854, 1855, 5, 521, 0, 0, 1855, 1857, 3, 278, 139, 0, 1856, 1854, 1, 0, 0, 0, 1857, 1860, 1, 0, 0, 0, 1858, 1856, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1861, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1862, 5, 518, 0, 0, 1862, 1912, 1, 0, 0, 0, 1863, 1865, 5, 242, 0, 0, 1864, 1863, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 5, 170, 0, 0, 1867, 1868, 5, 517, 0, 0, 1868, 1869, 3, 160, 80, 0, 1869, 1870, 5, 518, 0, 0, 1870, 1912, 1, 0, 0, 0, 1871, 1872, 5, 133, 0, 0, 1872, 1873, 5, 517, 0, 0, 1873, 1874, 3, 160, 80, 0, 1874, 1875, 5, 518, 0, 0, 1875, 1912, 1, 0, 0, 0, 1876, 1878, 5, 242, 0, 0, 1877, 1876, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 5, 319, 0, 0, 1880, 1912, 3, 286, 143, 0, 1881, 1912, 3, 284, 142, 0, 1882, 1884, 5, 184, 0, 0, 1883, 1885, 5, 242, 0, 0, 1884, 1883, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1912, 7, 27, 0, 0, 1887, 1889, 5, 184, 0, 0, 1888, 1890, 5, 242, 0, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 5, 113, 0, 0, 1892, 1893, 5, 151, 0, 0, 1893, 1912, 3, 286, 143, 0, 1894, 1896, 5, 242, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1898, 5, 343, 0, 0, 1898, 1899, 5, 389, 0, 0, 1899, 1902, 3, 286, 143, 0, 1900, 1901, 5, 127, 0, 0, 1901, 1903, 3, 384, 192, 0, 1902, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1912, 1, 0, 0, 0, 1904, 1905, 5, 184, 0, 0, 1905, 1909, 5, 186, 0, 0, 1906, 1910, 5, 414, 0, 0, 1907, 1910, 5, 13, 0, 0, 1908, 1910, 3, 330, 165, 0, 1909, 1906, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1912, 1, 0, 0, 0, 1911, 1838, 1, 0, 0, 0, 1911, 1849, 1, 0, 0, 0, 1911, 1864, 1, 0, 0, 0, 1911, 1871, 1, 0, 0, 0, 1911, 1877, 1, 0, 0, 0, 1911, 1881, 1, 0, 0, 0, 1911, 1882, 1, 0, 0, 0, 1911, 1887, 1, 0, 0, 0, 1911, 1895, 1, 0, 0, 0, 1911, 1904, 1, 0, 0, 0, 1912, 283, 1, 0, 0, 0, 1913, 1915, 5, 242, 0, 0, 1914, 1913, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 5, 203, 0, 0, 1917, 1931, 7, 29, 0, 0, 1918, 1919, 5, 517, 0, 0, 1919, 1932, 5, 518, 0, 0, 1920, 1921, 5, 517, 0, 0, 1921, 1926, 3, 278, 139, 0, 1922, 1923, 5, 521, 0, 0, 1923, 1925, 3, 278, 139, 0, 1924, 1922, 1, 0, 0, 0, 1925, 1928, 1, 0, 0, 0, 1926, 1924, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1929, 1, 0, 0, 0, 1928, 1926, 1, 0, 0, 0, 1929, 1930, 5, 518, 0, 0, 1930, 1932, 1, 0, 0, 0, 1931, 1918, 1, 0, 0, 0, 1931, 1920, 1, 0, 0, 0, 1932, 1943, 1, 0, 0, 0, 1933, 1935, 5, 242, 0, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 203, 0, 0, 1937, 1940, 3, 286, 143, 0, 1938, 1939, 5, 127, 0, 0, 1939, 1941, 3, 384, 192, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1943, 1, 0, 0, 0, 1942, 1914, 1, 0, 0, 0, 1942, 1934, 1, 0, 0, 0, 1943, 285, 1, 0, 0, 0, 1944, 1945, 6, 143, -1, 0, 1945, 1949, 3, 290, 145, 0, 1946, 1947, 7, 30, 0, 0, 1947, 1949, 3, 286, 143, 7, 1948, 1944, 1, 0, 0, 0, 1948, 1946, 1, 0, 0, 0, 1949, 1971, 1, 0, 0, 0, 1950, 1951, 10, 6, 0, 0, 1951, 1952, 7, 31, 0, 0, 1952, 1970, 3, 286, 143, 7, 1953, 1954, 10, 5, 0, 0, 1954, 1955, 7, 32, 0, 0, 1955, 1970, 3, 286, 143, 6, 1956, 1957, 10, 4, 0, 0, 1957, 1958, 5, 512, 0, 0, 1958, 1970, 3, 286, 143, 5, 1959, 1960, 10, 3, 0, 0, 1960, 1961, 5, 513, 0, 0, 1961, 1970, 3, 286, 143, 4, 1962, 1963, 10, 2, 0, 0, 1963, 1964, 5, 511, 0, 0, 1964, 1970, 3, 286, 143, 3, 1965, 1966, 10, 1, 0, 0, 1966, 1967, 3, 372, 186, 0, 1967, 1968, 3, 286, 143, 2, 1968, 1970, 1, 0, 0, 0, 1969, 1950, 1, 0, 0, 0, 1969, 1953, 1, 0, 0, 0, 1969, 1956, 1, 0, 0, 0, 1969, 1959, 1, 0, 0, 0, 1969, 1962, 1, 0, 0, 0, 1969, 1965, 1, 0, 0, 0, 1970, 1973, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 287, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1994, 3, 398, 199, 0, 1975, 1994, 3, 296, 148, 0, 1976, 1977, 3, 298, 149, 0, 1977, 1989, 5, 517, 0, 0, 1978, 1980, 3, 390, 195, 0, 1979, 1978, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1986, 3, 300, 150, 0, 1982, 1983, 5, 521, 0, 0, 1983, 1985, 3, 300, 150, 0, 1984, 1982, 1, 0, 0, 0, 1985, 1988, 1, 0, 0, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1990, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1979, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1992, 5, 518, 0, 0, 1992, 1994, 1, 0, 0, 0, 1993, 1974, 1, 0, 0, 0, 1993, 1975, 1, 0, 0, 0, 1993, 1976, 1, 0, 0, 0, 1994, 289, 1, 0, 0, 0, 1995, 1996, 6, 145, -1, 0, 1996, 1998, 5, 40, 0, 0, 1997, 1999, 3, 336, 168, 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, 2004, 1, 0, 0, 0, 2002, 2003, 5, 120, 0, 0, 2003, 2005, 3, 278, 139, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 5, 122, 0, 0, 2007, 2071, 1, 0, 0, 0, 2008, 2009, 5, 40, 0, 0, 2009, 2011, 3, 278, 139, 0, 2010, 2012, 3, 336, 168, 0, 2011, 2010, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2017, 1, 0, 0, 0, 2015, 2016, 5, 120, 0, 0, 2016, 2018, 3, 278, 139, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2020, 5, 122, 0, 0, 2020, 2071, 1, 0, 0, 0, 2021, 2022, 5, 41, 0, 0, 2022, 2023, 5, 517, 0, 0, 2023, 2024, 3, 278, 139, 0, 2024, 2025, 5, 17, 0, 0, 2025, 2026, 3, 58, 29, 0, 2026, 2027, 5, 518, 0, 0, 2027, 2071, 1, 0, 0, 0, 2028, 2029, 5, 458, 0, 0, 2029, 2030, 5, 517, 0, 0, 2030, 2033, 3, 278, 139, 0, 2031, 2032, 5, 462, 0, 0, 2032, 2034, 5, 477, 0, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2036, 5, 518, 0, 0, 2036, 2071, 1, 0, 0, 0, 2037, 2038, 5, 468, 0, 0, 2038, 2039, 5, 517, 0, 0, 2039, 2042, 3, 278, 139, 0, 2040, 2041, 5, 462, 0, 0, 2041, 2043, 5, 477, 0, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 5, 518, 0, 0, 2045, 2071, 1, 0, 0, 0, 2046, 2047, 5, 282, 0, 0, 2047, 2048, 5, 517, 0, 0, 2048, 2049, 3, 286, 143, 0, 2049, 2050, 5, 170, 0, 0, 2050, 2051, 3, 286, 143, 0, 2051, 2052, 5, 518, 0, 0, 2052, 2071, 1, 0, 0, 0, 2053, 2071, 3, 380, 190, 0, 2054, 2071, 5, 528, 0, 0, 2055, 2056, 3, 354, 177, 0, 2056, 2057, 5, 514, 0, 0, 2057, 2058, 5, 528, 0, 0, 2058, 2071, 1, 0, 0, 0, 2059, 2060, 5, 517, 0, 0, 2060, 2061, 3, 160, 80, 0, 2061, 2062, 5, 518, 0, 0, 2062, 2071, 1, 0, 0, 0, 2063, 2071, 3, 288, 144, 0, 2064, 2071, 3, 54, 27, 0, 2065, 2071, 3, 302, 151, 0, 2066, 2067, 5, 517, 0, 0, 2067, 2068, 3, 278, 139, 0, 2068, 2069, 5, 518, 0, 0, 2069, 2071, 1, 0, 0, 0, 2070, 1995, 1, 0, 0, 0, 2070, 2008, 1, 0, 0, 0, 2070, 2021, 1, 0, 0, 0, 2070, 2028, 1, 0, 0, 0, 2070, 2037, 1, 0, 0, 0, 2070, 2046, 1, 0, 0, 0, 2070, 2053, 1, 0, 0, 0, 2070, 2054, 1, 0, 0, 0, 2070, 2055, 1, 0, 0, 0, 2070, 2059, 1, 0, 0, 0, 2070, 2063, 1, 0, 0, 0, 2070, 2064, 1, 0, 0, 0, 2070, 2065, 1, 0, 0, 0, 2070, 2066, 1, 0, 0, 0, 2071, 2079, 1, 0, 0, 0, 2072, 2073, 10, 4, 0, 0, 2073, 2074, 5, 515, 0, 0, 2074, 2075, 3, 286, 143, 0, 2075, 2076, 5, 516, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2072, 1, 0, 0, 0, 2078, 2081, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 291, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2083, 3, 354, 177, 0, 2083, 293, 1, 0, 0, 0, 2084, 2089, 3, 402, 201, 0, 2085, 2089, 3, 398, 199, 0, 2086, 2089, 3, 400, 200, 0, 2087, 2089, 3, 354, 177, 0, 2088, 2084, 1, 0, 0, 0, 2088, 2085, 1, 0, 0, 0, 2088, 2086, 1, 0, 0, 0, 2088, 2087, 1, 0, 0, 0, 2089, 295, 1, 0, 0, 0, 2090, 2091, 3, 400, 200, 0, 2091, 2092, 5, 538, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2095, 3, 308, 154, 0, 2094, 2090, 1, 0, 0, 0, 2094, 2093, 1, 0, 0, 0, 2095, 297, 1, 0, 0, 0, 2096, 2099, 3, 402, 201, 0, 2097, 2099, 3, 354, 177, 0, 2098, 2096, 1, 0, 0, 0, 2098, 2097, 1, 0, 0, 0, 2099, 299, 1, 0, 0, 0, 2100, 2105, 3, 396, 198, 0, 2101, 2105, 3, 394, 197, 0, 2102, 2105, 3, 392, 196, 0, 2103, 2105, 3, 278, 139, 0, 2104, 2100, 1, 0, 0, 0, 2104, 2101, 1, 0, 0, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2103, 1, 0, 0, 0, 2105, 301, 1, 0, 0, 0, 2106, 2107, 3, 354, 177, 0, 2107, 303, 1, 0, 0, 0, 2108, 2109, 3, 330, 165, 0, 2109, 305, 1, 0, 0, 0, 2110, 2113, 3, 330, 165, 0, 2111, 2113, 3, 302, 151, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2111, 1, 0, 0, 0, 2113, 307, 1, 0, 0, 0, 2114, 2117, 5, 182, 0, 0, 2115, 2118, 3, 310, 155, 0, 2116, 2118, 3, 314, 157, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 309, 1, 0, 0, 0, 2119, 2121, 3, 312, 156, 0, 2120, 2122, 3, 316, 158, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 311, 1, 0, 0, 0, 2123, 2124, 3, 318, 159, 0, 2124, 2125, 3, 394, 197, 0, 2125, 2127, 1, 0, 0, 0, 2126, 2123, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2126, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 313, 1, 0, 0, 0, 2130, 2133, 3, 316, 158, 0, 2131, 2134, 3, 312, 156, 0, 2132, 2134, 3, 316, 158, 0, 2133, 2131, 1, 0, 0, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 315, 1, 0, 0, 0, 2135, 2136, 3, 318, 159, 0, 2136, 2137, 3, 394, 197, 0, 2137, 2138, 5, 389, 0, 0, 2138, 2139, 3, 394, 197, 0, 2139, 317, 1, 0, 0, 0, 2140, 2142, 7, 33, 0, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2146, 7, 34, 0, 0, 2144, 2146, 5, 538, 0, 0, 2145, 2141, 1, 0, 0, 0, 2145, 2144, 1, 0, 0, 0, 2146, 319, 1, 0, 0, 0, 2147, 2149, 5, 17, 0, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2152, 3, 330, 165, 0, 2151, 2153, 3, 326, 163, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 321, 1, 0, 0, 0, 2154, 2155, 3, 330, 165, 0, 2155, 2156, 3, 324, 162, 0, 2156, 323, 1, 0, 0, 0, 2157, 2158, 5, 222, 0, 0, 2158, 2160, 3, 330, 165, 0, 2159, 2157, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2165, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2159, 1, 0, 0, 0, 2164, 2163, 1, 0, 0, 0, 2165, 325, 1, 0, 0, 0, 2166, 2167, 5, 517, 0, 0, 2167, 2168, 3, 328, 164, 0, 2168, 2169, 5, 518, 0, 0, 2169, 327, 1, 0, 0, 0, 2170, 2175, 3, 330, 165, 0, 2171, 2172, 5, 521, 0, 0, 2172, 2174, 3, 330, 165, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2177, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 329, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2178, 2182, 3, 332, 166, 0, 2179, 2182, 3, 334, 167, 0, 2180, 2182, 3, 404, 202, 0, 2181, 2178, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2180, 1, 0, 0, 0, 2182, 331, 1, 0, 0, 0, 2183, 2184, 7, 35, 0, 0, 2184, 333, 1, 0, 0, 0, 2185, 2186, 5, 538, 0, 0, 2186, 335, 1, 0, 0, 0, 2187, 2188, 5, 429, 0, 0, 2188, 2189, 3, 278, 139, 0, 2189, 2190, 5, 377, 0, 0, 2190, 2191, 3, 278, 139, 0, 2191, 337, 1, 0, 0, 0, 2192, 2193, 3, 330, 165, 0, 2193, 339, 1, 0, 0, 0, 2194, 2195, 3, 330, 165, 0, 2195, 341, 1, 0, 0, 0, 2196, 2199, 3, 330, 165, 0, 2197, 2198, 5, 514, 0, 0, 2198, 2200, 3, 330, 165, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 343, 1, 0, 0, 0, 2201, 2204, 3, 330, 165, 0, 2202, 2203, 5, 514, 0, 0, 2203, 2205, 3, 330, 165, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 345, 1, 0, 0, 0, 2206, 2209, 3, 330, 165, 0, 2207, 2208, 5, 514, 0, 0, 2208, 2210, 3, 330, 165, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2219, 1, 0, 0, 0, 2211, 2212, 3, 330, 165, 0, 2212, 2213, 5, 514, 0, 0, 2213, 2216, 3, 330, 165, 0, 2214, 2215, 5, 514, 0, 0, 2215, 2217, 3, 330, 165, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2219, 1, 0, 0, 0, 2218, 2206, 1, 0, 0, 0, 2218, 2211, 1, 0, 0, 0, 2219, 347, 1, 0, 0, 0, 2220, 2223, 3, 330, 165, 0, 2221, 2222, 5, 514, 0, 0, 2222, 2224, 3, 330, 165, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2233, 1, 0, 0, 0, 2225, 2226, 3, 330, 165, 0, 2226, 2227, 5, 514, 0, 0, 2227, 2230, 3, 330, 165, 0, 2228, 2229, 5, 514, 0, 0, 2229, 2231, 3, 330, 165, 0, 2230, 2228, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2233, 1, 0, 0, 0, 2232, 2220, 1, 0, 0, 0, 2232, 2225, 1, 0, 0, 0, 2233, 349, 1, 0, 0, 0, 2234, 2237, 3, 330, 165, 0, 2235, 2236, 5, 514, 0, 0, 2236, 2238, 3, 330, 165, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2247, 1, 0, 0, 0, 2239, 2240, 3, 330, 165, 0, 2240, 2241, 5, 514, 0, 0, 2241, 2244, 3, 330, 165, 0, 2242, 2243, 5, 514, 0, 0, 2243, 2245, 3, 330, 165, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2247, 1, 0, 0, 0, 2246, 2234, 1, 0, 0, 0, 2246, 2239, 1, 0, 0, 0, 2247, 351, 1, 0, 0, 0, 2248, 2251, 3, 330, 165, 0, 2249, 2250, 5, 514, 0, 0, 2250, 2252, 3, 330, 165, 0, 2251, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2261, 1, 0, 0, 0, 2253, 2254, 3, 330, 165, 0, 2254, 2255, 5, 514, 0, 0, 2255, 2258, 3, 330, 165, 0, 2256, 2257, 5, 514, 0, 0, 2257, 2259, 3, 330, 165, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2248, 1, 0, 0, 0, 2260, 2253, 1, 0, 0, 0, 2261, 353, 1, 0, 0, 0, 2262, 2267, 3, 330, 165, 0, 2263, 2264, 5, 514, 0, 0, 2264, 2266, 3, 330, 165, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2269, 1, 0, 0, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 355, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2271, 5, 434, 0, 0, 2271, 2272, 3, 362, 181, 0, 2272, 357, 1, 0, 0, 0, 2273, 2274, 5, 167, 0, 0, 2274, 2275, 5, 242, 0, 0, 2275, 2276, 5, 133, 0, 0, 2276, 359, 1, 0, 0, 0, 2277, 2278, 5, 167, 0, 0, 2278, 2279, 5, 133, 0, 0, 2279, 361, 1, 0, 0, 0, 2280, 2281, 5, 517, 0, 0, 2281, 2286, 3, 364, 182, 0, 2282, 2283, 5, 521, 0, 0, 2283, 2285, 3, 364, 182, 0, 2284, 2282, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2289, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2290, 5, 518, 0, 0, 2290, 363, 1, 0, 0, 0, 2291, 2296, 3, 366, 183, 0, 2292, 2294, 5, 506, 0, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2297, 3, 368, 184, 0, 2296, 2293, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 365, 1, 0, 0, 0, 2298, 2302, 3, 330, 165, 0, 2299, 2302, 3, 302, 151, 0, 2300, 2302, 5, 538, 0, 0, 2301, 2298, 1, 0, 0, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2300, 1, 0, 0, 0, 2302, 367, 1, 0, 0, 0, 2303, 2308, 5, 539, 0, 0, 2304, 2308, 5, 540, 0, 0, 2305, 2308, 3, 388, 194, 0, 2306, 2308, 5, 538, 0, 0, 2307, 2303, 1, 0, 0, 0, 2307, 2304, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 369, 1, 0, 0, 0, 2309, 2316, 5, 10, 0, 0, 2310, 2311, 5, 512, 0, 0, 2311, 2316, 5, 512, 0, 0, 2312, 2316, 5, 258, 0, 0, 2313, 2314, 5, 511, 0, 0, 2314, 2316, 5, 511, 0, 0, 2315, 2309, 1, 0, 0, 0, 2315, 2310, 1, 0, 0, 0, 2315, 2312, 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2316, 371, 1, 0, 0, 0, 2317, 2332, 5, 506, 0, 0, 2318, 2332, 5, 507, 0, 0, 2319, 2332, 5, 508, 0, 0, 2320, 2321, 5, 508, 0, 0, 2321, 2332, 5, 506, 0, 0, 2322, 2323, 5, 507, 0, 0, 2323, 2332, 5, 506, 0, 0, 2324, 2325, 5, 508, 0, 0, 2325, 2332, 5, 507, 0, 0, 2326, 2327, 5, 509, 0, 0, 2327, 2332, 5, 506, 0, 0, 2328, 2329, 5, 508, 0, 0, 2329, 2330, 5, 506, 0, 0, 2330, 2332, 5, 507, 0, 0, 2331, 2317, 1, 0, 0, 0, 2331, 2318, 1, 0, 0, 0, 2331, 2319, 1, 0, 0, 0, 2331, 2320, 1, 0, 0, 0, 2331, 2322, 1, 0, 0, 0, 2331, 2324, 1, 0, 0, 0, 2331, 2326, 1, 0, 0, 0, 2331, 2328, 1, 0, 0, 0, 2332, 373, 1, 0, 0, 0, 2333, 2334, 5, 508, 0, 0, 2334, 2341, 5, 508, 0, 0, 2335, 2336, 5, 507, 0, 0, 2336, 2341, 5, 507, 0, 0, 2337, 2341, 5, 512, 0, 0, 2338, 2341, 5, 513, 0, 0, 2339, 2341, 5, 511, 0, 0, 2340, 2333, 1, 0, 0, 0, 2340, 2335, 1, 0, 0, 0, 2340, 2337, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2340, 2339, 1, 0, 0, 0, 2341, 375, 1, 0, 0, 0, 2342, 2343, 7, 36, 0, 0, 2343, 377, 1, 0, 0, 0, 2344, 2345, 7, 37, 0, 0, 2345, 379, 1, 0, 0, 0, 2346, 2361, 3, 308, 154, 0, 2347, 2361, 3, 382, 191, 0, 2348, 2361, 3, 384, 192, 0, 2349, 2351, 5, 530, 0, 0, 2350, 2349, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2361, 3, 386, 193, 0, 2353, 2361, 3, 388, 194, 0, 2354, 2361, 5, 540, 0, 0, 2355, 2361, 5, 541, 0, 0, 2356, 2358, 5, 242, 0, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2361, 5, 245, 0, 0, 2360, 2346, 1, 0, 0, 0, 2360, 2347, 1, 0, 0, 0, 2360, 2348, 1, 0, 0, 0, 2360, 2350, 1, 0, 0, 0, 2360, 2353, 1, 0, 0, 0, 2360, 2354, 1, 0, 0, 0, 2360, 2355, 1, 0, 0, 0, 2360, 2357, 1, 0, 0, 0, 2361, 381, 1, 0, 0, 0, 2362, 2363, 3, 392, 196, 0, 2363, 2364, 3, 384, 192, 0, 2364, 383, 1, 0, 0, 0, 2365, 2366, 5, 538, 0, 0, 2366, 385, 1, 0, 0, 0, 2367, 2368, 5, 539, 0, 0, 2368, 387, 1, 0, 0, 0, 2369, 2370, 7, 38, 0, 0, 2370, 389, 1, 0, 0, 0, 2371, 2372, 7, 39, 0, 0, 2372, 391, 1, 0, 0, 0, 2373, 2374, 7, 40, 0, 0, 2374, 393, 1, 0, 0, 0, 2375, 2376, 7, 41, 0, 0, 2376, 395, 1, 0, 0, 0, 2377, 2378, 7, 42, 0, 0, 2378, 397, 1, 0, 0, 0, 2379, 2380, 7, 43, 0, 0, 2380, 399, 1, 0, 0, 0, 2381, 2382, 7, 44, 0, 0, 2382, 401, 1, 0, 0, 0, 2383, 2384, 7, 45, 0, 0, 2384, 403, 1, 0, 0, 0, 2385, 2386, 7, 46, 0, 0, 2386, 405, 1, 0, 0, 0, 283, 409, 416, 419, 433, 451, 455, 464, 469, 476, 487, 496, 508, 511, 518, 521, 529, 533, 538, 541, 548, 556, 560, 572, 580, 584, 616, 619, 624, 628, 632, 636, 645, 650, 654, 658, 663, 666, 670, 675, 681, 686, 691, 695, 699, 703, 713, 721, 725, 729, 733, 737, 741, 745, 749, 753, 755, 765, 773, 797, 811, 816, 820, 826, 829, 832, 839, 842, 851, 863, 887, 899, 904, 908, 916, 920, 926, 936, 941, 947, 951, 955, 959, 968, 972, 979, 982, 992, 1000, 1008, 1012, 1027, 1046, 1057, 1061, 1068, 1073, 1079, 1083, 1090, 1094, 1098, 1102, 1110, 1114, 1119, 1125, 1131, 1134, 1138, 1149, 1158, 1165, 1176, 1188, 1203, 1206, 1210, 1213, 1215, 1220, 1224, 1227, 1231, 1240, 1249, 1259, 1264, 1275, 1278, 1281, 1284, 1287, 1293, 1297, 1306, 1313, 1316, 1320, 1325, 1328, 1330, 1339, 1346, 1349, 1353, 1356, 1358, 1365, 1370, 1386, 1397, 1402, 1410, 1413, 1416, 1421, 1423, 1425, 1430, 1433, 1437, 1441, 1445, 1454, 1465, 1492, 1514, 1527, 1539, 1552, 1564, 1576, 1582, 1609, 1617, 1621, 1624, 1627, 1634, 1637, 1640, 1643, 1646, 1649, 1654, 1657, 1666, 1671, 1675, 1680, 1686, 1691, 1695, 1714, 1722, 1730, 1734, 1738, 1748, 1774, 1782, 1794, 1816, 1818, 1829, 1832, 1834, 1838, 1842, 1849, 1858, 1864, 1877, 1884, 1889, 1895, 1902, 1909, 1911, 1914, 1926, 1931, 1934, 1940, 1942, 1948, 1969, 1971, 1979, 1986, 1989, 1993, 2000, 2004, 2013, 2017, 2033, 2042, 2070, 2079, 2088, 2094, 2098, 2104, 2112, 2117, 2121, 2128, 2133, 2141, 2145, 2148, 2152, 2161, 2164, 2175, 2181, 2199, 2204, 2209, 2216, 2218, 2223, 2230, 2232, 2237, 2244, 2246, 2251, 2258, 2260, 2267, 2286, 2293, 2296, 2301, 2307, 2315, 2331, 2340, 2350, 2357, 2360] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index d588bc49..624da819 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -646,113 +646,122 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_withItemName = 84; public static readonly RULE_selectStatement = 85; public static readonly RULE_selectClause = 86; - public static readonly RULE_projectItemDefinition = 87; - public static readonly RULE_overWindowItem = 88; - public static readonly RULE_fromClause = 89; - public static readonly RULE_tableExpression = 90; - public static readonly RULE_tableReference = 91; - public static readonly RULE_tablePrimary = 92; - public static readonly RULE_systemTimePeriod = 93; - public static readonly RULE_dateTimeExpression = 94; - public static readonly RULE_inlineDataValueClause = 95; - public static readonly RULE_windowTVFClause = 96; - public static readonly RULE_windowTVFExpression = 97; - public static readonly RULE_windowTVFName = 98; - public static readonly RULE_windowTVFParam = 99; - public static readonly RULE_timeIntervalParamName = 100; - public static readonly RULE_columnDescriptor = 101; - public static readonly RULE_joinCondition = 102; - public static readonly RULE_whereClause = 103; - public static readonly RULE_groupByClause = 104; - public static readonly RULE_groupItemDefinition = 105; - public static readonly RULE_groupingSets = 106; - public static readonly RULE_groupingSetsNotationName = 107; - public static readonly RULE_groupWindowFunction = 108; - public static readonly RULE_groupWindowFunctionName = 109; - public static readonly RULE_timeAttrColumn = 110; - public static readonly RULE_havingClause = 111; - public static readonly RULE_windowClause = 112; - public static readonly RULE_namedWindow = 113; - public static readonly RULE_windowSpec = 114; - public static readonly RULE_matchRecognizeClause = 115; - public static readonly RULE_orderByClause = 116; - public static readonly RULE_orderItemDefinition = 117; - public static readonly RULE_limitClause = 118; - public static readonly RULE_partitionByClause = 119; - public static readonly RULE_quantifiers = 120; - public static readonly RULE_measuresClause = 121; - public static readonly RULE_patternDefinition = 122; - public static readonly RULE_patternVariable = 123; - public static readonly RULE_outputMode = 124; - public static readonly RULE_afterMatchStrategy = 125; - public static readonly RULE_patternVariablesDefinition = 126; - public static readonly RULE_windowFrame = 127; - public static readonly RULE_frameBound = 128; - public static readonly RULE_withinClause = 129; - public static readonly RULE_expression = 130; - public static readonly RULE_booleanExpression = 131; - public static readonly RULE_predicate = 132; - public static readonly RULE_likePredicate = 133; - public static readonly RULE_valueExpression = 134; - public static readonly RULE_functionCallExpression = 135; - public static readonly RULE_primaryExpression = 136; - public static readonly RULE_functionNameCreate = 137; - public static readonly RULE_functionName = 138; - public static readonly RULE_functionNameAndParams = 139; - public static readonly RULE_functionNameWithParams = 140; - public static readonly RULE_functionParam = 141; - public static readonly RULE_dereferenceDefinition = 142; - public static readonly RULE_correlationName = 143; - public static readonly RULE_qualifiedName = 144; - public static readonly RULE_timeIntervalExpression = 145; - public static readonly RULE_errorCapturingMultiUnitsInterval = 146; - public static readonly RULE_multiUnitsInterval = 147; - public static readonly RULE_errorCapturingUnitToUnitInterval = 148; - public static readonly RULE_unitToUnitInterval = 149; - public static readonly RULE_intervalValue = 150; - public static readonly RULE_tableAlias = 151; - public static readonly RULE_errorCapturingIdentifier = 152; - public static readonly RULE_errorCapturingIdentifierExtra = 153; - public static readonly RULE_identifierList = 154; - public static readonly RULE_identifierSeq = 155; - public static readonly RULE_identifier = 156; - public static readonly RULE_unquotedIdentifier = 157; - public static readonly RULE_quotedIdentifier = 158; - public static readonly RULE_whenClause = 159; - public static readonly RULE_catalogPath = 160; - public static readonly RULE_catalogPathCreate = 161; - public static readonly RULE_databasePath = 162; - public static readonly RULE_databasePathCreate = 163; - public static readonly RULE_tablePathCreate = 164; - public static readonly RULE_tablePath = 165; - public static readonly RULE_viewPath = 166; - public static readonly RULE_viewPathCreate = 167; - public static readonly RULE_uid = 168; - public static readonly RULE_withOption = 169; - public static readonly RULE_ifNotExists = 170; - public static readonly RULE_ifExists = 171; - public static readonly RULE_tablePropertyList = 172; - public static readonly RULE_tableProperty = 173; - public static readonly RULE_tablePropertyKey = 174; - public static readonly RULE_tablePropertyValue = 175; - public static readonly RULE_logicalOperator = 176; - public static readonly RULE_comparisonOperator = 177; - public static readonly RULE_bitOperator = 178; - public static readonly RULE_mathOperator = 179; - public static readonly RULE_unaryOperator = 180; - public static readonly RULE_constant = 181; - public static readonly RULE_timePointLiteral = 182; - public static readonly RULE_stringLiteral = 183; - public static readonly RULE_decimalLiteral = 184; - public static readonly RULE_booleanLiteral = 185; - public static readonly RULE_setQuantifier = 186; - public static readonly RULE_timePointUnit = 187; - public static readonly RULE_timeIntervalUnit = 188; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 189; - public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 190; - public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 191; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 192; - public static readonly RULE_nonReservedKeywords = 193; + public static readonly RULE_selectList = 87; + public static readonly RULE_columnProjectItem = 88; + public static readonly RULE_selectWindowItemColumnName = 89; + public static readonly RULE_selectExpressionColumnName = 90; + public static readonly RULE_selectLiteralColumnName = 91; + public static readonly RULE_columnAlias = 92; + public static readonly RULE_projectItemDefinition = 93; + public static readonly RULE_tableAllColumns = 94; + public static readonly RULE_overWindowItem = 95; + public static readonly RULE_fromClause = 96; + public static readonly RULE_tableExpression = 97; + public static readonly RULE_tableReference = 98; + public static readonly RULE_tablePrimary = 99; + public static readonly RULE_atomFunctionTable = 100; + public static readonly RULE_atomExpressionTable = 101; + public static readonly RULE_systemTimePeriod = 102; + public static readonly RULE_dateTimeExpression = 103; + public static readonly RULE_inlineDataValueClause = 104; + public static readonly RULE_windowTVFClause = 105; + public static readonly RULE_windowTVFExpression = 106; + public static readonly RULE_windowTVFName = 107; + public static readonly RULE_windowTVFParam = 108; + public static readonly RULE_timeIntervalParamName = 109; + public static readonly RULE_columnDescriptor = 110; + public static readonly RULE_joinCondition = 111; + public static readonly RULE_whereClause = 112; + public static readonly RULE_groupByClause = 113; + public static readonly RULE_groupItemDefinition = 114; + public static readonly RULE_groupingSets = 115; + public static readonly RULE_groupingSetsNotationName = 116; + public static readonly RULE_groupWindowFunction = 117; + public static readonly RULE_groupWindowFunctionName = 118; + public static readonly RULE_timeAttrColumn = 119; + public static readonly RULE_havingClause = 120; + public static readonly RULE_windowClause = 121; + public static readonly RULE_namedWindow = 122; + public static readonly RULE_windowSpec = 123; + public static readonly RULE_matchRecognizeClause = 124; + public static readonly RULE_orderByClause = 125; + public static readonly RULE_orderItemDefinition = 126; + public static readonly RULE_limitClause = 127; + public static readonly RULE_partitionByClause = 128; + public static readonly RULE_quantifiers = 129; + public static readonly RULE_measuresClause = 130; + public static readonly RULE_patternDefinition = 131; + public static readonly RULE_patternVariable = 132; + public static readonly RULE_outputMode = 133; + public static readonly RULE_afterMatchStrategy = 134; + public static readonly RULE_patternVariablesDefinition = 135; + public static readonly RULE_windowFrame = 136; + public static readonly RULE_frameBound = 137; + public static readonly RULE_withinClause = 138; + public static readonly RULE_expression = 139; + public static readonly RULE_booleanExpression = 140; + public static readonly RULE_predicate = 141; + public static readonly RULE_likePredicate = 142; + public static readonly RULE_valueExpression = 143; + public static readonly RULE_functionCallExpression = 144; + public static readonly RULE_primaryExpression = 145; + public static readonly RULE_functionNameCreate = 146; + public static readonly RULE_functionName = 147; + public static readonly RULE_functionNameAndParams = 148; + public static readonly RULE_functionNameWithParams = 149; + public static readonly RULE_functionParam = 150; + public static readonly RULE_dereferenceDefinition = 151; + public static readonly RULE_correlationName = 152; + public static readonly RULE_qualifiedName = 153; + public static readonly RULE_timeIntervalExpression = 154; + public static readonly RULE_errorCapturingMultiUnitsInterval = 155; + public static readonly RULE_multiUnitsInterval = 156; + public static readonly RULE_errorCapturingUnitToUnitInterval = 157; + public static readonly RULE_unitToUnitInterval = 158; + public static readonly RULE_intervalValue = 159; + public static readonly RULE_tableAlias = 160; + public static readonly RULE_errorCapturingIdentifier = 161; + public static readonly RULE_errorCapturingIdentifierExtra = 162; + public static readonly RULE_identifierList = 163; + public static readonly RULE_identifierSeq = 164; + public static readonly RULE_identifier = 165; + public static readonly RULE_unquotedIdentifier = 166; + public static readonly RULE_quotedIdentifier = 167; + public static readonly RULE_whenClause = 168; + public static readonly RULE_catalogPath = 169; + public static readonly RULE_catalogPathCreate = 170; + public static readonly RULE_databasePath = 171; + public static readonly RULE_databasePathCreate = 172; + public static readonly RULE_tablePathCreate = 173; + public static readonly RULE_tablePath = 174; + public static readonly RULE_viewPath = 175; + public static readonly RULE_viewPathCreate = 176; + public static readonly RULE_uid = 177; + public static readonly RULE_withOption = 178; + public static readonly RULE_ifNotExists = 179; + public static readonly RULE_ifExists = 180; + public static readonly RULE_tablePropertyList = 181; + public static readonly RULE_tableProperty = 182; + public static readonly RULE_tablePropertyKey = 183; + public static readonly RULE_tablePropertyValue = 184; + public static readonly RULE_logicalOperator = 185; + public static readonly RULE_comparisonOperator = 186; + public static readonly RULE_bitOperator = 187; + public static readonly RULE_mathOperator = 188; + public static readonly RULE_unaryOperator = 189; + public static readonly RULE_constant = 190; + public static readonly RULE_timePointLiteral = 191; + public static readonly RULE_stringLiteral = 192; + public static readonly RULE_decimalLiteral = 193; + public static readonly RULE_booleanLiteral = 194; + public static readonly RULE_setQuantifier = 195; + public static readonly RULE_timePointUnit = 196; + public static readonly RULE_timeIntervalUnit = 197; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 198; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 199; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 200; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 201; + public static readonly RULE_nonReservedKeywords = 202; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -988,9 +997,12 @@ export class FlinkSqlParser extends SQLParserBase { "insertStatement", "insertSimpleStatement", "insertPartitionDefinition", "valuesDefinition", "valuesRowDefinition", "valueDefinition", "insertMulStatementCompatibility", "insertMulStatement", "queryStatement", "valuesClause", "withClause", - "withItem", "withItemName", "selectStatement", "selectClause", "projectItemDefinition", - "overWindowItem", "fromClause", "tableExpression", "tableReference", - "tablePrimary", "systemTimePeriod", "dateTimeExpression", "inlineDataValueClause", + "withItem", "withItemName", "selectStatement", "selectClause", "selectList", + "columnProjectItem", "selectWindowItemColumnName", "selectExpressionColumnName", + "selectLiteralColumnName", "columnAlias", "projectItemDefinition", + "tableAllColumns", "overWindowItem", "fromClause", "tableExpression", + "tableReference", "tablePrimary", "atomFunctionTable", "atomExpressionTable", + "systemTimePeriod", "dateTimeExpression", "inlineDataValueClause", "windowTVFClause", "windowTVFExpression", "windowTVFName", "windowTVFParam", "timeIntervalParamName", "columnDescriptor", "joinCondition", "whereClause", "groupByClause", "groupItemDefinition", "groupingSets", "groupingSetsNotationName", @@ -1040,21 +1052,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 391; + this.state = 409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 177 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 822083585) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 142606353) !== 0) || _la === 451 || _la === 469 || ((((_la - 490)) & ~0x1F) === 0 && ((1 << (_la - 490)) & 134219777) !== 0) || _la === 522) { { { - this.state = 388; + this.state = 406; this.singleStatement(); } } - this.state = 393; + this.state = 411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 394; + this.state = 412; this.match(FlinkSqlParser.EOF); } } @@ -1076,7 +1088,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 401; + this.state = 419; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1102,14 +1114,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 396; + this.state = 414; this.sqlStatement(); - this.state = 398; + this.state = 416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 397; + this.state = 415; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1119,7 +1131,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 400; + this.state = 418; this.emptyStatement(); } break; @@ -1145,90 +1157,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 415; + this.state = 433; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 421; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 404; + this.state = 422; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 405; + this.state = 423; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 406; + this.state = 424; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 407; + this.state = 425; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 408; + this.state = 426; this.showStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 409; + this.state = 427; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 410; + this.state = 428; this.unloadStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 411; + this.state = 429; this.setStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 412; + this.state = 430; this.resetStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 413; + this.state = 431; this.jarStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 414; + this.state = 432; this.dtAddStatement(); } break; @@ -1254,7 +1266,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 417; + this.state = 435; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1276,104 +1288,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 433; + this.state = 451; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 419; + this.state = 437; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 420; + this.state = 438; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 421; + this.state = 439; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 422; + this.state = 440; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 423; + this.state = 441; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 424; + this.state = 442; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 425; + this.state = 443; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 426; + this.state = 444; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 427; + this.state = 445; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 428; + this.state = 446; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 429; + this.state = 447; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 430; + this.state = 448; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 431; + this.state = 449; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 432; + this.state = 450; this.dropFunction(); } break; @@ -1397,7 +1409,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 437; + this.state = 455; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1406,7 +1418,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 435; + this.state = 453; this.queryStatement(0); } break; @@ -1415,7 +1427,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 436; + this.state = 454; this.insertStatement(); } break; @@ -1444,7 +1456,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 439; + this.state = 457; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 451)) { this.errorHandler.recoverInline(this); @@ -1453,7 +1465,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 440; + this.state = 458; this.tablePath(); } } @@ -1477,24 +1489,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 442; + this.state = 460; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 446; + this.state = 464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CHANGELOG_MODE: case FlinkSqlParser.KW_ESTIMATED_COST: case FlinkSqlParser.KW_JSON_EXECUTION_PLAN: { - this.state = 443; + this.state = 461; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 444; + this.state = 462; this.match(FlinkSqlParser.KW_PLAN); - this.state = 445; + this.state = 463; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1510,24 +1522,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 451; + this.state = 469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 448; + this.state = 466; this.dmlStatement(); } break; case 2: { - this.state = 449; + this.state = 467; this.insertSimpleStatement(); } break; case 3: { - this.state = 450; + this.state = 468; this.insertMulStatement(); } break; @@ -1555,21 +1567,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 453; + this.state = 471; this.explainDetail(); - this.state = 458; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 454; + this.state = 472; this.match(FlinkSqlParser.COMMA); - this.state = 455; + this.state = 473; this.explainDetail(); } } - this.state = 460; + this.state = 478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1596,7 +1608,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 461; + this.state = 479; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -1625,33 +1637,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 469; + this.state = 487; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 463; + this.state = 481; this.match(FlinkSqlParser.KW_USE); - this.state = 464; + this.state = 482; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 465; + this.state = 483; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 466; + this.state = 484; this.match(FlinkSqlParser.KW_USE); - this.state = 467; + this.state = 485; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 468; + this.state = 486; this.useModuleStatement(); } break; @@ -1678,25 +1690,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 471; + this.state = 489; this.match(FlinkSqlParser.KW_USE); - this.state = 472; + this.state = 490; this.match(FlinkSqlParser.KW_MODULES); - this.state = 473; + this.state = 491; this.uid(); - this.state = 478; + this.state = 496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 474; + this.state = 492; this.match(FlinkSqlParser.COMMA); - this.state = 475; + this.state = 493; this.uid(); } } - this.state = 480; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1721,15 +1733,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatement); let _la: number; try { - this.state = 523; + this.state = 541; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 481; + this.state = 499; this.match(FlinkSqlParser.KW_SHOW); - this.state = 482; + this.state = 500; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 423 || _la === 465)) { this.errorHandler.recoverInline(this); @@ -1743,11 +1755,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 483; + this.state = 501; this.match(FlinkSqlParser.KW_SHOW); - this.state = 484; + this.state = 502; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 485; + this.state = 503; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 448)) { this.errorHandler.recoverInline(this); @@ -1761,16 +1773,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 486; + this.state = 504; this.match(FlinkSqlParser.KW_SHOW); - this.state = 487; + this.state = 505; this.match(FlinkSqlParser.KW_TABLES); - this.state = 490; + this.state = 508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 170) { { - this.state = 488; + this.state = 506; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1779,17 +1791,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 489; + this.state = 507; this.databasePath(); } } - this.state = 493; + this.state = 511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 492; + this.state = 510; this.likePredicate(); } } @@ -1799,11 +1811,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 495; + this.state = 513; this.match(FlinkSqlParser.KW_SHOW); - this.state = 496; + this.state = 514; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 497; + this.state = 515; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1812,28 +1824,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 500; + this.state = 518; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 498; + this.state = 516; this.viewPath(); } break; case 2: { - this.state = 499; + this.state = 517; this.tablePath(); } break; } - this.state = 503; + this.state = 521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 502; + this.state = 520; this.likePredicate(); } } @@ -1843,26 +1855,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 505; + this.state = 523; this.match(FlinkSqlParser.KW_SHOW); - this.state = 506; + this.state = 524; this.match(FlinkSqlParser.KW_CREATE); - this.state = 511; + this.state = 529; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 507; + this.state = 525; this.match(FlinkSqlParser.KW_TABLE); - this.state = 508; + this.state = 526; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 509; + this.state = 527; this.match(FlinkSqlParser.KW_VIEW); - this.state = 510; + this.state = 528; this.viewPath(); } break; @@ -1874,38 +1886,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 513; + this.state = 531; this.match(FlinkSqlParser.KW_SHOW); - this.state = 515; + this.state = 533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 412) { { - this.state = 514; + this.state = 532; this.match(FlinkSqlParser.KW_USER); } } - this.state = 517; + this.state = 535; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 518; + this.state = 536; this.match(FlinkSqlParser.KW_SHOW); - this.state = 520; + this.state = 538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 519; + this.state = 537; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 522; + this.state = 540; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1931,20 +1943,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 525; + this.state = 543; this.match(FlinkSqlParser.KW_LOAD); - this.state = 526; + this.state = 544; this.match(FlinkSqlParser.KW_MODULE); - this.state = 527; + this.state = 545; this.uid(); - this.state = 530; + this.state = 548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 528; + this.state = 546; this.match(FlinkSqlParser.KW_WITH); - this.state = 529; + this.state = 547; this.tablePropertyList(); } break; @@ -1971,11 +1983,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 532; + this.state = 550; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 533; + this.state = 551; this.match(FlinkSqlParser.KW_MODULE); - this.state = 534; + this.state = 552; this.uid(); } } @@ -1999,14 +2011,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 536; + this.state = 554; this.match(FlinkSqlParser.KW_SET); - this.state = 538; + this.state = 556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 537; + this.state = 555; this.tableProperty(); } break; @@ -2033,14 +2045,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 540; + this.state = 558; this.match(FlinkSqlParser.KW_RESET); - this.state = 542; + this.state = 560; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 541; + this.state = 559; this.tablePropertyKey(); } break; @@ -2068,7 +2080,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 544; + this.state = 562; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 490)) { this.errorHandler.recoverInline(this); @@ -2077,9 +2089,9 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 545; + this.state = 563; this.match(FlinkSqlParser.KW_JAR); - this.state = 546; + this.state = 564; this.jarFileName(); } } @@ -2102,28 +2114,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 598; + this.state = 616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 548; + this.state = 566; this.match(FlinkSqlParser.KW_ADD); - this.state = 549; + this.state = 567; this.match(FlinkSqlParser.KW_JAR); - this.state = 550; + this.state = 568; this.match(FlinkSqlParser.KW_WITH); - this.state = 551; + this.state = 569; this.dtFilePath(); - this.state = 554; + this.state = 572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 552; + this.state = 570; this.match(FlinkSqlParser.KW_AS); - this.state = 553; + this.state = 571; this.uid(); } } @@ -2133,34 +2145,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 556; + this.state = 574; this.match(FlinkSqlParser.KW_ADD); - this.state = 557; + this.state = 575; this.match(FlinkSqlParser.KW_FILE); - this.state = 558; + this.state = 576; this.match(FlinkSqlParser.KW_WITH); - this.state = 559; + this.state = 577; this.dtFilePath(); - this.state = 562; + this.state = 580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 560; + this.state = 578; this.match(FlinkSqlParser.KW_AS); - this.state = 561; + this.state = 579; this.uid(); } } - this.state = 566; + this.state = 584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 312) { { - this.state = 564; + this.state = 582; this.match(FlinkSqlParser.KW_RENAME); - this.state = 565; + this.state = 583; this.uid(); } } @@ -2170,9 +2182,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 568; + this.state = 586; this.match(FlinkSqlParser.KW_ADD); - this.state = 569; + this.state = 587; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2181,70 +2193,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 570; + this.state = 588; this.match(FlinkSqlParser.KW_WITH); - this.state = 571; + this.state = 589; this.dtFilePath(); - this.state = 572; + this.state = 590; this.match(FlinkSqlParser.KW_RENAME); - this.state = 573; + this.state = 591; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 575; + this.state = 593; this.match(FlinkSqlParser.KW_ADD); - this.state = 576; + this.state = 594; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 577; + this.state = 595; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 578; + this.state = 596; this.match(FlinkSqlParser.KW_ADD); - this.state = 579; + this.state = 597; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 580; + this.state = 598; this.match(FlinkSqlParser.KW_FILE); - this.state = 581; + this.state = 599; this.match(FlinkSqlParser.KW_WITH); - this.state = 582; + this.state = 600; this.dtFilePath(); - this.state = 583; + this.state = 601; this.match(FlinkSqlParser.KW_RENAME); - this.state = 584; + this.state = 602; this.uid(); - this.state = 585; + this.state = 603; this.match(FlinkSqlParser.KW_KEY); - this.state = 586; + this.state = 604; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 588; + this.state = 606; this.match(FlinkSqlParser.KW_ADD); - this.state = 589; + this.state = 607; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 590; + this.state = 608; this.match(FlinkSqlParser.KW_FILE); - this.state = 591; + this.state = 609; this.match(FlinkSqlParser.KW_WITH); - this.state = 592; + this.state = 610; this.dtFilePath(); - this.state = 593; + this.state = 611; this.match(FlinkSqlParser.KW_FOR); - this.state = 594; + this.state = 612; this.uid(); - this.state = 595; + this.state = 613; this.match(FlinkSqlParser.KW_AS); - this.state = 596; + this.state = 614; this.uid(); } break; @@ -2272,7 +2284,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 604; + this.state = 622; this.errorHandler.sync(this); alternative = 1; do { @@ -2280,17 +2292,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 601; + this.state = 619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 535) { { - this.state = 600; + this.state = 618; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 603; + this.state = 621; this.uid(); } } @@ -2298,7 +2310,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 606; + this.state = 624; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2324,18 +2336,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 610; + this.state = 628; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 608; + this.state = 626; this.simpleCreateTable(); } break; case 2: { - this.state = 609; + this.state = 627; this.createTableAsSelect(); } break; @@ -2364,122 +2376,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 612; + this.state = 630; this.match(FlinkSqlParser.KW_CREATE); - this.state = 614; + this.state = 632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 613; + this.state = 631; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 616; + this.state = 634; this.match(FlinkSqlParser.KW_TABLE); - this.state = 618; + this.state = 636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 617; + this.state = 635; this.ifNotExists(); } } - this.state = 620; + this.state = 638; this.tablePathCreate(); - this.state = 621; + this.state = 639; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 622; + this.state = 640; this.columnOptionDefinition(); - this.state = 627; + this.state = 645; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 623; + this.state = 641; this.match(FlinkSqlParser.COMMA); - this.state = 624; + this.state = 642; this.columnOptionDefinition(); } } } - this.state = 629; + this.state = 647; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 632; + this.state = 650; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 630; + this.state = 648; this.match(FlinkSqlParser.COMMA); - this.state = 631; + this.state = 649; this.watermarkDefinition(); } break; } - this.state = 636; + this.state = 654; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 634; + this.state = 652; this.match(FlinkSqlParser.COMMA); - this.state = 635; + this.state = 653; this.tableConstraint(); } break; } - this.state = 640; + this.state = 658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 638; + this.state = 656; this.match(FlinkSqlParser.COMMA); - this.state = 639; + this.state = 657; this.selfDefinitionClause(); } } - this.state = 642; + this.state = 660; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 645; + this.state = 663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 643; + this.state = 661; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 644; + this.state = 662; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 648; + this.state = 666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 270) { { - this.state = 647; + this.state = 665; this.partitionDefinition(); } } - this.state = 650; + this.state = 668; this.withOption(); - this.state = 652; + this.state = 670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 651; + this.state = 669; this.likeDefinition(); } } @@ -2507,32 +2519,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 654; + this.state = 672; this.match(FlinkSqlParser.KW_CREATE); - this.state = 655; + this.state = 673; this.match(FlinkSqlParser.KW_TABLE); - this.state = 657; + this.state = 675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 656; + this.state = 674; this.ifNotExists(); } } - this.state = 659; + this.state = 677; this.tablePathCreate(); - this.state = 660; + this.state = 678; this.withOption(); - this.state = 663; + this.state = 681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 661; + this.state = 679; this.match(FlinkSqlParser.KW_AS); - this.state = 662; + this.state = 680; this.queryStatement(0); } } @@ -2557,27 +2569,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 668; + this.state = 686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 665; + this.state = 683; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 666; + this.state = 684; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 667; + this.state = 685; this.computedColumnDefinition(); } break; @@ -2604,28 +2616,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 670; + this.state = 688; this.columnNameCreate(); - this.state = 671; + this.state = 689; this.columnType(); - this.state = 673; + this.state = 691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 242 || _la === 245 || _la === 289) { { - this.state = 672; + this.state = 690; this.columnConstraint(); } } - this.state = 677; + this.state = 695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 675; + this.state = 693; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 676; + this.state = 694; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2650,20 +2662,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 681; + this.state = 699; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 679; + this.state = 697; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 680; + this.state = 698; this.expression(); } break; @@ -2687,20 +2699,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 685; + this.state = 703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 683; + this.state = 701; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 684; + this.state = 702; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -2728,7 +2740,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 687; + this.state = 705; this.uid(); } } @@ -2753,27 +2765,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 689; + this.state = 707; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 690; + this.state = 708; this.columnName(); - this.state = 695; + this.state = 713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 691; + this.state = 709; this.match(FlinkSqlParser.COMMA); - this.state = 692; + this.state = 710; this.columnName(); } } - this.state = 697; + this.state = 715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 698; + this.state = 716; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2796,7 +2808,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 737; + this.state = 755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2804,7 +2816,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 700; + this.state = 718; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 245)) { @@ -2832,7 +2844,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 701; + this.state = 719; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 178 || _la === 179 || _la === 345 || _la === 361 || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 521) !== 0) || _la === 417 || _la === 418)) { @@ -2842,12 +2854,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 703; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 702; + this.state = 720; this.lengthOneDimension(); } } @@ -2857,24 +2869,24 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 705; + this.state = 723; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 707; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 706; + this.state = 724; this.lengthOneDimension(); } } - this.state = 715; + this.state = 733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 436) { { - this.state = 709; + this.state = 727; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 436)) { this.errorHandler.recoverInline(this); @@ -2883,19 +2895,19 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 711; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 710; + this.state = 728; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 713; + this.state = 731; this.match(FlinkSqlParser.KW_TIME); - this.state = 714; + this.state = 732; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2909,7 +2921,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 717; + this.state = 735; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 247)) { @@ -2919,12 +2931,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 719; + this.state = 737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 718; + this.state = 736; this.lengthTwoOptionalDimension(); } } @@ -2935,7 +2947,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 721; + this.state = 739; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 232)) { @@ -2945,12 +2957,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 723; + this.state = 741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 722; + this.state = 740; this.lengthOneTypeDimension(); } } @@ -2960,14 +2972,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 725; + this.state = 743; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 727; + this.state = 745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 726; + this.state = 744; this.mapTypeDimension(); } } @@ -2977,14 +2989,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 729; + this.state = 747; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 731; + this.state = 749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 517) { { - this.state = 730; + this.state = 748; this.rowTypeDimension(); } } @@ -2994,14 +3006,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 733; + this.state = 751; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 735; + this.state = 753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 734; + this.state = 752; this.lengthTwoStringDimension(); } } @@ -3032,11 +3044,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 739; + this.state = 757; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 740; + this.state = 758; this.decimalLiteral(); - this.state = 741; + this.state = 759; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3061,23 +3073,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 743; + this.state = 761; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 744; + this.state = 762; this.decimalLiteral(); - this.state = 747; + this.state = 765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 745; + this.state = 763; this.match(FlinkSqlParser.COMMA); - this.state = 746; + this.state = 764; this.decimalLiteral(); } } - this.state = 749; + this.state = 767; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3102,23 +3114,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 751; + this.state = 769; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 752; + this.state = 770; this.stringLiteral(); - this.state = 755; + this.state = 773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 753; + this.state = 771; this.match(FlinkSqlParser.COMMA); - this.state = 754; + this.state = 772; this.stringLiteral(); } } - this.state = 757; + this.state = 775; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3142,11 +3154,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 759; + this.state = 777; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 760; + this.state = 778; this.columnType(); - this.state = 761; + this.state = 779; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3170,17 +3182,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 763; + this.state = 781; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 764; + this.state = 782; this.columnType(); { - this.state = 765; + this.state = 783; this.match(FlinkSqlParser.COMMA); - this.state = 766; + this.state = 784; this.columnType(); } - this.state = 768; + this.state = 786; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3203,68 +3215,68 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 70, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 798; + this.state = 816; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 770; + this.state = 788; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 771; + this.state = 789; this.columnName(); - this.state = 772; + this.state = 790; this.columnType(); - this.state = 779; + this.state = 797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 773; + this.state = 791; this.match(FlinkSqlParser.COMMA); - this.state = 774; + this.state = 792; this.columnName(); - this.state = 775; + this.state = 793; this.columnType(); } } - this.state = 781; + this.state = 799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 782; + this.state = 800; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 784; + this.state = 802; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 785; + this.state = 803; this.columnName(); - this.state = 786; + this.state = 804; this.columnType(); - this.state = 793; + this.state = 811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 787; + this.state = 805; this.match(FlinkSqlParser.COMMA); - this.state = 788; + this.state = 806; this.columnName(); - this.state = 789; + this.state = 807; this.columnType(); } } - this.state = 795; + this.state = 813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 796; + this.state = 814; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3291,37 +3303,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 72, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 814; + this.state = 832; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 802; + this.state = 820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 800; + this.state = 818; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 801; + this.state = 819; this.constraintName(); } } - this.state = 804; + this.state = 822; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 805; + this.state = 823; this.match(FlinkSqlParser.KW_KEY); - this.state = 808; + this.state = 826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 806; + this.state = 824; this.match(FlinkSqlParser.KW_NOT); - this.state = 807; + this.state = 825; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3332,17 +3344,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 811; + this.state = 829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 810; + this.state = 828; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 813; + this.state = 831; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3371,30 +3383,30 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 816; + this.state = 834; this.columnNameCreate(); - this.state = 817; + this.state = 835; this.columnType(); - this.state = 818; + this.state = 836; this.match(FlinkSqlParser.KW_METADATA); - this.state = 821; + this.state = 839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 819; + this.state = 837; this.match(FlinkSqlParser.KW_FROM); - this.state = 820; + this.state = 838; this.metadataKey(); } } - this.state = 824; + this.state = 842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 424) { { - this.state = 823; + this.state = 841; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3421,7 +3433,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 826; + this.state = 844; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3446,20 +3458,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 828; + this.state = 846; this.columnNameCreate(); - this.state = 829; + this.state = 847; this.match(FlinkSqlParser.KW_AS); - this.state = 830; + this.state = 848; this.computedColumnExpression(); - this.state = 833; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 831; + this.state = 849; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 832; + this.state = 850; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3486,7 +3498,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 835; + this.state = 853; this.expression(); } } @@ -3510,15 +3522,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 837; + this.state = 855; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 838; + this.state = 856; this.match(FlinkSqlParser.KW_FOR); - this.state = 839; + this.state = 857; this.columnName(); - this.state = 840; + this.state = 858; this.match(FlinkSqlParser.KW_AS); - this.state = 841; + this.state = 859; this.expression(); } } @@ -3543,27 +3555,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 845; + this.state = 863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 843; + this.state = 861; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 844; + this.state = 862; this.constraintName(); } } - this.state = 847; + this.state = 865; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 848; + this.state = 866; this.match(FlinkSqlParser.KW_KEY); - this.state = 849; + this.state = 867; this.columnNameList(); - this.state = 850; + this.state = 868; this.match(FlinkSqlParser.KW_NOT); - this.state = 851; + this.state = 869; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3587,7 +3599,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 853; + this.state = 871; this.identifier(); } } @@ -3611,11 +3623,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 855; + this.state = 873; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 856; + this.state = 874; this.match(FlinkSqlParser.KW_FOR); - this.state = 857; + this.state = 875; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3639,11 +3651,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 859; + this.state = 877; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 860; + this.state = 878; this.match(FlinkSqlParser.KW_BY); - this.state = 861; + this.state = 879; this.transformList(); } } @@ -3668,27 +3680,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 863; + this.state = 881; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 864; + this.state = 882; this.transform(); - this.state = 869; + this.state = 887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 865; + this.state = 883; this.match(FlinkSqlParser.COMMA); - this.state = 866; + this.state = 884; this.transform(); } } - this.state = 871; + this.state = 889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 872; + this.state = 890; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3711,14 +3723,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 886; + this.state = 904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 874; + this.state = 892; this.columnName(); } break; @@ -3726,27 +3738,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 875; + this.state = 893; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 876; + this.state = 894; this.transformArgument(); - this.state = 881; + this.state = 899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 877; + this.state = 895; this.match(FlinkSqlParser.COMMA); - this.state = 878; + this.state = 896; this.transformArgument(); } } - this.state = 883; + this.state = 901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 884; + this.state = 902; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3770,20 +3782,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); try { - this.state = 890; + this.state = 908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 888; + this.state = 906; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 889; + this.state = 907; this.constant(); } break; @@ -3810,32 +3822,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 892; + this.state = 910; this.match(FlinkSqlParser.KW_LIKE); - this.state = 893; + this.state = 911; this.tablePath(); - this.state = 902; + this.state = 920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 894; + this.state = 912; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 898; + this.state = 916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 267 || _la === 456 || _la === 463) { { { - this.state = 895; + this.state = 913; this.likeOption(); } } - this.state = 900; + this.state = 918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 901; + this.state = 919; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3861,14 +3873,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 908; + this.state = 926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 904; + this.state = 922; _la = this.tokenStream.LA(1); if(!(_la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3877,7 +3889,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 905; + this.state = 923; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 271 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -3893,7 +3905,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 906; + this.state = 924; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3902,7 +3914,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 907; + this.state = 925; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 459 || _la === 478)) { this.errorHandler.recoverInline(this); @@ -3936,13 +3948,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 910; + this.state = 928; this.match(FlinkSqlParser.KW_CREATE); - this.state = 911; + this.state = 929; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 912; + this.state = 930; this.catalogPathCreate(); - this.state = 913; + this.state = 931; this.withOption(); } } @@ -3967,35 +3979,35 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 915; + this.state = 933; this.match(FlinkSqlParser.KW_CREATE); - this.state = 916; + this.state = 934; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 918; + this.state = 936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 917; + this.state = 935; this.ifNotExists(); } } - this.state = 920; + this.state = 938; this.databasePathCreate(); - this.state = 923; + this.state = 941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 921; + this.state = 939; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 922; + this.state = 940; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 925; + this.state = 943; this.withOption(); } } @@ -4020,57 +4032,57 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 927; + this.state = 945; this.match(FlinkSqlParser.KW_CREATE); - this.state = 929; + this.state = 947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 928; + this.state = 946; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 931; + this.state = 949; this.match(FlinkSqlParser.KW_VIEW); - this.state = 933; + this.state = 951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 932; + this.state = 950; this.ifNotExists(); } } - this.state = 935; + this.state = 953; this.viewPathCreate(); - this.state = 937; + this.state = 955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 936; + this.state = 954; this.columnNameList(); } } - this.state = 941; + this.state = 959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 939; + this.state = 957; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 940; + this.state = 958; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 943; + this.state = 961; this.match(FlinkSqlParser.KW_AS); - this.state = 944; + this.state = 962; this.queryStatement(0); } } @@ -4095,52 +4107,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 946; + this.state = 964; this.match(FlinkSqlParser.KW_CREATE); - this.state = 950; + this.state = 968; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 947; + this.state = 965; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 948; + this.state = 966; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 949; + this.state = 967; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 952; + this.state = 970; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 954; + this.state = 972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 953; + this.state = 971; this.ifNotExists(); } } - this.state = 956; + this.state = 974; this.functionNameCreate(); - this.state = 957; + this.state = 975; this.match(FlinkSqlParser.KW_AS); - this.state = 958; + this.state = 976; this.identifier(); - this.state = 961; + this.state = 979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 959; + this.state = 977; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 960; + this.state = 978; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4152,12 +4164,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 964; + this.state = 982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413) { { - this.state = 963; + this.state = 981; this.usingClause(); } } @@ -4185,27 +4197,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 966; + this.state = 984; this.match(FlinkSqlParser.KW_USING); - this.state = 967; + this.state = 985; this.match(FlinkSqlParser.KW_JAR); - this.state = 968; + this.state = 986; this.jarFileName(); - this.state = 974; + this.state = 992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 969; + this.state = 987; this.match(FlinkSqlParser.COMMA); - this.state = 970; + this.state = 988; this.match(FlinkSqlParser.KW_JAR); - this.state = 971; + this.state = 989; this.jarFileName(); } } - this.state = 976; + this.state = 994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4231,7 +4243,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 977; + this.state = 995; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4256,52 +4268,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 997; this.match(FlinkSqlParser.KW_ALTER); - this.state = 980; + this.state = 998; this.match(FlinkSqlParser.KW_TABLE); - this.state = 982; + this.state = 1000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 981; + this.state = 999; this.ifExists(); } } - this.state = 984; + this.state = 1002; this.tablePath(); - this.state = 990; + this.state = 1008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 985; + this.state = 1003; this.renameDefinition(); } break; case 2: { - this.state = 986; + this.state = 1004; this.setKeyValueDefinition(); } break; case 3: { - this.state = 987; + this.state = 1005; this.addConstraint(); } break; case 4: { - this.state = 988; + this.state = 1006; this.dropConstraint(); } break; case 5: { - this.state = 989; + this.state = 1007; this.addUnique(); } break; @@ -4329,21 +4341,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 992; + this.state = 1010; this.match(FlinkSqlParser.KW_RENAME); - this.state = 994; + this.state = 1012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 993; + this.state = 1011; this.uid(); } } - this.state = 996; + this.state = 1014; this.match(FlinkSqlParser.KW_TO); - this.state = 997; + this.state = 1015; this.uid(); } } @@ -4367,9 +4379,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 999; + this.state = 1017; this.match(FlinkSqlParser.KW_SET); - this.state = 1000; + this.state = 1018; this.tablePropertyList(); } } @@ -4394,24 +4406,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1002; + this.state = 1020; this.match(FlinkSqlParser.KW_ADD); - this.state = 1003; + this.state = 1021; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1004; + this.state = 1022; this.constraintName(); - this.state = 1005; + this.state = 1023; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 1006; + this.state = 1024; this.match(FlinkSqlParser.KW_KEY); - this.state = 1007; + this.state = 1025; this.columnNameList(); - this.state = 1009; + this.state = 1027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1008; + this.state = 1026; this.notForced(); } } @@ -4438,11 +4450,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1011; + this.state = 1029; this.match(FlinkSqlParser.KW_DROP); - this.state = 1012; + this.state = 1030; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1013; + this.state = 1031; this.constraintName(); } } @@ -4466,11 +4478,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1015; + this.state = 1033; this.match(FlinkSqlParser.KW_ADD); - this.state = 1016; + this.state = 1034; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1017; + this.state = 1035; this.columnNameList(); } } @@ -4494,9 +4506,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1019; + this.state = 1037; this.match(FlinkSqlParser.KW_NOT); - this.state = 1020; + this.state = 1038; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4520,26 +4532,26 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1022; + this.state = 1040; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1023; + this.state = 1041; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1024; + this.state = 1042; this.viewPath(); - this.state = 1028; + this.state = 1046; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1025; + this.state = 1043; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1026; + this.state = 1044; this.match(FlinkSqlParser.KW_AS); - this.state = 1027; + this.state = 1045; this.queryStatement(0); } break; @@ -4568,13 +4580,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1030; + this.state = 1048; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1031; + this.state = 1049; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1032; + this.state = 1050; this.databasePath(); - this.state = 1033; + this.state = 1051; this.setKeyValueDefinition(); } } @@ -4599,52 +4611,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1035; + this.state = 1053; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1039; + this.state = 1057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1036; + this.state = 1054; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1037; + this.state = 1055; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1038; + this.state = 1056; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1041; + this.state = 1059; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1043; + this.state = 1061; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1042; + this.state = 1060; this.ifExists(); } break; } - this.state = 1045; + this.state = 1063; this.functionName(); - this.state = 1046; + this.state = 1064; this.match(FlinkSqlParser.KW_AS); - this.state = 1047; + this.state = 1065; this.identifier(); - this.state = 1050; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1048; + this.state = 1066; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1049; + this.state = 1067; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4679,21 +4691,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1052; + this.state = 1070; this.match(FlinkSqlParser.KW_DROP); - this.state = 1053; + this.state = 1071; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1055; + this.state = 1073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1054; + this.state = 1072; this.ifExists(); } } - this.state = 1057; + this.state = 1075; this.catalogPath(); } } @@ -4718,31 +4730,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1059; + this.state = 1077; this.match(FlinkSqlParser.KW_DROP); - this.state = 1061; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1060; + this.state = 1078; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1063; + this.state = 1081; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1065; + this.state = 1083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1064; + this.state = 1082; this.ifExists(); } } - this.state = 1067; + this.state = 1085; this.tablePath(); } } @@ -4767,28 +4779,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1069; + this.state = 1087; this.match(FlinkSqlParser.KW_DROP); - this.state = 1070; + this.state = 1088; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1072; + this.state = 1090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1071; + this.state = 1089; this.ifExists(); } } - this.state = 1074; + this.state = 1092; this.databasePath(); - this.state = 1076; + this.state = 1094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 441 || _la === 491) { { - this.state = 1075; + this.state = 1093; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 441 || _la === 491)) { @@ -4824,31 +4836,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1078; + this.state = 1096; this.match(FlinkSqlParser.KW_DROP); - this.state = 1080; + this.state = 1098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1079; + this.state = 1097; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1082; + this.state = 1100; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1084; + this.state = 1102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1083; + this.state = 1101; this.ifExists(); } } - this.state = 1086; + this.state = 1104; this.viewPath(); } } @@ -4872,39 +4884,39 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1088; + this.state = 1106; this.match(FlinkSqlParser.KW_DROP); - this.state = 1092; + this.state = 1110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1089; + this.state = 1107; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1090; + this.state = 1108; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1091; + this.state = 1109; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1094; + this.state = 1112; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1096; + this.state = 1114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1095; + this.state = 1113; this.ifExists(); } break; } - this.state = 1098; + this.state = 1116; this.functionName(); } } @@ -4927,24 +4939,24 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1107; + this.state = 1125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1101; + this.state = 1119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1100; + this.state = 1118; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1103; + this.state = 1121; this.insertSimpleStatement(); } } @@ -4952,7 +4964,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1104; + this.state = 1122; this.insertMulStatementCompatibility(); } break; @@ -4960,9 +4972,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1105; + this.state = 1123; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1106; + this.state = 1124; this.insertMulStatement(); } } @@ -4990,9 +5002,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1109; + this.state = 1127; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1110; + this.state = 1128; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 266)) { this.errorHandler.recoverInline(this); @@ -5001,40 +5013,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1111; + this.state = 1129; this.tablePath(); - this.state = 1120; + this.state = 1138; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1113; + this.state = 1131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1112; + this.state = 1130; this.insertPartitionDefinition(); } } - this.state = 1116; + this.state = 1134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1115; + this.state = 1133; this.columnNameList(); } break; } - this.state = 1118; + this.state = 1136; this.queryStatement(0); } break; case 2: { - this.state = 1119; + this.state = 1137; this.valuesDefinition(); } break; @@ -5061,9 +5073,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1122; + this.state = 1140; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1123; + this.state = 1141; this.tablePropertyList(); } } @@ -5088,23 +5100,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1125; + this.state = 1143; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1126; + this.state = 1144; this.valuesRowDefinition(); - this.state = 1131; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1127; + this.state = 1145; this.match(FlinkSqlParser.COMMA); - this.state = 1128; + this.state = 1146; this.valuesRowDefinition(); } } - this.state = 1133; + this.state = 1151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5131,27 +5143,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1134; + this.state = 1152; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1135; + this.state = 1153; this.valueDefinition(); - this.state = 1140; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1136; + this.state = 1154; this.match(FlinkSqlParser.COMMA); - this.state = 1137; + this.state = 1155; this.valueDefinition(); } } - this.state = 1142; + this.state = 1160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1143; + this.state = 1161; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5173,20 +5185,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ValueDefinitionContext(this.context, this.state); this.enterRule(localContext, 154, FlinkSqlParser.RULE_valueDefinition); try { - this.state = 1147; + this.state = 1165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1145; + this.state = 1163; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1146; + this.state = 1164; this.functionCallExpression(); } break; @@ -5213,31 +5225,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1149; + this.state = 1167; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1150; + this.state = 1168; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1151; + this.state = 1169; this.match(FlinkSqlParser.KW_SET); - this.state = 1152; + this.state = 1170; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1156; + this.state = 1174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1153; + this.state = 1171; this.insertSimpleStatement(); - this.state = 1154; + this.state = 1172; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1158; + this.state = 1176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1160; + this.state = 1178; this.match(FlinkSqlParser.KW_END); } } @@ -5262,29 +5274,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1162; + this.state = 1180; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1163; + this.state = 1181; this.match(FlinkSqlParser.KW_SET); - this.state = 1164; + this.state = 1182; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1168; + this.state = 1186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1165; + this.state = 1183; this.insertSimpleStatement(); - this.state = 1166; + this.state = 1184; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1170; + this.state = 1188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1172; + this.state = 1190; this.match(FlinkSqlParser.KW_END); } } @@ -5321,53 +5333,53 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1197; + this.state = 1215; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1175; + this.state = 1193; this.valuesClause(); } break; case 2: { - this.state = 1176; + this.state = 1194; this.withClause(); - this.state = 1177; + this.state = 1195; this.queryStatement(5); } break; case 3: { - this.state = 1179; + this.state = 1197; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1180; + this.state = 1198; this.queryStatement(0); - this.state = 1181; + this.state = 1199; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1183; + this.state = 1201; this.selectClause(); - this.state = 1185; + this.state = 1203; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1184; + this.state = 1202; this.orderByClause(); } break; } - this.state = 1188; + this.state = 1206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1187; + this.state = 1205; this.limitClause(); } break; @@ -5376,24 +5388,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1190; + this.state = 1208; this.selectStatement(); - this.state = 1192; + this.state = 1210; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1191; + this.state = 1209; this.orderByClause(); } break; } - this.state = 1195; + this.state = 1213; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1194; + this.state = 1212; this.limitClause(); } break; @@ -5402,7 +5414,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1213; + this.state = 1231; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5416,11 +5428,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1199; + this.state = 1217; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1200; + this.state = 1218; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 180 || _la === 403)) { @@ -5430,34 +5442,34 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1202; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1201; + this.state = 1219; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1204; + this.state = 1222; localContext._right = this.queryStatement(0); - this.state = 1206; + this.state = 1224; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1205; + this.state = 1223; this.orderByClause(); } break; } - this.state = 1209; + this.state = 1227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1208; + this.state = 1226; this.limitClause(); } break; @@ -5465,7 +5477,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1215; + this.state = 1233; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); } @@ -5492,25 +5504,25 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1216; + this.state = 1234; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1217; + this.state = 1235; this.expression(); - this.state = 1222; + this.state = 1240; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1218; + this.state = 1236; this.match(FlinkSqlParser.COMMA); - this.state = 1219; + this.state = 1237; this.expression(); } } } - this.state = 1224; + this.state = 1242; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); } @@ -5537,23 +5549,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1225; + this.state = 1243; this.match(FlinkSqlParser.KW_WITH); - this.state = 1226; + this.state = 1244; this.withItem(); - this.state = 1231; + this.state = 1249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1227; + this.state = 1245; this.match(FlinkSqlParser.COMMA); - this.state = 1228; + this.state = 1246; this.withItem(); } } - this.state = 1233; + this.state = 1251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5580,45 +5592,45 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1234; + this.state = 1252; this.withItemName(); - this.state = 1246; + this.state = 1264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 1235; + this.state = 1253; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1236; + this.state = 1254; this.columnName(); - this.state = 1241; + this.state = 1259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1237; + this.state = 1255; this.match(FlinkSqlParser.COMMA); - this.state = 1238; + this.state = 1256; this.columnName(); } } - this.state = 1243; + this.state = 1261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1244; + this.state = 1262; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1248; + this.state = 1266; this.match(FlinkSqlParser.KW_AS); - this.state = 1249; + this.state = 1267; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1250; + this.state = 1268; this.queryStatement(0); - this.state = 1251; + this.state = 1269; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5642,7 +5654,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1253; + this.state = 1271; this.identifier(); } } @@ -5664,60 +5676,60 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SelectStatementContext(this.context, this.state); this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1275; + this.state = 1293; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1255; + this.state = 1273; this.selectClause(); - this.state = 1257; + this.state = 1275; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1256; + this.state = 1274; this.fromClause(); } break; } - this.state = 1260; + this.state = 1278; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1259; + this.state = 1277; this.whereClause(); } break; } - this.state = 1263; + this.state = 1281; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1262; + this.state = 1280; this.groupByClause(); } break; } - this.state = 1266; + this.state = 1284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1265; + this.state = 1283; this.havingClause(); } break; } - this.state = 1269; + this.state = 1287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1268; + this.state = 1286; this.windowClause(); } break; @@ -5727,11 +5739,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1271; + this.state = 1289; this.selectClause(); - this.state = 1272; + this.state = 1290; this.fromClause(); - this.state = 1273; + this.state = 1291; this.matchRecognizeClause(); } break; @@ -5755,55 +5767,22 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SelectClauseContext(this.context, this.state); this.enterRule(localContext, 172, FlinkSqlParser.RULE_selectClause); try { - let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1277; + this.state = 1295; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1279; + this.state = 1297; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1278; + this.state = 1296; this.setQuantifier(); } break; } - this.state = 1290; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { - case 1: - { - this.state = 1281; - this.match(FlinkSqlParser.ASTERISK_SIGN); - } - break; - case 2: - { - this.state = 1282; - this.projectItemDefinition(); - this.state = 1287; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1283; - this.match(FlinkSqlParser.COMMA); - this.state = 1284; - this.projectItemDefinition(); - } - } - } - this.state = 1289; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); - } - } - break; - } + this.state = 1299; + this.selectList(); } } catch (re) { @@ -5820,42 +5799,306 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public projectItemDefinition(): ProjectItemDefinitionContext { - let localContext = new ProjectItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 174, FlinkSqlParser.RULE_projectItemDefinition); - let _la: number; + public selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 174, FlinkSqlParser.RULE_selectList); try { - this.state = 1307; + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1301; + this.columnProjectItem(); + this.state = 1306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 1292; - this.overWindowItem(); - } - break; + alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1302; + this.match(FlinkSqlParser.COMMA); + this.state = 1303; + this.columnProjectItem(); + } + } + } + this.state = 1308; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnProjectItem(): ColumnProjectItemContext { + let localContext = new ColumnProjectItemContext(this.context, this.state); + this.enterRule(localContext, 176, FlinkSqlParser.RULE_columnProjectItem); + let _la: number; + try { + this.state = 1330; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1309; + this.selectWindowItemColumnName(); + } + break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1293; - this.expression(); - this.state = 1298; + this.state = 1310; + this.selectLiteralColumnName(); + this.state = 1316; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + case 1: + { + this.state = 1311; + this.columnAlias(); + } + break; + case 2: + { + this.state = 1313; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 17) { + { + this.state = 1312; + this.match(FlinkSqlParser.KW_AS); + } + } + + this.state = 1315; + this.expression(); + } + break; + } + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1318; + this.tableAllColumns(); + this.state = 1320; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1295; + this.state = 1319; + this.columnAlias(); + } + break; + } + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 1322; + this.selectExpressionColumnName(); + this.state = 1328; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { + case 1: + { + this.state = 1323; + this.columnAlias(); + } + break; + case 2: + { + this.state = 1325; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { + case 1: + { + this.state = 1324; + this.match(FlinkSqlParser.KW_AS); + } + break; + } + this.state = 1327; + this.columnName(); + } + break; + } + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectWindowItemColumnName(): SelectWindowItemColumnNameContext { + let localContext = new SelectWindowItemColumnNameContext(this.context, this.state); + this.enterRule(localContext, 178, FlinkSqlParser.RULE_selectWindowItemColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1332; + this.overWindowItem(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 180, FlinkSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1334; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 182, FlinkSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1336; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnAlias(): ColumnAliasContext { + let localContext = new ColumnAliasContext(this.context, this.state); + this.enterRule(localContext, 184, FlinkSqlParser.RULE_columnAlias); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1339; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 17) { + { + this.state = 1338; + this.match(FlinkSqlParser.KW_AS); + } + } + + this.state = 1341; + localContext._alias = this.identifier(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public projectItemDefinition(): ProjectItemDefinitionContext { + let localContext = new ProjectItemDefinitionContext(this.context, this.state); + this.enterRule(localContext, 186, FlinkSqlParser.RULE_projectItemDefinition); + let _la: number; + try { + this.state = 1358; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1343; + this.overWindowItem(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1344; + this.expression(); + this.state = 1349; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { + case 1: + { + this.state = 1346; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: { - this.state = 1294; + this.state = 1345; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1297; + this.state = 1348; this.columnName(); } break; @@ -5865,24 +6108,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1300; + this.state = 1351; this.columnName(); - this.state = 1305; + this.state = 1356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { case 1: { - this.state = 1302; + this.state = 1353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1301; + this.state = 1352; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1304; + this.state = 1355; this.expression(); } break; @@ -5905,41 +6148,97 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 188, FlinkSqlParser.RULE_tableAllColumns); + let _la: number; + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1370; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + { + this.state = 1360; + this.identifier(); + this.state = 1365; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1361; + this.match(FlinkSqlParser.DOT); + this.state = 1362; + this.identifier(); + } + } + } + this.state = 1367; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); + } + this.state = 1368; + this.match(FlinkSqlParser.DOT); + } + } + + this.state = 1372; + this.match(FlinkSqlParser.ASTERISK_SIGN); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public overWindowItem(): OverWindowItemContext { let localContext = new OverWindowItemContext(this.context, this.state); - this.enterRule(localContext, 176, FlinkSqlParser.RULE_overWindowItem); + this.enterRule(localContext, 190, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1321; + this.state = 1386; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1309; + this.state = 1374; this.primaryExpression(0); - this.state = 1310; + this.state = 1375; this.match(FlinkSqlParser.KW_OVER); - this.state = 1311; + this.state = 1376; this.windowSpec(); - this.state = 1312; + this.state = 1377; this.match(FlinkSqlParser.KW_AS); - this.state = 1313; - this.identifier(); + this.state = 1378; + localContext._alias = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1315; + this.state = 1380; this.primaryExpression(0); - this.state = 1316; + this.state = 1381; this.match(FlinkSqlParser.KW_OVER); - this.state = 1317; + this.state = 1382; this.errorCapturingIdentifier(); - this.state = 1318; + this.state = 1383; this.match(FlinkSqlParser.KW_AS); - this.state = 1319; - this.identifier(); + this.state = 1384; + localContext._alias = this.identifier(); } break; } @@ -5960,13 +6259,13 @@ export class FlinkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 178, FlinkSqlParser.RULE_fromClause); + this.enterRule(localContext, 192, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1323; + this.state = 1388; this.match(FlinkSqlParser.KW_FROM); - this.state = 1324; + this.state = 1389; this.tableExpression(0); } } @@ -5996,57 +6295,57 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TableExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 180; - this.enterRecursionRule(localContext, 180, FlinkSqlParser.RULE_tableExpression, _p); + let _startState = 194; + this.enterRecursionRule(localContext, 194, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1337; + this.state = 1402; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: { - this.state = 1327; + this.state = 1392; this.tableReference(); - this.state = 1332; + this.state = 1397; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1328; + this.state = 1393; this.match(FlinkSqlParser.COMMA); - this.state = 1329; + this.state = 1394; this.tableReference(); } } } - this.state = 1334; + this.state = 1399; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } } break; case 2: { - this.state = 1335; + this.state = 1400; this.inlineDataValueClause(); } break; case 3: { - this.state = 1336; + this.state = 1401; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1360; + this.state = 1425; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -6054,22 +6353,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1358; + this.state = 1423; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1339; + this.state = 1404; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1340; + this.state = 1405; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1341; + this.state = 1406; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1342; + this.state = 1407; this.tableExpression(4); } break; @@ -6077,26 +6376,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1343; + this.state = 1408; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1345; + this.state = 1410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 234) { { - this.state = 1344; + this.state = 1409; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1348; + this.state = 1413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 202 || _la === 318) { { - this.state = 1347; + this.state = 1412; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 202 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -6108,26 +6407,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1351; + this.state = 1416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 1350; + this.state = 1415; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1353; + this.state = 1418; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1354; + this.state = 1419; this.tableExpression(0); - this.state = 1356; + this.state = 1421; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 1355; + this.state = 1420; this.joinCondition(); } break; @@ -6137,9 +6436,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1362; + this.state = 1427; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); } } } @@ -6159,18 +6458,18 @@ export class FlinkSqlParser extends SQLParserBase { } public tableReference(): TableReferenceContext { let localContext = new TableReferenceContext(this.context, this.state); - this.enterRule(localContext, 182, FlinkSqlParser.RULE_tableReference); + this.enterRule(localContext, 196, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1428; this.tablePrimary(); - this.state = 1365; + this.state = 1430; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 1364; + this.state = 1429; this.tableAlias(); } break; @@ -6193,33 +6492,33 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePrimary(): TablePrimaryContext { let localContext = new TablePrimaryContext(this.context, this.state); - this.enterRule(localContext, 184, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localContext, 198, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1396; + this.state = 1445; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1368; + this.state = 1433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 374) { { - this.state = 1367; + this.state = 1432; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1370; + this.state = 1435; this.tablePath(); - this.state = 1372; + this.state = 1437; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1371; + this.state = 1436; this.systemTimePeriod(); } break; @@ -6229,14 +6528,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1374; + this.state = 1439; this.viewPath(); - this.state = 1376; + this.state = 1441; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 1375; + this.state = 1440; this.systemTimePeriod(); } break; @@ -6246,52 +6545,110 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1378; - this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1379; - this.match(FlinkSqlParser.KW_TABLE); - this.state = 1380; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1381; - this.functionCallExpression(); - this.state = 1382; - this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1443; + this.atomFunctionTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1385; + this.state = 1444; + this.atomExpressionTable(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public atomFunctionTable(): AtomFunctionTableContext { + let localContext = new AtomFunctionTableContext(this.context, this.state); + this.enterRule(localContext, 200, FlinkSqlParser.RULE_atomFunctionTable); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1447; + this.match(FlinkSqlParser.KW_LATERAL); + this.state = 1448; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 1449; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1450; + this.functionCallExpression(); + this.state = 1451; + this.match(FlinkSqlParser.RR_BRACKET); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public atomExpressionTable(): AtomExpressionTableContext { + let localContext = new AtomExpressionTableContext(this.context, this.state); + this.enterRule(localContext, 202, FlinkSqlParser.RULE_atomExpressionTable); + let _la: number; + try { + this.state = 1465; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_LATERAL: + case FlinkSqlParser.LR_BRACKET: + this.enterOuterAlt(localContext, 1); + { + this.state = 1454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 1384; + this.state = 1453; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1387; + this.state = 1456; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1388; + this.state = 1457; this.queryStatement(0); - this.state = 1389; + this.state = 1458; this.match(FlinkSqlParser.RR_BRACKET); } break; - case 5: - this.enterOuterAlt(localContext, 5); + case FlinkSqlParser.KW_UNNEST: + this.enterOuterAlt(localContext, 2); { - this.state = 1391; + this.state = 1460; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1392; + this.state = 1461; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1393; + this.state = 1462; this.expression(); - this.state = 1394; + this.state = 1463; this.match(FlinkSqlParser.RR_BRACKET); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -6310,19 +6667,19 @@ export class FlinkSqlParser extends SQLParserBase { } public systemTimePeriod(): SystemTimePeriodContext { let localContext = new SystemTimePeriodContext(this.context, this.state); - this.enterRule(localContext, 186, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localContext, 204, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 1398; + this.state = 1467; this.match(FlinkSqlParser.KW_FOR); - this.state = 1399; + this.state = 1468; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1400; + this.state = 1469; this.match(FlinkSqlParser.KW_AS); - this.state = 1401; + this.state = 1470; this.match(FlinkSqlParser.KW_OF); - this.state = 1402; + this.state = 1471; this.dateTimeExpression(); } } @@ -6342,11 +6699,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dateTimeExpression(): DateTimeExpressionContext { let localContext = new DateTimeExpressionContext(this.context, this.state); - this.enterRule(localContext, 188, FlinkSqlParser.RULE_dateTimeExpression); + this.enterRule(localContext, 206, FlinkSqlParser.RULE_dateTimeExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1404; + this.state = 1473; this.expression(); } } @@ -6366,17 +6723,17 @@ export class FlinkSqlParser extends SQLParserBase { } public inlineDataValueClause(): InlineDataValueClauseContext { let localContext = new InlineDataValueClauseContext(this.context, this.state); - this.enterRule(localContext, 190, FlinkSqlParser.RULE_inlineDataValueClause); + this.enterRule(localContext, 208, FlinkSqlParser.RULE_inlineDataValueClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1406; + this.state = 1475; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1407; + this.state = 1476; this.valuesDefinition(); - this.state = 1408; + this.state = 1477; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1409; + this.state = 1478; this.tableAlias(); } } @@ -6396,17 +6753,17 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFClause(): WindowTVFClauseContext { let localContext = new WindowTVFClauseContext(this.context, this.state); - this.enterRule(localContext, 192, FlinkSqlParser.RULE_windowTVFClause); + this.enterRule(localContext, 210, FlinkSqlParser.RULE_windowTVFClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1411; + this.state = 1480; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1412; + this.state = 1481; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1413; + this.state = 1482; this.windowTVFExpression(); - this.state = 1414; + this.state = 1483; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6426,34 +6783,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFExpression(): WindowTVFExpressionContext { let localContext = new WindowTVFExpressionContext(this.context, this.state); - this.enterRule(localContext, 194, FlinkSqlParser.RULE_windowTVFExpression); + this.enterRule(localContext, 212, FlinkSqlParser.RULE_windowTVFExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1416; + this.state = 1485; this.windowTVFName(); - this.state = 1417; + this.state = 1486; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1418; + this.state = 1487; this.windowTVFParam(); - this.state = 1423; + this.state = 1492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1419; + this.state = 1488; this.match(FlinkSqlParser.COMMA); - this.state = 1420; + this.state = 1489; this.windowTVFParam(); } } - this.state = 1425; + this.state = 1494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1426; + this.state = 1495; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6473,12 +6830,12 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFName(): WindowTVFNameContext { let localContext = new WindowTVFNameContext(this.context, this.state); - this.enterRule(localContext, 196, FlinkSqlParser.RULE_windowTVFName); + this.enterRule(localContext, 214, FlinkSqlParser.RULE_windowTVFName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1428; + this.state = 1497; _la = this.tokenStream.LA(1); if(!(_la === 446 || _la === 460 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -6505,66 +6862,66 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFParam(): WindowTVFParamContext { let localContext = new WindowTVFParamContext(this.context, this.state); - this.enterRule(localContext, 198, FlinkSqlParser.RULE_windowTVFParam); + this.enterRule(localContext, 216, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1445; + this.state = 1514; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1430; + this.state = 1499; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1431; + this.state = 1500; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1432; + this.state = 1501; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1433; + this.state = 1502; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1434; + this.state = 1503; this.match(FlinkSqlParser.KW_DATA); - this.state = 1435; + this.state = 1504; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1436; + this.state = 1505; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1437; + this.state = 1506; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1438; + this.state = 1507; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1439; + this.state = 1508; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1440; + this.state = 1509; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1441; + this.state = 1510; this.timeIntervalParamName(); - this.state = 1442; + this.state = 1511; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1443; + this.state = 1512; this.timeIntervalExpression(); } break; @@ -6586,12 +6943,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalParamName(): TimeIntervalParamNameContext { let localContext = new TimeIntervalParamNameContext(this.context, this.state); - this.enterRule(localContext, 200, FlinkSqlParser.RULE_timeIntervalParamName); + this.enterRule(localContext, 218, FlinkSqlParser.RULE_timeIntervalParamName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1447; + this.state = 1516; _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 447 || ((((_la - 495)) & ~0x1F) === 0 && ((1 << (_la - 495)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -6618,17 +6975,17 @@ export class FlinkSqlParser extends SQLParserBase { } public columnDescriptor(): ColumnDescriptorContext { let localContext = new ColumnDescriptorContext(this.context, this.state); - this.enterRule(localContext, 202, FlinkSqlParser.RULE_columnDescriptor); + this.enterRule(localContext, 220, FlinkSqlParser.RULE_columnDescriptor); try { this.enterOuterAlt(localContext, 1); { - this.state = 1449; + this.state = 1518; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1450; + this.state = 1519; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1451; + this.state = 1520; this.columnName(); - this.state = 1452; + this.state = 1521; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6648,26 +7005,26 @@ export class FlinkSqlParser extends SQLParserBase { } public joinCondition(): JoinConditionContext { let localContext = new JoinConditionContext(this.context, this.state); - this.enterRule(localContext, 204, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localContext, 222, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1458; + this.state = 1527; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1523; this.match(FlinkSqlParser.KW_ON); - this.state = 1455; + this.state = 1524; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1456; + this.state = 1525; this.match(FlinkSqlParser.KW_USING); - this.state = 1457; + this.state = 1526; this.columnNameList(); } break; @@ -6691,13 +7048,13 @@ export class FlinkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 206, FlinkSqlParser.RULE_whereClause); + this.enterRule(localContext, 224, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1460; + this.state = 1529; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1461; + this.state = 1530; this.booleanExpression(0); } } @@ -6717,34 +7074,34 @@ export class FlinkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 226, FlinkSqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1463; + this.state = 1532; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1464; + this.state = 1533; this.match(FlinkSqlParser.KW_BY); - this.state = 1465; + this.state = 1534; this.groupItemDefinition(); - this.state = 1470; + this.state = 1539; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 168, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1466; + this.state = 1535; this.match(FlinkSqlParser.COMMA); - this.state = 1467; + this.state = 1536; this.groupItemDefinition(); } } } - this.state = 1472; + this.state = 1541; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 168, this.context); } } } @@ -6764,124 +7121,124 @@ export class FlinkSqlParser extends SQLParserBase { } public groupItemDefinition(): GroupItemDefinitionContext { let localContext = new GroupItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localContext, 228, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1513; + this.state = 1582; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1473; + this.state = 1542; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1474; + this.state = 1543; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1475; + this.state = 1544; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1476; + this.state = 1545; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1477; + this.state = 1546; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1478; + this.state = 1547; this.expression(); - this.state = 1483; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1479; + this.state = 1548; this.match(FlinkSqlParser.COMMA); - this.state = 1480; + this.state = 1549; this.expression(); } } - this.state = 1485; + this.state = 1554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1486; + this.state = 1555; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1488; + this.state = 1557; this.groupingSetsNotationName(); - this.state = 1489; + this.state = 1558; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1490; + this.state = 1559; this.expression(); - this.state = 1495; + this.state = 1564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1491; + this.state = 1560; this.match(FlinkSqlParser.COMMA); - this.state = 1492; + this.state = 1561; this.expression(); } } - this.state = 1497; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1498; + this.state = 1567; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1500; + this.state = 1569; this.groupingSets(); - this.state = 1501; + this.state = 1570; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1502; + this.state = 1571; this.groupItemDefinition(); - this.state = 1507; + this.state = 1576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1503; + this.state = 1572; this.match(FlinkSqlParser.COMMA); - this.state = 1504; + this.state = 1573; this.groupItemDefinition(); } } - this.state = 1509; + this.state = 1578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1510; + this.state = 1579; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1512; + this.state = 1581; this.expression(); } break; @@ -6903,13 +7260,13 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSets(): GroupingSetsContext { let localContext = new GroupingSetsContext(this.context, this.state); - this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupingSets); + this.enterRule(localContext, 230, FlinkSqlParser.RULE_groupingSets); try { this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1584; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1516; + this.state = 1585; this.match(FlinkSqlParser.KW_SETS); } } @@ -6929,12 +7286,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSetsNotationName(): GroupingSetsNotationNameContext { let localContext = new GroupingSetsNotationNameContext(this.context, this.state); - this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupingSetsNotationName); + this.enterRule(localContext, 232, FlinkSqlParser.RULE_groupingSetsNotationName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1518; + this.state = 1587; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 321)) { this.errorHandler.recoverInline(this); @@ -6961,21 +7318,21 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunction(): GroupWindowFunctionContext { let localContext = new GroupWindowFunctionContext(this.context, this.state); - this.enterRule(localContext, 216, FlinkSqlParser.RULE_groupWindowFunction); + this.enterRule(localContext, 234, FlinkSqlParser.RULE_groupWindowFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1520; + this.state = 1589; this.groupWindowFunctionName(); - this.state = 1521; + this.state = 1590; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1522; + this.state = 1591; this.timeAttrColumn(); - this.state = 1523; + this.state = 1592; this.match(FlinkSqlParser.COMMA); - this.state = 1524; + this.state = 1593; this.timeIntervalExpression(); - this.state = 1525; + this.state = 1594; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6995,12 +7352,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunctionName(): GroupWindowFunctionNameContext { let localContext = new GroupWindowFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 218, FlinkSqlParser.RULE_groupWindowFunctionName); + this.enterRule(localContext, 236, FlinkSqlParser.RULE_groupWindowFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1527; + this.state = 1596; _la = this.tokenStream.LA(1); if(!(_la === 460 || _la === 493 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -7027,11 +7384,11 @@ export class FlinkSqlParser extends SQLParserBase { } public timeAttrColumn(): TimeAttrColumnContext { let localContext = new TimeAttrColumnContext(this.context, this.state); - this.enterRule(localContext, 220, FlinkSqlParser.RULE_timeAttrColumn); + this.enterRule(localContext, 238, FlinkSqlParser.RULE_timeAttrColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 1529; + this.state = 1598; this.uid(); } } @@ -7051,13 +7408,13 @@ export class FlinkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 222, FlinkSqlParser.RULE_havingClause); + this.enterRule(localContext, 240, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1531; + this.state = 1600; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1532; + this.state = 1601; this.booleanExpression(0); } } @@ -7077,32 +7434,32 @@ export class FlinkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 224, FlinkSqlParser.RULE_windowClause); + this.enterRule(localContext, 242, FlinkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1534; + this.state = 1603; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1535; + this.state = 1604; this.namedWindow(); - this.state = 1540; + this.state = 1609; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 173, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1536; + this.state = 1605; this.match(FlinkSqlParser.COMMA); - this.state = 1537; + this.state = 1606; this.namedWindow(); } } } - this.state = 1542; + this.state = 1611; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 173, this.context); } } } @@ -7122,15 +7479,15 @@ export class FlinkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 226, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 244, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 1543; + this.state = 1612; localContext._name = this.errorCapturingIdentifier(); - this.state = 1544; + this.state = 1613; this.match(FlinkSqlParser.KW_AS); - this.state = 1545; + this.state = 1614; this.windowSpec(); } } @@ -7150,54 +7507,54 @@ export class FlinkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 228, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 246, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1548; + this.state = 1617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1547; + this.state = 1616; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1550; + this.state = 1619; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1552; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1551; + this.state = 1620; this.partitionByClause(); } } - this.state = 1555; + this.state = 1624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1554; + this.state = 1623; this.orderByClause(); } } - this.state = 1558; + this.state = 1627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293 || _la === 323) { { - this.state = 1557; + this.state = 1626; this.windowFrame(); } } - this.state = 1560; + this.state = 1629; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7217,95 +7574,95 @@ export class FlinkSqlParser extends SQLParserBase { } public matchRecognizeClause(): MatchRecognizeClauseContext { let localContext = new MatchRecognizeClauseContext(this.context, this.state); - this.enterRule(localContext, 230, FlinkSqlParser.RULE_matchRecognizeClause); + this.enterRule(localContext, 248, FlinkSqlParser.RULE_matchRecognizeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1562; + this.state = 1631; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1563; + this.state = 1632; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1565; + this.state = 1634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1564; + this.state = 1633; this.partitionByClause(); } } - this.state = 1568; + this.state = 1637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1567; + this.state = 1636; this.orderByClause(); } } - this.state = 1571; + this.state = 1640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1570; + this.state = 1639; this.measuresClause(); } } - this.state = 1574; + this.state = 1643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 255) { { - this.state = 1573; + this.state = 1642; this.outputMode(); } } - this.state = 1577; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 439) { { - this.state = 1576; + this.state = 1645; this.afterMatchStrategy(); } } - this.state = 1580; + this.state = 1649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 272) { { - this.state = 1579; + this.state = 1648; this.patternDefinition(); } } - this.state = 1582; + this.state = 1651; this.patternVariablesDefinition(); - this.state = 1583; + this.state = 1652; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1588; + this.state = 1657; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1585; + this.state = 1654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1584; + this.state = 1653; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1587; + this.state = 1656; this.identifier(); } break; @@ -7328,34 +7685,34 @@ export class FlinkSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 232, FlinkSqlParser.RULE_orderByClause); + this.enterRule(localContext, 250, FlinkSqlParser.RULE_orderByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1590; + this.state = 1659; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1591; + this.state = 1660; this.match(FlinkSqlParser.KW_BY); - this.state = 1592; + this.state = 1661; this.orderItemDefinition(); - this.state = 1597; + this.state = 1666; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1593; + this.state = 1662; this.match(FlinkSqlParser.COMMA); - this.state = 1594; + this.state = 1663; this.orderItemDefinition(); } } } - this.state = 1599; + this.state = 1668; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); } } } @@ -7375,19 +7732,19 @@ export class FlinkSqlParser extends SQLParserBase { } public orderItemDefinition(): OrderItemDefinitionContext { let localContext = new OrderItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 234, FlinkSqlParser.RULE_orderItemDefinition); + this.enterRule(localContext, 252, FlinkSqlParser.RULE_orderItemDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1600; + this.state = 1669; this.columnName(); - this.state = 1602; + this.state = 1671; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1601; + this.state = 1670; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 451)) { @@ -7400,14 +7757,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1606; + this.state = 1675; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 1604; + this.state = 1673; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1605; + this.state = 1674; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 458 || _la === 468)) { @@ -7438,18 +7795,18 @@ export class FlinkSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 236, FlinkSqlParser.RULE_limitClause); + this.enterRule(localContext, 254, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1608; + this.state = 1677; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1611; + this.state = 1680; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1609; + this.state = 1678; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7612,7 +7969,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1610; + this.state = 1679; localContext._limit = this.expression(); } break; @@ -7637,58 +7994,58 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 238, FlinkSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1613; + this.state = 1682; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1614; + this.state = 1683; this.match(FlinkSqlParser.KW_BY); - this.state = 1617; + this.state = 1686; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1615; + this.state = 1684; this.columnName(); } break; case 2: { - this.state = 1616; + this.state = 1685; this.primaryExpression(0); } break; } - this.state = 1626; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1619; + this.state = 1688; this.match(FlinkSqlParser.COMMA); - this.state = 1622; + this.state = 1691; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 1620; + this.state = 1689; this.columnName(); } break; case 2: { - this.state = 1621; + this.state = 1690; this.primaryExpression(0); } break; } } } - this.state = 1628; + this.state = 1697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7710,16 +8067,16 @@ export class FlinkSqlParser extends SQLParserBase { } public quantifiers(): QuantifiersContext { let localContext = new QuantifiersContext(this.context, this.state); - this.enterRule(localContext, 240, FlinkSqlParser.RULE_quantifiers); + this.enterRule(localContext, 258, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1645; + this.state = 1714; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1629; + this.state = 1698; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7728,7 +8085,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1630; + this.state = 1699; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7737,7 +8094,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1631; + this.state = 1700; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7746,15 +8103,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1632; + this.state = 1701; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1633; + this.state = 1702; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1634; + this.state = 1703; this.match(FlinkSqlParser.COMMA); - this.state = 1635; + this.state = 1704; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1636; + this.state = 1705; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7763,13 +8120,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1637; + this.state = 1706; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1638; + this.state = 1707; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1639; + this.state = 1708; this.match(FlinkSqlParser.COMMA); - this.state = 1640; + this.state = 1709; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7778,13 +8135,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1641; + this.state = 1710; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1642; + this.state = 1711; this.match(FlinkSqlParser.COMMA); - this.state = 1643; + this.state = 1712; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1644; + this.state = 1713; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7807,28 +8164,28 @@ export class FlinkSqlParser extends SQLParserBase { } public measuresClause(): MeasuresClauseContext { let localContext = new MeasuresClauseContext(this.context, this.state); - this.enterRule(localContext, 242, FlinkSqlParser.RULE_measuresClause); + this.enterRule(localContext, 260, FlinkSqlParser.RULE_measuresClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1647; + this.state = 1716; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1648; + this.state = 1717; this.projectItemDefinition(); - this.state = 1653; + this.state = 1722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1649; + this.state = 1718; this.match(FlinkSqlParser.COMMA); - this.state = 1650; + this.state = 1719; this.projectItemDefinition(); } } - this.state = 1655; + this.state = 1724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7850,37 +8207,37 @@ export class FlinkSqlParser extends SQLParserBase { } public patternDefinition(): PatternDefinitionContext { let localContext = new PatternDefinitionContext(this.context, this.state); - this.enterRule(localContext, 244, FlinkSqlParser.RULE_patternDefinition); + this.enterRule(localContext, 262, FlinkSqlParser.RULE_patternDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1656; + this.state = 1725; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1657; + this.state = 1726; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1659; + this.state = 1728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1658; + this.state = 1727; this.patternVariable(); } } - this.state = 1661; + this.state = 1730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 539 || _la === 542); - this.state = 1663; + this.state = 1732; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1665; + this.state = 1734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 435) { { - this.state = 1664; + this.state = 1733; this.withinClause(); } } @@ -7903,19 +8260,19 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariable(): PatternVariableContext { let localContext = new PatternVariableContext(this.context, this.state); - this.enterRule(localContext, 246, FlinkSqlParser.RULE_patternVariable); + this.enterRule(localContext, 264, FlinkSqlParser.RULE_patternVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1667; + this.state = 1736; this.unquotedIdentifier(); - this.state = 1669; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 519)) & ~0x1F) === 0 && ((1 << (_la - 519)) & 135681) !== 0)) { { - this.state = 1668; + this.state = 1737; this.quantifiers(); } } @@ -7938,34 +8295,34 @@ export class FlinkSqlParser extends SQLParserBase { } public outputMode(): OutputModeContext { let localContext = new OutputModeContext(this.context, this.state); - this.enterRule(localContext, 248, FlinkSqlParser.RULE_outputMode); + this.enterRule(localContext, 266, FlinkSqlParser.RULE_outputMode); try { - this.state = 1679; + this.state = 1748; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1671; + this.state = 1740; this.match(FlinkSqlParser.KW_ALL); - this.state = 1672; + this.state = 1741; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1673; + this.state = 1742; this.match(FlinkSqlParser.KW_PER); - this.state = 1674; + this.state = 1743; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1675; + this.state = 1744; this.match(FlinkSqlParser.KW_ONE); - this.state = 1676; + this.state = 1745; this.match(FlinkSqlParser.KW_ROW); - this.state = 1677; + this.state = 1746; this.match(FlinkSqlParser.KW_PER); - this.state = 1678; + this.state = 1747; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7989,76 +8346,76 @@ export class FlinkSqlParser extends SQLParserBase { } public afterMatchStrategy(): AfterMatchStrategyContext { let localContext = new AfterMatchStrategyContext(this.context, this.state); - this.enterRule(localContext, 250, FlinkSqlParser.RULE_afterMatchStrategy); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1705; + this.state = 1774; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1681; + this.state = 1750; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1682; + this.state = 1751; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1683; + this.state = 1752; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1684; + this.state = 1753; this.match(FlinkSqlParser.KW_PAST); - this.state = 1685; + this.state = 1754; this.match(FlinkSqlParser.KW_LAST); - this.state = 1686; + this.state = 1755; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1687; + this.state = 1756; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1688; + this.state = 1757; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1689; + this.state = 1758; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1690; + this.state = 1759; this.match(FlinkSqlParser.KW_TO); - this.state = 1691; + this.state = 1760; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1692; + this.state = 1761; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1693; + this.state = 1762; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1694; + this.state = 1763; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1695; + this.state = 1764; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1696; + this.state = 1765; this.match(FlinkSqlParser.KW_TO); - this.state = 1697; + this.state = 1766; this.match(FlinkSqlParser.KW_LAST); - this.state = 1698; + this.state = 1767; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1699; + this.state = 1768; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1700; + this.state = 1769; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1701; + this.state = 1770; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1702; + this.state = 1771; this.match(FlinkSqlParser.KW_TO); - this.state = 1703; + this.state = 1772; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1704; + this.state = 1773; this.unquotedIdentifier(); } break; @@ -8080,28 +8437,28 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariablesDefinition(): PatternVariablesDefinitionContext { let localContext = new PatternVariablesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 252, FlinkSqlParser.RULE_patternVariablesDefinition); + this.enterRule(localContext, 270, FlinkSqlParser.RULE_patternVariablesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1776; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1708; + this.state = 1777; this.projectItemDefinition(); - this.state = 1713; + this.state = 1782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1709; + this.state = 1778; this.match(FlinkSqlParser.COMMA); - this.state = 1710; + this.state = 1779; this.projectItemDefinition(); } } - this.state = 1715; + this.state = 1784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8123,34 +8480,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 254, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1725; + this.state = 1794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1716; + this.state = 1785; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1717; + this.state = 1786; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1718; + this.state = 1787; this.timeIntervalExpression(); - this.state = 1719; + this.state = 1788; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1721; + this.state = 1790; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1722; + this.state = 1791; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1723; + this.state = 1792; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1724; + this.state = 1793; this.frameBound(); } break; @@ -8174,17 +8531,17 @@ export class FlinkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_frameBound); + this.enterRule(localContext, 274, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localContext, 1); { - this.state = 1727; + this.state = 1796; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1728; + this.state = 1797; this.match(FlinkSqlParser.KW_AND); - this.state = 1729; + this.state = 1798; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1730; + this.state = 1799; this.match(FlinkSqlParser.KW_ROW); } } @@ -8204,13 +8561,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 258, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1732; + this.state = 1801; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1733; + this.state = 1802; this.timeIntervalExpression(); } } @@ -8230,11 +8587,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 260, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1735; + this.state = 1804; this.booleanExpression(0); } } @@ -8264,25 +8621,25 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 262; - this.enterRecursionRule(localContext, 262, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 280; + this.enterRecursionRule(localContext, 280, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1749; + this.state = 1818; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1738; + this.state = 1807; this.match(FlinkSqlParser.KW_NOT); - this.state = 1739; + this.state = 1808; this.booleanExpression(6); } break; @@ -8291,13 +8648,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1740; + this.state = 1809; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1741; + this.state = 1810; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1742; + this.state = 1811; this.queryStatement(0); - this.state = 1743; + this.state = 1812; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8306,14 +8663,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1745; + this.state = 1814; this.valueExpression(0); - this.state = 1747; + this.state = 1816; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1746; + this.state = 1815; this.predicate(); } break; @@ -8322,9 +8679,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1765; + this.state = 1834; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 206, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8332,21 +8689,21 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1763; + this.state = 1832; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1751; + this.state = 1820; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1752; + this.state = 1821; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1753; + this.state = 1822; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8355,13 +8712,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1754; + this.state = 1823; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1755; + this.state = 1824; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1756; + this.state = 1825; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8369,23 +8726,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1757; + this.state = 1826; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1758; + this.state = 1827; this.match(FlinkSqlParser.KW_IS); - this.state = 1760; + this.state = 1829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1759; + this.state = 1828; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1762; + this.state = 1831; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8400,9 +8757,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1767; + this.state = 1836; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 206, this.context); } } } @@ -8422,33 +8779,33 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 264, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1842; + this.state = 1911; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1769; + this.state = 1838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1768; + this.state = 1837; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1771; + this.state = 1840; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1773; + this.state = 1842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 370) { { - this.state = 1772; + this.state = 1841; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 370)) { this.errorHandler.recoverInline(this); @@ -8460,131 +8817,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1775; + this.state = 1844; localContext._lower = this.valueExpression(0); - this.state = 1776; + this.state = 1845; this.match(FlinkSqlParser.KW_AND); - this.state = 1777; + this.state = 1846; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1780; + this.state = 1849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1779; + this.state = 1848; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1782; + this.state = 1851; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1783; + this.state = 1852; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1784; + this.state = 1853; this.expression(); - this.state = 1789; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1785; + this.state = 1854; this.match(FlinkSqlParser.COMMA); - this.state = 1786; + this.state = 1855; this.expression(); } } - this.state = 1791; + this.state = 1860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1792; + this.state = 1861; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1795; + this.state = 1864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1794; + this.state = 1863; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1797; + this.state = 1866; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1798; + this.state = 1867; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1799; + this.state = 1868; this.queryStatement(0); - this.state = 1800; + this.state = 1869; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1802; + this.state = 1871; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1803; + this.state = 1872; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1804; + this.state = 1873; this.queryStatement(0); - this.state = 1805; + this.state = 1874; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1808; + this.state = 1877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1807; + this.state = 1876; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1810; + this.state = 1879; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1811; + this.state = 1880; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1812; + this.state = 1881; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1813; + this.state = 1882; this.match(FlinkSqlParser.KW_IS); - this.state = 1815; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1814; + this.state = 1883; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1817; + this.state = 1886; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8599,53 +8956,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1818; + this.state = 1887; this.match(FlinkSqlParser.KW_IS); - this.state = 1820; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1819; + this.state = 1888; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1822; + this.state = 1891; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1823; + this.state = 1892; this.match(FlinkSqlParser.KW_FROM); - this.state = 1824; + this.state = 1893; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1826; + this.state = 1895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1825; + this.state = 1894; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1828; + this.state = 1897; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1829; + this.state = 1898; this.match(FlinkSqlParser.KW_TO); - this.state = 1830; + this.state = 1899; localContext._right = this.valueExpression(0); - this.state = 1833; + this.state = 1902; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1831; + this.state = 1900; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1832; + this.state = 1901; this.stringLiteral(); } break; @@ -8655,28 +9012,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1835; + this.state = 1904; this.match(FlinkSqlParser.KW_IS); - this.state = 1836; + this.state = 1905; this.match(FlinkSqlParser.KW_JSON); - this.state = 1840; + this.state = 1909; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1837; + this.state = 1906; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1838; + this.state = 1907; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1839; + this.state = 1908; this.identifier(); } break; @@ -8701,28 +9058,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 266, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1873; + this.state = 1942; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1844; + this.state = 1913; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1847; + this.state = 1916; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1848; + this.state = 1917; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8732,40 +9089,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1862; + this.state = 1931; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1849; + this.state = 1918; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1850; + this.state = 1919; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1851; + this.state = 1920; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1852; + this.state = 1921; this.expression(); - this.state = 1857; + this.state = 1926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1853; + this.state = 1922; this.match(FlinkSqlParser.COMMA); - this.state = 1854; + this.state = 1923; this.expression(); } } - this.state = 1859; + this.state = 1928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1860; + this.state = 1929; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8775,28 +9132,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1865; + this.state = 1934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1864; + this.state = 1933; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1867; + this.state = 1936; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1868; + this.state = 1937; localContext._pattern = this.valueExpression(0); - this.state = 1871; + this.state = 1940; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1869; + this.state = 1938; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1870; + this.state = 1939; this.stringLiteral(); } break; @@ -8831,23 +9188,23 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 268; - this.enterRecursionRule(localContext, 268, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 286; + this.enterRecursionRule(localContext, 286, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1879; + this.state = 1948; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1876; + this.state = 1945; this.primaryExpression(0); } break; @@ -8856,7 +9213,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1877; + this.state = 1946; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3145729) !== 0))) { @@ -8866,15 +9223,15 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1878; + this.state = 1947; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1902; + this.state = 1971; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 227, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8882,19 +9239,19 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1900; + this.state = 1969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 226, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1881; + this.state = 1950; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1882; + this.state = 1951; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 145) !== 0))) { @@ -8904,7 +9261,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1883; + this.state = 1952; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8913,11 +9270,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1884; + this.state = 1953; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1885; + this.state = 1954; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 11) !== 0))) { @@ -8927,7 +9284,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1886; + this.state = 1955; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8936,13 +9293,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1887; + this.state = 1956; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1888; + this.state = 1957; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1889; + this.state = 1958; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8951,13 +9308,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1890; + this.state = 1959; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1891; + this.state = 1960; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1892; + this.state = 1961; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8966,13 +9323,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1893; + this.state = 1962; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1894; + this.state = 1963; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1895; + this.state = 1964; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -8981,22 +9338,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1896; + this.state = 1965; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1897; + this.state = 1966; this.comparisonOperator(); - this.state = 1898; + this.state = 1967; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1904; + this.state = 1973; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 227, this.context); } } } @@ -9016,10 +9373,10 @@ export class FlinkSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 1924; + this.state = 1993; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -9029,7 +9386,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 1905; + this.state = 1974; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -9039,7 +9396,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 1906; + this.state = 1975; this.functionNameAndParams(); } break; @@ -9180,47 +9537,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 1907; + this.state = 1976; this.functionNameWithParams(); - this.state = 1908; + this.state = 1977; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1920; + this.state = 1989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396848) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 10489249) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 1883341377) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 201330753) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 488456033) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 390)) & ~0x1F) === 0 && ((1 << (_la - 390)) & 3238528833) !== 0) || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 4294966785) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 4294967295) !== 0) || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 33832959) !== 0) || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 31757) !== 0)) { { - this.state = 1910; + this.state = 1979; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 1909; + this.state = 1978; this.setQuantifier(); } break; } - this.state = 1912; + this.state = 1981; this.functionParam(); - this.state = 1917; + this.state = 1986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1913; + this.state = 1982; this.match(FlinkSqlParser.COMMA); - this.state = 1914; + this.state = 1983; this.functionParam(); } } - this.state = 1919; + this.state = 1988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1922; + this.state = 1991; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9254,51 +9611,51 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 272; - this.enterRecursionRule(localContext, 272, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 290; + this.enterRecursionRule(localContext, 290, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2001; + this.state = 2070; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1927; + this.state = 1996; this.match(FlinkSqlParser.KW_CASE); - this.state = 1929; + this.state = 1998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1928; + this.state = 1997; this.whenClause(); } } - this.state = 1931; + this.state = 2000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 1935; + this.state = 2004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1933; + this.state = 2002; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1934; + this.state = 2003; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1937; + this.state = 2006; this.match(FlinkSqlParser.KW_END); } break; @@ -9307,37 +9664,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1939; + this.state = 2008; this.match(FlinkSqlParser.KW_CASE); - this.state = 1940; + this.state = 2009; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1942; + this.state = 2011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1941; + this.state = 2010; this.whenClause(); } } - this.state = 1944; + this.state = 2013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 1948; + this.state = 2017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1946; + this.state = 2015; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1947; + this.state = 2016; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1950; + this.state = 2019; this.match(FlinkSqlParser.KW_END); } break; @@ -9346,17 +9703,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1952; + this.state = 2021; this.match(FlinkSqlParser.KW_CAST); - this.state = 1953; + this.state = 2022; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1954; + this.state = 2023; this.expression(); - this.state = 1955; + this.state = 2024; this.match(FlinkSqlParser.KW_AS); - this.state = 1956; + this.state = 2025; this.columnType(); - this.state = 1957; + this.state = 2026; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9365,25 +9722,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1959; + this.state = 2028; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1960; + this.state = 2029; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1961; + this.state = 2030; this.expression(); - this.state = 1964; + this.state = 2033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 1962; + this.state = 2031; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1963; + this.state = 2032; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1966; + this.state = 2035; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9392,25 +9749,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1968; + this.state = 2037; this.match(FlinkSqlParser.KW_LAST); - this.state = 1969; + this.state = 2038; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1970; + this.state = 2039; this.expression(); - this.state = 1973; + this.state = 2042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 1971; + this.state = 2040; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1972; + this.state = 2041; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1975; + this.state = 2044; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9419,17 +9776,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1977; + this.state = 2046; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1978; + this.state = 2047; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1979; + this.state = 2048; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1980; + this.state = 2049; this.match(FlinkSqlParser.KW_IN); - this.state = 1981; + this.state = 2050; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1982; + this.state = 2051; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9438,7 +9795,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1984; + this.state = 2053; this.constant(); } break; @@ -9447,7 +9804,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1985; + this.state = 2054; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9456,11 +9813,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1986; + this.state = 2055; this.uid(); - this.state = 1987; + this.state = 2056; this.match(FlinkSqlParser.DOT); - this.state = 1988; + this.state = 2057; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9469,11 +9826,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1990; + this.state = 2059; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1991; + this.state = 2060; this.queryStatement(0); - this.state = 1992; + this.state = 2061; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9482,7 +9839,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1994; + this.state = 2063; this.functionCallExpression(); } break; @@ -9491,7 +9848,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1995; + this.state = 2064; this.columnNamePath(); } break; @@ -9500,7 +9857,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1996; + this.state = 2065; this.dereferenceDefinition(); } break; @@ -9509,19 +9866,19 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1997; + this.state = 2066; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1998; + this.state = 2067; this.expression(); - this.state = 1999; + this.state = 2068; this.match(FlinkSqlParser.RR_BRACKET); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2010; + this.state = 2079; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9533,22 +9890,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 2003; + this.state = 2072; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 2004; + this.state = 2073; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 2005; + this.state = 2074; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2006; + this.state = 2075; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2012; + this.state = 2081; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); } } } @@ -9568,11 +9925,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2013; + this.state = 2082; this.uid(); } } @@ -9592,36 +9949,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_functionName); try { - this.state = 2019; + this.state = 2088; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2015; + this.state = 2084; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2016; + this.state = 2085; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2017; + this.state = 2086; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2018; + this.state = 2087; this.uid(); } break; @@ -9643,9 +10000,9 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameAndParams(): FunctionNameAndParamsContext { let localContext = new FunctionNameAndParamsContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionNameAndParams); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_functionNameAndParams); try { - this.state = 2025; + this.state = 2094; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_DATE: @@ -9653,16 +10010,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2021; + this.state = 2090; this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2022; + this.state = 2091; this.match(FlinkSqlParser.STRING_LITERAL); } break; case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 2024; + this.state = 2093; this.timeIntervalExpression(); } break; @@ -9686,22 +10043,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameWithParams(): FunctionNameWithParamsContext { let localContext = new FunctionNameWithParamsContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionNameWithParams); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 2029; + this.state = 2098; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2027; + this.state = 2096; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2028; + this.state = 2097; this.uid(); } break; @@ -9723,36 +10080,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_functionParam); try { - this.state = 2035; + this.state = 2104; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2031; + this.state = 2100; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2032; + this.state = 2101; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2033; + this.state = 2102; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2034; + this.state = 2103; this.expression(); } break; @@ -9774,11 +10131,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2037; + this.state = 2106; this.uid(); } } @@ -9798,11 +10155,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 2108; this.identifier(); } } @@ -9822,22 +10179,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2043; + this.state = 2112; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2041; + this.state = 2110; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2042; + this.state = 2111; this.dereferenceDefinition(); } break; @@ -9859,24 +10216,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2114; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2048; + this.state = 2117; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2046; + this.state = 2115; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2047; + this.state = 2116; this.errorCapturingUnitToUnitInterval(); } break; @@ -9899,18 +10256,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2050; + this.state = 2119; this.multiUnitsInterval(); - this.state = 2052; + this.state = 2121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2051; + this.state = 2120; this.unitToUnitInterval(); } break; @@ -9933,12 +10290,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2057; + this.state = 2126; this.errorHandler.sync(this); alternative = 1; do { @@ -9946,9 +10303,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2054; + this.state = 2123; this.intervalValue(); - this.state = 2055; + this.state = 2124; this.timeIntervalUnit(); } } @@ -9956,9 +10313,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2059; + this.state = 2128; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 247, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -9978,24 +10335,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2061; + this.state = 2130; localContext._body = this.unitToUnitInterval(); - this.state = 2064; + this.state = 2133; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2062; + this.state = 2131; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2063; + this.state = 2132; localContext._error2 = this.unitToUnitInterval(); } break; @@ -10018,17 +10375,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2066; + this.state = 2135; localContext._value = this.intervalValue(); - this.state = 2067; + this.state = 2136; localContext._from_ = this.timeIntervalUnit(); - this.state = 2068; + this.state = 2137; this.match(FlinkSqlParser.KW_TO); - this.state = 2069; + this.state = 2138; localContext._to = this.timeIntervalUnit(); } } @@ -10048,10 +10405,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2076; + this.state = 2145; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -10060,12 +10417,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2072; + this.state = 2141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530 || _la === 531) { { - this.state = 2071; + this.state = 2140; _la = this.tokenStream.LA(1); if(!(_la === 530 || _la === 531)) { this.errorHandler.recoverInline(this); @@ -10077,7 +10434,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2074; + this.state = 2143; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 540)) { this.errorHandler.recoverInline(this); @@ -10091,7 +10448,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2075; + this.state = 2144; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10115,29 +10472,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2079; + this.state = 2148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2078; + this.state = 2147; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2081; + this.state = 2150; localContext._alias = this.identifier(); - this.state = 2083; + this.state = 2152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2082; + this.state = 2151; this.identifierList(); } break; @@ -10160,13 +10517,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2085; + this.state = 2154; this.identifier(); - this.state = 2086; + this.state = 2155; this.errorCapturingIdentifierExtra(); } } @@ -10186,29 +10543,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2095; + this.state = 2164; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2090; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2088; + this.state = 2157; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2089; + this.state = 2158; this.identifier(); } } - this.state = 2092; + this.state = 2161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 222); @@ -10242,15 +10599,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2097; + this.state = 2166; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2098; + this.state = 2167; this.identifierSeq(); - this.state = 2099; + this.state = 2168; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10270,26 +10627,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2101; + this.state = 2170; this.identifier(); - this.state = 2106; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2102; + this.state = 2171; this.match(FlinkSqlParser.COMMA); - this.state = 2103; + this.state = 2172; this.identifier(); } } - this.state = 2108; + this.state = 2177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10311,9 +10668,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_identifier); try { - this.state = 2112; + this.state = 2181; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -10321,7 +10678,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2109; + this.state = 2178; this.unquotedIdentifier(); } break; @@ -10329,7 +10686,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2110; + this.state = 2179; this.quotedIdentifier(); } break; @@ -10404,7 +10761,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2111; + this.state = 2180; this.nonReservedKeywords(); } break; @@ -10428,12 +10785,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2114; + this.state = 2183; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 542)) { this.errorHandler.recoverInline(this); @@ -10460,11 +10817,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2116; + this.state = 2185; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10484,17 +10841,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2118; + this.state = 2187; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2119; + this.state = 2188; localContext._condition = this.expression(); - this.state = 2120; + this.state = 2189; this.match(FlinkSqlParser.KW_THEN); - this.state = 2121; + this.state = 2190; localContext._result = this.expression(); } } @@ -10514,11 +10871,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2123; + this.state = 2192; this.identifier(); } } @@ -10538,11 +10895,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2125; + this.state = 2194; this.identifier(); } } @@ -10562,21 +10919,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2127; + this.state = 2196; this.identifier(); - this.state = 2130; + this.state = 2199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2128; + this.state = 2197; this.match(FlinkSqlParser.DOT); - this.state = 2129; + this.state = 2198; this.identifier(); } } @@ -10599,21 +10956,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2132; + this.state = 2201; this.identifier(); - this.state = 2135; + this.state = 2204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2133; + this.state = 2202; this.match(FlinkSqlParser.DOT); - this.state = 2134; + this.state = 2203; this.identifier(); } } @@ -10636,25 +10993,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2149; + this.state = 2218; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2137; + this.state = 2206; this.identifier(); - this.state = 2140; + this.state = 2209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2138; + this.state = 2207; this.match(FlinkSqlParser.DOT); - this.state = 2139; + this.state = 2208; this.identifier(); } } @@ -10664,20 +11021,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2142; + this.state = 2211; this.identifier(); - this.state = 2143; + this.state = 2212; this.match(FlinkSqlParser.DOT); - this.state = 2144; + this.state = 2213; this.identifier(); - this.state = 2147; + this.state = 2216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2145; + this.state = 2214; this.match(FlinkSqlParser.DOT); - this.state = 2146; + this.state = 2215; this.identifier(); } } @@ -10702,24 +11059,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePath); try { - this.state = 2163; + this.state = 2232; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2151; + this.state = 2220; this.identifier(); - this.state = 2154; + this.state = 2223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2152; + this.state = 2221; this.match(FlinkSqlParser.DOT); - this.state = 2153; + this.state = 2222; this.identifier(); } break; @@ -10729,20 +11086,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2156; + this.state = 2225; this.identifier(); - this.state = 2157; + this.state = 2226; this.match(FlinkSqlParser.DOT); - this.state = 2158; + this.state = 2227; this.identifier(); - this.state = 2161; + this.state = 2230; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2159; + this.state = 2228; this.match(FlinkSqlParser.DOT); - this.state = 2160; + this.state = 2229; this.identifier(); } break; @@ -10767,24 +11124,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_viewPath); try { - this.state = 2177; + this.state = 2246; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2234; this.identifier(); - this.state = 2168; + this.state = 2237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2166; + this.state = 2235; this.match(FlinkSqlParser.DOT); - this.state = 2167; + this.state = 2236; this.identifier(); } break; @@ -10794,20 +11151,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2170; + this.state = 2239; this.identifier(); - this.state = 2171; + this.state = 2240; this.match(FlinkSqlParser.DOT); - this.state = 2172; + this.state = 2241; this.identifier(); - this.state = 2175; + this.state = 2244; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2173; + this.state = 2242; this.match(FlinkSqlParser.DOT); - this.state = 2174; + this.state = 2243; this.identifier(); } break; @@ -10832,25 +11189,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2191; + this.state = 2260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2179; + this.state = 2248; this.identifier(); - this.state = 2182; + this.state = 2251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2180; + this.state = 2249; this.match(FlinkSqlParser.DOT); - this.state = 2181; + this.state = 2250; this.identifier(); } } @@ -10860,20 +11217,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2184; + this.state = 2253; this.identifier(); - this.state = 2185; + this.state = 2254; this.match(FlinkSqlParser.DOT); - this.state = 2186; + this.state = 2255; this.identifier(); - this.state = 2189; + this.state = 2258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2187; + this.state = 2256; this.match(FlinkSqlParser.DOT); - this.state = 2188; + this.state = 2257; this.identifier(); } } @@ -10898,30 +11255,30 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2262; this.identifier(); - this.state = 2198; + this.state = 2267; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 262, this.context); - while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1 + 1) { + alternative = this.interpreter.adaptivePredict(this.tokenStream, 271, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { { { - this.state = 2194; + this.state = 2263; this.match(FlinkSqlParser.DOT); - this.state = 2195; + this.state = 2264; this.identifier(); } } } - this.state = 2200; + this.state = 2269; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 262, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 271, this.context); } } } @@ -10941,13 +11298,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2270; this.match(FlinkSqlParser.KW_WITH); - this.state = 2202; + this.state = 2271; this.tablePropertyList(); } } @@ -10967,15 +11324,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2204; + this.state = 2273; this.match(FlinkSqlParser.KW_IF); - this.state = 2205; + this.state = 2274; this.match(FlinkSqlParser.KW_NOT); - this.state = 2206; + this.state = 2275; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10995,13 +11352,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2208; + this.state = 2277; this.match(FlinkSqlParser.KW_IF); - this.state = 2209; + this.state = 2278; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -11021,32 +11378,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2211; + this.state = 2280; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2212; + this.state = 2281; this.tableProperty(); - this.state = 2217; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2213; + this.state = 2282; this.match(FlinkSqlParser.COMMA); - this.state = 2214; + this.state = 2283; this.tableProperty(); } } - this.state = 2219; + this.state = 2288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2220; + this.state = 2289; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11066,29 +11423,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2222; + this.state = 2291; localContext._key = this.tablePropertyKey(); - this.state = 2227; + this.state = 2296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 398 || _la === 506 || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 7) !== 0)) { { - this.state = 2224; + this.state = 2293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 2223; + this.state = 2292; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2226; + this.state = 2295; localContext._value = this.tablePropertyValue(); } } @@ -11111,29 +11468,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2232; + this.state = 2301; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2229; + this.state = 2298; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2230; + this.state = 2299; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2231; + this.state = 2300; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11155,22 +11512,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2238; + this.state = 2307; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2234; + this.state = 2303; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2304; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -11178,14 +11535,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2236; + this.state = 2305; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2237; + this.state = 2306; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11209,40 +11566,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2246; + this.state = 2315; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2309; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2241; + this.state = 2310; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2242; + this.state = 2311; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2243; + this.state = 2312; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2244; + this.state = 2313; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2245; + this.state = 2314; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11266,76 +11623,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2262; + this.state = 2331; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2248; + this.state = 2317; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2249; + this.state = 2318; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2250; + this.state = 2319; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2251; + this.state = 2320; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2252; + this.state = 2321; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2253; + this.state = 2322; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2254; + this.state = 2323; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2255; + this.state = 2324; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2256; + this.state = 2325; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2257; + this.state = 2326; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2258; + this.state = 2327; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2259; + this.state = 2328; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2260; + this.state = 2329; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2261; + this.state = 2330; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11357,47 +11714,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2271; + this.state = 2340; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2264; + this.state = 2333; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2265; + this.state = 2334; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2266; + this.state = 2335; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2267; + this.state = 2336; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2268; + this.state = 2337; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2269; + this.state = 2338; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2270; + this.state = 2339; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11421,12 +11778,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2273; + this.state = 2342; _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11453,12 +11810,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2275; + this.state = 2344; _la = this.tokenStream.LA(1); if(!(_la === 242 || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11485,16 +11842,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2291; + this.state = 2360; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2277; + this.state = 2346; this.timeIntervalExpression(); } break; @@ -11510,14 +11867,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2278; + this.state = 2347; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2279; + this.state = 2348; this.stringLiteral(); } break; @@ -11525,17 +11882,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2281; + this.state = 2350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530) { { - this.state = 2280; + this.state = 2349; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2283; + this.state = 2352; this.decimalLiteral(); } break; @@ -11543,21 +11900,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2284; + this.state = 2353; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2285; + this.state = 2354; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2286; + this.state = 2355; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11565,17 +11922,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2288; + this.state = 2357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 2287; + this.state = 2356; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2290; + this.state = 2359; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11599,13 +11956,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2293; + this.state = 2362; this.timePointUnit(); - this.state = 2294; + this.state = 2363; this.stringLiteral(); } } @@ -11625,11 +11982,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2296; + this.state = 2365; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11649,11 +12006,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 386, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2298; + this.state = 2367; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11673,12 +12030,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 388, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2300; + this.state = 2369; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 398)) { this.errorHandler.recoverInline(this); @@ -11705,12 +12062,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 390, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2371; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11737,12 +12094,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 392, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2304; + this.state = 2373; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || _la === 437 || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 262149) !== 0) || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11769,12 +12126,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 376, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 394, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2306; + this.state = 2375; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 140542465) !== 0) || ((((_la - 461)) & ~0x1F) === 0 && ((1 << (_la - 461)) & 2415983617) !== 0) || _la === 503 || _la === 504)) { this.errorHandler.recoverInline(this); @@ -11801,12 +12158,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 378, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 396, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2308; + this.state = 2377; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 201)) & ~0x1F) === 0 && ((1 << (_la - 201)) & 385) !== 0) || _la === 390 || _la === 414 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -11833,12 +12190,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 380, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + this.enterRule(localContext, 398, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2310; + this.state = 2379; _la = this.tokenStream.LA(1); if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -11865,12 +12222,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 382, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + this.enterRule(localContext, 400, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2312; + this.state = 2381; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 379 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -11897,12 +12254,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 384, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 402, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2314; + this.state = 2383; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 277391867) !== 0) || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 41943565) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 8389763) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339865) !== 0) || _la === 437 || _la === 470 || _la === 489 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11929,12 +12286,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 386, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 404, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2316; + this.state = 2385; _la = this.tokenStream.LA(1); if(!(((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11966,13 +12323,13 @@ export class FlinkSqlParser extends SQLParserBase { return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 80: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); - case 90: + case 97: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 131: + case 140: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 134: + case 143: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 136: + case 145: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -12037,7 +12394,7 @@ export class FlinkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,542,2319,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,542,2388,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, @@ -12069,959 +12426,989 @@ export class FlinkSqlParser extends SQLParserBase { 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,1,0,5,0,390,8,0,10,0,12,0,393,9,0,1,0,1, - 0,1,1,1,1,3,1,399,8,1,1,1,3,1,402,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,3,2,416,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1, - 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,434,8,4,1,5,1,5,3,5,438,8, - 5,1,6,1,6,1,6,1,7,1,7,1,7,1,7,3,7,447,8,7,1,7,1,7,1,7,3,7,452,8, - 7,1,8,1,8,1,8,5,8,457,8,8,10,8,12,8,460,9,8,1,9,1,9,1,10,1,10,1, - 10,1,10,1,10,1,10,3,10,470,8,10,1,11,1,11,1,11,1,11,1,11,5,11,477, - 8,11,10,11,12,11,480,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, - 1,12,3,12,491,8,12,1,12,3,12,494,8,12,1,12,1,12,1,12,1,12,1,12,3, - 12,501,8,12,1,12,3,12,504,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12, - 512,8,12,1,12,1,12,3,12,516,8,12,1,12,1,12,1,12,3,12,521,8,12,1, - 12,3,12,524,8,12,1,13,1,13,1,13,1,13,1,13,3,13,531,8,13,1,14,1,14, - 1,14,1,14,1,15,1,15,3,15,539,8,15,1,16,1,16,3,16,543,8,16,1,17,1, - 17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,555,8,18,1,18,1, - 18,1,18,1,18,1,18,1,18,3,18,563,8,18,1,18,1,18,3,18,567,8,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 1,18,1,18,1,18,3,18,599,8,18,1,19,3,19,602,8,19,1,19,4,19,605,8, - 19,11,19,12,19,606,1,20,1,20,3,20,611,8,20,1,21,1,21,3,21,615,8, - 21,1,21,1,21,3,21,619,8,21,1,21,1,21,1,21,1,21,1,21,5,21,626,8,21, - 10,21,12,21,629,9,21,1,21,1,21,3,21,633,8,21,1,21,1,21,3,21,637, - 8,21,1,21,1,21,3,21,641,8,21,1,21,1,21,1,21,3,21,646,8,21,1,21,3, - 21,649,8,21,1,21,1,21,3,21,653,8,21,1,22,1,22,1,22,3,22,658,8,22, - 1,22,1,22,1,22,1,22,3,22,664,8,22,1,23,1,23,1,23,3,23,669,8,23,1, - 24,1,24,1,24,3,24,674,8,24,1,24,1,24,3,24,678,8,24,1,25,1,25,3,25, - 682,8,25,1,26,1,26,3,26,686,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5, - 28,694,8,28,10,28,12,28,697,9,28,1,28,1,28,1,29,1,29,1,29,3,29,704, - 8,29,1,29,1,29,3,29,708,8,29,1,29,1,29,3,29,712,8,29,1,29,1,29,3, - 29,716,8,29,1,29,1,29,3,29,720,8,29,1,29,1,29,3,29,724,8,29,1,29, - 1,29,3,29,728,8,29,1,29,1,29,3,29,732,8,29,1,29,1,29,3,29,736,8, - 29,3,29,738,8,29,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,748, - 8,31,1,31,1,31,1,32,1,32,1,32,1,32,3,32,756,8,32,1,32,1,32,1,33, - 1,33,1,33,1,33,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,35,1,35,5,35,778,8,35,10,35,12,35,781,9,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,35,5,35,792,8,35,10,35,12,35,795, - 9,35,1,35,1,35,3,35,799,8,35,1,36,1,36,3,36,803,8,36,1,36,1,36,1, - 36,1,36,3,36,809,8,36,1,36,3,36,812,8,36,1,36,3,36,815,8,36,1,37, - 1,37,1,37,1,37,1,37,3,37,822,8,37,1,37,3,37,825,8,37,1,38,1,38,1, - 39,1,39,1,39,1,39,1,39,3,39,834,8,39,1,40,1,40,1,41,1,41,1,41,1, - 41,1,41,1,41,1,42,1,42,3,42,846,8,42,1,42,1,42,1,42,1,42,1,42,1, - 42,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1, - 46,1,46,5,46,868,8,46,10,46,12,46,871,9,46,1,46,1,46,1,47,1,47,1, - 47,1,47,1,47,5,47,880,8,47,10,47,12,47,883,9,47,1,47,1,47,3,47,887, - 8,47,1,48,1,48,3,48,891,8,48,1,49,1,49,1,49,1,49,5,49,897,8,49,10, - 49,12,49,900,9,49,1,49,3,49,903,8,49,1,50,1,50,1,50,1,50,3,50,909, - 8,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,919,8,52,1,52, - 1,52,1,52,3,52,924,8,52,1,52,1,52,1,53,1,53,3,53,930,8,53,1,53,1, - 53,3,53,934,8,53,1,53,1,53,3,53,938,8,53,1,53,1,53,3,53,942,8,53, - 1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,951,8,54,1,54,1,54,3,54, - 955,8,54,1,54,1,54,1,54,1,54,1,54,3,54,962,8,54,1,54,3,54,965,8, - 54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,973,8,55,10,55,12,55,976,9, - 55,1,56,1,56,1,57,1,57,1,57,3,57,983,8,57,1,57,1,57,1,57,1,57,1, - 57,1,57,3,57,991,8,57,1,58,1,58,3,58,995,8,58,1,58,1,58,1,58,1,59, - 1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1010,8,60,1,61, - 1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64, - 1,64,1,64,1,64,3,64,1029,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66, - 1,66,1,66,3,66,1040,8,66,1,66,1,66,3,66,1044,8,66,1,66,1,66,1,66, - 1,66,1,66,3,66,1051,8,66,1,67,1,67,1,67,3,67,1056,8,67,1,67,1,67, - 1,68,1,68,3,68,1062,8,68,1,68,1,68,3,68,1066,8,68,1,68,1,68,1,69, - 1,69,1,69,3,69,1073,8,69,1,69,1,69,3,69,1077,8,69,1,70,1,70,3,70, - 1081,8,70,1,70,1,70,3,70,1085,8,70,1,70,1,70,1,71,1,71,1,71,1,71, - 3,71,1093,8,71,1,71,1,71,3,71,1097,8,71,1,71,1,71,1,72,3,72,1102, - 8,72,1,72,1,72,1,72,1,72,3,72,1108,8,72,1,73,1,73,1,73,1,73,3,73, - 1114,8,73,1,73,3,73,1117,8,73,1,73,1,73,3,73,1121,8,73,1,74,1,74, - 1,74,1,75,1,75,1,75,1,75,5,75,1130,8,75,10,75,12,75,1133,9,75,1, - 76,1,76,1,76,1,76,5,76,1139,8,76,10,76,12,76,1142,9,76,1,76,1,76, - 1,77,1,77,3,77,1148,8,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,4,78, - 1157,8,78,11,78,12,78,1158,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1, - 79,4,79,1169,8,79,11,79,12,79,1170,1,79,1,79,1,80,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1186,8,80,1,80,3,80,1189, - 8,80,1,80,1,80,3,80,1193,8,80,1,80,3,80,1196,8,80,3,80,1198,8,80, - 1,80,1,80,1,80,3,80,1203,8,80,1,80,1,80,3,80,1207,8,80,1,80,3,80, - 1210,8,80,5,80,1212,8,80,10,80,12,80,1215,9,80,1,81,1,81,1,81,1, - 81,5,81,1221,8,81,10,81,12,81,1224,9,81,1,82,1,82,1,82,1,82,5,82, - 1230,8,82,10,82,12,82,1233,9,82,1,83,1,83,1,83,1,83,1,83,5,83,1240, - 8,83,10,83,12,83,1243,9,83,1,83,1,83,3,83,1247,8,83,1,83,1,83,1, - 83,1,83,1,83,1,84,1,84,1,85,1,85,3,85,1258,8,85,1,85,3,85,1261,8, - 85,1,85,3,85,1264,8,85,1,85,3,85,1267,8,85,1,85,3,85,1270,8,85,1, - 85,1,85,1,85,1,85,3,85,1276,8,85,1,86,1,86,3,86,1280,8,86,1,86,1, - 86,1,86,1,86,5,86,1286,8,86,10,86,12,86,1289,9,86,3,86,1291,8,86, - 1,87,1,87,1,87,3,87,1296,8,87,1,87,3,87,1299,8,87,1,87,1,87,3,87, - 1303,8,87,1,87,3,87,1306,8,87,3,87,1308,8,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,3,88,1322,8,88,1,89,1,89, - 1,89,1,90,1,90,1,90,1,90,5,90,1331,8,90,10,90,12,90,1334,9,90,1, - 90,1,90,3,90,1338,8,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1346,8, - 90,1,90,3,90,1349,8,90,1,90,3,90,1352,8,90,1,90,1,90,1,90,3,90,1357, - 8,90,5,90,1359,8,90,10,90,12,90,1362,9,90,1,91,1,91,3,91,1366,8, - 91,1,92,3,92,1369,8,92,1,92,1,92,3,92,1373,8,92,1,92,1,92,3,92,1377, - 8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1386,8,92,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1397,8,92,1,93,1,93,1,93, - 1,93,1,93,1,93,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,97,1,97,1,97,1,97,1,97,5,97,1422,8,97,10,97,12,97,1425, - 9,97,1,97,1,97,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99, - 1,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,1446,8,99,1,100,1,100,1, - 101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,3,102,1459,8, - 102,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,5,104,1469,8, - 104,10,104,12,104,1472,9,104,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,5,105,1482,8,105,10,105,12,105,1485,9,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,5,105,1494,8,105,10,105,12,105,1497, - 9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1506,8,105, - 10,105,12,105,1509,9,105,1,105,1,105,1,105,3,105,1514,8,105,1,106, - 1,106,1,106,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108, - 1,109,1,109,1,110,1,110,1,111,1,111,1,111,1,112,1,112,1,112,1,112, - 5,112,1539,8,112,10,112,12,112,1542,9,112,1,113,1,113,1,113,1,113, - 1,114,3,114,1549,8,114,1,114,1,114,3,114,1553,8,114,1,114,3,114, - 1556,8,114,1,114,3,114,1559,8,114,1,114,1,114,1,115,1,115,1,115, - 3,115,1566,8,115,1,115,3,115,1569,8,115,1,115,3,115,1572,8,115,1, - 115,3,115,1575,8,115,1,115,3,115,1578,8,115,1,115,3,115,1581,8,115, - 1,115,1,115,1,115,3,115,1586,8,115,1,115,3,115,1589,8,115,1,116, - 1,116,1,116,1,116,1,116,5,116,1596,8,116,10,116,12,116,1599,9,116, - 1,117,1,117,3,117,1603,8,117,1,117,1,117,3,117,1607,8,117,1,118, - 1,118,1,118,3,118,1612,8,118,1,119,1,119,1,119,1,119,3,119,1618, - 8,119,1,119,1,119,1,119,3,119,1623,8,119,5,119,1625,8,119,10,119, - 12,119,1628,9,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,1646,8,120, - 1,121,1,121,1,121,1,121,5,121,1652,8,121,10,121,12,121,1655,9,121, - 1,122,1,122,1,122,4,122,1660,8,122,11,122,12,122,1661,1,122,1,122, - 3,122,1666,8,122,1,123,1,123,3,123,1670,8,123,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,3,124,1680,8,124,1,125,1,125,1,125, - 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125, - 1706,8,125,1,126,1,126,1,126,1,126,5,126,1712,8,126,10,126,12,126, - 1715,9,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, - 3,127,1726,8,127,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129, - 1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,3,131,1748,8,131,3,131,1750,8,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,3,131,1761,8,131,1,131,5,131,1764, - 8,131,10,131,12,131,1767,9,131,1,132,3,132,1770,8,132,1,132,1,132, - 3,132,1774,8,132,1,132,1,132,1,132,1,132,1,132,3,132,1781,8,132, - 1,132,1,132,1,132,1,132,1,132,5,132,1788,8,132,10,132,12,132,1791, - 9,132,1,132,1,132,1,132,3,132,1796,8,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,1809,8,132,1,132, - 1,132,1,132,1,132,1,132,3,132,1816,8,132,1,132,1,132,1,132,3,132, - 1821,8,132,1,132,1,132,1,132,1,132,3,132,1827,8,132,1,132,1,132, - 1,132,1,132,1,132,3,132,1834,8,132,1,132,1,132,1,132,1,132,1,132, - 3,132,1841,8,132,3,132,1843,8,132,1,133,3,133,1846,8,133,1,133,1, - 133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1856,8,133,10,133, - 12,133,1859,9,133,1,133,1,133,3,133,1863,8,133,1,133,3,133,1866, - 8,133,1,133,1,133,1,133,1,133,3,133,1872,8,133,3,133,1874,8,133, - 1,134,1,134,1,134,1,134,3,134,1880,8,134,1,134,1,134,1,134,1,134, + 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, + 1,0,5,0,408,8,0,10,0,12,0,411,9,0,1,0,1,0,1,1,1,1,3,1,417,8,1,1, + 1,3,1,420,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3, + 2,434,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, + 4,1,4,1,4,3,4,452,8,4,1,5,1,5,3,5,456,8,5,1,6,1,6,1,6,1,7,1,7,1, + 7,1,7,3,7,465,8,7,1,7,1,7,1,7,3,7,470,8,7,1,8,1,8,1,8,5,8,475,8, + 8,10,8,12,8,478,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,488, + 8,10,1,11,1,11,1,11,1,11,1,11,5,11,495,8,11,10,11,12,11,498,9,11, + 1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,509,8,12,1,12, + 3,12,512,8,12,1,12,1,12,1,12,1,12,1,12,3,12,519,8,12,1,12,3,12,522, + 8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,530,8,12,1,12,1,12,3,12, + 534,8,12,1,12,1,12,1,12,3,12,539,8,12,1,12,3,12,542,8,12,1,13,1, + 13,1,13,1,13,1,13,3,13,549,8,13,1,14,1,14,1,14,1,14,1,15,1,15,3, + 15,557,8,15,1,16,1,16,3,16,561,8,16,1,17,1,17,1,17,1,17,1,18,1,18, + 1,18,1,18,1,18,1,18,3,18,573,8,18,1,18,1,18,1,18,1,18,1,18,1,18, + 3,18,581,8,18,1,18,1,18,3,18,585,8,18,1,18,1,18,1,18,1,18,1,18,1, + 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, + 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,617, + 8,18,1,19,3,19,620,8,19,1,19,4,19,623,8,19,11,19,12,19,624,1,20, + 1,20,3,20,629,8,20,1,21,1,21,3,21,633,8,21,1,21,1,21,3,21,637,8, + 21,1,21,1,21,1,21,1,21,1,21,5,21,644,8,21,10,21,12,21,647,9,21,1, + 21,1,21,3,21,651,8,21,1,21,1,21,3,21,655,8,21,1,21,1,21,3,21,659, + 8,21,1,21,1,21,1,21,3,21,664,8,21,1,21,3,21,667,8,21,1,21,1,21,3, + 21,671,8,21,1,22,1,22,1,22,3,22,676,8,22,1,22,1,22,1,22,1,22,3,22, + 682,8,22,1,23,1,23,1,23,3,23,687,8,23,1,24,1,24,1,24,3,24,692,8, + 24,1,24,1,24,3,24,696,8,24,1,25,1,25,3,25,700,8,25,1,26,1,26,3,26, + 704,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5,28,712,8,28,10,28,12,28, + 715,9,28,1,28,1,28,1,29,1,29,1,29,3,29,722,8,29,1,29,1,29,3,29,726, + 8,29,1,29,1,29,3,29,730,8,29,1,29,1,29,3,29,734,8,29,1,29,1,29,3, + 29,738,8,29,1,29,1,29,3,29,742,8,29,1,29,1,29,3,29,746,8,29,1,29, + 1,29,3,29,750,8,29,1,29,1,29,3,29,754,8,29,3,29,756,8,29,1,30,1, + 30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,766,8,31,1,31,1,31,1,32,1, + 32,1,32,1,32,3,32,774,8,32,1,32,1,32,1,33,1,33,1,33,1,33,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,35,1,35,5, + 35,796,8,35,10,35,12,35,799,9,35,1,35,1,35,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,5,35,810,8,35,10,35,12,35,813,9,35,1,35,1,35,3,35,817, + 8,35,1,36,1,36,3,36,821,8,36,1,36,1,36,1,36,1,36,3,36,827,8,36,1, + 36,3,36,830,8,36,1,36,3,36,833,8,36,1,37,1,37,1,37,1,37,1,37,3,37, + 840,8,37,1,37,3,37,843,8,37,1,38,1,38,1,39,1,39,1,39,1,39,1,39,3, + 39,852,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,3, + 42,864,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,44,1,44,1, + 44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46,886,8,46,10, + 46,12,46,889,9,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,5,47,898,8, + 47,10,47,12,47,901,9,47,1,47,1,47,3,47,905,8,47,1,48,1,48,3,48,909, + 8,48,1,49,1,49,1,49,1,49,5,49,915,8,49,10,49,12,49,918,9,49,1,49, + 3,49,921,8,49,1,50,1,50,1,50,1,50,3,50,927,8,50,1,51,1,51,1,51,1, + 51,1,51,1,52,1,52,1,52,3,52,937,8,52,1,52,1,52,1,52,3,52,942,8,52, + 1,52,1,52,1,53,1,53,3,53,948,8,53,1,53,1,53,3,53,952,8,53,1,53,1, + 53,3,53,956,8,53,1,53,1,53,3,53,960,8,53,1,53,1,53,1,53,1,54,1,54, + 1,54,1,54,3,54,969,8,54,1,54,1,54,3,54,973,8,54,1,54,1,54,1,54,1, + 54,1,54,3,54,980,8,54,1,54,3,54,983,8,54,1,55,1,55,1,55,1,55,1,55, + 1,55,5,55,991,8,55,10,55,12,55,994,9,55,1,56,1,56,1,57,1,57,1,57, + 3,57,1001,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,1009,8,57,1,58, + 1,58,3,58,1013,8,58,1,58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60, + 1,60,1,60,1,60,1,60,3,60,1028,8,60,1,61,1,61,1,61,1,61,1,62,1,62, + 1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64,3,64,1047, + 8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,3,66,1058,8,66, + 1,66,1,66,3,66,1062,8,66,1,66,1,66,1,66,1,66,1,66,3,66,1069,8,66, + 1,67,1,67,1,67,3,67,1074,8,67,1,67,1,67,1,68,1,68,3,68,1080,8,68, + 1,68,1,68,3,68,1084,8,68,1,68,1,68,1,69,1,69,1,69,3,69,1091,8,69, + 1,69,1,69,3,69,1095,8,69,1,70,1,70,3,70,1099,8,70,1,70,1,70,3,70, + 1103,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71,1111,8,71,1,71,1,71, + 3,71,1115,8,71,1,71,1,71,1,72,3,72,1120,8,72,1,72,1,72,1,72,1,72, + 3,72,1126,8,72,1,73,1,73,1,73,1,73,3,73,1132,8,73,1,73,3,73,1135, + 8,73,1,73,1,73,3,73,1139,8,73,1,74,1,74,1,74,1,75,1,75,1,75,1,75, + 5,75,1148,8,75,10,75,12,75,1151,9,75,1,76,1,76,1,76,1,76,5,76,1157, + 8,76,10,76,12,76,1160,9,76,1,76,1,76,1,77,1,77,3,77,1166,8,77,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1175,8,78,11,78,12,78,1176, + 1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,4,79,1187,8,79,11,79,12, + 79,1188,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1, + 80,1,80,3,80,1204,8,80,1,80,3,80,1207,8,80,1,80,1,80,3,80,1211,8, + 80,1,80,3,80,1214,8,80,3,80,1216,8,80,1,80,1,80,1,80,3,80,1221,8, + 80,1,80,1,80,3,80,1225,8,80,1,80,3,80,1228,8,80,5,80,1230,8,80,10, + 80,12,80,1233,9,80,1,81,1,81,1,81,1,81,5,81,1239,8,81,10,81,12,81, + 1242,9,81,1,82,1,82,1,82,1,82,5,82,1248,8,82,10,82,12,82,1251,9, + 82,1,83,1,83,1,83,1,83,1,83,5,83,1258,8,83,10,83,12,83,1261,9,83, + 1,83,1,83,3,83,1265,8,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,85, + 1,85,3,85,1276,8,85,1,85,3,85,1279,8,85,1,85,3,85,1282,8,85,1,85, + 3,85,1285,8,85,1,85,3,85,1288,8,85,1,85,1,85,1,85,1,85,3,85,1294, + 8,85,1,86,1,86,3,86,1298,8,86,1,86,1,86,1,87,1,87,1,87,5,87,1305, + 8,87,10,87,12,87,1308,9,87,1,88,1,88,1,88,1,88,3,88,1314,8,88,1, + 88,3,88,1317,8,88,1,88,1,88,3,88,1321,8,88,1,88,1,88,1,88,3,88,1326, + 8,88,1,88,3,88,1329,8,88,3,88,1331,8,88,1,89,1,89,1,90,1,90,1,91, + 1,91,1,92,3,92,1340,8,92,1,92,1,92,1,93,1,93,1,93,3,93,1347,8,93, + 1,93,3,93,1350,8,93,1,93,1,93,3,93,1354,8,93,1,93,3,93,1357,8,93, + 3,93,1359,8,93,1,94,1,94,1,94,5,94,1364,8,94,10,94,12,94,1367,9, + 94,1,94,1,94,3,94,1371,8,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1, + 95,1,95,1,95,1,95,1,95,1,95,1,95,3,95,1387,8,95,1,96,1,96,1,96,1, + 97,1,97,1,97,1,97,5,97,1396,8,97,10,97,12,97,1399,9,97,1,97,1,97, + 3,97,1403,8,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,1411,8,97,1,97, + 3,97,1414,8,97,1,97,3,97,1417,8,97,1,97,1,97,1,97,3,97,1422,8,97, + 5,97,1424,8,97,10,97,12,97,1427,9,97,1,98,1,98,3,98,1431,8,98,1, + 99,3,99,1434,8,99,1,99,1,99,3,99,1438,8,99,1,99,1,99,3,99,1442,8, + 99,1,99,1,99,3,99,1446,8,99,1,100,1,100,1,100,1,100,1,100,1,100, + 1,101,3,101,1455,8,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, + 1,101,1,101,3,101,1466,8,101,1,102,1,102,1,102,1,102,1,102,1,102, + 1,103,1,103,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105, + 1,105,1,106,1,106,1,106,1,106,1,106,5,106,1491,8,106,10,106,12,106, + 1494,9,106,1,106,1,106,1,107,1,107,1,108,1,108,1,108,1,108,1,108, + 1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,3,108, + 1515,8,108,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,111,1,111, + 1,111,1,111,3,111,1528,8,111,1,112,1,112,1,112,1,113,1,113,1,113, + 1,113,1,113,5,113,1538,8,113,10,113,12,113,1541,9,113,1,114,1,114, + 1,114,1,114,1,114,1,114,1,114,1,114,5,114,1551,8,114,10,114,12,114, + 1554,9,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,5,114,1563, + 8,114,10,114,12,114,1566,9,114,1,114,1,114,1,114,1,114,1,114,1,114, + 1,114,5,114,1575,8,114,10,114,12,114,1578,9,114,1,114,1,114,1,114, + 3,114,1583,8,114,1,115,1,115,1,115,1,116,1,116,1,117,1,117,1,117, + 1,117,1,117,1,117,1,117,1,118,1,118,1,119,1,119,1,120,1,120,1,120, + 1,121,1,121,1,121,1,121,5,121,1608,8,121,10,121,12,121,1611,9,121, + 1,122,1,122,1,122,1,122,1,123,3,123,1618,8,123,1,123,1,123,3,123, + 1622,8,123,1,123,3,123,1625,8,123,1,123,3,123,1628,8,123,1,123,1, + 123,1,124,1,124,1,124,3,124,1635,8,124,1,124,3,124,1638,8,124,1, + 124,3,124,1641,8,124,1,124,3,124,1644,8,124,1,124,3,124,1647,8,124, + 1,124,3,124,1650,8,124,1,124,1,124,1,124,3,124,1655,8,124,1,124, + 3,124,1658,8,124,1,125,1,125,1,125,1,125,1,125,5,125,1665,8,125, + 10,125,12,125,1668,9,125,1,126,1,126,3,126,1672,8,126,1,126,1,126, + 3,126,1676,8,126,1,127,1,127,1,127,3,127,1681,8,127,1,128,1,128, + 1,128,1,128,3,128,1687,8,128,1,128,1,128,1,128,3,128,1692,8,128, + 5,128,1694,8,128,10,128,12,128,1697,9,128,1,129,1,129,1,129,1,129, + 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,3,129,1715,8,129,1,130,1,130,1,130,1,130,5,130,1721,8,130, + 10,130,12,130,1724,9,130,1,131,1,131,1,131,4,131,1729,8,131,11,131, + 12,131,1730,1,131,1,131,3,131,1735,8,131,1,132,1,132,3,132,1739, + 8,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,1749, + 8,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,5,134,1901,8,134,10,134,12,134,1904,9,134, - 1,135,1,135,1,135,1,135,1,135,3,135,1911,8,135,1,135,1,135,1,135, - 5,135,1916,8,135,10,135,12,135,1919,9,135,3,135,1921,8,135,1,135, - 1,135,3,135,1925,8,135,1,136,1,136,1,136,4,136,1930,8,136,11,136, - 12,136,1931,1,136,1,136,3,136,1936,8,136,1,136,1,136,1,136,1,136, - 1,136,4,136,1943,8,136,11,136,12,136,1944,1,136,1,136,3,136,1949, - 8,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,3,136,1965,8,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,3,136,1974,8,136,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136, - 2002,8,136,1,136,1,136,1,136,1,136,1,136,5,136,2009,8,136,10,136, - 12,136,2012,9,136,1,137,1,137,1,138,1,138,1,138,1,138,3,138,2020, - 8,138,1,139,1,139,1,139,1,139,3,139,2026,8,139,1,140,1,140,3,140, - 2030,8,140,1,141,1,141,1,141,1,141,3,141,2036,8,141,1,142,1,142, - 1,143,1,143,1,144,1,144,3,144,2044,8,144,1,145,1,145,1,145,3,145, - 2049,8,145,1,146,1,146,3,146,2053,8,146,1,147,1,147,1,147,4,147, - 2058,8,147,11,147,12,147,2059,1,148,1,148,1,148,3,148,2065,8,148, - 1,149,1,149,1,149,1,149,1,149,1,150,3,150,2073,8,150,1,150,1,150, - 3,150,2077,8,150,1,151,3,151,2080,8,151,1,151,1,151,3,151,2084,8, - 151,1,152,1,152,1,152,1,153,1,153,4,153,2091,8,153,11,153,12,153, - 2092,1,153,3,153,2096,8,153,1,154,1,154,1,154,1,154,1,155,1,155, - 1,155,5,155,2105,8,155,10,155,12,155,2108,9,155,1,156,1,156,1,156, - 3,156,2113,8,156,1,157,1,157,1,158,1,158,1,159,1,159,1,159,1,159, - 1,159,1,160,1,160,1,161,1,161,1,162,1,162,1,162,3,162,2131,8,162, - 1,163,1,163,1,163,3,163,2136,8,163,1,164,1,164,1,164,3,164,2141, - 8,164,1,164,1,164,1,164,1,164,1,164,3,164,2148,8,164,3,164,2150, - 8,164,1,165,1,165,1,165,3,165,2155,8,165,1,165,1,165,1,165,1,165, - 1,165,3,165,2162,8,165,3,165,2164,8,165,1,166,1,166,1,166,3,166, - 2169,8,166,1,166,1,166,1,166,1,166,1,166,3,166,2176,8,166,3,166, - 2178,8,166,1,167,1,167,1,167,3,167,2183,8,167,1,167,1,167,1,167, - 1,167,1,167,3,167,2190,8,167,3,167,2192,8,167,1,168,1,168,1,168, - 5,168,2197,8,168,10,168,12,168,2200,9,168,1,169,1,169,1,169,1,170, - 1,170,1,170,1,170,1,171,1,171,1,171,1,172,1,172,1,172,1,172,5,172, - 2216,8,172,10,172,12,172,2219,9,172,1,172,1,172,1,173,1,173,3,173, - 2225,8,173,1,173,3,173,2228,8,173,1,174,1,174,1,174,3,174,2233,8, - 174,1,175,1,175,1,175,1,175,3,175,2239,8,175,1,176,1,176,1,176,1, - 176,1,176,1,176,3,176,2247,8,176,1,177,1,177,1,177,1,177,1,177,1, - 177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,2263,8, - 177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,3,178,2272,8,178,1, - 179,1,179,1,180,1,180,1,181,1,181,1,181,1,181,3,181,2282,8,181,1, - 181,1,181,1,181,1,181,1,181,3,181,2289,8,181,1,181,3,181,2292,8, - 181,1,182,1,182,1,182,1,183,1,183,1,184,1,184,1,185,1,185,1,186, - 1,186,1,187,1,187,1,188,1,188,1,189,1,189,1,190,1,190,1,191,1,191, - 1,192,1,192,1,193,1,193,1,193,1,2198,5,160,180,262,268,272,194,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,120,122,124, - 126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156, - 158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188, - 190,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220, - 222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,252, - 254,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284, - 286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316, - 318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348, - 350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380, - 382,384,386,0,47,2,0,109,109,451,451,3,0,45,45,128,128,189,189,4, - 0,42,42,90,90,423,423,465,465,2,0,442,442,448,448,2,0,151,151,170, - 170,2,0,438,438,490,490,2,0,483,486,488,488,3,0,32,32,91,91,245, - 245,11,0,28,29,35,35,46,46,92,92,178,179,345,345,361,361,379,379, - 382,382,388,388,417,418,2,0,434,434,436,436,4,0,101,102,115,115, - 144,144,247,247,2,0,13,13,232,232,2,0,456,456,463,463,3,0,5,5,271, - 271,445,445,3,0,267,267,456,456,463,463,3,0,426,426,459,459,478, - 478,3,0,331,331,466,466,482,482,2,0,441,441,491,491,2,0,183,183, - 266,266,3,0,130,130,180,180,403,403,4,0,152,152,174,174,202,202, - 318,318,3,0,446,446,460,460,500,500,4,0,251,251,447,447,495,497, - 499,499,2,0,74,74,321,321,3,0,460,460,493,493,500,500,2,0,440,440, - 451,451,2,0,458,458,468,468,4,0,140,140,245,245,398,398,405,405, - 2,0,19,19,370,370,2,0,5,5,11,11,2,0,510,510,530,531,4,0,453,453, - 528,528,532,532,535,535,2,0,530,531,533,533,1,0,530,531,1,0,539, - 540,2,0,539,539,542,542,4,0,453,453,528,528,530,532,534,535,3,0, - 242,242,509,510,530,531,2,0,140,140,398,398,2,0,5,5,113,113,10,0, - 97,97,165,165,223,223,230,230,335,335,437,437,471,471,473,473,489, - 489,503,503,15,0,97,97,165,165,223,223,230,230,335,335,428,428,437, - 437,443,443,449,450,455,455,461,461,471,476,489,489,492,492,503, - 504,11,0,5,5,13,13,33,33,78,78,84,85,113,113,201,201,208,209,390, - 390,414,414,528,528,3,0,78,78,84,85,208,209,2,0,91,91,379,380,53, - 0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,98,99, - 107,107,119,119,134,134,139,139,143,143,145,145,160,160,165,165, - 167,167,187,188,190,195,198,198,200,200,202,202,206,206,210,210, - 215,215,221,221,223,224,230,230,244,244,246,246,265,265,277,277, - 282,282,284,284,294,294,318,318,322,324,335,335,358,359,365,365, - 368,368,381,381,396,396,399,400,409,409,420,421,437,437,470,470, - 489,489,503,503,1,0,438,505,2525,0,391,1,0,0,0,2,401,1,0,0,0,4,415, - 1,0,0,0,6,417,1,0,0,0,8,433,1,0,0,0,10,437,1,0,0,0,12,439,1,0,0, - 0,14,442,1,0,0,0,16,453,1,0,0,0,18,461,1,0,0,0,20,469,1,0,0,0,22, - 471,1,0,0,0,24,523,1,0,0,0,26,525,1,0,0,0,28,532,1,0,0,0,30,536, - 1,0,0,0,32,540,1,0,0,0,34,544,1,0,0,0,36,598,1,0,0,0,38,604,1,0, - 0,0,40,610,1,0,0,0,42,612,1,0,0,0,44,654,1,0,0,0,46,668,1,0,0,0, - 48,670,1,0,0,0,50,681,1,0,0,0,52,685,1,0,0,0,54,687,1,0,0,0,56,689, - 1,0,0,0,58,737,1,0,0,0,60,739,1,0,0,0,62,743,1,0,0,0,64,751,1,0, - 0,0,66,759,1,0,0,0,68,763,1,0,0,0,70,798,1,0,0,0,72,814,1,0,0,0, - 74,816,1,0,0,0,76,826,1,0,0,0,78,828,1,0,0,0,80,835,1,0,0,0,82,837, - 1,0,0,0,84,845,1,0,0,0,86,853,1,0,0,0,88,855,1,0,0,0,90,859,1,0, - 0,0,92,863,1,0,0,0,94,886,1,0,0,0,96,890,1,0,0,0,98,892,1,0,0,0, - 100,908,1,0,0,0,102,910,1,0,0,0,104,915,1,0,0,0,106,927,1,0,0,0, - 108,946,1,0,0,0,110,966,1,0,0,0,112,977,1,0,0,0,114,979,1,0,0,0, - 116,992,1,0,0,0,118,999,1,0,0,0,120,1002,1,0,0,0,122,1011,1,0,0, - 0,124,1015,1,0,0,0,126,1019,1,0,0,0,128,1022,1,0,0,0,130,1030,1, - 0,0,0,132,1035,1,0,0,0,134,1052,1,0,0,0,136,1059,1,0,0,0,138,1069, - 1,0,0,0,140,1078,1,0,0,0,142,1088,1,0,0,0,144,1107,1,0,0,0,146,1109, - 1,0,0,0,148,1122,1,0,0,0,150,1125,1,0,0,0,152,1134,1,0,0,0,154,1147, - 1,0,0,0,156,1149,1,0,0,0,158,1162,1,0,0,0,160,1197,1,0,0,0,162,1216, - 1,0,0,0,164,1225,1,0,0,0,166,1234,1,0,0,0,168,1253,1,0,0,0,170,1275, - 1,0,0,0,172,1277,1,0,0,0,174,1307,1,0,0,0,176,1321,1,0,0,0,178,1323, - 1,0,0,0,180,1337,1,0,0,0,182,1363,1,0,0,0,184,1396,1,0,0,0,186,1398, - 1,0,0,0,188,1404,1,0,0,0,190,1406,1,0,0,0,192,1411,1,0,0,0,194,1416, - 1,0,0,0,196,1428,1,0,0,0,198,1445,1,0,0,0,200,1447,1,0,0,0,202,1449, - 1,0,0,0,204,1458,1,0,0,0,206,1460,1,0,0,0,208,1463,1,0,0,0,210,1513, - 1,0,0,0,212,1515,1,0,0,0,214,1518,1,0,0,0,216,1520,1,0,0,0,218,1527, - 1,0,0,0,220,1529,1,0,0,0,222,1531,1,0,0,0,224,1534,1,0,0,0,226,1543, - 1,0,0,0,228,1548,1,0,0,0,230,1562,1,0,0,0,232,1590,1,0,0,0,234,1600, - 1,0,0,0,236,1608,1,0,0,0,238,1613,1,0,0,0,240,1645,1,0,0,0,242,1647, - 1,0,0,0,244,1656,1,0,0,0,246,1667,1,0,0,0,248,1679,1,0,0,0,250,1705, - 1,0,0,0,252,1707,1,0,0,0,254,1725,1,0,0,0,256,1727,1,0,0,0,258,1732, - 1,0,0,0,260,1735,1,0,0,0,262,1749,1,0,0,0,264,1842,1,0,0,0,266,1873, - 1,0,0,0,268,1879,1,0,0,0,270,1924,1,0,0,0,272,2001,1,0,0,0,274,2013, - 1,0,0,0,276,2019,1,0,0,0,278,2025,1,0,0,0,280,2029,1,0,0,0,282,2035, - 1,0,0,0,284,2037,1,0,0,0,286,2039,1,0,0,0,288,2043,1,0,0,0,290,2045, - 1,0,0,0,292,2050,1,0,0,0,294,2057,1,0,0,0,296,2061,1,0,0,0,298,2066, - 1,0,0,0,300,2076,1,0,0,0,302,2079,1,0,0,0,304,2085,1,0,0,0,306,2095, - 1,0,0,0,308,2097,1,0,0,0,310,2101,1,0,0,0,312,2112,1,0,0,0,314,2114, - 1,0,0,0,316,2116,1,0,0,0,318,2118,1,0,0,0,320,2123,1,0,0,0,322,2125, - 1,0,0,0,324,2127,1,0,0,0,326,2132,1,0,0,0,328,2149,1,0,0,0,330,2163, - 1,0,0,0,332,2177,1,0,0,0,334,2191,1,0,0,0,336,2193,1,0,0,0,338,2201, - 1,0,0,0,340,2204,1,0,0,0,342,2208,1,0,0,0,344,2211,1,0,0,0,346,2222, - 1,0,0,0,348,2232,1,0,0,0,350,2238,1,0,0,0,352,2246,1,0,0,0,354,2262, - 1,0,0,0,356,2271,1,0,0,0,358,2273,1,0,0,0,360,2275,1,0,0,0,362,2291, - 1,0,0,0,364,2293,1,0,0,0,366,2296,1,0,0,0,368,2298,1,0,0,0,370,2300, - 1,0,0,0,372,2302,1,0,0,0,374,2304,1,0,0,0,376,2306,1,0,0,0,378,2308, - 1,0,0,0,380,2310,1,0,0,0,382,2312,1,0,0,0,384,2314,1,0,0,0,386,2316, - 1,0,0,0,388,390,3,2,1,0,389,388,1,0,0,0,390,393,1,0,0,0,391,389, - 1,0,0,0,391,392,1,0,0,0,392,394,1,0,0,0,393,391,1,0,0,0,394,395, - 5,0,0,1,395,1,1,0,0,0,396,398,3,4,2,0,397,399,5,522,0,0,398,397, - 1,0,0,0,398,399,1,0,0,0,399,402,1,0,0,0,400,402,3,6,3,0,401,396, - 1,0,0,0,401,400,1,0,0,0,402,3,1,0,0,0,403,416,3,8,4,0,404,416,3, - 10,5,0,405,416,3,12,6,0,406,416,3,14,7,0,407,416,3,20,10,0,408,416, - 3,24,12,0,409,416,3,26,13,0,410,416,3,28,14,0,411,416,3,30,15,0, - 412,416,3,32,16,0,413,416,3,34,17,0,414,416,3,36,18,0,415,403,1, - 0,0,0,415,404,1,0,0,0,415,405,1,0,0,0,415,406,1,0,0,0,415,407,1, - 0,0,0,415,408,1,0,0,0,415,409,1,0,0,0,415,410,1,0,0,0,415,411,1, - 0,0,0,415,412,1,0,0,0,415,413,1,0,0,0,415,414,1,0,0,0,416,5,1,0, - 0,0,417,418,5,522,0,0,418,7,1,0,0,0,419,434,3,40,20,0,420,434,3, - 104,52,0,421,434,3,106,53,0,422,434,3,108,54,0,423,434,3,102,51, - 0,424,434,3,114,57,0,425,434,3,128,64,0,426,434,3,130,65,0,427,434, - 3,132,66,0,428,434,3,134,67,0,429,434,3,136,68,0,430,434,3,138,69, - 0,431,434,3,140,70,0,432,434,3,142,71,0,433,419,1,0,0,0,433,420, - 1,0,0,0,433,421,1,0,0,0,433,422,1,0,0,0,433,423,1,0,0,0,433,424, - 1,0,0,0,433,425,1,0,0,0,433,426,1,0,0,0,433,427,1,0,0,0,433,428, - 1,0,0,0,433,429,1,0,0,0,433,430,1,0,0,0,433,431,1,0,0,0,433,432, - 1,0,0,0,434,9,1,0,0,0,435,438,3,160,80,0,436,438,3,144,72,0,437, - 435,1,0,0,0,437,436,1,0,0,0,438,11,1,0,0,0,439,440,7,0,0,0,440,441, - 3,330,165,0,441,13,1,0,0,0,442,446,5,135,0,0,443,447,3,16,8,0,444, - 445,5,480,0,0,445,447,5,146,0,0,446,443,1,0,0,0,446,444,1,0,0,0, - 446,447,1,0,0,0,447,451,1,0,0,0,448,452,3,10,5,0,449,452,3,146,73, - 0,450,452,3,158,79,0,451,448,1,0,0,0,451,449,1,0,0,0,451,450,1,0, - 0,0,452,15,1,0,0,0,453,458,3,18,9,0,454,455,5,521,0,0,455,457,3, - 18,9,0,456,454,1,0,0,0,457,460,1,0,0,0,458,456,1,0,0,0,458,459,1, - 0,0,0,459,17,1,0,0,0,460,458,1,0,0,0,461,462,7,1,0,0,462,19,1,0, - 0,0,463,464,5,411,0,0,464,465,5,442,0,0,465,470,3,320,160,0,466, - 467,5,411,0,0,467,470,3,324,162,0,468,470,3,22,11,0,469,463,1,0, - 0,0,469,466,1,0,0,0,469,468,1,0,0,0,470,21,1,0,0,0,471,472,5,411, - 0,0,472,473,5,228,0,0,473,478,3,336,168,0,474,475,5,521,0,0,475, - 477,3,336,168,0,476,474,1,0,0,0,477,480,1,0,0,0,478,476,1,0,0,0, - 478,479,1,0,0,0,479,23,1,0,0,0,480,478,1,0,0,0,481,482,5,342,0,0, - 482,524,7,2,0,0,483,484,5,342,0,0,484,485,5,76,0,0,485,524,7,3,0, - 0,486,487,5,342,0,0,487,490,5,375,0,0,488,489,7,4,0,0,489,491,3, - 324,162,0,490,488,1,0,0,0,490,491,1,0,0,0,491,493,1,0,0,0,492,494, - 3,266,133,0,493,492,1,0,0,0,493,494,1,0,0,0,494,524,1,0,0,0,495, - 496,5,342,0,0,496,497,5,58,0,0,497,500,7,4,0,0,498,501,3,332,166, - 0,499,501,3,330,165,0,500,498,1,0,0,0,500,499,1,0,0,0,501,503,1, - 0,0,0,502,504,3,266,133,0,503,502,1,0,0,0,503,504,1,0,0,0,504,524, - 1,0,0,0,505,506,5,342,0,0,506,511,5,72,0,0,507,508,5,374,0,0,508, - 512,3,330,165,0,509,510,5,502,0,0,510,512,3,332,166,0,511,507,1, - 0,0,0,511,509,1,0,0,0,512,524,1,0,0,0,513,515,5,342,0,0,514,516, - 5,412,0,0,515,514,1,0,0,0,515,516,1,0,0,0,516,517,1,0,0,0,517,524, - 5,154,0,0,518,520,5,342,0,0,519,521,5,152,0,0,520,519,1,0,0,0,520, - 521,1,0,0,0,521,522,1,0,0,0,522,524,5,228,0,0,523,481,1,0,0,0,523, - 483,1,0,0,0,523,486,1,0,0,0,523,495,1,0,0,0,523,505,1,0,0,0,523, - 513,1,0,0,0,523,518,1,0,0,0,524,25,1,0,0,0,525,526,5,469,0,0,526, - 527,5,227,0,0,527,530,3,336,168,0,528,529,5,434,0,0,529,531,3,344, - 172,0,530,528,1,0,0,0,530,531,1,0,0,0,531,27,1,0,0,0,532,533,5,501, - 0,0,533,534,5,227,0,0,534,535,3,336,168,0,535,29,1,0,0,0,536,538, - 5,341,0,0,537,539,3,346,173,0,538,537,1,0,0,0,538,539,1,0,0,0,539, - 31,1,0,0,0,540,542,5,313,0,0,541,543,3,348,174,0,542,541,1,0,0,0, - 542,543,1,0,0,0,543,33,1,0,0,0,544,545,7,5,0,0,545,546,5,464,0,0, - 546,547,3,112,56,0,547,35,1,0,0,0,548,549,5,438,0,0,549,550,5,464, - 0,0,550,551,5,434,0,0,551,554,3,38,19,0,552,553,5,17,0,0,553,555, - 3,336,168,0,554,552,1,0,0,0,554,555,1,0,0,0,555,599,1,0,0,0,556, - 557,5,438,0,0,557,558,5,457,0,0,558,559,5,434,0,0,559,562,3,38,19, - 0,560,561,5,17,0,0,561,563,3,336,168,0,562,560,1,0,0,0,562,563,1, - 0,0,0,563,566,1,0,0,0,564,565,5,312,0,0,565,567,3,336,168,0,566, - 564,1,0,0,0,566,567,1,0,0,0,567,599,1,0,0,0,568,569,5,438,0,0,569, - 570,7,6,0,0,570,571,5,434,0,0,571,572,3,38,19,0,572,573,5,312,0, - 0,573,574,3,336,168,0,574,599,1,0,0,0,575,576,5,438,0,0,576,577, - 5,487,0,0,577,599,3,38,19,0,578,579,5,438,0,0,579,580,5,454,0,0, - 580,581,5,457,0,0,581,582,5,434,0,0,582,583,3,38,19,0,583,584,5, - 312,0,0,584,585,3,336,168,0,585,586,5,467,0,0,586,587,3,336,168, - 0,587,599,1,0,0,0,588,589,5,438,0,0,589,590,5,444,0,0,590,591,5, - 457,0,0,591,592,5,434,0,0,592,593,3,38,19,0,593,594,5,146,0,0,594, - 595,3,336,168,0,595,596,5,17,0,0,596,597,3,336,168,0,597,599,1,0, - 0,0,598,548,1,0,0,0,598,556,1,0,0,0,598,568,1,0,0,0,598,575,1,0, - 0,0,598,578,1,0,0,0,598,588,1,0,0,0,599,37,1,0,0,0,600,602,5,535, - 0,0,601,600,1,0,0,0,601,602,1,0,0,0,602,603,1,0,0,0,603,605,3,336, - 168,0,604,601,1,0,0,0,605,606,1,0,0,0,606,604,1,0,0,0,606,607,1, - 0,0,0,607,39,1,0,0,0,608,611,3,42,21,0,609,611,3,44,22,0,610,608, - 1,0,0,0,610,609,1,0,0,0,611,41,1,0,0,0,612,614,5,72,0,0,613,615, - 5,498,0,0,614,613,1,0,0,0,614,615,1,0,0,0,615,616,1,0,0,0,616,618, - 5,374,0,0,617,619,3,340,170,0,618,617,1,0,0,0,618,619,1,0,0,0,619, - 620,1,0,0,0,620,621,3,328,164,0,621,622,5,517,0,0,622,627,3,46,23, - 0,623,624,5,521,0,0,624,626,3,46,23,0,625,623,1,0,0,0,626,629,1, - 0,0,0,627,625,1,0,0,0,627,628,1,0,0,0,628,632,1,0,0,0,629,627,1, - 0,0,0,630,631,5,521,0,0,631,633,3,82,41,0,632,630,1,0,0,0,632,633, - 1,0,0,0,633,636,1,0,0,0,634,635,5,521,0,0,635,637,3,84,42,0,636, - 634,1,0,0,0,636,637,1,0,0,0,637,640,1,0,0,0,638,639,5,521,0,0,639, - 641,3,88,44,0,640,638,1,0,0,0,640,641,1,0,0,0,641,642,1,0,0,0,642, - 645,5,518,0,0,643,644,5,59,0,0,644,646,5,538,0,0,645,643,1,0,0,0, - 645,646,1,0,0,0,646,648,1,0,0,0,647,649,3,90,45,0,648,647,1,0,0, - 0,648,649,1,0,0,0,649,650,1,0,0,0,650,652,3,338,169,0,651,653,3, - 98,49,0,652,651,1,0,0,0,652,653,1,0,0,0,653,43,1,0,0,0,654,655,5, - 72,0,0,655,657,5,374,0,0,656,658,3,340,170,0,657,656,1,0,0,0,657, - 658,1,0,0,0,658,659,1,0,0,0,659,660,3,328,164,0,660,663,3,338,169, - 0,661,662,5,17,0,0,662,664,3,160,80,0,663,661,1,0,0,0,663,664,1, - 0,0,0,664,45,1,0,0,0,665,669,3,48,24,0,666,669,3,74,37,0,667,669, - 3,78,39,0,668,665,1,0,0,0,668,666,1,0,0,0,668,667,1,0,0,0,669,47, - 1,0,0,0,670,671,3,50,25,0,671,673,3,58,29,0,672,674,3,72,36,0,673, - 672,1,0,0,0,673,674,1,0,0,0,674,677,1,0,0,0,675,676,5,59,0,0,676, - 678,5,538,0,0,677,675,1,0,0,0,677,678,1,0,0,0,678,49,1,0,0,0,679, - 682,3,336,168,0,680,682,3,260,130,0,681,679,1,0,0,0,681,680,1,0, - 0,0,682,51,1,0,0,0,683,686,3,336,168,0,684,686,4,26,0,0,685,683, - 1,0,0,0,685,684,1,0,0,0,686,53,1,0,0,0,687,688,3,336,168,0,688,55, - 1,0,0,0,689,690,5,517,0,0,690,695,3,52,26,0,691,692,5,521,0,0,692, - 694,3,52,26,0,693,691,1,0,0,0,694,697,1,0,0,0,695,693,1,0,0,0,695, - 696,1,0,0,0,696,698,1,0,0,0,697,695,1,0,0,0,698,699,5,518,0,0,699, - 57,1,0,0,0,700,738,7,7,0,0,701,703,7,8,0,0,702,704,3,60,30,0,703, - 702,1,0,0,0,703,704,1,0,0,0,704,738,1,0,0,0,705,707,5,380,0,0,706, - 708,3,60,30,0,707,706,1,0,0,0,707,708,1,0,0,0,708,715,1,0,0,0,709, - 711,7,9,0,0,710,712,5,207,0,0,711,710,1,0,0,0,711,712,1,0,0,0,712, - 713,1,0,0,0,713,714,5,379,0,0,714,716,5,505,0,0,715,709,1,0,0,0, - 715,716,1,0,0,0,716,738,1,0,0,0,717,719,7,10,0,0,718,720,3,62,31, - 0,719,718,1,0,0,0,719,720,1,0,0,0,720,738,1,0,0,0,721,723,7,11,0, - 0,722,724,3,66,33,0,723,722,1,0,0,0,723,724,1,0,0,0,724,738,1,0, - 0,0,725,727,5,470,0,0,726,728,3,68,34,0,727,726,1,0,0,0,727,728, - 1,0,0,0,728,738,1,0,0,0,729,731,5,322,0,0,730,732,3,70,35,0,731, - 730,1,0,0,0,731,732,1,0,0,0,732,738,1,0,0,0,733,735,5,295,0,0,734, - 736,3,64,32,0,735,734,1,0,0,0,735,736,1,0,0,0,736,738,1,0,0,0,737, - 700,1,0,0,0,737,701,1,0,0,0,737,705,1,0,0,0,737,717,1,0,0,0,737, - 721,1,0,0,0,737,725,1,0,0,0,737,729,1,0,0,0,737,733,1,0,0,0,738, - 59,1,0,0,0,739,740,5,517,0,0,740,741,3,368,184,0,741,742,5,518,0, - 0,742,61,1,0,0,0,743,744,5,517,0,0,744,747,3,368,184,0,745,746,5, - 521,0,0,746,748,3,368,184,0,747,745,1,0,0,0,747,748,1,0,0,0,748, - 749,1,0,0,0,749,750,5,518,0,0,750,63,1,0,0,0,751,752,5,517,0,0,752, - 755,3,366,183,0,753,754,5,521,0,0,754,756,3,366,183,0,755,753,1, - 0,0,0,755,756,1,0,0,0,756,757,1,0,0,0,757,758,5,518,0,0,758,65,1, - 0,0,0,759,760,5,508,0,0,760,761,3,58,29,0,761,762,5,507,0,0,762, - 67,1,0,0,0,763,764,5,508,0,0,764,765,3,58,29,0,765,766,5,521,0,0, - 766,767,3,58,29,0,767,768,1,0,0,0,768,769,5,507,0,0,769,69,1,0,0, - 0,770,771,5,508,0,0,771,772,3,52,26,0,772,779,3,58,29,0,773,774, - 5,521,0,0,774,775,3,52,26,0,775,776,3,58,29,0,776,778,1,0,0,0,777, - 773,1,0,0,0,778,781,1,0,0,0,779,777,1,0,0,0,779,780,1,0,0,0,780, - 782,1,0,0,0,781,779,1,0,0,0,782,783,5,507,0,0,783,799,1,0,0,0,784, - 785,5,517,0,0,785,786,3,52,26,0,786,793,3,58,29,0,787,788,5,521, - 0,0,788,789,3,52,26,0,789,790,3,58,29,0,790,792,1,0,0,0,791,787, - 1,0,0,0,792,795,1,0,0,0,793,791,1,0,0,0,793,794,1,0,0,0,794,796, - 1,0,0,0,795,793,1,0,0,0,796,797,5,518,0,0,797,799,1,0,0,0,798,770, - 1,0,0,0,798,784,1,0,0,0,799,71,1,0,0,0,800,801,5,64,0,0,801,803, - 3,86,43,0,802,800,1,0,0,0,802,803,1,0,0,0,803,804,1,0,0,0,804,805, - 5,289,0,0,805,808,5,467,0,0,806,807,5,242,0,0,807,809,5,125,0,0, - 808,806,1,0,0,0,808,809,1,0,0,0,809,815,1,0,0,0,810,812,5,242,0, - 0,811,810,1,0,0,0,811,812,1,0,0,0,812,813,1,0,0,0,813,815,5,245, - 0,0,814,802,1,0,0,0,814,811,1,0,0,0,815,73,1,0,0,0,816,817,3,50, - 25,0,817,818,3,58,29,0,818,821,5,219,0,0,819,820,5,151,0,0,820,822, - 3,76,38,0,821,819,1,0,0,0,821,822,1,0,0,0,822,824,1,0,0,0,823,825, - 5,424,0,0,824,823,1,0,0,0,824,825,1,0,0,0,825,75,1,0,0,0,826,827, - 5,538,0,0,827,77,1,0,0,0,828,829,3,50,25,0,829,830,5,17,0,0,830, - 833,3,80,40,0,831,832,5,59,0,0,832,834,5,538,0,0,833,831,1,0,0,0, - 833,834,1,0,0,0,834,79,1,0,0,0,835,836,3,260,130,0,836,81,1,0,0, - 0,837,838,5,425,0,0,838,839,5,146,0,0,839,840,3,52,26,0,840,841, - 5,17,0,0,841,842,3,260,130,0,842,83,1,0,0,0,843,844,5,64,0,0,844, - 846,3,86,43,0,845,843,1,0,0,0,845,846,1,0,0,0,846,847,1,0,0,0,847, - 848,5,289,0,0,848,849,5,467,0,0,849,850,3,56,28,0,850,851,5,242, - 0,0,851,852,5,125,0,0,852,85,1,0,0,0,853,854,3,312,156,0,854,87, - 1,0,0,0,855,856,5,278,0,0,856,857,5,146,0,0,857,858,5,372,0,0,858, - 89,1,0,0,0,859,860,5,270,0,0,860,861,5,34,0,0,861,862,3,92,46,0, - 862,91,1,0,0,0,863,864,5,517,0,0,864,869,3,94,47,0,865,866,5,521, - 0,0,866,868,3,94,47,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,872,1,0,0,0,871,869,1,0,0,0,872,873,5, - 518,0,0,873,93,1,0,0,0,874,887,3,52,26,0,875,876,5,517,0,0,876,881, - 3,96,48,0,877,878,5,521,0,0,878,880,3,96,48,0,879,877,1,0,0,0,880, - 883,1,0,0,0,881,879,1,0,0,0,881,882,1,0,0,0,882,884,1,0,0,0,883, - 881,1,0,0,0,884,885,5,518,0,0,885,887,1,0,0,0,886,874,1,0,0,0,886, - 875,1,0,0,0,887,95,1,0,0,0,888,891,3,288,144,0,889,891,3,362,181, - 0,890,888,1,0,0,0,890,889,1,0,0,0,891,97,1,0,0,0,892,893,5,203,0, - 0,893,902,3,330,165,0,894,898,5,517,0,0,895,897,3,100,50,0,896,895, - 1,0,0,0,897,900,1,0,0,0,898,896,1,0,0,0,898,899,1,0,0,0,899,901, - 1,0,0,0,900,898,1,0,0,0,901,903,5,518,0,0,902,894,1,0,0,0,902,903, - 1,0,0,0,903,99,1,0,0,0,904,905,7,12,0,0,905,909,7,13,0,0,906,907, - 7,14,0,0,907,909,7,15,0,0,908,904,1,0,0,0,908,906,1,0,0,0,909,101, - 1,0,0,0,910,911,5,72,0,0,911,912,5,442,0,0,912,913,3,322,161,0,913, - 914,3,338,169,0,914,103,1,0,0,0,915,916,5,72,0,0,916,918,5,448,0, - 0,917,919,3,340,170,0,918,917,1,0,0,0,918,919,1,0,0,0,919,920,1, - 0,0,0,920,923,3,326,163,0,921,922,5,59,0,0,922,924,5,538,0,0,923, - 921,1,0,0,0,923,924,1,0,0,0,924,925,1,0,0,0,925,926,3,338,169,0, - 926,105,1,0,0,0,927,929,5,72,0,0,928,930,5,498,0,0,929,928,1,0,0, - 0,929,930,1,0,0,0,930,931,1,0,0,0,931,933,5,502,0,0,932,934,3,340, - 170,0,933,932,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935,937,3, - 334,167,0,936,938,3,56,28,0,937,936,1,0,0,0,937,938,1,0,0,0,938, - 941,1,0,0,0,939,940,5,59,0,0,940,942,5,538,0,0,941,939,1,0,0,0,941, - 942,1,0,0,0,942,943,1,0,0,0,943,944,5,17,0,0,944,945,3,160,80,0, - 945,107,1,0,0,0,946,950,5,72,0,0,947,951,5,498,0,0,948,949,5,498, - 0,0,949,951,5,371,0,0,950,947,1,0,0,0,950,948,1,0,0,0,950,951,1, - 0,0,0,951,952,1,0,0,0,952,954,5,153,0,0,953,955,3,340,170,0,954, - 953,1,0,0,0,954,955,1,0,0,0,955,956,1,0,0,0,956,957,3,274,137,0, - 957,958,5,17,0,0,958,961,3,312,156,0,959,960,5,196,0,0,960,962,7, - 16,0,0,961,959,1,0,0,0,961,962,1,0,0,0,962,964,1,0,0,0,963,965,3, - 110,55,0,964,963,1,0,0,0,964,965,1,0,0,0,965,109,1,0,0,0,966,967, - 5,413,0,0,967,968,5,464,0,0,968,974,3,112,56,0,969,970,5,521,0,0, - 970,971,5,464,0,0,971,973,3,112,56,0,972,969,1,0,0,0,973,976,1,0, - 0,0,974,972,1,0,0,0,974,975,1,0,0,0,975,111,1,0,0,0,976,974,1,0, - 0,0,977,978,5,538,0,0,978,113,1,0,0,0,979,980,5,8,0,0,980,982,5, - 374,0,0,981,983,3,342,171,0,982,981,1,0,0,0,982,983,1,0,0,0,983, - 984,1,0,0,0,984,990,3,330,165,0,985,991,3,116,58,0,986,991,3,118, - 59,0,987,991,3,120,60,0,988,991,3,122,61,0,989,991,3,124,62,0,990, - 985,1,0,0,0,990,986,1,0,0,0,990,987,1,0,0,0,990,988,1,0,0,0,990, - 989,1,0,0,0,991,115,1,0,0,0,992,994,5,312,0,0,993,995,3,336,168, - 0,994,993,1,0,0,0,994,995,1,0,0,0,995,996,1,0,0,0,996,997,5,389, - 0,0,997,998,3,336,168,0,998,117,1,0,0,0,999,1000,5,341,0,0,1000, - 1001,3,344,172,0,1001,119,1,0,0,0,1002,1003,5,438,0,0,1003,1004, - 5,64,0,0,1004,1005,3,86,43,0,1005,1006,5,289,0,0,1006,1007,5,467, - 0,0,1007,1009,3,56,28,0,1008,1010,3,126,63,0,1009,1008,1,0,0,0,1009, - 1010,1,0,0,0,1010,121,1,0,0,0,1011,1012,5,116,0,0,1012,1013,5,64, - 0,0,1013,1014,3,86,43,0,1014,123,1,0,0,0,1015,1016,5,438,0,0,1016, - 1017,5,404,0,0,1017,1018,3,56,28,0,1018,125,1,0,0,0,1019,1020,5, - 242,0,0,1020,1021,5,125,0,0,1021,127,1,0,0,0,1022,1023,5,8,0,0,1023, - 1024,5,502,0,0,1024,1028,3,332,166,0,1025,1029,3,116,58,0,1026,1027, - 5,17,0,0,1027,1029,3,160,80,0,1028,1025,1,0,0,0,1028,1026,1,0,0, - 0,1029,129,1,0,0,0,1030,1031,5,8,0,0,1031,1032,5,448,0,0,1032,1033, - 3,324,162,0,1033,1034,3,118,59,0,1034,131,1,0,0,0,1035,1039,5,8, - 0,0,1036,1040,5,498,0,0,1037,1038,5,498,0,0,1038,1040,5,371,0,0, - 1039,1036,1,0,0,0,1039,1037,1,0,0,0,1039,1040,1,0,0,0,1040,1041, - 1,0,0,0,1041,1043,5,153,0,0,1042,1044,3,342,171,0,1043,1042,1,0, - 0,0,1043,1044,1,0,0,0,1044,1045,1,0,0,0,1045,1046,3,276,138,0,1046, - 1047,5,17,0,0,1047,1050,3,312,156,0,1048,1049,5,196,0,0,1049,1051, - 7,16,0,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,133,1,0,0,0,1052, - 1053,5,116,0,0,1053,1055,5,442,0,0,1054,1056,3,342,171,0,1055,1054, - 1,0,0,0,1055,1056,1,0,0,0,1056,1057,1,0,0,0,1057,1058,3,320,160, - 0,1058,135,1,0,0,0,1059,1061,5,116,0,0,1060,1062,5,498,0,0,1061, - 1060,1,0,0,0,1061,1062,1,0,0,0,1062,1063,1,0,0,0,1063,1065,5,374, - 0,0,1064,1066,3,342,171,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066, - 1067,1,0,0,0,1067,1068,3,330,165,0,1068,137,1,0,0,0,1069,1070,5, - 116,0,0,1070,1072,5,448,0,0,1071,1073,3,342,171,0,1072,1071,1,0, - 0,0,1072,1073,1,0,0,0,1073,1074,1,0,0,0,1074,1076,3,324,162,0,1075, - 1077,7,17,0,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077,139,1,0,0, - 0,1078,1080,5,116,0,0,1079,1081,5,498,0,0,1080,1079,1,0,0,0,1080, - 1081,1,0,0,0,1081,1082,1,0,0,0,1082,1084,5,502,0,0,1083,1085,3,342, - 171,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085,1086,1,0,0,0,1086, - 1087,3,332,166,0,1087,141,1,0,0,0,1088,1092,5,116,0,0,1089,1093, - 5,498,0,0,1090,1091,5,498,0,0,1091,1093,5,371,0,0,1092,1089,1,0, - 0,0,1092,1090,1,0,0,0,1092,1093,1,0,0,0,1093,1094,1,0,0,0,1094,1096, - 5,153,0,0,1095,1097,3,342,171,0,1096,1095,1,0,0,0,1096,1097,1,0, - 0,0,1097,1098,1,0,0,0,1098,1099,3,276,138,0,1099,143,1,0,0,0,1100, - 1102,5,132,0,0,1101,1100,1,0,0,0,1101,1102,1,0,0,0,1102,1103,1,0, - 0,0,1103,1108,3,146,73,0,1104,1108,3,156,78,0,1105,1106,5,132,0, - 0,1106,1108,3,158,79,0,1107,1101,1,0,0,0,1107,1104,1,0,0,0,1107, - 1105,1,0,0,0,1108,145,1,0,0,0,1109,1110,5,177,0,0,1110,1111,7,18, - 0,0,1111,1120,3,330,165,0,1112,1114,3,148,74,0,1113,1112,1,0,0,0, - 1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1117,3,56,28,0,1116,1115, - 1,0,0,0,1116,1117,1,0,0,0,1117,1118,1,0,0,0,1118,1121,3,160,80,0, - 1119,1121,3,150,75,0,1120,1113,1,0,0,0,1120,1119,1,0,0,0,1121,147, - 1,0,0,0,1122,1123,5,269,0,0,1123,1124,3,344,172,0,1124,149,1,0,0, - 0,1125,1126,5,415,0,0,1126,1131,3,152,76,0,1127,1128,5,521,0,0,1128, - 1130,3,152,76,0,1129,1127,1,0,0,0,1130,1133,1,0,0,0,1131,1129,1, - 0,0,0,1131,1132,1,0,0,0,1132,151,1,0,0,0,1133,1131,1,0,0,0,1134, - 1135,5,517,0,0,1135,1140,3,154,77,0,1136,1137,5,521,0,0,1137,1139, - 3,154,77,0,1138,1136,1,0,0,0,1139,1142,1,0,0,0,1140,1138,1,0,0,0, - 1140,1141,1,0,0,0,1141,1143,1,0,0,0,1142,1140,1,0,0,0,1143,1144, - 5,518,0,0,1144,153,1,0,0,0,1145,1148,3,362,181,0,1146,1148,3,270, - 135,0,1147,1145,1,0,0,0,1147,1146,1,0,0,0,1148,155,1,0,0,0,1149, - 1150,5,24,0,0,1150,1151,5,355,0,0,1151,1152,5,341,0,0,1152,1156, - 5,522,0,0,1153,1154,3,146,73,0,1154,1155,5,522,0,0,1155,1157,1,0, - 0,0,1156,1153,1,0,0,0,1157,1158,1,0,0,0,1158,1156,1,0,0,0,1158,1159, - 1,0,0,0,1159,1160,1,0,0,0,1160,1161,5,122,0,0,1161,157,1,0,0,0,1162, - 1163,5,355,0,0,1163,1164,5,341,0,0,1164,1168,5,24,0,0,1165,1166, - 3,146,73,0,1166,1167,5,522,0,0,1167,1169,1,0,0,0,1168,1165,1,0,0, - 0,1169,1170,1,0,0,0,1170,1168,1,0,0,0,1170,1171,1,0,0,0,1171,1172, - 1,0,0,0,1172,1173,5,122,0,0,1173,159,1,0,0,0,1174,1175,6,80,-1,0, - 1175,1198,3,162,81,0,1176,1177,3,164,82,0,1177,1178,3,160,80,5,1178, - 1198,1,0,0,0,1179,1180,5,517,0,0,1180,1181,3,160,80,0,1181,1182, - 5,518,0,0,1182,1198,1,0,0,0,1183,1185,3,172,86,0,1184,1186,3,232, - 116,0,1185,1184,1,0,0,0,1185,1186,1,0,0,0,1186,1188,1,0,0,0,1187, - 1189,3,236,118,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1198,1, - 0,0,0,1190,1192,3,170,85,0,1191,1193,3,232,116,0,1192,1191,1,0,0, - 0,1192,1193,1,0,0,0,1193,1195,1,0,0,0,1194,1196,3,236,118,0,1195, - 1194,1,0,0,0,1195,1196,1,0,0,0,1196,1198,1,0,0,0,1197,1174,1,0,0, - 0,1197,1176,1,0,0,0,1197,1179,1,0,0,0,1197,1183,1,0,0,0,1197,1190, - 1,0,0,0,1198,1213,1,0,0,0,1199,1200,10,3,0,0,1200,1202,7,19,0,0, - 1201,1203,5,5,0,0,1202,1201,1,0,0,0,1202,1203,1,0,0,0,1203,1204, - 1,0,0,0,1204,1206,3,160,80,0,1205,1207,3,232,116,0,1206,1205,1,0, - 0,0,1206,1207,1,0,0,0,1207,1209,1,0,0,0,1208,1210,3,236,118,0,1209, - 1208,1,0,0,0,1209,1210,1,0,0,0,1210,1212,1,0,0,0,1211,1199,1,0,0, - 0,1212,1215,1,0,0,0,1213,1211,1,0,0,0,1213,1214,1,0,0,0,1214,161, - 1,0,0,0,1215,1213,1,0,0,0,1216,1217,5,415,0,0,1217,1222,3,260,130, - 0,1218,1219,5,521,0,0,1219,1221,3,260,130,0,1220,1218,1,0,0,0,1221, - 1224,1,0,0,0,1222,1220,1,0,0,0,1222,1223,1,0,0,0,1223,163,1,0,0, - 0,1224,1222,1,0,0,0,1225,1226,5,434,0,0,1226,1231,3,166,83,0,1227, - 1228,5,521,0,0,1228,1230,3,166,83,0,1229,1227,1,0,0,0,1230,1233, - 1,0,0,0,1231,1229,1,0,0,0,1231,1232,1,0,0,0,1232,165,1,0,0,0,1233, - 1231,1,0,0,0,1234,1246,3,168,84,0,1235,1236,5,517,0,0,1236,1241, - 3,52,26,0,1237,1238,5,521,0,0,1238,1240,3,52,26,0,1239,1237,1,0, - 0,0,1240,1243,1,0,0,0,1241,1239,1,0,0,0,1241,1242,1,0,0,0,1242,1244, - 1,0,0,0,1243,1241,1,0,0,0,1244,1245,5,518,0,0,1245,1247,1,0,0,0, - 1246,1235,1,0,0,0,1246,1247,1,0,0,0,1247,1248,1,0,0,0,1248,1249, - 5,17,0,0,1249,1250,5,517,0,0,1250,1251,3,160,80,0,1251,1252,5,518, - 0,0,1252,167,1,0,0,0,1253,1254,3,312,156,0,1254,169,1,0,0,0,1255, - 1257,3,172,86,0,1256,1258,3,178,89,0,1257,1256,1,0,0,0,1257,1258, - 1,0,0,0,1258,1260,1,0,0,0,1259,1261,3,206,103,0,1260,1259,1,0,0, - 0,1260,1261,1,0,0,0,1261,1263,1,0,0,0,1262,1264,3,208,104,0,1263, - 1262,1,0,0,0,1263,1264,1,0,0,0,1264,1266,1,0,0,0,1265,1267,3,222, - 111,0,1266,1265,1,0,0,0,1266,1267,1,0,0,0,1267,1269,1,0,0,0,1268, - 1270,3,224,112,0,1269,1268,1,0,0,0,1269,1270,1,0,0,0,1270,1276,1, - 0,0,0,1271,1272,3,172,86,0,1272,1273,3,178,89,0,1273,1274,3,230, - 115,0,1274,1276,1,0,0,0,1275,1255,1,0,0,0,1275,1271,1,0,0,0,1276, - 171,1,0,0,0,1277,1279,5,337,0,0,1278,1280,3,372,186,0,1279,1278, - 1,0,0,0,1279,1280,1,0,0,0,1280,1290,1,0,0,0,1281,1291,5,528,0,0, - 1282,1287,3,174,87,0,1283,1284,5,521,0,0,1284,1286,3,174,87,0,1285, - 1283,1,0,0,0,1286,1289,1,0,0,0,1287,1285,1,0,0,0,1287,1288,1,0,0, - 0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1290,1281,1,0,0,0,1290,1282, - 1,0,0,0,1291,173,1,0,0,0,1292,1308,3,176,88,0,1293,1298,3,260,130, - 0,1294,1296,5,17,0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297, - 1,0,0,0,1297,1299,3,52,26,0,1298,1295,1,0,0,0,1298,1299,1,0,0,0, - 1299,1308,1,0,0,0,1300,1305,3,52,26,0,1301,1303,5,17,0,0,1302,1301, - 1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1306,3,260,130, - 0,1305,1302,1,0,0,0,1305,1306,1,0,0,0,1306,1308,1,0,0,0,1307,1292, - 1,0,0,0,1307,1293,1,0,0,0,1307,1300,1,0,0,0,1308,175,1,0,0,0,1309, - 1310,3,272,136,0,1310,1311,5,263,0,0,1311,1312,3,228,114,0,1312, - 1313,5,17,0,0,1313,1314,3,312,156,0,1314,1322,1,0,0,0,1315,1316, - 3,272,136,0,1316,1317,5,263,0,0,1317,1318,3,304,152,0,1318,1319, - 5,17,0,0,1319,1320,3,312,156,0,1320,1322,1,0,0,0,1321,1309,1,0,0, - 0,1321,1315,1,0,0,0,1322,177,1,0,0,0,1323,1324,5,151,0,0,1324,1325, - 3,180,90,0,1325,179,1,0,0,0,1326,1327,6,90,-1,0,1327,1332,3,182, - 91,0,1328,1329,5,521,0,0,1329,1331,3,182,91,0,1330,1328,1,0,0,0, - 1331,1334,1,0,0,0,1332,1330,1,0,0,0,1332,1333,1,0,0,0,1333,1338, - 1,0,0,0,1334,1332,1,0,0,0,1335,1338,3,190,95,0,1336,1338,3,192,96, - 0,1337,1326,1,0,0,0,1337,1335,1,0,0,0,1337,1336,1,0,0,0,1338,1360, - 1,0,0,0,1339,1340,10,3,0,0,1340,1341,5,73,0,0,1341,1342,5,185,0, - 0,1342,1359,3,180,90,4,1343,1345,10,4,0,0,1344,1346,5,234,0,0,1345, - 1344,1,0,0,0,1345,1346,1,0,0,0,1346,1348,1,0,0,0,1347,1349,7,20, - 0,0,1348,1347,1,0,0,0,1348,1349,1,0,0,0,1349,1351,1,0,0,0,1350,1352, - 5,262,0,0,1351,1350,1,0,0,0,1351,1352,1,0,0,0,1352,1353,1,0,0,0, - 1353,1354,5,185,0,0,1354,1356,3,180,90,0,1355,1357,3,204,102,0,1356, - 1355,1,0,0,0,1356,1357,1,0,0,0,1357,1359,1,0,0,0,1358,1339,1,0,0, - 0,1358,1343,1,0,0,0,1359,1362,1,0,0,0,1360,1358,1,0,0,0,1360,1361, - 1,0,0,0,1361,181,1,0,0,0,1362,1360,1,0,0,0,1363,1365,3,184,92,0, - 1364,1366,3,302,151,0,1365,1364,1,0,0,0,1365,1366,1,0,0,0,1366,183, - 1,0,0,0,1367,1369,5,374,0,0,1368,1367,1,0,0,0,1368,1369,1,0,0,0, - 1369,1370,1,0,0,0,1370,1372,3,330,165,0,1371,1373,3,186,93,0,1372, - 1371,1,0,0,0,1372,1373,1,0,0,0,1373,1397,1,0,0,0,1374,1376,3,332, - 166,0,1375,1377,3,186,93,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0,1377, - 1397,1,0,0,0,1378,1379,5,199,0,0,1379,1380,5,374,0,0,1380,1381,5, - 517,0,0,1381,1382,3,270,135,0,1382,1383,5,518,0,0,1383,1397,1,0, - 0,0,1384,1386,5,199,0,0,1385,1384,1,0,0,0,1385,1386,1,0,0,0,1386, - 1387,1,0,0,0,1387,1388,5,517,0,0,1388,1389,3,160,80,0,1389,1390, - 5,518,0,0,1390,1397,1,0,0,0,1391,1392,5,406,0,0,1392,1393,5,517, - 0,0,1393,1394,3,260,130,0,1394,1395,5,518,0,0,1395,1397,1,0,0,0, - 1396,1368,1,0,0,0,1396,1374,1,0,0,0,1396,1378,1,0,0,0,1396,1385, - 1,0,0,0,1396,1391,1,0,0,0,1397,185,1,0,0,0,1398,1399,5,146,0,0,1399, - 1400,5,372,0,0,1400,1401,5,17,0,0,1401,1402,5,250,0,0,1402,1403, - 3,188,94,0,1403,187,1,0,0,0,1404,1405,3,260,130,0,1405,189,1,0,0, - 0,1406,1407,5,517,0,0,1407,1408,3,150,75,0,1408,1409,5,518,0,0,1409, - 1410,3,302,151,0,1410,191,1,0,0,0,1411,1412,5,374,0,0,1412,1413, - 5,517,0,0,1413,1414,3,194,97,0,1414,1415,5,518,0,0,1415,193,1,0, - 0,0,1416,1417,3,196,98,0,1417,1418,5,517,0,0,1418,1423,3,198,99, - 0,1419,1420,5,521,0,0,1420,1422,3,198,99,0,1421,1419,1,0,0,0,1422, - 1425,1,0,0,0,1423,1421,1,0,0,0,1423,1424,1,0,0,0,1424,1426,1,0,0, - 0,1425,1423,1,0,0,0,1426,1427,5,518,0,0,1427,195,1,0,0,0,1428,1429, - 7,21,0,0,1429,197,1,0,0,0,1430,1431,5,374,0,0,1431,1446,3,220,110, - 0,1432,1446,3,202,101,0,1433,1446,3,290,145,0,1434,1435,5,447,0, - 0,1435,1436,5,537,0,0,1436,1437,5,374,0,0,1437,1446,3,220,110,0, - 1438,1439,5,499,0,0,1439,1440,5,537,0,0,1440,1446,3,202,101,0,1441, - 1442,3,200,100,0,1442,1443,5,537,0,0,1443,1444,3,290,145,0,1444, - 1446,1,0,0,0,1445,1430,1,0,0,0,1445,1432,1,0,0,0,1445,1433,1,0,0, - 0,1445,1434,1,0,0,0,1445,1438,1,0,0,0,1445,1441,1,0,0,0,1446,199, - 1,0,0,0,1447,1448,7,22,0,0,1448,201,1,0,0,0,1449,1450,5,452,0,0, - 1450,1451,5,517,0,0,1451,1452,3,52,26,0,1452,1453,5,518,0,0,1453, - 203,1,0,0,0,1454,1455,5,254,0,0,1455,1459,3,262,131,0,1456,1457, - 5,413,0,0,1457,1459,3,56,28,0,1458,1454,1,0,0,0,1458,1456,1,0,0, - 0,1459,205,1,0,0,0,1460,1461,5,431,0,0,1461,1462,3,262,131,0,1462, - 207,1,0,0,0,1463,1464,5,159,0,0,1464,1465,5,34,0,0,1465,1470,3,210, - 105,0,1466,1467,5,521,0,0,1467,1469,3,210,105,0,1468,1466,1,0,0, - 0,1469,1472,1,0,0,0,1470,1468,1,0,0,0,1470,1471,1,0,0,0,1471,209, - 1,0,0,0,1472,1470,1,0,0,0,1473,1514,3,52,26,0,1474,1514,3,216,108, - 0,1475,1476,5,517,0,0,1476,1514,5,518,0,0,1477,1478,5,517,0,0,1478, - 1483,3,260,130,0,1479,1480,5,521,0,0,1480,1482,3,260,130,0,1481, - 1479,1,0,0,0,1482,1485,1,0,0,0,1483,1481,1,0,0,0,1483,1484,1,0,0, - 0,1484,1486,1,0,0,0,1485,1483,1,0,0,0,1486,1487,5,518,0,0,1487,1514, - 1,0,0,0,1488,1489,3,214,107,0,1489,1490,5,517,0,0,1490,1495,3,260, - 130,0,1491,1492,5,521,0,0,1492,1494,3,260,130,0,1493,1491,1,0,0, - 0,1494,1497,1,0,0,0,1495,1493,1,0,0,0,1495,1496,1,0,0,0,1496,1498, - 1,0,0,0,1497,1495,1,0,0,0,1498,1499,5,518,0,0,1499,1514,1,0,0,0, - 1500,1501,3,212,106,0,1501,1502,5,517,0,0,1502,1507,3,210,105,0, - 1503,1504,5,521,0,0,1504,1506,3,210,105,0,1505,1503,1,0,0,0,1506, - 1509,1,0,0,0,1507,1505,1,0,0,0,1507,1508,1,0,0,0,1508,1510,1,0,0, - 0,1509,1507,1,0,0,0,1510,1511,5,518,0,0,1511,1514,1,0,0,0,1512,1514, - 3,260,130,0,1513,1473,1,0,0,0,1513,1474,1,0,0,0,1513,1475,1,0,0, - 0,1513,1477,1,0,0,0,1513,1488,1,0,0,0,1513,1500,1,0,0,0,1513,1512, - 1,0,0,0,1514,211,1,0,0,0,1515,1516,5,160,0,0,1516,1517,5,494,0,0, - 1517,213,1,0,0,0,1518,1519,7,23,0,0,1519,215,1,0,0,0,1520,1521,3, - 218,109,0,1521,1522,5,517,0,0,1522,1523,3,220,110,0,1523,1524,5, - 521,0,0,1524,1525,3,290,145,0,1525,1526,5,518,0,0,1526,217,1,0,0, - 0,1527,1528,7,24,0,0,1528,219,1,0,0,0,1529,1530,3,336,168,0,1530, - 221,1,0,0,0,1531,1532,5,163,0,0,1532,1533,3,262,131,0,1533,223,1, - 0,0,0,1534,1535,5,433,0,0,1535,1540,3,226,113,0,1536,1537,5,521, - 0,0,1537,1539,3,226,113,0,1538,1536,1,0,0,0,1539,1542,1,0,0,0,1540, - 1538,1,0,0,0,1540,1541,1,0,0,0,1541,225,1,0,0,0,1542,1540,1,0,0, - 0,1543,1544,3,304,152,0,1544,1545,5,17,0,0,1545,1546,3,228,114,0, - 1546,227,1,0,0,0,1547,1549,3,304,152,0,1548,1547,1,0,0,0,1548,1549, - 1,0,0,0,1549,1550,1,0,0,0,1550,1552,5,517,0,0,1551,1553,3,238,119, - 0,1552,1551,1,0,0,0,1552,1553,1,0,0,0,1553,1555,1,0,0,0,1554,1556, - 3,232,116,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556,1558,1,0,0, - 0,1557,1559,3,254,127,0,1558,1557,1,0,0,0,1558,1559,1,0,0,0,1559, - 1560,1,0,0,0,1560,1561,5,518,0,0,1561,229,1,0,0,0,1562,1563,5,214, - 0,0,1563,1565,5,517,0,0,1564,1566,3,238,119,0,1565,1564,1,0,0,0, - 1565,1566,1,0,0,0,1566,1568,1,0,0,0,1567,1569,3,232,116,0,1568,1567, - 1,0,0,0,1568,1569,1,0,0,0,1569,1571,1,0,0,0,1570,1572,3,242,121, - 0,1571,1570,1,0,0,0,1571,1572,1,0,0,0,1572,1574,1,0,0,0,1573,1575, - 3,248,124,0,1574,1573,1,0,0,0,1574,1575,1,0,0,0,1575,1577,1,0,0, - 0,1576,1578,3,250,125,0,1577,1576,1,0,0,0,1577,1578,1,0,0,0,1578, - 1580,1,0,0,0,1579,1581,3,244,122,0,1580,1579,1,0,0,0,1580,1581,1, - 0,0,0,1581,1582,1,0,0,0,1582,1583,3,252,126,0,1583,1588,5,518,0, - 0,1584,1586,5,17,0,0,1585,1584,1,0,0,0,1585,1586,1,0,0,0,1586,1587, - 1,0,0,0,1587,1589,3,312,156,0,1588,1585,1,0,0,0,1588,1589,1,0,0, - 0,1589,231,1,0,0,0,1590,1591,5,259,0,0,1591,1592,5,34,0,0,1592,1597, - 3,234,117,0,1593,1594,5,521,0,0,1594,1596,3,234,117,0,1595,1593, - 1,0,0,0,1596,1599,1,0,0,0,1597,1595,1,0,0,0,1597,1598,1,0,0,0,1598, - 233,1,0,0,0,1599,1597,1,0,0,0,1600,1602,3,52,26,0,1601,1603,7,25, - 0,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603,1606,1,0,0,0,1604,1605, - 5,477,0,0,1605,1607,7,26,0,0,1606,1604,1,0,0,0,1606,1607,1,0,0,0, - 1607,235,1,0,0,0,1608,1611,5,205,0,0,1609,1612,5,5,0,0,1610,1612, - 3,260,130,0,1611,1609,1,0,0,0,1611,1610,1,0,0,0,1612,237,1,0,0,0, - 1613,1614,5,269,0,0,1614,1617,5,34,0,0,1615,1618,3,52,26,0,1616, - 1618,3,272,136,0,1617,1615,1,0,0,0,1617,1616,1,0,0,0,1618,1626,1, - 0,0,0,1619,1622,5,521,0,0,1620,1623,3,52,26,0,1621,1623,3,272,136, - 0,1622,1620,1,0,0,0,1622,1621,1,0,0,0,1623,1625,1,0,0,0,1624,1619, - 1,0,0,0,1625,1628,1,0,0,0,1626,1624,1,0,0,0,1626,1627,1,0,0,0,1627, - 239,1,0,0,0,1628,1626,1,0,0,0,1629,1646,5,528,0,0,1630,1646,5,531, - 0,0,1631,1646,5,536,0,0,1632,1633,5,519,0,0,1633,1634,5,539,0,0, - 1634,1635,5,521,0,0,1635,1636,5,539,0,0,1636,1646,5,520,0,0,1637, - 1638,5,519,0,0,1638,1639,5,539,0,0,1639,1640,5,521,0,0,1640,1646, - 5,520,0,0,1641,1642,5,519,0,0,1642,1643,5,521,0,0,1643,1644,5,539, - 0,0,1644,1646,5,520,0,0,1645,1629,1,0,0,0,1645,1630,1,0,0,0,1645, - 1631,1,0,0,0,1645,1632,1,0,0,0,1645,1637,1,0,0,0,1645,1641,1,0,0, - 0,1646,241,1,0,0,0,1647,1648,5,216,0,0,1648,1653,3,174,87,0,1649, - 1650,5,521,0,0,1650,1652,3,174,87,0,1651,1649,1,0,0,0,1652,1655, - 1,0,0,0,1653,1651,1,0,0,0,1653,1654,1,0,0,0,1654,243,1,0,0,0,1655, - 1653,1,0,0,0,1656,1657,5,272,0,0,1657,1659,5,517,0,0,1658,1660,3, - 246,123,0,1659,1658,1,0,0,0,1660,1661,1,0,0,0,1661,1659,1,0,0,0, - 1661,1662,1,0,0,0,1662,1663,1,0,0,0,1663,1665,5,518,0,0,1664,1666, - 3,258,129,0,1665,1664,1,0,0,0,1665,1666,1,0,0,0,1666,245,1,0,0,0, - 1667,1669,3,314,157,0,1668,1670,3,240,120,0,1669,1668,1,0,0,0,1669, - 1670,1,0,0,0,1670,247,1,0,0,0,1671,1672,5,5,0,0,1672,1673,5,323, - 0,0,1673,1674,5,273,0,0,1674,1680,5,211,0,0,1675,1676,5,255,0,0, - 1676,1677,5,322,0,0,1677,1678,5,273,0,0,1678,1680,5,211,0,0,1679, - 1671,1,0,0,0,1679,1675,1,0,0,0,1680,249,1,0,0,0,1681,1682,5,439, - 0,0,1682,1683,5,211,0,0,1683,1684,5,344,0,0,1684,1685,5,479,0,0, - 1685,1686,5,468,0,0,1686,1706,5,322,0,0,1687,1688,5,439,0,0,1688, - 1689,5,211,0,0,1689,1690,5,344,0,0,1690,1691,5,389,0,0,1691,1692, - 5,238,0,0,1692,1706,5,322,0,0,1693,1694,5,439,0,0,1694,1695,5,211, - 0,0,1695,1696,5,344,0,0,1696,1697,5,389,0,0,1697,1698,5,468,0,0, - 1698,1706,3,314,157,0,1699,1700,5,439,0,0,1700,1701,5,211,0,0,1701, - 1702,5,344,0,0,1702,1703,5,389,0,0,1703,1704,5,458,0,0,1704,1706, - 3,314,157,0,1705,1681,1,0,0,0,1705,1687,1,0,0,0,1705,1693,1,0,0, - 0,1705,1699,1,0,0,0,1706,251,1,0,0,0,1707,1708,5,105,0,0,1708,1713, - 3,174,87,0,1709,1710,5,521,0,0,1710,1712,3,174,87,0,1711,1709,1, - 0,0,0,1712,1715,1,0,0,0,1713,1711,1,0,0,0,1713,1714,1,0,0,0,1714, - 253,1,0,0,0,1715,1713,1,0,0,0,1716,1717,5,293,0,0,1717,1718,5,27, - 0,0,1718,1719,3,290,145,0,1719,1720,3,256,128,0,1720,1726,1,0,0, - 0,1721,1722,5,323,0,0,1722,1723,5,27,0,0,1723,1724,5,539,0,0,1724, - 1726,3,256,128,0,1725,1716,1,0,0,0,1725,1721,1,0,0,0,1726,255,1, - 0,0,0,1727,1728,5,481,0,0,1728,1729,5,10,0,0,1729,1730,5,76,0,0, - 1730,1731,5,322,0,0,1731,257,1,0,0,0,1732,1733,5,435,0,0,1733,1734, - 3,290,145,0,1734,259,1,0,0,0,1735,1736,3,262,131,0,1736,261,1,0, - 0,0,1737,1738,6,131,-1,0,1738,1739,5,242,0,0,1739,1750,3,262,131, - 6,1740,1741,5,133,0,0,1741,1742,5,517,0,0,1742,1743,3,160,80,0,1743, - 1744,5,518,0,0,1744,1750,1,0,0,0,1745,1747,3,268,134,0,1746,1748, - 3,264,132,0,1747,1746,1,0,0,0,1747,1748,1,0,0,0,1748,1750,1,0,0, - 0,1749,1737,1,0,0,0,1749,1740,1,0,0,0,1749,1745,1,0,0,0,1750,1765, - 1,0,0,0,1751,1752,10,3,0,0,1752,1753,5,10,0,0,1753,1764,3,262,131, - 4,1754,1755,10,2,0,0,1755,1756,5,258,0,0,1756,1764,3,262,131,3,1757, - 1758,10,1,0,0,1758,1760,5,184,0,0,1759,1761,5,242,0,0,1760,1759, - 1,0,0,0,1760,1761,1,0,0,0,1761,1762,1,0,0,0,1762,1764,7,27,0,0,1763, - 1751,1,0,0,0,1763,1754,1,0,0,0,1763,1757,1,0,0,0,1764,1767,1,0,0, - 0,1765,1763,1,0,0,0,1765,1766,1,0,0,0,1766,263,1,0,0,0,1767,1765, - 1,0,0,0,1768,1770,5,242,0,0,1769,1768,1,0,0,0,1769,1770,1,0,0,0, - 1770,1771,1,0,0,0,1771,1773,5,27,0,0,1772,1774,7,28,0,0,1773,1772, - 1,0,0,0,1773,1774,1,0,0,0,1774,1775,1,0,0,0,1775,1776,3,268,134, - 0,1776,1777,5,10,0,0,1777,1778,3,268,134,0,1778,1843,1,0,0,0,1779, - 1781,5,242,0,0,1780,1779,1,0,0,0,1780,1781,1,0,0,0,1781,1782,1,0, - 0,0,1782,1783,5,170,0,0,1783,1784,5,517,0,0,1784,1789,3,260,130, - 0,1785,1786,5,521,0,0,1786,1788,3,260,130,0,1787,1785,1,0,0,0,1788, - 1791,1,0,0,0,1789,1787,1,0,0,0,1789,1790,1,0,0,0,1790,1792,1,0,0, - 0,1791,1789,1,0,0,0,1792,1793,5,518,0,0,1793,1843,1,0,0,0,1794,1796, - 5,242,0,0,1795,1794,1,0,0,0,1795,1796,1,0,0,0,1796,1797,1,0,0,0, - 1797,1798,5,170,0,0,1798,1799,5,517,0,0,1799,1800,3,160,80,0,1800, - 1801,5,518,0,0,1801,1843,1,0,0,0,1802,1803,5,133,0,0,1803,1804,5, - 517,0,0,1804,1805,3,160,80,0,1805,1806,5,518,0,0,1806,1843,1,0,0, - 0,1807,1809,5,242,0,0,1808,1807,1,0,0,0,1808,1809,1,0,0,0,1809,1810, - 1,0,0,0,1810,1811,5,319,0,0,1811,1843,3,268,134,0,1812,1843,3,266, - 133,0,1813,1815,5,184,0,0,1814,1816,5,242,0,0,1815,1814,1,0,0,0, - 1815,1816,1,0,0,0,1816,1817,1,0,0,0,1817,1843,7,27,0,0,1818,1820, - 5,184,0,0,1819,1821,5,242,0,0,1820,1819,1,0,0,0,1820,1821,1,0,0, - 0,1821,1822,1,0,0,0,1822,1823,5,113,0,0,1823,1824,5,151,0,0,1824, - 1843,3,268,134,0,1825,1827,5,242,0,0,1826,1825,1,0,0,0,1826,1827, - 1,0,0,0,1827,1828,1,0,0,0,1828,1829,5,343,0,0,1829,1830,5,389,0, - 0,1830,1833,3,268,134,0,1831,1832,5,127,0,0,1832,1834,3,366,183, - 0,1833,1831,1,0,0,0,1833,1834,1,0,0,0,1834,1843,1,0,0,0,1835,1836, - 5,184,0,0,1836,1840,5,186,0,0,1837,1841,5,414,0,0,1838,1841,5,13, - 0,0,1839,1841,3,312,156,0,1840,1837,1,0,0,0,1840,1838,1,0,0,0,1840, - 1839,1,0,0,0,1840,1841,1,0,0,0,1841,1843,1,0,0,0,1842,1769,1,0,0, - 0,1842,1780,1,0,0,0,1842,1795,1,0,0,0,1842,1802,1,0,0,0,1842,1808, - 1,0,0,0,1842,1812,1,0,0,0,1842,1813,1,0,0,0,1842,1818,1,0,0,0,1842, - 1826,1,0,0,0,1842,1835,1,0,0,0,1843,265,1,0,0,0,1844,1846,5,242, - 0,0,1845,1844,1,0,0,0,1845,1846,1,0,0,0,1846,1847,1,0,0,0,1847,1848, - 5,203,0,0,1848,1862,7,29,0,0,1849,1850,5,517,0,0,1850,1863,5,518, - 0,0,1851,1852,5,517,0,0,1852,1857,3,260,130,0,1853,1854,5,521,0, - 0,1854,1856,3,260,130,0,1855,1853,1,0,0,0,1856,1859,1,0,0,0,1857, - 1855,1,0,0,0,1857,1858,1,0,0,0,1858,1860,1,0,0,0,1859,1857,1,0,0, - 0,1860,1861,5,518,0,0,1861,1863,1,0,0,0,1862,1849,1,0,0,0,1862,1851, - 1,0,0,0,1863,1874,1,0,0,0,1864,1866,5,242,0,0,1865,1864,1,0,0,0, - 1865,1866,1,0,0,0,1866,1867,1,0,0,0,1867,1868,5,203,0,0,1868,1871, - 3,268,134,0,1869,1870,5,127,0,0,1870,1872,3,366,183,0,1871,1869, - 1,0,0,0,1871,1872,1,0,0,0,1872,1874,1,0,0,0,1873,1845,1,0,0,0,1873, - 1865,1,0,0,0,1874,267,1,0,0,0,1875,1876,6,134,-1,0,1876,1880,3,272, - 136,0,1877,1878,7,30,0,0,1878,1880,3,268,134,7,1879,1875,1,0,0,0, - 1879,1877,1,0,0,0,1880,1902,1,0,0,0,1881,1882,10,6,0,0,1882,1883, - 7,31,0,0,1883,1901,3,268,134,7,1884,1885,10,5,0,0,1885,1886,7,32, - 0,0,1886,1901,3,268,134,6,1887,1888,10,4,0,0,1888,1889,5,512,0,0, - 1889,1901,3,268,134,5,1890,1891,10,3,0,0,1891,1892,5,513,0,0,1892, - 1901,3,268,134,4,1893,1894,10,2,0,0,1894,1895,5,511,0,0,1895,1901, - 3,268,134,3,1896,1897,10,1,0,0,1897,1898,3,354,177,0,1898,1899,3, - 268,134,2,1899,1901,1,0,0,0,1900,1881,1,0,0,0,1900,1884,1,0,0,0, - 1900,1887,1,0,0,0,1900,1890,1,0,0,0,1900,1893,1,0,0,0,1900,1896, - 1,0,0,0,1901,1904,1,0,0,0,1902,1900,1,0,0,0,1902,1903,1,0,0,0,1903, - 269,1,0,0,0,1904,1902,1,0,0,0,1905,1925,3,380,190,0,1906,1925,3, - 278,139,0,1907,1908,3,280,140,0,1908,1920,5,517,0,0,1909,1911,3, - 372,186,0,1910,1909,1,0,0,0,1910,1911,1,0,0,0,1911,1912,1,0,0,0, - 1912,1917,3,282,141,0,1913,1914,5,521,0,0,1914,1916,3,282,141,0, - 1915,1913,1,0,0,0,1916,1919,1,0,0,0,1917,1915,1,0,0,0,1917,1918, - 1,0,0,0,1918,1921,1,0,0,0,1919,1917,1,0,0,0,1920,1910,1,0,0,0,1920, - 1921,1,0,0,0,1921,1922,1,0,0,0,1922,1923,5,518,0,0,1923,1925,1,0, - 0,0,1924,1905,1,0,0,0,1924,1906,1,0,0,0,1924,1907,1,0,0,0,1925,271, - 1,0,0,0,1926,1927,6,136,-1,0,1927,1929,5,40,0,0,1928,1930,3,318, - 159,0,1929,1928,1,0,0,0,1930,1931,1,0,0,0,1931,1929,1,0,0,0,1931, - 1932,1,0,0,0,1932,1935,1,0,0,0,1933,1934,5,120,0,0,1934,1936,3,260, - 130,0,1935,1933,1,0,0,0,1935,1936,1,0,0,0,1936,1937,1,0,0,0,1937, - 1938,5,122,0,0,1938,2002,1,0,0,0,1939,1940,5,40,0,0,1940,1942,3, - 260,130,0,1941,1943,3,318,159,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,1948,1,0,0,0,1946,1947, - 5,120,0,0,1947,1949,3,260,130,0,1948,1946,1,0,0,0,1948,1949,1,0, - 0,0,1949,1950,1,0,0,0,1950,1951,5,122,0,0,1951,2002,1,0,0,0,1952, - 1953,5,41,0,0,1953,1954,5,517,0,0,1954,1955,3,260,130,0,1955,1956, - 5,17,0,0,1956,1957,3,58,29,0,1957,1958,5,518,0,0,1958,2002,1,0,0, - 0,1959,1960,5,458,0,0,1960,1961,5,517,0,0,1961,1964,3,260,130,0, - 1962,1963,5,462,0,0,1963,1965,5,477,0,0,1964,1962,1,0,0,0,1964,1965, - 1,0,0,0,1965,1966,1,0,0,0,1966,1967,5,518,0,0,1967,2002,1,0,0,0, - 1968,1969,5,468,0,0,1969,1970,5,517,0,0,1970,1973,3,260,130,0,1971, - 1972,5,462,0,0,1972,1974,5,477,0,0,1973,1971,1,0,0,0,1973,1974,1, - 0,0,0,1974,1975,1,0,0,0,1975,1976,5,518,0,0,1976,2002,1,0,0,0,1977, - 1978,5,282,0,0,1978,1979,5,517,0,0,1979,1980,3,268,134,0,1980,1981, - 5,170,0,0,1981,1982,3,268,134,0,1982,1983,5,518,0,0,1983,2002,1, - 0,0,0,1984,2002,3,362,181,0,1985,2002,5,528,0,0,1986,1987,3,336, - 168,0,1987,1988,5,514,0,0,1988,1989,5,528,0,0,1989,2002,1,0,0,0, - 1990,1991,5,517,0,0,1991,1992,3,160,80,0,1992,1993,5,518,0,0,1993, - 2002,1,0,0,0,1994,2002,3,270,135,0,1995,2002,3,54,27,0,1996,2002, - 3,284,142,0,1997,1998,5,517,0,0,1998,1999,3,260,130,0,1999,2000, - 5,518,0,0,2000,2002,1,0,0,0,2001,1926,1,0,0,0,2001,1939,1,0,0,0, - 2001,1952,1,0,0,0,2001,1959,1,0,0,0,2001,1968,1,0,0,0,2001,1977, - 1,0,0,0,2001,1984,1,0,0,0,2001,1985,1,0,0,0,2001,1986,1,0,0,0,2001, - 1990,1,0,0,0,2001,1994,1,0,0,0,2001,1995,1,0,0,0,2001,1996,1,0,0, - 0,2001,1997,1,0,0,0,2002,2010,1,0,0,0,2003,2004,10,4,0,0,2004,2005, - 5,515,0,0,2005,2006,3,268,134,0,2006,2007,5,516,0,0,2007,2009,1, - 0,0,0,2008,2003,1,0,0,0,2009,2012,1,0,0,0,2010,2008,1,0,0,0,2010, - 2011,1,0,0,0,2011,273,1,0,0,0,2012,2010,1,0,0,0,2013,2014,3,336, - 168,0,2014,275,1,0,0,0,2015,2020,3,384,192,0,2016,2020,3,380,190, - 0,2017,2020,3,382,191,0,2018,2020,3,336,168,0,2019,2015,1,0,0,0, - 2019,2016,1,0,0,0,2019,2017,1,0,0,0,2019,2018,1,0,0,0,2020,277,1, - 0,0,0,2021,2022,3,382,191,0,2022,2023,5,538,0,0,2023,2026,1,0,0, - 0,2024,2026,3,290,145,0,2025,2021,1,0,0,0,2025,2024,1,0,0,0,2026, - 279,1,0,0,0,2027,2030,3,384,192,0,2028,2030,3,336,168,0,2029,2027, - 1,0,0,0,2029,2028,1,0,0,0,2030,281,1,0,0,0,2031,2036,3,378,189,0, - 2032,2036,3,376,188,0,2033,2036,3,374,187,0,2034,2036,3,260,130, - 0,2035,2031,1,0,0,0,2035,2032,1,0,0,0,2035,2033,1,0,0,0,2035,2034, - 1,0,0,0,2036,283,1,0,0,0,2037,2038,3,336,168,0,2038,285,1,0,0,0, - 2039,2040,3,312,156,0,2040,287,1,0,0,0,2041,2044,3,312,156,0,2042, - 2044,3,284,142,0,2043,2041,1,0,0,0,2043,2042,1,0,0,0,2044,289,1, - 0,0,0,2045,2048,5,182,0,0,2046,2049,3,292,146,0,2047,2049,3,296, - 148,0,2048,2046,1,0,0,0,2048,2047,1,0,0,0,2048,2049,1,0,0,0,2049, - 291,1,0,0,0,2050,2052,3,294,147,0,2051,2053,3,298,149,0,2052,2051, - 1,0,0,0,2052,2053,1,0,0,0,2053,293,1,0,0,0,2054,2055,3,300,150,0, - 2055,2056,3,376,188,0,2056,2058,1,0,0,0,2057,2054,1,0,0,0,2058,2059, - 1,0,0,0,2059,2057,1,0,0,0,2059,2060,1,0,0,0,2060,295,1,0,0,0,2061, - 2064,3,298,149,0,2062,2065,3,294,147,0,2063,2065,3,298,149,0,2064, - 2062,1,0,0,0,2064,2063,1,0,0,0,2064,2065,1,0,0,0,2065,297,1,0,0, - 0,2066,2067,3,300,150,0,2067,2068,3,376,188,0,2068,2069,5,389,0, - 0,2069,2070,3,376,188,0,2070,299,1,0,0,0,2071,2073,7,33,0,0,2072, - 2071,1,0,0,0,2072,2073,1,0,0,0,2073,2074,1,0,0,0,2074,2077,7,34, - 0,0,2075,2077,5,538,0,0,2076,2072,1,0,0,0,2076,2075,1,0,0,0,2077, - 301,1,0,0,0,2078,2080,5,17,0,0,2079,2078,1,0,0,0,2079,2080,1,0,0, - 0,2080,2081,1,0,0,0,2081,2083,3,312,156,0,2082,2084,3,308,154,0, - 2083,2082,1,0,0,0,2083,2084,1,0,0,0,2084,303,1,0,0,0,2085,2086,3, - 312,156,0,2086,2087,3,306,153,0,2087,305,1,0,0,0,2088,2089,5,222, - 0,0,2089,2091,3,312,156,0,2090,2088,1,0,0,0,2091,2092,1,0,0,0,2092, - 2090,1,0,0,0,2092,2093,1,0,0,0,2093,2096,1,0,0,0,2094,2096,1,0,0, - 0,2095,2090,1,0,0,0,2095,2094,1,0,0,0,2096,307,1,0,0,0,2097,2098, - 5,517,0,0,2098,2099,3,310,155,0,2099,2100,5,518,0,0,2100,309,1,0, - 0,0,2101,2106,3,312,156,0,2102,2103,5,521,0,0,2103,2105,3,312,156, - 0,2104,2102,1,0,0,0,2105,2108,1,0,0,0,2106,2104,1,0,0,0,2106,2107, - 1,0,0,0,2107,311,1,0,0,0,2108,2106,1,0,0,0,2109,2113,3,314,157,0, - 2110,2113,3,316,158,0,2111,2113,3,386,193,0,2112,2109,1,0,0,0,2112, - 2110,1,0,0,0,2112,2111,1,0,0,0,2113,313,1,0,0,0,2114,2115,7,35,0, - 0,2115,315,1,0,0,0,2116,2117,5,538,0,0,2117,317,1,0,0,0,2118,2119, - 5,429,0,0,2119,2120,3,260,130,0,2120,2121,5,377,0,0,2121,2122,3, - 260,130,0,2122,319,1,0,0,0,2123,2124,3,312,156,0,2124,321,1,0,0, - 0,2125,2126,3,312,156,0,2126,323,1,0,0,0,2127,2130,3,312,156,0,2128, - 2129,5,514,0,0,2129,2131,3,312,156,0,2130,2128,1,0,0,0,2130,2131, - 1,0,0,0,2131,325,1,0,0,0,2132,2135,3,312,156,0,2133,2134,5,514,0, - 0,2134,2136,3,312,156,0,2135,2133,1,0,0,0,2135,2136,1,0,0,0,2136, - 327,1,0,0,0,2137,2140,3,312,156,0,2138,2139,5,514,0,0,2139,2141, - 3,312,156,0,2140,2138,1,0,0,0,2140,2141,1,0,0,0,2141,2150,1,0,0, - 0,2142,2143,3,312,156,0,2143,2144,5,514,0,0,2144,2147,3,312,156, - 0,2145,2146,5,514,0,0,2146,2148,3,312,156,0,2147,2145,1,0,0,0,2147, - 2148,1,0,0,0,2148,2150,1,0,0,0,2149,2137,1,0,0,0,2149,2142,1,0,0, - 0,2150,329,1,0,0,0,2151,2154,3,312,156,0,2152,2153,5,514,0,0,2153, - 2155,3,312,156,0,2154,2152,1,0,0,0,2154,2155,1,0,0,0,2155,2164,1, - 0,0,0,2156,2157,3,312,156,0,2157,2158,5,514,0,0,2158,2161,3,312, - 156,0,2159,2160,5,514,0,0,2160,2162,3,312,156,0,2161,2159,1,0,0, - 0,2161,2162,1,0,0,0,2162,2164,1,0,0,0,2163,2151,1,0,0,0,2163,2156, - 1,0,0,0,2164,331,1,0,0,0,2165,2168,3,312,156,0,2166,2167,5,514,0, - 0,2167,2169,3,312,156,0,2168,2166,1,0,0,0,2168,2169,1,0,0,0,2169, - 2178,1,0,0,0,2170,2171,3,312,156,0,2171,2172,5,514,0,0,2172,2175, - 3,312,156,0,2173,2174,5,514,0,0,2174,2176,3,312,156,0,2175,2173, - 1,0,0,0,2175,2176,1,0,0,0,2176,2178,1,0,0,0,2177,2165,1,0,0,0,2177, - 2170,1,0,0,0,2178,333,1,0,0,0,2179,2182,3,312,156,0,2180,2181,5, - 514,0,0,2181,2183,3,312,156,0,2182,2180,1,0,0,0,2182,2183,1,0,0, - 0,2183,2192,1,0,0,0,2184,2185,3,312,156,0,2185,2186,5,514,0,0,2186, - 2189,3,312,156,0,2187,2188,5,514,0,0,2188,2190,3,312,156,0,2189, - 2187,1,0,0,0,2189,2190,1,0,0,0,2190,2192,1,0,0,0,2191,2179,1,0,0, - 0,2191,2184,1,0,0,0,2192,335,1,0,0,0,2193,2198,3,312,156,0,2194, - 2195,5,514,0,0,2195,2197,3,312,156,0,2196,2194,1,0,0,0,2197,2200, - 1,0,0,0,2198,2199,1,0,0,0,2198,2196,1,0,0,0,2199,337,1,0,0,0,2200, - 2198,1,0,0,0,2201,2202,5,434,0,0,2202,2203,3,344,172,0,2203,339, - 1,0,0,0,2204,2205,5,167,0,0,2205,2206,5,242,0,0,2206,2207,5,133, - 0,0,2207,341,1,0,0,0,2208,2209,5,167,0,0,2209,2210,5,133,0,0,2210, - 343,1,0,0,0,2211,2212,5,517,0,0,2212,2217,3,346,173,0,2213,2214, - 5,521,0,0,2214,2216,3,346,173,0,2215,2213,1,0,0,0,2216,2219,1,0, - 0,0,2217,2215,1,0,0,0,2217,2218,1,0,0,0,2218,2220,1,0,0,0,2219,2217, - 1,0,0,0,2220,2221,5,518,0,0,2221,345,1,0,0,0,2222,2227,3,348,174, - 0,2223,2225,5,506,0,0,2224,2223,1,0,0,0,2224,2225,1,0,0,0,2225,2226, - 1,0,0,0,2226,2228,3,350,175,0,2227,2224,1,0,0,0,2227,2228,1,0,0, - 0,2228,347,1,0,0,0,2229,2233,3,312,156,0,2230,2233,3,284,142,0,2231, - 2233,5,538,0,0,2232,2229,1,0,0,0,2232,2230,1,0,0,0,2232,2231,1,0, - 0,0,2233,349,1,0,0,0,2234,2239,5,539,0,0,2235,2239,5,540,0,0,2236, - 2239,3,370,185,0,2237,2239,5,538,0,0,2238,2234,1,0,0,0,2238,2235, - 1,0,0,0,2238,2236,1,0,0,0,2238,2237,1,0,0,0,2239,351,1,0,0,0,2240, - 2247,5,10,0,0,2241,2242,5,512,0,0,2242,2247,5,512,0,0,2243,2247, - 5,258,0,0,2244,2245,5,511,0,0,2245,2247,5,511,0,0,2246,2240,1,0, - 0,0,2246,2241,1,0,0,0,2246,2243,1,0,0,0,2246,2244,1,0,0,0,2247,353, - 1,0,0,0,2248,2263,5,506,0,0,2249,2263,5,507,0,0,2250,2263,5,508, - 0,0,2251,2252,5,508,0,0,2252,2263,5,506,0,0,2253,2254,5,507,0,0, - 2254,2263,5,506,0,0,2255,2256,5,508,0,0,2256,2263,5,507,0,0,2257, - 2258,5,509,0,0,2258,2263,5,506,0,0,2259,2260,5,508,0,0,2260,2261, - 5,506,0,0,2261,2263,5,507,0,0,2262,2248,1,0,0,0,2262,2249,1,0,0, - 0,2262,2250,1,0,0,0,2262,2251,1,0,0,0,2262,2253,1,0,0,0,2262,2255, - 1,0,0,0,2262,2257,1,0,0,0,2262,2259,1,0,0,0,2263,355,1,0,0,0,2264, - 2265,5,508,0,0,2265,2272,5,508,0,0,2266,2267,5,507,0,0,2267,2272, - 5,507,0,0,2268,2272,5,512,0,0,2269,2272,5,513,0,0,2270,2272,5,511, - 0,0,2271,2264,1,0,0,0,2271,2266,1,0,0,0,2271,2268,1,0,0,0,2271,2269, - 1,0,0,0,2271,2270,1,0,0,0,2272,357,1,0,0,0,2273,2274,7,36,0,0,2274, - 359,1,0,0,0,2275,2276,7,37,0,0,2276,361,1,0,0,0,2277,2292,3,290, - 145,0,2278,2292,3,364,182,0,2279,2292,3,366,183,0,2280,2282,5,530, - 0,0,2281,2280,1,0,0,0,2281,2282,1,0,0,0,2282,2283,1,0,0,0,2283,2292, - 3,368,184,0,2284,2292,3,370,185,0,2285,2292,5,540,0,0,2286,2292, - 5,541,0,0,2287,2289,5,242,0,0,2288,2287,1,0,0,0,2288,2289,1,0,0, - 0,2289,2290,1,0,0,0,2290,2292,5,245,0,0,2291,2277,1,0,0,0,2291,2278, - 1,0,0,0,2291,2279,1,0,0,0,2291,2281,1,0,0,0,2291,2284,1,0,0,0,2291, - 2285,1,0,0,0,2291,2286,1,0,0,0,2291,2288,1,0,0,0,2292,363,1,0,0, - 0,2293,2294,3,374,187,0,2294,2295,3,366,183,0,2295,365,1,0,0,0,2296, - 2297,5,538,0,0,2297,367,1,0,0,0,2298,2299,5,539,0,0,2299,369,1,0, - 0,0,2300,2301,7,38,0,0,2301,371,1,0,0,0,2302,2303,7,39,0,0,2303, - 373,1,0,0,0,2304,2305,7,40,0,0,2305,375,1,0,0,0,2306,2307,7,41,0, - 0,2307,377,1,0,0,0,2308,2309,7,42,0,0,2309,379,1,0,0,0,2310,2311, - 7,43,0,0,2311,381,1,0,0,0,2312,2313,7,44,0,0,2313,383,1,0,0,0,2314, - 2315,7,45,0,0,2315,385,1,0,0,0,2316,2317,7,46,0,0,2317,387,1,0,0, - 0,274,391,398,401,415,433,437,446,451,458,469,478,490,493,500,503, - 511,515,520,523,530,538,542,554,562,566,598,601,606,610,614,618, - 627,632,636,640,645,648,652,657,663,668,673,677,681,685,695,703, - 707,711,715,719,723,727,731,735,737,747,755,779,793,798,802,808, - 811,814,821,824,833,845,869,881,886,890,898,902,908,918,923,929, - 933,937,941,950,954,961,964,974,982,990,994,1009,1028,1039,1043, - 1050,1055,1061,1065,1072,1076,1080,1084,1092,1096,1101,1107,1113, - 1116,1120,1131,1140,1147,1158,1170,1185,1188,1192,1195,1197,1202, - 1206,1209,1213,1222,1231,1241,1246,1257,1260,1263,1266,1269,1275, - 1279,1287,1290,1295,1298,1302,1305,1307,1321,1332,1337,1345,1348, - 1351,1356,1358,1360,1365,1368,1372,1376,1385,1396,1423,1445,1458, - 1470,1483,1495,1507,1513,1540,1548,1552,1555,1558,1565,1568,1571, - 1574,1577,1580,1585,1588,1597,1602,1606,1611,1617,1622,1626,1645, - 1653,1661,1665,1669,1679,1705,1713,1725,1747,1749,1760,1763,1765, - 1769,1773,1780,1789,1795,1808,1815,1820,1826,1833,1840,1842,1845, - 1857,1862,1865,1871,1873,1879,1900,1902,1910,1917,1920,1924,1931, - 1935,1944,1948,1964,1973,2001,2010,2019,2025,2029,2035,2043,2048, - 2052,2059,2064,2072,2076,2079,2083,2092,2095,2106,2112,2130,2135, - 2140,2147,2149,2154,2161,2163,2168,2175,2177,2182,2189,2191,2198, - 2217,2224,2227,2232,2238,2246,2262,2271,2281,2288,2291 + 1,134,1,134,1,134,3,134,1775,8,134,1,135,1,135,1,135,1,135,5,135, + 1781,8,135,10,135,12,135,1784,9,135,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,3,136,1795,8,136,1,137,1,137,1,137,1,137, + 1,137,1,138,1,138,1,138,1,139,1,139,1,140,1,140,1,140,1,140,1,140, + 1,140,1,140,1,140,1,140,1,140,3,140,1817,8,140,3,140,1819,8,140, + 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,3,140,1830, + 8,140,1,140,5,140,1833,8,140,10,140,12,140,1836,9,140,1,141,3,141, + 1839,8,141,1,141,1,141,3,141,1843,8,141,1,141,1,141,1,141,1,141, + 1,141,3,141,1850,8,141,1,141,1,141,1,141,1,141,1,141,5,141,1857, + 8,141,10,141,12,141,1860,9,141,1,141,1,141,1,141,3,141,1865,8,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 3,141,1878,8,141,1,141,1,141,1,141,1,141,1,141,3,141,1885,8,141, + 1,141,1,141,1,141,3,141,1890,8,141,1,141,1,141,1,141,1,141,3,141, + 1896,8,141,1,141,1,141,1,141,1,141,1,141,3,141,1903,8,141,1,141, + 1,141,1,141,1,141,1,141,3,141,1910,8,141,3,141,1912,8,141,1,142, + 3,142,1915,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 5,142,1925,8,142,10,142,12,142,1928,9,142,1,142,1,142,3,142,1932, + 8,142,1,142,3,142,1935,8,142,1,142,1,142,1,142,1,142,3,142,1941, + 8,142,3,142,1943,8,142,1,143,1,143,1,143,1,143,3,143,1949,8,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,5,143,1970,8,143, + 10,143,12,143,1973,9,143,1,144,1,144,1,144,1,144,1,144,3,144,1980, + 8,144,1,144,1,144,1,144,5,144,1985,8,144,10,144,12,144,1988,9,144, + 3,144,1990,8,144,1,144,1,144,3,144,1994,8,144,1,145,1,145,1,145, + 4,145,1999,8,145,11,145,12,145,2000,1,145,1,145,3,145,2005,8,145, + 1,145,1,145,1,145,1,145,1,145,4,145,2012,8,145,11,145,12,145,2013, + 1,145,1,145,3,145,2018,8,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,2034,8,145, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,2043,8,145,1,145, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,145,1,145,1,145,3,145,2071,8,145,1,145,1,145,1,145,1,145,1,145, + 5,145,2078,8,145,10,145,12,145,2081,9,145,1,146,1,146,1,147,1,147, + 1,147,1,147,3,147,2089,8,147,1,148,1,148,1,148,1,148,3,148,2095, + 8,148,1,149,1,149,3,149,2099,8,149,1,150,1,150,1,150,1,150,3,150, + 2105,8,150,1,151,1,151,1,152,1,152,1,153,1,153,3,153,2113,8,153, + 1,154,1,154,1,154,3,154,2118,8,154,1,155,1,155,3,155,2122,8,155, + 1,156,1,156,1,156,4,156,2127,8,156,11,156,12,156,2128,1,157,1,157, + 1,157,3,157,2134,8,157,1,158,1,158,1,158,1,158,1,158,1,159,3,159, + 2142,8,159,1,159,1,159,3,159,2146,8,159,1,160,3,160,2149,8,160,1, + 160,1,160,3,160,2153,8,160,1,161,1,161,1,161,1,162,1,162,4,162,2160, + 8,162,11,162,12,162,2161,1,162,3,162,2165,8,162,1,163,1,163,1,163, + 1,163,1,164,1,164,1,164,5,164,2174,8,164,10,164,12,164,2177,9,164, + 1,165,1,165,1,165,3,165,2182,8,165,1,166,1,166,1,167,1,167,1,168, + 1,168,1,168,1,168,1,168,1,169,1,169,1,170,1,170,1,171,1,171,1,171, + 3,171,2200,8,171,1,172,1,172,1,172,3,172,2205,8,172,1,173,1,173, + 1,173,3,173,2210,8,173,1,173,1,173,1,173,1,173,1,173,3,173,2217, + 8,173,3,173,2219,8,173,1,174,1,174,1,174,3,174,2224,8,174,1,174, + 1,174,1,174,1,174,1,174,3,174,2231,8,174,3,174,2233,8,174,1,175, + 1,175,1,175,3,175,2238,8,175,1,175,1,175,1,175,1,175,1,175,3,175, + 2245,8,175,3,175,2247,8,175,1,176,1,176,1,176,3,176,2252,8,176,1, + 176,1,176,1,176,1,176,1,176,3,176,2259,8,176,3,176,2261,8,176,1, + 177,1,177,1,177,5,177,2266,8,177,10,177,12,177,2269,9,177,1,178, + 1,178,1,178,1,179,1,179,1,179,1,179,1,180,1,180,1,180,1,181,1,181, + 1,181,1,181,5,181,2285,8,181,10,181,12,181,2288,9,181,1,181,1,181, + 1,182,1,182,3,182,2294,8,182,1,182,3,182,2297,8,182,1,183,1,183, + 1,183,3,183,2302,8,183,1,184,1,184,1,184,1,184,3,184,2308,8,184, + 1,185,1,185,1,185,1,185,1,185,1,185,3,185,2316,8,185,1,186,1,186, + 1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186, + 1,186,3,186,2332,8,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187, + 3,187,2341,8,187,1,188,1,188,1,189,1,189,1,190,1,190,1,190,1,190, + 3,190,2351,8,190,1,190,1,190,1,190,1,190,1,190,3,190,2358,8,190, + 1,190,3,190,2361,8,190,1,191,1,191,1,191,1,192,1,192,1,193,1,193, + 1,194,1,194,1,195,1,195,1,196,1,196,1,197,1,197,1,198,1,198,1,199, + 1,199,1,200,1,200,1,201,1,201,1,202,1,202,1,202,0,5,160,194,280, + 286,290,203,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, + 120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150, + 152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182, + 184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214, + 216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246, + 248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278, + 280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310, + 312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342, + 344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374, + 376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,0,47, + 2,0,109,109,451,451,3,0,45,45,128,128,189,189,4,0,42,42,90,90,423, + 423,465,465,2,0,442,442,448,448,2,0,151,151,170,170,2,0,438,438, + 490,490,2,0,483,486,488,488,3,0,32,32,91,91,245,245,11,0,28,29,35, + 35,46,46,92,92,178,179,345,345,361,361,379,379,382,382,388,388,417, + 418,2,0,434,434,436,436,4,0,101,102,115,115,144,144,247,247,2,0, + 13,13,232,232,2,0,456,456,463,463,3,0,5,5,271,271,445,445,3,0,267, + 267,456,456,463,463,3,0,426,426,459,459,478,478,3,0,331,331,466, + 466,482,482,2,0,441,441,491,491,2,0,183,183,266,266,3,0,130,130, + 180,180,403,403,4,0,152,152,174,174,202,202,318,318,3,0,446,446, + 460,460,500,500,4,0,251,251,447,447,495,497,499,499,2,0,74,74,321, + 321,3,0,460,460,493,493,500,500,2,0,440,440,451,451,2,0,458,458, + 468,468,4,0,140,140,245,245,398,398,405,405,2,0,19,19,370,370,2, + 0,5,5,11,11,2,0,510,510,530,531,4,0,453,453,528,528,532,532,535, + 535,2,0,530,531,533,533,1,0,530,531,1,0,539,540,2,0,539,539,542, + 542,4,0,453,453,528,528,530,532,534,535,3,0,242,242,509,510,530, + 531,2,0,140,140,398,398,2,0,5,5,113,113,10,0,97,97,165,165,223,223, + 230,230,335,335,437,437,471,471,473,473,489,489,503,503,15,0,97, + 97,165,165,223,223,230,230,335,335,428,428,437,437,443,443,449,450, + 455,455,461,461,471,476,489,489,492,492,503,504,11,0,5,5,13,13,33, + 33,78,78,84,85,113,113,201,201,208,209,390,390,414,414,528,528,3, + 0,78,78,84,85,208,209,2,0,91,91,379,380,53,0,4,4,13,13,23,23,38, + 38,41,41,43,44,54,54,56,56,69,69,75,75,98,99,107,107,119,119,134, + 134,139,139,143,143,145,145,160,160,165,165,167,167,187,188,190, + 195,198,198,200,200,202,202,206,206,210,210,215,215,221,221,223, + 224,230,230,244,244,246,246,265,265,277,277,282,282,284,284,294, + 294,318,318,322,324,335,335,358,359,365,365,368,368,381,381,396, + 396,399,400,409,409,420,421,437,437,470,470,489,489,503,503,1,0, + 438,505,2597,0,409,1,0,0,0,2,419,1,0,0,0,4,433,1,0,0,0,6,435,1,0, + 0,0,8,451,1,0,0,0,10,455,1,0,0,0,12,457,1,0,0,0,14,460,1,0,0,0,16, + 471,1,0,0,0,18,479,1,0,0,0,20,487,1,0,0,0,22,489,1,0,0,0,24,541, + 1,0,0,0,26,543,1,0,0,0,28,550,1,0,0,0,30,554,1,0,0,0,32,558,1,0, + 0,0,34,562,1,0,0,0,36,616,1,0,0,0,38,622,1,0,0,0,40,628,1,0,0,0, + 42,630,1,0,0,0,44,672,1,0,0,0,46,686,1,0,0,0,48,688,1,0,0,0,50,699, + 1,0,0,0,52,703,1,0,0,0,54,705,1,0,0,0,56,707,1,0,0,0,58,755,1,0, + 0,0,60,757,1,0,0,0,62,761,1,0,0,0,64,769,1,0,0,0,66,777,1,0,0,0, + 68,781,1,0,0,0,70,816,1,0,0,0,72,832,1,0,0,0,74,834,1,0,0,0,76,844, + 1,0,0,0,78,846,1,0,0,0,80,853,1,0,0,0,82,855,1,0,0,0,84,863,1,0, + 0,0,86,871,1,0,0,0,88,873,1,0,0,0,90,877,1,0,0,0,92,881,1,0,0,0, + 94,904,1,0,0,0,96,908,1,0,0,0,98,910,1,0,0,0,100,926,1,0,0,0,102, + 928,1,0,0,0,104,933,1,0,0,0,106,945,1,0,0,0,108,964,1,0,0,0,110, + 984,1,0,0,0,112,995,1,0,0,0,114,997,1,0,0,0,116,1010,1,0,0,0,118, + 1017,1,0,0,0,120,1020,1,0,0,0,122,1029,1,0,0,0,124,1033,1,0,0,0, + 126,1037,1,0,0,0,128,1040,1,0,0,0,130,1048,1,0,0,0,132,1053,1,0, + 0,0,134,1070,1,0,0,0,136,1077,1,0,0,0,138,1087,1,0,0,0,140,1096, + 1,0,0,0,142,1106,1,0,0,0,144,1125,1,0,0,0,146,1127,1,0,0,0,148,1140, + 1,0,0,0,150,1143,1,0,0,0,152,1152,1,0,0,0,154,1165,1,0,0,0,156,1167, + 1,0,0,0,158,1180,1,0,0,0,160,1215,1,0,0,0,162,1234,1,0,0,0,164,1243, + 1,0,0,0,166,1252,1,0,0,0,168,1271,1,0,0,0,170,1293,1,0,0,0,172,1295, + 1,0,0,0,174,1301,1,0,0,0,176,1330,1,0,0,0,178,1332,1,0,0,0,180,1334, + 1,0,0,0,182,1336,1,0,0,0,184,1339,1,0,0,0,186,1358,1,0,0,0,188,1370, + 1,0,0,0,190,1386,1,0,0,0,192,1388,1,0,0,0,194,1402,1,0,0,0,196,1428, + 1,0,0,0,198,1445,1,0,0,0,200,1447,1,0,0,0,202,1465,1,0,0,0,204,1467, + 1,0,0,0,206,1473,1,0,0,0,208,1475,1,0,0,0,210,1480,1,0,0,0,212,1485, + 1,0,0,0,214,1497,1,0,0,0,216,1514,1,0,0,0,218,1516,1,0,0,0,220,1518, + 1,0,0,0,222,1527,1,0,0,0,224,1529,1,0,0,0,226,1532,1,0,0,0,228,1582, + 1,0,0,0,230,1584,1,0,0,0,232,1587,1,0,0,0,234,1589,1,0,0,0,236,1596, + 1,0,0,0,238,1598,1,0,0,0,240,1600,1,0,0,0,242,1603,1,0,0,0,244,1612, + 1,0,0,0,246,1617,1,0,0,0,248,1631,1,0,0,0,250,1659,1,0,0,0,252,1669, + 1,0,0,0,254,1677,1,0,0,0,256,1682,1,0,0,0,258,1714,1,0,0,0,260,1716, + 1,0,0,0,262,1725,1,0,0,0,264,1736,1,0,0,0,266,1748,1,0,0,0,268,1774, + 1,0,0,0,270,1776,1,0,0,0,272,1794,1,0,0,0,274,1796,1,0,0,0,276,1801, + 1,0,0,0,278,1804,1,0,0,0,280,1818,1,0,0,0,282,1911,1,0,0,0,284,1942, + 1,0,0,0,286,1948,1,0,0,0,288,1993,1,0,0,0,290,2070,1,0,0,0,292,2082, + 1,0,0,0,294,2088,1,0,0,0,296,2094,1,0,0,0,298,2098,1,0,0,0,300,2104, + 1,0,0,0,302,2106,1,0,0,0,304,2108,1,0,0,0,306,2112,1,0,0,0,308,2114, + 1,0,0,0,310,2119,1,0,0,0,312,2126,1,0,0,0,314,2130,1,0,0,0,316,2135, + 1,0,0,0,318,2145,1,0,0,0,320,2148,1,0,0,0,322,2154,1,0,0,0,324,2164, + 1,0,0,0,326,2166,1,0,0,0,328,2170,1,0,0,0,330,2181,1,0,0,0,332,2183, + 1,0,0,0,334,2185,1,0,0,0,336,2187,1,0,0,0,338,2192,1,0,0,0,340,2194, + 1,0,0,0,342,2196,1,0,0,0,344,2201,1,0,0,0,346,2218,1,0,0,0,348,2232, + 1,0,0,0,350,2246,1,0,0,0,352,2260,1,0,0,0,354,2262,1,0,0,0,356,2270, + 1,0,0,0,358,2273,1,0,0,0,360,2277,1,0,0,0,362,2280,1,0,0,0,364,2291, + 1,0,0,0,366,2301,1,0,0,0,368,2307,1,0,0,0,370,2315,1,0,0,0,372,2331, + 1,0,0,0,374,2340,1,0,0,0,376,2342,1,0,0,0,378,2344,1,0,0,0,380,2360, + 1,0,0,0,382,2362,1,0,0,0,384,2365,1,0,0,0,386,2367,1,0,0,0,388,2369, + 1,0,0,0,390,2371,1,0,0,0,392,2373,1,0,0,0,394,2375,1,0,0,0,396,2377, + 1,0,0,0,398,2379,1,0,0,0,400,2381,1,0,0,0,402,2383,1,0,0,0,404,2385, + 1,0,0,0,406,408,3,2,1,0,407,406,1,0,0,0,408,411,1,0,0,0,409,407, + 1,0,0,0,409,410,1,0,0,0,410,412,1,0,0,0,411,409,1,0,0,0,412,413, + 5,0,0,1,413,1,1,0,0,0,414,416,3,4,2,0,415,417,5,522,0,0,416,415, + 1,0,0,0,416,417,1,0,0,0,417,420,1,0,0,0,418,420,3,6,3,0,419,414, + 1,0,0,0,419,418,1,0,0,0,420,3,1,0,0,0,421,434,3,8,4,0,422,434,3, + 10,5,0,423,434,3,12,6,0,424,434,3,14,7,0,425,434,3,20,10,0,426,434, + 3,24,12,0,427,434,3,26,13,0,428,434,3,28,14,0,429,434,3,30,15,0, + 430,434,3,32,16,0,431,434,3,34,17,0,432,434,3,36,18,0,433,421,1, + 0,0,0,433,422,1,0,0,0,433,423,1,0,0,0,433,424,1,0,0,0,433,425,1, + 0,0,0,433,426,1,0,0,0,433,427,1,0,0,0,433,428,1,0,0,0,433,429,1, + 0,0,0,433,430,1,0,0,0,433,431,1,0,0,0,433,432,1,0,0,0,434,5,1,0, + 0,0,435,436,5,522,0,0,436,7,1,0,0,0,437,452,3,40,20,0,438,452,3, + 104,52,0,439,452,3,106,53,0,440,452,3,108,54,0,441,452,3,102,51, + 0,442,452,3,114,57,0,443,452,3,128,64,0,444,452,3,130,65,0,445,452, + 3,132,66,0,446,452,3,134,67,0,447,452,3,136,68,0,448,452,3,138,69, + 0,449,452,3,140,70,0,450,452,3,142,71,0,451,437,1,0,0,0,451,438, + 1,0,0,0,451,439,1,0,0,0,451,440,1,0,0,0,451,441,1,0,0,0,451,442, + 1,0,0,0,451,443,1,0,0,0,451,444,1,0,0,0,451,445,1,0,0,0,451,446, + 1,0,0,0,451,447,1,0,0,0,451,448,1,0,0,0,451,449,1,0,0,0,451,450, + 1,0,0,0,452,9,1,0,0,0,453,456,3,160,80,0,454,456,3,144,72,0,455, + 453,1,0,0,0,455,454,1,0,0,0,456,11,1,0,0,0,457,458,7,0,0,0,458,459, + 3,348,174,0,459,13,1,0,0,0,460,464,5,135,0,0,461,465,3,16,8,0,462, + 463,5,480,0,0,463,465,5,146,0,0,464,461,1,0,0,0,464,462,1,0,0,0, + 464,465,1,0,0,0,465,469,1,0,0,0,466,470,3,10,5,0,467,470,3,146,73, + 0,468,470,3,158,79,0,469,466,1,0,0,0,469,467,1,0,0,0,469,468,1,0, + 0,0,470,15,1,0,0,0,471,476,3,18,9,0,472,473,5,521,0,0,473,475,3, + 18,9,0,474,472,1,0,0,0,475,478,1,0,0,0,476,474,1,0,0,0,476,477,1, + 0,0,0,477,17,1,0,0,0,478,476,1,0,0,0,479,480,7,1,0,0,480,19,1,0, + 0,0,481,482,5,411,0,0,482,483,5,442,0,0,483,488,3,338,169,0,484, + 485,5,411,0,0,485,488,3,342,171,0,486,488,3,22,11,0,487,481,1,0, + 0,0,487,484,1,0,0,0,487,486,1,0,0,0,488,21,1,0,0,0,489,490,5,411, + 0,0,490,491,5,228,0,0,491,496,3,354,177,0,492,493,5,521,0,0,493, + 495,3,354,177,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,23,1,0,0,0,498,496,1,0,0,0,499,500,5,342,0,0, + 500,542,7,2,0,0,501,502,5,342,0,0,502,503,5,76,0,0,503,542,7,3,0, + 0,504,505,5,342,0,0,505,508,5,375,0,0,506,507,7,4,0,0,507,509,3, + 342,171,0,508,506,1,0,0,0,508,509,1,0,0,0,509,511,1,0,0,0,510,512, + 3,284,142,0,511,510,1,0,0,0,511,512,1,0,0,0,512,542,1,0,0,0,513, + 514,5,342,0,0,514,515,5,58,0,0,515,518,7,4,0,0,516,519,3,350,175, + 0,517,519,3,348,174,0,518,516,1,0,0,0,518,517,1,0,0,0,519,521,1, + 0,0,0,520,522,3,284,142,0,521,520,1,0,0,0,521,522,1,0,0,0,522,542, + 1,0,0,0,523,524,5,342,0,0,524,529,5,72,0,0,525,526,5,374,0,0,526, + 530,3,348,174,0,527,528,5,502,0,0,528,530,3,350,175,0,529,525,1, + 0,0,0,529,527,1,0,0,0,530,542,1,0,0,0,531,533,5,342,0,0,532,534, + 5,412,0,0,533,532,1,0,0,0,533,534,1,0,0,0,534,535,1,0,0,0,535,542, + 5,154,0,0,536,538,5,342,0,0,537,539,5,152,0,0,538,537,1,0,0,0,538, + 539,1,0,0,0,539,540,1,0,0,0,540,542,5,228,0,0,541,499,1,0,0,0,541, + 501,1,0,0,0,541,504,1,0,0,0,541,513,1,0,0,0,541,523,1,0,0,0,541, + 531,1,0,0,0,541,536,1,0,0,0,542,25,1,0,0,0,543,544,5,469,0,0,544, + 545,5,227,0,0,545,548,3,354,177,0,546,547,5,434,0,0,547,549,3,362, + 181,0,548,546,1,0,0,0,548,549,1,0,0,0,549,27,1,0,0,0,550,551,5,501, + 0,0,551,552,5,227,0,0,552,553,3,354,177,0,553,29,1,0,0,0,554,556, + 5,341,0,0,555,557,3,364,182,0,556,555,1,0,0,0,556,557,1,0,0,0,557, + 31,1,0,0,0,558,560,5,313,0,0,559,561,3,366,183,0,560,559,1,0,0,0, + 560,561,1,0,0,0,561,33,1,0,0,0,562,563,7,5,0,0,563,564,5,464,0,0, + 564,565,3,112,56,0,565,35,1,0,0,0,566,567,5,438,0,0,567,568,5,464, + 0,0,568,569,5,434,0,0,569,572,3,38,19,0,570,571,5,17,0,0,571,573, + 3,354,177,0,572,570,1,0,0,0,572,573,1,0,0,0,573,617,1,0,0,0,574, + 575,5,438,0,0,575,576,5,457,0,0,576,577,5,434,0,0,577,580,3,38,19, + 0,578,579,5,17,0,0,579,581,3,354,177,0,580,578,1,0,0,0,580,581,1, + 0,0,0,581,584,1,0,0,0,582,583,5,312,0,0,583,585,3,354,177,0,584, + 582,1,0,0,0,584,585,1,0,0,0,585,617,1,0,0,0,586,587,5,438,0,0,587, + 588,7,6,0,0,588,589,5,434,0,0,589,590,3,38,19,0,590,591,5,312,0, + 0,591,592,3,354,177,0,592,617,1,0,0,0,593,594,5,438,0,0,594,595, + 5,487,0,0,595,617,3,38,19,0,596,597,5,438,0,0,597,598,5,454,0,0, + 598,599,5,457,0,0,599,600,5,434,0,0,600,601,3,38,19,0,601,602,5, + 312,0,0,602,603,3,354,177,0,603,604,5,467,0,0,604,605,3,354,177, + 0,605,617,1,0,0,0,606,607,5,438,0,0,607,608,5,444,0,0,608,609,5, + 457,0,0,609,610,5,434,0,0,610,611,3,38,19,0,611,612,5,146,0,0,612, + 613,3,354,177,0,613,614,5,17,0,0,614,615,3,354,177,0,615,617,1,0, + 0,0,616,566,1,0,0,0,616,574,1,0,0,0,616,586,1,0,0,0,616,593,1,0, + 0,0,616,596,1,0,0,0,616,606,1,0,0,0,617,37,1,0,0,0,618,620,5,535, + 0,0,619,618,1,0,0,0,619,620,1,0,0,0,620,621,1,0,0,0,621,623,3,354, + 177,0,622,619,1,0,0,0,623,624,1,0,0,0,624,622,1,0,0,0,624,625,1, + 0,0,0,625,39,1,0,0,0,626,629,3,42,21,0,627,629,3,44,22,0,628,626, + 1,0,0,0,628,627,1,0,0,0,629,41,1,0,0,0,630,632,5,72,0,0,631,633, + 5,498,0,0,632,631,1,0,0,0,632,633,1,0,0,0,633,634,1,0,0,0,634,636, + 5,374,0,0,635,637,3,358,179,0,636,635,1,0,0,0,636,637,1,0,0,0,637, + 638,1,0,0,0,638,639,3,346,173,0,639,640,5,517,0,0,640,645,3,46,23, + 0,641,642,5,521,0,0,642,644,3,46,23,0,643,641,1,0,0,0,644,647,1, + 0,0,0,645,643,1,0,0,0,645,646,1,0,0,0,646,650,1,0,0,0,647,645,1, + 0,0,0,648,649,5,521,0,0,649,651,3,82,41,0,650,648,1,0,0,0,650,651, + 1,0,0,0,651,654,1,0,0,0,652,653,5,521,0,0,653,655,3,84,42,0,654, + 652,1,0,0,0,654,655,1,0,0,0,655,658,1,0,0,0,656,657,5,521,0,0,657, + 659,3,88,44,0,658,656,1,0,0,0,658,659,1,0,0,0,659,660,1,0,0,0,660, + 663,5,518,0,0,661,662,5,59,0,0,662,664,5,538,0,0,663,661,1,0,0,0, + 663,664,1,0,0,0,664,666,1,0,0,0,665,667,3,90,45,0,666,665,1,0,0, + 0,666,667,1,0,0,0,667,668,1,0,0,0,668,670,3,356,178,0,669,671,3, + 98,49,0,670,669,1,0,0,0,670,671,1,0,0,0,671,43,1,0,0,0,672,673,5, + 72,0,0,673,675,5,374,0,0,674,676,3,358,179,0,675,674,1,0,0,0,675, + 676,1,0,0,0,676,677,1,0,0,0,677,678,3,346,173,0,678,681,3,356,178, + 0,679,680,5,17,0,0,680,682,3,160,80,0,681,679,1,0,0,0,681,682,1, + 0,0,0,682,45,1,0,0,0,683,687,3,48,24,0,684,687,3,74,37,0,685,687, + 3,78,39,0,686,683,1,0,0,0,686,684,1,0,0,0,686,685,1,0,0,0,687,47, + 1,0,0,0,688,689,3,50,25,0,689,691,3,58,29,0,690,692,3,72,36,0,691, + 690,1,0,0,0,691,692,1,0,0,0,692,695,1,0,0,0,693,694,5,59,0,0,694, + 696,5,538,0,0,695,693,1,0,0,0,695,696,1,0,0,0,696,49,1,0,0,0,697, + 700,3,354,177,0,698,700,3,278,139,0,699,697,1,0,0,0,699,698,1,0, + 0,0,700,51,1,0,0,0,701,704,3,354,177,0,702,704,4,26,0,0,703,701, + 1,0,0,0,703,702,1,0,0,0,704,53,1,0,0,0,705,706,3,354,177,0,706,55, + 1,0,0,0,707,708,5,517,0,0,708,713,3,52,26,0,709,710,5,521,0,0,710, + 712,3,52,26,0,711,709,1,0,0,0,712,715,1,0,0,0,713,711,1,0,0,0,713, + 714,1,0,0,0,714,716,1,0,0,0,715,713,1,0,0,0,716,717,5,518,0,0,717, + 57,1,0,0,0,718,756,7,7,0,0,719,721,7,8,0,0,720,722,3,60,30,0,721, + 720,1,0,0,0,721,722,1,0,0,0,722,756,1,0,0,0,723,725,5,380,0,0,724, + 726,3,60,30,0,725,724,1,0,0,0,725,726,1,0,0,0,726,733,1,0,0,0,727, + 729,7,9,0,0,728,730,5,207,0,0,729,728,1,0,0,0,729,730,1,0,0,0,730, + 731,1,0,0,0,731,732,5,379,0,0,732,734,5,505,0,0,733,727,1,0,0,0, + 733,734,1,0,0,0,734,756,1,0,0,0,735,737,7,10,0,0,736,738,3,62,31, + 0,737,736,1,0,0,0,737,738,1,0,0,0,738,756,1,0,0,0,739,741,7,11,0, + 0,740,742,3,66,33,0,741,740,1,0,0,0,741,742,1,0,0,0,742,756,1,0, + 0,0,743,745,5,470,0,0,744,746,3,68,34,0,745,744,1,0,0,0,745,746, + 1,0,0,0,746,756,1,0,0,0,747,749,5,322,0,0,748,750,3,70,35,0,749, + 748,1,0,0,0,749,750,1,0,0,0,750,756,1,0,0,0,751,753,5,295,0,0,752, + 754,3,64,32,0,753,752,1,0,0,0,753,754,1,0,0,0,754,756,1,0,0,0,755, + 718,1,0,0,0,755,719,1,0,0,0,755,723,1,0,0,0,755,735,1,0,0,0,755, + 739,1,0,0,0,755,743,1,0,0,0,755,747,1,0,0,0,755,751,1,0,0,0,756, + 59,1,0,0,0,757,758,5,517,0,0,758,759,3,386,193,0,759,760,5,518,0, + 0,760,61,1,0,0,0,761,762,5,517,0,0,762,765,3,386,193,0,763,764,5, + 521,0,0,764,766,3,386,193,0,765,763,1,0,0,0,765,766,1,0,0,0,766, + 767,1,0,0,0,767,768,5,518,0,0,768,63,1,0,0,0,769,770,5,517,0,0,770, + 773,3,384,192,0,771,772,5,521,0,0,772,774,3,384,192,0,773,771,1, + 0,0,0,773,774,1,0,0,0,774,775,1,0,0,0,775,776,5,518,0,0,776,65,1, + 0,0,0,777,778,5,508,0,0,778,779,3,58,29,0,779,780,5,507,0,0,780, + 67,1,0,0,0,781,782,5,508,0,0,782,783,3,58,29,0,783,784,5,521,0,0, + 784,785,3,58,29,0,785,786,1,0,0,0,786,787,5,507,0,0,787,69,1,0,0, + 0,788,789,5,508,0,0,789,790,3,52,26,0,790,797,3,58,29,0,791,792, + 5,521,0,0,792,793,3,52,26,0,793,794,3,58,29,0,794,796,1,0,0,0,795, + 791,1,0,0,0,796,799,1,0,0,0,797,795,1,0,0,0,797,798,1,0,0,0,798, + 800,1,0,0,0,799,797,1,0,0,0,800,801,5,507,0,0,801,817,1,0,0,0,802, + 803,5,517,0,0,803,804,3,52,26,0,804,811,3,58,29,0,805,806,5,521, + 0,0,806,807,3,52,26,0,807,808,3,58,29,0,808,810,1,0,0,0,809,805, + 1,0,0,0,810,813,1,0,0,0,811,809,1,0,0,0,811,812,1,0,0,0,812,814, + 1,0,0,0,813,811,1,0,0,0,814,815,5,518,0,0,815,817,1,0,0,0,816,788, + 1,0,0,0,816,802,1,0,0,0,817,71,1,0,0,0,818,819,5,64,0,0,819,821, + 3,86,43,0,820,818,1,0,0,0,820,821,1,0,0,0,821,822,1,0,0,0,822,823, + 5,289,0,0,823,826,5,467,0,0,824,825,5,242,0,0,825,827,5,125,0,0, + 826,824,1,0,0,0,826,827,1,0,0,0,827,833,1,0,0,0,828,830,5,242,0, + 0,829,828,1,0,0,0,829,830,1,0,0,0,830,831,1,0,0,0,831,833,5,245, + 0,0,832,820,1,0,0,0,832,829,1,0,0,0,833,73,1,0,0,0,834,835,3,50, + 25,0,835,836,3,58,29,0,836,839,5,219,0,0,837,838,5,151,0,0,838,840, + 3,76,38,0,839,837,1,0,0,0,839,840,1,0,0,0,840,842,1,0,0,0,841,843, + 5,424,0,0,842,841,1,0,0,0,842,843,1,0,0,0,843,75,1,0,0,0,844,845, + 5,538,0,0,845,77,1,0,0,0,846,847,3,50,25,0,847,848,5,17,0,0,848, + 851,3,80,40,0,849,850,5,59,0,0,850,852,5,538,0,0,851,849,1,0,0,0, + 851,852,1,0,0,0,852,79,1,0,0,0,853,854,3,278,139,0,854,81,1,0,0, + 0,855,856,5,425,0,0,856,857,5,146,0,0,857,858,3,52,26,0,858,859, + 5,17,0,0,859,860,3,278,139,0,860,83,1,0,0,0,861,862,5,64,0,0,862, + 864,3,86,43,0,863,861,1,0,0,0,863,864,1,0,0,0,864,865,1,0,0,0,865, + 866,5,289,0,0,866,867,5,467,0,0,867,868,3,56,28,0,868,869,5,242, + 0,0,869,870,5,125,0,0,870,85,1,0,0,0,871,872,3,330,165,0,872,87, + 1,0,0,0,873,874,5,278,0,0,874,875,5,146,0,0,875,876,5,372,0,0,876, + 89,1,0,0,0,877,878,5,270,0,0,878,879,5,34,0,0,879,880,3,92,46,0, + 880,91,1,0,0,0,881,882,5,517,0,0,882,887,3,94,47,0,883,884,5,521, + 0,0,884,886,3,94,47,0,885,883,1,0,0,0,886,889,1,0,0,0,887,885,1, + 0,0,0,887,888,1,0,0,0,888,890,1,0,0,0,889,887,1,0,0,0,890,891,5, + 518,0,0,891,93,1,0,0,0,892,905,3,52,26,0,893,894,5,517,0,0,894,899, + 3,96,48,0,895,896,5,521,0,0,896,898,3,96,48,0,897,895,1,0,0,0,898, + 901,1,0,0,0,899,897,1,0,0,0,899,900,1,0,0,0,900,902,1,0,0,0,901, + 899,1,0,0,0,902,903,5,518,0,0,903,905,1,0,0,0,904,892,1,0,0,0,904, + 893,1,0,0,0,905,95,1,0,0,0,906,909,3,306,153,0,907,909,3,380,190, + 0,908,906,1,0,0,0,908,907,1,0,0,0,909,97,1,0,0,0,910,911,5,203,0, + 0,911,920,3,348,174,0,912,916,5,517,0,0,913,915,3,100,50,0,914,913, + 1,0,0,0,915,918,1,0,0,0,916,914,1,0,0,0,916,917,1,0,0,0,917,919, + 1,0,0,0,918,916,1,0,0,0,919,921,5,518,0,0,920,912,1,0,0,0,920,921, + 1,0,0,0,921,99,1,0,0,0,922,923,7,12,0,0,923,927,7,13,0,0,924,925, + 7,14,0,0,925,927,7,15,0,0,926,922,1,0,0,0,926,924,1,0,0,0,927,101, + 1,0,0,0,928,929,5,72,0,0,929,930,5,442,0,0,930,931,3,340,170,0,931, + 932,3,356,178,0,932,103,1,0,0,0,933,934,5,72,0,0,934,936,5,448,0, + 0,935,937,3,358,179,0,936,935,1,0,0,0,936,937,1,0,0,0,937,938,1, + 0,0,0,938,941,3,344,172,0,939,940,5,59,0,0,940,942,5,538,0,0,941, + 939,1,0,0,0,941,942,1,0,0,0,942,943,1,0,0,0,943,944,3,356,178,0, + 944,105,1,0,0,0,945,947,5,72,0,0,946,948,5,498,0,0,947,946,1,0,0, + 0,947,948,1,0,0,0,948,949,1,0,0,0,949,951,5,502,0,0,950,952,3,358, + 179,0,951,950,1,0,0,0,951,952,1,0,0,0,952,953,1,0,0,0,953,955,3, + 352,176,0,954,956,3,56,28,0,955,954,1,0,0,0,955,956,1,0,0,0,956, + 959,1,0,0,0,957,958,5,59,0,0,958,960,5,538,0,0,959,957,1,0,0,0,959, + 960,1,0,0,0,960,961,1,0,0,0,961,962,5,17,0,0,962,963,3,160,80,0, + 963,107,1,0,0,0,964,968,5,72,0,0,965,969,5,498,0,0,966,967,5,498, + 0,0,967,969,5,371,0,0,968,965,1,0,0,0,968,966,1,0,0,0,968,969,1, + 0,0,0,969,970,1,0,0,0,970,972,5,153,0,0,971,973,3,358,179,0,972, + 971,1,0,0,0,972,973,1,0,0,0,973,974,1,0,0,0,974,975,3,292,146,0, + 975,976,5,17,0,0,976,979,3,330,165,0,977,978,5,196,0,0,978,980,7, + 16,0,0,979,977,1,0,0,0,979,980,1,0,0,0,980,982,1,0,0,0,981,983,3, + 110,55,0,982,981,1,0,0,0,982,983,1,0,0,0,983,109,1,0,0,0,984,985, + 5,413,0,0,985,986,5,464,0,0,986,992,3,112,56,0,987,988,5,521,0,0, + 988,989,5,464,0,0,989,991,3,112,56,0,990,987,1,0,0,0,991,994,1,0, + 0,0,992,990,1,0,0,0,992,993,1,0,0,0,993,111,1,0,0,0,994,992,1,0, + 0,0,995,996,5,538,0,0,996,113,1,0,0,0,997,998,5,8,0,0,998,1000,5, + 374,0,0,999,1001,3,360,180,0,1000,999,1,0,0,0,1000,1001,1,0,0,0, + 1001,1002,1,0,0,0,1002,1008,3,348,174,0,1003,1009,3,116,58,0,1004, + 1009,3,118,59,0,1005,1009,3,120,60,0,1006,1009,3,122,61,0,1007,1009, + 3,124,62,0,1008,1003,1,0,0,0,1008,1004,1,0,0,0,1008,1005,1,0,0,0, + 1008,1006,1,0,0,0,1008,1007,1,0,0,0,1009,115,1,0,0,0,1010,1012,5, + 312,0,0,1011,1013,3,354,177,0,1012,1011,1,0,0,0,1012,1013,1,0,0, + 0,1013,1014,1,0,0,0,1014,1015,5,389,0,0,1015,1016,3,354,177,0,1016, + 117,1,0,0,0,1017,1018,5,341,0,0,1018,1019,3,362,181,0,1019,119,1, + 0,0,0,1020,1021,5,438,0,0,1021,1022,5,64,0,0,1022,1023,3,86,43,0, + 1023,1024,5,289,0,0,1024,1025,5,467,0,0,1025,1027,3,56,28,0,1026, + 1028,3,126,63,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,121,1,0, + 0,0,1029,1030,5,116,0,0,1030,1031,5,64,0,0,1031,1032,3,86,43,0,1032, + 123,1,0,0,0,1033,1034,5,438,0,0,1034,1035,5,404,0,0,1035,1036,3, + 56,28,0,1036,125,1,0,0,0,1037,1038,5,242,0,0,1038,1039,5,125,0,0, + 1039,127,1,0,0,0,1040,1041,5,8,0,0,1041,1042,5,502,0,0,1042,1046, + 3,350,175,0,1043,1047,3,116,58,0,1044,1045,5,17,0,0,1045,1047,3, + 160,80,0,1046,1043,1,0,0,0,1046,1044,1,0,0,0,1047,129,1,0,0,0,1048, + 1049,5,8,0,0,1049,1050,5,448,0,0,1050,1051,3,342,171,0,1051,1052, + 3,118,59,0,1052,131,1,0,0,0,1053,1057,5,8,0,0,1054,1058,5,498,0, + 0,1055,1056,5,498,0,0,1056,1058,5,371,0,0,1057,1054,1,0,0,0,1057, + 1055,1,0,0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1061,5,153, + 0,0,1060,1062,3,360,180,0,1061,1060,1,0,0,0,1061,1062,1,0,0,0,1062, + 1063,1,0,0,0,1063,1064,3,294,147,0,1064,1065,5,17,0,0,1065,1068, + 3,330,165,0,1066,1067,5,196,0,0,1067,1069,7,16,0,0,1068,1066,1,0, + 0,0,1068,1069,1,0,0,0,1069,133,1,0,0,0,1070,1071,5,116,0,0,1071, + 1073,5,442,0,0,1072,1074,3,360,180,0,1073,1072,1,0,0,0,1073,1074, + 1,0,0,0,1074,1075,1,0,0,0,1075,1076,3,338,169,0,1076,135,1,0,0,0, + 1077,1079,5,116,0,0,1078,1080,5,498,0,0,1079,1078,1,0,0,0,1079,1080, + 1,0,0,0,1080,1081,1,0,0,0,1081,1083,5,374,0,0,1082,1084,3,360,180, + 0,1083,1082,1,0,0,0,1083,1084,1,0,0,0,1084,1085,1,0,0,0,1085,1086, + 3,348,174,0,1086,137,1,0,0,0,1087,1088,5,116,0,0,1088,1090,5,448, + 0,0,1089,1091,3,360,180,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0,1091, + 1092,1,0,0,0,1092,1094,3,342,171,0,1093,1095,7,17,0,0,1094,1093, + 1,0,0,0,1094,1095,1,0,0,0,1095,139,1,0,0,0,1096,1098,5,116,0,0,1097, + 1099,5,498,0,0,1098,1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100,1,0, + 0,0,1100,1102,5,502,0,0,1101,1103,3,360,180,0,1102,1101,1,0,0,0, + 1102,1103,1,0,0,0,1103,1104,1,0,0,0,1104,1105,3,350,175,0,1105,141, + 1,0,0,0,1106,1110,5,116,0,0,1107,1111,5,498,0,0,1108,1109,5,498, + 0,0,1109,1111,5,371,0,0,1110,1107,1,0,0,0,1110,1108,1,0,0,0,1110, + 1111,1,0,0,0,1111,1112,1,0,0,0,1112,1114,5,153,0,0,1113,1115,3,360, + 180,0,1114,1113,1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116, + 1117,3,294,147,0,1117,143,1,0,0,0,1118,1120,5,132,0,0,1119,1118, + 1,0,0,0,1119,1120,1,0,0,0,1120,1121,1,0,0,0,1121,1126,3,146,73,0, + 1122,1126,3,156,78,0,1123,1124,5,132,0,0,1124,1126,3,158,79,0,1125, + 1119,1,0,0,0,1125,1122,1,0,0,0,1125,1123,1,0,0,0,1126,145,1,0,0, + 0,1127,1128,5,177,0,0,1128,1129,7,18,0,0,1129,1138,3,348,174,0,1130, + 1132,3,148,74,0,1131,1130,1,0,0,0,1131,1132,1,0,0,0,1132,1134,1, + 0,0,0,1133,1135,3,56,28,0,1134,1133,1,0,0,0,1134,1135,1,0,0,0,1135, + 1136,1,0,0,0,1136,1139,3,160,80,0,1137,1139,3,150,75,0,1138,1131, + 1,0,0,0,1138,1137,1,0,0,0,1139,147,1,0,0,0,1140,1141,5,269,0,0,1141, + 1142,3,362,181,0,1142,149,1,0,0,0,1143,1144,5,415,0,0,1144,1149, + 3,152,76,0,1145,1146,5,521,0,0,1146,1148,3,152,76,0,1147,1145,1, + 0,0,0,1148,1151,1,0,0,0,1149,1147,1,0,0,0,1149,1150,1,0,0,0,1150, + 151,1,0,0,0,1151,1149,1,0,0,0,1152,1153,5,517,0,0,1153,1158,3,154, + 77,0,1154,1155,5,521,0,0,1155,1157,3,154,77,0,1156,1154,1,0,0,0, + 1157,1160,1,0,0,0,1158,1156,1,0,0,0,1158,1159,1,0,0,0,1159,1161, + 1,0,0,0,1160,1158,1,0,0,0,1161,1162,5,518,0,0,1162,153,1,0,0,0,1163, + 1166,3,380,190,0,1164,1166,3,288,144,0,1165,1163,1,0,0,0,1165,1164, + 1,0,0,0,1166,155,1,0,0,0,1167,1168,5,24,0,0,1168,1169,5,355,0,0, + 1169,1170,5,341,0,0,1170,1174,5,522,0,0,1171,1172,3,146,73,0,1172, + 1173,5,522,0,0,1173,1175,1,0,0,0,1174,1171,1,0,0,0,1175,1176,1,0, + 0,0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1178,1,0,0,0,1178,1179, + 5,122,0,0,1179,157,1,0,0,0,1180,1181,5,355,0,0,1181,1182,5,341,0, + 0,1182,1186,5,24,0,0,1183,1184,3,146,73,0,1184,1185,5,522,0,0,1185, + 1187,1,0,0,0,1186,1183,1,0,0,0,1187,1188,1,0,0,0,1188,1186,1,0,0, + 0,1188,1189,1,0,0,0,1189,1190,1,0,0,0,1190,1191,5,122,0,0,1191,159, + 1,0,0,0,1192,1193,6,80,-1,0,1193,1216,3,162,81,0,1194,1195,3,164, + 82,0,1195,1196,3,160,80,5,1196,1216,1,0,0,0,1197,1198,5,517,0,0, + 1198,1199,3,160,80,0,1199,1200,5,518,0,0,1200,1216,1,0,0,0,1201, + 1203,3,172,86,0,1202,1204,3,250,125,0,1203,1202,1,0,0,0,1203,1204, + 1,0,0,0,1204,1206,1,0,0,0,1205,1207,3,254,127,0,1206,1205,1,0,0, + 0,1206,1207,1,0,0,0,1207,1216,1,0,0,0,1208,1210,3,170,85,0,1209, + 1211,3,250,125,0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1213,1, + 0,0,0,1212,1214,3,254,127,0,1213,1212,1,0,0,0,1213,1214,1,0,0,0, + 1214,1216,1,0,0,0,1215,1192,1,0,0,0,1215,1194,1,0,0,0,1215,1197, + 1,0,0,0,1215,1201,1,0,0,0,1215,1208,1,0,0,0,1216,1231,1,0,0,0,1217, + 1218,10,3,0,0,1218,1220,7,19,0,0,1219,1221,5,5,0,0,1220,1219,1,0, + 0,0,1220,1221,1,0,0,0,1221,1222,1,0,0,0,1222,1224,3,160,80,0,1223, + 1225,3,250,125,0,1224,1223,1,0,0,0,1224,1225,1,0,0,0,1225,1227,1, + 0,0,0,1226,1228,3,254,127,0,1227,1226,1,0,0,0,1227,1228,1,0,0,0, + 1228,1230,1,0,0,0,1229,1217,1,0,0,0,1230,1233,1,0,0,0,1231,1229, + 1,0,0,0,1231,1232,1,0,0,0,1232,161,1,0,0,0,1233,1231,1,0,0,0,1234, + 1235,5,415,0,0,1235,1240,3,278,139,0,1236,1237,5,521,0,0,1237,1239, + 3,278,139,0,1238,1236,1,0,0,0,1239,1242,1,0,0,0,1240,1238,1,0,0, + 0,1240,1241,1,0,0,0,1241,163,1,0,0,0,1242,1240,1,0,0,0,1243,1244, + 5,434,0,0,1244,1249,3,166,83,0,1245,1246,5,521,0,0,1246,1248,3,166, + 83,0,1247,1245,1,0,0,0,1248,1251,1,0,0,0,1249,1247,1,0,0,0,1249, + 1250,1,0,0,0,1250,165,1,0,0,0,1251,1249,1,0,0,0,1252,1264,3,168, + 84,0,1253,1254,5,517,0,0,1254,1259,3,52,26,0,1255,1256,5,521,0,0, + 1256,1258,3,52,26,0,1257,1255,1,0,0,0,1258,1261,1,0,0,0,1259,1257, + 1,0,0,0,1259,1260,1,0,0,0,1260,1262,1,0,0,0,1261,1259,1,0,0,0,1262, + 1263,5,518,0,0,1263,1265,1,0,0,0,1264,1253,1,0,0,0,1264,1265,1,0, + 0,0,1265,1266,1,0,0,0,1266,1267,5,17,0,0,1267,1268,5,517,0,0,1268, + 1269,3,160,80,0,1269,1270,5,518,0,0,1270,167,1,0,0,0,1271,1272,3, + 330,165,0,1272,169,1,0,0,0,1273,1275,3,172,86,0,1274,1276,3,192, + 96,0,1275,1274,1,0,0,0,1275,1276,1,0,0,0,1276,1278,1,0,0,0,1277, + 1279,3,224,112,0,1278,1277,1,0,0,0,1278,1279,1,0,0,0,1279,1281,1, + 0,0,0,1280,1282,3,226,113,0,1281,1280,1,0,0,0,1281,1282,1,0,0,0, + 1282,1284,1,0,0,0,1283,1285,3,240,120,0,1284,1283,1,0,0,0,1284,1285, + 1,0,0,0,1285,1287,1,0,0,0,1286,1288,3,242,121,0,1287,1286,1,0,0, + 0,1287,1288,1,0,0,0,1288,1294,1,0,0,0,1289,1290,3,172,86,0,1290, + 1291,3,192,96,0,1291,1292,3,248,124,0,1292,1294,1,0,0,0,1293,1273, + 1,0,0,0,1293,1289,1,0,0,0,1294,171,1,0,0,0,1295,1297,5,337,0,0,1296, + 1298,3,390,195,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1, + 0,0,0,1299,1300,3,174,87,0,1300,173,1,0,0,0,1301,1306,3,176,88,0, + 1302,1303,5,521,0,0,1303,1305,3,176,88,0,1304,1302,1,0,0,0,1305, + 1308,1,0,0,0,1306,1304,1,0,0,0,1306,1307,1,0,0,0,1307,175,1,0,0, + 0,1308,1306,1,0,0,0,1309,1331,3,178,89,0,1310,1316,3,182,91,0,1311, + 1317,3,184,92,0,1312,1314,5,17,0,0,1313,1312,1,0,0,0,1313,1314,1, + 0,0,0,1314,1315,1,0,0,0,1315,1317,3,278,139,0,1316,1311,1,0,0,0, + 1316,1313,1,0,0,0,1316,1317,1,0,0,0,1317,1331,1,0,0,0,1318,1320, + 3,188,94,0,1319,1321,3,184,92,0,1320,1319,1,0,0,0,1320,1321,1,0, + 0,0,1321,1331,1,0,0,0,1322,1328,3,180,90,0,1323,1329,3,184,92,0, + 1324,1326,5,17,0,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326,1327, + 1,0,0,0,1327,1329,3,52,26,0,1328,1323,1,0,0,0,1328,1325,1,0,0,0, + 1328,1329,1,0,0,0,1329,1331,1,0,0,0,1330,1309,1,0,0,0,1330,1310, + 1,0,0,0,1330,1318,1,0,0,0,1330,1322,1,0,0,0,1331,177,1,0,0,0,1332, + 1333,3,190,95,0,1333,179,1,0,0,0,1334,1335,3,278,139,0,1335,181, + 1,0,0,0,1336,1337,3,52,26,0,1337,183,1,0,0,0,1338,1340,5,17,0,0, + 1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1341,1,0,0,0,1341,1342, + 3,330,165,0,1342,185,1,0,0,0,1343,1359,3,190,95,0,1344,1349,3,278, + 139,0,1345,1347,5,17,0,0,1346,1345,1,0,0,0,1346,1347,1,0,0,0,1347, + 1348,1,0,0,0,1348,1350,3,52,26,0,1349,1346,1,0,0,0,1349,1350,1,0, + 0,0,1350,1359,1,0,0,0,1351,1356,3,52,26,0,1352,1354,5,17,0,0,1353, + 1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355,1,0,0,0,1355,1357,3,278, + 139,0,1356,1353,1,0,0,0,1356,1357,1,0,0,0,1357,1359,1,0,0,0,1358, + 1343,1,0,0,0,1358,1344,1,0,0,0,1358,1351,1,0,0,0,1359,187,1,0,0, + 0,1360,1365,3,330,165,0,1361,1362,5,514,0,0,1362,1364,3,330,165, + 0,1363,1361,1,0,0,0,1364,1367,1,0,0,0,1365,1363,1,0,0,0,1365,1366, + 1,0,0,0,1366,1368,1,0,0,0,1367,1365,1,0,0,0,1368,1369,5,514,0,0, + 1369,1371,1,0,0,0,1370,1360,1,0,0,0,1370,1371,1,0,0,0,1371,1372, + 1,0,0,0,1372,1373,5,528,0,0,1373,189,1,0,0,0,1374,1375,3,290,145, + 0,1375,1376,5,263,0,0,1376,1377,3,246,123,0,1377,1378,5,17,0,0,1378, + 1379,3,330,165,0,1379,1387,1,0,0,0,1380,1381,3,290,145,0,1381,1382, + 5,263,0,0,1382,1383,3,322,161,0,1383,1384,5,17,0,0,1384,1385,3,330, + 165,0,1385,1387,1,0,0,0,1386,1374,1,0,0,0,1386,1380,1,0,0,0,1387, + 191,1,0,0,0,1388,1389,5,151,0,0,1389,1390,3,194,97,0,1390,193,1, + 0,0,0,1391,1392,6,97,-1,0,1392,1397,3,196,98,0,1393,1394,5,521,0, + 0,1394,1396,3,196,98,0,1395,1393,1,0,0,0,1396,1399,1,0,0,0,1397, + 1395,1,0,0,0,1397,1398,1,0,0,0,1398,1403,1,0,0,0,1399,1397,1,0,0, + 0,1400,1403,3,208,104,0,1401,1403,3,210,105,0,1402,1391,1,0,0,0, + 1402,1400,1,0,0,0,1402,1401,1,0,0,0,1403,1425,1,0,0,0,1404,1405, + 10,3,0,0,1405,1406,5,73,0,0,1406,1407,5,185,0,0,1407,1424,3,194, + 97,4,1408,1410,10,4,0,0,1409,1411,5,234,0,0,1410,1409,1,0,0,0,1410, + 1411,1,0,0,0,1411,1413,1,0,0,0,1412,1414,7,20,0,0,1413,1412,1,0, + 0,0,1413,1414,1,0,0,0,1414,1416,1,0,0,0,1415,1417,5,262,0,0,1416, + 1415,1,0,0,0,1416,1417,1,0,0,0,1417,1418,1,0,0,0,1418,1419,5,185, + 0,0,1419,1421,3,194,97,0,1420,1422,3,222,111,0,1421,1420,1,0,0,0, + 1421,1422,1,0,0,0,1422,1424,1,0,0,0,1423,1404,1,0,0,0,1423,1408, + 1,0,0,0,1424,1427,1,0,0,0,1425,1423,1,0,0,0,1425,1426,1,0,0,0,1426, + 195,1,0,0,0,1427,1425,1,0,0,0,1428,1430,3,198,99,0,1429,1431,3,320, + 160,0,1430,1429,1,0,0,0,1430,1431,1,0,0,0,1431,197,1,0,0,0,1432, + 1434,5,374,0,0,1433,1432,1,0,0,0,1433,1434,1,0,0,0,1434,1435,1,0, + 0,0,1435,1437,3,348,174,0,1436,1438,3,204,102,0,1437,1436,1,0,0, + 0,1437,1438,1,0,0,0,1438,1446,1,0,0,0,1439,1441,3,350,175,0,1440, + 1442,3,204,102,0,1441,1440,1,0,0,0,1441,1442,1,0,0,0,1442,1446,1, + 0,0,0,1443,1446,3,200,100,0,1444,1446,3,202,101,0,1445,1433,1,0, + 0,0,1445,1439,1,0,0,0,1445,1443,1,0,0,0,1445,1444,1,0,0,0,1446,199, + 1,0,0,0,1447,1448,5,199,0,0,1448,1449,5,374,0,0,1449,1450,5,517, + 0,0,1450,1451,3,288,144,0,1451,1452,5,518,0,0,1452,201,1,0,0,0,1453, + 1455,5,199,0,0,1454,1453,1,0,0,0,1454,1455,1,0,0,0,1455,1456,1,0, + 0,0,1456,1457,5,517,0,0,1457,1458,3,160,80,0,1458,1459,5,518,0,0, + 1459,1466,1,0,0,0,1460,1461,5,406,0,0,1461,1462,5,517,0,0,1462,1463, + 3,278,139,0,1463,1464,5,518,0,0,1464,1466,1,0,0,0,1465,1454,1,0, + 0,0,1465,1460,1,0,0,0,1466,203,1,0,0,0,1467,1468,5,146,0,0,1468, + 1469,5,372,0,0,1469,1470,5,17,0,0,1470,1471,5,250,0,0,1471,1472, + 3,206,103,0,1472,205,1,0,0,0,1473,1474,3,278,139,0,1474,207,1,0, + 0,0,1475,1476,5,517,0,0,1476,1477,3,150,75,0,1477,1478,5,518,0,0, + 1478,1479,3,320,160,0,1479,209,1,0,0,0,1480,1481,5,374,0,0,1481, + 1482,5,517,0,0,1482,1483,3,212,106,0,1483,1484,5,518,0,0,1484,211, + 1,0,0,0,1485,1486,3,214,107,0,1486,1487,5,517,0,0,1487,1492,3,216, + 108,0,1488,1489,5,521,0,0,1489,1491,3,216,108,0,1490,1488,1,0,0, + 0,1491,1494,1,0,0,0,1492,1490,1,0,0,0,1492,1493,1,0,0,0,1493,1495, + 1,0,0,0,1494,1492,1,0,0,0,1495,1496,5,518,0,0,1496,213,1,0,0,0,1497, + 1498,7,21,0,0,1498,215,1,0,0,0,1499,1500,5,374,0,0,1500,1515,3,238, + 119,0,1501,1515,3,220,110,0,1502,1515,3,308,154,0,1503,1504,5,447, + 0,0,1504,1505,5,537,0,0,1505,1506,5,374,0,0,1506,1515,3,238,119, + 0,1507,1508,5,499,0,0,1508,1509,5,537,0,0,1509,1515,3,220,110,0, + 1510,1511,3,218,109,0,1511,1512,5,537,0,0,1512,1513,3,308,154,0, + 1513,1515,1,0,0,0,1514,1499,1,0,0,0,1514,1501,1,0,0,0,1514,1502, + 1,0,0,0,1514,1503,1,0,0,0,1514,1507,1,0,0,0,1514,1510,1,0,0,0,1515, + 217,1,0,0,0,1516,1517,7,22,0,0,1517,219,1,0,0,0,1518,1519,5,452, + 0,0,1519,1520,5,517,0,0,1520,1521,3,52,26,0,1521,1522,5,518,0,0, + 1522,221,1,0,0,0,1523,1524,5,254,0,0,1524,1528,3,280,140,0,1525, + 1526,5,413,0,0,1526,1528,3,56,28,0,1527,1523,1,0,0,0,1527,1525,1, + 0,0,0,1528,223,1,0,0,0,1529,1530,5,431,0,0,1530,1531,3,280,140,0, + 1531,225,1,0,0,0,1532,1533,5,159,0,0,1533,1534,5,34,0,0,1534,1539, + 3,228,114,0,1535,1536,5,521,0,0,1536,1538,3,228,114,0,1537,1535, + 1,0,0,0,1538,1541,1,0,0,0,1539,1537,1,0,0,0,1539,1540,1,0,0,0,1540, + 227,1,0,0,0,1541,1539,1,0,0,0,1542,1583,3,52,26,0,1543,1583,3,234, + 117,0,1544,1545,5,517,0,0,1545,1583,5,518,0,0,1546,1547,5,517,0, + 0,1547,1552,3,278,139,0,1548,1549,5,521,0,0,1549,1551,3,278,139, + 0,1550,1548,1,0,0,0,1551,1554,1,0,0,0,1552,1550,1,0,0,0,1552,1553, + 1,0,0,0,1553,1555,1,0,0,0,1554,1552,1,0,0,0,1555,1556,5,518,0,0, + 1556,1583,1,0,0,0,1557,1558,3,232,116,0,1558,1559,5,517,0,0,1559, + 1564,3,278,139,0,1560,1561,5,521,0,0,1561,1563,3,278,139,0,1562, + 1560,1,0,0,0,1563,1566,1,0,0,0,1564,1562,1,0,0,0,1564,1565,1,0,0, + 0,1565,1567,1,0,0,0,1566,1564,1,0,0,0,1567,1568,5,518,0,0,1568,1583, + 1,0,0,0,1569,1570,3,230,115,0,1570,1571,5,517,0,0,1571,1576,3,228, + 114,0,1572,1573,5,521,0,0,1573,1575,3,228,114,0,1574,1572,1,0,0, + 0,1575,1578,1,0,0,0,1576,1574,1,0,0,0,1576,1577,1,0,0,0,1577,1579, + 1,0,0,0,1578,1576,1,0,0,0,1579,1580,5,518,0,0,1580,1583,1,0,0,0, + 1581,1583,3,278,139,0,1582,1542,1,0,0,0,1582,1543,1,0,0,0,1582,1544, + 1,0,0,0,1582,1546,1,0,0,0,1582,1557,1,0,0,0,1582,1569,1,0,0,0,1582, + 1581,1,0,0,0,1583,229,1,0,0,0,1584,1585,5,160,0,0,1585,1586,5,494, + 0,0,1586,231,1,0,0,0,1587,1588,7,23,0,0,1588,233,1,0,0,0,1589,1590, + 3,236,118,0,1590,1591,5,517,0,0,1591,1592,3,238,119,0,1592,1593, + 5,521,0,0,1593,1594,3,308,154,0,1594,1595,5,518,0,0,1595,235,1,0, + 0,0,1596,1597,7,24,0,0,1597,237,1,0,0,0,1598,1599,3,354,177,0,1599, + 239,1,0,0,0,1600,1601,5,163,0,0,1601,1602,3,280,140,0,1602,241,1, + 0,0,0,1603,1604,5,433,0,0,1604,1609,3,244,122,0,1605,1606,5,521, + 0,0,1606,1608,3,244,122,0,1607,1605,1,0,0,0,1608,1611,1,0,0,0,1609, + 1607,1,0,0,0,1609,1610,1,0,0,0,1610,243,1,0,0,0,1611,1609,1,0,0, + 0,1612,1613,3,322,161,0,1613,1614,5,17,0,0,1614,1615,3,246,123,0, + 1615,245,1,0,0,0,1616,1618,3,322,161,0,1617,1616,1,0,0,0,1617,1618, + 1,0,0,0,1618,1619,1,0,0,0,1619,1621,5,517,0,0,1620,1622,3,256,128, + 0,1621,1620,1,0,0,0,1621,1622,1,0,0,0,1622,1624,1,0,0,0,1623,1625, + 3,250,125,0,1624,1623,1,0,0,0,1624,1625,1,0,0,0,1625,1627,1,0,0, + 0,1626,1628,3,272,136,0,1627,1626,1,0,0,0,1627,1628,1,0,0,0,1628, + 1629,1,0,0,0,1629,1630,5,518,0,0,1630,247,1,0,0,0,1631,1632,5,214, + 0,0,1632,1634,5,517,0,0,1633,1635,3,256,128,0,1634,1633,1,0,0,0, + 1634,1635,1,0,0,0,1635,1637,1,0,0,0,1636,1638,3,250,125,0,1637,1636, + 1,0,0,0,1637,1638,1,0,0,0,1638,1640,1,0,0,0,1639,1641,3,260,130, + 0,1640,1639,1,0,0,0,1640,1641,1,0,0,0,1641,1643,1,0,0,0,1642,1644, + 3,266,133,0,1643,1642,1,0,0,0,1643,1644,1,0,0,0,1644,1646,1,0,0, + 0,1645,1647,3,268,134,0,1646,1645,1,0,0,0,1646,1647,1,0,0,0,1647, + 1649,1,0,0,0,1648,1650,3,262,131,0,1649,1648,1,0,0,0,1649,1650,1, + 0,0,0,1650,1651,1,0,0,0,1651,1652,3,270,135,0,1652,1657,5,518,0, + 0,1653,1655,5,17,0,0,1654,1653,1,0,0,0,1654,1655,1,0,0,0,1655,1656, + 1,0,0,0,1656,1658,3,330,165,0,1657,1654,1,0,0,0,1657,1658,1,0,0, + 0,1658,249,1,0,0,0,1659,1660,5,259,0,0,1660,1661,5,34,0,0,1661,1666, + 3,252,126,0,1662,1663,5,521,0,0,1663,1665,3,252,126,0,1664,1662, + 1,0,0,0,1665,1668,1,0,0,0,1666,1664,1,0,0,0,1666,1667,1,0,0,0,1667, + 251,1,0,0,0,1668,1666,1,0,0,0,1669,1671,3,52,26,0,1670,1672,7,25, + 0,0,1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672,1675,1,0,0,0,1673,1674, + 5,477,0,0,1674,1676,7,26,0,0,1675,1673,1,0,0,0,1675,1676,1,0,0,0, + 1676,253,1,0,0,0,1677,1680,5,205,0,0,1678,1681,5,5,0,0,1679,1681, + 3,278,139,0,1680,1678,1,0,0,0,1680,1679,1,0,0,0,1681,255,1,0,0,0, + 1682,1683,5,269,0,0,1683,1686,5,34,0,0,1684,1687,3,52,26,0,1685, + 1687,3,290,145,0,1686,1684,1,0,0,0,1686,1685,1,0,0,0,1687,1695,1, + 0,0,0,1688,1691,5,521,0,0,1689,1692,3,52,26,0,1690,1692,3,290,145, + 0,1691,1689,1,0,0,0,1691,1690,1,0,0,0,1692,1694,1,0,0,0,1693,1688, + 1,0,0,0,1694,1697,1,0,0,0,1695,1693,1,0,0,0,1695,1696,1,0,0,0,1696, + 257,1,0,0,0,1697,1695,1,0,0,0,1698,1715,5,528,0,0,1699,1715,5,531, + 0,0,1700,1715,5,536,0,0,1701,1702,5,519,0,0,1702,1703,5,539,0,0, + 1703,1704,5,521,0,0,1704,1705,5,539,0,0,1705,1715,5,520,0,0,1706, + 1707,5,519,0,0,1707,1708,5,539,0,0,1708,1709,5,521,0,0,1709,1715, + 5,520,0,0,1710,1711,5,519,0,0,1711,1712,5,521,0,0,1712,1713,5,539, + 0,0,1713,1715,5,520,0,0,1714,1698,1,0,0,0,1714,1699,1,0,0,0,1714, + 1700,1,0,0,0,1714,1701,1,0,0,0,1714,1706,1,0,0,0,1714,1710,1,0,0, + 0,1715,259,1,0,0,0,1716,1717,5,216,0,0,1717,1722,3,186,93,0,1718, + 1719,5,521,0,0,1719,1721,3,186,93,0,1720,1718,1,0,0,0,1721,1724, + 1,0,0,0,1722,1720,1,0,0,0,1722,1723,1,0,0,0,1723,261,1,0,0,0,1724, + 1722,1,0,0,0,1725,1726,5,272,0,0,1726,1728,5,517,0,0,1727,1729,3, + 264,132,0,1728,1727,1,0,0,0,1729,1730,1,0,0,0,1730,1728,1,0,0,0, + 1730,1731,1,0,0,0,1731,1732,1,0,0,0,1732,1734,5,518,0,0,1733,1735, + 3,276,138,0,1734,1733,1,0,0,0,1734,1735,1,0,0,0,1735,263,1,0,0,0, + 1736,1738,3,332,166,0,1737,1739,3,258,129,0,1738,1737,1,0,0,0,1738, + 1739,1,0,0,0,1739,265,1,0,0,0,1740,1741,5,5,0,0,1741,1742,5,323, + 0,0,1742,1743,5,273,0,0,1743,1749,5,211,0,0,1744,1745,5,255,0,0, + 1745,1746,5,322,0,0,1746,1747,5,273,0,0,1747,1749,5,211,0,0,1748, + 1740,1,0,0,0,1748,1744,1,0,0,0,1749,267,1,0,0,0,1750,1751,5,439, + 0,0,1751,1752,5,211,0,0,1752,1753,5,344,0,0,1753,1754,5,479,0,0, + 1754,1755,5,468,0,0,1755,1775,5,322,0,0,1756,1757,5,439,0,0,1757, + 1758,5,211,0,0,1758,1759,5,344,0,0,1759,1760,5,389,0,0,1760,1761, + 5,238,0,0,1761,1775,5,322,0,0,1762,1763,5,439,0,0,1763,1764,5,211, + 0,0,1764,1765,5,344,0,0,1765,1766,5,389,0,0,1766,1767,5,468,0,0, + 1767,1775,3,332,166,0,1768,1769,5,439,0,0,1769,1770,5,211,0,0,1770, + 1771,5,344,0,0,1771,1772,5,389,0,0,1772,1773,5,458,0,0,1773,1775, + 3,332,166,0,1774,1750,1,0,0,0,1774,1756,1,0,0,0,1774,1762,1,0,0, + 0,1774,1768,1,0,0,0,1775,269,1,0,0,0,1776,1777,5,105,0,0,1777,1782, + 3,186,93,0,1778,1779,5,521,0,0,1779,1781,3,186,93,0,1780,1778,1, + 0,0,0,1781,1784,1,0,0,0,1782,1780,1,0,0,0,1782,1783,1,0,0,0,1783, + 271,1,0,0,0,1784,1782,1,0,0,0,1785,1786,5,293,0,0,1786,1787,5,27, + 0,0,1787,1788,3,308,154,0,1788,1789,3,274,137,0,1789,1795,1,0,0, + 0,1790,1791,5,323,0,0,1791,1792,5,27,0,0,1792,1793,5,539,0,0,1793, + 1795,3,274,137,0,1794,1785,1,0,0,0,1794,1790,1,0,0,0,1795,273,1, + 0,0,0,1796,1797,5,481,0,0,1797,1798,5,10,0,0,1798,1799,5,76,0,0, + 1799,1800,5,322,0,0,1800,275,1,0,0,0,1801,1802,5,435,0,0,1802,1803, + 3,308,154,0,1803,277,1,0,0,0,1804,1805,3,280,140,0,1805,279,1,0, + 0,0,1806,1807,6,140,-1,0,1807,1808,5,242,0,0,1808,1819,3,280,140, + 6,1809,1810,5,133,0,0,1810,1811,5,517,0,0,1811,1812,3,160,80,0,1812, + 1813,5,518,0,0,1813,1819,1,0,0,0,1814,1816,3,286,143,0,1815,1817, + 3,282,141,0,1816,1815,1,0,0,0,1816,1817,1,0,0,0,1817,1819,1,0,0, + 0,1818,1806,1,0,0,0,1818,1809,1,0,0,0,1818,1814,1,0,0,0,1819,1834, + 1,0,0,0,1820,1821,10,3,0,0,1821,1822,5,10,0,0,1822,1833,3,280,140, + 4,1823,1824,10,2,0,0,1824,1825,5,258,0,0,1825,1833,3,280,140,3,1826, + 1827,10,1,0,0,1827,1829,5,184,0,0,1828,1830,5,242,0,0,1829,1828, + 1,0,0,0,1829,1830,1,0,0,0,1830,1831,1,0,0,0,1831,1833,7,27,0,0,1832, + 1820,1,0,0,0,1832,1823,1,0,0,0,1832,1826,1,0,0,0,1833,1836,1,0,0, + 0,1834,1832,1,0,0,0,1834,1835,1,0,0,0,1835,281,1,0,0,0,1836,1834, + 1,0,0,0,1837,1839,5,242,0,0,1838,1837,1,0,0,0,1838,1839,1,0,0,0, + 1839,1840,1,0,0,0,1840,1842,5,27,0,0,1841,1843,7,28,0,0,1842,1841, + 1,0,0,0,1842,1843,1,0,0,0,1843,1844,1,0,0,0,1844,1845,3,286,143, + 0,1845,1846,5,10,0,0,1846,1847,3,286,143,0,1847,1912,1,0,0,0,1848, + 1850,5,242,0,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0,1850,1851,1,0, + 0,0,1851,1852,5,170,0,0,1852,1853,5,517,0,0,1853,1858,3,278,139, + 0,1854,1855,5,521,0,0,1855,1857,3,278,139,0,1856,1854,1,0,0,0,1857, + 1860,1,0,0,0,1858,1856,1,0,0,0,1858,1859,1,0,0,0,1859,1861,1,0,0, + 0,1860,1858,1,0,0,0,1861,1862,5,518,0,0,1862,1912,1,0,0,0,1863,1865, + 5,242,0,0,1864,1863,1,0,0,0,1864,1865,1,0,0,0,1865,1866,1,0,0,0, + 1866,1867,5,170,0,0,1867,1868,5,517,0,0,1868,1869,3,160,80,0,1869, + 1870,5,518,0,0,1870,1912,1,0,0,0,1871,1872,5,133,0,0,1872,1873,5, + 517,0,0,1873,1874,3,160,80,0,1874,1875,5,518,0,0,1875,1912,1,0,0, + 0,1876,1878,5,242,0,0,1877,1876,1,0,0,0,1877,1878,1,0,0,0,1878,1879, + 1,0,0,0,1879,1880,5,319,0,0,1880,1912,3,286,143,0,1881,1912,3,284, + 142,0,1882,1884,5,184,0,0,1883,1885,5,242,0,0,1884,1883,1,0,0,0, + 1884,1885,1,0,0,0,1885,1886,1,0,0,0,1886,1912,7,27,0,0,1887,1889, + 5,184,0,0,1888,1890,5,242,0,0,1889,1888,1,0,0,0,1889,1890,1,0,0, + 0,1890,1891,1,0,0,0,1891,1892,5,113,0,0,1892,1893,5,151,0,0,1893, + 1912,3,286,143,0,1894,1896,5,242,0,0,1895,1894,1,0,0,0,1895,1896, + 1,0,0,0,1896,1897,1,0,0,0,1897,1898,5,343,0,0,1898,1899,5,389,0, + 0,1899,1902,3,286,143,0,1900,1901,5,127,0,0,1901,1903,3,384,192, + 0,1902,1900,1,0,0,0,1902,1903,1,0,0,0,1903,1912,1,0,0,0,1904,1905, + 5,184,0,0,1905,1909,5,186,0,0,1906,1910,5,414,0,0,1907,1910,5,13, + 0,0,1908,1910,3,330,165,0,1909,1906,1,0,0,0,1909,1907,1,0,0,0,1909, + 1908,1,0,0,0,1909,1910,1,0,0,0,1910,1912,1,0,0,0,1911,1838,1,0,0, + 0,1911,1849,1,0,0,0,1911,1864,1,0,0,0,1911,1871,1,0,0,0,1911,1877, + 1,0,0,0,1911,1881,1,0,0,0,1911,1882,1,0,0,0,1911,1887,1,0,0,0,1911, + 1895,1,0,0,0,1911,1904,1,0,0,0,1912,283,1,0,0,0,1913,1915,5,242, + 0,0,1914,1913,1,0,0,0,1914,1915,1,0,0,0,1915,1916,1,0,0,0,1916,1917, + 5,203,0,0,1917,1931,7,29,0,0,1918,1919,5,517,0,0,1919,1932,5,518, + 0,0,1920,1921,5,517,0,0,1921,1926,3,278,139,0,1922,1923,5,521,0, + 0,1923,1925,3,278,139,0,1924,1922,1,0,0,0,1925,1928,1,0,0,0,1926, + 1924,1,0,0,0,1926,1927,1,0,0,0,1927,1929,1,0,0,0,1928,1926,1,0,0, + 0,1929,1930,5,518,0,0,1930,1932,1,0,0,0,1931,1918,1,0,0,0,1931,1920, + 1,0,0,0,1932,1943,1,0,0,0,1933,1935,5,242,0,0,1934,1933,1,0,0,0, + 1934,1935,1,0,0,0,1935,1936,1,0,0,0,1936,1937,5,203,0,0,1937,1940, + 3,286,143,0,1938,1939,5,127,0,0,1939,1941,3,384,192,0,1940,1938, + 1,0,0,0,1940,1941,1,0,0,0,1941,1943,1,0,0,0,1942,1914,1,0,0,0,1942, + 1934,1,0,0,0,1943,285,1,0,0,0,1944,1945,6,143,-1,0,1945,1949,3,290, + 145,0,1946,1947,7,30,0,0,1947,1949,3,286,143,7,1948,1944,1,0,0,0, + 1948,1946,1,0,0,0,1949,1971,1,0,0,0,1950,1951,10,6,0,0,1951,1952, + 7,31,0,0,1952,1970,3,286,143,7,1953,1954,10,5,0,0,1954,1955,7,32, + 0,0,1955,1970,3,286,143,6,1956,1957,10,4,0,0,1957,1958,5,512,0,0, + 1958,1970,3,286,143,5,1959,1960,10,3,0,0,1960,1961,5,513,0,0,1961, + 1970,3,286,143,4,1962,1963,10,2,0,0,1963,1964,5,511,0,0,1964,1970, + 3,286,143,3,1965,1966,10,1,0,0,1966,1967,3,372,186,0,1967,1968,3, + 286,143,2,1968,1970,1,0,0,0,1969,1950,1,0,0,0,1969,1953,1,0,0,0, + 1969,1956,1,0,0,0,1969,1959,1,0,0,0,1969,1962,1,0,0,0,1969,1965, + 1,0,0,0,1970,1973,1,0,0,0,1971,1969,1,0,0,0,1971,1972,1,0,0,0,1972, + 287,1,0,0,0,1973,1971,1,0,0,0,1974,1994,3,398,199,0,1975,1994,3, + 296,148,0,1976,1977,3,298,149,0,1977,1989,5,517,0,0,1978,1980,3, + 390,195,0,1979,1978,1,0,0,0,1979,1980,1,0,0,0,1980,1981,1,0,0,0, + 1981,1986,3,300,150,0,1982,1983,5,521,0,0,1983,1985,3,300,150,0, + 1984,1982,1,0,0,0,1985,1988,1,0,0,0,1986,1984,1,0,0,0,1986,1987, + 1,0,0,0,1987,1990,1,0,0,0,1988,1986,1,0,0,0,1989,1979,1,0,0,0,1989, + 1990,1,0,0,0,1990,1991,1,0,0,0,1991,1992,5,518,0,0,1992,1994,1,0, + 0,0,1993,1974,1,0,0,0,1993,1975,1,0,0,0,1993,1976,1,0,0,0,1994,289, + 1,0,0,0,1995,1996,6,145,-1,0,1996,1998,5,40,0,0,1997,1999,3,336, + 168,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,2004,1,0,0,0,2002,2003,5,120,0,0,2003,2005,3,278, + 139,0,2004,2002,1,0,0,0,2004,2005,1,0,0,0,2005,2006,1,0,0,0,2006, + 2007,5,122,0,0,2007,2071,1,0,0,0,2008,2009,5,40,0,0,2009,2011,3, + 278,139,0,2010,2012,3,336,168,0,2011,2010,1,0,0,0,2012,2013,1,0, + 0,0,2013,2011,1,0,0,0,2013,2014,1,0,0,0,2014,2017,1,0,0,0,2015,2016, + 5,120,0,0,2016,2018,3,278,139,0,2017,2015,1,0,0,0,2017,2018,1,0, + 0,0,2018,2019,1,0,0,0,2019,2020,5,122,0,0,2020,2071,1,0,0,0,2021, + 2022,5,41,0,0,2022,2023,5,517,0,0,2023,2024,3,278,139,0,2024,2025, + 5,17,0,0,2025,2026,3,58,29,0,2026,2027,5,518,0,0,2027,2071,1,0,0, + 0,2028,2029,5,458,0,0,2029,2030,5,517,0,0,2030,2033,3,278,139,0, + 2031,2032,5,462,0,0,2032,2034,5,477,0,0,2033,2031,1,0,0,0,2033,2034, + 1,0,0,0,2034,2035,1,0,0,0,2035,2036,5,518,0,0,2036,2071,1,0,0,0, + 2037,2038,5,468,0,0,2038,2039,5,517,0,0,2039,2042,3,278,139,0,2040, + 2041,5,462,0,0,2041,2043,5,477,0,0,2042,2040,1,0,0,0,2042,2043,1, + 0,0,0,2043,2044,1,0,0,0,2044,2045,5,518,0,0,2045,2071,1,0,0,0,2046, + 2047,5,282,0,0,2047,2048,5,517,0,0,2048,2049,3,286,143,0,2049,2050, + 5,170,0,0,2050,2051,3,286,143,0,2051,2052,5,518,0,0,2052,2071,1, + 0,0,0,2053,2071,3,380,190,0,2054,2071,5,528,0,0,2055,2056,3,354, + 177,0,2056,2057,5,514,0,0,2057,2058,5,528,0,0,2058,2071,1,0,0,0, + 2059,2060,5,517,0,0,2060,2061,3,160,80,0,2061,2062,5,518,0,0,2062, + 2071,1,0,0,0,2063,2071,3,288,144,0,2064,2071,3,54,27,0,2065,2071, + 3,302,151,0,2066,2067,5,517,0,0,2067,2068,3,278,139,0,2068,2069, + 5,518,0,0,2069,2071,1,0,0,0,2070,1995,1,0,0,0,2070,2008,1,0,0,0, + 2070,2021,1,0,0,0,2070,2028,1,0,0,0,2070,2037,1,0,0,0,2070,2046, + 1,0,0,0,2070,2053,1,0,0,0,2070,2054,1,0,0,0,2070,2055,1,0,0,0,2070, + 2059,1,0,0,0,2070,2063,1,0,0,0,2070,2064,1,0,0,0,2070,2065,1,0,0, + 0,2070,2066,1,0,0,0,2071,2079,1,0,0,0,2072,2073,10,4,0,0,2073,2074, + 5,515,0,0,2074,2075,3,286,143,0,2075,2076,5,516,0,0,2076,2078,1, + 0,0,0,2077,2072,1,0,0,0,2078,2081,1,0,0,0,2079,2077,1,0,0,0,2079, + 2080,1,0,0,0,2080,291,1,0,0,0,2081,2079,1,0,0,0,2082,2083,3,354, + 177,0,2083,293,1,0,0,0,2084,2089,3,402,201,0,2085,2089,3,398,199, + 0,2086,2089,3,400,200,0,2087,2089,3,354,177,0,2088,2084,1,0,0,0, + 2088,2085,1,0,0,0,2088,2086,1,0,0,0,2088,2087,1,0,0,0,2089,295,1, + 0,0,0,2090,2091,3,400,200,0,2091,2092,5,538,0,0,2092,2095,1,0,0, + 0,2093,2095,3,308,154,0,2094,2090,1,0,0,0,2094,2093,1,0,0,0,2095, + 297,1,0,0,0,2096,2099,3,402,201,0,2097,2099,3,354,177,0,2098,2096, + 1,0,0,0,2098,2097,1,0,0,0,2099,299,1,0,0,0,2100,2105,3,396,198,0, + 2101,2105,3,394,197,0,2102,2105,3,392,196,0,2103,2105,3,278,139, + 0,2104,2100,1,0,0,0,2104,2101,1,0,0,0,2104,2102,1,0,0,0,2104,2103, + 1,0,0,0,2105,301,1,0,0,0,2106,2107,3,354,177,0,2107,303,1,0,0,0, + 2108,2109,3,330,165,0,2109,305,1,0,0,0,2110,2113,3,330,165,0,2111, + 2113,3,302,151,0,2112,2110,1,0,0,0,2112,2111,1,0,0,0,2113,307,1, + 0,0,0,2114,2117,5,182,0,0,2115,2118,3,310,155,0,2116,2118,3,314, + 157,0,2117,2115,1,0,0,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118, + 309,1,0,0,0,2119,2121,3,312,156,0,2120,2122,3,316,158,0,2121,2120, + 1,0,0,0,2121,2122,1,0,0,0,2122,311,1,0,0,0,2123,2124,3,318,159,0, + 2124,2125,3,394,197,0,2125,2127,1,0,0,0,2126,2123,1,0,0,0,2127,2128, + 1,0,0,0,2128,2126,1,0,0,0,2128,2129,1,0,0,0,2129,313,1,0,0,0,2130, + 2133,3,316,158,0,2131,2134,3,312,156,0,2132,2134,3,316,158,0,2133, + 2131,1,0,0,0,2133,2132,1,0,0,0,2133,2134,1,0,0,0,2134,315,1,0,0, + 0,2135,2136,3,318,159,0,2136,2137,3,394,197,0,2137,2138,5,389,0, + 0,2138,2139,3,394,197,0,2139,317,1,0,0,0,2140,2142,7,33,0,0,2141, + 2140,1,0,0,0,2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2146,7,34, + 0,0,2144,2146,5,538,0,0,2145,2141,1,0,0,0,2145,2144,1,0,0,0,2146, + 319,1,0,0,0,2147,2149,5,17,0,0,2148,2147,1,0,0,0,2148,2149,1,0,0, + 0,2149,2150,1,0,0,0,2150,2152,3,330,165,0,2151,2153,3,326,163,0, + 2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,321,1,0,0,0,2154,2155,3, + 330,165,0,2155,2156,3,324,162,0,2156,323,1,0,0,0,2157,2158,5,222, + 0,0,2158,2160,3,330,165,0,2159,2157,1,0,0,0,2160,2161,1,0,0,0,2161, + 2159,1,0,0,0,2161,2162,1,0,0,0,2162,2165,1,0,0,0,2163,2165,1,0,0, + 0,2164,2159,1,0,0,0,2164,2163,1,0,0,0,2165,325,1,0,0,0,2166,2167, + 5,517,0,0,2167,2168,3,328,164,0,2168,2169,5,518,0,0,2169,327,1,0, + 0,0,2170,2175,3,330,165,0,2171,2172,5,521,0,0,2172,2174,3,330,165, + 0,2173,2171,1,0,0,0,2174,2177,1,0,0,0,2175,2173,1,0,0,0,2175,2176, + 1,0,0,0,2176,329,1,0,0,0,2177,2175,1,0,0,0,2178,2182,3,332,166,0, + 2179,2182,3,334,167,0,2180,2182,3,404,202,0,2181,2178,1,0,0,0,2181, + 2179,1,0,0,0,2181,2180,1,0,0,0,2182,331,1,0,0,0,2183,2184,7,35,0, + 0,2184,333,1,0,0,0,2185,2186,5,538,0,0,2186,335,1,0,0,0,2187,2188, + 5,429,0,0,2188,2189,3,278,139,0,2189,2190,5,377,0,0,2190,2191,3, + 278,139,0,2191,337,1,0,0,0,2192,2193,3,330,165,0,2193,339,1,0,0, + 0,2194,2195,3,330,165,0,2195,341,1,0,0,0,2196,2199,3,330,165,0,2197, + 2198,5,514,0,0,2198,2200,3,330,165,0,2199,2197,1,0,0,0,2199,2200, + 1,0,0,0,2200,343,1,0,0,0,2201,2204,3,330,165,0,2202,2203,5,514,0, + 0,2203,2205,3,330,165,0,2204,2202,1,0,0,0,2204,2205,1,0,0,0,2205, + 345,1,0,0,0,2206,2209,3,330,165,0,2207,2208,5,514,0,0,2208,2210, + 3,330,165,0,2209,2207,1,0,0,0,2209,2210,1,0,0,0,2210,2219,1,0,0, + 0,2211,2212,3,330,165,0,2212,2213,5,514,0,0,2213,2216,3,330,165, + 0,2214,2215,5,514,0,0,2215,2217,3,330,165,0,2216,2214,1,0,0,0,2216, + 2217,1,0,0,0,2217,2219,1,0,0,0,2218,2206,1,0,0,0,2218,2211,1,0,0, + 0,2219,347,1,0,0,0,2220,2223,3,330,165,0,2221,2222,5,514,0,0,2222, + 2224,3,330,165,0,2223,2221,1,0,0,0,2223,2224,1,0,0,0,2224,2233,1, + 0,0,0,2225,2226,3,330,165,0,2226,2227,5,514,0,0,2227,2230,3,330, + 165,0,2228,2229,5,514,0,0,2229,2231,3,330,165,0,2230,2228,1,0,0, + 0,2230,2231,1,0,0,0,2231,2233,1,0,0,0,2232,2220,1,0,0,0,2232,2225, + 1,0,0,0,2233,349,1,0,0,0,2234,2237,3,330,165,0,2235,2236,5,514,0, + 0,2236,2238,3,330,165,0,2237,2235,1,0,0,0,2237,2238,1,0,0,0,2238, + 2247,1,0,0,0,2239,2240,3,330,165,0,2240,2241,5,514,0,0,2241,2244, + 3,330,165,0,2242,2243,5,514,0,0,2243,2245,3,330,165,0,2244,2242, + 1,0,0,0,2244,2245,1,0,0,0,2245,2247,1,0,0,0,2246,2234,1,0,0,0,2246, + 2239,1,0,0,0,2247,351,1,0,0,0,2248,2251,3,330,165,0,2249,2250,5, + 514,0,0,2250,2252,3,330,165,0,2251,2249,1,0,0,0,2251,2252,1,0,0, + 0,2252,2261,1,0,0,0,2253,2254,3,330,165,0,2254,2255,5,514,0,0,2255, + 2258,3,330,165,0,2256,2257,5,514,0,0,2257,2259,3,330,165,0,2258, + 2256,1,0,0,0,2258,2259,1,0,0,0,2259,2261,1,0,0,0,2260,2248,1,0,0, + 0,2260,2253,1,0,0,0,2261,353,1,0,0,0,2262,2267,3,330,165,0,2263, + 2264,5,514,0,0,2264,2266,3,330,165,0,2265,2263,1,0,0,0,2266,2269, + 1,0,0,0,2267,2265,1,0,0,0,2267,2268,1,0,0,0,2268,355,1,0,0,0,2269, + 2267,1,0,0,0,2270,2271,5,434,0,0,2271,2272,3,362,181,0,2272,357, + 1,0,0,0,2273,2274,5,167,0,0,2274,2275,5,242,0,0,2275,2276,5,133, + 0,0,2276,359,1,0,0,0,2277,2278,5,167,0,0,2278,2279,5,133,0,0,2279, + 361,1,0,0,0,2280,2281,5,517,0,0,2281,2286,3,364,182,0,2282,2283, + 5,521,0,0,2283,2285,3,364,182,0,2284,2282,1,0,0,0,2285,2288,1,0, + 0,0,2286,2284,1,0,0,0,2286,2287,1,0,0,0,2287,2289,1,0,0,0,2288,2286, + 1,0,0,0,2289,2290,5,518,0,0,2290,363,1,0,0,0,2291,2296,3,366,183, + 0,2292,2294,5,506,0,0,2293,2292,1,0,0,0,2293,2294,1,0,0,0,2294,2295, + 1,0,0,0,2295,2297,3,368,184,0,2296,2293,1,0,0,0,2296,2297,1,0,0, + 0,2297,365,1,0,0,0,2298,2302,3,330,165,0,2299,2302,3,302,151,0,2300, + 2302,5,538,0,0,2301,2298,1,0,0,0,2301,2299,1,0,0,0,2301,2300,1,0, + 0,0,2302,367,1,0,0,0,2303,2308,5,539,0,0,2304,2308,5,540,0,0,2305, + 2308,3,388,194,0,2306,2308,5,538,0,0,2307,2303,1,0,0,0,2307,2304, + 1,0,0,0,2307,2305,1,0,0,0,2307,2306,1,0,0,0,2308,369,1,0,0,0,2309, + 2316,5,10,0,0,2310,2311,5,512,0,0,2311,2316,5,512,0,0,2312,2316, + 5,258,0,0,2313,2314,5,511,0,0,2314,2316,5,511,0,0,2315,2309,1,0, + 0,0,2315,2310,1,0,0,0,2315,2312,1,0,0,0,2315,2313,1,0,0,0,2316,371, + 1,0,0,0,2317,2332,5,506,0,0,2318,2332,5,507,0,0,2319,2332,5,508, + 0,0,2320,2321,5,508,0,0,2321,2332,5,506,0,0,2322,2323,5,507,0,0, + 2323,2332,5,506,0,0,2324,2325,5,508,0,0,2325,2332,5,507,0,0,2326, + 2327,5,509,0,0,2327,2332,5,506,0,0,2328,2329,5,508,0,0,2329,2330, + 5,506,0,0,2330,2332,5,507,0,0,2331,2317,1,0,0,0,2331,2318,1,0,0, + 0,2331,2319,1,0,0,0,2331,2320,1,0,0,0,2331,2322,1,0,0,0,2331,2324, + 1,0,0,0,2331,2326,1,0,0,0,2331,2328,1,0,0,0,2332,373,1,0,0,0,2333, + 2334,5,508,0,0,2334,2341,5,508,0,0,2335,2336,5,507,0,0,2336,2341, + 5,507,0,0,2337,2341,5,512,0,0,2338,2341,5,513,0,0,2339,2341,5,511, + 0,0,2340,2333,1,0,0,0,2340,2335,1,0,0,0,2340,2337,1,0,0,0,2340,2338, + 1,0,0,0,2340,2339,1,0,0,0,2341,375,1,0,0,0,2342,2343,7,36,0,0,2343, + 377,1,0,0,0,2344,2345,7,37,0,0,2345,379,1,0,0,0,2346,2361,3,308, + 154,0,2347,2361,3,382,191,0,2348,2361,3,384,192,0,2349,2351,5,530, + 0,0,2350,2349,1,0,0,0,2350,2351,1,0,0,0,2351,2352,1,0,0,0,2352,2361, + 3,386,193,0,2353,2361,3,388,194,0,2354,2361,5,540,0,0,2355,2361, + 5,541,0,0,2356,2358,5,242,0,0,2357,2356,1,0,0,0,2357,2358,1,0,0, + 0,2358,2359,1,0,0,0,2359,2361,5,245,0,0,2360,2346,1,0,0,0,2360,2347, + 1,0,0,0,2360,2348,1,0,0,0,2360,2350,1,0,0,0,2360,2353,1,0,0,0,2360, + 2354,1,0,0,0,2360,2355,1,0,0,0,2360,2357,1,0,0,0,2361,381,1,0,0, + 0,2362,2363,3,392,196,0,2363,2364,3,384,192,0,2364,383,1,0,0,0,2365, + 2366,5,538,0,0,2366,385,1,0,0,0,2367,2368,5,539,0,0,2368,387,1,0, + 0,0,2369,2370,7,38,0,0,2370,389,1,0,0,0,2371,2372,7,39,0,0,2372, + 391,1,0,0,0,2373,2374,7,40,0,0,2374,393,1,0,0,0,2375,2376,7,41,0, + 0,2376,395,1,0,0,0,2377,2378,7,42,0,0,2378,397,1,0,0,0,2379,2380, + 7,43,0,0,2380,399,1,0,0,0,2381,2382,7,44,0,0,2382,401,1,0,0,0,2383, + 2384,7,45,0,0,2384,403,1,0,0,0,2385,2386,7,46,0,0,2386,405,1,0,0, + 0,283,409,416,419,433,451,455,464,469,476,487,496,508,511,518,521, + 529,533,538,541,548,556,560,572,580,584,616,619,624,628,632,636, + 645,650,654,658,663,666,670,675,681,686,691,695,699,703,713,721, + 725,729,733,737,741,745,749,753,755,765,773,797,811,816,820,826, + 829,832,839,842,851,863,887,899,904,908,916,920,926,936,941,947, + 951,955,959,968,972,979,982,992,1000,1008,1012,1027,1046,1057,1061, + 1068,1073,1079,1083,1090,1094,1098,1102,1110,1114,1119,1125,1131, + 1134,1138,1149,1158,1165,1176,1188,1203,1206,1210,1213,1215,1220, + 1224,1227,1231,1240,1249,1259,1264,1275,1278,1281,1284,1287,1293, + 1297,1306,1313,1316,1320,1325,1328,1330,1339,1346,1349,1353,1356, + 1358,1365,1370,1386,1397,1402,1410,1413,1416,1421,1423,1425,1430, + 1433,1437,1441,1445,1454,1465,1492,1514,1527,1539,1552,1564,1576, + 1582,1609,1617,1621,1624,1627,1634,1637,1640,1643,1646,1649,1654, + 1657,1666,1671,1675,1680,1686,1691,1695,1714,1722,1730,1734,1738, + 1748,1774,1782,1794,1816,1818,1829,1832,1834,1838,1842,1849,1858, + 1864,1877,1884,1889,1895,1902,1909,1911,1914,1926,1931,1934,1940, + 1942,1948,1969,1971,1979,1986,1989,1993,2000,2004,2013,2017,2033, + 2042,2070,2079,2088,2094,2098,2104,2112,2117,2121,2128,2133,2141, + 2145,2148,2152,2161,2164,2175,2181,2199,2204,2209,2216,2218,2223, + 2230,2232,2237,2244,2246,2251,2258,2260,2267,2286,2293,2296,2301, + 2307,2315,2331,2340,2350,2357,2360 ]; private static __ATN: antlr.ATN; @@ -16965,14 +17352,173 @@ export class WithItemContext extends antlr.ParserRuleContext { return this.getToken(FlinkSqlParser.RR_BRACKET, i); } } - public columnName(): ColumnNameContext[]; - public columnName(i: number): ColumnNameContext | null; - public columnName(i?: number): ColumnNameContext[] | ColumnNameContext | null { + public columnName(): ColumnNameContext[]; + public columnName(i: number): ColumnNameContext | null; + public columnName(i?: number): ColumnNameContext[] | ColumnNameContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnNameContext); + } + + return this.getRuleContext(i, ColumnNameContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_withItem; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterWithItem) { + listener.enterWithItem(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitWithItem) { + listener.exitWithItem(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitWithItem) { + return visitor.visitWithItem(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WithItemNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_withItemName; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterWithItemName) { + listener.enterWithItemName(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitWithItemName) { + listener.exitWithItemName(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitWithItemName) { + return visitor.visitWithItemName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectStatementContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public selectClause(): SelectClauseContext { + return this.getRuleContext(0, SelectClauseContext)!; + } + public fromClause(): FromClauseContext | null { + return this.getRuleContext(0, FromClauseContext); + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public groupByClause(): GroupByClauseContext | null { + return this.getRuleContext(0, GroupByClauseContext); + } + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); + } + public windowClause(): WindowClauseContext | null { + return this.getRuleContext(0, WindowClauseContext); + } + public matchRecognizeClause(): MatchRecognizeClauseContext | null { + return this.getRuleContext(0, MatchRecognizeClauseContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_selectStatement; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterSelectStatement) { + listener.enterSelectStatement(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitSelectStatement) { + listener.exitSelectStatement(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitSelectStatement) { + return visitor.visitSelectStatement(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectClauseContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_SELECT(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_SELECT, 0)!; + } + public selectList(): SelectListContext { + return this.getRuleContext(0, SelectListContext)!; + } + public setQuantifier(): SetQuantifierContext | null { + return this.getRuleContext(0, SetQuantifierContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_selectClause; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterSelectClause) { + listener.enterSelectClause(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitSelectClause) { + listener.exitSelectClause(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitSelectClause) { + return visitor.visitSelectClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnProjectItem(): ColumnProjectItemContext[]; + public columnProjectItem(i: number): ColumnProjectItemContext | null; + public columnProjectItem(i?: number): ColumnProjectItemContext[] | ColumnProjectItemContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnNameContext); + return this.getRuleContexts(ColumnProjectItemContext); } - return this.getRuleContext(i, ColumnNameContext); + return this.getRuleContext(i, ColumnProjectItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -16984,21 +17530,21 @@ export class WithItemContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_withItem; + return FlinkSqlParser.RULE_selectList; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterWithItem) { - listener.enterWithItem(this); + if(listener.enterSelectList) { + listener.enterSelectList(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitWithItem) { - listener.exitWithItem(this); + if(listener.exitSelectList) { + listener.exitSelectList(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitWithItem) { - return visitor.visitWithItem(this); + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); } else { return visitor.visitChildren(this); } @@ -17006,29 +17552,50 @@ export class WithItemContext extends antlr.ParserRuleContext { } -export class WithItemNameContext extends antlr.ParserRuleContext { +export class ColumnProjectItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public selectWindowItemColumnName(): SelectWindowItemColumnNameContext | null { + return this.getRuleContext(0, SelectWindowItemColumnNameContext); + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public columnAlias(): ColumnAliasContext | null { + return this.getRuleContext(0, ColumnAliasContext); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_AS, 0); + } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); + } + public columnName(): ColumnNameContext | null { + return this.getRuleContext(0, ColumnNameContext); } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_withItemName; + return FlinkSqlParser.RULE_columnProjectItem; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterWithItemName) { - listener.enterWithItemName(this); + if(listener.enterColumnProjectItem) { + listener.enterColumnProjectItem(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitWithItemName) { - listener.exitWithItemName(this); + if(listener.exitColumnProjectItem) { + listener.exitColumnProjectItem(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitWithItemName) { - return visitor.visitWithItemName(this); + if (visitor.visitColumnProjectItem) { + return visitor.visitColumnProjectItem(this); } else { return visitor.visitChildren(this); } @@ -17036,47 +17603,59 @@ export class WithItemNameContext extends antlr.ParserRuleContext { } -export class SelectStatementContext extends antlr.ParserRuleContext { +export class SelectWindowItemColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectClause(): SelectClauseContext { - return this.getRuleContext(0, SelectClauseContext)!; + public overWindowItem(): OverWindowItemContext { + return this.getRuleContext(0, OverWindowItemContext)!; } - public fromClause(): FromClauseContext | null { - return this.getRuleContext(0, FromClauseContext); + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_selectWindowItemColumnName; } - public whereClause(): WhereClauseContext | null { - return this.getRuleContext(0, WhereClauseContext); + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterSelectWindowItemColumnName) { + listener.enterSelectWindowItemColumnName(this); + } } - public groupByClause(): GroupByClauseContext | null { - return this.getRuleContext(0, GroupByClauseContext); + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitSelectWindowItemColumnName) { + listener.exitSelectWindowItemColumnName(this); + } } - public havingClause(): HavingClauseContext | null { - return this.getRuleContext(0, HavingClauseContext); + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitSelectWindowItemColumnName) { + return visitor.visitSelectWindowItemColumnName(this); + } else { + return visitor.visitChildren(this); + } } - public windowClause(): WindowClauseContext | null { - return this.getRuleContext(0, WindowClauseContext); +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public matchRecognizeClause(): MatchRecognizeClauseContext | null { - return this.getRuleContext(0, MatchRecognizeClauseContext); + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_selectStatement; + return FlinkSqlParser.RULE_selectExpressionColumnName; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterSelectStatement) { - listener.enterSelectStatement(this); + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitSelectStatement) { - listener.exitSelectStatement(this); + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitSelectStatement) { - return visitor.visitSelectStatement(this); + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); } else { return visitor.visitChildren(this); } @@ -17084,53 +17663,63 @@ export class SelectStatementContext extends antlr.ParserRuleContext { } -export class SelectClauseContext extends antlr.ParserRuleContext { +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_SELECT(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_SELECT, 0)!; + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; } - public ASTERISK_SIGN(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0); + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_selectLiteralColumnName; } - public projectItemDefinition(): ProjectItemDefinitionContext[]; - public projectItemDefinition(i: number): ProjectItemDefinitionContext | null; - public projectItemDefinition(i?: number): ProjectItemDefinitionContext[] | ProjectItemDefinitionContext | null { - if (i === undefined) { - return this.getRuleContexts(ProjectItemDefinitionContext); + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); } + } +} - return this.getRuleContext(i, ProjectItemDefinitionContext); + +export class ColumnAliasContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public setQuantifier(): SetQuantifierContext | null { - return this.getRuleContext(0, SetQuantifierContext); + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_AS, 0); } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_selectClause; + return FlinkSqlParser.RULE_columnAlias; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterSelectClause) { - listener.enterSelectClause(this); + if(listener.enterColumnAlias) { + listener.enterColumnAlias(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitSelectClause) { - listener.exitSelectClause(this); + if(listener.exitColumnAlias) { + listener.exitColumnAlias(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitSelectClause) { - return visitor.visitSelectClause(this); + if (visitor.visitColumnAlias) { + return visitor.visitColumnAlias(this); } else { return visitor.visitChildren(this); } @@ -17177,7 +17766,56 @@ export class ProjectItemDefinitionContext extends antlr.ParserRuleContext { } +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public ASTERISK_SIGN(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0)!; + } + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { + if (i === undefined) { + return this.getRuleContexts(IdentifierContext); + } + + return this.getRuleContext(i, IdentifierContext); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.DOT); + } else { + return this.getToken(FlinkSqlParser.DOT, i); + } + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_tableAllColumns; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class OverWindowItemContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -17391,21 +18029,93 @@ export class TablePrimaryContext extends antlr.ParserRuleContext { public viewPath(): ViewPathContext | null { return this.getRuleContext(0, ViewPathContext); } - public KW_LATERAL(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_LATERAL, 0); + public atomFunctionTable(): AtomFunctionTableContext | null { + return this.getRuleContext(0, AtomFunctionTableContext); } - public LR_BRACKET(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.LR_BRACKET, 0); + public atomExpressionTable(): AtomExpressionTableContext | null { + return this.getRuleContext(0, AtomExpressionTableContext); } - public functionCallExpression(): FunctionCallExpressionContext | null { - return this.getRuleContext(0, FunctionCallExpressionContext); + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_tablePrimary; } - public RR_BRACKET(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.RR_BRACKET, 0); + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterTablePrimary) { + listener.enterTablePrimary(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitTablePrimary) { + listener.exitTablePrimary(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitTablePrimary) { + return visitor.visitTablePrimary(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomFunctionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_LATERAL(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_LATERAL, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_TABLE, 0)!; + } + public LR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; + } + public functionCallExpression(): FunctionCallExpressionContext { + return this.getRuleContext(0, FunctionCallExpressionContext)!; + } + public RR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_atomFunctionTable; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterAtomFunctionTable) { + listener.enterAtomFunctionTable(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitAtomFunctionTable) { + listener.exitAtomFunctionTable(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitAtomFunctionTable) { + return visitor.visitAtomFunctionTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomExpressionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public LR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; } public queryStatement(): QueryStatementContext | null { return this.getRuleContext(0, QueryStatementContext); } + public RR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; + } + public KW_LATERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_LATERAL, 0); + } public KW_UNNEST(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_UNNEST, 0); } @@ -17413,21 +18123,21 @@ export class TablePrimaryContext extends antlr.ParserRuleContext { return this.getRuleContext(0, ExpressionContext); } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_tablePrimary; + return FlinkSqlParser.RULE_atomExpressionTable; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterTablePrimary) { - listener.enterTablePrimary(this); + if(listener.enterAtomExpressionTable) { + listener.enterAtomExpressionTable(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitTablePrimary) { - listener.exitTablePrimary(this); + if(listener.exitAtomExpressionTable) { + listener.exitAtomExpressionTable(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitTablePrimary) { - return visitor.visitTablePrimary(this); + if (visitor.visitAtomExpressionTable) { + return visitor.visitAtomExpressionTable(this); } else { return visitor.visitChildren(this); } diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index 07627b6d..4b2a7b47 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -96,12 +96,21 @@ import { WithItemContext } from "./FlinkSqlParser.js"; import { WithItemNameContext } from "./FlinkSqlParser.js"; import { SelectStatementContext } from "./FlinkSqlParser.js"; import { SelectClauseContext } from "./FlinkSqlParser.js"; +import { SelectListContext } from "./FlinkSqlParser.js"; +import { ColumnProjectItemContext } from "./FlinkSqlParser.js"; +import { SelectWindowItemColumnNameContext } from "./FlinkSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./FlinkSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./FlinkSqlParser.js"; +import { ColumnAliasContext } from "./FlinkSqlParser.js"; import { ProjectItemDefinitionContext } from "./FlinkSqlParser.js"; +import { TableAllColumnsContext } from "./FlinkSqlParser.js"; import { OverWindowItemContext } from "./FlinkSqlParser.js"; import { FromClauseContext } from "./FlinkSqlParser.js"; import { TableExpressionContext } from "./FlinkSqlParser.js"; import { TableReferenceContext } from "./FlinkSqlParser.js"; import { TablePrimaryContext } from "./FlinkSqlParser.js"; +import { AtomFunctionTableContext } from "./FlinkSqlParser.js"; +import { AtomExpressionTableContext } from "./FlinkSqlParser.js"; import { SystemTimePeriodContext } from "./FlinkSqlParser.js"; import { DateTimeExpressionContext } from "./FlinkSqlParser.js"; import { InlineDataValueClauseContext } from "./FlinkSqlParser.js"; @@ -1117,6 +1126,66 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectClause?: (ctx: SelectClauseContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.columnProjectItem`. + * @param ctx the parse tree + */ + enterColumnProjectItem?: (ctx: ColumnProjectItemContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.columnProjectItem`. + * @param ctx the parse tree + */ + exitColumnProjectItem?: (ctx: ColumnProjectItemContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.selectWindowItemColumnName`. + * @param ctx the parse tree + */ + enterSelectWindowItemColumnName?: (ctx: SelectWindowItemColumnNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.selectWindowItemColumnName`. + * @param ctx the parse tree + */ + exitSelectWindowItemColumnName?: (ctx: SelectWindowItemColumnNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.columnAlias`. + * @param ctx the parse tree + */ + enterColumnAlias?: (ctx: ColumnAliasContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.columnAlias`. + * @param ctx the parse tree + */ + exitColumnAlias?: (ctx: ColumnAliasContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.projectItemDefinition`. * @param ctx the parse tree @@ -1127,6 +1196,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitProjectItemDefinition?: (ctx: ProjectItemDefinitionContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.overWindowItem`. * @param ctx the parse tree @@ -1177,6 +1256,26 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTablePrimary?: (ctx: TablePrimaryContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + */ + enterAtomFunctionTable?: (ctx: AtomFunctionTableContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + */ + exitAtomFunctionTable?: (ctx: AtomFunctionTableContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.atomExpressionTable`. + * @param ctx the parse tree + */ + enterAtomExpressionTable?: (ctx: AtomExpressionTableContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.atomExpressionTable`. + * @param ctx the parse tree + */ + exitAtomExpressionTable?: (ctx: AtomExpressionTableContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.systemTimePeriod`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 02b4937e..4d7096c2 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -96,12 +96,21 @@ import { WithItemContext } from "./FlinkSqlParser.js"; import { WithItemNameContext } from "./FlinkSqlParser.js"; import { SelectStatementContext } from "./FlinkSqlParser.js"; import { SelectClauseContext } from "./FlinkSqlParser.js"; +import { SelectListContext } from "./FlinkSqlParser.js"; +import { ColumnProjectItemContext } from "./FlinkSqlParser.js"; +import { SelectWindowItemColumnNameContext } from "./FlinkSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./FlinkSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./FlinkSqlParser.js"; +import { ColumnAliasContext } from "./FlinkSqlParser.js"; import { ProjectItemDefinitionContext } from "./FlinkSqlParser.js"; +import { TableAllColumnsContext } from "./FlinkSqlParser.js"; import { OverWindowItemContext } from "./FlinkSqlParser.js"; import { FromClauseContext } from "./FlinkSqlParser.js"; import { TableExpressionContext } from "./FlinkSqlParser.js"; import { TableReferenceContext } from "./FlinkSqlParser.js"; import { TablePrimaryContext } from "./FlinkSqlParser.js"; +import { AtomFunctionTableContext } from "./FlinkSqlParser.js"; +import { AtomExpressionTableContext } from "./FlinkSqlParser.js"; import { SystemTimePeriodContext } from "./FlinkSqlParser.js"; import { DateTimeExpressionContext } from "./FlinkSqlParser.js"; import { InlineDataValueClauseContext } from "./FlinkSqlParser.js"; @@ -766,12 +775,54 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.columnProjectItem`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnProjectItem?: (ctx: ColumnProjectItemContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.selectWindowItemColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectWindowItemColumnName?: (ctx: SelectWindowItemColumnNameContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.columnAlias`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnAlias?: (ctx: ColumnAliasContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.projectItemDefinition`. * @param ctx the parse tree * @return the visitor result */ visitProjectItemDefinition?: (ctx: ProjectItemDefinitionContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.tableAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.overWindowItem`. * @param ctx the parse tree @@ -802,6 +853,18 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomFunctionTable?: (ctx: AtomFunctionTableContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.atomExpressionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomExpressionTable?: (ctx: AtomExpressionTableContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.systemTimePeriod`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index abf1d9f0..4af4a85c 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -1129,12 +1129,17 @@ subQuerySource partitioningSpec partitionTableFunctionSource partitionedTableFunction +atomPartitionedTableFunction whereClause valuesClause +atomValuesClause virtualTableSource selectClause selectTrfmClause +selectList selectItem +selectLiteralColumnName +selectExpressionColumnName trfmClause selectExpression selectExpressionList @@ -1232,4 +1237,4 @@ poolAssignList atn: -[4, 1, 438, 4809, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 1, 0, 5, 0, 698, 8, 0, 10, 0, 12, 0, 701, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 707, 8, 1, 1, 1, 3, 1, 710, 8, 1, 1, 2, 1, 2, 5, 2, 714, 8, 2, 10, 2, 12, 2, 717, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 722, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 729, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 739, 8, 3, 1, 3, 3, 3, 742, 8, 3, 1, 3, 1, 3, 3, 3, 746, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 761, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 768, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 774, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 779, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 3, 5, 787, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 809, 8, 5, 10, 5, 12, 5, 812, 9, 5, 1, 5, 1, 5, 5, 5, 816, 8, 5, 10, 5, 12, 5, 819, 9, 5, 3, 5, 821, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 826, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 831, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 837, 8, 6, 1, 7, 1, 7, 3, 7, 841, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 854, 8, 8, 1, 9, 1, 9, 3, 9, 858, 8, 9, 1, 9, 1, 9, 3, 9, 862, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 867, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 874, 8, 10, 1, 10, 1, 10, 3, 10, 878, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 883, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 890, 8, 12, 1, 12, 1, 12, 3, 12, 894, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 899, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 945, 8, 14, 11, 14, 12, 14, 946, 1, 14, 1, 14, 1, 14, 4, 14, 952, 8, 14, 11, 14, 12, 14, 953, 1, 14, 1, 14, 1, 14, 3, 14, 959, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 982, 8, 21, 1, 21, 1, 21, 3, 21, 986, 8, 21, 1, 21, 1, 21, 3, 21, 990, 8, 21, 1, 21, 3, 21, 993, 8, 21, 1, 21, 1, 21, 3, 21, 997, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1002, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1008, 8, 21, 1, 21, 1, 21, 3, 21, 1012, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 3, 21, 1020, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1031, 8, 24, 1, 24, 1, 24, 3, 24, 1035, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1042, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1050, 8, 26, 1, 26, 3, 26, 1053, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1058, 8, 27, 1, 27, 1, 27, 3, 27, 1062, 8, 27, 1, 27, 3, 27, 1065, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1075, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1083, 8, 29, 5, 29, 1085, 8, 29, 10, 29, 12, 29, 1088, 9, 29, 3, 29, 1090, 8, 29, 1, 30, 1, 30, 3, 30, 1094, 8, 30, 1, 31, 1, 31, 3, 31, 1098, 8, 31, 1, 31, 3, 31, 1101, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1106, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1112, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1117, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 3, 32, 1126, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1137, 8, 33, 3, 33, 1139, 8, 33, 1, 33, 1, 33, 3, 33, 1143, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1153, 8, 36, 1, 36, 1, 36, 3, 36, 1157, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1163, 8, 36, 1, 36, 3, 36, 1166, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1178, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1186, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 36, 1, 36, 3, 36, 1195, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1203, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1208, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1214, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1220, 8, 36, 1, 36, 3, 36, 1223, 8, 36, 1, 36, 3, 36, 1226, 8, 36, 1, 36, 3, 36, 1229, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1238, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1246, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1251, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1259, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1266, 8, 36, 1, 36, 3, 36, 1269, 8, 36, 1, 36, 3, 36, 1272, 8, 36, 3, 36, 1274, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1285, 8, 36, 3, 36, 1287, 8, 36, 1, 36, 3, 36, 1290, 8, 36, 1, 36, 3, 36, 1293, 8, 36, 1, 36, 3, 36, 1296, 8, 36, 1, 36, 3, 36, 1299, 8, 36, 1, 36, 3, 36, 1302, 8, 36, 3, 36, 1304, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1316, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1322, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1330, 8, 36, 3, 36, 1332, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1342, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1375, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1380, 8, 45, 1, 46, 1, 46, 3, 46, 1384, 8, 46, 1, 46, 1, 46, 3, 46, 1388, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1395, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1400, 8, 47, 10, 47, 12, 47, 1403, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1408, 8, 47, 1, 48, 1, 48, 3, 48, 1412, 8, 48, 1, 48, 3, 48, 1415, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1420, 8, 48, 10, 48, 12, 48, 1423, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1445, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1450, 8, 53, 1, 53, 1, 53, 3, 53, 1454, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1462, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1471, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1478, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1484, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1491, 8, 58, 1, 58, 3, 58, 1494, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1500, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1505, 8, 59, 10, 59, 12, 59, 1508, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1515, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1522, 8, 62, 10, 62, 12, 62, 1525, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1533, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1540, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1560, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1567, 8, 69, 3, 69, 1569, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1574, 8, 70, 10, 70, 12, 70, 1577, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1586, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1594, 8, 73, 1, 74, 1, 74, 3, 74, 1598, 8, 74, 1, 74, 1, 74, 3, 74, 1602, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1615, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1624, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1640, 8, 78, 1, 78, 1, 78, 3, 78, 1644, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1649, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1654, 8, 78, 1, 78, 3, 78, 1657, 8, 78, 1, 78, 3, 78, 1660, 8, 78, 1, 78, 3, 78, 1663, 8, 78, 1, 78, 3, 78, 1666, 8, 78, 1, 78, 3, 78, 1669, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1674, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1683, 8, 80, 1, 80, 1, 80, 3, 80, 1687, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1694, 8, 80, 1, 80, 3, 80, 1697, 8, 80, 1, 80, 3, 80, 1700, 8, 80, 1, 80, 3, 80, 1703, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1715, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1721, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1747, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1755, 8, 88, 1, 88, 1, 88, 3, 88, 1759, 8, 88, 1, 88, 3, 88, 1762, 8, 88, 1, 88, 3, 88, 1765, 8, 88, 1, 88, 3, 88, 1768, 8, 88, 1, 88, 3, 88, 1771, 8, 88, 1, 88, 3, 88, 1774, 8, 88, 1, 88, 3, 88, 1777, 8, 88, 1, 88, 3, 88, 1780, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1789, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1799, 8, 90, 1, 90, 3, 90, 1802, 8, 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, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1822, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1828, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1834, 8, 94, 1, 94, 3, 94, 1837, 8, 94, 3, 94, 1839, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1846, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1853, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1866, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1871, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1878, 8, 101, 10, 101, 12, 101, 1881, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1886, 8, 102, 10, 102, 12, 102, 1889, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1896, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1909, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1922, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1938, 8, 105, 1, 106, 1, 106, 3, 106, 1942, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1957, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1963, 8, 110, 1, 110, 3, 110, 1966, 8, 110, 1, 110, 3, 110, 1969, 8, 110, 1, 110, 3, 110, 1972, 8, 110, 1, 110, 3, 110, 1975, 8, 110, 1, 111, 1, 111, 3, 111, 1979, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1992, 8, 114, 10, 114, 12, 114, 1995, 9, 114, 3, 114, 1997, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2006, 8, 116, 10, 116, 12, 116, 2009, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2022, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 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, 123, 1, 123, 3, 123, 2056, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2064, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2069, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2077, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2082, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2087, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2092, 8, 124, 10, 124, 12, 124, 2095, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2100, 8, 125, 10, 125, 12, 125, 2103, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2108, 8, 126, 10, 126, 12, 126, 2111, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2116, 8, 127, 10, 127, 12, 127, 2119, 9, 127, 1, 128, 1, 128, 3, 128, 2123, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2135, 8, 131, 5, 131, 2137, 8, 131, 10, 131, 12, 131, 2140, 9, 131, 1, 132, 1, 132, 1, 132, 5, 132, 2145, 8, 132, 10, 132, 12, 132, 2148, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 3, 134, 2156, 8, 134, 1, 134, 3, 134, 2159, 8, 134, 1, 135, 1, 135, 3, 135, 2163, 8, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 3, 137, 2170, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2176, 8, 139, 1, 139, 1, 139, 3, 139, 2180, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2186, 8, 140, 1, 141, 1, 141, 3, 141, 2190, 8, 141, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2202, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2211, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2222, 8, 145, 1, 146, 1, 146, 3, 146, 2226, 8, 146, 1, 147, 1, 147, 1, 147, 5, 147, 2231, 8, 147, 10, 147, 12, 147, 2234, 9, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 5, 149, 2243, 8, 149, 10, 149, 12, 149, 2246, 9, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2255, 8, 152, 1, 152, 3, 152, 2258, 8, 152, 1, 153, 1, 153, 1, 153, 5, 153, 2263, 8, 153, 10, 153, 12, 153, 2266, 9, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2271, 8, 154, 1, 155, 1, 155, 3, 155, 2275, 8, 155, 1, 155, 3, 155, 2278, 8, 155, 1, 155, 3, 155, 2281, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2287, 8, 156, 1, 157, 1, 157, 3, 157, 2291, 8, 157, 1, 158, 1, 158, 3, 158, 2295, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2300, 8, 159, 1, 159, 1, 159, 3, 159, 2304, 8, 159, 1, 160, 1, 160, 3, 160, 2308, 8, 160, 1, 161, 1, 161, 3, 161, 2312, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2320, 8, 161, 1, 162, 1, 162, 3, 162, 2324, 8, 162, 1, 162, 1, 162, 3, 162, 2328, 8, 162, 1, 163, 1, 163, 3, 163, 2332, 8, 163, 1, 164, 1, 164, 3, 164, 2336, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2344, 8, 164, 1, 165, 1, 165, 3, 165, 2348, 8, 165, 1, 165, 1, 165, 3, 165, 2352, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2360, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2365, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2370, 8, 168, 1, 169, 1, 169, 3, 169, 2374, 8, 169, 1, 170, 1, 170, 3, 170, 2378, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2385, 8, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2392, 8, 173, 10, 173, 12, 173, 2395, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2402, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2414, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2432, 8, 175, 1, 175, 3, 175, 2435, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2441, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 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, 3, 180, 2467, 8, 180, 1, 181, 3, 181, 2470, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 3, 182, 2476, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 2482, 8, 183, 10, 183, 12, 183, 2485, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2492, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 2503, 8, 185, 10, 185, 12, 185, 2506, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2512, 8, 186, 1, 186, 3, 186, 2515, 8, 186, 1, 186, 3, 186, 2518, 8, 186, 1, 186, 3, 186, 2521, 8, 186, 1, 186, 3, 186, 2524, 8, 186, 1, 186, 3, 186, 2527, 8, 186, 1, 186, 3, 186, 2530, 8, 186, 1, 186, 3, 186, 2533, 8, 186, 1, 186, 3, 186, 2536, 8, 186, 1, 186, 3, 186, 2539, 8, 186, 1, 186, 3, 186, 2542, 8, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2547, 8, 186, 1, 186, 3, 186, 2550, 8, 186, 1, 186, 3, 186, 2553, 8, 186, 1, 186, 3, 186, 2556, 8, 186, 1, 186, 3, 186, 2559, 8, 186, 1, 186, 3, 186, 2562, 8, 186, 1, 186, 3, 186, 2565, 8, 186, 1, 186, 3, 186, 2568, 8, 186, 1, 186, 3, 186, 2571, 8, 186, 1, 186, 3, 186, 2574, 8, 186, 1, 186, 3, 186, 2577, 8, 186, 3, 186, 2579, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2585, 8, 187, 1, 188, 1, 188, 3, 188, 2589, 8, 188, 1, 188, 3, 188, 2592, 8, 188, 1, 188, 3, 188, 2595, 8, 188, 1, 188, 3, 188, 2598, 8, 188, 1, 188, 3, 188, 2601, 8, 188, 1, 188, 3, 188, 2604, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2611, 8, 188, 1, 189, 1, 189, 3, 189, 2615, 8, 189, 1, 189, 3, 189, 2618, 8, 189, 1, 189, 3, 189, 2621, 8, 189, 1, 189, 3, 189, 2624, 8, 189, 1, 189, 3, 189, 2627, 8, 189, 1, 189, 3, 189, 2630, 8, 189, 1, 190, 1, 190, 1, 190, 4, 190, 2635, 8, 190, 11, 190, 12, 190, 2636, 1, 191, 3, 191, 2640, 8, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2648, 8, 192, 1, 192, 1, 192, 3, 192, 2652, 8, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2659, 8, 192, 3, 192, 2661, 8, 192, 1, 193, 3, 193, 2664, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2669, 8, 193, 1, 193, 3, 193, 2672, 8, 193, 1, 193, 1, 193, 3, 193, 2676, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 2681, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2687, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 3, 196, 2695, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 5, 197, 2701, 8, 197, 10, 197, 12, 197, 2704, 9, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2711, 8, 198, 10, 198, 12, 198, 2714, 9, 198, 3, 198, 2716, 8, 198, 1, 198, 1, 198, 3, 198, 2720, 8, 198, 1, 198, 1, 198, 3, 198, 2724, 8, 198, 1, 198, 1, 198, 1, 198, 3, 198, 2729, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2736, 8, 199, 1, 200, 1, 200, 5, 200, 2740, 8, 200, 10, 200, 12, 200, 2743, 9, 200, 1, 200, 3, 200, 2746, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2753, 8, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2758, 8, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2771, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2779, 8, 203, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2798, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2808, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2821, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2831, 8, 208, 1, 208, 1, 208, 3, 208, 2835, 8, 208, 4, 208, 2837, 8, 208, 11, 208, 12, 208, 2838, 1, 208, 1, 208, 5, 208, 2843, 8, 208, 10, 208, 12, 208, 2846, 9, 208, 1, 208, 1, 208, 5, 208, 2850, 8, 208, 10, 208, 12, 208, 2853, 9, 208, 1, 208, 1, 208, 5, 208, 2857, 8, 208, 10, 208, 12, 208, 2860, 9, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2868, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2875, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2895, 8, 208, 1, 208, 3, 208, 2898, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2912, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2927, 8, 209, 1, 209, 1, 209, 3, 209, 2931, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 5, 209, 2949, 8, 209, 10, 209, 12, 209, 2952, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2963, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2969, 8, 209, 1, 209, 3, 209, 2972, 8, 209, 1, 209, 3, 209, 2975, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2981, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2987, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2994, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3002, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3008, 8, 209, 1, 209, 1, 209, 3, 209, 3012, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3017, 8, 209, 1, 209, 3, 209, 3020, 8, 209, 1, 209, 1, 209, 3, 209, 3024, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3031, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3036, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3041, 8, 209, 1, 209, 3, 209, 3044, 8, 209, 3, 209, 3046, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3054, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3062, 8, 210, 1, 210, 1, 210, 3, 210, 3066, 8, 210, 4, 210, 3068, 8, 210, 11, 210, 12, 210, 3069, 1, 210, 1, 210, 3, 210, 3074, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3091, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3108, 8, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 3, 214, 3115, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 3122, 8, 214, 10, 214, 12, 214, 3125, 9, 214, 1, 214, 1, 214, 3, 214, 3129, 8, 214, 1, 214, 3, 214, 3132, 8, 214, 1, 214, 3, 214, 3135, 8, 214, 1, 215, 1, 215, 3, 215, 3139, 8, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3154, 8, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3168, 8, 217, 1, 217, 3, 217, 3171, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3182, 8, 218, 1, 219, 1, 219, 3, 219, 3186, 8, 219, 1, 219, 3, 219, 3189, 8, 219, 1, 219, 3, 219, 3192, 8, 219, 1, 219, 1, 219, 3, 219, 3196, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3201, 8, 219, 1, 219, 3, 219, 3204, 8, 219, 1, 219, 3, 219, 3207, 8, 219, 1, 219, 3, 219, 3210, 8, 219, 1, 219, 3, 219, 3213, 8, 219, 1, 219, 3, 219, 3216, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3222, 8, 219, 1, 219, 3, 219, 3225, 8, 219, 1, 219, 3, 219, 3228, 8, 219, 1, 219, 3, 219, 3231, 8, 219, 1, 219, 3, 219, 3234, 8, 219, 1, 219, 3, 219, 3237, 8, 219, 1, 219, 3, 219, 3240, 8, 219, 1, 219, 3, 219, 3243, 8, 219, 1, 219, 3, 219, 3246, 8, 219, 1, 219, 3, 219, 3249, 8, 219, 1, 219, 1, 219, 3, 219, 3253, 8, 219, 3, 219, 3255, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3261, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3266, 8, 219, 1, 219, 3, 219, 3269, 8, 219, 1, 219, 3, 219, 3272, 8, 219, 1, 219, 3, 219, 3275, 8, 219, 1, 219, 3, 219, 3278, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3284, 8, 219, 1, 219, 3, 219, 3287, 8, 219, 1, 219, 3, 219, 3290, 8, 219, 1, 219, 3, 219, 3293, 8, 219, 1, 219, 3, 219, 3296, 8, 219, 1, 219, 3, 219, 3299, 8, 219, 1, 219, 3, 219, 3302, 8, 219, 1, 219, 3, 219, 3305, 8, 219, 1, 219, 3, 219, 3308, 8, 219, 1, 219, 3, 219, 3311, 8, 219, 1, 219, 1, 219, 3, 219, 3315, 8, 219, 3, 219, 3317, 8, 219, 3, 219, 3319, 8, 219, 1, 220, 1, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3329, 8, 220, 1, 220, 1, 220, 3, 220, 3333, 8, 220, 1, 220, 1, 220, 3, 220, 3337, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3342, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3347, 8, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 5, 222, 3354, 8, 222, 10, 222, 12, 222, 3357, 9, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3364, 8, 223, 10, 223, 12, 223, 3367, 9, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3372, 8, 224, 10, 224, 12, 224, 3375, 9, 224, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 4, 226, 3384, 8, 226, 11, 226, 12, 226, 3385, 1, 226, 3, 226, 3389, 8, 226, 1, 227, 1, 227, 5, 227, 3393, 8, 227, 10, 227, 12, 227, 3396, 9, 227, 1, 227, 1, 227, 5, 227, 3400, 8, 227, 10, 227, 12, 227, 3403, 9, 227, 1, 227, 1, 227, 5, 227, 3407, 8, 227, 10, 227, 12, 227, 3410, 9, 227, 1, 227, 1, 227, 5, 227, 3414, 8, 227, 10, 227, 12, 227, 3417, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3423, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3432, 8, 228, 5, 228, 3434, 8, 228, 10, 228, 12, 228, 3437, 9, 228, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3443, 8, 229, 1, 229, 5, 229, 3446, 8, 229, 10, 229, 12, 229, 3449, 9, 229, 1, 230, 3, 230, 3452, 8, 230, 1, 230, 1, 230, 3, 230, 3456, 8, 230, 1, 230, 3, 230, 3459, 8, 230, 1, 230, 3, 230, 3462, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 3473, 8, 231, 1, 231, 1, 231, 3, 231, 3477, 8, 231, 3, 231, 3479, 8, 231, 1, 231, 3, 231, 3482, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3493, 8, 232, 10, 232, 12, 232, 3496, 9, 232, 3, 232, 3498, 8, 232, 1, 232, 3, 232, 3501, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3511, 8, 232, 10, 232, 12, 232, 3514, 9, 232, 3, 232, 3516, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3523, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3530, 8, 232, 10, 232, 12, 232, 3533, 9, 232, 1, 232, 1, 232, 3, 232, 3537, 8, 232, 3, 232, 3539, 8, 232, 3, 232, 3541, 8, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 5, 234, 3556, 8, 234, 10, 234, 12, 234, 3559, 9, 234, 3, 234, 3561, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 3569, 8, 234, 1, 234, 3, 234, 3572, 8, 234, 1, 235, 1, 235, 3, 235, 3576, 8, 235, 1, 235, 3, 235, 3579, 8, 235, 1, 235, 3, 235, 3582, 8, 235, 1, 235, 3, 235, 3585, 8, 235, 1, 235, 3, 235, 3588, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 3600, 8, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 3, 239, 3608, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3615, 8, 240, 1, 240, 3, 240, 3618, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3625, 8, 241, 1, 241, 3, 241, 3628, 8, 241, 1, 242, 1, 242, 1, 242, 3, 242, 3633, 8, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3640, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3648, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 3, 245, 3654, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3659, 8, 245, 1, 245, 1, 245, 3, 245, 3663, 8, 245, 1, 246, 1, 246, 1, 246, 3, 246, 3668, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 3675, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 5, 247, 3687, 8, 247, 10, 247, 12, 247, 3690, 9, 247, 3, 247, 3692, 8, 247, 1, 247, 1, 247, 3, 247, 3696, 8, 247, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3705, 8, 249, 10, 249, 12, 249, 3708, 9, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3715, 8, 249, 10, 249, 12, 249, 3718, 9, 249, 3, 249, 3720, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 3727, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 3734, 8, 250, 10, 250, 12, 250, 3737, 9, 250, 3, 250, 3739, 8, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 3745, 8, 251, 1, 251, 3, 251, 3748, 8, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3753, 8, 251, 10, 251, 12, 251, 3756, 9, 251, 1, 251, 1, 251, 3, 251, 3760, 8, 251, 1, 251, 3, 251, 3763, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 3776, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 3782, 8, 252, 3, 252, 3784, 8, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 3, 253, 3792, 8, 253, 1, 253, 3, 253, 3795, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3803, 8, 253, 10, 253, 12, 253, 3806, 9, 253, 1, 253, 1, 253, 3, 253, 3810, 8, 253, 3, 253, 3812, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3824, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3830, 8, 254, 3, 254, 3832, 8, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 3, 255, 3839, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3844, 8, 256, 10, 256, 12, 256, 3847, 9, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3858, 8, 257, 10, 257, 12, 257, 3861, 9, 257, 1, 258, 1, 258, 1, 258, 3, 258, 3866, 8, 258, 1, 258, 3, 258, 3869, 8, 258, 1, 258, 3, 258, 3872, 8, 258, 1, 258, 3, 258, 3875, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3884, 8, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3891, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3897, 8, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 3906, 8, 261, 1, 262, 1, 262, 3, 262, 3910, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 3916, 8, 262, 10, 262, 12, 262, 3919, 9, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 3928, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3936, 8, 263, 10, 263, 12, 263, 3939, 9, 263, 1, 263, 1, 263, 3, 263, 3943, 8, 263, 1, 264, 1, 264, 3, 264, 3947, 8, 264, 1, 264, 1, 264, 5, 264, 3951, 8, 264, 10, 264, 12, 264, 3954, 9, 264, 1, 264, 1, 264, 3, 264, 3958, 8, 264, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 3, 267, 3968, 8, 267, 1, 268, 1, 268, 3, 268, 3972, 8, 268, 1, 268, 3, 268, 3975, 8, 268, 1, 268, 1, 268, 1, 268, 3, 268, 3980, 8, 268, 1, 268, 3, 268, 3983, 8, 268, 5, 268, 3985, 8, 268, 10, 268, 12, 268, 3988, 9, 268, 1, 269, 1, 269, 3, 269, 3992, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 4, 271, 4001, 8, 271, 11, 271, 12, 271, 4002, 3, 271, 4005, 8, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 5, 272, 4012, 8, 272, 10, 272, 12, 272, 4015, 9, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 4035, 8, 276, 10, 276, 12, 276, 4038, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 4045, 8, 276, 10, 276, 12, 276, 4048, 9, 276, 3, 276, 4050, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 4057, 8, 277, 1, 277, 3, 277, 4060, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 4070, 8, 277, 1, 277, 1, 277, 1, 277, 5, 277, 4075, 8, 277, 10, 277, 12, 277, 4078, 9, 277, 3, 277, 4080, 8, 277, 3, 277, 4082, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 4093, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 4103, 8, 277, 3, 277, 4105, 8, 277, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 280, 1, 280, 3, 280, 4114, 8, 280, 1, 281, 1, 281, 1, 281, 3, 281, 4119, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4128, 8, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 4, 283, 4139, 8, 283, 11, 283, 12, 283, 4140, 1, 283, 1, 283, 3, 283, 4145, 8, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 4, 284, 4155, 8, 284, 11, 284, 12, 284, 4156, 1, 284, 1, 284, 3, 284, 4161, 8, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 4170, 8, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 4189, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 5, 288, 4205, 8, 288, 10, 288, 12, 288, 4208, 9, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4219, 8, 288, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 4234, 8, 290, 1, 290, 1, 290, 3, 290, 4238, 8, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4254, 8, 291, 1, 292, 1, 292, 1, 292, 5, 292, 4259, 8, 292, 10, 292, 12, 292, 4262, 9, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4275, 8, 293, 1, 294, 5, 294, 4278, 8, 294, 10, 294, 12, 294, 4281, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4290, 8, 294, 10, 294, 12, 294, 4293, 9, 294, 1, 295, 1, 295, 1, 295, 5, 295, 4298, 8, 295, 10, 295, 12, 295, 4301, 9, 295, 1, 296, 1, 296, 1, 296, 5, 296, 4306, 8, 296, 10, 296, 12, 296, 4309, 9, 296, 1, 297, 1, 297, 1, 297, 5, 297, 4314, 8, 297, 10, 297, 12, 297, 4317, 9, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4322, 8, 298, 10, 298, 12, 298, 4325, 9, 298, 1, 299, 1, 299, 1, 299, 5, 299, 4330, 8, 299, 10, 299, 12, 299, 4333, 9, 299, 1, 300, 1, 300, 1, 300, 5, 300, 4338, 8, 300, 10, 300, 12, 300, 4341, 9, 300, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 3, 303, 4351, 8, 303, 1, 303, 1, 303, 3, 303, 4355, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 4363, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 4379, 8, 305, 1, 306, 1, 306, 3, 306, 4383, 8, 306, 1, 307, 1, 307, 1, 307, 3, 307, 4388, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 4401, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 4410, 8, 310, 10, 310, 12, 310, 4413, 9, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4421, 8, 311, 1, 312, 5, 312, 4424, 8, 312, 10, 312, 12, 312, 4427, 9, 312, 1, 312, 1, 312, 1, 312, 3, 312, 4432, 8, 312, 1, 313, 1, 313, 1, 313, 5, 313, 4437, 8, 313, 10, 313, 12, 313, 4440, 9, 313, 1, 314, 1, 314, 3, 314, 4444, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 4451, 8, 315, 10, 315, 12, 315, 4454, 9, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 3, 316, 4461, 8, 316, 1, 317, 1, 317, 1, 317, 1, 317, 5, 317, 4467, 8, 317, 10, 317, 12, 317, 4470, 9, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 3, 318, 4477, 8, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 3, 321, 4487, 8, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4492, 8, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 4551, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4557, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4566, 8, 327, 3, 327, 4568, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 5, 327, 4582, 8, 327, 10, 327, 12, 327, 4585, 9, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4592, 8, 327, 1, 327, 1, 327, 3, 327, 4596, 8, 327, 3, 327, 4598, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4604, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4609, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4626, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4652, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4657, 8, 327, 3, 327, 4659, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4687, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4704, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4709, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4718, 8, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 4729, 8, 329, 1, 330, 1, 330, 1, 330, 5, 330, 4734, 8, 330, 10, 330, 12, 330, 4737, 9, 330, 1, 331, 1, 331, 1, 331, 3, 331, 4742, 8, 331, 1, 332, 1, 332, 1, 332, 3, 332, 4747, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 5, 343, 4772, 8, 343, 10, 343, 12, 343, 4775, 9, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 4785, 8, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 4799, 8, 346, 1, 347, 1, 347, 1, 347, 5, 347, 4804, 8, 347, 10, 347, 12, 347, 4807, 9, 347, 1, 347, 1, 817, 0, 348, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5398, 0, 699, 1, 0, 0, 0, 2, 706, 1, 0, 0, 0, 4, 711, 1, 0, 0, 0, 6, 745, 1, 0, 0, 0, 8, 747, 1, 0, 0, 0, 10, 820, 1, 0, 0, 0, 12, 822, 1, 0, 0, 0, 14, 838, 1, 0, 0, 0, 16, 847, 1, 0, 0, 0, 18, 855, 1, 0, 0, 0, 20, 868, 1, 0, 0, 0, 22, 879, 1, 0, 0, 0, 24, 884, 1, 0, 0, 0, 26, 895, 1, 0, 0, 0, 28, 958, 1, 0, 0, 0, 30, 960, 1, 0, 0, 0, 32, 963, 1, 0, 0, 0, 34, 967, 1, 0, 0, 0, 36, 969, 1, 0, 0, 0, 38, 972, 1, 0, 0, 0, 40, 975, 1, 0, 0, 0, 42, 1019, 1, 0, 0, 0, 44, 1021, 1, 0, 0, 0, 46, 1024, 1, 0, 0, 0, 48, 1027, 1, 0, 0, 0, 50, 1036, 1, 0, 0, 0, 52, 1039, 1, 0, 0, 0, 54, 1054, 1, 0, 0, 0, 56, 1066, 1, 0, 0, 0, 58, 1071, 1, 0, 0, 0, 60, 1091, 1, 0, 0, 0, 62, 1095, 1, 0, 0, 0, 64, 1102, 1, 0, 0, 0, 66, 1127, 1, 0, 0, 0, 68, 1144, 1, 0, 0, 0, 70, 1146, 1, 0, 0, 0, 72, 1331, 1, 0, 0, 0, 74, 1341, 1, 0, 0, 0, 76, 1343, 1, 0, 0, 0, 78, 1348, 1, 0, 0, 0, 80, 1353, 1, 0, 0, 0, 82, 1355, 1, 0, 0, 0, 84, 1359, 1, 0, 0, 0, 86, 1363, 1, 0, 0, 0, 88, 1367, 1, 0, 0, 0, 90, 1371, 1, 0, 0, 0, 92, 1381, 1, 0, 0, 0, 94, 1392, 1, 0, 0, 0, 96, 1409, 1, 0, 0, 0, 98, 1427, 1, 0, 0, 0, 100, 1432, 1, 0, 0, 0, 102, 1435, 1, 0, 0, 0, 104, 1439, 1, 0, 0, 0, 106, 1446, 1, 0, 0, 0, 108, 1455, 1, 0, 0, 0, 110, 1461, 1, 0, 0, 0, 112, 1463, 1, 0, 0, 0, 114, 1477, 1, 0, 0, 0, 116, 1499, 1, 0, 0, 0, 118, 1501, 1, 0, 0, 0, 120, 1509, 1, 0, 0, 0, 122, 1516, 1, 0, 0, 0, 124, 1518, 1, 0, 0, 0, 126, 1532, 1, 0, 0, 0, 128, 1539, 1, 0, 0, 0, 130, 1541, 1, 0, 0, 0, 132, 1545, 1, 0, 0, 0, 134, 1549, 1, 0, 0, 0, 136, 1553, 1, 0, 0, 0, 138, 1557, 1, 0, 0, 0, 140, 1570, 1, 0, 0, 0, 142, 1578, 1, 0, 0, 0, 144, 1581, 1, 0, 0, 0, 146, 1583, 1, 0, 0, 0, 148, 1595, 1, 0, 0, 0, 150, 1605, 1, 0, 0, 0, 152, 1608, 1, 0, 0, 0, 154, 1619, 1, 0, 0, 0, 156, 1627, 1, 0, 0, 0, 158, 1670, 1, 0, 0, 0, 160, 1679, 1, 0, 0, 0, 162, 1707, 1, 0, 0, 0, 164, 1720, 1, 0, 0, 0, 166, 1722, 1, 0, 0, 0, 168, 1728, 1, 0, 0, 0, 170, 1731, 1, 0, 0, 0, 172, 1737, 1, 0, 0, 0, 174, 1743, 1, 0, 0, 0, 176, 1750, 1, 0, 0, 0, 178, 1784, 1, 0, 0, 0, 180, 1792, 1, 0, 0, 0, 182, 1805, 1, 0, 0, 0, 184, 1810, 1, 0, 0, 0, 186, 1821, 1, 0, 0, 0, 188, 1838, 1, 0, 0, 0, 190, 1840, 1, 0, 0, 0, 192, 1845, 1, 0, 0, 0, 194, 1852, 1, 0, 0, 0, 196, 1854, 1, 0, 0, 0, 198, 1857, 1, 0, 0, 0, 200, 1860, 1, 0, 0, 0, 202, 1874, 1, 0, 0, 0, 204, 1882, 1, 0, 0, 0, 206, 1908, 1, 0, 0, 0, 208, 1910, 1, 0, 0, 0, 210, 1927, 1, 0, 0, 0, 212, 1941, 1, 0, 0, 0, 214, 1943, 1, 0, 0, 0, 216, 1946, 1, 0, 0, 0, 218, 1949, 1, 0, 0, 0, 220, 1958, 1, 0, 0, 0, 222, 1978, 1, 0, 0, 0, 224, 1980, 1, 0, 0, 0, 226, 1983, 1, 0, 0, 0, 228, 1996, 1, 0, 0, 0, 230, 1998, 1, 0, 0, 0, 232, 2002, 1, 0, 0, 0, 234, 2010, 1, 0, 0, 0, 236, 2014, 1, 0, 0, 0, 238, 2023, 1, 0, 0, 0, 240, 2029, 1, 0, 0, 0, 242, 2035, 1, 0, 0, 0, 244, 2040, 1, 0, 0, 0, 246, 2086, 1, 0, 0, 0, 248, 2088, 1, 0, 0, 0, 250, 2096, 1, 0, 0, 0, 252, 2104, 1, 0, 0, 0, 254, 2112, 1, 0, 0, 0, 256, 2122, 1, 0, 0, 0, 258, 2124, 1, 0, 0, 0, 260, 2126, 1, 0, 0, 0, 262, 2128, 1, 0, 0, 0, 264, 2141, 1, 0, 0, 0, 266, 2149, 1, 0, 0, 0, 268, 2158, 1, 0, 0, 0, 270, 2162, 1, 0, 0, 0, 272, 2164, 1, 0, 0, 0, 274, 2169, 1, 0, 0, 0, 276, 2171, 1, 0, 0, 0, 278, 2175, 1, 0, 0, 0, 280, 2181, 1, 0, 0, 0, 282, 2189, 1, 0, 0, 0, 284, 2191, 1, 0, 0, 0, 286, 2194, 1, 0, 0, 0, 288, 2201, 1, 0, 0, 0, 290, 2212, 1, 0, 0, 0, 292, 2225, 1, 0, 0, 0, 294, 2227, 1, 0, 0, 0, 296, 2235, 1, 0, 0, 0, 298, 2239, 1, 0, 0, 0, 300, 2247, 1, 0, 0, 0, 302, 2249, 1, 0, 0, 0, 304, 2252, 1, 0, 0, 0, 306, 2259, 1, 0, 0, 0, 308, 2267, 1, 0, 0, 0, 310, 2274, 1, 0, 0, 0, 312, 2282, 1, 0, 0, 0, 314, 2290, 1, 0, 0, 0, 316, 2294, 1, 0, 0, 0, 318, 2296, 1, 0, 0, 0, 320, 2307, 1, 0, 0, 0, 322, 2311, 1, 0, 0, 0, 324, 2323, 1, 0, 0, 0, 326, 2331, 1, 0, 0, 0, 328, 2335, 1, 0, 0, 0, 330, 2347, 1, 0, 0, 0, 332, 2359, 1, 0, 0, 0, 334, 2364, 1, 0, 0, 0, 336, 2369, 1, 0, 0, 0, 338, 2371, 1, 0, 0, 0, 340, 2375, 1, 0, 0, 0, 342, 2379, 1, 0, 0, 0, 344, 2386, 1, 0, 0, 0, 346, 2388, 1, 0, 0, 0, 348, 2401, 1, 0, 0, 0, 350, 2440, 1, 0, 0, 0, 352, 2442, 1, 0, 0, 0, 354, 2447, 1, 0, 0, 0, 356, 2452, 1, 0, 0, 0, 358, 2459, 1, 0, 0, 0, 360, 2464, 1, 0, 0, 0, 362, 2469, 1, 0, 0, 0, 364, 2475, 1, 0, 0, 0, 366, 2477, 1, 0, 0, 0, 368, 2486, 1, 0, 0, 0, 370, 2498, 1, 0, 0, 0, 372, 2578, 1, 0, 0, 0, 374, 2584, 1, 0, 0, 0, 376, 2610, 1, 0, 0, 0, 378, 2612, 1, 0, 0, 0, 380, 2634, 1, 0, 0, 0, 382, 2639, 1, 0, 0, 0, 384, 2643, 1, 0, 0, 0, 386, 2675, 1, 0, 0, 0, 388, 2677, 1, 0, 0, 0, 390, 2688, 1, 0, 0, 0, 392, 2694, 1, 0, 0, 0, 394, 2696, 1, 0, 0, 0, 396, 2728, 1, 0, 0, 0, 398, 2735, 1, 0, 0, 0, 400, 2741, 1, 0, 0, 0, 402, 2747, 1, 0, 0, 0, 404, 2762, 1, 0, 0, 0, 406, 2772, 1, 0, 0, 0, 408, 2780, 1, 0, 0, 0, 410, 2783, 1, 0, 0, 0, 412, 2786, 1, 0, 0, 0, 414, 2789, 1, 0, 0, 0, 416, 2911, 1, 0, 0, 0, 418, 3045, 1, 0, 0, 0, 420, 3073, 1, 0, 0, 0, 422, 3090, 1, 0, 0, 0, 424, 3107, 1, 0, 0, 0, 426, 3109, 1, 0, 0, 0, 428, 3112, 1, 0, 0, 0, 430, 3138, 1, 0, 0, 0, 432, 3143, 1, 0, 0, 0, 434, 3170, 1, 0, 0, 0, 436, 3181, 1, 0, 0, 0, 438, 3318, 1, 0, 0, 0, 440, 3320, 1, 0, 0, 0, 442, 3343, 1, 0, 0, 0, 444, 3355, 1, 0, 0, 0, 446, 3360, 1, 0, 0, 0, 448, 3368, 1, 0, 0, 0, 450, 3376, 1, 0, 0, 0, 452, 3388, 1, 0, 0, 0, 454, 3422, 1, 0, 0, 0, 456, 3424, 1, 0, 0, 0, 458, 3442, 1, 0, 0, 0, 460, 3451, 1, 0, 0, 0, 462, 3481, 1, 0, 0, 0, 464, 3540, 1, 0, 0, 0, 466, 3542, 1, 0, 0, 0, 468, 3571, 1, 0, 0, 0, 470, 3573, 1, 0, 0, 0, 472, 3589, 1, 0, 0, 0, 474, 3601, 1, 0, 0, 0, 476, 3603, 1, 0, 0, 0, 478, 3607, 1, 0, 0, 0, 480, 3617, 1, 0, 0, 0, 482, 3627, 1, 0, 0, 0, 484, 3632, 1, 0, 0, 0, 486, 3639, 1, 0, 0, 0, 488, 3643, 1, 0, 0, 0, 490, 3662, 1, 0, 0, 0, 492, 3667, 1, 0, 0, 0, 494, 3669, 1, 0, 0, 0, 496, 3697, 1, 0, 0, 0, 498, 3700, 1, 0, 0, 0, 500, 3721, 1, 0, 0, 0, 502, 3762, 1, 0, 0, 0, 504, 3764, 1, 0, 0, 0, 506, 3811, 1, 0, 0, 0, 508, 3813, 1, 0, 0, 0, 510, 3838, 1, 0, 0, 0, 512, 3840, 1, 0, 0, 0, 514, 3848, 1, 0, 0, 0, 516, 3874, 1, 0, 0, 0, 518, 3876, 1, 0, 0, 0, 520, 3896, 1, 0, 0, 0, 522, 3898, 1, 0, 0, 0, 524, 3909, 1, 0, 0, 0, 526, 3922, 1, 0, 0, 0, 528, 3957, 1, 0, 0, 0, 530, 3959, 1, 0, 0, 0, 532, 3962, 1, 0, 0, 0, 534, 3967, 1, 0, 0, 0, 536, 3969, 1, 0, 0, 0, 538, 3991, 1, 0, 0, 0, 540, 3993, 1, 0, 0, 0, 542, 3997, 1, 0, 0, 0, 544, 4006, 1, 0, 0, 0, 546, 4016, 1, 0, 0, 0, 548, 4020, 1, 0, 0, 0, 550, 4024, 1, 0, 0, 0, 552, 4028, 1, 0, 0, 0, 554, 4104, 1, 0, 0, 0, 556, 4106, 1, 0, 0, 0, 558, 4109, 1, 0, 0, 0, 560, 4113, 1, 0, 0, 0, 562, 4118, 1, 0, 0, 0, 564, 4120, 1, 0, 0, 0, 566, 4131, 1, 0, 0, 0, 568, 4148, 1, 0, 0, 0, 570, 4164, 1, 0, 0, 0, 572, 4173, 1, 0, 0, 0, 574, 4188, 1, 0, 0, 0, 576, 4218, 1, 0, 0, 0, 578, 4220, 1, 0, 0, 0, 580, 4237, 1, 0, 0, 0, 582, 4253, 1, 0, 0, 0, 584, 4255, 1, 0, 0, 0, 586, 4274, 1, 0, 0, 0, 588, 4279, 1, 0, 0, 0, 590, 4294, 1, 0, 0, 0, 592, 4302, 1, 0, 0, 0, 594, 4310, 1, 0, 0, 0, 596, 4318, 1, 0, 0, 0, 598, 4326, 1, 0, 0, 0, 600, 4334, 1, 0, 0, 0, 602, 4342, 1, 0, 0, 0, 604, 4344, 1, 0, 0, 0, 606, 4354, 1, 0, 0, 0, 608, 4362, 1, 0, 0, 0, 610, 4378, 1, 0, 0, 0, 612, 4382, 1, 0, 0, 0, 614, 4387, 1, 0, 0, 0, 616, 4389, 1, 0, 0, 0, 618, 4400, 1, 0, 0, 0, 620, 4402, 1, 0, 0, 0, 622, 4420, 1, 0, 0, 0, 624, 4425, 1, 0, 0, 0, 626, 4433, 1, 0, 0, 0, 628, 4441, 1, 0, 0, 0, 630, 4445, 1, 0, 0, 0, 632, 4457, 1, 0, 0, 0, 634, 4462, 1, 0, 0, 0, 636, 4473, 1, 0, 0, 0, 638, 4480, 1, 0, 0, 0, 640, 4482, 1, 0, 0, 0, 642, 4486, 1, 0, 0, 0, 644, 4488, 1, 0, 0, 0, 646, 4493, 1, 0, 0, 0, 648, 4495, 1, 0, 0, 0, 650, 4497, 1, 0, 0, 0, 652, 4550, 1, 0, 0, 0, 654, 4717, 1, 0, 0, 0, 656, 4719, 1, 0, 0, 0, 658, 4728, 1, 0, 0, 0, 660, 4730, 1, 0, 0, 0, 662, 4741, 1, 0, 0, 0, 664, 4743, 1, 0, 0, 0, 666, 4748, 1, 0, 0, 0, 668, 4750, 1, 0, 0, 0, 670, 4752, 1, 0, 0, 0, 672, 4754, 1, 0, 0, 0, 674, 4756, 1, 0, 0, 0, 676, 4758, 1, 0, 0, 0, 678, 4760, 1, 0, 0, 0, 680, 4762, 1, 0, 0, 0, 682, 4764, 1, 0, 0, 0, 684, 4766, 1, 0, 0, 0, 686, 4768, 1, 0, 0, 0, 688, 4776, 1, 0, 0, 0, 690, 4784, 1, 0, 0, 0, 692, 4798, 1, 0, 0, 0, 694, 4800, 1, 0, 0, 0, 696, 698, 3, 2, 1, 0, 697, 696, 1, 0, 0, 0, 698, 701, 1, 0, 0, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 702, 1, 0, 0, 0, 701, 699, 1, 0, 0, 0, 702, 703, 5, 0, 0, 1, 703, 1, 1, 0, 0, 0, 704, 707, 3, 4, 2, 0, 705, 707, 3, 10, 5, 0, 706, 704, 1, 0, 0, 0, 706, 705, 1, 0, 0, 0, 707, 709, 1, 0, 0, 0, 708, 710, 5, 398, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 3, 1, 0, 0, 0, 711, 721, 5, 119, 0, 0, 712, 714, 3, 6, 3, 0, 713, 712, 1, 0, 0, 0, 714, 717, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 718, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 722, 3, 10, 5, 0, 719, 720, 5, 284, 0, 0, 720, 722, 3, 362, 181, 0, 721, 715, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 5, 1, 0, 0, 0, 723, 746, 5, 122, 0, 0, 724, 746, 5, 138, 0, 0, 725, 746, 5, 88, 0, 0, 726, 728, 5, 37, 0, 0, 727, 729, 7, 0, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 746, 1, 0, 0, 0, 730, 746, 5, 192, 0, 0, 731, 746, 5, 21, 0, 0, 732, 746, 5, 10, 0, 0, 733, 746, 5, 275, 0, 0, 734, 746, 5, 191, 0, 0, 735, 746, 5, 19, 0, 0, 736, 738, 5, 377, 0, 0, 737, 739, 5, 225, 0, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 741, 1, 0, 0, 0, 740, 742, 3, 8, 4, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 746, 1, 0, 0, 0, 743, 746, 5, 79, 0, 0, 744, 746, 5, 78, 0, 0, 745, 723, 1, 0, 0, 0, 745, 724, 1, 0, 0, 0, 745, 725, 1, 0, 0, 0, 745, 726, 1, 0, 0, 0, 745, 730, 1, 0, 0, 0, 745, 731, 1, 0, 0, 0, 745, 732, 1, 0, 0, 0, 745, 733, 1, 0, 0, 0, 745, 734, 1, 0, 0, 0, 745, 735, 1, 0, 0, 0, 745, 736, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 744, 1, 0, 0, 0, 746, 7, 1, 0, 0, 0, 747, 748, 7, 1, 0, 0, 748, 9, 1, 0, 0, 0, 749, 821, 3, 362, 181, 0, 750, 821, 3, 12, 6, 0, 751, 821, 3, 16, 8, 0, 752, 821, 3, 18, 9, 0, 753, 821, 3, 20, 10, 0, 754, 821, 3, 24, 12, 0, 755, 756, 5, 277, 0, 0, 756, 757, 5, 320, 0, 0, 757, 760, 3, 474, 237, 0, 758, 759, 5, 387, 0, 0, 759, 761, 3, 230, 115, 0, 760, 758, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 821, 1, 0, 0, 0, 762, 821, 3, 28, 14, 0, 763, 764, 5, 86, 0, 0, 764, 765, 5, 139, 0, 0, 765, 767, 3, 480, 240, 0, 766, 768, 3, 496, 248, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 821, 1, 0, 0, 0, 769, 770, 5, 365, 0, 0, 770, 771, 3, 480, 240, 0, 771, 773, 3, 394, 197, 0, 772, 774, 3, 496, 248, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 821, 1, 0, 0, 0, 775, 821, 3, 396, 198, 0, 776, 778, 5, 203, 0, 0, 777, 779, 5, 436, 0, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 5, 166, 0, 0, 781, 786, 3, 480, 240, 0, 782, 784, 5, 17, 0, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 787, 3, 642, 321, 0, 786, 783, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 5, 370, 0, 0, 789, 790, 3, 458, 229, 0, 790, 791, 5, 224, 0, 0, 791, 792, 3, 584, 292, 0, 792, 793, 3, 400, 200, 0, 793, 821, 1, 0, 0, 0, 794, 795, 5, 249, 0, 0, 795, 796, 3, 642, 321, 0, 796, 797, 5, 139, 0, 0, 797, 798, 3, 362, 181, 0, 798, 821, 1, 0, 0, 0, 799, 800, 5, 115, 0, 0, 800, 801, 3, 642, 321, 0, 801, 802, 5, 370, 0, 0, 802, 803, 3, 298, 149, 0, 803, 821, 1, 0, 0, 0, 804, 805, 5, 304, 0, 0, 805, 810, 3, 652, 326, 0, 806, 807, 7, 2, 0, 0, 807, 809, 3, 652, 326, 0, 808, 806, 1, 0, 0, 0, 809, 812, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 813, 817, 5, 405, 0, 0, 814, 816, 9, 0, 0, 0, 815, 814, 1, 0, 0, 0, 816, 819, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 818, 821, 1, 0, 0, 0, 819, 817, 1, 0, 0, 0, 820, 749, 1, 0, 0, 0, 820, 750, 1, 0, 0, 0, 820, 751, 1, 0, 0, 0, 820, 752, 1, 0, 0, 0, 820, 753, 1, 0, 0, 0, 820, 754, 1, 0, 0, 0, 820, 755, 1, 0, 0, 0, 820, 762, 1, 0, 0, 0, 820, 763, 1, 0, 0, 0, 820, 769, 1, 0, 0, 0, 820, 775, 1, 0, 0, 0, 820, 776, 1, 0, 0, 0, 820, 794, 1, 0, 0, 0, 820, 799, 1, 0, 0, 0, 820, 804, 1, 0, 0, 0, 821, 11, 1, 0, 0, 0, 822, 823, 5, 187, 0, 0, 823, 825, 5, 66, 0, 0, 824, 826, 5, 188, 0, 0, 825, 824, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 5, 158, 0, 0, 828, 830, 5, 426, 0, 0, 829, 831, 5, 235, 0, 0, 830, 829, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 5, 166, 0, 0, 833, 834, 5, 329, 0, 0, 834, 836, 3, 628, 314, 0, 835, 837, 3, 56, 28, 0, 836, 835, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 13, 1, 0, 0, 0, 838, 840, 5, 134, 0, 0, 839, 841, 5, 204, 0, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 5, 279, 0, 0, 843, 844, 5, 399, 0, 0, 844, 845, 5, 426, 0, 0, 845, 846, 5, 400, 0, 0, 846, 15, 1, 0, 0, 0, 847, 848, 5, 120, 0, 0, 848, 849, 5, 329, 0, 0, 849, 850, 3, 628, 314, 0, 850, 851, 5, 341, 0, 0, 851, 853, 5, 426, 0, 0, 852, 854, 3, 14, 7, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 17, 1, 0, 0, 0, 855, 861, 5, 153, 0, 0, 856, 858, 5, 123, 0, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 5, 329, 0, 0, 860, 862, 3, 628, 314, 0, 861, 857, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 139, 0, 0, 864, 866, 5, 426, 0, 0, 865, 867, 3, 426, 213, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 19, 1, 0, 0, 0, 868, 869, 5, 277, 0, 0, 869, 870, 5, 103, 0, 0, 870, 873, 3, 22, 11, 0, 871, 872, 5, 278, 0, 0, 872, 874, 3, 22, 11, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 877, 1, 0, 0, 0, 875, 876, 5, 387, 0, 0, 876, 878, 3, 230, 115, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 21, 1, 0, 0, 0, 879, 882, 3, 474, 237, 0, 880, 881, 5, 395, 0, 0, 881, 883, 3, 26, 13, 0, 882, 880, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 23, 1, 0, 0, 0, 884, 885, 5, 277, 0, 0, 885, 886, 5, 187, 0, 0, 886, 889, 3, 22, 11, 0, 887, 888, 5, 166, 0, 0, 888, 890, 3, 474, 237, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 892, 5, 387, 0, 0, 892, 894, 3, 230, 115, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 25, 1, 0, 0, 0, 895, 898, 5, 426, 0, 0, 896, 897, 5, 395, 0, 0, 897, 899, 5, 426, 0, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 27, 1, 0, 0, 0, 900, 959, 3, 42, 21, 0, 901, 959, 3, 46, 23, 0, 902, 959, 3, 48, 24, 0, 903, 959, 3, 438, 219, 0, 904, 959, 3, 54, 27, 0, 905, 959, 3, 52, 26, 0, 906, 959, 3, 414, 207, 0, 907, 959, 3, 64, 32, 0, 908, 959, 3, 72, 36, 0, 909, 959, 3, 138, 69, 0, 910, 959, 3, 160, 80, 0, 911, 959, 3, 176, 88, 0, 912, 959, 3, 180, 90, 0, 913, 959, 3, 184, 92, 0, 914, 959, 3, 182, 91, 0, 915, 959, 3, 174, 87, 0, 916, 959, 3, 178, 89, 0, 917, 959, 3, 146, 73, 0, 918, 959, 3, 152, 76, 0, 919, 959, 3, 148, 74, 0, 920, 959, 3, 150, 75, 0, 921, 959, 3, 154, 77, 0, 922, 959, 3, 156, 78, 0, 923, 959, 3, 158, 79, 0, 924, 959, 3, 66, 33, 0, 925, 959, 3, 76, 38, 0, 926, 959, 3, 82, 41, 0, 927, 959, 3, 78, 39, 0, 928, 959, 3, 84, 42, 0, 929, 959, 3, 86, 43, 0, 930, 959, 3, 88, 44, 0, 931, 959, 3, 90, 45, 0, 932, 959, 3, 92, 46, 0, 933, 959, 3, 106, 53, 0, 934, 959, 3, 98, 49, 0, 935, 959, 3, 108, 54, 0, 936, 959, 3, 100, 50, 0, 937, 959, 3, 94, 47, 0, 938, 959, 3, 96, 48, 0, 939, 959, 3, 104, 52, 0, 940, 959, 3, 102, 51, 0, 941, 942, 5, 1, 0, 0, 942, 944, 7, 3, 0, 0, 943, 945, 5, 431, 0, 0, 944, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 959, 1, 0, 0, 0, 948, 949, 5, 176, 0, 0, 949, 951, 5, 258, 0, 0, 950, 952, 5, 426, 0, 0, 951, 950, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 959, 1, 0, 0, 0, 955, 959, 3, 654, 327, 0, 956, 959, 3, 440, 220, 0, 957, 959, 3, 442, 221, 0, 958, 900, 1, 0, 0, 0, 958, 901, 1, 0, 0, 0, 958, 902, 1, 0, 0, 0, 958, 903, 1, 0, 0, 0, 958, 904, 1, 0, 0, 0, 958, 905, 1, 0, 0, 0, 958, 906, 1, 0, 0, 0, 958, 907, 1, 0, 0, 0, 958, 908, 1, 0, 0, 0, 958, 909, 1, 0, 0, 0, 958, 910, 1, 0, 0, 0, 958, 911, 1, 0, 0, 0, 958, 912, 1, 0, 0, 0, 958, 913, 1, 0, 0, 0, 958, 914, 1, 0, 0, 0, 958, 915, 1, 0, 0, 0, 958, 916, 1, 0, 0, 0, 958, 917, 1, 0, 0, 0, 958, 918, 1, 0, 0, 0, 958, 919, 1, 0, 0, 0, 958, 920, 1, 0, 0, 0, 958, 921, 1, 0, 0, 0, 958, 922, 1, 0, 0, 0, 958, 923, 1, 0, 0, 0, 958, 924, 1, 0, 0, 0, 958, 925, 1, 0, 0, 0, 958, 926, 1, 0, 0, 0, 958, 927, 1, 0, 0, 0, 958, 928, 1, 0, 0, 0, 958, 929, 1, 0, 0, 0, 958, 930, 1, 0, 0, 0, 958, 931, 1, 0, 0, 0, 958, 932, 1, 0, 0, 0, 958, 933, 1, 0, 0, 0, 958, 934, 1, 0, 0, 0, 958, 935, 1, 0, 0, 0, 958, 936, 1, 0, 0, 0, 958, 937, 1, 0, 0, 0, 958, 938, 1, 0, 0, 0, 958, 939, 1, 0, 0, 0, 958, 940, 1, 0, 0, 0, 958, 941, 1, 0, 0, 0, 958, 948, 1, 0, 0, 0, 958, 955, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 958, 957, 1, 0, 0, 0, 959, 29, 1, 0, 0, 0, 960, 961, 5, 151, 0, 0, 961, 962, 5, 117, 0, 0, 962, 31, 1, 0, 0, 0, 963, 964, 5, 151, 0, 0, 964, 965, 5, 216, 0, 0, 965, 966, 5, 117, 0, 0, 966, 33, 1, 0, 0, 0, 967, 968, 7, 4, 0, 0, 968, 35, 1, 0, 0, 0, 969, 970, 3, 666, 333, 0, 970, 971, 5, 284, 0, 0, 971, 37, 1, 0, 0, 0, 972, 973, 3, 668, 334, 0, 973, 974, 5, 284, 0, 0, 974, 39, 1, 0, 0, 0, 975, 976, 5, 321, 0, 0, 976, 977, 5, 17, 0, 0, 977, 978, 5, 92, 0, 0, 978, 41, 1, 0, 0, 0, 979, 981, 5, 58, 0, 0, 980, 982, 5, 273, 0, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 3, 70, 35, 0, 984, 986, 3, 32, 16, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 989, 3, 476, 238, 0, 988, 990, 3, 50, 25, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 992, 1, 0, 0, 0, 991, 993, 3, 426, 213, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 996, 1, 0, 0, 0, 994, 995, 5, 196, 0, 0, 995, 997, 5, 426, 0, 0, 996, 994, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 1001, 1, 0, 0, 0, 998, 999, 5, 387, 0, 0, 999, 1000, 5, 76, 0, 0, 1000, 1002, 3, 230, 115, 0, 1001, 998, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1020, 1, 0, 0, 0, 1003, 1004, 5, 58, 0, 0, 1004, 1005, 5, 273, 0, 0, 1005, 1007, 3, 70, 35, 0, 1006, 1008, 3, 32, 16, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 3, 476, 238, 0, 1010, 1012, 3, 50, 25, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1017, 3, 44, 22, 0, 1014, 1015, 5, 387, 0, 0, 1015, 1016, 5, 76, 0, 0, 1016, 1018, 3, 230, 115, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1020, 1, 0, 0, 0, 1019, 979, 1, 0, 0, 0, 1019, 1003, 1, 0, 0, 0, 1020, 43, 1, 0, 0, 0, 1021, 1022, 5, 370, 0, 0, 1022, 1023, 3, 474, 237, 0, 1023, 45, 1, 0, 0, 0, 1024, 1025, 5, 368, 0, 0, 1025, 1026, 3, 474, 237, 0, 1026, 47, 1, 0, 0, 0, 1027, 1028, 5, 101, 0, 0, 1028, 1030, 3, 70, 35, 0, 1029, 1031, 3, 30, 15, 0, 1030, 1029, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1034, 3, 474, 237, 0, 1033, 1035, 3, 34, 17, 0, 1034, 1033, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 49, 1, 0, 0, 0, 1036, 1037, 5, 47, 0, 0, 1037, 1038, 5, 426, 0, 0, 1038, 51, 1, 0, 0, 0, 1039, 1041, 5, 351, 0, 0, 1040, 1042, 5, 329, 0, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1049, 3, 628, 314, 0, 1044, 1045, 5, 46, 0, 0, 1045, 1046, 5, 399, 0, 0, 1046, 1047, 3, 254, 127, 0, 1047, 1048, 5, 400, 0, 0, 1048, 1050, 1, 0, 0, 0, 1049, 1044, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1052, 1, 0, 0, 0, 1051, 1053, 5, 135, 0, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 53, 1, 0, 0, 0, 1054, 1055, 5, 101, 0, 0, 1055, 1057, 5, 329, 0, 0, 1056, 1058, 3, 30, 15, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 3, 480, 240, 0, 1060, 1062, 5, 255, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1065, 3, 14, 7, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 55, 1, 0, 0, 0, 1066, 1067, 5, 160, 0, 0, 1067, 1068, 5, 426, 0, 0, 1068, 1069, 5, 301, 0, 0, 1069, 1070, 5, 426, 0, 0, 1070, 57, 1, 0, 0, 0, 1071, 1074, 3, 642, 321, 0, 1072, 1073, 5, 395, 0, 0, 1073, 1075, 3, 642, 321, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1089, 1, 0, 0, 0, 1076, 1086, 3, 642, 321, 0, 1077, 1082, 5, 395, 0, 0, 1078, 1083, 5, 104, 0, 0, 1079, 1083, 5, 175, 0, 0, 1080, 1083, 5, 375, 0, 0, 1081, 1083, 3, 642, 321, 0, 1082, 1078, 1, 0, 0, 0, 1082, 1079, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1085, 1, 0, 0, 0, 1084, 1077, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1090, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1076, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 59, 1, 0, 0, 0, 1091, 1093, 3, 58, 29, 0, 1092, 1094, 3, 630, 315, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 61, 1, 0, 0, 0, 1095, 1097, 3, 478, 239, 0, 1096, 1098, 3, 630, 315, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1101, 3, 262, 131, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 63, 1, 0, 0, 0, 1102, 1125, 7, 5, 0, 0, 1103, 1105, 3, 70, 35, 0, 1104, 1106, 5, 122, 0, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 3, 474, 237, 0, 1108, 1126, 1, 0, 0, 0, 1109, 1111, 5, 69, 0, 0, 1110, 1112, 5, 122, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1126, 3, 474, 237, 0, 1114, 1116, 5, 141, 0, 0, 1115, 1117, 5, 122, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1126, 3, 560, 280, 0, 1119, 1122, 5, 138, 0, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1119, 1, 0, 0, 0, 1121, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1126, 3, 62, 31, 0, 1124, 1126, 3, 62, 31, 0, 1125, 1103, 1, 0, 0, 0, 1125, 1109, 1, 0, 0, 0, 1125, 1114, 1, 0, 0, 0, 1125, 1121, 1, 0, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 65, 1, 0, 0, 0, 1127, 1128, 5, 10, 0, 0, 1128, 1129, 5, 329, 0, 0, 1129, 1142, 3, 628, 314, 0, 1130, 1131, 5, 52, 0, 0, 1131, 1138, 5, 319, 0, 0, 1132, 1139, 5, 215, 0, 0, 1133, 1134, 5, 134, 0, 0, 1134, 1136, 5, 46, 0, 0, 1135, 1137, 3, 254, 127, 0, 1136, 1135, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1139, 1, 0, 0, 0, 1138, 1132, 1, 0, 0, 0, 1138, 1133, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1143, 1, 0, 0, 0, 1140, 1141, 5, 33, 0, 0, 1141, 1143, 5, 204, 0, 0, 1142, 1130, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 67, 1, 0, 0, 0, 1144, 1145, 7, 6, 0, 0, 1145, 69, 1, 0, 0, 0, 1146, 1147, 7, 7, 0, 0, 1147, 71, 1, 0, 0, 0, 1148, 1149, 5, 308, 0, 0, 1149, 1152, 7, 8, 0, 0, 1150, 1151, 5, 184, 0, 0, 1151, 1153, 3, 194, 97, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1332, 1, 0, 0, 0, 1154, 1156, 5, 308, 0, 0, 1155, 1157, 5, 122, 0, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1162, 5, 330, 0, 0, 1159, 1160, 3, 68, 34, 0, 1160, 1161, 3, 474, 237, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1159, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1165, 1, 0, 0, 0, 1164, 1166, 3, 74, 37, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1332, 1, 0, 0, 0, 1167, 1168, 5, 308, 0, 0, 1168, 1172, 5, 379, 0, 0, 1169, 1170, 3, 68, 34, 0, 1170, 1171, 3, 474, 237, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1169, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1177, 1, 0, 0, 0, 1174, 1175, 5, 184, 0, 0, 1175, 1178, 3, 194, 97, 0, 1176, 1178, 3, 194, 97, 0, 1177, 1174, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1332, 1, 0, 0, 0, 1179, 1180, 5, 308, 0, 0, 1180, 1181, 5, 202, 0, 0, 1181, 1185, 5, 379, 0, 0, 1182, 1183, 3, 68, 34, 0, 1183, 1184, 3, 474, 237, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1182, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1190, 1, 0, 0, 0, 1187, 1188, 5, 184, 0, 0, 1188, 1191, 3, 194, 97, 0, 1189, 1191, 3, 194, 97, 0, 1190, 1187, 1, 0, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1332, 1, 0, 0, 0, 1192, 1194, 5, 308, 0, 0, 1193, 1195, 5, 315, 0, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 46, 0, 0, 1197, 1198, 3, 68, 34, 0, 1198, 1202, 3, 478, 239, 0, 1199, 1200, 3, 68, 34, 0, 1200, 1201, 3, 474, 237, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1199, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1207, 1, 0, 0, 0, 1204, 1205, 5, 184, 0, 0, 1205, 1208, 3, 194, 97, 0, 1206, 1208, 3, 194, 97, 0, 1207, 1204, 1, 0, 0, 0, 1207, 1206, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1332, 1, 0, 0, 0, 1209, 1210, 5, 308, 0, 0, 1210, 1213, 5, 142, 0, 0, 1211, 1212, 5, 184, 0, 0, 1212, 1214, 3, 560, 280, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1332, 1, 0, 0, 0, 1215, 1216, 5, 308, 0, 0, 1216, 1217, 5, 239, 0, 0, 1217, 1219, 3, 478, 239, 0, 1218, 1220, 3, 630, 315, 0, 1219, 1218, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1222, 1, 0, 0, 0, 1221, 1223, 3, 496, 248, 0, 1222, 1221, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1226, 3, 544, 272, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1228, 1, 0, 0, 0, 1227, 1229, 3, 388, 194, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1332, 1, 0, 0, 0, 1230, 1231, 5, 308, 0, 0, 1231, 1237, 5, 58, 0, 0, 1232, 1233, 3, 70, 35, 0, 1233, 1234, 3, 474, 237, 0, 1234, 1238, 1, 0, 0, 0, 1235, 1236, 5, 329, 0, 0, 1236, 1238, 3, 480, 240, 0, 1237, 1232, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1332, 1, 0, 0, 0, 1239, 1240, 5, 308, 0, 0, 1240, 1241, 5, 329, 0, 0, 1241, 1245, 5, 122, 0, 0, 1242, 1243, 3, 68, 34, 0, 1243, 1244, 3, 474, 237, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1242, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 5, 184, 0, 0, 1248, 1250, 3, 194, 97, 0, 1249, 1251, 3, 630, 315, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1332, 1, 0, 0, 0, 1252, 1253, 5, 308, 0, 0, 1253, 1254, 5, 332, 0, 0, 1254, 1258, 3, 480, 240, 0, 1255, 1256, 5, 399, 0, 0, 1256, 1257, 5, 426, 0, 0, 1257, 1259, 5, 400, 0, 0, 1258, 1255, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1332, 1, 0, 0, 0, 1260, 1261, 5, 308, 0, 0, 1261, 1273, 5, 191, 0, 0, 1262, 1263, 3, 70, 35, 0, 1263, 1265, 3, 474, 237, 0, 1264, 1266, 5, 122, 0, 0, 1265, 1264, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1274, 1, 0, 0, 0, 1267, 1269, 3, 60, 30, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1272, 5, 122, 0, 0, 1271, 1270, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1262, 1, 0, 0, 0, 1273, 1268, 1, 0, 0, 0, 1274, 1332, 1, 0, 0, 0, 1275, 1276, 5, 308, 0, 0, 1276, 1303, 5, 50, 0, 0, 1277, 1278, 5, 51, 0, 0, 1278, 1279, 5, 405, 0, 0, 1279, 1304, 5, 431, 0, 0, 1280, 1281, 3, 70, 35, 0, 1281, 1282, 3, 474, 237, 0, 1282, 1287, 1, 0, 0, 0, 1283, 1285, 3, 60, 30, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1280, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1289, 1, 0, 0, 0, 1288, 1290, 3, 408, 204, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, 3, 410, 205, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1296, 3, 412, 206, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1299, 3, 544, 272, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1301, 1, 0, 0, 0, 1300, 1302, 3, 388, 194, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1304, 1, 0, 0, 0, 1303, 1277, 1, 0, 0, 0, 1303, 1286, 1, 0, 0, 0, 1304, 1332, 1, 0, 0, 0, 1305, 1306, 5, 308, 0, 0, 1306, 1332, 5, 346, 0, 0, 1307, 1308, 5, 308, 0, 0, 1308, 1309, 5, 54, 0, 0, 1309, 1332, 5, 426, 0, 0, 1310, 1311, 5, 308, 0, 0, 1311, 1315, 5, 280, 0, 0, 1312, 1313, 5, 243, 0, 0, 1313, 1316, 3, 642, 321, 0, 1314, 1316, 5, 244, 0, 0, 1315, 1312, 1, 0, 0, 0, 1315, 1314, 1, 0, 0, 0, 1316, 1332, 1, 0, 0, 0, 1317, 1318, 5, 308, 0, 0, 1318, 1332, 5, 70, 0, 0, 1319, 1321, 5, 308, 0, 0, 1320, 1322, 5, 138, 0, 0, 1321, 1320, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1324, 7, 9, 0, 0, 1324, 1325, 5, 224, 0, 0, 1325, 1329, 3, 480, 240, 0, 1326, 1327, 3, 68, 34, 0, 1327, 1328, 3, 474, 237, 0, 1328, 1330, 1, 0, 0, 0, 1329, 1326, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1332, 1, 0, 0, 0, 1331, 1148, 1, 0, 0, 0, 1331, 1154, 1, 0, 0, 0, 1331, 1167, 1, 0, 0, 0, 1331, 1179, 1, 0, 0, 0, 1331, 1192, 1, 0, 0, 0, 1331, 1209, 1, 0, 0, 0, 1331, 1215, 1, 0, 0, 0, 1331, 1230, 1, 0, 0, 0, 1331, 1239, 1, 0, 0, 0, 1331, 1252, 1, 0, 0, 0, 1331, 1260, 1, 0, 0, 0, 1331, 1275, 1, 0, 0, 0, 1331, 1305, 1, 0, 0, 0, 1331, 1307, 1, 0, 0, 0, 1331, 1310, 1, 0, 0, 0, 1331, 1317, 1, 0, 0, 0, 1331, 1319, 1, 0, 0, 0, 1332, 73, 1, 0, 0, 0, 1333, 1334, 5, 384, 0, 0, 1334, 1335, 3, 642, 321, 0, 1335, 1336, 5, 405, 0, 0, 1336, 1337, 5, 426, 0, 0, 1337, 1342, 1, 0, 0, 0, 1338, 1339, 5, 184, 0, 0, 1339, 1342, 3, 194, 97, 0, 1340, 1342, 3, 194, 97, 0, 1341, 1333, 1, 0, 0, 0, 1341, 1338, 1, 0, 0, 0, 1341, 1340, 1, 0, 0, 0, 1342, 75, 1, 0, 0, 0, 1343, 1344, 5, 190, 0, 0, 1344, 1345, 5, 329, 0, 0, 1345, 1346, 3, 628, 314, 0, 1346, 1347, 3, 80, 40, 0, 1347, 77, 1, 0, 0, 0, 1348, 1349, 5, 190, 0, 0, 1349, 1350, 3, 70, 35, 0, 1350, 1351, 3, 474, 237, 0, 1351, 1352, 3, 80, 40, 0, 1352, 79, 1, 0, 0, 0, 1353, 1354, 7, 10, 0, 0, 1354, 81, 1, 0, 0, 0, 1355, 1356, 5, 361, 0, 0, 1356, 1357, 5, 329, 0, 0, 1357, 1358, 3, 628, 314, 0, 1358, 83, 1, 0, 0, 0, 1359, 1360, 5, 361, 0, 0, 1360, 1361, 3, 70, 35, 0, 1361, 1362, 3, 474, 237, 0, 1362, 85, 1, 0, 0, 0, 1363, 1364, 5, 58, 0, 0, 1364, 1365, 5, 287, 0, 0, 1365, 1366, 3, 642, 321, 0, 1366, 87, 1, 0, 0, 0, 1367, 1368, 5, 101, 0, 0, 1368, 1369, 5, 287, 0, 0, 1369, 1370, 3, 642, 321, 0, 1370, 89, 1, 0, 0, 0, 1371, 1372, 5, 143, 0, 0, 1372, 1374, 3, 118, 59, 0, 1373, 1375, 3, 112, 56, 0, 1374, 1373, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 5, 341, 0, 0, 1377, 1379, 3, 124, 62, 0, 1378, 1380, 3, 130, 65, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 91, 1, 0, 0, 0, 1381, 1383, 5, 283, 0, 0, 1382, 1384, 3, 132, 66, 0, 1383, 1382, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1387, 3, 118, 59, 0, 1386, 1388, 3, 112, 56, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1390, 5, 139, 0, 0, 1390, 1391, 3, 124, 62, 0, 1391, 93, 1, 0, 0, 0, 1392, 1394, 5, 143, 0, 0, 1393, 1395, 5, 287, 0, 0, 1394, 1393, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1401, 3, 642, 321, 0, 1397, 1398, 5, 397, 0, 0, 1398, 1400, 3, 642, 321, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1403, 1, 0, 0, 0, 1401, 1399, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1404, 1, 0, 0, 0, 1403, 1401, 1, 0, 0, 0, 1404, 1405, 5, 341, 0, 0, 1405, 1407, 3, 124, 62, 0, 1406, 1408, 3, 136, 68, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 95, 1, 0, 0, 0, 1409, 1411, 5, 283, 0, 0, 1410, 1412, 3, 134, 67, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1414, 1, 0, 0, 0, 1413, 1415, 5, 287, 0, 0, 1414, 1413, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1421, 3, 642, 321, 0, 1417, 1418, 5, 397, 0, 0, 1418, 1420, 3, 642, 321, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1423, 1, 0, 0, 0, 1421, 1419, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1424, 1425, 5, 139, 0, 0, 1425, 1426, 3, 124, 62, 0, 1426, 97, 1, 0, 0, 0, 1427, 1428, 5, 308, 0, 0, 1428, 1429, 5, 287, 0, 0, 1429, 1430, 5, 143, 0, 0, 1430, 1431, 3, 126, 63, 0, 1431, 99, 1, 0, 0, 0, 1432, 1433, 5, 308, 0, 0, 1433, 1434, 5, 288, 0, 0, 1434, 101, 1, 0, 0, 0, 1435, 1436, 5, 308, 0, 0, 1436, 1437, 5, 62, 0, 0, 1437, 1438, 5, 288, 0, 0, 1438, 103, 1, 0, 0, 0, 1439, 1440, 5, 304, 0, 0, 1440, 1444, 5, 287, 0, 0, 1441, 1445, 5, 7, 0, 0, 1442, 1445, 5, 213, 0, 0, 1443, 1445, 3, 642, 321, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1444, 1443, 1, 0, 0, 0, 1445, 105, 1, 0, 0, 0, 1446, 1447, 5, 308, 0, 0, 1447, 1449, 5, 143, 0, 0, 1448, 1450, 3, 126, 63, 0, 1449, 1448, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1453, 1, 0, 0, 0, 1451, 1452, 5, 224, 0, 0, 1452, 1454, 3, 110, 55, 0, 1453, 1451, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 107, 1, 0, 0, 0, 1455, 1456, 5, 308, 0, 0, 1456, 1457, 5, 252, 0, 0, 1457, 1458, 3, 642, 321, 0, 1458, 109, 1, 0, 0, 0, 1459, 1462, 5, 7, 0, 0, 1460, 1462, 3, 116, 58, 0, 1461, 1459, 1, 0, 0, 0, 1461, 1460, 1, 0, 0, 0, 1462, 111, 1, 0, 0, 0, 1463, 1464, 5, 224, 0, 0, 1464, 1465, 3, 114, 57, 0, 1465, 113, 1, 0, 0, 0, 1466, 1467, 3, 70, 35, 0, 1467, 1468, 3, 474, 237, 0, 1468, 1478, 1, 0, 0, 0, 1469, 1471, 5, 329, 0, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1478, 3, 628, 314, 0, 1473, 1474, 5, 366, 0, 0, 1474, 1478, 5, 426, 0, 0, 1475, 1476, 5, 303, 0, 0, 1476, 1478, 3, 642, 321, 0, 1477, 1466, 1, 0, 0, 0, 1477, 1470, 1, 0, 0, 0, 1477, 1473, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1478, 115, 1, 0, 0, 0, 1479, 1480, 3, 70, 35, 0, 1480, 1481, 3, 474, 237, 0, 1481, 1500, 1, 0, 0, 0, 1482, 1484, 5, 329, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1490, 3, 480, 240, 0, 1486, 1487, 5, 399, 0, 0, 1487, 1488, 3, 254, 127, 0, 1488, 1489, 5, 400, 0, 0, 1489, 1491, 1, 0, 0, 0, 1490, 1486, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1493, 1, 0, 0, 0, 1492, 1494, 3, 630, 315, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1500, 1, 0, 0, 0, 1495, 1496, 5, 366, 0, 0, 1496, 1500, 5, 426, 0, 0, 1497, 1498, 5, 303, 0, 0, 1498, 1500, 3, 642, 321, 0, 1499, 1479, 1, 0, 0, 0, 1499, 1483, 1, 0, 0, 0, 1499, 1495, 1, 0, 0, 0, 1499, 1497, 1, 0, 0, 0, 1500, 117, 1, 0, 0, 0, 1501, 1506, 3, 120, 60, 0, 1502, 1503, 5, 397, 0, 0, 1503, 1505, 3, 120, 60, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 119, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1514, 3, 122, 61, 0, 1510, 1511, 5, 399, 0, 0, 1511, 1512, 3, 254, 127, 0, 1512, 1513, 5, 400, 0, 0, 1513, 1515, 1, 0, 0, 0, 1514, 1510, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 121, 1, 0, 0, 0, 1516, 1517, 7, 11, 0, 0, 1517, 123, 1, 0, 0, 0, 1518, 1523, 3, 126, 63, 0, 1519, 1520, 5, 397, 0, 0, 1520, 1522, 3, 126, 63, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1525, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 125, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1527, 5, 369, 0, 0, 1527, 1533, 3, 646, 323, 0, 1528, 1529, 5, 144, 0, 0, 1529, 1533, 3, 646, 323, 0, 1530, 1531, 5, 287, 0, 0, 1531, 1533, 3, 642, 321, 0, 1532, 1526, 1, 0, 0, 0, 1532, 1528, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1533, 127, 1, 0, 0, 0, 1534, 1535, 5, 369, 0, 0, 1535, 1540, 3, 646, 323, 0, 1536, 1537, 5, 287, 0, 0, 1537, 1540, 3, 642, 321, 0, 1538, 1540, 3, 642, 321, 0, 1539, 1534, 1, 0, 0, 0, 1539, 1536, 1, 0, 0, 0, 1539, 1538, 1, 0, 0, 0, 1540, 129, 1, 0, 0, 0, 1541, 1542, 5, 387, 0, 0, 1542, 1543, 5, 143, 0, 0, 1543, 1544, 5, 227, 0, 0, 1544, 131, 1, 0, 0, 0, 1545, 1546, 5, 143, 0, 0, 1546, 1547, 5, 227, 0, 0, 1547, 1548, 5, 134, 0, 0, 1548, 133, 1, 0, 0, 0, 1549, 1550, 5, 5, 0, 0, 1550, 1551, 5, 227, 0, 0, 1551, 1552, 5, 134, 0, 0, 1552, 135, 1, 0, 0, 0, 1553, 1554, 5, 387, 0, 0, 1554, 1555, 5, 5, 0, 0, 1555, 1556, 5, 227, 0, 0, 1556, 137, 1, 0, 0, 0, 1557, 1559, 5, 212, 0, 0, 1558, 1560, 5, 276, 0, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 329, 0, 0, 1562, 1568, 3, 480, 240, 0, 1563, 1564, 7, 12, 0, 0, 1564, 1566, 5, 239, 0, 0, 1565, 1567, 3, 634, 317, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1569, 1, 0, 0, 0, 1568, 1563, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 139, 1, 0, 0, 0, 1570, 1575, 3, 142, 71, 0, 1571, 1572, 5, 397, 0, 0, 1572, 1574, 3, 142, 71, 0, 1573, 1571, 1, 0, 0, 0, 1574, 1577, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 141, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1578, 1579, 3, 144, 72, 0, 1579, 1580, 5, 426, 0, 0, 1580, 143, 1, 0, 0, 0, 1581, 1582, 7, 13, 0, 0, 1582, 145, 1, 0, 0, 0, 1583, 1585, 5, 58, 0, 0, 1584, 1586, 5, 333, 0, 0, 1585, 1584, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588, 5, 141, 0, 0, 1588, 1589, 3, 558, 279, 0, 1589, 1590, 5, 17, 0, 0, 1590, 1593, 5, 426, 0, 0, 1591, 1592, 5, 370, 0, 0, 1592, 1594, 3, 140, 70, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 147, 1, 0, 0, 0, 1595, 1597, 5, 101, 0, 0, 1596, 1598, 5, 333, 0, 0, 1597, 1596, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1601, 5, 141, 0, 0, 1600, 1602, 3, 30, 15, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 3, 560, 280, 0, 1604, 149, 1, 0, 0, 0, 1605, 1606, 5, 271, 0, 0, 1606, 1607, 7, 14, 0, 0, 1607, 151, 1, 0, 0, 0, 1608, 1609, 5, 58, 0, 0, 1609, 1610, 5, 333, 0, 0, 1610, 1611, 5, 194, 0, 0, 1611, 1612, 5, 432, 0, 0, 1612, 1614, 5, 399, 0, 0, 1613, 1615, 3, 248, 124, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 5, 400, 0, 0, 1617, 1618, 3, 584, 292, 0, 1618, 153, 1, 0, 0, 0, 1619, 1620, 5, 101, 0, 0, 1620, 1621, 5, 333, 0, 0, 1621, 1623, 5, 194, 0, 0, 1622, 1624, 3, 30, 15, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 5, 432, 0, 0, 1626, 155, 1, 0, 0, 0, 1627, 1628, 5, 58, 0, 0, 1628, 1629, 5, 155, 0, 0, 1629, 1630, 3, 642, 321, 0, 1630, 1631, 5, 224, 0, 0, 1631, 1632, 5, 329, 0, 0, 1632, 1633, 3, 480, 240, 0, 1633, 1634, 3, 266, 133, 0, 1634, 1635, 5, 17, 0, 0, 1635, 1639, 5, 426, 0, 0, 1636, 1637, 5, 387, 0, 0, 1637, 1638, 5, 84, 0, 0, 1638, 1640, 5, 265, 0, 0, 1639, 1636, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1643, 1, 0, 0, 0, 1641, 1642, 5, 150, 0, 0, 1642, 1644, 3, 226, 113, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1648, 1, 0, 0, 0, 1645, 1646, 5, 154, 0, 0, 1646, 1647, 5, 329, 0, 0, 1647, 1649, 3, 480, 240, 0, 1648, 1645, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1653, 1, 0, 0, 0, 1650, 1651, 5, 238, 0, 0, 1651, 1652, 5, 32, 0, 0, 1652, 1654, 3, 266, 133, 0, 1653, 1650, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1659, 1, 0, 0, 0, 1655, 1657, 3, 222, 111, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 3, 246, 123, 0, 1659, 1656, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1662, 1, 0, 0, 0, 1661, 1663, 3, 426, 213, 0, 1662, 1661, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 1, 0, 0, 0, 1664, 1666, 3, 224, 112, 0, 1665, 1664, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1668, 1, 0, 0, 0, 1667, 1669, 3, 196, 98, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 157, 1, 0, 0, 0, 1670, 1671, 5, 101, 0, 0, 1671, 1673, 5, 155, 0, 0, 1672, 1674, 3, 30, 15, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 3, 642, 321, 0, 1676, 1677, 5, 224, 0, 0, 1677, 1678, 3, 480, 240, 0, 1678, 159, 1, 0, 0, 0, 1679, 1682, 5, 58, 0, 0, 1680, 1681, 5, 228, 0, 0, 1681, 1683, 5, 278, 0, 0, 1682, 1680, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1686, 5, 378, 0, 0, 1685, 1687, 3, 32, 16, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1693, 3, 486, 243, 0, 1689, 1690, 5, 399, 0, 0, 1690, 1691, 3, 306, 153, 0, 1691, 1692, 5, 400, 0, 0, 1692, 1694, 1, 0, 0, 0, 1693, 1689, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1696, 1, 0, 0, 0, 1695, 1697, 3, 196, 98, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1699, 1, 0, 0, 0, 1698, 1700, 3, 162, 81, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 1, 0, 0, 0, 1701, 1703, 3, 224, 112, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 5, 17, 0, 0, 1705, 1706, 3, 382, 191, 0, 1706, 161, 1, 0, 0, 0, 1707, 1708, 5, 238, 0, 0, 1708, 1714, 5, 224, 0, 0, 1709, 1710, 5, 399, 0, 0, 1710, 1715, 3, 254, 127, 0, 1711, 1712, 5, 316, 0, 0, 1712, 1713, 5, 399, 0, 0, 1713, 1715, 3, 204, 102, 0, 1714, 1709, 1, 0, 0, 0, 1714, 1711, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 5, 400, 0, 0, 1717, 163, 1, 0, 0, 0, 1718, 1721, 3, 166, 83, 0, 1719, 1721, 3, 168, 84, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1719, 1, 0, 0, 0, 1721, 165, 1, 0, 0, 0, 1722, 1723, 5, 42, 0, 0, 1723, 1724, 5, 224, 0, 0, 1724, 1725, 5, 399, 0, 0, 1725, 1726, 3, 254, 127, 0, 1726, 1727, 5, 400, 0, 0, 1727, 167, 1, 0, 0, 0, 1728, 1729, 3, 170, 85, 0, 1729, 1730, 3, 172, 86, 0, 1730, 169, 1, 0, 0, 0, 1731, 1732, 5, 98, 0, 0, 1732, 1733, 5, 224, 0, 0, 1733, 1734, 5, 399, 0, 0, 1734, 1735, 3, 254, 127, 0, 1735, 1736, 5, 400, 0, 0, 1736, 171, 1, 0, 0, 0, 1737, 1738, 5, 315, 0, 0, 1738, 1739, 5, 224, 0, 0, 1739, 1740, 5, 399, 0, 0, 1740, 1741, 3, 254, 127, 0, 1741, 1742, 5, 400, 0, 0, 1742, 173, 1, 0, 0, 0, 1743, 1744, 5, 101, 0, 0, 1744, 1746, 5, 378, 0, 0, 1745, 1747, 3, 30, 15, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 3, 484, 242, 0, 1749, 175, 1, 0, 0, 0, 1750, 1751, 5, 58, 0, 0, 1751, 1752, 5, 202, 0, 0, 1752, 1754, 5, 378, 0, 0, 1753, 1755, 3, 32, 16, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1758, 3, 486, 243, 0, 1757, 1759, 3, 38, 19, 0, 1758, 1757, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 1, 0, 0, 0, 1760, 1762, 3, 196, 98, 0, 1761, 1760, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1764, 1, 0, 0, 0, 1763, 1765, 3, 162, 81, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1768, 3, 164, 82, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1770, 1, 0, 0, 0, 1769, 1771, 3, 222, 111, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 1, 0, 0, 0, 1772, 1774, 3, 246, 123, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1777, 3, 426, 213, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1780, 3, 224, 112, 0, 1779, 1778, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 5, 17, 0, 0, 1782, 1783, 3, 382, 191, 0, 1783, 177, 1, 0, 0, 0, 1784, 1785, 5, 101, 0, 0, 1785, 1786, 5, 202, 0, 0, 1786, 1788, 5, 378, 0, 0, 1787, 1789, 3, 30, 15, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 3, 484, 242, 0, 1791, 179, 1, 0, 0, 0, 1792, 1793, 5, 58, 0, 0, 1793, 1794, 5, 293, 0, 0, 1794, 1795, 5, 258, 0, 0, 1795, 1796, 3, 642, 321, 0, 1796, 1798, 3, 188, 94, 0, 1797, 1799, 3, 190, 95, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1801, 1, 0, 0, 0, 1800, 1802, 3, 270, 135, 0, 1801, 1800, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 3, 192, 96, 0, 1804, 181, 1, 0, 0, 0, 1805, 1806, 5, 101, 0, 0, 1806, 1807, 5, 293, 0, 0, 1807, 1808, 5, 258, 0, 0, 1808, 1809, 3, 642, 321, 0, 1809, 183, 1, 0, 0, 0, 1810, 1811, 5, 9, 0, 0, 1811, 1812, 5, 293, 0, 0, 1812, 1813, 5, 258, 0, 0, 1813, 1814, 3, 642, 321, 0, 1814, 1815, 3, 186, 93, 0, 1815, 185, 1, 0, 0, 0, 1816, 1822, 3, 188, 94, 0, 1817, 1822, 3, 190, 95, 0, 1818, 1822, 3, 270, 135, 0, 1819, 1822, 3, 192, 96, 0, 1820, 1822, 5, 115, 0, 0, 1821, 1816, 1, 0, 0, 0, 1821, 1817, 1, 0, 0, 0, 1821, 1818, 1, 0, 0, 0, 1821, 1819, 1, 0, 0, 0, 1821, 1820, 1, 0, 0, 0, 1822, 187, 1, 0, 0, 0, 1823, 1824, 5, 59, 0, 0, 1824, 1839, 5, 426, 0, 0, 1825, 1827, 5, 111, 0, 0, 1826, 1828, 5, 431, 0, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1836, 3, 582, 291, 0, 1830, 1834, 5, 20, 0, 0, 1831, 1832, 5, 223, 0, 0, 1832, 1834, 5, 32, 0, 0, 1833, 1830, 1, 0, 0, 0, 1833, 1831, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1837, 5, 426, 0, 0, 1836, 1833, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1839, 1, 0, 0, 0, 1838, 1823, 1, 0, 0, 0, 1838, 1825, 1, 0, 0, 0, 1839, 189, 1, 0, 0, 0, 1840, 1841, 5, 116, 0, 0, 1841, 1842, 5, 17, 0, 0, 1842, 1843, 5, 426, 0, 0, 1843, 191, 1, 0, 0, 0, 1844, 1846, 5, 85, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 5, 17, 0, 0, 1848, 1849, 3, 2, 1, 0, 1849, 193, 1, 0, 0, 0, 1850, 1853, 3, 642, 321, 0, 1851, 1853, 5, 426, 0, 0, 1852, 1850, 1, 0, 0, 0, 1852, 1851, 1, 0, 0, 0, 1853, 195, 1, 0, 0, 0, 1854, 1855, 5, 47, 0, 0, 1855, 1856, 5, 426, 0, 0, 1856, 197, 1, 0, 0, 0, 1857, 1858, 5, 183, 0, 0, 1858, 1859, 5, 431, 0, 0, 1859, 199, 1, 0, 0, 0, 1860, 1861, 5, 238, 0, 0, 1861, 1870, 5, 32, 0, 0, 1862, 1865, 5, 399, 0, 0, 1863, 1866, 3, 202, 101, 0, 1864, 1866, 3, 254, 127, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1864, 1, 0, 0, 0, 1866, 1871, 1, 0, 0, 0, 1867, 1868, 5, 316, 0, 0, 1868, 1869, 5, 399, 0, 0, 1869, 1871, 3, 204, 102, 0, 1870, 1862, 1, 0, 0, 0, 1870, 1867, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1873, 5, 400, 0, 0, 1873, 201, 1, 0, 0, 0, 1874, 1879, 3, 318, 159, 0, 1875, 1876, 5, 397, 0, 0, 1876, 1878, 3, 318, 159, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 203, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1887, 3, 206, 103, 0, 1883, 1884, 5, 397, 0, 0, 1884, 1886, 3, 206, 103, 0, 1885, 1883, 1, 0, 0, 0, 1886, 1889, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 205, 1, 0, 0, 0, 1889, 1887, 1, 0, 0, 0, 1890, 1909, 3, 256, 128, 0, 1891, 1896, 3, 670, 335, 0, 1892, 1896, 3, 672, 336, 0, 1893, 1896, 3, 676, 338, 0, 1894, 1896, 3, 678, 339, 0, 1895, 1891, 1, 0, 0, 0, 1895, 1892, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1898, 5, 399, 0, 0, 1898, 1899, 3, 256, 128, 0, 1899, 1900, 5, 400, 0, 0, 1900, 1909, 1, 0, 0, 0, 1901, 1902, 7, 15, 0, 0, 1902, 1903, 5, 399, 0, 0, 1903, 1904, 5, 431, 0, 0, 1904, 1905, 5, 397, 0, 0, 1905, 1906, 3, 256, 128, 0, 1906, 1907, 5, 400, 0, 0, 1907, 1909, 1, 0, 0, 0, 1908, 1890, 1, 0, 0, 0, 1908, 1895, 1, 0, 0, 0, 1908, 1901, 1, 0, 0, 0, 1909, 207, 1, 0, 0, 0, 1910, 1911, 5, 42, 0, 0, 1911, 1912, 5, 32, 0, 0, 1912, 1913, 5, 399, 0, 0, 1913, 1914, 3, 254, 127, 0, 1914, 1921, 5, 400, 0, 0, 1915, 1916, 5, 315, 0, 0, 1916, 1917, 5, 32, 0, 0, 1917, 1918, 5, 399, 0, 0, 1918, 1919, 3, 264, 132, 0, 1919, 1920, 5, 400, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1915, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 5, 166, 0, 0, 1924, 1925, 5, 431, 0, 0, 1925, 1926, 5, 31, 0, 0, 1926, 209, 1, 0, 0, 0, 1927, 1928, 5, 310, 0, 0, 1928, 1929, 5, 32, 0, 0, 1929, 1930, 5, 399, 0, 0, 1930, 1931, 3, 254, 127, 0, 1931, 1932, 5, 400, 0, 0, 1932, 1933, 5, 224, 0, 0, 1933, 1934, 5, 399, 0, 0, 1934, 1935, 3, 292, 146, 0, 1935, 1937, 5, 400, 0, 0, 1936, 1938, 3, 40, 20, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 211, 1, 0, 0, 0, 1939, 1942, 3, 218, 109, 0, 1940, 1942, 3, 220, 110, 0, 1941, 1939, 1, 0, 0, 0, 1941, 1940, 1, 0, 0, 0, 1942, 213, 1, 0, 0, 0, 1943, 1944, 5, 266, 0, 0, 1944, 1945, 5, 426, 0, 0, 1945, 215, 1, 0, 0, 0, 1946, 1947, 5, 267, 0, 0, 1947, 1948, 5, 426, 0, 0, 1948, 217, 1, 0, 0, 0, 1949, 1950, 5, 291, 0, 0, 1950, 1951, 5, 137, 0, 0, 1951, 1952, 5, 301, 0, 0, 1952, 1956, 5, 426, 0, 0, 1953, 1954, 5, 387, 0, 0, 1954, 1955, 5, 302, 0, 0, 1955, 1957, 3, 226, 113, 0, 1956, 1953, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 219, 1, 0, 0, 0, 1958, 1959, 5, 291, 0, 0, 1959, 1960, 5, 137, 0, 0, 1960, 1962, 5, 87, 0, 0, 1961, 1963, 3, 236, 118, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1965, 1, 0, 0, 0, 1964, 1966, 3, 238, 119, 0, 1965, 1964, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1968, 1, 0, 0, 0, 1967, 1969, 3, 240, 120, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1972, 3, 242, 121, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 3, 244, 122, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 221, 1, 0, 0, 0, 1976, 1979, 3, 220, 110, 0, 1977, 1979, 3, 218, 109, 0, 1978, 1976, 1, 0, 0, 0, 1978, 1977, 1, 0, 0, 0, 1979, 223, 1, 0, 0, 0, 1980, 1981, 5, 332, 0, 0, 1981, 1982, 3, 226, 113, 0, 1982, 225, 1, 0, 0, 0, 1983, 1984, 5, 399, 0, 0, 1984, 1985, 3, 228, 114, 0, 1985, 1986, 5, 400, 0, 0, 1986, 227, 1, 0, 0, 0, 1987, 1997, 3, 232, 116, 0, 1988, 1993, 5, 426, 0, 0, 1989, 1990, 5, 397, 0, 0, 1990, 1992, 5, 426, 0, 0, 1991, 1989, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1997, 1, 0, 0, 0, 1995, 1993, 1, 0, 0, 0, 1996, 1987, 1, 0, 0, 0, 1996, 1988, 1, 0, 0, 0, 1997, 229, 1, 0, 0, 0, 1998, 1999, 5, 399, 0, 0, 1999, 2000, 3, 232, 116, 0, 2000, 2001, 5, 400, 0, 0, 2001, 231, 1, 0, 0, 0, 2002, 2007, 3, 234, 117, 0, 2003, 2004, 5, 397, 0, 0, 2004, 2006, 3, 234, 117, 0, 2005, 2003, 1, 0, 0, 0, 2006, 2009, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 233, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2010, 2011, 5, 426, 0, 0, 2011, 2012, 5, 405, 0, 0, 2012, 2013, 5, 426, 0, 0, 2013, 235, 1, 0, 0, 0, 2014, 2015, 5, 127, 0, 0, 2015, 2016, 5, 334, 0, 0, 2016, 2017, 5, 32, 0, 0, 2017, 2021, 5, 426, 0, 0, 2018, 2019, 5, 110, 0, 0, 2019, 2020, 5, 32, 0, 0, 2020, 2022, 5, 426, 0, 0, 2021, 2018, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 237, 1, 0, 0, 0, 2023, 2024, 5, 44, 0, 0, 2024, 2025, 5, 169, 0, 0, 2025, 2026, 5, 334, 0, 0, 2026, 2027, 5, 32, 0, 0, 2027, 2028, 5, 426, 0, 0, 2028, 239, 1, 0, 0, 0, 2029, 2030, 5, 198, 0, 0, 2030, 2031, 5, 174, 0, 0, 2031, 2032, 5, 334, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2034, 5, 426, 0, 0, 2034, 241, 1, 0, 0, 0, 2035, 2036, 5, 186, 0, 0, 2036, 2037, 5, 334, 0, 0, 2037, 2038, 5, 32, 0, 0, 2038, 2039, 5, 426, 0, 0, 2039, 243, 1, 0, 0, 0, 2040, 2041, 5, 219, 0, 0, 2041, 2042, 5, 85, 0, 0, 2042, 2043, 5, 17, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 245, 1, 0, 0, 0, 2045, 2046, 5, 321, 0, 0, 2046, 2047, 5, 17, 0, 0, 2047, 2048, 5, 160, 0, 0, 2048, 2049, 5, 426, 0, 0, 2049, 2050, 5, 233, 0, 0, 2050, 2055, 5, 426, 0, 0, 2051, 2052, 5, 159, 0, 0, 2052, 2053, 5, 426, 0, 0, 2053, 2054, 5, 232, 0, 0, 2054, 2056, 5, 426, 0, 0, 2055, 2051, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2087, 1, 0, 0, 0, 2057, 2058, 5, 321, 0, 0, 2058, 2059, 5, 32, 0, 0, 2059, 2063, 5, 426, 0, 0, 2060, 2061, 5, 387, 0, 0, 2061, 2062, 5, 302, 0, 0, 2062, 2064, 3, 226, 113, 0, 2063, 2060, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2068, 1, 0, 0, 0, 2065, 2066, 5, 321, 0, 0, 2066, 2067, 5, 17, 0, 0, 2067, 2069, 3, 642, 321, 0, 2068, 2065, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2087, 1, 0, 0, 0, 2070, 2071, 5, 321, 0, 0, 2071, 2072, 5, 32, 0, 0, 2072, 2076, 3, 642, 321, 0, 2073, 2074, 5, 387, 0, 0, 2074, 2075, 5, 302, 0, 0, 2075, 2077, 3, 226, 113, 0, 2076, 2073, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2081, 1, 0, 0, 0, 2078, 2079, 5, 321, 0, 0, 2079, 2080, 5, 17, 0, 0, 2080, 2082, 3, 642, 321, 0, 2081, 2078, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2087, 1, 0, 0, 0, 2083, 2084, 5, 321, 0, 0, 2084, 2085, 5, 17, 0, 0, 2085, 2087, 3, 642, 321, 0, 2086, 2045, 1, 0, 0, 0, 2086, 2057, 1, 0, 0, 0, 2086, 2070, 1, 0, 0, 0, 2086, 2083, 1, 0, 0, 0, 2087, 247, 1, 0, 0, 0, 2088, 2093, 3, 312, 156, 0, 2089, 2090, 5, 397, 0, 0, 2090, 2092, 3, 312, 156, 0, 2091, 2089, 1, 0, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2091, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 249, 1, 0, 0, 0, 2095, 2093, 1, 0, 0, 0, 2096, 2101, 3, 314, 157, 0, 2097, 2098, 5, 397, 0, 0, 2098, 2100, 3, 314, 157, 0, 2099, 2097, 1, 0, 0, 0, 2100, 2103, 1, 0, 0, 0, 2101, 2099, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 251, 1, 0, 0, 0, 2103, 2101, 1, 0, 0, 0, 2104, 2109, 3, 342, 171, 0, 2105, 2106, 5, 397, 0, 0, 2106, 2108, 3, 342, 171, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 253, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2117, 3, 256, 128, 0, 2113, 2114, 5, 397, 0, 0, 2114, 2116, 3, 256, 128, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 255, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2123, 3, 686, 343, 0, 2121, 2123, 4, 128, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2121, 1, 0, 0, 0, 2123, 257, 1, 0, 0, 0, 2124, 2125, 3, 686, 343, 0, 2125, 259, 1, 0, 0, 0, 2126, 2127, 3, 642, 321, 0, 2127, 261, 1, 0, 0, 0, 2128, 2138, 3, 256, 128, 0, 2129, 2134, 5, 395, 0, 0, 2130, 2135, 5, 104, 0, 0, 2131, 2135, 5, 175, 0, 0, 2132, 2135, 5, 375, 0, 0, 2133, 2135, 3, 642, 321, 0, 2134, 2130, 1, 0, 0, 0, 2134, 2131, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2133, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2129, 1, 0, 0, 0, 2137, 2140, 1, 0, 0, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 263, 1, 0, 0, 0, 2140, 2138, 1, 0, 0, 0, 2141, 2146, 3, 304, 152, 0, 2142, 2143, 5, 397, 0, 0, 2143, 2145, 3, 304, 152, 0, 2144, 2142, 1, 0, 0, 0, 2145, 2148, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 265, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2149, 2150, 5, 399, 0, 0, 2150, 2151, 3, 254, 127, 0, 2151, 2152, 5, 400, 0, 0, 2152, 267, 1, 0, 0, 0, 2153, 2155, 3, 270, 135, 0, 2154, 2156, 3, 272, 136, 0, 2155, 2154, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2159, 1, 0, 0, 0, 2157, 2159, 3, 274, 137, 0, 2158, 2153, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 269, 1, 0, 0, 0, 2160, 2163, 3, 666, 333, 0, 2161, 2163, 3, 668, 334, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2161, 1, 0, 0, 0, 2163, 271, 1, 0, 0, 0, 2164, 2165, 7, 16, 0, 0, 2165, 273, 1, 0, 0, 0, 2166, 2170, 5, 109, 0, 0, 2167, 2168, 5, 216, 0, 0, 2168, 2170, 5, 109, 0, 0, 2169, 2166, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 275, 1, 0, 0, 0, 2171, 2172, 7, 17, 0, 0, 2172, 277, 1, 0, 0, 0, 2173, 2174, 5, 55, 0, 0, 2174, 2176, 3, 642, 321, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 3, 282, 141, 0, 2178, 2180, 3, 338, 169, 0, 2179, 2178, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 279, 1, 0, 0, 0, 2181, 2182, 5, 55, 0, 0, 2182, 2183, 3, 642, 321, 0, 2183, 2185, 3, 282, 141, 0, 2184, 2186, 3, 340, 170, 0, 2185, 2184, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 281, 1, 0, 0, 0, 2187, 2190, 3, 284, 142, 0, 2188, 2190, 3, 286, 143, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2188, 1, 0, 0, 0, 2190, 283, 1, 0, 0, 0, 2191, 2192, 3, 336, 168, 0, 2192, 2193, 3, 266, 133, 0, 2193, 285, 1, 0, 0, 0, 2194, 2195, 5, 40, 0, 0, 2195, 2196, 5, 399, 0, 0, 2196, 2197, 3, 584, 292, 0, 2197, 2198, 5, 400, 0, 0, 2198, 287, 1, 0, 0, 0, 2199, 2200, 5, 55, 0, 0, 2200, 2202, 3, 642, 321, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 5, 136, 0, 0, 2204, 2205, 5, 173, 0, 0, 2205, 2206, 3, 266, 133, 0, 2206, 2207, 5, 269, 0, 0, 2207, 2208, 3, 480, 240, 0, 2208, 2210, 3, 266, 133, 0, 2209, 2211, 3, 338, 169, 0, 2210, 2209, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 289, 1, 0, 0, 0, 2212, 2213, 5, 55, 0, 0, 2213, 2214, 3, 642, 321, 0, 2214, 2215, 5, 136, 0, 0, 2215, 2216, 5, 173, 0, 0, 2216, 2217, 3, 266, 133, 0, 2217, 2218, 5, 269, 0, 0, 2218, 2219, 3, 480, 240, 0, 2219, 2221, 3, 266, 133, 0, 2220, 2222, 3, 340, 170, 0, 2221, 2220, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 291, 1, 0, 0, 0, 2223, 2226, 3, 298, 149, 0, 2224, 2226, 3, 294, 147, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2224, 1, 0, 0, 0, 2226, 293, 1, 0, 0, 0, 2227, 2232, 3, 296, 148, 0, 2228, 2229, 5, 397, 0, 0, 2229, 2231, 3, 296, 148, 0, 2230, 2228, 1, 0, 0, 0, 2231, 2234, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 295, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2236, 5, 399, 0, 0, 2236, 2237, 3, 298, 149, 0, 2237, 2238, 5, 400, 0, 0, 2238, 297, 1, 0, 0, 0, 2239, 2244, 3, 576, 288, 0, 2240, 2241, 5, 397, 0, 0, 2241, 2243, 3, 576, 288, 0, 2242, 2240, 1, 0, 0, 0, 2243, 2246, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 299, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2247, 2248, 7, 18, 0, 0, 2248, 301, 1, 0, 0, 0, 2249, 2250, 5, 220, 0, 0, 2250, 2251, 7, 19, 0, 0, 2251, 303, 1, 0, 0, 0, 2252, 2254, 3, 256, 128, 0, 2253, 2255, 3, 300, 150, 0, 2254, 2253, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 2257, 1, 0, 0, 0, 2256, 2258, 3, 302, 151, 0, 2257, 2256, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 305, 1, 0, 0, 0, 2259, 2264, 3, 308, 154, 0, 2260, 2261, 5, 397, 0, 0, 2261, 2263, 3, 308, 154, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2266, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 307, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2270, 3, 260, 130, 0, 2268, 2269, 5, 47, 0, 0, 2269, 2271, 5, 426, 0, 0, 2270, 2268, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 309, 1, 0, 0, 0, 2272, 2275, 3, 256, 128, 0, 2273, 2275, 3, 584, 292, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2273, 1, 0, 0, 0, 2275, 2277, 1, 0, 0, 0, 2276, 2278, 3, 300, 150, 0, 2277, 2276, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2280, 1, 0, 0, 0, 2279, 2281, 3, 302, 151, 0, 2280, 2279, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 311, 1, 0, 0, 0, 2282, 2283, 3, 260, 130, 0, 2283, 2286, 3, 344, 172, 0, 2284, 2285, 5, 47, 0, 0, 2285, 2287, 5, 426, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 313, 1, 0, 0, 0, 2288, 2291, 3, 316, 158, 0, 2289, 2291, 3, 318, 159, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2289, 1, 0, 0, 0, 2291, 315, 1, 0, 0, 0, 2292, 2295, 3, 288, 144, 0, 2293, 2295, 3, 278, 139, 0, 2294, 2292, 1, 0, 0, 0, 2294, 2293, 1, 0, 0, 0, 2295, 317, 1, 0, 0, 0, 2296, 2297, 3, 260, 130, 0, 2297, 2299, 3, 344, 172, 0, 2298, 2300, 3, 320, 160, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2303, 1, 0, 0, 0, 2301, 2302, 5, 47, 0, 0, 2302, 2304, 5, 426, 0, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 319, 1, 0, 0, 0, 2305, 2308, 3, 322, 161, 0, 2306, 2308, 3, 324, 162, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 321, 1, 0, 0, 0, 2309, 2310, 5, 55, 0, 0, 2310, 2312, 3, 642, 321, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2314, 5, 269, 0, 0, 2314, 2315, 3, 480, 240, 0, 2315, 2316, 5, 399, 0, 0, 2316, 2317, 3, 256, 128, 0, 2317, 2319, 5, 400, 0, 0, 2318, 2320, 3, 338, 169, 0, 2319, 2318, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, 323, 1, 0, 0, 0, 2321, 2322, 5, 55, 0, 0, 2322, 2324, 3, 642, 321, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2327, 3, 332, 166, 0, 2326, 2328, 3, 338, 169, 0, 2327, 2326, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 325, 1, 0, 0, 0, 2329, 2332, 3, 328, 164, 0, 2330, 2332, 3, 330, 165, 0, 2331, 2329, 1, 0, 0, 0, 2331, 2330, 1, 0, 0, 0, 2332, 327, 1, 0, 0, 0, 2333, 2334, 5, 55, 0, 0, 2334, 2336, 3, 642, 321, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 5, 269, 0, 0, 2338, 2339, 3, 480, 240, 0, 2339, 2340, 5, 399, 0, 0, 2340, 2341, 3, 256, 128, 0, 2341, 2343, 5, 400, 0, 0, 2342, 2344, 3, 340, 170, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 329, 1, 0, 0, 0, 2345, 2346, 5, 55, 0, 0, 2346, 2348, 3, 642, 321, 0, 2347, 2345, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2351, 3, 332, 166, 0, 2350, 2352, 3, 340, 170, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 331, 1, 0, 0, 0, 2353, 2354, 5, 216, 0, 0, 2354, 2360, 5, 219, 0, 0, 2355, 2356, 5, 83, 0, 0, 2356, 2360, 3, 334, 167, 0, 2357, 2360, 3, 286, 143, 0, 2358, 2360, 3, 336, 168, 0, 2359, 2353, 1, 0, 0, 0, 2359, 2355, 1, 0, 0, 0, 2359, 2357, 1, 0, 0, 0, 2359, 2358, 1, 0, 0, 0, 2360, 333, 1, 0, 0, 0, 2361, 2365, 3, 576, 288, 0, 2362, 2365, 3, 554, 277, 0, 2363, 2365, 3, 564, 282, 0, 2364, 2361, 1, 0, 0, 0, 2364, 2362, 1, 0, 0, 0, 2364, 2363, 1, 0, 0, 0, 2365, 335, 1, 0, 0, 0, 2366, 2367, 5, 251, 0, 0, 2367, 2370, 5, 173, 0, 0, 2368, 2370, 5, 358, 0, 0, 2369, 2366, 1, 0, 0, 0, 2369, 2368, 1, 0, 0, 0, 2370, 337, 1, 0, 0, 0, 2371, 2373, 3, 268, 134, 0, 2372, 2374, 3, 276, 138, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 339, 1, 0, 0, 0, 2375, 2377, 3, 268, 134, 0, 2376, 2378, 3, 276, 138, 0, 2377, 2376, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 341, 1, 0, 0, 0, 2379, 2380, 3, 260, 130, 0, 2380, 2381, 5, 396, 0, 0, 2381, 2384, 3, 344, 172, 0, 2382, 2383, 5, 47, 0, 0, 2383, 2385, 5, 426, 0, 0, 2384, 2382, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 343, 1, 0, 0, 0, 2386, 2387, 3, 348, 174, 0, 2387, 345, 1, 0, 0, 0, 2388, 2393, 3, 344, 172, 0, 2389, 2390, 5, 397, 0, 0, 2390, 2392, 3, 344, 172, 0, 2391, 2389, 1, 0, 0, 0, 2392, 2395, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 347, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2402, 3, 350, 175, 0, 2397, 2402, 3, 352, 176, 0, 2398, 2402, 3, 354, 177, 0, 2399, 2402, 3, 356, 178, 0, 2400, 2402, 3, 358, 179, 0, 2401, 2396, 1, 0, 0, 0, 2401, 2397, 1, 0, 0, 0, 2401, 2398, 1, 0, 0, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2400, 1, 0, 0, 0, 2402, 349, 1, 0, 0, 0, 2403, 2441, 5, 340, 0, 0, 2404, 2441, 5, 311, 0, 0, 2405, 2441, 5, 162, 0, 0, 2406, 2441, 5, 163, 0, 0, 2407, 2441, 5, 26, 0, 0, 2408, 2441, 5, 28, 0, 0, 2409, 2441, 5, 131, 0, 0, 2410, 2441, 5, 264, 0, 0, 2411, 2413, 5, 100, 0, 0, 2412, 2414, 5, 248, 0, 0, 2413, 2412, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2441, 1, 0, 0, 0, 2415, 2441, 5, 71, 0, 0, 2416, 2441, 5, 72, 0, 0, 2417, 2441, 5, 337, 0, 0, 2418, 2441, 5, 338, 0, 0, 2419, 2420, 5, 337, 0, 0, 2420, 2421, 5, 387, 0, 0, 2421, 2422, 5, 188, 0, 0, 2422, 2423, 5, 336, 0, 0, 2423, 2441, 5, 394, 0, 0, 2424, 2441, 5, 323, 0, 0, 2425, 2441, 5, 27, 0, 0, 2426, 2434, 3, 684, 342, 0, 2427, 2428, 5, 399, 0, 0, 2428, 2431, 5, 431, 0, 0, 2429, 2430, 5, 397, 0, 0, 2430, 2432, 5, 431, 0, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2435, 5, 400, 0, 0, 2434, 2427, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2441, 1, 0, 0, 0, 2436, 2437, 7, 20, 0, 0, 2437, 2438, 5, 399, 0, 0, 2438, 2439, 5, 431, 0, 0, 2439, 2441, 5, 400, 0, 0, 2440, 2403, 1, 0, 0, 0, 2440, 2404, 1, 0, 0, 0, 2440, 2405, 1, 0, 0, 0, 2440, 2406, 1, 0, 0, 0, 2440, 2407, 1, 0, 0, 0, 2440, 2408, 1, 0, 0, 0, 2440, 2409, 1, 0, 0, 0, 2440, 2410, 1, 0, 0, 0, 2440, 2411, 1, 0, 0, 0, 2440, 2415, 1, 0, 0, 0, 2440, 2416, 1, 0, 0, 0, 2440, 2417, 1, 0, 0, 0, 2440, 2418, 1, 0, 0, 0, 2440, 2419, 1, 0, 0, 0, 2440, 2424, 1, 0, 0, 0, 2440, 2425, 1, 0, 0, 0, 2440, 2426, 1, 0, 0, 0, 2440, 2436, 1, 0, 0, 0, 2441, 351, 1, 0, 0, 0, 2442, 2443, 5, 16, 0, 0, 2443, 2444, 5, 409, 0, 0, 2444, 2445, 3, 348, 174, 0, 2445, 2446, 5, 411, 0, 0, 2446, 353, 1, 0, 0, 0, 2447, 2448, 5, 324, 0, 0, 2448, 2449, 5, 409, 0, 0, 2449, 2450, 3, 252, 126, 0, 2450, 2451, 5, 411, 0, 0, 2451, 355, 1, 0, 0, 0, 2452, 2453, 5, 198, 0, 0, 2453, 2454, 5, 409, 0, 0, 2454, 2455, 3, 350, 175, 0, 2455, 2456, 5, 397, 0, 0, 2456, 2457, 3, 348, 174, 0, 2457, 2458, 5, 411, 0, 0, 2458, 357, 1, 0, 0, 0, 2459, 2460, 5, 357, 0, 0, 2460, 2461, 5, 409, 0, 0, 2461, 2462, 3, 346, 173, 0, 2462, 2463, 5, 411, 0, 0, 2463, 359, 1, 0, 0, 0, 2464, 2466, 7, 21, 0, 0, 2465, 2467, 7, 22, 0, 0, 2466, 2465, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 361, 1, 0, 0, 0, 2468, 2470, 3, 366, 183, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2472, 3, 364, 182, 0, 2472, 363, 1, 0, 0, 0, 2473, 2476, 3, 370, 185, 0, 2474, 2476, 3, 374, 187, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2474, 1, 0, 0, 0, 2476, 365, 1, 0, 0, 0, 2477, 2478, 5, 387, 0, 0, 2478, 2483, 3, 368, 184, 0, 2479, 2480, 5, 397, 0, 0, 2480, 2482, 3, 368, 184, 0, 2481, 2479, 1, 0, 0, 0, 2482, 2485, 1, 0, 0, 0, 2483, 2481, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 367, 1, 0, 0, 0, 2485, 2483, 1, 0, 0, 0, 2486, 2491, 3, 642, 321, 0, 2487, 2488, 5, 399, 0, 0, 2488, 2489, 3, 254, 127, 0, 2489, 2490, 5, 400, 0, 0, 2490, 2492, 1, 0, 0, 0, 2491, 2487, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 5, 17, 0, 0, 2494, 2495, 5, 399, 0, 0, 2495, 2496, 3, 362, 181, 0, 2496, 2497, 5, 400, 0, 0, 2497, 369, 1, 0, 0, 0, 2498, 2504, 3, 372, 186, 0, 2499, 2500, 3, 360, 180, 0, 2500, 2501, 3, 372, 186, 0, 2501, 2503, 1, 0, 0, 0, 2502, 2499, 1, 0, 0, 0, 2503, 2506, 1, 0, 0, 0, 2504, 2502, 1, 0, 0, 0, 2504, 2505, 1, 0, 0, 0, 2505, 371, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2507, 2508, 3, 450, 225, 0, 2508, 2509, 3, 384, 192, 0, 2509, 2511, 3, 502, 251, 0, 2510, 2512, 3, 464, 232, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2515, 3, 496, 248, 0, 2514, 2513, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2517, 1, 0, 0, 0, 2516, 2518, 3, 522, 261, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2520, 1, 0, 0, 0, 2519, 2521, 3, 530, 265, 0, 2520, 2519, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 1, 0, 0, 0, 2522, 2524, 3, 514, 257, 0, 2523, 2522, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, 1, 0, 0, 0, 2525, 2527, 3, 532, 266, 0, 2526, 2525, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2529, 1, 0, 0, 0, 2528, 2530, 3, 544, 272, 0, 2529, 2528, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2532, 1, 0, 0, 0, 2531, 2533, 3, 548, 274, 0, 2532, 2531, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 1, 0, 0, 0, 2534, 2536, 3, 550, 275, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2538, 1, 0, 0, 0, 2537, 2539, 3, 552, 276, 0, 2538, 2537, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2541, 1, 0, 0, 0, 2540, 2542, 3, 388, 194, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2579, 1, 0, 0, 0, 2543, 2544, 3, 450, 225, 0, 2544, 2546, 3, 502, 251, 0, 2545, 2547, 3, 464, 232, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2550, 3, 496, 248, 0, 2549, 2548, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 3, 522, 261, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2556, 3, 530, 265, 0, 2555, 2554, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 1, 0, 0, 0, 2557, 2559, 3, 514, 257, 0, 2558, 2557, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2561, 1, 0, 0, 0, 2560, 2562, 3, 532, 266, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 1, 0, 0, 0, 2563, 2565, 3, 544, 272, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2567, 1, 0, 0, 0, 2566, 2568, 3, 548, 274, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2570, 1, 0, 0, 0, 2569, 2571, 3, 550, 275, 0, 2570, 2569, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2574, 3, 552, 276, 0, 2573, 2572, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 1, 0, 0, 0, 2575, 2577, 3, 388, 194, 0, 2576, 2575, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2579, 1, 0, 0, 0, 2578, 2507, 1, 0, 0, 0, 2578, 2543, 1, 0, 0, 0, 2579, 373, 1, 0, 0, 0, 2580, 2581, 3, 384, 192, 0, 2581, 2582, 3, 378, 189, 0, 2582, 2585, 1, 0, 0, 0, 2583, 2585, 3, 378, 189, 0, 2584, 2580, 1, 0, 0, 0, 2584, 2583, 1, 0, 0, 0, 2585, 375, 1, 0, 0, 0, 2586, 2588, 3, 502, 251, 0, 2587, 2589, 3, 450, 225, 0, 2588, 2587, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 496, 248, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2594, 1, 0, 0, 0, 2593, 2595, 3, 522, 261, 0, 2594, 2593, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2598, 3, 530, 265, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2600, 1, 0, 0, 0, 2599, 2601, 3, 514, 257, 0, 2600, 2599, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2603, 1, 0, 0, 0, 2602, 2604, 3, 532, 266, 0, 2603, 2602, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2611, 1, 0, 0, 0, 2605, 2606, 5, 399, 0, 0, 2606, 2607, 3, 378, 189, 0, 2607, 2608, 5, 400, 0, 0, 2608, 2611, 1, 0, 0, 0, 2609, 2611, 3, 498, 249, 0, 2610, 2586, 1, 0, 0, 0, 2610, 2605, 1, 0, 0, 0, 2610, 2609, 1, 0, 0, 0, 2611, 377, 1, 0, 0, 0, 2612, 2614, 3, 376, 188, 0, 2613, 2615, 3, 380, 190, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 1, 0, 0, 0, 2616, 2618, 3, 544, 272, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2620, 1, 0, 0, 0, 2619, 2621, 3, 548, 274, 0, 2620, 2619, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2623, 1, 0, 0, 0, 2622, 2624, 3, 550, 275, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2626, 1, 0, 0, 0, 2625, 2627, 3, 552, 276, 0, 2626, 2625, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2630, 3, 388, 194, 0, 2629, 2628, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 379, 1, 0, 0, 0, 2631, 2632, 3, 360, 180, 0, 2632, 2633, 3, 376, 188, 0, 2633, 2635, 1, 0, 0, 0, 2634, 2631, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 381, 1, 0, 0, 0, 2638, 2640, 3, 366, 183, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 3, 378, 189, 0, 2642, 383, 1, 0, 0, 0, 2643, 2660, 5, 161, 0, 0, 2644, 2645, 5, 235, 0, 0, 2645, 2647, 3, 386, 193, 0, 2646, 2648, 3, 32, 16, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2661, 1, 0, 0, 0, 2649, 2651, 5, 166, 0, 0, 2650, 2652, 5, 329, 0, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2658, 3, 628, 314, 0, 2654, 2655, 5, 399, 0, 0, 2655, 2656, 3, 254, 127, 0, 2656, 2657, 5, 400, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2654, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 1, 0, 0, 0, 2660, 2644, 1, 0, 0, 0, 2660, 2649, 1, 0, 0, 0, 2661, 385, 1, 0, 0, 0, 2662, 2664, 5, 188, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 5, 93, 0, 0, 2666, 2668, 5, 426, 0, 0, 2667, 2669, 3, 222, 111, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 1, 0, 0, 0, 2670, 2672, 3, 246, 123, 0, 2671, 2670, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2676, 1, 0, 0, 0, 2673, 2674, 5, 329, 0, 0, 2674, 2676, 3, 628, 314, 0, 2675, 2663, 1, 0, 0, 0, 2675, 2673, 1, 0, 0, 0, 2676, 387, 1, 0, 0, 0, 2677, 2686, 5, 185, 0, 0, 2678, 2679, 5, 431, 0, 0, 2679, 2681, 5, 397, 0, 0, 2680, 2678, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2687, 5, 431, 0, 0, 2683, 2684, 5, 431, 0, 0, 2684, 2685, 5, 223, 0, 0, 2685, 2687, 5, 431, 0, 0, 2686, 2680, 1, 0, 0, 0, 2686, 2683, 1, 0, 0, 0, 2687, 389, 1, 0, 0, 0, 2688, 2689, 3, 256, 128, 0, 2689, 2690, 5, 405, 0, 0, 2690, 2691, 3, 392, 196, 0, 2691, 391, 1, 0, 0, 0, 2692, 2695, 5, 83, 0, 0, 2693, 2695, 3, 594, 297, 0, 2694, 2692, 1, 0, 0, 0, 2694, 2693, 1, 0, 0, 0, 2695, 393, 1, 0, 0, 0, 2696, 2697, 5, 304, 0, 0, 2697, 2702, 3, 390, 195, 0, 2698, 2699, 5, 397, 0, 0, 2699, 2701, 3, 390, 195, 0, 2700, 2698, 1, 0, 0, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 395, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2706, 5, 318, 0, 0, 2706, 2715, 5, 344, 0, 0, 2707, 2712, 3, 398, 199, 0, 2708, 2709, 5, 397, 0, 0, 2709, 2711, 3, 398, 199, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2714, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2716, 1, 0, 0, 0, 2714, 2712, 1, 0, 0, 0, 2715, 2707, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2729, 1, 0, 0, 0, 2717, 2719, 5, 48, 0, 0, 2718, 2720, 5, 389, 0, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2729, 1, 0, 0, 0, 2721, 2723, 5, 289, 0, 0, 2722, 2724, 5, 389, 0, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2729, 1, 0, 0, 0, 2725, 2726, 5, 304, 0, 0, 2726, 2727, 5, 22, 0, 0, 2727, 2729, 7, 23, 0, 0, 2728, 2705, 1, 0, 0, 0, 2728, 2717, 1, 0, 0, 0, 2728, 2721, 1, 0, 0, 0, 2728, 2725, 1, 0, 0, 0, 2729, 397, 1, 0, 0, 0, 2730, 2731, 5, 168, 0, 0, 2731, 2732, 5, 182, 0, 0, 2732, 2736, 5, 312, 0, 0, 2733, 2734, 5, 261, 0, 0, 2734, 2736, 7, 24, 0, 0, 2735, 2730, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2736, 399, 1, 0, 0, 0, 2737, 2740, 3, 404, 202, 0, 2738, 2740, 3, 406, 203, 0, 2739, 2737, 1, 0, 0, 0, 2739, 2738, 1, 0, 0, 0, 2740, 2743, 1, 0, 0, 0, 2741, 2739, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2745, 1, 0, 0, 0, 2743, 2741, 1, 0, 0, 0, 2744, 2746, 3, 402, 201, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 401, 1, 0, 0, 0, 2747, 2748, 5, 383, 0, 0, 2748, 2749, 5, 216, 0, 0, 2749, 2752, 5, 201, 0, 0, 2750, 2751, 5, 11, 0, 0, 2751, 2753, 3, 584, 292, 0, 2752, 2750, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2755, 5, 335, 0, 0, 2755, 2757, 5, 161, 0, 0, 2756, 2758, 3, 266, 133, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 5, 374, 0, 0, 2760, 2761, 3, 540, 270, 0, 2761, 403, 1, 0, 0, 0, 2762, 2763, 5, 383, 0, 0, 2763, 2764, 5, 201, 0, 0, 2764, 2765, 5, 11, 0, 0, 2765, 2766, 3, 584, 292, 0, 2766, 2770, 5, 335, 0, 0, 2767, 2768, 5, 365, 0, 0, 2768, 2771, 3, 394, 197, 0, 2769, 2771, 5, 86, 0, 0, 2770, 2767, 1, 0, 0, 0, 2770, 2769, 1, 0, 0, 0, 2771, 405, 1, 0, 0, 0, 2772, 2773, 5, 383, 0, 0, 2773, 2774, 5, 201, 0, 0, 2774, 2778, 5, 335, 0, 0, 2775, 2776, 5, 365, 0, 0, 2776, 2779, 3, 394, 197, 0, 2777, 2779, 5, 86, 0, 0, 2778, 2775, 1, 0, 0, 0, 2778, 2777, 1, 0, 0, 0, 2779, 407, 1, 0, 0, 0, 2780, 2781, 5, 246, 0, 0, 2781, 2782, 5, 426, 0, 0, 2782, 409, 1, 0, 0, 0, 2783, 2784, 5, 352, 0, 0, 2784, 2785, 5, 426, 0, 0, 2785, 411, 1, 0, 0, 0, 2786, 2787, 5, 320, 0, 0, 2787, 2788, 5, 426, 0, 0, 2788, 413, 1, 0, 0, 0, 2789, 2820, 5, 9, 0, 0, 2790, 2791, 5, 329, 0, 0, 2791, 2792, 3, 480, 240, 0, 2792, 2793, 3, 416, 208, 0, 2793, 2821, 1, 0, 0, 0, 2794, 2795, 5, 378, 0, 0, 2795, 2797, 3, 484, 242, 0, 2796, 2798, 5, 17, 0, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2800, 3, 420, 210, 0, 2800, 2821, 1, 0, 0, 0, 2801, 2802, 5, 202, 0, 0, 2802, 2803, 5, 378, 0, 0, 2803, 2807, 3, 484, 242, 0, 2804, 2808, 3, 36, 18, 0, 2805, 2808, 3, 38, 19, 0, 2806, 2808, 5, 265, 0, 0, 2807, 2804, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2807, 2806, 1, 0, 0, 0, 2808, 2821, 1, 0, 0, 0, 2809, 2810, 3, 70, 35, 0, 2810, 2811, 3, 422, 211, 0, 2811, 2821, 1, 0, 0, 0, 2812, 2813, 5, 69, 0, 0, 2813, 2821, 3, 424, 212, 0, 2814, 2815, 5, 155, 0, 0, 2815, 2816, 3, 642, 321, 0, 2816, 2817, 5, 224, 0, 0, 2817, 2818, 3, 628, 314, 0, 2818, 2819, 5, 265, 0, 0, 2819, 2821, 1, 0, 0, 0, 2820, 2790, 1, 0, 0, 0, 2820, 2794, 1, 0, 0, 0, 2820, 2801, 1, 0, 0, 0, 2820, 2809, 1, 0, 0, 0, 2820, 2812, 1, 0, 0, 0, 2820, 2814, 1, 0, 0, 0, 2821, 415, 1, 0, 0, 0, 2822, 2823, 5, 274, 0, 0, 2823, 2824, 5, 341, 0, 0, 2824, 2912, 3, 482, 241, 0, 2825, 2826, 5, 102, 0, 0, 2826, 2912, 5, 239, 0, 0, 2827, 2912, 3, 428, 214, 0, 2828, 2830, 5, 4, 0, 0, 2829, 2831, 3, 32, 16, 0, 2830, 2829, 1, 0, 0, 0, 2830, 2831, 1, 0, 0, 0, 2831, 2836, 1, 0, 0, 0, 2832, 2834, 3, 630, 315, 0, 2833, 2835, 3, 426, 213, 0, 2834, 2833, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2837, 1, 0, 0, 0, 2836, 2832, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2836, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2912, 1, 0, 0, 0, 2840, 2844, 5, 342, 0, 0, 2841, 2843, 3, 630, 315, 0, 2842, 2841, 1, 0, 0, 0, 2843, 2846, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2912, 1, 0, 0, 0, 2846, 2844, 1, 0, 0, 0, 2847, 2851, 5, 15, 0, 0, 2848, 2850, 3, 630, 315, 0, 2849, 2848, 1, 0, 0, 0, 2850, 2853, 1, 0, 0, 0, 2851, 2849, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2912, 1, 0, 0, 0, 2853, 2851, 1, 0, 0, 0, 2854, 2858, 5, 353, 0, 0, 2855, 2857, 3, 630, 315, 0, 2856, 2855, 1, 0, 0, 0, 2857, 2860, 1, 0, 0, 0, 2858, 2856, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 2912, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2861, 2862, 5, 304, 0, 0, 2862, 2863, 5, 332, 0, 0, 2863, 2912, 3, 226, 113, 0, 2864, 2865, 5, 363, 0, 0, 2865, 2867, 5, 332, 0, 0, 2866, 2868, 3, 30, 15, 0, 2867, 2866, 1, 0, 0, 0, 2867, 2868, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2912, 3, 226, 113, 0, 2870, 2912, 3, 210, 105, 0, 2871, 2874, 5, 216, 0, 0, 2872, 2875, 5, 310, 0, 0, 2873, 2875, 3, 40, 20, 0, 2874, 2872, 1, 0, 0, 0, 2874, 2873, 1, 0, 0, 0, 2875, 2912, 1, 0, 0, 0, 2876, 2877, 5, 113, 0, 0, 2877, 2878, 3, 630, 315, 0, 2878, 2879, 5, 387, 0, 0, 2879, 2880, 5, 329, 0, 0, 2880, 2881, 3, 480, 240, 0, 2881, 2912, 1, 0, 0, 0, 2882, 2883, 5, 237, 0, 0, 2883, 2884, 5, 45, 0, 0, 2884, 2885, 5, 399, 0, 0, 2885, 2886, 3, 312, 156, 0, 2886, 2887, 5, 400, 0, 0, 2887, 2912, 1, 0, 0, 0, 2888, 2889, 5, 101, 0, 0, 2889, 2890, 5, 55, 0, 0, 2890, 2912, 3, 642, 321, 0, 2891, 2894, 5, 4, 0, 0, 2892, 2895, 3, 290, 145, 0, 2893, 2895, 3, 280, 140, 0, 2894, 2892, 1, 0, 0, 0, 2894, 2893, 1, 0, 0, 0, 2895, 2912, 1, 0, 0, 0, 2896, 2898, 3, 630, 315, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2912, 3, 418, 209, 0, 2900, 2901, 5, 304, 0, 0, 2901, 2902, 5, 236, 0, 0, 2902, 2912, 3, 126, 63, 0, 2903, 2904, 5, 304, 0, 0, 2904, 2905, 5, 237, 0, 0, 2905, 2906, 5, 316, 0, 0, 2906, 2907, 5, 399, 0, 0, 2907, 2908, 3, 204, 102, 0, 2908, 2909, 5, 400, 0, 0, 2909, 2912, 1, 0, 0, 0, 2910, 2912, 3, 432, 216, 0, 2911, 2822, 1, 0, 0, 0, 2911, 2825, 1, 0, 0, 0, 2911, 2827, 1, 0, 0, 0, 2911, 2828, 1, 0, 0, 0, 2911, 2840, 1, 0, 0, 0, 2911, 2847, 1, 0, 0, 0, 2911, 2854, 1, 0, 0, 0, 2911, 2861, 1, 0, 0, 0, 2911, 2864, 1, 0, 0, 0, 2911, 2870, 1, 0, 0, 0, 2911, 2871, 1, 0, 0, 0, 2911, 2876, 1, 0, 0, 0, 2911, 2882, 1, 0, 0, 0, 2911, 2888, 1, 0, 0, 0, 2911, 2891, 1, 0, 0, 0, 2911, 2897, 1, 0, 0, 0, 2911, 2900, 1, 0, 0, 0, 2911, 2903, 1, 0, 0, 0, 2911, 2910, 1, 0, 0, 0, 2912, 417, 1, 0, 0, 0, 2913, 2914, 5, 304, 0, 0, 2914, 2915, 5, 129, 0, 0, 2915, 3046, 3, 434, 217, 0, 2916, 2917, 5, 304, 0, 0, 2917, 2918, 5, 189, 0, 0, 2918, 3046, 5, 426, 0, 0, 2919, 3046, 5, 53, 0, 0, 2920, 2930, 5, 304, 0, 0, 2921, 2922, 5, 301, 0, 0, 2922, 2926, 5, 426, 0, 0, 2923, 2924, 5, 387, 0, 0, 2924, 2925, 5, 302, 0, 0, 2925, 2927, 3, 226, 113, 0, 2926, 2923, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2931, 1, 0, 0, 0, 2928, 2929, 5, 302, 0, 0, 2929, 2931, 3, 226, 113, 0, 2930, 2921, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2931, 3046, 1, 0, 0, 0, 2932, 2933, 5, 363, 0, 0, 2933, 2934, 5, 302, 0, 0, 2934, 3046, 3, 226, 113, 0, 2935, 2936, 5, 274, 0, 0, 2936, 2937, 5, 341, 0, 0, 2937, 3046, 3, 630, 315, 0, 2938, 2939, 5, 166, 0, 0, 2939, 2940, 5, 431, 0, 0, 2940, 3046, 5, 31, 0, 0, 2941, 2942, 5, 304, 0, 0, 2942, 2943, 5, 310, 0, 0, 2943, 2944, 5, 189, 0, 0, 2944, 2945, 5, 399, 0, 0, 2945, 2950, 3, 430, 215, 0, 2946, 2947, 5, 397, 0, 0, 2947, 2949, 3, 430, 215, 0, 2948, 2946, 1, 0, 0, 0, 2949, 2952, 1, 0, 0, 0, 2950, 2948, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2953, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 2954, 5, 400, 0, 0, 2954, 3046, 1, 0, 0, 0, 2955, 2956, 5, 216, 0, 0, 2956, 3046, 7, 25, 0, 0, 2957, 3046, 3, 208, 104, 0, 2958, 2959, 5, 49, 0, 0, 2959, 2962, 5, 426, 0, 0, 2960, 2961, 5, 11, 0, 0, 2961, 2963, 5, 380, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2968, 1, 0, 0, 0, 2964, 2965, 5, 42, 0, 0, 2965, 2966, 5, 166, 0, 0, 2966, 2967, 5, 431, 0, 0, 2967, 2969, 5, 31, 0, 0, 2968, 2964, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2971, 1, 0, 0, 0, 2970, 2972, 3, 544, 272, 0, 2971, 2970, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2974, 1, 0, 0, 0, 2973, 2975, 3, 408, 204, 0, 2974, 2973, 1, 0, 0, 0, 2974, 2975, 1, 0, 0, 0, 2975, 2980, 1, 0, 0, 0, 2976, 2977, 5, 387, 0, 0, 2977, 2978, 5, 235, 0, 0, 2978, 2979, 5, 332, 0, 0, 2979, 2981, 3, 226, 113, 0, 2980, 2976, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 3046, 1, 0, 0, 0, 2982, 2983, 5, 365, 0, 0, 2983, 2984, 5, 319, 0, 0, 2984, 2986, 5, 134, 0, 0, 2985, 2987, 5, 45, 0, 0, 2986, 2985, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 3, 256, 128, 0, 2989, 2990, 5, 304, 0, 0, 2990, 2993, 3, 226, 113, 0, 2991, 2992, 5, 47, 0, 0, 2992, 2994, 5, 426, 0, 0, 2993, 2991, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 3046, 1, 0, 0, 0, 2995, 2996, 5, 365, 0, 0, 2996, 2997, 5, 319, 0, 0, 2997, 2998, 5, 304, 0, 0, 2998, 3046, 3, 226, 113, 0, 2999, 3001, 5, 38, 0, 0, 3000, 3002, 5, 45, 0, 0, 3001, 3000, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3004, 3, 256, 128, 0, 3004, 3005, 3, 260, 130, 0, 3005, 3007, 3, 344, 172, 0, 3006, 3008, 3, 326, 163, 0, 3007, 3006, 1, 0, 0, 0, 3007, 3008, 1, 0, 0, 0, 3008, 3011, 1, 0, 0, 0, 3009, 3010, 5, 47, 0, 0, 3010, 3012, 5, 426, 0, 0, 3011, 3009, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3016, 1, 0, 0, 0, 3013, 3017, 5, 130, 0, 0, 3014, 3015, 5, 6, 0, 0, 3015, 3017, 3, 642, 321, 0, 3016, 3013, 1, 0, 0, 0, 3016, 3014, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3019, 1, 0, 0, 0, 3018, 3020, 3, 34, 17, 0, 3019, 3018, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3046, 1, 0, 0, 0, 3021, 3024, 5, 4, 0, 0, 3022, 3024, 5, 278, 0, 0, 3023, 3021, 1, 0, 0, 0, 3023, 3022, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 5, 46, 0, 0, 3026, 3027, 5, 399, 0, 0, 3027, 3028, 3, 248, 124, 0, 3028, 3030, 5, 400, 0, 0, 3029, 3031, 3, 34, 17, 0, 3030, 3029, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3046, 1, 0, 0, 0, 3032, 3033, 5, 365, 0, 0, 3033, 3035, 5, 46, 0, 0, 3034, 3036, 3, 34, 17, 0, 3035, 3034, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3046, 1, 0, 0, 0, 3037, 3043, 3, 270, 135, 0, 3038, 3040, 5, 218, 0, 0, 3039, 3041, 5, 34, 0, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3044, 1, 0, 0, 0, 3042, 3044, 5, 222, 0, 0, 3043, 3038, 1, 0, 0, 0, 3043, 3042, 1, 0, 0, 0, 3044, 3046, 1, 0, 0, 0, 3045, 2913, 1, 0, 0, 0, 3045, 2916, 1, 0, 0, 0, 3045, 2919, 1, 0, 0, 0, 3045, 2920, 1, 0, 0, 0, 3045, 2932, 1, 0, 0, 0, 3045, 2935, 1, 0, 0, 0, 3045, 2938, 1, 0, 0, 0, 3045, 2941, 1, 0, 0, 0, 3045, 2955, 1, 0, 0, 0, 3045, 2957, 1, 0, 0, 0, 3045, 2958, 1, 0, 0, 0, 3045, 2982, 1, 0, 0, 0, 3045, 2995, 1, 0, 0, 0, 3045, 2999, 1, 0, 0, 0, 3045, 3023, 1, 0, 0, 0, 3045, 3032, 1, 0, 0, 0, 3045, 3037, 1, 0, 0, 0, 3046, 419, 1, 0, 0, 0, 3047, 3048, 5, 304, 0, 0, 3048, 3049, 5, 332, 0, 0, 3049, 3074, 3, 226, 113, 0, 3050, 3051, 5, 363, 0, 0, 3051, 3053, 5, 332, 0, 0, 3052, 3054, 3, 30, 15, 0, 3053, 3052, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3074, 3, 226, 113, 0, 3056, 3057, 5, 274, 0, 0, 3057, 3058, 5, 341, 0, 0, 3058, 3074, 3, 482, 241, 0, 3059, 3061, 5, 4, 0, 0, 3060, 3062, 3, 32, 16, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3067, 1, 0, 0, 0, 3063, 3065, 3, 630, 315, 0, 3064, 3066, 3, 426, 213, 0, 3065, 3064, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 3063, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3067, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3074, 1, 0, 0, 0, 3071, 3074, 3, 428, 214, 0, 3072, 3074, 3, 382, 191, 0, 3073, 3047, 1, 0, 0, 0, 3073, 3050, 1, 0, 0, 0, 3073, 3056, 1, 0, 0, 0, 3073, 3059, 1, 0, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3072, 1, 0, 0, 0, 3074, 421, 1, 0, 0, 0, 3075, 3076, 3, 474, 237, 0, 3076, 3077, 5, 304, 0, 0, 3077, 3078, 5, 76, 0, 0, 3078, 3079, 3, 230, 115, 0, 3079, 3091, 1, 0, 0, 0, 3080, 3081, 3, 474, 237, 0, 3081, 3082, 5, 304, 0, 0, 3082, 3083, 5, 236, 0, 0, 3083, 3084, 3, 128, 64, 0, 3084, 3091, 1, 0, 0, 0, 3085, 3086, 3, 474, 237, 0, 3086, 3087, 5, 304, 0, 0, 3087, 3088, 7, 26, 0, 0, 3088, 3089, 5, 426, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3075, 1, 0, 0, 0, 3090, 3080, 1, 0, 0, 0, 3090, 3085, 1, 0, 0, 0, 3091, 423, 1, 0, 0, 0, 3092, 3093, 3, 474, 237, 0, 3093, 3094, 5, 304, 0, 0, 3094, 3095, 5, 77, 0, 0, 3095, 3096, 3, 230, 115, 0, 3096, 3108, 1, 0, 0, 0, 3097, 3098, 3, 474, 237, 0, 3098, 3099, 5, 304, 0, 0, 3099, 3100, 5, 236, 0, 0, 3100, 3101, 3, 128, 64, 0, 3101, 3108, 1, 0, 0, 0, 3102, 3103, 3, 474, 237, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 367, 0, 0, 3105, 3106, 5, 426, 0, 0, 3106, 3108, 1, 0, 0, 0, 3107, 3092, 1, 0, 0, 0, 3107, 3097, 1, 0, 0, 0, 3107, 3102, 1, 0, 0, 0, 3108, 425, 1, 0, 0, 0, 3109, 3110, 5, 189, 0, 0, 3110, 3111, 5, 426, 0, 0, 3111, 427, 1, 0, 0, 0, 3112, 3114, 5, 101, 0, 0, 3113, 3115, 3, 30, 15, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 5, 237, 0, 0, 3117, 3123, 3, 634, 317, 0, 3118, 3119, 5, 397, 0, 0, 3119, 3120, 5, 237, 0, 0, 3120, 3122, 3, 634, 317, 0, 3121, 3118, 1, 0, 0, 0, 3122, 3125, 1, 0, 0, 0, 3123, 3121, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3128, 1, 0, 0, 0, 3125, 3123, 1, 0, 0, 0, 3126, 3127, 5, 152, 0, 0, 3127, 3129, 5, 254, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3131, 1, 0, 0, 0, 3130, 3132, 5, 255, 0, 0, 3131, 3130, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3134, 1, 0, 0, 0, 3133, 3135, 3, 14, 7, 0, 3134, 3133, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 429, 1, 0, 0, 0, 3136, 3139, 3, 576, 288, 0, 3137, 3139, 3, 296, 148, 0, 3138, 3136, 1, 0, 0, 0, 3138, 3137, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3141, 5, 405, 0, 0, 3141, 3142, 5, 426, 0, 0, 3142, 431, 1, 0, 0, 0, 3143, 3153, 5, 115, 0, 0, 3144, 3145, 5, 289, 0, 0, 3145, 3146, 5, 399, 0, 0, 3146, 3154, 7, 27, 0, 0, 3147, 3148, 5, 118, 0, 0, 3148, 3149, 5, 399, 0, 0, 3149, 3154, 5, 426, 0, 0, 3150, 3151, 5, 306, 0, 0, 3151, 3152, 5, 399, 0, 0, 3152, 3154, 5, 431, 0, 0, 3153, 3144, 1, 0, 0, 0, 3153, 3147, 1, 0, 0, 0, 3153, 3150, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3156, 5, 400, 0, 0, 3156, 433, 1, 0, 0, 0, 3157, 3158, 5, 160, 0, 0, 3158, 3159, 5, 426, 0, 0, 3159, 3160, 5, 233, 0, 0, 3160, 3161, 5, 426, 0, 0, 3161, 3162, 5, 301, 0, 0, 3162, 3167, 5, 426, 0, 0, 3163, 3164, 5, 159, 0, 0, 3164, 3165, 5, 426, 0, 0, 3165, 3166, 5, 232, 0, 0, 3166, 3168, 5, 426, 0, 0, 3167, 3163, 1, 0, 0, 0, 3167, 3168, 1, 0, 0, 0, 3168, 3171, 1, 0, 0, 0, 3169, 3171, 3, 642, 321, 0, 3170, 3157, 1, 0, 0, 0, 3170, 3169, 1, 0, 0, 0, 3171, 435, 1, 0, 0, 0, 3172, 3173, 5, 184, 0, 0, 3173, 3182, 5, 128, 0, 0, 3174, 3175, 5, 184, 0, 0, 3175, 3176, 5, 128, 0, 0, 3176, 3177, 3, 642, 321, 0, 3177, 3178, 5, 426, 0, 0, 3178, 3182, 1, 0, 0, 0, 3179, 3180, 5, 184, 0, 0, 3180, 3182, 3, 480, 240, 0, 3181, 3172, 1, 0, 0, 0, 3181, 3174, 1, 0, 0, 0, 3181, 3179, 1, 0, 0, 0, 3182, 437, 1, 0, 0, 0, 3183, 3185, 5, 58, 0, 0, 3184, 3186, 5, 333, 0, 0, 3185, 3184, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3188, 1, 0, 0, 0, 3187, 3189, 5, 345, 0, 0, 3188, 3187, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3191, 1, 0, 0, 0, 3190, 3192, 5, 123, 0, 0, 3191, 3190, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 3193, 1, 0, 0, 0, 3193, 3195, 5, 329, 0, 0, 3194, 3196, 3, 32, 16, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3254, 3, 482, 241, 0, 3198, 3200, 3, 436, 218, 0, 3199, 3201, 3, 200, 100, 0, 3200, 3199, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 1, 0, 0, 0, 3202, 3204, 3, 222, 111, 0, 3203, 3202, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3206, 1, 0, 0, 0, 3205, 3207, 3, 246, 123, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3209, 1, 0, 0, 0, 3208, 3210, 3, 426, 213, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3213, 3, 224, 112, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3215, 1, 0, 0, 0, 3214, 3216, 3, 198, 99, 0, 3215, 3214, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3255, 1, 0, 0, 0, 3217, 3218, 5, 399, 0, 0, 3218, 3219, 3, 250, 125, 0, 3219, 3220, 5, 400, 0, 0, 3220, 3222, 1, 0, 0, 0, 3221, 3217, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 1, 0, 0, 0, 3223, 3225, 3, 196, 98, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3227, 1, 0, 0, 0, 3226, 3228, 3, 200, 100, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3230, 1, 0, 0, 0, 3229, 3231, 3, 208, 104, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3233, 1, 0, 0, 0, 3232, 3234, 3, 210, 105, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3236, 1, 0, 0, 0, 3235, 3237, 3, 222, 111, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3239, 1, 0, 0, 0, 3238, 3240, 3, 246, 123, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3242, 1, 0, 0, 0, 3241, 3243, 3, 426, 213, 0, 3242, 3241, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3245, 1, 0, 0, 0, 3244, 3246, 3, 224, 112, 0, 3245, 3244, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3248, 1, 0, 0, 0, 3247, 3249, 3, 198, 99, 0, 3248, 3247, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3252, 1, 0, 0, 0, 3250, 3251, 5, 17, 0, 0, 3251, 3253, 3, 382, 191, 0, 3252, 3250, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3198, 1, 0, 0, 0, 3254, 3221, 1, 0, 0, 0, 3255, 3319, 1, 0, 0, 0, 3256, 3257, 5, 58, 0, 0, 3257, 3258, 5, 195, 0, 0, 3258, 3260, 5, 329, 0, 0, 3259, 3261, 3, 32, 16, 0, 3260, 3259, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3316, 3, 482, 241, 0, 3263, 3265, 3, 436, 218, 0, 3264, 3266, 3, 222, 111, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 3, 246, 123, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3272, 3, 426, 213, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3275, 3, 224, 112, 0, 3274, 3273, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3277, 1, 0, 0, 0, 3276, 3278, 3, 198, 99, 0, 3277, 3276, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3317, 1, 0, 0, 0, 3279, 3280, 5, 399, 0, 0, 3280, 3281, 3, 250, 125, 0, 3281, 3282, 5, 400, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3279, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3286, 1, 0, 0, 0, 3285, 3287, 3, 196, 98, 0, 3286, 3285, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3289, 1, 0, 0, 0, 3288, 3290, 3, 200, 100, 0, 3289, 3288, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3292, 1, 0, 0, 0, 3291, 3293, 3, 208, 104, 0, 3292, 3291, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3295, 1, 0, 0, 0, 3294, 3296, 3, 210, 105, 0, 3295, 3294, 1, 0, 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3299, 3, 222, 111, 0, 3298, 3297, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3301, 1, 0, 0, 0, 3300, 3302, 3, 246, 123, 0, 3301, 3300, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3304, 1, 0, 0, 0, 3303, 3305, 3, 426, 213, 0, 3304, 3303, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3307, 1, 0, 0, 0, 3306, 3308, 3, 224, 112, 0, 3307, 3306, 1, 0, 0, 0, 3307, 3308, 1, 0, 0, 0, 3308, 3310, 1, 0, 0, 0, 3309, 3311, 3, 198, 99, 0, 3310, 3309, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3313, 5, 17, 0, 0, 3313, 3315, 3, 382, 191, 0, 3314, 3312, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3263, 1, 0, 0, 0, 3316, 3283, 1, 0, 0, 0, 3317, 3319, 1, 0, 0, 0, 3318, 3183, 1, 0, 0, 0, 3318, 3256, 1, 0, 0, 0, 3319, 439, 1, 0, 0, 0, 3320, 3321, 5, 58, 0, 0, 3321, 3323, 5, 69, 0, 0, 3322, 3324, 3, 32, 16, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3328, 3, 642, 321, 0, 3326, 3327, 5, 352, 0, 0, 3327, 3329, 5, 426, 0, 0, 3328, 3326, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3332, 1, 0, 0, 0, 3330, 3331, 5, 367, 0, 0, 3331, 3333, 5, 426, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3335, 5, 47, 0, 0, 3335, 3337, 5, 426, 0, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3341, 1, 0, 0, 0, 3338, 3339, 5, 387, 0, 0, 3339, 3340, 5, 77, 0, 0, 3340, 3342, 3, 230, 115, 0, 3341, 3338, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 441, 1, 0, 0, 0, 3343, 3344, 5, 101, 0, 0, 3344, 3346, 5, 69, 0, 0, 3345, 3347, 3, 30, 15, 0, 3346, 3345, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 3, 642, 321, 0, 3349, 443, 1, 0, 0, 0, 3350, 3351, 3, 642, 321, 0, 3351, 3352, 5, 395, 0, 0, 3352, 3354, 1, 0, 0, 0, 3353, 3350, 1, 0, 0, 0, 3354, 3357, 1, 0, 0, 0, 3355, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3358, 1, 0, 0, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3359, 5, 415, 0, 0, 3359, 445, 1, 0, 0, 0, 3360, 3365, 3, 584, 292, 0, 3361, 3362, 5, 397, 0, 0, 3362, 3364, 3, 584, 292, 0, 3363, 3361, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 447, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3368, 3373, 3, 642, 321, 0, 3369, 3370, 5, 397, 0, 0, 3370, 3372, 3, 642, 321, 0, 3371, 3369, 1, 0, 0, 0, 3372, 3375, 1, 0, 0, 0, 3373, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 449, 1, 0, 0, 0, 3375, 3373, 1, 0, 0, 0, 3376, 3377, 5, 139, 0, 0, 3377, 3378, 3, 452, 226, 0, 3378, 451, 1, 0, 0, 0, 3379, 3380, 5, 359, 0, 0, 3380, 3383, 3, 460, 230, 0, 3381, 3382, 5, 397, 0, 0, 3382, 3384, 3, 460, 230, 0, 3383, 3381, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3383, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3389, 1, 0, 0, 0, 3387, 3389, 3, 456, 228, 0, 3388, 3379, 1, 0, 0, 0, 3388, 3387, 1, 0, 0, 0, 3389, 453, 1, 0, 0, 0, 3390, 3394, 3, 470, 235, 0, 3391, 3393, 3, 464, 232, 0, 3392, 3391, 1, 0, 0, 0, 3393, 3396, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3423, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3401, 3, 500, 250, 0, 3398, 3400, 3, 464, 232, 0, 3399, 3398, 1, 0, 0, 0, 3400, 3403, 1, 0, 0, 0, 3401, 3399, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3423, 1, 0, 0, 0, 3403, 3401, 1, 0, 0, 0, 3404, 3408, 3, 488, 244, 0, 3405, 3407, 3, 464, 232, 0, 3406, 3405, 1, 0, 0, 0, 3407, 3410, 1, 0, 0, 0, 3408, 3406, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 3423, 1, 0, 0, 0, 3410, 3408, 1, 0, 0, 0, 3411, 3415, 3, 494, 247, 0, 3412, 3414, 3, 464, 232, 0, 3413, 3412, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3423, 1, 0, 0, 0, 3417, 3415, 1, 0, 0, 0, 3418, 3419, 5, 399, 0, 0, 3419, 3420, 3, 456, 228, 0, 3420, 3421, 5, 400, 0, 0, 3421, 3423, 1, 0, 0, 0, 3422, 3390, 1, 0, 0, 0, 3422, 3397, 1, 0, 0, 0, 3422, 3404, 1, 0, 0, 0, 3422, 3411, 1, 0, 0, 0, 3422, 3418, 1, 0, 0, 0, 3423, 455, 1, 0, 0, 0, 3424, 3435, 3, 454, 227, 0, 3425, 3426, 3, 462, 231, 0, 3426, 3431, 3, 458, 229, 0, 3427, 3428, 5, 224, 0, 0, 3428, 3432, 3, 584, 292, 0, 3429, 3430, 5, 370, 0, 0, 3430, 3432, 3, 266, 133, 0, 3431, 3427, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3434, 1, 0, 0, 0, 3433, 3425, 1, 0, 0, 0, 3434, 3437, 1, 0, 0, 0, 3435, 3433, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 457, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3438, 3443, 3, 470, 235, 0, 3439, 3443, 3, 500, 250, 0, 3440, 3443, 3, 488, 244, 0, 3441, 3443, 3, 494, 247, 0, 3442, 3438, 1, 0, 0, 0, 3442, 3439, 1, 0, 0, 0, 3442, 3440, 1, 0, 0, 0, 3442, 3441, 1, 0, 0, 0, 3443, 3447, 1, 0, 0, 0, 3444, 3446, 3, 464, 232, 0, 3445, 3444, 1, 0, 0, 0, 3446, 3449, 1, 0, 0, 0, 3447, 3445, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 459, 1, 0, 0, 0, 3449, 3447, 1, 0, 0, 0, 3450, 3452, 5, 250, 0, 0, 3451, 3450, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3455, 3, 478, 239, 0, 3454, 3456, 3, 468, 234, 0, 3455, 3454, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3461, 1, 0, 0, 0, 3457, 3459, 5, 17, 0, 0, 3458, 3457, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 3462, 3, 642, 321, 0, 3461, 3458, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3464, 5, 399, 0, 0, 3464, 3465, 3, 446, 223, 0, 3465, 3466, 5, 400, 0, 0, 3466, 461, 1, 0, 0, 0, 3467, 3482, 5, 397, 0, 0, 3468, 3479, 5, 157, 0, 0, 3469, 3479, 5, 60, 0, 0, 3470, 3472, 7, 28, 0, 0, 3471, 3473, 5, 231, 0, 0, 3472, 3471, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3479, 1, 0, 0, 0, 3474, 3476, 5, 180, 0, 0, 3475, 3477, 7, 29, 0, 0, 3476, 3475, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3479, 1, 0, 0, 0, 3478, 3468, 1, 0, 0, 0, 3478, 3469, 1, 0, 0, 0, 3478, 3470, 1, 0, 0, 0, 3478, 3474, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3482, 5, 171, 0, 0, 3481, 3467, 1, 0, 0, 0, 3481, 3478, 1, 0, 0, 0, 3482, 463, 1, 0, 0, 0, 3483, 3484, 5, 178, 0, 0, 3484, 3485, 5, 378, 0, 0, 3485, 3486, 5, 231, 0, 0, 3486, 3487, 3, 554, 277, 0, 3487, 3497, 3, 466, 233, 0, 3488, 3489, 5, 17, 0, 0, 3489, 3494, 3, 642, 321, 0, 3490, 3491, 5, 397, 0, 0, 3491, 3493, 3, 642, 321, 0, 3492, 3490, 1, 0, 0, 0, 3493, 3496, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3498, 1, 0, 0, 0, 3496, 3494, 1, 0, 0, 0, 3497, 3488, 1, 0, 0, 0, 3497, 3498, 1, 0, 0, 0, 3498, 3541, 1, 0, 0, 0, 3499, 3501, 5, 397, 0, 0, 3500, 3499, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3538, 5, 178, 0, 0, 3503, 3504, 5, 378, 0, 0, 3504, 3505, 3, 554, 277, 0, 3505, 3515, 3, 466, 233, 0, 3506, 3507, 5, 17, 0, 0, 3507, 3512, 3, 642, 321, 0, 3508, 3509, 5, 397, 0, 0, 3509, 3511, 3, 642, 321, 0, 3510, 3508, 1, 0, 0, 0, 3511, 3514, 1, 0, 0, 0, 3512, 3510, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3516, 1, 0, 0, 0, 3514, 3512, 1, 0, 0, 0, 3515, 3506, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 3539, 1, 0, 0, 0, 3517, 3518, 5, 329, 0, 0, 3518, 3519, 5, 399, 0, 0, 3519, 3520, 3, 498, 249, 0, 3520, 3522, 5, 400, 0, 0, 3521, 3523, 5, 17, 0, 0, 3522, 3521, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3536, 3, 466, 233, 0, 3525, 3526, 5, 399, 0, 0, 3526, 3531, 3, 642, 321, 0, 3527, 3528, 5, 397, 0, 0, 3528, 3530, 3, 642, 321, 0, 3529, 3527, 1, 0, 0, 0, 3530, 3533, 1, 0, 0, 0, 3531, 3529, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 3534, 1, 0, 0, 0, 3533, 3531, 1, 0, 0, 0, 3534, 3535, 5, 400, 0, 0, 3535, 3537, 1, 0, 0, 0, 3536, 3525, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3539, 1, 0, 0, 0, 3538, 3503, 1, 0, 0, 0, 3538, 3517, 1, 0, 0, 0, 3539, 3541, 1, 0, 0, 0, 3540, 3483, 1, 0, 0, 0, 3540, 3500, 1, 0, 0, 0, 3541, 465, 1, 0, 0, 0, 3542, 3543, 3, 642, 321, 0, 3543, 467, 1, 0, 0, 0, 3544, 3545, 5, 331, 0, 0, 3545, 3546, 5, 399, 0, 0, 3546, 3547, 5, 30, 0, 0, 3547, 3548, 5, 431, 0, 0, 3548, 3549, 5, 230, 0, 0, 3549, 3550, 5, 221, 0, 0, 3550, 3560, 5, 431, 0, 0, 3551, 3552, 5, 224, 0, 0, 3552, 3557, 3, 584, 292, 0, 3553, 3554, 5, 397, 0, 0, 3554, 3556, 3, 584, 292, 0, 3555, 3553, 1, 0, 0, 0, 3556, 3559, 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3561, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3551, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3572, 5, 400, 0, 0, 3563, 3564, 5, 331, 0, 0, 3564, 3568, 5, 399, 0, 0, 3565, 3566, 5, 431, 0, 0, 3566, 3569, 7, 30, 0, 0, 3567, 3569, 5, 430, 0, 0, 3568, 3565, 1, 0, 0, 0, 3568, 3567, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3572, 5, 400, 0, 0, 3571, 3544, 1, 0, 0, 0, 3571, 3563, 1, 0, 0, 0, 3572, 469, 1, 0, 0, 0, 3573, 3575, 3, 478, 239, 0, 3574, 3576, 3, 226, 113, 0, 3575, 3574, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3578, 1, 0, 0, 0, 3577, 3579, 3, 468, 234, 0, 3578, 3577, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3581, 1, 0, 0, 0, 3580, 3582, 3, 472, 236, 0, 3581, 3580, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3587, 1, 0, 0, 0, 3583, 3585, 5, 17, 0, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3588, 3, 642, 321, 0, 3587, 3584, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 471, 1, 0, 0, 0, 3589, 3599, 5, 134, 0, 0, 3590, 3591, 5, 327, 0, 0, 3591, 3592, 5, 17, 0, 0, 3592, 3593, 5, 221, 0, 0, 3593, 3600, 3, 584, 292, 0, 3594, 3595, 5, 134, 0, 0, 3595, 3596, 5, 328, 0, 0, 3596, 3597, 5, 17, 0, 0, 3597, 3598, 5, 221, 0, 0, 3598, 3600, 5, 431, 0, 0, 3599, 3590, 1, 0, 0, 0, 3599, 3594, 1, 0, 0, 0, 3600, 473, 1, 0, 0, 0, 3601, 3602, 3, 642, 321, 0, 3602, 475, 1, 0, 0, 0, 3603, 3604, 3, 642, 321, 0, 3604, 477, 1, 0, 0, 0, 3605, 3608, 3, 480, 240, 0, 3606, 3608, 3, 484, 242, 0, 3607, 3605, 1, 0, 0, 0, 3607, 3606, 1, 0, 0, 0, 3608, 479, 1, 0, 0, 0, 3609, 3610, 3, 642, 321, 0, 3610, 3611, 5, 395, 0, 0, 3611, 3614, 3, 642, 321, 0, 3612, 3613, 5, 395, 0, 0, 3613, 3615, 3, 642, 321, 0, 3614, 3612, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3618, 1, 0, 0, 0, 3616, 3618, 3, 642, 321, 0, 3617, 3609, 1, 0, 0, 0, 3617, 3616, 1, 0, 0, 0, 3618, 481, 1, 0, 0, 0, 3619, 3620, 3, 642, 321, 0, 3620, 3621, 5, 395, 0, 0, 3621, 3624, 3, 642, 321, 0, 3622, 3623, 5, 395, 0, 0, 3623, 3625, 3, 642, 321, 0, 3624, 3622, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3628, 3, 642, 321, 0, 3627, 3619, 1, 0, 0, 0, 3627, 3626, 1, 0, 0, 0, 3628, 483, 1, 0, 0, 0, 3629, 3630, 3, 642, 321, 0, 3630, 3631, 5, 395, 0, 0, 3631, 3633, 1, 0, 0, 0, 3632, 3629, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 3, 642, 321, 0, 3635, 485, 1, 0, 0, 0, 3636, 3637, 3, 642, 321, 0, 3637, 3638, 5, 395, 0, 0, 3638, 3640, 1, 0, 0, 0, 3639, 3636, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 3, 642, 321, 0, 3642, 487, 1, 0, 0, 0, 3643, 3644, 5, 399, 0, 0, 3644, 3645, 3, 362, 181, 0, 3645, 3647, 5, 400, 0, 0, 3646, 3648, 5, 17, 0, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3650, 3, 642, 321, 0, 3650, 489, 1, 0, 0, 0, 3651, 3653, 3, 546, 273, 0, 3652, 3654, 3, 544, 272, 0, 3653, 3652, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3663, 1, 0, 0, 0, 3655, 3663, 3, 544, 272, 0, 3656, 3658, 3, 550, 275, 0, 3657, 3659, 3, 552, 276, 0, 3658, 3657, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3663, 1, 0, 0, 0, 3660, 3663, 3, 552, 276, 0, 3661, 3663, 3, 548, 274, 0, 3662, 3651, 1, 0, 0, 0, 3662, 3655, 1, 0, 0, 0, 3662, 3656, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3661, 1, 0, 0, 0, 3663, 491, 1, 0, 0, 0, 3664, 3668, 3, 488, 244, 0, 3665, 3668, 3, 470, 235, 0, 3666, 3668, 3, 494, 247, 0, 3667, 3664, 1, 0, 0, 0, 3667, 3665, 1, 0, 0, 0, 3667, 3666, 1, 0, 0, 0, 3668, 493, 1, 0, 0, 0, 3669, 3670, 3, 642, 321, 0, 3670, 3671, 5, 399, 0, 0, 3671, 3672, 5, 224, 0, 0, 3672, 3674, 3, 492, 246, 0, 3673, 3675, 3, 490, 245, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3691, 1, 0, 0, 0, 3676, 3677, 5, 432, 0, 0, 3677, 3678, 5, 399, 0, 0, 3678, 3679, 3, 584, 292, 0, 3679, 3688, 5, 400, 0, 0, 3680, 3681, 5, 397, 0, 0, 3681, 3682, 5, 432, 0, 0, 3682, 3683, 5, 399, 0, 0, 3683, 3684, 3, 584, 292, 0, 3684, 3685, 5, 400, 0, 0, 3685, 3687, 1, 0, 0, 0, 3686, 3680, 1, 0, 0, 0, 3687, 3690, 1, 0, 0, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3692, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3691, 3676, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 5, 400, 0, 0, 3694, 3696, 3, 642, 321, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 495, 1, 0, 0, 0, 3697, 3698, 5, 384, 0, 0, 3698, 3699, 3, 584, 292, 0, 3699, 497, 1, 0, 0, 0, 3700, 3719, 5, 374, 0, 0, 3701, 3706, 3, 540, 270, 0, 3702, 3703, 5, 397, 0, 0, 3703, 3705, 3, 540, 270, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3708, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3720, 1, 0, 0, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3710, 5, 399, 0, 0, 3710, 3711, 3, 536, 268, 0, 3711, 3716, 5, 400, 0, 0, 3712, 3713, 5, 397, 0, 0, 3713, 3715, 3, 540, 270, 0, 3714, 3712, 1, 0, 0, 0, 3715, 3718, 1, 0, 0, 0, 3716, 3714, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3701, 1, 0, 0, 0, 3719, 3709, 1, 0, 0, 0, 3720, 499, 1, 0, 0, 0, 3721, 3722, 5, 329, 0, 0, 3722, 3723, 5, 399, 0, 0, 3723, 3724, 3, 498, 249, 0, 3724, 3726, 5, 400, 0, 0, 3725, 3727, 5, 17, 0, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3738, 3, 466, 233, 0, 3729, 3730, 5, 399, 0, 0, 3730, 3735, 3, 642, 321, 0, 3731, 3732, 5, 397, 0, 0, 3732, 3734, 3, 642, 321, 0, 3733, 3731, 1, 0, 0, 0, 3734, 3737, 1, 0, 0, 0, 3735, 3733, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3739, 1, 0, 0, 0, 3737, 3735, 1, 0, 0, 0, 3738, 3729, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3741, 5, 400, 0, 0, 3741, 501, 1, 0, 0, 0, 3742, 3744, 5, 299, 0, 0, 3743, 3745, 5, 436, 0, 0, 3744, 3743, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3759, 1, 0, 0, 0, 3746, 3748, 7, 22, 0, 0, 3747, 3746, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3754, 3, 506, 253, 0, 3750, 3751, 5, 397, 0, 0, 3751, 3753, 3, 506, 253, 0, 3752, 3750, 1, 0, 0, 0, 3753, 3756, 1, 0, 0, 0, 3754, 3752, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3760, 1, 0, 0, 0, 3756, 3754, 1, 0, 0, 0, 3757, 3758, 5, 347, 0, 0, 3758, 3760, 3, 504, 252, 0, 3759, 3747, 1, 0, 0, 0, 3759, 3757, 1, 0, 0, 0, 3760, 3763, 1, 0, 0, 0, 3761, 3763, 3, 508, 254, 0, 3762, 3742, 1, 0, 0, 0, 3762, 3761, 1, 0, 0, 0, 3763, 503, 1, 0, 0, 0, 3764, 3765, 5, 399, 0, 0, 3765, 3766, 3, 512, 256, 0, 3766, 3767, 5, 400, 0, 0, 3767, 3768, 3, 212, 106, 0, 3768, 3769, 3, 216, 108, 0, 3769, 3770, 5, 370, 0, 0, 3770, 3783, 5, 426, 0, 0, 3771, 3781, 5, 17, 0, 0, 3772, 3775, 5, 399, 0, 0, 3773, 3776, 3, 448, 224, 0, 3774, 3776, 3, 248, 124, 0, 3775, 3773, 1, 0, 0, 0, 3775, 3774, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3778, 5, 400, 0, 0, 3778, 3782, 1, 0, 0, 0, 3779, 3782, 3, 448, 224, 0, 3780, 3782, 3, 248, 124, 0, 3781, 3772, 1, 0, 0, 0, 3781, 3779, 1, 0, 0, 0, 3781, 3780, 1, 0, 0, 0, 3782, 3784, 1, 0, 0, 0, 3783, 3771, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3786, 3, 212, 106, 0, 3786, 3787, 3, 214, 107, 0, 3787, 505, 1, 0, 0, 0, 3788, 3812, 3, 444, 222, 0, 3789, 3792, 3, 256, 128, 0, 3790, 3792, 3, 584, 292, 0, 3791, 3789, 1, 0, 0, 0, 3791, 3790, 1, 0, 0, 0, 3792, 3809, 1, 0, 0, 0, 3793, 3795, 5, 17, 0, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3810, 3, 642, 321, 0, 3797, 3798, 5, 17, 0, 0, 3798, 3799, 5, 399, 0, 0, 3799, 3804, 3, 642, 321, 0, 3800, 3801, 5, 397, 0, 0, 3801, 3803, 3, 642, 321, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3806, 1, 0, 0, 0, 3804, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3807, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3807, 3808, 5, 400, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3794, 1, 0, 0, 0, 3809, 3797, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3788, 1, 0, 0, 0, 3811, 3791, 1, 0, 0, 0, 3812, 507, 1, 0, 0, 0, 3813, 3814, 7, 31, 0, 0, 3814, 3815, 3, 512, 256, 0, 3815, 3816, 3, 212, 106, 0, 3816, 3817, 3, 216, 108, 0, 3817, 3818, 5, 370, 0, 0, 3818, 3831, 5, 426, 0, 0, 3819, 3829, 5, 17, 0, 0, 3820, 3823, 5, 399, 0, 0, 3821, 3824, 3, 448, 224, 0, 3822, 3824, 3, 248, 124, 0, 3823, 3821, 1, 0, 0, 0, 3823, 3822, 1, 0, 0, 0, 3824, 3825, 1, 0, 0, 0, 3825, 3826, 5, 400, 0, 0, 3826, 3830, 1, 0, 0, 0, 3827, 3830, 3, 448, 224, 0, 3828, 3830, 3, 248, 124, 0, 3829, 3820, 1, 0, 0, 0, 3829, 3827, 1, 0, 0, 0, 3829, 3828, 1, 0, 0, 0, 3830, 3832, 1, 0, 0, 0, 3831, 3819, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3834, 3, 212, 106, 0, 3834, 3835, 3, 214, 107, 0, 3835, 509, 1, 0, 0, 0, 3836, 3839, 3, 444, 222, 0, 3837, 3839, 3, 584, 292, 0, 3838, 3836, 1, 0, 0, 0, 3838, 3837, 1, 0, 0, 0, 3839, 511, 1, 0, 0, 0, 3840, 3845, 3, 510, 255, 0, 3841, 3842, 5, 397, 0, 0, 3842, 3844, 3, 510, 255, 0, 3843, 3841, 1, 0, 0, 0, 3844, 3847, 1, 0, 0, 0, 3845, 3843, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 513, 1, 0, 0, 0, 3847, 3845, 1, 0, 0, 0, 3848, 3849, 5, 386, 0, 0, 3849, 3850, 3, 642, 321, 0, 3850, 3851, 5, 17, 0, 0, 3851, 3859, 3, 516, 258, 0, 3852, 3853, 5, 397, 0, 0, 3853, 3854, 3, 642, 321, 0, 3854, 3855, 5, 17, 0, 0, 3855, 3856, 3, 516, 258, 0, 3856, 3858, 1, 0, 0, 0, 3857, 3852, 1, 0, 0, 0, 3858, 3861, 1, 0, 0, 0, 3859, 3857, 1, 0, 0, 0, 3859, 3860, 1, 0, 0, 0, 3860, 515, 1, 0, 0, 0, 3861, 3859, 1, 0, 0, 0, 3862, 3875, 3, 642, 321, 0, 3863, 3865, 5, 399, 0, 0, 3864, 3866, 3, 642, 321, 0, 3865, 3864, 1, 0, 0, 0, 3865, 3866, 1, 0, 0, 0, 3866, 3868, 1, 0, 0, 0, 3867, 3869, 3, 490, 245, 0, 3868, 3867, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3871, 1, 0, 0, 0, 3870, 3872, 3, 518, 259, 0, 3871, 3870, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3873, 1, 0, 0, 0, 3873, 3875, 5, 400, 0, 0, 3874, 3862, 1, 0, 0, 0, 3874, 3863, 1, 0, 0, 0, 3875, 517, 1, 0, 0, 0, 3876, 3890, 7, 32, 0, 0, 3877, 3878, 5, 354, 0, 0, 3878, 3884, 5, 247, 0, 0, 3879, 3880, 5, 62, 0, 0, 3880, 3884, 5, 291, 0, 0, 3881, 3882, 5, 431, 0, 0, 3882, 3884, 5, 247, 0, 0, 3883, 3877, 1, 0, 0, 0, 3883, 3879, 1, 0, 0, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3891, 1, 0, 0, 0, 3885, 3886, 5, 25, 0, 0, 3886, 3887, 3, 520, 260, 0, 3887, 3888, 5, 11, 0, 0, 3888, 3889, 3, 520, 260, 0, 3889, 3891, 1, 0, 0, 0, 3890, 3883, 1, 0, 0, 0, 3890, 3885, 1, 0, 0, 0, 3891, 519, 1, 0, 0, 0, 3892, 3893, 7, 33, 0, 0, 3893, 3897, 7, 34, 0, 0, 3894, 3895, 5, 62, 0, 0, 3895, 3897, 5, 291, 0, 0, 3896, 3892, 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3897, 521, 1, 0, 0, 0, 3898, 3899, 5, 144, 0, 0, 3899, 3905, 5, 32, 0, 0, 3900, 3906, 3, 256, 128, 0, 3901, 3906, 3, 524, 262, 0, 3902, 3906, 3, 526, 263, 0, 3903, 3904, 5, 399, 0, 0, 3904, 3906, 5, 400, 0, 0, 3905, 3900, 1, 0, 0, 0, 3905, 3901, 1, 0, 0, 0, 3905, 3902, 1, 0, 0, 0, 3905, 3903, 1, 0, 0, 0, 3906, 523, 1, 0, 0, 0, 3907, 3910, 5, 290, 0, 0, 3908, 3910, 5, 61, 0, 0, 3909, 3907, 1, 0, 0, 0, 3909, 3908, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3912, 5, 399, 0, 0, 3912, 3917, 3, 584, 292, 0, 3913, 3914, 5, 397, 0, 0, 3914, 3916, 3, 584, 292, 0, 3915, 3913, 1, 0, 0, 0, 3916, 3919, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3920, 1, 0, 0, 0, 3919, 3917, 1, 0, 0, 0, 3920, 3921, 5, 400, 0, 0, 3921, 525, 1, 0, 0, 0, 3922, 3927, 3, 542, 271, 0, 3923, 3924, 5, 387, 0, 0, 3924, 3928, 5, 290, 0, 0, 3925, 3926, 5, 387, 0, 0, 3926, 3928, 5, 61, 0, 0, 3927, 3923, 1, 0, 0, 0, 3927, 3925, 1, 0, 0, 0, 3927, 3928, 1, 0, 0, 0, 3928, 3942, 1, 0, 0, 0, 3929, 3930, 5, 145, 0, 0, 3930, 3931, 5, 305, 0, 0, 3931, 3932, 5, 399, 0, 0, 3932, 3937, 3, 528, 264, 0, 3933, 3934, 5, 397, 0, 0, 3934, 3936, 3, 528, 264, 0, 3935, 3933, 1, 0, 0, 0, 3936, 3939, 1, 0, 0, 0, 3937, 3935, 1, 0, 0, 0, 3937, 3938, 1, 0, 0, 0, 3938, 3940, 1, 0, 0, 0, 3939, 3937, 1, 0, 0, 0, 3940, 3941, 5, 400, 0, 0, 3941, 3943, 1, 0, 0, 0, 3942, 3929, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 527, 1, 0, 0, 0, 3944, 3946, 5, 399, 0, 0, 3945, 3947, 3, 584, 292, 0, 3946, 3945, 1, 0, 0, 0, 3946, 3947, 1, 0, 0, 0, 3947, 3952, 1, 0, 0, 0, 3948, 3949, 5, 397, 0, 0, 3949, 3951, 3, 584, 292, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3954, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3955, 1, 0, 0, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3958, 5, 400, 0, 0, 3956, 3958, 3, 584, 292, 0, 3957, 3944, 1, 0, 0, 0, 3957, 3956, 1, 0, 0, 0, 3958, 529, 1, 0, 0, 0, 3959, 3960, 5, 146, 0, 0, 3960, 3961, 3, 584, 292, 0, 3961, 531, 1, 0, 0, 0, 3962, 3963, 5, 256, 0, 0, 3963, 3964, 3, 584, 292, 0, 3964, 533, 1, 0, 0, 0, 3965, 3968, 5, 83, 0, 0, 3966, 3968, 3, 584, 292, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3966, 1, 0, 0, 0, 3968, 535, 1, 0, 0, 0, 3969, 3971, 3, 584, 292, 0, 3970, 3972, 5, 17, 0, 0, 3971, 3970, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3974, 1, 0, 0, 0, 3973, 3975, 3, 642, 321, 0, 3974, 3973, 1, 0, 0, 0, 3974, 3975, 1, 0, 0, 0, 3975, 3986, 1, 0, 0, 0, 3976, 3977, 5, 397, 0, 0, 3977, 3979, 3, 584, 292, 0, 3978, 3980, 5, 17, 0, 0, 3979, 3978, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3983, 3, 642, 321, 0, 3982, 3981, 1, 0, 0, 0, 3982, 3983, 1, 0, 0, 0, 3983, 3985, 1, 0, 0, 0, 3984, 3976, 1, 0, 0, 0, 3985, 3988, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 537, 1, 0, 0, 0, 3988, 3986, 1, 0, 0, 0, 3989, 3992, 3, 540, 270, 0, 3990, 3992, 3, 542, 271, 0, 3991, 3989, 1, 0, 0, 0, 3991, 3990, 1, 0, 0, 0, 3992, 539, 1, 0, 0, 0, 3993, 3994, 5, 399, 0, 0, 3994, 3995, 3, 542, 271, 0, 3995, 3996, 5, 400, 0, 0, 3996, 541, 1, 0, 0, 0, 3997, 4004, 3, 534, 267, 0, 3998, 3999, 5, 397, 0, 0, 3999, 4001, 3, 534, 267, 0, 4000, 3998, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4000, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4005, 1, 0, 0, 0, 4004, 4000, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 543, 1, 0, 0, 0, 4006, 4007, 5, 229, 0, 0, 4007, 4008, 5, 32, 0, 0, 4008, 4013, 3, 310, 155, 0, 4009, 4010, 5, 397, 0, 0, 4010, 4012, 3, 310, 155, 0, 4011, 4009, 1, 0, 0, 0, 4012, 4015, 1, 0, 0, 0, 4013, 4011, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 545, 1, 0, 0, 0, 4015, 4013, 1, 0, 0, 0, 4016, 4017, 5, 237, 0, 0, 4017, 4018, 5, 32, 0, 0, 4018, 4019, 3, 538, 269, 0, 4019, 547, 1, 0, 0, 0, 4020, 4021, 5, 41, 0, 0, 4021, 4022, 5, 32, 0, 0, 4022, 4023, 3, 538, 269, 0, 4023, 549, 1, 0, 0, 0, 4024, 4025, 5, 97, 0, 0, 4025, 4026, 5, 32, 0, 0, 4026, 4027, 3, 538, 269, 0, 4027, 551, 1, 0, 0, 0, 4028, 4029, 5, 314, 0, 0, 4029, 4049, 5, 32, 0, 0, 4030, 4031, 5, 399, 0, 0, 4031, 4036, 3, 310, 155, 0, 4032, 4033, 5, 397, 0, 0, 4033, 4035, 3, 310, 155, 0, 4034, 4032, 1, 0, 0, 0, 4035, 4038, 1, 0, 0, 0, 4036, 4034, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4039, 1, 0, 0, 0, 4038, 4036, 1, 0, 0, 0, 4039, 4040, 5, 400, 0, 0, 4040, 4050, 1, 0, 0, 0, 4041, 4046, 3, 310, 155, 0, 4042, 4043, 5, 397, 0, 0, 4043, 4045, 3, 310, 155, 0, 4044, 4042, 1, 0, 0, 0, 4045, 4048, 1, 0, 0, 0, 4046, 4044, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4050, 1, 0, 0, 0, 4048, 4046, 1, 0, 0, 0, 4049, 4030, 1, 0, 0, 0, 4049, 4041, 1, 0, 0, 0, 4050, 553, 1, 0, 0, 0, 4051, 4052, 5, 349, 0, 0, 4052, 4056, 5, 399, 0, 0, 4053, 4057, 5, 179, 0, 0, 4054, 4057, 5, 343, 0, 0, 4055, 4057, 5, 29, 0, 0, 4056, 4053, 1, 0, 0, 0, 4056, 4054, 1, 0, 0, 0, 4056, 4055, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 1, 0, 0, 0, 4058, 4060, 3, 510, 255, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 4062, 5, 139, 0, 0, 4062, 4063, 3, 510, 255, 0, 4063, 4064, 5, 400, 0, 0, 4064, 4105, 1, 0, 0, 0, 4065, 4066, 3, 562, 281, 0, 4066, 4081, 5, 399, 0, 0, 4067, 4082, 5, 415, 0, 0, 4068, 4070, 7, 22, 0, 0, 4069, 4068, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4079, 1, 0, 0, 0, 4071, 4076, 3, 510, 255, 0, 4072, 4073, 5, 397, 0, 0, 4073, 4075, 3, 510, 255, 0, 4074, 4072, 1, 0, 0, 0, 4075, 4078, 1, 0, 0, 0, 4076, 4074, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4080, 1, 0, 0, 0, 4078, 4076, 1, 0, 0, 0, 4079, 4071, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4082, 1, 0, 0, 0, 4081, 4067, 1, 0, 0, 0, 4081, 4069, 1, 0, 0, 0, 4082, 4102, 1, 0, 0, 0, 4083, 4084, 5, 400, 0, 0, 4084, 4085, 5, 388, 0, 0, 4085, 4086, 5, 144, 0, 0, 4086, 4087, 5, 399, 0, 0, 4087, 4088, 3, 544, 272, 0, 4088, 4089, 5, 400, 0, 0, 4089, 4103, 1, 0, 0, 0, 4090, 4092, 5, 400, 0, 0, 4091, 4093, 3, 556, 278, 0, 4092, 4091, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 4095, 5, 234, 0, 0, 4095, 4103, 3, 516, 258, 0, 4096, 4097, 3, 556, 278, 0, 4097, 4098, 5, 400, 0, 0, 4098, 4099, 5, 234, 0, 0, 4099, 4100, 3, 516, 258, 0, 4100, 4103, 1, 0, 0, 0, 4101, 4103, 5, 400, 0, 0, 4102, 4083, 1, 0, 0, 0, 4102, 4090, 1, 0, 0, 0, 4102, 4096, 1, 0, 0, 0, 4102, 4101, 1, 0, 0, 0, 4103, 4105, 1, 0, 0, 0, 4104, 4051, 1, 0, 0, 0, 4104, 4065, 1, 0, 0, 0, 4105, 555, 1, 0, 0, 0, 4106, 4107, 7, 35, 0, 0, 4107, 4108, 5, 220, 0, 0, 4108, 557, 1, 0, 0, 0, 4109, 4110, 3, 644, 322, 0, 4110, 559, 1, 0, 0, 0, 4111, 4114, 3, 644, 322, 0, 4112, 4114, 5, 426, 0, 0, 4113, 4111, 1, 0, 0, 0, 4113, 4112, 1, 0, 0, 0, 4114, 561, 1, 0, 0, 0, 4115, 4119, 3, 644, 322, 0, 4116, 4119, 3, 650, 325, 0, 4117, 4119, 3, 640, 320, 0, 4118, 4115, 1, 0, 0, 0, 4118, 4116, 1, 0, 0, 0, 4118, 4117, 1, 0, 0, 0, 4119, 563, 1, 0, 0, 0, 4120, 4121, 5, 36, 0, 0, 4121, 4122, 5, 399, 0, 0, 4122, 4123, 3, 584, 292, 0, 4123, 4124, 5, 17, 0, 0, 4124, 4127, 3, 350, 175, 0, 4125, 4126, 5, 137, 0, 0, 4126, 4128, 5, 426, 0, 0, 4127, 4125, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4129, 1, 0, 0, 0, 4129, 4130, 5, 400, 0, 0, 4130, 565, 1, 0, 0, 0, 4131, 4132, 5, 35, 0, 0, 4132, 4138, 3, 584, 292, 0, 4133, 4134, 5, 383, 0, 0, 4134, 4135, 3, 584, 292, 0, 4135, 4136, 5, 335, 0, 0, 4136, 4137, 3, 584, 292, 0, 4137, 4139, 1, 0, 0, 0, 4138, 4133, 1, 0, 0, 0, 4139, 4140, 1, 0, 0, 0, 4140, 4138, 1, 0, 0, 0, 4140, 4141, 1, 0, 0, 0, 4141, 4144, 1, 0, 0, 0, 4142, 4143, 5, 105, 0, 0, 4143, 4145, 3, 584, 292, 0, 4144, 4142, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4146, 1, 0, 0, 0, 4146, 4147, 5, 108, 0, 0, 4147, 567, 1, 0, 0, 0, 4148, 4154, 5, 35, 0, 0, 4149, 4150, 5, 383, 0, 0, 4150, 4151, 3, 584, 292, 0, 4151, 4152, 5, 335, 0, 0, 4152, 4153, 3, 584, 292, 0, 4153, 4155, 1, 0, 0, 0, 4154, 4149, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4154, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4160, 1, 0, 0, 0, 4158, 4159, 5, 105, 0, 0, 4159, 4161, 3, 584, 292, 0, 4160, 4158, 1, 0, 0, 0, 4160, 4161, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 4163, 5, 108, 0, 0, 4163, 569, 1, 0, 0, 0, 4164, 4165, 5, 132, 0, 0, 4165, 4166, 5, 399, 0, 0, 4166, 4169, 3, 584, 292, 0, 4167, 4168, 5, 341, 0, 0, 4168, 4170, 3, 574, 287, 0, 4169, 4167, 1, 0, 0, 0, 4169, 4170, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4172, 5, 400, 0, 0, 4172, 571, 1, 0, 0, 0, 4173, 4174, 5, 124, 0, 0, 4174, 4175, 5, 399, 0, 0, 4175, 4176, 3, 574, 287, 0, 4176, 4177, 5, 139, 0, 0, 4177, 4178, 3, 584, 292, 0, 4178, 4179, 5, 400, 0, 0, 4179, 573, 1, 0, 0, 0, 4180, 4189, 3, 670, 335, 0, 4181, 4189, 5, 257, 0, 0, 4182, 4189, 3, 672, 336, 0, 4183, 4189, 3, 674, 337, 0, 4184, 4189, 3, 676, 338, 0, 4185, 4189, 3, 678, 339, 0, 4186, 4189, 3, 680, 340, 0, 4187, 4189, 3, 682, 341, 0, 4188, 4180, 1, 0, 0, 0, 4188, 4181, 1, 0, 0, 0, 4188, 4182, 1, 0, 0, 0, 4188, 4183, 1, 0, 0, 0, 4188, 4184, 1, 0, 0, 0, 4188, 4185, 1, 0, 0, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4187, 1, 0, 0, 0, 4189, 575, 1, 0, 0, 0, 4190, 4191, 3, 578, 289, 0, 4191, 4192, 3, 582, 291, 0, 4192, 4219, 1, 0, 0, 0, 4193, 4219, 5, 431, 0, 0, 4194, 4195, 5, 71, 0, 0, 4195, 4219, 5, 426, 0, 0, 4196, 4219, 5, 63, 0, 0, 4197, 4198, 5, 337, 0, 0, 4198, 4219, 5, 426, 0, 0, 4199, 4219, 5, 64, 0, 0, 4200, 4201, 5, 338, 0, 0, 4201, 4219, 5, 426, 0, 0, 4202, 4206, 5, 426, 0, 0, 4203, 4205, 5, 426, 0, 0, 4204, 4203, 1, 0, 0, 0, 4205, 4208, 1, 0, 0, 0, 4206, 4204, 1, 0, 0, 0, 4206, 4207, 1, 0, 0, 0, 4207, 4219, 1, 0, 0, 0, 4208, 4206, 1, 0, 0, 0, 4209, 4219, 5, 428, 0, 0, 4210, 4219, 5, 429, 0, 0, 4211, 4212, 5, 433, 0, 0, 4212, 4219, 5, 427, 0, 0, 4213, 4219, 5, 350, 0, 0, 4214, 4219, 5, 125, 0, 0, 4215, 4219, 5, 219, 0, 0, 4216, 4219, 5, 424, 0, 0, 4217, 4219, 3, 258, 129, 0, 4218, 4190, 1, 0, 0, 0, 4218, 4193, 1, 0, 0, 0, 4218, 4194, 1, 0, 0, 0, 4218, 4196, 1, 0, 0, 0, 4218, 4197, 1, 0, 0, 0, 4218, 4199, 1, 0, 0, 0, 4218, 4200, 1, 0, 0, 0, 4218, 4202, 1, 0, 0, 0, 4218, 4209, 1, 0, 0, 0, 4218, 4210, 1, 0, 0, 0, 4218, 4211, 1, 0, 0, 0, 4218, 4213, 1, 0, 0, 0, 4218, 4214, 1, 0, 0, 0, 4218, 4215, 1, 0, 0, 0, 4218, 4216, 1, 0, 0, 0, 4218, 4217, 1, 0, 0, 0, 4219, 577, 1, 0, 0, 0, 4220, 4221, 7, 27, 0, 0, 4221, 579, 1, 0, 0, 0, 4222, 4223, 5, 399, 0, 0, 4223, 4224, 3, 578, 289, 0, 4224, 4225, 5, 400, 0, 0, 4225, 4226, 3, 582, 291, 0, 4226, 4238, 1, 0, 0, 0, 4227, 4233, 5, 165, 0, 0, 4228, 4234, 3, 578, 289, 0, 4229, 4230, 5, 399, 0, 0, 4230, 4231, 3, 584, 292, 0, 4231, 4232, 5, 400, 0, 0, 4232, 4234, 1, 0, 0, 0, 4233, 4228, 1, 0, 0, 0, 4233, 4229, 1, 0, 0, 0, 4234, 4235, 1, 0, 0, 0, 4235, 4236, 3, 582, 291, 0, 4236, 4238, 1, 0, 0, 0, 4237, 4222, 1, 0, 0, 0, 4237, 4227, 1, 0, 0, 0, 4238, 581, 1, 0, 0, 0, 4239, 4240, 3, 670, 335, 0, 4240, 4241, 5, 341, 0, 0, 4241, 4242, 3, 672, 336, 0, 4242, 4254, 1, 0, 0, 0, 4243, 4244, 3, 676, 338, 0, 4244, 4245, 5, 341, 0, 0, 4245, 4246, 3, 682, 341, 0, 4246, 4254, 1, 0, 0, 0, 4247, 4254, 3, 670, 335, 0, 4248, 4254, 3, 672, 336, 0, 4249, 4254, 3, 676, 338, 0, 4250, 4254, 3, 678, 339, 0, 4251, 4254, 3, 680, 340, 0, 4252, 4254, 3, 682, 341, 0, 4253, 4239, 1, 0, 0, 0, 4253, 4243, 1, 0, 0, 0, 4253, 4247, 1, 0, 0, 0, 4253, 4248, 1, 0, 0, 0, 4253, 4249, 1, 0, 0, 0, 4253, 4250, 1, 0, 0, 0, 4253, 4251, 1, 0, 0, 0, 4253, 4252, 1, 0, 0, 0, 4254, 583, 1, 0, 0, 0, 4255, 4260, 3, 626, 313, 0, 4256, 4257, 5, 228, 0, 0, 4257, 4259, 3, 626, 313, 0, 4258, 4256, 1, 0, 0, 0, 4259, 4262, 1, 0, 0, 0, 4260, 4258, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 585, 1, 0, 0, 0, 4262, 4260, 1, 0, 0, 0, 4263, 4275, 3, 576, 288, 0, 4264, 4275, 3, 580, 290, 0, 4265, 4275, 3, 564, 282, 0, 4266, 4275, 3, 572, 286, 0, 4267, 4275, 3, 570, 285, 0, 4268, 4275, 3, 566, 283, 0, 4269, 4275, 3, 568, 284, 0, 4270, 4275, 3, 604, 302, 0, 4271, 4275, 3, 554, 277, 0, 4272, 4275, 3, 540, 270, 0, 4273, 4275, 3, 642, 321, 0, 4274, 4263, 1, 0, 0, 0, 4274, 4264, 1, 0, 0, 0, 4274, 4265, 1, 0, 0, 0, 4274, 4266, 1, 0, 0, 0, 4274, 4267, 1, 0, 0, 0, 4274, 4268, 1, 0, 0, 0, 4274, 4269, 1, 0, 0, 0, 4274, 4270, 1, 0, 0, 0, 4274, 4271, 1, 0, 0, 0, 4274, 4272, 1, 0, 0, 0, 4274, 4273, 1, 0, 0, 0, 4275, 587, 1, 0, 0, 0, 4276, 4278, 7, 36, 0, 0, 4277, 4276, 1, 0, 0, 0, 4278, 4281, 1, 0, 0, 0, 4279, 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 1, 0, 0, 0, 4281, 4279, 1, 0, 0, 0, 4282, 4291, 3, 586, 293, 0, 4283, 4284, 5, 401, 0, 0, 4284, 4285, 3, 584, 292, 0, 4285, 4286, 5, 402, 0, 0, 4286, 4290, 1, 0, 0, 0, 4287, 4288, 5, 395, 0, 0, 4288, 4290, 3, 642, 321, 0, 4289, 4283, 1, 0, 0, 0, 4289, 4287, 1, 0, 0, 0, 4290, 4293, 1, 0, 0, 0, 4291, 4289, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 589, 1, 0, 0, 0, 4293, 4291, 1, 0, 0, 0, 4294, 4299, 3, 588, 294, 0, 4295, 4296, 5, 423, 0, 0, 4296, 4298, 3, 588, 294, 0, 4297, 4295, 1, 0, 0, 0, 4298, 4301, 1, 0, 0, 0, 4299, 4297, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 591, 1, 0, 0, 0, 4301, 4299, 1, 0, 0, 0, 4302, 4307, 3, 590, 295, 0, 4303, 4304, 7, 37, 0, 0, 4304, 4306, 3, 590, 295, 0, 4305, 4303, 1, 0, 0, 0, 4306, 4309, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 593, 1, 0, 0, 0, 4309, 4307, 1, 0, 0, 0, 4310, 4315, 3, 592, 296, 0, 4311, 4312, 7, 38, 0, 0, 4312, 4314, 3, 592, 296, 0, 4313, 4311, 1, 0, 0, 0, 4314, 4317, 1, 0, 0, 0, 4315, 4313, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 595, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4318, 4323, 3, 594, 297, 0, 4319, 4320, 5, 422, 0, 0, 4320, 4322, 3, 594, 297, 0, 4321, 4319, 1, 0, 0, 0, 4322, 4325, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 597, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4326, 4331, 3, 596, 298, 0, 4327, 4328, 5, 419, 0, 0, 4328, 4330, 3, 596, 298, 0, 4329, 4327, 1, 0, 0, 0, 4330, 4333, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 599, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4339, 3, 598, 299, 0, 4335, 4336, 5, 421, 0, 0, 4336, 4338, 3, 598, 299, 0, 4337, 4335, 1, 0, 0, 0, 4338, 4341, 1, 0, 0, 0, 4339, 4337, 1, 0, 0, 0, 4339, 4340, 1, 0, 0, 0, 4340, 601, 1, 0, 0, 0, 4341, 4339, 1, 0, 0, 0, 4342, 4343, 7, 39, 0, 0, 4343, 603, 1, 0, 0, 0, 4344, 4345, 5, 399, 0, 0, 4345, 4346, 3, 378, 189, 0, 4346, 4347, 5, 400, 0, 0, 4347, 605, 1, 0, 0, 0, 4348, 4350, 3, 600, 300, 0, 4349, 4351, 3, 608, 304, 0, 4350, 4349, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 4355, 1, 0, 0, 0, 4352, 4353, 5, 117, 0, 0, 4353, 4355, 3, 604, 302, 0, 4354, 4348, 1, 0, 0, 0, 4354, 4352, 1, 0, 0, 0, 4355, 607, 1, 0, 0, 0, 4356, 4357, 3, 602, 301, 0, 4357, 4358, 3, 600, 300, 0, 4358, 4363, 1, 0, 0, 0, 4359, 4363, 3, 610, 305, 0, 4360, 4361, 5, 216, 0, 0, 4361, 4363, 3, 614, 307, 0, 4362, 4356, 1, 0, 0, 0, 4362, 4359, 1, 0, 0, 0, 4362, 4360, 1, 0, 0, 0, 4363, 609, 1, 0, 0, 0, 4364, 4365, 5, 154, 0, 0, 4365, 4379, 3, 612, 306, 0, 4366, 4367, 5, 25, 0, 0, 4367, 4368, 3, 600, 300, 0, 4368, 4369, 5, 11, 0, 0, 4369, 4370, 3, 600, 300, 0, 4370, 4379, 1, 0, 0, 0, 4371, 4372, 5, 184, 0, 0, 4372, 4373, 7, 40, 0, 0, 4373, 4379, 3, 540, 270, 0, 4374, 4375, 3, 638, 319, 0, 4375, 4376, 7, 41, 0, 0, 4376, 4377, 3, 604, 302, 0, 4377, 4379, 1, 0, 0, 0, 4378, 4364, 1, 0, 0, 0, 4378, 4366, 1, 0, 0, 0, 4378, 4371, 1, 0, 0, 0, 4378, 4374, 1, 0, 0, 0, 4379, 611, 1, 0, 0, 0, 4380, 4383, 3, 604, 302, 0, 4381, 4383, 3, 540, 270, 0, 4382, 4380, 1, 0, 0, 0, 4382, 4381, 1, 0, 0, 0, 4383, 613, 1, 0, 0, 0, 4384, 4385, 7, 42, 0, 0, 4385, 4388, 3, 600, 300, 0, 4386, 4388, 3, 610, 305, 0, 4387, 4384, 1, 0, 0, 0, 4387, 4386, 1, 0, 0, 0, 4388, 615, 1, 0, 0, 0, 4389, 4390, 5, 167, 0, 0, 4390, 4391, 5, 96, 0, 0, 4391, 4392, 5, 139, 0, 0, 4392, 617, 1, 0, 0, 0, 4393, 4401, 5, 405, 0, 0, 4394, 4401, 5, 406, 0, 0, 4395, 4401, 5, 407, 0, 0, 4396, 4397, 5, 167, 0, 0, 4397, 4398, 5, 216, 0, 0, 4398, 4399, 5, 96, 0, 0, 4399, 4401, 5, 139, 0, 0, 4400, 4393, 1, 0, 0, 0, 4400, 4394, 1, 0, 0, 0, 4400, 4395, 1, 0, 0, 0, 4400, 4396, 1, 0, 0, 0, 4401, 619, 1, 0, 0, 0, 4402, 4411, 3, 606, 303, 0, 4403, 4404, 3, 618, 309, 0, 4404, 4405, 3, 606, 303, 0, 4405, 4410, 1, 0, 0, 0, 4406, 4407, 3, 616, 308, 0, 4407, 4408, 3, 606, 303, 0, 4408, 4410, 1, 0, 0, 0, 4409, 4403, 1, 0, 0, 0, 4409, 4406, 1, 0, 0, 0, 4410, 4413, 1, 0, 0, 0, 4411, 4409, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 621, 1, 0, 0, 0, 4413, 4411, 1, 0, 0, 0, 4414, 4421, 5, 219, 0, 0, 4415, 4421, 5, 350, 0, 0, 4416, 4421, 5, 125, 0, 0, 4417, 4421, 5, 360, 0, 0, 4418, 4419, 5, 216, 0, 0, 4419, 4421, 7, 43, 0, 0, 4420, 4414, 1, 0, 0, 0, 4420, 4415, 1, 0, 0, 0, 4420, 4416, 1, 0, 0, 0, 4420, 4417, 1, 0, 0, 0, 4420, 4418, 1, 0, 0, 0, 4421, 623, 1, 0, 0, 0, 4422, 4424, 5, 216, 0, 0, 4423, 4422, 1, 0, 0, 0, 4424, 4427, 1, 0, 0, 0, 4425, 4423, 1, 0, 0, 0, 4425, 4426, 1, 0, 0, 0, 4426, 4428, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4428, 4431, 3, 620, 310, 0, 4429, 4430, 5, 167, 0, 0, 4430, 4432, 3, 622, 311, 0, 4431, 4429, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 625, 1, 0, 0, 0, 4433, 4438, 3, 624, 312, 0, 4434, 4435, 5, 11, 0, 0, 4435, 4437, 3, 624, 312, 0, 4436, 4434, 1, 0, 0, 0, 4437, 4440, 1, 0, 0, 0, 4438, 4436, 1, 0, 0, 0, 4438, 4439, 1, 0, 0, 0, 4439, 627, 1, 0, 0, 0, 4440, 4438, 1, 0, 0, 0, 4441, 4443, 3, 480, 240, 0, 4442, 4444, 3, 630, 315, 0, 4443, 4442, 1, 0, 0, 0, 4443, 4444, 1, 0, 0, 0, 4444, 629, 1, 0, 0, 0, 4445, 4446, 5, 237, 0, 0, 4446, 4447, 5, 399, 0, 0, 4447, 4452, 3, 632, 316, 0, 4448, 4449, 5, 397, 0, 0, 4449, 4451, 3, 632, 316, 0, 4450, 4448, 1, 0, 0, 0, 4451, 4454, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 4455, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4456, 5, 400, 0, 0, 4456, 631, 1, 0, 0, 0, 4457, 4460, 3, 642, 321, 0, 4458, 4459, 5, 405, 0, 0, 4459, 4461, 3, 576, 288, 0, 4460, 4458, 1, 0, 0, 0, 4460, 4461, 1, 0, 0, 0, 4461, 633, 1, 0, 0, 0, 4462, 4463, 5, 399, 0, 0, 4463, 4468, 3, 636, 318, 0, 4464, 4465, 5, 397, 0, 0, 4465, 4467, 3, 636, 318, 0, 4466, 4464, 1, 0, 0, 0, 4467, 4470, 1, 0, 0, 0, 4468, 4466, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4471, 1, 0, 0, 0, 4470, 4468, 1, 0, 0, 0, 4471, 4472, 5, 400, 0, 0, 4472, 635, 1, 0, 0, 0, 4473, 4476, 3, 642, 321, 0, 4474, 4477, 5, 184, 0, 0, 4475, 4477, 3, 638, 319, 0, 4476, 4474, 1, 0, 0, 0, 4476, 4475, 1, 0, 0, 0, 4477, 4478, 1, 0, 0, 0, 4478, 4479, 3, 576, 288, 0, 4479, 637, 1, 0, 0, 0, 4480, 4481, 7, 44, 0, 0, 4481, 639, 1, 0, 0, 0, 4482, 4483, 7, 45, 0, 0, 4483, 641, 1, 0, 0, 0, 4484, 4487, 5, 432, 0, 0, 4485, 4487, 3, 648, 324, 0, 4486, 4484, 1, 0, 0, 0, 4486, 4485, 1, 0, 0, 0, 4487, 643, 1, 0, 0, 0, 4488, 4491, 3, 642, 321, 0, 4489, 4490, 5, 395, 0, 0, 4490, 4492, 3, 642, 321, 0, 4491, 4489, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 645, 1, 0, 0, 0, 4493, 4494, 3, 642, 321, 0, 4494, 647, 1, 0, 0, 0, 4495, 4496, 7, 46, 0, 0, 4496, 649, 1, 0, 0, 0, 4497, 4498, 7, 47, 0, 0, 4498, 651, 1, 0, 0, 0, 4499, 4551, 3, 642, 321, 0, 4500, 4551, 5, 299, 0, 0, 4501, 4551, 5, 171, 0, 0, 4502, 4551, 5, 237, 0, 0, 4503, 4551, 5, 198, 0, 0, 4504, 4551, 5, 268, 0, 0, 4505, 4551, 5, 369, 0, 0, 4506, 4551, 5, 241, 0, 0, 4507, 4551, 5, 165, 0, 0, 4508, 4551, 5, 292, 0, 0, 4509, 4551, 5, 356, 0, 0, 4510, 4551, 5, 144, 0, 0, 4511, 4551, 5, 203, 0, 0, 4512, 4551, 5, 219, 0, 0, 4513, 4551, 5, 126, 0, 0, 4514, 4551, 5, 188, 0, 0, 4515, 4551, 5, 101, 0, 0, 4516, 4551, 5, 329, 0, 0, 4517, 4551, 5, 224, 0, 0, 4518, 4551, 5, 291, 0, 0, 4519, 4551, 5, 145, 0, 0, 4520, 4551, 5, 304, 0, 0, 4521, 4551, 5, 135, 0, 0, 4522, 4551, 5, 318, 0, 0, 4523, 4551, 5, 161, 0, 0, 4524, 4551, 5, 54, 0, 0, 4525, 4551, 5, 166, 0, 0, 4526, 4551, 5, 358, 0, 0, 4527, 4551, 5, 45, 0, 0, 4528, 4551, 5, 347, 0, 0, 4529, 4551, 5, 96, 0, 0, 4530, 4551, 5, 154, 0, 0, 4531, 4551, 5, 269, 0, 0, 4532, 4551, 5, 337, 0, 0, 4533, 4551, 5, 225, 0, 0, 4534, 4551, 5, 108, 0, 0, 4535, 4551, 5, 141, 0, 0, 4536, 4551, 5, 365, 0, 0, 4537, 4551, 5, 21, 0, 0, 4538, 4551, 5, 78, 0, 0, 4539, 4551, 5, 374, 0, 0, 4540, 4551, 5, 336, 0, 0, 4541, 4551, 5, 167, 0, 0, 4542, 4551, 5, 134, 0, 0, 4543, 4551, 5, 216, 0, 0, 4544, 4551, 5, 27, 0, 0, 4545, 4551, 5, 370, 0, 0, 4546, 4551, 5, 263, 0, 0, 4547, 4551, 5, 25, 0, 0, 4548, 4551, 5, 62, 0, 0, 4549, 4551, 5, 17, 0, 0, 4550, 4499, 1, 0, 0, 0, 4550, 4500, 1, 0, 0, 0, 4550, 4501, 1, 0, 0, 0, 4550, 4502, 1, 0, 0, 0, 4550, 4503, 1, 0, 0, 0, 4550, 4504, 1, 0, 0, 0, 4550, 4505, 1, 0, 0, 0, 4550, 4506, 1, 0, 0, 0, 4550, 4507, 1, 0, 0, 0, 4550, 4508, 1, 0, 0, 0, 4550, 4509, 1, 0, 0, 0, 4550, 4510, 1, 0, 0, 0, 4550, 4511, 1, 0, 0, 0, 4550, 4512, 1, 0, 0, 0, 4550, 4513, 1, 0, 0, 0, 4550, 4514, 1, 0, 0, 0, 4550, 4515, 1, 0, 0, 0, 4550, 4516, 1, 0, 0, 0, 4550, 4517, 1, 0, 0, 0, 4550, 4518, 1, 0, 0, 0, 4550, 4519, 1, 0, 0, 0, 4550, 4520, 1, 0, 0, 0, 4550, 4521, 1, 0, 0, 0, 4550, 4522, 1, 0, 0, 0, 4550, 4523, 1, 0, 0, 0, 4550, 4524, 1, 0, 0, 0, 4550, 4525, 1, 0, 0, 0, 4550, 4526, 1, 0, 0, 0, 4550, 4527, 1, 0, 0, 0, 4550, 4528, 1, 0, 0, 0, 4550, 4529, 1, 0, 0, 0, 4550, 4530, 1, 0, 0, 0, 4550, 4531, 1, 0, 0, 0, 4550, 4532, 1, 0, 0, 0, 4550, 4533, 1, 0, 0, 0, 4550, 4534, 1, 0, 0, 0, 4550, 4535, 1, 0, 0, 0, 4550, 4536, 1, 0, 0, 0, 4550, 4537, 1, 0, 0, 0, 4550, 4538, 1, 0, 0, 0, 4550, 4539, 1, 0, 0, 0, 4550, 4540, 1, 0, 0, 0, 4550, 4541, 1, 0, 0, 0, 4550, 4542, 1, 0, 0, 0, 4550, 4543, 1, 0, 0, 0, 4550, 4544, 1, 0, 0, 0, 4550, 4545, 1, 0, 0, 0, 4550, 4546, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4550, 4548, 1, 0, 0, 0, 4550, 4549, 1, 0, 0, 0, 4551, 653, 1, 0, 0, 0, 4552, 4553, 5, 58, 0, 0, 4553, 4554, 5, 280, 0, 0, 4554, 4556, 5, 243, 0, 0, 4555, 4557, 3, 32, 16, 0, 4556, 4555, 1, 0, 0, 0, 4556, 4557, 1, 0, 0, 0, 4557, 4567, 1, 0, 0, 0, 4558, 4559, 3, 642, 321, 0, 4559, 4560, 5, 184, 0, 0, 4560, 4561, 3, 642, 321, 0, 4561, 4568, 1, 0, 0, 0, 4562, 4565, 3, 642, 321, 0, 4563, 4564, 5, 387, 0, 0, 4564, 4566, 3, 660, 330, 0, 4565, 4563, 1, 0, 0, 0, 4565, 4566, 1, 0, 0, 0, 4566, 4568, 1, 0, 0, 0, 4567, 4558, 1, 0, 0, 0, 4567, 4562, 1, 0, 0, 0, 4568, 4718, 1, 0, 0, 0, 4569, 4570, 5, 9, 0, 0, 4570, 4571, 5, 280, 0, 0, 4571, 4572, 5, 243, 0, 0, 4572, 4597, 3, 642, 321, 0, 4573, 4598, 5, 373, 0, 0, 4574, 4598, 3, 668, 334, 0, 4575, 4576, 5, 304, 0, 0, 4576, 4598, 3, 660, 330, 0, 4577, 4578, 5, 363, 0, 0, 4578, 4583, 3, 662, 331, 0, 4579, 4580, 5, 397, 0, 0, 4580, 4582, 3, 662, 331, 0, 4581, 4579, 1, 0, 0, 0, 4582, 4585, 1, 0, 0, 0, 4583, 4581, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 4598, 1, 0, 0, 0, 4585, 4583, 1, 0, 0, 0, 4586, 4587, 5, 274, 0, 0, 4587, 4588, 5, 341, 0, 0, 4588, 4598, 3, 642, 321, 0, 4589, 4591, 3, 664, 332, 0, 4590, 4592, 3, 666, 333, 0, 4591, 4590, 1, 0, 0, 0, 4591, 4592, 1, 0, 0, 0, 4592, 4598, 1, 0, 0, 0, 4593, 4595, 3, 666, 333, 0, 4594, 4596, 3, 664, 332, 0, 4595, 4594, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 4598, 1, 0, 0, 0, 4597, 4573, 1, 0, 0, 0, 4597, 4574, 1, 0, 0, 0, 4597, 4575, 1, 0, 0, 0, 4597, 4577, 1, 0, 0, 0, 4597, 4586, 1, 0, 0, 0, 4597, 4589, 1, 0, 0, 0, 4597, 4593, 1, 0, 0, 0, 4598, 4718, 1, 0, 0, 0, 4599, 4600, 5, 101, 0, 0, 4600, 4601, 5, 280, 0, 0, 4601, 4603, 5, 243, 0, 0, 4602, 4604, 3, 30, 15, 0, 4603, 4602, 1, 0, 0, 0, 4603, 4604, 1, 0, 0, 0, 4604, 4605, 1, 0, 0, 0, 4605, 4718, 3, 642, 321, 0, 4606, 4609, 3, 666, 333, 0, 4607, 4609, 3, 668, 334, 0, 4608, 4606, 1, 0, 0, 0, 4608, 4607, 1, 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 4611, 5, 390, 0, 0, 4611, 4612, 5, 197, 0, 0, 4612, 4718, 1, 0, 0, 0, 4613, 4625, 5, 278, 0, 0, 4614, 4615, 5, 3, 0, 0, 4615, 4616, 5, 280, 0, 0, 4616, 4617, 5, 243, 0, 0, 4617, 4618, 5, 387, 0, 0, 4618, 4626, 3, 642, 321, 0, 4619, 4620, 5, 280, 0, 0, 4620, 4621, 5, 243, 0, 0, 4621, 4622, 3, 642, 321, 0, 4622, 4623, 5, 387, 0, 0, 4623, 4624, 3, 642, 321, 0, 4624, 4626, 1, 0, 0, 0, 4625, 4614, 1, 0, 0, 0, 4625, 4619, 1, 0, 0, 0, 4626, 4718, 1, 0, 0, 0, 4627, 4628, 5, 58, 0, 0, 4628, 4629, 5, 348, 0, 0, 4629, 4630, 3, 642, 321, 0, 4630, 4631, 5, 395, 0, 0, 4631, 4632, 3, 642, 321, 0, 4632, 4633, 5, 383, 0, 0, 4633, 4634, 3, 688, 344, 0, 4634, 4635, 5, 99, 0, 0, 4635, 4636, 3, 690, 345, 0, 4636, 4718, 1, 0, 0, 0, 4637, 4638, 5, 9, 0, 0, 4638, 4639, 5, 348, 0, 0, 4639, 4640, 3, 642, 321, 0, 4640, 4641, 5, 395, 0, 0, 4641, 4658, 3, 642, 321, 0, 4642, 4643, 5, 383, 0, 0, 4643, 4644, 3, 688, 344, 0, 4644, 4645, 5, 99, 0, 0, 4645, 4646, 3, 690, 345, 0, 4646, 4659, 1, 0, 0, 0, 4647, 4648, 5, 4, 0, 0, 4648, 4652, 5, 341, 0, 0, 4649, 4650, 5, 101, 0, 0, 4650, 4652, 5, 139, 0, 0, 4651, 4647, 1, 0, 0, 0, 4651, 4649, 1, 0, 0, 0, 4652, 4656, 1, 0, 0, 0, 4653, 4654, 5, 246, 0, 0, 4654, 4657, 3, 686, 343, 0, 4655, 4657, 5, 362, 0, 0, 4656, 4653, 1, 0, 0, 0, 4656, 4655, 1, 0, 0, 0, 4657, 4659, 1, 0, 0, 0, 4658, 4642, 1, 0, 0, 0, 4658, 4651, 1, 0, 0, 0, 4659, 4718, 1, 0, 0, 0, 4660, 4661, 5, 101, 0, 0, 4661, 4662, 5, 348, 0, 0, 4662, 4663, 3, 642, 321, 0, 4663, 4664, 5, 395, 0, 0, 4664, 4665, 3, 642, 321, 0, 4665, 4718, 1, 0, 0, 0, 4666, 4667, 5, 58, 0, 0, 4667, 4668, 5, 246, 0, 0, 4668, 4669, 3, 642, 321, 0, 4669, 4670, 5, 395, 0, 0, 4670, 4671, 3, 686, 343, 0, 4671, 4672, 5, 387, 0, 0, 4672, 4673, 3, 694, 347, 0, 4673, 4718, 1, 0, 0, 0, 4674, 4675, 5, 9, 0, 0, 4675, 4676, 5, 246, 0, 0, 4676, 4677, 3, 642, 321, 0, 4677, 4678, 5, 395, 0, 0, 4678, 4686, 3, 686, 343, 0, 4679, 4680, 5, 304, 0, 0, 4680, 4687, 3, 694, 347, 0, 4681, 4682, 5, 363, 0, 0, 4682, 4687, 5, 294, 0, 0, 4683, 4684, 7, 48, 0, 0, 4684, 4685, 5, 348, 0, 0, 4685, 4687, 3, 642, 321, 0, 4686, 4679, 1, 0, 0, 0, 4686, 4681, 1, 0, 0, 0, 4686, 4683, 1, 0, 0, 0, 4687, 4718, 1, 0, 0, 0, 4688, 4689, 5, 101, 0, 0, 4689, 4690, 5, 246, 0, 0, 4690, 4691, 3, 642, 321, 0, 4691, 4692, 5, 395, 0, 0, 4692, 4693, 3, 686, 343, 0, 4693, 4718, 1, 0, 0, 0, 4694, 4695, 7, 49, 0, 0, 4695, 4696, 3, 656, 328, 0, 4696, 4697, 5, 200, 0, 0, 4697, 4698, 5, 426, 0, 0, 4698, 4699, 5, 154, 0, 0, 4699, 4703, 3, 642, 321, 0, 4700, 4701, 5, 341, 0, 0, 4701, 4704, 3, 686, 343, 0, 4702, 4704, 5, 362, 0, 0, 4703, 4700, 1, 0, 0, 0, 4703, 4702, 1, 0, 0, 0, 4704, 4708, 1, 0, 0, 0, 4705, 4706, 5, 387, 0, 0, 4706, 4707, 5, 229, 0, 0, 4707, 4709, 5, 431, 0, 0, 4708, 4705, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4718, 1, 0, 0, 0, 4710, 4711, 5, 101, 0, 0, 4711, 4712, 3, 656, 328, 0, 4712, 4713, 5, 200, 0, 0, 4713, 4714, 5, 426, 0, 0, 4714, 4715, 5, 154, 0, 0, 4715, 4716, 3, 642, 321, 0, 4716, 4718, 1, 0, 0, 0, 4717, 4552, 1, 0, 0, 0, 4717, 4569, 1, 0, 0, 0, 4717, 4599, 1, 0, 0, 0, 4717, 4608, 1, 0, 0, 0, 4717, 4613, 1, 0, 0, 0, 4717, 4627, 1, 0, 0, 0, 4717, 4637, 1, 0, 0, 0, 4717, 4660, 1, 0, 0, 0, 4717, 4666, 1, 0, 0, 0, 4717, 4674, 1, 0, 0, 0, 4717, 4688, 1, 0, 0, 0, 4717, 4694, 1, 0, 0, 0, 4717, 4710, 1, 0, 0, 0, 4718, 655, 1, 0, 0, 0, 4719, 4720, 7, 50, 0, 0, 4720, 657, 1, 0, 0, 0, 4721, 4722, 5, 259, 0, 0, 4722, 4723, 5, 405, 0, 0, 4723, 4729, 5, 431, 0, 0, 4724, 4725, 5, 83, 0, 0, 4725, 4726, 5, 246, 0, 0, 4726, 4727, 5, 405, 0, 0, 4727, 4729, 3, 686, 343, 0, 4728, 4721, 1, 0, 0, 0, 4728, 4724, 1, 0, 0, 0, 4729, 659, 1, 0, 0, 0, 4730, 4735, 3, 658, 329, 0, 4731, 4732, 5, 397, 0, 0, 4732, 4734, 3, 658, 329, 0, 4733, 4731, 1, 0, 0, 0, 4734, 4737, 1, 0, 0, 0, 4735, 4733, 1, 0, 0, 0, 4735, 4736, 1, 0, 0, 0, 4736, 661, 1, 0, 0, 0, 4737, 4735, 1, 0, 0, 0, 4738, 4742, 5, 259, 0, 0, 4739, 4740, 5, 83, 0, 0, 4740, 4742, 5, 246, 0, 0, 4741, 4738, 1, 0, 0, 0, 4741, 4739, 1, 0, 0, 0, 4742, 663, 1, 0, 0, 0, 4743, 4746, 5, 2, 0, 0, 4744, 4745, 5, 387, 0, 0, 4745, 4747, 5, 278, 0, 0, 4746, 4744, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 665, 1, 0, 0, 0, 4748, 4749, 7, 51, 0, 0, 4749, 667, 1, 0, 0, 0, 4750, 4751, 7, 52, 0, 0, 4751, 669, 1, 0, 0, 0, 4752, 4753, 7, 53, 0, 0, 4753, 671, 1, 0, 0, 0, 4754, 4755, 7, 54, 0, 0, 4755, 673, 1, 0, 0, 0, 4756, 4757, 7, 55, 0, 0, 4757, 675, 1, 0, 0, 0, 4758, 4759, 7, 56, 0, 0, 4759, 677, 1, 0, 0, 0, 4760, 4761, 7, 57, 0, 0, 4761, 679, 1, 0, 0, 0, 4762, 4763, 7, 58, 0, 0, 4763, 681, 1, 0, 0, 0, 4764, 4765, 7, 59, 0, 0, 4765, 683, 1, 0, 0, 0, 4766, 4767, 7, 60, 0, 0, 4767, 685, 1, 0, 0, 0, 4768, 4773, 3, 642, 321, 0, 4769, 4770, 5, 395, 0, 0, 4770, 4772, 3, 642, 321, 0, 4771, 4769, 1, 0, 0, 0, 4772, 4775, 1, 0, 0, 0, 4773, 4771, 1, 0, 0, 0, 4773, 4774, 1, 0, 0, 0, 4774, 687, 1, 0, 0, 0, 4775, 4773, 1, 0, 0, 0, 4776, 4777, 3, 642, 321, 0, 4777, 4778, 5, 411, 0, 0, 4778, 4779, 7, 27, 0, 0, 4779, 689, 1, 0, 0, 0, 4780, 4785, 5, 176, 0, 0, 4781, 4782, 5, 211, 0, 0, 4782, 4783, 5, 341, 0, 0, 4783, 4785, 3, 686, 343, 0, 4784, 4780, 1, 0, 0, 0, 4784, 4781, 1, 0, 0, 0, 4785, 691, 1, 0, 0, 0, 4786, 4787, 5, 8, 0, 0, 4787, 4788, 5, 405, 0, 0, 4788, 4799, 5, 431, 0, 0, 4789, 4790, 5, 259, 0, 0, 4790, 4791, 5, 405, 0, 0, 4791, 4799, 5, 431, 0, 0, 4792, 4793, 5, 294, 0, 0, 4793, 4794, 5, 405, 0, 0, 4794, 4799, 5, 426, 0, 0, 4795, 4796, 5, 240, 0, 0, 4796, 4797, 5, 405, 0, 0, 4797, 4799, 3, 686, 343, 0, 4798, 4786, 1, 0, 0, 0, 4798, 4789, 1, 0, 0, 0, 4798, 4792, 1, 0, 0, 0, 4798, 4795, 1, 0, 0, 0, 4799, 693, 1, 0, 0, 0, 4800, 4805, 3, 692, 346, 0, 4801, 4802, 5, 397, 0, 0, 4802, 4804, 3, 692, 346, 0, 4803, 4801, 1, 0, 0, 0, 4804, 4807, 1, 0, 0, 0, 4805, 4803, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 695, 1, 0, 0, 0, 4807, 4805, 1, 0, 0, 0, 621, 699, 706, 709, 715, 721, 728, 738, 741, 745, 760, 767, 773, 778, 783, 786, 810, 817, 820, 825, 830, 836, 840, 853, 857, 861, 866, 873, 877, 882, 889, 893, 898, 946, 953, 958, 981, 985, 989, 992, 996, 1001, 1007, 1011, 1017, 1019, 1030, 1034, 1041, 1049, 1052, 1057, 1061, 1064, 1074, 1082, 1086, 1089, 1093, 1097, 1100, 1105, 1111, 1116, 1121, 1125, 1136, 1138, 1142, 1152, 1156, 1162, 1165, 1172, 1177, 1185, 1190, 1194, 1202, 1207, 1213, 1219, 1222, 1225, 1228, 1237, 1245, 1250, 1258, 1265, 1268, 1271, 1273, 1284, 1286, 1289, 1292, 1295, 1298, 1301, 1303, 1315, 1321, 1329, 1331, 1341, 1374, 1379, 1383, 1387, 1394, 1401, 1407, 1411, 1414, 1421, 1444, 1449, 1453, 1461, 1470, 1477, 1483, 1490, 1493, 1499, 1506, 1514, 1523, 1532, 1539, 1559, 1566, 1568, 1575, 1585, 1593, 1597, 1601, 1614, 1623, 1639, 1643, 1648, 1653, 1656, 1659, 1662, 1665, 1668, 1673, 1682, 1686, 1693, 1696, 1699, 1702, 1714, 1720, 1746, 1754, 1758, 1761, 1764, 1767, 1770, 1773, 1776, 1779, 1788, 1798, 1801, 1821, 1827, 1833, 1836, 1838, 1845, 1852, 1865, 1870, 1879, 1887, 1895, 1908, 1921, 1937, 1941, 1956, 1962, 1965, 1968, 1971, 1974, 1978, 1993, 1996, 2007, 2021, 2055, 2063, 2068, 2076, 2081, 2086, 2093, 2101, 2109, 2117, 2122, 2134, 2138, 2146, 2155, 2158, 2162, 2169, 2175, 2179, 2185, 2189, 2201, 2210, 2221, 2225, 2232, 2244, 2254, 2257, 2264, 2270, 2274, 2277, 2280, 2286, 2290, 2294, 2299, 2303, 2307, 2311, 2319, 2323, 2327, 2331, 2335, 2343, 2347, 2351, 2359, 2364, 2369, 2373, 2377, 2384, 2393, 2401, 2413, 2431, 2434, 2440, 2466, 2469, 2475, 2483, 2491, 2504, 2511, 2514, 2517, 2520, 2523, 2526, 2529, 2532, 2535, 2538, 2541, 2546, 2549, 2552, 2555, 2558, 2561, 2564, 2567, 2570, 2573, 2576, 2578, 2584, 2588, 2591, 2594, 2597, 2600, 2603, 2610, 2614, 2617, 2620, 2623, 2626, 2629, 2636, 2639, 2647, 2651, 2658, 2660, 2663, 2668, 2671, 2675, 2680, 2686, 2694, 2702, 2712, 2715, 2719, 2723, 2728, 2735, 2739, 2741, 2745, 2752, 2757, 2770, 2778, 2797, 2807, 2820, 2830, 2834, 2838, 2844, 2851, 2858, 2867, 2874, 2894, 2897, 2911, 2926, 2930, 2950, 2962, 2968, 2971, 2974, 2980, 2986, 2993, 3001, 3007, 3011, 3016, 3019, 3023, 3030, 3035, 3040, 3043, 3045, 3053, 3061, 3065, 3069, 3073, 3090, 3107, 3114, 3123, 3128, 3131, 3134, 3138, 3153, 3167, 3170, 3181, 3185, 3188, 3191, 3195, 3200, 3203, 3206, 3209, 3212, 3215, 3221, 3224, 3227, 3230, 3233, 3236, 3239, 3242, 3245, 3248, 3252, 3254, 3260, 3265, 3268, 3271, 3274, 3277, 3283, 3286, 3289, 3292, 3295, 3298, 3301, 3304, 3307, 3310, 3314, 3316, 3318, 3323, 3328, 3332, 3336, 3341, 3346, 3355, 3365, 3373, 3385, 3388, 3394, 3401, 3408, 3415, 3422, 3431, 3435, 3442, 3447, 3451, 3455, 3458, 3461, 3472, 3476, 3478, 3481, 3494, 3497, 3500, 3512, 3515, 3522, 3531, 3536, 3538, 3540, 3557, 3560, 3568, 3571, 3575, 3578, 3581, 3584, 3587, 3599, 3607, 3614, 3617, 3624, 3627, 3632, 3639, 3647, 3653, 3658, 3662, 3667, 3674, 3688, 3691, 3695, 3706, 3716, 3719, 3726, 3735, 3738, 3744, 3747, 3754, 3759, 3762, 3775, 3781, 3783, 3791, 3794, 3804, 3809, 3811, 3823, 3829, 3831, 3838, 3845, 3859, 3865, 3868, 3871, 3874, 3883, 3890, 3896, 3905, 3909, 3917, 3927, 3937, 3942, 3946, 3952, 3957, 3967, 3971, 3974, 3979, 3982, 3986, 3991, 4002, 4004, 4013, 4036, 4046, 4049, 4056, 4059, 4069, 4076, 4079, 4081, 4092, 4102, 4104, 4113, 4118, 4127, 4140, 4144, 4156, 4160, 4169, 4188, 4206, 4218, 4233, 4237, 4253, 4260, 4274, 4279, 4289, 4291, 4299, 4307, 4315, 4323, 4331, 4339, 4350, 4354, 4362, 4378, 4382, 4387, 4400, 4409, 4411, 4420, 4425, 4431, 4438, 4443, 4452, 4460, 4468, 4476, 4486, 4491, 4550, 4556, 4565, 4567, 4583, 4591, 4595, 4597, 4603, 4608, 4625, 4651, 4656, 4658, 4686, 4703, 4708, 4717, 4728, 4735, 4741, 4746, 4773, 4784, 4798, 4805] \ No newline at end of file +[4, 1, 438, 4828, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 1, 0, 5, 0, 708, 8, 0, 10, 0, 12, 0, 711, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 717, 8, 1, 1, 1, 3, 1, 720, 8, 1, 1, 2, 1, 2, 5, 2, 724, 8, 2, 10, 2, 12, 2, 727, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 732, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 739, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 749, 8, 3, 1, 3, 3, 3, 752, 8, 3, 1, 3, 1, 3, 3, 3, 756, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 771, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 778, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 789, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 794, 8, 5, 1, 5, 3, 5, 797, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 819, 8, 5, 10, 5, 12, 5, 822, 9, 5, 1, 5, 1, 5, 5, 5, 826, 8, 5, 10, 5, 12, 5, 829, 9, 5, 3, 5, 831, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 836, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 841, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 847, 8, 6, 1, 7, 1, 7, 3, 7, 851, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 864, 8, 8, 1, 9, 1, 9, 3, 9, 868, 8, 9, 1, 9, 1, 9, 3, 9, 872, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 877, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 884, 8, 10, 1, 10, 1, 10, 3, 10, 888, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 893, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 900, 8, 12, 1, 12, 1, 12, 3, 12, 904, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 909, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 955, 8, 14, 11, 14, 12, 14, 956, 1, 14, 1, 14, 1, 14, 4, 14, 962, 8, 14, 11, 14, 12, 14, 963, 1, 14, 1, 14, 1, 14, 3, 14, 969, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 992, 8, 21, 1, 21, 1, 21, 3, 21, 996, 8, 21, 1, 21, 1, 21, 3, 21, 1000, 8, 21, 1, 21, 3, 21, 1003, 8, 21, 1, 21, 1, 21, 3, 21, 1007, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1012, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 1, 21, 1, 21, 3, 21, 1022, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1028, 8, 21, 3, 21, 1030, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1041, 8, 24, 1, 24, 1, 24, 3, 24, 1045, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1052, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1060, 8, 26, 1, 26, 3, 26, 1063, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1068, 8, 27, 1, 27, 1, 27, 3, 27, 1072, 8, 27, 1, 27, 3, 27, 1075, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1085, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1093, 8, 29, 5, 29, 1095, 8, 29, 10, 29, 12, 29, 1098, 9, 29, 3, 29, 1100, 8, 29, 1, 30, 1, 30, 3, 30, 1104, 8, 30, 1, 31, 1, 31, 3, 31, 1108, 8, 31, 1, 31, 3, 31, 1111, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1116, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1127, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1132, 8, 32, 1, 32, 1, 32, 3, 32, 1136, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1147, 8, 33, 3, 33, 1149, 8, 33, 1, 33, 1, 33, 3, 33, 1153, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1163, 8, 36, 1, 36, 1, 36, 3, 36, 1167, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 3, 36, 1176, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1183, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1188, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1196, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1201, 8, 36, 1, 36, 1, 36, 3, 36, 1205, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1213, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1218, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1224, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1230, 8, 36, 1, 36, 3, 36, 1233, 8, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1248, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1256, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1261, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1269, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1276, 8, 36, 1, 36, 3, 36, 1279, 8, 36, 1, 36, 3, 36, 1282, 8, 36, 3, 36, 1284, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1295, 8, 36, 3, 36, 1297, 8, 36, 1, 36, 3, 36, 1300, 8, 36, 1, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 3, 36, 1314, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1326, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1332, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1340, 8, 36, 3, 36, 1342, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1352, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1385, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1390, 8, 45, 1, 46, 1, 46, 3, 46, 1394, 8, 46, 1, 46, 1, 46, 3, 46, 1398, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1405, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1410, 8, 47, 10, 47, 12, 47, 1413, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1418, 8, 47, 1, 48, 1, 48, 3, 48, 1422, 8, 48, 1, 48, 3, 48, 1425, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1430, 8, 48, 10, 48, 12, 48, 1433, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1455, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1460, 8, 53, 1, 53, 1, 53, 3, 53, 1464, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1472, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1481, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1488, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1494, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1501, 8, 58, 1, 58, 3, 58, 1504, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1510, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1515, 8, 59, 10, 59, 12, 59, 1518, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1525, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1532, 8, 62, 10, 62, 12, 62, 1535, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1543, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1550, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1570, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1577, 8, 69, 3, 69, 1579, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1584, 8, 70, 10, 70, 12, 70, 1587, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1596, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1604, 8, 73, 1, 74, 1, 74, 3, 74, 1608, 8, 74, 1, 74, 1, 74, 3, 74, 1612, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1625, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1634, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1650, 8, 78, 1, 78, 1, 78, 3, 78, 1654, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1659, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1664, 8, 78, 1, 78, 3, 78, 1667, 8, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1684, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1693, 8, 80, 1, 80, 1, 80, 3, 80, 1697, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1704, 8, 80, 1, 80, 3, 80, 1707, 8, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1725, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1731, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1757, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1765, 8, 88, 1, 88, 1, 88, 3, 88, 1769, 8, 88, 1, 88, 3, 88, 1772, 8, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1799, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1809, 8, 90, 1, 90, 3, 90, 1812, 8, 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, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1832, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1838, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1844, 8, 94, 1, 94, 3, 94, 1847, 8, 94, 3, 94, 1849, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1856, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1863, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1876, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1881, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1888, 8, 101, 10, 101, 12, 101, 1891, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1896, 8, 102, 10, 102, 12, 102, 1899, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1906, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1919, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1932, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1948, 8, 105, 1, 106, 1, 106, 3, 106, 1952, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1967, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1973, 8, 110, 1, 110, 3, 110, 1976, 8, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 111, 1, 111, 3, 111, 1989, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2002, 8, 114, 10, 114, 12, 114, 2005, 9, 114, 3, 114, 2007, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2016, 8, 116, 10, 116, 12, 116, 2019, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2032, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 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, 123, 1, 123, 3, 123, 2066, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2074, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2079, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2087, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2092, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2097, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2102, 8, 124, 10, 124, 12, 124, 2105, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2110, 8, 125, 10, 125, 12, 125, 2113, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2118, 8, 126, 10, 126, 12, 126, 2121, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2126, 8, 127, 10, 127, 12, 127, 2129, 9, 127, 1, 128, 1, 128, 3, 128, 2133, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2145, 8, 131, 5, 131, 2147, 8, 131, 10, 131, 12, 131, 2150, 9, 131, 1, 132, 1, 132, 1, 132, 5, 132, 2155, 8, 132, 10, 132, 12, 132, 2158, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 3, 134, 2166, 8, 134, 1, 134, 3, 134, 2169, 8, 134, 1, 135, 1, 135, 3, 135, 2173, 8, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 3, 137, 2180, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2186, 8, 139, 1, 139, 1, 139, 3, 139, 2190, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2196, 8, 140, 1, 141, 1, 141, 3, 141, 2200, 8, 141, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2212, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2221, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2232, 8, 145, 1, 146, 1, 146, 3, 146, 2236, 8, 146, 1, 147, 1, 147, 1, 147, 5, 147, 2241, 8, 147, 10, 147, 12, 147, 2244, 9, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 5, 149, 2253, 8, 149, 10, 149, 12, 149, 2256, 9, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2265, 8, 152, 1, 152, 3, 152, 2268, 8, 152, 1, 153, 1, 153, 1, 153, 5, 153, 2273, 8, 153, 10, 153, 12, 153, 2276, 9, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2281, 8, 154, 1, 155, 1, 155, 3, 155, 2285, 8, 155, 1, 155, 3, 155, 2288, 8, 155, 1, 155, 3, 155, 2291, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 157, 1, 157, 3, 157, 2301, 8, 157, 1, 158, 1, 158, 3, 158, 2305, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2310, 8, 159, 1, 159, 1, 159, 3, 159, 2314, 8, 159, 1, 160, 1, 160, 3, 160, 2318, 8, 160, 1, 161, 1, 161, 3, 161, 2322, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2330, 8, 161, 1, 162, 1, 162, 3, 162, 2334, 8, 162, 1, 162, 1, 162, 3, 162, 2338, 8, 162, 1, 163, 1, 163, 3, 163, 2342, 8, 163, 1, 164, 1, 164, 3, 164, 2346, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2354, 8, 164, 1, 165, 1, 165, 3, 165, 2358, 8, 165, 1, 165, 1, 165, 3, 165, 2362, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2370, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2375, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2380, 8, 168, 1, 169, 1, 169, 3, 169, 2384, 8, 169, 1, 170, 1, 170, 3, 170, 2388, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2395, 8, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2402, 8, 173, 10, 173, 12, 173, 2405, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2412, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2424, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2442, 8, 175, 1, 175, 3, 175, 2445, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2451, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 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, 3, 180, 2477, 8, 180, 1, 181, 3, 181, 2480, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 3, 182, 2486, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 2492, 8, 183, 10, 183, 12, 183, 2495, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2502, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 2513, 8, 185, 10, 185, 12, 185, 2516, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2522, 8, 186, 1, 186, 3, 186, 2525, 8, 186, 1, 186, 3, 186, 2528, 8, 186, 1, 186, 3, 186, 2531, 8, 186, 1, 186, 3, 186, 2534, 8, 186, 1, 186, 3, 186, 2537, 8, 186, 1, 186, 3, 186, 2540, 8, 186, 1, 186, 3, 186, 2543, 8, 186, 1, 186, 3, 186, 2546, 8, 186, 1, 186, 3, 186, 2549, 8, 186, 1, 186, 3, 186, 2552, 8, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2557, 8, 186, 1, 186, 3, 186, 2560, 8, 186, 1, 186, 3, 186, 2563, 8, 186, 1, 186, 3, 186, 2566, 8, 186, 1, 186, 3, 186, 2569, 8, 186, 1, 186, 3, 186, 2572, 8, 186, 1, 186, 3, 186, 2575, 8, 186, 1, 186, 3, 186, 2578, 8, 186, 1, 186, 3, 186, 2581, 8, 186, 1, 186, 3, 186, 2584, 8, 186, 1, 186, 3, 186, 2587, 8, 186, 3, 186, 2589, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2595, 8, 187, 1, 188, 1, 188, 3, 188, 2599, 8, 188, 1, 188, 3, 188, 2602, 8, 188, 1, 188, 3, 188, 2605, 8, 188, 1, 188, 3, 188, 2608, 8, 188, 1, 188, 3, 188, 2611, 8, 188, 1, 188, 3, 188, 2614, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2621, 8, 188, 1, 189, 1, 189, 3, 189, 2625, 8, 189, 1, 189, 3, 189, 2628, 8, 189, 1, 189, 3, 189, 2631, 8, 189, 1, 189, 3, 189, 2634, 8, 189, 1, 189, 3, 189, 2637, 8, 189, 1, 189, 3, 189, 2640, 8, 189, 1, 190, 1, 190, 1, 190, 4, 190, 2645, 8, 190, 11, 190, 12, 190, 2646, 1, 191, 3, 191, 2650, 8, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2658, 8, 192, 1, 192, 1, 192, 3, 192, 2662, 8, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2669, 8, 192, 3, 192, 2671, 8, 192, 1, 193, 3, 193, 2674, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2679, 8, 193, 1, 193, 3, 193, 2682, 8, 193, 1, 193, 1, 193, 3, 193, 2686, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2697, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 3, 196, 2705, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 5, 197, 2711, 8, 197, 10, 197, 12, 197, 2714, 9, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2721, 8, 198, 10, 198, 12, 198, 2724, 9, 198, 3, 198, 2726, 8, 198, 1, 198, 1, 198, 3, 198, 2730, 8, 198, 1, 198, 1, 198, 3, 198, 2734, 8, 198, 1, 198, 1, 198, 1, 198, 3, 198, 2739, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2746, 8, 199, 1, 200, 1, 200, 5, 200, 2750, 8, 200, 10, 200, 12, 200, 2753, 9, 200, 1, 200, 3, 200, 2756, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2763, 8, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2768, 8, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2781, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2789, 8, 203, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2808, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2818, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2831, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2841, 8, 208, 1, 208, 1, 208, 3, 208, 2845, 8, 208, 4, 208, 2847, 8, 208, 11, 208, 12, 208, 2848, 1, 208, 1, 208, 5, 208, 2853, 8, 208, 10, 208, 12, 208, 2856, 9, 208, 1, 208, 1, 208, 5, 208, 2860, 8, 208, 10, 208, 12, 208, 2863, 9, 208, 1, 208, 1, 208, 5, 208, 2867, 8, 208, 10, 208, 12, 208, 2870, 9, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2878, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2885, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2905, 8, 208, 1, 208, 3, 208, 2908, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2922, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2937, 8, 209, 1, 209, 1, 209, 3, 209, 2941, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 5, 209, 2959, 8, 209, 10, 209, 12, 209, 2962, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2973, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2979, 8, 209, 1, 209, 3, 209, 2982, 8, 209, 1, 209, 3, 209, 2985, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2991, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2997, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3004, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3012, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3018, 8, 209, 1, 209, 1, 209, 3, 209, 3022, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3027, 8, 209, 1, 209, 3, 209, 3030, 8, 209, 1, 209, 1, 209, 3, 209, 3034, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3041, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3046, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3051, 8, 209, 1, 209, 3, 209, 3054, 8, 209, 3, 209, 3056, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3064, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3072, 8, 210, 1, 210, 1, 210, 3, 210, 3076, 8, 210, 4, 210, 3078, 8, 210, 11, 210, 12, 210, 3079, 1, 210, 1, 210, 3, 210, 3084, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3101, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3118, 8, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 3, 214, 3125, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 3132, 8, 214, 10, 214, 12, 214, 3135, 9, 214, 1, 214, 1, 214, 3, 214, 3139, 8, 214, 1, 214, 3, 214, 3142, 8, 214, 1, 214, 3, 214, 3145, 8, 214, 1, 215, 1, 215, 3, 215, 3149, 8, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3164, 8, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3178, 8, 217, 1, 217, 3, 217, 3181, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3192, 8, 218, 1, 219, 1, 219, 3, 219, 3196, 8, 219, 1, 219, 3, 219, 3199, 8, 219, 1, 219, 3, 219, 3202, 8, 219, 1, 219, 1, 219, 3, 219, 3206, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3211, 8, 219, 1, 219, 3, 219, 3214, 8, 219, 1, 219, 3, 219, 3217, 8, 219, 1, 219, 3, 219, 3220, 8, 219, 1, 219, 3, 219, 3223, 8, 219, 1, 219, 3, 219, 3226, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3232, 8, 219, 1, 219, 3, 219, 3235, 8, 219, 1, 219, 3, 219, 3238, 8, 219, 1, 219, 3, 219, 3241, 8, 219, 1, 219, 3, 219, 3244, 8, 219, 1, 219, 3, 219, 3247, 8, 219, 1, 219, 3, 219, 3250, 8, 219, 1, 219, 3, 219, 3253, 8, 219, 1, 219, 3, 219, 3256, 8, 219, 1, 219, 3, 219, 3259, 8, 219, 1, 219, 1, 219, 3, 219, 3263, 8, 219, 3, 219, 3265, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3271, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3276, 8, 219, 1, 219, 3, 219, 3279, 8, 219, 1, 219, 3, 219, 3282, 8, 219, 1, 219, 3, 219, 3285, 8, 219, 1, 219, 3, 219, 3288, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3294, 8, 219, 1, 219, 3, 219, 3297, 8, 219, 1, 219, 3, 219, 3300, 8, 219, 1, 219, 3, 219, 3303, 8, 219, 1, 219, 3, 219, 3306, 8, 219, 1, 219, 3, 219, 3309, 8, 219, 1, 219, 3, 219, 3312, 8, 219, 1, 219, 3, 219, 3315, 8, 219, 1, 219, 3, 219, 3318, 8, 219, 1, 219, 3, 219, 3321, 8, 219, 1, 219, 1, 219, 3, 219, 3325, 8, 219, 3, 219, 3327, 8, 219, 3, 219, 3329, 8, 219, 1, 220, 1, 220, 1, 220, 3, 220, 3334, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3339, 8, 220, 1, 220, 1, 220, 3, 220, 3343, 8, 220, 1, 220, 1, 220, 3, 220, 3347, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3352, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3357, 8, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 5, 222, 3364, 8, 222, 10, 222, 12, 222, 3367, 9, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3374, 8, 223, 10, 223, 12, 223, 3377, 9, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3382, 8, 224, 10, 224, 12, 224, 3385, 9, 224, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 4, 226, 3394, 8, 226, 11, 226, 12, 226, 3395, 1, 226, 3, 226, 3399, 8, 226, 1, 227, 1, 227, 5, 227, 3403, 8, 227, 10, 227, 12, 227, 3406, 9, 227, 1, 227, 1, 227, 5, 227, 3410, 8, 227, 10, 227, 12, 227, 3413, 9, 227, 1, 227, 1, 227, 5, 227, 3417, 8, 227, 10, 227, 12, 227, 3420, 9, 227, 1, 227, 1, 227, 5, 227, 3424, 8, 227, 10, 227, 12, 227, 3427, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3433, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3442, 8, 228, 5, 228, 3444, 8, 228, 10, 228, 12, 228, 3447, 9, 228, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3453, 8, 229, 1, 229, 5, 229, 3456, 8, 229, 10, 229, 12, 229, 3459, 9, 229, 1, 230, 3, 230, 3462, 8, 230, 1, 230, 1, 230, 3, 230, 3466, 8, 230, 1, 230, 3, 230, 3469, 8, 230, 1, 230, 3, 230, 3472, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 3483, 8, 231, 1, 231, 1, 231, 3, 231, 3487, 8, 231, 3, 231, 3489, 8, 231, 1, 231, 3, 231, 3492, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3503, 8, 232, 10, 232, 12, 232, 3506, 9, 232, 3, 232, 3508, 8, 232, 1, 232, 3, 232, 3511, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3521, 8, 232, 10, 232, 12, 232, 3524, 9, 232, 3, 232, 3526, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3533, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3540, 8, 232, 10, 232, 12, 232, 3543, 9, 232, 1, 232, 1, 232, 3, 232, 3547, 8, 232, 3, 232, 3549, 8, 232, 3, 232, 3551, 8, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 5, 234, 3566, 8, 234, 10, 234, 12, 234, 3569, 9, 234, 3, 234, 3571, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 3579, 8, 234, 1, 234, 3, 234, 3582, 8, 234, 1, 235, 1, 235, 3, 235, 3586, 8, 235, 1, 235, 3, 235, 3589, 8, 235, 1, 235, 3, 235, 3592, 8, 235, 1, 235, 3, 235, 3595, 8, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 3610, 8, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 3, 239, 3618, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3625, 8, 240, 1, 240, 3, 240, 3628, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3635, 8, 241, 1, 241, 3, 241, 3638, 8, 241, 1, 242, 1, 242, 1, 242, 3, 242, 3643, 8, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3650, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3658, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 3, 245, 3664, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3669, 8, 245, 1, 245, 1, 245, 3, 245, 3673, 8, 245, 1, 246, 1, 246, 1, 246, 3, 246, 3678, 8, 246, 1, 247, 1, 247, 3, 247, 3682, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 3689, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 3701, 8, 248, 10, 248, 12, 248, 3704, 9, 248, 3, 248, 3706, 8, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 3717, 8, 250, 10, 250, 12, 250, 3720, 9, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 3727, 8, 250, 10, 250, 12, 250, 3730, 9, 250, 3, 250, 3732, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 3741, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 5, 252, 3748, 8, 252, 10, 252, 12, 252, 3751, 9, 252, 3, 252, 3753, 8, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3759, 8, 253, 1, 253, 3, 253, 3762, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 3767, 8, 253, 1, 253, 3, 253, 3770, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3783, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3789, 8, 254, 3, 254, 3791, 8, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 5, 255, 3799, 8, 255, 10, 255, 12, 255, 3802, 9, 255, 1, 256, 1, 256, 1, 256, 3, 256, 3807, 8, 256, 1, 256, 3, 256, 3810, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 5, 256, 3818, 8, 256, 10, 256, 12, 256, 3821, 9, 256, 1, 256, 1, 256, 3, 256, 3825, 8, 256, 3, 256, 3827, 8, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3843, 8, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3849, 8, 259, 3, 259, 3851, 8, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 3, 260, 3858, 8, 260, 1, 261, 1, 261, 1, 261, 5, 261, 3863, 8, 261, 10, 261, 12, 261, 3866, 9, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 3877, 8, 262, 10, 262, 12, 262, 3880, 9, 262, 1, 263, 1, 263, 1, 263, 3, 263, 3885, 8, 263, 1, 263, 3, 263, 3888, 8, 263, 1, 263, 3, 263, 3891, 8, 263, 1, 263, 3, 263, 3894, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 3903, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 3910, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3916, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3925, 8, 266, 1, 267, 1, 267, 3, 267, 3929, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 3935, 8, 267, 10, 267, 12, 267, 3938, 9, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 3947, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3955, 8, 268, 10, 268, 12, 268, 3958, 9, 268, 1, 268, 1, 268, 3, 268, 3962, 8, 268, 1, 269, 1, 269, 3, 269, 3966, 8, 269, 1, 269, 1, 269, 5, 269, 3970, 8, 269, 10, 269, 12, 269, 3973, 9, 269, 1, 269, 1, 269, 3, 269, 3977, 8, 269, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 3, 272, 3987, 8, 272, 1, 273, 1, 273, 3, 273, 3991, 8, 273, 1, 273, 3, 273, 3994, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 3999, 8, 273, 1, 273, 3, 273, 4002, 8, 273, 5, 273, 4004, 8, 273, 10, 273, 12, 273, 4007, 9, 273, 1, 274, 1, 274, 3, 274, 4011, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 4, 276, 4020, 8, 276, 11, 276, 12, 276, 4021, 3, 276, 4024, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 5, 277, 4031, 8, 277, 10, 277, 12, 277, 4034, 9, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 5, 281, 4054, 8, 281, 10, 281, 12, 281, 4057, 9, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 5, 281, 4064, 8, 281, 10, 281, 12, 281, 4067, 9, 281, 3, 281, 4069, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4076, 8, 282, 1, 282, 3, 282, 4079, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4089, 8, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4094, 8, 282, 10, 282, 12, 282, 4097, 9, 282, 3, 282, 4099, 8, 282, 3, 282, 4101, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4112, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4122, 8, 282, 3, 282, 4124, 8, 282, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 285, 1, 285, 3, 285, 4133, 8, 285, 1, 286, 1, 286, 1, 286, 3, 286, 4138, 8, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 4147, 8, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 4, 288, 4158, 8, 288, 11, 288, 12, 288, 4159, 1, 288, 1, 288, 3, 288, 4164, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4174, 8, 289, 11, 289, 12, 289, 4175, 1, 289, 1, 289, 3, 289, 4180, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 4189, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 4208, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 5, 293, 4224, 8, 293, 10, 293, 12, 293, 4227, 9, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4238, 8, 293, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 4253, 8, 295, 1, 295, 1, 295, 3, 295, 4257, 8, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4273, 8, 296, 1, 297, 1, 297, 1, 297, 5, 297, 4278, 8, 297, 10, 297, 12, 297, 4281, 9, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 4294, 8, 298, 1, 299, 5, 299, 4297, 8, 299, 10, 299, 12, 299, 4300, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 4309, 8, 299, 10, 299, 12, 299, 4312, 9, 299, 1, 300, 1, 300, 1, 300, 5, 300, 4317, 8, 300, 10, 300, 12, 300, 4320, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4325, 8, 301, 10, 301, 12, 301, 4328, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4333, 8, 302, 10, 302, 12, 302, 4336, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4341, 8, 303, 10, 303, 12, 303, 4344, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4349, 8, 304, 10, 304, 12, 304, 4352, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4357, 8, 305, 10, 305, 12, 305, 4360, 9, 305, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 3, 308, 4370, 8, 308, 1, 308, 1, 308, 3, 308, 4374, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 4382, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4398, 8, 310, 1, 311, 1, 311, 3, 311, 4402, 8, 311, 1, 312, 1, 312, 1, 312, 3, 312, 4407, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 4420, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 4429, 8, 315, 10, 315, 12, 315, 4432, 9, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 4440, 8, 316, 1, 317, 5, 317, 4443, 8, 317, 10, 317, 12, 317, 4446, 9, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4451, 8, 317, 1, 318, 1, 318, 1, 318, 5, 318, 4456, 8, 318, 10, 318, 12, 318, 4459, 9, 318, 1, 319, 1, 319, 3, 319, 4463, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 4470, 8, 320, 10, 320, 12, 320, 4473, 9, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 3, 321, 4480, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 5, 322, 4486, 8, 322, 10, 322, 12, 322, 4489, 9, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 3, 323, 4496, 8, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 3, 326, 4506, 8, 326, 1, 327, 1, 327, 1, 327, 3, 327, 4511, 8, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 4570, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4576, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4585, 8, 332, 3, 332, 4587, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 5, 332, 4601, 8, 332, 10, 332, 12, 332, 4604, 9, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4611, 8, 332, 1, 332, 1, 332, 3, 332, 4615, 8, 332, 3, 332, 4617, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4623, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4628, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4645, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4671, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4676, 8, 332, 3, 332, 4678, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4706, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4723, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4728, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4737, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 4748, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 4753, 8, 335, 10, 335, 12, 335, 4756, 9, 335, 1, 336, 1, 336, 1, 336, 3, 336, 4761, 8, 336, 1, 337, 1, 337, 1, 337, 3, 337, 4766, 8, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 5, 348, 4791, 8, 348, 10, 348, 12, 348, 4794, 9, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 4804, 8, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 4818, 8, 351, 1, 352, 1, 352, 1, 352, 5, 352, 4823, 8, 352, 10, 352, 12, 352, 4826, 9, 352, 1, 352, 1, 827, 0, 353, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5412, 0, 709, 1, 0, 0, 0, 2, 716, 1, 0, 0, 0, 4, 721, 1, 0, 0, 0, 6, 755, 1, 0, 0, 0, 8, 757, 1, 0, 0, 0, 10, 830, 1, 0, 0, 0, 12, 832, 1, 0, 0, 0, 14, 848, 1, 0, 0, 0, 16, 857, 1, 0, 0, 0, 18, 865, 1, 0, 0, 0, 20, 878, 1, 0, 0, 0, 22, 889, 1, 0, 0, 0, 24, 894, 1, 0, 0, 0, 26, 905, 1, 0, 0, 0, 28, 968, 1, 0, 0, 0, 30, 970, 1, 0, 0, 0, 32, 973, 1, 0, 0, 0, 34, 977, 1, 0, 0, 0, 36, 979, 1, 0, 0, 0, 38, 982, 1, 0, 0, 0, 40, 985, 1, 0, 0, 0, 42, 1029, 1, 0, 0, 0, 44, 1031, 1, 0, 0, 0, 46, 1034, 1, 0, 0, 0, 48, 1037, 1, 0, 0, 0, 50, 1046, 1, 0, 0, 0, 52, 1049, 1, 0, 0, 0, 54, 1064, 1, 0, 0, 0, 56, 1076, 1, 0, 0, 0, 58, 1081, 1, 0, 0, 0, 60, 1101, 1, 0, 0, 0, 62, 1105, 1, 0, 0, 0, 64, 1112, 1, 0, 0, 0, 66, 1137, 1, 0, 0, 0, 68, 1154, 1, 0, 0, 0, 70, 1156, 1, 0, 0, 0, 72, 1341, 1, 0, 0, 0, 74, 1351, 1, 0, 0, 0, 76, 1353, 1, 0, 0, 0, 78, 1358, 1, 0, 0, 0, 80, 1363, 1, 0, 0, 0, 82, 1365, 1, 0, 0, 0, 84, 1369, 1, 0, 0, 0, 86, 1373, 1, 0, 0, 0, 88, 1377, 1, 0, 0, 0, 90, 1381, 1, 0, 0, 0, 92, 1391, 1, 0, 0, 0, 94, 1402, 1, 0, 0, 0, 96, 1419, 1, 0, 0, 0, 98, 1437, 1, 0, 0, 0, 100, 1442, 1, 0, 0, 0, 102, 1445, 1, 0, 0, 0, 104, 1449, 1, 0, 0, 0, 106, 1456, 1, 0, 0, 0, 108, 1465, 1, 0, 0, 0, 110, 1471, 1, 0, 0, 0, 112, 1473, 1, 0, 0, 0, 114, 1487, 1, 0, 0, 0, 116, 1509, 1, 0, 0, 0, 118, 1511, 1, 0, 0, 0, 120, 1519, 1, 0, 0, 0, 122, 1526, 1, 0, 0, 0, 124, 1528, 1, 0, 0, 0, 126, 1542, 1, 0, 0, 0, 128, 1549, 1, 0, 0, 0, 130, 1551, 1, 0, 0, 0, 132, 1555, 1, 0, 0, 0, 134, 1559, 1, 0, 0, 0, 136, 1563, 1, 0, 0, 0, 138, 1567, 1, 0, 0, 0, 140, 1580, 1, 0, 0, 0, 142, 1588, 1, 0, 0, 0, 144, 1591, 1, 0, 0, 0, 146, 1593, 1, 0, 0, 0, 148, 1605, 1, 0, 0, 0, 150, 1615, 1, 0, 0, 0, 152, 1618, 1, 0, 0, 0, 154, 1629, 1, 0, 0, 0, 156, 1637, 1, 0, 0, 0, 158, 1680, 1, 0, 0, 0, 160, 1689, 1, 0, 0, 0, 162, 1717, 1, 0, 0, 0, 164, 1730, 1, 0, 0, 0, 166, 1732, 1, 0, 0, 0, 168, 1738, 1, 0, 0, 0, 170, 1741, 1, 0, 0, 0, 172, 1747, 1, 0, 0, 0, 174, 1753, 1, 0, 0, 0, 176, 1760, 1, 0, 0, 0, 178, 1794, 1, 0, 0, 0, 180, 1802, 1, 0, 0, 0, 182, 1815, 1, 0, 0, 0, 184, 1820, 1, 0, 0, 0, 186, 1831, 1, 0, 0, 0, 188, 1848, 1, 0, 0, 0, 190, 1850, 1, 0, 0, 0, 192, 1855, 1, 0, 0, 0, 194, 1862, 1, 0, 0, 0, 196, 1864, 1, 0, 0, 0, 198, 1867, 1, 0, 0, 0, 200, 1870, 1, 0, 0, 0, 202, 1884, 1, 0, 0, 0, 204, 1892, 1, 0, 0, 0, 206, 1918, 1, 0, 0, 0, 208, 1920, 1, 0, 0, 0, 210, 1937, 1, 0, 0, 0, 212, 1951, 1, 0, 0, 0, 214, 1953, 1, 0, 0, 0, 216, 1956, 1, 0, 0, 0, 218, 1959, 1, 0, 0, 0, 220, 1968, 1, 0, 0, 0, 222, 1988, 1, 0, 0, 0, 224, 1990, 1, 0, 0, 0, 226, 1993, 1, 0, 0, 0, 228, 2006, 1, 0, 0, 0, 230, 2008, 1, 0, 0, 0, 232, 2012, 1, 0, 0, 0, 234, 2020, 1, 0, 0, 0, 236, 2024, 1, 0, 0, 0, 238, 2033, 1, 0, 0, 0, 240, 2039, 1, 0, 0, 0, 242, 2045, 1, 0, 0, 0, 244, 2050, 1, 0, 0, 0, 246, 2096, 1, 0, 0, 0, 248, 2098, 1, 0, 0, 0, 250, 2106, 1, 0, 0, 0, 252, 2114, 1, 0, 0, 0, 254, 2122, 1, 0, 0, 0, 256, 2132, 1, 0, 0, 0, 258, 2134, 1, 0, 0, 0, 260, 2136, 1, 0, 0, 0, 262, 2138, 1, 0, 0, 0, 264, 2151, 1, 0, 0, 0, 266, 2159, 1, 0, 0, 0, 268, 2168, 1, 0, 0, 0, 270, 2172, 1, 0, 0, 0, 272, 2174, 1, 0, 0, 0, 274, 2179, 1, 0, 0, 0, 276, 2181, 1, 0, 0, 0, 278, 2185, 1, 0, 0, 0, 280, 2191, 1, 0, 0, 0, 282, 2199, 1, 0, 0, 0, 284, 2201, 1, 0, 0, 0, 286, 2204, 1, 0, 0, 0, 288, 2211, 1, 0, 0, 0, 290, 2222, 1, 0, 0, 0, 292, 2235, 1, 0, 0, 0, 294, 2237, 1, 0, 0, 0, 296, 2245, 1, 0, 0, 0, 298, 2249, 1, 0, 0, 0, 300, 2257, 1, 0, 0, 0, 302, 2259, 1, 0, 0, 0, 304, 2262, 1, 0, 0, 0, 306, 2269, 1, 0, 0, 0, 308, 2277, 1, 0, 0, 0, 310, 2284, 1, 0, 0, 0, 312, 2292, 1, 0, 0, 0, 314, 2300, 1, 0, 0, 0, 316, 2304, 1, 0, 0, 0, 318, 2306, 1, 0, 0, 0, 320, 2317, 1, 0, 0, 0, 322, 2321, 1, 0, 0, 0, 324, 2333, 1, 0, 0, 0, 326, 2341, 1, 0, 0, 0, 328, 2345, 1, 0, 0, 0, 330, 2357, 1, 0, 0, 0, 332, 2369, 1, 0, 0, 0, 334, 2374, 1, 0, 0, 0, 336, 2379, 1, 0, 0, 0, 338, 2381, 1, 0, 0, 0, 340, 2385, 1, 0, 0, 0, 342, 2389, 1, 0, 0, 0, 344, 2396, 1, 0, 0, 0, 346, 2398, 1, 0, 0, 0, 348, 2411, 1, 0, 0, 0, 350, 2450, 1, 0, 0, 0, 352, 2452, 1, 0, 0, 0, 354, 2457, 1, 0, 0, 0, 356, 2462, 1, 0, 0, 0, 358, 2469, 1, 0, 0, 0, 360, 2474, 1, 0, 0, 0, 362, 2479, 1, 0, 0, 0, 364, 2485, 1, 0, 0, 0, 366, 2487, 1, 0, 0, 0, 368, 2496, 1, 0, 0, 0, 370, 2508, 1, 0, 0, 0, 372, 2588, 1, 0, 0, 0, 374, 2594, 1, 0, 0, 0, 376, 2620, 1, 0, 0, 0, 378, 2622, 1, 0, 0, 0, 380, 2644, 1, 0, 0, 0, 382, 2649, 1, 0, 0, 0, 384, 2653, 1, 0, 0, 0, 386, 2685, 1, 0, 0, 0, 388, 2687, 1, 0, 0, 0, 390, 2698, 1, 0, 0, 0, 392, 2704, 1, 0, 0, 0, 394, 2706, 1, 0, 0, 0, 396, 2738, 1, 0, 0, 0, 398, 2745, 1, 0, 0, 0, 400, 2751, 1, 0, 0, 0, 402, 2757, 1, 0, 0, 0, 404, 2772, 1, 0, 0, 0, 406, 2782, 1, 0, 0, 0, 408, 2790, 1, 0, 0, 0, 410, 2793, 1, 0, 0, 0, 412, 2796, 1, 0, 0, 0, 414, 2799, 1, 0, 0, 0, 416, 2921, 1, 0, 0, 0, 418, 3055, 1, 0, 0, 0, 420, 3083, 1, 0, 0, 0, 422, 3100, 1, 0, 0, 0, 424, 3117, 1, 0, 0, 0, 426, 3119, 1, 0, 0, 0, 428, 3122, 1, 0, 0, 0, 430, 3148, 1, 0, 0, 0, 432, 3153, 1, 0, 0, 0, 434, 3180, 1, 0, 0, 0, 436, 3191, 1, 0, 0, 0, 438, 3328, 1, 0, 0, 0, 440, 3330, 1, 0, 0, 0, 442, 3353, 1, 0, 0, 0, 444, 3365, 1, 0, 0, 0, 446, 3370, 1, 0, 0, 0, 448, 3378, 1, 0, 0, 0, 450, 3386, 1, 0, 0, 0, 452, 3398, 1, 0, 0, 0, 454, 3432, 1, 0, 0, 0, 456, 3434, 1, 0, 0, 0, 458, 3452, 1, 0, 0, 0, 460, 3461, 1, 0, 0, 0, 462, 3491, 1, 0, 0, 0, 464, 3550, 1, 0, 0, 0, 466, 3552, 1, 0, 0, 0, 468, 3581, 1, 0, 0, 0, 470, 3583, 1, 0, 0, 0, 472, 3599, 1, 0, 0, 0, 474, 3611, 1, 0, 0, 0, 476, 3613, 1, 0, 0, 0, 478, 3617, 1, 0, 0, 0, 480, 3627, 1, 0, 0, 0, 482, 3637, 1, 0, 0, 0, 484, 3642, 1, 0, 0, 0, 486, 3649, 1, 0, 0, 0, 488, 3653, 1, 0, 0, 0, 490, 3672, 1, 0, 0, 0, 492, 3677, 1, 0, 0, 0, 494, 3679, 1, 0, 0, 0, 496, 3683, 1, 0, 0, 0, 498, 3709, 1, 0, 0, 0, 500, 3712, 1, 0, 0, 0, 502, 3733, 1, 0, 0, 0, 504, 3738, 1, 0, 0, 0, 506, 3769, 1, 0, 0, 0, 508, 3771, 1, 0, 0, 0, 510, 3795, 1, 0, 0, 0, 512, 3826, 1, 0, 0, 0, 514, 3828, 1, 0, 0, 0, 516, 3830, 1, 0, 0, 0, 518, 3832, 1, 0, 0, 0, 520, 3857, 1, 0, 0, 0, 522, 3859, 1, 0, 0, 0, 524, 3867, 1, 0, 0, 0, 526, 3893, 1, 0, 0, 0, 528, 3895, 1, 0, 0, 0, 530, 3915, 1, 0, 0, 0, 532, 3917, 1, 0, 0, 0, 534, 3928, 1, 0, 0, 0, 536, 3941, 1, 0, 0, 0, 538, 3976, 1, 0, 0, 0, 540, 3978, 1, 0, 0, 0, 542, 3981, 1, 0, 0, 0, 544, 3986, 1, 0, 0, 0, 546, 3988, 1, 0, 0, 0, 548, 4010, 1, 0, 0, 0, 550, 4012, 1, 0, 0, 0, 552, 4016, 1, 0, 0, 0, 554, 4025, 1, 0, 0, 0, 556, 4035, 1, 0, 0, 0, 558, 4039, 1, 0, 0, 0, 560, 4043, 1, 0, 0, 0, 562, 4047, 1, 0, 0, 0, 564, 4123, 1, 0, 0, 0, 566, 4125, 1, 0, 0, 0, 568, 4128, 1, 0, 0, 0, 570, 4132, 1, 0, 0, 0, 572, 4137, 1, 0, 0, 0, 574, 4139, 1, 0, 0, 0, 576, 4150, 1, 0, 0, 0, 578, 4167, 1, 0, 0, 0, 580, 4183, 1, 0, 0, 0, 582, 4192, 1, 0, 0, 0, 584, 4207, 1, 0, 0, 0, 586, 4237, 1, 0, 0, 0, 588, 4239, 1, 0, 0, 0, 590, 4256, 1, 0, 0, 0, 592, 4272, 1, 0, 0, 0, 594, 4274, 1, 0, 0, 0, 596, 4293, 1, 0, 0, 0, 598, 4298, 1, 0, 0, 0, 600, 4313, 1, 0, 0, 0, 602, 4321, 1, 0, 0, 0, 604, 4329, 1, 0, 0, 0, 606, 4337, 1, 0, 0, 0, 608, 4345, 1, 0, 0, 0, 610, 4353, 1, 0, 0, 0, 612, 4361, 1, 0, 0, 0, 614, 4363, 1, 0, 0, 0, 616, 4373, 1, 0, 0, 0, 618, 4381, 1, 0, 0, 0, 620, 4397, 1, 0, 0, 0, 622, 4401, 1, 0, 0, 0, 624, 4406, 1, 0, 0, 0, 626, 4408, 1, 0, 0, 0, 628, 4419, 1, 0, 0, 0, 630, 4421, 1, 0, 0, 0, 632, 4439, 1, 0, 0, 0, 634, 4444, 1, 0, 0, 0, 636, 4452, 1, 0, 0, 0, 638, 4460, 1, 0, 0, 0, 640, 4464, 1, 0, 0, 0, 642, 4476, 1, 0, 0, 0, 644, 4481, 1, 0, 0, 0, 646, 4492, 1, 0, 0, 0, 648, 4499, 1, 0, 0, 0, 650, 4501, 1, 0, 0, 0, 652, 4505, 1, 0, 0, 0, 654, 4507, 1, 0, 0, 0, 656, 4512, 1, 0, 0, 0, 658, 4514, 1, 0, 0, 0, 660, 4516, 1, 0, 0, 0, 662, 4569, 1, 0, 0, 0, 664, 4736, 1, 0, 0, 0, 666, 4738, 1, 0, 0, 0, 668, 4747, 1, 0, 0, 0, 670, 4749, 1, 0, 0, 0, 672, 4760, 1, 0, 0, 0, 674, 4762, 1, 0, 0, 0, 676, 4767, 1, 0, 0, 0, 678, 4769, 1, 0, 0, 0, 680, 4771, 1, 0, 0, 0, 682, 4773, 1, 0, 0, 0, 684, 4775, 1, 0, 0, 0, 686, 4777, 1, 0, 0, 0, 688, 4779, 1, 0, 0, 0, 690, 4781, 1, 0, 0, 0, 692, 4783, 1, 0, 0, 0, 694, 4785, 1, 0, 0, 0, 696, 4787, 1, 0, 0, 0, 698, 4795, 1, 0, 0, 0, 700, 4803, 1, 0, 0, 0, 702, 4817, 1, 0, 0, 0, 704, 4819, 1, 0, 0, 0, 706, 708, 3, 2, 1, 0, 707, 706, 1, 0, 0, 0, 708, 711, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 712, 1, 0, 0, 0, 711, 709, 1, 0, 0, 0, 712, 713, 5, 0, 0, 1, 713, 1, 1, 0, 0, 0, 714, 717, 3, 4, 2, 0, 715, 717, 3, 10, 5, 0, 716, 714, 1, 0, 0, 0, 716, 715, 1, 0, 0, 0, 717, 719, 1, 0, 0, 0, 718, 720, 5, 398, 0, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 3, 1, 0, 0, 0, 721, 731, 5, 119, 0, 0, 722, 724, 3, 6, 3, 0, 723, 722, 1, 0, 0, 0, 724, 727, 1, 0, 0, 0, 725, 723, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 728, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 728, 732, 3, 10, 5, 0, 729, 730, 5, 284, 0, 0, 730, 732, 3, 362, 181, 0, 731, 725, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 5, 1, 0, 0, 0, 733, 756, 5, 122, 0, 0, 734, 756, 5, 138, 0, 0, 735, 756, 5, 88, 0, 0, 736, 738, 5, 37, 0, 0, 737, 739, 7, 0, 0, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 756, 1, 0, 0, 0, 740, 756, 5, 192, 0, 0, 741, 756, 5, 21, 0, 0, 742, 756, 5, 10, 0, 0, 743, 756, 5, 275, 0, 0, 744, 756, 5, 191, 0, 0, 745, 756, 5, 19, 0, 0, 746, 748, 5, 377, 0, 0, 747, 749, 5, 225, 0, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 751, 1, 0, 0, 0, 750, 752, 3, 8, 4, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 756, 1, 0, 0, 0, 753, 756, 5, 79, 0, 0, 754, 756, 5, 78, 0, 0, 755, 733, 1, 0, 0, 0, 755, 734, 1, 0, 0, 0, 755, 735, 1, 0, 0, 0, 755, 736, 1, 0, 0, 0, 755, 740, 1, 0, 0, 0, 755, 741, 1, 0, 0, 0, 755, 742, 1, 0, 0, 0, 755, 743, 1, 0, 0, 0, 755, 744, 1, 0, 0, 0, 755, 745, 1, 0, 0, 0, 755, 746, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 755, 754, 1, 0, 0, 0, 756, 7, 1, 0, 0, 0, 757, 758, 7, 1, 0, 0, 758, 9, 1, 0, 0, 0, 759, 831, 3, 362, 181, 0, 760, 831, 3, 12, 6, 0, 761, 831, 3, 16, 8, 0, 762, 831, 3, 18, 9, 0, 763, 831, 3, 20, 10, 0, 764, 831, 3, 24, 12, 0, 765, 766, 5, 277, 0, 0, 766, 767, 5, 320, 0, 0, 767, 770, 3, 474, 237, 0, 768, 769, 5, 387, 0, 0, 769, 771, 3, 230, 115, 0, 770, 768, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 831, 1, 0, 0, 0, 772, 831, 3, 28, 14, 0, 773, 774, 5, 86, 0, 0, 774, 775, 5, 139, 0, 0, 775, 777, 3, 480, 240, 0, 776, 778, 3, 498, 249, 0, 777, 776, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 831, 1, 0, 0, 0, 779, 780, 5, 365, 0, 0, 780, 781, 3, 480, 240, 0, 781, 783, 3, 394, 197, 0, 782, 784, 3, 498, 249, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 831, 1, 0, 0, 0, 785, 831, 3, 396, 198, 0, 786, 788, 5, 203, 0, 0, 787, 789, 5, 436, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 5, 166, 0, 0, 791, 796, 3, 480, 240, 0, 792, 794, 5, 17, 0, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 797, 3, 652, 326, 0, 796, 793, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 5, 370, 0, 0, 799, 800, 3, 458, 229, 0, 800, 801, 5, 224, 0, 0, 801, 802, 3, 594, 297, 0, 802, 803, 3, 400, 200, 0, 803, 831, 1, 0, 0, 0, 804, 805, 5, 249, 0, 0, 805, 806, 3, 652, 326, 0, 806, 807, 5, 139, 0, 0, 807, 808, 3, 362, 181, 0, 808, 831, 1, 0, 0, 0, 809, 810, 5, 115, 0, 0, 810, 811, 3, 652, 326, 0, 811, 812, 5, 370, 0, 0, 812, 813, 3, 298, 149, 0, 813, 831, 1, 0, 0, 0, 814, 815, 5, 304, 0, 0, 815, 820, 3, 662, 331, 0, 816, 817, 7, 2, 0, 0, 817, 819, 3, 662, 331, 0, 818, 816, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 827, 5, 405, 0, 0, 824, 826, 9, 0, 0, 0, 825, 824, 1, 0, 0, 0, 826, 829, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 831, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 830, 759, 1, 0, 0, 0, 830, 760, 1, 0, 0, 0, 830, 761, 1, 0, 0, 0, 830, 762, 1, 0, 0, 0, 830, 763, 1, 0, 0, 0, 830, 764, 1, 0, 0, 0, 830, 765, 1, 0, 0, 0, 830, 772, 1, 0, 0, 0, 830, 773, 1, 0, 0, 0, 830, 779, 1, 0, 0, 0, 830, 785, 1, 0, 0, 0, 830, 786, 1, 0, 0, 0, 830, 804, 1, 0, 0, 0, 830, 809, 1, 0, 0, 0, 830, 814, 1, 0, 0, 0, 831, 11, 1, 0, 0, 0, 832, 833, 5, 187, 0, 0, 833, 835, 5, 66, 0, 0, 834, 836, 5, 188, 0, 0, 835, 834, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 5, 158, 0, 0, 838, 840, 5, 426, 0, 0, 839, 841, 5, 235, 0, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 5, 166, 0, 0, 843, 844, 5, 329, 0, 0, 844, 846, 3, 638, 319, 0, 845, 847, 3, 56, 28, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 13, 1, 0, 0, 0, 848, 850, 5, 134, 0, 0, 849, 851, 5, 204, 0, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 5, 279, 0, 0, 853, 854, 5, 399, 0, 0, 854, 855, 5, 426, 0, 0, 855, 856, 5, 400, 0, 0, 856, 15, 1, 0, 0, 0, 857, 858, 5, 120, 0, 0, 858, 859, 5, 329, 0, 0, 859, 860, 3, 638, 319, 0, 860, 861, 5, 341, 0, 0, 861, 863, 5, 426, 0, 0, 862, 864, 3, 14, 7, 0, 863, 862, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 17, 1, 0, 0, 0, 865, 871, 5, 153, 0, 0, 866, 868, 5, 123, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 5, 329, 0, 0, 870, 872, 3, 638, 319, 0, 871, 867, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 5, 139, 0, 0, 874, 876, 5, 426, 0, 0, 875, 877, 3, 426, 213, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 19, 1, 0, 0, 0, 878, 879, 5, 277, 0, 0, 879, 880, 5, 103, 0, 0, 880, 883, 3, 22, 11, 0, 881, 882, 5, 278, 0, 0, 882, 884, 3, 22, 11, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 887, 1, 0, 0, 0, 885, 886, 5, 387, 0, 0, 886, 888, 3, 230, 115, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 21, 1, 0, 0, 0, 889, 892, 3, 474, 237, 0, 890, 891, 5, 395, 0, 0, 891, 893, 3, 26, 13, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 23, 1, 0, 0, 0, 894, 895, 5, 277, 0, 0, 895, 896, 5, 187, 0, 0, 896, 899, 3, 22, 11, 0, 897, 898, 5, 166, 0, 0, 898, 900, 3, 474, 237, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 902, 5, 387, 0, 0, 902, 904, 3, 230, 115, 0, 903, 901, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 25, 1, 0, 0, 0, 905, 908, 5, 426, 0, 0, 906, 907, 5, 395, 0, 0, 907, 909, 5, 426, 0, 0, 908, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 27, 1, 0, 0, 0, 910, 969, 3, 42, 21, 0, 911, 969, 3, 46, 23, 0, 912, 969, 3, 48, 24, 0, 913, 969, 3, 438, 219, 0, 914, 969, 3, 54, 27, 0, 915, 969, 3, 52, 26, 0, 916, 969, 3, 414, 207, 0, 917, 969, 3, 64, 32, 0, 918, 969, 3, 72, 36, 0, 919, 969, 3, 138, 69, 0, 920, 969, 3, 160, 80, 0, 921, 969, 3, 176, 88, 0, 922, 969, 3, 180, 90, 0, 923, 969, 3, 184, 92, 0, 924, 969, 3, 182, 91, 0, 925, 969, 3, 174, 87, 0, 926, 969, 3, 178, 89, 0, 927, 969, 3, 146, 73, 0, 928, 969, 3, 152, 76, 0, 929, 969, 3, 148, 74, 0, 930, 969, 3, 150, 75, 0, 931, 969, 3, 154, 77, 0, 932, 969, 3, 156, 78, 0, 933, 969, 3, 158, 79, 0, 934, 969, 3, 66, 33, 0, 935, 969, 3, 76, 38, 0, 936, 969, 3, 82, 41, 0, 937, 969, 3, 78, 39, 0, 938, 969, 3, 84, 42, 0, 939, 969, 3, 86, 43, 0, 940, 969, 3, 88, 44, 0, 941, 969, 3, 90, 45, 0, 942, 969, 3, 92, 46, 0, 943, 969, 3, 106, 53, 0, 944, 969, 3, 98, 49, 0, 945, 969, 3, 108, 54, 0, 946, 969, 3, 100, 50, 0, 947, 969, 3, 94, 47, 0, 948, 969, 3, 96, 48, 0, 949, 969, 3, 104, 52, 0, 950, 969, 3, 102, 51, 0, 951, 952, 5, 1, 0, 0, 952, 954, 7, 3, 0, 0, 953, 955, 5, 431, 0, 0, 954, 953, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 969, 1, 0, 0, 0, 958, 959, 5, 176, 0, 0, 959, 961, 5, 258, 0, 0, 960, 962, 5, 426, 0, 0, 961, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 969, 1, 0, 0, 0, 965, 969, 3, 664, 332, 0, 966, 969, 3, 440, 220, 0, 967, 969, 3, 442, 221, 0, 968, 910, 1, 0, 0, 0, 968, 911, 1, 0, 0, 0, 968, 912, 1, 0, 0, 0, 968, 913, 1, 0, 0, 0, 968, 914, 1, 0, 0, 0, 968, 915, 1, 0, 0, 0, 968, 916, 1, 0, 0, 0, 968, 917, 1, 0, 0, 0, 968, 918, 1, 0, 0, 0, 968, 919, 1, 0, 0, 0, 968, 920, 1, 0, 0, 0, 968, 921, 1, 0, 0, 0, 968, 922, 1, 0, 0, 0, 968, 923, 1, 0, 0, 0, 968, 924, 1, 0, 0, 0, 968, 925, 1, 0, 0, 0, 968, 926, 1, 0, 0, 0, 968, 927, 1, 0, 0, 0, 968, 928, 1, 0, 0, 0, 968, 929, 1, 0, 0, 0, 968, 930, 1, 0, 0, 0, 968, 931, 1, 0, 0, 0, 968, 932, 1, 0, 0, 0, 968, 933, 1, 0, 0, 0, 968, 934, 1, 0, 0, 0, 968, 935, 1, 0, 0, 0, 968, 936, 1, 0, 0, 0, 968, 937, 1, 0, 0, 0, 968, 938, 1, 0, 0, 0, 968, 939, 1, 0, 0, 0, 968, 940, 1, 0, 0, 0, 968, 941, 1, 0, 0, 0, 968, 942, 1, 0, 0, 0, 968, 943, 1, 0, 0, 0, 968, 944, 1, 0, 0, 0, 968, 945, 1, 0, 0, 0, 968, 946, 1, 0, 0, 0, 968, 947, 1, 0, 0, 0, 968, 948, 1, 0, 0, 0, 968, 949, 1, 0, 0, 0, 968, 950, 1, 0, 0, 0, 968, 951, 1, 0, 0, 0, 968, 958, 1, 0, 0, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 29, 1, 0, 0, 0, 970, 971, 5, 151, 0, 0, 971, 972, 5, 117, 0, 0, 972, 31, 1, 0, 0, 0, 973, 974, 5, 151, 0, 0, 974, 975, 5, 216, 0, 0, 975, 976, 5, 117, 0, 0, 976, 33, 1, 0, 0, 0, 977, 978, 7, 4, 0, 0, 978, 35, 1, 0, 0, 0, 979, 980, 3, 676, 338, 0, 980, 981, 5, 284, 0, 0, 981, 37, 1, 0, 0, 0, 982, 983, 3, 678, 339, 0, 983, 984, 5, 284, 0, 0, 984, 39, 1, 0, 0, 0, 985, 986, 5, 321, 0, 0, 986, 987, 5, 17, 0, 0, 987, 988, 5, 92, 0, 0, 988, 41, 1, 0, 0, 0, 989, 991, 5, 58, 0, 0, 990, 992, 5, 273, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 995, 3, 70, 35, 0, 994, 996, 3, 32, 16, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 999, 3, 476, 238, 0, 998, 1000, 3, 50, 25, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1002, 1, 0, 0, 0, 1001, 1003, 3, 426, 213, 0, 1002, 1001, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1006, 1, 0, 0, 0, 1004, 1005, 5, 196, 0, 0, 1005, 1007, 5, 426, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1011, 1, 0, 0, 0, 1008, 1009, 5, 387, 0, 0, 1009, 1010, 5, 76, 0, 0, 1010, 1012, 3, 230, 115, 0, 1011, 1008, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1030, 1, 0, 0, 0, 1013, 1014, 5, 58, 0, 0, 1014, 1015, 5, 273, 0, 0, 1015, 1017, 3, 70, 35, 0, 1016, 1018, 3, 32, 16, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1021, 3, 476, 238, 0, 1020, 1022, 3, 50, 25, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1027, 3, 44, 22, 0, 1024, 1025, 5, 387, 0, 0, 1025, 1026, 5, 76, 0, 0, 1026, 1028, 3, 230, 115, 0, 1027, 1024, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1030, 1, 0, 0, 0, 1029, 989, 1, 0, 0, 0, 1029, 1013, 1, 0, 0, 0, 1030, 43, 1, 0, 0, 0, 1031, 1032, 5, 370, 0, 0, 1032, 1033, 3, 474, 237, 0, 1033, 45, 1, 0, 0, 0, 1034, 1035, 5, 368, 0, 0, 1035, 1036, 3, 474, 237, 0, 1036, 47, 1, 0, 0, 0, 1037, 1038, 5, 101, 0, 0, 1038, 1040, 3, 70, 35, 0, 1039, 1041, 3, 30, 15, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1044, 3, 474, 237, 0, 1043, 1045, 3, 34, 17, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 49, 1, 0, 0, 0, 1046, 1047, 5, 47, 0, 0, 1047, 1048, 5, 426, 0, 0, 1048, 51, 1, 0, 0, 0, 1049, 1051, 5, 351, 0, 0, 1050, 1052, 5, 329, 0, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1059, 3, 638, 319, 0, 1054, 1055, 5, 46, 0, 0, 1055, 1056, 5, 399, 0, 0, 1056, 1057, 3, 254, 127, 0, 1057, 1058, 5, 400, 0, 0, 1058, 1060, 1, 0, 0, 0, 1059, 1054, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1062, 1, 0, 0, 0, 1061, 1063, 5, 135, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 53, 1, 0, 0, 0, 1064, 1065, 5, 101, 0, 0, 1065, 1067, 5, 329, 0, 0, 1066, 1068, 3, 30, 15, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 3, 480, 240, 0, 1070, 1072, 5, 255, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1074, 1, 0, 0, 0, 1073, 1075, 3, 14, 7, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 55, 1, 0, 0, 0, 1076, 1077, 5, 160, 0, 0, 1077, 1078, 5, 426, 0, 0, 1078, 1079, 5, 301, 0, 0, 1079, 1080, 5, 426, 0, 0, 1080, 57, 1, 0, 0, 0, 1081, 1084, 3, 652, 326, 0, 1082, 1083, 5, 395, 0, 0, 1083, 1085, 3, 652, 326, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1099, 1, 0, 0, 0, 1086, 1096, 3, 652, 326, 0, 1087, 1092, 5, 395, 0, 0, 1088, 1093, 5, 104, 0, 0, 1089, 1093, 5, 175, 0, 0, 1090, 1093, 5, 375, 0, 0, 1091, 1093, 3, 652, 326, 0, 1092, 1088, 1, 0, 0, 0, 1092, 1089, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1091, 1, 0, 0, 0, 1093, 1095, 1, 0, 0, 0, 1094, 1087, 1, 0, 0, 0, 1095, 1098, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1100, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1086, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 59, 1, 0, 0, 0, 1101, 1103, 3, 58, 29, 0, 1102, 1104, 3, 640, 320, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 61, 1, 0, 0, 0, 1105, 1107, 3, 478, 239, 0, 1106, 1108, 3, 640, 320, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1111, 3, 262, 131, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 63, 1, 0, 0, 0, 1112, 1135, 7, 5, 0, 0, 1113, 1115, 3, 70, 35, 0, 1114, 1116, 5, 122, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 3, 474, 237, 0, 1118, 1136, 1, 0, 0, 0, 1119, 1121, 5, 69, 0, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1136, 3, 474, 237, 0, 1124, 1126, 5, 141, 0, 0, 1125, 1127, 5, 122, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1136, 3, 570, 285, 0, 1129, 1132, 5, 138, 0, 0, 1130, 1132, 5, 122, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1130, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1136, 3, 62, 31, 0, 1134, 1136, 3, 62, 31, 0, 1135, 1113, 1, 0, 0, 0, 1135, 1119, 1, 0, 0, 0, 1135, 1124, 1, 0, 0, 0, 1135, 1131, 1, 0, 0, 0, 1135, 1134, 1, 0, 0, 0, 1136, 65, 1, 0, 0, 0, 1137, 1138, 5, 10, 0, 0, 1138, 1139, 5, 329, 0, 0, 1139, 1152, 3, 638, 319, 0, 1140, 1141, 5, 52, 0, 0, 1141, 1148, 5, 319, 0, 0, 1142, 1149, 5, 215, 0, 0, 1143, 1144, 5, 134, 0, 0, 1144, 1146, 5, 46, 0, 0, 1145, 1147, 3, 254, 127, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 1, 0, 0, 0, 1148, 1142, 1, 0, 0, 0, 1148, 1143, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1153, 1, 0, 0, 0, 1150, 1151, 5, 33, 0, 0, 1151, 1153, 5, 204, 0, 0, 1152, 1140, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 67, 1, 0, 0, 0, 1154, 1155, 7, 6, 0, 0, 1155, 69, 1, 0, 0, 0, 1156, 1157, 7, 7, 0, 0, 1157, 71, 1, 0, 0, 0, 1158, 1159, 5, 308, 0, 0, 1159, 1162, 7, 8, 0, 0, 1160, 1161, 5, 184, 0, 0, 1161, 1163, 3, 194, 97, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1342, 1, 0, 0, 0, 1164, 1166, 5, 308, 0, 0, 1165, 1167, 5, 122, 0, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1172, 5, 330, 0, 0, 1169, 1170, 3, 68, 34, 0, 1170, 1171, 3, 474, 237, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1169, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1176, 3, 74, 37, 0, 1175, 1174, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1342, 1, 0, 0, 0, 1177, 1178, 5, 308, 0, 0, 1178, 1182, 5, 379, 0, 0, 1179, 1180, 3, 68, 34, 0, 1180, 1181, 3, 474, 237, 0, 1181, 1183, 1, 0, 0, 0, 1182, 1179, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1187, 1, 0, 0, 0, 1184, 1185, 5, 184, 0, 0, 1185, 1188, 3, 194, 97, 0, 1186, 1188, 3, 194, 97, 0, 1187, 1184, 1, 0, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1342, 1, 0, 0, 0, 1189, 1190, 5, 308, 0, 0, 1190, 1191, 5, 202, 0, 0, 1191, 1195, 5, 379, 0, 0, 1192, 1193, 3, 68, 34, 0, 1193, 1194, 3, 474, 237, 0, 1194, 1196, 1, 0, 0, 0, 1195, 1192, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1200, 1, 0, 0, 0, 1197, 1198, 5, 184, 0, 0, 1198, 1201, 3, 194, 97, 0, 1199, 1201, 3, 194, 97, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1342, 1, 0, 0, 0, 1202, 1204, 5, 308, 0, 0, 1203, 1205, 5, 315, 0, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 5, 46, 0, 0, 1207, 1208, 3, 68, 34, 0, 1208, 1212, 3, 478, 239, 0, 1209, 1210, 3, 68, 34, 0, 1210, 1211, 3, 474, 237, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1209, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1217, 1, 0, 0, 0, 1214, 1215, 5, 184, 0, 0, 1215, 1218, 3, 194, 97, 0, 1216, 1218, 3, 194, 97, 0, 1217, 1214, 1, 0, 0, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1342, 1, 0, 0, 0, 1219, 1220, 5, 308, 0, 0, 1220, 1223, 5, 142, 0, 0, 1221, 1222, 5, 184, 0, 0, 1222, 1224, 3, 570, 285, 0, 1223, 1221, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1342, 1, 0, 0, 0, 1225, 1226, 5, 308, 0, 0, 1226, 1227, 5, 239, 0, 0, 1227, 1229, 3, 478, 239, 0, 1228, 1230, 3, 640, 320, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1232, 1, 0, 0, 0, 1231, 1233, 3, 498, 249, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1235, 1, 0, 0, 0, 1234, 1236, 3, 554, 277, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 388, 194, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1342, 1, 0, 0, 0, 1240, 1241, 5, 308, 0, 0, 1241, 1247, 5, 58, 0, 0, 1242, 1243, 3, 70, 35, 0, 1243, 1244, 3, 474, 237, 0, 1244, 1248, 1, 0, 0, 0, 1245, 1246, 5, 329, 0, 0, 1246, 1248, 3, 480, 240, 0, 1247, 1242, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1342, 1, 0, 0, 0, 1249, 1250, 5, 308, 0, 0, 1250, 1251, 5, 329, 0, 0, 1251, 1255, 5, 122, 0, 0, 1252, 1253, 3, 68, 34, 0, 1253, 1254, 3, 474, 237, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1252, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 5, 184, 0, 0, 1258, 1260, 3, 194, 97, 0, 1259, 1261, 3, 640, 320, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1342, 1, 0, 0, 0, 1262, 1263, 5, 308, 0, 0, 1263, 1264, 5, 332, 0, 0, 1264, 1268, 3, 480, 240, 0, 1265, 1266, 5, 399, 0, 0, 1266, 1267, 5, 426, 0, 0, 1267, 1269, 5, 400, 0, 0, 1268, 1265, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1342, 1, 0, 0, 0, 1270, 1271, 5, 308, 0, 0, 1271, 1283, 5, 191, 0, 0, 1272, 1273, 3, 70, 35, 0, 1273, 1275, 3, 474, 237, 0, 1274, 1276, 5, 122, 0, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1284, 1, 0, 0, 0, 1277, 1279, 3, 60, 30, 0, 1278, 1277, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1282, 5, 122, 0, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1272, 1, 0, 0, 0, 1283, 1278, 1, 0, 0, 0, 1284, 1342, 1, 0, 0, 0, 1285, 1286, 5, 308, 0, 0, 1286, 1313, 5, 50, 0, 0, 1287, 1288, 5, 51, 0, 0, 1288, 1289, 5, 405, 0, 0, 1289, 1314, 5, 431, 0, 0, 1290, 1291, 3, 70, 35, 0, 1291, 1292, 3, 474, 237, 0, 1292, 1297, 1, 0, 0, 0, 1293, 1295, 3, 60, 30, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1290, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1297, 1299, 1, 0, 0, 0, 1298, 1300, 3, 408, 204, 0, 1299, 1298, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1303, 3, 410, 205, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 412, 206, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 554, 277, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 388, 194, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1287, 1, 0, 0, 0, 1313, 1296, 1, 0, 0, 0, 1314, 1342, 1, 0, 0, 0, 1315, 1316, 5, 308, 0, 0, 1316, 1342, 5, 346, 0, 0, 1317, 1318, 5, 308, 0, 0, 1318, 1319, 5, 54, 0, 0, 1319, 1342, 5, 426, 0, 0, 1320, 1321, 5, 308, 0, 0, 1321, 1325, 5, 280, 0, 0, 1322, 1323, 5, 243, 0, 0, 1323, 1326, 3, 652, 326, 0, 1324, 1326, 5, 244, 0, 0, 1325, 1322, 1, 0, 0, 0, 1325, 1324, 1, 0, 0, 0, 1326, 1342, 1, 0, 0, 0, 1327, 1328, 5, 308, 0, 0, 1328, 1342, 5, 70, 0, 0, 1329, 1331, 5, 308, 0, 0, 1330, 1332, 5, 138, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 7, 9, 0, 0, 1334, 1335, 5, 224, 0, 0, 1335, 1339, 3, 480, 240, 0, 1336, 1337, 3, 68, 34, 0, 1337, 1338, 3, 474, 237, 0, 1338, 1340, 1, 0, 0, 0, 1339, 1336, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1158, 1, 0, 0, 0, 1341, 1164, 1, 0, 0, 0, 1341, 1177, 1, 0, 0, 0, 1341, 1189, 1, 0, 0, 0, 1341, 1202, 1, 0, 0, 0, 1341, 1219, 1, 0, 0, 0, 1341, 1225, 1, 0, 0, 0, 1341, 1240, 1, 0, 0, 0, 1341, 1249, 1, 0, 0, 0, 1341, 1262, 1, 0, 0, 0, 1341, 1270, 1, 0, 0, 0, 1341, 1285, 1, 0, 0, 0, 1341, 1315, 1, 0, 0, 0, 1341, 1317, 1, 0, 0, 0, 1341, 1320, 1, 0, 0, 0, 1341, 1327, 1, 0, 0, 0, 1341, 1329, 1, 0, 0, 0, 1342, 73, 1, 0, 0, 0, 1343, 1344, 5, 384, 0, 0, 1344, 1345, 3, 652, 326, 0, 1345, 1346, 5, 405, 0, 0, 1346, 1347, 5, 426, 0, 0, 1347, 1352, 1, 0, 0, 0, 1348, 1349, 5, 184, 0, 0, 1349, 1352, 3, 194, 97, 0, 1350, 1352, 3, 194, 97, 0, 1351, 1343, 1, 0, 0, 0, 1351, 1348, 1, 0, 0, 0, 1351, 1350, 1, 0, 0, 0, 1352, 75, 1, 0, 0, 0, 1353, 1354, 5, 190, 0, 0, 1354, 1355, 5, 329, 0, 0, 1355, 1356, 3, 638, 319, 0, 1356, 1357, 3, 80, 40, 0, 1357, 77, 1, 0, 0, 0, 1358, 1359, 5, 190, 0, 0, 1359, 1360, 3, 70, 35, 0, 1360, 1361, 3, 474, 237, 0, 1361, 1362, 3, 80, 40, 0, 1362, 79, 1, 0, 0, 0, 1363, 1364, 7, 10, 0, 0, 1364, 81, 1, 0, 0, 0, 1365, 1366, 5, 361, 0, 0, 1366, 1367, 5, 329, 0, 0, 1367, 1368, 3, 638, 319, 0, 1368, 83, 1, 0, 0, 0, 1369, 1370, 5, 361, 0, 0, 1370, 1371, 3, 70, 35, 0, 1371, 1372, 3, 474, 237, 0, 1372, 85, 1, 0, 0, 0, 1373, 1374, 5, 58, 0, 0, 1374, 1375, 5, 287, 0, 0, 1375, 1376, 3, 652, 326, 0, 1376, 87, 1, 0, 0, 0, 1377, 1378, 5, 101, 0, 0, 1378, 1379, 5, 287, 0, 0, 1379, 1380, 3, 652, 326, 0, 1380, 89, 1, 0, 0, 0, 1381, 1382, 5, 143, 0, 0, 1382, 1384, 3, 118, 59, 0, 1383, 1385, 3, 112, 56, 0, 1384, 1383, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 5, 341, 0, 0, 1387, 1389, 3, 124, 62, 0, 1388, 1390, 3, 130, 65, 0, 1389, 1388, 1, 0, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 91, 1, 0, 0, 0, 1391, 1393, 5, 283, 0, 0, 1392, 1394, 3, 132, 66, 0, 1393, 1392, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1397, 3, 118, 59, 0, 1396, 1398, 3, 112, 56, 0, 1397, 1396, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 5, 139, 0, 0, 1400, 1401, 3, 124, 62, 0, 1401, 93, 1, 0, 0, 0, 1402, 1404, 5, 143, 0, 0, 1403, 1405, 5, 287, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1411, 3, 652, 326, 0, 1407, 1408, 5, 397, 0, 0, 1408, 1410, 3, 652, 326, 0, 1409, 1407, 1, 0, 0, 0, 1410, 1413, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1414, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1414, 1415, 5, 341, 0, 0, 1415, 1417, 3, 124, 62, 0, 1416, 1418, 3, 136, 68, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 95, 1, 0, 0, 0, 1419, 1421, 5, 283, 0, 0, 1420, 1422, 3, 134, 67, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 5, 287, 0, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1431, 3, 652, 326, 0, 1427, 1428, 5, 397, 0, 0, 1428, 1430, 3, 652, 326, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1433, 1, 0, 0, 0, 1431, 1429, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1431, 1, 0, 0, 0, 1434, 1435, 5, 139, 0, 0, 1435, 1436, 3, 124, 62, 0, 1436, 97, 1, 0, 0, 0, 1437, 1438, 5, 308, 0, 0, 1438, 1439, 5, 287, 0, 0, 1439, 1440, 5, 143, 0, 0, 1440, 1441, 3, 126, 63, 0, 1441, 99, 1, 0, 0, 0, 1442, 1443, 5, 308, 0, 0, 1443, 1444, 5, 288, 0, 0, 1444, 101, 1, 0, 0, 0, 1445, 1446, 5, 308, 0, 0, 1446, 1447, 5, 62, 0, 0, 1447, 1448, 5, 288, 0, 0, 1448, 103, 1, 0, 0, 0, 1449, 1450, 5, 304, 0, 0, 1450, 1454, 5, 287, 0, 0, 1451, 1455, 5, 7, 0, 0, 1452, 1455, 5, 213, 0, 0, 1453, 1455, 3, 652, 326, 0, 1454, 1451, 1, 0, 0, 0, 1454, 1452, 1, 0, 0, 0, 1454, 1453, 1, 0, 0, 0, 1455, 105, 1, 0, 0, 0, 1456, 1457, 5, 308, 0, 0, 1457, 1459, 5, 143, 0, 0, 1458, 1460, 3, 126, 63, 0, 1459, 1458, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1463, 1, 0, 0, 0, 1461, 1462, 5, 224, 0, 0, 1462, 1464, 3, 110, 55, 0, 1463, 1461, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 107, 1, 0, 0, 0, 1465, 1466, 5, 308, 0, 0, 1466, 1467, 5, 252, 0, 0, 1467, 1468, 3, 652, 326, 0, 1468, 109, 1, 0, 0, 0, 1469, 1472, 5, 7, 0, 0, 1470, 1472, 3, 116, 58, 0, 1471, 1469, 1, 0, 0, 0, 1471, 1470, 1, 0, 0, 0, 1472, 111, 1, 0, 0, 0, 1473, 1474, 5, 224, 0, 0, 1474, 1475, 3, 114, 57, 0, 1475, 113, 1, 0, 0, 0, 1476, 1477, 3, 70, 35, 0, 1477, 1478, 3, 474, 237, 0, 1478, 1488, 1, 0, 0, 0, 1479, 1481, 5, 329, 0, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1488, 3, 638, 319, 0, 1483, 1484, 5, 366, 0, 0, 1484, 1488, 5, 426, 0, 0, 1485, 1486, 5, 303, 0, 0, 1486, 1488, 3, 652, 326, 0, 1487, 1476, 1, 0, 0, 0, 1487, 1480, 1, 0, 0, 0, 1487, 1483, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 115, 1, 0, 0, 0, 1489, 1490, 3, 70, 35, 0, 1490, 1491, 3, 474, 237, 0, 1491, 1510, 1, 0, 0, 0, 1492, 1494, 5, 329, 0, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1500, 3, 480, 240, 0, 1496, 1497, 5, 399, 0, 0, 1497, 1498, 3, 254, 127, 0, 1498, 1499, 5, 400, 0, 0, 1499, 1501, 1, 0, 0, 0, 1500, 1496, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1503, 1, 0, 0, 0, 1502, 1504, 3, 640, 320, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1510, 1, 0, 0, 0, 1505, 1506, 5, 366, 0, 0, 1506, 1510, 5, 426, 0, 0, 1507, 1508, 5, 303, 0, 0, 1508, 1510, 3, 652, 326, 0, 1509, 1489, 1, 0, 0, 0, 1509, 1493, 1, 0, 0, 0, 1509, 1505, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1510, 117, 1, 0, 0, 0, 1511, 1516, 3, 120, 60, 0, 1512, 1513, 5, 397, 0, 0, 1513, 1515, 3, 120, 60, 0, 1514, 1512, 1, 0, 0, 0, 1515, 1518, 1, 0, 0, 0, 1516, 1514, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 119, 1, 0, 0, 0, 1518, 1516, 1, 0, 0, 0, 1519, 1524, 3, 122, 61, 0, 1520, 1521, 5, 399, 0, 0, 1521, 1522, 3, 254, 127, 0, 1522, 1523, 5, 400, 0, 0, 1523, 1525, 1, 0, 0, 0, 1524, 1520, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 121, 1, 0, 0, 0, 1526, 1527, 7, 11, 0, 0, 1527, 123, 1, 0, 0, 0, 1528, 1533, 3, 126, 63, 0, 1529, 1530, 5, 397, 0, 0, 1530, 1532, 3, 126, 63, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1535, 1, 0, 0, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 125, 1, 0, 0, 0, 1535, 1533, 1, 0, 0, 0, 1536, 1537, 5, 369, 0, 0, 1537, 1543, 3, 656, 328, 0, 1538, 1539, 5, 144, 0, 0, 1539, 1543, 3, 656, 328, 0, 1540, 1541, 5, 287, 0, 0, 1541, 1543, 3, 652, 326, 0, 1542, 1536, 1, 0, 0, 0, 1542, 1538, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1543, 127, 1, 0, 0, 0, 1544, 1545, 5, 369, 0, 0, 1545, 1550, 3, 656, 328, 0, 1546, 1547, 5, 287, 0, 0, 1547, 1550, 3, 652, 326, 0, 1548, 1550, 3, 652, 326, 0, 1549, 1544, 1, 0, 0, 0, 1549, 1546, 1, 0, 0, 0, 1549, 1548, 1, 0, 0, 0, 1550, 129, 1, 0, 0, 0, 1551, 1552, 5, 387, 0, 0, 1552, 1553, 5, 143, 0, 0, 1553, 1554, 5, 227, 0, 0, 1554, 131, 1, 0, 0, 0, 1555, 1556, 5, 143, 0, 0, 1556, 1557, 5, 227, 0, 0, 1557, 1558, 5, 134, 0, 0, 1558, 133, 1, 0, 0, 0, 1559, 1560, 5, 5, 0, 0, 1560, 1561, 5, 227, 0, 0, 1561, 1562, 5, 134, 0, 0, 1562, 135, 1, 0, 0, 0, 1563, 1564, 5, 387, 0, 0, 1564, 1565, 5, 5, 0, 0, 1565, 1566, 5, 227, 0, 0, 1566, 137, 1, 0, 0, 0, 1567, 1569, 5, 212, 0, 0, 1568, 1570, 5, 276, 0, 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 5, 329, 0, 0, 1572, 1578, 3, 480, 240, 0, 1573, 1574, 7, 12, 0, 0, 1574, 1576, 5, 239, 0, 0, 1575, 1577, 3, 644, 322, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 1, 0, 0, 0, 1578, 1573, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 139, 1, 0, 0, 0, 1580, 1585, 3, 142, 71, 0, 1581, 1582, 5, 397, 0, 0, 1582, 1584, 3, 142, 71, 0, 1583, 1581, 1, 0, 0, 0, 1584, 1587, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 141, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1589, 3, 144, 72, 0, 1589, 1590, 5, 426, 0, 0, 1590, 143, 1, 0, 0, 0, 1591, 1592, 7, 13, 0, 0, 1592, 145, 1, 0, 0, 0, 1593, 1595, 5, 58, 0, 0, 1594, 1596, 5, 333, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 5, 141, 0, 0, 1598, 1599, 3, 568, 284, 0, 1599, 1600, 5, 17, 0, 0, 1600, 1603, 5, 426, 0, 0, 1601, 1602, 5, 370, 0, 0, 1602, 1604, 3, 140, 70, 0, 1603, 1601, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 147, 1, 0, 0, 0, 1605, 1607, 5, 101, 0, 0, 1606, 1608, 5, 333, 0, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1611, 5, 141, 0, 0, 1610, 1612, 3, 30, 15, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 3, 570, 285, 0, 1614, 149, 1, 0, 0, 0, 1615, 1616, 5, 271, 0, 0, 1616, 1617, 7, 14, 0, 0, 1617, 151, 1, 0, 0, 0, 1618, 1619, 5, 58, 0, 0, 1619, 1620, 5, 333, 0, 0, 1620, 1621, 5, 194, 0, 0, 1621, 1622, 5, 432, 0, 0, 1622, 1624, 5, 399, 0, 0, 1623, 1625, 3, 248, 124, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 5, 400, 0, 0, 1627, 1628, 3, 594, 297, 0, 1628, 153, 1, 0, 0, 0, 1629, 1630, 5, 101, 0, 0, 1630, 1631, 5, 333, 0, 0, 1631, 1633, 5, 194, 0, 0, 1632, 1634, 3, 30, 15, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1636, 5, 432, 0, 0, 1636, 155, 1, 0, 0, 0, 1637, 1638, 5, 58, 0, 0, 1638, 1639, 5, 155, 0, 0, 1639, 1640, 3, 652, 326, 0, 1640, 1641, 5, 224, 0, 0, 1641, 1642, 5, 329, 0, 0, 1642, 1643, 3, 480, 240, 0, 1643, 1644, 3, 266, 133, 0, 1644, 1645, 5, 17, 0, 0, 1645, 1649, 5, 426, 0, 0, 1646, 1647, 5, 387, 0, 0, 1647, 1648, 5, 84, 0, 0, 1648, 1650, 5, 265, 0, 0, 1649, 1646, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1653, 1, 0, 0, 0, 1651, 1652, 5, 150, 0, 0, 1652, 1654, 3, 226, 113, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1658, 1, 0, 0, 0, 1655, 1656, 5, 154, 0, 0, 1656, 1657, 5, 329, 0, 0, 1657, 1659, 3, 480, 240, 0, 1658, 1655, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1663, 1, 0, 0, 0, 1660, 1661, 5, 238, 0, 0, 1661, 1662, 5, 32, 0, 0, 1662, 1664, 3, 266, 133, 0, 1663, 1660, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1669, 1, 0, 0, 0, 1665, 1667, 3, 222, 111, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1670, 3, 246, 123, 0, 1669, 1666, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1672, 1, 0, 0, 0, 1671, 1673, 3, 426, 213, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1676, 3, 224, 112, 0, 1675, 1674, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 196, 98, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 157, 1, 0, 0, 0, 1680, 1681, 5, 101, 0, 0, 1681, 1683, 5, 155, 0, 0, 1682, 1684, 3, 30, 15, 0, 1683, 1682, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 3, 652, 326, 0, 1686, 1687, 5, 224, 0, 0, 1687, 1688, 3, 480, 240, 0, 1688, 159, 1, 0, 0, 0, 1689, 1692, 5, 58, 0, 0, 1690, 1691, 5, 228, 0, 0, 1691, 1693, 5, 278, 0, 0, 1692, 1690, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1696, 5, 378, 0, 0, 1695, 1697, 3, 32, 16, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1703, 3, 486, 243, 0, 1699, 1700, 5, 399, 0, 0, 1700, 1701, 3, 306, 153, 0, 1701, 1702, 5, 400, 0, 0, 1702, 1704, 1, 0, 0, 0, 1703, 1699, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1706, 1, 0, 0, 0, 1705, 1707, 3, 196, 98, 0, 1706, 1705, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1710, 3, 162, 81, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 224, 112, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 5, 17, 0, 0, 1715, 1716, 3, 382, 191, 0, 1716, 161, 1, 0, 0, 0, 1717, 1718, 5, 238, 0, 0, 1718, 1724, 5, 224, 0, 0, 1719, 1720, 5, 399, 0, 0, 1720, 1725, 3, 254, 127, 0, 1721, 1722, 5, 316, 0, 0, 1722, 1723, 5, 399, 0, 0, 1723, 1725, 3, 204, 102, 0, 1724, 1719, 1, 0, 0, 0, 1724, 1721, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 5, 400, 0, 0, 1727, 163, 1, 0, 0, 0, 1728, 1731, 3, 166, 83, 0, 1729, 1731, 3, 168, 84, 0, 1730, 1728, 1, 0, 0, 0, 1730, 1729, 1, 0, 0, 0, 1731, 165, 1, 0, 0, 0, 1732, 1733, 5, 42, 0, 0, 1733, 1734, 5, 224, 0, 0, 1734, 1735, 5, 399, 0, 0, 1735, 1736, 3, 254, 127, 0, 1736, 1737, 5, 400, 0, 0, 1737, 167, 1, 0, 0, 0, 1738, 1739, 3, 170, 85, 0, 1739, 1740, 3, 172, 86, 0, 1740, 169, 1, 0, 0, 0, 1741, 1742, 5, 98, 0, 0, 1742, 1743, 5, 224, 0, 0, 1743, 1744, 5, 399, 0, 0, 1744, 1745, 3, 254, 127, 0, 1745, 1746, 5, 400, 0, 0, 1746, 171, 1, 0, 0, 0, 1747, 1748, 5, 315, 0, 0, 1748, 1749, 5, 224, 0, 0, 1749, 1750, 5, 399, 0, 0, 1750, 1751, 3, 254, 127, 0, 1751, 1752, 5, 400, 0, 0, 1752, 173, 1, 0, 0, 0, 1753, 1754, 5, 101, 0, 0, 1754, 1756, 5, 378, 0, 0, 1755, 1757, 3, 30, 15, 0, 1756, 1755, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 3, 484, 242, 0, 1759, 175, 1, 0, 0, 0, 1760, 1761, 5, 58, 0, 0, 1761, 1762, 5, 202, 0, 0, 1762, 1764, 5, 378, 0, 0, 1763, 1765, 3, 32, 16, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1768, 3, 486, 243, 0, 1767, 1769, 3, 38, 19, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 1, 0, 0, 0, 1770, 1772, 3, 196, 98, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1775, 3, 162, 81, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 164, 82, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 222, 111, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 246, 123, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 426, 213, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 224, 112, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 5, 17, 0, 0, 1792, 1793, 3, 382, 191, 0, 1793, 177, 1, 0, 0, 0, 1794, 1795, 5, 101, 0, 0, 1795, 1796, 5, 202, 0, 0, 1796, 1798, 5, 378, 0, 0, 1797, 1799, 3, 30, 15, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 3, 484, 242, 0, 1801, 179, 1, 0, 0, 0, 1802, 1803, 5, 58, 0, 0, 1803, 1804, 5, 293, 0, 0, 1804, 1805, 5, 258, 0, 0, 1805, 1806, 3, 652, 326, 0, 1806, 1808, 3, 188, 94, 0, 1807, 1809, 3, 190, 95, 0, 1808, 1807, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1812, 3, 270, 135, 0, 1811, 1810, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 3, 192, 96, 0, 1814, 181, 1, 0, 0, 0, 1815, 1816, 5, 101, 0, 0, 1816, 1817, 5, 293, 0, 0, 1817, 1818, 5, 258, 0, 0, 1818, 1819, 3, 652, 326, 0, 1819, 183, 1, 0, 0, 0, 1820, 1821, 5, 9, 0, 0, 1821, 1822, 5, 293, 0, 0, 1822, 1823, 5, 258, 0, 0, 1823, 1824, 3, 652, 326, 0, 1824, 1825, 3, 186, 93, 0, 1825, 185, 1, 0, 0, 0, 1826, 1832, 3, 188, 94, 0, 1827, 1832, 3, 190, 95, 0, 1828, 1832, 3, 270, 135, 0, 1829, 1832, 3, 192, 96, 0, 1830, 1832, 5, 115, 0, 0, 1831, 1826, 1, 0, 0, 0, 1831, 1827, 1, 0, 0, 0, 1831, 1828, 1, 0, 0, 0, 1831, 1829, 1, 0, 0, 0, 1831, 1830, 1, 0, 0, 0, 1832, 187, 1, 0, 0, 0, 1833, 1834, 5, 59, 0, 0, 1834, 1849, 5, 426, 0, 0, 1835, 1837, 5, 111, 0, 0, 1836, 1838, 5, 431, 0, 0, 1837, 1836, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1846, 3, 592, 296, 0, 1840, 1844, 5, 20, 0, 0, 1841, 1842, 5, 223, 0, 0, 1842, 1844, 5, 32, 0, 0, 1843, 1840, 1, 0, 0, 0, 1843, 1841, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1847, 5, 426, 0, 0, 1846, 1843, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1849, 1, 0, 0, 0, 1848, 1833, 1, 0, 0, 0, 1848, 1835, 1, 0, 0, 0, 1849, 189, 1, 0, 0, 0, 1850, 1851, 5, 116, 0, 0, 1851, 1852, 5, 17, 0, 0, 1852, 1853, 5, 426, 0, 0, 1853, 191, 1, 0, 0, 0, 1854, 1856, 5, 85, 0, 0, 1855, 1854, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1858, 5, 17, 0, 0, 1858, 1859, 3, 2, 1, 0, 1859, 193, 1, 0, 0, 0, 1860, 1863, 3, 652, 326, 0, 1861, 1863, 5, 426, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1861, 1, 0, 0, 0, 1863, 195, 1, 0, 0, 0, 1864, 1865, 5, 47, 0, 0, 1865, 1866, 5, 426, 0, 0, 1866, 197, 1, 0, 0, 0, 1867, 1868, 5, 183, 0, 0, 1868, 1869, 5, 431, 0, 0, 1869, 199, 1, 0, 0, 0, 1870, 1871, 5, 238, 0, 0, 1871, 1880, 5, 32, 0, 0, 1872, 1875, 5, 399, 0, 0, 1873, 1876, 3, 202, 101, 0, 1874, 1876, 3, 254, 127, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1874, 1, 0, 0, 0, 1876, 1881, 1, 0, 0, 0, 1877, 1878, 5, 316, 0, 0, 1878, 1879, 5, 399, 0, 0, 1879, 1881, 3, 204, 102, 0, 1880, 1872, 1, 0, 0, 0, 1880, 1877, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1883, 5, 400, 0, 0, 1883, 201, 1, 0, 0, 0, 1884, 1889, 3, 318, 159, 0, 1885, 1886, 5, 397, 0, 0, 1886, 1888, 3, 318, 159, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1891, 1, 0, 0, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 203, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1892, 1897, 3, 206, 103, 0, 1893, 1894, 5, 397, 0, 0, 1894, 1896, 3, 206, 103, 0, 1895, 1893, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 205, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1919, 3, 256, 128, 0, 1901, 1906, 3, 680, 340, 0, 1902, 1906, 3, 682, 341, 0, 1903, 1906, 3, 686, 343, 0, 1904, 1906, 3, 688, 344, 0, 1905, 1901, 1, 0, 0, 0, 1905, 1902, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 5, 399, 0, 0, 1908, 1909, 3, 256, 128, 0, 1909, 1910, 5, 400, 0, 0, 1910, 1919, 1, 0, 0, 0, 1911, 1912, 7, 15, 0, 0, 1912, 1913, 5, 399, 0, 0, 1913, 1914, 5, 431, 0, 0, 1914, 1915, 5, 397, 0, 0, 1915, 1916, 3, 256, 128, 0, 1916, 1917, 5, 400, 0, 0, 1917, 1919, 1, 0, 0, 0, 1918, 1900, 1, 0, 0, 0, 1918, 1905, 1, 0, 0, 0, 1918, 1911, 1, 0, 0, 0, 1919, 207, 1, 0, 0, 0, 1920, 1921, 5, 42, 0, 0, 1921, 1922, 5, 32, 0, 0, 1922, 1923, 5, 399, 0, 0, 1923, 1924, 3, 254, 127, 0, 1924, 1931, 5, 400, 0, 0, 1925, 1926, 5, 315, 0, 0, 1926, 1927, 5, 32, 0, 0, 1927, 1928, 5, 399, 0, 0, 1928, 1929, 3, 264, 132, 0, 1929, 1930, 5, 400, 0, 0, 1930, 1932, 1, 0, 0, 0, 1931, 1925, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 5, 166, 0, 0, 1934, 1935, 5, 431, 0, 0, 1935, 1936, 5, 31, 0, 0, 1936, 209, 1, 0, 0, 0, 1937, 1938, 5, 310, 0, 0, 1938, 1939, 5, 32, 0, 0, 1939, 1940, 5, 399, 0, 0, 1940, 1941, 3, 254, 127, 0, 1941, 1942, 5, 400, 0, 0, 1942, 1943, 5, 224, 0, 0, 1943, 1944, 5, 399, 0, 0, 1944, 1945, 3, 292, 146, 0, 1945, 1947, 5, 400, 0, 0, 1946, 1948, 3, 40, 20, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 211, 1, 0, 0, 0, 1949, 1952, 3, 218, 109, 0, 1950, 1952, 3, 220, 110, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1950, 1, 0, 0, 0, 1952, 213, 1, 0, 0, 0, 1953, 1954, 5, 266, 0, 0, 1954, 1955, 5, 426, 0, 0, 1955, 215, 1, 0, 0, 0, 1956, 1957, 5, 267, 0, 0, 1957, 1958, 5, 426, 0, 0, 1958, 217, 1, 0, 0, 0, 1959, 1960, 5, 291, 0, 0, 1960, 1961, 5, 137, 0, 0, 1961, 1962, 5, 301, 0, 0, 1962, 1966, 5, 426, 0, 0, 1963, 1964, 5, 387, 0, 0, 1964, 1965, 5, 302, 0, 0, 1965, 1967, 3, 226, 113, 0, 1966, 1963, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 219, 1, 0, 0, 0, 1968, 1969, 5, 291, 0, 0, 1969, 1970, 5, 137, 0, 0, 1970, 1972, 5, 87, 0, 0, 1971, 1973, 3, 236, 118, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1975, 1, 0, 0, 0, 1974, 1976, 3, 238, 119, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1979, 3, 240, 120, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 242, 121, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 244, 122, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 221, 1, 0, 0, 0, 1986, 1989, 3, 220, 110, 0, 1987, 1989, 3, 218, 109, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1987, 1, 0, 0, 0, 1989, 223, 1, 0, 0, 0, 1990, 1991, 5, 332, 0, 0, 1991, 1992, 3, 226, 113, 0, 1992, 225, 1, 0, 0, 0, 1993, 1994, 5, 399, 0, 0, 1994, 1995, 3, 228, 114, 0, 1995, 1996, 5, 400, 0, 0, 1996, 227, 1, 0, 0, 0, 1997, 2007, 3, 232, 116, 0, 1998, 2003, 5, 426, 0, 0, 1999, 2000, 5, 397, 0, 0, 2000, 2002, 5, 426, 0, 0, 2001, 1999, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2007, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2006, 1997, 1, 0, 0, 0, 2006, 1998, 1, 0, 0, 0, 2007, 229, 1, 0, 0, 0, 2008, 2009, 5, 399, 0, 0, 2009, 2010, 3, 232, 116, 0, 2010, 2011, 5, 400, 0, 0, 2011, 231, 1, 0, 0, 0, 2012, 2017, 3, 234, 117, 0, 2013, 2014, 5, 397, 0, 0, 2014, 2016, 3, 234, 117, 0, 2015, 2013, 1, 0, 0, 0, 2016, 2019, 1, 0, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 233, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2020, 2021, 5, 426, 0, 0, 2021, 2022, 5, 405, 0, 0, 2022, 2023, 5, 426, 0, 0, 2023, 235, 1, 0, 0, 0, 2024, 2025, 5, 127, 0, 0, 2025, 2026, 5, 334, 0, 0, 2026, 2027, 5, 32, 0, 0, 2027, 2031, 5, 426, 0, 0, 2028, 2029, 5, 110, 0, 0, 2029, 2030, 5, 32, 0, 0, 2030, 2032, 5, 426, 0, 0, 2031, 2028, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 237, 1, 0, 0, 0, 2033, 2034, 5, 44, 0, 0, 2034, 2035, 5, 169, 0, 0, 2035, 2036, 5, 334, 0, 0, 2036, 2037, 5, 32, 0, 0, 2037, 2038, 5, 426, 0, 0, 2038, 239, 1, 0, 0, 0, 2039, 2040, 5, 198, 0, 0, 2040, 2041, 5, 174, 0, 0, 2041, 2042, 5, 334, 0, 0, 2042, 2043, 5, 32, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 241, 1, 0, 0, 0, 2045, 2046, 5, 186, 0, 0, 2046, 2047, 5, 334, 0, 0, 2047, 2048, 5, 32, 0, 0, 2048, 2049, 5, 426, 0, 0, 2049, 243, 1, 0, 0, 0, 2050, 2051, 5, 219, 0, 0, 2051, 2052, 5, 85, 0, 0, 2052, 2053, 5, 17, 0, 0, 2053, 2054, 5, 426, 0, 0, 2054, 245, 1, 0, 0, 0, 2055, 2056, 5, 321, 0, 0, 2056, 2057, 5, 17, 0, 0, 2057, 2058, 5, 160, 0, 0, 2058, 2059, 5, 426, 0, 0, 2059, 2060, 5, 233, 0, 0, 2060, 2065, 5, 426, 0, 0, 2061, 2062, 5, 159, 0, 0, 2062, 2063, 5, 426, 0, 0, 2063, 2064, 5, 232, 0, 0, 2064, 2066, 5, 426, 0, 0, 2065, 2061, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2097, 1, 0, 0, 0, 2067, 2068, 5, 321, 0, 0, 2068, 2069, 5, 32, 0, 0, 2069, 2073, 5, 426, 0, 0, 2070, 2071, 5, 387, 0, 0, 2071, 2072, 5, 302, 0, 0, 2072, 2074, 3, 226, 113, 0, 2073, 2070, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2078, 1, 0, 0, 0, 2075, 2076, 5, 321, 0, 0, 2076, 2077, 5, 17, 0, 0, 2077, 2079, 3, 652, 326, 0, 2078, 2075, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2097, 1, 0, 0, 0, 2080, 2081, 5, 321, 0, 0, 2081, 2082, 5, 32, 0, 0, 2082, 2086, 3, 652, 326, 0, 2083, 2084, 5, 387, 0, 0, 2084, 2085, 5, 302, 0, 0, 2085, 2087, 3, 226, 113, 0, 2086, 2083, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2091, 1, 0, 0, 0, 2088, 2089, 5, 321, 0, 0, 2089, 2090, 5, 17, 0, 0, 2090, 2092, 3, 652, 326, 0, 2091, 2088, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2097, 1, 0, 0, 0, 2093, 2094, 5, 321, 0, 0, 2094, 2095, 5, 17, 0, 0, 2095, 2097, 3, 652, 326, 0, 2096, 2055, 1, 0, 0, 0, 2096, 2067, 1, 0, 0, 0, 2096, 2080, 1, 0, 0, 0, 2096, 2093, 1, 0, 0, 0, 2097, 247, 1, 0, 0, 0, 2098, 2103, 3, 312, 156, 0, 2099, 2100, 5, 397, 0, 0, 2100, 2102, 3, 312, 156, 0, 2101, 2099, 1, 0, 0, 0, 2102, 2105, 1, 0, 0, 0, 2103, 2101, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 249, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2106, 2111, 3, 314, 157, 0, 2107, 2108, 5, 397, 0, 0, 2108, 2110, 3, 314, 157, 0, 2109, 2107, 1, 0, 0, 0, 2110, 2113, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 251, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2114, 2119, 3, 342, 171, 0, 2115, 2116, 5, 397, 0, 0, 2116, 2118, 3, 342, 171, 0, 2117, 2115, 1, 0, 0, 0, 2118, 2121, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 253, 1, 0, 0, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2127, 3, 256, 128, 0, 2123, 2124, 5, 397, 0, 0, 2124, 2126, 3, 256, 128, 0, 2125, 2123, 1, 0, 0, 0, 2126, 2129, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 255, 1, 0, 0, 0, 2129, 2127, 1, 0, 0, 0, 2130, 2133, 3, 696, 348, 0, 2131, 2133, 4, 128, 0, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2131, 1, 0, 0, 0, 2133, 257, 1, 0, 0, 0, 2134, 2135, 3, 696, 348, 0, 2135, 259, 1, 0, 0, 0, 2136, 2137, 3, 652, 326, 0, 2137, 261, 1, 0, 0, 0, 2138, 2148, 3, 256, 128, 0, 2139, 2144, 5, 395, 0, 0, 2140, 2145, 5, 104, 0, 0, 2141, 2145, 5, 175, 0, 0, 2142, 2145, 5, 375, 0, 0, 2143, 2145, 3, 652, 326, 0, 2144, 2140, 1, 0, 0, 0, 2144, 2141, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2144, 2143, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2139, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 263, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2156, 3, 304, 152, 0, 2152, 2153, 5, 397, 0, 0, 2153, 2155, 3, 304, 152, 0, 2154, 2152, 1, 0, 0, 0, 2155, 2158, 1, 0, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 265, 1, 0, 0, 0, 2158, 2156, 1, 0, 0, 0, 2159, 2160, 5, 399, 0, 0, 2160, 2161, 3, 254, 127, 0, 2161, 2162, 5, 400, 0, 0, 2162, 267, 1, 0, 0, 0, 2163, 2165, 3, 270, 135, 0, 2164, 2166, 3, 272, 136, 0, 2165, 2164, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2169, 1, 0, 0, 0, 2167, 2169, 3, 274, 137, 0, 2168, 2163, 1, 0, 0, 0, 2168, 2167, 1, 0, 0, 0, 2169, 269, 1, 0, 0, 0, 2170, 2173, 3, 676, 338, 0, 2171, 2173, 3, 678, 339, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2171, 1, 0, 0, 0, 2173, 271, 1, 0, 0, 0, 2174, 2175, 7, 16, 0, 0, 2175, 273, 1, 0, 0, 0, 2176, 2180, 5, 109, 0, 0, 2177, 2178, 5, 216, 0, 0, 2178, 2180, 5, 109, 0, 0, 2179, 2176, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2180, 275, 1, 0, 0, 0, 2181, 2182, 7, 17, 0, 0, 2182, 277, 1, 0, 0, 0, 2183, 2184, 5, 55, 0, 0, 2184, 2186, 3, 652, 326, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2189, 3, 282, 141, 0, 2188, 2190, 3, 338, 169, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 279, 1, 0, 0, 0, 2191, 2192, 5, 55, 0, 0, 2192, 2193, 3, 652, 326, 0, 2193, 2195, 3, 282, 141, 0, 2194, 2196, 3, 340, 170, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 281, 1, 0, 0, 0, 2197, 2200, 3, 284, 142, 0, 2198, 2200, 3, 286, 143, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2198, 1, 0, 0, 0, 2200, 283, 1, 0, 0, 0, 2201, 2202, 3, 336, 168, 0, 2202, 2203, 3, 266, 133, 0, 2203, 285, 1, 0, 0, 0, 2204, 2205, 5, 40, 0, 0, 2205, 2206, 5, 399, 0, 0, 2206, 2207, 3, 594, 297, 0, 2207, 2208, 5, 400, 0, 0, 2208, 287, 1, 0, 0, 0, 2209, 2210, 5, 55, 0, 0, 2210, 2212, 3, 652, 326, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 2214, 5, 136, 0, 0, 2214, 2215, 5, 173, 0, 0, 2215, 2216, 3, 266, 133, 0, 2216, 2217, 5, 269, 0, 0, 2217, 2218, 3, 480, 240, 0, 2218, 2220, 3, 266, 133, 0, 2219, 2221, 3, 338, 169, 0, 2220, 2219, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 289, 1, 0, 0, 0, 2222, 2223, 5, 55, 0, 0, 2223, 2224, 3, 652, 326, 0, 2224, 2225, 5, 136, 0, 0, 2225, 2226, 5, 173, 0, 0, 2226, 2227, 3, 266, 133, 0, 2227, 2228, 5, 269, 0, 0, 2228, 2229, 3, 480, 240, 0, 2229, 2231, 3, 266, 133, 0, 2230, 2232, 3, 340, 170, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 291, 1, 0, 0, 0, 2233, 2236, 3, 298, 149, 0, 2234, 2236, 3, 294, 147, 0, 2235, 2233, 1, 0, 0, 0, 2235, 2234, 1, 0, 0, 0, 2236, 293, 1, 0, 0, 0, 2237, 2242, 3, 296, 148, 0, 2238, 2239, 5, 397, 0, 0, 2239, 2241, 3, 296, 148, 0, 2240, 2238, 1, 0, 0, 0, 2241, 2244, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 295, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2246, 5, 399, 0, 0, 2246, 2247, 3, 298, 149, 0, 2247, 2248, 5, 400, 0, 0, 2248, 297, 1, 0, 0, 0, 2249, 2254, 3, 586, 293, 0, 2250, 2251, 5, 397, 0, 0, 2251, 2253, 3, 586, 293, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2256, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 299, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2258, 7, 18, 0, 0, 2258, 301, 1, 0, 0, 0, 2259, 2260, 5, 220, 0, 0, 2260, 2261, 7, 19, 0, 0, 2261, 303, 1, 0, 0, 0, 2262, 2264, 3, 256, 128, 0, 2263, 2265, 3, 300, 150, 0, 2264, 2263, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2267, 1, 0, 0, 0, 2266, 2268, 3, 302, 151, 0, 2267, 2266, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 305, 1, 0, 0, 0, 2269, 2274, 3, 308, 154, 0, 2270, 2271, 5, 397, 0, 0, 2271, 2273, 3, 308, 154, 0, 2272, 2270, 1, 0, 0, 0, 2273, 2276, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 307, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2277, 2280, 3, 260, 130, 0, 2278, 2279, 5, 47, 0, 0, 2279, 2281, 5, 426, 0, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 309, 1, 0, 0, 0, 2282, 2285, 3, 256, 128, 0, 2283, 2285, 3, 594, 297, 0, 2284, 2282, 1, 0, 0, 0, 2284, 2283, 1, 0, 0, 0, 2285, 2287, 1, 0, 0, 0, 2286, 2288, 3, 300, 150, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2290, 1, 0, 0, 0, 2289, 2291, 3, 302, 151, 0, 2290, 2289, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 311, 1, 0, 0, 0, 2292, 2293, 3, 260, 130, 0, 2293, 2296, 3, 344, 172, 0, 2294, 2295, 5, 47, 0, 0, 2295, 2297, 5, 426, 0, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 313, 1, 0, 0, 0, 2298, 2301, 3, 316, 158, 0, 2299, 2301, 3, 318, 159, 0, 2300, 2298, 1, 0, 0, 0, 2300, 2299, 1, 0, 0, 0, 2301, 315, 1, 0, 0, 0, 2302, 2305, 3, 288, 144, 0, 2303, 2305, 3, 278, 139, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2303, 1, 0, 0, 0, 2305, 317, 1, 0, 0, 0, 2306, 2307, 3, 260, 130, 0, 2307, 2309, 3, 344, 172, 0, 2308, 2310, 3, 320, 160, 0, 2309, 2308, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2312, 5, 47, 0, 0, 2312, 2314, 5, 426, 0, 0, 2313, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 319, 1, 0, 0, 0, 2315, 2318, 3, 322, 161, 0, 2316, 2318, 3, 324, 162, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2316, 1, 0, 0, 0, 2318, 321, 1, 0, 0, 0, 2319, 2320, 5, 55, 0, 0, 2320, 2322, 3, 652, 326, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2324, 5, 269, 0, 0, 2324, 2325, 3, 480, 240, 0, 2325, 2326, 5, 399, 0, 0, 2326, 2327, 3, 256, 128, 0, 2327, 2329, 5, 400, 0, 0, 2328, 2330, 3, 338, 169, 0, 2329, 2328, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 323, 1, 0, 0, 0, 2331, 2332, 5, 55, 0, 0, 2332, 2334, 3, 652, 326, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2337, 3, 332, 166, 0, 2336, 2338, 3, 338, 169, 0, 2337, 2336, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 325, 1, 0, 0, 0, 2339, 2342, 3, 328, 164, 0, 2340, 2342, 3, 330, 165, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2340, 1, 0, 0, 0, 2342, 327, 1, 0, 0, 0, 2343, 2344, 5, 55, 0, 0, 2344, 2346, 3, 652, 326, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 5, 269, 0, 0, 2348, 2349, 3, 480, 240, 0, 2349, 2350, 5, 399, 0, 0, 2350, 2351, 3, 256, 128, 0, 2351, 2353, 5, 400, 0, 0, 2352, 2354, 3, 340, 170, 0, 2353, 2352, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 329, 1, 0, 0, 0, 2355, 2356, 5, 55, 0, 0, 2356, 2358, 3, 652, 326, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2361, 3, 332, 166, 0, 2360, 2362, 3, 340, 170, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 331, 1, 0, 0, 0, 2363, 2364, 5, 216, 0, 0, 2364, 2370, 5, 219, 0, 0, 2365, 2366, 5, 83, 0, 0, 2366, 2370, 3, 334, 167, 0, 2367, 2370, 3, 286, 143, 0, 2368, 2370, 3, 336, 168, 0, 2369, 2363, 1, 0, 0, 0, 2369, 2365, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2368, 1, 0, 0, 0, 2370, 333, 1, 0, 0, 0, 2371, 2375, 3, 586, 293, 0, 2372, 2375, 3, 564, 282, 0, 2373, 2375, 3, 574, 287, 0, 2374, 2371, 1, 0, 0, 0, 2374, 2372, 1, 0, 0, 0, 2374, 2373, 1, 0, 0, 0, 2375, 335, 1, 0, 0, 0, 2376, 2377, 5, 251, 0, 0, 2377, 2380, 5, 173, 0, 0, 2378, 2380, 5, 358, 0, 0, 2379, 2376, 1, 0, 0, 0, 2379, 2378, 1, 0, 0, 0, 2380, 337, 1, 0, 0, 0, 2381, 2383, 3, 268, 134, 0, 2382, 2384, 3, 276, 138, 0, 2383, 2382, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 339, 1, 0, 0, 0, 2385, 2387, 3, 268, 134, 0, 2386, 2388, 3, 276, 138, 0, 2387, 2386, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 341, 1, 0, 0, 0, 2389, 2390, 3, 260, 130, 0, 2390, 2391, 5, 396, 0, 0, 2391, 2394, 3, 344, 172, 0, 2392, 2393, 5, 47, 0, 0, 2393, 2395, 5, 426, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 343, 1, 0, 0, 0, 2396, 2397, 3, 348, 174, 0, 2397, 345, 1, 0, 0, 0, 2398, 2403, 3, 344, 172, 0, 2399, 2400, 5, 397, 0, 0, 2400, 2402, 3, 344, 172, 0, 2401, 2399, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 347, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2412, 3, 350, 175, 0, 2407, 2412, 3, 352, 176, 0, 2408, 2412, 3, 354, 177, 0, 2409, 2412, 3, 356, 178, 0, 2410, 2412, 3, 358, 179, 0, 2411, 2406, 1, 0, 0, 0, 2411, 2407, 1, 0, 0, 0, 2411, 2408, 1, 0, 0, 0, 2411, 2409, 1, 0, 0, 0, 2411, 2410, 1, 0, 0, 0, 2412, 349, 1, 0, 0, 0, 2413, 2451, 5, 340, 0, 0, 2414, 2451, 5, 311, 0, 0, 2415, 2451, 5, 162, 0, 0, 2416, 2451, 5, 163, 0, 0, 2417, 2451, 5, 26, 0, 0, 2418, 2451, 5, 28, 0, 0, 2419, 2451, 5, 131, 0, 0, 2420, 2451, 5, 264, 0, 0, 2421, 2423, 5, 100, 0, 0, 2422, 2424, 5, 248, 0, 0, 2423, 2422, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2451, 1, 0, 0, 0, 2425, 2451, 5, 71, 0, 0, 2426, 2451, 5, 72, 0, 0, 2427, 2451, 5, 337, 0, 0, 2428, 2451, 5, 338, 0, 0, 2429, 2430, 5, 337, 0, 0, 2430, 2431, 5, 387, 0, 0, 2431, 2432, 5, 188, 0, 0, 2432, 2433, 5, 336, 0, 0, 2433, 2451, 5, 394, 0, 0, 2434, 2451, 5, 323, 0, 0, 2435, 2451, 5, 27, 0, 0, 2436, 2444, 3, 694, 347, 0, 2437, 2438, 5, 399, 0, 0, 2438, 2441, 5, 431, 0, 0, 2439, 2440, 5, 397, 0, 0, 2440, 2442, 5, 431, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2445, 5, 400, 0, 0, 2444, 2437, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2451, 1, 0, 0, 0, 2446, 2447, 7, 20, 0, 0, 2447, 2448, 5, 399, 0, 0, 2448, 2449, 5, 431, 0, 0, 2449, 2451, 5, 400, 0, 0, 2450, 2413, 1, 0, 0, 0, 2450, 2414, 1, 0, 0, 0, 2450, 2415, 1, 0, 0, 0, 2450, 2416, 1, 0, 0, 0, 2450, 2417, 1, 0, 0, 0, 2450, 2418, 1, 0, 0, 0, 2450, 2419, 1, 0, 0, 0, 2450, 2420, 1, 0, 0, 0, 2450, 2421, 1, 0, 0, 0, 2450, 2425, 1, 0, 0, 0, 2450, 2426, 1, 0, 0, 0, 2450, 2427, 1, 0, 0, 0, 2450, 2428, 1, 0, 0, 0, 2450, 2429, 1, 0, 0, 0, 2450, 2434, 1, 0, 0, 0, 2450, 2435, 1, 0, 0, 0, 2450, 2436, 1, 0, 0, 0, 2450, 2446, 1, 0, 0, 0, 2451, 351, 1, 0, 0, 0, 2452, 2453, 5, 16, 0, 0, 2453, 2454, 5, 409, 0, 0, 2454, 2455, 3, 348, 174, 0, 2455, 2456, 5, 411, 0, 0, 2456, 353, 1, 0, 0, 0, 2457, 2458, 5, 324, 0, 0, 2458, 2459, 5, 409, 0, 0, 2459, 2460, 3, 252, 126, 0, 2460, 2461, 5, 411, 0, 0, 2461, 355, 1, 0, 0, 0, 2462, 2463, 5, 198, 0, 0, 2463, 2464, 5, 409, 0, 0, 2464, 2465, 3, 350, 175, 0, 2465, 2466, 5, 397, 0, 0, 2466, 2467, 3, 348, 174, 0, 2467, 2468, 5, 411, 0, 0, 2468, 357, 1, 0, 0, 0, 2469, 2470, 5, 357, 0, 0, 2470, 2471, 5, 409, 0, 0, 2471, 2472, 3, 346, 173, 0, 2472, 2473, 5, 411, 0, 0, 2473, 359, 1, 0, 0, 0, 2474, 2476, 7, 21, 0, 0, 2475, 2477, 7, 22, 0, 0, 2476, 2475, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 361, 1, 0, 0, 0, 2478, 2480, 3, 366, 183, 0, 2479, 2478, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2482, 3, 364, 182, 0, 2482, 363, 1, 0, 0, 0, 2483, 2486, 3, 370, 185, 0, 2484, 2486, 3, 374, 187, 0, 2485, 2483, 1, 0, 0, 0, 2485, 2484, 1, 0, 0, 0, 2486, 365, 1, 0, 0, 0, 2487, 2488, 5, 387, 0, 0, 2488, 2493, 3, 368, 184, 0, 2489, 2490, 5, 397, 0, 0, 2490, 2492, 3, 368, 184, 0, 2491, 2489, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 367, 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2501, 3, 652, 326, 0, 2497, 2498, 5, 399, 0, 0, 2498, 2499, 3, 254, 127, 0, 2499, 2500, 5, 400, 0, 0, 2500, 2502, 1, 0, 0, 0, 2501, 2497, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2504, 5, 17, 0, 0, 2504, 2505, 5, 399, 0, 0, 2505, 2506, 3, 362, 181, 0, 2506, 2507, 5, 400, 0, 0, 2507, 369, 1, 0, 0, 0, 2508, 2514, 3, 372, 186, 0, 2509, 2510, 3, 360, 180, 0, 2510, 2511, 3, 372, 186, 0, 2511, 2513, 1, 0, 0, 0, 2512, 2509, 1, 0, 0, 0, 2513, 2516, 1, 0, 0, 0, 2514, 2512, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 371, 1, 0, 0, 0, 2516, 2514, 1, 0, 0, 0, 2517, 2518, 3, 450, 225, 0, 2518, 2519, 3, 384, 192, 0, 2519, 2521, 3, 506, 253, 0, 2520, 2522, 3, 464, 232, 0, 2521, 2520, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2524, 1, 0, 0, 0, 2523, 2525, 3, 498, 249, 0, 2524, 2523, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2527, 1, 0, 0, 0, 2526, 2528, 3, 532, 266, 0, 2527, 2526, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2530, 1, 0, 0, 0, 2529, 2531, 3, 540, 270, 0, 2530, 2529, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2534, 3, 524, 262, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 542, 271, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 554, 277, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 558, 279, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 560, 280, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 562, 281, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 388, 194, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2589, 1, 0, 0, 0, 2553, 2554, 3, 450, 225, 0, 2554, 2556, 3, 506, 253, 0, 2555, 2557, 3, 464, 232, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2559, 1, 0, 0, 0, 2558, 2560, 3, 498, 249, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2562, 1, 0, 0, 0, 2561, 2563, 3, 532, 266, 0, 2562, 2561, 1, 0, 0, 0, 2562, 2563, 1, 0, 0, 0, 2563, 2565, 1, 0, 0, 0, 2564, 2566, 3, 540, 270, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2569, 3, 524, 262, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 542, 271, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 554, 277, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 558, 279, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 560, 280, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 562, 281, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 388, 194, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2517, 1, 0, 0, 0, 2588, 2553, 1, 0, 0, 0, 2589, 373, 1, 0, 0, 0, 2590, 2591, 3, 384, 192, 0, 2591, 2592, 3, 378, 189, 0, 2592, 2595, 1, 0, 0, 0, 2593, 2595, 3, 378, 189, 0, 2594, 2590, 1, 0, 0, 0, 2594, 2593, 1, 0, 0, 0, 2595, 375, 1, 0, 0, 0, 2596, 2598, 3, 506, 253, 0, 2597, 2599, 3, 450, 225, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2602, 3, 498, 249, 0, 2601, 2600, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2604, 1, 0, 0, 0, 2603, 2605, 3, 532, 266, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2607, 1, 0, 0, 0, 2606, 2608, 3, 540, 270, 0, 2607, 2606, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2610, 1, 0, 0, 0, 2609, 2611, 3, 524, 262, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 542, 271, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2621, 1, 0, 0, 0, 2615, 2616, 5, 399, 0, 0, 2616, 2617, 3, 378, 189, 0, 2617, 2618, 5, 400, 0, 0, 2618, 2621, 1, 0, 0, 0, 2619, 2621, 3, 500, 250, 0, 2620, 2596, 1, 0, 0, 0, 2620, 2615, 1, 0, 0, 0, 2620, 2619, 1, 0, 0, 0, 2621, 377, 1, 0, 0, 0, 2622, 2624, 3, 376, 188, 0, 2623, 2625, 3, 380, 190, 0, 2624, 2623, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2627, 1, 0, 0, 0, 2626, 2628, 3, 554, 277, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2630, 1, 0, 0, 0, 2629, 2631, 3, 558, 279, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2633, 1, 0, 0, 0, 2632, 2634, 3, 560, 280, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2637, 3, 562, 281, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 388, 194, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 379, 1, 0, 0, 0, 2641, 2642, 3, 360, 180, 0, 2642, 2643, 3, 376, 188, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2641, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2644, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 381, 1, 0, 0, 0, 2648, 2650, 3, 366, 183, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 3, 378, 189, 0, 2652, 383, 1, 0, 0, 0, 2653, 2670, 5, 161, 0, 0, 2654, 2655, 5, 235, 0, 0, 2655, 2657, 3, 386, 193, 0, 2656, 2658, 3, 32, 16, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2671, 1, 0, 0, 0, 2659, 2661, 5, 166, 0, 0, 2660, 2662, 5, 329, 0, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2668, 3, 638, 319, 0, 2664, 2665, 5, 399, 0, 0, 2665, 2666, 3, 254, 127, 0, 2666, 2667, 5, 400, 0, 0, 2667, 2669, 1, 0, 0, 0, 2668, 2664, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 1, 0, 0, 0, 2670, 2654, 1, 0, 0, 0, 2670, 2659, 1, 0, 0, 0, 2671, 385, 1, 0, 0, 0, 2672, 2674, 5, 188, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 5, 93, 0, 0, 2676, 2678, 5, 426, 0, 0, 2677, 2679, 3, 222, 111, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2682, 3, 246, 123, 0, 2681, 2680, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2686, 1, 0, 0, 0, 2683, 2684, 5, 329, 0, 0, 2684, 2686, 3, 638, 319, 0, 2685, 2673, 1, 0, 0, 0, 2685, 2683, 1, 0, 0, 0, 2686, 387, 1, 0, 0, 0, 2687, 2696, 5, 185, 0, 0, 2688, 2689, 5, 431, 0, 0, 2689, 2691, 5, 397, 0, 0, 2690, 2688, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2697, 5, 431, 0, 0, 2693, 2694, 5, 431, 0, 0, 2694, 2695, 5, 223, 0, 0, 2695, 2697, 5, 431, 0, 0, 2696, 2690, 1, 0, 0, 0, 2696, 2693, 1, 0, 0, 0, 2697, 389, 1, 0, 0, 0, 2698, 2699, 3, 256, 128, 0, 2699, 2700, 5, 405, 0, 0, 2700, 2701, 3, 392, 196, 0, 2701, 391, 1, 0, 0, 0, 2702, 2705, 5, 83, 0, 0, 2703, 2705, 3, 604, 302, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2703, 1, 0, 0, 0, 2705, 393, 1, 0, 0, 0, 2706, 2707, 5, 304, 0, 0, 2707, 2712, 3, 390, 195, 0, 2708, 2709, 5, 397, 0, 0, 2709, 2711, 3, 390, 195, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2714, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 395, 1, 0, 0, 0, 2714, 2712, 1, 0, 0, 0, 2715, 2716, 5, 318, 0, 0, 2716, 2725, 5, 344, 0, 0, 2717, 2722, 3, 398, 199, 0, 2718, 2719, 5, 397, 0, 0, 2719, 2721, 3, 398, 199, 0, 2720, 2718, 1, 0, 0, 0, 2721, 2724, 1, 0, 0, 0, 2722, 2720, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2725, 2717, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2739, 1, 0, 0, 0, 2727, 2729, 5, 48, 0, 0, 2728, 2730, 5, 389, 0, 0, 2729, 2728, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2739, 1, 0, 0, 0, 2731, 2733, 5, 289, 0, 0, 2732, 2734, 5, 389, 0, 0, 2733, 2732, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2739, 1, 0, 0, 0, 2735, 2736, 5, 304, 0, 0, 2736, 2737, 5, 22, 0, 0, 2737, 2739, 7, 23, 0, 0, 2738, 2715, 1, 0, 0, 0, 2738, 2727, 1, 0, 0, 0, 2738, 2731, 1, 0, 0, 0, 2738, 2735, 1, 0, 0, 0, 2739, 397, 1, 0, 0, 0, 2740, 2741, 5, 168, 0, 0, 2741, 2742, 5, 182, 0, 0, 2742, 2746, 5, 312, 0, 0, 2743, 2744, 5, 261, 0, 0, 2744, 2746, 7, 24, 0, 0, 2745, 2740, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2746, 399, 1, 0, 0, 0, 2747, 2750, 3, 404, 202, 0, 2748, 2750, 3, 406, 203, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2748, 1, 0, 0, 0, 2750, 2753, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2755, 1, 0, 0, 0, 2753, 2751, 1, 0, 0, 0, 2754, 2756, 3, 402, 201, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 401, 1, 0, 0, 0, 2757, 2758, 5, 383, 0, 0, 2758, 2759, 5, 216, 0, 0, 2759, 2762, 5, 201, 0, 0, 2760, 2761, 5, 11, 0, 0, 2761, 2763, 3, 594, 297, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 5, 335, 0, 0, 2765, 2767, 5, 161, 0, 0, 2766, 2768, 3, 266, 133, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 5, 374, 0, 0, 2770, 2771, 3, 550, 275, 0, 2771, 403, 1, 0, 0, 0, 2772, 2773, 5, 383, 0, 0, 2773, 2774, 5, 201, 0, 0, 2774, 2775, 5, 11, 0, 0, 2775, 2776, 3, 594, 297, 0, 2776, 2780, 5, 335, 0, 0, 2777, 2778, 5, 365, 0, 0, 2778, 2781, 3, 394, 197, 0, 2779, 2781, 5, 86, 0, 0, 2780, 2777, 1, 0, 0, 0, 2780, 2779, 1, 0, 0, 0, 2781, 405, 1, 0, 0, 0, 2782, 2783, 5, 383, 0, 0, 2783, 2784, 5, 201, 0, 0, 2784, 2788, 5, 335, 0, 0, 2785, 2786, 5, 365, 0, 0, 2786, 2789, 3, 394, 197, 0, 2787, 2789, 5, 86, 0, 0, 2788, 2785, 1, 0, 0, 0, 2788, 2787, 1, 0, 0, 0, 2789, 407, 1, 0, 0, 0, 2790, 2791, 5, 246, 0, 0, 2791, 2792, 5, 426, 0, 0, 2792, 409, 1, 0, 0, 0, 2793, 2794, 5, 352, 0, 0, 2794, 2795, 5, 426, 0, 0, 2795, 411, 1, 0, 0, 0, 2796, 2797, 5, 320, 0, 0, 2797, 2798, 5, 426, 0, 0, 2798, 413, 1, 0, 0, 0, 2799, 2830, 5, 9, 0, 0, 2800, 2801, 5, 329, 0, 0, 2801, 2802, 3, 480, 240, 0, 2802, 2803, 3, 416, 208, 0, 2803, 2831, 1, 0, 0, 0, 2804, 2805, 5, 378, 0, 0, 2805, 2807, 3, 484, 242, 0, 2806, 2808, 5, 17, 0, 0, 2807, 2806, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 2810, 3, 420, 210, 0, 2810, 2831, 1, 0, 0, 0, 2811, 2812, 5, 202, 0, 0, 2812, 2813, 5, 378, 0, 0, 2813, 2817, 3, 484, 242, 0, 2814, 2818, 3, 36, 18, 0, 2815, 2818, 3, 38, 19, 0, 2816, 2818, 5, 265, 0, 0, 2817, 2814, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2816, 1, 0, 0, 0, 2818, 2831, 1, 0, 0, 0, 2819, 2820, 3, 70, 35, 0, 2820, 2821, 3, 422, 211, 0, 2821, 2831, 1, 0, 0, 0, 2822, 2823, 5, 69, 0, 0, 2823, 2831, 3, 424, 212, 0, 2824, 2825, 5, 155, 0, 0, 2825, 2826, 3, 652, 326, 0, 2826, 2827, 5, 224, 0, 0, 2827, 2828, 3, 638, 319, 0, 2828, 2829, 5, 265, 0, 0, 2829, 2831, 1, 0, 0, 0, 2830, 2800, 1, 0, 0, 0, 2830, 2804, 1, 0, 0, 0, 2830, 2811, 1, 0, 0, 0, 2830, 2819, 1, 0, 0, 0, 2830, 2822, 1, 0, 0, 0, 2830, 2824, 1, 0, 0, 0, 2831, 415, 1, 0, 0, 0, 2832, 2833, 5, 274, 0, 0, 2833, 2834, 5, 341, 0, 0, 2834, 2922, 3, 482, 241, 0, 2835, 2836, 5, 102, 0, 0, 2836, 2922, 5, 239, 0, 0, 2837, 2922, 3, 428, 214, 0, 2838, 2840, 5, 4, 0, 0, 2839, 2841, 3, 32, 16, 0, 2840, 2839, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2846, 1, 0, 0, 0, 2842, 2844, 3, 640, 320, 0, 2843, 2845, 3, 426, 213, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2847, 1, 0, 0, 0, 2846, 2842, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2922, 1, 0, 0, 0, 2850, 2854, 5, 342, 0, 0, 2851, 2853, 3, 640, 320, 0, 2852, 2851, 1, 0, 0, 0, 2853, 2856, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2922, 1, 0, 0, 0, 2856, 2854, 1, 0, 0, 0, 2857, 2861, 5, 15, 0, 0, 2858, 2860, 3, 640, 320, 0, 2859, 2858, 1, 0, 0, 0, 2860, 2863, 1, 0, 0, 0, 2861, 2859, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2922, 1, 0, 0, 0, 2863, 2861, 1, 0, 0, 0, 2864, 2868, 5, 353, 0, 0, 2865, 2867, 3, 640, 320, 0, 2866, 2865, 1, 0, 0, 0, 2867, 2870, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2922, 1, 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2871, 2872, 5, 304, 0, 0, 2872, 2873, 5, 332, 0, 0, 2873, 2922, 3, 226, 113, 0, 2874, 2875, 5, 363, 0, 0, 2875, 2877, 5, 332, 0, 0, 2876, 2878, 3, 30, 15, 0, 2877, 2876, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2922, 3, 226, 113, 0, 2880, 2922, 3, 210, 105, 0, 2881, 2884, 5, 216, 0, 0, 2882, 2885, 5, 310, 0, 0, 2883, 2885, 3, 40, 20, 0, 2884, 2882, 1, 0, 0, 0, 2884, 2883, 1, 0, 0, 0, 2885, 2922, 1, 0, 0, 0, 2886, 2887, 5, 113, 0, 0, 2887, 2888, 3, 640, 320, 0, 2888, 2889, 5, 387, 0, 0, 2889, 2890, 5, 329, 0, 0, 2890, 2891, 3, 480, 240, 0, 2891, 2922, 1, 0, 0, 0, 2892, 2893, 5, 237, 0, 0, 2893, 2894, 5, 45, 0, 0, 2894, 2895, 5, 399, 0, 0, 2895, 2896, 3, 312, 156, 0, 2896, 2897, 5, 400, 0, 0, 2897, 2922, 1, 0, 0, 0, 2898, 2899, 5, 101, 0, 0, 2899, 2900, 5, 55, 0, 0, 2900, 2922, 3, 652, 326, 0, 2901, 2904, 5, 4, 0, 0, 2902, 2905, 3, 290, 145, 0, 2903, 2905, 3, 280, 140, 0, 2904, 2902, 1, 0, 0, 0, 2904, 2903, 1, 0, 0, 0, 2905, 2922, 1, 0, 0, 0, 2906, 2908, 3, 640, 320, 0, 2907, 2906, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2922, 3, 418, 209, 0, 2910, 2911, 5, 304, 0, 0, 2911, 2912, 5, 236, 0, 0, 2912, 2922, 3, 126, 63, 0, 2913, 2914, 5, 304, 0, 0, 2914, 2915, 5, 237, 0, 0, 2915, 2916, 5, 316, 0, 0, 2916, 2917, 5, 399, 0, 0, 2917, 2918, 3, 204, 102, 0, 2918, 2919, 5, 400, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2922, 3, 432, 216, 0, 2921, 2832, 1, 0, 0, 0, 2921, 2835, 1, 0, 0, 0, 2921, 2837, 1, 0, 0, 0, 2921, 2838, 1, 0, 0, 0, 2921, 2850, 1, 0, 0, 0, 2921, 2857, 1, 0, 0, 0, 2921, 2864, 1, 0, 0, 0, 2921, 2871, 1, 0, 0, 0, 2921, 2874, 1, 0, 0, 0, 2921, 2880, 1, 0, 0, 0, 2921, 2881, 1, 0, 0, 0, 2921, 2886, 1, 0, 0, 0, 2921, 2892, 1, 0, 0, 0, 2921, 2898, 1, 0, 0, 0, 2921, 2901, 1, 0, 0, 0, 2921, 2907, 1, 0, 0, 0, 2921, 2910, 1, 0, 0, 0, 2921, 2913, 1, 0, 0, 0, 2921, 2920, 1, 0, 0, 0, 2922, 417, 1, 0, 0, 0, 2923, 2924, 5, 304, 0, 0, 2924, 2925, 5, 129, 0, 0, 2925, 3056, 3, 434, 217, 0, 2926, 2927, 5, 304, 0, 0, 2927, 2928, 5, 189, 0, 0, 2928, 3056, 5, 426, 0, 0, 2929, 3056, 5, 53, 0, 0, 2930, 2940, 5, 304, 0, 0, 2931, 2932, 5, 301, 0, 0, 2932, 2936, 5, 426, 0, 0, 2933, 2934, 5, 387, 0, 0, 2934, 2935, 5, 302, 0, 0, 2935, 2937, 3, 226, 113, 0, 2936, 2933, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2941, 1, 0, 0, 0, 2938, 2939, 5, 302, 0, 0, 2939, 2941, 3, 226, 113, 0, 2940, 2931, 1, 0, 0, 0, 2940, 2938, 1, 0, 0, 0, 2941, 3056, 1, 0, 0, 0, 2942, 2943, 5, 363, 0, 0, 2943, 2944, 5, 302, 0, 0, 2944, 3056, 3, 226, 113, 0, 2945, 2946, 5, 274, 0, 0, 2946, 2947, 5, 341, 0, 0, 2947, 3056, 3, 640, 320, 0, 2948, 2949, 5, 166, 0, 0, 2949, 2950, 5, 431, 0, 0, 2950, 3056, 5, 31, 0, 0, 2951, 2952, 5, 304, 0, 0, 2952, 2953, 5, 310, 0, 0, 2953, 2954, 5, 189, 0, 0, 2954, 2955, 5, 399, 0, 0, 2955, 2960, 3, 430, 215, 0, 2956, 2957, 5, 397, 0, 0, 2957, 2959, 3, 430, 215, 0, 2958, 2956, 1, 0, 0, 0, 2959, 2962, 1, 0, 0, 0, 2960, 2958, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2963, 1, 0, 0, 0, 2962, 2960, 1, 0, 0, 0, 2963, 2964, 5, 400, 0, 0, 2964, 3056, 1, 0, 0, 0, 2965, 2966, 5, 216, 0, 0, 2966, 3056, 7, 25, 0, 0, 2967, 3056, 3, 208, 104, 0, 2968, 2969, 5, 49, 0, 0, 2969, 2972, 5, 426, 0, 0, 2970, 2971, 5, 11, 0, 0, 2971, 2973, 5, 380, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2978, 1, 0, 0, 0, 2974, 2975, 5, 42, 0, 0, 2975, 2976, 5, 166, 0, 0, 2976, 2977, 5, 431, 0, 0, 2977, 2979, 5, 31, 0, 0, 2978, 2974, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2981, 1, 0, 0, 0, 2980, 2982, 3, 554, 277, 0, 2981, 2980, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2984, 1, 0, 0, 0, 2983, 2985, 3, 408, 204, 0, 2984, 2983, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2990, 1, 0, 0, 0, 2986, 2987, 5, 387, 0, 0, 2987, 2988, 5, 235, 0, 0, 2988, 2989, 5, 332, 0, 0, 2989, 2991, 3, 226, 113, 0, 2990, 2986, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 3056, 1, 0, 0, 0, 2992, 2993, 5, 365, 0, 0, 2993, 2994, 5, 319, 0, 0, 2994, 2996, 5, 134, 0, 0, 2995, 2997, 5, 45, 0, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 3, 256, 128, 0, 2999, 3000, 5, 304, 0, 0, 3000, 3003, 3, 226, 113, 0, 3001, 3002, 5, 47, 0, 0, 3002, 3004, 5, 426, 0, 0, 3003, 3001, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3056, 1, 0, 0, 0, 3005, 3006, 5, 365, 0, 0, 3006, 3007, 5, 319, 0, 0, 3007, 3008, 5, 304, 0, 0, 3008, 3056, 3, 226, 113, 0, 3009, 3011, 5, 38, 0, 0, 3010, 3012, 5, 45, 0, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3014, 3, 256, 128, 0, 3014, 3015, 3, 260, 130, 0, 3015, 3017, 3, 344, 172, 0, 3016, 3018, 3, 326, 163, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3021, 1, 0, 0, 0, 3019, 3020, 5, 47, 0, 0, 3020, 3022, 5, 426, 0, 0, 3021, 3019, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3026, 1, 0, 0, 0, 3023, 3027, 5, 130, 0, 0, 3024, 3025, 5, 6, 0, 0, 3025, 3027, 3, 652, 326, 0, 3026, 3023, 1, 0, 0, 0, 3026, 3024, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3030, 3, 34, 17, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3056, 1, 0, 0, 0, 3031, 3034, 5, 4, 0, 0, 3032, 3034, 5, 278, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3032, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 5, 46, 0, 0, 3036, 3037, 5, 399, 0, 0, 3037, 3038, 3, 248, 124, 0, 3038, 3040, 5, 400, 0, 0, 3039, 3041, 3, 34, 17, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3056, 1, 0, 0, 0, 3042, 3043, 5, 365, 0, 0, 3043, 3045, 5, 46, 0, 0, 3044, 3046, 3, 34, 17, 0, 3045, 3044, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3056, 1, 0, 0, 0, 3047, 3053, 3, 270, 135, 0, 3048, 3050, 5, 218, 0, 0, 3049, 3051, 5, 34, 0, 0, 3050, 3049, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3054, 1, 0, 0, 0, 3052, 3054, 5, 222, 0, 0, 3053, 3048, 1, 0, 0, 0, 3053, 3052, 1, 0, 0, 0, 3054, 3056, 1, 0, 0, 0, 3055, 2923, 1, 0, 0, 0, 3055, 2926, 1, 0, 0, 0, 3055, 2929, 1, 0, 0, 0, 3055, 2930, 1, 0, 0, 0, 3055, 2942, 1, 0, 0, 0, 3055, 2945, 1, 0, 0, 0, 3055, 2948, 1, 0, 0, 0, 3055, 2951, 1, 0, 0, 0, 3055, 2965, 1, 0, 0, 0, 3055, 2967, 1, 0, 0, 0, 3055, 2968, 1, 0, 0, 0, 3055, 2992, 1, 0, 0, 0, 3055, 3005, 1, 0, 0, 0, 3055, 3009, 1, 0, 0, 0, 3055, 3033, 1, 0, 0, 0, 3055, 3042, 1, 0, 0, 0, 3055, 3047, 1, 0, 0, 0, 3056, 419, 1, 0, 0, 0, 3057, 3058, 5, 304, 0, 0, 3058, 3059, 5, 332, 0, 0, 3059, 3084, 3, 226, 113, 0, 3060, 3061, 5, 363, 0, 0, 3061, 3063, 5, 332, 0, 0, 3062, 3064, 3, 30, 15, 0, 3063, 3062, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3084, 3, 226, 113, 0, 3066, 3067, 5, 274, 0, 0, 3067, 3068, 5, 341, 0, 0, 3068, 3084, 3, 482, 241, 0, 3069, 3071, 5, 4, 0, 0, 3070, 3072, 3, 32, 16, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3077, 1, 0, 0, 0, 3073, 3075, 3, 640, 320, 0, 3074, 3076, 3, 426, 213, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3073, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3077, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3084, 1, 0, 0, 0, 3081, 3084, 3, 428, 214, 0, 3082, 3084, 3, 382, 191, 0, 3083, 3057, 1, 0, 0, 0, 3083, 3060, 1, 0, 0, 0, 3083, 3066, 1, 0, 0, 0, 3083, 3069, 1, 0, 0, 0, 3083, 3081, 1, 0, 0, 0, 3083, 3082, 1, 0, 0, 0, 3084, 421, 1, 0, 0, 0, 3085, 3086, 3, 474, 237, 0, 3086, 3087, 5, 304, 0, 0, 3087, 3088, 5, 76, 0, 0, 3088, 3089, 3, 230, 115, 0, 3089, 3101, 1, 0, 0, 0, 3090, 3091, 3, 474, 237, 0, 3091, 3092, 5, 304, 0, 0, 3092, 3093, 5, 236, 0, 0, 3093, 3094, 3, 128, 64, 0, 3094, 3101, 1, 0, 0, 0, 3095, 3096, 3, 474, 237, 0, 3096, 3097, 5, 304, 0, 0, 3097, 3098, 7, 26, 0, 0, 3098, 3099, 5, 426, 0, 0, 3099, 3101, 1, 0, 0, 0, 3100, 3085, 1, 0, 0, 0, 3100, 3090, 1, 0, 0, 0, 3100, 3095, 1, 0, 0, 0, 3101, 423, 1, 0, 0, 0, 3102, 3103, 3, 474, 237, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 77, 0, 0, 3105, 3106, 3, 230, 115, 0, 3106, 3118, 1, 0, 0, 0, 3107, 3108, 3, 474, 237, 0, 3108, 3109, 5, 304, 0, 0, 3109, 3110, 5, 236, 0, 0, 3110, 3111, 3, 128, 64, 0, 3111, 3118, 1, 0, 0, 0, 3112, 3113, 3, 474, 237, 0, 3113, 3114, 5, 304, 0, 0, 3114, 3115, 5, 367, 0, 0, 3115, 3116, 5, 426, 0, 0, 3116, 3118, 1, 0, 0, 0, 3117, 3102, 1, 0, 0, 0, 3117, 3107, 1, 0, 0, 0, 3117, 3112, 1, 0, 0, 0, 3118, 425, 1, 0, 0, 0, 3119, 3120, 5, 189, 0, 0, 3120, 3121, 5, 426, 0, 0, 3121, 427, 1, 0, 0, 0, 3122, 3124, 5, 101, 0, 0, 3123, 3125, 3, 30, 15, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3127, 5, 237, 0, 0, 3127, 3133, 3, 644, 322, 0, 3128, 3129, 5, 397, 0, 0, 3129, 3130, 5, 237, 0, 0, 3130, 3132, 3, 644, 322, 0, 3131, 3128, 1, 0, 0, 0, 3132, 3135, 1, 0, 0, 0, 3133, 3131, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3138, 1, 0, 0, 0, 3135, 3133, 1, 0, 0, 0, 3136, 3137, 5, 152, 0, 0, 3137, 3139, 5, 254, 0, 0, 3138, 3136, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3141, 1, 0, 0, 0, 3140, 3142, 5, 255, 0, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3144, 1, 0, 0, 0, 3143, 3145, 3, 14, 7, 0, 3144, 3143, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 429, 1, 0, 0, 0, 3146, 3149, 3, 586, 293, 0, 3147, 3149, 3, 296, 148, 0, 3148, 3146, 1, 0, 0, 0, 3148, 3147, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 5, 405, 0, 0, 3151, 3152, 5, 426, 0, 0, 3152, 431, 1, 0, 0, 0, 3153, 3163, 5, 115, 0, 0, 3154, 3155, 5, 289, 0, 0, 3155, 3156, 5, 399, 0, 0, 3156, 3164, 7, 27, 0, 0, 3157, 3158, 5, 118, 0, 0, 3158, 3159, 5, 399, 0, 0, 3159, 3164, 5, 426, 0, 0, 3160, 3161, 5, 306, 0, 0, 3161, 3162, 5, 399, 0, 0, 3162, 3164, 5, 431, 0, 0, 3163, 3154, 1, 0, 0, 0, 3163, 3157, 1, 0, 0, 0, 3163, 3160, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3166, 5, 400, 0, 0, 3166, 433, 1, 0, 0, 0, 3167, 3168, 5, 160, 0, 0, 3168, 3169, 5, 426, 0, 0, 3169, 3170, 5, 233, 0, 0, 3170, 3171, 5, 426, 0, 0, 3171, 3172, 5, 301, 0, 0, 3172, 3177, 5, 426, 0, 0, 3173, 3174, 5, 159, 0, 0, 3174, 3175, 5, 426, 0, 0, 3175, 3176, 5, 232, 0, 0, 3176, 3178, 5, 426, 0, 0, 3177, 3173, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3181, 1, 0, 0, 0, 3179, 3181, 3, 652, 326, 0, 3180, 3167, 1, 0, 0, 0, 3180, 3179, 1, 0, 0, 0, 3181, 435, 1, 0, 0, 0, 3182, 3183, 5, 184, 0, 0, 3183, 3192, 5, 128, 0, 0, 3184, 3185, 5, 184, 0, 0, 3185, 3186, 5, 128, 0, 0, 3186, 3187, 3, 652, 326, 0, 3187, 3188, 5, 426, 0, 0, 3188, 3192, 1, 0, 0, 0, 3189, 3190, 5, 184, 0, 0, 3190, 3192, 3, 480, 240, 0, 3191, 3182, 1, 0, 0, 0, 3191, 3184, 1, 0, 0, 0, 3191, 3189, 1, 0, 0, 0, 3192, 437, 1, 0, 0, 0, 3193, 3195, 5, 58, 0, 0, 3194, 3196, 5, 333, 0, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3198, 1, 0, 0, 0, 3197, 3199, 5, 345, 0, 0, 3198, 3197, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3201, 1, 0, 0, 0, 3200, 3202, 5, 123, 0, 0, 3201, 3200, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3205, 5, 329, 0, 0, 3204, 3206, 3, 32, 16, 0, 3205, 3204, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3264, 3, 482, 241, 0, 3208, 3210, 3, 436, 218, 0, 3209, 3211, 3, 200, 100, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 3, 222, 111, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3217, 3, 246, 123, 0, 3216, 3215, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3219, 1, 0, 0, 0, 3218, 3220, 3, 426, 213, 0, 3219, 3218, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3222, 1, 0, 0, 0, 3221, 3223, 3, 224, 112, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 198, 99, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3265, 1, 0, 0, 0, 3227, 3228, 5, 399, 0, 0, 3228, 3229, 3, 250, 125, 0, 3229, 3230, 5, 400, 0, 0, 3230, 3232, 1, 0, 0, 0, 3231, 3227, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 196, 98, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 200, 100, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3240, 1, 0, 0, 0, 3239, 3241, 3, 208, 104, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3244, 3, 210, 105, 0, 3243, 3242, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 222, 111, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 246, 123, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 426, 213, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 224, 112, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 198, 99, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3262, 1, 0, 0, 0, 3260, 3261, 5, 17, 0, 0, 3261, 3263, 3, 382, 191, 0, 3262, 3260, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3208, 1, 0, 0, 0, 3264, 3231, 1, 0, 0, 0, 3265, 3329, 1, 0, 0, 0, 3266, 3267, 5, 58, 0, 0, 3267, 3268, 5, 195, 0, 0, 3268, 3270, 5, 329, 0, 0, 3269, 3271, 3, 32, 16, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3326, 3, 482, 241, 0, 3273, 3275, 3, 436, 218, 0, 3274, 3276, 3, 222, 111, 0, 3275, 3274, 1, 0, 0, 0, 3275, 3276, 1, 0, 0, 0, 3276, 3278, 1, 0, 0, 0, 3277, 3279, 3, 246, 123, 0, 3278, 3277, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3281, 1, 0, 0, 0, 3280, 3282, 3, 426, 213, 0, 3281, 3280, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3285, 3, 224, 112, 0, 3284, 3283, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3287, 1, 0, 0, 0, 3286, 3288, 3, 198, 99, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3327, 1, 0, 0, 0, 3289, 3290, 5, 399, 0, 0, 3290, 3291, 3, 250, 125, 0, 3291, 3292, 5, 400, 0, 0, 3292, 3294, 1, 0, 0, 0, 3293, 3289, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 196, 98, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3300, 3, 200, 100, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3302, 1, 0, 0, 0, 3301, 3303, 3, 208, 104, 0, 3302, 3301, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3306, 3, 210, 105, 0, 3305, 3304, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 222, 111, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 246, 123, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 426, 213, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 224, 112, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 198, 99, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3323, 5, 17, 0, 0, 3323, 3325, 3, 382, 191, 0, 3324, 3322, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3327, 1, 0, 0, 0, 3326, 3273, 1, 0, 0, 0, 3326, 3293, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3193, 1, 0, 0, 0, 3328, 3266, 1, 0, 0, 0, 3329, 439, 1, 0, 0, 0, 3330, 3331, 5, 58, 0, 0, 3331, 3333, 5, 69, 0, 0, 3332, 3334, 3, 32, 16, 0, 3333, 3332, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3338, 3, 652, 326, 0, 3336, 3337, 5, 352, 0, 0, 3337, 3339, 5, 426, 0, 0, 3338, 3336, 1, 0, 0, 0, 3338, 3339, 1, 0, 0, 0, 3339, 3342, 1, 0, 0, 0, 3340, 3341, 5, 367, 0, 0, 3341, 3343, 5, 426, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3346, 1, 0, 0, 0, 3344, 3345, 5, 47, 0, 0, 3345, 3347, 5, 426, 0, 0, 3346, 3344, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3351, 1, 0, 0, 0, 3348, 3349, 5, 387, 0, 0, 3349, 3350, 5, 77, 0, 0, 3350, 3352, 3, 230, 115, 0, 3351, 3348, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 441, 1, 0, 0, 0, 3353, 3354, 5, 101, 0, 0, 3354, 3356, 5, 69, 0, 0, 3355, 3357, 3, 30, 15, 0, 3356, 3355, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 3, 652, 326, 0, 3359, 443, 1, 0, 0, 0, 3360, 3361, 3, 652, 326, 0, 3361, 3362, 5, 395, 0, 0, 3362, 3364, 1, 0, 0, 0, 3363, 3360, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3368, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3368, 3369, 5, 415, 0, 0, 3369, 445, 1, 0, 0, 0, 3370, 3375, 3, 594, 297, 0, 3371, 3372, 5, 397, 0, 0, 3372, 3374, 3, 594, 297, 0, 3373, 3371, 1, 0, 0, 0, 3374, 3377, 1, 0, 0, 0, 3375, 3373, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 447, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3378, 3383, 3, 652, 326, 0, 3379, 3380, 5, 397, 0, 0, 3380, 3382, 3, 652, 326, 0, 3381, 3379, 1, 0, 0, 0, 3382, 3385, 1, 0, 0, 0, 3383, 3381, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 449, 1, 0, 0, 0, 3385, 3383, 1, 0, 0, 0, 3386, 3387, 5, 139, 0, 0, 3387, 3388, 3, 452, 226, 0, 3388, 451, 1, 0, 0, 0, 3389, 3390, 5, 359, 0, 0, 3390, 3393, 3, 460, 230, 0, 3391, 3392, 5, 397, 0, 0, 3392, 3394, 3, 460, 230, 0, 3393, 3391, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3399, 1, 0, 0, 0, 3397, 3399, 3, 456, 228, 0, 3398, 3389, 1, 0, 0, 0, 3398, 3397, 1, 0, 0, 0, 3399, 453, 1, 0, 0, 0, 3400, 3404, 3, 470, 235, 0, 3401, 3403, 3, 464, 232, 0, 3402, 3401, 1, 0, 0, 0, 3403, 3406, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3433, 1, 0, 0, 0, 3406, 3404, 1, 0, 0, 0, 3407, 3411, 3, 504, 252, 0, 3408, 3410, 3, 464, 232, 0, 3409, 3408, 1, 0, 0, 0, 3410, 3413, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3433, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3414, 3418, 3, 488, 244, 0, 3415, 3417, 3, 464, 232, 0, 3416, 3415, 1, 0, 0, 0, 3417, 3420, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3433, 1, 0, 0, 0, 3420, 3418, 1, 0, 0, 0, 3421, 3425, 3, 494, 247, 0, 3422, 3424, 3, 464, 232, 0, 3423, 3422, 1, 0, 0, 0, 3424, 3427, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3433, 1, 0, 0, 0, 3427, 3425, 1, 0, 0, 0, 3428, 3429, 5, 399, 0, 0, 3429, 3430, 3, 456, 228, 0, 3430, 3431, 5, 400, 0, 0, 3431, 3433, 1, 0, 0, 0, 3432, 3400, 1, 0, 0, 0, 3432, 3407, 1, 0, 0, 0, 3432, 3414, 1, 0, 0, 0, 3432, 3421, 1, 0, 0, 0, 3432, 3428, 1, 0, 0, 0, 3433, 455, 1, 0, 0, 0, 3434, 3445, 3, 454, 227, 0, 3435, 3436, 3, 462, 231, 0, 3436, 3441, 3, 458, 229, 0, 3437, 3438, 5, 224, 0, 0, 3438, 3442, 3, 594, 297, 0, 3439, 3440, 5, 370, 0, 0, 3440, 3442, 3, 266, 133, 0, 3441, 3437, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3444, 1, 0, 0, 0, 3443, 3435, 1, 0, 0, 0, 3444, 3447, 1, 0, 0, 0, 3445, 3443, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 457, 1, 0, 0, 0, 3447, 3445, 1, 0, 0, 0, 3448, 3453, 3, 470, 235, 0, 3449, 3453, 3, 504, 252, 0, 3450, 3453, 3, 488, 244, 0, 3451, 3453, 3, 494, 247, 0, 3452, 3448, 1, 0, 0, 0, 3452, 3449, 1, 0, 0, 0, 3452, 3450, 1, 0, 0, 0, 3452, 3451, 1, 0, 0, 0, 3453, 3457, 1, 0, 0, 0, 3454, 3456, 3, 464, 232, 0, 3455, 3454, 1, 0, 0, 0, 3456, 3459, 1, 0, 0, 0, 3457, 3455, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 459, 1, 0, 0, 0, 3459, 3457, 1, 0, 0, 0, 3460, 3462, 5, 250, 0, 0, 3461, 3460, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3465, 3, 478, 239, 0, 3464, 3466, 3, 468, 234, 0, 3465, 3464, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3471, 1, 0, 0, 0, 3467, 3469, 5, 17, 0, 0, 3468, 3467, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 3472, 3, 652, 326, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3474, 5, 399, 0, 0, 3474, 3475, 3, 446, 223, 0, 3475, 3476, 5, 400, 0, 0, 3476, 461, 1, 0, 0, 0, 3477, 3492, 5, 397, 0, 0, 3478, 3489, 5, 157, 0, 0, 3479, 3489, 5, 60, 0, 0, 3480, 3482, 7, 28, 0, 0, 3481, 3483, 5, 231, 0, 0, 3482, 3481, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3489, 1, 0, 0, 0, 3484, 3486, 5, 180, 0, 0, 3485, 3487, 7, 29, 0, 0, 3486, 3485, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3489, 1, 0, 0, 0, 3488, 3478, 1, 0, 0, 0, 3488, 3479, 1, 0, 0, 0, 3488, 3480, 1, 0, 0, 0, 3488, 3484, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 3492, 5, 171, 0, 0, 3491, 3477, 1, 0, 0, 0, 3491, 3488, 1, 0, 0, 0, 3492, 463, 1, 0, 0, 0, 3493, 3494, 5, 178, 0, 0, 3494, 3495, 5, 378, 0, 0, 3495, 3496, 5, 231, 0, 0, 3496, 3497, 3, 564, 282, 0, 3497, 3507, 3, 466, 233, 0, 3498, 3499, 5, 17, 0, 0, 3499, 3504, 3, 652, 326, 0, 3500, 3501, 5, 397, 0, 0, 3501, 3503, 3, 652, 326, 0, 3502, 3500, 1, 0, 0, 0, 3503, 3506, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3508, 1, 0, 0, 0, 3506, 3504, 1, 0, 0, 0, 3507, 3498, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3551, 1, 0, 0, 0, 3509, 3511, 5, 397, 0, 0, 3510, 3509, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3548, 5, 178, 0, 0, 3513, 3514, 5, 378, 0, 0, 3514, 3515, 3, 564, 282, 0, 3515, 3525, 3, 466, 233, 0, 3516, 3517, 5, 17, 0, 0, 3517, 3522, 3, 652, 326, 0, 3518, 3519, 5, 397, 0, 0, 3519, 3521, 3, 652, 326, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3524, 1, 0, 0, 0, 3522, 3520, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3526, 1, 0, 0, 0, 3524, 3522, 1, 0, 0, 0, 3525, 3516, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3549, 1, 0, 0, 0, 3527, 3528, 5, 329, 0, 0, 3528, 3529, 5, 399, 0, 0, 3529, 3530, 3, 500, 250, 0, 3530, 3532, 5, 400, 0, 0, 3531, 3533, 5, 17, 0, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 3546, 3, 466, 233, 0, 3535, 3536, 5, 399, 0, 0, 3536, 3541, 3, 652, 326, 0, 3537, 3538, 5, 397, 0, 0, 3538, 3540, 3, 652, 326, 0, 3539, 3537, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3544, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3545, 5, 400, 0, 0, 3545, 3547, 1, 0, 0, 0, 3546, 3535, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 3549, 1, 0, 0, 0, 3548, 3513, 1, 0, 0, 0, 3548, 3527, 1, 0, 0, 0, 3549, 3551, 1, 0, 0, 0, 3550, 3493, 1, 0, 0, 0, 3550, 3510, 1, 0, 0, 0, 3551, 465, 1, 0, 0, 0, 3552, 3553, 3, 652, 326, 0, 3553, 467, 1, 0, 0, 0, 3554, 3555, 5, 331, 0, 0, 3555, 3556, 5, 399, 0, 0, 3556, 3557, 5, 30, 0, 0, 3557, 3558, 5, 431, 0, 0, 3558, 3559, 5, 230, 0, 0, 3559, 3560, 5, 221, 0, 0, 3560, 3570, 5, 431, 0, 0, 3561, 3562, 5, 224, 0, 0, 3562, 3567, 3, 594, 297, 0, 3563, 3564, 5, 397, 0, 0, 3564, 3566, 3, 594, 297, 0, 3565, 3563, 1, 0, 0, 0, 3566, 3569, 1, 0, 0, 0, 3567, 3565, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3571, 1, 0, 0, 0, 3569, 3567, 1, 0, 0, 0, 3570, 3561, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3582, 5, 400, 0, 0, 3573, 3574, 5, 331, 0, 0, 3574, 3578, 5, 399, 0, 0, 3575, 3576, 5, 431, 0, 0, 3576, 3579, 7, 30, 0, 0, 3577, 3579, 5, 430, 0, 0, 3578, 3575, 1, 0, 0, 0, 3578, 3577, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3582, 5, 400, 0, 0, 3581, 3554, 1, 0, 0, 0, 3581, 3573, 1, 0, 0, 0, 3582, 469, 1, 0, 0, 0, 3583, 3585, 3, 478, 239, 0, 3584, 3586, 3, 226, 113, 0, 3585, 3584, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3588, 1, 0, 0, 0, 3587, 3589, 3, 468, 234, 0, 3588, 3587, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3591, 1, 0, 0, 0, 3590, 3592, 3, 472, 236, 0, 3591, 3590, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3597, 1, 0, 0, 0, 3593, 3595, 5, 17, 0, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3598, 3, 652, 326, 0, 3597, 3594, 1, 0, 0, 0, 3597, 3598, 1, 0, 0, 0, 3598, 471, 1, 0, 0, 0, 3599, 3609, 5, 134, 0, 0, 3600, 3601, 5, 327, 0, 0, 3601, 3602, 5, 17, 0, 0, 3602, 3603, 5, 221, 0, 0, 3603, 3610, 3, 594, 297, 0, 3604, 3605, 5, 134, 0, 0, 3605, 3606, 5, 328, 0, 0, 3606, 3607, 5, 17, 0, 0, 3607, 3608, 5, 221, 0, 0, 3608, 3610, 5, 431, 0, 0, 3609, 3600, 1, 0, 0, 0, 3609, 3604, 1, 0, 0, 0, 3610, 473, 1, 0, 0, 0, 3611, 3612, 3, 652, 326, 0, 3612, 475, 1, 0, 0, 0, 3613, 3614, 3, 652, 326, 0, 3614, 477, 1, 0, 0, 0, 3615, 3618, 3, 480, 240, 0, 3616, 3618, 3, 484, 242, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3616, 1, 0, 0, 0, 3618, 479, 1, 0, 0, 0, 3619, 3620, 3, 652, 326, 0, 3620, 3621, 5, 395, 0, 0, 3621, 3624, 3, 652, 326, 0, 3622, 3623, 5, 395, 0, 0, 3623, 3625, 3, 652, 326, 0, 3624, 3622, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3628, 3, 652, 326, 0, 3627, 3619, 1, 0, 0, 0, 3627, 3626, 1, 0, 0, 0, 3628, 481, 1, 0, 0, 0, 3629, 3630, 3, 652, 326, 0, 3630, 3631, 5, 395, 0, 0, 3631, 3634, 3, 652, 326, 0, 3632, 3633, 5, 395, 0, 0, 3633, 3635, 3, 652, 326, 0, 3634, 3632, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3638, 1, 0, 0, 0, 3636, 3638, 3, 652, 326, 0, 3637, 3629, 1, 0, 0, 0, 3637, 3636, 1, 0, 0, 0, 3638, 483, 1, 0, 0, 0, 3639, 3640, 3, 652, 326, 0, 3640, 3641, 5, 395, 0, 0, 3641, 3643, 1, 0, 0, 0, 3642, 3639, 1, 0, 0, 0, 3642, 3643, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 3, 652, 326, 0, 3645, 485, 1, 0, 0, 0, 3646, 3647, 3, 652, 326, 0, 3647, 3648, 5, 395, 0, 0, 3648, 3650, 1, 0, 0, 0, 3649, 3646, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3652, 3, 652, 326, 0, 3652, 487, 1, 0, 0, 0, 3653, 3654, 5, 399, 0, 0, 3654, 3655, 3, 362, 181, 0, 3655, 3657, 5, 400, 0, 0, 3656, 3658, 5, 17, 0, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3660, 3, 652, 326, 0, 3660, 489, 1, 0, 0, 0, 3661, 3663, 3, 556, 278, 0, 3662, 3664, 3, 554, 277, 0, 3663, 3662, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3673, 1, 0, 0, 0, 3665, 3673, 3, 554, 277, 0, 3666, 3668, 3, 560, 280, 0, 3667, 3669, 3, 562, 281, 0, 3668, 3667, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3673, 1, 0, 0, 0, 3670, 3673, 3, 562, 281, 0, 3671, 3673, 3, 558, 279, 0, 3672, 3661, 1, 0, 0, 0, 3672, 3665, 1, 0, 0, 0, 3672, 3666, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 491, 1, 0, 0, 0, 3674, 3678, 3, 488, 244, 0, 3675, 3678, 3, 470, 235, 0, 3676, 3678, 3, 494, 247, 0, 3677, 3674, 1, 0, 0, 0, 3677, 3675, 1, 0, 0, 0, 3677, 3676, 1, 0, 0, 0, 3678, 493, 1, 0, 0, 0, 3679, 3681, 3, 496, 248, 0, 3680, 3682, 3, 652, 326, 0, 3681, 3680, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 495, 1, 0, 0, 0, 3683, 3684, 3, 652, 326, 0, 3684, 3685, 5, 399, 0, 0, 3685, 3686, 5, 224, 0, 0, 3686, 3688, 3, 492, 246, 0, 3687, 3689, 3, 490, 245, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3705, 1, 0, 0, 0, 3690, 3691, 5, 432, 0, 0, 3691, 3692, 5, 399, 0, 0, 3692, 3693, 3, 594, 297, 0, 3693, 3702, 5, 400, 0, 0, 3694, 3695, 5, 397, 0, 0, 3695, 3696, 5, 432, 0, 0, 3696, 3697, 5, 399, 0, 0, 3697, 3698, 3, 594, 297, 0, 3698, 3699, 5, 400, 0, 0, 3699, 3701, 1, 0, 0, 0, 3700, 3694, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3706, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3690, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3708, 5, 400, 0, 0, 3708, 497, 1, 0, 0, 0, 3709, 3710, 5, 384, 0, 0, 3710, 3711, 3, 594, 297, 0, 3711, 499, 1, 0, 0, 0, 3712, 3731, 5, 374, 0, 0, 3713, 3718, 3, 550, 275, 0, 3714, 3715, 5, 397, 0, 0, 3715, 3717, 3, 550, 275, 0, 3716, 3714, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3719, 3732, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3722, 5, 399, 0, 0, 3722, 3723, 3, 546, 273, 0, 3723, 3728, 5, 400, 0, 0, 3724, 3725, 5, 397, 0, 0, 3725, 3727, 3, 550, 275, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3730, 1, 0, 0, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3732, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3713, 1, 0, 0, 0, 3731, 3721, 1, 0, 0, 0, 3732, 501, 1, 0, 0, 0, 3733, 3734, 5, 329, 0, 0, 3734, 3735, 5, 399, 0, 0, 3735, 3736, 3, 500, 250, 0, 3736, 3737, 5, 400, 0, 0, 3737, 503, 1, 0, 0, 0, 3738, 3740, 3, 502, 251, 0, 3739, 3741, 5, 17, 0, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3752, 3, 466, 233, 0, 3743, 3744, 5, 399, 0, 0, 3744, 3749, 3, 652, 326, 0, 3745, 3746, 5, 397, 0, 0, 3746, 3748, 3, 652, 326, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3751, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3743, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3755, 5, 400, 0, 0, 3755, 505, 1, 0, 0, 0, 3756, 3758, 5, 299, 0, 0, 3757, 3759, 5, 436, 0, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3766, 1, 0, 0, 0, 3760, 3762, 7, 22, 0, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3767, 3, 510, 255, 0, 3764, 3765, 5, 347, 0, 0, 3765, 3767, 3, 508, 254, 0, 3766, 3761, 1, 0, 0, 0, 3766, 3764, 1, 0, 0, 0, 3767, 3770, 1, 0, 0, 0, 3768, 3770, 3, 518, 259, 0, 3769, 3756, 1, 0, 0, 0, 3769, 3768, 1, 0, 0, 0, 3770, 507, 1, 0, 0, 0, 3771, 3772, 5, 399, 0, 0, 3772, 3773, 3, 522, 261, 0, 3773, 3774, 5, 400, 0, 0, 3774, 3775, 3, 212, 106, 0, 3775, 3776, 3, 216, 108, 0, 3776, 3777, 5, 370, 0, 0, 3777, 3790, 5, 426, 0, 0, 3778, 3788, 5, 17, 0, 0, 3779, 3782, 5, 399, 0, 0, 3780, 3783, 3, 448, 224, 0, 3781, 3783, 3, 248, 124, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3781, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3785, 5, 400, 0, 0, 3785, 3789, 1, 0, 0, 0, 3786, 3789, 3, 448, 224, 0, 3787, 3789, 3, 248, 124, 0, 3788, 3779, 1, 0, 0, 0, 3788, 3786, 1, 0, 0, 0, 3788, 3787, 1, 0, 0, 0, 3789, 3791, 1, 0, 0, 0, 3790, 3778, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3793, 3, 212, 106, 0, 3793, 3794, 3, 214, 107, 0, 3794, 509, 1, 0, 0, 0, 3795, 3800, 3, 512, 256, 0, 3796, 3797, 5, 397, 0, 0, 3797, 3799, 3, 512, 256, 0, 3798, 3796, 1, 0, 0, 0, 3799, 3802, 1, 0, 0, 0, 3800, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 511, 1, 0, 0, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3827, 3, 444, 222, 0, 3804, 3807, 3, 514, 257, 0, 3805, 3807, 3, 516, 258, 0, 3806, 3804, 1, 0, 0, 0, 3806, 3805, 1, 0, 0, 0, 3807, 3824, 1, 0, 0, 0, 3808, 3810, 5, 17, 0, 0, 3809, 3808, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3825, 3, 652, 326, 0, 3812, 3813, 5, 17, 0, 0, 3813, 3814, 5, 399, 0, 0, 3814, 3819, 3, 652, 326, 0, 3815, 3816, 5, 397, 0, 0, 3816, 3818, 3, 652, 326, 0, 3817, 3815, 1, 0, 0, 0, 3818, 3821, 1, 0, 0, 0, 3819, 3817, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3822, 3823, 5, 400, 0, 0, 3823, 3825, 1, 0, 0, 0, 3824, 3809, 1, 0, 0, 0, 3824, 3812, 1, 0, 0, 0, 3824, 3825, 1, 0, 0, 0, 3825, 3827, 1, 0, 0, 0, 3826, 3803, 1, 0, 0, 0, 3826, 3806, 1, 0, 0, 0, 3827, 513, 1, 0, 0, 0, 3828, 3829, 3, 256, 128, 0, 3829, 515, 1, 0, 0, 0, 3830, 3831, 3, 594, 297, 0, 3831, 517, 1, 0, 0, 0, 3832, 3833, 7, 31, 0, 0, 3833, 3834, 3, 522, 261, 0, 3834, 3835, 3, 212, 106, 0, 3835, 3836, 3, 216, 108, 0, 3836, 3837, 5, 370, 0, 0, 3837, 3850, 5, 426, 0, 0, 3838, 3848, 5, 17, 0, 0, 3839, 3842, 5, 399, 0, 0, 3840, 3843, 3, 448, 224, 0, 3841, 3843, 3, 248, 124, 0, 3842, 3840, 1, 0, 0, 0, 3842, 3841, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3845, 5, 400, 0, 0, 3845, 3849, 1, 0, 0, 0, 3846, 3849, 3, 448, 224, 0, 3847, 3849, 3, 248, 124, 0, 3848, 3839, 1, 0, 0, 0, 3848, 3846, 1, 0, 0, 0, 3848, 3847, 1, 0, 0, 0, 3849, 3851, 1, 0, 0, 0, 3850, 3838, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 3852, 1, 0, 0, 0, 3852, 3853, 3, 212, 106, 0, 3853, 3854, 3, 214, 107, 0, 3854, 519, 1, 0, 0, 0, 3855, 3858, 3, 444, 222, 0, 3856, 3858, 3, 594, 297, 0, 3857, 3855, 1, 0, 0, 0, 3857, 3856, 1, 0, 0, 0, 3858, 521, 1, 0, 0, 0, 3859, 3864, 3, 520, 260, 0, 3860, 3861, 5, 397, 0, 0, 3861, 3863, 3, 520, 260, 0, 3862, 3860, 1, 0, 0, 0, 3863, 3866, 1, 0, 0, 0, 3864, 3862, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 523, 1, 0, 0, 0, 3866, 3864, 1, 0, 0, 0, 3867, 3868, 5, 386, 0, 0, 3868, 3869, 3, 652, 326, 0, 3869, 3870, 5, 17, 0, 0, 3870, 3878, 3, 526, 263, 0, 3871, 3872, 5, 397, 0, 0, 3872, 3873, 3, 652, 326, 0, 3873, 3874, 5, 17, 0, 0, 3874, 3875, 3, 526, 263, 0, 3875, 3877, 1, 0, 0, 0, 3876, 3871, 1, 0, 0, 0, 3877, 3880, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 525, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3881, 3894, 3, 652, 326, 0, 3882, 3884, 5, 399, 0, 0, 3883, 3885, 3, 652, 326, 0, 3884, 3883, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 3887, 1, 0, 0, 0, 3886, 3888, 3, 490, 245, 0, 3887, 3886, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 3890, 1, 0, 0, 0, 3889, 3891, 3, 528, 264, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3894, 5, 400, 0, 0, 3893, 3881, 1, 0, 0, 0, 3893, 3882, 1, 0, 0, 0, 3894, 527, 1, 0, 0, 0, 3895, 3909, 7, 32, 0, 0, 3896, 3897, 5, 354, 0, 0, 3897, 3903, 5, 247, 0, 0, 3898, 3899, 5, 62, 0, 0, 3899, 3903, 5, 291, 0, 0, 3900, 3901, 5, 431, 0, 0, 3901, 3903, 5, 247, 0, 0, 3902, 3896, 1, 0, 0, 0, 3902, 3898, 1, 0, 0, 0, 3902, 3900, 1, 0, 0, 0, 3903, 3910, 1, 0, 0, 0, 3904, 3905, 5, 25, 0, 0, 3905, 3906, 3, 530, 265, 0, 3906, 3907, 5, 11, 0, 0, 3907, 3908, 3, 530, 265, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3902, 1, 0, 0, 0, 3909, 3904, 1, 0, 0, 0, 3910, 529, 1, 0, 0, 0, 3911, 3912, 7, 33, 0, 0, 3912, 3916, 7, 34, 0, 0, 3913, 3914, 5, 62, 0, 0, 3914, 3916, 5, 291, 0, 0, 3915, 3911, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3916, 531, 1, 0, 0, 0, 3917, 3918, 5, 144, 0, 0, 3918, 3924, 5, 32, 0, 0, 3919, 3925, 3, 256, 128, 0, 3920, 3925, 3, 534, 267, 0, 3921, 3925, 3, 536, 268, 0, 3922, 3923, 5, 399, 0, 0, 3923, 3925, 5, 400, 0, 0, 3924, 3919, 1, 0, 0, 0, 3924, 3920, 1, 0, 0, 0, 3924, 3921, 1, 0, 0, 0, 3924, 3922, 1, 0, 0, 0, 3925, 533, 1, 0, 0, 0, 3926, 3929, 5, 290, 0, 0, 3927, 3929, 5, 61, 0, 0, 3928, 3926, 1, 0, 0, 0, 3928, 3927, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 5, 399, 0, 0, 3931, 3936, 3, 594, 297, 0, 3932, 3933, 5, 397, 0, 0, 3933, 3935, 3, 594, 297, 0, 3934, 3932, 1, 0, 0, 0, 3935, 3938, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3939, 1, 0, 0, 0, 3938, 3936, 1, 0, 0, 0, 3939, 3940, 5, 400, 0, 0, 3940, 535, 1, 0, 0, 0, 3941, 3946, 3, 552, 276, 0, 3942, 3943, 5, 387, 0, 0, 3943, 3947, 5, 290, 0, 0, 3944, 3945, 5, 387, 0, 0, 3945, 3947, 5, 61, 0, 0, 3946, 3942, 1, 0, 0, 0, 3946, 3944, 1, 0, 0, 0, 3946, 3947, 1, 0, 0, 0, 3947, 3961, 1, 0, 0, 0, 3948, 3949, 5, 145, 0, 0, 3949, 3950, 5, 305, 0, 0, 3950, 3951, 5, 399, 0, 0, 3951, 3956, 3, 538, 269, 0, 3952, 3953, 5, 397, 0, 0, 3953, 3955, 3, 538, 269, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3958, 1, 0, 0, 0, 3956, 3954, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3959, 1, 0, 0, 0, 3958, 3956, 1, 0, 0, 0, 3959, 3960, 5, 400, 0, 0, 3960, 3962, 1, 0, 0, 0, 3961, 3948, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 537, 1, 0, 0, 0, 3963, 3965, 5, 399, 0, 0, 3964, 3966, 3, 594, 297, 0, 3965, 3964, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 3971, 1, 0, 0, 0, 3967, 3968, 5, 397, 0, 0, 3968, 3970, 3, 594, 297, 0, 3969, 3967, 1, 0, 0, 0, 3970, 3973, 1, 0, 0, 0, 3971, 3969, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3974, 1, 0, 0, 0, 3973, 3971, 1, 0, 0, 0, 3974, 3977, 5, 400, 0, 0, 3975, 3977, 3, 594, 297, 0, 3976, 3963, 1, 0, 0, 0, 3976, 3975, 1, 0, 0, 0, 3977, 539, 1, 0, 0, 0, 3978, 3979, 5, 146, 0, 0, 3979, 3980, 3, 594, 297, 0, 3980, 541, 1, 0, 0, 0, 3981, 3982, 5, 256, 0, 0, 3982, 3983, 3, 594, 297, 0, 3983, 543, 1, 0, 0, 0, 3984, 3987, 5, 83, 0, 0, 3985, 3987, 3, 594, 297, 0, 3986, 3984, 1, 0, 0, 0, 3986, 3985, 1, 0, 0, 0, 3987, 545, 1, 0, 0, 0, 3988, 3990, 3, 594, 297, 0, 3989, 3991, 5, 17, 0, 0, 3990, 3989, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3993, 1, 0, 0, 0, 3992, 3994, 3, 652, 326, 0, 3993, 3992, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 4005, 1, 0, 0, 0, 3995, 3996, 5, 397, 0, 0, 3996, 3998, 3, 594, 297, 0, 3997, 3999, 5, 17, 0, 0, 3998, 3997, 1, 0, 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4001, 1, 0, 0, 0, 4000, 4002, 3, 652, 326, 0, 4001, 4000, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4004, 1, 0, 0, 0, 4003, 3995, 1, 0, 0, 0, 4004, 4007, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 547, 1, 0, 0, 0, 4007, 4005, 1, 0, 0, 0, 4008, 4011, 3, 550, 275, 0, 4009, 4011, 3, 552, 276, 0, 4010, 4008, 1, 0, 0, 0, 4010, 4009, 1, 0, 0, 0, 4011, 549, 1, 0, 0, 0, 4012, 4013, 5, 399, 0, 0, 4013, 4014, 3, 552, 276, 0, 4014, 4015, 5, 400, 0, 0, 4015, 551, 1, 0, 0, 0, 4016, 4023, 3, 544, 272, 0, 4017, 4018, 5, 397, 0, 0, 4018, 4020, 3, 544, 272, 0, 4019, 4017, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4019, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4024, 1, 0, 0, 0, 4023, 4019, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 553, 1, 0, 0, 0, 4025, 4026, 5, 229, 0, 0, 4026, 4027, 5, 32, 0, 0, 4027, 4032, 3, 310, 155, 0, 4028, 4029, 5, 397, 0, 0, 4029, 4031, 3, 310, 155, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4034, 1, 0, 0, 0, 4032, 4030, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 555, 1, 0, 0, 0, 4034, 4032, 1, 0, 0, 0, 4035, 4036, 5, 237, 0, 0, 4036, 4037, 5, 32, 0, 0, 4037, 4038, 3, 548, 274, 0, 4038, 557, 1, 0, 0, 0, 4039, 4040, 5, 41, 0, 0, 4040, 4041, 5, 32, 0, 0, 4041, 4042, 3, 548, 274, 0, 4042, 559, 1, 0, 0, 0, 4043, 4044, 5, 97, 0, 0, 4044, 4045, 5, 32, 0, 0, 4045, 4046, 3, 548, 274, 0, 4046, 561, 1, 0, 0, 0, 4047, 4048, 5, 314, 0, 0, 4048, 4068, 5, 32, 0, 0, 4049, 4050, 5, 399, 0, 0, 4050, 4055, 3, 310, 155, 0, 4051, 4052, 5, 397, 0, 0, 4052, 4054, 3, 310, 155, 0, 4053, 4051, 1, 0, 0, 0, 4054, 4057, 1, 0, 0, 0, 4055, 4053, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4058, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4058, 4059, 5, 400, 0, 0, 4059, 4069, 1, 0, 0, 0, 4060, 4065, 3, 310, 155, 0, 4061, 4062, 5, 397, 0, 0, 4062, 4064, 3, 310, 155, 0, 4063, 4061, 1, 0, 0, 0, 4064, 4067, 1, 0, 0, 0, 4065, 4063, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4069, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4068, 4049, 1, 0, 0, 0, 4068, 4060, 1, 0, 0, 0, 4069, 563, 1, 0, 0, 0, 4070, 4071, 5, 349, 0, 0, 4071, 4075, 5, 399, 0, 0, 4072, 4076, 5, 179, 0, 0, 4073, 4076, 5, 343, 0, 0, 4074, 4076, 5, 29, 0, 0, 4075, 4072, 1, 0, 0, 0, 4075, 4073, 1, 0, 0, 0, 4075, 4074, 1, 0, 0, 0, 4075, 4076, 1, 0, 0, 0, 4076, 4078, 1, 0, 0, 0, 4077, 4079, 3, 520, 260, 0, 4078, 4077, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4081, 5, 139, 0, 0, 4081, 4082, 3, 520, 260, 0, 4082, 4083, 5, 400, 0, 0, 4083, 4124, 1, 0, 0, 0, 4084, 4085, 3, 572, 286, 0, 4085, 4100, 5, 399, 0, 0, 4086, 4101, 5, 415, 0, 0, 4087, 4089, 7, 22, 0, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4098, 1, 0, 0, 0, 4090, 4095, 3, 520, 260, 0, 4091, 4092, 5, 397, 0, 0, 4092, 4094, 3, 520, 260, 0, 4093, 4091, 1, 0, 0, 0, 4094, 4097, 1, 0, 0, 0, 4095, 4093, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 4099, 1, 0, 0, 0, 4097, 4095, 1, 0, 0, 0, 4098, 4090, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 1, 0, 0, 0, 4100, 4086, 1, 0, 0, 0, 4100, 4088, 1, 0, 0, 0, 4101, 4121, 1, 0, 0, 0, 4102, 4103, 5, 400, 0, 0, 4103, 4104, 5, 388, 0, 0, 4104, 4105, 5, 144, 0, 0, 4105, 4106, 5, 399, 0, 0, 4106, 4107, 3, 554, 277, 0, 4107, 4108, 5, 400, 0, 0, 4108, 4122, 1, 0, 0, 0, 4109, 4111, 5, 400, 0, 0, 4110, 4112, 3, 566, 283, 0, 4111, 4110, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 4113, 1, 0, 0, 0, 4113, 4114, 5, 234, 0, 0, 4114, 4122, 3, 526, 263, 0, 4115, 4116, 3, 566, 283, 0, 4116, 4117, 5, 400, 0, 0, 4117, 4118, 5, 234, 0, 0, 4118, 4119, 3, 526, 263, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4122, 5, 400, 0, 0, 4121, 4102, 1, 0, 0, 0, 4121, 4109, 1, 0, 0, 0, 4121, 4115, 1, 0, 0, 0, 4121, 4120, 1, 0, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4070, 1, 0, 0, 0, 4123, 4084, 1, 0, 0, 0, 4124, 565, 1, 0, 0, 0, 4125, 4126, 7, 35, 0, 0, 4126, 4127, 5, 220, 0, 0, 4127, 567, 1, 0, 0, 0, 4128, 4129, 3, 654, 327, 0, 4129, 569, 1, 0, 0, 0, 4130, 4133, 3, 654, 327, 0, 4131, 4133, 5, 426, 0, 0, 4132, 4130, 1, 0, 0, 0, 4132, 4131, 1, 0, 0, 0, 4133, 571, 1, 0, 0, 0, 4134, 4138, 3, 654, 327, 0, 4135, 4138, 3, 660, 330, 0, 4136, 4138, 3, 650, 325, 0, 4137, 4134, 1, 0, 0, 0, 4137, 4135, 1, 0, 0, 0, 4137, 4136, 1, 0, 0, 0, 4138, 573, 1, 0, 0, 0, 4139, 4140, 5, 36, 0, 0, 4140, 4141, 5, 399, 0, 0, 4141, 4142, 3, 594, 297, 0, 4142, 4143, 5, 17, 0, 0, 4143, 4146, 3, 350, 175, 0, 4144, 4145, 5, 137, 0, 0, 4145, 4147, 5, 426, 0, 0, 4146, 4144, 1, 0, 0, 0, 4146, 4147, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4149, 5, 400, 0, 0, 4149, 575, 1, 0, 0, 0, 4150, 4151, 5, 35, 0, 0, 4151, 4157, 3, 594, 297, 0, 4152, 4153, 5, 383, 0, 0, 4153, 4154, 3, 594, 297, 0, 4154, 4155, 5, 335, 0, 0, 4155, 4156, 3, 594, 297, 0, 4156, 4158, 1, 0, 0, 0, 4157, 4152, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 4157, 1, 0, 0, 0, 4159, 4160, 1, 0, 0, 0, 4160, 4163, 1, 0, 0, 0, 4161, 4162, 5, 105, 0, 0, 4162, 4164, 3, 594, 297, 0, 4163, 4161, 1, 0, 0, 0, 4163, 4164, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4166, 5, 108, 0, 0, 4166, 577, 1, 0, 0, 0, 4167, 4173, 5, 35, 0, 0, 4168, 4169, 5, 383, 0, 0, 4169, 4170, 3, 594, 297, 0, 4170, 4171, 5, 335, 0, 0, 4171, 4172, 3, 594, 297, 0, 4172, 4174, 1, 0, 0, 0, 4173, 4168, 1, 0, 0, 0, 4174, 4175, 1, 0, 0, 0, 4175, 4173, 1, 0, 0, 0, 4175, 4176, 1, 0, 0, 0, 4176, 4179, 1, 0, 0, 0, 4177, 4178, 5, 105, 0, 0, 4178, 4180, 3, 594, 297, 0, 4179, 4177, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4182, 5, 108, 0, 0, 4182, 579, 1, 0, 0, 0, 4183, 4184, 5, 132, 0, 0, 4184, 4185, 5, 399, 0, 0, 4185, 4188, 3, 594, 297, 0, 4186, 4187, 5, 341, 0, 0, 4187, 4189, 3, 584, 292, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4191, 5, 400, 0, 0, 4191, 581, 1, 0, 0, 0, 4192, 4193, 5, 124, 0, 0, 4193, 4194, 5, 399, 0, 0, 4194, 4195, 3, 584, 292, 0, 4195, 4196, 5, 139, 0, 0, 4196, 4197, 3, 594, 297, 0, 4197, 4198, 5, 400, 0, 0, 4198, 583, 1, 0, 0, 0, 4199, 4208, 3, 680, 340, 0, 4200, 4208, 5, 257, 0, 0, 4201, 4208, 3, 682, 341, 0, 4202, 4208, 3, 684, 342, 0, 4203, 4208, 3, 686, 343, 0, 4204, 4208, 3, 688, 344, 0, 4205, 4208, 3, 690, 345, 0, 4206, 4208, 3, 692, 346, 0, 4207, 4199, 1, 0, 0, 0, 4207, 4200, 1, 0, 0, 0, 4207, 4201, 1, 0, 0, 0, 4207, 4202, 1, 0, 0, 0, 4207, 4203, 1, 0, 0, 0, 4207, 4204, 1, 0, 0, 0, 4207, 4205, 1, 0, 0, 0, 4207, 4206, 1, 0, 0, 0, 4208, 585, 1, 0, 0, 0, 4209, 4210, 3, 588, 294, 0, 4210, 4211, 3, 592, 296, 0, 4211, 4238, 1, 0, 0, 0, 4212, 4238, 5, 431, 0, 0, 4213, 4214, 5, 71, 0, 0, 4214, 4238, 5, 426, 0, 0, 4215, 4238, 5, 63, 0, 0, 4216, 4217, 5, 337, 0, 0, 4217, 4238, 5, 426, 0, 0, 4218, 4238, 5, 64, 0, 0, 4219, 4220, 5, 338, 0, 0, 4220, 4238, 5, 426, 0, 0, 4221, 4225, 5, 426, 0, 0, 4222, 4224, 5, 426, 0, 0, 4223, 4222, 1, 0, 0, 0, 4224, 4227, 1, 0, 0, 0, 4225, 4223, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4238, 1, 0, 0, 0, 4227, 4225, 1, 0, 0, 0, 4228, 4238, 5, 428, 0, 0, 4229, 4238, 5, 429, 0, 0, 4230, 4231, 5, 433, 0, 0, 4231, 4238, 5, 427, 0, 0, 4232, 4238, 5, 350, 0, 0, 4233, 4238, 5, 125, 0, 0, 4234, 4238, 5, 219, 0, 0, 4235, 4238, 5, 424, 0, 0, 4236, 4238, 3, 258, 129, 0, 4237, 4209, 1, 0, 0, 0, 4237, 4212, 1, 0, 0, 0, 4237, 4213, 1, 0, 0, 0, 4237, 4215, 1, 0, 0, 0, 4237, 4216, 1, 0, 0, 0, 4237, 4218, 1, 0, 0, 0, 4237, 4219, 1, 0, 0, 0, 4237, 4221, 1, 0, 0, 0, 4237, 4228, 1, 0, 0, 0, 4237, 4229, 1, 0, 0, 0, 4237, 4230, 1, 0, 0, 0, 4237, 4232, 1, 0, 0, 0, 4237, 4233, 1, 0, 0, 0, 4237, 4234, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4237, 4236, 1, 0, 0, 0, 4238, 587, 1, 0, 0, 0, 4239, 4240, 7, 27, 0, 0, 4240, 589, 1, 0, 0, 0, 4241, 4242, 5, 399, 0, 0, 4242, 4243, 3, 588, 294, 0, 4243, 4244, 5, 400, 0, 0, 4244, 4245, 3, 592, 296, 0, 4245, 4257, 1, 0, 0, 0, 4246, 4252, 5, 165, 0, 0, 4247, 4253, 3, 588, 294, 0, 4248, 4249, 5, 399, 0, 0, 4249, 4250, 3, 594, 297, 0, 4250, 4251, 5, 400, 0, 0, 4251, 4253, 1, 0, 0, 0, 4252, 4247, 1, 0, 0, 0, 4252, 4248, 1, 0, 0, 0, 4253, 4254, 1, 0, 0, 0, 4254, 4255, 3, 592, 296, 0, 4255, 4257, 1, 0, 0, 0, 4256, 4241, 1, 0, 0, 0, 4256, 4246, 1, 0, 0, 0, 4257, 591, 1, 0, 0, 0, 4258, 4259, 3, 680, 340, 0, 4259, 4260, 5, 341, 0, 0, 4260, 4261, 3, 682, 341, 0, 4261, 4273, 1, 0, 0, 0, 4262, 4263, 3, 686, 343, 0, 4263, 4264, 5, 341, 0, 0, 4264, 4265, 3, 692, 346, 0, 4265, 4273, 1, 0, 0, 0, 4266, 4273, 3, 680, 340, 0, 4267, 4273, 3, 682, 341, 0, 4268, 4273, 3, 686, 343, 0, 4269, 4273, 3, 688, 344, 0, 4270, 4273, 3, 690, 345, 0, 4271, 4273, 3, 692, 346, 0, 4272, 4258, 1, 0, 0, 0, 4272, 4262, 1, 0, 0, 0, 4272, 4266, 1, 0, 0, 0, 4272, 4267, 1, 0, 0, 0, 4272, 4268, 1, 0, 0, 0, 4272, 4269, 1, 0, 0, 0, 4272, 4270, 1, 0, 0, 0, 4272, 4271, 1, 0, 0, 0, 4273, 593, 1, 0, 0, 0, 4274, 4279, 3, 636, 318, 0, 4275, 4276, 5, 228, 0, 0, 4276, 4278, 3, 636, 318, 0, 4277, 4275, 1, 0, 0, 0, 4278, 4281, 1, 0, 0, 0, 4279, 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 595, 1, 0, 0, 0, 4281, 4279, 1, 0, 0, 0, 4282, 4294, 3, 586, 293, 0, 4283, 4294, 3, 590, 295, 0, 4284, 4294, 3, 574, 287, 0, 4285, 4294, 3, 582, 291, 0, 4286, 4294, 3, 580, 290, 0, 4287, 4294, 3, 576, 288, 0, 4288, 4294, 3, 578, 289, 0, 4289, 4294, 3, 614, 307, 0, 4290, 4294, 3, 564, 282, 0, 4291, 4294, 3, 550, 275, 0, 4292, 4294, 3, 652, 326, 0, 4293, 4282, 1, 0, 0, 0, 4293, 4283, 1, 0, 0, 0, 4293, 4284, 1, 0, 0, 0, 4293, 4285, 1, 0, 0, 0, 4293, 4286, 1, 0, 0, 0, 4293, 4287, 1, 0, 0, 0, 4293, 4288, 1, 0, 0, 0, 4293, 4289, 1, 0, 0, 0, 4293, 4290, 1, 0, 0, 0, 4293, 4291, 1, 0, 0, 0, 4293, 4292, 1, 0, 0, 0, 4294, 597, 1, 0, 0, 0, 4295, 4297, 7, 36, 0, 0, 4296, 4295, 1, 0, 0, 0, 4297, 4300, 1, 0, 0, 0, 4298, 4296, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4301, 1, 0, 0, 0, 4300, 4298, 1, 0, 0, 0, 4301, 4310, 3, 596, 298, 0, 4302, 4303, 5, 401, 0, 0, 4303, 4304, 3, 594, 297, 0, 4304, 4305, 5, 402, 0, 0, 4305, 4309, 1, 0, 0, 0, 4306, 4307, 5, 395, 0, 0, 4307, 4309, 3, 652, 326, 0, 4308, 4302, 1, 0, 0, 0, 4308, 4306, 1, 0, 0, 0, 4309, 4312, 1, 0, 0, 0, 4310, 4308, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 599, 1, 0, 0, 0, 4312, 4310, 1, 0, 0, 0, 4313, 4318, 3, 598, 299, 0, 4314, 4315, 5, 423, 0, 0, 4315, 4317, 3, 598, 299, 0, 4316, 4314, 1, 0, 0, 0, 4317, 4320, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 601, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4321, 4326, 3, 600, 300, 0, 4322, 4323, 7, 37, 0, 0, 4323, 4325, 3, 600, 300, 0, 4324, 4322, 1, 0, 0, 0, 4325, 4328, 1, 0, 0, 0, 4326, 4324, 1, 0, 0, 0, 4326, 4327, 1, 0, 0, 0, 4327, 603, 1, 0, 0, 0, 4328, 4326, 1, 0, 0, 0, 4329, 4334, 3, 602, 301, 0, 4330, 4331, 7, 38, 0, 0, 4331, 4333, 3, 602, 301, 0, 4332, 4330, 1, 0, 0, 0, 4333, 4336, 1, 0, 0, 0, 4334, 4332, 1, 0, 0, 0, 4334, 4335, 1, 0, 0, 0, 4335, 605, 1, 0, 0, 0, 4336, 4334, 1, 0, 0, 0, 4337, 4342, 3, 604, 302, 0, 4338, 4339, 5, 422, 0, 0, 4339, 4341, 3, 604, 302, 0, 4340, 4338, 1, 0, 0, 0, 4341, 4344, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 607, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4345, 4350, 3, 606, 303, 0, 4346, 4347, 5, 419, 0, 0, 4347, 4349, 3, 606, 303, 0, 4348, 4346, 1, 0, 0, 0, 4349, 4352, 1, 0, 0, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 609, 1, 0, 0, 0, 4352, 4350, 1, 0, 0, 0, 4353, 4358, 3, 608, 304, 0, 4354, 4355, 5, 421, 0, 0, 4355, 4357, 3, 608, 304, 0, 4356, 4354, 1, 0, 0, 0, 4357, 4360, 1, 0, 0, 0, 4358, 4356, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 611, 1, 0, 0, 0, 4360, 4358, 1, 0, 0, 0, 4361, 4362, 7, 39, 0, 0, 4362, 613, 1, 0, 0, 0, 4363, 4364, 5, 399, 0, 0, 4364, 4365, 3, 378, 189, 0, 4365, 4366, 5, 400, 0, 0, 4366, 615, 1, 0, 0, 0, 4367, 4369, 3, 610, 305, 0, 4368, 4370, 3, 618, 309, 0, 4369, 4368, 1, 0, 0, 0, 4369, 4370, 1, 0, 0, 0, 4370, 4374, 1, 0, 0, 0, 4371, 4372, 5, 117, 0, 0, 4372, 4374, 3, 614, 307, 0, 4373, 4367, 1, 0, 0, 0, 4373, 4371, 1, 0, 0, 0, 4374, 617, 1, 0, 0, 0, 4375, 4376, 3, 612, 306, 0, 4376, 4377, 3, 610, 305, 0, 4377, 4382, 1, 0, 0, 0, 4378, 4382, 3, 620, 310, 0, 4379, 4380, 5, 216, 0, 0, 4380, 4382, 3, 624, 312, 0, 4381, 4375, 1, 0, 0, 0, 4381, 4378, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4382, 619, 1, 0, 0, 0, 4383, 4384, 5, 154, 0, 0, 4384, 4398, 3, 622, 311, 0, 4385, 4386, 5, 25, 0, 0, 4386, 4387, 3, 610, 305, 0, 4387, 4388, 5, 11, 0, 0, 4388, 4389, 3, 610, 305, 0, 4389, 4398, 1, 0, 0, 0, 4390, 4391, 5, 184, 0, 0, 4391, 4392, 7, 40, 0, 0, 4392, 4398, 3, 550, 275, 0, 4393, 4394, 3, 648, 324, 0, 4394, 4395, 7, 41, 0, 0, 4395, 4396, 3, 614, 307, 0, 4396, 4398, 1, 0, 0, 0, 4397, 4383, 1, 0, 0, 0, 4397, 4385, 1, 0, 0, 0, 4397, 4390, 1, 0, 0, 0, 4397, 4393, 1, 0, 0, 0, 4398, 621, 1, 0, 0, 0, 4399, 4402, 3, 614, 307, 0, 4400, 4402, 3, 550, 275, 0, 4401, 4399, 1, 0, 0, 0, 4401, 4400, 1, 0, 0, 0, 4402, 623, 1, 0, 0, 0, 4403, 4404, 7, 42, 0, 0, 4404, 4407, 3, 610, 305, 0, 4405, 4407, 3, 620, 310, 0, 4406, 4403, 1, 0, 0, 0, 4406, 4405, 1, 0, 0, 0, 4407, 625, 1, 0, 0, 0, 4408, 4409, 5, 167, 0, 0, 4409, 4410, 5, 96, 0, 0, 4410, 4411, 5, 139, 0, 0, 4411, 627, 1, 0, 0, 0, 4412, 4420, 5, 405, 0, 0, 4413, 4420, 5, 406, 0, 0, 4414, 4420, 5, 407, 0, 0, 4415, 4416, 5, 167, 0, 0, 4416, 4417, 5, 216, 0, 0, 4417, 4418, 5, 96, 0, 0, 4418, 4420, 5, 139, 0, 0, 4419, 4412, 1, 0, 0, 0, 4419, 4413, 1, 0, 0, 0, 4419, 4414, 1, 0, 0, 0, 4419, 4415, 1, 0, 0, 0, 4420, 629, 1, 0, 0, 0, 4421, 4430, 3, 616, 308, 0, 4422, 4423, 3, 628, 314, 0, 4423, 4424, 3, 616, 308, 0, 4424, 4429, 1, 0, 0, 0, 4425, 4426, 3, 626, 313, 0, 4426, 4427, 3, 616, 308, 0, 4427, 4429, 1, 0, 0, 0, 4428, 4422, 1, 0, 0, 0, 4428, 4425, 1, 0, 0, 0, 4429, 4432, 1, 0, 0, 0, 4430, 4428, 1, 0, 0, 0, 4430, 4431, 1, 0, 0, 0, 4431, 631, 1, 0, 0, 0, 4432, 4430, 1, 0, 0, 0, 4433, 4440, 5, 219, 0, 0, 4434, 4440, 5, 350, 0, 0, 4435, 4440, 5, 125, 0, 0, 4436, 4440, 5, 360, 0, 0, 4437, 4438, 5, 216, 0, 0, 4438, 4440, 7, 43, 0, 0, 4439, 4433, 1, 0, 0, 0, 4439, 4434, 1, 0, 0, 0, 4439, 4435, 1, 0, 0, 0, 4439, 4436, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 633, 1, 0, 0, 0, 4441, 4443, 5, 216, 0, 0, 4442, 4441, 1, 0, 0, 0, 4443, 4446, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 4447, 1, 0, 0, 0, 4446, 4444, 1, 0, 0, 0, 4447, 4450, 3, 630, 315, 0, 4448, 4449, 5, 167, 0, 0, 4449, 4451, 3, 632, 316, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4451, 1, 0, 0, 0, 4451, 635, 1, 0, 0, 0, 4452, 4457, 3, 634, 317, 0, 4453, 4454, 5, 11, 0, 0, 4454, 4456, 3, 634, 317, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4459, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 637, 1, 0, 0, 0, 4459, 4457, 1, 0, 0, 0, 4460, 4462, 3, 480, 240, 0, 4461, 4463, 3, 640, 320, 0, 4462, 4461, 1, 0, 0, 0, 4462, 4463, 1, 0, 0, 0, 4463, 639, 1, 0, 0, 0, 4464, 4465, 5, 237, 0, 0, 4465, 4466, 5, 399, 0, 0, 4466, 4471, 3, 642, 321, 0, 4467, 4468, 5, 397, 0, 0, 4468, 4470, 3, 642, 321, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4473, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4474, 1, 0, 0, 0, 4473, 4471, 1, 0, 0, 0, 4474, 4475, 5, 400, 0, 0, 4475, 641, 1, 0, 0, 0, 4476, 4479, 3, 652, 326, 0, 4477, 4478, 5, 405, 0, 0, 4478, 4480, 3, 586, 293, 0, 4479, 4477, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 643, 1, 0, 0, 0, 4481, 4482, 5, 399, 0, 0, 4482, 4487, 3, 646, 323, 0, 4483, 4484, 5, 397, 0, 0, 4484, 4486, 3, 646, 323, 0, 4485, 4483, 1, 0, 0, 0, 4486, 4489, 1, 0, 0, 0, 4487, 4485, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 4490, 1, 0, 0, 0, 4489, 4487, 1, 0, 0, 0, 4490, 4491, 5, 400, 0, 0, 4491, 645, 1, 0, 0, 0, 4492, 4495, 3, 652, 326, 0, 4493, 4496, 5, 184, 0, 0, 4494, 4496, 3, 648, 324, 0, 4495, 4493, 1, 0, 0, 0, 4495, 4494, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4498, 3, 586, 293, 0, 4498, 647, 1, 0, 0, 0, 4499, 4500, 7, 44, 0, 0, 4500, 649, 1, 0, 0, 0, 4501, 4502, 7, 45, 0, 0, 4502, 651, 1, 0, 0, 0, 4503, 4506, 5, 432, 0, 0, 4504, 4506, 3, 658, 329, 0, 4505, 4503, 1, 0, 0, 0, 4505, 4504, 1, 0, 0, 0, 4506, 653, 1, 0, 0, 0, 4507, 4510, 3, 652, 326, 0, 4508, 4509, 5, 395, 0, 0, 4509, 4511, 3, 652, 326, 0, 4510, 4508, 1, 0, 0, 0, 4510, 4511, 1, 0, 0, 0, 4511, 655, 1, 0, 0, 0, 4512, 4513, 3, 652, 326, 0, 4513, 657, 1, 0, 0, 0, 4514, 4515, 7, 46, 0, 0, 4515, 659, 1, 0, 0, 0, 4516, 4517, 7, 47, 0, 0, 4517, 661, 1, 0, 0, 0, 4518, 4570, 3, 652, 326, 0, 4519, 4570, 5, 299, 0, 0, 4520, 4570, 5, 171, 0, 0, 4521, 4570, 5, 237, 0, 0, 4522, 4570, 5, 198, 0, 0, 4523, 4570, 5, 268, 0, 0, 4524, 4570, 5, 369, 0, 0, 4525, 4570, 5, 241, 0, 0, 4526, 4570, 5, 165, 0, 0, 4527, 4570, 5, 292, 0, 0, 4528, 4570, 5, 356, 0, 0, 4529, 4570, 5, 144, 0, 0, 4530, 4570, 5, 203, 0, 0, 4531, 4570, 5, 219, 0, 0, 4532, 4570, 5, 126, 0, 0, 4533, 4570, 5, 188, 0, 0, 4534, 4570, 5, 101, 0, 0, 4535, 4570, 5, 329, 0, 0, 4536, 4570, 5, 224, 0, 0, 4537, 4570, 5, 291, 0, 0, 4538, 4570, 5, 145, 0, 0, 4539, 4570, 5, 304, 0, 0, 4540, 4570, 5, 135, 0, 0, 4541, 4570, 5, 318, 0, 0, 4542, 4570, 5, 161, 0, 0, 4543, 4570, 5, 54, 0, 0, 4544, 4570, 5, 166, 0, 0, 4545, 4570, 5, 358, 0, 0, 4546, 4570, 5, 45, 0, 0, 4547, 4570, 5, 347, 0, 0, 4548, 4570, 5, 96, 0, 0, 4549, 4570, 5, 154, 0, 0, 4550, 4570, 5, 269, 0, 0, 4551, 4570, 5, 337, 0, 0, 4552, 4570, 5, 225, 0, 0, 4553, 4570, 5, 108, 0, 0, 4554, 4570, 5, 141, 0, 0, 4555, 4570, 5, 365, 0, 0, 4556, 4570, 5, 21, 0, 0, 4557, 4570, 5, 78, 0, 0, 4558, 4570, 5, 374, 0, 0, 4559, 4570, 5, 336, 0, 0, 4560, 4570, 5, 167, 0, 0, 4561, 4570, 5, 134, 0, 0, 4562, 4570, 5, 216, 0, 0, 4563, 4570, 5, 27, 0, 0, 4564, 4570, 5, 370, 0, 0, 4565, 4570, 5, 263, 0, 0, 4566, 4570, 5, 25, 0, 0, 4567, 4570, 5, 62, 0, 0, 4568, 4570, 5, 17, 0, 0, 4569, 4518, 1, 0, 0, 0, 4569, 4519, 1, 0, 0, 0, 4569, 4520, 1, 0, 0, 0, 4569, 4521, 1, 0, 0, 0, 4569, 4522, 1, 0, 0, 0, 4569, 4523, 1, 0, 0, 0, 4569, 4524, 1, 0, 0, 0, 4569, 4525, 1, 0, 0, 0, 4569, 4526, 1, 0, 0, 0, 4569, 4527, 1, 0, 0, 0, 4569, 4528, 1, 0, 0, 0, 4569, 4529, 1, 0, 0, 0, 4569, 4530, 1, 0, 0, 0, 4569, 4531, 1, 0, 0, 0, 4569, 4532, 1, 0, 0, 0, 4569, 4533, 1, 0, 0, 0, 4569, 4534, 1, 0, 0, 0, 4569, 4535, 1, 0, 0, 0, 4569, 4536, 1, 0, 0, 0, 4569, 4537, 1, 0, 0, 0, 4569, 4538, 1, 0, 0, 0, 4569, 4539, 1, 0, 0, 0, 4569, 4540, 1, 0, 0, 0, 4569, 4541, 1, 0, 0, 0, 4569, 4542, 1, 0, 0, 0, 4569, 4543, 1, 0, 0, 0, 4569, 4544, 1, 0, 0, 0, 4569, 4545, 1, 0, 0, 0, 4569, 4546, 1, 0, 0, 0, 4569, 4547, 1, 0, 0, 0, 4569, 4548, 1, 0, 0, 0, 4569, 4549, 1, 0, 0, 0, 4569, 4550, 1, 0, 0, 0, 4569, 4551, 1, 0, 0, 0, 4569, 4552, 1, 0, 0, 0, 4569, 4553, 1, 0, 0, 0, 4569, 4554, 1, 0, 0, 0, 4569, 4555, 1, 0, 0, 0, 4569, 4556, 1, 0, 0, 0, 4569, 4557, 1, 0, 0, 0, 4569, 4558, 1, 0, 0, 0, 4569, 4559, 1, 0, 0, 0, 4569, 4560, 1, 0, 0, 0, 4569, 4561, 1, 0, 0, 0, 4569, 4562, 1, 0, 0, 0, 4569, 4563, 1, 0, 0, 0, 4569, 4564, 1, 0, 0, 0, 4569, 4565, 1, 0, 0, 0, 4569, 4566, 1, 0, 0, 0, 4569, 4567, 1, 0, 0, 0, 4569, 4568, 1, 0, 0, 0, 4570, 663, 1, 0, 0, 0, 4571, 4572, 5, 58, 0, 0, 4572, 4573, 5, 280, 0, 0, 4573, 4575, 5, 243, 0, 0, 4574, 4576, 3, 32, 16, 0, 4575, 4574, 1, 0, 0, 0, 4575, 4576, 1, 0, 0, 0, 4576, 4586, 1, 0, 0, 0, 4577, 4578, 3, 652, 326, 0, 4578, 4579, 5, 184, 0, 0, 4579, 4580, 3, 652, 326, 0, 4580, 4587, 1, 0, 0, 0, 4581, 4584, 3, 652, 326, 0, 4582, 4583, 5, 387, 0, 0, 4583, 4585, 3, 670, 335, 0, 4584, 4582, 1, 0, 0, 0, 4584, 4585, 1, 0, 0, 0, 4585, 4587, 1, 0, 0, 0, 4586, 4577, 1, 0, 0, 0, 4586, 4581, 1, 0, 0, 0, 4587, 4737, 1, 0, 0, 0, 4588, 4589, 5, 9, 0, 0, 4589, 4590, 5, 280, 0, 0, 4590, 4591, 5, 243, 0, 0, 4591, 4616, 3, 652, 326, 0, 4592, 4617, 5, 373, 0, 0, 4593, 4617, 3, 678, 339, 0, 4594, 4595, 5, 304, 0, 0, 4595, 4617, 3, 670, 335, 0, 4596, 4597, 5, 363, 0, 0, 4597, 4602, 3, 672, 336, 0, 4598, 4599, 5, 397, 0, 0, 4599, 4601, 3, 672, 336, 0, 4600, 4598, 1, 0, 0, 0, 4601, 4604, 1, 0, 0, 0, 4602, 4600, 1, 0, 0, 0, 4602, 4603, 1, 0, 0, 0, 4603, 4617, 1, 0, 0, 0, 4604, 4602, 1, 0, 0, 0, 4605, 4606, 5, 274, 0, 0, 4606, 4607, 5, 341, 0, 0, 4607, 4617, 3, 652, 326, 0, 4608, 4610, 3, 674, 337, 0, 4609, 4611, 3, 676, 338, 0, 4610, 4609, 1, 0, 0, 0, 4610, 4611, 1, 0, 0, 0, 4611, 4617, 1, 0, 0, 0, 4612, 4614, 3, 676, 338, 0, 4613, 4615, 3, 674, 337, 0, 4614, 4613, 1, 0, 0, 0, 4614, 4615, 1, 0, 0, 0, 4615, 4617, 1, 0, 0, 0, 4616, 4592, 1, 0, 0, 0, 4616, 4593, 1, 0, 0, 0, 4616, 4594, 1, 0, 0, 0, 4616, 4596, 1, 0, 0, 0, 4616, 4605, 1, 0, 0, 0, 4616, 4608, 1, 0, 0, 0, 4616, 4612, 1, 0, 0, 0, 4617, 4737, 1, 0, 0, 0, 4618, 4619, 5, 101, 0, 0, 4619, 4620, 5, 280, 0, 0, 4620, 4622, 5, 243, 0, 0, 4621, 4623, 3, 30, 15, 0, 4622, 4621, 1, 0, 0, 0, 4622, 4623, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4737, 3, 652, 326, 0, 4625, 4628, 3, 676, 338, 0, 4626, 4628, 3, 678, 339, 0, 4627, 4625, 1, 0, 0, 0, 4627, 4626, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4630, 5, 390, 0, 0, 4630, 4631, 5, 197, 0, 0, 4631, 4737, 1, 0, 0, 0, 4632, 4644, 5, 278, 0, 0, 4633, 4634, 5, 3, 0, 0, 4634, 4635, 5, 280, 0, 0, 4635, 4636, 5, 243, 0, 0, 4636, 4637, 5, 387, 0, 0, 4637, 4645, 3, 652, 326, 0, 4638, 4639, 5, 280, 0, 0, 4639, 4640, 5, 243, 0, 0, 4640, 4641, 3, 652, 326, 0, 4641, 4642, 5, 387, 0, 0, 4642, 4643, 3, 652, 326, 0, 4643, 4645, 1, 0, 0, 0, 4644, 4633, 1, 0, 0, 0, 4644, 4638, 1, 0, 0, 0, 4645, 4737, 1, 0, 0, 0, 4646, 4647, 5, 58, 0, 0, 4647, 4648, 5, 348, 0, 0, 4648, 4649, 3, 652, 326, 0, 4649, 4650, 5, 395, 0, 0, 4650, 4651, 3, 652, 326, 0, 4651, 4652, 5, 383, 0, 0, 4652, 4653, 3, 698, 349, 0, 4653, 4654, 5, 99, 0, 0, 4654, 4655, 3, 700, 350, 0, 4655, 4737, 1, 0, 0, 0, 4656, 4657, 5, 9, 0, 0, 4657, 4658, 5, 348, 0, 0, 4658, 4659, 3, 652, 326, 0, 4659, 4660, 5, 395, 0, 0, 4660, 4677, 3, 652, 326, 0, 4661, 4662, 5, 383, 0, 0, 4662, 4663, 3, 698, 349, 0, 4663, 4664, 5, 99, 0, 0, 4664, 4665, 3, 700, 350, 0, 4665, 4678, 1, 0, 0, 0, 4666, 4667, 5, 4, 0, 0, 4667, 4671, 5, 341, 0, 0, 4668, 4669, 5, 101, 0, 0, 4669, 4671, 5, 139, 0, 0, 4670, 4666, 1, 0, 0, 0, 4670, 4668, 1, 0, 0, 0, 4671, 4675, 1, 0, 0, 0, 4672, 4673, 5, 246, 0, 0, 4673, 4676, 3, 696, 348, 0, 4674, 4676, 5, 362, 0, 0, 4675, 4672, 1, 0, 0, 0, 4675, 4674, 1, 0, 0, 0, 4676, 4678, 1, 0, 0, 0, 4677, 4661, 1, 0, 0, 0, 4677, 4670, 1, 0, 0, 0, 4678, 4737, 1, 0, 0, 0, 4679, 4680, 5, 101, 0, 0, 4680, 4681, 5, 348, 0, 0, 4681, 4682, 3, 652, 326, 0, 4682, 4683, 5, 395, 0, 0, 4683, 4684, 3, 652, 326, 0, 4684, 4737, 1, 0, 0, 0, 4685, 4686, 5, 58, 0, 0, 4686, 4687, 5, 246, 0, 0, 4687, 4688, 3, 652, 326, 0, 4688, 4689, 5, 395, 0, 0, 4689, 4690, 3, 696, 348, 0, 4690, 4691, 5, 387, 0, 0, 4691, 4692, 3, 704, 352, 0, 4692, 4737, 1, 0, 0, 0, 4693, 4694, 5, 9, 0, 0, 4694, 4695, 5, 246, 0, 0, 4695, 4696, 3, 652, 326, 0, 4696, 4697, 5, 395, 0, 0, 4697, 4705, 3, 696, 348, 0, 4698, 4699, 5, 304, 0, 0, 4699, 4706, 3, 704, 352, 0, 4700, 4701, 5, 363, 0, 0, 4701, 4706, 5, 294, 0, 0, 4702, 4703, 7, 48, 0, 0, 4703, 4704, 5, 348, 0, 0, 4704, 4706, 3, 652, 326, 0, 4705, 4698, 1, 0, 0, 0, 4705, 4700, 1, 0, 0, 0, 4705, 4702, 1, 0, 0, 0, 4706, 4737, 1, 0, 0, 0, 4707, 4708, 5, 101, 0, 0, 4708, 4709, 5, 246, 0, 0, 4709, 4710, 3, 652, 326, 0, 4710, 4711, 5, 395, 0, 0, 4711, 4712, 3, 696, 348, 0, 4712, 4737, 1, 0, 0, 0, 4713, 4714, 7, 49, 0, 0, 4714, 4715, 3, 666, 333, 0, 4715, 4716, 5, 200, 0, 0, 4716, 4717, 5, 426, 0, 0, 4717, 4718, 5, 154, 0, 0, 4718, 4722, 3, 652, 326, 0, 4719, 4720, 5, 341, 0, 0, 4720, 4723, 3, 696, 348, 0, 4721, 4723, 5, 362, 0, 0, 4722, 4719, 1, 0, 0, 0, 4722, 4721, 1, 0, 0, 0, 4723, 4727, 1, 0, 0, 0, 4724, 4725, 5, 387, 0, 0, 4725, 4726, 5, 229, 0, 0, 4726, 4728, 5, 431, 0, 0, 4727, 4724, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 4737, 1, 0, 0, 0, 4729, 4730, 5, 101, 0, 0, 4730, 4731, 3, 666, 333, 0, 4731, 4732, 5, 200, 0, 0, 4732, 4733, 5, 426, 0, 0, 4733, 4734, 5, 154, 0, 0, 4734, 4735, 3, 652, 326, 0, 4735, 4737, 1, 0, 0, 0, 4736, 4571, 1, 0, 0, 0, 4736, 4588, 1, 0, 0, 0, 4736, 4618, 1, 0, 0, 0, 4736, 4627, 1, 0, 0, 0, 4736, 4632, 1, 0, 0, 0, 4736, 4646, 1, 0, 0, 0, 4736, 4656, 1, 0, 0, 0, 4736, 4679, 1, 0, 0, 0, 4736, 4685, 1, 0, 0, 0, 4736, 4693, 1, 0, 0, 0, 4736, 4707, 1, 0, 0, 0, 4736, 4713, 1, 0, 0, 0, 4736, 4729, 1, 0, 0, 0, 4737, 665, 1, 0, 0, 0, 4738, 4739, 7, 50, 0, 0, 4739, 667, 1, 0, 0, 0, 4740, 4741, 5, 259, 0, 0, 4741, 4742, 5, 405, 0, 0, 4742, 4748, 5, 431, 0, 0, 4743, 4744, 5, 83, 0, 0, 4744, 4745, 5, 246, 0, 0, 4745, 4746, 5, 405, 0, 0, 4746, 4748, 3, 696, 348, 0, 4747, 4740, 1, 0, 0, 0, 4747, 4743, 1, 0, 0, 0, 4748, 669, 1, 0, 0, 0, 4749, 4754, 3, 668, 334, 0, 4750, 4751, 5, 397, 0, 0, 4751, 4753, 3, 668, 334, 0, 4752, 4750, 1, 0, 0, 0, 4753, 4756, 1, 0, 0, 0, 4754, 4752, 1, 0, 0, 0, 4754, 4755, 1, 0, 0, 0, 4755, 671, 1, 0, 0, 0, 4756, 4754, 1, 0, 0, 0, 4757, 4761, 5, 259, 0, 0, 4758, 4759, 5, 83, 0, 0, 4759, 4761, 5, 246, 0, 0, 4760, 4757, 1, 0, 0, 0, 4760, 4758, 1, 0, 0, 0, 4761, 673, 1, 0, 0, 0, 4762, 4765, 5, 2, 0, 0, 4763, 4764, 5, 387, 0, 0, 4764, 4766, 5, 278, 0, 0, 4765, 4763, 1, 0, 0, 0, 4765, 4766, 1, 0, 0, 0, 4766, 675, 1, 0, 0, 0, 4767, 4768, 7, 51, 0, 0, 4768, 677, 1, 0, 0, 0, 4769, 4770, 7, 52, 0, 0, 4770, 679, 1, 0, 0, 0, 4771, 4772, 7, 53, 0, 0, 4772, 681, 1, 0, 0, 0, 4773, 4774, 7, 54, 0, 0, 4774, 683, 1, 0, 0, 0, 4775, 4776, 7, 55, 0, 0, 4776, 685, 1, 0, 0, 0, 4777, 4778, 7, 56, 0, 0, 4778, 687, 1, 0, 0, 0, 4779, 4780, 7, 57, 0, 0, 4780, 689, 1, 0, 0, 0, 4781, 4782, 7, 58, 0, 0, 4782, 691, 1, 0, 0, 0, 4783, 4784, 7, 59, 0, 0, 4784, 693, 1, 0, 0, 0, 4785, 4786, 7, 60, 0, 0, 4786, 695, 1, 0, 0, 0, 4787, 4792, 3, 652, 326, 0, 4788, 4789, 5, 395, 0, 0, 4789, 4791, 3, 652, 326, 0, 4790, 4788, 1, 0, 0, 0, 4791, 4794, 1, 0, 0, 0, 4792, 4790, 1, 0, 0, 0, 4792, 4793, 1, 0, 0, 0, 4793, 697, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4796, 3, 652, 326, 0, 4796, 4797, 5, 411, 0, 0, 4797, 4798, 7, 27, 0, 0, 4798, 699, 1, 0, 0, 0, 4799, 4804, 5, 176, 0, 0, 4800, 4801, 5, 211, 0, 0, 4801, 4802, 5, 341, 0, 0, 4802, 4804, 3, 696, 348, 0, 4803, 4799, 1, 0, 0, 0, 4803, 4800, 1, 0, 0, 0, 4804, 701, 1, 0, 0, 0, 4805, 4806, 5, 8, 0, 0, 4806, 4807, 5, 405, 0, 0, 4807, 4818, 5, 431, 0, 0, 4808, 4809, 5, 259, 0, 0, 4809, 4810, 5, 405, 0, 0, 4810, 4818, 5, 431, 0, 0, 4811, 4812, 5, 294, 0, 0, 4812, 4813, 5, 405, 0, 0, 4813, 4818, 5, 426, 0, 0, 4814, 4815, 5, 240, 0, 0, 4815, 4816, 5, 405, 0, 0, 4816, 4818, 3, 696, 348, 0, 4817, 4805, 1, 0, 0, 0, 4817, 4808, 1, 0, 0, 0, 4817, 4811, 1, 0, 0, 0, 4817, 4814, 1, 0, 0, 0, 4818, 703, 1, 0, 0, 0, 4819, 4824, 3, 702, 351, 0, 4820, 4821, 5, 397, 0, 0, 4821, 4823, 3, 702, 351, 0, 4822, 4820, 1, 0, 0, 0, 4823, 4826, 1, 0, 0, 0, 4824, 4822, 1, 0, 0, 0, 4824, 4825, 1, 0, 0, 0, 4825, 705, 1, 0, 0, 0, 4826, 4824, 1, 0, 0, 0, 621, 709, 716, 719, 725, 731, 738, 748, 751, 755, 770, 777, 783, 788, 793, 796, 820, 827, 830, 835, 840, 846, 850, 863, 867, 871, 876, 883, 887, 892, 899, 903, 908, 956, 963, 968, 991, 995, 999, 1002, 1006, 1011, 1017, 1021, 1027, 1029, 1040, 1044, 1051, 1059, 1062, 1067, 1071, 1074, 1084, 1092, 1096, 1099, 1103, 1107, 1110, 1115, 1121, 1126, 1131, 1135, 1146, 1148, 1152, 1162, 1166, 1172, 1175, 1182, 1187, 1195, 1200, 1204, 1212, 1217, 1223, 1229, 1232, 1235, 1238, 1247, 1255, 1260, 1268, 1275, 1278, 1281, 1283, 1294, 1296, 1299, 1302, 1305, 1308, 1311, 1313, 1325, 1331, 1339, 1341, 1351, 1384, 1389, 1393, 1397, 1404, 1411, 1417, 1421, 1424, 1431, 1454, 1459, 1463, 1471, 1480, 1487, 1493, 1500, 1503, 1509, 1516, 1524, 1533, 1542, 1549, 1569, 1576, 1578, 1585, 1595, 1603, 1607, 1611, 1624, 1633, 1649, 1653, 1658, 1663, 1666, 1669, 1672, 1675, 1678, 1683, 1692, 1696, 1703, 1706, 1709, 1712, 1724, 1730, 1756, 1764, 1768, 1771, 1774, 1777, 1780, 1783, 1786, 1789, 1798, 1808, 1811, 1831, 1837, 1843, 1846, 1848, 1855, 1862, 1875, 1880, 1889, 1897, 1905, 1918, 1931, 1947, 1951, 1966, 1972, 1975, 1978, 1981, 1984, 1988, 2003, 2006, 2017, 2031, 2065, 2073, 2078, 2086, 2091, 2096, 2103, 2111, 2119, 2127, 2132, 2144, 2148, 2156, 2165, 2168, 2172, 2179, 2185, 2189, 2195, 2199, 2211, 2220, 2231, 2235, 2242, 2254, 2264, 2267, 2274, 2280, 2284, 2287, 2290, 2296, 2300, 2304, 2309, 2313, 2317, 2321, 2329, 2333, 2337, 2341, 2345, 2353, 2357, 2361, 2369, 2374, 2379, 2383, 2387, 2394, 2403, 2411, 2423, 2441, 2444, 2450, 2476, 2479, 2485, 2493, 2501, 2514, 2521, 2524, 2527, 2530, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2556, 2559, 2562, 2565, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2588, 2594, 2598, 2601, 2604, 2607, 2610, 2613, 2620, 2624, 2627, 2630, 2633, 2636, 2639, 2646, 2649, 2657, 2661, 2668, 2670, 2673, 2678, 2681, 2685, 2690, 2696, 2704, 2712, 2722, 2725, 2729, 2733, 2738, 2745, 2749, 2751, 2755, 2762, 2767, 2780, 2788, 2807, 2817, 2830, 2840, 2844, 2848, 2854, 2861, 2868, 2877, 2884, 2904, 2907, 2921, 2936, 2940, 2960, 2972, 2978, 2981, 2984, 2990, 2996, 3003, 3011, 3017, 3021, 3026, 3029, 3033, 3040, 3045, 3050, 3053, 3055, 3063, 3071, 3075, 3079, 3083, 3100, 3117, 3124, 3133, 3138, 3141, 3144, 3148, 3163, 3177, 3180, 3191, 3195, 3198, 3201, 3205, 3210, 3213, 3216, 3219, 3222, 3225, 3231, 3234, 3237, 3240, 3243, 3246, 3249, 3252, 3255, 3258, 3262, 3264, 3270, 3275, 3278, 3281, 3284, 3287, 3293, 3296, 3299, 3302, 3305, 3308, 3311, 3314, 3317, 3320, 3324, 3326, 3328, 3333, 3338, 3342, 3346, 3351, 3356, 3365, 3375, 3383, 3395, 3398, 3404, 3411, 3418, 3425, 3432, 3441, 3445, 3452, 3457, 3461, 3465, 3468, 3471, 3482, 3486, 3488, 3491, 3504, 3507, 3510, 3522, 3525, 3532, 3541, 3546, 3548, 3550, 3567, 3570, 3578, 3581, 3585, 3588, 3591, 3594, 3597, 3609, 3617, 3624, 3627, 3634, 3637, 3642, 3649, 3657, 3663, 3668, 3672, 3677, 3681, 3688, 3702, 3705, 3718, 3728, 3731, 3740, 3749, 3752, 3758, 3761, 3766, 3769, 3782, 3788, 3790, 3800, 3806, 3809, 3819, 3824, 3826, 3842, 3848, 3850, 3857, 3864, 3878, 3884, 3887, 3890, 3893, 3902, 3909, 3915, 3924, 3928, 3936, 3946, 3956, 3961, 3965, 3971, 3976, 3986, 3990, 3993, 3998, 4001, 4005, 4010, 4021, 4023, 4032, 4055, 4065, 4068, 4075, 4078, 4088, 4095, 4098, 4100, 4111, 4121, 4123, 4132, 4137, 4146, 4159, 4163, 4175, 4179, 4188, 4207, 4225, 4237, 4252, 4256, 4272, 4279, 4293, 4298, 4308, 4310, 4318, 4326, 4334, 4342, 4350, 4358, 4369, 4373, 4381, 4397, 4401, 4406, 4419, 4428, 4430, 4439, 4444, 4450, 4457, 4462, 4471, 4479, 4487, 4495, 4505, 4510, 4569, 4575, 4584, 4586, 4602, 4610, 4614, 4616, 4622, 4627, 4644, 4670, 4675, 4677, 4705, 4722, 4727, 4736, 4747, 4754, 4760, 4765, 4792, 4803, 4817, 4824] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index 5790ad3b..8a9e3444 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -703,106 +703,111 @@ export class HiveSqlParser extends SQLParserBase { public static readonly RULE_partitioningSpec = 245; public static readonly RULE_partitionTableFunctionSource = 246; public static readonly RULE_partitionedTableFunction = 247; - public static readonly RULE_whereClause = 248; - public static readonly RULE_valuesClause = 249; - public static readonly RULE_virtualTableSource = 250; - public static readonly RULE_selectClause = 251; - public static readonly RULE_selectTrfmClause = 252; - public static readonly RULE_selectItem = 253; - public static readonly RULE_trfmClause = 254; - public static readonly RULE_selectExpression = 255; - public static readonly RULE_selectExpressionList = 256; - public static readonly RULE_window_clause = 257; - public static readonly RULE_window_specification = 258; - public static readonly RULE_window_frame = 259; - public static readonly RULE_window_frame_boundary = 260; - public static readonly RULE_groupByClause = 261; - public static readonly RULE_rollupStandard = 262; - public static readonly RULE_rollupOldSyntax = 263; - public static readonly RULE_groupingSetExpression = 264; - public static readonly RULE_havingClause = 265; - public static readonly RULE_qualifyClause = 266; - public static readonly RULE_expressionOrDefault = 267; - public static readonly RULE_firstExpressionsWithAlias = 268; - public static readonly RULE_expressions = 269; - public static readonly RULE_expressionsInParenthesis = 270; - public static readonly RULE_expressionsNotInParenthesis = 271; - public static readonly RULE_orderByClause = 272; - public static readonly RULE_partitionByClause = 273; - public static readonly RULE_clusterByClause = 274; - public static readonly RULE_distributeByClause = 275; - public static readonly RULE_sortByClause = 276; - public static readonly RULE_function_ = 277; - public static readonly RULE_null_treatment = 278; - public static readonly RULE_functionNameCreate = 279; - public static readonly RULE_functionNameForDDL = 280; - public static readonly RULE_functionNameForInvoke = 281; - public static readonly RULE_castExpression = 282; - public static readonly RULE_caseExpression = 283; - public static readonly RULE_whenExpression = 284; - public static readonly RULE_floorExpression = 285; - public static readonly RULE_extractExpression = 286; - public static readonly RULE_timeQualifiers = 287; - public static readonly RULE_constant = 288; - public static readonly RULE_intervalValue = 289; - public static readonly RULE_intervalExpression = 290; - public static readonly RULE_intervalQualifiers = 291; - public static readonly RULE_expression = 292; - public static readonly RULE_atomExpression = 293; - public static readonly RULE_precedenceUnaryPrefixExpression = 294; - public static readonly RULE_precedenceBitwiseXorExpression = 295; - public static readonly RULE_precedenceStarExpression = 296; - public static readonly RULE_precedencePlusExpression = 297; - public static readonly RULE_precedenceConcatenateExpression = 298; - public static readonly RULE_precedenceAmpersandExpression = 299; - public static readonly RULE_precedenceBitwiseOrExpression = 300; - public static readonly RULE_precedenceSimilarOperator = 301; - public static readonly RULE_subQueryExpression = 302; - public static readonly RULE_precedenceSimilarExpression = 303; - public static readonly RULE_precedenceSimilarExpressionPart = 304; - public static readonly RULE_precedenceSimilarExpressionAtom = 305; - public static readonly RULE_precedenceSimilarExpressionIn = 306; - public static readonly RULE_precedenceSimilarExpressionPartNot = 307; - public static readonly RULE_precedenceDistinctOperator = 308; - public static readonly RULE_precedenceEqualOperator = 309; - public static readonly RULE_precedenceEqualExpression = 310; - public static readonly RULE_isCondition = 311; - public static readonly RULE_precedenceNotExpression = 312; - public static readonly RULE_precedenceAndExpression = 313; - public static readonly RULE_tableOrPartition = 314; - public static readonly RULE_partitionSpec = 315; - public static readonly RULE_partitionVal = 316; - public static readonly RULE_partitionSelectorSpec = 317; - public static readonly RULE_partitionSelectorVal = 318; - public static readonly RULE_subQuerySelectorOperator = 319; - public static readonly RULE_sysFuncNames = 320; - public static readonly RULE_id_ = 321; - public static readonly RULE_functionIdentifier = 322; - public static readonly RULE_principalIdentifier = 323; - public static readonly RULE_nonReserved = 324; - public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 325; - public static readonly RULE_configPropertiesItem = 326; - public static readonly RULE_resourcePlanDdlStatements = 327; - public static readonly RULE_mappingTypes = 328; - public static readonly RULE_rpAssign = 329; - public static readonly RULE_rpAssignList = 330; - public static readonly RULE_rpUnassign = 331; - public static readonly RULE_activate = 332; - public static readonly RULE_enable = 333; - public static readonly RULE_disable = 334; - public static readonly RULE_year = 335; - public static readonly RULE_month = 336; - public static readonly RULE_week = 337; - public static readonly RULE_day = 338; - public static readonly RULE_hour = 339; - public static readonly RULE_minute = 340; - public static readonly RULE_second = 341; - public static readonly RULE_decimal = 342; - public static readonly RULE_poolPath = 343; - public static readonly RULE_triggerAtomExpression = 344; - public static readonly RULE_triggerActionExpression = 345; - public static readonly RULE_poolAssign = 346; - public static readonly RULE_poolAssignList = 347; + public static readonly RULE_atomPartitionedTableFunction = 248; + public static readonly RULE_whereClause = 249; + public static readonly RULE_valuesClause = 250; + public static readonly RULE_atomValuesClause = 251; + public static readonly RULE_virtualTableSource = 252; + public static readonly RULE_selectClause = 253; + public static readonly RULE_selectTrfmClause = 254; + public static readonly RULE_selectList = 255; + public static readonly RULE_selectItem = 256; + public static readonly RULE_selectLiteralColumnName = 257; + public static readonly RULE_selectExpressionColumnName = 258; + public static readonly RULE_trfmClause = 259; + public static readonly RULE_selectExpression = 260; + public static readonly RULE_selectExpressionList = 261; + public static readonly RULE_window_clause = 262; + public static readonly RULE_window_specification = 263; + public static readonly RULE_window_frame = 264; + public static readonly RULE_window_frame_boundary = 265; + public static readonly RULE_groupByClause = 266; + public static readonly RULE_rollupStandard = 267; + public static readonly RULE_rollupOldSyntax = 268; + public static readonly RULE_groupingSetExpression = 269; + public static readonly RULE_havingClause = 270; + public static readonly RULE_qualifyClause = 271; + public static readonly RULE_expressionOrDefault = 272; + public static readonly RULE_firstExpressionsWithAlias = 273; + public static readonly RULE_expressions = 274; + public static readonly RULE_expressionsInParenthesis = 275; + public static readonly RULE_expressionsNotInParenthesis = 276; + public static readonly RULE_orderByClause = 277; + public static readonly RULE_partitionByClause = 278; + public static readonly RULE_clusterByClause = 279; + public static readonly RULE_distributeByClause = 280; + public static readonly RULE_sortByClause = 281; + public static readonly RULE_function_ = 282; + public static readonly RULE_null_treatment = 283; + public static readonly RULE_functionNameCreate = 284; + public static readonly RULE_functionNameForDDL = 285; + public static readonly RULE_functionNameForInvoke = 286; + public static readonly RULE_castExpression = 287; + public static readonly RULE_caseExpression = 288; + public static readonly RULE_whenExpression = 289; + public static readonly RULE_floorExpression = 290; + public static readonly RULE_extractExpression = 291; + public static readonly RULE_timeQualifiers = 292; + public static readonly RULE_constant = 293; + public static readonly RULE_intervalValue = 294; + public static readonly RULE_intervalExpression = 295; + public static readonly RULE_intervalQualifiers = 296; + public static readonly RULE_expression = 297; + public static readonly RULE_atomExpression = 298; + public static readonly RULE_precedenceUnaryPrefixExpression = 299; + public static readonly RULE_precedenceBitwiseXorExpression = 300; + public static readonly RULE_precedenceStarExpression = 301; + public static readonly RULE_precedencePlusExpression = 302; + public static readonly RULE_precedenceConcatenateExpression = 303; + public static readonly RULE_precedenceAmpersandExpression = 304; + public static readonly RULE_precedenceBitwiseOrExpression = 305; + public static readonly RULE_precedenceSimilarOperator = 306; + public static readonly RULE_subQueryExpression = 307; + public static readonly RULE_precedenceSimilarExpression = 308; + public static readonly RULE_precedenceSimilarExpressionPart = 309; + public static readonly RULE_precedenceSimilarExpressionAtom = 310; + public static readonly RULE_precedenceSimilarExpressionIn = 311; + public static readonly RULE_precedenceSimilarExpressionPartNot = 312; + public static readonly RULE_precedenceDistinctOperator = 313; + public static readonly RULE_precedenceEqualOperator = 314; + public static readonly RULE_precedenceEqualExpression = 315; + public static readonly RULE_isCondition = 316; + public static readonly RULE_precedenceNotExpression = 317; + public static readonly RULE_precedenceAndExpression = 318; + public static readonly RULE_tableOrPartition = 319; + public static readonly RULE_partitionSpec = 320; + public static readonly RULE_partitionVal = 321; + public static readonly RULE_partitionSelectorSpec = 322; + public static readonly RULE_partitionSelectorVal = 323; + public static readonly RULE_subQuerySelectorOperator = 324; + public static readonly RULE_sysFuncNames = 325; + public static readonly RULE_id_ = 326; + public static readonly RULE_functionIdentifier = 327; + public static readonly RULE_principalIdentifier = 328; + public static readonly RULE_nonReserved = 329; + public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 330; + public static readonly RULE_configPropertiesItem = 331; + public static readonly RULE_resourcePlanDdlStatements = 332; + public static readonly RULE_mappingTypes = 333; + public static readonly RULE_rpAssign = 334; + public static readonly RULE_rpAssignList = 335; + public static readonly RULE_rpUnassign = 336; + public static readonly RULE_activate = 337; + public static readonly RULE_enable = 338; + public static readonly RULE_disable = 339; + public static readonly RULE_year = 340; + public static readonly RULE_month = 341; + public static readonly RULE_week = 342; + public static readonly RULE_day = 343; + public static readonly RULE_hour = 344; + public static readonly RULE_minute = 345; + public static readonly RULE_second = 346; + public static readonly RULE_decimal = 347; + public static readonly RULE_poolPath = 348; + public static readonly RULE_triggerAtomExpression = 349; + public static readonly RULE_triggerActionExpression = 350; + public static readonly RULE_poolAssign = 351; + public static readonly RULE_poolAssignList = 352; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -1038,9 +1043,11 @@ export class HiveSqlParser extends SQLParserBase { "tableSource", "asOfClause", "dbSchemaName", "dbSchemaNameCreate", "tableOrView", "tableName", "tableNameCreate", "viewName", "viewNameCreate", "subQuerySource", "partitioningSpec", "partitionTableFunctionSource", - "partitionedTableFunction", "whereClause", "valuesClause", "virtualTableSource", - "selectClause", "selectTrfmClause", "selectItem", "trfmClause", - "selectExpression", "selectExpressionList", "window_clause", "window_specification", + "partitionedTableFunction", "atomPartitionedTableFunction", "whereClause", + "valuesClause", "atomValuesClause", "virtualTableSource", "selectClause", + "selectTrfmClause", "selectList", "selectItem", "selectLiteralColumnName", + "selectExpressionColumnName", "trfmClause", "selectExpression", + "selectExpressionList", "window_clause", "window_specification", "window_frame", "window_frame_boundary", "groupByClause", "rollupStandard", "rollupOldSyntax", "groupingSetExpression", "havingClause", "qualifyClause", "expressionOrDefault", "firstExpressionsWithAlias", "expressions", @@ -1090,21 +1097,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 699; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 33622025) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 810024961) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 35717185) !== 0) || _la === 318 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 8537089) !== 0) || _la === 387 || _la === 399) { { { - this.state = 696; + this.state = 706; this.statement(); } } - this.state = 701; + this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 702; + this.state = 712; this.match(HiveSqlParser.EOF); } } @@ -1128,12 +1135,12 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 706; + this.state = 716; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 704; + this.state = 714; this.explainStatement(); } break; @@ -1181,19 +1188,19 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 705; + this.state = 715; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 709; + this.state = 719; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 708; + this.state = 718; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1221,9 +1228,9 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 711; - this.match(HiveSqlParser.KW_EXPLAIN); this.state = 721; + this.match(HiveSqlParser.KW_EXPLAIN); + this.state = 731; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1282,31 +1289,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 715; + this.state = 725; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 712; + this.state = 722; this.explainOption(); } } } - this.state = 717; + this.state = 727; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 718; + this.state = 728; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 719; + this.state = 729; this.match(HiveSqlParser.KW_REWRITE); - this.state = 720; + this.state = 730; this.queryStatementExpression(); } break; @@ -1334,41 +1341,41 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 745; + this.state = 755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 723; + this.state = 733; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 724; + this.state = 734; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 725; + this.state = 735; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 726; + this.state = 736; this.match(HiveSqlParser.KW_CBO); - this.state = 728; + this.state = 738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 727; + this.state = 737; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1385,66 +1392,66 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 730; + this.state = 740; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 731; + this.state = 741; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 732; + this.state = 742; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 733; + this.state = 743; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 734; + this.state = 744; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 735; + this.state = 745; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 736; + this.state = 746; this.match(HiveSqlParser.KW_VECTORIZATION); - this.state = 738; + this.state = 748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 737; + this.state = 747; this.match(HiveSqlParser.KW_ONLY); } } - this.state = 741; + this.state = 751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 121 || _la === 226 || _la === 325) { { - this.state = 740; + this.state = 750; this.vectorizationDetail(); } } @@ -1454,14 +1461,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 743; + this.state = 753; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 744; + this.state = 754; this.match(HiveSqlParser.KW_DDL); } break; @@ -1490,7 +1497,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 747; + this.state = 757; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 121 || _la === 226 || _la === 325)) { this.errorHandler.recoverInline(this); @@ -1521,68 +1528,68 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 820; + this.state = 830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 749; + this.state = 759; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 750; + this.state = 760; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 751; + this.state = 761; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 752; + this.state = 762; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 753; + this.state = 763; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 754; + this.state = 764; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 755; + this.state = 765; this.match(HiveSqlParser.KW_REPL); - this.state = 756; + this.state = 766; this.match(HiveSqlParser.KW_STATUS); - this.state = 757; + this.state = 767; localContext._dbName = this.dbSchemaName(); - this.state = 760; + this.state = 770; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 758; + this.state = 768; this.match(HiveSqlParser.KW_WITH); - this.state = 759; + this.state = 769; localContext._replConf = this.keyValueProperties(); } break; @@ -1592,25 +1599,25 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 762; + this.state = 772; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 763; + this.state = 773; this.match(HiveSqlParser.KW_DELETE); - this.state = 764; + this.state = 774; this.match(HiveSqlParser.KW_FROM); - this.state = 765; + this.state = 775; this.tableName(); - this.state = 767; + this.state = 777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 766; + this.state = 776; this.whereClause(); } } @@ -1620,18 +1627,18 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 769; + this.state = 779; this.match(HiveSqlParser.KW_UPDATE); - this.state = 770; + this.state = 780; this.tableName(); - this.state = 771; + this.state = 781; this.setColumnsClause(); - this.state = 773; + this.state = 783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 772; + this.state = 782; this.whereClause(); } } @@ -1641,101 +1648,101 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 775; + this.state = 785; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 776; + this.state = 786; this.match(HiveSqlParser.KW_MERGE); - this.state = 778; + this.state = 788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 777; + this.state = 787; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 780; + this.state = 790; this.match(HiveSqlParser.KW_INTO); - this.state = 781; + this.state = 791; this.tableName(); - this.state = 786; + this.state = 796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 783; + this.state = 793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 782; + this.state = 792; this.match(HiveSqlParser.KW_AS); } } - this.state = 785; + this.state = 795; this.id_(); } } - this.state = 788; + this.state = 798; this.match(HiveSqlParser.KW_USING); - this.state = 789; + this.state = 799; this.joinSourcePart(); - this.state = 790; + this.state = 800; this.match(HiveSqlParser.KW_ON); - this.state = 791; + this.state = 801; this.expression(); - this.state = 792; + this.state = 802; this.whenClauses(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 794; + this.state = 804; this.match(HiveSqlParser.KW_PREPARE); - this.state = 795; + this.state = 805; this.id_(); - this.state = 796; + this.state = 806; this.match(HiveSqlParser.KW_FROM); - this.state = 797; + this.state = 807; this.queryStatementExpression(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 799; + this.state = 809; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 800; + this.state = 810; this.id_(); - this.state = 801; + this.state = 811; this.match(HiveSqlParser.KW_USING); - this.state = 802; + this.state = 812; this.constantList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 804; + this.state = 814; this.match(HiveSqlParser.KW_SET); - this.state = 805; + this.state = 815; this.configPropertiesItem(); - this.state = 810; + this.state = 820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 396) { { { - this.state = 806; + this.state = 816; _la = this.tokenStream.LA(1); if(!(_la === 395 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -1744,29 +1751,29 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 807; + this.state = 817; this.configPropertiesItem(); } } - this.state = 812; + this.state = 822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 813; + this.state = 823; this.match(HiveSqlParser.EQUAL); - this.state = 817; + this.state = 827; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 814; + this.state = 824; this.matchWildcard(); } } } - this.state = 819; + this.state = 829; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); } @@ -1795,46 +1802,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 822; + this.state = 832; this.match(HiveSqlParser.KW_LOAD); - this.state = 823; + this.state = 833; this.match(HiveSqlParser.KW_DATA); - this.state = 825; + this.state = 835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 824; + this.state = 834; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 827; + this.state = 837; this.match(HiveSqlParser.KW_INPATH); - this.state = 828; + this.state = 838; this.match(HiveSqlParser.StringLiteral); - this.state = 830; + this.state = 840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 829; + this.state = 839; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 832; + this.state = 842; this.match(HiveSqlParser.KW_INTO); - this.state = 833; + this.state = 843; this.match(HiveSqlParser.KW_TABLE); - this.state = 834; + this.state = 844; this.tableOrPartition(); - this.state = 836; + this.state = 846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 835; + this.state = 845; this.inputFileFormat(); } } @@ -1862,25 +1869,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 838; + this.state = 848; this.match(HiveSqlParser.KW_FOR); - this.state = 840; + this.state = 850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 839; + this.state = 849; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 842; + this.state = 852; this.match(HiveSqlParser.KW_REPLICATION); - this.state = 843; + this.state = 853; this.match(HiveSqlParser.LPAREN); - this.state = 844; + this.state = 854; this.match(HiveSqlParser.StringLiteral); - this.state = 845; + this.state = 855; this.match(HiveSqlParser.RPAREN); } } @@ -1905,22 +1912,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 847; + this.state = 857; this.match(HiveSqlParser.KW_EXPORT); - this.state = 848; + this.state = 858; this.match(HiveSqlParser.KW_TABLE); - this.state = 849; + this.state = 859; this.tableOrPartition(); - this.state = 850; + this.state = 860; this.match(HiveSqlParser.KW_TO); - this.state = 851; + this.state = 861; this.match(HiveSqlParser.StringLiteral); - this.state = 853; + this.state = 863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 852; + this.state = 862; this.replicationClause(); } } @@ -1948,40 +1955,40 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 855; + this.state = 865; this.match(HiveSqlParser.KW_IMPORT); - this.state = 861; + this.state = 871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 329) { { - this.state = 857; + this.state = 867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 856; + this.state = 866; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 859; + this.state = 869; this.match(HiveSqlParser.KW_TABLE); - this.state = 860; + this.state = 870; this.tableOrPartition(); } } - this.state = 863; + this.state = 873; this.match(HiveSqlParser.KW_FROM); - this.state = 864; + this.state = 874; localContext._path = this.match(HiveSqlParser.StringLiteral); - this.state = 866; + this.state = 876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 865; + this.state = 875; this.locationPath(); } } @@ -2008,32 +2015,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 868; + this.state = 878; this.match(HiveSqlParser.KW_REPL); - this.state = 869; + this.state = 879; this.match(HiveSqlParser.KW_DUMP); - this.state = 870; + this.state = 880; localContext._dbPolicy = this.replDbPolicy(); - this.state = 873; + this.state = 883; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 871; + this.state = 881; this.match(HiveSqlParser.KW_REPLACE); - this.state = 872; + this.state = 882; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 877; + this.state = 887; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 875; + this.state = 885; this.match(HiveSqlParser.KW_WITH); - this.state = 876; + this.state = 886; localContext._replConf = this.keyValueProperties(); } break; @@ -2061,16 +2068,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 879; + this.state = 889; localContext._dbName = this.dbSchemaName(); - this.state = 882; + this.state = 892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 880; + this.state = 890; this.match(HiveSqlParser.DOT); - this.state = 881; + this.state = 891; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2098,32 +2105,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 884; + this.state = 894; this.match(HiveSqlParser.KW_REPL); - this.state = 885; + this.state = 895; this.match(HiveSqlParser.KW_LOAD); - this.state = 886; + this.state = 896; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 889; + this.state = 899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 887; + this.state = 897; this.match(HiveSqlParser.KW_INTO); - this.state = 888; + this.state = 898; localContext._dbName = this.dbSchemaName(); } } - this.state = 893; + this.state = 903; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 891; + this.state = 901; this.match(HiveSqlParser.KW_WITH); - this.state = 892; + this.state = 902; localContext._replConf = this.keyValueProperties(); } break; @@ -2151,16 +2158,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 895; + this.state = 905; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 898; + this.state = 908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 896; + this.state = 906; this.match(HiveSqlParser.DOT); - this.state = 897; + this.state = 907; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2186,302 +2193,302 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 28, HiveSqlParser.RULE_ddlStatement); let _la: number; try { - this.state = 958; + this.state = 968; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 900; + this.state = 910; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 901; + this.state = 911; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 902; + this.state = 912; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 903; + this.state = 913; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 904; + this.state = 914; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 905; + this.state = 915; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 906; + this.state = 916; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 907; + this.state = 917; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 908; + this.state = 918; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 909; + this.state = 919; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 910; + this.state = 920; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 911; + this.state = 921; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 912; + this.state = 922; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 913; + this.state = 923; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 914; + this.state = 924; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 915; + this.state = 925; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 916; + this.state = 926; this.dropMaterializedViewStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 917; + this.state = 927; this.createFunctionStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 918; + this.state = 928; this.createMacroStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 919; + this.state = 929; this.dropFunctionStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 920; + this.state = 930; this.reloadFunctionsStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 921; + this.state = 931; this.dropMacroStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 922; + this.state = 932; this.createIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 923; + this.state = 933; this.dropIndexStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 924; + this.state = 934; this.analyzeStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 925; + this.state = 935; this.lockStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 926; + this.state = 936; this.unlockStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 927; + this.state = 937; this.lockDatabase(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 928; + this.state = 938; this.unlockDatabase(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 929; + this.state = 939; this.createRoleStatement(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 930; + this.state = 940; this.dropRoleStatement(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 931; + this.state = 941; this.grantPrivileges(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 932; + this.state = 942; this.revokePrivileges(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 933; + this.state = 943; this.showGrants(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 934; + this.state = 944; this.showRoleGrants(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 935; + this.state = 945; this.showRolePrincipals(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 936; + this.state = 946; this.showRoles(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 937; + this.state = 947; this.grantRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 938; + this.state = 948; this.revokeRole(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 939; + this.state = 949; this.setRole(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 940; + this.state = 950; this.showCurrentRole(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 941; + this.state = 951; this.match(HiveSqlParser.KW_ABORT); - this.state = 942; + this.state = 952; _la = this.tokenStream.LA(1); if(!(_la === 50 || _la === 346)) { this.errorHandler.recoverInline(this); @@ -2490,17 +2497,17 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 944; + this.state = 954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 943; + this.state = 953; this.match(HiveSqlParser.Number); } } - this.state = 946; + this.state = 956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); @@ -2509,21 +2516,21 @@ export class HiveSqlParser extends SQLParserBase { case 43: this.enterOuterAlt(localContext, 43); { - this.state = 948; + this.state = 958; this.match(HiveSqlParser.KW_KILL); - this.state = 949; + this.state = 959; this.match(HiveSqlParser.KW_QUERY); - this.state = 951; + this.state = 961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 950; + this.state = 960; this.match(HiveSqlParser.StringLiteral); } } - this.state = 953; + this.state = 963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 426); @@ -2532,21 +2539,21 @@ export class HiveSqlParser extends SQLParserBase { case 44: this.enterOuterAlt(localContext, 44); { - this.state = 955; + this.state = 965; this.resourcePlanDdlStatements(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 956; + this.state = 966; this.createDataConnectorStatement(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 957; + this.state = 967; this.dropDataConnectorStatement(); } break; @@ -2572,9 +2579,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 960; + this.state = 970; this.match(HiveSqlParser.KW_IF); - this.state = 961; + this.state = 971; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2598,11 +2605,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 963; + this.state = 973; this.match(HiveSqlParser.KW_IF); - this.state = 964; + this.state = 974; this.match(HiveSqlParser.KW_NOT); - this.state = 965; + this.state = 975; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2627,7 +2634,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 967; + this.state = 977; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -2658,9 +2665,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 969; + this.state = 979; this.enable(); - this.state = 970; + this.state = 980; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2684,9 +2691,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 972; + this.state = 982; this.disable(); - this.state = 973; + this.state = 983; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2710,11 +2717,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 975; + this.state = 985; this.match(HiveSqlParser.KW_STORED); - this.state = 976; + this.state = 986; this.match(HiveSqlParser.KW_AS); - this.state = 977; + this.state = 987; this.match(HiveSqlParser.KW_DIRECTORIES); } } @@ -2737,80 +2744,80 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 42, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1019; + this.state = 1029; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 989; this.match(HiveSqlParser.KW_CREATE); - this.state = 981; + this.state = 991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 980; + this.state = 990; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 983; + this.state = 993; this.db_schema(); - this.state = 985; + this.state = 995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 984; + this.state = 994; this.ifNotExists(); } } - this.state = 987; + this.state = 997; localContext._name = this.dbSchemaNameCreate(); - this.state = 989; + this.state = 999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 988; + this.state = 998; this.databaseComment(); } } - this.state = 992; + this.state = 1002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 991; + this.state = 1001; this.locationPath(); } } - this.state = 996; + this.state = 1006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 994; + this.state = 1004; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 995; + this.state = 1005; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1001; + this.state = 1011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 998; + this.state = 1008; this.match(HiveSqlParser.KW_WITH); - this.state = 999; + this.state = 1009; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1000; + this.state = 1010; localContext._dbprops = this.keyValueProperties(); } break; @@ -2820,46 +2827,46 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1003; + this.state = 1013; this.match(HiveSqlParser.KW_CREATE); - this.state = 1004; + this.state = 1014; this.match(HiveSqlParser.KW_REMOTE); - this.state = 1005; + this.state = 1015; this.db_schema(); - this.state = 1007; + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1006; + this.state = 1016; this.ifNotExists(); } } - this.state = 1009; + this.state = 1019; localContext._name = this.dbSchemaNameCreate(); - this.state = 1011; + this.state = 1021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1010; + this.state = 1020; this.databaseComment(); } } - this.state = 1013; + this.state = 1023; this.dbConnectorName(); - this.state = 1017; + this.state = 1027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 1014; + this.state = 1024; this.match(HiveSqlParser.KW_WITH); - this.state = 1015; + this.state = 1025; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1016; + this.state = 1026; localContext._dbprops = this.keyValueProperties(); } break; @@ -2888,9 +2895,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1021; + this.state = 1031; this.match(HiveSqlParser.KW_USING); - this.state = 1022; + this.state = 1032; localContext._dcName = this.dbSchemaName(); } } @@ -2914,9 +2921,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1024; + this.state = 1034; this.match(HiveSqlParser.KW_USE); - this.state = 1025; + this.state = 1035; this.dbSchemaName(); } } @@ -2941,28 +2948,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1027; + this.state = 1037; this.match(HiveSqlParser.KW_DROP); - this.state = 1028; + this.state = 1038; this.db_schema(); - this.state = 1030; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1029; + this.state = 1039; this.ifExists(); } } - this.state = 1032; + this.state = 1042; this.dbSchemaName(); - this.state = 1034; + this.state = 1044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 1033; + this.state = 1043; this.restrictOrCascade(); } } @@ -2989,9 +2996,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1036; + this.state = 1046; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1037; + this.state = 1047; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -3016,42 +3023,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1039; + this.state = 1049; this.match(HiveSqlParser.KW_TRUNCATE); - this.state = 1041; + this.state = 1051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1040; + this.state = 1050; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1043; + this.state = 1053; this.tableOrPartition(); - this.state = 1049; + this.state = 1059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1044; + this.state = 1054; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1045; + this.state = 1055; this.match(HiveSqlParser.LPAREN); - this.state = 1046; + this.state = 1056; this.columnNameList(); - this.state = 1047; + this.state = 1057; this.match(HiveSqlParser.RPAREN); } } - this.state = 1052; + this.state = 1062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1051; + this.state = 1061; this.match(HiveSqlParser.KW_FORCE); } } @@ -3079,38 +3086,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1054; + this.state = 1064; this.match(HiveSqlParser.KW_DROP); - this.state = 1055; + this.state = 1065; this.match(HiveSqlParser.KW_TABLE); - this.state = 1057; + this.state = 1067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1056; + this.state = 1066; this.ifExists(); } } - this.state = 1059; + this.state = 1069; this.tableName(); - this.state = 1061; + this.state = 1071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 1060; + this.state = 1070; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1064; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1063; + this.state = 1073; this.replicationClause(); } } @@ -3137,13 +3144,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1066; + this.state = 1076; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1067; + this.state = 1077; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 1068; + this.state = 1078; this.match(HiveSqlParser.KW_SERDE); - this.state = 1069; + this.state = 1079; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -3168,66 +3175,66 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1071; + this.state = 1081; this.id_(); - this.state = 1074; + this.state = 1084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 1072; + this.state = 1082; this.match(HiveSqlParser.DOT); - this.state = 1073; + this.state = 1083; this.id_(); } } - this.state = 1089; + this.state = 1099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { case 1: { - this.state = 1076; - this.id_(); this.state = 1086; + this.id_(); + this.state = 1096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 1077; + this.state = 1087; this.match(HiveSqlParser.DOT); - this.state = 1082; + this.state = 1092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1078; + this.state = 1088; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1079; + this.state = 1089; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1080; + this.state = 1090; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1081; + this.state = 1091; this.id_(); } break; } } } - this.state = 1088; + this.state = 1098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3257,14 +3264,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1091; + this.state = 1101; this.tabTypeExpr(); - this.state = 1093; + this.state = 1103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1092; + this.state = 1102; this.partitionSpec(); } } @@ -3291,24 +3298,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1095; + this.state = 1105; this.tableOrView(); - this.state = 1097; + this.state = 1107; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1096; + this.state = 1106; this.partitionSpec(); } break; } - this.state = 1100; + this.state = 1110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1099; + this.state = 1109; this.extColumnName(); } break; @@ -3336,7 +3343,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1102; + this.state = 1112; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3345,90 +3352,90 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1125; + this.state = 1135; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1103; + this.state = 1113; this.db_schema(); - this.state = 1105; + this.state = 1115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1104; + this.state = 1114; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1107; + this.state = 1117; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1109; + this.state = 1119; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 1111; + this.state = 1121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1110; + this.state = 1120; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1113; + this.state = 1123; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1114; + this.state = 1124; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1116; + this.state = 1126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1115; + this.state = 1125; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1118; + this.state = 1128; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1121; + this.state = 1131; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1119; + this.state = 1129; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1120; + this.state = 1130; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1123; + this.state = 1133; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1124; + this.state = 1134; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3455,42 +3462,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1127; + this.state = 1137; this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1128; + this.state = 1138; this.match(HiveSqlParser.KW_TABLE); - this.state = 1129; + this.state = 1139; localContext._parttype = this.tableOrPartition(); - this.state = 1142; + this.state = 1152; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1130; + this.state = 1140; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1131; + this.state = 1141; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1138; + this.state = 1148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1132; + this.state = 1142; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1133; + this.state = 1143; this.match(HiveSqlParser.KW_FOR); - this.state = 1134; + this.state = 1144; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1136; + this.state = 1146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1135; + this.state = 1145; localContext._statsColumnName = this.columnNameList(); } break; @@ -3551,9 +3558,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_CACHE: { - this.state = 1140; + this.state = 1150; this.match(HiveSqlParser.KW_CACHE); - this.state = 1141; + this.state = 1151; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3583,7 +3590,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1144; + this.state = 1154; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3615,7 +3622,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1146; + this.state = 1156; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 295)) { this.errorHandler.recoverInline(this); @@ -3645,15 +3652,15 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 72, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1331; + this.state = 1341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1148; + this.state = 1158; this.match(HiveSqlParser.KW_SHOW); - this.state = 1149; + this.state = 1159; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 296)) { this.errorHandler.recoverInline(this); @@ -3662,14 +3669,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1152; + this.state = 1162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1150; + this.state = 1160; this.match(HiveSqlParser.KW_LIKE); - this.state = 1151; + this.state = 1161; this.showStmtIdentifier(); } } @@ -3679,38 +3686,38 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1154; + this.state = 1164; this.match(HiveSqlParser.KW_SHOW); - this.state = 1156; + this.state = 1166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1155; + this.state = 1165; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1158; + this.state = 1168; this.match(HiveSqlParser.KW_TABLES); - this.state = 1162; + this.state = 1172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1159; + this.state = 1169; this.from_in(); - this.state = 1160; + this.state = 1170; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1165; + this.state = 1175; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1164; + this.state = 1174; localContext._filter = this.showTablesFilterExpr(); } break; @@ -3720,36 +3727,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1167; + this.state = 1177; this.match(HiveSqlParser.KW_SHOW); - this.state = 1168; + this.state = 1178; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1172; + this.state = 1182; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1169; + this.state = 1179; this.from_in(); - this.state = 1170; + this.state = 1180; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1177; + this.state = 1187; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 1174; + this.state = 1184; this.match(HiveSqlParser.KW_LIKE); - this.state = 1175; + this.state = 1185; this.showStmtIdentifier(); } break; case 2: { - this.state = 1176; + this.state = 1186; this.showStmtIdentifier(); } break; @@ -3759,38 +3766,38 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1179; + this.state = 1189; this.match(HiveSqlParser.KW_SHOW); - this.state = 1180; + this.state = 1190; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1181; + this.state = 1191; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1185; + this.state = 1195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 1182; + this.state = 1192; this.from_in(); - this.state = 1183; + this.state = 1193; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1190; + this.state = 1200; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { - this.state = 1187; + this.state = 1197; this.match(HiveSqlParser.KW_LIKE); - this.state = 1188; + this.state = 1198; this.showStmtIdentifier(); } break; case 2: { - this.state = 1189; + this.state = 1199; this.showStmtIdentifier(); } break; @@ -3800,50 +3807,50 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1192; + this.state = 1202; this.match(HiveSqlParser.KW_SHOW); - this.state = 1194; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1193; + this.state = 1203; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1196; + this.state = 1206; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1197; + this.state = 1207; this.from_in(); - this.state = 1198; + this.state = 1208; this.tableOrView(); - this.state = 1202; + this.state = 1212; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1199; + this.state = 1209; this.from_in(); - this.state = 1200; + this.state = 1210; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1207; + this.state = 1217; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 1204; + this.state = 1214; this.match(HiveSqlParser.KW_LIKE); - this.state = 1205; + this.state = 1215; this.showStmtIdentifier(); } break; case 2: { - this.state = 1206; + this.state = 1216; this.showStmtIdentifier(); } break; @@ -3853,18 +3860,18 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1209; + this.state = 1219; this.match(HiveSqlParser.KW_SHOW); - this.state = 1210; + this.state = 1220; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1213; + this.state = 1223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1211; + this.state = 1221; this.match(HiveSqlParser.KW_LIKE); - this.state = 1212; + this.state = 1222; this.functionNameForDDL(); } } @@ -3874,48 +3881,48 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1215; + this.state = 1225; this.match(HiveSqlParser.KW_SHOW); - this.state = 1216; + this.state = 1226; this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1217; + this.state = 1227; localContext._tabOrViewName = this.tableOrView(); - this.state = 1219; + this.state = 1229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1218; + this.state = 1228; this.partitionSpec(); } } - this.state = 1222; + this.state = 1232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 1221; + this.state = 1231; this.whereClause(); } } - this.state = 1225; + this.state = 1235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1224; + this.state = 1234; this.orderByClause(); } } - this.state = 1228; + this.state = 1238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1227; + this.state = 1237; this.limitClause(); } } @@ -3925,27 +3932,27 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1230; + this.state = 1240; this.match(HiveSqlParser.KW_SHOW); - this.state = 1231; + this.state = 1241; this.match(HiveSqlParser.KW_CREATE); - this.state = 1237; + this.state = 1247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1232; + this.state = 1242; this.db_schema(); - this.state = 1233; + this.state = 1243; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1235; + this.state = 1245; this.match(HiveSqlParser.KW_TABLE); - this.state = 1236; + this.state = 1246; localContext._tabName = this.tableName(); } break; @@ -3957,34 +3964,34 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1239; + this.state = 1249; this.match(HiveSqlParser.KW_SHOW); - this.state = 1240; + this.state = 1250; this.match(HiveSqlParser.KW_TABLE); - this.state = 1241; + this.state = 1251; this.match(HiveSqlParser.KW_EXTENDED); - this.state = 1245; + this.state = 1255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1242; + this.state = 1252; this.from_in(); - this.state = 1243; + this.state = 1253; localContext._db_name = this.dbSchemaName(); } } - this.state = 1247; + this.state = 1257; this.match(HiveSqlParser.KW_LIKE); - this.state = 1248; + this.state = 1258; this.showStmtIdentifier(); - this.state = 1250; + this.state = 1260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1249; + this.state = 1259; this.partitionSpec(); } } @@ -3994,22 +4001,22 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1252; + this.state = 1262; this.match(HiveSqlParser.KW_SHOW); - this.state = 1253; + this.state = 1263; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1254; + this.state = 1264; this.tableName(); - this.state = 1258; + this.state = 1268; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 1255; + this.state = 1265; this.match(HiveSqlParser.LPAREN); - this.state = 1256; + this.state = 1266; localContext._prptyName = this.match(HiveSqlParser.StringLiteral); - this.state = 1257; + this.state = 1267; this.match(HiveSqlParser.RPAREN); } break; @@ -4019,25 +4026,25 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1260; + this.state = 1270; this.match(HiveSqlParser.KW_SHOW); - this.state = 1261; + this.state = 1271; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1273; + this.state = 1283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1262; + this.state = 1272; this.db_schema(); - this.state = 1263; + this.state = 1273; localContext._dbName = this.dbSchemaName(); - this.state = 1265; + this.state = 1275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1264; + this.state = 1274; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4046,22 +4053,22 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 1268; + this.state = 1278; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1267; + this.state = 1277; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1271; + this.state = 1281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1270; + this.state = 1280; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4074,20 +4081,20 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1275; + this.state = 1285; this.match(HiveSqlParser.KW_SHOW); - this.state = 1276; + this.state = 1286; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1303; + this.state = 1313; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPACT_ID: { - this.state = 1277; + this.state = 1287; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 1278; + this.state = 1288; this.match(HiveSqlParser.EQUAL); - this.state = 1279; + this.state = 1289; localContext._compactId = this.match(HiveSqlParser.Number); } break; @@ -4360,27 +4367,27 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: case HiveSqlParser.Identifier: { - this.state = 1286; + this.state = 1296; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { { - this.state = 1280; + this.state = 1290; this.db_schema(); - this.state = 1281; + this.state = 1291; localContext._dbName = this.dbSchemaName(); } } break; case 2: { - this.state = 1284; + this.state = 1294; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1283; + this.state = 1293; localContext._parttype = this.partTypeExpr(); } break; @@ -4388,52 +4395,52 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 1289; + this.state = 1299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 1288; + this.state = 1298; this.compactionPool(); } } - this.state = 1292; + this.state = 1302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1291; + this.state = 1301; this.compactionType(); } } - this.state = 1295; + this.state = 1305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 1294; + this.state = 1304; this.compactionStatus(); } } - this.state = 1298; + this.state = 1308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1297; + this.state = 1307; this.orderByClause(); } } - this.state = 1301; + this.state = 1311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1300; + this.state = 1310; this.limitClause(); } } @@ -4448,44 +4455,44 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1305; + this.state = 1315; this.match(HiveSqlParser.KW_SHOW); - this.state = 1306; + this.state = 1316; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1307; + this.state = 1317; this.match(HiveSqlParser.KW_SHOW); - this.state = 1308; + this.state = 1318; this.match(HiveSqlParser.KW_CONF); - this.state = 1309; + this.state = 1319; this.match(HiveSqlParser.StringLiteral); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1310; + this.state = 1320; this.match(HiveSqlParser.KW_SHOW); - this.state = 1311; + this.state = 1321; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 1315; + this.state = 1325; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1312; + this.state = 1322; this.match(HiveSqlParser.KW_PLAN); - this.state = 1313; + this.state = 1323; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1314; + this.state = 1324; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4497,28 +4504,28 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1317; + this.state = 1327; this.match(HiveSqlParser.KW_SHOW); - this.state = 1318; + this.state = 1328; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1319; + this.state = 1329; this.match(HiveSqlParser.KW_SHOW); - this.state = 1321; + this.state = 1331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1320; + this.state = 1330; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1323; + this.state = 1333; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4527,18 +4534,18 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1324; + this.state = 1334; this.match(HiveSqlParser.KW_ON); - this.state = 1325; + this.state = 1335; this.tableName(); - this.state = 1329; + this.state = 1339; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1326; + this.state = 1336; this.from_in(); - this.state = 1327; + this.state = 1337; this.dbSchemaName(); } break; @@ -4565,28 +4572,28 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowTablesFilterExprContext(this.context, this.state); this.enterRule(localContext, 74, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1341; + this.state = 1351; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1333; + this.state = 1343; this.match(HiveSqlParser.KW_WHERE); - this.state = 1334; + this.state = 1344; this.id_(); - this.state = 1335; + this.state = 1345; this.match(HiveSqlParser.EQUAL); - this.state = 1336; + this.state = 1346; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1338; + this.state = 1348; this.match(HiveSqlParser.KW_LIKE); - this.state = 1339; + this.state = 1349; this.showStmtIdentifier(); } break; @@ -4833,7 +4840,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1340; + this.state = 1350; this.showStmtIdentifier(); } break; @@ -4861,13 +4868,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1353; this.match(HiveSqlParser.KW_LOCK); - this.state = 1344; + this.state = 1354; this.match(HiveSqlParser.KW_TABLE); - this.state = 1345; + this.state = 1355; this.tableOrPartition(); - this.state = 1346; + this.state = 1356; this.lockMode(); } } @@ -4891,13 +4898,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1348; + this.state = 1358; this.match(HiveSqlParser.KW_LOCK); - this.state = 1349; + this.state = 1359; this.db_schema(); - this.state = 1350; + this.state = 1360; localContext._dbName = this.dbSchemaName(); - this.state = 1351; + this.state = 1361; this.lockMode(); } } @@ -4922,7 +4929,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1353; + this.state = 1363; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -4953,11 +4960,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1355; + this.state = 1365; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1356; + this.state = 1366; this.match(HiveSqlParser.KW_TABLE); - this.state = 1357; + this.state = 1367; this.tableOrPartition(); } } @@ -4981,11 +4988,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1359; + this.state = 1369; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1360; + this.state = 1370; this.db_schema(); - this.state = 1361; + this.state = 1371; localContext._dbName = this.dbSchemaName(); } } @@ -5009,11 +5016,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1373; this.match(HiveSqlParser.KW_CREATE); - this.state = 1364; + this.state = 1374; this.match(HiveSqlParser.KW_ROLE); - this.state = 1365; + this.state = 1375; localContext._roleName = this.id_(); } } @@ -5037,11 +5044,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1367; + this.state = 1377; this.match(HiveSqlParser.KW_DROP); - this.state = 1368; + this.state = 1378; this.match(HiveSqlParser.KW_ROLE); - this.state = 1369; + this.state = 1379; localContext._roleName = this.id_(); } } @@ -5066,30 +5073,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1371; + this.state = 1381; this.match(HiveSqlParser.KW_GRANT); - this.state = 1372; + this.state = 1382; localContext._privList = this.privilegeList(); - this.state = 1374; + this.state = 1384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1373; + this.state = 1383; this.privilegeObject(); } } - this.state = 1376; + this.state = 1386; this.match(HiveSqlParser.KW_TO); - this.state = 1377; + this.state = 1387; this.principalSpecification(); - this.state = 1379; + this.state = 1389; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1378; + this.state = 1388; this.withGrantOption(); } break; @@ -5117,33 +5124,33 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1381; + this.state = 1391; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1383; + this.state = 1393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1382; + this.state = 1392; this.grantOptionFor(); } } - this.state = 1385; + this.state = 1395; this.privilegeList(); - this.state = 1387; + this.state = 1397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1386; + this.state = 1396; this.privilegeObject(); } } - this.state = 1389; + this.state = 1399; this.match(HiveSqlParser.KW_FROM); - this.state = 1390; + this.state = 1400; this.principalSpecification(); } } @@ -5168,46 +5175,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1402; this.match(HiveSqlParser.KW_GRANT); - this.state = 1394; + this.state = 1404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1393; + this.state = 1403; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1396; + this.state = 1406; this.id_(); - this.state = 1401; + this.state = 1411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1397; + this.state = 1407; this.match(HiveSqlParser.COMMA); - this.state = 1398; + this.state = 1408; this.id_(); } } - this.state = 1403; + this.state = 1413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1404; + this.state = 1414; this.match(HiveSqlParser.KW_TO); - this.state = 1405; + this.state = 1415; this.principalSpecification(); - this.state = 1407; + this.state = 1417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1406; + this.state = 1416; this.withAdminOption(); } break; @@ -5235,49 +5242,49 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1409; + this.state = 1419; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1411; + this.state = 1421; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1410; + this.state = 1420; this.adminOptionFor(); } break; } - this.state = 1414; + this.state = 1424; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1413; + this.state = 1423; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1416; + this.state = 1426; this.id_(); - this.state = 1421; + this.state = 1431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1417; + this.state = 1427; this.match(HiveSqlParser.COMMA); - this.state = 1418; + this.state = 1428; this.id_(); } } - this.state = 1423; + this.state = 1433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1424; + this.state = 1434; this.match(HiveSqlParser.KW_FROM); - this.state = 1425; + this.state = 1435; this.principalSpecification(); } } @@ -5301,13 +5308,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1427; + this.state = 1437; this.match(HiveSqlParser.KW_SHOW); - this.state = 1428; + this.state = 1438; this.match(HiveSqlParser.KW_ROLE); - this.state = 1429; + this.state = 1439; this.match(HiveSqlParser.KW_GRANT); - this.state = 1430; + this.state = 1440; this.principalName(); } } @@ -5331,9 +5338,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1432; + this.state = 1442; this.match(HiveSqlParser.KW_SHOW); - this.state = 1433; + this.state = 1443; this.match(HiveSqlParser.KW_ROLES); } } @@ -5357,11 +5364,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1435; + this.state = 1445; this.match(HiveSqlParser.KW_SHOW); - this.state = 1436; + this.state = 1446; this.match(HiveSqlParser.KW_CURRENT); - this.state = 1437; + this.state = 1447; this.match(HiveSqlParser.KW_ROLES); } } @@ -5385,22 +5392,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1439; + this.state = 1449; this.match(HiveSqlParser.KW_SET); - this.state = 1440; + this.state = 1450; this.match(HiveSqlParser.KW_ROLE); - this.state = 1444; + this.state = 1454; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1441; + this.state = 1451; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1442; + this.state = 1452; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5645,7 +5652,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1443; + this.state = 1453; this.id_(); } break; @@ -5675,28 +5682,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1446; + this.state = 1456; this.match(HiveSqlParser.KW_SHOW); - this.state = 1447; + this.state = 1457; this.match(HiveSqlParser.KW_GRANT); - this.state = 1449; + this.state = 1459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 287 || _la === 369) { { - this.state = 1448; + this.state = 1458; this.principalName(); } } - this.state = 1453; + this.state = 1463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1451; + this.state = 1461; this.match(HiveSqlParser.KW_ON); - this.state = 1452; + this.state = 1462; this.privilegeIncludeColObject(); } } @@ -5723,11 +5730,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1465; this.match(HiveSqlParser.KW_SHOW); - this.state = 1456; + this.state = 1466; this.match(HiveSqlParser.KW_PRINCIPALS); - this.state = 1457; + this.state = 1467; localContext._roleName = this.id_(); } } @@ -5749,13 +5756,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); this.enterRule(localContext, 110, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1461; + this.state = 1471; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1459; + this.state = 1469; this.match(HiveSqlParser.KW_ALL); } break; @@ -6003,7 +6010,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1460; + this.state = 1470; this.privObjectCols(); } break; @@ -6031,9 +6038,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1463; + this.state = 1473; this.match(HiveSqlParser.KW_ON); - this.state = 1464; + this.state = 1474; this.privObject(); } } @@ -6056,50 +6063,50 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 114, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1477; + this.state = 1487; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1466; + this.state = 1476; this.db_schema(); - this.state = 1467; + this.state = 1477; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1470; + this.state = 1480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1469; + this.state = 1479; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1472; + this.state = 1482; this.tableOrPartition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1473; + this.state = 1483; this.match(HiveSqlParser.KW_URI); - this.state = 1474; + this.state = 1484; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1475; + this.state = 1485; this.match(HiveSqlParser.KW_SERVER); - this.state = 1476; + this.state = 1486; this.id_(); } break; @@ -6124,53 +6131,53 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 116, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1499; + this.state = 1509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1479; + this.state = 1489; this.db_schema(); - this.state = 1480; + this.state = 1490; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1483; + this.state = 1493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1482; + this.state = 1492; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1485; + this.state = 1495; this.tableName(); - this.state = 1490; + this.state = 1500; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1486; + this.state = 1496; this.match(HiveSqlParser.LPAREN); - this.state = 1487; + this.state = 1497; localContext._cols = this.columnNameList(); - this.state = 1488; + this.state = 1498; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1493; + this.state = 1503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1492; + this.state = 1502; this.partitionSpec(); } } @@ -6180,18 +6187,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1495; + this.state = 1505; this.match(HiveSqlParser.KW_URI); - this.state = 1496; + this.state = 1506; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1497; + this.state = 1507; this.match(HiveSqlParser.KW_SERVER); - this.state = 1498; + this.state = 1508; this.id_(); } break; @@ -6218,21 +6225,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1501; + this.state = 1511; this.privilegeDef(); - this.state = 1506; + this.state = 1516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1502; + this.state = 1512; this.match(HiveSqlParser.COMMA); - this.state = 1503; + this.state = 1513; this.privilegeDef(); } } - this.state = 1508; + this.state = 1518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6259,18 +6266,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1509; + this.state = 1519; this.privilegeType(); - this.state = 1514; + this.state = 1524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1510; + this.state = 1520; this.match(HiveSqlParser.LPAREN); - this.state = 1511; + this.state = 1521; localContext._cols = this.columnNameList(); - this.state = 1512; + this.state = 1522; this.match(HiveSqlParser.RPAREN); } } @@ -6298,7 +6305,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1516; + this.state = 1526; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 190 || _la === 299 || _la === 309 || _la === 365)) { this.errorHandler.recoverInline(this); @@ -6330,21 +6337,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1518; + this.state = 1528; this.principalName(); - this.state = 1523; + this.state = 1533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1519; + this.state = 1529; this.match(HiveSqlParser.COMMA); - this.state = 1520; + this.state = 1530; this.principalName(); } } - this.state = 1525; + this.state = 1535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6368,33 +6375,33 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalNameContext(this.context, this.state); this.enterRule(localContext, 126, HiveSqlParser.RULE_principalName); try { - this.state = 1532; + this.state = 1542; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1526; + this.state = 1536; this.match(HiveSqlParser.KW_USER); - this.state = 1527; + this.state = 1537; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1528; + this.state = 1538; this.match(HiveSqlParser.KW_GROUP); - this.state = 1529; + this.state = 1539; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1530; + this.state = 1540; this.match(HiveSqlParser.KW_ROLE); - this.state = 1531; + this.state = 1541; this.id_(); } break; @@ -6420,31 +6427,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalAlterNameContext(this.context, this.state); this.enterRule(localContext, 128, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1539; + this.state = 1549; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1534; + this.state = 1544; this.match(HiveSqlParser.KW_USER); - this.state = 1535; + this.state = 1545; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1536; + this.state = 1546; this.match(HiveSqlParser.KW_ROLE); - this.state = 1537; + this.state = 1547; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1538; + this.state = 1548; this.id_(); } break; @@ -6470,11 +6477,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1541; + this.state = 1551; this.match(HiveSqlParser.KW_WITH); - this.state = 1542; + this.state = 1552; this.match(HiveSqlParser.KW_GRANT); - this.state = 1543; + this.state = 1553; this.match(HiveSqlParser.KW_OPTION); } } @@ -6498,11 +6505,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1545; + this.state = 1555; this.match(HiveSqlParser.KW_GRANT); - this.state = 1546; + this.state = 1556; this.match(HiveSqlParser.KW_OPTION); - this.state = 1547; + this.state = 1557; this.match(HiveSqlParser.KW_FOR); } } @@ -6526,11 +6533,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1549; + this.state = 1559; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1550; + this.state = 1560; this.match(HiveSqlParser.KW_OPTION); - this.state = 1551; + this.state = 1561; this.match(HiveSqlParser.KW_FOR); } } @@ -6554,11 +6561,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1553; + this.state = 1563; this.match(HiveSqlParser.KW_WITH); - this.state = 1554; + this.state = 1564; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1555; + this.state = 1565; this.match(HiveSqlParser.KW_OPTION); } } @@ -6583,29 +6590,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1557; + this.state = 1567; this.match(HiveSqlParser.KW_MSCK); - this.state = 1559; + this.state = 1569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 276) { { - this.state = 1558; + this.state = 1568; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1561; + this.state = 1571; this.match(HiveSqlParser.KW_TABLE); - this.state = 1562; + this.state = 1572; this.tableName(); - this.state = 1568; + this.state = 1578; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1563; + this.state = 1573; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101 || _la === 326)) { @@ -6615,14 +6622,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1564; + this.state = 1574; localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1566; + this.state = 1576; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1565; + this.state = 1575; this.partitionSelectorSpec(); } break; @@ -6654,21 +6661,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1570; + this.state = 1580; this.resource(); - this.state = 1575; + this.state = 1585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1571; + this.state = 1581; this.match(HiveSqlParser.COMMA); - this.state = 1572; + this.state = 1582; this.resource(); } } - this.state = 1577; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6694,9 +6701,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1588; localContext._resType = this.resourceType(); - this.state = 1579; + this.state = 1589; localContext._resPath = this.match(HiveSqlParser.StringLiteral); } } @@ -6721,7 +6728,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1581; + this.state = 1591; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 128 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -6753,34 +6760,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1583; + this.state = 1593; this.match(HiveSqlParser.KW_CREATE); - this.state = 1585; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1584; + this.state = 1594; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1587; + this.state = 1597; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1588; + this.state = 1598; this.functionNameCreate(); - this.state = 1589; + this.state = 1599; this.match(HiveSqlParser.KW_AS); - this.state = 1590; + this.state = 1600; this.match(HiveSqlParser.StringLiteral); - this.state = 1593; + this.state = 1603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 370) { { - this.state = 1591; + this.state = 1601; this.match(HiveSqlParser.KW_USING); - this.state = 1592; + this.state = 1602; localContext._rList = this.resourceList(); } } @@ -6808,31 +6815,31 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1595; + this.state = 1605; this.match(HiveSqlParser.KW_DROP); - this.state = 1597; + this.state = 1607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1596; + this.state = 1606; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1599; + this.state = 1609; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1601; + this.state = 1611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1600; + this.state = 1610; this.ifExists(); } } - this.state = 1603; + this.state = 1613; this.functionNameForDDL(); } } @@ -6857,9 +6864,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1605; + this.state = 1615; this.match(HiveSqlParser.KW_RELOAD); - this.state = 1606; + this.state = 1616; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); @@ -6891,29 +6898,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1608; + this.state = 1618; this.match(HiveSqlParser.KW_CREATE); - this.state = 1609; + this.state = 1619; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1610; + this.state = 1620; this.match(HiveSqlParser.KW_MACRO); - this.state = 1611; + this.state = 1621; this.match(HiveSqlParser.Identifier); - this.state = 1612; + this.state = 1622; this.match(HiveSqlParser.LPAREN); - this.state = 1614; + this.state = 1624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 1613; + this.state = 1623; this.columnNameTypeList(); } } - this.state = 1616; + this.state = 1626; this.match(HiveSqlParser.RPAREN); - this.state = 1617; + this.state = 1627; this.expression(); } } @@ -6938,23 +6945,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1619; + this.state = 1629; this.match(HiveSqlParser.KW_DROP); - this.state = 1620; + this.state = 1630; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1621; + this.state = 1631; this.match(HiveSqlParser.KW_MACRO); - this.state = 1623; + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1622; + this.state = 1632; this.ifExists(); } } - this.state = 1625; + this.state = 1635; this.match(HiveSqlParser.Identifier); } } @@ -6979,124 +6986,124 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1627; + this.state = 1637; this.match(HiveSqlParser.KW_CREATE); - this.state = 1628; + this.state = 1638; this.match(HiveSqlParser.KW_INDEX); - this.state = 1629; + this.state = 1639; this.id_(); - this.state = 1630; + this.state = 1640; this.match(HiveSqlParser.KW_ON); - this.state = 1631; + this.state = 1641; this.match(HiveSqlParser.KW_TABLE); - this.state = 1632; + this.state = 1642; this.tableName(); - this.state = 1633; + this.state = 1643; this.columnParenthesesList(); - this.state = 1634; + this.state = 1644; this.match(HiveSqlParser.KW_AS); - this.state = 1635; + this.state = 1645; localContext._indextype = this.match(HiveSqlParser.StringLiteral); - this.state = 1639; + this.state = 1649; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1636; + this.state = 1646; this.match(HiveSqlParser.KW_WITH); - this.state = 1637; + this.state = 1647; this.match(HiveSqlParser.KW_DEFERRED); - this.state = 1638; + this.state = 1648; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1643; + this.state = 1653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1641; + this.state = 1651; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1642; + this.state = 1652; this.tableProperties(); } } - this.state = 1648; + this.state = 1658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1645; + this.state = 1655; this.match(HiveSqlParser.KW_IN); - this.state = 1646; + this.state = 1656; this.match(HiveSqlParser.KW_TABLE); - this.state = 1647; + this.state = 1657; this.tableName(); } } - this.state = 1653; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1650; + this.state = 1660; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1651; + this.state = 1661; this.match(HiveSqlParser.KW_BY); - this.state = 1652; + this.state = 1662; this.columnParenthesesList(); } } - this.state = 1659; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291 || _la === 321) { { - this.state = 1656; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1655; + this.state = 1665; this.tableRowFormat(); } } - this.state = 1658; + this.state = 1668; this.tableFileFormat(); } } - this.state = 1662; + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1661; + this.state = 1671; this.locationPath(); } } - this.state = 1665; + this.state = 1675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1664; + this.state = 1674; this.tablePropertiesPrefixed(); } } - this.state = 1668; + this.state = 1678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1667; + this.state = 1677; this.tableComment(); } } @@ -7124,25 +7131,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1670; + this.state = 1680; this.match(HiveSqlParser.KW_DROP); - this.state = 1671; + this.state = 1681; this.match(HiveSqlParser.KW_INDEX); - this.state = 1673; + this.state = 1683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1672; + this.state = 1682; this.ifExists(); } } - this.state = 1675; + this.state = 1685; this.id_(); - this.state = 1676; + this.state = 1686; this.match(HiveSqlParser.KW_ON); - this.state = 1677; + this.state = 1687; this.tableName(); } } @@ -7167,81 +7174,81 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1679; + this.state = 1689; this.match(HiveSqlParser.KW_CREATE); - this.state = 1682; + this.state = 1692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1680; + this.state = 1690; this.match(HiveSqlParser.KW_OR); - this.state = 1681; + this.state = 1691; this.match(HiveSqlParser.KW_REPLACE); } } - this.state = 1684; + this.state = 1694; this.match(HiveSqlParser.KW_VIEW); - this.state = 1686; + this.state = 1696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1685; + this.state = 1695; this.ifNotExists(); } } - this.state = 1688; + this.state = 1698; localContext._name = this.viewNameCreate(); - this.state = 1693; + this.state = 1703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1689; + this.state = 1699; this.match(HiveSqlParser.LPAREN); - this.state = 1690; + this.state = 1700; this.columnNameCommentList(); - this.state = 1691; + this.state = 1701; this.match(HiveSqlParser.RPAREN); } } - this.state = 1696; + this.state = 1706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1695; + this.state = 1705; this.tableComment(); } } - this.state = 1699; + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1698; + this.state = 1708; this.viewPartition(); } } - this.state = 1702; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1701; + this.state = 1711; this.tablePropertiesPrefixed(); } } - this.state = 1704; + this.state = 1714; this.match(HiveSqlParser.KW_AS); - this.state = 1705; + this.state = 1715; this.selectStatementWithCTE(); } } @@ -7265,35 +7272,35 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1717; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1708; + this.state = 1718; this.match(HiveSqlParser.KW_ON); - this.state = 1714; + this.state = 1724; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1709; + this.state = 1719; this.match(HiveSqlParser.LPAREN); - this.state = 1710; + this.state = 1720; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 1711; + this.state = 1721; this.match(HiveSqlParser.KW_SPEC); - this.state = 1712; + this.state = 1722; this.match(HiveSqlParser.LPAREN); - this.state = 1713; + this.state = 1723; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1716; + this.state = 1726; this.match(HiveSqlParser.RPAREN); } } @@ -7315,20 +7322,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ViewOrganizationContext(this.context, this.state); this.enterRule(localContext, 164, HiveSqlParser.RULE_viewOrganization); try { - this.state = 1720; + this.state = 1730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 1718; + this.state = 1728; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1719; + this.state = 1729; this.viewComplexSpec(); } break; @@ -7356,15 +7363,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1722; + this.state = 1732; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1723; + this.state = 1733; this.match(HiveSqlParser.KW_ON); - this.state = 1724; + this.state = 1734; this.match(HiveSqlParser.LPAREN); - this.state = 1725; + this.state = 1735; this.columnNameList(); - this.state = 1726; + this.state = 1736; this.match(HiveSqlParser.RPAREN); } } @@ -7388,9 +7395,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1728; + this.state = 1738; this.viewDistSpec(); - this.state = 1729; + this.state = 1739; this.viewSortSpec(); } } @@ -7414,15 +7421,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1731; + this.state = 1741; this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 1732; + this.state = 1742; this.match(HiveSqlParser.KW_ON); - this.state = 1733; + this.state = 1743; this.match(HiveSqlParser.LPAREN); - this.state = 1734; + this.state = 1744; localContext._colList = this.columnNameList(); - this.state = 1735; + this.state = 1745; this.match(HiveSqlParser.RPAREN); } } @@ -7446,15 +7453,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1737; + this.state = 1747; this.match(HiveSqlParser.KW_SORTED); - this.state = 1738; + this.state = 1748; this.match(HiveSqlParser.KW_ON); - this.state = 1739; + this.state = 1749; this.match(HiveSqlParser.LPAREN); - this.state = 1740; + this.state = 1750; localContext._colList = this.columnNameList(); - this.state = 1741; + this.state = 1751; this.match(HiveSqlParser.RPAREN); } } @@ -7479,21 +7486,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1743; + this.state = 1753; this.match(HiveSqlParser.KW_DROP); - this.state = 1744; + this.state = 1754; this.match(HiveSqlParser.KW_VIEW); - this.state = 1746; + this.state = 1756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1745; + this.state = 1755; this.ifExists(); } } - this.state = 1748; + this.state = 1758; this.viewName(); } } @@ -7518,107 +7525,107 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1750; + this.state = 1760; this.match(HiveSqlParser.KW_CREATE); - this.state = 1751; + this.state = 1761; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1752; + this.state = 1762; this.match(HiveSqlParser.KW_VIEW); - this.state = 1754; + this.state = 1764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1753; + this.state = 1763; this.ifNotExists(); } } - this.state = 1756; + this.state = 1766; localContext._name = this.viewNameCreate(); - this.state = 1758; + this.state = 1768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 1757; + this.state = 1767; this.rewriteDisabled(); } } - this.state = 1761; + this.state = 1771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1760; + this.state = 1770; this.tableComment(); } } - this.state = 1764; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1763; + this.state = 1773; this.viewPartition(); } } - this.state = 1767; + this.state = 1777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 1766; + this.state = 1776; this.viewOrganization(); } } - this.state = 1770; + this.state = 1780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1769; + this.state = 1779; this.tableRowFormat(); } } - this.state = 1773; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 1772; + this.state = 1782; this.tableFileFormat(); } } - this.state = 1776; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1775; + this.state = 1785; this.locationPath(); } } - this.state = 1779; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1778; + this.state = 1788; this.tablePropertiesPrefixed(); } } - this.state = 1781; + this.state = 1791; this.match(HiveSqlParser.KW_AS); - this.state = 1782; + this.state = 1792; this.selectStatementWithCTE(); } } @@ -7643,23 +7650,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1784; + this.state = 1794; this.match(HiveSqlParser.KW_DROP); - this.state = 1785; + this.state = 1795; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1786; + this.state = 1796; this.match(HiveSqlParser.KW_VIEW); - this.state = 1788; + this.state = 1798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1787; + this.state = 1797; this.ifExists(); } } - this.state = 1790; + this.state = 1800; this.viewName(); } } @@ -7684,37 +7691,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1792; + this.state = 1802; this.match(HiveSqlParser.KW_CREATE); - this.state = 1793; + this.state = 1803; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1794; + this.state = 1804; this.match(HiveSqlParser.KW_QUERY); - this.state = 1795; + this.state = 1805; localContext._name = this.id_(); - this.state = 1796; + this.state = 1806; this.scheduleSpec(); - this.state = 1798; + this.state = 1808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1797; + this.state = 1807; this.executedAsSpec(); } } - this.state = 1801; + this.state = 1811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 1800; + this.state = 1810; this.enableSpecification(); } } - this.state = 1803; + this.state = 1813; this.definedAsSpec(); } } @@ -7738,13 +7745,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1805; + this.state = 1815; this.match(HiveSqlParser.KW_DROP); - this.state = 1806; + this.state = 1816; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1807; + this.state = 1817; this.match(HiveSqlParser.KW_QUERY); - this.state = 1808; + this.state = 1818; localContext._name = this.id_(); } } @@ -7768,15 +7775,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1810; + this.state = 1820; this.match(HiveSqlParser.KW_ALTER); - this.state = 1811; + this.state = 1821; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1812; + this.state = 1822; this.match(HiveSqlParser.KW_QUERY); - this.state = 1813; + this.state = 1823; localContext._name = this.id_(); - this.state = 1814; + this.state = 1824; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7798,21 +7805,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); this.enterRule(localContext, 186, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 1821; + this.state = 1831; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 1816; + this.state = 1826; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1817; + this.state = 1827; this.executedAsSpec(); } break; @@ -7822,7 +7829,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 1818; + this.state = 1828; this.enableSpecification(); } break; @@ -7830,14 +7837,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 1819; + this.state = 1829; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1820; + this.state = 1830; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -7864,61 +7871,61 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 188, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 1838; + this.state = 1848; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 1823; + this.state = 1833; this.match(HiveSqlParser.KW_CRON); - this.state = 1824; + this.state = 1834; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 1825; + this.state = 1835; this.match(HiveSqlParser.KW_EVERY); - this.state = 1827; + this.state = 1837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 431) { { - this.state = 1826; + this.state = 1836; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 1829; + this.state = 1839; localContext._qualifier = this.intervalQualifiers(); - this.state = 1836; + this.state = 1846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 223) { { - this.state = 1833; + this.state = 1843; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 1830; + this.state = 1840; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 1831; + this.state = 1841; this.match(HiveSqlParser.KW_OFFSET); - this.state = 1832; + this.state = 1842; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1835; + this.state = 1845; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -7949,11 +7956,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1840; + this.state = 1850; this.match(HiveSqlParser.KW_EXECUTED); - this.state = 1841; + this.state = 1851; this.match(HiveSqlParser.KW_AS); - this.state = 1842; + this.state = 1852; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -7978,19 +7985,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 1844; + this.state = 1854; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 1847; + this.state = 1857; this.match(HiveSqlParser.KW_AS); - this.state = 1848; + this.state = 1858; this.statement(); } } @@ -8012,7 +8019,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowStmtIdentifierContext(this.context, this.state); this.enterRule(localContext, 194, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 1852; + this.state = 1862; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8257,14 +8264,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 1850; + this.state = 1860; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 1851; + this.state = 1861; this.match(HiveSqlParser.StringLiteral); } break; @@ -8292,9 +8299,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1854; + this.state = 1864; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1855; + this.state = 1865; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8318,9 +8325,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1857; + this.state = 1867; this.match(HiveSqlParser.KW_LIFECYCLE); - this.state = 1858; + this.state = 1868; this.match(HiveSqlParser.Number); } } @@ -8344,29 +8351,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1860; + this.state = 1870; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1861; + this.state = 1871; this.match(HiveSqlParser.KW_BY); - this.state = 1870; + this.state = 1880; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1862; + this.state = 1872; this.match(HiveSqlParser.LPAREN); - this.state = 1865; + this.state = 1875; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1863; + this.state = 1873; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 1864; + this.state = 1874; localContext._opt2 = this.columnNameList(); } break; @@ -8375,18 +8382,18 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SPEC: { - this.state = 1867; + this.state = 1877; this.match(HiveSqlParser.KW_SPEC); - this.state = 1868; + this.state = 1878; this.match(HiveSqlParser.LPAREN); - this.state = 1869; + this.state = 1879; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1872; + this.state = 1882; this.match(HiveSqlParser.RPAREN); } } @@ -8411,21 +8418,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1874; + this.state = 1884; this.columnNameTypeConstraint(); - this.state = 1879; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1875; + this.state = 1885; this.match(HiveSqlParser.COMMA); - this.state = 1876; + this.state = 1886; this.columnNameTypeConstraint(); } } - this.state = 1881; + this.state = 1891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8452,21 +8459,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1882; + this.state = 1892; this.partitionTransformType(); - this.state = 1887; + this.state = 1897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1883; + this.state = 1893; this.match(HiveSqlParser.COMMA); - this.state = 1884; + this.state = 1894; this.partitionTransformType(); } } - this.state = 1889; + this.state = 1899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8491,65 +8498,65 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 206, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 1908; + this.state = 1918; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1890; + this.state = 1900; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1895; + this.state = 1905; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: { - this.state = 1891; + this.state = 1901; this.year(); } break; case HiveSqlParser.KW_MONTH: case HiveSqlParser.KW_MONTHS: { - this.state = 1892; + this.state = 1902; this.month(); } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: { - this.state = 1893; + this.state = 1903; this.day(); } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: { - this.state = 1894; + this.state = 1904; this.hour(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1897; + this.state = 1907; this.match(HiveSqlParser.LPAREN); - this.state = 1898; + this.state = 1908; this.columnName(); - this.state = 1899; + this.state = 1909; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1901; + this.state = 1911; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 351)) { this.errorHandler.recoverInline(this); @@ -8558,15 +8565,15 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1902; + this.state = 1912; this.match(HiveSqlParser.LPAREN); - this.state = 1903; + this.state = 1913; localContext._value = this.match(HiveSqlParser.Number); - this.state = 1904; + this.state = 1914; this.match(HiveSqlParser.COMMA); - this.state = 1905; + this.state = 1915; this.columnName(); - this.state = 1906; + this.state = 1916; this.match(HiveSqlParser.RPAREN); } break; @@ -8593,39 +8600,39 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1920; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1911; + this.state = 1921; this.match(HiveSqlParser.KW_BY); - this.state = 1912; + this.state = 1922; this.match(HiveSqlParser.LPAREN); - this.state = 1913; + this.state = 1923; localContext._bucketCols = this.columnNameList(); - this.state = 1914; + this.state = 1924; this.match(HiveSqlParser.RPAREN); - this.state = 1921; + this.state = 1931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1915; + this.state = 1925; this.match(HiveSqlParser.KW_SORTED); - this.state = 1916; + this.state = 1926; this.match(HiveSqlParser.KW_BY); - this.state = 1917; + this.state = 1927; this.match(HiveSqlParser.LPAREN); - this.state = 1918; + this.state = 1928; localContext._sortCols = this.columnNameOrderList(); - this.state = 1919; + this.state = 1929; this.match(HiveSqlParser.RPAREN); } } - this.state = 1923; + this.state = 1933; this.match(HiveSqlParser.KW_INTO); - this.state = 1924; + this.state = 1934; localContext._num = this.match(HiveSqlParser.Number); - this.state = 1925; + this.state = 1935; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8649,30 +8656,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1927; + this.state = 1937; this.match(HiveSqlParser.KW_SKEWED); - this.state = 1928; + this.state = 1938; this.match(HiveSqlParser.KW_BY); - this.state = 1929; + this.state = 1939; this.match(HiveSqlParser.LPAREN); - this.state = 1930; + this.state = 1940; localContext._skewedCols = this.columnNameList(); - this.state = 1931; + this.state = 1941; this.match(HiveSqlParser.RPAREN); - this.state = 1932; + this.state = 1942; this.match(HiveSqlParser.KW_ON); - this.state = 1933; + this.state = 1943; this.match(HiveSqlParser.LPAREN); - this.state = 1934; + this.state = 1944; localContext._skewedValues = this.skewedValueElement(); - this.state = 1935; + this.state = 1945; this.match(HiveSqlParser.RPAREN); - this.state = 1937; + this.state = 1947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1936; + this.state = 1946; this.storedAsDirs(); } break; @@ -8697,20 +8704,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RowFormatContext(this.context, this.state); this.enterRule(localContext, 212, HiveSqlParser.RULE_rowFormat); try { - this.state = 1941; + this.state = 1951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1939; + this.state = 1949; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1940; + this.state = 1950; this.rowFormatDelimited(); } break; @@ -8736,9 +8743,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1943; + this.state = 1953; this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 1944; + this.state = 1954; this.match(HiveSqlParser.StringLiteral); } } @@ -8762,9 +8769,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1946; + this.state = 1956; this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 1947; + this.state = 1957; this.match(HiveSqlParser.StringLiteral); } } @@ -8788,24 +8795,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1949; + this.state = 1959; this.match(HiveSqlParser.KW_ROW); - this.state = 1950; + this.state = 1960; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1951; + this.state = 1961; this.match(HiveSqlParser.KW_SERDE); - this.state = 1952; + this.state = 1962; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 1956; + this.state = 1966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1953; + this.state = 1963; this.match(HiveSqlParser.KW_WITH); - this.state = 1954; + this.state = 1964; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 1955; + this.state = 1965; localContext._serderops = this.tableProperties(); } break; @@ -8833,58 +8840,58 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1958; + this.state = 1968; this.match(HiveSqlParser.KW_ROW); - this.state = 1959; + this.state = 1969; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1960; + this.state = 1970; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 1962; + this.state = 1972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 1961; + this.state = 1971; this.tableRowFormatFieldIdentifier(); } } - this.state = 1965; + this.state = 1975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1964; + this.state = 1974; this.tableRowFormatCollItemsIdentifier(); } } - this.state = 1968; + this.state = 1978; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1967; + this.state = 1977; this.tableRowFormatMapKeysIdentifier(); } break; } - this.state = 1971; + this.state = 1981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 186) { { - this.state = 1970; + this.state = 1980; this.tableRowFormatLinesIdentifier(); } } - this.state = 1974; + this.state = 1984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 1973; + this.state = 1983; this.tableRowNullFormat(); } } @@ -8909,20 +8916,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableRowFormatContext(this.context, this.state); this.enterRule(localContext, 222, HiveSqlParser.RULE_tableRowFormat); try { - this.state = 1978; + this.state = 1988; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1976; + this.state = 1986; this.rowFormatDelimited(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1977; + this.state = 1987; this.rowFormatSerde(); } break; @@ -8948,9 +8955,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1980; + this.state = 1990; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1981; + this.state = 1991; this.tableProperties(); } } @@ -8974,11 +8981,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1983; + this.state = 1993; this.match(HiveSqlParser.LPAREN); - this.state = 1984; + this.state = 1994; this.tablePropertiesList(); - this.state = 1985; + this.state = 1995; this.match(HiveSqlParser.RPAREN); } } @@ -9001,34 +9008,34 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 228, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 1996; + this.state = 2006; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1987; + this.state = 1997; this.keyValuePropertyList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1988; + this.state = 1998; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 1993; + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1989; + this.state = 1999; this.match(HiveSqlParser.COMMA); - this.state = 1990; + this.state = 2000; localContext._key = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1995; + this.state = 2005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9056,11 +9063,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 2008; this.match(HiveSqlParser.LPAREN); - this.state = 1999; + this.state = 2009; this.keyValuePropertyList(); - this.state = 2000; + this.state = 2010; this.match(HiveSqlParser.RPAREN); } } @@ -9085,21 +9092,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2002; + this.state = 2012; this.keyValueProperty(); - this.state = 2007; + this.state = 2017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2003; + this.state = 2013; this.match(HiveSqlParser.COMMA); - this.state = 2004; + this.state = 2014; this.keyValueProperty(); } } - this.state = 2009; + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9125,11 +9132,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2010; + this.state = 2020; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2011; + this.state = 2021; this.match(HiveSqlParser.EQUAL); - this.state = 2012; + this.state = 2022; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9154,24 +9161,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2014; + this.state = 2024; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2015; + this.state = 2025; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2016; + this.state = 2026; this.match(HiveSqlParser.KW_BY); - this.state = 2017; + this.state = 2027; localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); - this.state = 2021; + this.state = 2031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2018; + this.state = 2028; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2019; + this.state = 2029; this.match(HiveSqlParser.KW_BY); - this.state = 2020; + this.state = 2030; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9198,15 +9205,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2023; + this.state = 2033; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2024; + this.state = 2034; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2025; + this.state = 2035; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2026; + this.state = 2036; this.match(HiveSqlParser.KW_BY); - this.state = 2027; + this.state = 2037; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9230,15 +9237,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2029; + this.state = 2039; this.match(HiveSqlParser.KW_MAP); - this.state = 2030; + this.state = 2040; this.match(HiveSqlParser.KW_KEYS); - this.state = 2031; + this.state = 2041; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2032; + this.state = 2042; this.match(HiveSqlParser.KW_BY); - this.state = 2033; + this.state = 2043; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9262,13 +9269,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2035; + this.state = 2045; this.match(HiveSqlParser.KW_LINES); - this.state = 2036; + this.state = 2046; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2037; + this.state = 2047; this.match(HiveSqlParser.KW_BY); - this.state = 2038; + this.state = 2048; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9292,13 +9299,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2040; + this.state = 2050; this.match(HiveSqlParser.KW_NULL); - this.state = 2041; + this.state = 2051; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2042; + this.state = 2052; this.match(HiveSqlParser.KW_AS); - this.state = 2043; + this.state = 2053; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9321,36 +9328,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 246, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2086; + this.state = 2096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2055; this.match(HiveSqlParser.KW_STORED); - this.state = 2046; + this.state = 2056; this.match(HiveSqlParser.KW_AS); - this.state = 2047; + this.state = 2057; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2048; + this.state = 2058; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2049; + this.state = 2059; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 2050; + this.state = 2060; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2055; + this.state = 2065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2051; + this.state = 2061; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2052; + this.state = 2062; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2053; + this.state = 2063; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2054; + this.state = 2064; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9360,36 +9367,36 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2057; + this.state = 2067; this.match(HiveSqlParser.KW_STORED); - this.state = 2058; + this.state = 2068; this.match(HiveSqlParser.KW_BY); - this.state = 2059; + this.state = 2069; localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); - this.state = 2063; + this.state = 2073; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 2060; + this.state = 2070; this.match(HiveSqlParser.KW_WITH); - this.state = 2061; + this.state = 2071; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2062; + this.state = 2072; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2068; + this.state = 2078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2065; + this.state = 2075; this.match(HiveSqlParser.KW_STORED); - this.state = 2066; + this.state = 2076; this.match(HiveSqlParser.KW_AS); - this.state = 2067; + this.state = 2077; localContext._fileformat = this.id_(); } } @@ -9399,36 +9406,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2070; + this.state = 2080; this.match(HiveSqlParser.KW_STORED); - this.state = 2071; + this.state = 2081; this.match(HiveSqlParser.KW_BY); - this.state = 2072; + this.state = 2082; localContext._genericSpec = this.id_(); - this.state = 2076; + this.state = 2086; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2073; + this.state = 2083; this.match(HiveSqlParser.KW_WITH); - this.state = 2074; + this.state = 2084; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2075; + this.state = 2085; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2081; + this.state = 2091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2078; + this.state = 2088; this.match(HiveSqlParser.KW_STORED); - this.state = 2079; + this.state = 2089; this.match(HiveSqlParser.KW_AS); - this.state = 2080; + this.state = 2090; localContext._fileformat = this.id_(); } } @@ -9438,11 +9445,11 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2083; + this.state = 2093; this.match(HiveSqlParser.KW_STORED); - this.state = 2084; + this.state = 2094; this.match(HiveSqlParser.KW_AS); - this.state = 2085; + this.state = 2095; localContext._genericSpec = this.id_(); } break; @@ -9469,21 +9476,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2088; + this.state = 2098; this.columnNameType(); - this.state = 2093; + this.state = 2103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2089; + this.state = 2099; this.match(HiveSqlParser.COMMA); - this.state = 2090; + this.state = 2100; this.columnNameType(); } } - this.state = 2095; + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9510,21 +9517,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2096; + this.state = 2106; this.columnNameTypeOrConstraint(); - this.state = 2101; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2097; + this.state = 2107; this.match(HiveSqlParser.COMMA); - this.state = 2098; + this.state = 2108; this.columnNameTypeOrConstraint(); } } - this.state = 2103; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9551,21 +9558,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2104; + this.state = 2114; this.columnNameColonType(); - this.state = 2109; + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2105; + this.state = 2115; this.match(HiveSqlParser.COMMA); - this.state = 2106; + this.state = 2116; this.columnNameColonType(); } } - this.state = 2111; + this.state = 2121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9592,21 +9599,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2112; + this.state = 2122; this.columnName(); - this.state = 2117; + this.state = 2127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2113; + this.state = 2123; this.match(HiveSqlParser.COMMA); - this.state = 2114; + this.state = 2124; this.columnName(); } } - this.state = 2119; + this.state = 2129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9630,20 +9637,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 256, HiveSqlParser.RULE_columnName); try { - this.state = 2122; + this.state = 2132; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2120; + this.state = 2130; this.poolPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2121; + this.state = 2131; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -9671,7 +9678,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2124; + this.state = 2134; this.poolPath(); } } @@ -9695,7 +9702,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2126; + this.state = 2136; this.id_(); } } @@ -9720,47 +9727,47 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2128; - this.columnName(); this.state = 2138; + this.columnName(); + this.state = 2148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 2129; + this.state = 2139; this.match(HiveSqlParser.DOT); - this.state = 2134; + this.state = 2144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2130; + this.state = 2140; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2131; + this.state = 2141; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2132; + this.state = 2142; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2133; + this.state = 2143; this.id_(); } break; } } } - this.state = 2140; + this.state = 2150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9787,21 +9794,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2151; this.columnNameOrder(); - this.state = 2146; + this.state = 2156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2142; + this.state = 2152; this.match(HiveSqlParser.COMMA); - this.state = 2143; + this.state = 2153; this.columnNameOrder(); } } - this.state = 2148; + this.state = 2158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9827,11 +9834,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2149; + this.state = 2159; this.match(HiveSqlParser.LPAREN); - this.state = 2150; + this.state = 2160; this.columnNameList(); - this.state = 2151; + this.state = 2161; this.match(HiveSqlParser.RPAREN); } } @@ -9854,7 +9861,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 268, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2158; + this.state = 2168; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -9863,14 +9870,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2153; + this.state = 2163; this.enableSpecification(); - this.state = 2155; + this.state = 2165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217 || _la === 373) { { - this.state = 2154; + this.state = 2164; this.validateSpecification(); } } @@ -9881,7 +9888,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2157; + this.state = 2167; this.enforcedSpecification(); } break; @@ -9907,14 +9914,14 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new EnableSpecificationContext(this.context, this.state); this.enterRule(localContext, 270, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2162; + this.state = 2172; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2170; this.enable(); } break; @@ -9922,7 +9929,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2161; + this.state = 2171; this.disable(); } break; @@ -9951,7 +9958,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2164; + this.state = 2174; _la = this.tokenStream.LA(1); if(!(_la === 217 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -9980,22 +9987,22 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new EnforcedSpecificationContext(this.context, this.state); this.enterRule(localContext, 274, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2169; + this.state = 2179; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2166; + this.state = 2176; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2167; + this.state = 2177; this.match(HiveSqlParser.KW_NOT); - this.state = 2168; + this.state = 2178; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -10024,7 +10031,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2181; _la = this.tokenStream.LA(1); if(!(_la === 214 || _la === 272)) { this.errorHandler.recoverInline(this); @@ -10056,26 +10063,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2173; + this.state = 2183; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2174; + this.state = 2184; localContext._constraintName = this.id_(); } } - this.state = 2177; + this.state = 2187; this.tableLevelConstraint(); - this.state = 2179; + this.state = 2189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2178; + this.state = 2188; this.constraintOptsCreate(); } } @@ -10102,18 +10109,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2181; + this.state = 2191; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2182; + this.state = 2192; localContext._constraintName = this.id_(); - this.state = 2183; + this.state = 2193; this.tableLevelConstraint(); - this.state = 2185; + this.state = 2195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2184; + this.state = 2194; this.constraintOptsAlter(); } break; @@ -10138,21 +10145,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableLevelConstraintContext(this.context, this.state); this.enterRule(localContext, 282, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2189; + this.state = 2199; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2187; + this.state = 2197; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2188; + this.state = 2198; this.checkConstraint(); } break; @@ -10180,9 +10187,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2191; + this.state = 2201; this.tableConstraintType(); - this.state = 2192; + this.state = 2202; localContext._pkCols = this.columnParenthesesList(); } } @@ -10206,13 +10213,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2194; + this.state = 2204; this.match(HiveSqlParser.KW_CHECK); - this.state = 2195; + this.state = 2205; this.match(HiveSqlParser.LPAREN); - this.state = 2196; + this.state = 2206; this.expression(); - this.state = 2197; + this.state = 2207; this.match(HiveSqlParser.RPAREN); } } @@ -10237,36 +10244,36 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2199; + this.state = 2209; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2200; + this.state = 2210; localContext._constraintName = this.id_(); } } - this.state = 2203; + this.state = 2213; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2204; + this.state = 2214; this.match(HiveSqlParser.KW_KEY); - this.state = 2205; + this.state = 2215; localContext._fkCols = this.columnParenthesesList(); - this.state = 2206; + this.state = 2216; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2207; + this.state = 2217; localContext._tabName = this.tableName(); - this.state = 2208; + this.state = 2218; localContext._parCols = this.columnParenthesesList(); - this.state = 2210; + this.state = 2220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2209; + this.state = 2219; this.constraintOptsCreate(); } } @@ -10293,28 +10300,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2212; + this.state = 2222; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2213; + this.state = 2223; localContext._constraintName = this.id_(); - this.state = 2214; + this.state = 2224; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2215; + this.state = 2225; this.match(HiveSqlParser.KW_KEY); - this.state = 2216; + this.state = 2226; localContext._fkCols = this.columnParenthesesList(); - this.state = 2217; + this.state = 2227; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2218; + this.state = 2228; localContext._tabName = this.tableName(); - this.state = 2219; + this.state = 2229; localContext._parCols = this.columnParenthesesList(); - this.state = 2221; + this.state = 2231; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 2220; + this.state = 2230; this.constraintOptsAlter(); } break; @@ -10339,7 +10346,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new SkewedValueElementContext(this.context, this.state); this.enterRule(localContext, 292, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2225; + this.state = 2235; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -10598,14 +10605,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2233; this.constantList(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2224; + this.state = 2234; this.skewedColumnValuePairList(); } break; @@ -10634,21 +10641,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2227; + this.state = 2237; this.skewedColumnValuePair(); - this.state = 2232; + this.state = 2242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2228; + this.state = 2238; this.match(HiveSqlParser.COMMA); - this.state = 2229; + this.state = 2239; this.skewedColumnValuePair(); } } - this.state = 2234; + this.state = 2244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10674,11 +10681,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2235; + this.state = 2245; this.match(HiveSqlParser.LPAREN); - this.state = 2236; + this.state = 2246; localContext._colValues = this.constantList(); - this.state = 2237; + this.state = 2247; this.match(HiveSqlParser.RPAREN); } } @@ -10703,21 +10710,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2239; + this.state = 2249; this.constant(); - this.state = 2244; + this.state = 2254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2240; + this.state = 2250; this.match(HiveSqlParser.COMMA); - this.state = 2241; + this.state = 2251; this.constant(); } } - this.state = 2246; + this.state = 2256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10744,7 +10751,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2247; + this.state = 2257; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10776,9 +10783,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2249; + this.state = 2259; this.match(HiveSqlParser.KW_NULLS); - this.state = 2250; + this.state = 2260; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10810,24 +10817,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2252; + this.state = 2262; this.columnName(); - this.state = 2254; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2253; + this.state = 2263; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2257; + this.state = 2267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2256; + this.state = 2266; localContext._nullSpec = this.nullOrdering(); } } @@ -10855,21 +10862,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2259; + this.state = 2269; this.columnNameComment(); - this.state = 2264; + this.state = 2274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2260; + this.state = 2270; this.match(HiveSqlParser.COMMA); - this.state = 2261; + this.state = 2271; this.columnNameComment(); } } - this.state = 2266; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10896,16 +10903,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2277; localContext._colName = this.columnNameCreate(); - this.state = 2270; + this.state = 2280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2268; + this.state = 2278; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2269; + this.state = 2279; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10933,38 +10940,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 2272; + this.state = 2282; this.columnName(); } break; case 2: { - this.state = 2273; + this.state = 2283; this.expression(); } break; } - this.state = 2277; + this.state = 2287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2276; + this.state = 2286; localContext._orderSpec = this.orderSpecification(); } break; } - this.state = 2280; + this.state = 2290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2279; + this.state = 2289; localContext._nullSpec = this.nullOrdering(); } } @@ -10992,18 +10999,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2282; + this.state = 2292; localContext._colName = this.columnNameCreate(); - this.state = 2283; + this.state = 2293; this.columnType(); - this.state = 2286; + this.state = 2296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2284; + this.state = 2294; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2285; + this.state = 2295; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11028,20 +11035,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); this.enterRule(localContext, 314, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2290; + this.state = 2300; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2288; + this.state = 2298; this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2289; + this.state = 2299; this.columnNameTypeConstraint(); } break; @@ -11065,20 +11072,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableConstraintContext(this.context, this.state); this.enterRule(localContext, 316, HiveSqlParser.RULE_tableConstraint); try { - this.state = 2294; + this.state = 2304; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2292; + this.state = 2302; this.createForeignKey(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2293; + this.state = 2303; this.createConstraint(); } break; @@ -11105,28 +11112,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2296; + this.state = 2306; localContext._colName = this.columnNameCreate(); - this.state = 2297; + this.state = 2307; localContext._colType = this.columnType(); - this.state = 2299; + this.state = 2309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 2298; + this.state = 2308; this.columnConstraint(); } } - this.state = 2303; + this.state = 2313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2301; + this.state = 2311; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2302; + this.state = 2312; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11151,20 +11158,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnConstraintContext(this.context, this.state); this.enterRule(localContext, 320, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2307; + this.state = 2317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2305; + this.state = 2315; this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2306; + this.state = 2316; this.colConstraint(); } break; @@ -11191,34 +11198,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2311; + this.state = 2321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2309; + this.state = 2319; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2310; + this.state = 2320; localContext._constraintName = this.id_(); } } - this.state = 2313; + this.state = 2323; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2314; + this.state = 2324; localContext._tabName = this.tableName(); - this.state = 2315; + this.state = 2325; this.match(HiveSqlParser.LPAREN); - this.state = 2316; + this.state = 2326; localContext._colName = this.columnName(); - this.state = 2317; + this.state = 2327; this.match(HiveSqlParser.RPAREN); - this.state = 2319; + this.state = 2329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2318; + this.state = 2328; this.constraintOptsCreate(); } } @@ -11246,26 +11253,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2323; + this.state = 2333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2321; + this.state = 2331; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2322; + this.state = 2332; localContext._constraintName = this.id_(); } } - this.state = 2325; + this.state = 2335; this.columnConstraintType(); - this.state = 2327; + this.state = 2337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2326; + this.state = 2336; this.constraintOptsCreate(); } } @@ -11290,20 +11297,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterColumnConstraintContext(this.context, this.state); this.enterRule(localContext, 326, HiveSqlParser.RULE_alterColumnConstraint); try { - this.state = 2331; + this.state = 2341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2329; + this.state = 2339; this.alterForeignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2330; + this.state = 2340; this.alterColConstraint(); } break; @@ -11330,34 +11337,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2335; + this.state = 2345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2333; + this.state = 2343; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2334; + this.state = 2344; localContext._constraintName = this.id_(); } } - this.state = 2337; + this.state = 2347; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2338; + this.state = 2348; localContext._tabName = this.tableName(); - this.state = 2339; + this.state = 2349; this.match(HiveSqlParser.LPAREN); - this.state = 2340; + this.state = 2350; localContext._colName = this.columnName(); - this.state = 2341; + this.state = 2351; this.match(HiveSqlParser.RPAREN); - this.state = 2343; + this.state = 2353; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2342; + this.state = 2352; this.constraintOptsAlter(); } break; @@ -11385,26 +11392,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2347; + this.state = 2357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2345; + this.state = 2355; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2346; + this.state = 2356; localContext._constraintName = this.id_(); } } - this.state = 2349; + this.state = 2359; this.columnConstraintType(); - this.state = 2351; + this.state = 2361; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2350; + this.state = 2360; this.constraintOptsAlter(); } break; @@ -11429,31 +11436,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnConstraintTypeContext(this.context, this.state); this.enterRule(localContext, 332, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2359; + this.state = 2369; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2353; + this.state = 2363; this.match(HiveSqlParser.KW_NOT); - this.state = 2354; + this.state = 2364; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2355; + this.state = 2365; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 2356; + this.state = 2366; this.defaultVal(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2357; + this.state = 2367; this.checkConstraint(); } break; @@ -11461,7 +11468,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2358; + this.state = 2368; this.tableConstraintType(); } break; @@ -11487,27 +11494,27 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new DefaultValContext(this.context, this.state); this.enterRule(localContext, 334, HiveSqlParser.RULE_defaultVal); try { - this.state = 2364; + this.state = 2374; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2361; + this.state = 2371; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2362; + this.state = 2372; this.function_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2363; + this.state = 2373; this.castExpression(); } break; @@ -11531,22 +11538,22 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableConstraintTypeContext(this.context, this.state); this.enterRule(localContext, 336, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2369; + this.state = 2379; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2366; + this.state = 2376; this.match(HiveSqlParser.KW_PRIMARY); - this.state = 2367; + this.state = 2377; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2368; + this.state = 2378; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11575,14 +11582,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2371; + this.state = 2381; this.enableValidateSpecification(); - this.state = 2373; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2372; + this.state = 2382; this.relySpecification(); } } @@ -11610,14 +11617,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2375; + this.state = 2385; this.enableValidateSpecification(); - this.state = 2377; + this.state = 2387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2376; + this.state = 2386; this.relySpecification(); } } @@ -11645,20 +11652,20 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2379; + this.state = 2389; localContext._colName = this.columnNameCreate(); - this.state = 2380; + this.state = 2390; this.match(HiveSqlParser.COLON); - this.state = 2381; + this.state = 2391; this.columnType(); - this.state = 2384; + this.state = 2394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2382; + this.state = 2392; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2383; + this.state = 2393; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11685,7 +11692,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2386; + this.state = 2396; this.type_(); } } @@ -11710,21 +11717,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2388; + this.state = 2398; this.columnType(); - this.state = 2393; + this.state = 2403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2389; + this.state = 2399; this.match(HiveSqlParser.COMMA); - this.state = 2390; + this.state = 2400; this.columnType(); } } - this.state = 2395; + this.state = 2405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11748,7 +11755,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TypeContext(this.context, this.state); this.enterRule(localContext, 348, HiveSqlParser.RULE_type); try { - this.state = 2401; + this.state = 2411; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11773,35 +11780,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2396; + this.state = 2406; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2397; + this.state = 2407; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2398; + this.state = 2408; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2399; + this.state = 2409; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2400; + this.state = 2410; this.unionType(); } break; @@ -11828,76 +11835,76 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 350, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2440; + this.state = 2450; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2403; + this.state = 2413; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2404; + this.state = 2414; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2405; + this.state = 2415; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2406; + this.state = 2416; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2407; + this.state = 2417; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2408; + this.state = 2418; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2409; + this.state = 2419; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2410; + this.state = 2420; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2411; + this.state = 2421; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2413; + this.state = 2423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 248) { { - this.state = 2412; + this.state = 2422; this.match(HiveSqlParser.KW_PRECISION); } } @@ -11907,87 +11914,87 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2415; + this.state = 2425; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2416; + this.state = 2426; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2417; + this.state = 2427; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2418; + this.state = 2428; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2419; + this.state = 2429; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 2420; + this.state = 2430; this.match(HiveSqlParser.KW_WITH); - this.state = 2421; + this.state = 2431; this.match(HiveSqlParser.KW_LOCAL); - this.state = 2422; + this.state = 2432; this.match(HiveSqlParser.KW_TIME); - this.state = 2423; + this.state = 2433; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2424; + this.state = 2434; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2425; + this.state = 2435; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2426; + this.state = 2436; this.decimal(); - this.state = 2434; + this.state = 2444; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2427; + this.state = 2437; this.match(HiveSqlParser.LPAREN); - this.state = 2428; + this.state = 2438; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2431; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 2429; + this.state = 2439; this.match(HiveSqlParser.COMMA); - this.state = 2430; + this.state = 2440; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2433; + this.state = 2443; this.match(HiveSqlParser.RPAREN); } break; @@ -11997,7 +12004,7 @@ export class HiveSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2436; + this.state = 2446; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 376)) { this.errorHandler.recoverInline(this); @@ -12006,11 +12013,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2437; + this.state = 2447; this.match(HiveSqlParser.LPAREN); - this.state = 2438; + this.state = 2448; localContext._length = this.match(HiveSqlParser.Number); - this.state = 2439; + this.state = 2449; this.match(HiveSqlParser.RPAREN); } break; @@ -12036,13 +12043,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2442; + this.state = 2452; this.match(HiveSqlParser.KW_ARRAY); - this.state = 2443; + this.state = 2453; this.match(HiveSqlParser.LESSTHAN); - this.state = 2444; + this.state = 2454; this.type_(); - this.state = 2445; + this.state = 2455; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12066,13 +12073,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2447; + this.state = 2457; this.match(HiveSqlParser.KW_STRUCT); - this.state = 2448; + this.state = 2458; this.match(HiveSqlParser.LESSTHAN); - this.state = 2449; + this.state = 2459; this.columnNameColonTypeList(); - this.state = 2450; + this.state = 2460; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12096,17 +12103,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2452; + this.state = 2462; this.match(HiveSqlParser.KW_MAP); - this.state = 2453; + this.state = 2463; this.match(HiveSqlParser.LESSTHAN); - this.state = 2454; + this.state = 2464; localContext._left = this.primitiveType(); - this.state = 2455; + this.state = 2465; this.match(HiveSqlParser.COMMA); - this.state = 2456; + this.state = 2466; localContext._right = this.type_(); - this.state = 2457; + this.state = 2467; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12130,13 +12137,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2459; + this.state = 2469; this.match(HiveSqlParser.KW_UNIONTYPE); - this.state = 2460; + this.state = 2470; this.match(HiveSqlParser.LESSTHAN); - this.state = 2461; + this.state = 2471; this.columnTypeList(); - this.state = 2462; + this.state = 2472; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12161,7 +12168,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2464; + this.state = 2474; _la = this.tokenStream.LA(1); if(!(_la === 112 || _la === 164 || _la === 205 || _la === 356)) { this.errorHandler.recoverInline(this); @@ -12170,12 +12177,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2466; + this.state = 2476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2465; + this.state = 2475; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -12210,17 +12217,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2469; + this.state = 2479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2468; + this.state = 2478; localContext._w = this.withClause(); } } - this.state = 2471; + this.state = 2481; this.queryStatementExpressionBody(); } } @@ -12242,13 +12249,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); this.enterRule(localContext, 364, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2475; + this.state = 2485; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2473; + this.state = 2483; this.fromStatement(); } break; @@ -12260,7 +12267,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2474; + this.state = 2484; this.regularBody(); } break; @@ -12289,23 +12296,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2477; + this.state = 2487; this.match(HiveSqlParser.KW_WITH); - this.state = 2478; + this.state = 2488; this.cteStatement(); - this.state = 2483; + this.state = 2493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2479; + this.state = 2489; this.match(HiveSqlParser.COMMA); - this.state = 2480; + this.state = 2490; this.cteStatement(); } } - this.state = 2485; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12332,29 +12339,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2486; + this.state = 2496; this.id_(); - this.state = 2491; + this.state = 2501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2487; + this.state = 2497; this.match(HiveSqlParser.LPAREN); - this.state = 2488; + this.state = 2498; localContext._colAliases = this.columnNameList(); - this.state = 2489; + this.state = 2499; this.match(HiveSqlParser.RPAREN); } } - this.state = 2493; + this.state = 2503; this.match(HiveSqlParser.KW_AS); - this.state = 2494; + this.state = 2504; this.match(HiveSqlParser.LPAREN); - this.state = 2495; + this.state = 2505; this.queryStatementExpression(); - this.state = 2496; + this.state = 2506; this.match(HiveSqlParser.RPAREN); } } @@ -12379,21 +12386,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2498; + this.state = 2508; this.singleFromStatement(); - this.state = 2504; + this.state = 2514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { { - this.state = 2499; + this.state = 2509; localContext._u = this.setOperator(); - this.state = 2500; + this.state = 2510; localContext._r = this.singleFromStatement(); } } - this.state = 2506; + this.state = 2516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12418,125 +12425,125 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 372, HiveSqlParser.RULE_singleFromStatement); let _la: number; try { - this.state = 2578; + this.state = 2588; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new FromInsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2507; + this.state = 2517; this.fromClause(); - this.state = 2508; + this.state = 2518; this.insertClause(); - this.state = 2509; + this.state = 2519; this.selectClause(); - this.state = 2511; + this.state = 2521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2510; + this.state = 2520; this.lateralView(); } } - this.state = 2514; + this.state = 2524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2513; + this.state = 2523; this.whereClause(); } } - this.state = 2517; + this.state = 2527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2516; + this.state = 2526; this.groupByClause(); } } - this.state = 2520; + this.state = 2530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2519; + this.state = 2529; this.havingClause(); } } - this.state = 2523; + this.state = 2533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2522; + this.state = 2532; this.window_clause(); } } - this.state = 2526; + this.state = 2536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2525; + this.state = 2535; this.qualifyClause(); } } - this.state = 2529; + this.state = 2539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2528; + this.state = 2538; this.orderByClause(); } } - this.state = 2532; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2531; + this.state = 2541; this.clusterByClause(); } } - this.state = 2535; + this.state = 2545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2534; + this.state = 2544; this.distributeByClause(); } } - this.state = 2538; + this.state = 2548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2537; + this.state = 2547; this.sortByClause(); } } - this.state = 2541; + this.state = 2551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2540; + this.state = 2550; this.limitClause(); } } @@ -12547,116 +12554,116 @@ export class HiveSqlParser extends SQLParserBase { localContext = new FromSelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2543; + this.state = 2553; this.fromClause(); - this.state = 2544; + this.state = 2554; this.selectClause(); - this.state = 2546; + this.state = 2556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2545; + this.state = 2555; this.lateralView(); } } - this.state = 2549; + this.state = 2559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2548; + this.state = 2558; this.whereClause(); } } - this.state = 2552; + this.state = 2562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2551; + this.state = 2561; this.groupByClause(); } } - this.state = 2555; + this.state = 2565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2554; + this.state = 2564; this.havingClause(); } } - this.state = 2558; + this.state = 2568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2557; + this.state = 2567; this.window_clause(); } } - this.state = 2561; + this.state = 2571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2560; + this.state = 2570; this.qualifyClause(); } } - this.state = 2564; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2563; + this.state = 2573; this.orderByClause(); } } - this.state = 2567; + this.state = 2577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2566; + this.state = 2576; this.clusterByClause(); } } - this.state = 2570; + this.state = 2580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2569; + this.state = 2579; this.distributeByClause(); } } - this.state = 2573; + this.state = 2583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2572; + this.state = 2582; this.sortByClause(); } } - this.state = 2576; + this.state = 2586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2575; + this.state = 2585; this.limitClause(); } } @@ -12683,16 +12690,16 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RegularBodyContext(this.context, this.state); this.enterRule(localContext, 374, HiveSqlParser.RULE_regularBody); try { - this.state = 2584; + this.state = 2594; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2590; (localContext as InsertStmtContext)._i = this.insertClause(); - this.state = 2581; + this.state = 2591; (localContext as InsertStmtContext)._s = this.selectStatement(); } break; @@ -12704,7 +12711,7 @@ export class HiveSqlParser extends SQLParserBase { localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2583; + this.state = 2593; this.selectStatement(); } break; @@ -12731,7 +12738,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 376, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2610; + this.state = 2620; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12739,64 +12746,64 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2586; + this.state = 2596; localContext._s = this.selectClause(); - this.state = 2588; + this.state = 2598; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { - this.state = 2587; + this.state = 2597; localContext._f = this.fromClause(); } break; } - this.state = 2591; + this.state = 2601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2590; + this.state = 2600; localContext._w = this.whereClause(); } } - this.state = 2594; + this.state = 2604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2593; + this.state = 2603; localContext._g = this.groupByClause(); } } - this.state = 2597; + this.state = 2607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2596; + this.state = 2606; localContext._h = this.havingClause(); } } - this.state = 2600; + this.state = 2610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2599; + this.state = 2609; localContext._win = this.window_clause(); } } - this.state = 2603; + this.state = 2613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2602; + this.state = 2612; localContext._q = this.qualifyClause(); } } @@ -12806,18 +12813,18 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2605; + this.state = 2615; this.match(HiveSqlParser.LPAREN); - this.state = 2606; + this.state = 2616; this.selectStatement(); - this.state = 2607; + this.state = 2617; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2609; + this.state = 2619; this.valuesClause(); } break; @@ -12846,64 +12853,64 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2612; + this.state = 2622; localContext._a = this.atomSelectStatement(); - this.state = 2614; + this.state = 2624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { - this.state = 2613; + this.state = 2623; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2617; + this.state = 2627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2616; + this.state = 2626; localContext._o = this.orderByClause(); } } - this.state = 2620; + this.state = 2630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2619; + this.state = 2629; localContext._c = this.clusterByClause(); } } - this.state = 2623; + this.state = 2633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2622; + this.state = 2632; localContext._d = this.distributeByClause(); } } - this.state = 2626; + this.state = 2636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2625; + this.state = 2635; localContext._sort = this.sortByClause(); } } - this.state = 2629; + this.state = 2639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2628; + this.state = 2638; localContext._l = this.limitClause(); } } @@ -12931,19 +12938,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2634; + this.state = 2644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2631; + this.state = 2641; localContext._u = this.setOperator(); - this.state = 2632; + this.state = 2642; localContext._b = this.atomSelectStatement(); } } - this.state = 2636; + this.state = 2646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 112 || _la === 164 || _la === 205 || _la === 356); @@ -12970,17 +12977,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2639; + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2638; + this.state = 2648; localContext._w = this.withClause(); } } - this.state = 2641; + this.state = 2651; this.selectStatement(); } } @@ -13005,23 +13012,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2643; + this.state = 2653; this.match(HiveSqlParser.KW_INSERT); - this.state = 2660; + this.state = 2670; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 2644; + this.state = 2654; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2645; + this.state = 2655; this.destination(); - this.state = 2647; + this.state = 2657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2646; + this.state = 2656; this.ifNotExists(); } } @@ -13030,30 +13037,30 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_INTO: { - this.state = 2649; + this.state = 2659; this.match(HiveSqlParser.KW_INTO); - this.state = 2651; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 2650; + this.state = 2660; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 2653; + this.state = 2663; this.tableOrPartition(); - this.state = 2658; + this.state = 2668; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2654; + this.state = 2664; this.match(HiveSqlParser.LPAREN); - this.state = 2655; + this.state = 2665; localContext._targetCols = this.columnNameList(); - this.state = 2656; + this.state = 2666; this.match(HiveSqlParser.RPAREN); } break; @@ -13084,43 +13091,43 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 386, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 2675; + this.state = 2685; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 2663; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2662; + this.state = 2672; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 2665; + this.state = 2675; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 2666; + this.state = 2676; this.match(HiveSqlParser.StringLiteral); - this.state = 2668; + this.state = 2678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 2667; + this.state = 2677; this.tableRowFormat(); } } - this.state = 2671; + this.state = 2681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2670; + this.state = 2680; this.tableFileFormat(); } } @@ -13130,9 +13137,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2673; + this.state = 2683; this.match(HiveSqlParser.KW_TABLE); - this.state = 2674; + this.state = 2684; this.tableOrPartition(); } break; @@ -13160,36 +13167,36 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2677; + this.state = 2687; this.match(HiveSqlParser.KW_LIMIT); - this.state = 2686; + this.state = 2696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2680; + this.state = 2690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2678; + this.state = 2688; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 2679; + this.state = 2689; this.match(HiveSqlParser.COMMA); } break; } - this.state = 2682; + this.state = 2692; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 2683; + this.state = 2693; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2684; + this.state = 2694; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2685; + this.state = 2695; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -13216,11 +13223,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2688; + this.state = 2698; this.columnName(); - this.state = 2689; + this.state = 2699; this.match(HiveSqlParser.EQUAL); - this.state = 2690; + this.state = 2700; this.precedencePlusExpressionOrDefault(); } } @@ -13242,20 +13249,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); this.enterRule(localContext, 392, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 2694; + this.state = 2704; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2692; + this.state = 2702; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2693; + this.state = 2703; this.precedencePlusExpression(); } break; @@ -13282,23 +13289,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2696; + this.state = 2706; this.match(HiveSqlParser.KW_SET); - this.state = 2697; + this.state = 2707; this.columnAssignmentClause(); - this.state = 2702; + this.state = 2712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2698; + this.state = 2708; this.match(HiveSqlParser.COMMA); - this.state = 2699; + this.state = 2709; this.columnAssignmentClause(); } } - this.state = 2704; + this.state = 2714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13323,36 +13330,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 396, HiveSqlParser.RULE_sqlTransactionStatement); let _la: number; try { - this.state = 2728; + this.state = 2738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 2705; + this.state = 2715; this.match(HiveSqlParser.KW_START); - this.state = 2706; + this.state = 2716; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 2715; + this.state = 2725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168 || _la === 261) { { - this.state = 2707; + this.state = 2717; this.transactionMode(); - this.state = 2712; + this.state = 2722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2708; + this.state = 2718; this.match(HiveSqlParser.COMMA); - this.state = 2709; + this.state = 2719; this.transactionMode(); } } - this.state = 2714; + this.state = 2724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13364,14 +13371,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 2717; + this.state = 2727; this.match(HiveSqlParser.KW_COMMIT); - this.state = 2719; + this.state = 2729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2718; + this.state = 2728; this.match(HiveSqlParser.KW_WORK); } } @@ -13381,14 +13388,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 2721; + this.state = 2731; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 2723; + this.state = 2733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2722; + this.state = 2732; this.match(HiveSqlParser.KW_WORK); } } @@ -13398,11 +13405,11 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2725; + this.state = 2735; this.match(HiveSqlParser.KW_SET); - this.state = 2726; + this.state = 2736; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 2727; + this.state = 2737; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); @@ -13436,26 +13443,26 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 398, HiveSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 2735; + this.state = 2745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 2730; + this.state = 2740; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 2731; + this.state = 2741; this.match(HiveSqlParser.KW_LEVEL); - this.state = 2732; + this.state = 2742; this.match(HiveSqlParser.KW_SNAPSHOT); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 2733; + this.state = 2743; this.match(HiveSqlParser.KW_READ); - this.state = 2734; + this.state = 2744; _la = this.tokenStream.LA(1); if(!(_la === 225 || _la === 391)) { this.errorHandler.recoverInline(this); @@ -13492,40 +13499,40 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2741; + this.state = 2751; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2739; + this.state = 2749; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2737; + this.state = 2747; this.whenMatchedAndClause(); } break; case 2: { - this.state = 2738; + this.state = 2748; this.whenMatchedThenClause(); } break; } } } - this.state = 2743; + this.state = 2753; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); } - this.state = 2745; + this.state = 2755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 2744; + this.state = 2754; this.whenNotMatchedClause(); } } @@ -13553,41 +13560,41 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2747; + this.state = 2757; this.match(HiveSqlParser.KW_WHEN); - this.state = 2748; + this.state = 2758; this.match(HiveSqlParser.KW_NOT); - this.state = 2749; + this.state = 2759; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2752; + this.state = 2762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2750; + this.state = 2760; this.match(HiveSqlParser.KW_AND); - this.state = 2751; + this.state = 2761; this.expression(); } } - this.state = 2754; + this.state = 2764; this.match(HiveSqlParser.KW_THEN); - this.state = 2755; + this.state = 2765; this.match(HiveSqlParser.KW_INSERT); - this.state = 2757; + this.state = 2767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2756; + this.state = 2766; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 2759; + this.state = 2769; this.match(HiveSqlParser.KW_VALUES); - this.state = 2760; + this.state = 2770; this.expressionsInParenthesis(); } } @@ -13611,30 +13618,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2762; + this.state = 2772; this.match(HiveSqlParser.KW_WHEN); - this.state = 2763; + this.state = 2773; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2764; + this.state = 2774; this.match(HiveSqlParser.KW_AND); - this.state = 2765; + this.state = 2775; this.expression(); - this.state = 2766; + this.state = 2776; this.match(HiveSqlParser.KW_THEN); - this.state = 2770; + this.state = 2780; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2767; + this.state = 2777; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2768; + this.state = 2778; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2769; + this.state = 2779; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13663,26 +13670,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2772; + this.state = 2782; this.match(HiveSqlParser.KW_WHEN); - this.state = 2773; + this.state = 2783; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2774; + this.state = 2784; this.match(HiveSqlParser.KW_THEN); - this.state = 2778; + this.state = 2788; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2775; + this.state = 2785; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2776; + this.state = 2786; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2777; + this.state = 2787; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13711,9 +13718,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2780; + this.state = 2790; this.match(HiveSqlParser.KW_POOL); - this.state = 2781; + this.state = 2791; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -13737,9 +13744,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2783; + this.state = 2793; this.match(HiveSqlParser.KW_TYPE); - this.state = 2784; + this.state = 2794; localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } @@ -13763,9 +13770,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2786; + this.state = 2796; this.match(HiveSqlParser.KW_STATUS); - this.state = 2787; + this.state = 2797; localContext._status = this.match(HiveSqlParser.StringLiteral); } } @@ -13790,69 +13797,69 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2789; + this.state = 2799; this.match(HiveSqlParser.KW_ALTER); - this.state = 2820; + this.state = 2830; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 2790; + this.state = 2800; this.match(HiveSqlParser.KW_TABLE); - this.state = 2791; + this.state = 2801; this.tableName(); - this.state = 2792; + this.state = 2802; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 2794; + this.state = 2804; this.match(HiveSqlParser.KW_VIEW); - this.state = 2795; + this.state = 2805; this.viewName(); - this.state = 2797; + this.state = 2807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2796; + this.state = 2806; this.match(HiveSqlParser.KW_AS); } } - this.state = 2799; + this.state = 2809; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 2801; + this.state = 2811; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2802; + this.state = 2812; this.match(HiveSqlParser.KW_VIEW); - this.state = 2803; + this.state = 2813; localContext._tableNameTree = this.viewName(); - this.state = 2807; + this.state = 2817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 2804; + this.state = 2814; localContext._mvRewriteFlag = this.rewriteEnabled(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 2805; + this.state = 2815; localContext._mvRewriteFlag2 = this.rewriteDisabled(); } break; case HiveSqlParser.KW_REBUILD: { - this.state = 2806; + this.state = 2816; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13864,31 +13871,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 2809; + this.state = 2819; this.db_schema(); - this.state = 2810; + this.state = 2820; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 2812; + this.state = 2822; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 2813; + this.state = 2823; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 2814; + this.state = 2824; this.match(HiveSqlParser.KW_INDEX); - this.state = 2815; + this.state = 2825; this.id_(); - this.state = 2816; + this.state = 2826; this.match(HiveSqlParser.KW_ON); - this.state = 2817; + this.state = 2827; this.tableOrPartition(); - this.state = 2818; + this.state = 2828; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13916,72 +13923,72 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 416, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 2911; + this.state = 2921; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2822; + this.state = 2832; this.match(HiveSqlParser.KW_RENAME); - this.state = 2823; + this.state = 2833; this.match(HiveSqlParser.KW_TO); - this.state = 2824; + this.state = 2834; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2825; + this.state = 2835; this.match(HiveSqlParser.KW_RECOVER); - this.state = 2826; + this.state = 2836; this.match(HiveSqlParser.KW_PARTITIONS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2827; + this.state = 2837; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2828; + this.state = 2838; this.match(HiveSqlParser.KW_ADD); - this.state = 2830; + this.state = 2840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2829; + this.state = 2839; this.ifNotExists(); } } - this.state = 2836; + this.state = 2846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2832; + this.state = 2842; this.partitionSpec(); - this.state = 2834; + this.state = 2844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 2833; + this.state = 2843; this.locationPath(); } } } } - this.state = 2838; + this.state = 2848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -13990,19 +13997,19 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2840; + this.state = 2850; this.match(HiveSqlParser.KW_TOUCH); - this.state = 2844; + this.state = 2854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2841; + this.state = 2851; this.partitionSpec(); } } - this.state = 2846; + this.state = 2856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14011,19 +14018,19 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2847; + this.state = 2857; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 2851; + this.state = 2861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2848; + this.state = 2858; this.partitionSpec(); } } - this.state = 2853; + this.state = 2863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14032,19 +14039,19 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2854; + this.state = 2864; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 2858; + this.state = 2868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2855; + this.state = 2865; this.partitionSpec(); } } - this.state = 2860; + this.state = 2870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14053,59 +14060,59 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2861; + this.state = 2871; this.match(HiveSqlParser.KW_SET); - this.state = 2862; + this.state = 2872; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2863; + this.state = 2873; this.tableProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2864; + this.state = 2874; this.match(HiveSqlParser.KW_UNSET); - this.state = 2865; + this.state = 2875; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2867; + this.state = 2877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2866; + this.state = 2876; this.ifExists(); } } - this.state = 2869; + this.state = 2879; this.tableProperties(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2870; + this.state = 2880; this.tableSkewed(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2871; + this.state = 2881; this.match(HiveSqlParser.KW_NOT); - this.state = 2874; + this.state = 2884; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 2872; + this.state = 2882; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 2873; + this.state = 2883; this.storedAsDirs(); } break; @@ -14117,61 +14124,61 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2876; + this.state = 2886; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 2877; + this.state = 2887; this.partitionSpec(); - this.state = 2878; + this.state = 2888; this.match(HiveSqlParser.KW_WITH); - this.state = 2879; + this.state = 2889; this.match(HiveSqlParser.KW_TABLE); - this.state = 2880; + this.state = 2890; localContext._exchangename = this.tableName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2882; + this.state = 2892; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2883; + this.state = 2893; this.match(HiveSqlParser.KW_COLUMN); - this.state = 2884; + this.state = 2894; this.match(HiveSqlParser.LPAREN); - this.state = 2885; + this.state = 2895; this.columnNameType(); - this.state = 2886; + this.state = 2896; this.match(HiveSqlParser.RPAREN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2888; + this.state = 2898; this.match(HiveSqlParser.KW_DROP); - this.state = 2889; + this.state = 2899; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2890; + this.state = 2900; localContext._cName = this.id_(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2891; + this.state = 2901; this.match(HiveSqlParser.KW_ADD); - this.state = 2894; + this.state = 2904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: { - this.state = 2892; + this.state = 2902; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 2893; + this.state = 2903; this.alterConstraintWithName(); } break; @@ -14181,52 +14188,52 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2897; + this.state = 2907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2896; + this.state = 2906; this.partitionSpec(); } } - this.state = 2899; + this.state = 2909; this.alterTblPartitionStatementSuffix(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2900; + this.state = 2910; this.match(HiveSqlParser.KW_SET); - this.state = 2901; + this.state = 2911; this.match(HiveSqlParser.KW_OWNER); - this.state = 2902; + this.state = 2912; this.principalName(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2903; + this.state = 2913; this.match(HiveSqlParser.KW_SET); - this.state = 2904; + this.state = 2914; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2905; + this.state = 2915; this.match(HiveSqlParser.KW_SPEC); - this.state = 2906; + this.state = 2916; this.match(HiveSqlParser.LPAREN); - this.state = 2907; + this.state = 2917; localContext._spec = this.partitionTransformSpec(); - this.state = 2908; + this.state = 2918; this.match(HiveSqlParser.RPAREN); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2910; + this.state = 2920; this.alterStatementSuffixExecute(); } break; @@ -14251,62 +14258,62 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 418, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); let _la: number; try { - this.state = 3045; + this.state = 3055; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2913; + this.state = 2923; this.match(HiveSqlParser.KW_SET); - this.state = 2914; + this.state = 2924; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 2915; + this.state = 2925; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2916; + this.state = 2926; this.match(HiveSqlParser.KW_SET); - this.state = 2917; + this.state = 2927; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2918; + this.state = 2928; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2919; + this.state = 2929; this.match(HiveSqlParser.KW_CONCATENATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2920; - this.match(HiveSqlParser.KW_SET); this.state = 2930; + this.match(HiveSqlParser.KW_SET); + this.state = 2940; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 2921; + this.state = 2931; this.match(HiveSqlParser.KW_SERDE); - this.state = 2922; + this.state = 2932; localContext._serdeName = this.match(HiveSqlParser.StringLiteral); - this.state = 2926; + this.state = 2936; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2923; + this.state = 2933; this.match(HiveSqlParser.KW_WITH); - this.state = 2924; + this.state = 2934; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2925; + this.state = 2935; this.tableProperties(); } break; @@ -14315,9 +14322,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 2928; + this.state = 2938; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2929; + this.state = 2939; this.tableProperties(); } break; @@ -14329,75 +14336,75 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2932; + this.state = 2942; this.match(HiveSqlParser.KW_UNSET); - this.state = 2933; + this.state = 2943; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2934; + this.state = 2944; this.tableProperties(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2935; + this.state = 2945; this.match(HiveSqlParser.KW_RENAME); - this.state = 2936; + this.state = 2946; this.match(HiveSqlParser.KW_TO); - this.state = 2937; + this.state = 2947; this.partitionSpec(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2938; + this.state = 2948; this.match(HiveSqlParser.KW_INTO); - this.state = 2939; + this.state = 2949; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2940; + this.state = 2950; this.match(HiveSqlParser.KW_BUCKETS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2941; + this.state = 2951; this.match(HiveSqlParser.KW_SET); - this.state = 2942; + this.state = 2952; this.match(HiveSqlParser.KW_SKEWED); - this.state = 2943; + this.state = 2953; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2944; + this.state = 2954; this.match(HiveSqlParser.LPAREN); - this.state = 2945; + this.state = 2955; this.skewedLocationMap(); - this.state = 2950; + this.state = 2960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2946; + this.state = 2956; this.match(HiveSqlParser.COMMA); - this.state = 2947; + this.state = 2957; this.skewedLocationMap(); } } - this.state = 2952; + this.state = 2962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2953; + this.state = 2963; this.match(HiveSqlParser.RPAREN); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2955; + this.state = 2965; this.match(HiveSqlParser.KW_NOT); - this.state = 2956; + this.state = 2966; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -14411,77 +14418,77 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2957; + this.state = 2967; this.tableBuckets(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2958; + this.state = 2968; this.match(HiveSqlParser.KW_COMPACT); - this.state = 2959; + this.state = 2969; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 2962; + this.state = 2972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2960; + this.state = 2970; this.match(HiveSqlParser.KW_AND); - this.state = 2961; + this.state = 2971; this.match(HiveSqlParser.KW_WAIT); } } - this.state = 2968; + this.state = 2978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2964; + this.state = 2974; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2965; + this.state = 2975; this.match(HiveSqlParser.KW_INTO); - this.state = 2966; + this.state = 2976; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2967; + this.state = 2977; this.match(HiveSqlParser.KW_BUCKETS); } } - this.state = 2971; + this.state = 2981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2970; + this.state = 2980; this.orderByClause(); } } - this.state = 2974; + this.state = 2984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 2973; + this.state = 2983; this.compactionPool(); } } - this.state = 2980; + this.state = 2990; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 2976; + this.state = 2986; this.match(HiveSqlParser.KW_WITH); - this.state = 2977; + this.state = 2987; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2978; + this.state = 2988; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2979; + this.state = 2989; this.tableProperties(); } break; @@ -14491,36 +14498,36 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2982; + this.state = 2992; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2983; + this.state = 2993; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 2984; + this.state = 2994; this.match(HiveSqlParser.KW_FOR); - this.state = 2986; + this.state = 2996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 2985; + this.state = 2995; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 2988; + this.state = 2998; localContext._colName = this.columnName(); - this.state = 2989; + this.state = 2999; this.match(HiveSqlParser.KW_SET); - this.state = 2990; + this.state = 3000; this.tableProperties(); - this.state = 2993; + this.state = 3003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2991; + this.state = 3001; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2992; + this.state = 3002; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -14530,73 +14537,73 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2995; + this.state = 3005; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2996; + this.state = 3006; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 2997; + this.state = 3007; this.match(HiveSqlParser.KW_SET); - this.state = 2998; + this.state = 3008; this.tableProperties(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2999; + this.state = 3009; this.match(HiveSqlParser.KW_CHANGE); - this.state = 3001; + this.state = 3011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 3000; + this.state = 3010; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3003; + this.state = 3013; localContext._oldName = this.columnName(); - this.state = 3004; + this.state = 3014; localContext._newName = this.columnNameCreate(); - this.state = 3005; + this.state = 3015; this.columnType(); - this.state = 3007; + this.state = 3017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 3006; + this.state = 3016; this.alterColumnConstraint(); } } - this.state = 3011; + this.state = 3021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3009; + this.state = 3019; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3010; + this.state = 3020; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3016; + this.state = 3026; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: { - this.state = 3013; + this.state = 3023; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: { - this.state = 3014; + this.state = 3024; this.match(HiveSqlParser.KW_AFTER); - this.state = 3015; + this.state = 3025; localContext._afterCol = this.id_(); } break; @@ -14652,12 +14659,12 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3019; + this.state = 3029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3018; + this.state = 3028; this.restrictOrCascade(); } } @@ -14667,38 +14674,38 @@ export class HiveSqlParser extends SQLParserBase { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3023; + this.state = 3033; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3021; + this.state = 3031; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3022; + this.state = 3032; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3025; + this.state = 3035; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3026; + this.state = 3036; this.match(HiveSqlParser.LPAREN); - this.state = 3027; + this.state = 3037; this.columnNameTypeList(); - this.state = 3028; + this.state = 3038; this.match(HiveSqlParser.RPAREN); - this.state = 3030; + this.state = 3040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3029; + this.state = 3039; this.restrictOrCascade(); } } @@ -14708,16 +14715,16 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3032; + this.state = 3042; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3033; + this.state = 3043; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3035; + this.state = 3045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3034; + this.state = 3044; this.restrictOrCascade(); } } @@ -14727,22 +14734,22 @@ export class HiveSqlParser extends SQLParserBase { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3037; + this.state = 3047; this.enableSpecification(); - this.state = 3043; + this.state = 3053; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NO_DROP: { { - this.state = 3038; + this.state = 3048; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3040; + this.state = 3050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3039; + this.state = 3049; this.match(HiveSqlParser.KW_CASCADE); } } @@ -14752,7 +14759,7 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_OFFLINE: { - this.state = 3042; + this.state = 3052; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -14782,88 +14789,88 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 420, HiveSqlParser.RULE_alterViewStatementSuffix); let _la: number; try { - this.state = 3073; + this.state = 3083; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3047; + this.state = 3057; this.match(HiveSqlParser.KW_SET); - this.state = 3048; + this.state = 3058; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3049; + this.state = 3059; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3050; + this.state = 3060; this.match(HiveSqlParser.KW_UNSET); - this.state = 3051; + this.state = 3061; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3053; + this.state = 3063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3052; + this.state = 3062; this.ifExists(); } } - this.state = 3055; + this.state = 3065; this.tableProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 3); { - this.state = 3056; + this.state = 3066; this.match(HiveSqlParser.KW_RENAME); - this.state = 3057; + this.state = 3067; this.match(HiveSqlParser.KW_TO); - this.state = 3058; + this.state = 3068; this.tableNameCreate(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 4); { - this.state = 3059; + this.state = 3069; this.match(HiveSqlParser.KW_ADD); - this.state = 3061; + this.state = 3071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3060; + this.state = 3070; this.ifNotExists(); } } - this.state = 3067; + this.state = 3077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3063; + this.state = 3073; this.partitionSpec(); - this.state = 3065; + this.state = 3075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3064; + this.state = 3074; this.locationPath(); } } } } - this.state = 3069; + this.state = 3079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14872,7 +14879,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 5); { - this.state = 3071; + this.state = 3081; this.alterStatementSuffixDropPartitions(); } break; @@ -14884,7 +14891,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 6); { - this.state = 3072; + this.state = 3082; this.selectStatementWithCTE(); } break; @@ -14911,43 +14918,43 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 422, HiveSqlParser.RULE_alterDatabaseStatementSuffix); let _la: number; try { - this.state = 3090; + this.state = 3100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3075; + this.state = 3085; localContext._name = this.dbSchemaName(); - this.state = 3076; + this.state = 3086; this.match(HiveSqlParser.KW_SET); - this.state = 3077; + this.state = 3087; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3078; + this.state = 3088; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3080; + this.state = 3090; localContext._dbName = this.dbSchemaName(); - this.state = 3081; + this.state = 3091; this.match(HiveSqlParser.KW_SET); - this.state = 3082; + this.state = 3092; this.match(HiveSqlParser.KW_OWNER); - this.state = 3083; + this.state = 3093; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3085; + this.state = 3095; localContext._dbName = this.dbSchemaName(); - this.state = 3086; + this.state = 3096; this.match(HiveSqlParser.KW_SET); - this.state = 3087; + this.state = 3097; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 196)) { this.errorHandler.recoverInline(this); @@ -14956,7 +14963,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3088; + this.state = 3098; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } break; @@ -14980,45 +14987,45 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); this.enterRule(localContext, 424, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3107; + this.state = 3117; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3092; + this.state = 3102; localContext._name = this.dbSchemaName(); - this.state = 3093; + this.state = 3103; this.match(HiveSqlParser.KW_SET); - this.state = 3094; + this.state = 3104; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3095; + this.state = 3105; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3097; + this.state = 3107; localContext._dcName = this.dbSchemaName(); - this.state = 3098; + this.state = 3108; this.match(HiveSqlParser.KW_SET); - this.state = 3099; + this.state = 3109; this.match(HiveSqlParser.KW_OWNER); - this.state = 3100; + this.state = 3110; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3102; + this.state = 3112; localContext._dcName = this.dbSchemaName(); - this.state = 3103; + this.state = 3113; this.match(HiveSqlParser.KW_SET); - this.state = 3104; + this.state = 3114; this.match(HiveSqlParser.KW_URL); - this.state = 3105; + this.state = 3115; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } break; @@ -15044,9 +15051,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3109; + this.state = 3119; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3110; + this.state = 3120; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -15071,68 +15078,68 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3112; + this.state = 3122; this.match(HiveSqlParser.KW_DROP); - this.state = 3114; + this.state = 3124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3113; + this.state = 3123; this.ifExists(); } } - this.state = 3116; + this.state = 3126; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3117; + this.state = 3127; this.partitionSelectorSpec(); - this.state = 3123; + this.state = 3133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3118; + this.state = 3128; this.match(HiveSqlParser.COMMA); - this.state = 3119; + this.state = 3129; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3120; + this.state = 3130; this.partitionSelectorSpec(); } } - this.state = 3125; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3128; + this.state = 3138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3126; + this.state = 3136; this.match(HiveSqlParser.KW_IGNORE); - this.state = 3127; + this.state = 3137; this.match(HiveSqlParser.KW_PROTECTION); } } - this.state = 3131; + this.state = 3141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 3130; + this.state = 3140; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 3134; + this.state = 3144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3133; + this.state = 3143; this.replicationClause(); } } @@ -15159,7 +15166,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3138; + this.state = 3148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -15417,22 +15424,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: case HiveSqlParser.CharSetName: { - this.state = 3136; + this.state = 3146; this.constant(); } break; case HiveSqlParser.LPAREN: { - this.state = 3137; + this.state = 3147; this.skewedColumnValuePair(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3140; + this.state = 3150; this.match(HiveSqlParser.EQUAL); - this.state = 3141; + this.state = 3151; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -15457,18 +15464,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3143; - this.match(HiveSqlParser.KW_EXECUTE); this.state = 3153; + this.match(HiveSqlParser.KW_EXECUTE); + this.state = 3163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3144; + this.state = 3154; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3145; + this.state = 3155; this.match(HiveSqlParser.LPAREN); - this.state = 3146; + this.state = 3156; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { @@ -15482,28 +15489,28 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3147; + this.state = 3157; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3148; + this.state = 3158; this.match(HiveSqlParser.LPAREN); - this.state = 3149; + this.state = 3159; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3150; + this.state = 3160; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3151; + this.state = 3161; this.match(HiveSqlParser.LPAREN); - this.state = 3152; + this.state = 3162; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3155; + this.state = 3165; this.match(HiveSqlParser.RPAREN); } } @@ -15526,36 +15533,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 434, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3170; + this.state = 3180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3157; + this.state = 3167; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3158; + this.state = 3168; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3159; + this.state = 3169; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3160; + this.state = 3170; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3161; + this.state = 3171; this.match(HiveSqlParser.KW_SERDE); - this.state = 3162; + this.state = 3172; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - this.state = 3167; + this.state = 3177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3163; + this.state = 3173; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3164; + this.state = 3174; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3165; + this.state = 3175; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3166; + this.state = 3176; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -15565,7 +15572,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3169; + this.state = 3179; localContext._genericSpec = this.id_(); } break; @@ -15589,37 +15596,37 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new LikeTableOrFileContext(this.context, this.state); this.enterRule(localContext, 436, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3181; + this.state = 3191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3172; + this.state = 3182; this.match(HiveSqlParser.KW_LIKE); - this.state = 3173; + this.state = 3183; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3174; + this.state = 3184; this.match(HiveSqlParser.KW_LIKE); - this.state = 3175; + this.state = 3185; this.match(HiveSqlParser.KW_FILE); - this.state = 3176; + this.state = 3186; localContext._format = this.id_(); - this.state = 3177; + this.state = 3187; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3179; + this.state = 3189; this.match(HiveSqlParser.KW_LIKE); - this.state = 3180; + this.state = 3190; localContext._likeName = this.tableName(); } break; @@ -15644,121 +15651,121 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 438, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3318; + this.state = 3328; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3183; + this.state = 3193; this.match(HiveSqlParser.KW_CREATE); - this.state = 3185; + this.state = 3195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 3184; + this.state = 3194; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 3188; + this.state = 3198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 345) { { - this.state = 3187; + this.state = 3197; localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); } } - this.state = 3191; + this.state = 3201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 3190; + this.state = 3200; localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 3193; + this.state = 3203; this.match(HiveSqlParser.KW_TABLE); - this.state = 3195; + this.state = 3205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3194; + this.state = 3204; this.ifNotExists(); } } - this.state = 3197; + this.state = 3207; localContext._name = this.tableNameCreate(); - this.state = 3254; + this.state = 3264; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3198; + this.state = 3208; this.likeTableOrFile(); - this.state = 3200; + this.state = 3210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3199; + this.state = 3209; this.createTablePartitionSpec(); } } - this.state = 3203; + this.state = 3213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3202; + this.state = 3212; this.tableRowFormat(); } } - this.state = 3206; + this.state = 3216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3205; + this.state = 3215; this.tableFileFormat(); } } - this.state = 3209; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3208; + this.state = 3218; this.locationPath(); } } - this.state = 3212; + this.state = 3222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3211; + this.state = 3221; this.tablePropertiesPrefixed(); } } - this.state = 3215; + this.state = 3225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3214; + this.state = 3224; this.tableLifecycle(); } } @@ -15822,118 +15829,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3221; + this.state = 3231; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3217; + this.state = 3227; this.match(HiveSqlParser.LPAREN); - this.state = 3218; + this.state = 3228; this.columnNameTypeOrConstraintList(); - this.state = 3219; + this.state = 3229; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3224; + this.state = 3234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3223; + this.state = 3233; this.tableComment(); } } - this.state = 3227; + this.state = 3237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3226; + this.state = 3236; this.createTablePartitionSpec(); } } - this.state = 3230; + this.state = 3240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3229; + this.state = 3239; this.tableBuckets(); } } - this.state = 3233; + this.state = 3243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3232; + this.state = 3242; this.tableSkewed(); } } - this.state = 3236; + this.state = 3246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3235; + this.state = 3245; this.tableRowFormat(); } } - this.state = 3239; + this.state = 3249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3238; + this.state = 3248; this.tableFileFormat(); } } - this.state = 3242; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3241; + this.state = 3251; this.locationPath(); } } - this.state = 3245; + this.state = 3255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3244; + this.state = 3254; this.tablePropertiesPrefixed(); } } - this.state = 3248; + this.state = 3258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3247; + this.state = 3257; this.tableLifecycle(); } } - this.state = 3252; + this.state = 3262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3250; + this.state = 3260; this.match(HiveSqlParser.KW_AS); - this.state = 3251; + this.state = 3261; this.selectStatementWithCTE(); } } @@ -15948,77 +15955,77 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3256; + this.state = 3266; this.match(HiveSqlParser.KW_CREATE); - this.state = 3257; + this.state = 3267; localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3258; + this.state = 3268; this.match(HiveSqlParser.KW_TABLE); - this.state = 3260; + this.state = 3270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3259; + this.state = 3269; this.ifNotExists(); } } - this.state = 3262; + this.state = 3272; localContext._name = this.tableNameCreate(); - this.state = 3316; + this.state = 3326; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3263; + this.state = 3273; this.likeTableOrFile(); - this.state = 3265; + this.state = 3275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3264; + this.state = 3274; this.tableRowFormat(); } } - this.state = 3268; + this.state = 3278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3267; + this.state = 3277; this.tableFileFormat(); } } - this.state = 3271; + this.state = 3281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3270; + this.state = 3280; this.locationPath(); } } - this.state = 3274; + this.state = 3284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3273; + this.state = 3283; this.tablePropertiesPrefixed(); } } - this.state = 3277; + this.state = 3287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3276; + this.state = 3286; this.tableLifecycle(); } } @@ -16082,118 +16089,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3283; + this.state = 3293; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3279; + this.state = 3289; this.match(HiveSqlParser.LPAREN); - this.state = 3280; + this.state = 3290; this.columnNameTypeOrConstraintList(); - this.state = 3281; + this.state = 3291; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3286; + this.state = 3296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3285; + this.state = 3295; this.tableComment(); } } - this.state = 3289; + this.state = 3299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3288; + this.state = 3298; this.createTablePartitionSpec(); } } - this.state = 3292; + this.state = 3302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3291; + this.state = 3301; this.tableBuckets(); } } - this.state = 3295; + this.state = 3305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3294; + this.state = 3304; this.tableSkewed(); } } - this.state = 3298; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3297; + this.state = 3307; this.tableRowFormat(); } } - this.state = 3301; + this.state = 3311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3300; + this.state = 3310; this.tableFileFormat(); } } - this.state = 3304; + this.state = 3314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3303; + this.state = 3313; this.locationPath(); } } - this.state = 3307; + this.state = 3317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3306; + this.state = 3316; this.tablePropertiesPrefixed(); } } - this.state = 3310; + this.state = 3320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3309; + this.state = 3319; this.tableLifecycle(); } } - this.state = 3314; + this.state = 3324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3312; + this.state = 3322; this.match(HiveSqlParser.KW_AS); - this.state = 3313; + this.state = 3323; this.selectStatementWithCTE(); } } @@ -16228,68 +16235,68 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3320; + this.state = 3330; this.match(HiveSqlParser.KW_CREATE); - this.state = 3321; + this.state = 3331; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3323; + this.state = 3333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3322; + this.state = 3332; this.ifNotExists(); } } - this.state = 3325; + this.state = 3335; localContext._name = this.id_(); - this.state = 3328; + this.state = 3338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 3326; + this.state = 3336; this.match(HiveSqlParser.KW_TYPE); - this.state = 3327; + this.state = 3337; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3332; + this.state = 3342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3330; + this.state = 3340; this.match(HiveSqlParser.KW_URL); - this.state = 3331; + this.state = 3341; localContext._url = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3336; + this.state = 3346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3334; + this.state = 3344; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3335; + this.state = 3345; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3341; + this.state = 3351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3338; + this.state = 3348; this.match(HiveSqlParser.KW_WITH); - this.state = 3339; + this.state = 3349; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3340; + this.state = 3350; localContext._dcprops = this.keyValueProperties(); } break; @@ -16317,21 +16324,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3343; + this.state = 3353; this.match(HiveSqlParser.KW_DROP); - this.state = 3344; + this.state = 3354; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3346; + this.state = 3356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3345; + this.state = 3355; this.ifExists(); } } - this.state = 3348; + this.state = 3358; this.id_(); } } @@ -16356,23 +16363,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3355; + this.state = 3365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { { - this.state = 3350; + this.state = 3360; this.id_(); - this.state = 3351; + this.state = 3361; this.match(HiveSqlParser.DOT); } } - this.state = 3357; + this.state = 3367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3358; + this.state = 3368; this.match(HiveSqlParser.STAR); } } @@ -16397,21 +16404,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3360; + this.state = 3370; this.expression(); - this.state = 3365; + this.state = 3375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3361; + this.state = 3371; this.match(HiveSqlParser.COMMA); - this.state = 3362; + this.state = 3372; this.expression(); } } - this.state = 3367; + this.state = 3377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16438,21 +16445,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3368; + this.state = 3378; this.id_(); - this.state = 3373; + this.state = 3383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3369; + this.state = 3379; this.match(HiveSqlParser.COMMA); - this.state = 3370; + this.state = 3380; this.id_(); } } - this.state = 3375; + this.state = 3385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16478,9 +16485,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3376; + this.state = 3386; this.match(HiveSqlParser.KW_FROM); - this.state = 3377; + this.state = 3387; this.fromSource(); } } @@ -16503,29 +16510,29 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 452, HiveSqlParser.RULE_fromSource); let _la: number; try { - this.state = 3388; + this.state = 3398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNIQUEJOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3379; + this.state = 3389; this.match(HiveSqlParser.KW_UNIQUEJOIN); - this.state = 3380; + this.state = 3390; this.uniqueJoinSource(); - this.state = 3383; + this.state = 3393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3381; + this.state = 3391; this.match(HiveSqlParser.COMMA); - this.state = 3382; + this.state = 3392; this.uniqueJoinSource(); } } - this.state = 3385; + this.state = 3395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -16775,7 +16782,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 3387; + this.state = 3397; this.joinSource(); } break; @@ -16802,27 +16809,27 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 454, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; - this.state = 3422; + this.state = 3432; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3390; + this.state = 3400; this.tableSource(); - this.state = 3394; + this.state = 3404; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3391; + this.state = 3401; this.lateralView(); } } } - this.state = 3396; + this.state = 3406; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); } @@ -16831,21 +16838,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3397; + this.state = 3407; this.virtualTableSource(); - this.state = 3401; + this.state = 3411; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3398; + this.state = 3408; this.lateralView(); } } } - this.state = 3403; + this.state = 3413; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); } @@ -16854,21 +16861,21 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3404; + this.state = 3414; this.subQuerySource(); - this.state = 3408; + this.state = 3418; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3405; + this.state = 3415; this.lateralView(); } } } - this.state = 3410; + this.state = 3420; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); } @@ -16877,21 +16884,21 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3411; + this.state = 3421; this.partitionedTableFunction(); - this.state = 3415; + this.state = 3425; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3412; + this.state = 3422; this.lateralView(); } } } - this.state = 3417; + this.state = 3427; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); } @@ -16900,11 +16907,11 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3418; + this.state = 3428; this.match(HiveSqlParser.LPAREN); - this.state = 3419; + this.state = 3429; this.joinSource(); - this.state = 3420; + this.state = 3430; this.match(HiveSqlParser.RPAREN); } break; @@ -16931,34 +16938,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3424; + this.state = 3434; this.atomjoinSource(); - this.state = 3435; + this.state = 3445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 285 || _la === 397) { { { - this.state = 3425; + this.state = 3435; this.joinToken(); - this.state = 3426; + this.state = 3436; this.joinSourcePart(); - this.state = 3431; + this.state = 3441; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ON: { - this.state = 3427; + this.state = 3437; this.match(HiveSqlParser.KW_ON); - this.state = 3428; + this.state = 3438; this.expression(); } break; case HiveSqlParser.KW_USING: { - this.state = 3429; + this.state = 3439; this.match(HiveSqlParser.KW_USING); - this.state = 3430; + this.state = 3440; this.columnParenthesesList(); } break; @@ -17036,7 +17043,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 3437; + this.state = 3447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17063,47 +17070,47 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3442; + this.state = 3452; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3438; + this.state = 3448; this.tableSource(); } break; case 2: { - this.state = 3439; + this.state = 3449; this.virtualTableSource(); } break; case 3: { - this.state = 3440; + this.state = 3450; this.subQuerySource(); } break; case 4: { - this.state = 3441; + this.state = 3451; this.partitionedTableFunction(); } break; } - this.state = 3447; + this.state = 3457; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 442, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3444; + this.state = 3454; this.lateralView(); } } } - this.state = 3449; + this.state = 3459; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 442, this.context); } @@ -17130,53 +17137,53 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3451; + this.state = 3461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 250) { { - this.state = 3450; + this.state = 3460; this.match(HiveSqlParser.KW_PRESERVE); } } - this.state = 3453; + this.state = 3463; localContext._tabname = this.tableOrView(); - this.state = 3455; + this.state = 3465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3454; + this.state = 3464; localContext._ts = this.tableSample(); } } - this.state = 3461; + this.state = 3471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3458; + this.state = 3468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3457; + this.state = 3467; this.match(HiveSqlParser.KW_AS); } } - this.state = 3460; + this.state = 3470; localContext._alias = this.id_(); } } - this.state = 3463; + this.state = 3473; this.match(HiveSqlParser.LPAREN); - this.state = 3464; + this.state = 3474; this.expressionList(); - this.state = 3465; + this.state = 3475; this.match(HiveSqlParser.RPAREN); } } @@ -17199,13 +17206,13 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 462, HiveSqlParser.RULE_joinToken); let _la: number; try { - this.state = 3481; + this.state = 3491; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 3467; + this.state = 3477; this.match(HiveSqlParser.COMMA); } break; @@ -17217,25 +17224,25 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 2); { - this.state = 3478; + this.state = 3488; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INNER: { - this.state = 3468; + this.state = 3478; this.match(HiveSqlParser.KW_INNER); } break; case HiveSqlParser.KW_CROSS: { - this.state = 3469; + this.state = 3479; this.match(HiveSqlParser.KW_CROSS); } break; case HiveSqlParser.KW_FULL: case HiveSqlParser.KW_RIGHT: { - this.state = 3470; + this.state = 3480; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 285)) { this.errorHandler.recoverInline(this); @@ -17244,12 +17251,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3472; + this.state = 3482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 3471; + this.state = 3481; this.match(HiveSqlParser.KW_OUTER); } } @@ -17258,14 +17265,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_LEFT: { - this.state = 3474; + this.state = 3484; this.match(HiveSqlParser.KW_LEFT); - this.state = 3476; + this.state = 3486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 231 || _la === 300) { { - this.state = 3475; + this.state = 3485; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 231 || _la === 300)) { this.errorHandler.recoverInline(this); @@ -17284,7 +17291,7 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3480; + this.state = 3490; this.match(HiveSqlParser.KW_JOIN); } break; @@ -17312,46 +17319,46 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3540; + this.state = 3550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3483; + this.state = 3493; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3484; + this.state = 3494; this.match(HiveSqlParser.KW_VIEW); - this.state = 3485; + this.state = 3495; this.match(HiveSqlParser.KW_OUTER); - this.state = 3486; + this.state = 3496; this.function_(); - this.state = 3487; - localContext._alias = this.tableAlias(); this.state = 3497; + localContext._alias = this.tableAlias(); + this.state = 3507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3488; + this.state = 3498; this.match(HiveSqlParser.KW_AS); - this.state = 3489; + this.state = 3499; this.id_(); - this.state = 3494; + this.state = 3504; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3490; + this.state = 3500; this.match(HiveSqlParser.COMMA); - this.state = 3491; + this.state = 3501; this.id_(); } } } - this.state = 3496; + this.state = 3506; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); } @@ -17363,53 +17370,53 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3500; + this.state = 3510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3499; + this.state = 3509; this.match(HiveSqlParser.COMMA); } } - this.state = 3502; + this.state = 3512; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3538; + this.state = 3548; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VIEW: { - this.state = 3503; + this.state = 3513; this.match(HiveSqlParser.KW_VIEW); - this.state = 3504; + this.state = 3514; this.function_(); - this.state = 3505; - localContext._alias = this.tableAlias(); this.state = 3515; + localContext._alias = this.tableAlias(); + this.state = 3525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3506; + this.state = 3516; this.match(HiveSqlParser.KW_AS); - this.state = 3507; + this.state = 3517; this.id_(); - this.state = 3512; + this.state = 3522; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3508; + this.state = 3518; this.match(HiveSqlParser.COMMA); - this.state = 3509; + this.state = 3519; this.id_(); } } } - this.state = 3514; + this.state = 3524; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); } @@ -17420,52 +17427,52 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_TABLE: { - this.state = 3517; + this.state = 3527; this.match(HiveSqlParser.KW_TABLE); - this.state = 3518; + this.state = 3528; this.match(HiveSqlParser.LPAREN); - this.state = 3519; + this.state = 3529; this.valuesClause(); - this.state = 3520; + this.state = 3530; this.match(HiveSqlParser.RPAREN); - this.state = 3522; + this.state = 3532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3521; + this.state = 3531; this.match(HiveSqlParser.KW_AS); } } - this.state = 3524; + this.state = 3534; localContext._alias = this.tableAlias(); - this.state = 3536; + this.state = 3546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3525; + this.state = 3535; this.match(HiveSqlParser.LPAREN); - this.state = 3526; + this.state = 3536; this.id_(); - this.state = 3531; + this.state = 3541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3527; + this.state = 3537; this.match(HiveSqlParser.COMMA); - this.state = 3528; + this.state = 3538; this.id_(); } } - this.state = 3533; + this.state = 3543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3534; + this.state = 3544; this.match(HiveSqlParser.RPAREN); } break; @@ -17499,7 +17506,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3542; + this.state = 3552; this.id_(); } } @@ -17522,75 +17529,75 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 468, HiveSqlParser.RULE_tableSample); let _la: number; try { - this.state = 3571; + this.state = 3581; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3544; + this.state = 3554; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3545; + this.state = 3555; this.match(HiveSqlParser.LPAREN); - this.state = 3546; + this.state = 3556; this.match(HiveSqlParser.KW_BUCKET); - this.state = 3547; + this.state = 3557; localContext._numerator = this.match(HiveSqlParser.Number); - this.state = 3548; + this.state = 3558; this.match(HiveSqlParser.KW_OUT); - this.state = 3549; + this.state = 3559; this.match(HiveSqlParser.KW_OF); - this.state = 3550; - localContext._denominator = this.match(HiveSqlParser.Number); this.state = 3560; + localContext._denominator = this.match(HiveSqlParser.Number); + this.state = 3570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 3551; + this.state = 3561; this.match(HiveSqlParser.KW_ON); - this.state = 3552; + this.state = 3562; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); - this.state = 3557; + this.state = 3567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3553; + this.state = 3563; this.match(HiveSqlParser.COMMA); - this.state = 3554; + this.state = 3564; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); } } - this.state = 3559; + this.state = 3569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3562; + this.state = 3572; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3563; + this.state = 3573; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3564; + this.state = 3574; this.match(HiveSqlParser.LPAREN); - this.state = 3568; + this.state = 3578; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Number: { - this.state = 3565; + this.state = 3575; this.match(HiveSqlParser.Number); - this.state = 3566; + this.state = 3576; _la = this.tokenStream.LA(1); if(!(_la === 241 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -17603,14 +17610,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.ByteLengthLiteral: { - this.state = 3567; + this.state = 3577; this.match(HiveSqlParser.ByteLengthLiteral); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3570; + this.state = 3580; this.match(HiveSqlParser.RPAREN); } break; @@ -17637,54 +17644,54 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3573; + this.state = 3583; localContext._tabname = this.tableOrView(); - this.state = 3575; + this.state = 3585; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3574; + this.state = 3584; localContext._props = this.tableProperties(); } break; } - this.state = 3578; + this.state = 3588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3577; + this.state = 3587; localContext._ts = this.tableSample(); } } - this.state = 3581; + this.state = 3591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3580; + this.state = 3590; localContext._asOf = this.asOfClause(); } } - this.state = 3587; + this.state = 3597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3584; + this.state = 3594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3583; + this.state = 3593; this.match(HiveSqlParser.KW_AS); } } - this.state = 3586; + this.state = 3596; localContext._alias = this.id_(); } break; @@ -17711,34 +17718,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3589; - this.match(HiveSqlParser.KW_FOR); this.state = 3599; + this.match(HiveSqlParser.KW_FOR); + this.state = 3609; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SYSTEM_TIME: { - this.state = 3590; + this.state = 3600; this.match(HiveSqlParser.KW_SYSTEM_TIME); - this.state = 3591; + this.state = 3601; this.match(HiveSqlParser.KW_AS); - this.state = 3592; + this.state = 3602; this.match(HiveSqlParser.KW_OF); - this.state = 3593; + this.state = 3603; localContext._asOfTime = this.expression(); } break; case HiveSqlParser.KW_FOR: { - this.state = 3594; + this.state = 3604; this.match(HiveSqlParser.KW_FOR); - this.state = 3595; + this.state = 3605; this.match(HiveSqlParser.KW_SYSTEM_VERSION); - this.state = 3596; + this.state = 3606; this.match(HiveSqlParser.KW_AS); - this.state = 3597; + this.state = 3607; this.match(HiveSqlParser.KW_OF); - this.state = 3598; + this.state = 3608; localContext._asOfVersion = this.match(HiveSqlParser.Number); } break; @@ -17767,7 +17774,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3601; + this.state = 3611; this.id_(); } } @@ -17791,7 +17798,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3603; + this.state = 3613; this.id_(); } } @@ -17813,20 +17820,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableOrViewContext(this.context, this.state); this.enterRule(localContext, 478, HiveSqlParser.RULE_tableOrView); try { - this.state = 3607; + this.state = 3617; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3605; + this.state = 3615; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3606; + this.state = 3616; this.viewName(); } break; @@ -17850,26 +17857,26 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableNameContext(this.context, this.state); this.enterRule(localContext, 480, HiveSqlParser.RULE_tableName); try { - this.state = 3617; + this.state = 3627; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3609; + this.state = 3619; localContext._db = this.id_(); - this.state = 3610; + this.state = 3620; this.match(HiveSqlParser.DOT); - this.state = 3611; + this.state = 3621; localContext._tab = this.id_(); - this.state = 3614; + this.state = 3624; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3612; + this.state = 3622; this.match(HiveSqlParser.DOT); - this.state = 3613; + this.state = 3623; localContext._meta = this.id_(); } break; @@ -17879,7 +17886,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3616; + this.state = 3626; localContext._tab = this.id_(); } break; @@ -17904,26 +17911,26 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 482, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { - this.state = 3627; + this.state = 3637; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3619; + this.state = 3629; localContext._db = this.id_(); - this.state = 3620; + this.state = 3630; this.match(HiveSqlParser.DOT); - this.state = 3621; + this.state = 3631; localContext._tab = this.id_(); - this.state = 3624; + this.state = 3634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 3622; + this.state = 3632; this.match(HiveSqlParser.DOT); - this.state = 3623; + this.state = 3633; localContext._meta = this.id_(); } } @@ -17933,7 +17940,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3626; + this.state = 3636; localContext._tab = this.id_(); } break; @@ -17959,19 +17966,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3632; + this.state = 3642; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: { - this.state = 3629; + this.state = 3639; localContext._db = this.id_(); - this.state = 3630; + this.state = 3640; this.match(HiveSqlParser.DOT); } break; } - this.state = 3634; + this.state = 3644; localContext._view = this.id_(); } } @@ -17995,19 +18002,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3639; + this.state = 3649; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 3636; + this.state = 3646; localContext._db = this.id_(); - this.state = 3637; + this.state = 3647; this.match(HiveSqlParser.DOT); } break; } - this.state = 3641; + this.state = 3651; localContext._view = this.id_(); } } @@ -18032,24 +18039,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3643; + this.state = 3653; this.match(HiveSqlParser.LPAREN); - this.state = 3644; + this.state = 3654; this.queryStatementExpression(); - this.state = 3645; + this.state = 3655; this.match(HiveSqlParser.RPAREN); - this.state = 3647; + this.state = 3657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3646; + this.state = 3656; this.match(HiveSqlParser.KW_AS); } } - this.state = 3649; - this.id_(); + this.state = 3659; + localContext._alias = this.id_(); } } catch (re) { @@ -18071,20 +18078,20 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 490, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { - this.state = 3662; + this.state = 3672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 3651; + this.state = 3661; this.partitionByClause(); - this.state = 3653; + this.state = 3663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 3652; + this.state = 3662; this.orderByClause(); } } @@ -18094,21 +18101,21 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3655; + this.state = 3665; this.orderByClause(); } break; case HiveSqlParser.KW_DISTRIBUTE: this.enterOuterAlt(localContext, 3); { - this.state = 3656; + this.state = 3666; this.distributeByClause(); - this.state = 3658; + this.state = 3668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 3657; + this.state = 3667; this.sortByClause(); } } @@ -18118,14 +18125,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SORT: this.enterOuterAlt(localContext, 4); { - this.state = 3660; + this.state = 3670; this.sortByClause(); } break; case HiveSqlParser.KW_CLUSTER: this.enterOuterAlt(localContext, 5); { - this.state = 3661; + this.state = 3671; this.clusterByClause(); } break; @@ -18151,27 +18158,27 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); this.enterRule(localContext, 492, HiveSqlParser.RULE_partitionTableFunctionSource); try { - this.state = 3667; + this.state = 3677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 482, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3664; + this.state = 3674; this.subQuerySource(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3665; + this.state = 3675; this.tableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3666; + this.state = 3676; this.partitionedTableFunction(); } break; @@ -18194,74 +18201,17 @@ export class HiveSqlParser extends SQLParserBase { public partitionedTableFunction(): PartitionedTableFunctionContext { let localContext = new PartitionedTableFunctionContext(this.context, this.state); this.enterRule(localContext, 494, HiveSqlParser.RULE_partitionedTableFunction); - let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3669; - localContext._n = this.id_(); - this.state = 3670; - this.match(HiveSqlParser.LPAREN); - this.state = 3671; - this.match(HiveSqlParser.KW_ON); - this.state = 3672; - localContext._ptfsrc = this.partitionTableFunctionSource(); - this.state = 3674; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { - { - this.state = 3673; - localContext._spec = this.partitioningSpec(); - } - } - - this.state = 3691; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 432) { - { - this.state = 3676; - this.match(HiveSqlParser.Identifier); - this.state = 3677; - this.match(HiveSqlParser.LPAREN); - this.state = 3678; - this.expression(); - this.state = 3679; - this.match(HiveSqlParser.RPAREN); - this.state = 3688; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 397) { - { - { - this.state = 3680; - this.match(HiveSqlParser.COMMA); - this.state = 3681; - this.match(HiveSqlParser.Identifier); - this.state = 3682; - this.match(HiveSqlParser.LPAREN); - this.state = 3683; - this.expression(); - this.state = 3684; - this.match(HiveSqlParser.RPAREN); - } - } - this.state = 3690; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - - this.state = 3693; - this.match(HiveSqlParser.RPAREN); - this.state = 3695; + this.state = 3679; + this.atomPartitionedTableFunction(); + this.state = 3681; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 483, this.context) ) { case 1: { - this.state = 3694; + this.state = 3680; localContext._alias = this.id_(); } break; @@ -18282,15 +18232,96 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public atomPartitionedTableFunction(): AtomPartitionedTableFunctionContext { + let localContext = new AtomPartitionedTableFunctionContext(this.context, this.state); + this.enterRule(localContext, 496, HiveSqlParser.RULE_atomPartitionedTableFunction); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3683; + localContext._n = this.id_(); + this.state = 3684; + this.match(HiveSqlParser.LPAREN); + this.state = 3685; + this.match(HiveSqlParser.KW_ON); + this.state = 3686; + localContext._ptfsrc = this.partitionTableFunctionSource(); + this.state = 3688; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { + { + this.state = 3687; + localContext._spec = this.partitioningSpec(); + } + } + + this.state = 3705; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 432) { + { + this.state = 3690; + this.match(HiveSqlParser.Identifier); + this.state = 3691; + this.match(HiveSqlParser.LPAREN); + this.state = 3692; + this.expression(); + this.state = 3693; + this.match(HiveSqlParser.RPAREN); + this.state = 3702; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 397) { + { + { + this.state = 3694; + this.match(HiveSqlParser.COMMA); + this.state = 3695; + this.match(HiveSqlParser.Identifier); + this.state = 3696; + this.match(HiveSqlParser.LPAREN); + this.state = 3697; + this.expression(); + this.state = 3698; + this.match(HiveSqlParser.RPAREN); + } + } + this.state = 3704; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + + this.state = 3707; + this.match(HiveSqlParser.RPAREN); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 496, HiveSqlParser.RULE_whereClause); + this.enterRule(localContext, 498, HiveSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3697; + this.state = 3709; this.match(HiveSqlParser.KW_WHERE); - this.state = 3698; + this.state = 3710; this.expression(); } } @@ -18310,33 +18341,33 @@ export class HiveSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 498, HiveSqlParser.RULE_valuesClause); + this.enterRule(localContext, 500, HiveSqlParser.RULE_valuesClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3700; + this.state = 3712; this.match(HiveSqlParser.KW_VALUES); - this.state = 3719; + this.state = 3731; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3701; + this.state = 3713; this.expressionsInParenthesis(); - this.state = 3706; + this.state = 3718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3702; + this.state = 3714; this.match(HiveSqlParser.COMMA); - this.state = 3703; + this.state = 3715; this.expressionsInParenthesis(); } } - this.state = 3708; + this.state = 3720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18344,25 +18375,25 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 3709; + this.state = 3721; this.match(HiveSqlParser.LPAREN); - this.state = 3710; + this.state = 3722; this.firstExpressionsWithAlias(); - this.state = 3711; + this.state = 3723; this.match(HiveSqlParser.RPAREN); - this.state = 3716; + this.state = 3728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3712; + this.state = 3724; this.match(HiveSqlParser.COMMA); - this.state = 3713; + this.state = 3725; this.expressionsInParenthesis(); } } - this.state = 3718; + this.state = 3730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18385,62 +18416,86 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public virtualTableSource(): VirtualTableSourceContext { - let localContext = new VirtualTableSourceContext(this.context, this.state); - this.enterRule(localContext, 500, HiveSqlParser.RULE_virtualTableSource); - let _la: number; + public atomValuesClause(): AtomValuesClauseContext { + let localContext = new AtomValuesClauseContext(this.context, this.state); + this.enterRule(localContext, 502, HiveSqlParser.RULE_atomValuesClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3721; + this.state = 3733; this.match(HiveSqlParser.KW_TABLE); - this.state = 3722; + this.state = 3734; this.match(HiveSqlParser.LPAREN); - this.state = 3723; + this.state = 3735; this.valuesClause(); - this.state = 3724; + this.state = 3736; this.match(HiveSqlParser.RPAREN); - this.state = 3726; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public virtualTableSource(): VirtualTableSourceContext { + let localContext = new VirtualTableSourceContext(this.context, this.state); + this.enterRule(localContext, 504, HiveSqlParser.RULE_virtualTableSource); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3738; + this.atomValuesClause(); + this.state = 3740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3725; + this.state = 3739; this.match(HiveSqlParser.KW_AS); } } - this.state = 3728; - this.tableAlias(); - this.state = 3738; + this.state = 3742; + localContext._alias = this.tableAlias(); + this.state = 3752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 3729; + this.state = 3743; this.match(HiveSqlParser.LPAREN); - this.state = 3730; + this.state = 3744; this.id_(); - this.state = 3735; + this.state = 3749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3731; + this.state = 3745; this.match(HiveSqlParser.COMMA); - this.state = 3732; + this.state = 3746; this.id_(); } } - this.state = 3737; + this.state = 3751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3740; + this.state = 3754; this.match(HiveSqlParser.RPAREN); } } @@ -18460,39 +18515,38 @@ export class HiveSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 502, HiveSqlParser.RULE_selectClause); + this.enterRule(localContext, 506, HiveSqlParser.RULE_selectClause); let _la: number; try { - let alternative: number; - this.state = 3762; + this.state = 3769; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 3742; + this.state = 3756; this.match(HiveSqlParser.KW_SELECT); - this.state = 3744; + this.state = 3758; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: { - this.state = 3743; + this.state = 3757; this.match(HiveSqlParser.QUERY_HINT); } break; } - this.state = 3759; + this.state = 3766; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: { - this.state = 3747; + this.state = 3761; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: { - this.state = 3746; + this.state = 3760; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -18504,33 +18558,15 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 3749; - this.selectItem(); - this.state = 3754; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 3750; - this.match(HiveSqlParser.COMMA); - this.state = 3751; - this.selectItem(); - } - } - } - this.state = 3756; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); - } + this.state = 3763; + this.selectList(); } break; case 2: { - this.state = 3757; + this.state = 3764; this.match(HiveSqlParser.KW_TRANSFORM); - this.state = 3758; + this.state = 3765; this.selectTrfmClause(); } break; @@ -18541,7 +18577,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 2); { - this.state = 3761; + this.state = 3768; this.trfmClause(); } break; @@ -18565,68 +18601,68 @@ export class HiveSqlParser extends SQLParserBase { } public selectTrfmClause(): SelectTrfmClauseContext { let localContext = new SelectTrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 504, HiveSqlParser.RULE_selectTrfmClause); + this.enterRule(localContext, 508, HiveSqlParser.RULE_selectTrfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3764; + this.state = 3771; this.match(HiveSqlParser.LPAREN); - this.state = 3765; + this.state = 3772; this.selectExpressionList(); - this.state = 3766; + this.state = 3773; this.match(HiveSqlParser.RPAREN); - this.state = 3767; + this.state = 3774; this.rowFormat(); - this.state = 3768; + this.state = 3775; this.recordWriter(); - this.state = 3769; + this.state = 3776; this.match(HiveSqlParser.KW_USING); - this.state = 3770; + this.state = 3777; this.match(HiveSqlParser.StringLiteral); - this.state = 3783; + this.state = 3790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3771; + this.state = 3778; this.match(HiveSqlParser.KW_AS); - this.state = 3781; + this.state = 3788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: { - this.state = 3772; + this.state = 3779; this.match(HiveSqlParser.LPAREN); - this.state = 3775; + this.state = 3782; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: { - this.state = 3773; + this.state = 3780; this.aliasList(); } break; case 2: { - this.state = 3774; + this.state = 3781; this.columnNameTypeList(); } break; } - this.state = 3777; + this.state = 3784; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3779; + this.state = 3786; this.aliasList(); } break; case 3: { - this.state = 3780; + this.state = 3787; this.columnNameTypeList(); } break; @@ -18634,9 +18670,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3785; + this.state = 3792; this.rowFormat(); - this.state = 3786; + this.state = 3793; this.recordReader(); } } @@ -18654,18 +18690,61 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 510, HiveSqlParser.RULE_selectList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 3795; + this.selectItem(); + this.state = 3800; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 500, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 3796; + this.match(HiveSqlParser.COMMA); + this.state = 3797; + this.selectItem(); + } + } + } + this.state = 3802; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 500, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 506, HiveSqlParser.RULE_selectItem); + this.enterRule(localContext, 512, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 3811; + this.state = 3826; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3788; + this.state = 3803; this.tableAllColumns(); } break; @@ -18673,66 +18752,66 @@ export class HiveSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 3791; + this.state = 3806; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3789; - this.columnName(); + this.state = 3804; + this.selectLiteralColumnName(); } break; case 2: { - this.state = 3790; - this.expression(); + this.state = 3805; + this.selectExpressionColumnName(); } break; } - this.state = 3809; + this.state = 3824; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: { - this.state = 3794; + this.state = 3809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3793; + this.state = 3808; this.match(HiveSqlParser.KW_AS); } } - this.state = 3796; - this.id_(); + this.state = 3811; + localContext._alias = this.id_(); } break; case 2: { - this.state = 3797; + this.state = 3812; this.match(HiveSqlParser.KW_AS); - this.state = 3798; + this.state = 3813; this.match(HiveSqlParser.LPAREN); - this.state = 3799; - this.id_(); - this.state = 3804; + this.state = 3814; + localContext._alias = this.id_(); + this.state = 3819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3800; + this.state = 3815; this.match(HiveSqlParser.COMMA); - this.state = 3801; - this.id_(); + this.state = 3816; + localContext._alias = this.id_(); } } - this.state = 3806; + this.state = 3821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3807; + this.state = 3822; this.match(HiveSqlParser.RPAREN); } break; @@ -18756,14 +18835,62 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 514, HiveSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3828; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 516, HiveSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3830; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public trfmClause(): TrfmClauseContext { let localContext = new TrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 508, HiveSqlParser.RULE_trfmClause); + this.enterRule(localContext, 518, HiveSqlParser.RULE_trfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3813; + this.state = 3832; _la = this.tokenStream.LA(1); if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -18772,59 +18899,59 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3814; + this.state = 3833; this.selectExpressionList(); - this.state = 3815; + this.state = 3834; this.rowFormat(); - this.state = 3816; + this.state = 3835; this.recordWriter(); - this.state = 3817; + this.state = 3836; this.match(HiveSqlParser.KW_USING); - this.state = 3818; + this.state = 3837; this.match(HiveSqlParser.StringLiteral); - this.state = 3831; + this.state = 3850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3819; + this.state = 3838; this.match(HiveSqlParser.KW_AS); - this.state = 3829; + this.state = 3848; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 3820; + this.state = 3839; this.match(HiveSqlParser.LPAREN); - this.state = 3823; + this.state = 3842; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { case 1: { - this.state = 3821; + this.state = 3840; this.aliasList(); } break; case 2: { - this.state = 3822; + this.state = 3841; this.columnNameTypeList(); } break; } - this.state = 3825; + this.state = 3844; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3827; + this.state = 3846; this.aliasList(); } break; case 3: { - this.state = 3828; + this.state = 3847; this.columnNameTypeList(); } break; @@ -18832,9 +18959,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3833; + this.state = 3852; this.rowFormat(); - this.state = 3834; + this.state = 3853; this.recordReader(); } } @@ -18854,22 +18981,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpression(): SelectExpressionContext { let localContext = new SelectExpressionContext(this.context, this.state); - this.enterRule(localContext, 510, HiveSqlParser.RULE_selectExpression); + this.enterRule(localContext, 520, HiveSqlParser.RULE_selectExpression); try { - this.state = 3838; + this.state = 3857; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3836; + this.state = 3855; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3837; + this.state = 3856; this.expression(); } break; @@ -18891,26 +19018,26 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionList(): SelectExpressionListContext { let localContext = new SelectExpressionListContext(this.context, this.state); - this.enterRule(localContext, 512, HiveSqlParser.RULE_selectExpressionList); + this.enterRule(localContext, 522, HiveSqlParser.RULE_selectExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3840; + this.state = 3859; this.selectExpression(); - this.state = 3845; + this.state = 3864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3841; + this.state = 3860; this.match(HiveSqlParser.COMMA); - this.state = 3842; + this.state = 3861; this.selectExpression(); } } - this.state = 3847; + this.state = 3866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18932,36 +19059,36 @@ export class HiveSqlParser extends SQLParserBase { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 514, HiveSqlParser.RULE_window_clause); + this.enterRule(localContext, 524, HiveSqlParser.RULE_window_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3848; + this.state = 3867; this.match(HiveSqlParser.KW_WINDOW); - this.state = 3849; + this.state = 3868; this.id_(); - this.state = 3850; + this.state = 3869; this.match(HiveSqlParser.KW_AS); - this.state = 3851; + this.state = 3870; this.window_specification(); - this.state = 3859; + this.state = 3878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3852; + this.state = 3871; this.match(HiveSqlParser.COMMA); - this.state = 3853; + this.state = 3872; this.id_(); - this.state = 3854; + this.state = 3873; this.match(HiveSqlParser.KW_AS); - this.state = 3855; + this.state = 3874; this.window_specification(); } } - this.state = 3861; + this.state = 3880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18983,10 +19110,10 @@ export class HiveSqlParser extends SQLParserBase { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 516, HiveSqlParser.RULE_window_specification); + this.enterRule(localContext, 526, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 3874; + this.state = 3893; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -19231,46 +19358,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 3862; + this.state = 3881; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 3863; + this.state = 3882; this.match(HiveSqlParser.LPAREN); - this.state = 3865; + this.state = 3884; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { case 1: { - this.state = 3864; + this.state = 3883; this.id_(); } break; } - this.state = 3868; + this.state = 3887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3867; + this.state = 3886; this.partitioningSpec(); } } - this.state = 3871; + this.state = 3890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260 || _la === 292) { { - this.state = 3870; + this.state = 3889; this.window_frame(); } } - this.state = 3873; + this.state = 3892; this.match(HiveSqlParser.RPAREN); } break; @@ -19294,12 +19421,12 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame(): Window_frameContext { let localContext = new Window_frameContext(this.context, this.state); - this.enterRule(localContext, 518, HiveSqlParser.RULE_window_frame); + this.enterRule(localContext, 528, HiveSqlParser.RULE_window_frame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3876; + this.state = 3895; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -19308,22 +19435,22 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3890; + this.state = 3909; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 3883; + this.state = 3902; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: { { - this.state = 3877; + this.state = 3896; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 3878; + this.state = 3897; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19331,9 +19458,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: { { - this.state = 3879; + this.state = 3898; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3880; + this.state = 3899; this.match(HiveSqlParser.KW_ROW); } } @@ -19341,9 +19468,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Number: { { - this.state = 3881; + this.state = 3900; this.match(HiveSqlParser.Number); - this.state = 3882; + this.state = 3901; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19355,13 +19482,13 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_BETWEEN: { - this.state = 3885; + this.state = 3904; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 3886; + this.state = 3905; this.window_frame_boundary(); - this.state = 3887; + this.state = 3906; this.match(HiveSqlParser.KW_AND); - this.state = 3888; + this.state = 3907; this.window_frame_boundary(); } break; @@ -19386,17 +19513,17 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame_boundary(): Window_frame_boundaryContext { let localContext = new Window_frame_boundaryContext(this.context, this.state); - this.enterRule(localContext, 520, HiveSqlParser.RULE_window_frame_boundary); + this.enterRule(localContext, 530, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 3896; + this.state = 3915; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 3892; + this.state = 3911; _la = this.tokenStream.LA(1); if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -19405,7 +19532,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3893; + this.state = 3912; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -19419,9 +19546,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 3894; + this.state = 3913; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3895; + this.state = 3914; this.match(HiveSqlParser.KW_ROW); } break; @@ -19445,41 +19572,41 @@ export class HiveSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 522, HiveSqlParser.RULE_groupByClause); + this.enterRule(localContext, 532, HiveSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3898; + this.state = 3917; this.match(HiveSqlParser.KW_GROUP); - this.state = 3899; + this.state = 3918; this.match(HiveSqlParser.KW_BY); - this.state = 3905; + this.state = 3924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 519, this.context) ) { case 1: { - this.state = 3900; + this.state = 3919; this.columnName(); } break; case 2: { - this.state = 3901; + this.state = 3920; this.rollupStandard(); } break; case 3: { - this.state = 3902; + this.state = 3921; this.rollupOldSyntax(); } break; case 4: { { - this.state = 3903; + this.state = 3922; this.match(HiveSqlParser.LPAREN); - this.state = 3904; + this.state = 3923; this.match(HiveSqlParser.RPAREN); } } @@ -19503,50 +19630,50 @@ export class HiveSqlParser extends SQLParserBase { } public rollupStandard(): RollupStandardContext { let localContext = new RollupStandardContext(this.context, this.state); - this.enterRule(localContext, 524, HiveSqlParser.RULE_rollupStandard); + this.enterRule(localContext, 534, HiveSqlParser.RULE_rollupStandard); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3909; + this.state = 3928; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 3907; + this.state = 3926; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 3908; + this.state = 3927; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3911; + this.state = 3930; this.match(HiveSqlParser.LPAREN); - this.state = 3912; + this.state = 3931; this.expression(); - this.state = 3917; + this.state = 3936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3913; + this.state = 3932; this.match(HiveSqlParser.COMMA); - this.state = 3914; + this.state = 3933; this.expression(); } } - this.state = 3919; + this.state = 3938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3920; + this.state = 3939; this.match(HiveSqlParser.RPAREN); } } @@ -19566,63 +19693,63 @@ export class HiveSqlParser extends SQLParserBase { } public rollupOldSyntax(): RollupOldSyntaxContext { let localContext = new RollupOldSyntaxContext(this.context, this.state); - this.enterRule(localContext, 526, HiveSqlParser.RULE_rollupOldSyntax); + this.enterRule(localContext, 536, HiveSqlParser.RULE_rollupOldSyntax); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3922; + this.state = 3941; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 3927; + this.state = 3946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 3923; + this.state = 3942; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 3924; + this.state = 3943; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 3925; + this.state = 3944; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 3926; + this.state = 3945; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 3942; + this.state = 3961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 3929; + this.state = 3948; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 3930; + this.state = 3949; this.match(HiveSqlParser.KW_SETS); - this.state = 3931; + this.state = 3950; this.match(HiveSqlParser.LPAREN); - this.state = 3932; + this.state = 3951; this.groupingSetExpression(); - this.state = 3937; + this.state = 3956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3933; + this.state = 3952; this.match(HiveSqlParser.COMMA); - this.state = 3934; + this.state = 3953; this.groupingSetExpression(); } } - this.state = 3939; + this.state = 3958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3940; + this.state = 3959; this.match(HiveSqlParser.RPAREN); } } @@ -19645,51 +19772,51 @@ export class HiveSqlParser extends SQLParserBase { } public groupingSetExpression(): GroupingSetExpressionContext { let localContext = new GroupingSetExpressionContext(this.context, this.state); - this.enterRule(localContext, 528, HiveSqlParser.RULE_groupingSetExpression); + this.enterRule(localContext, 538, HiveSqlParser.RULE_groupingSetExpression); let _la: number; try { - this.state = 3957; + this.state = 3976; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3944; + this.state = 3963; this.match(HiveSqlParser.LPAREN); - this.state = 3946; + this.state = 3965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 3945; + this.state = 3964; this.expression(); } } - this.state = 3952; + this.state = 3971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3948; + this.state = 3967; this.match(HiveSqlParser.COMMA); - this.state = 3949; + this.state = 3968; this.expression(); } } - this.state = 3954; + this.state = 3973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3955; + this.state = 3974; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3956; + this.state = 3975; this.expression(); } break; @@ -19711,13 +19838,13 @@ export class HiveSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 530, HiveSqlParser.RULE_havingClause); + this.enterRule(localContext, 540, HiveSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3959; + this.state = 3978; this.match(HiveSqlParser.KW_HAVING); - this.state = 3960; + this.state = 3979; this.expression(); } } @@ -19737,13 +19864,13 @@ export class HiveSqlParser extends SQLParserBase { } public qualifyClause(): QualifyClauseContext { let localContext = new QualifyClauseContext(this.context, this.state); - this.enterRule(localContext, 532, HiveSqlParser.RULE_qualifyClause); + this.enterRule(localContext, 542, HiveSqlParser.RULE_qualifyClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3962; + this.state = 3981; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 3963; + this.state = 3982; this.expression(); } } @@ -19763,22 +19890,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 534, HiveSqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 544, HiveSqlParser.RULE_expressionOrDefault); try { - this.state = 3967; + this.state = 3986; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3965; + this.state = 3984; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3966; + this.state = 3985; this.expression(); } break; @@ -19800,66 +19927,66 @@ export class HiveSqlParser extends SQLParserBase { } public firstExpressionsWithAlias(): FirstExpressionsWithAliasContext { let localContext = new FirstExpressionsWithAliasContext(this.context, this.state); - this.enterRule(localContext, 536, HiveSqlParser.RULE_firstExpressionsWithAlias); + this.enterRule(localContext, 546, HiveSqlParser.RULE_firstExpressionsWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3969; + this.state = 3988; localContext._first = this.expression(); - this.state = 3971; + this.state = 3990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3970; + this.state = 3989; this.match(HiveSqlParser.KW_AS); } } - this.state = 3974; + this.state = 3993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3973; + this.state = 3992; localContext._colAlias = this.id_(); } } - this.state = 3986; + this.state = 4005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3976; + this.state = 3995; this.match(HiveSqlParser.COMMA); - this.state = 3977; + this.state = 3996; this.expression(); - this.state = 3979; + this.state = 3998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3978; + this.state = 3997; this.match(HiveSqlParser.KW_AS); } } - this.state = 3982; + this.state = 4001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3981; + this.state = 4000; localContext._alias = this.id_(); } } } } - this.state = 3988; + this.state = 4007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19881,22 +20008,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 538, HiveSqlParser.RULE_expressions); + this.enterRule(localContext, 548, HiveSqlParser.RULE_expressions); try { - this.state = 3991; + this.state = 4010; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3989; + this.state = 4008; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3990; + this.state = 4009; this.expressionsNotInParenthesis(); } break; @@ -19918,15 +20045,15 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsInParenthesis(): ExpressionsInParenthesisContext { let localContext = new ExpressionsInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 540, HiveSqlParser.RULE_expressionsInParenthesis); + this.enterRule(localContext, 550, HiveSqlParser.RULE_expressionsInParenthesis); try { this.enterOuterAlt(localContext, 1); { - this.state = 3993; + this.state = 4012; this.match(HiveSqlParser.LPAREN); - this.state = 3994; + this.state = 4013; this.expressionsNotInParenthesis(); - this.state = 3995; + this.state = 4014; this.match(HiveSqlParser.RPAREN); } } @@ -19946,31 +20073,31 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsNotInParenthesis(): ExpressionsNotInParenthesisContext { let localContext = new ExpressionsNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 542, HiveSqlParser.RULE_expressionsNotInParenthesis); + this.enterRule(localContext, 552, HiveSqlParser.RULE_expressionsNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3997; + this.state = 4016; localContext._first = this.expressionOrDefault(); - this.state = 4004; + this.state = 4023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 4000; + this.state = 4019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3998; + this.state = 4017; this.match(HiveSqlParser.COMMA); - this.state = 3999; + this.state = 4018; this.expressionOrDefault(); } } - this.state = 4002; + this.state = 4021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -19995,30 +20122,30 @@ export class HiveSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 544, HiveSqlParser.RULE_orderByClause); + this.enterRule(localContext, 554, HiveSqlParser.RULE_orderByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4006; + this.state = 4025; this.match(HiveSqlParser.KW_ORDER); - this.state = 4007; + this.state = 4026; this.match(HiveSqlParser.KW_BY); - this.state = 4008; + this.state = 4027; this.columnRefOrder(); - this.state = 4013; + this.state = 4032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4009; + this.state = 4028; this.match(HiveSqlParser.COMMA); - this.state = 4010; + this.state = 4029; this.columnRefOrder(); } } - this.state = 4015; + this.state = 4034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20040,15 +20167,15 @@ export class HiveSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 546, HiveSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 556, HiveSqlParser.RULE_partitionByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4035; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4017; + this.state = 4036; this.match(HiveSqlParser.KW_BY); - this.state = 4018; + this.state = 4037; this.expressions(); } } @@ -20068,15 +20195,15 @@ export class HiveSqlParser extends SQLParserBase { } public clusterByClause(): ClusterByClauseContext { let localContext = new ClusterByClauseContext(this.context, this.state); - this.enterRule(localContext, 548, HiveSqlParser.RULE_clusterByClause); + this.enterRule(localContext, 558, HiveSqlParser.RULE_clusterByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4020; + this.state = 4039; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4021; + this.state = 4040; this.match(HiveSqlParser.KW_BY); - this.state = 4022; + this.state = 4041; this.expressions(); } } @@ -20096,15 +20223,15 @@ export class HiveSqlParser extends SQLParserBase { } public distributeByClause(): DistributeByClauseContext { let localContext = new DistributeByClauseContext(this.context, this.state); - this.enterRule(localContext, 550, HiveSqlParser.RULE_distributeByClause); + this.enterRule(localContext, 560, HiveSqlParser.RULE_distributeByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4024; + this.state = 4043; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4025; + this.state = 4044; this.match(HiveSqlParser.KW_BY); - this.state = 4026; + this.state = 4045; this.expressions(); } } @@ -20124,42 +20251,42 @@ export class HiveSqlParser extends SQLParserBase { } public sortByClause(): SortByClauseContext { let localContext = new SortByClauseContext(this.context, this.state); - this.enterRule(localContext, 552, HiveSqlParser.RULE_sortByClause); + this.enterRule(localContext, 562, HiveSqlParser.RULE_sortByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4028; + this.state = 4047; this.match(HiveSqlParser.KW_SORT); - this.state = 4029; + this.state = 4048; this.match(HiveSqlParser.KW_BY); - this.state = 4049; + this.state = 4068; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { case 1: { { - this.state = 4030; + this.state = 4049; this.match(HiveSqlParser.LPAREN); - this.state = 4031; + this.state = 4050; this.columnRefOrder(); - this.state = 4036; + this.state = 4055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4032; + this.state = 4051; this.match(HiveSqlParser.COMMA); - this.state = 4033; + this.state = 4052; this.columnRefOrder(); } } - this.state = 4038; + this.state = 4057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4039; + this.state = 4058; this.match(HiveSqlParser.RPAREN); } } @@ -20167,21 +20294,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: { { - this.state = 4041; + this.state = 4060; this.columnRefOrder(); - this.state = 4046; + this.state = 4065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4042; + this.state = 4061; this.match(HiveSqlParser.COMMA); - this.state = 4043; + this.state = 4062; this.columnRefOrder(); } } - this.state = 4048; + this.state = 4067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20207,37 +20334,37 @@ export class HiveSqlParser extends SQLParserBase { } public function_(): Function_Context { let localContext = new Function_Context(this.context, this.state); - this.enterRule(localContext, 554, HiveSqlParser.RULE_function_); + this.enterRule(localContext, 564, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4104; + this.state = 4123; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4051; + this.state = 4070; this.match(HiveSqlParser.KW_TRIM); - this.state = 4052; + this.state = 4071; this.match(HiveSqlParser.LPAREN); - this.state = 4056; + this.state = 4075; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4053; + this.state = 4072; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4054; + this.state = 4073; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4055; + this.state = 4074; this.match(HiveSqlParser.KW_BOTH); } break; @@ -20547,48 +20674,48 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4059; + this.state = 4078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4058; + this.state = 4077; localContext._trim_characters = this.selectExpression(); } } - this.state = 4061; + this.state = 4080; this.match(HiveSqlParser.KW_FROM); - this.state = 4062; + this.state = 4081; localContext._str = this.selectExpression(); - this.state = 4063; + this.state = 4082; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4065; + this.state = 4084; this.functionNameForInvoke(); - this.state = 4066; + this.state = 4085; this.match(HiveSqlParser.LPAREN); - this.state = 4081; + this.state = 4100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 4067; + this.state = 4086; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4069; + this.state = 4088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4068; + this.state = 4087; localContext._dist = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { @@ -20601,26 +20728,26 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4079; + this.state = 4098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { - this.state = 4071; + this.state = 4090; this.selectExpression(); - this.state = 4076; + this.state = 4095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4072; + this.state = 4091; this.match(HiveSqlParser.COMMA); - this.state = 4073; + this.state = 4092; this.selectExpression(); } } - this.state = 4078; + this.state = 4097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20630,60 +20757,60 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4102; + this.state = 4121; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: { - this.state = 4083; + this.state = 4102; this.match(HiveSqlParser.RPAREN); - this.state = 4084; + this.state = 4103; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4085; + this.state = 4104; this.match(HiveSqlParser.KW_GROUP); - this.state = 4086; + this.state = 4105; this.match(HiveSqlParser.LPAREN); - this.state = 4087; + this.state = 4106; localContext._ordBy = this.orderByClause(); - this.state = 4088; + this.state = 4107; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4090; + this.state = 4109; this.match(HiveSqlParser.RPAREN); - this.state = 4092; + this.state = 4111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 281) { { - this.state = 4091; + this.state = 4110; localContext._nt = this.null_treatment(); } } - this.state = 4094; + this.state = 4113; this.match(HiveSqlParser.KW_OVER); - this.state = 4095; + this.state = 4114; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4096; + this.state = 4115; localContext._nt = this.null_treatment(); - this.state = 4097; + this.state = 4116; this.match(HiveSqlParser.RPAREN); - this.state = 4098; + this.state = 4117; this.match(HiveSqlParser.KW_OVER); - this.state = 4099; + this.state = 4118; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4101; + this.state = 4120; this.match(HiveSqlParser.RPAREN); } break; @@ -20708,12 +20835,12 @@ export class HiveSqlParser extends SQLParserBase { } public null_treatment(): Null_treatmentContext { let localContext = new Null_treatmentContext(this.context, this.state); - this.enterRule(localContext, 556, HiveSqlParser.RULE_null_treatment); + this.enterRule(localContext, 566, HiveSqlParser.RULE_null_treatment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4106; + this.state = 4125; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -20722,7 +20849,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4107; + this.state = 4126; this.match(HiveSqlParser.KW_NULLS); } } @@ -20742,11 +20869,11 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 558, HiveSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 568, HiveSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4109; + this.state = 4128; this.functionIdentifier(); } } @@ -20766,9 +20893,9 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForDDL(): FunctionNameForDDLContext { let localContext = new FunctionNameForDDLContext(this.context, this.state); - this.enterRule(localContext, 560, HiveSqlParser.RULE_functionNameForDDL); + this.enterRule(localContext, 570, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4113; + this.state = 4132; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -21013,14 +21140,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4111; + this.state = 4130; this.functionIdentifier(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4112; + this.state = 4131; this.match(HiveSqlParser.StringLiteral); } break; @@ -21044,29 +21171,29 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForInvoke(): FunctionNameForInvokeContext { let localContext = new FunctionNameForInvokeContext(this.context, this.state); - this.enterRule(localContext, 562, HiveSqlParser.RULE_functionNameForInvoke); + this.enterRule(localContext, 572, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4118; + this.state = 4137; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4115; + this.state = 4134; this.functionIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4116; + this.state = 4135; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4117; + this.state = 4136; this.sysFuncNames(); } break; @@ -21088,34 +21215,34 @@ export class HiveSqlParser extends SQLParserBase { } public castExpression(): CastExpressionContext { let localContext = new CastExpressionContext(this.context, this.state); - this.enterRule(localContext, 564, HiveSqlParser.RULE_castExpression); + this.enterRule(localContext, 574, HiveSqlParser.RULE_castExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4120; + this.state = 4139; this.match(HiveSqlParser.KW_CAST); - this.state = 4121; + this.state = 4140; this.match(HiveSqlParser.LPAREN); - this.state = 4122; + this.state = 4141; this.expression(); - this.state = 4123; + this.state = 4142; this.match(HiveSqlParser.KW_AS); - this.state = 4124; + this.state = 4143; localContext._toType = this.primitiveType(); - this.state = 4127; + this.state = 4146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4125; + this.state = 4144; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4126; + this.state = 4145; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4129; + this.state = 4148; this.match(HiveSqlParser.RPAREN); } } @@ -21135,48 +21262,48 @@ export class HiveSqlParser extends SQLParserBase { } public caseExpression(): CaseExpressionContext { let localContext = new CaseExpressionContext(this.context, this.state); - this.enterRule(localContext, 566, HiveSqlParser.RULE_caseExpression); + this.enterRule(localContext, 576, HiveSqlParser.RULE_caseExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4131; + this.state = 4150; this.match(HiveSqlParser.KW_CASE); - this.state = 4132; + this.state = 4151; this.expression(); - this.state = 4138; + this.state = 4157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4133; + this.state = 4152; this.match(HiveSqlParser.KW_WHEN); - this.state = 4134; + this.state = 4153; this.expression(); - this.state = 4135; + this.state = 4154; this.match(HiveSqlParser.KW_THEN); - this.state = 4136; + this.state = 4155; this.expression(); } } - this.state = 4140; + this.state = 4159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4144; + this.state = 4163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4142; + this.state = 4161; this.match(HiveSqlParser.KW_ELSE); - this.state = 4143; + this.state = 4162; this.expression(); } } - this.state = 4146; + this.state = 4165; this.match(HiveSqlParser.KW_END); } } @@ -21196,46 +21323,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenExpression(): WhenExpressionContext { let localContext = new WhenExpressionContext(this.context, this.state); - this.enterRule(localContext, 568, HiveSqlParser.RULE_whenExpression); + this.enterRule(localContext, 578, HiveSqlParser.RULE_whenExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4148; + this.state = 4167; this.match(HiveSqlParser.KW_CASE); - this.state = 4154; + this.state = 4173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4149; + this.state = 4168; this.match(HiveSqlParser.KW_WHEN); - this.state = 4150; + this.state = 4169; this.expression(); - this.state = 4151; + this.state = 4170; this.match(HiveSqlParser.KW_THEN); - this.state = 4152; + this.state = 4171; this.expression(); } } - this.state = 4156; + this.state = 4175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4160; + this.state = 4179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4158; + this.state = 4177; this.match(HiveSqlParser.KW_ELSE); - this.state = 4159; + this.state = 4178; this.expression(); } } - this.state = 4162; + this.state = 4181; this.match(HiveSqlParser.KW_END); } } @@ -21255,30 +21382,30 @@ export class HiveSqlParser extends SQLParserBase { } public floorExpression(): FloorExpressionContext { let localContext = new FloorExpressionContext(this.context, this.state); - this.enterRule(localContext, 570, HiveSqlParser.RULE_floorExpression); + this.enterRule(localContext, 580, HiveSqlParser.RULE_floorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4164; + this.state = 4183; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4165; + this.state = 4184; this.match(HiveSqlParser.LPAREN); - this.state = 4166; + this.state = 4185; this.expression(); - this.state = 4169; + this.state = 4188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 4167; + this.state = 4186; this.match(HiveSqlParser.KW_TO); - this.state = 4168; + this.state = 4187; localContext._floorUnit = this.timeQualifiers(); } } - this.state = 4171; + this.state = 4190; this.match(HiveSqlParser.RPAREN); } } @@ -21298,21 +21425,21 @@ export class HiveSqlParser extends SQLParserBase { } public extractExpression(): ExtractExpressionContext { let localContext = new ExtractExpressionContext(this.context, this.state); - this.enterRule(localContext, 572, HiveSqlParser.RULE_extractExpression); + this.enterRule(localContext, 582, HiveSqlParser.RULE_extractExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4173; + this.state = 4192; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4174; + this.state = 4193; this.match(HiveSqlParser.LPAREN); - this.state = 4175; + this.state = 4194; localContext._timeUnit = this.timeQualifiers(); - this.state = 4176; + this.state = 4195; this.match(HiveSqlParser.KW_FROM); - this.state = 4177; + this.state = 4196; this.expression(); - this.state = 4178; + this.state = 4197; this.match(HiveSqlParser.RPAREN); } } @@ -21332,23 +21459,23 @@ export class HiveSqlParser extends SQLParserBase { } public timeQualifiers(): TimeQualifiersContext { let localContext = new TimeQualifiersContext(this.context, this.state); - this.enterRule(localContext, 574, HiveSqlParser.RULE_timeQualifiers); + this.enterRule(localContext, 584, HiveSqlParser.RULE_timeQualifiers); try { - this.state = 4188; + this.state = 4207; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4180; + this.state = 4199; this.year(); } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4181; + this.state = 4200; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -21356,7 +21483,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4182; + this.state = 4201; this.month(); } break; @@ -21364,7 +21491,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4183; + this.state = 4202; this.week(); } break; @@ -21372,7 +21499,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4184; + this.state = 4203; this.day(); } break; @@ -21380,7 +21507,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4185; + this.state = 4204; this.hour(); } break; @@ -21388,7 +21515,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4186; + this.state = 4205; this.minute(); } break; @@ -21396,7 +21523,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4187; + this.state = 4206; this.second(); } break; @@ -21420,85 +21547,85 @@ export class HiveSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 576, HiveSqlParser.RULE_constant); + this.enterRule(localContext, 586, HiveSqlParser.RULE_constant); let _la: number; try { - this.state = 4218; + this.state = 4237; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4190; + this.state = 4209; localContext._value = this.intervalValue(); - this.state = 4191; + this.state = 4210; localContext._qualifiers = this.intervalQualifiers(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4193; + this.state = 4212; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4194; + this.state = 4213; this.match(HiveSqlParser.KW_DATE); - this.state = 4195; + this.state = 4214; this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4196; + this.state = 4215; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4197; + this.state = 4216; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4198; + this.state = 4217; this.match(HiveSqlParser.StringLiteral); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4199; + this.state = 4218; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4200; + this.state = 4219; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4201; + this.state = 4220; this.match(HiveSqlParser.StringLiteral); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4202; + this.state = 4221; this.match(HiveSqlParser.StringLiteral); - this.state = 4206; + this.state = 4225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 426) { { { - this.state = 4203; + this.state = 4222; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4208; + this.state = 4227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21507,58 +21634,58 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4209; + this.state = 4228; this.match(HiveSqlParser.IntegralLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4210; + this.state = 4229; this.match(HiveSqlParser.NumberLiteral); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4211; + this.state = 4230; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4212; + this.state = 4231; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4213; + this.state = 4232; this.match(HiveSqlParser.KW_TRUE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4214; + this.state = 4233; this.match(HiveSqlParser.KW_FALSE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4215; + this.state = 4234; this.match(HiveSqlParser.KW_NULL); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4216; + this.state = 4235; localContext._p = this.match(HiveSqlParser.QUESTION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4217; + this.state = 4236; this.columnNamePath(); } break; @@ -21580,12 +21707,12 @@ export class HiveSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 578, HiveSqlParser.RULE_intervalValue); + this.enterRule(localContext, 588, HiveSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4220; + this.state = 4239; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -21612,53 +21739,53 @@ export class HiveSqlParser extends SQLParserBase { } public intervalExpression(): IntervalExpressionContext { let localContext = new IntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 580, HiveSqlParser.RULE_intervalExpression); + this.enterRule(localContext, 590, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4237; + this.state = 4256; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4222; + this.state = 4241; this.match(HiveSqlParser.LPAREN); - this.state = 4223; + this.state = 4242; localContext._value = this.intervalValue(); - this.state = 4224; + this.state = 4243; this.match(HiveSqlParser.RPAREN); - this.state = 4225; + this.state = 4244; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4227; + this.state = 4246; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4233; + this.state = 4252; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4228; + this.state = 4247; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4229; + this.state = 4248; this.match(HiveSqlParser.LPAREN); - this.state = 4230; + this.state = 4249; localContext._expr = this.expression(); - this.state = 4231; + this.state = 4250; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4235; + this.state = 4254; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -21682,72 +21809,72 @@ export class HiveSqlParser extends SQLParserBase { } public intervalQualifiers(): IntervalQualifiersContext { let localContext = new IntervalQualifiersContext(this.context, this.state); - this.enterRule(localContext, 582, HiveSqlParser.RULE_intervalQualifiers); + this.enterRule(localContext, 592, HiveSqlParser.RULE_intervalQualifiers); try { - this.state = 4253; + this.state = 4272; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4239; + this.state = 4258; this.year(); - this.state = 4240; + this.state = 4259; this.match(HiveSqlParser.KW_TO); - this.state = 4241; + this.state = 4260; this.month(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4243; + this.state = 4262; this.day(); - this.state = 4244; + this.state = 4263; this.match(HiveSqlParser.KW_TO); - this.state = 4245; + this.state = 4264; this.second(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4247; + this.state = 4266; this.year(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4248; + this.state = 4267; this.month(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4249; + this.state = 4268; this.day(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4250; + this.state = 4269; this.hour(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4251; + this.state = 4270; this.minute(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4252; + this.state = 4271; this.second(); } break; @@ -21769,26 +21896,26 @@ export class HiveSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 584, HiveSqlParser.RULE_expression); + this.enterRule(localContext, 594, HiveSqlParser.RULE_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4255; + this.state = 4274; this.precedenceAndExpression(); - this.state = 4260; + this.state = 4279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 228) { { { - this.state = 4256; + this.state = 4275; this.match(HiveSqlParser.KW_OR); - this.state = 4257; + this.state = 4276; this.precedenceAndExpression(); } } - this.state = 4262; + this.state = 4281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21810,85 +21937,85 @@ export class HiveSqlParser extends SQLParserBase { } public atomExpression(): AtomExpressionContext { let localContext = new AtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 586, HiveSqlParser.RULE_atomExpression); + this.enterRule(localContext, 596, HiveSqlParser.RULE_atomExpression); try { - this.state = 4274; + this.state = 4293; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4263; + this.state = 4282; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4264; + this.state = 4283; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4265; + this.state = 4284; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4266; + this.state = 4285; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4267; + this.state = 4286; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4268; + this.state = 4287; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4269; + this.state = 4288; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4270; + this.state = 4289; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4271; + this.state = 4290; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4272; + this.state = 4291; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4273; + this.state = 4292; this.id_(); } break; @@ -21910,20 +22037,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnaryPrefixExpression(): PrecedenceUnaryPrefixExpressionContext { let localContext = new PrecedenceUnaryPrefixExpressionContext(this.context, this.state); - this.enterRule(localContext, 588, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); + this.enterRule(localContext, 598, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4279; + this.state = 4298; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4276; + this.state = 4295; _la = this.tokenStream.LA(1); if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); @@ -21935,35 +22062,35 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4281; + this.state = 4300; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); } - this.state = 4282; + this.state = 4301; this.atomExpression(); - this.state = 4291; + this.state = 4310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 401) { { - this.state = 4289; + this.state = 4308; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4283; + this.state = 4302; this.match(HiveSqlParser.LSQUARE); - this.state = 4284; + this.state = 4303; this.expression(); - this.state = 4285; + this.state = 4304; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4287; + this.state = 4306; this.match(HiveSqlParser.DOT); - this.state = 4288; + this.state = 4307; this.id_(); } break; @@ -21971,7 +22098,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4293; + this.state = 4312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21993,26 +22120,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseXorExpression(): PrecedenceBitwiseXorExpressionContext { let localContext = new PrecedenceBitwiseXorExpressionContext(this.context, this.state); - this.enterRule(localContext, 590, HiveSqlParser.RULE_precedenceBitwiseXorExpression); + this.enterRule(localContext, 600, HiveSqlParser.RULE_precedenceBitwiseXorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4294; + this.state = 4313; this.precedenceUnaryPrefixExpression(); - this.state = 4299; + this.state = 4318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 423) { { { - this.state = 4295; + this.state = 4314; this.match(HiveSqlParser.BITWISEXOR); - this.state = 4296; + this.state = 4315; this.precedenceUnaryPrefixExpression(); } } - this.state = 4301; + this.state = 4320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22034,20 +22161,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceStarExpression(): PrecedenceStarExpressionContext { let localContext = new PrecedenceStarExpressionContext(this.context, this.state); - this.enterRule(localContext, 592, HiveSqlParser.RULE_precedenceStarExpression); + this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceStarExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4302; + this.state = 4321; this.precedenceBitwiseXorExpression(); - this.state = 4307; + this.state = 4326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4303; + this.state = 4322; _la = this.tokenStream.LA(1); if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); @@ -22056,11 +22183,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4304; + this.state = 4323; this.precedenceBitwiseXorExpression(); } } - this.state = 4309; + this.state = 4328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22082,20 +22209,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpression(): PrecedencePlusExpressionContext { let localContext = new PrecedencePlusExpressionContext(this.context, this.state); - this.enterRule(localContext, 594, HiveSqlParser.RULE_precedencePlusExpression); + this.enterRule(localContext, 604, HiveSqlParser.RULE_precedencePlusExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4310; + this.state = 4329; this.precedenceStarExpression(); - this.state = 4315; + this.state = 4334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 413 || _la === 414) { { { - this.state = 4311; + this.state = 4330; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -22104,11 +22231,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4312; + this.state = 4331; this.precedenceStarExpression(); } } - this.state = 4317; + this.state = 4336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22130,26 +22257,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); - this.enterRule(localContext, 596, HiveSqlParser.RULE_precedenceConcatenateExpression); + this.enterRule(localContext, 606, HiveSqlParser.RULE_precedenceConcatenateExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4318; + this.state = 4337; this.precedencePlusExpression(); - this.state = 4323; + this.state = 4342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 422) { { { - this.state = 4319; + this.state = 4338; this.match(HiveSqlParser.CONCATENATE); - this.state = 4320; + this.state = 4339; localContext._plus = this.precedencePlusExpression(); } } - this.state = 4325; + this.state = 4344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22171,26 +22298,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); - this.enterRule(localContext, 598, HiveSqlParser.RULE_precedenceAmpersandExpression); + this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceAmpersandExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4326; + this.state = 4345; this.precedenceConcatenateExpression(); - this.state = 4331; + this.state = 4350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 419) { { { - this.state = 4327; + this.state = 4346; this.match(HiveSqlParser.AMPERSAND); - this.state = 4328; + this.state = 4347; this.precedenceConcatenateExpression(); } } - this.state = 4333; + this.state = 4352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22212,26 +22339,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 600, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceBitwiseOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4334; + this.state = 4353; this.precedenceAmpersandExpression(); - this.state = 4339; + this.state = 4358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 421) { { { - this.state = 4335; + this.state = 4354; this.match(HiveSqlParser.BITWISEOR); - this.state = 4336; + this.state = 4355; this.precedenceAmpersandExpression(); } } - this.state = 4341; + this.state = 4360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22253,12 +22380,12 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); - this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceSimilarOperator); + this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceSimilarOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4342; + this.state = 4361; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -22285,15 +22412,15 @@ export class HiveSqlParser extends SQLParserBase { } public subQueryExpression(): SubQueryExpressionContext { let localContext = new SubQueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 604, HiveSqlParser.RULE_subQueryExpression); + this.enterRule(localContext, 614, HiveSqlParser.RULE_subQueryExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4344; + this.state = 4363; this.match(HiveSqlParser.LPAREN); - this.state = 4345; + this.state = 4364; this.selectStatement(); - this.state = 4346; + this.state = 4365; this.match(HiveSqlParser.RPAREN); } } @@ -22313,9 +22440,9 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpression(): PrecedenceSimilarExpressionContext { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); - this.enterRule(localContext, 606, HiveSqlParser.RULE_precedenceSimilarExpression); + this.enterRule(localContext, 616, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4354; + this.state = 4373; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -22620,14 +22747,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4348; + this.state = 4367; localContext._a = this.precedenceBitwiseOrExpression(); - this.state = 4350; + this.state = 4369; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4349; + this.state = 4368; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -22637,146 +22764,146 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4352; - this.match(HiveSqlParser.KW_EXISTS); - this.state = 4353; - this.subQueryExpression(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { - let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceSimilarExpressionPart); - try { - this.state = 4362; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4356; - this.precedenceSimilarOperator(); - this.state = 4357; - localContext._equalExpr = this.precedenceBitwiseOrExpression(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4359; - this.precedenceSimilarExpressionAtom(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 4360; - this.match(HiveSqlParser.KW_NOT); - this.state = 4361; - this.precedenceSimilarExpressionPartNot(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { - let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); - this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); - let _la: number; - try { - this.state = 4378; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case HiveSqlParser.KW_IN: - this.enterOuterAlt(localContext, 1); - { - this.state = 4364; - this.match(HiveSqlParser.KW_IN); - this.state = 4365; - this.precedenceSimilarExpressionIn(); - } - break; - case HiveSqlParser.KW_BETWEEN: - this.enterOuterAlt(localContext, 2); - { - this.state = 4366; - this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4367; - localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4368; - this.match(HiveSqlParser.KW_AND); - this.state = 4369; - localContext._max = this.precedenceBitwiseOrExpression(); - } - break; - case HiveSqlParser.KW_LIKE: - this.enterOuterAlt(localContext, 3); - { this.state = 4371; - this.match(HiveSqlParser.KW_LIKE); + this.match(HiveSqlParser.KW_EXISTS); this.state = 4372; - _la = this.tokenStream.LA(1); - if(!(_la === 7 || _la === 13)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 4373; - localContext._expr = this.expressionsInParenthesis(); - } - break; - case HiveSqlParser.EQUAL: - case HiveSqlParser.NOTEQUAL: - case HiveSqlParser.LESSTHANOREQUALTO: - case HiveSqlParser.LESSTHAN: - case HiveSqlParser.GREATERTHANOREQUALTO: - case HiveSqlParser.GREATERTHAN: - this.enterOuterAlt(localContext, 4); - { - this.state = 4374; - this.subQuerySelectorOperator(); - this.state = 4375; - _la = this.tokenStream.LA(1); - if(!(_la === 7 || _la === 13 || _la === 313)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 4376; + this.subQueryExpression(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { + let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); + this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + try { + this.state = 4381; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 4375; + this.precedenceSimilarOperator(); + this.state = 4376; + localContext._equalExpr = this.precedenceBitwiseOrExpression(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 4378; + this.precedenceSimilarExpressionAtom(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 4379; + this.match(HiveSqlParser.KW_NOT); + this.state = 4380; + this.precedenceSimilarExpressionPartNot(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { + let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); + this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); + let _la: number; + try { + this.state = 4397; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case HiveSqlParser.KW_IN: + this.enterOuterAlt(localContext, 1); + { + this.state = 4383; + this.match(HiveSqlParser.KW_IN); + this.state = 4384; + this.precedenceSimilarExpressionIn(); + } + break; + case HiveSqlParser.KW_BETWEEN: + this.enterOuterAlt(localContext, 2); + { + this.state = 4385; + this.match(HiveSqlParser.KW_BETWEEN); + this.state = 4386; + localContext._min = this.precedenceBitwiseOrExpression(); + this.state = 4387; + this.match(HiveSqlParser.KW_AND); + this.state = 4388; + localContext._max = this.precedenceBitwiseOrExpression(); + } + break; + case HiveSqlParser.KW_LIKE: + this.enterOuterAlt(localContext, 3); + { + this.state = 4390; + this.match(HiveSqlParser.KW_LIKE); + this.state = 4391; + _la = this.tokenStream.LA(1); + if(!(_la === 7 || _la === 13)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4392; + localContext._expr = this.expressionsInParenthesis(); + } + break; + case HiveSqlParser.EQUAL: + case HiveSqlParser.NOTEQUAL: + case HiveSqlParser.LESSTHANOREQUALTO: + case HiveSqlParser.LESSTHAN: + case HiveSqlParser.GREATERTHANOREQUALTO: + case HiveSqlParser.GREATERTHAN: + this.enterOuterAlt(localContext, 4); + { + this.state = 4393; + this.subQuerySelectorOperator(); + this.state = 4394; + _la = this.tokenStream.LA(1); + if(!(_la === 7 || _la === 13 || _la === 313)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4395; this.subQueryExpression(); } break; @@ -22800,22 +22927,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext { let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); - this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceSimilarExpressionIn); + this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceSimilarExpressionIn); try { - this.state = 4382; + this.state = 4401; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4380; + this.state = 4399; this.subQueryExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4381; + this.state = 4400; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22837,16 +22964,16 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext { let localContext = new PrecedenceSimilarExpressionPartNotContext(this.context, this.state); - this.enterRule(localContext, 614, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); + this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); let _la: number; try { - this.state = 4387; + this.state = 4406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4384; + this.state = 4403; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286)) { this.errorHandler.recoverInline(this); @@ -22855,14 +22982,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4385; + this.state = 4404; localContext._notExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4386; + this.state = 4405; this.precedenceSimilarExpressionAtom(); } break; @@ -22884,15 +23011,15 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceDistinctOperator(): PrecedenceDistinctOperatorContext { let localContext = new PrecedenceDistinctOperatorContext(this.context, this.state); - this.enterRule(localContext, 616, HiveSqlParser.RULE_precedenceDistinctOperator); + this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceDistinctOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 4389; + this.state = 4408; this.match(HiveSqlParser.KW_IS); - this.state = 4390; + this.state = 4409; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4391; + this.state = 4410; this.match(HiveSqlParser.KW_FROM); } } @@ -22912,42 +23039,42 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualOperator(): PrecedenceEqualOperatorContext { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); - this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceEqualOperator); + this.enterRule(localContext, 628, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 4400; + this.state = 4419; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 4393; + this.state = 4412; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 4394; + this.state = 4413; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 4395; + this.state = 4414; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 4396; + this.state = 4415; this.match(HiveSqlParser.KW_IS); - this.state = 4397; + this.state = 4416; this.match(HiveSqlParser.KW_NOT); - this.state = 4398; + this.state = 4417; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4399; + this.state = 4418; this.match(HiveSqlParser.KW_FROM); } break; @@ -22971,38 +23098,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualExpression(): PrecedenceEqualExpressionContext { let localContext = new PrecedenceEqualExpressionContext(this.context, this.state); - this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceEqualExpression); + this.enterRule(localContext, 630, HiveSqlParser.RULE_precedenceEqualExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4402; + this.state = 4421; this.precedenceSimilarExpression(); - this.state = 4411; + this.state = 4430; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 4409; + this.state = 4428; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4403; + this.state = 4422; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 4404; + this.state = 4423; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 4406; + this.state = 4425; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 4407; + this.state = 4426; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -23010,7 +23137,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4413; + this.state = 4432; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); } @@ -23032,46 +23159,46 @@ export class HiveSqlParser extends SQLParserBase { } public isCondition(): IsConditionContext { let localContext = new IsConditionContext(this.context, this.state); - this.enterRule(localContext, 622, HiveSqlParser.RULE_isCondition); + this.enterRule(localContext, 632, HiveSqlParser.RULE_isCondition); let _la: number; try { - this.state = 4420; + this.state = 4439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 4414; + this.state = 4433; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 2); { - this.state = 4415; + this.state = 4434; this.match(HiveSqlParser.KW_TRUE); } break; case HiveSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 3); { - this.state = 4416; + this.state = 4435; this.match(HiveSqlParser.KW_FALSE); } break; case HiveSqlParser.KW_UNKNOWN: this.enterOuterAlt(localContext, 4); { - this.state = 4417; + this.state = 4436; this.match(HiveSqlParser.KW_UNKNOWN); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 5); { - this.state = 4418; + this.state = 4437; this.match(HiveSqlParser.KW_NOT); - this.state = 4419; + this.state = 4438; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 219 || _la === 350 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23102,38 +23229,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceNotExpression(): PrecedenceNotExpressionContext { let localContext = new PrecedenceNotExpressionContext(this.context, this.state); - this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceNotExpression); + this.enterRule(localContext, 634, HiveSqlParser.RULE_precedenceNotExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4425; + this.state = 4444; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4422; + this.state = 4441; this.match(HiveSqlParser.KW_NOT); } } } - this.state = 4427; + this.state = 4446; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); } - this.state = 4428; + this.state = 4447; this.precedenceEqualExpression(); - this.state = 4431; + this.state = 4450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 4429; + this.state = 4448; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 4430; + this.state = 4449; this.isCondition(); } } @@ -23156,26 +23283,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAndExpression(): PrecedenceAndExpressionContext { let localContext = new PrecedenceAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceAndExpression); + this.enterRule(localContext, 636, HiveSqlParser.RULE_precedenceAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4452; this.precedenceNotExpression(); - this.state = 4438; + this.state = 4457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 4434; + this.state = 4453; this.match(HiveSqlParser.KW_AND); - this.state = 4435; + this.state = 4454; this.precedenceNotExpression(); } } - this.state = 4440; + this.state = 4459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23197,19 +23324,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrPartition(): TableOrPartitionContext { let localContext = new TableOrPartitionContext(this.context, this.state); - this.enterRule(localContext, 628, HiveSqlParser.RULE_tableOrPartition); + this.enterRule(localContext, 638, HiveSqlParser.RULE_tableOrPartition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4441; + this.state = 4460; this.tableName(); - this.state = 4443; + this.state = 4462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 4442; + this.state = 4461; this.partitionSpec(); } } @@ -23232,34 +23359,34 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 630, HiveSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 640, HiveSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4445; + this.state = 4464; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4446; + this.state = 4465; this.match(HiveSqlParser.LPAREN); - this.state = 4447; + this.state = 4466; this.partitionVal(); - this.state = 4452; + this.state = 4471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4448; + this.state = 4467; this.match(HiveSqlParser.COMMA); - this.state = 4449; + this.state = 4468; this.partitionVal(); } } - this.state = 4454; + this.state = 4473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4455; + this.state = 4474; this.match(HiveSqlParser.RPAREN); } } @@ -23279,21 +23406,21 @@ export class HiveSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 632, HiveSqlParser.RULE_partitionVal); + this.enterRule(localContext, 642, HiveSqlParser.RULE_partitionVal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4457; + this.state = 4476; this.id_(); - this.state = 4460; + this.state = 4479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 4458; + this.state = 4477; this.match(HiveSqlParser.EQUAL); - this.state = 4459; + this.state = 4478; this.constant(); } } @@ -23316,32 +23443,32 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorSpec(): PartitionSelectorSpecContext { let localContext = new PartitionSelectorSpecContext(this.context, this.state); - this.enterRule(localContext, 634, HiveSqlParser.RULE_partitionSelectorSpec); + this.enterRule(localContext, 644, HiveSqlParser.RULE_partitionSelectorSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4462; + this.state = 4481; this.match(HiveSqlParser.LPAREN); - this.state = 4463; + this.state = 4482; this.partitionSelectorVal(); - this.state = 4468; + this.state = 4487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4464; + this.state = 4483; this.match(HiveSqlParser.COMMA); - this.state = 4465; + this.state = 4484; this.partitionSelectorVal(); } } - this.state = 4470; + this.state = 4489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4471; + this.state = 4490; this.match(HiveSqlParser.RPAREN); } } @@ -23361,18 +23488,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorVal(): PartitionSelectorValContext { let localContext = new PartitionSelectorValContext(this.context, this.state); - this.enterRule(localContext, 636, HiveSqlParser.RULE_partitionSelectorVal); + this.enterRule(localContext, 646, HiveSqlParser.RULE_partitionSelectorVal); try { this.enterOuterAlt(localContext, 1); { - this.state = 4473; + this.state = 4492; this.id_(); - this.state = 4476; + this.state = 4495; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 4474; + this.state = 4493; this.match(HiveSqlParser.KW_LIKE); } break; @@ -23383,14 +23510,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHANOREQUALTO: case HiveSqlParser.GREATERTHAN: { - this.state = 4475; + this.state = 4494; this.subQuerySelectorOperator(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4478; + this.state = 4497; this.constant(); } } @@ -23410,12 +23537,12 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext { let localContext = new SubQuerySelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 638, HiveSqlParser.RULE_subQuerySelectorOperator); + this.enterRule(localContext, 648, HiveSqlParser.RULE_subQuerySelectorOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4480; + this.state = 4499; _la = this.tokenStream.LA(1); if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); @@ -23442,12 +23569,12 @@ export class HiveSqlParser extends SQLParserBase { } public sysFuncNames(): SysFuncNamesContext { let localContext = new SysFuncNamesContext(this.context, this.state); - this.enterRule(localContext, 640, HiveSqlParser.RULE_sysFuncNames); + this.enterRule(localContext, 650, HiveSqlParser.RULE_sysFuncNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4482; + this.state = 4501; _la = this.tokenStream.LA(1); if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); @@ -23474,15 +23601,15 @@ export class HiveSqlParser extends SQLParserBase { } public id_(): Id_Context { let localContext = new Id_Context(this.context, this.state); - this.enterRule(localContext, 642, HiveSqlParser.RULE_id_); + this.enterRule(localContext, 652, HiveSqlParser.RULE_id_); try { - this.state = 4486; + this.state = 4505; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4484; + this.state = 4503; this.match(HiveSqlParser.Identifier); } break; @@ -23727,7 +23854,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 4485; + this.state = 4504; this.nonReserved(); } break; @@ -23751,21 +23878,21 @@ export class HiveSqlParser extends SQLParserBase { } public functionIdentifier(): FunctionIdentifierContext { let localContext = new FunctionIdentifierContext(this.context, this.state); - this.enterRule(localContext, 644, HiveSqlParser.RULE_functionIdentifier); + this.enterRule(localContext, 654, HiveSqlParser.RULE_functionIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4488; + this.state = 4507; this.id_(); - this.state = 4491; + this.state = 4510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 4489; + this.state = 4508; this.match(HiveSqlParser.DOT); - this.state = 4490; + this.state = 4509; localContext._fn = this.id_(); } } @@ -23788,11 +23915,11 @@ export class HiveSqlParser extends SQLParserBase { } public principalIdentifier(): PrincipalIdentifierContext { let localContext = new PrincipalIdentifierContext(this.context, this.state); - this.enterRule(localContext, 646, HiveSqlParser.RULE_principalIdentifier); + this.enterRule(localContext, 656, HiveSqlParser.RULE_principalIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 4493; + this.state = 4512; this.id_(); } } @@ -23812,12 +23939,12 @@ export class HiveSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 648, HiveSqlParser.RULE_nonReserved); + this.enterRule(localContext, 658, HiveSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4495; + this.state = 4514; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); @@ -23844,12 +23971,12 @@ export class HiveSqlParser extends SQLParserBase { } public sql11ReservedKeywordsUsedAsFunctionName(): Sql11ReservedKeywordsUsedAsFunctionNameContext { let localContext = new Sql11ReservedKeywordsUsedAsFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 650, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); + this.enterRule(localContext, 660, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4497; + this.state = 4516; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -23876,9 +24003,9 @@ export class HiveSqlParser extends SQLParserBase { } public configPropertiesItem(): ConfigPropertiesItemContext { let localContext = new ConfigPropertiesItemContext(this.context, this.state); - this.enterRule(localContext, 652, HiveSqlParser.RULE_configPropertiesItem); + this.enterRule(localContext, 662, HiveSqlParser.RULE_configPropertiesItem); try { - this.state = 4550; + this.state = 4569; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -24123,357 +24250,357 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4499; + this.state = 4518; this.id_(); } break; case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 2); { - this.state = 4500; + this.state = 4519; this.match(HiveSqlParser.KW_SELECT); } break; case HiveSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4501; + this.state = 4520; this.match(HiveSqlParser.KW_JOIN); } break; case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 4); { - this.state = 4502; + this.state = 4521; this.match(HiveSqlParser.KW_PARTITION); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 5); { - this.state = 4503; + this.state = 4522; this.match(HiveSqlParser.KW_MAP); } break; case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 6); { - this.state = 4504; + this.state = 4523; this.match(HiveSqlParser.KW_REDUCE); } break; case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 4505; + this.state = 4524; this.match(HiveSqlParser.KW_USER); } break; case HiveSqlParser.KW_PERCENT: this.enterOuterAlt(localContext, 8); { - this.state = 4506; + this.state = 4525; this.match(HiveSqlParser.KW_PERCENT); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 9); { - this.state = 4507; + this.state = 4526; this.match(HiveSqlParser.KW_INTERVAL); } break; case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 10); { - this.state = 4508; + this.state = 4527; this.match(HiveSqlParser.KW_ROWS); } break; case HiveSqlParser.KW_UNION: this.enterOuterAlt(localContext, 11); { - this.state = 4509; + this.state = 4528; this.match(HiveSqlParser.KW_UNION); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 12); { - this.state = 4510; + this.state = 4529; this.match(HiveSqlParser.KW_GROUP); } break; case HiveSqlParser.KW_MERGE: this.enterOuterAlt(localContext, 13); { - this.state = 4511; + this.state = 4530; this.match(HiveSqlParser.KW_MERGE); } break; case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 14); { - this.state = 4512; + this.state = 4531; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_FETCH: this.enterOuterAlt(localContext, 15); { - this.state = 4513; + this.state = 4532; this.match(HiveSqlParser.KW_FETCH); } break; case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 16); { - this.state = 4514; + this.state = 4533; this.match(HiveSqlParser.KW_LOCAL); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 17); { - this.state = 4515; + this.state = 4534; this.match(HiveSqlParser.KW_DROP); } break; case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 18); { - this.state = 4516; + this.state = 4535; this.match(HiveSqlParser.KW_TABLE); } break; case HiveSqlParser.KW_ON: this.enterOuterAlt(localContext, 19); { - this.state = 4517; + this.state = 4536; this.match(HiveSqlParser.KW_ON); } break; case HiveSqlParser.KW_ROW: this.enterOuterAlt(localContext, 20); { - this.state = 4518; + this.state = 4537; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 21); { - this.state = 4519; + this.state = 4538; this.match(HiveSqlParser.KW_GROUPING); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 22); { - this.state = 4520; + this.state = 4539; this.match(HiveSqlParser.KW_SET); } break; case HiveSqlParser.KW_FORCE: this.enterOuterAlt(localContext, 23); { - this.state = 4521; + this.state = 4540; this.match(HiveSqlParser.KW_FORCE); } break; case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 24); { - this.state = 4522; + this.state = 4541; this.match(HiveSqlParser.KW_START); } break; case HiveSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 25); { - this.state = 4523; + this.state = 4542; this.match(HiveSqlParser.KW_INSERT); } break; case HiveSqlParser.KW_CONF: this.enterOuterAlt(localContext, 26); { - this.state = 4524; + this.state = 4543; this.match(HiveSqlParser.KW_CONF); } break; case HiveSqlParser.KW_INTO: this.enterOuterAlt(localContext, 27); { - this.state = 4525; + this.state = 4544; this.match(HiveSqlParser.KW_INTO); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 28); { - this.state = 4526; + this.state = 4545; this.match(HiveSqlParser.KW_UNIQUE); } break; case HiveSqlParser.KW_COLUMN: this.enterOuterAlt(localContext, 29); { - this.state = 4527; + this.state = 4546; this.match(HiveSqlParser.KW_COLUMN); } break; case HiveSqlParser.KW_TRANSFORM: this.enterOuterAlt(localContext, 30); { - this.state = 4528; + this.state = 4547; this.match(HiveSqlParser.KW_TRANSFORM); } break; case HiveSqlParser.KW_DISTINCT: this.enterOuterAlt(localContext, 31); { - this.state = 4529; + this.state = 4548; this.match(HiveSqlParser.KW_DISTINCT); } break; case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 32); { - this.state = 4530; + this.state = 4549; this.match(HiveSqlParser.KW_IN); } break; case HiveSqlParser.KW_REFERENCES: this.enterOuterAlt(localContext, 33); { - this.state = 4531; + this.state = 4550; this.match(HiveSqlParser.KW_REFERENCES); } break; case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 34); { - this.state = 4532; + this.state = 4551; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case HiveSqlParser.KW_ONLY: this.enterOuterAlt(localContext, 35); { - this.state = 4533; + this.state = 4552; this.match(HiveSqlParser.KW_ONLY); } break; case HiveSqlParser.KW_END: this.enterOuterAlt(localContext, 36); { - this.state = 4534; + this.state = 4553; this.match(HiveSqlParser.KW_END); } break; case HiveSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 37); { - this.state = 4535; + this.state = 4554; this.match(HiveSqlParser.KW_FUNCTION); } break; case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 38); { - this.state = 4536; + this.state = 4555; this.match(HiveSqlParser.KW_UPDATE); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 39); { - this.state = 4537; + this.state = 4556; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 40); { - this.state = 4538; + this.state = 4557; this.match(HiveSqlParser.KW_DDL); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 41); { - this.state = 4539; + this.state = 4558; this.match(HiveSqlParser.KW_VALUES); } break; case HiveSqlParser.KW_TIME: this.enterOuterAlt(localContext, 42); { - this.state = 4540; + this.state = 4559; this.match(HiveSqlParser.KW_TIME); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 43); { - this.state = 4541; + this.state = 4560; this.match(HiveSqlParser.KW_IS); } break; case HiveSqlParser.KW_FOR: this.enterOuterAlt(localContext, 44); { - this.state = 4542; + this.state = 4561; this.match(HiveSqlParser.KW_FOR); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 45); { - this.state = 4543; + this.state = 4562; this.match(HiveSqlParser.KW_NOT); } break; case HiveSqlParser.KW_BINARY: this.enterOuterAlt(localContext, 46); { - this.state = 4544; + this.state = 4563; this.match(HiveSqlParser.KW_BINARY); } break; case HiveSqlParser.KW_USING: this.enterOuterAlt(localContext, 47); { - this.state = 4545; + this.state = 4564; this.match(HiveSqlParser.KW_USING); } break; case HiveSqlParser.KW_READS: this.enterOuterAlt(localContext, 48); { - this.state = 4546; + this.state = 4565; this.match(HiveSqlParser.KW_READS); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 49); { - this.state = 4547; + this.state = 4566; this.match(HiveSqlParser.KW_BETWEEN); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 50); { - this.state = 4548; + this.state = 4567; this.match(HiveSqlParser.KW_CURRENT); } break; case HiveSqlParser.KW_AS: this.enterOuterAlt(localContext, 51); { - this.state = 4549; + this.state = 4568; this.match(HiveSqlParser.KW_AS); } break; @@ -24497,56 +24624,56 @@ export class HiveSqlParser extends SQLParserBase { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 654, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 664, HiveSqlParser.RULE_resourcePlanDdlStatements); let _la: number; try { - this.state = 4717; + this.state = 4736; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4552; + this.state = 4571; this.match(HiveSqlParser.KW_CREATE); - this.state = 4553; + this.state = 4572; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4554; + this.state = 4573; this.match(HiveSqlParser.KW_PLAN); - this.state = 4556; + this.state = 4575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4555; + this.state = 4574; this.ifNotExists(); } } - this.state = 4567; + this.state = 4586; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: { - this.state = 4558; + this.state = 4577; localContext._name = this.id_(); - this.state = 4559; + this.state = 4578; this.match(HiveSqlParser.KW_LIKE); - this.state = 4560; + this.state = 4579; localContext._likeName = this.id_(); } break; case 2: { - this.state = 4562; + this.state = 4581; localContext._name = this.id_(); - this.state = 4565; + this.state = 4584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { case 1: { - this.state = 4563; + this.state = 4582; this.match(HiveSqlParser.KW_WITH); - this.state = 4564; + this.state = 4583; this.rpAssignList(); } break; @@ -24559,57 +24686,57 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4569; + this.state = 4588; this.match(HiveSqlParser.KW_ALTER); - this.state = 4570; + this.state = 4589; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4571; + this.state = 4590; this.match(HiveSqlParser.KW_PLAN); - this.state = 4572; + this.state = 4591; localContext._name = this.id_(); - this.state = 4597; + this.state = 4616; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 4573; + this.state = 4592; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4574; + this.state = 4593; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 4575; + this.state = 4594; this.match(HiveSqlParser.KW_SET); - this.state = 4576; + this.state = 4595; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4577; + this.state = 4596; this.match(HiveSqlParser.KW_UNSET); - this.state = 4578; + this.state = 4597; this.rpUnassign(); - this.state = 4583; + this.state = 4602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4579; + this.state = 4598; this.match(HiveSqlParser.COMMA); - this.state = 4580; + this.state = 4599; this.rpUnassign(); } } - this.state = 4585; + this.state = 4604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24617,24 +24744,24 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_RENAME: { - this.state = 4586; + this.state = 4605; this.match(HiveSqlParser.KW_RENAME); - this.state = 4587; + this.state = 4606; this.match(HiveSqlParser.KW_TO); - this.state = 4588; + this.state = 4607; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 4589; + this.state = 4608; this.activate(); - this.state = 4591; + this.state = 4610; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { case 1: { - this.state = 4590; + this.state = 4609; this.enable(); } break; @@ -24644,14 +24771,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4593; + this.state = 4612; this.enable(); - this.state = 4595; + this.state = 4614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4594; + this.state = 4613; this.activate(); } } @@ -24666,88 +24793,88 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4599; + this.state = 4618; this.match(HiveSqlParser.KW_DROP); - this.state = 4600; + this.state = 4619; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4601; + this.state = 4620; this.match(HiveSqlParser.KW_PLAN); - this.state = 4603; + this.state = 4622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4602; + this.state = 4621; this.ifExists(); } } - this.state = 4605; + this.state = 4624; localContext._name = this.id_(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4608; + this.state = 4627; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4606; + this.state = 4625; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4607; + this.state = 4626; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4610; + this.state = 4629; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 4611; + this.state = 4630; this.match(HiveSqlParser.KW_MANAGEMENT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4613; + this.state = 4632; this.match(HiveSqlParser.KW_REPLACE); - this.state = 4625; + this.state = 4644; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 4614; + this.state = 4633; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 4615; + this.state = 4634; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4616; + this.state = 4635; this.match(HiveSqlParser.KW_PLAN); - this.state = 4617; + this.state = 4636; this.match(HiveSqlParser.KW_WITH); - this.state = 4618; + this.state = 4637; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 4619; + this.state = 4638; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4620; + this.state = 4639; this.match(HiveSqlParser.KW_PLAN); - this.state = 4621; + this.state = 4640; localContext._dest = this.id_(); - this.state = 4622; + this.state = 4641; this.match(HiveSqlParser.KW_WITH); - this.state = 4623; + this.state = 4642; localContext._src = this.id_(); } break; @@ -24759,93 +24886,93 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4627; + this.state = 4646; this.match(HiveSqlParser.KW_CREATE); - this.state = 4628; + this.state = 4647; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4629; + this.state = 4648; localContext._rpName = this.id_(); - this.state = 4630; + this.state = 4649; this.match(HiveSqlParser.DOT); - this.state = 4631; + this.state = 4650; localContext._triggerName = this.id_(); - this.state = 4632; + this.state = 4651; this.match(HiveSqlParser.KW_WHEN); - this.state = 4633; + this.state = 4652; this.triggerAtomExpression(); - this.state = 4634; + this.state = 4653; this.match(HiveSqlParser.KW_DO); - this.state = 4635; + this.state = 4654; this.triggerActionExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4637; + this.state = 4656; this.match(HiveSqlParser.KW_ALTER); - this.state = 4638; + this.state = 4657; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4639; + this.state = 4658; localContext._rpName = this.id_(); - this.state = 4640; + this.state = 4659; this.match(HiveSqlParser.DOT); - this.state = 4641; + this.state = 4660; localContext._triggerName = this.id_(); - this.state = 4658; + this.state = 4677; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 4642; + this.state = 4661; this.match(HiveSqlParser.KW_WHEN); - this.state = 4643; + this.state = 4662; this.triggerAtomExpression(); - this.state = 4644; + this.state = 4663; this.match(HiveSqlParser.KW_DO); - this.state = 4645; + this.state = 4664; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4651; + this.state = 4670; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 4647; + this.state = 4666; this.match(HiveSqlParser.KW_ADD); - this.state = 4648; + this.state = 4667; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 4649; + this.state = 4668; this.match(HiveSqlParser.KW_DROP); - this.state = 4650; + this.state = 4669; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4656; + this.state = 4675; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 4653; + this.state = 4672; this.match(HiveSqlParser.KW_POOL); - this.state = 4654; + this.state = 4673; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4655; + this.state = 4674; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -24862,73 +24989,73 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4660; + this.state = 4679; this.match(HiveSqlParser.KW_DROP); - this.state = 4661; + this.state = 4680; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4662; + this.state = 4681; localContext._rpName = this.id_(); - this.state = 4663; + this.state = 4682; this.match(HiveSqlParser.DOT); - this.state = 4664; + this.state = 4683; localContext._triggerName = this.id_(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4666; + this.state = 4685; this.match(HiveSqlParser.KW_CREATE); - this.state = 4667; + this.state = 4686; this.match(HiveSqlParser.KW_POOL); - this.state = 4668; + this.state = 4687; localContext._rpName = this.id_(); - this.state = 4669; + this.state = 4688; this.match(HiveSqlParser.DOT); - this.state = 4670; + this.state = 4689; this.poolPath(); - this.state = 4671; + this.state = 4690; this.match(HiveSqlParser.KW_WITH); - this.state = 4672; + this.state = 4691; this.poolAssignList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4674; + this.state = 4693; this.match(HiveSqlParser.KW_ALTER); - this.state = 4675; + this.state = 4694; this.match(HiveSqlParser.KW_POOL); - this.state = 4676; + this.state = 4695; localContext._rpName = this.id_(); - this.state = 4677; + this.state = 4696; this.match(HiveSqlParser.DOT); - this.state = 4678; + this.state = 4697; this.poolPath(); - this.state = 4686; + this.state = 4705; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 4679; + this.state = 4698; this.match(HiveSqlParser.KW_SET); - this.state = 4680; + this.state = 4699; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4681; + this.state = 4700; this.match(HiveSqlParser.KW_UNSET); - this.state = 4682; + this.state = 4701; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4683; + this.state = 4702; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -24937,9 +25064,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4684; + this.state = 4703; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4685; + this.state = 4704; localContext._triggerName = this.id_(); } break; @@ -24951,22 +25078,22 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4688; + this.state = 4707; this.match(HiveSqlParser.KW_DROP); - this.state = 4689; + this.state = 4708; this.match(HiveSqlParser.KW_POOL); - this.state = 4690; + this.state = 4709; localContext._rpName = this.id_(); - this.state = 4691; + this.state = 4710; this.match(HiveSqlParser.DOT); - this.state = 4692; + this.state = 4711; this.poolPath(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4694; + this.state = 4713; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 58)) { this.errorHandler.recoverInline(this); @@ -24975,46 +25102,46 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4695; + this.state = 4714; localContext._mappingType = this.mappingTypes(); - this.state = 4696; + this.state = 4715; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4697; + this.state = 4716; this.match(HiveSqlParser.StringLiteral); - this.state = 4698; + this.state = 4717; this.match(HiveSqlParser.KW_IN); - this.state = 4699; + this.state = 4718; localContext._rpName = this.id_(); - this.state = 4703; + this.state = 4722; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 4700; + this.state = 4719; this.match(HiveSqlParser.KW_TO); - this.state = 4701; + this.state = 4720; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4702; + this.state = 4721; this.match(HiveSqlParser.KW_UNMANAGED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4708; + this.state = 4727; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: { - this.state = 4705; + this.state = 4724; this.match(HiveSqlParser.KW_WITH); - this.state = 4706; + this.state = 4725; this.match(HiveSqlParser.KW_ORDER); - this.state = 4707; + this.state = 4726; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -25024,17 +25151,17 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4710; + this.state = 4729; this.match(HiveSqlParser.KW_DROP); - this.state = 4711; + this.state = 4730; localContext._mappingType = this.mappingTypes(); - this.state = 4712; + this.state = 4731; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4713; + this.state = 4732; this.match(HiveSqlParser.StringLiteral); - this.state = 4714; + this.state = 4733; this.match(HiveSqlParser.KW_IN); - this.state = 4715; + this.state = 4734; localContext._rpName = this.id_(); } break; @@ -25056,12 +25183,12 @@ export class HiveSqlParser extends SQLParserBase { } public mappingTypes(): MappingTypesContext { let localContext = new MappingTypesContext(this.context, this.state); - this.enterRule(localContext, 656, HiveSqlParser.RULE_mappingTypes); + this.enterRule(localContext, 666, HiveSqlParser.RULE_mappingTypes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4719; + this.state = 4738; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 144 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -25088,32 +25215,32 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 658, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 668, HiveSqlParser.RULE_rpAssign); try { - this.state = 4728; + this.state = 4747; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4721; + this.state = 4740; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4722; + this.state = 4741; this.match(HiveSqlParser.EQUAL); - this.state = 4723; + this.state = 4742; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4724; + this.state = 4743; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4725; + this.state = 4744; this.match(HiveSqlParser.KW_POOL); - this.state = 4726; + this.state = 4745; this.match(HiveSqlParser.EQUAL); - this.state = 4727; + this.state = 4746; this.poolPath(); } break; @@ -25137,26 +25264,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 660, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 670, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4730; + this.state = 4749; this.rpAssign(); - this.state = 4735; + this.state = 4754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4731; + this.state = 4750; this.match(HiveSqlParser.COMMA); - this.state = 4732; + this.state = 4751; this.rpAssign(); } } - this.state = 4737; + this.state = 4756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25178,24 +25305,24 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 662, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 672, HiveSqlParser.RULE_rpUnassign); try { - this.state = 4741; + this.state = 4760; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4738; + this.state = 4757; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4739; + this.state = 4758; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4740; + this.state = 4759; this.match(HiveSqlParser.KW_POOL); } break; @@ -25219,20 +25346,20 @@ export class HiveSqlParser extends SQLParserBase { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 674, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4743; + this.state = 4762; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 4746; + this.state = 4765; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4744; + this.state = 4763; this.match(HiveSqlParser.KW_WITH); - this.state = 4745; + this.state = 4764; this.match(HiveSqlParser.KW_REPLACE); } break; @@ -25255,12 +25382,12 @@ export class HiveSqlParser extends SQLParserBase { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 676, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4748; + this.state = 4767; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -25287,12 +25414,12 @@ export class HiveSqlParser extends SQLParserBase { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 678, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4750; + this.state = 4769; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -25319,12 +25446,12 @@ export class HiveSqlParser extends SQLParserBase { } public year(): YearContext { let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_year); + this.enterRule(localContext, 680, HiveSqlParser.RULE_year); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4752; + this.state = 4771; _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 393)) { this.errorHandler.recoverInline(this); @@ -25351,12 +25478,12 @@ export class HiveSqlParser extends SQLParserBase { } public month(): MonthContext { let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_month); + this.enterRule(localContext, 682, HiveSqlParser.RULE_month); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4754; + this.state = 4773; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -25383,12 +25510,12 @@ export class HiveSqlParser extends SQLParserBase { } public week(): WeekContext { let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_week); + this.enterRule(localContext, 684, HiveSqlParser.RULE_week); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4756; + this.state = 4775; _la = this.tokenStream.LA(1); if(!(_la === 381 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -25415,12 +25542,12 @@ export class HiveSqlParser extends SQLParserBase { } public day(): DayContext { let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_day); + this.enterRule(localContext, 686, HiveSqlParser.RULE_day); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4758; + this.state = 4777; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 74)) { this.errorHandler.recoverInline(this); @@ -25447,12 +25574,12 @@ export class HiveSqlParser extends SQLParserBase { } public hour(): HourContext { let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_hour); + this.enterRule(localContext, 688, HiveSqlParser.RULE_hour); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4760; + this.state = 4779; _la = this.tokenStream.LA(1); if(!(_la === 148 || _la === 149)) { this.errorHandler.recoverInline(this); @@ -25479,12 +25606,12 @@ export class HiveSqlParser extends SQLParserBase { } public minute(): MinuteContext { let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_minute); + this.enterRule(localContext, 690, HiveSqlParser.RULE_minute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4762; + this.state = 4781; _la = this.tokenStream.LA(1); if(!(_la === 206 || _la === 207)) { this.errorHandler.recoverInline(this); @@ -25511,12 +25638,12 @@ export class HiveSqlParser extends SQLParserBase { } public second(): SecondContext { let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_second); + this.enterRule(localContext, 692, HiveSqlParser.RULE_second); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4764; + this.state = 4783; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -25543,12 +25670,12 @@ export class HiveSqlParser extends SQLParserBase { } public decimal(): DecimalContext { let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_decimal); + this.enterRule(localContext, 694, HiveSqlParser.RULE_decimal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4766; + this.state = 4785; _la = this.tokenStream.LA(1); if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -25575,28 +25702,28 @@ export class HiveSqlParser extends SQLParserBase { } public poolPath(): PoolPathContext { let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_poolPath); + this.enterRule(localContext, 696, HiveSqlParser.RULE_poolPath); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4768; + this.state = 4787; this.id_(); - this.state = 4773; + this.state = 4792; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4769; + this.state = 4788; this.match(HiveSqlParser.DOT); - this.state = 4770; + this.state = 4789; this.id_(); } } } - this.state = 4775; + this.state = 4794; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); } @@ -25618,16 +25745,16 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 698, HiveSqlParser.RULE_triggerAtomExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4776; + this.state = 4795; this.id_(); - this.state = 4777; + this.state = 4796; this.match(HiveSqlParser.GREATERTHAN); - this.state = 4778; + this.state = 4797; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -25654,26 +25781,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 700, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 4784; + this.state = 4803; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 4780; + this.state = 4799; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4781; + this.state = 4800; this.match(HiveSqlParser.KW_MOVE); - this.state = 4782; + this.state = 4801; this.match(HiveSqlParser.KW_TO); - this.state = 4783; + this.state = 4802; this.poolPath(); } break; @@ -25697,50 +25824,50 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 692, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 702, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 4798; + this.state = 4817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 4786; + this.state = 4805; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 4787; + this.state = 4806; this.match(HiveSqlParser.EQUAL); - this.state = 4788; + this.state = 4807; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 4789; + this.state = 4808; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4790; + this.state = 4809; this.match(HiveSqlParser.EQUAL); - this.state = 4791; + this.state = 4810; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 4792; + this.state = 4811; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 4793; + this.state = 4812; this.match(HiveSqlParser.EQUAL); - this.state = 4794; + this.state = 4813; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 4795; + this.state = 4814; this.match(HiveSqlParser.KW_PATH); - this.state = 4796; + this.state = 4815; this.match(HiveSqlParser.EQUAL); - this.state = 4797; + this.state = 4816; localContext._path = this.poolPath(); } break; @@ -25765,26 +25892,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 694, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 704, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4800; + this.state = 4819; this.poolAssign(); - this.state = 4805; + this.state = 4824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4801; + this.state = 4820; this.match(HiveSqlParser.COMMA); - this.state = 4802; + this.state = 4821; this.poolAssign(); } } - this.state = 4807; + this.state = 4826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25821,7 +25948,7 @@ export class HiveSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,438,4809,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,438,4828,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, @@ -25881,2078 +26008,2085 @@ export class HiveSqlParser extends SQLParserBase { 7,329,2,330,7,330,2,331,7,331,2,332,7,332,2,333,7,333,2,334,7,334, 2,335,7,335,2,336,7,336,2,337,7,337,2,338,7,338,2,339,7,339,2,340, 7,340,2,341,7,341,2,342,7,342,2,343,7,343,2,344,7,344,2,345,7,345, - 2,346,7,346,2,347,7,347,1,0,5,0,698,8,0,10,0,12,0,701,9,0,1,0,1, - 0,1,1,1,1,3,1,707,8,1,1,1,3,1,710,8,1,1,2,1,2,5,2,714,8,2,10,2,12, - 2,717,9,2,1,2,1,2,1,2,3,2,722,8,2,1,3,1,3,1,3,1,3,1,3,3,3,729,8, - 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,739,8,3,1,3,3,3,742,8,3,1, - 3,1,3,3,3,746,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, - 5,1,5,3,5,761,8,5,1,5,1,5,1,5,1,5,1,5,3,5,768,8,5,1,5,1,5,1,5,1, - 5,3,5,774,8,5,1,5,1,5,1,5,3,5,779,8,5,1,5,1,5,1,5,3,5,784,8,5,1, - 5,3,5,787,8,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, - 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,5,5,809,8,5,10,5,12,5,812,9,5,1,5, - 1,5,5,5,816,8,5,10,5,12,5,819,9,5,3,5,821,8,5,1,6,1,6,1,6,3,6,826, - 8,6,1,6,1,6,1,6,3,6,831,8,6,1,6,1,6,1,6,1,6,3,6,837,8,6,1,7,1,7, - 3,7,841,8,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,854, - 8,8,1,9,1,9,3,9,858,8,9,1,9,1,9,3,9,862,8,9,1,9,1,9,1,9,3,9,867, - 8,9,1,10,1,10,1,10,1,10,1,10,3,10,874,8,10,1,10,1,10,3,10,878,8, - 10,1,11,1,11,1,11,3,11,883,8,11,1,12,1,12,1,12,1,12,1,12,3,12,890, - 8,12,1,12,1,12,3,12,894,8,12,1,13,1,13,1,13,3,13,899,8,13,1,14,1, + 2,346,7,346,2,347,7,347,2,348,7,348,2,349,7,349,2,350,7,350,2,351, + 7,351,2,352,7,352,1,0,5,0,708,8,0,10,0,12,0,711,9,0,1,0,1,0,1,1, + 1,1,3,1,717,8,1,1,1,3,1,720,8,1,1,2,1,2,5,2,724,8,2,10,2,12,2,727, + 9,2,1,2,1,2,1,2,3,2,732,8,2,1,3,1,3,1,3,1,3,1,3,3,3,739,8,3,1,3, + 1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,749,8,3,1,3,3,3,752,8,3,1,3,1,3, + 3,3,756,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, + 3,5,771,8,5,1,5,1,5,1,5,1,5,1,5,3,5,778,8,5,1,5,1,5,1,5,1,5,3,5, + 784,8,5,1,5,1,5,1,5,3,5,789,8,5,1,5,1,5,1,5,3,5,794,8,5,1,5,3,5, + 797,8,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, + 1,5,1,5,1,5,1,5,1,5,1,5,5,5,819,8,5,10,5,12,5,822,9,5,1,5,1,5,5, + 5,826,8,5,10,5,12,5,829,9,5,3,5,831,8,5,1,6,1,6,1,6,3,6,836,8,6, + 1,6,1,6,1,6,3,6,841,8,6,1,6,1,6,1,6,1,6,3,6,847,8,6,1,7,1,7,3,7, + 851,8,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,864,8,8, + 1,9,1,9,3,9,868,8,9,1,9,1,9,3,9,872,8,9,1,9,1,9,1,9,3,9,877,8,9, + 1,10,1,10,1,10,1,10,1,10,3,10,884,8,10,1,10,1,10,3,10,888,8,10,1, + 11,1,11,1,11,3,11,893,8,11,1,12,1,12,1,12,1,12,1,12,3,12,900,8,12, + 1,12,1,12,3,12,904,8,12,1,13,1,13,1,13,3,13,909,8,13,1,14,1,14,1, 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, - 14,1,14,1,14,1,14,4,14,945,8,14,11,14,12,14,946,1,14,1,14,1,14,4, - 14,952,8,14,11,14,12,14,953,1,14,1,14,1,14,3,14,959,8,14,1,15,1, - 15,1,15,1,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18,1,18,1,19,1,19,1, - 19,1,20,1,20,1,20,1,20,1,21,1,21,3,21,982,8,21,1,21,1,21,3,21,986, - 8,21,1,21,1,21,3,21,990,8,21,1,21,3,21,993,8,21,1,21,1,21,3,21,997, - 8,21,1,21,1,21,1,21,3,21,1002,8,21,1,21,1,21,1,21,1,21,3,21,1008, - 8,21,1,21,1,21,3,21,1012,8,21,1,21,1,21,1,21,1,21,3,21,1018,8,21, - 3,21,1020,8,21,1,22,1,22,1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24, - 1031,8,24,1,24,1,24,3,24,1035,8,24,1,25,1,25,1,25,1,26,1,26,3,26, - 1042,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1050,8,26,1,26,3,26, - 1053,8,26,1,27,1,27,1,27,3,27,1058,8,27,1,27,1,27,3,27,1062,8,27, - 1,27,3,27,1065,8,27,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29, - 1075,8,29,1,29,1,29,1,29,1,29,1,29,1,29,3,29,1083,8,29,5,29,1085, - 8,29,10,29,12,29,1088,9,29,3,29,1090,8,29,1,30,1,30,3,30,1094,8, - 30,1,31,1,31,3,31,1098,8,31,1,31,3,31,1101,8,31,1,32,1,32,1,32,3, - 32,1106,8,32,1,32,1,32,1,32,1,32,3,32,1112,8,32,1,32,1,32,1,32,3, - 32,1117,8,32,1,32,1,32,1,32,3,32,1122,8,32,1,32,1,32,3,32,1126,8, - 32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1137,8,33,3, - 33,1139,8,33,1,33,1,33,3,33,1143,8,33,1,34,1,34,1,35,1,35,1,36,1, - 36,1,36,1,36,3,36,1153,8,36,1,36,1,36,3,36,1157,8,36,1,36,1,36,1, - 36,1,36,3,36,1163,8,36,1,36,3,36,1166,8,36,1,36,1,36,1,36,1,36,1, - 36,3,36,1173,8,36,1,36,1,36,1,36,3,36,1178,8,36,1,36,1,36,1,36,1, - 36,1,36,1,36,3,36,1186,8,36,1,36,1,36,1,36,3,36,1191,8,36,1,36,1, - 36,3,36,1195,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1203,8,36,1, - 36,1,36,1,36,3,36,1208,8,36,1,36,1,36,1,36,1,36,3,36,1214,8,36,1, - 36,1,36,1,36,1,36,3,36,1220,8,36,1,36,3,36,1223,8,36,1,36,3,36,1226, - 8,36,1,36,3,36,1229,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36, - 1238,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1246,8,36,1,36,1,36, - 1,36,3,36,1251,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1259,8,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1266,8,36,1,36,3,36,1269,8,36,1,36, - 3,36,1272,8,36,3,36,1274,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,1,36,3,36,1285,8,36,3,36,1287,8,36,1,36,3,36,1290,8,36,1,36, - 3,36,1293,8,36,1,36,3,36,1296,8,36,1,36,3,36,1299,8,36,1,36,3,36, - 1302,8,36,3,36,1304,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,1,36,3,36,1316,8,36,1,36,1,36,1,36,1,36,3,36,1322,8,36,1,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1330,8,36,3,36,1332,8,36,1,37,1,37, - 1,37,1,37,1,37,1,37,1,37,1,37,3,37,1342,8,37,1,38,1,38,1,38,1,38, - 1,38,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42, - 1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45, - 1,45,3,45,1375,8,45,1,45,1,45,1,45,3,45,1380,8,45,1,46,1,46,3,46, - 1384,8,46,1,46,1,46,3,46,1388,8,46,1,46,1,46,1,46,1,47,1,47,3,47, - 1395,8,47,1,47,1,47,1,47,5,47,1400,8,47,10,47,12,47,1403,9,47,1, - 47,1,47,1,47,3,47,1408,8,47,1,48,1,48,3,48,1412,8,48,1,48,3,48,1415, - 8,48,1,48,1,48,1,48,5,48,1420,8,48,10,48,12,48,1423,9,48,1,48,1, - 48,1,48,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1, - 51,1,52,1,52,1,52,1,52,1,52,3,52,1445,8,52,1,53,1,53,1,53,3,53,1450, - 8,53,1,53,1,53,3,53,1454,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55, - 1462,8,55,1,56,1,56,1,56,1,57,1,57,1,57,1,57,3,57,1471,8,57,1,57, - 1,57,1,57,1,57,1,57,3,57,1478,8,57,1,58,1,58,1,58,1,58,3,58,1484, - 8,58,1,58,1,58,1,58,1,58,1,58,3,58,1491,8,58,1,58,3,58,1494,8,58, - 1,58,1,58,1,58,1,58,3,58,1500,8,58,1,59,1,59,1,59,5,59,1505,8,59, - 10,59,12,59,1508,9,59,1,60,1,60,1,60,1,60,1,60,3,60,1515,8,60,1, - 61,1,61,1,62,1,62,1,62,5,62,1522,8,62,10,62,12,62,1525,9,62,1,63, - 1,63,1,63,1,63,1,63,1,63,3,63,1533,8,63,1,64,1,64,1,64,1,64,1,64, - 3,64,1540,8,64,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67, - 1,67,1,67,1,68,1,68,1,68,1,68,1,69,1,69,3,69,1560,8,69,1,69,1,69, - 1,69,1,69,1,69,3,69,1567,8,69,3,69,1569,8,69,1,70,1,70,1,70,5,70, - 1574,8,70,10,70,12,70,1577,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1, - 73,3,73,1586,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,1594,8,73,1, - 74,1,74,3,74,1598,8,74,1,74,1,74,3,74,1602,8,74,1,74,1,74,1,75,1, - 75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,3,76,1615,8,76,1,76,1,76,1, - 76,1,77,1,77,1,77,1,77,3,77,1624,8,77,1,77,1,77,1,78,1,78,1,78,1, - 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1640,8,78,1,78,1, - 78,3,78,1644,8,78,1,78,1,78,1,78,3,78,1649,8,78,1,78,1,78,1,78,3, - 78,1654,8,78,1,78,3,78,1657,8,78,1,78,3,78,1660,8,78,1,78,3,78,1663, - 8,78,1,78,3,78,1666,8,78,1,78,3,78,1669,8,78,1,79,1,79,1,79,3,79, - 1674,8,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,3,80,1683,8,80,1,80, - 1,80,3,80,1687,8,80,1,80,1,80,1,80,1,80,1,80,3,80,1694,8,80,1,80, - 3,80,1697,8,80,1,80,3,80,1700,8,80,1,80,3,80,1703,8,80,1,80,1,80, - 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,1715,8,81,1,81,1,81, - 1,82,1,82,3,82,1721,8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84, + 14,1,14,1,14,4,14,955,8,14,11,14,12,14,956,1,14,1,14,1,14,4,14,962, + 8,14,11,14,12,14,963,1,14,1,14,1,14,3,14,969,8,14,1,15,1,15,1,15, + 1,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18,1,18,1,19,1,19,1,19,1,20, + 1,20,1,20,1,20,1,21,1,21,3,21,992,8,21,1,21,1,21,3,21,996,8,21,1, + 21,1,21,3,21,1000,8,21,1,21,3,21,1003,8,21,1,21,1,21,3,21,1007,8, + 21,1,21,1,21,1,21,3,21,1012,8,21,1,21,1,21,1,21,1,21,3,21,1018,8, + 21,1,21,1,21,3,21,1022,8,21,1,21,1,21,1,21,1,21,3,21,1028,8,21,3, + 21,1030,8,21,1,22,1,22,1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24,1041, + 8,24,1,24,1,24,3,24,1045,8,24,1,25,1,25,1,25,1,26,1,26,3,26,1052, + 8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1060,8,26,1,26,3,26,1063, + 8,26,1,27,1,27,1,27,3,27,1068,8,27,1,27,1,27,3,27,1072,8,27,1,27, + 3,27,1075,8,27,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29,1085, + 8,29,1,29,1,29,1,29,1,29,1,29,1,29,3,29,1093,8,29,5,29,1095,8,29, + 10,29,12,29,1098,9,29,3,29,1100,8,29,1,30,1,30,3,30,1104,8,30,1, + 31,1,31,3,31,1108,8,31,1,31,3,31,1111,8,31,1,32,1,32,1,32,3,32,1116, + 8,32,1,32,1,32,1,32,1,32,3,32,1122,8,32,1,32,1,32,1,32,3,32,1127, + 8,32,1,32,1,32,1,32,3,32,1132,8,32,1,32,1,32,3,32,1136,8,32,1,33, + 1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1147,8,33,3,33,1149, + 8,33,1,33,1,33,3,33,1153,8,33,1,34,1,34,1,35,1,35,1,36,1,36,1,36, + 1,36,3,36,1163,8,36,1,36,1,36,3,36,1167,8,36,1,36,1,36,1,36,1,36, + 3,36,1173,8,36,1,36,3,36,1176,8,36,1,36,1,36,1,36,1,36,1,36,3,36, + 1183,8,36,1,36,1,36,1,36,3,36,1188,8,36,1,36,1,36,1,36,1,36,1,36, + 1,36,3,36,1196,8,36,1,36,1,36,1,36,3,36,1201,8,36,1,36,1,36,3,36, + 1205,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1213,8,36,1,36,1,36, + 1,36,3,36,1218,8,36,1,36,1,36,1,36,1,36,3,36,1224,8,36,1,36,1,36, + 1,36,1,36,3,36,1230,8,36,1,36,3,36,1233,8,36,1,36,3,36,1236,8,36, + 1,36,3,36,1239,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1248, + 8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1256,8,36,1,36,1,36,1,36, + 3,36,1261,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1269,8,36,1,36, + 1,36,1,36,1,36,1,36,3,36,1276,8,36,1,36,3,36,1279,8,36,1,36,3,36, + 1282,8,36,3,36,1284,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, + 1,36,3,36,1295,8,36,3,36,1297,8,36,1,36,3,36,1300,8,36,1,36,3,36, + 1303,8,36,1,36,3,36,1306,8,36,1,36,3,36,1309,8,36,1,36,3,36,1312, + 8,36,3,36,1314,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, + 1,36,3,36,1326,8,36,1,36,1,36,1,36,1,36,3,36,1332,8,36,1,36,1,36, + 1,36,1,36,1,36,1,36,3,36,1340,8,36,3,36,1342,8,36,1,37,1,37,1,37, + 1,37,1,37,1,37,1,37,1,37,3,37,1352,8,37,1,38,1,38,1,38,1,38,1,38, + 1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42, + 1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45, + 3,45,1385,8,45,1,45,1,45,1,45,3,45,1390,8,45,1,46,1,46,3,46,1394, + 8,46,1,46,1,46,3,46,1398,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1405, + 8,47,1,47,1,47,1,47,5,47,1410,8,47,10,47,12,47,1413,9,47,1,47,1, + 47,1,47,3,47,1418,8,47,1,48,1,48,3,48,1422,8,48,1,48,3,48,1425,8, + 48,1,48,1,48,1,48,5,48,1430,8,48,10,48,12,48,1433,9,48,1,48,1,48, + 1,48,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51, + 1,52,1,52,1,52,1,52,1,52,3,52,1455,8,52,1,53,1,53,1,53,3,53,1460, + 8,53,1,53,1,53,3,53,1464,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55, + 1472,8,55,1,56,1,56,1,56,1,57,1,57,1,57,1,57,3,57,1481,8,57,1,57, + 1,57,1,57,1,57,1,57,3,57,1488,8,57,1,58,1,58,1,58,1,58,3,58,1494, + 8,58,1,58,1,58,1,58,1,58,1,58,3,58,1501,8,58,1,58,3,58,1504,8,58, + 1,58,1,58,1,58,1,58,3,58,1510,8,58,1,59,1,59,1,59,5,59,1515,8,59, + 10,59,12,59,1518,9,59,1,60,1,60,1,60,1,60,1,60,3,60,1525,8,60,1, + 61,1,61,1,62,1,62,1,62,5,62,1532,8,62,10,62,12,62,1535,9,62,1,63, + 1,63,1,63,1,63,1,63,1,63,3,63,1543,8,63,1,64,1,64,1,64,1,64,1,64, + 3,64,1550,8,64,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67, + 1,67,1,67,1,68,1,68,1,68,1,68,1,69,1,69,3,69,1570,8,69,1,69,1,69, + 1,69,1,69,1,69,3,69,1577,8,69,3,69,1579,8,69,1,70,1,70,1,70,5,70, + 1584,8,70,10,70,12,70,1587,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1, + 73,3,73,1596,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,1604,8,73,1, + 74,1,74,3,74,1608,8,74,1,74,1,74,3,74,1612,8,74,1,74,1,74,1,75,1, + 75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,3,76,1625,8,76,1,76,1,76,1, + 76,1,77,1,77,1,77,1,77,3,77,1634,8,77,1,77,1,77,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1650,8,78,1,78,1, + 78,3,78,1654,8,78,1,78,1,78,1,78,3,78,1659,8,78,1,78,1,78,1,78,3, + 78,1664,8,78,1,78,3,78,1667,8,78,1,78,3,78,1670,8,78,1,78,3,78,1673, + 8,78,1,78,3,78,1676,8,78,1,78,3,78,1679,8,78,1,79,1,79,1,79,3,79, + 1684,8,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,3,80,1693,8,80,1,80, + 1,80,3,80,1697,8,80,1,80,1,80,1,80,1,80,1,80,3,80,1704,8,80,1,80, + 3,80,1707,8,80,1,80,3,80,1710,8,80,1,80,3,80,1713,8,80,1,80,1,80, + 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,1725,8,81,1,81,1,81, + 1,82,1,82,3,82,1731,8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84, 1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86, - 1,87,1,87,1,87,3,87,1747,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88, - 1755,8,88,1,88,1,88,3,88,1759,8,88,1,88,3,88,1762,8,88,1,88,3,88, - 1765,8,88,1,88,3,88,1768,8,88,1,88,3,88,1771,8,88,1,88,3,88,1774, - 8,88,1,88,3,88,1777,8,88,1,88,3,88,1780,8,88,1,88,1,88,1,88,1,89, - 1,89,1,89,1,89,3,89,1789,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90, - 1,90,3,90,1799,8,90,1,90,3,90,1802,8,90,1,90,1,90,1,91,1,91,1,91, + 1,87,1,87,1,87,3,87,1757,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88, + 1765,8,88,1,88,1,88,3,88,1769,8,88,1,88,3,88,1772,8,88,1,88,3,88, + 1775,8,88,1,88,3,88,1778,8,88,1,88,3,88,1781,8,88,1,88,3,88,1784, + 8,88,1,88,3,88,1787,8,88,1,88,3,88,1790,8,88,1,88,1,88,1,88,1,89, + 1,89,1,89,1,89,3,89,1799,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90, + 1,90,3,90,1809,8,90,1,90,3,90,1812,8,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,92,1,93,1,93,1,93,1,93,1,93, - 3,93,1822,8,93,1,94,1,94,1,94,1,94,3,94,1828,8,94,1,94,1,94,1,94, - 1,94,3,94,1834,8,94,1,94,3,94,1837,8,94,3,94,1839,8,94,1,95,1,95, - 1,95,1,95,1,96,3,96,1846,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1853, + 3,93,1832,8,93,1,94,1,94,1,94,1,94,3,94,1838,8,94,1,94,1,94,1,94, + 1,94,3,94,1844,8,94,1,94,3,94,1847,8,94,3,94,1849,8,94,1,95,1,95, + 1,95,1,95,1,96,3,96,1856,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1863, 8,97,1,98,1,98,1,98,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100, - 3,100,1866,8,100,1,100,1,100,1,100,3,100,1871,8,100,1,100,1,100, - 1,101,1,101,1,101,5,101,1878,8,101,10,101,12,101,1881,9,101,1,102, - 1,102,1,102,5,102,1886,8,102,10,102,12,102,1889,9,102,1,103,1,103, - 1,103,1,103,1,103,3,103,1896,8,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,3,103,1909,8,103,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,1922, + 3,100,1876,8,100,1,100,1,100,1,100,3,100,1881,8,100,1,100,1,100, + 1,101,1,101,1,101,5,101,1888,8,101,10,101,12,101,1891,9,101,1,102, + 1,102,1,102,5,102,1896,8,102,10,102,12,102,1899,9,102,1,103,1,103, + 1,103,1,103,1,103,3,103,1906,8,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,3,103,1919,8,103,1,104,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,1932, 8,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,1,105,1,105,3,105,1938,8,105,1,106,1,106,3,106,1942, + 1,105,1,105,1,105,1,105,3,105,1948,8,105,1,106,1,106,3,106,1952, 8,106,1,107,1,107,1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,109, - 1,109,1,109,1,109,3,109,1957,8,109,1,110,1,110,1,110,1,110,3,110, - 1963,8,110,1,110,3,110,1966,8,110,1,110,3,110,1969,8,110,1,110,3, - 110,1972,8,110,1,110,3,110,1975,8,110,1,111,1,111,3,111,1979,8,111, + 1,109,1,109,1,109,3,109,1967,8,109,1,110,1,110,1,110,1,110,3,110, + 1973,8,110,1,110,3,110,1976,8,110,1,110,3,110,1979,8,110,1,110,3, + 110,1982,8,110,1,110,3,110,1985,8,110,1,111,1,111,3,111,1989,8,111, 1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114, - 5,114,1992,8,114,10,114,12,114,1995,9,114,3,114,1997,8,114,1,115, - 1,115,1,115,1,115,1,116,1,116,1,116,5,116,2006,8,116,10,116,12,116, - 2009,9,116,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,3,118,2022,8,118,1,119,1,119,1,119,1,119,1,119,1,119, + 5,114,2002,8,114,10,114,12,114,2005,9,114,3,114,2007,8,114,1,115, + 1,115,1,115,1,115,1,116,1,116,1,116,5,116,2016,8,116,10,116,12,116, + 2019,9,116,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,3,118,2032,8,118,1,119,1,119,1,119,1,119,1,119,1,119, 1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121, 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,123,1,123,3,123,2056,8,123,1,123,1,123,1,123,1,123, - 1,123,1,123,3,123,2064,8,123,1,123,1,123,1,123,3,123,2069,8,123, - 1,123,1,123,1,123,1,123,1,123,1,123,3,123,2077,8,123,1,123,1,123, - 1,123,3,123,2082,8,123,1,123,1,123,1,123,3,123,2087,8,123,1,124, - 1,124,1,124,5,124,2092,8,124,10,124,12,124,2095,9,124,1,125,1,125, - 1,125,5,125,2100,8,125,10,125,12,125,2103,9,125,1,126,1,126,1,126, - 5,126,2108,8,126,10,126,12,126,2111,9,126,1,127,1,127,1,127,5,127, - 2116,8,127,10,127,12,127,2119,9,127,1,128,1,128,3,128,2123,8,128, + 1,123,1,123,1,123,1,123,3,123,2066,8,123,1,123,1,123,1,123,1,123, + 1,123,1,123,3,123,2074,8,123,1,123,1,123,1,123,3,123,2079,8,123, + 1,123,1,123,1,123,1,123,1,123,1,123,3,123,2087,8,123,1,123,1,123, + 1,123,3,123,2092,8,123,1,123,1,123,1,123,3,123,2097,8,123,1,124, + 1,124,1,124,5,124,2102,8,124,10,124,12,124,2105,9,124,1,125,1,125, + 1,125,5,125,2110,8,125,10,125,12,125,2113,9,125,1,126,1,126,1,126, + 5,126,2118,8,126,10,126,12,126,2121,9,126,1,127,1,127,1,127,5,127, + 2126,8,127,10,127,12,127,2129,9,127,1,128,1,128,3,128,2133,8,128, 1,129,1,129,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,3,131, - 2135,8,131,5,131,2137,8,131,10,131,12,131,2140,9,131,1,132,1,132, - 1,132,5,132,2145,8,132,10,132,12,132,2148,9,132,1,133,1,133,1,133, - 1,133,1,134,1,134,3,134,2156,8,134,1,134,3,134,2159,8,134,1,135, - 1,135,3,135,2163,8,135,1,136,1,136,1,137,1,137,1,137,3,137,2170, - 8,137,1,138,1,138,1,139,1,139,3,139,2176,8,139,1,139,1,139,3,139, - 2180,8,139,1,140,1,140,1,140,1,140,3,140,2186,8,140,1,141,1,141, - 3,141,2190,8,141,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143, - 1,144,1,144,3,144,2202,8,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,3,144,2211,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,3,145,2222,8,145,1,146,1,146,3,146,2226,8,146,1,147, - 1,147,1,147,5,147,2231,8,147,10,147,12,147,2234,9,147,1,148,1,148, - 1,148,1,148,1,149,1,149,1,149,5,149,2243,8,149,10,149,12,149,2246, - 9,149,1,150,1,150,1,151,1,151,1,151,1,152,1,152,3,152,2255,8,152, - 1,152,3,152,2258,8,152,1,153,1,153,1,153,5,153,2263,8,153,10,153, - 12,153,2266,9,153,1,154,1,154,1,154,3,154,2271,8,154,1,155,1,155, - 3,155,2275,8,155,1,155,3,155,2278,8,155,1,155,3,155,2281,8,155,1, - 156,1,156,1,156,1,156,3,156,2287,8,156,1,157,1,157,3,157,2291,8, - 157,1,158,1,158,3,158,2295,8,158,1,159,1,159,1,159,3,159,2300,8, - 159,1,159,1,159,3,159,2304,8,159,1,160,1,160,3,160,2308,8,160,1, - 161,1,161,3,161,2312,8,161,1,161,1,161,1,161,1,161,1,161,1,161,3, - 161,2320,8,161,1,162,1,162,3,162,2324,8,162,1,162,1,162,3,162,2328, - 8,162,1,163,1,163,3,163,2332,8,163,1,164,1,164,3,164,2336,8,164, - 1,164,1,164,1,164,1,164,1,164,1,164,3,164,2344,8,164,1,165,1,165, - 3,165,2348,8,165,1,165,1,165,3,165,2352,8,165,1,166,1,166,1,166, - 1,166,1,166,1,166,3,166,2360,8,166,1,167,1,167,1,167,3,167,2365, - 8,167,1,168,1,168,1,168,3,168,2370,8,168,1,169,1,169,3,169,2374, - 8,169,1,170,1,170,3,170,2378,8,170,1,171,1,171,1,171,1,171,1,171, - 3,171,2385,8,171,1,172,1,172,1,173,1,173,1,173,5,173,2392,8,173, - 10,173,12,173,2395,9,173,1,174,1,174,1,174,1,174,1,174,3,174,2402, + 2145,8,131,5,131,2147,8,131,10,131,12,131,2150,9,131,1,132,1,132, + 1,132,5,132,2155,8,132,10,132,12,132,2158,9,132,1,133,1,133,1,133, + 1,133,1,134,1,134,3,134,2166,8,134,1,134,3,134,2169,8,134,1,135, + 1,135,3,135,2173,8,135,1,136,1,136,1,137,1,137,1,137,3,137,2180, + 8,137,1,138,1,138,1,139,1,139,3,139,2186,8,139,1,139,1,139,3,139, + 2190,8,139,1,140,1,140,1,140,1,140,3,140,2196,8,140,1,141,1,141, + 3,141,2200,8,141,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143, + 1,144,1,144,3,144,2212,8,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,144,3,144,2221,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,145,1,145,3,145,2232,8,145,1,146,1,146,3,146,2236,8,146,1,147, + 1,147,1,147,5,147,2241,8,147,10,147,12,147,2244,9,147,1,148,1,148, + 1,148,1,148,1,149,1,149,1,149,5,149,2253,8,149,10,149,12,149,2256, + 9,149,1,150,1,150,1,151,1,151,1,151,1,152,1,152,3,152,2265,8,152, + 1,152,3,152,2268,8,152,1,153,1,153,1,153,5,153,2273,8,153,10,153, + 12,153,2276,9,153,1,154,1,154,1,154,3,154,2281,8,154,1,155,1,155, + 3,155,2285,8,155,1,155,3,155,2288,8,155,1,155,3,155,2291,8,155,1, + 156,1,156,1,156,1,156,3,156,2297,8,156,1,157,1,157,3,157,2301,8, + 157,1,158,1,158,3,158,2305,8,158,1,159,1,159,1,159,3,159,2310,8, + 159,1,159,1,159,3,159,2314,8,159,1,160,1,160,3,160,2318,8,160,1, + 161,1,161,3,161,2322,8,161,1,161,1,161,1,161,1,161,1,161,1,161,3, + 161,2330,8,161,1,162,1,162,3,162,2334,8,162,1,162,1,162,3,162,2338, + 8,162,1,163,1,163,3,163,2342,8,163,1,164,1,164,3,164,2346,8,164, + 1,164,1,164,1,164,1,164,1,164,1,164,3,164,2354,8,164,1,165,1,165, + 3,165,2358,8,165,1,165,1,165,3,165,2362,8,165,1,166,1,166,1,166, + 1,166,1,166,1,166,3,166,2370,8,166,1,167,1,167,1,167,3,167,2375, + 8,167,1,168,1,168,1,168,3,168,2380,8,168,1,169,1,169,3,169,2384, + 8,169,1,170,1,170,3,170,2388,8,170,1,171,1,171,1,171,1,171,1,171, + 3,171,2395,8,171,1,172,1,172,1,173,1,173,1,173,5,173,2402,8,173, + 10,173,12,173,2405,9,173,1,174,1,174,1,174,1,174,1,174,3,174,2412, 8,174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 3,175,2414,8,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,3,175,2432,8,175, - 1,175,3,175,2435,8,175,1,175,1,175,1,175,1,175,3,175,2441,8,175, + 3,175,2424,8,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, + 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,3,175,2442,8,175, + 1,175,3,175,2445,8,175,1,175,1,175,1,175,1,175,3,175,2451,8,175, 1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,178, 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,3,180,2467,8,180,1,181,3,181,2470,8,181,1,181,1,181, - 1,182,1,182,3,182,2476,8,182,1,183,1,183,1,183,1,183,5,183,2482, - 8,183,10,183,12,183,2485,9,183,1,184,1,184,1,184,1,184,1,184,3,184, - 2492,8,184,1,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185,1,185, - 5,185,2503,8,185,10,185,12,185,2506,9,185,1,186,1,186,1,186,1,186, - 3,186,2512,8,186,1,186,3,186,2515,8,186,1,186,3,186,2518,8,186,1, - 186,3,186,2521,8,186,1,186,3,186,2524,8,186,1,186,3,186,2527,8,186, - 1,186,3,186,2530,8,186,1,186,3,186,2533,8,186,1,186,3,186,2536,8, - 186,1,186,3,186,2539,8,186,1,186,3,186,2542,8,186,1,186,1,186,1, - 186,3,186,2547,8,186,1,186,3,186,2550,8,186,1,186,3,186,2553,8,186, - 1,186,3,186,2556,8,186,1,186,3,186,2559,8,186,1,186,3,186,2562,8, - 186,1,186,3,186,2565,8,186,1,186,3,186,2568,8,186,1,186,3,186,2571, - 8,186,1,186,3,186,2574,8,186,1,186,3,186,2577,8,186,3,186,2579,8, - 186,1,187,1,187,1,187,1,187,3,187,2585,8,187,1,188,1,188,3,188,2589, - 8,188,1,188,3,188,2592,8,188,1,188,3,188,2595,8,188,1,188,3,188, - 2598,8,188,1,188,3,188,2601,8,188,1,188,3,188,2604,8,188,1,188,1, - 188,1,188,1,188,1,188,3,188,2611,8,188,1,189,1,189,3,189,2615,8, - 189,1,189,3,189,2618,8,189,1,189,3,189,2621,8,189,1,189,3,189,2624, - 8,189,1,189,3,189,2627,8,189,1,189,3,189,2630,8,189,1,190,1,190, - 1,190,4,190,2635,8,190,11,190,12,190,2636,1,191,3,191,2640,8,191, - 1,191,1,191,1,192,1,192,1,192,1,192,3,192,2648,8,192,1,192,1,192, - 3,192,2652,8,192,1,192,1,192,1,192,1,192,1,192,3,192,2659,8,192, - 3,192,2661,8,192,1,193,3,193,2664,8,193,1,193,1,193,1,193,3,193, - 2669,8,193,1,193,3,193,2672,8,193,1,193,1,193,3,193,2676,8,193,1, - 194,1,194,1,194,3,194,2681,8,194,1,194,1,194,1,194,1,194,3,194,2687, - 8,194,1,195,1,195,1,195,1,195,1,196,1,196,3,196,2695,8,196,1,197, - 1,197,1,197,1,197,5,197,2701,8,197,10,197,12,197,2704,9,197,1,198, - 1,198,1,198,1,198,1,198,5,198,2711,8,198,10,198,12,198,2714,9,198, - 3,198,2716,8,198,1,198,1,198,3,198,2720,8,198,1,198,1,198,3,198, - 2724,8,198,1,198,1,198,1,198,3,198,2729,8,198,1,199,1,199,1,199, - 1,199,1,199,3,199,2736,8,199,1,200,1,200,5,200,2740,8,200,10,200, - 12,200,2743,9,200,1,200,3,200,2746,8,200,1,201,1,201,1,201,1,201, - 1,201,3,201,2753,8,201,1,201,1,201,1,201,3,201,2758,8,201,1,201, + 1,180,1,180,3,180,2477,8,180,1,181,3,181,2480,8,181,1,181,1,181, + 1,182,1,182,3,182,2486,8,182,1,183,1,183,1,183,1,183,5,183,2492, + 8,183,10,183,12,183,2495,9,183,1,184,1,184,1,184,1,184,1,184,3,184, + 2502,8,184,1,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185,1,185, + 5,185,2513,8,185,10,185,12,185,2516,9,185,1,186,1,186,1,186,1,186, + 3,186,2522,8,186,1,186,3,186,2525,8,186,1,186,3,186,2528,8,186,1, + 186,3,186,2531,8,186,1,186,3,186,2534,8,186,1,186,3,186,2537,8,186, + 1,186,3,186,2540,8,186,1,186,3,186,2543,8,186,1,186,3,186,2546,8, + 186,1,186,3,186,2549,8,186,1,186,3,186,2552,8,186,1,186,1,186,1, + 186,3,186,2557,8,186,1,186,3,186,2560,8,186,1,186,3,186,2563,8,186, + 1,186,3,186,2566,8,186,1,186,3,186,2569,8,186,1,186,3,186,2572,8, + 186,1,186,3,186,2575,8,186,1,186,3,186,2578,8,186,1,186,3,186,2581, + 8,186,1,186,3,186,2584,8,186,1,186,3,186,2587,8,186,3,186,2589,8, + 186,1,187,1,187,1,187,1,187,3,187,2595,8,187,1,188,1,188,3,188,2599, + 8,188,1,188,3,188,2602,8,188,1,188,3,188,2605,8,188,1,188,3,188, + 2608,8,188,1,188,3,188,2611,8,188,1,188,3,188,2614,8,188,1,188,1, + 188,1,188,1,188,1,188,3,188,2621,8,188,1,189,1,189,3,189,2625,8, + 189,1,189,3,189,2628,8,189,1,189,3,189,2631,8,189,1,189,3,189,2634, + 8,189,1,189,3,189,2637,8,189,1,189,3,189,2640,8,189,1,190,1,190, + 1,190,4,190,2645,8,190,11,190,12,190,2646,1,191,3,191,2650,8,191, + 1,191,1,191,1,192,1,192,1,192,1,192,3,192,2658,8,192,1,192,1,192, + 3,192,2662,8,192,1,192,1,192,1,192,1,192,1,192,3,192,2669,8,192, + 3,192,2671,8,192,1,193,3,193,2674,8,193,1,193,1,193,1,193,3,193, + 2679,8,193,1,193,3,193,2682,8,193,1,193,1,193,3,193,2686,8,193,1, + 194,1,194,1,194,3,194,2691,8,194,1,194,1,194,1,194,1,194,3,194,2697, + 8,194,1,195,1,195,1,195,1,195,1,196,1,196,3,196,2705,8,196,1,197, + 1,197,1,197,1,197,5,197,2711,8,197,10,197,12,197,2714,9,197,1,198, + 1,198,1,198,1,198,1,198,5,198,2721,8,198,10,198,12,198,2724,9,198, + 3,198,2726,8,198,1,198,1,198,3,198,2730,8,198,1,198,1,198,3,198, + 2734,8,198,1,198,1,198,1,198,3,198,2739,8,198,1,199,1,199,1,199, + 1,199,1,199,3,199,2746,8,199,1,200,1,200,5,200,2750,8,200,10,200, + 12,200,2753,9,200,1,200,3,200,2756,8,200,1,201,1,201,1,201,1,201, + 1,201,3,201,2763,8,201,1,201,1,201,1,201,3,201,2768,8,201,1,201, 1,201,1,201,1,202,1,202,1,202,1,202,1,202,1,202,1,202,1,202,3,202, - 2771,8,202,1,203,1,203,1,203,1,203,1,203,1,203,3,203,2779,8,203, + 2781,8,202,1,203,1,203,1,203,1,203,1,203,1,203,3,203,2789,8,203, 1,204,1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,3,207,2798,8,207,1,207,1,207, 1,207,1,207,1,207,1,207,1,207,1,207,3,207,2808,8,207,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2821, - 8,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2831, - 8,208,1,208,1,208,3,208,2835,8,208,4,208,2837,8,208,11,208,12,208, - 2838,1,208,1,208,5,208,2843,8,208,10,208,12,208,2846,9,208,1,208, - 1,208,5,208,2850,8,208,10,208,12,208,2853,9,208,1,208,1,208,5,208, - 2857,8,208,10,208,12,208,2860,9,208,1,208,1,208,1,208,1,208,1,208, - 1,208,3,208,2868,8,208,1,208,1,208,1,208,1,208,1,208,3,208,2875, + 1,207,1,207,1,207,1,207,1,207,1,207,3,207,2818,8,207,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2831, + 8,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2841, + 8,208,1,208,1,208,3,208,2845,8,208,4,208,2847,8,208,11,208,12,208, + 2848,1,208,1,208,5,208,2853,8,208,10,208,12,208,2856,9,208,1,208, + 1,208,5,208,2860,8,208,10,208,12,208,2863,9,208,1,208,1,208,5,208, + 2867,8,208,10,208,12,208,2870,9,208,1,208,1,208,1,208,1,208,1,208, + 1,208,3,208,2878,8,208,1,208,1,208,1,208,1,208,1,208,3,208,2885, 8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2895,8,208, - 1,208,3,208,2898,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,3,208,2912,8,208,1,209,1,209,1,209, + 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2905,8,208, + 1,208,3,208,2908,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,1,208,1,208,3,208,2922,8,208,1,209,1,209,1,209, 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209, - 2927,8,209,1,209,1,209,3,209,2931,8,209,1,209,1,209,1,209,1,209, + 2937,8,209,1,209,1,209,3,209,2941,8,209,1,209,1,209,1,209,1,209, 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 1,209,5,209,2949,8,209,10,209,12,209,2952,9,209,1,209,1,209,1,209, - 1,209,1,209,1,209,1,209,1,209,1,209,3,209,2963,8,209,1,209,1,209, - 1,209,1,209,3,209,2969,8,209,1,209,3,209,2972,8,209,1,209,3,209, - 2975,8,209,1,209,1,209,1,209,1,209,3,209,2981,8,209,1,209,1,209, - 1,209,1,209,3,209,2987,8,209,1,209,1,209,1,209,1,209,1,209,3,209, - 2994,8,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,3002,8,209, - 1,209,1,209,1,209,1,209,3,209,3008,8,209,1,209,1,209,3,209,3012, - 8,209,1,209,1,209,1,209,3,209,3017,8,209,1,209,3,209,3020,8,209, - 1,209,1,209,3,209,3024,8,209,1,209,1,209,1,209,1,209,1,209,3,209, - 3031,8,209,1,209,1,209,1,209,3,209,3036,8,209,1,209,1,209,1,209, - 3,209,3041,8,209,1,209,3,209,3044,8,209,3,209,3046,8,209,1,210,1, - 210,1,210,1,210,1,210,1,210,3,210,3054,8,210,1,210,1,210,1,210,1, - 210,1,210,1,210,3,210,3062,8,210,1,210,1,210,3,210,3066,8,210,4, - 210,3068,8,210,11,210,12,210,3069,1,210,1,210,3,210,3074,8,210,1, + 1,209,5,209,2959,8,209,10,209,12,209,2962,9,209,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,1,209,1,209,3,209,2973,8,209,1,209,1,209, + 1,209,1,209,3,209,2979,8,209,1,209,3,209,2982,8,209,1,209,3,209, + 2985,8,209,1,209,1,209,1,209,1,209,3,209,2991,8,209,1,209,1,209, + 1,209,1,209,3,209,2997,8,209,1,209,1,209,1,209,1,209,1,209,3,209, + 3004,8,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,3012,8,209, + 1,209,1,209,1,209,1,209,3,209,3018,8,209,1,209,1,209,3,209,3022, + 8,209,1,209,1,209,1,209,3,209,3027,8,209,1,209,3,209,3030,8,209, + 1,209,1,209,3,209,3034,8,209,1,209,1,209,1,209,1,209,1,209,3,209, + 3041,8,209,1,209,1,209,1,209,3,209,3046,8,209,1,209,1,209,1,209, + 3,209,3051,8,209,1,209,3,209,3054,8,209,3,209,3056,8,209,1,210,1, + 210,1,210,1,210,1,210,1,210,3,210,3064,8,210,1,210,1,210,1,210,1, + 210,1,210,1,210,3,210,3072,8,210,1,210,1,210,3,210,3076,8,210,4, + 210,3078,8,210,11,210,12,210,3079,1,210,1,210,3,210,3084,8,210,1, 211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, - 1,211,1,211,1,211,1,211,3,211,3091,8,211,1,212,1,212,1,212,1,212, + 1,211,1,211,1,211,1,211,3,211,3101,8,211,1,212,1,212,1,212,1,212, 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212, - 3,212,3108,8,212,1,213,1,213,1,213,1,214,1,214,3,214,3115,8,214, - 1,214,1,214,1,214,1,214,1,214,5,214,3122,8,214,10,214,12,214,3125, - 9,214,1,214,1,214,3,214,3129,8,214,1,214,3,214,3132,8,214,1,214, - 3,214,3135,8,214,1,215,1,215,3,215,3139,8,215,1,215,1,215,1,215, + 3,212,3118,8,212,1,213,1,213,1,213,1,214,1,214,3,214,3125,8,214, + 1,214,1,214,1,214,1,214,1,214,5,214,3132,8,214,10,214,12,214,3135, + 9,214,1,214,1,214,3,214,3139,8,214,1,214,3,214,3142,8,214,1,214, + 3,214,3145,8,214,1,215,1,215,3,215,3149,8,215,1,215,1,215,1,215, 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216, - 3154,8,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,1,217,3,217,3168,8,217,1,217,3,217,3171,8,217,1,218, - 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3182,8,218, - 1,219,1,219,3,219,3186,8,219,1,219,3,219,3189,8,219,1,219,3,219, - 3192,8,219,1,219,1,219,3,219,3196,8,219,1,219,1,219,1,219,3,219, - 3201,8,219,1,219,3,219,3204,8,219,1,219,3,219,3207,8,219,1,219,3, - 219,3210,8,219,1,219,3,219,3213,8,219,1,219,3,219,3216,8,219,1,219, - 1,219,1,219,1,219,3,219,3222,8,219,1,219,3,219,3225,8,219,1,219, - 3,219,3228,8,219,1,219,3,219,3231,8,219,1,219,3,219,3234,8,219,1, - 219,3,219,3237,8,219,1,219,3,219,3240,8,219,1,219,3,219,3243,8,219, - 1,219,3,219,3246,8,219,1,219,3,219,3249,8,219,1,219,1,219,3,219, - 3253,8,219,3,219,3255,8,219,1,219,1,219,1,219,1,219,3,219,3261,8, - 219,1,219,1,219,1,219,3,219,3266,8,219,1,219,3,219,3269,8,219,1, - 219,3,219,3272,8,219,1,219,3,219,3275,8,219,1,219,3,219,3278,8,219, - 1,219,1,219,1,219,1,219,3,219,3284,8,219,1,219,3,219,3287,8,219, - 1,219,3,219,3290,8,219,1,219,3,219,3293,8,219,1,219,3,219,3296,8, - 219,1,219,3,219,3299,8,219,1,219,3,219,3302,8,219,1,219,3,219,3305, - 8,219,1,219,3,219,3308,8,219,1,219,3,219,3311,8,219,1,219,1,219, - 3,219,3315,8,219,3,219,3317,8,219,3,219,3319,8,219,1,220,1,220,1, - 220,3,220,3324,8,220,1,220,1,220,1,220,3,220,3329,8,220,1,220,1, - 220,3,220,3333,8,220,1,220,1,220,3,220,3337,8,220,1,220,1,220,1, - 220,3,220,3342,8,220,1,221,1,221,1,221,3,221,3347,8,221,1,221,1, - 221,1,222,1,222,1,222,5,222,3354,8,222,10,222,12,222,3357,9,222, - 1,222,1,222,1,223,1,223,1,223,5,223,3364,8,223,10,223,12,223,3367, - 9,223,1,224,1,224,1,224,5,224,3372,8,224,10,224,12,224,3375,9,224, - 1,225,1,225,1,225,1,226,1,226,1,226,1,226,4,226,3384,8,226,11,226, - 12,226,3385,1,226,3,226,3389,8,226,1,227,1,227,5,227,3393,8,227, - 10,227,12,227,3396,9,227,1,227,1,227,5,227,3400,8,227,10,227,12, - 227,3403,9,227,1,227,1,227,5,227,3407,8,227,10,227,12,227,3410,9, - 227,1,227,1,227,5,227,3414,8,227,10,227,12,227,3417,9,227,1,227, - 1,227,1,227,1,227,3,227,3423,8,227,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,3,228,3432,8,228,5,228,3434,8,228,10,228,12,228,3437, - 9,228,1,229,1,229,1,229,1,229,3,229,3443,8,229,1,229,5,229,3446, - 8,229,10,229,12,229,3449,9,229,1,230,3,230,3452,8,230,1,230,1,230, - 3,230,3456,8,230,1,230,3,230,3459,8,230,1,230,3,230,3462,8,230,1, - 230,1,230,1,230,1,230,1,231,1,231,1,231,1,231,1,231,3,231,3473,8, - 231,1,231,1,231,3,231,3477,8,231,3,231,3479,8,231,1,231,3,231,3482, + 3164,8,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217, + 1,217,1,217,1,217,3,217,3178,8,217,1,217,3,217,3181,8,217,1,218, + 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3192,8,218, + 1,219,1,219,3,219,3196,8,219,1,219,3,219,3199,8,219,1,219,3,219, + 3202,8,219,1,219,1,219,3,219,3206,8,219,1,219,1,219,1,219,3,219, + 3211,8,219,1,219,3,219,3214,8,219,1,219,3,219,3217,8,219,1,219,3, + 219,3220,8,219,1,219,3,219,3223,8,219,1,219,3,219,3226,8,219,1,219, + 1,219,1,219,1,219,3,219,3232,8,219,1,219,3,219,3235,8,219,1,219, + 3,219,3238,8,219,1,219,3,219,3241,8,219,1,219,3,219,3244,8,219,1, + 219,3,219,3247,8,219,1,219,3,219,3250,8,219,1,219,3,219,3253,8,219, + 1,219,3,219,3256,8,219,1,219,3,219,3259,8,219,1,219,1,219,3,219, + 3263,8,219,3,219,3265,8,219,1,219,1,219,1,219,1,219,3,219,3271,8, + 219,1,219,1,219,1,219,3,219,3276,8,219,1,219,3,219,3279,8,219,1, + 219,3,219,3282,8,219,1,219,3,219,3285,8,219,1,219,3,219,3288,8,219, + 1,219,1,219,1,219,1,219,3,219,3294,8,219,1,219,3,219,3297,8,219, + 1,219,3,219,3300,8,219,1,219,3,219,3303,8,219,1,219,3,219,3306,8, + 219,1,219,3,219,3309,8,219,1,219,3,219,3312,8,219,1,219,3,219,3315, + 8,219,1,219,3,219,3318,8,219,1,219,3,219,3321,8,219,1,219,1,219, + 3,219,3325,8,219,3,219,3327,8,219,3,219,3329,8,219,1,220,1,220,1, + 220,3,220,3334,8,220,1,220,1,220,1,220,3,220,3339,8,220,1,220,1, + 220,3,220,3343,8,220,1,220,1,220,3,220,3347,8,220,1,220,1,220,1, + 220,3,220,3352,8,220,1,221,1,221,1,221,3,221,3357,8,221,1,221,1, + 221,1,222,1,222,1,222,5,222,3364,8,222,10,222,12,222,3367,9,222, + 1,222,1,222,1,223,1,223,1,223,5,223,3374,8,223,10,223,12,223,3377, + 9,223,1,224,1,224,1,224,5,224,3382,8,224,10,224,12,224,3385,9,224, + 1,225,1,225,1,225,1,226,1,226,1,226,1,226,4,226,3394,8,226,11,226, + 12,226,3395,1,226,3,226,3399,8,226,1,227,1,227,5,227,3403,8,227, + 10,227,12,227,3406,9,227,1,227,1,227,5,227,3410,8,227,10,227,12, + 227,3413,9,227,1,227,1,227,5,227,3417,8,227,10,227,12,227,3420,9, + 227,1,227,1,227,5,227,3424,8,227,10,227,12,227,3427,9,227,1,227, + 1,227,1,227,1,227,3,227,3433,8,227,1,228,1,228,1,228,1,228,1,228, + 1,228,1,228,3,228,3442,8,228,5,228,3444,8,228,10,228,12,228,3447, + 9,228,1,229,1,229,1,229,1,229,3,229,3453,8,229,1,229,5,229,3456, + 8,229,10,229,12,229,3459,9,229,1,230,3,230,3462,8,230,1,230,1,230, + 3,230,3466,8,230,1,230,3,230,3469,8,230,1,230,3,230,3472,8,230,1, + 230,1,230,1,230,1,230,1,231,1,231,1,231,1,231,1,231,3,231,3483,8, + 231,1,231,1,231,3,231,3487,8,231,3,231,3489,8,231,1,231,3,231,3492, 8,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232, - 3493,8,232,10,232,12,232,3496,9,232,3,232,3498,8,232,1,232,3,232, - 3501,8,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232, - 3511,8,232,10,232,12,232,3514,9,232,3,232,3516,8,232,1,232,1,232, - 1,232,1,232,1,232,3,232,3523,8,232,1,232,1,232,1,232,1,232,1,232, - 5,232,3530,8,232,10,232,12,232,3533,9,232,1,232,1,232,3,232,3537, - 8,232,3,232,3539,8,232,3,232,3541,8,232,1,233,1,233,1,234,1,234, - 1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,5,234,3556, - 8,234,10,234,12,234,3559,9,234,3,234,3561,8,234,1,234,1,234,1,234, - 1,234,1,234,1,234,3,234,3569,8,234,1,234,3,234,3572,8,234,1,235, - 1,235,3,235,3576,8,235,1,235,3,235,3579,8,235,1,235,3,235,3582,8, - 235,1,235,3,235,3585,8,235,1,235,3,235,3588,8,235,1,236,1,236,1, - 236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,3,236,3600,8,236,1, - 237,1,237,1,238,1,238,1,239,1,239,3,239,3608,8,239,1,240,1,240,1, - 240,1,240,1,240,3,240,3615,8,240,1,240,3,240,3618,8,240,1,241,1, - 241,1,241,1,241,1,241,3,241,3625,8,241,1,241,3,241,3628,8,241,1, - 242,1,242,1,242,3,242,3633,8,242,1,242,1,242,1,243,1,243,1,243,3, - 243,3640,8,243,1,243,1,243,1,244,1,244,1,244,1,244,3,244,3648,8, - 244,1,244,1,244,1,245,1,245,3,245,3654,8,245,1,245,1,245,1,245,3, - 245,3659,8,245,1,245,1,245,3,245,3663,8,245,1,246,1,246,1,246,3, - 246,3668,8,246,1,247,1,247,1,247,1,247,1,247,3,247,3675,8,247,1, - 247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,5,247, - 3687,8,247,10,247,12,247,3690,9,247,3,247,3692,8,247,1,247,1,247, - 3,247,3696,8,247,1,248,1,248,1,248,1,249,1,249,1,249,1,249,5,249, - 3705,8,249,10,249,12,249,3708,9,249,1,249,1,249,1,249,1,249,1,249, - 5,249,3715,8,249,10,249,12,249,3718,9,249,3,249,3720,8,249,1,250, - 1,250,1,250,1,250,1,250,3,250,3727,8,250,1,250,1,250,1,250,1,250, - 1,250,5,250,3734,8,250,10,250,12,250,3737,9,250,3,250,3739,8,250, - 1,250,1,250,1,251,1,251,3,251,3745,8,251,1,251,3,251,3748,8,251, - 1,251,1,251,1,251,5,251,3753,8,251,10,251,12,251,3756,9,251,1,251, - 1,251,3,251,3760,8,251,1,251,3,251,3763,8,251,1,252,1,252,1,252, - 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,3,252,3776,8,252, - 1,252,1,252,1,252,1,252,3,252,3782,8,252,3,252,3784,8,252,1,252, - 1,252,1,252,1,253,1,253,1,253,3,253,3792,8,253,1,253,3,253,3795, - 8,253,1,253,1,253,1,253,1,253,1,253,1,253,5,253,3803,8,253,10,253, - 12,253,3806,9,253,1,253,1,253,3,253,3810,8,253,3,253,3812,8,253, - 1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,3,254, - 3824,8,254,1,254,1,254,1,254,1,254,3,254,3830,8,254,3,254,3832,8, - 254,1,254,1,254,1,254,1,255,1,255,3,255,3839,8,255,1,256,1,256,1, - 256,5,256,3844,8,256,10,256,12,256,3847,9,256,1,257,1,257,1,257, - 1,257,1,257,1,257,1,257,1,257,1,257,5,257,3858,8,257,10,257,12,257, - 3861,9,257,1,258,1,258,1,258,3,258,3866,8,258,1,258,3,258,3869,8, - 258,1,258,3,258,3872,8,258,1,258,3,258,3875,8,258,1,259,1,259,1, - 259,1,259,1,259,1,259,1,259,3,259,3884,8,259,1,259,1,259,1,259,1, - 259,1,259,3,259,3891,8,259,1,260,1,260,1,260,1,260,3,260,3897,8, - 260,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261,3906,8,261,1, - 262,1,262,3,262,3910,8,262,1,262,1,262,1,262,1,262,5,262,3916,8, - 262,10,262,12,262,3919,9,262,1,262,1,262,1,263,1,263,1,263,1,263, - 1,263,3,263,3928,8,263,1,263,1,263,1,263,1,263,1,263,1,263,5,263, - 3936,8,263,10,263,12,263,3939,9,263,1,263,1,263,3,263,3943,8,263, - 1,264,1,264,3,264,3947,8,264,1,264,1,264,5,264,3951,8,264,10,264, - 12,264,3954,9,264,1,264,1,264,3,264,3958,8,264,1,265,1,265,1,265, - 1,266,1,266,1,266,1,267,1,267,3,267,3968,8,267,1,268,1,268,3,268, - 3972,8,268,1,268,3,268,3975,8,268,1,268,1,268,1,268,3,268,3980,8, - 268,1,268,3,268,3983,8,268,5,268,3985,8,268,10,268,12,268,3988,9, - 268,1,269,1,269,3,269,3992,8,269,1,270,1,270,1,270,1,270,1,271,1, - 271,1,271,4,271,4001,8,271,11,271,12,271,4002,3,271,4005,8,271,1, - 272,1,272,1,272,1,272,1,272,5,272,4012,8,272,10,272,12,272,4015, - 9,272,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274,1,275,1,275, - 1,275,1,275,1,276,1,276,1,276,1,276,1,276,1,276,5,276,4035,8,276, - 10,276,12,276,4038,9,276,1,276,1,276,1,276,1,276,1,276,5,276,4045, - 8,276,10,276,12,276,4048,9,276,3,276,4050,8,276,1,277,1,277,1,277, - 1,277,1,277,3,277,4057,8,277,1,277,3,277,4060,8,277,1,277,1,277, - 1,277,1,277,1,277,1,277,1,277,1,277,3,277,4070,8,277,1,277,1,277, - 1,277,5,277,4075,8,277,10,277,12,277,4078,9,277,3,277,4080,8,277, - 3,277,4082,8,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277, - 1,277,3,277,4093,8,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277, - 1,277,3,277,4103,8,277,3,277,4105,8,277,1,278,1,278,1,278,1,279, - 1,279,1,280,1,280,3,280,4114,8,280,1,281,1,281,1,281,3,281,4119, - 8,281,1,282,1,282,1,282,1,282,1,282,1,282,1,282,3,282,4128,8,282, - 1,282,1,282,1,283,1,283,1,283,1,283,1,283,1,283,1,283,4,283,4139, - 8,283,11,283,12,283,4140,1,283,1,283,3,283,4145,8,283,1,283,1,283, - 1,284,1,284,1,284,1,284,1,284,1,284,4,284,4155,8,284,11,284,12,284, - 4156,1,284,1,284,3,284,4161,8,284,1,284,1,284,1,285,1,285,1,285, - 1,285,1,285,3,285,4170,8,285,1,285,1,285,1,286,1,286,1,286,1,286, - 1,286,1,286,1,286,1,287,1,287,1,287,1,287,1,287,1,287,1,287,1,287, - 3,287,4189,8,287,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288, - 1,288,1,288,1,288,1,288,1,288,1,288,5,288,4205,8,288,10,288,12,288, - 4208,9,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288, - 3,288,4219,8,288,1,289,1,289,1,290,1,290,1,290,1,290,1,290,1,290, - 1,290,1,290,1,290,1,290,1,290,3,290,4234,8,290,1,290,1,290,3,290, - 4238,8,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,1,291,1,291,1,291,1,291,3,291,4254,8,291,1,292,1,292,1,292, - 5,292,4259,8,292,10,292,12,292,4262,9,292,1,293,1,293,1,293,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4275,8,293,1,294, - 5,294,4278,8,294,10,294,12,294,4281,9,294,1,294,1,294,1,294,1,294, - 1,294,1,294,1,294,5,294,4290,8,294,10,294,12,294,4293,9,294,1,295, - 1,295,1,295,5,295,4298,8,295,10,295,12,295,4301,9,295,1,296,1,296, - 1,296,5,296,4306,8,296,10,296,12,296,4309,9,296,1,297,1,297,1,297, - 5,297,4314,8,297,10,297,12,297,4317,9,297,1,298,1,298,1,298,5,298, - 4322,8,298,10,298,12,298,4325,9,298,1,299,1,299,1,299,5,299,4330, - 8,299,10,299,12,299,4333,9,299,1,300,1,300,1,300,5,300,4338,8,300, - 10,300,12,300,4341,9,300,1,301,1,301,1,302,1,302,1,302,1,302,1,303, - 1,303,3,303,4351,8,303,1,303,1,303,3,303,4355,8,303,1,304,1,304, - 1,304,1,304,1,304,1,304,3,304,4363,8,304,1,305,1,305,1,305,1,305, - 1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,3,305, - 4379,8,305,1,306,1,306,3,306,4383,8,306,1,307,1,307,1,307,3,307, - 4388,8,307,1,308,1,308,1,308,1,308,1,309,1,309,1,309,1,309,1,309, - 1,309,1,309,3,309,4401,8,309,1,310,1,310,1,310,1,310,1,310,1,310, - 1,310,5,310,4410,8,310,10,310,12,310,4413,9,310,1,311,1,311,1,311, - 1,311,1,311,1,311,3,311,4421,8,311,1,312,5,312,4424,8,312,10,312, - 12,312,4427,9,312,1,312,1,312,1,312,3,312,4432,8,312,1,313,1,313, - 1,313,5,313,4437,8,313,10,313,12,313,4440,9,313,1,314,1,314,3,314, - 4444,8,314,1,315,1,315,1,315,1,315,1,315,5,315,4451,8,315,10,315, - 12,315,4454,9,315,1,315,1,315,1,316,1,316,1,316,3,316,4461,8,316, - 1,317,1,317,1,317,1,317,5,317,4467,8,317,10,317,12,317,4470,9,317, - 1,317,1,317,1,318,1,318,1,318,3,318,4477,8,318,1,318,1,318,1,319, - 1,319,1,320,1,320,1,321,1,321,3,321,4487,8,321,1,322,1,322,1,322, - 3,322,4492,8,322,1,323,1,323,1,324,1,324,1,325,1,325,1,326,1,326, - 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, - 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, - 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, - 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, - 1,326,1,326,1,326,1,326,1,326,3,326,4551,8,326,1,327,1,327,1,327, - 1,327,3,327,4557,8,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 3,327,4566,8,327,3,327,4568,8,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,5,327,4582,8,327,10,327, - 12,327,4585,9,327,1,327,1,327,1,327,1,327,1,327,3,327,4592,8,327, - 1,327,1,327,3,327,4596,8,327,3,327,4598,8,327,1,327,1,327,1,327, - 1,327,3,327,4604,8,327,1,327,1,327,1,327,3,327,4609,8,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,3,327,4626,8,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,4652,8,327, - 1,327,1,327,1,327,3,327,4657,8,327,3,327,4659,8,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,3,327,4687,8,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,4704, - 8,327,1,327,1,327,1,327,3,327,4709,8,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,3,327,4718,8,327,1,328,1,328,1,329,1,329,1,329, - 1,329,1,329,1,329,1,329,3,329,4729,8,329,1,330,1,330,1,330,5,330, - 4734,8,330,10,330,12,330,4737,9,330,1,331,1,331,1,331,3,331,4742, - 8,331,1,332,1,332,1,332,3,332,4747,8,332,1,333,1,333,1,334,1,334, - 1,335,1,335,1,336,1,336,1,337,1,337,1,338,1,338,1,339,1,339,1,340, - 1,340,1,341,1,341,1,342,1,342,1,343,1,343,1,343,5,343,4772,8,343, - 10,343,12,343,4775,9,343,1,344,1,344,1,344,1,344,1,345,1,345,1,345, - 1,345,3,345,4785,8,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346, - 1,346,1,346,1,346,1,346,1,346,3,346,4799,8,346,1,347,1,347,1,347, - 5,347,4804,8,347,10,347,12,347,4807,9,347,1,347,1,817,0,348,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,120,122,124,126, - 128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158, - 160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190, - 192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222, - 224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254, - 256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286, - 288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318, - 320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350, - 352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382, - 384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414, - 416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446, - 448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478, - 480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510, - 512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542, - 544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574, - 576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606, - 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, - 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, - 672,674,676,678,680,682,684,686,688,690,692,694,0,61,2,0,57,57,172, - 172,4,0,91,91,121,121,226,226,325,325,1,0,395,396,2,0,50,50,346, - 346,2,0,34,34,282,282,1,0,89,90,2,0,139,139,154,154,2,0,67,67,295, - 295,2,0,68,68,296,296,1,0,155,156,2,0,114,114,307,307,11,0,7,7,9, - 9,58,58,86,86,101,101,155,155,161,161,190,190,299,299,309,309,365, - 365,3,0,4,4,101,101,326,326,3,0,15,15,128,128,170,170,1,0,141,142, - 2,0,30,30,351,351,2,0,217,217,373,373,2,0,214,214,272,272,2,0,18, - 18,89,89,2,0,130,130,177,177,2,0,39,39,376,376,4,0,112,112,164,164, - 205,205,356,356,2,0,7,7,96,96,2,0,125,125,350,350,2,0,225,225,391, - 391,2,0,42,42,315,315,2,0,189,189,196,196,2,0,426,426,431,431,2, - 0,140,140,285,285,3,0,12,12,231,231,300,300,2,0,241,241,292,292, - 2,0,198,198,268,268,2,0,260,260,292,292,2,0,354,354,431,431,2,0, - 133,133,247,247,2,0,152,152,281,281,3,0,413,414,418,418,420,420, - 2,0,412,412,415,417,1,0,413,414,4,0,184,184,270,270,286,286,408, - 411,2,0,7,7,13,13,3,0,7,7,13,13,313,313,3,0,184,184,270,270,286, - 286,4,0,125,125,219,219,350,350,360,360,2,0,405,405,407,411,24,0, - 11,11,16,16,25,28,35,35,100,100,131,132,151,151,154,154,162,163, - 184,184,198,198,216,216,228,228,264,264,270,270,286,286,311,311, - 323,324,340,340,357,357,383,383,405,417,419,421,423,423,85,0,1,6, - 8,8,10,10,15,15,18,20,22,24,30,31,33,34,37,38,40,44,46,47,49,50, - 52,53,56,57,59,59,66,66,68,68,72,77,79,79,83,85,87,89,91,95,97,99, - 103,104,106,107,109,111,114,116,118,121,127,130,137,138,142,142, - 147,150,152,152,155,156,158,160,168,170,172,177,182,183,185,187, - 189,193,195,197,199,202,204,204,206,209,211,212,214,215,217,218, - 220,220,222,223,226,227,232,233,235,236,238,240,243,246,252,252, - 254,255,257,259,261,262,265,267,271,282,284,284,287,288,293,298, - 300,303,305,310,312,312,314,317,319,325,327,328,330,330,332,334, - 339,340,342,342,344,346,349,349,352,353,355,355,357,357,360,364, - 366,368,371,373,375,375,377,382,385,385,388,394,13,0,16,16,26,28, - 63,64,71,71,100,100,131,131,145,145,151,151,162,163,198,198,264, - 264,311,311,337,337,2,0,4,4,101,101,2,0,9,9,58,58,3,0,14,14,144, - 144,369,369,1,0,106,107,1,0,94,95,1,0,392,393,1,0,208,209,1,0,381, - 382,1,0,73,74,1,0,148,149,1,0,206,207,1,0,297,298,1,0,80,82,5398, - 0,699,1,0,0,0,2,706,1,0,0,0,4,711,1,0,0,0,6,745,1,0,0,0,8,747,1, - 0,0,0,10,820,1,0,0,0,12,822,1,0,0,0,14,838,1,0,0,0,16,847,1,0,0, - 0,18,855,1,0,0,0,20,868,1,0,0,0,22,879,1,0,0,0,24,884,1,0,0,0,26, - 895,1,0,0,0,28,958,1,0,0,0,30,960,1,0,0,0,32,963,1,0,0,0,34,967, - 1,0,0,0,36,969,1,0,0,0,38,972,1,0,0,0,40,975,1,0,0,0,42,1019,1,0, - 0,0,44,1021,1,0,0,0,46,1024,1,0,0,0,48,1027,1,0,0,0,50,1036,1,0, - 0,0,52,1039,1,0,0,0,54,1054,1,0,0,0,56,1066,1,0,0,0,58,1071,1,0, - 0,0,60,1091,1,0,0,0,62,1095,1,0,0,0,64,1102,1,0,0,0,66,1127,1,0, - 0,0,68,1144,1,0,0,0,70,1146,1,0,0,0,72,1331,1,0,0,0,74,1341,1,0, - 0,0,76,1343,1,0,0,0,78,1348,1,0,0,0,80,1353,1,0,0,0,82,1355,1,0, - 0,0,84,1359,1,0,0,0,86,1363,1,0,0,0,88,1367,1,0,0,0,90,1371,1,0, - 0,0,92,1381,1,0,0,0,94,1392,1,0,0,0,96,1409,1,0,0,0,98,1427,1,0, - 0,0,100,1432,1,0,0,0,102,1435,1,0,0,0,104,1439,1,0,0,0,106,1446, - 1,0,0,0,108,1455,1,0,0,0,110,1461,1,0,0,0,112,1463,1,0,0,0,114,1477, - 1,0,0,0,116,1499,1,0,0,0,118,1501,1,0,0,0,120,1509,1,0,0,0,122,1516, - 1,0,0,0,124,1518,1,0,0,0,126,1532,1,0,0,0,128,1539,1,0,0,0,130,1541, - 1,0,0,0,132,1545,1,0,0,0,134,1549,1,0,0,0,136,1553,1,0,0,0,138,1557, - 1,0,0,0,140,1570,1,0,0,0,142,1578,1,0,0,0,144,1581,1,0,0,0,146,1583, - 1,0,0,0,148,1595,1,0,0,0,150,1605,1,0,0,0,152,1608,1,0,0,0,154,1619, - 1,0,0,0,156,1627,1,0,0,0,158,1670,1,0,0,0,160,1679,1,0,0,0,162,1707, - 1,0,0,0,164,1720,1,0,0,0,166,1722,1,0,0,0,168,1728,1,0,0,0,170,1731, - 1,0,0,0,172,1737,1,0,0,0,174,1743,1,0,0,0,176,1750,1,0,0,0,178,1784, - 1,0,0,0,180,1792,1,0,0,0,182,1805,1,0,0,0,184,1810,1,0,0,0,186,1821, - 1,0,0,0,188,1838,1,0,0,0,190,1840,1,0,0,0,192,1845,1,0,0,0,194,1852, - 1,0,0,0,196,1854,1,0,0,0,198,1857,1,0,0,0,200,1860,1,0,0,0,202,1874, - 1,0,0,0,204,1882,1,0,0,0,206,1908,1,0,0,0,208,1910,1,0,0,0,210,1927, - 1,0,0,0,212,1941,1,0,0,0,214,1943,1,0,0,0,216,1946,1,0,0,0,218,1949, - 1,0,0,0,220,1958,1,0,0,0,222,1978,1,0,0,0,224,1980,1,0,0,0,226,1983, - 1,0,0,0,228,1996,1,0,0,0,230,1998,1,0,0,0,232,2002,1,0,0,0,234,2010, - 1,0,0,0,236,2014,1,0,0,0,238,2023,1,0,0,0,240,2029,1,0,0,0,242,2035, - 1,0,0,0,244,2040,1,0,0,0,246,2086,1,0,0,0,248,2088,1,0,0,0,250,2096, - 1,0,0,0,252,2104,1,0,0,0,254,2112,1,0,0,0,256,2122,1,0,0,0,258,2124, - 1,0,0,0,260,2126,1,0,0,0,262,2128,1,0,0,0,264,2141,1,0,0,0,266,2149, - 1,0,0,0,268,2158,1,0,0,0,270,2162,1,0,0,0,272,2164,1,0,0,0,274,2169, - 1,0,0,0,276,2171,1,0,0,0,278,2175,1,0,0,0,280,2181,1,0,0,0,282,2189, - 1,0,0,0,284,2191,1,0,0,0,286,2194,1,0,0,0,288,2201,1,0,0,0,290,2212, - 1,0,0,0,292,2225,1,0,0,0,294,2227,1,0,0,0,296,2235,1,0,0,0,298,2239, - 1,0,0,0,300,2247,1,0,0,0,302,2249,1,0,0,0,304,2252,1,0,0,0,306,2259, - 1,0,0,0,308,2267,1,0,0,0,310,2274,1,0,0,0,312,2282,1,0,0,0,314,2290, - 1,0,0,0,316,2294,1,0,0,0,318,2296,1,0,0,0,320,2307,1,0,0,0,322,2311, - 1,0,0,0,324,2323,1,0,0,0,326,2331,1,0,0,0,328,2335,1,0,0,0,330,2347, - 1,0,0,0,332,2359,1,0,0,0,334,2364,1,0,0,0,336,2369,1,0,0,0,338,2371, - 1,0,0,0,340,2375,1,0,0,0,342,2379,1,0,0,0,344,2386,1,0,0,0,346,2388, - 1,0,0,0,348,2401,1,0,0,0,350,2440,1,0,0,0,352,2442,1,0,0,0,354,2447, - 1,0,0,0,356,2452,1,0,0,0,358,2459,1,0,0,0,360,2464,1,0,0,0,362,2469, - 1,0,0,0,364,2475,1,0,0,0,366,2477,1,0,0,0,368,2486,1,0,0,0,370,2498, - 1,0,0,0,372,2578,1,0,0,0,374,2584,1,0,0,0,376,2610,1,0,0,0,378,2612, - 1,0,0,0,380,2634,1,0,0,0,382,2639,1,0,0,0,384,2643,1,0,0,0,386,2675, - 1,0,0,0,388,2677,1,0,0,0,390,2688,1,0,0,0,392,2694,1,0,0,0,394,2696, - 1,0,0,0,396,2728,1,0,0,0,398,2735,1,0,0,0,400,2741,1,0,0,0,402,2747, - 1,0,0,0,404,2762,1,0,0,0,406,2772,1,0,0,0,408,2780,1,0,0,0,410,2783, - 1,0,0,0,412,2786,1,0,0,0,414,2789,1,0,0,0,416,2911,1,0,0,0,418,3045, - 1,0,0,0,420,3073,1,0,0,0,422,3090,1,0,0,0,424,3107,1,0,0,0,426,3109, - 1,0,0,0,428,3112,1,0,0,0,430,3138,1,0,0,0,432,3143,1,0,0,0,434,3170, - 1,0,0,0,436,3181,1,0,0,0,438,3318,1,0,0,0,440,3320,1,0,0,0,442,3343, - 1,0,0,0,444,3355,1,0,0,0,446,3360,1,0,0,0,448,3368,1,0,0,0,450,3376, - 1,0,0,0,452,3388,1,0,0,0,454,3422,1,0,0,0,456,3424,1,0,0,0,458,3442, - 1,0,0,0,460,3451,1,0,0,0,462,3481,1,0,0,0,464,3540,1,0,0,0,466,3542, - 1,0,0,0,468,3571,1,0,0,0,470,3573,1,0,0,0,472,3589,1,0,0,0,474,3601, - 1,0,0,0,476,3603,1,0,0,0,478,3607,1,0,0,0,480,3617,1,0,0,0,482,3627, - 1,0,0,0,484,3632,1,0,0,0,486,3639,1,0,0,0,488,3643,1,0,0,0,490,3662, - 1,0,0,0,492,3667,1,0,0,0,494,3669,1,0,0,0,496,3697,1,0,0,0,498,3700, - 1,0,0,0,500,3721,1,0,0,0,502,3762,1,0,0,0,504,3764,1,0,0,0,506,3811, - 1,0,0,0,508,3813,1,0,0,0,510,3838,1,0,0,0,512,3840,1,0,0,0,514,3848, - 1,0,0,0,516,3874,1,0,0,0,518,3876,1,0,0,0,520,3896,1,0,0,0,522,3898, - 1,0,0,0,524,3909,1,0,0,0,526,3922,1,0,0,0,528,3957,1,0,0,0,530,3959, - 1,0,0,0,532,3962,1,0,0,0,534,3967,1,0,0,0,536,3969,1,0,0,0,538,3991, - 1,0,0,0,540,3993,1,0,0,0,542,3997,1,0,0,0,544,4006,1,0,0,0,546,4016, - 1,0,0,0,548,4020,1,0,0,0,550,4024,1,0,0,0,552,4028,1,0,0,0,554,4104, - 1,0,0,0,556,4106,1,0,0,0,558,4109,1,0,0,0,560,4113,1,0,0,0,562,4118, - 1,0,0,0,564,4120,1,0,0,0,566,4131,1,0,0,0,568,4148,1,0,0,0,570,4164, - 1,0,0,0,572,4173,1,0,0,0,574,4188,1,0,0,0,576,4218,1,0,0,0,578,4220, - 1,0,0,0,580,4237,1,0,0,0,582,4253,1,0,0,0,584,4255,1,0,0,0,586,4274, - 1,0,0,0,588,4279,1,0,0,0,590,4294,1,0,0,0,592,4302,1,0,0,0,594,4310, - 1,0,0,0,596,4318,1,0,0,0,598,4326,1,0,0,0,600,4334,1,0,0,0,602,4342, - 1,0,0,0,604,4344,1,0,0,0,606,4354,1,0,0,0,608,4362,1,0,0,0,610,4378, - 1,0,0,0,612,4382,1,0,0,0,614,4387,1,0,0,0,616,4389,1,0,0,0,618,4400, - 1,0,0,0,620,4402,1,0,0,0,622,4420,1,0,0,0,624,4425,1,0,0,0,626,4433, - 1,0,0,0,628,4441,1,0,0,0,630,4445,1,0,0,0,632,4457,1,0,0,0,634,4462, - 1,0,0,0,636,4473,1,0,0,0,638,4480,1,0,0,0,640,4482,1,0,0,0,642,4486, - 1,0,0,0,644,4488,1,0,0,0,646,4493,1,0,0,0,648,4495,1,0,0,0,650,4497, - 1,0,0,0,652,4550,1,0,0,0,654,4717,1,0,0,0,656,4719,1,0,0,0,658,4728, - 1,0,0,0,660,4730,1,0,0,0,662,4741,1,0,0,0,664,4743,1,0,0,0,666,4748, - 1,0,0,0,668,4750,1,0,0,0,670,4752,1,0,0,0,672,4754,1,0,0,0,674,4756, - 1,0,0,0,676,4758,1,0,0,0,678,4760,1,0,0,0,680,4762,1,0,0,0,682,4764, - 1,0,0,0,684,4766,1,0,0,0,686,4768,1,0,0,0,688,4776,1,0,0,0,690,4784, - 1,0,0,0,692,4798,1,0,0,0,694,4800,1,0,0,0,696,698,3,2,1,0,697,696, - 1,0,0,0,698,701,1,0,0,0,699,697,1,0,0,0,699,700,1,0,0,0,700,702, - 1,0,0,0,701,699,1,0,0,0,702,703,5,0,0,1,703,1,1,0,0,0,704,707,3, - 4,2,0,705,707,3,10,5,0,706,704,1,0,0,0,706,705,1,0,0,0,707,709,1, - 0,0,0,708,710,5,398,0,0,709,708,1,0,0,0,709,710,1,0,0,0,710,3,1, - 0,0,0,711,721,5,119,0,0,712,714,3,6,3,0,713,712,1,0,0,0,714,717, - 1,0,0,0,715,713,1,0,0,0,715,716,1,0,0,0,716,718,1,0,0,0,717,715, - 1,0,0,0,718,722,3,10,5,0,719,720,5,284,0,0,720,722,3,362,181,0,721, - 715,1,0,0,0,721,719,1,0,0,0,722,5,1,0,0,0,723,746,5,122,0,0,724, - 746,5,138,0,0,725,746,5,88,0,0,726,728,5,37,0,0,727,729,7,0,0,0, - 728,727,1,0,0,0,728,729,1,0,0,0,729,746,1,0,0,0,730,746,5,192,0, - 0,731,746,5,21,0,0,732,746,5,10,0,0,733,746,5,275,0,0,734,746,5, - 191,0,0,735,746,5,19,0,0,736,738,5,377,0,0,737,739,5,225,0,0,738, - 737,1,0,0,0,738,739,1,0,0,0,739,741,1,0,0,0,740,742,3,8,4,0,741, - 740,1,0,0,0,741,742,1,0,0,0,742,746,1,0,0,0,743,746,5,79,0,0,744, - 746,5,78,0,0,745,723,1,0,0,0,745,724,1,0,0,0,745,725,1,0,0,0,745, - 726,1,0,0,0,745,730,1,0,0,0,745,731,1,0,0,0,745,732,1,0,0,0,745, - 733,1,0,0,0,745,734,1,0,0,0,745,735,1,0,0,0,745,736,1,0,0,0,745, - 743,1,0,0,0,745,744,1,0,0,0,746,7,1,0,0,0,747,748,7,1,0,0,748,9, - 1,0,0,0,749,821,3,362,181,0,750,821,3,12,6,0,751,821,3,16,8,0,752, - 821,3,18,9,0,753,821,3,20,10,0,754,821,3,24,12,0,755,756,5,277,0, - 0,756,757,5,320,0,0,757,760,3,474,237,0,758,759,5,387,0,0,759,761, - 3,230,115,0,760,758,1,0,0,0,760,761,1,0,0,0,761,821,1,0,0,0,762, - 821,3,28,14,0,763,764,5,86,0,0,764,765,5,139,0,0,765,767,3,480,240, - 0,766,768,3,496,248,0,767,766,1,0,0,0,767,768,1,0,0,0,768,821,1, - 0,0,0,769,770,5,365,0,0,770,771,3,480,240,0,771,773,3,394,197,0, - 772,774,3,496,248,0,773,772,1,0,0,0,773,774,1,0,0,0,774,821,1,0, - 0,0,775,821,3,396,198,0,776,778,5,203,0,0,777,779,5,436,0,0,778, - 777,1,0,0,0,778,779,1,0,0,0,779,780,1,0,0,0,780,781,5,166,0,0,781, - 786,3,480,240,0,782,784,5,17,0,0,783,782,1,0,0,0,783,784,1,0,0,0, - 784,785,1,0,0,0,785,787,3,642,321,0,786,783,1,0,0,0,786,787,1,0, - 0,0,787,788,1,0,0,0,788,789,5,370,0,0,789,790,3,458,229,0,790,791, - 5,224,0,0,791,792,3,584,292,0,792,793,3,400,200,0,793,821,1,0,0, - 0,794,795,5,249,0,0,795,796,3,642,321,0,796,797,5,139,0,0,797,798, - 3,362,181,0,798,821,1,0,0,0,799,800,5,115,0,0,800,801,3,642,321, - 0,801,802,5,370,0,0,802,803,3,298,149,0,803,821,1,0,0,0,804,805, - 5,304,0,0,805,810,3,652,326,0,806,807,7,2,0,0,807,809,3,652,326, - 0,808,806,1,0,0,0,809,812,1,0,0,0,810,808,1,0,0,0,810,811,1,0,0, - 0,811,813,1,0,0,0,812,810,1,0,0,0,813,817,5,405,0,0,814,816,9,0, - 0,0,815,814,1,0,0,0,816,819,1,0,0,0,817,818,1,0,0,0,817,815,1,0, - 0,0,818,821,1,0,0,0,819,817,1,0,0,0,820,749,1,0,0,0,820,750,1,0, - 0,0,820,751,1,0,0,0,820,752,1,0,0,0,820,753,1,0,0,0,820,754,1,0, - 0,0,820,755,1,0,0,0,820,762,1,0,0,0,820,763,1,0,0,0,820,769,1,0, - 0,0,820,775,1,0,0,0,820,776,1,0,0,0,820,794,1,0,0,0,820,799,1,0, - 0,0,820,804,1,0,0,0,821,11,1,0,0,0,822,823,5,187,0,0,823,825,5,66, - 0,0,824,826,5,188,0,0,825,824,1,0,0,0,825,826,1,0,0,0,826,827,1, - 0,0,0,827,828,5,158,0,0,828,830,5,426,0,0,829,831,5,235,0,0,830, - 829,1,0,0,0,830,831,1,0,0,0,831,832,1,0,0,0,832,833,5,166,0,0,833, - 834,5,329,0,0,834,836,3,628,314,0,835,837,3,56,28,0,836,835,1,0, - 0,0,836,837,1,0,0,0,837,13,1,0,0,0,838,840,5,134,0,0,839,841,5,204, - 0,0,840,839,1,0,0,0,840,841,1,0,0,0,841,842,1,0,0,0,842,843,5,279, - 0,0,843,844,5,399,0,0,844,845,5,426,0,0,845,846,5,400,0,0,846,15, - 1,0,0,0,847,848,5,120,0,0,848,849,5,329,0,0,849,850,3,628,314,0, - 850,851,5,341,0,0,851,853,5,426,0,0,852,854,3,14,7,0,853,852,1,0, - 0,0,853,854,1,0,0,0,854,17,1,0,0,0,855,861,5,153,0,0,856,858,5,123, - 0,0,857,856,1,0,0,0,857,858,1,0,0,0,858,859,1,0,0,0,859,860,5,329, - 0,0,860,862,3,628,314,0,861,857,1,0,0,0,861,862,1,0,0,0,862,863, - 1,0,0,0,863,864,5,139,0,0,864,866,5,426,0,0,865,867,3,426,213,0, - 866,865,1,0,0,0,866,867,1,0,0,0,867,19,1,0,0,0,868,869,5,277,0,0, - 869,870,5,103,0,0,870,873,3,22,11,0,871,872,5,278,0,0,872,874,3, - 22,11,0,873,871,1,0,0,0,873,874,1,0,0,0,874,877,1,0,0,0,875,876, - 5,387,0,0,876,878,3,230,115,0,877,875,1,0,0,0,877,878,1,0,0,0,878, - 21,1,0,0,0,879,882,3,474,237,0,880,881,5,395,0,0,881,883,3,26,13, - 0,882,880,1,0,0,0,882,883,1,0,0,0,883,23,1,0,0,0,884,885,5,277,0, - 0,885,886,5,187,0,0,886,889,3,22,11,0,887,888,5,166,0,0,888,890, - 3,474,237,0,889,887,1,0,0,0,889,890,1,0,0,0,890,893,1,0,0,0,891, - 892,5,387,0,0,892,894,3,230,115,0,893,891,1,0,0,0,893,894,1,0,0, - 0,894,25,1,0,0,0,895,898,5,426,0,0,896,897,5,395,0,0,897,899,5,426, - 0,0,898,896,1,0,0,0,898,899,1,0,0,0,899,27,1,0,0,0,900,959,3,42, - 21,0,901,959,3,46,23,0,902,959,3,48,24,0,903,959,3,438,219,0,904, - 959,3,54,27,0,905,959,3,52,26,0,906,959,3,414,207,0,907,959,3,64, - 32,0,908,959,3,72,36,0,909,959,3,138,69,0,910,959,3,160,80,0,911, - 959,3,176,88,0,912,959,3,180,90,0,913,959,3,184,92,0,914,959,3,182, - 91,0,915,959,3,174,87,0,916,959,3,178,89,0,917,959,3,146,73,0,918, - 959,3,152,76,0,919,959,3,148,74,0,920,959,3,150,75,0,921,959,3,154, - 77,0,922,959,3,156,78,0,923,959,3,158,79,0,924,959,3,66,33,0,925, - 959,3,76,38,0,926,959,3,82,41,0,927,959,3,78,39,0,928,959,3,84,42, - 0,929,959,3,86,43,0,930,959,3,88,44,0,931,959,3,90,45,0,932,959, - 3,92,46,0,933,959,3,106,53,0,934,959,3,98,49,0,935,959,3,108,54, - 0,936,959,3,100,50,0,937,959,3,94,47,0,938,959,3,96,48,0,939,959, - 3,104,52,0,940,959,3,102,51,0,941,942,5,1,0,0,942,944,7,3,0,0,943, - 945,5,431,0,0,944,943,1,0,0,0,945,946,1,0,0,0,946,944,1,0,0,0,946, - 947,1,0,0,0,947,959,1,0,0,0,948,949,5,176,0,0,949,951,5,258,0,0, - 950,952,5,426,0,0,951,950,1,0,0,0,952,953,1,0,0,0,953,951,1,0,0, - 0,953,954,1,0,0,0,954,959,1,0,0,0,955,959,3,654,327,0,956,959,3, - 440,220,0,957,959,3,442,221,0,958,900,1,0,0,0,958,901,1,0,0,0,958, - 902,1,0,0,0,958,903,1,0,0,0,958,904,1,0,0,0,958,905,1,0,0,0,958, - 906,1,0,0,0,958,907,1,0,0,0,958,908,1,0,0,0,958,909,1,0,0,0,958, - 910,1,0,0,0,958,911,1,0,0,0,958,912,1,0,0,0,958,913,1,0,0,0,958, - 914,1,0,0,0,958,915,1,0,0,0,958,916,1,0,0,0,958,917,1,0,0,0,958, - 918,1,0,0,0,958,919,1,0,0,0,958,920,1,0,0,0,958,921,1,0,0,0,958, - 922,1,0,0,0,958,923,1,0,0,0,958,924,1,0,0,0,958,925,1,0,0,0,958, - 926,1,0,0,0,958,927,1,0,0,0,958,928,1,0,0,0,958,929,1,0,0,0,958, - 930,1,0,0,0,958,931,1,0,0,0,958,932,1,0,0,0,958,933,1,0,0,0,958, - 934,1,0,0,0,958,935,1,0,0,0,958,936,1,0,0,0,958,937,1,0,0,0,958, - 938,1,0,0,0,958,939,1,0,0,0,958,940,1,0,0,0,958,941,1,0,0,0,958, - 948,1,0,0,0,958,955,1,0,0,0,958,956,1,0,0,0,958,957,1,0,0,0,959, - 29,1,0,0,0,960,961,5,151,0,0,961,962,5,117,0,0,962,31,1,0,0,0,963, - 964,5,151,0,0,964,965,5,216,0,0,965,966,5,117,0,0,966,33,1,0,0,0, - 967,968,7,4,0,0,968,35,1,0,0,0,969,970,3,666,333,0,970,971,5,284, - 0,0,971,37,1,0,0,0,972,973,3,668,334,0,973,974,5,284,0,0,974,39, - 1,0,0,0,975,976,5,321,0,0,976,977,5,17,0,0,977,978,5,92,0,0,978, - 41,1,0,0,0,979,981,5,58,0,0,980,982,5,273,0,0,981,980,1,0,0,0,981, - 982,1,0,0,0,982,983,1,0,0,0,983,985,3,70,35,0,984,986,3,32,16,0, - 985,984,1,0,0,0,985,986,1,0,0,0,986,987,1,0,0,0,987,989,3,476,238, - 0,988,990,3,50,25,0,989,988,1,0,0,0,989,990,1,0,0,0,990,992,1,0, - 0,0,991,993,3,426,213,0,992,991,1,0,0,0,992,993,1,0,0,0,993,996, - 1,0,0,0,994,995,5,196,0,0,995,997,5,426,0,0,996,994,1,0,0,0,996, - 997,1,0,0,0,997,1001,1,0,0,0,998,999,5,387,0,0,999,1000,5,76,0,0, - 1000,1002,3,230,115,0,1001,998,1,0,0,0,1001,1002,1,0,0,0,1002,1020, - 1,0,0,0,1003,1004,5,58,0,0,1004,1005,5,273,0,0,1005,1007,3,70,35, - 0,1006,1008,3,32,16,0,1007,1006,1,0,0,0,1007,1008,1,0,0,0,1008,1009, - 1,0,0,0,1009,1011,3,476,238,0,1010,1012,3,50,25,0,1011,1010,1,0, - 0,0,1011,1012,1,0,0,0,1012,1013,1,0,0,0,1013,1017,3,44,22,0,1014, - 1015,5,387,0,0,1015,1016,5,76,0,0,1016,1018,3,230,115,0,1017,1014, - 1,0,0,0,1017,1018,1,0,0,0,1018,1020,1,0,0,0,1019,979,1,0,0,0,1019, - 1003,1,0,0,0,1020,43,1,0,0,0,1021,1022,5,370,0,0,1022,1023,3,474, - 237,0,1023,45,1,0,0,0,1024,1025,5,368,0,0,1025,1026,3,474,237,0, - 1026,47,1,0,0,0,1027,1028,5,101,0,0,1028,1030,3,70,35,0,1029,1031, - 3,30,15,0,1030,1029,1,0,0,0,1030,1031,1,0,0,0,1031,1032,1,0,0,0, - 1032,1034,3,474,237,0,1033,1035,3,34,17,0,1034,1033,1,0,0,0,1034, - 1035,1,0,0,0,1035,49,1,0,0,0,1036,1037,5,47,0,0,1037,1038,5,426, - 0,0,1038,51,1,0,0,0,1039,1041,5,351,0,0,1040,1042,5,329,0,0,1041, - 1040,1,0,0,0,1041,1042,1,0,0,0,1042,1043,1,0,0,0,1043,1049,3,628, - 314,0,1044,1045,5,46,0,0,1045,1046,5,399,0,0,1046,1047,3,254,127, - 0,1047,1048,5,400,0,0,1048,1050,1,0,0,0,1049,1044,1,0,0,0,1049,1050, - 1,0,0,0,1050,1052,1,0,0,0,1051,1053,5,135,0,0,1052,1051,1,0,0,0, - 1052,1053,1,0,0,0,1053,53,1,0,0,0,1054,1055,5,101,0,0,1055,1057, - 5,329,0,0,1056,1058,3,30,15,0,1057,1056,1,0,0,0,1057,1058,1,0,0, - 0,1058,1059,1,0,0,0,1059,1061,3,480,240,0,1060,1062,5,255,0,0,1061, - 1060,1,0,0,0,1061,1062,1,0,0,0,1062,1064,1,0,0,0,1063,1065,3,14, - 7,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,55,1,0,0,0,1066,1067, - 5,160,0,0,1067,1068,5,426,0,0,1068,1069,5,301,0,0,1069,1070,5,426, - 0,0,1070,57,1,0,0,0,1071,1074,3,642,321,0,1072,1073,5,395,0,0,1073, - 1075,3,642,321,0,1074,1072,1,0,0,0,1074,1075,1,0,0,0,1075,1089,1, - 0,0,0,1076,1086,3,642,321,0,1077,1082,5,395,0,0,1078,1083,5,104, - 0,0,1079,1083,5,175,0,0,1080,1083,5,375,0,0,1081,1083,3,642,321, - 0,1082,1078,1,0,0,0,1082,1079,1,0,0,0,1082,1080,1,0,0,0,1082,1081, - 1,0,0,0,1083,1085,1,0,0,0,1084,1077,1,0,0,0,1085,1088,1,0,0,0,1086, - 1084,1,0,0,0,1086,1087,1,0,0,0,1087,1090,1,0,0,0,1088,1086,1,0,0, - 0,1089,1076,1,0,0,0,1089,1090,1,0,0,0,1090,59,1,0,0,0,1091,1093, - 3,58,29,0,1092,1094,3,630,315,0,1093,1092,1,0,0,0,1093,1094,1,0, - 0,0,1094,61,1,0,0,0,1095,1097,3,478,239,0,1096,1098,3,630,315,0, - 1097,1096,1,0,0,0,1097,1098,1,0,0,0,1098,1100,1,0,0,0,1099,1101, - 3,262,131,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,63,1,0,0,0, - 1102,1125,7,5,0,0,1103,1105,3,70,35,0,1104,1106,5,122,0,0,1105,1104, - 1,0,0,0,1105,1106,1,0,0,0,1106,1107,1,0,0,0,1107,1108,3,474,237, - 0,1108,1126,1,0,0,0,1109,1111,5,69,0,0,1110,1112,5,122,0,0,1111, - 1110,1,0,0,0,1111,1112,1,0,0,0,1112,1113,1,0,0,0,1113,1126,3,474, - 237,0,1114,1116,5,141,0,0,1115,1117,5,122,0,0,1116,1115,1,0,0,0, - 1116,1117,1,0,0,0,1117,1118,1,0,0,0,1118,1126,3,560,280,0,1119,1122, - 5,138,0,0,1120,1122,5,122,0,0,1121,1119,1,0,0,0,1121,1120,1,0,0, - 0,1122,1123,1,0,0,0,1123,1126,3,62,31,0,1124,1126,3,62,31,0,1125, - 1103,1,0,0,0,1125,1109,1,0,0,0,1125,1114,1,0,0,0,1125,1121,1,0,0, - 0,1125,1124,1,0,0,0,1126,65,1,0,0,0,1127,1128,5,10,0,0,1128,1129, - 5,329,0,0,1129,1142,3,628,314,0,1130,1131,5,52,0,0,1131,1138,5,319, - 0,0,1132,1139,5,215,0,0,1133,1134,5,134,0,0,1134,1136,5,46,0,0,1135, - 1137,3,254,127,0,1136,1135,1,0,0,0,1136,1137,1,0,0,0,1137,1139,1, - 0,0,0,1138,1132,1,0,0,0,1138,1133,1,0,0,0,1138,1139,1,0,0,0,1139, - 1143,1,0,0,0,1140,1141,5,33,0,0,1141,1143,5,204,0,0,1142,1130,1, - 0,0,0,1142,1140,1,0,0,0,1143,67,1,0,0,0,1144,1145,7,6,0,0,1145,69, - 1,0,0,0,1146,1147,7,7,0,0,1147,71,1,0,0,0,1148,1149,5,308,0,0,1149, - 1152,7,8,0,0,1150,1151,5,184,0,0,1151,1153,3,194,97,0,1152,1150, - 1,0,0,0,1152,1153,1,0,0,0,1153,1332,1,0,0,0,1154,1156,5,308,0,0, - 1155,1157,5,122,0,0,1156,1155,1,0,0,0,1156,1157,1,0,0,0,1157,1158, - 1,0,0,0,1158,1162,5,330,0,0,1159,1160,3,68,34,0,1160,1161,3,474, - 237,0,1161,1163,1,0,0,0,1162,1159,1,0,0,0,1162,1163,1,0,0,0,1163, - 1165,1,0,0,0,1164,1166,3,74,37,0,1165,1164,1,0,0,0,1165,1166,1,0, - 0,0,1166,1332,1,0,0,0,1167,1168,5,308,0,0,1168,1172,5,379,0,0,1169, - 1170,3,68,34,0,1170,1171,3,474,237,0,1171,1173,1,0,0,0,1172,1169, - 1,0,0,0,1172,1173,1,0,0,0,1173,1177,1,0,0,0,1174,1175,5,184,0,0, - 1175,1178,3,194,97,0,1176,1178,3,194,97,0,1177,1174,1,0,0,0,1177, - 1176,1,0,0,0,1177,1178,1,0,0,0,1178,1332,1,0,0,0,1179,1180,5,308, - 0,0,1180,1181,5,202,0,0,1181,1185,5,379,0,0,1182,1183,3,68,34,0, - 1183,1184,3,474,237,0,1184,1186,1,0,0,0,1185,1182,1,0,0,0,1185,1186, - 1,0,0,0,1186,1190,1,0,0,0,1187,1188,5,184,0,0,1188,1191,3,194,97, - 0,1189,1191,3,194,97,0,1190,1187,1,0,0,0,1190,1189,1,0,0,0,1190, - 1191,1,0,0,0,1191,1332,1,0,0,0,1192,1194,5,308,0,0,1193,1195,5,315, - 0,0,1194,1193,1,0,0,0,1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197, - 5,46,0,0,1197,1198,3,68,34,0,1198,1202,3,478,239,0,1199,1200,3,68, - 34,0,1200,1201,3,474,237,0,1201,1203,1,0,0,0,1202,1199,1,0,0,0,1202, - 1203,1,0,0,0,1203,1207,1,0,0,0,1204,1205,5,184,0,0,1205,1208,3,194, - 97,0,1206,1208,3,194,97,0,1207,1204,1,0,0,0,1207,1206,1,0,0,0,1207, - 1208,1,0,0,0,1208,1332,1,0,0,0,1209,1210,5,308,0,0,1210,1213,5,142, - 0,0,1211,1212,5,184,0,0,1212,1214,3,560,280,0,1213,1211,1,0,0,0, - 1213,1214,1,0,0,0,1214,1332,1,0,0,0,1215,1216,5,308,0,0,1216,1217, - 5,239,0,0,1217,1219,3,478,239,0,1218,1220,3,630,315,0,1219,1218, - 1,0,0,0,1219,1220,1,0,0,0,1220,1222,1,0,0,0,1221,1223,3,496,248, - 0,1222,1221,1,0,0,0,1222,1223,1,0,0,0,1223,1225,1,0,0,0,1224,1226, - 3,544,272,0,1225,1224,1,0,0,0,1225,1226,1,0,0,0,1226,1228,1,0,0, - 0,1227,1229,3,388,194,0,1228,1227,1,0,0,0,1228,1229,1,0,0,0,1229, - 1332,1,0,0,0,1230,1231,5,308,0,0,1231,1237,5,58,0,0,1232,1233,3, - 70,35,0,1233,1234,3,474,237,0,1234,1238,1,0,0,0,1235,1236,5,329, - 0,0,1236,1238,3,480,240,0,1237,1232,1,0,0,0,1237,1235,1,0,0,0,1238, - 1332,1,0,0,0,1239,1240,5,308,0,0,1240,1241,5,329,0,0,1241,1245,5, - 122,0,0,1242,1243,3,68,34,0,1243,1244,3,474,237,0,1244,1246,1,0, - 0,0,1245,1242,1,0,0,0,1245,1246,1,0,0,0,1246,1247,1,0,0,0,1247,1248, - 5,184,0,0,1248,1250,3,194,97,0,1249,1251,3,630,315,0,1250,1249,1, - 0,0,0,1250,1251,1,0,0,0,1251,1332,1,0,0,0,1252,1253,5,308,0,0,1253, - 1254,5,332,0,0,1254,1258,3,480,240,0,1255,1256,5,399,0,0,1256,1257, - 5,426,0,0,1257,1259,5,400,0,0,1258,1255,1,0,0,0,1258,1259,1,0,0, - 0,1259,1332,1,0,0,0,1260,1261,5,308,0,0,1261,1273,5,191,0,0,1262, - 1263,3,70,35,0,1263,1265,3,474,237,0,1264,1266,5,122,0,0,1265,1264, - 1,0,0,0,1265,1266,1,0,0,0,1266,1274,1,0,0,0,1267,1269,3,60,30,0, - 1268,1267,1,0,0,0,1268,1269,1,0,0,0,1269,1271,1,0,0,0,1270,1272, - 5,122,0,0,1271,1270,1,0,0,0,1271,1272,1,0,0,0,1272,1274,1,0,0,0, - 1273,1262,1,0,0,0,1273,1268,1,0,0,0,1274,1332,1,0,0,0,1275,1276, - 5,308,0,0,1276,1303,5,50,0,0,1277,1278,5,51,0,0,1278,1279,5,405, - 0,0,1279,1304,5,431,0,0,1280,1281,3,70,35,0,1281,1282,3,474,237, - 0,1282,1287,1,0,0,0,1283,1285,3,60,30,0,1284,1283,1,0,0,0,1284,1285, - 1,0,0,0,1285,1287,1,0,0,0,1286,1280,1,0,0,0,1286,1284,1,0,0,0,1287, - 1289,1,0,0,0,1288,1290,3,408,204,0,1289,1288,1,0,0,0,1289,1290,1, - 0,0,0,1290,1292,1,0,0,0,1291,1293,3,410,205,0,1292,1291,1,0,0,0, - 1292,1293,1,0,0,0,1293,1295,1,0,0,0,1294,1296,3,412,206,0,1295,1294, - 1,0,0,0,1295,1296,1,0,0,0,1296,1298,1,0,0,0,1297,1299,3,544,272, - 0,1298,1297,1,0,0,0,1298,1299,1,0,0,0,1299,1301,1,0,0,0,1300,1302, - 3,388,194,0,1301,1300,1,0,0,0,1301,1302,1,0,0,0,1302,1304,1,0,0, - 0,1303,1277,1,0,0,0,1303,1286,1,0,0,0,1304,1332,1,0,0,0,1305,1306, - 5,308,0,0,1306,1332,5,346,0,0,1307,1308,5,308,0,0,1308,1309,5,54, - 0,0,1309,1332,5,426,0,0,1310,1311,5,308,0,0,1311,1315,5,280,0,0, - 1312,1313,5,243,0,0,1313,1316,3,642,321,0,1314,1316,5,244,0,0,1315, - 1312,1,0,0,0,1315,1314,1,0,0,0,1316,1332,1,0,0,0,1317,1318,5,308, - 0,0,1318,1332,5,70,0,0,1319,1321,5,308,0,0,1320,1322,5,138,0,0,1321, - 1320,1,0,0,0,1321,1322,1,0,0,0,1322,1323,1,0,0,0,1323,1324,7,9,0, - 0,1324,1325,5,224,0,0,1325,1329,3,480,240,0,1326,1327,3,68,34,0, - 1327,1328,3,474,237,0,1328,1330,1,0,0,0,1329,1326,1,0,0,0,1329,1330, - 1,0,0,0,1330,1332,1,0,0,0,1331,1148,1,0,0,0,1331,1154,1,0,0,0,1331, - 1167,1,0,0,0,1331,1179,1,0,0,0,1331,1192,1,0,0,0,1331,1209,1,0,0, - 0,1331,1215,1,0,0,0,1331,1230,1,0,0,0,1331,1239,1,0,0,0,1331,1252, - 1,0,0,0,1331,1260,1,0,0,0,1331,1275,1,0,0,0,1331,1305,1,0,0,0,1331, - 1307,1,0,0,0,1331,1310,1,0,0,0,1331,1317,1,0,0,0,1331,1319,1,0,0, - 0,1332,73,1,0,0,0,1333,1334,5,384,0,0,1334,1335,3,642,321,0,1335, - 1336,5,405,0,0,1336,1337,5,426,0,0,1337,1342,1,0,0,0,1338,1339,5, - 184,0,0,1339,1342,3,194,97,0,1340,1342,3,194,97,0,1341,1333,1,0, - 0,0,1341,1338,1,0,0,0,1341,1340,1,0,0,0,1342,75,1,0,0,0,1343,1344, - 5,190,0,0,1344,1345,5,329,0,0,1345,1346,3,628,314,0,1346,1347,3, - 80,40,0,1347,77,1,0,0,0,1348,1349,5,190,0,0,1349,1350,3,70,35,0, - 1350,1351,3,474,237,0,1351,1352,3,80,40,0,1352,79,1,0,0,0,1353,1354, - 7,10,0,0,1354,81,1,0,0,0,1355,1356,5,361,0,0,1356,1357,5,329,0,0, - 1357,1358,3,628,314,0,1358,83,1,0,0,0,1359,1360,5,361,0,0,1360,1361, - 3,70,35,0,1361,1362,3,474,237,0,1362,85,1,0,0,0,1363,1364,5,58,0, - 0,1364,1365,5,287,0,0,1365,1366,3,642,321,0,1366,87,1,0,0,0,1367, - 1368,5,101,0,0,1368,1369,5,287,0,0,1369,1370,3,642,321,0,1370,89, - 1,0,0,0,1371,1372,5,143,0,0,1372,1374,3,118,59,0,1373,1375,3,112, - 56,0,1374,1373,1,0,0,0,1374,1375,1,0,0,0,1375,1376,1,0,0,0,1376, - 1377,5,341,0,0,1377,1379,3,124,62,0,1378,1380,3,130,65,0,1379,1378, - 1,0,0,0,1379,1380,1,0,0,0,1380,91,1,0,0,0,1381,1383,5,283,0,0,1382, - 1384,3,132,66,0,1383,1382,1,0,0,0,1383,1384,1,0,0,0,1384,1385,1, - 0,0,0,1385,1387,3,118,59,0,1386,1388,3,112,56,0,1387,1386,1,0,0, - 0,1387,1388,1,0,0,0,1388,1389,1,0,0,0,1389,1390,5,139,0,0,1390,1391, - 3,124,62,0,1391,93,1,0,0,0,1392,1394,5,143,0,0,1393,1395,5,287,0, - 0,1394,1393,1,0,0,0,1394,1395,1,0,0,0,1395,1396,1,0,0,0,1396,1401, - 3,642,321,0,1397,1398,5,397,0,0,1398,1400,3,642,321,0,1399,1397, - 1,0,0,0,1400,1403,1,0,0,0,1401,1399,1,0,0,0,1401,1402,1,0,0,0,1402, - 1404,1,0,0,0,1403,1401,1,0,0,0,1404,1405,5,341,0,0,1405,1407,3,124, - 62,0,1406,1408,3,136,68,0,1407,1406,1,0,0,0,1407,1408,1,0,0,0,1408, - 95,1,0,0,0,1409,1411,5,283,0,0,1410,1412,3,134,67,0,1411,1410,1, - 0,0,0,1411,1412,1,0,0,0,1412,1414,1,0,0,0,1413,1415,5,287,0,0,1414, - 1413,1,0,0,0,1414,1415,1,0,0,0,1415,1416,1,0,0,0,1416,1421,3,642, - 321,0,1417,1418,5,397,0,0,1418,1420,3,642,321,0,1419,1417,1,0,0, - 0,1420,1423,1,0,0,0,1421,1419,1,0,0,0,1421,1422,1,0,0,0,1422,1424, - 1,0,0,0,1423,1421,1,0,0,0,1424,1425,5,139,0,0,1425,1426,3,124,62, - 0,1426,97,1,0,0,0,1427,1428,5,308,0,0,1428,1429,5,287,0,0,1429,1430, - 5,143,0,0,1430,1431,3,126,63,0,1431,99,1,0,0,0,1432,1433,5,308,0, - 0,1433,1434,5,288,0,0,1434,101,1,0,0,0,1435,1436,5,308,0,0,1436, - 1437,5,62,0,0,1437,1438,5,288,0,0,1438,103,1,0,0,0,1439,1440,5,304, - 0,0,1440,1444,5,287,0,0,1441,1445,5,7,0,0,1442,1445,5,213,0,0,1443, - 1445,3,642,321,0,1444,1441,1,0,0,0,1444,1442,1,0,0,0,1444,1443,1, - 0,0,0,1445,105,1,0,0,0,1446,1447,5,308,0,0,1447,1449,5,143,0,0,1448, - 1450,3,126,63,0,1449,1448,1,0,0,0,1449,1450,1,0,0,0,1450,1453,1, - 0,0,0,1451,1452,5,224,0,0,1452,1454,3,110,55,0,1453,1451,1,0,0,0, - 1453,1454,1,0,0,0,1454,107,1,0,0,0,1455,1456,5,308,0,0,1456,1457, - 5,252,0,0,1457,1458,3,642,321,0,1458,109,1,0,0,0,1459,1462,5,7,0, - 0,1460,1462,3,116,58,0,1461,1459,1,0,0,0,1461,1460,1,0,0,0,1462, - 111,1,0,0,0,1463,1464,5,224,0,0,1464,1465,3,114,57,0,1465,113,1, - 0,0,0,1466,1467,3,70,35,0,1467,1468,3,474,237,0,1468,1478,1,0,0, - 0,1469,1471,5,329,0,0,1470,1469,1,0,0,0,1470,1471,1,0,0,0,1471,1472, - 1,0,0,0,1472,1478,3,628,314,0,1473,1474,5,366,0,0,1474,1478,5,426, - 0,0,1475,1476,5,303,0,0,1476,1478,3,642,321,0,1477,1466,1,0,0,0, - 1477,1470,1,0,0,0,1477,1473,1,0,0,0,1477,1475,1,0,0,0,1478,115,1, - 0,0,0,1479,1480,3,70,35,0,1480,1481,3,474,237,0,1481,1500,1,0,0, - 0,1482,1484,5,329,0,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484,1485, - 1,0,0,0,1485,1490,3,480,240,0,1486,1487,5,399,0,0,1487,1488,3,254, - 127,0,1488,1489,5,400,0,0,1489,1491,1,0,0,0,1490,1486,1,0,0,0,1490, - 1491,1,0,0,0,1491,1493,1,0,0,0,1492,1494,3,630,315,0,1493,1492,1, - 0,0,0,1493,1494,1,0,0,0,1494,1500,1,0,0,0,1495,1496,5,366,0,0,1496, - 1500,5,426,0,0,1497,1498,5,303,0,0,1498,1500,3,642,321,0,1499,1479, - 1,0,0,0,1499,1483,1,0,0,0,1499,1495,1,0,0,0,1499,1497,1,0,0,0,1500, - 117,1,0,0,0,1501,1506,3,120,60,0,1502,1503,5,397,0,0,1503,1505,3, - 120,60,0,1504,1502,1,0,0,0,1505,1508,1,0,0,0,1506,1504,1,0,0,0,1506, - 1507,1,0,0,0,1507,119,1,0,0,0,1508,1506,1,0,0,0,1509,1514,3,122, - 61,0,1510,1511,5,399,0,0,1511,1512,3,254,127,0,1512,1513,5,400,0, - 0,1513,1515,1,0,0,0,1514,1510,1,0,0,0,1514,1515,1,0,0,0,1515,121, - 1,0,0,0,1516,1517,7,11,0,0,1517,123,1,0,0,0,1518,1523,3,126,63,0, - 1519,1520,5,397,0,0,1520,1522,3,126,63,0,1521,1519,1,0,0,0,1522, - 1525,1,0,0,0,1523,1521,1,0,0,0,1523,1524,1,0,0,0,1524,125,1,0,0, - 0,1525,1523,1,0,0,0,1526,1527,5,369,0,0,1527,1533,3,646,323,0,1528, - 1529,5,144,0,0,1529,1533,3,646,323,0,1530,1531,5,287,0,0,1531,1533, - 3,642,321,0,1532,1526,1,0,0,0,1532,1528,1,0,0,0,1532,1530,1,0,0, - 0,1533,127,1,0,0,0,1534,1535,5,369,0,0,1535,1540,3,646,323,0,1536, - 1537,5,287,0,0,1537,1540,3,642,321,0,1538,1540,3,642,321,0,1539, - 1534,1,0,0,0,1539,1536,1,0,0,0,1539,1538,1,0,0,0,1540,129,1,0,0, - 0,1541,1542,5,387,0,0,1542,1543,5,143,0,0,1543,1544,5,227,0,0,1544, - 131,1,0,0,0,1545,1546,5,143,0,0,1546,1547,5,227,0,0,1547,1548,5, - 134,0,0,1548,133,1,0,0,0,1549,1550,5,5,0,0,1550,1551,5,227,0,0,1551, - 1552,5,134,0,0,1552,135,1,0,0,0,1553,1554,5,387,0,0,1554,1555,5, - 5,0,0,1555,1556,5,227,0,0,1556,137,1,0,0,0,1557,1559,5,212,0,0,1558, - 1560,5,276,0,0,1559,1558,1,0,0,0,1559,1560,1,0,0,0,1560,1561,1,0, - 0,0,1561,1562,5,329,0,0,1562,1568,3,480,240,0,1563,1564,7,12,0,0, - 1564,1566,5,239,0,0,1565,1567,3,634,317,0,1566,1565,1,0,0,0,1566, - 1567,1,0,0,0,1567,1569,1,0,0,0,1568,1563,1,0,0,0,1568,1569,1,0,0, - 0,1569,139,1,0,0,0,1570,1575,3,142,71,0,1571,1572,5,397,0,0,1572, - 1574,3,142,71,0,1573,1571,1,0,0,0,1574,1577,1,0,0,0,1575,1573,1, - 0,0,0,1575,1576,1,0,0,0,1576,141,1,0,0,0,1577,1575,1,0,0,0,1578, - 1579,3,144,72,0,1579,1580,5,426,0,0,1580,143,1,0,0,0,1581,1582,7, - 13,0,0,1582,145,1,0,0,0,1583,1585,5,58,0,0,1584,1586,5,333,0,0,1585, - 1584,1,0,0,0,1585,1586,1,0,0,0,1586,1587,1,0,0,0,1587,1588,5,141, - 0,0,1588,1589,3,558,279,0,1589,1590,5,17,0,0,1590,1593,5,426,0,0, - 1591,1592,5,370,0,0,1592,1594,3,140,70,0,1593,1591,1,0,0,0,1593, - 1594,1,0,0,0,1594,147,1,0,0,0,1595,1597,5,101,0,0,1596,1598,5,333, - 0,0,1597,1596,1,0,0,0,1597,1598,1,0,0,0,1598,1599,1,0,0,0,1599,1601, - 5,141,0,0,1600,1602,3,30,15,0,1601,1600,1,0,0,0,1601,1602,1,0,0, - 0,1602,1603,1,0,0,0,1603,1604,3,560,280,0,1604,149,1,0,0,0,1605, - 1606,5,271,0,0,1606,1607,7,14,0,0,1607,151,1,0,0,0,1608,1609,5,58, - 0,0,1609,1610,5,333,0,0,1610,1611,5,194,0,0,1611,1612,5,432,0,0, - 1612,1614,5,399,0,0,1613,1615,3,248,124,0,1614,1613,1,0,0,0,1614, - 1615,1,0,0,0,1615,1616,1,0,0,0,1616,1617,5,400,0,0,1617,1618,3,584, - 292,0,1618,153,1,0,0,0,1619,1620,5,101,0,0,1620,1621,5,333,0,0,1621, - 1623,5,194,0,0,1622,1624,3,30,15,0,1623,1622,1,0,0,0,1623,1624,1, - 0,0,0,1624,1625,1,0,0,0,1625,1626,5,432,0,0,1626,155,1,0,0,0,1627, - 1628,5,58,0,0,1628,1629,5,155,0,0,1629,1630,3,642,321,0,1630,1631, - 5,224,0,0,1631,1632,5,329,0,0,1632,1633,3,480,240,0,1633,1634,3, - 266,133,0,1634,1635,5,17,0,0,1635,1639,5,426,0,0,1636,1637,5,387, - 0,0,1637,1638,5,84,0,0,1638,1640,5,265,0,0,1639,1636,1,0,0,0,1639, - 1640,1,0,0,0,1640,1643,1,0,0,0,1641,1642,5,150,0,0,1642,1644,3,226, - 113,0,1643,1641,1,0,0,0,1643,1644,1,0,0,0,1644,1648,1,0,0,0,1645, - 1646,5,154,0,0,1646,1647,5,329,0,0,1647,1649,3,480,240,0,1648,1645, - 1,0,0,0,1648,1649,1,0,0,0,1649,1653,1,0,0,0,1650,1651,5,238,0,0, - 1651,1652,5,32,0,0,1652,1654,3,266,133,0,1653,1650,1,0,0,0,1653, - 1654,1,0,0,0,1654,1659,1,0,0,0,1655,1657,3,222,111,0,1656,1655,1, - 0,0,0,1656,1657,1,0,0,0,1657,1658,1,0,0,0,1658,1660,3,246,123,0, - 1659,1656,1,0,0,0,1659,1660,1,0,0,0,1660,1662,1,0,0,0,1661,1663, - 3,426,213,0,1662,1661,1,0,0,0,1662,1663,1,0,0,0,1663,1665,1,0,0, - 0,1664,1666,3,224,112,0,1665,1664,1,0,0,0,1665,1666,1,0,0,0,1666, - 1668,1,0,0,0,1667,1669,3,196,98,0,1668,1667,1,0,0,0,1668,1669,1, - 0,0,0,1669,157,1,0,0,0,1670,1671,5,101,0,0,1671,1673,5,155,0,0,1672, - 1674,3,30,15,0,1673,1672,1,0,0,0,1673,1674,1,0,0,0,1674,1675,1,0, - 0,0,1675,1676,3,642,321,0,1676,1677,5,224,0,0,1677,1678,3,480,240, - 0,1678,159,1,0,0,0,1679,1682,5,58,0,0,1680,1681,5,228,0,0,1681,1683, - 5,278,0,0,1682,1680,1,0,0,0,1682,1683,1,0,0,0,1683,1684,1,0,0,0, - 1684,1686,5,378,0,0,1685,1687,3,32,16,0,1686,1685,1,0,0,0,1686,1687, - 1,0,0,0,1687,1688,1,0,0,0,1688,1693,3,486,243,0,1689,1690,5,399, - 0,0,1690,1691,3,306,153,0,1691,1692,5,400,0,0,1692,1694,1,0,0,0, - 1693,1689,1,0,0,0,1693,1694,1,0,0,0,1694,1696,1,0,0,0,1695,1697, - 3,196,98,0,1696,1695,1,0,0,0,1696,1697,1,0,0,0,1697,1699,1,0,0,0, - 1698,1700,3,162,81,0,1699,1698,1,0,0,0,1699,1700,1,0,0,0,1700,1702, - 1,0,0,0,1701,1703,3,224,112,0,1702,1701,1,0,0,0,1702,1703,1,0,0, - 0,1703,1704,1,0,0,0,1704,1705,5,17,0,0,1705,1706,3,382,191,0,1706, - 161,1,0,0,0,1707,1708,5,238,0,0,1708,1714,5,224,0,0,1709,1710,5, - 399,0,0,1710,1715,3,254,127,0,1711,1712,5,316,0,0,1712,1713,5,399, - 0,0,1713,1715,3,204,102,0,1714,1709,1,0,0,0,1714,1711,1,0,0,0,1715, - 1716,1,0,0,0,1716,1717,5,400,0,0,1717,163,1,0,0,0,1718,1721,3,166, - 83,0,1719,1721,3,168,84,0,1720,1718,1,0,0,0,1720,1719,1,0,0,0,1721, - 165,1,0,0,0,1722,1723,5,42,0,0,1723,1724,5,224,0,0,1724,1725,5,399, - 0,0,1725,1726,3,254,127,0,1726,1727,5,400,0,0,1727,167,1,0,0,0,1728, - 1729,3,170,85,0,1729,1730,3,172,86,0,1730,169,1,0,0,0,1731,1732, - 5,98,0,0,1732,1733,5,224,0,0,1733,1734,5,399,0,0,1734,1735,3,254, - 127,0,1735,1736,5,400,0,0,1736,171,1,0,0,0,1737,1738,5,315,0,0,1738, - 1739,5,224,0,0,1739,1740,5,399,0,0,1740,1741,3,254,127,0,1741,1742, - 5,400,0,0,1742,173,1,0,0,0,1743,1744,5,101,0,0,1744,1746,5,378,0, - 0,1745,1747,3,30,15,0,1746,1745,1,0,0,0,1746,1747,1,0,0,0,1747,1748, - 1,0,0,0,1748,1749,3,484,242,0,1749,175,1,0,0,0,1750,1751,5,58,0, - 0,1751,1752,5,202,0,0,1752,1754,5,378,0,0,1753,1755,3,32,16,0,1754, - 1753,1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0,0,0,1756,1758,3,486, - 243,0,1757,1759,3,38,19,0,1758,1757,1,0,0,0,1758,1759,1,0,0,0,1759, - 1761,1,0,0,0,1760,1762,3,196,98,0,1761,1760,1,0,0,0,1761,1762,1, - 0,0,0,1762,1764,1,0,0,0,1763,1765,3,162,81,0,1764,1763,1,0,0,0,1764, - 1765,1,0,0,0,1765,1767,1,0,0,0,1766,1768,3,164,82,0,1767,1766,1, - 0,0,0,1767,1768,1,0,0,0,1768,1770,1,0,0,0,1769,1771,3,222,111,0, - 1770,1769,1,0,0,0,1770,1771,1,0,0,0,1771,1773,1,0,0,0,1772,1774, - 3,246,123,0,1773,1772,1,0,0,0,1773,1774,1,0,0,0,1774,1776,1,0,0, - 0,1775,1777,3,426,213,0,1776,1775,1,0,0,0,1776,1777,1,0,0,0,1777, - 1779,1,0,0,0,1778,1780,3,224,112,0,1779,1778,1,0,0,0,1779,1780,1, - 0,0,0,1780,1781,1,0,0,0,1781,1782,5,17,0,0,1782,1783,3,382,191,0, - 1783,177,1,0,0,0,1784,1785,5,101,0,0,1785,1786,5,202,0,0,1786,1788, - 5,378,0,0,1787,1789,3,30,15,0,1788,1787,1,0,0,0,1788,1789,1,0,0, - 0,1789,1790,1,0,0,0,1790,1791,3,484,242,0,1791,179,1,0,0,0,1792, - 1793,5,58,0,0,1793,1794,5,293,0,0,1794,1795,5,258,0,0,1795,1796, - 3,642,321,0,1796,1798,3,188,94,0,1797,1799,3,190,95,0,1798,1797, - 1,0,0,0,1798,1799,1,0,0,0,1799,1801,1,0,0,0,1800,1802,3,270,135, - 0,1801,1800,1,0,0,0,1801,1802,1,0,0,0,1802,1803,1,0,0,0,1803,1804, - 3,192,96,0,1804,181,1,0,0,0,1805,1806,5,101,0,0,1806,1807,5,293, - 0,0,1807,1808,5,258,0,0,1808,1809,3,642,321,0,1809,183,1,0,0,0,1810, - 1811,5,9,0,0,1811,1812,5,293,0,0,1812,1813,5,258,0,0,1813,1814,3, - 642,321,0,1814,1815,3,186,93,0,1815,185,1,0,0,0,1816,1822,3,188, - 94,0,1817,1822,3,190,95,0,1818,1822,3,270,135,0,1819,1822,3,192, - 96,0,1820,1822,5,115,0,0,1821,1816,1,0,0,0,1821,1817,1,0,0,0,1821, - 1818,1,0,0,0,1821,1819,1,0,0,0,1821,1820,1,0,0,0,1822,187,1,0,0, - 0,1823,1824,5,59,0,0,1824,1839,5,426,0,0,1825,1827,5,111,0,0,1826, - 1828,5,431,0,0,1827,1826,1,0,0,0,1827,1828,1,0,0,0,1828,1829,1,0, - 0,0,1829,1836,3,582,291,0,1830,1834,5,20,0,0,1831,1832,5,223,0,0, - 1832,1834,5,32,0,0,1833,1830,1,0,0,0,1833,1831,1,0,0,0,1834,1835, - 1,0,0,0,1835,1837,5,426,0,0,1836,1833,1,0,0,0,1836,1837,1,0,0,0, - 1837,1839,1,0,0,0,1838,1823,1,0,0,0,1838,1825,1,0,0,0,1839,189,1, - 0,0,0,1840,1841,5,116,0,0,1841,1842,5,17,0,0,1842,1843,5,426,0,0, - 1843,191,1,0,0,0,1844,1846,5,85,0,0,1845,1844,1,0,0,0,1845,1846, - 1,0,0,0,1846,1847,1,0,0,0,1847,1848,5,17,0,0,1848,1849,3,2,1,0,1849, - 193,1,0,0,0,1850,1853,3,642,321,0,1851,1853,5,426,0,0,1852,1850, - 1,0,0,0,1852,1851,1,0,0,0,1853,195,1,0,0,0,1854,1855,5,47,0,0,1855, - 1856,5,426,0,0,1856,197,1,0,0,0,1857,1858,5,183,0,0,1858,1859,5, - 431,0,0,1859,199,1,0,0,0,1860,1861,5,238,0,0,1861,1870,5,32,0,0, - 1862,1865,5,399,0,0,1863,1866,3,202,101,0,1864,1866,3,254,127,0, - 1865,1863,1,0,0,0,1865,1864,1,0,0,0,1866,1871,1,0,0,0,1867,1868, - 5,316,0,0,1868,1869,5,399,0,0,1869,1871,3,204,102,0,1870,1862,1, - 0,0,0,1870,1867,1,0,0,0,1871,1872,1,0,0,0,1872,1873,5,400,0,0,1873, - 201,1,0,0,0,1874,1879,3,318,159,0,1875,1876,5,397,0,0,1876,1878, - 3,318,159,0,1877,1875,1,0,0,0,1878,1881,1,0,0,0,1879,1877,1,0,0, - 0,1879,1880,1,0,0,0,1880,203,1,0,0,0,1881,1879,1,0,0,0,1882,1887, - 3,206,103,0,1883,1884,5,397,0,0,1884,1886,3,206,103,0,1885,1883, - 1,0,0,0,1886,1889,1,0,0,0,1887,1885,1,0,0,0,1887,1888,1,0,0,0,1888, - 205,1,0,0,0,1889,1887,1,0,0,0,1890,1909,3,256,128,0,1891,1896,3, - 670,335,0,1892,1896,3,672,336,0,1893,1896,3,676,338,0,1894,1896, - 3,678,339,0,1895,1891,1,0,0,0,1895,1892,1,0,0,0,1895,1893,1,0,0, - 0,1895,1894,1,0,0,0,1896,1897,1,0,0,0,1897,1898,5,399,0,0,1898,1899, - 3,256,128,0,1899,1900,5,400,0,0,1900,1909,1,0,0,0,1901,1902,7,15, - 0,0,1902,1903,5,399,0,0,1903,1904,5,431,0,0,1904,1905,5,397,0,0, - 1905,1906,3,256,128,0,1906,1907,5,400,0,0,1907,1909,1,0,0,0,1908, - 1890,1,0,0,0,1908,1895,1,0,0,0,1908,1901,1,0,0,0,1909,207,1,0,0, - 0,1910,1911,5,42,0,0,1911,1912,5,32,0,0,1912,1913,5,399,0,0,1913, - 1914,3,254,127,0,1914,1921,5,400,0,0,1915,1916,5,315,0,0,1916,1917, - 5,32,0,0,1917,1918,5,399,0,0,1918,1919,3,264,132,0,1919,1920,5,400, - 0,0,1920,1922,1,0,0,0,1921,1915,1,0,0,0,1921,1922,1,0,0,0,1922,1923, - 1,0,0,0,1923,1924,5,166,0,0,1924,1925,5,431,0,0,1925,1926,5,31,0, - 0,1926,209,1,0,0,0,1927,1928,5,310,0,0,1928,1929,5,32,0,0,1929,1930, - 5,399,0,0,1930,1931,3,254,127,0,1931,1932,5,400,0,0,1932,1933,5, - 224,0,0,1933,1934,5,399,0,0,1934,1935,3,292,146,0,1935,1937,5,400, - 0,0,1936,1938,3,40,20,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938, - 211,1,0,0,0,1939,1942,3,218,109,0,1940,1942,3,220,110,0,1941,1939, - 1,0,0,0,1941,1940,1,0,0,0,1942,213,1,0,0,0,1943,1944,5,266,0,0,1944, - 1945,5,426,0,0,1945,215,1,0,0,0,1946,1947,5,267,0,0,1947,1948,5, - 426,0,0,1948,217,1,0,0,0,1949,1950,5,291,0,0,1950,1951,5,137,0,0, - 1951,1952,5,301,0,0,1952,1956,5,426,0,0,1953,1954,5,387,0,0,1954, - 1955,5,302,0,0,1955,1957,3,226,113,0,1956,1953,1,0,0,0,1956,1957, - 1,0,0,0,1957,219,1,0,0,0,1958,1959,5,291,0,0,1959,1960,5,137,0,0, - 1960,1962,5,87,0,0,1961,1963,3,236,118,0,1962,1961,1,0,0,0,1962, - 1963,1,0,0,0,1963,1965,1,0,0,0,1964,1966,3,238,119,0,1965,1964,1, - 0,0,0,1965,1966,1,0,0,0,1966,1968,1,0,0,0,1967,1969,3,240,120,0, - 1968,1967,1,0,0,0,1968,1969,1,0,0,0,1969,1971,1,0,0,0,1970,1972, - 3,242,121,0,1971,1970,1,0,0,0,1971,1972,1,0,0,0,1972,1974,1,0,0, - 0,1973,1975,3,244,122,0,1974,1973,1,0,0,0,1974,1975,1,0,0,0,1975, - 221,1,0,0,0,1976,1979,3,220,110,0,1977,1979,3,218,109,0,1978,1976, - 1,0,0,0,1978,1977,1,0,0,0,1979,223,1,0,0,0,1980,1981,5,332,0,0,1981, - 1982,3,226,113,0,1982,225,1,0,0,0,1983,1984,5,399,0,0,1984,1985, - 3,228,114,0,1985,1986,5,400,0,0,1986,227,1,0,0,0,1987,1997,3,232, - 116,0,1988,1993,5,426,0,0,1989,1990,5,397,0,0,1990,1992,5,426,0, - 0,1991,1989,1,0,0,0,1992,1995,1,0,0,0,1993,1991,1,0,0,0,1993,1994, - 1,0,0,0,1994,1997,1,0,0,0,1995,1993,1,0,0,0,1996,1987,1,0,0,0,1996, - 1988,1,0,0,0,1997,229,1,0,0,0,1998,1999,5,399,0,0,1999,2000,3,232, - 116,0,2000,2001,5,400,0,0,2001,231,1,0,0,0,2002,2007,3,234,117,0, - 2003,2004,5,397,0,0,2004,2006,3,234,117,0,2005,2003,1,0,0,0,2006, - 2009,1,0,0,0,2007,2005,1,0,0,0,2007,2008,1,0,0,0,2008,233,1,0,0, - 0,2009,2007,1,0,0,0,2010,2011,5,426,0,0,2011,2012,5,405,0,0,2012, - 2013,5,426,0,0,2013,235,1,0,0,0,2014,2015,5,127,0,0,2015,2016,5, - 334,0,0,2016,2017,5,32,0,0,2017,2021,5,426,0,0,2018,2019,5,110,0, - 0,2019,2020,5,32,0,0,2020,2022,5,426,0,0,2021,2018,1,0,0,0,2021, - 2022,1,0,0,0,2022,237,1,0,0,0,2023,2024,5,44,0,0,2024,2025,5,169, - 0,0,2025,2026,5,334,0,0,2026,2027,5,32,0,0,2027,2028,5,426,0,0,2028, - 239,1,0,0,0,2029,2030,5,198,0,0,2030,2031,5,174,0,0,2031,2032,5, - 334,0,0,2032,2033,5,32,0,0,2033,2034,5,426,0,0,2034,241,1,0,0,0, - 2035,2036,5,186,0,0,2036,2037,5,334,0,0,2037,2038,5,32,0,0,2038, - 2039,5,426,0,0,2039,243,1,0,0,0,2040,2041,5,219,0,0,2041,2042,5, - 85,0,0,2042,2043,5,17,0,0,2043,2044,5,426,0,0,2044,245,1,0,0,0,2045, - 2046,5,321,0,0,2046,2047,5,17,0,0,2047,2048,5,160,0,0,2048,2049, - 5,426,0,0,2049,2050,5,233,0,0,2050,2055,5,426,0,0,2051,2052,5,159, - 0,0,2052,2053,5,426,0,0,2053,2054,5,232,0,0,2054,2056,5,426,0,0, - 2055,2051,1,0,0,0,2055,2056,1,0,0,0,2056,2087,1,0,0,0,2057,2058, - 5,321,0,0,2058,2059,5,32,0,0,2059,2063,5,426,0,0,2060,2061,5,387, - 0,0,2061,2062,5,302,0,0,2062,2064,3,226,113,0,2063,2060,1,0,0,0, - 2063,2064,1,0,0,0,2064,2068,1,0,0,0,2065,2066,5,321,0,0,2066,2067, - 5,17,0,0,2067,2069,3,642,321,0,2068,2065,1,0,0,0,2068,2069,1,0,0, - 0,2069,2087,1,0,0,0,2070,2071,5,321,0,0,2071,2072,5,32,0,0,2072, - 2076,3,642,321,0,2073,2074,5,387,0,0,2074,2075,5,302,0,0,2075,2077, - 3,226,113,0,2076,2073,1,0,0,0,2076,2077,1,0,0,0,2077,2081,1,0,0, - 0,2078,2079,5,321,0,0,2079,2080,5,17,0,0,2080,2082,3,642,321,0,2081, - 2078,1,0,0,0,2081,2082,1,0,0,0,2082,2087,1,0,0,0,2083,2084,5,321, - 0,0,2084,2085,5,17,0,0,2085,2087,3,642,321,0,2086,2045,1,0,0,0,2086, - 2057,1,0,0,0,2086,2070,1,0,0,0,2086,2083,1,0,0,0,2087,247,1,0,0, - 0,2088,2093,3,312,156,0,2089,2090,5,397,0,0,2090,2092,3,312,156, - 0,2091,2089,1,0,0,0,2092,2095,1,0,0,0,2093,2091,1,0,0,0,2093,2094, - 1,0,0,0,2094,249,1,0,0,0,2095,2093,1,0,0,0,2096,2101,3,314,157,0, - 2097,2098,5,397,0,0,2098,2100,3,314,157,0,2099,2097,1,0,0,0,2100, - 2103,1,0,0,0,2101,2099,1,0,0,0,2101,2102,1,0,0,0,2102,251,1,0,0, - 0,2103,2101,1,0,0,0,2104,2109,3,342,171,0,2105,2106,5,397,0,0,2106, - 2108,3,342,171,0,2107,2105,1,0,0,0,2108,2111,1,0,0,0,2109,2107,1, - 0,0,0,2109,2110,1,0,0,0,2110,253,1,0,0,0,2111,2109,1,0,0,0,2112, - 2117,3,256,128,0,2113,2114,5,397,0,0,2114,2116,3,256,128,0,2115, - 2113,1,0,0,0,2116,2119,1,0,0,0,2117,2115,1,0,0,0,2117,2118,1,0,0, - 0,2118,255,1,0,0,0,2119,2117,1,0,0,0,2120,2123,3,686,343,0,2121, - 2123,4,128,0,0,2122,2120,1,0,0,0,2122,2121,1,0,0,0,2123,257,1,0, - 0,0,2124,2125,3,686,343,0,2125,259,1,0,0,0,2126,2127,3,642,321,0, - 2127,261,1,0,0,0,2128,2138,3,256,128,0,2129,2134,5,395,0,0,2130, - 2135,5,104,0,0,2131,2135,5,175,0,0,2132,2135,5,375,0,0,2133,2135, - 3,642,321,0,2134,2130,1,0,0,0,2134,2131,1,0,0,0,2134,2132,1,0,0, - 0,2134,2133,1,0,0,0,2135,2137,1,0,0,0,2136,2129,1,0,0,0,2137,2140, - 1,0,0,0,2138,2136,1,0,0,0,2138,2139,1,0,0,0,2139,263,1,0,0,0,2140, - 2138,1,0,0,0,2141,2146,3,304,152,0,2142,2143,5,397,0,0,2143,2145, - 3,304,152,0,2144,2142,1,0,0,0,2145,2148,1,0,0,0,2146,2144,1,0,0, - 0,2146,2147,1,0,0,0,2147,265,1,0,0,0,2148,2146,1,0,0,0,2149,2150, - 5,399,0,0,2150,2151,3,254,127,0,2151,2152,5,400,0,0,2152,267,1,0, - 0,0,2153,2155,3,270,135,0,2154,2156,3,272,136,0,2155,2154,1,0,0, - 0,2155,2156,1,0,0,0,2156,2159,1,0,0,0,2157,2159,3,274,137,0,2158, - 2153,1,0,0,0,2158,2157,1,0,0,0,2159,269,1,0,0,0,2160,2163,3,666, - 333,0,2161,2163,3,668,334,0,2162,2160,1,0,0,0,2162,2161,1,0,0,0, - 2163,271,1,0,0,0,2164,2165,7,16,0,0,2165,273,1,0,0,0,2166,2170,5, - 109,0,0,2167,2168,5,216,0,0,2168,2170,5,109,0,0,2169,2166,1,0,0, - 0,2169,2167,1,0,0,0,2170,275,1,0,0,0,2171,2172,7,17,0,0,2172,277, - 1,0,0,0,2173,2174,5,55,0,0,2174,2176,3,642,321,0,2175,2173,1,0,0, - 0,2175,2176,1,0,0,0,2176,2177,1,0,0,0,2177,2179,3,282,141,0,2178, - 2180,3,338,169,0,2179,2178,1,0,0,0,2179,2180,1,0,0,0,2180,279,1, - 0,0,0,2181,2182,5,55,0,0,2182,2183,3,642,321,0,2183,2185,3,282,141, - 0,2184,2186,3,340,170,0,2185,2184,1,0,0,0,2185,2186,1,0,0,0,2186, - 281,1,0,0,0,2187,2190,3,284,142,0,2188,2190,3,286,143,0,2189,2187, - 1,0,0,0,2189,2188,1,0,0,0,2190,283,1,0,0,0,2191,2192,3,336,168,0, - 2192,2193,3,266,133,0,2193,285,1,0,0,0,2194,2195,5,40,0,0,2195,2196, - 5,399,0,0,2196,2197,3,584,292,0,2197,2198,5,400,0,0,2198,287,1,0, - 0,0,2199,2200,5,55,0,0,2200,2202,3,642,321,0,2201,2199,1,0,0,0,2201, - 2202,1,0,0,0,2202,2203,1,0,0,0,2203,2204,5,136,0,0,2204,2205,5,173, - 0,0,2205,2206,3,266,133,0,2206,2207,5,269,0,0,2207,2208,3,480,240, - 0,2208,2210,3,266,133,0,2209,2211,3,338,169,0,2210,2209,1,0,0,0, - 2210,2211,1,0,0,0,2211,289,1,0,0,0,2212,2213,5,55,0,0,2213,2214, - 3,642,321,0,2214,2215,5,136,0,0,2215,2216,5,173,0,0,2216,2217,3, - 266,133,0,2217,2218,5,269,0,0,2218,2219,3,480,240,0,2219,2221,3, - 266,133,0,2220,2222,3,340,170,0,2221,2220,1,0,0,0,2221,2222,1,0, - 0,0,2222,291,1,0,0,0,2223,2226,3,298,149,0,2224,2226,3,294,147,0, - 2225,2223,1,0,0,0,2225,2224,1,0,0,0,2226,293,1,0,0,0,2227,2232,3, - 296,148,0,2228,2229,5,397,0,0,2229,2231,3,296,148,0,2230,2228,1, - 0,0,0,2231,2234,1,0,0,0,2232,2230,1,0,0,0,2232,2233,1,0,0,0,2233, - 295,1,0,0,0,2234,2232,1,0,0,0,2235,2236,5,399,0,0,2236,2237,3,298, - 149,0,2237,2238,5,400,0,0,2238,297,1,0,0,0,2239,2244,3,576,288,0, - 2240,2241,5,397,0,0,2241,2243,3,576,288,0,2242,2240,1,0,0,0,2243, - 2246,1,0,0,0,2244,2242,1,0,0,0,2244,2245,1,0,0,0,2245,299,1,0,0, - 0,2246,2244,1,0,0,0,2247,2248,7,18,0,0,2248,301,1,0,0,0,2249,2250, - 5,220,0,0,2250,2251,7,19,0,0,2251,303,1,0,0,0,2252,2254,3,256,128, - 0,2253,2255,3,300,150,0,2254,2253,1,0,0,0,2254,2255,1,0,0,0,2255, - 2257,1,0,0,0,2256,2258,3,302,151,0,2257,2256,1,0,0,0,2257,2258,1, - 0,0,0,2258,305,1,0,0,0,2259,2264,3,308,154,0,2260,2261,5,397,0,0, - 2261,2263,3,308,154,0,2262,2260,1,0,0,0,2263,2266,1,0,0,0,2264,2262, - 1,0,0,0,2264,2265,1,0,0,0,2265,307,1,0,0,0,2266,2264,1,0,0,0,2267, - 2270,3,260,130,0,2268,2269,5,47,0,0,2269,2271,5,426,0,0,2270,2268, - 1,0,0,0,2270,2271,1,0,0,0,2271,309,1,0,0,0,2272,2275,3,256,128,0, - 2273,2275,3,584,292,0,2274,2272,1,0,0,0,2274,2273,1,0,0,0,2275,2277, - 1,0,0,0,2276,2278,3,300,150,0,2277,2276,1,0,0,0,2277,2278,1,0,0, - 0,2278,2280,1,0,0,0,2279,2281,3,302,151,0,2280,2279,1,0,0,0,2280, - 2281,1,0,0,0,2281,311,1,0,0,0,2282,2283,3,260,130,0,2283,2286,3, - 344,172,0,2284,2285,5,47,0,0,2285,2287,5,426,0,0,2286,2284,1,0,0, - 0,2286,2287,1,0,0,0,2287,313,1,0,0,0,2288,2291,3,316,158,0,2289, - 2291,3,318,159,0,2290,2288,1,0,0,0,2290,2289,1,0,0,0,2291,315,1, - 0,0,0,2292,2295,3,288,144,0,2293,2295,3,278,139,0,2294,2292,1,0, - 0,0,2294,2293,1,0,0,0,2295,317,1,0,0,0,2296,2297,3,260,130,0,2297, - 2299,3,344,172,0,2298,2300,3,320,160,0,2299,2298,1,0,0,0,2299,2300, - 1,0,0,0,2300,2303,1,0,0,0,2301,2302,5,47,0,0,2302,2304,5,426,0,0, - 2303,2301,1,0,0,0,2303,2304,1,0,0,0,2304,319,1,0,0,0,2305,2308,3, - 322,161,0,2306,2308,3,324,162,0,2307,2305,1,0,0,0,2307,2306,1,0, - 0,0,2308,321,1,0,0,0,2309,2310,5,55,0,0,2310,2312,3,642,321,0,2311, - 2309,1,0,0,0,2311,2312,1,0,0,0,2312,2313,1,0,0,0,2313,2314,5,269, - 0,0,2314,2315,3,480,240,0,2315,2316,5,399,0,0,2316,2317,3,256,128, - 0,2317,2319,5,400,0,0,2318,2320,3,338,169,0,2319,2318,1,0,0,0,2319, - 2320,1,0,0,0,2320,323,1,0,0,0,2321,2322,5,55,0,0,2322,2324,3,642, - 321,0,2323,2321,1,0,0,0,2323,2324,1,0,0,0,2324,2325,1,0,0,0,2325, - 2327,3,332,166,0,2326,2328,3,338,169,0,2327,2326,1,0,0,0,2327,2328, - 1,0,0,0,2328,325,1,0,0,0,2329,2332,3,328,164,0,2330,2332,3,330,165, - 0,2331,2329,1,0,0,0,2331,2330,1,0,0,0,2332,327,1,0,0,0,2333,2334, - 5,55,0,0,2334,2336,3,642,321,0,2335,2333,1,0,0,0,2335,2336,1,0,0, - 0,2336,2337,1,0,0,0,2337,2338,5,269,0,0,2338,2339,3,480,240,0,2339, - 2340,5,399,0,0,2340,2341,3,256,128,0,2341,2343,5,400,0,0,2342,2344, - 3,340,170,0,2343,2342,1,0,0,0,2343,2344,1,0,0,0,2344,329,1,0,0,0, - 2345,2346,5,55,0,0,2346,2348,3,642,321,0,2347,2345,1,0,0,0,2347, - 2348,1,0,0,0,2348,2349,1,0,0,0,2349,2351,3,332,166,0,2350,2352,3, - 340,170,0,2351,2350,1,0,0,0,2351,2352,1,0,0,0,2352,331,1,0,0,0,2353, - 2354,5,216,0,0,2354,2360,5,219,0,0,2355,2356,5,83,0,0,2356,2360, - 3,334,167,0,2357,2360,3,286,143,0,2358,2360,3,336,168,0,2359,2353, - 1,0,0,0,2359,2355,1,0,0,0,2359,2357,1,0,0,0,2359,2358,1,0,0,0,2360, - 333,1,0,0,0,2361,2365,3,576,288,0,2362,2365,3,554,277,0,2363,2365, - 3,564,282,0,2364,2361,1,0,0,0,2364,2362,1,0,0,0,2364,2363,1,0,0, - 0,2365,335,1,0,0,0,2366,2367,5,251,0,0,2367,2370,5,173,0,0,2368, - 2370,5,358,0,0,2369,2366,1,0,0,0,2369,2368,1,0,0,0,2370,337,1,0, - 0,0,2371,2373,3,268,134,0,2372,2374,3,276,138,0,2373,2372,1,0,0, - 0,2373,2374,1,0,0,0,2374,339,1,0,0,0,2375,2377,3,268,134,0,2376, - 2378,3,276,138,0,2377,2376,1,0,0,0,2377,2378,1,0,0,0,2378,341,1, - 0,0,0,2379,2380,3,260,130,0,2380,2381,5,396,0,0,2381,2384,3,344, - 172,0,2382,2383,5,47,0,0,2383,2385,5,426,0,0,2384,2382,1,0,0,0,2384, - 2385,1,0,0,0,2385,343,1,0,0,0,2386,2387,3,348,174,0,2387,345,1,0, - 0,0,2388,2393,3,344,172,0,2389,2390,5,397,0,0,2390,2392,3,344,172, - 0,2391,2389,1,0,0,0,2392,2395,1,0,0,0,2393,2391,1,0,0,0,2393,2394, - 1,0,0,0,2394,347,1,0,0,0,2395,2393,1,0,0,0,2396,2402,3,350,175,0, - 2397,2402,3,352,176,0,2398,2402,3,354,177,0,2399,2402,3,356,178, - 0,2400,2402,3,358,179,0,2401,2396,1,0,0,0,2401,2397,1,0,0,0,2401, - 2398,1,0,0,0,2401,2399,1,0,0,0,2401,2400,1,0,0,0,2402,349,1,0,0, - 0,2403,2441,5,340,0,0,2404,2441,5,311,0,0,2405,2441,5,162,0,0,2406, - 2441,5,163,0,0,2407,2441,5,26,0,0,2408,2441,5,28,0,0,2409,2441,5, - 131,0,0,2410,2441,5,264,0,0,2411,2413,5,100,0,0,2412,2414,5,248, - 0,0,2413,2412,1,0,0,0,2413,2414,1,0,0,0,2414,2441,1,0,0,0,2415,2441, - 5,71,0,0,2416,2441,5,72,0,0,2417,2441,5,337,0,0,2418,2441,5,338, - 0,0,2419,2420,5,337,0,0,2420,2421,5,387,0,0,2421,2422,5,188,0,0, - 2422,2423,5,336,0,0,2423,2441,5,394,0,0,2424,2441,5,323,0,0,2425, - 2441,5,27,0,0,2426,2434,3,684,342,0,2427,2428,5,399,0,0,2428,2431, - 5,431,0,0,2429,2430,5,397,0,0,2430,2432,5,431,0,0,2431,2429,1,0, - 0,0,2431,2432,1,0,0,0,2432,2433,1,0,0,0,2433,2435,5,400,0,0,2434, - 2427,1,0,0,0,2434,2435,1,0,0,0,2435,2441,1,0,0,0,2436,2437,7,20, - 0,0,2437,2438,5,399,0,0,2438,2439,5,431,0,0,2439,2441,5,400,0,0, - 2440,2403,1,0,0,0,2440,2404,1,0,0,0,2440,2405,1,0,0,0,2440,2406, - 1,0,0,0,2440,2407,1,0,0,0,2440,2408,1,0,0,0,2440,2409,1,0,0,0,2440, - 2410,1,0,0,0,2440,2411,1,0,0,0,2440,2415,1,0,0,0,2440,2416,1,0,0, - 0,2440,2417,1,0,0,0,2440,2418,1,0,0,0,2440,2419,1,0,0,0,2440,2424, - 1,0,0,0,2440,2425,1,0,0,0,2440,2426,1,0,0,0,2440,2436,1,0,0,0,2441, - 351,1,0,0,0,2442,2443,5,16,0,0,2443,2444,5,409,0,0,2444,2445,3,348, - 174,0,2445,2446,5,411,0,0,2446,353,1,0,0,0,2447,2448,5,324,0,0,2448, - 2449,5,409,0,0,2449,2450,3,252,126,0,2450,2451,5,411,0,0,2451,355, - 1,0,0,0,2452,2453,5,198,0,0,2453,2454,5,409,0,0,2454,2455,3,350, - 175,0,2455,2456,5,397,0,0,2456,2457,3,348,174,0,2457,2458,5,411, - 0,0,2458,357,1,0,0,0,2459,2460,5,357,0,0,2460,2461,5,409,0,0,2461, - 2462,3,346,173,0,2462,2463,5,411,0,0,2463,359,1,0,0,0,2464,2466, - 7,21,0,0,2465,2467,7,22,0,0,2466,2465,1,0,0,0,2466,2467,1,0,0,0, - 2467,361,1,0,0,0,2468,2470,3,366,183,0,2469,2468,1,0,0,0,2469,2470, - 1,0,0,0,2470,2471,1,0,0,0,2471,2472,3,364,182,0,2472,363,1,0,0,0, - 2473,2476,3,370,185,0,2474,2476,3,374,187,0,2475,2473,1,0,0,0,2475, - 2474,1,0,0,0,2476,365,1,0,0,0,2477,2478,5,387,0,0,2478,2483,3,368, - 184,0,2479,2480,5,397,0,0,2480,2482,3,368,184,0,2481,2479,1,0,0, - 0,2482,2485,1,0,0,0,2483,2481,1,0,0,0,2483,2484,1,0,0,0,2484,367, - 1,0,0,0,2485,2483,1,0,0,0,2486,2491,3,642,321,0,2487,2488,5,399, - 0,0,2488,2489,3,254,127,0,2489,2490,5,400,0,0,2490,2492,1,0,0,0, - 2491,2487,1,0,0,0,2491,2492,1,0,0,0,2492,2493,1,0,0,0,2493,2494, - 5,17,0,0,2494,2495,5,399,0,0,2495,2496,3,362,181,0,2496,2497,5,400, - 0,0,2497,369,1,0,0,0,2498,2504,3,372,186,0,2499,2500,3,360,180,0, - 2500,2501,3,372,186,0,2501,2503,1,0,0,0,2502,2499,1,0,0,0,2503,2506, - 1,0,0,0,2504,2502,1,0,0,0,2504,2505,1,0,0,0,2505,371,1,0,0,0,2506, - 2504,1,0,0,0,2507,2508,3,450,225,0,2508,2509,3,384,192,0,2509,2511, - 3,502,251,0,2510,2512,3,464,232,0,2511,2510,1,0,0,0,2511,2512,1, - 0,0,0,2512,2514,1,0,0,0,2513,2515,3,496,248,0,2514,2513,1,0,0,0, - 2514,2515,1,0,0,0,2515,2517,1,0,0,0,2516,2518,3,522,261,0,2517,2516, - 1,0,0,0,2517,2518,1,0,0,0,2518,2520,1,0,0,0,2519,2521,3,530,265, - 0,2520,2519,1,0,0,0,2520,2521,1,0,0,0,2521,2523,1,0,0,0,2522,2524, - 3,514,257,0,2523,2522,1,0,0,0,2523,2524,1,0,0,0,2524,2526,1,0,0, - 0,2525,2527,3,532,266,0,2526,2525,1,0,0,0,2526,2527,1,0,0,0,2527, - 2529,1,0,0,0,2528,2530,3,544,272,0,2529,2528,1,0,0,0,2529,2530,1, - 0,0,0,2530,2532,1,0,0,0,2531,2533,3,548,274,0,2532,2531,1,0,0,0, - 2532,2533,1,0,0,0,2533,2535,1,0,0,0,2534,2536,3,550,275,0,2535,2534, - 1,0,0,0,2535,2536,1,0,0,0,2536,2538,1,0,0,0,2537,2539,3,552,276, - 0,2538,2537,1,0,0,0,2538,2539,1,0,0,0,2539,2541,1,0,0,0,2540,2542, - 3,388,194,0,2541,2540,1,0,0,0,2541,2542,1,0,0,0,2542,2579,1,0,0, - 0,2543,2544,3,450,225,0,2544,2546,3,502,251,0,2545,2547,3,464,232, - 0,2546,2545,1,0,0,0,2546,2547,1,0,0,0,2547,2549,1,0,0,0,2548,2550, - 3,496,248,0,2549,2548,1,0,0,0,2549,2550,1,0,0,0,2550,2552,1,0,0, - 0,2551,2553,3,522,261,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0,2553, - 2555,1,0,0,0,2554,2556,3,530,265,0,2555,2554,1,0,0,0,2555,2556,1, - 0,0,0,2556,2558,1,0,0,0,2557,2559,3,514,257,0,2558,2557,1,0,0,0, - 2558,2559,1,0,0,0,2559,2561,1,0,0,0,2560,2562,3,532,266,0,2561,2560, - 1,0,0,0,2561,2562,1,0,0,0,2562,2564,1,0,0,0,2563,2565,3,544,272, - 0,2564,2563,1,0,0,0,2564,2565,1,0,0,0,2565,2567,1,0,0,0,2566,2568, - 3,548,274,0,2567,2566,1,0,0,0,2567,2568,1,0,0,0,2568,2570,1,0,0, - 0,2569,2571,3,550,275,0,2570,2569,1,0,0,0,2570,2571,1,0,0,0,2571, - 2573,1,0,0,0,2572,2574,3,552,276,0,2573,2572,1,0,0,0,2573,2574,1, - 0,0,0,2574,2576,1,0,0,0,2575,2577,3,388,194,0,2576,2575,1,0,0,0, - 2576,2577,1,0,0,0,2577,2579,1,0,0,0,2578,2507,1,0,0,0,2578,2543, - 1,0,0,0,2579,373,1,0,0,0,2580,2581,3,384,192,0,2581,2582,3,378,189, - 0,2582,2585,1,0,0,0,2583,2585,3,378,189,0,2584,2580,1,0,0,0,2584, - 2583,1,0,0,0,2585,375,1,0,0,0,2586,2588,3,502,251,0,2587,2589,3, - 450,225,0,2588,2587,1,0,0,0,2588,2589,1,0,0,0,2589,2591,1,0,0,0, - 2590,2592,3,496,248,0,2591,2590,1,0,0,0,2591,2592,1,0,0,0,2592,2594, - 1,0,0,0,2593,2595,3,522,261,0,2594,2593,1,0,0,0,2594,2595,1,0,0, - 0,2595,2597,1,0,0,0,2596,2598,3,530,265,0,2597,2596,1,0,0,0,2597, - 2598,1,0,0,0,2598,2600,1,0,0,0,2599,2601,3,514,257,0,2600,2599,1, - 0,0,0,2600,2601,1,0,0,0,2601,2603,1,0,0,0,2602,2604,3,532,266,0, - 2603,2602,1,0,0,0,2603,2604,1,0,0,0,2604,2611,1,0,0,0,2605,2606, - 5,399,0,0,2606,2607,3,378,189,0,2607,2608,5,400,0,0,2608,2611,1, - 0,0,0,2609,2611,3,498,249,0,2610,2586,1,0,0,0,2610,2605,1,0,0,0, - 2610,2609,1,0,0,0,2611,377,1,0,0,0,2612,2614,3,376,188,0,2613,2615, - 3,380,190,0,2614,2613,1,0,0,0,2614,2615,1,0,0,0,2615,2617,1,0,0, - 0,2616,2618,3,544,272,0,2617,2616,1,0,0,0,2617,2618,1,0,0,0,2618, - 2620,1,0,0,0,2619,2621,3,548,274,0,2620,2619,1,0,0,0,2620,2621,1, - 0,0,0,2621,2623,1,0,0,0,2622,2624,3,550,275,0,2623,2622,1,0,0,0, - 2623,2624,1,0,0,0,2624,2626,1,0,0,0,2625,2627,3,552,276,0,2626,2625, - 1,0,0,0,2626,2627,1,0,0,0,2627,2629,1,0,0,0,2628,2630,3,388,194, - 0,2629,2628,1,0,0,0,2629,2630,1,0,0,0,2630,379,1,0,0,0,2631,2632, - 3,360,180,0,2632,2633,3,376,188,0,2633,2635,1,0,0,0,2634,2631,1, - 0,0,0,2635,2636,1,0,0,0,2636,2634,1,0,0,0,2636,2637,1,0,0,0,2637, - 381,1,0,0,0,2638,2640,3,366,183,0,2639,2638,1,0,0,0,2639,2640,1, - 0,0,0,2640,2641,1,0,0,0,2641,2642,3,378,189,0,2642,383,1,0,0,0,2643, - 2660,5,161,0,0,2644,2645,5,235,0,0,2645,2647,3,386,193,0,2646,2648, - 3,32,16,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,2661,1,0,0,0, - 2649,2651,5,166,0,0,2650,2652,5,329,0,0,2651,2650,1,0,0,0,2651,2652, - 1,0,0,0,2652,2653,1,0,0,0,2653,2658,3,628,314,0,2654,2655,5,399, - 0,0,2655,2656,3,254,127,0,2656,2657,5,400,0,0,2657,2659,1,0,0,0, - 2658,2654,1,0,0,0,2658,2659,1,0,0,0,2659,2661,1,0,0,0,2660,2644, - 1,0,0,0,2660,2649,1,0,0,0,2661,385,1,0,0,0,2662,2664,5,188,0,0,2663, - 2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665,1,0,0,0,2665,2666,5,93, - 0,0,2666,2668,5,426,0,0,2667,2669,3,222,111,0,2668,2667,1,0,0,0, - 2668,2669,1,0,0,0,2669,2671,1,0,0,0,2670,2672,3,246,123,0,2671,2670, - 1,0,0,0,2671,2672,1,0,0,0,2672,2676,1,0,0,0,2673,2674,5,329,0,0, - 2674,2676,3,628,314,0,2675,2663,1,0,0,0,2675,2673,1,0,0,0,2676,387, - 1,0,0,0,2677,2686,5,185,0,0,2678,2679,5,431,0,0,2679,2681,5,397, - 0,0,2680,2678,1,0,0,0,2680,2681,1,0,0,0,2681,2682,1,0,0,0,2682,2687, - 5,431,0,0,2683,2684,5,431,0,0,2684,2685,5,223,0,0,2685,2687,5,431, - 0,0,2686,2680,1,0,0,0,2686,2683,1,0,0,0,2687,389,1,0,0,0,2688,2689, - 3,256,128,0,2689,2690,5,405,0,0,2690,2691,3,392,196,0,2691,391,1, - 0,0,0,2692,2695,5,83,0,0,2693,2695,3,594,297,0,2694,2692,1,0,0,0, - 2694,2693,1,0,0,0,2695,393,1,0,0,0,2696,2697,5,304,0,0,2697,2702, - 3,390,195,0,2698,2699,5,397,0,0,2699,2701,3,390,195,0,2700,2698, - 1,0,0,0,2701,2704,1,0,0,0,2702,2700,1,0,0,0,2702,2703,1,0,0,0,2703, - 395,1,0,0,0,2704,2702,1,0,0,0,2705,2706,5,318,0,0,2706,2715,5,344, - 0,0,2707,2712,3,398,199,0,2708,2709,5,397,0,0,2709,2711,3,398,199, - 0,2710,2708,1,0,0,0,2711,2714,1,0,0,0,2712,2710,1,0,0,0,2712,2713, - 1,0,0,0,2713,2716,1,0,0,0,2714,2712,1,0,0,0,2715,2707,1,0,0,0,2715, - 2716,1,0,0,0,2716,2729,1,0,0,0,2717,2719,5,48,0,0,2718,2720,5,389, - 0,0,2719,2718,1,0,0,0,2719,2720,1,0,0,0,2720,2729,1,0,0,0,2721,2723, - 5,289,0,0,2722,2724,5,389,0,0,2723,2722,1,0,0,0,2723,2724,1,0,0, - 0,2724,2729,1,0,0,0,2725,2726,5,304,0,0,2726,2727,5,22,0,0,2727, - 2729,7,23,0,0,2728,2705,1,0,0,0,2728,2717,1,0,0,0,2728,2721,1,0, - 0,0,2728,2725,1,0,0,0,2729,397,1,0,0,0,2730,2731,5,168,0,0,2731, - 2732,5,182,0,0,2732,2736,5,312,0,0,2733,2734,5,261,0,0,2734,2736, - 7,24,0,0,2735,2730,1,0,0,0,2735,2733,1,0,0,0,2736,399,1,0,0,0,2737, - 2740,3,404,202,0,2738,2740,3,406,203,0,2739,2737,1,0,0,0,2739,2738, - 1,0,0,0,2740,2743,1,0,0,0,2741,2739,1,0,0,0,2741,2742,1,0,0,0,2742, - 2745,1,0,0,0,2743,2741,1,0,0,0,2744,2746,3,402,201,0,2745,2744,1, - 0,0,0,2745,2746,1,0,0,0,2746,401,1,0,0,0,2747,2748,5,383,0,0,2748, - 2749,5,216,0,0,2749,2752,5,201,0,0,2750,2751,5,11,0,0,2751,2753, - 3,584,292,0,2752,2750,1,0,0,0,2752,2753,1,0,0,0,2753,2754,1,0,0, - 0,2754,2755,5,335,0,0,2755,2757,5,161,0,0,2756,2758,3,266,133,0, - 2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758,2759,1,0,0,0,2759,2760, - 5,374,0,0,2760,2761,3,540,270,0,2761,403,1,0,0,0,2762,2763,5,383, - 0,0,2763,2764,5,201,0,0,2764,2765,5,11,0,0,2765,2766,3,584,292,0, - 2766,2770,5,335,0,0,2767,2768,5,365,0,0,2768,2771,3,394,197,0,2769, - 2771,5,86,0,0,2770,2767,1,0,0,0,2770,2769,1,0,0,0,2771,405,1,0,0, - 0,2772,2773,5,383,0,0,2773,2774,5,201,0,0,2774,2778,5,335,0,0,2775, - 2776,5,365,0,0,2776,2779,3,394,197,0,2777,2779,5,86,0,0,2778,2775, - 1,0,0,0,2778,2777,1,0,0,0,2779,407,1,0,0,0,2780,2781,5,246,0,0,2781, - 2782,5,426,0,0,2782,409,1,0,0,0,2783,2784,5,352,0,0,2784,2785,5, - 426,0,0,2785,411,1,0,0,0,2786,2787,5,320,0,0,2787,2788,5,426,0,0, - 2788,413,1,0,0,0,2789,2820,5,9,0,0,2790,2791,5,329,0,0,2791,2792, - 3,480,240,0,2792,2793,3,416,208,0,2793,2821,1,0,0,0,2794,2795,5, - 378,0,0,2795,2797,3,484,242,0,2796,2798,5,17,0,0,2797,2796,1,0,0, - 0,2797,2798,1,0,0,0,2798,2799,1,0,0,0,2799,2800,3,420,210,0,2800, - 2821,1,0,0,0,2801,2802,5,202,0,0,2802,2803,5,378,0,0,2803,2807,3, - 484,242,0,2804,2808,3,36,18,0,2805,2808,3,38,19,0,2806,2808,5,265, - 0,0,2807,2804,1,0,0,0,2807,2805,1,0,0,0,2807,2806,1,0,0,0,2808,2821, - 1,0,0,0,2809,2810,3,70,35,0,2810,2811,3,422,211,0,2811,2821,1,0, - 0,0,2812,2813,5,69,0,0,2813,2821,3,424,212,0,2814,2815,5,155,0,0, - 2815,2816,3,642,321,0,2816,2817,5,224,0,0,2817,2818,3,628,314,0, - 2818,2819,5,265,0,0,2819,2821,1,0,0,0,2820,2790,1,0,0,0,2820,2794, - 1,0,0,0,2820,2801,1,0,0,0,2820,2809,1,0,0,0,2820,2812,1,0,0,0,2820, - 2814,1,0,0,0,2821,415,1,0,0,0,2822,2823,5,274,0,0,2823,2824,5,341, - 0,0,2824,2912,3,482,241,0,2825,2826,5,102,0,0,2826,2912,5,239,0, - 0,2827,2912,3,428,214,0,2828,2830,5,4,0,0,2829,2831,3,32,16,0,2830, - 2829,1,0,0,0,2830,2831,1,0,0,0,2831,2836,1,0,0,0,2832,2834,3,630, - 315,0,2833,2835,3,426,213,0,2834,2833,1,0,0,0,2834,2835,1,0,0,0, - 2835,2837,1,0,0,0,2836,2832,1,0,0,0,2837,2838,1,0,0,0,2838,2836, - 1,0,0,0,2838,2839,1,0,0,0,2839,2912,1,0,0,0,2840,2844,5,342,0,0, - 2841,2843,3,630,315,0,2842,2841,1,0,0,0,2843,2846,1,0,0,0,2844,2842, - 1,0,0,0,2844,2845,1,0,0,0,2845,2912,1,0,0,0,2846,2844,1,0,0,0,2847, - 2851,5,15,0,0,2848,2850,3,630,315,0,2849,2848,1,0,0,0,2850,2853, - 1,0,0,0,2851,2849,1,0,0,0,2851,2852,1,0,0,0,2852,2912,1,0,0,0,2853, - 2851,1,0,0,0,2854,2858,5,353,0,0,2855,2857,3,630,315,0,2856,2855, - 1,0,0,0,2857,2860,1,0,0,0,2858,2856,1,0,0,0,2858,2859,1,0,0,0,2859, - 2912,1,0,0,0,2860,2858,1,0,0,0,2861,2862,5,304,0,0,2862,2863,5,332, - 0,0,2863,2912,3,226,113,0,2864,2865,5,363,0,0,2865,2867,5,332,0, - 0,2866,2868,3,30,15,0,2867,2866,1,0,0,0,2867,2868,1,0,0,0,2868,2869, - 1,0,0,0,2869,2912,3,226,113,0,2870,2912,3,210,105,0,2871,2874,5, - 216,0,0,2872,2875,5,310,0,0,2873,2875,3,40,20,0,2874,2872,1,0,0, - 0,2874,2873,1,0,0,0,2875,2912,1,0,0,0,2876,2877,5,113,0,0,2877,2878, - 3,630,315,0,2878,2879,5,387,0,0,2879,2880,5,329,0,0,2880,2881,3, - 480,240,0,2881,2912,1,0,0,0,2882,2883,5,237,0,0,2883,2884,5,45,0, - 0,2884,2885,5,399,0,0,2885,2886,3,312,156,0,2886,2887,5,400,0,0, - 2887,2912,1,0,0,0,2888,2889,5,101,0,0,2889,2890,5,55,0,0,2890,2912, - 3,642,321,0,2891,2894,5,4,0,0,2892,2895,3,290,145,0,2893,2895,3, - 280,140,0,2894,2892,1,0,0,0,2894,2893,1,0,0,0,2895,2912,1,0,0,0, - 2896,2898,3,630,315,0,2897,2896,1,0,0,0,2897,2898,1,0,0,0,2898,2899, - 1,0,0,0,2899,2912,3,418,209,0,2900,2901,5,304,0,0,2901,2902,5,236, - 0,0,2902,2912,3,126,63,0,2903,2904,5,304,0,0,2904,2905,5,237,0,0, - 2905,2906,5,316,0,0,2906,2907,5,399,0,0,2907,2908,3,204,102,0,2908, - 2909,5,400,0,0,2909,2912,1,0,0,0,2910,2912,3,432,216,0,2911,2822, - 1,0,0,0,2911,2825,1,0,0,0,2911,2827,1,0,0,0,2911,2828,1,0,0,0,2911, - 2840,1,0,0,0,2911,2847,1,0,0,0,2911,2854,1,0,0,0,2911,2861,1,0,0, - 0,2911,2864,1,0,0,0,2911,2870,1,0,0,0,2911,2871,1,0,0,0,2911,2876, - 1,0,0,0,2911,2882,1,0,0,0,2911,2888,1,0,0,0,2911,2891,1,0,0,0,2911, - 2897,1,0,0,0,2911,2900,1,0,0,0,2911,2903,1,0,0,0,2911,2910,1,0,0, - 0,2912,417,1,0,0,0,2913,2914,5,304,0,0,2914,2915,5,129,0,0,2915, - 3046,3,434,217,0,2916,2917,5,304,0,0,2917,2918,5,189,0,0,2918,3046, - 5,426,0,0,2919,3046,5,53,0,0,2920,2930,5,304,0,0,2921,2922,5,301, - 0,0,2922,2926,5,426,0,0,2923,2924,5,387,0,0,2924,2925,5,302,0,0, - 2925,2927,3,226,113,0,2926,2923,1,0,0,0,2926,2927,1,0,0,0,2927,2931, - 1,0,0,0,2928,2929,5,302,0,0,2929,2931,3,226,113,0,2930,2921,1,0, - 0,0,2930,2928,1,0,0,0,2931,3046,1,0,0,0,2932,2933,5,363,0,0,2933, - 2934,5,302,0,0,2934,3046,3,226,113,0,2935,2936,5,274,0,0,2936,2937, - 5,341,0,0,2937,3046,3,630,315,0,2938,2939,5,166,0,0,2939,2940,5, - 431,0,0,2940,3046,5,31,0,0,2941,2942,5,304,0,0,2942,2943,5,310,0, - 0,2943,2944,5,189,0,0,2944,2945,5,399,0,0,2945,2950,3,430,215,0, - 2946,2947,5,397,0,0,2947,2949,3,430,215,0,2948,2946,1,0,0,0,2949, - 2952,1,0,0,0,2950,2948,1,0,0,0,2950,2951,1,0,0,0,2951,2953,1,0,0, - 0,2952,2950,1,0,0,0,2953,2954,5,400,0,0,2954,3046,1,0,0,0,2955,2956, - 5,216,0,0,2956,3046,7,25,0,0,2957,3046,3,208,104,0,2958,2959,5,49, - 0,0,2959,2962,5,426,0,0,2960,2961,5,11,0,0,2961,2963,5,380,0,0,2962, - 2960,1,0,0,0,2962,2963,1,0,0,0,2963,2968,1,0,0,0,2964,2965,5,42, - 0,0,2965,2966,5,166,0,0,2966,2967,5,431,0,0,2967,2969,5,31,0,0,2968, - 2964,1,0,0,0,2968,2969,1,0,0,0,2969,2971,1,0,0,0,2970,2972,3,544, - 272,0,2971,2970,1,0,0,0,2971,2972,1,0,0,0,2972,2974,1,0,0,0,2973, - 2975,3,408,204,0,2974,2973,1,0,0,0,2974,2975,1,0,0,0,2975,2980,1, - 0,0,0,2976,2977,5,387,0,0,2977,2978,5,235,0,0,2978,2979,5,332,0, - 0,2979,2981,3,226,113,0,2980,2976,1,0,0,0,2980,2981,1,0,0,0,2981, - 3046,1,0,0,0,2982,2983,5,365,0,0,2983,2984,5,319,0,0,2984,2986,5, - 134,0,0,2985,2987,5,45,0,0,2986,2985,1,0,0,0,2986,2987,1,0,0,0,2987, - 2988,1,0,0,0,2988,2989,3,256,128,0,2989,2990,5,304,0,0,2990,2993, - 3,226,113,0,2991,2992,5,47,0,0,2992,2994,5,426,0,0,2993,2991,1,0, - 0,0,2993,2994,1,0,0,0,2994,3046,1,0,0,0,2995,2996,5,365,0,0,2996, - 2997,5,319,0,0,2997,2998,5,304,0,0,2998,3046,3,226,113,0,2999,3001, - 5,38,0,0,3000,3002,5,45,0,0,3001,3000,1,0,0,0,3001,3002,1,0,0,0, - 3002,3003,1,0,0,0,3003,3004,3,256,128,0,3004,3005,3,260,130,0,3005, - 3007,3,344,172,0,3006,3008,3,326,163,0,3007,3006,1,0,0,0,3007,3008, - 1,0,0,0,3008,3011,1,0,0,0,3009,3010,5,47,0,0,3010,3012,5,426,0,0, - 3011,3009,1,0,0,0,3011,3012,1,0,0,0,3012,3016,1,0,0,0,3013,3017, - 5,130,0,0,3014,3015,5,6,0,0,3015,3017,3,642,321,0,3016,3013,1,0, - 0,0,3016,3014,1,0,0,0,3016,3017,1,0,0,0,3017,3019,1,0,0,0,3018,3020, - 3,34,17,0,3019,3018,1,0,0,0,3019,3020,1,0,0,0,3020,3046,1,0,0,0, - 3021,3024,5,4,0,0,3022,3024,5,278,0,0,3023,3021,1,0,0,0,3023,3022, - 1,0,0,0,3024,3025,1,0,0,0,3025,3026,5,46,0,0,3026,3027,5,399,0,0, - 3027,3028,3,248,124,0,3028,3030,5,400,0,0,3029,3031,3,34,17,0,3030, - 3029,1,0,0,0,3030,3031,1,0,0,0,3031,3046,1,0,0,0,3032,3033,5,365, - 0,0,3033,3035,5,46,0,0,3034,3036,3,34,17,0,3035,3034,1,0,0,0,3035, - 3036,1,0,0,0,3036,3046,1,0,0,0,3037,3043,3,270,135,0,3038,3040,5, - 218,0,0,3039,3041,5,34,0,0,3040,3039,1,0,0,0,3040,3041,1,0,0,0,3041, - 3044,1,0,0,0,3042,3044,5,222,0,0,3043,3038,1,0,0,0,3043,3042,1,0, - 0,0,3044,3046,1,0,0,0,3045,2913,1,0,0,0,3045,2916,1,0,0,0,3045,2919, - 1,0,0,0,3045,2920,1,0,0,0,3045,2932,1,0,0,0,3045,2935,1,0,0,0,3045, - 2938,1,0,0,0,3045,2941,1,0,0,0,3045,2955,1,0,0,0,3045,2957,1,0,0, - 0,3045,2958,1,0,0,0,3045,2982,1,0,0,0,3045,2995,1,0,0,0,3045,2999, - 1,0,0,0,3045,3023,1,0,0,0,3045,3032,1,0,0,0,3045,3037,1,0,0,0,3046, - 419,1,0,0,0,3047,3048,5,304,0,0,3048,3049,5,332,0,0,3049,3074,3, - 226,113,0,3050,3051,5,363,0,0,3051,3053,5,332,0,0,3052,3054,3,30, - 15,0,3053,3052,1,0,0,0,3053,3054,1,0,0,0,3054,3055,1,0,0,0,3055, - 3074,3,226,113,0,3056,3057,5,274,0,0,3057,3058,5,341,0,0,3058,3074, - 3,482,241,0,3059,3061,5,4,0,0,3060,3062,3,32,16,0,3061,3060,1,0, - 0,0,3061,3062,1,0,0,0,3062,3067,1,0,0,0,3063,3065,3,630,315,0,3064, - 3066,3,426,213,0,3065,3064,1,0,0,0,3065,3066,1,0,0,0,3066,3068,1, - 0,0,0,3067,3063,1,0,0,0,3068,3069,1,0,0,0,3069,3067,1,0,0,0,3069, - 3070,1,0,0,0,3070,3074,1,0,0,0,3071,3074,3,428,214,0,3072,3074,3, - 382,191,0,3073,3047,1,0,0,0,3073,3050,1,0,0,0,3073,3056,1,0,0,0, - 3073,3059,1,0,0,0,3073,3071,1,0,0,0,3073,3072,1,0,0,0,3074,421,1, - 0,0,0,3075,3076,3,474,237,0,3076,3077,5,304,0,0,3077,3078,5,76,0, - 0,3078,3079,3,230,115,0,3079,3091,1,0,0,0,3080,3081,3,474,237,0, - 3081,3082,5,304,0,0,3082,3083,5,236,0,0,3083,3084,3,128,64,0,3084, - 3091,1,0,0,0,3085,3086,3,474,237,0,3086,3087,5,304,0,0,3087,3088, - 7,26,0,0,3088,3089,5,426,0,0,3089,3091,1,0,0,0,3090,3075,1,0,0,0, - 3090,3080,1,0,0,0,3090,3085,1,0,0,0,3091,423,1,0,0,0,3092,3093,3, - 474,237,0,3093,3094,5,304,0,0,3094,3095,5,77,0,0,3095,3096,3,230, - 115,0,3096,3108,1,0,0,0,3097,3098,3,474,237,0,3098,3099,5,304,0, - 0,3099,3100,5,236,0,0,3100,3101,3,128,64,0,3101,3108,1,0,0,0,3102, - 3103,3,474,237,0,3103,3104,5,304,0,0,3104,3105,5,367,0,0,3105,3106, - 5,426,0,0,3106,3108,1,0,0,0,3107,3092,1,0,0,0,3107,3097,1,0,0,0, - 3107,3102,1,0,0,0,3108,425,1,0,0,0,3109,3110,5,189,0,0,3110,3111, - 5,426,0,0,3111,427,1,0,0,0,3112,3114,5,101,0,0,3113,3115,3,30,15, - 0,3114,3113,1,0,0,0,3114,3115,1,0,0,0,3115,3116,1,0,0,0,3116,3117, - 5,237,0,0,3117,3123,3,634,317,0,3118,3119,5,397,0,0,3119,3120,5, - 237,0,0,3120,3122,3,634,317,0,3121,3118,1,0,0,0,3122,3125,1,0,0, - 0,3123,3121,1,0,0,0,3123,3124,1,0,0,0,3124,3128,1,0,0,0,3125,3123, - 1,0,0,0,3126,3127,5,152,0,0,3127,3129,5,254,0,0,3128,3126,1,0,0, - 0,3128,3129,1,0,0,0,3129,3131,1,0,0,0,3130,3132,5,255,0,0,3131,3130, - 1,0,0,0,3131,3132,1,0,0,0,3132,3134,1,0,0,0,3133,3135,3,14,7,0,3134, - 3133,1,0,0,0,3134,3135,1,0,0,0,3135,429,1,0,0,0,3136,3139,3,576, - 288,0,3137,3139,3,296,148,0,3138,3136,1,0,0,0,3138,3137,1,0,0,0, - 3139,3140,1,0,0,0,3140,3141,5,405,0,0,3141,3142,5,426,0,0,3142,431, - 1,0,0,0,3143,3153,5,115,0,0,3144,3145,5,289,0,0,3145,3146,5,399, - 0,0,3146,3154,7,27,0,0,3147,3148,5,118,0,0,3148,3149,5,399,0,0,3149, - 3154,5,426,0,0,3150,3151,5,306,0,0,3151,3152,5,399,0,0,3152,3154, - 5,431,0,0,3153,3144,1,0,0,0,3153,3147,1,0,0,0,3153,3150,1,0,0,0, - 3154,3155,1,0,0,0,3155,3156,5,400,0,0,3156,433,1,0,0,0,3157,3158, - 5,160,0,0,3158,3159,5,426,0,0,3159,3160,5,233,0,0,3160,3161,5,426, - 0,0,3161,3162,5,301,0,0,3162,3167,5,426,0,0,3163,3164,5,159,0,0, - 3164,3165,5,426,0,0,3165,3166,5,232,0,0,3166,3168,5,426,0,0,3167, - 3163,1,0,0,0,3167,3168,1,0,0,0,3168,3171,1,0,0,0,3169,3171,3,642, - 321,0,3170,3157,1,0,0,0,3170,3169,1,0,0,0,3171,435,1,0,0,0,3172, - 3173,5,184,0,0,3173,3182,5,128,0,0,3174,3175,5,184,0,0,3175,3176, - 5,128,0,0,3176,3177,3,642,321,0,3177,3178,5,426,0,0,3178,3182,1, - 0,0,0,3179,3180,5,184,0,0,3180,3182,3,480,240,0,3181,3172,1,0,0, - 0,3181,3174,1,0,0,0,3181,3179,1,0,0,0,3182,437,1,0,0,0,3183,3185, - 5,58,0,0,3184,3186,5,333,0,0,3185,3184,1,0,0,0,3185,3186,1,0,0,0, - 3186,3188,1,0,0,0,3187,3189,5,345,0,0,3188,3187,1,0,0,0,3188,3189, - 1,0,0,0,3189,3191,1,0,0,0,3190,3192,5,123,0,0,3191,3190,1,0,0,0, - 3191,3192,1,0,0,0,3192,3193,1,0,0,0,3193,3195,5,329,0,0,3194,3196, - 3,32,16,0,3195,3194,1,0,0,0,3195,3196,1,0,0,0,3196,3197,1,0,0,0, - 3197,3254,3,482,241,0,3198,3200,3,436,218,0,3199,3201,3,200,100, - 0,3200,3199,1,0,0,0,3200,3201,1,0,0,0,3201,3203,1,0,0,0,3202,3204, - 3,222,111,0,3203,3202,1,0,0,0,3203,3204,1,0,0,0,3204,3206,1,0,0, - 0,3205,3207,3,246,123,0,3206,3205,1,0,0,0,3206,3207,1,0,0,0,3207, - 3209,1,0,0,0,3208,3210,3,426,213,0,3209,3208,1,0,0,0,3209,3210,1, - 0,0,0,3210,3212,1,0,0,0,3211,3213,3,224,112,0,3212,3211,1,0,0,0, - 3212,3213,1,0,0,0,3213,3215,1,0,0,0,3214,3216,3,198,99,0,3215,3214, - 1,0,0,0,3215,3216,1,0,0,0,3216,3255,1,0,0,0,3217,3218,5,399,0,0, - 3218,3219,3,250,125,0,3219,3220,5,400,0,0,3220,3222,1,0,0,0,3221, - 3217,1,0,0,0,3221,3222,1,0,0,0,3222,3224,1,0,0,0,3223,3225,3,196, - 98,0,3224,3223,1,0,0,0,3224,3225,1,0,0,0,3225,3227,1,0,0,0,3226, - 3228,3,200,100,0,3227,3226,1,0,0,0,3227,3228,1,0,0,0,3228,3230,1, - 0,0,0,3229,3231,3,208,104,0,3230,3229,1,0,0,0,3230,3231,1,0,0,0, - 3231,3233,1,0,0,0,3232,3234,3,210,105,0,3233,3232,1,0,0,0,3233,3234, - 1,0,0,0,3234,3236,1,0,0,0,3235,3237,3,222,111,0,3236,3235,1,0,0, - 0,3236,3237,1,0,0,0,3237,3239,1,0,0,0,3238,3240,3,246,123,0,3239, - 3238,1,0,0,0,3239,3240,1,0,0,0,3240,3242,1,0,0,0,3241,3243,3,426, - 213,0,3242,3241,1,0,0,0,3242,3243,1,0,0,0,3243,3245,1,0,0,0,3244, - 3246,3,224,112,0,3245,3244,1,0,0,0,3245,3246,1,0,0,0,3246,3248,1, - 0,0,0,3247,3249,3,198,99,0,3248,3247,1,0,0,0,3248,3249,1,0,0,0,3249, - 3252,1,0,0,0,3250,3251,5,17,0,0,3251,3253,3,382,191,0,3252,3250, - 1,0,0,0,3252,3253,1,0,0,0,3253,3255,1,0,0,0,3254,3198,1,0,0,0,3254, - 3221,1,0,0,0,3255,3319,1,0,0,0,3256,3257,5,58,0,0,3257,3258,5,195, - 0,0,3258,3260,5,329,0,0,3259,3261,3,32,16,0,3260,3259,1,0,0,0,3260, - 3261,1,0,0,0,3261,3262,1,0,0,0,3262,3316,3,482,241,0,3263,3265,3, - 436,218,0,3264,3266,3,222,111,0,3265,3264,1,0,0,0,3265,3266,1,0, - 0,0,3266,3268,1,0,0,0,3267,3269,3,246,123,0,3268,3267,1,0,0,0,3268, - 3269,1,0,0,0,3269,3271,1,0,0,0,3270,3272,3,426,213,0,3271,3270,1, - 0,0,0,3271,3272,1,0,0,0,3272,3274,1,0,0,0,3273,3275,3,224,112,0, - 3274,3273,1,0,0,0,3274,3275,1,0,0,0,3275,3277,1,0,0,0,3276,3278, - 3,198,99,0,3277,3276,1,0,0,0,3277,3278,1,0,0,0,3278,3317,1,0,0,0, - 3279,3280,5,399,0,0,3280,3281,3,250,125,0,3281,3282,5,400,0,0,3282, - 3284,1,0,0,0,3283,3279,1,0,0,0,3283,3284,1,0,0,0,3284,3286,1,0,0, - 0,3285,3287,3,196,98,0,3286,3285,1,0,0,0,3286,3287,1,0,0,0,3287, - 3289,1,0,0,0,3288,3290,3,200,100,0,3289,3288,1,0,0,0,3289,3290,1, - 0,0,0,3290,3292,1,0,0,0,3291,3293,3,208,104,0,3292,3291,1,0,0,0, - 3292,3293,1,0,0,0,3293,3295,1,0,0,0,3294,3296,3,210,105,0,3295,3294, - 1,0,0,0,3295,3296,1,0,0,0,3296,3298,1,0,0,0,3297,3299,3,222,111, - 0,3298,3297,1,0,0,0,3298,3299,1,0,0,0,3299,3301,1,0,0,0,3300,3302, - 3,246,123,0,3301,3300,1,0,0,0,3301,3302,1,0,0,0,3302,3304,1,0,0, - 0,3303,3305,3,426,213,0,3304,3303,1,0,0,0,3304,3305,1,0,0,0,3305, - 3307,1,0,0,0,3306,3308,3,224,112,0,3307,3306,1,0,0,0,3307,3308,1, - 0,0,0,3308,3310,1,0,0,0,3309,3311,3,198,99,0,3310,3309,1,0,0,0,3310, - 3311,1,0,0,0,3311,3314,1,0,0,0,3312,3313,5,17,0,0,3313,3315,3,382, - 191,0,3314,3312,1,0,0,0,3314,3315,1,0,0,0,3315,3317,1,0,0,0,3316, - 3263,1,0,0,0,3316,3283,1,0,0,0,3317,3319,1,0,0,0,3318,3183,1,0,0, - 0,3318,3256,1,0,0,0,3319,439,1,0,0,0,3320,3321,5,58,0,0,3321,3323, - 5,69,0,0,3322,3324,3,32,16,0,3323,3322,1,0,0,0,3323,3324,1,0,0,0, - 3324,3325,1,0,0,0,3325,3328,3,642,321,0,3326,3327,5,352,0,0,3327, - 3329,5,426,0,0,3328,3326,1,0,0,0,3328,3329,1,0,0,0,3329,3332,1,0, - 0,0,3330,3331,5,367,0,0,3331,3333,5,426,0,0,3332,3330,1,0,0,0,3332, - 3333,1,0,0,0,3333,3336,1,0,0,0,3334,3335,5,47,0,0,3335,3337,5,426, - 0,0,3336,3334,1,0,0,0,3336,3337,1,0,0,0,3337,3341,1,0,0,0,3338,3339, - 5,387,0,0,3339,3340,5,77,0,0,3340,3342,3,230,115,0,3341,3338,1,0, - 0,0,3341,3342,1,0,0,0,3342,441,1,0,0,0,3343,3344,5,101,0,0,3344, - 3346,5,69,0,0,3345,3347,3,30,15,0,3346,3345,1,0,0,0,3346,3347,1, - 0,0,0,3347,3348,1,0,0,0,3348,3349,3,642,321,0,3349,443,1,0,0,0,3350, - 3351,3,642,321,0,3351,3352,5,395,0,0,3352,3354,1,0,0,0,3353,3350, - 1,0,0,0,3354,3357,1,0,0,0,3355,3353,1,0,0,0,3355,3356,1,0,0,0,3356, - 3358,1,0,0,0,3357,3355,1,0,0,0,3358,3359,5,415,0,0,3359,445,1,0, - 0,0,3360,3365,3,584,292,0,3361,3362,5,397,0,0,3362,3364,3,584,292, - 0,3363,3361,1,0,0,0,3364,3367,1,0,0,0,3365,3363,1,0,0,0,3365,3366, - 1,0,0,0,3366,447,1,0,0,0,3367,3365,1,0,0,0,3368,3373,3,642,321,0, - 3369,3370,5,397,0,0,3370,3372,3,642,321,0,3371,3369,1,0,0,0,3372, - 3375,1,0,0,0,3373,3371,1,0,0,0,3373,3374,1,0,0,0,3374,449,1,0,0, - 0,3375,3373,1,0,0,0,3376,3377,5,139,0,0,3377,3378,3,452,226,0,3378, - 451,1,0,0,0,3379,3380,5,359,0,0,3380,3383,3,460,230,0,3381,3382, - 5,397,0,0,3382,3384,3,460,230,0,3383,3381,1,0,0,0,3384,3385,1,0, - 0,0,3385,3383,1,0,0,0,3385,3386,1,0,0,0,3386,3389,1,0,0,0,3387,3389, - 3,456,228,0,3388,3379,1,0,0,0,3388,3387,1,0,0,0,3389,453,1,0,0,0, - 3390,3394,3,470,235,0,3391,3393,3,464,232,0,3392,3391,1,0,0,0,3393, - 3396,1,0,0,0,3394,3392,1,0,0,0,3394,3395,1,0,0,0,3395,3423,1,0,0, - 0,3396,3394,1,0,0,0,3397,3401,3,500,250,0,3398,3400,3,464,232,0, - 3399,3398,1,0,0,0,3400,3403,1,0,0,0,3401,3399,1,0,0,0,3401,3402, - 1,0,0,0,3402,3423,1,0,0,0,3403,3401,1,0,0,0,3404,3408,3,488,244, - 0,3405,3407,3,464,232,0,3406,3405,1,0,0,0,3407,3410,1,0,0,0,3408, - 3406,1,0,0,0,3408,3409,1,0,0,0,3409,3423,1,0,0,0,3410,3408,1,0,0, - 0,3411,3415,3,494,247,0,3412,3414,3,464,232,0,3413,3412,1,0,0,0, - 3414,3417,1,0,0,0,3415,3413,1,0,0,0,3415,3416,1,0,0,0,3416,3423, - 1,0,0,0,3417,3415,1,0,0,0,3418,3419,5,399,0,0,3419,3420,3,456,228, - 0,3420,3421,5,400,0,0,3421,3423,1,0,0,0,3422,3390,1,0,0,0,3422,3397, - 1,0,0,0,3422,3404,1,0,0,0,3422,3411,1,0,0,0,3422,3418,1,0,0,0,3423, - 455,1,0,0,0,3424,3435,3,454,227,0,3425,3426,3,462,231,0,3426,3431, - 3,458,229,0,3427,3428,5,224,0,0,3428,3432,3,584,292,0,3429,3430, - 5,370,0,0,3430,3432,3,266,133,0,3431,3427,1,0,0,0,3431,3429,1,0, - 0,0,3431,3432,1,0,0,0,3432,3434,1,0,0,0,3433,3425,1,0,0,0,3434,3437, - 1,0,0,0,3435,3433,1,0,0,0,3435,3436,1,0,0,0,3436,457,1,0,0,0,3437, - 3435,1,0,0,0,3438,3443,3,470,235,0,3439,3443,3,500,250,0,3440,3443, - 3,488,244,0,3441,3443,3,494,247,0,3442,3438,1,0,0,0,3442,3439,1, - 0,0,0,3442,3440,1,0,0,0,3442,3441,1,0,0,0,3443,3447,1,0,0,0,3444, - 3446,3,464,232,0,3445,3444,1,0,0,0,3446,3449,1,0,0,0,3447,3445,1, - 0,0,0,3447,3448,1,0,0,0,3448,459,1,0,0,0,3449,3447,1,0,0,0,3450, - 3452,5,250,0,0,3451,3450,1,0,0,0,3451,3452,1,0,0,0,3452,3453,1,0, - 0,0,3453,3455,3,478,239,0,3454,3456,3,468,234,0,3455,3454,1,0,0, - 0,3455,3456,1,0,0,0,3456,3461,1,0,0,0,3457,3459,5,17,0,0,3458,3457, - 1,0,0,0,3458,3459,1,0,0,0,3459,3460,1,0,0,0,3460,3462,3,642,321, - 0,3461,3458,1,0,0,0,3461,3462,1,0,0,0,3462,3463,1,0,0,0,3463,3464, - 5,399,0,0,3464,3465,3,446,223,0,3465,3466,5,400,0,0,3466,461,1,0, - 0,0,3467,3482,5,397,0,0,3468,3479,5,157,0,0,3469,3479,5,60,0,0,3470, - 3472,7,28,0,0,3471,3473,5,231,0,0,3472,3471,1,0,0,0,3472,3473,1, - 0,0,0,3473,3479,1,0,0,0,3474,3476,5,180,0,0,3475,3477,7,29,0,0,3476, - 3475,1,0,0,0,3476,3477,1,0,0,0,3477,3479,1,0,0,0,3478,3468,1,0,0, - 0,3478,3469,1,0,0,0,3478,3470,1,0,0,0,3478,3474,1,0,0,0,3478,3479, - 1,0,0,0,3479,3480,1,0,0,0,3480,3482,5,171,0,0,3481,3467,1,0,0,0, - 3481,3478,1,0,0,0,3482,463,1,0,0,0,3483,3484,5,178,0,0,3484,3485, - 5,378,0,0,3485,3486,5,231,0,0,3486,3487,3,554,277,0,3487,3497,3, - 466,233,0,3488,3489,5,17,0,0,3489,3494,3,642,321,0,3490,3491,5,397, - 0,0,3491,3493,3,642,321,0,3492,3490,1,0,0,0,3493,3496,1,0,0,0,3494, - 3492,1,0,0,0,3494,3495,1,0,0,0,3495,3498,1,0,0,0,3496,3494,1,0,0, - 0,3497,3488,1,0,0,0,3497,3498,1,0,0,0,3498,3541,1,0,0,0,3499,3501, - 5,397,0,0,3500,3499,1,0,0,0,3500,3501,1,0,0,0,3501,3502,1,0,0,0, - 3502,3538,5,178,0,0,3503,3504,5,378,0,0,3504,3505,3,554,277,0,3505, - 3515,3,466,233,0,3506,3507,5,17,0,0,3507,3512,3,642,321,0,3508,3509, - 5,397,0,0,3509,3511,3,642,321,0,3510,3508,1,0,0,0,3511,3514,1,0, - 0,0,3512,3510,1,0,0,0,3512,3513,1,0,0,0,3513,3516,1,0,0,0,3514,3512, - 1,0,0,0,3515,3506,1,0,0,0,3515,3516,1,0,0,0,3516,3539,1,0,0,0,3517, - 3518,5,329,0,0,3518,3519,5,399,0,0,3519,3520,3,498,249,0,3520,3522, - 5,400,0,0,3521,3523,5,17,0,0,3522,3521,1,0,0,0,3522,3523,1,0,0,0, - 3523,3524,1,0,0,0,3524,3536,3,466,233,0,3525,3526,5,399,0,0,3526, - 3531,3,642,321,0,3527,3528,5,397,0,0,3528,3530,3,642,321,0,3529, - 3527,1,0,0,0,3530,3533,1,0,0,0,3531,3529,1,0,0,0,3531,3532,1,0,0, - 0,3532,3534,1,0,0,0,3533,3531,1,0,0,0,3534,3535,5,400,0,0,3535,3537, - 1,0,0,0,3536,3525,1,0,0,0,3536,3537,1,0,0,0,3537,3539,1,0,0,0,3538, - 3503,1,0,0,0,3538,3517,1,0,0,0,3539,3541,1,0,0,0,3540,3483,1,0,0, - 0,3540,3500,1,0,0,0,3541,465,1,0,0,0,3542,3543,3,642,321,0,3543, - 467,1,0,0,0,3544,3545,5,331,0,0,3545,3546,5,399,0,0,3546,3547,5, - 30,0,0,3547,3548,5,431,0,0,3548,3549,5,230,0,0,3549,3550,5,221,0, - 0,3550,3560,5,431,0,0,3551,3552,5,224,0,0,3552,3557,3,584,292,0, - 3553,3554,5,397,0,0,3554,3556,3,584,292,0,3555,3553,1,0,0,0,3556, - 3559,1,0,0,0,3557,3555,1,0,0,0,3557,3558,1,0,0,0,3558,3561,1,0,0, - 0,3559,3557,1,0,0,0,3560,3551,1,0,0,0,3560,3561,1,0,0,0,3561,3562, - 1,0,0,0,3562,3572,5,400,0,0,3563,3564,5,331,0,0,3564,3568,5,399, - 0,0,3565,3566,5,431,0,0,3566,3569,7,30,0,0,3567,3569,5,430,0,0,3568, - 3565,1,0,0,0,3568,3567,1,0,0,0,3569,3570,1,0,0,0,3570,3572,5,400, - 0,0,3571,3544,1,0,0,0,3571,3563,1,0,0,0,3572,469,1,0,0,0,3573,3575, - 3,478,239,0,3574,3576,3,226,113,0,3575,3574,1,0,0,0,3575,3576,1, - 0,0,0,3576,3578,1,0,0,0,3577,3579,3,468,234,0,3578,3577,1,0,0,0, - 3578,3579,1,0,0,0,3579,3581,1,0,0,0,3580,3582,3,472,236,0,3581,3580, - 1,0,0,0,3581,3582,1,0,0,0,3582,3587,1,0,0,0,3583,3585,5,17,0,0,3584, - 3583,1,0,0,0,3584,3585,1,0,0,0,3585,3586,1,0,0,0,3586,3588,3,642, - 321,0,3587,3584,1,0,0,0,3587,3588,1,0,0,0,3588,471,1,0,0,0,3589, - 3599,5,134,0,0,3590,3591,5,327,0,0,3591,3592,5,17,0,0,3592,3593, - 5,221,0,0,3593,3600,3,584,292,0,3594,3595,5,134,0,0,3595,3596,5, - 328,0,0,3596,3597,5,17,0,0,3597,3598,5,221,0,0,3598,3600,5,431,0, - 0,3599,3590,1,0,0,0,3599,3594,1,0,0,0,3600,473,1,0,0,0,3601,3602, - 3,642,321,0,3602,475,1,0,0,0,3603,3604,3,642,321,0,3604,477,1,0, - 0,0,3605,3608,3,480,240,0,3606,3608,3,484,242,0,3607,3605,1,0,0, - 0,3607,3606,1,0,0,0,3608,479,1,0,0,0,3609,3610,3,642,321,0,3610, - 3611,5,395,0,0,3611,3614,3,642,321,0,3612,3613,5,395,0,0,3613,3615, - 3,642,321,0,3614,3612,1,0,0,0,3614,3615,1,0,0,0,3615,3618,1,0,0, - 0,3616,3618,3,642,321,0,3617,3609,1,0,0,0,3617,3616,1,0,0,0,3618, - 481,1,0,0,0,3619,3620,3,642,321,0,3620,3621,5,395,0,0,3621,3624, - 3,642,321,0,3622,3623,5,395,0,0,3623,3625,3,642,321,0,3624,3622, - 1,0,0,0,3624,3625,1,0,0,0,3625,3628,1,0,0,0,3626,3628,3,642,321, - 0,3627,3619,1,0,0,0,3627,3626,1,0,0,0,3628,483,1,0,0,0,3629,3630, - 3,642,321,0,3630,3631,5,395,0,0,3631,3633,1,0,0,0,3632,3629,1,0, - 0,0,3632,3633,1,0,0,0,3633,3634,1,0,0,0,3634,3635,3,642,321,0,3635, - 485,1,0,0,0,3636,3637,3,642,321,0,3637,3638,5,395,0,0,3638,3640, - 1,0,0,0,3639,3636,1,0,0,0,3639,3640,1,0,0,0,3640,3641,1,0,0,0,3641, - 3642,3,642,321,0,3642,487,1,0,0,0,3643,3644,5,399,0,0,3644,3645, - 3,362,181,0,3645,3647,5,400,0,0,3646,3648,5,17,0,0,3647,3646,1,0, - 0,0,3647,3648,1,0,0,0,3648,3649,1,0,0,0,3649,3650,3,642,321,0,3650, - 489,1,0,0,0,3651,3653,3,546,273,0,3652,3654,3,544,272,0,3653,3652, - 1,0,0,0,3653,3654,1,0,0,0,3654,3663,1,0,0,0,3655,3663,3,544,272, - 0,3656,3658,3,550,275,0,3657,3659,3,552,276,0,3658,3657,1,0,0,0, - 3658,3659,1,0,0,0,3659,3663,1,0,0,0,3660,3663,3,552,276,0,3661,3663, - 3,548,274,0,3662,3651,1,0,0,0,3662,3655,1,0,0,0,3662,3656,1,0,0, - 0,3662,3660,1,0,0,0,3662,3661,1,0,0,0,3663,491,1,0,0,0,3664,3668, - 3,488,244,0,3665,3668,3,470,235,0,3666,3668,3,494,247,0,3667,3664, - 1,0,0,0,3667,3665,1,0,0,0,3667,3666,1,0,0,0,3668,493,1,0,0,0,3669, - 3670,3,642,321,0,3670,3671,5,399,0,0,3671,3672,5,224,0,0,3672,3674, - 3,492,246,0,3673,3675,3,490,245,0,3674,3673,1,0,0,0,3674,3675,1, - 0,0,0,3675,3691,1,0,0,0,3676,3677,5,432,0,0,3677,3678,5,399,0,0, - 3678,3679,3,584,292,0,3679,3688,5,400,0,0,3680,3681,5,397,0,0,3681, - 3682,5,432,0,0,3682,3683,5,399,0,0,3683,3684,3,584,292,0,3684,3685, - 5,400,0,0,3685,3687,1,0,0,0,3686,3680,1,0,0,0,3687,3690,1,0,0,0, - 3688,3686,1,0,0,0,3688,3689,1,0,0,0,3689,3692,1,0,0,0,3690,3688, - 1,0,0,0,3691,3676,1,0,0,0,3691,3692,1,0,0,0,3692,3693,1,0,0,0,3693, - 3695,5,400,0,0,3694,3696,3,642,321,0,3695,3694,1,0,0,0,3695,3696, - 1,0,0,0,3696,495,1,0,0,0,3697,3698,5,384,0,0,3698,3699,3,584,292, - 0,3699,497,1,0,0,0,3700,3719,5,374,0,0,3701,3706,3,540,270,0,3702, - 3703,5,397,0,0,3703,3705,3,540,270,0,3704,3702,1,0,0,0,3705,3708, - 1,0,0,0,3706,3704,1,0,0,0,3706,3707,1,0,0,0,3707,3720,1,0,0,0,3708, - 3706,1,0,0,0,3709,3710,5,399,0,0,3710,3711,3,536,268,0,3711,3716, - 5,400,0,0,3712,3713,5,397,0,0,3713,3715,3,540,270,0,3714,3712,1, - 0,0,0,3715,3718,1,0,0,0,3716,3714,1,0,0,0,3716,3717,1,0,0,0,3717, - 3720,1,0,0,0,3718,3716,1,0,0,0,3719,3701,1,0,0,0,3719,3709,1,0,0, - 0,3720,499,1,0,0,0,3721,3722,5,329,0,0,3722,3723,5,399,0,0,3723, - 3724,3,498,249,0,3724,3726,5,400,0,0,3725,3727,5,17,0,0,3726,3725, - 1,0,0,0,3726,3727,1,0,0,0,3727,3728,1,0,0,0,3728,3738,3,466,233, - 0,3729,3730,5,399,0,0,3730,3735,3,642,321,0,3731,3732,5,397,0,0, - 3732,3734,3,642,321,0,3733,3731,1,0,0,0,3734,3737,1,0,0,0,3735,3733, - 1,0,0,0,3735,3736,1,0,0,0,3736,3739,1,0,0,0,3737,3735,1,0,0,0,3738, - 3729,1,0,0,0,3738,3739,1,0,0,0,3739,3740,1,0,0,0,3740,3741,5,400, - 0,0,3741,501,1,0,0,0,3742,3744,5,299,0,0,3743,3745,5,436,0,0,3744, - 3743,1,0,0,0,3744,3745,1,0,0,0,3745,3759,1,0,0,0,3746,3748,7,22, - 0,0,3747,3746,1,0,0,0,3747,3748,1,0,0,0,3748,3749,1,0,0,0,3749,3754, - 3,506,253,0,3750,3751,5,397,0,0,3751,3753,3,506,253,0,3752,3750, - 1,0,0,0,3753,3756,1,0,0,0,3754,3752,1,0,0,0,3754,3755,1,0,0,0,3755, - 3760,1,0,0,0,3756,3754,1,0,0,0,3757,3758,5,347,0,0,3758,3760,3,504, - 252,0,3759,3747,1,0,0,0,3759,3757,1,0,0,0,3760,3763,1,0,0,0,3761, - 3763,3,508,254,0,3762,3742,1,0,0,0,3762,3761,1,0,0,0,3763,503,1, - 0,0,0,3764,3765,5,399,0,0,3765,3766,3,512,256,0,3766,3767,5,400, - 0,0,3767,3768,3,212,106,0,3768,3769,3,216,108,0,3769,3770,5,370, - 0,0,3770,3783,5,426,0,0,3771,3781,5,17,0,0,3772,3775,5,399,0,0,3773, - 3776,3,448,224,0,3774,3776,3,248,124,0,3775,3773,1,0,0,0,3775,3774, - 1,0,0,0,3776,3777,1,0,0,0,3777,3778,5,400,0,0,3778,3782,1,0,0,0, - 3779,3782,3,448,224,0,3780,3782,3,248,124,0,3781,3772,1,0,0,0,3781, - 3779,1,0,0,0,3781,3780,1,0,0,0,3782,3784,1,0,0,0,3783,3771,1,0,0, - 0,3783,3784,1,0,0,0,3784,3785,1,0,0,0,3785,3786,3,212,106,0,3786, - 3787,3,214,107,0,3787,505,1,0,0,0,3788,3812,3,444,222,0,3789,3792, - 3,256,128,0,3790,3792,3,584,292,0,3791,3789,1,0,0,0,3791,3790,1, - 0,0,0,3792,3809,1,0,0,0,3793,3795,5,17,0,0,3794,3793,1,0,0,0,3794, - 3795,1,0,0,0,3795,3796,1,0,0,0,3796,3810,3,642,321,0,3797,3798,5, - 17,0,0,3798,3799,5,399,0,0,3799,3804,3,642,321,0,3800,3801,5,397, - 0,0,3801,3803,3,642,321,0,3802,3800,1,0,0,0,3803,3806,1,0,0,0,3804, - 3802,1,0,0,0,3804,3805,1,0,0,0,3805,3807,1,0,0,0,3806,3804,1,0,0, - 0,3807,3808,5,400,0,0,3808,3810,1,0,0,0,3809,3794,1,0,0,0,3809,3797, - 1,0,0,0,3809,3810,1,0,0,0,3810,3812,1,0,0,0,3811,3788,1,0,0,0,3811, - 3791,1,0,0,0,3812,507,1,0,0,0,3813,3814,7,31,0,0,3814,3815,3,512, - 256,0,3815,3816,3,212,106,0,3816,3817,3,216,108,0,3817,3818,5,370, - 0,0,3818,3831,5,426,0,0,3819,3829,5,17,0,0,3820,3823,5,399,0,0,3821, - 3824,3,448,224,0,3822,3824,3,248,124,0,3823,3821,1,0,0,0,3823,3822, - 1,0,0,0,3824,3825,1,0,0,0,3825,3826,5,400,0,0,3826,3830,1,0,0,0, - 3827,3830,3,448,224,0,3828,3830,3,248,124,0,3829,3820,1,0,0,0,3829, - 3827,1,0,0,0,3829,3828,1,0,0,0,3830,3832,1,0,0,0,3831,3819,1,0,0, - 0,3831,3832,1,0,0,0,3832,3833,1,0,0,0,3833,3834,3,212,106,0,3834, - 3835,3,214,107,0,3835,509,1,0,0,0,3836,3839,3,444,222,0,3837,3839, - 3,584,292,0,3838,3836,1,0,0,0,3838,3837,1,0,0,0,3839,511,1,0,0,0, - 3840,3845,3,510,255,0,3841,3842,5,397,0,0,3842,3844,3,510,255,0, - 3843,3841,1,0,0,0,3844,3847,1,0,0,0,3845,3843,1,0,0,0,3845,3846, - 1,0,0,0,3846,513,1,0,0,0,3847,3845,1,0,0,0,3848,3849,5,386,0,0,3849, - 3850,3,642,321,0,3850,3851,5,17,0,0,3851,3859,3,516,258,0,3852,3853, - 5,397,0,0,3853,3854,3,642,321,0,3854,3855,5,17,0,0,3855,3856,3,516, - 258,0,3856,3858,1,0,0,0,3857,3852,1,0,0,0,3858,3861,1,0,0,0,3859, - 3857,1,0,0,0,3859,3860,1,0,0,0,3860,515,1,0,0,0,3861,3859,1,0,0, - 0,3862,3875,3,642,321,0,3863,3865,5,399,0,0,3864,3866,3,642,321, - 0,3865,3864,1,0,0,0,3865,3866,1,0,0,0,3866,3868,1,0,0,0,3867,3869, - 3,490,245,0,3868,3867,1,0,0,0,3868,3869,1,0,0,0,3869,3871,1,0,0, - 0,3870,3872,3,518,259,0,3871,3870,1,0,0,0,3871,3872,1,0,0,0,3872, - 3873,1,0,0,0,3873,3875,5,400,0,0,3874,3862,1,0,0,0,3874,3863,1,0, - 0,0,3875,517,1,0,0,0,3876,3890,7,32,0,0,3877,3878,5,354,0,0,3878, - 3884,5,247,0,0,3879,3880,5,62,0,0,3880,3884,5,291,0,0,3881,3882, - 5,431,0,0,3882,3884,5,247,0,0,3883,3877,1,0,0,0,3883,3879,1,0,0, - 0,3883,3881,1,0,0,0,3884,3891,1,0,0,0,3885,3886,5,25,0,0,3886,3887, - 3,520,260,0,3887,3888,5,11,0,0,3888,3889,3,520,260,0,3889,3891,1, - 0,0,0,3890,3883,1,0,0,0,3890,3885,1,0,0,0,3891,519,1,0,0,0,3892, - 3893,7,33,0,0,3893,3897,7,34,0,0,3894,3895,5,62,0,0,3895,3897,5, - 291,0,0,3896,3892,1,0,0,0,3896,3894,1,0,0,0,3897,521,1,0,0,0,3898, - 3899,5,144,0,0,3899,3905,5,32,0,0,3900,3906,3,256,128,0,3901,3906, - 3,524,262,0,3902,3906,3,526,263,0,3903,3904,5,399,0,0,3904,3906, - 5,400,0,0,3905,3900,1,0,0,0,3905,3901,1,0,0,0,3905,3902,1,0,0,0, - 3905,3903,1,0,0,0,3906,523,1,0,0,0,3907,3910,5,290,0,0,3908,3910, - 5,61,0,0,3909,3907,1,0,0,0,3909,3908,1,0,0,0,3910,3911,1,0,0,0,3911, - 3912,5,399,0,0,3912,3917,3,584,292,0,3913,3914,5,397,0,0,3914,3916, - 3,584,292,0,3915,3913,1,0,0,0,3916,3919,1,0,0,0,3917,3915,1,0,0, - 0,3917,3918,1,0,0,0,3918,3920,1,0,0,0,3919,3917,1,0,0,0,3920,3921, - 5,400,0,0,3921,525,1,0,0,0,3922,3927,3,542,271,0,3923,3924,5,387, - 0,0,3924,3928,5,290,0,0,3925,3926,5,387,0,0,3926,3928,5,61,0,0,3927, - 3923,1,0,0,0,3927,3925,1,0,0,0,3927,3928,1,0,0,0,3928,3942,1,0,0, - 0,3929,3930,5,145,0,0,3930,3931,5,305,0,0,3931,3932,5,399,0,0,3932, - 3937,3,528,264,0,3933,3934,5,397,0,0,3934,3936,3,528,264,0,3935, - 3933,1,0,0,0,3936,3939,1,0,0,0,3937,3935,1,0,0,0,3937,3938,1,0,0, - 0,3938,3940,1,0,0,0,3939,3937,1,0,0,0,3940,3941,5,400,0,0,3941,3943, - 1,0,0,0,3942,3929,1,0,0,0,3942,3943,1,0,0,0,3943,527,1,0,0,0,3944, - 3946,5,399,0,0,3945,3947,3,584,292,0,3946,3945,1,0,0,0,3946,3947, - 1,0,0,0,3947,3952,1,0,0,0,3948,3949,5,397,0,0,3949,3951,3,584,292, - 0,3950,3948,1,0,0,0,3951,3954,1,0,0,0,3952,3950,1,0,0,0,3952,3953, - 1,0,0,0,3953,3955,1,0,0,0,3954,3952,1,0,0,0,3955,3958,5,400,0,0, - 3956,3958,3,584,292,0,3957,3944,1,0,0,0,3957,3956,1,0,0,0,3958,529, - 1,0,0,0,3959,3960,5,146,0,0,3960,3961,3,584,292,0,3961,531,1,0,0, - 0,3962,3963,5,256,0,0,3963,3964,3,584,292,0,3964,533,1,0,0,0,3965, - 3968,5,83,0,0,3966,3968,3,584,292,0,3967,3965,1,0,0,0,3967,3966, - 1,0,0,0,3968,535,1,0,0,0,3969,3971,3,584,292,0,3970,3972,5,17,0, - 0,3971,3970,1,0,0,0,3971,3972,1,0,0,0,3972,3974,1,0,0,0,3973,3975, - 3,642,321,0,3974,3973,1,0,0,0,3974,3975,1,0,0,0,3975,3986,1,0,0, - 0,3976,3977,5,397,0,0,3977,3979,3,584,292,0,3978,3980,5,17,0,0,3979, - 3978,1,0,0,0,3979,3980,1,0,0,0,3980,3982,1,0,0,0,3981,3983,3,642, - 321,0,3982,3981,1,0,0,0,3982,3983,1,0,0,0,3983,3985,1,0,0,0,3984, - 3976,1,0,0,0,3985,3988,1,0,0,0,3986,3984,1,0,0,0,3986,3987,1,0,0, - 0,3987,537,1,0,0,0,3988,3986,1,0,0,0,3989,3992,3,540,270,0,3990, - 3992,3,542,271,0,3991,3989,1,0,0,0,3991,3990,1,0,0,0,3992,539,1, - 0,0,0,3993,3994,5,399,0,0,3994,3995,3,542,271,0,3995,3996,5,400, - 0,0,3996,541,1,0,0,0,3997,4004,3,534,267,0,3998,3999,5,397,0,0,3999, - 4001,3,534,267,0,4000,3998,1,0,0,0,4001,4002,1,0,0,0,4002,4000,1, - 0,0,0,4002,4003,1,0,0,0,4003,4005,1,0,0,0,4004,4000,1,0,0,0,4004, - 4005,1,0,0,0,4005,543,1,0,0,0,4006,4007,5,229,0,0,4007,4008,5,32, - 0,0,4008,4013,3,310,155,0,4009,4010,5,397,0,0,4010,4012,3,310,155, - 0,4011,4009,1,0,0,0,4012,4015,1,0,0,0,4013,4011,1,0,0,0,4013,4014, - 1,0,0,0,4014,545,1,0,0,0,4015,4013,1,0,0,0,4016,4017,5,237,0,0,4017, - 4018,5,32,0,0,4018,4019,3,538,269,0,4019,547,1,0,0,0,4020,4021,5, - 41,0,0,4021,4022,5,32,0,0,4022,4023,3,538,269,0,4023,549,1,0,0,0, - 4024,4025,5,97,0,0,4025,4026,5,32,0,0,4026,4027,3,538,269,0,4027, - 551,1,0,0,0,4028,4029,5,314,0,0,4029,4049,5,32,0,0,4030,4031,5,399, - 0,0,4031,4036,3,310,155,0,4032,4033,5,397,0,0,4033,4035,3,310,155, - 0,4034,4032,1,0,0,0,4035,4038,1,0,0,0,4036,4034,1,0,0,0,4036,4037, - 1,0,0,0,4037,4039,1,0,0,0,4038,4036,1,0,0,0,4039,4040,5,400,0,0, - 4040,4050,1,0,0,0,4041,4046,3,310,155,0,4042,4043,5,397,0,0,4043, - 4045,3,310,155,0,4044,4042,1,0,0,0,4045,4048,1,0,0,0,4046,4044,1, - 0,0,0,4046,4047,1,0,0,0,4047,4050,1,0,0,0,4048,4046,1,0,0,0,4049, - 4030,1,0,0,0,4049,4041,1,0,0,0,4050,553,1,0,0,0,4051,4052,5,349, - 0,0,4052,4056,5,399,0,0,4053,4057,5,179,0,0,4054,4057,5,343,0,0, - 4055,4057,5,29,0,0,4056,4053,1,0,0,0,4056,4054,1,0,0,0,4056,4055, - 1,0,0,0,4056,4057,1,0,0,0,4057,4059,1,0,0,0,4058,4060,3,510,255, - 0,4059,4058,1,0,0,0,4059,4060,1,0,0,0,4060,4061,1,0,0,0,4061,4062, - 5,139,0,0,4062,4063,3,510,255,0,4063,4064,5,400,0,0,4064,4105,1, - 0,0,0,4065,4066,3,562,281,0,4066,4081,5,399,0,0,4067,4082,5,415, - 0,0,4068,4070,7,22,0,0,4069,4068,1,0,0,0,4069,4070,1,0,0,0,4070, - 4079,1,0,0,0,4071,4076,3,510,255,0,4072,4073,5,397,0,0,4073,4075, - 3,510,255,0,4074,4072,1,0,0,0,4075,4078,1,0,0,0,4076,4074,1,0,0, - 0,4076,4077,1,0,0,0,4077,4080,1,0,0,0,4078,4076,1,0,0,0,4079,4071, - 1,0,0,0,4079,4080,1,0,0,0,4080,4082,1,0,0,0,4081,4067,1,0,0,0,4081, - 4069,1,0,0,0,4082,4102,1,0,0,0,4083,4084,5,400,0,0,4084,4085,5,388, - 0,0,4085,4086,5,144,0,0,4086,4087,5,399,0,0,4087,4088,3,544,272, - 0,4088,4089,5,400,0,0,4089,4103,1,0,0,0,4090,4092,5,400,0,0,4091, - 4093,3,556,278,0,4092,4091,1,0,0,0,4092,4093,1,0,0,0,4093,4094,1, - 0,0,0,4094,4095,5,234,0,0,4095,4103,3,516,258,0,4096,4097,3,556, - 278,0,4097,4098,5,400,0,0,4098,4099,5,234,0,0,4099,4100,3,516,258, - 0,4100,4103,1,0,0,0,4101,4103,5,400,0,0,4102,4083,1,0,0,0,4102,4090, - 1,0,0,0,4102,4096,1,0,0,0,4102,4101,1,0,0,0,4103,4105,1,0,0,0,4104, - 4051,1,0,0,0,4104,4065,1,0,0,0,4105,555,1,0,0,0,4106,4107,7,35,0, - 0,4107,4108,5,220,0,0,4108,557,1,0,0,0,4109,4110,3,644,322,0,4110, - 559,1,0,0,0,4111,4114,3,644,322,0,4112,4114,5,426,0,0,4113,4111, - 1,0,0,0,4113,4112,1,0,0,0,4114,561,1,0,0,0,4115,4119,3,644,322,0, - 4116,4119,3,650,325,0,4117,4119,3,640,320,0,4118,4115,1,0,0,0,4118, - 4116,1,0,0,0,4118,4117,1,0,0,0,4119,563,1,0,0,0,4120,4121,5,36,0, - 0,4121,4122,5,399,0,0,4122,4123,3,584,292,0,4123,4124,5,17,0,0,4124, - 4127,3,350,175,0,4125,4126,5,137,0,0,4126,4128,5,426,0,0,4127,4125, - 1,0,0,0,4127,4128,1,0,0,0,4128,4129,1,0,0,0,4129,4130,5,400,0,0, - 4130,565,1,0,0,0,4131,4132,5,35,0,0,4132,4138,3,584,292,0,4133,4134, - 5,383,0,0,4134,4135,3,584,292,0,4135,4136,5,335,0,0,4136,4137,3, - 584,292,0,4137,4139,1,0,0,0,4138,4133,1,0,0,0,4139,4140,1,0,0,0, - 4140,4138,1,0,0,0,4140,4141,1,0,0,0,4141,4144,1,0,0,0,4142,4143, - 5,105,0,0,4143,4145,3,584,292,0,4144,4142,1,0,0,0,4144,4145,1,0, - 0,0,4145,4146,1,0,0,0,4146,4147,5,108,0,0,4147,567,1,0,0,0,4148, - 4154,5,35,0,0,4149,4150,5,383,0,0,4150,4151,3,584,292,0,4151,4152, - 5,335,0,0,4152,4153,3,584,292,0,4153,4155,1,0,0,0,4154,4149,1,0, - 0,0,4155,4156,1,0,0,0,4156,4154,1,0,0,0,4156,4157,1,0,0,0,4157,4160, - 1,0,0,0,4158,4159,5,105,0,0,4159,4161,3,584,292,0,4160,4158,1,0, - 0,0,4160,4161,1,0,0,0,4161,4162,1,0,0,0,4162,4163,5,108,0,0,4163, - 569,1,0,0,0,4164,4165,5,132,0,0,4165,4166,5,399,0,0,4166,4169,3, - 584,292,0,4167,4168,5,341,0,0,4168,4170,3,574,287,0,4169,4167,1, - 0,0,0,4169,4170,1,0,0,0,4170,4171,1,0,0,0,4171,4172,5,400,0,0,4172, - 571,1,0,0,0,4173,4174,5,124,0,0,4174,4175,5,399,0,0,4175,4176,3, - 574,287,0,4176,4177,5,139,0,0,4177,4178,3,584,292,0,4178,4179,5, - 400,0,0,4179,573,1,0,0,0,4180,4189,3,670,335,0,4181,4189,5,257,0, - 0,4182,4189,3,672,336,0,4183,4189,3,674,337,0,4184,4189,3,676,338, - 0,4185,4189,3,678,339,0,4186,4189,3,680,340,0,4187,4189,3,682,341, - 0,4188,4180,1,0,0,0,4188,4181,1,0,0,0,4188,4182,1,0,0,0,4188,4183, - 1,0,0,0,4188,4184,1,0,0,0,4188,4185,1,0,0,0,4188,4186,1,0,0,0,4188, - 4187,1,0,0,0,4189,575,1,0,0,0,4190,4191,3,578,289,0,4191,4192,3, - 582,291,0,4192,4219,1,0,0,0,4193,4219,5,431,0,0,4194,4195,5,71,0, - 0,4195,4219,5,426,0,0,4196,4219,5,63,0,0,4197,4198,5,337,0,0,4198, - 4219,5,426,0,0,4199,4219,5,64,0,0,4200,4201,5,338,0,0,4201,4219, - 5,426,0,0,4202,4206,5,426,0,0,4203,4205,5,426,0,0,4204,4203,1,0, - 0,0,4205,4208,1,0,0,0,4206,4204,1,0,0,0,4206,4207,1,0,0,0,4207,4219, - 1,0,0,0,4208,4206,1,0,0,0,4209,4219,5,428,0,0,4210,4219,5,429,0, - 0,4211,4212,5,433,0,0,4212,4219,5,427,0,0,4213,4219,5,350,0,0,4214, - 4219,5,125,0,0,4215,4219,5,219,0,0,4216,4219,5,424,0,0,4217,4219, - 3,258,129,0,4218,4190,1,0,0,0,4218,4193,1,0,0,0,4218,4194,1,0,0, - 0,4218,4196,1,0,0,0,4218,4197,1,0,0,0,4218,4199,1,0,0,0,4218,4200, - 1,0,0,0,4218,4202,1,0,0,0,4218,4209,1,0,0,0,4218,4210,1,0,0,0,4218, - 4211,1,0,0,0,4218,4213,1,0,0,0,4218,4214,1,0,0,0,4218,4215,1,0,0, - 0,4218,4216,1,0,0,0,4218,4217,1,0,0,0,4219,577,1,0,0,0,4220,4221, - 7,27,0,0,4221,579,1,0,0,0,4222,4223,5,399,0,0,4223,4224,3,578,289, - 0,4224,4225,5,400,0,0,4225,4226,3,582,291,0,4226,4238,1,0,0,0,4227, - 4233,5,165,0,0,4228,4234,3,578,289,0,4229,4230,5,399,0,0,4230,4231, - 3,584,292,0,4231,4232,5,400,0,0,4232,4234,1,0,0,0,4233,4228,1,0, - 0,0,4233,4229,1,0,0,0,4234,4235,1,0,0,0,4235,4236,3,582,291,0,4236, - 4238,1,0,0,0,4237,4222,1,0,0,0,4237,4227,1,0,0,0,4238,581,1,0,0, - 0,4239,4240,3,670,335,0,4240,4241,5,341,0,0,4241,4242,3,672,336, - 0,4242,4254,1,0,0,0,4243,4244,3,676,338,0,4244,4245,5,341,0,0,4245, - 4246,3,682,341,0,4246,4254,1,0,0,0,4247,4254,3,670,335,0,4248,4254, - 3,672,336,0,4249,4254,3,676,338,0,4250,4254,3,678,339,0,4251,4254, - 3,680,340,0,4252,4254,3,682,341,0,4253,4239,1,0,0,0,4253,4243,1, - 0,0,0,4253,4247,1,0,0,0,4253,4248,1,0,0,0,4253,4249,1,0,0,0,4253, - 4250,1,0,0,0,4253,4251,1,0,0,0,4253,4252,1,0,0,0,4254,583,1,0,0, - 0,4255,4260,3,626,313,0,4256,4257,5,228,0,0,4257,4259,3,626,313, - 0,4258,4256,1,0,0,0,4259,4262,1,0,0,0,4260,4258,1,0,0,0,4260,4261, - 1,0,0,0,4261,585,1,0,0,0,4262,4260,1,0,0,0,4263,4275,3,576,288,0, - 4264,4275,3,580,290,0,4265,4275,3,564,282,0,4266,4275,3,572,286, - 0,4267,4275,3,570,285,0,4268,4275,3,566,283,0,4269,4275,3,568,284, - 0,4270,4275,3,604,302,0,4271,4275,3,554,277,0,4272,4275,3,540,270, - 0,4273,4275,3,642,321,0,4274,4263,1,0,0,0,4274,4264,1,0,0,0,4274, - 4265,1,0,0,0,4274,4266,1,0,0,0,4274,4267,1,0,0,0,4274,4268,1,0,0, - 0,4274,4269,1,0,0,0,4274,4270,1,0,0,0,4274,4271,1,0,0,0,4274,4272, - 1,0,0,0,4274,4273,1,0,0,0,4275,587,1,0,0,0,4276,4278,7,36,0,0,4277, - 4276,1,0,0,0,4278,4281,1,0,0,0,4279,4277,1,0,0,0,4279,4280,1,0,0, - 0,4280,4282,1,0,0,0,4281,4279,1,0,0,0,4282,4291,3,586,293,0,4283, - 4284,5,401,0,0,4284,4285,3,584,292,0,4285,4286,5,402,0,0,4286,4290, - 1,0,0,0,4287,4288,5,395,0,0,4288,4290,3,642,321,0,4289,4283,1,0, - 0,0,4289,4287,1,0,0,0,4290,4293,1,0,0,0,4291,4289,1,0,0,0,4291,4292, - 1,0,0,0,4292,589,1,0,0,0,4293,4291,1,0,0,0,4294,4299,3,588,294,0, - 4295,4296,5,423,0,0,4296,4298,3,588,294,0,4297,4295,1,0,0,0,4298, - 4301,1,0,0,0,4299,4297,1,0,0,0,4299,4300,1,0,0,0,4300,591,1,0,0, - 0,4301,4299,1,0,0,0,4302,4307,3,590,295,0,4303,4304,7,37,0,0,4304, - 4306,3,590,295,0,4305,4303,1,0,0,0,4306,4309,1,0,0,0,4307,4305,1, - 0,0,0,4307,4308,1,0,0,0,4308,593,1,0,0,0,4309,4307,1,0,0,0,4310, - 4315,3,592,296,0,4311,4312,7,38,0,0,4312,4314,3,592,296,0,4313,4311, - 1,0,0,0,4314,4317,1,0,0,0,4315,4313,1,0,0,0,4315,4316,1,0,0,0,4316, - 595,1,0,0,0,4317,4315,1,0,0,0,4318,4323,3,594,297,0,4319,4320,5, - 422,0,0,4320,4322,3,594,297,0,4321,4319,1,0,0,0,4322,4325,1,0,0, - 0,4323,4321,1,0,0,0,4323,4324,1,0,0,0,4324,597,1,0,0,0,4325,4323, - 1,0,0,0,4326,4331,3,596,298,0,4327,4328,5,419,0,0,4328,4330,3,596, - 298,0,4329,4327,1,0,0,0,4330,4333,1,0,0,0,4331,4329,1,0,0,0,4331, - 4332,1,0,0,0,4332,599,1,0,0,0,4333,4331,1,0,0,0,4334,4339,3,598, - 299,0,4335,4336,5,421,0,0,4336,4338,3,598,299,0,4337,4335,1,0,0, - 0,4338,4341,1,0,0,0,4339,4337,1,0,0,0,4339,4340,1,0,0,0,4340,601, - 1,0,0,0,4341,4339,1,0,0,0,4342,4343,7,39,0,0,4343,603,1,0,0,0,4344, - 4345,5,399,0,0,4345,4346,3,378,189,0,4346,4347,5,400,0,0,4347,605, - 1,0,0,0,4348,4350,3,600,300,0,4349,4351,3,608,304,0,4350,4349,1, - 0,0,0,4350,4351,1,0,0,0,4351,4355,1,0,0,0,4352,4353,5,117,0,0,4353, - 4355,3,604,302,0,4354,4348,1,0,0,0,4354,4352,1,0,0,0,4355,607,1, - 0,0,0,4356,4357,3,602,301,0,4357,4358,3,600,300,0,4358,4363,1,0, - 0,0,4359,4363,3,610,305,0,4360,4361,5,216,0,0,4361,4363,3,614,307, - 0,4362,4356,1,0,0,0,4362,4359,1,0,0,0,4362,4360,1,0,0,0,4363,609, - 1,0,0,0,4364,4365,5,154,0,0,4365,4379,3,612,306,0,4366,4367,5,25, - 0,0,4367,4368,3,600,300,0,4368,4369,5,11,0,0,4369,4370,3,600,300, - 0,4370,4379,1,0,0,0,4371,4372,5,184,0,0,4372,4373,7,40,0,0,4373, - 4379,3,540,270,0,4374,4375,3,638,319,0,4375,4376,7,41,0,0,4376,4377, - 3,604,302,0,4377,4379,1,0,0,0,4378,4364,1,0,0,0,4378,4366,1,0,0, - 0,4378,4371,1,0,0,0,4378,4374,1,0,0,0,4379,611,1,0,0,0,4380,4383, - 3,604,302,0,4381,4383,3,540,270,0,4382,4380,1,0,0,0,4382,4381,1, - 0,0,0,4383,613,1,0,0,0,4384,4385,7,42,0,0,4385,4388,3,600,300,0, - 4386,4388,3,610,305,0,4387,4384,1,0,0,0,4387,4386,1,0,0,0,4388,615, - 1,0,0,0,4389,4390,5,167,0,0,4390,4391,5,96,0,0,4391,4392,5,139,0, - 0,4392,617,1,0,0,0,4393,4401,5,405,0,0,4394,4401,5,406,0,0,4395, - 4401,5,407,0,0,4396,4397,5,167,0,0,4397,4398,5,216,0,0,4398,4399, - 5,96,0,0,4399,4401,5,139,0,0,4400,4393,1,0,0,0,4400,4394,1,0,0,0, - 4400,4395,1,0,0,0,4400,4396,1,0,0,0,4401,619,1,0,0,0,4402,4411,3, - 606,303,0,4403,4404,3,618,309,0,4404,4405,3,606,303,0,4405,4410, - 1,0,0,0,4406,4407,3,616,308,0,4407,4408,3,606,303,0,4408,4410,1, - 0,0,0,4409,4403,1,0,0,0,4409,4406,1,0,0,0,4410,4413,1,0,0,0,4411, - 4409,1,0,0,0,4411,4412,1,0,0,0,4412,621,1,0,0,0,4413,4411,1,0,0, - 0,4414,4421,5,219,0,0,4415,4421,5,350,0,0,4416,4421,5,125,0,0,4417, - 4421,5,360,0,0,4418,4419,5,216,0,0,4419,4421,7,43,0,0,4420,4414, - 1,0,0,0,4420,4415,1,0,0,0,4420,4416,1,0,0,0,4420,4417,1,0,0,0,4420, - 4418,1,0,0,0,4421,623,1,0,0,0,4422,4424,5,216,0,0,4423,4422,1,0, - 0,0,4424,4427,1,0,0,0,4425,4423,1,0,0,0,4425,4426,1,0,0,0,4426,4428, - 1,0,0,0,4427,4425,1,0,0,0,4428,4431,3,620,310,0,4429,4430,5,167, - 0,0,4430,4432,3,622,311,0,4431,4429,1,0,0,0,4431,4432,1,0,0,0,4432, - 625,1,0,0,0,4433,4438,3,624,312,0,4434,4435,5,11,0,0,4435,4437,3, - 624,312,0,4436,4434,1,0,0,0,4437,4440,1,0,0,0,4438,4436,1,0,0,0, - 4438,4439,1,0,0,0,4439,627,1,0,0,0,4440,4438,1,0,0,0,4441,4443,3, - 480,240,0,4442,4444,3,630,315,0,4443,4442,1,0,0,0,4443,4444,1,0, - 0,0,4444,629,1,0,0,0,4445,4446,5,237,0,0,4446,4447,5,399,0,0,4447, - 4452,3,632,316,0,4448,4449,5,397,0,0,4449,4451,3,632,316,0,4450, - 4448,1,0,0,0,4451,4454,1,0,0,0,4452,4450,1,0,0,0,4452,4453,1,0,0, - 0,4453,4455,1,0,0,0,4454,4452,1,0,0,0,4455,4456,5,400,0,0,4456,631, - 1,0,0,0,4457,4460,3,642,321,0,4458,4459,5,405,0,0,4459,4461,3,576, - 288,0,4460,4458,1,0,0,0,4460,4461,1,0,0,0,4461,633,1,0,0,0,4462, - 4463,5,399,0,0,4463,4468,3,636,318,0,4464,4465,5,397,0,0,4465,4467, - 3,636,318,0,4466,4464,1,0,0,0,4467,4470,1,0,0,0,4468,4466,1,0,0, - 0,4468,4469,1,0,0,0,4469,4471,1,0,0,0,4470,4468,1,0,0,0,4471,4472, - 5,400,0,0,4472,635,1,0,0,0,4473,4476,3,642,321,0,4474,4477,5,184, - 0,0,4475,4477,3,638,319,0,4476,4474,1,0,0,0,4476,4475,1,0,0,0,4477, - 4478,1,0,0,0,4478,4479,3,576,288,0,4479,637,1,0,0,0,4480,4481,7, - 44,0,0,4481,639,1,0,0,0,4482,4483,7,45,0,0,4483,641,1,0,0,0,4484, - 4487,5,432,0,0,4485,4487,3,648,324,0,4486,4484,1,0,0,0,4486,4485, - 1,0,0,0,4487,643,1,0,0,0,4488,4491,3,642,321,0,4489,4490,5,395,0, - 0,4490,4492,3,642,321,0,4491,4489,1,0,0,0,4491,4492,1,0,0,0,4492, - 645,1,0,0,0,4493,4494,3,642,321,0,4494,647,1,0,0,0,4495,4496,7,46, - 0,0,4496,649,1,0,0,0,4497,4498,7,47,0,0,4498,651,1,0,0,0,4499,4551, - 3,642,321,0,4500,4551,5,299,0,0,4501,4551,5,171,0,0,4502,4551,5, - 237,0,0,4503,4551,5,198,0,0,4504,4551,5,268,0,0,4505,4551,5,369, - 0,0,4506,4551,5,241,0,0,4507,4551,5,165,0,0,4508,4551,5,292,0,0, - 4509,4551,5,356,0,0,4510,4551,5,144,0,0,4511,4551,5,203,0,0,4512, - 4551,5,219,0,0,4513,4551,5,126,0,0,4514,4551,5,188,0,0,4515,4551, - 5,101,0,0,4516,4551,5,329,0,0,4517,4551,5,224,0,0,4518,4551,5,291, - 0,0,4519,4551,5,145,0,0,4520,4551,5,304,0,0,4521,4551,5,135,0,0, - 4522,4551,5,318,0,0,4523,4551,5,161,0,0,4524,4551,5,54,0,0,4525, - 4551,5,166,0,0,4526,4551,5,358,0,0,4527,4551,5,45,0,0,4528,4551, - 5,347,0,0,4529,4551,5,96,0,0,4530,4551,5,154,0,0,4531,4551,5,269, - 0,0,4532,4551,5,337,0,0,4533,4551,5,225,0,0,4534,4551,5,108,0,0, - 4535,4551,5,141,0,0,4536,4551,5,365,0,0,4537,4551,5,21,0,0,4538, - 4551,5,78,0,0,4539,4551,5,374,0,0,4540,4551,5,336,0,0,4541,4551, - 5,167,0,0,4542,4551,5,134,0,0,4543,4551,5,216,0,0,4544,4551,5,27, - 0,0,4545,4551,5,370,0,0,4546,4551,5,263,0,0,4547,4551,5,25,0,0,4548, - 4551,5,62,0,0,4549,4551,5,17,0,0,4550,4499,1,0,0,0,4550,4500,1,0, - 0,0,4550,4501,1,0,0,0,4550,4502,1,0,0,0,4550,4503,1,0,0,0,4550,4504, - 1,0,0,0,4550,4505,1,0,0,0,4550,4506,1,0,0,0,4550,4507,1,0,0,0,4550, - 4508,1,0,0,0,4550,4509,1,0,0,0,4550,4510,1,0,0,0,4550,4511,1,0,0, - 0,4550,4512,1,0,0,0,4550,4513,1,0,0,0,4550,4514,1,0,0,0,4550,4515, - 1,0,0,0,4550,4516,1,0,0,0,4550,4517,1,0,0,0,4550,4518,1,0,0,0,4550, - 4519,1,0,0,0,4550,4520,1,0,0,0,4550,4521,1,0,0,0,4550,4522,1,0,0, - 0,4550,4523,1,0,0,0,4550,4524,1,0,0,0,4550,4525,1,0,0,0,4550,4526, - 1,0,0,0,4550,4527,1,0,0,0,4550,4528,1,0,0,0,4550,4529,1,0,0,0,4550, - 4530,1,0,0,0,4550,4531,1,0,0,0,4550,4532,1,0,0,0,4550,4533,1,0,0, - 0,4550,4534,1,0,0,0,4550,4535,1,0,0,0,4550,4536,1,0,0,0,4550,4537, - 1,0,0,0,4550,4538,1,0,0,0,4550,4539,1,0,0,0,4550,4540,1,0,0,0,4550, - 4541,1,0,0,0,4550,4542,1,0,0,0,4550,4543,1,0,0,0,4550,4544,1,0,0, - 0,4550,4545,1,0,0,0,4550,4546,1,0,0,0,4550,4547,1,0,0,0,4550,4548, - 1,0,0,0,4550,4549,1,0,0,0,4551,653,1,0,0,0,4552,4553,5,58,0,0,4553, - 4554,5,280,0,0,4554,4556,5,243,0,0,4555,4557,3,32,16,0,4556,4555, - 1,0,0,0,4556,4557,1,0,0,0,4557,4567,1,0,0,0,4558,4559,3,642,321, - 0,4559,4560,5,184,0,0,4560,4561,3,642,321,0,4561,4568,1,0,0,0,4562, - 4565,3,642,321,0,4563,4564,5,387,0,0,4564,4566,3,660,330,0,4565, - 4563,1,0,0,0,4565,4566,1,0,0,0,4566,4568,1,0,0,0,4567,4558,1,0,0, - 0,4567,4562,1,0,0,0,4568,4718,1,0,0,0,4569,4570,5,9,0,0,4570,4571, - 5,280,0,0,4571,4572,5,243,0,0,4572,4597,3,642,321,0,4573,4598,5, - 373,0,0,4574,4598,3,668,334,0,4575,4576,5,304,0,0,4576,4598,3,660, - 330,0,4577,4578,5,363,0,0,4578,4583,3,662,331,0,4579,4580,5,397, - 0,0,4580,4582,3,662,331,0,4581,4579,1,0,0,0,4582,4585,1,0,0,0,4583, - 4581,1,0,0,0,4583,4584,1,0,0,0,4584,4598,1,0,0,0,4585,4583,1,0,0, - 0,4586,4587,5,274,0,0,4587,4588,5,341,0,0,4588,4598,3,642,321,0, - 4589,4591,3,664,332,0,4590,4592,3,666,333,0,4591,4590,1,0,0,0,4591, - 4592,1,0,0,0,4592,4598,1,0,0,0,4593,4595,3,666,333,0,4594,4596,3, - 664,332,0,4595,4594,1,0,0,0,4595,4596,1,0,0,0,4596,4598,1,0,0,0, - 4597,4573,1,0,0,0,4597,4574,1,0,0,0,4597,4575,1,0,0,0,4597,4577, - 1,0,0,0,4597,4586,1,0,0,0,4597,4589,1,0,0,0,4597,4593,1,0,0,0,4598, - 4718,1,0,0,0,4599,4600,5,101,0,0,4600,4601,5,280,0,0,4601,4603,5, - 243,0,0,4602,4604,3,30,15,0,4603,4602,1,0,0,0,4603,4604,1,0,0,0, - 4604,4605,1,0,0,0,4605,4718,3,642,321,0,4606,4609,3,666,333,0,4607, - 4609,3,668,334,0,4608,4606,1,0,0,0,4608,4607,1,0,0,0,4609,4610,1, - 0,0,0,4610,4611,5,390,0,0,4611,4612,5,197,0,0,4612,4718,1,0,0,0, - 4613,4625,5,278,0,0,4614,4615,5,3,0,0,4615,4616,5,280,0,0,4616,4617, - 5,243,0,0,4617,4618,5,387,0,0,4618,4626,3,642,321,0,4619,4620,5, - 280,0,0,4620,4621,5,243,0,0,4621,4622,3,642,321,0,4622,4623,5,387, - 0,0,4623,4624,3,642,321,0,4624,4626,1,0,0,0,4625,4614,1,0,0,0,4625, - 4619,1,0,0,0,4626,4718,1,0,0,0,4627,4628,5,58,0,0,4628,4629,5,348, - 0,0,4629,4630,3,642,321,0,4630,4631,5,395,0,0,4631,4632,3,642,321, - 0,4632,4633,5,383,0,0,4633,4634,3,688,344,0,4634,4635,5,99,0,0,4635, - 4636,3,690,345,0,4636,4718,1,0,0,0,4637,4638,5,9,0,0,4638,4639,5, - 348,0,0,4639,4640,3,642,321,0,4640,4641,5,395,0,0,4641,4658,3,642, - 321,0,4642,4643,5,383,0,0,4643,4644,3,688,344,0,4644,4645,5,99,0, - 0,4645,4646,3,690,345,0,4646,4659,1,0,0,0,4647,4648,5,4,0,0,4648, - 4652,5,341,0,0,4649,4650,5,101,0,0,4650,4652,5,139,0,0,4651,4647, - 1,0,0,0,4651,4649,1,0,0,0,4652,4656,1,0,0,0,4653,4654,5,246,0,0, - 4654,4657,3,686,343,0,4655,4657,5,362,0,0,4656,4653,1,0,0,0,4656, - 4655,1,0,0,0,4657,4659,1,0,0,0,4658,4642,1,0,0,0,4658,4651,1,0,0, - 0,4659,4718,1,0,0,0,4660,4661,5,101,0,0,4661,4662,5,348,0,0,4662, - 4663,3,642,321,0,4663,4664,5,395,0,0,4664,4665,3,642,321,0,4665, - 4718,1,0,0,0,4666,4667,5,58,0,0,4667,4668,5,246,0,0,4668,4669,3, - 642,321,0,4669,4670,5,395,0,0,4670,4671,3,686,343,0,4671,4672,5, - 387,0,0,4672,4673,3,694,347,0,4673,4718,1,0,0,0,4674,4675,5,9,0, - 0,4675,4676,5,246,0,0,4676,4677,3,642,321,0,4677,4678,5,395,0,0, - 4678,4686,3,686,343,0,4679,4680,5,304,0,0,4680,4687,3,694,347,0, - 4681,4682,5,363,0,0,4682,4687,5,294,0,0,4683,4684,7,48,0,0,4684, - 4685,5,348,0,0,4685,4687,3,642,321,0,4686,4679,1,0,0,0,4686,4681, - 1,0,0,0,4686,4683,1,0,0,0,4687,4718,1,0,0,0,4688,4689,5,101,0,0, - 4689,4690,5,246,0,0,4690,4691,3,642,321,0,4691,4692,5,395,0,0,4692, - 4693,3,686,343,0,4693,4718,1,0,0,0,4694,4695,7,49,0,0,4695,4696, - 3,656,328,0,4696,4697,5,200,0,0,4697,4698,5,426,0,0,4698,4699,5, - 154,0,0,4699,4703,3,642,321,0,4700,4701,5,341,0,0,4701,4704,3,686, - 343,0,4702,4704,5,362,0,0,4703,4700,1,0,0,0,4703,4702,1,0,0,0,4704, - 4708,1,0,0,0,4705,4706,5,387,0,0,4706,4707,5,229,0,0,4707,4709,5, - 431,0,0,4708,4705,1,0,0,0,4708,4709,1,0,0,0,4709,4718,1,0,0,0,4710, - 4711,5,101,0,0,4711,4712,3,656,328,0,4712,4713,5,200,0,0,4713,4714, - 5,426,0,0,4714,4715,5,154,0,0,4715,4716,3,642,321,0,4716,4718,1, - 0,0,0,4717,4552,1,0,0,0,4717,4569,1,0,0,0,4717,4599,1,0,0,0,4717, - 4608,1,0,0,0,4717,4613,1,0,0,0,4717,4627,1,0,0,0,4717,4637,1,0,0, - 0,4717,4660,1,0,0,0,4717,4666,1,0,0,0,4717,4674,1,0,0,0,4717,4688, - 1,0,0,0,4717,4694,1,0,0,0,4717,4710,1,0,0,0,4718,655,1,0,0,0,4719, - 4720,7,50,0,0,4720,657,1,0,0,0,4721,4722,5,259,0,0,4722,4723,5,405, - 0,0,4723,4729,5,431,0,0,4724,4725,5,83,0,0,4725,4726,5,246,0,0,4726, - 4727,5,405,0,0,4727,4729,3,686,343,0,4728,4721,1,0,0,0,4728,4724, - 1,0,0,0,4729,659,1,0,0,0,4730,4735,3,658,329,0,4731,4732,5,397,0, - 0,4732,4734,3,658,329,0,4733,4731,1,0,0,0,4734,4737,1,0,0,0,4735, - 4733,1,0,0,0,4735,4736,1,0,0,0,4736,661,1,0,0,0,4737,4735,1,0,0, - 0,4738,4742,5,259,0,0,4739,4740,5,83,0,0,4740,4742,5,246,0,0,4741, - 4738,1,0,0,0,4741,4739,1,0,0,0,4742,663,1,0,0,0,4743,4746,5,2,0, - 0,4744,4745,5,387,0,0,4745,4747,5,278,0,0,4746,4744,1,0,0,0,4746, - 4747,1,0,0,0,4747,665,1,0,0,0,4748,4749,7,51,0,0,4749,667,1,0,0, - 0,4750,4751,7,52,0,0,4751,669,1,0,0,0,4752,4753,7,53,0,0,4753,671, - 1,0,0,0,4754,4755,7,54,0,0,4755,673,1,0,0,0,4756,4757,7,55,0,0,4757, - 675,1,0,0,0,4758,4759,7,56,0,0,4759,677,1,0,0,0,4760,4761,7,57,0, - 0,4761,679,1,0,0,0,4762,4763,7,58,0,0,4763,681,1,0,0,0,4764,4765, - 7,59,0,0,4765,683,1,0,0,0,4766,4767,7,60,0,0,4767,685,1,0,0,0,4768, - 4773,3,642,321,0,4769,4770,5,395,0,0,4770,4772,3,642,321,0,4771, - 4769,1,0,0,0,4772,4775,1,0,0,0,4773,4771,1,0,0,0,4773,4774,1,0,0, - 0,4774,687,1,0,0,0,4775,4773,1,0,0,0,4776,4777,3,642,321,0,4777, - 4778,5,411,0,0,4778,4779,7,27,0,0,4779,689,1,0,0,0,4780,4785,5,176, - 0,0,4781,4782,5,211,0,0,4782,4783,5,341,0,0,4783,4785,3,686,343, - 0,4784,4780,1,0,0,0,4784,4781,1,0,0,0,4785,691,1,0,0,0,4786,4787, - 5,8,0,0,4787,4788,5,405,0,0,4788,4799,5,431,0,0,4789,4790,5,259, - 0,0,4790,4791,5,405,0,0,4791,4799,5,431,0,0,4792,4793,5,294,0,0, - 4793,4794,5,405,0,0,4794,4799,5,426,0,0,4795,4796,5,240,0,0,4796, - 4797,5,405,0,0,4797,4799,3,686,343,0,4798,4786,1,0,0,0,4798,4789, - 1,0,0,0,4798,4792,1,0,0,0,4798,4795,1,0,0,0,4799,693,1,0,0,0,4800, - 4805,3,692,346,0,4801,4802,5,397,0,0,4802,4804,3,692,346,0,4803, - 4801,1,0,0,0,4804,4807,1,0,0,0,4805,4803,1,0,0,0,4805,4806,1,0,0, - 0,4806,695,1,0,0,0,4807,4805,1,0,0,0,621,699,706,709,715,721,728, - 738,741,745,760,767,773,778,783,786,810,817,820,825,830,836,840, - 853,857,861,866,873,877,882,889,893,898,946,953,958,981,985,989, - 992,996,1001,1007,1011,1017,1019,1030,1034,1041,1049,1052,1057,1061, - 1064,1074,1082,1086,1089,1093,1097,1100,1105,1111,1116,1121,1125, - 1136,1138,1142,1152,1156,1162,1165,1172,1177,1185,1190,1194,1202, - 1207,1213,1219,1222,1225,1228,1237,1245,1250,1258,1265,1268,1271, - 1273,1284,1286,1289,1292,1295,1298,1301,1303,1315,1321,1329,1331, - 1341,1374,1379,1383,1387,1394,1401,1407,1411,1414,1421,1444,1449, - 1453,1461,1470,1477,1483,1490,1493,1499,1506,1514,1523,1532,1539, - 1559,1566,1568,1575,1585,1593,1597,1601,1614,1623,1639,1643,1648, - 1653,1656,1659,1662,1665,1668,1673,1682,1686,1693,1696,1699,1702, - 1714,1720,1746,1754,1758,1761,1764,1767,1770,1773,1776,1779,1788, - 1798,1801,1821,1827,1833,1836,1838,1845,1852,1865,1870,1879,1887, - 1895,1908,1921,1937,1941,1956,1962,1965,1968,1971,1974,1978,1993, - 1996,2007,2021,2055,2063,2068,2076,2081,2086,2093,2101,2109,2117, - 2122,2134,2138,2146,2155,2158,2162,2169,2175,2179,2185,2189,2201, - 2210,2221,2225,2232,2244,2254,2257,2264,2270,2274,2277,2280,2286, - 2290,2294,2299,2303,2307,2311,2319,2323,2327,2331,2335,2343,2347, - 2351,2359,2364,2369,2373,2377,2384,2393,2401,2413,2431,2434,2440, - 2466,2469,2475,2483,2491,2504,2511,2514,2517,2520,2523,2526,2529, - 2532,2535,2538,2541,2546,2549,2552,2555,2558,2561,2564,2567,2570, - 2573,2576,2578,2584,2588,2591,2594,2597,2600,2603,2610,2614,2617, - 2620,2623,2626,2629,2636,2639,2647,2651,2658,2660,2663,2668,2671, - 2675,2680,2686,2694,2702,2712,2715,2719,2723,2728,2735,2739,2741, - 2745,2752,2757,2770,2778,2797,2807,2820,2830,2834,2838,2844,2851, - 2858,2867,2874,2894,2897,2911,2926,2930,2950,2962,2968,2971,2974, - 2980,2986,2993,3001,3007,3011,3016,3019,3023,3030,3035,3040,3043, - 3045,3053,3061,3065,3069,3073,3090,3107,3114,3123,3128,3131,3134, - 3138,3153,3167,3170,3181,3185,3188,3191,3195,3200,3203,3206,3209, - 3212,3215,3221,3224,3227,3230,3233,3236,3239,3242,3245,3248,3252, - 3254,3260,3265,3268,3271,3274,3277,3283,3286,3289,3292,3295,3298, - 3301,3304,3307,3310,3314,3316,3318,3323,3328,3332,3336,3341,3346, - 3355,3365,3373,3385,3388,3394,3401,3408,3415,3422,3431,3435,3442, - 3447,3451,3455,3458,3461,3472,3476,3478,3481,3494,3497,3500,3512, - 3515,3522,3531,3536,3538,3540,3557,3560,3568,3571,3575,3578,3581, - 3584,3587,3599,3607,3614,3617,3624,3627,3632,3639,3647,3653,3658, - 3662,3667,3674,3688,3691,3695,3706,3716,3719,3726,3735,3738,3744, - 3747,3754,3759,3762,3775,3781,3783,3791,3794,3804,3809,3811,3823, - 3829,3831,3838,3845,3859,3865,3868,3871,3874,3883,3890,3896,3905, - 3909,3917,3927,3937,3942,3946,3952,3957,3967,3971,3974,3979,3982, - 3986,3991,4002,4004,4013,4036,4046,4049,4056,4059,4069,4076,4079, - 4081,4092,4102,4104,4113,4118,4127,4140,4144,4156,4160,4169,4188, - 4206,4218,4233,4237,4253,4260,4274,4279,4289,4291,4299,4307,4315, - 4323,4331,4339,4350,4354,4362,4378,4382,4387,4400,4409,4411,4420, - 4425,4431,4438,4443,4452,4460,4468,4476,4486,4491,4550,4556,4565, - 4567,4583,4591,4595,4597,4603,4608,4625,4651,4656,4658,4686,4703, - 4708,4717,4728,4735,4741,4746,4773,4784,4798,4805 + 3503,8,232,10,232,12,232,3506,9,232,3,232,3508,8,232,1,232,3,232, + 3511,8,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232, + 3521,8,232,10,232,12,232,3524,9,232,3,232,3526,8,232,1,232,1,232, + 1,232,1,232,1,232,3,232,3533,8,232,1,232,1,232,1,232,1,232,1,232, + 5,232,3540,8,232,10,232,12,232,3543,9,232,1,232,1,232,3,232,3547, + 8,232,3,232,3549,8,232,3,232,3551,8,232,1,233,1,233,1,234,1,234, + 1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,5,234,3566, + 8,234,10,234,12,234,3569,9,234,3,234,3571,8,234,1,234,1,234,1,234, + 1,234,1,234,1,234,3,234,3579,8,234,1,234,3,234,3582,8,234,1,235, + 1,235,3,235,3586,8,235,1,235,3,235,3589,8,235,1,235,3,235,3592,8, + 235,1,235,3,235,3595,8,235,1,235,3,235,3598,8,235,1,236,1,236,1, + 236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,3,236,3610,8,236,1, + 237,1,237,1,238,1,238,1,239,1,239,3,239,3618,8,239,1,240,1,240,1, + 240,1,240,1,240,3,240,3625,8,240,1,240,3,240,3628,8,240,1,241,1, + 241,1,241,1,241,1,241,3,241,3635,8,241,1,241,3,241,3638,8,241,1, + 242,1,242,1,242,3,242,3643,8,242,1,242,1,242,1,243,1,243,1,243,3, + 243,3650,8,243,1,243,1,243,1,244,1,244,1,244,1,244,3,244,3658,8, + 244,1,244,1,244,1,245,1,245,3,245,3664,8,245,1,245,1,245,1,245,3, + 245,3669,8,245,1,245,1,245,3,245,3673,8,245,1,246,1,246,1,246,3, + 246,3678,8,246,1,247,1,247,3,247,3682,8,247,1,248,1,248,1,248,1, + 248,1,248,3,248,3689,8,248,1,248,1,248,1,248,1,248,1,248,1,248,1, + 248,1,248,1,248,1,248,5,248,3701,8,248,10,248,12,248,3704,9,248, + 3,248,3706,8,248,1,248,1,248,1,249,1,249,1,249,1,250,1,250,1,250, + 1,250,5,250,3717,8,250,10,250,12,250,3720,9,250,1,250,1,250,1,250, + 1,250,1,250,5,250,3727,8,250,10,250,12,250,3730,9,250,3,250,3732, + 8,250,1,251,1,251,1,251,1,251,1,251,1,252,1,252,3,252,3741,8,252, + 1,252,1,252,1,252,1,252,1,252,5,252,3748,8,252,10,252,12,252,3751, + 9,252,3,252,3753,8,252,1,252,1,252,1,253,1,253,3,253,3759,8,253, + 1,253,3,253,3762,8,253,1,253,1,253,1,253,3,253,3767,8,253,1,253, + 3,253,3770,8,253,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,3,254,3783,8,254,1,254,1,254,1,254,1,254,3,254, + 3789,8,254,3,254,3791,8,254,1,254,1,254,1,254,1,255,1,255,1,255, + 5,255,3799,8,255,10,255,12,255,3802,9,255,1,256,1,256,1,256,3,256, + 3807,8,256,1,256,3,256,3810,8,256,1,256,1,256,1,256,1,256,1,256, + 1,256,5,256,3818,8,256,10,256,12,256,3821,9,256,1,256,1,256,3,256, + 3825,8,256,3,256,3827,8,256,1,257,1,257,1,258,1,258,1,259,1,259, + 1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259,3843,8,259, + 1,259,1,259,1,259,1,259,3,259,3849,8,259,3,259,3851,8,259,1,259, + 1,259,1,259,1,260,1,260,3,260,3858,8,260,1,261,1,261,1,261,5,261, + 3863,8,261,10,261,12,261,3866,9,261,1,262,1,262,1,262,1,262,1,262, + 1,262,1,262,1,262,1,262,5,262,3877,8,262,10,262,12,262,3880,9,262, + 1,263,1,263,1,263,3,263,3885,8,263,1,263,3,263,3888,8,263,1,263, + 3,263,3891,8,263,1,263,3,263,3894,8,263,1,264,1,264,1,264,1,264, + 1,264,1,264,1,264,3,264,3903,8,264,1,264,1,264,1,264,1,264,1,264, + 3,264,3910,8,264,1,265,1,265,1,265,1,265,3,265,3916,8,265,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,3,266,3925,8,266,1,267,1,267, + 3,267,3929,8,267,1,267,1,267,1,267,1,267,5,267,3935,8,267,10,267, + 12,267,3938,9,267,1,267,1,267,1,268,1,268,1,268,1,268,1,268,3,268, + 3947,8,268,1,268,1,268,1,268,1,268,1,268,1,268,5,268,3955,8,268, + 10,268,12,268,3958,9,268,1,268,1,268,3,268,3962,8,268,1,269,1,269, + 3,269,3966,8,269,1,269,1,269,5,269,3970,8,269,10,269,12,269,3973, + 9,269,1,269,1,269,3,269,3977,8,269,1,270,1,270,1,270,1,271,1,271, + 1,271,1,272,1,272,3,272,3987,8,272,1,273,1,273,3,273,3991,8,273, + 1,273,3,273,3994,8,273,1,273,1,273,1,273,3,273,3999,8,273,1,273, + 3,273,4002,8,273,5,273,4004,8,273,10,273,12,273,4007,9,273,1,274, + 1,274,3,274,4011,8,274,1,275,1,275,1,275,1,275,1,276,1,276,1,276, + 4,276,4020,8,276,11,276,12,276,4021,3,276,4024,8,276,1,277,1,277, + 1,277,1,277,1,277,5,277,4031,8,277,10,277,12,277,4034,9,277,1,278, + 1,278,1,278,1,278,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280, + 1,281,1,281,1,281,1,281,1,281,1,281,5,281,4054,8,281,10,281,12,281, + 4057,9,281,1,281,1,281,1,281,1,281,1,281,5,281,4064,8,281,10,281, + 12,281,4067,9,281,3,281,4069,8,281,1,282,1,282,1,282,1,282,1,282, + 3,282,4076,8,282,1,282,3,282,4079,8,282,1,282,1,282,1,282,1,282, + 1,282,1,282,1,282,1,282,3,282,4089,8,282,1,282,1,282,1,282,5,282, + 4094,8,282,10,282,12,282,4097,9,282,3,282,4099,8,282,3,282,4101, + 8,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,3,282, + 4112,8,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,3,282, + 4122,8,282,3,282,4124,8,282,1,283,1,283,1,283,1,284,1,284,1,285, + 1,285,3,285,4133,8,285,1,286,1,286,1,286,3,286,4138,8,286,1,287, + 1,287,1,287,1,287,1,287,1,287,1,287,3,287,4147,8,287,1,287,1,287, + 1,288,1,288,1,288,1,288,1,288,1,288,1,288,4,288,4158,8,288,11,288, + 12,288,4159,1,288,1,288,3,288,4164,8,288,1,288,1,288,1,289,1,289, + 1,289,1,289,1,289,1,289,4,289,4174,8,289,11,289,12,289,4175,1,289, + 1,289,3,289,4180,8,289,1,289,1,289,1,290,1,290,1,290,1,290,1,290, + 3,290,4189,8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,1,291, + 1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,3,292,4208, + 8,292,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293, + 1,293,1,293,1,293,1,293,5,293,4224,8,293,10,293,12,293,4227,9,293, + 1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4238, + 8,293,1,294,1,294,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295, + 1,295,1,295,1,295,3,295,4253,8,295,1,295,1,295,3,295,4257,8,295, + 1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296, + 1,296,1,296,1,296,3,296,4273,8,296,1,297,1,297,1,297,5,297,4278, + 8,297,10,297,12,297,4281,9,297,1,298,1,298,1,298,1,298,1,298,1,298, + 1,298,1,298,1,298,1,298,1,298,3,298,4294,8,298,1,299,5,299,4297, + 8,299,10,299,12,299,4300,9,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,5,299,4309,8,299,10,299,12,299,4312,9,299,1,300,1,300,1,300, + 5,300,4317,8,300,10,300,12,300,4320,9,300,1,301,1,301,1,301,5,301, + 4325,8,301,10,301,12,301,4328,9,301,1,302,1,302,1,302,5,302,4333, + 8,302,10,302,12,302,4336,9,302,1,303,1,303,1,303,5,303,4341,8,303, + 10,303,12,303,4344,9,303,1,304,1,304,1,304,5,304,4349,8,304,10,304, + 12,304,4352,9,304,1,305,1,305,1,305,5,305,4357,8,305,10,305,12,305, + 4360,9,305,1,306,1,306,1,307,1,307,1,307,1,307,1,308,1,308,3,308, + 4370,8,308,1,308,1,308,3,308,4374,8,308,1,309,1,309,1,309,1,309, + 1,309,1,309,3,309,4382,8,309,1,310,1,310,1,310,1,310,1,310,1,310, + 1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,3,310,4398,8,310, + 1,311,1,311,3,311,4402,8,311,1,312,1,312,1,312,3,312,4407,8,312, + 1,313,1,313,1,313,1,313,1,314,1,314,1,314,1,314,1,314,1,314,1,314, + 3,314,4420,8,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,5,315, + 4429,8,315,10,315,12,315,4432,9,315,1,316,1,316,1,316,1,316,1,316, + 1,316,3,316,4440,8,316,1,317,5,317,4443,8,317,10,317,12,317,4446, + 9,317,1,317,1,317,1,317,3,317,4451,8,317,1,318,1,318,1,318,5,318, + 4456,8,318,10,318,12,318,4459,9,318,1,319,1,319,3,319,4463,8,319, + 1,320,1,320,1,320,1,320,1,320,5,320,4470,8,320,10,320,12,320,4473, + 9,320,1,320,1,320,1,321,1,321,1,321,3,321,4480,8,321,1,322,1,322, + 1,322,1,322,5,322,4486,8,322,10,322,12,322,4489,9,322,1,322,1,322, + 1,323,1,323,1,323,3,323,4496,8,323,1,323,1,323,1,324,1,324,1,325, + 1,325,1,326,1,326,3,326,4506,8,326,1,327,1,327,1,327,3,327,4511, + 8,327,1,328,1,328,1,329,1,329,1,330,1,330,1,331,1,331,1,331,1,331, + 1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, + 1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, + 1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, + 1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, + 1,331,1,331,1,331,3,331,4570,8,331,1,332,1,332,1,332,1,332,3,332, + 4576,8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,3,332,4585, + 8,332,3,332,4587,8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,1,332,5,332,4601,8,332,10,332,12,332,4604, + 9,332,1,332,1,332,1,332,1,332,1,332,3,332,4611,8,332,1,332,1,332, + 3,332,4615,8,332,3,332,4617,8,332,1,332,1,332,1,332,1,332,3,332, + 4623,8,332,1,332,1,332,1,332,3,332,4628,8,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,332,3,332,4645,8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,3,332,4671,8,332,1,332,1,332, + 1,332,3,332,4676,8,332,3,332,4678,8,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, + 3,332,4706,8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,1,332,3,332,4723,8,332,1,332, + 1,332,1,332,3,332,4728,8,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,332,3,332,4737,8,332,1,333,1,333,1,334,1,334,1,334,1,334,1,334, + 1,334,1,334,3,334,4748,8,334,1,335,1,335,1,335,5,335,4753,8,335, + 10,335,12,335,4756,9,335,1,336,1,336,1,336,3,336,4761,8,336,1,337, + 1,337,1,337,3,337,4766,8,337,1,338,1,338,1,339,1,339,1,340,1,340, + 1,341,1,341,1,342,1,342,1,343,1,343,1,344,1,344,1,345,1,345,1,346, + 1,346,1,347,1,347,1,348,1,348,1,348,5,348,4791,8,348,10,348,12,348, + 4794,9,348,1,349,1,349,1,349,1,349,1,350,1,350,1,350,1,350,3,350, + 4804,8,350,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351, + 1,351,1,351,1,351,3,351,4818,8,351,1,352,1,352,1,352,5,352,4823, + 8,352,10,352,12,352,4826,9,352,1,352,1,827,0,353,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,120,122,124,126,128,130,132, + 134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164, + 166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196, + 198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228, + 230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260, + 262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292, + 294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324, + 326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356, + 358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388, + 390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420, + 422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452, + 454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484, + 486,488,490,492,494,496,498,500,502,504,506,508,510,512,514,516, + 518,520,522,524,526,528,530,532,534,536,538,540,542,544,546,548, + 550,552,554,556,558,560,562,564,566,568,570,572,574,576,578,580, + 582,584,586,588,590,592,594,596,598,600,602,604,606,608,610,612, + 614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644, + 646,648,650,652,654,656,658,660,662,664,666,668,670,672,674,676, + 678,680,682,684,686,688,690,692,694,696,698,700,702,704,0,61,2,0, + 57,57,172,172,4,0,91,91,121,121,226,226,325,325,1,0,395,396,2,0, + 50,50,346,346,2,0,34,34,282,282,1,0,89,90,2,0,139,139,154,154,2, + 0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0,114,114,307,307, + 11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161,190,190,299,299, + 309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15,128,128,170,170, + 1,0,141,142,2,0,30,30,351,351,2,0,217,217,373,373,2,0,214,214,272, + 272,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39,376,376,4,0,112, + 112,164,164,205,205,356,356,2,0,7,7,96,96,2,0,125,125,350,350,2, + 0,225,225,391,391,2,0,42,42,315,315,2,0,189,189,196,196,2,0,426, + 426,431,431,2,0,140,140,285,285,3,0,12,12,231,231,300,300,2,0,241, + 241,292,292,2,0,198,198,268,268,2,0,260,260,292,292,2,0,354,354, + 431,431,2,0,133,133,247,247,2,0,152,152,281,281,3,0,413,414,418, + 418,420,420,2,0,412,412,415,417,1,0,413,414,4,0,184,184,270,270, + 286,286,408,411,2,0,7,7,13,13,3,0,7,7,13,13,313,313,3,0,184,184, + 270,270,286,286,4,0,125,125,219,219,350,350,360,360,2,0,405,405, + 407,411,24,0,11,11,16,16,25,28,35,35,100,100,131,132,151,151,154, + 154,162,163,184,184,198,198,216,216,228,228,264,264,270,270,286, + 286,311,311,323,324,340,340,357,357,383,383,405,417,419,421,423, + 423,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30,31,33,34,37,38,40,44, + 46,47,49,50,52,53,56,57,59,59,66,66,68,68,72,77,79,79,83,85,87,89, + 91,95,97,99,103,104,106,107,109,111,114,116,118,121,127,130,137, + 138,142,142,147,150,152,152,155,156,158,160,168,170,172,177,182, + 183,185,187,189,193,195,197,199,202,204,204,206,209,211,212,214, + 215,217,218,220,220,222,223,226,227,232,233,235,236,238,240,243, + 246,252,252,254,255,257,259,261,262,265,267,271,282,284,284,287, + 288,293,298,300,303,305,310,312,312,314,317,319,325,327,328,330, + 330,332,334,339,340,342,342,344,346,349,349,352,353,355,355,357, + 357,360,364,366,368,371,373,375,375,377,382,385,385,388,394,13,0, + 16,16,26,28,63,64,71,71,100,100,131,131,145,145,151,151,162,163, + 198,198,264,264,311,311,337,337,2,0,4,4,101,101,2,0,9,9,58,58,3, + 0,14,14,144,144,369,369,1,0,106,107,1,0,94,95,1,0,392,393,1,0,208, + 209,1,0,381,382,1,0,73,74,1,0,148,149,1,0,206,207,1,0,297,298,1, + 0,80,82,5412,0,709,1,0,0,0,2,716,1,0,0,0,4,721,1,0,0,0,6,755,1,0, + 0,0,8,757,1,0,0,0,10,830,1,0,0,0,12,832,1,0,0,0,14,848,1,0,0,0,16, + 857,1,0,0,0,18,865,1,0,0,0,20,878,1,0,0,0,22,889,1,0,0,0,24,894, + 1,0,0,0,26,905,1,0,0,0,28,968,1,0,0,0,30,970,1,0,0,0,32,973,1,0, + 0,0,34,977,1,0,0,0,36,979,1,0,0,0,38,982,1,0,0,0,40,985,1,0,0,0, + 42,1029,1,0,0,0,44,1031,1,0,0,0,46,1034,1,0,0,0,48,1037,1,0,0,0, + 50,1046,1,0,0,0,52,1049,1,0,0,0,54,1064,1,0,0,0,56,1076,1,0,0,0, + 58,1081,1,0,0,0,60,1101,1,0,0,0,62,1105,1,0,0,0,64,1112,1,0,0,0, + 66,1137,1,0,0,0,68,1154,1,0,0,0,70,1156,1,0,0,0,72,1341,1,0,0,0, + 74,1351,1,0,0,0,76,1353,1,0,0,0,78,1358,1,0,0,0,80,1363,1,0,0,0, + 82,1365,1,0,0,0,84,1369,1,0,0,0,86,1373,1,0,0,0,88,1377,1,0,0,0, + 90,1381,1,0,0,0,92,1391,1,0,0,0,94,1402,1,0,0,0,96,1419,1,0,0,0, + 98,1437,1,0,0,0,100,1442,1,0,0,0,102,1445,1,0,0,0,104,1449,1,0,0, + 0,106,1456,1,0,0,0,108,1465,1,0,0,0,110,1471,1,0,0,0,112,1473,1, + 0,0,0,114,1487,1,0,0,0,116,1509,1,0,0,0,118,1511,1,0,0,0,120,1519, + 1,0,0,0,122,1526,1,0,0,0,124,1528,1,0,0,0,126,1542,1,0,0,0,128,1549, + 1,0,0,0,130,1551,1,0,0,0,132,1555,1,0,0,0,134,1559,1,0,0,0,136,1563, + 1,0,0,0,138,1567,1,0,0,0,140,1580,1,0,0,0,142,1588,1,0,0,0,144,1591, + 1,0,0,0,146,1593,1,0,0,0,148,1605,1,0,0,0,150,1615,1,0,0,0,152,1618, + 1,0,0,0,154,1629,1,0,0,0,156,1637,1,0,0,0,158,1680,1,0,0,0,160,1689, + 1,0,0,0,162,1717,1,0,0,0,164,1730,1,0,0,0,166,1732,1,0,0,0,168,1738, + 1,0,0,0,170,1741,1,0,0,0,172,1747,1,0,0,0,174,1753,1,0,0,0,176,1760, + 1,0,0,0,178,1794,1,0,0,0,180,1802,1,0,0,0,182,1815,1,0,0,0,184,1820, + 1,0,0,0,186,1831,1,0,0,0,188,1848,1,0,0,0,190,1850,1,0,0,0,192,1855, + 1,0,0,0,194,1862,1,0,0,0,196,1864,1,0,0,0,198,1867,1,0,0,0,200,1870, + 1,0,0,0,202,1884,1,0,0,0,204,1892,1,0,0,0,206,1918,1,0,0,0,208,1920, + 1,0,0,0,210,1937,1,0,0,0,212,1951,1,0,0,0,214,1953,1,0,0,0,216,1956, + 1,0,0,0,218,1959,1,0,0,0,220,1968,1,0,0,0,222,1988,1,0,0,0,224,1990, + 1,0,0,0,226,1993,1,0,0,0,228,2006,1,0,0,0,230,2008,1,0,0,0,232,2012, + 1,0,0,0,234,2020,1,0,0,0,236,2024,1,0,0,0,238,2033,1,0,0,0,240,2039, + 1,0,0,0,242,2045,1,0,0,0,244,2050,1,0,0,0,246,2096,1,0,0,0,248,2098, + 1,0,0,0,250,2106,1,0,0,0,252,2114,1,0,0,0,254,2122,1,0,0,0,256,2132, + 1,0,0,0,258,2134,1,0,0,0,260,2136,1,0,0,0,262,2138,1,0,0,0,264,2151, + 1,0,0,0,266,2159,1,0,0,0,268,2168,1,0,0,0,270,2172,1,0,0,0,272,2174, + 1,0,0,0,274,2179,1,0,0,0,276,2181,1,0,0,0,278,2185,1,0,0,0,280,2191, + 1,0,0,0,282,2199,1,0,0,0,284,2201,1,0,0,0,286,2204,1,0,0,0,288,2211, + 1,0,0,0,290,2222,1,0,0,0,292,2235,1,0,0,0,294,2237,1,0,0,0,296,2245, + 1,0,0,0,298,2249,1,0,0,0,300,2257,1,0,0,0,302,2259,1,0,0,0,304,2262, + 1,0,0,0,306,2269,1,0,0,0,308,2277,1,0,0,0,310,2284,1,0,0,0,312,2292, + 1,0,0,0,314,2300,1,0,0,0,316,2304,1,0,0,0,318,2306,1,0,0,0,320,2317, + 1,0,0,0,322,2321,1,0,0,0,324,2333,1,0,0,0,326,2341,1,0,0,0,328,2345, + 1,0,0,0,330,2357,1,0,0,0,332,2369,1,0,0,0,334,2374,1,0,0,0,336,2379, + 1,0,0,0,338,2381,1,0,0,0,340,2385,1,0,0,0,342,2389,1,0,0,0,344,2396, + 1,0,0,0,346,2398,1,0,0,0,348,2411,1,0,0,0,350,2450,1,0,0,0,352,2452, + 1,0,0,0,354,2457,1,0,0,0,356,2462,1,0,0,0,358,2469,1,0,0,0,360,2474, + 1,0,0,0,362,2479,1,0,0,0,364,2485,1,0,0,0,366,2487,1,0,0,0,368,2496, + 1,0,0,0,370,2508,1,0,0,0,372,2588,1,0,0,0,374,2594,1,0,0,0,376,2620, + 1,0,0,0,378,2622,1,0,0,0,380,2644,1,0,0,0,382,2649,1,0,0,0,384,2653, + 1,0,0,0,386,2685,1,0,0,0,388,2687,1,0,0,0,390,2698,1,0,0,0,392,2704, + 1,0,0,0,394,2706,1,0,0,0,396,2738,1,0,0,0,398,2745,1,0,0,0,400,2751, + 1,0,0,0,402,2757,1,0,0,0,404,2772,1,0,0,0,406,2782,1,0,0,0,408,2790, + 1,0,0,0,410,2793,1,0,0,0,412,2796,1,0,0,0,414,2799,1,0,0,0,416,2921, + 1,0,0,0,418,3055,1,0,0,0,420,3083,1,0,0,0,422,3100,1,0,0,0,424,3117, + 1,0,0,0,426,3119,1,0,0,0,428,3122,1,0,0,0,430,3148,1,0,0,0,432,3153, + 1,0,0,0,434,3180,1,0,0,0,436,3191,1,0,0,0,438,3328,1,0,0,0,440,3330, + 1,0,0,0,442,3353,1,0,0,0,444,3365,1,0,0,0,446,3370,1,0,0,0,448,3378, + 1,0,0,0,450,3386,1,0,0,0,452,3398,1,0,0,0,454,3432,1,0,0,0,456,3434, + 1,0,0,0,458,3452,1,0,0,0,460,3461,1,0,0,0,462,3491,1,0,0,0,464,3550, + 1,0,0,0,466,3552,1,0,0,0,468,3581,1,0,0,0,470,3583,1,0,0,0,472,3599, + 1,0,0,0,474,3611,1,0,0,0,476,3613,1,0,0,0,478,3617,1,0,0,0,480,3627, + 1,0,0,0,482,3637,1,0,0,0,484,3642,1,0,0,0,486,3649,1,0,0,0,488,3653, + 1,0,0,0,490,3672,1,0,0,0,492,3677,1,0,0,0,494,3679,1,0,0,0,496,3683, + 1,0,0,0,498,3709,1,0,0,0,500,3712,1,0,0,0,502,3733,1,0,0,0,504,3738, + 1,0,0,0,506,3769,1,0,0,0,508,3771,1,0,0,0,510,3795,1,0,0,0,512,3826, + 1,0,0,0,514,3828,1,0,0,0,516,3830,1,0,0,0,518,3832,1,0,0,0,520,3857, + 1,0,0,0,522,3859,1,0,0,0,524,3867,1,0,0,0,526,3893,1,0,0,0,528,3895, + 1,0,0,0,530,3915,1,0,0,0,532,3917,1,0,0,0,534,3928,1,0,0,0,536,3941, + 1,0,0,0,538,3976,1,0,0,0,540,3978,1,0,0,0,542,3981,1,0,0,0,544,3986, + 1,0,0,0,546,3988,1,0,0,0,548,4010,1,0,0,0,550,4012,1,0,0,0,552,4016, + 1,0,0,0,554,4025,1,0,0,0,556,4035,1,0,0,0,558,4039,1,0,0,0,560,4043, + 1,0,0,0,562,4047,1,0,0,0,564,4123,1,0,0,0,566,4125,1,0,0,0,568,4128, + 1,0,0,0,570,4132,1,0,0,0,572,4137,1,0,0,0,574,4139,1,0,0,0,576,4150, + 1,0,0,0,578,4167,1,0,0,0,580,4183,1,0,0,0,582,4192,1,0,0,0,584,4207, + 1,0,0,0,586,4237,1,0,0,0,588,4239,1,0,0,0,590,4256,1,0,0,0,592,4272, + 1,0,0,0,594,4274,1,0,0,0,596,4293,1,0,0,0,598,4298,1,0,0,0,600,4313, + 1,0,0,0,602,4321,1,0,0,0,604,4329,1,0,0,0,606,4337,1,0,0,0,608,4345, + 1,0,0,0,610,4353,1,0,0,0,612,4361,1,0,0,0,614,4363,1,0,0,0,616,4373, + 1,0,0,0,618,4381,1,0,0,0,620,4397,1,0,0,0,622,4401,1,0,0,0,624,4406, + 1,0,0,0,626,4408,1,0,0,0,628,4419,1,0,0,0,630,4421,1,0,0,0,632,4439, + 1,0,0,0,634,4444,1,0,0,0,636,4452,1,0,0,0,638,4460,1,0,0,0,640,4464, + 1,0,0,0,642,4476,1,0,0,0,644,4481,1,0,0,0,646,4492,1,0,0,0,648,4499, + 1,0,0,0,650,4501,1,0,0,0,652,4505,1,0,0,0,654,4507,1,0,0,0,656,4512, + 1,0,0,0,658,4514,1,0,0,0,660,4516,1,0,0,0,662,4569,1,0,0,0,664,4736, + 1,0,0,0,666,4738,1,0,0,0,668,4747,1,0,0,0,670,4749,1,0,0,0,672,4760, + 1,0,0,0,674,4762,1,0,0,0,676,4767,1,0,0,0,678,4769,1,0,0,0,680,4771, + 1,0,0,0,682,4773,1,0,0,0,684,4775,1,0,0,0,686,4777,1,0,0,0,688,4779, + 1,0,0,0,690,4781,1,0,0,0,692,4783,1,0,0,0,694,4785,1,0,0,0,696,4787, + 1,0,0,0,698,4795,1,0,0,0,700,4803,1,0,0,0,702,4817,1,0,0,0,704,4819, + 1,0,0,0,706,708,3,2,1,0,707,706,1,0,0,0,708,711,1,0,0,0,709,707, + 1,0,0,0,709,710,1,0,0,0,710,712,1,0,0,0,711,709,1,0,0,0,712,713, + 5,0,0,1,713,1,1,0,0,0,714,717,3,4,2,0,715,717,3,10,5,0,716,714,1, + 0,0,0,716,715,1,0,0,0,717,719,1,0,0,0,718,720,5,398,0,0,719,718, + 1,0,0,0,719,720,1,0,0,0,720,3,1,0,0,0,721,731,5,119,0,0,722,724, + 3,6,3,0,723,722,1,0,0,0,724,727,1,0,0,0,725,723,1,0,0,0,725,726, + 1,0,0,0,726,728,1,0,0,0,727,725,1,0,0,0,728,732,3,10,5,0,729,730, + 5,284,0,0,730,732,3,362,181,0,731,725,1,0,0,0,731,729,1,0,0,0,732, + 5,1,0,0,0,733,756,5,122,0,0,734,756,5,138,0,0,735,756,5,88,0,0,736, + 738,5,37,0,0,737,739,7,0,0,0,738,737,1,0,0,0,738,739,1,0,0,0,739, + 756,1,0,0,0,740,756,5,192,0,0,741,756,5,21,0,0,742,756,5,10,0,0, + 743,756,5,275,0,0,744,756,5,191,0,0,745,756,5,19,0,0,746,748,5,377, + 0,0,747,749,5,225,0,0,748,747,1,0,0,0,748,749,1,0,0,0,749,751,1, + 0,0,0,750,752,3,8,4,0,751,750,1,0,0,0,751,752,1,0,0,0,752,756,1, + 0,0,0,753,756,5,79,0,0,754,756,5,78,0,0,755,733,1,0,0,0,755,734, + 1,0,0,0,755,735,1,0,0,0,755,736,1,0,0,0,755,740,1,0,0,0,755,741, + 1,0,0,0,755,742,1,0,0,0,755,743,1,0,0,0,755,744,1,0,0,0,755,745, + 1,0,0,0,755,746,1,0,0,0,755,753,1,0,0,0,755,754,1,0,0,0,756,7,1, + 0,0,0,757,758,7,1,0,0,758,9,1,0,0,0,759,831,3,362,181,0,760,831, + 3,12,6,0,761,831,3,16,8,0,762,831,3,18,9,0,763,831,3,20,10,0,764, + 831,3,24,12,0,765,766,5,277,0,0,766,767,5,320,0,0,767,770,3,474, + 237,0,768,769,5,387,0,0,769,771,3,230,115,0,770,768,1,0,0,0,770, + 771,1,0,0,0,771,831,1,0,0,0,772,831,3,28,14,0,773,774,5,86,0,0,774, + 775,5,139,0,0,775,777,3,480,240,0,776,778,3,498,249,0,777,776,1, + 0,0,0,777,778,1,0,0,0,778,831,1,0,0,0,779,780,5,365,0,0,780,781, + 3,480,240,0,781,783,3,394,197,0,782,784,3,498,249,0,783,782,1,0, + 0,0,783,784,1,0,0,0,784,831,1,0,0,0,785,831,3,396,198,0,786,788, + 5,203,0,0,787,789,5,436,0,0,788,787,1,0,0,0,788,789,1,0,0,0,789, + 790,1,0,0,0,790,791,5,166,0,0,791,796,3,480,240,0,792,794,5,17,0, + 0,793,792,1,0,0,0,793,794,1,0,0,0,794,795,1,0,0,0,795,797,3,652, + 326,0,796,793,1,0,0,0,796,797,1,0,0,0,797,798,1,0,0,0,798,799,5, + 370,0,0,799,800,3,458,229,0,800,801,5,224,0,0,801,802,3,594,297, + 0,802,803,3,400,200,0,803,831,1,0,0,0,804,805,5,249,0,0,805,806, + 3,652,326,0,806,807,5,139,0,0,807,808,3,362,181,0,808,831,1,0,0, + 0,809,810,5,115,0,0,810,811,3,652,326,0,811,812,5,370,0,0,812,813, + 3,298,149,0,813,831,1,0,0,0,814,815,5,304,0,0,815,820,3,662,331, + 0,816,817,7,2,0,0,817,819,3,662,331,0,818,816,1,0,0,0,819,822,1, + 0,0,0,820,818,1,0,0,0,820,821,1,0,0,0,821,823,1,0,0,0,822,820,1, + 0,0,0,823,827,5,405,0,0,824,826,9,0,0,0,825,824,1,0,0,0,826,829, + 1,0,0,0,827,828,1,0,0,0,827,825,1,0,0,0,828,831,1,0,0,0,829,827, + 1,0,0,0,830,759,1,0,0,0,830,760,1,0,0,0,830,761,1,0,0,0,830,762, + 1,0,0,0,830,763,1,0,0,0,830,764,1,0,0,0,830,765,1,0,0,0,830,772, + 1,0,0,0,830,773,1,0,0,0,830,779,1,0,0,0,830,785,1,0,0,0,830,786, + 1,0,0,0,830,804,1,0,0,0,830,809,1,0,0,0,830,814,1,0,0,0,831,11,1, + 0,0,0,832,833,5,187,0,0,833,835,5,66,0,0,834,836,5,188,0,0,835,834, + 1,0,0,0,835,836,1,0,0,0,836,837,1,0,0,0,837,838,5,158,0,0,838,840, + 5,426,0,0,839,841,5,235,0,0,840,839,1,0,0,0,840,841,1,0,0,0,841, + 842,1,0,0,0,842,843,5,166,0,0,843,844,5,329,0,0,844,846,3,638,319, + 0,845,847,3,56,28,0,846,845,1,0,0,0,846,847,1,0,0,0,847,13,1,0,0, + 0,848,850,5,134,0,0,849,851,5,204,0,0,850,849,1,0,0,0,850,851,1, + 0,0,0,851,852,1,0,0,0,852,853,5,279,0,0,853,854,5,399,0,0,854,855, + 5,426,0,0,855,856,5,400,0,0,856,15,1,0,0,0,857,858,5,120,0,0,858, + 859,5,329,0,0,859,860,3,638,319,0,860,861,5,341,0,0,861,863,5,426, + 0,0,862,864,3,14,7,0,863,862,1,0,0,0,863,864,1,0,0,0,864,17,1,0, + 0,0,865,871,5,153,0,0,866,868,5,123,0,0,867,866,1,0,0,0,867,868, + 1,0,0,0,868,869,1,0,0,0,869,870,5,329,0,0,870,872,3,638,319,0,871, + 867,1,0,0,0,871,872,1,0,0,0,872,873,1,0,0,0,873,874,5,139,0,0,874, + 876,5,426,0,0,875,877,3,426,213,0,876,875,1,0,0,0,876,877,1,0,0, + 0,877,19,1,0,0,0,878,879,5,277,0,0,879,880,5,103,0,0,880,883,3,22, + 11,0,881,882,5,278,0,0,882,884,3,22,11,0,883,881,1,0,0,0,883,884, + 1,0,0,0,884,887,1,0,0,0,885,886,5,387,0,0,886,888,3,230,115,0,887, + 885,1,0,0,0,887,888,1,0,0,0,888,21,1,0,0,0,889,892,3,474,237,0,890, + 891,5,395,0,0,891,893,3,26,13,0,892,890,1,0,0,0,892,893,1,0,0,0, + 893,23,1,0,0,0,894,895,5,277,0,0,895,896,5,187,0,0,896,899,3,22, + 11,0,897,898,5,166,0,0,898,900,3,474,237,0,899,897,1,0,0,0,899,900, + 1,0,0,0,900,903,1,0,0,0,901,902,5,387,0,0,902,904,3,230,115,0,903, + 901,1,0,0,0,903,904,1,0,0,0,904,25,1,0,0,0,905,908,5,426,0,0,906, + 907,5,395,0,0,907,909,5,426,0,0,908,906,1,0,0,0,908,909,1,0,0,0, + 909,27,1,0,0,0,910,969,3,42,21,0,911,969,3,46,23,0,912,969,3,48, + 24,0,913,969,3,438,219,0,914,969,3,54,27,0,915,969,3,52,26,0,916, + 969,3,414,207,0,917,969,3,64,32,0,918,969,3,72,36,0,919,969,3,138, + 69,0,920,969,3,160,80,0,921,969,3,176,88,0,922,969,3,180,90,0,923, + 969,3,184,92,0,924,969,3,182,91,0,925,969,3,174,87,0,926,969,3,178, + 89,0,927,969,3,146,73,0,928,969,3,152,76,0,929,969,3,148,74,0,930, + 969,3,150,75,0,931,969,3,154,77,0,932,969,3,156,78,0,933,969,3,158, + 79,0,934,969,3,66,33,0,935,969,3,76,38,0,936,969,3,82,41,0,937,969, + 3,78,39,0,938,969,3,84,42,0,939,969,3,86,43,0,940,969,3,88,44,0, + 941,969,3,90,45,0,942,969,3,92,46,0,943,969,3,106,53,0,944,969,3, + 98,49,0,945,969,3,108,54,0,946,969,3,100,50,0,947,969,3,94,47,0, + 948,969,3,96,48,0,949,969,3,104,52,0,950,969,3,102,51,0,951,952, + 5,1,0,0,952,954,7,3,0,0,953,955,5,431,0,0,954,953,1,0,0,0,955,956, + 1,0,0,0,956,954,1,0,0,0,956,957,1,0,0,0,957,969,1,0,0,0,958,959, + 5,176,0,0,959,961,5,258,0,0,960,962,5,426,0,0,961,960,1,0,0,0,962, + 963,1,0,0,0,963,961,1,0,0,0,963,964,1,0,0,0,964,969,1,0,0,0,965, + 969,3,664,332,0,966,969,3,440,220,0,967,969,3,442,221,0,968,910, + 1,0,0,0,968,911,1,0,0,0,968,912,1,0,0,0,968,913,1,0,0,0,968,914, + 1,0,0,0,968,915,1,0,0,0,968,916,1,0,0,0,968,917,1,0,0,0,968,918, + 1,0,0,0,968,919,1,0,0,0,968,920,1,0,0,0,968,921,1,0,0,0,968,922, + 1,0,0,0,968,923,1,0,0,0,968,924,1,0,0,0,968,925,1,0,0,0,968,926, + 1,0,0,0,968,927,1,0,0,0,968,928,1,0,0,0,968,929,1,0,0,0,968,930, + 1,0,0,0,968,931,1,0,0,0,968,932,1,0,0,0,968,933,1,0,0,0,968,934, + 1,0,0,0,968,935,1,0,0,0,968,936,1,0,0,0,968,937,1,0,0,0,968,938, + 1,0,0,0,968,939,1,0,0,0,968,940,1,0,0,0,968,941,1,0,0,0,968,942, + 1,0,0,0,968,943,1,0,0,0,968,944,1,0,0,0,968,945,1,0,0,0,968,946, + 1,0,0,0,968,947,1,0,0,0,968,948,1,0,0,0,968,949,1,0,0,0,968,950, + 1,0,0,0,968,951,1,0,0,0,968,958,1,0,0,0,968,965,1,0,0,0,968,966, + 1,0,0,0,968,967,1,0,0,0,969,29,1,0,0,0,970,971,5,151,0,0,971,972, + 5,117,0,0,972,31,1,0,0,0,973,974,5,151,0,0,974,975,5,216,0,0,975, + 976,5,117,0,0,976,33,1,0,0,0,977,978,7,4,0,0,978,35,1,0,0,0,979, + 980,3,676,338,0,980,981,5,284,0,0,981,37,1,0,0,0,982,983,3,678,339, + 0,983,984,5,284,0,0,984,39,1,0,0,0,985,986,5,321,0,0,986,987,5,17, + 0,0,987,988,5,92,0,0,988,41,1,0,0,0,989,991,5,58,0,0,990,992,5,273, + 0,0,991,990,1,0,0,0,991,992,1,0,0,0,992,993,1,0,0,0,993,995,3,70, + 35,0,994,996,3,32,16,0,995,994,1,0,0,0,995,996,1,0,0,0,996,997,1, + 0,0,0,997,999,3,476,238,0,998,1000,3,50,25,0,999,998,1,0,0,0,999, + 1000,1,0,0,0,1000,1002,1,0,0,0,1001,1003,3,426,213,0,1002,1001,1, + 0,0,0,1002,1003,1,0,0,0,1003,1006,1,0,0,0,1004,1005,5,196,0,0,1005, + 1007,5,426,0,0,1006,1004,1,0,0,0,1006,1007,1,0,0,0,1007,1011,1,0, + 0,0,1008,1009,5,387,0,0,1009,1010,5,76,0,0,1010,1012,3,230,115,0, + 1011,1008,1,0,0,0,1011,1012,1,0,0,0,1012,1030,1,0,0,0,1013,1014, + 5,58,0,0,1014,1015,5,273,0,0,1015,1017,3,70,35,0,1016,1018,3,32, + 16,0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1,0,0,0,1019, + 1021,3,476,238,0,1020,1022,3,50,25,0,1021,1020,1,0,0,0,1021,1022, + 1,0,0,0,1022,1023,1,0,0,0,1023,1027,3,44,22,0,1024,1025,5,387,0, + 0,1025,1026,5,76,0,0,1026,1028,3,230,115,0,1027,1024,1,0,0,0,1027, + 1028,1,0,0,0,1028,1030,1,0,0,0,1029,989,1,0,0,0,1029,1013,1,0,0, + 0,1030,43,1,0,0,0,1031,1032,5,370,0,0,1032,1033,3,474,237,0,1033, + 45,1,0,0,0,1034,1035,5,368,0,0,1035,1036,3,474,237,0,1036,47,1,0, + 0,0,1037,1038,5,101,0,0,1038,1040,3,70,35,0,1039,1041,3,30,15,0, + 1040,1039,1,0,0,0,1040,1041,1,0,0,0,1041,1042,1,0,0,0,1042,1044, + 3,474,237,0,1043,1045,3,34,17,0,1044,1043,1,0,0,0,1044,1045,1,0, + 0,0,1045,49,1,0,0,0,1046,1047,5,47,0,0,1047,1048,5,426,0,0,1048, + 51,1,0,0,0,1049,1051,5,351,0,0,1050,1052,5,329,0,0,1051,1050,1,0, + 0,0,1051,1052,1,0,0,0,1052,1053,1,0,0,0,1053,1059,3,638,319,0,1054, + 1055,5,46,0,0,1055,1056,5,399,0,0,1056,1057,3,254,127,0,1057,1058, + 5,400,0,0,1058,1060,1,0,0,0,1059,1054,1,0,0,0,1059,1060,1,0,0,0, + 1060,1062,1,0,0,0,1061,1063,5,135,0,0,1062,1061,1,0,0,0,1062,1063, + 1,0,0,0,1063,53,1,0,0,0,1064,1065,5,101,0,0,1065,1067,5,329,0,0, + 1066,1068,3,30,15,0,1067,1066,1,0,0,0,1067,1068,1,0,0,0,1068,1069, + 1,0,0,0,1069,1071,3,480,240,0,1070,1072,5,255,0,0,1071,1070,1,0, + 0,0,1071,1072,1,0,0,0,1072,1074,1,0,0,0,1073,1075,3,14,7,0,1074, + 1073,1,0,0,0,1074,1075,1,0,0,0,1075,55,1,0,0,0,1076,1077,5,160,0, + 0,1077,1078,5,426,0,0,1078,1079,5,301,0,0,1079,1080,5,426,0,0,1080, + 57,1,0,0,0,1081,1084,3,652,326,0,1082,1083,5,395,0,0,1083,1085,3, + 652,326,0,1084,1082,1,0,0,0,1084,1085,1,0,0,0,1085,1099,1,0,0,0, + 1086,1096,3,652,326,0,1087,1092,5,395,0,0,1088,1093,5,104,0,0,1089, + 1093,5,175,0,0,1090,1093,5,375,0,0,1091,1093,3,652,326,0,1092,1088, + 1,0,0,0,1092,1089,1,0,0,0,1092,1090,1,0,0,0,1092,1091,1,0,0,0,1093, + 1095,1,0,0,0,1094,1087,1,0,0,0,1095,1098,1,0,0,0,1096,1094,1,0,0, + 0,1096,1097,1,0,0,0,1097,1100,1,0,0,0,1098,1096,1,0,0,0,1099,1086, + 1,0,0,0,1099,1100,1,0,0,0,1100,59,1,0,0,0,1101,1103,3,58,29,0,1102, + 1104,3,640,320,0,1103,1102,1,0,0,0,1103,1104,1,0,0,0,1104,61,1,0, + 0,0,1105,1107,3,478,239,0,1106,1108,3,640,320,0,1107,1106,1,0,0, + 0,1107,1108,1,0,0,0,1108,1110,1,0,0,0,1109,1111,3,262,131,0,1110, + 1109,1,0,0,0,1110,1111,1,0,0,0,1111,63,1,0,0,0,1112,1135,7,5,0,0, + 1113,1115,3,70,35,0,1114,1116,5,122,0,0,1115,1114,1,0,0,0,1115,1116, + 1,0,0,0,1116,1117,1,0,0,0,1117,1118,3,474,237,0,1118,1136,1,0,0, + 0,1119,1121,5,69,0,0,1120,1122,5,122,0,0,1121,1120,1,0,0,0,1121, + 1122,1,0,0,0,1122,1123,1,0,0,0,1123,1136,3,474,237,0,1124,1126,5, + 141,0,0,1125,1127,5,122,0,0,1126,1125,1,0,0,0,1126,1127,1,0,0,0, + 1127,1128,1,0,0,0,1128,1136,3,570,285,0,1129,1132,5,138,0,0,1130, + 1132,5,122,0,0,1131,1129,1,0,0,0,1131,1130,1,0,0,0,1132,1133,1,0, + 0,0,1133,1136,3,62,31,0,1134,1136,3,62,31,0,1135,1113,1,0,0,0,1135, + 1119,1,0,0,0,1135,1124,1,0,0,0,1135,1131,1,0,0,0,1135,1134,1,0,0, + 0,1136,65,1,0,0,0,1137,1138,5,10,0,0,1138,1139,5,329,0,0,1139,1152, + 3,638,319,0,1140,1141,5,52,0,0,1141,1148,5,319,0,0,1142,1149,5,215, + 0,0,1143,1144,5,134,0,0,1144,1146,5,46,0,0,1145,1147,3,254,127,0, + 1146,1145,1,0,0,0,1146,1147,1,0,0,0,1147,1149,1,0,0,0,1148,1142, + 1,0,0,0,1148,1143,1,0,0,0,1148,1149,1,0,0,0,1149,1153,1,0,0,0,1150, + 1151,5,33,0,0,1151,1153,5,204,0,0,1152,1140,1,0,0,0,1152,1150,1, + 0,0,0,1153,67,1,0,0,0,1154,1155,7,6,0,0,1155,69,1,0,0,0,1156,1157, + 7,7,0,0,1157,71,1,0,0,0,1158,1159,5,308,0,0,1159,1162,7,8,0,0,1160, + 1161,5,184,0,0,1161,1163,3,194,97,0,1162,1160,1,0,0,0,1162,1163, + 1,0,0,0,1163,1342,1,0,0,0,1164,1166,5,308,0,0,1165,1167,5,122,0, + 0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1168,1,0,0,0,1168,1172, + 5,330,0,0,1169,1170,3,68,34,0,1170,1171,3,474,237,0,1171,1173,1, + 0,0,0,1172,1169,1,0,0,0,1172,1173,1,0,0,0,1173,1175,1,0,0,0,1174, + 1176,3,74,37,0,1175,1174,1,0,0,0,1175,1176,1,0,0,0,1176,1342,1,0, + 0,0,1177,1178,5,308,0,0,1178,1182,5,379,0,0,1179,1180,3,68,34,0, + 1180,1181,3,474,237,0,1181,1183,1,0,0,0,1182,1179,1,0,0,0,1182,1183, + 1,0,0,0,1183,1187,1,0,0,0,1184,1185,5,184,0,0,1185,1188,3,194,97, + 0,1186,1188,3,194,97,0,1187,1184,1,0,0,0,1187,1186,1,0,0,0,1187, + 1188,1,0,0,0,1188,1342,1,0,0,0,1189,1190,5,308,0,0,1190,1191,5,202, + 0,0,1191,1195,5,379,0,0,1192,1193,3,68,34,0,1193,1194,3,474,237, + 0,1194,1196,1,0,0,0,1195,1192,1,0,0,0,1195,1196,1,0,0,0,1196,1200, + 1,0,0,0,1197,1198,5,184,0,0,1198,1201,3,194,97,0,1199,1201,3,194, + 97,0,1200,1197,1,0,0,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201, + 1342,1,0,0,0,1202,1204,5,308,0,0,1203,1205,5,315,0,0,1204,1203,1, + 0,0,0,1204,1205,1,0,0,0,1205,1206,1,0,0,0,1206,1207,5,46,0,0,1207, + 1208,3,68,34,0,1208,1212,3,478,239,0,1209,1210,3,68,34,0,1210,1211, + 3,474,237,0,1211,1213,1,0,0,0,1212,1209,1,0,0,0,1212,1213,1,0,0, + 0,1213,1217,1,0,0,0,1214,1215,5,184,0,0,1215,1218,3,194,97,0,1216, + 1218,3,194,97,0,1217,1214,1,0,0,0,1217,1216,1,0,0,0,1217,1218,1, + 0,0,0,1218,1342,1,0,0,0,1219,1220,5,308,0,0,1220,1223,5,142,0,0, + 1221,1222,5,184,0,0,1222,1224,3,570,285,0,1223,1221,1,0,0,0,1223, + 1224,1,0,0,0,1224,1342,1,0,0,0,1225,1226,5,308,0,0,1226,1227,5,239, + 0,0,1227,1229,3,478,239,0,1228,1230,3,640,320,0,1229,1228,1,0,0, + 0,1229,1230,1,0,0,0,1230,1232,1,0,0,0,1231,1233,3,498,249,0,1232, + 1231,1,0,0,0,1232,1233,1,0,0,0,1233,1235,1,0,0,0,1234,1236,3,554, + 277,0,1235,1234,1,0,0,0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237, + 1239,3,388,194,0,1238,1237,1,0,0,0,1238,1239,1,0,0,0,1239,1342,1, + 0,0,0,1240,1241,5,308,0,0,1241,1247,5,58,0,0,1242,1243,3,70,35,0, + 1243,1244,3,474,237,0,1244,1248,1,0,0,0,1245,1246,5,329,0,0,1246, + 1248,3,480,240,0,1247,1242,1,0,0,0,1247,1245,1,0,0,0,1248,1342,1, + 0,0,0,1249,1250,5,308,0,0,1250,1251,5,329,0,0,1251,1255,5,122,0, + 0,1252,1253,3,68,34,0,1253,1254,3,474,237,0,1254,1256,1,0,0,0,1255, + 1252,1,0,0,0,1255,1256,1,0,0,0,1256,1257,1,0,0,0,1257,1258,5,184, + 0,0,1258,1260,3,194,97,0,1259,1261,3,640,320,0,1260,1259,1,0,0,0, + 1260,1261,1,0,0,0,1261,1342,1,0,0,0,1262,1263,5,308,0,0,1263,1264, + 5,332,0,0,1264,1268,3,480,240,0,1265,1266,5,399,0,0,1266,1267,5, + 426,0,0,1267,1269,5,400,0,0,1268,1265,1,0,0,0,1268,1269,1,0,0,0, + 1269,1342,1,0,0,0,1270,1271,5,308,0,0,1271,1283,5,191,0,0,1272,1273, + 3,70,35,0,1273,1275,3,474,237,0,1274,1276,5,122,0,0,1275,1274,1, + 0,0,0,1275,1276,1,0,0,0,1276,1284,1,0,0,0,1277,1279,3,60,30,0,1278, + 1277,1,0,0,0,1278,1279,1,0,0,0,1279,1281,1,0,0,0,1280,1282,5,122, + 0,0,1281,1280,1,0,0,0,1281,1282,1,0,0,0,1282,1284,1,0,0,0,1283,1272, + 1,0,0,0,1283,1278,1,0,0,0,1284,1342,1,0,0,0,1285,1286,5,308,0,0, + 1286,1313,5,50,0,0,1287,1288,5,51,0,0,1288,1289,5,405,0,0,1289,1314, + 5,431,0,0,1290,1291,3,70,35,0,1291,1292,3,474,237,0,1292,1297,1, + 0,0,0,1293,1295,3,60,30,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295, + 1297,1,0,0,0,1296,1290,1,0,0,0,1296,1294,1,0,0,0,1297,1299,1,0,0, + 0,1298,1300,3,408,204,0,1299,1298,1,0,0,0,1299,1300,1,0,0,0,1300, + 1302,1,0,0,0,1301,1303,3,410,205,0,1302,1301,1,0,0,0,1302,1303,1, + 0,0,0,1303,1305,1,0,0,0,1304,1306,3,412,206,0,1305,1304,1,0,0,0, + 1305,1306,1,0,0,0,1306,1308,1,0,0,0,1307,1309,3,554,277,0,1308,1307, + 1,0,0,0,1308,1309,1,0,0,0,1309,1311,1,0,0,0,1310,1312,3,388,194, + 0,1311,1310,1,0,0,0,1311,1312,1,0,0,0,1312,1314,1,0,0,0,1313,1287, + 1,0,0,0,1313,1296,1,0,0,0,1314,1342,1,0,0,0,1315,1316,5,308,0,0, + 1316,1342,5,346,0,0,1317,1318,5,308,0,0,1318,1319,5,54,0,0,1319, + 1342,5,426,0,0,1320,1321,5,308,0,0,1321,1325,5,280,0,0,1322,1323, + 5,243,0,0,1323,1326,3,652,326,0,1324,1326,5,244,0,0,1325,1322,1, + 0,0,0,1325,1324,1,0,0,0,1326,1342,1,0,0,0,1327,1328,5,308,0,0,1328, + 1342,5,70,0,0,1329,1331,5,308,0,0,1330,1332,5,138,0,0,1331,1330, + 1,0,0,0,1331,1332,1,0,0,0,1332,1333,1,0,0,0,1333,1334,7,9,0,0,1334, + 1335,5,224,0,0,1335,1339,3,480,240,0,1336,1337,3,68,34,0,1337,1338, + 3,474,237,0,1338,1340,1,0,0,0,1339,1336,1,0,0,0,1339,1340,1,0,0, + 0,1340,1342,1,0,0,0,1341,1158,1,0,0,0,1341,1164,1,0,0,0,1341,1177, + 1,0,0,0,1341,1189,1,0,0,0,1341,1202,1,0,0,0,1341,1219,1,0,0,0,1341, + 1225,1,0,0,0,1341,1240,1,0,0,0,1341,1249,1,0,0,0,1341,1262,1,0,0, + 0,1341,1270,1,0,0,0,1341,1285,1,0,0,0,1341,1315,1,0,0,0,1341,1317, + 1,0,0,0,1341,1320,1,0,0,0,1341,1327,1,0,0,0,1341,1329,1,0,0,0,1342, + 73,1,0,0,0,1343,1344,5,384,0,0,1344,1345,3,652,326,0,1345,1346,5, + 405,0,0,1346,1347,5,426,0,0,1347,1352,1,0,0,0,1348,1349,5,184,0, + 0,1349,1352,3,194,97,0,1350,1352,3,194,97,0,1351,1343,1,0,0,0,1351, + 1348,1,0,0,0,1351,1350,1,0,0,0,1352,75,1,0,0,0,1353,1354,5,190,0, + 0,1354,1355,5,329,0,0,1355,1356,3,638,319,0,1356,1357,3,80,40,0, + 1357,77,1,0,0,0,1358,1359,5,190,0,0,1359,1360,3,70,35,0,1360,1361, + 3,474,237,0,1361,1362,3,80,40,0,1362,79,1,0,0,0,1363,1364,7,10,0, + 0,1364,81,1,0,0,0,1365,1366,5,361,0,0,1366,1367,5,329,0,0,1367,1368, + 3,638,319,0,1368,83,1,0,0,0,1369,1370,5,361,0,0,1370,1371,3,70,35, + 0,1371,1372,3,474,237,0,1372,85,1,0,0,0,1373,1374,5,58,0,0,1374, + 1375,5,287,0,0,1375,1376,3,652,326,0,1376,87,1,0,0,0,1377,1378,5, + 101,0,0,1378,1379,5,287,0,0,1379,1380,3,652,326,0,1380,89,1,0,0, + 0,1381,1382,5,143,0,0,1382,1384,3,118,59,0,1383,1385,3,112,56,0, + 1384,1383,1,0,0,0,1384,1385,1,0,0,0,1385,1386,1,0,0,0,1386,1387, + 5,341,0,0,1387,1389,3,124,62,0,1388,1390,3,130,65,0,1389,1388,1, + 0,0,0,1389,1390,1,0,0,0,1390,91,1,0,0,0,1391,1393,5,283,0,0,1392, + 1394,3,132,66,0,1393,1392,1,0,0,0,1393,1394,1,0,0,0,1394,1395,1, + 0,0,0,1395,1397,3,118,59,0,1396,1398,3,112,56,0,1397,1396,1,0,0, + 0,1397,1398,1,0,0,0,1398,1399,1,0,0,0,1399,1400,5,139,0,0,1400,1401, + 3,124,62,0,1401,93,1,0,0,0,1402,1404,5,143,0,0,1403,1405,5,287,0, + 0,1404,1403,1,0,0,0,1404,1405,1,0,0,0,1405,1406,1,0,0,0,1406,1411, + 3,652,326,0,1407,1408,5,397,0,0,1408,1410,3,652,326,0,1409,1407, + 1,0,0,0,1410,1413,1,0,0,0,1411,1409,1,0,0,0,1411,1412,1,0,0,0,1412, + 1414,1,0,0,0,1413,1411,1,0,0,0,1414,1415,5,341,0,0,1415,1417,3,124, + 62,0,1416,1418,3,136,68,0,1417,1416,1,0,0,0,1417,1418,1,0,0,0,1418, + 95,1,0,0,0,1419,1421,5,283,0,0,1420,1422,3,134,67,0,1421,1420,1, + 0,0,0,1421,1422,1,0,0,0,1422,1424,1,0,0,0,1423,1425,5,287,0,0,1424, + 1423,1,0,0,0,1424,1425,1,0,0,0,1425,1426,1,0,0,0,1426,1431,3,652, + 326,0,1427,1428,5,397,0,0,1428,1430,3,652,326,0,1429,1427,1,0,0, + 0,1430,1433,1,0,0,0,1431,1429,1,0,0,0,1431,1432,1,0,0,0,1432,1434, + 1,0,0,0,1433,1431,1,0,0,0,1434,1435,5,139,0,0,1435,1436,3,124,62, + 0,1436,97,1,0,0,0,1437,1438,5,308,0,0,1438,1439,5,287,0,0,1439,1440, + 5,143,0,0,1440,1441,3,126,63,0,1441,99,1,0,0,0,1442,1443,5,308,0, + 0,1443,1444,5,288,0,0,1444,101,1,0,0,0,1445,1446,5,308,0,0,1446, + 1447,5,62,0,0,1447,1448,5,288,0,0,1448,103,1,0,0,0,1449,1450,5,304, + 0,0,1450,1454,5,287,0,0,1451,1455,5,7,0,0,1452,1455,5,213,0,0,1453, + 1455,3,652,326,0,1454,1451,1,0,0,0,1454,1452,1,0,0,0,1454,1453,1, + 0,0,0,1455,105,1,0,0,0,1456,1457,5,308,0,0,1457,1459,5,143,0,0,1458, + 1460,3,126,63,0,1459,1458,1,0,0,0,1459,1460,1,0,0,0,1460,1463,1, + 0,0,0,1461,1462,5,224,0,0,1462,1464,3,110,55,0,1463,1461,1,0,0,0, + 1463,1464,1,0,0,0,1464,107,1,0,0,0,1465,1466,5,308,0,0,1466,1467, + 5,252,0,0,1467,1468,3,652,326,0,1468,109,1,0,0,0,1469,1472,5,7,0, + 0,1470,1472,3,116,58,0,1471,1469,1,0,0,0,1471,1470,1,0,0,0,1472, + 111,1,0,0,0,1473,1474,5,224,0,0,1474,1475,3,114,57,0,1475,113,1, + 0,0,0,1476,1477,3,70,35,0,1477,1478,3,474,237,0,1478,1488,1,0,0, + 0,1479,1481,5,329,0,0,1480,1479,1,0,0,0,1480,1481,1,0,0,0,1481,1482, + 1,0,0,0,1482,1488,3,638,319,0,1483,1484,5,366,0,0,1484,1488,5,426, + 0,0,1485,1486,5,303,0,0,1486,1488,3,652,326,0,1487,1476,1,0,0,0, + 1487,1480,1,0,0,0,1487,1483,1,0,0,0,1487,1485,1,0,0,0,1488,115,1, + 0,0,0,1489,1490,3,70,35,0,1490,1491,3,474,237,0,1491,1510,1,0,0, + 0,1492,1494,5,329,0,0,1493,1492,1,0,0,0,1493,1494,1,0,0,0,1494,1495, + 1,0,0,0,1495,1500,3,480,240,0,1496,1497,5,399,0,0,1497,1498,3,254, + 127,0,1498,1499,5,400,0,0,1499,1501,1,0,0,0,1500,1496,1,0,0,0,1500, + 1501,1,0,0,0,1501,1503,1,0,0,0,1502,1504,3,640,320,0,1503,1502,1, + 0,0,0,1503,1504,1,0,0,0,1504,1510,1,0,0,0,1505,1506,5,366,0,0,1506, + 1510,5,426,0,0,1507,1508,5,303,0,0,1508,1510,3,652,326,0,1509,1489, + 1,0,0,0,1509,1493,1,0,0,0,1509,1505,1,0,0,0,1509,1507,1,0,0,0,1510, + 117,1,0,0,0,1511,1516,3,120,60,0,1512,1513,5,397,0,0,1513,1515,3, + 120,60,0,1514,1512,1,0,0,0,1515,1518,1,0,0,0,1516,1514,1,0,0,0,1516, + 1517,1,0,0,0,1517,119,1,0,0,0,1518,1516,1,0,0,0,1519,1524,3,122, + 61,0,1520,1521,5,399,0,0,1521,1522,3,254,127,0,1522,1523,5,400,0, + 0,1523,1525,1,0,0,0,1524,1520,1,0,0,0,1524,1525,1,0,0,0,1525,121, + 1,0,0,0,1526,1527,7,11,0,0,1527,123,1,0,0,0,1528,1533,3,126,63,0, + 1529,1530,5,397,0,0,1530,1532,3,126,63,0,1531,1529,1,0,0,0,1532, + 1535,1,0,0,0,1533,1531,1,0,0,0,1533,1534,1,0,0,0,1534,125,1,0,0, + 0,1535,1533,1,0,0,0,1536,1537,5,369,0,0,1537,1543,3,656,328,0,1538, + 1539,5,144,0,0,1539,1543,3,656,328,0,1540,1541,5,287,0,0,1541,1543, + 3,652,326,0,1542,1536,1,0,0,0,1542,1538,1,0,0,0,1542,1540,1,0,0, + 0,1543,127,1,0,0,0,1544,1545,5,369,0,0,1545,1550,3,656,328,0,1546, + 1547,5,287,0,0,1547,1550,3,652,326,0,1548,1550,3,652,326,0,1549, + 1544,1,0,0,0,1549,1546,1,0,0,0,1549,1548,1,0,0,0,1550,129,1,0,0, + 0,1551,1552,5,387,0,0,1552,1553,5,143,0,0,1553,1554,5,227,0,0,1554, + 131,1,0,0,0,1555,1556,5,143,0,0,1556,1557,5,227,0,0,1557,1558,5, + 134,0,0,1558,133,1,0,0,0,1559,1560,5,5,0,0,1560,1561,5,227,0,0,1561, + 1562,5,134,0,0,1562,135,1,0,0,0,1563,1564,5,387,0,0,1564,1565,5, + 5,0,0,1565,1566,5,227,0,0,1566,137,1,0,0,0,1567,1569,5,212,0,0,1568, + 1570,5,276,0,0,1569,1568,1,0,0,0,1569,1570,1,0,0,0,1570,1571,1,0, + 0,0,1571,1572,5,329,0,0,1572,1578,3,480,240,0,1573,1574,7,12,0,0, + 1574,1576,5,239,0,0,1575,1577,3,644,322,0,1576,1575,1,0,0,0,1576, + 1577,1,0,0,0,1577,1579,1,0,0,0,1578,1573,1,0,0,0,1578,1579,1,0,0, + 0,1579,139,1,0,0,0,1580,1585,3,142,71,0,1581,1582,5,397,0,0,1582, + 1584,3,142,71,0,1583,1581,1,0,0,0,1584,1587,1,0,0,0,1585,1583,1, + 0,0,0,1585,1586,1,0,0,0,1586,141,1,0,0,0,1587,1585,1,0,0,0,1588, + 1589,3,144,72,0,1589,1590,5,426,0,0,1590,143,1,0,0,0,1591,1592,7, + 13,0,0,1592,145,1,0,0,0,1593,1595,5,58,0,0,1594,1596,5,333,0,0,1595, + 1594,1,0,0,0,1595,1596,1,0,0,0,1596,1597,1,0,0,0,1597,1598,5,141, + 0,0,1598,1599,3,568,284,0,1599,1600,5,17,0,0,1600,1603,5,426,0,0, + 1601,1602,5,370,0,0,1602,1604,3,140,70,0,1603,1601,1,0,0,0,1603, + 1604,1,0,0,0,1604,147,1,0,0,0,1605,1607,5,101,0,0,1606,1608,5,333, + 0,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608,1609,1,0,0,0,1609,1611, + 5,141,0,0,1610,1612,3,30,15,0,1611,1610,1,0,0,0,1611,1612,1,0,0, + 0,1612,1613,1,0,0,0,1613,1614,3,570,285,0,1614,149,1,0,0,0,1615, + 1616,5,271,0,0,1616,1617,7,14,0,0,1617,151,1,0,0,0,1618,1619,5,58, + 0,0,1619,1620,5,333,0,0,1620,1621,5,194,0,0,1621,1622,5,432,0,0, + 1622,1624,5,399,0,0,1623,1625,3,248,124,0,1624,1623,1,0,0,0,1624, + 1625,1,0,0,0,1625,1626,1,0,0,0,1626,1627,5,400,0,0,1627,1628,3,594, + 297,0,1628,153,1,0,0,0,1629,1630,5,101,0,0,1630,1631,5,333,0,0,1631, + 1633,5,194,0,0,1632,1634,3,30,15,0,1633,1632,1,0,0,0,1633,1634,1, + 0,0,0,1634,1635,1,0,0,0,1635,1636,5,432,0,0,1636,155,1,0,0,0,1637, + 1638,5,58,0,0,1638,1639,5,155,0,0,1639,1640,3,652,326,0,1640,1641, + 5,224,0,0,1641,1642,5,329,0,0,1642,1643,3,480,240,0,1643,1644,3, + 266,133,0,1644,1645,5,17,0,0,1645,1649,5,426,0,0,1646,1647,5,387, + 0,0,1647,1648,5,84,0,0,1648,1650,5,265,0,0,1649,1646,1,0,0,0,1649, + 1650,1,0,0,0,1650,1653,1,0,0,0,1651,1652,5,150,0,0,1652,1654,3,226, + 113,0,1653,1651,1,0,0,0,1653,1654,1,0,0,0,1654,1658,1,0,0,0,1655, + 1656,5,154,0,0,1656,1657,5,329,0,0,1657,1659,3,480,240,0,1658,1655, + 1,0,0,0,1658,1659,1,0,0,0,1659,1663,1,0,0,0,1660,1661,5,238,0,0, + 1661,1662,5,32,0,0,1662,1664,3,266,133,0,1663,1660,1,0,0,0,1663, + 1664,1,0,0,0,1664,1669,1,0,0,0,1665,1667,3,222,111,0,1666,1665,1, + 0,0,0,1666,1667,1,0,0,0,1667,1668,1,0,0,0,1668,1670,3,246,123,0, + 1669,1666,1,0,0,0,1669,1670,1,0,0,0,1670,1672,1,0,0,0,1671,1673, + 3,426,213,0,1672,1671,1,0,0,0,1672,1673,1,0,0,0,1673,1675,1,0,0, + 0,1674,1676,3,224,112,0,1675,1674,1,0,0,0,1675,1676,1,0,0,0,1676, + 1678,1,0,0,0,1677,1679,3,196,98,0,1678,1677,1,0,0,0,1678,1679,1, + 0,0,0,1679,157,1,0,0,0,1680,1681,5,101,0,0,1681,1683,5,155,0,0,1682, + 1684,3,30,15,0,1683,1682,1,0,0,0,1683,1684,1,0,0,0,1684,1685,1,0, + 0,0,1685,1686,3,652,326,0,1686,1687,5,224,0,0,1687,1688,3,480,240, + 0,1688,159,1,0,0,0,1689,1692,5,58,0,0,1690,1691,5,228,0,0,1691,1693, + 5,278,0,0,1692,1690,1,0,0,0,1692,1693,1,0,0,0,1693,1694,1,0,0,0, + 1694,1696,5,378,0,0,1695,1697,3,32,16,0,1696,1695,1,0,0,0,1696,1697, + 1,0,0,0,1697,1698,1,0,0,0,1698,1703,3,486,243,0,1699,1700,5,399, + 0,0,1700,1701,3,306,153,0,1701,1702,5,400,0,0,1702,1704,1,0,0,0, + 1703,1699,1,0,0,0,1703,1704,1,0,0,0,1704,1706,1,0,0,0,1705,1707, + 3,196,98,0,1706,1705,1,0,0,0,1706,1707,1,0,0,0,1707,1709,1,0,0,0, + 1708,1710,3,162,81,0,1709,1708,1,0,0,0,1709,1710,1,0,0,0,1710,1712, + 1,0,0,0,1711,1713,3,224,112,0,1712,1711,1,0,0,0,1712,1713,1,0,0, + 0,1713,1714,1,0,0,0,1714,1715,5,17,0,0,1715,1716,3,382,191,0,1716, + 161,1,0,0,0,1717,1718,5,238,0,0,1718,1724,5,224,0,0,1719,1720,5, + 399,0,0,1720,1725,3,254,127,0,1721,1722,5,316,0,0,1722,1723,5,399, + 0,0,1723,1725,3,204,102,0,1724,1719,1,0,0,0,1724,1721,1,0,0,0,1725, + 1726,1,0,0,0,1726,1727,5,400,0,0,1727,163,1,0,0,0,1728,1731,3,166, + 83,0,1729,1731,3,168,84,0,1730,1728,1,0,0,0,1730,1729,1,0,0,0,1731, + 165,1,0,0,0,1732,1733,5,42,0,0,1733,1734,5,224,0,0,1734,1735,5,399, + 0,0,1735,1736,3,254,127,0,1736,1737,5,400,0,0,1737,167,1,0,0,0,1738, + 1739,3,170,85,0,1739,1740,3,172,86,0,1740,169,1,0,0,0,1741,1742, + 5,98,0,0,1742,1743,5,224,0,0,1743,1744,5,399,0,0,1744,1745,3,254, + 127,0,1745,1746,5,400,0,0,1746,171,1,0,0,0,1747,1748,5,315,0,0,1748, + 1749,5,224,0,0,1749,1750,5,399,0,0,1750,1751,3,254,127,0,1751,1752, + 5,400,0,0,1752,173,1,0,0,0,1753,1754,5,101,0,0,1754,1756,5,378,0, + 0,1755,1757,3,30,15,0,1756,1755,1,0,0,0,1756,1757,1,0,0,0,1757,1758, + 1,0,0,0,1758,1759,3,484,242,0,1759,175,1,0,0,0,1760,1761,5,58,0, + 0,1761,1762,5,202,0,0,1762,1764,5,378,0,0,1763,1765,3,32,16,0,1764, + 1763,1,0,0,0,1764,1765,1,0,0,0,1765,1766,1,0,0,0,1766,1768,3,486, + 243,0,1767,1769,3,38,19,0,1768,1767,1,0,0,0,1768,1769,1,0,0,0,1769, + 1771,1,0,0,0,1770,1772,3,196,98,0,1771,1770,1,0,0,0,1771,1772,1, + 0,0,0,1772,1774,1,0,0,0,1773,1775,3,162,81,0,1774,1773,1,0,0,0,1774, + 1775,1,0,0,0,1775,1777,1,0,0,0,1776,1778,3,164,82,0,1777,1776,1, + 0,0,0,1777,1778,1,0,0,0,1778,1780,1,0,0,0,1779,1781,3,222,111,0, + 1780,1779,1,0,0,0,1780,1781,1,0,0,0,1781,1783,1,0,0,0,1782,1784, + 3,246,123,0,1783,1782,1,0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0, + 0,1785,1787,3,426,213,0,1786,1785,1,0,0,0,1786,1787,1,0,0,0,1787, + 1789,1,0,0,0,1788,1790,3,224,112,0,1789,1788,1,0,0,0,1789,1790,1, + 0,0,0,1790,1791,1,0,0,0,1791,1792,5,17,0,0,1792,1793,3,382,191,0, + 1793,177,1,0,0,0,1794,1795,5,101,0,0,1795,1796,5,202,0,0,1796,1798, + 5,378,0,0,1797,1799,3,30,15,0,1798,1797,1,0,0,0,1798,1799,1,0,0, + 0,1799,1800,1,0,0,0,1800,1801,3,484,242,0,1801,179,1,0,0,0,1802, + 1803,5,58,0,0,1803,1804,5,293,0,0,1804,1805,5,258,0,0,1805,1806, + 3,652,326,0,1806,1808,3,188,94,0,1807,1809,3,190,95,0,1808,1807, + 1,0,0,0,1808,1809,1,0,0,0,1809,1811,1,0,0,0,1810,1812,3,270,135, + 0,1811,1810,1,0,0,0,1811,1812,1,0,0,0,1812,1813,1,0,0,0,1813,1814, + 3,192,96,0,1814,181,1,0,0,0,1815,1816,5,101,0,0,1816,1817,5,293, + 0,0,1817,1818,5,258,0,0,1818,1819,3,652,326,0,1819,183,1,0,0,0,1820, + 1821,5,9,0,0,1821,1822,5,293,0,0,1822,1823,5,258,0,0,1823,1824,3, + 652,326,0,1824,1825,3,186,93,0,1825,185,1,0,0,0,1826,1832,3,188, + 94,0,1827,1832,3,190,95,0,1828,1832,3,270,135,0,1829,1832,3,192, + 96,0,1830,1832,5,115,0,0,1831,1826,1,0,0,0,1831,1827,1,0,0,0,1831, + 1828,1,0,0,0,1831,1829,1,0,0,0,1831,1830,1,0,0,0,1832,187,1,0,0, + 0,1833,1834,5,59,0,0,1834,1849,5,426,0,0,1835,1837,5,111,0,0,1836, + 1838,5,431,0,0,1837,1836,1,0,0,0,1837,1838,1,0,0,0,1838,1839,1,0, + 0,0,1839,1846,3,592,296,0,1840,1844,5,20,0,0,1841,1842,5,223,0,0, + 1842,1844,5,32,0,0,1843,1840,1,0,0,0,1843,1841,1,0,0,0,1844,1845, + 1,0,0,0,1845,1847,5,426,0,0,1846,1843,1,0,0,0,1846,1847,1,0,0,0, + 1847,1849,1,0,0,0,1848,1833,1,0,0,0,1848,1835,1,0,0,0,1849,189,1, + 0,0,0,1850,1851,5,116,0,0,1851,1852,5,17,0,0,1852,1853,5,426,0,0, + 1853,191,1,0,0,0,1854,1856,5,85,0,0,1855,1854,1,0,0,0,1855,1856, + 1,0,0,0,1856,1857,1,0,0,0,1857,1858,5,17,0,0,1858,1859,3,2,1,0,1859, + 193,1,0,0,0,1860,1863,3,652,326,0,1861,1863,5,426,0,0,1862,1860, + 1,0,0,0,1862,1861,1,0,0,0,1863,195,1,0,0,0,1864,1865,5,47,0,0,1865, + 1866,5,426,0,0,1866,197,1,0,0,0,1867,1868,5,183,0,0,1868,1869,5, + 431,0,0,1869,199,1,0,0,0,1870,1871,5,238,0,0,1871,1880,5,32,0,0, + 1872,1875,5,399,0,0,1873,1876,3,202,101,0,1874,1876,3,254,127,0, + 1875,1873,1,0,0,0,1875,1874,1,0,0,0,1876,1881,1,0,0,0,1877,1878, + 5,316,0,0,1878,1879,5,399,0,0,1879,1881,3,204,102,0,1880,1872,1, + 0,0,0,1880,1877,1,0,0,0,1881,1882,1,0,0,0,1882,1883,5,400,0,0,1883, + 201,1,0,0,0,1884,1889,3,318,159,0,1885,1886,5,397,0,0,1886,1888, + 3,318,159,0,1887,1885,1,0,0,0,1888,1891,1,0,0,0,1889,1887,1,0,0, + 0,1889,1890,1,0,0,0,1890,203,1,0,0,0,1891,1889,1,0,0,0,1892,1897, + 3,206,103,0,1893,1894,5,397,0,0,1894,1896,3,206,103,0,1895,1893, + 1,0,0,0,1896,1899,1,0,0,0,1897,1895,1,0,0,0,1897,1898,1,0,0,0,1898, + 205,1,0,0,0,1899,1897,1,0,0,0,1900,1919,3,256,128,0,1901,1906,3, + 680,340,0,1902,1906,3,682,341,0,1903,1906,3,686,343,0,1904,1906, + 3,688,344,0,1905,1901,1,0,0,0,1905,1902,1,0,0,0,1905,1903,1,0,0, + 0,1905,1904,1,0,0,0,1906,1907,1,0,0,0,1907,1908,5,399,0,0,1908,1909, + 3,256,128,0,1909,1910,5,400,0,0,1910,1919,1,0,0,0,1911,1912,7,15, + 0,0,1912,1913,5,399,0,0,1913,1914,5,431,0,0,1914,1915,5,397,0,0, + 1915,1916,3,256,128,0,1916,1917,5,400,0,0,1917,1919,1,0,0,0,1918, + 1900,1,0,0,0,1918,1905,1,0,0,0,1918,1911,1,0,0,0,1919,207,1,0,0, + 0,1920,1921,5,42,0,0,1921,1922,5,32,0,0,1922,1923,5,399,0,0,1923, + 1924,3,254,127,0,1924,1931,5,400,0,0,1925,1926,5,315,0,0,1926,1927, + 5,32,0,0,1927,1928,5,399,0,0,1928,1929,3,264,132,0,1929,1930,5,400, + 0,0,1930,1932,1,0,0,0,1931,1925,1,0,0,0,1931,1932,1,0,0,0,1932,1933, + 1,0,0,0,1933,1934,5,166,0,0,1934,1935,5,431,0,0,1935,1936,5,31,0, + 0,1936,209,1,0,0,0,1937,1938,5,310,0,0,1938,1939,5,32,0,0,1939,1940, + 5,399,0,0,1940,1941,3,254,127,0,1941,1942,5,400,0,0,1942,1943,5, + 224,0,0,1943,1944,5,399,0,0,1944,1945,3,292,146,0,1945,1947,5,400, + 0,0,1946,1948,3,40,20,0,1947,1946,1,0,0,0,1947,1948,1,0,0,0,1948, + 211,1,0,0,0,1949,1952,3,218,109,0,1950,1952,3,220,110,0,1951,1949, + 1,0,0,0,1951,1950,1,0,0,0,1952,213,1,0,0,0,1953,1954,5,266,0,0,1954, + 1955,5,426,0,0,1955,215,1,0,0,0,1956,1957,5,267,0,0,1957,1958,5, + 426,0,0,1958,217,1,0,0,0,1959,1960,5,291,0,0,1960,1961,5,137,0,0, + 1961,1962,5,301,0,0,1962,1966,5,426,0,0,1963,1964,5,387,0,0,1964, + 1965,5,302,0,0,1965,1967,3,226,113,0,1966,1963,1,0,0,0,1966,1967, + 1,0,0,0,1967,219,1,0,0,0,1968,1969,5,291,0,0,1969,1970,5,137,0,0, + 1970,1972,5,87,0,0,1971,1973,3,236,118,0,1972,1971,1,0,0,0,1972, + 1973,1,0,0,0,1973,1975,1,0,0,0,1974,1976,3,238,119,0,1975,1974,1, + 0,0,0,1975,1976,1,0,0,0,1976,1978,1,0,0,0,1977,1979,3,240,120,0, + 1978,1977,1,0,0,0,1978,1979,1,0,0,0,1979,1981,1,0,0,0,1980,1982, + 3,242,121,0,1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982,1984,1,0,0, + 0,1983,1985,3,244,122,0,1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985, + 221,1,0,0,0,1986,1989,3,220,110,0,1987,1989,3,218,109,0,1988,1986, + 1,0,0,0,1988,1987,1,0,0,0,1989,223,1,0,0,0,1990,1991,5,332,0,0,1991, + 1992,3,226,113,0,1992,225,1,0,0,0,1993,1994,5,399,0,0,1994,1995, + 3,228,114,0,1995,1996,5,400,0,0,1996,227,1,0,0,0,1997,2007,3,232, + 116,0,1998,2003,5,426,0,0,1999,2000,5,397,0,0,2000,2002,5,426,0, + 0,2001,1999,1,0,0,0,2002,2005,1,0,0,0,2003,2001,1,0,0,0,2003,2004, + 1,0,0,0,2004,2007,1,0,0,0,2005,2003,1,0,0,0,2006,1997,1,0,0,0,2006, + 1998,1,0,0,0,2007,229,1,0,0,0,2008,2009,5,399,0,0,2009,2010,3,232, + 116,0,2010,2011,5,400,0,0,2011,231,1,0,0,0,2012,2017,3,234,117,0, + 2013,2014,5,397,0,0,2014,2016,3,234,117,0,2015,2013,1,0,0,0,2016, + 2019,1,0,0,0,2017,2015,1,0,0,0,2017,2018,1,0,0,0,2018,233,1,0,0, + 0,2019,2017,1,0,0,0,2020,2021,5,426,0,0,2021,2022,5,405,0,0,2022, + 2023,5,426,0,0,2023,235,1,0,0,0,2024,2025,5,127,0,0,2025,2026,5, + 334,0,0,2026,2027,5,32,0,0,2027,2031,5,426,0,0,2028,2029,5,110,0, + 0,2029,2030,5,32,0,0,2030,2032,5,426,0,0,2031,2028,1,0,0,0,2031, + 2032,1,0,0,0,2032,237,1,0,0,0,2033,2034,5,44,0,0,2034,2035,5,169, + 0,0,2035,2036,5,334,0,0,2036,2037,5,32,0,0,2037,2038,5,426,0,0,2038, + 239,1,0,0,0,2039,2040,5,198,0,0,2040,2041,5,174,0,0,2041,2042,5, + 334,0,0,2042,2043,5,32,0,0,2043,2044,5,426,0,0,2044,241,1,0,0,0, + 2045,2046,5,186,0,0,2046,2047,5,334,0,0,2047,2048,5,32,0,0,2048, + 2049,5,426,0,0,2049,243,1,0,0,0,2050,2051,5,219,0,0,2051,2052,5, + 85,0,0,2052,2053,5,17,0,0,2053,2054,5,426,0,0,2054,245,1,0,0,0,2055, + 2056,5,321,0,0,2056,2057,5,17,0,0,2057,2058,5,160,0,0,2058,2059, + 5,426,0,0,2059,2060,5,233,0,0,2060,2065,5,426,0,0,2061,2062,5,159, + 0,0,2062,2063,5,426,0,0,2063,2064,5,232,0,0,2064,2066,5,426,0,0, + 2065,2061,1,0,0,0,2065,2066,1,0,0,0,2066,2097,1,0,0,0,2067,2068, + 5,321,0,0,2068,2069,5,32,0,0,2069,2073,5,426,0,0,2070,2071,5,387, + 0,0,2071,2072,5,302,0,0,2072,2074,3,226,113,0,2073,2070,1,0,0,0, + 2073,2074,1,0,0,0,2074,2078,1,0,0,0,2075,2076,5,321,0,0,2076,2077, + 5,17,0,0,2077,2079,3,652,326,0,2078,2075,1,0,0,0,2078,2079,1,0,0, + 0,2079,2097,1,0,0,0,2080,2081,5,321,0,0,2081,2082,5,32,0,0,2082, + 2086,3,652,326,0,2083,2084,5,387,0,0,2084,2085,5,302,0,0,2085,2087, + 3,226,113,0,2086,2083,1,0,0,0,2086,2087,1,0,0,0,2087,2091,1,0,0, + 0,2088,2089,5,321,0,0,2089,2090,5,17,0,0,2090,2092,3,652,326,0,2091, + 2088,1,0,0,0,2091,2092,1,0,0,0,2092,2097,1,0,0,0,2093,2094,5,321, + 0,0,2094,2095,5,17,0,0,2095,2097,3,652,326,0,2096,2055,1,0,0,0,2096, + 2067,1,0,0,0,2096,2080,1,0,0,0,2096,2093,1,0,0,0,2097,247,1,0,0, + 0,2098,2103,3,312,156,0,2099,2100,5,397,0,0,2100,2102,3,312,156, + 0,2101,2099,1,0,0,0,2102,2105,1,0,0,0,2103,2101,1,0,0,0,2103,2104, + 1,0,0,0,2104,249,1,0,0,0,2105,2103,1,0,0,0,2106,2111,3,314,157,0, + 2107,2108,5,397,0,0,2108,2110,3,314,157,0,2109,2107,1,0,0,0,2110, + 2113,1,0,0,0,2111,2109,1,0,0,0,2111,2112,1,0,0,0,2112,251,1,0,0, + 0,2113,2111,1,0,0,0,2114,2119,3,342,171,0,2115,2116,5,397,0,0,2116, + 2118,3,342,171,0,2117,2115,1,0,0,0,2118,2121,1,0,0,0,2119,2117,1, + 0,0,0,2119,2120,1,0,0,0,2120,253,1,0,0,0,2121,2119,1,0,0,0,2122, + 2127,3,256,128,0,2123,2124,5,397,0,0,2124,2126,3,256,128,0,2125, + 2123,1,0,0,0,2126,2129,1,0,0,0,2127,2125,1,0,0,0,2127,2128,1,0,0, + 0,2128,255,1,0,0,0,2129,2127,1,0,0,0,2130,2133,3,696,348,0,2131, + 2133,4,128,0,0,2132,2130,1,0,0,0,2132,2131,1,0,0,0,2133,257,1,0, + 0,0,2134,2135,3,696,348,0,2135,259,1,0,0,0,2136,2137,3,652,326,0, + 2137,261,1,0,0,0,2138,2148,3,256,128,0,2139,2144,5,395,0,0,2140, + 2145,5,104,0,0,2141,2145,5,175,0,0,2142,2145,5,375,0,0,2143,2145, + 3,652,326,0,2144,2140,1,0,0,0,2144,2141,1,0,0,0,2144,2142,1,0,0, + 0,2144,2143,1,0,0,0,2145,2147,1,0,0,0,2146,2139,1,0,0,0,2147,2150, + 1,0,0,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,263,1,0,0,0,2150, + 2148,1,0,0,0,2151,2156,3,304,152,0,2152,2153,5,397,0,0,2153,2155, + 3,304,152,0,2154,2152,1,0,0,0,2155,2158,1,0,0,0,2156,2154,1,0,0, + 0,2156,2157,1,0,0,0,2157,265,1,0,0,0,2158,2156,1,0,0,0,2159,2160, + 5,399,0,0,2160,2161,3,254,127,0,2161,2162,5,400,0,0,2162,267,1,0, + 0,0,2163,2165,3,270,135,0,2164,2166,3,272,136,0,2165,2164,1,0,0, + 0,2165,2166,1,0,0,0,2166,2169,1,0,0,0,2167,2169,3,274,137,0,2168, + 2163,1,0,0,0,2168,2167,1,0,0,0,2169,269,1,0,0,0,2170,2173,3,676, + 338,0,2171,2173,3,678,339,0,2172,2170,1,0,0,0,2172,2171,1,0,0,0, + 2173,271,1,0,0,0,2174,2175,7,16,0,0,2175,273,1,0,0,0,2176,2180,5, + 109,0,0,2177,2178,5,216,0,0,2178,2180,5,109,0,0,2179,2176,1,0,0, + 0,2179,2177,1,0,0,0,2180,275,1,0,0,0,2181,2182,7,17,0,0,2182,277, + 1,0,0,0,2183,2184,5,55,0,0,2184,2186,3,652,326,0,2185,2183,1,0,0, + 0,2185,2186,1,0,0,0,2186,2187,1,0,0,0,2187,2189,3,282,141,0,2188, + 2190,3,338,169,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0,2190,279,1, + 0,0,0,2191,2192,5,55,0,0,2192,2193,3,652,326,0,2193,2195,3,282,141, + 0,2194,2196,3,340,170,0,2195,2194,1,0,0,0,2195,2196,1,0,0,0,2196, + 281,1,0,0,0,2197,2200,3,284,142,0,2198,2200,3,286,143,0,2199,2197, + 1,0,0,0,2199,2198,1,0,0,0,2200,283,1,0,0,0,2201,2202,3,336,168,0, + 2202,2203,3,266,133,0,2203,285,1,0,0,0,2204,2205,5,40,0,0,2205,2206, + 5,399,0,0,2206,2207,3,594,297,0,2207,2208,5,400,0,0,2208,287,1,0, + 0,0,2209,2210,5,55,0,0,2210,2212,3,652,326,0,2211,2209,1,0,0,0,2211, + 2212,1,0,0,0,2212,2213,1,0,0,0,2213,2214,5,136,0,0,2214,2215,5,173, + 0,0,2215,2216,3,266,133,0,2216,2217,5,269,0,0,2217,2218,3,480,240, + 0,2218,2220,3,266,133,0,2219,2221,3,338,169,0,2220,2219,1,0,0,0, + 2220,2221,1,0,0,0,2221,289,1,0,0,0,2222,2223,5,55,0,0,2223,2224, + 3,652,326,0,2224,2225,5,136,0,0,2225,2226,5,173,0,0,2226,2227,3, + 266,133,0,2227,2228,5,269,0,0,2228,2229,3,480,240,0,2229,2231,3, + 266,133,0,2230,2232,3,340,170,0,2231,2230,1,0,0,0,2231,2232,1,0, + 0,0,2232,291,1,0,0,0,2233,2236,3,298,149,0,2234,2236,3,294,147,0, + 2235,2233,1,0,0,0,2235,2234,1,0,0,0,2236,293,1,0,0,0,2237,2242,3, + 296,148,0,2238,2239,5,397,0,0,2239,2241,3,296,148,0,2240,2238,1, + 0,0,0,2241,2244,1,0,0,0,2242,2240,1,0,0,0,2242,2243,1,0,0,0,2243, + 295,1,0,0,0,2244,2242,1,0,0,0,2245,2246,5,399,0,0,2246,2247,3,298, + 149,0,2247,2248,5,400,0,0,2248,297,1,0,0,0,2249,2254,3,586,293,0, + 2250,2251,5,397,0,0,2251,2253,3,586,293,0,2252,2250,1,0,0,0,2253, + 2256,1,0,0,0,2254,2252,1,0,0,0,2254,2255,1,0,0,0,2255,299,1,0,0, + 0,2256,2254,1,0,0,0,2257,2258,7,18,0,0,2258,301,1,0,0,0,2259,2260, + 5,220,0,0,2260,2261,7,19,0,0,2261,303,1,0,0,0,2262,2264,3,256,128, + 0,2263,2265,3,300,150,0,2264,2263,1,0,0,0,2264,2265,1,0,0,0,2265, + 2267,1,0,0,0,2266,2268,3,302,151,0,2267,2266,1,0,0,0,2267,2268,1, + 0,0,0,2268,305,1,0,0,0,2269,2274,3,308,154,0,2270,2271,5,397,0,0, + 2271,2273,3,308,154,0,2272,2270,1,0,0,0,2273,2276,1,0,0,0,2274,2272, + 1,0,0,0,2274,2275,1,0,0,0,2275,307,1,0,0,0,2276,2274,1,0,0,0,2277, + 2280,3,260,130,0,2278,2279,5,47,0,0,2279,2281,5,426,0,0,2280,2278, + 1,0,0,0,2280,2281,1,0,0,0,2281,309,1,0,0,0,2282,2285,3,256,128,0, + 2283,2285,3,594,297,0,2284,2282,1,0,0,0,2284,2283,1,0,0,0,2285,2287, + 1,0,0,0,2286,2288,3,300,150,0,2287,2286,1,0,0,0,2287,2288,1,0,0, + 0,2288,2290,1,0,0,0,2289,2291,3,302,151,0,2290,2289,1,0,0,0,2290, + 2291,1,0,0,0,2291,311,1,0,0,0,2292,2293,3,260,130,0,2293,2296,3, + 344,172,0,2294,2295,5,47,0,0,2295,2297,5,426,0,0,2296,2294,1,0,0, + 0,2296,2297,1,0,0,0,2297,313,1,0,0,0,2298,2301,3,316,158,0,2299, + 2301,3,318,159,0,2300,2298,1,0,0,0,2300,2299,1,0,0,0,2301,315,1, + 0,0,0,2302,2305,3,288,144,0,2303,2305,3,278,139,0,2304,2302,1,0, + 0,0,2304,2303,1,0,0,0,2305,317,1,0,0,0,2306,2307,3,260,130,0,2307, + 2309,3,344,172,0,2308,2310,3,320,160,0,2309,2308,1,0,0,0,2309,2310, + 1,0,0,0,2310,2313,1,0,0,0,2311,2312,5,47,0,0,2312,2314,5,426,0,0, + 2313,2311,1,0,0,0,2313,2314,1,0,0,0,2314,319,1,0,0,0,2315,2318,3, + 322,161,0,2316,2318,3,324,162,0,2317,2315,1,0,0,0,2317,2316,1,0, + 0,0,2318,321,1,0,0,0,2319,2320,5,55,0,0,2320,2322,3,652,326,0,2321, + 2319,1,0,0,0,2321,2322,1,0,0,0,2322,2323,1,0,0,0,2323,2324,5,269, + 0,0,2324,2325,3,480,240,0,2325,2326,5,399,0,0,2326,2327,3,256,128, + 0,2327,2329,5,400,0,0,2328,2330,3,338,169,0,2329,2328,1,0,0,0,2329, + 2330,1,0,0,0,2330,323,1,0,0,0,2331,2332,5,55,0,0,2332,2334,3,652, + 326,0,2333,2331,1,0,0,0,2333,2334,1,0,0,0,2334,2335,1,0,0,0,2335, + 2337,3,332,166,0,2336,2338,3,338,169,0,2337,2336,1,0,0,0,2337,2338, + 1,0,0,0,2338,325,1,0,0,0,2339,2342,3,328,164,0,2340,2342,3,330,165, + 0,2341,2339,1,0,0,0,2341,2340,1,0,0,0,2342,327,1,0,0,0,2343,2344, + 5,55,0,0,2344,2346,3,652,326,0,2345,2343,1,0,0,0,2345,2346,1,0,0, + 0,2346,2347,1,0,0,0,2347,2348,5,269,0,0,2348,2349,3,480,240,0,2349, + 2350,5,399,0,0,2350,2351,3,256,128,0,2351,2353,5,400,0,0,2352,2354, + 3,340,170,0,2353,2352,1,0,0,0,2353,2354,1,0,0,0,2354,329,1,0,0,0, + 2355,2356,5,55,0,0,2356,2358,3,652,326,0,2357,2355,1,0,0,0,2357, + 2358,1,0,0,0,2358,2359,1,0,0,0,2359,2361,3,332,166,0,2360,2362,3, + 340,170,0,2361,2360,1,0,0,0,2361,2362,1,0,0,0,2362,331,1,0,0,0,2363, + 2364,5,216,0,0,2364,2370,5,219,0,0,2365,2366,5,83,0,0,2366,2370, + 3,334,167,0,2367,2370,3,286,143,0,2368,2370,3,336,168,0,2369,2363, + 1,0,0,0,2369,2365,1,0,0,0,2369,2367,1,0,0,0,2369,2368,1,0,0,0,2370, + 333,1,0,0,0,2371,2375,3,586,293,0,2372,2375,3,564,282,0,2373,2375, + 3,574,287,0,2374,2371,1,0,0,0,2374,2372,1,0,0,0,2374,2373,1,0,0, + 0,2375,335,1,0,0,0,2376,2377,5,251,0,0,2377,2380,5,173,0,0,2378, + 2380,5,358,0,0,2379,2376,1,0,0,0,2379,2378,1,0,0,0,2380,337,1,0, + 0,0,2381,2383,3,268,134,0,2382,2384,3,276,138,0,2383,2382,1,0,0, + 0,2383,2384,1,0,0,0,2384,339,1,0,0,0,2385,2387,3,268,134,0,2386, + 2388,3,276,138,0,2387,2386,1,0,0,0,2387,2388,1,0,0,0,2388,341,1, + 0,0,0,2389,2390,3,260,130,0,2390,2391,5,396,0,0,2391,2394,3,344, + 172,0,2392,2393,5,47,0,0,2393,2395,5,426,0,0,2394,2392,1,0,0,0,2394, + 2395,1,0,0,0,2395,343,1,0,0,0,2396,2397,3,348,174,0,2397,345,1,0, + 0,0,2398,2403,3,344,172,0,2399,2400,5,397,0,0,2400,2402,3,344,172, + 0,2401,2399,1,0,0,0,2402,2405,1,0,0,0,2403,2401,1,0,0,0,2403,2404, + 1,0,0,0,2404,347,1,0,0,0,2405,2403,1,0,0,0,2406,2412,3,350,175,0, + 2407,2412,3,352,176,0,2408,2412,3,354,177,0,2409,2412,3,356,178, + 0,2410,2412,3,358,179,0,2411,2406,1,0,0,0,2411,2407,1,0,0,0,2411, + 2408,1,0,0,0,2411,2409,1,0,0,0,2411,2410,1,0,0,0,2412,349,1,0,0, + 0,2413,2451,5,340,0,0,2414,2451,5,311,0,0,2415,2451,5,162,0,0,2416, + 2451,5,163,0,0,2417,2451,5,26,0,0,2418,2451,5,28,0,0,2419,2451,5, + 131,0,0,2420,2451,5,264,0,0,2421,2423,5,100,0,0,2422,2424,5,248, + 0,0,2423,2422,1,0,0,0,2423,2424,1,0,0,0,2424,2451,1,0,0,0,2425,2451, + 5,71,0,0,2426,2451,5,72,0,0,2427,2451,5,337,0,0,2428,2451,5,338, + 0,0,2429,2430,5,337,0,0,2430,2431,5,387,0,0,2431,2432,5,188,0,0, + 2432,2433,5,336,0,0,2433,2451,5,394,0,0,2434,2451,5,323,0,0,2435, + 2451,5,27,0,0,2436,2444,3,694,347,0,2437,2438,5,399,0,0,2438,2441, + 5,431,0,0,2439,2440,5,397,0,0,2440,2442,5,431,0,0,2441,2439,1,0, + 0,0,2441,2442,1,0,0,0,2442,2443,1,0,0,0,2443,2445,5,400,0,0,2444, + 2437,1,0,0,0,2444,2445,1,0,0,0,2445,2451,1,0,0,0,2446,2447,7,20, + 0,0,2447,2448,5,399,0,0,2448,2449,5,431,0,0,2449,2451,5,400,0,0, + 2450,2413,1,0,0,0,2450,2414,1,0,0,0,2450,2415,1,0,0,0,2450,2416, + 1,0,0,0,2450,2417,1,0,0,0,2450,2418,1,0,0,0,2450,2419,1,0,0,0,2450, + 2420,1,0,0,0,2450,2421,1,0,0,0,2450,2425,1,0,0,0,2450,2426,1,0,0, + 0,2450,2427,1,0,0,0,2450,2428,1,0,0,0,2450,2429,1,0,0,0,2450,2434, + 1,0,0,0,2450,2435,1,0,0,0,2450,2436,1,0,0,0,2450,2446,1,0,0,0,2451, + 351,1,0,0,0,2452,2453,5,16,0,0,2453,2454,5,409,0,0,2454,2455,3,348, + 174,0,2455,2456,5,411,0,0,2456,353,1,0,0,0,2457,2458,5,324,0,0,2458, + 2459,5,409,0,0,2459,2460,3,252,126,0,2460,2461,5,411,0,0,2461,355, + 1,0,0,0,2462,2463,5,198,0,0,2463,2464,5,409,0,0,2464,2465,3,350, + 175,0,2465,2466,5,397,0,0,2466,2467,3,348,174,0,2467,2468,5,411, + 0,0,2468,357,1,0,0,0,2469,2470,5,357,0,0,2470,2471,5,409,0,0,2471, + 2472,3,346,173,0,2472,2473,5,411,0,0,2473,359,1,0,0,0,2474,2476, + 7,21,0,0,2475,2477,7,22,0,0,2476,2475,1,0,0,0,2476,2477,1,0,0,0, + 2477,361,1,0,0,0,2478,2480,3,366,183,0,2479,2478,1,0,0,0,2479,2480, + 1,0,0,0,2480,2481,1,0,0,0,2481,2482,3,364,182,0,2482,363,1,0,0,0, + 2483,2486,3,370,185,0,2484,2486,3,374,187,0,2485,2483,1,0,0,0,2485, + 2484,1,0,0,0,2486,365,1,0,0,0,2487,2488,5,387,0,0,2488,2493,3,368, + 184,0,2489,2490,5,397,0,0,2490,2492,3,368,184,0,2491,2489,1,0,0, + 0,2492,2495,1,0,0,0,2493,2491,1,0,0,0,2493,2494,1,0,0,0,2494,367, + 1,0,0,0,2495,2493,1,0,0,0,2496,2501,3,652,326,0,2497,2498,5,399, + 0,0,2498,2499,3,254,127,0,2499,2500,5,400,0,0,2500,2502,1,0,0,0, + 2501,2497,1,0,0,0,2501,2502,1,0,0,0,2502,2503,1,0,0,0,2503,2504, + 5,17,0,0,2504,2505,5,399,0,0,2505,2506,3,362,181,0,2506,2507,5,400, + 0,0,2507,369,1,0,0,0,2508,2514,3,372,186,0,2509,2510,3,360,180,0, + 2510,2511,3,372,186,0,2511,2513,1,0,0,0,2512,2509,1,0,0,0,2513,2516, + 1,0,0,0,2514,2512,1,0,0,0,2514,2515,1,0,0,0,2515,371,1,0,0,0,2516, + 2514,1,0,0,0,2517,2518,3,450,225,0,2518,2519,3,384,192,0,2519,2521, + 3,506,253,0,2520,2522,3,464,232,0,2521,2520,1,0,0,0,2521,2522,1, + 0,0,0,2522,2524,1,0,0,0,2523,2525,3,498,249,0,2524,2523,1,0,0,0, + 2524,2525,1,0,0,0,2525,2527,1,0,0,0,2526,2528,3,532,266,0,2527,2526, + 1,0,0,0,2527,2528,1,0,0,0,2528,2530,1,0,0,0,2529,2531,3,540,270, + 0,2530,2529,1,0,0,0,2530,2531,1,0,0,0,2531,2533,1,0,0,0,2532,2534, + 3,524,262,0,2533,2532,1,0,0,0,2533,2534,1,0,0,0,2534,2536,1,0,0, + 0,2535,2537,3,542,271,0,2536,2535,1,0,0,0,2536,2537,1,0,0,0,2537, + 2539,1,0,0,0,2538,2540,3,554,277,0,2539,2538,1,0,0,0,2539,2540,1, + 0,0,0,2540,2542,1,0,0,0,2541,2543,3,558,279,0,2542,2541,1,0,0,0, + 2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2546,3,560,280,0,2545,2544, + 1,0,0,0,2545,2546,1,0,0,0,2546,2548,1,0,0,0,2547,2549,3,562,281, + 0,2548,2547,1,0,0,0,2548,2549,1,0,0,0,2549,2551,1,0,0,0,2550,2552, + 3,388,194,0,2551,2550,1,0,0,0,2551,2552,1,0,0,0,2552,2589,1,0,0, + 0,2553,2554,3,450,225,0,2554,2556,3,506,253,0,2555,2557,3,464,232, + 0,2556,2555,1,0,0,0,2556,2557,1,0,0,0,2557,2559,1,0,0,0,2558,2560, + 3,498,249,0,2559,2558,1,0,0,0,2559,2560,1,0,0,0,2560,2562,1,0,0, + 0,2561,2563,3,532,266,0,2562,2561,1,0,0,0,2562,2563,1,0,0,0,2563, + 2565,1,0,0,0,2564,2566,3,540,270,0,2565,2564,1,0,0,0,2565,2566,1, + 0,0,0,2566,2568,1,0,0,0,2567,2569,3,524,262,0,2568,2567,1,0,0,0, + 2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570,2572,3,542,271,0,2571,2570, + 1,0,0,0,2571,2572,1,0,0,0,2572,2574,1,0,0,0,2573,2575,3,554,277, + 0,2574,2573,1,0,0,0,2574,2575,1,0,0,0,2575,2577,1,0,0,0,2576,2578, + 3,558,279,0,2577,2576,1,0,0,0,2577,2578,1,0,0,0,2578,2580,1,0,0, + 0,2579,2581,3,560,280,0,2580,2579,1,0,0,0,2580,2581,1,0,0,0,2581, + 2583,1,0,0,0,2582,2584,3,562,281,0,2583,2582,1,0,0,0,2583,2584,1, + 0,0,0,2584,2586,1,0,0,0,2585,2587,3,388,194,0,2586,2585,1,0,0,0, + 2586,2587,1,0,0,0,2587,2589,1,0,0,0,2588,2517,1,0,0,0,2588,2553, + 1,0,0,0,2589,373,1,0,0,0,2590,2591,3,384,192,0,2591,2592,3,378,189, + 0,2592,2595,1,0,0,0,2593,2595,3,378,189,0,2594,2590,1,0,0,0,2594, + 2593,1,0,0,0,2595,375,1,0,0,0,2596,2598,3,506,253,0,2597,2599,3, + 450,225,0,2598,2597,1,0,0,0,2598,2599,1,0,0,0,2599,2601,1,0,0,0, + 2600,2602,3,498,249,0,2601,2600,1,0,0,0,2601,2602,1,0,0,0,2602,2604, + 1,0,0,0,2603,2605,3,532,266,0,2604,2603,1,0,0,0,2604,2605,1,0,0, + 0,2605,2607,1,0,0,0,2606,2608,3,540,270,0,2607,2606,1,0,0,0,2607, + 2608,1,0,0,0,2608,2610,1,0,0,0,2609,2611,3,524,262,0,2610,2609,1, + 0,0,0,2610,2611,1,0,0,0,2611,2613,1,0,0,0,2612,2614,3,542,271,0, + 2613,2612,1,0,0,0,2613,2614,1,0,0,0,2614,2621,1,0,0,0,2615,2616, + 5,399,0,0,2616,2617,3,378,189,0,2617,2618,5,400,0,0,2618,2621,1, + 0,0,0,2619,2621,3,500,250,0,2620,2596,1,0,0,0,2620,2615,1,0,0,0, + 2620,2619,1,0,0,0,2621,377,1,0,0,0,2622,2624,3,376,188,0,2623,2625, + 3,380,190,0,2624,2623,1,0,0,0,2624,2625,1,0,0,0,2625,2627,1,0,0, + 0,2626,2628,3,554,277,0,2627,2626,1,0,0,0,2627,2628,1,0,0,0,2628, + 2630,1,0,0,0,2629,2631,3,558,279,0,2630,2629,1,0,0,0,2630,2631,1, + 0,0,0,2631,2633,1,0,0,0,2632,2634,3,560,280,0,2633,2632,1,0,0,0, + 2633,2634,1,0,0,0,2634,2636,1,0,0,0,2635,2637,3,562,281,0,2636,2635, + 1,0,0,0,2636,2637,1,0,0,0,2637,2639,1,0,0,0,2638,2640,3,388,194, + 0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640,379,1,0,0,0,2641,2642, + 3,360,180,0,2642,2643,3,376,188,0,2643,2645,1,0,0,0,2644,2641,1, + 0,0,0,2645,2646,1,0,0,0,2646,2644,1,0,0,0,2646,2647,1,0,0,0,2647, + 381,1,0,0,0,2648,2650,3,366,183,0,2649,2648,1,0,0,0,2649,2650,1, + 0,0,0,2650,2651,1,0,0,0,2651,2652,3,378,189,0,2652,383,1,0,0,0,2653, + 2670,5,161,0,0,2654,2655,5,235,0,0,2655,2657,3,386,193,0,2656,2658, + 3,32,16,0,2657,2656,1,0,0,0,2657,2658,1,0,0,0,2658,2671,1,0,0,0, + 2659,2661,5,166,0,0,2660,2662,5,329,0,0,2661,2660,1,0,0,0,2661,2662, + 1,0,0,0,2662,2663,1,0,0,0,2663,2668,3,638,319,0,2664,2665,5,399, + 0,0,2665,2666,3,254,127,0,2666,2667,5,400,0,0,2667,2669,1,0,0,0, + 2668,2664,1,0,0,0,2668,2669,1,0,0,0,2669,2671,1,0,0,0,2670,2654, + 1,0,0,0,2670,2659,1,0,0,0,2671,385,1,0,0,0,2672,2674,5,188,0,0,2673, + 2672,1,0,0,0,2673,2674,1,0,0,0,2674,2675,1,0,0,0,2675,2676,5,93, + 0,0,2676,2678,5,426,0,0,2677,2679,3,222,111,0,2678,2677,1,0,0,0, + 2678,2679,1,0,0,0,2679,2681,1,0,0,0,2680,2682,3,246,123,0,2681,2680, + 1,0,0,0,2681,2682,1,0,0,0,2682,2686,1,0,0,0,2683,2684,5,329,0,0, + 2684,2686,3,638,319,0,2685,2673,1,0,0,0,2685,2683,1,0,0,0,2686,387, + 1,0,0,0,2687,2696,5,185,0,0,2688,2689,5,431,0,0,2689,2691,5,397, + 0,0,2690,2688,1,0,0,0,2690,2691,1,0,0,0,2691,2692,1,0,0,0,2692,2697, + 5,431,0,0,2693,2694,5,431,0,0,2694,2695,5,223,0,0,2695,2697,5,431, + 0,0,2696,2690,1,0,0,0,2696,2693,1,0,0,0,2697,389,1,0,0,0,2698,2699, + 3,256,128,0,2699,2700,5,405,0,0,2700,2701,3,392,196,0,2701,391,1, + 0,0,0,2702,2705,5,83,0,0,2703,2705,3,604,302,0,2704,2702,1,0,0,0, + 2704,2703,1,0,0,0,2705,393,1,0,0,0,2706,2707,5,304,0,0,2707,2712, + 3,390,195,0,2708,2709,5,397,0,0,2709,2711,3,390,195,0,2710,2708, + 1,0,0,0,2711,2714,1,0,0,0,2712,2710,1,0,0,0,2712,2713,1,0,0,0,2713, + 395,1,0,0,0,2714,2712,1,0,0,0,2715,2716,5,318,0,0,2716,2725,5,344, + 0,0,2717,2722,3,398,199,0,2718,2719,5,397,0,0,2719,2721,3,398,199, + 0,2720,2718,1,0,0,0,2721,2724,1,0,0,0,2722,2720,1,0,0,0,2722,2723, + 1,0,0,0,2723,2726,1,0,0,0,2724,2722,1,0,0,0,2725,2717,1,0,0,0,2725, + 2726,1,0,0,0,2726,2739,1,0,0,0,2727,2729,5,48,0,0,2728,2730,5,389, + 0,0,2729,2728,1,0,0,0,2729,2730,1,0,0,0,2730,2739,1,0,0,0,2731,2733, + 5,289,0,0,2732,2734,5,389,0,0,2733,2732,1,0,0,0,2733,2734,1,0,0, + 0,2734,2739,1,0,0,0,2735,2736,5,304,0,0,2736,2737,5,22,0,0,2737, + 2739,7,23,0,0,2738,2715,1,0,0,0,2738,2727,1,0,0,0,2738,2731,1,0, + 0,0,2738,2735,1,0,0,0,2739,397,1,0,0,0,2740,2741,5,168,0,0,2741, + 2742,5,182,0,0,2742,2746,5,312,0,0,2743,2744,5,261,0,0,2744,2746, + 7,24,0,0,2745,2740,1,0,0,0,2745,2743,1,0,0,0,2746,399,1,0,0,0,2747, + 2750,3,404,202,0,2748,2750,3,406,203,0,2749,2747,1,0,0,0,2749,2748, + 1,0,0,0,2750,2753,1,0,0,0,2751,2749,1,0,0,0,2751,2752,1,0,0,0,2752, + 2755,1,0,0,0,2753,2751,1,0,0,0,2754,2756,3,402,201,0,2755,2754,1, + 0,0,0,2755,2756,1,0,0,0,2756,401,1,0,0,0,2757,2758,5,383,0,0,2758, + 2759,5,216,0,0,2759,2762,5,201,0,0,2760,2761,5,11,0,0,2761,2763, + 3,594,297,0,2762,2760,1,0,0,0,2762,2763,1,0,0,0,2763,2764,1,0,0, + 0,2764,2765,5,335,0,0,2765,2767,5,161,0,0,2766,2768,3,266,133,0, + 2767,2766,1,0,0,0,2767,2768,1,0,0,0,2768,2769,1,0,0,0,2769,2770, + 5,374,0,0,2770,2771,3,550,275,0,2771,403,1,0,0,0,2772,2773,5,383, + 0,0,2773,2774,5,201,0,0,2774,2775,5,11,0,0,2775,2776,3,594,297,0, + 2776,2780,5,335,0,0,2777,2778,5,365,0,0,2778,2781,3,394,197,0,2779, + 2781,5,86,0,0,2780,2777,1,0,0,0,2780,2779,1,0,0,0,2781,405,1,0,0, + 0,2782,2783,5,383,0,0,2783,2784,5,201,0,0,2784,2788,5,335,0,0,2785, + 2786,5,365,0,0,2786,2789,3,394,197,0,2787,2789,5,86,0,0,2788,2785, + 1,0,0,0,2788,2787,1,0,0,0,2789,407,1,0,0,0,2790,2791,5,246,0,0,2791, + 2792,5,426,0,0,2792,409,1,0,0,0,2793,2794,5,352,0,0,2794,2795,5, + 426,0,0,2795,411,1,0,0,0,2796,2797,5,320,0,0,2797,2798,5,426,0,0, + 2798,413,1,0,0,0,2799,2830,5,9,0,0,2800,2801,5,329,0,0,2801,2802, + 3,480,240,0,2802,2803,3,416,208,0,2803,2831,1,0,0,0,2804,2805,5, + 378,0,0,2805,2807,3,484,242,0,2806,2808,5,17,0,0,2807,2806,1,0,0, + 0,2807,2808,1,0,0,0,2808,2809,1,0,0,0,2809,2810,3,420,210,0,2810, + 2831,1,0,0,0,2811,2812,5,202,0,0,2812,2813,5,378,0,0,2813,2817,3, + 484,242,0,2814,2818,3,36,18,0,2815,2818,3,38,19,0,2816,2818,5,265, + 0,0,2817,2814,1,0,0,0,2817,2815,1,0,0,0,2817,2816,1,0,0,0,2818,2831, + 1,0,0,0,2819,2820,3,70,35,0,2820,2821,3,422,211,0,2821,2831,1,0, + 0,0,2822,2823,5,69,0,0,2823,2831,3,424,212,0,2824,2825,5,155,0,0, + 2825,2826,3,652,326,0,2826,2827,5,224,0,0,2827,2828,3,638,319,0, + 2828,2829,5,265,0,0,2829,2831,1,0,0,0,2830,2800,1,0,0,0,2830,2804, + 1,0,0,0,2830,2811,1,0,0,0,2830,2819,1,0,0,0,2830,2822,1,0,0,0,2830, + 2824,1,0,0,0,2831,415,1,0,0,0,2832,2833,5,274,0,0,2833,2834,5,341, + 0,0,2834,2922,3,482,241,0,2835,2836,5,102,0,0,2836,2922,5,239,0, + 0,2837,2922,3,428,214,0,2838,2840,5,4,0,0,2839,2841,3,32,16,0,2840, + 2839,1,0,0,0,2840,2841,1,0,0,0,2841,2846,1,0,0,0,2842,2844,3,640, + 320,0,2843,2845,3,426,213,0,2844,2843,1,0,0,0,2844,2845,1,0,0,0, + 2845,2847,1,0,0,0,2846,2842,1,0,0,0,2847,2848,1,0,0,0,2848,2846, + 1,0,0,0,2848,2849,1,0,0,0,2849,2922,1,0,0,0,2850,2854,5,342,0,0, + 2851,2853,3,640,320,0,2852,2851,1,0,0,0,2853,2856,1,0,0,0,2854,2852, + 1,0,0,0,2854,2855,1,0,0,0,2855,2922,1,0,0,0,2856,2854,1,0,0,0,2857, + 2861,5,15,0,0,2858,2860,3,640,320,0,2859,2858,1,0,0,0,2860,2863, + 1,0,0,0,2861,2859,1,0,0,0,2861,2862,1,0,0,0,2862,2922,1,0,0,0,2863, + 2861,1,0,0,0,2864,2868,5,353,0,0,2865,2867,3,640,320,0,2866,2865, + 1,0,0,0,2867,2870,1,0,0,0,2868,2866,1,0,0,0,2868,2869,1,0,0,0,2869, + 2922,1,0,0,0,2870,2868,1,0,0,0,2871,2872,5,304,0,0,2872,2873,5,332, + 0,0,2873,2922,3,226,113,0,2874,2875,5,363,0,0,2875,2877,5,332,0, + 0,2876,2878,3,30,15,0,2877,2876,1,0,0,0,2877,2878,1,0,0,0,2878,2879, + 1,0,0,0,2879,2922,3,226,113,0,2880,2922,3,210,105,0,2881,2884,5, + 216,0,0,2882,2885,5,310,0,0,2883,2885,3,40,20,0,2884,2882,1,0,0, + 0,2884,2883,1,0,0,0,2885,2922,1,0,0,0,2886,2887,5,113,0,0,2887,2888, + 3,640,320,0,2888,2889,5,387,0,0,2889,2890,5,329,0,0,2890,2891,3, + 480,240,0,2891,2922,1,0,0,0,2892,2893,5,237,0,0,2893,2894,5,45,0, + 0,2894,2895,5,399,0,0,2895,2896,3,312,156,0,2896,2897,5,400,0,0, + 2897,2922,1,0,0,0,2898,2899,5,101,0,0,2899,2900,5,55,0,0,2900,2922, + 3,652,326,0,2901,2904,5,4,0,0,2902,2905,3,290,145,0,2903,2905,3, + 280,140,0,2904,2902,1,0,0,0,2904,2903,1,0,0,0,2905,2922,1,0,0,0, + 2906,2908,3,640,320,0,2907,2906,1,0,0,0,2907,2908,1,0,0,0,2908,2909, + 1,0,0,0,2909,2922,3,418,209,0,2910,2911,5,304,0,0,2911,2912,5,236, + 0,0,2912,2922,3,126,63,0,2913,2914,5,304,0,0,2914,2915,5,237,0,0, + 2915,2916,5,316,0,0,2916,2917,5,399,0,0,2917,2918,3,204,102,0,2918, + 2919,5,400,0,0,2919,2922,1,0,0,0,2920,2922,3,432,216,0,2921,2832, + 1,0,0,0,2921,2835,1,0,0,0,2921,2837,1,0,0,0,2921,2838,1,0,0,0,2921, + 2850,1,0,0,0,2921,2857,1,0,0,0,2921,2864,1,0,0,0,2921,2871,1,0,0, + 0,2921,2874,1,0,0,0,2921,2880,1,0,0,0,2921,2881,1,0,0,0,2921,2886, + 1,0,0,0,2921,2892,1,0,0,0,2921,2898,1,0,0,0,2921,2901,1,0,0,0,2921, + 2907,1,0,0,0,2921,2910,1,0,0,0,2921,2913,1,0,0,0,2921,2920,1,0,0, + 0,2922,417,1,0,0,0,2923,2924,5,304,0,0,2924,2925,5,129,0,0,2925, + 3056,3,434,217,0,2926,2927,5,304,0,0,2927,2928,5,189,0,0,2928,3056, + 5,426,0,0,2929,3056,5,53,0,0,2930,2940,5,304,0,0,2931,2932,5,301, + 0,0,2932,2936,5,426,0,0,2933,2934,5,387,0,0,2934,2935,5,302,0,0, + 2935,2937,3,226,113,0,2936,2933,1,0,0,0,2936,2937,1,0,0,0,2937,2941, + 1,0,0,0,2938,2939,5,302,0,0,2939,2941,3,226,113,0,2940,2931,1,0, + 0,0,2940,2938,1,0,0,0,2941,3056,1,0,0,0,2942,2943,5,363,0,0,2943, + 2944,5,302,0,0,2944,3056,3,226,113,0,2945,2946,5,274,0,0,2946,2947, + 5,341,0,0,2947,3056,3,640,320,0,2948,2949,5,166,0,0,2949,2950,5, + 431,0,0,2950,3056,5,31,0,0,2951,2952,5,304,0,0,2952,2953,5,310,0, + 0,2953,2954,5,189,0,0,2954,2955,5,399,0,0,2955,2960,3,430,215,0, + 2956,2957,5,397,0,0,2957,2959,3,430,215,0,2958,2956,1,0,0,0,2959, + 2962,1,0,0,0,2960,2958,1,0,0,0,2960,2961,1,0,0,0,2961,2963,1,0,0, + 0,2962,2960,1,0,0,0,2963,2964,5,400,0,0,2964,3056,1,0,0,0,2965,2966, + 5,216,0,0,2966,3056,7,25,0,0,2967,3056,3,208,104,0,2968,2969,5,49, + 0,0,2969,2972,5,426,0,0,2970,2971,5,11,0,0,2971,2973,5,380,0,0,2972, + 2970,1,0,0,0,2972,2973,1,0,0,0,2973,2978,1,0,0,0,2974,2975,5,42, + 0,0,2975,2976,5,166,0,0,2976,2977,5,431,0,0,2977,2979,5,31,0,0,2978, + 2974,1,0,0,0,2978,2979,1,0,0,0,2979,2981,1,0,0,0,2980,2982,3,554, + 277,0,2981,2980,1,0,0,0,2981,2982,1,0,0,0,2982,2984,1,0,0,0,2983, + 2985,3,408,204,0,2984,2983,1,0,0,0,2984,2985,1,0,0,0,2985,2990,1, + 0,0,0,2986,2987,5,387,0,0,2987,2988,5,235,0,0,2988,2989,5,332,0, + 0,2989,2991,3,226,113,0,2990,2986,1,0,0,0,2990,2991,1,0,0,0,2991, + 3056,1,0,0,0,2992,2993,5,365,0,0,2993,2994,5,319,0,0,2994,2996,5, + 134,0,0,2995,2997,5,45,0,0,2996,2995,1,0,0,0,2996,2997,1,0,0,0,2997, + 2998,1,0,0,0,2998,2999,3,256,128,0,2999,3000,5,304,0,0,3000,3003, + 3,226,113,0,3001,3002,5,47,0,0,3002,3004,5,426,0,0,3003,3001,1,0, + 0,0,3003,3004,1,0,0,0,3004,3056,1,0,0,0,3005,3006,5,365,0,0,3006, + 3007,5,319,0,0,3007,3008,5,304,0,0,3008,3056,3,226,113,0,3009,3011, + 5,38,0,0,3010,3012,5,45,0,0,3011,3010,1,0,0,0,3011,3012,1,0,0,0, + 3012,3013,1,0,0,0,3013,3014,3,256,128,0,3014,3015,3,260,130,0,3015, + 3017,3,344,172,0,3016,3018,3,326,163,0,3017,3016,1,0,0,0,3017,3018, + 1,0,0,0,3018,3021,1,0,0,0,3019,3020,5,47,0,0,3020,3022,5,426,0,0, + 3021,3019,1,0,0,0,3021,3022,1,0,0,0,3022,3026,1,0,0,0,3023,3027, + 5,130,0,0,3024,3025,5,6,0,0,3025,3027,3,652,326,0,3026,3023,1,0, + 0,0,3026,3024,1,0,0,0,3026,3027,1,0,0,0,3027,3029,1,0,0,0,3028,3030, + 3,34,17,0,3029,3028,1,0,0,0,3029,3030,1,0,0,0,3030,3056,1,0,0,0, + 3031,3034,5,4,0,0,3032,3034,5,278,0,0,3033,3031,1,0,0,0,3033,3032, + 1,0,0,0,3034,3035,1,0,0,0,3035,3036,5,46,0,0,3036,3037,5,399,0,0, + 3037,3038,3,248,124,0,3038,3040,5,400,0,0,3039,3041,3,34,17,0,3040, + 3039,1,0,0,0,3040,3041,1,0,0,0,3041,3056,1,0,0,0,3042,3043,5,365, + 0,0,3043,3045,5,46,0,0,3044,3046,3,34,17,0,3045,3044,1,0,0,0,3045, + 3046,1,0,0,0,3046,3056,1,0,0,0,3047,3053,3,270,135,0,3048,3050,5, + 218,0,0,3049,3051,5,34,0,0,3050,3049,1,0,0,0,3050,3051,1,0,0,0,3051, + 3054,1,0,0,0,3052,3054,5,222,0,0,3053,3048,1,0,0,0,3053,3052,1,0, + 0,0,3054,3056,1,0,0,0,3055,2923,1,0,0,0,3055,2926,1,0,0,0,3055,2929, + 1,0,0,0,3055,2930,1,0,0,0,3055,2942,1,0,0,0,3055,2945,1,0,0,0,3055, + 2948,1,0,0,0,3055,2951,1,0,0,0,3055,2965,1,0,0,0,3055,2967,1,0,0, + 0,3055,2968,1,0,0,0,3055,2992,1,0,0,0,3055,3005,1,0,0,0,3055,3009, + 1,0,0,0,3055,3033,1,0,0,0,3055,3042,1,0,0,0,3055,3047,1,0,0,0,3056, + 419,1,0,0,0,3057,3058,5,304,0,0,3058,3059,5,332,0,0,3059,3084,3, + 226,113,0,3060,3061,5,363,0,0,3061,3063,5,332,0,0,3062,3064,3,30, + 15,0,3063,3062,1,0,0,0,3063,3064,1,0,0,0,3064,3065,1,0,0,0,3065, + 3084,3,226,113,0,3066,3067,5,274,0,0,3067,3068,5,341,0,0,3068,3084, + 3,482,241,0,3069,3071,5,4,0,0,3070,3072,3,32,16,0,3071,3070,1,0, + 0,0,3071,3072,1,0,0,0,3072,3077,1,0,0,0,3073,3075,3,640,320,0,3074, + 3076,3,426,213,0,3075,3074,1,0,0,0,3075,3076,1,0,0,0,3076,3078,1, + 0,0,0,3077,3073,1,0,0,0,3078,3079,1,0,0,0,3079,3077,1,0,0,0,3079, + 3080,1,0,0,0,3080,3084,1,0,0,0,3081,3084,3,428,214,0,3082,3084,3, + 382,191,0,3083,3057,1,0,0,0,3083,3060,1,0,0,0,3083,3066,1,0,0,0, + 3083,3069,1,0,0,0,3083,3081,1,0,0,0,3083,3082,1,0,0,0,3084,421,1, + 0,0,0,3085,3086,3,474,237,0,3086,3087,5,304,0,0,3087,3088,5,76,0, + 0,3088,3089,3,230,115,0,3089,3101,1,0,0,0,3090,3091,3,474,237,0, + 3091,3092,5,304,0,0,3092,3093,5,236,0,0,3093,3094,3,128,64,0,3094, + 3101,1,0,0,0,3095,3096,3,474,237,0,3096,3097,5,304,0,0,3097,3098, + 7,26,0,0,3098,3099,5,426,0,0,3099,3101,1,0,0,0,3100,3085,1,0,0,0, + 3100,3090,1,0,0,0,3100,3095,1,0,0,0,3101,423,1,0,0,0,3102,3103,3, + 474,237,0,3103,3104,5,304,0,0,3104,3105,5,77,0,0,3105,3106,3,230, + 115,0,3106,3118,1,0,0,0,3107,3108,3,474,237,0,3108,3109,5,304,0, + 0,3109,3110,5,236,0,0,3110,3111,3,128,64,0,3111,3118,1,0,0,0,3112, + 3113,3,474,237,0,3113,3114,5,304,0,0,3114,3115,5,367,0,0,3115,3116, + 5,426,0,0,3116,3118,1,0,0,0,3117,3102,1,0,0,0,3117,3107,1,0,0,0, + 3117,3112,1,0,0,0,3118,425,1,0,0,0,3119,3120,5,189,0,0,3120,3121, + 5,426,0,0,3121,427,1,0,0,0,3122,3124,5,101,0,0,3123,3125,3,30,15, + 0,3124,3123,1,0,0,0,3124,3125,1,0,0,0,3125,3126,1,0,0,0,3126,3127, + 5,237,0,0,3127,3133,3,644,322,0,3128,3129,5,397,0,0,3129,3130,5, + 237,0,0,3130,3132,3,644,322,0,3131,3128,1,0,0,0,3132,3135,1,0,0, + 0,3133,3131,1,0,0,0,3133,3134,1,0,0,0,3134,3138,1,0,0,0,3135,3133, + 1,0,0,0,3136,3137,5,152,0,0,3137,3139,5,254,0,0,3138,3136,1,0,0, + 0,3138,3139,1,0,0,0,3139,3141,1,0,0,0,3140,3142,5,255,0,0,3141,3140, + 1,0,0,0,3141,3142,1,0,0,0,3142,3144,1,0,0,0,3143,3145,3,14,7,0,3144, + 3143,1,0,0,0,3144,3145,1,0,0,0,3145,429,1,0,0,0,3146,3149,3,586, + 293,0,3147,3149,3,296,148,0,3148,3146,1,0,0,0,3148,3147,1,0,0,0, + 3149,3150,1,0,0,0,3150,3151,5,405,0,0,3151,3152,5,426,0,0,3152,431, + 1,0,0,0,3153,3163,5,115,0,0,3154,3155,5,289,0,0,3155,3156,5,399, + 0,0,3156,3164,7,27,0,0,3157,3158,5,118,0,0,3158,3159,5,399,0,0,3159, + 3164,5,426,0,0,3160,3161,5,306,0,0,3161,3162,5,399,0,0,3162,3164, + 5,431,0,0,3163,3154,1,0,0,0,3163,3157,1,0,0,0,3163,3160,1,0,0,0, + 3164,3165,1,0,0,0,3165,3166,5,400,0,0,3166,433,1,0,0,0,3167,3168, + 5,160,0,0,3168,3169,5,426,0,0,3169,3170,5,233,0,0,3170,3171,5,426, + 0,0,3171,3172,5,301,0,0,3172,3177,5,426,0,0,3173,3174,5,159,0,0, + 3174,3175,5,426,0,0,3175,3176,5,232,0,0,3176,3178,5,426,0,0,3177, + 3173,1,0,0,0,3177,3178,1,0,0,0,3178,3181,1,0,0,0,3179,3181,3,652, + 326,0,3180,3167,1,0,0,0,3180,3179,1,0,0,0,3181,435,1,0,0,0,3182, + 3183,5,184,0,0,3183,3192,5,128,0,0,3184,3185,5,184,0,0,3185,3186, + 5,128,0,0,3186,3187,3,652,326,0,3187,3188,5,426,0,0,3188,3192,1, + 0,0,0,3189,3190,5,184,0,0,3190,3192,3,480,240,0,3191,3182,1,0,0, + 0,3191,3184,1,0,0,0,3191,3189,1,0,0,0,3192,437,1,0,0,0,3193,3195, + 5,58,0,0,3194,3196,5,333,0,0,3195,3194,1,0,0,0,3195,3196,1,0,0,0, + 3196,3198,1,0,0,0,3197,3199,5,345,0,0,3198,3197,1,0,0,0,3198,3199, + 1,0,0,0,3199,3201,1,0,0,0,3200,3202,5,123,0,0,3201,3200,1,0,0,0, + 3201,3202,1,0,0,0,3202,3203,1,0,0,0,3203,3205,5,329,0,0,3204,3206, + 3,32,16,0,3205,3204,1,0,0,0,3205,3206,1,0,0,0,3206,3207,1,0,0,0, + 3207,3264,3,482,241,0,3208,3210,3,436,218,0,3209,3211,3,200,100, + 0,3210,3209,1,0,0,0,3210,3211,1,0,0,0,3211,3213,1,0,0,0,3212,3214, + 3,222,111,0,3213,3212,1,0,0,0,3213,3214,1,0,0,0,3214,3216,1,0,0, + 0,3215,3217,3,246,123,0,3216,3215,1,0,0,0,3216,3217,1,0,0,0,3217, + 3219,1,0,0,0,3218,3220,3,426,213,0,3219,3218,1,0,0,0,3219,3220,1, + 0,0,0,3220,3222,1,0,0,0,3221,3223,3,224,112,0,3222,3221,1,0,0,0, + 3222,3223,1,0,0,0,3223,3225,1,0,0,0,3224,3226,3,198,99,0,3225,3224, + 1,0,0,0,3225,3226,1,0,0,0,3226,3265,1,0,0,0,3227,3228,5,399,0,0, + 3228,3229,3,250,125,0,3229,3230,5,400,0,0,3230,3232,1,0,0,0,3231, + 3227,1,0,0,0,3231,3232,1,0,0,0,3232,3234,1,0,0,0,3233,3235,3,196, + 98,0,3234,3233,1,0,0,0,3234,3235,1,0,0,0,3235,3237,1,0,0,0,3236, + 3238,3,200,100,0,3237,3236,1,0,0,0,3237,3238,1,0,0,0,3238,3240,1, + 0,0,0,3239,3241,3,208,104,0,3240,3239,1,0,0,0,3240,3241,1,0,0,0, + 3241,3243,1,0,0,0,3242,3244,3,210,105,0,3243,3242,1,0,0,0,3243,3244, + 1,0,0,0,3244,3246,1,0,0,0,3245,3247,3,222,111,0,3246,3245,1,0,0, + 0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248,3250,3,246,123,0,3249, + 3248,1,0,0,0,3249,3250,1,0,0,0,3250,3252,1,0,0,0,3251,3253,3,426, + 213,0,3252,3251,1,0,0,0,3252,3253,1,0,0,0,3253,3255,1,0,0,0,3254, + 3256,3,224,112,0,3255,3254,1,0,0,0,3255,3256,1,0,0,0,3256,3258,1, + 0,0,0,3257,3259,3,198,99,0,3258,3257,1,0,0,0,3258,3259,1,0,0,0,3259, + 3262,1,0,0,0,3260,3261,5,17,0,0,3261,3263,3,382,191,0,3262,3260, + 1,0,0,0,3262,3263,1,0,0,0,3263,3265,1,0,0,0,3264,3208,1,0,0,0,3264, + 3231,1,0,0,0,3265,3329,1,0,0,0,3266,3267,5,58,0,0,3267,3268,5,195, + 0,0,3268,3270,5,329,0,0,3269,3271,3,32,16,0,3270,3269,1,0,0,0,3270, + 3271,1,0,0,0,3271,3272,1,0,0,0,3272,3326,3,482,241,0,3273,3275,3, + 436,218,0,3274,3276,3,222,111,0,3275,3274,1,0,0,0,3275,3276,1,0, + 0,0,3276,3278,1,0,0,0,3277,3279,3,246,123,0,3278,3277,1,0,0,0,3278, + 3279,1,0,0,0,3279,3281,1,0,0,0,3280,3282,3,426,213,0,3281,3280,1, + 0,0,0,3281,3282,1,0,0,0,3282,3284,1,0,0,0,3283,3285,3,224,112,0, + 3284,3283,1,0,0,0,3284,3285,1,0,0,0,3285,3287,1,0,0,0,3286,3288, + 3,198,99,0,3287,3286,1,0,0,0,3287,3288,1,0,0,0,3288,3327,1,0,0,0, + 3289,3290,5,399,0,0,3290,3291,3,250,125,0,3291,3292,5,400,0,0,3292, + 3294,1,0,0,0,3293,3289,1,0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0, + 0,3295,3297,3,196,98,0,3296,3295,1,0,0,0,3296,3297,1,0,0,0,3297, + 3299,1,0,0,0,3298,3300,3,200,100,0,3299,3298,1,0,0,0,3299,3300,1, + 0,0,0,3300,3302,1,0,0,0,3301,3303,3,208,104,0,3302,3301,1,0,0,0, + 3302,3303,1,0,0,0,3303,3305,1,0,0,0,3304,3306,3,210,105,0,3305,3304, + 1,0,0,0,3305,3306,1,0,0,0,3306,3308,1,0,0,0,3307,3309,3,222,111, + 0,3308,3307,1,0,0,0,3308,3309,1,0,0,0,3309,3311,1,0,0,0,3310,3312, + 3,246,123,0,3311,3310,1,0,0,0,3311,3312,1,0,0,0,3312,3314,1,0,0, + 0,3313,3315,3,426,213,0,3314,3313,1,0,0,0,3314,3315,1,0,0,0,3315, + 3317,1,0,0,0,3316,3318,3,224,112,0,3317,3316,1,0,0,0,3317,3318,1, + 0,0,0,3318,3320,1,0,0,0,3319,3321,3,198,99,0,3320,3319,1,0,0,0,3320, + 3321,1,0,0,0,3321,3324,1,0,0,0,3322,3323,5,17,0,0,3323,3325,3,382, + 191,0,3324,3322,1,0,0,0,3324,3325,1,0,0,0,3325,3327,1,0,0,0,3326, + 3273,1,0,0,0,3326,3293,1,0,0,0,3327,3329,1,0,0,0,3328,3193,1,0,0, + 0,3328,3266,1,0,0,0,3329,439,1,0,0,0,3330,3331,5,58,0,0,3331,3333, + 5,69,0,0,3332,3334,3,32,16,0,3333,3332,1,0,0,0,3333,3334,1,0,0,0, + 3334,3335,1,0,0,0,3335,3338,3,652,326,0,3336,3337,5,352,0,0,3337, + 3339,5,426,0,0,3338,3336,1,0,0,0,3338,3339,1,0,0,0,3339,3342,1,0, + 0,0,3340,3341,5,367,0,0,3341,3343,5,426,0,0,3342,3340,1,0,0,0,3342, + 3343,1,0,0,0,3343,3346,1,0,0,0,3344,3345,5,47,0,0,3345,3347,5,426, + 0,0,3346,3344,1,0,0,0,3346,3347,1,0,0,0,3347,3351,1,0,0,0,3348,3349, + 5,387,0,0,3349,3350,5,77,0,0,3350,3352,3,230,115,0,3351,3348,1,0, + 0,0,3351,3352,1,0,0,0,3352,441,1,0,0,0,3353,3354,5,101,0,0,3354, + 3356,5,69,0,0,3355,3357,3,30,15,0,3356,3355,1,0,0,0,3356,3357,1, + 0,0,0,3357,3358,1,0,0,0,3358,3359,3,652,326,0,3359,443,1,0,0,0,3360, + 3361,3,652,326,0,3361,3362,5,395,0,0,3362,3364,1,0,0,0,3363,3360, + 1,0,0,0,3364,3367,1,0,0,0,3365,3363,1,0,0,0,3365,3366,1,0,0,0,3366, + 3368,1,0,0,0,3367,3365,1,0,0,0,3368,3369,5,415,0,0,3369,445,1,0, + 0,0,3370,3375,3,594,297,0,3371,3372,5,397,0,0,3372,3374,3,594,297, + 0,3373,3371,1,0,0,0,3374,3377,1,0,0,0,3375,3373,1,0,0,0,3375,3376, + 1,0,0,0,3376,447,1,0,0,0,3377,3375,1,0,0,0,3378,3383,3,652,326,0, + 3379,3380,5,397,0,0,3380,3382,3,652,326,0,3381,3379,1,0,0,0,3382, + 3385,1,0,0,0,3383,3381,1,0,0,0,3383,3384,1,0,0,0,3384,449,1,0,0, + 0,3385,3383,1,0,0,0,3386,3387,5,139,0,0,3387,3388,3,452,226,0,3388, + 451,1,0,0,0,3389,3390,5,359,0,0,3390,3393,3,460,230,0,3391,3392, + 5,397,0,0,3392,3394,3,460,230,0,3393,3391,1,0,0,0,3394,3395,1,0, + 0,0,3395,3393,1,0,0,0,3395,3396,1,0,0,0,3396,3399,1,0,0,0,3397,3399, + 3,456,228,0,3398,3389,1,0,0,0,3398,3397,1,0,0,0,3399,453,1,0,0,0, + 3400,3404,3,470,235,0,3401,3403,3,464,232,0,3402,3401,1,0,0,0,3403, + 3406,1,0,0,0,3404,3402,1,0,0,0,3404,3405,1,0,0,0,3405,3433,1,0,0, + 0,3406,3404,1,0,0,0,3407,3411,3,504,252,0,3408,3410,3,464,232,0, + 3409,3408,1,0,0,0,3410,3413,1,0,0,0,3411,3409,1,0,0,0,3411,3412, + 1,0,0,0,3412,3433,1,0,0,0,3413,3411,1,0,0,0,3414,3418,3,488,244, + 0,3415,3417,3,464,232,0,3416,3415,1,0,0,0,3417,3420,1,0,0,0,3418, + 3416,1,0,0,0,3418,3419,1,0,0,0,3419,3433,1,0,0,0,3420,3418,1,0,0, + 0,3421,3425,3,494,247,0,3422,3424,3,464,232,0,3423,3422,1,0,0,0, + 3424,3427,1,0,0,0,3425,3423,1,0,0,0,3425,3426,1,0,0,0,3426,3433, + 1,0,0,0,3427,3425,1,0,0,0,3428,3429,5,399,0,0,3429,3430,3,456,228, + 0,3430,3431,5,400,0,0,3431,3433,1,0,0,0,3432,3400,1,0,0,0,3432,3407, + 1,0,0,0,3432,3414,1,0,0,0,3432,3421,1,0,0,0,3432,3428,1,0,0,0,3433, + 455,1,0,0,0,3434,3445,3,454,227,0,3435,3436,3,462,231,0,3436,3441, + 3,458,229,0,3437,3438,5,224,0,0,3438,3442,3,594,297,0,3439,3440, + 5,370,0,0,3440,3442,3,266,133,0,3441,3437,1,0,0,0,3441,3439,1,0, + 0,0,3441,3442,1,0,0,0,3442,3444,1,0,0,0,3443,3435,1,0,0,0,3444,3447, + 1,0,0,0,3445,3443,1,0,0,0,3445,3446,1,0,0,0,3446,457,1,0,0,0,3447, + 3445,1,0,0,0,3448,3453,3,470,235,0,3449,3453,3,504,252,0,3450,3453, + 3,488,244,0,3451,3453,3,494,247,0,3452,3448,1,0,0,0,3452,3449,1, + 0,0,0,3452,3450,1,0,0,0,3452,3451,1,0,0,0,3453,3457,1,0,0,0,3454, + 3456,3,464,232,0,3455,3454,1,0,0,0,3456,3459,1,0,0,0,3457,3455,1, + 0,0,0,3457,3458,1,0,0,0,3458,459,1,0,0,0,3459,3457,1,0,0,0,3460, + 3462,5,250,0,0,3461,3460,1,0,0,0,3461,3462,1,0,0,0,3462,3463,1,0, + 0,0,3463,3465,3,478,239,0,3464,3466,3,468,234,0,3465,3464,1,0,0, + 0,3465,3466,1,0,0,0,3466,3471,1,0,0,0,3467,3469,5,17,0,0,3468,3467, + 1,0,0,0,3468,3469,1,0,0,0,3469,3470,1,0,0,0,3470,3472,3,652,326, + 0,3471,3468,1,0,0,0,3471,3472,1,0,0,0,3472,3473,1,0,0,0,3473,3474, + 5,399,0,0,3474,3475,3,446,223,0,3475,3476,5,400,0,0,3476,461,1,0, + 0,0,3477,3492,5,397,0,0,3478,3489,5,157,0,0,3479,3489,5,60,0,0,3480, + 3482,7,28,0,0,3481,3483,5,231,0,0,3482,3481,1,0,0,0,3482,3483,1, + 0,0,0,3483,3489,1,0,0,0,3484,3486,5,180,0,0,3485,3487,7,29,0,0,3486, + 3485,1,0,0,0,3486,3487,1,0,0,0,3487,3489,1,0,0,0,3488,3478,1,0,0, + 0,3488,3479,1,0,0,0,3488,3480,1,0,0,0,3488,3484,1,0,0,0,3488,3489, + 1,0,0,0,3489,3490,1,0,0,0,3490,3492,5,171,0,0,3491,3477,1,0,0,0, + 3491,3488,1,0,0,0,3492,463,1,0,0,0,3493,3494,5,178,0,0,3494,3495, + 5,378,0,0,3495,3496,5,231,0,0,3496,3497,3,564,282,0,3497,3507,3, + 466,233,0,3498,3499,5,17,0,0,3499,3504,3,652,326,0,3500,3501,5,397, + 0,0,3501,3503,3,652,326,0,3502,3500,1,0,0,0,3503,3506,1,0,0,0,3504, + 3502,1,0,0,0,3504,3505,1,0,0,0,3505,3508,1,0,0,0,3506,3504,1,0,0, + 0,3507,3498,1,0,0,0,3507,3508,1,0,0,0,3508,3551,1,0,0,0,3509,3511, + 5,397,0,0,3510,3509,1,0,0,0,3510,3511,1,0,0,0,3511,3512,1,0,0,0, + 3512,3548,5,178,0,0,3513,3514,5,378,0,0,3514,3515,3,564,282,0,3515, + 3525,3,466,233,0,3516,3517,5,17,0,0,3517,3522,3,652,326,0,3518,3519, + 5,397,0,0,3519,3521,3,652,326,0,3520,3518,1,0,0,0,3521,3524,1,0, + 0,0,3522,3520,1,0,0,0,3522,3523,1,0,0,0,3523,3526,1,0,0,0,3524,3522, + 1,0,0,0,3525,3516,1,0,0,0,3525,3526,1,0,0,0,3526,3549,1,0,0,0,3527, + 3528,5,329,0,0,3528,3529,5,399,0,0,3529,3530,3,500,250,0,3530,3532, + 5,400,0,0,3531,3533,5,17,0,0,3532,3531,1,0,0,0,3532,3533,1,0,0,0, + 3533,3534,1,0,0,0,3534,3546,3,466,233,0,3535,3536,5,399,0,0,3536, + 3541,3,652,326,0,3537,3538,5,397,0,0,3538,3540,3,652,326,0,3539, + 3537,1,0,0,0,3540,3543,1,0,0,0,3541,3539,1,0,0,0,3541,3542,1,0,0, + 0,3542,3544,1,0,0,0,3543,3541,1,0,0,0,3544,3545,5,400,0,0,3545,3547, + 1,0,0,0,3546,3535,1,0,0,0,3546,3547,1,0,0,0,3547,3549,1,0,0,0,3548, + 3513,1,0,0,0,3548,3527,1,0,0,0,3549,3551,1,0,0,0,3550,3493,1,0,0, + 0,3550,3510,1,0,0,0,3551,465,1,0,0,0,3552,3553,3,652,326,0,3553, + 467,1,0,0,0,3554,3555,5,331,0,0,3555,3556,5,399,0,0,3556,3557,5, + 30,0,0,3557,3558,5,431,0,0,3558,3559,5,230,0,0,3559,3560,5,221,0, + 0,3560,3570,5,431,0,0,3561,3562,5,224,0,0,3562,3567,3,594,297,0, + 3563,3564,5,397,0,0,3564,3566,3,594,297,0,3565,3563,1,0,0,0,3566, + 3569,1,0,0,0,3567,3565,1,0,0,0,3567,3568,1,0,0,0,3568,3571,1,0,0, + 0,3569,3567,1,0,0,0,3570,3561,1,0,0,0,3570,3571,1,0,0,0,3571,3572, + 1,0,0,0,3572,3582,5,400,0,0,3573,3574,5,331,0,0,3574,3578,5,399, + 0,0,3575,3576,5,431,0,0,3576,3579,7,30,0,0,3577,3579,5,430,0,0,3578, + 3575,1,0,0,0,3578,3577,1,0,0,0,3579,3580,1,0,0,0,3580,3582,5,400, + 0,0,3581,3554,1,0,0,0,3581,3573,1,0,0,0,3582,469,1,0,0,0,3583,3585, + 3,478,239,0,3584,3586,3,226,113,0,3585,3584,1,0,0,0,3585,3586,1, + 0,0,0,3586,3588,1,0,0,0,3587,3589,3,468,234,0,3588,3587,1,0,0,0, + 3588,3589,1,0,0,0,3589,3591,1,0,0,0,3590,3592,3,472,236,0,3591,3590, + 1,0,0,0,3591,3592,1,0,0,0,3592,3597,1,0,0,0,3593,3595,5,17,0,0,3594, + 3593,1,0,0,0,3594,3595,1,0,0,0,3595,3596,1,0,0,0,3596,3598,3,652, + 326,0,3597,3594,1,0,0,0,3597,3598,1,0,0,0,3598,471,1,0,0,0,3599, + 3609,5,134,0,0,3600,3601,5,327,0,0,3601,3602,5,17,0,0,3602,3603, + 5,221,0,0,3603,3610,3,594,297,0,3604,3605,5,134,0,0,3605,3606,5, + 328,0,0,3606,3607,5,17,0,0,3607,3608,5,221,0,0,3608,3610,5,431,0, + 0,3609,3600,1,0,0,0,3609,3604,1,0,0,0,3610,473,1,0,0,0,3611,3612, + 3,652,326,0,3612,475,1,0,0,0,3613,3614,3,652,326,0,3614,477,1,0, + 0,0,3615,3618,3,480,240,0,3616,3618,3,484,242,0,3617,3615,1,0,0, + 0,3617,3616,1,0,0,0,3618,479,1,0,0,0,3619,3620,3,652,326,0,3620, + 3621,5,395,0,0,3621,3624,3,652,326,0,3622,3623,5,395,0,0,3623,3625, + 3,652,326,0,3624,3622,1,0,0,0,3624,3625,1,0,0,0,3625,3628,1,0,0, + 0,3626,3628,3,652,326,0,3627,3619,1,0,0,0,3627,3626,1,0,0,0,3628, + 481,1,0,0,0,3629,3630,3,652,326,0,3630,3631,5,395,0,0,3631,3634, + 3,652,326,0,3632,3633,5,395,0,0,3633,3635,3,652,326,0,3634,3632, + 1,0,0,0,3634,3635,1,0,0,0,3635,3638,1,0,0,0,3636,3638,3,652,326, + 0,3637,3629,1,0,0,0,3637,3636,1,0,0,0,3638,483,1,0,0,0,3639,3640, + 3,652,326,0,3640,3641,5,395,0,0,3641,3643,1,0,0,0,3642,3639,1,0, + 0,0,3642,3643,1,0,0,0,3643,3644,1,0,0,0,3644,3645,3,652,326,0,3645, + 485,1,0,0,0,3646,3647,3,652,326,0,3647,3648,5,395,0,0,3648,3650, + 1,0,0,0,3649,3646,1,0,0,0,3649,3650,1,0,0,0,3650,3651,1,0,0,0,3651, + 3652,3,652,326,0,3652,487,1,0,0,0,3653,3654,5,399,0,0,3654,3655, + 3,362,181,0,3655,3657,5,400,0,0,3656,3658,5,17,0,0,3657,3656,1,0, + 0,0,3657,3658,1,0,0,0,3658,3659,1,0,0,0,3659,3660,3,652,326,0,3660, + 489,1,0,0,0,3661,3663,3,556,278,0,3662,3664,3,554,277,0,3663,3662, + 1,0,0,0,3663,3664,1,0,0,0,3664,3673,1,0,0,0,3665,3673,3,554,277, + 0,3666,3668,3,560,280,0,3667,3669,3,562,281,0,3668,3667,1,0,0,0, + 3668,3669,1,0,0,0,3669,3673,1,0,0,0,3670,3673,3,562,281,0,3671,3673, + 3,558,279,0,3672,3661,1,0,0,0,3672,3665,1,0,0,0,3672,3666,1,0,0, + 0,3672,3670,1,0,0,0,3672,3671,1,0,0,0,3673,491,1,0,0,0,3674,3678, + 3,488,244,0,3675,3678,3,470,235,0,3676,3678,3,494,247,0,3677,3674, + 1,0,0,0,3677,3675,1,0,0,0,3677,3676,1,0,0,0,3678,493,1,0,0,0,3679, + 3681,3,496,248,0,3680,3682,3,652,326,0,3681,3680,1,0,0,0,3681,3682, + 1,0,0,0,3682,495,1,0,0,0,3683,3684,3,652,326,0,3684,3685,5,399,0, + 0,3685,3686,5,224,0,0,3686,3688,3,492,246,0,3687,3689,3,490,245, + 0,3688,3687,1,0,0,0,3688,3689,1,0,0,0,3689,3705,1,0,0,0,3690,3691, + 5,432,0,0,3691,3692,5,399,0,0,3692,3693,3,594,297,0,3693,3702,5, + 400,0,0,3694,3695,5,397,0,0,3695,3696,5,432,0,0,3696,3697,5,399, + 0,0,3697,3698,3,594,297,0,3698,3699,5,400,0,0,3699,3701,1,0,0,0, + 3700,3694,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0,3702,3703, + 1,0,0,0,3703,3706,1,0,0,0,3704,3702,1,0,0,0,3705,3690,1,0,0,0,3705, + 3706,1,0,0,0,3706,3707,1,0,0,0,3707,3708,5,400,0,0,3708,497,1,0, + 0,0,3709,3710,5,384,0,0,3710,3711,3,594,297,0,3711,499,1,0,0,0,3712, + 3731,5,374,0,0,3713,3718,3,550,275,0,3714,3715,5,397,0,0,3715,3717, + 3,550,275,0,3716,3714,1,0,0,0,3717,3720,1,0,0,0,3718,3716,1,0,0, + 0,3718,3719,1,0,0,0,3719,3732,1,0,0,0,3720,3718,1,0,0,0,3721,3722, + 5,399,0,0,3722,3723,3,546,273,0,3723,3728,5,400,0,0,3724,3725,5, + 397,0,0,3725,3727,3,550,275,0,3726,3724,1,0,0,0,3727,3730,1,0,0, + 0,3728,3726,1,0,0,0,3728,3729,1,0,0,0,3729,3732,1,0,0,0,3730,3728, + 1,0,0,0,3731,3713,1,0,0,0,3731,3721,1,0,0,0,3732,501,1,0,0,0,3733, + 3734,5,329,0,0,3734,3735,5,399,0,0,3735,3736,3,500,250,0,3736,3737, + 5,400,0,0,3737,503,1,0,0,0,3738,3740,3,502,251,0,3739,3741,5,17, + 0,0,3740,3739,1,0,0,0,3740,3741,1,0,0,0,3741,3742,1,0,0,0,3742,3752, + 3,466,233,0,3743,3744,5,399,0,0,3744,3749,3,652,326,0,3745,3746, + 5,397,0,0,3746,3748,3,652,326,0,3747,3745,1,0,0,0,3748,3751,1,0, + 0,0,3749,3747,1,0,0,0,3749,3750,1,0,0,0,3750,3753,1,0,0,0,3751,3749, + 1,0,0,0,3752,3743,1,0,0,0,3752,3753,1,0,0,0,3753,3754,1,0,0,0,3754, + 3755,5,400,0,0,3755,505,1,0,0,0,3756,3758,5,299,0,0,3757,3759,5, + 436,0,0,3758,3757,1,0,0,0,3758,3759,1,0,0,0,3759,3766,1,0,0,0,3760, + 3762,7,22,0,0,3761,3760,1,0,0,0,3761,3762,1,0,0,0,3762,3763,1,0, + 0,0,3763,3767,3,510,255,0,3764,3765,5,347,0,0,3765,3767,3,508,254, + 0,3766,3761,1,0,0,0,3766,3764,1,0,0,0,3767,3770,1,0,0,0,3768,3770, + 3,518,259,0,3769,3756,1,0,0,0,3769,3768,1,0,0,0,3770,507,1,0,0,0, + 3771,3772,5,399,0,0,3772,3773,3,522,261,0,3773,3774,5,400,0,0,3774, + 3775,3,212,106,0,3775,3776,3,216,108,0,3776,3777,5,370,0,0,3777, + 3790,5,426,0,0,3778,3788,5,17,0,0,3779,3782,5,399,0,0,3780,3783, + 3,448,224,0,3781,3783,3,248,124,0,3782,3780,1,0,0,0,3782,3781,1, + 0,0,0,3783,3784,1,0,0,0,3784,3785,5,400,0,0,3785,3789,1,0,0,0,3786, + 3789,3,448,224,0,3787,3789,3,248,124,0,3788,3779,1,0,0,0,3788,3786, + 1,0,0,0,3788,3787,1,0,0,0,3789,3791,1,0,0,0,3790,3778,1,0,0,0,3790, + 3791,1,0,0,0,3791,3792,1,0,0,0,3792,3793,3,212,106,0,3793,3794,3, + 214,107,0,3794,509,1,0,0,0,3795,3800,3,512,256,0,3796,3797,5,397, + 0,0,3797,3799,3,512,256,0,3798,3796,1,0,0,0,3799,3802,1,0,0,0,3800, + 3798,1,0,0,0,3800,3801,1,0,0,0,3801,511,1,0,0,0,3802,3800,1,0,0, + 0,3803,3827,3,444,222,0,3804,3807,3,514,257,0,3805,3807,3,516,258, + 0,3806,3804,1,0,0,0,3806,3805,1,0,0,0,3807,3824,1,0,0,0,3808,3810, + 5,17,0,0,3809,3808,1,0,0,0,3809,3810,1,0,0,0,3810,3811,1,0,0,0,3811, + 3825,3,652,326,0,3812,3813,5,17,0,0,3813,3814,5,399,0,0,3814,3819, + 3,652,326,0,3815,3816,5,397,0,0,3816,3818,3,652,326,0,3817,3815, + 1,0,0,0,3818,3821,1,0,0,0,3819,3817,1,0,0,0,3819,3820,1,0,0,0,3820, + 3822,1,0,0,0,3821,3819,1,0,0,0,3822,3823,5,400,0,0,3823,3825,1,0, + 0,0,3824,3809,1,0,0,0,3824,3812,1,0,0,0,3824,3825,1,0,0,0,3825,3827, + 1,0,0,0,3826,3803,1,0,0,0,3826,3806,1,0,0,0,3827,513,1,0,0,0,3828, + 3829,3,256,128,0,3829,515,1,0,0,0,3830,3831,3,594,297,0,3831,517, + 1,0,0,0,3832,3833,7,31,0,0,3833,3834,3,522,261,0,3834,3835,3,212, + 106,0,3835,3836,3,216,108,0,3836,3837,5,370,0,0,3837,3850,5,426, + 0,0,3838,3848,5,17,0,0,3839,3842,5,399,0,0,3840,3843,3,448,224,0, + 3841,3843,3,248,124,0,3842,3840,1,0,0,0,3842,3841,1,0,0,0,3843,3844, + 1,0,0,0,3844,3845,5,400,0,0,3845,3849,1,0,0,0,3846,3849,3,448,224, + 0,3847,3849,3,248,124,0,3848,3839,1,0,0,0,3848,3846,1,0,0,0,3848, + 3847,1,0,0,0,3849,3851,1,0,0,0,3850,3838,1,0,0,0,3850,3851,1,0,0, + 0,3851,3852,1,0,0,0,3852,3853,3,212,106,0,3853,3854,3,214,107,0, + 3854,519,1,0,0,0,3855,3858,3,444,222,0,3856,3858,3,594,297,0,3857, + 3855,1,0,0,0,3857,3856,1,0,0,0,3858,521,1,0,0,0,3859,3864,3,520, + 260,0,3860,3861,5,397,0,0,3861,3863,3,520,260,0,3862,3860,1,0,0, + 0,3863,3866,1,0,0,0,3864,3862,1,0,0,0,3864,3865,1,0,0,0,3865,523, + 1,0,0,0,3866,3864,1,0,0,0,3867,3868,5,386,0,0,3868,3869,3,652,326, + 0,3869,3870,5,17,0,0,3870,3878,3,526,263,0,3871,3872,5,397,0,0,3872, + 3873,3,652,326,0,3873,3874,5,17,0,0,3874,3875,3,526,263,0,3875,3877, + 1,0,0,0,3876,3871,1,0,0,0,3877,3880,1,0,0,0,3878,3876,1,0,0,0,3878, + 3879,1,0,0,0,3879,525,1,0,0,0,3880,3878,1,0,0,0,3881,3894,3,652, + 326,0,3882,3884,5,399,0,0,3883,3885,3,652,326,0,3884,3883,1,0,0, + 0,3884,3885,1,0,0,0,3885,3887,1,0,0,0,3886,3888,3,490,245,0,3887, + 3886,1,0,0,0,3887,3888,1,0,0,0,3888,3890,1,0,0,0,3889,3891,3,528, + 264,0,3890,3889,1,0,0,0,3890,3891,1,0,0,0,3891,3892,1,0,0,0,3892, + 3894,5,400,0,0,3893,3881,1,0,0,0,3893,3882,1,0,0,0,3894,527,1,0, + 0,0,3895,3909,7,32,0,0,3896,3897,5,354,0,0,3897,3903,5,247,0,0,3898, + 3899,5,62,0,0,3899,3903,5,291,0,0,3900,3901,5,431,0,0,3901,3903, + 5,247,0,0,3902,3896,1,0,0,0,3902,3898,1,0,0,0,3902,3900,1,0,0,0, + 3903,3910,1,0,0,0,3904,3905,5,25,0,0,3905,3906,3,530,265,0,3906, + 3907,5,11,0,0,3907,3908,3,530,265,0,3908,3910,1,0,0,0,3909,3902, + 1,0,0,0,3909,3904,1,0,0,0,3910,529,1,0,0,0,3911,3912,7,33,0,0,3912, + 3916,7,34,0,0,3913,3914,5,62,0,0,3914,3916,5,291,0,0,3915,3911,1, + 0,0,0,3915,3913,1,0,0,0,3916,531,1,0,0,0,3917,3918,5,144,0,0,3918, + 3924,5,32,0,0,3919,3925,3,256,128,0,3920,3925,3,534,267,0,3921,3925, + 3,536,268,0,3922,3923,5,399,0,0,3923,3925,5,400,0,0,3924,3919,1, + 0,0,0,3924,3920,1,0,0,0,3924,3921,1,0,0,0,3924,3922,1,0,0,0,3925, + 533,1,0,0,0,3926,3929,5,290,0,0,3927,3929,5,61,0,0,3928,3926,1,0, + 0,0,3928,3927,1,0,0,0,3929,3930,1,0,0,0,3930,3931,5,399,0,0,3931, + 3936,3,594,297,0,3932,3933,5,397,0,0,3933,3935,3,594,297,0,3934, + 3932,1,0,0,0,3935,3938,1,0,0,0,3936,3934,1,0,0,0,3936,3937,1,0,0, + 0,3937,3939,1,0,0,0,3938,3936,1,0,0,0,3939,3940,5,400,0,0,3940,535, + 1,0,0,0,3941,3946,3,552,276,0,3942,3943,5,387,0,0,3943,3947,5,290, + 0,0,3944,3945,5,387,0,0,3945,3947,5,61,0,0,3946,3942,1,0,0,0,3946, + 3944,1,0,0,0,3946,3947,1,0,0,0,3947,3961,1,0,0,0,3948,3949,5,145, + 0,0,3949,3950,5,305,0,0,3950,3951,5,399,0,0,3951,3956,3,538,269, + 0,3952,3953,5,397,0,0,3953,3955,3,538,269,0,3954,3952,1,0,0,0,3955, + 3958,1,0,0,0,3956,3954,1,0,0,0,3956,3957,1,0,0,0,3957,3959,1,0,0, + 0,3958,3956,1,0,0,0,3959,3960,5,400,0,0,3960,3962,1,0,0,0,3961,3948, + 1,0,0,0,3961,3962,1,0,0,0,3962,537,1,0,0,0,3963,3965,5,399,0,0,3964, + 3966,3,594,297,0,3965,3964,1,0,0,0,3965,3966,1,0,0,0,3966,3971,1, + 0,0,0,3967,3968,5,397,0,0,3968,3970,3,594,297,0,3969,3967,1,0,0, + 0,3970,3973,1,0,0,0,3971,3969,1,0,0,0,3971,3972,1,0,0,0,3972,3974, + 1,0,0,0,3973,3971,1,0,0,0,3974,3977,5,400,0,0,3975,3977,3,594,297, + 0,3976,3963,1,0,0,0,3976,3975,1,0,0,0,3977,539,1,0,0,0,3978,3979, + 5,146,0,0,3979,3980,3,594,297,0,3980,541,1,0,0,0,3981,3982,5,256, + 0,0,3982,3983,3,594,297,0,3983,543,1,0,0,0,3984,3987,5,83,0,0,3985, + 3987,3,594,297,0,3986,3984,1,0,0,0,3986,3985,1,0,0,0,3987,545,1, + 0,0,0,3988,3990,3,594,297,0,3989,3991,5,17,0,0,3990,3989,1,0,0,0, + 3990,3991,1,0,0,0,3991,3993,1,0,0,0,3992,3994,3,652,326,0,3993,3992, + 1,0,0,0,3993,3994,1,0,0,0,3994,4005,1,0,0,0,3995,3996,5,397,0,0, + 3996,3998,3,594,297,0,3997,3999,5,17,0,0,3998,3997,1,0,0,0,3998, + 3999,1,0,0,0,3999,4001,1,0,0,0,4000,4002,3,652,326,0,4001,4000,1, + 0,0,0,4001,4002,1,0,0,0,4002,4004,1,0,0,0,4003,3995,1,0,0,0,4004, + 4007,1,0,0,0,4005,4003,1,0,0,0,4005,4006,1,0,0,0,4006,547,1,0,0, + 0,4007,4005,1,0,0,0,4008,4011,3,550,275,0,4009,4011,3,552,276,0, + 4010,4008,1,0,0,0,4010,4009,1,0,0,0,4011,549,1,0,0,0,4012,4013,5, + 399,0,0,4013,4014,3,552,276,0,4014,4015,5,400,0,0,4015,551,1,0,0, + 0,4016,4023,3,544,272,0,4017,4018,5,397,0,0,4018,4020,3,544,272, + 0,4019,4017,1,0,0,0,4020,4021,1,0,0,0,4021,4019,1,0,0,0,4021,4022, + 1,0,0,0,4022,4024,1,0,0,0,4023,4019,1,0,0,0,4023,4024,1,0,0,0,4024, + 553,1,0,0,0,4025,4026,5,229,0,0,4026,4027,5,32,0,0,4027,4032,3,310, + 155,0,4028,4029,5,397,0,0,4029,4031,3,310,155,0,4030,4028,1,0,0, + 0,4031,4034,1,0,0,0,4032,4030,1,0,0,0,4032,4033,1,0,0,0,4033,555, + 1,0,0,0,4034,4032,1,0,0,0,4035,4036,5,237,0,0,4036,4037,5,32,0,0, + 4037,4038,3,548,274,0,4038,557,1,0,0,0,4039,4040,5,41,0,0,4040,4041, + 5,32,0,0,4041,4042,3,548,274,0,4042,559,1,0,0,0,4043,4044,5,97,0, + 0,4044,4045,5,32,0,0,4045,4046,3,548,274,0,4046,561,1,0,0,0,4047, + 4048,5,314,0,0,4048,4068,5,32,0,0,4049,4050,5,399,0,0,4050,4055, + 3,310,155,0,4051,4052,5,397,0,0,4052,4054,3,310,155,0,4053,4051, + 1,0,0,0,4054,4057,1,0,0,0,4055,4053,1,0,0,0,4055,4056,1,0,0,0,4056, + 4058,1,0,0,0,4057,4055,1,0,0,0,4058,4059,5,400,0,0,4059,4069,1,0, + 0,0,4060,4065,3,310,155,0,4061,4062,5,397,0,0,4062,4064,3,310,155, + 0,4063,4061,1,0,0,0,4064,4067,1,0,0,0,4065,4063,1,0,0,0,4065,4066, + 1,0,0,0,4066,4069,1,0,0,0,4067,4065,1,0,0,0,4068,4049,1,0,0,0,4068, + 4060,1,0,0,0,4069,563,1,0,0,0,4070,4071,5,349,0,0,4071,4075,5,399, + 0,0,4072,4076,5,179,0,0,4073,4076,5,343,0,0,4074,4076,5,29,0,0,4075, + 4072,1,0,0,0,4075,4073,1,0,0,0,4075,4074,1,0,0,0,4075,4076,1,0,0, + 0,4076,4078,1,0,0,0,4077,4079,3,520,260,0,4078,4077,1,0,0,0,4078, + 4079,1,0,0,0,4079,4080,1,0,0,0,4080,4081,5,139,0,0,4081,4082,3,520, + 260,0,4082,4083,5,400,0,0,4083,4124,1,0,0,0,4084,4085,3,572,286, + 0,4085,4100,5,399,0,0,4086,4101,5,415,0,0,4087,4089,7,22,0,0,4088, + 4087,1,0,0,0,4088,4089,1,0,0,0,4089,4098,1,0,0,0,4090,4095,3,520, + 260,0,4091,4092,5,397,0,0,4092,4094,3,520,260,0,4093,4091,1,0,0, + 0,4094,4097,1,0,0,0,4095,4093,1,0,0,0,4095,4096,1,0,0,0,4096,4099, + 1,0,0,0,4097,4095,1,0,0,0,4098,4090,1,0,0,0,4098,4099,1,0,0,0,4099, + 4101,1,0,0,0,4100,4086,1,0,0,0,4100,4088,1,0,0,0,4101,4121,1,0,0, + 0,4102,4103,5,400,0,0,4103,4104,5,388,0,0,4104,4105,5,144,0,0,4105, + 4106,5,399,0,0,4106,4107,3,554,277,0,4107,4108,5,400,0,0,4108,4122, + 1,0,0,0,4109,4111,5,400,0,0,4110,4112,3,566,283,0,4111,4110,1,0, + 0,0,4111,4112,1,0,0,0,4112,4113,1,0,0,0,4113,4114,5,234,0,0,4114, + 4122,3,526,263,0,4115,4116,3,566,283,0,4116,4117,5,400,0,0,4117, + 4118,5,234,0,0,4118,4119,3,526,263,0,4119,4122,1,0,0,0,4120,4122, + 5,400,0,0,4121,4102,1,0,0,0,4121,4109,1,0,0,0,4121,4115,1,0,0,0, + 4121,4120,1,0,0,0,4122,4124,1,0,0,0,4123,4070,1,0,0,0,4123,4084, + 1,0,0,0,4124,565,1,0,0,0,4125,4126,7,35,0,0,4126,4127,5,220,0,0, + 4127,567,1,0,0,0,4128,4129,3,654,327,0,4129,569,1,0,0,0,4130,4133, + 3,654,327,0,4131,4133,5,426,0,0,4132,4130,1,0,0,0,4132,4131,1,0, + 0,0,4133,571,1,0,0,0,4134,4138,3,654,327,0,4135,4138,3,660,330,0, + 4136,4138,3,650,325,0,4137,4134,1,0,0,0,4137,4135,1,0,0,0,4137,4136, + 1,0,0,0,4138,573,1,0,0,0,4139,4140,5,36,0,0,4140,4141,5,399,0,0, + 4141,4142,3,594,297,0,4142,4143,5,17,0,0,4143,4146,3,350,175,0,4144, + 4145,5,137,0,0,4145,4147,5,426,0,0,4146,4144,1,0,0,0,4146,4147,1, + 0,0,0,4147,4148,1,0,0,0,4148,4149,5,400,0,0,4149,575,1,0,0,0,4150, + 4151,5,35,0,0,4151,4157,3,594,297,0,4152,4153,5,383,0,0,4153,4154, + 3,594,297,0,4154,4155,5,335,0,0,4155,4156,3,594,297,0,4156,4158, + 1,0,0,0,4157,4152,1,0,0,0,4158,4159,1,0,0,0,4159,4157,1,0,0,0,4159, + 4160,1,0,0,0,4160,4163,1,0,0,0,4161,4162,5,105,0,0,4162,4164,3,594, + 297,0,4163,4161,1,0,0,0,4163,4164,1,0,0,0,4164,4165,1,0,0,0,4165, + 4166,5,108,0,0,4166,577,1,0,0,0,4167,4173,5,35,0,0,4168,4169,5,383, + 0,0,4169,4170,3,594,297,0,4170,4171,5,335,0,0,4171,4172,3,594,297, + 0,4172,4174,1,0,0,0,4173,4168,1,0,0,0,4174,4175,1,0,0,0,4175,4173, + 1,0,0,0,4175,4176,1,0,0,0,4176,4179,1,0,0,0,4177,4178,5,105,0,0, + 4178,4180,3,594,297,0,4179,4177,1,0,0,0,4179,4180,1,0,0,0,4180,4181, + 1,0,0,0,4181,4182,5,108,0,0,4182,579,1,0,0,0,4183,4184,5,132,0,0, + 4184,4185,5,399,0,0,4185,4188,3,594,297,0,4186,4187,5,341,0,0,4187, + 4189,3,584,292,0,4188,4186,1,0,0,0,4188,4189,1,0,0,0,4189,4190,1, + 0,0,0,4190,4191,5,400,0,0,4191,581,1,0,0,0,4192,4193,5,124,0,0,4193, + 4194,5,399,0,0,4194,4195,3,584,292,0,4195,4196,5,139,0,0,4196,4197, + 3,594,297,0,4197,4198,5,400,0,0,4198,583,1,0,0,0,4199,4208,3,680, + 340,0,4200,4208,5,257,0,0,4201,4208,3,682,341,0,4202,4208,3,684, + 342,0,4203,4208,3,686,343,0,4204,4208,3,688,344,0,4205,4208,3,690, + 345,0,4206,4208,3,692,346,0,4207,4199,1,0,0,0,4207,4200,1,0,0,0, + 4207,4201,1,0,0,0,4207,4202,1,0,0,0,4207,4203,1,0,0,0,4207,4204, + 1,0,0,0,4207,4205,1,0,0,0,4207,4206,1,0,0,0,4208,585,1,0,0,0,4209, + 4210,3,588,294,0,4210,4211,3,592,296,0,4211,4238,1,0,0,0,4212,4238, + 5,431,0,0,4213,4214,5,71,0,0,4214,4238,5,426,0,0,4215,4238,5,63, + 0,0,4216,4217,5,337,0,0,4217,4238,5,426,0,0,4218,4238,5,64,0,0,4219, + 4220,5,338,0,0,4220,4238,5,426,0,0,4221,4225,5,426,0,0,4222,4224, + 5,426,0,0,4223,4222,1,0,0,0,4224,4227,1,0,0,0,4225,4223,1,0,0,0, + 4225,4226,1,0,0,0,4226,4238,1,0,0,0,4227,4225,1,0,0,0,4228,4238, + 5,428,0,0,4229,4238,5,429,0,0,4230,4231,5,433,0,0,4231,4238,5,427, + 0,0,4232,4238,5,350,0,0,4233,4238,5,125,0,0,4234,4238,5,219,0,0, + 4235,4238,5,424,0,0,4236,4238,3,258,129,0,4237,4209,1,0,0,0,4237, + 4212,1,0,0,0,4237,4213,1,0,0,0,4237,4215,1,0,0,0,4237,4216,1,0,0, + 0,4237,4218,1,0,0,0,4237,4219,1,0,0,0,4237,4221,1,0,0,0,4237,4228, + 1,0,0,0,4237,4229,1,0,0,0,4237,4230,1,0,0,0,4237,4232,1,0,0,0,4237, + 4233,1,0,0,0,4237,4234,1,0,0,0,4237,4235,1,0,0,0,4237,4236,1,0,0, + 0,4238,587,1,0,0,0,4239,4240,7,27,0,0,4240,589,1,0,0,0,4241,4242, + 5,399,0,0,4242,4243,3,588,294,0,4243,4244,5,400,0,0,4244,4245,3, + 592,296,0,4245,4257,1,0,0,0,4246,4252,5,165,0,0,4247,4253,3,588, + 294,0,4248,4249,5,399,0,0,4249,4250,3,594,297,0,4250,4251,5,400, + 0,0,4251,4253,1,0,0,0,4252,4247,1,0,0,0,4252,4248,1,0,0,0,4253,4254, + 1,0,0,0,4254,4255,3,592,296,0,4255,4257,1,0,0,0,4256,4241,1,0,0, + 0,4256,4246,1,0,0,0,4257,591,1,0,0,0,4258,4259,3,680,340,0,4259, + 4260,5,341,0,0,4260,4261,3,682,341,0,4261,4273,1,0,0,0,4262,4263, + 3,686,343,0,4263,4264,5,341,0,0,4264,4265,3,692,346,0,4265,4273, + 1,0,0,0,4266,4273,3,680,340,0,4267,4273,3,682,341,0,4268,4273,3, + 686,343,0,4269,4273,3,688,344,0,4270,4273,3,690,345,0,4271,4273, + 3,692,346,0,4272,4258,1,0,0,0,4272,4262,1,0,0,0,4272,4266,1,0,0, + 0,4272,4267,1,0,0,0,4272,4268,1,0,0,0,4272,4269,1,0,0,0,4272,4270, + 1,0,0,0,4272,4271,1,0,0,0,4273,593,1,0,0,0,4274,4279,3,636,318,0, + 4275,4276,5,228,0,0,4276,4278,3,636,318,0,4277,4275,1,0,0,0,4278, + 4281,1,0,0,0,4279,4277,1,0,0,0,4279,4280,1,0,0,0,4280,595,1,0,0, + 0,4281,4279,1,0,0,0,4282,4294,3,586,293,0,4283,4294,3,590,295,0, + 4284,4294,3,574,287,0,4285,4294,3,582,291,0,4286,4294,3,580,290, + 0,4287,4294,3,576,288,0,4288,4294,3,578,289,0,4289,4294,3,614,307, + 0,4290,4294,3,564,282,0,4291,4294,3,550,275,0,4292,4294,3,652,326, + 0,4293,4282,1,0,0,0,4293,4283,1,0,0,0,4293,4284,1,0,0,0,4293,4285, + 1,0,0,0,4293,4286,1,0,0,0,4293,4287,1,0,0,0,4293,4288,1,0,0,0,4293, + 4289,1,0,0,0,4293,4290,1,0,0,0,4293,4291,1,0,0,0,4293,4292,1,0,0, + 0,4294,597,1,0,0,0,4295,4297,7,36,0,0,4296,4295,1,0,0,0,4297,4300, + 1,0,0,0,4298,4296,1,0,0,0,4298,4299,1,0,0,0,4299,4301,1,0,0,0,4300, + 4298,1,0,0,0,4301,4310,3,596,298,0,4302,4303,5,401,0,0,4303,4304, + 3,594,297,0,4304,4305,5,402,0,0,4305,4309,1,0,0,0,4306,4307,5,395, + 0,0,4307,4309,3,652,326,0,4308,4302,1,0,0,0,4308,4306,1,0,0,0,4309, + 4312,1,0,0,0,4310,4308,1,0,0,0,4310,4311,1,0,0,0,4311,599,1,0,0, + 0,4312,4310,1,0,0,0,4313,4318,3,598,299,0,4314,4315,5,423,0,0,4315, + 4317,3,598,299,0,4316,4314,1,0,0,0,4317,4320,1,0,0,0,4318,4316,1, + 0,0,0,4318,4319,1,0,0,0,4319,601,1,0,0,0,4320,4318,1,0,0,0,4321, + 4326,3,600,300,0,4322,4323,7,37,0,0,4323,4325,3,600,300,0,4324,4322, + 1,0,0,0,4325,4328,1,0,0,0,4326,4324,1,0,0,0,4326,4327,1,0,0,0,4327, + 603,1,0,0,0,4328,4326,1,0,0,0,4329,4334,3,602,301,0,4330,4331,7, + 38,0,0,4331,4333,3,602,301,0,4332,4330,1,0,0,0,4333,4336,1,0,0,0, + 4334,4332,1,0,0,0,4334,4335,1,0,0,0,4335,605,1,0,0,0,4336,4334,1, + 0,0,0,4337,4342,3,604,302,0,4338,4339,5,422,0,0,4339,4341,3,604, + 302,0,4340,4338,1,0,0,0,4341,4344,1,0,0,0,4342,4340,1,0,0,0,4342, + 4343,1,0,0,0,4343,607,1,0,0,0,4344,4342,1,0,0,0,4345,4350,3,606, + 303,0,4346,4347,5,419,0,0,4347,4349,3,606,303,0,4348,4346,1,0,0, + 0,4349,4352,1,0,0,0,4350,4348,1,0,0,0,4350,4351,1,0,0,0,4351,609, + 1,0,0,0,4352,4350,1,0,0,0,4353,4358,3,608,304,0,4354,4355,5,421, + 0,0,4355,4357,3,608,304,0,4356,4354,1,0,0,0,4357,4360,1,0,0,0,4358, + 4356,1,0,0,0,4358,4359,1,0,0,0,4359,611,1,0,0,0,4360,4358,1,0,0, + 0,4361,4362,7,39,0,0,4362,613,1,0,0,0,4363,4364,5,399,0,0,4364,4365, + 3,378,189,0,4365,4366,5,400,0,0,4366,615,1,0,0,0,4367,4369,3,610, + 305,0,4368,4370,3,618,309,0,4369,4368,1,0,0,0,4369,4370,1,0,0,0, + 4370,4374,1,0,0,0,4371,4372,5,117,0,0,4372,4374,3,614,307,0,4373, + 4367,1,0,0,0,4373,4371,1,0,0,0,4374,617,1,0,0,0,4375,4376,3,612, + 306,0,4376,4377,3,610,305,0,4377,4382,1,0,0,0,4378,4382,3,620,310, + 0,4379,4380,5,216,0,0,4380,4382,3,624,312,0,4381,4375,1,0,0,0,4381, + 4378,1,0,0,0,4381,4379,1,0,0,0,4382,619,1,0,0,0,4383,4384,5,154, + 0,0,4384,4398,3,622,311,0,4385,4386,5,25,0,0,4386,4387,3,610,305, + 0,4387,4388,5,11,0,0,4388,4389,3,610,305,0,4389,4398,1,0,0,0,4390, + 4391,5,184,0,0,4391,4392,7,40,0,0,4392,4398,3,550,275,0,4393,4394, + 3,648,324,0,4394,4395,7,41,0,0,4395,4396,3,614,307,0,4396,4398,1, + 0,0,0,4397,4383,1,0,0,0,4397,4385,1,0,0,0,4397,4390,1,0,0,0,4397, + 4393,1,0,0,0,4398,621,1,0,0,0,4399,4402,3,614,307,0,4400,4402,3, + 550,275,0,4401,4399,1,0,0,0,4401,4400,1,0,0,0,4402,623,1,0,0,0,4403, + 4404,7,42,0,0,4404,4407,3,610,305,0,4405,4407,3,620,310,0,4406,4403, + 1,0,0,0,4406,4405,1,0,0,0,4407,625,1,0,0,0,4408,4409,5,167,0,0,4409, + 4410,5,96,0,0,4410,4411,5,139,0,0,4411,627,1,0,0,0,4412,4420,5,405, + 0,0,4413,4420,5,406,0,0,4414,4420,5,407,0,0,4415,4416,5,167,0,0, + 4416,4417,5,216,0,0,4417,4418,5,96,0,0,4418,4420,5,139,0,0,4419, + 4412,1,0,0,0,4419,4413,1,0,0,0,4419,4414,1,0,0,0,4419,4415,1,0,0, + 0,4420,629,1,0,0,0,4421,4430,3,616,308,0,4422,4423,3,628,314,0,4423, + 4424,3,616,308,0,4424,4429,1,0,0,0,4425,4426,3,626,313,0,4426,4427, + 3,616,308,0,4427,4429,1,0,0,0,4428,4422,1,0,0,0,4428,4425,1,0,0, + 0,4429,4432,1,0,0,0,4430,4428,1,0,0,0,4430,4431,1,0,0,0,4431,631, + 1,0,0,0,4432,4430,1,0,0,0,4433,4440,5,219,0,0,4434,4440,5,350,0, + 0,4435,4440,5,125,0,0,4436,4440,5,360,0,0,4437,4438,5,216,0,0,4438, + 4440,7,43,0,0,4439,4433,1,0,0,0,4439,4434,1,0,0,0,4439,4435,1,0, + 0,0,4439,4436,1,0,0,0,4439,4437,1,0,0,0,4440,633,1,0,0,0,4441,4443, + 5,216,0,0,4442,4441,1,0,0,0,4443,4446,1,0,0,0,4444,4442,1,0,0,0, + 4444,4445,1,0,0,0,4445,4447,1,0,0,0,4446,4444,1,0,0,0,4447,4450, + 3,630,315,0,4448,4449,5,167,0,0,4449,4451,3,632,316,0,4450,4448, + 1,0,0,0,4450,4451,1,0,0,0,4451,635,1,0,0,0,4452,4457,3,634,317,0, + 4453,4454,5,11,0,0,4454,4456,3,634,317,0,4455,4453,1,0,0,0,4456, + 4459,1,0,0,0,4457,4455,1,0,0,0,4457,4458,1,0,0,0,4458,637,1,0,0, + 0,4459,4457,1,0,0,0,4460,4462,3,480,240,0,4461,4463,3,640,320,0, + 4462,4461,1,0,0,0,4462,4463,1,0,0,0,4463,639,1,0,0,0,4464,4465,5, + 237,0,0,4465,4466,5,399,0,0,4466,4471,3,642,321,0,4467,4468,5,397, + 0,0,4468,4470,3,642,321,0,4469,4467,1,0,0,0,4470,4473,1,0,0,0,4471, + 4469,1,0,0,0,4471,4472,1,0,0,0,4472,4474,1,0,0,0,4473,4471,1,0,0, + 0,4474,4475,5,400,0,0,4475,641,1,0,0,0,4476,4479,3,652,326,0,4477, + 4478,5,405,0,0,4478,4480,3,586,293,0,4479,4477,1,0,0,0,4479,4480, + 1,0,0,0,4480,643,1,0,0,0,4481,4482,5,399,0,0,4482,4487,3,646,323, + 0,4483,4484,5,397,0,0,4484,4486,3,646,323,0,4485,4483,1,0,0,0,4486, + 4489,1,0,0,0,4487,4485,1,0,0,0,4487,4488,1,0,0,0,4488,4490,1,0,0, + 0,4489,4487,1,0,0,0,4490,4491,5,400,0,0,4491,645,1,0,0,0,4492,4495, + 3,652,326,0,4493,4496,5,184,0,0,4494,4496,3,648,324,0,4495,4493, + 1,0,0,0,4495,4494,1,0,0,0,4496,4497,1,0,0,0,4497,4498,3,586,293, + 0,4498,647,1,0,0,0,4499,4500,7,44,0,0,4500,649,1,0,0,0,4501,4502, + 7,45,0,0,4502,651,1,0,0,0,4503,4506,5,432,0,0,4504,4506,3,658,329, + 0,4505,4503,1,0,0,0,4505,4504,1,0,0,0,4506,653,1,0,0,0,4507,4510, + 3,652,326,0,4508,4509,5,395,0,0,4509,4511,3,652,326,0,4510,4508, + 1,0,0,0,4510,4511,1,0,0,0,4511,655,1,0,0,0,4512,4513,3,652,326,0, + 4513,657,1,0,0,0,4514,4515,7,46,0,0,4515,659,1,0,0,0,4516,4517,7, + 47,0,0,4517,661,1,0,0,0,4518,4570,3,652,326,0,4519,4570,5,299,0, + 0,4520,4570,5,171,0,0,4521,4570,5,237,0,0,4522,4570,5,198,0,0,4523, + 4570,5,268,0,0,4524,4570,5,369,0,0,4525,4570,5,241,0,0,4526,4570, + 5,165,0,0,4527,4570,5,292,0,0,4528,4570,5,356,0,0,4529,4570,5,144, + 0,0,4530,4570,5,203,0,0,4531,4570,5,219,0,0,4532,4570,5,126,0,0, + 4533,4570,5,188,0,0,4534,4570,5,101,0,0,4535,4570,5,329,0,0,4536, + 4570,5,224,0,0,4537,4570,5,291,0,0,4538,4570,5,145,0,0,4539,4570, + 5,304,0,0,4540,4570,5,135,0,0,4541,4570,5,318,0,0,4542,4570,5,161, + 0,0,4543,4570,5,54,0,0,4544,4570,5,166,0,0,4545,4570,5,358,0,0,4546, + 4570,5,45,0,0,4547,4570,5,347,0,0,4548,4570,5,96,0,0,4549,4570,5, + 154,0,0,4550,4570,5,269,0,0,4551,4570,5,337,0,0,4552,4570,5,225, + 0,0,4553,4570,5,108,0,0,4554,4570,5,141,0,0,4555,4570,5,365,0,0, + 4556,4570,5,21,0,0,4557,4570,5,78,0,0,4558,4570,5,374,0,0,4559,4570, + 5,336,0,0,4560,4570,5,167,0,0,4561,4570,5,134,0,0,4562,4570,5,216, + 0,0,4563,4570,5,27,0,0,4564,4570,5,370,0,0,4565,4570,5,263,0,0,4566, + 4570,5,25,0,0,4567,4570,5,62,0,0,4568,4570,5,17,0,0,4569,4518,1, + 0,0,0,4569,4519,1,0,0,0,4569,4520,1,0,0,0,4569,4521,1,0,0,0,4569, + 4522,1,0,0,0,4569,4523,1,0,0,0,4569,4524,1,0,0,0,4569,4525,1,0,0, + 0,4569,4526,1,0,0,0,4569,4527,1,0,0,0,4569,4528,1,0,0,0,4569,4529, + 1,0,0,0,4569,4530,1,0,0,0,4569,4531,1,0,0,0,4569,4532,1,0,0,0,4569, + 4533,1,0,0,0,4569,4534,1,0,0,0,4569,4535,1,0,0,0,4569,4536,1,0,0, + 0,4569,4537,1,0,0,0,4569,4538,1,0,0,0,4569,4539,1,0,0,0,4569,4540, + 1,0,0,0,4569,4541,1,0,0,0,4569,4542,1,0,0,0,4569,4543,1,0,0,0,4569, + 4544,1,0,0,0,4569,4545,1,0,0,0,4569,4546,1,0,0,0,4569,4547,1,0,0, + 0,4569,4548,1,0,0,0,4569,4549,1,0,0,0,4569,4550,1,0,0,0,4569,4551, + 1,0,0,0,4569,4552,1,0,0,0,4569,4553,1,0,0,0,4569,4554,1,0,0,0,4569, + 4555,1,0,0,0,4569,4556,1,0,0,0,4569,4557,1,0,0,0,4569,4558,1,0,0, + 0,4569,4559,1,0,0,0,4569,4560,1,0,0,0,4569,4561,1,0,0,0,4569,4562, + 1,0,0,0,4569,4563,1,0,0,0,4569,4564,1,0,0,0,4569,4565,1,0,0,0,4569, + 4566,1,0,0,0,4569,4567,1,0,0,0,4569,4568,1,0,0,0,4570,663,1,0,0, + 0,4571,4572,5,58,0,0,4572,4573,5,280,0,0,4573,4575,5,243,0,0,4574, + 4576,3,32,16,0,4575,4574,1,0,0,0,4575,4576,1,0,0,0,4576,4586,1,0, + 0,0,4577,4578,3,652,326,0,4578,4579,5,184,0,0,4579,4580,3,652,326, + 0,4580,4587,1,0,0,0,4581,4584,3,652,326,0,4582,4583,5,387,0,0,4583, + 4585,3,670,335,0,4584,4582,1,0,0,0,4584,4585,1,0,0,0,4585,4587,1, + 0,0,0,4586,4577,1,0,0,0,4586,4581,1,0,0,0,4587,4737,1,0,0,0,4588, + 4589,5,9,0,0,4589,4590,5,280,0,0,4590,4591,5,243,0,0,4591,4616,3, + 652,326,0,4592,4617,5,373,0,0,4593,4617,3,678,339,0,4594,4595,5, + 304,0,0,4595,4617,3,670,335,0,4596,4597,5,363,0,0,4597,4602,3,672, + 336,0,4598,4599,5,397,0,0,4599,4601,3,672,336,0,4600,4598,1,0,0, + 0,4601,4604,1,0,0,0,4602,4600,1,0,0,0,4602,4603,1,0,0,0,4603,4617, + 1,0,0,0,4604,4602,1,0,0,0,4605,4606,5,274,0,0,4606,4607,5,341,0, + 0,4607,4617,3,652,326,0,4608,4610,3,674,337,0,4609,4611,3,676,338, + 0,4610,4609,1,0,0,0,4610,4611,1,0,0,0,4611,4617,1,0,0,0,4612,4614, + 3,676,338,0,4613,4615,3,674,337,0,4614,4613,1,0,0,0,4614,4615,1, + 0,0,0,4615,4617,1,0,0,0,4616,4592,1,0,0,0,4616,4593,1,0,0,0,4616, + 4594,1,0,0,0,4616,4596,1,0,0,0,4616,4605,1,0,0,0,4616,4608,1,0,0, + 0,4616,4612,1,0,0,0,4617,4737,1,0,0,0,4618,4619,5,101,0,0,4619,4620, + 5,280,0,0,4620,4622,5,243,0,0,4621,4623,3,30,15,0,4622,4621,1,0, + 0,0,4622,4623,1,0,0,0,4623,4624,1,0,0,0,4624,4737,3,652,326,0,4625, + 4628,3,676,338,0,4626,4628,3,678,339,0,4627,4625,1,0,0,0,4627,4626, + 1,0,0,0,4628,4629,1,0,0,0,4629,4630,5,390,0,0,4630,4631,5,197,0, + 0,4631,4737,1,0,0,0,4632,4644,5,278,0,0,4633,4634,5,3,0,0,4634,4635, + 5,280,0,0,4635,4636,5,243,0,0,4636,4637,5,387,0,0,4637,4645,3,652, + 326,0,4638,4639,5,280,0,0,4639,4640,5,243,0,0,4640,4641,3,652,326, + 0,4641,4642,5,387,0,0,4642,4643,3,652,326,0,4643,4645,1,0,0,0,4644, + 4633,1,0,0,0,4644,4638,1,0,0,0,4645,4737,1,0,0,0,4646,4647,5,58, + 0,0,4647,4648,5,348,0,0,4648,4649,3,652,326,0,4649,4650,5,395,0, + 0,4650,4651,3,652,326,0,4651,4652,5,383,0,0,4652,4653,3,698,349, + 0,4653,4654,5,99,0,0,4654,4655,3,700,350,0,4655,4737,1,0,0,0,4656, + 4657,5,9,0,0,4657,4658,5,348,0,0,4658,4659,3,652,326,0,4659,4660, + 5,395,0,0,4660,4677,3,652,326,0,4661,4662,5,383,0,0,4662,4663,3, + 698,349,0,4663,4664,5,99,0,0,4664,4665,3,700,350,0,4665,4678,1,0, + 0,0,4666,4667,5,4,0,0,4667,4671,5,341,0,0,4668,4669,5,101,0,0,4669, + 4671,5,139,0,0,4670,4666,1,0,0,0,4670,4668,1,0,0,0,4671,4675,1,0, + 0,0,4672,4673,5,246,0,0,4673,4676,3,696,348,0,4674,4676,5,362,0, + 0,4675,4672,1,0,0,0,4675,4674,1,0,0,0,4676,4678,1,0,0,0,4677,4661, + 1,0,0,0,4677,4670,1,0,0,0,4678,4737,1,0,0,0,4679,4680,5,101,0,0, + 4680,4681,5,348,0,0,4681,4682,3,652,326,0,4682,4683,5,395,0,0,4683, + 4684,3,652,326,0,4684,4737,1,0,0,0,4685,4686,5,58,0,0,4686,4687, + 5,246,0,0,4687,4688,3,652,326,0,4688,4689,5,395,0,0,4689,4690,3, + 696,348,0,4690,4691,5,387,0,0,4691,4692,3,704,352,0,4692,4737,1, + 0,0,0,4693,4694,5,9,0,0,4694,4695,5,246,0,0,4695,4696,3,652,326, + 0,4696,4697,5,395,0,0,4697,4705,3,696,348,0,4698,4699,5,304,0,0, + 4699,4706,3,704,352,0,4700,4701,5,363,0,0,4701,4706,5,294,0,0,4702, + 4703,7,48,0,0,4703,4704,5,348,0,0,4704,4706,3,652,326,0,4705,4698, + 1,0,0,0,4705,4700,1,0,0,0,4705,4702,1,0,0,0,4706,4737,1,0,0,0,4707, + 4708,5,101,0,0,4708,4709,5,246,0,0,4709,4710,3,652,326,0,4710,4711, + 5,395,0,0,4711,4712,3,696,348,0,4712,4737,1,0,0,0,4713,4714,7,49, + 0,0,4714,4715,3,666,333,0,4715,4716,5,200,0,0,4716,4717,5,426,0, + 0,4717,4718,5,154,0,0,4718,4722,3,652,326,0,4719,4720,5,341,0,0, + 4720,4723,3,696,348,0,4721,4723,5,362,0,0,4722,4719,1,0,0,0,4722, + 4721,1,0,0,0,4723,4727,1,0,0,0,4724,4725,5,387,0,0,4725,4726,5,229, + 0,0,4726,4728,5,431,0,0,4727,4724,1,0,0,0,4727,4728,1,0,0,0,4728, + 4737,1,0,0,0,4729,4730,5,101,0,0,4730,4731,3,666,333,0,4731,4732, + 5,200,0,0,4732,4733,5,426,0,0,4733,4734,5,154,0,0,4734,4735,3,652, + 326,0,4735,4737,1,0,0,0,4736,4571,1,0,0,0,4736,4588,1,0,0,0,4736, + 4618,1,0,0,0,4736,4627,1,0,0,0,4736,4632,1,0,0,0,4736,4646,1,0,0, + 0,4736,4656,1,0,0,0,4736,4679,1,0,0,0,4736,4685,1,0,0,0,4736,4693, + 1,0,0,0,4736,4707,1,0,0,0,4736,4713,1,0,0,0,4736,4729,1,0,0,0,4737, + 665,1,0,0,0,4738,4739,7,50,0,0,4739,667,1,0,0,0,4740,4741,5,259, + 0,0,4741,4742,5,405,0,0,4742,4748,5,431,0,0,4743,4744,5,83,0,0,4744, + 4745,5,246,0,0,4745,4746,5,405,0,0,4746,4748,3,696,348,0,4747,4740, + 1,0,0,0,4747,4743,1,0,0,0,4748,669,1,0,0,0,4749,4754,3,668,334,0, + 4750,4751,5,397,0,0,4751,4753,3,668,334,0,4752,4750,1,0,0,0,4753, + 4756,1,0,0,0,4754,4752,1,0,0,0,4754,4755,1,0,0,0,4755,671,1,0,0, + 0,4756,4754,1,0,0,0,4757,4761,5,259,0,0,4758,4759,5,83,0,0,4759, + 4761,5,246,0,0,4760,4757,1,0,0,0,4760,4758,1,0,0,0,4761,673,1,0, + 0,0,4762,4765,5,2,0,0,4763,4764,5,387,0,0,4764,4766,5,278,0,0,4765, + 4763,1,0,0,0,4765,4766,1,0,0,0,4766,675,1,0,0,0,4767,4768,7,51,0, + 0,4768,677,1,0,0,0,4769,4770,7,52,0,0,4770,679,1,0,0,0,4771,4772, + 7,53,0,0,4772,681,1,0,0,0,4773,4774,7,54,0,0,4774,683,1,0,0,0,4775, + 4776,7,55,0,0,4776,685,1,0,0,0,4777,4778,7,56,0,0,4778,687,1,0,0, + 0,4779,4780,7,57,0,0,4780,689,1,0,0,0,4781,4782,7,58,0,0,4782,691, + 1,0,0,0,4783,4784,7,59,0,0,4784,693,1,0,0,0,4785,4786,7,60,0,0,4786, + 695,1,0,0,0,4787,4792,3,652,326,0,4788,4789,5,395,0,0,4789,4791, + 3,652,326,0,4790,4788,1,0,0,0,4791,4794,1,0,0,0,4792,4790,1,0,0, + 0,4792,4793,1,0,0,0,4793,697,1,0,0,0,4794,4792,1,0,0,0,4795,4796, + 3,652,326,0,4796,4797,5,411,0,0,4797,4798,7,27,0,0,4798,699,1,0, + 0,0,4799,4804,5,176,0,0,4800,4801,5,211,0,0,4801,4802,5,341,0,0, + 4802,4804,3,696,348,0,4803,4799,1,0,0,0,4803,4800,1,0,0,0,4804,701, + 1,0,0,0,4805,4806,5,8,0,0,4806,4807,5,405,0,0,4807,4818,5,431,0, + 0,4808,4809,5,259,0,0,4809,4810,5,405,0,0,4810,4818,5,431,0,0,4811, + 4812,5,294,0,0,4812,4813,5,405,0,0,4813,4818,5,426,0,0,4814,4815, + 5,240,0,0,4815,4816,5,405,0,0,4816,4818,3,696,348,0,4817,4805,1, + 0,0,0,4817,4808,1,0,0,0,4817,4811,1,0,0,0,4817,4814,1,0,0,0,4818, + 703,1,0,0,0,4819,4824,3,702,351,0,4820,4821,5,397,0,0,4821,4823, + 3,702,351,0,4822,4820,1,0,0,0,4823,4826,1,0,0,0,4824,4822,1,0,0, + 0,4824,4825,1,0,0,0,4825,705,1,0,0,0,4826,4824,1,0,0,0,621,709,716, + 719,725,731,738,748,751,755,770,777,783,788,793,796,820,827,830, + 835,840,846,850,863,867,871,876,883,887,892,899,903,908,956,963, + 968,991,995,999,1002,1006,1011,1017,1021,1027,1029,1040,1044,1051, + 1059,1062,1067,1071,1074,1084,1092,1096,1099,1103,1107,1110,1115, + 1121,1126,1131,1135,1146,1148,1152,1162,1166,1172,1175,1182,1187, + 1195,1200,1204,1212,1217,1223,1229,1232,1235,1238,1247,1255,1260, + 1268,1275,1278,1281,1283,1294,1296,1299,1302,1305,1308,1311,1313, + 1325,1331,1339,1341,1351,1384,1389,1393,1397,1404,1411,1417,1421, + 1424,1431,1454,1459,1463,1471,1480,1487,1493,1500,1503,1509,1516, + 1524,1533,1542,1549,1569,1576,1578,1585,1595,1603,1607,1611,1624, + 1633,1649,1653,1658,1663,1666,1669,1672,1675,1678,1683,1692,1696, + 1703,1706,1709,1712,1724,1730,1756,1764,1768,1771,1774,1777,1780, + 1783,1786,1789,1798,1808,1811,1831,1837,1843,1846,1848,1855,1862, + 1875,1880,1889,1897,1905,1918,1931,1947,1951,1966,1972,1975,1978, + 1981,1984,1988,2003,2006,2017,2031,2065,2073,2078,2086,2091,2096, + 2103,2111,2119,2127,2132,2144,2148,2156,2165,2168,2172,2179,2185, + 2189,2195,2199,2211,2220,2231,2235,2242,2254,2264,2267,2274,2280, + 2284,2287,2290,2296,2300,2304,2309,2313,2317,2321,2329,2333,2337, + 2341,2345,2353,2357,2361,2369,2374,2379,2383,2387,2394,2403,2411, + 2423,2441,2444,2450,2476,2479,2485,2493,2501,2514,2521,2524,2527, + 2530,2533,2536,2539,2542,2545,2548,2551,2556,2559,2562,2565,2568, + 2571,2574,2577,2580,2583,2586,2588,2594,2598,2601,2604,2607,2610, + 2613,2620,2624,2627,2630,2633,2636,2639,2646,2649,2657,2661,2668, + 2670,2673,2678,2681,2685,2690,2696,2704,2712,2722,2725,2729,2733, + 2738,2745,2749,2751,2755,2762,2767,2780,2788,2807,2817,2830,2840, + 2844,2848,2854,2861,2868,2877,2884,2904,2907,2921,2936,2940,2960, + 2972,2978,2981,2984,2990,2996,3003,3011,3017,3021,3026,3029,3033, + 3040,3045,3050,3053,3055,3063,3071,3075,3079,3083,3100,3117,3124, + 3133,3138,3141,3144,3148,3163,3177,3180,3191,3195,3198,3201,3205, + 3210,3213,3216,3219,3222,3225,3231,3234,3237,3240,3243,3246,3249, + 3252,3255,3258,3262,3264,3270,3275,3278,3281,3284,3287,3293,3296, + 3299,3302,3305,3308,3311,3314,3317,3320,3324,3326,3328,3333,3338, + 3342,3346,3351,3356,3365,3375,3383,3395,3398,3404,3411,3418,3425, + 3432,3441,3445,3452,3457,3461,3465,3468,3471,3482,3486,3488,3491, + 3504,3507,3510,3522,3525,3532,3541,3546,3548,3550,3567,3570,3578, + 3581,3585,3588,3591,3594,3597,3609,3617,3624,3627,3634,3637,3642, + 3649,3657,3663,3668,3672,3677,3681,3688,3702,3705,3718,3728,3731, + 3740,3749,3752,3758,3761,3766,3769,3782,3788,3790,3800,3806,3809, + 3819,3824,3826,3842,3848,3850,3857,3864,3878,3884,3887,3890,3893, + 3902,3909,3915,3924,3928,3936,3946,3956,3961,3965,3971,3976,3986, + 3990,3993,3998,4001,4005,4010,4021,4023,4032,4055,4065,4068,4075, + 4078,4088,4095,4098,4100,4111,4121,4123,4132,4137,4146,4159,4163, + 4175,4179,4188,4207,4225,4237,4252,4256,4272,4279,4293,4298,4308, + 4310,4318,4326,4334,4342,4350,4358,4369,4373,4381,4397,4401,4406, + 4419,4428,4430,4439,4444,4450,4457,4462,4471,4479,4487,4495,4505, + 4510,4569,4575,4584,4586,4602,4610,4614,4616,4622,4627,4644,4670, + 4675,4677,4705,4722,4727,4736,4747,4754,4760,4765,4792,4803,4817, + 4824 ]; private static __ATN: antlr.ATN; @@ -39912,6 +40046,7 @@ export class ViewNameCreateContext extends antlr.ParserRuleContext { export class SubQuerySourceContext extends antlr.ParserRuleContext { + public _alias?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -40032,10 +40167,43 @@ export class PartitionTableFunctionSourceContext extends antlr.ParserRuleContext export class PartitionedTableFunctionContext extends antlr.ParserRuleContext { + public _alias?: Id_Context; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public atomPartitionedTableFunction(): AtomPartitionedTableFunctionContext { + return this.getRuleContext(0, AtomPartitionedTableFunctionContext)!; + } + public id_(): Id_Context | null { + return this.getRuleContext(0, Id_Context); + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_partitionedTableFunction; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterPartitionedTableFunction) { + listener.enterPartitionedTableFunction(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitPartitionedTableFunction) { + listener.exitPartitionedTableFunction(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitPartitionedTableFunction) { + return visitor.visitPartitionedTableFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomPartitionedTableFunctionContext extends antlr.ParserRuleContext { public _n?: Id_Context; public _ptfsrc?: PartitionTableFunctionSourceContext; public _spec?: PartitioningSpecContext; - public _alias?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -40060,14 +40228,8 @@ export class PartitionedTableFunctionContext extends antlr.ParserRuleContext { return this.getToken(HiveSqlParser.RPAREN, i); } } - public id_(): Id_Context[]; - public id_(i: number): Id_Context | null; - public id_(i?: number): Id_Context[] | Id_Context | null { - if (i === undefined) { - return this.getRuleContexts(Id_Context); - } - - return this.getRuleContext(i, Id_Context); + public id_(): Id_Context { + return this.getRuleContext(0, Id_Context)!; } public partitionTableFunctionSource(): PartitionTableFunctionSourceContext { return this.getRuleContext(0, PartitionTableFunctionSourceContext)!; @@ -40103,21 +40265,21 @@ export class PartitionedTableFunctionContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return HiveSqlParser.RULE_partitionedTableFunction; + return HiveSqlParser.RULE_atomPartitionedTableFunction; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterPartitionedTableFunction) { - listener.enterPartitionedTableFunction(this); + if(listener.enterAtomPartitionedTableFunction) { + listener.enterAtomPartitionedTableFunction(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitPartitionedTableFunction) { - listener.exitPartitionedTableFunction(this); + if(listener.exitAtomPartitionedTableFunction) { + listener.exitAtomPartitionedTableFunction(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitPartitionedTableFunction) { - return visitor.visitPartitionedTableFunction(this); + if (visitor.visitAtomPartitionedTableFunction) { + return visitor.visitAtomPartitionedTableFunction(this); } else { return visitor.visitChildren(this); } @@ -40215,33 +40377,55 @@ export class ValuesClauseContext extends antlr.ParserRuleContext { } -export class VirtualTableSourceContext extends antlr.ParserRuleContext { +export class AtomValuesClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public KW_TABLE(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_TABLE, 0)!; } - public LPAREN(): antlr.TerminalNode[]; - public LPAREN(i: number): antlr.TerminalNode | null; - public LPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.LPAREN); - } else { - return this.getToken(HiveSqlParser.LPAREN, i); - } + public LPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.LPAREN, 0)!; } public valuesClause(): ValuesClauseContext { return this.getRuleContext(0, ValuesClauseContext)!; } - public RPAREN(): antlr.TerminalNode[]; - public RPAREN(i: number): antlr.TerminalNode | null; - public RPAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.RPAREN); - } else { - return this.getToken(HiveSqlParser.RPAREN, i); - } + public RPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.RPAREN, 0)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_atomValuesClause; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterAtomValuesClause) { + listener.enterAtomValuesClause(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitAtomValuesClause) { + listener.exitAtomValuesClause(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitAtomValuesClause) { + return visitor.visitAtomValuesClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class VirtualTableSourceContext extends antlr.ParserRuleContext { + public _alias?: TableAliasContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public atomValuesClause(): AtomValuesClauseContext { + return this.getRuleContext(0, AtomValuesClauseContext)!; + } + public RPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.RPAREN, 0)!; } public tableAlias(): TableAliasContext { return this.getRuleContext(0, TableAliasContext)!; @@ -40249,6 +40433,9 @@ export class VirtualTableSourceContext extends antlr.ParserRuleContext { public KW_AS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_AS, 0); } + public LPAREN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.LPAREN, 0); + } public id_(): Id_Context[]; public id_(i: number): Id_Context | null; public id_(i?: number): Id_Context[] | Id_Context | null { @@ -40297,14 +40484,8 @@ export class SelectClauseContext extends antlr.ParserRuleContext { public KW_SELECT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_SELECT, 0); } - public selectItem(): SelectItemContext[]; - public selectItem(i: number): SelectItemContext | null; - public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SelectItemContext); - } - - return this.getRuleContext(i, SelectItemContext); + public selectList(): SelectListContext | null { + return this.getRuleContext(0, SelectListContext); } public KW_TRANSFORM(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TRANSFORM, 0); @@ -40315,15 +40496,6 @@ export class SelectClauseContext extends antlr.ParserRuleContext { public QUERY_HINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.QUERY_HINT, 0); } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.COMMA); - } else { - return this.getToken(HiveSqlParser.COMMA, i); - } - } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ALL, 0); } @@ -40434,27 +40606,64 @@ export class SelectTrfmClauseContext extends antlr.ParserRuleContext { } -export class SelectItemContext extends antlr.ParserRuleContext { +export class SelectListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableAllColumns(): TableAllColumnsContext | null { - return this.getRuleContext(0, TableAllColumnsContext); + public selectItem(): SelectItemContext[]; + public selectItem(i: number): SelectItemContext | null; + public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { + if (i === undefined) { + return this.getRuleContexts(SelectItemContext); + } + + return this.getRuleContext(i, SelectItemContext); } - public columnName(): ColumnNameContext | null { - return this.getRuleContext(0, ColumnNameContext); + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.COMMA); + } else { + return this.getToken(HiveSqlParser.COMMA, i); + } } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); + public override get ruleIndex(): number { + return HiveSqlParser.RULE_selectList; } - public id_(): Id_Context[]; - public id_(i: number): Id_Context | null; - public id_(i?: number): Id_Context[] | Id_Context | null { - if (i === undefined) { - return this.getRuleContexts(Id_Context); + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSelectList) { + listener.enterSelectList(this); } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSelectList) { + listener.exitSelectList(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); + } else { + return visitor.visitChildren(this); + } + } +} - return this.getRuleContext(i, Id_Context); + +export class SelectItemContext extends antlr.ParserRuleContext { + public _alias?: Id_Context; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); } public KW_AS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_AS, 0); @@ -40465,6 +40674,15 @@ export class SelectItemContext extends antlr.ParserRuleContext { public RPAREN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.RPAREN, 0); } + public id_(): Id_Context[]; + public id_(i: number): Id_Context | null; + public id_(i?: number): Id_Context[] | Id_Context | null { + if (i === undefined) { + return this.getRuleContexts(Id_Context); + } + + return this.getRuleContext(i, Id_Context); + } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -40497,6 +40715,66 @@ export class SelectItemContext extends antlr.ParserRuleContext { } +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_selectLiteralColumnName; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_selectExpressionColumnName; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TrfmClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index a9eb9d31..3fb660b0 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -258,12 +258,17 @@ import { SubQuerySourceContext } from "./HiveSqlParser.js"; import { PartitioningSpecContext } from "./HiveSqlParser.js"; import { PartitionTableFunctionSourceContext } from "./HiveSqlParser.js"; import { PartitionedTableFunctionContext } from "./HiveSqlParser.js"; +import { AtomPartitionedTableFunctionContext } from "./HiveSqlParser.js"; import { WhereClauseContext } from "./HiveSqlParser.js"; import { ValuesClauseContext } from "./HiveSqlParser.js"; +import { AtomValuesClauseContext } from "./HiveSqlParser.js"; import { VirtualTableSourceContext } from "./HiveSqlParser.js"; import { SelectClauseContext } from "./HiveSqlParser.js"; import { SelectTrfmClauseContext } from "./HiveSqlParser.js"; +import { SelectListContext } from "./HiveSqlParser.js"; import { SelectItemContext } from "./HiveSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./HiveSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./HiveSqlParser.js"; import { TrfmClauseContext } from "./HiveSqlParser.js"; import { SelectExpressionContext } from "./HiveSqlParser.js"; import { SelectExpressionListContext } from "./HiveSqlParser.js"; @@ -2873,6 +2878,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPartitionedTableFunction?: (ctx: PartitionedTableFunctionContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.atomPartitionedTableFunction`. + * @param ctx the parse tree + */ + enterAtomPartitionedTableFunction?: (ctx: AtomPartitionedTableFunctionContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.atomPartitionedTableFunction`. + * @param ctx the parse tree + */ + exitAtomPartitionedTableFunction?: (ctx: AtomPartitionedTableFunctionContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.whereClause`. * @param ctx the parse tree @@ -2893,6 +2908,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitValuesClause?: (ctx: ValuesClauseContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.atomValuesClause`. + * @param ctx the parse tree + */ + enterAtomValuesClause?: (ctx: AtomValuesClauseContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.atomValuesClause`. + * @param ctx the parse tree + */ + exitAtomValuesClause?: (ctx: AtomValuesClauseContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.virtualTableSource`. * @param ctx the parse tree @@ -2923,6 +2948,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectTrfmClause?: (ctx: SelectTrfmClauseContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.selectItem`. * @param ctx the parse tree @@ -2933,6 +2968,26 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectItem?: (ctx: SelectItemContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.trfmClause`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index 3451b83c..81023adc 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -258,12 +258,17 @@ import { SubQuerySourceContext } from "./HiveSqlParser.js"; import { PartitioningSpecContext } from "./HiveSqlParser.js"; import { PartitionTableFunctionSourceContext } from "./HiveSqlParser.js"; import { PartitionedTableFunctionContext } from "./HiveSqlParser.js"; +import { AtomPartitionedTableFunctionContext } from "./HiveSqlParser.js"; import { WhereClauseContext } from "./HiveSqlParser.js"; import { ValuesClauseContext } from "./HiveSqlParser.js"; +import { AtomValuesClauseContext } from "./HiveSqlParser.js"; import { VirtualTableSourceContext } from "./HiveSqlParser.js"; import { SelectClauseContext } from "./HiveSqlParser.js"; import { SelectTrfmClauseContext } from "./HiveSqlParser.js"; +import { SelectListContext } from "./HiveSqlParser.js"; import { SelectItemContext } from "./HiveSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./HiveSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./HiveSqlParser.js"; import { TrfmClauseContext } from "./HiveSqlParser.js"; import { SelectExpressionContext } from "./HiveSqlParser.js"; import { SelectExpressionListContext } from "./HiveSqlParser.js"; @@ -1872,6 +1877,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.atomPartitionedTableFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomPartitionedTableFunction?: (ctx: AtomPartitionedTableFunctionContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.whereClause`. * @param ctx the parse tree @@ -1884,6 +1895,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.atomValuesClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomValuesClause?: (ctx: AtomValuesClauseContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.virtualTableSource`. * @param ctx the parse tree @@ -1902,12 +1919,30 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.selectItem`. * @param ctx the parse tree * @return the visitor result */ visitSelectItem?: (ctx: SelectItemContext) => Result; + /** + * Visit a parse tree produced by `HiveSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `HiveSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.trfmClause`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index ff4fb0a6..8ab68275 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -720,6 +720,7 @@ queryTerm queryPrimary sortItem querySpecification +selectList whereClause havingClause groupBy @@ -728,6 +729,10 @@ groupingSet namedQuery setQuantifier selectItem +columnAlias +selectLiteralColumnName +selectExpressionColumnName +tableAllColumns relation joinType joinCriteria @@ -736,6 +741,7 @@ sampleType aliasedRelation columnAliases relationPrimary +atomSubQueryTableSource subQueryRelation unnest parenthesizedRelation @@ -744,6 +750,7 @@ expression booleanExpression predicate valueExpression +functionCallExpression primaryExpression stringLiteral comparisonOperator @@ -775,4 +782,4 @@ nonReserved atn: -[4, 1, 289, 2783, 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, 1, 0, 5, 0, 380, 8, 0, 10, 0, 12, 0, 383, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 389, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 413, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 426, 8, 4, 1, 5, 1, 5, 3, 5, 430, 8, 5, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 441, 8, 5, 10, 5, 12, 5, 444, 9, 5, 1, 5, 1, 5, 3, 5, 448, 8, 5, 1, 5, 1, 5, 3, 5, 452, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 458, 8, 5, 3, 5, 460, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 465, 8, 5, 1, 6, 1, 6, 3, 6, 469, 8, 6, 1, 6, 1, 6, 3, 6, 473, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 480, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 485, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 491, 8, 7, 1, 7, 1, 7, 3, 7, 495, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 502, 8, 7, 10, 7, 12, 7, 505, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 511, 8, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 520, 8, 7, 3, 7, 522, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 527, 8, 7, 1, 7, 3, 7, 530, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 537, 8, 7, 1, 7, 1, 7, 3, 7, 541, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 546, 8, 8, 1, 8, 1, 8, 3, 8, 550, 8, 8, 1, 8, 3, 8, 553, 8, 8, 1, 8, 1, 8, 3, 8, 557, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 565, 8, 9, 1, 9, 1, 9, 3, 9, 569, 8, 9, 1, 9, 1, 9, 3, 9, 573, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 581, 8, 11, 1, 11, 1, 11, 3, 11, 585, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 592, 8, 11, 10, 11, 12, 11, 595, 9, 11, 3, 11, 597, 8, 11, 1, 11, 3, 11, 600, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 606, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 613, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 624, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 629, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 634, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 639, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 644, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 651, 8, 12, 10, 12, 12, 12, 654, 9, 12, 3, 12, 656, 8, 12, 1, 12, 3, 12, 659, 8, 12, 1, 12, 1, 12, 3, 12, 663, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 689, 8, 13, 1, 14, 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, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 715, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 724, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 734, 8, 16, 1, 16, 3, 16, 737, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 751, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 769, 8, 20, 3, 20, 771, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 778, 8, 20, 10, 20, 12, 20, 781, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 791, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 800, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 807, 8, 22, 1, 22, 1, 22, 3, 22, 811, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 818, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 824, 8, 23, 1, 23, 3, 23, 827, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 832, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 839, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 853, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 866, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 871, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 876, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 882, 8, 27, 1, 27, 1, 27, 1, 27, 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, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 918, 8, 32, 1, 32, 3, 32, 921, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 927, 8, 33, 1, 33, 3, 33, 930, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 936, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 942, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 954, 8, 35, 3, 35, 956, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 967, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 975, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 980, 8, 38, 1, 38, 1, 38, 3, 38, 984, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 989, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 996, 8, 40, 1, 40, 1, 40, 3, 40, 1000, 8, 40, 1, 41, 1, 41, 3, 41, 1004, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1010, 8, 41, 1, 42, 1, 42, 3, 42, 1014, 8, 42, 1, 42, 1, 42, 3, 42, 1018, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1025, 8, 42, 10, 42, 12, 42, 1028, 9, 42, 3, 42, 1030, 8, 42, 1, 42, 3, 42, 1033, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1041, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1055, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1062, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1075, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1081, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1086, 8, 49, 1, 49, 3, 49, 1089, 8, 49, 1, 50, 3, 50, 1092, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1097, 8, 50, 1, 50, 1, 50, 3, 50, 1101, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1108, 8, 50, 10, 50, 12, 50, 1111, 9, 50, 1, 50, 1, 50, 3, 50, 1115, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1121, 8, 51, 1, 52, 1, 52, 3, 52, 1125, 8, 52, 1, 52, 1, 52, 3, 52, 1129, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1134, 8, 53, 1, 53, 3, 53, 1137, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1143, 8, 53, 10, 53, 12, 53, 1146, 9, 53, 3, 53, 1148, 8, 53, 1, 53, 3, 53, 1151, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1161, 8, 54, 10, 54, 12, 54, 1164, 9, 54, 3, 54, 1166, 8, 54, 1, 54, 3, 54, 1169, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1174, 8, 55, 1, 55, 1, 55, 3, 55, 1178, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1194, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1199, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1204, 8, 57, 10, 57, 12, 57, 1207, 9, 57, 3, 57, 1209, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1215, 8, 58, 1, 58, 3, 58, 1218, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1223, 8, 58, 10, 58, 12, 58, 1226, 9, 58, 3, 58, 1228, 8, 58, 1, 59, 1, 59, 3, 59, 1232, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1237, 8, 59, 1, 59, 3, 59, 1240, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1245, 8, 59, 10, 59, 12, 59, 1248, 9, 59, 3, 59, 1250, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1274, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1288, 8, 65, 1, 65, 1, 65, 3, 65, 1292, 8, 65, 1, 66, 1, 66, 3, 66, 1296, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1316, 8, 68, 3, 68, 1318, 8, 68, 3, 68, 1320, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1329, 8, 69, 3, 69, 1331, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1340, 8, 70, 3, 70, 1342, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1351, 8, 71, 3, 71, 1353, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1358, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1367, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1376, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1385, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1396, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1402, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1407, 8, 78, 1, 78, 3, 78, 1410, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1423, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1433, 8, 80, 1, 80, 1, 80, 3, 80, 1437, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1442, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1451, 8, 82, 10, 82, 12, 82, 1454, 9, 82, 1, 82, 1, 82, 3, 82, 1458, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1489, 8, 93, 10, 93, 12, 93, 1492, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1497, 8, 94, 10, 94, 12, 94, 1500, 9, 94, 1, 95, 1, 95, 3, 95, 1504, 8, 95, 1, 96, 1, 96, 3, 96, 1508, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 1514, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1519, 8, 99, 1, 99, 3, 99, 1522, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1527, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1532, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1537, 8, 99, 1, 99, 1, 99, 3, 99, 1541, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1550, 8, 99, 1, 99, 3, 99, 1553, 8, 99, 1, 99, 1, 99, 3, 99, 1557, 8, 99, 1, 100, 1, 100, 1, 100, 5, 100, 1562, 8, 100, 10, 100, 12, 100, 1565, 9, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1573, 8, 102, 1, 102, 1, 102, 3, 102, 1577, 8, 102, 5, 102, 1579, 8, 102, 10, 102, 12, 102, 1582, 9, 102, 1, 102, 1, 102, 1, 103, 1, 103, 3, 103, 1588, 8, 103, 1, 104, 3, 104, 1591, 8, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1599, 8, 105, 10, 105, 12, 105, 1602, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1608, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1613, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1618, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1623, 8, 106, 1, 106, 1, 106, 5, 106, 1627, 8, 106, 10, 106, 12, 106, 1630, 9, 106, 3, 106, 1632, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1641, 8, 107, 1, 107, 3, 107, 1644, 8, 107, 1, 107, 3, 107, 1647, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1653, 8, 108, 1, 109, 1, 109, 1, 109, 3, 109, 1658, 8, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1666, 8, 111, 10, 111, 12, 111, 1669, 9, 111, 3, 111, 1671, 8, 111, 1, 111, 3, 111, 1674, 8, 111, 1, 111, 1, 111, 3, 111, 1678, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 5, 113, 1686, 8, 113, 10, 113, 12, 113, 1689, 9, 113, 3, 113, 1691, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1697, 8, 114, 1, 114, 1, 114, 5, 114, 1701, 8, 114, 10, 114, 12, 114, 1704, 9, 114, 3, 114, 1706, 8, 114, 1, 115, 3, 115, 1709, 8, 115, 1, 115, 1, 115, 3, 115, 1713, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1723, 8, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 5, 119, 1732, 8, 119, 10, 119, 12, 119, 1735, 9, 119, 1, 119, 1, 119, 3, 119, 1739, 8, 119, 1, 119, 3, 119, 1742, 8, 119, 1, 120, 1, 120, 3, 120, 1746, 8, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 1753, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1761, 8, 121, 10, 121, 12, 121, 1764, 9, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1775, 8, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1781, 8, 122, 3, 122, 1783, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1792, 8, 123, 1, 123, 3, 123, 1795, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1802, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1812, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1818, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1824, 8, 127, 10, 127, 12, 127, 1827, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 1835, 8, 128, 10, 128, 12, 128, 1838, 9, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 5, 129, 1845, 8, 129, 10, 129, 12, 129, 1848, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1858, 8, 130, 3, 130, 1860, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1866, 8, 130, 1, 131, 1, 131, 1, 131, 3, 131, 1871, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1879, 8, 132, 10, 132, 12, 132, 1882, 9, 132, 3, 132, 1884, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1890, 8, 132, 3, 132, 1892, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1900, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1906, 8, 133, 1, 133, 5, 133, 1909, 8, 133, 10, 133, 12, 133, 1912, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1921, 8, 134, 10, 134, 12, 134, 1924, 9, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1930, 8, 134, 1, 135, 1, 135, 3, 135, 1934, 8, 135, 1, 135, 1, 135, 3, 135, 1938, 8, 135, 1, 136, 1, 136, 3, 136, 1942, 8, 136, 1, 136, 3, 136, 1945, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1950, 8, 136, 10, 136, 12, 136, 1953, 9, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1959, 8, 136, 10, 136, 12, 136, 1962, 9, 136, 3, 136, 1964, 8, 136, 1, 136, 3, 136, 1967, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1972, 8, 136, 1, 136, 3, 136, 1975, 8, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 3, 139, 1984, 8, 139, 1, 139, 1, 139, 1, 139, 5, 139, 1989, 8, 139, 10, 139, 12, 139, 1992, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 2000, 8, 141, 10, 141, 12, 141, 2003, 9, 141, 3, 141, 2005, 8, 141, 1, 141, 1, 141, 3, 141, 2009, 8, 141, 1, 142, 1, 142, 3, 142, 2013, 8, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2022, 8, 144, 1, 144, 3, 144, 2025, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2032, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2046, 8, 145, 5, 145, 2048, 8, 145, 10, 145, 12, 145, 2051, 9, 145, 1, 146, 3, 146, 2054, 8, 146, 1, 146, 1, 146, 3, 146, 2058, 8, 146, 1, 146, 1, 146, 3, 146, 2062, 8, 146, 1, 146, 1, 146, 3, 146, 2066, 8, 146, 1, 146, 1, 146, 3, 146, 2070, 8, 146, 1, 146, 1, 146, 3, 146, 2074, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2084, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 2093, 8, 147, 10, 147, 12, 147, 2096, 9, 147, 1, 147, 1, 147, 3, 147, 2100, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2113, 8, 148, 3, 148, 2115, 8, 148, 1, 149, 1, 149, 1, 150, 1, 150, 3, 150, 2121, 8, 150, 1, 150, 1, 150, 3, 150, 2125, 8, 150, 3, 150, 2127, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 2133, 8, 151, 10, 151, 12, 151, 2136, 9, 151, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2142, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2147, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2158, 8, 154, 10, 154, 12, 154, 2161, 9, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2166, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 3, 156, 2174, 8, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2181, 8, 158, 1, 158, 1, 158, 3, 158, 2185, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2193, 8, 158, 10, 158, 12, 158, 2196, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2206, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2214, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 2221, 8, 159, 10, 159, 12, 159, 2224, 9, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2229, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2234, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2240, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2246, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2251, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2256, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2262, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 2273, 8, 160, 10, 160, 12, 160, 2276, 9, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2302, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2308, 8, 161, 5, 161, 2310, 8, 161, 10, 161, 12, 161, 2313, 9, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2322, 8, 161, 10, 161, 12, 161, 2325, 9, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2334, 8, 161, 1, 161, 3, 161, 2337, 8, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2342, 8, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2347, 8, 161, 10, 161, 12, 161, 2350, 9, 161, 3, 161, 2352, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2359, 8, 161, 10, 161, 12, 161, 2362, 9, 161, 3, 161, 2364, 8, 161, 1, 161, 1, 161, 3, 161, 2368, 8, 161, 1, 161, 3, 161, 2371, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2381, 8, 161, 10, 161, 12, 161, 2384, 9, 161, 3, 161, 2386, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 4, 161, 2403, 8, 161, 11, 161, 12, 161, 2404, 1, 161, 1, 161, 3, 161, 2409, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 4, 161, 2415, 8, 161, 11, 161, 12, 161, 2416, 1, 161, 1, 161, 3, 161, 2421, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2444, 8, 161, 10, 161, 12, 161, 2447, 9, 161, 3, 161, 2449, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2458, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2464, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2470, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2476, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2487, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2496, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2516, 8, 161, 10, 161, 12, 161, 2519, 9, 161, 3, 161, 2521, 8, 161, 1, 161, 3, 161, 2524, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2534, 8, 161, 10, 161, 12, 161, 2537, 9, 161, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2543, 8, 162, 3, 162, 2545, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2567, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2594, 8, 169, 10, 169, 12, 169, 2597, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2603, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2609, 8, 169, 10, 169, 12, 169, 2612, 9, 169, 1, 169, 1, 169, 3, 169, 2616, 8, 169, 3, 169, 2618, 8, 169, 1, 169, 1, 169, 5, 169, 2622, 8, 169, 10, 169, 12, 169, 2625, 9, 169, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 2631, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2637, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 5, 175, 2652, 8, 175, 10, 175, 12, 175, 2655, 9, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2662, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 2669, 8, 176, 10, 176, 12, 176, 2672, 9, 176, 3, 176, 2674, 8, 176, 1, 176, 3, 176, 2677, 8, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2697, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2708, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2715, 8, 179, 1, 180, 1, 180, 1, 180, 5, 180, 2720, 8, 180, 10, 180, 12, 180, 2723, 9, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2736, 8, 181, 3, 181, 2738, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 5, 183, 2745, 8, 183, 10, 183, 12, 183, 2748, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2756, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2763, 8, 185, 1, 186, 3, 186, 2766, 8, 186, 1, 186, 1, 186, 3, 186, 2770, 8, 186, 1, 186, 1, 186, 3, 186, 2774, 8, 186, 1, 186, 3, 186, 2777, 8, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 10, 779, 1452, 1628, 1667, 1687, 1702, 1733, 1762, 1836, 2311, 6, 266, 290, 316, 320, 322, 338, 189, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3100, 0, 381, 1, 0, 0, 0, 2, 386, 1, 0, 0, 0, 4, 412, 1, 0, 0, 0, 6, 414, 1, 0, 0, 0, 8, 425, 1, 0, 0, 0, 10, 427, 1, 0, 0, 0, 12, 466, 1, 0, 0, 0, 14, 488, 1, 0, 0, 0, 16, 542, 1, 0, 0, 0, 18, 561, 1, 0, 0, 0, 20, 574, 1, 0, 0, 0, 22, 578, 1, 0, 0, 0, 24, 640, 1, 0, 0, 0, 26, 688, 1, 0, 0, 0, 28, 690, 1, 0, 0, 0, 30, 698, 1, 0, 0, 0, 32, 718, 1, 0, 0, 0, 34, 738, 1, 0, 0, 0, 36, 745, 1, 0, 0, 0, 38, 754, 1, 0, 0, 0, 40, 762, 1, 0, 0, 0, 42, 784, 1, 0, 0, 0, 44, 794, 1, 0, 0, 0, 46, 812, 1, 0, 0, 0, 48, 833, 1, 0, 0, 0, 50, 854, 1, 0, 0, 0, 52, 860, 1, 0, 0, 0, 54, 877, 1, 0, 0, 0, 56, 886, 1, 0, 0, 0, 58, 893, 1, 0, 0, 0, 60, 901, 1, 0, 0, 0, 62, 908, 1, 0, 0, 0, 64, 915, 1, 0, 0, 0, 66, 924, 1, 0, 0, 0, 68, 935, 1, 0, 0, 0, 70, 937, 1, 0, 0, 0, 72, 957, 1, 0, 0, 0, 74, 974, 1, 0, 0, 0, 76, 976, 1, 0, 0, 0, 78, 985, 1, 0, 0, 0, 80, 992, 1, 0, 0, 0, 82, 1001, 1, 0, 0, 0, 84, 1011, 1, 0, 0, 0, 86, 1034, 1, 0, 0, 0, 88, 1040, 1, 0, 0, 0, 90, 1042, 1, 0, 0, 0, 92, 1049, 1, 0, 0, 0, 94, 1061, 1, 0, 0, 0, 96, 1063, 1, 0, 0, 0, 98, 1070, 1, 0, 0, 0, 100, 1091, 1, 0, 0, 0, 102, 1120, 1, 0, 0, 0, 104, 1122, 1, 0, 0, 0, 106, 1130, 1, 0, 0, 0, 108, 1152, 1, 0, 0, 0, 110, 1170, 1, 0, 0, 0, 112, 1193, 1, 0, 0, 0, 114, 1195, 1, 0, 0, 0, 116, 1210, 1, 0, 0, 0, 118, 1229, 1, 0, 0, 0, 120, 1251, 1, 0, 0, 0, 122, 1256, 1, 0, 0, 0, 124, 1261, 1, 0, 0, 0, 126, 1266, 1, 0, 0, 0, 128, 1271, 1, 0, 0, 0, 130, 1278, 1, 0, 0, 0, 132, 1293, 1, 0, 0, 0, 134, 1299, 1, 0, 0, 0, 136, 1319, 1, 0, 0, 0, 138, 1321, 1, 0, 0, 0, 140, 1332, 1, 0, 0, 0, 142, 1343, 1, 0, 0, 0, 144, 1357, 1, 0, 0, 0, 146, 1359, 1, 0, 0, 0, 148, 1368, 1, 0, 0, 0, 150, 1377, 1, 0, 0, 0, 152, 1386, 1, 0, 0, 0, 154, 1389, 1, 0, 0, 0, 156, 1397, 1, 0, 0, 0, 158, 1413, 1, 0, 0, 0, 160, 1417, 1, 0, 0, 0, 162, 1441, 1, 0, 0, 0, 164, 1443, 1, 0, 0, 0, 166, 1459, 1, 0, 0, 0, 168, 1462, 1, 0, 0, 0, 170, 1466, 1, 0, 0, 0, 172, 1469, 1, 0, 0, 0, 174, 1473, 1, 0, 0, 0, 176, 1475, 1, 0, 0, 0, 178, 1477, 1, 0, 0, 0, 180, 1479, 1, 0, 0, 0, 182, 1481, 1, 0, 0, 0, 184, 1483, 1, 0, 0, 0, 186, 1485, 1, 0, 0, 0, 188, 1493, 1, 0, 0, 0, 190, 1503, 1, 0, 0, 0, 192, 1507, 1, 0, 0, 0, 194, 1509, 1, 0, 0, 0, 196, 1513, 1, 0, 0, 0, 198, 1518, 1, 0, 0, 0, 200, 1558, 1, 0, 0, 0, 202, 1566, 1, 0, 0, 0, 204, 1570, 1, 0, 0, 0, 206, 1585, 1, 0, 0, 0, 208, 1590, 1, 0, 0, 0, 210, 1594, 1, 0, 0, 0, 212, 1603, 1, 0, 0, 0, 214, 1633, 1, 0, 0, 0, 216, 1648, 1, 0, 0, 0, 218, 1654, 1, 0, 0, 0, 220, 1659, 1, 0, 0, 0, 222, 1661, 1, 0, 0, 0, 224, 1679, 1, 0, 0, 0, 226, 1682, 1, 0, 0, 0, 228, 1692, 1, 0, 0, 0, 230, 1712, 1, 0, 0, 0, 232, 1722, 1, 0, 0, 0, 234, 1724, 1, 0, 0, 0, 236, 1726, 1, 0, 0, 0, 238, 1741, 1, 0, 0, 0, 240, 1743, 1, 0, 0, 0, 242, 1750, 1, 0, 0, 0, 244, 1782, 1, 0, 0, 0, 246, 1794, 1, 0, 0, 0, 248, 1801, 1, 0, 0, 0, 250, 1811, 1, 0, 0, 0, 252, 1813, 1, 0, 0, 0, 254, 1819, 1, 0, 0, 0, 256, 1830, 1, 0, 0, 0, 258, 1841, 1, 0, 0, 0, 260, 1849, 1, 0, 0, 0, 262, 1867, 1, 0, 0, 0, 264, 1872, 1, 0, 0, 0, 266, 1893, 1, 0, 0, 0, 268, 1929, 1, 0, 0, 0, 270, 1931, 1, 0, 0, 0, 272, 1939, 1, 0, 0, 0, 274, 1976, 1, 0, 0, 0, 276, 1979, 1, 0, 0, 0, 278, 1983, 1, 0, 0, 0, 280, 1993, 1, 0, 0, 0, 282, 2008, 1, 0, 0, 0, 284, 2010, 1, 0, 0, 0, 286, 2017, 1, 0, 0, 0, 288, 2031, 1, 0, 0, 0, 290, 2033, 1, 0, 0, 0, 292, 2083, 1, 0, 0, 0, 294, 2099, 1, 0, 0, 0, 296, 2101, 1, 0, 0, 0, 298, 2116, 1, 0, 0, 0, 300, 2118, 1, 0, 0, 0, 302, 2128, 1, 0, 0, 0, 304, 2146, 1, 0, 0, 0, 306, 2148, 1, 0, 0, 0, 308, 2152, 1, 0, 0, 0, 310, 2167, 1, 0, 0, 0, 312, 2173, 1, 0, 0, 0, 314, 2175, 1, 0, 0, 0, 316, 2184, 1, 0, 0, 0, 318, 2255, 1, 0, 0, 0, 320, 2261, 1, 0, 0, 0, 322, 2523, 1, 0, 0, 0, 324, 2544, 1, 0, 0, 0, 326, 2546, 1, 0, 0, 0, 328, 2548, 1, 0, 0, 0, 330, 2550, 1, 0, 0, 0, 332, 2566, 1, 0, 0, 0, 334, 2568, 1, 0, 0, 0, 336, 2570, 1, 0, 0, 0, 338, 2617, 1, 0, 0, 0, 340, 2626, 1, 0, 0, 0, 342, 2630, 1, 0, 0, 0, 344, 2636, 1, 0, 0, 0, 346, 2638, 1, 0, 0, 0, 348, 2643, 1, 0, 0, 0, 350, 2648, 1, 0, 0, 0, 352, 2656, 1, 0, 0, 0, 354, 2696, 1, 0, 0, 0, 356, 2707, 1, 0, 0, 0, 358, 2714, 1, 0, 0, 0, 360, 2716, 1, 0, 0, 0, 362, 2737, 1, 0, 0, 0, 364, 2739, 1, 0, 0, 0, 366, 2741, 1, 0, 0, 0, 368, 2755, 1, 0, 0, 0, 370, 2762, 1, 0, 0, 0, 372, 2776, 1, 0, 0, 0, 374, 2778, 1, 0, 0, 0, 376, 2780, 1, 0, 0, 0, 378, 380, 3, 2, 1, 0, 379, 378, 1, 0, 0, 0, 380, 383, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 385, 5, 0, 0, 1, 385, 1, 1, 0, 0, 0, 386, 388, 3, 4, 2, 0, 387, 389, 5, 262, 0, 0, 388, 387, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 3, 1, 0, 0, 0, 390, 413, 3, 208, 104, 0, 391, 413, 3, 6, 3, 0, 392, 413, 3, 8, 4, 0, 393, 413, 3, 26, 13, 0, 394, 413, 3, 64, 32, 0, 395, 413, 3, 66, 33, 0, 396, 413, 3, 68, 34, 0, 397, 413, 3, 74, 37, 0, 398, 413, 3, 88, 44, 0, 399, 413, 3, 94, 47, 0, 400, 413, 3, 100, 50, 0, 401, 413, 3, 102, 51, 0, 402, 413, 3, 108, 54, 0, 403, 413, 3, 110, 55, 0, 404, 413, 3, 112, 56, 0, 405, 413, 3, 144, 72, 0, 406, 413, 3, 152, 76, 0, 407, 413, 3, 154, 77, 0, 408, 413, 3, 156, 78, 0, 409, 413, 3, 158, 79, 0, 410, 413, 3, 160, 80, 0, 411, 413, 3, 162, 81, 0, 412, 390, 1, 0, 0, 0, 412, 391, 1, 0, 0, 0, 412, 392, 1, 0, 0, 0, 412, 393, 1, 0, 0, 0, 412, 394, 1, 0, 0, 0, 412, 395, 1, 0, 0, 0, 412, 396, 1, 0, 0, 0, 412, 397, 1, 0, 0, 0, 412, 398, 1, 0, 0, 0, 412, 399, 1, 0, 0, 0, 412, 400, 1, 0, 0, 0, 412, 401, 1, 0, 0, 0, 412, 402, 1, 0, 0, 0, 412, 403, 1, 0, 0, 0, 412, 404, 1, 0, 0, 0, 412, 405, 1, 0, 0, 0, 412, 406, 1, 0, 0, 0, 412, 407, 1, 0, 0, 0, 412, 408, 1, 0, 0, 0, 412, 409, 1, 0, 0, 0, 412, 410, 1, 0, 0, 0, 412, 411, 1, 0, 0, 0, 413, 5, 1, 0, 0, 0, 414, 415, 5, 203, 0, 0, 415, 416, 3, 184, 92, 0, 416, 7, 1, 0, 0, 0, 417, 426, 3, 18, 9, 0, 418, 426, 3, 20, 10, 0, 419, 426, 3, 22, 11, 0, 420, 426, 3, 24, 12, 0, 421, 426, 3, 16, 8, 0, 422, 426, 3, 14, 7, 0, 423, 426, 3, 12, 6, 0, 424, 426, 3, 10, 5, 0, 425, 417, 1, 0, 0, 0, 425, 418, 1, 0, 0, 0, 425, 419, 1, 0, 0, 0, 425, 420, 1, 0, 0, 0, 425, 421, 1, 0, 0, 0, 425, 422, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 9, 1, 0, 0, 0, 427, 429, 5, 37, 0, 0, 428, 430, 5, 19, 0, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 433, 5, 188, 0, 0, 432, 434, 3, 172, 86, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 451, 3, 174, 87, 0, 436, 437, 5, 265, 0, 0, 437, 442, 3, 218, 109, 0, 438, 439, 5, 263, 0, 0, 439, 441, 3, 218, 109, 0, 440, 438, 1, 0, 0, 0, 441, 444, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 447, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 445, 446, 5, 263, 0, 0, 446, 448, 3, 212, 106, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 5, 266, 0, 0, 450, 452, 1, 0, 0, 0, 451, 436, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 459, 1, 0, 0, 0, 453, 454, 5, 17, 0, 0, 454, 457, 5, 26, 0, 0, 455, 458, 3, 302, 151, 0, 456, 458, 3, 256, 128, 0, 457, 455, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 460, 1, 0, 0, 0, 459, 453, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 464, 3, 198, 99, 0, 462, 463, 5, 9, 0, 0, 463, 465, 3, 208, 104, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 11, 1, 0, 0, 0, 466, 468, 5, 37, 0, 0, 467, 469, 5, 19, 0, 0, 468, 467, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 5, 188, 0, 0, 471, 473, 3, 172, 86, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 3, 174, 87, 0, 475, 479, 5, 115, 0, 0, 476, 480, 3, 186, 93, 0, 477, 478, 5, 147, 0, 0, 478, 480, 3, 324, 162, 0, 479, 476, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 484, 1, 0, 0, 0, 481, 482, 5, 17, 0, 0, 482, 483, 5, 26, 0, 0, 483, 485, 3, 256, 128, 0, 484, 481, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 3, 198, 99, 0, 487, 13, 1, 0, 0, 0, 488, 490, 5, 37, 0, 0, 489, 491, 5, 19, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 5, 188, 0, 0, 493, 495, 3, 172, 86, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 514, 3, 174, 87, 0, 497, 498, 5, 265, 0, 0, 498, 503, 3, 220, 110, 0, 499, 500, 5, 263, 0, 0, 500, 502, 3, 220, 110, 0, 501, 499, 1, 0, 0, 0, 502, 505, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 510, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 506, 507, 5, 263, 0, 0, 507, 508, 5, 150, 0, 0, 508, 509, 5, 110, 0, 0, 509, 511, 3, 302, 151, 0, 510, 506, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 5, 266, 0, 0, 513, 515, 1, 0, 0, 0, 514, 497, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 521, 1, 0, 0, 0, 516, 517, 5, 150, 0, 0, 517, 519, 5, 110, 0, 0, 518, 520, 3, 302, 151, 0, 519, 518, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 1, 0, 0, 0, 521, 516, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 526, 1, 0, 0, 0, 523, 524, 5, 145, 0, 0, 524, 525, 5, 26, 0, 0, 525, 527, 3, 238, 119, 0, 526, 523, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 529, 1, 0, 0, 0, 528, 530, 3, 224, 112, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 23, 0, 0, 532, 533, 5, 9, 0, 0, 533, 536, 5, 111, 0, 0, 534, 535, 5, 25, 0, 0, 535, 537, 3, 254, 127, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 539, 5, 9, 0, 0, 539, 541, 3, 208, 104, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 15, 1, 0, 0, 0, 542, 543, 5, 37, 0, 0, 543, 545, 5, 212, 0, 0, 544, 546, 3, 172, 86, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 549, 3, 178, 89, 0, 548, 550, 3, 204, 102, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 552, 1, 0, 0, 0, 551, 553, 3, 224, 112, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 556, 1, 0, 0, 0, 554, 555, 5, 25, 0, 0, 555, 557, 3, 254, 127, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 5, 9, 0, 0, 559, 560, 3, 208, 104, 0, 560, 17, 1, 0, 0, 0, 561, 562, 5, 37, 0, 0, 562, 564, 7, 0, 0, 0, 563, 565, 3, 172, 86, 0, 564, 563, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 568, 3, 176, 88, 0, 567, 569, 3, 224, 112, 0, 568, 567, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 572, 1, 0, 0, 0, 570, 571, 5, 24, 0, 0, 571, 573, 3, 324, 162, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 19, 1, 0, 0, 0, 574, 575, 5, 37, 0, 0, 575, 576, 5, 166, 0, 0, 576, 577, 3, 370, 185, 0, 577, 21, 1, 0, 0, 0, 578, 580, 5, 37, 0, 0, 579, 581, 5, 12, 0, 0, 580, 579, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 5, 84, 0, 0, 583, 585, 3, 172, 86, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 599, 3, 180, 90, 0, 587, 596, 5, 265, 0, 0, 588, 593, 3, 338, 169, 0, 589, 590, 5, 263, 0, 0, 590, 592, 3, 338, 169, 0, 591, 589, 1, 0, 0, 0, 592, 595, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 596, 588, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 5, 266, 0, 0, 599, 587, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 160, 0, 0, 602, 605, 3, 338, 169, 0, 603, 604, 5, 102, 0, 0, 604, 606, 3, 338, 169, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 24, 0, 0, 608, 612, 5, 274, 0, 0, 609, 610, 5, 104, 0, 0, 610, 611, 5, 249, 0, 0, 611, 613, 5, 274, 0, 0, 612, 609, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 206, 0, 0, 615, 616, 5, 249, 0, 0, 616, 617, 5, 274, 0, 0, 617, 618, 5, 126, 0, 0, 618, 619, 5, 249, 0, 0, 619, 623, 5, 274, 0, 0, 620, 621, 5, 18, 0, 0, 621, 622, 5, 249, 0, 0, 622, 624, 5, 274, 0, 0, 623, 620, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 628, 1, 0, 0, 0, 625, 626, 5, 20, 0, 0, 626, 627, 5, 249, 0, 0, 627, 629, 5, 274, 0, 0, 628, 625, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 633, 1, 0, 0, 0, 630, 631, 5, 187, 0, 0, 631, 632, 5, 249, 0, 0, 632, 634, 5, 274, 0, 0, 633, 630, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 638, 1, 0, 0, 0, 635, 636, 5, 76, 0, 0, 636, 637, 5, 249, 0, 0, 637, 639, 5, 274, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 23, 1, 0, 0, 0, 640, 641, 5, 37, 0, 0, 641, 643, 5, 84, 0, 0, 642, 644, 3, 172, 86, 0, 643, 642, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 658, 3, 180, 90, 0, 646, 655, 5, 265, 0, 0, 647, 652, 3, 338, 169, 0, 648, 649, 5, 263, 0, 0, 649, 651, 3, 338, 169, 0, 650, 648, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 656, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 655, 647, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 5, 266, 0, 0, 658, 646, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 662, 1, 0, 0, 0, 660, 661, 5, 160, 0, 0, 661, 663, 3, 338, 169, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 5, 24, 0, 0, 665, 666, 5, 274, 0, 0, 666, 667, 5, 186, 0, 0, 667, 668, 5, 249, 0, 0, 668, 669, 3, 324, 162, 0, 669, 25, 1, 0, 0, 0, 670, 689, 3, 28, 14, 0, 671, 689, 3, 62, 31, 0, 672, 689, 3, 60, 30, 0, 673, 689, 3, 58, 29, 0, 674, 689, 3, 54, 27, 0, 675, 689, 3, 56, 28, 0, 676, 689, 3, 52, 26, 0, 677, 689, 3, 48, 24, 0, 678, 689, 3, 50, 25, 0, 679, 689, 3, 46, 23, 0, 680, 689, 3, 44, 22, 0, 681, 689, 3, 42, 21, 0, 682, 689, 3, 40, 20, 0, 683, 689, 3, 34, 17, 0, 684, 689, 3, 30, 15, 0, 685, 689, 3, 32, 16, 0, 686, 689, 3, 36, 18, 0, 687, 689, 3, 38, 19, 0, 688, 670, 1, 0, 0, 0, 688, 671, 1, 0, 0, 0, 688, 672, 1, 0, 0, 0, 688, 673, 1, 0, 0, 0, 688, 674, 1, 0, 0, 0, 688, 675, 1, 0, 0, 0, 688, 676, 1, 0, 0, 0, 688, 677, 1, 0, 0, 0, 688, 678, 1, 0, 0, 0, 688, 679, 1, 0, 0, 0, 688, 680, 1, 0, 0, 0, 688, 681, 1, 0, 0, 0, 688, 682, 1, 0, 0, 0, 688, 683, 1, 0, 0, 0, 688, 684, 1, 0, 0, 0, 688, 685, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 688, 687, 1, 0, 0, 0, 689, 27, 1, 0, 0, 0, 690, 691, 5, 4, 0, 0, 691, 692, 5, 46, 0, 0, 692, 693, 3, 184, 92, 0, 693, 694, 5, 176, 0, 0, 694, 695, 5, 142, 0, 0, 695, 696, 7, 1, 0, 0, 696, 697, 3, 370, 185, 0, 697, 29, 1, 0, 0, 0, 698, 699, 5, 4, 0, 0, 699, 700, 5, 188, 0, 0, 700, 701, 3, 186, 93, 0, 701, 702, 5, 176, 0, 0, 702, 703, 5, 32, 0, 0, 703, 704, 5, 182, 0, 0, 704, 705, 3, 192, 96, 0, 705, 706, 5, 265, 0, 0, 706, 707, 3, 234, 117, 0, 707, 708, 5, 249, 0, 0, 708, 714, 3, 324, 162, 0, 709, 710, 5, 263, 0, 0, 710, 711, 3, 234, 117, 0, 711, 712, 5, 249, 0, 0, 712, 713, 3, 324, 162, 0, 713, 715, 1, 0, 0, 0, 714, 709, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 266, 0, 0, 717, 31, 1, 0, 0, 0, 718, 719, 5, 4, 0, 0, 719, 720, 5, 188, 0, 0, 720, 723, 3, 186, 93, 0, 721, 722, 5, 145, 0, 0, 722, 724, 3, 314, 157, 0, 723, 721, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 736, 5, 176, 0, 0, 726, 727, 5, 30, 0, 0, 727, 728, 5, 94, 0, 0, 728, 733, 3, 324, 162, 0, 729, 730, 5, 216, 0, 0, 730, 731, 5, 151, 0, 0, 731, 732, 5, 249, 0, 0, 732, 734, 3, 372, 186, 0, 733, 729, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 737, 5, 197, 0, 0, 736, 726, 1, 0, 0, 0, 736, 735, 1, 0, 0, 0, 737, 33, 1, 0, 0, 0, 738, 739, 5, 4, 0, 0, 739, 740, 5, 188, 0, 0, 740, 741, 3, 186, 93, 0, 741, 742, 5, 31, 0, 0, 742, 743, 3, 192, 96, 0, 743, 744, 3, 226, 113, 0, 744, 35, 1, 0, 0, 0, 745, 746, 5, 4, 0, 0, 746, 747, 5, 188, 0, 0, 747, 748, 3, 186, 93, 0, 748, 750, 5, 58, 0, 0, 749, 751, 5, 32, 0, 0, 750, 749, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 3, 192, 96, 0, 753, 37, 1, 0, 0, 0, 754, 755, 5, 4, 0, 0, 755, 756, 5, 188, 0, 0, 756, 757, 3, 186, 93, 0, 757, 758, 5, 176, 0, 0, 758, 759, 5, 142, 0, 0, 759, 760, 7, 1, 0, 0, 760, 761, 3, 370, 185, 0, 761, 39, 1, 0, 0, 0, 762, 763, 5, 4, 0, 0, 763, 764, 5, 188, 0, 0, 764, 770, 3, 186, 93, 0, 765, 771, 5, 158, 0, 0, 766, 768, 5, 1, 0, 0, 767, 769, 3, 172, 86, 0, 768, 767, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 771, 1, 0, 0, 0, 770, 765, 1, 0, 0, 0, 770, 766, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 33, 0, 0, 773, 774, 5, 265, 0, 0, 774, 779, 3, 226, 113, 0, 775, 776, 5, 263, 0, 0, 776, 778, 3, 226, 113, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 782, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 783, 5, 266, 0, 0, 783, 41, 1, 0, 0, 0, 784, 785, 5, 4, 0, 0, 785, 786, 5, 188, 0, 0, 786, 787, 3, 186, 93, 0, 787, 788, 5, 1, 0, 0, 788, 790, 5, 32, 0, 0, 789, 791, 3, 172, 86, 0, 790, 789, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 3, 228, 114, 0, 793, 43, 1, 0, 0, 0, 794, 795, 5, 4, 0, 0, 795, 796, 5, 188, 0, 0, 796, 797, 3, 186, 93, 0, 797, 799, 5, 4, 0, 0, 798, 800, 5, 32, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 810, 3, 192, 96, 0, 802, 806, 5, 176, 0, 0, 803, 807, 3, 232, 116, 0, 804, 805, 5, 34, 0, 0, 805, 807, 3, 324, 162, 0, 806, 803, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 811, 1, 0, 0, 0, 808, 809, 5, 58, 0, 0, 809, 811, 5, 51, 0, 0, 810, 802, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 811, 45, 1, 0, 0, 0, 812, 813, 5, 4, 0, 0, 813, 814, 5, 188, 0, 0, 814, 815, 3, 186, 93, 0, 815, 817, 5, 1, 0, 0, 816, 818, 3, 172, 86, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 831, 1, 0, 0, 0, 819, 820, 5, 145, 0, 0, 820, 823, 3, 314, 157, 0, 821, 822, 5, 24, 0, 0, 822, 824, 3, 324, 162, 0, 823, 821, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 826, 1, 0, 0, 0, 825, 827, 3, 246, 123, 0, 826, 825, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 832, 1, 0, 0, 0, 828, 829, 5, 154, 0, 0, 829, 830, 5, 145, 0, 0, 830, 832, 3, 244, 122, 0, 831, 819, 1, 0, 0, 0, 831, 828, 1, 0, 0, 0, 832, 47, 1, 0, 0, 0, 833, 834, 5, 4, 0, 0, 834, 835, 5, 188, 0, 0, 835, 838, 3, 186, 93, 0, 836, 837, 5, 145, 0, 0, 837, 839, 3, 314, 157, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 852, 5, 176, 0, 0, 841, 842, 5, 72, 0, 0, 842, 853, 3, 236, 118, 0, 843, 844, 5, 168, 0, 0, 844, 845, 5, 79, 0, 0, 845, 853, 3, 260, 130, 0, 846, 847, 5, 24, 0, 0, 847, 853, 3, 324, 162, 0, 848, 849, 5, 25, 0, 0, 849, 853, 3, 254, 127, 0, 850, 851, 5, 175, 0, 0, 851, 853, 3, 254, 127, 0, 852, 841, 1, 0, 0, 0, 852, 843, 1, 0, 0, 0, 852, 846, 1, 0, 0, 0, 852, 848, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 853, 49, 1, 0, 0, 0, 854, 855, 5, 4, 0, 0, 855, 856, 5, 188, 0, 0, 856, 857, 3, 186, 93, 0, 857, 858, 5, 155, 0, 0, 858, 859, 5, 146, 0, 0, 859, 51, 1, 0, 0, 0, 860, 861, 5, 4, 0, 0, 861, 862, 5, 188, 0, 0, 862, 863, 3, 186, 93, 0, 863, 865, 5, 58, 0, 0, 864, 866, 3, 170, 85, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 875, 1, 0, 0, 0, 867, 868, 5, 145, 0, 0, 868, 870, 3, 314, 157, 0, 869, 871, 5, 22, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 876, 1, 0, 0, 0, 872, 873, 5, 154, 0, 0, 873, 874, 5, 145, 0, 0, 874, 876, 3, 244, 122, 0, 875, 867, 1, 0, 0, 0, 875, 872, 1, 0, 0, 0, 876, 53, 1, 0, 0, 0, 877, 878, 5, 4, 0, 0, 878, 879, 5, 212, 0, 0, 879, 881, 3, 188, 94, 0, 880, 882, 3, 204, 102, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 5, 9, 0, 0, 884, 885, 3, 208, 104, 0, 885, 55, 1, 0, 0, 0, 886, 887, 5, 4, 0, 0, 887, 888, 5, 212, 0, 0, 888, 889, 3, 188, 94, 0, 889, 890, 5, 156, 0, 0, 890, 891, 5, 193, 0, 0, 891, 892, 3, 188, 94, 0, 892, 57, 1, 0, 0, 0, 893, 894, 5, 4, 0, 0, 894, 895, 5, 212, 0, 0, 895, 896, 3, 188, 94, 0, 896, 897, 5, 176, 0, 0, 897, 898, 5, 142, 0, 0, 898, 899, 7, 1, 0, 0, 899, 900, 3, 366, 183, 0, 900, 59, 1, 0, 0, 0, 901, 902, 5, 4, 0, 0, 902, 903, 5, 188, 0, 0, 903, 904, 3, 186, 93, 0, 904, 905, 5, 156, 0, 0, 905, 906, 5, 193, 0, 0, 906, 907, 3, 186, 93, 0, 907, 61, 1, 0, 0, 0, 908, 909, 5, 4, 0, 0, 909, 910, 5, 212, 0, 0, 910, 911, 3, 188, 94, 0, 911, 912, 7, 2, 0, 0, 912, 913, 5, 25, 0, 0, 913, 914, 3, 254, 127, 0, 914, 63, 1, 0, 0, 0, 915, 917, 5, 196, 0, 0, 916, 918, 5, 188, 0, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 921, 3, 170, 85, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 3, 186, 93, 0, 923, 65, 1, 0, 0, 0, 924, 926, 5, 56, 0, 0, 925, 927, 5, 46, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 1, 0, 0, 0, 928, 930, 7, 3, 0, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 3, 366, 183, 0, 932, 67, 1, 0, 0, 0, 933, 936, 3, 70, 35, 0, 934, 936, 3, 72, 36, 0, 935, 933, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 69, 1, 0, 0, 0, 937, 938, 5, 36, 0, 0, 938, 939, 5, 182, 0, 0, 939, 941, 3, 186, 93, 0, 940, 942, 3, 302, 151, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 955, 1, 0, 0, 0, 943, 944, 5, 190, 0, 0, 944, 945, 5, 185, 0, 0, 945, 946, 5, 265, 0, 0, 946, 947, 3, 372, 186, 0, 947, 953, 5, 266, 0, 0, 948, 949, 5, 157, 0, 0, 949, 950, 5, 265, 0, 0, 950, 951, 3, 372, 186, 0, 951, 952, 5, 266, 0, 0, 952, 954, 1, 0, 0, 0, 953, 948, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 956, 1, 0, 0, 0, 955, 943, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 71, 1, 0, 0, 0, 957, 958, 5, 36, 0, 0, 958, 959, 5, 96, 0, 0, 959, 960, 5, 182, 0, 0, 960, 966, 3, 186, 93, 0, 961, 962, 5, 145, 0, 0, 962, 963, 5, 265, 0, 0, 963, 964, 3, 314, 157, 0, 964, 965, 5, 266, 0, 0, 965, 967, 1, 0, 0, 0, 966, 961, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 73, 1, 0, 0, 0, 968, 975, 3, 86, 43, 0, 969, 975, 3, 84, 42, 0, 970, 975, 3, 82, 41, 0, 971, 975, 3, 78, 39, 0, 972, 975, 3, 80, 40, 0, 973, 975, 3, 76, 38, 0, 974, 968, 1, 0, 0, 0, 974, 969, 1, 0, 0, 0, 974, 970, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 75, 1, 0, 0, 0, 976, 977, 5, 58, 0, 0, 977, 979, 7, 0, 0, 0, 978, 980, 3, 170, 85, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 983, 3, 184, 92, 0, 982, 984, 7, 4, 0, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 77, 1, 0, 0, 0, 985, 986, 5, 58, 0, 0, 986, 988, 5, 212, 0, 0, 987, 989, 3, 170, 85, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 3, 188, 94, 0, 991, 79, 1, 0, 0, 0, 992, 993, 5, 58, 0, 0, 993, 995, 5, 188, 0, 0, 994, 996, 3, 170, 85, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 999, 3, 186, 93, 0, 998, 1000, 5, 22, 0, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 81, 1, 0, 0, 0, 1001, 1003, 5, 58, 0, 0, 1002, 1004, 5, 96, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 5, 182, 0, 0, 1006, 1009, 3, 186, 93, 0, 1007, 1008, 5, 145, 0, 0, 1008, 1010, 3, 314, 157, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 83, 1, 0, 0, 0, 1011, 1013, 5, 58, 0, 0, 1012, 1014, 5, 12, 0, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1017, 5, 84, 0, 0, 1016, 1018, 3, 170, 85, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1032, 3, 190, 95, 0, 1020, 1029, 5, 265, 0, 0, 1021, 1026, 3, 338, 169, 0, 1022, 1023, 5, 263, 0, 0, 1023, 1025, 3, 338, 169, 0, 1024, 1022, 1, 0, 0, 0, 1025, 1028, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1030, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1029, 1021, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 5, 266, 0, 0, 1032, 1020, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 85, 1, 0, 0, 0, 1034, 1035, 5, 58, 0, 0, 1035, 1036, 5, 166, 0, 0, 1036, 1037, 3, 370, 185, 0, 1037, 87, 1, 0, 0, 0, 1038, 1041, 3, 90, 45, 0, 1039, 1041, 3, 92, 46, 0, 1040, 1038, 1, 0, 0, 0, 1040, 1039, 1, 0, 0, 0, 1041, 89, 1, 0, 0, 0, 1042, 1043, 5, 86, 0, 0, 1043, 1044, 5, 166, 0, 0, 1044, 1045, 3, 370, 185, 0, 1045, 1046, 5, 193, 0, 0, 1046, 1047, 5, 87, 0, 0, 1047, 1048, 3, 370, 185, 0, 1048, 91, 1, 0, 0, 0, 1049, 1050, 5, 86, 0, 0, 1050, 1051, 3, 362, 181, 0, 1051, 1052, 5, 136, 0, 0, 1052, 1054, 3, 364, 182, 0, 1053, 1055, 3, 366, 183, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 5, 193, 0, 0, 1057, 1058, 3, 368, 184, 0, 1058, 93, 1, 0, 0, 0, 1059, 1062, 3, 96, 48, 0, 1060, 1062, 3, 98, 49, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1060, 1, 0, 0, 0, 1062, 95, 1, 0, 0, 0, 1063, 1064, 5, 161, 0, 0, 1064, 1065, 5, 166, 0, 0, 1065, 1066, 3, 370, 185, 0, 1066, 1067, 5, 82, 0, 0, 1067, 1068, 5, 87, 0, 0, 1068, 1069, 3, 370, 185, 0, 1069, 97, 1, 0, 0, 0, 1070, 1074, 5, 161, 0, 0, 1071, 1072, 5, 86, 0, 0, 1072, 1073, 5, 137, 0, 0, 1073, 1075, 5, 78, 0, 0, 1074, 1071, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 3, 362, 181, 0, 1077, 1078, 5, 136, 0, 0, 1078, 1080, 3, 364, 182, 0, 1079, 1081, 3, 366, 183, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1088, 5, 82, 0, 0, 1083, 1089, 3, 368, 184, 0, 1084, 1086, 5, 166, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 3, 370, 185, 0, 1088, 1083, 1, 0, 0, 0, 1088, 1085, 1, 0, 0, 0, 1089, 99, 1, 0, 0, 0, 1090, 1092, 3, 210, 105, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 5, 99, 0, 0, 1094, 1096, 7, 5, 0, 0, 1095, 1097, 5, 188, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 186, 93, 0, 1099, 1101, 3, 302, 151, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1114, 1, 0, 0, 0, 1102, 1103, 5, 145, 0, 0, 1103, 1104, 5, 265, 0, 0, 1104, 1109, 3, 314, 157, 0, 1105, 1106, 5, 263, 0, 0, 1106, 1108, 3, 314, 157, 0, 1107, 1105, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1112, 1, 0, 0, 0, 1111, 1109, 1, 0, 0, 0, 1112, 1113, 5, 266, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1102, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 3, 208, 104, 0, 1117, 101, 1, 0, 0, 0, 1118, 1121, 3, 104, 52, 0, 1119, 1121, 3, 106, 53, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1119, 1, 0, 0, 0, 1121, 103, 1, 0, 0, 0, 1122, 1124, 5, 50, 0, 0, 1123, 1125, 5, 82, 0, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 3, 186, 93, 0, 1127, 1129, 3, 274, 137, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 105, 1, 0, 0, 0, 1130, 1131, 5, 50, 0, 0, 1131, 1136, 3, 186, 93, 0, 1132, 1134, 5, 9, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1137, 3, 370, 185, 0, 1136, 1133, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1147, 5, 82, 0, 0, 1139, 1144, 3, 290, 145, 0, 1140, 1141, 5, 263, 0, 0, 1141, 1143, 3, 290, 145, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1139, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1151, 3, 274, 137, 0, 1150, 1149, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 107, 1, 0, 0, 0, 1152, 1153, 5, 54, 0, 0, 1153, 1154, 3, 186, 93, 0, 1154, 1155, 5, 176, 0, 0, 1155, 1165, 3, 200, 100, 0, 1156, 1157, 5, 82, 0, 0, 1157, 1162, 3, 290, 145, 0, 1158, 1159, 5, 263, 0, 0, 1159, 1161, 3, 290, 145, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1164, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1166, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1156, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1168, 1, 0, 0, 0, 1167, 1169, 3, 274, 137, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 109, 1, 0, 0, 0, 1170, 1171, 5, 207, 0, 0, 1171, 1173, 5, 103, 0, 0, 1172, 1174, 5, 188, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 3, 186, 93, 0, 1176, 1178, 3, 302, 151, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 3, 208, 104, 0, 1180, 111, 1, 0, 0, 0, 1181, 1194, 3, 132, 66, 0, 1182, 1194, 3, 134, 67, 0, 1183, 1194, 3, 136, 68, 0, 1184, 1194, 3, 130, 65, 0, 1185, 1194, 3, 128, 64, 0, 1186, 1194, 3, 126, 63, 0, 1187, 1194, 3, 124, 62, 0, 1188, 1194, 3, 122, 61, 0, 1189, 1194, 3, 120, 60, 0, 1190, 1194, 3, 118, 59, 0, 1191, 1194, 3, 116, 58, 0, 1192, 1194, 3, 114, 57, 0, 1193, 1181, 1, 0, 0, 0, 1193, 1182, 1, 0, 0, 0, 1193, 1183, 1, 0, 0, 0, 1193, 1184, 1, 0, 0, 0, 1193, 1185, 1, 0, 0, 0, 1193, 1186, 1, 0, 0, 0, 1193, 1187, 1, 0, 0, 0, 1193, 1188, 1, 0, 0, 0, 1193, 1189, 1, 0, 0, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1194, 113, 1, 0, 0, 0, 1195, 1196, 5, 179, 0, 0, 1196, 1208, 7, 6, 0, 0, 1197, 1199, 5, 115, 0, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1205, 3, 324, 162, 0, 1201, 1202, 5, 271, 0, 0, 1202, 1204, 3, 324, 162, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1198, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 115, 1, 0, 0, 0, 1210, 1211, 5, 179, 0, 0, 1211, 1214, 5, 189, 0, 0, 1212, 1213, 5, 94, 0, 0, 1213, 1215, 3, 186, 93, 0, 1214, 1212, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1227, 1, 0, 0, 0, 1216, 1218, 5, 115, 0, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1224, 3, 324, 162, 0, 1220, 1221, 5, 271, 0, 0, 1221, 1223, 3, 324, 162, 0, 1222, 1220, 1, 0, 0, 0, 1223, 1226, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1228, 1, 0, 0, 0, 1226, 1224, 1, 0, 0, 0, 1227, 1217, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 117, 1, 0, 0, 0, 1229, 1231, 5, 179, 0, 0, 1230, 1232, 7, 7, 0, 0, 1231, 1230, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1236, 5, 85, 0, 0, 1234, 1235, 5, 94, 0, 0, 1235, 1237, 3, 184, 92, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1249, 1, 0, 0, 0, 1238, 1240, 5, 115, 0, 0, 1239, 1238, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1246, 3, 324, 162, 0, 1242, 1243, 5, 271, 0, 0, 1243, 1245, 3, 324, 162, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1250, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1239, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 119, 1, 0, 0, 0, 1251, 1252, 5, 179, 0, 0, 1252, 1253, 5, 37, 0, 0, 1253, 1254, 5, 188, 0, 0, 1254, 1255, 3, 186, 93, 0, 1255, 121, 1, 0, 0, 0, 1256, 1257, 5, 179, 0, 0, 1257, 1258, 5, 37, 0, 0, 1258, 1259, 5, 212, 0, 0, 1259, 1260, 3, 188, 94, 0, 1260, 123, 1, 0, 0, 0, 1261, 1262, 5, 179, 0, 0, 1262, 1263, 5, 188, 0, 0, 1263, 1264, 5, 182, 0, 0, 1264, 1265, 3, 186, 93, 0, 1265, 125, 1, 0, 0, 0, 1266, 1267, 5, 179, 0, 0, 1267, 1268, 5, 32, 0, 0, 1268, 1269, 5, 182, 0, 0, 1269, 1270, 3, 186, 93, 0, 1270, 127, 1, 0, 0, 0, 1271, 1273, 5, 179, 0, 0, 1272, 1274, 5, 154, 0, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, 5, 146, 0, 0, 1276, 1277, 3, 186, 93, 0, 1277, 129, 1, 0, 0, 0, 1278, 1279, 5, 179, 0, 0, 1279, 1280, 5, 73, 0, 0, 1280, 1281, 5, 94, 0, 0, 1281, 1291, 3, 186, 93, 0, 1282, 1283, 5, 145, 0, 0, 1283, 1284, 5, 265, 0, 0, 1284, 1287, 3, 314, 157, 0, 1285, 1286, 5, 263, 0, 0, 1286, 1288, 3, 314, 157, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 5, 266, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1282, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 131, 1, 0, 0, 0, 1293, 1295, 5, 179, 0, 0, 1294, 1296, 5, 39, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 5, 167, 0, 0, 1298, 133, 1, 0, 0, 0, 1299, 1300, 5, 179, 0, 0, 1300, 1301, 5, 166, 0, 0, 1301, 1302, 5, 86, 0, 0, 1302, 1303, 5, 87, 0, 0, 1303, 1304, 3, 370, 185, 0, 1304, 135, 1, 0, 0, 0, 1305, 1320, 3, 138, 69, 0, 1306, 1320, 3, 140, 70, 0, 1307, 1320, 3, 142, 71, 0, 1308, 1309, 5, 179, 0, 0, 1309, 1310, 5, 86, 0, 0, 1310, 1311, 7, 8, 0, 0, 1311, 1317, 3, 370, 185, 0, 1312, 1313, 5, 136, 0, 0, 1313, 1315, 7, 9, 0, 0, 1314, 1316, 3, 366, 183, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1312, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1305, 1, 0, 0, 0, 1319, 1306, 1, 0, 0, 0, 1319, 1307, 1, 0, 0, 0, 1319, 1308, 1, 0, 0, 0, 1320, 137, 1, 0, 0, 0, 1321, 1322, 5, 179, 0, 0, 1322, 1323, 5, 86, 0, 0, 1323, 1324, 7, 8, 0, 0, 1324, 1330, 3, 370, 185, 0, 1325, 1326, 5, 136, 0, 0, 1326, 1328, 5, 46, 0, 0, 1327, 1329, 3, 184, 92, 0, 1328, 1327, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1325, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 139, 1, 0, 0, 0, 1332, 1333, 5, 179, 0, 0, 1333, 1334, 5, 86, 0, 0, 1334, 1335, 7, 8, 0, 0, 1335, 1341, 3, 370, 185, 0, 1336, 1337, 5, 136, 0, 0, 1337, 1339, 5, 188, 0, 0, 1338, 1340, 3, 186, 93, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1336, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 141, 1, 0, 0, 0, 1343, 1344, 5, 179, 0, 0, 1344, 1345, 5, 86, 0, 0, 1345, 1346, 7, 8, 0, 0, 1346, 1352, 3, 370, 185, 0, 1347, 1348, 5, 136, 0, 0, 1348, 1350, 5, 32, 0, 0, 1349, 1351, 3, 192, 96, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1347, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 143, 1, 0, 0, 0, 1354, 1358, 3, 146, 73, 0, 1355, 1358, 3, 148, 74, 0, 1356, 1358, 3, 150, 75, 0, 1357, 1354, 1, 0, 0, 0, 1357, 1355, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 145, 1, 0, 0, 0, 1359, 1360, 5, 34, 0, 0, 1360, 1361, 5, 136, 0, 0, 1361, 1362, 5, 46, 0, 0, 1362, 1363, 3, 184, 92, 0, 1363, 1366, 5, 108, 0, 0, 1364, 1367, 3, 324, 162, 0, 1365, 1367, 5, 133, 0, 0, 1366, 1364, 1, 0, 0, 0, 1366, 1365, 1, 0, 0, 0, 1367, 147, 1, 0, 0, 0, 1368, 1369, 5, 34, 0, 0, 1369, 1370, 5, 136, 0, 0, 1370, 1371, 5, 188, 0, 0, 1371, 1372, 3, 186, 93, 0, 1372, 1375, 5, 108, 0, 0, 1373, 1376, 3, 324, 162, 0, 1374, 1376, 5, 133, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1374, 1, 0, 0, 0, 1376, 149, 1, 0, 0, 0, 1377, 1378, 5, 34, 0, 0, 1378, 1379, 5, 136, 0, 0, 1379, 1380, 5, 32, 0, 0, 1380, 1381, 3, 192, 96, 0, 1381, 1384, 5, 108, 0, 0, 1382, 1385, 3, 324, 162, 0, 1383, 1385, 5, 133, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 151, 1, 0, 0, 0, 1386, 1387, 5, 67, 0, 0, 1387, 1388, 3, 4, 2, 0, 1388, 153, 1, 0, 0, 0, 1389, 1395, 5, 176, 0, 0, 1390, 1396, 5, 2, 0, 0, 1391, 1392, 3, 370, 185, 0, 1392, 1393, 5, 249, 0, 0, 1393, 1394, 3, 314, 157, 0, 1394, 1396, 1, 0, 0, 0, 1395, 1390, 1, 0, 0, 0, 1395, 1391, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 155, 1, 0, 0, 0, 1397, 1398, 5, 264, 0, 0, 1398, 1399, 5, 180, 0, 0, 1399, 1409, 5, 265, 0, 0, 1400, 1402, 3, 324, 162, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1410, 1, 0, 0, 0, 1403, 1406, 3, 324, 162, 0, 1404, 1405, 5, 263, 0, 0, 1405, 1407, 3, 314, 157, 0, 1406, 1404, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1410, 1, 0, 0, 0, 1408, 1410, 3, 314, 157, 0, 1409, 1401, 1, 0, 0, 0, 1409, 1403, 1, 0, 0, 0, 1409, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 5, 266, 0, 0, 1412, 157, 1, 0, 0, 0, 1413, 1414, 5, 107, 0, 0, 1414, 1415, 5, 121, 0, 0, 1415, 1416, 3, 186, 93, 0, 1416, 159, 1, 0, 0, 0, 1417, 1418, 5, 118, 0, 0, 1418, 1419, 5, 45, 0, 0, 1419, 1420, 5, 98, 0, 0, 1420, 1422, 5, 274, 0, 0, 1421, 1423, 5, 144, 0, 0, 1422, 1421, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1425, 5, 103, 0, 0, 1425, 1426, 5, 188, 0, 0, 1426, 1436, 3, 186, 93, 0, 1427, 1428, 5, 145, 0, 0, 1428, 1429, 5, 265, 0, 0, 1429, 1432, 3, 314, 157, 0, 1430, 1431, 5, 263, 0, 0, 1431, 1433, 3, 314, 157, 0, 1432, 1430, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 5, 266, 0, 0, 1435, 1437, 1, 0, 0, 0, 1436, 1427, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 161, 1, 0, 0, 0, 1438, 1442, 3, 164, 82, 0, 1439, 1442, 3, 166, 83, 0, 1440, 1442, 3, 168, 84, 0, 1441, 1438, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1441, 1440, 1, 0, 0, 0, 1442, 163, 1, 0, 0, 0, 1443, 1444, 5, 162, 0, 0, 1444, 1457, 3, 186, 93, 0, 1445, 1446, 5, 145, 0, 0, 1446, 1447, 5, 265, 0, 0, 1447, 1452, 3, 314, 157, 0, 1448, 1449, 5, 263, 0, 0, 1449, 1451, 3, 314, 157, 0, 1450, 1448, 1, 0, 0, 0, 1451, 1454, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 1455, 1, 0, 0, 0, 1454, 1452, 1, 0, 0, 0, 1455, 1456, 5, 266, 0, 0, 1456, 1458, 1, 0, 0, 0, 1457, 1445, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 165, 1, 0, 0, 0, 1459, 1460, 5, 162, 0, 0, 1460, 1461, 5, 13, 0, 0, 1461, 167, 1, 0, 0, 0, 1462, 1463, 5, 162, 0, 0, 1463, 1464, 5, 85, 0, 0, 1464, 1465, 3, 190, 95, 0, 1465, 169, 1, 0, 0, 0, 1466, 1467, 5, 93, 0, 0, 1467, 1468, 5, 66, 0, 0, 1468, 171, 1, 0, 0, 0, 1469, 1470, 5, 93, 0, 0, 1470, 1471, 5, 132, 0, 0, 1471, 1472, 5, 66, 0, 0, 1472, 173, 1, 0, 0, 0, 1473, 1474, 3, 366, 183, 0, 1474, 175, 1, 0, 0, 0, 1475, 1476, 3, 366, 183, 0, 1476, 177, 1, 0, 0, 0, 1477, 1478, 3, 366, 183, 0, 1478, 179, 1, 0, 0, 0, 1479, 1480, 3, 366, 183, 0, 1480, 181, 1, 0, 0, 0, 1481, 1482, 3, 366, 183, 0, 1482, 183, 1, 0, 0, 0, 1483, 1484, 3, 366, 183, 0, 1484, 185, 1, 0, 0, 0, 1485, 1490, 3, 370, 185, 0, 1486, 1487, 5, 261, 0, 0, 1487, 1489, 3, 370, 185, 0, 1488, 1486, 1, 0, 0, 0, 1489, 1492, 1, 0, 0, 0, 1490, 1488, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 187, 1, 0, 0, 0, 1492, 1490, 1, 0, 0, 0, 1493, 1498, 3, 370, 185, 0, 1494, 1495, 5, 261, 0, 0, 1495, 1497, 3, 370, 185, 0, 1496, 1494, 1, 0, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 189, 1, 0, 0, 0, 1500, 1498, 1, 0, 0, 0, 1501, 1504, 3, 374, 187, 0, 1502, 1504, 3, 366, 183, 0, 1503, 1501, 1, 0, 0, 0, 1503, 1502, 1, 0, 0, 0, 1504, 191, 1, 0, 0, 0, 1505, 1508, 3, 366, 183, 0, 1506, 1508, 4, 96, 0, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1506, 1, 0, 0, 0, 1508, 193, 1, 0, 0, 0, 1509, 1510, 3, 366, 183, 0, 1510, 195, 1, 0, 0, 0, 1511, 1514, 3, 186, 93, 0, 1512, 1514, 3, 188, 94, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 197, 1, 0, 0, 0, 1515, 1516, 5, 21, 0, 0, 1516, 1517, 5, 26, 0, 0, 1517, 1519, 3, 302, 151, 0, 1518, 1515, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1521, 1, 0, 0, 0, 1520, 1522, 3, 224, 112, 0, 1521, 1520, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1526, 1, 0, 0, 0, 1523, 1524, 5, 168, 0, 0, 1524, 1525, 5, 79, 0, 0, 1525, 1527, 3, 260, 130, 0, 1526, 1523, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1531, 1, 0, 0, 0, 1528, 1529, 5, 216, 0, 0, 1529, 1530, 5, 175, 0, 0, 1530, 1532, 3, 254, 127, 0, 1531, 1528, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1536, 1, 0, 0, 0, 1533, 1534, 5, 23, 0, 0, 1534, 1535, 5, 9, 0, 0, 1535, 1537, 3, 236, 118, 0, 1536, 1533, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1540, 1, 0, 0, 0, 1538, 1539, 5, 24, 0, 0, 1539, 1541, 3, 324, 162, 0, 1540, 1538, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1552, 1, 0, 0, 0, 1542, 1543, 5, 30, 0, 0, 1543, 1544, 5, 94, 0, 0, 1544, 1549, 3, 366, 183, 0, 1545, 1546, 5, 216, 0, 0, 1546, 1547, 5, 151, 0, 0, 1547, 1548, 5, 249, 0, 0, 1548, 1550, 5, 277, 0, 0, 1549, 1545, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1553, 1, 0, 0, 0, 1551, 1553, 5, 197, 0, 0, 1552, 1542, 1, 0, 0, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1556, 1, 0, 0, 0, 1554, 1555, 5, 25, 0, 0, 1555, 1557, 3, 254, 127, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1563, 3, 202, 101, 0, 1559, 1560, 5, 263, 0, 0, 1560, 1562, 3, 202, 101, 0, 1561, 1559, 1, 0, 0, 0, 1562, 1565, 1, 0, 0, 0, 1563, 1561, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 201, 1, 0, 0, 0, 1565, 1563, 1, 0, 0, 0, 1566, 1567, 3, 366, 183, 0, 1567, 1568, 5, 249, 0, 0, 1568, 1569, 3, 314, 157, 0, 1569, 203, 1, 0, 0, 0, 1570, 1572, 5, 265, 0, 0, 1571, 1573, 3, 206, 103, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1580, 1, 0, 0, 0, 1574, 1576, 5, 263, 0, 0, 1575, 1577, 3, 206, 103, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 1, 0, 0, 0, 1578, 1574, 1, 0, 0, 0, 1579, 1582, 1, 0, 0, 0, 1580, 1578, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 1, 0, 0, 0, 1582, 1580, 1, 0, 0, 0, 1583, 1584, 5, 266, 0, 0, 1584, 205, 1, 0, 0, 0, 1585, 1587, 3, 182, 91, 0, 1586, 1588, 3, 224, 112, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 207, 1, 0, 0, 0, 1589, 1591, 3, 210, 105, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 3, 264, 132, 0, 1593, 209, 1, 0, 0, 0, 1594, 1595, 5, 216, 0, 0, 1595, 1600, 3, 284, 142, 0, 1596, 1597, 5, 263, 0, 0, 1597, 1599, 3, 284, 142, 0, 1598, 1596, 1, 0, 0, 0, 1599, 1602, 1, 0, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 211, 1, 0, 0, 0, 1602, 1600, 1, 0, 0, 0, 1603, 1604, 5, 150, 0, 0, 1604, 1605, 5, 110, 0, 0, 1605, 1607, 3, 302, 151, 0, 1606, 1608, 5, 53, 0, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1612, 1, 0, 0, 0, 1609, 1613, 5, 225, 0, 0, 1610, 1611, 5, 263, 0, 0, 1611, 1613, 5, 225, 0, 0, 1612, 1609, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1617, 1, 0, 0, 0, 1614, 1618, 5, 226, 0, 0, 1615, 1616, 5, 263, 0, 0, 1616, 1618, 5, 226, 0, 0, 1617, 1614, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1631, 1, 0, 0, 0, 1619, 1620, 5, 263, 0, 0, 1620, 1623, 3, 214, 107, 0, 1621, 1623, 3, 214, 107, 0, 1622, 1619, 1, 0, 0, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1628, 1, 0, 0, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1627, 3, 214, 107, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1632, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1622, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 213, 1, 0, 0, 0, 1633, 1634, 5, 81, 0, 0, 1634, 1635, 5, 110, 0, 0, 1635, 1636, 3, 302, 151, 0, 1636, 1637, 5, 224, 0, 0, 1637, 1638, 3, 186, 93, 0, 1638, 1640, 3, 302, 151, 0, 1639, 1641, 5, 53, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1644, 5, 225, 0, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1646, 1, 0, 0, 0, 1645, 1647, 5, 226, 0, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 215, 1, 0, 0, 0, 1648, 1649, 3, 192, 96, 0, 1649, 1652, 3, 338, 169, 0, 1650, 1651, 5, 34, 0, 0, 1651, 1653, 3, 324, 162, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 217, 1, 0, 0, 0, 1654, 1655, 3, 182, 91, 0, 1655, 1657, 3, 338, 169, 0, 1656, 1658, 3, 224, 112, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 219, 1, 0, 0, 0, 1659, 1660, 3, 222, 111, 0, 1660, 221, 1, 0, 0, 0, 1661, 1662, 3, 182, 91, 0, 1662, 1670, 3, 338, 169, 0, 1663, 1667, 3, 230, 115, 0, 1664, 1666, 3, 230, 115, 0, 1665, 1664, 1, 0, 0, 0, 1666, 1669, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1667, 1665, 1, 0, 0, 0, 1668, 1671, 1, 0, 0, 0, 1669, 1667, 1, 0, 0, 0, 1670, 1663, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 1, 0, 0, 0, 1672, 1674, 3, 224, 112, 0, 1673, 1672, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1677, 1, 0, 0, 0, 1675, 1676, 5, 150, 0, 0, 1676, 1678, 5, 110, 0, 0, 1677, 1675, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 223, 1, 0, 0, 0, 1679, 1680, 5, 34, 0, 0, 1680, 1681, 3, 324, 162, 0, 1681, 225, 1, 0, 0, 0, 1682, 1690, 3, 216, 108, 0, 1683, 1687, 3, 230, 115, 0, 1684, 1686, 3, 230, 115, 0, 1685, 1684, 1, 0, 0, 0, 1686, 1689, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1683, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 227, 1, 0, 0, 0, 1692, 1693, 3, 182, 91, 0, 1693, 1696, 3, 338, 169, 0, 1694, 1695, 5, 34, 0, 0, 1695, 1697, 3, 324, 162, 0, 1696, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1705, 1, 0, 0, 0, 1698, 1702, 3, 230, 115, 0, 1699, 1701, 3, 230, 115, 0, 1700, 1699, 1, 0, 0, 0, 1701, 1704, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1706, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1698, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 229, 1, 0, 0, 0, 1707, 1709, 5, 132, 0, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1713, 5, 133, 0, 0, 1711, 1713, 3, 232, 116, 0, 1712, 1708, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 231, 1, 0, 0, 0, 1714, 1715, 5, 60, 0, 0, 1715, 1723, 3, 314, 157, 0, 1716, 1717, 5, 35, 0, 0, 1717, 1723, 3, 314, 157, 0, 1718, 1719, 5, 51, 0, 0, 1719, 1723, 3, 314, 157, 0, 1720, 1721, 5, 16, 0, 0, 1721, 1723, 3, 372, 186, 0, 1722, 1714, 1, 0, 0, 0, 1722, 1716, 1, 0, 0, 0, 1722, 1718, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1723, 233, 1, 0, 0, 0, 1724, 1725, 7, 10, 0, 0, 1725, 235, 1, 0, 0, 0, 1726, 1727, 7, 11, 0, 0, 1727, 237, 1, 0, 0, 0, 1728, 1733, 3, 240, 120, 0, 1729, 1730, 5, 263, 0, 0, 1730, 1732, 3, 240, 120, 0, 1731, 1729, 1, 0, 0, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1734, 1738, 1, 0, 0, 0, 1735, 1733, 1, 0, 0, 0, 1736, 1737, 5, 263, 0, 0, 1737, 1739, 3, 242, 121, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1742, 3, 242, 121, 0, 1741, 1728, 1, 0, 0, 0, 1741, 1740, 1, 0, 0, 0, 1742, 239, 1, 0, 0, 0, 1743, 1745, 5, 89, 0, 0, 1744, 1746, 3, 302, 151, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 5, 146, 0, 0, 1748, 1749, 3, 372, 186, 0, 1749, 241, 1, 0, 0, 0, 1750, 1752, 5, 154, 0, 0, 1751, 1753, 3, 302, 151, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 5, 265, 0, 0, 1755, 1756, 5, 145, 0, 0, 1756, 1762, 3, 244, 122, 0, 1757, 1758, 5, 263, 0, 0, 1758, 1759, 5, 145, 0, 0, 1759, 1761, 3, 244, 122, 0, 1760, 1757, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 266, 0, 0, 1766, 243, 1, 0, 0, 0, 1767, 1768, 5, 210, 0, 0, 1768, 1769, 3, 250, 125, 0, 1769, 1770, 3, 314, 157, 0, 1770, 1783, 1, 0, 0, 0, 1771, 1772, 3, 314, 157, 0, 1772, 1773, 3, 248, 124, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1771, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1780, 5, 211, 0, 0, 1777, 1778, 3, 248, 124, 0, 1778, 1779, 3, 314, 157, 0, 1779, 1781, 1, 0, 0, 0, 1780, 1777, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1767, 1, 0, 0, 0, 1782, 1774, 1, 0, 0, 0, 1783, 245, 1, 0, 0, 0, 1784, 1785, 5, 30, 0, 0, 1785, 1786, 5, 94, 0, 0, 1786, 1791, 3, 370, 185, 0, 1787, 1788, 5, 216, 0, 0, 1788, 1789, 5, 151, 0, 0, 1789, 1790, 5, 249, 0, 0, 1790, 1792, 3, 372, 186, 0, 1791, 1787, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1795, 5, 197, 0, 0, 1794, 1784, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 247, 1, 0, 0, 0, 1796, 1802, 1, 0, 0, 0, 1797, 1802, 5, 251, 0, 0, 1798, 1802, 5, 252, 0, 0, 1799, 1802, 5, 253, 0, 0, 1800, 1802, 5, 254, 0, 0, 1801, 1796, 1, 0, 0, 0, 1801, 1797, 1, 0, 0, 0, 1801, 1798, 1, 0, 0, 0, 1801, 1799, 1, 0, 0, 0, 1801, 1800, 1, 0, 0, 0, 1802, 249, 1, 0, 0, 0, 1803, 1812, 5, 249, 0, 0, 1804, 1812, 5, 250, 0, 0, 1805, 1812, 5, 115, 0, 0, 1806, 1812, 5, 164, 0, 0, 1807, 1812, 5, 163, 0, 0, 1808, 1812, 5, 15, 0, 0, 1809, 1812, 5, 94, 0, 0, 1810, 1812, 3, 248, 124, 0, 1811, 1803, 1, 0, 0, 0, 1811, 1804, 1, 0, 0, 0, 1811, 1805, 1, 0, 0, 0, 1811, 1806, 1, 0, 0, 0, 1811, 1807, 1, 0, 0, 0, 1811, 1808, 1, 0, 0, 0, 1811, 1809, 1, 0, 0, 0, 1811, 1810, 1, 0, 0, 0, 1812, 251, 1, 0, 0, 0, 1813, 1814, 5, 115, 0, 0, 1814, 1817, 3, 366, 183, 0, 1815, 1816, 7, 12, 0, 0, 1816, 1818, 5, 153, 0, 0, 1817, 1815, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 253, 1, 0, 0, 0, 1819, 1820, 5, 265, 0, 0, 1820, 1825, 3, 262, 131, 0, 1821, 1822, 5, 263, 0, 0, 1822, 1824, 3, 262, 131, 0, 1823, 1821, 1, 0, 0, 0, 1824, 1827, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1828, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1829, 5, 266, 0, 0, 1829, 255, 1, 0, 0, 0, 1830, 1831, 5, 265, 0, 0, 1831, 1836, 3, 216, 108, 0, 1832, 1833, 5, 263, 0, 0, 1833, 1835, 3, 216, 108, 0, 1834, 1832, 1, 0, 0, 0, 1835, 1838, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1836, 1834, 1, 0, 0, 0, 1837, 1839, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1840, 5, 266, 0, 0, 1840, 257, 1, 0, 0, 0, 1841, 1846, 3, 314, 157, 0, 1842, 1843, 5, 263, 0, 0, 1843, 1845, 3, 314, 157, 0, 1844, 1842, 1, 0, 0, 0, 1845, 1848, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 259, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1849, 1859, 5, 52, 0, 0, 1850, 1851, 5, 71, 0, 0, 1851, 1852, 5, 191, 0, 0, 1852, 1853, 5, 26, 0, 0, 1853, 1857, 3, 324, 162, 0, 1854, 1855, 5, 63, 0, 0, 1855, 1856, 5, 26, 0, 0, 1856, 1858, 3, 324, 162, 0, 1857, 1854, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1860, 1, 0, 0, 0, 1859, 1850, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1865, 1, 0, 0, 0, 1861, 1862, 5, 117, 0, 0, 1862, 1863, 5, 191, 0, 0, 1863, 1864, 5, 26, 0, 0, 1864, 1866, 3, 324, 162, 0, 1865, 1861, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 261, 1, 0, 0, 0, 1867, 1870, 3, 370, 185, 0, 1868, 1869, 5, 249, 0, 0, 1869, 1871, 3, 314, 157, 0, 1870, 1868, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 263, 1, 0, 0, 0, 1872, 1883, 3, 266, 133, 0, 1873, 1874, 5, 139, 0, 0, 1874, 1875, 5, 26, 0, 0, 1875, 1880, 3, 270, 135, 0, 1876, 1877, 5, 263, 0, 0, 1877, 1879, 3, 270, 135, 0, 1878, 1876, 1, 0, 0, 0, 1879, 1882, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1873, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1891, 1, 0, 0, 0, 1885, 1886, 5, 116, 0, 0, 1886, 1889, 3, 314, 157, 0, 1887, 1888, 5, 135, 0, 0, 1888, 1890, 5, 277, 0, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1892, 1, 0, 0, 0, 1891, 1885, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 265, 1, 0, 0, 0, 1893, 1894, 6, 133, -1, 0, 1894, 1895, 3, 268, 134, 0, 1895, 1910, 1, 0, 0, 0, 1896, 1897, 10, 2, 0, 0, 1897, 1899, 5, 100, 0, 0, 1898, 1900, 3, 286, 143, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1909, 3, 266, 133, 3, 1902, 1903, 10, 1, 0, 0, 1903, 1905, 7, 13, 0, 0, 1904, 1906, 3, 286, 143, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1909, 3, 266, 133, 2, 1908, 1896, 1, 0, 0, 0, 1908, 1902, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 267, 1, 0, 0, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1930, 3, 272, 136, 0, 1914, 1915, 5, 188, 0, 0, 1915, 1930, 3, 186, 93, 0, 1916, 1917, 5, 211, 0, 0, 1917, 1922, 3, 314, 157, 0, 1918, 1919, 5, 263, 0, 0, 1919, 1921, 3, 314, 157, 0, 1920, 1918, 1, 0, 0, 0, 1921, 1924, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1930, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1925, 1926, 5, 265, 0, 0, 1926, 1927, 3, 264, 132, 0, 1927, 1928, 5, 266, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1913, 1, 0, 0, 0, 1929, 1914, 1, 0, 0, 0, 1929, 1916, 1, 0, 0, 0, 1929, 1925, 1, 0, 0, 0, 1930, 269, 1, 0, 0, 0, 1931, 1933, 3, 312, 156, 0, 1932, 1934, 7, 14, 0, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1936, 5, 134, 0, 0, 1936, 1938, 7, 15, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 271, 1, 0, 0, 0, 1939, 1941, 5, 174, 0, 0, 1940, 1942, 3, 286, 143, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1944, 1, 0, 0, 0, 1943, 1945, 5, 183, 0, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1951, 3, 288, 144, 0, 1947, 1948, 5, 263, 0, 0, 1948, 1950, 3, 288, 144, 0, 1949, 1947, 1, 0, 0, 0, 1950, 1953, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1963, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1955, 5, 82, 0, 0, 1955, 1960, 3, 290, 145, 0, 1956, 1957, 5, 263, 0, 0, 1957, 1959, 3, 290, 145, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1962, 1, 0, 0, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1964, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1963, 1954, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1967, 3, 274, 137, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1971, 1, 0, 0, 0, 1968, 1969, 5, 87, 0, 0, 1969, 1970, 5, 26, 0, 0, 1970, 1972, 3, 278, 139, 0, 1971, 1968, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 3, 276, 138, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 273, 1, 0, 0, 0, 1976, 1977, 5, 215, 0, 0, 1977, 1978, 3, 316, 158, 0, 1978, 275, 1, 0, 0, 0, 1979, 1980, 5, 90, 0, 0, 1980, 1981, 3, 316, 158, 0, 1981, 277, 1, 0, 0, 0, 1982, 1984, 3, 286, 143, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1990, 3, 280, 140, 0, 1986, 1987, 5, 263, 0, 0, 1987, 1989, 3, 280, 140, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 279, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1994, 3, 282, 141, 0, 1994, 281, 1, 0, 0, 0, 1995, 2004, 5, 265, 0, 0, 1996, 2001, 3, 312, 156, 0, 1997, 1998, 5, 263, 0, 0, 1998, 2000, 3, 312, 156, 0, 1999, 1997, 1, 0, 0, 0, 2000, 2003, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2004, 1996, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2009, 5, 266, 0, 0, 2007, 2009, 3, 312, 156, 0, 2008, 1995, 1, 0, 0, 0, 2008, 2007, 1, 0, 0, 0, 2009, 283, 1, 0, 0, 0, 2010, 2012, 3, 370, 185, 0, 2011, 2013, 3, 302, 151, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 5, 9, 0, 0, 2015, 2016, 3, 306, 153, 0, 2016, 285, 1, 0, 0, 0, 2017, 2018, 7, 16, 0, 0, 2018, 287, 1, 0, 0, 0, 2019, 2024, 3, 312, 156, 0, 2020, 2022, 5, 9, 0, 0, 2021, 2020, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 3, 370, 185, 0, 2024, 2021, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2032, 1, 0, 0, 0, 2026, 2027, 3, 366, 183, 0, 2027, 2028, 5, 261, 0, 0, 2028, 2029, 5, 257, 0, 0, 2029, 2032, 1, 0, 0, 0, 2030, 2032, 5, 257, 0, 0, 2031, 2019, 1, 0, 0, 0, 2031, 2026, 1, 0, 0, 0, 2031, 2030, 1, 0, 0, 0, 2032, 289, 1, 0, 0, 0, 2033, 2034, 6, 145, -1, 0, 2034, 2035, 3, 296, 148, 0, 2035, 2049, 1, 0, 0, 0, 2036, 2045, 10, 2, 0, 0, 2037, 2038, 5, 38, 0, 0, 2038, 2039, 5, 109, 0, 0, 2039, 2046, 3, 296, 148, 0, 2040, 2041, 3, 292, 146, 0, 2041, 2042, 5, 109, 0, 0, 2042, 2043, 3, 290, 145, 0, 2043, 2044, 3, 294, 147, 0, 2044, 2046, 1, 0, 0, 0, 2045, 2037, 1, 0, 0, 0, 2045, 2040, 1, 0, 0, 0, 2046, 2048, 1, 0, 0, 0, 2047, 2036, 1, 0, 0, 0, 2048, 2051, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 291, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2052, 2054, 5, 97, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2084, 1, 0, 0, 0, 2055, 2057, 5, 114, 0, 0, 2056, 2058, 5, 97, 0, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2084, 1, 0, 0, 0, 2059, 2061, 5, 165, 0, 0, 2060, 2062, 5, 97, 0, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2084, 1, 0, 0, 0, 2063, 2065, 5, 114, 0, 0, 2064, 2066, 5, 141, 0, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2084, 1, 0, 0, 0, 2067, 2069, 5, 165, 0, 0, 2068, 2070, 5, 141, 0, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2084, 1, 0, 0, 0, 2071, 2073, 5, 83, 0, 0, 2072, 2074, 5, 141, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2084, 1, 0, 0, 0, 2075, 2076, 5, 114, 0, 0, 2076, 2084, 5, 177, 0, 0, 2077, 2078, 5, 165, 0, 0, 2078, 2084, 5, 177, 0, 0, 2079, 2080, 5, 114, 0, 0, 2080, 2084, 5, 7, 0, 0, 2081, 2082, 5, 165, 0, 0, 2082, 2084, 5, 7, 0, 0, 2083, 2053, 1, 0, 0, 0, 2083, 2055, 1, 0, 0, 0, 2083, 2059, 1, 0, 0, 0, 2083, 2063, 1, 0, 0, 0, 2083, 2067, 1, 0, 0, 0, 2083, 2071, 1, 0, 0, 0, 2083, 2075, 1, 0, 0, 0, 2083, 2077, 1, 0, 0, 0, 2083, 2079, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2084, 293, 1, 0, 0, 0, 2085, 2086, 5, 136, 0, 0, 2086, 2100, 3, 316, 158, 0, 2087, 2088, 5, 205, 0, 0, 2088, 2089, 5, 265, 0, 0, 2089, 2094, 3, 370, 185, 0, 2090, 2091, 5, 263, 0, 0, 2091, 2093, 3, 370, 185, 0, 2092, 2090, 1, 0, 0, 0, 2093, 2096, 1, 0, 0, 0, 2094, 2092, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2094, 1, 0, 0, 0, 2097, 2098, 5, 266, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2085, 1, 0, 0, 0, 2099, 2087, 1, 0, 0, 0, 2100, 295, 1, 0, 0, 0, 2101, 2114, 3, 300, 150, 0, 2102, 2103, 5, 190, 0, 0, 2103, 2104, 3, 298, 149, 0, 2104, 2105, 5, 265, 0, 0, 2105, 2106, 3, 314, 157, 0, 2106, 2112, 5, 266, 0, 0, 2107, 2108, 5, 157, 0, 0, 2108, 2109, 5, 265, 0, 0, 2109, 2110, 3, 314, 157, 0, 2110, 2111, 5, 266, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2107, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2102, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 297, 1, 0, 0, 0, 2116, 2117, 7, 17, 0, 0, 2117, 299, 1, 0, 0, 0, 2118, 2126, 3, 304, 152, 0, 2119, 2121, 5, 9, 0, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 3, 370, 185, 0, 2123, 2125, 3, 302, 151, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2127, 1, 0, 0, 0, 2126, 2120, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 301, 1, 0, 0, 0, 2128, 2129, 5, 265, 0, 0, 2129, 2134, 3, 192, 96, 0, 2130, 2131, 5, 263, 0, 0, 2131, 2133, 3, 192, 96, 0, 2132, 2130, 1, 0, 0, 0, 2133, 2136, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2137, 2138, 5, 266, 0, 0, 2138, 303, 1, 0, 0, 0, 2139, 2147, 3, 196, 98, 0, 2140, 2142, 5, 113, 0, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2147, 3, 306, 153, 0, 2144, 2147, 3, 308, 154, 0, 2145, 2147, 3, 310, 155, 0, 2146, 2139, 1, 0, 0, 0, 2146, 2141, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2145, 1, 0, 0, 0, 2147, 305, 1, 0, 0, 0, 2148, 2149, 5, 265, 0, 0, 2149, 2150, 3, 208, 104, 0, 2150, 2151, 5, 266, 0, 0, 2151, 307, 1, 0, 0, 0, 2152, 2153, 5, 201, 0, 0, 2153, 2154, 5, 265, 0, 0, 2154, 2159, 3, 314, 157, 0, 2155, 2156, 5, 263, 0, 0, 2156, 2158, 3, 314, 157, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2161, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2162, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2165, 5, 266, 0, 0, 2163, 2164, 5, 216, 0, 0, 2164, 2166, 5, 140, 0, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 309, 1, 0, 0, 0, 2167, 2168, 5, 265, 0, 0, 2168, 2169, 3, 290, 145, 0, 2169, 2170, 5, 266, 0, 0, 2170, 311, 1, 0, 0, 0, 2171, 2174, 3, 192, 96, 0, 2172, 2174, 3, 314, 157, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2172, 1, 0, 0, 0, 2174, 313, 1, 0, 0, 0, 2175, 2176, 3, 316, 158, 0, 2176, 315, 1, 0, 0, 0, 2177, 2178, 6, 158, -1, 0, 2178, 2180, 3, 320, 160, 0, 2179, 2181, 3, 318, 159, 0, 2180, 2179, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2185, 1, 0, 0, 0, 2182, 2183, 5, 132, 0, 0, 2183, 2185, 3, 316, 158, 3, 2184, 2177, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2185, 2194, 1, 0, 0, 0, 2186, 2187, 10, 2, 0, 0, 2187, 2188, 5, 5, 0, 0, 2188, 2193, 3, 316, 158, 3, 2189, 2190, 10, 1, 0, 0, 2190, 2191, 5, 138, 0, 0, 2191, 2193, 3, 316, 158, 2, 2192, 2186, 1, 0, 0, 0, 2192, 2189, 1, 0, 0, 0, 2193, 2196, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 317, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2198, 3, 326, 163, 0, 2198, 2199, 3, 320, 160, 0, 2199, 2256, 1, 0, 0, 0, 2200, 2201, 3, 326, 163, 0, 2201, 2202, 3, 328, 164, 0, 2202, 2203, 3, 306, 153, 0, 2203, 2256, 1, 0, 0, 0, 2204, 2206, 5, 132, 0, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 5, 15, 0, 0, 2208, 2209, 3, 320, 160, 0, 2209, 2210, 5, 5, 0, 0, 2210, 2211, 3, 320, 160, 0, 2211, 2256, 1, 0, 0, 0, 2212, 2214, 5, 132, 0, 0, 2213, 2212, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 5, 94, 0, 0, 2216, 2217, 5, 265, 0, 0, 2217, 2222, 3, 314, 157, 0, 2218, 2219, 5, 263, 0, 0, 2219, 2221, 3, 314, 157, 0, 2220, 2218, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2225, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2226, 5, 266, 0, 0, 2226, 2256, 1, 0, 0, 0, 2227, 2229, 5, 132, 0, 0, 2228, 2227, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2231, 5, 94, 0, 0, 2231, 2256, 3, 306, 153, 0, 2232, 2234, 5, 132, 0, 0, 2233, 2232, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2236, 7, 18, 0, 0, 2236, 2239, 3, 320, 160, 0, 2237, 2238, 5, 62, 0, 0, 2238, 2240, 3, 320, 160, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2256, 1, 0, 0, 0, 2241, 2242, 7, 19, 0, 0, 2242, 2256, 3, 320, 160, 0, 2243, 2245, 5, 108, 0, 0, 2244, 2246, 5, 132, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2256, 7, 20, 0, 0, 2248, 2250, 5, 108, 0, 0, 2249, 2251, 5, 132, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 5, 57, 0, 0, 2253, 2254, 5, 82, 0, 0, 2254, 2256, 3, 320, 160, 0, 2255, 2197, 1, 0, 0, 0, 2255, 2200, 1, 0, 0, 0, 2255, 2205, 1, 0, 0, 0, 2255, 2213, 1, 0, 0, 0, 2255, 2228, 1, 0, 0, 0, 2255, 2233, 1, 0, 0, 0, 2255, 2241, 1, 0, 0, 0, 2255, 2243, 1, 0, 0, 0, 2255, 2248, 1, 0, 0, 0, 2256, 319, 1, 0, 0, 0, 2257, 2258, 6, 160, -1, 0, 2258, 2262, 3, 322, 161, 0, 2259, 2260, 7, 21, 0, 0, 2260, 2262, 3, 320, 160, 4, 2261, 2257, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2274, 1, 0, 0, 0, 2263, 2264, 10, 3, 0, 0, 2264, 2265, 7, 22, 0, 0, 2265, 2273, 3, 320, 160, 4, 2266, 2267, 10, 2, 0, 0, 2267, 2268, 7, 21, 0, 0, 2268, 2273, 3, 320, 160, 3, 2269, 2270, 10, 1, 0, 0, 2270, 2271, 5, 260, 0, 0, 2271, 2273, 3, 320, 160, 2, 2272, 2263, 1, 0, 0, 0, 2272, 2266, 1, 0, 0, 0, 2272, 2269, 1, 0, 0, 0, 2273, 2276, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 321, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2277, 2278, 6, 161, -1, 0, 2278, 2524, 5, 133, 0, 0, 2279, 2524, 3, 332, 166, 0, 2280, 2281, 3, 370, 185, 0, 2281, 2282, 3, 324, 162, 0, 2282, 2524, 1, 0, 0, 0, 2283, 2284, 5, 286, 0, 0, 2284, 2524, 3, 324, 162, 0, 2285, 2524, 3, 372, 186, 0, 2286, 2524, 3, 330, 165, 0, 2287, 2524, 3, 324, 162, 0, 2288, 2524, 5, 276, 0, 0, 2289, 2524, 5, 272, 0, 0, 2290, 2291, 5, 148, 0, 0, 2291, 2292, 5, 265, 0, 0, 2292, 2293, 3, 320, 160, 0, 2293, 2294, 5, 94, 0, 0, 2294, 2295, 3, 320, 160, 0, 2295, 2296, 5, 266, 0, 0, 2296, 2524, 1, 0, 0, 0, 2297, 2298, 5, 265, 0, 0, 2298, 2301, 3, 314, 157, 0, 2299, 2300, 5, 9, 0, 0, 2300, 2302, 3, 338, 169, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2311, 1, 0, 0, 0, 2303, 2304, 5, 263, 0, 0, 2304, 2307, 3, 314, 157, 0, 2305, 2306, 5, 9, 0, 0, 2306, 2308, 3, 338, 169, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2303, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 5, 266, 0, 0, 2315, 2524, 1, 0, 0, 0, 2316, 2317, 5, 168, 0, 0, 2317, 2318, 5, 265, 0, 0, 2318, 2323, 3, 314, 157, 0, 2319, 2320, 5, 263, 0, 0, 2320, 2322, 3, 314, 157, 0, 2321, 2319, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2327, 5, 266, 0, 0, 2327, 2524, 1, 0, 0, 0, 2328, 2329, 3, 190, 95, 0, 2329, 2330, 5, 265, 0, 0, 2330, 2331, 5, 257, 0, 0, 2331, 2333, 5, 266, 0, 0, 2332, 2334, 3, 348, 174, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2337, 3, 352, 176, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2524, 1, 0, 0, 0, 2338, 2339, 3, 190, 95, 0, 2339, 2351, 5, 265, 0, 0, 2340, 2342, 3, 286, 143, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2348, 3, 314, 157, 0, 2344, 2345, 5, 263, 0, 0, 2345, 2347, 3, 314, 157, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2341, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2363, 1, 0, 0, 0, 2353, 2354, 5, 139, 0, 0, 2354, 2355, 5, 26, 0, 0, 2355, 2360, 3, 270, 135, 0, 2356, 2357, 5, 263, 0, 0, 2357, 2359, 3, 270, 135, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2362, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2364, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2363, 2353, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2367, 5, 266, 0, 0, 2366, 2368, 3, 348, 174, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2370, 1, 0, 0, 0, 2369, 2371, 3, 352, 176, 0, 2370, 2369, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2524, 1, 0, 0, 0, 2372, 2373, 3, 370, 185, 0, 2373, 2374, 5, 273, 0, 0, 2374, 2375, 3, 314, 157, 0, 2375, 2524, 1, 0, 0, 0, 2376, 2385, 5, 265, 0, 0, 2377, 2382, 3, 370, 185, 0, 2378, 2379, 5, 263, 0, 0, 2379, 2381, 3, 370, 185, 0, 2380, 2378, 1, 0, 0, 0, 2381, 2384, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2385, 2377, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2388, 5, 266, 0, 0, 2388, 2389, 5, 273, 0, 0, 2389, 2524, 3, 314, 157, 0, 2390, 2391, 5, 265, 0, 0, 2391, 2392, 3, 208, 104, 0, 2392, 2393, 5, 266, 0, 0, 2393, 2524, 1, 0, 0, 0, 2394, 2395, 5, 66, 0, 0, 2395, 2396, 5, 265, 0, 0, 2396, 2397, 3, 208, 104, 0, 2397, 2398, 5, 266, 0, 0, 2398, 2524, 1, 0, 0, 0, 2399, 2400, 5, 28, 0, 0, 2400, 2402, 3, 320, 160, 0, 2401, 2403, 3, 346, 173, 0, 2402, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2407, 5, 59, 0, 0, 2407, 2409, 3, 314, 157, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 5, 61, 0, 0, 2411, 2524, 1, 0, 0, 0, 2412, 2414, 5, 28, 0, 0, 2413, 2415, 3, 346, 173, 0, 2414, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2420, 1, 0, 0, 0, 2418, 2419, 5, 59, 0, 0, 2419, 2421, 3, 314, 157, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2423, 5, 61, 0, 0, 2423, 2524, 1, 0, 0, 0, 2424, 2425, 5, 29, 0, 0, 2425, 2426, 5, 265, 0, 0, 2426, 2427, 3, 314, 157, 0, 2427, 2428, 5, 9, 0, 0, 2428, 2429, 3, 338, 169, 0, 2429, 2430, 5, 266, 0, 0, 2430, 2524, 1, 0, 0, 0, 2431, 2432, 5, 195, 0, 0, 2432, 2433, 5, 265, 0, 0, 2433, 2434, 3, 314, 157, 0, 2434, 2435, 5, 9, 0, 0, 2435, 2436, 3, 338, 169, 0, 2436, 2437, 5, 266, 0, 0, 2437, 2524, 1, 0, 0, 0, 2438, 2439, 5, 8, 0, 0, 2439, 2448, 5, 267, 0, 0, 2440, 2445, 3, 314, 157, 0, 2441, 2442, 5, 263, 0, 0, 2442, 2444, 3, 314, 157, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2447, 1, 0, 0, 0, 2445, 2443, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2449, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2448, 2440, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2524, 5, 268, 0, 0, 2451, 2524, 3, 194, 97, 0, 2452, 2524, 5, 40, 0, 0, 2453, 2457, 5, 42, 0, 0, 2454, 2455, 5, 265, 0, 0, 2455, 2456, 5, 277, 0, 0, 2456, 2458, 5, 266, 0, 0, 2457, 2454, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2524, 1, 0, 0, 0, 2459, 2463, 5, 43, 0, 0, 2460, 2461, 5, 265, 0, 0, 2461, 2462, 5, 277, 0, 0, 2462, 2464, 5, 266, 0, 0, 2463, 2460, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2524, 1, 0, 0, 0, 2465, 2469, 5, 119, 0, 0, 2466, 2467, 5, 265, 0, 0, 2467, 2468, 5, 277, 0, 0, 2468, 2470, 5, 266, 0, 0, 2469, 2466, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2524, 1, 0, 0, 0, 2471, 2475, 5, 120, 0, 0, 2472, 2473, 5, 265, 0, 0, 2473, 2474, 5, 277, 0, 0, 2474, 2476, 5, 266, 0, 0, 2475, 2472, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2524, 1, 0, 0, 0, 2477, 2524, 5, 44, 0, 0, 2478, 2524, 5, 41, 0, 0, 2479, 2480, 5, 184, 0, 0, 2480, 2481, 5, 265, 0, 0, 2481, 2482, 3, 320, 160, 0, 2482, 2483, 5, 82, 0, 0, 2483, 2486, 3, 320, 160, 0, 2484, 2485, 5, 78, 0, 0, 2485, 2487, 3, 320, 160, 0, 2486, 2484, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2489, 5, 266, 0, 0, 2489, 2524, 1, 0, 0, 0, 2490, 2491, 5, 131, 0, 0, 2491, 2492, 5, 265, 0, 0, 2492, 2495, 3, 320, 160, 0, 2493, 2494, 5, 263, 0, 0, 2494, 2496, 3, 336, 168, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 5, 266, 0, 0, 2498, 2524, 1, 0, 0, 0, 2499, 2500, 5, 68, 0, 0, 2500, 2501, 5, 265, 0, 0, 2501, 2502, 3, 370, 185, 0, 2502, 2503, 5, 82, 0, 0, 2503, 2504, 3, 320, 160, 0, 2504, 2505, 5, 266, 0, 0, 2505, 2524, 1, 0, 0, 0, 2506, 2507, 5, 265, 0, 0, 2507, 2508, 3, 314, 157, 0, 2508, 2509, 5, 266, 0, 0, 2509, 2524, 1, 0, 0, 0, 2510, 2511, 5, 88, 0, 0, 2511, 2520, 5, 265, 0, 0, 2512, 2517, 3, 366, 183, 0, 2513, 2514, 5, 263, 0, 0, 2514, 2516, 3, 366, 183, 0, 2515, 2513, 1, 0, 0, 0, 2516, 2519, 1, 0, 0, 0, 2517, 2515, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2520, 2512, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2524, 5, 266, 0, 0, 2523, 2277, 1, 0, 0, 0, 2523, 2279, 1, 0, 0, 0, 2523, 2280, 1, 0, 0, 0, 2523, 2283, 1, 0, 0, 0, 2523, 2285, 1, 0, 0, 0, 2523, 2286, 1, 0, 0, 0, 2523, 2287, 1, 0, 0, 0, 2523, 2288, 1, 0, 0, 0, 2523, 2289, 1, 0, 0, 0, 2523, 2290, 1, 0, 0, 0, 2523, 2297, 1, 0, 0, 0, 2523, 2316, 1, 0, 0, 0, 2523, 2328, 1, 0, 0, 0, 2523, 2338, 1, 0, 0, 0, 2523, 2372, 1, 0, 0, 0, 2523, 2376, 1, 0, 0, 0, 2523, 2390, 1, 0, 0, 0, 2523, 2394, 1, 0, 0, 0, 2523, 2399, 1, 0, 0, 0, 2523, 2412, 1, 0, 0, 0, 2523, 2424, 1, 0, 0, 0, 2523, 2431, 1, 0, 0, 0, 2523, 2438, 1, 0, 0, 0, 2523, 2451, 1, 0, 0, 0, 2523, 2452, 1, 0, 0, 0, 2523, 2453, 1, 0, 0, 0, 2523, 2459, 1, 0, 0, 0, 2523, 2465, 1, 0, 0, 0, 2523, 2471, 1, 0, 0, 0, 2523, 2477, 1, 0, 0, 0, 2523, 2478, 1, 0, 0, 0, 2523, 2479, 1, 0, 0, 0, 2523, 2490, 1, 0, 0, 0, 2523, 2499, 1, 0, 0, 0, 2523, 2506, 1, 0, 0, 0, 2523, 2510, 1, 0, 0, 0, 2524, 2535, 1, 0, 0, 0, 2525, 2526, 10, 15, 0, 0, 2526, 2527, 5, 267, 0, 0, 2527, 2528, 3, 320, 160, 0, 2528, 2529, 5, 268, 0, 0, 2529, 2534, 1, 0, 0, 0, 2530, 2531, 10, 13, 0, 0, 2531, 2532, 5, 261, 0, 0, 2532, 2534, 3, 370, 185, 0, 2533, 2525, 1, 0, 0, 0, 2533, 2530, 1, 0, 0, 0, 2534, 2537, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 323, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2538, 2545, 5, 274, 0, 0, 2539, 2542, 5, 275, 0, 0, 2540, 2541, 5, 198, 0, 0, 2541, 2543, 5, 274, 0, 0, 2542, 2540, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2538, 1, 0, 0, 0, 2544, 2539, 1, 0, 0, 0, 2545, 325, 1, 0, 0, 0, 2546, 2547, 7, 23, 0, 0, 2547, 327, 1, 0, 0, 0, 2548, 2549, 7, 24, 0, 0, 2549, 329, 1, 0, 0, 0, 2550, 2551, 7, 25, 0, 0, 2551, 331, 1, 0, 0, 0, 2552, 2553, 5, 277, 0, 0, 2553, 2567, 3, 334, 167, 0, 2554, 2555, 5, 265, 0, 0, 2555, 2556, 5, 277, 0, 0, 2556, 2557, 5, 266, 0, 0, 2557, 2567, 3, 334, 167, 0, 2558, 2559, 5, 101, 0, 0, 2559, 2560, 5, 277, 0, 0, 2560, 2567, 3, 334, 167, 0, 2561, 2562, 5, 101, 0, 0, 2562, 2563, 5, 265, 0, 0, 2563, 2564, 5, 277, 0, 0, 2564, 2565, 5, 266, 0, 0, 2565, 2567, 3, 334, 167, 0, 2566, 2552, 1, 0, 0, 0, 2566, 2554, 1, 0, 0, 0, 2566, 2558, 1, 0, 0, 0, 2566, 2561, 1, 0, 0, 0, 2567, 333, 1, 0, 0, 0, 2568, 2569, 7, 26, 0, 0, 2569, 335, 1, 0, 0, 0, 2570, 2571, 7, 27, 0, 0, 2571, 337, 1, 0, 0, 0, 2572, 2573, 6, 169, -1, 0, 2573, 2574, 5, 8, 0, 0, 2574, 2575, 5, 251, 0, 0, 2575, 2576, 3, 338, 169, 0, 2576, 2577, 5, 253, 0, 0, 2577, 2618, 1, 0, 0, 0, 2578, 2579, 5, 235, 0, 0, 2579, 2580, 5, 251, 0, 0, 2580, 2581, 3, 338, 169, 0, 2581, 2582, 5, 263, 0, 0, 2582, 2583, 3, 338, 169, 0, 2583, 2584, 5, 253, 0, 0, 2584, 2618, 1, 0, 0, 0, 2585, 2586, 5, 240, 0, 0, 2586, 2587, 5, 251, 0, 0, 2587, 2588, 3, 370, 185, 0, 2588, 2595, 3, 338, 169, 0, 2589, 2590, 5, 263, 0, 0, 2590, 2591, 3, 370, 185, 0, 2591, 2592, 3, 338, 169, 0, 2592, 2594, 1, 0, 0, 0, 2593, 2589, 1, 0, 0, 0, 2594, 2597, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2599, 5, 253, 0, 0, 2599, 2618, 1, 0, 0, 0, 2600, 2603, 3, 344, 172, 0, 2601, 2603, 3, 340, 170, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2601, 1, 0, 0, 0, 2603, 2615, 1, 0, 0, 0, 2604, 2605, 5, 265, 0, 0, 2605, 2610, 3, 342, 171, 0, 2606, 2607, 5, 263, 0, 0, 2607, 2609, 3, 342, 171, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2612, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2614, 5, 266, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2604, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2618, 1, 0, 0, 0, 2617, 2572, 1, 0, 0, 0, 2617, 2578, 1, 0, 0, 0, 2617, 2585, 1, 0, 0, 0, 2617, 2602, 1, 0, 0, 0, 2618, 2623, 1, 0, 0, 0, 2619, 2620, 10, 5, 0, 0, 2620, 2622, 5, 8, 0, 0, 2621, 2619, 1, 0, 0, 0, 2622, 2625, 1, 0, 0, 0, 2623, 2621, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 339, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2627, 7, 28, 0, 0, 2627, 341, 1, 0, 0, 0, 2628, 2631, 5, 277, 0, 0, 2629, 2631, 3, 338, 169, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2629, 1, 0, 0, 0, 2631, 343, 1, 0, 0, 0, 2632, 2637, 5, 284, 0, 0, 2633, 2637, 5, 285, 0, 0, 2634, 2637, 5, 286, 0, 0, 2635, 2637, 3, 370, 185, 0, 2636, 2632, 1, 0, 0, 0, 2636, 2633, 1, 0, 0, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2635, 1, 0, 0, 0, 2637, 345, 1, 0, 0, 0, 2638, 2639, 5, 214, 0, 0, 2639, 2640, 3, 314, 157, 0, 2640, 2641, 5, 192, 0, 0, 2641, 2642, 3, 314, 157, 0, 2642, 347, 1, 0, 0, 0, 2643, 2644, 5, 74, 0, 0, 2644, 2645, 5, 265, 0, 0, 2645, 2646, 3, 274, 137, 0, 2646, 2647, 5, 266, 0, 0, 2647, 349, 1, 0, 0, 0, 2648, 2653, 3, 314, 157, 0, 2649, 2650, 5, 263, 0, 0, 2650, 2652, 3, 314, 157, 0, 2651, 2649, 1, 0, 0, 0, 2652, 2655, 1, 0, 0, 0, 2653, 2651, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 351, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2656, 2657, 5, 143, 0, 0, 2657, 2661, 5, 265, 0, 0, 2658, 2659, 5, 145, 0, 0, 2659, 2660, 5, 26, 0, 0, 2660, 2662, 3, 350, 175, 0, 2661, 2658, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2673, 1, 0, 0, 0, 2663, 2664, 5, 139, 0, 0, 2664, 2665, 5, 26, 0, 0, 2665, 2670, 3, 270, 135, 0, 2666, 2667, 5, 263, 0, 0, 2667, 2669, 3, 270, 135, 0, 2668, 2666, 1, 0, 0, 0, 2669, 2672, 1, 0, 0, 0, 2670, 2668, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2674, 1, 0, 0, 0, 2672, 2670, 1, 0, 0, 0, 2673, 2663, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2676, 1, 0, 0, 0, 2675, 2677, 3, 354, 177, 0, 2676, 2675, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 5, 266, 0, 0, 2679, 353, 1, 0, 0, 0, 2680, 2681, 5, 154, 0, 0, 2681, 2697, 3, 356, 178, 0, 2682, 2683, 5, 169, 0, 0, 2683, 2697, 3, 356, 178, 0, 2684, 2685, 5, 154, 0, 0, 2685, 2686, 5, 15, 0, 0, 2686, 2687, 3, 356, 178, 0, 2687, 2688, 5, 5, 0, 0, 2688, 2689, 3, 356, 178, 0, 2689, 2697, 1, 0, 0, 0, 2690, 2691, 5, 169, 0, 0, 2691, 2692, 5, 15, 0, 0, 2692, 2693, 3, 356, 178, 0, 2693, 2694, 5, 5, 0, 0, 2694, 2695, 3, 356, 178, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2680, 1, 0, 0, 0, 2696, 2682, 1, 0, 0, 0, 2696, 2684, 1, 0, 0, 0, 2696, 2690, 1, 0, 0, 0, 2697, 355, 1, 0, 0, 0, 2698, 2699, 5, 199, 0, 0, 2699, 2708, 5, 149, 0, 0, 2700, 2701, 5, 199, 0, 0, 2701, 2708, 5, 77, 0, 0, 2702, 2703, 5, 39, 0, 0, 2703, 2708, 5, 168, 0, 0, 2704, 2705, 3, 314, 157, 0, 2705, 2706, 7, 29, 0, 0, 2706, 2708, 1, 0, 0, 0, 2707, 2698, 1, 0, 0, 0, 2707, 2700, 1, 0, 0, 0, 2707, 2702, 1, 0, 0, 0, 2707, 2704, 1, 0, 0, 0, 2708, 357, 1, 0, 0, 0, 2709, 2710, 3, 370, 185, 0, 2710, 2711, 5, 261, 0, 0, 2711, 2712, 3, 370, 185, 0, 2712, 2715, 1, 0, 0, 0, 2713, 2715, 3, 370, 185, 0, 2714, 2709, 1, 0, 0, 0, 2714, 2713, 1, 0, 0, 0, 2715, 359, 1, 0, 0, 0, 2716, 2721, 3, 358, 179, 0, 2717, 2718, 5, 263, 0, 0, 2718, 2720, 3, 358, 179, 0, 2719, 2717, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 361, 1, 0, 0, 0, 2723, 2721, 1, 0, 0, 0, 2724, 2738, 5, 2, 0, 0, 2725, 2738, 5, 4, 0, 0, 2726, 2738, 5, 58, 0, 0, 2727, 2738, 5, 37, 0, 0, 2728, 2738, 5, 99, 0, 0, 2729, 2738, 5, 162, 0, 0, 2730, 2735, 5, 174, 0, 0, 2731, 2732, 5, 265, 0, 0, 2732, 2733, 3, 370, 185, 0, 2733, 2734, 5, 266, 0, 0, 2734, 2736, 1, 0, 0, 0, 2735, 2731, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2738, 1, 0, 0, 0, 2737, 2724, 1, 0, 0, 0, 2737, 2725, 1, 0, 0, 0, 2737, 2726, 1, 0, 0, 0, 2737, 2727, 1, 0, 0, 0, 2737, 2728, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2730, 1, 0, 0, 0, 2738, 363, 1, 0, 0, 0, 2739, 2740, 7, 30, 0, 0, 2740, 365, 1, 0, 0, 0, 2741, 2746, 3, 370, 185, 0, 2742, 2743, 5, 261, 0, 0, 2743, 2745, 3, 370, 185, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2748, 1, 0, 0, 0, 2746, 2744, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 367, 1, 0, 0, 0, 2748, 2746, 1, 0, 0, 0, 2749, 2750, 5, 166, 0, 0, 2750, 2756, 3, 370, 185, 0, 2751, 2752, 5, 204, 0, 0, 2752, 2756, 3, 370, 185, 0, 2753, 2754, 5, 87, 0, 0, 2754, 2756, 3, 370, 185, 0, 2755, 2749, 1, 0, 0, 0, 2755, 2751, 1, 0, 0, 0, 2755, 2753, 1, 0, 0, 0, 2756, 369, 1, 0, 0, 0, 2757, 2763, 5, 280, 0, 0, 2758, 2763, 5, 274, 0, 0, 2759, 2763, 3, 376, 188, 0, 2760, 2763, 5, 283, 0, 0, 2761, 2763, 5, 281, 0, 0, 2762, 2757, 1, 0, 0, 0, 2762, 2758, 1, 0, 0, 0, 2762, 2759, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2761, 1, 0, 0, 0, 2763, 371, 1, 0, 0, 0, 2764, 2766, 5, 256, 0, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2777, 5, 278, 0, 0, 2768, 2770, 5, 256, 0, 0, 2769, 2768, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2777, 5, 279, 0, 0, 2772, 2774, 5, 256, 0, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2777, 5, 277, 0, 0, 2776, 2765, 1, 0, 0, 0, 2776, 2769, 1, 0, 0, 0, 2776, 2773, 1, 0, 0, 0, 2777, 373, 1, 0, 0, 0, 2778, 2779, 7, 31, 0, 0, 2779, 375, 1, 0, 0, 0, 2780, 2781, 7, 32, 0, 0, 2781, 377, 1, 0, 0, 0, 353, 381, 388, 412, 425, 429, 433, 442, 447, 451, 457, 459, 464, 468, 472, 479, 484, 490, 494, 503, 510, 514, 519, 521, 526, 529, 536, 540, 545, 549, 552, 556, 564, 568, 572, 580, 584, 593, 596, 599, 605, 612, 623, 628, 633, 638, 643, 652, 655, 658, 662, 688, 714, 723, 733, 736, 750, 768, 770, 779, 790, 799, 806, 810, 817, 823, 826, 831, 838, 852, 865, 870, 875, 881, 917, 920, 926, 929, 935, 941, 953, 955, 966, 974, 979, 983, 988, 995, 999, 1003, 1009, 1013, 1017, 1026, 1029, 1032, 1040, 1054, 1061, 1074, 1080, 1085, 1088, 1091, 1096, 1100, 1109, 1114, 1120, 1124, 1128, 1133, 1136, 1144, 1147, 1150, 1162, 1165, 1168, 1173, 1177, 1193, 1198, 1205, 1208, 1214, 1217, 1224, 1227, 1231, 1236, 1239, 1246, 1249, 1273, 1287, 1291, 1295, 1315, 1317, 1319, 1328, 1330, 1339, 1341, 1350, 1352, 1357, 1366, 1375, 1384, 1395, 1401, 1406, 1409, 1422, 1432, 1436, 1441, 1452, 1457, 1490, 1498, 1503, 1507, 1513, 1518, 1521, 1526, 1531, 1536, 1540, 1549, 1552, 1556, 1563, 1572, 1576, 1580, 1587, 1590, 1600, 1607, 1612, 1617, 1622, 1628, 1631, 1640, 1643, 1646, 1652, 1657, 1667, 1670, 1673, 1677, 1687, 1690, 1696, 1702, 1705, 1708, 1712, 1722, 1733, 1738, 1741, 1745, 1752, 1762, 1774, 1780, 1782, 1791, 1794, 1801, 1811, 1817, 1825, 1836, 1846, 1857, 1859, 1865, 1870, 1880, 1883, 1889, 1891, 1899, 1905, 1908, 1910, 1922, 1929, 1933, 1937, 1941, 1944, 1951, 1960, 1963, 1966, 1971, 1974, 1983, 1990, 2001, 2004, 2008, 2012, 2021, 2024, 2031, 2045, 2049, 2053, 2057, 2061, 2065, 2069, 2073, 2083, 2094, 2099, 2112, 2114, 2120, 2124, 2126, 2134, 2141, 2146, 2159, 2165, 2173, 2180, 2184, 2192, 2194, 2205, 2213, 2222, 2228, 2233, 2239, 2245, 2250, 2255, 2261, 2272, 2274, 2301, 2307, 2311, 2323, 2333, 2336, 2341, 2348, 2351, 2360, 2363, 2367, 2370, 2382, 2385, 2404, 2408, 2416, 2420, 2445, 2448, 2457, 2463, 2469, 2475, 2486, 2495, 2517, 2520, 2523, 2533, 2535, 2542, 2544, 2566, 2595, 2602, 2610, 2615, 2617, 2623, 2630, 2636, 2653, 2661, 2670, 2673, 2676, 2696, 2707, 2714, 2721, 2735, 2737, 2746, 2755, 2762, 2765, 2769, 2773, 2776] \ No newline at end of file +[4, 1, 289, 2814, 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, 1, 0, 5, 0, 394, 8, 0, 10, 0, 12, 0, 397, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 403, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 440, 8, 4, 1, 5, 1, 5, 3, 5, 444, 8, 5, 1, 5, 1, 5, 3, 5, 448, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 455, 8, 5, 10, 5, 12, 5, 458, 9, 5, 1, 5, 1, 5, 3, 5, 462, 8, 5, 1, 5, 1, 5, 3, 5, 466, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 472, 8, 5, 3, 5, 474, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 479, 8, 5, 1, 6, 1, 6, 3, 6, 483, 8, 6, 1, 6, 1, 6, 3, 6, 487, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 494, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 499, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 505, 8, 7, 1, 7, 1, 7, 3, 7, 509, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 516, 8, 7, 10, 7, 12, 7, 519, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 525, 8, 7, 1, 7, 1, 7, 3, 7, 529, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 534, 8, 7, 3, 7, 536, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 541, 8, 7, 1, 7, 3, 7, 544, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 551, 8, 7, 1, 7, 1, 7, 3, 7, 555, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 560, 8, 8, 1, 8, 1, 8, 3, 8, 564, 8, 8, 1, 8, 3, 8, 567, 8, 8, 1, 8, 1, 8, 3, 8, 571, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 579, 8, 9, 1, 9, 1, 9, 3, 9, 583, 8, 9, 1, 9, 1, 9, 3, 9, 587, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 595, 8, 11, 1, 11, 1, 11, 3, 11, 599, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 606, 8, 11, 10, 11, 12, 11, 609, 9, 11, 3, 11, 611, 8, 11, 1, 11, 3, 11, 614, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 620, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 627, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 638, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 643, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 648, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 653, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 658, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 665, 8, 12, 10, 12, 12, 12, 668, 9, 12, 3, 12, 670, 8, 12, 1, 12, 3, 12, 673, 8, 12, 1, 12, 1, 12, 3, 12, 677, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 703, 8, 13, 1, 14, 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, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 729, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 738, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 748, 8, 16, 1, 16, 3, 16, 751, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 765, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 783, 8, 20, 3, 20, 785, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 792, 8, 20, 10, 20, 12, 20, 795, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 805, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 814, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 821, 8, 22, 1, 22, 1, 22, 3, 22, 825, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 832, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 838, 8, 23, 1, 23, 3, 23, 841, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 846, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 853, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 867, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 880, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 885, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 890, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 896, 8, 27, 1, 27, 1, 27, 1, 27, 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, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 932, 8, 32, 1, 32, 3, 32, 935, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 941, 8, 33, 1, 33, 3, 33, 944, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 950, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 956, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 968, 8, 35, 3, 35, 970, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 981, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 989, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 994, 8, 38, 1, 38, 1, 38, 3, 38, 998, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1003, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1010, 8, 40, 1, 40, 1, 40, 3, 40, 1014, 8, 40, 1, 41, 1, 41, 3, 41, 1018, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1024, 8, 41, 1, 42, 1, 42, 3, 42, 1028, 8, 42, 1, 42, 1, 42, 3, 42, 1032, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1039, 8, 42, 10, 42, 12, 42, 1042, 9, 42, 3, 42, 1044, 8, 42, 1, 42, 3, 42, 1047, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1055, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1069, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1076, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1089, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1095, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1100, 8, 49, 1, 49, 3, 49, 1103, 8, 49, 1, 50, 3, 50, 1106, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1111, 8, 50, 1, 50, 1, 50, 3, 50, 1115, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1122, 8, 50, 10, 50, 12, 50, 1125, 9, 50, 1, 50, 1, 50, 3, 50, 1129, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1135, 8, 51, 1, 52, 1, 52, 3, 52, 1139, 8, 52, 1, 52, 1, 52, 3, 52, 1143, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1148, 8, 53, 1, 53, 3, 53, 1151, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1157, 8, 53, 10, 53, 12, 53, 1160, 9, 53, 3, 53, 1162, 8, 53, 1, 53, 3, 53, 1165, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1175, 8, 54, 10, 54, 12, 54, 1178, 9, 54, 3, 54, 1180, 8, 54, 1, 54, 3, 54, 1183, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1188, 8, 55, 1, 55, 1, 55, 3, 55, 1192, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1208, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1213, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1218, 8, 57, 10, 57, 12, 57, 1221, 9, 57, 3, 57, 1223, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1229, 8, 58, 1, 58, 3, 58, 1232, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1237, 8, 58, 10, 58, 12, 58, 1240, 9, 58, 3, 58, 1242, 8, 58, 1, 59, 1, 59, 3, 59, 1246, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1251, 8, 59, 1, 59, 3, 59, 1254, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1259, 8, 59, 10, 59, 12, 59, 1262, 9, 59, 3, 59, 1264, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1288, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1302, 8, 65, 1, 65, 1, 65, 3, 65, 1306, 8, 65, 1, 66, 1, 66, 3, 66, 1310, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1330, 8, 68, 3, 68, 1332, 8, 68, 3, 68, 1334, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1343, 8, 69, 3, 69, 1345, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1354, 8, 70, 3, 70, 1356, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1365, 8, 71, 3, 71, 1367, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1372, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1381, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1390, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1399, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1410, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1416, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1421, 8, 78, 1, 78, 3, 78, 1424, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1437, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1447, 8, 80, 1, 80, 1, 80, 3, 80, 1451, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1456, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1465, 8, 82, 10, 82, 12, 82, 1468, 9, 82, 1, 82, 1, 82, 3, 82, 1472, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1503, 8, 93, 10, 93, 12, 93, 1506, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1511, 8, 94, 10, 94, 12, 94, 1514, 9, 94, 1, 95, 1, 95, 3, 95, 1518, 8, 95, 1, 96, 1, 96, 3, 96, 1522, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 1528, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1533, 8, 99, 1, 99, 3, 99, 1536, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1541, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1546, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1551, 8, 99, 1, 99, 1, 99, 3, 99, 1555, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1564, 8, 99, 1, 99, 3, 99, 1567, 8, 99, 1, 99, 1, 99, 3, 99, 1571, 8, 99, 1, 100, 1, 100, 1, 100, 5, 100, 1576, 8, 100, 10, 100, 12, 100, 1579, 9, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1587, 8, 102, 1, 102, 1, 102, 3, 102, 1591, 8, 102, 5, 102, 1593, 8, 102, 10, 102, 12, 102, 1596, 9, 102, 1, 102, 1, 102, 1, 103, 1, 103, 3, 103, 1602, 8, 103, 1, 104, 3, 104, 1605, 8, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1613, 8, 105, 10, 105, 12, 105, 1616, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1622, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1627, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1632, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1637, 8, 106, 1, 106, 1, 106, 5, 106, 1641, 8, 106, 10, 106, 12, 106, 1644, 9, 106, 3, 106, 1646, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1655, 8, 107, 1, 107, 3, 107, 1658, 8, 107, 1, 107, 3, 107, 1661, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1667, 8, 108, 1, 109, 1, 109, 1, 109, 3, 109, 1672, 8, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1680, 8, 111, 10, 111, 12, 111, 1683, 9, 111, 3, 111, 1685, 8, 111, 1, 111, 3, 111, 1688, 8, 111, 1, 111, 1, 111, 3, 111, 1692, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 5, 113, 1700, 8, 113, 10, 113, 12, 113, 1703, 9, 113, 3, 113, 1705, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1711, 8, 114, 1, 114, 1, 114, 5, 114, 1715, 8, 114, 10, 114, 12, 114, 1718, 9, 114, 3, 114, 1720, 8, 114, 1, 115, 3, 115, 1723, 8, 115, 1, 115, 1, 115, 3, 115, 1727, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1737, 8, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 5, 119, 1746, 8, 119, 10, 119, 12, 119, 1749, 9, 119, 1, 119, 1, 119, 3, 119, 1753, 8, 119, 1, 119, 3, 119, 1756, 8, 119, 1, 120, 1, 120, 3, 120, 1760, 8, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 1767, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1775, 8, 121, 10, 121, 12, 121, 1778, 9, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1789, 8, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1795, 8, 122, 3, 122, 1797, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1806, 8, 123, 1, 123, 3, 123, 1809, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1816, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1826, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1832, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1838, 8, 127, 10, 127, 12, 127, 1841, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 1849, 8, 128, 10, 128, 12, 128, 1852, 9, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 5, 129, 1859, 8, 129, 10, 129, 12, 129, 1862, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1872, 8, 130, 3, 130, 1874, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1880, 8, 130, 1, 131, 1, 131, 1, 131, 3, 131, 1885, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1893, 8, 132, 10, 132, 12, 132, 1896, 9, 132, 3, 132, 1898, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1904, 8, 132, 3, 132, 1906, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1914, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1920, 8, 133, 1, 133, 5, 133, 1923, 8, 133, 10, 133, 12, 133, 1926, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1935, 8, 134, 10, 134, 12, 134, 1938, 9, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1944, 8, 134, 1, 135, 1, 135, 3, 135, 1948, 8, 135, 1, 135, 1, 135, 3, 135, 1952, 8, 135, 1, 136, 1, 136, 3, 136, 1956, 8, 136, 1, 136, 3, 136, 1959, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1966, 8, 136, 10, 136, 12, 136, 1969, 9, 136, 3, 136, 1971, 8, 136, 1, 136, 3, 136, 1974, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1979, 8, 136, 1, 136, 3, 136, 1982, 8, 136, 1, 137, 1, 137, 1, 137, 5, 137, 1987, 8, 137, 10, 137, 12, 137, 1990, 9, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 140, 3, 140, 1999, 8, 140, 1, 140, 1, 140, 1, 140, 5, 140, 2004, 8, 140, 10, 140, 12, 140, 2007, 9, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2015, 8, 142, 10, 142, 12, 142, 2018, 9, 142, 3, 142, 2020, 8, 142, 1, 142, 1, 142, 3, 142, 2024, 8, 142, 1, 143, 1, 143, 3, 143, 2028, 8, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2037, 8, 145, 1, 145, 1, 145, 3, 145, 2041, 8, 145, 1, 145, 3, 145, 2044, 8, 145, 1, 146, 3, 146, 2047, 8, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 2058, 8, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2074, 8, 150, 5, 150, 2076, 8, 150, 10, 150, 12, 150, 2079, 9, 150, 1, 151, 3, 151, 2082, 8, 151, 1, 151, 1, 151, 3, 151, 2086, 8, 151, 1, 151, 1, 151, 3, 151, 2090, 8, 151, 1, 151, 1, 151, 3, 151, 2094, 8, 151, 1, 151, 1, 151, 3, 151, 2098, 8, 151, 1, 151, 1, 151, 3, 151, 2102, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2112, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 2121, 8, 152, 10, 152, 12, 152, 2124, 9, 152, 1, 152, 1, 152, 3, 152, 2128, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 2141, 8, 153, 3, 153, 2143, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 2149, 8, 155, 1, 155, 1, 155, 3, 155, 2153, 8, 155, 3, 155, 2155, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2161, 8, 156, 10, 156, 12, 156, 2164, 9, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2172, 8, 157, 1, 158, 3, 158, 2175, 8, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 2188, 8, 160, 10, 160, 12, 160, 2191, 9, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2196, 8, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 3, 162, 2204, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2211, 8, 164, 1, 164, 1, 164, 3, 164, 2215, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2223, 8, 164, 10, 164, 12, 164, 2226, 9, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2236, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2244, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 2251, 8, 165, 10, 165, 12, 165, 2254, 9, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2259, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2264, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2270, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2276, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2281, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2286, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2292, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2303, 8, 166, 10, 166, 12, 166, 2306, 9, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2311, 8, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2316, 8, 167, 10, 167, 12, 167, 2319, 9, 167, 3, 167, 2321, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2328, 8, 167, 10, 167, 12, 167, 2331, 9, 167, 3, 167, 2333, 8, 167, 1, 167, 1, 167, 3, 167, 2337, 8, 167, 1, 167, 3, 167, 2340, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2366, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2372, 8, 168, 5, 168, 2374, 8, 168, 10, 168, 12, 168, 2377, 9, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2386, 8, 168, 10, 168, 12, 168, 2389, 9, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2398, 8, 168, 1, 168, 3, 168, 2401, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2412, 8, 168, 10, 168, 12, 168, 2415, 9, 168, 3, 168, 2417, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 4, 168, 2434, 8, 168, 11, 168, 12, 168, 2435, 1, 168, 1, 168, 3, 168, 2440, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 4, 168, 2446, 8, 168, 11, 168, 12, 168, 2447, 1, 168, 1, 168, 3, 168, 2452, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2475, 8, 168, 10, 168, 12, 168, 2478, 9, 168, 3, 168, 2480, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2489, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2495, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2501, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2507, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2518, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2527, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2547, 8, 168, 10, 168, 12, 168, 2550, 9, 168, 3, 168, 2552, 8, 168, 1, 168, 3, 168, 2555, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2565, 8, 168, 10, 168, 12, 168, 2568, 9, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2574, 8, 169, 3, 169, 2576, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2598, 8, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 2625, 8, 176, 10, 176, 12, 176, 2628, 9, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2634, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 2640, 8, 176, 10, 176, 12, 176, 2643, 9, 176, 1, 176, 1, 176, 3, 176, 2647, 8, 176, 3, 176, 2649, 8, 176, 1, 176, 1, 176, 5, 176, 2653, 8, 176, 10, 176, 12, 176, 2656, 9, 176, 1, 177, 1, 177, 1, 178, 1, 178, 3, 178, 2662, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2668, 8, 179, 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, 5, 182, 2683, 8, 182, 10, 182, 12, 182, 2686, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2693, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 2700, 8, 183, 10, 183, 12, 183, 2703, 9, 183, 3, 183, 2705, 8, 183, 1, 183, 3, 183, 2708, 8, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2728, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2739, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2746, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 2751, 8, 187, 10, 187, 12, 187, 2754, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2767, 8, 188, 3, 188, 2769, 8, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 5, 190, 2776, 8, 190, 10, 190, 12, 190, 2779, 9, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2787, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2794, 8, 192, 1, 193, 3, 193, 2797, 8, 193, 1, 193, 1, 193, 3, 193, 2801, 8, 193, 1, 193, 1, 193, 3, 193, 2805, 8, 193, 1, 193, 3, 193, 2808, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 10, 793, 1466, 1642, 1681, 1701, 1716, 1747, 1776, 1850, 2375, 6, 266, 300, 328, 332, 336, 352, 196, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3126, 0, 395, 1, 0, 0, 0, 2, 400, 1, 0, 0, 0, 4, 426, 1, 0, 0, 0, 6, 428, 1, 0, 0, 0, 8, 439, 1, 0, 0, 0, 10, 441, 1, 0, 0, 0, 12, 480, 1, 0, 0, 0, 14, 502, 1, 0, 0, 0, 16, 556, 1, 0, 0, 0, 18, 575, 1, 0, 0, 0, 20, 588, 1, 0, 0, 0, 22, 592, 1, 0, 0, 0, 24, 654, 1, 0, 0, 0, 26, 702, 1, 0, 0, 0, 28, 704, 1, 0, 0, 0, 30, 712, 1, 0, 0, 0, 32, 732, 1, 0, 0, 0, 34, 752, 1, 0, 0, 0, 36, 759, 1, 0, 0, 0, 38, 768, 1, 0, 0, 0, 40, 776, 1, 0, 0, 0, 42, 798, 1, 0, 0, 0, 44, 808, 1, 0, 0, 0, 46, 826, 1, 0, 0, 0, 48, 847, 1, 0, 0, 0, 50, 868, 1, 0, 0, 0, 52, 874, 1, 0, 0, 0, 54, 891, 1, 0, 0, 0, 56, 900, 1, 0, 0, 0, 58, 907, 1, 0, 0, 0, 60, 915, 1, 0, 0, 0, 62, 922, 1, 0, 0, 0, 64, 929, 1, 0, 0, 0, 66, 938, 1, 0, 0, 0, 68, 949, 1, 0, 0, 0, 70, 951, 1, 0, 0, 0, 72, 971, 1, 0, 0, 0, 74, 988, 1, 0, 0, 0, 76, 990, 1, 0, 0, 0, 78, 999, 1, 0, 0, 0, 80, 1006, 1, 0, 0, 0, 82, 1015, 1, 0, 0, 0, 84, 1025, 1, 0, 0, 0, 86, 1048, 1, 0, 0, 0, 88, 1054, 1, 0, 0, 0, 90, 1056, 1, 0, 0, 0, 92, 1063, 1, 0, 0, 0, 94, 1075, 1, 0, 0, 0, 96, 1077, 1, 0, 0, 0, 98, 1084, 1, 0, 0, 0, 100, 1105, 1, 0, 0, 0, 102, 1134, 1, 0, 0, 0, 104, 1136, 1, 0, 0, 0, 106, 1144, 1, 0, 0, 0, 108, 1166, 1, 0, 0, 0, 110, 1184, 1, 0, 0, 0, 112, 1207, 1, 0, 0, 0, 114, 1209, 1, 0, 0, 0, 116, 1224, 1, 0, 0, 0, 118, 1243, 1, 0, 0, 0, 120, 1265, 1, 0, 0, 0, 122, 1270, 1, 0, 0, 0, 124, 1275, 1, 0, 0, 0, 126, 1280, 1, 0, 0, 0, 128, 1285, 1, 0, 0, 0, 130, 1292, 1, 0, 0, 0, 132, 1307, 1, 0, 0, 0, 134, 1313, 1, 0, 0, 0, 136, 1333, 1, 0, 0, 0, 138, 1335, 1, 0, 0, 0, 140, 1346, 1, 0, 0, 0, 142, 1357, 1, 0, 0, 0, 144, 1371, 1, 0, 0, 0, 146, 1373, 1, 0, 0, 0, 148, 1382, 1, 0, 0, 0, 150, 1391, 1, 0, 0, 0, 152, 1400, 1, 0, 0, 0, 154, 1403, 1, 0, 0, 0, 156, 1411, 1, 0, 0, 0, 158, 1427, 1, 0, 0, 0, 160, 1431, 1, 0, 0, 0, 162, 1455, 1, 0, 0, 0, 164, 1457, 1, 0, 0, 0, 166, 1473, 1, 0, 0, 0, 168, 1476, 1, 0, 0, 0, 170, 1480, 1, 0, 0, 0, 172, 1483, 1, 0, 0, 0, 174, 1487, 1, 0, 0, 0, 176, 1489, 1, 0, 0, 0, 178, 1491, 1, 0, 0, 0, 180, 1493, 1, 0, 0, 0, 182, 1495, 1, 0, 0, 0, 184, 1497, 1, 0, 0, 0, 186, 1499, 1, 0, 0, 0, 188, 1507, 1, 0, 0, 0, 190, 1517, 1, 0, 0, 0, 192, 1521, 1, 0, 0, 0, 194, 1523, 1, 0, 0, 0, 196, 1527, 1, 0, 0, 0, 198, 1532, 1, 0, 0, 0, 200, 1572, 1, 0, 0, 0, 202, 1580, 1, 0, 0, 0, 204, 1584, 1, 0, 0, 0, 206, 1599, 1, 0, 0, 0, 208, 1604, 1, 0, 0, 0, 210, 1608, 1, 0, 0, 0, 212, 1617, 1, 0, 0, 0, 214, 1647, 1, 0, 0, 0, 216, 1662, 1, 0, 0, 0, 218, 1668, 1, 0, 0, 0, 220, 1673, 1, 0, 0, 0, 222, 1675, 1, 0, 0, 0, 224, 1693, 1, 0, 0, 0, 226, 1696, 1, 0, 0, 0, 228, 1706, 1, 0, 0, 0, 230, 1726, 1, 0, 0, 0, 232, 1736, 1, 0, 0, 0, 234, 1738, 1, 0, 0, 0, 236, 1740, 1, 0, 0, 0, 238, 1755, 1, 0, 0, 0, 240, 1757, 1, 0, 0, 0, 242, 1764, 1, 0, 0, 0, 244, 1796, 1, 0, 0, 0, 246, 1808, 1, 0, 0, 0, 248, 1815, 1, 0, 0, 0, 250, 1825, 1, 0, 0, 0, 252, 1827, 1, 0, 0, 0, 254, 1833, 1, 0, 0, 0, 256, 1844, 1, 0, 0, 0, 258, 1855, 1, 0, 0, 0, 260, 1863, 1, 0, 0, 0, 262, 1881, 1, 0, 0, 0, 264, 1886, 1, 0, 0, 0, 266, 1907, 1, 0, 0, 0, 268, 1943, 1, 0, 0, 0, 270, 1945, 1, 0, 0, 0, 272, 1953, 1, 0, 0, 0, 274, 1983, 1, 0, 0, 0, 276, 1991, 1, 0, 0, 0, 278, 1994, 1, 0, 0, 0, 280, 1998, 1, 0, 0, 0, 282, 2008, 1, 0, 0, 0, 284, 2023, 1, 0, 0, 0, 286, 2025, 1, 0, 0, 0, 288, 2032, 1, 0, 0, 0, 290, 2043, 1, 0, 0, 0, 292, 2046, 1, 0, 0, 0, 294, 2050, 1, 0, 0, 0, 296, 2052, 1, 0, 0, 0, 298, 2057, 1, 0, 0, 0, 300, 2061, 1, 0, 0, 0, 302, 2111, 1, 0, 0, 0, 304, 2127, 1, 0, 0, 0, 306, 2129, 1, 0, 0, 0, 308, 2144, 1, 0, 0, 0, 310, 2146, 1, 0, 0, 0, 312, 2156, 1, 0, 0, 0, 314, 2171, 1, 0, 0, 0, 316, 2174, 1, 0, 0, 0, 318, 2178, 1, 0, 0, 0, 320, 2182, 1, 0, 0, 0, 322, 2197, 1, 0, 0, 0, 324, 2203, 1, 0, 0, 0, 326, 2205, 1, 0, 0, 0, 328, 2214, 1, 0, 0, 0, 330, 2285, 1, 0, 0, 0, 332, 2291, 1, 0, 0, 0, 334, 2307, 1, 0, 0, 0, 336, 2554, 1, 0, 0, 0, 338, 2575, 1, 0, 0, 0, 340, 2577, 1, 0, 0, 0, 342, 2579, 1, 0, 0, 0, 344, 2581, 1, 0, 0, 0, 346, 2597, 1, 0, 0, 0, 348, 2599, 1, 0, 0, 0, 350, 2601, 1, 0, 0, 0, 352, 2648, 1, 0, 0, 0, 354, 2657, 1, 0, 0, 0, 356, 2661, 1, 0, 0, 0, 358, 2667, 1, 0, 0, 0, 360, 2669, 1, 0, 0, 0, 362, 2674, 1, 0, 0, 0, 364, 2679, 1, 0, 0, 0, 366, 2687, 1, 0, 0, 0, 368, 2727, 1, 0, 0, 0, 370, 2738, 1, 0, 0, 0, 372, 2745, 1, 0, 0, 0, 374, 2747, 1, 0, 0, 0, 376, 2768, 1, 0, 0, 0, 378, 2770, 1, 0, 0, 0, 380, 2772, 1, 0, 0, 0, 382, 2786, 1, 0, 0, 0, 384, 2793, 1, 0, 0, 0, 386, 2807, 1, 0, 0, 0, 388, 2809, 1, 0, 0, 0, 390, 2811, 1, 0, 0, 0, 392, 394, 3, 2, 1, 0, 393, 392, 1, 0, 0, 0, 394, 397, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 398, 399, 5, 0, 0, 1, 399, 1, 1, 0, 0, 0, 400, 402, 3, 4, 2, 0, 401, 403, 5, 262, 0, 0, 402, 401, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 3, 1, 0, 0, 0, 404, 427, 3, 208, 104, 0, 405, 427, 3, 6, 3, 0, 406, 427, 3, 8, 4, 0, 407, 427, 3, 26, 13, 0, 408, 427, 3, 64, 32, 0, 409, 427, 3, 66, 33, 0, 410, 427, 3, 68, 34, 0, 411, 427, 3, 74, 37, 0, 412, 427, 3, 88, 44, 0, 413, 427, 3, 94, 47, 0, 414, 427, 3, 100, 50, 0, 415, 427, 3, 102, 51, 0, 416, 427, 3, 108, 54, 0, 417, 427, 3, 110, 55, 0, 418, 427, 3, 112, 56, 0, 419, 427, 3, 144, 72, 0, 420, 427, 3, 152, 76, 0, 421, 427, 3, 154, 77, 0, 422, 427, 3, 156, 78, 0, 423, 427, 3, 158, 79, 0, 424, 427, 3, 160, 80, 0, 425, 427, 3, 162, 81, 0, 426, 404, 1, 0, 0, 0, 426, 405, 1, 0, 0, 0, 426, 406, 1, 0, 0, 0, 426, 407, 1, 0, 0, 0, 426, 408, 1, 0, 0, 0, 426, 409, 1, 0, 0, 0, 426, 410, 1, 0, 0, 0, 426, 411, 1, 0, 0, 0, 426, 412, 1, 0, 0, 0, 426, 413, 1, 0, 0, 0, 426, 414, 1, 0, 0, 0, 426, 415, 1, 0, 0, 0, 426, 416, 1, 0, 0, 0, 426, 417, 1, 0, 0, 0, 426, 418, 1, 0, 0, 0, 426, 419, 1, 0, 0, 0, 426, 420, 1, 0, 0, 0, 426, 421, 1, 0, 0, 0, 426, 422, 1, 0, 0, 0, 426, 423, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 5, 1, 0, 0, 0, 428, 429, 5, 203, 0, 0, 429, 430, 3, 184, 92, 0, 430, 7, 1, 0, 0, 0, 431, 440, 3, 18, 9, 0, 432, 440, 3, 20, 10, 0, 433, 440, 3, 22, 11, 0, 434, 440, 3, 24, 12, 0, 435, 440, 3, 16, 8, 0, 436, 440, 3, 14, 7, 0, 437, 440, 3, 12, 6, 0, 438, 440, 3, 10, 5, 0, 439, 431, 1, 0, 0, 0, 439, 432, 1, 0, 0, 0, 439, 433, 1, 0, 0, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 9, 1, 0, 0, 0, 441, 443, 5, 37, 0, 0, 442, 444, 5, 19, 0, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 447, 5, 188, 0, 0, 446, 448, 3, 172, 86, 0, 447, 446, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 465, 3, 174, 87, 0, 450, 451, 5, 265, 0, 0, 451, 456, 3, 218, 109, 0, 452, 453, 5, 263, 0, 0, 453, 455, 3, 218, 109, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 461, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 460, 5, 263, 0, 0, 460, 462, 3, 212, 106, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 5, 266, 0, 0, 464, 466, 1, 0, 0, 0, 465, 450, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 473, 1, 0, 0, 0, 467, 468, 5, 17, 0, 0, 468, 471, 5, 26, 0, 0, 469, 472, 3, 312, 156, 0, 470, 472, 3, 256, 128, 0, 471, 469, 1, 0, 0, 0, 471, 470, 1, 0, 0, 0, 472, 474, 1, 0, 0, 0, 473, 467, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 478, 3, 198, 99, 0, 476, 477, 5, 9, 0, 0, 477, 479, 3, 208, 104, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 11, 1, 0, 0, 0, 480, 482, 5, 37, 0, 0, 481, 483, 5, 19, 0, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 5, 188, 0, 0, 485, 487, 3, 172, 86, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 489, 3, 174, 87, 0, 489, 493, 5, 115, 0, 0, 490, 494, 3, 186, 93, 0, 491, 492, 5, 147, 0, 0, 492, 494, 3, 338, 169, 0, 493, 490, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 494, 498, 1, 0, 0, 0, 495, 496, 5, 17, 0, 0, 496, 497, 5, 26, 0, 0, 497, 499, 3, 256, 128, 0, 498, 495, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 198, 99, 0, 501, 13, 1, 0, 0, 0, 502, 504, 5, 37, 0, 0, 503, 505, 5, 19, 0, 0, 504, 503, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 508, 5, 188, 0, 0, 507, 509, 3, 172, 86, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 528, 3, 174, 87, 0, 511, 512, 5, 265, 0, 0, 512, 517, 3, 220, 110, 0, 513, 514, 5, 263, 0, 0, 514, 516, 3, 220, 110, 0, 515, 513, 1, 0, 0, 0, 516, 519, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 524, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 520, 521, 5, 263, 0, 0, 521, 522, 5, 150, 0, 0, 522, 523, 5, 110, 0, 0, 523, 525, 3, 312, 156, 0, 524, 520, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 5, 266, 0, 0, 527, 529, 1, 0, 0, 0, 528, 511, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 535, 1, 0, 0, 0, 530, 531, 5, 150, 0, 0, 531, 533, 5, 110, 0, 0, 532, 534, 3, 312, 156, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 530, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 540, 1, 0, 0, 0, 537, 538, 5, 145, 0, 0, 538, 539, 5, 26, 0, 0, 539, 541, 3, 238, 119, 0, 540, 537, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 543, 1, 0, 0, 0, 542, 544, 3, 224, 112, 0, 543, 542, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 5, 23, 0, 0, 546, 547, 5, 9, 0, 0, 547, 550, 5, 111, 0, 0, 548, 549, 5, 25, 0, 0, 549, 551, 3, 254, 127, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 554, 1, 0, 0, 0, 552, 553, 5, 9, 0, 0, 553, 555, 3, 208, 104, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 15, 1, 0, 0, 0, 556, 557, 5, 37, 0, 0, 557, 559, 5, 212, 0, 0, 558, 560, 3, 172, 86, 0, 559, 558, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 563, 3, 178, 89, 0, 562, 564, 3, 204, 102, 0, 563, 562, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 566, 1, 0, 0, 0, 565, 567, 3, 224, 112, 0, 566, 565, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 570, 1, 0, 0, 0, 568, 569, 5, 25, 0, 0, 569, 571, 3, 254, 127, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 5, 9, 0, 0, 573, 574, 3, 208, 104, 0, 574, 17, 1, 0, 0, 0, 575, 576, 5, 37, 0, 0, 576, 578, 7, 0, 0, 0, 577, 579, 3, 172, 86, 0, 578, 577, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 582, 3, 176, 88, 0, 581, 583, 3, 224, 112, 0, 582, 581, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 585, 5, 24, 0, 0, 585, 587, 3, 338, 169, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 19, 1, 0, 0, 0, 588, 589, 5, 37, 0, 0, 589, 590, 5, 166, 0, 0, 590, 591, 3, 384, 192, 0, 591, 21, 1, 0, 0, 0, 592, 594, 5, 37, 0, 0, 593, 595, 5, 12, 0, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 598, 5, 84, 0, 0, 597, 599, 3, 172, 86, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 613, 3, 180, 90, 0, 601, 610, 5, 265, 0, 0, 602, 607, 3, 352, 176, 0, 603, 604, 5, 263, 0, 0, 604, 606, 3, 352, 176, 0, 605, 603, 1, 0, 0, 0, 606, 609, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 611, 1, 0, 0, 0, 609, 607, 1, 0, 0, 0, 610, 602, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 614, 5, 266, 0, 0, 613, 601, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 5, 160, 0, 0, 616, 619, 3, 352, 176, 0, 617, 618, 5, 102, 0, 0, 618, 620, 3, 352, 176, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 5, 24, 0, 0, 622, 626, 5, 274, 0, 0, 623, 624, 5, 104, 0, 0, 624, 625, 5, 249, 0, 0, 625, 627, 5, 274, 0, 0, 626, 623, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 206, 0, 0, 629, 630, 5, 249, 0, 0, 630, 631, 5, 274, 0, 0, 631, 632, 5, 126, 0, 0, 632, 633, 5, 249, 0, 0, 633, 637, 5, 274, 0, 0, 634, 635, 5, 18, 0, 0, 635, 636, 5, 249, 0, 0, 636, 638, 5, 274, 0, 0, 637, 634, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 642, 1, 0, 0, 0, 639, 640, 5, 20, 0, 0, 640, 641, 5, 249, 0, 0, 641, 643, 5, 274, 0, 0, 642, 639, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 647, 1, 0, 0, 0, 644, 645, 5, 187, 0, 0, 645, 646, 5, 249, 0, 0, 646, 648, 5, 274, 0, 0, 647, 644, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 652, 1, 0, 0, 0, 649, 650, 5, 76, 0, 0, 650, 651, 5, 249, 0, 0, 651, 653, 5, 274, 0, 0, 652, 649, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 23, 1, 0, 0, 0, 654, 655, 5, 37, 0, 0, 655, 657, 5, 84, 0, 0, 656, 658, 3, 172, 86, 0, 657, 656, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 672, 3, 180, 90, 0, 660, 669, 5, 265, 0, 0, 661, 666, 3, 352, 176, 0, 662, 663, 5, 263, 0, 0, 663, 665, 3, 352, 176, 0, 664, 662, 1, 0, 0, 0, 665, 668, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 669, 661, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 673, 5, 266, 0, 0, 672, 660, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 676, 1, 0, 0, 0, 674, 675, 5, 160, 0, 0, 675, 677, 3, 352, 176, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 24, 0, 0, 679, 680, 5, 274, 0, 0, 680, 681, 5, 186, 0, 0, 681, 682, 5, 249, 0, 0, 682, 683, 3, 338, 169, 0, 683, 25, 1, 0, 0, 0, 684, 703, 3, 28, 14, 0, 685, 703, 3, 62, 31, 0, 686, 703, 3, 60, 30, 0, 687, 703, 3, 58, 29, 0, 688, 703, 3, 54, 27, 0, 689, 703, 3, 56, 28, 0, 690, 703, 3, 52, 26, 0, 691, 703, 3, 48, 24, 0, 692, 703, 3, 50, 25, 0, 693, 703, 3, 46, 23, 0, 694, 703, 3, 44, 22, 0, 695, 703, 3, 42, 21, 0, 696, 703, 3, 40, 20, 0, 697, 703, 3, 34, 17, 0, 698, 703, 3, 30, 15, 0, 699, 703, 3, 32, 16, 0, 700, 703, 3, 36, 18, 0, 701, 703, 3, 38, 19, 0, 702, 684, 1, 0, 0, 0, 702, 685, 1, 0, 0, 0, 702, 686, 1, 0, 0, 0, 702, 687, 1, 0, 0, 0, 702, 688, 1, 0, 0, 0, 702, 689, 1, 0, 0, 0, 702, 690, 1, 0, 0, 0, 702, 691, 1, 0, 0, 0, 702, 692, 1, 0, 0, 0, 702, 693, 1, 0, 0, 0, 702, 694, 1, 0, 0, 0, 702, 695, 1, 0, 0, 0, 702, 696, 1, 0, 0, 0, 702, 697, 1, 0, 0, 0, 702, 698, 1, 0, 0, 0, 702, 699, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 702, 701, 1, 0, 0, 0, 703, 27, 1, 0, 0, 0, 704, 705, 5, 4, 0, 0, 705, 706, 5, 46, 0, 0, 706, 707, 3, 184, 92, 0, 707, 708, 5, 176, 0, 0, 708, 709, 5, 142, 0, 0, 709, 710, 7, 1, 0, 0, 710, 711, 3, 384, 192, 0, 711, 29, 1, 0, 0, 0, 712, 713, 5, 4, 0, 0, 713, 714, 5, 188, 0, 0, 714, 715, 3, 186, 93, 0, 715, 716, 5, 176, 0, 0, 716, 717, 5, 32, 0, 0, 717, 718, 5, 182, 0, 0, 718, 719, 3, 192, 96, 0, 719, 720, 5, 265, 0, 0, 720, 721, 3, 234, 117, 0, 721, 722, 5, 249, 0, 0, 722, 728, 3, 338, 169, 0, 723, 724, 5, 263, 0, 0, 724, 725, 3, 234, 117, 0, 725, 726, 5, 249, 0, 0, 726, 727, 3, 338, 169, 0, 727, 729, 1, 0, 0, 0, 728, 723, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 266, 0, 0, 731, 31, 1, 0, 0, 0, 732, 733, 5, 4, 0, 0, 733, 734, 5, 188, 0, 0, 734, 737, 3, 186, 93, 0, 735, 736, 5, 145, 0, 0, 736, 738, 3, 326, 163, 0, 737, 735, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 750, 5, 176, 0, 0, 740, 741, 5, 30, 0, 0, 741, 742, 5, 94, 0, 0, 742, 747, 3, 338, 169, 0, 743, 744, 5, 216, 0, 0, 744, 745, 5, 151, 0, 0, 745, 746, 5, 249, 0, 0, 746, 748, 3, 386, 193, 0, 747, 743, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 751, 1, 0, 0, 0, 749, 751, 5, 197, 0, 0, 750, 740, 1, 0, 0, 0, 750, 749, 1, 0, 0, 0, 751, 33, 1, 0, 0, 0, 752, 753, 5, 4, 0, 0, 753, 754, 5, 188, 0, 0, 754, 755, 3, 186, 93, 0, 755, 756, 5, 31, 0, 0, 756, 757, 3, 192, 96, 0, 757, 758, 3, 226, 113, 0, 758, 35, 1, 0, 0, 0, 759, 760, 5, 4, 0, 0, 760, 761, 5, 188, 0, 0, 761, 762, 3, 186, 93, 0, 762, 764, 5, 58, 0, 0, 763, 765, 5, 32, 0, 0, 764, 763, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 3, 192, 96, 0, 767, 37, 1, 0, 0, 0, 768, 769, 5, 4, 0, 0, 769, 770, 5, 188, 0, 0, 770, 771, 3, 186, 93, 0, 771, 772, 5, 176, 0, 0, 772, 773, 5, 142, 0, 0, 773, 774, 7, 1, 0, 0, 774, 775, 3, 384, 192, 0, 775, 39, 1, 0, 0, 0, 776, 777, 5, 4, 0, 0, 777, 778, 5, 188, 0, 0, 778, 784, 3, 186, 93, 0, 779, 785, 5, 158, 0, 0, 780, 782, 5, 1, 0, 0, 781, 783, 3, 172, 86, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 785, 1, 0, 0, 0, 784, 779, 1, 0, 0, 0, 784, 780, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 5, 33, 0, 0, 787, 788, 5, 265, 0, 0, 788, 793, 3, 226, 113, 0, 789, 790, 5, 263, 0, 0, 790, 792, 3, 226, 113, 0, 791, 789, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 796, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 797, 5, 266, 0, 0, 797, 41, 1, 0, 0, 0, 798, 799, 5, 4, 0, 0, 799, 800, 5, 188, 0, 0, 800, 801, 3, 186, 93, 0, 801, 802, 5, 1, 0, 0, 802, 804, 5, 32, 0, 0, 803, 805, 3, 172, 86, 0, 804, 803, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 3, 228, 114, 0, 807, 43, 1, 0, 0, 0, 808, 809, 5, 4, 0, 0, 809, 810, 5, 188, 0, 0, 810, 811, 3, 186, 93, 0, 811, 813, 5, 4, 0, 0, 812, 814, 5, 32, 0, 0, 813, 812, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 824, 3, 192, 96, 0, 816, 820, 5, 176, 0, 0, 817, 821, 3, 232, 116, 0, 818, 819, 5, 34, 0, 0, 819, 821, 3, 338, 169, 0, 820, 817, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 825, 1, 0, 0, 0, 822, 823, 5, 58, 0, 0, 823, 825, 5, 51, 0, 0, 824, 816, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 825, 45, 1, 0, 0, 0, 826, 827, 5, 4, 0, 0, 827, 828, 5, 188, 0, 0, 828, 829, 3, 186, 93, 0, 829, 831, 5, 1, 0, 0, 830, 832, 3, 172, 86, 0, 831, 830, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 845, 1, 0, 0, 0, 833, 834, 5, 145, 0, 0, 834, 837, 3, 326, 163, 0, 835, 836, 5, 24, 0, 0, 836, 838, 3, 338, 169, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 841, 3, 246, 123, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 846, 1, 0, 0, 0, 842, 843, 5, 154, 0, 0, 843, 844, 5, 145, 0, 0, 844, 846, 3, 244, 122, 0, 845, 833, 1, 0, 0, 0, 845, 842, 1, 0, 0, 0, 846, 47, 1, 0, 0, 0, 847, 848, 5, 4, 0, 0, 848, 849, 5, 188, 0, 0, 849, 852, 3, 186, 93, 0, 850, 851, 5, 145, 0, 0, 851, 853, 3, 326, 163, 0, 852, 850, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 866, 5, 176, 0, 0, 855, 856, 5, 72, 0, 0, 856, 867, 3, 236, 118, 0, 857, 858, 5, 168, 0, 0, 858, 859, 5, 79, 0, 0, 859, 867, 3, 260, 130, 0, 860, 861, 5, 24, 0, 0, 861, 867, 3, 338, 169, 0, 862, 863, 5, 25, 0, 0, 863, 867, 3, 254, 127, 0, 864, 865, 5, 175, 0, 0, 865, 867, 3, 254, 127, 0, 866, 855, 1, 0, 0, 0, 866, 857, 1, 0, 0, 0, 866, 860, 1, 0, 0, 0, 866, 862, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 867, 49, 1, 0, 0, 0, 868, 869, 5, 4, 0, 0, 869, 870, 5, 188, 0, 0, 870, 871, 3, 186, 93, 0, 871, 872, 5, 155, 0, 0, 872, 873, 5, 146, 0, 0, 873, 51, 1, 0, 0, 0, 874, 875, 5, 4, 0, 0, 875, 876, 5, 188, 0, 0, 876, 877, 3, 186, 93, 0, 877, 879, 5, 58, 0, 0, 878, 880, 3, 170, 85, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 889, 1, 0, 0, 0, 881, 882, 5, 145, 0, 0, 882, 884, 3, 326, 163, 0, 883, 885, 5, 22, 0, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 890, 1, 0, 0, 0, 886, 887, 5, 154, 0, 0, 887, 888, 5, 145, 0, 0, 888, 890, 3, 244, 122, 0, 889, 881, 1, 0, 0, 0, 889, 886, 1, 0, 0, 0, 890, 53, 1, 0, 0, 0, 891, 892, 5, 4, 0, 0, 892, 893, 5, 212, 0, 0, 893, 895, 3, 188, 94, 0, 894, 896, 3, 204, 102, 0, 895, 894, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 5, 9, 0, 0, 898, 899, 3, 208, 104, 0, 899, 55, 1, 0, 0, 0, 900, 901, 5, 4, 0, 0, 901, 902, 5, 212, 0, 0, 902, 903, 3, 188, 94, 0, 903, 904, 5, 156, 0, 0, 904, 905, 5, 193, 0, 0, 905, 906, 3, 188, 94, 0, 906, 57, 1, 0, 0, 0, 907, 908, 5, 4, 0, 0, 908, 909, 5, 212, 0, 0, 909, 910, 3, 188, 94, 0, 910, 911, 5, 176, 0, 0, 911, 912, 5, 142, 0, 0, 912, 913, 7, 1, 0, 0, 913, 914, 3, 380, 190, 0, 914, 59, 1, 0, 0, 0, 915, 916, 5, 4, 0, 0, 916, 917, 5, 188, 0, 0, 917, 918, 3, 186, 93, 0, 918, 919, 5, 156, 0, 0, 919, 920, 5, 193, 0, 0, 920, 921, 3, 186, 93, 0, 921, 61, 1, 0, 0, 0, 922, 923, 5, 4, 0, 0, 923, 924, 5, 212, 0, 0, 924, 925, 3, 188, 94, 0, 925, 926, 7, 2, 0, 0, 926, 927, 5, 25, 0, 0, 927, 928, 3, 254, 127, 0, 928, 63, 1, 0, 0, 0, 929, 931, 5, 196, 0, 0, 930, 932, 5, 188, 0, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 934, 1, 0, 0, 0, 933, 935, 3, 170, 85, 0, 934, 933, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 3, 186, 93, 0, 937, 65, 1, 0, 0, 0, 938, 940, 5, 56, 0, 0, 939, 941, 5, 46, 0, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 1, 0, 0, 0, 942, 944, 7, 3, 0, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 946, 3, 380, 190, 0, 946, 67, 1, 0, 0, 0, 947, 950, 3, 70, 35, 0, 948, 950, 3, 72, 36, 0, 949, 947, 1, 0, 0, 0, 949, 948, 1, 0, 0, 0, 950, 69, 1, 0, 0, 0, 951, 952, 5, 36, 0, 0, 952, 953, 5, 182, 0, 0, 953, 955, 3, 186, 93, 0, 954, 956, 3, 312, 156, 0, 955, 954, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 969, 1, 0, 0, 0, 957, 958, 5, 190, 0, 0, 958, 959, 5, 185, 0, 0, 959, 960, 5, 265, 0, 0, 960, 961, 3, 386, 193, 0, 961, 967, 5, 266, 0, 0, 962, 963, 5, 157, 0, 0, 963, 964, 5, 265, 0, 0, 964, 965, 3, 386, 193, 0, 965, 966, 5, 266, 0, 0, 966, 968, 1, 0, 0, 0, 967, 962, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 970, 1, 0, 0, 0, 969, 957, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 71, 1, 0, 0, 0, 971, 972, 5, 36, 0, 0, 972, 973, 5, 96, 0, 0, 973, 974, 5, 182, 0, 0, 974, 980, 3, 186, 93, 0, 975, 976, 5, 145, 0, 0, 976, 977, 5, 265, 0, 0, 977, 978, 3, 326, 163, 0, 978, 979, 5, 266, 0, 0, 979, 981, 1, 0, 0, 0, 980, 975, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 73, 1, 0, 0, 0, 982, 989, 3, 86, 43, 0, 983, 989, 3, 84, 42, 0, 984, 989, 3, 82, 41, 0, 985, 989, 3, 78, 39, 0, 986, 989, 3, 80, 40, 0, 987, 989, 3, 76, 38, 0, 988, 982, 1, 0, 0, 0, 988, 983, 1, 0, 0, 0, 988, 984, 1, 0, 0, 0, 988, 985, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 75, 1, 0, 0, 0, 990, 991, 5, 58, 0, 0, 991, 993, 7, 0, 0, 0, 992, 994, 3, 170, 85, 0, 993, 992, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 997, 3, 184, 92, 0, 996, 998, 7, 4, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 77, 1, 0, 0, 0, 999, 1000, 5, 58, 0, 0, 1000, 1002, 5, 212, 0, 0, 1001, 1003, 3, 170, 85, 0, 1002, 1001, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 3, 188, 94, 0, 1005, 79, 1, 0, 0, 0, 1006, 1007, 5, 58, 0, 0, 1007, 1009, 5, 188, 0, 0, 1008, 1010, 3, 170, 85, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 3, 186, 93, 0, 1012, 1014, 5, 22, 0, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 81, 1, 0, 0, 0, 1015, 1017, 5, 58, 0, 0, 1016, 1018, 5, 96, 0, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1020, 5, 182, 0, 0, 1020, 1023, 3, 186, 93, 0, 1021, 1022, 5, 145, 0, 0, 1022, 1024, 3, 326, 163, 0, 1023, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 83, 1, 0, 0, 0, 1025, 1027, 5, 58, 0, 0, 1026, 1028, 5, 12, 0, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1031, 5, 84, 0, 0, 1030, 1032, 3, 170, 85, 0, 1031, 1030, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1046, 3, 190, 95, 0, 1034, 1043, 5, 265, 0, 0, 1035, 1040, 3, 352, 176, 0, 1036, 1037, 5, 263, 0, 0, 1037, 1039, 3, 352, 176, 0, 1038, 1036, 1, 0, 0, 0, 1039, 1042, 1, 0, 0, 0, 1040, 1038, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1044, 1, 0, 0, 0, 1042, 1040, 1, 0, 0, 0, 1043, 1035, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 5, 266, 0, 0, 1046, 1034, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 85, 1, 0, 0, 0, 1048, 1049, 5, 58, 0, 0, 1049, 1050, 5, 166, 0, 0, 1050, 1051, 3, 384, 192, 0, 1051, 87, 1, 0, 0, 0, 1052, 1055, 3, 90, 45, 0, 1053, 1055, 3, 92, 46, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1053, 1, 0, 0, 0, 1055, 89, 1, 0, 0, 0, 1056, 1057, 5, 86, 0, 0, 1057, 1058, 5, 166, 0, 0, 1058, 1059, 3, 384, 192, 0, 1059, 1060, 5, 193, 0, 0, 1060, 1061, 5, 87, 0, 0, 1061, 1062, 3, 384, 192, 0, 1062, 91, 1, 0, 0, 0, 1063, 1064, 5, 86, 0, 0, 1064, 1065, 3, 376, 188, 0, 1065, 1066, 5, 136, 0, 0, 1066, 1068, 3, 378, 189, 0, 1067, 1069, 3, 380, 190, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 5, 193, 0, 0, 1071, 1072, 3, 382, 191, 0, 1072, 93, 1, 0, 0, 0, 1073, 1076, 3, 96, 48, 0, 1074, 1076, 3, 98, 49, 0, 1075, 1073, 1, 0, 0, 0, 1075, 1074, 1, 0, 0, 0, 1076, 95, 1, 0, 0, 0, 1077, 1078, 5, 161, 0, 0, 1078, 1079, 5, 166, 0, 0, 1079, 1080, 3, 384, 192, 0, 1080, 1081, 5, 82, 0, 0, 1081, 1082, 5, 87, 0, 0, 1082, 1083, 3, 384, 192, 0, 1083, 97, 1, 0, 0, 0, 1084, 1088, 5, 161, 0, 0, 1085, 1086, 5, 86, 0, 0, 1086, 1087, 5, 137, 0, 0, 1087, 1089, 5, 78, 0, 0, 1088, 1085, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 3, 376, 188, 0, 1091, 1092, 5, 136, 0, 0, 1092, 1094, 3, 378, 189, 0, 1093, 1095, 3, 380, 190, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1102, 5, 82, 0, 0, 1097, 1103, 3, 382, 191, 0, 1098, 1100, 5, 166, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 3, 384, 192, 0, 1102, 1097, 1, 0, 0, 0, 1102, 1099, 1, 0, 0, 0, 1103, 99, 1, 0, 0, 0, 1104, 1106, 3, 210, 105, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 5, 99, 0, 0, 1108, 1110, 7, 5, 0, 0, 1109, 1111, 5, 188, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 3, 186, 93, 0, 1113, 1115, 3, 312, 156, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1128, 1, 0, 0, 0, 1116, 1117, 5, 145, 0, 0, 1117, 1118, 5, 265, 0, 0, 1118, 1123, 3, 326, 163, 0, 1119, 1120, 5, 263, 0, 0, 1120, 1122, 3, 326, 163, 0, 1121, 1119, 1, 0, 0, 0, 1122, 1125, 1, 0, 0, 0, 1123, 1121, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1126, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1126, 1127, 5, 266, 0, 0, 1127, 1129, 1, 0, 0, 0, 1128, 1116, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 3, 208, 104, 0, 1131, 101, 1, 0, 0, 0, 1132, 1135, 3, 104, 52, 0, 1133, 1135, 3, 106, 53, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1133, 1, 0, 0, 0, 1135, 103, 1, 0, 0, 0, 1136, 1138, 5, 50, 0, 0, 1137, 1139, 5, 82, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1142, 3, 186, 93, 0, 1141, 1143, 3, 276, 138, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 105, 1, 0, 0, 0, 1144, 1145, 5, 50, 0, 0, 1145, 1150, 3, 186, 93, 0, 1146, 1148, 5, 9, 0, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1151, 3, 384, 192, 0, 1150, 1147, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1161, 5, 82, 0, 0, 1153, 1158, 3, 300, 150, 0, 1154, 1155, 5, 263, 0, 0, 1155, 1157, 3, 300, 150, 0, 1156, 1154, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1153, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1164, 1, 0, 0, 0, 1163, 1165, 3, 276, 138, 0, 1164, 1163, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 107, 1, 0, 0, 0, 1166, 1167, 5, 54, 0, 0, 1167, 1168, 3, 186, 93, 0, 1168, 1169, 5, 176, 0, 0, 1169, 1179, 3, 200, 100, 0, 1170, 1171, 5, 82, 0, 0, 1171, 1176, 3, 300, 150, 0, 1172, 1173, 5, 263, 0, 0, 1173, 1175, 3, 300, 150, 0, 1174, 1172, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1170, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1183, 3, 276, 138, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 109, 1, 0, 0, 0, 1184, 1185, 5, 207, 0, 0, 1185, 1187, 5, 103, 0, 0, 1186, 1188, 5, 188, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 3, 186, 93, 0, 1190, 1192, 3, 312, 156, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 3, 208, 104, 0, 1194, 111, 1, 0, 0, 0, 1195, 1208, 3, 132, 66, 0, 1196, 1208, 3, 134, 67, 0, 1197, 1208, 3, 136, 68, 0, 1198, 1208, 3, 130, 65, 0, 1199, 1208, 3, 128, 64, 0, 1200, 1208, 3, 126, 63, 0, 1201, 1208, 3, 124, 62, 0, 1202, 1208, 3, 122, 61, 0, 1203, 1208, 3, 120, 60, 0, 1204, 1208, 3, 118, 59, 0, 1205, 1208, 3, 116, 58, 0, 1206, 1208, 3, 114, 57, 0, 1207, 1195, 1, 0, 0, 0, 1207, 1196, 1, 0, 0, 0, 1207, 1197, 1, 0, 0, 0, 1207, 1198, 1, 0, 0, 0, 1207, 1199, 1, 0, 0, 0, 1207, 1200, 1, 0, 0, 0, 1207, 1201, 1, 0, 0, 0, 1207, 1202, 1, 0, 0, 0, 1207, 1203, 1, 0, 0, 0, 1207, 1204, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1206, 1, 0, 0, 0, 1208, 113, 1, 0, 0, 0, 1209, 1210, 5, 179, 0, 0, 1210, 1222, 7, 6, 0, 0, 1211, 1213, 5, 115, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1219, 3, 338, 169, 0, 1215, 1216, 5, 271, 0, 0, 1216, 1218, 3, 338, 169, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1212, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 115, 1, 0, 0, 0, 1224, 1225, 5, 179, 0, 0, 1225, 1228, 5, 189, 0, 0, 1226, 1227, 5, 94, 0, 0, 1227, 1229, 3, 186, 93, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1241, 1, 0, 0, 0, 1230, 1232, 5, 115, 0, 0, 1231, 1230, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1238, 3, 338, 169, 0, 1234, 1235, 5, 271, 0, 0, 1235, 1237, 3, 338, 169, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1240, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1242, 1, 0, 0, 0, 1240, 1238, 1, 0, 0, 0, 1241, 1231, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 117, 1, 0, 0, 0, 1243, 1245, 5, 179, 0, 0, 1244, 1246, 7, 7, 0, 0, 1245, 1244, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1250, 5, 85, 0, 0, 1248, 1249, 5, 94, 0, 0, 1249, 1251, 3, 184, 92, 0, 1250, 1248, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1263, 1, 0, 0, 0, 1252, 1254, 5, 115, 0, 0, 1253, 1252, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1260, 3, 338, 169, 0, 1256, 1257, 5, 271, 0, 0, 1257, 1259, 3, 338, 169, 0, 1258, 1256, 1, 0, 0, 0, 1259, 1262, 1, 0, 0, 0, 1260, 1258, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1264, 1, 0, 0, 0, 1262, 1260, 1, 0, 0, 0, 1263, 1253, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 119, 1, 0, 0, 0, 1265, 1266, 5, 179, 0, 0, 1266, 1267, 5, 37, 0, 0, 1267, 1268, 5, 188, 0, 0, 1268, 1269, 3, 186, 93, 0, 1269, 121, 1, 0, 0, 0, 1270, 1271, 5, 179, 0, 0, 1271, 1272, 5, 37, 0, 0, 1272, 1273, 5, 212, 0, 0, 1273, 1274, 3, 188, 94, 0, 1274, 123, 1, 0, 0, 0, 1275, 1276, 5, 179, 0, 0, 1276, 1277, 5, 188, 0, 0, 1277, 1278, 5, 182, 0, 0, 1278, 1279, 3, 186, 93, 0, 1279, 125, 1, 0, 0, 0, 1280, 1281, 5, 179, 0, 0, 1281, 1282, 5, 32, 0, 0, 1282, 1283, 5, 182, 0, 0, 1283, 1284, 3, 186, 93, 0, 1284, 127, 1, 0, 0, 0, 1285, 1287, 5, 179, 0, 0, 1286, 1288, 5, 154, 0, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 5, 146, 0, 0, 1290, 1291, 3, 186, 93, 0, 1291, 129, 1, 0, 0, 0, 1292, 1293, 5, 179, 0, 0, 1293, 1294, 5, 73, 0, 0, 1294, 1295, 5, 94, 0, 0, 1295, 1305, 3, 186, 93, 0, 1296, 1297, 5, 145, 0, 0, 1297, 1298, 5, 265, 0, 0, 1298, 1301, 3, 326, 163, 0, 1299, 1300, 5, 263, 0, 0, 1300, 1302, 3, 326, 163, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 5, 266, 0, 0, 1304, 1306, 1, 0, 0, 0, 1305, 1296, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 131, 1, 0, 0, 0, 1307, 1309, 5, 179, 0, 0, 1308, 1310, 5, 39, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 5, 167, 0, 0, 1312, 133, 1, 0, 0, 0, 1313, 1314, 5, 179, 0, 0, 1314, 1315, 5, 166, 0, 0, 1315, 1316, 5, 86, 0, 0, 1316, 1317, 5, 87, 0, 0, 1317, 1318, 3, 384, 192, 0, 1318, 135, 1, 0, 0, 0, 1319, 1334, 3, 138, 69, 0, 1320, 1334, 3, 140, 70, 0, 1321, 1334, 3, 142, 71, 0, 1322, 1323, 5, 179, 0, 0, 1323, 1324, 5, 86, 0, 0, 1324, 1325, 7, 8, 0, 0, 1325, 1331, 3, 384, 192, 0, 1326, 1327, 5, 136, 0, 0, 1327, 1329, 7, 9, 0, 0, 1328, 1330, 3, 380, 190, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1332, 1, 0, 0, 0, 1331, 1326, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1319, 1, 0, 0, 0, 1333, 1320, 1, 0, 0, 0, 1333, 1321, 1, 0, 0, 0, 1333, 1322, 1, 0, 0, 0, 1334, 137, 1, 0, 0, 0, 1335, 1336, 5, 179, 0, 0, 1336, 1337, 5, 86, 0, 0, 1337, 1338, 7, 8, 0, 0, 1338, 1344, 3, 384, 192, 0, 1339, 1340, 5, 136, 0, 0, 1340, 1342, 5, 46, 0, 0, 1341, 1343, 3, 184, 92, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1339, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 139, 1, 0, 0, 0, 1346, 1347, 5, 179, 0, 0, 1347, 1348, 5, 86, 0, 0, 1348, 1349, 7, 8, 0, 0, 1349, 1355, 3, 384, 192, 0, 1350, 1351, 5, 136, 0, 0, 1351, 1353, 5, 188, 0, 0, 1352, 1354, 3, 186, 93, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1356, 1, 0, 0, 0, 1355, 1350, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 141, 1, 0, 0, 0, 1357, 1358, 5, 179, 0, 0, 1358, 1359, 5, 86, 0, 0, 1359, 1360, 7, 8, 0, 0, 1360, 1366, 3, 384, 192, 0, 1361, 1362, 5, 136, 0, 0, 1362, 1364, 5, 32, 0, 0, 1363, 1365, 3, 192, 96, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1361, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 143, 1, 0, 0, 0, 1368, 1372, 3, 146, 73, 0, 1369, 1372, 3, 148, 74, 0, 1370, 1372, 3, 150, 75, 0, 1371, 1368, 1, 0, 0, 0, 1371, 1369, 1, 0, 0, 0, 1371, 1370, 1, 0, 0, 0, 1372, 145, 1, 0, 0, 0, 1373, 1374, 5, 34, 0, 0, 1374, 1375, 5, 136, 0, 0, 1375, 1376, 5, 46, 0, 0, 1376, 1377, 3, 184, 92, 0, 1377, 1380, 5, 108, 0, 0, 1378, 1381, 3, 338, 169, 0, 1379, 1381, 5, 133, 0, 0, 1380, 1378, 1, 0, 0, 0, 1380, 1379, 1, 0, 0, 0, 1381, 147, 1, 0, 0, 0, 1382, 1383, 5, 34, 0, 0, 1383, 1384, 5, 136, 0, 0, 1384, 1385, 5, 188, 0, 0, 1385, 1386, 3, 186, 93, 0, 1386, 1389, 5, 108, 0, 0, 1387, 1390, 3, 338, 169, 0, 1388, 1390, 5, 133, 0, 0, 1389, 1387, 1, 0, 0, 0, 1389, 1388, 1, 0, 0, 0, 1390, 149, 1, 0, 0, 0, 1391, 1392, 5, 34, 0, 0, 1392, 1393, 5, 136, 0, 0, 1393, 1394, 5, 32, 0, 0, 1394, 1395, 3, 192, 96, 0, 1395, 1398, 5, 108, 0, 0, 1396, 1399, 3, 338, 169, 0, 1397, 1399, 5, 133, 0, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1397, 1, 0, 0, 0, 1399, 151, 1, 0, 0, 0, 1400, 1401, 5, 67, 0, 0, 1401, 1402, 3, 4, 2, 0, 1402, 153, 1, 0, 0, 0, 1403, 1409, 5, 176, 0, 0, 1404, 1410, 5, 2, 0, 0, 1405, 1406, 3, 384, 192, 0, 1406, 1407, 5, 249, 0, 0, 1407, 1408, 3, 326, 163, 0, 1408, 1410, 1, 0, 0, 0, 1409, 1404, 1, 0, 0, 0, 1409, 1405, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 155, 1, 0, 0, 0, 1411, 1412, 5, 264, 0, 0, 1412, 1413, 5, 180, 0, 0, 1413, 1423, 5, 265, 0, 0, 1414, 1416, 3, 338, 169, 0, 1415, 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1424, 1, 0, 0, 0, 1417, 1420, 3, 338, 169, 0, 1418, 1419, 5, 263, 0, 0, 1419, 1421, 3, 326, 163, 0, 1420, 1418, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1424, 1, 0, 0, 0, 1422, 1424, 3, 326, 163, 0, 1423, 1415, 1, 0, 0, 0, 1423, 1417, 1, 0, 0, 0, 1423, 1422, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 5, 266, 0, 0, 1426, 157, 1, 0, 0, 0, 1427, 1428, 5, 107, 0, 0, 1428, 1429, 5, 121, 0, 0, 1429, 1430, 3, 186, 93, 0, 1430, 159, 1, 0, 0, 0, 1431, 1432, 5, 118, 0, 0, 1432, 1433, 5, 45, 0, 0, 1433, 1434, 5, 98, 0, 0, 1434, 1436, 5, 274, 0, 0, 1435, 1437, 5, 144, 0, 0, 1436, 1435, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1439, 5, 103, 0, 0, 1439, 1440, 5, 188, 0, 0, 1440, 1450, 3, 186, 93, 0, 1441, 1442, 5, 145, 0, 0, 1442, 1443, 5, 265, 0, 0, 1443, 1446, 3, 326, 163, 0, 1444, 1445, 5, 263, 0, 0, 1445, 1447, 3, 326, 163, 0, 1446, 1444, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 5, 266, 0, 0, 1449, 1451, 1, 0, 0, 0, 1450, 1441, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 161, 1, 0, 0, 0, 1452, 1456, 3, 164, 82, 0, 1453, 1456, 3, 166, 83, 0, 1454, 1456, 3, 168, 84, 0, 1455, 1452, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1455, 1454, 1, 0, 0, 0, 1456, 163, 1, 0, 0, 0, 1457, 1458, 5, 162, 0, 0, 1458, 1471, 3, 186, 93, 0, 1459, 1460, 5, 145, 0, 0, 1460, 1461, 5, 265, 0, 0, 1461, 1466, 3, 326, 163, 0, 1462, 1463, 5, 263, 0, 0, 1463, 1465, 3, 326, 163, 0, 1464, 1462, 1, 0, 0, 0, 1465, 1468, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1469, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1470, 5, 266, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1459, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 165, 1, 0, 0, 0, 1473, 1474, 5, 162, 0, 0, 1474, 1475, 5, 13, 0, 0, 1475, 167, 1, 0, 0, 0, 1476, 1477, 5, 162, 0, 0, 1477, 1478, 5, 85, 0, 0, 1478, 1479, 3, 190, 95, 0, 1479, 169, 1, 0, 0, 0, 1480, 1481, 5, 93, 0, 0, 1481, 1482, 5, 66, 0, 0, 1482, 171, 1, 0, 0, 0, 1483, 1484, 5, 93, 0, 0, 1484, 1485, 5, 132, 0, 0, 1485, 1486, 5, 66, 0, 0, 1486, 173, 1, 0, 0, 0, 1487, 1488, 3, 380, 190, 0, 1488, 175, 1, 0, 0, 0, 1489, 1490, 3, 380, 190, 0, 1490, 177, 1, 0, 0, 0, 1491, 1492, 3, 380, 190, 0, 1492, 179, 1, 0, 0, 0, 1493, 1494, 3, 380, 190, 0, 1494, 181, 1, 0, 0, 0, 1495, 1496, 3, 380, 190, 0, 1496, 183, 1, 0, 0, 0, 1497, 1498, 3, 380, 190, 0, 1498, 185, 1, 0, 0, 0, 1499, 1504, 3, 384, 192, 0, 1500, 1501, 5, 261, 0, 0, 1501, 1503, 3, 384, 192, 0, 1502, 1500, 1, 0, 0, 0, 1503, 1506, 1, 0, 0, 0, 1504, 1502, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 187, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1507, 1512, 3, 384, 192, 0, 1508, 1509, 5, 261, 0, 0, 1509, 1511, 3, 384, 192, 0, 1510, 1508, 1, 0, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 189, 1, 0, 0, 0, 1514, 1512, 1, 0, 0, 0, 1515, 1518, 3, 388, 194, 0, 1516, 1518, 3, 380, 190, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1516, 1, 0, 0, 0, 1518, 191, 1, 0, 0, 0, 1519, 1522, 3, 380, 190, 0, 1520, 1522, 4, 96, 0, 0, 1521, 1519, 1, 0, 0, 0, 1521, 1520, 1, 0, 0, 0, 1522, 193, 1, 0, 0, 0, 1523, 1524, 3, 380, 190, 0, 1524, 195, 1, 0, 0, 0, 1525, 1528, 3, 186, 93, 0, 1526, 1528, 3, 188, 94, 0, 1527, 1525, 1, 0, 0, 0, 1527, 1526, 1, 0, 0, 0, 1528, 197, 1, 0, 0, 0, 1529, 1530, 5, 21, 0, 0, 1530, 1531, 5, 26, 0, 0, 1531, 1533, 3, 312, 156, 0, 1532, 1529, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1536, 3, 224, 112, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1540, 1, 0, 0, 0, 1537, 1538, 5, 168, 0, 0, 1538, 1539, 5, 79, 0, 0, 1539, 1541, 3, 260, 130, 0, 1540, 1537, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1545, 1, 0, 0, 0, 1542, 1543, 5, 216, 0, 0, 1543, 1544, 5, 175, 0, 0, 1544, 1546, 3, 254, 127, 0, 1545, 1542, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1550, 1, 0, 0, 0, 1547, 1548, 5, 23, 0, 0, 1548, 1549, 5, 9, 0, 0, 1549, 1551, 3, 236, 118, 0, 1550, 1547, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1553, 5, 24, 0, 0, 1553, 1555, 3, 338, 169, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1566, 1, 0, 0, 0, 1556, 1557, 5, 30, 0, 0, 1557, 1558, 5, 94, 0, 0, 1558, 1563, 3, 380, 190, 0, 1559, 1560, 5, 216, 0, 0, 1560, 1561, 5, 151, 0, 0, 1561, 1562, 5, 249, 0, 0, 1562, 1564, 5, 277, 0, 0, 1563, 1559, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1567, 1, 0, 0, 0, 1565, 1567, 5, 197, 0, 0, 1566, 1556, 1, 0, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1570, 1, 0, 0, 0, 1568, 1569, 5, 25, 0, 0, 1569, 1571, 3, 254, 127, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 199, 1, 0, 0, 0, 1572, 1577, 3, 202, 101, 0, 1573, 1574, 5, 263, 0, 0, 1574, 1576, 3, 202, 101, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1579, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 201, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1580, 1581, 3, 380, 190, 0, 1581, 1582, 5, 249, 0, 0, 1582, 1583, 3, 326, 163, 0, 1583, 203, 1, 0, 0, 0, 1584, 1586, 5, 265, 0, 0, 1585, 1587, 3, 206, 103, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1594, 1, 0, 0, 0, 1588, 1590, 5, 263, 0, 0, 1589, 1591, 3, 206, 103, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1593, 1, 0, 0, 0, 1592, 1588, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1592, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1597, 1, 0, 0, 0, 1596, 1594, 1, 0, 0, 0, 1597, 1598, 5, 266, 0, 0, 1598, 205, 1, 0, 0, 0, 1599, 1601, 3, 182, 91, 0, 1600, 1602, 3, 224, 112, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 207, 1, 0, 0, 0, 1603, 1605, 3, 210, 105, 0, 1604, 1603, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1607, 3, 264, 132, 0, 1607, 209, 1, 0, 0, 0, 1608, 1609, 5, 216, 0, 0, 1609, 1614, 3, 286, 143, 0, 1610, 1611, 5, 263, 0, 0, 1611, 1613, 3, 286, 143, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1616, 1, 0, 0, 0, 1614, 1612, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 211, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1617, 1618, 5, 150, 0, 0, 1618, 1619, 5, 110, 0, 0, 1619, 1621, 3, 312, 156, 0, 1620, 1622, 5, 53, 0, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1626, 1, 0, 0, 0, 1623, 1627, 5, 225, 0, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1627, 5, 225, 0, 0, 1626, 1623, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1631, 1, 0, 0, 0, 1628, 1632, 5, 226, 0, 0, 1629, 1630, 5, 263, 0, 0, 1630, 1632, 5, 226, 0, 0, 1631, 1628, 1, 0, 0, 0, 1631, 1629, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1645, 1, 0, 0, 0, 1633, 1634, 5, 263, 0, 0, 1634, 1637, 3, 214, 107, 0, 1635, 1637, 3, 214, 107, 0, 1636, 1633, 1, 0, 0, 0, 1636, 1635, 1, 0, 0, 0, 1637, 1642, 1, 0, 0, 0, 1638, 1639, 5, 263, 0, 0, 1639, 1641, 3, 214, 107, 0, 1640, 1638, 1, 0, 0, 0, 1641, 1644, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1642, 1640, 1, 0, 0, 0, 1643, 1646, 1, 0, 0, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1636, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 213, 1, 0, 0, 0, 1647, 1648, 5, 81, 0, 0, 1648, 1649, 5, 110, 0, 0, 1649, 1650, 3, 312, 156, 0, 1650, 1651, 5, 224, 0, 0, 1651, 1652, 3, 186, 93, 0, 1652, 1654, 3, 312, 156, 0, 1653, 1655, 5, 53, 0, 0, 1654, 1653, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1657, 1, 0, 0, 0, 1656, 1658, 5, 225, 0, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1661, 5, 226, 0, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 215, 1, 0, 0, 0, 1662, 1663, 3, 192, 96, 0, 1663, 1666, 3, 352, 176, 0, 1664, 1665, 5, 34, 0, 0, 1665, 1667, 3, 338, 169, 0, 1666, 1664, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 217, 1, 0, 0, 0, 1668, 1669, 3, 182, 91, 0, 1669, 1671, 3, 352, 176, 0, 1670, 1672, 3, 224, 112, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 219, 1, 0, 0, 0, 1673, 1674, 3, 222, 111, 0, 1674, 221, 1, 0, 0, 0, 1675, 1676, 3, 182, 91, 0, 1676, 1684, 3, 352, 176, 0, 1677, 1681, 3, 230, 115, 0, 1678, 1680, 3, 230, 115, 0, 1679, 1678, 1, 0, 0, 0, 1680, 1683, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1685, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1684, 1677, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1687, 1, 0, 0, 0, 1686, 1688, 3, 224, 112, 0, 1687, 1686, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, 1690, 5, 150, 0, 0, 1690, 1692, 5, 110, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 223, 1, 0, 0, 0, 1693, 1694, 5, 34, 0, 0, 1694, 1695, 3, 338, 169, 0, 1695, 225, 1, 0, 0, 0, 1696, 1704, 3, 216, 108, 0, 1697, 1701, 3, 230, 115, 0, 1698, 1700, 3, 230, 115, 0, 1699, 1698, 1, 0, 0, 0, 1700, 1703, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1697, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 227, 1, 0, 0, 0, 1706, 1707, 3, 182, 91, 0, 1707, 1710, 3, 352, 176, 0, 1708, 1709, 5, 34, 0, 0, 1709, 1711, 3, 338, 169, 0, 1710, 1708, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1719, 1, 0, 0, 0, 1712, 1716, 3, 230, 115, 0, 1713, 1715, 3, 230, 115, 0, 1714, 1713, 1, 0, 0, 0, 1715, 1718, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1716, 1714, 1, 0, 0, 0, 1717, 1720, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1719, 1712, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 229, 1, 0, 0, 0, 1721, 1723, 5, 132, 0, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1727, 5, 133, 0, 0, 1725, 1727, 3, 232, 116, 0, 1726, 1722, 1, 0, 0, 0, 1726, 1725, 1, 0, 0, 0, 1727, 231, 1, 0, 0, 0, 1728, 1729, 5, 60, 0, 0, 1729, 1737, 3, 326, 163, 0, 1730, 1731, 5, 35, 0, 0, 1731, 1737, 3, 326, 163, 0, 1732, 1733, 5, 51, 0, 0, 1733, 1737, 3, 326, 163, 0, 1734, 1735, 5, 16, 0, 0, 1735, 1737, 3, 386, 193, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1734, 1, 0, 0, 0, 1737, 233, 1, 0, 0, 0, 1738, 1739, 7, 10, 0, 0, 1739, 235, 1, 0, 0, 0, 1740, 1741, 7, 11, 0, 0, 1741, 237, 1, 0, 0, 0, 1742, 1747, 3, 240, 120, 0, 1743, 1744, 5, 263, 0, 0, 1744, 1746, 3, 240, 120, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1749, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1752, 1, 0, 0, 0, 1749, 1747, 1, 0, 0, 0, 1750, 1751, 5, 263, 0, 0, 1751, 1753, 3, 242, 121, 0, 1752, 1750, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1756, 1, 0, 0, 0, 1754, 1756, 3, 242, 121, 0, 1755, 1742, 1, 0, 0, 0, 1755, 1754, 1, 0, 0, 0, 1756, 239, 1, 0, 0, 0, 1757, 1759, 5, 89, 0, 0, 1758, 1760, 3, 312, 156, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 5, 146, 0, 0, 1762, 1763, 3, 386, 193, 0, 1763, 241, 1, 0, 0, 0, 1764, 1766, 5, 154, 0, 0, 1765, 1767, 3, 312, 156, 0, 1766, 1765, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 5, 265, 0, 0, 1769, 1770, 5, 145, 0, 0, 1770, 1776, 3, 244, 122, 0, 1771, 1772, 5, 263, 0, 0, 1772, 1773, 5, 145, 0, 0, 1773, 1775, 3, 244, 122, 0, 1774, 1771, 1, 0, 0, 0, 1775, 1778, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1776, 1774, 1, 0, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1776, 1, 0, 0, 0, 1779, 1780, 5, 266, 0, 0, 1780, 243, 1, 0, 0, 0, 1781, 1782, 5, 210, 0, 0, 1782, 1783, 3, 250, 125, 0, 1783, 1784, 3, 326, 163, 0, 1784, 1797, 1, 0, 0, 0, 1785, 1786, 3, 326, 163, 0, 1786, 1787, 3, 248, 124, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1785, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1794, 5, 211, 0, 0, 1791, 1792, 3, 248, 124, 0, 1792, 1793, 3, 326, 163, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1791, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1797, 1, 0, 0, 0, 1796, 1781, 1, 0, 0, 0, 1796, 1788, 1, 0, 0, 0, 1797, 245, 1, 0, 0, 0, 1798, 1799, 5, 30, 0, 0, 1799, 1800, 5, 94, 0, 0, 1800, 1805, 3, 384, 192, 0, 1801, 1802, 5, 216, 0, 0, 1802, 1803, 5, 151, 0, 0, 1803, 1804, 5, 249, 0, 0, 1804, 1806, 3, 386, 193, 0, 1805, 1801, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1809, 1, 0, 0, 0, 1807, 1809, 5, 197, 0, 0, 1808, 1798, 1, 0, 0, 0, 1808, 1807, 1, 0, 0, 0, 1809, 247, 1, 0, 0, 0, 1810, 1816, 1, 0, 0, 0, 1811, 1816, 5, 251, 0, 0, 1812, 1816, 5, 252, 0, 0, 1813, 1816, 5, 253, 0, 0, 1814, 1816, 5, 254, 0, 0, 1815, 1810, 1, 0, 0, 0, 1815, 1811, 1, 0, 0, 0, 1815, 1812, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1814, 1, 0, 0, 0, 1816, 249, 1, 0, 0, 0, 1817, 1826, 5, 249, 0, 0, 1818, 1826, 5, 250, 0, 0, 1819, 1826, 5, 115, 0, 0, 1820, 1826, 5, 164, 0, 0, 1821, 1826, 5, 163, 0, 0, 1822, 1826, 5, 15, 0, 0, 1823, 1826, 5, 94, 0, 0, 1824, 1826, 3, 248, 124, 0, 1825, 1817, 1, 0, 0, 0, 1825, 1818, 1, 0, 0, 0, 1825, 1819, 1, 0, 0, 0, 1825, 1820, 1, 0, 0, 0, 1825, 1821, 1, 0, 0, 0, 1825, 1822, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1825, 1824, 1, 0, 0, 0, 1826, 251, 1, 0, 0, 0, 1827, 1828, 5, 115, 0, 0, 1828, 1831, 3, 380, 190, 0, 1829, 1830, 7, 12, 0, 0, 1830, 1832, 5, 153, 0, 0, 1831, 1829, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 253, 1, 0, 0, 0, 1833, 1834, 5, 265, 0, 0, 1834, 1839, 3, 262, 131, 0, 1835, 1836, 5, 263, 0, 0, 1836, 1838, 3, 262, 131, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1842, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1843, 5, 266, 0, 0, 1843, 255, 1, 0, 0, 0, 1844, 1845, 5, 265, 0, 0, 1845, 1850, 3, 216, 108, 0, 1846, 1847, 5, 263, 0, 0, 1847, 1849, 3, 216, 108, 0, 1848, 1846, 1, 0, 0, 0, 1849, 1852, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1850, 1, 0, 0, 0, 1853, 1854, 5, 266, 0, 0, 1854, 257, 1, 0, 0, 0, 1855, 1860, 3, 326, 163, 0, 1856, 1857, 5, 263, 0, 0, 1857, 1859, 3, 326, 163, 0, 1858, 1856, 1, 0, 0, 0, 1859, 1862, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 259, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1873, 5, 52, 0, 0, 1864, 1865, 5, 71, 0, 0, 1865, 1866, 5, 191, 0, 0, 1866, 1867, 5, 26, 0, 0, 1867, 1871, 3, 338, 169, 0, 1868, 1869, 5, 63, 0, 0, 1869, 1870, 5, 26, 0, 0, 1870, 1872, 3, 338, 169, 0, 1871, 1868, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1874, 1, 0, 0, 0, 1873, 1864, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1879, 1, 0, 0, 0, 1875, 1876, 5, 117, 0, 0, 1876, 1877, 5, 191, 0, 0, 1877, 1878, 5, 26, 0, 0, 1878, 1880, 3, 338, 169, 0, 1879, 1875, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 261, 1, 0, 0, 0, 1881, 1884, 3, 384, 192, 0, 1882, 1883, 5, 249, 0, 0, 1883, 1885, 3, 326, 163, 0, 1884, 1882, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 263, 1, 0, 0, 0, 1886, 1897, 3, 266, 133, 0, 1887, 1888, 5, 139, 0, 0, 1888, 1889, 5, 26, 0, 0, 1889, 1894, 3, 270, 135, 0, 1890, 1891, 5, 263, 0, 0, 1891, 1893, 3, 270, 135, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1896, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 1887, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1905, 1, 0, 0, 0, 1899, 1900, 5, 116, 0, 0, 1900, 1903, 3, 326, 163, 0, 1901, 1902, 5, 135, 0, 0, 1902, 1904, 5, 277, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1906, 1, 0, 0, 0, 1905, 1899, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 265, 1, 0, 0, 0, 1907, 1908, 6, 133, -1, 0, 1908, 1909, 3, 268, 134, 0, 1909, 1924, 1, 0, 0, 0, 1910, 1911, 10, 2, 0, 0, 1911, 1913, 5, 100, 0, 0, 1912, 1914, 3, 288, 144, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1923, 3, 266, 133, 3, 1916, 1917, 10, 1, 0, 0, 1917, 1919, 7, 13, 0, 0, 1918, 1920, 3, 288, 144, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 3, 266, 133, 2, 1922, 1910, 1, 0, 0, 0, 1922, 1916, 1, 0, 0, 0, 1923, 1926, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 267, 1, 0, 0, 0, 1926, 1924, 1, 0, 0, 0, 1927, 1944, 3, 272, 136, 0, 1928, 1929, 5, 188, 0, 0, 1929, 1944, 3, 186, 93, 0, 1930, 1931, 5, 211, 0, 0, 1931, 1936, 3, 326, 163, 0, 1932, 1933, 5, 263, 0, 0, 1933, 1935, 3, 326, 163, 0, 1934, 1932, 1, 0, 0, 0, 1935, 1938, 1, 0, 0, 0, 1936, 1934, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1944, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1939, 1940, 5, 265, 0, 0, 1940, 1941, 3, 264, 132, 0, 1941, 1942, 5, 266, 0, 0, 1942, 1944, 1, 0, 0, 0, 1943, 1927, 1, 0, 0, 0, 1943, 1928, 1, 0, 0, 0, 1943, 1930, 1, 0, 0, 0, 1943, 1939, 1, 0, 0, 0, 1944, 269, 1, 0, 0, 0, 1945, 1947, 3, 324, 162, 0, 1946, 1948, 7, 14, 0, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1950, 5, 134, 0, 0, 1950, 1952, 7, 15, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 271, 1, 0, 0, 0, 1953, 1955, 5, 174, 0, 0, 1954, 1956, 3, 288, 144, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1959, 5, 183, 0, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1970, 3, 274, 137, 0, 1961, 1962, 5, 82, 0, 0, 1962, 1967, 3, 300, 150, 0, 1963, 1964, 5, 263, 0, 0, 1964, 1966, 3, 300, 150, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1961, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1973, 1, 0, 0, 0, 1972, 1974, 3, 276, 138, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1978, 1, 0, 0, 0, 1975, 1976, 5, 87, 0, 0, 1976, 1977, 5, 26, 0, 0, 1977, 1979, 3, 280, 140, 0, 1978, 1975, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 278, 139, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 273, 1, 0, 0, 0, 1983, 1988, 3, 290, 145, 0, 1984, 1985, 5, 263, 0, 0, 1985, 1987, 3, 290, 145, 0, 1986, 1984, 1, 0, 0, 0, 1987, 1990, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 275, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1991, 1992, 5, 215, 0, 0, 1992, 1993, 3, 328, 164, 0, 1993, 277, 1, 0, 0, 0, 1994, 1995, 5, 90, 0, 0, 1995, 1996, 3, 328, 164, 0, 1996, 279, 1, 0, 0, 0, 1997, 1999, 3, 288, 144, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2005, 3, 282, 141, 0, 2001, 2002, 5, 263, 0, 0, 2002, 2004, 3, 282, 141, 0, 2003, 2001, 1, 0, 0, 0, 2004, 2007, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 281, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2009, 3, 284, 142, 0, 2009, 283, 1, 0, 0, 0, 2010, 2019, 5, 265, 0, 0, 2011, 2016, 3, 324, 162, 0, 2012, 2013, 5, 263, 0, 0, 2013, 2015, 3, 324, 162, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2011, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2024, 5, 266, 0, 0, 2022, 2024, 3, 324, 162, 0, 2023, 2010, 1, 0, 0, 0, 2023, 2022, 1, 0, 0, 0, 2024, 285, 1, 0, 0, 0, 2025, 2027, 3, 384, 192, 0, 2026, 2028, 3, 312, 156, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 5, 9, 0, 0, 2030, 2031, 3, 318, 159, 0, 2031, 287, 1, 0, 0, 0, 2032, 2033, 7, 16, 0, 0, 2033, 289, 1, 0, 0, 0, 2034, 2036, 3, 294, 147, 0, 2035, 2037, 3, 292, 146, 0, 2036, 2035, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2044, 1, 0, 0, 0, 2038, 2040, 3, 296, 148, 0, 2039, 2041, 3, 292, 146, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2044, 1, 0, 0, 0, 2042, 2044, 3, 298, 149, 0, 2043, 2034, 1, 0, 0, 0, 2043, 2038, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 291, 1, 0, 0, 0, 2045, 2047, 5, 9, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 3, 384, 192, 0, 2049, 293, 1, 0, 0, 0, 2050, 2051, 3, 192, 96, 0, 2051, 295, 1, 0, 0, 0, 2052, 2053, 3, 326, 163, 0, 2053, 297, 1, 0, 0, 0, 2054, 2055, 3, 380, 190, 0, 2055, 2056, 5, 261, 0, 0, 2056, 2058, 1, 0, 0, 0, 2057, 2054, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 5, 257, 0, 0, 2060, 299, 1, 0, 0, 0, 2061, 2062, 6, 150, -1, 0, 2062, 2063, 3, 306, 153, 0, 2063, 2077, 1, 0, 0, 0, 2064, 2073, 10, 2, 0, 0, 2065, 2066, 5, 38, 0, 0, 2066, 2067, 5, 109, 0, 0, 2067, 2074, 3, 306, 153, 0, 2068, 2069, 3, 302, 151, 0, 2069, 2070, 5, 109, 0, 0, 2070, 2071, 3, 300, 150, 0, 2071, 2072, 3, 304, 152, 0, 2072, 2074, 1, 0, 0, 0, 2073, 2065, 1, 0, 0, 0, 2073, 2068, 1, 0, 0, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2064, 1, 0, 0, 0, 2076, 2079, 1, 0, 0, 0, 2077, 2075, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 301, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2080, 2082, 5, 97, 0, 0, 2081, 2080, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2112, 1, 0, 0, 0, 2083, 2085, 5, 114, 0, 0, 2084, 2086, 5, 97, 0, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2112, 1, 0, 0, 0, 2087, 2089, 5, 165, 0, 0, 2088, 2090, 5, 97, 0, 0, 2089, 2088, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2112, 1, 0, 0, 0, 2091, 2093, 5, 114, 0, 0, 2092, 2094, 5, 141, 0, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2112, 1, 0, 0, 0, 2095, 2097, 5, 165, 0, 0, 2096, 2098, 5, 141, 0, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2112, 1, 0, 0, 0, 2099, 2101, 5, 83, 0, 0, 2100, 2102, 5, 141, 0, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2112, 1, 0, 0, 0, 2103, 2104, 5, 114, 0, 0, 2104, 2112, 5, 177, 0, 0, 2105, 2106, 5, 165, 0, 0, 2106, 2112, 5, 177, 0, 0, 2107, 2108, 5, 114, 0, 0, 2108, 2112, 5, 7, 0, 0, 2109, 2110, 5, 165, 0, 0, 2110, 2112, 5, 7, 0, 0, 2111, 2081, 1, 0, 0, 0, 2111, 2083, 1, 0, 0, 0, 2111, 2087, 1, 0, 0, 0, 2111, 2091, 1, 0, 0, 0, 2111, 2095, 1, 0, 0, 0, 2111, 2099, 1, 0, 0, 0, 2111, 2103, 1, 0, 0, 0, 2111, 2105, 1, 0, 0, 0, 2111, 2107, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 303, 1, 0, 0, 0, 2113, 2114, 5, 136, 0, 0, 2114, 2128, 3, 328, 164, 0, 2115, 2116, 5, 205, 0, 0, 2116, 2117, 5, 265, 0, 0, 2117, 2122, 3, 384, 192, 0, 2118, 2119, 5, 263, 0, 0, 2119, 2121, 3, 384, 192, 0, 2120, 2118, 1, 0, 0, 0, 2121, 2124, 1, 0, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2122, 1, 0, 0, 0, 2125, 2126, 5, 266, 0, 0, 2126, 2128, 1, 0, 0, 0, 2127, 2113, 1, 0, 0, 0, 2127, 2115, 1, 0, 0, 0, 2128, 305, 1, 0, 0, 0, 2129, 2142, 3, 310, 155, 0, 2130, 2131, 5, 190, 0, 0, 2131, 2132, 3, 308, 154, 0, 2132, 2133, 5, 265, 0, 0, 2133, 2134, 3, 326, 163, 0, 2134, 2140, 5, 266, 0, 0, 2135, 2136, 5, 157, 0, 0, 2136, 2137, 5, 265, 0, 0, 2137, 2138, 3, 326, 163, 0, 2138, 2139, 5, 266, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2135, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2130, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 307, 1, 0, 0, 0, 2144, 2145, 7, 17, 0, 0, 2145, 309, 1, 0, 0, 0, 2146, 2154, 3, 314, 157, 0, 2147, 2149, 5, 9, 0, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2152, 3, 384, 192, 0, 2151, 2153, 3, 312, 156, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2155, 1, 0, 0, 0, 2154, 2148, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 311, 1, 0, 0, 0, 2156, 2157, 5, 265, 0, 0, 2157, 2162, 3, 192, 96, 0, 2158, 2159, 5, 263, 0, 0, 2159, 2161, 3, 192, 96, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2164, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2162, 1, 0, 0, 0, 2165, 2166, 5, 266, 0, 0, 2166, 313, 1, 0, 0, 0, 2167, 2172, 3, 196, 98, 0, 2168, 2172, 3, 316, 158, 0, 2169, 2172, 3, 320, 160, 0, 2170, 2172, 3, 322, 161, 0, 2171, 2167, 1, 0, 0, 0, 2171, 2168, 1, 0, 0, 0, 2171, 2169, 1, 0, 0, 0, 2171, 2170, 1, 0, 0, 0, 2172, 315, 1, 0, 0, 0, 2173, 2175, 5, 113, 0, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2177, 3, 318, 159, 0, 2177, 317, 1, 0, 0, 0, 2178, 2179, 5, 265, 0, 0, 2179, 2180, 3, 208, 104, 0, 2180, 2181, 5, 266, 0, 0, 2181, 319, 1, 0, 0, 0, 2182, 2183, 5, 201, 0, 0, 2183, 2184, 5, 265, 0, 0, 2184, 2189, 3, 326, 163, 0, 2185, 2186, 5, 263, 0, 0, 2186, 2188, 3, 326, 163, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2191, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2195, 5, 266, 0, 0, 2193, 2194, 5, 216, 0, 0, 2194, 2196, 5, 140, 0, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 321, 1, 0, 0, 0, 2197, 2198, 5, 265, 0, 0, 2198, 2199, 3, 300, 150, 0, 2199, 2200, 5, 266, 0, 0, 2200, 323, 1, 0, 0, 0, 2201, 2204, 3, 192, 96, 0, 2202, 2204, 3, 326, 163, 0, 2203, 2201, 1, 0, 0, 0, 2203, 2202, 1, 0, 0, 0, 2204, 325, 1, 0, 0, 0, 2205, 2206, 3, 328, 164, 0, 2206, 327, 1, 0, 0, 0, 2207, 2208, 6, 164, -1, 0, 2208, 2210, 3, 332, 166, 0, 2209, 2211, 3, 330, 165, 0, 2210, 2209, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2215, 1, 0, 0, 0, 2212, 2213, 5, 132, 0, 0, 2213, 2215, 3, 328, 164, 3, 2214, 2207, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2215, 2224, 1, 0, 0, 0, 2216, 2217, 10, 2, 0, 0, 2217, 2218, 5, 5, 0, 0, 2218, 2223, 3, 328, 164, 3, 2219, 2220, 10, 1, 0, 0, 2220, 2221, 5, 138, 0, 0, 2221, 2223, 3, 328, 164, 2, 2222, 2216, 1, 0, 0, 0, 2222, 2219, 1, 0, 0, 0, 2223, 2226, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 329, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2227, 2228, 3, 340, 170, 0, 2228, 2229, 3, 332, 166, 0, 2229, 2286, 1, 0, 0, 0, 2230, 2231, 3, 340, 170, 0, 2231, 2232, 3, 342, 171, 0, 2232, 2233, 3, 318, 159, 0, 2233, 2286, 1, 0, 0, 0, 2234, 2236, 5, 132, 0, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 5, 15, 0, 0, 2238, 2239, 3, 332, 166, 0, 2239, 2240, 5, 5, 0, 0, 2240, 2241, 3, 332, 166, 0, 2241, 2286, 1, 0, 0, 0, 2242, 2244, 5, 132, 0, 0, 2243, 2242, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2246, 5, 94, 0, 0, 2246, 2247, 5, 265, 0, 0, 2247, 2252, 3, 326, 163, 0, 2248, 2249, 5, 263, 0, 0, 2249, 2251, 3, 326, 163, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2254, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2255, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2256, 5, 266, 0, 0, 2256, 2286, 1, 0, 0, 0, 2257, 2259, 5, 132, 0, 0, 2258, 2257, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2261, 5, 94, 0, 0, 2261, 2286, 3, 318, 159, 0, 2262, 2264, 5, 132, 0, 0, 2263, 2262, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2266, 7, 18, 0, 0, 2266, 2269, 3, 332, 166, 0, 2267, 2268, 5, 62, 0, 0, 2268, 2270, 3, 332, 166, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2286, 1, 0, 0, 0, 2271, 2272, 7, 19, 0, 0, 2272, 2286, 3, 332, 166, 0, 2273, 2275, 5, 108, 0, 0, 2274, 2276, 5, 132, 0, 0, 2275, 2274, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2286, 7, 20, 0, 0, 2278, 2280, 5, 108, 0, 0, 2279, 2281, 5, 132, 0, 0, 2280, 2279, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 5, 57, 0, 0, 2283, 2284, 5, 82, 0, 0, 2284, 2286, 3, 332, 166, 0, 2285, 2227, 1, 0, 0, 0, 2285, 2230, 1, 0, 0, 0, 2285, 2235, 1, 0, 0, 0, 2285, 2243, 1, 0, 0, 0, 2285, 2258, 1, 0, 0, 0, 2285, 2263, 1, 0, 0, 0, 2285, 2271, 1, 0, 0, 0, 2285, 2273, 1, 0, 0, 0, 2285, 2278, 1, 0, 0, 0, 2286, 331, 1, 0, 0, 0, 2287, 2288, 6, 166, -1, 0, 2288, 2292, 3, 336, 168, 0, 2289, 2290, 7, 21, 0, 0, 2290, 2292, 3, 332, 166, 4, 2291, 2287, 1, 0, 0, 0, 2291, 2289, 1, 0, 0, 0, 2292, 2304, 1, 0, 0, 0, 2293, 2294, 10, 3, 0, 0, 2294, 2295, 7, 22, 0, 0, 2295, 2303, 3, 332, 166, 4, 2296, 2297, 10, 2, 0, 0, 2297, 2298, 7, 21, 0, 0, 2298, 2303, 3, 332, 166, 3, 2299, 2300, 10, 1, 0, 0, 2300, 2301, 5, 260, 0, 0, 2301, 2303, 3, 332, 166, 2, 2302, 2293, 1, 0, 0, 0, 2302, 2296, 1, 0, 0, 0, 2302, 2299, 1, 0, 0, 0, 2303, 2306, 1, 0, 0, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 333, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2307, 2308, 3, 190, 95, 0, 2308, 2320, 5, 265, 0, 0, 2309, 2311, 3, 288, 144, 0, 2310, 2309, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2317, 3, 326, 163, 0, 2313, 2314, 5, 263, 0, 0, 2314, 2316, 3, 326, 163, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2319, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2321, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2310, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2332, 1, 0, 0, 0, 2322, 2323, 5, 139, 0, 0, 2323, 2324, 5, 26, 0, 0, 2324, 2329, 3, 270, 135, 0, 2325, 2326, 5, 263, 0, 0, 2326, 2328, 3, 270, 135, 0, 2327, 2325, 1, 0, 0, 0, 2328, 2331, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2333, 1, 0, 0, 0, 2331, 2329, 1, 0, 0, 0, 2332, 2322, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 5, 266, 0, 0, 2335, 2337, 3, 362, 181, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2339, 1, 0, 0, 0, 2338, 2340, 3, 366, 183, 0, 2339, 2338, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 335, 1, 0, 0, 0, 2341, 2342, 6, 168, -1, 0, 2342, 2555, 5, 133, 0, 0, 2343, 2555, 3, 346, 173, 0, 2344, 2345, 3, 384, 192, 0, 2345, 2346, 3, 338, 169, 0, 2346, 2555, 1, 0, 0, 0, 2347, 2348, 5, 286, 0, 0, 2348, 2555, 3, 338, 169, 0, 2349, 2555, 3, 386, 193, 0, 2350, 2555, 3, 344, 172, 0, 2351, 2555, 3, 338, 169, 0, 2352, 2555, 5, 276, 0, 0, 2353, 2555, 5, 272, 0, 0, 2354, 2355, 5, 148, 0, 0, 2355, 2356, 5, 265, 0, 0, 2356, 2357, 3, 332, 166, 0, 2357, 2358, 5, 94, 0, 0, 2358, 2359, 3, 332, 166, 0, 2359, 2360, 5, 266, 0, 0, 2360, 2555, 1, 0, 0, 0, 2361, 2362, 5, 265, 0, 0, 2362, 2365, 3, 326, 163, 0, 2363, 2364, 5, 9, 0, 0, 2364, 2366, 3, 352, 176, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2375, 1, 0, 0, 0, 2367, 2368, 5, 263, 0, 0, 2368, 2371, 3, 326, 163, 0, 2369, 2370, 5, 9, 0, 0, 2370, 2372, 3, 352, 176, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2374, 1, 0, 0, 0, 2373, 2367, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2378, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 266, 0, 0, 2379, 2555, 1, 0, 0, 0, 2380, 2381, 5, 168, 0, 0, 2381, 2382, 5, 265, 0, 0, 2382, 2387, 3, 326, 163, 0, 2383, 2384, 5, 263, 0, 0, 2384, 2386, 3, 326, 163, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2389, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2390, 2391, 5, 266, 0, 0, 2391, 2555, 1, 0, 0, 0, 2392, 2393, 3, 190, 95, 0, 2393, 2394, 5, 265, 0, 0, 2394, 2395, 5, 257, 0, 0, 2395, 2397, 5, 266, 0, 0, 2396, 2398, 3, 362, 181, 0, 2397, 2396, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2401, 3, 366, 183, 0, 2400, 2399, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2555, 1, 0, 0, 0, 2402, 2555, 3, 334, 167, 0, 2403, 2404, 3, 384, 192, 0, 2404, 2405, 5, 273, 0, 0, 2405, 2406, 3, 326, 163, 0, 2406, 2555, 1, 0, 0, 0, 2407, 2416, 5, 265, 0, 0, 2408, 2413, 3, 384, 192, 0, 2409, 2410, 5, 263, 0, 0, 2410, 2412, 3, 384, 192, 0, 2411, 2409, 1, 0, 0, 0, 2412, 2415, 1, 0, 0, 0, 2413, 2411, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2417, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2408, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 5, 266, 0, 0, 2419, 2420, 5, 273, 0, 0, 2420, 2555, 3, 326, 163, 0, 2421, 2422, 5, 265, 0, 0, 2422, 2423, 3, 208, 104, 0, 2423, 2424, 5, 266, 0, 0, 2424, 2555, 1, 0, 0, 0, 2425, 2426, 5, 66, 0, 0, 2426, 2427, 5, 265, 0, 0, 2427, 2428, 3, 208, 104, 0, 2428, 2429, 5, 266, 0, 0, 2429, 2555, 1, 0, 0, 0, 2430, 2431, 5, 28, 0, 0, 2431, 2433, 3, 332, 166, 0, 2432, 2434, 3, 360, 180, 0, 2433, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2439, 1, 0, 0, 0, 2437, 2438, 5, 59, 0, 0, 2438, 2440, 3, 326, 163, 0, 2439, 2437, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2442, 5, 61, 0, 0, 2442, 2555, 1, 0, 0, 0, 2443, 2445, 5, 28, 0, 0, 2444, 2446, 3, 360, 180, 0, 2445, 2444, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2451, 1, 0, 0, 0, 2449, 2450, 5, 59, 0, 0, 2450, 2452, 3, 326, 163, 0, 2451, 2449, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2454, 5, 61, 0, 0, 2454, 2555, 1, 0, 0, 0, 2455, 2456, 5, 29, 0, 0, 2456, 2457, 5, 265, 0, 0, 2457, 2458, 3, 326, 163, 0, 2458, 2459, 5, 9, 0, 0, 2459, 2460, 3, 352, 176, 0, 2460, 2461, 5, 266, 0, 0, 2461, 2555, 1, 0, 0, 0, 2462, 2463, 5, 195, 0, 0, 2463, 2464, 5, 265, 0, 0, 2464, 2465, 3, 326, 163, 0, 2465, 2466, 5, 9, 0, 0, 2466, 2467, 3, 352, 176, 0, 2467, 2468, 5, 266, 0, 0, 2468, 2555, 1, 0, 0, 0, 2469, 2470, 5, 8, 0, 0, 2470, 2479, 5, 267, 0, 0, 2471, 2476, 3, 326, 163, 0, 2472, 2473, 5, 263, 0, 0, 2473, 2475, 3, 326, 163, 0, 2474, 2472, 1, 0, 0, 0, 2475, 2478, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2480, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2471, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2555, 5, 268, 0, 0, 2482, 2555, 3, 194, 97, 0, 2483, 2555, 5, 40, 0, 0, 2484, 2488, 5, 42, 0, 0, 2485, 2486, 5, 265, 0, 0, 2486, 2487, 5, 277, 0, 0, 2487, 2489, 5, 266, 0, 0, 2488, 2485, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2555, 1, 0, 0, 0, 2490, 2494, 5, 43, 0, 0, 2491, 2492, 5, 265, 0, 0, 2492, 2493, 5, 277, 0, 0, 2493, 2495, 5, 266, 0, 0, 2494, 2491, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2555, 1, 0, 0, 0, 2496, 2500, 5, 119, 0, 0, 2497, 2498, 5, 265, 0, 0, 2498, 2499, 5, 277, 0, 0, 2499, 2501, 5, 266, 0, 0, 2500, 2497, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2555, 1, 0, 0, 0, 2502, 2506, 5, 120, 0, 0, 2503, 2504, 5, 265, 0, 0, 2504, 2505, 5, 277, 0, 0, 2505, 2507, 5, 266, 0, 0, 2506, 2503, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2555, 1, 0, 0, 0, 2508, 2555, 5, 44, 0, 0, 2509, 2555, 5, 41, 0, 0, 2510, 2511, 5, 184, 0, 0, 2511, 2512, 5, 265, 0, 0, 2512, 2513, 3, 332, 166, 0, 2513, 2514, 5, 82, 0, 0, 2514, 2517, 3, 332, 166, 0, 2515, 2516, 5, 78, 0, 0, 2516, 2518, 3, 332, 166, 0, 2517, 2515, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2520, 5, 266, 0, 0, 2520, 2555, 1, 0, 0, 0, 2521, 2522, 5, 131, 0, 0, 2522, 2523, 5, 265, 0, 0, 2523, 2526, 3, 332, 166, 0, 2524, 2525, 5, 263, 0, 0, 2525, 2527, 3, 350, 175, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2529, 5, 266, 0, 0, 2529, 2555, 1, 0, 0, 0, 2530, 2531, 5, 68, 0, 0, 2531, 2532, 5, 265, 0, 0, 2532, 2533, 3, 384, 192, 0, 2533, 2534, 5, 82, 0, 0, 2534, 2535, 3, 332, 166, 0, 2535, 2536, 5, 266, 0, 0, 2536, 2555, 1, 0, 0, 0, 2537, 2538, 5, 265, 0, 0, 2538, 2539, 3, 326, 163, 0, 2539, 2540, 5, 266, 0, 0, 2540, 2555, 1, 0, 0, 0, 2541, 2542, 5, 88, 0, 0, 2542, 2551, 5, 265, 0, 0, 2543, 2548, 3, 380, 190, 0, 2544, 2545, 5, 263, 0, 0, 2545, 2547, 3, 380, 190, 0, 2546, 2544, 1, 0, 0, 0, 2547, 2550, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2552, 1, 0, 0, 0, 2550, 2548, 1, 0, 0, 0, 2551, 2543, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 5, 266, 0, 0, 2554, 2341, 1, 0, 0, 0, 2554, 2343, 1, 0, 0, 0, 2554, 2344, 1, 0, 0, 0, 2554, 2347, 1, 0, 0, 0, 2554, 2349, 1, 0, 0, 0, 2554, 2350, 1, 0, 0, 0, 2554, 2351, 1, 0, 0, 0, 2554, 2352, 1, 0, 0, 0, 2554, 2353, 1, 0, 0, 0, 2554, 2354, 1, 0, 0, 0, 2554, 2361, 1, 0, 0, 0, 2554, 2380, 1, 0, 0, 0, 2554, 2392, 1, 0, 0, 0, 2554, 2402, 1, 0, 0, 0, 2554, 2403, 1, 0, 0, 0, 2554, 2407, 1, 0, 0, 0, 2554, 2421, 1, 0, 0, 0, 2554, 2425, 1, 0, 0, 0, 2554, 2430, 1, 0, 0, 0, 2554, 2443, 1, 0, 0, 0, 2554, 2455, 1, 0, 0, 0, 2554, 2462, 1, 0, 0, 0, 2554, 2469, 1, 0, 0, 0, 2554, 2482, 1, 0, 0, 0, 2554, 2483, 1, 0, 0, 0, 2554, 2484, 1, 0, 0, 0, 2554, 2490, 1, 0, 0, 0, 2554, 2496, 1, 0, 0, 0, 2554, 2502, 1, 0, 0, 0, 2554, 2508, 1, 0, 0, 0, 2554, 2509, 1, 0, 0, 0, 2554, 2510, 1, 0, 0, 0, 2554, 2521, 1, 0, 0, 0, 2554, 2530, 1, 0, 0, 0, 2554, 2537, 1, 0, 0, 0, 2554, 2541, 1, 0, 0, 0, 2555, 2566, 1, 0, 0, 0, 2556, 2557, 10, 15, 0, 0, 2557, 2558, 5, 267, 0, 0, 2558, 2559, 3, 332, 166, 0, 2559, 2560, 5, 268, 0, 0, 2560, 2565, 1, 0, 0, 0, 2561, 2562, 10, 13, 0, 0, 2562, 2563, 5, 261, 0, 0, 2563, 2565, 3, 384, 192, 0, 2564, 2556, 1, 0, 0, 0, 2564, 2561, 1, 0, 0, 0, 2565, 2568, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 337, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2569, 2576, 5, 274, 0, 0, 2570, 2573, 5, 275, 0, 0, 2571, 2572, 5, 198, 0, 0, 2572, 2574, 5, 274, 0, 0, 2573, 2571, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 1, 0, 0, 0, 2575, 2569, 1, 0, 0, 0, 2575, 2570, 1, 0, 0, 0, 2576, 339, 1, 0, 0, 0, 2577, 2578, 7, 23, 0, 0, 2578, 341, 1, 0, 0, 0, 2579, 2580, 7, 24, 0, 0, 2580, 343, 1, 0, 0, 0, 2581, 2582, 7, 25, 0, 0, 2582, 345, 1, 0, 0, 0, 2583, 2584, 5, 277, 0, 0, 2584, 2598, 3, 348, 174, 0, 2585, 2586, 5, 265, 0, 0, 2586, 2587, 5, 277, 0, 0, 2587, 2588, 5, 266, 0, 0, 2588, 2598, 3, 348, 174, 0, 2589, 2590, 5, 101, 0, 0, 2590, 2591, 5, 277, 0, 0, 2591, 2598, 3, 348, 174, 0, 2592, 2593, 5, 101, 0, 0, 2593, 2594, 5, 265, 0, 0, 2594, 2595, 5, 277, 0, 0, 2595, 2596, 5, 266, 0, 0, 2596, 2598, 3, 348, 174, 0, 2597, 2583, 1, 0, 0, 0, 2597, 2585, 1, 0, 0, 0, 2597, 2589, 1, 0, 0, 0, 2597, 2592, 1, 0, 0, 0, 2598, 347, 1, 0, 0, 0, 2599, 2600, 7, 26, 0, 0, 2600, 349, 1, 0, 0, 0, 2601, 2602, 7, 27, 0, 0, 2602, 351, 1, 0, 0, 0, 2603, 2604, 6, 176, -1, 0, 2604, 2605, 5, 8, 0, 0, 2605, 2606, 5, 251, 0, 0, 2606, 2607, 3, 352, 176, 0, 2607, 2608, 5, 253, 0, 0, 2608, 2649, 1, 0, 0, 0, 2609, 2610, 5, 235, 0, 0, 2610, 2611, 5, 251, 0, 0, 2611, 2612, 3, 352, 176, 0, 2612, 2613, 5, 263, 0, 0, 2613, 2614, 3, 352, 176, 0, 2614, 2615, 5, 253, 0, 0, 2615, 2649, 1, 0, 0, 0, 2616, 2617, 5, 240, 0, 0, 2617, 2618, 5, 251, 0, 0, 2618, 2619, 3, 384, 192, 0, 2619, 2626, 3, 352, 176, 0, 2620, 2621, 5, 263, 0, 0, 2621, 2622, 3, 384, 192, 0, 2622, 2623, 3, 352, 176, 0, 2623, 2625, 1, 0, 0, 0, 2624, 2620, 1, 0, 0, 0, 2625, 2628, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2626, 1, 0, 0, 0, 2629, 2630, 5, 253, 0, 0, 2630, 2649, 1, 0, 0, 0, 2631, 2634, 3, 358, 179, 0, 2632, 2634, 3, 354, 177, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2632, 1, 0, 0, 0, 2634, 2646, 1, 0, 0, 0, 2635, 2636, 5, 265, 0, 0, 2636, 2641, 3, 356, 178, 0, 2637, 2638, 5, 263, 0, 0, 2638, 2640, 3, 356, 178, 0, 2639, 2637, 1, 0, 0, 0, 2640, 2643, 1, 0, 0, 0, 2641, 2639, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2641, 1, 0, 0, 0, 2644, 2645, 5, 266, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2635, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2603, 1, 0, 0, 0, 2648, 2609, 1, 0, 0, 0, 2648, 2616, 1, 0, 0, 0, 2648, 2633, 1, 0, 0, 0, 2649, 2654, 1, 0, 0, 0, 2650, 2651, 10, 5, 0, 0, 2651, 2653, 5, 8, 0, 0, 2652, 2650, 1, 0, 0, 0, 2653, 2656, 1, 0, 0, 0, 2654, 2652, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 353, 1, 0, 0, 0, 2656, 2654, 1, 0, 0, 0, 2657, 2658, 7, 28, 0, 0, 2658, 355, 1, 0, 0, 0, 2659, 2662, 5, 277, 0, 0, 2660, 2662, 3, 352, 176, 0, 2661, 2659, 1, 0, 0, 0, 2661, 2660, 1, 0, 0, 0, 2662, 357, 1, 0, 0, 0, 2663, 2668, 5, 284, 0, 0, 2664, 2668, 5, 285, 0, 0, 2665, 2668, 5, 286, 0, 0, 2666, 2668, 3, 384, 192, 0, 2667, 2663, 1, 0, 0, 0, 2667, 2664, 1, 0, 0, 0, 2667, 2665, 1, 0, 0, 0, 2667, 2666, 1, 0, 0, 0, 2668, 359, 1, 0, 0, 0, 2669, 2670, 5, 214, 0, 0, 2670, 2671, 3, 326, 163, 0, 2671, 2672, 5, 192, 0, 0, 2672, 2673, 3, 326, 163, 0, 2673, 361, 1, 0, 0, 0, 2674, 2675, 5, 74, 0, 0, 2675, 2676, 5, 265, 0, 0, 2676, 2677, 3, 276, 138, 0, 2677, 2678, 5, 266, 0, 0, 2678, 363, 1, 0, 0, 0, 2679, 2684, 3, 326, 163, 0, 2680, 2681, 5, 263, 0, 0, 2681, 2683, 3, 326, 163, 0, 2682, 2680, 1, 0, 0, 0, 2683, 2686, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 365, 1, 0, 0, 0, 2686, 2684, 1, 0, 0, 0, 2687, 2688, 5, 143, 0, 0, 2688, 2692, 5, 265, 0, 0, 2689, 2690, 5, 145, 0, 0, 2690, 2691, 5, 26, 0, 0, 2691, 2693, 3, 364, 182, 0, 2692, 2689, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2704, 1, 0, 0, 0, 2694, 2695, 5, 139, 0, 0, 2695, 2696, 5, 26, 0, 0, 2696, 2701, 3, 270, 135, 0, 2697, 2698, 5, 263, 0, 0, 2698, 2700, 3, 270, 135, 0, 2699, 2697, 1, 0, 0, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2705, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2694, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2707, 1, 0, 0, 0, 2706, 2708, 3, 368, 184, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2710, 5, 266, 0, 0, 2710, 367, 1, 0, 0, 0, 2711, 2712, 5, 154, 0, 0, 2712, 2728, 3, 370, 185, 0, 2713, 2714, 5, 169, 0, 0, 2714, 2728, 3, 370, 185, 0, 2715, 2716, 5, 154, 0, 0, 2716, 2717, 5, 15, 0, 0, 2717, 2718, 3, 370, 185, 0, 2718, 2719, 5, 5, 0, 0, 2719, 2720, 3, 370, 185, 0, 2720, 2728, 1, 0, 0, 0, 2721, 2722, 5, 169, 0, 0, 2722, 2723, 5, 15, 0, 0, 2723, 2724, 3, 370, 185, 0, 2724, 2725, 5, 5, 0, 0, 2725, 2726, 3, 370, 185, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2711, 1, 0, 0, 0, 2727, 2713, 1, 0, 0, 0, 2727, 2715, 1, 0, 0, 0, 2727, 2721, 1, 0, 0, 0, 2728, 369, 1, 0, 0, 0, 2729, 2730, 5, 199, 0, 0, 2730, 2739, 5, 149, 0, 0, 2731, 2732, 5, 199, 0, 0, 2732, 2739, 5, 77, 0, 0, 2733, 2734, 5, 39, 0, 0, 2734, 2739, 5, 168, 0, 0, 2735, 2736, 3, 326, 163, 0, 2736, 2737, 7, 29, 0, 0, 2737, 2739, 1, 0, 0, 0, 2738, 2729, 1, 0, 0, 0, 2738, 2731, 1, 0, 0, 0, 2738, 2733, 1, 0, 0, 0, 2738, 2735, 1, 0, 0, 0, 2739, 371, 1, 0, 0, 0, 2740, 2741, 3, 384, 192, 0, 2741, 2742, 5, 261, 0, 0, 2742, 2743, 3, 384, 192, 0, 2743, 2746, 1, 0, 0, 0, 2744, 2746, 3, 384, 192, 0, 2745, 2740, 1, 0, 0, 0, 2745, 2744, 1, 0, 0, 0, 2746, 373, 1, 0, 0, 0, 2747, 2752, 3, 372, 186, 0, 2748, 2749, 5, 263, 0, 0, 2749, 2751, 3, 372, 186, 0, 2750, 2748, 1, 0, 0, 0, 2751, 2754, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 375, 1, 0, 0, 0, 2754, 2752, 1, 0, 0, 0, 2755, 2769, 5, 2, 0, 0, 2756, 2769, 5, 4, 0, 0, 2757, 2769, 5, 58, 0, 0, 2758, 2769, 5, 37, 0, 0, 2759, 2769, 5, 99, 0, 0, 2760, 2769, 5, 162, 0, 0, 2761, 2766, 5, 174, 0, 0, 2762, 2763, 5, 265, 0, 0, 2763, 2764, 3, 384, 192, 0, 2764, 2765, 5, 266, 0, 0, 2765, 2767, 1, 0, 0, 0, 2766, 2762, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2755, 1, 0, 0, 0, 2768, 2756, 1, 0, 0, 0, 2768, 2757, 1, 0, 0, 0, 2768, 2758, 1, 0, 0, 0, 2768, 2759, 1, 0, 0, 0, 2768, 2760, 1, 0, 0, 0, 2768, 2761, 1, 0, 0, 0, 2769, 377, 1, 0, 0, 0, 2770, 2771, 7, 30, 0, 0, 2771, 379, 1, 0, 0, 0, 2772, 2777, 3, 384, 192, 0, 2773, 2774, 5, 261, 0, 0, 2774, 2776, 3, 384, 192, 0, 2775, 2773, 1, 0, 0, 0, 2776, 2779, 1, 0, 0, 0, 2777, 2775, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 381, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2780, 2781, 5, 166, 0, 0, 2781, 2787, 3, 384, 192, 0, 2782, 2783, 5, 204, 0, 0, 2783, 2787, 3, 384, 192, 0, 2784, 2785, 5, 87, 0, 0, 2785, 2787, 3, 384, 192, 0, 2786, 2780, 1, 0, 0, 0, 2786, 2782, 1, 0, 0, 0, 2786, 2784, 1, 0, 0, 0, 2787, 383, 1, 0, 0, 0, 2788, 2794, 5, 280, 0, 0, 2789, 2794, 5, 274, 0, 0, 2790, 2794, 3, 390, 195, 0, 2791, 2794, 5, 283, 0, 0, 2792, 2794, 5, 281, 0, 0, 2793, 2788, 1, 0, 0, 0, 2793, 2789, 1, 0, 0, 0, 2793, 2790, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2792, 1, 0, 0, 0, 2794, 385, 1, 0, 0, 0, 2795, 2797, 5, 256, 0, 0, 2796, 2795, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2808, 5, 278, 0, 0, 2799, 2801, 5, 256, 0, 0, 2800, 2799, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2808, 5, 279, 0, 0, 2803, 2805, 5, 256, 0, 0, 2804, 2803, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 5, 277, 0, 0, 2807, 2796, 1, 0, 0, 0, 2807, 2800, 1, 0, 0, 0, 2807, 2804, 1, 0, 0, 0, 2808, 387, 1, 0, 0, 0, 2809, 2810, 7, 31, 0, 0, 2810, 389, 1, 0, 0, 0, 2811, 2812, 7, 32, 0, 0, 2812, 391, 1, 0, 0, 0, 355, 395, 402, 426, 439, 443, 447, 456, 461, 465, 471, 473, 478, 482, 486, 493, 498, 504, 508, 517, 524, 528, 533, 535, 540, 543, 550, 554, 559, 563, 566, 570, 578, 582, 586, 594, 598, 607, 610, 613, 619, 626, 637, 642, 647, 652, 657, 666, 669, 672, 676, 702, 728, 737, 747, 750, 764, 782, 784, 793, 804, 813, 820, 824, 831, 837, 840, 845, 852, 866, 879, 884, 889, 895, 931, 934, 940, 943, 949, 955, 967, 969, 980, 988, 993, 997, 1002, 1009, 1013, 1017, 1023, 1027, 1031, 1040, 1043, 1046, 1054, 1068, 1075, 1088, 1094, 1099, 1102, 1105, 1110, 1114, 1123, 1128, 1134, 1138, 1142, 1147, 1150, 1158, 1161, 1164, 1176, 1179, 1182, 1187, 1191, 1207, 1212, 1219, 1222, 1228, 1231, 1238, 1241, 1245, 1250, 1253, 1260, 1263, 1287, 1301, 1305, 1309, 1329, 1331, 1333, 1342, 1344, 1353, 1355, 1364, 1366, 1371, 1380, 1389, 1398, 1409, 1415, 1420, 1423, 1436, 1446, 1450, 1455, 1466, 1471, 1504, 1512, 1517, 1521, 1527, 1532, 1535, 1540, 1545, 1550, 1554, 1563, 1566, 1570, 1577, 1586, 1590, 1594, 1601, 1604, 1614, 1621, 1626, 1631, 1636, 1642, 1645, 1654, 1657, 1660, 1666, 1671, 1681, 1684, 1687, 1691, 1701, 1704, 1710, 1716, 1719, 1722, 1726, 1736, 1747, 1752, 1755, 1759, 1766, 1776, 1788, 1794, 1796, 1805, 1808, 1815, 1825, 1831, 1839, 1850, 1860, 1871, 1873, 1879, 1884, 1894, 1897, 1903, 1905, 1913, 1919, 1922, 1924, 1936, 1943, 1947, 1951, 1955, 1958, 1967, 1970, 1973, 1978, 1981, 1988, 1998, 2005, 2016, 2019, 2023, 2027, 2036, 2040, 2043, 2046, 2057, 2073, 2077, 2081, 2085, 2089, 2093, 2097, 2101, 2111, 2122, 2127, 2140, 2142, 2148, 2152, 2154, 2162, 2171, 2174, 2189, 2195, 2203, 2210, 2214, 2222, 2224, 2235, 2243, 2252, 2258, 2263, 2269, 2275, 2280, 2285, 2291, 2302, 2304, 2310, 2317, 2320, 2329, 2332, 2336, 2339, 2365, 2371, 2375, 2387, 2397, 2400, 2413, 2416, 2435, 2439, 2447, 2451, 2476, 2479, 2488, 2494, 2500, 2506, 2517, 2526, 2548, 2551, 2554, 2564, 2566, 2573, 2575, 2597, 2626, 2633, 2641, 2646, 2648, 2654, 2661, 2667, 2684, 2692, 2701, 2704, 2707, 2727, 2738, 2745, 2752, 2766, 2768, 2777, 2786, 2793, 2796, 2800, 2804, 2807] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index 2fa9d917..5794686b 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -443,58 +443,65 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly RULE_queryPrimary = 134; public static readonly RULE_sortItem = 135; public static readonly RULE_querySpecification = 136; - public static readonly RULE_whereClause = 137; - public static readonly RULE_havingClause = 138; - public static readonly RULE_groupBy = 139; - public static readonly RULE_groupingElement = 140; - public static readonly RULE_groupingSet = 141; - public static readonly RULE_namedQuery = 142; - public static readonly RULE_setQuantifier = 143; - public static readonly RULE_selectItem = 144; - public static readonly RULE_relation = 145; - public static readonly RULE_joinType = 146; - public static readonly RULE_joinCriteria = 147; - public static readonly RULE_sampledRelation = 148; - public static readonly RULE_sampleType = 149; - public static readonly RULE_aliasedRelation = 150; - public static readonly RULE_columnAliases = 151; - public static readonly RULE_relationPrimary = 152; - public static readonly RULE_subQueryRelation = 153; - public static readonly RULE_unnest = 154; - public static readonly RULE_parenthesizedRelation = 155; - public static readonly RULE_columnItem = 156; - public static readonly RULE_expression = 157; - public static readonly RULE_booleanExpression = 158; - public static readonly RULE_predicate = 159; - public static readonly RULE_valueExpression = 160; - public static readonly RULE_primaryExpression = 161; - public static readonly RULE_stringLiteral = 162; - public static readonly RULE_comparisonOperator = 163; - public static readonly RULE_comparisonQuantifier = 164; - public static readonly RULE_booleanValue = 165; - public static readonly RULE_interval = 166; - public static readonly RULE_intervalField = 167; - public static readonly RULE_normalForm = 168; - public static readonly RULE_type = 169; - public static readonly RULE_dataType = 170; - public static readonly RULE_typeParameter = 171; - public static readonly RULE_baseType = 172; - public static readonly RULE_whenClause = 173; - public static readonly RULE_filter = 174; - public static readonly RULE_partitionByClause = 175; - public static readonly RULE_over = 176; - public static readonly RULE_windowFrame = 177; - public static readonly RULE_frameBound = 178; - public static readonly RULE_pathElement = 179; - public static readonly RULE_pathSpecification = 180; - public static readonly RULE_privilege = 181; - public static readonly RULE_objectType = 182; - public static readonly RULE_qualifiedName = 183; - public static readonly RULE_principal = 184; - public static readonly RULE_identifier = 185; - public static readonly RULE_number = 186; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 187; - public static readonly RULE_nonReserved = 188; + public static readonly RULE_selectList = 137; + public static readonly RULE_whereClause = 138; + public static readonly RULE_havingClause = 139; + public static readonly RULE_groupBy = 140; + public static readonly RULE_groupingElement = 141; + public static readonly RULE_groupingSet = 142; + public static readonly RULE_namedQuery = 143; + public static readonly RULE_setQuantifier = 144; + public static readonly RULE_selectItem = 145; + public static readonly RULE_columnAlias = 146; + public static readonly RULE_selectLiteralColumnName = 147; + public static readonly RULE_selectExpressionColumnName = 148; + public static readonly RULE_tableAllColumns = 149; + public static readonly RULE_relation = 150; + public static readonly RULE_joinType = 151; + public static readonly RULE_joinCriteria = 152; + public static readonly RULE_sampledRelation = 153; + public static readonly RULE_sampleType = 154; + public static readonly RULE_aliasedRelation = 155; + public static readonly RULE_columnAliases = 156; + public static readonly RULE_relationPrimary = 157; + public static readonly RULE_atomSubQueryTableSource = 158; + public static readonly RULE_subQueryRelation = 159; + public static readonly RULE_unnest = 160; + public static readonly RULE_parenthesizedRelation = 161; + public static readonly RULE_columnItem = 162; + public static readonly RULE_expression = 163; + public static readonly RULE_booleanExpression = 164; + public static readonly RULE_predicate = 165; + public static readonly RULE_valueExpression = 166; + public static readonly RULE_functionCallExpression = 167; + public static readonly RULE_primaryExpression = 168; + public static readonly RULE_stringLiteral = 169; + public static readonly RULE_comparisonOperator = 170; + public static readonly RULE_comparisonQuantifier = 171; + public static readonly RULE_booleanValue = 172; + public static readonly RULE_interval = 173; + public static readonly RULE_intervalField = 174; + public static readonly RULE_normalForm = 175; + public static readonly RULE_type = 176; + public static readonly RULE_dataType = 177; + public static readonly RULE_typeParameter = 178; + public static readonly RULE_baseType = 179; + public static readonly RULE_whenClause = 180; + public static readonly RULE_filter = 181; + public static readonly RULE_partitionByClause = 182; + public static readonly RULE_over = 183; + public static readonly RULE_windowFrame = 184; + public static readonly RULE_frameBound = 185; + public static readonly RULE_pathElement = 186; + public static readonly RULE_pathSpecification = 187; + public static readonly RULE_privilege = 188; + public static readonly RULE_objectType = 189; + public static readonly RULE_qualifiedName = 190; + public static readonly RULE_principal = 191; + public static readonly RULE_identifier = 192; + public static readonly RULE_number = 193; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 194; + public static readonly RULE_nonReserved = 195; public static readonly literalNames = [ null, "'ADD'", "'ALL'", "'ANALYTIC'", "'ALTER'", "'AND'", "'ANY'", @@ -639,19 +646,20 @@ export class ImpalaSqlParser extends SQLParserBase { "hashClause", "rangeClause", "kuduPartitionSpec", "cacheSpec", "rangeOperator", "partitionCol", "likeClause", "properties", "partitionedBy", "sortedBy", "rowFormat", "property", "queryNoWith", "queryTerm", "queryPrimary", - "sortItem", "querySpecification", "whereClause", "havingClause", + "sortItem", "querySpecification", "selectList", "whereClause", "havingClause", "groupBy", "groupingElement", "groupingSet", "namedQuery", "setQuantifier", - "selectItem", "relation", "joinType", "joinCriteria", "sampledRelation", + "selectItem", "columnAlias", "selectLiteralColumnName", "selectExpressionColumnName", + "tableAllColumns", "relation", "joinType", "joinCriteria", "sampledRelation", "sampleType", "aliasedRelation", "columnAliases", "relationPrimary", - "subQueryRelation", "unnest", "parenthesizedRelation", "columnItem", - "expression", "booleanExpression", "predicate", "valueExpression", - "primaryExpression", "stringLiteral", "comparisonOperator", "comparisonQuantifier", - "booleanValue", "interval", "intervalField", "normalForm", "type", - "dataType", "typeParameter", "baseType", "whenClause", "filter", - "partitionByClause", "over", "windowFrame", "frameBound", "pathElement", - "pathSpecification", "privilege", "objectType", "qualifiedName", - "principal", "identifier", "number", "reservedKeywordsUsedAsFuncName", - "nonReserved", + "atomSubQueryTableSource", "subQueryRelation", "unnest", "parenthesizedRelation", + "columnItem", "expression", "booleanExpression", "predicate", "valueExpression", + "functionCallExpression", "primaryExpression", "stringLiteral", + "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", + "intervalField", "normalForm", "type", "dataType", "typeParameter", + "baseType", "whenClause", "filter", "partitionByClause", "over", + "windowFrame", "frameBound", "pathElement", "pathSpecification", + "privilege", "objectType", "qualifiedName", "principal", "identifier", + "number", "reservedKeywordsUsedAsFuncName", "nonReserved", ]; public get grammarFileName(): string { return "ImpalaSqlParser.g4"; } @@ -675,21 +683,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 381; + this.state = 395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4 || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 22085645) !== 0) || _la === 67 || _la === 86 || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 524545) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 134520835) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 1083521) !== 0) || _la === 264 || _la === 265) { { { - this.state = 378; + this.state = 392; this.singleStatement(); } } - this.state = 383; + this.state = 397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 384; + this.state = 398; this.match(ImpalaSqlParser.EOF); } } @@ -714,14 +722,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 386; + this.state = 400; this.sqlStatement(); - this.state = 388; + this.state = 402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 387; + this.state = 401; this.match(ImpalaSqlParser.SEMICOLON); } } @@ -746,160 +754,160 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, ImpalaSqlParser.RULE_sqlStatement); try { - this.state = 412; + this.state = 426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 390; + this.state = 404; this.queryStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 391; + this.state = 405; this.useStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 392; + this.state = 406; this.createStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 393; + this.state = 407; this.alterStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 394; + this.state = 408; this.truncateTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 395; + this.state = 409; this.describeStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 396; + this.state = 410; this.computeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 397; + this.state = 411; this.dropStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 398; + this.state = 412; this.grantStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 399; + this.state = 413; this.revokeStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 400; + this.state = 414; this.insertStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 401; + this.state = 415; this.deleteStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 402; + this.state = 416; this.updateStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 403; + this.state = 417; this.upsertStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 404; + this.state = 418; this.showStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 405; + this.state = 419; this.addCommentStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 406; + this.state = 420; this.explainStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 407; + this.state = 421; this.setStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 408; + this.state = 422; this.shutdownStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 409; + this.state = 423; this.invalidateMetaStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 410; + this.state = 424; this.loadDataStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 411; + this.state = 425; this.refreshStatement(); } break; @@ -925,9 +933,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 414; + this.state = 428; this.match(ImpalaSqlParser.KW_USE); - this.state = 415; + this.state = 429; this.databaseNamePath(); } } @@ -949,62 +957,62 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CreateStatementContext(this.context, this.state); this.enterRule(localContext, 8, ImpalaSqlParser.RULE_createStatement); try { - this.state = 425; + this.state = 439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 417; + this.state = 431; this.createSchema(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 418; + this.state = 432; this.createRole(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 419; + this.state = 433; this.createAggregateFunction(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 420; + this.state = 434; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 421; + this.state = 435; this.createView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 422; + this.state = 436; this.createKuduTableAsSelect(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 423; + this.state = 437; this.createTableLike(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 424; + this.state = 438; this.createTableSelect(); } break; @@ -1032,97 +1040,97 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 427; + this.state = 441; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 429; + this.state = 443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 428; + this.state = 442; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 431; + this.state = 445; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 433; + this.state = 447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 432; + this.state = 446; this.ifNotExists(); } } - this.state = 435; + this.state = 449; this.tableNameCreate(); - this.state = 451; + this.state = 465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 436; + this.state = 450; this.match(ImpalaSqlParser.LPAREN); - this.state = 437; + this.state = 451; this.columnDefinition(); - this.state = 442; + this.state = 456; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 438; + this.state = 452; this.match(ImpalaSqlParser.COMMA); - this.state = 439; + this.state = 453; this.columnDefinition(); } } } - this.state = 444; + this.state = 458; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } - this.state = 447; + this.state = 461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 445; + this.state = 459; this.match(ImpalaSqlParser.COMMA); - this.state = 446; + this.state = 460; this.constraintSpecification(); } } - this.state = 449; + this.state = 463; this.match(ImpalaSqlParser.RPAREN); } break; } - this.state = 459; + this.state = 473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 453; + this.state = 467; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 454; + this.state = 468; this.match(ImpalaSqlParser.KW_BY); - this.state = 457; + this.state = 471; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 455; + this.state = 469; this.columnAliases(); } break; case 2: { - this.state = 456; + this.state = 470; this.partitionedBy(); } break; @@ -1130,16 +1138,16 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 461; + this.state = 475; this.createCommonItem(); - this.state = 464; + this.state = 478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 462; + this.state = 476; this.match(ImpalaSqlParser.KW_AS); - this.state = 463; + this.state = 477; this.queryStatement(); } } @@ -1167,35 +1175,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 466; + this.state = 480; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 468; + this.state = 482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 467; + this.state = 481; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 470; + this.state = 484; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 472; + this.state = 486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 471; + this.state = 485; this.ifNotExists(); } } - this.state = 474; + this.state = 488; this.tableNameCreate(); - this.state = 475; + this.state = 489; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 479; + this.state = 493; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BERNOULLI: @@ -1237,36 +1245,36 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 476; + this.state = 490; this.tableNamePath(); } break; case ImpalaSqlParser.KW_PARQUET: { - this.state = 477; + this.state = 491; this.match(ImpalaSqlParser.KW_PARQUET); - this.state = 478; + this.state = 492; localContext._parquet = this.stringLiteral(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 484; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 481; + this.state = 495; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 482; + this.state = 496; this.match(ImpalaSqlParser.KW_BY); - this.state = 483; + this.state = 497; this.partitionedBy(); } } - this.state = 486; + this.state = 500; this.createCommonItem(); } } @@ -1292,95 +1300,95 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 488; + this.state = 502; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 490; + this.state = 504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 489; + this.state = 503; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 492; + this.state = 506; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 494; + this.state = 508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 493; + this.state = 507; this.ifNotExists(); } } - this.state = 496; + this.state = 510; this.tableNameCreate(); - this.state = 514; + this.state = 528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 497; + this.state = 511; this.match(ImpalaSqlParser.LPAREN); - this.state = 498; + this.state = 512; this.kuduTableElement(); - this.state = 503; + this.state = 517; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 499; + this.state = 513; this.match(ImpalaSqlParser.COMMA); - this.state = 500; + this.state = 514; this.kuduTableElement(); } } } - this.state = 505; + this.state = 519; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } - this.state = 510; + this.state = 524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 506; + this.state = 520; this.match(ImpalaSqlParser.COMMA); - this.state = 507; + this.state = 521; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 508; + this.state = 522; this.match(ImpalaSqlParser.KW_KEY); - this.state = 509; + this.state = 523; this.columnAliases(); } } - this.state = 512; + this.state = 526; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 521; + this.state = 535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 516; + this.state = 530; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 517; + this.state = 531; this.match(ImpalaSqlParser.KW_KEY); - this.state = 519; + this.state = 533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 518; + this.state = 532; this.columnAliases(); } } @@ -1388,56 +1396,56 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 526; + this.state = 540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 523; + this.state = 537; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 524; + this.state = 538; this.match(ImpalaSqlParser.KW_BY); - this.state = 525; + this.state = 539; this.kuduPartitionClause(); } } - this.state = 529; + this.state = 543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 528; + this.state = 542; this.commentClause(); } } - this.state = 531; + this.state = 545; this.match(ImpalaSqlParser.KW_STORED); - this.state = 532; + this.state = 546; this.match(ImpalaSqlParser.KW_AS); - this.state = 533; + this.state = 547; this.match(ImpalaSqlParser.KW_KUDU); - this.state = 536; + this.state = 550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 534; + this.state = 548; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 535; + this.state = 549; localContext._tblProp = this.properties(); } } - this.state = 540; + this.state = 554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 538; + this.state = 552; this.match(ImpalaSqlParser.KW_AS); - this.state = 539; + this.state = 553; this.queryStatement(); } } @@ -1465,57 +1473,57 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 542; + this.state = 556; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 543; + this.state = 557; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 545; + this.state = 559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 544; + this.state = 558; this.ifNotExists(); } } - this.state = 547; + this.state = 561; this.viewNameCreate(); - this.state = 549; + this.state = 563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 548; + this.state = 562; this.viewColumns(); } } - this.state = 552; + this.state = 566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 551; + this.state = 565; this.commentClause(); } } - this.state = 556; + this.state = 570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 554; + this.state = 568; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 555; + this.state = 569; localContext._tblProp = this.properties(); } } - this.state = 558; + this.state = 572; this.match(ImpalaSqlParser.KW_AS); - this.state = 559; + this.state = 573; this.queryStatement(); } } @@ -1540,9 +1548,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 561; + this.state = 575; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 562; + this.state = 576; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1551,36 +1559,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 564; + this.state = 578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 563; + this.state = 577; this.ifNotExists(); } } - this.state = 566; + this.state = 580; this.databaseNameCreate(); - this.state = 568; + this.state = 582; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 567; + this.state = 581; this.commentClause(); } break; } - this.state = 572; + this.state = 586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 570; + this.state = 584; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 571; + this.state = 585; localContext._location = this.stringLiteral(); } } @@ -1607,11 +1615,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 574; + this.state = 588; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 575; + this.state = 589; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 576; + this.state = 590; localContext._name = this.identifier(); } } @@ -1636,168 +1644,168 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 578; + this.state = 592; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 580; + this.state = 594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 579; + this.state = 593; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 582; + this.state = 596; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 584; + this.state = 598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 583; + this.state = 597; this.ifNotExists(); } } - this.state = 586; + this.state = 600; this.functionNameCreate(); - this.state = 599; + this.state = 613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 587; + this.state = 601; this.match(ImpalaSqlParser.LPAREN); - this.state = 596; + this.state = 610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 588; + this.state = 602; this.type_(0); - this.state = 593; + this.state = 607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 589; + this.state = 603; this.match(ImpalaSqlParser.COMMA); - this.state = 590; + this.state = 604; this.type_(0); } } - this.state = 595; + this.state = 609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 598; + this.state = 612; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 601; + this.state = 615; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 602; + this.state = 616; localContext._returnType = this.type_(0); - this.state = 605; + this.state = 619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 603; + this.state = 617; this.match(ImpalaSqlParser.KW_INTERMEDIATE); - this.state = 604; + this.state = 618; this.type_(0); } } - this.state = 607; + this.state = 621; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 608; + this.state = 622; this.match(ImpalaSqlParser.STRING); - this.state = 612; + this.state = 626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 609; + this.state = 623; this.match(ImpalaSqlParser.KW_INIT_FN); - this.state = 610; + this.state = 624; this.match(ImpalaSqlParser.EQ); - this.state = 611; + this.state = 625; this.match(ImpalaSqlParser.STRING); } } - this.state = 614; + this.state = 628; this.match(ImpalaSqlParser.KW_UPDATE_FN); - this.state = 615; + this.state = 629; this.match(ImpalaSqlParser.EQ); - this.state = 616; + this.state = 630; this.match(ImpalaSqlParser.STRING); - this.state = 617; + this.state = 631; this.match(ImpalaSqlParser.KW_MERGE_FN); - this.state = 618; + this.state = 632; this.match(ImpalaSqlParser.EQ); - this.state = 619; + this.state = 633; this.match(ImpalaSqlParser.STRING); - this.state = 623; + this.state = 637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 620; + this.state = 634; this.match(ImpalaSqlParser.KW_PREPARE_FN); - this.state = 621; + this.state = 635; this.match(ImpalaSqlParser.EQ); - this.state = 622; + this.state = 636; this.match(ImpalaSqlParser.STRING); } } - this.state = 628; + this.state = 642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 625; + this.state = 639; this.match(ImpalaSqlParser.KW_CLOSEFN); - this.state = 626; + this.state = 640; this.match(ImpalaSqlParser.EQ); - this.state = 627; + this.state = 641; this.match(ImpalaSqlParser.STRING); } } - this.state = 633; + this.state = 647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 630; + this.state = 644; this.match(ImpalaSqlParser.KW_SERIALIZE_FN); - this.state = 631; + this.state = 645; this.match(ImpalaSqlParser.EQ); - this.state = 632; + this.state = 646; this.match(ImpalaSqlParser.STRING); } } - this.state = 638; + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 76) { { - this.state = 635; + this.state = 649; this.match(ImpalaSqlParser.KW_FINALIZE_FN); - this.state = 636; + this.state = 650; this.match(ImpalaSqlParser.EQ); - this.state = 637; + this.state = 651; this.match(ImpalaSqlParser.STRING); } } @@ -1825,81 +1833,81 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 640; + this.state = 654; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 641; + this.state = 655; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 643; + this.state = 657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 642; + this.state = 656; this.ifNotExists(); } } - this.state = 645; + this.state = 659; this.functionNameCreate(); - this.state = 658; + this.state = 672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 646; + this.state = 660; this.match(ImpalaSqlParser.LPAREN); - this.state = 655; + this.state = 669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 647; + this.state = 661; this.type_(0); - this.state = 652; + this.state = 666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 648; + this.state = 662; this.match(ImpalaSqlParser.COMMA); - this.state = 649; + this.state = 663; this.type_(0); } } - this.state = 654; + this.state = 668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 657; + this.state = 671; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 662; + this.state = 676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 660; + this.state = 674; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 661; + this.state = 675; localContext._returnType = this.type_(0); } } - this.state = 664; + this.state = 678; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 665; + this.state = 679; this.match(ImpalaSqlParser.STRING); - this.state = 666; + this.state = 680; this.match(ImpalaSqlParser.KW_SYMBOL); - this.state = 667; + this.state = 681; this.match(ImpalaSqlParser.EQ); - this.state = 668; + this.state = 682; localContext._symbol_ = this.stringLiteral(); } } @@ -1921,132 +1929,132 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AlterStatementContext(this.context, this.state); this.enterRule(localContext, 26, ImpalaSqlParser.RULE_alterStatement); try { - this.state = 688; + this.state = 702; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 670; + this.state = 684; this.alterDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 671; + this.state = 685; this.alterUnSetOrSetViewTblProperties(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 672; + this.state = 686; this.renameTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 673; + this.state = 687; this.alterViewOwner(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 674; + this.state = 688; this.alterView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 675; + this.state = 689; this.renameView(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 676; + this.state = 690; this.dropPartitionByRangeOrValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 677; + this.state = 691; this.alterFormat(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 678; + this.state = 692; this.recoverPartitions(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 679; + this.state = 693; this.addPartitionByRangeOrValue(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 680; + this.state = 694; this.alterTableNonKuduOrKuduOnly(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 681; + this.state = 695; this.addSingleColumn(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 682; + this.state = 696; this.replaceOrAddColumns(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 683; + this.state = 697; this.changeColumnDefine(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 684; + this.state = 698; this.alterStatsKey(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 685; + this.state = 699; this.alterPartitionCache(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 686; + this.state = 700; this.alterDropSingleColumn(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 687; + this.state = 701; this.alterTableOwner(); } break; @@ -2073,17 +2081,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 690; + this.state = 704; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 691; + this.state = 705; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 692; + this.state = 706; this.databaseNamePath(); - this.state = 693; + this.state = 707; this.match(ImpalaSqlParser.KW_SET); - this.state = 694; + this.state = 708; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 695; + this.state = 709; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2092,7 +2100,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 696; + this.state = 710; this.identifier(); } } @@ -2117,45 +2125,45 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 698; + this.state = 712; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 699; + this.state = 713; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 700; + this.state = 714; this.tableNamePath(); - this.state = 701; + this.state = 715; this.match(ImpalaSqlParser.KW_SET); - this.state = 702; + this.state = 716; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 703; + this.state = 717; this.match(ImpalaSqlParser.KW_STATS); - this.state = 704; + this.state = 718; this.columnNamePath(); - this.state = 705; + this.state = 719; this.match(ImpalaSqlParser.LPAREN); - this.state = 706; + this.state = 720; this.statsKey(); - this.state = 707; + this.state = 721; this.match(ImpalaSqlParser.EQ); - this.state = 708; + this.state = 722; this.stringLiteral(); - this.state = 714; + this.state = 728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 709; + this.state = 723; this.match(ImpalaSqlParser.COMMA); - this.state = 710; + this.state = 724; this.statsKey(); - this.state = 711; + this.state = 725; this.match(ImpalaSqlParser.EQ); - this.state = 712; + this.state = 726; this.stringLiteral(); } } - this.state = 716; + this.state = 730; this.match(ImpalaSqlParser.RPAREN); } } @@ -2180,50 +2188,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 718; + this.state = 732; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 719; + this.state = 733; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 720; + this.state = 734; this.tableNamePath(); - this.state = 723; + this.state = 737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 721; + this.state = 735; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 722; + this.state = 736; this.expression(); } } - this.state = 725; + this.state = 739; this.match(ImpalaSqlParser.KW_SET); - this.state = 736; + this.state = 750; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { { - this.state = 726; + this.state = 740; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 727; + this.state = 741; this.match(ImpalaSqlParser.KW_IN); - this.state = 728; + this.state = 742; this.stringLiteral(); - this.state = 733; + this.state = 747; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 729; + this.state = 743; this.match(ImpalaSqlParser.KW_WITH); - this.state = 730; + this.state = 744; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 731; + this.state = 745; this.match(ImpalaSqlParser.EQ); - this.state = 732; + this.state = 746; this.number_(); } break; @@ -2233,7 +2241,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 735; + this.state = 749; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -2262,17 +2270,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 738; + this.state = 752; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 739; + this.state = 753; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 740; + this.state = 754; this.tableNamePath(); - this.state = 741; + this.state = 755; this.match(ImpalaSqlParser.KW_CHANGE); - this.state = 742; + this.state = 756; this.columnNamePath(); - this.state = 743; + this.state = 757; this.columnSpecWithKudu(); } } @@ -2296,25 +2304,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 745; + this.state = 759; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 746; + this.state = 760; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 747; + this.state = 761; this.tableNamePath(); - this.state = 748; + this.state = 762; this.match(ImpalaSqlParser.KW_DROP); - this.state = 750; + this.state = 764; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 749; + this.state = 763; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 752; + this.state = 766; this.columnNamePath(); } } @@ -2339,17 +2347,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 754; + this.state = 768; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 755; + this.state = 769; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 756; + this.state = 770; this.tableNamePath(); - this.state = 757; + this.state = 771; this.match(ImpalaSqlParser.KW_SET); - this.state = 758; + this.state = 772; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 759; + this.state = 773; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2358,7 +2366,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 760; + this.state = 774; this.identifier(); } } @@ -2384,31 +2392,31 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 762; + this.state = 776; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 763; + this.state = 777; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 764; + this.state = 778; this.tableNamePath(); - this.state = 770; + this.state = 784; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_REPLACE: { - this.state = 765; + this.state = 779; this.match(ImpalaSqlParser.KW_REPLACE); } break; case ImpalaSqlParser.KW_ADD: { - this.state = 766; + this.state = 780; this.match(ImpalaSqlParser.KW_ADD); - this.state = 768; + this.state = 782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 767; + this.state = 781; this.ifNotExists(); } } @@ -2418,31 +2426,31 @@ export class ImpalaSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 772; + this.state = 786; this.match(ImpalaSqlParser.KW_COLUMNS); - this.state = 773; + this.state = 787; this.match(ImpalaSqlParser.LPAREN); - this.state = 774; + this.state = 788; this.columnSpecWithKudu(); - this.state = 779; + this.state = 793; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 775; + this.state = 789; this.match(ImpalaSqlParser.COMMA); - this.state = 776; + this.state = 790; this.columnSpecWithKudu(); } } } - this.state = 781; + this.state = 795; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); } - this.state = 782; + this.state = 796; this.match(ImpalaSqlParser.RPAREN); } } @@ -2467,27 +2475,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 784; + this.state = 798; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 785; + this.state = 799; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 786; + this.state = 800; this.tableNamePath(); - this.state = 787; + this.state = 801; this.match(ImpalaSqlParser.KW_ADD); - this.state = 788; + this.state = 802; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 790; + this.state = 804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 789; + this.state = 803; this.ifNotExists(); } } - this.state = 792; + this.state = 806; this.createColumnSpecWithKudu(); } } @@ -2511,34 +2519,34 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 794; + this.state = 808; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 795; + this.state = 809; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 796; + this.state = 810; this.tableNamePath(); - this.state = 797; + this.state = 811; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 799; + this.state = 813; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 798; + this.state = 812; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 801; + this.state = 815; this.columnNamePath(); - this.state = 810; + this.state = 824; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SET: { - this.state = 802; + this.state = 816; this.match(ImpalaSqlParser.KW_SET); - this.state = 806; + this.state = 820; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BLOCK_SIZE: @@ -2546,15 +2554,15 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 803; + this.state = 817; this.kuduStorageAttr(); } break; case ImpalaSqlParser.KW_COMMENT: { - this.state = 804; + this.state = 818; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 805; + this.state = 819; this.stringLiteral(); } break; @@ -2565,9 +2573,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_DROP: { - this.state = 808; + this.state = 822; this.match(ImpalaSqlParser.KW_DROP); - this.state = 809; + this.state = 823; this.match(ImpalaSqlParser.KW_DEFAULT); } break; @@ -2597,51 +2605,51 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 812; + this.state = 826; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 813; + this.state = 827; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 814; + this.state = 828; this.tableNamePath(); - this.state = 815; + this.state = 829; this.match(ImpalaSqlParser.KW_ADD); - this.state = 817; + this.state = 831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 816; + this.state = 830; this.ifNotExists(); } } - this.state = 831; + this.state = 845; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 819; + this.state = 833; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 820; + this.state = 834; this.expression(); - this.state = 823; + this.state = 837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 821; + this.state = 835; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 822; + this.state = 836; this.stringLiteral(); } } - this.state = 826; + this.state = 840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 197) { { - this.state = 825; + this.state = 839; this.cacheSpec(); } } @@ -2650,11 +2658,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 828; + this.state = 842; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 829; + this.state = 843; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 830; + this.state = 844; this.kuduPartitionSpec(); } break; @@ -2684,35 +2692,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 833; + this.state = 847; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 834; + this.state = 848; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 835; + this.state = 849; this.tableNamePath(); - this.state = 838; + this.state = 852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 836; + this.state = 850; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 837; + this.state = 851; this.expression(); } } - this.state = 840; + this.state = 854; this.match(ImpalaSqlParser.KW_SET); - this.state = 852; + this.state = 866; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_FILEFORMAT: { { - this.state = 841; + this.state = 855; this.match(ImpalaSqlParser.KW_FILEFORMAT); - this.state = 842; + this.state = 856; this.fileFormat(); } } @@ -2720,11 +2728,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_ROW: { { - this.state = 843; + this.state = 857; this.match(ImpalaSqlParser.KW_ROW); - this.state = 844; + this.state = 858; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 845; + this.state = 859; this.rowFormat(); } } @@ -2732,9 +2740,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LOCATION: { { - this.state = 846; + this.state = 860; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 847; + this.state = 861; this.stringLiteral(); } } @@ -2742,9 +2750,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_TBLPROPERTIES: { { - this.state = 848; + this.state = 862; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 849; + this.state = 863; localContext._tblProp = this.properties(); } } @@ -2752,9 +2760,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_SERDEPROPERTIES: { { - this.state = 850; + this.state = 864; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 851; + this.state = 865; localContext._tblProp = this.properties(); } } @@ -2784,15 +2792,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 854; + this.state = 868; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 855; + this.state = 869; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 856; + this.state = 870; this.tableNamePath(); - this.state = 857; + this.state = 871; this.match(ImpalaSqlParser.KW_RECOVER); - this.state = 858; + this.state = 872; this.match(ImpalaSqlParser.KW_PARTITIONS); } } @@ -2817,39 +2825,39 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 860; + this.state = 874; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 861; + this.state = 875; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 862; + this.state = 876; this.tableNamePath(); - this.state = 863; + this.state = 877; this.match(ImpalaSqlParser.KW_DROP); - this.state = 865; + this.state = 879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 864; + this.state = 878; this.ifExists(); } } - this.state = 875; + this.state = 889; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 867; + this.state = 881; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 868; + this.state = 882; this.expression(); - this.state = 870; + this.state = 884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 869; + this.state = 883; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -2858,11 +2866,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 872; + this.state = 886; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 873; + this.state = 887; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 874; + this.state = 888; this.kuduPartitionSpec(); } break; @@ -2892,25 +2900,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 877; + this.state = 891; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 878; + this.state = 892; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 879; + this.state = 893; this.viewNamePath(); - this.state = 881; + this.state = 895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 880; + this.state = 894; this.viewColumns(); } } - this.state = 883; + this.state = 897; this.match(ImpalaSqlParser.KW_AS); - this.state = 884; + this.state = 898; this.queryStatement(); } } @@ -2934,17 +2942,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 886; + this.state = 900; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 887; + this.state = 901; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 888; + this.state = 902; this.viewNamePath(); - this.state = 889; + this.state = 903; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 890; + this.state = 904; this.match(ImpalaSqlParser.KW_TO); - this.state = 891; + this.state = 905; this.viewNamePath(); } } @@ -2969,17 +2977,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 893; + this.state = 907; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 894; + this.state = 908; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 895; + this.state = 909; this.viewNamePath(); - this.state = 896; + this.state = 910; this.match(ImpalaSqlParser.KW_SET); - this.state = 897; + this.state = 911; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 898; + this.state = 912; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2988,7 +2996,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 899; + this.state = 913; this.qualifiedName(); } } @@ -3012,17 +3020,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 901; + this.state = 915; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 902; + this.state = 916; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 903; + this.state = 917; this.tableNamePath(); - this.state = 904; + this.state = 918; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 905; + this.state = 919; this.match(ImpalaSqlParser.KW_TO); - this.state = 906; + this.state = 920; this.tableNamePath(); } } @@ -3047,13 +3055,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 908; + this.state = 922; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 909; + this.state = 923; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 910; + this.state = 924; this.viewNamePath(); - this.state = 911; + this.state = 925; _la = this.tokenStream.LA(1); if(!(_la === 176 || _la === 202)) { this.errorHandler.recoverInline(this); @@ -3062,9 +3070,9 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 912; + this.state = 926; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 913; + this.state = 927; localContext._tblProp = this.properties(); } } @@ -3089,29 +3097,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 915; + this.state = 929; this.match(ImpalaSqlParser.KW_TRUNCATE); - this.state = 917; + this.state = 931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 916; + this.state = 930; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 920; + this.state = 934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 919; + this.state = 933; this.ifExists(); } } - this.state = 922; + this.state = 936; this.tableNamePath(); } } @@ -3136,24 +3144,24 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 924; + this.state = 938; this.match(ImpalaSqlParser.KW_DESCRIBE); - this.state = 926; + this.state = 940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 925; + this.state = 939; this.match(ImpalaSqlParser.KW_DATABASE); } } - this.state = 929; + this.state = 943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 80) { { - this.state = 928; + this.state = 942; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -3165,7 +3173,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 931; + this.state = 945; this.qualifiedName(); } } @@ -3187,20 +3195,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ComputeStatementContext(this.context, this.state); this.enterRule(localContext, 68, ImpalaSqlParser.RULE_computeStatement); try { - this.state = 935; + this.state = 949; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 933; + this.state = 947; this.computeStats(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 934; + this.state = 948; this.computeIncrementalStats(); } break; @@ -3227,49 +3235,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 937; + this.state = 951; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 938; + this.state = 952; this.match(ImpalaSqlParser.KW_STATS); - this.state = 939; + this.state = 953; this.tableNamePath(); - this.state = 941; + this.state = 955; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 940; + this.state = 954; this.columnAliases(); } break; } - this.state = 955; + this.state = 969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 943; + this.state = 957; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 944; + this.state = 958; this.match(ImpalaSqlParser.KW_SYSTEM); - this.state = 945; + this.state = 959; this.match(ImpalaSqlParser.LPAREN); - this.state = 946; + this.state = 960; this.number_(); - this.state = 947; + this.state = 961; this.match(ImpalaSqlParser.RPAREN); - this.state = 953; + this.state = 967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 157) { { - this.state = 948; + this.state = 962; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 949; + this.state = 963; this.match(ImpalaSqlParser.LPAREN); - this.state = 950; + this.state = 964; this.number_(); - this.state = 951; + this.state = 965; this.match(ImpalaSqlParser.RPAREN); } } @@ -3300,26 +3308,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 957; + this.state = 971; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 958; + this.state = 972; this.match(ImpalaSqlParser.KW_INCREMENTAL); - this.state = 959; + this.state = 973; this.match(ImpalaSqlParser.KW_STATS); - this.state = 960; + this.state = 974; this.tableNamePath(); - this.state = 966; + this.state = 980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 961; + this.state = 975; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 962; + this.state = 976; this.match(ImpalaSqlParser.LPAREN); - this.state = 963; + this.state = 977; this.expression(); - this.state = 964; + this.state = 978; this.match(ImpalaSqlParser.RPAREN); } } @@ -3344,48 +3352,48 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DropStatementContext(this.context, this.state); this.enterRule(localContext, 74, ImpalaSqlParser.RULE_dropStatement); try { - this.state = 974; + this.state = 988; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 982; this.dropRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 969; + this.state = 983; this.dropFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 970; + this.state = 984; this.dropIncrementalStats(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 971; + this.state = 985; this.dropView(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 972; + this.state = 986; this.dropTable(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 973; + this.state = 987; this.dropSchema(); } break; @@ -3412,9 +3420,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; + this.state = 990; this.match(ImpalaSqlParser.KW_DROP); - this.state = 977; + this.state = 991; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -3423,24 +3431,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 979; + this.state = 993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 978; + this.state = 992; this.ifExists(); } } - this.state = 981; + this.state = 995; this.databaseNamePath(); - this.state = 983; + this.state = 997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27 || _la === 159) { { - this.state = 982; + this.state = 996; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 159)) { this.errorHandler.recoverInline(this); @@ -3475,21 +3483,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 985; + this.state = 999; this.match(ImpalaSqlParser.KW_DROP); - this.state = 986; + this.state = 1000; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 988; + this.state = 1002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 987; + this.state = 1001; this.ifExists(); } } - this.state = 990; + this.state = 1004; this.viewNamePath(); } } @@ -3514,28 +3522,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 992; + this.state = 1006; this.match(ImpalaSqlParser.KW_DROP); - this.state = 993; + this.state = 1007; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 995; + this.state = 1009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 994; + this.state = 1008; this.ifExists(); } } - this.state = 997; + this.state = 1011; this.tableNamePath(); - this.state = 999; + this.state = 1013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 998; + this.state = 1012; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -3563,30 +3571,30 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1001; + this.state = 1015; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1003; + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 96) { { - this.state = 1002; + this.state = 1016; this.match(ImpalaSqlParser.KW_INCREMENTAL); } } - this.state = 1005; + this.state = 1019; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1006; + this.state = 1020; this.tableNamePath(); - this.state = 1009; + this.state = 1023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1007; + this.state = 1021; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1008; + this.state = 1022; this.expression(); } } @@ -3614,66 +3622,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1011; + this.state = 1025; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1013; + this.state = 1027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 1012; + this.state = 1026; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 1015; + this.state = 1029; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 1017; + this.state = 1031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1016; + this.state = 1030; this.ifExists(); } } - this.state = 1019; + this.state = 1033; this.functionNamePath(); - this.state = 1032; + this.state = 1046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1020; + this.state = 1034; this.match(ImpalaSqlParser.LPAREN); - this.state = 1029; + this.state = 1043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 1021; + this.state = 1035; this.type_(0); - this.state = 1026; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1022; + this.state = 1036; this.match(ImpalaSqlParser.COMMA); - this.state = 1023; + this.state = 1037; this.type_(0); } } - this.state = 1028; + this.state = 1042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1031; + this.state = 1045; this.match(ImpalaSqlParser.RPAREN); } break; @@ -3700,11 +3708,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1034; + this.state = 1048; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1035; + this.state = 1049; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1036; + this.state = 1050; localContext._name = this.identifier(); } } @@ -3726,20 +3734,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new GrantStatementContext(this.context, this.state); this.enterRule(localContext, 88, ImpalaSqlParser.RULE_grantStatement); try { - this.state = 1040; + this.state = 1054; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1038; + this.state = 1052; this.grantRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1039; + this.state = 1053; this.grant(); } break; @@ -3765,17 +3773,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1042; + this.state = 1056; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1043; + this.state = 1057; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1044; + this.state = 1058; this.identifier(); - this.state = 1045; + this.state = 1059; this.match(ImpalaSqlParser.KW_TO); - this.state = 1046; + this.state = 1060; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1047; + this.state = 1061; this.identifier(); } } @@ -3800,27 +3808,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1049; + this.state = 1063; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1050; + this.state = 1064; this.privilege(); - this.state = 1051; + this.state = 1065; this.match(ImpalaSqlParser.KW_ON); - this.state = 1052; + this.state = 1066; this.objectType(); - this.state = 1054; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1053; + this.state = 1067; this.qualifiedName(); } } - this.state = 1056; + this.state = 1070; this.match(ImpalaSqlParser.KW_TO); - this.state = 1057; + this.state = 1071; localContext._grantee = this.principal(); } } @@ -3842,20 +3850,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RevokeStatementContext(this.context, this.state); this.enterRule(localContext, 94, ImpalaSqlParser.RULE_revokeStatement); try { - this.state = 1061; + this.state = 1075; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1059; + this.state = 1073; this.revokeRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1060; + this.state = 1074; this.revoke(); } break; @@ -3881,17 +3889,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1063; + this.state = 1077; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1064; + this.state = 1078; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1065; + this.state = 1079; this.identifier(); - this.state = 1066; + this.state = 1080; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1067; + this.state = 1081; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1068; + this.state = 1082; this.identifier(); } } @@ -3916,62 +3924,62 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1070; + this.state = 1084; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1074; + this.state = 1088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86) { { - this.state = 1071; + this.state = 1085; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1072; + this.state = 1086; this.match(ImpalaSqlParser.KW_OPTION); - this.state = 1073; + this.state = 1087; this.match(ImpalaSqlParser.KW_FOR); } } - this.state = 1076; + this.state = 1090; this.privilege(); - this.state = 1077; + this.state = 1091; this.match(ImpalaSqlParser.KW_ON); - this.state = 1078; + this.state = 1092; this.objectType(); - this.state = 1080; + this.state = 1094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1079; + this.state = 1093; this.qualifiedName(); } } - this.state = 1082; + this.state = 1096; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1088; + this.state = 1102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1083; + this.state = 1097; localContext._grantee = this.principal(); } break; case 2: { - this.state = 1085; + this.state = 1099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 1084; + this.state = 1098; this.match(ImpalaSqlParser.KW_ROLE); } } - this.state = 1087; + this.state = 1101; this.identifier(); } break; @@ -3999,19 +4007,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1091; + this.state = 1105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1090; + this.state = 1104; this.with_(); } } - this.state = 1093; + this.state = 1107; this.match(ImpalaSqlParser.KW_INSERT); - this.state = 1094; + this.state = 1108; _la = this.tokenStream.LA(1); if(!(_la === 103 || _la === 144)) { this.errorHandler.recoverInline(this); @@ -4020,61 +4028,61 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1096; + this.state = 1110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1095; + this.state = 1109; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1098; + this.state = 1112; this.tableNamePath(); - this.state = 1100; + this.state = 1114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1099; + this.state = 1113; this.columnAliases(); } break; } - this.state = 1114; + this.state = 1128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1102; + this.state = 1116; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1103; + this.state = 1117; this.match(ImpalaSqlParser.LPAREN); - this.state = 1104; + this.state = 1118; this.expression(); - this.state = 1109; + this.state = 1123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1105; + this.state = 1119; this.match(ImpalaSqlParser.COMMA); - this.state = 1106; + this.state = 1120; this.expression(); } } - this.state = 1111; + this.state = 1125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1112; + this.state = 1126; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 1116; + this.state = 1130; this.queryStatement(); } } @@ -4096,20 +4104,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 102, ImpalaSqlParser.RULE_deleteStatement); try { - this.state = 1120; + this.state = 1134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1118; + this.state = 1132; this.delete_(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1119; + this.state = 1133; this.deleteTableRef(); } break; @@ -4136,26 +4144,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1122; + this.state = 1136; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1124; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1123; + this.state = 1137; this.match(ImpalaSqlParser.KW_FROM); } } - this.state = 1126; + this.state = 1140; this.tableNamePath(); - this.state = 1128; + this.state = 1142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1127; + this.state = 1141; this.whereClause(); } } @@ -4183,64 +4191,64 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1130; + this.state = 1144; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1131; + this.state = 1145; this.tableNamePath(); - this.state = 1136; + this.state = 1150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1133; + this.state = 1147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 1132; + this.state = 1146; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 1135; + this.state = 1149; this.identifier(); } } - this.state = 1138; + this.state = 1152; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1147; + this.state = 1161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1139; + this.state = 1153; this.relation(0); - this.state = 1144; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1140; + this.state = 1154; this.match(ImpalaSqlParser.COMMA); - this.state = 1141; + this.state = 1155; this.relation(0); } } - this.state = 1146; + this.state = 1160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1150; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1149; + this.state = 1163; this.whereClause(); } } @@ -4268,48 +4276,48 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1152; + this.state = 1166; this.match(ImpalaSqlParser.KW_UPDATE); - this.state = 1153; + this.state = 1167; this.tableNamePath(); - this.state = 1154; + this.state = 1168; this.match(ImpalaSqlParser.KW_SET); - this.state = 1155; + this.state = 1169; this.assignmentList(); - this.state = 1165; + this.state = 1179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1156; + this.state = 1170; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1157; + this.state = 1171; this.relation(0); - this.state = 1162; + this.state = 1176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1158; + this.state = 1172; this.match(ImpalaSqlParser.COMMA); - this.state = 1159; + this.state = 1173; this.relation(0); } } - this.state = 1164; + this.state = 1178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1168; + this.state = 1182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1167; + this.state = 1181; this.whereClause(); } } @@ -4337,33 +4345,33 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1170; + this.state = 1184; this.match(ImpalaSqlParser.KW_UPSERT); - this.state = 1171; + this.state = 1185; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1173; + this.state = 1187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1172; + this.state = 1186; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1175; + this.state = 1189; this.tableNamePath(); - this.state = 1177; + this.state = 1191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1176; + this.state = 1190; this.columnAliases(); } break; } - this.state = 1179; + this.state = 1193; this.queryStatement(); } } @@ -4385,90 +4393,90 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ShowStatementContext(this.context, this.state); this.enterRule(localContext, 112, ImpalaSqlParser.RULE_showStatement); try { - this.state = 1193; + this.state = 1207; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1181; + this.state = 1195; this.showRoles(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1182; + this.state = 1196; this.showRoleGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1183; + this.state = 1197; this.showGrants(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1184; + this.state = 1198; this.showFiles(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1185; + this.state = 1199; this.showPartitions(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1186; + this.state = 1200; this.showColumnStats(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1187; + this.state = 1201; this.showTableStats(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1188; + this.state = 1202; this.showCreateView(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1189; + this.state = 1203; this.showCreateTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1190; + this.state = 1204; this.showFunctions(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1191; + this.state = 1205; this.showTables(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1192; + this.state = 1206; this.showSchemas(); } break; @@ -4495,9 +4503,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1195; + this.state = 1209; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1196; + this.state = 1210; _la = this.tokenStream.LA(1); if(!(_la === 47 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -4506,36 +4514,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1208; + this.state = 1222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1198; + this.state = 1212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1197; + this.state = 1211; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1200; + this.state = 1214; localContext._pattern = this.stringLiteral(); - this.state = 1205; + this.state = 1219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1201; + this.state = 1215; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1202; + this.state = 1216; this.stringLiteral(); } } - this.state = 1207; + this.state = 1221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4565,52 +4573,52 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1210; + this.state = 1224; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1211; + this.state = 1225; this.match(ImpalaSqlParser.KW_TABLES); - this.state = 1214; + this.state = 1228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1212; + this.state = 1226; this.match(ImpalaSqlParser.KW_IN); - this.state = 1213; + this.state = 1227; this.tableNamePath(); } } - this.state = 1227; + this.state = 1241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1217; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1216; + this.state = 1230; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1219; + this.state = 1233; localContext._pattern = this.stringLiteral(); - this.state = 1224; + this.state = 1238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1220; + this.state = 1234; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1221; + this.state = 1235; this.stringLiteral(); } } - this.state = 1226; + this.state = 1240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4640,14 +4648,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1229; + this.state = 1243; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1231; + this.state = 1245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3 || _la === 12) { { - this.state = 1230; + this.state = 1244; _la = this.tokenStream.LA(1); if(!(_la === 3 || _la === 12)) { this.errorHandler.recoverInline(this); @@ -4659,50 +4667,50 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1233; + this.state = 1247; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1236; + this.state = 1250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1234; + this.state = 1248; this.match(ImpalaSqlParser.KW_IN); - this.state = 1235; + this.state = 1249; this.databaseNamePath(); } } - this.state = 1249; + this.state = 1263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1239; + this.state = 1253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1238; + this.state = 1252; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1241; + this.state = 1255; localContext._pattern = this.stringLiteral(); - this.state = 1246; + this.state = 1260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1242; + this.state = 1256; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1243; + this.state = 1257; this.stringLiteral(); } } - this.state = 1248; + this.state = 1262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4731,13 +4739,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1251; + this.state = 1265; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1252; + this.state = 1266; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1253; + this.state = 1267; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1254; + this.state = 1268; this.tableNamePath(); } } @@ -4761,13 +4769,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1256; + this.state = 1270; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1257; + this.state = 1271; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1258; + this.state = 1272; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 1259; + this.state = 1273; this.viewNamePath(); } } @@ -4791,13 +4799,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1261; + this.state = 1275; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1262; + this.state = 1276; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1263; + this.state = 1277; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1264; + this.state = 1278; this.tableNamePath(); } } @@ -4821,13 +4829,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1280; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1267; + this.state = 1281; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1268; + this.state = 1282; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1269; + this.state = 1283; this.tableNamePath(); } } @@ -4852,21 +4860,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1285; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1273; + this.state = 1287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1272; + this.state = 1286; this.match(ImpalaSqlParser.KW_RANGE); } } - this.state = 1275; + this.state = 1289; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1276; + this.state = 1290; this.tableNamePath(); } } @@ -4891,38 +4899,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1278; + this.state = 1292; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1279; + this.state = 1293; this.match(ImpalaSqlParser.KW_FILES); - this.state = 1280; + this.state = 1294; this.match(ImpalaSqlParser.KW_IN); - this.state = 1281; + this.state = 1295; this.tableNamePath(); - this.state = 1291; + this.state = 1305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1282; + this.state = 1296; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1283; + this.state = 1297; this.match(ImpalaSqlParser.LPAREN); - this.state = 1284; + this.state = 1298; this.expression(); - this.state = 1287; + this.state = 1301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1285; + this.state = 1299; this.match(ImpalaSqlParser.COMMA); - this.state = 1286; + this.state = 1300; this.expression(); } } - this.state = 1289; + this.state = 1303; this.match(ImpalaSqlParser.RPAREN); } } @@ -4950,19 +4958,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1293; + this.state = 1307; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1295; + this.state = 1309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 1294; + this.state = 1308; this.match(ImpalaSqlParser.KW_CURRENT); } } - this.state = 1297; + this.state = 1311; this.match(ImpalaSqlParser.KW_ROLES); } } @@ -4986,15 +4994,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1299; + this.state = 1313; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1300; + this.state = 1314; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1301; + this.state = 1315; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1302; + this.state = 1316; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1303; + this.state = 1317; this.identifier(); } } @@ -5017,38 +5025,38 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 136, ImpalaSqlParser.RULE_showGrants); let _la: number; try { - this.state = 1319; + this.state = 1333; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1305; + this.state = 1319; this.showDatabaseGrant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1306; + this.state = 1320; this.showTableGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1307; + this.state = 1321; this.showColumnGrant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1308; + this.state = 1322; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1309; + this.state = 1323; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1310; + this.state = 1324; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5057,16 +5065,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1311; + this.state = 1325; this.identifier(); - this.state = 1317; + this.state = 1331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1312; + this.state = 1326; this.match(ImpalaSqlParser.KW_ON); - this.state = 1313; + this.state = 1327; _la = this.tokenStream.LA(1); if(!(_la === 178 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -5075,12 +5083,12 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1315; + this.state = 1329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1314; + this.state = 1328; this.qualifiedName(); } } @@ -5113,11 +5121,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1321; + this.state = 1335; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1322; + this.state = 1336; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1323; + this.state = 1337; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5126,23 +5134,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1324; + this.state = 1338; this.identifier(); - this.state = 1330; + this.state = 1344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1325; + this.state = 1339; this.match(ImpalaSqlParser.KW_ON); - this.state = 1326; + this.state = 1340; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1328; + this.state = 1342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1327; + this.state = 1341; this.databaseNamePath(); } } @@ -5173,11 +5181,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1332; + this.state = 1346; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1333; + this.state = 1347; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1334; + this.state = 1348; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5186,23 +5194,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1335; + this.state = 1349; this.identifier(); - this.state = 1341; + this.state = 1355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1336; + this.state = 1350; this.match(ImpalaSqlParser.KW_ON); - this.state = 1337; + this.state = 1351; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1339; + this.state = 1353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1338; + this.state = 1352; this.tableNamePath(); } } @@ -5233,11 +5241,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1357; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1344; + this.state = 1358; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1345; + this.state = 1359; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5246,23 +5254,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1346; + this.state = 1360; this.identifier(); - this.state = 1352; + this.state = 1366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1347; + this.state = 1361; this.match(ImpalaSqlParser.KW_ON); - this.state = 1348; + this.state = 1362; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1350; + this.state = 1364; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1349; + this.state = 1363; this.columnNamePath(); } break; @@ -5290,27 +5298,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AddCommentStatementContext(this.context, this.state); this.enterRule(localContext, 144, ImpalaSqlParser.RULE_addCommentStatement); try { - this.state = 1357; + this.state = 1371; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1354; + this.state = 1368; this.addDatabaseComments(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1355; + this.state = 1369; this.addTableComments(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1356; + this.state = 1370; this.addColumnComments(); } break; @@ -5336,29 +5344,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1359; + this.state = 1373; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1360; + this.state = 1374; this.match(ImpalaSqlParser.KW_ON); - this.state = 1361; + this.state = 1375; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1362; + this.state = 1376; this.databaseNamePath(); - this.state = 1363; + this.state = 1377; this.match(ImpalaSqlParser.KW_IS); - this.state = 1366; + this.state = 1380; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1364; + this.state = 1378; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1365; + this.state = 1379; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5387,29 +5395,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1368; + this.state = 1382; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1369; + this.state = 1383; this.match(ImpalaSqlParser.KW_ON); - this.state = 1370; + this.state = 1384; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1371; + this.state = 1385; this.tableNamePath(); - this.state = 1372; + this.state = 1386; this.match(ImpalaSqlParser.KW_IS); - this.state = 1375; + this.state = 1389; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1373; + this.state = 1387; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1374; + this.state = 1388; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5438,29 +5446,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1377; + this.state = 1391; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1378; + this.state = 1392; this.match(ImpalaSqlParser.KW_ON); - this.state = 1379; + this.state = 1393; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1380; + this.state = 1394; this.columnNamePath(); - this.state = 1381; + this.state = 1395; this.match(ImpalaSqlParser.KW_IS); - this.state = 1384; + this.state = 1398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1382; + this.state = 1396; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1383; + this.state = 1397; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5489,9 +5497,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1386; + this.state = 1400; this.match(ImpalaSqlParser.KW_EXPLAIN); - this.state = 1387; + this.state = 1401; this.sqlStatement(); } } @@ -5515,14 +5523,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1389; + this.state = 1403; this.match(ImpalaSqlParser.KW_SET); - this.state = 1395; + this.state = 1409; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: { - this.state = 1390; + this.state = 1404; this.match(ImpalaSqlParser.KW_ALL); } break; @@ -5565,11 +5573,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1391; + this.state = 1405; this.identifier(); - this.state = 1392; + this.state = 1406; this.match(ImpalaSqlParser.EQ); - this.state = 1393; + this.state = 1407; this.expression(); } break; @@ -5628,23 +5636,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1397; + this.state = 1411; this.match(ImpalaSqlParser.COLON); - this.state = 1398; + this.state = 1412; this.match(ImpalaSqlParser.KW_SHUTDOWN); - this.state = 1399; + this.state = 1413; this.match(ImpalaSqlParser.LPAREN); - this.state = 1409; + this.state = 1423; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1401; + this.state = 1415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274 || _la === 275) { { - this.state = 1400; + this.state = 1414; this.stringLiteral(); } } @@ -5653,16 +5661,16 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 2: { - this.state = 1403; + this.state = 1417; this.stringLiteral(); - this.state = 1406; + this.state = 1420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1404; + this.state = 1418; this.match(ImpalaSqlParser.COMMA); - this.state = 1405; + this.state = 1419; this.expression(); } } @@ -5671,12 +5679,12 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 3: { - this.state = 1408; + this.state = 1422; this.expression(); } break; } - this.state = 1411; + this.state = 1425; this.match(ImpalaSqlParser.RPAREN); } } @@ -5700,11 +5708,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1413; + this.state = 1427; this.match(ImpalaSqlParser.KW_INVALIDATE); - this.state = 1414; + this.state = 1428; this.match(ImpalaSqlParser.KW_METADATA); - this.state = 1415; + this.state = 1429; this.tableNamePath(); } } @@ -5729,54 +5737,54 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1417; + this.state = 1431; this.match(ImpalaSqlParser.KW_LOAD); - this.state = 1418; + this.state = 1432; this.match(ImpalaSqlParser.KW_DATA); - this.state = 1419; + this.state = 1433; this.match(ImpalaSqlParser.KW_INPATH); - this.state = 1420; + this.state = 1434; this.match(ImpalaSqlParser.STRING); - this.state = 1422; + this.state = 1436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 1421; + this.state = 1435; this.match(ImpalaSqlParser.KW_OVERWRITE); } } - this.state = 1424; + this.state = 1438; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1425; + this.state = 1439; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1426; + this.state = 1440; this.tableNamePath(); - this.state = 1436; + this.state = 1450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1427; + this.state = 1441; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1428; + this.state = 1442; this.match(ImpalaSqlParser.LPAREN); - this.state = 1429; + this.state = 1443; this.expression(); - this.state = 1432; + this.state = 1446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1430; + this.state = 1444; this.match(ImpalaSqlParser.COMMA); - this.state = 1431; + this.state = 1445; this.expression(); } } - this.state = 1434; + this.state = 1448; this.match(ImpalaSqlParser.RPAREN); } } @@ -5801,27 +5809,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RefreshStatementContext(this.context, this.state); this.enterRule(localContext, 162, ImpalaSqlParser.RULE_refreshStatement); try { - this.state = 1441; + this.state = 1455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1438; + this.state = 1452; this.refreshMeta(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1439; + this.state = 1453; this.refreshAuth(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1440; + this.state = 1454; this.refreshFunction(); } break; @@ -5849,40 +5857,40 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1443; + this.state = 1457; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1444; + this.state = 1458; this.tableNamePath(); - this.state = 1457; + this.state = 1471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1445; + this.state = 1459; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1446; + this.state = 1460; this.match(ImpalaSqlParser.LPAREN); - this.state = 1447; + this.state = 1461; this.expression(); - this.state = 1452; + this.state = 1466; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1448; + this.state = 1462; this.match(ImpalaSqlParser.COMMA); - this.state = 1449; + this.state = 1463; this.expression(); } } } - this.state = 1454; + this.state = 1468; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } - this.state = 1455; + this.state = 1469; this.match(ImpalaSqlParser.RPAREN); } } @@ -5909,9 +5917,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1459; + this.state = 1473; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1460; + this.state = 1474; this.match(ImpalaSqlParser.KW_AUTHORIZATION); } } @@ -5935,11 +5943,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1462; + this.state = 1476; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1463; + this.state = 1477; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1464; + this.state = 1478; this.functionNamePath(); } } @@ -5963,9 +5971,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1466; + this.state = 1480; this.match(ImpalaSqlParser.KW_IF); - this.state = 1467; + this.state = 1481; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -5989,11 +5997,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1469; + this.state = 1483; this.match(ImpalaSqlParser.KW_IF); - this.state = 1470; + this.state = 1484; this.match(ImpalaSqlParser.KW_NOT); - this.state = 1471; + this.state = 1485; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -6017,7 +6025,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1473; + this.state = 1487; this.qualifiedName(); } } @@ -6041,7 +6049,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1475; + this.state = 1489; this.qualifiedName(); } } @@ -6065,7 +6073,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1477; + this.state = 1491; this.qualifiedName(); } } @@ -6089,7 +6097,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1479; + this.state = 1493; this.qualifiedName(); } } @@ -6113,7 +6121,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1481; + this.state = 1495; this.qualifiedName(); } } @@ -6137,7 +6145,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1483; + this.state = 1497; this.qualifiedName(); } } @@ -6162,23 +6170,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1485; + this.state = 1499; this.identifier(); - this.state = 1490; + this.state = 1504; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1486; + this.state = 1500; this.match(ImpalaSqlParser.DOT); - this.state = 1487; + this.state = 1501; this.identifier(); } } } - this.state = 1492; + this.state = 1506; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); } @@ -6205,23 +6213,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1493; + this.state = 1507; this.identifier(); - this.state = 1498; + this.state = 1512; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1494; + this.state = 1508; this.match(ImpalaSqlParser.DOT); - this.state = 1495; + this.state = 1509; this.identifier(); } } } - this.state = 1500; + this.state = 1514; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -6245,20 +6253,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new FunctionNamePathContext(this.context, this.state); this.enterRule(localContext, 190, ImpalaSqlParser.RULE_functionNamePath); try { - this.state = 1503; + this.state = 1517; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1501; + this.state = 1515; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1502; + this.state = 1516; this.qualifiedName(); } break; @@ -6282,20 +6290,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 192, ImpalaSqlParser.RULE_columnNamePath); try { - this.state = 1507; + this.state = 1521; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1505; + this.state = 1519; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1506; + this.state = 1520; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -6323,7 +6331,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1509; + this.state = 1523; this.qualifiedName(); } } @@ -6345,20 +6353,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new TableOrViewPathContext(this.context, this.state); this.enterRule(localContext, 196, ImpalaSqlParser.RULE_tableOrViewPath); try { - this.state = 1513; + this.state = 1527; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1511; + this.state = 1525; this.tableNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1512; + this.state = 1526; this.viewNamePath(); } break; @@ -6385,107 +6393,107 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1518; + this.state = 1532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1515; + this.state = 1529; this.match(ImpalaSqlParser.KW_SORT); - this.state = 1516; + this.state = 1530; this.match(ImpalaSqlParser.KW_BY); - this.state = 1517; + this.state = 1531; this.columnAliases(); } } - this.state = 1521; + this.state = 1535; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 1520; + this.state = 1534; this.commentClause(); } break; } - this.state = 1526; + this.state = 1540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1523; + this.state = 1537; this.match(ImpalaSqlParser.KW_ROW); - this.state = 1524; + this.state = 1538; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 1525; + this.state = 1539; this.rowFormat(); } } - this.state = 1531; + this.state = 1545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1528; + this.state = 1542; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1529; + this.state = 1543; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 1530; + this.state = 1544; localContext._serdProp = this.properties(); } break; } - this.state = 1536; + this.state = 1550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 23) { { - this.state = 1533; + this.state = 1547; this.match(ImpalaSqlParser.KW_STORED); - this.state = 1534; + this.state = 1548; this.match(ImpalaSqlParser.KW_AS); - this.state = 1535; + this.state = 1549; this.fileFormat(); } } - this.state = 1540; + this.state = 1554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 1538; + this.state = 1552; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 1539; + this.state = 1553; localContext._location = this.stringLiteral(); } } - this.state = 1552; + this.state = 1566; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { - this.state = 1542; + this.state = 1556; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1543; + this.state = 1557; this.match(ImpalaSqlParser.KW_IN); - this.state = 1544; + this.state = 1558; localContext._cacheName = this.qualifiedName(); - this.state = 1549; + this.state = 1563; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1545; + this.state = 1559; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1546; + this.state = 1560; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1547; + this.state = 1561; this.match(ImpalaSqlParser.EQ); - this.state = 1548; + this.state = 1562; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -6494,7 +6502,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 1551; + this.state = 1565; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -6532,14 +6540,14 @@ export class ImpalaSqlParser extends SQLParserBase { default: break; } - this.state = 1556; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 1554; + this.state = 1568; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 1555; + this.state = 1569; localContext._tblProp = this.properties(); } } @@ -6567,21 +6575,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1558; + this.state = 1572; this.assignmentItem(); - this.state = 1563; + this.state = 1577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1559; + this.state = 1573; this.match(ImpalaSqlParser.COMMA); - this.state = 1560; + this.state = 1574; this.assignmentItem(); } } - this.state = 1565; + this.state = 1579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6607,11 +6615,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1580; this.qualifiedName(); - this.state = 1567; + this.state = 1581; this.match(ImpalaSqlParser.EQ); - this.state = 1568; + this.state = 1582; this.expression(); } } @@ -6636,43 +6644,43 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1570; + this.state = 1584; this.match(ImpalaSqlParser.LPAREN); - this.state = 1572; + this.state = 1586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1571; + this.state = 1585; this.viewColumnItem(); } } - this.state = 1580; + this.state = 1594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1574; + this.state = 1588; this.match(ImpalaSqlParser.COMMA); - this.state = 1576; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1575; + this.state = 1589; this.viewColumnItem(); } } } } - this.state = 1582; + this.state = 1596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1583; + this.state = 1597; this.match(ImpalaSqlParser.RPAREN); } } @@ -6697,14 +6705,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1585; + this.state = 1599; this.columnNamePathCreate(); - this.state = 1587; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1586; + this.state = 1600; this.commentClause(); } } @@ -6732,17 +6740,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1590; + this.state = 1604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1589; + this.state = 1603; this.with_(); } } - this.state = 1592; + this.state = 1606; this.queryNoWith(); } } @@ -6767,23 +6775,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1594; + this.state = 1608; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1595; + this.state = 1609; this.namedQuery(); - this.state = 1600; + this.state = 1614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1596; + this.state = 1610; this.match(ImpalaSqlParser.COMMA); - this.state = 1597; + this.state = 1611; this.namedQuery(); } } - this.state = 1602; + this.state = 1616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6811,98 +6819,98 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1603; + this.state = 1617; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1604; + this.state = 1618; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1605; + this.state = 1619; this.columnAliases(); - this.state = 1607; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1606; + this.state = 1620; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1612; + this.state = 1626; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1609; + this.state = 1623; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; case 2: { - this.state = 1610; + this.state = 1624; this.match(ImpalaSqlParser.COMMA); - this.state = 1611; + this.state = 1625; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; } - this.state = 1617; + this.state = 1631; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1614; + this.state = 1628; this.match(ImpalaSqlParser.KW_RELY); } break; case 2: { - this.state = 1615; + this.state = 1629; this.match(ImpalaSqlParser.COMMA); - this.state = 1616; + this.state = 1630; this.match(ImpalaSqlParser.KW_RELY); } break; } - this.state = 1631; + this.state = 1645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 263) { { - this.state = 1622; + this.state = 1636; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.COMMA: { - this.state = 1619; + this.state = 1633; this.match(ImpalaSqlParser.COMMA); - this.state = 1620; + this.state = 1634; this.foreignKeySpecification(); } break; case ImpalaSqlParser.KW_FOREIGN: { - this.state = 1621; + this.state = 1635; this.foreignKeySpecification(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1628; + this.state = 1642; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1624; + this.state = 1638; this.match(ImpalaSqlParser.COMMA); - this.state = 1625; + this.state = 1639; this.foreignKeySpecification(); } } } - this.state = 1630; + this.state = 1644; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); } @@ -6932,44 +6940,44 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1633; + this.state = 1647; this.match(ImpalaSqlParser.KW_FOREIGN); - this.state = 1634; + this.state = 1648; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1635; + this.state = 1649; this.columnAliases(); - this.state = 1636; + this.state = 1650; this.match(ImpalaSqlParser.KW_REFERENCES); - this.state = 1637; + this.state = 1651; this.tableNamePath(); - this.state = 1638; + this.state = 1652; this.columnAliases(); - this.state = 1640; + this.state = 1654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1639; + this.state = 1653; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1643; + this.state = 1657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 1642; + this.state = 1656; this.match(ImpalaSqlParser.KW_NOVALIDATE); } } - this.state = 1646; + this.state = 1660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 226) { { - this.state = 1645; + this.state = 1659; this.match(ImpalaSqlParser.KW_RELY); } } @@ -6996,18 +7004,18 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1648; + this.state = 1662; this.columnNamePath(); - this.state = 1649; + this.state = 1663; this.type_(0); - this.state = 1652; + this.state = 1666; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1650; + this.state = 1664; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1651; + this.state = 1665; this.stringLiteral(); } break; @@ -7035,16 +7043,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1668; this.columnNamePathCreate(); - this.state = 1655; + this.state = 1669; localContext._colType = this.type_(0); - this.state = 1657; + this.state = 1671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1656; + this.state = 1670; this.commentClause(); } } @@ -7071,7 +7079,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1659; + this.state = 1673; this.kuduColumnDefinition(); } } @@ -7097,54 +7105,54 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1661; + this.state = 1675; this.columnNamePathCreate(); - this.state = 1662; + this.state = 1676; localContext._colType = this.type_(0); - this.state = 1670; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1663; + this.state = 1677; this.kuduAttributes(); - this.state = 1667; + this.state = 1681; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1664; + this.state = 1678; this.kuduAttributes(); } } } - this.state = 1669; + this.state = 1683; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } } } - this.state = 1673; + this.state = 1687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1672; + this.state = 1686; this.commentClause(); } } - this.state = 1677; + this.state = 1691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1675; + this.state = 1689; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1676; + this.state = 1690; this.match(ImpalaSqlParser.KW_KEY); } } @@ -7171,9 +7179,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1679; + this.state = 1693; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1680; + this.state = 1694; localContext._comment = this.stringLiteral(); } } @@ -7199,28 +7207,28 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1682; + this.state = 1696; this.columnSpec(); - this.state = 1690; + this.state = 1704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1683; + this.state = 1697; this.kuduAttributes(); - this.state = 1687; + this.state = 1701; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1684; + this.state = 1698; this.kuduAttributes(); } } } - this.state = 1689; + this.state = 1703; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } @@ -7251,42 +7259,42 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1692; + this.state = 1706; this.columnNamePathCreate(); - this.state = 1693; + this.state = 1707; this.type_(0); - this.state = 1696; + this.state = 1710; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 1694; + this.state = 1708; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1695; + this.state = 1709; this.stringLiteral(); } break; } - this.state = 1705; + this.state = 1719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1698; + this.state = 1712; this.kuduAttributes(); - this.state = 1702; + this.state = 1716; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1699; + this.state = 1713; this.kuduAttributes(); } } } - this.state = 1704; + this.state = 1718; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); } @@ -7316,23 +7324,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1712; + this.state = 1726; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_NOT: case ImpalaSqlParser.KW_NULL: { - this.state = 1708; + this.state = 1722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1707; + this.state = 1721; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 1710; + this.state = 1724; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -7341,7 +7349,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 1711; + this.state = 1725; this.kuduStorageAttr(); } break; @@ -7368,42 +7376,42 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new KuduStorageAttrContext(this.context, this.state); this.enterRule(localContext, 232, ImpalaSqlParser.RULE_kuduStorageAttr); try { - this.state = 1722; + this.state = 1736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ENCODING: this.enterOuterAlt(localContext, 1); { - this.state = 1714; + this.state = 1728; this.match(ImpalaSqlParser.KW_ENCODING); - this.state = 1715; + this.state = 1729; this.expression(); } break; case ImpalaSqlParser.KW_COMPRESSION: this.enterOuterAlt(localContext, 2); { - this.state = 1716; + this.state = 1730; this.match(ImpalaSqlParser.KW_COMPRESSION); - this.state = 1717; + this.state = 1731; this.expression(); } break; case ImpalaSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 1718; + this.state = 1732; this.match(ImpalaSqlParser.KW_DEFAULT); - this.state = 1719; + this.state = 1733; this.expression(); } break; case ImpalaSqlParser.KW_BLOCK_SIZE: this.enterOuterAlt(localContext, 4); { - this.state = 1720; + this.state = 1734; this.match(ImpalaSqlParser.KW_BLOCK_SIZE); - this.state = 1721; + this.state = 1735; this.number_(); } break; @@ -7432,7 +7440,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1724; + this.state = 1738; _la = this.tokenStream.LA(1); if(!(((((_la - 245)) & ~0x1F) === 0 && ((1 << (_la - 245)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -7464,7 +7472,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1726; + this.state = 1740; _la = this.tokenStream.LA(1); if(!(_la === 147 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 31) !== 0))) { this.errorHandler.recoverInline(this); @@ -7495,41 +7503,41 @@ export class ImpalaSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1741; + this.state = 1755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_HASH: this.enterOuterAlt(localContext, 1); { { - this.state = 1728; + this.state = 1742; this.hashClause(); - this.state = 1733; + this.state = 1747; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1729; + this.state = 1743; this.match(ImpalaSqlParser.COMMA); - this.state = 1730; + this.state = 1744; this.hashClause(); } } } - this.state = 1735; + this.state = 1749; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); } - this.state = 1738; + this.state = 1752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1736; + this.state = 1750; this.match(ImpalaSqlParser.COMMA); - this.state = 1737; + this.state = 1751; this.rangeClause(); } } @@ -7540,7 +7548,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 1740; + this.state = 1754; this.rangeClause(); } break; @@ -7569,21 +7577,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1743; + this.state = 1757; this.match(ImpalaSqlParser.KW_HASH); - this.state = 1745; + this.state = 1759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 1744; + this.state = 1758; this.columnAliases(); } } - this.state = 1747; + this.state = 1761; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1748; + this.state = 1762; this.number_(); } } @@ -7608,47 +7616,47 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1750; + this.state = 1764; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 1752; + this.state = 1766; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1751; + this.state = 1765; this.columnAliases(); } break; } - this.state = 1754; + this.state = 1768; this.match(ImpalaSqlParser.LPAREN); { - this.state = 1755; + this.state = 1769; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1756; + this.state = 1770; this.kuduPartitionSpec(); - this.state = 1762; + this.state = 1776; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1757; + this.state = 1771; this.match(ImpalaSqlParser.COMMA); - this.state = 1758; + this.state = 1772; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1759; + this.state = 1773; this.kuduPartitionSpec(); } } } - this.state = 1764; + this.state = 1778; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); } } - this.state = 1765; + this.state = 1779; this.match(ImpalaSqlParser.RPAREN); } } @@ -7671,17 +7679,17 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 244, ImpalaSqlParser.RULE_kuduPartitionSpec); let _la: number; try { - this.state = 1782; + this.state = 1796; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1767; + this.state = 1781; this.match(ImpalaSqlParser.KW_VALUE); - this.state = 1768; + this.state = 1782; this.partitionCol(); - this.state = 1769; + this.state = 1783; this.expression(); } break; @@ -7757,28 +7765,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 1774; + this.state = 1788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 1771; + this.state = 1785; this.expression(); - this.state = 1772; + this.state = 1786; this.rangeOperator(); } } - this.state = 1776; + this.state = 1790; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1780; + this.state = 1794; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1777; + this.state = 1791; this.rangeOperator(); - this.state = 1778; + this.state = 1792; this.expression(); } break; @@ -7807,30 +7815,30 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CacheSpecContext(this.context, this.state); this.enterRule(localContext, 246, ImpalaSqlParser.RULE_cacheSpec); try { - this.state = 1794; + this.state = 1808; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: this.enterOuterAlt(localContext, 1); { - this.state = 1784; + this.state = 1798; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1785; + this.state = 1799; this.match(ImpalaSqlParser.KW_IN); - this.state = 1786; + this.state = 1800; this.identifier(); - this.state = 1791; + this.state = 1805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1787; + this.state = 1801; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1788; + this.state = 1802; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1789; + this.state = 1803; this.match(ImpalaSqlParser.EQ); - this.state = 1790; + this.state = 1804; this.number_(); } break; @@ -7840,7 +7848,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_UNCACHED: this.enterOuterAlt(localContext, 2); { - this.state = 1793; + this.state = 1807; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -7866,7 +7874,7 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RangeOperatorContext(this.context, this.state); this.enterRule(localContext, 248, ImpalaSqlParser.RULE_rangeOperator); try { - this.state = 1801; + this.state = 1815; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -7947,28 +7955,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.LT: this.enterOuterAlt(localContext, 2); { - this.state = 1797; + this.state = 1811; this.match(ImpalaSqlParser.LT); } break; case ImpalaSqlParser.LTE: this.enterOuterAlt(localContext, 3); { - this.state = 1798; + this.state = 1812; this.match(ImpalaSqlParser.LTE); } break; case ImpalaSqlParser.GT: this.enterOuterAlt(localContext, 4); { - this.state = 1799; + this.state = 1813; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.GTE: this.enterOuterAlt(localContext, 5); { - this.state = 1800; + this.state = 1814; this.match(ImpalaSqlParser.GTE); } break; @@ -7994,55 +8002,55 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new PartitionColContext(this.context, this.state); this.enterRule(localContext, 250, ImpalaSqlParser.RULE_partitionCol); try { - this.state = 1811; + this.state = 1825; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.EQ: this.enterOuterAlt(localContext, 1); { - this.state = 1803; + this.state = 1817; this.match(ImpalaSqlParser.EQ); } break; case ImpalaSqlParser.NEQ: this.enterOuterAlt(localContext, 2); { - this.state = 1804; + this.state = 1818; this.match(ImpalaSqlParser.NEQ); } break; case ImpalaSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 1805; + this.state = 1819; this.match(ImpalaSqlParser.KW_LIKE); } break; case ImpalaSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 4); { - this.state = 1806; + this.state = 1820; this.match(ImpalaSqlParser.KW_RLIKE); } break; case ImpalaSqlParser.KW_REGEXP: this.enterOuterAlt(localContext, 5); { - this.state = 1807; + this.state = 1821; this.match(ImpalaSqlParser.KW_REGEXP); } break; case ImpalaSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 6); { - this.state = 1808; + this.state = 1822; this.match(ImpalaSqlParser.KW_BETWEEN); } break; case ImpalaSqlParser.KW_IN: this.enterOuterAlt(localContext, 7); { - this.state = 1809; + this.state = 1823; this.match(ImpalaSqlParser.KW_IN); } break; @@ -8121,7 +8129,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 8); { - this.state = 1810; + this.state = 1824; this.rangeOperator(); } break; @@ -8150,16 +8158,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1813; + this.state = 1827; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 1814; + this.state = 1828; this.qualifiedName(); - this.state = 1817; + this.state = 1831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 95) { { - this.state = 1815; + this.state = 1829; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 95)) { @@ -8169,7 +8177,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1816; + this.state = 1830; this.match(ImpalaSqlParser.KW_PROPERTIES); } } @@ -8197,27 +8205,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1833; this.match(ImpalaSqlParser.LPAREN); - this.state = 1820; + this.state = 1834; this.property(); - this.state = 1825; + this.state = 1839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1821; + this.state = 1835; this.match(ImpalaSqlParser.COMMA); - this.state = 1822; + this.state = 1836; this.property(); } } - this.state = 1827; + this.state = 1841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1828; + this.state = 1842; this.match(ImpalaSqlParser.RPAREN); } } @@ -8242,29 +8250,29 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1830; + this.state = 1844; this.match(ImpalaSqlParser.LPAREN); - this.state = 1831; + this.state = 1845; this.columnSpec(); - this.state = 1836; + this.state = 1850; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1832; + this.state = 1846; this.match(ImpalaSqlParser.COMMA); - this.state = 1833; + this.state = 1847; this.columnSpec(); } } } - this.state = 1838; + this.state = 1852; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } - this.state = 1839; + this.state = 1853; this.match(ImpalaSqlParser.RPAREN); } } @@ -8289,21 +8297,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1855; this.expression(); - this.state = 1846; + this.state = 1860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1842; + this.state = 1856; this.match(ImpalaSqlParser.COMMA); - this.state = 1843; + this.state = 1857; this.expression(); } } - this.state = 1848; + this.state = 1862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8330,31 +8338,31 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1849; + this.state = 1863; this.match(ImpalaSqlParser.KW_DELIMITED); - this.state = 1859; + this.state = 1873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1850; + this.state = 1864; this.match(ImpalaSqlParser.KW_FIELDS); - this.state = 1851; + this.state = 1865; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1852; + this.state = 1866; this.match(ImpalaSqlParser.KW_BY); - this.state = 1853; + this.state = 1867; this.stringLiteral(); - this.state = 1857; + this.state = 1871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 1854; + this.state = 1868; this.match(ImpalaSqlParser.KW_ESCAPED); - this.state = 1855; + this.state = 1869; this.match(ImpalaSqlParser.KW_BY); - this.state = 1856; + this.state = 1870; this.stringLiteral(); } } @@ -8362,18 +8370,18 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1865; + this.state = 1879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117) { { - this.state = 1861; + this.state = 1875; this.match(ImpalaSqlParser.KW_LINES); - this.state = 1862; + this.state = 1876; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1863; + this.state = 1877; this.match(ImpalaSqlParser.KW_BY); - this.state = 1864; + this.state = 1878; this.stringLiteral(); } } @@ -8401,16 +8409,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1867; + this.state = 1881; this.identifier(); - this.state = 1870; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 1868; + this.state = 1882; this.match(ImpalaSqlParser.EQ); - this.state = 1869; + this.state = 1883; this.expression(); } } @@ -8438,55 +8446,55 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1872; + this.state = 1886; this.queryTerm(0); - this.state = 1883; + this.state = 1897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 1873; + this.state = 1887; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 1874; + this.state = 1888; this.match(ImpalaSqlParser.KW_BY); - this.state = 1875; + this.state = 1889; this.sortItem(); - this.state = 1880; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1876; + this.state = 1890; this.match(ImpalaSqlParser.COMMA); - this.state = 1877; + this.state = 1891; this.sortItem(); } } - this.state = 1882; + this.state = 1896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1891; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1885; + this.state = 1899; this.match(ImpalaSqlParser.KW_LIMIT); - this.state = 1886; + this.state = 1900; localContext._rows = this.expression(); - this.state = 1889; + this.state = 1903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1887; + this.state = 1901; this.match(ImpalaSqlParser.KW_OFFSET); - this.state = 1888; + this.state = 1902; localContext._offset = this.match(ImpalaSqlParser.INTEGER_VALUE); } } @@ -8534,11 +8542,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1894; + this.state = 1908; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1910; + this.state = 1924; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8548,7 +8556,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1908; + this.state = 1922; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: @@ -8556,23 +8564,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1896; + this.state = 1910; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1897; + this.state = 1911; (localContext as SetOperationContext)._operator = this.match(ImpalaSqlParser.KW_INTERSECT); - this.state = 1899; + this.state = 1913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1898; + this.state = 1912; this.setQuantifier(); } } - this.state = 1901; + this.state = 1915; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -8581,11 +8589,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1902; + this.state = 1916; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1903; + this.state = 1917; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 200)) { @@ -8595,24 +8603,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1905; + this.state = 1919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1904; + this.state = 1918; this.setQuantifier(); } } - this.state = 1907; + this.state = 1921; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1912; + this.state = 1926; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } @@ -8637,14 +8645,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 268, ImpalaSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1929; + this.state = 1943; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1913; + this.state = 1927; this.querySpecification(); } break; @@ -8652,9 +8660,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1914; + this.state = 1928; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1915; + this.state = 1929; this.tableNamePath(); } break; @@ -8662,25 +8670,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1916; + this.state = 1930; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1917; + this.state = 1931; this.expression(); - this.state = 1922; + this.state = 1936; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1918; + this.state = 1932; this.match(ImpalaSqlParser.COMMA); - this.state = 1919; + this.state = 1933; this.expression(); } } } - this.state = 1924; + this.state = 1938; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } @@ -8690,11 +8698,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1925; + this.state = 1939; this.match(ImpalaSqlParser.LPAREN); - this.state = 1926; + this.state = 1940; this.queryNoWith(); - this.state = 1927; + this.state = 1941; this.match(ImpalaSqlParser.RPAREN); } break; @@ -8723,14 +8731,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1931; + this.state = 1945; this.columnItem(); - this.state = 1933; + this.state = 1947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 55) { { - this.state = 1932; + this.state = 1946; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 55)) { @@ -8743,14 +8751,14 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1937; + this.state = 1951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1935; + this.state = 1949; this.match(ImpalaSqlParser.KW_NULLS); - this.state = 1936; + this.state = 1950; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 75 || _la === 112)) { @@ -8786,108 +8794,90 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1939; + this.state = 1953; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 1941; + this.state = 1955; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 1940; + this.state = 1954; this.setQuantifier(); } break; } - this.state = 1944; + this.state = 1958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1943; + this.state = 1957; this.match(ImpalaSqlParser.KW_STRAIGHT_JOIN); } break; } - this.state = 1946; - this.selectItem(); - this.state = 1951; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1947; - this.match(ImpalaSqlParser.COMMA); - this.state = 1948; - this.selectItem(); - } - } - } - this.state = 1953; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); - } - this.state = 1963; + this.state = 1960; + this.selectList(); + this.state = 1970; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 1954; + this.state = 1961; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1955; + this.state = 1962; this.relation(0); - this.state = 1960; + this.state = 1967; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1956; + this.state = 1963; this.match(ImpalaSqlParser.COMMA); - this.state = 1957; + this.state = 1964; this.relation(0); } } } - this.state = 1962; + this.state = 1969; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); } } break; } - this.state = 1966; + this.state = 1973; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1965; + this.state = 1972; this.whereClause(); } break; } - this.state = 1971; + this.state = 1978; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1968; + this.state = 1975; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1969; + this.state = 1976; this.match(ImpalaSqlParser.KW_BY); - this.state = 1970; + this.state = 1977; this.groupBy(); } break; } - this.state = 1974; + this.state = 1981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 1973; + this.state = 1980; this.havingClause(); } break; @@ -8908,16 +8898,59 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } - public whereClause(): WhereClauseContext { - let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 274, ImpalaSqlParser.RULE_whereClause); + public selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 274, ImpalaSqlParser.RULE_selectList); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1976; - this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1977; - localContext._where = this.booleanExpression(0); + this.state = 1983; + this.selectItem(); + this.state = 1988; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1984; + this.match(ImpalaSqlParser.COMMA); + this.state = 1985; + this.selectItem(); + } + } + } + this.state = 1990; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public whereClause(): WhereClauseContext { + let localContext = new WhereClauseContext(this.context, this.state); + this.enterRule(localContext, 276, ImpalaSqlParser.RULE_whereClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1991; + this.match(ImpalaSqlParser.KW_WHERE); + this.state = 1992; + localContext._where = this.booleanExpression(0); } } catch (re) { @@ -8936,13 +8969,13 @@ export class ImpalaSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 276, ImpalaSqlParser.RULE_havingClause); + this.enterRule(localContext, 278, ImpalaSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1979; + this.state = 1994; this.match(ImpalaSqlParser.KW_HAVING); - this.state = 1980; + this.state = 1995; localContext._having = this.booleanExpression(0); } } @@ -8962,38 +8995,38 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 278, ImpalaSqlParser.RULE_groupBy); + this.enterRule(localContext, 280, ImpalaSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1983; + this.state = 1998; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 1982; + this.state = 1997; this.setQuantifier(); } break; } - this.state = 1985; + this.state = 2000; this.groupingElement(); - this.state = 1990; + this.state = 2005; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1986; + this.state = 2001; this.match(ImpalaSqlParser.COMMA); - this.state = 1987; + this.state = 2002; this.groupingElement(); } } } - this.state = 1992; + this.state = 2007; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); } @@ -9015,12 +9048,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 280, ImpalaSqlParser.RULE_groupingElement); + this.enterRule(localContext, 282, ImpalaSqlParser.RULE_groupingElement); try { localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1993; + this.state = 2008; this.groupingSet(); } } @@ -9040,51 +9073,51 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 282, ImpalaSqlParser.RULE_groupingSet); + this.enterRule(localContext, 284, ImpalaSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2008; + this.state = 2023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1995; + this.state = 2010; this.match(ImpalaSqlParser.LPAREN); - this.state = 2004; + this.state = 2019; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1996; + this.state = 2011; this.columnItem(); - this.state = 2001; + this.state = 2016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1997; + this.state = 2012; this.match(ImpalaSqlParser.COMMA); - this.state = 1998; + this.state = 2013; this.columnItem(); } } - this.state = 2003; + this.state = 2018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2006; + this.state = 2021; this.match(ImpalaSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2007; + this.state = 2022; this.columnItem(); } break; @@ -9106,26 +9139,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 284, ImpalaSqlParser.RULE_namedQuery); + this.enterRule(localContext, 286, ImpalaSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2010; + this.state = 2025; localContext._name = this.identifier(); - this.state = 2012; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2011; + this.state = 2026; this.columnAliases(); } } - this.state = 2014; + this.state = 2029; this.match(ImpalaSqlParser.KW_AS); - this.state = 2015; + this.state = 2030; this.subQueryRelation(); } } @@ -9145,12 +9178,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 286, ImpalaSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 288, ImpalaSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2017; + this.state = 2032; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 57)) { this.errorHandler.recoverInline(this); @@ -9177,58 +9210,50 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 288, ImpalaSqlParser.RULE_selectItem); - let _la: number; + this.enterRule(localContext, 290, ImpalaSqlParser.RULE_selectItem); try { - this.state = 2031; + this.state = 2043; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: - localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2019; - this.columnItem(); - this.state = 2024; + this.state = 2034; + this.selectLiteralColumnName(); + this.state = 2036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2021; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 9) { - { - this.state = 2020; - this.match(ImpalaSqlParser.KW_AS); - } - } - - this.state = 2023; - this.identifier(); + this.state = 2035; + this.columnAlias(); } break; } } break; case 2: - localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2026; - this.qualifiedName(); - this.state = 2027; - this.match(ImpalaSqlParser.DOT); - this.state = 2028; - this.match(ImpalaSqlParser.ASTERISK); + this.state = 2038; + this.selectExpressionColumnName(); + this.state = 2040; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + case 1: + { + this.state = 2039; + this.columnAlias(); + } + break; + } } break; case 3: - localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2030; - this.match(ImpalaSqlParser.ASTERISK); + this.state = 2042; + this.tableAllColumns(); } break; } @@ -9247,6 +9272,126 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public columnAlias(): ColumnAliasContext { + let localContext = new ColumnAliasContext(this.context, this.state); + this.enterRule(localContext, 292, ImpalaSqlParser.RULE_columnAlias); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2046; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 9) { + { + this.state = 2045; + this.match(ImpalaSqlParser.KW_AS); + } + } + + this.state = 2048; + localContext._alias = this.identifier(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 294, ImpalaSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2050; + this.columnNamePath(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 296, ImpalaSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2052; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 298, ImpalaSqlParser.RULE_tableAllColumns); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2057; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { + { + this.state = 2054; + this.qualifiedName(); + this.state = 2055; + this.match(ImpalaSqlParser.DOT); + } + } + + this.state = 2059; + this.match(ImpalaSqlParser.ASTERISK); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public relation(): RelationContext; public relation(_p: number): RelationContext; @@ -9259,8 +9404,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 290; - this.enterRecursionRule(localContext, 290, ImpalaSqlParser.RULE_relation, _p); + let _startState = 300; + this.enterRecursionRule(localContext, 300, ImpalaSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -9270,13 +9415,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2034; + this.state = 2062; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2049; + this.state = 2077; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 257, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9288,20 +9433,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_relation); - this.state = 2036; + this.state = 2064; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2045; + this.state = 2073; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2037; + this.state = 2065; this.match(ImpalaSqlParser.KW_CROSS); - this.state = 2038; + this.state = 2066; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2039; + this.state = 2067; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9311,13 +9456,13 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2040; + this.state = 2068; this.joinType(); - this.state = 2041; + this.state = 2069; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2042; + this.state = 2070; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 2043; + this.state = 2071; this.joinCriteria(); } break; @@ -9327,9 +9472,9 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2051; + this.state = 2079; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 257, this.context); } } } @@ -9349,21 +9494,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 292, ImpalaSqlParser.RULE_joinType); + this.enterRule(localContext, 302, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2083; + this.state = 2111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2053; + this.state = 2081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2052; + this.state = 2080; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9373,14 +9518,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2055; + this.state = 2083; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2057; + this.state = 2085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2056; + this.state = 2084; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9390,14 +9535,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2059; + this.state = 2087; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2061; + this.state = 2089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2060; + this.state = 2088; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9407,14 +9552,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2063; + this.state = 2091; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2065; + this.state = 2093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2064; + this.state = 2092; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9424,14 +9569,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2067; + this.state = 2095; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2069; + this.state = 2097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2068; + this.state = 2096; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9441,14 +9586,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2071; + this.state = 2099; this.match(ImpalaSqlParser.KW_FULL); - this.state = 2073; + this.state = 2101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2072; + this.state = 2100; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9458,36 +9603,36 @@ export class ImpalaSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2075; + this.state = 2103; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2076; + this.state = 2104; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2077; + this.state = 2105; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2078; + this.state = 2106; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2079; + this.state = 2107; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2080; + this.state = 2108; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2081; + this.state = 2109; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2082; + this.state = 2110; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9509,47 +9654,47 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 294, ImpalaSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 304, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2099; + this.state = 2127; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2085; + this.state = 2113; this.match(ImpalaSqlParser.KW_ON); - this.state = 2086; + this.state = 2114; this.booleanExpression(0); } break; case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2087; + this.state = 2115; this.match(ImpalaSqlParser.KW_USING); - this.state = 2088; + this.state = 2116; this.match(ImpalaSqlParser.LPAREN); - this.state = 2089; + this.state = 2117; this.identifier(); - this.state = 2094; + this.state = 2122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2090; + this.state = 2118; this.match(ImpalaSqlParser.COMMA); - this.state = 2091; + this.state = 2119; this.identifier(); } } - this.state = 2096; + this.state = 2124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2097; + this.state = 2125; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9573,39 +9718,39 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 296, ImpalaSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 306, ImpalaSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2101; + this.state = 2129; this.aliasedRelation(); - this.state = 2114; + this.state = 2142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2102; + this.state = 2130; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 2103; + this.state = 2131; this.sampleType(); - this.state = 2104; + this.state = 2132; this.match(ImpalaSqlParser.LPAREN); - this.state = 2105; + this.state = 2133; localContext._percentage = this.expression(); - this.state = 2106; + this.state = 2134; this.match(ImpalaSqlParser.RPAREN); - this.state = 2112; + this.state = 2140; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: { - this.state = 2107; + this.state = 2135; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 2108; + this.state = 2136; this.match(ImpalaSqlParser.LPAREN); - this.state = 2109; + this.state = 2137; localContext._seed = this.expression(); - this.state = 2110; + this.state = 2138; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9631,12 +9776,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 298, ImpalaSqlParser.RULE_sampleType); + this.enterRule(localContext, 308, ImpalaSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2116; + this.state = 2144; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -9663,36 +9808,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 300, ImpalaSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 310, ImpalaSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2118; + this.state = 2146; this.relationPrimary(); - this.state = 2126; + this.state = 2154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2120; + this.state = 2148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2119; + this.state = 2147; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2122; + this.state = 2150; localContext._alias = this.identifier(); - this.state = 2124; + this.state = 2152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { case 1: { - this.state = 2123; + this.state = 2151; this.columnAliases(); } break; @@ -9718,32 +9863,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 302, ImpalaSqlParser.RULE_columnAliases); + this.enterRule(localContext, 312, ImpalaSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2128; + this.state = 2156; this.match(ImpalaSqlParser.LPAREN); - this.state = 2129; + this.state = 2157; this.columnNamePath(); - this.state = 2134; + this.state = 2162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2130; + this.state = 2158; this.match(ImpalaSqlParser.COMMA); - this.state = 2131; + this.state = 2159; this.columnNamePath(); } } - this.state = 2136; + this.state = 2164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2137; + this.state = 2165; this.match(ImpalaSqlParser.RPAREN); } } @@ -9763,47 +9908,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 304, ImpalaSqlParser.RULE_relationPrimary); - let _la: number; + this.enterRule(localContext, 314, ImpalaSqlParser.RULE_relationPrimary); try { - this.state = 2146; + this.state = 2171; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2139; + this.state = 2167; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2141; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 113) { - { - this.state = 2140; - this.match(ImpalaSqlParser.KW_LATERAL); - } - } - - this.state = 2143; - this.subQueryRelation(); + this.state = 2168; + this.atomSubQueryTableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2144; + this.state = 2169; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2145; + this.state = 2170; this.parenthesizedRelation(); } break; @@ -9823,17 +9957,52 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); + this.enterRule(localContext, 316, ImpalaSqlParser.RULE_atomSubQueryTableSource); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2174; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 113) { + { + this.state = 2173; + this.match(ImpalaSqlParser.KW_LATERAL); + } + } + + this.state = 2176; + this.subQueryRelation(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public subQueryRelation(): SubQueryRelationContext { let localContext = new SubQueryRelationContext(this.context, this.state); - this.enterRule(localContext, 306, ImpalaSqlParser.RULE_subQueryRelation); + this.enterRule(localContext, 318, ImpalaSqlParser.RULE_subQueryRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2148; + this.state = 2178; this.match(ImpalaSqlParser.LPAREN); - this.state = 2149; + this.state = 2179; this.queryStatement(); - this.state = 2150; + this.state = 2180; this.match(ImpalaSqlParser.RPAREN); } } @@ -9853,43 +10022,43 @@ export class ImpalaSqlParser extends SQLParserBase { } public unnest(): UnnestContext { let localContext = new UnnestContext(this.context, this.state); - this.enterRule(localContext, 308, ImpalaSqlParser.RULE_unnest); + this.enterRule(localContext, 320, ImpalaSqlParser.RULE_unnest); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2152; + this.state = 2182; this.match(ImpalaSqlParser.KW_UNNEST); - this.state = 2153; + this.state = 2183; this.match(ImpalaSqlParser.LPAREN); - this.state = 2154; + this.state = 2184; this.expression(); - this.state = 2159; + this.state = 2189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2155; + this.state = 2185; this.match(ImpalaSqlParser.COMMA); - this.state = 2156; + this.state = 2186; this.expression(); } } - this.state = 2161; + this.state = 2191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2162; + this.state = 2192; this.match(ImpalaSqlParser.RPAREN); - this.state = 2165; + this.state = 2195; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2163; + this.state = 2193; this.match(ImpalaSqlParser.KW_WITH); - this.state = 2164; + this.state = 2194; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -9912,15 +10081,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public parenthesizedRelation(): ParenthesizedRelationContext { let localContext = new ParenthesizedRelationContext(this.context, this.state); - this.enterRule(localContext, 310, ImpalaSqlParser.RULE_parenthesizedRelation); + this.enterRule(localContext, 322, ImpalaSqlParser.RULE_parenthesizedRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2167; + this.state = 2197; this.match(ImpalaSqlParser.LPAREN); - this.state = 2168; + this.state = 2198; this.relation(0); - this.state = 2169; + this.state = 2199; this.match(ImpalaSqlParser.RPAREN); } } @@ -9940,22 +10109,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnItem(): ColumnItemContext { let localContext = new ColumnItemContext(this.context, this.state); - this.enterRule(localContext, 312, ImpalaSqlParser.RULE_columnItem); + this.enterRule(localContext, 324, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2173; + this.state = 2203; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2201; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2172; + this.state = 2202; this.expression(); } break; @@ -9977,11 +10146,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 314, ImpalaSqlParser.RULE_expression); + this.enterRule(localContext, 326, ImpalaSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2205; this.booleanExpression(0); } } @@ -10011,13 +10180,13 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 316; - this.enterRecursionRule(localContext, 316, ImpalaSqlParser.RULE_booleanExpression, _p); + let _startState = 328; + this.enterRecursionRule(localContext, 328, ImpalaSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2184; + this.state = 2214; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -10093,14 +10262,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2178; + this.state = 2208; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2180; + this.state = 2210; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { - this.state = 2179; + this.state = 2209; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -10112,9 +10281,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2182; + this.state = 2212; this.match(ImpalaSqlParser.KW_NOT); - this.state = 2183; + this.state = 2213; this.booleanExpression(3); } break; @@ -10122,9 +10291,9 @@ export class ImpalaSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2194; + this.state = 2224; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10132,21 +10301,21 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2192; + this.state = 2222; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2186; + this.state = 2216; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2187; + this.state = 2217; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); - this.state = 2188; + this.state = 2218; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10155,22 +10324,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2189; + this.state = 2219; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2190; + this.state = 2220; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); - this.state = 2191; + this.state = 2221; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2196; + this.state = 2226; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); } } } @@ -10190,19 +10359,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 318, ImpalaSqlParser.RULE_predicate); + this.enterRule(localContext, 330, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2255; + this.state = 2285; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2227; this.comparisonOperator(); - this.state = 2198; + this.state = 2228; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10210,11 +10379,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2200; + this.state = 2230; this.comparisonOperator(); - this.state = 2201; + this.state = 2231; this.comparisonQuantifier(); - this.state = 2202; + this.state = 2232; this.subQueryRelation(); } break; @@ -10222,23 +10391,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2205; + this.state = 2235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2204; + this.state = 2234; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2207; + this.state = 2237; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2208; + this.state = 2238; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2209; + this.state = 2239; this.match(ImpalaSqlParser.KW_AND); - this.state = 2210; + this.state = 2240; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10246,39 +10415,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2213; + this.state = 2243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2212; + this.state = 2242; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2215; + this.state = 2245; this.match(ImpalaSqlParser.KW_IN); - this.state = 2216; + this.state = 2246; this.match(ImpalaSqlParser.LPAREN); - this.state = 2217; + this.state = 2247; this.expression(); - this.state = 2222; + this.state = 2252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2218; + this.state = 2248; this.match(ImpalaSqlParser.COMMA); - this.state = 2219; + this.state = 2249; this.expression(); } } - this.state = 2224; + this.state = 2254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2225; + this.state = 2255; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10286,19 +10455,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2228; + this.state = 2258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2227; + this.state = 2257; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2230; + this.state = 2260; this.match(ImpalaSqlParser.KW_IN); - this.state = 2231; + this.state = 2261; this.subQueryRelation(); } break; @@ -10306,17 +10475,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2233; + this.state = 2263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2232; + this.state = 2262; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2235; + this.state = 2265; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 115 || _la === 164)) { this.errorHandler.recoverInline(this); @@ -10325,16 +10494,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2236; + this.state = 2266; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2239; + this.state = 2269; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: { - this.state = 2237; + this.state = 2267; this.match(ImpalaSqlParser.KW_ESCAPE); - this.state = 2238; + this.state = 2268; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10345,7 +10514,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2241; + this.state = 2271; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 163)) { this.errorHandler.recoverInline(this); @@ -10354,7 +10523,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2242; + this.state = 2272; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10362,19 +10531,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2243; + this.state = 2273; this.match(ImpalaSqlParser.KW_IS); - this.state = 2245; + this.state = 2275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2244; + this.state = 2274; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2247; + this.state = 2277; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 133 || _la === 194 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -10389,23 +10558,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2248; + this.state = 2278; this.match(ImpalaSqlParser.KW_IS); - this.state = 2250; + this.state = 2280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2249; + this.state = 2279; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2252; + this.state = 2282; this.match(ImpalaSqlParser.KW_DISTINCT); - this.state = 2253; + this.state = 2283; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2254; + this.state = 2284; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10437,23 +10606,23 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 320; - this.enterRecursionRule(localContext, 320, ImpalaSqlParser.RULE_valueExpression, _p); + let _startState = 332; + this.enterRecursionRule(localContext, 332, ImpalaSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2261; + this.state = 2291; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2258; + this.state = 2288; this.primaryExpression(0); } break; @@ -10462,7 +10631,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2259; + this.state = 2289; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10472,15 +10641,15 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2260; + this.state = 2290; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2274; + this.state = 2304; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10488,19 +10657,19 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2272; + this.state = 2302; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2263; + this.state = 2293; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2264; + this.state = 2294; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 7) !== 0))) { @@ -10510,7 +10679,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2265; + this.state = 2295; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10519,11 +10688,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2266; + this.state = 2296; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2267; + this.state = 2297; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10533,7 +10702,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2268; + this.state = 2298; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10542,22 +10711,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2269; + this.state = 2299; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2270; + this.state = 2300; this.match(ImpalaSqlParser.CONCAT); - this.state = 2271; + this.state = 2301; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2276; + this.state = 2306; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); } } } @@ -10575,6 +10744,121 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public functionCallExpression(): FunctionCallExpressionContext { + let localContext = new FunctionCallExpressionContext(this.context, this.state); + this.enterRule(localContext, 334, ImpalaSqlParser.RULE_functionCallExpression); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2307; + this.functionNamePath(); + this.state = 2308; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2320; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { + { + this.state = 2310; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 2 || _la === 57) { + { + this.state = 2309; + this.setQuantifier(); + } + } + + this.state = 2312; + this.expression(); + this.state = 2317; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 263) { + { + { + this.state = 2313; + this.match(ImpalaSqlParser.COMMA); + this.state = 2314; + this.expression(); + } + } + this.state = 2319; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + + this.state = 2332; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 139) { + { + this.state = 2322; + this.match(ImpalaSqlParser.KW_ORDER); + this.state = 2323; + this.match(ImpalaSqlParser.KW_BY); + this.state = 2324; + this.sortItem(); + this.state = 2329; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 263) { + { + { + this.state = 2325; + this.match(ImpalaSqlParser.COMMA); + this.state = 2326; + this.sortItem(); + } + } + this.state = 2331; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + + this.state = 2334; + this.match(ImpalaSqlParser.RPAREN); + this.state = 2336; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { + case 1: + { + this.state = 2335; + this.filter(); + } + break; + } + this.state = 2339; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + case 1: + { + this.state = 2338; + this.over(); + } + break; + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public primaryExpression(): PrimaryExpressionContext; public primaryExpression(_p: number): PrimaryExpressionContext; @@ -10587,23 +10871,23 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 322; - this.enterRecursionRule(localContext, 322, ImpalaSqlParser.RULE_primaryExpression, _p); + let _startState = 336; + this.enterRecursionRule(localContext, 336, ImpalaSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2523; + this.state = 2554; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2278; + this.state = 2342; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -10612,7 +10896,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2279; + this.state = 2343; this.interval(); } break; @@ -10621,9 +10905,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2280; + this.state = 2344; this.identifier(); - this.state = 2281; + this.state = 2345; this.stringLiteral(); } break; @@ -10632,9 +10916,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2283; + this.state = 2347; this.match(ImpalaSqlParser.DOUBLE_PRECISION); - this.state = 2284; + this.state = 2348; this.stringLiteral(); } break; @@ -10643,7 +10927,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2285; + this.state = 2349; this.number_(); } break; @@ -10652,7 +10936,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2286; + this.state = 2350; this.booleanValue(); } break; @@ -10661,7 +10945,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2287; + this.state = 2351; this.stringLiteral(); } break; @@ -10670,7 +10954,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2288; + this.state = 2352; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -10679,7 +10963,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2289; + this.state = 2353; this.match(ImpalaSqlParser.QUESTION); } break; @@ -10688,17 +10972,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2290; + this.state = 2354; this.match(ImpalaSqlParser.KW_POSITION); - this.state = 2291; + this.state = 2355; this.match(ImpalaSqlParser.LPAREN); - this.state = 2292; + this.state = 2356; this.valueExpression(0); - this.state = 2293; + this.state = 2357; this.match(ImpalaSqlParser.KW_IN); - this.state = 2294; + this.state = 2358; this.valueExpression(0); - this.state = 2295; + this.state = 2359; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10707,41 +10991,41 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2297; + this.state = 2361; this.match(ImpalaSqlParser.LPAREN); - this.state = 2298; + this.state = 2362; this.expression(); - this.state = 2301; + this.state = 2365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2299; + this.state = 2363; this.match(ImpalaSqlParser.KW_AS); - this.state = 2300; + this.state = 2364; this.type_(0); } } - this.state = 2311; + this.state = 2375; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 303, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2303; + this.state = 2367; this.match(ImpalaSqlParser.COMMA); - this.state = 2304; + this.state = 2368; this.expression(); - this.state = 2307; + this.state = 2371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2305; + this.state = 2369; this.match(ImpalaSqlParser.KW_AS); - this.state = 2306; + this.state = 2370; this.type_(0); } } @@ -10749,11 +11033,11 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2313; + this.state = 2377; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 303, this.context); } - this.state = 2314; + this.state = 2378; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10762,29 +11046,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2316; + this.state = 2380; this.match(ImpalaSqlParser.KW_ROW); - this.state = 2317; + this.state = 2381; this.match(ImpalaSqlParser.LPAREN); - this.state = 2318; + this.state = 2382; this.expression(); - this.state = 2323; + this.state = 2387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2319; + this.state = 2383; this.match(ImpalaSqlParser.COMMA); - this.state = 2320; + this.state = 2384; this.expression(); } } - this.state = 2325; + this.state = 2389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2326; + this.state = 2390; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10793,145 +11077,55 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2328; + this.state = 2392; this.functionNamePath(); - this.state = 2329; + this.state = 2393; this.match(ImpalaSqlParser.LPAREN); - this.state = 2330; + this.state = 2394; this.match(ImpalaSqlParser.ASTERISK); - this.state = 2331; - this.match(ImpalaSqlParser.RPAREN); - this.state = 2333; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { - case 1: - { - this.state = 2332; - this.filter(); - } - break; - } - this.state = 2336; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { - case 1: - { - this.state = 2335; - this.over(); - } - break; - } - } - break; - case 14: - { - localContext = new FunctionCallContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 2338; - this.functionNamePath(); - this.state = 2339; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2351; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { - { - this.state = 2341; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2 || _la === 57) { - { - this.state = 2340; - this.setQuantifier(); - } - } - - this.state = 2343; - this.expression(); - this.state = 2348; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 263) { - { - { - this.state = 2344; - this.match(ImpalaSqlParser.COMMA); - this.state = 2345; - this.expression(); - } - } - this.state = 2350; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - - this.state = 2363; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 139) { - { - this.state = 2353; - this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2354; - this.match(ImpalaSqlParser.KW_BY); - this.state = 2355; - this.sortItem(); - this.state = 2360; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 263) { - { - { - this.state = 2356; - this.match(ImpalaSqlParser.COMMA); - this.state = 2357; - this.sortItem(); - } - } - this.state = 2362; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - - this.state = 2365; + this.state = 2395; this.match(ImpalaSqlParser.RPAREN); - this.state = 2367; + this.state = 2397; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2366; + this.state = 2396; this.filter(); } break; } - this.state = 2370; + this.state = 2400; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2369; + this.state = 2399; this.over(); } break; } } break; + case 14: + { + localContext = new FunctionCallContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 2402; + this.functionCallExpression(); + } + break; case 15: { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2372; + this.state = 2403; this.identifier(); - this.state = 2373; + this.state = 2404; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2374; + this.state = 2405; this.expression(); } break; @@ -10940,39 +11134,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2376; + this.state = 2407; this.match(ImpalaSqlParser.LPAREN); - this.state = 2385; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2377; + this.state = 2408; this.identifier(); - this.state = 2382; + this.state = 2413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2378; + this.state = 2409; this.match(ImpalaSqlParser.COMMA); - this.state = 2379; + this.state = 2410; this.identifier(); } } - this.state = 2384; + this.state = 2415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2387; + this.state = 2418; this.match(ImpalaSqlParser.RPAREN); - this.state = 2388; + this.state = 2419; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2389; + this.state = 2420; this.expression(); } break; @@ -10981,11 +11175,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2390; + this.state = 2421; this.match(ImpalaSqlParser.LPAREN); - this.state = 2391; + this.state = 2422; this.queryStatement(); - this.state = 2392; + this.state = 2423; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10994,13 +11188,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2394; + this.state = 2425; this.match(ImpalaSqlParser.KW_EXISTS); - this.state = 2395; + this.state = 2426; this.match(ImpalaSqlParser.LPAREN); - this.state = 2396; + this.state = 2427; this.queryStatement(); - this.state = 2397; + this.state = 2428; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11009,37 +11203,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2399; + this.state = 2430; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2400; + this.state = 2431; this.valueExpression(0); - this.state = 2402; + this.state = 2433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2401; + this.state = 2432; this.whenClause(); } } - this.state = 2404; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2408; + this.state = 2439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2406; + this.state = 2437; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2407; + this.state = 2438; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2410; + this.state = 2441; this.match(ImpalaSqlParser.KW_END); } break; @@ -11048,35 +11242,35 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2412; + this.state = 2443; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2414; + this.state = 2445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2413; + this.state = 2444; this.whenClause(); } } - this.state = 2416; + this.state = 2447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2420; + this.state = 2451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2418; + this.state = 2449; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2419; + this.state = 2450; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2422; + this.state = 2453; this.match(ImpalaSqlParser.KW_END); } break; @@ -11085,17 +11279,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2424; + this.state = 2455; this.match(ImpalaSqlParser.KW_CAST); - this.state = 2425; + this.state = 2456; this.match(ImpalaSqlParser.LPAREN); - this.state = 2426; + this.state = 2457; this.expression(); - this.state = 2427; + this.state = 2458; this.match(ImpalaSqlParser.KW_AS); - this.state = 2428; + this.state = 2459; this.type_(0); - this.state = 2429; + this.state = 2460; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11104,17 +11298,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2431; + this.state = 2462; this.match(ImpalaSqlParser.KW_TRY_CAST); - this.state = 2432; + this.state = 2463; this.match(ImpalaSqlParser.LPAREN); - this.state = 2433; + this.state = 2464; this.expression(); - this.state = 2434; + this.state = 2465; this.match(ImpalaSqlParser.KW_AS); - this.state = 2435; + this.state = 2466; this.type_(0); - this.state = 2436; + this.state = 2467; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11123,37 +11317,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2438; + this.state = 2469; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2439; + this.state = 2470; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2448; + this.state = 2479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2440; + this.state = 2471; this.expression(); - this.state = 2445; + this.state = 2476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2441; + this.state = 2472; this.match(ImpalaSqlParser.COMMA); - this.state = 2442; + this.state = 2473; this.expression(); } } - this.state = 2447; + this.state = 2478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2450; + this.state = 2481; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11162,7 +11356,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2451; + this.state = 2482; this.columnName(); } break; @@ -11171,7 +11365,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2452; + this.state = 2483; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11180,18 +11374,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2453; + this.state = 2484; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); - this.state = 2457; + this.state = 2488; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { - this.state = 2454; + this.state = 2485; this.match(ImpalaSqlParser.LPAREN); - this.state = 2455; + this.state = 2486; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2456; + this.state = 2487; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11203,18 +11397,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2459; + this.state = 2490; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2463; + this.state = 2494; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2460; + this.state = 2491; this.match(ImpalaSqlParser.LPAREN); - this.state = 2461; + this.state = 2492; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2462; + this.state = 2493; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11226,18 +11420,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2465; + this.state = 2496; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); - this.state = 2469; + this.state = 2500; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 2466; + this.state = 2497; this.match(ImpalaSqlParser.LPAREN); - this.state = 2467; + this.state = 2498; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2468; + this.state = 2499; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11249,18 +11443,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2471; + this.state = 2502; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2475; + this.state = 2506; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2472; + this.state = 2503; this.match(ImpalaSqlParser.LPAREN); - this.state = 2473; + this.state = 2504; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2474; + this.state = 2505; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11272,7 +11466,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2477; + this.state = 2508; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11281,7 +11475,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2478; + this.state = 2509; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11290,29 +11484,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2479; + this.state = 2510; this.match(ImpalaSqlParser.KW_SUBSTRING); - this.state = 2480; + this.state = 2511; this.match(ImpalaSqlParser.LPAREN); - this.state = 2481; + this.state = 2512; this.valueExpression(0); - this.state = 2482; + this.state = 2513; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2483; + this.state = 2514; this.valueExpression(0); - this.state = 2486; + this.state = 2517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2484; + this.state = 2515; this.match(ImpalaSqlParser.KW_FOR); - this.state = 2485; + this.state = 2516; this.valueExpression(0); } } - this.state = 2488; + this.state = 2519; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11321,25 +11515,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2490; + this.state = 2521; this.match(ImpalaSqlParser.KW_NORMALIZE); - this.state = 2491; + this.state = 2522; this.match(ImpalaSqlParser.LPAREN); - this.state = 2492; + this.state = 2523; this.valueExpression(0); - this.state = 2495; + this.state = 2526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 2493; + this.state = 2524; this.match(ImpalaSqlParser.COMMA); - this.state = 2494; + this.state = 2525; this.normalForm(); } } - this.state = 2497; + this.state = 2528; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11348,17 +11542,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2499; + this.state = 2530; this.match(ImpalaSqlParser.KW_EXTRACT); - this.state = 2500; + this.state = 2531; this.match(ImpalaSqlParser.LPAREN); - this.state = 2501; + this.state = 2532; this.identifier(); - this.state = 2502; + this.state = 2533; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2503; + this.state = 2534; this.valueExpression(0); - this.state = 2504; + this.state = 2535; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11367,11 +11561,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2506; + this.state = 2537; this.match(ImpalaSqlParser.LPAREN); - this.state = 2507; + this.state = 2538; this.expression(); - this.state = 2508; + this.state = 2539; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11380,45 +11574,45 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2510; + this.state = 2541; this.match(ImpalaSqlParser.KW_GROUPING); - this.state = 2511; + this.state = 2542; this.match(ImpalaSqlParser.LPAREN); - this.state = 2520; + this.state = 2551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2512; + this.state = 2543; this.qualifiedName(); - this.state = 2517; + this.state = 2548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2513; + this.state = 2544; this.match(ImpalaSqlParser.COMMA); - this.state = 2514; + this.state = 2545; this.qualifiedName(); } } - this.state = 2519; + this.state = 2550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2522; + this.state = 2553; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2535; + this.state = 2566; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11426,23 +11620,23 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2533; + this.state = 2564; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2525; + this.state = 2556; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2526; + this.state = 2557; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2527; + this.state = 2558; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2528; + this.state = 2559; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11451,22 +11645,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2530; + this.state = 2561; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2531; + this.state = 2562; this.match(ImpalaSqlParser.DOT); - this.state = 2532; + this.state = 2563; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2537; + this.state = 2568; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); } } } @@ -11486,16 +11680,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 324, ImpalaSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 338, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2544; + this.state = 2575; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2538; + this.state = 2569; this.match(ImpalaSqlParser.STRING); } break; @@ -11503,16 +11697,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2539; + this.state = 2570; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2542; + this.state = 2573; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2540; + this.state = 2571; this.match(ImpalaSqlParser.KW_UESCAPE); - this.state = 2541; + this.state = 2572; this.match(ImpalaSqlParser.STRING); } break; @@ -11539,12 +11733,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 326, ImpalaSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 340, ImpalaSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2546; + this.state = 2577; _la = this.tokenStream.LA(1); if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11571,12 +11765,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 328, ImpalaSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 342, ImpalaSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2548; + this.state = 2579; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 6 || _la === 181)) { this.errorHandler.recoverInline(this); @@ -11603,12 +11797,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 330, ImpalaSqlParser.RULE_booleanValue); + this.enterRule(localContext, 344, ImpalaSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2550; + this.state = 2581; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 194)) { this.errorHandler.recoverInline(this); @@ -11635,56 +11829,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 332, ImpalaSqlParser.RULE_interval); + this.enterRule(localContext, 346, ImpalaSqlParser.RULE_interval); try { - this.state = 2566; + this.state = 2597; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2552; + this.state = 2583; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2553; + this.state = 2584; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2554; + this.state = 2585; this.match(ImpalaSqlParser.LPAREN); - this.state = 2555; + this.state = 2586; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2556; + this.state = 2587; this.match(ImpalaSqlParser.RPAREN); - this.state = 2557; + this.state = 2588; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2558; + this.state = 2589; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2559; + this.state = 2590; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2560; + this.state = 2591; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2561; + this.state = 2592; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2562; + this.state = 2593; this.match(ImpalaSqlParser.LPAREN); - this.state = 2563; + this.state = 2594; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2564; + this.state = 2595; this.match(ImpalaSqlParser.RPAREN); - this.state = 2565; + this.state = 2596; this.intervalField(); } break; @@ -11706,12 +11900,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 334, ImpalaSqlParser.RULE_intervalField); + this.enterRule(localContext, 348, ImpalaSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2568; + this.state = 2599; _la = this.tokenStream.LA(1); if(!(_la === 48 || _la === 49 || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2147483651) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 7) !== 0) || _la === 172 || _la === 173 || _la === 217 || _la === 218)) { this.errorHandler.recoverInline(this); @@ -11738,12 +11932,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 336, ImpalaSqlParser.RULE_normalForm); + this.enterRule(localContext, 350, ImpalaSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2570; + this.state = 2601; _la = this.tokenStream.LA(1); if(!(((((_la - 127)) & ~0x1F) === 0 && ((1 << (_la - 127)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11780,120 +11974,120 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 338; - this.enterRecursionRule(localContext, 338, ImpalaSqlParser.RULE_type, _p); + let _startState = 352; + this.enterRecursionRule(localContext, 352, ImpalaSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2648; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 2573; + this.state = 2604; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2574; + this.state = 2605; this.match(ImpalaSqlParser.LT); - this.state = 2575; + this.state = 2606; this.type_(0); - this.state = 2576; + this.state = 2607; this.match(ImpalaSqlParser.GT); } break; case 2: { - this.state = 2578; + this.state = 2609; this.match(ImpalaSqlParser.KW_MAP); - this.state = 2579; + this.state = 2610; this.match(ImpalaSqlParser.LT); - this.state = 2580; + this.state = 2611; this.type_(0); - this.state = 2581; + this.state = 2612; this.match(ImpalaSqlParser.COMMA); - this.state = 2582; + this.state = 2613; this.type_(0); - this.state = 2583; + this.state = 2614; this.match(ImpalaSqlParser.GT); } break; case 3: { - this.state = 2585; + this.state = 2616; this.match(ImpalaSqlParser.KW_STRUCT); - this.state = 2586; + this.state = 2617; this.match(ImpalaSqlParser.LT); - this.state = 2587; + this.state = 2618; this.identifier(); - this.state = 2588; + this.state = 2619; this.type_(0); - this.state = 2595; + this.state = 2626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2589; + this.state = 2620; this.match(ImpalaSqlParser.COMMA); - this.state = 2590; + this.state = 2621; this.identifier(); - this.state = 2591; + this.state = 2622; this.type_(0); } } - this.state = 2597; + this.state = 2628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2598; + this.state = 2629; this.match(ImpalaSqlParser.GT); } break; case 4: { - this.state = 2602; + this.state = 2633; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2600; + this.state = 2631; this.baseType(); } break; case 2: { - this.state = 2601; + this.state = 2632; this.dataType(); } break; } - this.state = 2615; + this.state = 2646; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: { - this.state = 2604; + this.state = 2635; this.match(ImpalaSqlParser.LPAREN); - this.state = 2605; + this.state = 2636; this.typeParameter(); - this.state = 2610; + this.state = 2641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2606; + this.state = 2637; this.match(ImpalaSqlParser.COMMA); - this.state = 2607; + this.state = 2638; this.typeParameter(); } } - this.state = 2612; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2613; + this.state = 2644; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11902,9 +12096,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2623; + this.state = 2654; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 334, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11915,18 +12109,18 @@ export class ImpalaSqlParser extends SQLParserBase { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2619; + this.state = 2650; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2620; + this.state = 2651; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2625; + this.state = 2656; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 334, this.context); } } } @@ -11946,12 +12140,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 340, ImpalaSqlParser.RULE_dataType); + this.enterRule(localContext, 354, ImpalaSqlParser.RULE_dataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2626; + this.state = 2657; _la = this.tokenStream.LA(1); if(!(_la === 8 || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 262143) !== 0))) { this.errorHandler.recoverInline(this); @@ -11978,15 +12172,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 342, ImpalaSqlParser.RULE_typeParameter); + this.enterRule(localContext, 356, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2630; + this.state = 2661; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2628; + this.state = 2659; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12051,7 +12245,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2629; + this.state = 2660; this.type_(0); } break; @@ -12075,29 +12269,29 @@ export class ImpalaSqlParser extends SQLParserBase { } public baseType(): BaseTypeContext { let localContext = new BaseTypeContext(this.context, this.state); - this.enterRule(localContext, 344, ImpalaSqlParser.RULE_baseType); + this.enterRule(localContext, 358, ImpalaSqlParser.RULE_baseType); try { - this.state = 2636; + this.state = 2667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2632; + this.state = 2663; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2633; + this.state = 2664; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2634; + this.state = 2665; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -12141,7 +12335,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2635; + this.state = 2666; this.identifier(); } break; @@ -12165,17 +12359,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 346, ImpalaSqlParser.RULE_whenClause); + this.enterRule(localContext, 360, ImpalaSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2638; + this.state = 2669; this.match(ImpalaSqlParser.KW_WHEN); - this.state = 2639; + this.state = 2670; localContext._condition = this.expression(); - this.state = 2640; + this.state = 2671; this.match(ImpalaSqlParser.KW_THEN); - this.state = 2641; + this.state = 2672; localContext._result = this.expression(); } } @@ -12195,17 +12389,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 348, ImpalaSqlParser.RULE_filter); + this.enterRule(localContext, 362, ImpalaSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 2643; + this.state = 2674; this.match(ImpalaSqlParser.KW_FILTER); - this.state = 2644; + this.state = 2675; this.match(ImpalaSqlParser.LPAREN); - this.state = 2645; + this.state = 2676; this.whereClause(); - this.state = 2646; + this.state = 2677; this.match(ImpalaSqlParser.RPAREN); } } @@ -12225,28 +12419,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 350, ImpalaSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 364, ImpalaSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2648; + this.state = 2679; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2653; + this.state = 2684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2649; + this.state = 2680; this.match(ImpalaSqlParser.COMMA); - this.state = 2650; + this.state = 2681; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2655; + this.state = 2686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12268,70 +12462,70 @@ export class ImpalaSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 352, ImpalaSqlParser.RULE_over); + this.enterRule(localContext, 366, ImpalaSqlParser.RULE_over); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2656; + this.state = 2687; this.match(ImpalaSqlParser.KW_OVER); - this.state = 2657; + this.state = 2688; this.match(ImpalaSqlParser.LPAREN); - this.state = 2661; + this.state = 2692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 2658; + this.state = 2689; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 2659; + this.state = 2690; this.match(ImpalaSqlParser.KW_BY); - this.state = 2660; + this.state = 2691; this.partitionByClause(); } } - this.state = 2673; + this.state = 2704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2663; + this.state = 2694; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2664; + this.state = 2695; this.match(ImpalaSqlParser.KW_BY); - this.state = 2665; + this.state = 2696; this.sortItem(); - this.state = 2670; + this.state = 2701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2666; + this.state = 2697; this.match(ImpalaSqlParser.COMMA); - this.state = 2667; + this.state = 2698; this.sortItem(); } } - this.state = 2672; + this.state = 2703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2676; + this.state = 2707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154 || _la === 169) { { - this.state = 2675; + this.state = 2706; this.windowFrame(); } } - this.state = 2678; + this.state = 2709; this.match(ImpalaSqlParser.RPAREN); } } @@ -12351,56 +12545,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 354, ImpalaSqlParser.RULE_windowFrame); + this.enterRule(localContext, 368, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2696; + this.state = 2727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2680; + this.state = 2711; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2681; + this.state = 2712; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2682; + this.state = 2713; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2683; + this.state = 2714; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2684; + this.state = 2715; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2685; + this.state = 2716; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2686; + this.state = 2717; localContext._start_ = this.frameBound(); - this.state = 2687; + this.state = 2718; this.match(ImpalaSqlParser.KW_AND); - this.state = 2688; + this.state = 2719; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2690; + this.state = 2721; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2691; + this.state = 2722; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2692; + this.state = 2723; localContext._start_ = this.frameBound(); - this.state = 2693; + this.state = 2724; this.match(ImpalaSqlParser.KW_AND); - this.state = 2694; + this.state = 2725; localContext._end = this.frameBound(); } break; @@ -12422,19 +12616,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 356, ImpalaSqlParser.RULE_frameBound); + this.enterRule(localContext, 370, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2707; + this.state = 2738; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2698; + this.state = 2729; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2699; + this.state = 2730; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12442,9 +12636,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2700; + this.state = 2731; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2701; + this.state = 2732; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12452,9 +12646,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2702; + this.state = 2733; this.match(ImpalaSqlParser.KW_CURRENT); - this.state = 2703; + this.state = 2734; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12462,9 +12656,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2704; + this.state = 2735; this.expression(); - this.state = 2705; + this.state = 2736; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 77 || _la === 149)) { @@ -12494,20 +12688,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 358, ImpalaSqlParser.RULE_pathElement); + this.enterRule(localContext, 372, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2714; + this.state = 2745; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2709; + this.state = 2740; this.identifier(); - this.state = 2710; + this.state = 2741; this.match(ImpalaSqlParser.DOT); - this.state = 2711; + this.state = 2742; this.identifier(); } break; @@ -12515,7 +12709,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2713; + this.state = 2744; this.identifier(); } break; @@ -12537,26 +12731,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 360, ImpalaSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 374, ImpalaSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2716; + this.state = 2747; this.pathElement(); - this.state = 2721; + this.state = 2752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2717; + this.state = 2748; this.match(ImpalaSqlParser.COMMA); - this.state = 2718; + this.state = 2749; this.pathElement(); } } - this.state = 2723; + this.state = 2754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12578,69 +12772,69 @@ export class ImpalaSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 362, ImpalaSqlParser.RULE_privilege); + this.enterRule(localContext, 376, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2737; + this.state = 2768; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2755; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2725; + this.state = 2756; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2726; + this.state = 2757; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2727; + this.state = 2758; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2728; + this.state = 2759; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2729; + this.state = 2760; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2730; + this.state = 2761; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2735; + this.state = 2766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2731; + this.state = 2762; this.match(ImpalaSqlParser.LPAREN); - this.state = 2732; + this.state = 2763; localContext._name = this.identifier(); - this.state = 2733; + this.state = 2764; this.match(ImpalaSqlParser.RPAREN); } } @@ -12667,12 +12861,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public objectType(): ObjectTypeContext { let localContext = new ObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 364, ImpalaSqlParser.RULE_objectType); + this.enterRule(localContext, 378, ImpalaSqlParser.RULE_objectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2739; + this.state = 2770; _la = this.tokenStream.LA(1); if(!(_la === 46 || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 2147484673) !== 0))) { this.errorHandler.recoverInline(this); @@ -12699,30 +12893,30 @@ export class ImpalaSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 366, ImpalaSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 380, ImpalaSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2741; + this.state = 2772; this.identifier(); - this.state = 2746; + this.state = 2777; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2742; + this.state = 2773; this.match(ImpalaSqlParser.DOT); - this.state = 2743; + this.state = 2774; this.identifier(); } } } - this.state = 2748; + this.state = 2779; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); } } } @@ -12742,18 +12936,18 @@ export class ImpalaSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 368, ImpalaSqlParser.RULE_principal); + this.enterRule(localContext, 382, ImpalaSqlParser.RULE_principal); try { - this.state = 2755; + this.state = 2786; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2749; + this.state = 2780; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 2750; + this.state = 2781; this.identifier(); } break; @@ -12761,9 +12955,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2751; + this.state = 2782; this.match(ImpalaSqlParser.KW_USER); - this.state = 2752; + this.state = 2783; this.identifier(); } break; @@ -12771,9 +12965,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2753; + this.state = 2784; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 2754; + this.state = 2785; this.identifier(); } break; @@ -12797,16 +12991,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 370, ImpalaSqlParser.RULE_identifier); + this.enterRule(localContext, 384, ImpalaSqlParser.RULE_identifier); try { - this.state = 2762; + this.state = 2793; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2757; + this.state = 2788; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -12814,7 +13008,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2758; + this.state = 2789; this.match(ImpalaSqlParser.STRING); } break; @@ -12855,7 +13049,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2759; + this.state = 2790; this.nonReserved(); } break; @@ -12863,7 +13057,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2760; + this.state = 2791; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -12871,7 +13065,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2761; + this.state = 2792; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -12895,27 +13089,27 @@ export class ImpalaSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 372, ImpalaSqlParser.RULE_number); + this.enterRule(localContext, 386, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2776; + this.state = 2807; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2765; + this.state = 2796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2764; + this.state = 2795; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2767; + this.state = 2798; this.match(ImpalaSqlParser.DECIMAL_VALUE); } break; @@ -12923,17 +13117,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2769; + this.state = 2800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2768; + this.state = 2799; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2771; + this.state = 2802; this.match(ImpalaSqlParser.DOUBLE_VALUE); } break; @@ -12941,17 +13135,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2773; + this.state = 2804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2772; + this.state = 2803; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2775; + this.state = 2806; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12973,12 +13167,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 374, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 388, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2778; + this.state = 2809; _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 1085443) !== 0) || _la === 68 || _la === 91 || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 1281) !== 0) || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 67125377) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 2097409) !== 0))) { this.errorHandler.recoverInline(this); @@ -13005,12 +13199,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 376, ImpalaSqlParser.RULE_nonReserved); + this.enterRule(localContext, 390, ImpalaSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2780; + this.state = 2811; _la = this.tokenStream.LA(1); if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0))) { this.errorHandler.recoverInline(this); @@ -13042,15 +13236,15 @@ export class ImpalaSqlParser extends SQLParserBase { return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); case 133: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 145: + case 150: return this.relation_sempred(localContext as RelationContext, predIndex); - case 158: + case 164: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 160: + case 166: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 161: + case 168: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 169: + case 176: return this.type_sempred(localContext as TypeContext, predIndex); } return true; @@ -13116,7 +13310,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,289,2783,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,289,2814,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, @@ -13147,241 +13341,244 @@ export class ImpalaSqlParser extends SQLParserBase { 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,1,0,5,0,380,8,0,10,0,12,0,383,9,0, - 1,0,1,0,1,1,1,1,3,1,389,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,413,8,2, - 1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,426,8,4,1,5,1,5, - 3,5,430,8,5,1,5,1,5,3,5,434,8,5,1,5,1,5,1,5,1,5,1,5,5,5,441,8,5, - 10,5,12,5,444,9,5,1,5,1,5,3,5,448,8,5,1,5,1,5,3,5,452,8,5,1,5,1, - 5,1,5,1,5,3,5,458,8,5,3,5,460,8,5,1,5,1,5,1,5,3,5,465,8,5,1,6,1, - 6,3,6,469,8,6,1,6,1,6,3,6,473,8,6,1,6,1,6,1,6,1,6,1,6,3,6,480,8, - 6,1,6,1,6,1,6,3,6,485,8,6,1,6,1,6,1,7,1,7,3,7,491,8,7,1,7,1,7,3, - 7,495,8,7,1,7,1,7,1,7,1,7,1,7,5,7,502,8,7,10,7,12,7,505,9,7,1,7, - 1,7,1,7,1,7,3,7,511,8,7,1,7,1,7,3,7,515,8,7,1,7,1,7,1,7,3,7,520, - 8,7,3,7,522,8,7,1,7,1,7,1,7,3,7,527,8,7,1,7,3,7,530,8,7,1,7,1,7, - 1,7,1,7,1,7,3,7,537,8,7,1,7,1,7,3,7,541,8,7,1,8,1,8,1,8,3,8,546, - 8,8,1,8,1,8,3,8,550,8,8,1,8,3,8,553,8,8,1,8,1,8,3,8,557,8,8,1,8, - 1,8,1,8,1,9,1,9,1,9,3,9,565,8,9,1,9,1,9,3,9,569,8,9,1,9,1,9,3,9, - 573,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,581,8,11,1,11,1,11,3, - 11,585,8,11,1,11,1,11,1,11,1,11,1,11,5,11,592,8,11,10,11,12,11,595, - 9,11,3,11,597,8,11,1,11,3,11,600,8,11,1,11,1,11,1,11,1,11,3,11,606, - 8,11,1,11,1,11,1,11,1,11,1,11,3,11,613,8,11,1,11,1,11,1,11,1,11, - 1,11,1,11,1,11,1,11,1,11,3,11,624,8,11,1,11,1,11,1,11,3,11,629,8, - 11,1,11,1,11,1,11,3,11,634,8,11,1,11,1,11,1,11,3,11,639,8,11,1,12, - 1,12,1,12,3,12,644,8,12,1,12,1,12,1,12,1,12,1,12,5,12,651,8,12,10, - 12,12,12,654,9,12,3,12,656,8,12,1,12,3,12,659,8,12,1,12,1,12,3,12, - 663,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13, + 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,1,0,5,0,394,8,0, + 10,0,12,0,397,9,0,1,0,1,0,1,1,1,1,3,1,403,8,1,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,3,2,427,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3, + 4,440,8,4,1,5,1,5,3,5,444,8,5,1,5,1,5,3,5,448,8,5,1,5,1,5,1,5,1, + 5,1,5,5,5,455,8,5,10,5,12,5,458,9,5,1,5,1,5,3,5,462,8,5,1,5,1,5, + 3,5,466,8,5,1,5,1,5,1,5,1,5,3,5,472,8,5,3,5,474,8,5,1,5,1,5,1,5, + 3,5,479,8,5,1,6,1,6,3,6,483,8,6,1,6,1,6,3,6,487,8,6,1,6,1,6,1,6, + 1,6,1,6,3,6,494,8,6,1,6,1,6,1,6,3,6,499,8,6,1,6,1,6,1,7,1,7,3,7, + 505,8,7,1,7,1,7,3,7,509,8,7,1,7,1,7,1,7,1,7,1,7,5,7,516,8,7,10,7, + 12,7,519,9,7,1,7,1,7,1,7,1,7,3,7,525,8,7,1,7,1,7,3,7,529,8,7,1,7, + 1,7,1,7,3,7,534,8,7,3,7,536,8,7,1,7,1,7,1,7,3,7,541,8,7,1,7,3,7, + 544,8,7,1,7,1,7,1,7,1,7,1,7,3,7,551,8,7,1,7,1,7,3,7,555,8,7,1,8, + 1,8,1,8,3,8,560,8,8,1,8,1,8,3,8,564,8,8,1,8,3,8,567,8,8,1,8,1,8, + 3,8,571,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,579,8,9,1,9,1,9,3,9,583, + 8,9,1,9,1,9,3,9,587,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,595,8, + 11,1,11,1,11,3,11,599,8,11,1,11,1,11,1,11,1,11,1,11,5,11,606,8,11, + 10,11,12,11,609,9,11,3,11,611,8,11,1,11,3,11,614,8,11,1,11,1,11, + 1,11,1,11,3,11,620,8,11,1,11,1,11,1,11,1,11,1,11,3,11,627,8,11,1, + 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,638,8,11,1,11,1, + 11,1,11,3,11,643,8,11,1,11,1,11,1,11,3,11,648,8,11,1,11,1,11,1,11, + 3,11,653,8,11,1,12,1,12,1,12,3,12,658,8,12,1,12,1,12,1,12,1,12,1, + 12,5,12,665,8,12,10,12,12,12,668,9,12,3,12,670,8,12,1,12,3,12,673, + 8,12,1,12,1,12,3,12,677,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13, 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 3,13,689,8,13,1,14,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,15,1,15,1,15,1,15,1,15,1,15,1,15, - 1,15,3,15,715,8,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,3,16,724,8, - 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,3,16,734,8,16,1,16,3, - 16,737,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1, - 18,1,18,3,18,751,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1, - 19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,769,8,20,3,20,771,8,20, - 1,20,1,20,1,20,1,20,1,20,5,20,778,8,20,10,20,12,20,781,9,20,1,20, - 1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,791,8,21,1,21,1,21,1,22, - 1,22,1,22,1,22,1,22,3,22,800,8,22,1,22,1,22,1,22,1,22,1,22,3,22, - 807,8,22,1,22,1,22,3,22,811,8,22,1,23,1,23,1,23,1,23,1,23,3,23,818, - 8,23,1,23,1,23,1,23,1,23,3,23,824,8,23,1,23,3,23,827,8,23,1,23,1, - 23,1,23,3,23,832,8,23,1,24,1,24,1,24,1,24,1,24,3,24,839,8,24,1,24, - 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,853, - 8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,3,26, - 866,8,26,1,26,1,26,1,26,3,26,871,8,26,1,26,1,26,1,26,3,26,876,8, - 26,1,27,1,27,1,27,1,27,3,27,882,8,27,1,27,1,27,1,27,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,29,1, - 30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1, - 31,1,32,1,32,3,32,918,8,32,1,32,3,32,921,8,32,1,32,1,32,1,33,1,33, - 3,33,927,8,33,1,33,3,33,930,8,33,1,33,1,33,1,34,1,34,3,34,936,8, - 34,1,35,1,35,1,35,1,35,3,35,942,8,35,1,35,1,35,1,35,1,35,1,35,1, - 35,1,35,1,35,1,35,1,35,3,35,954,8,35,3,35,956,8,35,1,36,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,1,36,3,36,967,8,36,1,37,1,37,1,37,1,37, - 1,37,1,37,3,37,975,8,37,1,38,1,38,1,38,3,38,980,8,38,1,38,1,38,3, - 38,984,8,38,1,39,1,39,1,39,3,39,989,8,39,1,39,1,39,1,40,1,40,1,40, - 3,40,996,8,40,1,40,1,40,3,40,1000,8,40,1,41,1,41,3,41,1004,8,41, - 1,41,1,41,1,41,1,41,3,41,1010,8,41,1,42,1,42,3,42,1014,8,42,1,42, - 1,42,3,42,1018,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1025,8,42,10,42, - 12,42,1028,9,42,3,42,1030,8,42,1,42,3,42,1033,8,42,1,43,1,43,1,43, - 1,43,1,44,1,44,3,44,1041,8,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45, - 1,46,1,46,1,46,1,46,1,46,3,46,1055,8,46,1,46,1,46,1,46,1,47,1,47, - 3,47,1062,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49, - 1,49,3,49,1075,8,49,1,49,1,49,1,49,1,49,3,49,1081,8,49,1,49,1,49, - 1,49,3,49,1086,8,49,1,49,3,49,1089,8,49,1,50,3,50,1092,8,50,1,50, - 1,50,1,50,3,50,1097,8,50,1,50,1,50,3,50,1101,8,50,1,50,1,50,1,50, - 1,50,1,50,5,50,1108,8,50,10,50,12,50,1111,9,50,1,50,1,50,3,50,1115, - 8,50,1,50,1,50,1,51,1,51,3,51,1121,8,51,1,52,1,52,3,52,1125,8,52, - 1,52,1,52,3,52,1129,8,52,1,53,1,53,1,53,3,53,1134,8,53,1,53,3,53, - 1137,8,53,1,53,1,53,1,53,1,53,5,53,1143,8,53,10,53,12,53,1146,9, - 53,3,53,1148,8,53,1,53,3,53,1151,8,53,1,54,1,54,1,54,1,54,1,54,1, - 54,1,54,1,54,5,54,1161,8,54,10,54,12,54,1164,9,54,3,54,1166,8,54, - 1,54,3,54,1169,8,54,1,55,1,55,1,55,3,55,1174,8,55,1,55,1,55,3,55, - 1178,8,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,1,56,3,56,1194,8,56,1,57,1,57,1,57,3,57,1199,8,57,1,57, - 1,57,1,57,5,57,1204,8,57,10,57,12,57,1207,9,57,3,57,1209,8,57,1, - 58,1,58,1,58,1,58,3,58,1215,8,58,1,58,3,58,1218,8,58,1,58,1,58,1, - 58,5,58,1223,8,58,10,58,12,58,1226,9,58,3,58,1228,8,58,1,59,1,59, - 3,59,1232,8,59,1,59,1,59,1,59,3,59,1237,8,59,1,59,3,59,1240,8,59, - 1,59,1,59,1,59,5,59,1245,8,59,10,59,12,59,1248,9,59,3,59,1250,8, - 59,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1, - 62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,3,64,1274,8,64,1, - 64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1288, - 8,65,1,65,1,65,3,65,1292,8,65,1,66,1,66,3,66,1296,8,66,1,66,1,66, - 1,67,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68, - 1,68,1,68,1,68,3,68,1316,8,68,3,68,1318,8,68,3,68,1320,8,68,1,69, - 1,69,1,69,1,69,1,69,1,69,1,69,3,69,1329,8,69,3,69,1331,8,69,1,70, - 1,70,1,70,1,70,1,70,1,70,1,70,3,70,1340,8,70,3,70,1342,8,70,1,71, - 1,71,1,71,1,71,1,71,1,71,1,71,3,71,1351,8,71,3,71,1353,8,71,1,72, - 1,72,1,72,3,72,1358,8,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, - 1367,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1376,8,74,1,75, - 1,75,1,75,1,75,1,75,1,75,1,75,3,75,1385,8,75,1,76,1,76,1,76,1,77, - 1,77,1,77,1,77,1,77,1,77,3,77,1396,8,77,1,78,1,78,1,78,1,78,3,78, - 1402,8,78,1,78,1,78,1,78,3,78,1407,8,78,1,78,3,78,1410,8,78,1,78, - 1,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,3,80,1423,8,80, - 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1433,8,80,1,80,1,80, - 3,80,1437,8,80,1,81,1,81,1,81,3,81,1442,8,81,1,82,1,82,1,82,1,82, - 1,82,1,82,1,82,5,82,1451,8,82,10,82,12,82,1454,9,82,1,82,1,82,3, - 82,1458,8,82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1, - 86,1,86,1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1, - 91,1,92,1,92,1,93,1,93,1,93,5,93,1489,8,93,10,93,12,93,1492,9,93, - 1,94,1,94,1,94,5,94,1497,8,94,10,94,12,94,1500,9,94,1,95,1,95,3, - 95,1504,8,95,1,96,1,96,3,96,1508,8,96,1,97,1,97,1,98,1,98,3,98,1514, - 8,98,1,99,1,99,1,99,3,99,1519,8,99,1,99,3,99,1522,8,99,1,99,1,99, - 1,99,3,99,1527,8,99,1,99,1,99,1,99,3,99,1532,8,99,1,99,1,99,1,99, - 3,99,1537,8,99,1,99,1,99,3,99,1541,8,99,1,99,1,99,1,99,1,99,1,99, - 1,99,1,99,3,99,1550,8,99,1,99,3,99,1553,8,99,1,99,1,99,3,99,1557, - 8,99,1,100,1,100,1,100,5,100,1562,8,100,10,100,12,100,1565,9,100, - 1,101,1,101,1,101,1,101,1,102,1,102,3,102,1573,8,102,1,102,1,102, - 3,102,1577,8,102,5,102,1579,8,102,10,102,12,102,1582,9,102,1,102, - 1,102,1,103,1,103,3,103,1588,8,103,1,104,3,104,1591,8,104,1,104, - 1,104,1,105,1,105,1,105,1,105,5,105,1599,8,105,10,105,12,105,1602, - 9,105,1,106,1,106,1,106,1,106,3,106,1608,8,106,1,106,1,106,1,106, - 3,106,1613,8,106,1,106,1,106,1,106,3,106,1618,8,106,1,106,1,106, - 1,106,3,106,1623,8,106,1,106,1,106,5,106,1627,8,106,10,106,12,106, - 1630,9,106,3,106,1632,8,106,1,107,1,107,1,107,1,107,1,107,1,107, - 1,107,3,107,1641,8,107,1,107,3,107,1644,8,107,1,107,3,107,1647,8, - 107,1,108,1,108,1,108,1,108,3,108,1653,8,108,1,109,1,109,1,109,3, - 109,1658,8,109,1,110,1,110,1,111,1,111,1,111,1,111,5,111,1666,8, - 111,10,111,12,111,1669,9,111,3,111,1671,8,111,1,111,3,111,1674,8, - 111,1,111,1,111,3,111,1678,8,111,1,112,1,112,1,112,1,113,1,113,1, - 113,5,113,1686,8,113,10,113,12,113,1689,9,113,3,113,1691,8,113,1, - 114,1,114,1,114,1,114,3,114,1697,8,114,1,114,1,114,5,114,1701,8, - 114,10,114,12,114,1704,9,114,3,114,1706,8,114,1,115,3,115,1709,8, - 115,1,115,1,115,3,115,1713,8,115,1,116,1,116,1,116,1,116,1,116,1, - 116,1,116,1,116,3,116,1723,8,116,1,117,1,117,1,118,1,118,1,119,1, - 119,1,119,5,119,1732,8,119,10,119,12,119,1735,9,119,1,119,1,119, - 3,119,1739,8,119,1,119,3,119,1742,8,119,1,120,1,120,3,120,1746,8, - 120,1,120,1,120,1,120,1,121,1,121,3,121,1753,8,121,1,121,1,121,1, - 121,1,121,1,121,1,121,5,121,1761,8,121,10,121,12,121,1764,9,121, - 1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1775, - 8,122,1,122,1,122,1,122,1,122,3,122,1781,8,122,3,122,1783,8,122, - 1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123,1792,8,123,1,123, - 3,123,1795,8,123,1,124,1,124,1,124,1,124,1,124,3,124,1802,8,124, - 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,1812,8,125, - 1,126,1,126,1,126,1,126,3,126,1818,8,126,1,127,1,127,1,127,1,127, - 5,127,1824,8,127,10,127,12,127,1827,9,127,1,127,1,127,1,128,1,128, - 1,128,1,128,5,128,1835,8,128,10,128,12,128,1838,9,128,1,128,1,128, - 1,129,1,129,1,129,5,129,1845,8,129,10,129,12,129,1848,9,129,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1858,8,130,3,130, - 1860,8,130,1,130,1,130,1,130,1,130,3,130,1866,8,130,1,131,1,131, - 1,131,3,131,1871,8,131,1,132,1,132,1,132,1,132,1,132,1,132,5,132, - 1879,8,132,10,132,12,132,1882,9,132,3,132,1884,8,132,1,132,1,132, - 1,132,1,132,3,132,1890,8,132,3,132,1892,8,132,1,133,1,133,1,133, - 1,133,1,133,1,133,3,133,1900,8,133,1,133,1,133,1,133,1,133,3,133, - 1906,8,133,1,133,5,133,1909,8,133,10,133,12,133,1912,9,133,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,5,134,1921,8,134,10,134,12,134, - 1924,9,134,1,134,1,134,1,134,1,134,3,134,1930,8,134,1,135,1,135, - 3,135,1934,8,135,1,135,1,135,3,135,1938,8,135,1,136,1,136,3,136, - 1942,8,136,1,136,3,136,1945,8,136,1,136,1,136,1,136,5,136,1950,8, - 136,10,136,12,136,1953,9,136,1,136,1,136,1,136,1,136,5,136,1959, - 8,136,10,136,12,136,1962,9,136,3,136,1964,8,136,1,136,3,136,1967, - 8,136,1,136,1,136,1,136,3,136,1972,8,136,1,136,3,136,1975,8,136, - 1,137,1,137,1,137,1,138,1,138,1,138,1,139,3,139,1984,8,139,1,139, - 1,139,1,139,5,139,1989,8,139,10,139,12,139,1992,9,139,1,140,1,140, - 1,141,1,141,1,141,1,141,5,141,2000,8,141,10,141,12,141,2003,9,141, - 3,141,2005,8,141,1,141,1,141,3,141,2009,8,141,1,142,1,142,3,142, - 2013,8,142,1,142,1,142,1,142,1,143,1,143,1,144,1,144,3,144,2022, - 8,144,1,144,3,144,2025,8,144,1,144,1,144,1,144,1,144,1,144,3,144, - 2032,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,3,145,2046,8,145,5,145,2048,8,145,10,145,12,145, - 2051,9,145,1,146,3,146,2054,8,146,1,146,1,146,3,146,2058,8,146,1, - 146,1,146,3,146,2062,8,146,1,146,1,146,3,146,2066,8,146,1,146,1, - 146,3,146,2070,8,146,1,146,1,146,3,146,2074,8,146,1,146,1,146,1, - 146,1,146,1,146,1,146,1,146,1,146,3,146,2084,8,146,1,147,1,147,1, - 147,1,147,1,147,1,147,1,147,5,147,2093,8,147,10,147,12,147,2096, - 9,147,1,147,1,147,3,147,2100,8,147,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,3,148,2113,8,148,3,148,2115, - 8,148,1,149,1,149,1,150,1,150,3,150,2121,8,150,1,150,1,150,3,150, - 2125,8,150,3,150,2127,8,150,1,151,1,151,1,151,1,151,5,151,2133,8, - 151,10,151,12,151,2136,9,151,1,151,1,151,1,152,1,152,3,152,2142, - 8,152,1,152,1,152,1,152,3,152,2147,8,152,1,153,1,153,1,153,1,153, - 1,154,1,154,1,154,1,154,1,154,5,154,2158,8,154,10,154,12,154,2161, - 9,154,1,154,1,154,1,154,3,154,2166,8,154,1,155,1,155,1,155,1,155, - 1,156,1,156,3,156,2174,8,156,1,157,1,157,1,158,1,158,1,158,3,158, - 2181,8,158,1,158,1,158,3,158,2185,8,158,1,158,1,158,1,158,1,158, - 1,158,1,158,5,158,2193,8,158,10,158,12,158,2196,9,158,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,3,159,2206,8,159,1,159,1,159, - 1,159,1,159,1,159,1,159,3,159,2214,8,159,1,159,1,159,1,159,1,159, - 1,159,5,159,2221,8,159,10,159,12,159,2224,9,159,1,159,1,159,1,159, - 3,159,2229,8,159,1,159,1,159,1,159,3,159,2234,8,159,1,159,1,159, - 1,159,1,159,3,159,2240,8,159,1,159,1,159,1,159,1,159,3,159,2246, - 8,159,1,159,1,159,1,159,3,159,2251,8,159,1,159,1,159,1,159,3,159, - 2256,8,159,1,160,1,160,1,160,1,160,3,160,2262,8,160,1,160,1,160, - 1,160,1,160,1,160,1,160,1,160,1,160,1,160,5,160,2273,8,160,10,160, - 12,160,2276,9,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,3,161,2302,8,161,1,161,1,161,1,161, - 1,161,3,161,2308,8,161,5,161,2310,8,161,10,161,12,161,2313,9,161, - 1,161,1,161,1,161,1,161,1,161,1,161,1,161,5,161,2322,8,161,10,161, - 12,161,2325,9,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,3,161, - 2334,8,161,1,161,3,161,2337,8,161,1,161,1,161,1,161,3,161,2342,8, - 161,1,161,1,161,1,161,5,161,2347,8,161,10,161,12,161,2350,9,161, - 3,161,2352,8,161,1,161,1,161,1,161,1,161,1,161,5,161,2359,8,161, - 10,161,12,161,2362,9,161,3,161,2364,8,161,1,161,1,161,3,161,2368, - 8,161,1,161,3,161,2371,8,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,5,161,2381,8,161,10,161,12,161,2384,9,161,3,161,2386, - 8,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,4,161,2403,8,161,11,161,12,161,2404, - 1,161,1,161,3,161,2409,8,161,1,161,1,161,1,161,1,161,4,161,2415, - 8,161,11,161,12,161,2416,1,161,1,161,3,161,2421,8,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,5,161,2444,8,161, - 10,161,12,161,2447,9,161,3,161,2449,8,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,3,161,2458,8,161,1,161,1,161,1,161,1,161,3,161, - 2464,8,161,1,161,1,161,1,161,1,161,3,161,2470,8,161,1,161,1,161, - 1,161,1,161,3,161,2476,8,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,3,161,2487,8,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,3,161,2496,8,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,5,161,2516,8,161,10,161,12,161,2519,9,161,3,161,2521,8,161, - 1,161,3,161,2524,8,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,5,161,2534,8,161,10,161,12,161,2537,9,161,1,162,1,162,1,162, - 1,162,3,162,2543,8,162,3,162,2545,8,162,1,163,1,163,1,164,1,164, - 1,165,1,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, - 1,166,1,166,1,166,1,166,1,166,3,166,2567,8,166,1,167,1,167,1,168, - 1,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, - 5,169,2594,8,169,10,169,12,169,2597,9,169,1,169,1,169,1,169,1,169, - 3,169,2603,8,169,1,169,1,169,1,169,1,169,5,169,2609,8,169,10,169, - 12,169,2612,9,169,1,169,1,169,3,169,2616,8,169,3,169,2618,8,169, - 1,169,1,169,5,169,2622,8,169,10,169,12,169,2625,9,169,1,170,1,170, - 1,171,1,171,3,171,2631,8,171,1,172,1,172,1,172,1,172,3,172,2637, - 8,172,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174, - 1,175,1,175,1,175,5,175,2652,8,175,10,175,12,175,2655,9,175,1,176, - 1,176,1,176,1,176,1,176,3,176,2662,8,176,1,176,1,176,1,176,1,176, - 1,176,5,176,2669,8,176,10,176,12,176,2672,9,176,3,176,2674,8,176, - 1,176,3,176,2677,8,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 3,177,2697,8,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, - 1,178,3,178,2708,8,178,1,179,1,179,1,179,1,179,1,179,3,179,2715, - 8,179,1,180,1,180,1,180,5,180,2720,8,180,10,180,12,180,2723,9,180, - 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, - 3,181,2736,8,181,3,181,2738,8,181,1,182,1,182,1,183,1,183,1,183, - 5,183,2745,8,183,10,183,12,183,2748,9,183,1,184,1,184,1,184,1,184, - 1,184,1,184,3,184,2756,8,184,1,185,1,185,1,185,1,185,1,185,3,185, - 2763,8,185,1,186,3,186,2766,8,186,1,186,1,186,3,186,2770,8,186,1, - 186,1,186,3,186,2774,8,186,1,186,3,186,2777,8,186,1,187,1,187,1, - 188,1,188,1,188,10,779,1452,1628,1667,1687,1702,1733,1762,1836,2311, - 6,266,290,316,320,322,338,189,0,2,4,6,8,10,12,14,16,18,20,22,24, + 1,13,1,13,1,13,1,13,3,13,703,8,13,1,14,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,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,3,15,729,8,15,1,15,1,15,1,16,1,16,1,16, + 1,16,1,16,3,16,738,8,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16, + 3,16,748,8,16,1,16,3,16,751,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1, + 17,1,18,1,18,1,18,1,18,1,18,3,18,765,8,18,1,18,1,18,1,19,1,19,1, + 19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,783, + 8,20,3,20,785,8,20,1,20,1,20,1,20,1,20,1,20,5,20,792,8,20,10,20, + 12,20,795,9,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,805, + 8,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,3,22,814,8,22,1,22,1,22, + 1,22,1,22,1,22,3,22,821,8,22,1,22,1,22,3,22,825,8,22,1,23,1,23,1, + 23,1,23,1,23,3,23,832,8,23,1,23,1,23,1,23,1,23,3,23,838,8,23,1,23, + 3,23,841,8,23,1,23,1,23,1,23,3,23,846,8,23,1,24,1,24,1,24,1,24,1, + 24,3,24,853,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1, + 24,1,24,1,24,3,24,867,8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1, + 26,1,26,1,26,1,26,3,26,880,8,26,1,26,1,26,1,26,3,26,885,8,26,1,26, + 1,26,1,26,3,26,890,8,26,1,27,1,27,1,27,1,27,3,27,896,8,27,1,27,1, + 27,1,27,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,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1, + 31,1,31,1,31,1,31,1,31,1,32,1,32,3,32,932,8,32,1,32,3,32,935,8,32, + 1,32,1,32,1,33,1,33,3,33,941,8,33,1,33,3,33,944,8,33,1,33,1,33,1, + 34,1,34,3,34,950,8,34,1,35,1,35,1,35,1,35,3,35,956,8,35,1,35,1,35, + 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,968,8,35,3,35,970,8, + 35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,981,8,36,1, + 37,1,37,1,37,1,37,1,37,1,37,3,37,989,8,37,1,38,1,38,1,38,3,38,994, + 8,38,1,38,1,38,3,38,998,8,38,1,39,1,39,1,39,3,39,1003,8,39,1,39, + 1,39,1,40,1,40,1,40,3,40,1010,8,40,1,40,1,40,3,40,1014,8,40,1,41, + 1,41,3,41,1018,8,41,1,41,1,41,1,41,1,41,3,41,1024,8,41,1,42,1,42, + 3,42,1028,8,42,1,42,1,42,3,42,1032,8,42,1,42,1,42,1,42,1,42,1,42, + 5,42,1039,8,42,10,42,12,42,1042,9,42,3,42,1044,8,42,1,42,3,42,1047, + 8,42,1,43,1,43,1,43,1,43,1,44,1,44,3,44,1055,8,44,1,45,1,45,1,45, + 1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,3,46,1069,8,46,1,46, + 1,46,1,46,1,47,1,47,3,47,1076,8,47,1,48,1,48,1,48,1,48,1,48,1,48, + 1,48,1,49,1,49,1,49,1,49,3,49,1089,8,49,1,49,1,49,1,49,1,49,3,49, + 1095,8,49,1,49,1,49,1,49,3,49,1100,8,49,1,49,3,49,1103,8,49,1,50, + 3,50,1106,8,50,1,50,1,50,1,50,3,50,1111,8,50,1,50,1,50,3,50,1115, + 8,50,1,50,1,50,1,50,1,50,1,50,5,50,1122,8,50,10,50,12,50,1125,9, + 50,1,50,1,50,3,50,1129,8,50,1,50,1,50,1,51,1,51,3,51,1135,8,51,1, + 52,1,52,3,52,1139,8,52,1,52,1,52,3,52,1143,8,52,1,53,1,53,1,53,3, + 53,1148,8,53,1,53,3,53,1151,8,53,1,53,1,53,1,53,1,53,5,53,1157,8, + 53,10,53,12,53,1160,9,53,3,53,1162,8,53,1,53,3,53,1165,8,53,1,54, + 1,54,1,54,1,54,1,54,1,54,1,54,1,54,5,54,1175,8,54,10,54,12,54,1178, + 9,54,3,54,1180,8,54,1,54,3,54,1183,8,54,1,55,1,55,1,55,3,55,1188, + 8,55,1,55,1,55,3,55,1192,8,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56, + 1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1208,8,56,1,57,1,57,1,57, + 3,57,1213,8,57,1,57,1,57,1,57,5,57,1218,8,57,10,57,12,57,1221,9, + 57,3,57,1223,8,57,1,58,1,58,1,58,1,58,3,58,1229,8,58,1,58,3,58,1232, + 8,58,1,58,1,58,1,58,5,58,1237,8,58,10,58,12,58,1240,9,58,3,58,1242, + 8,58,1,59,1,59,3,59,1246,8,59,1,59,1,59,1,59,3,59,1251,8,59,1,59, + 3,59,1254,8,59,1,59,1,59,1,59,5,59,1259,8,59,10,59,12,59,1262,9, + 59,3,59,1264,8,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1, + 61,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,3, + 64,1288,8,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1, + 65,1,65,3,65,1302,8,65,1,65,1,65,3,65,1306,8,65,1,66,1,66,3,66,1310, + 8,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68, + 1,68,1,68,1,68,1,68,1,68,1,68,3,68,1330,8,68,3,68,1332,8,68,3,68, + 1334,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69,1343,8,69,3,69, + 1345,8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,1354,8,70,3,70, + 1356,8,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,1365,8,71,3,71, + 1367,8,71,1,72,1,72,1,72,3,72,1372,8,72,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,3,73,1381,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74, + 1390,8,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,1399,8,75,1,76, + 1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,3,77,1410,8,77,1,78,1,78, + 1,78,1,78,3,78,1416,8,78,1,78,1,78,1,78,3,78,1421,8,78,1,78,3,78, + 1424,8,78,1,78,1,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80, + 3,80,1437,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1447, + 8,80,1,80,1,80,3,80,1451,8,80,1,81,1,81,1,81,3,81,1456,8,81,1,82, + 1,82,1,82,1,82,1,82,1,82,1,82,5,82,1465,8,82,10,82,12,82,1468,9, + 82,1,82,1,82,3,82,1472,8,82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1, + 85,1,85,1,85,1,86,1,86,1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1, + 90,1,90,1,91,1,91,1,92,1,92,1,93,1,93,1,93,5,93,1503,8,93,10,93, + 12,93,1506,9,93,1,94,1,94,1,94,5,94,1511,8,94,10,94,12,94,1514,9, + 94,1,95,1,95,3,95,1518,8,95,1,96,1,96,3,96,1522,8,96,1,97,1,97,1, + 98,1,98,3,98,1528,8,98,1,99,1,99,1,99,3,99,1533,8,99,1,99,3,99,1536, + 8,99,1,99,1,99,1,99,3,99,1541,8,99,1,99,1,99,1,99,3,99,1546,8,99, + 1,99,1,99,1,99,3,99,1551,8,99,1,99,1,99,3,99,1555,8,99,1,99,1,99, + 1,99,1,99,1,99,1,99,1,99,3,99,1564,8,99,1,99,3,99,1567,8,99,1,99, + 1,99,3,99,1571,8,99,1,100,1,100,1,100,5,100,1576,8,100,10,100,12, + 100,1579,9,100,1,101,1,101,1,101,1,101,1,102,1,102,3,102,1587,8, + 102,1,102,1,102,3,102,1591,8,102,5,102,1593,8,102,10,102,12,102, + 1596,9,102,1,102,1,102,1,103,1,103,3,103,1602,8,103,1,104,3,104, + 1605,8,104,1,104,1,104,1,105,1,105,1,105,1,105,5,105,1613,8,105, + 10,105,12,105,1616,9,105,1,106,1,106,1,106,1,106,3,106,1622,8,106, + 1,106,1,106,1,106,3,106,1627,8,106,1,106,1,106,1,106,3,106,1632, + 8,106,1,106,1,106,1,106,3,106,1637,8,106,1,106,1,106,5,106,1641, + 8,106,10,106,12,106,1644,9,106,3,106,1646,8,106,1,107,1,107,1,107, + 1,107,1,107,1,107,1,107,3,107,1655,8,107,1,107,3,107,1658,8,107, + 1,107,3,107,1661,8,107,1,108,1,108,1,108,1,108,3,108,1667,8,108, + 1,109,1,109,1,109,3,109,1672,8,109,1,110,1,110,1,111,1,111,1,111, + 1,111,5,111,1680,8,111,10,111,12,111,1683,9,111,3,111,1685,8,111, + 1,111,3,111,1688,8,111,1,111,1,111,3,111,1692,8,111,1,112,1,112, + 1,112,1,113,1,113,1,113,5,113,1700,8,113,10,113,12,113,1703,9,113, + 3,113,1705,8,113,1,114,1,114,1,114,1,114,3,114,1711,8,114,1,114, + 1,114,5,114,1715,8,114,10,114,12,114,1718,9,114,3,114,1720,8,114, + 1,115,3,115,1723,8,115,1,115,1,115,3,115,1727,8,115,1,116,1,116, + 1,116,1,116,1,116,1,116,1,116,1,116,3,116,1737,8,116,1,117,1,117, + 1,118,1,118,1,119,1,119,1,119,5,119,1746,8,119,10,119,12,119,1749, + 9,119,1,119,1,119,3,119,1753,8,119,1,119,3,119,1756,8,119,1,120, + 1,120,3,120,1760,8,120,1,120,1,120,1,120,1,121,1,121,3,121,1767, + 8,121,1,121,1,121,1,121,1,121,1,121,1,121,5,121,1775,8,121,10,121, + 12,121,1778,9,121,1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,122, + 1,122,3,122,1789,8,122,1,122,1,122,1,122,1,122,3,122,1795,8,122, + 3,122,1797,8,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123, + 1806,8,123,1,123,3,123,1809,8,123,1,124,1,124,1,124,1,124,1,124, + 3,124,1816,8,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, + 3,125,1826,8,125,1,126,1,126,1,126,1,126,3,126,1832,8,126,1,127, + 1,127,1,127,1,127,5,127,1838,8,127,10,127,12,127,1841,9,127,1,127, + 1,127,1,128,1,128,1,128,1,128,5,128,1849,8,128,10,128,12,128,1852, + 9,128,1,128,1,128,1,129,1,129,1,129,5,129,1859,8,129,10,129,12,129, + 1862,9,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130, + 1872,8,130,3,130,1874,8,130,1,130,1,130,1,130,1,130,3,130,1880,8, + 130,1,131,1,131,1,131,3,131,1885,8,131,1,132,1,132,1,132,1,132,1, + 132,1,132,5,132,1893,8,132,10,132,12,132,1896,9,132,3,132,1898,8, + 132,1,132,1,132,1,132,1,132,3,132,1904,8,132,3,132,1906,8,132,1, + 133,1,133,1,133,1,133,1,133,1,133,3,133,1914,8,133,1,133,1,133,1, + 133,1,133,3,133,1920,8,133,1,133,5,133,1923,8,133,10,133,12,133, + 1926,9,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134,1935, + 8,134,10,134,12,134,1938,9,134,1,134,1,134,1,134,1,134,3,134,1944, + 8,134,1,135,1,135,3,135,1948,8,135,1,135,1,135,3,135,1952,8,135, + 1,136,1,136,3,136,1956,8,136,1,136,3,136,1959,8,136,1,136,1,136, + 1,136,1,136,1,136,5,136,1966,8,136,10,136,12,136,1969,9,136,3,136, + 1971,8,136,1,136,3,136,1974,8,136,1,136,1,136,1,136,3,136,1979,8, + 136,1,136,3,136,1982,8,136,1,137,1,137,1,137,5,137,1987,8,137,10, + 137,12,137,1990,9,137,1,138,1,138,1,138,1,139,1,139,1,139,1,140, + 3,140,1999,8,140,1,140,1,140,1,140,5,140,2004,8,140,10,140,12,140, + 2007,9,140,1,141,1,141,1,142,1,142,1,142,1,142,5,142,2015,8,142, + 10,142,12,142,2018,9,142,3,142,2020,8,142,1,142,1,142,3,142,2024, + 8,142,1,143,1,143,3,143,2028,8,143,1,143,1,143,1,143,1,144,1,144, + 1,145,1,145,3,145,2037,8,145,1,145,1,145,3,145,2041,8,145,1,145, + 3,145,2044,8,145,1,146,3,146,2047,8,146,1,146,1,146,1,147,1,147, + 1,148,1,148,1,149,1,149,1,149,3,149,2058,8,149,1,149,1,149,1,150, + 1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, + 3,150,2074,8,150,5,150,2076,8,150,10,150,12,150,2079,9,150,1,151, + 3,151,2082,8,151,1,151,1,151,3,151,2086,8,151,1,151,1,151,3,151, + 2090,8,151,1,151,1,151,3,151,2094,8,151,1,151,1,151,3,151,2098,8, + 151,1,151,1,151,3,151,2102,8,151,1,151,1,151,1,151,1,151,1,151,1, + 151,1,151,1,151,3,151,2112,8,151,1,152,1,152,1,152,1,152,1,152,1, + 152,1,152,5,152,2121,8,152,10,152,12,152,2124,9,152,1,152,1,152, + 3,152,2128,8,152,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, + 1,153,1,153,1,153,3,153,2141,8,153,3,153,2143,8,153,1,154,1,154, + 1,155,1,155,3,155,2149,8,155,1,155,1,155,3,155,2153,8,155,3,155, + 2155,8,155,1,156,1,156,1,156,1,156,5,156,2161,8,156,10,156,12,156, + 2164,9,156,1,156,1,156,1,157,1,157,1,157,1,157,3,157,2172,8,157, + 1,158,3,158,2175,8,158,1,158,1,158,1,159,1,159,1,159,1,159,1,160, + 1,160,1,160,1,160,1,160,5,160,2188,8,160,10,160,12,160,2191,9,160, + 1,160,1,160,1,160,3,160,2196,8,160,1,161,1,161,1,161,1,161,1,162, + 1,162,3,162,2204,8,162,1,163,1,163,1,164,1,164,1,164,3,164,2211, + 8,164,1,164,1,164,3,164,2215,8,164,1,164,1,164,1,164,1,164,1,164, + 1,164,5,164,2223,8,164,10,164,12,164,2226,9,164,1,165,1,165,1,165, + 1,165,1,165,1,165,1,165,1,165,3,165,2236,8,165,1,165,1,165,1,165, + 1,165,1,165,1,165,3,165,2244,8,165,1,165,1,165,1,165,1,165,1,165, + 5,165,2251,8,165,10,165,12,165,2254,9,165,1,165,1,165,1,165,3,165, + 2259,8,165,1,165,1,165,1,165,3,165,2264,8,165,1,165,1,165,1,165, + 1,165,3,165,2270,8,165,1,165,1,165,1,165,1,165,3,165,2276,8,165, + 1,165,1,165,1,165,3,165,2281,8,165,1,165,1,165,1,165,3,165,2286, + 8,165,1,166,1,166,1,166,1,166,3,166,2292,8,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,5,166,2303,8,166,10,166,12,166, + 2306,9,166,1,167,1,167,1,167,3,167,2311,8,167,1,167,1,167,1,167, + 5,167,2316,8,167,10,167,12,167,2319,9,167,3,167,2321,8,167,1,167, + 1,167,1,167,1,167,1,167,5,167,2328,8,167,10,167,12,167,2331,9,167, + 3,167,2333,8,167,1,167,1,167,3,167,2337,8,167,1,167,3,167,2340,8, + 167,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,3,168,2366,8,168,1,168,1,168,1,168,1,168,3,168, + 2372,8,168,5,168,2374,8,168,10,168,12,168,2377,9,168,1,168,1,168, + 1,168,1,168,1,168,1,168,1,168,5,168,2386,8,168,10,168,12,168,2389, + 9,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,3,168,2398,8,168, + 1,168,3,168,2401,8,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,5,168,2412,8,168,10,168,12,168,2415,9,168,3,168,2417, + 8,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,1,168,1,168,4,168,2434,8,168,11,168,12,168,2435, + 1,168,1,168,3,168,2440,8,168,1,168,1,168,1,168,1,168,4,168,2446, + 8,168,11,168,12,168,2447,1,168,1,168,3,168,2452,8,168,1,168,1,168, + 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,5,168,2475,8,168, + 10,168,12,168,2478,9,168,3,168,2480,8,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,3,168,2489,8,168,1,168,1,168,1,168,1,168,3,168, + 2495,8,168,1,168,1,168,1,168,1,168,3,168,2501,8,168,1,168,1,168, + 1,168,1,168,3,168,2507,8,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,3,168,2518,8,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,3,168,2527,8,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,5,168,2547,8,168,10,168,12,168,2550,9,168,3,168,2552,8,168, + 1,168,3,168,2555,8,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,5,168,2565,8,168,10,168,12,168,2568,9,168,1,169,1,169,1,169, + 1,169,3,169,2574,8,169,3,169,2576,8,169,1,170,1,170,1,171,1,171, + 1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, + 1,173,1,173,1,173,1,173,1,173,3,173,2598,8,173,1,174,1,174,1,175, + 1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, + 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, + 5,176,2625,8,176,10,176,12,176,2628,9,176,1,176,1,176,1,176,1,176, + 3,176,2634,8,176,1,176,1,176,1,176,1,176,5,176,2640,8,176,10,176, + 12,176,2643,9,176,1,176,1,176,3,176,2647,8,176,3,176,2649,8,176, + 1,176,1,176,5,176,2653,8,176,10,176,12,176,2656,9,176,1,177,1,177, + 1,178,1,178,3,178,2662,8,178,1,179,1,179,1,179,1,179,3,179,2668, + 8,179,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,5,182,2683,8,182,10,182,12,182,2686,9,182,1,183, + 1,183,1,183,1,183,1,183,3,183,2693,8,183,1,183,1,183,1,183,1,183, + 1,183,5,183,2700,8,183,10,183,12,183,2703,9,183,3,183,2705,8,183, + 1,183,3,183,2708,8,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184, + 1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184, + 3,184,2728,8,184,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, + 1,185,3,185,2739,8,185,1,186,1,186,1,186,1,186,1,186,3,186,2746, + 8,186,1,187,1,187,1,187,5,187,2751,8,187,10,187,12,187,2754,9,187, + 1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188, + 3,188,2767,8,188,3,188,2769,8,188,1,189,1,189,1,190,1,190,1,190, + 5,190,2776,8,190,10,190,12,190,2779,9,190,1,191,1,191,1,191,1,191, + 1,191,1,191,3,191,2787,8,191,1,192,1,192,1,192,1,192,1,192,3,192, + 2794,8,192,1,193,3,193,2797,8,193,1,193,1,193,3,193,2801,8,193,1, + 193,1,193,3,193,2805,8,193,1,193,3,193,2808,8,193,1,194,1,194,1, + 195,1,195,1,195,10,793,1466,1642,1681,1701,1716,1747,1776,1850,2375, + 6,266,300,328,332,336,352,196,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,120,122,124,126,128,130,132,134,136,138,140, @@ -13392,921 +13589,929 @@ export class ImpalaSqlParser extends SQLParserBase { 270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300, 302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332, 334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364, - 366,368,370,372,374,376,0,33,2,0,46,46,170,170,2,0,166,166,204,204, - 2,0,176,176,202,202,2,0,69,69,80,80,2,0,27,27,159,159,2,0,103,103, - 144,144,2,0,47,47,171,171,2,0,3,3,12,12,3,0,87,87,166,166,204,204, - 2,0,178,178,209,209,1,0,245,248,2,0,147,147,219,223,2,0,65,65,95, - 95,2,0,64,64,200,200,2,0,10,10,55,55,2,0,75,75,112,112,2,0,2,2,57, - 57,2,0,14,14,185,185,3,0,106,106,115,115,164,164,2,0,105,105,163, - 163,4,0,70,70,133,133,194,194,208,208,1,0,255,256,1,0,257,259,1, - 0,249,254,3,0,2,2,6,6,181,181,2,0,70,70,194,194,5,0,48,49,91,92, - 122,125,172,173,217,218,1,0,127,130,2,0,8,8,227,244,2,0,77,77,149, - 149,4,0,46,46,178,178,188,188,209,209,16,0,28,29,40,40,43,43,48, - 48,68,68,91,91,114,114,122,122,124,124,158,158,165,165,172,172,184, - 184,196,196,204,204,217,217,23,0,14,14,43,44,48,49,65,65,68,68,91, - 91,95,95,110,110,119,119,122,125,127,130,137,137,140,140,152,153, - 172,173,180,180,184,185,195,195,204,204,213,213,217,217,220,220, - 231,231,3100,0,381,1,0,0,0,2,386,1,0,0,0,4,412,1,0,0,0,6,414,1,0, - 0,0,8,425,1,0,0,0,10,427,1,0,0,0,12,466,1,0,0,0,14,488,1,0,0,0,16, - 542,1,0,0,0,18,561,1,0,0,0,20,574,1,0,0,0,22,578,1,0,0,0,24,640, - 1,0,0,0,26,688,1,0,0,0,28,690,1,0,0,0,30,698,1,0,0,0,32,718,1,0, - 0,0,34,738,1,0,0,0,36,745,1,0,0,0,38,754,1,0,0,0,40,762,1,0,0,0, - 42,784,1,0,0,0,44,794,1,0,0,0,46,812,1,0,0,0,48,833,1,0,0,0,50,854, - 1,0,0,0,52,860,1,0,0,0,54,877,1,0,0,0,56,886,1,0,0,0,58,893,1,0, - 0,0,60,901,1,0,0,0,62,908,1,0,0,0,64,915,1,0,0,0,66,924,1,0,0,0, - 68,935,1,0,0,0,70,937,1,0,0,0,72,957,1,0,0,0,74,974,1,0,0,0,76,976, - 1,0,0,0,78,985,1,0,0,0,80,992,1,0,0,0,82,1001,1,0,0,0,84,1011,1, - 0,0,0,86,1034,1,0,0,0,88,1040,1,0,0,0,90,1042,1,0,0,0,92,1049,1, - 0,0,0,94,1061,1,0,0,0,96,1063,1,0,0,0,98,1070,1,0,0,0,100,1091,1, - 0,0,0,102,1120,1,0,0,0,104,1122,1,0,0,0,106,1130,1,0,0,0,108,1152, - 1,0,0,0,110,1170,1,0,0,0,112,1193,1,0,0,0,114,1195,1,0,0,0,116,1210, - 1,0,0,0,118,1229,1,0,0,0,120,1251,1,0,0,0,122,1256,1,0,0,0,124,1261, - 1,0,0,0,126,1266,1,0,0,0,128,1271,1,0,0,0,130,1278,1,0,0,0,132,1293, - 1,0,0,0,134,1299,1,0,0,0,136,1319,1,0,0,0,138,1321,1,0,0,0,140,1332, - 1,0,0,0,142,1343,1,0,0,0,144,1357,1,0,0,0,146,1359,1,0,0,0,148,1368, - 1,0,0,0,150,1377,1,0,0,0,152,1386,1,0,0,0,154,1389,1,0,0,0,156,1397, - 1,0,0,0,158,1413,1,0,0,0,160,1417,1,0,0,0,162,1441,1,0,0,0,164,1443, - 1,0,0,0,166,1459,1,0,0,0,168,1462,1,0,0,0,170,1466,1,0,0,0,172,1469, - 1,0,0,0,174,1473,1,0,0,0,176,1475,1,0,0,0,178,1477,1,0,0,0,180,1479, - 1,0,0,0,182,1481,1,0,0,0,184,1483,1,0,0,0,186,1485,1,0,0,0,188,1493, - 1,0,0,0,190,1503,1,0,0,0,192,1507,1,0,0,0,194,1509,1,0,0,0,196,1513, - 1,0,0,0,198,1518,1,0,0,0,200,1558,1,0,0,0,202,1566,1,0,0,0,204,1570, - 1,0,0,0,206,1585,1,0,0,0,208,1590,1,0,0,0,210,1594,1,0,0,0,212,1603, - 1,0,0,0,214,1633,1,0,0,0,216,1648,1,0,0,0,218,1654,1,0,0,0,220,1659, - 1,0,0,0,222,1661,1,0,0,0,224,1679,1,0,0,0,226,1682,1,0,0,0,228,1692, - 1,0,0,0,230,1712,1,0,0,0,232,1722,1,0,0,0,234,1724,1,0,0,0,236,1726, - 1,0,0,0,238,1741,1,0,0,0,240,1743,1,0,0,0,242,1750,1,0,0,0,244,1782, - 1,0,0,0,246,1794,1,0,0,0,248,1801,1,0,0,0,250,1811,1,0,0,0,252,1813, - 1,0,0,0,254,1819,1,0,0,0,256,1830,1,0,0,0,258,1841,1,0,0,0,260,1849, - 1,0,0,0,262,1867,1,0,0,0,264,1872,1,0,0,0,266,1893,1,0,0,0,268,1929, - 1,0,0,0,270,1931,1,0,0,0,272,1939,1,0,0,0,274,1976,1,0,0,0,276,1979, - 1,0,0,0,278,1983,1,0,0,0,280,1993,1,0,0,0,282,2008,1,0,0,0,284,2010, - 1,0,0,0,286,2017,1,0,0,0,288,2031,1,0,0,0,290,2033,1,0,0,0,292,2083, - 1,0,0,0,294,2099,1,0,0,0,296,2101,1,0,0,0,298,2116,1,0,0,0,300,2118, - 1,0,0,0,302,2128,1,0,0,0,304,2146,1,0,0,0,306,2148,1,0,0,0,308,2152, - 1,0,0,0,310,2167,1,0,0,0,312,2173,1,0,0,0,314,2175,1,0,0,0,316,2184, - 1,0,0,0,318,2255,1,0,0,0,320,2261,1,0,0,0,322,2523,1,0,0,0,324,2544, - 1,0,0,0,326,2546,1,0,0,0,328,2548,1,0,0,0,330,2550,1,0,0,0,332,2566, - 1,0,0,0,334,2568,1,0,0,0,336,2570,1,0,0,0,338,2617,1,0,0,0,340,2626, - 1,0,0,0,342,2630,1,0,0,0,344,2636,1,0,0,0,346,2638,1,0,0,0,348,2643, - 1,0,0,0,350,2648,1,0,0,0,352,2656,1,0,0,0,354,2696,1,0,0,0,356,2707, - 1,0,0,0,358,2714,1,0,0,0,360,2716,1,0,0,0,362,2737,1,0,0,0,364,2739, - 1,0,0,0,366,2741,1,0,0,0,368,2755,1,0,0,0,370,2762,1,0,0,0,372,2776, - 1,0,0,0,374,2778,1,0,0,0,376,2780,1,0,0,0,378,380,3,2,1,0,379,378, - 1,0,0,0,380,383,1,0,0,0,381,379,1,0,0,0,381,382,1,0,0,0,382,384, - 1,0,0,0,383,381,1,0,0,0,384,385,5,0,0,1,385,1,1,0,0,0,386,388,3, - 4,2,0,387,389,5,262,0,0,388,387,1,0,0,0,388,389,1,0,0,0,389,3,1, - 0,0,0,390,413,3,208,104,0,391,413,3,6,3,0,392,413,3,8,4,0,393,413, - 3,26,13,0,394,413,3,64,32,0,395,413,3,66,33,0,396,413,3,68,34,0, - 397,413,3,74,37,0,398,413,3,88,44,0,399,413,3,94,47,0,400,413,3, - 100,50,0,401,413,3,102,51,0,402,413,3,108,54,0,403,413,3,110,55, - 0,404,413,3,112,56,0,405,413,3,144,72,0,406,413,3,152,76,0,407,413, - 3,154,77,0,408,413,3,156,78,0,409,413,3,158,79,0,410,413,3,160,80, - 0,411,413,3,162,81,0,412,390,1,0,0,0,412,391,1,0,0,0,412,392,1,0, - 0,0,412,393,1,0,0,0,412,394,1,0,0,0,412,395,1,0,0,0,412,396,1,0, - 0,0,412,397,1,0,0,0,412,398,1,0,0,0,412,399,1,0,0,0,412,400,1,0, - 0,0,412,401,1,0,0,0,412,402,1,0,0,0,412,403,1,0,0,0,412,404,1,0, - 0,0,412,405,1,0,0,0,412,406,1,0,0,0,412,407,1,0,0,0,412,408,1,0, - 0,0,412,409,1,0,0,0,412,410,1,0,0,0,412,411,1,0,0,0,413,5,1,0,0, - 0,414,415,5,203,0,0,415,416,3,184,92,0,416,7,1,0,0,0,417,426,3,18, - 9,0,418,426,3,20,10,0,419,426,3,22,11,0,420,426,3,24,12,0,421,426, - 3,16,8,0,422,426,3,14,7,0,423,426,3,12,6,0,424,426,3,10,5,0,425, - 417,1,0,0,0,425,418,1,0,0,0,425,419,1,0,0,0,425,420,1,0,0,0,425, - 421,1,0,0,0,425,422,1,0,0,0,425,423,1,0,0,0,425,424,1,0,0,0,426, - 9,1,0,0,0,427,429,5,37,0,0,428,430,5,19,0,0,429,428,1,0,0,0,429, - 430,1,0,0,0,430,431,1,0,0,0,431,433,5,188,0,0,432,434,3,172,86,0, - 433,432,1,0,0,0,433,434,1,0,0,0,434,435,1,0,0,0,435,451,3,174,87, - 0,436,437,5,265,0,0,437,442,3,218,109,0,438,439,5,263,0,0,439,441, - 3,218,109,0,440,438,1,0,0,0,441,444,1,0,0,0,442,440,1,0,0,0,442, - 443,1,0,0,0,443,447,1,0,0,0,444,442,1,0,0,0,445,446,5,263,0,0,446, - 448,3,212,106,0,447,445,1,0,0,0,447,448,1,0,0,0,448,449,1,0,0,0, - 449,450,5,266,0,0,450,452,1,0,0,0,451,436,1,0,0,0,451,452,1,0,0, - 0,452,459,1,0,0,0,453,454,5,17,0,0,454,457,5,26,0,0,455,458,3,302, - 151,0,456,458,3,256,128,0,457,455,1,0,0,0,457,456,1,0,0,0,458,460, - 1,0,0,0,459,453,1,0,0,0,459,460,1,0,0,0,460,461,1,0,0,0,461,464, - 3,198,99,0,462,463,5,9,0,0,463,465,3,208,104,0,464,462,1,0,0,0,464, - 465,1,0,0,0,465,11,1,0,0,0,466,468,5,37,0,0,467,469,5,19,0,0,468, - 467,1,0,0,0,468,469,1,0,0,0,469,470,1,0,0,0,470,472,5,188,0,0,471, - 473,3,172,86,0,472,471,1,0,0,0,472,473,1,0,0,0,473,474,1,0,0,0,474, - 475,3,174,87,0,475,479,5,115,0,0,476,480,3,186,93,0,477,478,5,147, - 0,0,478,480,3,324,162,0,479,476,1,0,0,0,479,477,1,0,0,0,480,484, - 1,0,0,0,481,482,5,17,0,0,482,483,5,26,0,0,483,485,3,256,128,0,484, - 481,1,0,0,0,484,485,1,0,0,0,485,486,1,0,0,0,486,487,3,198,99,0,487, - 13,1,0,0,0,488,490,5,37,0,0,489,491,5,19,0,0,490,489,1,0,0,0,490, - 491,1,0,0,0,491,492,1,0,0,0,492,494,5,188,0,0,493,495,3,172,86,0, - 494,493,1,0,0,0,494,495,1,0,0,0,495,496,1,0,0,0,496,514,3,174,87, - 0,497,498,5,265,0,0,498,503,3,220,110,0,499,500,5,263,0,0,500,502, - 3,220,110,0,501,499,1,0,0,0,502,505,1,0,0,0,503,501,1,0,0,0,503, - 504,1,0,0,0,504,510,1,0,0,0,505,503,1,0,0,0,506,507,5,263,0,0,507, - 508,5,150,0,0,508,509,5,110,0,0,509,511,3,302,151,0,510,506,1,0, - 0,0,510,511,1,0,0,0,511,512,1,0,0,0,512,513,5,266,0,0,513,515,1, - 0,0,0,514,497,1,0,0,0,514,515,1,0,0,0,515,521,1,0,0,0,516,517,5, - 150,0,0,517,519,5,110,0,0,518,520,3,302,151,0,519,518,1,0,0,0,519, - 520,1,0,0,0,520,522,1,0,0,0,521,516,1,0,0,0,521,522,1,0,0,0,522, - 526,1,0,0,0,523,524,5,145,0,0,524,525,5,26,0,0,525,527,3,238,119, - 0,526,523,1,0,0,0,526,527,1,0,0,0,527,529,1,0,0,0,528,530,3,224, - 112,0,529,528,1,0,0,0,529,530,1,0,0,0,530,531,1,0,0,0,531,532,5, - 23,0,0,532,533,5,9,0,0,533,536,5,111,0,0,534,535,5,25,0,0,535,537, - 3,254,127,0,536,534,1,0,0,0,536,537,1,0,0,0,537,540,1,0,0,0,538, - 539,5,9,0,0,539,541,3,208,104,0,540,538,1,0,0,0,540,541,1,0,0,0, - 541,15,1,0,0,0,542,543,5,37,0,0,543,545,5,212,0,0,544,546,3,172, - 86,0,545,544,1,0,0,0,545,546,1,0,0,0,546,547,1,0,0,0,547,549,3,178, - 89,0,548,550,3,204,102,0,549,548,1,0,0,0,549,550,1,0,0,0,550,552, - 1,0,0,0,551,553,3,224,112,0,552,551,1,0,0,0,552,553,1,0,0,0,553, - 556,1,0,0,0,554,555,5,25,0,0,555,557,3,254,127,0,556,554,1,0,0,0, - 556,557,1,0,0,0,557,558,1,0,0,0,558,559,5,9,0,0,559,560,3,208,104, - 0,560,17,1,0,0,0,561,562,5,37,0,0,562,564,7,0,0,0,563,565,3,172, - 86,0,564,563,1,0,0,0,564,565,1,0,0,0,565,566,1,0,0,0,566,568,3,176, - 88,0,567,569,3,224,112,0,568,567,1,0,0,0,568,569,1,0,0,0,569,572, - 1,0,0,0,570,571,5,24,0,0,571,573,3,324,162,0,572,570,1,0,0,0,572, - 573,1,0,0,0,573,19,1,0,0,0,574,575,5,37,0,0,575,576,5,166,0,0,576, - 577,3,370,185,0,577,21,1,0,0,0,578,580,5,37,0,0,579,581,5,12,0,0, - 580,579,1,0,0,0,580,581,1,0,0,0,581,582,1,0,0,0,582,584,5,84,0,0, - 583,585,3,172,86,0,584,583,1,0,0,0,584,585,1,0,0,0,585,586,1,0,0, - 0,586,599,3,180,90,0,587,596,5,265,0,0,588,593,3,338,169,0,589,590, - 5,263,0,0,590,592,3,338,169,0,591,589,1,0,0,0,592,595,1,0,0,0,593, - 591,1,0,0,0,593,594,1,0,0,0,594,597,1,0,0,0,595,593,1,0,0,0,596, - 588,1,0,0,0,596,597,1,0,0,0,597,598,1,0,0,0,598,600,5,266,0,0,599, - 587,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,602,5,160,0,0,602, - 605,3,338,169,0,603,604,5,102,0,0,604,606,3,338,169,0,605,603,1, - 0,0,0,605,606,1,0,0,0,606,607,1,0,0,0,607,608,5,24,0,0,608,612,5, - 274,0,0,609,610,5,104,0,0,610,611,5,249,0,0,611,613,5,274,0,0,612, - 609,1,0,0,0,612,613,1,0,0,0,613,614,1,0,0,0,614,615,5,206,0,0,615, - 616,5,249,0,0,616,617,5,274,0,0,617,618,5,126,0,0,618,619,5,249, - 0,0,619,623,5,274,0,0,620,621,5,18,0,0,621,622,5,249,0,0,622,624, - 5,274,0,0,623,620,1,0,0,0,623,624,1,0,0,0,624,628,1,0,0,0,625,626, - 5,20,0,0,626,627,5,249,0,0,627,629,5,274,0,0,628,625,1,0,0,0,628, - 629,1,0,0,0,629,633,1,0,0,0,630,631,5,187,0,0,631,632,5,249,0,0, - 632,634,5,274,0,0,633,630,1,0,0,0,633,634,1,0,0,0,634,638,1,0,0, - 0,635,636,5,76,0,0,636,637,5,249,0,0,637,639,5,274,0,0,638,635,1, - 0,0,0,638,639,1,0,0,0,639,23,1,0,0,0,640,641,5,37,0,0,641,643,5, - 84,0,0,642,644,3,172,86,0,643,642,1,0,0,0,643,644,1,0,0,0,644,645, - 1,0,0,0,645,658,3,180,90,0,646,655,5,265,0,0,647,652,3,338,169,0, - 648,649,5,263,0,0,649,651,3,338,169,0,650,648,1,0,0,0,651,654,1, - 0,0,0,652,650,1,0,0,0,652,653,1,0,0,0,653,656,1,0,0,0,654,652,1, - 0,0,0,655,647,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,659,5, - 266,0,0,658,646,1,0,0,0,658,659,1,0,0,0,659,662,1,0,0,0,660,661, - 5,160,0,0,661,663,3,338,169,0,662,660,1,0,0,0,662,663,1,0,0,0,663, - 664,1,0,0,0,664,665,5,24,0,0,665,666,5,274,0,0,666,667,5,186,0,0, - 667,668,5,249,0,0,668,669,3,324,162,0,669,25,1,0,0,0,670,689,3,28, - 14,0,671,689,3,62,31,0,672,689,3,60,30,0,673,689,3,58,29,0,674,689, - 3,54,27,0,675,689,3,56,28,0,676,689,3,52,26,0,677,689,3,48,24,0, - 678,689,3,50,25,0,679,689,3,46,23,0,680,689,3,44,22,0,681,689,3, - 42,21,0,682,689,3,40,20,0,683,689,3,34,17,0,684,689,3,30,15,0,685, - 689,3,32,16,0,686,689,3,36,18,0,687,689,3,38,19,0,688,670,1,0,0, - 0,688,671,1,0,0,0,688,672,1,0,0,0,688,673,1,0,0,0,688,674,1,0,0, - 0,688,675,1,0,0,0,688,676,1,0,0,0,688,677,1,0,0,0,688,678,1,0,0, - 0,688,679,1,0,0,0,688,680,1,0,0,0,688,681,1,0,0,0,688,682,1,0,0, - 0,688,683,1,0,0,0,688,684,1,0,0,0,688,685,1,0,0,0,688,686,1,0,0, - 0,688,687,1,0,0,0,689,27,1,0,0,0,690,691,5,4,0,0,691,692,5,46,0, - 0,692,693,3,184,92,0,693,694,5,176,0,0,694,695,5,142,0,0,695,696, - 7,1,0,0,696,697,3,370,185,0,697,29,1,0,0,0,698,699,5,4,0,0,699,700, - 5,188,0,0,700,701,3,186,93,0,701,702,5,176,0,0,702,703,5,32,0,0, - 703,704,5,182,0,0,704,705,3,192,96,0,705,706,5,265,0,0,706,707,3, - 234,117,0,707,708,5,249,0,0,708,714,3,324,162,0,709,710,5,263,0, - 0,710,711,3,234,117,0,711,712,5,249,0,0,712,713,3,324,162,0,713, - 715,1,0,0,0,714,709,1,0,0,0,714,715,1,0,0,0,715,716,1,0,0,0,716, - 717,5,266,0,0,717,31,1,0,0,0,718,719,5,4,0,0,719,720,5,188,0,0,720, - 723,3,186,93,0,721,722,5,145,0,0,722,724,3,314,157,0,723,721,1,0, - 0,0,723,724,1,0,0,0,724,725,1,0,0,0,725,736,5,176,0,0,726,727,5, - 30,0,0,727,728,5,94,0,0,728,733,3,324,162,0,729,730,5,216,0,0,730, - 731,5,151,0,0,731,732,5,249,0,0,732,734,3,372,186,0,733,729,1,0, - 0,0,733,734,1,0,0,0,734,737,1,0,0,0,735,737,5,197,0,0,736,726,1, - 0,0,0,736,735,1,0,0,0,737,33,1,0,0,0,738,739,5,4,0,0,739,740,5,188, - 0,0,740,741,3,186,93,0,741,742,5,31,0,0,742,743,3,192,96,0,743,744, - 3,226,113,0,744,35,1,0,0,0,745,746,5,4,0,0,746,747,5,188,0,0,747, - 748,3,186,93,0,748,750,5,58,0,0,749,751,5,32,0,0,750,749,1,0,0,0, - 750,751,1,0,0,0,751,752,1,0,0,0,752,753,3,192,96,0,753,37,1,0,0, - 0,754,755,5,4,0,0,755,756,5,188,0,0,756,757,3,186,93,0,757,758,5, - 176,0,0,758,759,5,142,0,0,759,760,7,1,0,0,760,761,3,370,185,0,761, - 39,1,0,0,0,762,763,5,4,0,0,763,764,5,188,0,0,764,770,3,186,93,0, - 765,771,5,158,0,0,766,768,5,1,0,0,767,769,3,172,86,0,768,767,1,0, - 0,0,768,769,1,0,0,0,769,771,1,0,0,0,770,765,1,0,0,0,770,766,1,0, - 0,0,771,772,1,0,0,0,772,773,5,33,0,0,773,774,5,265,0,0,774,779,3, - 226,113,0,775,776,5,263,0,0,776,778,3,226,113,0,777,775,1,0,0,0, - 778,781,1,0,0,0,779,780,1,0,0,0,779,777,1,0,0,0,780,782,1,0,0,0, - 781,779,1,0,0,0,782,783,5,266,0,0,783,41,1,0,0,0,784,785,5,4,0,0, - 785,786,5,188,0,0,786,787,3,186,93,0,787,788,5,1,0,0,788,790,5,32, - 0,0,789,791,3,172,86,0,790,789,1,0,0,0,790,791,1,0,0,0,791,792,1, - 0,0,0,792,793,3,228,114,0,793,43,1,0,0,0,794,795,5,4,0,0,795,796, - 5,188,0,0,796,797,3,186,93,0,797,799,5,4,0,0,798,800,5,32,0,0,799, - 798,1,0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,810,3,192,96,0,802, - 806,5,176,0,0,803,807,3,232,116,0,804,805,5,34,0,0,805,807,3,324, - 162,0,806,803,1,0,0,0,806,804,1,0,0,0,807,811,1,0,0,0,808,809,5, - 58,0,0,809,811,5,51,0,0,810,802,1,0,0,0,810,808,1,0,0,0,811,45,1, - 0,0,0,812,813,5,4,0,0,813,814,5,188,0,0,814,815,3,186,93,0,815,817, - 5,1,0,0,816,818,3,172,86,0,817,816,1,0,0,0,817,818,1,0,0,0,818,831, - 1,0,0,0,819,820,5,145,0,0,820,823,3,314,157,0,821,822,5,24,0,0,822, - 824,3,324,162,0,823,821,1,0,0,0,823,824,1,0,0,0,824,826,1,0,0,0, - 825,827,3,246,123,0,826,825,1,0,0,0,826,827,1,0,0,0,827,832,1,0, - 0,0,828,829,5,154,0,0,829,830,5,145,0,0,830,832,3,244,122,0,831, - 819,1,0,0,0,831,828,1,0,0,0,832,47,1,0,0,0,833,834,5,4,0,0,834,835, - 5,188,0,0,835,838,3,186,93,0,836,837,5,145,0,0,837,839,3,314,157, - 0,838,836,1,0,0,0,838,839,1,0,0,0,839,840,1,0,0,0,840,852,5,176, - 0,0,841,842,5,72,0,0,842,853,3,236,118,0,843,844,5,168,0,0,844,845, - 5,79,0,0,845,853,3,260,130,0,846,847,5,24,0,0,847,853,3,324,162, - 0,848,849,5,25,0,0,849,853,3,254,127,0,850,851,5,175,0,0,851,853, - 3,254,127,0,852,841,1,0,0,0,852,843,1,0,0,0,852,846,1,0,0,0,852, - 848,1,0,0,0,852,850,1,0,0,0,853,49,1,0,0,0,854,855,5,4,0,0,855,856, - 5,188,0,0,856,857,3,186,93,0,857,858,5,155,0,0,858,859,5,146,0,0, - 859,51,1,0,0,0,860,861,5,4,0,0,861,862,5,188,0,0,862,863,3,186,93, - 0,863,865,5,58,0,0,864,866,3,170,85,0,865,864,1,0,0,0,865,866,1, - 0,0,0,866,875,1,0,0,0,867,868,5,145,0,0,868,870,3,314,157,0,869, - 871,5,22,0,0,870,869,1,0,0,0,870,871,1,0,0,0,871,876,1,0,0,0,872, - 873,5,154,0,0,873,874,5,145,0,0,874,876,3,244,122,0,875,867,1,0, - 0,0,875,872,1,0,0,0,876,53,1,0,0,0,877,878,5,4,0,0,878,879,5,212, - 0,0,879,881,3,188,94,0,880,882,3,204,102,0,881,880,1,0,0,0,881,882, - 1,0,0,0,882,883,1,0,0,0,883,884,5,9,0,0,884,885,3,208,104,0,885, - 55,1,0,0,0,886,887,5,4,0,0,887,888,5,212,0,0,888,889,3,188,94,0, - 889,890,5,156,0,0,890,891,5,193,0,0,891,892,3,188,94,0,892,57,1, - 0,0,0,893,894,5,4,0,0,894,895,5,212,0,0,895,896,3,188,94,0,896,897, - 5,176,0,0,897,898,5,142,0,0,898,899,7,1,0,0,899,900,3,366,183,0, - 900,59,1,0,0,0,901,902,5,4,0,0,902,903,5,188,0,0,903,904,3,186,93, - 0,904,905,5,156,0,0,905,906,5,193,0,0,906,907,3,186,93,0,907,61, - 1,0,0,0,908,909,5,4,0,0,909,910,5,212,0,0,910,911,3,188,94,0,911, - 912,7,2,0,0,912,913,5,25,0,0,913,914,3,254,127,0,914,63,1,0,0,0, - 915,917,5,196,0,0,916,918,5,188,0,0,917,916,1,0,0,0,917,918,1,0, - 0,0,918,920,1,0,0,0,919,921,3,170,85,0,920,919,1,0,0,0,920,921,1, - 0,0,0,921,922,1,0,0,0,922,923,3,186,93,0,923,65,1,0,0,0,924,926, - 5,56,0,0,925,927,5,46,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927,929, - 1,0,0,0,928,930,7,3,0,0,929,928,1,0,0,0,929,930,1,0,0,0,930,931, - 1,0,0,0,931,932,3,366,183,0,932,67,1,0,0,0,933,936,3,70,35,0,934, - 936,3,72,36,0,935,933,1,0,0,0,935,934,1,0,0,0,936,69,1,0,0,0,937, - 938,5,36,0,0,938,939,5,182,0,0,939,941,3,186,93,0,940,942,3,302, - 151,0,941,940,1,0,0,0,941,942,1,0,0,0,942,955,1,0,0,0,943,944,5, - 190,0,0,944,945,5,185,0,0,945,946,5,265,0,0,946,947,3,372,186,0, - 947,953,5,266,0,0,948,949,5,157,0,0,949,950,5,265,0,0,950,951,3, - 372,186,0,951,952,5,266,0,0,952,954,1,0,0,0,953,948,1,0,0,0,953, - 954,1,0,0,0,954,956,1,0,0,0,955,943,1,0,0,0,955,956,1,0,0,0,956, - 71,1,0,0,0,957,958,5,36,0,0,958,959,5,96,0,0,959,960,5,182,0,0,960, - 966,3,186,93,0,961,962,5,145,0,0,962,963,5,265,0,0,963,964,3,314, - 157,0,964,965,5,266,0,0,965,967,1,0,0,0,966,961,1,0,0,0,966,967, - 1,0,0,0,967,73,1,0,0,0,968,975,3,86,43,0,969,975,3,84,42,0,970,975, - 3,82,41,0,971,975,3,78,39,0,972,975,3,80,40,0,973,975,3,76,38,0, - 974,968,1,0,0,0,974,969,1,0,0,0,974,970,1,0,0,0,974,971,1,0,0,0, - 974,972,1,0,0,0,974,973,1,0,0,0,975,75,1,0,0,0,976,977,5,58,0,0, - 977,979,7,0,0,0,978,980,3,170,85,0,979,978,1,0,0,0,979,980,1,0,0, - 0,980,981,1,0,0,0,981,983,3,184,92,0,982,984,7,4,0,0,983,982,1,0, - 0,0,983,984,1,0,0,0,984,77,1,0,0,0,985,986,5,58,0,0,986,988,5,212, - 0,0,987,989,3,170,85,0,988,987,1,0,0,0,988,989,1,0,0,0,989,990,1, - 0,0,0,990,991,3,188,94,0,991,79,1,0,0,0,992,993,5,58,0,0,993,995, - 5,188,0,0,994,996,3,170,85,0,995,994,1,0,0,0,995,996,1,0,0,0,996, - 997,1,0,0,0,997,999,3,186,93,0,998,1000,5,22,0,0,999,998,1,0,0,0, - 999,1000,1,0,0,0,1000,81,1,0,0,0,1001,1003,5,58,0,0,1002,1004,5, - 96,0,0,1003,1002,1,0,0,0,1003,1004,1,0,0,0,1004,1005,1,0,0,0,1005, - 1006,5,182,0,0,1006,1009,3,186,93,0,1007,1008,5,145,0,0,1008,1010, - 3,314,157,0,1009,1007,1,0,0,0,1009,1010,1,0,0,0,1010,83,1,0,0,0, - 1011,1013,5,58,0,0,1012,1014,5,12,0,0,1013,1012,1,0,0,0,1013,1014, - 1,0,0,0,1014,1015,1,0,0,0,1015,1017,5,84,0,0,1016,1018,3,170,85, - 0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1,0,0,0,1019,1032, - 3,190,95,0,1020,1029,5,265,0,0,1021,1026,3,338,169,0,1022,1023,5, - 263,0,0,1023,1025,3,338,169,0,1024,1022,1,0,0,0,1025,1028,1,0,0, - 0,1026,1024,1,0,0,0,1026,1027,1,0,0,0,1027,1030,1,0,0,0,1028,1026, - 1,0,0,0,1029,1021,1,0,0,0,1029,1030,1,0,0,0,1030,1031,1,0,0,0,1031, - 1033,5,266,0,0,1032,1020,1,0,0,0,1032,1033,1,0,0,0,1033,85,1,0,0, - 0,1034,1035,5,58,0,0,1035,1036,5,166,0,0,1036,1037,3,370,185,0,1037, - 87,1,0,0,0,1038,1041,3,90,45,0,1039,1041,3,92,46,0,1040,1038,1,0, - 0,0,1040,1039,1,0,0,0,1041,89,1,0,0,0,1042,1043,5,86,0,0,1043,1044, - 5,166,0,0,1044,1045,3,370,185,0,1045,1046,5,193,0,0,1046,1047,5, - 87,0,0,1047,1048,3,370,185,0,1048,91,1,0,0,0,1049,1050,5,86,0,0, - 1050,1051,3,362,181,0,1051,1052,5,136,0,0,1052,1054,3,364,182,0, - 1053,1055,3,366,183,0,1054,1053,1,0,0,0,1054,1055,1,0,0,0,1055,1056, - 1,0,0,0,1056,1057,5,193,0,0,1057,1058,3,368,184,0,1058,93,1,0,0, - 0,1059,1062,3,96,48,0,1060,1062,3,98,49,0,1061,1059,1,0,0,0,1061, - 1060,1,0,0,0,1062,95,1,0,0,0,1063,1064,5,161,0,0,1064,1065,5,166, - 0,0,1065,1066,3,370,185,0,1066,1067,5,82,0,0,1067,1068,5,87,0,0, - 1068,1069,3,370,185,0,1069,97,1,0,0,0,1070,1074,5,161,0,0,1071,1072, - 5,86,0,0,1072,1073,5,137,0,0,1073,1075,5,78,0,0,1074,1071,1,0,0, - 0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076,1077,3,362,181,0,1077, - 1078,5,136,0,0,1078,1080,3,364,182,0,1079,1081,3,366,183,0,1080, - 1079,1,0,0,0,1080,1081,1,0,0,0,1081,1082,1,0,0,0,1082,1088,5,82, - 0,0,1083,1089,3,368,184,0,1084,1086,5,166,0,0,1085,1084,1,0,0,0, - 1085,1086,1,0,0,0,1086,1087,1,0,0,0,1087,1089,3,370,185,0,1088,1083, - 1,0,0,0,1088,1085,1,0,0,0,1089,99,1,0,0,0,1090,1092,3,210,105,0, - 1091,1090,1,0,0,0,1091,1092,1,0,0,0,1092,1093,1,0,0,0,1093,1094, - 5,99,0,0,1094,1096,7,5,0,0,1095,1097,5,188,0,0,1096,1095,1,0,0,0, - 1096,1097,1,0,0,0,1097,1098,1,0,0,0,1098,1100,3,186,93,0,1099,1101, - 3,302,151,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1114,1,0,0, - 0,1102,1103,5,145,0,0,1103,1104,5,265,0,0,1104,1109,3,314,157,0, - 1105,1106,5,263,0,0,1106,1108,3,314,157,0,1107,1105,1,0,0,0,1108, - 1111,1,0,0,0,1109,1107,1,0,0,0,1109,1110,1,0,0,0,1110,1112,1,0,0, - 0,1111,1109,1,0,0,0,1112,1113,5,266,0,0,1113,1115,1,0,0,0,1114,1102, - 1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1117,3,208,104, - 0,1117,101,1,0,0,0,1118,1121,3,104,52,0,1119,1121,3,106,53,0,1120, - 1118,1,0,0,0,1120,1119,1,0,0,0,1121,103,1,0,0,0,1122,1124,5,50,0, - 0,1123,1125,5,82,0,0,1124,1123,1,0,0,0,1124,1125,1,0,0,0,1125,1126, - 1,0,0,0,1126,1128,3,186,93,0,1127,1129,3,274,137,0,1128,1127,1,0, - 0,0,1128,1129,1,0,0,0,1129,105,1,0,0,0,1130,1131,5,50,0,0,1131,1136, - 3,186,93,0,1132,1134,5,9,0,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0, - 1134,1135,1,0,0,0,1135,1137,3,370,185,0,1136,1133,1,0,0,0,1136,1137, - 1,0,0,0,1137,1138,1,0,0,0,1138,1147,5,82,0,0,1139,1144,3,290,145, - 0,1140,1141,5,263,0,0,1141,1143,3,290,145,0,1142,1140,1,0,0,0,1143, - 1146,1,0,0,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145,1148,1,0,0, - 0,1146,1144,1,0,0,0,1147,1139,1,0,0,0,1147,1148,1,0,0,0,1148,1150, - 1,0,0,0,1149,1151,3,274,137,0,1150,1149,1,0,0,0,1150,1151,1,0,0, - 0,1151,107,1,0,0,0,1152,1153,5,54,0,0,1153,1154,3,186,93,0,1154, - 1155,5,176,0,0,1155,1165,3,200,100,0,1156,1157,5,82,0,0,1157,1162, - 3,290,145,0,1158,1159,5,263,0,0,1159,1161,3,290,145,0,1160,1158, - 1,0,0,0,1161,1164,1,0,0,0,1162,1160,1,0,0,0,1162,1163,1,0,0,0,1163, - 1166,1,0,0,0,1164,1162,1,0,0,0,1165,1156,1,0,0,0,1165,1166,1,0,0, - 0,1166,1168,1,0,0,0,1167,1169,3,274,137,0,1168,1167,1,0,0,0,1168, - 1169,1,0,0,0,1169,109,1,0,0,0,1170,1171,5,207,0,0,1171,1173,5,103, - 0,0,1172,1174,5,188,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0,1174, - 1175,1,0,0,0,1175,1177,3,186,93,0,1176,1178,3,302,151,0,1177,1176, - 1,0,0,0,1177,1178,1,0,0,0,1178,1179,1,0,0,0,1179,1180,3,208,104, - 0,1180,111,1,0,0,0,1181,1194,3,132,66,0,1182,1194,3,134,67,0,1183, - 1194,3,136,68,0,1184,1194,3,130,65,0,1185,1194,3,128,64,0,1186,1194, - 3,126,63,0,1187,1194,3,124,62,0,1188,1194,3,122,61,0,1189,1194,3, - 120,60,0,1190,1194,3,118,59,0,1191,1194,3,116,58,0,1192,1194,3,114, - 57,0,1193,1181,1,0,0,0,1193,1182,1,0,0,0,1193,1183,1,0,0,0,1193, - 1184,1,0,0,0,1193,1185,1,0,0,0,1193,1186,1,0,0,0,1193,1187,1,0,0, - 0,1193,1188,1,0,0,0,1193,1189,1,0,0,0,1193,1190,1,0,0,0,1193,1191, - 1,0,0,0,1193,1192,1,0,0,0,1194,113,1,0,0,0,1195,1196,5,179,0,0,1196, - 1208,7,6,0,0,1197,1199,5,115,0,0,1198,1197,1,0,0,0,1198,1199,1,0, - 0,0,1199,1200,1,0,0,0,1200,1205,3,324,162,0,1201,1202,5,271,0,0, - 1202,1204,3,324,162,0,1203,1201,1,0,0,0,1204,1207,1,0,0,0,1205,1203, - 1,0,0,0,1205,1206,1,0,0,0,1206,1209,1,0,0,0,1207,1205,1,0,0,0,1208, - 1198,1,0,0,0,1208,1209,1,0,0,0,1209,115,1,0,0,0,1210,1211,5,179, - 0,0,1211,1214,5,189,0,0,1212,1213,5,94,0,0,1213,1215,3,186,93,0, - 1214,1212,1,0,0,0,1214,1215,1,0,0,0,1215,1227,1,0,0,0,1216,1218, - 5,115,0,0,1217,1216,1,0,0,0,1217,1218,1,0,0,0,1218,1219,1,0,0,0, - 1219,1224,3,324,162,0,1220,1221,5,271,0,0,1221,1223,3,324,162,0, - 1222,1220,1,0,0,0,1223,1226,1,0,0,0,1224,1222,1,0,0,0,1224,1225, - 1,0,0,0,1225,1228,1,0,0,0,1226,1224,1,0,0,0,1227,1217,1,0,0,0,1227, - 1228,1,0,0,0,1228,117,1,0,0,0,1229,1231,5,179,0,0,1230,1232,7,7, - 0,0,1231,1230,1,0,0,0,1231,1232,1,0,0,0,1232,1233,1,0,0,0,1233,1236, - 5,85,0,0,1234,1235,5,94,0,0,1235,1237,3,184,92,0,1236,1234,1,0,0, - 0,1236,1237,1,0,0,0,1237,1249,1,0,0,0,1238,1240,5,115,0,0,1239,1238, - 1,0,0,0,1239,1240,1,0,0,0,1240,1241,1,0,0,0,1241,1246,3,324,162, - 0,1242,1243,5,271,0,0,1243,1245,3,324,162,0,1244,1242,1,0,0,0,1245, - 1248,1,0,0,0,1246,1244,1,0,0,0,1246,1247,1,0,0,0,1247,1250,1,0,0, - 0,1248,1246,1,0,0,0,1249,1239,1,0,0,0,1249,1250,1,0,0,0,1250,119, - 1,0,0,0,1251,1252,5,179,0,0,1252,1253,5,37,0,0,1253,1254,5,188,0, - 0,1254,1255,3,186,93,0,1255,121,1,0,0,0,1256,1257,5,179,0,0,1257, - 1258,5,37,0,0,1258,1259,5,212,0,0,1259,1260,3,188,94,0,1260,123, - 1,0,0,0,1261,1262,5,179,0,0,1262,1263,5,188,0,0,1263,1264,5,182, - 0,0,1264,1265,3,186,93,0,1265,125,1,0,0,0,1266,1267,5,179,0,0,1267, - 1268,5,32,0,0,1268,1269,5,182,0,0,1269,1270,3,186,93,0,1270,127, - 1,0,0,0,1271,1273,5,179,0,0,1272,1274,5,154,0,0,1273,1272,1,0,0, - 0,1273,1274,1,0,0,0,1274,1275,1,0,0,0,1275,1276,5,146,0,0,1276,1277, - 3,186,93,0,1277,129,1,0,0,0,1278,1279,5,179,0,0,1279,1280,5,73,0, - 0,1280,1281,5,94,0,0,1281,1291,3,186,93,0,1282,1283,5,145,0,0,1283, - 1284,5,265,0,0,1284,1287,3,314,157,0,1285,1286,5,263,0,0,1286,1288, - 3,314,157,0,1287,1285,1,0,0,0,1287,1288,1,0,0,0,1288,1289,1,0,0, - 0,1289,1290,5,266,0,0,1290,1292,1,0,0,0,1291,1282,1,0,0,0,1291,1292, - 1,0,0,0,1292,131,1,0,0,0,1293,1295,5,179,0,0,1294,1296,5,39,0,0, - 1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297,1,0,0,0,1297,1298, - 5,167,0,0,1298,133,1,0,0,0,1299,1300,5,179,0,0,1300,1301,5,166,0, - 0,1301,1302,5,86,0,0,1302,1303,5,87,0,0,1303,1304,3,370,185,0,1304, - 135,1,0,0,0,1305,1320,3,138,69,0,1306,1320,3,140,70,0,1307,1320, - 3,142,71,0,1308,1309,5,179,0,0,1309,1310,5,86,0,0,1310,1311,7,8, - 0,0,1311,1317,3,370,185,0,1312,1313,5,136,0,0,1313,1315,7,9,0,0, - 1314,1316,3,366,183,0,1315,1314,1,0,0,0,1315,1316,1,0,0,0,1316,1318, - 1,0,0,0,1317,1312,1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0,0,1319, - 1305,1,0,0,0,1319,1306,1,0,0,0,1319,1307,1,0,0,0,1319,1308,1,0,0, - 0,1320,137,1,0,0,0,1321,1322,5,179,0,0,1322,1323,5,86,0,0,1323,1324, - 7,8,0,0,1324,1330,3,370,185,0,1325,1326,5,136,0,0,1326,1328,5,46, - 0,0,1327,1329,3,184,92,0,1328,1327,1,0,0,0,1328,1329,1,0,0,0,1329, - 1331,1,0,0,0,1330,1325,1,0,0,0,1330,1331,1,0,0,0,1331,139,1,0,0, - 0,1332,1333,5,179,0,0,1333,1334,5,86,0,0,1334,1335,7,8,0,0,1335, - 1341,3,370,185,0,1336,1337,5,136,0,0,1337,1339,5,188,0,0,1338,1340, - 3,186,93,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1342,1,0,0,0, - 1341,1336,1,0,0,0,1341,1342,1,0,0,0,1342,141,1,0,0,0,1343,1344,5, - 179,0,0,1344,1345,5,86,0,0,1345,1346,7,8,0,0,1346,1352,3,370,185, - 0,1347,1348,5,136,0,0,1348,1350,5,32,0,0,1349,1351,3,192,96,0,1350, - 1349,1,0,0,0,1350,1351,1,0,0,0,1351,1353,1,0,0,0,1352,1347,1,0,0, - 0,1352,1353,1,0,0,0,1353,143,1,0,0,0,1354,1358,3,146,73,0,1355,1358, - 3,148,74,0,1356,1358,3,150,75,0,1357,1354,1,0,0,0,1357,1355,1,0, - 0,0,1357,1356,1,0,0,0,1358,145,1,0,0,0,1359,1360,5,34,0,0,1360,1361, - 5,136,0,0,1361,1362,5,46,0,0,1362,1363,3,184,92,0,1363,1366,5,108, - 0,0,1364,1367,3,324,162,0,1365,1367,5,133,0,0,1366,1364,1,0,0,0, - 1366,1365,1,0,0,0,1367,147,1,0,0,0,1368,1369,5,34,0,0,1369,1370, - 5,136,0,0,1370,1371,5,188,0,0,1371,1372,3,186,93,0,1372,1375,5,108, - 0,0,1373,1376,3,324,162,0,1374,1376,5,133,0,0,1375,1373,1,0,0,0, - 1375,1374,1,0,0,0,1376,149,1,0,0,0,1377,1378,5,34,0,0,1378,1379, - 5,136,0,0,1379,1380,5,32,0,0,1380,1381,3,192,96,0,1381,1384,5,108, - 0,0,1382,1385,3,324,162,0,1383,1385,5,133,0,0,1384,1382,1,0,0,0, - 1384,1383,1,0,0,0,1385,151,1,0,0,0,1386,1387,5,67,0,0,1387,1388, - 3,4,2,0,1388,153,1,0,0,0,1389,1395,5,176,0,0,1390,1396,5,2,0,0,1391, - 1392,3,370,185,0,1392,1393,5,249,0,0,1393,1394,3,314,157,0,1394, - 1396,1,0,0,0,1395,1390,1,0,0,0,1395,1391,1,0,0,0,1395,1396,1,0,0, - 0,1396,155,1,0,0,0,1397,1398,5,264,0,0,1398,1399,5,180,0,0,1399, - 1409,5,265,0,0,1400,1402,3,324,162,0,1401,1400,1,0,0,0,1401,1402, - 1,0,0,0,1402,1410,1,0,0,0,1403,1406,3,324,162,0,1404,1405,5,263, - 0,0,1405,1407,3,314,157,0,1406,1404,1,0,0,0,1406,1407,1,0,0,0,1407, - 1410,1,0,0,0,1408,1410,3,314,157,0,1409,1401,1,0,0,0,1409,1403,1, - 0,0,0,1409,1408,1,0,0,0,1410,1411,1,0,0,0,1411,1412,5,266,0,0,1412, - 157,1,0,0,0,1413,1414,5,107,0,0,1414,1415,5,121,0,0,1415,1416,3, - 186,93,0,1416,159,1,0,0,0,1417,1418,5,118,0,0,1418,1419,5,45,0,0, - 1419,1420,5,98,0,0,1420,1422,5,274,0,0,1421,1423,5,144,0,0,1422, - 1421,1,0,0,0,1422,1423,1,0,0,0,1423,1424,1,0,0,0,1424,1425,5,103, - 0,0,1425,1426,5,188,0,0,1426,1436,3,186,93,0,1427,1428,5,145,0,0, - 1428,1429,5,265,0,0,1429,1432,3,314,157,0,1430,1431,5,263,0,0,1431, - 1433,3,314,157,0,1432,1430,1,0,0,0,1432,1433,1,0,0,0,1433,1434,1, - 0,0,0,1434,1435,5,266,0,0,1435,1437,1,0,0,0,1436,1427,1,0,0,0,1436, - 1437,1,0,0,0,1437,161,1,0,0,0,1438,1442,3,164,82,0,1439,1442,3,166, - 83,0,1440,1442,3,168,84,0,1441,1438,1,0,0,0,1441,1439,1,0,0,0,1441, - 1440,1,0,0,0,1442,163,1,0,0,0,1443,1444,5,162,0,0,1444,1457,3,186, - 93,0,1445,1446,5,145,0,0,1446,1447,5,265,0,0,1447,1452,3,314,157, - 0,1448,1449,5,263,0,0,1449,1451,3,314,157,0,1450,1448,1,0,0,0,1451, - 1454,1,0,0,0,1452,1453,1,0,0,0,1452,1450,1,0,0,0,1453,1455,1,0,0, - 0,1454,1452,1,0,0,0,1455,1456,5,266,0,0,1456,1458,1,0,0,0,1457,1445, - 1,0,0,0,1457,1458,1,0,0,0,1458,165,1,0,0,0,1459,1460,5,162,0,0,1460, - 1461,5,13,0,0,1461,167,1,0,0,0,1462,1463,5,162,0,0,1463,1464,5,85, - 0,0,1464,1465,3,190,95,0,1465,169,1,0,0,0,1466,1467,5,93,0,0,1467, - 1468,5,66,0,0,1468,171,1,0,0,0,1469,1470,5,93,0,0,1470,1471,5,132, - 0,0,1471,1472,5,66,0,0,1472,173,1,0,0,0,1473,1474,3,366,183,0,1474, - 175,1,0,0,0,1475,1476,3,366,183,0,1476,177,1,0,0,0,1477,1478,3,366, - 183,0,1478,179,1,0,0,0,1479,1480,3,366,183,0,1480,181,1,0,0,0,1481, - 1482,3,366,183,0,1482,183,1,0,0,0,1483,1484,3,366,183,0,1484,185, - 1,0,0,0,1485,1490,3,370,185,0,1486,1487,5,261,0,0,1487,1489,3,370, - 185,0,1488,1486,1,0,0,0,1489,1492,1,0,0,0,1490,1488,1,0,0,0,1490, - 1491,1,0,0,0,1491,187,1,0,0,0,1492,1490,1,0,0,0,1493,1498,3,370, - 185,0,1494,1495,5,261,0,0,1495,1497,3,370,185,0,1496,1494,1,0,0, - 0,1497,1500,1,0,0,0,1498,1496,1,0,0,0,1498,1499,1,0,0,0,1499,189, - 1,0,0,0,1500,1498,1,0,0,0,1501,1504,3,374,187,0,1502,1504,3,366, - 183,0,1503,1501,1,0,0,0,1503,1502,1,0,0,0,1504,191,1,0,0,0,1505, - 1508,3,366,183,0,1506,1508,4,96,0,0,1507,1505,1,0,0,0,1507,1506, - 1,0,0,0,1508,193,1,0,0,0,1509,1510,3,366,183,0,1510,195,1,0,0,0, - 1511,1514,3,186,93,0,1512,1514,3,188,94,0,1513,1511,1,0,0,0,1513, - 1512,1,0,0,0,1514,197,1,0,0,0,1515,1516,5,21,0,0,1516,1517,5,26, - 0,0,1517,1519,3,302,151,0,1518,1515,1,0,0,0,1518,1519,1,0,0,0,1519, - 1521,1,0,0,0,1520,1522,3,224,112,0,1521,1520,1,0,0,0,1521,1522,1, - 0,0,0,1522,1526,1,0,0,0,1523,1524,5,168,0,0,1524,1525,5,79,0,0,1525, - 1527,3,260,130,0,1526,1523,1,0,0,0,1526,1527,1,0,0,0,1527,1531,1, - 0,0,0,1528,1529,5,216,0,0,1529,1530,5,175,0,0,1530,1532,3,254,127, - 0,1531,1528,1,0,0,0,1531,1532,1,0,0,0,1532,1536,1,0,0,0,1533,1534, - 5,23,0,0,1534,1535,5,9,0,0,1535,1537,3,236,118,0,1536,1533,1,0,0, - 0,1536,1537,1,0,0,0,1537,1540,1,0,0,0,1538,1539,5,24,0,0,1539,1541, - 3,324,162,0,1540,1538,1,0,0,0,1540,1541,1,0,0,0,1541,1552,1,0,0, - 0,1542,1543,5,30,0,0,1543,1544,5,94,0,0,1544,1549,3,366,183,0,1545, - 1546,5,216,0,0,1546,1547,5,151,0,0,1547,1548,5,249,0,0,1548,1550, - 5,277,0,0,1549,1545,1,0,0,0,1549,1550,1,0,0,0,1550,1553,1,0,0,0, - 1551,1553,5,197,0,0,1552,1542,1,0,0,0,1552,1551,1,0,0,0,1552,1553, - 1,0,0,0,1553,1556,1,0,0,0,1554,1555,5,25,0,0,1555,1557,3,254,127, - 0,1556,1554,1,0,0,0,1556,1557,1,0,0,0,1557,199,1,0,0,0,1558,1563, - 3,202,101,0,1559,1560,5,263,0,0,1560,1562,3,202,101,0,1561,1559, - 1,0,0,0,1562,1565,1,0,0,0,1563,1561,1,0,0,0,1563,1564,1,0,0,0,1564, - 201,1,0,0,0,1565,1563,1,0,0,0,1566,1567,3,366,183,0,1567,1568,5, - 249,0,0,1568,1569,3,314,157,0,1569,203,1,0,0,0,1570,1572,5,265,0, - 0,1571,1573,3,206,103,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573, - 1580,1,0,0,0,1574,1576,5,263,0,0,1575,1577,3,206,103,0,1576,1575, - 1,0,0,0,1576,1577,1,0,0,0,1577,1579,1,0,0,0,1578,1574,1,0,0,0,1579, - 1582,1,0,0,0,1580,1578,1,0,0,0,1580,1581,1,0,0,0,1581,1583,1,0,0, - 0,1582,1580,1,0,0,0,1583,1584,5,266,0,0,1584,205,1,0,0,0,1585,1587, - 3,182,91,0,1586,1588,3,224,112,0,1587,1586,1,0,0,0,1587,1588,1,0, - 0,0,1588,207,1,0,0,0,1589,1591,3,210,105,0,1590,1589,1,0,0,0,1590, - 1591,1,0,0,0,1591,1592,1,0,0,0,1592,1593,3,264,132,0,1593,209,1, - 0,0,0,1594,1595,5,216,0,0,1595,1600,3,284,142,0,1596,1597,5,263, - 0,0,1597,1599,3,284,142,0,1598,1596,1,0,0,0,1599,1602,1,0,0,0,1600, - 1598,1,0,0,0,1600,1601,1,0,0,0,1601,211,1,0,0,0,1602,1600,1,0,0, - 0,1603,1604,5,150,0,0,1604,1605,5,110,0,0,1605,1607,3,302,151,0, - 1606,1608,5,53,0,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608,1612, - 1,0,0,0,1609,1613,5,225,0,0,1610,1611,5,263,0,0,1611,1613,5,225, - 0,0,1612,1609,1,0,0,0,1612,1610,1,0,0,0,1612,1613,1,0,0,0,1613,1617, - 1,0,0,0,1614,1618,5,226,0,0,1615,1616,5,263,0,0,1616,1618,5,226, - 0,0,1617,1614,1,0,0,0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,1631, - 1,0,0,0,1619,1620,5,263,0,0,1620,1623,3,214,107,0,1621,1623,3,214, - 107,0,1622,1619,1,0,0,0,1622,1621,1,0,0,0,1623,1628,1,0,0,0,1624, - 1625,5,263,0,0,1625,1627,3,214,107,0,1626,1624,1,0,0,0,1627,1630, - 1,0,0,0,1628,1629,1,0,0,0,1628,1626,1,0,0,0,1629,1632,1,0,0,0,1630, - 1628,1,0,0,0,1631,1622,1,0,0,0,1631,1632,1,0,0,0,1632,213,1,0,0, - 0,1633,1634,5,81,0,0,1634,1635,5,110,0,0,1635,1636,3,302,151,0,1636, - 1637,5,224,0,0,1637,1638,3,186,93,0,1638,1640,3,302,151,0,1639,1641, - 5,53,0,0,1640,1639,1,0,0,0,1640,1641,1,0,0,0,1641,1643,1,0,0,0,1642, - 1644,5,225,0,0,1643,1642,1,0,0,0,1643,1644,1,0,0,0,1644,1646,1,0, - 0,0,1645,1647,5,226,0,0,1646,1645,1,0,0,0,1646,1647,1,0,0,0,1647, - 215,1,0,0,0,1648,1649,3,192,96,0,1649,1652,3,338,169,0,1650,1651, - 5,34,0,0,1651,1653,3,324,162,0,1652,1650,1,0,0,0,1652,1653,1,0,0, - 0,1653,217,1,0,0,0,1654,1655,3,182,91,0,1655,1657,3,338,169,0,1656, - 1658,3,224,112,0,1657,1656,1,0,0,0,1657,1658,1,0,0,0,1658,219,1, - 0,0,0,1659,1660,3,222,111,0,1660,221,1,0,0,0,1661,1662,3,182,91, - 0,1662,1670,3,338,169,0,1663,1667,3,230,115,0,1664,1666,3,230,115, - 0,1665,1664,1,0,0,0,1666,1669,1,0,0,0,1667,1668,1,0,0,0,1667,1665, - 1,0,0,0,1668,1671,1,0,0,0,1669,1667,1,0,0,0,1670,1663,1,0,0,0,1670, - 1671,1,0,0,0,1671,1673,1,0,0,0,1672,1674,3,224,112,0,1673,1672,1, - 0,0,0,1673,1674,1,0,0,0,1674,1677,1,0,0,0,1675,1676,5,150,0,0,1676, - 1678,5,110,0,0,1677,1675,1,0,0,0,1677,1678,1,0,0,0,1678,223,1,0, - 0,0,1679,1680,5,34,0,0,1680,1681,3,324,162,0,1681,225,1,0,0,0,1682, - 1690,3,216,108,0,1683,1687,3,230,115,0,1684,1686,3,230,115,0,1685, - 1684,1,0,0,0,1686,1689,1,0,0,0,1687,1688,1,0,0,0,1687,1685,1,0,0, - 0,1688,1691,1,0,0,0,1689,1687,1,0,0,0,1690,1683,1,0,0,0,1690,1691, - 1,0,0,0,1691,227,1,0,0,0,1692,1693,3,182,91,0,1693,1696,3,338,169, - 0,1694,1695,5,34,0,0,1695,1697,3,324,162,0,1696,1694,1,0,0,0,1696, - 1697,1,0,0,0,1697,1705,1,0,0,0,1698,1702,3,230,115,0,1699,1701,3, - 230,115,0,1700,1699,1,0,0,0,1701,1704,1,0,0,0,1702,1703,1,0,0,0, - 1702,1700,1,0,0,0,1703,1706,1,0,0,0,1704,1702,1,0,0,0,1705,1698, - 1,0,0,0,1705,1706,1,0,0,0,1706,229,1,0,0,0,1707,1709,5,132,0,0,1708, - 1707,1,0,0,0,1708,1709,1,0,0,0,1709,1710,1,0,0,0,1710,1713,5,133, - 0,0,1711,1713,3,232,116,0,1712,1708,1,0,0,0,1712,1711,1,0,0,0,1713, - 231,1,0,0,0,1714,1715,5,60,0,0,1715,1723,3,314,157,0,1716,1717,5, - 35,0,0,1717,1723,3,314,157,0,1718,1719,5,51,0,0,1719,1723,3,314, - 157,0,1720,1721,5,16,0,0,1721,1723,3,372,186,0,1722,1714,1,0,0,0, - 1722,1716,1,0,0,0,1722,1718,1,0,0,0,1722,1720,1,0,0,0,1723,233,1, - 0,0,0,1724,1725,7,10,0,0,1725,235,1,0,0,0,1726,1727,7,11,0,0,1727, - 237,1,0,0,0,1728,1733,3,240,120,0,1729,1730,5,263,0,0,1730,1732, - 3,240,120,0,1731,1729,1,0,0,0,1732,1735,1,0,0,0,1733,1734,1,0,0, - 0,1733,1731,1,0,0,0,1734,1738,1,0,0,0,1735,1733,1,0,0,0,1736,1737, - 5,263,0,0,1737,1739,3,242,121,0,1738,1736,1,0,0,0,1738,1739,1,0, - 0,0,1739,1742,1,0,0,0,1740,1742,3,242,121,0,1741,1728,1,0,0,0,1741, - 1740,1,0,0,0,1742,239,1,0,0,0,1743,1745,5,89,0,0,1744,1746,3,302, - 151,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747, - 1748,5,146,0,0,1748,1749,3,372,186,0,1749,241,1,0,0,0,1750,1752, - 5,154,0,0,1751,1753,3,302,151,0,1752,1751,1,0,0,0,1752,1753,1,0, - 0,0,1753,1754,1,0,0,0,1754,1755,5,265,0,0,1755,1756,5,145,0,0,1756, - 1762,3,244,122,0,1757,1758,5,263,0,0,1758,1759,5,145,0,0,1759,1761, - 3,244,122,0,1760,1757,1,0,0,0,1761,1764,1,0,0,0,1762,1763,1,0,0, - 0,1762,1760,1,0,0,0,1763,1765,1,0,0,0,1764,1762,1,0,0,0,1765,1766, - 5,266,0,0,1766,243,1,0,0,0,1767,1768,5,210,0,0,1768,1769,3,250,125, - 0,1769,1770,3,314,157,0,1770,1783,1,0,0,0,1771,1772,3,314,157,0, - 1772,1773,3,248,124,0,1773,1775,1,0,0,0,1774,1771,1,0,0,0,1774,1775, - 1,0,0,0,1775,1776,1,0,0,0,1776,1780,5,211,0,0,1777,1778,3,248,124, - 0,1778,1779,3,314,157,0,1779,1781,1,0,0,0,1780,1777,1,0,0,0,1780, - 1781,1,0,0,0,1781,1783,1,0,0,0,1782,1767,1,0,0,0,1782,1774,1,0,0, - 0,1783,245,1,0,0,0,1784,1785,5,30,0,0,1785,1786,5,94,0,0,1786,1791, - 3,370,185,0,1787,1788,5,216,0,0,1788,1789,5,151,0,0,1789,1790,5, - 249,0,0,1790,1792,3,372,186,0,1791,1787,1,0,0,0,1791,1792,1,0,0, - 0,1792,1795,1,0,0,0,1793,1795,5,197,0,0,1794,1784,1,0,0,0,1794,1793, - 1,0,0,0,1795,247,1,0,0,0,1796,1802,1,0,0,0,1797,1802,5,251,0,0,1798, - 1802,5,252,0,0,1799,1802,5,253,0,0,1800,1802,5,254,0,0,1801,1796, - 1,0,0,0,1801,1797,1,0,0,0,1801,1798,1,0,0,0,1801,1799,1,0,0,0,1801, - 1800,1,0,0,0,1802,249,1,0,0,0,1803,1812,5,249,0,0,1804,1812,5,250, - 0,0,1805,1812,5,115,0,0,1806,1812,5,164,0,0,1807,1812,5,163,0,0, - 1808,1812,5,15,0,0,1809,1812,5,94,0,0,1810,1812,3,248,124,0,1811, - 1803,1,0,0,0,1811,1804,1,0,0,0,1811,1805,1,0,0,0,1811,1806,1,0,0, - 0,1811,1807,1,0,0,0,1811,1808,1,0,0,0,1811,1809,1,0,0,0,1811,1810, - 1,0,0,0,1812,251,1,0,0,0,1813,1814,5,115,0,0,1814,1817,3,366,183, - 0,1815,1816,7,12,0,0,1816,1818,5,153,0,0,1817,1815,1,0,0,0,1817, - 1818,1,0,0,0,1818,253,1,0,0,0,1819,1820,5,265,0,0,1820,1825,3,262, - 131,0,1821,1822,5,263,0,0,1822,1824,3,262,131,0,1823,1821,1,0,0, - 0,1824,1827,1,0,0,0,1825,1823,1,0,0,0,1825,1826,1,0,0,0,1826,1828, - 1,0,0,0,1827,1825,1,0,0,0,1828,1829,5,266,0,0,1829,255,1,0,0,0,1830, - 1831,5,265,0,0,1831,1836,3,216,108,0,1832,1833,5,263,0,0,1833,1835, - 3,216,108,0,1834,1832,1,0,0,0,1835,1838,1,0,0,0,1836,1837,1,0,0, - 0,1836,1834,1,0,0,0,1837,1839,1,0,0,0,1838,1836,1,0,0,0,1839,1840, - 5,266,0,0,1840,257,1,0,0,0,1841,1846,3,314,157,0,1842,1843,5,263, - 0,0,1843,1845,3,314,157,0,1844,1842,1,0,0,0,1845,1848,1,0,0,0,1846, - 1844,1,0,0,0,1846,1847,1,0,0,0,1847,259,1,0,0,0,1848,1846,1,0,0, - 0,1849,1859,5,52,0,0,1850,1851,5,71,0,0,1851,1852,5,191,0,0,1852, - 1853,5,26,0,0,1853,1857,3,324,162,0,1854,1855,5,63,0,0,1855,1856, - 5,26,0,0,1856,1858,3,324,162,0,1857,1854,1,0,0,0,1857,1858,1,0,0, - 0,1858,1860,1,0,0,0,1859,1850,1,0,0,0,1859,1860,1,0,0,0,1860,1865, - 1,0,0,0,1861,1862,5,117,0,0,1862,1863,5,191,0,0,1863,1864,5,26,0, - 0,1864,1866,3,324,162,0,1865,1861,1,0,0,0,1865,1866,1,0,0,0,1866, - 261,1,0,0,0,1867,1870,3,370,185,0,1868,1869,5,249,0,0,1869,1871, - 3,314,157,0,1870,1868,1,0,0,0,1870,1871,1,0,0,0,1871,263,1,0,0,0, - 1872,1883,3,266,133,0,1873,1874,5,139,0,0,1874,1875,5,26,0,0,1875, - 1880,3,270,135,0,1876,1877,5,263,0,0,1877,1879,3,270,135,0,1878, - 1876,1,0,0,0,1879,1882,1,0,0,0,1880,1878,1,0,0,0,1880,1881,1,0,0, - 0,1881,1884,1,0,0,0,1882,1880,1,0,0,0,1883,1873,1,0,0,0,1883,1884, - 1,0,0,0,1884,1891,1,0,0,0,1885,1886,5,116,0,0,1886,1889,3,314,157, - 0,1887,1888,5,135,0,0,1888,1890,5,277,0,0,1889,1887,1,0,0,0,1889, - 1890,1,0,0,0,1890,1892,1,0,0,0,1891,1885,1,0,0,0,1891,1892,1,0,0, - 0,1892,265,1,0,0,0,1893,1894,6,133,-1,0,1894,1895,3,268,134,0,1895, - 1910,1,0,0,0,1896,1897,10,2,0,0,1897,1899,5,100,0,0,1898,1900,3, - 286,143,0,1899,1898,1,0,0,0,1899,1900,1,0,0,0,1900,1901,1,0,0,0, - 1901,1909,3,266,133,3,1902,1903,10,1,0,0,1903,1905,7,13,0,0,1904, - 1906,3,286,143,0,1905,1904,1,0,0,0,1905,1906,1,0,0,0,1906,1907,1, - 0,0,0,1907,1909,3,266,133,2,1908,1896,1,0,0,0,1908,1902,1,0,0,0, - 1909,1912,1,0,0,0,1910,1908,1,0,0,0,1910,1911,1,0,0,0,1911,267,1, - 0,0,0,1912,1910,1,0,0,0,1913,1930,3,272,136,0,1914,1915,5,188,0, - 0,1915,1930,3,186,93,0,1916,1917,5,211,0,0,1917,1922,3,314,157,0, - 1918,1919,5,263,0,0,1919,1921,3,314,157,0,1920,1918,1,0,0,0,1921, - 1924,1,0,0,0,1922,1920,1,0,0,0,1922,1923,1,0,0,0,1923,1930,1,0,0, - 0,1924,1922,1,0,0,0,1925,1926,5,265,0,0,1926,1927,3,264,132,0,1927, - 1928,5,266,0,0,1928,1930,1,0,0,0,1929,1913,1,0,0,0,1929,1914,1,0, - 0,0,1929,1916,1,0,0,0,1929,1925,1,0,0,0,1930,269,1,0,0,0,1931,1933, - 3,312,156,0,1932,1934,7,14,0,0,1933,1932,1,0,0,0,1933,1934,1,0,0, - 0,1934,1937,1,0,0,0,1935,1936,5,134,0,0,1936,1938,7,15,0,0,1937, - 1935,1,0,0,0,1937,1938,1,0,0,0,1938,271,1,0,0,0,1939,1941,5,174, - 0,0,1940,1942,3,286,143,0,1941,1940,1,0,0,0,1941,1942,1,0,0,0,1942, - 1944,1,0,0,0,1943,1945,5,183,0,0,1944,1943,1,0,0,0,1944,1945,1,0, - 0,0,1945,1946,1,0,0,0,1946,1951,3,288,144,0,1947,1948,5,263,0,0, - 1948,1950,3,288,144,0,1949,1947,1,0,0,0,1950,1953,1,0,0,0,1951,1949, - 1,0,0,0,1951,1952,1,0,0,0,1952,1963,1,0,0,0,1953,1951,1,0,0,0,1954, - 1955,5,82,0,0,1955,1960,3,290,145,0,1956,1957,5,263,0,0,1957,1959, - 3,290,145,0,1958,1956,1,0,0,0,1959,1962,1,0,0,0,1960,1958,1,0,0, - 0,1960,1961,1,0,0,0,1961,1964,1,0,0,0,1962,1960,1,0,0,0,1963,1954, - 1,0,0,0,1963,1964,1,0,0,0,1964,1966,1,0,0,0,1965,1967,3,274,137, - 0,1966,1965,1,0,0,0,1966,1967,1,0,0,0,1967,1971,1,0,0,0,1968,1969, - 5,87,0,0,1969,1970,5,26,0,0,1970,1972,3,278,139,0,1971,1968,1,0, - 0,0,1971,1972,1,0,0,0,1972,1974,1,0,0,0,1973,1975,3,276,138,0,1974, - 1973,1,0,0,0,1974,1975,1,0,0,0,1975,273,1,0,0,0,1976,1977,5,215, - 0,0,1977,1978,3,316,158,0,1978,275,1,0,0,0,1979,1980,5,90,0,0,1980, - 1981,3,316,158,0,1981,277,1,0,0,0,1982,1984,3,286,143,0,1983,1982, - 1,0,0,0,1983,1984,1,0,0,0,1984,1985,1,0,0,0,1985,1990,3,280,140, - 0,1986,1987,5,263,0,0,1987,1989,3,280,140,0,1988,1986,1,0,0,0,1989, - 1992,1,0,0,0,1990,1988,1,0,0,0,1990,1991,1,0,0,0,1991,279,1,0,0, - 0,1992,1990,1,0,0,0,1993,1994,3,282,141,0,1994,281,1,0,0,0,1995, - 2004,5,265,0,0,1996,2001,3,312,156,0,1997,1998,5,263,0,0,1998,2000, - 3,312,156,0,1999,1997,1,0,0,0,2000,2003,1,0,0,0,2001,1999,1,0,0, - 0,2001,2002,1,0,0,0,2002,2005,1,0,0,0,2003,2001,1,0,0,0,2004,1996, - 1,0,0,0,2004,2005,1,0,0,0,2005,2006,1,0,0,0,2006,2009,5,266,0,0, - 2007,2009,3,312,156,0,2008,1995,1,0,0,0,2008,2007,1,0,0,0,2009,283, - 1,0,0,0,2010,2012,3,370,185,0,2011,2013,3,302,151,0,2012,2011,1, - 0,0,0,2012,2013,1,0,0,0,2013,2014,1,0,0,0,2014,2015,5,9,0,0,2015, - 2016,3,306,153,0,2016,285,1,0,0,0,2017,2018,7,16,0,0,2018,287,1, - 0,0,0,2019,2024,3,312,156,0,2020,2022,5,9,0,0,2021,2020,1,0,0,0, - 2021,2022,1,0,0,0,2022,2023,1,0,0,0,2023,2025,3,370,185,0,2024,2021, - 1,0,0,0,2024,2025,1,0,0,0,2025,2032,1,0,0,0,2026,2027,3,366,183, - 0,2027,2028,5,261,0,0,2028,2029,5,257,0,0,2029,2032,1,0,0,0,2030, - 2032,5,257,0,0,2031,2019,1,0,0,0,2031,2026,1,0,0,0,2031,2030,1,0, - 0,0,2032,289,1,0,0,0,2033,2034,6,145,-1,0,2034,2035,3,296,148,0, - 2035,2049,1,0,0,0,2036,2045,10,2,0,0,2037,2038,5,38,0,0,2038,2039, - 5,109,0,0,2039,2046,3,296,148,0,2040,2041,3,292,146,0,2041,2042, - 5,109,0,0,2042,2043,3,290,145,0,2043,2044,3,294,147,0,2044,2046, - 1,0,0,0,2045,2037,1,0,0,0,2045,2040,1,0,0,0,2046,2048,1,0,0,0,2047, - 2036,1,0,0,0,2048,2051,1,0,0,0,2049,2047,1,0,0,0,2049,2050,1,0,0, - 0,2050,291,1,0,0,0,2051,2049,1,0,0,0,2052,2054,5,97,0,0,2053,2052, - 1,0,0,0,2053,2054,1,0,0,0,2054,2084,1,0,0,0,2055,2057,5,114,0,0, - 2056,2058,5,97,0,0,2057,2056,1,0,0,0,2057,2058,1,0,0,0,2058,2084, - 1,0,0,0,2059,2061,5,165,0,0,2060,2062,5,97,0,0,2061,2060,1,0,0,0, - 2061,2062,1,0,0,0,2062,2084,1,0,0,0,2063,2065,5,114,0,0,2064,2066, - 5,141,0,0,2065,2064,1,0,0,0,2065,2066,1,0,0,0,2066,2084,1,0,0,0, - 2067,2069,5,165,0,0,2068,2070,5,141,0,0,2069,2068,1,0,0,0,2069,2070, - 1,0,0,0,2070,2084,1,0,0,0,2071,2073,5,83,0,0,2072,2074,5,141,0,0, - 2073,2072,1,0,0,0,2073,2074,1,0,0,0,2074,2084,1,0,0,0,2075,2076, - 5,114,0,0,2076,2084,5,177,0,0,2077,2078,5,165,0,0,2078,2084,5,177, - 0,0,2079,2080,5,114,0,0,2080,2084,5,7,0,0,2081,2082,5,165,0,0,2082, - 2084,5,7,0,0,2083,2053,1,0,0,0,2083,2055,1,0,0,0,2083,2059,1,0,0, - 0,2083,2063,1,0,0,0,2083,2067,1,0,0,0,2083,2071,1,0,0,0,2083,2075, - 1,0,0,0,2083,2077,1,0,0,0,2083,2079,1,0,0,0,2083,2081,1,0,0,0,2084, - 293,1,0,0,0,2085,2086,5,136,0,0,2086,2100,3,316,158,0,2087,2088, - 5,205,0,0,2088,2089,5,265,0,0,2089,2094,3,370,185,0,2090,2091,5, - 263,0,0,2091,2093,3,370,185,0,2092,2090,1,0,0,0,2093,2096,1,0,0, - 0,2094,2092,1,0,0,0,2094,2095,1,0,0,0,2095,2097,1,0,0,0,2096,2094, - 1,0,0,0,2097,2098,5,266,0,0,2098,2100,1,0,0,0,2099,2085,1,0,0,0, - 2099,2087,1,0,0,0,2100,295,1,0,0,0,2101,2114,3,300,150,0,2102,2103, - 5,190,0,0,2103,2104,3,298,149,0,2104,2105,5,265,0,0,2105,2106,3, - 314,157,0,2106,2112,5,266,0,0,2107,2108,5,157,0,0,2108,2109,5,265, - 0,0,2109,2110,3,314,157,0,2110,2111,5,266,0,0,2111,2113,1,0,0,0, - 2112,2107,1,0,0,0,2112,2113,1,0,0,0,2113,2115,1,0,0,0,2114,2102, - 1,0,0,0,2114,2115,1,0,0,0,2115,297,1,0,0,0,2116,2117,7,17,0,0,2117, - 299,1,0,0,0,2118,2126,3,304,152,0,2119,2121,5,9,0,0,2120,2119,1, - 0,0,0,2120,2121,1,0,0,0,2121,2122,1,0,0,0,2122,2124,3,370,185,0, - 2123,2125,3,302,151,0,2124,2123,1,0,0,0,2124,2125,1,0,0,0,2125,2127, - 1,0,0,0,2126,2120,1,0,0,0,2126,2127,1,0,0,0,2127,301,1,0,0,0,2128, - 2129,5,265,0,0,2129,2134,3,192,96,0,2130,2131,5,263,0,0,2131,2133, - 3,192,96,0,2132,2130,1,0,0,0,2133,2136,1,0,0,0,2134,2132,1,0,0,0, - 2134,2135,1,0,0,0,2135,2137,1,0,0,0,2136,2134,1,0,0,0,2137,2138, - 5,266,0,0,2138,303,1,0,0,0,2139,2147,3,196,98,0,2140,2142,5,113, - 0,0,2141,2140,1,0,0,0,2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2147, - 3,306,153,0,2144,2147,3,308,154,0,2145,2147,3,310,155,0,2146,2139, - 1,0,0,0,2146,2141,1,0,0,0,2146,2144,1,0,0,0,2146,2145,1,0,0,0,2147, - 305,1,0,0,0,2148,2149,5,265,0,0,2149,2150,3,208,104,0,2150,2151, - 5,266,0,0,2151,307,1,0,0,0,2152,2153,5,201,0,0,2153,2154,5,265,0, - 0,2154,2159,3,314,157,0,2155,2156,5,263,0,0,2156,2158,3,314,157, - 0,2157,2155,1,0,0,0,2158,2161,1,0,0,0,2159,2157,1,0,0,0,2159,2160, - 1,0,0,0,2160,2162,1,0,0,0,2161,2159,1,0,0,0,2162,2165,5,266,0,0, - 2163,2164,5,216,0,0,2164,2166,5,140,0,0,2165,2163,1,0,0,0,2165,2166, - 1,0,0,0,2166,309,1,0,0,0,2167,2168,5,265,0,0,2168,2169,3,290,145, - 0,2169,2170,5,266,0,0,2170,311,1,0,0,0,2171,2174,3,192,96,0,2172, - 2174,3,314,157,0,2173,2171,1,0,0,0,2173,2172,1,0,0,0,2174,313,1, - 0,0,0,2175,2176,3,316,158,0,2176,315,1,0,0,0,2177,2178,6,158,-1, - 0,2178,2180,3,320,160,0,2179,2181,3,318,159,0,2180,2179,1,0,0,0, - 2180,2181,1,0,0,0,2181,2185,1,0,0,0,2182,2183,5,132,0,0,2183,2185, - 3,316,158,3,2184,2177,1,0,0,0,2184,2182,1,0,0,0,2185,2194,1,0,0, - 0,2186,2187,10,2,0,0,2187,2188,5,5,0,0,2188,2193,3,316,158,3,2189, - 2190,10,1,0,0,2190,2191,5,138,0,0,2191,2193,3,316,158,2,2192,2186, - 1,0,0,0,2192,2189,1,0,0,0,2193,2196,1,0,0,0,2194,2192,1,0,0,0,2194, - 2195,1,0,0,0,2195,317,1,0,0,0,2196,2194,1,0,0,0,2197,2198,3,326, - 163,0,2198,2199,3,320,160,0,2199,2256,1,0,0,0,2200,2201,3,326,163, - 0,2201,2202,3,328,164,0,2202,2203,3,306,153,0,2203,2256,1,0,0,0, - 2204,2206,5,132,0,0,2205,2204,1,0,0,0,2205,2206,1,0,0,0,2206,2207, - 1,0,0,0,2207,2208,5,15,0,0,2208,2209,3,320,160,0,2209,2210,5,5,0, - 0,2210,2211,3,320,160,0,2211,2256,1,0,0,0,2212,2214,5,132,0,0,2213, - 2212,1,0,0,0,2213,2214,1,0,0,0,2214,2215,1,0,0,0,2215,2216,5,94, - 0,0,2216,2217,5,265,0,0,2217,2222,3,314,157,0,2218,2219,5,263,0, - 0,2219,2221,3,314,157,0,2220,2218,1,0,0,0,2221,2224,1,0,0,0,2222, - 2220,1,0,0,0,2222,2223,1,0,0,0,2223,2225,1,0,0,0,2224,2222,1,0,0, - 0,2225,2226,5,266,0,0,2226,2256,1,0,0,0,2227,2229,5,132,0,0,2228, - 2227,1,0,0,0,2228,2229,1,0,0,0,2229,2230,1,0,0,0,2230,2231,5,94, - 0,0,2231,2256,3,306,153,0,2232,2234,5,132,0,0,2233,2232,1,0,0,0, - 2233,2234,1,0,0,0,2234,2235,1,0,0,0,2235,2236,7,18,0,0,2236,2239, - 3,320,160,0,2237,2238,5,62,0,0,2238,2240,3,320,160,0,2239,2237,1, - 0,0,0,2239,2240,1,0,0,0,2240,2256,1,0,0,0,2241,2242,7,19,0,0,2242, - 2256,3,320,160,0,2243,2245,5,108,0,0,2244,2246,5,132,0,0,2245,2244, - 1,0,0,0,2245,2246,1,0,0,0,2246,2247,1,0,0,0,2247,2256,7,20,0,0,2248, - 2250,5,108,0,0,2249,2251,5,132,0,0,2250,2249,1,0,0,0,2250,2251,1, - 0,0,0,2251,2252,1,0,0,0,2252,2253,5,57,0,0,2253,2254,5,82,0,0,2254, - 2256,3,320,160,0,2255,2197,1,0,0,0,2255,2200,1,0,0,0,2255,2205,1, - 0,0,0,2255,2213,1,0,0,0,2255,2228,1,0,0,0,2255,2233,1,0,0,0,2255, - 2241,1,0,0,0,2255,2243,1,0,0,0,2255,2248,1,0,0,0,2256,319,1,0,0, - 0,2257,2258,6,160,-1,0,2258,2262,3,322,161,0,2259,2260,7,21,0,0, - 2260,2262,3,320,160,4,2261,2257,1,0,0,0,2261,2259,1,0,0,0,2262,2274, - 1,0,0,0,2263,2264,10,3,0,0,2264,2265,7,22,0,0,2265,2273,3,320,160, - 4,2266,2267,10,2,0,0,2267,2268,7,21,0,0,2268,2273,3,320,160,3,2269, - 2270,10,1,0,0,2270,2271,5,260,0,0,2271,2273,3,320,160,2,2272,2263, - 1,0,0,0,2272,2266,1,0,0,0,2272,2269,1,0,0,0,2273,2276,1,0,0,0,2274, - 2272,1,0,0,0,2274,2275,1,0,0,0,2275,321,1,0,0,0,2276,2274,1,0,0, - 0,2277,2278,6,161,-1,0,2278,2524,5,133,0,0,2279,2524,3,332,166,0, - 2280,2281,3,370,185,0,2281,2282,3,324,162,0,2282,2524,1,0,0,0,2283, - 2284,5,286,0,0,2284,2524,3,324,162,0,2285,2524,3,372,186,0,2286, - 2524,3,330,165,0,2287,2524,3,324,162,0,2288,2524,5,276,0,0,2289, - 2524,5,272,0,0,2290,2291,5,148,0,0,2291,2292,5,265,0,0,2292,2293, - 3,320,160,0,2293,2294,5,94,0,0,2294,2295,3,320,160,0,2295,2296,5, - 266,0,0,2296,2524,1,0,0,0,2297,2298,5,265,0,0,2298,2301,3,314,157, - 0,2299,2300,5,9,0,0,2300,2302,3,338,169,0,2301,2299,1,0,0,0,2301, - 2302,1,0,0,0,2302,2311,1,0,0,0,2303,2304,5,263,0,0,2304,2307,3,314, - 157,0,2305,2306,5,9,0,0,2306,2308,3,338,169,0,2307,2305,1,0,0,0, - 2307,2308,1,0,0,0,2308,2310,1,0,0,0,2309,2303,1,0,0,0,2310,2313, - 1,0,0,0,2311,2312,1,0,0,0,2311,2309,1,0,0,0,2312,2314,1,0,0,0,2313, - 2311,1,0,0,0,2314,2315,5,266,0,0,2315,2524,1,0,0,0,2316,2317,5,168, - 0,0,2317,2318,5,265,0,0,2318,2323,3,314,157,0,2319,2320,5,263,0, - 0,2320,2322,3,314,157,0,2321,2319,1,0,0,0,2322,2325,1,0,0,0,2323, - 2321,1,0,0,0,2323,2324,1,0,0,0,2324,2326,1,0,0,0,2325,2323,1,0,0, - 0,2326,2327,5,266,0,0,2327,2524,1,0,0,0,2328,2329,3,190,95,0,2329, - 2330,5,265,0,0,2330,2331,5,257,0,0,2331,2333,5,266,0,0,2332,2334, - 3,348,174,0,2333,2332,1,0,0,0,2333,2334,1,0,0,0,2334,2336,1,0,0, - 0,2335,2337,3,352,176,0,2336,2335,1,0,0,0,2336,2337,1,0,0,0,2337, - 2524,1,0,0,0,2338,2339,3,190,95,0,2339,2351,5,265,0,0,2340,2342, - 3,286,143,0,2341,2340,1,0,0,0,2341,2342,1,0,0,0,2342,2343,1,0,0, - 0,2343,2348,3,314,157,0,2344,2345,5,263,0,0,2345,2347,3,314,157, - 0,2346,2344,1,0,0,0,2347,2350,1,0,0,0,2348,2346,1,0,0,0,2348,2349, - 1,0,0,0,2349,2352,1,0,0,0,2350,2348,1,0,0,0,2351,2341,1,0,0,0,2351, - 2352,1,0,0,0,2352,2363,1,0,0,0,2353,2354,5,139,0,0,2354,2355,5,26, - 0,0,2355,2360,3,270,135,0,2356,2357,5,263,0,0,2357,2359,3,270,135, - 0,2358,2356,1,0,0,0,2359,2362,1,0,0,0,2360,2358,1,0,0,0,2360,2361, - 1,0,0,0,2361,2364,1,0,0,0,2362,2360,1,0,0,0,2363,2353,1,0,0,0,2363, - 2364,1,0,0,0,2364,2365,1,0,0,0,2365,2367,5,266,0,0,2366,2368,3,348, - 174,0,2367,2366,1,0,0,0,2367,2368,1,0,0,0,2368,2370,1,0,0,0,2369, - 2371,3,352,176,0,2370,2369,1,0,0,0,2370,2371,1,0,0,0,2371,2524,1, - 0,0,0,2372,2373,3,370,185,0,2373,2374,5,273,0,0,2374,2375,3,314, - 157,0,2375,2524,1,0,0,0,2376,2385,5,265,0,0,2377,2382,3,370,185, - 0,2378,2379,5,263,0,0,2379,2381,3,370,185,0,2380,2378,1,0,0,0,2381, - 2384,1,0,0,0,2382,2380,1,0,0,0,2382,2383,1,0,0,0,2383,2386,1,0,0, - 0,2384,2382,1,0,0,0,2385,2377,1,0,0,0,2385,2386,1,0,0,0,2386,2387, - 1,0,0,0,2387,2388,5,266,0,0,2388,2389,5,273,0,0,2389,2524,3,314, - 157,0,2390,2391,5,265,0,0,2391,2392,3,208,104,0,2392,2393,5,266, - 0,0,2393,2524,1,0,0,0,2394,2395,5,66,0,0,2395,2396,5,265,0,0,2396, - 2397,3,208,104,0,2397,2398,5,266,0,0,2398,2524,1,0,0,0,2399,2400, - 5,28,0,0,2400,2402,3,320,160,0,2401,2403,3,346,173,0,2402,2401,1, - 0,0,0,2403,2404,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405, - 2408,1,0,0,0,2406,2407,5,59,0,0,2407,2409,3,314,157,0,2408,2406, - 1,0,0,0,2408,2409,1,0,0,0,2409,2410,1,0,0,0,2410,2411,5,61,0,0,2411, - 2524,1,0,0,0,2412,2414,5,28,0,0,2413,2415,3,346,173,0,2414,2413, - 1,0,0,0,2415,2416,1,0,0,0,2416,2414,1,0,0,0,2416,2417,1,0,0,0,2417, - 2420,1,0,0,0,2418,2419,5,59,0,0,2419,2421,3,314,157,0,2420,2418, - 1,0,0,0,2420,2421,1,0,0,0,2421,2422,1,0,0,0,2422,2423,5,61,0,0,2423, - 2524,1,0,0,0,2424,2425,5,29,0,0,2425,2426,5,265,0,0,2426,2427,3, - 314,157,0,2427,2428,5,9,0,0,2428,2429,3,338,169,0,2429,2430,5,266, - 0,0,2430,2524,1,0,0,0,2431,2432,5,195,0,0,2432,2433,5,265,0,0,2433, - 2434,3,314,157,0,2434,2435,5,9,0,0,2435,2436,3,338,169,0,2436,2437, - 5,266,0,0,2437,2524,1,0,0,0,2438,2439,5,8,0,0,2439,2448,5,267,0, - 0,2440,2445,3,314,157,0,2441,2442,5,263,0,0,2442,2444,3,314,157, - 0,2443,2441,1,0,0,0,2444,2447,1,0,0,0,2445,2443,1,0,0,0,2445,2446, - 1,0,0,0,2446,2449,1,0,0,0,2447,2445,1,0,0,0,2448,2440,1,0,0,0,2448, - 2449,1,0,0,0,2449,2450,1,0,0,0,2450,2524,5,268,0,0,2451,2524,3,194, - 97,0,2452,2524,5,40,0,0,2453,2457,5,42,0,0,2454,2455,5,265,0,0,2455, - 2456,5,277,0,0,2456,2458,5,266,0,0,2457,2454,1,0,0,0,2457,2458,1, - 0,0,0,2458,2524,1,0,0,0,2459,2463,5,43,0,0,2460,2461,5,265,0,0,2461, - 2462,5,277,0,0,2462,2464,5,266,0,0,2463,2460,1,0,0,0,2463,2464,1, - 0,0,0,2464,2524,1,0,0,0,2465,2469,5,119,0,0,2466,2467,5,265,0,0, - 2467,2468,5,277,0,0,2468,2470,5,266,0,0,2469,2466,1,0,0,0,2469,2470, - 1,0,0,0,2470,2524,1,0,0,0,2471,2475,5,120,0,0,2472,2473,5,265,0, - 0,2473,2474,5,277,0,0,2474,2476,5,266,0,0,2475,2472,1,0,0,0,2475, - 2476,1,0,0,0,2476,2524,1,0,0,0,2477,2524,5,44,0,0,2478,2524,5,41, - 0,0,2479,2480,5,184,0,0,2480,2481,5,265,0,0,2481,2482,3,320,160, - 0,2482,2483,5,82,0,0,2483,2486,3,320,160,0,2484,2485,5,78,0,0,2485, - 2487,3,320,160,0,2486,2484,1,0,0,0,2486,2487,1,0,0,0,2487,2488,1, - 0,0,0,2488,2489,5,266,0,0,2489,2524,1,0,0,0,2490,2491,5,131,0,0, - 2491,2492,5,265,0,0,2492,2495,3,320,160,0,2493,2494,5,263,0,0,2494, - 2496,3,336,168,0,2495,2493,1,0,0,0,2495,2496,1,0,0,0,2496,2497,1, - 0,0,0,2497,2498,5,266,0,0,2498,2524,1,0,0,0,2499,2500,5,68,0,0,2500, - 2501,5,265,0,0,2501,2502,3,370,185,0,2502,2503,5,82,0,0,2503,2504, - 3,320,160,0,2504,2505,5,266,0,0,2505,2524,1,0,0,0,2506,2507,5,265, - 0,0,2507,2508,3,314,157,0,2508,2509,5,266,0,0,2509,2524,1,0,0,0, - 2510,2511,5,88,0,0,2511,2520,5,265,0,0,2512,2517,3,366,183,0,2513, - 2514,5,263,0,0,2514,2516,3,366,183,0,2515,2513,1,0,0,0,2516,2519, - 1,0,0,0,2517,2515,1,0,0,0,2517,2518,1,0,0,0,2518,2521,1,0,0,0,2519, - 2517,1,0,0,0,2520,2512,1,0,0,0,2520,2521,1,0,0,0,2521,2522,1,0,0, - 0,2522,2524,5,266,0,0,2523,2277,1,0,0,0,2523,2279,1,0,0,0,2523,2280, - 1,0,0,0,2523,2283,1,0,0,0,2523,2285,1,0,0,0,2523,2286,1,0,0,0,2523, - 2287,1,0,0,0,2523,2288,1,0,0,0,2523,2289,1,0,0,0,2523,2290,1,0,0, - 0,2523,2297,1,0,0,0,2523,2316,1,0,0,0,2523,2328,1,0,0,0,2523,2338, - 1,0,0,0,2523,2372,1,0,0,0,2523,2376,1,0,0,0,2523,2390,1,0,0,0,2523, - 2394,1,0,0,0,2523,2399,1,0,0,0,2523,2412,1,0,0,0,2523,2424,1,0,0, - 0,2523,2431,1,0,0,0,2523,2438,1,0,0,0,2523,2451,1,0,0,0,2523,2452, - 1,0,0,0,2523,2453,1,0,0,0,2523,2459,1,0,0,0,2523,2465,1,0,0,0,2523, - 2471,1,0,0,0,2523,2477,1,0,0,0,2523,2478,1,0,0,0,2523,2479,1,0,0, - 0,2523,2490,1,0,0,0,2523,2499,1,0,0,0,2523,2506,1,0,0,0,2523,2510, - 1,0,0,0,2524,2535,1,0,0,0,2525,2526,10,15,0,0,2526,2527,5,267,0, - 0,2527,2528,3,320,160,0,2528,2529,5,268,0,0,2529,2534,1,0,0,0,2530, - 2531,10,13,0,0,2531,2532,5,261,0,0,2532,2534,3,370,185,0,2533,2525, - 1,0,0,0,2533,2530,1,0,0,0,2534,2537,1,0,0,0,2535,2533,1,0,0,0,2535, - 2536,1,0,0,0,2536,323,1,0,0,0,2537,2535,1,0,0,0,2538,2545,5,274, - 0,0,2539,2542,5,275,0,0,2540,2541,5,198,0,0,2541,2543,5,274,0,0, - 2542,2540,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2538, - 1,0,0,0,2544,2539,1,0,0,0,2545,325,1,0,0,0,2546,2547,7,23,0,0,2547, - 327,1,0,0,0,2548,2549,7,24,0,0,2549,329,1,0,0,0,2550,2551,7,25,0, - 0,2551,331,1,0,0,0,2552,2553,5,277,0,0,2553,2567,3,334,167,0,2554, - 2555,5,265,0,0,2555,2556,5,277,0,0,2556,2557,5,266,0,0,2557,2567, - 3,334,167,0,2558,2559,5,101,0,0,2559,2560,5,277,0,0,2560,2567,3, - 334,167,0,2561,2562,5,101,0,0,2562,2563,5,265,0,0,2563,2564,5,277, - 0,0,2564,2565,5,266,0,0,2565,2567,3,334,167,0,2566,2552,1,0,0,0, - 2566,2554,1,0,0,0,2566,2558,1,0,0,0,2566,2561,1,0,0,0,2567,333,1, - 0,0,0,2568,2569,7,26,0,0,2569,335,1,0,0,0,2570,2571,7,27,0,0,2571, - 337,1,0,0,0,2572,2573,6,169,-1,0,2573,2574,5,8,0,0,2574,2575,5,251, - 0,0,2575,2576,3,338,169,0,2576,2577,5,253,0,0,2577,2618,1,0,0,0, - 2578,2579,5,235,0,0,2579,2580,5,251,0,0,2580,2581,3,338,169,0,2581, - 2582,5,263,0,0,2582,2583,3,338,169,0,2583,2584,5,253,0,0,2584,2618, - 1,0,0,0,2585,2586,5,240,0,0,2586,2587,5,251,0,0,2587,2588,3,370, - 185,0,2588,2595,3,338,169,0,2589,2590,5,263,0,0,2590,2591,3,370, - 185,0,2591,2592,3,338,169,0,2592,2594,1,0,0,0,2593,2589,1,0,0,0, - 2594,2597,1,0,0,0,2595,2593,1,0,0,0,2595,2596,1,0,0,0,2596,2598, - 1,0,0,0,2597,2595,1,0,0,0,2598,2599,5,253,0,0,2599,2618,1,0,0,0, - 2600,2603,3,344,172,0,2601,2603,3,340,170,0,2602,2600,1,0,0,0,2602, - 2601,1,0,0,0,2603,2615,1,0,0,0,2604,2605,5,265,0,0,2605,2610,3,342, - 171,0,2606,2607,5,263,0,0,2607,2609,3,342,171,0,2608,2606,1,0,0, - 0,2609,2612,1,0,0,0,2610,2608,1,0,0,0,2610,2611,1,0,0,0,2611,2613, - 1,0,0,0,2612,2610,1,0,0,0,2613,2614,5,266,0,0,2614,2616,1,0,0,0, - 2615,2604,1,0,0,0,2615,2616,1,0,0,0,2616,2618,1,0,0,0,2617,2572, - 1,0,0,0,2617,2578,1,0,0,0,2617,2585,1,0,0,0,2617,2602,1,0,0,0,2618, - 2623,1,0,0,0,2619,2620,10,5,0,0,2620,2622,5,8,0,0,2621,2619,1,0, - 0,0,2622,2625,1,0,0,0,2623,2621,1,0,0,0,2623,2624,1,0,0,0,2624,339, - 1,0,0,0,2625,2623,1,0,0,0,2626,2627,7,28,0,0,2627,341,1,0,0,0,2628, - 2631,5,277,0,0,2629,2631,3,338,169,0,2630,2628,1,0,0,0,2630,2629, - 1,0,0,0,2631,343,1,0,0,0,2632,2637,5,284,0,0,2633,2637,5,285,0,0, - 2634,2637,5,286,0,0,2635,2637,3,370,185,0,2636,2632,1,0,0,0,2636, - 2633,1,0,0,0,2636,2634,1,0,0,0,2636,2635,1,0,0,0,2637,345,1,0,0, - 0,2638,2639,5,214,0,0,2639,2640,3,314,157,0,2640,2641,5,192,0,0, - 2641,2642,3,314,157,0,2642,347,1,0,0,0,2643,2644,5,74,0,0,2644,2645, - 5,265,0,0,2645,2646,3,274,137,0,2646,2647,5,266,0,0,2647,349,1,0, - 0,0,2648,2653,3,314,157,0,2649,2650,5,263,0,0,2650,2652,3,314,157, - 0,2651,2649,1,0,0,0,2652,2655,1,0,0,0,2653,2651,1,0,0,0,2653,2654, - 1,0,0,0,2654,351,1,0,0,0,2655,2653,1,0,0,0,2656,2657,5,143,0,0,2657, - 2661,5,265,0,0,2658,2659,5,145,0,0,2659,2660,5,26,0,0,2660,2662, - 3,350,175,0,2661,2658,1,0,0,0,2661,2662,1,0,0,0,2662,2673,1,0,0, - 0,2663,2664,5,139,0,0,2664,2665,5,26,0,0,2665,2670,3,270,135,0,2666, - 2667,5,263,0,0,2667,2669,3,270,135,0,2668,2666,1,0,0,0,2669,2672, - 1,0,0,0,2670,2668,1,0,0,0,2670,2671,1,0,0,0,2671,2674,1,0,0,0,2672, - 2670,1,0,0,0,2673,2663,1,0,0,0,2673,2674,1,0,0,0,2674,2676,1,0,0, - 0,2675,2677,3,354,177,0,2676,2675,1,0,0,0,2676,2677,1,0,0,0,2677, - 2678,1,0,0,0,2678,2679,5,266,0,0,2679,353,1,0,0,0,2680,2681,5,154, - 0,0,2681,2697,3,356,178,0,2682,2683,5,169,0,0,2683,2697,3,356,178, - 0,2684,2685,5,154,0,0,2685,2686,5,15,0,0,2686,2687,3,356,178,0,2687, - 2688,5,5,0,0,2688,2689,3,356,178,0,2689,2697,1,0,0,0,2690,2691,5, - 169,0,0,2691,2692,5,15,0,0,2692,2693,3,356,178,0,2693,2694,5,5,0, - 0,2694,2695,3,356,178,0,2695,2697,1,0,0,0,2696,2680,1,0,0,0,2696, - 2682,1,0,0,0,2696,2684,1,0,0,0,2696,2690,1,0,0,0,2697,355,1,0,0, - 0,2698,2699,5,199,0,0,2699,2708,5,149,0,0,2700,2701,5,199,0,0,2701, - 2708,5,77,0,0,2702,2703,5,39,0,0,2703,2708,5,168,0,0,2704,2705,3, - 314,157,0,2705,2706,7,29,0,0,2706,2708,1,0,0,0,2707,2698,1,0,0,0, - 2707,2700,1,0,0,0,2707,2702,1,0,0,0,2707,2704,1,0,0,0,2708,357,1, - 0,0,0,2709,2710,3,370,185,0,2710,2711,5,261,0,0,2711,2712,3,370, - 185,0,2712,2715,1,0,0,0,2713,2715,3,370,185,0,2714,2709,1,0,0,0, - 2714,2713,1,0,0,0,2715,359,1,0,0,0,2716,2721,3,358,179,0,2717,2718, - 5,263,0,0,2718,2720,3,358,179,0,2719,2717,1,0,0,0,2720,2723,1,0, - 0,0,2721,2719,1,0,0,0,2721,2722,1,0,0,0,2722,361,1,0,0,0,2723,2721, - 1,0,0,0,2724,2738,5,2,0,0,2725,2738,5,4,0,0,2726,2738,5,58,0,0,2727, - 2738,5,37,0,0,2728,2738,5,99,0,0,2729,2738,5,162,0,0,2730,2735,5, - 174,0,0,2731,2732,5,265,0,0,2732,2733,3,370,185,0,2733,2734,5,266, - 0,0,2734,2736,1,0,0,0,2735,2731,1,0,0,0,2735,2736,1,0,0,0,2736,2738, - 1,0,0,0,2737,2724,1,0,0,0,2737,2725,1,0,0,0,2737,2726,1,0,0,0,2737, - 2727,1,0,0,0,2737,2728,1,0,0,0,2737,2729,1,0,0,0,2737,2730,1,0,0, - 0,2738,363,1,0,0,0,2739,2740,7,30,0,0,2740,365,1,0,0,0,2741,2746, - 3,370,185,0,2742,2743,5,261,0,0,2743,2745,3,370,185,0,2744,2742, - 1,0,0,0,2745,2748,1,0,0,0,2746,2744,1,0,0,0,2746,2747,1,0,0,0,2747, - 367,1,0,0,0,2748,2746,1,0,0,0,2749,2750,5,166,0,0,2750,2756,3,370, - 185,0,2751,2752,5,204,0,0,2752,2756,3,370,185,0,2753,2754,5,87,0, - 0,2754,2756,3,370,185,0,2755,2749,1,0,0,0,2755,2751,1,0,0,0,2755, - 2753,1,0,0,0,2756,369,1,0,0,0,2757,2763,5,280,0,0,2758,2763,5,274, - 0,0,2759,2763,3,376,188,0,2760,2763,5,283,0,0,2761,2763,5,281,0, - 0,2762,2757,1,0,0,0,2762,2758,1,0,0,0,2762,2759,1,0,0,0,2762,2760, - 1,0,0,0,2762,2761,1,0,0,0,2763,371,1,0,0,0,2764,2766,5,256,0,0,2765, - 2764,1,0,0,0,2765,2766,1,0,0,0,2766,2767,1,0,0,0,2767,2777,5,278, - 0,0,2768,2770,5,256,0,0,2769,2768,1,0,0,0,2769,2770,1,0,0,0,2770, - 2771,1,0,0,0,2771,2777,5,279,0,0,2772,2774,5,256,0,0,2773,2772,1, - 0,0,0,2773,2774,1,0,0,0,2774,2775,1,0,0,0,2775,2777,5,277,0,0,2776, - 2765,1,0,0,0,2776,2769,1,0,0,0,2776,2773,1,0,0,0,2777,373,1,0,0, - 0,2778,2779,7,31,0,0,2779,375,1,0,0,0,2780,2781,7,32,0,0,2781,377, - 1,0,0,0,353,381,388,412,425,429,433,442,447,451,457,459,464,468, - 472,479,484,490,494,503,510,514,519,521,526,529,536,540,545,549, - 552,556,564,568,572,580,584,593,596,599,605,612,623,628,633,638, - 643,652,655,658,662,688,714,723,733,736,750,768,770,779,790,799, - 806,810,817,823,826,831,838,852,865,870,875,881,917,920,926,929, - 935,941,953,955,966,974,979,983,988,995,999,1003,1009,1013,1017, - 1026,1029,1032,1040,1054,1061,1074,1080,1085,1088,1091,1096,1100, - 1109,1114,1120,1124,1128,1133,1136,1144,1147,1150,1162,1165,1168, - 1173,1177,1193,1198,1205,1208,1214,1217,1224,1227,1231,1236,1239, - 1246,1249,1273,1287,1291,1295,1315,1317,1319,1328,1330,1339,1341, - 1350,1352,1357,1366,1375,1384,1395,1401,1406,1409,1422,1432,1436, - 1441,1452,1457,1490,1498,1503,1507,1513,1518,1521,1526,1531,1536, - 1540,1549,1552,1556,1563,1572,1576,1580,1587,1590,1600,1607,1612, - 1617,1622,1628,1631,1640,1643,1646,1652,1657,1667,1670,1673,1677, - 1687,1690,1696,1702,1705,1708,1712,1722,1733,1738,1741,1745,1752, - 1762,1774,1780,1782,1791,1794,1801,1811,1817,1825,1836,1846,1857, - 1859,1865,1870,1880,1883,1889,1891,1899,1905,1908,1910,1922,1929, - 1933,1937,1941,1944,1951,1960,1963,1966,1971,1974,1983,1990,2001, - 2004,2008,2012,2021,2024,2031,2045,2049,2053,2057,2061,2065,2069, - 2073,2083,2094,2099,2112,2114,2120,2124,2126,2134,2141,2146,2159, - 2165,2173,2180,2184,2192,2194,2205,2213,2222,2228,2233,2239,2245, - 2250,2255,2261,2272,2274,2301,2307,2311,2323,2333,2336,2341,2348, - 2351,2360,2363,2367,2370,2382,2385,2404,2408,2416,2420,2445,2448, - 2457,2463,2469,2475,2486,2495,2517,2520,2523,2533,2535,2542,2544, - 2566,2595,2602,2610,2615,2617,2623,2630,2636,2653,2661,2670,2673, - 2676,2696,2707,2714,2721,2735,2737,2746,2755,2762,2765,2769,2773, - 2776 + 366,368,370,372,374,376,378,380,382,384,386,388,390,0,33,2,0,46, + 46,170,170,2,0,166,166,204,204,2,0,176,176,202,202,2,0,69,69,80, + 80,2,0,27,27,159,159,2,0,103,103,144,144,2,0,47,47,171,171,2,0,3, + 3,12,12,3,0,87,87,166,166,204,204,2,0,178,178,209,209,1,0,245,248, + 2,0,147,147,219,223,2,0,65,65,95,95,2,0,64,64,200,200,2,0,10,10, + 55,55,2,0,75,75,112,112,2,0,2,2,57,57,2,0,14,14,185,185,3,0,106, + 106,115,115,164,164,2,0,105,105,163,163,4,0,70,70,133,133,194,194, + 208,208,1,0,255,256,1,0,257,259,1,0,249,254,3,0,2,2,6,6,181,181, + 2,0,70,70,194,194,5,0,48,49,91,92,122,125,172,173,217,218,1,0,127, + 130,2,0,8,8,227,244,2,0,77,77,149,149,4,0,46,46,178,178,188,188, + 209,209,16,0,28,29,40,40,43,43,48,48,68,68,91,91,114,114,122,122, + 124,124,158,158,165,165,172,172,184,184,196,196,204,204,217,217, + 23,0,14,14,43,44,48,49,65,65,68,68,91,91,95,95,110,110,119,119,122, + 125,127,130,137,137,140,140,152,153,172,173,180,180,184,185,195, + 195,204,204,213,213,217,217,220,220,231,231,3126,0,395,1,0,0,0,2, + 400,1,0,0,0,4,426,1,0,0,0,6,428,1,0,0,0,8,439,1,0,0,0,10,441,1,0, + 0,0,12,480,1,0,0,0,14,502,1,0,0,0,16,556,1,0,0,0,18,575,1,0,0,0, + 20,588,1,0,0,0,22,592,1,0,0,0,24,654,1,0,0,0,26,702,1,0,0,0,28,704, + 1,0,0,0,30,712,1,0,0,0,32,732,1,0,0,0,34,752,1,0,0,0,36,759,1,0, + 0,0,38,768,1,0,0,0,40,776,1,0,0,0,42,798,1,0,0,0,44,808,1,0,0,0, + 46,826,1,0,0,0,48,847,1,0,0,0,50,868,1,0,0,0,52,874,1,0,0,0,54,891, + 1,0,0,0,56,900,1,0,0,0,58,907,1,0,0,0,60,915,1,0,0,0,62,922,1,0, + 0,0,64,929,1,0,0,0,66,938,1,0,0,0,68,949,1,0,0,0,70,951,1,0,0,0, + 72,971,1,0,0,0,74,988,1,0,0,0,76,990,1,0,0,0,78,999,1,0,0,0,80,1006, + 1,0,0,0,82,1015,1,0,0,0,84,1025,1,0,0,0,86,1048,1,0,0,0,88,1054, + 1,0,0,0,90,1056,1,0,0,0,92,1063,1,0,0,0,94,1075,1,0,0,0,96,1077, + 1,0,0,0,98,1084,1,0,0,0,100,1105,1,0,0,0,102,1134,1,0,0,0,104,1136, + 1,0,0,0,106,1144,1,0,0,0,108,1166,1,0,0,0,110,1184,1,0,0,0,112,1207, + 1,0,0,0,114,1209,1,0,0,0,116,1224,1,0,0,0,118,1243,1,0,0,0,120,1265, + 1,0,0,0,122,1270,1,0,0,0,124,1275,1,0,0,0,126,1280,1,0,0,0,128,1285, + 1,0,0,0,130,1292,1,0,0,0,132,1307,1,0,0,0,134,1313,1,0,0,0,136,1333, + 1,0,0,0,138,1335,1,0,0,0,140,1346,1,0,0,0,142,1357,1,0,0,0,144,1371, + 1,0,0,0,146,1373,1,0,0,0,148,1382,1,0,0,0,150,1391,1,0,0,0,152,1400, + 1,0,0,0,154,1403,1,0,0,0,156,1411,1,0,0,0,158,1427,1,0,0,0,160,1431, + 1,0,0,0,162,1455,1,0,0,0,164,1457,1,0,0,0,166,1473,1,0,0,0,168,1476, + 1,0,0,0,170,1480,1,0,0,0,172,1483,1,0,0,0,174,1487,1,0,0,0,176,1489, + 1,0,0,0,178,1491,1,0,0,0,180,1493,1,0,0,0,182,1495,1,0,0,0,184,1497, + 1,0,0,0,186,1499,1,0,0,0,188,1507,1,0,0,0,190,1517,1,0,0,0,192,1521, + 1,0,0,0,194,1523,1,0,0,0,196,1527,1,0,0,0,198,1532,1,0,0,0,200,1572, + 1,0,0,0,202,1580,1,0,0,0,204,1584,1,0,0,0,206,1599,1,0,0,0,208,1604, + 1,0,0,0,210,1608,1,0,0,0,212,1617,1,0,0,0,214,1647,1,0,0,0,216,1662, + 1,0,0,0,218,1668,1,0,0,0,220,1673,1,0,0,0,222,1675,1,0,0,0,224,1693, + 1,0,0,0,226,1696,1,0,0,0,228,1706,1,0,0,0,230,1726,1,0,0,0,232,1736, + 1,0,0,0,234,1738,1,0,0,0,236,1740,1,0,0,0,238,1755,1,0,0,0,240,1757, + 1,0,0,0,242,1764,1,0,0,0,244,1796,1,0,0,0,246,1808,1,0,0,0,248,1815, + 1,0,0,0,250,1825,1,0,0,0,252,1827,1,0,0,0,254,1833,1,0,0,0,256,1844, + 1,0,0,0,258,1855,1,0,0,0,260,1863,1,0,0,0,262,1881,1,0,0,0,264,1886, + 1,0,0,0,266,1907,1,0,0,0,268,1943,1,0,0,0,270,1945,1,0,0,0,272,1953, + 1,0,0,0,274,1983,1,0,0,0,276,1991,1,0,0,0,278,1994,1,0,0,0,280,1998, + 1,0,0,0,282,2008,1,0,0,0,284,2023,1,0,0,0,286,2025,1,0,0,0,288,2032, + 1,0,0,0,290,2043,1,0,0,0,292,2046,1,0,0,0,294,2050,1,0,0,0,296,2052, + 1,0,0,0,298,2057,1,0,0,0,300,2061,1,0,0,0,302,2111,1,0,0,0,304,2127, + 1,0,0,0,306,2129,1,0,0,0,308,2144,1,0,0,0,310,2146,1,0,0,0,312,2156, + 1,0,0,0,314,2171,1,0,0,0,316,2174,1,0,0,0,318,2178,1,0,0,0,320,2182, + 1,0,0,0,322,2197,1,0,0,0,324,2203,1,0,0,0,326,2205,1,0,0,0,328,2214, + 1,0,0,0,330,2285,1,0,0,0,332,2291,1,0,0,0,334,2307,1,0,0,0,336,2554, + 1,0,0,0,338,2575,1,0,0,0,340,2577,1,0,0,0,342,2579,1,0,0,0,344,2581, + 1,0,0,0,346,2597,1,0,0,0,348,2599,1,0,0,0,350,2601,1,0,0,0,352,2648, + 1,0,0,0,354,2657,1,0,0,0,356,2661,1,0,0,0,358,2667,1,0,0,0,360,2669, + 1,0,0,0,362,2674,1,0,0,0,364,2679,1,0,0,0,366,2687,1,0,0,0,368,2727, + 1,0,0,0,370,2738,1,0,0,0,372,2745,1,0,0,0,374,2747,1,0,0,0,376,2768, + 1,0,0,0,378,2770,1,0,0,0,380,2772,1,0,0,0,382,2786,1,0,0,0,384,2793, + 1,0,0,0,386,2807,1,0,0,0,388,2809,1,0,0,0,390,2811,1,0,0,0,392,394, + 3,2,1,0,393,392,1,0,0,0,394,397,1,0,0,0,395,393,1,0,0,0,395,396, + 1,0,0,0,396,398,1,0,0,0,397,395,1,0,0,0,398,399,5,0,0,1,399,1,1, + 0,0,0,400,402,3,4,2,0,401,403,5,262,0,0,402,401,1,0,0,0,402,403, + 1,0,0,0,403,3,1,0,0,0,404,427,3,208,104,0,405,427,3,6,3,0,406,427, + 3,8,4,0,407,427,3,26,13,0,408,427,3,64,32,0,409,427,3,66,33,0,410, + 427,3,68,34,0,411,427,3,74,37,0,412,427,3,88,44,0,413,427,3,94,47, + 0,414,427,3,100,50,0,415,427,3,102,51,0,416,427,3,108,54,0,417,427, + 3,110,55,0,418,427,3,112,56,0,419,427,3,144,72,0,420,427,3,152,76, + 0,421,427,3,154,77,0,422,427,3,156,78,0,423,427,3,158,79,0,424,427, + 3,160,80,0,425,427,3,162,81,0,426,404,1,0,0,0,426,405,1,0,0,0,426, + 406,1,0,0,0,426,407,1,0,0,0,426,408,1,0,0,0,426,409,1,0,0,0,426, + 410,1,0,0,0,426,411,1,0,0,0,426,412,1,0,0,0,426,413,1,0,0,0,426, + 414,1,0,0,0,426,415,1,0,0,0,426,416,1,0,0,0,426,417,1,0,0,0,426, + 418,1,0,0,0,426,419,1,0,0,0,426,420,1,0,0,0,426,421,1,0,0,0,426, + 422,1,0,0,0,426,423,1,0,0,0,426,424,1,0,0,0,426,425,1,0,0,0,427, + 5,1,0,0,0,428,429,5,203,0,0,429,430,3,184,92,0,430,7,1,0,0,0,431, + 440,3,18,9,0,432,440,3,20,10,0,433,440,3,22,11,0,434,440,3,24,12, + 0,435,440,3,16,8,0,436,440,3,14,7,0,437,440,3,12,6,0,438,440,3,10, + 5,0,439,431,1,0,0,0,439,432,1,0,0,0,439,433,1,0,0,0,439,434,1,0, + 0,0,439,435,1,0,0,0,439,436,1,0,0,0,439,437,1,0,0,0,439,438,1,0, + 0,0,440,9,1,0,0,0,441,443,5,37,0,0,442,444,5,19,0,0,443,442,1,0, + 0,0,443,444,1,0,0,0,444,445,1,0,0,0,445,447,5,188,0,0,446,448,3, + 172,86,0,447,446,1,0,0,0,447,448,1,0,0,0,448,449,1,0,0,0,449,465, + 3,174,87,0,450,451,5,265,0,0,451,456,3,218,109,0,452,453,5,263,0, + 0,453,455,3,218,109,0,454,452,1,0,0,0,455,458,1,0,0,0,456,454,1, + 0,0,0,456,457,1,0,0,0,457,461,1,0,0,0,458,456,1,0,0,0,459,460,5, + 263,0,0,460,462,3,212,106,0,461,459,1,0,0,0,461,462,1,0,0,0,462, + 463,1,0,0,0,463,464,5,266,0,0,464,466,1,0,0,0,465,450,1,0,0,0,465, + 466,1,0,0,0,466,473,1,0,0,0,467,468,5,17,0,0,468,471,5,26,0,0,469, + 472,3,312,156,0,470,472,3,256,128,0,471,469,1,0,0,0,471,470,1,0, + 0,0,472,474,1,0,0,0,473,467,1,0,0,0,473,474,1,0,0,0,474,475,1,0, + 0,0,475,478,3,198,99,0,476,477,5,9,0,0,477,479,3,208,104,0,478,476, + 1,0,0,0,478,479,1,0,0,0,479,11,1,0,0,0,480,482,5,37,0,0,481,483, + 5,19,0,0,482,481,1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484,486, + 5,188,0,0,485,487,3,172,86,0,486,485,1,0,0,0,486,487,1,0,0,0,487, + 488,1,0,0,0,488,489,3,174,87,0,489,493,5,115,0,0,490,494,3,186,93, + 0,491,492,5,147,0,0,492,494,3,338,169,0,493,490,1,0,0,0,493,491, + 1,0,0,0,494,498,1,0,0,0,495,496,5,17,0,0,496,497,5,26,0,0,497,499, + 3,256,128,0,498,495,1,0,0,0,498,499,1,0,0,0,499,500,1,0,0,0,500, + 501,3,198,99,0,501,13,1,0,0,0,502,504,5,37,0,0,503,505,5,19,0,0, + 504,503,1,0,0,0,504,505,1,0,0,0,505,506,1,0,0,0,506,508,5,188,0, + 0,507,509,3,172,86,0,508,507,1,0,0,0,508,509,1,0,0,0,509,510,1,0, + 0,0,510,528,3,174,87,0,511,512,5,265,0,0,512,517,3,220,110,0,513, + 514,5,263,0,0,514,516,3,220,110,0,515,513,1,0,0,0,516,519,1,0,0, + 0,517,515,1,0,0,0,517,518,1,0,0,0,518,524,1,0,0,0,519,517,1,0,0, + 0,520,521,5,263,0,0,521,522,5,150,0,0,522,523,5,110,0,0,523,525, + 3,312,156,0,524,520,1,0,0,0,524,525,1,0,0,0,525,526,1,0,0,0,526, + 527,5,266,0,0,527,529,1,0,0,0,528,511,1,0,0,0,528,529,1,0,0,0,529, + 535,1,0,0,0,530,531,5,150,0,0,531,533,5,110,0,0,532,534,3,312,156, + 0,533,532,1,0,0,0,533,534,1,0,0,0,534,536,1,0,0,0,535,530,1,0,0, + 0,535,536,1,0,0,0,536,540,1,0,0,0,537,538,5,145,0,0,538,539,5,26, + 0,0,539,541,3,238,119,0,540,537,1,0,0,0,540,541,1,0,0,0,541,543, + 1,0,0,0,542,544,3,224,112,0,543,542,1,0,0,0,543,544,1,0,0,0,544, + 545,1,0,0,0,545,546,5,23,0,0,546,547,5,9,0,0,547,550,5,111,0,0,548, + 549,5,25,0,0,549,551,3,254,127,0,550,548,1,0,0,0,550,551,1,0,0,0, + 551,554,1,0,0,0,552,553,5,9,0,0,553,555,3,208,104,0,554,552,1,0, + 0,0,554,555,1,0,0,0,555,15,1,0,0,0,556,557,5,37,0,0,557,559,5,212, + 0,0,558,560,3,172,86,0,559,558,1,0,0,0,559,560,1,0,0,0,560,561,1, + 0,0,0,561,563,3,178,89,0,562,564,3,204,102,0,563,562,1,0,0,0,563, + 564,1,0,0,0,564,566,1,0,0,0,565,567,3,224,112,0,566,565,1,0,0,0, + 566,567,1,0,0,0,567,570,1,0,0,0,568,569,5,25,0,0,569,571,3,254,127, + 0,570,568,1,0,0,0,570,571,1,0,0,0,571,572,1,0,0,0,572,573,5,9,0, + 0,573,574,3,208,104,0,574,17,1,0,0,0,575,576,5,37,0,0,576,578,7, + 0,0,0,577,579,3,172,86,0,578,577,1,0,0,0,578,579,1,0,0,0,579,580, + 1,0,0,0,580,582,3,176,88,0,581,583,3,224,112,0,582,581,1,0,0,0,582, + 583,1,0,0,0,583,586,1,0,0,0,584,585,5,24,0,0,585,587,3,338,169,0, + 586,584,1,0,0,0,586,587,1,0,0,0,587,19,1,0,0,0,588,589,5,37,0,0, + 589,590,5,166,0,0,590,591,3,384,192,0,591,21,1,0,0,0,592,594,5,37, + 0,0,593,595,5,12,0,0,594,593,1,0,0,0,594,595,1,0,0,0,595,596,1,0, + 0,0,596,598,5,84,0,0,597,599,3,172,86,0,598,597,1,0,0,0,598,599, + 1,0,0,0,599,600,1,0,0,0,600,613,3,180,90,0,601,610,5,265,0,0,602, + 607,3,352,176,0,603,604,5,263,0,0,604,606,3,352,176,0,605,603,1, + 0,0,0,606,609,1,0,0,0,607,605,1,0,0,0,607,608,1,0,0,0,608,611,1, + 0,0,0,609,607,1,0,0,0,610,602,1,0,0,0,610,611,1,0,0,0,611,612,1, + 0,0,0,612,614,5,266,0,0,613,601,1,0,0,0,613,614,1,0,0,0,614,615, + 1,0,0,0,615,616,5,160,0,0,616,619,3,352,176,0,617,618,5,102,0,0, + 618,620,3,352,176,0,619,617,1,0,0,0,619,620,1,0,0,0,620,621,1,0, + 0,0,621,622,5,24,0,0,622,626,5,274,0,0,623,624,5,104,0,0,624,625, + 5,249,0,0,625,627,5,274,0,0,626,623,1,0,0,0,626,627,1,0,0,0,627, + 628,1,0,0,0,628,629,5,206,0,0,629,630,5,249,0,0,630,631,5,274,0, + 0,631,632,5,126,0,0,632,633,5,249,0,0,633,637,5,274,0,0,634,635, + 5,18,0,0,635,636,5,249,0,0,636,638,5,274,0,0,637,634,1,0,0,0,637, + 638,1,0,0,0,638,642,1,0,0,0,639,640,5,20,0,0,640,641,5,249,0,0,641, + 643,5,274,0,0,642,639,1,0,0,0,642,643,1,0,0,0,643,647,1,0,0,0,644, + 645,5,187,0,0,645,646,5,249,0,0,646,648,5,274,0,0,647,644,1,0,0, + 0,647,648,1,0,0,0,648,652,1,0,0,0,649,650,5,76,0,0,650,651,5,249, + 0,0,651,653,5,274,0,0,652,649,1,0,0,0,652,653,1,0,0,0,653,23,1,0, + 0,0,654,655,5,37,0,0,655,657,5,84,0,0,656,658,3,172,86,0,657,656, + 1,0,0,0,657,658,1,0,0,0,658,659,1,0,0,0,659,672,3,180,90,0,660,669, + 5,265,0,0,661,666,3,352,176,0,662,663,5,263,0,0,663,665,3,352,176, + 0,664,662,1,0,0,0,665,668,1,0,0,0,666,664,1,0,0,0,666,667,1,0,0, + 0,667,670,1,0,0,0,668,666,1,0,0,0,669,661,1,0,0,0,669,670,1,0,0, + 0,670,671,1,0,0,0,671,673,5,266,0,0,672,660,1,0,0,0,672,673,1,0, + 0,0,673,676,1,0,0,0,674,675,5,160,0,0,675,677,3,352,176,0,676,674, + 1,0,0,0,676,677,1,0,0,0,677,678,1,0,0,0,678,679,5,24,0,0,679,680, + 5,274,0,0,680,681,5,186,0,0,681,682,5,249,0,0,682,683,3,338,169, + 0,683,25,1,0,0,0,684,703,3,28,14,0,685,703,3,62,31,0,686,703,3,60, + 30,0,687,703,3,58,29,0,688,703,3,54,27,0,689,703,3,56,28,0,690,703, + 3,52,26,0,691,703,3,48,24,0,692,703,3,50,25,0,693,703,3,46,23,0, + 694,703,3,44,22,0,695,703,3,42,21,0,696,703,3,40,20,0,697,703,3, + 34,17,0,698,703,3,30,15,0,699,703,3,32,16,0,700,703,3,36,18,0,701, + 703,3,38,19,0,702,684,1,0,0,0,702,685,1,0,0,0,702,686,1,0,0,0,702, + 687,1,0,0,0,702,688,1,0,0,0,702,689,1,0,0,0,702,690,1,0,0,0,702, + 691,1,0,0,0,702,692,1,0,0,0,702,693,1,0,0,0,702,694,1,0,0,0,702, + 695,1,0,0,0,702,696,1,0,0,0,702,697,1,0,0,0,702,698,1,0,0,0,702, + 699,1,0,0,0,702,700,1,0,0,0,702,701,1,0,0,0,703,27,1,0,0,0,704,705, + 5,4,0,0,705,706,5,46,0,0,706,707,3,184,92,0,707,708,5,176,0,0,708, + 709,5,142,0,0,709,710,7,1,0,0,710,711,3,384,192,0,711,29,1,0,0,0, + 712,713,5,4,0,0,713,714,5,188,0,0,714,715,3,186,93,0,715,716,5,176, + 0,0,716,717,5,32,0,0,717,718,5,182,0,0,718,719,3,192,96,0,719,720, + 5,265,0,0,720,721,3,234,117,0,721,722,5,249,0,0,722,728,3,338,169, + 0,723,724,5,263,0,0,724,725,3,234,117,0,725,726,5,249,0,0,726,727, + 3,338,169,0,727,729,1,0,0,0,728,723,1,0,0,0,728,729,1,0,0,0,729, + 730,1,0,0,0,730,731,5,266,0,0,731,31,1,0,0,0,732,733,5,4,0,0,733, + 734,5,188,0,0,734,737,3,186,93,0,735,736,5,145,0,0,736,738,3,326, + 163,0,737,735,1,0,0,0,737,738,1,0,0,0,738,739,1,0,0,0,739,750,5, + 176,0,0,740,741,5,30,0,0,741,742,5,94,0,0,742,747,3,338,169,0,743, + 744,5,216,0,0,744,745,5,151,0,0,745,746,5,249,0,0,746,748,3,386, + 193,0,747,743,1,0,0,0,747,748,1,0,0,0,748,751,1,0,0,0,749,751,5, + 197,0,0,750,740,1,0,0,0,750,749,1,0,0,0,751,33,1,0,0,0,752,753,5, + 4,0,0,753,754,5,188,0,0,754,755,3,186,93,0,755,756,5,31,0,0,756, + 757,3,192,96,0,757,758,3,226,113,0,758,35,1,0,0,0,759,760,5,4,0, + 0,760,761,5,188,0,0,761,762,3,186,93,0,762,764,5,58,0,0,763,765, + 5,32,0,0,764,763,1,0,0,0,764,765,1,0,0,0,765,766,1,0,0,0,766,767, + 3,192,96,0,767,37,1,0,0,0,768,769,5,4,0,0,769,770,5,188,0,0,770, + 771,3,186,93,0,771,772,5,176,0,0,772,773,5,142,0,0,773,774,7,1,0, + 0,774,775,3,384,192,0,775,39,1,0,0,0,776,777,5,4,0,0,777,778,5,188, + 0,0,778,784,3,186,93,0,779,785,5,158,0,0,780,782,5,1,0,0,781,783, + 3,172,86,0,782,781,1,0,0,0,782,783,1,0,0,0,783,785,1,0,0,0,784,779, + 1,0,0,0,784,780,1,0,0,0,785,786,1,0,0,0,786,787,5,33,0,0,787,788, + 5,265,0,0,788,793,3,226,113,0,789,790,5,263,0,0,790,792,3,226,113, + 0,791,789,1,0,0,0,792,795,1,0,0,0,793,794,1,0,0,0,793,791,1,0,0, + 0,794,796,1,0,0,0,795,793,1,0,0,0,796,797,5,266,0,0,797,41,1,0,0, + 0,798,799,5,4,0,0,799,800,5,188,0,0,800,801,3,186,93,0,801,802,5, + 1,0,0,802,804,5,32,0,0,803,805,3,172,86,0,804,803,1,0,0,0,804,805, + 1,0,0,0,805,806,1,0,0,0,806,807,3,228,114,0,807,43,1,0,0,0,808,809, + 5,4,0,0,809,810,5,188,0,0,810,811,3,186,93,0,811,813,5,4,0,0,812, + 814,5,32,0,0,813,812,1,0,0,0,813,814,1,0,0,0,814,815,1,0,0,0,815, + 824,3,192,96,0,816,820,5,176,0,0,817,821,3,232,116,0,818,819,5,34, + 0,0,819,821,3,338,169,0,820,817,1,0,0,0,820,818,1,0,0,0,821,825, + 1,0,0,0,822,823,5,58,0,0,823,825,5,51,0,0,824,816,1,0,0,0,824,822, + 1,0,0,0,825,45,1,0,0,0,826,827,5,4,0,0,827,828,5,188,0,0,828,829, + 3,186,93,0,829,831,5,1,0,0,830,832,3,172,86,0,831,830,1,0,0,0,831, + 832,1,0,0,0,832,845,1,0,0,0,833,834,5,145,0,0,834,837,3,326,163, + 0,835,836,5,24,0,0,836,838,3,338,169,0,837,835,1,0,0,0,837,838,1, + 0,0,0,838,840,1,0,0,0,839,841,3,246,123,0,840,839,1,0,0,0,840,841, + 1,0,0,0,841,846,1,0,0,0,842,843,5,154,0,0,843,844,5,145,0,0,844, + 846,3,244,122,0,845,833,1,0,0,0,845,842,1,0,0,0,846,47,1,0,0,0,847, + 848,5,4,0,0,848,849,5,188,0,0,849,852,3,186,93,0,850,851,5,145,0, + 0,851,853,3,326,163,0,852,850,1,0,0,0,852,853,1,0,0,0,853,854,1, + 0,0,0,854,866,5,176,0,0,855,856,5,72,0,0,856,867,3,236,118,0,857, + 858,5,168,0,0,858,859,5,79,0,0,859,867,3,260,130,0,860,861,5,24, + 0,0,861,867,3,338,169,0,862,863,5,25,0,0,863,867,3,254,127,0,864, + 865,5,175,0,0,865,867,3,254,127,0,866,855,1,0,0,0,866,857,1,0,0, + 0,866,860,1,0,0,0,866,862,1,0,0,0,866,864,1,0,0,0,867,49,1,0,0,0, + 868,869,5,4,0,0,869,870,5,188,0,0,870,871,3,186,93,0,871,872,5,155, + 0,0,872,873,5,146,0,0,873,51,1,0,0,0,874,875,5,4,0,0,875,876,5,188, + 0,0,876,877,3,186,93,0,877,879,5,58,0,0,878,880,3,170,85,0,879,878, + 1,0,0,0,879,880,1,0,0,0,880,889,1,0,0,0,881,882,5,145,0,0,882,884, + 3,326,163,0,883,885,5,22,0,0,884,883,1,0,0,0,884,885,1,0,0,0,885, + 890,1,0,0,0,886,887,5,154,0,0,887,888,5,145,0,0,888,890,3,244,122, + 0,889,881,1,0,0,0,889,886,1,0,0,0,890,53,1,0,0,0,891,892,5,4,0,0, + 892,893,5,212,0,0,893,895,3,188,94,0,894,896,3,204,102,0,895,894, + 1,0,0,0,895,896,1,0,0,0,896,897,1,0,0,0,897,898,5,9,0,0,898,899, + 3,208,104,0,899,55,1,0,0,0,900,901,5,4,0,0,901,902,5,212,0,0,902, + 903,3,188,94,0,903,904,5,156,0,0,904,905,5,193,0,0,905,906,3,188, + 94,0,906,57,1,0,0,0,907,908,5,4,0,0,908,909,5,212,0,0,909,910,3, + 188,94,0,910,911,5,176,0,0,911,912,5,142,0,0,912,913,7,1,0,0,913, + 914,3,380,190,0,914,59,1,0,0,0,915,916,5,4,0,0,916,917,5,188,0,0, + 917,918,3,186,93,0,918,919,5,156,0,0,919,920,5,193,0,0,920,921,3, + 186,93,0,921,61,1,0,0,0,922,923,5,4,0,0,923,924,5,212,0,0,924,925, + 3,188,94,0,925,926,7,2,0,0,926,927,5,25,0,0,927,928,3,254,127,0, + 928,63,1,0,0,0,929,931,5,196,0,0,930,932,5,188,0,0,931,930,1,0,0, + 0,931,932,1,0,0,0,932,934,1,0,0,0,933,935,3,170,85,0,934,933,1,0, + 0,0,934,935,1,0,0,0,935,936,1,0,0,0,936,937,3,186,93,0,937,65,1, + 0,0,0,938,940,5,56,0,0,939,941,5,46,0,0,940,939,1,0,0,0,940,941, + 1,0,0,0,941,943,1,0,0,0,942,944,7,3,0,0,943,942,1,0,0,0,943,944, + 1,0,0,0,944,945,1,0,0,0,945,946,3,380,190,0,946,67,1,0,0,0,947,950, + 3,70,35,0,948,950,3,72,36,0,949,947,1,0,0,0,949,948,1,0,0,0,950, + 69,1,0,0,0,951,952,5,36,0,0,952,953,5,182,0,0,953,955,3,186,93,0, + 954,956,3,312,156,0,955,954,1,0,0,0,955,956,1,0,0,0,956,969,1,0, + 0,0,957,958,5,190,0,0,958,959,5,185,0,0,959,960,5,265,0,0,960,961, + 3,386,193,0,961,967,5,266,0,0,962,963,5,157,0,0,963,964,5,265,0, + 0,964,965,3,386,193,0,965,966,5,266,0,0,966,968,1,0,0,0,967,962, + 1,0,0,0,967,968,1,0,0,0,968,970,1,0,0,0,969,957,1,0,0,0,969,970, + 1,0,0,0,970,71,1,0,0,0,971,972,5,36,0,0,972,973,5,96,0,0,973,974, + 5,182,0,0,974,980,3,186,93,0,975,976,5,145,0,0,976,977,5,265,0,0, + 977,978,3,326,163,0,978,979,5,266,0,0,979,981,1,0,0,0,980,975,1, + 0,0,0,980,981,1,0,0,0,981,73,1,0,0,0,982,989,3,86,43,0,983,989,3, + 84,42,0,984,989,3,82,41,0,985,989,3,78,39,0,986,989,3,80,40,0,987, + 989,3,76,38,0,988,982,1,0,0,0,988,983,1,0,0,0,988,984,1,0,0,0,988, + 985,1,0,0,0,988,986,1,0,0,0,988,987,1,0,0,0,989,75,1,0,0,0,990,991, + 5,58,0,0,991,993,7,0,0,0,992,994,3,170,85,0,993,992,1,0,0,0,993, + 994,1,0,0,0,994,995,1,0,0,0,995,997,3,184,92,0,996,998,7,4,0,0,997, + 996,1,0,0,0,997,998,1,0,0,0,998,77,1,0,0,0,999,1000,5,58,0,0,1000, + 1002,5,212,0,0,1001,1003,3,170,85,0,1002,1001,1,0,0,0,1002,1003, + 1,0,0,0,1003,1004,1,0,0,0,1004,1005,3,188,94,0,1005,79,1,0,0,0,1006, + 1007,5,58,0,0,1007,1009,5,188,0,0,1008,1010,3,170,85,0,1009,1008, + 1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0,1011,1013,3,186,93,0, + 1012,1014,5,22,0,0,1013,1012,1,0,0,0,1013,1014,1,0,0,0,1014,81,1, + 0,0,0,1015,1017,5,58,0,0,1016,1018,5,96,0,0,1017,1016,1,0,0,0,1017, + 1018,1,0,0,0,1018,1019,1,0,0,0,1019,1020,5,182,0,0,1020,1023,3,186, + 93,0,1021,1022,5,145,0,0,1022,1024,3,326,163,0,1023,1021,1,0,0,0, + 1023,1024,1,0,0,0,1024,83,1,0,0,0,1025,1027,5,58,0,0,1026,1028,5, + 12,0,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,1029,1,0,0,0,1029, + 1031,5,84,0,0,1030,1032,3,170,85,0,1031,1030,1,0,0,0,1031,1032,1, + 0,0,0,1032,1033,1,0,0,0,1033,1046,3,190,95,0,1034,1043,5,265,0,0, + 1035,1040,3,352,176,0,1036,1037,5,263,0,0,1037,1039,3,352,176,0, + 1038,1036,1,0,0,0,1039,1042,1,0,0,0,1040,1038,1,0,0,0,1040,1041, + 1,0,0,0,1041,1044,1,0,0,0,1042,1040,1,0,0,0,1043,1035,1,0,0,0,1043, + 1044,1,0,0,0,1044,1045,1,0,0,0,1045,1047,5,266,0,0,1046,1034,1,0, + 0,0,1046,1047,1,0,0,0,1047,85,1,0,0,0,1048,1049,5,58,0,0,1049,1050, + 5,166,0,0,1050,1051,3,384,192,0,1051,87,1,0,0,0,1052,1055,3,90,45, + 0,1053,1055,3,92,46,0,1054,1052,1,0,0,0,1054,1053,1,0,0,0,1055,89, + 1,0,0,0,1056,1057,5,86,0,0,1057,1058,5,166,0,0,1058,1059,3,384,192, + 0,1059,1060,5,193,0,0,1060,1061,5,87,0,0,1061,1062,3,384,192,0,1062, + 91,1,0,0,0,1063,1064,5,86,0,0,1064,1065,3,376,188,0,1065,1066,5, + 136,0,0,1066,1068,3,378,189,0,1067,1069,3,380,190,0,1068,1067,1, + 0,0,0,1068,1069,1,0,0,0,1069,1070,1,0,0,0,1070,1071,5,193,0,0,1071, + 1072,3,382,191,0,1072,93,1,0,0,0,1073,1076,3,96,48,0,1074,1076,3, + 98,49,0,1075,1073,1,0,0,0,1075,1074,1,0,0,0,1076,95,1,0,0,0,1077, + 1078,5,161,0,0,1078,1079,5,166,0,0,1079,1080,3,384,192,0,1080,1081, + 5,82,0,0,1081,1082,5,87,0,0,1082,1083,3,384,192,0,1083,97,1,0,0, + 0,1084,1088,5,161,0,0,1085,1086,5,86,0,0,1086,1087,5,137,0,0,1087, + 1089,5,78,0,0,1088,1085,1,0,0,0,1088,1089,1,0,0,0,1089,1090,1,0, + 0,0,1090,1091,3,376,188,0,1091,1092,5,136,0,0,1092,1094,3,378,189, + 0,1093,1095,3,380,190,0,1094,1093,1,0,0,0,1094,1095,1,0,0,0,1095, + 1096,1,0,0,0,1096,1102,5,82,0,0,1097,1103,3,382,191,0,1098,1100, + 5,166,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1101,1,0,0,0, + 1101,1103,3,384,192,0,1102,1097,1,0,0,0,1102,1099,1,0,0,0,1103,99, + 1,0,0,0,1104,1106,3,210,105,0,1105,1104,1,0,0,0,1105,1106,1,0,0, + 0,1106,1107,1,0,0,0,1107,1108,5,99,0,0,1108,1110,7,5,0,0,1109,1111, + 5,188,0,0,1110,1109,1,0,0,0,1110,1111,1,0,0,0,1111,1112,1,0,0,0, + 1112,1114,3,186,93,0,1113,1115,3,312,156,0,1114,1113,1,0,0,0,1114, + 1115,1,0,0,0,1115,1128,1,0,0,0,1116,1117,5,145,0,0,1117,1118,5,265, + 0,0,1118,1123,3,326,163,0,1119,1120,5,263,0,0,1120,1122,3,326,163, + 0,1121,1119,1,0,0,0,1122,1125,1,0,0,0,1123,1121,1,0,0,0,1123,1124, + 1,0,0,0,1124,1126,1,0,0,0,1125,1123,1,0,0,0,1126,1127,5,266,0,0, + 1127,1129,1,0,0,0,1128,1116,1,0,0,0,1128,1129,1,0,0,0,1129,1130, + 1,0,0,0,1130,1131,3,208,104,0,1131,101,1,0,0,0,1132,1135,3,104,52, + 0,1133,1135,3,106,53,0,1134,1132,1,0,0,0,1134,1133,1,0,0,0,1135, + 103,1,0,0,0,1136,1138,5,50,0,0,1137,1139,5,82,0,0,1138,1137,1,0, + 0,0,1138,1139,1,0,0,0,1139,1140,1,0,0,0,1140,1142,3,186,93,0,1141, + 1143,3,276,138,0,1142,1141,1,0,0,0,1142,1143,1,0,0,0,1143,105,1, + 0,0,0,1144,1145,5,50,0,0,1145,1150,3,186,93,0,1146,1148,5,9,0,0, + 1147,1146,1,0,0,0,1147,1148,1,0,0,0,1148,1149,1,0,0,0,1149,1151, + 3,384,192,0,1150,1147,1,0,0,0,1150,1151,1,0,0,0,1151,1152,1,0,0, + 0,1152,1161,5,82,0,0,1153,1158,3,300,150,0,1154,1155,5,263,0,0,1155, + 1157,3,300,150,0,1156,1154,1,0,0,0,1157,1160,1,0,0,0,1158,1156,1, + 0,0,0,1158,1159,1,0,0,0,1159,1162,1,0,0,0,1160,1158,1,0,0,0,1161, + 1153,1,0,0,0,1161,1162,1,0,0,0,1162,1164,1,0,0,0,1163,1165,3,276, + 138,0,1164,1163,1,0,0,0,1164,1165,1,0,0,0,1165,107,1,0,0,0,1166, + 1167,5,54,0,0,1167,1168,3,186,93,0,1168,1169,5,176,0,0,1169,1179, + 3,200,100,0,1170,1171,5,82,0,0,1171,1176,3,300,150,0,1172,1173,5, + 263,0,0,1173,1175,3,300,150,0,1174,1172,1,0,0,0,1175,1178,1,0,0, + 0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1180,1,0,0,0,1178,1176, + 1,0,0,0,1179,1170,1,0,0,0,1179,1180,1,0,0,0,1180,1182,1,0,0,0,1181, + 1183,3,276,138,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183,109,1, + 0,0,0,1184,1185,5,207,0,0,1185,1187,5,103,0,0,1186,1188,5,188,0, + 0,1187,1186,1,0,0,0,1187,1188,1,0,0,0,1188,1189,1,0,0,0,1189,1191, + 3,186,93,0,1190,1192,3,312,156,0,1191,1190,1,0,0,0,1191,1192,1,0, + 0,0,1192,1193,1,0,0,0,1193,1194,3,208,104,0,1194,111,1,0,0,0,1195, + 1208,3,132,66,0,1196,1208,3,134,67,0,1197,1208,3,136,68,0,1198,1208, + 3,130,65,0,1199,1208,3,128,64,0,1200,1208,3,126,63,0,1201,1208,3, + 124,62,0,1202,1208,3,122,61,0,1203,1208,3,120,60,0,1204,1208,3,118, + 59,0,1205,1208,3,116,58,0,1206,1208,3,114,57,0,1207,1195,1,0,0,0, + 1207,1196,1,0,0,0,1207,1197,1,0,0,0,1207,1198,1,0,0,0,1207,1199, + 1,0,0,0,1207,1200,1,0,0,0,1207,1201,1,0,0,0,1207,1202,1,0,0,0,1207, + 1203,1,0,0,0,1207,1204,1,0,0,0,1207,1205,1,0,0,0,1207,1206,1,0,0, + 0,1208,113,1,0,0,0,1209,1210,5,179,0,0,1210,1222,7,6,0,0,1211,1213, + 5,115,0,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0, + 1214,1219,3,338,169,0,1215,1216,5,271,0,0,1216,1218,3,338,169,0, + 1217,1215,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219,1220, + 1,0,0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1222,1212,1,0,0,0,1222, + 1223,1,0,0,0,1223,115,1,0,0,0,1224,1225,5,179,0,0,1225,1228,5,189, + 0,0,1226,1227,5,94,0,0,1227,1229,3,186,93,0,1228,1226,1,0,0,0,1228, + 1229,1,0,0,0,1229,1241,1,0,0,0,1230,1232,5,115,0,0,1231,1230,1,0, + 0,0,1231,1232,1,0,0,0,1232,1233,1,0,0,0,1233,1238,3,338,169,0,1234, + 1235,5,271,0,0,1235,1237,3,338,169,0,1236,1234,1,0,0,0,1237,1240, + 1,0,0,0,1238,1236,1,0,0,0,1238,1239,1,0,0,0,1239,1242,1,0,0,0,1240, + 1238,1,0,0,0,1241,1231,1,0,0,0,1241,1242,1,0,0,0,1242,117,1,0,0, + 0,1243,1245,5,179,0,0,1244,1246,7,7,0,0,1245,1244,1,0,0,0,1245,1246, + 1,0,0,0,1246,1247,1,0,0,0,1247,1250,5,85,0,0,1248,1249,5,94,0,0, + 1249,1251,3,184,92,0,1250,1248,1,0,0,0,1250,1251,1,0,0,0,1251,1263, + 1,0,0,0,1252,1254,5,115,0,0,1253,1252,1,0,0,0,1253,1254,1,0,0,0, + 1254,1255,1,0,0,0,1255,1260,3,338,169,0,1256,1257,5,271,0,0,1257, + 1259,3,338,169,0,1258,1256,1,0,0,0,1259,1262,1,0,0,0,1260,1258,1, + 0,0,0,1260,1261,1,0,0,0,1261,1264,1,0,0,0,1262,1260,1,0,0,0,1263, + 1253,1,0,0,0,1263,1264,1,0,0,0,1264,119,1,0,0,0,1265,1266,5,179, + 0,0,1266,1267,5,37,0,0,1267,1268,5,188,0,0,1268,1269,3,186,93,0, + 1269,121,1,0,0,0,1270,1271,5,179,0,0,1271,1272,5,37,0,0,1272,1273, + 5,212,0,0,1273,1274,3,188,94,0,1274,123,1,0,0,0,1275,1276,5,179, + 0,0,1276,1277,5,188,0,0,1277,1278,5,182,0,0,1278,1279,3,186,93,0, + 1279,125,1,0,0,0,1280,1281,5,179,0,0,1281,1282,5,32,0,0,1282,1283, + 5,182,0,0,1283,1284,3,186,93,0,1284,127,1,0,0,0,1285,1287,5,179, + 0,0,1286,1288,5,154,0,0,1287,1286,1,0,0,0,1287,1288,1,0,0,0,1288, + 1289,1,0,0,0,1289,1290,5,146,0,0,1290,1291,3,186,93,0,1291,129,1, + 0,0,0,1292,1293,5,179,0,0,1293,1294,5,73,0,0,1294,1295,5,94,0,0, + 1295,1305,3,186,93,0,1296,1297,5,145,0,0,1297,1298,5,265,0,0,1298, + 1301,3,326,163,0,1299,1300,5,263,0,0,1300,1302,3,326,163,0,1301, + 1299,1,0,0,0,1301,1302,1,0,0,0,1302,1303,1,0,0,0,1303,1304,5,266, + 0,0,1304,1306,1,0,0,0,1305,1296,1,0,0,0,1305,1306,1,0,0,0,1306,131, + 1,0,0,0,1307,1309,5,179,0,0,1308,1310,5,39,0,0,1309,1308,1,0,0,0, + 1309,1310,1,0,0,0,1310,1311,1,0,0,0,1311,1312,5,167,0,0,1312,133, + 1,0,0,0,1313,1314,5,179,0,0,1314,1315,5,166,0,0,1315,1316,5,86,0, + 0,1316,1317,5,87,0,0,1317,1318,3,384,192,0,1318,135,1,0,0,0,1319, + 1334,3,138,69,0,1320,1334,3,140,70,0,1321,1334,3,142,71,0,1322,1323, + 5,179,0,0,1323,1324,5,86,0,0,1324,1325,7,8,0,0,1325,1331,3,384,192, + 0,1326,1327,5,136,0,0,1327,1329,7,9,0,0,1328,1330,3,380,190,0,1329, + 1328,1,0,0,0,1329,1330,1,0,0,0,1330,1332,1,0,0,0,1331,1326,1,0,0, + 0,1331,1332,1,0,0,0,1332,1334,1,0,0,0,1333,1319,1,0,0,0,1333,1320, + 1,0,0,0,1333,1321,1,0,0,0,1333,1322,1,0,0,0,1334,137,1,0,0,0,1335, + 1336,5,179,0,0,1336,1337,5,86,0,0,1337,1338,7,8,0,0,1338,1344,3, + 384,192,0,1339,1340,5,136,0,0,1340,1342,5,46,0,0,1341,1343,3,184, + 92,0,1342,1341,1,0,0,0,1342,1343,1,0,0,0,1343,1345,1,0,0,0,1344, + 1339,1,0,0,0,1344,1345,1,0,0,0,1345,139,1,0,0,0,1346,1347,5,179, + 0,0,1347,1348,5,86,0,0,1348,1349,7,8,0,0,1349,1355,3,384,192,0,1350, + 1351,5,136,0,0,1351,1353,5,188,0,0,1352,1354,3,186,93,0,1353,1352, + 1,0,0,0,1353,1354,1,0,0,0,1354,1356,1,0,0,0,1355,1350,1,0,0,0,1355, + 1356,1,0,0,0,1356,141,1,0,0,0,1357,1358,5,179,0,0,1358,1359,5,86, + 0,0,1359,1360,7,8,0,0,1360,1366,3,384,192,0,1361,1362,5,136,0,0, + 1362,1364,5,32,0,0,1363,1365,3,192,96,0,1364,1363,1,0,0,0,1364,1365, + 1,0,0,0,1365,1367,1,0,0,0,1366,1361,1,0,0,0,1366,1367,1,0,0,0,1367, + 143,1,0,0,0,1368,1372,3,146,73,0,1369,1372,3,148,74,0,1370,1372, + 3,150,75,0,1371,1368,1,0,0,0,1371,1369,1,0,0,0,1371,1370,1,0,0,0, + 1372,145,1,0,0,0,1373,1374,5,34,0,0,1374,1375,5,136,0,0,1375,1376, + 5,46,0,0,1376,1377,3,184,92,0,1377,1380,5,108,0,0,1378,1381,3,338, + 169,0,1379,1381,5,133,0,0,1380,1378,1,0,0,0,1380,1379,1,0,0,0,1381, + 147,1,0,0,0,1382,1383,5,34,0,0,1383,1384,5,136,0,0,1384,1385,5,188, + 0,0,1385,1386,3,186,93,0,1386,1389,5,108,0,0,1387,1390,3,338,169, + 0,1388,1390,5,133,0,0,1389,1387,1,0,0,0,1389,1388,1,0,0,0,1390,149, + 1,0,0,0,1391,1392,5,34,0,0,1392,1393,5,136,0,0,1393,1394,5,32,0, + 0,1394,1395,3,192,96,0,1395,1398,5,108,0,0,1396,1399,3,338,169,0, + 1397,1399,5,133,0,0,1398,1396,1,0,0,0,1398,1397,1,0,0,0,1399,151, + 1,0,0,0,1400,1401,5,67,0,0,1401,1402,3,4,2,0,1402,153,1,0,0,0,1403, + 1409,5,176,0,0,1404,1410,5,2,0,0,1405,1406,3,384,192,0,1406,1407, + 5,249,0,0,1407,1408,3,326,163,0,1408,1410,1,0,0,0,1409,1404,1,0, + 0,0,1409,1405,1,0,0,0,1409,1410,1,0,0,0,1410,155,1,0,0,0,1411,1412, + 5,264,0,0,1412,1413,5,180,0,0,1413,1423,5,265,0,0,1414,1416,3,338, + 169,0,1415,1414,1,0,0,0,1415,1416,1,0,0,0,1416,1424,1,0,0,0,1417, + 1420,3,338,169,0,1418,1419,5,263,0,0,1419,1421,3,326,163,0,1420, + 1418,1,0,0,0,1420,1421,1,0,0,0,1421,1424,1,0,0,0,1422,1424,3,326, + 163,0,1423,1415,1,0,0,0,1423,1417,1,0,0,0,1423,1422,1,0,0,0,1424, + 1425,1,0,0,0,1425,1426,5,266,0,0,1426,157,1,0,0,0,1427,1428,5,107, + 0,0,1428,1429,5,121,0,0,1429,1430,3,186,93,0,1430,159,1,0,0,0,1431, + 1432,5,118,0,0,1432,1433,5,45,0,0,1433,1434,5,98,0,0,1434,1436,5, + 274,0,0,1435,1437,5,144,0,0,1436,1435,1,0,0,0,1436,1437,1,0,0,0, + 1437,1438,1,0,0,0,1438,1439,5,103,0,0,1439,1440,5,188,0,0,1440,1450, + 3,186,93,0,1441,1442,5,145,0,0,1442,1443,5,265,0,0,1443,1446,3,326, + 163,0,1444,1445,5,263,0,0,1445,1447,3,326,163,0,1446,1444,1,0,0, + 0,1446,1447,1,0,0,0,1447,1448,1,0,0,0,1448,1449,5,266,0,0,1449,1451, + 1,0,0,0,1450,1441,1,0,0,0,1450,1451,1,0,0,0,1451,161,1,0,0,0,1452, + 1456,3,164,82,0,1453,1456,3,166,83,0,1454,1456,3,168,84,0,1455,1452, + 1,0,0,0,1455,1453,1,0,0,0,1455,1454,1,0,0,0,1456,163,1,0,0,0,1457, + 1458,5,162,0,0,1458,1471,3,186,93,0,1459,1460,5,145,0,0,1460,1461, + 5,265,0,0,1461,1466,3,326,163,0,1462,1463,5,263,0,0,1463,1465,3, + 326,163,0,1464,1462,1,0,0,0,1465,1468,1,0,0,0,1466,1467,1,0,0,0, + 1466,1464,1,0,0,0,1467,1469,1,0,0,0,1468,1466,1,0,0,0,1469,1470, + 5,266,0,0,1470,1472,1,0,0,0,1471,1459,1,0,0,0,1471,1472,1,0,0,0, + 1472,165,1,0,0,0,1473,1474,5,162,0,0,1474,1475,5,13,0,0,1475,167, + 1,0,0,0,1476,1477,5,162,0,0,1477,1478,5,85,0,0,1478,1479,3,190,95, + 0,1479,169,1,0,0,0,1480,1481,5,93,0,0,1481,1482,5,66,0,0,1482,171, + 1,0,0,0,1483,1484,5,93,0,0,1484,1485,5,132,0,0,1485,1486,5,66,0, + 0,1486,173,1,0,0,0,1487,1488,3,380,190,0,1488,175,1,0,0,0,1489,1490, + 3,380,190,0,1490,177,1,0,0,0,1491,1492,3,380,190,0,1492,179,1,0, + 0,0,1493,1494,3,380,190,0,1494,181,1,0,0,0,1495,1496,3,380,190,0, + 1496,183,1,0,0,0,1497,1498,3,380,190,0,1498,185,1,0,0,0,1499,1504, + 3,384,192,0,1500,1501,5,261,0,0,1501,1503,3,384,192,0,1502,1500, + 1,0,0,0,1503,1506,1,0,0,0,1504,1502,1,0,0,0,1504,1505,1,0,0,0,1505, + 187,1,0,0,0,1506,1504,1,0,0,0,1507,1512,3,384,192,0,1508,1509,5, + 261,0,0,1509,1511,3,384,192,0,1510,1508,1,0,0,0,1511,1514,1,0,0, + 0,1512,1510,1,0,0,0,1512,1513,1,0,0,0,1513,189,1,0,0,0,1514,1512, + 1,0,0,0,1515,1518,3,388,194,0,1516,1518,3,380,190,0,1517,1515,1, + 0,0,0,1517,1516,1,0,0,0,1518,191,1,0,0,0,1519,1522,3,380,190,0,1520, + 1522,4,96,0,0,1521,1519,1,0,0,0,1521,1520,1,0,0,0,1522,193,1,0,0, + 0,1523,1524,3,380,190,0,1524,195,1,0,0,0,1525,1528,3,186,93,0,1526, + 1528,3,188,94,0,1527,1525,1,0,0,0,1527,1526,1,0,0,0,1528,197,1,0, + 0,0,1529,1530,5,21,0,0,1530,1531,5,26,0,0,1531,1533,3,312,156,0, + 1532,1529,1,0,0,0,1532,1533,1,0,0,0,1533,1535,1,0,0,0,1534,1536, + 3,224,112,0,1535,1534,1,0,0,0,1535,1536,1,0,0,0,1536,1540,1,0,0, + 0,1537,1538,5,168,0,0,1538,1539,5,79,0,0,1539,1541,3,260,130,0,1540, + 1537,1,0,0,0,1540,1541,1,0,0,0,1541,1545,1,0,0,0,1542,1543,5,216, + 0,0,1543,1544,5,175,0,0,1544,1546,3,254,127,0,1545,1542,1,0,0,0, + 1545,1546,1,0,0,0,1546,1550,1,0,0,0,1547,1548,5,23,0,0,1548,1549, + 5,9,0,0,1549,1551,3,236,118,0,1550,1547,1,0,0,0,1550,1551,1,0,0, + 0,1551,1554,1,0,0,0,1552,1553,5,24,0,0,1553,1555,3,338,169,0,1554, + 1552,1,0,0,0,1554,1555,1,0,0,0,1555,1566,1,0,0,0,1556,1557,5,30, + 0,0,1557,1558,5,94,0,0,1558,1563,3,380,190,0,1559,1560,5,216,0,0, + 1560,1561,5,151,0,0,1561,1562,5,249,0,0,1562,1564,5,277,0,0,1563, + 1559,1,0,0,0,1563,1564,1,0,0,0,1564,1567,1,0,0,0,1565,1567,5,197, + 0,0,1566,1556,1,0,0,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567,1570, + 1,0,0,0,1568,1569,5,25,0,0,1569,1571,3,254,127,0,1570,1568,1,0,0, + 0,1570,1571,1,0,0,0,1571,199,1,0,0,0,1572,1577,3,202,101,0,1573, + 1574,5,263,0,0,1574,1576,3,202,101,0,1575,1573,1,0,0,0,1576,1579, + 1,0,0,0,1577,1575,1,0,0,0,1577,1578,1,0,0,0,1578,201,1,0,0,0,1579, + 1577,1,0,0,0,1580,1581,3,380,190,0,1581,1582,5,249,0,0,1582,1583, + 3,326,163,0,1583,203,1,0,0,0,1584,1586,5,265,0,0,1585,1587,3,206, + 103,0,1586,1585,1,0,0,0,1586,1587,1,0,0,0,1587,1594,1,0,0,0,1588, + 1590,5,263,0,0,1589,1591,3,206,103,0,1590,1589,1,0,0,0,1590,1591, + 1,0,0,0,1591,1593,1,0,0,0,1592,1588,1,0,0,0,1593,1596,1,0,0,0,1594, + 1592,1,0,0,0,1594,1595,1,0,0,0,1595,1597,1,0,0,0,1596,1594,1,0,0, + 0,1597,1598,5,266,0,0,1598,205,1,0,0,0,1599,1601,3,182,91,0,1600, + 1602,3,224,112,0,1601,1600,1,0,0,0,1601,1602,1,0,0,0,1602,207,1, + 0,0,0,1603,1605,3,210,105,0,1604,1603,1,0,0,0,1604,1605,1,0,0,0, + 1605,1606,1,0,0,0,1606,1607,3,264,132,0,1607,209,1,0,0,0,1608,1609, + 5,216,0,0,1609,1614,3,286,143,0,1610,1611,5,263,0,0,1611,1613,3, + 286,143,0,1612,1610,1,0,0,0,1613,1616,1,0,0,0,1614,1612,1,0,0,0, + 1614,1615,1,0,0,0,1615,211,1,0,0,0,1616,1614,1,0,0,0,1617,1618,5, + 150,0,0,1618,1619,5,110,0,0,1619,1621,3,312,156,0,1620,1622,5,53, + 0,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0,1622,1626,1,0,0,0,1623,1627, + 5,225,0,0,1624,1625,5,263,0,0,1625,1627,5,225,0,0,1626,1623,1,0, + 0,0,1626,1624,1,0,0,0,1626,1627,1,0,0,0,1627,1631,1,0,0,0,1628,1632, + 5,226,0,0,1629,1630,5,263,0,0,1630,1632,5,226,0,0,1631,1628,1,0, + 0,0,1631,1629,1,0,0,0,1631,1632,1,0,0,0,1632,1645,1,0,0,0,1633,1634, + 5,263,0,0,1634,1637,3,214,107,0,1635,1637,3,214,107,0,1636,1633, + 1,0,0,0,1636,1635,1,0,0,0,1637,1642,1,0,0,0,1638,1639,5,263,0,0, + 1639,1641,3,214,107,0,1640,1638,1,0,0,0,1641,1644,1,0,0,0,1642,1643, + 1,0,0,0,1642,1640,1,0,0,0,1643,1646,1,0,0,0,1644,1642,1,0,0,0,1645, + 1636,1,0,0,0,1645,1646,1,0,0,0,1646,213,1,0,0,0,1647,1648,5,81,0, + 0,1648,1649,5,110,0,0,1649,1650,3,312,156,0,1650,1651,5,224,0,0, + 1651,1652,3,186,93,0,1652,1654,3,312,156,0,1653,1655,5,53,0,0,1654, + 1653,1,0,0,0,1654,1655,1,0,0,0,1655,1657,1,0,0,0,1656,1658,5,225, + 0,0,1657,1656,1,0,0,0,1657,1658,1,0,0,0,1658,1660,1,0,0,0,1659,1661, + 5,226,0,0,1660,1659,1,0,0,0,1660,1661,1,0,0,0,1661,215,1,0,0,0,1662, + 1663,3,192,96,0,1663,1666,3,352,176,0,1664,1665,5,34,0,0,1665,1667, + 3,338,169,0,1666,1664,1,0,0,0,1666,1667,1,0,0,0,1667,217,1,0,0,0, + 1668,1669,3,182,91,0,1669,1671,3,352,176,0,1670,1672,3,224,112,0, + 1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672,219,1,0,0,0,1673,1674,3, + 222,111,0,1674,221,1,0,0,0,1675,1676,3,182,91,0,1676,1684,3,352, + 176,0,1677,1681,3,230,115,0,1678,1680,3,230,115,0,1679,1678,1,0, + 0,0,1680,1683,1,0,0,0,1681,1682,1,0,0,0,1681,1679,1,0,0,0,1682,1685, + 1,0,0,0,1683,1681,1,0,0,0,1684,1677,1,0,0,0,1684,1685,1,0,0,0,1685, + 1687,1,0,0,0,1686,1688,3,224,112,0,1687,1686,1,0,0,0,1687,1688,1, + 0,0,0,1688,1691,1,0,0,0,1689,1690,5,150,0,0,1690,1692,5,110,0,0, + 1691,1689,1,0,0,0,1691,1692,1,0,0,0,1692,223,1,0,0,0,1693,1694,5, + 34,0,0,1694,1695,3,338,169,0,1695,225,1,0,0,0,1696,1704,3,216,108, + 0,1697,1701,3,230,115,0,1698,1700,3,230,115,0,1699,1698,1,0,0,0, + 1700,1703,1,0,0,0,1701,1702,1,0,0,0,1701,1699,1,0,0,0,1702,1705, + 1,0,0,0,1703,1701,1,0,0,0,1704,1697,1,0,0,0,1704,1705,1,0,0,0,1705, + 227,1,0,0,0,1706,1707,3,182,91,0,1707,1710,3,352,176,0,1708,1709, + 5,34,0,0,1709,1711,3,338,169,0,1710,1708,1,0,0,0,1710,1711,1,0,0, + 0,1711,1719,1,0,0,0,1712,1716,3,230,115,0,1713,1715,3,230,115,0, + 1714,1713,1,0,0,0,1715,1718,1,0,0,0,1716,1717,1,0,0,0,1716,1714, + 1,0,0,0,1717,1720,1,0,0,0,1718,1716,1,0,0,0,1719,1712,1,0,0,0,1719, + 1720,1,0,0,0,1720,229,1,0,0,0,1721,1723,5,132,0,0,1722,1721,1,0, + 0,0,1722,1723,1,0,0,0,1723,1724,1,0,0,0,1724,1727,5,133,0,0,1725, + 1727,3,232,116,0,1726,1722,1,0,0,0,1726,1725,1,0,0,0,1727,231,1, + 0,0,0,1728,1729,5,60,0,0,1729,1737,3,326,163,0,1730,1731,5,35,0, + 0,1731,1737,3,326,163,0,1732,1733,5,51,0,0,1733,1737,3,326,163,0, + 1734,1735,5,16,0,0,1735,1737,3,386,193,0,1736,1728,1,0,0,0,1736, + 1730,1,0,0,0,1736,1732,1,0,0,0,1736,1734,1,0,0,0,1737,233,1,0,0, + 0,1738,1739,7,10,0,0,1739,235,1,0,0,0,1740,1741,7,11,0,0,1741,237, + 1,0,0,0,1742,1747,3,240,120,0,1743,1744,5,263,0,0,1744,1746,3,240, + 120,0,1745,1743,1,0,0,0,1746,1749,1,0,0,0,1747,1748,1,0,0,0,1747, + 1745,1,0,0,0,1748,1752,1,0,0,0,1749,1747,1,0,0,0,1750,1751,5,263, + 0,0,1751,1753,3,242,121,0,1752,1750,1,0,0,0,1752,1753,1,0,0,0,1753, + 1756,1,0,0,0,1754,1756,3,242,121,0,1755,1742,1,0,0,0,1755,1754,1, + 0,0,0,1756,239,1,0,0,0,1757,1759,5,89,0,0,1758,1760,3,312,156,0, + 1759,1758,1,0,0,0,1759,1760,1,0,0,0,1760,1761,1,0,0,0,1761,1762, + 5,146,0,0,1762,1763,3,386,193,0,1763,241,1,0,0,0,1764,1766,5,154, + 0,0,1765,1767,3,312,156,0,1766,1765,1,0,0,0,1766,1767,1,0,0,0,1767, + 1768,1,0,0,0,1768,1769,5,265,0,0,1769,1770,5,145,0,0,1770,1776,3, + 244,122,0,1771,1772,5,263,0,0,1772,1773,5,145,0,0,1773,1775,3,244, + 122,0,1774,1771,1,0,0,0,1775,1778,1,0,0,0,1776,1777,1,0,0,0,1776, + 1774,1,0,0,0,1777,1779,1,0,0,0,1778,1776,1,0,0,0,1779,1780,5,266, + 0,0,1780,243,1,0,0,0,1781,1782,5,210,0,0,1782,1783,3,250,125,0,1783, + 1784,3,326,163,0,1784,1797,1,0,0,0,1785,1786,3,326,163,0,1786,1787, + 3,248,124,0,1787,1789,1,0,0,0,1788,1785,1,0,0,0,1788,1789,1,0,0, + 0,1789,1790,1,0,0,0,1790,1794,5,211,0,0,1791,1792,3,248,124,0,1792, + 1793,3,326,163,0,1793,1795,1,0,0,0,1794,1791,1,0,0,0,1794,1795,1, + 0,0,0,1795,1797,1,0,0,0,1796,1781,1,0,0,0,1796,1788,1,0,0,0,1797, + 245,1,0,0,0,1798,1799,5,30,0,0,1799,1800,5,94,0,0,1800,1805,3,384, + 192,0,1801,1802,5,216,0,0,1802,1803,5,151,0,0,1803,1804,5,249,0, + 0,1804,1806,3,386,193,0,1805,1801,1,0,0,0,1805,1806,1,0,0,0,1806, + 1809,1,0,0,0,1807,1809,5,197,0,0,1808,1798,1,0,0,0,1808,1807,1,0, + 0,0,1809,247,1,0,0,0,1810,1816,1,0,0,0,1811,1816,5,251,0,0,1812, + 1816,5,252,0,0,1813,1816,5,253,0,0,1814,1816,5,254,0,0,1815,1810, + 1,0,0,0,1815,1811,1,0,0,0,1815,1812,1,0,0,0,1815,1813,1,0,0,0,1815, + 1814,1,0,0,0,1816,249,1,0,0,0,1817,1826,5,249,0,0,1818,1826,5,250, + 0,0,1819,1826,5,115,0,0,1820,1826,5,164,0,0,1821,1826,5,163,0,0, + 1822,1826,5,15,0,0,1823,1826,5,94,0,0,1824,1826,3,248,124,0,1825, + 1817,1,0,0,0,1825,1818,1,0,0,0,1825,1819,1,0,0,0,1825,1820,1,0,0, + 0,1825,1821,1,0,0,0,1825,1822,1,0,0,0,1825,1823,1,0,0,0,1825,1824, + 1,0,0,0,1826,251,1,0,0,0,1827,1828,5,115,0,0,1828,1831,3,380,190, + 0,1829,1830,7,12,0,0,1830,1832,5,153,0,0,1831,1829,1,0,0,0,1831, + 1832,1,0,0,0,1832,253,1,0,0,0,1833,1834,5,265,0,0,1834,1839,3,262, + 131,0,1835,1836,5,263,0,0,1836,1838,3,262,131,0,1837,1835,1,0,0, + 0,1838,1841,1,0,0,0,1839,1837,1,0,0,0,1839,1840,1,0,0,0,1840,1842, + 1,0,0,0,1841,1839,1,0,0,0,1842,1843,5,266,0,0,1843,255,1,0,0,0,1844, + 1845,5,265,0,0,1845,1850,3,216,108,0,1846,1847,5,263,0,0,1847,1849, + 3,216,108,0,1848,1846,1,0,0,0,1849,1852,1,0,0,0,1850,1851,1,0,0, + 0,1850,1848,1,0,0,0,1851,1853,1,0,0,0,1852,1850,1,0,0,0,1853,1854, + 5,266,0,0,1854,257,1,0,0,0,1855,1860,3,326,163,0,1856,1857,5,263, + 0,0,1857,1859,3,326,163,0,1858,1856,1,0,0,0,1859,1862,1,0,0,0,1860, + 1858,1,0,0,0,1860,1861,1,0,0,0,1861,259,1,0,0,0,1862,1860,1,0,0, + 0,1863,1873,5,52,0,0,1864,1865,5,71,0,0,1865,1866,5,191,0,0,1866, + 1867,5,26,0,0,1867,1871,3,338,169,0,1868,1869,5,63,0,0,1869,1870, + 5,26,0,0,1870,1872,3,338,169,0,1871,1868,1,0,0,0,1871,1872,1,0,0, + 0,1872,1874,1,0,0,0,1873,1864,1,0,0,0,1873,1874,1,0,0,0,1874,1879, + 1,0,0,0,1875,1876,5,117,0,0,1876,1877,5,191,0,0,1877,1878,5,26,0, + 0,1878,1880,3,338,169,0,1879,1875,1,0,0,0,1879,1880,1,0,0,0,1880, + 261,1,0,0,0,1881,1884,3,384,192,0,1882,1883,5,249,0,0,1883,1885, + 3,326,163,0,1884,1882,1,0,0,0,1884,1885,1,0,0,0,1885,263,1,0,0,0, + 1886,1897,3,266,133,0,1887,1888,5,139,0,0,1888,1889,5,26,0,0,1889, + 1894,3,270,135,0,1890,1891,5,263,0,0,1891,1893,3,270,135,0,1892, + 1890,1,0,0,0,1893,1896,1,0,0,0,1894,1892,1,0,0,0,1894,1895,1,0,0, + 0,1895,1898,1,0,0,0,1896,1894,1,0,0,0,1897,1887,1,0,0,0,1897,1898, + 1,0,0,0,1898,1905,1,0,0,0,1899,1900,5,116,0,0,1900,1903,3,326,163, + 0,1901,1902,5,135,0,0,1902,1904,5,277,0,0,1903,1901,1,0,0,0,1903, + 1904,1,0,0,0,1904,1906,1,0,0,0,1905,1899,1,0,0,0,1905,1906,1,0,0, + 0,1906,265,1,0,0,0,1907,1908,6,133,-1,0,1908,1909,3,268,134,0,1909, + 1924,1,0,0,0,1910,1911,10,2,0,0,1911,1913,5,100,0,0,1912,1914,3, + 288,144,0,1913,1912,1,0,0,0,1913,1914,1,0,0,0,1914,1915,1,0,0,0, + 1915,1923,3,266,133,3,1916,1917,10,1,0,0,1917,1919,7,13,0,0,1918, + 1920,3,288,144,0,1919,1918,1,0,0,0,1919,1920,1,0,0,0,1920,1921,1, + 0,0,0,1921,1923,3,266,133,2,1922,1910,1,0,0,0,1922,1916,1,0,0,0, + 1923,1926,1,0,0,0,1924,1922,1,0,0,0,1924,1925,1,0,0,0,1925,267,1, + 0,0,0,1926,1924,1,0,0,0,1927,1944,3,272,136,0,1928,1929,5,188,0, + 0,1929,1944,3,186,93,0,1930,1931,5,211,0,0,1931,1936,3,326,163,0, + 1932,1933,5,263,0,0,1933,1935,3,326,163,0,1934,1932,1,0,0,0,1935, + 1938,1,0,0,0,1936,1934,1,0,0,0,1936,1937,1,0,0,0,1937,1944,1,0,0, + 0,1938,1936,1,0,0,0,1939,1940,5,265,0,0,1940,1941,3,264,132,0,1941, + 1942,5,266,0,0,1942,1944,1,0,0,0,1943,1927,1,0,0,0,1943,1928,1,0, + 0,0,1943,1930,1,0,0,0,1943,1939,1,0,0,0,1944,269,1,0,0,0,1945,1947, + 3,324,162,0,1946,1948,7,14,0,0,1947,1946,1,0,0,0,1947,1948,1,0,0, + 0,1948,1951,1,0,0,0,1949,1950,5,134,0,0,1950,1952,7,15,0,0,1951, + 1949,1,0,0,0,1951,1952,1,0,0,0,1952,271,1,0,0,0,1953,1955,5,174, + 0,0,1954,1956,3,288,144,0,1955,1954,1,0,0,0,1955,1956,1,0,0,0,1956, + 1958,1,0,0,0,1957,1959,5,183,0,0,1958,1957,1,0,0,0,1958,1959,1,0, + 0,0,1959,1960,1,0,0,0,1960,1970,3,274,137,0,1961,1962,5,82,0,0,1962, + 1967,3,300,150,0,1963,1964,5,263,0,0,1964,1966,3,300,150,0,1965, + 1963,1,0,0,0,1966,1969,1,0,0,0,1967,1965,1,0,0,0,1967,1968,1,0,0, + 0,1968,1971,1,0,0,0,1969,1967,1,0,0,0,1970,1961,1,0,0,0,1970,1971, + 1,0,0,0,1971,1973,1,0,0,0,1972,1974,3,276,138,0,1973,1972,1,0,0, + 0,1973,1974,1,0,0,0,1974,1978,1,0,0,0,1975,1976,5,87,0,0,1976,1977, + 5,26,0,0,1977,1979,3,280,140,0,1978,1975,1,0,0,0,1978,1979,1,0,0, + 0,1979,1981,1,0,0,0,1980,1982,3,278,139,0,1981,1980,1,0,0,0,1981, + 1982,1,0,0,0,1982,273,1,0,0,0,1983,1988,3,290,145,0,1984,1985,5, + 263,0,0,1985,1987,3,290,145,0,1986,1984,1,0,0,0,1987,1990,1,0,0, + 0,1988,1986,1,0,0,0,1988,1989,1,0,0,0,1989,275,1,0,0,0,1990,1988, + 1,0,0,0,1991,1992,5,215,0,0,1992,1993,3,328,164,0,1993,277,1,0,0, + 0,1994,1995,5,90,0,0,1995,1996,3,328,164,0,1996,279,1,0,0,0,1997, + 1999,3,288,144,0,1998,1997,1,0,0,0,1998,1999,1,0,0,0,1999,2000,1, + 0,0,0,2000,2005,3,282,141,0,2001,2002,5,263,0,0,2002,2004,3,282, + 141,0,2003,2001,1,0,0,0,2004,2007,1,0,0,0,2005,2003,1,0,0,0,2005, + 2006,1,0,0,0,2006,281,1,0,0,0,2007,2005,1,0,0,0,2008,2009,3,284, + 142,0,2009,283,1,0,0,0,2010,2019,5,265,0,0,2011,2016,3,324,162,0, + 2012,2013,5,263,0,0,2013,2015,3,324,162,0,2014,2012,1,0,0,0,2015, + 2018,1,0,0,0,2016,2014,1,0,0,0,2016,2017,1,0,0,0,2017,2020,1,0,0, + 0,2018,2016,1,0,0,0,2019,2011,1,0,0,0,2019,2020,1,0,0,0,2020,2021, + 1,0,0,0,2021,2024,5,266,0,0,2022,2024,3,324,162,0,2023,2010,1,0, + 0,0,2023,2022,1,0,0,0,2024,285,1,0,0,0,2025,2027,3,384,192,0,2026, + 2028,3,312,156,0,2027,2026,1,0,0,0,2027,2028,1,0,0,0,2028,2029,1, + 0,0,0,2029,2030,5,9,0,0,2030,2031,3,318,159,0,2031,287,1,0,0,0,2032, + 2033,7,16,0,0,2033,289,1,0,0,0,2034,2036,3,294,147,0,2035,2037,3, + 292,146,0,2036,2035,1,0,0,0,2036,2037,1,0,0,0,2037,2044,1,0,0,0, + 2038,2040,3,296,148,0,2039,2041,3,292,146,0,2040,2039,1,0,0,0,2040, + 2041,1,0,0,0,2041,2044,1,0,0,0,2042,2044,3,298,149,0,2043,2034,1, + 0,0,0,2043,2038,1,0,0,0,2043,2042,1,0,0,0,2044,291,1,0,0,0,2045, + 2047,5,9,0,0,2046,2045,1,0,0,0,2046,2047,1,0,0,0,2047,2048,1,0,0, + 0,2048,2049,3,384,192,0,2049,293,1,0,0,0,2050,2051,3,192,96,0,2051, + 295,1,0,0,0,2052,2053,3,326,163,0,2053,297,1,0,0,0,2054,2055,3,380, + 190,0,2055,2056,5,261,0,0,2056,2058,1,0,0,0,2057,2054,1,0,0,0,2057, + 2058,1,0,0,0,2058,2059,1,0,0,0,2059,2060,5,257,0,0,2060,299,1,0, + 0,0,2061,2062,6,150,-1,0,2062,2063,3,306,153,0,2063,2077,1,0,0,0, + 2064,2073,10,2,0,0,2065,2066,5,38,0,0,2066,2067,5,109,0,0,2067,2074, + 3,306,153,0,2068,2069,3,302,151,0,2069,2070,5,109,0,0,2070,2071, + 3,300,150,0,2071,2072,3,304,152,0,2072,2074,1,0,0,0,2073,2065,1, + 0,0,0,2073,2068,1,0,0,0,2074,2076,1,0,0,0,2075,2064,1,0,0,0,2076, + 2079,1,0,0,0,2077,2075,1,0,0,0,2077,2078,1,0,0,0,2078,301,1,0,0, + 0,2079,2077,1,0,0,0,2080,2082,5,97,0,0,2081,2080,1,0,0,0,2081,2082, + 1,0,0,0,2082,2112,1,0,0,0,2083,2085,5,114,0,0,2084,2086,5,97,0,0, + 2085,2084,1,0,0,0,2085,2086,1,0,0,0,2086,2112,1,0,0,0,2087,2089, + 5,165,0,0,2088,2090,5,97,0,0,2089,2088,1,0,0,0,2089,2090,1,0,0,0, + 2090,2112,1,0,0,0,2091,2093,5,114,0,0,2092,2094,5,141,0,0,2093,2092, + 1,0,0,0,2093,2094,1,0,0,0,2094,2112,1,0,0,0,2095,2097,5,165,0,0, + 2096,2098,5,141,0,0,2097,2096,1,0,0,0,2097,2098,1,0,0,0,2098,2112, + 1,0,0,0,2099,2101,5,83,0,0,2100,2102,5,141,0,0,2101,2100,1,0,0,0, + 2101,2102,1,0,0,0,2102,2112,1,0,0,0,2103,2104,5,114,0,0,2104,2112, + 5,177,0,0,2105,2106,5,165,0,0,2106,2112,5,177,0,0,2107,2108,5,114, + 0,0,2108,2112,5,7,0,0,2109,2110,5,165,0,0,2110,2112,5,7,0,0,2111, + 2081,1,0,0,0,2111,2083,1,0,0,0,2111,2087,1,0,0,0,2111,2091,1,0,0, + 0,2111,2095,1,0,0,0,2111,2099,1,0,0,0,2111,2103,1,0,0,0,2111,2105, + 1,0,0,0,2111,2107,1,0,0,0,2111,2109,1,0,0,0,2112,303,1,0,0,0,2113, + 2114,5,136,0,0,2114,2128,3,328,164,0,2115,2116,5,205,0,0,2116,2117, + 5,265,0,0,2117,2122,3,384,192,0,2118,2119,5,263,0,0,2119,2121,3, + 384,192,0,2120,2118,1,0,0,0,2121,2124,1,0,0,0,2122,2120,1,0,0,0, + 2122,2123,1,0,0,0,2123,2125,1,0,0,0,2124,2122,1,0,0,0,2125,2126, + 5,266,0,0,2126,2128,1,0,0,0,2127,2113,1,0,0,0,2127,2115,1,0,0,0, + 2128,305,1,0,0,0,2129,2142,3,310,155,0,2130,2131,5,190,0,0,2131, + 2132,3,308,154,0,2132,2133,5,265,0,0,2133,2134,3,326,163,0,2134, + 2140,5,266,0,0,2135,2136,5,157,0,0,2136,2137,5,265,0,0,2137,2138, + 3,326,163,0,2138,2139,5,266,0,0,2139,2141,1,0,0,0,2140,2135,1,0, + 0,0,2140,2141,1,0,0,0,2141,2143,1,0,0,0,2142,2130,1,0,0,0,2142,2143, + 1,0,0,0,2143,307,1,0,0,0,2144,2145,7,17,0,0,2145,309,1,0,0,0,2146, + 2154,3,314,157,0,2147,2149,5,9,0,0,2148,2147,1,0,0,0,2148,2149,1, + 0,0,0,2149,2150,1,0,0,0,2150,2152,3,384,192,0,2151,2153,3,312,156, + 0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2155,1,0,0,0,2154,2148, + 1,0,0,0,2154,2155,1,0,0,0,2155,311,1,0,0,0,2156,2157,5,265,0,0,2157, + 2162,3,192,96,0,2158,2159,5,263,0,0,2159,2161,3,192,96,0,2160,2158, + 1,0,0,0,2161,2164,1,0,0,0,2162,2160,1,0,0,0,2162,2163,1,0,0,0,2163, + 2165,1,0,0,0,2164,2162,1,0,0,0,2165,2166,5,266,0,0,2166,313,1,0, + 0,0,2167,2172,3,196,98,0,2168,2172,3,316,158,0,2169,2172,3,320,160, + 0,2170,2172,3,322,161,0,2171,2167,1,0,0,0,2171,2168,1,0,0,0,2171, + 2169,1,0,0,0,2171,2170,1,0,0,0,2172,315,1,0,0,0,2173,2175,5,113, + 0,0,2174,2173,1,0,0,0,2174,2175,1,0,0,0,2175,2176,1,0,0,0,2176,2177, + 3,318,159,0,2177,317,1,0,0,0,2178,2179,5,265,0,0,2179,2180,3,208, + 104,0,2180,2181,5,266,0,0,2181,319,1,0,0,0,2182,2183,5,201,0,0,2183, + 2184,5,265,0,0,2184,2189,3,326,163,0,2185,2186,5,263,0,0,2186,2188, + 3,326,163,0,2187,2185,1,0,0,0,2188,2191,1,0,0,0,2189,2187,1,0,0, + 0,2189,2190,1,0,0,0,2190,2192,1,0,0,0,2191,2189,1,0,0,0,2192,2195, + 5,266,0,0,2193,2194,5,216,0,0,2194,2196,5,140,0,0,2195,2193,1,0, + 0,0,2195,2196,1,0,0,0,2196,321,1,0,0,0,2197,2198,5,265,0,0,2198, + 2199,3,300,150,0,2199,2200,5,266,0,0,2200,323,1,0,0,0,2201,2204, + 3,192,96,0,2202,2204,3,326,163,0,2203,2201,1,0,0,0,2203,2202,1,0, + 0,0,2204,325,1,0,0,0,2205,2206,3,328,164,0,2206,327,1,0,0,0,2207, + 2208,6,164,-1,0,2208,2210,3,332,166,0,2209,2211,3,330,165,0,2210, + 2209,1,0,0,0,2210,2211,1,0,0,0,2211,2215,1,0,0,0,2212,2213,5,132, + 0,0,2213,2215,3,328,164,3,2214,2207,1,0,0,0,2214,2212,1,0,0,0,2215, + 2224,1,0,0,0,2216,2217,10,2,0,0,2217,2218,5,5,0,0,2218,2223,3,328, + 164,3,2219,2220,10,1,0,0,2220,2221,5,138,0,0,2221,2223,3,328,164, + 2,2222,2216,1,0,0,0,2222,2219,1,0,0,0,2223,2226,1,0,0,0,2224,2222, + 1,0,0,0,2224,2225,1,0,0,0,2225,329,1,0,0,0,2226,2224,1,0,0,0,2227, + 2228,3,340,170,0,2228,2229,3,332,166,0,2229,2286,1,0,0,0,2230,2231, + 3,340,170,0,2231,2232,3,342,171,0,2232,2233,3,318,159,0,2233,2286, + 1,0,0,0,2234,2236,5,132,0,0,2235,2234,1,0,0,0,2235,2236,1,0,0,0, + 2236,2237,1,0,0,0,2237,2238,5,15,0,0,2238,2239,3,332,166,0,2239, + 2240,5,5,0,0,2240,2241,3,332,166,0,2241,2286,1,0,0,0,2242,2244,5, + 132,0,0,2243,2242,1,0,0,0,2243,2244,1,0,0,0,2244,2245,1,0,0,0,2245, + 2246,5,94,0,0,2246,2247,5,265,0,0,2247,2252,3,326,163,0,2248,2249, + 5,263,0,0,2249,2251,3,326,163,0,2250,2248,1,0,0,0,2251,2254,1,0, + 0,0,2252,2250,1,0,0,0,2252,2253,1,0,0,0,2253,2255,1,0,0,0,2254,2252, + 1,0,0,0,2255,2256,5,266,0,0,2256,2286,1,0,0,0,2257,2259,5,132,0, + 0,2258,2257,1,0,0,0,2258,2259,1,0,0,0,2259,2260,1,0,0,0,2260,2261, + 5,94,0,0,2261,2286,3,318,159,0,2262,2264,5,132,0,0,2263,2262,1,0, + 0,0,2263,2264,1,0,0,0,2264,2265,1,0,0,0,2265,2266,7,18,0,0,2266, + 2269,3,332,166,0,2267,2268,5,62,0,0,2268,2270,3,332,166,0,2269,2267, + 1,0,0,0,2269,2270,1,0,0,0,2270,2286,1,0,0,0,2271,2272,7,19,0,0,2272, + 2286,3,332,166,0,2273,2275,5,108,0,0,2274,2276,5,132,0,0,2275,2274, + 1,0,0,0,2275,2276,1,0,0,0,2276,2277,1,0,0,0,2277,2286,7,20,0,0,2278, + 2280,5,108,0,0,2279,2281,5,132,0,0,2280,2279,1,0,0,0,2280,2281,1, + 0,0,0,2281,2282,1,0,0,0,2282,2283,5,57,0,0,2283,2284,5,82,0,0,2284, + 2286,3,332,166,0,2285,2227,1,0,0,0,2285,2230,1,0,0,0,2285,2235,1, + 0,0,0,2285,2243,1,0,0,0,2285,2258,1,0,0,0,2285,2263,1,0,0,0,2285, + 2271,1,0,0,0,2285,2273,1,0,0,0,2285,2278,1,0,0,0,2286,331,1,0,0, + 0,2287,2288,6,166,-1,0,2288,2292,3,336,168,0,2289,2290,7,21,0,0, + 2290,2292,3,332,166,4,2291,2287,1,0,0,0,2291,2289,1,0,0,0,2292,2304, + 1,0,0,0,2293,2294,10,3,0,0,2294,2295,7,22,0,0,2295,2303,3,332,166, + 4,2296,2297,10,2,0,0,2297,2298,7,21,0,0,2298,2303,3,332,166,3,2299, + 2300,10,1,0,0,2300,2301,5,260,0,0,2301,2303,3,332,166,2,2302,2293, + 1,0,0,0,2302,2296,1,0,0,0,2302,2299,1,0,0,0,2303,2306,1,0,0,0,2304, + 2302,1,0,0,0,2304,2305,1,0,0,0,2305,333,1,0,0,0,2306,2304,1,0,0, + 0,2307,2308,3,190,95,0,2308,2320,5,265,0,0,2309,2311,3,288,144,0, + 2310,2309,1,0,0,0,2310,2311,1,0,0,0,2311,2312,1,0,0,0,2312,2317, + 3,326,163,0,2313,2314,5,263,0,0,2314,2316,3,326,163,0,2315,2313, + 1,0,0,0,2316,2319,1,0,0,0,2317,2315,1,0,0,0,2317,2318,1,0,0,0,2318, + 2321,1,0,0,0,2319,2317,1,0,0,0,2320,2310,1,0,0,0,2320,2321,1,0,0, + 0,2321,2332,1,0,0,0,2322,2323,5,139,0,0,2323,2324,5,26,0,0,2324, + 2329,3,270,135,0,2325,2326,5,263,0,0,2326,2328,3,270,135,0,2327, + 2325,1,0,0,0,2328,2331,1,0,0,0,2329,2327,1,0,0,0,2329,2330,1,0,0, + 0,2330,2333,1,0,0,0,2331,2329,1,0,0,0,2332,2322,1,0,0,0,2332,2333, + 1,0,0,0,2333,2334,1,0,0,0,2334,2336,5,266,0,0,2335,2337,3,362,181, + 0,2336,2335,1,0,0,0,2336,2337,1,0,0,0,2337,2339,1,0,0,0,2338,2340, + 3,366,183,0,2339,2338,1,0,0,0,2339,2340,1,0,0,0,2340,335,1,0,0,0, + 2341,2342,6,168,-1,0,2342,2555,5,133,0,0,2343,2555,3,346,173,0,2344, + 2345,3,384,192,0,2345,2346,3,338,169,0,2346,2555,1,0,0,0,2347,2348, + 5,286,0,0,2348,2555,3,338,169,0,2349,2555,3,386,193,0,2350,2555, + 3,344,172,0,2351,2555,3,338,169,0,2352,2555,5,276,0,0,2353,2555, + 5,272,0,0,2354,2355,5,148,0,0,2355,2356,5,265,0,0,2356,2357,3,332, + 166,0,2357,2358,5,94,0,0,2358,2359,3,332,166,0,2359,2360,5,266,0, + 0,2360,2555,1,0,0,0,2361,2362,5,265,0,0,2362,2365,3,326,163,0,2363, + 2364,5,9,0,0,2364,2366,3,352,176,0,2365,2363,1,0,0,0,2365,2366,1, + 0,0,0,2366,2375,1,0,0,0,2367,2368,5,263,0,0,2368,2371,3,326,163, + 0,2369,2370,5,9,0,0,2370,2372,3,352,176,0,2371,2369,1,0,0,0,2371, + 2372,1,0,0,0,2372,2374,1,0,0,0,2373,2367,1,0,0,0,2374,2377,1,0,0, + 0,2375,2376,1,0,0,0,2375,2373,1,0,0,0,2376,2378,1,0,0,0,2377,2375, + 1,0,0,0,2378,2379,5,266,0,0,2379,2555,1,0,0,0,2380,2381,5,168,0, + 0,2381,2382,5,265,0,0,2382,2387,3,326,163,0,2383,2384,5,263,0,0, + 2384,2386,3,326,163,0,2385,2383,1,0,0,0,2386,2389,1,0,0,0,2387,2385, + 1,0,0,0,2387,2388,1,0,0,0,2388,2390,1,0,0,0,2389,2387,1,0,0,0,2390, + 2391,5,266,0,0,2391,2555,1,0,0,0,2392,2393,3,190,95,0,2393,2394, + 5,265,0,0,2394,2395,5,257,0,0,2395,2397,5,266,0,0,2396,2398,3,362, + 181,0,2397,2396,1,0,0,0,2397,2398,1,0,0,0,2398,2400,1,0,0,0,2399, + 2401,3,366,183,0,2400,2399,1,0,0,0,2400,2401,1,0,0,0,2401,2555,1, + 0,0,0,2402,2555,3,334,167,0,2403,2404,3,384,192,0,2404,2405,5,273, + 0,0,2405,2406,3,326,163,0,2406,2555,1,0,0,0,2407,2416,5,265,0,0, + 2408,2413,3,384,192,0,2409,2410,5,263,0,0,2410,2412,3,384,192,0, + 2411,2409,1,0,0,0,2412,2415,1,0,0,0,2413,2411,1,0,0,0,2413,2414, + 1,0,0,0,2414,2417,1,0,0,0,2415,2413,1,0,0,0,2416,2408,1,0,0,0,2416, + 2417,1,0,0,0,2417,2418,1,0,0,0,2418,2419,5,266,0,0,2419,2420,5,273, + 0,0,2420,2555,3,326,163,0,2421,2422,5,265,0,0,2422,2423,3,208,104, + 0,2423,2424,5,266,0,0,2424,2555,1,0,0,0,2425,2426,5,66,0,0,2426, + 2427,5,265,0,0,2427,2428,3,208,104,0,2428,2429,5,266,0,0,2429,2555, + 1,0,0,0,2430,2431,5,28,0,0,2431,2433,3,332,166,0,2432,2434,3,360, + 180,0,2433,2432,1,0,0,0,2434,2435,1,0,0,0,2435,2433,1,0,0,0,2435, + 2436,1,0,0,0,2436,2439,1,0,0,0,2437,2438,5,59,0,0,2438,2440,3,326, + 163,0,2439,2437,1,0,0,0,2439,2440,1,0,0,0,2440,2441,1,0,0,0,2441, + 2442,5,61,0,0,2442,2555,1,0,0,0,2443,2445,5,28,0,0,2444,2446,3,360, + 180,0,2445,2444,1,0,0,0,2446,2447,1,0,0,0,2447,2445,1,0,0,0,2447, + 2448,1,0,0,0,2448,2451,1,0,0,0,2449,2450,5,59,0,0,2450,2452,3,326, + 163,0,2451,2449,1,0,0,0,2451,2452,1,0,0,0,2452,2453,1,0,0,0,2453, + 2454,5,61,0,0,2454,2555,1,0,0,0,2455,2456,5,29,0,0,2456,2457,5,265, + 0,0,2457,2458,3,326,163,0,2458,2459,5,9,0,0,2459,2460,3,352,176, + 0,2460,2461,5,266,0,0,2461,2555,1,0,0,0,2462,2463,5,195,0,0,2463, + 2464,5,265,0,0,2464,2465,3,326,163,0,2465,2466,5,9,0,0,2466,2467, + 3,352,176,0,2467,2468,5,266,0,0,2468,2555,1,0,0,0,2469,2470,5,8, + 0,0,2470,2479,5,267,0,0,2471,2476,3,326,163,0,2472,2473,5,263,0, + 0,2473,2475,3,326,163,0,2474,2472,1,0,0,0,2475,2478,1,0,0,0,2476, + 2474,1,0,0,0,2476,2477,1,0,0,0,2477,2480,1,0,0,0,2478,2476,1,0,0, + 0,2479,2471,1,0,0,0,2479,2480,1,0,0,0,2480,2481,1,0,0,0,2481,2555, + 5,268,0,0,2482,2555,3,194,97,0,2483,2555,5,40,0,0,2484,2488,5,42, + 0,0,2485,2486,5,265,0,0,2486,2487,5,277,0,0,2487,2489,5,266,0,0, + 2488,2485,1,0,0,0,2488,2489,1,0,0,0,2489,2555,1,0,0,0,2490,2494, + 5,43,0,0,2491,2492,5,265,0,0,2492,2493,5,277,0,0,2493,2495,5,266, + 0,0,2494,2491,1,0,0,0,2494,2495,1,0,0,0,2495,2555,1,0,0,0,2496,2500, + 5,119,0,0,2497,2498,5,265,0,0,2498,2499,5,277,0,0,2499,2501,5,266, + 0,0,2500,2497,1,0,0,0,2500,2501,1,0,0,0,2501,2555,1,0,0,0,2502,2506, + 5,120,0,0,2503,2504,5,265,0,0,2504,2505,5,277,0,0,2505,2507,5,266, + 0,0,2506,2503,1,0,0,0,2506,2507,1,0,0,0,2507,2555,1,0,0,0,2508,2555, + 5,44,0,0,2509,2555,5,41,0,0,2510,2511,5,184,0,0,2511,2512,5,265, + 0,0,2512,2513,3,332,166,0,2513,2514,5,82,0,0,2514,2517,3,332,166, + 0,2515,2516,5,78,0,0,2516,2518,3,332,166,0,2517,2515,1,0,0,0,2517, + 2518,1,0,0,0,2518,2519,1,0,0,0,2519,2520,5,266,0,0,2520,2555,1,0, + 0,0,2521,2522,5,131,0,0,2522,2523,5,265,0,0,2523,2526,3,332,166, + 0,2524,2525,5,263,0,0,2525,2527,3,350,175,0,2526,2524,1,0,0,0,2526, + 2527,1,0,0,0,2527,2528,1,0,0,0,2528,2529,5,266,0,0,2529,2555,1,0, + 0,0,2530,2531,5,68,0,0,2531,2532,5,265,0,0,2532,2533,3,384,192,0, + 2533,2534,5,82,0,0,2534,2535,3,332,166,0,2535,2536,5,266,0,0,2536, + 2555,1,0,0,0,2537,2538,5,265,0,0,2538,2539,3,326,163,0,2539,2540, + 5,266,0,0,2540,2555,1,0,0,0,2541,2542,5,88,0,0,2542,2551,5,265,0, + 0,2543,2548,3,380,190,0,2544,2545,5,263,0,0,2545,2547,3,380,190, + 0,2546,2544,1,0,0,0,2547,2550,1,0,0,0,2548,2546,1,0,0,0,2548,2549, + 1,0,0,0,2549,2552,1,0,0,0,2550,2548,1,0,0,0,2551,2543,1,0,0,0,2551, + 2552,1,0,0,0,2552,2553,1,0,0,0,2553,2555,5,266,0,0,2554,2341,1,0, + 0,0,2554,2343,1,0,0,0,2554,2344,1,0,0,0,2554,2347,1,0,0,0,2554,2349, + 1,0,0,0,2554,2350,1,0,0,0,2554,2351,1,0,0,0,2554,2352,1,0,0,0,2554, + 2353,1,0,0,0,2554,2354,1,0,0,0,2554,2361,1,0,0,0,2554,2380,1,0,0, + 0,2554,2392,1,0,0,0,2554,2402,1,0,0,0,2554,2403,1,0,0,0,2554,2407, + 1,0,0,0,2554,2421,1,0,0,0,2554,2425,1,0,0,0,2554,2430,1,0,0,0,2554, + 2443,1,0,0,0,2554,2455,1,0,0,0,2554,2462,1,0,0,0,2554,2469,1,0,0, + 0,2554,2482,1,0,0,0,2554,2483,1,0,0,0,2554,2484,1,0,0,0,2554,2490, + 1,0,0,0,2554,2496,1,0,0,0,2554,2502,1,0,0,0,2554,2508,1,0,0,0,2554, + 2509,1,0,0,0,2554,2510,1,0,0,0,2554,2521,1,0,0,0,2554,2530,1,0,0, + 0,2554,2537,1,0,0,0,2554,2541,1,0,0,0,2555,2566,1,0,0,0,2556,2557, + 10,15,0,0,2557,2558,5,267,0,0,2558,2559,3,332,166,0,2559,2560,5, + 268,0,0,2560,2565,1,0,0,0,2561,2562,10,13,0,0,2562,2563,5,261,0, + 0,2563,2565,3,384,192,0,2564,2556,1,0,0,0,2564,2561,1,0,0,0,2565, + 2568,1,0,0,0,2566,2564,1,0,0,0,2566,2567,1,0,0,0,2567,337,1,0,0, + 0,2568,2566,1,0,0,0,2569,2576,5,274,0,0,2570,2573,5,275,0,0,2571, + 2572,5,198,0,0,2572,2574,5,274,0,0,2573,2571,1,0,0,0,2573,2574,1, + 0,0,0,2574,2576,1,0,0,0,2575,2569,1,0,0,0,2575,2570,1,0,0,0,2576, + 339,1,0,0,0,2577,2578,7,23,0,0,2578,341,1,0,0,0,2579,2580,7,24,0, + 0,2580,343,1,0,0,0,2581,2582,7,25,0,0,2582,345,1,0,0,0,2583,2584, + 5,277,0,0,2584,2598,3,348,174,0,2585,2586,5,265,0,0,2586,2587,5, + 277,0,0,2587,2588,5,266,0,0,2588,2598,3,348,174,0,2589,2590,5,101, + 0,0,2590,2591,5,277,0,0,2591,2598,3,348,174,0,2592,2593,5,101,0, + 0,2593,2594,5,265,0,0,2594,2595,5,277,0,0,2595,2596,5,266,0,0,2596, + 2598,3,348,174,0,2597,2583,1,0,0,0,2597,2585,1,0,0,0,2597,2589,1, + 0,0,0,2597,2592,1,0,0,0,2598,347,1,0,0,0,2599,2600,7,26,0,0,2600, + 349,1,0,0,0,2601,2602,7,27,0,0,2602,351,1,0,0,0,2603,2604,6,176, + -1,0,2604,2605,5,8,0,0,2605,2606,5,251,0,0,2606,2607,3,352,176,0, + 2607,2608,5,253,0,0,2608,2649,1,0,0,0,2609,2610,5,235,0,0,2610,2611, + 5,251,0,0,2611,2612,3,352,176,0,2612,2613,5,263,0,0,2613,2614,3, + 352,176,0,2614,2615,5,253,0,0,2615,2649,1,0,0,0,2616,2617,5,240, + 0,0,2617,2618,5,251,0,0,2618,2619,3,384,192,0,2619,2626,3,352,176, + 0,2620,2621,5,263,0,0,2621,2622,3,384,192,0,2622,2623,3,352,176, + 0,2623,2625,1,0,0,0,2624,2620,1,0,0,0,2625,2628,1,0,0,0,2626,2624, + 1,0,0,0,2626,2627,1,0,0,0,2627,2629,1,0,0,0,2628,2626,1,0,0,0,2629, + 2630,5,253,0,0,2630,2649,1,0,0,0,2631,2634,3,358,179,0,2632,2634, + 3,354,177,0,2633,2631,1,0,0,0,2633,2632,1,0,0,0,2634,2646,1,0,0, + 0,2635,2636,5,265,0,0,2636,2641,3,356,178,0,2637,2638,5,263,0,0, + 2638,2640,3,356,178,0,2639,2637,1,0,0,0,2640,2643,1,0,0,0,2641,2639, + 1,0,0,0,2641,2642,1,0,0,0,2642,2644,1,0,0,0,2643,2641,1,0,0,0,2644, + 2645,5,266,0,0,2645,2647,1,0,0,0,2646,2635,1,0,0,0,2646,2647,1,0, + 0,0,2647,2649,1,0,0,0,2648,2603,1,0,0,0,2648,2609,1,0,0,0,2648,2616, + 1,0,0,0,2648,2633,1,0,0,0,2649,2654,1,0,0,0,2650,2651,10,5,0,0,2651, + 2653,5,8,0,0,2652,2650,1,0,0,0,2653,2656,1,0,0,0,2654,2652,1,0,0, + 0,2654,2655,1,0,0,0,2655,353,1,0,0,0,2656,2654,1,0,0,0,2657,2658, + 7,28,0,0,2658,355,1,0,0,0,2659,2662,5,277,0,0,2660,2662,3,352,176, + 0,2661,2659,1,0,0,0,2661,2660,1,0,0,0,2662,357,1,0,0,0,2663,2668, + 5,284,0,0,2664,2668,5,285,0,0,2665,2668,5,286,0,0,2666,2668,3,384, + 192,0,2667,2663,1,0,0,0,2667,2664,1,0,0,0,2667,2665,1,0,0,0,2667, + 2666,1,0,0,0,2668,359,1,0,0,0,2669,2670,5,214,0,0,2670,2671,3,326, + 163,0,2671,2672,5,192,0,0,2672,2673,3,326,163,0,2673,361,1,0,0,0, + 2674,2675,5,74,0,0,2675,2676,5,265,0,0,2676,2677,3,276,138,0,2677, + 2678,5,266,0,0,2678,363,1,0,0,0,2679,2684,3,326,163,0,2680,2681, + 5,263,0,0,2681,2683,3,326,163,0,2682,2680,1,0,0,0,2683,2686,1,0, + 0,0,2684,2682,1,0,0,0,2684,2685,1,0,0,0,2685,365,1,0,0,0,2686,2684, + 1,0,0,0,2687,2688,5,143,0,0,2688,2692,5,265,0,0,2689,2690,5,145, + 0,0,2690,2691,5,26,0,0,2691,2693,3,364,182,0,2692,2689,1,0,0,0,2692, + 2693,1,0,0,0,2693,2704,1,0,0,0,2694,2695,5,139,0,0,2695,2696,5,26, + 0,0,2696,2701,3,270,135,0,2697,2698,5,263,0,0,2698,2700,3,270,135, + 0,2699,2697,1,0,0,0,2700,2703,1,0,0,0,2701,2699,1,0,0,0,2701,2702, + 1,0,0,0,2702,2705,1,0,0,0,2703,2701,1,0,0,0,2704,2694,1,0,0,0,2704, + 2705,1,0,0,0,2705,2707,1,0,0,0,2706,2708,3,368,184,0,2707,2706,1, + 0,0,0,2707,2708,1,0,0,0,2708,2709,1,0,0,0,2709,2710,5,266,0,0,2710, + 367,1,0,0,0,2711,2712,5,154,0,0,2712,2728,3,370,185,0,2713,2714, + 5,169,0,0,2714,2728,3,370,185,0,2715,2716,5,154,0,0,2716,2717,5, + 15,0,0,2717,2718,3,370,185,0,2718,2719,5,5,0,0,2719,2720,3,370,185, + 0,2720,2728,1,0,0,0,2721,2722,5,169,0,0,2722,2723,5,15,0,0,2723, + 2724,3,370,185,0,2724,2725,5,5,0,0,2725,2726,3,370,185,0,2726,2728, + 1,0,0,0,2727,2711,1,0,0,0,2727,2713,1,0,0,0,2727,2715,1,0,0,0,2727, + 2721,1,0,0,0,2728,369,1,0,0,0,2729,2730,5,199,0,0,2730,2739,5,149, + 0,0,2731,2732,5,199,0,0,2732,2739,5,77,0,0,2733,2734,5,39,0,0,2734, + 2739,5,168,0,0,2735,2736,3,326,163,0,2736,2737,7,29,0,0,2737,2739, + 1,0,0,0,2738,2729,1,0,0,0,2738,2731,1,0,0,0,2738,2733,1,0,0,0,2738, + 2735,1,0,0,0,2739,371,1,0,0,0,2740,2741,3,384,192,0,2741,2742,5, + 261,0,0,2742,2743,3,384,192,0,2743,2746,1,0,0,0,2744,2746,3,384, + 192,0,2745,2740,1,0,0,0,2745,2744,1,0,0,0,2746,373,1,0,0,0,2747, + 2752,3,372,186,0,2748,2749,5,263,0,0,2749,2751,3,372,186,0,2750, + 2748,1,0,0,0,2751,2754,1,0,0,0,2752,2750,1,0,0,0,2752,2753,1,0,0, + 0,2753,375,1,0,0,0,2754,2752,1,0,0,0,2755,2769,5,2,0,0,2756,2769, + 5,4,0,0,2757,2769,5,58,0,0,2758,2769,5,37,0,0,2759,2769,5,99,0,0, + 2760,2769,5,162,0,0,2761,2766,5,174,0,0,2762,2763,5,265,0,0,2763, + 2764,3,384,192,0,2764,2765,5,266,0,0,2765,2767,1,0,0,0,2766,2762, + 1,0,0,0,2766,2767,1,0,0,0,2767,2769,1,0,0,0,2768,2755,1,0,0,0,2768, + 2756,1,0,0,0,2768,2757,1,0,0,0,2768,2758,1,0,0,0,2768,2759,1,0,0, + 0,2768,2760,1,0,0,0,2768,2761,1,0,0,0,2769,377,1,0,0,0,2770,2771, + 7,30,0,0,2771,379,1,0,0,0,2772,2777,3,384,192,0,2773,2774,5,261, + 0,0,2774,2776,3,384,192,0,2775,2773,1,0,0,0,2776,2779,1,0,0,0,2777, + 2775,1,0,0,0,2777,2778,1,0,0,0,2778,381,1,0,0,0,2779,2777,1,0,0, + 0,2780,2781,5,166,0,0,2781,2787,3,384,192,0,2782,2783,5,204,0,0, + 2783,2787,3,384,192,0,2784,2785,5,87,0,0,2785,2787,3,384,192,0,2786, + 2780,1,0,0,0,2786,2782,1,0,0,0,2786,2784,1,0,0,0,2787,383,1,0,0, + 0,2788,2794,5,280,0,0,2789,2794,5,274,0,0,2790,2794,3,390,195,0, + 2791,2794,5,283,0,0,2792,2794,5,281,0,0,2793,2788,1,0,0,0,2793,2789, + 1,0,0,0,2793,2790,1,0,0,0,2793,2791,1,0,0,0,2793,2792,1,0,0,0,2794, + 385,1,0,0,0,2795,2797,5,256,0,0,2796,2795,1,0,0,0,2796,2797,1,0, + 0,0,2797,2798,1,0,0,0,2798,2808,5,278,0,0,2799,2801,5,256,0,0,2800, + 2799,1,0,0,0,2800,2801,1,0,0,0,2801,2802,1,0,0,0,2802,2808,5,279, + 0,0,2803,2805,5,256,0,0,2804,2803,1,0,0,0,2804,2805,1,0,0,0,2805, + 2806,1,0,0,0,2806,2808,5,277,0,0,2807,2796,1,0,0,0,2807,2800,1,0, + 0,0,2807,2804,1,0,0,0,2808,387,1,0,0,0,2809,2810,7,31,0,0,2810,389, + 1,0,0,0,2811,2812,7,32,0,0,2812,391,1,0,0,0,355,395,402,426,439, + 443,447,456,461,465,471,473,478,482,486,493,498,504,508,517,524, + 528,533,535,540,543,550,554,559,563,566,570,578,582,586,594,598, + 607,610,613,619,626,637,642,647,652,657,666,669,672,676,702,728, + 737,747,750,764,782,784,793,804,813,820,824,831,837,840,845,852, + 866,879,884,889,895,931,934,940,943,949,955,967,969,980,988,993, + 997,1002,1009,1013,1017,1023,1027,1031,1040,1043,1046,1054,1068, + 1075,1088,1094,1099,1102,1105,1110,1114,1123,1128,1134,1138,1142, + 1147,1150,1158,1161,1164,1176,1179,1182,1187,1191,1207,1212,1219, + 1222,1228,1231,1238,1241,1245,1250,1253,1260,1263,1287,1301,1305, + 1309,1329,1331,1333,1342,1344,1353,1355,1364,1366,1371,1380,1389, + 1398,1409,1415,1420,1423,1436,1446,1450,1455,1466,1471,1504,1512, + 1517,1521,1527,1532,1535,1540,1545,1550,1554,1563,1566,1570,1577, + 1586,1590,1594,1601,1604,1614,1621,1626,1631,1636,1642,1645,1654, + 1657,1660,1666,1671,1681,1684,1687,1691,1701,1704,1710,1716,1719, + 1722,1726,1736,1747,1752,1755,1759,1766,1776,1788,1794,1796,1805, + 1808,1815,1825,1831,1839,1850,1860,1871,1873,1879,1884,1894,1897, + 1903,1905,1913,1919,1922,1924,1936,1943,1947,1951,1955,1958,1967, + 1970,1973,1978,1981,1988,1998,2005,2016,2019,2023,2027,2036,2040, + 2043,2046,2057,2073,2077,2081,2085,2089,2093,2097,2101,2111,2122, + 2127,2140,2142,2148,2152,2154,2162,2171,2174,2189,2195,2203,2210, + 2214,2222,2224,2235,2243,2252,2258,2263,2269,2275,2280,2285,2291, + 2302,2304,2310,2317,2320,2329,2332,2336,2339,2365,2371,2375,2387, + 2397,2400,2413,2416,2435,2439,2447,2451,2476,2479,2488,2494,2500, + 2506,2517,2526,2548,2551,2554,2564,2566,2573,2575,2597,2626,2633, + 2641,2646,2648,2654,2661,2667,2684,2692,2701,2704,2707,2727,2738, + 2745,2752,2766,2768,2777,2786,2793,2796,2800,2804,2807 ]; private static __ATN: antlr.ATN; @@ -21223,14 +21428,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public KW_SELECT(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.KW_SELECT, 0)!; } - public selectItem(): SelectItemContext[]; - public selectItem(i: number): SelectItemContext | null; - public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SelectItemContext); - } - - return this.getRuleContext(i, SelectItemContext); + public selectList(): SelectListContext { + return this.getRuleContext(0, SelectListContext)!; } public setQuantifier(): SetQuantifierContext | null { return this.getRuleContext(0, SetQuantifierContext); @@ -21238,15 +21437,6 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public KW_STRAIGHT_JOIN(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_STRAIGHT_JOIN, 0); } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ImpalaSqlParser.COMMA); - } else { - return this.getToken(ImpalaSqlParser.COMMA, i); - } - } public KW_FROM(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_FROM, 0); } @@ -21274,22 +21464,76 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public havingClause(): HavingClauseContext | null { return this.getRuleContext(0, HavingClauseContext); } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ImpalaSqlParser.COMMA); + } else { + return this.getToken(ImpalaSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_querySpecification; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterQuerySpecification) { + listener.enterQuerySpecification(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitQuerySpecification) { + listener.exitQuerySpecification(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitQuerySpecification) { + return visitor.visitQuerySpecification(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public selectItem(): SelectItemContext[]; + public selectItem(i: number): SelectItemContext | null; + public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { + if (i === undefined) { + return this.getRuleContexts(SelectItemContext); + } + + return this.getRuleContext(i, SelectItemContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ImpalaSqlParser.COMMA); + } else { + return this.getToken(ImpalaSqlParser.COMMA, i); + } + } public override get ruleIndex(): number { - return ImpalaSqlParser.RULE_querySpecification; + return ImpalaSqlParser.RULE_selectList; } public override enterRule(listener: ImpalaSqlParserListener): void { - if(listener.enterQuerySpecification) { - listener.enterQuerySpecification(this); + if(listener.enterSelectList) { + listener.enterSelectList(this); } } public override exitRule(listener: ImpalaSqlParserListener): void { - if(listener.exitQuerySpecification) { - listener.exitQuerySpecification(this); + if(listener.exitSelectList) { + listener.exitSelectList(this); } } public override accept(visitor: ImpalaSqlParserVisitor): Result | null { - if (visitor.visitQuerySpecification) { - return visitor.visitQuerySpecification(this); + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); } else { return visitor.visitChildren(this); } @@ -21580,72 +21824,164 @@ export class SelectItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public columnAlias(): ColumnAliasContext | null { + return this.getRuleContext(0, ColumnAliasContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); + } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_selectItem; } - public override copyFrom(ctx: SelectItemContext): void { - super.copyFrom(ctx); + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterSelectItem) { + listener.enterSelectItem(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitSelectItem) { + listener.exitSelectItem(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitSelectItem) { + return visitor.visitSelectItem(this); + } else { + return visitor.visitChildren(this); + } } } -export class SelectAllContext extends SelectItemContext { - public constructor(ctx: SelectItemContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class ColumnAliasContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public qualifiedName(): QualifiedNameContext | null { - return this.getRuleContext(0, QualifiedNameContext); + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } - public DOT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.DOT, 0); + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_AS, 0); } - public ASTERISK(): antlr.TerminalNode { - return this.getToken(ImpalaSqlParser.ASTERISK, 0)!; + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_columnAlias; } public override enterRule(listener: ImpalaSqlParserListener): void { - if(listener.enterSelectAll) { - listener.enterSelectAll(this); + if(listener.enterColumnAlias) { + listener.enterColumnAlias(this); } } public override exitRule(listener: ImpalaSqlParserListener): void { - if(listener.exitSelectAll) { - listener.exitSelectAll(this); + if(listener.exitColumnAlias) { + listener.exitColumnAlias(this); } } public override accept(visitor: ImpalaSqlParserVisitor): Result | null { - if (visitor.visitSelectAll) { - return visitor.visitSelectAll(this); + if (visitor.visitColumnAlias) { + return visitor.visitColumnAlias(this); } else { return visitor.visitChildren(this); } } } -export class SelectSingleContext extends SelectItemContext { - public constructor(ctx: SelectItemContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public columnItem(): ColumnItemContext { - return this.getRuleContext(0, ColumnItemContext)!; + public columnNamePath(): ColumnNamePathContext { + return this.getRuleContext(0, ColumnNamePathContext)!; } - public identifier(): IdentifierContext | null { - return this.getRuleContext(0, IdentifierContext); + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_selectLiteralColumnName; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_AS, 0); + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_selectExpressionColumnName; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public ASTERISK(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.ASTERISK, 0)!; + } + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); + } + public DOT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.DOT, 0); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_tableAllColumns; } public override enterRule(listener: ImpalaSqlParserListener): void { - if(listener.enterSelectSingle) { - listener.enterSelectSingle(this); + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); } } public override exitRule(listener: ImpalaSqlParserListener): void { - if(listener.exitSelectSingle) { - listener.exitSelectSingle(this); + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); } } public override accept(visitor: ImpalaSqlParserVisitor): Result | null { - if (visitor.visitSelectSingle) { - return visitor.visitSelectSingle(this); + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); } else { return visitor.visitChildren(this); } @@ -22049,11 +22385,8 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public tableOrViewPath(): TableOrViewPathContext | null { return this.getRuleContext(0, TableOrViewPathContext); } - public subQueryRelation(): SubQueryRelationContext | null { - return this.getRuleContext(0, SubQueryRelationContext); - } - public KW_LATERAL(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_LATERAL, 0); + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext | null { + return this.getRuleContext(0, AtomSubQueryTableSourceContext); } public unnest(): UnnestContext | null { return this.getRuleContext(0, UnnestContext); @@ -22084,6 +22417,39 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { } +export class AtomSubQueryTableSourceContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public subQueryRelation(): SubQueryRelationContext { + return this.getRuleContext(0, SubQueryRelationContext)!; + } + public KW_LATERAL(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_LATERAL, 0); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_atomSubQueryTableSource; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterAtomSubQueryTableSource) { + listener.enterAtomSubQueryTableSource(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitAtomSubQueryTableSource) { + listener.exitAtomSubQueryTableSource(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitAtomSubQueryTableSource) { + return visitor.visitAtomSubQueryTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class SubQueryRelationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -22919,6 +23285,84 @@ export class ArithmeticUnaryContext extends ValueExpressionContext { } +export class FunctionCallExpressionContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public functionNamePath(): FunctionNamePathContext { + return this.getRuleContext(0, FunctionNamePathContext)!; + } + public LPAREN(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.LPAREN, 0)!; + } + public RPAREN(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.RPAREN, 0)!; + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + public KW_ORDER(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_ORDER, 0); + } + public KW_BY(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_BY, 0); + } + public sortItem(): SortItemContext[]; + public sortItem(i: number): SortItemContext | null; + public sortItem(i?: number): SortItemContext[] | SortItemContext | null { + if (i === undefined) { + return this.getRuleContexts(SortItemContext); + } + + return this.getRuleContext(i, SortItemContext); + } + public filter(): FilterContext | null { + return this.getRuleContext(0, FilterContext); + } + public over(): OverContext | null { + return this.getRuleContext(0, OverContext); + } + public setQuantifier(): SetQuantifierContext | null { + return this.getRuleContext(0, SetQuantifierContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ImpalaSqlParser.COMMA); + } else { + return this.getToken(ImpalaSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_functionCallExpression; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterFunctionCallExpression) { + listener.enterFunctionCallExpression(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitFunctionCallExpression) { + listener.exitFunctionCallExpression(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitFunctionCallExpression) { + return visitor.visitFunctionCallExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PrimaryExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -23805,17 +24249,17 @@ export class FunctionCallContext extends PrimaryExpressionContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public functionNamePath(): FunctionNamePathContext { - return this.getRuleContext(0, FunctionNamePathContext)!; + public functionNamePath(): FunctionNamePathContext | null { + return this.getRuleContext(0, FunctionNamePathContext); } - public LPAREN(): antlr.TerminalNode { - return this.getToken(ImpalaSqlParser.LPAREN, 0)!; + public LPAREN(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.LPAREN, 0); } public ASTERISK(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.ASTERISK, 0); } - public RPAREN(): antlr.TerminalNode { - return this.getToken(ImpalaSqlParser.RPAREN, 0)!; + public RPAREN(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.RPAREN, 0); } public filter(): FilterContext | null { return this.getRuleContext(0, FilterContext); @@ -23823,41 +24267,8 @@ export class FunctionCallContext extends PrimaryExpressionContext { public over(): OverContext | null { return this.getRuleContext(0, OverContext); } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } - public KW_ORDER(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_ORDER, 0); - } - public KW_BY(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_BY, 0); - } - public sortItem(): SortItemContext[]; - public sortItem(i: number): SortItemContext | null; - public sortItem(i?: number): SortItemContext[] | SortItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SortItemContext); - } - - return this.getRuleContext(i, SortItemContext); - } - public setQuantifier(): SetQuantifierContext | null { - return this.getRuleContext(0, SetQuantifierContext); - } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ImpalaSqlParser.COMMA); - } else { - return this.getToken(ImpalaSqlParser.COMMA, i); - } + public functionCallExpression(): FunctionCallExpressionContext | null { + return this.getRuleContext(0, FunctionCallExpressionContext); } public override enterRule(listener: ImpalaSqlParserListener): void { if(listener.enterFunctionCall) { diff --git a/src/lib/impala/ImpalaSqlParserListener.ts b/src/lib/impala/ImpalaSqlParserListener.ts index 6b66331c..24a68630 100644 --- a/src/lib/impala/ImpalaSqlParserListener.ts +++ b/src/lib/impala/ImpalaSqlParserListener.ts @@ -149,6 +149,7 @@ import { InlineTableContext } from "./ImpalaSqlParser.js"; import { SubqueryContext } from "./ImpalaSqlParser.js"; import { SortItemContext } from "./ImpalaSqlParser.js"; import { QuerySpecificationContext } from "./ImpalaSqlParser.js"; +import { SelectListContext } from "./ImpalaSqlParser.js"; import { WhereClauseContext } from "./ImpalaSqlParser.js"; import { HavingClauseContext } from "./ImpalaSqlParser.js"; import { GroupByContext } from "./ImpalaSqlParser.js"; @@ -156,8 +157,11 @@ import { SingleGroupingSetContext } from "./ImpalaSqlParser.js"; import { GroupingSetContext } from "./ImpalaSqlParser.js"; import { NamedQueryContext } from "./ImpalaSqlParser.js"; import { SetQuantifierContext } from "./ImpalaSqlParser.js"; -import { SelectSingleContext } from "./ImpalaSqlParser.js"; -import { SelectAllContext } from "./ImpalaSqlParser.js"; +import { SelectItemContext } from "./ImpalaSqlParser.js"; +import { ColumnAliasContext } from "./ImpalaSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./ImpalaSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./ImpalaSqlParser.js"; +import { TableAllColumnsContext } from "./ImpalaSqlParser.js"; import { RelationDefaultContext } from "./ImpalaSqlParser.js"; import { JoinRelationContext } from "./ImpalaSqlParser.js"; import { JoinTypeContext } from "./ImpalaSqlParser.js"; @@ -167,6 +171,7 @@ import { SampleTypeContext } from "./ImpalaSqlParser.js"; import { AliasedRelationContext } from "./ImpalaSqlParser.js"; import { ColumnAliasesContext } from "./ImpalaSqlParser.js"; import { RelationPrimaryContext } from "./ImpalaSqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./ImpalaSqlParser.js"; import { SubQueryRelationContext } from "./ImpalaSqlParser.js"; import { UnnestContext } from "./ImpalaSqlParser.js"; import { ParenthesizedRelationContext } from "./ImpalaSqlParser.js"; @@ -188,6 +193,7 @@ import { ValueExpressionDefaultContext } from "./ImpalaSqlParser.js"; import { ConcatenationContext } from "./ImpalaSqlParser.js"; import { ArithmeticBinaryContext } from "./ImpalaSqlParser.js"; import { ArithmeticUnaryContext } from "./ImpalaSqlParser.js"; +import { FunctionCallExpressionContext } from "./ImpalaSqlParser.js"; import { DereferenceContext } from "./ImpalaSqlParser.js"; import { TypeConstructorContext } from "./ImpalaSqlParser.js"; import { SpecialDateTimeFunctionContext } from "./ImpalaSqlParser.js"; @@ -1684,6 +1690,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuerySpecification?: (ctx: QuerySpecificationContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.whereClause`. * @param ctx the parse tree @@ -1757,29 +1773,55 @@ export class ImpalaSqlParserListener implements ParseTreeListener { */ exitSetQuantifier?: (ctx: SetQuantifierContext) => void; /** - * Enter a parse tree produced by the `selectSingle` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Enter a parse tree produced by `ImpalaSqlParser.selectItem`. + * @param ctx the parse tree + */ + enterSelectItem?: (ctx: SelectItemContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.selectItem`. + * @param ctx the parse tree + */ + exitSelectItem?: (ctx: SelectItemContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.columnAlias`. + * @param ctx the parse tree + */ + enterColumnAlias?: (ctx: ColumnAliasContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.columnAlias`. + * @param ctx the parse tree + */ + exitColumnAlias?: (ctx: ColumnAliasContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - enterSelectSingle?: (ctx: SelectSingleContext) => void; + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** - * Exit a parse tree produced by the `selectSingle` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Exit a parse tree produced by `ImpalaSqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - exitSelectSingle?: (ctx: SelectSingleContext) => void; + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** - * Enter a parse tree produced by the `selectAll` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Enter a parse tree produced by `ImpalaSqlParser.selectExpressionColumnName`. * @param ctx the parse tree */ - enterSelectAll?: (ctx: SelectAllContext) => void; + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; /** - * Exit a parse tree produced by the `selectAll` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Exit a parse tree produced by `ImpalaSqlParser.selectExpressionColumnName`. * @param ctx the parse tree */ - exitSelectAll?: (ctx: SelectAllContext) => void; + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** * Enter a parse tree produced by the `relationDefault` * labeled alternative in `ImpalaSqlParser.relation`. @@ -1874,6 +1916,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRelationPrimary?: (ctx: RelationPrimaryContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + enterAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + exitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.subQueryRelation`. * @param ctx the parse tree @@ -2116,6 +2168,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitArithmeticUnary?: (ctx: ArithmeticUnaryContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.functionCallExpression`. + * @param ctx the parse tree + */ + enterFunctionCallExpression?: (ctx: FunctionCallExpressionContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.functionCallExpression`. + * @param ctx the parse tree + */ + exitFunctionCallExpression?: (ctx: FunctionCallExpressionContext) => void; /** * Enter a parse tree produced by the `dereference` * labeled alternative in `ImpalaSqlParser.primaryExpression`. diff --git a/src/lib/impala/ImpalaSqlParserVisitor.ts b/src/lib/impala/ImpalaSqlParserVisitor.ts index 0cf1e9bd..9e186e67 100644 --- a/src/lib/impala/ImpalaSqlParserVisitor.ts +++ b/src/lib/impala/ImpalaSqlParserVisitor.ts @@ -149,6 +149,7 @@ import { InlineTableContext } from "./ImpalaSqlParser.js"; import { SubqueryContext } from "./ImpalaSqlParser.js"; import { SortItemContext } from "./ImpalaSqlParser.js"; import { QuerySpecificationContext } from "./ImpalaSqlParser.js"; +import { SelectListContext } from "./ImpalaSqlParser.js"; import { WhereClauseContext } from "./ImpalaSqlParser.js"; import { HavingClauseContext } from "./ImpalaSqlParser.js"; import { GroupByContext } from "./ImpalaSqlParser.js"; @@ -156,8 +157,11 @@ import { SingleGroupingSetContext } from "./ImpalaSqlParser.js"; import { GroupingSetContext } from "./ImpalaSqlParser.js"; import { NamedQueryContext } from "./ImpalaSqlParser.js"; import { SetQuantifierContext } from "./ImpalaSqlParser.js"; -import { SelectSingleContext } from "./ImpalaSqlParser.js"; -import { SelectAllContext } from "./ImpalaSqlParser.js"; +import { SelectItemContext } from "./ImpalaSqlParser.js"; +import { ColumnAliasContext } from "./ImpalaSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./ImpalaSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./ImpalaSqlParser.js"; +import { TableAllColumnsContext } from "./ImpalaSqlParser.js"; import { RelationDefaultContext } from "./ImpalaSqlParser.js"; import { JoinRelationContext } from "./ImpalaSqlParser.js"; import { JoinTypeContext } from "./ImpalaSqlParser.js"; @@ -167,6 +171,7 @@ import { SampleTypeContext } from "./ImpalaSqlParser.js"; import { AliasedRelationContext } from "./ImpalaSqlParser.js"; import { ColumnAliasesContext } from "./ImpalaSqlParser.js"; import { RelationPrimaryContext } from "./ImpalaSqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./ImpalaSqlParser.js"; import { SubQueryRelationContext } from "./ImpalaSqlParser.js"; import { UnnestContext } from "./ImpalaSqlParser.js"; import { ParenthesizedRelationContext } from "./ImpalaSqlParser.js"; @@ -188,6 +193,7 @@ import { ValueExpressionDefaultContext } from "./ImpalaSqlParser.js"; import { ConcatenationContext } from "./ImpalaSqlParser.js"; import { ArithmeticBinaryContext } from "./ImpalaSqlParser.js"; import { ArithmeticUnaryContext } from "./ImpalaSqlParser.js"; +import { FunctionCallExpressionContext } from "./ImpalaSqlParser.js"; import { DereferenceContext } from "./ImpalaSqlParser.js"; import { TypeConstructorContext } from "./ImpalaSqlParser.js"; import { SpecialDateTimeFunctionContext } from "./ImpalaSqlParser.js"; @@ -1117,6 +1123,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.whereClause`. * @param ctx the parse tree @@ -1161,19 +1173,35 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `selectSingle` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Visit a parse tree produced by `ImpalaSqlParser.selectItem`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectItem?: (ctx: SelectItemContext) => Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.columnAlias`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnAlias?: (ctx: ColumnAliasContext) => Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.selectLiteralColumnName`. * @param ctx the parse tree * @return the visitor result */ - visitSelectSingle?: (ctx: SelectSingleContext) => Result; + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; /** - * Visit a parse tree produced by the `selectAll` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Visit a parse tree produced by `ImpalaSqlParser.selectExpressionColumnName`. * @param ctx the parse tree * @return the visitor result */ - visitSelectAll?: (ctx: SelectAllContext) => Result; + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.tableAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; /** * Visit a parse tree produced by the `relationDefault` * labeled alternative in `ImpalaSqlParser.relation`. @@ -1230,6 +1258,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.subQueryRelation`. * @param ctx the parse tree @@ -1372,6 +1406,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.functionCallExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionCallExpression?: (ctx: FunctionCallExpressionContext) => Result; /** * Visit a parse tree produced by the `dereference` * labeled alternative in `ImpalaSqlParser.primaryExpression`. diff --git a/src/lib/mysql/MySqlParser.interp b/src/lib/mysql/MySqlParser.interp index abeee55f..fa7f23a0 100644 --- a/src/lib/mysql/MySqlParser.interp +++ b/src/lib/mysql/MySqlParser.interp @@ -1929,6 +1929,7 @@ orderByExpression tableSources tableSource tableSourceItem +atomSubQueryTableSource fullColumnNames indexHint indexHintType @@ -1946,6 +1947,10 @@ jsonOnError selectSpec selectElements selectElement +tableAllColumns +pureAllColumns +selectLiteralColumnName +selectExpressionColumnName intoClause selectFieldsInto selectLinesInto @@ -2217,4 +2222,4 @@ functionNameBase atn: -[4, 1, 895, 8072, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 1, 0, 5, 0, 840, 8, 0, 10, 0, 12, 0, 843, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 849, 8, 1, 1, 1, 3, 1, 852, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 861, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 905, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 924, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 935, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 951, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 956, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 968, 8, 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, 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, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1003, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1013, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1018, 8, 12, 1, 12, 1, 12, 5, 12, 1022, 8, 12, 10, 12, 12, 12, 1025, 9, 12, 1, 13, 1, 13, 3, 13, 1029, 8, 13, 1, 13, 1, 13, 3, 13, 1033, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1042, 8, 13, 1, 13, 3, 13, 1045, 8, 13, 1, 13, 3, 13, 1048, 8, 13, 1, 13, 1, 13, 3, 13, 1052, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1059, 8, 14, 1, 14, 3, 14, 1062, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1067, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1073, 8, 14, 10, 14, 12, 14, 1076, 9, 14, 1, 14, 1, 14, 3, 14, 1080, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1085, 8, 14, 1, 14, 5, 14, 1088, 8, 14, 10, 14, 12, 14, 1091, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1102, 8, 15, 1, 15, 3, 15, 1105, 8, 15, 1, 15, 1, 15, 3, 15, 1109, 8, 15, 1, 15, 3, 15, 1112, 8, 15, 1, 15, 1, 15, 3, 15, 1116, 8, 15, 1, 15, 3, 15, 1119, 8, 15, 1, 15, 1, 15, 3, 15, 1123, 8, 15, 1, 15, 3, 15, 1126, 8, 15, 1, 15, 3, 15, 1129, 8, 15, 1, 15, 1, 15, 3, 15, 1133, 8, 15, 1, 15, 3, 15, 1136, 8, 15, 1, 15, 1, 15, 3, 15, 1140, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1146, 8, 16, 1, 16, 1, 16, 3, 16, 1150, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1155, 8, 16, 1, 16, 1, 16, 5, 16, 1159, 8, 16, 10, 16, 12, 16, 1162, 9, 16, 1, 16, 1, 16, 5, 16, 1166, 8, 16, 10, 16, 12, 16, 1169, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1175, 8, 17, 1, 17, 3, 17, 1178, 8, 17, 1, 17, 1, 17, 3, 17, 1182, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1187, 8, 17, 1, 17, 1, 17, 5, 17, 1191, 8, 17, 10, 17, 12, 17, 1194, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1200, 8, 17, 10, 17, 12, 17, 1203, 9, 17, 1, 17, 1, 17, 3, 17, 1207, 8, 17, 1, 18, 1, 18, 3, 18, 1211, 8, 18, 1, 18, 1, 18, 3, 18, 1215, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 3, 19, 1226, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1242, 8, 20, 10, 20, 12, 20, 1245, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1251, 8, 21, 1, 21, 1, 21, 3, 21, 1255, 8, 21, 1, 21, 1, 21, 3, 21, 1259, 8, 21, 1, 21, 1, 21, 3, 21, 1263, 8, 21, 1, 21, 5, 21, 1266, 8, 21, 10, 21, 12, 21, 1269, 9, 21, 3, 21, 1271, 8, 21, 1, 21, 3, 21, 1274, 8, 21, 1, 21, 3, 21, 1277, 8, 21, 1, 21, 3, 21, 1280, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1286, 8, 21, 1, 21, 1, 21, 3, 21, 1290, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1300, 8, 21, 1, 21, 1, 21, 3, 21, 1304, 8, 21, 1, 21, 1, 21, 3, 21, 1308, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1314, 8, 21, 1, 21, 5, 21, 1317, 8, 21, 10, 21, 12, 21, 1320, 9, 21, 3, 21, 1322, 8, 21, 1, 21, 3, 21, 1325, 8, 21, 3, 21, 1327, 8, 21, 1, 22, 1, 22, 3, 22, 1331, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1338, 8, 22, 1, 22, 1, 22, 3, 22, 1342, 8, 22, 1, 22, 3, 22, 1345, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1350, 8, 22, 1, 22, 1, 22, 3, 22, 1354, 8, 22, 1, 22, 3, 22, 1357, 8, 22, 1, 22, 1, 22, 3, 22, 1361, 8, 22, 1, 22, 3, 22, 1364, 8, 22, 1, 23, 1, 23, 3, 23, 1368, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1381, 8, 23, 1, 23, 3, 23, 1384, 8, 23, 1, 23, 1, 23, 3, 23, 1388, 8, 23, 1, 23, 3, 23, 1391, 8, 23, 1, 23, 1, 23, 3, 23, 1395, 8, 23, 1, 23, 3, 23, 1398, 8, 23, 1, 23, 1, 23, 3, 23, 1402, 8, 23, 1, 23, 3, 23, 1405, 8, 23, 1, 23, 1, 23, 3, 23, 1409, 8, 23, 1, 23, 3, 23, 1412, 8, 23, 1, 23, 3, 23, 1415, 8, 23, 1, 23, 1, 23, 3, 23, 1419, 8, 23, 1, 23, 3, 23, 1422, 8, 23, 1, 23, 1, 23, 3, 23, 1426, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1432, 8, 24, 1, 24, 3, 24, 1435, 8, 24, 1, 24, 1, 24, 3, 24, 1439, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1451, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 1457, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1466, 8, 26, 10, 26, 12, 26, 1469, 9, 26, 1, 26, 1, 26, 3, 26, 1473, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1481, 8, 26, 1, 27, 1, 27, 3, 27, 1485, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1490, 8, 27, 1, 27, 3, 27, 1493, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1498, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1506, 8, 27, 10, 27, 12, 27, 1509, 9, 27, 1, 27, 1, 27, 3, 27, 1513, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1518, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1524, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1529, 8, 27, 1, 27, 1, 27, 3, 27, 1533, 8, 27, 3, 27, 1535, 8, 27, 1, 28, 3, 28, 1538, 8, 28, 1, 28, 1, 28, 3, 28, 1542, 8, 28, 1, 28, 1, 28, 3, 28, 1546, 8, 28, 1, 28, 3, 28, 1549, 8, 28, 1, 28, 1, 28, 3, 28, 1553, 8, 28, 1, 28, 1, 28, 3, 28, 1557, 8, 28, 1, 28, 1, 28, 3, 28, 1561, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1567, 8, 28, 1, 28, 3, 28, 1570, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1577, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1582, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1588, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1593, 8, 32, 10, 32, 12, 32, 1596, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1601, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1607, 8, 32, 10, 32, 12, 32, 1610, 9, 32, 3, 32, 1612, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1617, 8, 32, 10, 32, 12, 32, 1620, 9, 32, 3, 32, 1622, 8, 32, 3, 32, 1624, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1630, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1636, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1653, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1660, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1667, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1679, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1684, 8, 38, 1, 38, 3, 38, 1687, 8, 38, 1, 39, 3, 39, 1690, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1703, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1716, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1721, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1737, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1743, 8, 43, 10, 43, 12, 43, 1746, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1755, 8, 44, 1, 44, 3, 44, 1758, 8, 44, 1, 44, 1, 44, 5, 44, 1762, 8, 44, 10, 44, 12, 44, 1765, 9, 44, 1, 44, 1, 44, 3, 44, 1769, 8, 44, 1, 44, 3, 44, 1772, 8, 44, 1, 44, 1, 44, 5, 44, 1776, 8, 44, 10, 44, 12, 44, 1779, 9, 44, 1, 44, 3, 44, 1782, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1787, 8, 44, 1, 44, 1, 44, 5, 44, 1791, 8, 44, 10, 44, 12, 44, 1794, 9, 44, 1, 44, 3, 44, 1797, 8, 44, 1, 44, 1, 44, 3, 44, 1801, 8, 44, 1, 44, 3, 44, 1804, 8, 44, 1, 44, 3, 44, 1807, 8, 44, 1, 44, 1, 44, 5, 44, 1811, 8, 44, 10, 44, 12, 44, 1814, 9, 44, 1, 44, 3, 44, 1817, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1822, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1833, 8, 44, 1, 45, 3, 45, 1836, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1843, 8, 45, 1, 45, 3, 45, 1846, 8, 45, 1, 46, 1, 46, 3, 46, 1850, 8, 46, 1, 47, 1, 47, 5, 47, 1854, 8, 47, 10, 47, 12, 47, 1857, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1868, 8, 48, 1, 48, 3, 48, 1871, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1876, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1889, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1896, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1902, 8, 48, 1, 49, 1, 49, 1, 49, 3, 49, 1907, 8, 49, 1, 49, 1, 49, 3, 49, 1911, 8, 49, 1, 49, 3, 49, 1914, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1922, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1930, 8, 50, 3, 50, 1932, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1942, 8, 51, 1, 52, 1, 52, 3, 52, 1946, 8, 52, 1, 52, 3, 52, 1949, 8, 52, 1, 52, 1, 52, 3, 52, 1953, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1958, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1963, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1968, 8, 52, 1, 52, 1, 52, 3, 52, 1972, 8, 52, 1, 52, 1, 52, 3, 52, 1976, 8, 52, 1, 52, 1, 52, 3, 52, 1980, 8, 52, 1, 52, 1, 52, 3, 52, 1984, 8, 52, 1, 52, 1, 52, 3, 52, 1988, 8, 52, 1, 52, 1, 52, 3, 52, 1992, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1997, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2002, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2007, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2013, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2018, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2023, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2028, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2033, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2038, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2044, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2049, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2054, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2059, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2064, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2069, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2074, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2079, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2086, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2091, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2096, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2101, 8, 52, 1, 52, 1, 52, 3, 52, 2105, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2110, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2118, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2123, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2129, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2141, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2148, 8, 55, 3, 55, 2150, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2156, 8, 55, 10, 55, 12, 55, 2159, 9, 55, 1, 55, 1, 55, 3, 55, 2163, 8, 55, 1, 56, 3, 56, 2166, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2174, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2180, 8, 56, 1, 56, 1, 56, 3, 56, 2184, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2197, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2209, 8, 56, 3, 56, 2211, 8, 56, 1, 57, 3, 57, 2214, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2222, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2228, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2234, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2245, 8, 58, 10, 58, 12, 58, 2248, 9, 58, 1, 58, 1, 58, 5, 58, 2252, 8, 58, 10, 58, 12, 58, 2255, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2261, 8, 58, 10, 58, 12, 58, 2264, 9, 58, 1, 58, 1, 58, 3, 58, 2268, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2277, 8, 58, 10, 58, 12, 58, 2280, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2286, 8, 58, 10, 58, 12, 58, 2289, 9, 58, 1, 58, 1, 58, 3, 58, 2293, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2303, 8, 58, 10, 58, 12, 58, 2306, 9, 58, 1, 58, 1, 58, 5, 58, 2310, 8, 58, 10, 58, 12, 58, 2313, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2319, 8, 58, 10, 58, 12, 58, 2322, 9, 58, 1, 58, 1, 58, 3, 58, 2326, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2336, 8, 58, 10, 58, 12, 58, 2339, 9, 58, 1, 58, 1, 58, 5, 58, 2343, 8, 58, 10, 58, 12, 58, 2346, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2352, 8, 58, 10, 58, 12, 58, 2355, 9, 58, 1, 58, 1, 58, 3, 58, 2359, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2364, 8, 58, 10, 58, 12, 58, 2367, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2373, 8, 58, 10, 58, 12, 58, 2376, 9, 58, 1, 58, 1, 58, 3, 58, 2380, 8, 58, 3, 58, 2382, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2387, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2393, 8, 60, 11, 60, 12, 60, 2394, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2402, 8, 61, 10, 61, 12, 61, 2405, 9, 61, 1, 62, 3, 62, 2408, 8, 62, 1, 62, 3, 62, 2411, 8, 62, 1, 62, 1, 62, 3, 62, 2415, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2420, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2426, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2432, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2437, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2442, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2447, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2452, 8, 62, 1, 62, 3, 62, 2455, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2460, 8, 63, 1, 63, 4, 63, 2463, 8, 63, 11, 63, 12, 63, 2464, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2475, 8, 63, 1, 64, 1, 64, 3, 64, 2479, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2486, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2491, 8, 64, 1, 64, 3, 64, 2494, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2499, 8, 64, 1, 64, 3, 64, 2502, 8, 64, 1, 64, 1, 64, 3, 64, 2506, 8, 64, 1, 64, 1, 64, 3, 64, 2510, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2516, 8, 65, 10, 65, 12, 65, 2519, 9, 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, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2537, 8, 67, 1, 67, 3, 67, 2540, 8, 67, 1, 67, 3, 67, 2543, 8, 67, 1, 67, 1, 67, 3, 67, 2547, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2555, 8, 68, 10, 68, 12, 68, 2558, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2568, 8, 69, 10, 69, 12, 69, 2571, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2581, 8, 70, 10, 70, 12, 70, 2584, 9, 70, 3, 70, 2586, 8, 70, 1, 70, 1, 70, 5, 70, 2590, 8, 70, 10, 70, 12, 70, 2593, 9, 70, 3, 70, 2595, 8, 70, 1, 71, 1, 71, 3, 71, 2599, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2608, 8, 71, 1, 71, 3, 71, 2611, 8, 71, 1, 71, 3, 71, 2614, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2619, 8, 71, 1, 71, 1, 71, 3, 71, 2623, 8, 71, 1, 71, 3, 71, 2626, 8, 71, 1, 71, 1, 71, 3, 71, 2630, 8, 71, 1, 71, 1, 71, 3, 71, 2634, 8, 71, 1, 71, 3, 71, 2637, 8, 71, 1, 71, 1, 71, 3, 71, 2641, 8, 71, 1, 71, 3, 71, 2644, 8, 71, 1, 71, 1, 71, 3, 71, 2648, 8, 71, 1, 71, 3, 71, 2651, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2657, 8, 72, 1, 72, 3, 72, 2660, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2665, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2673, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2679, 8, 72, 1, 72, 1, 72, 3, 72, 2683, 8, 72, 1, 73, 1, 73, 3, 73, 2687, 8, 73, 1, 73, 5, 73, 2690, 8, 73, 10, 73, 12, 73, 2693, 9, 73, 1, 73, 1, 73, 3, 73, 2697, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2704, 8, 73, 1, 73, 1, 73, 3, 73, 2708, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2717, 8, 73, 10, 73, 12, 73, 2720, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2727, 8, 73, 1, 73, 3, 73, 2730, 8, 73, 1, 73, 1, 73, 5, 73, 2734, 8, 73, 10, 73, 12, 73, 2737, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2742, 8, 73, 1, 73, 3, 73, 2745, 8, 73, 1, 73, 1, 73, 5, 73, 2749, 8, 73, 10, 73, 12, 73, 2752, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2757, 8, 73, 3, 73, 2759, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2764, 8, 73, 1, 73, 1, 73, 5, 73, 2768, 8, 73, 10, 73, 12, 73, 2771, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2776, 8, 73, 3, 73, 2778, 8, 73, 1, 73, 1, 73, 3, 73, 2782, 8, 73, 1, 73, 3, 73, 2785, 8, 73, 1, 73, 3, 73, 2788, 8, 73, 1, 73, 1, 73, 5, 73, 2792, 8, 73, 10, 73, 12, 73, 2795, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2800, 8, 73, 3, 73, 2802, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2807, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2814, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2823, 8, 73, 1, 73, 3, 73, 2826, 8, 73, 1, 73, 1, 73, 3, 73, 2830, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2835, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2845, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2854, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2862, 8, 73, 1, 73, 3, 73, 2865, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2873, 8, 73, 1, 73, 3, 73, 2876, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2883, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2888, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2896, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2912, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2917, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2924, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2943, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2949, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2957, 8, 74, 10, 74, 12, 74, 2960, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2971, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2978, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2985, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2998, 8, 74, 10, 74, 12, 74, 3001, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3013, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3019, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3025, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3031, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3037, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3043, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3049, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 3054, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3061, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3068, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3075, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3080, 8, 77, 1, 77, 5, 77, 3083, 8, 77, 10, 77, 12, 77, 3086, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 3094, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3101, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3108, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3115, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 3124, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 3130, 8, 83, 1, 83, 1, 83, 3, 83, 3134, 8, 83, 1, 83, 1, 83, 3, 83, 3138, 8, 83, 1, 84, 1, 84, 3, 84, 3142, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 3148, 8, 84, 1, 84, 3, 84, 3151, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3156, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3163, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3168, 8, 86, 10, 86, 12, 86, 3171, 9, 86, 1, 86, 3, 86, 3174, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 3179, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3189, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3195, 8, 88, 10, 88, 12, 88, 3198, 9, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3203, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 3210, 8, 89, 10, 89, 12, 89, 3213, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 3221, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3230, 8, 92, 1, 92, 3, 92, 3233, 8, 92, 1, 93, 1, 93, 3, 93, 3237, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3246, 8, 95, 1, 96, 1, 96, 3, 96, 3250, 8, 96, 1, 96, 3, 96, 3253, 8, 96, 1, 96, 3, 96, 3256, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3262, 8, 96, 1, 96, 3, 96, 3265, 8, 96, 1, 96, 3, 96, 3268, 8, 96, 1, 96, 1, 96, 3, 96, 3272, 8, 96, 1, 96, 3, 96, 3275, 8, 96, 1, 96, 3, 96, 3278, 8, 96, 1, 96, 3, 96, 3281, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3290, 8, 96, 10, 96, 12, 96, 3293, 9, 96, 3, 96, 3295, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3300, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3306, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3311, 8, 99, 1, 99, 4, 99, 3314, 8, 99, 11, 99, 12, 99, 3315, 1, 100, 3, 100, 3319, 8, 100, 1, 100, 1, 100, 3, 100, 3323, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3328, 8, 101, 1, 101, 3, 101, 3331, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3336, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3346, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3351, 8, 101, 1, 101, 1, 101, 4, 101, 3355, 8, 101, 11, 101, 12, 101, 3356, 3, 101, 3359, 8, 101, 1, 101, 1, 101, 4, 101, 3363, 8, 101, 11, 101, 12, 101, 3364, 3, 101, 3367, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3373, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3379, 8, 101, 10, 101, 12, 101, 3382, 9, 101, 1, 101, 1, 101, 3, 101, 3386, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3392, 8, 101, 10, 101, 12, 101, 3395, 9, 101, 3, 101, 3397, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3402, 8, 102, 1, 102, 3, 102, 3405, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3410, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3418, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3424, 8, 102, 1, 102, 1, 102, 3, 102, 3428, 8, 102, 3, 102, 3430, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3436, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3442, 8, 102, 10, 102, 12, 102, 3445, 9, 102, 1, 102, 1, 102, 3, 102, 3449, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3455, 8, 102, 10, 102, 12, 102, 3458, 9, 102, 3, 102, 3460, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3465, 8, 103, 1, 103, 3, 103, 3468, 8, 103, 1, 103, 1, 103, 3, 103, 3472, 8, 103, 1, 103, 3, 103, 3475, 8, 103, 1, 103, 3, 103, 3478, 8, 103, 1, 104, 1, 104, 3, 104, 3482, 8, 104, 1, 104, 3, 104, 3485, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3493, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3499, 8, 104, 1, 104, 1, 104, 3, 104, 3503, 8, 104, 1, 105, 1, 105, 5, 105, 3507, 8, 105, 10, 105, 12, 105, 3510, 9, 105, 1, 105, 1, 105, 3, 105, 3514, 8, 105, 1, 105, 1, 105, 3, 105, 3518, 8, 105, 3, 105, 3520, 8, 105, 1, 105, 1, 105, 5, 105, 3524, 8, 105, 10, 105, 12, 105, 3527, 9, 105, 1, 105, 3, 105, 3530, 8, 105, 1, 105, 3, 105, 3533, 8, 105, 1, 105, 3, 105, 3536, 8, 105, 1, 105, 3, 105, 3539, 8, 105, 1, 105, 1, 105, 5, 105, 3543, 8, 105, 10, 105, 12, 105, 3546, 9, 105, 1, 105, 1, 105, 3, 105, 3550, 8, 105, 1, 105, 3, 105, 3553, 8, 105, 1, 105, 3, 105, 3556, 8, 105, 1, 105, 3, 105, 3559, 8, 105, 1, 105, 3, 105, 3562, 8, 105, 3, 105, 3564, 8, 105, 1, 106, 3, 106, 3567, 8, 106, 1, 106, 1, 106, 3, 106, 3571, 8, 106, 1, 106, 3, 106, 3574, 8, 106, 1, 106, 3, 106, 3577, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3585, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3591, 8, 107, 1, 107, 5, 107, 3594, 8, 107, 10, 107, 12, 107, 3597, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3605, 8, 108, 1, 108, 5, 108, 3608, 8, 108, 10, 108, 12, 108, 3611, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3617, 8, 109, 1, 109, 3, 109, 3620, 8, 109, 1, 109, 3, 109, 3623, 8, 109, 1, 109, 1, 109, 3, 109, 3627, 8, 109, 1, 110, 1, 110, 3, 110, 3631, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3637, 8, 111, 1, 111, 1, 111, 3, 111, 3641, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3646, 8, 112, 10, 112, 12, 112, 3649, 9, 112, 1, 112, 3, 112, 3652, 8, 112, 1, 112, 3, 112, 3655, 8, 112, 1, 112, 3, 112, 3658, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3663, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3670, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3678, 8, 115, 10, 115, 12, 115, 3681, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3687, 8, 116, 10, 116, 12, 116, 3690, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 3698, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3706, 8, 119, 10, 119, 12, 119, 3709, 9, 119, 3, 119, 3711, 8, 119, 1, 119, 1, 119, 3, 119, 3715, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3721, 8, 119, 1, 120, 1, 120, 3, 120, 3725, 8, 120, 1, 120, 3, 120, 3728, 8, 120, 1, 120, 3, 120, 3731, 8, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3736, 8, 120, 1, 120, 3, 120, 3739, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3746, 8, 120, 1, 120, 1, 120, 3, 120, 3750, 8, 120, 1, 120, 3, 120, 3753, 8, 120, 1, 120, 1, 120, 3, 120, 3757, 8, 120, 1, 121, 1, 121, 3, 121, 3761, 8, 121, 1, 121, 3, 121, 3764, 8, 121, 1, 121, 3, 121, 3767, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3772, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3778, 8, 121, 5, 121, 3780, 8, 121, 10, 121, 12, 121, 3783, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3792, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3798, 8, 121, 5, 121, 3800, 8, 121, 10, 121, 12, 121, 3803, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3808, 8, 121, 1, 121, 1, 121, 3, 121, 3812, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3818, 8, 122, 1, 122, 3, 122, 3821, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3833, 8, 123, 1, 123, 1, 123, 3, 123, 3837, 8, 123, 1, 123, 1, 123, 3, 123, 3841, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3849, 8, 124, 1, 124, 1, 124, 3, 124, 3853, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3865, 8, 126, 10, 126, 12, 126, 3868, 9, 126, 1, 127, 1, 127, 3, 127, 3872, 8, 127, 1, 127, 3, 127, 3875, 8, 127, 1, 127, 1, 127, 3, 127, 3879, 8, 127, 1, 127, 3, 127, 3882, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3888, 8, 127, 10, 127, 12, 127, 3891, 9, 127, 1, 127, 1, 127, 3, 127, 3895, 8, 127, 1, 127, 3, 127, 3898, 8, 127, 1, 127, 3, 127, 3901, 8, 127, 1, 128, 1, 128, 3, 128, 3905, 8, 128, 1, 128, 3, 128, 3908, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3915, 8, 128, 10, 128, 12, 128, 3918, 9, 128, 1, 128, 1, 128, 3, 128, 3922, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3929, 8, 129, 10, 129, 12, 129, 3932, 9, 129, 1, 130, 1, 130, 3, 130, 3936, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3941, 8, 131, 10, 131, 12, 131, 3944, 9, 131, 1, 132, 1, 132, 5, 132, 3948, 8, 132, 10, 132, 12, 132, 3951, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3956, 8, 132, 10, 132, 12, 132, 3959, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3964, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3972, 8, 133, 1, 133, 3, 133, 3975, 8, 133, 1, 133, 3, 133, 3978, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3983, 8, 133, 10, 133, 12, 133, 3986, 9, 133, 3, 133, 3988, 8, 133, 1, 133, 3, 133, 3991, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3998, 8, 133, 1, 133, 3, 133, 4001, 8, 133, 1, 133, 1, 133, 3, 133, 4005, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4011, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 4021, 8, 135, 1, 135, 1, 135, 3, 135, 4025, 8, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4034, 8, 136, 1, 137, 3, 137, 4037, 8, 137, 1, 137, 1, 137, 3, 137, 4041, 8, 137, 1, 137, 1, 137, 5, 137, 4045, 8, 137, 10, 137, 12, 137, 4048, 9, 137, 1, 137, 1, 137, 1, 137, 5, 137, 4053, 8, 137, 10, 137, 12, 137, 4056, 9, 137, 1, 137, 1, 137, 3, 137, 4060, 8, 137, 1, 137, 1, 137, 3, 137, 4064, 8, 137, 1, 137, 1, 137, 5, 137, 4068, 8, 137, 10, 137, 12, 137, 4071, 9, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4076, 8, 137, 1, 137, 3, 137, 4079, 8, 137, 3, 137, 4081, 8, 137, 1, 137, 1, 137, 3, 137, 4085, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4094, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4104, 8, 139, 1, 140, 1, 140, 5, 140, 4108, 8, 140, 10, 140, 12, 140, 4111, 9, 140, 1, 140, 1, 140, 3, 140, 4115, 8, 140, 1, 140, 1, 140, 3, 140, 4119, 8, 140, 1, 140, 3, 140, 4122, 8, 140, 1, 140, 3, 140, 4125, 8, 140, 1, 140, 3, 140, 4128, 8, 140, 1, 140, 3, 140, 4131, 8, 140, 1, 140, 3, 140, 4134, 8, 140, 1, 140, 3, 140, 4137, 8, 140, 1, 141, 1, 141, 3, 141, 4141, 8, 141, 1, 141, 1, 141, 3, 141, 4145, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4153, 8, 142, 1, 142, 1, 142, 3, 142, 4157, 8, 142, 1, 142, 3, 142, 4160, 8, 142, 3, 142, 4162, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4175, 8, 143, 1, 143, 3, 143, 4178, 8, 143, 1, 144, 1, 144, 1, 144, 5, 144, 4183, 8, 144, 10, 144, 12, 144, 4186, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4195, 8, 145, 1, 145, 3, 145, 4198, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4203, 8, 145, 3, 145, 4205, 8, 145, 1, 145, 1, 145, 3, 145, 4209, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4217, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4223, 8, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4232, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4245, 8, 148, 1, 149, 1, 149, 3, 149, 4249, 8, 149, 1, 149, 1, 149, 5, 149, 4253, 8, 149, 10, 149, 12, 149, 4256, 9, 149, 1, 150, 1, 150, 3, 150, 4260, 8, 150, 1, 150, 1, 150, 3, 150, 4264, 8, 150, 1, 150, 3, 150, 4267, 8, 150, 1, 150, 1, 150, 3, 150, 4271, 8, 150, 1, 150, 3, 150, 4274, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 4282, 8, 150, 1, 150, 3, 150, 4285, 8, 150, 3, 150, 4287, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 4293, 8, 151, 10, 151, 12, 151, 4296, 9, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 4307, 8, 151, 1, 151, 1, 151, 4, 151, 4311, 8, 151, 11, 151, 12, 151, 4312, 3, 151, 4315, 8, 151, 1, 151, 1, 151, 4, 151, 4319, 8, 151, 11, 151, 12, 151, 4320, 3, 151, 4323, 8, 151, 3, 151, 4325, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 4331, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 4339, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 4347, 8, 153, 1, 154, 1, 154, 3, 154, 4351, 8, 154, 1, 154, 1, 154, 3, 154, 4355, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 4362, 8, 155, 10, 155, 12, 155, 4365, 9, 155, 1, 155, 1, 155, 3, 155, 4369, 8, 155, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 4387, 8, 157, 10, 157, 12, 157, 4390, 9, 157, 1, 158, 1, 158, 3, 158, 4394, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4400, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4407, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 4412, 8, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 4419, 8, 161, 10, 161, 12, 161, 4422, 9, 161, 3, 161, 4424, 8, 161, 1, 162, 1, 162, 3, 162, 4428, 8, 162, 1, 163, 1, 163, 3, 163, 4432, 8, 163, 1, 163, 1, 163, 3, 163, 4436, 8, 163, 1, 163, 3, 163, 4439, 8, 163, 1, 163, 3, 163, 4442, 8, 163, 1, 163, 3, 163, 4445, 8, 163, 1, 164, 1, 164, 3, 164, 4449, 8, 164, 1, 164, 1, 164, 3, 164, 4453, 8, 164, 1, 164, 3, 164, 4456, 8, 164, 1, 164, 3, 164, 4459, 8, 164, 1, 164, 3, 164, 4462, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 3, 166, 4469, 8, 166, 1, 166, 1, 166, 3, 166, 4473, 8, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 4486, 8, 168, 10, 168, 12, 168, 4489, 9, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4501, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4507, 8, 171, 10, 171, 12, 171, 4510, 9, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4519, 8, 172, 1, 173, 1, 173, 3, 173, 4523, 8, 173, 1, 173, 3, 173, 4526, 8, 173, 1, 173, 1, 173, 1, 174, 1, 174, 3, 174, 4532, 8, 174, 1, 174, 3, 174, 4535, 8, 174, 1, 174, 3, 174, 4538, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4547, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4556, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4564, 8, 177, 10, 177, 12, 177, 4567, 9, 177, 1, 177, 3, 177, 4570, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 4578, 8, 178, 10, 178, 12, 178, 4581, 9, 178, 1, 178, 3, 178, 4584, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4593, 8, 179, 10, 179, 12, 179, 4596, 9, 179, 1, 179, 3, 179, 4599, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4608, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 5, 181, 4615, 8, 181, 10, 181, 12, 181, 4618, 9, 181, 3, 181, 4620, 8, 181, 1, 181, 1, 181, 3, 181, 4624, 8, 181, 1, 181, 5, 181, 4627, 8, 181, 10, 181, 12, 181, 4630, 9, 181, 1, 181, 3, 181, 4633, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4640, 8, 182, 10, 182, 12, 182, 4643, 9, 182, 3, 182, 4645, 8, 182, 1, 182, 3, 182, 4648, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4655, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4661, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4667, 8, 183, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 4691, 8, 185, 10, 185, 12, 185, 4694, 9, 185, 3, 185, 4696, 8, 185, 1, 185, 3, 185, 4699, 8, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4718, 8, 189, 3, 189, 4720, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4741, 8, 190, 10, 190, 12, 190, 4744, 9, 190, 3, 190, 4746, 8, 190, 1, 190, 3, 190, 4749, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4768, 8, 194, 3, 194, 4770, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4782, 8, 196, 10, 196, 12, 196, 4785, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4795, 8, 196, 10, 196, 12, 196, 4798, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4832, 8, 196, 10, 196, 12, 196, 4835, 9, 196, 1, 196, 1, 196, 3, 196, 4839, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4874, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4888, 8, 200, 1, 201, 1, 201, 1, 201, 5, 201, 4893, 8, 201, 10, 201, 12, 201, 4896, 9, 201, 1, 201, 3, 201, 4899, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4905, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4913, 8, 203, 3, 203, 4915, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4926, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4936, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4943, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4949, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 3, 211, 4957, 8, 211, 1, 212, 1, 212, 1, 212, 3, 212, 4962, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4968, 8, 212, 10, 212, 12, 212, 4971, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4976, 8, 212, 10, 212, 12, 212, 4979, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4984, 8, 212, 10, 212, 12, 212, 4987, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4992, 8, 212, 10, 212, 12, 212, 4995, 9, 212, 1, 212, 5, 212, 4998, 8, 212, 10, 212, 12, 212, 5001, 9, 212, 1, 212, 1, 212, 3, 212, 5005, 8, 212, 1, 213, 1, 213, 1, 213, 3, 213, 5010, 8, 213, 1, 213, 4, 213, 5013, 8, 213, 11, 213, 12, 213, 5014, 1, 213, 1, 213, 4, 213, 5019, 8, 213, 11, 213, 12, 213, 5020, 3, 213, 5023, 8, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 4, 214, 5032, 8, 214, 11, 214, 12, 214, 5033, 1, 214, 5, 214, 5037, 8, 214, 10, 214, 12, 214, 5040, 9, 214, 1, 214, 1, 214, 4, 214, 5044, 8, 214, 11, 214, 12, 214, 5045, 3, 214, 5048, 8, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 3, 217, 5062, 8, 217, 1, 217, 1, 217, 4, 217, 5066, 8, 217, 11, 217, 12, 217, 5067, 1, 217, 1, 217, 1, 217, 3, 217, 5073, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5078, 8, 218, 1, 218, 1, 218, 4, 218, 5082, 8, 218, 11, 218, 12, 218, 5083, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5091, 8, 218, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 3, 220, 5099, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 4, 220, 5105, 8, 220, 11, 220, 12, 220, 5106, 1, 220, 1, 220, 1, 220, 3, 220, 5112, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5118, 8, 221, 1, 221, 3, 221, 5121, 8, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5129, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 5136, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5145, 8, 223, 1, 223, 3, 223, 5148, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 5163, 8, 225, 10, 225, 12, 225, 5166, 9, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 3, 226, 5173, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5181, 8, 226, 1, 227, 1, 227, 3, 227, 5185, 8, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 3, 228, 5192, 8, 228, 1, 228, 1, 228, 4, 228, 5196, 8, 228, 11, 228, 12, 228, 5197, 1, 229, 1, 229, 1, 229, 1, 229, 4, 229, 5204, 8, 229, 11, 229, 12, 229, 5205, 1, 230, 1, 230, 1, 230, 3, 230, 5211, 8, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5216, 8, 230, 10, 230, 12, 230, 5219, 9, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5224, 8, 230, 10, 230, 12, 230, 5227, 9, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5233, 8, 230, 1, 230, 5, 230, 5236, 8, 230, 10, 230, 12, 230, 5239, 9, 230, 3, 230, 5241, 8, 230, 3, 230, 5243, 8, 230, 1, 230, 1, 230, 4, 230, 5247, 8, 230, 11, 230, 12, 230, 5248, 3, 230, 5251, 8, 230, 1, 230, 1, 230, 5, 230, 5255, 8, 230, 10, 230, 12, 230, 5258, 9, 230, 1, 230, 1, 230, 3, 230, 5262, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5269, 8, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5274, 8, 231, 1, 231, 1, 231, 3, 231, 5278, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5283, 8, 231, 5, 231, 5285, 8, 231, 10, 231, 12, 231, 5288, 9, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5293, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5299, 8, 231, 1, 231, 5, 231, 5302, 8, 231, 10, 231, 12, 231, 5305, 9, 231, 3, 231, 5307, 8, 231, 3, 231, 5309, 8, 231, 1, 231, 1, 231, 4, 231, 5313, 8, 231, 11, 231, 12, 231, 5314, 3, 231, 5317, 8, 231, 1, 231, 1, 231, 5, 231, 5321, 8, 231, 10, 231, 12, 231, 5324, 9, 231, 1, 231, 1, 231, 3, 231, 5328, 8, 231, 1, 232, 1, 232, 1, 232, 3, 232, 5333, 8, 232, 1, 232, 1, 232, 1, 232, 5, 232, 5338, 8, 232, 10, 232, 12, 232, 5341, 9, 232, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5347, 8, 233, 10, 233, 12, 233, 5350, 9, 233, 1, 233, 1, 233, 3, 233, 5354, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5361, 8, 233, 10, 233, 12, 233, 5364, 9, 233, 1, 233, 3, 233, 5367, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5373, 8, 233, 1, 233, 5, 233, 5376, 8, 233, 10, 233, 12, 233, 5379, 9, 233, 3, 233, 5381, 8, 233, 3, 233, 5383, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5389, 8, 233, 10, 233, 12, 233, 5392, 9, 233, 3, 233, 5394, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5401, 8, 233, 3, 233, 5403, 8, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5408, 8, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5413, 8, 233, 10, 233, 12, 233, 5416, 9, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5422, 8, 233, 10, 233, 12, 233, 5425, 9, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5430, 8, 233, 3, 233, 5432, 8, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5439, 8, 234, 1, 234, 3, 234, 5442, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5452, 8, 235, 10, 235, 12, 235, 5455, 9, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5460, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5468, 8, 236, 1, 236, 3, 236, 5471, 8, 236, 1, 236, 1, 236, 3, 236, 5475, 8, 236, 1, 236, 3, 236, 5478, 8, 236, 1, 236, 1, 236, 3, 236, 5482, 8, 236, 3, 236, 5484, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5495, 8, 237, 1, 237, 3, 237, 5498, 8, 237, 1, 237, 1, 237, 3, 237, 5502, 8, 237, 1, 237, 3, 237, 5505, 8, 237, 1, 237, 3, 237, 5508, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5515, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 5, 239, 5525, 8, 239, 10, 239, 12, 239, 5528, 9, 239, 3, 239, 5530, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5537, 8, 240, 1, 240, 1, 240, 5, 240, 5541, 8, 240, 10, 240, 12, 240, 5544, 9, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 5, 241, 5551, 8, 241, 10, 241, 12, 241, 5554, 9, 241, 1, 242, 1, 242, 3, 242, 5558, 8, 242, 1, 242, 1, 242, 1, 242, 5, 242, 5563, 8, 242, 10, 242, 12, 242, 5566, 9, 242, 1, 242, 1, 242, 3, 242, 5570, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5576, 8, 242, 1, 242, 1, 242, 3, 242, 5580, 8, 242, 1, 242, 1, 242, 3, 242, 5584, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5592, 8, 242, 1, 242, 1, 242, 3, 242, 5596, 8, 242, 1, 242, 1, 242, 3, 242, 5600, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5606, 8, 242, 3, 242, 5608, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5620, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5625, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5631, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5637, 8, 245, 1, 245, 1, 245, 3, 245, 5641, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5646, 8, 245, 3, 245, 5648, 8, 245, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5672, 8, 247, 4, 247, 5674, 8, 247, 11, 247, 12, 247, 5675, 1, 247, 3, 247, 5679, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5688, 8, 248, 1, 248, 1, 248, 3, 248, 5692, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5701, 8, 248, 1, 248, 1, 248, 3, 248, 5705, 8, 248, 1, 248, 1, 248, 3, 248, 5709, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5715, 8, 248, 3, 248, 5717, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5726, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5736, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5763, 8, 250, 1, 251, 1, 251, 3, 251, 5767, 8, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5772, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5779, 8, 252, 1, 252, 3, 252, 5782, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5788, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5798, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5808, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5818, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5824, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5833, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5839, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5846, 8, 255, 3, 255, 5848, 8, 255, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5856, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5862, 8, 257, 1, 257, 1, 257, 3, 257, 5866, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5883, 8, 258, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5893, 8, 260, 1, 261, 1, 261, 3, 261, 5897, 8, 261, 1, 261, 1, 261, 3, 261, 5901, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5911, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5916, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5988, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 6006, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 3, 264, 6014, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6020, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6032, 8, 264, 1, 264, 1, 264, 3, 264, 6036, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6047, 8, 264, 1, 264, 1, 264, 3, 264, 6051, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6060, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 5, 265, 6066, 8, 265, 10, 265, 12, 265, 6069, 9, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6075, 8, 266, 1, 267, 1, 267, 3, 267, 6079, 8, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 6086, 8, 268, 1, 268, 1, 268, 1, 268, 3, 268, 6091, 8, 268, 1, 268, 3, 268, 6094, 8, 268, 1, 268, 3, 268, 6097, 8, 268, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 6108, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6115, 8, 271, 10, 271, 12, 271, 6118, 9, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6124, 8, 271, 10, 271, 12, 271, 6127, 9, 271, 3, 271, 6129, 8, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 5, 273, 6141, 8, 273, 10, 273, 12, 273, 6144, 9, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6161, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6174, 8, 276, 1, 276, 3, 276, 6177, 8, 276, 1, 276, 1, 276, 3, 276, 6181, 8, 276, 1, 276, 3, 276, 6184, 8, 276, 3, 276, 6186, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6193, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6200, 8, 277, 5, 277, 6202, 8, 277, 10, 277, 12, 277, 6205, 9, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6211, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6218, 8, 277, 1, 277, 3, 277, 6221, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 5, 277, 6235, 8, 277, 10, 277, 12, 277, 6238, 9, 277, 3, 277, 6240, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6250, 8, 278, 1, 278, 1, 278, 3, 278, 6254, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6260, 8, 278, 1, 278, 3, 278, 6263, 8, 278, 1, 278, 3, 278, 6266, 8, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6271, 8, 278, 1, 278, 1, 278, 3, 278, 6275, 8, 278, 1, 278, 3, 278, 6278, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6285, 8, 278, 1, 278, 3, 278, 6288, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6294, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6330, 8, 278, 1, 278, 3, 278, 6333, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6345, 8, 278, 1, 278, 3, 278, 6348, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6364, 8, 278, 3, 278, 6366, 8, 278, 1, 278, 1, 278, 3, 278, 6370, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6377, 8, 278, 1, 278, 1, 278, 3, 278, 6381, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6388, 8, 278, 1, 278, 3, 278, 6391, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6398, 8, 278, 10, 278, 12, 278, 6401, 9, 278, 3, 278, 6403, 8, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6408, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6414, 8, 278, 3, 278, 6416, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6422, 8, 278, 1, 278, 1, 278, 3, 278, 6426, 8, 278, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6432, 8, 279, 1, 279, 3, 279, 6435, 8, 279, 1, 279, 3, 279, 6438, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6451, 8, 280, 1, 280, 3, 280, 6454, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6460, 8, 281, 1, 282, 3, 282, 6463, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6471, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6479, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6485, 8, 283, 1, 283, 3, 283, 6488, 8, 283, 1, 283, 1, 283, 3, 283, 6492, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6506, 8, 284, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 5, 286, 6516, 8, 286, 10, 286, 12, 286, 6519, 9, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6526, 8, 286, 1, 286, 1, 286, 3, 286, 6530, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6537, 8, 287, 1, 287, 1, 287, 1, 287, 5, 287, 6542, 8, 287, 10, 287, 12, 287, 6545, 9, 287, 1, 288, 1, 288, 3, 288, 6549, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 5, 289, 6560, 8, 289, 10, 289, 12, 289, 6563, 9, 289, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6569, 8, 290, 10, 290, 12, 290, 6572, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6579, 8, 291, 1, 292, 1, 292, 1, 292, 3, 292, 6584, 8, 292, 1, 292, 3, 292, 6587, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6592, 8, 293, 1, 293, 3, 293, 6595, 8, 293, 1, 294, 1, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6607, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6612, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6625, 8, 297, 3, 297, 6627, 8, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6632, 8, 297, 1, 297, 1, 297, 3, 297, 6636, 8, 297, 1, 297, 3, 297, 6639, 8, 297, 3, 297, 6641, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6648, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6655, 8, 299, 1, 299, 3, 299, 6658, 8, 299, 1, 299, 3, 299, 6661, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6667, 8, 299, 1, 299, 1, 299, 3, 299, 6671, 8, 299, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6677, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6685, 8, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6694, 8, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 3, 305, 6707, 8, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6712, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 5, 305, 6718, 8, 305, 10, 305, 12, 305, 6721, 9, 305, 3, 305, 6723, 8, 305, 1, 306, 1, 306, 1, 306, 3, 306, 6728, 8, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6733, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 5, 306, 6739, 8, 306, 10, 306, 12, 306, 6742, 9, 306, 3, 306, 6744, 8, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6752, 8, 307, 1, 308, 1, 308, 3, 308, 6756, 8, 308, 1, 308, 1, 308, 1, 308, 5, 308, 6761, 8, 308, 10, 308, 12, 308, 6764, 9, 308, 1, 309, 1, 309, 1, 309, 3, 309, 6769, 8, 309, 1, 309, 3, 309, 6772, 8, 309, 1, 310, 1, 310, 3, 310, 6776, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6787, 8, 310, 10, 310, 12, 310, 6790, 9, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6795, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6805, 8, 310, 10, 310, 12, 310, 6808, 9, 310, 3, 310, 6810, 8, 310, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6819, 8, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6824, 8, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 5, 320, 6843, 8, 320, 10, 320, 12, 320, 6846, 9, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6859, 8, 325, 10, 325, 12, 325, 6862, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 5, 327, 6869, 8, 327, 10, 327, 12, 327, 6872, 9, 327, 1, 328, 1, 328, 3, 328, 6876, 8, 328, 1, 329, 1, 329, 1, 329, 3, 329, 6881, 8, 329, 3, 329, 6883, 8, 329, 1, 329, 3, 329, 6886, 8, 329, 1, 329, 1, 329, 3, 329, 6890, 8, 329, 3, 329, 6892, 8, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6897, 8, 330, 10, 330, 12, 330, 6900, 9, 330, 1, 331, 1, 331, 1, 331, 3, 331, 6905, 8, 331, 3, 331, 6907, 8, 331, 1, 331, 3, 331, 6910, 8, 331, 1, 331, 1, 331, 3, 331, 6914, 8, 331, 1, 331, 3, 331, 6917, 8, 331, 1, 332, 1, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6928, 8, 335, 10, 335, 12, 335, 6931, 9, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6940, 8, 337, 1, 337, 3, 337, 6943, 8, 337, 1, 337, 3, 337, 6946, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6959, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 3, 342, 6965, 8, 342, 1, 342, 3, 342, 6968, 8, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 6976, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 3, 346, 6983, 8, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 4, 348, 7001, 8, 348, 11, 348, 12, 348, 7002, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 7010, 8, 349, 3, 349, 7012, 8, 349, 1, 350, 1, 350, 1, 350, 4, 350, 7017, 8, 350, 11, 350, 12, 350, 7018, 3, 350, 7021, 8, 350, 1, 351, 1, 351, 3, 351, 7025, 8, 351, 1, 352, 1, 352, 1, 352, 5, 352, 7030, 8, 352, 10, 352, 12, 352, 7033, 9, 352, 1, 353, 1, 353, 1, 353, 3, 353, 7038, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7049, 8, 354, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7055, 8, 355, 1, 356, 1, 356, 1, 357, 1, 357, 3, 357, 7061, 8, 357, 1, 358, 3, 358, 7064, 8, 358, 1, 358, 1, 358, 3, 358, 7068, 8, 358, 1, 358, 4, 358, 7071, 8, 358, 11, 358, 12, 358, 7072, 1, 358, 3, 358, 7076, 8, 358, 1, 358, 1, 358, 3, 358, 7080, 8, 358, 1, 358, 1, 358, 3, 358, 7084, 8, 358, 3, 358, 7086, 8, 358, 1, 359, 1, 359, 1, 360, 3, 360, 7091, 8, 360, 1, 360, 1, 360, 1, 361, 3, 361, 7096, 8, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7109, 8, 362, 1, 362, 3, 362, 7112, 8, 362, 1, 363, 1, 363, 3, 363, 7116, 8, 363, 1, 363, 3, 363, 7119, 8, 363, 1, 363, 3, 363, 7122, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7127, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7132, 8, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7138, 8, 363, 1, 363, 3, 363, 7141, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7146, 8, 363, 1, 363, 3, 363, 7149, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7154, 8, 363, 1, 363, 3, 363, 7157, 8, 363, 1, 363, 1, 363, 3, 363, 7161, 8, 363, 1, 363, 5, 363, 7164, 8, 363, 10, 363, 12, 363, 7167, 9, 363, 1, 363, 1, 363, 3, 363, 7171, 8, 363, 1, 363, 5, 363, 7174, 8, 363, 10, 363, 12, 363, 7177, 9, 363, 1, 363, 1, 363, 3, 363, 7181, 8, 363, 1, 363, 3, 363, 7184, 8, 363, 1, 363, 5, 363, 7187, 8, 363, 10, 363, 12, 363, 7190, 9, 363, 1, 363, 1, 363, 3, 363, 7194, 8, 363, 1, 363, 5, 363, 7197, 8, 363, 10, 363, 12, 363, 7200, 9, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7205, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7210, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7215, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7220, 8, 363, 1, 363, 1, 363, 3, 363, 7224, 8, 363, 1, 363, 3, 363, 7227, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7232, 8, 363, 1, 363, 1, 363, 3, 363, 7236, 8, 363, 1, 363, 1, 363, 3, 363, 7240, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 5, 364, 7246, 8, 364, 10, 364, 12, 364, 7249, 9, 364, 1, 364, 1, 364, 1, 365, 1, 365, 3, 365, 7255, 8, 365, 1, 365, 1, 365, 3, 365, 7259, 8, 365, 1, 365, 1, 365, 1, 365, 3, 365, 7264, 8, 365, 1, 365, 1, 365, 1, 365, 3, 365, 7269, 8, 365, 1, 365, 1, 365, 3, 365, 7273, 8, 365, 3, 365, 7275, 8, 365, 1, 365, 3, 365, 7278, 8, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7294, 8, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 5, 369, 7302, 8, 369, 10, 369, 12, 369, 7305, 9, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 5, 370, 7312, 8, 370, 10, 370, 12, 370, 7315, 9, 370, 1, 371, 1, 371, 1, 371, 1, 371, 5, 371, 7321, 8, 371, 10, 371, 12, 371, 7324, 9, 371, 1, 372, 1, 372, 1, 372, 1, 372, 5, 372, 7330, 8, 372, 10, 372, 12, 372, 7333, 9, 372, 1, 372, 1, 372, 1, 373, 1, 373, 3, 373, 7339, 8, 373, 1, 374, 1, 374, 1, 374, 5, 374, 7344, 8, 374, 10, 374, 12, 374, 7347, 9, 374, 1, 375, 1, 375, 1, 375, 5, 375, 7352, 8, 375, 10, 375, 12, 375, 7355, 9, 375, 1, 376, 1, 376, 1, 376, 5, 376, 7360, 8, 376, 10, 376, 12, 376, 7363, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7374, 8, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7381, 8, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7391, 8, 377, 1, 378, 1, 378, 1, 378, 3, 378, 7396, 8, 378, 1, 378, 3, 378, 7399, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7404, 8, 378, 1, 378, 3, 378, 7407, 8, 378, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7429, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7438, 8, 382, 1, 382, 3, 382, 7441, 8, 382, 1, 383, 1, 383, 1, 383, 3, 383, 7446, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 4, 383, 7477, 8, 383, 11, 383, 12, 383, 7478, 1, 383, 1, 383, 3, 383, 7483, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 4, 383, 7490, 8, 383, 11, 383, 12, 383, 7491, 1, 383, 1, 383, 3, 383, 7496, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7505, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7513, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7518, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7526, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7531, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7536, 8, 383, 3, 383, 7538, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7547, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7552, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7560, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7565, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7573, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7581, 8, 383, 1, 383, 3, 383, 7584, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7594, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7612, 8, 383, 1, 383, 3, 383, 7615, 8, 383, 1, 383, 3, 383, 7618, 8, 383, 1, 383, 1, 383, 3, 383, 7622, 8, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 5, 385, 7633, 8, 385, 10, 385, 12, 385, 7636, 9, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7643, 8, 385, 1, 386, 1, 386, 3, 386, 7647, 8, 386, 1, 387, 1, 387, 1, 387, 3, 387, 7652, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7657, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7663, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7668, 8, 387, 1, 387, 1, 387, 3, 387, 7672, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7677, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7682, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7687, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 5, 387, 7695, 8, 387, 10, 387, 12, 387, 7698, 9, 387, 3, 387, 7700, 8, 387, 1, 387, 1, 387, 3, 387, 7704, 8, 387, 1, 387, 1, 387, 3, 387, 7708, 8, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7715, 8, 388, 1, 388, 1, 388, 3, 388, 7719, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7748, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 7756, 8, 389, 1, 390, 3, 390, 7759, 8, 390, 1, 390, 3, 390, 7762, 8, 390, 1, 390, 3, 390, 7765, 8, 390, 1, 390, 3, 390, 7768, 8, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 3, 394, 7779, 8, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7793, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 5, 397, 7800, 8, 397, 10, 397, 12, 397, 7803, 9, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7829, 8, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 5, 400, 7839, 8, 400, 10, 400, 12, 400, 7842, 9, 400, 1, 401, 1, 401, 1, 401, 3, 401, 7847, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7855, 8, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7860, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7866, 8, 402, 10, 402, 12, 402, 7869, 9, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7876, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7889, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7895, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7901, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7916, 8, 403, 1, 403, 1, 403, 3, 403, 7920, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7926, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 5, 403, 7935, 8, 403, 10, 403, 12, 403, 7938, 9, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 5, 404, 7956, 8, 404, 10, 404, 12, 404, 7959, 9, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 4, 404, 7968, 8, 404, 11, 404, 12, 404, 7969, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7988, 8, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 5, 404, 8005, 8, 404, 10, 404, 12, 404, 8008, 9, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 8020, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 8029, 8, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 8038, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 8047, 8, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 8056, 8, 411, 1, 412, 1, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 0, 5, 214, 216, 804, 806, 808, 419, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 75, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9440, 0, 841, 1, 0, 0, 0, 2, 851, 1, 0, 0, 0, 4, 860, 1, 0, 0, 0, 6, 862, 1, 0, 0, 0, 8, 904, 1, 0, 0, 0, 10, 923, 1, 0, 0, 0, 12, 934, 1, 0, 0, 0, 14, 950, 1, 0, 0, 0, 16, 955, 1, 0, 0, 0, 18, 967, 1, 0, 0, 0, 20, 1002, 1, 0, 0, 0, 22, 1012, 1, 0, 0, 0, 24, 1014, 1, 0, 0, 0, 26, 1026, 1, 0, 0, 0, 28, 1056, 1, 0, 0, 0, 30, 1092, 1, 0, 0, 0, 32, 1143, 1, 0, 0, 0, 34, 1172, 1, 0, 0, 0, 36, 1208, 1, 0, 0, 0, 38, 1222, 1, 0, 0, 0, 40, 1229, 1, 0, 0, 0, 42, 1326, 1, 0, 0, 0, 44, 1328, 1, 0, 0, 0, 46, 1365, 1, 0, 0, 0, 48, 1429, 1, 0, 0, 0, 50, 1454, 1, 0, 0, 0, 52, 1460, 1, 0, 0, 0, 54, 1482, 1, 0, 0, 0, 56, 1569, 1, 0, 0, 0, 58, 1576, 1, 0, 0, 0, 60, 1578, 1, 0, 0, 0, 62, 1583, 1, 0, 0, 0, 64, 1623, 1, 0, 0, 0, 66, 1629, 1, 0, 0, 0, 68, 1631, 1, 0, 0, 0, 70, 1652, 1, 0, 0, 0, 72, 1659, 1, 0, 0, 0, 74, 1661, 1, 0, 0, 0, 76, 1686, 1, 0, 0, 0, 78, 1689, 1, 0, 0, 0, 80, 1694, 1, 0, 0, 0, 82, 1720, 1, 0, 0, 0, 84, 1736, 1, 0, 0, 0, 86, 1738, 1, 0, 0, 0, 88, 1832, 1, 0, 0, 0, 90, 1835, 1, 0, 0, 0, 92, 1847, 1, 0, 0, 0, 94, 1851, 1, 0, 0, 0, 96, 1901, 1, 0, 0, 0, 98, 1903, 1, 0, 0, 0, 100, 1931, 1, 0, 0, 0, 102, 1941, 1, 0, 0, 0, 104, 2128, 1, 0, 0, 0, 106, 2130, 1, 0, 0, 0, 108, 2132, 1, 0, 0, 0, 110, 2135, 1, 0, 0, 0, 112, 2210, 1, 0, 0, 0, 114, 2233, 1, 0, 0, 0, 116, 2381, 1, 0, 0, 0, 118, 2386, 1, 0, 0, 0, 120, 2388, 1, 0, 0, 0, 122, 2398, 1, 0, 0, 0, 124, 2454, 1, 0, 0, 0, 126, 2474, 1, 0, 0, 0, 128, 2476, 1, 0, 0, 0, 130, 2511, 1, 0, 0, 0, 132, 2520, 1, 0, 0, 0, 134, 2527, 1, 0, 0, 0, 136, 2550, 1, 0, 0, 0, 138, 2559, 1, 0, 0, 0, 140, 2574, 1, 0, 0, 0, 142, 2596, 1, 0, 0, 0, 144, 2652, 1, 0, 0, 0, 146, 2948, 1, 0, 0, 0, 148, 3048, 1, 0, 0, 0, 150, 3050, 1, 0, 0, 0, 152, 3057, 1, 0, 0, 0, 154, 3064, 1, 0, 0, 0, 156, 3087, 1, 0, 0, 0, 158, 3097, 1, 0, 0, 0, 160, 3104, 1, 0, 0, 0, 162, 3111, 1, 0, 0, 0, 164, 3118, 1, 0, 0, 0, 166, 3127, 1, 0, 0, 0, 168, 3139, 1, 0, 0, 0, 170, 3152, 1, 0, 0, 0, 172, 3159, 1, 0, 0, 0, 174, 3175, 1, 0, 0, 0, 176, 3202, 1, 0, 0, 0, 178, 3204, 1, 0, 0, 0, 180, 3214, 1, 0, 0, 0, 182, 3218, 1, 0, 0, 0, 184, 3224, 1, 0, 0, 0, 186, 3236, 1, 0, 0, 0, 188, 3238, 1, 0, 0, 0, 190, 3245, 1, 0, 0, 0, 192, 3247, 1, 0, 0, 0, 194, 3296, 1, 0, 0, 0, 196, 3305, 1, 0, 0, 0, 198, 3307, 1, 0, 0, 0, 200, 3318, 1, 0, 0, 0, 202, 3324, 1, 0, 0, 0, 204, 3398, 1, 0, 0, 0, 206, 3461, 1, 0, 0, 0, 208, 3479, 1, 0, 0, 0, 210, 3563, 1, 0, 0, 0, 212, 3566, 1, 0, 0, 0, 214, 3578, 1, 0, 0, 0, 216, 3598, 1, 0, 0, 0, 218, 3626, 1, 0, 0, 0, 220, 3630, 1, 0, 0, 0, 222, 3632, 1, 0, 0, 0, 224, 3642, 1, 0, 0, 0, 226, 3662, 1, 0, 0, 0, 228, 3669, 1, 0, 0, 0, 230, 3671, 1, 0, 0, 0, 232, 3682, 1, 0, 0, 0, 234, 3691, 1, 0, 0, 0, 236, 3697, 1, 0, 0, 0, 238, 3720, 1, 0, 0, 0, 240, 3722, 1, 0, 0, 0, 242, 3758, 1, 0, 0, 0, 244, 3813, 1, 0, 0, 0, 246, 3822, 1, 0, 0, 0, 248, 3842, 1, 0, 0, 0, 250, 3854, 1, 0, 0, 0, 252, 3858, 1, 0, 0, 0, 254, 3869, 1, 0, 0, 0, 256, 3902, 1, 0, 0, 0, 258, 3923, 1, 0, 0, 0, 260, 3933, 1, 0, 0, 0, 262, 3937, 1, 0, 0, 0, 264, 3963, 1, 0, 0, 0, 266, 4010, 1, 0, 0, 0, 268, 4012, 1, 0, 0, 0, 270, 4016, 1, 0, 0, 0, 272, 4033, 1, 0, 0, 0, 274, 4084, 1, 0, 0, 0, 276, 4093, 1, 0, 0, 0, 278, 4103, 1, 0, 0, 0, 280, 4105, 1, 0, 0, 0, 282, 4138, 1, 0, 0, 0, 284, 4146, 1, 0, 0, 0, 286, 4163, 1, 0, 0, 0, 288, 4179, 1, 0, 0, 0, 290, 4216, 1, 0, 0, 0, 292, 4222, 1, 0, 0, 0, 294, 4231, 1, 0, 0, 0, 296, 4244, 1, 0, 0, 0, 298, 4248, 1, 0, 0, 0, 300, 4286, 1, 0, 0, 0, 302, 4324, 1, 0, 0, 0, 304, 4338, 1, 0, 0, 0, 306, 4346, 1, 0, 0, 0, 308, 4350, 1, 0, 0, 0, 310, 4356, 1, 0, 0, 0, 312, 4370, 1, 0, 0, 0, 314, 4373, 1, 0, 0, 0, 316, 4391, 1, 0, 0, 0, 318, 4395, 1, 0, 0, 0, 320, 4411, 1, 0, 0, 0, 322, 4413, 1, 0, 0, 0, 324, 4425, 1, 0, 0, 0, 326, 4429, 1, 0, 0, 0, 328, 4446, 1, 0, 0, 0, 330, 4463, 1, 0, 0, 0, 332, 4466, 1, 0, 0, 0, 334, 4476, 1, 0, 0, 0, 336, 4480, 1, 0, 0, 0, 338, 4490, 1, 0, 0, 0, 340, 4493, 1, 0, 0, 0, 342, 4498, 1, 0, 0, 0, 344, 4518, 1, 0, 0, 0, 346, 4520, 1, 0, 0, 0, 348, 4537, 1, 0, 0, 0, 350, 4546, 1, 0, 0, 0, 352, 4555, 1, 0, 0, 0, 354, 4557, 1, 0, 0, 0, 356, 4571, 1, 0, 0, 0, 358, 4585, 1, 0, 0, 0, 360, 4600, 1, 0, 0, 0, 362, 4609, 1, 0, 0, 0, 364, 4634, 1, 0, 0, 0, 366, 4649, 1, 0, 0, 0, 368, 4668, 1, 0, 0, 0, 370, 4698, 1, 0, 0, 0, 372, 4700, 1, 0, 0, 0, 374, 4702, 1, 0, 0, 0, 376, 4704, 1, 0, 0, 0, 378, 4719, 1, 0, 0, 0, 380, 4748, 1, 0, 0, 0, 382, 4750, 1, 0, 0, 0, 384, 4752, 1, 0, 0, 0, 386, 4754, 1, 0, 0, 0, 388, 4769, 1, 0, 0, 0, 390, 4771, 1, 0, 0, 0, 392, 4838, 1, 0, 0, 0, 394, 4840, 1, 0, 0, 0, 396, 4846, 1, 0, 0, 0, 398, 4873, 1, 0, 0, 0, 400, 4887, 1, 0, 0, 0, 402, 4898, 1, 0, 0, 0, 404, 4900, 1, 0, 0, 0, 406, 4906, 1, 0, 0, 0, 408, 4916, 1, 0, 0, 0, 410, 4920, 1, 0, 0, 0, 412, 4927, 1, 0, 0, 0, 414, 4931, 1, 0, 0, 0, 416, 4937, 1, 0, 0, 0, 418, 4944, 1, 0, 0, 0, 420, 4950, 1, 0, 0, 0, 422, 4956, 1, 0, 0, 0, 424, 4961, 1, 0, 0, 0, 426, 5006, 1, 0, 0, 0, 428, 5027, 1, 0, 0, 0, 430, 5052, 1, 0, 0, 0, 432, 5055, 1, 0, 0, 0, 434, 5061, 1, 0, 0, 0, 436, 5077, 1, 0, 0, 0, 438, 5092, 1, 0, 0, 0, 440, 5098, 1, 0, 0, 0, 442, 5128, 1, 0, 0, 0, 444, 5130, 1, 0, 0, 0, 446, 5137, 1, 0, 0, 0, 448, 5149, 1, 0, 0, 0, 450, 5155, 1, 0, 0, 0, 452, 5180, 1, 0, 0, 0, 454, 5184, 1, 0, 0, 0, 456, 5188, 1, 0, 0, 0, 458, 5199, 1, 0, 0, 0, 460, 5207, 1, 0, 0, 0, 462, 5270, 1, 0, 0, 0, 464, 5329, 1, 0, 0, 0, 466, 5431, 1, 0, 0, 0, 468, 5441, 1, 0, 0, 0, 470, 5443, 1, 0, 0, 0, 472, 5461, 1, 0, 0, 0, 474, 5485, 1, 0, 0, 0, 476, 5509, 1, 0, 0, 0, 478, 5516, 1, 0, 0, 0, 480, 5536, 1, 0, 0, 0, 482, 5545, 1, 0, 0, 0, 484, 5607, 1, 0, 0, 0, 486, 5609, 1, 0, 0, 0, 488, 5613, 1, 0, 0, 0, 490, 5647, 1, 0, 0, 0, 492, 5649, 1, 0, 0, 0, 494, 5652, 1, 0, 0, 0, 496, 5716, 1, 0, 0, 0, 498, 5735, 1, 0, 0, 0, 500, 5762, 1, 0, 0, 0, 502, 5766, 1, 0, 0, 0, 504, 5787, 1, 0, 0, 0, 506, 5797, 1, 0, 0, 0, 508, 5807, 1, 0, 0, 0, 510, 5847, 1, 0, 0, 0, 512, 5849, 1, 0, 0, 0, 514, 5852, 1, 0, 0, 0, 516, 5882, 1, 0, 0, 0, 518, 5884, 1, 0, 0, 0, 520, 5887, 1, 0, 0, 0, 522, 5987, 1, 0, 0, 0, 524, 6005, 1, 0, 0, 0, 526, 6007, 1, 0, 0, 0, 528, 6059, 1, 0, 0, 0, 530, 6061, 1, 0, 0, 0, 532, 6070, 1, 0, 0, 0, 534, 6076, 1, 0, 0, 0, 536, 6083, 1, 0, 0, 0, 538, 6098, 1, 0, 0, 0, 540, 6107, 1, 0, 0, 0, 542, 6109, 1, 0, 0, 0, 544, 6130, 1, 0, 0, 0, 546, 6135, 1, 0, 0, 0, 548, 6145, 1, 0, 0, 0, 550, 6151, 1, 0, 0, 0, 552, 6185, 1, 0, 0, 0, 554, 6239, 1, 0, 0, 0, 556, 6425, 1, 0, 0, 0, 558, 6437, 1, 0, 0, 0, 560, 6453, 1, 0, 0, 0, 562, 6459, 1, 0, 0, 0, 564, 6478, 1, 0, 0, 0, 566, 6491, 1, 0, 0, 0, 568, 6505, 1, 0, 0, 0, 570, 6507, 1, 0, 0, 0, 572, 6510, 1, 0, 0, 0, 574, 6534, 1, 0, 0, 0, 576, 6546, 1, 0, 0, 0, 578, 6552, 1, 0, 0, 0, 580, 6564, 1, 0, 0, 0, 582, 6578, 1, 0, 0, 0, 584, 6580, 1, 0, 0, 0, 586, 6588, 1, 0, 0, 0, 588, 6596, 1, 0, 0, 0, 590, 6598, 1, 0, 0, 0, 592, 6600, 1, 0, 0, 0, 594, 6640, 1, 0, 0, 0, 596, 6647, 1, 0, 0, 0, 598, 6649, 1, 0, 0, 0, 600, 6672, 1, 0, 0, 0, 602, 6678, 1, 0, 0, 0, 604, 6688, 1, 0, 0, 0, 606, 6697, 1, 0, 0, 0, 608, 6700, 1, 0, 0, 0, 610, 6703, 1, 0, 0, 0, 612, 6724, 1, 0, 0, 0, 614, 6745, 1, 0, 0, 0, 616, 6753, 1, 0, 0, 0, 618, 6765, 1, 0, 0, 0, 620, 6773, 1, 0, 0, 0, 622, 6811, 1, 0, 0, 0, 624, 6823, 1, 0, 0, 0, 626, 6825, 1, 0, 0, 0, 628, 6827, 1, 0, 0, 0, 630, 6829, 1, 0, 0, 0, 632, 6831, 1, 0, 0, 0, 634, 6833, 1, 0, 0, 0, 636, 6835, 1, 0, 0, 0, 638, 6837, 1, 0, 0, 0, 640, 6839, 1, 0, 0, 0, 642, 6847, 1, 0, 0, 0, 644, 6849, 1, 0, 0, 0, 646, 6851, 1, 0, 0, 0, 648, 6853, 1, 0, 0, 0, 650, 6855, 1, 0, 0, 0, 652, 6863, 1, 0, 0, 0, 654, 6865, 1, 0, 0, 0, 656, 6875, 1, 0, 0, 0, 658, 6891, 1, 0, 0, 0, 660, 6893, 1, 0, 0, 0, 662, 6916, 1, 0, 0, 0, 664, 6918, 1, 0, 0, 0, 666, 6920, 1, 0, 0, 0, 668, 6922, 1, 0, 0, 0, 670, 6924, 1, 0, 0, 0, 672, 6932, 1, 0, 0, 0, 674, 6942, 1, 0, 0, 0, 676, 6947, 1, 0, 0, 0, 678, 6951, 1, 0, 0, 0, 680, 6958, 1, 0, 0, 0, 682, 6960, 1, 0, 0, 0, 684, 6967, 1, 0, 0, 0, 686, 6969, 1, 0, 0, 0, 688, 6975, 1, 0, 0, 0, 690, 6977, 1, 0, 0, 0, 692, 6982, 1, 0, 0, 0, 694, 6984, 1, 0, 0, 0, 696, 6986, 1, 0, 0, 0, 698, 7004, 1, 0, 0, 0, 700, 7020, 1, 0, 0, 0, 702, 7022, 1, 0, 0, 0, 704, 7026, 1, 0, 0, 0, 706, 7037, 1, 0, 0, 0, 708, 7048, 1, 0, 0, 0, 710, 7054, 1, 0, 0, 0, 712, 7056, 1, 0, 0, 0, 714, 7060, 1, 0, 0, 0, 716, 7085, 1, 0, 0, 0, 718, 7087, 1, 0, 0, 0, 720, 7090, 1, 0, 0, 0, 722, 7095, 1, 0, 0, 0, 724, 7111, 1, 0, 0, 0, 726, 7239, 1, 0, 0, 0, 728, 7241, 1, 0, 0, 0, 730, 7274, 1, 0, 0, 0, 732, 7279, 1, 0, 0, 0, 734, 7283, 1, 0, 0, 0, 736, 7289, 1, 0, 0, 0, 738, 7297, 1, 0, 0, 0, 740, 7308, 1, 0, 0, 0, 742, 7316, 1, 0, 0, 0, 744, 7325, 1, 0, 0, 0, 746, 7338, 1, 0, 0, 0, 748, 7340, 1, 0, 0, 0, 750, 7348, 1, 0, 0, 0, 752, 7356, 1, 0, 0, 0, 754, 7390, 1, 0, 0, 0, 756, 7406, 1, 0, 0, 0, 758, 7408, 1, 0, 0, 0, 760, 7411, 1, 0, 0, 0, 762, 7415, 1, 0, 0, 0, 764, 7440, 1, 0, 0, 0, 766, 7621, 1, 0, 0, 0, 768, 7623, 1, 0, 0, 0, 770, 7642, 1, 0, 0, 0, 772, 7644, 1, 0, 0, 0, 774, 7707, 1, 0, 0, 0, 776, 7747, 1, 0, 0, 0, 778, 7749, 1, 0, 0, 0, 780, 7758, 1, 0, 0, 0, 782, 7769, 1, 0, 0, 0, 784, 7771, 1, 0, 0, 0, 786, 7774, 1, 0, 0, 0, 788, 7778, 1, 0, 0, 0, 790, 7780, 1, 0, 0, 0, 792, 7792, 1, 0, 0, 0, 794, 7794, 1, 0, 0, 0, 796, 7828, 1, 0, 0, 0, 798, 7830, 1, 0, 0, 0, 800, 7835, 1, 0, 0, 0, 802, 7846, 1, 0, 0, 0, 804, 7859, 1, 0, 0, 0, 806, 7870, 1, 0, 0, 0, 808, 7987, 1, 0, 0, 0, 810, 8009, 1, 0, 0, 0, 812, 8019, 1, 0, 0, 0, 814, 8028, 1, 0, 0, 0, 816, 8037, 1, 0, 0, 0, 818, 8046, 1, 0, 0, 0, 820, 8048, 1, 0, 0, 0, 822, 8055, 1, 0, 0, 0, 824, 8057, 1, 0, 0, 0, 826, 8059, 1, 0, 0, 0, 828, 8061, 1, 0, 0, 0, 830, 8063, 1, 0, 0, 0, 832, 8065, 1, 0, 0, 0, 834, 8067, 1, 0, 0, 0, 836, 8069, 1, 0, 0, 0, 838, 840, 3, 2, 1, 0, 839, 838, 1, 0, 0, 0, 840, 843, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 844, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 844, 845, 5, 0, 0, 1, 845, 1, 1, 0, 0, 0, 846, 848, 3, 4, 2, 0, 847, 849, 5, 869, 0, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 852, 1, 0, 0, 0, 850, 852, 3, 6, 3, 0, 851, 846, 1, 0, 0, 0, 851, 850, 1, 0, 0, 0, 852, 3, 1, 0, 0, 0, 853, 861, 3, 8, 4, 0, 854, 861, 3, 10, 5, 0, 855, 861, 3, 12, 6, 0, 856, 861, 3, 14, 7, 0, 857, 861, 3, 16, 8, 0, 858, 861, 3, 20, 10, 0, 859, 861, 3, 22, 11, 0, 860, 853, 1, 0, 0, 0, 860, 854, 1, 0, 0, 0, 860, 855, 1, 0, 0, 0, 860, 856, 1, 0, 0, 0, 860, 857, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 859, 1, 0, 0, 0, 861, 5, 1, 0, 0, 0, 862, 863, 5, 869, 0, 0, 863, 7, 1, 0, 0, 0, 864, 905, 3, 24, 12, 0, 865, 905, 3, 26, 13, 0, 866, 905, 3, 28, 14, 0, 867, 905, 3, 30, 15, 0, 868, 905, 3, 32, 16, 0, 869, 905, 3, 34, 17, 0, 870, 905, 3, 36, 18, 0, 871, 905, 3, 40, 20, 0, 872, 905, 3, 42, 21, 0, 873, 905, 3, 44, 22, 0, 874, 905, 3, 46, 23, 0, 875, 905, 3, 48, 24, 0, 876, 905, 3, 54, 27, 0, 877, 905, 3, 38, 19, 0, 878, 905, 3, 126, 63, 0, 879, 905, 3, 128, 64, 0, 880, 905, 3, 130, 65, 0, 881, 905, 3, 132, 66, 0, 882, 905, 3, 134, 67, 0, 883, 905, 3, 136, 68, 0, 884, 905, 3, 138, 69, 0, 885, 905, 3, 140, 70, 0, 886, 905, 3, 142, 71, 0, 887, 905, 3, 144, 72, 0, 888, 905, 3, 150, 75, 0, 889, 905, 3, 152, 76, 0, 890, 905, 3, 154, 77, 0, 891, 905, 3, 156, 78, 0, 892, 905, 3, 158, 79, 0, 893, 905, 3, 160, 80, 0, 894, 905, 3, 162, 81, 0, 895, 905, 3, 164, 82, 0, 896, 905, 3, 166, 83, 0, 897, 905, 3, 168, 84, 0, 898, 905, 3, 170, 85, 0, 899, 905, 3, 172, 86, 0, 900, 905, 3, 174, 87, 0, 901, 905, 3, 176, 88, 0, 902, 905, 3, 178, 89, 0, 903, 905, 3, 182, 91, 0, 904, 864, 1, 0, 0, 0, 904, 865, 1, 0, 0, 0, 904, 866, 1, 0, 0, 0, 904, 867, 1, 0, 0, 0, 904, 868, 1, 0, 0, 0, 904, 869, 1, 0, 0, 0, 904, 870, 1, 0, 0, 0, 904, 871, 1, 0, 0, 0, 904, 872, 1, 0, 0, 0, 904, 873, 1, 0, 0, 0, 904, 874, 1, 0, 0, 0, 904, 875, 1, 0, 0, 0, 904, 876, 1, 0, 0, 0, 904, 877, 1, 0, 0, 0, 904, 878, 1, 0, 0, 0, 904, 879, 1, 0, 0, 0, 904, 880, 1, 0, 0, 0, 904, 881, 1, 0, 0, 0, 904, 882, 1, 0, 0, 0, 904, 883, 1, 0, 0, 0, 904, 884, 1, 0, 0, 0, 904, 885, 1, 0, 0, 0, 904, 886, 1, 0, 0, 0, 904, 887, 1, 0, 0, 0, 904, 888, 1, 0, 0, 0, 904, 889, 1, 0, 0, 0, 904, 890, 1, 0, 0, 0, 904, 891, 1, 0, 0, 0, 904, 892, 1, 0, 0, 0, 904, 893, 1, 0, 0, 0, 904, 894, 1, 0, 0, 0, 904, 895, 1, 0, 0, 0, 904, 896, 1, 0, 0, 0, 904, 897, 1, 0, 0, 0, 904, 898, 1, 0, 0, 0, 904, 899, 1, 0, 0, 0, 904, 900, 1, 0, 0, 0, 904, 901, 1, 0, 0, 0, 904, 902, 1, 0, 0, 0, 904, 903, 1, 0, 0, 0, 905, 9, 1, 0, 0, 0, 906, 924, 3, 210, 105, 0, 907, 924, 3, 212, 106, 0, 908, 924, 3, 192, 96, 0, 909, 924, 3, 220, 110, 0, 910, 924, 3, 186, 93, 0, 911, 924, 3, 208, 104, 0, 912, 924, 3, 184, 92, 0, 913, 924, 3, 198, 99, 0, 914, 924, 3, 202, 101, 0, 915, 924, 3, 204, 102, 0, 916, 924, 3, 206, 103, 0, 917, 924, 3, 188, 94, 0, 918, 924, 3, 190, 95, 0, 919, 924, 3, 252, 126, 0, 920, 924, 3, 222, 111, 0, 921, 924, 3, 616, 308, 0, 922, 924, 3, 618, 309, 0, 923, 906, 1, 0, 0, 0, 923, 907, 1, 0, 0, 0, 923, 908, 1, 0, 0, 0, 923, 909, 1, 0, 0, 0, 923, 910, 1, 0, 0, 0, 923, 911, 1, 0, 0, 0, 923, 912, 1, 0, 0, 0, 923, 913, 1, 0, 0, 0, 923, 914, 1, 0, 0, 0, 923, 915, 1, 0, 0, 0, 923, 916, 1, 0, 0, 0, 923, 917, 1, 0, 0, 0, 923, 918, 1, 0, 0, 0, 923, 919, 1, 0, 0, 0, 923, 920, 1, 0, 0, 0, 923, 921, 1, 0, 0, 0, 923, 922, 1, 0, 0, 0, 924, 11, 1, 0, 0, 0, 925, 935, 3, 322, 161, 0, 926, 935, 3, 324, 162, 0, 927, 935, 3, 326, 163, 0, 928, 935, 3, 328, 164, 0, 929, 935, 3, 330, 165, 0, 930, 935, 3, 332, 166, 0, 931, 935, 3, 334, 167, 0, 932, 935, 3, 336, 168, 0, 933, 935, 3, 338, 169, 0, 934, 925, 1, 0, 0, 0, 934, 926, 1, 0, 0, 0, 934, 927, 1, 0, 0, 0, 934, 928, 1, 0, 0, 0, 934, 929, 1, 0, 0, 0, 934, 930, 1, 0, 0, 0, 934, 931, 1, 0, 0, 0, 934, 932, 1, 0, 0, 0, 934, 933, 1, 0, 0, 0, 935, 13, 1, 0, 0, 0, 936, 951, 3, 354, 177, 0, 937, 951, 3, 356, 178, 0, 938, 951, 3, 358, 179, 0, 939, 951, 3, 360, 180, 0, 940, 951, 3, 362, 181, 0, 941, 951, 3, 364, 182, 0, 942, 951, 3, 366, 183, 0, 943, 951, 3, 368, 184, 0, 944, 951, 3, 404, 202, 0, 945, 951, 3, 406, 203, 0, 946, 951, 3, 408, 204, 0, 947, 951, 3, 410, 205, 0, 948, 951, 3, 412, 206, 0, 949, 951, 3, 414, 207, 0, 950, 936, 1, 0, 0, 0, 950, 937, 1, 0, 0, 0, 950, 938, 1, 0, 0, 0, 950, 939, 1, 0, 0, 0, 950, 940, 1, 0, 0, 0, 950, 941, 1, 0, 0, 0, 950, 942, 1, 0, 0, 0, 950, 943, 1, 0, 0, 0, 950, 944, 1, 0, 0, 0, 950, 945, 1, 0, 0, 0, 950, 946, 1, 0, 0, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 15, 1, 0, 0, 0, 952, 956, 3, 416, 208, 0, 953, 956, 3, 418, 209, 0, 954, 956, 3, 420, 210, 0, 955, 952, 1, 0, 0, 0, 955, 953, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 17, 1, 0, 0, 0, 957, 968, 3, 424, 212, 0, 958, 968, 3, 426, 213, 0, 959, 968, 3, 428, 214, 0, 960, 968, 3, 432, 216, 0, 961, 968, 3, 434, 217, 0, 962, 968, 3, 436, 218, 0, 963, 968, 3, 440, 220, 0, 964, 968, 3, 430, 215, 0, 965, 968, 3, 438, 219, 0, 966, 968, 3, 442, 221, 0, 967, 957, 1, 0, 0, 0, 967, 958, 1, 0, 0, 0, 967, 959, 1, 0, 0, 0, 967, 960, 1, 0, 0, 0, 967, 961, 1, 0, 0, 0, 967, 962, 1, 0, 0, 0, 967, 963, 1, 0, 0, 0, 967, 964, 1, 0, 0, 0, 967, 965, 1, 0, 0, 0, 967, 966, 1, 0, 0, 0, 968, 19, 1, 0, 0, 0, 969, 1003, 3, 460, 230, 0, 970, 1003, 3, 462, 231, 0, 971, 1003, 3, 464, 232, 0, 972, 1003, 3, 466, 233, 0, 973, 1003, 3, 470, 235, 0, 974, 1003, 3, 482, 241, 0, 975, 1003, 3, 484, 242, 0, 976, 1003, 3, 472, 236, 0, 977, 1003, 3, 474, 237, 0, 978, 1003, 3, 476, 238, 0, 979, 1003, 3, 478, 239, 0, 980, 1003, 3, 528, 264, 0, 981, 1003, 3, 530, 265, 0, 982, 1003, 3, 532, 266, 0, 983, 1003, 3, 534, 267, 0, 984, 1003, 3, 536, 268, 0, 985, 1003, 3, 542, 271, 0, 986, 1003, 3, 546, 273, 0, 987, 1003, 3, 548, 274, 0, 988, 1003, 3, 550, 275, 0, 989, 1003, 3, 552, 276, 0, 990, 1003, 3, 554, 277, 0, 991, 1003, 3, 556, 278, 0, 992, 1003, 3, 570, 285, 0, 993, 1003, 3, 572, 286, 0, 994, 1003, 3, 574, 287, 0, 995, 1003, 3, 576, 288, 0, 996, 1003, 3, 578, 289, 0, 997, 1003, 3, 580, 290, 0, 998, 1003, 3, 584, 292, 0, 999, 1003, 3, 586, 293, 0, 1000, 1003, 3, 588, 294, 0, 1001, 1003, 3, 590, 295, 0, 1002, 969, 1, 0, 0, 0, 1002, 970, 1, 0, 0, 0, 1002, 971, 1, 0, 0, 0, 1002, 972, 1, 0, 0, 0, 1002, 973, 1, 0, 0, 0, 1002, 974, 1, 0, 0, 0, 1002, 975, 1, 0, 0, 0, 1002, 976, 1, 0, 0, 0, 1002, 977, 1, 0, 0, 0, 1002, 978, 1, 0, 0, 0, 1002, 979, 1, 0, 0, 0, 1002, 980, 1, 0, 0, 0, 1002, 981, 1, 0, 0, 0, 1002, 982, 1, 0, 0, 0, 1002, 983, 1, 0, 0, 0, 1002, 984, 1, 0, 0, 0, 1002, 985, 1, 0, 0, 0, 1002, 986, 1, 0, 0, 0, 1002, 987, 1, 0, 0, 0, 1002, 988, 1, 0, 0, 0, 1002, 989, 1, 0, 0, 0, 1002, 990, 1, 0, 0, 0, 1002, 991, 1, 0, 0, 0, 1002, 992, 1, 0, 0, 0, 1002, 993, 1, 0, 0, 0, 1002, 994, 1, 0, 0, 0, 1002, 995, 1, 0, 0, 0, 1002, 996, 1, 0, 0, 0, 1002, 997, 1, 0, 0, 0, 1002, 998, 1, 0, 0, 0, 1002, 999, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1001, 1, 0, 0, 0, 1003, 21, 1, 0, 0, 0, 1004, 1013, 3, 602, 301, 0, 1005, 1013, 3, 600, 300, 0, 1006, 1013, 3, 604, 302, 0, 1007, 1013, 3, 606, 303, 0, 1008, 1013, 3, 608, 304, 0, 1009, 1013, 3, 610, 305, 0, 1010, 1013, 3, 612, 306, 0, 1011, 1013, 3, 620, 310, 0, 1012, 1004, 1, 0, 0, 0, 1012, 1005, 1, 0, 0, 0, 1012, 1006, 1, 0, 0, 0, 1012, 1007, 1, 0, 0, 0, 1012, 1008, 1, 0, 0, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1011, 1, 0, 0, 0, 1013, 23, 1, 0, 0, 0, 1014, 1015, 5, 34, 0, 0, 1015, 1017, 7, 0, 0, 0, 1016, 1018, 3, 760, 380, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1023, 3, 626, 313, 0, 1020, 1022, 3, 56, 28, 0, 1021, 1020, 1, 0, 0, 0, 1022, 1025, 1, 0, 0, 0, 1023, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 25, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1026, 1028, 5, 34, 0, 0, 1027, 1029, 3, 62, 31, 0, 1028, 1027, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1032, 5, 385, 0, 0, 1031, 1033, 3, 760, 380, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 3, 702, 351, 0, 1035, 1036, 5, 119, 0, 0, 1036, 1037, 5, 590, 0, 0, 1037, 1044, 3, 64, 32, 0, 1038, 1039, 5, 119, 0, 0, 1039, 1041, 5, 343, 0, 0, 1040, 1042, 5, 114, 0, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1045, 5, 541, 0, 0, 1044, 1038, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 1, 0, 0, 0, 1046, 1048, 3, 72, 36, 0, 1047, 1046, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1051, 1, 0, 0, 0, 1049, 1050, 5, 340, 0, 0, 1050, 1052, 5, 882, 0, 0, 1051, 1049, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 5, 371, 0, 0, 1054, 1055, 3, 422, 211, 0, 1055, 27, 1, 0, 0, 0, 1056, 1058, 5, 34, 0, 0, 1057, 1059, 7, 1, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1062, 7, 2, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 5, 82, 0, 0, 1064, 1066, 3, 638, 319, 0, 1065, 1067, 3, 74, 37, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 5, 119, 0, 0, 1069, 1070, 3, 652, 326, 0, 1070, 1074, 3, 738, 369, 0, 1071, 1073, 3, 76, 38, 0, 1072, 1071, 1, 0, 0, 0, 1073, 1076, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1089, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1077, 1079, 5, 308, 0, 0, 1078, 1080, 5, 857, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1088, 7, 3, 0, 0, 1082, 1084, 5, 104, 0, 0, 1083, 1085, 5, 857, 0, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1088, 7, 4, 0, 0, 1087, 1077, 1, 0, 0, 0, 1087, 1082, 1, 0, 0, 0, 1088, 1091, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 29, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1092, 1093, 5, 34, 0, 0, 1093, 1094, 5, 451, 0, 0, 1094, 1095, 5, 74, 0, 0, 1095, 1096, 3, 706, 353, 0, 1096, 1097, 5, 6, 0, 0, 1097, 1098, 5, 671, 0, 0, 1098, 1104, 5, 882, 0, 0, 1099, 1101, 5, 428, 0, 0, 1100, 1102, 5, 857, 0, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1105, 3, 714, 357, 0, 1104, 1099, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1111, 1, 0, 0, 0, 1106, 1108, 5, 672, 0, 0, 1107, 1109, 5, 857, 0, 0, 1108, 1107, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1112, 3, 714, 357, 0, 1111, 1106, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1118, 1, 0, 0, 0, 1113, 1115, 5, 553, 0, 0, 1114, 1116, 5, 857, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1119, 3, 714, 357, 0, 1118, 1113, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1125, 1, 0, 0, 0, 1120, 1122, 5, 504, 0, 0, 1121, 1123, 5, 857, 0, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1126, 3, 706, 353, 0, 1125, 1120, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 1, 0, 0, 0, 1127, 1129, 5, 687, 0, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1135, 1, 0, 0, 0, 1130, 1132, 5, 340, 0, 0, 1131, 1133, 5, 857, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1136, 5, 882, 0, 0, 1135, 1130, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1139, 5, 380, 0, 0, 1138, 1140, 5, 857, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 3, 692, 346, 0, 1142, 31, 1, 0, 0, 0, 1143, 1145, 5, 34, 0, 0, 1144, 1146, 3, 62, 31, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 5, 132, 0, 0, 1148, 1150, 3, 760, 380, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 3, 702, 351, 0, 1152, 1154, 5, 866, 0, 0, 1153, 1155, 3, 78, 39, 0, 1154, 1153, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1160, 1, 0, 0, 0, 1156, 1157, 5, 868, 0, 0, 1157, 1159, 3, 78, 39, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1167, 5, 867, 0, 0, 1164, 1166, 3, 82, 41, 0, 1165, 1164, 1, 0, 0, 0, 1166, 1169, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1170, 1171, 3, 422, 211, 0, 1171, 33, 1, 0, 0, 0, 1172, 1174, 5, 34, 0, 0, 1173, 1175, 3, 62, 31, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1178, 5, 307, 0, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 5, 409, 0, 0, 1180, 1182, 3, 760, 380, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1184, 3, 630, 315, 0, 1184, 1186, 5, 866, 0, 0, 1185, 1187, 3, 80, 40, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1192, 1, 0, 0, 0, 1188, 1189, 5, 868, 0, 0, 1189, 1191, 3, 80, 40, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1194, 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1196, 5, 867, 0, 0, 1196, 1197, 5, 580, 0, 0, 1197, 1201, 3, 726, 363, 0, 1198, 1200, 3, 82, 41, 0, 1199, 1198, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1199, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1206, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1207, 3, 422, 211, 0, 1205, 1207, 3, 438, 219, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 35, 1, 0, 0, 0, 1208, 1210, 5, 34, 0, 0, 1209, 1211, 5, 307, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1214, 5, 409, 0, 0, 1213, 1215, 3, 760, 380, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 3, 630, 315, 0, 1217, 1218, 5, 580, 0, 0, 1218, 1219, 7, 5, 0, 0, 1219, 1220, 5, 603, 0, 0, 1220, 1221, 5, 882, 0, 0, 1221, 37, 1, 0, 0, 0, 1222, 1223, 5, 34, 0, 0, 1223, 1225, 5, 582, 0, 0, 1224, 1226, 3, 760, 380, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 3, 654, 327, 0, 1228, 39, 1, 0, 0, 0, 1229, 1230, 5, 34, 0, 0, 1230, 1231, 5, 592, 0, 0, 1231, 1232, 3, 706, 353, 0, 1232, 1233, 5, 67, 0, 0, 1233, 1234, 5, 360, 0, 0, 1234, 1235, 5, 692, 0, 0, 1235, 1236, 7, 6, 0, 0, 1236, 1237, 5, 518, 0, 0, 1237, 1238, 5, 866, 0, 0, 1238, 1243, 3, 84, 42, 0, 1239, 1240, 5, 868, 0, 0, 1240, 1242, 3, 84, 42, 0, 1241, 1239, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1247, 5, 867, 0, 0, 1247, 41, 1, 0, 0, 0, 1248, 1250, 5, 34, 0, 0, 1249, 1251, 5, 660, 0, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 5, 173, 0, 0, 1253, 1255, 3, 760, 380, 0, 1254, 1253, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1258, 3, 648, 324, 0, 1257, 1259, 3, 86, 43, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1270, 1, 0, 0, 0, 1260, 1267, 3, 104, 52, 0, 1261, 1263, 5, 868, 0, 0, 1262, 1261, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 3, 104, 52, 0, 1265, 1262, 1, 0, 0, 0, 1266, 1269, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1271, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1270, 1260, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1273, 1, 0, 0, 0, 1272, 1274, 3, 110, 55, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1277, 7, 7, 0, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1280, 5, 13, 0, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 3, 210, 105, 0, 1282, 1327, 1, 0, 0, 0, 1283, 1285, 5, 34, 0, 0, 1284, 1286, 5, 660, 0, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 5, 173, 0, 0, 1288, 1290, 3, 760, 380, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1299, 3, 648, 324, 0, 1292, 1293, 5, 99, 0, 0, 1293, 1300, 3, 652, 326, 0, 1294, 1295, 5, 866, 0, 0, 1295, 1296, 5, 99, 0, 0, 1296, 1297, 3, 652, 326, 0, 1297, 1298, 5, 867, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1292, 1, 0, 0, 0, 1299, 1294, 1, 0, 0, 0, 1300, 1327, 1, 0, 0, 0, 1301, 1303, 5, 34, 0, 0, 1302, 1304, 5, 660, 0, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1307, 5, 173, 0, 0, 1306, 1308, 3, 760, 380, 0, 1307, 1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 3, 648, 324, 0, 1310, 1321, 3, 86, 43, 0, 1311, 1318, 3, 104, 52, 0, 1312, 1314, 5, 868, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 3, 104, 52, 0, 1316, 1313, 1, 0, 0, 0, 1317, 1320, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1311, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1325, 3, 110, 55, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1327, 1, 0, 0, 0, 1326, 1248, 1, 0, 0, 0, 1326, 1283, 1, 0, 0, 0, 1326, 1301, 1, 0, 0, 0, 1327, 43, 1, 0, 0, 0, 1328, 1330, 5, 34, 0, 0, 1329, 1331, 5, 180, 0, 0, 1330, 1329, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 5, 658, 0, 0, 1333, 1337, 3, 664, 332, 0, 1334, 1335, 5, 6, 0, 0, 1335, 1336, 5, 361, 0, 0, 1336, 1338, 5, 882, 0, 0, 1337, 1334, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1344, 1, 0, 0, 0, 1339, 1341, 5, 314, 0, 0, 1340, 1342, 5, 857, 0, 0, 1341, 1340, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 3, 714, 357, 0, 1344, 1339, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1349, 1, 0, 0, 0, 1346, 1347, 5, 399, 0, 0, 1347, 1348, 5, 857, 0, 0, 1348, 1350, 3, 714, 357, 0, 1349, 1346, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1356, 1, 0, 0, 0, 1351, 1353, 5, 380, 0, 0, 1352, 1354, 5, 857, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 3, 692, 346, 0, 1356, 1351, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1363, 1, 0, 0, 0, 1358, 1360, 5, 825, 0, 0, 1359, 1361, 5, 857, 0, 0, 1360, 1359, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1364, 5, 882, 0, 0, 1363, 1358, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 45, 1, 0, 0, 0, 1365, 1367, 5, 34, 0, 0, 1366, 1368, 5, 180, 0, 0, 1367, 1366, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 5, 658, 0, 0, 1370, 1371, 3, 664, 332, 0, 1371, 1372, 5, 6, 0, 0, 1372, 1373, 5, 361, 0, 0, 1373, 1374, 5, 882, 0, 0, 1374, 1375, 5, 187, 0, 0, 1375, 1376, 5, 451, 0, 0, 1376, 1377, 5, 74, 0, 0, 1377, 1383, 3, 706, 353, 0, 1378, 1380, 5, 393, 0, 0, 1379, 1381, 5, 857, 0, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1384, 3, 714, 357, 0, 1383, 1378, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1390, 1, 0, 0, 0, 1385, 1387, 5, 428, 0, 0, 1386, 1388, 5, 857, 0, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1391, 3, 714, 357, 0, 1390, 1385, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1397, 1, 0, 0, 0, 1392, 1394, 5, 314, 0, 0, 1393, 1395, 5, 857, 0, 0, 1394, 1393, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1398, 3, 714, 357, 0, 1397, 1392, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1404, 1, 0, 0, 0, 1399, 1401, 5, 481, 0, 0, 1400, 1402, 5, 857, 0, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1405, 3, 714, 357, 0, 1404, 1399, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1411, 1, 0, 0, 0, 1406, 1408, 5, 504, 0, 0, 1407, 1409, 5, 857, 0, 0, 1408, 1407, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1412, 3, 706, 353, 0, 1411, 1406, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1414, 1, 0, 0, 0, 1413, 1415, 5, 687, 0, 0, 1414, 1413, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1421, 1, 0, 0, 0, 1416, 1418, 5, 340, 0, 0, 1417, 1419, 5, 857, 0, 0, 1418, 1417, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1422, 5, 882, 0, 0, 1421, 1416, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1425, 5, 380, 0, 0, 1424, 1426, 5, 857, 0, 0, 1425, 1424, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 3, 692, 346, 0, 1428, 47, 1, 0, 0, 0, 1429, 1431, 5, 34, 0, 0, 1430, 1432, 3, 62, 31, 0, 1431, 1430, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1435, 3, 760, 380, 0, 1434, 1433, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1438, 5, 178, 0, 0, 1437, 1439, 3, 760, 380, 0, 1438, 1437, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 3, 702, 351, 0, 1441, 1442, 7, 8, 0, 0, 1442, 1443, 7, 9, 0, 0, 1443, 1444, 5, 119, 0, 0, 1444, 1445, 3, 652, 326, 0, 1445, 1446, 5, 65, 0, 0, 1446, 1447, 5, 52, 0, 0, 1447, 1450, 5, 586, 0, 0, 1448, 1449, 7, 10, 0, 0, 1449, 1451, 3, 702, 351, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 3, 422, 211, 0, 1453, 49, 1, 0, 0, 0, 1454, 1456, 5, 194, 0, 0, 1455, 1457, 5, 552, 0, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 3, 52, 26, 0, 1459, 51, 1, 0, 0, 0, 1460, 1472, 3, 706, 353, 0, 1461, 1462, 5, 866, 0, 0, 1462, 1467, 3, 706, 353, 0, 1463, 1464, 5, 868, 0, 0, 1464, 1466, 3, 706, 353, 0, 1465, 1463, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1465, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1470, 1, 0, 0, 0, 1469, 1467, 1, 0, 0, 0, 1470, 1471, 5, 867, 0, 0, 1471, 1473, 1, 0, 0, 0, 1472, 1461, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 5, 13, 0, 0, 1475, 1476, 5, 866, 0, 0, 1476, 1477, 3, 10, 5, 0, 1477, 1480, 5, 867, 0, 0, 1478, 1479, 5, 868, 0, 0, 1479, 1481, 3, 52, 26, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 53, 1, 0, 0, 0, 1482, 1484, 5, 34, 0, 0, 1483, 1485, 3, 762, 381, 0, 1484, 1483, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1489, 1, 0, 0, 0, 1486, 1487, 5, 308, 0, 0, 1487, 1488, 5, 857, 0, 0, 1488, 1490, 7, 11, 0, 0, 1489, 1486, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1492, 1, 0, 0, 0, 1491, 1493, 3, 62, 31, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1497, 1, 0, 0, 0, 1494, 1495, 5, 162, 0, 0, 1495, 1496, 5, 591, 0, 0, 1496, 1498, 7, 12, 0, 0, 1497, 1494, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 5, 684, 0, 0, 1500, 1512, 3, 634, 317, 0, 1501, 1502, 5, 866, 0, 0, 1502, 1507, 3, 658, 329, 0, 1503, 1504, 5, 868, 0, 0, 1504, 1506, 3, 658, 329, 0, 1505, 1503, 1, 0, 0, 0, 1506, 1509, 1, 0, 0, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1510, 1511, 5, 867, 0, 0, 1511, 1513, 1, 0, 0, 0, 1512, 1501, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1534, 5, 13, 0, 0, 1515, 1517, 5, 866, 0, 0, 1516, 1518, 3, 50, 25, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 3, 210, 105, 0, 1520, 1521, 5, 867, 0, 0, 1521, 1535, 1, 0, 0, 0, 1522, 1524, 3, 50, 25, 0, 1523, 1522, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1532, 3, 210, 105, 0, 1526, 1528, 5, 194, 0, 0, 1527, 1529, 7, 13, 0, 0, 1528, 1527, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1531, 5, 27, 0, 0, 1531, 1533, 5, 121, 0, 0, 1532, 1526, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1515, 1, 0, 0, 0, 1534, 1523, 1, 0, 0, 0, 1535, 55, 1, 0, 0, 0, 1536, 1538, 5, 42, 0, 0, 1537, 1536, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1541, 3, 58, 29, 0, 1540, 1542, 5, 857, 0, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1545, 1, 0, 0, 0, 1543, 1546, 3, 688, 344, 0, 1544, 1546, 5, 42, 0, 0, 1545, 1543, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1546, 1570, 1, 0, 0, 0, 1547, 1549, 5, 42, 0, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 5, 28, 0, 0, 1551, 1553, 5, 857, 0, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1570, 3, 690, 345, 0, 1555, 1557, 5, 42, 0, 0, 1556, 1555, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1560, 5, 376, 0, 0, 1559, 1561, 5, 857, 0, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1570, 5, 882, 0, 0, 1563, 1564, 5, 135, 0, 0, 1564, 1566, 5, 515, 0, 0, 1565, 1567, 5, 857, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 7, 14, 0, 0, 1569, 1537, 1, 0, 0, 0, 1569, 1548, 1, 0, 0, 0, 1569, 1556, 1, 0, 0, 0, 1569, 1563, 1, 0, 0, 0, 1570, 57, 1, 0, 0, 0, 1571, 1572, 5, 26, 0, 0, 1572, 1577, 5, 155, 0, 0, 1573, 1577, 5, 823, 0, 0, 1574, 1575, 5, 224, 0, 0, 1575, 1577, 5, 155, 0, 0, 1576, 1571, 1, 0, 0, 0, 1576, 1573, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1577, 59, 1, 0, 0, 0, 1578, 1581, 7, 15, 0, 0, 1579, 1580, 5, 866, 0, 0, 1580, 1582, 5, 867, 0, 0, 1581, 1579, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 61, 1, 0, 0, 0, 1583, 1584, 5, 364, 0, 0, 1584, 1587, 5, 857, 0, 0, 1585, 1588, 3, 684, 342, 0, 1586, 1588, 3, 60, 30, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1586, 1, 0, 0, 0, 1588, 63, 1, 0, 0, 0, 1589, 1590, 5, 311, 0, 0, 1590, 1594, 3, 66, 33, 0, 1591, 1593, 3, 68, 34, 0, 1592, 1591, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1592, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1624, 1, 0, 0, 0, 1596, 1594, 1, 0, 0, 0, 1597, 1600, 5, 387, 0, 0, 1598, 1601, 3, 712, 356, 0, 1599, 1601, 3, 804, 402, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1611, 3, 70, 35, 0, 1603, 1604, 5, 641, 0, 0, 1604, 1608, 3, 66, 33, 0, 1605, 1607, 3, 68, 34, 0, 1606, 1605, 1, 0, 0, 0, 1607, 1610, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1611, 1603, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1621, 1, 0, 0, 0, 1613, 1614, 5, 379, 0, 0, 1614, 1618, 3, 66, 33, 0, 1615, 1617, 3, 68, 34, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1613, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1589, 1, 0, 0, 0, 1623, 1597, 1, 0, 0, 0, 1624, 65, 1, 0, 0, 0, 1625, 1630, 5, 287, 0, 0, 1626, 1630, 3, 716, 358, 0, 1627, 1630, 3, 712, 356, 0, 1628, 1630, 3, 804, 402, 0, 1629, 1625, 1, 0, 0, 0, 1629, 1626, 1, 0, 0, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1628, 1, 0, 0, 0, 1630, 67, 1, 0, 0, 0, 1631, 1632, 5, 853, 0, 0, 1632, 1635, 5, 87, 0, 0, 1633, 1636, 3, 712, 356, 0, 1634, 1636, 3, 804, 402, 0, 1635, 1633, 1, 0, 0, 0, 1635, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 3, 70, 35, 0, 1638, 69, 1, 0, 0, 0, 1639, 1653, 3, 830, 415, 0, 1640, 1653, 5, 223, 0, 0, 1641, 1653, 5, 242, 0, 0, 1642, 1653, 5, 243, 0, 0, 1643, 1653, 5, 244, 0, 0, 1644, 1653, 5, 245, 0, 0, 1645, 1653, 5, 246, 0, 0, 1646, 1653, 5, 247, 0, 0, 1647, 1653, 5, 248, 0, 0, 1648, 1653, 5, 249, 0, 0, 1649, 1653, 5, 250, 0, 0, 1650, 1653, 5, 251, 0, 0, 1651, 1653, 5, 252, 0, 0, 1652, 1639, 1, 0, 0, 0, 1652, 1640, 1, 0, 0, 0, 1652, 1641, 1, 0, 0, 0, 1652, 1642, 1, 0, 0, 0, 1652, 1643, 1, 0, 0, 0, 1652, 1644, 1, 0, 0, 0, 1652, 1645, 1, 0, 0, 0, 1652, 1646, 1, 0, 0, 0, 1652, 1647, 1, 0, 0, 0, 1652, 1648, 1, 0, 0, 0, 1652, 1649, 1, 0, 0, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1651, 1, 0, 0, 0, 1653, 71, 1, 0, 0, 0, 1654, 1660, 5, 375, 0, 0, 1655, 1660, 5, 368, 0, 0, 1656, 1657, 5, 368, 0, 0, 1657, 1658, 5, 119, 0, 0, 1658, 1660, 5, 598, 0, 0, 1659, 1654, 1, 0, 0, 0, 1659, 1655, 1, 0, 0, 0, 1659, 1656, 1, 0, 0, 0, 1660, 73, 1, 0, 0, 0, 1661, 1662, 5, 188, 0, 0, 1662, 1663, 7, 16, 0, 0, 1663, 75, 1, 0, 0, 0, 1664, 1666, 5, 443, 0, 0, 1665, 1667, 5, 857, 0, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1687, 3, 714, 357, 0, 1669, 1687, 3, 74, 37, 0, 1670, 1671, 5, 194, 0, 0, 1671, 1672, 5, 525, 0, 0, 1672, 1687, 3, 706, 353, 0, 1673, 1674, 5, 340, 0, 0, 1674, 1687, 5, 882, 0, 0, 1675, 1687, 7, 17, 0, 0, 1676, 1678, 5, 825, 0, 0, 1677, 1679, 5, 857, 0, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1687, 5, 882, 0, 0, 1681, 1683, 5, 833, 0, 0, 1682, 1684, 5, 857, 0, 0, 1683, 1682, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1687, 5, 882, 0, 0, 1686, 1664, 1, 0, 0, 0, 1686, 1669, 1, 0, 0, 0, 1686, 1670, 1, 0, 0, 0, 1686, 1673, 1, 0, 0, 0, 1686, 1675, 1, 0, 0, 0, 1686, 1676, 1, 0, 0, 0, 1686, 1681, 1, 0, 0, 0, 1687, 77, 1, 0, 0, 0, 1688, 1690, 7, 18, 0, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 3, 706, 353, 0, 1692, 1693, 3, 726, 363, 0, 1693, 79, 1, 0, 0, 0, 1694, 1695, 3, 706, 353, 0, 1695, 1696, 3, 726, 363, 0, 1696, 81, 1, 0, 0, 0, 1697, 1698, 5, 340, 0, 0, 1698, 1721, 5, 882, 0, 0, 1699, 1700, 5, 444, 0, 0, 1700, 1721, 5, 162, 0, 0, 1701, 1703, 5, 114, 0, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1721, 5, 47, 0, 0, 1705, 1706, 5, 354, 0, 0, 1706, 1716, 5, 162, 0, 0, 1707, 1708, 5, 502, 0, 0, 1708, 1716, 5, 162, 0, 0, 1709, 1710, 5, 136, 0, 0, 1710, 1711, 5, 162, 0, 0, 1711, 1716, 5, 360, 0, 0, 1712, 1713, 5, 112, 0, 0, 1713, 1714, 5, 162, 0, 0, 1714, 1716, 5, 360, 0, 0, 1715, 1705, 1, 0, 0, 0, 1715, 1707, 1, 0, 0, 0, 1715, 1709, 1, 0, 0, 0, 1715, 1712, 1, 0, 0, 0, 1716, 1721, 1, 0, 0, 0, 1717, 1718, 5, 162, 0, 0, 1718, 1719, 5, 591, 0, 0, 1719, 1721, 7, 12, 0, 0, 1720, 1697, 1, 0, 0, 0, 1720, 1699, 1, 0, 0, 0, 1720, 1702, 1, 0, 0, 0, 1720, 1715, 1, 0, 0, 0, 1720, 1717, 1, 0, 0, 0, 1721, 83, 1, 0, 0, 0, 1722, 1723, 5, 421, 0, 0, 1723, 1737, 5, 882, 0, 0, 1724, 1725, 5, 39, 0, 0, 1725, 1737, 5, 882, 0, 0, 1726, 1727, 5, 678, 0, 0, 1727, 1737, 5, 882, 0, 0, 1728, 1729, 5, 529, 0, 0, 1729, 1737, 5, 882, 0, 0, 1730, 1731, 5, 601, 0, 0, 1731, 1737, 5, 882, 0, 0, 1732, 1733, 5, 519, 0, 0, 1733, 1737, 5, 882, 0, 0, 1734, 1735, 5, 537, 0, 0, 1735, 1737, 3, 712, 356, 0, 1736, 1722, 1, 0, 0, 0, 1736, 1724, 1, 0, 0, 0, 1736, 1726, 1, 0, 0, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1734, 1, 0, 0, 0, 1737, 85, 1, 0, 0, 0, 1738, 1739, 5, 866, 0, 0, 1739, 1744, 3, 88, 44, 0, 1740, 1741, 5, 868, 0, 0, 1741, 1743, 3, 88, 44, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1746, 1, 0, 0, 0, 1744, 1742, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1747, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 1748, 5, 867, 0, 0, 1748, 87, 1, 0, 0, 0, 1749, 1750, 3, 658, 329, 0, 1750, 1751, 3, 94, 47, 0, 1751, 1833, 1, 0, 0, 0, 1752, 1754, 7, 19, 0, 0, 1753, 1755, 3, 642, 321, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1758, 3, 74, 37, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1763, 3, 738, 369, 0, 1760, 1762, 3, 76, 38, 0, 1761, 1760, 1, 0, 0, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1833, 1, 0, 0, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1768, 7, 20, 0, 0, 1767, 1769, 7, 19, 0, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 1, 0, 0, 0, 1770, 1772, 3, 642, 321, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1777, 3, 738, 369, 0, 1774, 1776, 3, 76, 38, 0, 1775, 1774, 1, 0, 0, 0, 1776, 1779, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1833, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1780, 1782, 3, 92, 46, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 5, 131, 0, 0, 1784, 1786, 5, 92, 0, 0, 1785, 1787, 3, 74, 37, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1792, 3, 738, 369, 0, 1789, 1791, 3, 76, 38, 0, 1790, 1789, 1, 0, 0, 0, 1791, 1794, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1833, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1797, 3, 92, 46, 0, 1796, 1795, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 5, 182, 0, 0, 1799, 1801, 7, 19, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1803, 1, 0, 0, 0, 1802, 1804, 3, 642, 321, 0, 1803, 1802, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1806, 1, 0, 0, 0, 1805, 1807, 3, 74, 37, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1812, 3, 738, 369, 0, 1809, 1811, 3, 76, 38, 0, 1810, 1809, 1, 0, 0, 0, 1811, 1814, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1833, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1817, 3, 92, 46, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 5, 67, 0, 0, 1819, 1821, 5, 92, 0, 0, 1820, 1822, 3, 642, 321, 0, 1821, 1820, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 3, 738, 369, 0, 1824, 1825, 3, 98, 49, 0, 1825, 1833, 1, 0, 0, 0, 1826, 1827, 5, 27, 0, 0, 1827, 1828, 5, 866, 0, 0, 1828, 1829, 3, 804, 402, 0, 1829, 1830, 5, 867, 0, 0, 1830, 1833, 1, 0, 0, 0, 1831, 1833, 3, 90, 45, 0, 1832, 1749, 1, 0, 0, 0, 1832, 1752, 1, 0, 0, 0, 1832, 1766, 1, 0, 0, 0, 1832, 1781, 1, 0, 0, 0, 1832, 1796, 1, 0, 0, 0, 1832, 1816, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1832, 1831, 1, 0, 0, 0, 1833, 89, 1, 0, 0, 0, 1834, 1836, 3, 92, 46, 0, 1835, 1834, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, 5, 27, 0, 0, 1838, 1839, 5, 866, 0, 0, 1839, 1840, 3, 804, 402, 0, 1840, 1845, 5, 867, 0, 0, 1841, 1843, 5, 114, 0, 0, 1842, 1841, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1846, 5, 57, 0, 0, 1845, 1842, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 91, 1, 0, 0, 0, 1847, 1849, 5, 31, 0, 0, 1848, 1850, 3, 706, 353, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 93, 1, 0, 0, 0, 1851, 1855, 3, 726, 363, 0, 1852, 1854, 3, 96, 48, 0, 1853, 1852, 1, 0, 0, 0, 1854, 1857, 1, 0, 0, 0, 1855, 1853, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 95, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1858, 1902, 3, 722, 361, 0, 1859, 1860, 5, 42, 0, 0, 1860, 1902, 3, 754, 377, 0, 1861, 1902, 5, 686, 0, 0, 1862, 1902, 5, 435, 0, 0, 1863, 1868, 5, 315, 0, 0, 1864, 1865, 5, 119, 0, 0, 1865, 1866, 5, 185, 0, 0, 1866, 1868, 3, 756, 378, 0, 1867, 1863, 1, 0, 0, 0, 1867, 1864, 1, 0, 0, 0, 1868, 1902, 1, 0, 0, 0, 1869, 1871, 5, 131, 0, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1902, 5, 92, 0, 0, 1873, 1875, 5, 182, 0, 0, 1874, 1876, 5, 92, 0, 0, 1875, 1874, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1902, 1, 0, 0, 0, 1877, 1878, 5, 340, 0, 0, 1878, 1902, 5, 882, 0, 0, 1879, 1880, 5, 338, 0, 0, 1880, 1902, 7, 21, 0, 0, 1881, 1882, 5, 647, 0, 0, 1882, 1902, 7, 22, 0, 0, 1883, 1902, 3, 98, 49, 0, 1884, 1885, 5, 28, 0, 0, 1885, 1902, 3, 690, 345, 0, 1886, 1887, 5, 71, 0, 0, 1887, 1889, 5, 9, 0, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 5, 13, 0, 0, 1891, 1892, 5, 866, 0, 0, 1892, 1893, 3, 804, 402, 0, 1893, 1895, 5, 867, 0, 0, 1894, 1896, 7, 23, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1902, 1, 0, 0, 0, 1897, 1898, 5, 241, 0, 0, 1898, 1899, 5, 42, 0, 0, 1899, 1902, 5, 682, 0, 0, 1900, 1902, 3, 90, 45, 0, 1901, 1858, 1, 0, 0, 0, 1901, 1859, 1, 0, 0, 0, 1901, 1861, 1, 0, 0, 0, 1901, 1862, 1, 0, 0, 0, 1901, 1867, 1, 0, 0, 0, 1901, 1870, 1, 0, 0, 0, 1901, 1873, 1, 0, 0, 0, 1901, 1877, 1, 0, 0, 0, 1901, 1879, 1, 0, 0, 0, 1901, 1881, 1, 0, 0, 0, 1901, 1883, 1, 0, 0, 0, 1901, 1884, 1, 0, 0, 0, 1901, 1888, 1, 0, 0, 0, 1901, 1897, 1, 0, 0, 0, 1901, 1900, 1, 0, 0, 0, 1902, 97, 1, 0, 0, 0, 1903, 1904, 5, 138, 0, 0, 1904, 1906, 3, 652, 326, 0, 1905, 1907, 3, 738, 369, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1909, 5, 110, 0, 0, 1909, 1911, 7, 24, 0, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1913, 1, 0, 0, 0, 1912, 1914, 3, 100, 50, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 99, 1, 0, 0, 0, 1915, 1916, 5, 119, 0, 0, 1916, 1917, 5, 44, 0, 0, 1917, 1921, 3, 102, 51, 0, 1918, 1919, 5, 119, 0, 0, 1919, 1920, 5, 185, 0, 0, 1920, 1922, 3, 102, 51, 0, 1921, 1918, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1932, 1, 0, 0, 0, 1923, 1924, 5, 119, 0, 0, 1924, 1925, 5, 185, 0, 0, 1925, 1929, 3, 102, 51, 0, 1926, 1927, 5, 119, 0, 0, 1927, 1928, 5, 44, 0, 0, 1928, 1930, 3, 102, 51, 0, 1929, 1926, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1932, 1, 0, 0, 0, 1931, 1915, 1, 0, 0, 0, 1931, 1923, 1, 0, 0, 0, 1932, 101, 1, 0, 0, 0, 1933, 1942, 5, 146, 0, 0, 1934, 1942, 5, 22, 0, 0, 1935, 1936, 5, 155, 0, 0, 1936, 1942, 5, 116, 0, 0, 1937, 1938, 5, 502, 0, 0, 1938, 1942, 5, 305, 0, 0, 1939, 1940, 5, 155, 0, 0, 1940, 1942, 5, 42, 0, 0, 1941, 1933, 1, 0, 0, 0, 1941, 1934, 1, 0, 0, 0, 1941, 1935, 1, 0, 0, 0, 1941, 1937, 1, 0, 0, 0, 1941, 1939, 1, 0, 0, 0, 1942, 103, 1, 0, 0, 0, 1943, 1945, 5, 380, 0, 0, 1944, 1946, 5, 857, 0, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1949, 3, 692, 346, 0, 1948, 1947, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 2129, 1, 0, 0, 0, 1950, 1952, 5, 825, 0, 0, 1951, 1953, 5, 857, 0, 0, 1952, 1951, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 2129, 5, 882, 0, 0, 1955, 1957, 5, 314, 0, 0, 1956, 1958, 5, 857, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 2129, 3, 712, 356, 0, 1960, 1962, 5, 315, 0, 0, 1961, 1963, 5, 857, 0, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 2129, 3, 712, 356, 0, 1965, 1967, 5, 316, 0, 0, 1966, 1968, 5, 857, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 2129, 3, 712, 356, 0, 1970, 1972, 5, 42, 0, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1975, 3, 58, 29, 0, 1974, 1976, 5, 857, 0, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1979, 1, 0, 0, 0, 1977, 1980, 3, 688, 344, 0, 1978, 1980, 5, 42, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1978, 1, 0, 0, 0, 1980, 2129, 1, 0, 0, 0, 1981, 1983, 7, 25, 0, 0, 1982, 1984, 5, 857, 0, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 2129, 7, 26, 0, 0, 1986, 1988, 5, 42, 0, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1991, 5, 28, 0, 0, 1990, 1992, 5, 857, 0, 0, 1991, 1990, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 2129, 3, 690, 345, 0, 1994, 1996, 5, 340, 0, 0, 1995, 1997, 5, 857, 0, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2129, 5, 882, 0, 0, 1999, 2001, 5, 346, 0, 0, 2000, 2002, 5, 857, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2129, 7, 27, 0, 0, 2004, 2006, 5, 349, 0, 0, 2005, 2007, 5, 857, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2129, 5, 882, 0, 0, 2009, 2010, 7, 28, 0, 0, 2010, 2012, 5, 367, 0, 0, 2011, 2013, 5, 857, 0, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2129, 5, 882, 0, 0, 2015, 2017, 5, 365, 0, 0, 2016, 2018, 5, 857, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2129, 7, 26, 0, 0, 2020, 2022, 5, 376, 0, 0, 2021, 2023, 5, 857, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2129, 5, 882, 0, 0, 2025, 2027, 7, 29, 0, 0, 2026, 2028, 5, 857, 0, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2129, 7, 26, 0, 0, 2030, 2032, 7, 30, 0, 0, 2031, 2033, 5, 857, 0, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2129, 3, 712, 356, 0, 2035, 2037, 5, 377, 0, 0, 2036, 2038, 5, 857, 0, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2129, 3, 712, 356, 0, 2040, 2041, 5, 82, 0, 0, 2041, 2043, 5, 367, 0, 0, 2042, 2044, 5, 857, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2129, 5, 882, 0, 0, 2046, 2048, 5, 431, 0, 0, 2047, 2049, 5, 857, 0, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2129, 7, 31, 0, 0, 2051, 2053, 5, 443, 0, 0, 2052, 2054, 5, 857, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2129, 3, 714, 357, 0, 2056, 2058, 5, 480, 0, 0, 2057, 2059, 5, 857, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2129, 3, 712, 356, 0, 2061, 2063, 5, 490, 0, 0, 2062, 2064, 5, 857, 0, 0, 2063, 2062, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2129, 3, 712, 356, 0, 2066, 2068, 5, 520, 0, 0, 2067, 2069, 5, 857, 0, 0, 2068, 2067, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2129, 7, 14, 0, 0, 2071, 2073, 5, 529, 0, 0, 2072, 2074, 5, 857, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2129, 5, 882, 0, 0, 2076, 2078, 5, 588, 0, 0, 2077, 2079, 5, 857, 0, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2129, 7, 32, 0, 0, 2081, 2082, 5, 640, 0, 0, 2082, 2129, 5, 664, 0, 0, 2083, 2085, 5, 833, 0, 0, 2084, 2086, 5, 857, 0, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2129, 5, 882, 0, 0, 2088, 2090, 5, 642, 0, 0, 2089, 2091, 5, 857, 0, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2129, 7, 14, 0, 0, 2093, 2095, 5, 643, 0, 0, 2094, 2096, 5, 857, 0, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2129, 7, 14, 0, 0, 2098, 2100, 5, 644, 0, 0, 2099, 2101, 5, 857, 0, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2104, 1, 0, 0, 0, 2102, 2105, 5, 42, 0, 0, 2103, 2105, 3, 712, 356, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2103, 1, 0, 0, 0, 2105, 2129, 1, 0, 0, 0, 2106, 2107, 5, 658, 0, 0, 2107, 2109, 3, 666, 333, 0, 2108, 2110, 3, 108, 54, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2129, 1, 0, 0, 0, 2111, 2112, 5, 659, 0, 0, 2112, 2113, 5, 857, 0, 0, 2113, 2129, 3, 106, 53, 0, 2114, 2129, 3, 108, 54, 0, 2115, 2117, 5, 665, 0, 0, 2116, 2118, 5, 857, 0, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2129, 7, 26, 0, 0, 2120, 2122, 5, 181, 0, 0, 2121, 2123, 5, 857, 0, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2125, 5, 866, 0, 0, 2125, 2126, 3, 650, 325, 0, 2126, 2127, 5, 867, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 1943, 1, 0, 0, 0, 2128, 1950, 1, 0, 0, 0, 2128, 1955, 1, 0, 0, 0, 2128, 1960, 1, 0, 0, 0, 2128, 1965, 1, 0, 0, 0, 2128, 1971, 1, 0, 0, 0, 2128, 1981, 1, 0, 0, 0, 2128, 1987, 1, 0, 0, 0, 2128, 1994, 1, 0, 0, 0, 2128, 1999, 1, 0, 0, 0, 2128, 2004, 1, 0, 0, 0, 2128, 2009, 1, 0, 0, 0, 2128, 2015, 1, 0, 0, 0, 2128, 2020, 1, 0, 0, 0, 2128, 2025, 1, 0, 0, 0, 2128, 2030, 1, 0, 0, 0, 2128, 2035, 1, 0, 0, 0, 2128, 2040, 1, 0, 0, 0, 2128, 2046, 1, 0, 0, 0, 2128, 2051, 1, 0, 0, 0, 2128, 2056, 1, 0, 0, 0, 2128, 2061, 1, 0, 0, 0, 2128, 2066, 1, 0, 0, 0, 2128, 2071, 1, 0, 0, 0, 2128, 2076, 1, 0, 0, 0, 2128, 2081, 1, 0, 0, 0, 2128, 2083, 1, 0, 0, 0, 2128, 2088, 1, 0, 0, 0, 2128, 2093, 1, 0, 0, 0, 2128, 2098, 1, 0, 0, 0, 2128, 2106, 1, 0, 0, 0, 2128, 2111, 1, 0, 0, 0, 2128, 2114, 1, 0, 0, 0, 2128, 2115, 1, 0, 0, 0, 2128, 2120, 1, 0, 0, 0, 2129, 105, 1, 0, 0, 0, 2130, 2131, 7, 33, 0, 0, 2131, 107, 1, 0, 0, 0, 2132, 2133, 5, 647, 0, 0, 2133, 2134, 7, 22, 0, 0, 2134, 109, 1, 0, 0, 0, 2135, 2136, 5, 130, 0, 0, 2136, 2137, 5, 20, 0, 0, 2137, 2140, 3, 112, 56, 0, 2138, 2139, 5, 528, 0, 0, 2139, 2141, 3, 712, 356, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2149, 1, 0, 0, 0, 2142, 2143, 5, 652, 0, 0, 2143, 2144, 5, 20, 0, 0, 2144, 2147, 3, 114, 57, 0, 2145, 2146, 5, 653, 0, 0, 2146, 2148, 3, 712, 356, 0, 2147, 2145, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2142, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2162, 1, 0, 0, 0, 2151, 2152, 5, 866, 0, 0, 2152, 2157, 3, 116, 58, 0, 2153, 2154, 5, 868, 0, 0, 2154, 2156, 3, 116, 58, 0, 2155, 2153, 1, 0, 0, 0, 2156, 2159, 1, 0, 0, 0, 2157, 2155, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2160, 2161, 5, 867, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2151, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 111, 1, 0, 0, 0, 2164, 2166, 5, 101, 0, 0, 2165, 2164, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 2168, 5, 418, 0, 0, 2168, 2169, 5, 866, 0, 0, 2169, 2170, 3, 804, 402, 0, 2170, 2171, 5, 867, 0, 0, 2171, 2211, 1, 0, 0, 0, 2172, 2174, 5, 101, 0, 0, 2173, 2172, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2179, 5, 92, 0, 0, 2176, 2177, 5, 308, 0, 0, 2177, 2178, 5, 857, 0, 0, 2178, 2180, 7, 34, 0, 0, 2179, 2176, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2183, 5, 866, 0, 0, 2182, 2184, 3, 660, 330, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2211, 5, 867, 0, 0, 2186, 2196, 5, 134, 0, 0, 2187, 2188, 5, 866, 0, 0, 2188, 2189, 3, 804, 402, 0, 2189, 2190, 5, 867, 0, 0, 2190, 2197, 1, 0, 0, 0, 2191, 2192, 5, 337, 0, 0, 2192, 2193, 5, 866, 0, 0, 2193, 2194, 3, 660, 330, 0, 2194, 2195, 5, 867, 0, 0, 2195, 2197, 1, 0, 0, 0, 2196, 2187, 1, 0, 0, 0, 2196, 2191, 1, 0, 0, 0, 2197, 2211, 1, 0, 0, 0, 2198, 2208, 5, 449, 0, 0, 2199, 2200, 5, 866, 0, 0, 2200, 2201, 3, 804, 402, 0, 2201, 2202, 5, 867, 0, 0, 2202, 2209, 1, 0, 0, 0, 2203, 2204, 5, 337, 0, 0, 2204, 2205, 5, 866, 0, 0, 2205, 2206, 3, 660, 330, 0, 2206, 2207, 5, 867, 0, 0, 2207, 2209, 1, 0, 0, 0, 2208, 2199, 1, 0, 0, 0, 2208, 2203, 1, 0, 0, 0, 2209, 2211, 1, 0, 0, 0, 2210, 2165, 1, 0, 0, 0, 2210, 2173, 1, 0, 0, 0, 2210, 2186, 1, 0, 0, 0, 2210, 2198, 1, 0, 0, 0, 2211, 113, 1, 0, 0, 0, 2212, 2214, 5, 101, 0, 0, 2213, 2212, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 5, 418, 0, 0, 2216, 2217, 5, 866, 0, 0, 2217, 2218, 3, 804, 402, 0, 2218, 2219, 5, 867, 0, 0, 2219, 2234, 1, 0, 0, 0, 2220, 2222, 5, 101, 0, 0, 2221, 2220, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2227, 5, 92, 0, 0, 2224, 2225, 5, 308, 0, 0, 2225, 2226, 5, 857, 0, 0, 2226, 2228, 7, 34, 0, 0, 2227, 2224, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2230, 5, 866, 0, 0, 2230, 2231, 3, 660, 330, 0, 2231, 2232, 5, 867, 0, 0, 2232, 2234, 1, 0, 0, 0, 2233, 2213, 1, 0, 0, 0, 2233, 2221, 1, 0, 0, 0, 2234, 115, 1, 0, 0, 0, 2235, 2236, 5, 130, 0, 0, 2236, 2237, 3, 672, 336, 0, 2237, 2238, 5, 189, 0, 0, 2238, 2239, 5, 447, 0, 0, 2239, 2240, 5, 662, 0, 0, 2240, 2241, 5, 866, 0, 0, 2241, 2246, 3, 118, 59, 0, 2242, 2243, 5, 868, 0, 0, 2243, 2245, 3, 118, 59, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2248, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2249, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2249, 2253, 5, 867, 0, 0, 2250, 2252, 3, 124, 62, 0, 2251, 2250, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2267, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 866, 0, 0, 2257, 2262, 3, 122, 61, 0, 2258, 2259, 5, 868, 0, 0, 2259, 2261, 3, 122, 61, 0, 2260, 2258, 1, 0, 0, 0, 2261, 2264, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2265, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2266, 5, 867, 0, 0, 2266, 2268, 1, 0, 0, 0, 2267, 2256, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2382, 1, 0, 0, 0, 2269, 2270, 5, 130, 0, 0, 2270, 2271, 3, 672, 336, 0, 2271, 2272, 5, 189, 0, 0, 2272, 2273, 5, 447, 0, 0, 2273, 2274, 5, 662, 0, 0, 2274, 2278, 3, 118, 59, 0, 2275, 2277, 3, 124, 62, 0, 2276, 2275, 1, 0, 0, 0, 2277, 2280, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2292, 1, 0, 0, 0, 2280, 2278, 1, 0, 0, 0, 2281, 2282, 5, 866, 0, 0, 2282, 2287, 3, 122, 61, 0, 2283, 2284, 5, 868, 0, 0, 2284, 2286, 3, 122, 61, 0, 2285, 2283, 1, 0, 0, 0, 2286, 2289, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2290, 1, 0, 0, 0, 2289, 2287, 1, 0, 0, 0, 2290, 2291, 5, 867, 0, 0, 2291, 2293, 1, 0, 0, 0, 2292, 2281, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2382, 1, 0, 0, 0, 2294, 2295, 5, 130, 0, 0, 2295, 2296, 3, 672, 336, 0, 2296, 2297, 5, 189, 0, 0, 2297, 2298, 5, 80, 0, 0, 2298, 2299, 5, 866, 0, 0, 2299, 2304, 3, 118, 59, 0, 2300, 2301, 5, 868, 0, 0, 2301, 2303, 3, 118, 59, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2306, 1, 0, 0, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2307, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2307, 2311, 5, 867, 0, 0, 2308, 2310, 3, 124, 62, 0, 2309, 2308, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2325, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 5, 866, 0, 0, 2315, 2320, 3, 122, 61, 0, 2316, 2317, 5, 868, 0, 0, 2317, 2319, 3, 122, 61, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2322, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2323, 2324, 5, 867, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2314, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2382, 1, 0, 0, 0, 2327, 2328, 5, 130, 0, 0, 2328, 2329, 3, 672, 336, 0, 2329, 2330, 5, 189, 0, 0, 2330, 2331, 5, 80, 0, 0, 2331, 2332, 5, 866, 0, 0, 2332, 2337, 3, 120, 60, 0, 2333, 2334, 5, 868, 0, 0, 2334, 2336, 3, 120, 60, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2339, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2340, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2344, 5, 867, 0, 0, 2341, 2343, 3, 124, 62, 0, 2342, 2341, 1, 0, 0, 0, 2343, 2346, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2358, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2348, 5, 866, 0, 0, 2348, 2353, 3, 122, 61, 0, 2349, 2350, 5, 868, 0, 0, 2350, 2352, 3, 122, 61, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2355, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2356, 2357, 5, 867, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2347, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2382, 1, 0, 0, 0, 2360, 2361, 5, 130, 0, 0, 2361, 2365, 3, 672, 336, 0, 2362, 2364, 3, 124, 62, 0, 2363, 2362, 1, 0, 0, 0, 2364, 2367, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2379, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2368, 2369, 5, 866, 0, 0, 2369, 2374, 3, 122, 61, 0, 2370, 2371, 5, 868, 0, 0, 2371, 2373, 3, 122, 61, 0, 2372, 2370, 1, 0, 0, 0, 2373, 2376, 1, 0, 0, 0, 2374, 2372, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2377, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2377, 2378, 5, 867, 0, 0, 2378, 2380, 1, 0, 0, 0, 2379, 2368, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2235, 1, 0, 0, 0, 2381, 2269, 1, 0, 0, 0, 2381, 2294, 1, 0, 0, 0, 2381, 2327, 1, 0, 0, 0, 2381, 2360, 1, 0, 0, 0, 2382, 117, 1, 0, 0, 0, 2383, 2387, 3, 724, 362, 0, 2384, 2387, 3, 804, 402, 0, 2385, 2387, 5, 111, 0, 0, 2386, 2383, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2385, 1, 0, 0, 0, 2387, 119, 1, 0, 0, 0, 2388, 2389, 5, 866, 0, 0, 2389, 2392, 3, 118, 59, 0, 2390, 2391, 5, 868, 0, 0, 2391, 2393, 3, 118, 59, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2397, 5, 867, 0, 0, 2397, 121, 1, 0, 0, 0, 2398, 2399, 5, 652, 0, 0, 2399, 2403, 3, 706, 353, 0, 2400, 2402, 3, 124, 62, 0, 2401, 2400, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 123, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2408, 5, 42, 0, 0, 2407, 2406, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2410, 1, 0, 0, 0, 2409, 2411, 5, 647, 0, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 5, 380, 0, 0, 2413, 2415, 5, 857, 0, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2455, 3, 692, 346, 0, 2417, 2419, 5, 340, 0, 0, 2418, 2420, 5, 857, 0, 0, 2419, 2418, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2455, 5, 882, 0, 0, 2422, 2423, 5, 360, 0, 0, 2423, 2425, 5, 367, 0, 0, 2424, 2426, 5, 857, 0, 0, 2425, 2424, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2455, 5, 882, 0, 0, 2428, 2429, 5, 82, 0, 0, 2429, 2431, 5, 367, 0, 0, 2430, 2432, 5, 857, 0, 0, 2431, 2430, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2455, 5, 882, 0, 0, 2434, 2436, 5, 480, 0, 0, 2435, 2437, 5, 857, 0, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2455, 3, 712, 356, 0, 2439, 2441, 5, 490, 0, 0, 2440, 2442, 5, 857, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2455, 3, 712, 356, 0, 2444, 2446, 5, 658, 0, 0, 2445, 2447, 5, 857, 0, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2455, 3, 666, 333, 0, 2449, 2451, 5, 504, 0, 0, 2450, 2452, 5, 857, 0, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2455, 3, 706, 353, 0, 2454, 2407, 1, 0, 0, 0, 2454, 2417, 1, 0, 0, 0, 2454, 2422, 1, 0, 0, 0, 2454, 2428, 1, 0, 0, 0, 2454, 2434, 1, 0, 0, 0, 2454, 2439, 1, 0, 0, 0, 2454, 2444, 1, 0, 0, 0, 2454, 2449, 1, 0, 0, 0, 2455, 125, 1, 0, 0, 0, 2456, 2457, 5, 8, 0, 0, 2457, 2459, 7, 0, 0, 0, 2458, 2460, 3, 628, 314, 0, 2459, 2458, 1, 0, 0, 0, 2459, 2460, 1, 0, 0, 0, 2460, 2462, 1, 0, 0, 0, 2461, 2463, 3, 56, 28, 0, 2462, 2461, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2475, 1, 0, 0, 0, 2466, 2467, 5, 8, 0, 0, 2467, 2468, 7, 0, 0, 0, 2468, 2469, 3, 628, 314, 0, 2469, 2470, 5, 677, 0, 0, 2470, 2471, 5, 360, 0, 0, 2471, 2472, 5, 367, 0, 0, 2472, 2473, 5, 496, 0, 0, 2473, 2475, 1, 0, 0, 0, 2474, 2456, 1, 0, 0, 0, 2474, 2466, 1, 0, 0, 0, 2475, 127, 1, 0, 0, 0, 2476, 2478, 5, 8, 0, 0, 2477, 2479, 3, 62, 31, 0, 2478, 2477, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2481, 5, 385, 0, 0, 2481, 2485, 3, 702, 351, 0, 2482, 2483, 5, 119, 0, 0, 2483, 2484, 5, 590, 0, 0, 2484, 2486, 3, 64, 32, 0, 2485, 2482, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2493, 1, 0, 0, 0, 2487, 2488, 5, 119, 0, 0, 2488, 2490, 5, 343, 0, 0, 2489, 2491, 5, 114, 0, 0, 2490, 2489, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 5, 541, 0, 0, 2493, 2487, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2498, 1, 0, 0, 0, 2495, 2496, 5, 141, 0, 0, 2496, 2497, 5, 176, 0, 0, 2497, 2499, 3, 702, 351, 0, 2498, 2495, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2501, 1, 0, 0, 0, 2500, 2502, 3, 72, 36, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2505, 1, 0, 0, 0, 2503, 2504, 5, 340, 0, 0, 2504, 2506, 5, 882, 0, 0, 2505, 2503, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2509, 1, 0, 0, 0, 2507, 2508, 5, 371, 0, 0, 2508, 2510, 3, 422, 211, 0, 2509, 2507, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 129, 1, 0, 0, 0, 2511, 2512, 5, 8, 0, 0, 2512, 2513, 5, 409, 0, 0, 2513, 2517, 3, 632, 316, 0, 2514, 2516, 3, 82, 41, 0, 2515, 2514, 1, 0, 0, 0, 2516, 2519, 1, 0, 0, 0, 2517, 2515, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 131, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2520, 2521, 5, 8, 0, 0, 2521, 2522, 5, 433, 0, 0, 2522, 2523, 5, 585, 0, 0, 2523, 2524, 5, 801, 0, 0, 2524, 2525, 5, 453, 0, 0, 2525, 2526, 5, 92, 0, 0, 2526, 133, 1, 0, 0, 0, 2527, 2528, 5, 8, 0, 0, 2528, 2529, 5, 451, 0, 0, 2529, 2530, 5, 74, 0, 0, 2530, 2531, 3, 706, 353, 0, 2531, 2532, 5, 6, 0, 0, 2532, 2533, 5, 671, 0, 0, 2533, 2539, 5, 882, 0, 0, 2534, 2536, 5, 428, 0, 0, 2535, 2537, 5, 857, 0, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2540, 3, 714, 357, 0, 2539, 2534, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 5, 687, 0, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 5, 380, 0, 0, 2545, 2547, 5, 857, 0, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2549, 3, 692, 346, 0, 2549, 135, 1, 0, 0, 0, 2550, 2551, 5, 8, 0, 0, 2551, 2552, 5, 132, 0, 0, 2552, 2556, 3, 702, 351, 0, 2553, 2555, 3, 82, 41, 0, 2554, 2553, 1, 0, 0, 0, 2555, 2558, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 137, 1, 0, 0, 0, 2558, 2556, 1, 0, 0, 0, 2559, 2560, 5, 8, 0, 0, 2560, 2561, 5, 592, 0, 0, 2561, 2562, 3, 706, 353, 0, 2562, 2563, 5, 518, 0, 0, 2563, 2564, 5, 866, 0, 0, 2564, 2569, 3, 84, 42, 0, 2565, 2566, 5, 868, 0, 0, 2566, 2568, 3, 84, 42, 0, 2567, 2565, 1, 0, 0, 0, 2568, 2571, 1, 0, 0, 0, 2569, 2567, 1, 0, 0, 0, 2569, 2570, 1, 0, 0, 0, 2570, 2572, 1, 0, 0, 0, 2571, 2569, 1, 0, 0, 0, 2572, 2573, 5, 867, 0, 0, 2573, 139, 1, 0, 0, 0, 2574, 2575, 5, 8, 0, 0, 2575, 2576, 5, 173, 0, 0, 2576, 2585, 3, 652, 326, 0, 2577, 2582, 3, 146, 73, 0, 2578, 2579, 5, 868, 0, 0, 2579, 2581, 3, 146, 73, 0, 2580, 2578, 1, 0, 0, 0, 2581, 2584, 1, 0, 0, 0, 2582, 2580, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2586, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2585, 2577, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2594, 1, 0, 0, 0, 2587, 2591, 3, 148, 74, 0, 2588, 2590, 3, 148, 74, 0, 2589, 2588, 1, 0, 0, 0, 2590, 2593, 1, 0, 0, 0, 2591, 2589, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2595, 1, 0, 0, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2587, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 141, 1, 0, 0, 0, 2596, 2598, 5, 8, 0, 0, 2597, 2599, 5, 180, 0, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 658, 0, 0, 2601, 2602, 3, 666, 333, 0, 2602, 2603, 7, 35, 0, 0, 2603, 2604, 5, 361, 0, 0, 2604, 2610, 5, 882, 0, 0, 2605, 2607, 5, 428, 0, 0, 2606, 2608, 5, 857, 0, 0, 2607, 2606, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2611, 3, 714, 357, 0, 2610, 2605, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 5, 687, 0, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2618, 1, 0, 0, 0, 2615, 2616, 5, 141, 0, 0, 2616, 2617, 5, 176, 0, 0, 2617, 2619, 3, 664, 332, 0, 2618, 2615, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2625, 1, 0, 0, 0, 2620, 2622, 5, 314, 0, 0, 2621, 2623, 5, 857, 0, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2626, 3, 714, 357, 0, 2625, 2620, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2628, 5, 155, 0, 0, 2628, 2630, 7, 36, 0, 0, 2629, 2627, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2636, 1, 0, 0, 0, 2631, 2633, 5, 376, 0, 0, 2632, 2634, 5, 857, 0, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2637, 5, 882, 0, 0, 2636, 2631, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2643, 1, 0, 0, 0, 2638, 2640, 5, 380, 0, 0, 2639, 2641, 5, 857, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 3, 692, 346, 0, 2643, 2638, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2650, 1, 0, 0, 0, 2645, 2647, 5, 825, 0, 0, 2646, 2648, 5, 857, 0, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 5, 882, 0, 0, 2650, 2645, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 143, 1, 0, 0, 0, 2652, 2656, 5, 8, 0, 0, 2653, 2654, 5, 308, 0, 0, 2654, 2655, 5, 857, 0, 0, 2655, 2657, 7, 11, 0, 0, 2656, 2653, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2660, 3, 62, 31, 0, 2659, 2658, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2664, 1, 0, 0, 0, 2661, 2662, 5, 162, 0, 0, 2662, 2663, 5, 591, 0, 0, 2663, 2665, 7, 12, 0, 0, 2664, 2661, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 5, 684, 0, 0, 2667, 2672, 3, 636, 318, 0, 2668, 2669, 5, 866, 0, 0, 2669, 2670, 3, 660, 330, 0, 2670, 2671, 5, 867, 0, 0, 2671, 2673, 1, 0, 0, 0, 2672, 2668, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 5, 13, 0, 0, 2675, 2682, 3, 210, 105, 0, 2676, 2678, 5, 194, 0, 0, 2677, 2679, 7, 13, 0, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2681, 5, 27, 0, 0, 2681, 2683, 5, 121, 0, 0, 2682, 2676, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 145, 1, 0, 0, 0, 2684, 2691, 3, 104, 52, 0, 2685, 2687, 5, 868, 0, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 3, 104, 52, 0, 2689, 2686, 1, 0, 0, 0, 2690, 2693, 1, 0, 0, 0, 2691, 2689, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2949, 1, 0, 0, 0, 2693, 2691, 1, 0, 0, 0, 2694, 2696, 5, 6, 0, 0, 2695, 2697, 5, 29, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 3, 662, 331, 0, 2699, 2703, 3, 94, 47, 0, 2700, 2704, 5, 402, 0, 0, 2701, 2702, 5, 306, 0, 0, 2702, 2704, 3, 662, 331, 0, 2703, 2700, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2949, 1, 0, 0, 0, 2705, 2707, 5, 6, 0, 0, 2706, 2708, 5, 29, 0, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2710, 5, 866, 0, 0, 2710, 2711, 3, 662, 331, 0, 2711, 2718, 3, 94, 47, 0, 2712, 2713, 5, 868, 0, 0, 2713, 2714, 3, 662, 331, 0, 2714, 2715, 3, 94, 47, 0, 2715, 2717, 1, 0, 0, 0, 2716, 2712, 1, 0, 0, 0, 2717, 2720, 1, 0, 0, 0, 2718, 2716, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2721, 1, 0, 0, 0, 2720, 2718, 1, 0, 0, 0, 2721, 2722, 5, 867, 0, 0, 2722, 2949, 1, 0, 0, 0, 2723, 2724, 5, 6, 0, 0, 2724, 2726, 7, 19, 0, 0, 2725, 2727, 3, 642, 321, 0, 2726, 2725, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 2729, 1, 0, 0, 0, 2728, 2730, 3, 74, 37, 0, 2729, 2728, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2735, 3, 738, 369, 0, 2732, 2734, 3, 76, 38, 0, 2733, 2732, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2949, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2739, 5, 6, 0, 0, 2739, 2741, 7, 20, 0, 0, 2740, 2742, 7, 19, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2744, 1, 0, 0, 0, 2743, 2745, 3, 642, 321, 0, 2744, 2743, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2750, 3, 738, 369, 0, 2747, 2749, 3, 76, 38, 0, 2748, 2747, 1, 0, 0, 0, 2749, 2752, 1, 0, 0, 0, 2750, 2748, 1, 0, 0, 0, 2750, 2751, 1, 0, 0, 0, 2751, 2949, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2753, 2758, 5, 6, 0, 0, 2754, 2756, 5, 31, 0, 0, 2755, 2757, 3, 706, 353, 0, 2756, 2755, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2759, 1, 0, 0, 0, 2758, 2754, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2761, 5, 131, 0, 0, 2761, 2763, 5, 92, 0, 0, 2762, 2764, 3, 74, 37, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2769, 3, 738, 369, 0, 2766, 2768, 3, 76, 38, 0, 2767, 2766, 1, 0, 0, 0, 2768, 2771, 1, 0, 0, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2949, 1, 0, 0, 0, 2771, 2769, 1, 0, 0, 0, 2772, 2777, 5, 6, 0, 0, 2773, 2775, 5, 31, 0, 0, 2774, 2776, 3, 706, 353, 0, 2775, 2774, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2778, 1, 0, 0, 0, 2777, 2773, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2779, 1, 0, 0, 0, 2779, 2781, 5, 182, 0, 0, 2780, 2782, 7, 19, 0, 0, 2781, 2780, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2784, 1, 0, 0, 0, 2783, 2785, 3, 642, 321, 0, 2784, 2783, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2787, 1, 0, 0, 0, 2786, 2788, 3, 74, 37, 0, 2787, 2786, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2793, 3, 738, 369, 0, 2790, 2792, 3, 76, 38, 0, 2791, 2790, 1, 0, 0, 0, 2792, 2795, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2949, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2796, 2801, 5, 6, 0, 0, 2797, 2799, 5, 31, 0, 0, 2798, 2800, 3, 706, 353, 0, 2799, 2798, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2802, 1, 0, 0, 0, 2801, 2797, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2804, 5, 67, 0, 0, 2804, 2806, 5, 92, 0, 0, 2805, 2807, 3, 642, 321, 0, 2806, 2805, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2809, 3, 738, 369, 0, 2809, 2810, 3, 98, 49, 0, 2810, 2949, 1, 0, 0, 0, 2811, 2813, 5, 6, 0, 0, 2812, 2814, 3, 90, 45, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2949, 1, 0, 0, 0, 2815, 2816, 5, 51, 0, 0, 2816, 2817, 7, 37, 0, 0, 2817, 2949, 3, 706, 353, 0, 2818, 2819, 5, 8, 0, 0, 2819, 2820, 7, 37, 0, 0, 2820, 2822, 3, 706, 353, 0, 2821, 2823, 5, 114, 0, 0, 2822, 2821, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2825, 1, 0, 0, 0, 2824, 2826, 5, 57, 0, 0, 2825, 2824, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 2949, 1, 0, 0, 0, 2827, 2829, 5, 308, 0, 0, 2828, 2830, 5, 857, 0, 0, 2829, 2828, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 2831, 1, 0, 0, 0, 2831, 2949, 7, 38, 0, 0, 2832, 2834, 5, 8, 0, 0, 2833, 2835, 5, 29, 0, 0, 2834, 2833, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2844, 3, 662, 331, 0, 2837, 2838, 5, 155, 0, 0, 2838, 2839, 5, 42, 0, 0, 2839, 2845, 3, 754, 377, 0, 2840, 2841, 5, 155, 0, 0, 2841, 2845, 7, 17, 0, 0, 2842, 2843, 5, 51, 0, 0, 2843, 2845, 5, 42, 0, 0, 2844, 2837, 1, 0, 0, 0, 2844, 2840, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2845, 2949, 1, 0, 0, 0, 2846, 2847, 5, 8, 0, 0, 2847, 2848, 5, 82, 0, 0, 2848, 2849, 3, 642, 321, 0, 2849, 2850, 7, 17, 0, 0, 2850, 2949, 1, 0, 0, 0, 2851, 2853, 5, 25, 0, 0, 2852, 2854, 5, 29, 0, 0, 2853, 2852, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2856, 3, 662, 331, 0, 2856, 2857, 3, 658, 329, 0, 2857, 2861, 3, 94, 47, 0, 2858, 2862, 5, 402, 0, 0, 2859, 2860, 5, 306, 0, 0, 2860, 2862, 3, 662, 331, 0, 2861, 2858, 1, 0, 0, 0, 2861, 2859, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2949, 1, 0, 0, 0, 2863, 2865, 5, 42, 0, 0, 2864, 2863, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2867, 5, 26, 0, 0, 2867, 2868, 5, 155, 0, 0, 2868, 2869, 5, 857, 0, 0, 2869, 2875, 3, 688, 344, 0, 2870, 2872, 5, 28, 0, 0, 2871, 2873, 5, 857, 0, 0, 2872, 2871, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2876, 3, 690, 345, 0, 2875, 2870, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2949, 1, 0, 0, 0, 2877, 2878, 5, 33, 0, 0, 2878, 2882, 5, 176, 0, 0, 2879, 2883, 5, 823, 0, 0, 2880, 2881, 5, 26, 0, 0, 2881, 2883, 5, 155, 0, 0, 2882, 2879, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2887, 3, 688, 344, 0, 2885, 2886, 5, 28, 0, 0, 2886, 2888, 3, 690, 345, 0, 2887, 2885, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2949, 1, 0, 0, 0, 2889, 2890, 7, 39, 0, 0, 2890, 2949, 5, 93, 0, 0, 2891, 2892, 7, 40, 0, 0, 2892, 2949, 5, 658, 0, 0, 2893, 2895, 5, 51, 0, 0, 2894, 2896, 5, 29, 0, 0, 2895, 2894, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2949, 3, 662, 331, 0, 2898, 2899, 5, 51, 0, 0, 2899, 2900, 7, 19, 0, 0, 2900, 2949, 3, 642, 321, 0, 2901, 2902, 5, 51, 0, 0, 2902, 2903, 5, 131, 0, 0, 2903, 2949, 5, 92, 0, 0, 2904, 2905, 5, 51, 0, 0, 2905, 2906, 5, 67, 0, 0, 2906, 2907, 5, 92, 0, 0, 2907, 2949, 3, 706, 353, 0, 2908, 2949, 5, 66, 0, 0, 2909, 2911, 5, 104, 0, 0, 2910, 2912, 5, 857, 0, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2949, 7, 4, 0, 0, 2914, 2916, 5, 492, 0, 0, 2915, 2917, 5, 29, 0, 0, 2916, 2915, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2919, 3, 662, 331, 0, 2919, 2923, 3, 94, 47, 0, 2920, 2924, 5, 402, 0, 0, 2921, 2922, 5, 306, 0, 0, 2922, 2924, 3, 662, 331, 0, 2923, 2920, 1, 0, 0, 0, 2923, 2921, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2949, 1, 0, 0, 0, 2925, 2926, 5, 125, 0, 0, 2926, 2927, 5, 20, 0, 0, 2927, 2949, 3, 660, 330, 0, 2928, 2929, 5, 141, 0, 0, 2929, 2930, 5, 29, 0, 0, 2930, 2931, 3, 662, 331, 0, 2931, 2932, 5, 176, 0, 0, 2932, 2933, 3, 658, 329, 0, 2933, 2949, 1, 0, 0, 0, 2934, 2935, 5, 141, 0, 0, 2935, 2936, 7, 19, 0, 0, 2936, 2937, 3, 642, 321, 0, 2937, 2938, 5, 176, 0, 0, 2938, 2939, 3, 638, 319, 0, 2939, 2949, 1, 0, 0, 0, 2940, 2942, 5, 141, 0, 0, 2941, 2943, 7, 41, 0, 0, 2942, 2941, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2949, 3, 648, 324, 0, 2945, 2946, 7, 42, 0, 0, 2946, 2949, 5, 681, 0, 0, 2947, 2949, 3, 148, 74, 0, 2948, 2684, 1, 0, 0, 0, 2948, 2694, 1, 0, 0, 0, 2948, 2705, 1, 0, 0, 0, 2948, 2723, 1, 0, 0, 0, 2948, 2738, 1, 0, 0, 0, 2948, 2753, 1, 0, 0, 0, 2948, 2772, 1, 0, 0, 0, 2948, 2796, 1, 0, 0, 0, 2948, 2811, 1, 0, 0, 0, 2948, 2815, 1, 0, 0, 0, 2948, 2818, 1, 0, 0, 0, 2948, 2827, 1, 0, 0, 0, 2948, 2832, 1, 0, 0, 0, 2948, 2846, 1, 0, 0, 0, 2948, 2851, 1, 0, 0, 0, 2948, 2864, 1, 0, 0, 0, 2948, 2877, 1, 0, 0, 0, 2948, 2889, 1, 0, 0, 0, 2948, 2891, 1, 0, 0, 0, 2948, 2893, 1, 0, 0, 0, 2948, 2898, 1, 0, 0, 0, 2948, 2901, 1, 0, 0, 0, 2948, 2904, 1, 0, 0, 0, 2948, 2908, 1, 0, 0, 0, 2948, 2909, 1, 0, 0, 0, 2948, 2914, 1, 0, 0, 0, 2948, 2925, 1, 0, 0, 0, 2948, 2928, 1, 0, 0, 0, 2948, 2934, 1, 0, 0, 0, 2948, 2940, 1, 0, 0, 0, 2948, 2945, 1, 0, 0, 0, 2948, 2947, 1, 0, 0, 0, 2949, 147, 1, 0, 0, 0, 2950, 2951, 5, 6, 0, 0, 2951, 2952, 5, 130, 0, 0, 2952, 2953, 5, 866, 0, 0, 2953, 2958, 3, 116, 58, 0, 2954, 2955, 5, 868, 0, 0, 2955, 2957, 3, 116, 58, 0, 2956, 2954, 1, 0, 0, 0, 2957, 2960, 1, 0, 0, 0, 2958, 2956, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2961, 1, 0, 0, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2962, 5, 867, 0, 0, 2962, 3049, 1, 0, 0, 0, 2963, 2964, 5, 51, 0, 0, 2964, 2965, 5, 130, 0, 0, 2965, 3049, 3, 670, 335, 0, 2966, 2967, 5, 369, 0, 0, 2967, 2970, 5, 130, 0, 0, 2968, 2971, 3, 670, 335, 0, 2969, 2971, 5, 7, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2969, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 3049, 5, 658, 0, 0, 2973, 2974, 5, 425, 0, 0, 2974, 2977, 5, 130, 0, 0, 2975, 2978, 3, 670, 335, 0, 2976, 2978, 5, 7, 0, 0, 2977, 2975, 1, 0, 0, 0, 2977, 2976, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 3049, 5, 658, 0, 0, 2980, 2981, 5, 668, 0, 0, 2981, 2984, 5, 130, 0, 0, 2982, 2985, 3, 670, 335, 0, 2983, 2985, 5, 7, 0, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2983, 1, 0, 0, 0, 2985, 3049, 1, 0, 0, 0, 2986, 2987, 5, 335, 0, 0, 2987, 2988, 5, 130, 0, 0, 2988, 3049, 3, 712, 356, 0, 2989, 2990, 5, 561, 0, 0, 2990, 2991, 5, 130, 0, 0, 2991, 2992, 3, 670, 335, 0, 2992, 2993, 5, 88, 0, 0, 2993, 2994, 5, 866, 0, 0, 2994, 2999, 3, 116, 58, 0, 2995, 2996, 5, 868, 0, 0, 2996, 2998, 3, 116, 58, 0, 2997, 2995, 1, 0, 0, 0, 2998, 3001, 1, 0, 0, 0, 2999, 2997, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3002, 1, 0, 0, 0, 3001, 2999, 1, 0, 0, 0, 3002, 3003, 5, 867, 0, 0, 3003, 3049, 1, 0, 0, 0, 3004, 3005, 5, 388, 0, 0, 3005, 3006, 5, 130, 0, 0, 3006, 3007, 3, 672, 336, 0, 3007, 3008, 5, 194, 0, 0, 3008, 3009, 5, 173, 0, 0, 3009, 3012, 3, 652, 326, 0, 3010, 3011, 7, 42, 0, 0, 3011, 3013, 5, 681, 0, 0, 3012, 3010, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3049, 1, 0, 0, 0, 3014, 3015, 5, 10, 0, 0, 3015, 3018, 5, 130, 0, 0, 3016, 3019, 3, 670, 335, 0, 3017, 3019, 5, 7, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3017, 1, 0, 0, 0, 3019, 3049, 1, 0, 0, 0, 3020, 3021, 5, 27, 0, 0, 3021, 3024, 5, 130, 0, 0, 3022, 3025, 3, 670, 335, 0, 3023, 3025, 5, 7, 0, 0, 3024, 3022, 1, 0, 0, 0, 3024, 3023, 1, 0, 0, 0, 3025, 3049, 1, 0, 0, 0, 3026, 3027, 5, 120, 0, 0, 3027, 3030, 5, 130, 0, 0, 3028, 3031, 3, 670, 335, 0, 3029, 3031, 5, 7, 0, 0, 3030, 3028, 1, 0, 0, 0, 3030, 3029, 1, 0, 0, 0, 3031, 3049, 1, 0, 0, 0, 3032, 3033, 5, 550, 0, 0, 3033, 3036, 5, 130, 0, 0, 3034, 3037, 3, 670, 335, 0, 3035, 3037, 5, 7, 0, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3035, 1, 0, 0, 0, 3037, 3049, 1, 0, 0, 0, 3038, 3039, 5, 562, 0, 0, 3039, 3042, 5, 130, 0, 0, 3040, 3043, 3, 670, 335, 0, 3041, 3043, 5, 7, 0, 0, 3042, 3040, 1, 0, 0, 0, 3042, 3041, 1, 0, 0, 0, 3043, 3049, 1, 0, 0, 0, 3044, 3045, 5, 560, 0, 0, 3045, 3049, 5, 527, 0, 0, 3046, 3047, 5, 677, 0, 0, 3047, 3049, 5, 527, 0, 0, 3048, 2950, 1, 0, 0, 0, 3048, 2963, 1, 0, 0, 0, 3048, 2966, 1, 0, 0, 0, 3048, 2973, 1, 0, 0, 0, 3048, 2980, 1, 0, 0, 0, 3048, 2986, 1, 0, 0, 0, 3048, 2989, 1, 0, 0, 0, 3048, 3004, 1, 0, 0, 0, 3048, 3014, 1, 0, 0, 0, 3048, 3020, 1, 0, 0, 0, 3048, 3026, 1, 0, 0, 0, 3048, 3032, 1, 0, 0, 0, 3048, 3038, 1, 0, 0, 0, 3048, 3044, 1, 0, 0, 0, 3048, 3046, 1, 0, 0, 0, 3049, 149, 1, 0, 0, 0, 3050, 3051, 5, 51, 0, 0, 3051, 3053, 7, 0, 0, 0, 3052, 3054, 3, 758, 379, 0, 3053, 3052, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3056, 3, 628, 314, 0, 3056, 151, 1, 0, 0, 0, 3057, 3058, 5, 51, 0, 0, 3058, 3060, 5, 385, 0, 0, 3059, 3061, 3, 758, 379, 0, 3060, 3059, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 3, 702, 351, 0, 3063, 153, 1, 0, 0, 0, 3064, 3065, 5, 51, 0, 0, 3065, 3067, 5, 82, 0, 0, 3066, 3068, 7, 1, 0, 0, 3067, 3066, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 3, 642, 321, 0, 3070, 3071, 5, 119, 0, 0, 3071, 3084, 3, 652, 326, 0, 3072, 3074, 5, 308, 0, 0, 3073, 3075, 5, 857, 0, 0, 3074, 3073, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3083, 7, 3, 0, 0, 3077, 3079, 5, 104, 0, 0, 3078, 3080, 5, 857, 0, 0, 3079, 3078, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 7, 4, 0, 0, 3082, 3072, 1, 0, 0, 0, 3082, 3077, 1, 0, 0, 0, 3083, 3086, 1, 0, 0, 0, 3084, 3082, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 155, 1, 0, 0, 0, 3086, 3084, 1, 0, 0, 0, 3087, 3088, 5, 51, 0, 0, 3088, 3089, 5, 451, 0, 0, 3089, 3090, 5, 74, 0, 0, 3090, 3091, 3, 706, 353, 0, 3091, 3093, 5, 380, 0, 0, 3092, 3094, 5, 857, 0, 0, 3093, 3092, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3096, 3, 692, 346, 0, 3096, 157, 1, 0, 0, 0, 3097, 3098, 5, 51, 0, 0, 3098, 3100, 5, 132, 0, 0, 3099, 3101, 3, 758, 379, 0, 3100, 3099, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3103, 3, 702, 351, 0, 3103, 159, 1, 0, 0, 0, 3104, 3105, 5, 51, 0, 0, 3105, 3107, 5, 409, 0, 0, 3106, 3108, 3, 758, 379, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 3, 632, 316, 0, 3110, 161, 1, 0, 0, 0, 3111, 3112, 5, 51, 0, 0, 3112, 3114, 5, 592, 0, 0, 3113, 3115, 3, 758, 379, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 3, 706, 353, 0, 3117, 163, 1, 0, 0, 0, 3118, 3119, 5, 51, 0, 0, 3119, 3120, 5, 161, 0, 0, 3120, 3121, 5, 137, 0, 0, 3121, 3123, 5, 835, 0, 0, 3122, 3124, 3, 758, 379, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 5, 883, 0, 0, 3126, 165, 1, 0, 0, 0, 3127, 3129, 5, 51, 0, 0, 3128, 3130, 5, 660, 0, 0, 3129, 3128, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3133, 5, 173, 0, 0, 3132, 3134, 3, 758, 379, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3137, 3, 650, 325, 0, 3136, 3138, 7, 43, 0, 0, 3137, 3136, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 167, 1, 0, 0, 0, 3139, 3141, 5, 51, 0, 0, 3140, 3142, 5, 180, 0, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 5, 658, 0, 0, 3144, 3150, 3, 666, 333, 0, 3145, 3147, 5, 380, 0, 0, 3146, 3148, 5, 857, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3151, 3, 692, 346, 0, 3150, 3145, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 169, 1, 0, 0, 0, 3152, 3153, 5, 51, 0, 0, 3153, 3155, 5, 178, 0, 0, 3154, 3156, 3, 758, 379, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 3, 702, 351, 0, 3158, 171, 1, 0, 0, 0, 3159, 3160, 5, 51, 0, 0, 3160, 3162, 5, 684, 0, 0, 3161, 3163, 3, 758, 379, 0, 3162, 3161, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3169, 3, 636, 318, 0, 3165, 3166, 5, 868, 0, 0, 3166, 3168, 3, 636, 318, 0, 3167, 3165, 1, 0, 0, 0, 3168, 3171, 1, 0, 0, 0, 3169, 3167, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3173, 1, 0, 0, 0, 3171, 3169, 1, 0, 0, 0, 3172, 3174, 7, 43, 0, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 173, 1, 0, 0, 0, 3175, 3176, 5, 51, 0, 0, 3176, 3178, 5, 582, 0, 0, 3177, 3179, 3, 758, 379, 0, 3178, 3177, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3181, 3, 654, 327, 0, 3181, 175, 1, 0, 0, 0, 3182, 3183, 5, 155, 0, 0, 3183, 3184, 5, 42, 0, 0, 3184, 3188, 5, 582, 0, 0, 3185, 3189, 5, 505, 0, 0, 3186, 3189, 5, 7, 0, 0, 3187, 3189, 3, 654, 327, 0, 3188, 3185, 1, 0, 0, 0, 3188, 3186, 1, 0, 0, 0, 3188, 3187, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3191, 5, 176, 0, 0, 3191, 3196, 3, 656, 328, 0, 3192, 3193, 5, 868, 0, 0, 3193, 3195, 3, 656, 328, 0, 3194, 3192, 1, 0, 0, 0, 3195, 3198, 1, 0, 0, 0, 3196, 3194, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3203, 1, 0, 0, 0, 3198, 3196, 1, 0, 0, 0, 3199, 3200, 5, 155, 0, 0, 3200, 3201, 5, 582, 0, 0, 3201, 3203, 3, 468, 234, 0, 3202, 3182, 1, 0, 0, 0, 3202, 3199, 1, 0, 0, 0, 3203, 177, 1, 0, 0, 0, 3204, 3205, 5, 141, 0, 0, 3205, 3206, 5, 173, 0, 0, 3206, 3211, 3, 180, 90, 0, 3207, 3208, 5, 868, 0, 0, 3208, 3210, 3, 180, 90, 0, 3209, 3207, 1, 0, 0, 0, 3210, 3213, 1, 0, 0, 0, 3211, 3209, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 179, 1, 0, 0, 0, 3213, 3211, 1, 0, 0, 0, 3214, 3215, 3, 652, 326, 0, 3215, 3216, 5, 176, 0, 0, 3216, 3217, 3, 648, 324, 0, 3217, 181, 1, 0, 0, 0, 3218, 3220, 5, 668, 0, 0, 3219, 3221, 5, 173, 0, 0, 3220, 3219, 1, 0, 0, 0, 3220, 3221, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 3, 652, 326, 0, 3223, 183, 1, 0, 0, 0, 3224, 3225, 5, 21, 0, 0, 3225, 3232, 3, 702, 351, 0, 3226, 3229, 5, 866, 0, 0, 3227, 3230, 3, 748, 374, 0, 3228, 3230, 3, 740, 370, 0, 3229, 3227, 1, 0, 0, 0, 3229, 3228, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3233, 5, 867, 0, 0, 3232, 3226, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 185, 1, 0, 0, 0, 3234, 3237, 3, 240, 120, 0, 3235, 3237, 3, 242, 121, 0, 3236, 3234, 1, 0, 0, 0, 3236, 3235, 1, 0, 0, 0, 3237, 187, 1, 0, 0, 0, 3238, 3239, 5, 371, 0, 0, 3239, 3240, 3, 740, 370, 0, 3240, 189, 1, 0, 0, 0, 3241, 3246, 3, 244, 122, 0, 3242, 3246, 3, 246, 123, 0, 3243, 3246, 3, 248, 124, 0, 3244, 3246, 3, 250, 125, 0, 3245, 3241, 1, 0, 0, 0, 3245, 3242, 1, 0, 0, 0, 3245, 3243, 1, 0, 0, 0, 3245, 3244, 1, 0, 0, 0, 3246, 191, 1, 0, 0, 0, 3247, 3249, 5, 86, 0, 0, 3248, 3250, 7, 44, 0, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 5, 79, 0, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 5, 88, 0, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3264, 3, 652, 326, 0, 3258, 3259, 5, 130, 0, 0, 3259, 3261, 5, 866, 0, 0, 3260, 3262, 3, 670, 335, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 5, 867, 0, 0, 3264, 3258, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3277, 1, 0, 0, 0, 3266, 3268, 3, 268, 134, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3272, 3, 742, 371, 0, 3270, 3272, 3, 196, 98, 0, 3271, 3269, 1, 0, 0, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3275, 3, 194, 97, 0, 3274, 3273, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3278, 3, 232, 116, 0, 3277, 3267, 1, 0, 0, 0, 3277, 3276, 1, 0, 0, 0, 3278, 3280, 1, 0, 0, 0, 3279, 3281, 3, 194, 97, 0, 3280, 3279, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3294, 1, 0, 0, 0, 3282, 3283, 5, 119, 0, 0, 3283, 3284, 5, 373, 0, 0, 3284, 3285, 5, 92, 0, 0, 3285, 3286, 5, 185, 0, 0, 3286, 3291, 3, 234, 117, 0, 3287, 3288, 5, 868, 0, 0, 3288, 3290, 3, 234, 117, 0, 3289, 3287, 1, 0, 0, 0, 3290, 3293, 1, 0, 0, 0, 3291, 3289, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3295, 1, 0, 0, 0, 3293, 3291, 1, 0, 0, 0, 3294, 3282, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 193, 1, 0, 0, 0, 3296, 3297, 5, 13, 0, 0, 3297, 3299, 3, 706, 353, 0, 3298, 3300, 3, 268, 134, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 195, 1, 0, 0, 0, 3301, 3306, 3, 210, 105, 0, 3302, 3303, 5, 173, 0, 0, 3303, 3306, 3, 652, 326, 0, 3304, 3306, 3, 230, 115, 0, 3305, 3301, 1, 0, 0, 0, 3305, 3302, 1, 0, 0, 0, 3305, 3304, 1, 0, 0, 0, 3306, 197, 1, 0, 0, 0, 3307, 3313, 3, 200, 100, 0, 3308, 3310, 5, 828, 0, 0, 3309, 3311, 7, 45, 0, 0, 3310, 3309, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 3, 200, 100, 0, 3313, 3308, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3315, 3316, 1, 0, 0, 0, 3316, 199, 1, 0, 0, 0, 3317, 3319, 5, 866, 0, 0, 3318, 3317, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3322, 3, 280, 140, 0, 3321, 3323, 5, 867, 0, 0, 3322, 3321, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 201, 1, 0, 0, 0, 3324, 3325, 5, 103, 0, 0, 3325, 3327, 5, 360, 0, 0, 3326, 3328, 7, 46, 0, 0, 3327, 3326, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3330, 1, 0, 0, 0, 3329, 3331, 5, 450, 0, 0, 3330, 3329, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 5, 83, 0, 0, 3333, 3335, 5, 882, 0, 0, 3334, 3336, 7, 7, 0, 0, 3335, 3334, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 5, 88, 0, 0, 3338, 3339, 5, 173, 0, 0, 3339, 3345, 3, 652, 326, 0, 3340, 3341, 5, 130, 0, 0, 3341, 3342, 5, 866, 0, 0, 3342, 3343, 3, 670, 335, 0, 3343, 3344, 5, 867, 0, 0, 3344, 3346, 1, 0, 0, 0, 3345, 3340, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3350, 1, 0, 0, 0, 3347, 3348, 5, 26, 0, 0, 3348, 3349, 5, 155, 0, 0, 3349, 3351, 3, 688, 344, 0, 3350, 3347, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3358, 1, 0, 0, 0, 3352, 3354, 7, 47, 0, 0, 3353, 3355, 3, 304, 152, 0, 3354, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3354, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3359, 1, 0, 0, 0, 3358, 3352, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3366, 1, 0, 0, 0, 3360, 3362, 5, 102, 0, 0, 3361, 3363, 3, 306, 153, 0, 3362, 3361, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3362, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3360, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3372, 1, 0, 0, 0, 3368, 3369, 5, 79, 0, 0, 3369, 3370, 3, 712, 356, 0, 3370, 3371, 7, 48, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3368, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3385, 1, 0, 0, 0, 3374, 3375, 5, 866, 0, 0, 3375, 3380, 3, 236, 118, 0, 3376, 3377, 5, 868, 0, 0, 3377, 3379, 3, 236, 118, 0, 3378, 3376, 1, 0, 0, 0, 3379, 3382, 1, 0, 0, 0, 3380, 3378, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3383, 1, 0, 0, 0, 3382, 3380, 1, 0, 0, 0, 3383, 3384, 5, 867, 0, 0, 3384, 3386, 1, 0, 0, 0, 3385, 3374, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3396, 1, 0, 0, 0, 3387, 3388, 5, 155, 0, 0, 3388, 3393, 3, 234, 117, 0, 3389, 3390, 5, 868, 0, 0, 3390, 3392, 3, 234, 117, 0, 3391, 3389, 1, 0, 0, 0, 3392, 3395, 1, 0, 0, 0, 3393, 3391, 1, 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3396, 3387, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 203, 1, 0, 0, 0, 3398, 3399, 5, 103, 0, 0, 3399, 3401, 5, 695, 0, 0, 3400, 3402, 7, 46, 0, 0, 3401, 3400, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3404, 1, 0, 0, 0, 3403, 3405, 5, 450, 0, 0, 3404, 3403, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 3407, 5, 83, 0, 0, 3407, 3409, 5, 882, 0, 0, 3408, 3410, 7, 7, 0, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 5, 88, 0, 0, 3412, 3413, 5, 173, 0, 0, 3413, 3417, 3, 652, 326, 0, 3414, 3415, 5, 26, 0, 0, 3415, 3416, 5, 155, 0, 0, 3416, 3418, 3, 688, 344, 0, 3417, 3414, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3429, 1, 0, 0, 0, 3419, 3420, 5, 587, 0, 0, 3420, 3421, 5, 423, 0, 0, 3421, 3423, 5, 20, 0, 0, 3422, 3424, 5, 859, 0, 0, 3423, 3422, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3427, 5, 882, 0, 0, 3426, 3428, 5, 858, 0, 0, 3427, 3426, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3430, 1, 0, 0, 0, 3429, 3419, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3435, 1, 0, 0, 0, 3431, 3432, 5, 79, 0, 0, 3432, 3433, 3, 712, 356, 0, 3433, 3434, 7, 48, 0, 0, 3434, 3436, 1, 0, 0, 0, 3435, 3431, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3448, 1, 0, 0, 0, 3437, 3438, 5, 866, 0, 0, 3438, 3443, 3, 236, 118, 0, 3439, 3440, 5, 868, 0, 0, 3440, 3442, 3, 236, 118, 0, 3441, 3439, 1, 0, 0, 0, 3442, 3445, 1, 0, 0, 0, 3443, 3441, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3443, 1, 0, 0, 0, 3446, 3447, 5, 867, 0, 0, 3447, 3449, 1, 0, 0, 0, 3448, 3437, 1, 0, 0, 0, 3448, 3449, 1, 0, 0, 0, 3449, 3459, 1, 0, 0, 0, 3450, 3451, 5, 155, 0, 0, 3451, 3456, 3, 234, 117, 0, 3452, 3453, 5, 868, 0, 0, 3453, 3455, 3, 234, 117, 0, 3454, 3452, 1, 0, 0, 0, 3455, 3458, 1, 0, 0, 0, 3456, 3454, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3460, 1, 0, 0, 0, 3458, 3456, 1, 0, 0, 0, 3459, 3450, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 205, 1, 0, 0, 0, 3461, 3462, 5, 866, 0, 0, 3462, 3464, 3, 224, 112, 0, 3463, 3465, 3, 258, 129, 0, 3464, 3463, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3467, 1, 0, 0, 0, 3466, 3468, 3, 318, 159, 0, 3467, 3466, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3471, 5, 867, 0, 0, 3470, 3472, 3, 258, 129, 0, 3471, 3470, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3474, 1, 0, 0, 0, 3473, 3475, 3, 318, 159, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3478, 3, 302, 151, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 207, 1, 0, 0, 0, 3479, 3481, 5, 143, 0, 0, 3480, 3482, 7, 49, 0, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3485, 5, 88, 0, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3492, 3, 652, 326, 0, 3487, 3488, 5, 130, 0, 0, 3488, 3489, 5, 866, 0, 0, 3489, 3490, 3, 670, 335, 0, 3490, 3491, 5, 867, 0, 0, 3491, 3493, 1, 0, 0, 0, 3492, 3487, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3502, 1, 0, 0, 0, 3494, 3495, 5, 866, 0, 0, 3495, 3496, 3, 660, 330, 0, 3496, 3497, 5, 867, 0, 0, 3497, 3499, 1, 0, 0, 0, 3498, 3494, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3503, 3, 228, 114, 0, 3501, 3503, 3, 232, 116, 0, 3502, 3498, 1, 0, 0, 0, 3502, 3501, 1, 0, 0, 0, 3503, 209, 1, 0, 0, 0, 3504, 3508, 3, 280, 140, 0, 3505, 3507, 3, 282, 141, 0, 3506, 3505, 1, 0, 0, 0, 3507, 3510, 1, 0, 0, 0, 3508, 3506, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3519, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3511, 3513, 5, 181, 0, 0, 3512, 3514, 7, 45, 0, 0, 3513, 3512, 1, 0, 0, 0, 3513, 3514, 1, 0, 0, 0, 3514, 3517, 1, 0, 0, 0, 3515, 3518, 3, 280, 140, 0, 3516, 3518, 3, 278, 139, 0, 3517, 3515, 1, 0, 0, 0, 3517, 3516, 1, 0, 0, 0, 3518, 3520, 1, 0, 0, 0, 3519, 3511, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 3525, 1, 0, 0, 0, 3521, 3522, 5, 868, 0, 0, 3522, 3524, 3, 284, 142, 0, 3523, 3521, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3529, 1, 0, 0, 0, 3527, 3525, 1, 0, 0, 0, 3528, 3530, 3, 258, 129, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3532, 1, 0, 0, 0, 3531, 3533, 3, 318, 159, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3535, 1, 0, 0, 0, 3534, 3536, 3, 238, 119, 0, 3535, 3534, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3538, 1, 0, 0, 0, 3537, 3539, 3, 302, 151, 0, 3538, 3537, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3564, 1, 0, 0, 0, 3540, 3544, 3, 278, 139, 0, 3541, 3543, 3, 282, 141, 0, 3542, 3541, 1, 0, 0, 0, 3543, 3546, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3552, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 3549, 5, 181, 0, 0, 3548, 3550, 7, 45, 0, 0, 3549, 3548, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3551, 1, 0, 0, 0, 3551, 3553, 3, 278, 139, 0, 3552, 3547, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3555, 1, 0, 0, 0, 3554, 3556, 3, 258, 129, 0, 3555, 3554, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3558, 1, 0, 0, 0, 3557, 3559, 3, 318, 159, 0, 3558, 3557, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3562, 3, 238, 119, 0, 3561, 3560, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3564, 1, 0, 0, 0, 3563, 3504, 1, 0, 0, 0, 3563, 3540, 1, 0, 0, 0, 3564, 211, 1, 0, 0, 0, 3565, 3567, 3, 50, 25, 0, 3566, 3565, 1, 0, 0, 0, 3566, 3567, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3570, 3, 214, 107, 0, 3569, 3571, 3, 258, 129, 0, 3570, 3569, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3574, 3, 318, 159, 0, 3573, 3572, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3576, 1, 0, 0, 0, 3575, 3577, 3, 302, 151, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 213, 1, 0, 0, 0, 3578, 3579, 6, 107, -1, 0, 3579, 3580, 3, 216, 108, 0, 3580, 3595, 1, 0, 0, 0, 3581, 3582, 10, 2, 0, 0, 3582, 3584, 5, 181, 0, 0, 3583, 3585, 7, 45, 0, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3594, 3, 216, 108, 0, 3587, 3588, 10, 1, 0, 0, 3588, 3590, 5, 59, 0, 0, 3589, 3591, 7, 45, 0, 0, 3590, 3589, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3594, 3, 216, 108, 0, 3593, 3581, 1, 0, 0, 0, 3593, 3587, 1, 0, 0, 0, 3594, 3597, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 215, 1, 0, 0, 0, 3597, 3595, 1, 0, 0, 0, 3598, 3599, 6, 108, -1, 0, 3599, 3600, 3, 218, 109, 0, 3600, 3609, 1, 0, 0, 0, 3601, 3602, 10, 1, 0, 0, 3602, 3604, 5, 828, 0, 0, 3603, 3605, 7, 45, 0, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3608, 3, 218, 109, 0, 3607, 3601, 1, 0, 0, 0, 3608, 3611, 1, 0, 0, 0, 3609, 3607, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 217, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3627, 3, 226, 113, 0, 3613, 3614, 5, 866, 0, 0, 3614, 3616, 3, 214, 107, 0, 3615, 3617, 3, 258, 129, 0, 3616, 3615, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 3619, 1, 0, 0, 0, 3618, 3620, 3, 318, 159, 0, 3619, 3618, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3622, 1, 0, 0, 0, 3621, 3623, 3, 302, 151, 0, 3622, 3621, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3625, 5, 867, 0, 0, 3625, 3627, 1, 0, 0, 0, 3626, 3612, 1, 0, 0, 0, 3626, 3613, 1, 0, 0, 0, 3627, 219, 1, 0, 0, 0, 3628, 3631, 3, 254, 127, 0, 3629, 3631, 3, 256, 128, 0, 3630, 3628, 1, 0, 0, 0, 3630, 3629, 1, 0, 0, 0, 3631, 221, 1, 0, 0, 0, 3632, 3636, 3, 230, 115, 0, 3633, 3634, 5, 125, 0, 0, 3634, 3635, 5, 20, 0, 0, 3635, 3637, 3, 674, 337, 0, 3636, 3633, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 3640, 1, 0, 0, 0, 3638, 3639, 5, 100, 0, 0, 3639, 3641, 3, 320, 160, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 223, 1, 0, 0, 0, 3642, 3647, 3, 226, 113, 0, 3643, 3644, 7, 50, 0, 0, 3644, 3646, 3, 226, 113, 0, 3645, 3643, 1, 0, 0, 0, 3646, 3649, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3651, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3650, 3652, 3, 258, 129, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3654, 1, 0, 0, 0, 3653, 3655, 3, 318, 159, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3657, 1, 0, 0, 0, 3656, 3658, 3, 302, 151, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 225, 1, 0, 0, 0, 3659, 3663, 3, 210, 105, 0, 3660, 3663, 3, 618, 309, 0, 3661, 3663, 3, 222, 111, 0, 3662, 3659, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3661, 1, 0, 0, 0, 3663, 227, 1, 0, 0, 0, 3664, 3670, 3, 210, 105, 0, 3665, 3666, 5, 173, 0, 0, 3666, 3670, 3, 652, 326, 0, 3667, 3670, 3, 742, 371, 0, 3668, 3670, 3, 230, 115, 0, 3669, 3664, 1, 0, 0, 0, 3669, 3665, 1, 0, 0, 0, 3669, 3667, 1, 0, 0, 0, 3669, 3668, 1, 0, 0, 0, 3670, 229, 1, 0, 0, 0, 3671, 3672, 5, 189, 0, 0, 3672, 3673, 5, 586, 0, 0, 3673, 3679, 3, 744, 372, 0, 3674, 3675, 5, 868, 0, 0, 3675, 3676, 5, 586, 0, 0, 3676, 3678, 3, 744, 372, 0, 3677, 3674, 1, 0, 0, 0, 3678, 3681, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 231, 1, 0, 0, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3683, 5, 155, 0, 0, 3683, 3688, 3, 234, 117, 0, 3684, 3685, 5, 868, 0, 0, 3685, 3687, 3, 234, 117, 0, 3686, 3684, 1, 0, 0, 0, 3687, 3690, 1, 0, 0, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 233, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3691, 3692, 3, 662, 331, 0, 3692, 3693, 5, 857, 0, 0, 3693, 3694, 3, 746, 373, 0, 3694, 235, 1, 0, 0, 0, 3695, 3698, 3, 706, 353, 0, 3696, 3698, 5, 892, 0, 0, 3697, 3695, 1, 0, 0, 0, 3697, 3696, 1, 0, 0, 0, 3698, 237, 1, 0, 0, 0, 3699, 3700, 5, 65, 0, 0, 3700, 3710, 7, 51, 0, 0, 3701, 3702, 5, 510, 0, 0, 3702, 3707, 3, 652, 326, 0, 3703, 3704, 5, 868, 0, 0, 3704, 3706, 3, 652, 326, 0, 3705, 3703, 1, 0, 0, 0, 3706, 3709, 1, 0, 0, 0, 3707, 3705, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3711, 1, 0, 0, 0, 3709, 3707, 1, 0, 0, 0, 3710, 3701, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3714, 1, 0, 0, 0, 3712, 3713, 7, 52, 0, 0, 3713, 3715, 5, 105, 0, 0, 3714, 3712, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3721, 1, 0, 0, 0, 3716, 3717, 5, 104, 0, 0, 3717, 3718, 5, 80, 0, 0, 3718, 3719, 5, 594, 0, 0, 3719, 3721, 5, 491, 0, 0, 3720, 3699, 1, 0, 0, 0, 3720, 3716, 1, 0, 0, 0, 3721, 239, 1, 0, 0, 0, 3722, 3724, 5, 44, 0, 0, 3723, 3725, 5, 107, 0, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3727, 1, 0, 0, 0, 3726, 3728, 5, 549, 0, 0, 3727, 3726, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3730, 1, 0, 0, 0, 3729, 3731, 5, 79, 0, 0, 3730, 3729, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3733, 5, 68, 0, 0, 3733, 3738, 3, 652, 326, 0, 3734, 3736, 5, 13, 0, 0, 3735, 3734, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3739, 3, 706, 353, 0, 3738, 3735, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3745, 1, 0, 0, 0, 3740, 3741, 5, 130, 0, 0, 3741, 3742, 5, 866, 0, 0, 3742, 3743, 3, 670, 335, 0, 3743, 3744, 5, 867, 0, 0, 3744, 3746, 1, 0, 0, 0, 3745, 3740, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3749, 1, 0, 0, 0, 3747, 3748, 5, 192, 0, 0, 3748, 3750, 3, 804, 402, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3752, 1, 0, 0, 0, 3751, 3753, 3, 258, 129, 0, 3752, 3751, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3756, 1, 0, 0, 0, 3754, 3755, 5, 100, 0, 0, 3755, 3757, 3, 320, 160, 0, 3756, 3754, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 241, 1, 0, 0, 0, 3758, 3760, 5, 44, 0, 0, 3759, 3761, 5, 107, 0, 0, 3760, 3759, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3763, 1, 0, 0, 0, 3762, 3764, 5, 549, 0, 0, 3763, 3762, 1, 0, 0, 0, 3763, 3764, 1, 0, 0, 0, 3764, 3766, 1, 0, 0, 0, 3765, 3767, 5, 79, 0, 0, 3766, 3765, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 3807, 1, 0, 0, 0, 3768, 3771, 3, 652, 326, 0, 3769, 3770, 5, 865, 0, 0, 3770, 3772, 5, 850, 0, 0, 3771, 3769, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3781, 1, 0, 0, 0, 3773, 3774, 5, 868, 0, 0, 3774, 3777, 3, 652, 326, 0, 3775, 3776, 5, 865, 0, 0, 3776, 3778, 5, 850, 0, 0, 3777, 3775, 1, 0, 0, 0, 3777, 3778, 1, 0, 0, 0, 3778, 3780, 1, 0, 0, 0, 3779, 3773, 1, 0, 0, 0, 3780, 3783, 1, 0, 0, 0, 3781, 3779, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3784, 1, 0, 0, 0, 3783, 3781, 1, 0, 0, 0, 3784, 3785, 5, 68, 0, 0, 3785, 3786, 3, 262, 131, 0, 3786, 3808, 1, 0, 0, 0, 3787, 3788, 5, 68, 0, 0, 3788, 3791, 3, 652, 326, 0, 3789, 3790, 5, 865, 0, 0, 3790, 3792, 5, 850, 0, 0, 3791, 3789, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3801, 1, 0, 0, 0, 3793, 3794, 5, 868, 0, 0, 3794, 3797, 3, 652, 326, 0, 3795, 3796, 5, 865, 0, 0, 3796, 3798, 5, 850, 0, 0, 3797, 3795, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3793, 1, 0, 0, 0, 3800, 3803, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3804, 1, 0, 0, 0, 3803, 3801, 1, 0, 0, 0, 3804, 3805, 5, 188, 0, 0, 3805, 3806, 3, 262, 131, 0, 3806, 3808, 1, 0, 0, 0, 3807, 3768, 1, 0, 0, 0, 3807, 3787, 1, 0, 0, 0, 3808, 3811, 1, 0, 0, 0, 3809, 3810, 5, 192, 0, 0, 3810, 3812, 3, 804, 402, 0, 3811, 3809, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 243, 1, 0, 0, 0, 3813, 3814, 5, 417, 0, 0, 3814, 3815, 3, 652, 326, 0, 3815, 3820, 5, 516, 0, 0, 3816, 3818, 5, 13, 0, 0, 3817, 3816, 1, 0, 0, 0, 3817, 3818, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3821, 3, 706, 353, 0, 3820, 3817, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 245, 1, 0, 0, 0, 3822, 3823, 5, 417, 0, 0, 3823, 3824, 3, 652, 326, 0, 3824, 3825, 5, 135, 0, 0, 3825, 3832, 3, 642, 321, 0, 3826, 3827, 3, 814, 407, 0, 3827, 3828, 5, 866, 0, 0, 3828, 3829, 3, 748, 374, 0, 3829, 3830, 5, 867, 0, 0, 3830, 3833, 1, 0, 0, 0, 3831, 3833, 7, 53, 0, 0, 3832, 3826, 1, 0, 0, 0, 3832, 3831, 1, 0, 0, 0, 3833, 3836, 1, 0, 0, 0, 3834, 3835, 5, 192, 0, 0, 3835, 3837, 3, 804, 402, 0, 3836, 3834, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3840, 1, 0, 0, 0, 3838, 3839, 5, 100, 0, 0, 3839, 3841, 3, 320, 160, 0, 3840, 3838, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 247, 1, 0, 0, 0, 3842, 3843, 5, 417, 0, 0, 3843, 3844, 3, 652, 326, 0, 3844, 3845, 5, 135, 0, 0, 3845, 3848, 7, 54, 0, 0, 3846, 3847, 5, 192, 0, 0, 3847, 3849, 3, 804, 402, 0, 3848, 3846, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 3852, 1, 0, 0, 0, 3850, 3851, 5, 100, 0, 0, 3851, 3853, 3, 320, 160, 0, 3852, 3850, 1, 0, 0, 0, 3852, 3853, 1, 0, 0, 0, 3853, 249, 1, 0, 0, 0, 3854, 3855, 5, 417, 0, 0, 3855, 3856, 3, 652, 326, 0, 3856, 3857, 5, 334, 0, 0, 3857, 251, 1, 0, 0, 0, 3858, 3859, 5, 425, 0, 0, 3859, 3860, 5, 173, 0, 0, 3860, 3861, 5, 68, 0, 0, 3861, 3866, 3, 716, 358, 0, 3862, 3863, 5, 868, 0, 0, 3863, 3865, 3, 716, 358, 0, 3864, 3862, 1, 0, 0, 0, 3865, 3868, 1, 0, 0, 0, 3866, 3864, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 253, 1, 0, 0, 0, 3868, 3866, 1, 0, 0, 0, 3869, 3871, 5, 185, 0, 0, 3870, 3872, 5, 107, 0, 0, 3871, 3870, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3874, 1, 0, 0, 0, 3873, 3875, 5, 79, 0, 0, 3874, 3873, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 3881, 3, 652, 326, 0, 3877, 3879, 5, 13, 0, 0, 3878, 3877, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3882, 3, 706, 353, 0, 3881, 3878, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 3883, 1, 0, 0, 0, 3883, 3884, 5, 155, 0, 0, 3884, 3889, 3, 234, 117, 0, 3885, 3886, 5, 868, 0, 0, 3886, 3888, 3, 234, 117, 0, 3887, 3885, 1, 0, 0, 0, 3888, 3891, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3894, 1, 0, 0, 0, 3891, 3889, 1, 0, 0, 0, 3892, 3893, 5, 192, 0, 0, 3893, 3895, 3, 804, 402, 0, 3894, 3892, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 3897, 1, 0, 0, 0, 3896, 3898, 3, 258, 129, 0, 3897, 3896, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3900, 1, 0, 0, 0, 3899, 3901, 3, 318, 159, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 255, 1, 0, 0, 0, 3902, 3904, 5, 185, 0, 0, 3903, 3905, 5, 107, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3907, 1, 0, 0, 0, 3906, 3908, 5, 79, 0, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 3, 262, 131, 0, 3910, 3911, 5, 155, 0, 0, 3911, 3916, 3, 234, 117, 0, 3912, 3913, 5, 868, 0, 0, 3913, 3915, 3, 234, 117, 0, 3914, 3912, 1, 0, 0, 0, 3915, 3918, 1, 0, 0, 0, 3916, 3914, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3921, 1, 0, 0, 0, 3918, 3916, 1, 0, 0, 0, 3919, 3920, 5, 192, 0, 0, 3920, 3922, 3, 804, 402, 0, 3921, 3919, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 257, 1, 0, 0, 0, 3923, 3924, 5, 125, 0, 0, 3924, 3925, 5, 20, 0, 0, 3925, 3930, 3, 260, 130, 0, 3926, 3927, 5, 868, 0, 0, 3927, 3929, 3, 260, 130, 0, 3928, 3926, 1, 0, 0, 0, 3929, 3932, 1, 0, 0, 0, 3930, 3928, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 259, 1, 0, 0, 0, 3932, 3930, 1, 0, 0, 0, 3933, 3935, 3, 804, 402, 0, 3934, 3936, 7, 55, 0, 0, 3935, 3934, 1, 0, 0, 0, 3935, 3936, 1, 0, 0, 0, 3936, 261, 1, 0, 0, 0, 3937, 3942, 3, 264, 132, 0, 3938, 3939, 5, 868, 0, 0, 3939, 3941, 3, 264, 132, 0, 3940, 3938, 1, 0, 0, 0, 3941, 3944, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 263, 1, 0, 0, 0, 3944, 3942, 1, 0, 0, 0, 3945, 3949, 3, 266, 133, 0, 3946, 3948, 3, 274, 137, 0, 3947, 3946, 1, 0, 0, 0, 3948, 3951, 1, 0, 0, 0, 3949, 3947, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3964, 1, 0, 0, 0, 3951, 3949, 1, 0, 0, 0, 3952, 3953, 5, 866, 0, 0, 3953, 3957, 3, 266, 133, 0, 3954, 3956, 3, 274, 137, 0, 3955, 3954, 1, 0, 0, 0, 3956, 3959, 1, 0, 0, 0, 3957, 3955, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3960, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3960, 3961, 5, 867, 0, 0, 3961, 3964, 1, 0, 0, 0, 3962, 3964, 3, 286, 143, 0, 3963, 3945, 1, 0, 0, 0, 3963, 3952, 1, 0, 0, 0, 3963, 3962, 1, 0, 0, 0, 3964, 265, 1, 0, 0, 0, 3965, 3971, 3, 652, 326, 0, 3966, 3967, 5, 130, 0, 0, 3967, 3968, 5, 866, 0, 0, 3968, 3969, 3, 670, 335, 0, 3969, 3970, 5, 867, 0, 0, 3970, 3972, 1, 0, 0, 0, 3971, 3966, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3977, 1, 0, 0, 0, 3973, 3975, 5, 13, 0, 0, 3974, 3973, 1, 0, 0, 0, 3974, 3975, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3978, 3, 706, 353, 0, 3977, 3974, 1, 0, 0, 0, 3977, 3978, 1, 0, 0, 0, 3978, 3987, 1, 0, 0, 0, 3979, 3984, 3, 270, 135, 0, 3980, 3981, 5, 868, 0, 0, 3981, 3983, 3, 270, 135, 0, 3982, 3980, 1, 0, 0, 0, 3983, 3986, 1, 0, 0, 0, 3984, 3982, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3988, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3987, 3979, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 4011, 1, 0, 0, 0, 3989, 3991, 5, 95, 0, 0, 3990, 3989, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3997, 1, 0, 0, 0, 3992, 3998, 3, 210, 105, 0, 3993, 3994, 5, 866, 0, 0, 3994, 3995, 3, 210, 105, 0, 3995, 3996, 5, 867, 0, 0, 3996, 3998, 1, 0, 0, 0, 3997, 3992, 1, 0, 0, 0, 3997, 3993, 1, 0, 0, 0, 3998, 4000, 1, 0, 0, 0, 3999, 4001, 5, 13, 0, 0, 4000, 3999, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4004, 3, 706, 353, 0, 4003, 4005, 3, 268, 134, 0, 4004, 4003, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 4011, 1, 0, 0, 0, 4006, 4007, 5, 866, 0, 0, 4007, 4008, 3, 262, 131, 0, 4008, 4009, 5, 867, 0, 0, 4009, 4011, 1, 0, 0, 0, 4010, 3965, 1, 0, 0, 0, 4010, 3990, 1, 0, 0, 0, 4010, 4006, 1, 0, 0, 0, 4011, 267, 1, 0, 0, 0, 4012, 4013, 5, 866, 0, 0, 4013, 4014, 3, 660, 330, 0, 4014, 4015, 5, 867, 0, 0, 4015, 269, 1, 0, 0, 0, 4016, 4017, 7, 56, 0, 0, 4017, 4020, 7, 19, 0, 0, 4018, 4019, 5, 65, 0, 0, 4019, 4021, 3, 272, 136, 0, 4020, 4018, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4024, 5, 866, 0, 0, 4023, 4025, 3, 640, 320, 0, 4024, 4023, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4026, 1, 0, 0, 0, 4026, 4027, 5, 867, 0, 0, 4027, 271, 1, 0, 0, 0, 4028, 4034, 5, 91, 0, 0, 4029, 4030, 5, 125, 0, 0, 4030, 4034, 5, 20, 0, 0, 4031, 4032, 5, 74, 0, 0, 4032, 4034, 5, 20, 0, 0, 4033, 4028, 1, 0, 0, 0, 4033, 4029, 1, 0, 0, 0, 4033, 4031, 1, 0, 0, 0, 4034, 273, 1, 0, 0, 0, 4035, 4037, 7, 57, 0, 0, 4036, 4035, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4040, 5, 91, 0, 0, 4039, 4041, 5, 95, 0, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4046, 3, 266, 133, 0, 4043, 4045, 3, 276, 138, 0, 4044, 4043, 1, 0, 0, 0, 4045, 4048, 1, 0, 0, 0, 4046, 4044, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4085, 1, 0, 0, 0, 4048, 4046, 1, 0, 0, 0, 4049, 4050, 5, 172, 0, 0, 4050, 4054, 3, 266, 133, 0, 4051, 4053, 3, 276, 138, 0, 4052, 4051, 1, 0, 0, 0, 4053, 4056, 1, 0, 0, 0, 4054, 4052, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4085, 1, 0, 0, 0, 4056, 4054, 1, 0, 0, 0, 4057, 4059, 7, 58, 0, 0, 4058, 4060, 5, 127, 0, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 4063, 5, 91, 0, 0, 4062, 4064, 5, 95, 0, 0, 4063, 4062, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4065, 1, 0, 0, 0, 4065, 4069, 3, 266, 133, 0, 4066, 4068, 3, 276, 138, 0, 4067, 4066, 1, 0, 0, 0, 4068, 4071, 1, 0, 0, 0, 4069, 4067, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4085, 1, 0, 0, 0, 4071, 4069, 1, 0, 0, 0, 4072, 4080, 5, 113, 0, 0, 4073, 4076, 5, 84, 0, 0, 4074, 4076, 7, 58, 0, 0, 4075, 4073, 1, 0, 0, 0, 4075, 4074, 1, 0, 0, 0, 4076, 4078, 1, 0, 0, 0, 4077, 4079, 5, 127, 0, 0, 4078, 4077, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4081, 1, 0, 0, 0, 4080, 4075, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 4083, 5, 91, 0, 0, 4083, 4085, 3, 266, 133, 0, 4084, 4036, 1, 0, 0, 0, 4084, 4049, 1, 0, 0, 0, 4084, 4057, 1, 0, 0, 0, 4084, 4072, 1, 0, 0, 0, 4085, 275, 1, 0, 0, 0, 4086, 4087, 5, 119, 0, 0, 4087, 4094, 3, 804, 402, 0, 4088, 4089, 5, 188, 0, 0, 4089, 4090, 5, 866, 0, 0, 4090, 4091, 3, 660, 330, 0, 4091, 4092, 5, 867, 0, 0, 4092, 4094, 1, 0, 0, 0, 4093, 4086, 1, 0, 0, 0, 4093, 4088, 1, 0, 0, 0, 4094, 277, 1, 0, 0, 0, 4095, 4096, 5, 866, 0, 0, 4096, 4097, 3, 280, 140, 0, 4097, 4098, 5, 867, 0, 0, 4098, 4104, 1, 0, 0, 0, 4099, 4100, 5, 866, 0, 0, 4100, 4101, 3, 278, 139, 0, 4101, 4102, 5, 867, 0, 0, 4102, 4104, 1, 0, 0, 0, 4103, 4095, 1, 0, 0, 0, 4103, 4099, 1, 0, 0, 0, 4104, 279, 1, 0, 0, 0, 4105, 4109, 5, 154, 0, 0, 4106, 4108, 3, 296, 148, 0, 4107, 4106, 1, 0, 0, 0, 4108, 4111, 1, 0, 0, 0, 4109, 4107, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4112, 1, 0, 0, 0, 4111, 4109, 1, 0, 0, 0, 4112, 4114, 3, 298, 149, 0, 4113, 4115, 3, 302, 151, 0, 4114, 4113, 1, 0, 0, 0, 4114, 4115, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4118, 3, 308, 154, 0, 4117, 4119, 3, 310, 155, 0, 4118, 4117, 1, 0, 0, 0, 4118, 4119, 1, 0, 0, 0, 4119, 4121, 1, 0, 0, 0, 4120, 4122, 3, 312, 156, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4125, 3, 314, 157, 0, 4124, 4123, 1, 0, 0, 0, 4124, 4125, 1, 0, 0, 0, 4125, 4127, 1, 0, 0, 0, 4126, 4128, 3, 258, 129, 0, 4127, 4126, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4130, 1, 0, 0, 0, 4129, 4131, 3, 318, 159, 0, 4130, 4129, 1, 0, 0, 0, 4130, 4131, 1, 0, 0, 0, 4131, 4133, 1, 0, 0, 0, 4132, 4134, 3, 302, 151, 0, 4133, 4132, 1, 0, 0, 0, 4133, 4134, 1, 0, 0, 0, 4134, 4136, 1, 0, 0, 0, 4135, 4137, 3, 282, 141, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 281, 1, 0, 0, 0, 4138, 4140, 5, 181, 0, 0, 4139, 4141, 7, 45, 0, 0, 4140, 4139, 1, 0, 0, 0, 4140, 4141, 1, 0, 0, 0, 4141, 4144, 1, 0, 0, 0, 4142, 4145, 3, 280, 140, 0, 4143, 4145, 3, 278, 139, 0, 4144, 4142, 1, 0, 0, 0, 4144, 4143, 1, 0, 0, 0, 4145, 283, 1, 0, 0, 0, 4146, 4161, 5, 95, 0, 0, 4147, 4162, 3, 280, 140, 0, 4148, 4162, 3, 278, 139, 0, 4149, 4152, 5, 866, 0, 0, 4150, 4153, 3, 280, 140, 0, 4151, 4153, 3, 278, 139, 0, 4152, 4150, 1, 0, 0, 0, 4152, 4151, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4159, 5, 867, 0, 0, 4155, 4157, 5, 13, 0, 0, 4156, 4155, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4158, 1, 0, 0, 0, 4158, 4160, 3, 706, 353, 0, 4159, 4156, 1, 0, 0, 0, 4159, 4160, 1, 0, 0, 0, 4160, 4162, 1, 0, 0, 0, 4161, 4147, 1, 0, 0, 0, 4161, 4148, 1, 0, 0, 0, 4161, 4149, 1, 0, 0, 0, 4162, 285, 1, 0, 0, 0, 4163, 4164, 5, 253, 0, 0, 4164, 4165, 5, 866, 0, 0, 4165, 4166, 5, 882, 0, 0, 4166, 4167, 5, 868, 0, 0, 4167, 4168, 5, 882, 0, 0, 4168, 4169, 5, 337, 0, 0, 4169, 4170, 5, 866, 0, 0, 4170, 4171, 3, 288, 144, 0, 4171, 4172, 5, 867, 0, 0, 4172, 4177, 5, 867, 0, 0, 4173, 4175, 5, 13, 0, 0, 4174, 4173, 1, 0, 0, 0, 4174, 4175, 1, 0, 0, 0, 4175, 4176, 1, 0, 0, 0, 4176, 4178, 3, 706, 353, 0, 4177, 4174, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 287, 1, 0, 0, 0, 4179, 4184, 3, 290, 145, 0, 4180, 4181, 5, 868, 0, 0, 4181, 4183, 3, 290, 145, 0, 4182, 4180, 1, 0, 0, 0, 4183, 4186, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 289, 1, 0, 0, 0, 4186, 4184, 1, 0, 0, 0, 4187, 4204, 3, 662, 331, 0, 4188, 4189, 5, 65, 0, 0, 4189, 4205, 5, 256, 0, 0, 4190, 4202, 3, 726, 363, 0, 4191, 4192, 5, 257, 0, 0, 4192, 4194, 5, 882, 0, 0, 4193, 4195, 3, 292, 146, 0, 4194, 4193, 1, 0, 0, 0, 4194, 4195, 1, 0, 0, 0, 4195, 4197, 1, 0, 0, 0, 4196, 4198, 3, 294, 147, 0, 4197, 4196, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4203, 1, 0, 0, 0, 4199, 4200, 5, 60, 0, 0, 4200, 4201, 5, 257, 0, 0, 4201, 4203, 5, 882, 0, 0, 4202, 4191, 1, 0, 0, 0, 4202, 4199, 1, 0, 0, 0, 4203, 4205, 1, 0, 0, 0, 4204, 4188, 1, 0, 0, 0, 4204, 4190, 1, 0, 0, 0, 4205, 4217, 1, 0, 0, 0, 4206, 4208, 5, 255, 0, 0, 4207, 4209, 5, 257, 0, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 4210, 1, 0, 0, 0, 4210, 4211, 5, 882, 0, 0, 4211, 4212, 5, 337, 0, 0, 4212, 4213, 5, 866, 0, 0, 4213, 4214, 3, 288, 144, 0, 4214, 4215, 5, 867, 0, 0, 4215, 4217, 1, 0, 0, 0, 4216, 4187, 1, 0, 0, 0, 4216, 4206, 1, 0, 0, 0, 4217, 291, 1, 0, 0, 0, 4218, 4223, 5, 116, 0, 0, 4219, 4223, 5, 382, 0, 0, 4220, 4221, 5, 42, 0, 0, 4221, 4223, 3, 754, 377, 0, 4222, 4218, 1, 0, 0, 0, 4222, 4219, 1, 0, 0, 0, 4222, 4220, 1, 0, 0, 0, 4223, 4224, 1, 0, 0, 0, 4224, 4225, 5, 119, 0, 0, 4225, 4226, 5, 55, 0, 0, 4226, 293, 1, 0, 0, 0, 4227, 4232, 5, 116, 0, 0, 4228, 4232, 5, 382, 0, 0, 4229, 4230, 5, 42, 0, 0, 4230, 4232, 3, 754, 377, 0, 4231, 4227, 1, 0, 0, 0, 4231, 4228, 1, 0, 0, 0, 4231, 4229, 1, 0, 0, 0, 4232, 4233, 1, 0, 0, 0, 4233, 4234, 5, 119, 0, 0, 4234, 4235, 5, 382, 0, 0, 4235, 295, 1, 0, 0, 0, 4236, 4245, 7, 59, 0, 0, 4237, 4245, 5, 76, 0, 0, 4238, 4245, 5, 172, 0, 0, 4239, 4245, 5, 168, 0, 0, 4240, 4245, 5, 166, 0, 0, 4241, 4245, 5, 636, 0, 0, 4242, 4245, 7, 60, 0, 0, 4243, 4245, 5, 167, 0, 0, 4244, 4236, 1, 0, 0, 0, 4244, 4237, 1, 0, 0, 0, 4244, 4238, 1, 0, 0, 0, 4244, 4239, 1, 0, 0, 0, 4244, 4240, 1, 0, 0, 0, 4244, 4241, 1, 0, 0, 0, 4244, 4242, 1, 0, 0, 0, 4244, 4243, 1, 0, 0, 0, 4245, 297, 1, 0, 0, 0, 4246, 4249, 5, 850, 0, 0, 4247, 4249, 3, 300, 150, 0, 4248, 4246, 1, 0, 0, 0, 4248, 4247, 1, 0, 0, 0, 4249, 4254, 1, 0, 0, 0, 4250, 4251, 5, 868, 0, 0, 4251, 4253, 3, 300, 150, 0, 4252, 4250, 1, 0, 0, 0, 4253, 4256, 1, 0, 0, 0, 4254, 4252, 1, 0, 0, 0, 4254, 4255, 1, 0, 0, 0, 4255, 299, 1, 0, 0, 0, 4256, 4254, 1, 0, 0, 0, 4257, 4258, 5, 892, 0, 0, 4258, 4260, 5, 841, 0, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 4266, 3, 804, 402, 0, 4262, 4264, 5, 13, 0, 0, 4263, 4262, 1, 0, 0, 0, 4263, 4264, 1, 0, 0, 0, 4264, 4265, 1, 0, 0, 0, 4265, 4267, 3, 706, 353, 0, 4266, 4263, 1, 0, 0, 0, 4266, 4267, 1, 0, 0, 0, 4267, 4287, 1, 0, 0, 0, 4268, 4273, 3, 764, 382, 0, 4269, 4271, 5, 13, 0, 0, 4270, 4269, 1, 0, 0, 0, 4270, 4271, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4274, 3, 706, 353, 0, 4273, 4270, 1, 0, 0, 0, 4273, 4274, 1, 0, 0, 0, 4274, 4287, 1, 0, 0, 0, 4275, 4276, 3, 702, 351, 0, 4276, 4277, 5, 865, 0, 0, 4277, 4278, 5, 850, 0, 0, 4278, 4287, 1, 0, 0, 0, 4279, 4284, 3, 662, 331, 0, 4280, 4282, 5, 13, 0, 0, 4281, 4280, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4285, 3, 706, 353, 0, 4284, 4281, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4287, 1, 0, 0, 0, 4286, 4259, 1, 0, 0, 0, 4286, 4268, 1, 0, 0, 0, 4286, 4275, 1, 0, 0, 0, 4286, 4279, 1, 0, 0, 0, 4287, 301, 1, 0, 0, 0, 4288, 4289, 5, 88, 0, 0, 4289, 4294, 3, 236, 118, 0, 4290, 4291, 5, 868, 0, 0, 4291, 4293, 3, 236, 118, 0, 4292, 4290, 1, 0, 0, 0, 4293, 4296, 1, 0, 0, 0, 4294, 4292, 1, 0, 0, 0, 4294, 4295, 1, 0, 0, 0, 4295, 4325, 1, 0, 0, 0, 4296, 4294, 1, 0, 0, 0, 4297, 4298, 5, 88, 0, 0, 4298, 4299, 5, 372, 0, 0, 4299, 4325, 5, 882, 0, 0, 4300, 4301, 5, 88, 0, 0, 4301, 4302, 5, 128, 0, 0, 4302, 4306, 5, 882, 0, 0, 4303, 4304, 5, 26, 0, 0, 4304, 4305, 5, 155, 0, 0, 4305, 4307, 3, 688, 344, 0, 4306, 4303, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, 0, 4307, 4314, 1, 0, 0, 0, 4308, 4310, 7, 47, 0, 0, 4309, 4311, 3, 304, 152, 0, 4310, 4309, 1, 0, 0, 0, 4311, 4312, 1, 0, 0, 0, 4312, 4310, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4315, 1, 0, 0, 0, 4314, 4308, 1, 0, 0, 0, 4314, 4315, 1, 0, 0, 0, 4315, 4322, 1, 0, 0, 0, 4316, 4318, 5, 102, 0, 0, 4317, 4319, 3, 306, 153, 0, 4318, 4317, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4323, 1, 0, 0, 0, 4322, 4316, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 4325, 1, 0, 0, 0, 4324, 4288, 1, 0, 0, 0, 4324, 4297, 1, 0, 0, 0, 4324, 4300, 1, 0, 0, 0, 4325, 303, 1, 0, 0, 0, 4326, 4327, 5, 174, 0, 0, 4327, 4328, 5, 20, 0, 0, 4328, 4339, 5, 882, 0, 0, 4329, 4331, 5, 123, 0, 0, 4330, 4329, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4333, 5, 56, 0, 0, 4333, 4334, 5, 20, 0, 0, 4334, 4339, 5, 882, 0, 0, 4335, 4336, 5, 58, 0, 0, 4336, 4337, 5, 20, 0, 0, 4337, 4339, 5, 882, 0, 0, 4338, 4326, 1, 0, 0, 0, 4338, 4330, 1, 0, 0, 0, 4338, 4335, 1, 0, 0, 0, 4339, 305, 1, 0, 0, 0, 4340, 4341, 5, 171, 0, 0, 4341, 4342, 5, 20, 0, 0, 4342, 4347, 5, 882, 0, 0, 4343, 4344, 5, 174, 0, 0, 4344, 4345, 5, 20, 0, 0, 4345, 4347, 5, 882, 0, 0, 4346, 4340, 1, 0, 0, 0, 4346, 4343, 1, 0, 0, 0, 4347, 307, 1, 0, 0, 0, 4348, 4349, 5, 68, 0, 0, 4349, 4351, 3, 262, 131, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 4354, 1, 0, 0, 0, 4352, 4353, 5, 192, 0, 0, 4353, 4355, 3, 804, 402, 0, 4354, 4352, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 309, 1, 0, 0, 0, 4356, 4357, 5, 74, 0, 0, 4357, 4358, 5, 20, 0, 0, 4358, 4363, 3, 316, 158, 0, 4359, 4360, 5, 868, 0, 0, 4360, 4362, 3, 316, 158, 0, 4361, 4359, 1, 0, 0, 0, 4362, 4365, 1, 0, 0, 0, 4363, 4361, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 4368, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4366, 4367, 5, 194, 0, 0, 4367, 4369, 5, 584, 0, 0, 4368, 4366, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 311, 1, 0, 0, 0, 4370, 4371, 5, 75, 0, 0, 4371, 4372, 3, 804, 402, 0, 4372, 313, 1, 0, 0, 0, 4373, 4374, 5, 689, 0, 0, 4374, 4375, 3, 782, 391, 0, 4375, 4376, 5, 13, 0, 0, 4376, 4377, 5, 866, 0, 0, 4377, 4378, 3, 780, 390, 0, 4378, 4388, 5, 867, 0, 0, 4379, 4380, 5, 868, 0, 0, 4380, 4381, 3, 782, 391, 0, 4381, 4382, 5, 13, 0, 0, 4382, 4383, 5, 866, 0, 0, 4383, 4384, 3, 780, 390, 0, 4384, 4385, 5, 867, 0, 0, 4385, 4387, 1, 0, 0, 0, 4386, 4379, 1, 0, 0, 0, 4387, 4390, 1, 0, 0, 0, 4388, 4386, 1, 0, 0, 0, 4388, 4389, 1, 0, 0, 0, 4389, 315, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4391, 4393, 3, 804, 402, 0, 4392, 4394, 7, 55, 0, 0, 4393, 4392, 1, 0, 0, 0, 4393, 4394, 1, 0, 0, 0, 4394, 317, 1, 0, 0, 0, 4395, 4406, 5, 100, 0, 0, 4396, 4397, 3, 320, 160, 0, 4397, 4398, 5, 868, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4396, 1, 0, 0, 0, 4399, 4400, 1, 0, 0, 0, 4400, 4401, 1, 0, 0, 0, 4401, 4407, 3, 320, 160, 0, 4402, 4403, 3, 320, 160, 0, 4403, 4404, 5, 509, 0, 0, 4404, 4405, 3, 320, 160, 0, 4405, 4407, 1, 0, 0, 0, 4406, 4399, 1, 0, 0, 0, 4406, 4402, 1, 0, 0, 0, 4407, 319, 1, 0, 0, 0, 4408, 4412, 3, 712, 356, 0, 4409, 4412, 3, 686, 343, 0, 4410, 4412, 3, 708, 354, 0, 4411, 4408, 1, 0, 0, 0, 4411, 4409, 1, 0, 0, 0, 4411, 4410, 1, 0, 0, 0, 4412, 321, 1, 0, 0, 0, 4413, 4414, 5, 640, 0, 0, 4414, 4423, 5, 664, 0, 0, 4415, 4420, 3, 344, 172, 0, 4416, 4417, 5, 868, 0, 0, 4417, 4419, 3, 344, 172, 0, 4418, 4416, 1, 0, 0, 0, 4419, 4422, 1, 0, 0, 0, 4420, 4418, 1, 0, 0, 0, 4420, 4421, 1, 0, 0, 0, 4421, 4424, 1, 0, 0, 0, 4422, 4420, 1, 0, 0, 0, 4423, 4415, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 323, 1, 0, 0, 0, 4425, 4427, 5, 317, 0, 0, 4426, 4428, 5, 691, 0, 0, 4427, 4426, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 325, 1, 0, 0, 0, 4429, 4431, 5, 341, 0, 0, 4430, 4432, 5, 691, 0, 0, 4431, 4430, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 4438, 1, 0, 0, 0, 4433, 4435, 5, 11, 0, 0, 4434, 4436, 5, 502, 0, 0, 4435, 4434, 1, 0, 0, 0, 4435, 4436, 1, 0, 0, 0, 4436, 4437, 1, 0, 0, 0, 4437, 4439, 5, 326, 0, 0, 4438, 4433, 1, 0, 0, 0, 4438, 4439, 1, 0, 0, 0, 4439, 4444, 1, 0, 0, 0, 4440, 4442, 5, 502, 0, 0, 4441, 4440, 1, 0, 0, 0, 4441, 4442, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 4445, 5, 140, 0, 0, 4444, 4441, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 327, 1, 0, 0, 0, 4446, 4448, 5, 583, 0, 0, 4447, 4449, 5, 691, 0, 0, 4448, 4447, 1, 0, 0, 0, 4448, 4449, 1, 0, 0, 0, 4449, 4455, 1, 0, 0, 0, 4450, 4452, 5, 11, 0, 0, 4451, 4453, 5, 502, 0, 0, 4452, 4451, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 4454, 1, 0, 0, 0, 4454, 4456, 5, 326, 0, 0, 4455, 4450, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 4461, 1, 0, 0, 0, 4457, 4459, 5, 502, 0, 0, 4458, 4457, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 4460, 1, 0, 0, 0, 4460, 4462, 5, 140, 0, 0, 4461, 4458, 1, 0, 0, 0, 4461, 4462, 1, 0, 0, 0, 4462, 329, 1, 0, 0, 0, 4463, 4464, 5, 589, 0, 0, 4464, 4465, 3, 706, 353, 0, 4465, 331, 1, 0, 0, 0, 4466, 4468, 5, 583, 0, 0, 4467, 4469, 5, 691, 0, 0, 4468, 4467, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4472, 5, 176, 0, 0, 4471, 4473, 5, 589, 0, 0, 4472, 4471, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 4475, 3, 706, 353, 0, 4475, 333, 1, 0, 0, 0, 4476, 4477, 5, 140, 0, 0, 4477, 4478, 5, 589, 0, 0, 4478, 4479, 3, 706, 353, 0, 4479, 335, 1, 0, 0, 0, 4480, 4481, 5, 104, 0, 0, 4481, 4482, 7, 61, 0, 0, 4482, 4487, 3, 346, 173, 0, 4483, 4484, 5, 868, 0, 0, 4484, 4486, 3, 346, 173, 0, 4485, 4483, 1, 0, 0, 0, 4486, 4489, 1, 0, 0, 0, 4487, 4485, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 337, 1, 0, 0, 0, 4489, 4487, 1, 0, 0, 0, 4490, 4491, 5, 183, 0, 0, 4491, 4492, 5, 752, 0, 0, 4492, 339, 1, 0, 0, 0, 4493, 4494, 5, 155, 0, 0, 4494, 4495, 5, 313, 0, 0, 4495, 4496, 5, 857, 0, 0, 4496, 4497, 7, 26, 0, 0, 4497, 341, 1, 0, 0, 0, 4498, 4500, 5, 155, 0, 0, 4499, 4501, 7, 62, 0, 0, 4500, 4499, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 4503, 5, 664, 0, 0, 4503, 4508, 3, 350, 175, 0, 4504, 4505, 5, 868, 0, 0, 4505, 4507, 3, 350, 175, 0, 4506, 4504, 1, 0, 0, 0, 4507, 4510, 1, 0, 0, 0, 4508, 4506, 1, 0, 0, 0, 4508, 4509, 1, 0, 0, 0, 4509, 343, 1, 0, 0, 0, 4510, 4508, 1, 0, 0, 0, 4511, 4512, 5, 194, 0, 0, 4512, 4513, 5, 350, 0, 0, 4513, 4519, 5, 600, 0, 0, 4514, 4515, 5, 135, 0, 0, 4515, 4519, 5, 195, 0, 0, 4516, 4517, 5, 135, 0, 0, 4517, 4519, 5, 515, 0, 0, 4518, 4511, 1, 0, 0, 0, 4518, 4514, 1, 0, 0, 0, 4518, 4516, 1, 0, 0, 0, 4519, 345, 1, 0, 0, 0, 4520, 4525, 3, 652, 326, 0, 4521, 4523, 5, 13, 0, 0, 4522, 4521, 1, 0, 0, 0, 4522, 4523, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 4526, 3, 706, 353, 0, 4525, 4522, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4527, 1, 0, 0, 0, 4527, 4528, 3, 348, 174, 0, 4528, 347, 1, 0, 0, 0, 4529, 4531, 5, 135, 0, 0, 4530, 4532, 5, 450, 0, 0, 4531, 4530, 1, 0, 0, 0, 4531, 4532, 1, 0, 0, 0, 4532, 4538, 1, 0, 0, 0, 4533, 4535, 5, 107, 0, 0, 4534, 4533, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4538, 5, 195, 0, 0, 4537, 4529, 1, 0, 0, 0, 4537, 4534, 1, 0, 0, 0, 4538, 349, 1, 0, 0, 0, 4539, 4540, 5, 440, 0, 0, 4540, 4541, 5, 448, 0, 0, 4541, 4547, 3, 352, 176, 0, 4542, 4543, 5, 135, 0, 0, 4543, 4547, 5, 195, 0, 0, 4544, 4545, 5, 135, 0, 0, 4545, 4547, 5, 515, 0, 0, 4546, 4539, 1, 0, 0, 0, 4546, 4542, 1, 0, 0, 0, 4546, 4544, 1, 0, 0, 0, 4547, 351, 1, 0, 0, 0, 4548, 4549, 5, 809, 0, 0, 4549, 4556, 5, 135, 0, 0, 4550, 4551, 5, 135, 0, 0, 4551, 4556, 5, 810, 0, 0, 4552, 4553, 5, 135, 0, 0, 4553, 4556, 5, 811, 0, 0, 4554, 4556, 5, 812, 0, 0, 4555, 4548, 1, 0, 0, 0, 4555, 4550, 1, 0, 0, 0, 4555, 4552, 1, 0, 0, 0, 4555, 4554, 1, 0, 0, 0, 4556, 353, 1, 0, 0, 0, 4557, 4558, 5, 25, 0, 0, 4558, 4559, 5, 453, 0, 0, 4559, 4560, 5, 176, 0, 0, 4560, 4565, 3, 370, 185, 0, 4561, 4562, 5, 868, 0, 0, 4562, 4564, 3, 370, 185, 0, 4563, 4561, 1, 0, 0, 0, 4564, 4567, 1, 0, 0, 0, 4565, 4563, 1, 0, 0, 0, 4565, 4566, 1, 0, 0, 0, 4566, 4569, 1, 0, 0, 0, 4567, 4565, 1, 0, 0, 0, 4568, 4570, 3, 390, 195, 0, 4569, 4568, 1, 0, 0, 0, 4569, 4570, 1, 0, 0, 0, 4570, 355, 1, 0, 0, 0, 4571, 4572, 5, 25, 0, 0, 4572, 4573, 5, 572, 0, 0, 4573, 4574, 5, 400, 0, 0, 4574, 4579, 3, 392, 196, 0, 4575, 4576, 5, 868, 0, 0, 4576, 4578, 3, 392, 196, 0, 4577, 4575, 1, 0, 0, 0, 4578, 4581, 1, 0, 0, 0, 4579, 4577, 1, 0, 0, 0, 4579, 4580, 1, 0, 0, 0, 4580, 4583, 1, 0, 0, 0, 4581, 4579, 1, 0, 0, 0, 4582, 4584, 3, 390, 195, 0, 4583, 4582, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 357, 1, 0, 0, 0, 4585, 4586, 5, 25, 0, 0, 4586, 4587, 5, 572, 0, 0, 4587, 4588, 5, 605, 0, 0, 4588, 4589, 5, 176, 0, 0, 4589, 4594, 3, 380, 190, 0, 4590, 4591, 5, 868, 0, 0, 4591, 4593, 3, 380, 190, 0, 4592, 4590, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4594, 4595, 1, 0, 0, 0, 4595, 4598, 1, 0, 0, 0, 4596, 4594, 1, 0, 0, 0, 4597, 4599, 3, 390, 195, 0, 4598, 4597, 1, 0, 0, 0, 4598, 4599, 1, 0, 0, 0, 4599, 359, 1, 0, 0, 0, 4600, 4601, 5, 133, 0, 0, 4601, 4602, 7, 63, 0, 0, 4602, 4607, 5, 452, 0, 0, 4603, 4604, 5, 176, 0, 0, 4604, 4608, 5, 882, 0, 0, 4605, 4606, 5, 16, 0, 0, 4606, 4608, 5, 882, 0, 0, 4607, 4603, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4608, 361, 1, 0, 0, 0, 4609, 4610, 5, 640, 0, 0, 4610, 4619, 7, 64, 0, 0, 4611, 4616, 3, 396, 198, 0, 4612, 4613, 5, 868, 0, 0, 4613, 4615, 3, 396, 198, 0, 4614, 4612, 1, 0, 0, 0, 4615, 4618, 1, 0, 0, 0, 4616, 4614, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4620, 1, 0, 0, 0, 4618, 4616, 1, 0, 0, 0, 4619, 4611, 1, 0, 0, 0, 4619, 4620, 1, 0, 0, 0, 4620, 4623, 1, 0, 0, 0, 4621, 4622, 5, 676, 0, 0, 4622, 4624, 3, 398, 199, 0, 4623, 4621, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4628, 1, 0, 0, 0, 4625, 4627, 3, 400, 200, 0, 4626, 4625, 1, 0, 0, 0, 4627, 4630, 1, 0, 0, 0, 4628, 4626, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4632, 1, 0, 0, 0, 4630, 4628, 1, 0, 0, 0, 4631, 4633, 3, 390, 195, 0, 4632, 4631, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 363, 1, 0, 0, 0, 4634, 4635, 5, 646, 0, 0, 4635, 4644, 7, 64, 0, 0, 4636, 4641, 3, 396, 198, 0, 4637, 4638, 5, 868, 0, 0, 4638, 4640, 3, 396, 198, 0, 4639, 4637, 1, 0, 0, 0, 4640, 4643, 1, 0, 0, 0, 4641, 4639, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4644, 4636, 1, 0, 0, 0, 4644, 4645, 1, 0, 0, 0, 4645, 4647, 1, 0, 0, 0, 4646, 4648, 3, 390, 195, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 365, 1, 0, 0, 0, 4649, 4650, 5, 640, 0, 0, 4650, 4654, 5, 415, 0, 0, 4651, 4652, 5, 678, 0, 0, 4652, 4653, 5, 857, 0, 0, 4653, 4655, 5, 882, 0, 0, 4654, 4651, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4660, 1, 0, 0, 0, 4656, 4657, 5, 868, 0, 0, 4657, 4658, 5, 529, 0, 0, 4658, 4659, 5, 857, 0, 0, 4659, 4661, 5, 882, 0, 0, 4660, 4656, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 4666, 1, 0, 0, 0, 4662, 4663, 5, 868, 0, 0, 4663, 4664, 5, 363, 0, 0, 4664, 4665, 5, 857, 0, 0, 4665, 4667, 5, 882, 0, 0, 4666, 4662, 1, 0, 0, 0, 4666, 4667, 1, 0, 0, 0, 4667, 367, 1, 0, 0, 0, 4668, 4669, 5, 646, 0, 0, 4669, 4670, 5, 415, 0, 0, 4670, 369, 1, 0, 0, 0, 4671, 4672, 3, 372, 186, 0, 4672, 4673, 5, 857, 0, 0, 4673, 4674, 5, 882, 0, 0, 4674, 4699, 1, 0, 0, 0, 4675, 4676, 3, 374, 187, 0, 4676, 4677, 5, 857, 0, 0, 4677, 4678, 3, 712, 356, 0, 4678, 4699, 1, 0, 0, 0, 4679, 4680, 3, 376, 188, 0, 4680, 4681, 5, 857, 0, 0, 4681, 4682, 7, 26, 0, 0, 4682, 4699, 1, 0, 0, 0, 4683, 4699, 3, 378, 189, 0, 4684, 4685, 5, 424, 0, 0, 4685, 4686, 5, 857, 0, 0, 4686, 4695, 5, 866, 0, 0, 4687, 4692, 3, 706, 353, 0, 4688, 4689, 5, 868, 0, 0, 4689, 4691, 3, 706, 353, 0, 4690, 4688, 1, 0, 0, 0, 4691, 4694, 1, 0, 0, 0, 4692, 4690, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 4696, 1, 0, 0, 0, 4694, 4692, 1, 0, 0, 0, 4695, 4687, 1, 0, 0, 0, 4695, 4696, 1, 0, 0, 0, 4696, 4697, 1, 0, 0, 0, 4697, 4699, 5, 867, 0, 0, 4698, 4671, 1, 0, 0, 0, 4698, 4675, 1, 0, 0, 0, 4698, 4679, 1, 0, 0, 0, 4698, 4683, 1, 0, 0, 0, 4698, 4684, 1, 0, 0, 0, 4699, 371, 1, 0, 0, 0, 4700, 4701, 7, 65, 0, 0, 4701, 373, 1, 0, 0, 0, 4702, 4703, 7, 66, 0, 0, 4703, 375, 1, 0, 0, 0, 4704, 4705, 7, 67, 0, 0, 4705, 377, 1, 0, 0, 0, 4706, 4707, 5, 543, 0, 0, 4707, 4708, 5, 857, 0, 0, 4708, 4720, 7, 68, 0, 0, 4709, 4710, 5, 574, 0, 0, 4710, 4711, 5, 857, 0, 0, 4711, 4720, 7, 69, 0, 0, 4712, 4713, 5, 310, 0, 0, 4713, 4717, 5, 857, 0, 0, 4714, 4718, 5, 507, 0, 0, 4715, 4718, 5, 450, 0, 0, 4716, 4718, 3, 402, 201, 0, 4717, 4714, 1, 0, 0, 0, 4717, 4715, 1, 0, 0, 0, 4717, 4716, 1, 0, 0, 0, 4718, 4720, 1, 0, 0, 0, 4719, 4706, 1, 0, 0, 0, 4719, 4709, 1, 0, 0, 0, 4719, 4712, 1, 0, 0, 0, 4720, 379, 1, 0, 0, 0, 4721, 4722, 3, 382, 191, 0, 4722, 4723, 5, 857, 0, 0, 4723, 4724, 5, 882, 0, 0, 4724, 4749, 1, 0, 0, 0, 4725, 4726, 3, 384, 192, 0, 4726, 4727, 5, 857, 0, 0, 4727, 4728, 3, 712, 356, 0, 4728, 4749, 1, 0, 0, 0, 4729, 4730, 3, 386, 193, 0, 4730, 4731, 5, 857, 0, 0, 4731, 4732, 7, 26, 0, 0, 4732, 4749, 1, 0, 0, 0, 4733, 4749, 3, 388, 194, 0, 4734, 4735, 5, 424, 0, 0, 4735, 4736, 5, 857, 0, 0, 4736, 4745, 5, 866, 0, 0, 4737, 4742, 3, 706, 353, 0, 4738, 4739, 5, 868, 0, 0, 4739, 4741, 3, 706, 353, 0, 4740, 4738, 1, 0, 0, 0, 4741, 4744, 1, 0, 0, 0, 4742, 4740, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4746, 1, 0, 0, 0, 4744, 4742, 1, 0, 0, 0, 4745, 4737, 1, 0, 0, 0, 4745, 4746, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4749, 5, 867, 0, 0, 4748, 4721, 1, 0, 0, 0, 4748, 4725, 1, 0, 0, 0, 4748, 4729, 1, 0, 0, 0, 4748, 4733, 1, 0, 0, 0, 4748, 4734, 1, 0, 0, 0, 4749, 381, 1, 0, 0, 0, 4750, 4751, 7, 70, 0, 0, 4751, 383, 1, 0, 0, 0, 4752, 4753, 7, 71, 0, 0, 4753, 385, 1, 0, 0, 0, 4754, 4755, 7, 72, 0, 0, 4755, 387, 1, 0, 0, 0, 4756, 4757, 5, 543, 0, 0, 4757, 4758, 5, 857, 0, 0, 4758, 4770, 7, 68, 0, 0, 4759, 4760, 5, 574, 0, 0, 4760, 4761, 5, 857, 0, 0, 4761, 4770, 7, 73, 0, 0, 4762, 4763, 5, 310, 0, 0, 4763, 4767, 5, 857, 0, 0, 4764, 4768, 5, 507, 0, 0, 4765, 4768, 5, 450, 0, 0, 4766, 4768, 3, 402, 201, 0, 4767, 4764, 1, 0, 0, 0, 4767, 4765, 1, 0, 0, 0, 4767, 4766, 1, 0, 0, 0, 4768, 4770, 1, 0, 0, 0, 4769, 4756, 1, 0, 0, 0, 4769, 4759, 1, 0, 0, 0, 4769, 4762, 1, 0, 0, 0, 4770, 389, 1, 0, 0, 0, 4771, 4772, 5, 65, 0, 0, 4772, 4773, 5, 328, 0, 0, 4773, 4774, 5, 882, 0, 0, 4774, 391, 1, 0, 0, 0, 4775, 4776, 5, 565, 0, 0, 4776, 4777, 5, 857, 0, 0, 4777, 4778, 5, 866, 0, 0, 4778, 4783, 3, 628, 314, 0, 4779, 4780, 5, 868, 0, 0, 4780, 4782, 3, 628, 314, 0, 4781, 4779, 1, 0, 0, 0, 4782, 4785, 1, 0, 0, 0, 4783, 4781, 1, 0, 0, 0, 4783, 4784, 1, 0, 0, 0, 4784, 4786, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4786, 4787, 5, 867, 0, 0, 4787, 4839, 1, 0, 0, 0, 4788, 4789, 5, 567, 0, 0, 4789, 4790, 5, 857, 0, 0, 4790, 4791, 5, 866, 0, 0, 4791, 4796, 3, 628, 314, 0, 4792, 4793, 5, 868, 0, 0, 4793, 4795, 3, 628, 314, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4798, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4799, 1, 0, 0, 0, 4798, 4796, 1, 0, 0, 0, 4799, 4800, 5, 867, 0, 0, 4800, 4839, 1, 0, 0, 0, 4801, 4802, 5, 566, 0, 0, 4802, 4803, 5, 857, 0, 0, 4803, 4804, 5, 866, 0, 0, 4804, 4805, 3, 650, 325, 0, 4805, 4806, 5, 867, 0, 0, 4806, 4839, 1, 0, 0, 0, 4807, 4808, 5, 568, 0, 0, 4808, 4809, 5, 857, 0, 0, 4809, 4810, 5, 866, 0, 0, 4810, 4811, 3, 650, 325, 0, 4811, 4812, 5, 867, 0, 0, 4812, 4839, 1, 0, 0, 0, 4813, 4814, 5, 570, 0, 0, 4814, 4815, 5, 857, 0, 0, 4815, 4816, 5, 866, 0, 0, 4816, 4817, 3, 750, 375, 0, 4817, 4818, 5, 867, 0, 0, 4818, 4839, 1, 0, 0, 0, 4819, 4820, 5, 571, 0, 0, 4820, 4821, 5, 857, 0, 0, 4821, 4822, 5, 866, 0, 0, 4822, 4823, 3, 750, 375, 0, 4823, 4824, 5, 867, 0, 0, 4824, 4839, 1, 0, 0, 0, 4825, 4826, 5, 569, 0, 0, 4826, 4827, 5, 857, 0, 0, 4827, 4828, 5, 866, 0, 0, 4828, 4833, 3, 394, 197, 0, 4829, 4830, 5, 868, 0, 0, 4830, 4832, 3, 394, 197, 0, 4831, 4829, 1, 0, 0, 0, 4832, 4835, 1, 0, 0, 0, 4833, 4831, 1, 0, 0, 0, 4833, 4834, 1, 0, 0, 0, 4834, 4836, 1, 0, 0, 0, 4835, 4833, 1, 0, 0, 0, 4836, 4837, 5, 867, 0, 0, 4837, 4839, 1, 0, 0, 0, 4838, 4775, 1, 0, 0, 0, 4838, 4788, 1, 0, 0, 0, 4838, 4801, 1, 0, 0, 0, 4838, 4807, 1, 0, 0, 0, 4838, 4813, 1, 0, 0, 0, 4838, 4819, 1, 0, 0, 0, 4838, 4825, 1, 0, 0, 0, 4839, 393, 1, 0, 0, 0, 4840, 4841, 5, 866, 0, 0, 4841, 4842, 3, 652, 326, 0, 4842, 4843, 5, 868, 0, 0, 4843, 4844, 3, 652, 326, 0, 4844, 4845, 5, 867, 0, 0, 4845, 395, 1, 0, 0, 0, 4846, 4847, 7, 74, 0, 0, 4847, 397, 1, 0, 0, 0, 4848, 4849, 7, 75, 0, 0, 4849, 4850, 5, 857, 0, 0, 4850, 4874, 3, 402, 201, 0, 4851, 4852, 5, 460, 0, 0, 4852, 4853, 5, 857, 0, 0, 4853, 4854, 5, 882, 0, 0, 4854, 4855, 5, 868, 0, 0, 4855, 4856, 5, 461, 0, 0, 4856, 4857, 5, 857, 0, 0, 4857, 4874, 3, 712, 356, 0, 4858, 4859, 5, 611, 0, 0, 4859, 4860, 5, 857, 0, 0, 4860, 4861, 5, 882, 0, 0, 4861, 4862, 5, 868, 0, 0, 4862, 4863, 5, 612, 0, 0, 4863, 4864, 5, 857, 0, 0, 4864, 4874, 3, 712, 356, 0, 4865, 4866, 5, 557, 0, 0, 4866, 4867, 5, 857, 0, 0, 4867, 4868, 5, 882, 0, 0, 4868, 4869, 5, 868, 0, 0, 4869, 4870, 5, 558, 0, 0, 4870, 4871, 5, 857, 0, 0, 4871, 4874, 3, 712, 356, 0, 4872, 4874, 5, 634, 0, 0, 4873, 4848, 1, 0, 0, 0, 4873, 4851, 1, 0, 0, 0, 4873, 4858, 1, 0, 0, 0, 4873, 4865, 1, 0, 0, 0, 4873, 4872, 1, 0, 0, 0, 4874, 399, 1, 0, 0, 0, 4875, 4876, 5, 678, 0, 0, 4876, 4877, 5, 857, 0, 0, 4877, 4888, 5, 882, 0, 0, 4878, 4879, 5, 529, 0, 0, 4879, 4880, 5, 857, 0, 0, 4880, 4888, 5, 882, 0, 0, 4881, 4882, 5, 363, 0, 0, 4882, 4883, 5, 857, 0, 0, 4883, 4888, 5, 882, 0, 0, 4884, 4885, 5, 535, 0, 0, 4885, 4886, 5, 857, 0, 0, 4886, 4888, 5, 882, 0, 0, 4887, 4875, 1, 0, 0, 0, 4887, 4878, 1, 0, 0, 0, 4887, 4881, 1, 0, 0, 0, 4887, 4884, 1, 0, 0, 0, 4888, 401, 1, 0, 0, 0, 4889, 4894, 3, 696, 348, 0, 4890, 4891, 5, 868, 0, 0, 4891, 4893, 3, 696, 348, 0, 4892, 4890, 1, 0, 0, 0, 4893, 4896, 1, 0, 0, 0, 4894, 4892, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4899, 1, 0, 0, 0, 4896, 4894, 1, 0, 0, 0, 4897, 4899, 5, 882, 0, 0, 4898, 4889, 1, 0, 0, 0, 4898, 4897, 1, 0, 0, 0, 4899, 403, 1, 0, 0, 0, 4900, 4901, 5, 694, 0, 0, 4901, 4902, 7, 76, 0, 0, 4902, 4904, 3, 698, 349, 0, 4903, 4905, 7, 77, 0, 0, 4904, 4903, 1, 0, 0, 0, 4904, 4905, 1, 0, 0, 0, 4905, 405, 1, 0, 0, 0, 4906, 4907, 5, 694, 0, 0, 4907, 4908, 5, 378, 0, 0, 4908, 4914, 3, 698, 349, 0, 4909, 4912, 5, 654, 0, 0, 4910, 4911, 5, 65, 0, 0, 4911, 4913, 5, 489, 0, 0, 4912, 4910, 1, 0, 0, 0, 4912, 4913, 1, 0, 0, 0, 4913, 4915, 1, 0, 0, 0, 4914, 4909, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 407, 1, 0, 0, 0, 4916, 4917, 5, 694, 0, 0, 4917, 4918, 5, 540, 0, 0, 4918, 4919, 3, 698, 349, 0, 4919, 409, 1, 0, 0, 0, 4920, 4921, 5, 694, 0, 0, 4921, 4922, 5, 341, 0, 0, 4922, 4925, 3, 698, 349, 0, 4923, 4924, 5, 513, 0, 0, 4924, 4926, 5, 533, 0, 0, 4925, 4923, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 411, 1, 0, 0, 0, 4927, 4928, 5, 694, 0, 0, 4928, 4929, 5, 583, 0, 0, 4929, 4930, 3, 698, 349, 0, 4930, 413, 1, 0, 0, 0, 4931, 4932, 5, 694, 0, 0, 4932, 4935, 5, 551, 0, 0, 4933, 4934, 5, 33, 0, 0, 4934, 4936, 3, 698, 349, 0, 4935, 4933, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 415, 1, 0, 0, 0, 4937, 4938, 5, 540, 0, 0, 4938, 4939, 3, 706, 353, 0, 4939, 4942, 5, 68, 0, 0, 4940, 4943, 5, 882, 0, 0, 4941, 4943, 5, 892, 0, 0, 4942, 4940, 1, 0, 0, 0, 4942, 4941, 1, 0, 0, 0, 4943, 417, 1, 0, 0, 0, 4944, 4945, 5, 717, 0, 0, 4945, 4948, 3, 706, 353, 0, 4946, 4947, 5, 188, 0, 0, 4947, 4949, 3, 752, 376, 0, 4948, 4946, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 419, 1, 0, 0, 0, 4950, 4951, 7, 78, 0, 0, 4951, 4952, 5, 540, 0, 0, 4952, 4953, 3, 706, 353, 0, 4953, 421, 1, 0, 0, 0, 4954, 4957, 3, 424, 212, 0, 4955, 4957, 3, 4, 2, 0, 4956, 4954, 1, 0, 0, 0, 4956, 4955, 1, 0, 0, 0, 4957, 423, 1, 0, 0, 0, 4958, 4959, 3, 706, 353, 0, 4959, 4960, 5, 878, 0, 0, 4960, 4962, 1, 0, 0, 0, 4961, 4958, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 4969, 5, 317, 0, 0, 4964, 4965, 3, 444, 222, 0, 4965, 4966, 5, 869, 0, 0, 4966, 4968, 1, 0, 0, 0, 4967, 4964, 1, 0, 0, 0, 4968, 4971, 1, 0, 0, 0, 4969, 4967, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4977, 1, 0, 0, 0, 4971, 4969, 1, 0, 0, 0, 4972, 4973, 3, 446, 223, 0, 4973, 4974, 5, 869, 0, 0, 4974, 4976, 1, 0, 0, 0, 4975, 4972, 1, 0, 0, 0, 4976, 4979, 1, 0, 0, 0, 4977, 4975, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4985, 1, 0, 0, 0, 4979, 4977, 1, 0, 0, 0, 4980, 4981, 3, 448, 224, 0, 4981, 4982, 5, 869, 0, 0, 4982, 4984, 1, 0, 0, 0, 4983, 4980, 1, 0, 0, 0, 4984, 4987, 1, 0, 0, 0, 4985, 4983, 1, 0, 0, 0, 4985, 4986, 1, 0, 0, 0, 4986, 4993, 1, 0, 0, 0, 4987, 4985, 1, 0, 0, 0, 4988, 4989, 3, 450, 225, 0, 4989, 4990, 5, 869, 0, 0, 4990, 4992, 1, 0, 0, 0, 4991, 4988, 1, 0, 0, 0, 4992, 4995, 1, 0, 0, 0, 4993, 4991, 1, 0, 0, 0, 4993, 4994, 1, 0, 0, 0, 4994, 4999, 1, 0, 0, 0, 4995, 4993, 1, 0, 0, 0, 4996, 4998, 3, 454, 227, 0, 4997, 4996, 1, 0, 0, 0, 4998, 5001, 1, 0, 0, 0, 4999, 4997, 1, 0, 0, 0, 4999, 5000, 1, 0, 0, 0, 5000, 5002, 1, 0, 0, 0, 5001, 4999, 1, 0, 0, 0, 5002, 5004, 5, 378, 0, 0, 5003, 5005, 3, 706, 353, 0, 5004, 5003, 1, 0, 0, 0, 5004, 5005, 1, 0, 0, 0, 5005, 425, 1, 0, 0, 0, 5006, 5009, 5, 23, 0, 0, 5007, 5010, 3, 706, 353, 0, 5008, 5010, 3, 804, 402, 0, 5009, 5007, 1, 0, 0, 0, 5009, 5008, 1, 0, 0, 0, 5009, 5010, 1, 0, 0, 0, 5010, 5012, 1, 0, 0, 0, 5011, 5013, 3, 456, 228, 0, 5012, 5011, 1, 0, 0, 0, 5013, 5014, 1, 0, 0, 0, 5014, 5012, 1, 0, 0, 0, 5014, 5015, 1, 0, 0, 0, 5015, 5022, 1, 0, 0, 0, 5016, 5018, 5, 53, 0, 0, 5017, 5019, 3, 454, 227, 0, 5018, 5017, 1, 0, 0, 0, 5019, 5020, 1, 0, 0, 0, 5020, 5018, 1, 0, 0, 0, 5020, 5021, 1, 0, 0, 0, 5021, 5023, 1, 0, 0, 0, 5022, 5016, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5024, 1, 0, 0, 0, 5024, 5025, 5, 378, 0, 0, 5025, 5026, 5, 23, 0, 0, 5026, 427, 1, 0, 0, 0, 5027, 5028, 5, 78, 0, 0, 5028, 5029, 3, 804, 402, 0, 5029, 5031, 5, 175, 0, 0, 5030, 5032, 3, 454, 227, 0, 5031, 5030, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5031, 1, 0, 0, 0, 5033, 5034, 1, 0, 0, 0, 5034, 5038, 1, 0, 0, 0, 5035, 5037, 3, 458, 229, 0, 5036, 5035, 1, 0, 0, 0, 5037, 5040, 1, 0, 0, 0, 5038, 5036, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5047, 1, 0, 0, 0, 5040, 5038, 1, 0, 0, 0, 5041, 5043, 5, 53, 0, 0, 5042, 5044, 3, 454, 227, 0, 5043, 5042, 1, 0, 0, 0, 5044, 5045, 1, 0, 0, 0, 5045, 5043, 1, 0, 0, 0, 5045, 5046, 1, 0, 0, 0, 5046, 5048, 1, 0, 0, 0, 5047, 5041, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5049, 1, 0, 0, 0, 5049, 5050, 5, 378, 0, 0, 5050, 5051, 5, 78, 0, 0, 5051, 429, 1, 0, 0, 0, 5052, 5053, 5, 90, 0, 0, 5053, 5054, 3, 706, 353, 0, 5054, 431, 1, 0, 0, 0, 5055, 5056, 5, 97, 0, 0, 5056, 5057, 3, 706, 353, 0, 5057, 433, 1, 0, 0, 0, 5058, 5059, 3, 706, 353, 0, 5059, 5060, 5, 878, 0, 0, 5060, 5062, 1, 0, 0, 0, 5061, 5058, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5065, 5, 106, 0, 0, 5064, 5066, 3, 454, 227, 0, 5065, 5064, 1, 0, 0, 0, 5066, 5067, 1, 0, 0, 0, 5067, 5065, 1, 0, 0, 0, 5067, 5068, 1, 0, 0, 0, 5068, 5069, 1, 0, 0, 0, 5069, 5070, 5, 378, 0, 0, 5070, 5072, 5, 106, 0, 0, 5071, 5073, 3, 706, 353, 0, 5072, 5071, 1, 0, 0, 0, 5072, 5073, 1, 0, 0, 0, 5073, 435, 1, 0, 0, 0, 5074, 5075, 3, 706, 353, 0, 5075, 5076, 5, 878, 0, 0, 5076, 5078, 1, 0, 0, 0, 5077, 5074, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 5, 142, 0, 0, 5080, 5082, 3, 454, 227, 0, 5081, 5080, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5081, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 5085, 1, 0, 0, 0, 5085, 5086, 5, 676, 0, 0, 5086, 5087, 3, 804, 402, 0, 5087, 5088, 5, 378, 0, 0, 5088, 5090, 5, 142, 0, 0, 5089, 5091, 3, 706, 353, 0, 5090, 5089, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 437, 1, 0, 0, 0, 5092, 5093, 5, 148, 0, 0, 5093, 5094, 3, 804, 402, 0, 5094, 439, 1, 0, 0, 0, 5095, 5096, 3, 706, 353, 0, 5096, 5097, 5, 878, 0, 0, 5097, 5099, 1, 0, 0, 0, 5098, 5095, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5101, 5, 193, 0, 0, 5101, 5102, 3, 804, 402, 0, 5102, 5104, 5, 371, 0, 0, 5103, 5105, 3, 454, 227, 0, 5104, 5103, 1, 0, 0, 0, 5105, 5106, 1, 0, 0, 0, 5106, 5104, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 5108, 1, 0, 0, 0, 5108, 5109, 5, 378, 0, 0, 5109, 5111, 5, 193, 0, 0, 5110, 5112, 3, 706, 353, 0, 5111, 5110, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 441, 1, 0, 0, 0, 5113, 5114, 5, 334, 0, 0, 5114, 5129, 3, 706, 353, 0, 5115, 5120, 5, 64, 0, 0, 5116, 5118, 5, 501, 0, 0, 5117, 5116, 1, 0, 0, 0, 5117, 5118, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5121, 5, 68, 0, 0, 5120, 5117, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5123, 3, 706, 353, 0, 5123, 5124, 5, 88, 0, 0, 5124, 5125, 3, 704, 352, 0, 5125, 5129, 1, 0, 0, 0, 5126, 5127, 5, 516, 0, 0, 5127, 5129, 3, 706, 353, 0, 5128, 5113, 1, 0, 0, 0, 5128, 5115, 1, 0, 0, 0, 5128, 5126, 1, 0, 0, 0, 5129, 443, 1, 0, 0, 0, 5130, 5131, 5, 41, 0, 0, 5131, 5132, 3, 704, 352, 0, 5132, 5135, 3, 726, 363, 0, 5133, 5134, 5, 42, 0, 0, 5134, 5136, 3, 804, 402, 0, 5135, 5133, 1, 0, 0, 0, 5135, 5136, 1, 0, 0, 0, 5136, 445, 1, 0, 0, 0, 5137, 5138, 5, 41, 0, 0, 5138, 5139, 3, 706, 353, 0, 5139, 5140, 5, 30, 0, 0, 5140, 5147, 5, 65, 0, 0, 5141, 5148, 3, 712, 356, 0, 5142, 5144, 5, 164, 0, 0, 5143, 5145, 5, 682, 0, 0, 5144, 5143, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 5146, 1, 0, 0, 0, 5146, 5148, 5, 882, 0, 0, 5147, 5141, 1, 0, 0, 0, 5147, 5142, 1, 0, 0, 0, 5148, 447, 1, 0, 0, 0, 5149, 5150, 5, 41, 0, 0, 5150, 5151, 3, 706, 353, 0, 5151, 5152, 5, 38, 0, 0, 5152, 5153, 5, 65, 0, 0, 5153, 5154, 3, 210, 105, 0, 5154, 449, 1, 0, 0, 0, 5155, 5156, 5, 41, 0, 0, 5156, 5157, 7, 79, 0, 0, 5157, 5158, 5, 417, 0, 0, 5158, 5159, 5, 65, 0, 0, 5159, 5164, 3, 452, 226, 0, 5160, 5161, 5, 868, 0, 0, 5161, 5163, 3, 452, 226, 0, 5162, 5160, 1, 0, 0, 0, 5163, 5166, 1, 0, 0, 0, 5164, 5162, 1, 0, 0, 0, 5164, 5165, 1, 0, 0, 0, 5165, 5167, 1, 0, 0, 0, 5166, 5164, 1, 0, 0, 0, 5167, 5168, 3, 422, 211, 0, 5168, 451, 1, 0, 0, 0, 5169, 5181, 3, 712, 356, 0, 5170, 5172, 5, 164, 0, 0, 5171, 5173, 5, 682, 0, 0, 5172, 5171, 1, 0, 0, 0, 5172, 5173, 1, 0, 0, 0, 5173, 5174, 1, 0, 0, 0, 5174, 5181, 5, 882, 0, 0, 5175, 5181, 3, 706, 353, 0, 5176, 5181, 5, 165, 0, 0, 5177, 5178, 5, 114, 0, 0, 5178, 5181, 5, 407, 0, 0, 5179, 5181, 5, 163, 0, 0, 5180, 5169, 1, 0, 0, 0, 5180, 5170, 1, 0, 0, 0, 5180, 5175, 1, 0, 0, 0, 5180, 5176, 1, 0, 0, 0, 5180, 5177, 1, 0, 0, 0, 5180, 5179, 1, 0, 0, 0, 5181, 453, 1, 0, 0, 0, 5182, 5185, 3, 18, 9, 0, 5183, 5185, 3, 4, 2, 0, 5184, 5182, 1, 0, 0, 0, 5184, 5183, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5187, 5, 869, 0, 0, 5187, 455, 1, 0, 0, 0, 5188, 5191, 5, 191, 0, 0, 5189, 5192, 3, 724, 362, 0, 5190, 5192, 3, 804, 402, 0, 5191, 5189, 1, 0, 0, 0, 5191, 5190, 1, 0, 0, 0, 5192, 5193, 1, 0, 0, 0, 5193, 5195, 5, 175, 0, 0, 5194, 5196, 3, 454, 227, 0, 5195, 5194, 1, 0, 0, 0, 5196, 5197, 1, 0, 0, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5198, 1, 0, 0, 0, 5198, 457, 1, 0, 0, 0, 5199, 5200, 5, 54, 0, 0, 5200, 5201, 3, 804, 402, 0, 5201, 5203, 5, 175, 0, 0, 5202, 5204, 3, 454, 227, 0, 5203, 5202, 1, 0, 0, 0, 5204, 5205, 1, 0, 0, 0, 5205, 5203, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 459, 1, 0, 0, 0, 5207, 5208, 5, 8, 0, 0, 5208, 5210, 5, 678, 0, 0, 5209, 5211, 3, 758, 379, 0, 5210, 5209, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 5268, 1, 0, 0, 0, 5212, 5217, 3, 492, 246, 0, 5213, 5214, 5, 868, 0, 0, 5214, 5216, 3, 492, 246, 0, 5215, 5213, 1, 0, 0, 0, 5216, 5219, 1, 0, 0, 0, 5217, 5215, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5269, 1, 0, 0, 0, 5219, 5217, 1, 0, 0, 0, 5220, 5225, 3, 494, 247, 0, 5221, 5222, 5, 868, 0, 0, 5222, 5224, 3, 494, 247, 0, 5223, 5221, 1, 0, 0, 0, 5224, 5227, 1, 0, 0, 0, 5225, 5223, 1, 0, 0, 0, 5225, 5226, 1, 0, 0, 0, 5226, 5242, 1, 0, 0, 0, 5227, 5225, 1, 0, 0, 0, 5228, 5240, 5, 144, 0, 0, 5229, 5241, 5, 505, 0, 0, 5230, 5237, 3, 506, 253, 0, 5231, 5233, 5, 11, 0, 0, 5232, 5231, 1, 0, 0, 0, 5232, 5233, 1, 0, 0, 0, 5233, 5234, 1, 0, 0, 0, 5234, 5236, 3, 506, 253, 0, 5235, 5232, 1, 0, 0, 0, 5236, 5239, 1, 0, 0, 0, 5237, 5235, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 5241, 1, 0, 0, 0, 5239, 5237, 1, 0, 0, 0, 5240, 5229, 1, 0, 0, 0, 5240, 5230, 1, 0, 0, 0, 5241, 5243, 1, 0, 0, 0, 5242, 5228, 1, 0, 0, 0, 5242, 5243, 1, 0, 0, 0, 5243, 5250, 1, 0, 0, 0, 5244, 5246, 5, 194, 0, 0, 5245, 5247, 3, 508, 254, 0, 5246, 5245, 1, 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5246, 1, 0, 0, 0, 5248, 5249, 1, 0, 0, 0, 5249, 5251, 1, 0, 0, 0, 5250, 5244, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5256, 1, 0, 0, 0, 5252, 5255, 3, 510, 255, 0, 5253, 5255, 3, 512, 256, 0, 5254, 5252, 1, 0, 0, 0, 5254, 5253, 1, 0, 0, 0, 5255, 5258, 1, 0, 0, 0, 5256, 5254, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, 0, 5257, 5261, 1, 0, 0, 0, 5258, 5256, 1, 0, 0, 0, 5259, 5260, 7, 80, 0, 0, 5260, 5262, 5, 882, 0, 0, 5261, 5259, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5269, 1, 0, 0, 0, 5263, 5264, 3, 656, 328, 0, 5264, 5265, 5, 42, 0, 0, 5265, 5266, 5, 582, 0, 0, 5266, 5267, 3, 468, 234, 0, 5267, 5269, 1, 0, 0, 0, 5268, 5212, 1, 0, 0, 0, 5268, 5220, 1, 0, 0, 0, 5268, 5263, 1, 0, 0, 0, 5269, 461, 1, 0, 0, 0, 5270, 5271, 5, 34, 0, 0, 5271, 5273, 5, 678, 0, 0, 5272, 5274, 3, 760, 380, 0, 5273, 5272, 1, 0, 0, 0, 5273, 5274, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5277, 3, 684, 342, 0, 5276, 5278, 3, 496, 248, 0, 5277, 5276, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5286, 1, 0, 0, 0, 5279, 5280, 5, 868, 0, 0, 5280, 5282, 3, 684, 342, 0, 5281, 5283, 3, 496, 248, 0, 5282, 5281, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 5285, 1, 0, 0, 0, 5284, 5279, 1, 0, 0, 0, 5285, 5288, 1, 0, 0, 0, 5286, 5284, 1, 0, 0, 0, 5286, 5287, 1, 0, 0, 0, 5287, 5292, 1, 0, 0, 0, 5288, 5286, 1, 0, 0, 0, 5289, 5290, 5, 42, 0, 0, 5290, 5291, 5, 582, 0, 0, 5291, 5293, 3, 468, 234, 0, 5292, 5289, 1, 0, 0, 0, 5292, 5293, 1, 0, 0, 0, 5293, 5308, 1, 0, 0, 0, 5294, 5306, 5, 144, 0, 0, 5295, 5307, 5, 505, 0, 0, 5296, 5303, 3, 506, 253, 0, 5297, 5299, 5, 11, 0, 0, 5298, 5297, 1, 0, 0, 0, 5298, 5299, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5300, 5302, 3, 506, 253, 0, 5301, 5298, 1, 0, 0, 0, 5302, 5305, 1, 0, 0, 0, 5303, 5301, 1, 0, 0, 0, 5303, 5304, 1, 0, 0, 0, 5304, 5307, 1, 0, 0, 0, 5305, 5303, 1, 0, 0, 0, 5306, 5295, 1, 0, 0, 0, 5306, 5296, 1, 0, 0, 0, 5307, 5309, 1, 0, 0, 0, 5308, 5294, 1, 0, 0, 0, 5308, 5309, 1, 0, 0, 0, 5309, 5316, 1, 0, 0, 0, 5310, 5312, 5, 194, 0, 0, 5311, 5313, 3, 508, 254, 0, 5312, 5311, 1, 0, 0, 0, 5313, 5314, 1, 0, 0, 0, 5314, 5312, 1, 0, 0, 0, 5314, 5315, 1, 0, 0, 0, 5315, 5317, 1, 0, 0, 0, 5316, 5310, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5322, 1, 0, 0, 0, 5318, 5321, 3, 510, 255, 0, 5319, 5321, 3, 512, 256, 0, 5320, 5318, 1, 0, 0, 0, 5320, 5319, 1, 0, 0, 0, 5321, 5324, 1, 0, 0, 0, 5322, 5320, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5327, 1, 0, 0, 0, 5324, 5322, 1, 0, 0, 0, 5325, 5326, 7, 80, 0, 0, 5326, 5328, 5, 882, 0, 0, 5327, 5325, 1, 0, 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 463, 1, 0, 0, 0, 5329, 5330, 5, 51, 0, 0, 5330, 5332, 5, 678, 0, 0, 5331, 5333, 3, 758, 379, 0, 5332, 5331, 1, 0, 0, 0, 5332, 5333, 1, 0, 0, 0, 5333, 5334, 1, 0, 0, 0, 5334, 5339, 3, 684, 342, 0, 5335, 5336, 5, 868, 0, 0, 5336, 5338, 3, 684, 342, 0, 5337, 5335, 1, 0, 0, 0, 5338, 5341, 1, 0, 0, 0, 5339, 5337, 1, 0, 0, 0, 5339, 5340, 1, 0, 0, 0, 5340, 465, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5342, 5343, 5, 73, 0, 0, 5343, 5348, 3, 520, 260, 0, 5344, 5345, 5, 868, 0, 0, 5345, 5347, 3, 520, 260, 0, 5346, 5344, 1, 0, 0, 0, 5347, 5350, 1, 0, 0, 0, 5348, 5346, 1, 0, 0, 0, 5348, 5349, 1, 0, 0, 0, 5349, 5351, 1, 0, 0, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5353, 5, 119, 0, 0, 5352, 5354, 3, 488, 244, 0, 5353, 5352, 1, 0, 0, 0, 5353, 5354, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5356, 3, 524, 262, 0, 5356, 5366, 5, 176, 0, 0, 5357, 5362, 3, 500, 250, 0, 5358, 5359, 5, 868, 0, 0, 5359, 5361, 3, 500, 250, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5364, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5367, 1, 0, 0, 0, 5364, 5362, 1, 0, 0, 0, 5365, 5367, 3, 654, 327, 0, 5366, 5357, 1, 0, 0, 0, 5366, 5365, 1, 0, 0, 0, 5367, 5382, 1, 0, 0, 0, 5368, 5380, 5, 144, 0, 0, 5369, 5381, 5, 505, 0, 0, 5370, 5377, 3, 506, 253, 0, 5371, 5373, 5, 11, 0, 0, 5372, 5371, 1, 0, 0, 0, 5372, 5373, 1, 0, 0, 0, 5373, 5374, 1, 0, 0, 0, 5374, 5376, 3, 506, 253, 0, 5375, 5372, 1, 0, 0, 0, 5376, 5379, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5377, 5378, 1, 0, 0, 0, 5378, 5381, 1, 0, 0, 0, 5379, 5377, 1, 0, 0, 0, 5380, 5369, 1, 0, 0, 0, 5380, 5370, 1, 0, 0, 0, 5381, 5383, 1, 0, 0, 0, 5382, 5368, 1, 0, 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 5393, 1, 0, 0, 0, 5384, 5390, 5, 194, 0, 0, 5385, 5386, 5, 73, 0, 0, 5386, 5389, 5, 121, 0, 0, 5387, 5389, 3, 508, 254, 0, 5388, 5385, 1, 0, 0, 0, 5388, 5387, 1, 0, 0, 0, 5389, 5392, 1, 0, 0, 0, 5390, 5388, 1, 0, 0, 0, 5390, 5391, 1, 0, 0, 0, 5391, 5394, 1, 0, 0, 0, 5392, 5390, 1, 0, 0, 0, 5393, 5384, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5402, 1, 0, 0, 0, 5395, 5396, 5, 13, 0, 0, 5396, 5400, 3, 684, 342, 0, 5397, 5398, 5, 194, 0, 0, 5398, 5399, 5, 582, 0, 0, 5399, 5401, 3, 468, 234, 0, 5400, 5397, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5403, 1, 0, 0, 0, 5402, 5395, 1, 0, 0, 0, 5402, 5403, 1, 0, 0, 0, 5403, 5432, 1, 0, 0, 0, 5404, 5407, 5, 73, 0, 0, 5405, 5406, 5, 547, 0, 0, 5406, 5408, 5, 119, 0, 0, 5407, 5405, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5409, 1, 0, 0, 0, 5409, 5414, 3, 656, 328, 0, 5410, 5411, 5, 868, 0, 0, 5411, 5413, 3, 656, 328, 0, 5412, 5410, 1, 0, 0, 0, 5413, 5416, 1, 0, 0, 0, 5414, 5412, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5417, 1, 0, 0, 0, 5416, 5414, 1, 0, 0, 0, 5417, 5418, 5, 176, 0, 0, 5418, 5423, 3, 656, 328, 0, 5419, 5420, 5, 868, 0, 0, 5420, 5422, 3, 656, 328, 0, 5421, 5419, 1, 0, 0, 0, 5422, 5425, 1, 0, 0, 0, 5423, 5421, 1, 0, 0, 0, 5423, 5424, 1, 0, 0, 0, 5424, 5429, 1, 0, 0, 0, 5425, 5423, 1, 0, 0, 0, 5426, 5427, 5, 194, 0, 0, 5427, 5428, 5, 704, 0, 0, 5428, 5430, 5, 121, 0, 0, 5429, 5426, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5432, 1, 0, 0, 0, 5431, 5342, 1, 0, 0, 0, 5431, 5404, 1, 0, 0, 0, 5432, 467, 1, 0, 0, 0, 5433, 5442, 5, 42, 0, 0, 5434, 5442, 5, 505, 0, 0, 5435, 5438, 5, 7, 0, 0, 5436, 5437, 5, 59, 0, 0, 5437, 5439, 3, 654, 327, 0, 5438, 5436, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5442, 1, 0, 0, 0, 5440, 5442, 3, 654, 327, 0, 5441, 5433, 1, 0, 0, 0, 5441, 5434, 1, 0, 0, 0, 5441, 5435, 1, 0, 0, 0, 5441, 5440, 1, 0, 0, 0, 5442, 469, 1, 0, 0, 0, 5443, 5444, 5, 73, 0, 0, 5444, 5445, 5, 547, 0, 0, 5445, 5446, 5, 119, 0, 0, 5446, 5447, 3, 684, 342, 0, 5447, 5448, 5, 176, 0, 0, 5448, 5453, 3, 684, 342, 0, 5449, 5450, 5, 868, 0, 0, 5450, 5452, 3, 684, 342, 0, 5451, 5449, 1, 0, 0, 0, 5452, 5455, 1, 0, 0, 0, 5453, 5451, 1, 0, 0, 0, 5453, 5454, 1, 0, 0, 0, 5454, 5459, 1, 0, 0, 0, 5455, 5453, 1, 0, 0, 0, 5456, 5457, 5, 194, 0, 0, 5457, 5458, 5, 73, 0, 0, 5458, 5460, 5, 121, 0, 0, 5459, 5456, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 471, 1, 0, 0, 0, 5461, 5462, 5, 8, 0, 0, 5462, 5463, 5, 739, 0, 0, 5463, 5464, 5, 74, 0, 0, 5464, 5470, 3, 646, 323, 0, 5465, 5467, 5, 190, 0, 0, 5466, 5468, 5, 857, 0, 0, 5467, 5466, 1, 0, 0, 0, 5467, 5468, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 3, 480, 240, 0, 5470, 5465, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5477, 1, 0, 0, 0, 5472, 5474, 5, 837, 0, 0, 5473, 5475, 5, 857, 0, 0, 5474, 5473, 1, 0, 0, 0, 5474, 5475, 1, 0, 0, 0, 5475, 5476, 1, 0, 0, 0, 5476, 5478, 3, 712, 356, 0, 5477, 5472, 1, 0, 0, 0, 5477, 5478, 1, 0, 0, 0, 5478, 5483, 1, 0, 0, 0, 5479, 5481, 7, 39, 0, 0, 5480, 5482, 5, 66, 0, 0, 5481, 5480, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5484, 1, 0, 0, 0, 5483, 5479, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 473, 1, 0, 0, 0, 5485, 5486, 5, 34, 0, 0, 5486, 5487, 5, 739, 0, 0, 5487, 5488, 5, 74, 0, 0, 5488, 5489, 3, 644, 322, 0, 5489, 5490, 5, 839, 0, 0, 5490, 5491, 5, 857, 0, 0, 5491, 5497, 7, 81, 0, 0, 5492, 5494, 5, 190, 0, 0, 5493, 5495, 5, 857, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5498, 3, 480, 240, 0, 5497, 5492, 1, 0, 0, 0, 5497, 5498, 1, 0, 0, 0, 5498, 5504, 1, 0, 0, 0, 5499, 5501, 5, 837, 0, 0, 5500, 5502, 5, 857, 0, 0, 5501, 5500, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 5505, 3, 712, 356, 0, 5504, 5499, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5507, 1, 0, 0, 0, 5506, 5508, 7, 39, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 475, 1, 0, 0, 0, 5509, 5510, 5, 51, 0, 0, 5510, 5511, 5, 739, 0, 0, 5511, 5512, 5, 74, 0, 0, 5512, 5514, 3, 646, 323, 0, 5513, 5515, 5, 66, 0, 0, 5514, 5513, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 477, 1, 0, 0, 0, 5516, 5517, 5, 155, 0, 0, 5517, 5518, 5, 739, 0, 0, 5518, 5519, 5, 74, 0, 0, 5519, 5529, 3, 646, 323, 0, 5520, 5521, 5, 65, 0, 0, 5521, 5526, 3, 712, 356, 0, 5522, 5523, 5, 868, 0, 0, 5523, 5525, 3, 712, 356, 0, 5524, 5522, 1, 0, 0, 0, 5525, 5528, 1, 0, 0, 0, 5526, 5524, 1, 0, 0, 0, 5526, 5527, 1, 0, 0, 0, 5527, 5530, 1, 0, 0, 0, 5528, 5526, 1, 0, 0, 0, 5529, 5520, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 479, 1, 0, 0, 0, 5531, 5537, 3, 712, 356, 0, 5532, 5533, 3, 712, 356, 0, 5533, 5534, 5, 854, 0, 0, 5534, 5535, 3, 712, 356, 0, 5535, 5537, 1, 0, 0, 0, 5536, 5531, 1, 0, 0, 0, 5536, 5532, 1, 0, 0, 0, 5537, 5542, 1, 0, 0, 0, 5538, 5539, 5, 868, 0, 0, 5539, 5541, 3, 480, 240, 0, 5540, 5538, 1, 0, 0, 0, 5541, 5544, 1, 0, 0, 0, 5542, 5540, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 481, 1, 0, 0, 0, 5544, 5542, 1, 0, 0, 0, 5545, 5546, 5, 141, 0, 0, 5546, 5547, 5, 678, 0, 0, 5547, 5552, 3, 526, 263, 0, 5548, 5549, 5, 868, 0, 0, 5549, 5551, 3, 526, 263, 0, 5550, 5548, 1, 0, 0, 0, 5551, 5554, 1, 0, 0, 0, 5552, 5550, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 483, 1, 0, 0, 0, 5554, 5552, 1, 0, 0, 0, 5555, 5557, 5, 149, 0, 0, 5556, 5558, 3, 758, 379, 0, 5557, 5556, 1, 0, 0, 0, 5557, 5558, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, 5564, 3, 520, 260, 0, 5560, 5561, 5, 868, 0, 0, 5561, 5563, 3, 520, 260, 0, 5562, 5560, 1, 0, 0, 0, 5563, 5566, 1, 0, 0, 0, 5564, 5562, 1, 0, 0, 0, 5564, 5565, 1, 0, 0, 0, 5565, 5567, 1, 0, 0, 0, 5566, 5564, 1, 0, 0, 0, 5567, 5569, 5, 119, 0, 0, 5568, 5570, 3, 488, 244, 0, 5569, 5568, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 5571, 1, 0, 0, 0, 5571, 5572, 3, 524, 262, 0, 5572, 5573, 5, 68, 0, 0, 5573, 5575, 3, 654, 327, 0, 5574, 5576, 3, 486, 243, 0, 5575, 5574, 1, 0, 0, 0, 5575, 5576, 1, 0, 0, 0, 5576, 5608, 1, 0, 0, 0, 5577, 5579, 5, 149, 0, 0, 5578, 5580, 3, 758, 379, 0, 5579, 5578, 1, 0, 0, 0, 5579, 5580, 1, 0, 0, 0, 5580, 5581, 1, 0, 0, 0, 5581, 5583, 5, 7, 0, 0, 5582, 5584, 5, 734, 0, 0, 5583, 5582, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5586, 5, 868, 0, 0, 5586, 5587, 5, 73, 0, 0, 5587, 5588, 5, 121, 0, 0, 5588, 5589, 5, 68, 0, 0, 5589, 5591, 3, 654, 327, 0, 5590, 5592, 3, 486, 243, 0, 5591, 5590, 1, 0, 0, 0, 5591, 5592, 1, 0, 0, 0, 5592, 5608, 1, 0, 0, 0, 5593, 5595, 5, 149, 0, 0, 5594, 5596, 3, 758, 379, 0, 5595, 5594, 1, 0, 0, 0, 5595, 5596, 1, 0, 0, 0, 5596, 5599, 1, 0, 0, 0, 5597, 5598, 5, 547, 0, 0, 5598, 5600, 5, 119, 0, 0, 5599, 5597, 1, 0, 0, 0, 5599, 5600, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5602, 3, 654, 327, 0, 5602, 5603, 5, 68, 0, 0, 5603, 5605, 3, 654, 327, 0, 5604, 5606, 3, 486, 243, 0, 5605, 5604, 1, 0, 0, 0, 5605, 5606, 1, 0, 0, 0, 5606, 5608, 1, 0, 0, 0, 5607, 5555, 1, 0, 0, 0, 5607, 5577, 1, 0, 0, 0, 5607, 5593, 1, 0, 0, 0, 5608, 485, 1, 0, 0, 0, 5609, 5610, 5, 79, 0, 0, 5610, 5611, 5, 674, 0, 0, 5611, 5612, 5, 678, 0, 0, 5612, 487, 1, 0, 0, 0, 5613, 5614, 7, 82, 0, 0, 5614, 489, 1, 0, 0, 0, 5615, 5616, 5, 155, 0, 0, 5616, 5619, 5, 529, 0, 0, 5617, 5618, 5, 65, 0, 0, 5618, 5620, 3, 684, 342, 0, 5619, 5617, 1, 0, 0, 0, 5619, 5620, 1, 0, 0, 0, 5620, 5621, 1, 0, 0, 0, 5621, 5624, 5, 857, 0, 0, 5622, 5625, 3, 798, 399, 0, 5623, 5625, 5, 882, 0, 0, 5624, 5622, 1, 0, 0, 0, 5624, 5623, 1, 0, 0, 0, 5625, 5648, 1, 0, 0, 0, 5626, 5627, 5, 155, 0, 0, 5627, 5630, 5, 529, 0, 0, 5628, 5629, 5, 65, 0, 0, 5629, 5631, 3, 684, 342, 0, 5630, 5628, 1, 0, 0, 0, 5630, 5631, 1, 0, 0, 0, 5631, 5636, 1, 0, 0, 0, 5632, 5633, 5, 176, 0, 0, 5633, 5637, 5, 829, 0, 0, 5634, 5635, 5, 857, 0, 0, 5635, 5637, 5, 882, 0, 0, 5636, 5632, 1, 0, 0, 0, 5636, 5634, 1, 0, 0, 0, 5637, 5640, 1, 0, 0, 0, 5638, 5639, 5, 143, 0, 0, 5639, 5641, 5, 882, 0, 0, 5640, 5638, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5645, 1, 0, 0, 0, 5642, 5643, 5, 147, 0, 0, 5643, 5644, 5, 36, 0, 0, 5644, 5646, 5, 529, 0, 0, 5645, 5642, 1, 0, 0, 0, 5645, 5646, 1, 0, 0, 0, 5646, 5648, 1, 0, 0, 0, 5647, 5615, 1, 0, 0, 0, 5647, 5626, 1, 0, 0, 0, 5648, 491, 1, 0, 0, 0, 5649, 5650, 3, 684, 342, 0, 5650, 5651, 3, 510, 255, 0, 5651, 493, 1, 0, 0, 0, 5652, 5678, 3, 684, 342, 0, 5653, 5654, 5, 423, 0, 0, 5654, 5655, 5, 20, 0, 0, 5655, 5656, 5, 882, 0, 0, 5656, 5679, 3, 502, 251, 0, 5657, 5658, 5, 423, 0, 0, 5658, 5659, 5, 20, 0, 0, 5659, 5660, 5, 829, 0, 0, 5660, 5661, 5, 529, 0, 0, 5661, 5679, 3, 502, 251, 0, 5662, 5663, 5, 423, 0, 0, 5663, 5664, 5, 194, 0, 0, 5664, 5679, 3, 504, 252, 0, 5665, 5666, 5, 369, 0, 0, 5666, 5667, 5, 511, 0, 0, 5667, 5679, 5, 529, 0, 0, 5668, 5669, 7, 83, 0, 0, 5669, 5671, 3, 518, 259, 0, 5670, 5672, 3, 514, 257, 0, 5671, 5670, 1, 0, 0, 0, 5671, 5672, 1, 0, 0, 0, 5672, 5674, 1, 0, 0, 0, 5673, 5668, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5673, 1, 0, 0, 0, 5675, 5676, 1, 0, 0, 0, 5676, 5679, 1, 0, 0, 0, 5677, 5679, 3, 516, 258, 0, 5678, 5653, 1, 0, 0, 0, 5678, 5657, 1, 0, 0, 0, 5678, 5662, 1, 0, 0, 0, 5678, 5665, 1, 0, 0, 0, 5678, 5673, 1, 0, 0, 0, 5678, 5677, 1, 0, 0, 0, 5678, 5679, 1, 0, 0, 0, 5679, 495, 1, 0, 0, 0, 5680, 5681, 5, 423, 0, 0, 5681, 5687, 5, 20, 0, 0, 5682, 5688, 5, 882, 0, 0, 5683, 5684, 5, 829, 0, 0, 5684, 5688, 5, 529, 0, 0, 5685, 5686, 5, 529, 0, 0, 5686, 5688, 5, 882, 0, 0, 5687, 5682, 1, 0, 0, 0, 5687, 5683, 1, 0, 0, 0, 5687, 5685, 1, 0, 0, 0, 5688, 5691, 1, 0, 0, 0, 5689, 5690, 5, 11, 0, 0, 5690, 5692, 3, 496, 248, 0, 5691, 5689, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 5717, 1, 0, 0, 0, 5693, 5694, 5, 423, 0, 0, 5694, 5695, 5, 194, 0, 0, 5695, 5704, 3, 706, 353, 0, 5696, 5700, 5, 20, 0, 0, 5697, 5701, 5, 882, 0, 0, 5698, 5699, 5, 829, 0, 0, 5699, 5701, 5, 529, 0, 0, 5700, 5697, 1, 0, 0, 0, 5700, 5698, 1, 0, 0, 0, 5701, 5705, 1, 0, 0, 0, 5702, 5703, 5, 13, 0, 0, 5703, 5705, 5, 882, 0, 0, 5704, 5696, 1, 0, 0, 0, 5704, 5702, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5708, 1, 0, 0, 0, 5706, 5707, 5, 11, 0, 0, 5707, 5709, 3, 496, 248, 0, 5708, 5706, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 5717, 1, 0, 0, 0, 5710, 5711, 5, 423, 0, 0, 5711, 5712, 5, 194, 0, 0, 5712, 5714, 3, 706, 353, 0, 5713, 5715, 3, 498, 249, 0, 5714, 5713, 1, 0, 0, 0, 5714, 5715, 1, 0, 0, 0, 5715, 5717, 1, 0, 0, 0, 5716, 5680, 1, 0, 0, 0, 5716, 5693, 1, 0, 0, 0, 5716, 5710, 1, 0, 0, 0, 5717, 497, 1, 0, 0, 0, 5718, 5719, 5, 427, 0, 0, 5719, 5720, 5, 708, 0, 0, 5720, 5721, 5, 423, 0, 0, 5721, 5725, 5, 20, 0, 0, 5722, 5723, 5, 829, 0, 0, 5723, 5726, 5, 529, 0, 0, 5724, 5726, 5, 882, 0, 0, 5725, 5722, 1, 0, 0, 0, 5725, 5724, 1, 0, 0, 0, 5726, 5736, 1, 0, 0, 0, 5727, 5728, 5, 427, 0, 0, 5728, 5729, 5, 708, 0, 0, 5729, 5730, 5, 423, 0, 0, 5730, 5731, 5, 194, 0, 0, 5731, 5732, 3, 706, 353, 0, 5732, 5733, 5, 13, 0, 0, 5733, 5734, 5, 882, 0, 0, 5734, 5736, 1, 0, 0, 0, 5735, 5718, 1, 0, 0, 0, 5735, 5727, 1, 0, 0, 0, 5736, 499, 1, 0, 0, 0, 5737, 5738, 3, 684, 342, 0, 5738, 5739, 5, 423, 0, 0, 5739, 5740, 5, 20, 0, 0, 5740, 5741, 5, 529, 0, 0, 5741, 5742, 5, 882, 0, 0, 5742, 5763, 1, 0, 0, 0, 5743, 5744, 3, 684, 342, 0, 5744, 5745, 5, 423, 0, 0, 5745, 5746, 5, 20, 0, 0, 5746, 5747, 5, 829, 0, 0, 5747, 5748, 5, 529, 0, 0, 5748, 5749, 3, 502, 251, 0, 5749, 5763, 1, 0, 0, 0, 5750, 5751, 3, 684, 342, 0, 5751, 5752, 5, 423, 0, 0, 5752, 5753, 5, 20, 0, 0, 5753, 5754, 5, 882, 0, 0, 5754, 5755, 3, 502, 251, 0, 5755, 5763, 1, 0, 0, 0, 5756, 5757, 3, 684, 342, 0, 5757, 5758, 5, 423, 0, 0, 5758, 5759, 5, 194, 0, 0, 5759, 5760, 3, 504, 252, 0, 5760, 5763, 1, 0, 0, 0, 5761, 5763, 3, 684, 342, 0, 5762, 5737, 1, 0, 0, 0, 5762, 5743, 1, 0, 0, 0, 5762, 5750, 1, 0, 0, 0, 5762, 5756, 1, 0, 0, 0, 5762, 5761, 1, 0, 0, 0, 5763, 501, 1, 0, 0, 0, 5764, 5765, 5, 143, 0, 0, 5765, 5767, 5, 882, 0, 0, 5766, 5764, 1, 0, 0, 0, 5766, 5767, 1, 0, 0, 0, 5767, 5771, 1, 0, 0, 0, 5768, 5769, 5, 147, 0, 0, 5769, 5770, 5, 36, 0, 0, 5770, 5772, 5, 529, 0, 0, 5771, 5768, 1, 0, 0, 0, 5771, 5772, 1, 0, 0, 0, 5772, 503, 1, 0, 0, 0, 5773, 5781, 3, 706, 353, 0, 5774, 5778, 7, 84, 0, 0, 5775, 5779, 5, 882, 0, 0, 5776, 5777, 5, 829, 0, 0, 5777, 5779, 5, 529, 0, 0, 5778, 5775, 1, 0, 0, 0, 5778, 5776, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5782, 3, 502, 251, 0, 5781, 5774, 1, 0, 0, 0, 5781, 5782, 1, 0, 0, 0, 5782, 5788, 1, 0, 0, 0, 5783, 5784, 3, 706, 353, 0, 5784, 5785, 5, 188, 0, 0, 5785, 5786, 3, 798, 399, 0, 5786, 5788, 1, 0, 0, 0, 5787, 5773, 1, 0, 0, 0, 5787, 5783, 1, 0, 0, 0, 5788, 505, 1, 0, 0, 0, 5789, 5798, 5, 169, 0, 0, 5790, 5798, 5, 693, 0, 0, 5791, 5792, 5, 331, 0, 0, 5792, 5798, 5, 882, 0, 0, 5793, 5794, 5, 441, 0, 0, 5794, 5798, 5, 882, 0, 0, 5795, 5796, 5, 651, 0, 0, 5796, 5798, 5, 882, 0, 0, 5797, 5789, 1, 0, 0, 0, 5797, 5790, 1, 0, 0, 0, 5797, 5791, 1, 0, 0, 0, 5797, 5793, 1, 0, 0, 0, 5797, 5795, 1, 0, 0, 0, 5798, 507, 1, 0, 0, 0, 5799, 5800, 5, 479, 0, 0, 5800, 5808, 3, 712, 356, 0, 5801, 5802, 5, 482, 0, 0, 5802, 5808, 3, 712, 356, 0, 5803, 5804, 5, 478, 0, 0, 5804, 5808, 3, 712, 356, 0, 5805, 5806, 5, 483, 0, 0, 5806, 5808, 3, 712, 356, 0, 5807, 5799, 1, 0, 0, 0, 5807, 5801, 1, 0, 0, 0, 5807, 5803, 1, 0, 0, 0, 5807, 5805, 1, 0, 0, 0, 5808, 509, 1, 0, 0, 0, 5809, 5810, 5, 529, 0, 0, 5810, 5817, 5, 390, 0, 0, 5811, 5818, 5, 42, 0, 0, 5812, 5818, 5, 500, 0, 0, 5813, 5814, 5, 87, 0, 0, 5814, 5815, 3, 712, 356, 0, 5815, 5816, 5, 698, 0, 0, 5816, 5818, 1, 0, 0, 0, 5817, 5811, 1, 0, 0, 0, 5817, 5812, 1, 0, 0, 0, 5817, 5813, 1, 0, 0, 0, 5817, 5818, 1, 0, 0, 0, 5818, 5848, 1, 0, 0, 0, 5819, 5820, 5, 529, 0, 0, 5820, 5823, 5, 420, 0, 0, 5821, 5824, 5, 42, 0, 0, 5822, 5824, 3, 712, 356, 0, 5823, 5821, 1, 0, 0, 0, 5823, 5822, 1, 0, 0, 0, 5824, 5848, 1, 0, 0, 0, 5825, 5826, 5, 529, 0, 0, 5826, 5827, 5, 581, 0, 0, 5827, 5832, 5, 87, 0, 0, 5828, 5833, 5, 42, 0, 0, 5829, 5830, 3, 712, 356, 0, 5830, 5831, 5, 698, 0, 0, 5831, 5833, 1, 0, 0, 0, 5832, 5828, 1, 0, 0, 0, 5832, 5829, 1, 0, 0, 0, 5833, 5848, 1, 0, 0, 0, 5834, 5835, 5, 529, 0, 0, 5835, 5836, 5, 144, 0, 0, 5836, 5838, 5, 36, 0, 0, 5837, 5839, 7, 85, 0, 0, 5838, 5837, 1, 0, 0, 0, 5838, 5839, 1, 0, 0, 0, 5839, 5848, 1, 0, 0, 0, 5840, 5841, 5, 395, 0, 0, 5841, 5848, 3, 712, 356, 0, 5842, 5845, 5, 530, 0, 0, 5843, 5846, 3, 712, 356, 0, 5844, 5846, 5, 669, 0, 0, 5845, 5843, 1, 0, 0, 0, 5845, 5844, 1, 0, 0, 0, 5846, 5848, 1, 0, 0, 0, 5847, 5809, 1, 0, 0, 0, 5847, 5819, 1, 0, 0, 0, 5847, 5825, 1, 0, 0, 0, 5847, 5834, 1, 0, 0, 0, 5847, 5840, 1, 0, 0, 0, 5847, 5842, 1, 0, 0, 0, 5848, 511, 1, 0, 0, 0, 5849, 5850, 5, 304, 0, 0, 5850, 5851, 7, 86, 0, 0, 5851, 513, 1, 0, 0, 0, 5852, 5855, 5, 423, 0, 0, 5853, 5854, 5, 194, 0, 0, 5854, 5856, 3, 706, 353, 0, 5855, 5853, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5865, 1, 0, 0, 0, 5857, 5861, 5, 20, 0, 0, 5858, 5862, 5, 882, 0, 0, 5859, 5860, 5, 829, 0, 0, 5860, 5862, 5, 529, 0, 0, 5861, 5858, 1, 0, 0, 0, 5861, 5859, 1, 0, 0, 0, 5862, 5866, 1, 0, 0, 0, 5863, 5864, 5, 13, 0, 0, 5864, 5866, 5, 882, 0, 0, 5865, 5857, 1, 0, 0, 0, 5865, 5863, 1, 0, 0, 0, 5866, 515, 1, 0, 0, 0, 5867, 5868, 3, 518, 259, 0, 5868, 5869, 5, 429, 0, 0, 5869, 5870, 5, 555, 0, 0, 5870, 5883, 1, 0, 0, 0, 5871, 5872, 3, 518, 259, 0, 5872, 5873, 5, 401, 0, 0, 5873, 5874, 5, 555, 0, 0, 5874, 5875, 5, 155, 0, 0, 5875, 5876, 5, 330, 0, 0, 5876, 5877, 5, 13, 0, 0, 5877, 5878, 5, 882, 0, 0, 5878, 5883, 1, 0, 0, 0, 5879, 5880, 3, 518, 259, 0, 5880, 5881, 5, 675, 0, 0, 5881, 5883, 1, 0, 0, 0, 5882, 5867, 1, 0, 0, 0, 5882, 5871, 1, 0, 0, 0, 5882, 5879, 1, 0, 0, 0, 5883, 517, 1, 0, 0, 0, 5884, 5885, 7, 87, 0, 0, 5885, 5886, 5, 394, 0, 0, 5886, 519, 1, 0, 0, 0, 5887, 5892, 3, 522, 261, 0, 5888, 5889, 5, 866, 0, 0, 5889, 5890, 3, 660, 330, 0, 5890, 5891, 5, 867, 0, 0, 5891, 5893, 1, 0, 0, 0, 5892, 5888, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 521, 1, 0, 0, 0, 5894, 5896, 5, 7, 0, 0, 5895, 5897, 5, 734, 0, 0, 5896, 5895, 1, 0, 0, 0, 5896, 5897, 1, 0, 0, 0, 5897, 5988, 1, 0, 0, 0, 5898, 5900, 5, 8, 0, 0, 5899, 5901, 5, 743, 0, 0, 5900, 5899, 1, 0, 0, 0, 5900, 5901, 1, 0, 0, 0, 5901, 5988, 1, 0, 0, 0, 5902, 5910, 5, 34, 0, 0, 5903, 5904, 5, 660, 0, 0, 5904, 5911, 5, 752, 0, 0, 5905, 5911, 5, 743, 0, 0, 5906, 5911, 5, 684, 0, 0, 5907, 5911, 5, 678, 0, 0, 5908, 5911, 5, 658, 0, 0, 5909, 5911, 5, 582, 0, 0, 5910, 5903, 1, 0, 0, 0, 5910, 5905, 1, 0, 0, 0, 5910, 5906, 1, 0, 0, 0, 5910, 5907, 1, 0, 0, 0, 5910, 5908, 1, 0, 0, 0, 5910, 5909, 1, 0, 0, 0, 5910, 5911, 1, 0, 0, 0, 5911, 5988, 1, 0, 0, 0, 5912, 5988, 5, 44, 0, 0, 5913, 5915, 5, 51, 0, 0, 5914, 5916, 5, 582, 0, 0, 5915, 5914, 1, 0, 0, 0, 5915, 5916, 1, 0, 0, 0, 5916, 5988, 1, 0, 0, 0, 5917, 5988, 5, 385, 0, 0, 5918, 5988, 5, 717, 0, 0, 5919, 5988, 5, 718, 0, 0, 5920, 5921, 5, 73, 0, 0, 5921, 5988, 5, 121, 0, 0, 5922, 5988, 5, 82, 0, 0, 5923, 5988, 5, 86, 0, 0, 5924, 5925, 5, 104, 0, 0, 5925, 5988, 5, 752, 0, 0, 5926, 5988, 5, 735, 0, 0, 5927, 5988, 5, 547, 0, 0, 5928, 5988, 5, 138, 0, 0, 5929, 5988, 5, 736, 0, 0, 5930, 5931, 5, 572, 0, 0, 5931, 5988, 7, 88, 0, 0, 5932, 5988, 5, 154, 0, 0, 5933, 5934, 5, 157, 0, 0, 5934, 5988, 7, 89, 0, 0, 5935, 5988, 5, 749, 0, 0, 5936, 5988, 5, 750, 0, 0, 5937, 5988, 5, 178, 0, 0, 5938, 5988, 5, 185, 0, 0, 5939, 5988, 5, 186, 0, 0, 5940, 5988, 5, 705, 0, 0, 5941, 5988, 5, 706, 0, 0, 5942, 5988, 5, 707, 0, 0, 5943, 5988, 5, 709, 0, 0, 5944, 5988, 5, 710, 0, 0, 5945, 5988, 5, 711, 0, 0, 5946, 5988, 5, 712, 0, 0, 5947, 5988, 5, 714, 0, 0, 5948, 5988, 5, 715, 0, 0, 5949, 5988, 5, 716, 0, 0, 5950, 5988, 5, 719, 0, 0, 5951, 5988, 5, 720, 0, 0, 5952, 5988, 5, 721, 0, 0, 5953, 5988, 5, 722, 0, 0, 5954, 5988, 5, 723, 0, 0, 5955, 5988, 5, 724, 0, 0, 5956, 5988, 5, 725, 0, 0, 5957, 5988, 5, 726, 0, 0, 5958, 5988, 5, 727, 0, 0, 5959, 5988, 5, 728, 0, 0, 5960, 5988, 5, 731, 0, 0, 5961, 5988, 5, 732, 0, 0, 5962, 5988, 5, 733, 0, 0, 5963, 5988, 5, 737, 0, 0, 5964, 5988, 5, 738, 0, 0, 5965, 5988, 5, 740, 0, 0, 5966, 5988, 5, 741, 0, 0, 5967, 5988, 5, 742, 0, 0, 5968, 5988, 5, 745, 0, 0, 5969, 5988, 5, 746, 0, 0, 5970, 5988, 5, 747, 0, 0, 5971, 5988, 5, 160, 0, 0, 5972, 5988, 5, 748, 0, 0, 5973, 5988, 5, 836, 0, 0, 5974, 5988, 5, 751, 0, 0, 5975, 5988, 5, 753, 0, 0, 5976, 5988, 5, 838, 0, 0, 5977, 5988, 5, 754, 0, 0, 5978, 5988, 5, 755, 0, 0, 5979, 5980, 5, 103, 0, 0, 5980, 5981, 5, 68, 0, 0, 5981, 5988, 5, 744, 0, 0, 5982, 5983, 5, 154, 0, 0, 5983, 5984, 5, 88, 0, 0, 5984, 5988, 5, 744, 0, 0, 5985, 5986, 5, 729, 0, 0, 5986, 5988, 5, 730, 0, 0, 5987, 5894, 1, 0, 0, 0, 5987, 5898, 1, 0, 0, 0, 5987, 5902, 1, 0, 0, 0, 5987, 5912, 1, 0, 0, 0, 5987, 5913, 1, 0, 0, 0, 5987, 5917, 1, 0, 0, 0, 5987, 5918, 1, 0, 0, 0, 5987, 5919, 1, 0, 0, 0, 5987, 5920, 1, 0, 0, 0, 5987, 5922, 1, 0, 0, 0, 5987, 5923, 1, 0, 0, 0, 5987, 5924, 1, 0, 0, 0, 5987, 5926, 1, 0, 0, 0, 5987, 5927, 1, 0, 0, 0, 5987, 5928, 1, 0, 0, 0, 5987, 5929, 1, 0, 0, 0, 5987, 5930, 1, 0, 0, 0, 5987, 5932, 1, 0, 0, 0, 5987, 5933, 1, 0, 0, 0, 5987, 5935, 1, 0, 0, 0, 5987, 5936, 1, 0, 0, 0, 5987, 5937, 1, 0, 0, 0, 5987, 5938, 1, 0, 0, 0, 5987, 5939, 1, 0, 0, 0, 5987, 5940, 1, 0, 0, 0, 5987, 5941, 1, 0, 0, 0, 5987, 5942, 1, 0, 0, 0, 5987, 5943, 1, 0, 0, 0, 5987, 5944, 1, 0, 0, 0, 5987, 5945, 1, 0, 0, 0, 5987, 5946, 1, 0, 0, 0, 5987, 5947, 1, 0, 0, 0, 5987, 5948, 1, 0, 0, 0, 5987, 5949, 1, 0, 0, 0, 5987, 5950, 1, 0, 0, 0, 5987, 5951, 1, 0, 0, 0, 5987, 5952, 1, 0, 0, 0, 5987, 5953, 1, 0, 0, 0, 5987, 5954, 1, 0, 0, 0, 5987, 5955, 1, 0, 0, 0, 5987, 5956, 1, 0, 0, 0, 5987, 5957, 1, 0, 0, 0, 5987, 5958, 1, 0, 0, 0, 5987, 5959, 1, 0, 0, 0, 5987, 5960, 1, 0, 0, 0, 5987, 5961, 1, 0, 0, 0, 5987, 5962, 1, 0, 0, 0, 5987, 5963, 1, 0, 0, 0, 5987, 5964, 1, 0, 0, 0, 5987, 5965, 1, 0, 0, 0, 5987, 5966, 1, 0, 0, 0, 5987, 5967, 1, 0, 0, 0, 5987, 5968, 1, 0, 0, 0, 5987, 5969, 1, 0, 0, 0, 5987, 5970, 1, 0, 0, 0, 5987, 5971, 1, 0, 0, 0, 5987, 5972, 1, 0, 0, 0, 5987, 5973, 1, 0, 0, 0, 5987, 5974, 1, 0, 0, 0, 5987, 5975, 1, 0, 0, 0, 5987, 5976, 1, 0, 0, 0, 5987, 5977, 1, 0, 0, 0, 5987, 5978, 1, 0, 0, 0, 5987, 5979, 1, 0, 0, 0, 5987, 5982, 1, 0, 0, 0, 5987, 5985, 1, 0, 0, 0, 5988, 523, 1, 0, 0, 0, 5989, 6006, 5, 850, 0, 0, 5990, 5991, 5, 850, 0, 0, 5991, 5992, 5, 865, 0, 0, 5992, 6006, 5, 850, 0, 0, 5993, 5994, 3, 706, 353, 0, 5994, 5995, 5, 865, 0, 0, 5995, 5996, 5, 850, 0, 0, 5996, 6006, 1, 0, 0, 0, 5997, 5998, 3, 706, 353, 0, 5998, 5999, 5, 865, 0, 0, 5999, 6000, 3, 706, 353, 0, 6000, 6006, 1, 0, 0, 0, 6001, 6002, 3, 706, 353, 0, 6002, 6003, 3, 710, 355, 0, 6003, 6006, 1, 0, 0, 0, 6004, 6006, 3, 706, 353, 0, 6005, 5989, 1, 0, 0, 0, 6005, 5990, 1, 0, 0, 0, 6005, 5993, 1, 0, 0, 0, 6005, 5997, 1, 0, 0, 0, 6005, 6001, 1, 0, 0, 0, 6005, 6004, 1, 0, 0, 0, 6006, 525, 1, 0, 0, 0, 6007, 6008, 3, 684, 342, 0, 6008, 6009, 5, 176, 0, 0, 6009, 6010, 3, 684, 342, 0, 6010, 527, 1, 0, 0, 0, 6011, 6013, 5, 10, 0, 0, 6012, 6014, 3, 538, 269, 0, 6013, 6012, 1, 0, 0, 0, 6013, 6014, 1, 0, 0, 0, 6014, 6015, 1, 0, 0, 0, 6015, 6016, 5, 173, 0, 0, 6016, 6060, 3, 650, 325, 0, 6017, 6019, 5, 10, 0, 0, 6018, 6020, 3, 538, 269, 0, 6019, 6018, 1, 0, 0, 0, 6019, 6020, 1, 0, 0, 0, 6020, 6021, 1, 0, 0, 0, 6021, 6022, 5, 173, 0, 0, 6022, 6023, 3, 652, 326, 0, 6023, 6024, 5, 185, 0, 0, 6024, 6025, 5, 77, 0, 0, 6025, 6026, 5, 119, 0, 0, 6026, 6031, 3, 660, 330, 0, 6027, 6028, 5, 194, 0, 0, 6028, 6029, 3, 712, 356, 0, 6029, 6030, 5, 19, 0, 0, 6030, 6032, 1, 0, 0, 0, 6031, 6027, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6060, 1, 0, 0, 0, 6033, 6035, 5, 10, 0, 0, 6034, 6036, 3, 538, 269, 0, 6035, 6034, 1, 0, 0, 0, 6035, 6036, 1, 0, 0, 0, 6036, 6037, 1, 0, 0, 0, 6037, 6038, 5, 173, 0, 0, 6038, 6039, 3, 652, 326, 0, 6039, 6040, 5, 185, 0, 0, 6040, 6041, 5, 77, 0, 0, 6041, 6042, 5, 119, 0, 0, 6042, 6046, 3, 662, 331, 0, 6043, 6044, 5, 188, 0, 0, 6044, 6045, 5, 360, 0, 0, 6045, 6047, 5, 882, 0, 0, 6046, 6043, 1, 0, 0, 0, 6046, 6047, 1, 0, 0, 0, 6047, 6060, 1, 0, 0, 0, 6048, 6050, 5, 10, 0, 0, 6049, 6051, 3, 538, 269, 0, 6050, 6049, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6053, 5, 173, 0, 0, 6053, 6054, 3, 652, 326, 0, 6054, 6055, 5, 51, 0, 0, 6055, 6056, 5, 77, 0, 0, 6056, 6057, 5, 119, 0, 0, 6057, 6058, 3, 660, 330, 0, 6058, 6060, 1, 0, 0, 0, 6059, 6011, 1, 0, 0, 0, 6059, 6017, 1, 0, 0, 0, 6059, 6033, 1, 0, 0, 0, 6059, 6048, 1, 0, 0, 0, 6060, 529, 1, 0, 0, 0, 6061, 6062, 5, 27, 0, 0, 6062, 6063, 5, 173, 0, 0, 6063, 6067, 3, 650, 325, 0, 6064, 6066, 3, 540, 270, 0, 6065, 6064, 1, 0, 0, 0, 6066, 6069, 1, 0, 0, 0, 6067, 6065, 1, 0, 0, 0, 6067, 6068, 1, 0, 0, 0, 6068, 531, 1, 0, 0, 0, 6069, 6067, 1, 0, 0, 0, 6070, 6071, 5, 329, 0, 0, 6071, 6072, 5, 173, 0, 0, 6072, 6074, 3, 650, 325, 0, 6073, 6075, 7, 90, 0, 0, 6074, 6073, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 533, 1, 0, 0, 0, 6076, 6078, 5, 120, 0, 0, 6077, 6079, 3, 538, 269, 0, 6078, 6077, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6081, 7, 61, 0, 0, 6081, 6082, 3, 650, 325, 0, 6082, 535, 1, 0, 0, 0, 6083, 6085, 5, 562, 0, 0, 6084, 6086, 3, 538, 269, 0, 6085, 6084, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6088, 5, 173, 0, 0, 6088, 6090, 3, 650, 325, 0, 6089, 6091, 5, 549, 0, 0, 6090, 6089, 1, 0, 0, 0, 6090, 6091, 1, 0, 0, 0, 6091, 6093, 1, 0, 0, 0, 6092, 6094, 5, 392, 0, 0, 6093, 6092, 1, 0, 0, 0, 6093, 6094, 1, 0, 0, 0, 6094, 6096, 1, 0, 0, 0, 6095, 6097, 5, 679, 0, 0, 6096, 6095, 1, 0, 0, 0, 6096, 6097, 1, 0, 0, 0, 6097, 537, 1, 0, 0, 0, 6098, 6099, 7, 91, 0, 0, 6099, 539, 1, 0, 0, 0, 6100, 6101, 5, 65, 0, 0, 6101, 6108, 5, 677, 0, 0, 6102, 6108, 5, 549, 0, 0, 6103, 6108, 5, 396, 0, 0, 6104, 6108, 5, 484, 0, 0, 6105, 6108, 5, 392, 0, 0, 6106, 6108, 5, 327, 0, 0, 6107, 6100, 1, 0, 0, 0, 6107, 6102, 1, 0, 0, 0, 6107, 6103, 1, 0, 0, 0, 6107, 6104, 1, 0, 0, 0, 6107, 6105, 1, 0, 0, 0, 6107, 6106, 1, 0, 0, 0, 6108, 541, 1, 0, 0, 0, 6109, 6110, 5, 432, 0, 0, 6110, 6111, 5, 344, 0, 0, 6111, 6116, 3, 706, 353, 0, 6112, 6113, 5, 868, 0, 0, 6113, 6115, 3, 706, 353, 0, 6114, 6112, 1, 0, 0, 0, 6115, 6118, 1, 0, 0, 0, 6116, 6114, 1, 0, 0, 0, 6116, 6117, 1, 0, 0, 0, 6117, 6128, 1, 0, 0, 0, 6118, 6116, 1, 0, 0, 0, 6119, 6120, 5, 155, 0, 0, 6120, 6125, 3, 544, 272, 0, 6121, 6122, 5, 868, 0, 0, 6122, 6124, 3, 544, 272, 0, 6123, 6121, 1, 0, 0, 0, 6124, 6127, 1, 0, 0, 0, 6125, 6123, 1, 0, 0, 0, 6125, 6126, 1, 0, 0, 0, 6126, 6129, 1, 0, 0, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6119, 1, 0, 0, 0, 6128, 6129, 1, 0, 0, 0, 6129, 543, 1, 0, 0, 0, 6130, 6131, 7, 92, 0, 0, 6131, 6132, 3, 702, 351, 0, 6132, 6133, 5, 857, 0, 0, 6133, 6134, 3, 804, 402, 0, 6134, 545, 1, 0, 0, 0, 6135, 6136, 5, 673, 0, 0, 6136, 6137, 5, 344, 0, 0, 6137, 6142, 3, 706, 353, 0, 6138, 6139, 5, 868, 0, 0, 6139, 6141, 3, 706, 353, 0, 6140, 6138, 1, 0, 0, 0, 6141, 6144, 1, 0, 0, 0, 6142, 6140, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 547, 1, 0, 0, 0, 6144, 6142, 1, 0, 0, 0, 6145, 6146, 5, 432, 0, 0, 6146, 6147, 5, 534, 0, 0, 6147, 6148, 3, 706, 353, 0, 6148, 6149, 5, 603, 0, 0, 6149, 6150, 5, 882, 0, 0, 6150, 549, 1, 0, 0, 0, 6151, 6152, 5, 673, 0, 0, 6152, 6153, 5, 534, 0, 0, 6153, 6154, 3, 706, 353, 0, 6154, 551, 1, 0, 0, 0, 6155, 6156, 5, 713, 0, 0, 6156, 6157, 5, 450, 0, 0, 6157, 6158, 5, 360, 0, 0, 6158, 6160, 5, 367, 0, 0, 6159, 6161, 5, 857, 0, 0, 6160, 6159, 1, 0, 0, 0, 6160, 6161, 1, 0, 0, 0, 6161, 6162, 1, 0, 0, 0, 6162, 6186, 5, 882, 0, 0, 6163, 6164, 5, 713, 0, 0, 6164, 6165, 5, 433, 0, 0, 6165, 6166, 5, 68, 0, 0, 6166, 6167, 3, 676, 338, 0, 6167, 6168, 5, 423, 0, 0, 6168, 6169, 5, 20, 0, 0, 6169, 6176, 5, 882, 0, 0, 6170, 6171, 5, 360, 0, 0, 6171, 6173, 5, 367, 0, 0, 6172, 6174, 5, 857, 0, 0, 6173, 6172, 1, 0, 0, 0, 6173, 6174, 1, 0, 0, 0, 6174, 6175, 1, 0, 0, 0, 6175, 6177, 5, 882, 0, 0, 6176, 6170, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6183, 1, 0, 0, 0, 6178, 6180, 5, 144, 0, 0, 6179, 6181, 5, 502, 0, 0, 6180, 6179, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 6182, 1, 0, 0, 0, 6182, 6184, 5, 169, 0, 0, 6183, 6178, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6186, 1, 0, 0, 0, 6185, 6155, 1, 0, 0, 0, 6185, 6163, 1, 0, 0, 0, 6186, 553, 1, 0, 0, 0, 6187, 6188, 5, 155, 0, 0, 6188, 6189, 3, 558, 279, 0, 6189, 6192, 7, 93, 0, 0, 6190, 6193, 3, 804, 402, 0, 6191, 6193, 5, 119, 0, 0, 6192, 6190, 1, 0, 0, 0, 6192, 6191, 1, 0, 0, 0, 6193, 6203, 1, 0, 0, 0, 6194, 6195, 5, 868, 0, 0, 6195, 6196, 3, 558, 279, 0, 6196, 6199, 7, 93, 0, 0, 6197, 6200, 3, 804, 402, 0, 6198, 6200, 5, 119, 0, 0, 6199, 6197, 1, 0, 0, 0, 6199, 6198, 1, 0, 0, 0, 6200, 6202, 1, 0, 0, 0, 6201, 6194, 1, 0, 0, 0, 6202, 6205, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6240, 1, 0, 0, 0, 6205, 6203, 1, 0, 0, 0, 6206, 6207, 5, 155, 0, 0, 6207, 6210, 3, 58, 29, 0, 6208, 6211, 3, 688, 344, 0, 6209, 6211, 5, 42, 0, 0, 6210, 6208, 1, 0, 0, 0, 6210, 6209, 1, 0, 0, 0, 6211, 6240, 1, 0, 0, 0, 6212, 6213, 5, 155, 0, 0, 6213, 6220, 5, 497, 0, 0, 6214, 6217, 3, 688, 344, 0, 6215, 6216, 5, 28, 0, 0, 6216, 6218, 3, 690, 345, 0, 6217, 6215, 1, 0, 0, 0, 6217, 6218, 1, 0, 0, 0, 6218, 6221, 1, 0, 0, 0, 6219, 6221, 5, 42, 0, 0, 6220, 6214, 1, 0, 0, 0, 6220, 6219, 1, 0, 0, 0, 6221, 6240, 1, 0, 0, 0, 6222, 6240, 3, 490, 245, 0, 6223, 6240, 3, 342, 171, 0, 6224, 6240, 3, 340, 170, 0, 6225, 6226, 5, 155, 0, 0, 6226, 6227, 3, 702, 351, 0, 6227, 6228, 7, 93, 0, 0, 6228, 6236, 3, 804, 402, 0, 6229, 6230, 5, 868, 0, 0, 6230, 6231, 3, 702, 351, 0, 6231, 6232, 7, 93, 0, 0, 6232, 6233, 3, 804, 402, 0, 6233, 6235, 1, 0, 0, 0, 6234, 6229, 1, 0, 0, 0, 6235, 6238, 1, 0, 0, 0, 6236, 6234, 1, 0, 0, 0, 6236, 6237, 1, 0, 0, 0, 6237, 6240, 1, 0, 0, 0, 6238, 6236, 1, 0, 0, 0, 6239, 6187, 1, 0, 0, 0, 6239, 6206, 1, 0, 0, 0, 6239, 6212, 1, 0, 0, 0, 6239, 6222, 1, 0, 0, 0, 6239, 6223, 1, 0, 0, 0, 6239, 6224, 1, 0, 0, 0, 6239, 6225, 1, 0, 0, 0, 6240, 555, 1, 0, 0, 0, 6241, 6242, 5, 157, 0, 0, 6242, 6243, 7, 63, 0, 0, 6243, 6426, 5, 452, 0, 0, 6244, 6245, 5, 157, 0, 0, 6245, 6246, 7, 94, 0, 0, 6246, 6249, 5, 386, 0, 0, 6247, 6248, 5, 80, 0, 0, 6248, 6250, 5, 882, 0, 0, 6249, 6247, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6253, 1, 0, 0, 0, 6251, 6252, 5, 68, 0, 0, 6252, 6254, 3, 712, 356, 0, 6253, 6251, 1, 0, 0, 0, 6253, 6254, 1, 0, 0, 0, 6254, 6262, 1, 0, 0, 0, 6255, 6259, 5, 100, 0, 0, 6256, 6257, 3, 712, 356, 0, 6257, 6258, 5, 868, 0, 0, 6258, 6260, 1, 0, 0, 0, 6259, 6256, 1, 0, 0, 0, 6259, 6260, 1, 0, 0, 0, 6260, 6261, 1, 0, 0, 0, 6261, 6263, 3, 712, 356, 0, 6262, 6255, 1, 0, 0, 0, 6262, 6263, 1, 0, 0, 0, 6263, 6265, 1, 0, 0, 0, 6264, 6266, 3, 390, 195, 0, 6265, 6264, 1, 0, 0, 0, 6265, 6266, 1, 0, 0, 0, 6266, 6426, 1, 0, 0, 0, 6267, 6268, 5, 157, 0, 0, 6268, 6270, 3, 560, 280, 0, 6269, 6271, 3, 562, 281, 0, 6270, 6269, 1, 0, 0, 0, 6270, 6271, 1, 0, 0, 0, 6271, 6426, 1, 0, 0, 0, 6272, 6274, 5, 157, 0, 0, 6273, 6275, 5, 392, 0, 0, 6274, 6273, 1, 0, 0, 0, 6274, 6275, 1, 0, 0, 0, 6275, 6277, 1, 0, 0, 0, 6276, 6278, 5, 408, 0, 0, 6277, 6276, 1, 0, 0, 0, 6277, 6278, 1, 0, 0, 0, 6278, 6279, 1, 0, 0, 0, 6279, 6280, 7, 47, 0, 0, 6280, 6281, 7, 95, 0, 0, 6281, 6284, 3, 652, 326, 0, 6282, 6283, 7, 95, 0, 0, 6283, 6285, 3, 628, 314, 0, 6284, 6282, 1, 0, 0, 0, 6284, 6285, 1, 0, 0, 0, 6285, 6287, 1, 0, 0, 0, 6286, 6288, 3, 562, 281, 0, 6287, 6286, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6426, 1, 0, 0, 0, 6289, 6290, 5, 157, 0, 0, 6290, 6291, 5, 34, 0, 0, 6291, 6293, 7, 0, 0, 0, 6292, 6294, 3, 760, 380, 0, 6293, 6292, 1, 0, 0, 0, 6293, 6294, 1, 0, 0, 0, 6294, 6295, 1, 0, 0, 0, 6295, 6426, 3, 628, 314, 0, 6296, 6297, 5, 157, 0, 0, 6297, 6298, 5, 34, 0, 0, 6298, 6299, 7, 96, 0, 0, 6299, 6426, 3, 702, 351, 0, 6300, 6301, 5, 157, 0, 0, 6301, 6302, 5, 34, 0, 0, 6302, 6303, 5, 409, 0, 0, 6303, 6426, 3, 632, 316, 0, 6304, 6305, 5, 157, 0, 0, 6305, 6306, 5, 34, 0, 0, 6306, 6307, 5, 684, 0, 0, 6307, 6426, 3, 636, 318, 0, 6308, 6309, 5, 157, 0, 0, 6309, 6310, 5, 34, 0, 0, 6310, 6311, 5, 173, 0, 0, 6311, 6426, 3, 652, 326, 0, 6312, 6313, 5, 157, 0, 0, 6313, 6314, 5, 34, 0, 0, 6314, 6315, 5, 678, 0, 0, 6315, 6426, 3, 684, 342, 0, 6316, 6317, 5, 157, 0, 0, 6317, 6318, 5, 380, 0, 0, 6318, 6319, 3, 692, 346, 0, 6319, 6320, 7, 97, 0, 0, 6320, 6426, 1, 0, 0, 0, 6321, 6322, 5, 157, 0, 0, 6322, 6426, 3, 564, 282, 0, 6323, 6324, 5, 157, 0, 0, 6324, 6332, 7, 98, 0, 0, 6325, 6329, 5, 100, 0, 0, 6326, 6327, 3, 712, 356, 0, 6327, 6328, 5, 868, 0, 0, 6328, 6330, 1, 0, 0, 0, 6329, 6326, 1, 0, 0, 0, 6329, 6330, 1, 0, 0, 0, 6330, 6331, 1, 0, 0, 0, 6331, 6333, 3, 712, 356, 0, 6332, 6325, 1, 0, 0, 0, 6332, 6333, 1, 0, 0, 0, 6333, 6426, 1, 0, 0, 0, 6334, 6335, 5, 157, 0, 0, 6335, 6336, 5, 262, 0, 0, 6336, 6337, 5, 866, 0, 0, 6337, 6338, 5, 850, 0, 0, 6338, 6339, 5, 867, 0, 0, 6339, 6426, 7, 98, 0, 0, 6340, 6341, 5, 157, 0, 0, 6341, 6344, 3, 566, 283, 0, 6342, 6343, 7, 95, 0, 0, 6343, 6345, 3, 628, 314, 0, 6344, 6342, 1, 0, 0, 0, 6344, 6345, 1, 0, 0, 0, 6345, 6347, 1, 0, 0, 0, 6346, 6348, 3, 562, 281, 0, 6347, 6346, 1, 0, 0, 0, 6347, 6348, 1, 0, 0, 0, 6348, 6426, 1, 0, 0, 0, 6349, 6350, 5, 157, 0, 0, 6350, 6351, 5, 132, 0, 0, 6351, 6352, 5, 336, 0, 0, 6352, 6426, 3, 702, 351, 0, 6353, 6354, 5, 157, 0, 0, 6354, 6355, 5, 409, 0, 0, 6355, 6356, 5, 336, 0, 0, 6356, 6426, 3, 632, 316, 0, 6357, 6358, 5, 157, 0, 0, 6358, 6365, 5, 414, 0, 0, 6359, 6360, 5, 65, 0, 0, 6360, 6363, 3, 656, 328, 0, 6361, 6362, 5, 188, 0, 0, 6362, 6364, 3, 654, 327, 0, 6363, 6361, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6366, 1, 0, 0, 0, 6365, 6359, 1, 0, 0, 0, 6365, 6366, 1, 0, 0, 0, 6366, 6426, 1, 0, 0, 0, 6367, 6369, 5, 157, 0, 0, 6368, 6370, 5, 392, 0, 0, 6369, 6368, 1, 0, 0, 0, 6369, 6370, 1, 0, 0, 0, 6370, 6371, 1, 0, 0, 0, 6371, 6372, 7, 99, 0, 0, 6372, 6373, 7, 95, 0, 0, 6373, 6376, 3, 652, 326, 0, 6374, 6375, 7, 95, 0, 0, 6375, 6377, 3, 628, 314, 0, 6376, 6374, 1, 0, 0, 0, 6376, 6377, 1, 0, 0, 0, 6377, 6380, 1, 0, 0, 0, 6378, 6379, 5, 192, 0, 0, 6379, 6381, 3, 804, 402, 0, 6380, 6378, 1, 0, 0, 0, 6380, 6381, 1, 0, 0, 0, 6381, 6426, 1, 0, 0, 0, 6382, 6383, 5, 157, 0, 0, 6383, 6384, 5, 516, 0, 0, 6384, 6387, 5, 752, 0, 0, 6385, 6386, 7, 95, 0, 0, 6386, 6388, 3, 628, 314, 0, 6387, 6385, 1, 0, 0, 0, 6387, 6388, 1, 0, 0, 0, 6388, 6390, 1, 0, 0, 0, 6389, 6391, 3, 562, 281, 0, 6390, 6389, 1, 0, 0, 0, 6390, 6391, 1, 0, 0, 0, 6391, 6426, 1, 0, 0, 0, 6392, 6393, 5, 157, 0, 0, 6393, 6402, 5, 545, 0, 0, 6394, 6399, 3, 568, 284, 0, 6395, 6396, 5, 868, 0, 0, 6396, 6398, 3, 568, 284, 0, 6397, 6395, 1, 0, 0, 0, 6398, 6401, 1, 0, 0, 0, 6399, 6397, 1, 0, 0, 0, 6399, 6400, 1, 0, 0, 0, 6400, 6403, 1, 0, 0, 0, 6401, 6399, 1, 0, 0, 0, 6402, 6394, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6407, 1, 0, 0, 0, 6404, 6405, 5, 65, 0, 0, 6405, 6406, 5, 548, 0, 0, 6406, 6408, 3, 712, 356, 0, 6407, 6404, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6415, 1, 0, 0, 0, 6409, 6410, 5, 100, 0, 0, 6410, 6413, 3, 712, 356, 0, 6411, 6412, 5, 509, 0, 0, 6412, 6414, 3, 712, 356, 0, 6413, 6411, 1, 0, 0, 0, 6413, 6414, 1, 0, 0, 0, 6414, 6416, 1, 0, 0, 0, 6415, 6409, 1, 0, 0, 0, 6415, 6416, 1, 0, 0, 0, 6416, 6426, 1, 0, 0, 0, 6417, 6418, 5, 157, 0, 0, 6418, 6419, 7, 64, 0, 0, 6419, 6421, 5, 645, 0, 0, 6420, 6422, 3, 390, 195, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6426, 1, 0, 0, 0, 6423, 6424, 5, 157, 0, 0, 6424, 6426, 5, 564, 0, 0, 6425, 6241, 1, 0, 0, 0, 6425, 6244, 1, 0, 0, 0, 6425, 6267, 1, 0, 0, 0, 6425, 6272, 1, 0, 0, 0, 6425, 6289, 1, 0, 0, 0, 6425, 6296, 1, 0, 0, 0, 6425, 6300, 1, 0, 0, 0, 6425, 6304, 1, 0, 0, 0, 6425, 6308, 1, 0, 0, 0, 6425, 6312, 1, 0, 0, 0, 6425, 6316, 1, 0, 0, 0, 6425, 6321, 1, 0, 0, 0, 6425, 6323, 1, 0, 0, 0, 6425, 6334, 1, 0, 0, 0, 6425, 6340, 1, 0, 0, 0, 6425, 6349, 1, 0, 0, 0, 6425, 6353, 1, 0, 0, 0, 6425, 6357, 1, 0, 0, 0, 6425, 6367, 1, 0, 0, 0, 6425, 6382, 1, 0, 0, 0, 6425, 6392, 1, 0, 0, 0, 6425, 6417, 1, 0, 0, 0, 6425, 6423, 1, 0, 0, 0, 6426, 557, 1, 0, 0, 0, 6427, 6438, 5, 892, 0, 0, 6428, 6438, 5, 893, 0, 0, 6429, 6430, 5, 870, 0, 0, 6430, 6432, 5, 870, 0, 0, 6431, 6429, 1, 0, 0, 0, 6431, 6432, 1, 0, 0, 0, 6432, 6433, 1, 0, 0, 0, 6433, 6435, 7, 100, 0, 0, 6434, 6431, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6436, 1, 0, 0, 0, 6436, 6438, 3, 706, 353, 0, 6437, 6427, 1, 0, 0, 0, 6437, 6428, 1, 0, 0, 0, 6437, 6434, 1, 0, 0, 0, 6438, 559, 1, 0, 0, 0, 6439, 6440, 5, 26, 0, 0, 6440, 6454, 5, 155, 0, 0, 6441, 6454, 5, 823, 0, 0, 6442, 6454, 5, 824, 0, 0, 6443, 6454, 5, 40, 0, 0, 6444, 6454, 5, 153, 0, 0, 6445, 6446, 5, 409, 0, 0, 6446, 6454, 5, 645, 0, 0, 6447, 6448, 5, 132, 0, 0, 6448, 6454, 5, 645, 0, 0, 6449, 6451, 7, 62, 0, 0, 6450, 6449, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6452, 1, 0, 0, 0, 6452, 6454, 7, 101, 0, 0, 6453, 6439, 1, 0, 0, 0, 6453, 6441, 1, 0, 0, 0, 6453, 6442, 1, 0, 0, 0, 6453, 6443, 1, 0, 0, 0, 6453, 6444, 1, 0, 0, 0, 6453, 6445, 1, 0, 0, 0, 6453, 6447, 1, 0, 0, 0, 6453, 6450, 1, 0, 0, 0, 6454, 561, 1, 0, 0, 0, 6455, 6456, 5, 99, 0, 0, 6456, 6460, 5, 882, 0, 0, 6457, 6458, 5, 192, 0, 0, 6458, 6460, 3, 804, 402, 0, 6459, 6455, 1, 0, 0, 0, 6459, 6457, 1, 0, 0, 0, 6460, 563, 1, 0, 0, 0, 6461, 6463, 5, 647, 0, 0, 6462, 6461, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6479, 5, 381, 0, 0, 6465, 6466, 5, 453, 0, 0, 6466, 6479, 5, 645, 0, 0, 6467, 6479, 5, 536, 0, 0, 6468, 6479, 5, 734, 0, 0, 6469, 6471, 5, 408, 0, 0, 6470, 6469, 1, 0, 0, 0, 6470, 6471, 1, 0, 0, 0, 6471, 6472, 1, 0, 0, 0, 6472, 6479, 5, 544, 0, 0, 6473, 6479, 5, 546, 0, 0, 6474, 6475, 5, 598, 0, 0, 6475, 6479, 5, 422, 0, 0, 6476, 6479, 5, 312, 0, 0, 6477, 6479, 5, 356, 0, 0, 6478, 6462, 1, 0, 0, 0, 6478, 6465, 1, 0, 0, 0, 6478, 6467, 1, 0, 0, 0, 6478, 6468, 1, 0, 0, 0, 6478, 6470, 1, 0, 0, 0, 6478, 6473, 1, 0, 0, 0, 6478, 6474, 1, 0, 0, 0, 6478, 6476, 1, 0, 0, 0, 6478, 6477, 1, 0, 0, 0, 6479, 565, 1, 0, 0, 0, 6480, 6492, 5, 386, 0, 0, 6481, 6482, 5, 173, 0, 0, 6482, 6492, 5, 645, 0, 0, 6483, 6485, 5, 392, 0, 0, 6484, 6483, 1, 0, 0, 0, 6484, 6485, 1, 0, 0, 0, 6485, 6487, 1, 0, 0, 0, 6486, 6488, 5, 408, 0, 0, 6487, 6486, 1, 0, 0, 0, 6487, 6488, 1, 0, 0, 0, 6488, 6489, 1, 0, 0, 0, 6489, 6492, 5, 752, 0, 0, 6490, 6492, 5, 667, 0, 0, 6491, 6480, 1, 0, 0, 0, 6491, 6481, 1, 0, 0, 0, 6491, 6484, 1, 0, 0, 0, 6491, 6490, 1, 0, 0, 0, 6492, 567, 1, 0, 0, 0, 6493, 6506, 5, 7, 0, 0, 6494, 6495, 5, 320, 0, 0, 6495, 6506, 5, 437, 0, 0, 6496, 6497, 5, 355, 0, 0, 6497, 6506, 5, 656, 0, 0, 6498, 6506, 5, 358, 0, 0, 6499, 6506, 5, 439, 0, 0, 6500, 6506, 5, 802, 0, 0, 6501, 6502, 5, 521, 0, 0, 6502, 6506, 5, 397, 0, 0, 6503, 6506, 5, 605, 0, 0, 6504, 6506, 5, 655, 0, 0, 6505, 6493, 1, 0, 0, 0, 6505, 6494, 1, 0, 0, 0, 6505, 6496, 1, 0, 0, 0, 6505, 6498, 1, 0, 0, 0, 6505, 6499, 1, 0, 0, 0, 6505, 6500, 1, 0, 0, 0, 6505, 6501, 1, 0, 0, 0, 6505, 6503, 1, 0, 0, 0, 6505, 6504, 1, 0, 0, 0, 6506, 569, 1, 0, 0, 0, 6507, 6508, 5, 318, 0, 0, 6508, 6509, 5, 882, 0, 0, 6509, 571, 1, 0, 0, 0, 6510, 6511, 5, 324, 0, 0, 6511, 6529, 5, 82, 0, 0, 6512, 6517, 3, 592, 296, 0, 6513, 6514, 5, 868, 0, 0, 6514, 6516, 3, 592, 296, 0, 6515, 6513, 1, 0, 0, 0, 6516, 6519, 1, 0, 0, 0, 6517, 6515, 1, 0, 0, 0, 6517, 6518, 1, 0, 0, 0, 6518, 6530, 1, 0, 0, 0, 6519, 6517, 1, 0, 0, 0, 6520, 6521, 3, 652, 326, 0, 6521, 6522, 5, 130, 0, 0, 6522, 6525, 5, 866, 0, 0, 6523, 6526, 3, 670, 335, 0, 6524, 6526, 5, 7, 0, 0, 6525, 6523, 1, 0, 0, 0, 6525, 6524, 1, 0, 0, 0, 6526, 6527, 1, 0, 0, 0, 6527, 6528, 5, 867, 0, 0, 6528, 6530, 1, 0, 0, 0, 6529, 6512, 1, 0, 0, 0, 6529, 6520, 1, 0, 0, 0, 6530, 6531, 1, 0, 0, 0, 6531, 6532, 5, 80, 0, 0, 6532, 6533, 3, 628, 314, 0, 6533, 573, 1, 0, 0, 0, 6534, 6536, 5, 404, 0, 0, 6535, 6537, 3, 538, 269, 0, 6536, 6535, 1, 0, 0, 0, 6536, 6537, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 6543, 3, 594, 297, 0, 6539, 6540, 5, 868, 0, 0, 6540, 6542, 3, 594, 297, 0, 6541, 6539, 1, 0, 0, 0, 6542, 6545, 1, 0, 0, 0, 6543, 6541, 1, 0, 0, 0, 6543, 6544, 1, 0, 0, 0, 6544, 575, 1, 0, 0, 0, 6545, 6543, 1, 0, 0, 0, 6546, 6548, 5, 94, 0, 0, 6547, 6549, 7, 102, 0, 0, 6548, 6547, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 6550, 1, 0, 0, 0, 6550, 6551, 3, 804, 402, 0, 6551, 577, 1, 0, 0, 0, 6552, 6553, 5, 103, 0, 0, 6553, 6554, 5, 82, 0, 0, 6554, 6555, 5, 88, 0, 0, 6555, 6556, 5, 324, 0, 0, 6556, 6561, 3, 598, 299, 0, 6557, 6558, 5, 868, 0, 0, 6558, 6560, 3, 598, 299, 0, 6559, 6557, 1, 0, 0, 0, 6560, 6563, 1, 0, 0, 0, 6561, 6559, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 579, 1, 0, 0, 0, 6563, 6561, 1, 0, 0, 0, 6564, 6565, 5, 575, 0, 0, 6565, 6570, 3, 582, 291, 0, 6566, 6567, 5, 868, 0, 0, 6567, 6569, 3, 582, 291, 0, 6568, 6566, 1, 0, 0, 0, 6569, 6572, 1, 0, 0, 0, 6570, 6568, 1, 0, 0, 0, 6570, 6571, 1, 0, 0, 0, 6571, 581, 1, 0, 0, 0, 6572, 6570, 1, 0, 0, 0, 6573, 6579, 5, 453, 0, 0, 6574, 6579, 5, 563, 0, 0, 6575, 6576, 5, 548, 0, 0, 6576, 6579, 5, 324, 0, 0, 6577, 6579, 5, 598, 0, 0, 6578, 6573, 1, 0, 0, 0, 6578, 6574, 1, 0, 0, 0, 6578, 6575, 1, 0, 0, 0, 6578, 6577, 1, 0, 0, 0, 6579, 583, 1, 0, 0, 0, 6580, 6581, 5, 575, 0, 0, 6581, 6586, 5, 531, 0, 0, 6582, 6584, 3, 758, 379, 0, 6583, 6582, 1, 0, 0, 0, 6583, 6584, 1, 0, 0, 0, 6584, 6585, 1, 0, 0, 0, 6585, 6587, 3, 706, 353, 0, 6586, 6583, 1, 0, 0, 0, 6586, 6587, 1, 0, 0, 0, 6587, 585, 1, 0, 0, 0, 6588, 6589, 5, 575, 0, 0, 6589, 6591, 7, 64, 0, 0, 6590, 6592, 5, 7, 0, 0, 6591, 6590, 1, 0, 0, 0, 6591, 6592, 1, 0, 0, 0, 6592, 6594, 1, 0, 0, 0, 6593, 6595, 3, 390, 195, 0, 6594, 6593, 1, 0, 0, 0, 6594, 6595, 1, 0, 0, 0, 6595, 587, 1, 0, 0, 0, 6596, 6597, 5, 576, 0, 0, 6597, 589, 1, 0, 0, 0, 6598, 6599, 5, 749, 0, 0, 6599, 591, 1, 0, 0, 0, 6600, 6606, 3, 652, 326, 0, 6601, 6602, 7, 19, 0, 0, 6602, 6603, 5, 866, 0, 0, 6603, 6604, 3, 640, 320, 0, 6604, 6605, 5, 867, 0, 0, 6605, 6607, 1, 0, 0, 0, 6606, 6601, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 593, 1, 0, 0, 0, 6608, 6627, 5, 366, 0, 0, 6609, 6627, 5, 422, 0, 0, 6610, 6612, 7, 103, 0, 0, 6611, 6610, 1, 0, 0, 0, 6611, 6612, 1, 0, 0, 0, 6612, 6613, 1, 0, 0, 0, 6613, 6627, 5, 452, 0, 0, 6614, 6627, 5, 517, 0, 0, 6615, 6627, 5, 734, 0, 0, 6616, 6617, 5, 548, 0, 0, 6617, 6627, 5, 324, 0, 0, 6618, 6627, 5, 645, 0, 0, 6619, 6627, 5, 680, 0, 0, 6620, 6624, 5, 752, 0, 0, 6621, 6622, 5, 194, 0, 0, 6622, 6623, 5, 135, 0, 0, 6623, 6625, 5, 104, 0, 0, 6624, 6621, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6627, 1, 0, 0, 0, 6626, 6608, 1, 0, 0, 0, 6626, 6609, 1, 0, 0, 0, 6626, 6611, 1, 0, 0, 0, 6626, 6614, 1, 0, 0, 0, 6626, 6615, 1, 0, 0, 0, 6626, 6616, 1, 0, 0, 0, 6626, 6618, 1, 0, 0, 0, 6626, 6619, 1, 0, 0, 0, 6626, 6620, 1, 0, 0, 0, 6627, 6641, 1, 0, 0, 0, 6628, 6629, 5, 556, 0, 0, 6629, 6631, 5, 452, 0, 0, 6630, 6632, 3, 390, 195, 0, 6631, 6630, 1, 0, 0, 0, 6631, 6632, 1, 0, 0, 0, 6632, 6641, 1, 0, 0, 0, 6633, 6635, 7, 61, 0, 0, 6634, 6636, 3, 650, 325, 0, 6635, 6634, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6638, 1, 0, 0, 0, 6637, 6639, 3, 596, 298, 0, 6638, 6637, 1, 0, 0, 0, 6638, 6639, 1, 0, 0, 0, 6639, 6641, 1, 0, 0, 0, 6640, 6626, 1, 0, 0, 0, 6640, 6628, 1, 0, 0, 0, 6640, 6633, 1, 0, 0, 0, 6641, 595, 1, 0, 0, 0, 6642, 6643, 5, 194, 0, 0, 6643, 6644, 5, 135, 0, 0, 6644, 6648, 5, 104, 0, 0, 6645, 6646, 5, 65, 0, 0, 6646, 6648, 5, 391, 0, 0, 6647, 6642, 1, 0, 0, 0, 6647, 6645, 1, 0, 0, 0, 6648, 597, 1, 0, 0, 0, 6649, 6657, 3, 652, 326, 0, 6650, 6651, 5, 130, 0, 0, 6651, 6654, 5, 866, 0, 0, 6652, 6655, 3, 670, 335, 0, 6653, 6655, 5, 7, 0, 0, 6654, 6652, 1, 0, 0, 0, 6654, 6653, 1, 0, 0, 0, 6655, 6656, 1, 0, 0, 0, 6656, 6658, 5, 867, 0, 0, 6657, 6650, 1, 0, 0, 0, 6657, 6658, 1, 0, 0, 0, 6658, 6666, 1, 0, 0, 0, 6659, 6661, 7, 19, 0, 0, 6660, 6659, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6662, 1, 0, 0, 0, 6662, 6663, 5, 866, 0, 0, 6663, 6664, 3, 640, 320, 0, 6664, 6665, 5, 867, 0, 0, 6665, 6667, 1, 0, 0, 0, 6666, 6660, 1, 0, 0, 0, 6666, 6667, 1, 0, 0, 0, 6667, 6670, 1, 0, 0, 0, 6668, 6669, 5, 79, 0, 0, 6669, 6671, 5, 446, 0, 0, 6670, 6668, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 599, 1, 0, 0, 0, 6672, 6673, 7, 104, 0, 0, 6673, 6676, 3, 652, 326, 0, 6674, 6677, 3, 662, 331, 0, 6675, 6677, 5, 882, 0, 0, 6676, 6674, 1, 0, 0, 0, 6676, 6675, 1, 0, 0, 0, 6676, 6677, 1, 0, 0, 0, 6677, 601, 1, 0, 0, 0, 6678, 6684, 7, 104, 0, 0, 6679, 6685, 5, 392, 0, 0, 6680, 6685, 5, 528, 0, 0, 6681, 6682, 5, 826, 0, 0, 6682, 6683, 5, 857, 0, 0, 6683, 6685, 7, 105, 0, 0, 6684, 6679, 1, 0, 0, 0, 6684, 6680, 1, 0, 0, 0, 6684, 6681, 1, 0, 0, 0, 6684, 6685, 1, 0, 0, 0, 6685, 6686, 1, 0, 0, 0, 6686, 6687, 3, 624, 312, 0, 6687, 603, 1, 0, 0, 0, 6688, 6689, 7, 104, 0, 0, 6689, 6693, 5, 10, 0, 0, 6690, 6691, 5, 826, 0, 0, 6691, 6692, 5, 857, 0, 0, 6692, 6694, 5, 666, 0, 0, 6693, 6690, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6695, 1, 0, 0, 0, 6695, 6696, 3, 210, 105, 0, 6696, 605, 1, 0, 0, 0, 6697, 6698, 5, 419, 0, 0, 6698, 6699, 5, 882, 0, 0, 6699, 607, 1, 0, 0, 0, 6700, 6701, 5, 187, 0, 0, 6701, 6702, 3, 628, 314, 0, 6702, 609, 1, 0, 0, 0, 6703, 6711, 5, 158, 0, 0, 6704, 6706, 5, 164, 0, 0, 6705, 6707, 5, 682, 0, 0, 6706, 6705, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6712, 3, 716, 358, 0, 6709, 6712, 5, 889, 0, 0, 6710, 6712, 5, 890, 0, 0, 6711, 6704, 1, 0, 0, 0, 6711, 6709, 1, 0, 0, 0, 6711, 6710, 1, 0, 0, 0, 6712, 6722, 1, 0, 0, 0, 6713, 6714, 5, 155, 0, 0, 6714, 6719, 3, 614, 307, 0, 6715, 6716, 5, 868, 0, 0, 6716, 6718, 3, 614, 307, 0, 6717, 6715, 1, 0, 0, 0, 6718, 6721, 1, 0, 0, 0, 6719, 6717, 1, 0, 0, 0, 6719, 6720, 1, 0, 0, 0, 6720, 6723, 1, 0, 0, 0, 6721, 6719, 1, 0, 0, 0, 6722, 6713, 1, 0, 0, 0, 6722, 6723, 1, 0, 0, 0, 6723, 611, 1, 0, 0, 0, 6724, 6732, 5, 145, 0, 0, 6725, 6727, 5, 164, 0, 0, 6726, 6728, 5, 682, 0, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 6729, 1, 0, 0, 0, 6729, 6733, 3, 716, 358, 0, 6730, 6733, 5, 889, 0, 0, 6731, 6733, 5, 890, 0, 0, 6732, 6725, 1, 0, 0, 0, 6732, 6730, 1, 0, 0, 0, 6732, 6731, 1, 0, 0, 0, 6732, 6733, 1, 0, 0, 0, 6733, 6743, 1, 0, 0, 0, 6734, 6735, 5, 155, 0, 0, 6735, 6740, 3, 614, 307, 0, 6736, 6737, 5, 868, 0, 0, 6737, 6739, 3, 614, 307, 0, 6738, 6736, 1, 0, 0, 0, 6739, 6742, 1, 0, 0, 0, 6740, 6738, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 6744, 1, 0, 0, 0, 6742, 6740, 1, 0, 0, 0, 6743, 6734, 1, 0, 0, 0, 6743, 6744, 1, 0, 0, 0, 6744, 613, 1, 0, 0, 0, 6745, 6746, 7, 106, 0, 0, 6746, 6751, 5, 857, 0, 0, 6747, 6752, 3, 716, 358, 0, 6748, 6752, 5, 883, 0, 0, 6749, 6752, 3, 686, 343, 0, 6750, 6752, 3, 708, 354, 0, 6751, 6747, 1, 0, 0, 0, 6751, 6748, 1, 0, 0, 0, 6751, 6749, 1, 0, 0, 0, 6751, 6750, 1, 0, 0, 0, 6752, 615, 1, 0, 0, 0, 6753, 6755, 5, 194, 0, 0, 6754, 6756, 5, 552, 0, 0, 6755, 6754, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 6757, 1, 0, 0, 0, 6757, 6762, 3, 52, 26, 0, 6758, 6759, 5, 868, 0, 0, 6759, 6761, 3, 52, 26, 0, 6760, 6758, 1, 0, 0, 0, 6761, 6764, 1, 0, 0, 0, 6762, 6760, 1, 0, 0, 0, 6762, 6763, 1, 0, 0, 0, 6763, 617, 1, 0, 0, 0, 6764, 6762, 1, 0, 0, 0, 6765, 6766, 5, 173, 0, 0, 6766, 6768, 3, 652, 326, 0, 6767, 6769, 3, 258, 129, 0, 6768, 6767, 1, 0, 0, 0, 6768, 6769, 1, 0, 0, 0, 6769, 6771, 1, 0, 0, 0, 6770, 6772, 3, 318, 159, 0, 6771, 6770, 1, 0, 0, 0, 6771, 6772, 1, 0, 0, 0, 6772, 619, 1, 0, 0, 0, 6773, 6775, 5, 72, 0, 0, 6774, 6776, 7, 107, 0, 0, 6775, 6774, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 6777, 1, 0, 0, 0, 6777, 6809, 5, 48, 0, 0, 6778, 6779, 3, 558, 279, 0, 6779, 6780, 5, 857, 0, 0, 6780, 6788, 7, 108, 0, 0, 6781, 6782, 5, 868, 0, 0, 6782, 6783, 3, 558, 279, 0, 6783, 6784, 5, 857, 0, 0, 6784, 6785, 7, 108, 0, 0, 6785, 6787, 1, 0, 0, 0, 6786, 6781, 1, 0, 0, 0, 6787, 6790, 1, 0, 0, 0, 6788, 6786, 1, 0, 0, 0, 6788, 6789, 1, 0, 0, 0, 6789, 6810, 1, 0, 0, 0, 6790, 6788, 1, 0, 0, 0, 6791, 6794, 5, 30, 0, 0, 6792, 6795, 3, 712, 356, 0, 6793, 6795, 3, 558, 279, 0, 6794, 6792, 1, 0, 0, 0, 6794, 6793, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6797, 3, 558, 279, 0, 6797, 6798, 5, 857, 0, 0, 6798, 6806, 3, 622, 311, 0, 6799, 6800, 5, 868, 0, 0, 6800, 6801, 3, 558, 279, 0, 6801, 6802, 5, 857, 0, 0, 6802, 6803, 3, 622, 311, 0, 6803, 6805, 1, 0, 0, 0, 6804, 6799, 1, 0, 0, 0, 6805, 6808, 1, 0, 0, 0, 6806, 6804, 1, 0, 0, 0, 6806, 6807, 1, 0, 0, 0, 6807, 6810, 1, 0, 0, 0, 6808, 6806, 1, 0, 0, 0, 6809, 6778, 1, 0, 0, 0, 6809, 6791, 1, 0, 0, 0, 6810, 621, 1, 0, 0, 0, 6811, 6812, 7, 109, 0, 0, 6812, 623, 1, 0, 0, 0, 6813, 6819, 3, 210, 105, 0, 6814, 6819, 3, 186, 93, 0, 6815, 6819, 3, 192, 96, 0, 6816, 6819, 3, 208, 104, 0, 6817, 6819, 3, 220, 110, 0, 6818, 6813, 1, 0, 0, 0, 6818, 6814, 1, 0, 0, 0, 6818, 6815, 1, 0, 0, 0, 6818, 6816, 1, 0, 0, 0, 6818, 6817, 1, 0, 0, 0, 6819, 6824, 1, 0, 0, 0, 6820, 6821, 5, 65, 0, 0, 6821, 6822, 5, 349, 0, 0, 6822, 6824, 3, 706, 353, 0, 6823, 6818, 1, 0, 0, 0, 6823, 6820, 1, 0, 0, 0, 6824, 625, 1, 0, 0, 0, 6825, 6826, 3, 702, 351, 0, 6826, 627, 1, 0, 0, 0, 6827, 6828, 3, 702, 351, 0, 6828, 629, 1, 0, 0, 0, 6829, 6830, 3, 702, 351, 0, 6830, 631, 1, 0, 0, 0, 6831, 6832, 3, 702, 351, 0, 6832, 633, 1, 0, 0, 0, 6833, 6834, 3, 702, 351, 0, 6834, 635, 1, 0, 0, 0, 6835, 6836, 3, 702, 351, 0, 6836, 637, 1, 0, 0, 0, 6837, 6838, 3, 706, 353, 0, 6838, 639, 1, 0, 0, 0, 6839, 6844, 3, 642, 321, 0, 6840, 6841, 5, 868, 0, 0, 6841, 6843, 3, 642, 321, 0, 6842, 6840, 1, 0, 0, 0, 6843, 6846, 1, 0, 0, 0, 6844, 6842, 1, 0, 0, 0, 6844, 6845, 1, 0, 0, 0, 6845, 641, 1, 0, 0, 0, 6846, 6844, 1, 0, 0, 0, 6847, 6848, 3, 706, 353, 0, 6848, 643, 1, 0, 0, 0, 6849, 6850, 3, 706, 353, 0, 6850, 645, 1, 0, 0, 0, 6851, 6852, 3, 706, 353, 0, 6852, 647, 1, 0, 0, 0, 6853, 6854, 3, 702, 351, 0, 6854, 649, 1, 0, 0, 0, 6855, 6860, 3, 652, 326, 0, 6856, 6857, 5, 868, 0, 0, 6857, 6859, 3, 652, 326, 0, 6858, 6856, 1, 0, 0, 0, 6859, 6862, 1, 0, 0, 0, 6860, 6858, 1, 0, 0, 0, 6860, 6861, 1, 0, 0, 0, 6861, 651, 1, 0, 0, 0, 6862, 6860, 1, 0, 0, 0, 6863, 6864, 3, 702, 351, 0, 6864, 653, 1, 0, 0, 0, 6865, 6870, 3, 656, 328, 0, 6866, 6867, 5, 868, 0, 0, 6867, 6869, 3, 656, 328, 0, 6868, 6866, 1, 0, 0, 0, 6869, 6872, 1, 0, 0, 0, 6870, 6868, 1, 0, 0, 0, 6870, 6871, 1, 0, 0, 0, 6871, 655, 1, 0, 0, 0, 6872, 6870, 1, 0, 0, 0, 6873, 6876, 3, 684, 342, 0, 6874, 6876, 3, 706, 353, 0, 6875, 6873, 1, 0, 0, 0, 6875, 6874, 1, 0, 0, 0, 6876, 657, 1, 0, 0, 0, 6877, 6882, 3, 706, 353, 0, 6878, 6880, 3, 710, 355, 0, 6879, 6881, 3, 710, 355, 0, 6880, 6879, 1, 0, 0, 0, 6880, 6881, 1, 0, 0, 0, 6881, 6883, 1, 0, 0, 0, 6882, 6878, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6892, 1, 0, 0, 0, 6884, 6886, 9, 0, 0, 0, 6885, 6884, 1, 0, 0, 0, 6885, 6886, 1, 0, 0, 0, 6886, 6887, 1, 0, 0, 0, 6887, 6889, 3, 710, 355, 0, 6888, 6890, 3, 710, 355, 0, 6889, 6888, 1, 0, 0, 0, 6889, 6890, 1, 0, 0, 0, 6890, 6892, 1, 0, 0, 0, 6891, 6877, 1, 0, 0, 0, 6891, 6885, 1, 0, 0, 0, 6892, 659, 1, 0, 0, 0, 6893, 6898, 3, 662, 331, 0, 6894, 6895, 5, 868, 0, 0, 6895, 6897, 3, 662, 331, 0, 6896, 6894, 1, 0, 0, 0, 6897, 6900, 1, 0, 0, 0, 6898, 6896, 1, 0, 0, 0, 6898, 6899, 1, 0, 0, 0, 6899, 661, 1, 0, 0, 0, 6900, 6898, 1, 0, 0, 0, 6901, 6906, 3, 706, 353, 0, 6902, 6904, 3, 710, 355, 0, 6903, 6905, 3, 710, 355, 0, 6904, 6903, 1, 0, 0, 0, 6904, 6905, 1, 0, 0, 0, 6905, 6907, 1, 0, 0, 0, 6906, 6902, 1, 0, 0, 0, 6906, 6907, 1, 0, 0, 0, 6907, 6917, 1, 0, 0, 0, 6908, 6910, 9, 0, 0, 0, 6909, 6908, 1, 0, 0, 0, 6909, 6910, 1, 0, 0, 0, 6910, 6911, 1, 0, 0, 0, 6911, 6913, 3, 710, 355, 0, 6912, 6914, 3, 710, 355, 0, 6913, 6912, 1, 0, 0, 0, 6913, 6914, 1, 0, 0, 0, 6914, 6917, 1, 0, 0, 0, 6915, 6917, 4, 331, 3, 0, 6916, 6901, 1, 0, 0, 0, 6916, 6909, 1, 0, 0, 0, 6916, 6915, 1, 0, 0, 0, 6917, 663, 1, 0, 0, 0, 6918, 6919, 3, 706, 353, 0, 6919, 665, 1, 0, 0, 0, 6920, 6921, 3, 706, 353, 0, 6921, 667, 1, 0, 0, 0, 6922, 6923, 3, 706, 353, 0, 6923, 669, 1, 0, 0, 0, 6924, 6929, 3, 672, 336, 0, 6925, 6926, 5, 868, 0, 0, 6926, 6928, 3, 672, 336, 0, 6927, 6925, 1, 0, 0, 0, 6928, 6931, 1, 0, 0, 0, 6929, 6927, 1, 0, 0, 0, 6929, 6930, 1, 0, 0, 0, 6930, 671, 1, 0, 0, 0, 6931, 6929, 1, 0, 0, 0, 6932, 6933, 3, 706, 353, 0, 6933, 673, 1, 0, 0, 0, 6934, 6939, 3, 706, 353, 0, 6935, 6936, 5, 866, 0, 0, 6936, 6937, 3, 712, 356, 0, 6937, 6938, 5, 867, 0, 0, 6938, 6940, 1, 0, 0, 0, 6939, 6935, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6943, 1, 0, 0, 0, 6941, 6943, 3, 804, 402, 0, 6942, 6934, 1, 0, 0, 0, 6942, 6941, 1, 0, 0, 0, 6943, 6945, 1, 0, 0, 0, 6944, 6946, 7, 55, 0, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 675, 1, 0, 0, 0, 6947, 6948, 3, 678, 339, 0, 6948, 6949, 5, 878, 0, 0, 6949, 6950, 3, 712, 356, 0, 6950, 677, 1, 0, 0, 0, 6951, 6952, 3, 680, 340, 0, 6952, 6953, 5, 891, 0, 0, 6953, 679, 1, 0, 0, 0, 6954, 6959, 5, 882, 0, 0, 6955, 6959, 5, 889, 0, 0, 6956, 6959, 5, 704, 0, 0, 6957, 6959, 3, 834, 417, 0, 6958, 6954, 1, 0, 0, 0, 6958, 6955, 1, 0, 0, 0, 6958, 6956, 1, 0, 0, 0, 6958, 6957, 1, 0, 0, 0, 6959, 681, 1, 0, 0, 0, 6960, 6961, 7, 110, 0, 0, 6961, 683, 1, 0, 0, 0, 6962, 6964, 3, 680, 340, 0, 6963, 6965, 3, 682, 341, 0, 6964, 6963, 1, 0, 0, 0, 6964, 6965, 1, 0, 0, 0, 6965, 6968, 1, 0, 0, 0, 6966, 6968, 3, 60, 30, 0, 6967, 6962, 1, 0, 0, 0, 6967, 6966, 1, 0, 0, 0, 6968, 685, 1, 0, 0, 0, 6969, 6970, 7, 111, 0, 0, 6970, 687, 1, 0, 0, 0, 6971, 6976, 5, 228, 0, 0, 6972, 6976, 3, 824, 412, 0, 6973, 6976, 5, 882, 0, 0, 6974, 6976, 5, 879, 0, 0, 6975, 6971, 1, 0, 0, 0, 6975, 6972, 1, 0, 0, 0, 6975, 6973, 1, 0, 0, 0, 6975, 6974, 1, 0, 0, 0, 6976, 689, 1, 0, 0, 0, 6977, 6978, 3, 706, 353, 0, 6978, 691, 1, 0, 0, 0, 6979, 6983, 3, 694, 347, 0, 6980, 6983, 5, 889, 0, 0, 6981, 6983, 5, 882, 0, 0, 6982, 6979, 1, 0, 0, 0, 6982, 6980, 1, 0, 0, 0, 6982, 6981, 1, 0, 0, 0, 6983, 693, 1, 0, 0, 0, 6984, 6985, 7, 112, 0, 0, 6985, 695, 1, 0, 0, 0, 6986, 6987, 3, 712, 356, 0, 6987, 6988, 5, 854, 0, 0, 6988, 6989, 3, 712, 356, 0, 6989, 6990, 5, 854, 0, 0, 6990, 6991, 3, 712, 356, 0, 6991, 6992, 5, 854, 0, 0, 6992, 6993, 3, 712, 356, 0, 6993, 6994, 5, 854, 0, 0, 6994, 7000, 3, 712, 356, 0, 6995, 6996, 5, 878, 0, 0, 6996, 6997, 3, 712, 356, 0, 6997, 6998, 5, 854, 0, 0, 6998, 6999, 3, 712, 356, 0, 6999, 7001, 1, 0, 0, 0, 7000, 6995, 1, 0, 0, 0, 7001, 7002, 1, 0, 0, 0, 7002, 7000, 1, 0, 0, 0, 7002, 7003, 1, 0, 0, 0, 7003, 697, 1, 0, 0, 0, 7004, 7011, 3, 700, 350, 0, 7005, 7006, 5, 868, 0, 0, 7006, 7009, 3, 700, 350, 0, 7007, 7008, 5, 868, 0, 0, 7008, 7010, 3, 712, 356, 0, 7009, 7007, 1, 0, 0, 0, 7009, 7010, 1, 0, 0, 0, 7010, 7012, 1, 0, 0, 0, 7011, 7005, 1, 0, 0, 0, 7011, 7012, 1, 0, 0, 0, 7012, 699, 1, 0, 0, 0, 7013, 7021, 5, 882, 0, 0, 7014, 7021, 5, 887, 0, 0, 7015, 7017, 5, 884, 0, 0, 7016, 7015, 1, 0, 0, 0, 7017, 7018, 1, 0, 0, 0, 7018, 7016, 1, 0, 0, 0, 7018, 7019, 1, 0, 0, 0, 7019, 7021, 1, 0, 0, 0, 7020, 7013, 1, 0, 0, 0, 7020, 7014, 1, 0, 0, 0, 7020, 7016, 1, 0, 0, 0, 7021, 701, 1, 0, 0, 0, 7022, 7024, 3, 706, 353, 0, 7023, 7025, 3, 710, 355, 0, 7024, 7023, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 703, 1, 0, 0, 0, 7026, 7031, 3, 706, 353, 0, 7027, 7028, 5, 868, 0, 0, 7028, 7030, 3, 706, 353, 0, 7029, 7027, 1, 0, 0, 0, 7030, 7033, 1, 0, 0, 0, 7031, 7029, 1, 0, 0, 0, 7031, 7032, 1, 0, 0, 0, 7032, 705, 1, 0, 0, 0, 7033, 7031, 1, 0, 0, 0, 7034, 7038, 3, 708, 354, 0, 7035, 7038, 5, 879, 0, 0, 7036, 7038, 5, 882, 0, 0, 7037, 7034, 1, 0, 0, 0, 7037, 7035, 1, 0, 0, 0, 7037, 7036, 1, 0, 0, 0, 7038, 707, 1, 0, 0, 0, 7039, 7049, 5, 889, 0, 0, 7040, 7049, 3, 824, 412, 0, 7041, 7049, 3, 826, 413, 0, 7042, 7049, 3, 694, 347, 0, 7043, 7049, 3, 828, 414, 0, 7044, 7049, 3, 830, 415, 0, 7045, 7049, 3, 832, 416, 0, 7046, 7049, 3, 834, 417, 0, 7047, 7049, 3, 796, 398, 0, 7048, 7039, 1, 0, 0, 0, 7048, 7040, 1, 0, 0, 0, 7048, 7041, 1, 0, 0, 0, 7048, 7042, 1, 0, 0, 0, 7048, 7043, 1, 0, 0, 0, 7048, 7044, 1, 0, 0, 0, 7048, 7045, 1, 0, 0, 0, 7048, 7046, 1, 0, 0, 0, 7048, 7047, 1, 0, 0, 0, 7049, 709, 1, 0, 0, 0, 7050, 7051, 5, 865, 0, 0, 7051, 7055, 5, 889, 0, 0, 7052, 7053, 5, 865, 0, 0, 7053, 7055, 3, 706, 353, 0, 7054, 7050, 1, 0, 0, 0, 7054, 7052, 1, 0, 0, 0, 7055, 711, 1, 0, 0, 0, 7056, 7057, 7, 113, 0, 0, 7057, 713, 1, 0, 0, 0, 7058, 7061, 5, 880, 0, 0, 7059, 7061, 3, 712, 356, 0, 7060, 7058, 1, 0, 0, 0, 7060, 7059, 1, 0, 0, 0, 7061, 715, 1, 0, 0, 0, 7062, 7064, 5, 888, 0, 0, 7063, 7062, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7068, 5, 882, 0, 0, 7066, 7068, 5, 881, 0, 0, 7067, 7063, 1, 0, 0, 0, 7067, 7066, 1, 0, 0, 0, 7068, 7070, 1, 0, 0, 0, 7069, 7071, 5, 882, 0, 0, 7070, 7069, 1, 0, 0, 0, 7071, 7072, 1, 0, 0, 0, 7072, 7070, 1, 0, 0, 0, 7072, 7073, 1, 0, 0, 0, 7073, 7086, 1, 0, 0, 0, 7074, 7076, 5, 888, 0, 0, 7075, 7074, 1, 0, 0, 0, 7075, 7076, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7080, 5, 882, 0, 0, 7078, 7080, 5, 881, 0, 0, 7079, 7075, 1, 0, 0, 0, 7079, 7078, 1, 0, 0, 0, 7080, 7083, 1, 0, 0, 0, 7081, 7082, 5, 28, 0, 0, 7082, 7084, 3, 690, 345, 0, 7083, 7081, 1, 0, 0, 0, 7083, 7084, 1, 0, 0, 0, 7084, 7086, 1, 0, 0, 0, 7085, 7067, 1, 0, 0, 0, 7085, 7079, 1, 0, 0, 0, 7086, 717, 1, 0, 0, 0, 7087, 7088, 7, 114, 0, 0, 7088, 719, 1, 0, 0, 0, 7089, 7091, 5, 888, 0, 0, 7090, 7089, 1, 0, 0, 0, 7090, 7091, 1, 0, 0, 0, 7091, 7092, 1, 0, 0, 0, 7092, 7093, 5, 884, 0, 0, 7093, 721, 1, 0, 0, 0, 7094, 7096, 5, 114, 0, 0, 7095, 7094, 1, 0, 0, 0, 7095, 7096, 1, 0, 0, 0, 7096, 7097, 1, 0, 0, 0, 7097, 7098, 7, 115, 0, 0, 7098, 723, 1, 0, 0, 0, 7099, 7112, 3, 716, 358, 0, 7100, 7112, 3, 712, 356, 0, 7101, 7102, 5, 854, 0, 0, 7102, 7112, 3, 712, 356, 0, 7103, 7112, 3, 720, 360, 0, 7104, 7112, 3, 718, 359, 0, 7105, 7112, 5, 885, 0, 0, 7106, 7112, 5, 887, 0, 0, 7107, 7109, 5, 114, 0, 0, 7108, 7107, 1, 0, 0, 0, 7108, 7109, 1, 0, 0, 0, 7109, 7110, 1, 0, 0, 0, 7110, 7112, 7, 115, 0, 0, 7111, 7099, 1, 0, 0, 0, 7111, 7100, 1, 0, 0, 0, 7111, 7101, 1, 0, 0, 0, 7111, 7103, 1, 0, 0, 0, 7111, 7104, 1, 0, 0, 0, 7111, 7105, 1, 0, 0, 0, 7111, 7106, 1, 0, 0, 0, 7111, 7108, 1, 0, 0, 0, 7112, 725, 1, 0, 0, 0, 7113, 7115, 7, 116, 0, 0, 7114, 7116, 5, 240, 0, 0, 7115, 7114, 1, 0, 0, 0, 7115, 7116, 1, 0, 0, 0, 7116, 7118, 1, 0, 0, 0, 7117, 7119, 3, 732, 366, 0, 7118, 7117, 1, 0, 0, 0, 7118, 7119, 1, 0, 0, 0, 7119, 7121, 1, 0, 0, 0, 7120, 7122, 5, 228, 0, 0, 7121, 7120, 1, 0, 0, 0, 7121, 7122, 1, 0, 0, 0, 7122, 7126, 1, 0, 0, 0, 7123, 7124, 3, 58, 29, 0, 7124, 7125, 3, 688, 344, 0, 7125, 7127, 1, 0, 0, 0, 7126, 7123, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7131, 1, 0, 0, 0, 7128, 7129, 5, 28, 0, 0, 7129, 7132, 3, 690, 345, 0, 7130, 7132, 5, 228, 0, 0, 7131, 7128, 1, 0, 0, 0, 7131, 7130, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7240, 1, 0, 0, 0, 7133, 7134, 5, 227, 0, 0, 7134, 7135, 7, 117, 0, 0, 7135, 7137, 5, 240, 0, 0, 7136, 7138, 3, 732, 366, 0, 7137, 7136, 1, 0, 0, 0, 7137, 7138, 1, 0, 0, 0, 7138, 7140, 1, 0, 0, 0, 7139, 7141, 5, 228, 0, 0, 7140, 7139, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7240, 1, 0, 0, 0, 7142, 7143, 5, 227, 0, 0, 7143, 7145, 7, 118, 0, 0, 7144, 7146, 3, 732, 366, 0, 7145, 7144, 1, 0, 0, 0, 7145, 7146, 1, 0, 0, 0, 7146, 7148, 1, 0, 0, 0, 7147, 7149, 5, 228, 0, 0, 7148, 7147, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7240, 1, 0, 0, 0, 7150, 7151, 5, 498, 0, 0, 7151, 7153, 5, 225, 0, 0, 7152, 7154, 3, 732, 366, 0, 7153, 7152, 1, 0, 0, 0, 7153, 7154, 1, 0, 0, 0, 7154, 7156, 1, 0, 0, 0, 7155, 7157, 5, 228, 0, 0, 7156, 7155, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7240, 1, 0, 0, 0, 7158, 7160, 7, 119, 0, 0, 7159, 7161, 3, 732, 366, 0, 7160, 7159, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7165, 1, 0, 0, 0, 7162, 7164, 7, 120, 0, 0, 7163, 7162, 1, 0, 0, 0, 7164, 7167, 1, 0, 0, 0, 7165, 7163, 1, 0, 0, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7240, 1, 0, 0, 0, 7167, 7165, 1, 0, 0, 0, 7168, 7170, 5, 210, 0, 0, 7169, 7171, 3, 734, 367, 0, 7170, 7169, 1, 0, 0, 0, 7170, 7171, 1, 0, 0, 0, 7171, 7175, 1, 0, 0, 0, 7172, 7174, 7, 120, 0, 0, 7173, 7172, 1, 0, 0, 0, 7174, 7177, 1, 0, 0, 0, 7175, 7173, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7240, 1, 0, 0, 0, 7177, 7175, 1, 0, 0, 0, 7178, 7180, 5, 211, 0, 0, 7179, 7181, 5, 212, 0, 0, 7180, 7179, 1, 0, 0, 0, 7180, 7181, 1, 0, 0, 0, 7181, 7183, 1, 0, 0, 0, 7182, 7184, 3, 734, 367, 0, 7183, 7182, 1, 0, 0, 0, 7183, 7184, 1, 0, 0, 0, 7184, 7188, 1, 0, 0, 0, 7185, 7187, 7, 120, 0, 0, 7186, 7185, 1, 0, 0, 0, 7187, 7190, 1, 0, 0, 0, 7188, 7186, 1, 0, 0, 0, 7188, 7189, 1, 0, 0, 0, 7189, 7240, 1, 0, 0, 0, 7190, 7188, 1, 0, 0, 0, 7191, 7193, 7, 121, 0, 0, 7192, 7194, 3, 736, 368, 0, 7193, 7192, 1, 0, 0, 0, 7193, 7194, 1, 0, 0, 0, 7194, 7198, 1, 0, 0, 0, 7195, 7197, 7, 120, 0, 0, 7196, 7195, 1, 0, 0, 0, 7197, 7200, 1, 0, 0, 0, 7198, 7196, 1, 0, 0, 0, 7198, 7199, 1, 0, 0, 0, 7199, 7240, 1, 0, 0, 0, 7200, 7198, 1, 0, 0, 0, 7201, 7240, 7, 122, 0, 0, 7202, 7204, 7, 123, 0, 0, 7203, 7205, 3, 732, 366, 0, 7204, 7203, 1, 0, 0, 0, 7204, 7205, 1, 0, 0, 0, 7205, 7240, 1, 0, 0, 0, 7206, 7207, 7, 124, 0, 0, 7207, 7209, 3, 728, 364, 0, 7208, 7210, 5, 228, 0, 0, 7209, 7208, 1, 0, 0, 0, 7209, 7210, 1, 0, 0, 0, 7210, 7214, 1, 0, 0, 0, 7211, 7212, 3, 58, 29, 0, 7212, 7213, 3, 688, 344, 0, 7213, 7215, 1, 0, 0, 0, 7214, 7211, 1, 0, 0, 0, 7214, 7215, 1, 0, 0, 0, 7215, 7240, 1, 0, 0, 0, 7216, 7219, 7, 125, 0, 0, 7217, 7218, 5, 834, 0, 0, 7218, 7220, 3, 712, 356, 0, 7219, 7217, 1, 0, 0, 0, 7219, 7220, 1, 0, 0, 0, 7220, 7240, 1, 0, 0, 0, 7221, 7223, 5, 233, 0, 0, 7222, 7224, 5, 225, 0, 0, 7223, 7222, 1, 0, 0, 0, 7223, 7224, 1, 0, 0, 0, 7224, 7226, 1, 0, 0, 0, 7225, 7227, 5, 228, 0, 0, 7226, 7225, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7231, 1, 0, 0, 0, 7228, 7229, 3, 58, 29, 0, 7229, 7230, 3, 688, 344, 0, 7230, 7232, 1, 0, 0, 0, 7231, 7228, 1, 0, 0, 0, 7231, 7232, 1, 0, 0, 0, 7232, 7235, 1, 0, 0, 0, 7233, 7234, 5, 28, 0, 0, 7234, 7236, 3, 690, 345, 0, 7235, 7233, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7240, 1, 0, 0, 0, 7237, 7238, 5, 233, 0, 0, 7238, 7240, 5, 229, 0, 0, 7239, 7113, 1, 0, 0, 0, 7239, 7133, 1, 0, 0, 0, 7239, 7142, 1, 0, 0, 0, 7239, 7150, 1, 0, 0, 0, 7239, 7158, 1, 0, 0, 0, 7239, 7168, 1, 0, 0, 0, 7239, 7178, 1, 0, 0, 0, 7239, 7191, 1, 0, 0, 0, 7239, 7201, 1, 0, 0, 0, 7239, 7202, 1, 0, 0, 0, 7239, 7206, 1, 0, 0, 0, 7239, 7216, 1, 0, 0, 0, 7239, 7221, 1, 0, 0, 0, 7239, 7237, 1, 0, 0, 0, 7240, 727, 1, 0, 0, 0, 7241, 7242, 5, 866, 0, 0, 7242, 7247, 5, 882, 0, 0, 7243, 7244, 5, 868, 0, 0, 7244, 7246, 5, 882, 0, 0, 7245, 7243, 1, 0, 0, 0, 7246, 7249, 1, 0, 0, 0, 7247, 7245, 1, 0, 0, 0, 7247, 7248, 1, 0, 0, 0, 7248, 7250, 1, 0, 0, 0, 7249, 7247, 1, 0, 0, 0, 7250, 7251, 5, 867, 0, 0, 7251, 729, 1, 0, 0, 0, 7252, 7254, 7, 126, 0, 0, 7253, 7255, 3, 732, 366, 0, 7254, 7253, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7275, 1, 0, 0, 0, 7256, 7258, 5, 224, 0, 0, 7257, 7259, 3, 732, 366, 0, 7258, 7257, 1, 0, 0, 0, 7258, 7259, 1, 0, 0, 0, 7259, 7263, 1, 0, 0, 0, 7260, 7261, 3, 58, 29, 0, 7261, 7262, 3, 688, 344, 0, 7262, 7264, 1, 0, 0, 0, 7263, 7260, 1, 0, 0, 0, 7263, 7264, 1, 0, 0, 0, 7264, 7275, 1, 0, 0, 0, 7265, 7275, 7, 127, 0, 0, 7266, 7268, 7, 128, 0, 0, 7267, 7269, 3, 736, 368, 0, 7268, 7267, 1, 0, 0, 0, 7268, 7269, 1, 0, 0, 0, 7269, 7275, 1, 0, 0, 0, 7270, 7272, 7, 129, 0, 0, 7271, 7273, 7, 130, 0, 0, 7272, 7271, 1, 0, 0, 0, 7272, 7273, 1, 0, 0, 0, 7273, 7275, 1, 0, 0, 0, 7274, 7252, 1, 0, 0, 0, 7274, 7256, 1, 0, 0, 0, 7274, 7265, 1, 0, 0, 0, 7274, 7266, 1, 0, 0, 0, 7274, 7270, 1, 0, 0, 0, 7275, 7277, 1, 0, 0, 0, 7276, 7278, 5, 12, 0, 0, 7277, 7276, 1, 0, 0, 0, 7277, 7278, 1, 0, 0, 0, 7278, 731, 1, 0, 0, 0, 7279, 7280, 5, 866, 0, 0, 7280, 7281, 3, 712, 356, 0, 7281, 7282, 5, 867, 0, 0, 7282, 733, 1, 0, 0, 0, 7283, 7284, 5, 866, 0, 0, 7284, 7285, 3, 712, 356, 0, 7285, 7286, 5, 868, 0, 0, 7286, 7287, 3, 712, 356, 0, 7287, 7288, 5, 867, 0, 0, 7288, 735, 1, 0, 0, 0, 7289, 7290, 5, 866, 0, 0, 7290, 7293, 3, 712, 356, 0, 7291, 7292, 5, 868, 0, 0, 7292, 7294, 3, 712, 356, 0, 7293, 7291, 1, 0, 0, 0, 7293, 7294, 1, 0, 0, 0, 7294, 7295, 1, 0, 0, 0, 7295, 7296, 5, 867, 0, 0, 7296, 737, 1, 0, 0, 0, 7297, 7298, 5, 866, 0, 0, 7298, 7303, 3, 674, 337, 0, 7299, 7300, 5, 868, 0, 0, 7300, 7302, 3, 674, 337, 0, 7301, 7299, 1, 0, 0, 0, 7302, 7305, 1, 0, 0, 0, 7303, 7301, 1, 0, 0, 0, 7303, 7304, 1, 0, 0, 0, 7304, 7306, 1, 0, 0, 0, 7305, 7303, 1, 0, 0, 0, 7306, 7307, 5, 867, 0, 0, 7307, 739, 1, 0, 0, 0, 7308, 7313, 3, 804, 402, 0, 7309, 7310, 5, 868, 0, 0, 7310, 7312, 3, 804, 402, 0, 7311, 7309, 1, 0, 0, 0, 7312, 7315, 1, 0, 0, 0, 7313, 7311, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 741, 1, 0, 0, 0, 7315, 7313, 1, 0, 0, 0, 7316, 7317, 7, 131, 0, 0, 7317, 7322, 3, 744, 372, 0, 7318, 7319, 5, 868, 0, 0, 7319, 7321, 3, 744, 372, 0, 7320, 7318, 1, 0, 0, 0, 7321, 7324, 1, 0, 0, 0, 7322, 7320, 1, 0, 0, 0, 7322, 7323, 1, 0, 0, 0, 7323, 743, 1, 0, 0, 0, 7324, 7322, 1, 0, 0, 0, 7325, 7326, 5, 866, 0, 0, 7326, 7331, 3, 746, 373, 0, 7327, 7328, 5, 868, 0, 0, 7328, 7330, 3, 746, 373, 0, 7329, 7327, 1, 0, 0, 0, 7330, 7333, 1, 0, 0, 0, 7331, 7329, 1, 0, 0, 0, 7331, 7332, 1, 0, 0, 0, 7332, 7334, 1, 0, 0, 0, 7333, 7331, 1, 0, 0, 0, 7334, 7335, 5, 867, 0, 0, 7335, 745, 1, 0, 0, 0, 7336, 7339, 3, 804, 402, 0, 7337, 7339, 5, 42, 0, 0, 7338, 7336, 1, 0, 0, 0, 7338, 7337, 1, 0, 0, 0, 7339, 747, 1, 0, 0, 0, 7340, 7345, 3, 724, 362, 0, 7341, 7342, 5, 868, 0, 0, 7342, 7344, 3, 724, 362, 0, 7343, 7341, 1, 0, 0, 0, 7344, 7347, 1, 0, 0, 0, 7345, 7343, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 749, 1, 0, 0, 0, 7347, 7345, 1, 0, 0, 0, 7348, 7353, 5, 882, 0, 0, 7349, 7350, 5, 868, 0, 0, 7350, 7352, 5, 882, 0, 0, 7351, 7349, 1, 0, 0, 0, 7352, 7355, 1, 0, 0, 0, 7353, 7351, 1, 0, 0, 0, 7353, 7354, 1, 0, 0, 0, 7354, 751, 1, 0, 0, 0, 7355, 7353, 1, 0, 0, 0, 7356, 7361, 5, 892, 0, 0, 7357, 7358, 5, 868, 0, 0, 7358, 7360, 5, 892, 0, 0, 7359, 7357, 1, 0, 0, 0, 7360, 7363, 1, 0, 0, 0, 7361, 7359, 1, 0, 0, 0, 7361, 7362, 1, 0, 0, 0, 7362, 753, 1, 0, 0, 0, 7363, 7361, 1, 0, 0, 0, 7364, 7391, 5, 116, 0, 0, 7365, 7366, 5, 24, 0, 0, 7366, 7367, 5, 866, 0, 0, 7367, 7368, 3, 804, 402, 0, 7368, 7369, 5, 13, 0, 0, 7369, 7370, 3, 730, 365, 0, 7370, 7371, 5, 867, 0, 0, 7371, 7391, 1, 0, 0, 0, 7372, 7374, 3, 810, 405, 0, 7373, 7372, 1, 0, 0, 0, 7373, 7374, 1, 0, 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 7391, 3, 724, 362, 0, 7376, 7380, 3, 756, 378, 0, 7377, 7378, 5, 119, 0, 0, 7378, 7379, 5, 185, 0, 0, 7379, 7381, 3, 756, 378, 0, 7380, 7377, 1, 0, 0, 0, 7380, 7381, 1, 0, 0, 0, 7381, 7391, 1, 0, 0, 0, 7382, 7383, 5, 866, 0, 0, 7383, 7384, 3, 804, 402, 0, 7384, 7385, 5, 867, 0, 0, 7385, 7391, 1, 0, 0, 0, 7386, 7387, 5, 866, 0, 0, 7387, 7388, 3, 702, 351, 0, 7388, 7389, 5, 867, 0, 0, 7389, 7391, 1, 0, 0, 0, 7390, 7364, 1, 0, 0, 0, 7390, 7365, 1, 0, 0, 0, 7390, 7373, 1, 0, 0, 0, 7390, 7376, 1, 0, 0, 0, 7390, 7382, 1, 0, 0, 0, 7390, 7386, 1, 0, 0, 0, 7391, 755, 1, 0, 0, 0, 7392, 7398, 7, 132, 0, 0, 7393, 7395, 5, 866, 0, 0, 7394, 7396, 3, 712, 356, 0, 7395, 7394, 1, 0, 0, 0, 7395, 7396, 1, 0, 0, 0, 7396, 7397, 1, 0, 0, 0, 7397, 7399, 5, 867, 0, 0, 7398, 7393, 1, 0, 0, 0, 7398, 7399, 1, 0, 0, 0, 7399, 7407, 1, 0, 0, 0, 7400, 7401, 5, 295, 0, 0, 7401, 7403, 5, 866, 0, 0, 7402, 7404, 3, 712, 356, 0, 7403, 7402, 1, 0, 0, 0, 7403, 7404, 1, 0, 0, 0, 7404, 7405, 1, 0, 0, 0, 7405, 7407, 5, 867, 0, 0, 7406, 7392, 1, 0, 0, 0, 7406, 7400, 1, 0, 0, 0, 7407, 757, 1, 0, 0, 0, 7408, 7409, 5, 78, 0, 0, 7409, 7410, 5, 60, 0, 0, 7410, 759, 1, 0, 0, 0, 7411, 7412, 5, 78, 0, 0, 7412, 7413, 5, 114, 0, 0, 7413, 7414, 5, 60, 0, 0, 7414, 761, 1, 0, 0, 0, 7415, 7416, 5, 124, 0, 0, 7416, 7417, 5, 143, 0, 0, 7417, 763, 1, 0, 0, 0, 7418, 7441, 3, 766, 383, 0, 7419, 7441, 3, 774, 387, 0, 7420, 7441, 3, 776, 388, 0, 7421, 7428, 3, 796, 398, 0, 7422, 7423, 5, 866, 0, 0, 7423, 7429, 5, 867, 0, 0, 7424, 7425, 5, 866, 0, 0, 7425, 7426, 3, 800, 400, 0, 7426, 7427, 5, 867, 0, 0, 7427, 7429, 1, 0, 0, 0, 7428, 7422, 1, 0, 0, 0, 7428, 7424, 1, 0, 0, 0, 7429, 7441, 1, 0, 0, 0, 7430, 7437, 3, 632, 316, 0, 7431, 7432, 5, 866, 0, 0, 7432, 7438, 5, 867, 0, 0, 7433, 7434, 5, 866, 0, 0, 7434, 7435, 3, 800, 400, 0, 7435, 7436, 5, 867, 0, 0, 7436, 7438, 1, 0, 0, 0, 7437, 7431, 1, 0, 0, 0, 7437, 7433, 1, 0, 0, 0, 7438, 7441, 1, 0, 0, 0, 7439, 7441, 3, 798, 399, 0, 7440, 7418, 1, 0, 0, 0, 7440, 7419, 1, 0, 0, 0, 7440, 7420, 1, 0, 0, 0, 7440, 7421, 1, 0, 0, 0, 7440, 7430, 1, 0, 0, 0, 7440, 7439, 1, 0, 0, 0, 7441, 765, 1, 0, 0, 0, 7442, 7445, 7, 133, 0, 0, 7443, 7444, 5, 866, 0, 0, 7444, 7446, 5, 867, 0, 0, 7445, 7443, 1, 0, 0, 0, 7445, 7446, 1, 0, 0, 0, 7446, 7622, 1, 0, 0, 0, 7447, 7622, 3, 60, 30, 0, 7448, 7449, 5, 33, 0, 0, 7449, 7450, 5, 866, 0, 0, 7450, 7451, 3, 804, 402, 0, 7451, 7452, 5, 868, 0, 0, 7452, 7453, 3, 730, 365, 0, 7453, 7454, 5, 867, 0, 0, 7454, 7622, 1, 0, 0, 0, 7455, 7456, 5, 33, 0, 0, 7456, 7457, 5, 866, 0, 0, 7457, 7458, 3, 804, 402, 0, 7458, 7459, 5, 188, 0, 0, 7459, 7460, 3, 688, 344, 0, 7460, 7461, 5, 867, 0, 0, 7461, 7622, 1, 0, 0, 0, 7462, 7463, 5, 24, 0, 0, 7463, 7464, 5, 866, 0, 0, 7464, 7465, 3, 804, 402, 0, 7465, 7466, 5, 13, 0, 0, 7466, 7467, 3, 730, 365, 0, 7467, 7468, 5, 867, 0, 0, 7468, 7622, 1, 0, 0, 0, 7469, 7470, 5, 189, 0, 0, 7470, 7471, 5, 866, 0, 0, 7471, 7472, 3, 662, 331, 0, 7472, 7473, 5, 867, 0, 0, 7473, 7622, 1, 0, 0, 0, 7474, 7476, 5, 23, 0, 0, 7475, 7477, 3, 768, 384, 0, 7476, 7475, 1, 0, 0, 0, 7477, 7478, 1, 0, 0, 0, 7478, 7476, 1, 0, 0, 0, 7478, 7479, 1, 0, 0, 0, 7479, 7482, 1, 0, 0, 0, 7480, 7481, 5, 53, 0, 0, 7481, 7483, 3, 802, 401, 0, 7482, 7480, 1, 0, 0, 0, 7482, 7483, 1, 0, 0, 0, 7483, 7484, 1, 0, 0, 0, 7484, 7485, 5, 378, 0, 0, 7485, 7622, 1, 0, 0, 0, 7486, 7487, 5, 23, 0, 0, 7487, 7489, 3, 804, 402, 0, 7488, 7490, 3, 768, 384, 0, 7489, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7489, 1, 0, 0, 0, 7491, 7492, 1, 0, 0, 0, 7492, 7495, 1, 0, 0, 0, 7493, 7494, 5, 53, 0, 0, 7494, 7496, 3, 802, 401, 0, 7495, 7493, 1, 0, 0, 0, 7495, 7496, 1, 0, 0, 0, 7496, 7497, 1, 0, 0, 0, 7497, 7498, 5, 378, 0, 0, 7498, 7622, 1, 0, 0, 0, 7499, 7500, 5, 224, 0, 0, 7500, 7501, 5, 866, 0, 0, 7501, 7504, 3, 800, 400, 0, 7502, 7503, 5, 188, 0, 0, 7503, 7505, 3, 688, 344, 0, 7504, 7502, 1, 0, 0, 0, 7504, 7505, 1, 0, 0, 0, 7505, 7506, 1, 0, 0, 0, 7506, 7507, 5, 867, 0, 0, 7507, 7622, 1, 0, 0, 0, 7508, 7509, 5, 296, 0, 0, 7509, 7512, 5, 866, 0, 0, 7510, 7513, 3, 716, 358, 0, 7511, 7513, 3, 804, 402, 0, 7512, 7510, 1, 0, 0, 0, 7512, 7511, 1, 0, 0, 0, 7513, 7514, 1, 0, 0, 0, 7514, 7517, 5, 80, 0, 0, 7515, 7518, 3, 716, 358, 0, 7516, 7518, 3, 804, 402, 0, 7517, 7515, 1, 0, 0, 0, 7517, 7516, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7520, 5, 867, 0, 0, 7520, 7622, 1, 0, 0, 0, 7521, 7522, 7, 134, 0, 0, 7522, 7525, 5, 866, 0, 0, 7523, 7526, 3, 716, 358, 0, 7524, 7526, 3, 804, 402, 0, 7525, 7523, 1, 0, 0, 0, 7525, 7524, 1, 0, 0, 0, 7526, 7527, 1, 0, 0, 0, 7527, 7530, 5, 68, 0, 0, 7528, 7531, 3, 712, 356, 0, 7529, 7531, 3, 804, 402, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7529, 1, 0, 0, 0, 7531, 7537, 1, 0, 0, 0, 7532, 7535, 5, 65, 0, 0, 7533, 7536, 3, 712, 356, 0, 7534, 7536, 3, 804, 402, 0, 7535, 7533, 1, 0, 0, 0, 7535, 7534, 1, 0, 0, 0, 7536, 7538, 1, 0, 0, 0, 7537, 7532, 1, 0, 0, 0, 7537, 7538, 1, 0, 0, 0, 7538, 7539, 1, 0, 0, 0, 7539, 7540, 5, 867, 0, 0, 7540, 7622, 1, 0, 0, 0, 7541, 7542, 5, 300, 0, 0, 7542, 7543, 5, 866, 0, 0, 7543, 7546, 7, 135, 0, 0, 7544, 7547, 3, 716, 358, 0, 7545, 7547, 3, 804, 402, 0, 7546, 7544, 1, 0, 0, 0, 7546, 7545, 1, 0, 0, 0, 7546, 7547, 1, 0, 0, 0, 7547, 7548, 1, 0, 0, 0, 7548, 7551, 5, 68, 0, 0, 7549, 7552, 3, 716, 358, 0, 7550, 7552, 3, 804, 402, 0, 7551, 7549, 1, 0, 0, 0, 7551, 7550, 1, 0, 0, 0, 7552, 7553, 1, 0, 0, 0, 7553, 7554, 5, 867, 0, 0, 7554, 7622, 1, 0, 0, 0, 7555, 7556, 5, 300, 0, 0, 7556, 7559, 5, 866, 0, 0, 7557, 7560, 3, 716, 358, 0, 7558, 7560, 3, 804, 402, 0, 7559, 7557, 1, 0, 0, 0, 7559, 7558, 1, 0, 0, 0, 7560, 7561, 1, 0, 0, 0, 7561, 7564, 5, 68, 0, 0, 7562, 7565, 3, 716, 358, 0, 7563, 7565, 3, 804, 402, 0, 7564, 7562, 1, 0, 0, 0, 7564, 7563, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7567, 5, 867, 0, 0, 7567, 7622, 1, 0, 0, 0, 7568, 7569, 5, 840, 0, 0, 7569, 7572, 5, 866, 0, 0, 7570, 7573, 3, 716, 358, 0, 7571, 7573, 3, 804, 402, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7571, 1, 0, 0, 0, 7573, 7580, 1, 0, 0, 0, 7574, 7575, 5, 13, 0, 0, 7575, 7576, 7, 136, 0, 0, 7576, 7577, 5, 866, 0, 0, 7577, 7578, 3, 712, 356, 0, 7578, 7579, 5, 867, 0, 0, 7579, 7581, 1, 0, 0, 0, 7580, 7574, 1, 0, 0, 0, 7580, 7581, 1, 0, 0, 0, 7581, 7583, 1, 0, 0, 0, 7582, 7584, 3, 770, 385, 0, 7583, 7582, 1, 0, 0, 0, 7583, 7584, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, 7586, 5, 867, 0, 0, 7586, 7622, 1, 0, 0, 0, 7587, 7588, 5, 293, 0, 0, 7588, 7589, 5, 866, 0, 0, 7589, 7590, 3, 70, 35, 0, 7590, 7593, 5, 68, 0, 0, 7591, 7594, 3, 716, 358, 0, 7592, 7594, 3, 804, 402, 0, 7593, 7591, 1, 0, 0, 0, 7593, 7592, 1, 0, 0, 0, 7594, 7595, 1, 0, 0, 0, 7595, 7596, 5, 867, 0, 0, 7596, 7622, 1, 0, 0, 0, 7597, 7598, 5, 827, 0, 0, 7598, 7599, 5, 866, 0, 0, 7599, 7600, 7, 137, 0, 0, 7600, 7601, 5, 868, 0, 0, 7601, 7602, 3, 716, 358, 0, 7602, 7603, 5, 867, 0, 0, 7603, 7622, 1, 0, 0, 0, 7604, 7605, 5, 254, 0, 0, 7605, 7606, 5, 866, 0, 0, 7606, 7607, 3, 804, 402, 0, 7607, 7608, 5, 868, 0, 0, 7608, 7611, 3, 804, 402, 0, 7609, 7610, 5, 579, 0, 0, 7610, 7612, 3, 730, 365, 0, 7611, 7609, 1, 0, 0, 0, 7611, 7612, 1, 0, 0, 0, 7612, 7614, 1, 0, 0, 0, 7613, 7615, 3, 292, 146, 0, 7614, 7613, 1, 0, 0, 0, 7614, 7615, 1, 0, 0, 0, 7615, 7617, 1, 0, 0, 0, 7616, 7618, 3, 294, 147, 0, 7617, 7616, 1, 0, 0, 0, 7617, 7618, 1, 0, 0, 0, 7618, 7619, 1, 0, 0, 0, 7619, 7620, 5, 867, 0, 0, 7620, 7622, 1, 0, 0, 0, 7621, 7442, 1, 0, 0, 0, 7621, 7447, 1, 0, 0, 0, 7621, 7448, 1, 0, 0, 0, 7621, 7455, 1, 0, 0, 0, 7621, 7462, 1, 0, 0, 0, 7621, 7469, 1, 0, 0, 0, 7621, 7474, 1, 0, 0, 0, 7621, 7486, 1, 0, 0, 0, 7621, 7499, 1, 0, 0, 0, 7621, 7508, 1, 0, 0, 0, 7621, 7521, 1, 0, 0, 0, 7621, 7541, 1, 0, 0, 0, 7621, 7555, 1, 0, 0, 0, 7621, 7568, 1, 0, 0, 0, 7621, 7587, 1, 0, 0, 0, 7621, 7597, 1, 0, 0, 0, 7621, 7604, 1, 0, 0, 0, 7622, 767, 1, 0, 0, 0, 7623, 7624, 5, 191, 0, 0, 7624, 7625, 3, 802, 401, 0, 7625, 7626, 5, 175, 0, 0, 7626, 7627, 3, 802, 401, 0, 7627, 769, 1, 0, 0, 0, 7628, 7629, 5, 448, 0, 0, 7629, 7634, 3, 772, 386, 0, 7630, 7631, 5, 868, 0, 0, 7631, 7633, 3, 772, 386, 0, 7632, 7630, 1, 0, 0, 0, 7633, 7636, 1, 0, 0, 0, 7634, 7632, 1, 0, 0, 0, 7634, 7635, 1, 0, 0, 0, 7635, 7643, 1, 0, 0, 0, 7636, 7634, 1, 0, 0, 0, 7637, 7638, 5, 448, 0, 0, 7638, 7639, 3, 712, 356, 0, 7639, 7640, 5, 854, 0, 0, 7640, 7641, 3, 712, 356, 0, 7641, 7643, 1, 0, 0, 0, 7642, 7628, 1, 0, 0, 0, 7642, 7637, 1, 0, 0, 0, 7643, 771, 1, 0, 0, 0, 7644, 7646, 3, 712, 356, 0, 7645, 7647, 7, 138, 0, 0, 7646, 7645, 1, 0, 0, 0, 7646, 7647, 1, 0, 0, 0, 7647, 773, 1, 0, 0, 0, 7648, 7649, 7, 139, 0, 0, 7649, 7651, 5, 866, 0, 0, 7650, 7652, 7, 45, 0, 0, 7651, 7650, 1, 0, 0, 0, 7651, 7652, 1, 0, 0, 0, 7652, 7653, 1, 0, 0, 0, 7653, 7654, 3, 802, 401, 0, 7654, 7656, 5, 867, 0, 0, 7655, 7657, 3, 778, 389, 0, 7656, 7655, 1, 0, 0, 0, 7656, 7657, 1, 0, 0, 0, 7657, 7708, 1, 0, 0, 0, 7658, 7659, 5, 262, 0, 0, 7659, 7667, 5, 866, 0, 0, 7660, 7668, 5, 850, 0, 0, 7661, 7663, 5, 7, 0, 0, 7662, 7661, 1, 0, 0, 0, 7662, 7663, 1, 0, 0, 0, 7663, 7664, 1, 0, 0, 0, 7664, 7668, 3, 802, 401, 0, 7665, 7666, 5, 49, 0, 0, 7666, 7668, 3, 800, 400, 0, 7667, 7660, 1, 0, 0, 0, 7667, 7662, 1, 0, 0, 0, 7667, 7665, 1, 0, 0, 0, 7668, 7669, 1, 0, 0, 0, 7669, 7671, 5, 867, 0, 0, 7670, 7672, 3, 778, 389, 0, 7671, 7670, 1, 0, 0, 0, 7671, 7672, 1, 0, 0, 0, 7672, 7708, 1, 0, 0, 0, 7673, 7674, 7, 140, 0, 0, 7674, 7676, 5, 866, 0, 0, 7675, 7677, 5, 7, 0, 0, 7676, 7675, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 7678, 1, 0, 0, 0, 7678, 7679, 3, 802, 401, 0, 7679, 7681, 5, 867, 0, 0, 7680, 7682, 3, 778, 389, 0, 7681, 7680, 1, 0, 0, 0, 7681, 7682, 1, 0, 0, 0, 7682, 7708, 1, 0, 0, 0, 7683, 7684, 5, 266, 0, 0, 7684, 7686, 5, 866, 0, 0, 7685, 7687, 5, 49, 0, 0, 7686, 7685, 1, 0, 0, 0, 7686, 7687, 1, 0, 0, 0, 7687, 7688, 1, 0, 0, 0, 7688, 7699, 3, 800, 400, 0, 7689, 7690, 5, 125, 0, 0, 7690, 7691, 5, 20, 0, 0, 7691, 7696, 3, 260, 130, 0, 7692, 7693, 5, 868, 0, 0, 7693, 7695, 3, 260, 130, 0, 7694, 7692, 1, 0, 0, 0, 7695, 7698, 1, 0, 0, 0, 7696, 7694, 1, 0, 0, 0, 7696, 7697, 1, 0, 0, 0, 7697, 7700, 1, 0, 0, 0, 7698, 7696, 1, 0, 0, 0, 7699, 7689, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 7703, 1, 0, 0, 0, 7701, 7702, 5, 156, 0, 0, 7702, 7704, 5, 882, 0, 0, 7703, 7701, 1, 0, 0, 0, 7703, 7704, 1, 0, 0, 0, 7704, 7705, 1, 0, 0, 0, 7705, 7706, 5, 867, 0, 0, 7706, 7708, 1, 0, 0, 0, 7707, 7648, 1, 0, 0, 0, 7707, 7658, 1, 0, 0, 0, 7707, 7673, 1, 0, 0, 0, 7707, 7683, 1, 0, 0, 0, 7708, 775, 1, 0, 0, 0, 7709, 7710, 7, 141, 0, 0, 7710, 7711, 5, 866, 0, 0, 7711, 7714, 3, 804, 402, 0, 7712, 7713, 5, 868, 0, 0, 7713, 7715, 3, 712, 356, 0, 7714, 7712, 1, 0, 0, 0, 7714, 7715, 1, 0, 0, 0, 7715, 7718, 1, 0, 0, 0, 7716, 7717, 5, 868, 0, 0, 7717, 7719, 3, 712, 356, 0, 7718, 7716, 1, 0, 0, 0, 7718, 7719, 1, 0, 0, 0, 7719, 7720, 1, 0, 0, 0, 7720, 7721, 5, 867, 0, 0, 7721, 7722, 3, 778, 389, 0, 7722, 7748, 1, 0, 0, 0, 7723, 7724, 7, 142, 0, 0, 7724, 7725, 5, 866, 0, 0, 7725, 7726, 3, 804, 402, 0, 7726, 7727, 5, 867, 0, 0, 7727, 7728, 3, 778, 389, 0, 7728, 7748, 1, 0, 0, 0, 7729, 7730, 7, 143, 0, 0, 7730, 7731, 5, 866, 0, 0, 7731, 7732, 5, 867, 0, 0, 7732, 7748, 3, 778, 389, 0, 7733, 7734, 5, 273, 0, 0, 7734, 7735, 5, 866, 0, 0, 7735, 7736, 3, 804, 402, 0, 7736, 7737, 5, 868, 0, 0, 7737, 7738, 3, 712, 356, 0, 7738, 7739, 5, 867, 0, 0, 7739, 7740, 3, 778, 389, 0, 7740, 7748, 1, 0, 0, 0, 7741, 7742, 5, 272, 0, 0, 7742, 7743, 5, 866, 0, 0, 7743, 7744, 3, 712, 356, 0, 7744, 7745, 5, 867, 0, 0, 7745, 7746, 3, 778, 389, 0, 7746, 7748, 1, 0, 0, 0, 7747, 7709, 1, 0, 0, 0, 7747, 7723, 1, 0, 0, 0, 7747, 7729, 1, 0, 0, 0, 7747, 7733, 1, 0, 0, 0, 7747, 7741, 1, 0, 0, 0, 7748, 777, 1, 0, 0, 0, 7749, 7755, 5, 129, 0, 0, 7750, 7751, 5, 866, 0, 0, 7751, 7752, 3, 780, 390, 0, 7752, 7753, 5, 867, 0, 0, 7753, 7756, 1, 0, 0, 0, 7754, 7756, 3, 782, 391, 0, 7755, 7750, 1, 0, 0, 0, 7755, 7754, 1, 0, 0, 0, 7756, 779, 1, 0, 0, 0, 7757, 7759, 3, 782, 391, 0, 7758, 7757, 1, 0, 0, 0, 7758, 7759, 1, 0, 0, 0, 7759, 7761, 1, 0, 0, 0, 7760, 7762, 3, 794, 397, 0, 7761, 7760, 1, 0, 0, 0, 7761, 7762, 1, 0, 0, 0, 7762, 7764, 1, 0, 0, 0, 7763, 7765, 3, 258, 129, 0, 7764, 7763, 1, 0, 0, 0, 7764, 7765, 1, 0, 0, 0, 7765, 7767, 1, 0, 0, 0, 7766, 7768, 3, 784, 392, 0, 7767, 7766, 1, 0, 0, 0, 7767, 7768, 1, 0, 0, 0, 7768, 781, 1, 0, 0, 0, 7769, 7770, 3, 706, 353, 0, 7770, 783, 1, 0, 0, 0, 7771, 7772, 3, 786, 393, 0, 7772, 7773, 3, 788, 394, 0, 7773, 785, 1, 0, 0, 0, 7774, 7775, 7, 144, 0, 0, 7775, 787, 1, 0, 0, 0, 7776, 7779, 3, 792, 396, 0, 7777, 7779, 3, 790, 395, 0, 7778, 7776, 1, 0, 0, 0, 7778, 7777, 1, 0, 0, 0, 7779, 789, 1, 0, 0, 0, 7780, 7781, 5, 17, 0, 0, 7781, 7782, 3, 792, 396, 0, 7782, 7783, 5, 11, 0, 0, 7783, 7784, 3, 792, 396, 0, 7784, 791, 1, 0, 0, 0, 7785, 7786, 5, 36, 0, 0, 7786, 7793, 5, 586, 0, 0, 7787, 7788, 5, 669, 0, 0, 7788, 7793, 7, 145, 0, 0, 7789, 7790, 3, 804, 402, 0, 7790, 7791, 7, 145, 0, 0, 7791, 7793, 1, 0, 0, 0, 7792, 7785, 1, 0, 0, 0, 7792, 7787, 1, 0, 0, 0, 7792, 7789, 1, 0, 0, 0, 7793, 793, 1, 0, 0, 0, 7794, 7795, 5, 130, 0, 0, 7795, 7796, 5, 20, 0, 0, 7796, 7801, 3, 804, 402, 0, 7797, 7798, 5, 868, 0, 0, 7798, 7800, 3, 804, 402, 0, 7799, 7797, 1, 0, 0, 0, 7800, 7803, 1, 0, 0, 0, 7801, 7799, 1, 0, 0, 0, 7801, 7802, 1, 0, 0, 0, 7802, 795, 1, 0, 0, 0, 7803, 7801, 1, 0, 0, 0, 7804, 7829, 3, 836, 418, 0, 7805, 7829, 5, 757, 0, 0, 7806, 7829, 5, 289, 0, 0, 7807, 7829, 5, 285, 0, 0, 7808, 7829, 5, 286, 0, 0, 7809, 7829, 5, 287, 0, 0, 7810, 7829, 5, 290, 0, 0, 7811, 7829, 5, 291, 0, 0, 7812, 7829, 5, 292, 0, 0, 7813, 7829, 5, 78, 0, 0, 7814, 7829, 5, 86, 0, 0, 7815, 7829, 5, 288, 0, 0, 7816, 7829, 5, 294, 0, 0, 7817, 7829, 5, 488, 0, 0, 7818, 7829, 5, 295, 0, 0, 7819, 7829, 5, 142, 0, 0, 7820, 7829, 5, 143, 0, 0, 7821, 7829, 5, 297, 0, 0, 7822, 7829, 5, 298, 0, 0, 7823, 7829, 5, 299, 0, 0, 7824, 7829, 5, 300, 0, 0, 7825, 7829, 5, 301, 0, 0, 7826, 7829, 5, 302, 0, 0, 7827, 7829, 5, 303, 0, 0, 7828, 7804, 1, 0, 0, 0, 7828, 7805, 1, 0, 0, 0, 7828, 7806, 1, 0, 0, 0, 7828, 7807, 1, 0, 0, 0, 7828, 7808, 1, 0, 0, 0, 7828, 7809, 1, 0, 0, 0, 7828, 7810, 1, 0, 0, 0, 7828, 7811, 1, 0, 0, 0, 7828, 7812, 1, 0, 0, 0, 7828, 7813, 1, 0, 0, 0, 7828, 7814, 1, 0, 0, 0, 7828, 7815, 1, 0, 0, 0, 7828, 7816, 1, 0, 0, 0, 7828, 7817, 1, 0, 0, 0, 7828, 7818, 1, 0, 0, 0, 7828, 7819, 1, 0, 0, 0, 7828, 7820, 1, 0, 0, 0, 7828, 7821, 1, 0, 0, 0, 7828, 7822, 1, 0, 0, 0, 7828, 7823, 1, 0, 0, 0, 7828, 7824, 1, 0, 0, 0, 7828, 7825, 1, 0, 0, 0, 7828, 7826, 1, 0, 0, 0, 7828, 7827, 1, 0, 0, 0, 7829, 797, 1, 0, 0, 0, 7830, 7831, 7, 146, 0, 0, 7831, 7832, 5, 866, 0, 0, 7832, 7833, 3, 802, 401, 0, 7833, 7834, 5, 867, 0, 0, 7834, 799, 1, 0, 0, 0, 7835, 7840, 3, 802, 401, 0, 7836, 7837, 5, 868, 0, 0, 7837, 7839, 3, 802, 401, 0, 7838, 7836, 1, 0, 0, 0, 7839, 7842, 1, 0, 0, 0, 7840, 7838, 1, 0, 0, 0, 7840, 7841, 1, 0, 0, 0, 7841, 801, 1, 0, 0, 0, 7842, 7840, 1, 0, 0, 0, 7843, 7847, 3, 724, 362, 0, 7844, 7847, 3, 764, 382, 0, 7845, 7847, 3, 804, 402, 0, 7846, 7843, 1, 0, 0, 0, 7846, 7844, 1, 0, 0, 0, 7846, 7845, 1, 0, 0, 0, 7847, 803, 1, 0, 0, 0, 7848, 7849, 6, 402, -1, 0, 7849, 7850, 7, 147, 0, 0, 7850, 7860, 3, 804, 402, 4, 7851, 7852, 3, 806, 403, 0, 7852, 7854, 5, 89, 0, 0, 7853, 7855, 5, 114, 0, 0, 7854, 7853, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 7856, 1, 0, 0, 0, 7856, 7857, 7, 148, 0, 0, 7857, 7860, 1, 0, 0, 0, 7858, 7860, 3, 806, 403, 0, 7859, 7848, 1, 0, 0, 0, 7859, 7851, 1, 0, 0, 0, 7859, 7858, 1, 0, 0, 0, 7860, 7867, 1, 0, 0, 0, 7861, 7862, 10, 3, 0, 0, 7862, 7863, 3, 816, 408, 0, 7863, 7864, 3, 804, 402, 4, 7864, 7866, 1, 0, 0, 0, 7865, 7861, 1, 0, 0, 0, 7866, 7869, 1, 0, 0, 0, 7867, 7865, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 805, 1, 0, 0, 0, 7869, 7867, 1, 0, 0, 0, 7870, 7871, 6, 403, -1, 0, 7871, 7872, 3, 808, 404, 0, 7872, 7936, 1, 0, 0, 0, 7873, 7875, 10, 6, 0, 0, 7874, 7876, 5, 114, 0, 0, 7875, 7874, 1, 0, 0, 0, 7875, 7876, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 7878, 5, 17, 0, 0, 7878, 7879, 3, 806, 403, 0, 7879, 7880, 5, 11, 0, 0, 7880, 7881, 3, 806, 403, 7, 7881, 7935, 1, 0, 0, 0, 7882, 7883, 10, 5, 0, 0, 7883, 7884, 5, 604, 0, 0, 7884, 7885, 5, 99, 0, 0, 7885, 7935, 3, 806, 403, 6, 7886, 7888, 10, 3, 0, 0, 7887, 7889, 5, 114, 0, 0, 7888, 7887, 1, 0, 0, 0, 7888, 7889, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7891, 7, 149, 0, 0, 7891, 7935, 3, 806, 403, 4, 7892, 7894, 10, 9, 0, 0, 7893, 7895, 5, 114, 0, 0, 7894, 7893, 1, 0, 0, 0, 7894, 7895, 1, 0, 0, 0, 7895, 7896, 1, 0, 0, 0, 7896, 7897, 5, 80, 0, 0, 7897, 7900, 5, 866, 0, 0, 7898, 7901, 3, 210, 105, 0, 7899, 7901, 3, 740, 370, 0, 7900, 7898, 1, 0, 0, 0, 7900, 7899, 1, 0, 0, 0, 7901, 7902, 1, 0, 0, 0, 7902, 7903, 5, 867, 0, 0, 7903, 7935, 1, 0, 0, 0, 7904, 7905, 10, 8, 0, 0, 7905, 7906, 5, 89, 0, 0, 7906, 7935, 3, 722, 361, 0, 7907, 7908, 10, 7, 0, 0, 7908, 7915, 3, 812, 406, 0, 7909, 7910, 7, 150, 0, 0, 7910, 7911, 5, 866, 0, 0, 7911, 7912, 3, 210, 105, 0, 7912, 7913, 5, 867, 0, 0, 7913, 7916, 1, 0, 0, 0, 7914, 7916, 3, 806, 403, 0, 7915, 7909, 1, 0, 0, 0, 7915, 7914, 1, 0, 0, 0, 7916, 7935, 1, 0, 0, 0, 7917, 7919, 10, 4, 0, 0, 7918, 7920, 5, 114, 0, 0, 7919, 7918, 1, 0, 0, 0, 7919, 7920, 1, 0, 0, 0, 7920, 7921, 1, 0, 0, 0, 7921, 7922, 5, 99, 0, 0, 7922, 7925, 3, 806, 403, 0, 7923, 7924, 5, 384, 0, 0, 7924, 7926, 5, 882, 0, 0, 7925, 7923, 1, 0, 0, 0, 7925, 7926, 1, 0, 0, 0, 7926, 7935, 1, 0, 0, 0, 7927, 7928, 10, 2, 0, 0, 7928, 7929, 5, 485, 0, 0, 7929, 7930, 5, 510, 0, 0, 7930, 7931, 5, 866, 0, 0, 7931, 7932, 3, 806, 403, 0, 7932, 7933, 5, 867, 0, 0, 7933, 7935, 1, 0, 0, 0, 7934, 7873, 1, 0, 0, 0, 7934, 7882, 1, 0, 0, 0, 7934, 7886, 1, 0, 0, 0, 7934, 7892, 1, 0, 0, 0, 7934, 7904, 1, 0, 0, 0, 7934, 7907, 1, 0, 0, 0, 7934, 7917, 1, 0, 0, 0, 7934, 7927, 1, 0, 0, 0, 7935, 7938, 1, 0, 0, 0, 7936, 7934, 1, 0, 0, 0, 7936, 7937, 1, 0, 0, 0, 7937, 807, 1, 0, 0, 0, 7938, 7936, 1, 0, 0, 0, 7939, 7940, 6, 404, -1, 0, 7940, 7988, 3, 724, 362, 0, 7941, 7988, 3, 764, 382, 0, 7942, 7988, 3, 686, 343, 0, 7943, 7944, 3, 810, 405, 0, 7944, 7945, 3, 808, 404, 12, 7945, 7988, 1, 0, 0, 0, 7946, 7947, 5, 228, 0, 0, 7947, 7988, 3, 808, 404, 11, 7948, 7949, 5, 892, 0, 0, 7949, 7950, 5, 841, 0, 0, 7950, 7988, 3, 808, 404, 10, 7951, 7952, 5, 866, 0, 0, 7952, 7957, 3, 804, 402, 0, 7953, 7954, 5, 868, 0, 0, 7954, 7956, 3, 804, 402, 0, 7955, 7953, 1, 0, 0, 0, 7956, 7959, 1, 0, 0, 0, 7957, 7955, 1, 0, 0, 0, 7957, 7958, 1, 0, 0, 0, 7958, 7960, 1, 0, 0, 0, 7959, 7957, 1, 0, 0, 0, 7960, 7961, 5, 867, 0, 0, 7961, 7988, 1, 0, 0, 0, 7962, 7963, 5, 586, 0, 0, 7963, 7964, 5, 866, 0, 0, 7964, 7967, 3, 804, 402, 0, 7965, 7966, 5, 868, 0, 0, 7966, 7968, 3, 804, 402, 0, 7967, 7965, 1, 0, 0, 0, 7968, 7969, 1, 0, 0, 0, 7969, 7967, 1, 0, 0, 0, 7969, 7970, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 7972, 5, 867, 0, 0, 7972, 7988, 1, 0, 0, 0, 7973, 7974, 5, 60, 0, 0, 7974, 7975, 5, 866, 0, 0, 7975, 7976, 3, 210, 105, 0, 7976, 7977, 5, 867, 0, 0, 7977, 7988, 1, 0, 0, 0, 7978, 7979, 5, 866, 0, 0, 7979, 7980, 3, 210, 105, 0, 7980, 7981, 5, 867, 0, 0, 7981, 7988, 1, 0, 0, 0, 7982, 7983, 5, 87, 0, 0, 7983, 7984, 3, 804, 402, 0, 7984, 7985, 3, 70, 35, 0, 7985, 7988, 1, 0, 0, 0, 7986, 7988, 3, 662, 331, 0, 7987, 7939, 1, 0, 0, 0, 7987, 7941, 1, 0, 0, 0, 7987, 7942, 1, 0, 0, 0, 7987, 7943, 1, 0, 0, 0, 7987, 7946, 1, 0, 0, 0, 7987, 7948, 1, 0, 0, 0, 7987, 7951, 1, 0, 0, 0, 7987, 7962, 1, 0, 0, 0, 7987, 7973, 1, 0, 0, 0, 7987, 7978, 1, 0, 0, 0, 7987, 7982, 1, 0, 0, 0, 7987, 7986, 1, 0, 0, 0, 7988, 8006, 1, 0, 0, 0, 7989, 7990, 10, 4, 0, 0, 7990, 7991, 3, 822, 411, 0, 7991, 7992, 3, 808, 404, 5, 7992, 8005, 1, 0, 0, 0, 7993, 7994, 10, 3, 0, 0, 7994, 7995, 3, 818, 409, 0, 7995, 7996, 3, 808, 404, 4, 7996, 8005, 1, 0, 0, 0, 7997, 7998, 10, 2, 0, 0, 7998, 7999, 3, 820, 410, 0, 7999, 8000, 3, 808, 404, 3, 8000, 8005, 1, 0, 0, 0, 8001, 8002, 10, 14, 0, 0, 8002, 8003, 5, 28, 0, 0, 8003, 8005, 3, 690, 345, 0, 8004, 7989, 1, 0, 0, 0, 8004, 7993, 1, 0, 0, 0, 8004, 7997, 1, 0, 0, 0, 8004, 8001, 1, 0, 0, 0, 8005, 8008, 1, 0, 0, 0, 8006, 8004, 1, 0, 0, 0, 8006, 8007, 1, 0, 0, 0, 8007, 809, 1, 0, 0, 0, 8008, 8006, 1, 0, 0, 0, 8009, 8010, 7, 151, 0, 0, 8010, 811, 1, 0, 0, 0, 8011, 8012, 5, 859, 0, 0, 8012, 8020, 5, 858, 0, 0, 8013, 8014, 5, 860, 0, 0, 8014, 8020, 5, 857, 0, 0, 8015, 8016, 5, 859, 0, 0, 8016, 8017, 5, 857, 0, 0, 8017, 8020, 5, 858, 0, 0, 8018, 8020, 3, 814, 407, 0, 8019, 8011, 1, 0, 0, 0, 8019, 8013, 1, 0, 0, 0, 8019, 8015, 1, 0, 0, 0, 8019, 8018, 1, 0, 0, 0, 8020, 813, 1, 0, 0, 0, 8021, 8022, 5, 859, 0, 0, 8022, 8029, 5, 857, 0, 0, 8023, 8024, 5, 858, 0, 0, 8024, 8029, 5, 857, 0, 0, 8025, 8029, 5, 857, 0, 0, 8026, 8029, 5, 858, 0, 0, 8027, 8029, 5, 859, 0, 0, 8028, 8021, 1, 0, 0, 0, 8028, 8023, 1, 0, 0, 0, 8028, 8025, 1, 0, 0, 0, 8028, 8026, 1, 0, 0, 0, 8028, 8027, 1, 0, 0, 0, 8029, 815, 1, 0, 0, 0, 8030, 8038, 5, 11, 0, 0, 8031, 8032, 5, 863, 0, 0, 8032, 8038, 5, 863, 0, 0, 8033, 8038, 5, 196, 0, 0, 8034, 8038, 5, 124, 0, 0, 8035, 8036, 5, 862, 0, 0, 8036, 8038, 5, 862, 0, 0, 8037, 8030, 1, 0, 0, 0, 8037, 8031, 1, 0, 0, 0, 8037, 8033, 1, 0, 0, 0, 8037, 8034, 1, 0, 0, 0, 8037, 8035, 1, 0, 0, 0, 8038, 817, 1, 0, 0, 0, 8039, 8040, 5, 859, 0, 0, 8040, 8047, 5, 859, 0, 0, 8041, 8042, 5, 858, 0, 0, 8042, 8047, 5, 858, 0, 0, 8043, 8047, 5, 863, 0, 0, 8044, 8047, 5, 864, 0, 0, 8045, 8047, 5, 862, 0, 0, 8046, 8039, 1, 0, 0, 0, 8046, 8041, 1, 0, 0, 0, 8046, 8043, 1, 0, 0, 0, 8046, 8044, 1, 0, 0, 0, 8046, 8045, 1, 0, 0, 0, 8047, 819, 1, 0, 0, 0, 8048, 8049, 7, 152, 0, 0, 8049, 821, 1, 0, 0, 0, 8050, 8051, 5, 854, 0, 0, 8051, 8056, 5, 858, 0, 0, 8052, 8053, 5, 854, 0, 0, 8053, 8054, 5, 858, 0, 0, 8054, 8056, 5, 858, 0, 0, 8055, 8050, 1, 0, 0, 0, 8055, 8052, 1, 0, 0, 0, 8056, 823, 1, 0, 0, 0, 8057, 8058, 7, 153, 0, 0, 8058, 825, 1, 0, 0, 0, 8059, 8060, 7, 154, 0, 0, 8060, 827, 1, 0, 0, 0, 8061, 8062, 7, 155, 0, 0, 8062, 829, 1, 0, 0, 0, 8063, 8064, 7, 156, 0, 0, 8064, 831, 1, 0, 0, 0, 8065, 8066, 7, 157, 0, 0, 8066, 833, 1, 0, 0, 0, 8067, 8068, 7, 158, 0, 0, 8068, 835, 1, 0, 0, 0, 8069, 8070, 7, 159, 0, 0, 8070, 837, 1, 0, 0, 0, 1163, 841, 848, 851, 860, 904, 923, 934, 950, 955, 967, 1002, 1012, 1017, 1023, 1028, 1032, 1041, 1044, 1047, 1051, 1058, 1061, 1066, 1074, 1079, 1084, 1087, 1089, 1101, 1104, 1108, 1111, 1115, 1118, 1122, 1125, 1128, 1132, 1135, 1139, 1145, 1149, 1154, 1160, 1167, 1174, 1177, 1181, 1186, 1192, 1201, 1206, 1210, 1214, 1225, 1243, 1250, 1254, 1258, 1262, 1267, 1270, 1273, 1276, 1279, 1285, 1289, 1299, 1303, 1307, 1313, 1318, 1321, 1324, 1326, 1330, 1337, 1341, 1344, 1349, 1353, 1356, 1360, 1363, 1367, 1380, 1383, 1387, 1390, 1394, 1397, 1401, 1404, 1408, 1411, 1414, 1418, 1421, 1425, 1431, 1434, 1438, 1450, 1456, 1467, 1472, 1480, 1484, 1489, 1492, 1497, 1507, 1512, 1517, 1523, 1528, 1532, 1534, 1537, 1541, 1545, 1548, 1552, 1556, 1560, 1566, 1569, 1576, 1581, 1587, 1594, 1600, 1608, 1611, 1618, 1621, 1623, 1629, 1635, 1652, 1659, 1666, 1678, 1683, 1686, 1689, 1702, 1715, 1720, 1736, 1744, 1754, 1757, 1763, 1768, 1771, 1777, 1781, 1786, 1792, 1796, 1800, 1803, 1806, 1812, 1816, 1821, 1832, 1835, 1842, 1845, 1849, 1855, 1867, 1870, 1875, 1888, 1895, 1901, 1906, 1910, 1913, 1921, 1929, 1931, 1941, 1945, 1948, 1952, 1957, 1962, 1967, 1971, 1975, 1979, 1983, 1987, 1991, 1996, 2001, 2006, 2012, 2017, 2022, 2027, 2032, 2037, 2043, 2048, 2053, 2058, 2063, 2068, 2073, 2078, 2085, 2090, 2095, 2100, 2104, 2109, 2117, 2122, 2128, 2140, 2147, 2149, 2157, 2162, 2165, 2173, 2179, 2183, 2196, 2208, 2210, 2213, 2221, 2227, 2233, 2246, 2253, 2262, 2267, 2278, 2287, 2292, 2304, 2311, 2320, 2325, 2337, 2344, 2353, 2358, 2365, 2374, 2379, 2381, 2386, 2394, 2403, 2407, 2410, 2414, 2419, 2425, 2431, 2436, 2441, 2446, 2451, 2454, 2459, 2464, 2474, 2478, 2485, 2490, 2493, 2498, 2501, 2505, 2509, 2517, 2536, 2539, 2542, 2546, 2556, 2569, 2582, 2585, 2591, 2594, 2598, 2607, 2610, 2613, 2618, 2622, 2625, 2629, 2633, 2636, 2640, 2643, 2647, 2650, 2656, 2659, 2664, 2672, 2678, 2682, 2686, 2691, 2696, 2703, 2707, 2718, 2726, 2729, 2735, 2741, 2744, 2750, 2756, 2758, 2763, 2769, 2775, 2777, 2781, 2784, 2787, 2793, 2799, 2801, 2806, 2813, 2822, 2825, 2829, 2834, 2844, 2853, 2861, 2864, 2872, 2875, 2882, 2887, 2895, 2911, 2916, 2923, 2942, 2948, 2958, 2970, 2977, 2984, 2999, 3012, 3018, 3024, 3030, 3036, 3042, 3048, 3053, 3060, 3067, 3074, 3079, 3082, 3084, 3093, 3100, 3107, 3114, 3123, 3129, 3133, 3137, 3141, 3147, 3150, 3155, 3162, 3169, 3173, 3178, 3188, 3196, 3202, 3211, 3220, 3229, 3232, 3236, 3245, 3249, 3252, 3255, 3261, 3264, 3267, 3271, 3274, 3277, 3280, 3291, 3294, 3299, 3305, 3310, 3315, 3318, 3322, 3327, 3330, 3335, 3345, 3350, 3356, 3358, 3364, 3366, 3372, 3380, 3385, 3393, 3396, 3401, 3404, 3409, 3417, 3423, 3427, 3429, 3435, 3443, 3448, 3456, 3459, 3464, 3467, 3471, 3474, 3477, 3481, 3484, 3492, 3498, 3502, 3508, 3513, 3517, 3519, 3525, 3529, 3532, 3535, 3538, 3544, 3549, 3552, 3555, 3558, 3561, 3563, 3566, 3570, 3573, 3576, 3584, 3590, 3593, 3595, 3604, 3609, 3616, 3619, 3622, 3626, 3630, 3636, 3640, 3647, 3651, 3654, 3657, 3662, 3669, 3679, 3688, 3697, 3707, 3710, 3714, 3720, 3724, 3727, 3730, 3735, 3738, 3745, 3749, 3752, 3756, 3760, 3763, 3766, 3771, 3777, 3781, 3791, 3797, 3801, 3807, 3811, 3817, 3820, 3832, 3836, 3840, 3848, 3852, 3866, 3871, 3874, 3878, 3881, 3889, 3894, 3897, 3900, 3904, 3907, 3916, 3921, 3930, 3935, 3942, 3949, 3957, 3963, 3971, 3974, 3977, 3984, 3987, 3990, 3997, 4000, 4004, 4010, 4020, 4024, 4033, 4036, 4040, 4046, 4054, 4059, 4063, 4069, 4075, 4078, 4080, 4084, 4093, 4103, 4109, 4114, 4118, 4121, 4124, 4127, 4130, 4133, 4136, 4140, 4144, 4152, 4156, 4159, 4161, 4174, 4177, 4184, 4194, 4197, 4202, 4204, 4208, 4216, 4222, 4231, 4244, 4248, 4254, 4259, 4263, 4266, 4270, 4273, 4281, 4284, 4286, 4294, 4306, 4312, 4314, 4320, 4322, 4324, 4330, 4338, 4346, 4350, 4354, 4363, 4368, 4388, 4393, 4399, 4406, 4411, 4420, 4423, 4427, 4431, 4435, 4438, 4441, 4444, 4448, 4452, 4455, 4458, 4461, 4468, 4472, 4487, 4500, 4508, 4518, 4522, 4525, 4531, 4534, 4537, 4546, 4555, 4565, 4569, 4579, 4583, 4594, 4598, 4607, 4616, 4619, 4623, 4628, 4632, 4641, 4644, 4647, 4654, 4660, 4666, 4692, 4695, 4698, 4717, 4719, 4742, 4745, 4748, 4767, 4769, 4783, 4796, 4833, 4838, 4873, 4887, 4894, 4898, 4904, 4912, 4914, 4925, 4935, 4942, 4948, 4956, 4961, 4969, 4977, 4985, 4993, 4999, 5004, 5009, 5014, 5020, 5022, 5033, 5038, 5045, 5047, 5061, 5067, 5072, 5077, 5083, 5090, 5098, 5106, 5111, 5117, 5120, 5128, 5135, 5144, 5147, 5164, 5172, 5180, 5184, 5191, 5197, 5205, 5210, 5217, 5225, 5232, 5237, 5240, 5242, 5248, 5250, 5254, 5256, 5261, 5268, 5273, 5277, 5282, 5286, 5292, 5298, 5303, 5306, 5308, 5314, 5316, 5320, 5322, 5327, 5332, 5339, 5348, 5353, 5362, 5366, 5372, 5377, 5380, 5382, 5388, 5390, 5393, 5400, 5402, 5407, 5414, 5423, 5429, 5431, 5438, 5441, 5453, 5459, 5467, 5470, 5474, 5477, 5481, 5483, 5494, 5497, 5501, 5504, 5507, 5514, 5526, 5529, 5536, 5542, 5552, 5557, 5564, 5569, 5575, 5579, 5583, 5591, 5595, 5599, 5605, 5607, 5619, 5624, 5630, 5636, 5640, 5645, 5647, 5671, 5675, 5678, 5687, 5691, 5700, 5704, 5708, 5714, 5716, 5725, 5735, 5762, 5766, 5771, 5778, 5781, 5787, 5797, 5807, 5817, 5823, 5832, 5838, 5845, 5847, 5855, 5861, 5865, 5882, 5892, 5896, 5900, 5910, 5915, 5987, 6005, 6013, 6019, 6031, 6035, 6046, 6050, 6059, 6067, 6074, 6078, 6085, 6090, 6093, 6096, 6107, 6116, 6125, 6128, 6142, 6160, 6173, 6176, 6180, 6183, 6185, 6192, 6199, 6203, 6210, 6217, 6220, 6236, 6239, 6249, 6253, 6259, 6262, 6265, 6270, 6274, 6277, 6284, 6287, 6293, 6329, 6332, 6344, 6347, 6363, 6365, 6369, 6376, 6380, 6387, 6390, 6399, 6402, 6407, 6413, 6415, 6421, 6425, 6431, 6434, 6437, 6450, 6453, 6459, 6462, 6470, 6478, 6484, 6487, 6491, 6505, 6517, 6525, 6529, 6536, 6543, 6548, 6561, 6570, 6578, 6583, 6586, 6591, 6594, 6606, 6611, 6624, 6626, 6631, 6635, 6638, 6640, 6647, 6654, 6657, 6660, 6666, 6670, 6676, 6684, 6693, 6706, 6711, 6719, 6722, 6727, 6732, 6740, 6743, 6751, 6755, 6762, 6768, 6771, 6775, 6788, 6794, 6806, 6809, 6818, 6823, 6844, 6860, 6870, 6875, 6880, 6882, 6885, 6889, 6891, 6898, 6904, 6906, 6909, 6913, 6916, 6929, 6939, 6942, 6945, 6958, 6964, 6967, 6975, 6982, 7002, 7009, 7011, 7018, 7020, 7024, 7031, 7037, 7048, 7054, 7060, 7063, 7067, 7072, 7075, 7079, 7083, 7085, 7090, 7095, 7108, 7111, 7115, 7118, 7121, 7126, 7131, 7137, 7140, 7145, 7148, 7153, 7156, 7160, 7165, 7170, 7175, 7180, 7183, 7188, 7193, 7198, 7204, 7209, 7214, 7219, 7223, 7226, 7231, 7235, 7239, 7247, 7254, 7258, 7263, 7268, 7272, 7274, 7277, 7293, 7303, 7313, 7322, 7331, 7338, 7345, 7353, 7361, 7373, 7380, 7390, 7395, 7398, 7403, 7406, 7428, 7437, 7440, 7445, 7478, 7482, 7491, 7495, 7504, 7512, 7517, 7525, 7530, 7535, 7537, 7546, 7551, 7559, 7564, 7572, 7580, 7583, 7593, 7611, 7614, 7617, 7621, 7634, 7642, 7646, 7651, 7656, 7662, 7667, 7671, 7676, 7681, 7686, 7696, 7699, 7703, 7707, 7714, 7718, 7747, 7755, 7758, 7761, 7764, 7767, 7778, 7792, 7801, 7828, 7840, 7846, 7854, 7859, 7867, 7875, 7888, 7894, 7900, 7915, 7919, 7925, 7934, 7936, 7957, 7969, 7987, 8004, 8006, 8019, 8028, 8037, 8046, 8055] \ No newline at end of file +[4, 1, 895, 8085, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 1, 0, 5, 0, 850, 8, 0, 10, 0, 12, 0, 853, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 859, 8, 1, 1, 1, 3, 1, 862, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 871, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 915, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 934, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 945, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 961, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 966, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 978, 8, 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, 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, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1013, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1023, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1028, 8, 12, 1, 12, 1, 12, 5, 12, 1032, 8, 12, 10, 12, 12, 12, 1035, 9, 12, 1, 13, 1, 13, 3, 13, 1039, 8, 13, 1, 13, 1, 13, 3, 13, 1043, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1052, 8, 13, 1, 13, 3, 13, 1055, 8, 13, 1, 13, 3, 13, 1058, 8, 13, 1, 13, 1, 13, 3, 13, 1062, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1069, 8, 14, 1, 14, 3, 14, 1072, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1077, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1083, 8, 14, 10, 14, 12, 14, 1086, 9, 14, 1, 14, 1, 14, 3, 14, 1090, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1095, 8, 14, 1, 14, 5, 14, 1098, 8, 14, 10, 14, 12, 14, 1101, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1112, 8, 15, 1, 15, 3, 15, 1115, 8, 15, 1, 15, 1, 15, 3, 15, 1119, 8, 15, 1, 15, 3, 15, 1122, 8, 15, 1, 15, 1, 15, 3, 15, 1126, 8, 15, 1, 15, 3, 15, 1129, 8, 15, 1, 15, 1, 15, 3, 15, 1133, 8, 15, 1, 15, 3, 15, 1136, 8, 15, 1, 15, 3, 15, 1139, 8, 15, 1, 15, 1, 15, 3, 15, 1143, 8, 15, 1, 15, 3, 15, 1146, 8, 15, 1, 15, 1, 15, 3, 15, 1150, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1156, 8, 16, 1, 16, 1, 16, 3, 16, 1160, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1165, 8, 16, 1, 16, 1, 16, 5, 16, 1169, 8, 16, 10, 16, 12, 16, 1172, 9, 16, 1, 16, 1, 16, 5, 16, 1176, 8, 16, 10, 16, 12, 16, 1179, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1185, 8, 17, 1, 17, 3, 17, 1188, 8, 17, 1, 17, 1, 17, 3, 17, 1192, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1197, 8, 17, 1, 17, 1, 17, 5, 17, 1201, 8, 17, 10, 17, 12, 17, 1204, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1210, 8, 17, 10, 17, 12, 17, 1213, 9, 17, 1, 17, 1, 17, 3, 17, 1217, 8, 17, 1, 18, 1, 18, 3, 18, 1221, 8, 18, 1, 18, 1, 18, 3, 18, 1225, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 3, 19, 1236, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1252, 8, 20, 10, 20, 12, 20, 1255, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1261, 8, 21, 1, 21, 1, 21, 3, 21, 1265, 8, 21, 1, 21, 1, 21, 3, 21, 1269, 8, 21, 1, 21, 1, 21, 3, 21, 1273, 8, 21, 1, 21, 5, 21, 1276, 8, 21, 10, 21, 12, 21, 1279, 9, 21, 3, 21, 1281, 8, 21, 1, 21, 3, 21, 1284, 8, 21, 1, 21, 3, 21, 1287, 8, 21, 1, 21, 3, 21, 1290, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1296, 8, 21, 1, 21, 1, 21, 3, 21, 1300, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1310, 8, 21, 1, 21, 1, 21, 3, 21, 1314, 8, 21, 1, 21, 1, 21, 3, 21, 1318, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1324, 8, 21, 1, 21, 5, 21, 1327, 8, 21, 10, 21, 12, 21, 1330, 9, 21, 3, 21, 1332, 8, 21, 1, 21, 3, 21, 1335, 8, 21, 3, 21, 1337, 8, 21, 1, 22, 1, 22, 3, 22, 1341, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1348, 8, 22, 1, 22, 1, 22, 3, 22, 1352, 8, 22, 1, 22, 3, 22, 1355, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1360, 8, 22, 1, 22, 1, 22, 3, 22, 1364, 8, 22, 1, 22, 3, 22, 1367, 8, 22, 1, 22, 1, 22, 3, 22, 1371, 8, 22, 1, 22, 3, 22, 1374, 8, 22, 1, 23, 1, 23, 3, 23, 1378, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1391, 8, 23, 1, 23, 3, 23, 1394, 8, 23, 1, 23, 1, 23, 3, 23, 1398, 8, 23, 1, 23, 3, 23, 1401, 8, 23, 1, 23, 1, 23, 3, 23, 1405, 8, 23, 1, 23, 3, 23, 1408, 8, 23, 1, 23, 1, 23, 3, 23, 1412, 8, 23, 1, 23, 3, 23, 1415, 8, 23, 1, 23, 1, 23, 3, 23, 1419, 8, 23, 1, 23, 3, 23, 1422, 8, 23, 1, 23, 3, 23, 1425, 8, 23, 1, 23, 1, 23, 3, 23, 1429, 8, 23, 1, 23, 3, 23, 1432, 8, 23, 1, 23, 1, 23, 3, 23, 1436, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1442, 8, 24, 1, 24, 3, 24, 1445, 8, 24, 1, 24, 1, 24, 3, 24, 1449, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1461, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 1467, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1476, 8, 26, 10, 26, 12, 26, 1479, 9, 26, 1, 26, 1, 26, 3, 26, 1483, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1491, 8, 26, 1, 27, 1, 27, 3, 27, 1495, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1500, 8, 27, 1, 27, 3, 27, 1503, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1508, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1516, 8, 27, 10, 27, 12, 27, 1519, 9, 27, 1, 27, 1, 27, 3, 27, 1523, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1528, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1534, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1539, 8, 27, 1, 27, 1, 27, 3, 27, 1543, 8, 27, 3, 27, 1545, 8, 27, 1, 28, 3, 28, 1548, 8, 28, 1, 28, 1, 28, 3, 28, 1552, 8, 28, 1, 28, 1, 28, 3, 28, 1556, 8, 28, 1, 28, 3, 28, 1559, 8, 28, 1, 28, 1, 28, 3, 28, 1563, 8, 28, 1, 28, 1, 28, 3, 28, 1567, 8, 28, 1, 28, 1, 28, 3, 28, 1571, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1577, 8, 28, 1, 28, 3, 28, 1580, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1587, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1592, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1598, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1603, 8, 32, 10, 32, 12, 32, 1606, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1611, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1617, 8, 32, 10, 32, 12, 32, 1620, 9, 32, 3, 32, 1622, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1627, 8, 32, 10, 32, 12, 32, 1630, 9, 32, 3, 32, 1632, 8, 32, 3, 32, 1634, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1640, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1646, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1663, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1670, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1677, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1689, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1694, 8, 38, 1, 38, 3, 38, 1697, 8, 38, 1, 39, 3, 39, 1700, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1713, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1726, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1731, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1747, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1753, 8, 43, 10, 43, 12, 43, 1756, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1765, 8, 44, 1, 44, 3, 44, 1768, 8, 44, 1, 44, 1, 44, 5, 44, 1772, 8, 44, 10, 44, 12, 44, 1775, 9, 44, 1, 44, 1, 44, 3, 44, 1779, 8, 44, 1, 44, 3, 44, 1782, 8, 44, 1, 44, 1, 44, 5, 44, 1786, 8, 44, 10, 44, 12, 44, 1789, 9, 44, 1, 44, 3, 44, 1792, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1797, 8, 44, 1, 44, 1, 44, 5, 44, 1801, 8, 44, 10, 44, 12, 44, 1804, 9, 44, 1, 44, 3, 44, 1807, 8, 44, 1, 44, 1, 44, 3, 44, 1811, 8, 44, 1, 44, 3, 44, 1814, 8, 44, 1, 44, 3, 44, 1817, 8, 44, 1, 44, 1, 44, 5, 44, 1821, 8, 44, 10, 44, 12, 44, 1824, 9, 44, 1, 44, 3, 44, 1827, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1832, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1843, 8, 44, 1, 45, 3, 45, 1846, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1853, 8, 45, 1, 45, 3, 45, 1856, 8, 45, 1, 46, 1, 46, 3, 46, 1860, 8, 46, 1, 47, 1, 47, 5, 47, 1864, 8, 47, 10, 47, 12, 47, 1867, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1878, 8, 48, 1, 48, 3, 48, 1881, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1886, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1899, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1906, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1912, 8, 48, 1, 49, 1, 49, 1, 49, 3, 49, 1917, 8, 49, 1, 49, 1, 49, 3, 49, 1921, 8, 49, 1, 49, 3, 49, 1924, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1932, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1940, 8, 50, 3, 50, 1942, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1952, 8, 51, 1, 52, 1, 52, 3, 52, 1956, 8, 52, 1, 52, 3, 52, 1959, 8, 52, 1, 52, 1, 52, 3, 52, 1963, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1968, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1973, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1978, 8, 52, 1, 52, 1, 52, 3, 52, 1982, 8, 52, 1, 52, 1, 52, 3, 52, 1986, 8, 52, 1, 52, 1, 52, 3, 52, 1990, 8, 52, 1, 52, 1, 52, 3, 52, 1994, 8, 52, 1, 52, 1, 52, 3, 52, 1998, 8, 52, 1, 52, 1, 52, 3, 52, 2002, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2007, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2012, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2017, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2023, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2028, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2033, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2038, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2043, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2048, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2054, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2059, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2064, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2069, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2074, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2079, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2084, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2089, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2096, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2101, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2106, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2111, 8, 52, 1, 52, 1, 52, 3, 52, 2115, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2120, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2128, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2133, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2139, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2151, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2158, 8, 55, 3, 55, 2160, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2166, 8, 55, 10, 55, 12, 55, 2169, 9, 55, 1, 55, 1, 55, 3, 55, 2173, 8, 55, 1, 56, 3, 56, 2176, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2184, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2190, 8, 56, 1, 56, 1, 56, 3, 56, 2194, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2207, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2219, 8, 56, 3, 56, 2221, 8, 56, 1, 57, 3, 57, 2224, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2232, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2238, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2244, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2255, 8, 58, 10, 58, 12, 58, 2258, 9, 58, 1, 58, 1, 58, 5, 58, 2262, 8, 58, 10, 58, 12, 58, 2265, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2271, 8, 58, 10, 58, 12, 58, 2274, 9, 58, 1, 58, 1, 58, 3, 58, 2278, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2287, 8, 58, 10, 58, 12, 58, 2290, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2296, 8, 58, 10, 58, 12, 58, 2299, 9, 58, 1, 58, 1, 58, 3, 58, 2303, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2313, 8, 58, 10, 58, 12, 58, 2316, 9, 58, 1, 58, 1, 58, 5, 58, 2320, 8, 58, 10, 58, 12, 58, 2323, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2329, 8, 58, 10, 58, 12, 58, 2332, 9, 58, 1, 58, 1, 58, 3, 58, 2336, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2346, 8, 58, 10, 58, 12, 58, 2349, 9, 58, 1, 58, 1, 58, 5, 58, 2353, 8, 58, 10, 58, 12, 58, 2356, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2362, 8, 58, 10, 58, 12, 58, 2365, 9, 58, 1, 58, 1, 58, 3, 58, 2369, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2374, 8, 58, 10, 58, 12, 58, 2377, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2383, 8, 58, 10, 58, 12, 58, 2386, 9, 58, 1, 58, 1, 58, 3, 58, 2390, 8, 58, 3, 58, 2392, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2397, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2403, 8, 60, 11, 60, 12, 60, 2404, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2412, 8, 61, 10, 61, 12, 61, 2415, 9, 61, 1, 62, 3, 62, 2418, 8, 62, 1, 62, 3, 62, 2421, 8, 62, 1, 62, 1, 62, 3, 62, 2425, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2430, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2436, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2442, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2447, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2452, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2457, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2462, 8, 62, 1, 62, 3, 62, 2465, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2470, 8, 63, 1, 63, 4, 63, 2473, 8, 63, 11, 63, 12, 63, 2474, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2485, 8, 63, 1, 64, 1, 64, 3, 64, 2489, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2496, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2501, 8, 64, 1, 64, 3, 64, 2504, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2509, 8, 64, 1, 64, 3, 64, 2512, 8, 64, 1, 64, 1, 64, 3, 64, 2516, 8, 64, 1, 64, 1, 64, 3, 64, 2520, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2526, 8, 65, 10, 65, 12, 65, 2529, 9, 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, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2547, 8, 67, 1, 67, 3, 67, 2550, 8, 67, 1, 67, 3, 67, 2553, 8, 67, 1, 67, 1, 67, 3, 67, 2557, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2565, 8, 68, 10, 68, 12, 68, 2568, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2578, 8, 69, 10, 69, 12, 69, 2581, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2591, 8, 70, 10, 70, 12, 70, 2594, 9, 70, 3, 70, 2596, 8, 70, 1, 70, 1, 70, 5, 70, 2600, 8, 70, 10, 70, 12, 70, 2603, 9, 70, 3, 70, 2605, 8, 70, 1, 71, 1, 71, 3, 71, 2609, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2618, 8, 71, 1, 71, 3, 71, 2621, 8, 71, 1, 71, 3, 71, 2624, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2629, 8, 71, 1, 71, 1, 71, 3, 71, 2633, 8, 71, 1, 71, 3, 71, 2636, 8, 71, 1, 71, 1, 71, 3, 71, 2640, 8, 71, 1, 71, 1, 71, 3, 71, 2644, 8, 71, 1, 71, 3, 71, 2647, 8, 71, 1, 71, 1, 71, 3, 71, 2651, 8, 71, 1, 71, 3, 71, 2654, 8, 71, 1, 71, 1, 71, 3, 71, 2658, 8, 71, 1, 71, 3, 71, 2661, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2667, 8, 72, 1, 72, 3, 72, 2670, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2675, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2683, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2689, 8, 72, 1, 72, 1, 72, 3, 72, 2693, 8, 72, 1, 73, 1, 73, 3, 73, 2697, 8, 73, 1, 73, 5, 73, 2700, 8, 73, 10, 73, 12, 73, 2703, 9, 73, 1, 73, 1, 73, 3, 73, 2707, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2714, 8, 73, 1, 73, 1, 73, 3, 73, 2718, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2727, 8, 73, 10, 73, 12, 73, 2730, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2737, 8, 73, 1, 73, 3, 73, 2740, 8, 73, 1, 73, 1, 73, 5, 73, 2744, 8, 73, 10, 73, 12, 73, 2747, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2752, 8, 73, 1, 73, 3, 73, 2755, 8, 73, 1, 73, 1, 73, 5, 73, 2759, 8, 73, 10, 73, 12, 73, 2762, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2767, 8, 73, 3, 73, 2769, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2774, 8, 73, 1, 73, 1, 73, 5, 73, 2778, 8, 73, 10, 73, 12, 73, 2781, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2786, 8, 73, 3, 73, 2788, 8, 73, 1, 73, 1, 73, 3, 73, 2792, 8, 73, 1, 73, 3, 73, 2795, 8, 73, 1, 73, 3, 73, 2798, 8, 73, 1, 73, 1, 73, 5, 73, 2802, 8, 73, 10, 73, 12, 73, 2805, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2810, 8, 73, 3, 73, 2812, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2817, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2824, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2833, 8, 73, 1, 73, 3, 73, 2836, 8, 73, 1, 73, 1, 73, 3, 73, 2840, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2845, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2855, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2864, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2872, 8, 73, 1, 73, 3, 73, 2875, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2883, 8, 73, 1, 73, 3, 73, 2886, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2893, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2898, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2906, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2922, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2927, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2934, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2953, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2959, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2967, 8, 74, 10, 74, 12, 74, 2970, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2981, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2988, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2995, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 3008, 8, 74, 10, 74, 12, 74, 3011, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3023, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3029, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3035, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3041, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3047, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3053, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3059, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 3064, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3071, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3078, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3085, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3090, 8, 77, 1, 77, 5, 77, 3093, 8, 77, 10, 77, 12, 77, 3096, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 3104, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3111, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3118, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3125, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 3134, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 3140, 8, 83, 1, 83, 1, 83, 3, 83, 3144, 8, 83, 1, 83, 1, 83, 3, 83, 3148, 8, 83, 1, 84, 1, 84, 3, 84, 3152, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 3158, 8, 84, 1, 84, 3, 84, 3161, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3166, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3173, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3178, 8, 86, 10, 86, 12, 86, 3181, 9, 86, 1, 86, 3, 86, 3184, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 3189, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3199, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3205, 8, 88, 10, 88, 12, 88, 3208, 9, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3213, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 3220, 8, 89, 10, 89, 12, 89, 3223, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 3231, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3240, 8, 92, 1, 92, 3, 92, 3243, 8, 92, 1, 93, 1, 93, 3, 93, 3247, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3256, 8, 95, 1, 96, 1, 96, 3, 96, 3260, 8, 96, 1, 96, 3, 96, 3263, 8, 96, 1, 96, 3, 96, 3266, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3272, 8, 96, 1, 96, 3, 96, 3275, 8, 96, 1, 96, 3, 96, 3278, 8, 96, 1, 96, 1, 96, 3, 96, 3282, 8, 96, 1, 96, 3, 96, 3285, 8, 96, 1, 96, 3, 96, 3288, 8, 96, 1, 96, 3, 96, 3291, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3300, 8, 96, 10, 96, 12, 96, 3303, 9, 96, 3, 96, 3305, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3310, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3316, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3321, 8, 99, 1, 99, 4, 99, 3324, 8, 99, 11, 99, 12, 99, 3325, 1, 100, 3, 100, 3329, 8, 100, 1, 100, 1, 100, 3, 100, 3333, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3338, 8, 101, 1, 101, 3, 101, 3341, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3346, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3356, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3361, 8, 101, 1, 101, 1, 101, 4, 101, 3365, 8, 101, 11, 101, 12, 101, 3366, 3, 101, 3369, 8, 101, 1, 101, 1, 101, 4, 101, 3373, 8, 101, 11, 101, 12, 101, 3374, 3, 101, 3377, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3383, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3389, 8, 101, 10, 101, 12, 101, 3392, 9, 101, 1, 101, 1, 101, 3, 101, 3396, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3402, 8, 101, 10, 101, 12, 101, 3405, 9, 101, 3, 101, 3407, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3412, 8, 102, 1, 102, 3, 102, 3415, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3420, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3428, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3434, 8, 102, 1, 102, 1, 102, 3, 102, 3438, 8, 102, 3, 102, 3440, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3446, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3452, 8, 102, 10, 102, 12, 102, 3455, 9, 102, 1, 102, 1, 102, 3, 102, 3459, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3465, 8, 102, 10, 102, 12, 102, 3468, 9, 102, 3, 102, 3470, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3475, 8, 103, 1, 103, 3, 103, 3478, 8, 103, 1, 103, 1, 103, 3, 103, 3482, 8, 103, 1, 103, 3, 103, 3485, 8, 103, 1, 103, 3, 103, 3488, 8, 103, 1, 104, 1, 104, 3, 104, 3492, 8, 104, 1, 104, 3, 104, 3495, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3503, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3509, 8, 104, 1, 104, 1, 104, 3, 104, 3513, 8, 104, 1, 105, 1, 105, 5, 105, 3517, 8, 105, 10, 105, 12, 105, 3520, 9, 105, 1, 105, 1, 105, 3, 105, 3524, 8, 105, 1, 105, 1, 105, 3, 105, 3528, 8, 105, 3, 105, 3530, 8, 105, 1, 105, 1, 105, 5, 105, 3534, 8, 105, 10, 105, 12, 105, 3537, 9, 105, 1, 105, 3, 105, 3540, 8, 105, 1, 105, 3, 105, 3543, 8, 105, 1, 105, 3, 105, 3546, 8, 105, 1, 105, 3, 105, 3549, 8, 105, 1, 105, 1, 105, 5, 105, 3553, 8, 105, 10, 105, 12, 105, 3556, 9, 105, 1, 105, 1, 105, 3, 105, 3560, 8, 105, 1, 105, 3, 105, 3563, 8, 105, 1, 105, 3, 105, 3566, 8, 105, 1, 105, 3, 105, 3569, 8, 105, 1, 105, 3, 105, 3572, 8, 105, 3, 105, 3574, 8, 105, 1, 106, 3, 106, 3577, 8, 106, 1, 106, 1, 106, 3, 106, 3581, 8, 106, 1, 106, 3, 106, 3584, 8, 106, 1, 106, 3, 106, 3587, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3595, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3601, 8, 107, 1, 107, 5, 107, 3604, 8, 107, 10, 107, 12, 107, 3607, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3615, 8, 108, 1, 108, 5, 108, 3618, 8, 108, 10, 108, 12, 108, 3621, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3627, 8, 109, 1, 109, 3, 109, 3630, 8, 109, 1, 109, 3, 109, 3633, 8, 109, 1, 109, 1, 109, 3, 109, 3637, 8, 109, 1, 110, 1, 110, 3, 110, 3641, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3647, 8, 111, 1, 111, 1, 111, 3, 111, 3651, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3656, 8, 112, 10, 112, 12, 112, 3659, 9, 112, 1, 112, 3, 112, 3662, 8, 112, 1, 112, 3, 112, 3665, 8, 112, 1, 112, 3, 112, 3668, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3673, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3680, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3688, 8, 115, 10, 115, 12, 115, 3691, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3697, 8, 116, 10, 116, 12, 116, 3700, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 3708, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3716, 8, 119, 10, 119, 12, 119, 3719, 9, 119, 3, 119, 3721, 8, 119, 1, 119, 1, 119, 3, 119, 3725, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3731, 8, 119, 1, 120, 1, 120, 3, 120, 3735, 8, 120, 1, 120, 3, 120, 3738, 8, 120, 1, 120, 3, 120, 3741, 8, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3746, 8, 120, 1, 120, 3, 120, 3749, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3756, 8, 120, 1, 120, 1, 120, 3, 120, 3760, 8, 120, 1, 120, 3, 120, 3763, 8, 120, 1, 120, 1, 120, 3, 120, 3767, 8, 120, 1, 121, 1, 121, 3, 121, 3771, 8, 121, 1, 121, 3, 121, 3774, 8, 121, 1, 121, 3, 121, 3777, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3782, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3788, 8, 121, 5, 121, 3790, 8, 121, 10, 121, 12, 121, 3793, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3802, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3808, 8, 121, 5, 121, 3810, 8, 121, 10, 121, 12, 121, 3813, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3818, 8, 121, 1, 121, 1, 121, 3, 121, 3822, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3828, 8, 122, 1, 122, 3, 122, 3831, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3843, 8, 123, 1, 123, 1, 123, 3, 123, 3847, 8, 123, 1, 123, 1, 123, 3, 123, 3851, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3859, 8, 124, 1, 124, 1, 124, 3, 124, 3863, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3875, 8, 126, 10, 126, 12, 126, 3878, 9, 126, 1, 127, 1, 127, 3, 127, 3882, 8, 127, 1, 127, 3, 127, 3885, 8, 127, 1, 127, 1, 127, 3, 127, 3889, 8, 127, 1, 127, 3, 127, 3892, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3898, 8, 127, 10, 127, 12, 127, 3901, 9, 127, 1, 127, 1, 127, 3, 127, 3905, 8, 127, 1, 127, 3, 127, 3908, 8, 127, 1, 127, 3, 127, 3911, 8, 127, 1, 128, 1, 128, 3, 128, 3915, 8, 128, 1, 128, 3, 128, 3918, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3925, 8, 128, 10, 128, 12, 128, 3928, 9, 128, 1, 128, 1, 128, 3, 128, 3932, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3939, 8, 129, 10, 129, 12, 129, 3942, 9, 129, 1, 130, 1, 130, 3, 130, 3946, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3951, 8, 131, 10, 131, 12, 131, 3954, 9, 131, 1, 132, 1, 132, 5, 132, 3958, 8, 132, 10, 132, 12, 132, 3961, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3966, 8, 132, 10, 132, 12, 132, 3969, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3974, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3982, 8, 133, 1, 133, 3, 133, 3985, 8, 133, 1, 133, 3, 133, 3988, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3993, 8, 133, 10, 133, 12, 133, 3996, 9, 133, 3, 133, 3998, 8, 133, 1, 133, 3, 133, 4001, 8, 133, 1, 133, 1, 133, 3, 133, 4005, 8, 133, 1, 133, 1, 133, 3, 133, 4009, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4015, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4022, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4032, 8, 136, 1, 136, 1, 136, 3, 136, 4036, 8, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4045, 8, 137, 1, 138, 3, 138, 4048, 8, 138, 1, 138, 1, 138, 3, 138, 4052, 8, 138, 1, 138, 1, 138, 5, 138, 4056, 8, 138, 10, 138, 12, 138, 4059, 9, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4064, 8, 138, 10, 138, 12, 138, 4067, 9, 138, 1, 138, 1, 138, 3, 138, 4071, 8, 138, 1, 138, 1, 138, 3, 138, 4075, 8, 138, 1, 138, 1, 138, 5, 138, 4079, 8, 138, 10, 138, 12, 138, 4082, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4087, 8, 138, 1, 138, 3, 138, 4090, 8, 138, 3, 138, 4092, 8, 138, 1, 138, 1, 138, 3, 138, 4096, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4105, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4115, 8, 140, 1, 141, 1, 141, 5, 141, 4119, 8, 141, 10, 141, 12, 141, 4122, 9, 141, 1, 141, 1, 141, 3, 141, 4126, 8, 141, 1, 141, 1, 141, 3, 141, 4130, 8, 141, 1, 141, 3, 141, 4133, 8, 141, 1, 141, 3, 141, 4136, 8, 141, 1, 141, 3, 141, 4139, 8, 141, 1, 141, 3, 141, 4142, 8, 141, 1, 141, 3, 141, 4145, 8, 141, 1, 141, 3, 141, 4148, 8, 141, 1, 142, 1, 142, 3, 142, 4152, 8, 142, 1, 142, 1, 142, 3, 142, 4156, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4164, 8, 143, 1, 143, 1, 143, 3, 143, 4168, 8, 143, 1, 143, 3, 143, 4171, 8, 143, 3, 143, 4173, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4186, 8, 144, 1, 144, 3, 144, 4189, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 4194, 8, 145, 10, 145, 12, 145, 4197, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4206, 8, 146, 1, 146, 3, 146, 4209, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4214, 8, 146, 3, 146, 4216, 8, 146, 1, 146, 1, 146, 3, 146, 4220, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4228, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4234, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4243, 8, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4256, 8, 149, 1, 150, 1, 150, 3, 150, 4260, 8, 150, 1, 150, 1, 150, 5, 150, 4264, 8, 150, 10, 150, 12, 150, 4267, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 4272, 8, 151, 1, 151, 3, 151, 4275, 8, 151, 1, 151, 1, 151, 3, 151, 4279, 8, 151, 1, 151, 3, 151, 4282, 8, 151, 3, 151, 4284, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 4296, 8, 155, 1, 155, 1, 155, 3, 155, 4300, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 4306, 8, 156, 10, 156, 12, 156, 4309, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4320, 8, 156, 1, 156, 1, 156, 4, 156, 4324, 8, 156, 11, 156, 12, 156, 4325, 3, 156, 4328, 8, 156, 1, 156, 1, 156, 4, 156, 4332, 8, 156, 11, 156, 12, 156, 4333, 3, 156, 4336, 8, 156, 3, 156, 4338, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4344, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4352, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 4360, 8, 158, 1, 159, 1, 159, 3, 159, 4364, 8, 159, 1, 159, 1, 159, 3, 159, 4368, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 4375, 8, 160, 10, 160, 12, 160, 4378, 9, 160, 1, 160, 1, 160, 3, 160, 4382, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 5, 162, 4400, 8, 162, 10, 162, 12, 162, 4403, 9, 162, 1, 163, 1, 163, 3, 163, 4407, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4413, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4420, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 4425, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4432, 8, 166, 10, 166, 12, 166, 4435, 9, 166, 3, 166, 4437, 8, 166, 1, 167, 1, 167, 3, 167, 4441, 8, 167, 1, 168, 1, 168, 3, 168, 4445, 8, 168, 1, 168, 1, 168, 3, 168, 4449, 8, 168, 1, 168, 3, 168, 4452, 8, 168, 1, 168, 3, 168, 4455, 8, 168, 1, 168, 3, 168, 4458, 8, 168, 1, 169, 1, 169, 3, 169, 4462, 8, 169, 1, 169, 1, 169, 3, 169, 4466, 8, 169, 1, 169, 3, 169, 4469, 8, 169, 1, 169, 3, 169, 4472, 8, 169, 1, 169, 3, 169, 4475, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4482, 8, 171, 1, 171, 1, 171, 3, 171, 4486, 8, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4499, 8, 173, 10, 173, 12, 173, 4502, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4514, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4520, 8, 176, 10, 176, 12, 176, 4523, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4532, 8, 177, 1, 178, 1, 178, 3, 178, 4536, 8, 178, 1, 178, 3, 178, 4539, 8, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4545, 8, 179, 1, 179, 3, 179, 4548, 8, 179, 1, 179, 3, 179, 4551, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4560, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4569, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4577, 8, 182, 10, 182, 12, 182, 4580, 9, 182, 1, 182, 3, 182, 4583, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 4591, 8, 183, 10, 183, 12, 183, 4594, 9, 183, 1, 183, 3, 183, 4597, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 4606, 8, 184, 10, 184, 12, 184, 4609, 9, 184, 1, 184, 3, 184, 4612, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4621, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 4628, 8, 186, 10, 186, 12, 186, 4631, 9, 186, 3, 186, 4633, 8, 186, 1, 186, 1, 186, 3, 186, 4637, 8, 186, 1, 186, 5, 186, 4640, 8, 186, 10, 186, 12, 186, 4643, 9, 186, 1, 186, 3, 186, 4646, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4653, 8, 187, 10, 187, 12, 187, 4656, 9, 187, 3, 187, 4658, 8, 187, 1, 187, 3, 187, 4661, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4668, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4674, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4680, 8, 188, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4704, 8, 190, 10, 190, 12, 190, 4707, 9, 190, 3, 190, 4709, 8, 190, 1, 190, 3, 190, 4712, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4731, 8, 194, 3, 194, 4733, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 4754, 8, 195, 10, 195, 12, 195, 4757, 9, 195, 3, 195, 4759, 8, 195, 1, 195, 3, 195, 4762, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4781, 8, 199, 3, 199, 4783, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4795, 8, 201, 10, 201, 12, 201, 4798, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4808, 8, 201, 10, 201, 12, 201, 4811, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4845, 8, 201, 10, 201, 12, 201, 4848, 9, 201, 1, 201, 1, 201, 3, 201, 4852, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4887, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4901, 8, 205, 1, 206, 1, 206, 1, 206, 5, 206, 4906, 8, 206, 10, 206, 12, 206, 4909, 9, 206, 1, 206, 3, 206, 4912, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4918, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4926, 8, 208, 3, 208, 4928, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4939, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4949, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4956, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4962, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 3, 216, 4970, 8, 216, 1, 217, 1, 217, 1, 217, 3, 217, 4975, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4981, 8, 217, 10, 217, 12, 217, 4984, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4989, 8, 217, 10, 217, 12, 217, 4992, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4997, 8, 217, 10, 217, 12, 217, 5000, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5005, 8, 217, 10, 217, 12, 217, 5008, 9, 217, 1, 217, 5, 217, 5011, 8, 217, 10, 217, 12, 217, 5014, 9, 217, 1, 217, 1, 217, 3, 217, 5018, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5023, 8, 218, 1, 218, 4, 218, 5026, 8, 218, 11, 218, 12, 218, 5027, 1, 218, 1, 218, 4, 218, 5032, 8, 218, 11, 218, 12, 218, 5033, 3, 218, 5036, 8, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 4, 219, 5045, 8, 219, 11, 219, 12, 219, 5046, 1, 219, 5, 219, 5050, 8, 219, 10, 219, 12, 219, 5053, 9, 219, 1, 219, 1, 219, 4, 219, 5057, 8, 219, 11, 219, 12, 219, 5058, 3, 219, 5061, 8, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 3, 222, 5075, 8, 222, 1, 222, 1, 222, 4, 222, 5079, 8, 222, 11, 222, 12, 222, 5080, 1, 222, 1, 222, 1, 222, 3, 222, 5086, 8, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5091, 8, 223, 1, 223, 1, 223, 4, 223, 5095, 8, 223, 11, 223, 12, 223, 5096, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5104, 8, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5112, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 5118, 8, 225, 11, 225, 12, 225, 5119, 1, 225, 1, 225, 1, 225, 3, 225, 5125, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5131, 8, 226, 1, 226, 3, 226, 5134, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5142, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5149, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5158, 8, 228, 1, 228, 3, 228, 5161, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5176, 8, 230, 10, 230, 12, 230, 5179, 9, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5186, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5194, 8, 231, 1, 232, 1, 232, 3, 232, 5198, 8, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5205, 8, 233, 1, 233, 1, 233, 4, 233, 5209, 8, 233, 11, 233, 12, 233, 5210, 1, 234, 1, 234, 1, 234, 1, 234, 4, 234, 5217, 8, 234, 11, 234, 12, 234, 5218, 1, 235, 1, 235, 1, 235, 3, 235, 5224, 8, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5229, 8, 235, 10, 235, 12, 235, 5232, 9, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5237, 8, 235, 10, 235, 12, 235, 5240, 9, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5246, 8, 235, 1, 235, 5, 235, 5249, 8, 235, 10, 235, 12, 235, 5252, 9, 235, 3, 235, 5254, 8, 235, 3, 235, 5256, 8, 235, 1, 235, 1, 235, 4, 235, 5260, 8, 235, 11, 235, 12, 235, 5261, 3, 235, 5264, 8, 235, 1, 235, 1, 235, 5, 235, 5268, 8, 235, 10, 235, 12, 235, 5271, 9, 235, 1, 235, 1, 235, 3, 235, 5275, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5282, 8, 235, 1, 236, 1, 236, 1, 236, 3, 236, 5287, 8, 236, 1, 236, 1, 236, 3, 236, 5291, 8, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5296, 8, 236, 5, 236, 5298, 8, 236, 10, 236, 12, 236, 5301, 9, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5306, 8, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5312, 8, 236, 1, 236, 5, 236, 5315, 8, 236, 10, 236, 12, 236, 5318, 9, 236, 3, 236, 5320, 8, 236, 3, 236, 5322, 8, 236, 1, 236, 1, 236, 4, 236, 5326, 8, 236, 11, 236, 12, 236, 5327, 3, 236, 5330, 8, 236, 1, 236, 1, 236, 5, 236, 5334, 8, 236, 10, 236, 12, 236, 5337, 9, 236, 1, 236, 1, 236, 3, 236, 5341, 8, 236, 1, 237, 1, 237, 1, 237, 3, 237, 5346, 8, 237, 1, 237, 1, 237, 1, 237, 5, 237, 5351, 8, 237, 10, 237, 12, 237, 5354, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5360, 8, 238, 10, 238, 12, 238, 5363, 9, 238, 1, 238, 1, 238, 3, 238, 5367, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5374, 8, 238, 10, 238, 12, 238, 5377, 9, 238, 1, 238, 3, 238, 5380, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5386, 8, 238, 1, 238, 5, 238, 5389, 8, 238, 10, 238, 12, 238, 5392, 9, 238, 3, 238, 5394, 8, 238, 3, 238, 5396, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5402, 8, 238, 10, 238, 12, 238, 5405, 9, 238, 3, 238, 5407, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5414, 8, 238, 3, 238, 5416, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5421, 8, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5426, 8, 238, 10, 238, 12, 238, 5429, 9, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5435, 8, 238, 10, 238, 12, 238, 5438, 9, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5443, 8, 238, 3, 238, 5445, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5452, 8, 239, 1, 239, 3, 239, 5455, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 5465, 8, 240, 10, 240, 12, 240, 5468, 9, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5473, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5481, 8, 241, 1, 241, 3, 241, 5484, 8, 241, 1, 241, 1, 241, 3, 241, 5488, 8, 241, 1, 241, 3, 241, 5491, 8, 241, 1, 241, 1, 241, 3, 241, 5495, 8, 241, 3, 241, 5497, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5508, 8, 242, 1, 242, 3, 242, 5511, 8, 242, 1, 242, 1, 242, 3, 242, 5515, 8, 242, 1, 242, 3, 242, 5518, 8, 242, 1, 242, 3, 242, 5521, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5528, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5538, 8, 244, 10, 244, 12, 244, 5541, 9, 244, 3, 244, 5543, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5550, 8, 245, 1, 245, 1, 245, 5, 245, 5554, 8, 245, 10, 245, 12, 245, 5557, 9, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 5564, 8, 246, 10, 246, 12, 246, 5567, 9, 246, 1, 247, 1, 247, 3, 247, 5571, 8, 247, 1, 247, 1, 247, 1, 247, 5, 247, 5576, 8, 247, 10, 247, 12, 247, 5579, 9, 247, 1, 247, 1, 247, 3, 247, 5583, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5589, 8, 247, 1, 247, 1, 247, 3, 247, 5593, 8, 247, 1, 247, 1, 247, 3, 247, 5597, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5605, 8, 247, 1, 247, 1, 247, 3, 247, 5609, 8, 247, 1, 247, 1, 247, 3, 247, 5613, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5619, 8, 247, 3, 247, 5621, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5633, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5638, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5644, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5650, 8, 250, 1, 250, 1, 250, 3, 250, 5654, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5659, 8, 250, 3, 250, 5661, 8, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5685, 8, 252, 4, 252, 5687, 8, 252, 11, 252, 12, 252, 5688, 1, 252, 3, 252, 5692, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5701, 8, 253, 1, 253, 1, 253, 3, 253, 5705, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5714, 8, 253, 1, 253, 1, 253, 3, 253, 5718, 8, 253, 1, 253, 1, 253, 3, 253, 5722, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5728, 8, 253, 3, 253, 5730, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5739, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5749, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5776, 8, 255, 1, 256, 1, 256, 3, 256, 5780, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5785, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5792, 8, 257, 1, 257, 3, 257, 5795, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5801, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5811, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5821, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5831, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5837, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5846, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5852, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5859, 8, 260, 3, 260, 5861, 8, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 3, 262, 5869, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5875, 8, 262, 1, 262, 1, 262, 3, 262, 5879, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5896, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5906, 8, 265, 1, 266, 1, 266, 3, 266, 5910, 8, 266, 1, 266, 1, 266, 3, 266, 5914, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5924, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5929, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6001, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6019, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 3, 269, 6027, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6033, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6045, 8, 269, 1, 269, 1, 269, 3, 269, 6049, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6060, 8, 269, 1, 269, 1, 269, 3, 269, 6064, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6073, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 6079, 8, 270, 10, 270, 12, 270, 6082, 9, 270, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6088, 8, 271, 1, 272, 1, 272, 3, 272, 6092, 8, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 6099, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6104, 8, 273, 1, 273, 3, 273, 6107, 8, 273, 1, 273, 3, 273, 6110, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6121, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6128, 8, 276, 10, 276, 12, 276, 6131, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6137, 8, 276, 10, 276, 12, 276, 6140, 9, 276, 3, 276, 6142, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6154, 8, 278, 10, 278, 12, 278, 6157, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6174, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6187, 8, 281, 1, 281, 3, 281, 6190, 8, 281, 1, 281, 1, 281, 3, 281, 6194, 8, 281, 1, 281, 3, 281, 6197, 8, 281, 3, 281, 6199, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6206, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6213, 8, 282, 5, 282, 6215, 8, 282, 10, 282, 12, 282, 6218, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6224, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6231, 8, 282, 1, 282, 3, 282, 6234, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 6248, 8, 282, 10, 282, 12, 282, 6251, 9, 282, 3, 282, 6253, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6263, 8, 283, 1, 283, 1, 283, 3, 283, 6267, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6273, 8, 283, 1, 283, 3, 283, 6276, 8, 283, 1, 283, 3, 283, 6279, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6284, 8, 283, 1, 283, 1, 283, 3, 283, 6288, 8, 283, 1, 283, 3, 283, 6291, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6298, 8, 283, 1, 283, 3, 283, 6301, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6307, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6343, 8, 283, 1, 283, 3, 283, 6346, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6358, 8, 283, 1, 283, 3, 283, 6361, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6377, 8, 283, 3, 283, 6379, 8, 283, 1, 283, 1, 283, 3, 283, 6383, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6390, 8, 283, 1, 283, 1, 283, 3, 283, 6394, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6401, 8, 283, 1, 283, 3, 283, 6404, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6411, 8, 283, 10, 283, 12, 283, 6414, 9, 283, 3, 283, 6416, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6421, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6427, 8, 283, 3, 283, 6429, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6435, 8, 283, 1, 283, 1, 283, 3, 283, 6439, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6445, 8, 284, 1, 284, 3, 284, 6448, 8, 284, 1, 284, 3, 284, 6451, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 6464, 8, 285, 1, 285, 3, 285, 6467, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6473, 8, 286, 1, 287, 3, 287, 6476, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6484, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6492, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 6498, 8, 288, 1, 288, 3, 288, 6501, 8, 288, 1, 288, 1, 288, 3, 288, 6505, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6519, 8, 289, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 6529, 8, 291, 10, 291, 12, 291, 6532, 9, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6539, 8, 291, 1, 291, 1, 291, 3, 291, 6543, 8, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 3, 292, 6550, 8, 292, 1, 292, 1, 292, 1, 292, 5, 292, 6555, 8, 292, 10, 292, 12, 292, 6558, 9, 292, 1, 293, 1, 293, 3, 293, 6562, 8, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 6573, 8, 294, 10, 294, 12, 294, 6576, 9, 294, 1, 295, 1, 295, 1, 295, 1, 295, 5, 295, 6582, 8, 295, 10, 295, 12, 295, 6585, 9, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6592, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6597, 8, 297, 1, 297, 3, 297, 6600, 8, 297, 1, 298, 1, 298, 1, 298, 3, 298, 6605, 8, 298, 1, 298, 3, 298, 6608, 8, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6620, 8, 301, 1, 302, 1, 302, 1, 302, 3, 302, 6625, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6638, 8, 302, 3, 302, 6640, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6645, 8, 302, 1, 302, 1, 302, 3, 302, 6649, 8, 302, 1, 302, 3, 302, 6652, 8, 302, 3, 302, 6654, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6661, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6668, 8, 304, 1, 304, 3, 304, 6671, 8, 304, 1, 304, 3, 304, 6674, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6680, 8, 304, 1, 304, 1, 304, 3, 304, 6684, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6690, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6698, 8, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6707, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6720, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6725, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6731, 8, 310, 10, 310, 12, 310, 6734, 9, 310, 3, 310, 6736, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6741, 8, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6746, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6752, 8, 311, 10, 311, 12, 311, 6755, 9, 311, 3, 311, 6757, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6765, 8, 312, 1, 313, 1, 313, 3, 313, 6769, 8, 313, 1, 313, 1, 313, 1, 313, 5, 313, 6774, 8, 313, 10, 313, 12, 313, 6777, 9, 313, 1, 314, 1, 314, 1, 314, 3, 314, 6782, 8, 314, 1, 314, 3, 314, 6785, 8, 314, 1, 315, 1, 315, 3, 315, 6789, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6800, 8, 315, 10, 315, 12, 315, 6803, 9, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6808, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6818, 8, 315, 10, 315, 12, 315, 6821, 9, 315, 3, 315, 6823, 8, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6832, 8, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6837, 8, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6856, 8, 325, 10, 325, 12, 325, 6859, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6872, 8, 330, 10, 330, 12, 330, 6875, 9, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6882, 8, 332, 10, 332, 12, 332, 6885, 9, 332, 1, 333, 1, 333, 3, 333, 6889, 8, 333, 1, 334, 1, 334, 1, 334, 3, 334, 6894, 8, 334, 3, 334, 6896, 8, 334, 1, 334, 3, 334, 6899, 8, 334, 1, 334, 1, 334, 3, 334, 6903, 8, 334, 3, 334, 6905, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6910, 8, 335, 10, 335, 12, 335, 6913, 9, 335, 1, 336, 1, 336, 1, 336, 3, 336, 6918, 8, 336, 3, 336, 6920, 8, 336, 1, 336, 3, 336, 6923, 8, 336, 1, 336, 1, 336, 3, 336, 6927, 8, 336, 1, 336, 3, 336, 6930, 8, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 5, 340, 6941, 8, 340, 10, 340, 12, 340, 6944, 9, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6953, 8, 342, 1, 342, 3, 342, 6956, 8, 342, 1, 342, 3, 342, 6959, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 6972, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 3, 347, 6978, 8, 347, 1, 347, 3, 347, 6981, 8, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 6989, 8, 349, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6996, 8, 351, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 4, 353, 7014, 8, 353, 11, 353, 12, 353, 7015, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7023, 8, 354, 3, 354, 7025, 8, 354, 1, 355, 1, 355, 1, 355, 4, 355, 7030, 8, 355, 11, 355, 12, 355, 7031, 3, 355, 7034, 8, 355, 1, 356, 1, 356, 3, 356, 7038, 8, 356, 1, 357, 1, 357, 1, 357, 5, 357, 7043, 8, 357, 10, 357, 12, 357, 7046, 9, 357, 1, 358, 1, 358, 1, 358, 3, 358, 7051, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 7062, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7068, 8, 360, 1, 361, 1, 361, 1, 362, 1, 362, 3, 362, 7074, 8, 362, 1, 363, 3, 363, 7077, 8, 363, 1, 363, 1, 363, 3, 363, 7081, 8, 363, 1, 363, 4, 363, 7084, 8, 363, 11, 363, 12, 363, 7085, 1, 363, 3, 363, 7089, 8, 363, 1, 363, 1, 363, 3, 363, 7093, 8, 363, 1, 363, 1, 363, 3, 363, 7097, 8, 363, 3, 363, 7099, 8, 363, 1, 364, 1, 364, 1, 365, 3, 365, 7104, 8, 365, 1, 365, 1, 365, 1, 366, 3, 366, 7109, 8, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7122, 8, 367, 1, 367, 3, 367, 7125, 8, 367, 1, 368, 1, 368, 3, 368, 7129, 8, 368, 1, 368, 3, 368, 7132, 8, 368, 1, 368, 3, 368, 7135, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7140, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7145, 8, 368, 1, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7151, 8, 368, 1, 368, 3, 368, 7154, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7159, 8, 368, 1, 368, 3, 368, 7162, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7167, 8, 368, 1, 368, 3, 368, 7170, 8, 368, 1, 368, 1, 368, 3, 368, 7174, 8, 368, 1, 368, 5, 368, 7177, 8, 368, 10, 368, 12, 368, 7180, 9, 368, 1, 368, 1, 368, 3, 368, 7184, 8, 368, 1, 368, 5, 368, 7187, 8, 368, 10, 368, 12, 368, 7190, 9, 368, 1, 368, 1, 368, 3, 368, 7194, 8, 368, 1, 368, 3, 368, 7197, 8, 368, 1, 368, 5, 368, 7200, 8, 368, 10, 368, 12, 368, 7203, 9, 368, 1, 368, 1, 368, 3, 368, 7207, 8, 368, 1, 368, 5, 368, 7210, 8, 368, 10, 368, 12, 368, 7213, 9, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7218, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7223, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7228, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7233, 8, 368, 1, 368, 1, 368, 3, 368, 7237, 8, 368, 1, 368, 3, 368, 7240, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7245, 8, 368, 1, 368, 1, 368, 3, 368, 7249, 8, 368, 1, 368, 1, 368, 3, 368, 7253, 8, 368, 1, 369, 1, 369, 1, 369, 1, 369, 5, 369, 7259, 8, 369, 10, 369, 12, 369, 7262, 9, 369, 1, 369, 1, 369, 1, 370, 1, 370, 3, 370, 7268, 8, 370, 1, 370, 1, 370, 3, 370, 7272, 8, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7277, 8, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7282, 8, 370, 1, 370, 1, 370, 3, 370, 7286, 8, 370, 3, 370, 7288, 8, 370, 1, 370, 3, 370, 7291, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7307, 8, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 5, 374, 7315, 8, 374, 10, 374, 12, 374, 7318, 9, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 5, 375, 7325, 8, 375, 10, 375, 12, 375, 7328, 9, 375, 1, 376, 1, 376, 1, 376, 1, 376, 5, 376, 7334, 8, 376, 10, 376, 12, 376, 7337, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 5, 377, 7343, 8, 377, 10, 377, 12, 377, 7346, 9, 377, 1, 377, 1, 377, 1, 378, 1, 378, 3, 378, 7352, 8, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7357, 8, 379, 10, 379, 12, 379, 7360, 9, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7365, 8, 380, 10, 380, 12, 380, 7368, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7373, 8, 381, 10, 381, 12, 381, 7376, 9, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7387, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7394, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7404, 8, 382, 1, 383, 1, 383, 1, 383, 3, 383, 7409, 8, 383, 1, 383, 3, 383, 7412, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7417, 8, 383, 1, 383, 3, 383, 7420, 8, 383, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7442, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7451, 8, 387, 1, 387, 3, 387, 7454, 8, 387, 1, 388, 1, 388, 1, 388, 3, 388, 7459, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 4, 388, 7490, 8, 388, 11, 388, 12, 388, 7491, 1, 388, 1, 388, 3, 388, 7496, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 4, 388, 7503, 8, 388, 11, 388, 12, 388, 7504, 1, 388, 1, 388, 3, 388, 7509, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7518, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7526, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7531, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7539, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7544, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7549, 8, 388, 3, 388, 7551, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7560, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7565, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7573, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7578, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7586, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7594, 8, 388, 1, 388, 3, 388, 7597, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7607, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7625, 8, 388, 1, 388, 3, 388, 7628, 8, 388, 1, 388, 3, 388, 7631, 8, 388, 1, 388, 1, 388, 3, 388, 7635, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 5, 390, 7646, 8, 390, 10, 390, 12, 390, 7649, 9, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7656, 8, 390, 1, 391, 1, 391, 3, 391, 7660, 8, 391, 1, 392, 1, 392, 1, 392, 3, 392, 7665, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7670, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7676, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7681, 8, 392, 1, 392, 1, 392, 3, 392, 7685, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7690, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7695, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7700, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 5, 392, 7708, 8, 392, 10, 392, 12, 392, 7711, 9, 392, 3, 392, 7713, 8, 392, 1, 392, 1, 392, 3, 392, 7717, 8, 392, 1, 392, 1, 392, 3, 392, 7721, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7728, 8, 393, 1, 393, 1, 393, 3, 393, 7732, 8, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7761, 8, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7769, 8, 394, 1, 395, 3, 395, 7772, 8, 395, 1, 395, 3, 395, 7775, 8, 395, 1, 395, 3, 395, 7778, 8, 395, 1, 395, 3, 395, 7781, 8, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 3, 399, 7792, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7806, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7813, 8, 402, 10, 402, 12, 402, 7816, 9, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7842, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 5, 405, 7852, 8, 405, 10, 405, 12, 405, 7855, 9, 405, 1, 406, 1, 406, 1, 406, 3, 406, 7860, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7868, 8, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7873, 8, 407, 1, 407, 1, 407, 1, 407, 1, 407, 5, 407, 7879, 8, 407, 10, 407, 12, 407, 7882, 9, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7889, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7902, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7908, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7914, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7929, 8, 408, 1, 408, 1, 408, 3, 408, 7933, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7939, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 5, 408, 7948, 8, 408, 10, 408, 12, 408, 7951, 9, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 7969, 8, 409, 10, 409, 12, 409, 7972, 9, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 4, 409, 7981, 8, 409, 11, 409, 12, 409, 7982, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 8001, 8, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 8018, 8, 409, 10, 409, 12, 409, 8021, 9, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 8033, 8, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 8042, 8, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 8051, 8, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 8060, 8, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 8069, 8, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 0, 5, 214, 216, 814, 816, 818, 424, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 75, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9446, 0, 851, 1, 0, 0, 0, 2, 861, 1, 0, 0, 0, 4, 870, 1, 0, 0, 0, 6, 872, 1, 0, 0, 0, 8, 914, 1, 0, 0, 0, 10, 933, 1, 0, 0, 0, 12, 944, 1, 0, 0, 0, 14, 960, 1, 0, 0, 0, 16, 965, 1, 0, 0, 0, 18, 977, 1, 0, 0, 0, 20, 1012, 1, 0, 0, 0, 22, 1022, 1, 0, 0, 0, 24, 1024, 1, 0, 0, 0, 26, 1036, 1, 0, 0, 0, 28, 1066, 1, 0, 0, 0, 30, 1102, 1, 0, 0, 0, 32, 1153, 1, 0, 0, 0, 34, 1182, 1, 0, 0, 0, 36, 1218, 1, 0, 0, 0, 38, 1232, 1, 0, 0, 0, 40, 1239, 1, 0, 0, 0, 42, 1336, 1, 0, 0, 0, 44, 1338, 1, 0, 0, 0, 46, 1375, 1, 0, 0, 0, 48, 1439, 1, 0, 0, 0, 50, 1464, 1, 0, 0, 0, 52, 1470, 1, 0, 0, 0, 54, 1492, 1, 0, 0, 0, 56, 1579, 1, 0, 0, 0, 58, 1586, 1, 0, 0, 0, 60, 1588, 1, 0, 0, 0, 62, 1593, 1, 0, 0, 0, 64, 1633, 1, 0, 0, 0, 66, 1639, 1, 0, 0, 0, 68, 1641, 1, 0, 0, 0, 70, 1662, 1, 0, 0, 0, 72, 1669, 1, 0, 0, 0, 74, 1671, 1, 0, 0, 0, 76, 1696, 1, 0, 0, 0, 78, 1699, 1, 0, 0, 0, 80, 1704, 1, 0, 0, 0, 82, 1730, 1, 0, 0, 0, 84, 1746, 1, 0, 0, 0, 86, 1748, 1, 0, 0, 0, 88, 1842, 1, 0, 0, 0, 90, 1845, 1, 0, 0, 0, 92, 1857, 1, 0, 0, 0, 94, 1861, 1, 0, 0, 0, 96, 1911, 1, 0, 0, 0, 98, 1913, 1, 0, 0, 0, 100, 1941, 1, 0, 0, 0, 102, 1951, 1, 0, 0, 0, 104, 2138, 1, 0, 0, 0, 106, 2140, 1, 0, 0, 0, 108, 2142, 1, 0, 0, 0, 110, 2145, 1, 0, 0, 0, 112, 2220, 1, 0, 0, 0, 114, 2243, 1, 0, 0, 0, 116, 2391, 1, 0, 0, 0, 118, 2396, 1, 0, 0, 0, 120, 2398, 1, 0, 0, 0, 122, 2408, 1, 0, 0, 0, 124, 2464, 1, 0, 0, 0, 126, 2484, 1, 0, 0, 0, 128, 2486, 1, 0, 0, 0, 130, 2521, 1, 0, 0, 0, 132, 2530, 1, 0, 0, 0, 134, 2537, 1, 0, 0, 0, 136, 2560, 1, 0, 0, 0, 138, 2569, 1, 0, 0, 0, 140, 2584, 1, 0, 0, 0, 142, 2606, 1, 0, 0, 0, 144, 2662, 1, 0, 0, 0, 146, 2958, 1, 0, 0, 0, 148, 3058, 1, 0, 0, 0, 150, 3060, 1, 0, 0, 0, 152, 3067, 1, 0, 0, 0, 154, 3074, 1, 0, 0, 0, 156, 3097, 1, 0, 0, 0, 158, 3107, 1, 0, 0, 0, 160, 3114, 1, 0, 0, 0, 162, 3121, 1, 0, 0, 0, 164, 3128, 1, 0, 0, 0, 166, 3137, 1, 0, 0, 0, 168, 3149, 1, 0, 0, 0, 170, 3162, 1, 0, 0, 0, 172, 3169, 1, 0, 0, 0, 174, 3185, 1, 0, 0, 0, 176, 3212, 1, 0, 0, 0, 178, 3214, 1, 0, 0, 0, 180, 3224, 1, 0, 0, 0, 182, 3228, 1, 0, 0, 0, 184, 3234, 1, 0, 0, 0, 186, 3246, 1, 0, 0, 0, 188, 3248, 1, 0, 0, 0, 190, 3255, 1, 0, 0, 0, 192, 3257, 1, 0, 0, 0, 194, 3306, 1, 0, 0, 0, 196, 3315, 1, 0, 0, 0, 198, 3317, 1, 0, 0, 0, 200, 3328, 1, 0, 0, 0, 202, 3334, 1, 0, 0, 0, 204, 3408, 1, 0, 0, 0, 206, 3471, 1, 0, 0, 0, 208, 3489, 1, 0, 0, 0, 210, 3573, 1, 0, 0, 0, 212, 3576, 1, 0, 0, 0, 214, 3588, 1, 0, 0, 0, 216, 3608, 1, 0, 0, 0, 218, 3636, 1, 0, 0, 0, 220, 3640, 1, 0, 0, 0, 222, 3642, 1, 0, 0, 0, 224, 3652, 1, 0, 0, 0, 226, 3672, 1, 0, 0, 0, 228, 3679, 1, 0, 0, 0, 230, 3681, 1, 0, 0, 0, 232, 3692, 1, 0, 0, 0, 234, 3701, 1, 0, 0, 0, 236, 3707, 1, 0, 0, 0, 238, 3730, 1, 0, 0, 0, 240, 3732, 1, 0, 0, 0, 242, 3768, 1, 0, 0, 0, 244, 3823, 1, 0, 0, 0, 246, 3832, 1, 0, 0, 0, 248, 3852, 1, 0, 0, 0, 250, 3864, 1, 0, 0, 0, 252, 3868, 1, 0, 0, 0, 254, 3879, 1, 0, 0, 0, 256, 3912, 1, 0, 0, 0, 258, 3933, 1, 0, 0, 0, 260, 3943, 1, 0, 0, 0, 262, 3947, 1, 0, 0, 0, 264, 3973, 1, 0, 0, 0, 266, 4014, 1, 0, 0, 0, 268, 4021, 1, 0, 0, 0, 270, 4023, 1, 0, 0, 0, 272, 4027, 1, 0, 0, 0, 274, 4044, 1, 0, 0, 0, 276, 4095, 1, 0, 0, 0, 278, 4104, 1, 0, 0, 0, 280, 4114, 1, 0, 0, 0, 282, 4116, 1, 0, 0, 0, 284, 4149, 1, 0, 0, 0, 286, 4157, 1, 0, 0, 0, 288, 4174, 1, 0, 0, 0, 290, 4190, 1, 0, 0, 0, 292, 4227, 1, 0, 0, 0, 294, 4233, 1, 0, 0, 0, 296, 4242, 1, 0, 0, 0, 298, 4255, 1, 0, 0, 0, 300, 4259, 1, 0, 0, 0, 302, 4283, 1, 0, 0, 0, 304, 4285, 1, 0, 0, 0, 306, 4289, 1, 0, 0, 0, 308, 4291, 1, 0, 0, 0, 310, 4299, 1, 0, 0, 0, 312, 4337, 1, 0, 0, 0, 314, 4351, 1, 0, 0, 0, 316, 4359, 1, 0, 0, 0, 318, 4363, 1, 0, 0, 0, 320, 4369, 1, 0, 0, 0, 322, 4383, 1, 0, 0, 0, 324, 4386, 1, 0, 0, 0, 326, 4404, 1, 0, 0, 0, 328, 4408, 1, 0, 0, 0, 330, 4424, 1, 0, 0, 0, 332, 4426, 1, 0, 0, 0, 334, 4438, 1, 0, 0, 0, 336, 4442, 1, 0, 0, 0, 338, 4459, 1, 0, 0, 0, 340, 4476, 1, 0, 0, 0, 342, 4479, 1, 0, 0, 0, 344, 4489, 1, 0, 0, 0, 346, 4493, 1, 0, 0, 0, 348, 4503, 1, 0, 0, 0, 350, 4506, 1, 0, 0, 0, 352, 4511, 1, 0, 0, 0, 354, 4531, 1, 0, 0, 0, 356, 4533, 1, 0, 0, 0, 358, 4550, 1, 0, 0, 0, 360, 4559, 1, 0, 0, 0, 362, 4568, 1, 0, 0, 0, 364, 4570, 1, 0, 0, 0, 366, 4584, 1, 0, 0, 0, 368, 4598, 1, 0, 0, 0, 370, 4613, 1, 0, 0, 0, 372, 4622, 1, 0, 0, 0, 374, 4647, 1, 0, 0, 0, 376, 4662, 1, 0, 0, 0, 378, 4681, 1, 0, 0, 0, 380, 4711, 1, 0, 0, 0, 382, 4713, 1, 0, 0, 0, 384, 4715, 1, 0, 0, 0, 386, 4717, 1, 0, 0, 0, 388, 4732, 1, 0, 0, 0, 390, 4761, 1, 0, 0, 0, 392, 4763, 1, 0, 0, 0, 394, 4765, 1, 0, 0, 0, 396, 4767, 1, 0, 0, 0, 398, 4782, 1, 0, 0, 0, 400, 4784, 1, 0, 0, 0, 402, 4851, 1, 0, 0, 0, 404, 4853, 1, 0, 0, 0, 406, 4859, 1, 0, 0, 0, 408, 4886, 1, 0, 0, 0, 410, 4900, 1, 0, 0, 0, 412, 4911, 1, 0, 0, 0, 414, 4913, 1, 0, 0, 0, 416, 4919, 1, 0, 0, 0, 418, 4929, 1, 0, 0, 0, 420, 4933, 1, 0, 0, 0, 422, 4940, 1, 0, 0, 0, 424, 4944, 1, 0, 0, 0, 426, 4950, 1, 0, 0, 0, 428, 4957, 1, 0, 0, 0, 430, 4963, 1, 0, 0, 0, 432, 4969, 1, 0, 0, 0, 434, 4974, 1, 0, 0, 0, 436, 5019, 1, 0, 0, 0, 438, 5040, 1, 0, 0, 0, 440, 5065, 1, 0, 0, 0, 442, 5068, 1, 0, 0, 0, 444, 5074, 1, 0, 0, 0, 446, 5090, 1, 0, 0, 0, 448, 5105, 1, 0, 0, 0, 450, 5111, 1, 0, 0, 0, 452, 5141, 1, 0, 0, 0, 454, 5143, 1, 0, 0, 0, 456, 5150, 1, 0, 0, 0, 458, 5162, 1, 0, 0, 0, 460, 5168, 1, 0, 0, 0, 462, 5193, 1, 0, 0, 0, 464, 5197, 1, 0, 0, 0, 466, 5201, 1, 0, 0, 0, 468, 5212, 1, 0, 0, 0, 470, 5220, 1, 0, 0, 0, 472, 5283, 1, 0, 0, 0, 474, 5342, 1, 0, 0, 0, 476, 5444, 1, 0, 0, 0, 478, 5454, 1, 0, 0, 0, 480, 5456, 1, 0, 0, 0, 482, 5474, 1, 0, 0, 0, 484, 5498, 1, 0, 0, 0, 486, 5522, 1, 0, 0, 0, 488, 5529, 1, 0, 0, 0, 490, 5549, 1, 0, 0, 0, 492, 5558, 1, 0, 0, 0, 494, 5620, 1, 0, 0, 0, 496, 5622, 1, 0, 0, 0, 498, 5626, 1, 0, 0, 0, 500, 5660, 1, 0, 0, 0, 502, 5662, 1, 0, 0, 0, 504, 5665, 1, 0, 0, 0, 506, 5729, 1, 0, 0, 0, 508, 5748, 1, 0, 0, 0, 510, 5775, 1, 0, 0, 0, 512, 5779, 1, 0, 0, 0, 514, 5800, 1, 0, 0, 0, 516, 5810, 1, 0, 0, 0, 518, 5820, 1, 0, 0, 0, 520, 5860, 1, 0, 0, 0, 522, 5862, 1, 0, 0, 0, 524, 5865, 1, 0, 0, 0, 526, 5895, 1, 0, 0, 0, 528, 5897, 1, 0, 0, 0, 530, 5900, 1, 0, 0, 0, 532, 6000, 1, 0, 0, 0, 534, 6018, 1, 0, 0, 0, 536, 6020, 1, 0, 0, 0, 538, 6072, 1, 0, 0, 0, 540, 6074, 1, 0, 0, 0, 542, 6083, 1, 0, 0, 0, 544, 6089, 1, 0, 0, 0, 546, 6096, 1, 0, 0, 0, 548, 6111, 1, 0, 0, 0, 550, 6120, 1, 0, 0, 0, 552, 6122, 1, 0, 0, 0, 554, 6143, 1, 0, 0, 0, 556, 6148, 1, 0, 0, 0, 558, 6158, 1, 0, 0, 0, 560, 6164, 1, 0, 0, 0, 562, 6198, 1, 0, 0, 0, 564, 6252, 1, 0, 0, 0, 566, 6438, 1, 0, 0, 0, 568, 6450, 1, 0, 0, 0, 570, 6466, 1, 0, 0, 0, 572, 6472, 1, 0, 0, 0, 574, 6491, 1, 0, 0, 0, 576, 6504, 1, 0, 0, 0, 578, 6518, 1, 0, 0, 0, 580, 6520, 1, 0, 0, 0, 582, 6523, 1, 0, 0, 0, 584, 6547, 1, 0, 0, 0, 586, 6559, 1, 0, 0, 0, 588, 6565, 1, 0, 0, 0, 590, 6577, 1, 0, 0, 0, 592, 6591, 1, 0, 0, 0, 594, 6593, 1, 0, 0, 0, 596, 6601, 1, 0, 0, 0, 598, 6609, 1, 0, 0, 0, 600, 6611, 1, 0, 0, 0, 602, 6613, 1, 0, 0, 0, 604, 6653, 1, 0, 0, 0, 606, 6660, 1, 0, 0, 0, 608, 6662, 1, 0, 0, 0, 610, 6685, 1, 0, 0, 0, 612, 6691, 1, 0, 0, 0, 614, 6701, 1, 0, 0, 0, 616, 6710, 1, 0, 0, 0, 618, 6713, 1, 0, 0, 0, 620, 6716, 1, 0, 0, 0, 622, 6737, 1, 0, 0, 0, 624, 6758, 1, 0, 0, 0, 626, 6766, 1, 0, 0, 0, 628, 6778, 1, 0, 0, 0, 630, 6786, 1, 0, 0, 0, 632, 6824, 1, 0, 0, 0, 634, 6836, 1, 0, 0, 0, 636, 6838, 1, 0, 0, 0, 638, 6840, 1, 0, 0, 0, 640, 6842, 1, 0, 0, 0, 642, 6844, 1, 0, 0, 0, 644, 6846, 1, 0, 0, 0, 646, 6848, 1, 0, 0, 0, 648, 6850, 1, 0, 0, 0, 650, 6852, 1, 0, 0, 0, 652, 6860, 1, 0, 0, 0, 654, 6862, 1, 0, 0, 0, 656, 6864, 1, 0, 0, 0, 658, 6866, 1, 0, 0, 0, 660, 6868, 1, 0, 0, 0, 662, 6876, 1, 0, 0, 0, 664, 6878, 1, 0, 0, 0, 666, 6888, 1, 0, 0, 0, 668, 6904, 1, 0, 0, 0, 670, 6906, 1, 0, 0, 0, 672, 6929, 1, 0, 0, 0, 674, 6931, 1, 0, 0, 0, 676, 6933, 1, 0, 0, 0, 678, 6935, 1, 0, 0, 0, 680, 6937, 1, 0, 0, 0, 682, 6945, 1, 0, 0, 0, 684, 6955, 1, 0, 0, 0, 686, 6960, 1, 0, 0, 0, 688, 6964, 1, 0, 0, 0, 690, 6971, 1, 0, 0, 0, 692, 6973, 1, 0, 0, 0, 694, 6980, 1, 0, 0, 0, 696, 6982, 1, 0, 0, 0, 698, 6988, 1, 0, 0, 0, 700, 6990, 1, 0, 0, 0, 702, 6995, 1, 0, 0, 0, 704, 6997, 1, 0, 0, 0, 706, 6999, 1, 0, 0, 0, 708, 7017, 1, 0, 0, 0, 710, 7033, 1, 0, 0, 0, 712, 7035, 1, 0, 0, 0, 714, 7039, 1, 0, 0, 0, 716, 7050, 1, 0, 0, 0, 718, 7061, 1, 0, 0, 0, 720, 7067, 1, 0, 0, 0, 722, 7069, 1, 0, 0, 0, 724, 7073, 1, 0, 0, 0, 726, 7098, 1, 0, 0, 0, 728, 7100, 1, 0, 0, 0, 730, 7103, 1, 0, 0, 0, 732, 7108, 1, 0, 0, 0, 734, 7124, 1, 0, 0, 0, 736, 7252, 1, 0, 0, 0, 738, 7254, 1, 0, 0, 0, 740, 7287, 1, 0, 0, 0, 742, 7292, 1, 0, 0, 0, 744, 7296, 1, 0, 0, 0, 746, 7302, 1, 0, 0, 0, 748, 7310, 1, 0, 0, 0, 750, 7321, 1, 0, 0, 0, 752, 7329, 1, 0, 0, 0, 754, 7338, 1, 0, 0, 0, 756, 7351, 1, 0, 0, 0, 758, 7353, 1, 0, 0, 0, 760, 7361, 1, 0, 0, 0, 762, 7369, 1, 0, 0, 0, 764, 7403, 1, 0, 0, 0, 766, 7419, 1, 0, 0, 0, 768, 7421, 1, 0, 0, 0, 770, 7424, 1, 0, 0, 0, 772, 7428, 1, 0, 0, 0, 774, 7453, 1, 0, 0, 0, 776, 7634, 1, 0, 0, 0, 778, 7636, 1, 0, 0, 0, 780, 7655, 1, 0, 0, 0, 782, 7657, 1, 0, 0, 0, 784, 7720, 1, 0, 0, 0, 786, 7760, 1, 0, 0, 0, 788, 7762, 1, 0, 0, 0, 790, 7771, 1, 0, 0, 0, 792, 7782, 1, 0, 0, 0, 794, 7784, 1, 0, 0, 0, 796, 7787, 1, 0, 0, 0, 798, 7791, 1, 0, 0, 0, 800, 7793, 1, 0, 0, 0, 802, 7805, 1, 0, 0, 0, 804, 7807, 1, 0, 0, 0, 806, 7841, 1, 0, 0, 0, 808, 7843, 1, 0, 0, 0, 810, 7848, 1, 0, 0, 0, 812, 7859, 1, 0, 0, 0, 814, 7872, 1, 0, 0, 0, 816, 7883, 1, 0, 0, 0, 818, 8000, 1, 0, 0, 0, 820, 8022, 1, 0, 0, 0, 822, 8032, 1, 0, 0, 0, 824, 8041, 1, 0, 0, 0, 826, 8050, 1, 0, 0, 0, 828, 8059, 1, 0, 0, 0, 830, 8061, 1, 0, 0, 0, 832, 8068, 1, 0, 0, 0, 834, 8070, 1, 0, 0, 0, 836, 8072, 1, 0, 0, 0, 838, 8074, 1, 0, 0, 0, 840, 8076, 1, 0, 0, 0, 842, 8078, 1, 0, 0, 0, 844, 8080, 1, 0, 0, 0, 846, 8082, 1, 0, 0, 0, 848, 850, 3, 2, 1, 0, 849, 848, 1, 0, 0, 0, 850, 853, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 854, 855, 5, 0, 0, 1, 855, 1, 1, 0, 0, 0, 856, 858, 3, 4, 2, 0, 857, 859, 5, 869, 0, 0, 858, 857, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 862, 3, 6, 3, 0, 861, 856, 1, 0, 0, 0, 861, 860, 1, 0, 0, 0, 862, 3, 1, 0, 0, 0, 863, 871, 3, 8, 4, 0, 864, 871, 3, 10, 5, 0, 865, 871, 3, 12, 6, 0, 866, 871, 3, 14, 7, 0, 867, 871, 3, 16, 8, 0, 868, 871, 3, 20, 10, 0, 869, 871, 3, 22, 11, 0, 870, 863, 1, 0, 0, 0, 870, 864, 1, 0, 0, 0, 870, 865, 1, 0, 0, 0, 870, 866, 1, 0, 0, 0, 870, 867, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 870, 869, 1, 0, 0, 0, 871, 5, 1, 0, 0, 0, 872, 873, 5, 869, 0, 0, 873, 7, 1, 0, 0, 0, 874, 915, 3, 24, 12, 0, 875, 915, 3, 26, 13, 0, 876, 915, 3, 28, 14, 0, 877, 915, 3, 30, 15, 0, 878, 915, 3, 32, 16, 0, 879, 915, 3, 34, 17, 0, 880, 915, 3, 36, 18, 0, 881, 915, 3, 40, 20, 0, 882, 915, 3, 42, 21, 0, 883, 915, 3, 44, 22, 0, 884, 915, 3, 46, 23, 0, 885, 915, 3, 48, 24, 0, 886, 915, 3, 54, 27, 0, 887, 915, 3, 38, 19, 0, 888, 915, 3, 126, 63, 0, 889, 915, 3, 128, 64, 0, 890, 915, 3, 130, 65, 0, 891, 915, 3, 132, 66, 0, 892, 915, 3, 134, 67, 0, 893, 915, 3, 136, 68, 0, 894, 915, 3, 138, 69, 0, 895, 915, 3, 140, 70, 0, 896, 915, 3, 142, 71, 0, 897, 915, 3, 144, 72, 0, 898, 915, 3, 150, 75, 0, 899, 915, 3, 152, 76, 0, 900, 915, 3, 154, 77, 0, 901, 915, 3, 156, 78, 0, 902, 915, 3, 158, 79, 0, 903, 915, 3, 160, 80, 0, 904, 915, 3, 162, 81, 0, 905, 915, 3, 164, 82, 0, 906, 915, 3, 166, 83, 0, 907, 915, 3, 168, 84, 0, 908, 915, 3, 170, 85, 0, 909, 915, 3, 172, 86, 0, 910, 915, 3, 174, 87, 0, 911, 915, 3, 176, 88, 0, 912, 915, 3, 178, 89, 0, 913, 915, 3, 182, 91, 0, 914, 874, 1, 0, 0, 0, 914, 875, 1, 0, 0, 0, 914, 876, 1, 0, 0, 0, 914, 877, 1, 0, 0, 0, 914, 878, 1, 0, 0, 0, 914, 879, 1, 0, 0, 0, 914, 880, 1, 0, 0, 0, 914, 881, 1, 0, 0, 0, 914, 882, 1, 0, 0, 0, 914, 883, 1, 0, 0, 0, 914, 884, 1, 0, 0, 0, 914, 885, 1, 0, 0, 0, 914, 886, 1, 0, 0, 0, 914, 887, 1, 0, 0, 0, 914, 888, 1, 0, 0, 0, 914, 889, 1, 0, 0, 0, 914, 890, 1, 0, 0, 0, 914, 891, 1, 0, 0, 0, 914, 892, 1, 0, 0, 0, 914, 893, 1, 0, 0, 0, 914, 894, 1, 0, 0, 0, 914, 895, 1, 0, 0, 0, 914, 896, 1, 0, 0, 0, 914, 897, 1, 0, 0, 0, 914, 898, 1, 0, 0, 0, 914, 899, 1, 0, 0, 0, 914, 900, 1, 0, 0, 0, 914, 901, 1, 0, 0, 0, 914, 902, 1, 0, 0, 0, 914, 903, 1, 0, 0, 0, 914, 904, 1, 0, 0, 0, 914, 905, 1, 0, 0, 0, 914, 906, 1, 0, 0, 0, 914, 907, 1, 0, 0, 0, 914, 908, 1, 0, 0, 0, 914, 909, 1, 0, 0, 0, 914, 910, 1, 0, 0, 0, 914, 911, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 914, 913, 1, 0, 0, 0, 915, 9, 1, 0, 0, 0, 916, 934, 3, 210, 105, 0, 917, 934, 3, 212, 106, 0, 918, 934, 3, 192, 96, 0, 919, 934, 3, 220, 110, 0, 920, 934, 3, 186, 93, 0, 921, 934, 3, 208, 104, 0, 922, 934, 3, 184, 92, 0, 923, 934, 3, 198, 99, 0, 924, 934, 3, 202, 101, 0, 925, 934, 3, 204, 102, 0, 926, 934, 3, 206, 103, 0, 927, 934, 3, 188, 94, 0, 928, 934, 3, 190, 95, 0, 929, 934, 3, 252, 126, 0, 930, 934, 3, 222, 111, 0, 931, 934, 3, 626, 313, 0, 932, 934, 3, 628, 314, 0, 933, 916, 1, 0, 0, 0, 933, 917, 1, 0, 0, 0, 933, 918, 1, 0, 0, 0, 933, 919, 1, 0, 0, 0, 933, 920, 1, 0, 0, 0, 933, 921, 1, 0, 0, 0, 933, 922, 1, 0, 0, 0, 933, 923, 1, 0, 0, 0, 933, 924, 1, 0, 0, 0, 933, 925, 1, 0, 0, 0, 933, 926, 1, 0, 0, 0, 933, 927, 1, 0, 0, 0, 933, 928, 1, 0, 0, 0, 933, 929, 1, 0, 0, 0, 933, 930, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 932, 1, 0, 0, 0, 934, 11, 1, 0, 0, 0, 935, 945, 3, 332, 166, 0, 936, 945, 3, 334, 167, 0, 937, 945, 3, 336, 168, 0, 938, 945, 3, 338, 169, 0, 939, 945, 3, 340, 170, 0, 940, 945, 3, 342, 171, 0, 941, 945, 3, 344, 172, 0, 942, 945, 3, 346, 173, 0, 943, 945, 3, 348, 174, 0, 944, 935, 1, 0, 0, 0, 944, 936, 1, 0, 0, 0, 944, 937, 1, 0, 0, 0, 944, 938, 1, 0, 0, 0, 944, 939, 1, 0, 0, 0, 944, 940, 1, 0, 0, 0, 944, 941, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 943, 1, 0, 0, 0, 945, 13, 1, 0, 0, 0, 946, 961, 3, 364, 182, 0, 947, 961, 3, 366, 183, 0, 948, 961, 3, 368, 184, 0, 949, 961, 3, 370, 185, 0, 950, 961, 3, 372, 186, 0, 951, 961, 3, 374, 187, 0, 952, 961, 3, 376, 188, 0, 953, 961, 3, 378, 189, 0, 954, 961, 3, 414, 207, 0, 955, 961, 3, 416, 208, 0, 956, 961, 3, 418, 209, 0, 957, 961, 3, 420, 210, 0, 958, 961, 3, 422, 211, 0, 959, 961, 3, 424, 212, 0, 960, 946, 1, 0, 0, 0, 960, 947, 1, 0, 0, 0, 960, 948, 1, 0, 0, 0, 960, 949, 1, 0, 0, 0, 960, 950, 1, 0, 0, 0, 960, 951, 1, 0, 0, 0, 960, 952, 1, 0, 0, 0, 960, 953, 1, 0, 0, 0, 960, 954, 1, 0, 0, 0, 960, 955, 1, 0, 0, 0, 960, 956, 1, 0, 0, 0, 960, 957, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 960, 959, 1, 0, 0, 0, 961, 15, 1, 0, 0, 0, 962, 966, 3, 426, 213, 0, 963, 966, 3, 428, 214, 0, 964, 966, 3, 430, 215, 0, 965, 962, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 964, 1, 0, 0, 0, 966, 17, 1, 0, 0, 0, 967, 978, 3, 434, 217, 0, 968, 978, 3, 436, 218, 0, 969, 978, 3, 438, 219, 0, 970, 978, 3, 442, 221, 0, 971, 978, 3, 444, 222, 0, 972, 978, 3, 446, 223, 0, 973, 978, 3, 450, 225, 0, 974, 978, 3, 440, 220, 0, 975, 978, 3, 448, 224, 0, 976, 978, 3, 452, 226, 0, 977, 967, 1, 0, 0, 0, 977, 968, 1, 0, 0, 0, 977, 969, 1, 0, 0, 0, 977, 970, 1, 0, 0, 0, 977, 971, 1, 0, 0, 0, 977, 972, 1, 0, 0, 0, 977, 973, 1, 0, 0, 0, 977, 974, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 977, 976, 1, 0, 0, 0, 978, 19, 1, 0, 0, 0, 979, 1013, 3, 470, 235, 0, 980, 1013, 3, 472, 236, 0, 981, 1013, 3, 474, 237, 0, 982, 1013, 3, 476, 238, 0, 983, 1013, 3, 480, 240, 0, 984, 1013, 3, 492, 246, 0, 985, 1013, 3, 494, 247, 0, 986, 1013, 3, 482, 241, 0, 987, 1013, 3, 484, 242, 0, 988, 1013, 3, 486, 243, 0, 989, 1013, 3, 488, 244, 0, 990, 1013, 3, 538, 269, 0, 991, 1013, 3, 540, 270, 0, 992, 1013, 3, 542, 271, 0, 993, 1013, 3, 544, 272, 0, 994, 1013, 3, 546, 273, 0, 995, 1013, 3, 552, 276, 0, 996, 1013, 3, 556, 278, 0, 997, 1013, 3, 558, 279, 0, 998, 1013, 3, 560, 280, 0, 999, 1013, 3, 562, 281, 0, 1000, 1013, 3, 564, 282, 0, 1001, 1013, 3, 566, 283, 0, 1002, 1013, 3, 580, 290, 0, 1003, 1013, 3, 582, 291, 0, 1004, 1013, 3, 584, 292, 0, 1005, 1013, 3, 586, 293, 0, 1006, 1013, 3, 588, 294, 0, 1007, 1013, 3, 590, 295, 0, 1008, 1013, 3, 594, 297, 0, 1009, 1013, 3, 596, 298, 0, 1010, 1013, 3, 598, 299, 0, 1011, 1013, 3, 600, 300, 0, 1012, 979, 1, 0, 0, 0, 1012, 980, 1, 0, 0, 0, 1012, 981, 1, 0, 0, 0, 1012, 982, 1, 0, 0, 0, 1012, 983, 1, 0, 0, 0, 1012, 984, 1, 0, 0, 0, 1012, 985, 1, 0, 0, 0, 1012, 986, 1, 0, 0, 0, 1012, 987, 1, 0, 0, 0, 1012, 988, 1, 0, 0, 0, 1012, 989, 1, 0, 0, 0, 1012, 990, 1, 0, 0, 0, 1012, 991, 1, 0, 0, 0, 1012, 992, 1, 0, 0, 0, 1012, 993, 1, 0, 0, 0, 1012, 994, 1, 0, 0, 0, 1012, 995, 1, 0, 0, 0, 1012, 996, 1, 0, 0, 0, 1012, 997, 1, 0, 0, 0, 1012, 998, 1, 0, 0, 0, 1012, 999, 1, 0, 0, 0, 1012, 1000, 1, 0, 0, 0, 1012, 1001, 1, 0, 0, 0, 1012, 1002, 1, 0, 0, 0, 1012, 1003, 1, 0, 0, 0, 1012, 1004, 1, 0, 0, 0, 1012, 1005, 1, 0, 0, 0, 1012, 1006, 1, 0, 0, 0, 1012, 1007, 1, 0, 0, 0, 1012, 1008, 1, 0, 0, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1011, 1, 0, 0, 0, 1013, 21, 1, 0, 0, 0, 1014, 1023, 3, 612, 306, 0, 1015, 1023, 3, 610, 305, 0, 1016, 1023, 3, 614, 307, 0, 1017, 1023, 3, 616, 308, 0, 1018, 1023, 3, 618, 309, 0, 1019, 1023, 3, 620, 310, 0, 1020, 1023, 3, 622, 311, 0, 1021, 1023, 3, 630, 315, 0, 1022, 1014, 1, 0, 0, 0, 1022, 1015, 1, 0, 0, 0, 1022, 1016, 1, 0, 0, 0, 1022, 1017, 1, 0, 0, 0, 1022, 1018, 1, 0, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1021, 1, 0, 0, 0, 1023, 23, 1, 0, 0, 0, 1024, 1025, 5, 34, 0, 0, 1025, 1027, 7, 0, 0, 0, 1026, 1028, 3, 770, 385, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1033, 3, 636, 318, 0, 1030, 1032, 3, 56, 28, 0, 1031, 1030, 1, 0, 0, 0, 1032, 1035, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 25, 1, 0, 0, 0, 1035, 1033, 1, 0, 0, 0, 1036, 1038, 5, 34, 0, 0, 1037, 1039, 3, 62, 31, 0, 1038, 1037, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1042, 5, 385, 0, 0, 1041, 1043, 3, 770, 385, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 3, 712, 356, 0, 1045, 1046, 5, 119, 0, 0, 1046, 1047, 5, 590, 0, 0, 1047, 1054, 3, 64, 32, 0, 1048, 1049, 5, 119, 0, 0, 1049, 1051, 5, 343, 0, 0, 1050, 1052, 5, 114, 0, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1055, 5, 541, 0, 0, 1054, 1048, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1057, 1, 0, 0, 0, 1056, 1058, 3, 72, 36, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1061, 1, 0, 0, 0, 1059, 1060, 5, 340, 0, 0, 1060, 1062, 5, 882, 0, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 5, 371, 0, 0, 1064, 1065, 3, 432, 216, 0, 1065, 27, 1, 0, 0, 0, 1066, 1068, 5, 34, 0, 0, 1067, 1069, 7, 1, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 1, 0, 0, 0, 1070, 1072, 7, 2, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 5, 82, 0, 0, 1074, 1076, 3, 648, 324, 0, 1075, 1077, 3, 74, 37, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 5, 119, 0, 0, 1079, 1080, 3, 662, 331, 0, 1080, 1084, 3, 748, 374, 0, 1081, 1083, 3, 76, 38, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1099, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1089, 5, 308, 0, 0, 1088, 1090, 5, 857, 0, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1098, 7, 3, 0, 0, 1092, 1094, 5, 104, 0, 0, 1093, 1095, 5, 857, 0, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 7, 4, 0, 0, 1097, 1087, 1, 0, 0, 0, 1097, 1092, 1, 0, 0, 0, 1098, 1101, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 29, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 1103, 5, 34, 0, 0, 1103, 1104, 5, 451, 0, 0, 1104, 1105, 5, 74, 0, 0, 1105, 1106, 3, 716, 358, 0, 1106, 1107, 5, 6, 0, 0, 1107, 1108, 5, 671, 0, 0, 1108, 1114, 5, 882, 0, 0, 1109, 1111, 5, 428, 0, 0, 1110, 1112, 5, 857, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1115, 3, 724, 362, 0, 1114, 1109, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1121, 1, 0, 0, 0, 1116, 1118, 5, 672, 0, 0, 1117, 1119, 5, 857, 0, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 3, 724, 362, 0, 1121, 1116, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1128, 1, 0, 0, 0, 1123, 1125, 5, 553, 0, 0, 1124, 1126, 5, 857, 0, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 3, 724, 362, 0, 1128, 1123, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1135, 1, 0, 0, 0, 1130, 1132, 5, 504, 0, 0, 1131, 1133, 5, 857, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1136, 3, 716, 358, 0, 1135, 1130, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1138, 1, 0, 0, 0, 1137, 1139, 5, 687, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1145, 1, 0, 0, 0, 1140, 1142, 5, 340, 0, 0, 1141, 1143, 5, 857, 0, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 5, 882, 0, 0, 1145, 1140, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 5, 380, 0, 0, 1148, 1150, 5, 857, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 3, 702, 351, 0, 1152, 31, 1, 0, 0, 0, 1153, 1155, 5, 34, 0, 0, 1154, 1156, 3, 62, 31, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 5, 132, 0, 0, 1158, 1160, 3, 770, 385, 0, 1159, 1158, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 3, 712, 356, 0, 1162, 1164, 5, 866, 0, 0, 1163, 1165, 3, 78, 39, 0, 1164, 1163, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1170, 1, 0, 0, 0, 1166, 1167, 5, 868, 0, 0, 1167, 1169, 3, 78, 39, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1172, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1173, 1177, 5, 867, 0, 0, 1174, 1176, 3, 82, 41, 0, 1175, 1174, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1180, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1181, 3, 432, 216, 0, 1181, 33, 1, 0, 0, 0, 1182, 1184, 5, 34, 0, 0, 1183, 1185, 3, 62, 31, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1188, 5, 307, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 5, 409, 0, 0, 1190, 1192, 3, 770, 385, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 3, 640, 320, 0, 1194, 1196, 5, 866, 0, 0, 1195, 1197, 3, 80, 40, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1202, 1, 0, 0, 0, 1198, 1199, 5, 868, 0, 0, 1199, 1201, 3, 80, 40, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1205, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1206, 5, 867, 0, 0, 1206, 1207, 5, 580, 0, 0, 1207, 1211, 3, 736, 368, 0, 1208, 1210, 3, 82, 41, 0, 1209, 1208, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1216, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1217, 3, 432, 216, 0, 1215, 1217, 3, 448, 224, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1215, 1, 0, 0, 0, 1217, 35, 1, 0, 0, 0, 1218, 1220, 5, 34, 0, 0, 1219, 1221, 5, 307, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 5, 409, 0, 0, 1223, 1225, 3, 770, 385, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 3, 640, 320, 0, 1227, 1228, 5, 580, 0, 0, 1228, 1229, 7, 5, 0, 0, 1229, 1230, 5, 603, 0, 0, 1230, 1231, 5, 882, 0, 0, 1231, 37, 1, 0, 0, 0, 1232, 1233, 5, 34, 0, 0, 1233, 1235, 5, 582, 0, 0, 1234, 1236, 3, 770, 385, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 3, 664, 332, 0, 1238, 39, 1, 0, 0, 0, 1239, 1240, 5, 34, 0, 0, 1240, 1241, 5, 592, 0, 0, 1241, 1242, 3, 716, 358, 0, 1242, 1243, 5, 67, 0, 0, 1243, 1244, 5, 360, 0, 0, 1244, 1245, 5, 692, 0, 0, 1245, 1246, 7, 6, 0, 0, 1246, 1247, 5, 518, 0, 0, 1247, 1248, 5, 866, 0, 0, 1248, 1253, 3, 84, 42, 0, 1249, 1250, 5, 868, 0, 0, 1250, 1252, 3, 84, 42, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1257, 5, 867, 0, 0, 1257, 41, 1, 0, 0, 0, 1258, 1260, 5, 34, 0, 0, 1259, 1261, 5, 660, 0, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1264, 5, 173, 0, 0, 1263, 1265, 3, 770, 385, 0, 1264, 1263, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1268, 3, 658, 329, 0, 1267, 1269, 3, 86, 43, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1280, 1, 0, 0, 0, 1270, 1277, 3, 104, 52, 0, 1271, 1273, 5, 868, 0, 0, 1272, 1271, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 3, 104, 52, 0, 1275, 1272, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1270, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1284, 3, 110, 55, 0, 1283, 1282, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1287, 7, 7, 0, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 1, 0, 0, 0, 1288, 1290, 5, 13, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 3, 210, 105, 0, 1292, 1337, 1, 0, 0, 0, 1293, 1295, 5, 34, 0, 0, 1294, 1296, 5, 660, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 5, 173, 0, 0, 1298, 1300, 3, 770, 385, 0, 1299, 1298, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1309, 3, 658, 329, 0, 1302, 1303, 5, 99, 0, 0, 1303, 1310, 3, 662, 331, 0, 1304, 1305, 5, 866, 0, 0, 1305, 1306, 5, 99, 0, 0, 1306, 1307, 3, 662, 331, 0, 1307, 1308, 5, 867, 0, 0, 1308, 1310, 1, 0, 0, 0, 1309, 1302, 1, 0, 0, 0, 1309, 1304, 1, 0, 0, 0, 1310, 1337, 1, 0, 0, 0, 1311, 1313, 5, 34, 0, 0, 1312, 1314, 5, 660, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 5, 173, 0, 0, 1316, 1318, 3, 770, 385, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 3, 658, 329, 0, 1320, 1331, 3, 86, 43, 0, 1321, 1328, 3, 104, 52, 0, 1322, 1324, 5, 868, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1327, 3, 104, 52, 0, 1326, 1323, 1, 0, 0, 0, 1327, 1330, 1, 0, 0, 0, 1328, 1326, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1332, 1, 0, 0, 0, 1330, 1328, 1, 0, 0, 0, 1331, 1321, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1335, 3, 110, 55, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 1, 0, 0, 0, 1336, 1258, 1, 0, 0, 0, 1336, 1293, 1, 0, 0, 0, 1336, 1311, 1, 0, 0, 0, 1337, 43, 1, 0, 0, 0, 1338, 1340, 5, 34, 0, 0, 1339, 1341, 5, 180, 0, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 5, 658, 0, 0, 1343, 1347, 3, 674, 337, 0, 1344, 1345, 5, 6, 0, 0, 1345, 1346, 5, 361, 0, 0, 1346, 1348, 5, 882, 0, 0, 1347, 1344, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1354, 1, 0, 0, 0, 1349, 1351, 5, 314, 0, 0, 1350, 1352, 5, 857, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1355, 3, 724, 362, 0, 1354, 1349, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1359, 1, 0, 0, 0, 1356, 1357, 5, 399, 0, 0, 1357, 1358, 5, 857, 0, 0, 1358, 1360, 3, 724, 362, 0, 1359, 1356, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1366, 1, 0, 0, 0, 1361, 1363, 5, 380, 0, 0, 1362, 1364, 5, 857, 0, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 3, 702, 351, 0, 1366, 1361, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1373, 1, 0, 0, 0, 1368, 1370, 5, 825, 0, 0, 1369, 1371, 5, 857, 0, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1374, 5, 882, 0, 0, 1373, 1368, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 45, 1, 0, 0, 0, 1375, 1377, 5, 34, 0, 0, 1376, 1378, 5, 180, 0, 0, 1377, 1376, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 5, 658, 0, 0, 1380, 1381, 3, 674, 337, 0, 1381, 1382, 5, 6, 0, 0, 1382, 1383, 5, 361, 0, 0, 1383, 1384, 5, 882, 0, 0, 1384, 1385, 5, 187, 0, 0, 1385, 1386, 5, 451, 0, 0, 1386, 1387, 5, 74, 0, 0, 1387, 1393, 3, 716, 358, 0, 1388, 1390, 5, 393, 0, 0, 1389, 1391, 5, 857, 0, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1394, 3, 724, 362, 0, 1393, 1388, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1400, 1, 0, 0, 0, 1395, 1397, 5, 428, 0, 0, 1396, 1398, 5, 857, 0, 0, 1397, 1396, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1401, 3, 724, 362, 0, 1400, 1395, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1407, 1, 0, 0, 0, 1402, 1404, 5, 314, 0, 0, 1403, 1405, 5, 857, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1408, 3, 724, 362, 0, 1407, 1402, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1414, 1, 0, 0, 0, 1409, 1411, 5, 481, 0, 0, 1410, 1412, 5, 857, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1415, 3, 724, 362, 0, 1414, 1409, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1421, 1, 0, 0, 0, 1416, 1418, 5, 504, 0, 0, 1417, 1419, 5, 857, 0, 0, 1418, 1417, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1422, 3, 716, 358, 0, 1421, 1416, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 5, 687, 0, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1431, 1, 0, 0, 0, 1426, 1428, 5, 340, 0, 0, 1427, 1429, 5, 857, 0, 0, 1428, 1427, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1432, 5, 882, 0, 0, 1431, 1426, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1435, 5, 380, 0, 0, 1434, 1436, 5, 857, 0, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 3, 702, 351, 0, 1438, 47, 1, 0, 0, 0, 1439, 1441, 5, 34, 0, 0, 1440, 1442, 3, 62, 31, 0, 1441, 1440, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1445, 3, 770, 385, 0, 1444, 1443, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1448, 5, 178, 0, 0, 1447, 1449, 3, 770, 385, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 3, 712, 356, 0, 1451, 1452, 7, 8, 0, 0, 1452, 1453, 7, 9, 0, 0, 1453, 1454, 5, 119, 0, 0, 1454, 1455, 3, 662, 331, 0, 1455, 1456, 5, 65, 0, 0, 1456, 1457, 5, 52, 0, 0, 1457, 1460, 5, 586, 0, 0, 1458, 1459, 7, 10, 0, 0, 1459, 1461, 3, 712, 356, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 3, 432, 216, 0, 1463, 49, 1, 0, 0, 0, 1464, 1466, 5, 194, 0, 0, 1465, 1467, 5, 552, 0, 0, 1466, 1465, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1469, 3, 52, 26, 0, 1469, 51, 1, 0, 0, 0, 1470, 1482, 3, 716, 358, 0, 1471, 1472, 5, 866, 0, 0, 1472, 1477, 3, 716, 358, 0, 1473, 1474, 5, 868, 0, 0, 1474, 1476, 3, 716, 358, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1479, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1481, 5, 867, 0, 0, 1481, 1483, 1, 0, 0, 0, 1482, 1471, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 5, 13, 0, 0, 1485, 1486, 5, 866, 0, 0, 1486, 1487, 3, 10, 5, 0, 1487, 1490, 5, 867, 0, 0, 1488, 1489, 5, 868, 0, 0, 1489, 1491, 3, 52, 26, 0, 1490, 1488, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 53, 1, 0, 0, 0, 1492, 1494, 5, 34, 0, 0, 1493, 1495, 3, 772, 386, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1499, 1, 0, 0, 0, 1496, 1497, 5, 308, 0, 0, 1497, 1498, 5, 857, 0, 0, 1498, 1500, 7, 11, 0, 0, 1499, 1496, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1502, 1, 0, 0, 0, 1501, 1503, 3, 62, 31, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1507, 1, 0, 0, 0, 1504, 1505, 5, 162, 0, 0, 1505, 1506, 5, 591, 0, 0, 1506, 1508, 7, 12, 0, 0, 1507, 1504, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 5, 684, 0, 0, 1510, 1522, 3, 644, 322, 0, 1511, 1512, 5, 866, 0, 0, 1512, 1517, 3, 668, 334, 0, 1513, 1514, 5, 868, 0, 0, 1514, 1516, 3, 668, 334, 0, 1515, 1513, 1, 0, 0, 0, 1516, 1519, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1520, 1521, 5, 867, 0, 0, 1521, 1523, 1, 0, 0, 0, 1522, 1511, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1544, 5, 13, 0, 0, 1525, 1527, 5, 866, 0, 0, 1526, 1528, 3, 50, 25, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 3, 210, 105, 0, 1530, 1531, 5, 867, 0, 0, 1531, 1545, 1, 0, 0, 0, 1532, 1534, 3, 50, 25, 0, 1533, 1532, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1542, 3, 210, 105, 0, 1536, 1538, 5, 194, 0, 0, 1537, 1539, 7, 13, 0, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 5, 27, 0, 0, 1541, 1543, 5, 121, 0, 0, 1542, 1536, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1525, 1, 0, 0, 0, 1544, 1533, 1, 0, 0, 0, 1545, 55, 1, 0, 0, 0, 1546, 1548, 5, 42, 0, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 3, 58, 29, 0, 1550, 1552, 5, 857, 0, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1555, 1, 0, 0, 0, 1553, 1556, 3, 698, 349, 0, 1554, 1556, 5, 42, 0, 0, 1555, 1553, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 1580, 1, 0, 0, 0, 1557, 1559, 5, 42, 0, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 5, 28, 0, 0, 1561, 1563, 5, 857, 0, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1580, 3, 700, 350, 0, 1565, 1567, 5, 42, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 5, 376, 0, 0, 1569, 1571, 5, 857, 0, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1580, 5, 882, 0, 0, 1573, 1574, 5, 135, 0, 0, 1574, 1576, 5, 515, 0, 0, 1575, 1577, 5, 857, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 7, 14, 0, 0, 1579, 1547, 1, 0, 0, 0, 1579, 1558, 1, 0, 0, 0, 1579, 1566, 1, 0, 0, 0, 1579, 1573, 1, 0, 0, 0, 1580, 57, 1, 0, 0, 0, 1581, 1582, 5, 26, 0, 0, 1582, 1587, 5, 155, 0, 0, 1583, 1587, 5, 823, 0, 0, 1584, 1585, 5, 224, 0, 0, 1585, 1587, 5, 155, 0, 0, 1586, 1581, 1, 0, 0, 0, 1586, 1583, 1, 0, 0, 0, 1586, 1584, 1, 0, 0, 0, 1587, 59, 1, 0, 0, 0, 1588, 1591, 7, 15, 0, 0, 1589, 1590, 5, 866, 0, 0, 1590, 1592, 5, 867, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 61, 1, 0, 0, 0, 1593, 1594, 5, 364, 0, 0, 1594, 1597, 5, 857, 0, 0, 1595, 1598, 3, 694, 347, 0, 1596, 1598, 3, 60, 30, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1596, 1, 0, 0, 0, 1598, 63, 1, 0, 0, 0, 1599, 1600, 5, 311, 0, 0, 1600, 1604, 3, 66, 33, 0, 1601, 1603, 3, 68, 34, 0, 1602, 1601, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1602, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1634, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1607, 1610, 5, 387, 0, 0, 1608, 1611, 3, 722, 361, 0, 1609, 1611, 3, 814, 407, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1621, 3, 70, 35, 0, 1613, 1614, 5, 641, 0, 0, 1614, 1618, 3, 66, 33, 0, 1615, 1617, 3, 68, 34, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1613, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1631, 1, 0, 0, 0, 1623, 1624, 5, 379, 0, 0, 1624, 1628, 3, 66, 33, 0, 1625, 1627, 3, 68, 34, 0, 1626, 1625, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1632, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1623, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1634, 1, 0, 0, 0, 1633, 1599, 1, 0, 0, 0, 1633, 1607, 1, 0, 0, 0, 1634, 65, 1, 0, 0, 0, 1635, 1640, 5, 287, 0, 0, 1636, 1640, 3, 726, 363, 0, 1637, 1640, 3, 722, 361, 0, 1638, 1640, 3, 814, 407, 0, 1639, 1635, 1, 0, 0, 0, 1639, 1636, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1638, 1, 0, 0, 0, 1640, 67, 1, 0, 0, 0, 1641, 1642, 5, 853, 0, 0, 1642, 1645, 5, 87, 0, 0, 1643, 1646, 3, 722, 361, 0, 1644, 1646, 3, 814, 407, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 3, 70, 35, 0, 1648, 69, 1, 0, 0, 0, 1649, 1663, 3, 840, 420, 0, 1650, 1663, 5, 223, 0, 0, 1651, 1663, 5, 242, 0, 0, 1652, 1663, 5, 243, 0, 0, 1653, 1663, 5, 244, 0, 0, 1654, 1663, 5, 245, 0, 0, 1655, 1663, 5, 246, 0, 0, 1656, 1663, 5, 247, 0, 0, 1657, 1663, 5, 248, 0, 0, 1658, 1663, 5, 249, 0, 0, 1659, 1663, 5, 250, 0, 0, 1660, 1663, 5, 251, 0, 0, 1661, 1663, 5, 252, 0, 0, 1662, 1649, 1, 0, 0, 0, 1662, 1650, 1, 0, 0, 0, 1662, 1651, 1, 0, 0, 0, 1662, 1652, 1, 0, 0, 0, 1662, 1653, 1, 0, 0, 0, 1662, 1654, 1, 0, 0, 0, 1662, 1655, 1, 0, 0, 0, 1662, 1656, 1, 0, 0, 0, 1662, 1657, 1, 0, 0, 0, 1662, 1658, 1, 0, 0, 0, 1662, 1659, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1661, 1, 0, 0, 0, 1663, 71, 1, 0, 0, 0, 1664, 1670, 5, 375, 0, 0, 1665, 1670, 5, 368, 0, 0, 1666, 1667, 5, 368, 0, 0, 1667, 1668, 5, 119, 0, 0, 1668, 1670, 5, 598, 0, 0, 1669, 1664, 1, 0, 0, 0, 1669, 1665, 1, 0, 0, 0, 1669, 1666, 1, 0, 0, 0, 1670, 73, 1, 0, 0, 0, 1671, 1672, 5, 188, 0, 0, 1672, 1673, 7, 16, 0, 0, 1673, 75, 1, 0, 0, 0, 1674, 1676, 5, 443, 0, 0, 1675, 1677, 5, 857, 0, 0, 1676, 1675, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1697, 3, 724, 362, 0, 1679, 1697, 3, 74, 37, 0, 1680, 1681, 5, 194, 0, 0, 1681, 1682, 5, 525, 0, 0, 1682, 1697, 3, 716, 358, 0, 1683, 1684, 5, 340, 0, 0, 1684, 1697, 5, 882, 0, 0, 1685, 1697, 7, 17, 0, 0, 1686, 1688, 5, 825, 0, 0, 1687, 1689, 5, 857, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1697, 5, 882, 0, 0, 1691, 1693, 5, 833, 0, 0, 1692, 1694, 5, 857, 0, 0, 1693, 1692, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1697, 5, 882, 0, 0, 1696, 1674, 1, 0, 0, 0, 1696, 1679, 1, 0, 0, 0, 1696, 1680, 1, 0, 0, 0, 1696, 1683, 1, 0, 0, 0, 1696, 1685, 1, 0, 0, 0, 1696, 1686, 1, 0, 0, 0, 1696, 1691, 1, 0, 0, 0, 1697, 77, 1, 0, 0, 0, 1698, 1700, 7, 18, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 3, 716, 358, 0, 1702, 1703, 3, 736, 368, 0, 1703, 79, 1, 0, 0, 0, 1704, 1705, 3, 716, 358, 0, 1705, 1706, 3, 736, 368, 0, 1706, 81, 1, 0, 0, 0, 1707, 1708, 5, 340, 0, 0, 1708, 1731, 5, 882, 0, 0, 1709, 1710, 5, 444, 0, 0, 1710, 1731, 5, 162, 0, 0, 1711, 1713, 5, 114, 0, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1731, 5, 47, 0, 0, 1715, 1716, 5, 354, 0, 0, 1716, 1726, 5, 162, 0, 0, 1717, 1718, 5, 502, 0, 0, 1718, 1726, 5, 162, 0, 0, 1719, 1720, 5, 136, 0, 0, 1720, 1721, 5, 162, 0, 0, 1721, 1726, 5, 360, 0, 0, 1722, 1723, 5, 112, 0, 0, 1723, 1724, 5, 162, 0, 0, 1724, 1726, 5, 360, 0, 0, 1725, 1715, 1, 0, 0, 0, 1725, 1717, 1, 0, 0, 0, 1725, 1719, 1, 0, 0, 0, 1725, 1722, 1, 0, 0, 0, 1726, 1731, 1, 0, 0, 0, 1727, 1728, 5, 162, 0, 0, 1728, 1729, 5, 591, 0, 0, 1729, 1731, 7, 12, 0, 0, 1730, 1707, 1, 0, 0, 0, 1730, 1709, 1, 0, 0, 0, 1730, 1712, 1, 0, 0, 0, 1730, 1725, 1, 0, 0, 0, 1730, 1727, 1, 0, 0, 0, 1731, 83, 1, 0, 0, 0, 1732, 1733, 5, 421, 0, 0, 1733, 1747, 5, 882, 0, 0, 1734, 1735, 5, 39, 0, 0, 1735, 1747, 5, 882, 0, 0, 1736, 1737, 5, 678, 0, 0, 1737, 1747, 5, 882, 0, 0, 1738, 1739, 5, 529, 0, 0, 1739, 1747, 5, 882, 0, 0, 1740, 1741, 5, 601, 0, 0, 1741, 1747, 5, 882, 0, 0, 1742, 1743, 5, 519, 0, 0, 1743, 1747, 5, 882, 0, 0, 1744, 1745, 5, 537, 0, 0, 1745, 1747, 3, 722, 361, 0, 1746, 1732, 1, 0, 0, 0, 1746, 1734, 1, 0, 0, 0, 1746, 1736, 1, 0, 0, 0, 1746, 1738, 1, 0, 0, 0, 1746, 1740, 1, 0, 0, 0, 1746, 1742, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 85, 1, 0, 0, 0, 1748, 1749, 5, 866, 0, 0, 1749, 1754, 3, 88, 44, 0, 1750, 1751, 5, 868, 0, 0, 1751, 1753, 3, 88, 44, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1756, 1, 0, 0, 0, 1754, 1752, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1758, 5, 867, 0, 0, 1758, 87, 1, 0, 0, 0, 1759, 1760, 3, 668, 334, 0, 1760, 1761, 3, 94, 47, 0, 1761, 1843, 1, 0, 0, 0, 1762, 1764, 7, 19, 0, 0, 1763, 1765, 3, 652, 326, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1768, 3, 74, 37, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1773, 3, 748, 374, 0, 1770, 1772, 3, 76, 38, 0, 1771, 1770, 1, 0, 0, 0, 1772, 1775, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1843, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1776, 1778, 7, 20, 0, 0, 1777, 1779, 7, 19, 0, 0, 1778, 1777, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1781, 1, 0, 0, 0, 1780, 1782, 3, 652, 326, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1787, 3, 748, 374, 0, 1784, 1786, 3, 76, 38, 0, 1785, 1784, 1, 0, 0, 0, 1786, 1789, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1843, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1790, 1792, 3, 92, 46, 0, 1791, 1790, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 5, 131, 0, 0, 1794, 1796, 5, 92, 0, 0, 1795, 1797, 3, 74, 37, 0, 1796, 1795, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1802, 3, 748, 374, 0, 1799, 1801, 3, 76, 38, 0, 1800, 1799, 1, 0, 0, 0, 1801, 1804, 1, 0, 0, 0, 1802, 1800, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1843, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1805, 1807, 3, 92, 46, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1810, 5, 182, 0, 0, 1809, 1811, 7, 19, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1813, 1, 0, 0, 0, 1812, 1814, 3, 652, 326, 0, 1813, 1812, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, 1, 0, 0, 0, 1815, 1817, 3, 74, 37, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1822, 3, 748, 374, 0, 1819, 1821, 3, 76, 38, 0, 1820, 1819, 1, 0, 0, 0, 1821, 1824, 1, 0, 0, 0, 1822, 1820, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1843, 1, 0, 0, 0, 1824, 1822, 1, 0, 0, 0, 1825, 1827, 3, 92, 46, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 5, 67, 0, 0, 1829, 1831, 5, 92, 0, 0, 1830, 1832, 3, 652, 326, 0, 1831, 1830, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 3, 748, 374, 0, 1834, 1835, 3, 98, 49, 0, 1835, 1843, 1, 0, 0, 0, 1836, 1837, 5, 27, 0, 0, 1837, 1838, 5, 866, 0, 0, 1838, 1839, 3, 814, 407, 0, 1839, 1840, 5, 867, 0, 0, 1840, 1843, 1, 0, 0, 0, 1841, 1843, 3, 90, 45, 0, 1842, 1759, 1, 0, 0, 0, 1842, 1762, 1, 0, 0, 0, 1842, 1776, 1, 0, 0, 0, 1842, 1791, 1, 0, 0, 0, 1842, 1806, 1, 0, 0, 0, 1842, 1826, 1, 0, 0, 0, 1842, 1836, 1, 0, 0, 0, 1842, 1841, 1, 0, 0, 0, 1843, 89, 1, 0, 0, 0, 1844, 1846, 3, 92, 46, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 5, 27, 0, 0, 1848, 1849, 5, 866, 0, 0, 1849, 1850, 3, 814, 407, 0, 1850, 1855, 5, 867, 0, 0, 1851, 1853, 5, 114, 0, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 5, 57, 0, 0, 1855, 1852, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 91, 1, 0, 0, 0, 1857, 1859, 5, 31, 0, 0, 1858, 1860, 3, 716, 358, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 93, 1, 0, 0, 0, 1861, 1865, 3, 736, 368, 0, 1862, 1864, 3, 96, 48, 0, 1863, 1862, 1, 0, 0, 0, 1864, 1867, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 95, 1, 0, 0, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1912, 3, 732, 366, 0, 1869, 1870, 5, 42, 0, 0, 1870, 1912, 3, 764, 382, 0, 1871, 1912, 5, 686, 0, 0, 1872, 1912, 5, 435, 0, 0, 1873, 1878, 5, 315, 0, 0, 1874, 1875, 5, 119, 0, 0, 1875, 1876, 5, 185, 0, 0, 1876, 1878, 3, 766, 383, 0, 1877, 1873, 1, 0, 0, 0, 1877, 1874, 1, 0, 0, 0, 1878, 1912, 1, 0, 0, 0, 1879, 1881, 5, 131, 0, 0, 1880, 1879, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1912, 5, 92, 0, 0, 1883, 1885, 5, 182, 0, 0, 1884, 1886, 5, 92, 0, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1912, 1, 0, 0, 0, 1887, 1888, 5, 340, 0, 0, 1888, 1912, 5, 882, 0, 0, 1889, 1890, 5, 338, 0, 0, 1890, 1912, 7, 21, 0, 0, 1891, 1892, 5, 647, 0, 0, 1892, 1912, 7, 22, 0, 0, 1893, 1912, 3, 98, 49, 0, 1894, 1895, 5, 28, 0, 0, 1895, 1912, 3, 700, 350, 0, 1896, 1897, 5, 71, 0, 0, 1897, 1899, 5, 9, 0, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 5, 13, 0, 0, 1901, 1902, 5, 866, 0, 0, 1902, 1903, 3, 814, 407, 0, 1903, 1905, 5, 867, 0, 0, 1904, 1906, 7, 23, 0, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1912, 1, 0, 0, 0, 1907, 1908, 5, 241, 0, 0, 1908, 1909, 5, 42, 0, 0, 1909, 1912, 5, 682, 0, 0, 1910, 1912, 3, 90, 45, 0, 1911, 1868, 1, 0, 0, 0, 1911, 1869, 1, 0, 0, 0, 1911, 1871, 1, 0, 0, 0, 1911, 1872, 1, 0, 0, 0, 1911, 1877, 1, 0, 0, 0, 1911, 1880, 1, 0, 0, 0, 1911, 1883, 1, 0, 0, 0, 1911, 1887, 1, 0, 0, 0, 1911, 1889, 1, 0, 0, 0, 1911, 1891, 1, 0, 0, 0, 1911, 1893, 1, 0, 0, 0, 1911, 1894, 1, 0, 0, 0, 1911, 1898, 1, 0, 0, 0, 1911, 1907, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 97, 1, 0, 0, 0, 1913, 1914, 5, 138, 0, 0, 1914, 1916, 3, 662, 331, 0, 1915, 1917, 3, 748, 374, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1920, 1, 0, 0, 0, 1918, 1919, 5, 110, 0, 0, 1919, 1921, 7, 24, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1924, 3, 100, 50, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 99, 1, 0, 0, 0, 1925, 1926, 5, 119, 0, 0, 1926, 1927, 5, 44, 0, 0, 1927, 1931, 3, 102, 51, 0, 1928, 1929, 5, 119, 0, 0, 1929, 1930, 5, 185, 0, 0, 1930, 1932, 3, 102, 51, 0, 1931, 1928, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1942, 1, 0, 0, 0, 1933, 1934, 5, 119, 0, 0, 1934, 1935, 5, 185, 0, 0, 1935, 1939, 3, 102, 51, 0, 1936, 1937, 5, 119, 0, 0, 1937, 1938, 5, 44, 0, 0, 1938, 1940, 3, 102, 51, 0, 1939, 1936, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1942, 1, 0, 0, 0, 1941, 1925, 1, 0, 0, 0, 1941, 1933, 1, 0, 0, 0, 1942, 101, 1, 0, 0, 0, 1943, 1952, 5, 146, 0, 0, 1944, 1952, 5, 22, 0, 0, 1945, 1946, 5, 155, 0, 0, 1946, 1952, 5, 116, 0, 0, 1947, 1948, 5, 502, 0, 0, 1948, 1952, 5, 305, 0, 0, 1949, 1950, 5, 155, 0, 0, 1950, 1952, 5, 42, 0, 0, 1951, 1943, 1, 0, 0, 0, 1951, 1944, 1, 0, 0, 0, 1951, 1945, 1, 0, 0, 0, 1951, 1947, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 103, 1, 0, 0, 0, 1953, 1955, 5, 380, 0, 0, 1954, 1956, 5, 857, 0, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1959, 3, 702, 351, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 2139, 1, 0, 0, 0, 1960, 1962, 5, 825, 0, 0, 1961, 1963, 5, 857, 0, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 2139, 5, 882, 0, 0, 1965, 1967, 5, 314, 0, 0, 1966, 1968, 5, 857, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 2139, 3, 722, 361, 0, 1970, 1972, 5, 315, 0, 0, 1971, 1973, 5, 857, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 2139, 3, 722, 361, 0, 1975, 1977, 5, 316, 0, 0, 1976, 1978, 5, 857, 0, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 2139, 3, 722, 361, 0, 1980, 1982, 5, 42, 0, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 3, 58, 29, 0, 1984, 1986, 5, 857, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1989, 1, 0, 0, 0, 1987, 1990, 3, 698, 349, 0, 1988, 1990, 5, 42, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1988, 1, 0, 0, 0, 1990, 2139, 1, 0, 0, 0, 1991, 1993, 7, 25, 0, 0, 1992, 1994, 5, 857, 0, 0, 1993, 1992, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2139, 7, 26, 0, 0, 1996, 1998, 5, 42, 0, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2001, 5, 28, 0, 0, 2000, 2002, 5, 857, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2139, 3, 700, 350, 0, 2004, 2006, 5, 340, 0, 0, 2005, 2007, 5, 857, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2139, 5, 882, 0, 0, 2009, 2011, 5, 346, 0, 0, 2010, 2012, 5, 857, 0, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2139, 7, 27, 0, 0, 2014, 2016, 5, 349, 0, 0, 2015, 2017, 5, 857, 0, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2139, 5, 882, 0, 0, 2019, 2020, 7, 28, 0, 0, 2020, 2022, 5, 367, 0, 0, 2021, 2023, 5, 857, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2139, 5, 882, 0, 0, 2025, 2027, 5, 365, 0, 0, 2026, 2028, 5, 857, 0, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2139, 7, 26, 0, 0, 2030, 2032, 5, 376, 0, 0, 2031, 2033, 5, 857, 0, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2139, 5, 882, 0, 0, 2035, 2037, 7, 29, 0, 0, 2036, 2038, 5, 857, 0, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2139, 7, 26, 0, 0, 2040, 2042, 7, 30, 0, 0, 2041, 2043, 5, 857, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2139, 3, 722, 361, 0, 2045, 2047, 5, 377, 0, 0, 2046, 2048, 5, 857, 0, 0, 2047, 2046, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2139, 3, 722, 361, 0, 2050, 2051, 5, 82, 0, 0, 2051, 2053, 5, 367, 0, 0, 2052, 2054, 5, 857, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2139, 5, 882, 0, 0, 2056, 2058, 5, 431, 0, 0, 2057, 2059, 5, 857, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2139, 7, 31, 0, 0, 2061, 2063, 5, 443, 0, 0, 2062, 2064, 5, 857, 0, 0, 2063, 2062, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2139, 3, 724, 362, 0, 2066, 2068, 5, 480, 0, 0, 2067, 2069, 5, 857, 0, 0, 2068, 2067, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2139, 3, 722, 361, 0, 2071, 2073, 5, 490, 0, 0, 2072, 2074, 5, 857, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2139, 3, 722, 361, 0, 2076, 2078, 5, 520, 0, 0, 2077, 2079, 5, 857, 0, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2139, 7, 14, 0, 0, 2081, 2083, 5, 529, 0, 0, 2082, 2084, 5, 857, 0, 0, 2083, 2082, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2139, 5, 882, 0, 0, 2086, 2088, 5, 588, 0, 0, 2087, 2089, 5, 857, 0, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2139, 7, 32, 0, 0, 2091, 2092, 5, 640, 0, 0, 2092, 2139, 5, 664, 0, 0, 2093, 2095, 5, 833, 0, 0, 2094, 2096, 5, 857, 0, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2139, 5, 882, 0, 0, 2098, 2100, 5, 642, 0, 0, 2099, 2101, 5, 857, 0, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2139, 7, 14, 0, 0, 2103, 2105, 5, 643, 0, 0, 2104, 2106, 5, 857, 0, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2139, 7, 14, 0, 0, 2108, 2110, 5, 644, 0, 0, 2109, 2111, 5, 857, 0, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2114, 1, 0, 0, 0, 2112, 2115, 5, 42, 0, 0, 2113, 2115, 3, 722, 361, 0, 2114, 2112, 1, 0, 0, 0, 2114, 2113, 1, 0, 0, 0, 2115, 2139, 1, 0, 0, 0, 2116, 2117, 5, 658, 0, 0, 2117, 2119, 3, 676, 338, 0, 2118, 2120, 3, 108, 54, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2139, 1, 0, 0, 0, 2121, 2122, 5, 659, 0, 0, 2122, 2123, 5, 857, 0, 0, 2123, 2139, 3, 106, 53, 0, 2124, 2139, 3, 108, 54, 0, 2125, 2127, 5, 665, 0, 0, 2126, 2128, 5, 857, 0, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2139, 7, 26, 0, 0, 2130, 2132, 5, 181, 0, 0, 2131, 2133, 5, 857, 0, 0, 2132, 2131, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 5, 866, 0, 0, 2135, 2136, 3, 660, 330, 0, 2136, 2137, 5, 867, 0, 0, 2137, 2139, 1, 0, 0, 0, 2138, 1953, 1, 0, 0, 0, 2138, 1960, 1, 0, 0, 0, 2138, 1965, 1, 0, 0, 0, 2138, 1970, 1, 0, 0, 0, 2138, 1975, 1, 0, 0, 0, 2138, 1981, 1, 0, 0, 0, 2138, 1991, 1, 0, 0, 0, 2138, 1997, 1, 0, 0, 0, 2138, 2004, 1, 0, 0, 0, 2138, 2009, 1, 0, 0, 0, 2138, 2014, 1, 0, 0, 0, 2138, 2019, 1, 0, 0, 0, 2138, 2025, 1, 0, 0, 0, 2138, 2030, 1, 0, 0, 0, 2138, 2035, 1, 0, 0, 0, 2138, 2040, 1, 0, 0, 0, 2138, 2045, 1, 0, 0, 0, 2138, 2050, 1, 0, 0, 0, 2138, 2056, 1, 0, 0, 0, 2138, 2061, 1, 0, 0, 0, 2138, 2066, 1, 0, 0, 0, 2138, 2071, 1, 0, 0, 0, 2138, 2076, 1, 0, 0, 0, 2138, 2081, 1, 0, 0, 0, 2138, 2086, 1, 0, 0, 0, 2138, 2091, 1, 0, 0, 0, 2138, 2093, 1, 0, 0, 0, 2138, 2098, 1, 0, 0, 0, 2138, 2103, 1, 0, 0, 0, 2138, 2108, 1, 0, 0, 0, 2138, 2116, 1, 0, 0, 0, 2138, 2121, 1, 0, 0, 0, 2138, 2124, 1, 0, 0, 0, 2138, 2125, 1, 0, 0, 0, 2138, 2130, 1, 0, 0, 0, 2139, 105, 1, 0, 0, 0, 2140, 2141, 7, 33, 0, 0, 2141, 107, 1, 0, 0, 0, 2142, 2143, 5, 647, 0, 0, 2143, 2144, 7, 22, 0, 0, 2144, 109, 1, 0, 0, 0, 2145, 2146, 5, 130, 0, 0, 2146, 2147, 5, 20, 0, 0, 2147, 2150, 3, 112, 56, 0, 2148, 2149, 5, 528, 0, 0, 2149, 2151, 3, 722, 361, 0, 2150, 2148, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2159, 1, 0, 0, 0, 2152, 2153, 5, 652, 0, 0, 2153, 2154, 5, 20, 0, 0, 2154, 2157, 3, 114, 57, 0, 2155, 2156, 5, 653, 0, 0, 2156, 2158, 3, 722, 361, 0, 2157, 2155, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2152, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2172, 1, 0, 0, 0, 2161, 2162, 5, 866, 0, 0, 2162, 2167, 3, 116, 58, 0, 2163, 2164, 5, 868, 0, 0, 2164, 2166, 3, 116, 58, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2169, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2171, 5, 867, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2161, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 111, 1, 0, 0, 0, 2174, 2176, 5, 101, 0, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2178, 5, 418, 0, 0, 2178, 2179, 5, 866, 0, 0, 2179, 2180, 3, 814, 407, 0, 2180, 2181, 5, 867, 0, 0, 2181, 2221, 1, 0, 0, 0, 2182, 2184, 5, 101, 0, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2189, 5, 92, 0, 0, 2186, 2187, 5, 308, 0, 0, 2187, 2188, 5, 857, 0, 0, 2188, 2190, 7, 34, 0, 0, 2189, 2186, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2193, 5, 866, 0, 0, 2192, 2194, 3, 670, 335, 0, 2193, 2192, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2221, 5, 867, 0, 0, 2196, 2206, 5, 134, 0, 0, 2197, 2198, 5, 866, 0, 0, 2198, 2199, 3, 814, 407, 0, 2199, 2200, 5, 867, 0, 0, 2200, 2207, 1, 0, 0, 0, 2201, 2202, 5, 337, 0, 0, 2202, 2203, 5, 866, 0, 0, 2203, 2204, 3, 670, 335, 0, 2204, 2205, 5, 867, 0, 0, 2205, 2207, 1, 0, 0, 0, 2206, 2197, 1, 0, 0, 0, 2206, 2201, 1, 0, 0, 0, 2207, 2221, 1, 0, 0, 0, 2208, 2218, 5, 449, 0, 0, 2209, 2210, 5, 866, 0, 0, 2210, 2211, 3, 814, 407, 0, 2211, 2212, 5, 867, 0, 0, 2212, 2219, 1, 0, 0, 0, 2213, 2214, 5, 337, 0, 0, 2214, 2215, 5, 866, 0, 0, 2215, 2216, 3, 670, 335, 0, 2216, 2217, 5, 867, 0, 0, 2217, 2219, 1, 0, 0, 0, 2218, 2209, 1, 0, 0, 0, 2218, 2213, 1, 0, 0, 0, 2219, 2221, 1, 0, 0, 0, 2220, 2175, 1, 0, 0, 0, 2220, 2183, 1, 0, 0, 0, 2220, 2196, 1, 0, 0, 0, 2220, 2208, 1, 0, 0, 0, 2221, 113, 1, 0, 0, 0, 2222, 2224, 5, 101, 0, 0, 2223, 2222, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 5, 418, 0, 0, 2226, 2227, 5, 866, 0, 0, 2227, 2228, 3, 814, 407, 0, 2228, 2229, 5, 867, 0, 0, 2229, 2244, 1, 0, 0, 0, 2230, 2232, 5, 101, 0, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2237, 5, 92, 0, 0, 2234, 2235, 5, 308, 0, 0, 2235, 2236, 5, 857, 0, 0, 2236, 2238, 7, 34, 0, 0, 2237, 2234, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 5, 866, 0, 0, 2240, 2241, 3, 670, 335, 0, 2241, 2242, 5, 867, 0, 0, 2242, 2244, 1, 0, 0, 0, 2243, 2223, 1, 0, 0, 0, 2243, 2231, 1, 0, 0, 0, 2244, 115, 1, 0, 0, 0, 2245, 2246, 5, 130, 0, 0, 2246, 2247, 3, 682, 341, 0, 2247, 2248, 5, 189, 0, 0, 2248, 2249, 5, 447, 0, 0, 2249, 2250, 5, 662, 0, 0, 2250, 2251, 5, 866, 0, 0, 2251, 2256, 3, 118, 59, 0, 2252, 2253, 5, 868, 0, 0, 2253, 2255, 3, 118, 59, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2258, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2263, 5, 867, 0, 0, 2260, 2262, 3, 124, 62, 0, 2261, 2260, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2277, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 5, 866, 0, 0, 2267, 2272, 3, 122, 61, 0, 2268, 2269, 5, 868, 0, 0, 2269, 2271, 3, 122, 61, 0, 2270, 2268, 1, 0, 0, 0, 2271, 2274, 1, 0, 0, 0, 2272, 2270, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2275, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2275, 2276, 5, 867, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2266, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2392, 1, 0, 0, 0, 2279, 2280, 5, 130, 0, 0, 2280, 2281, 3, 682, 341, 0, 2281, 2282, 5, 189, 0, 0, 2282, 2283, 5, 447, 0, 0, 2283, 2284, 5, 662, 0, 0, 2284, 2288, 3, 118, 59, 0, 2285, 2287, 3, 124, 62, 0, 2286, 2285, 1, 0, 0, 0, 2287, 2290, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2302, 1, 0, 0, 0, 2290, 2288, 1, 0, 0, 0, 2291, 2292, 5, 866, 0, 0, 2292, 2297, 3, 122, 61, 0, 2293, 2294, 5, 868, 0, 0, 2294, 2296, 3, 122, 61, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2299, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2301, 5, 867, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2291, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2392, 1, 0, 0, 0, 2304, 2305, 5, 130, 0, 0, 2305, 2306, 3, 682, 341, 0, 2306, 2307, 5, 189, 0, 0, 2307, 2308, 5, 80, 0, 0, 2308, 2309, 5, 866, 0, 0, 2309, 2314, 3, 118, 59, 0, 2310, 2311, 5, 868, 0, 0, 2311, 2313, 3, 118, 59, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2316, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2321, 5, 867, 0, 0, 2318, 2320, 3, 124, 62, 0, 2319, 2318, 1, 0, 0, 0, 2320, 2323, 1, 0, 0, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2335, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2324, 2325, 5, 866, 0, 0, 2325, 2330, 3, 122, 61, 0, 2326, 2327, 5, 868, 0, 0, 2327, 2329, 3, 122, 61, 0, 2328, 2326, 1, 0, 0, 0, 2329, 2332, 1, 0, 0, 0, 2330, 2328, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2330, 1, 0, 0, 0, 2333, 2334, 5, 867, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2324, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2392, 1, 0, 0, 0, 2337, 2338, 5, 130, 0, 0, 2338, 2339, 3, 682, 341, 0, 2339, 2340, 5, 189, 0, 0, 2340, 2341, 5, 80, 0, 0, 2341, 2342, 5, 866, 0, 0, 2342, 2347, 3, 120, 60, 0, 2343, 2344, 5, 868, 0, 0, 2344, 2346, 3, 120, 60, 0, 2345, 2343, 1, 0, 0, 0, 2346, 2349, 1, 0, 0, 0, 2347, 2345, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2350, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2350, 2354, 5, 867, 0, 0, 2351, 2353, 3, 124, 62, 0, 2352, 2351, 1, 0, 0, 0, 2353, 2356, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2368, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2358, 5, 866, 0, 0, 2358, 2363, 3, 122, 61, 0, 2359, 2360, 5, 868, 0, 0, 2360, 2362, 3, 122, 61, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2365, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2366, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2367, 5, 867, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2357, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2392, 1, 0, 0, 0, 2370, 2371, 5, 130, 0, 0, 2371, 2375, 3, 682, 341, 0, 2372, 2374, 3, 124, 62, 0, 2373, 2372, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2389, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 866, 0, 0, 2379, 2384, 3, 122, 61, 0, 2380, 2381, 5, 868, 0, 0, 2381, 2383, 3, 122, 61, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2387, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2387, 2388, 5, 867, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2378, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2392, 1, 0, 0, 0, 2391, 2245, 1, 0, 0, 0, 2391, 2279, 1, 0, 0, 0, 2391, 2304, 1, 0, 0, 0, 2391, 2337, 1, 0, 0, 0, 2391, 2370, 1, 0, 0, 0, 2392, 117, 1, 0, 0, 0, 2393, 2397, 3, 734, 367, 0, 2394, 2397, 3, 814, 407, 0, 2395, 2397, 5, 111, 0, 0, 2396, 2393, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2395, 1, 0, 0, 0, 2397, 119, 1, 0, 0, 0, 2398, 2399, 5, 866, 0, 0, 2399, 2402, 3, 118, 59, 0, 2400, 2401, 5, 868, 0, 0, 2401, 2403, 3, 118, 59, 0, 2402, 2400, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 5, 867, 0, 0, 2407, 121, 1, 0, 0, 0, 2408, 2409, 5, 652, 0, 0, 2409, 2413, 3, 716, 358, 0, 2410, 2412, 3, 124, 62, 0, 2411, 2410, 1, 0, 0, 0, 2412, 2415, 1, 0, 0, 0, 2413, 2411, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 123, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2418, 5, 42, 0, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2421, 5, 647, 0, 0, 2420, 2419, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2424, 5, 380, 0, 0, 2423, 2425, 5, 857, 0, 0, 2424, 2423, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2465, 3, 702, 351, 0, 2427, 2429, 5, 340, 0, 0, 2428, 2430, 5, 857, 0, 0, 2429, 2428, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2465, 5, 882, 0, 0, 2432, 2433, 5, 360, 0, 0, 2433, 2435, 5, 367, 0, 0, 2434, 2436, 5, 857, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2465, 5, 882, 0, 0, 2438, 2439, 5, 82, 0, 0, 2439, 2441, 5, 367, 0, 0, 2440, 2442, 5, 857, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2465, 5, 882, 0, 0, 2444, 2446, 5, 480, 0, 0, 2445, 2447, 5, 857, 0, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2465, 3, 722, 361, 0, 2449, 2451, 5, 490, 0, 0, 2450, 2452, 5, 857, 0, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2465, 3, 722, 361, 0, 2454, 2456, 5, 658, 0, 0, 2455, 2457, 5, 857, 0, 0, 2456, 2455, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2465, 3, 676, 338, 0, 2459, 2461, 5, 504, 0, 0, 2460, 2462, 5, 857, 0, 0, 2461, 2460, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 3, 716, 358, 0, 2464, 2417, 1, 0, 0, 0, 2464, 2427, 1, 0, 0, 0, 2464, 2432, 1, 0, 0, 0, 2464, 2438, 1, 0, 0, 0, 2464, 2444, 1, 0, 0, 0, 2464, 2449, 1, 0, 0, 0, 2464, 2454, 1, 0, 0, 0, 2464, 2459, 1, 0, 0, 0, 2465, 125, 1, 0, 0, 0, 2466, 2467, 5, 8, 0, 0, 2467, 2469, 7, 0, 0, 0, 2468, 2470, 3, 638, 319, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 1, 0, 0, 0, 2471, 2473, 3, 56, 28, 0, 2472, 2471, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2485, 1, 0, 0, 0, 2476, 2477, 5, 8, 0, 0, 2477, 2478, 7, 0, 0, 0, 2478, 2479, 3, 638, 319, 0, 2479, 2480, 5, 677, 0, 0, 2480, 2481, 5, 360, 0, 0, 2481, 2482, 5, 367, 0, 0, 2482, 2483, 5, 496, 0, 0, 2483, 2485, 1, 0, 0, 0, 2484, 2466, 1, 0, 0, 0, 2484, 2476, 1, 0, 0, 0, 2485, 127, 1, 0, 0, 0, 2486, 2488, 5, 8, 0, 0, 2487, 2489, 3, 62, 31, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 5, 385, 0, 0, 2491, 2495, 3, 712, 356, 0, 2492, 2493, 5, 119, 0, 0, 2493, 2494, 5, 590, 0, 0, 2494, 2496, 3, 64, 32, 0, 2495, 2492, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2503, 1, 0, 0, 0, 2497, 2498, 5, 119, 0, 0, 2498, 2500, 5, 343, 0, 0, 2499, 2501, 5, 114, 0, 0, 2500, 2499, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2504, 5, 541, 0, 0, 2503, 2497, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2508, 1, 0, 0, 0, 2505, 2506, 5, 141, 0, 0, 2506, 2507, 5, 176, 0, 0, 2507, 2509, 3, 712, 356, 0, 2508, 2505, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2511, 1, 0, 0, 0, 2510, 2512, 3, 72, 36, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2515, 1, 0, 0, 0, 2513, 2514, 5, 340, 0, 0, 2514, 2516, 5, 882, 0, 0, 2515, 2513, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2519, 1, 0, 0, 0, 2517, 2518, 5, 371, 0, 0, 2518, 2520, 3, 432, 216, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 129, 1, 0, 0, 0, 2521, 2522, 5, 8, 0, 0, 2522, 2523, 5, 409, 0, 0, 2523, 2527, 3, 642, 321, 0, 2524, 2526, 3, 82, 41, 0, 2525, 2524, 1, 0, 0, 0, 2526, 2529, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 131, 1, 0, 0, 0, 2529, 2527, 1, 0, 0, 0, 2530, 2531, 5, 8, 0, 0, 2531, 2532, 5, 433, 0, 0, 2532, 2533, 5, 585, 0, 0, 2533, 2534, 5, 801, 0, 0, 2534, 2535, 5, 453, 0, 0, 2535, 2536, 5, 92, 0, 0, 2536, 133, 1, 0, 0, 0, 2537, 2538, 5, 8, 0, 0, 2538, 2539, 5, 451, 0, 0, 2539, 2540, 5, 74, 0, 0, 2540, 2541, 3, 716, 358, 0, 2541, 2542, 5, 6, 0, 0, 2542, 2543, 5, 671, 0, 0, 2543, 2549, 5, 882, 0, 0, 2544, 2546, 5, 428, 0, 0, 2545, 2547, 5, 857, 0, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2550, 3, 724, 362, 0, 2549, 2544, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 5, 687, 0, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2556, 5, 380, 0, 0, 2555, 2557, 5, 857, 0, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2559, 3, 702, 351, 0, 2559, 135, 1, 0, 0, 0, 2560, 2561, 5, 8, 0, 0, 2561, 2562, 5, 132, 0, 0, 2562, 2566, 3, 712, 356, 0, 2563, 2565, 3, 82, 41, 0, 2564, 2563, 1, 0, 0, 0, 2565, 2568, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 137, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2569, 2570, 5, 8, 0, 0, 2570, 2571, 5, 592, 0, 0, 2571, 2572, 3, 716, 358, 0, 2572, 2573, 5, 518, 0, 0, 2573, 2574, 5, 866, 0, 0, 2574, 2579, 3, 84, 42, 0, 2575, 2576, 5, 868, 0, 0, 2576, 2578, 3, 84, 42, 0, 2577, 2575, 1, 0, 0, 0, 2578, 2581, 1, 0, 0, 0, 2579, 2577, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2582, 1, 0, 0, 0, 2581, 2579, 1, 0, 0, 0, 2582, 2583, 5, 867, 0, 0, 2583, 139, 1, 0, 0, 0, 2584, 2585, 5, 8, 0, 0, 2585, 2586, 5, 173, 0, 0, 2586, 2595, 3, 662, 331, 0, 2587, 2592, 3, 146, 73, 0, 2588, 2589, 5, 868, 0, 0, 2589, 2591, 3, 146, 73, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2594, 1, 0, 0, 0, 2592, 2590, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2596, 1, 0, 0, 0, 2594, 2592, 1, 0, 0, 0, 2595, 2587, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2604, 1, 0, 0, 0, 2597, 2601, 3, 148, 74, 0, 2598, 2600, 3, 148, 74, 0, 2599, 2598, 1, 0, 0, 0, 2600, 2603, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2604, 2597, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 141, 1, 0, 0, 0, 2606, 2608, 5, 8, 0, 0, 2607, 2609, 5, 180, 0, 0, 2608, 2607, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2611, 5, 658, 0, 0, 2611, 2612, 3, 676, 338, 0, 2612, 2613, 7, 35, 0, 0, 2613, 2614, 5, 361, 0, 0, 2614, 2620, 5, 882, 0, 0, 2615, 2617, 5, 428, 0, 0, 2616, 2618, 5, 857, 0, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2621, 3, 724, 362, 0, 2620, 2615, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2623, 1, 0, 0, 0, 2622, 2624, 5, 687, 0, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2628, 1, 0, 0, 0, 2625, 2626, 5, 141, 0, 0, 2626, 2627, 5, 176, 0, 0, 2627, 2629, 3, 674, 337, 0, 2628, 2625, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2635, 1, 0, 0, 0, 2630, 2632, 5, 314, 0, 0, 2631, 2633, 5, 857, 0, 0, 2632, 2631, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 3, 724, 362, 0, 2635, 2630, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2639, 1, 0, 0, 0, 2637, 2638, 5, 155, 0, 0, 2638, 2640, 7, 36, 0, 0, 2639, 2637, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2646, 1, 0, 0, 0, 2641, 2643, 5, 376, 0, 0, 2642, 2644, 5, 857, 0, 0, 2643, 2642, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2647, 5, 882, 0, 0, 2646, 2641, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2653, 1, 0, 0, 0, 2648, 2650, 5, 380, 0, 0, 2649, 2651, 5, 857, 0, 0, 2650, 2649, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, 3, 702, 351, 0, 2653, 2648, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 2660, 1, 0, 0, 0, 2655, 2657, 5, 825, 0, 0, 2656, 2658, 5, 857, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 5, 882, 0, 0, 2660, 2655, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 143, 1, 0, 0, 0, 2662, 2666, 5, 8, 0, 0, 2663, 2664, 5, 308, 0, 0, 2664, 2665, 5, 857, 0, 0, 2665, 2667, 7, 11, 0, 0, 2666, 2663, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2669, 1, 0, 0, 0, 2668, 2670, 3, 62, 31, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2674, 1, 0, 0, 0, 2671, 2672, 5, 162, 0, 0, 2672, 2673, 5, 591, 0, 0, 2673, 2675, 7, 12, 0, 0, 2674, 2671, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 5, 684, 0, 0, 2677, 2682, 3, 646, 323, 0, 2678, 2679, 5, 866, 0, 0, 2679, 2680, 3, 670, 335, 0, 2680, 2681, 5, 867, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2678, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 5, 13, 0, 0, 2685, 2692, 3, 210, 105, 0, 2686, 2688, 5, 194, 0, 0, 2687, 2689, 7, 13, 0, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 5, 27, 0, 0, 2691, 2693, 5, 121, 0, 0, 2692, 2686, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 145, 1, 0, 0, 0, 2694, 2701, 3, 104, 52, 0, 2695, 2697, 5, 868, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2700, 3, 104, 52, 0, 2699, 2696, 1, 0, 0, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2959, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2706, 5, 6, 0, 0, 2705, 2707, 5, 29, 0, 0, 2706, 2705, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 3, 672, 336, 0, 2709, 2713, 3, 94, 47, 0, 2710, 2714, 5, 402, 0, 0, 2711, 2712, 5, 306, 0, 0, 2712, 2714, 3, 672, 336, 0, 2713, 2710, 1, 0, 0, 0, 2713, 2711, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2959, 1, 0, 0, 0, 2715, 2717, 5, 6, 0, 0, 2716, 2718, 5, 29, 0, 0, 2717, 2716, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2720, 5, 866, 0, 0, 2720, 2721, 3, 672, 336, 0, 2721, 2728, 3, 94, 47, 0, 2722, 2723, 5, 868, 0, 0, 2723, 2724, 3, 672, 336, 0, 2724, 2725, 3, 94, 47, 0, 2725, 2727, 1, 0, 0, 0, 2726, 2722, 1, 0, 0, 0, 2727, 2730, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 2731, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2731, 2732, 5, 867, 0, 0, 2732, 2959, 1, 0, 0, 0, 2733, 2734, 5, 6, 0, 0, 2734, 2736, 7, 19, 0, 0, 2735, 2737, 3, 652, 326, 0, 2736, 2735, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2739, 1, 0, 0, 0, 2738, 2740, 3, 74, 37, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2745, 3, 748, 374, 0, 2742, 2744, 3, 76, 38, 0, 2743, 2742, 1, 0, 0, 0, 2744, 2747, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2959, 1, 0, 0, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2749, 5, 6, 0, 0, 2749, 2751, 7, 20, 0, 0, 2750, 2752, 7, 19, 0, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2754, 1, 0, 0, 0, 2753, 2755, 3, 652, 326, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2760, 3, 748, 374, 0, 2757, 2759, 3, 76, 38, 0, 2758, 2757, 1, 0, 0, 0, 2759, 2762, 1, 0, 0, 0, 2760, 2758, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2959, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2763, 2768, 5, 6, 0, 0, 2764, 2766, 5, 31, 0, 0, 2765, 2767, 3, 716, 358, 0, 2766, 2765, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2764, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 5, 131, 0, 0, 2771, 2773, 5, 92, 0, 0, 2772, 2774, 3, 74, 37, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2779, 3, 748, 374, 0, 2776, 2778, 3, 76, 38, 0, 2777, 2776, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2959, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2787, 5, 6, 0, 0, 2783, 2785, 5, 31, 0, 0, 2784, 2786, 3, 716, 358, 0, 2785, 2784, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2788, 1, 0, 0, 0, 2787, 2783, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2791, 5, 182, 0, 0, 2790, 2792, 7, 19, 0, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2794, 1, 0, 0, 0, 2793, 2795, 3, 652, 326, 0, 2794, 2793, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 1, 0, 0, 0, 2796, 2798, 3, 74, 37, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2803, 3, 748, 374, 0, 2800, 2802, 3, 76, 38, 0, 2801, 2800, 1, 0, 0, 0, 2802, 2805, 1, 0, 0, 0, 2803, 2801, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2959, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2806, 2811, 5, 6, 0, 0, 2807, 2809, 5, 31, 0, 0, 2808, 2810, 3, 716, 358, 0, 2809, 2808, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 2812, 1, 0, 0, 0, 2811, 2807, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2814, 5, 67, 0, 0, 2814, 2816, 5, 92, 0, 0, 2815, 2817, 3, 652, 326, 0, 2816, 2815, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2819, 3, 748, 374, 0, 2819, 2820, 3, 98, 49, 0, 2820, 2959, 1, 0, 0, 0, 2821, 2823, 5, 6, 0, 0, 2822, 2824, 3, 90, 45, 0, 2823, 2822, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2959, 1, 0, 0, 0, 2825, 2826, 5, 51, 0, 0, 2826, 2827, 7, 37, 0, 0, 2827, 2959, 3, 716, 358, 0, 2828, 2829, 5, 8, 0, 0, 2829, 2830, 7, 37, 0, 0, 2830, 2832, 3, 716, 358, 0, 2831, 2833, 5, 114, 0, 0, 2832, 2831, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2835, 1, 0, 0, 0, 2834, 2836, 5, 57, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2959, 1, 0, 0, 0, 2837, 2839, 5, 308, 0, 0, 2838, 2840, 5, 857, 0, 0, 2839, 2838, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2959, 7, 38, 0, 0, 2842, 2844, 5, 8, 0, 0, 2843, 2845, 5, 29, 0, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2854, 3, 672, 336, 0, 2847, 2848, 5, 155, 0, 0, 2848, 2849, 5, 42, 0, 0, 2849, 2855, 3, 764, 382, 0, 2850, 2851, 5, 155, 0, 0, 2851, 2855, 7, 17, 0, 0, 2852, 2853, 5, 51, 0, 0, 2853, 2855, 5, 42, 0, 0, 2854, 2847, 1, 0, 0, 0, 2854, 2850, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2855, 2959, 1, 0, 0, 0, 2856, 2857, 5, 8, 0, 0, 2857, 2858, 5, 82, 0, 0, 2858, 2859, 3, 652, 326, 0, 2859, 2860, 7, 17, 0, 0, 2860, 2959, 1, 0, 0, 0, 2861, 2863, 5, 25, 0, 0, 2862, 2864, 5, 29, 0, 0, 2863, 2862, 1, 0, 0, 0, 2863, 2864, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2866, 3, 672, 336, 0, 2866, 2867, 3, 668, 334, 0, 2867, 2871, 3, 94, 47, 0, 2868, 2872, 5, 402, 0, 0, 2869, 2870, 5, 306, 0, 0, 2870, 2872, 3, 672, 336, 0, 2871, 2868, 1, 0, 0, 0, 2871, 2869, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2959, 1, 0, 0, 0, 2873, 2875, 5, 42, 0, 0, 2874, 2873, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2877, 5, 26, 0, 0, 2877, 2878, 5, 155, 0, 0, 2878, 2879, 5, 857, 0, 0, 2879, 2885, 3, 698, 349, 0, 2880, 2882, 5, 28, 0, 0, 2881, 2883, 5, 857, 0, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2886, 3, 700, 350, 0, 2885, 2880, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2959, 1, 0, 0, 0, 2887, 2888, 5, 33, 0, 0, 2888, 2892, 5, 176, 0, 0, 2889, 2893, 5, 823, 0, 0, 2890, 2891, 5, 26, 0, 0, 2891, 2893, 5, 155, 0, 0, 2892, 2889, 1, 0, 0, 0, 2892, 2890, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2897, 3, 698, 349, 0, 2895, 2896, 5, 28, 0, 0, 2896, 2898, 3, 700, 350, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2959, 1, 0, 0, 0, 2899, 2900, 7, 39, 0, 0, 2900, 2959, 5, 93, 0, 0, 2901, 2902, 7, 40, 0, 0, 2902, 2959, 5, 658, 0, 0, 2903, 2905, 5, 51, 0, 0, 2904, 2906, 5, 29, 0, 0, 2905, 2904, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2959, 3, 672, 336, 0, 2908, 2909, 5, 51, 0, 0, 2909, 2910, 7, 19, 0, 0, 2910, 2959, 3, 652, 326, 0, 2911, 2912, 5, 51, 0, 0, 2912, 2913, 5, 131, 0, 0, 2913, 2959, 5, 92, 0, 0, 2914, 2915, 5, 51, 0, 0, 2915, 2916, 5, 67, 0, 0, 2916, 2917, 5, 92, 0, 0, 2917, 2959, 3, 716, 358, 0, 2918, 2959, 5, 66, 0, 0, 2919, 2921, 5, 104, 0, 0, 2920, 2922, 5, 857, 0, 0, 2921, 2920, 1, 0, 0, 0, 2921, 2922, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2959, 7, 4, 0, 0, 2924, 2926, 5, 492, 0, 0, 2925, 2927, 5, 29, 0, 0, 2926, 2925, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2929, 3, 672, 336, 0, 2929, 2933, 3, 94, 47, 0, 2930, 2934, 5, 402, 0, 0, 2931, 2932, 5, 306, 0, 0, 2932, 2934, 3, 672, 336, 0, 2933, 2930, 1, 0, 0, 0, 2933, 2931, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2959, 1, 0, 0, 0, 2935, 2936, 5, 125, 0, 0, 2936, 2937, 5, 20, 0, 0, 2937, 2959, 3, 670, 335, 0, 2938, 2939, 5, 141, 0, 0, 2939, 2940, 5, 29, 0, 0, 2940, 2941, 3, 672, 336, 0, 2941, 2942, 5, 176, 0, 0, 2942, 2943, 3, 668, 334, 0, 2943, 2959, 1, 0, 0, 0, 2944, 2945, 5, 141, 0, 0, 2945, 2946, 7, 19, 0, 0, 2946, 2947, 3, 652, 326, 0, 2947, 2948, 5, 176, 0, 0, 2948, 2949, 3, 648, 324, 0, 2949, 2959, 1, 0, 0, 0, 2950, 2952, 5, 141, 0, 0, 2951, 2953, 7, 41, 0, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2959, 3, 658, 329, 0, 2955, 2956, 7, 42, 0, 0, 2956, 2959, 5, 681, 0, 0, 2957, 2959, 3, 148, 74, 0, 2958, 2694, 1, 0, 0, 0, 2958, 2704, 1, 0, 0, 0, 2958, 2715, 1, 0, 0, 0, 2958, 2733, 1, 0, 0, 0, 2958, 2748, 1, 0, 0, 0, 2958, 2763, 1, 0, 0, 0, 2958, 2782, 1, 0, 0, 0, 2958, 2806, 1, 0, 0, 0, 2958, 2821, 1, 0, 0, 0, 2958, 2825, 1, 0, 0, 0, 2958, 2828, 1, 0, 0, 0, 2958, 2837, 1, 0, 0, 0, 2958, 2842, 1, 0, 0, 0, 2958, 2856, 1, 0, 0, 0, 2958, 2861, 1, 0, 0, 0, 2958, 2874, 1, 0, 0, 0, 2958, 2887, 1, 0, 0, 0, 2958, 2899, 1, 0, 0, 0, 2958, 2901, 1, 0, 0, 0, 2958, 2903, 1, 0, 0, 0, 2958, 2908, 1, 0, 0, 0, 2958, 2911, 1, 0, 0, 0, 2958, 2914, 1, 0, 0, 0, 2958, 2918, 1, 0, 0, 0, 2958, 2919, 1, 0, 0, 0, 2958, 2924, 1, 0, 0, 0, 2958, 2935, 1, 0, 0, 0, 2958, 2938, 1, 0, 0, 0, 2958, 2944, 1, 0, 0, 0, 2958, 2950, 1, 0, 0, 0, 2958, 2955, 1, 0, 0, 0, 2958, 2957, 1, 0, 0, 0, 2959, 147, 1, 0, 0, 0, 2960, 2961, 5, 6, 0, 0, 2961, 2962, 5, 130, 0, 0, 2962, 2963, 5, 866, 0, 0, 2963, 2968, 3, 116, 58, 0, 2964, 2965, 5, 868, 0, 0, 2965, 2967, 3, 116, 58, 0, 2966, 2964, 1, 0, 0, 0, 2967, 2970, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2971, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2972, 5, 867, 0, 0, 2972, 3059, 1, 0, 0, 0, 2973, 2974, 5, 51, 0, 0, 2974, 2975, 5, 130, 0, 0, 2975, 3059, 3, 680, 340, 0, 2976, 2977, 5, 369, 0, 0, 2977, 2980, 5, 130, 0, 0, 2978, 2981, 3, 680, 340, 0, 2979, 2981, 5, 7, 0, 0, 2980, 2978, 1, 0, 0, 0, 2980, 2979, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 3059, 5, 658, 0, 0, 2983, 2984, 5, 425, 0, 0, 2984, 2987, 5, 130, 0, 0, 2985, 2988, 3, 680, 340, 0, 2986, 2988, 5, 7, 0, 0, 2987, 2985, 1, 0, 0, 0, 2987, 2986, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 3059, 5, 658, 0, 0, 2990, 2991, 5, 668, 0, 0, 2991, 2994, 5, 130, 0, 0, 2992, 2995, 3, 680, 340, 0, 2993, 2995, 5, 7, 0, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2993, 1, 0, 0, 0, 2995, 3059, 1, 0, 0, 0, 2996, 2997, 5, 335, 0, 0, 2997, 2998, 5, 130, 0, 0, 2998, 3059, 3, 722, 361, 0, 2999, 3000, 5, 561, 0, 0, 3000, 3001, 5, 130, 0, 0, 3001, 3002, 3, 680, 340, 0, 3002, 3003, 5, 88, 0, 0, 3003, 3004, 5, 866, 0, 0, 3004, 3009, 3, 116, 58, 0, 3005, 3006, 5, 868, 0, 0, 3006, 3008, 3, 116, 58, 0, 3007, 3005, 1, 0, 0, 0, 3008, 3011, 1, 0, 0, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3009, 1, 0, 0, 0, 3012, 3013, 5, 867, 0, 0, 3013, 3059, 1, 0, 0, 0, 3014, 3015, 5, 388, 0, 0, 3015, 3016, 5, 130, 0, 0, 3016, 3017, 3, 682, 341, 0, 3017, 3018, 5, 194, 0, 0, 3018, 3019, 5, 173, 0, 0, 3019, 3022, 3, 662, 331, 0, 3020, 3021, 7, 42, 0, 0, 3021, 3023, 5, 681, 0, 0, 3022, 3020, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3059, 1, 0, 0, 0, 3024, 3025, 5, 10, 0, 0, 3025, 3028, 5, 130, 0, 0, 3026, 3029, 3, 680, 340, 0, 3027, 3029, 5, 7, 0, 0, 3028, 3026, 1, 0, 0, 0, 3028, 3027, 1, 0, 0, 0, 3029, 3059, 1, 0, 0, 0, 3030, 3031, 5, 27, 0, 0, 3031, 3034, 5, 130, 0, 0, 3032, 3035, 3, 680, 340, 0, 3033, 3035, 5, 7, 0, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 3059, 1, 0, 0, 0, 3036, 3037, 5, 120, 0, 0, 3037, 3040, 5, 130, 0, 0, 3038, 3041, 3, 680, 340, 0, 3039, 3041, 5, 7, 0, 0, 3040, 3038, 1, 0, 0, 0, 3040, 3039, 1, 0, 0, 0, 3041, 3059, 1, 0, 0, 0, 3042, 3043, 5, 550, 0, 0, 3043, 3046, 5, 130, 0, 0, 3044, 3047, 3, 680, 340, 0, 3045, 3047, 5, 7, 0, 0, 3046, 3044, 1, 0, 0, 0, 3046, 3045, 1, 0, 0, 0, 3047, 3059, 1, 0, 0, 0, 3048, 3049, 5, 562, 0, 0, 3049, 3052, 5, 130, 0, 0, 3050, 3053, 3, 680, 340, 0, 3051, 3053, 5, 7, 0, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3059, 1, 0, 0, 0, 3054, 3055, 5, 560, 0, 0, 3055, 3059, 5, 527, 0, 0, 3056, 3057, 5, 677, 0, 0, 3057, 3059, 5, 527, 0, 0, 3058, 2960, 1, 0, 0, 0, 3058, 2973, 1, 0, 0, 0, 3058, 2976, 1, 0, 0, 0, 3058, 2983, 1, 0, 0, 0, 3058, 2990, 1, 0, 0, 0, 3058, 2996, 1, 0, 0, 0, 3058, 2999, 1, 0, 0, 0, 3058, 3014, 1, 0, 0, 0, 3058, 3024, 1, 0, 0, 0, 3058, 3030, 1, 0, 0, 0, 3058, 3036, 1, 0, 0, 0, 3058, 3042, 1, 0, 0, 0, 3058, 3048, 1, 0, 0, 0, 3058, 3054, 1, 0, 0, 0, 3058, 3056, 1, 0, 0, 0, 3059, 149, 1, 0, 0, 0, 3060, 3061, 5, 51, 0, 0, 3061, 3063, 7, 0, 0, 0, 3062, 3064, 3, 768, 384, 0, 3063, 3062, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3066, 3, 638, 319, 0, 3066, 151, 1, 0, 0, 0, 3067, 3068, 5, 51, 0, 0, 3068, 3070, 5, 385, 0, 0, 3069, 3071, 3, 768, 384, 0, 3070, 3069, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 3, 712, 356, 0, 3073, 153, 1, 0, 0, 0, 3074, 3075, 5, 51, 0, 0, 3075, 3077, 5, 82, 0, 0, 3076, 3078, 7, 1, 0, 0, 3077, 3076, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3080, 3, 652, 326, 0, 3080, 3081, 5, 119, 0, 0, 3081, 3094, 3, 662, 331, 0, 3082, 3084, 5, 308, 0, 0, 3083, 3085, 5, 857, 0, 0, 3084, 3083, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3093, 7, 3, 0, 0, 3087, 3089, 5, 104, 0, 0, 3088, 3090, 5, 857, 0, 0, 3089, 3088, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3093, 7, 4, 0, 0, 3092, 3082, 1, 0, 0, 0, 3092, 3087, 1, 0, 0, 0, 3093, 3096, 1, 0, 0, 0, 3094, 3092, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 155, 1, 0, 0, 0, 3096, 3094, 1, 0, 0, 0, 3097, 3098, 5, 51, 0, 0, 3098, 3099, 5, 451, 0, 0, 3099, 3100, 5, 74, 0, 0, 3100, 3101, 3, 716, 358, 0, 3101, 3103, 5, 380, 0, 0, 3102, 3104, 5, 857, 0, 0, 3103, 3102, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3106, 3, 702, 351, 0, 3106, 157, 1, 0, 0, 0, 3107, 3108, 5, 51, 0, 0, 3108, 3110, 5, 132, 0, 0, 3109, 3111, 3, 768, 384, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 3, 712, 356, 0, 3113, 159, 1, 0, 0, 0, 3114, 3115, 5, 51, 0, 0, 3115, 3117, 5, 409, 0, 0, 3116, 3118, 3, 768, 384, 0, 3117, 3116, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 3, 642, 321, 0, 3120, 161, 1, 0, 0, 0, 3121, 3122, 5, 51, 0, 0, 3122, 3124, 5, 592, 0, 0, 3123, 3125, 3, 768, 384, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3127, 3, 716, 358, 0, 3127, 163, 1, 0, 0, 0, 3128, 3129, 5, 51, 0, 0, 3129, 3130, 5, 161, 0, 0, 3130, 3131, 5, 137, 0, 0, 3131, 3133, 5, 835, 0, 0, 3132, 3134, 3, 768, 384, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 5, 883, 0, 0, 3136, 165, 1, 0, 0, 0, 3137, 3139, 5, 51, 0, 0, 3138, 3140, 5, 660, 0, 0, 3139, 3138, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3143, 5, 173, 0, 0, 3142, 3144, 3, 768, 384, 0, 3143, 3142, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3147, 3, 660, 330, 0, 3146, 3148, 7, 43, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 167, 1, 0, 0, 0, 3149, 3151, 5, 51, 0, 0, 3150, 3152, 5, 180, 0, 0, 3151, 3150, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 5, 658, 0, 0, 3154, 3160, 3, 676, 338, 0, 3155, 3157, 5, 380, 0, 0, 3156, 3158, 5, 857, 0, 0, 3157, 3156, 1, 0, 0, 0, 3157, 3158, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3161, 3, 702, 351, 0, 3160, 3155, 1, 0, 0, 0, 3160, 3161, 1, 0, 0, 0, 3161, 169, 1, 0, 0, 0, 3162, 3163, 5, 51, 0, 0, 3163, 3165, 5, 178, 0, 0, 3164, 3166, 3, 768, 384, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3168, 3, 712, 356, 0, 3168, 171, 1, 0, 0, 0, 3169, 3170, 5, 51, 0, 0, 3170, 3172, 5, 684, 0, 0, 3171, 3173, 3, 768, 384, 0, 3172, 3171, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3179, 3, 646, 323, 0, 3175, 3176, 5, 868, 0, 0, 3176, 3178, 3, 646, 323, 0, 3177, 3175, 1, 0, 0, 0, 3178, 3181, 1, 0, 0, 0, 3179, 3177, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3183, 1, 0, 0, 0, 3181, 3179, 1, 0, 0, 0, 3182, 3184, 7, 43, 0, 0, 3183, 3182, 1, 0, 0, 0, 3183, 3184, 1, 0, 0, 0, 3184, 173, 1, 0, 0, 0, 3185, 3186, 5, 51, 0, 0, 3186, 3188, 5, 582, 0, 0, 3187, 3189, 3, 768, 384, 0, 3188, 3187, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3191, 3, 664, 332, 0, 3191, 175, 1, 0, 0, 0, 3192, 3193, 5, 155, 0, 0, 3193, 3194, 5, 42, 0, 0, 3194, 3198, 5, 582, 0, 0, 3195, 3199, 5, 505, 0, 0, 3196, 3199, 5, 7, 0, 0, 3197, 3199, 3, 664, 332, 0, 3198, 3195, 1, 0, 0, 0, 3198, 3196, 1, 0, 0, 0, 3198, 3197, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 5, 176, 0, 0, 3201, 3206, 3, 666, 333, 0, 3202, 3203, 5, 868, 0, 0, 3203, 3205, 3, 666, 333, 0, 3204, 3202, 1, 0, 0, 0, 3205, 3208, 1, 0, 0, 0, 3206, 3204, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3213, 1, 0, 0, 0, 3208, 3206, 1, 0, 0, 0, 3209, 3210, 5, 155, 0, 0, 3210, 3211, 5, 582, 0, 0, 3211, 3213, 3, 478, 239, 0, 3212, 3192, 1, 0, 0, 0, 3212, 3209, 1, 0, 0, 0, 3213, 177, 1, 0, 0, 0, 3214, 3215, 5, 141, 0, 0, 3215, 3216, 5, 173, 0, 0, 3216, 3221, 3, 180, 90, 0, 3217, 3218, 5, 868, 0, 0, 3218, 3220, 3, 180, 90, 0, 3219, 3217, 1, 0, 0, 0, 3220, 3223, 1, 0, 0, 0, 3221, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 179, 1, 0, 0, 0, 3223, 3221, 1, 0, 0, 0, 3224, 3225, 3, 662, 331, 0, 3225, 3226, 5, 176, 0, 0, 3226, 3227, 3, 658, 329, 0, 3227, 181, 1, 0, 0, 0, 3228, 3230, 5, 668, 0, 0, 3229, 3231, 5, 173, 0, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 3, 662, 331, 0, 3233, 183, 1, 0, 0, 0, 3234, 3235, 5, 21, 0, 0, 3235, 3242, 3, 712, 356, 0, 3236, 3239, 5, 866, 0, 0, 3237, 3240, 3, 758, 379, 0, 3238, 3240, 3, 750, 375, 0, 3239, 3237, 1, 0, 0, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 5, 867, 0, 0, 3242, 3236, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 185, 1, 0, 0, 0, 3244, 3247, 3, 240, 120, 0, 3245, 3247, 3, 242, 121, 0, 3246, 3244, 1, 0, 0, 0, 3246, 3245, 1, 0, 0, 0, 3247, 187, 1, 0, 0, 0, 3248, 3249, 5, 371, 0, 0, 3249, 3250, 3, 750, 375, 0, 3250, 189, 1, 0, 0, 0, 3251, 3256, 3, 244, 122, 0, 3252, 3256, 3, 246, 123, 0, 3253, 3256, 3, 248, 124, 0, 3254, 3256, 3, 250, 125, 0, 3255, 3251, 1, 0, 0, 0, 3255, 3252, 1, 0, 0, 0, 3255, 3253, 1, 0, 0, 0, 3255, 3254, 1, 0, 0, 0, 3256, 191, 1, 0, 0, 0, 3257, 3259, 5, 86, 0, 0, 3258, 3260, 7, 44, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 1, 0, 0, 0, 3261, 3263, 5, 79, 0, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3266, 5, 88, 0, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3274, 3, 662, 331, 0, 3268, 3269, 5, 130, 0, 0, 3269, 3271, 5, 866, 0, 0, 3270, 3272, 3, 680, 340, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3275, 5, 867, 0, 0, 3274, 3268, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3287, 1, 0, 0, 0, 3276, 3278, 3, 270, 135, 0, 3277, 3276, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3281, 1, 0, 0, 0, 3279, 3282, 3, 752, 376, 0, 3280, 3282, 3, 196, 98, 0, 3281, 3279, 1, 0, 0, 0, 3281, 3280, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3285, 3, 194, 97, 0, 3284, 3283, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3288, 3, 232, 116, 0, 3287, 3277, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 194, 97, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3304, 1, 0, 0, 0, 3292, 3293, 5, 119, 0, 0, 3293, 3294, 5, 373, 0, 0, 3294, 3295, 5, 92, 0, 0, 3295, 3296, 5, 185, 0, 0, 3296, 3301, 3, 234, 117, 0, 3297, 3298, 5, 868, 0, 0, 3298, 3300, 3, 234, 117, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3303, 1, 0, 0, 0, 3301, 3299, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3305, 1, 0, 0, 0, 3303, 3301, 1, 0, 0, 0, 3304, 3292, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 193, 1, 0, 0, 0, 3306, 3307, 5, 13, 0, 0, 3307, 3309, 3, 716, 358, 0, 3308, 3310, 3, 270, 135, 0, 3309, 3308, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 195, 1, 0, 0, 0, 3311, 3316, 3, 210, 105, 0, 3312, 3313, 5, 173, 0, 0, 3313, 3316, 3, 662, 331, 0, 3314, 3316, 3, 230, 115, 0, 3315, 3311, 1, 0, 0, 0, 3315, 3312, 1, 0, 0, 0, 3315, 3314, 1, 0, 0, 0, 3316, 197, 1, 0, 0, 0, 3317, 3323, 3, 200, 100, 0, 3318, 3320, 5, 828, 0, 0, 3319, 3321, 7, 45, 0, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3322, 1, 0, 0, 0, 3322, 3324, 3, 200, 100, 0, 3323, 3318, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3323, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 199, 1, 0, 0, 0, 3327, 3329, 5, 866, 0, 0, 3328, 3327, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 3, 282, 141, 0, 3331, 3333, 5, 867, 0, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 201, 1, 0, 0, 0, 3334, 3335, 5, 103, 0, 0, 3335, 3337, 5, 360, 0, 0, 3336, 3338, 7, 46, 0, 0, 3337, 3336, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3340, 1, 0, 0, 0, 3339, 3341, 5, 450, 0, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 5, 83, 0, 0, 3343, 3345, 5, 882, 0, 0, 3344, 3346, 7, 7, 0, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3348, 5, 88, 0, 0, 3348, 3349, 5, 173, 0, 0, 3349, 3355, 3, 662, 331, 0, 3350, 3351, 5, 130, 0, 0, 3351, 3352, 5, 866, 0, 0, 3352, 3353, 3, 680, 340, 0, 3353, 3354, 5, 867, 0, 0, 3354, 3356, 1, 0, 0, 0, 3355, 3350, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3360, 1, 0, 0, 0, 3357, 3358, 5, 26, 0, 0, 3358, 3359, 5, 155, 0, 0, 3359, 3361, 3, 698, 349, 0, 3360, 3357, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 3368, 1, 0, 0, 0, 3362, 3364, 7, 47, 0, 0, 3363, 3365, 3, 314, 157, 0, 3364, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3364, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3369, 1, 0, 0, 0, 3368, 3362, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3376, 1, 0, 0, 0, 3370, 3372, 5, 102, 0, 0, 3371, 3373, 3, 316, 158, 0, 3372, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3377, 1, 0, 0, 0, 3376, 3370, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3382, 1, 0, 0, 0, 3378, 3379, 5, 79, 0, 0, 3379, 3380, 3, 722, 361, 0, 3380, 3381, 7, 48, 0, 0, 3381, 3383, 1, 0, 0, 0, 3382, 3378, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3395, 1, 0, 0, 0, 3384, 3385, 5, 866, 0, 0, 3385, 3390, 3, 236, 118, 0, 3386, 3387, 5, 868, 0, 0, 3387, 3389, 3, 236, 118, 0, 3388, 3386, 1, 0, 0, 0, 3389, 3392, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3393, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3393, 3394, 5, 867, 0, 0, 3394, 3396, 1, 0, 0, 0, 3395, 3384, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3406, 1, 0, 0, 0, 3397, 3398, 5, 155, 0, 0, 3398, 3403, 3, 234, 117, 0, 3399, 3400, 5, 868, 0, 0, 3400, 3402, 3, 234, 117, 0, 3401, 3399, 1, 0, 0, 0, 3402, 3405, 1, 0, 0, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3407, 1, 0, 0, 0, 3405, 3403, 1, 0, 0, 0, 3406, 3397, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 203, 1, 0, 0, 0, 3408, 3409, 5, 103, 0, 0, 3409, 3411, 5, 695, 0, 0, 3410, 3412, 7, 46, 0, 0, 3411, 3410, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3414, 1, 0, 0, 0, 3413, 3415, 5, 450, 0, 0, 3414, 3413, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3417, 5, 83, 0, 0, 3417, 3419, 5, 882, 0, 0, 3418, 3420, 7, 7, 0, 0, 3419, 3418, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3422, 5, 88, 0, 0, 3422, 3423, 5, 173, 0, 0, 3423, 3427, 3, 662, 331, 0, 3424, 3425, 5, 26, 0, 0, 3425, 3426, 5, 155, 0, 0, 3426, 3428, 3, 698, 349, 0, 3427, 3424, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3439, 1, 0, 0, 0, 3429, 3430, 5, 587, 0, 0, 3430, 3431, 5, 423, 0, 0, 3431, 3433, 5, 20, 0, 0, 3432, 3434, 5, 859, 0, 0, 3433, 3432, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3437, 5, 882, 0, 0, 3436, 3438, 5, 858, 0, 0, 3437, 3436, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3440, 1, 0, 0, 0, 3439, 3429, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3445, 1, 0, 0, 0, 3441, 3442, 5, 79, 0, 0, 3442, 3443, 3, 722, 361, 0, 3443, 3444, 7, 48, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3441, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3458, 1, 0, 0, 0, 3447, 3448, 5, 866, 0, 0, 3448, 3453, 3, 236, 118, 0, 3449, 3450, 5, 868, 0, 0, 3450, 3452, 3, 236, 118, 0, 3451, 3449, 1, 0, 0, 0, 3452, 3455, 1, 0, 0, 0, 3453, 3451, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3456, 1, 0, 0, 0, 3455, 3453, 1, 0, 0, 0, 3456, 3457, 5, 867, 0, 0, 3457, 3459, 1, 0, 0, 0, 3458, 3447, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3469, 1, 0, 0, 0, 3460, 3461, 5, 155, 0, 0, 3461, 3466, 3, 234, 117, 0, 3462, 3463, 5, 868, 0, 0, 3463, 3465, 3, 234, 117, 0, 3464, 3462, 1, 0, 0, 0, 3465, 3468, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3470, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3469, 3460, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 205, 1, 0, 0, 0, 3471, 3472, 5, 866, 0, 0, 3472, 3474, 3, 224, 112, 0, 3473, 3475, 3, 258, 129, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3478, 3, 328, 164, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3481, 5, 867, 0, 0, 3480, 3482, 3, 258, 129, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3485, 3, 328, 164, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3488, 3, 312, 156, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 207, 1, 0, 0, 0, 3489, 3491, 5, 143, 0, 0, 3490, 3492, 7, 49, 0, 0, 3491, 3490, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3494, 1, 0, 0, 0, 3493, 3495, 5, 88, 0, 0, 3494, 3493, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3502, 3, 662, 331, 0, 3497, 3498, 5, 130, 0, 0, 3498, 3499, 5, 866, 0, 0, 3499, 3500, 3, 680, 340, 0, 3500, 3501, 5, 867, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3497, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3512, 1, 0, 0, 0, 3504, 3505, 5, 866, 0, 0, 3505, 3506, 3, 670, 335, 0, 3506, 3507, 5, 867, 0, 0, 3507, 3509, 1, 0, 0, 0, 3508, 3504, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3513, 3, 228, 114, 0, 3511, 3513, 3, 232, 116, 0, 3512, 3508, 1, 0, 0, 0, 3512, 3511, 1, 0, 0, 0, 3513, 209, 1, 0, 0, 0, 3514, 3518, 3, 282, 141, 0, 3515, 3517, 3, 284, 142, 0, 3516, 3515, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3529, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3523, 5, 181, 0, 0, 3522, 3524, 7, 45, 0, 0, 3523, 3522, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3528, 3, 282, 141, 0, 3526, 3528, 3, 280, 140, 0, 3527, 3525, 1, 0, 0, 0, 3527, 3526, 1, 0, 0, 0, 3528, 3530, 1, 0, 0, 0, 3529, 3521, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3535, 1, 0, 0, 0, 3531, 3532, 5, 868, 0, 0, 3532, 3534, 3, 286, 143, 0, 3533, 3531, 1, 0, 0, 0, 3534, 3537, 1, 0, 0, 0, 3535, 3533, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3539, 1, 0, 0, 0, 3537, 3535, 1, 0, 0, 0, 3538, 3540, 3, 258, 129, 0, 3539, 3538, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3542, 1, 0, 0, 0, 3541, 3543, 3, 328, 164, 0, 3542, 3541, 1, 0, 0, 0, 3542, 3543, 1, 0, 0, 0, 3543, 3545, 1, 0, 0, 0, 3544, 3546, 3, 238, 119, 0, 3545, 3544, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3548, 1, 0, 0, 0, 3547, 3549, 3, 312, 156, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3574, 1, 0, 0, 0, 3550, 3554, 3, 280, 140, 0, 3551, 3553, 3, 284, 142, 0, 3552, 3551, 1, 0, 0, 0, 3553, 3556, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3562, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3557, 3559, 5, 181, 0, 0, 3558, 3560, 7, 45, 0, 0, 3559, 3558, 1, 0, 0, 0, 3559, 3560, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 3, 280, 140, 0, 3562, 3557, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3565, 1, 0, 0, 0, 3564, 3566, 3, 258, 129, 0, 3565, 3564, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3569, 3, 328, 164, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3572, 3, 238, 119, 0, 3571, 3570, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3574, 1, 0, 0, 0, 3573, 3514, 1, 0, 0, 0, 3573, 3550, 1, 0, 0, 0, 3574, 211, 1, 0, 0, 0, 3575, 3577, 3, 50, 25, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3580, 3, 214, 107, 0, 3579, 3581, 3, 258, 129, 0, 3580, 3579, 1, 0, 0, 0, 3580, 3581, 1, 0, 0, 0, 3581, 3583, 1, 0, 0, 0, 3582, 3584, 3, 328, 164, 0, 3583, 3582, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3586, 1, 0, 0, 0, 3585, 3587, 3, 312, 156, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 213, 1, 0, 0, 0, 3588, 3589, 6, 107, -1, 0, 3589, 3590, 3, 216, 108, 0, 3590, 3605, 1, 0, 0, 0, 3591, 3592, 10, 2, 0, 0, 3592, 3594, 5, 181, 0, 0, 3593, 3595, 7, 45, 0, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3604, 3, 216, 108, 0, 3597, 3598, 10, 1, 0, 0, 3598, 3600, 5, 59, 0, 0, 3599, 3601, 7, 45, 0, 0, 3600, 3599, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3604, 3, 216, 108, 0, 3603, 3591, 1, 0, 0, 0, 3603, 3597, 1, 0, 0, 0, 3604, 3607, 1, 0, 0, 0, 3605, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 215, 1, 0, 0, 0, 3607, 3605, 1, 0, 0, 0, 3608, 3609, 6, 108, -1, 0, 3609, 3610, 3, 218, 109, 0, 3610, 3619, 1, 0, 0, 0, 3611, 3612, 10, 1, 0, 0, 3612, 3614, 5, 828, 0, 0, 3613, 3615, 7, 45, 0, 0, 3614, 3613, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3618, 3, 218, 109, 0, 3617, 3611, 1, 0, 0, 0, 3618, 3621, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 217, 1, 0, 0, 0, 3621, 3619, 1, 0, 0, 0, 3622, 3637, 3, 226, 113, 0, 3623, 3624, 5, 866, 0, 0, 3624, 3626, 3, 214, 107, 0, 3625, 3627, 3, 258, 129, 0, 3626, 3625, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 3629, 1, 0, 0, 0, 3628, 3630, 3, 328, 164, 0, 3629, 3628, 1, 0, 0, 0, 3629, 3630, 1, 0, 0, 0, 3630, 3632, 1, 0, 0, 0, 3631, 3633, 3, 312, 156, 0, 3632, 3631, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 5, 867, 0, 0, 3635, 3637, 1, 0, 0, 0, 3636, 3622, 1, 0, 0, 0, 3636, 3623, 1, 0, 0, 0, 3637, 219, 1, 0, 0, 0, 3638, 3641, 3, 254, 127, 0, 3639, 3641, 3, 256, 128, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3639, 1, 0, 0, 0, 3641, 221, 1, 0, 0, 0, 3642, 3646, 3, 230, 115, 0, 3643, 3644, 5, 125, 0, 0, 3644, 3645, 5, 20, 0, 0, 3645, 3647, 3, 684, 342, 0, 3646, 3643, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3649, 5, 100, 0, 0, 3649, 3651, 3, 330, 165, 0, 3650, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 223, 1, 0, 0, 0, 3652, 3657, 3, 226, 113, 0, 3653, 3654, 7, 50, 0, 0, 3654, 3656, 3, 226, 113, 0, 3655, 3653, 1, 0, 0, 0, 3656, 3659, 1, 0, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3661, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3660, 3662, 3, 258, 129, 0, 3661, 3660, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3664, 1, 0, 0, 0, 3663, 3665, 3, 328, 164, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3667, 1, 0, 0, 0, 3666, 3668, 3, 312, 156, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 225, 1, 0, 0, 0, 3669, 3673, 3, 210, 105, 0, 3670, 3673, 3, 628, 314, 0, 3671, 3673, 3, 222, 111, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 227, 1, 0, 0, 0, 3674, 3680, 3, 210, 105, 0, 3675, 3676, 5, 173, 0, 0, 3676, 3680, 3, 662, 331, 0, 3677, 3680, 3, 752, 376, 0, 3678, 3680, 3, 230, 115, 0, 3679, 3674, 1, 0, 0, 0, 3679, 3675, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3679, 3678, 1, 0, 0, 0, 3680, 229, 1, 0, 0, 0, 3681, 3682, 5, 189, 0, 0, 3682, 3683, 5, 586, 0, 0, 3683, 3689, 3, 754, 377, 0, 3684, 3685, 5, 868, 0, 0, 3685, 3686, 5, 586, 0, 0, 3686, 3688, 3, 754, 377, 0, 3687, 3684, 1, 0, 0, 0, 3688, 3691, 1, 0, 0, 0, 3689, 3687, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3690, 231, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3692, 3693, 5, 155, 0, 0, 3693, 3698, 3, 234, 117, 0, 3694, 3695, 5, 868, 0, 0, 3695, 3697, 3, 234, 117, 0, 3696, 3694, 1, 0, 0, 0, 3697, 3700, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 233, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3702, 3, 672, 336, 0, 3702, 3703, 5, 857, 0, 0, 3703, 3704, 3, 756, 378, 0, 3704, 235, 1, 0, 0, 0, 3705, 3708, 3, 716, 358, 0, 3706, 3708, 5, 892, 0, 0, 3707, 3705, 1, 0, 0, 0, 3707, 3706, 1, 0, 0, 0, 3708, 237, 1, 0, 0, 0, 3709, 3710, 5, 65, 0, 0, 3710, 3720, 7, 51, 0, 0, 3711, 3712, 5, 510, 0, 0, 3712, 3717, 3, 662, 331, 0, 3713, 3714, 5, 868, 0, 0, 3714, 3716, 3, 662, 331, 0, 3715, 3713, 1, 0, 0, 0, 3716, 3719, 1, 0, 0, 0, 3717, 3715, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3721, 1, 0, 0, 0, 3719, 3717, 1, 0, 0, 0, 3720, 3711, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3723, 7, 52, 0, 0, 3723, 3725, 5, 105, 0, 0, 3724, 3722, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3731, 1, 0, 0, 0, 3726, 3727, 5, 104, 0, 0, 3727, 3728, 5, 80, 0, 0, 3728, 3729, 5, 594, 0, 0, 3729, 3731, 5, 491, 0, 0, 3730, 3709, 1, 0, 0, 0, 3730, 3726, 1, 0, 0, 0, 3731, 239, 1, 0, 0, 0, 3732, 3734, 5, 44, 0, 0, 3733, 3735, 5, 107, 0, 0, 3734, 3733, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3737, 1, 0, 0, 0, 3736, 3738, 5, 549, 0, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3740, 1, 0, 0, 0, 3739, 3741, 5, 79, 0, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3743, 5, 68, 0, 0, 3743, 3748, 3, 662, 331, 0, 3744, 3746, 5, 13, 0, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 3749, 3, 716, 358, 0, 3748, 3745, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3755, 1, 0, 0, 0, 3750, 3751, 5, 130, 0, 0, 3751, 3752, 5, 866, 0, 0, 3752, 3753, 3, 680, 340, 0, 3753, 3754, 5, 867, 0, 0, 3754, 3756, 1, 0, 0, 0, 3755, 3750, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3759, 1, 0, 0, 0, 3757, 3758, 5, 192, 0, 0, 3758, 3760, 3, 814, 407, 0, 3759, 3757, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 3762, 1, 0, 0, 0, 3761, 3763, 3, 258, 129, 0, 3762, 3761, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3766, 1, 0, 0, 0, 3764, 3765, 5, 100, 0, 0, 3765, 3767, 3, 330, 165, 0, 3766, 3764, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 241, 1, 0, 0, 0, 3768, 3770, 5, 44, 0, 0, 3769, 3771, 5, 107, 0, 0, 3770, 3769, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3773, 1, 0, 0, 0, 3772, 3774, 5, 549, 0, 0, 3773, 3772, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3776, 1, 0, 0, 0, 3775, 3777, 5, 79, 0, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3817, 1, 0, 0, 0, 3778, 3781, 3, 662, 331, 0, 3779, 3780, 5, 865, 0, 0, 3780, 3782, 5, 850, 0, 0, 3781, 3779, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3791, 1, 0, 0, 0, 3783, 3784, 5, 868, 0, 0, 3784, 3787, 3, 662, 331, 0, 3785, 3786, 5, 865, 0, 0, 3786, 3788, 5, 850, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3790, 1, 0, 0, 0, 3789, 3783, 1, 0, 0, 0, 3790, 3793, 1, 0, 0, 0, 3791, 3789, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3794, 1, 0, 0, 0, 3793, 3791, 1, 0, 0, 0, 3794, 3795, 5, 68, 0, 0, 3795, 3796, 3, 262, 131, 0, 3796, 3818, 1, 0, 0, 0, 3797, 3798, 5, 68, 0, 0, 3798, 3801, 3, 662, 331, 0, 3799, 3800, 5, 865, 0, 0, 3800, 3802, 5, 850, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3811, 1, 0, 0, 0, 3803, 3804, 5, 868, 0, 0, 3804, 3807, 3, 662, 331, 0, 3805, 3806, 5, 865, 0, 0, 3806, 3808, 5, 850, 0, 0, 3807, 3805, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3803, 1, 0, 0, 0, 3810, 3813, 1, 0, 0, 0, 3811, 3809, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3814, 1, 0, 0, 0, 3813, 3811, 1, 0, 0, 0, 3814, 3815, 5, 188, 0, 0, 3815, 3816, 3, 262, 131, 0, 3816, 3818, 1, 0, 0, 0, 3817, 3778, 1, 0, 0, 0, 3817, 3797, 1, 0, 0, 0, 3818, 3821, 1, 0, 0, 0, 3819, 3820, 5, 192, 0, 0, 3820, 3822, 3, 814, 407, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 243, 1, 0, 0, 0, 3823, 3824, 5, 417, 0, 0, 3824, 3825, 3, 662, 331, 0, 3825, 3830, 5, 516, 0, 0, 3826, 3828, 5, 13, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3831, 3, 716, 358, 0, 3830, 3827, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 245, 1, 0, 0, 0, 3832, 3833, 5, 417, 0, 0, 3833, 3834, 3, 662, 331, 0, 3834, 3835, 5, 135, 0, 0, 3835, 3842, 3, 652, 326, 0, 3836, 3837, 3, 824, 412, 0, 3837, 3838, 5, 866, 0, 0, 3838, 3839, 3, 758, 379, 0, 3839, 3840, 5, 867, 0, 0, 3840, 3843, 1, 0, 0, 0, 3841, 3843, 7, 53, 0, 0, 3842, 3836, 1, 0, 0, 0, 3842, 3841, 1, 0, 0, 0, 3843, 3846, 1, 0, 0, 0, 3844, 3845, 5, 192, 0, 0, 3845, 3847, 3, 814, 407, 0, 3846, 3844, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3850, 1, 0, 0, 0, 3848, 3849, 5, 100, 0, 0, 3849, 3851, 3, 330, 165, 0, 3850, 3848, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 247, 1, 0, 0, 0, 3852, 3853, 5, 417, 0, 0, 3853, 3854, 3, 662, 331, 0, 3854, 3855, 5, 135, 0, 0, 3855, 3858, 7, 54, 0, 0, 3856, 3857, 5, 192, 0, 0, 3857, 3859, 3, 814, 407, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3862, 1, 0, 0, 0, 3860, 3861, 5, 100, 0, 0, 3861, 3863, 3, 330, 165, 0, 3862, 3860, 1, 0, 0, 0, 3862, 3863, 1, 0, 0, 0, 3863, 249, 1, 0, 0, 0, 3864, 3865, 5, 417, 0, 0, 3865, 3866, 3, 662, 331, 0, 3866, 3867, 5, 334, 0, 0, 3867, 251, 1, 0, 0, 0, 3868, 3869, 5, 425, 0, 0, 3869, 3870, 5, 173, 0, 0, 3870, 3871, 5, 68, 0, 0, 3871, 3876, 3, 726, 363, 0, 3872, 3873, 5, 868, 0, 0, 3873, 3875, 3, 726, 363, 0, 3874, 3872, 1, 0, 0, 0, 3875, 3878, 1, 0, 0, 0, 3876, 3874, 1, 0, 0, 0, 3876, 3877, 1, 0, 0, 0, 3877, 253, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3881, 5, 185, 0, 0, 3880, 3882, 5, 107, 0, 0, 3881, 3880, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 3884, 1, 0, 0, 0, 3883, 3885, 5, 79, 0, 0, 3884, 3883, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3891, 3, 662, 331, 0, 3887, 3889, 5, 13, 0, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3892, 3, 716, 358, 0, 3891, 3888, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3894, 5, 155, 0, 0, 3894, 3899, 3, 234, 117, 0, 3895, 3896, 5, 868, 0, 0, 3896, 3898, 3, 234, 117, 0, 3897, 3895, 1, 0, 0, 0, 3898, 3901, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3904, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3902, 3903, 5, 192, 0, 0, 3903, 3905, 3, 814, 407, 0, 3904, 3902, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3907, 1, 0, 0, 0, 3906, 3908, 3, 258, 129, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3911, 3, 328, 164, 0, 3910, 3909, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 255, 1, 0, 0, 0, 3912, 3914, 5, 185, 0, 0, 3913, 3915, 5, 107, 0, 0, 3914, 3913, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 1, 0, 0, 0, 3916, 3918, 5, 79, 0, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3920, 3, 262, 131, 0, 3920, 3921, 5, 155, 0, 0, 3921, 3926, 3, 234, 117, 0, 3922, 3923, 5, 868, 0, 0, 3923, 3925, 3, 234, 117, 0, 3924, 3922, 1, 0, 0, 0, 3925, 3928, 1, 0, 0, 0, 3926, 3924, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3931, 1, 0, 0, 0, 3928, 3926, 1, 0, 0, 0, 3929, 3930, 5, 192, 0, 0, 3930, 3932, 3, 814, 407, 0, 3931, 3929, 1, 0, 0, 0, 3931, 3932, 1, 0, 0, 0, 3932, 257, 1, 0, 0, 0, 3933, 3934, 5, 125, 0, 0, 3934, 3935, 5, 20, 0, 0, 3935, 3940, 3, 260, 130, 0, 3936, 3937, 5, 868, 0, 0, 3937, 3939, 3, 260, 130, 0, 3938, 3936, 1, 0, 0, 0, 3939, 3942, 1, 0, 0, 0, 3940, 3938, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 259, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3943, 3945, 3, 814, 407, 0, 3944, 3946, 7, 55, 0, 0, 3945, 3944, 1, 0, 0, 0, 3945, 3946, 1, 0, 0, 0, 3946, 261, 1, 0, 0, 0, 3947, 3952, 3, 264, 132, 0, 3948, 3949, 5, 868, 0, 0, 3949, 3951, 3, 264, 132, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3954, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 263, 1, 0, 0, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3959, 3, 266, 133, 0, 3956, 3958, 3, 276, 138, 0, 3957, 3956, 1, 0, 0, 0, 3958, 3961, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3974, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3962, 3963, 5, 866, 0, 0, 3963, 3967, 3, 266, 133, 0, 3964, 3966, 3, 276, 138, 0, 3965, 3964, 1, 0, 0, 0, 3966, 3969, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3970, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3970, 3971, 5, 867, 0, 0, 3971, 3974, 1, 0, 0, 0, 3972, 3974, 3, 288, 144, 0, 3973, 3955, 1, 0, 0, 0, 3973, 3962, 1, 0, 0, 0, 3973, 3972, 1, 0, 0, 0, 3974, 265, 1, 0, 0, 0, 3975, 3981, 3, 662, 331, 0, 3976, 3977, 5, 130, 0, 0, 3977, 3978, 5, 866, 0, 0, 3978, 3979, 3, 680, 340, 0, 3979, 3980, 5, 867, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3976, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3987, 1, 0, 0, 0, 3983, 3985, 5, 13, 0, 0, 3984, 3983, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3988, 3, 716, 358, 0, 3987, 3984, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3997, 1, 0, 0, 0, 3989, 3994, 3, 272, 136, 0, 3990, 3991, 5, 868, 0, 0, 3991, 3993, 3, 272, 136, 0, 3992, 3990, 1, 0, 0, 0, 3993, 3996, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 3998, 1, 0, 0, 0, 3996, 3994, 1, 0, 0, 0, 3997, 3989, 1, 0, 0, 0, 3997, 3998, 1, 0, 0, 0, 3998, 4015, 1, 0, 0, 0, 3999, 4001, 5, 95, 0, 0, 4000, 3999, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4004, 3, 268, 134, 0, 4003, 4005, 5, 13, 0, 0, 4004, 4003, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 4008, 3, 716, 358, 0, 4007, 4009, 3, 270, 135, 0, 4008, 4007, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 4015, 1, 0, 0, 0, 4010, 4011, 5, 866, 0, 0, 4011, 4012, 3, 262, 131, 0, 4012, 4013, 5, 867, 0, 0, 4013, 4015, 1, 0, 0, 0, 4014, 3975, 1, 0, 0, 0, 4014, 4000, 1, 0, 0, 0, 4014, 4010, 1, 0, 0, 0, 4015, 267, 1, 0, 0, 0, 4016, 4022, 3, 210, 105, 0, 4017, 4018, 5, 866, 0, 0, 4018, 4019, 3, 210, 105, 0, 4019, 4020, 5, 867, 0, 0, 4020, 4022, 1, 0, 0, 0, 4021, 4016, 1, 0, 0, 0, 4021, 4017, 1, 0, 0, 0, 4022, 269, 1, 0, 0, 0, 4023, 4024, 5, 866, 0, 0, 4024, 4025, 3, 670, 335, 0, 4025, 4026, 5, 867, 0, 0, 4026, 271, 1, 0, 0, 0, 4027, 4028, 7, 56, 0, 0, 4028, 4031, 7, 19, 0, 0, 4029, 4030, 5, 65, 0, 0, 4030, 4032, 3, 274, 137, 0, 4031, 4029, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4035, 5, 866, 0, 0, 4034, 4036, 3, 650, 325, 0, 4035, 4034, 1, 0, 0, 0, 4035, 4036, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 5, 867, 0, 0, 4038, 273, 1, 0, 0, 0, 4039, 4045, 5, 91, 0, 0, 4040, 4041, 5, 125, 0, 0, 4041, 4045, 5, 20, 0, 0, 4042, 4043, 5, 74, 0, 0, 4043, 4045, 5, 20, 0, 0, 4044, 4039, 1, 0, 0, 0, 4044, 4040, 1, 0, 0, 0, 4044, 4042, 1, 0, 0, 0, 4045, 275, 1, 0, 0, 0, 4046, 4048, 7, 57, 0, 0, 4047, 4046, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4051, 5, 91, 0, 0, 4050, 4052, 5, 95, 0, 0, 4051, 4050, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4057, 3, 266, 133, 0, 4054, 4056, 3, 278, 139, 0, 4055, 4054, 1, 0, 0, 0, 4056, 4059, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4096, 1, 0, 0, 0, 4059, 4057, 1, 0, 0, 0, 4060, 4061, 5, 172, 0, 0, 4061, 4065, 3, 266, 133, 0, 4062, 4064, 3, 278, 139, 0, 4063, 4062, 1, 0, 0, 0, 4064, 4067, 1, 0, 0, 0, 4065, 4063, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4096, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4068, 4070, 7, 58, 0, 0, 4069, 4071, 5, 127, 0, 0, 4070, 4069, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4074, 5, 91, 0, 0, 4073, 4075, 5, 95, 0, 0, 4074, 4073, 1, 0, 0, 0, 4074, 4075, 1, 0, 0, 0, 4075, 4076, 1, 0, 0, 0, 4076, 4080, 3, 266, 133, 0, 4077, 4079, 3, 278, 139, 0, 4078, 4077, 1, 0, 0, 0, 4079, 4082, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4096, 1, 0, 0, 0, 4082, 4080, 1, 0, 0, 0, 4083, 4091, 5, 113, 0, 0, 4084, 4087, 5, 84, 0, 0, 4085, 4087, 7, 58, 0, 0, 4086, 4084, 1, 0, 0, 0, 4086, 4085, 1, 0, 0, 0, 4087, 4089, 1, 0, 0, 0, 4088, 4090, 5, 127, 0, 0, 4089, 4088, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 4092, 1, 0, 0, 0, 4091, 4086, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4094, 5, 91, 0, 0, 4094, 4096, 3, 266, 133, 0, 4095, 4047, 1, 0, 0, 0, 4095, 4060, 1, 0, 0, 0, 4095, 4068, 1, 0, 0, 0, 4095, 4083, 1, 0, 0, 0, 4096, 277, 1, 0, 0, 0, 4097, 4098, 5, 119, 0, 0, 4098, 4105, 3, 814, 407, 0, 4099, 4100, 5, 188, 0, 0, 4100, 4101, 5, 866, 0, 0, 4101, 4102, 3, 670, 335, 0, 4102, 4103, 5, 867, 0, 0, 4103, 4105, 1, 0, 0, 0, 4104, 4097, 1, 0, 0, 0, 4104, 4099, 1, 0, 0, 0, 4105, 279, 1, 0, 0, 0, 4106, 4107, 5, 866, 0, 0, 4107, 4108, 3, 282, 141, 0, 4108, 4109, 5, 867, 0, 0, 4109, 4115, 1, 0, 0, 0, 4110, 4111, 5, 866, 0, 0, 4111, 4112, 3, 280, 140, 0, 4112, 4113, 5, 867, 0, 0, 4113, 4115, 1, 0, 0, 0, 4114, 4106, 1, 0, 0, 0, 4114, 4110, 1, 0, 0, 0, 4115, 281, 1, 0, 0, 0, 4116, 4120, 5, 154, 0, 0, 4117, 4119, 3, 298, 149, 0, 4118, 4117, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4123, 1, 0, 0, 0, 4122, 4120, 1, 0, 0, 0, 4123, 4125, 3, 300, 150, 0, 4124, 4126, 3, 312, 156, 0, 4125, 4124, 1, 0, 0, 0, 4125, 4126, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4129, 3, 318, 159, 0, 4128, 4130, 3, 320, 160, 0, 4129, 4128, 1, 0, 0, 0, 4129, 4130, 1, 0, 0, 0, 4130, 4132, 1, 0, 0, 0, 4131, 4133, 3, 322, 161, 0, 4132, 4131, 1, 0, 0, 0, 4132, 4133, 1, 0, 0, 0, 4133, 4135, 1, 0, 0, 0, 4134, 4136, 3, 324, 162, 0, 4135, 4134, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4138, 1, 0, 0, 0, 4137, 4139, 3, 258, 129, 0, 4138, 4137, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4141, 1, 0, 0, 0, 4140, 4142, 3, 328, 164, 0, 4141, 4140, 1, 0, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 4144, 1, 0, 0, 0, 4143, 4145, 3, 312, 156, 0, 4144, 4143, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4148, 3, 284, 142, 0, 4147, 4146, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 283, 1, 0, 0, 0, 4149, 4151, 5, 181, 0, 0, 4150, 4152, 7, 45, 0, 0, 4151, 4150, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4152, 4155, 1, 0, 0, 0, 4153, 4156, 3, 282, 141, 0, 4154, 4156, 3, 280, 140, 0, 4155, 4153, 1, 0, 0, 0, 4155, 4154, 1, 0, 0, 0, 4156, 285, 1, 0, 0, 0, 4157, 4172, 5, 95, 0, 0, 4158, 4173, 3, 282, 141, 0, 4159, 4173, 3, 280, 140, 0, 4160, 4163, 5, 866, 0, 0, 4161, 4164, 3, 282, 141, 0, 4162, 4164, 3, 280, 140, 0, 4163, 4161, 1, 0, 0, 0, 4163, 4162, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4170, 5, 867, 0, 0, 4166, 4168, 5, 13, 0, 0, 4167, 4166, 1, 0, 0, 0, 4167, 4168, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4171, 3, 716, 358, 0, 4170, 4167, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4173, 1, 0, 0, 0, 4172, 4158, 1, 0, 0, 0, 4172, 4159, 1, 0, 0, 0, 4172, 4160, 1, 0, 0, 0, 4173, 287, 1, 0, 0, 0, 4174, 4175, 5, 253, 0, 0, 4175, 4176, 5, 866, 0, 0, 4176, 4177, 5, 882, 0, 0, 4177, 4178, 5, 868, 0, 0, 4178, 4179, 5, 882, 0, 0, 4179, 4180, 5, 337, 0, 0, 4180, 4181, 5, 866, 0, 0, 4181, 4182, 3, 290, 145, 0, 4182, 4183, 5, 867, 0, 0, 4183, 4188, 5, 867, 0, 0, 4184, 4186, 5, 13, 0, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4189, 3, 716, 358, 0, 4188, 4185, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 289, 1, 0, 0, 0, 4190, 4195, 3, 292, 146, 0, 4191, 4192, 5, 868, 0, 0, 4192, 4194, 3, 292, 146, 0, 4193, 4191, 1, 0, 0, 0, 4194, 4197, 1, 0, 0, 0, 4195, 4193, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 291, 1, 0, 0, 0, 4197, 4195, 1, 0, 0, 0, 4198, 4215, 3, 672, 336, 0, 4199, 4200, 5, 65, 0, 0, 4200, 4216, 5, 256, 0, 0, 4201, 4213, 3, 736, 368, 0, 4202, 4203, 5, 257, 0, 0, 4203, 4205, 5, 882, 0, 0, 4204, 4206, 3, 294, 147, 0, 4205, 4204, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4208, 1, 0, 0, 0, 4207, 4209, 3, 296, 148, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 4214, 1, 0, 0, 0, 4210, 4211, 5, 60, 0, 0, 4211, 4212, 5, 257, 0, 0, 4212, 4214, 5, 882, 0, 0, 4213, 4202, 1, 0, 0, 0, 4213, 4210, 1, 0, 0, 0, 4214, 4216, 1, 0, 0, 0, 4215, 4199, 1, 0, 0, 0, 4215, 4201, 1, 0, 0, 0, 4216, 4228, 1, 0, 0, 0, 4217, 4219, 5, 255, 0, 0, 4218, 4220, 5, 257, 0, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4222, 5, 882, 0, 0, 4222, 4223, 5, 337, 0, 0, 4223, 4224, 5, 866, 0, 0, 4224, 4225, 3, 290, 145, 0, 4225, 4226, 5, 867, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4198, 1, 0, 0, 0, 4227, 4217, 1, 0, 0, 0, 4228, 293, 1, 0, 0, 0, 4229, 4234, 5, 116, 0, 0, 4230, 4234, 5, 382, 0, 0, 4231, 4232, 5, 42, 0, 0, 4232, 4234, 3, 764, 382, 0, 4233, 4229, 1, 0, 0, 0, 4233, 4230, 1, 0, 0, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4235, 1, 0, 0, 0, 4235, 4236, 5, 119, 0, 0, 4236, 4237, 5, 55, 0, 0, 4237, 295, 1, 0, 0, 0, 4238, 4243, 5, 116, 0, 0, 4239, 4243, 5, 382, 0, 0, 4240, 4241, 5, 42, 0, 0, 4241, 4243, 3, 764, 382, 0, 4242, 4238, 1, 0, 0, 0, 4242, 4239, 1, 0, 0, 0, 4242, 4240, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4245, 5, 119, 0, 0, 4245, 4246, 5, 382, 0, 0, 4246, 297, 1, 0, 0, 0, 4247, 4256, 7, 59, 0, 0, 4248, 4256, 5, 76, 0, 0, 4249, 4256, 5, 172, 0, 0, 4250, 4256, 5, 168, 0, 0, 4251, 4256, 5, 166, 0, 0, 4252, 4256, 5, 636, 0, 0, 4253, 4256, 7, 60, 0, 0, 4254, 4256, 5, 167, 0, 0, 4255, 4247, 1, 0, 0, 0, 4255, 4248, 1, 0, 0, 0, 4255, 4249, 1, 0, 0, 0, 4255, 4250, 1, 0, 0, 0, 4255, 4251, 1, 0, 0, 0, 4255, 4252, 1, 0, 0, 0, 4255, 4253, 1, 0, 0, 0, 4255, 4254, 1, 0, 0, 0, 4256, 299, 1, 0, 0, 0, 4257, 4260, 3, 306, 153, 0, 4258, 4260, 3, 302, 151, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4258, 1, 0, 0, 0, 4260, 4265, 1, 0, 0, 0, 4261, 4262, 5, 868, 0, 0, 4262, 4264, 3, 302, 151, 0, 4263, 4261, 1, 0, 0, 0, 4264, 4267, 1, 0, 0, 0, 4265, 4263, 1, 0, 0, 0, 4265, 4266, 1, 0, 0, 0, 4266, 301, 1, 0, 0, 0, 4267, 4265, 1, 0, 0, 0, 4268, 4284, 3, 304, 152, 0, 4269, 4274, 3, 308, 154, 0, 4270, 4272, 5, 13, 0, 0, 4271, 4270, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4275, 3, 716, 358, 0, 4274, 4271, 1, 0, 0, 0, 4274, 4275, 1, 0, 0, 0, 4275, 4284, 1, 0, 0, 0, 4276, 4281, 3, 310, 155, 0, 4277, 4279, 5, 13, 0, 0, 4278, 4277, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 3, 716, 358, 0, 4281, 4278, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 1, 0, 0, 0, 4283, 4268, 1, 0, 0, 0, 4283, 4269, 1, 0, 0, 0, 4283, 4276, 1, 0, 0, 0, 4284, 303, 1, 0, 0, 0, 4285, 4286, 3, 712, 356, 0, 4286, 4287, 5, 865, 0, 0, 4287, 4288, 5, 850, 0, 0, 4288, 305, 1, 0, 0, 0, 4289, 4290, 5, 850, 0, 0, 4290, 307, 1, 0, 0, 0, 4291, 4292, 3, 672, 336, 0, 4292, 309, 1, 0, 0, 0, 4293, 4294, 5, 892, 0, 0, 4294, 4296, 5, 841, 0, 0, 4295, 4293, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4300, 3, 814, 407, 0, 4298, 4300, 3, 774, 387, 0, 4299, 4295, 1, 0, 0, 0, 4299, 4298, 1, 0, 0, 0, 4300, 311, 1, 0, 0, 0, 4301, 4302, 5, 88, 0, 0, 4302, 4307, 3, 236, 118, 0, 4303, 4304, 5, 868, 0, 0, 4304, 4306, 3, 236, 118, 0, 4305, 4303, 1, 0, 0, 0, 4306, 4309, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4338, 1, 0, 0, 0, 4309, 4307, 1, 0, 0, 0, 4310, 4311, 5, 88, 0, 0, 4311, 4312, 5, 372, 0, 0, 4312, 4338, 5, 882, 0, 0, 4313, 4314, 5, 88, 0, 0, 4314, 4315, 5, 128, 0, 0, 4315, 4319, 5, 882, 0, 0, 4316, 4317, 5, 26, 0, 0, 4317, 4318, 5, 155, 0, 0, 4318, 4320, 3, 698, 349, 0, 4319, 4316, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4327, 1, 0, 0, 0, 4321, 4323, 7, 47, 0, 0, 4322, 4324, 3, 314, 157, 0, 4323, 4322, 1, 0, 0, 0, 4324, 4325, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 4328, 1, 0, 0, 0, 4327, 4321, 1, 0, 0, 0, 4327, 4328, 1, 0, 0, 0, 4328, 4335, 1, 0, 0, 0, 4329, 4331, 5, 102, 0, 0, 4330, 4332, 3, 316, 158, 0, 4331, 4330, 1, 0, 0, 0, 4332, 4333, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4336, 1, 0, 0, 0, 4335, 4329, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4338, 1, 0, 0, 0, 4337, 4301, 1, 0, 0, 0, 4337, 4310, 1, 0, 0, 0, 4337, 4313, 1, 0, 0, 0, 4338, 313, 1, 0, 0, 0, 4339, 4340, 5, 174, 0, 0, 4340, 4341, 5, 20, 0, 0, 4341, 4352, 5, 882, 0, 0, 4342, 4344, 5, 123, 0, 0, 4343, 4342, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 4345, 1, 0, 0, 0, 4345, 4346, 5, 56, 0, 0, 4346, 4347, 5, 20, 0, 0, 4347, 4352, 5, 882, 0, 0, 4348, 4349, 5, 58, 0, 0, 4349, 4350, 5, 20, 0, 0, 4350, 4352, 5, 882, 0, 0, 4351, 4339, 1, 0, 0, 0, 4351, 4343, 1, 0, 0, 0, 4351, 4348, 1, 0, 0, 0, 4352, 315, 1, 0, 0, 0, 4353, 4354, 5, 171, 0, 0, 4354, 4355, 5, 20, 0, 0, 4355, 4360, 5, 882, 0, 0, 4356, 4357, 5, 174, 0, 0, 4357, 4358, 5, 20, 0, 0, 4358, 4360, 5, 882, 0, 0, 4359, 4353, 1, 0, 0, 0, 4359, 4356, 1, 0, 0, 0, 4360, 317, 1, 0, 0, 0, 4361, 4362, 5, 68, 0, 0, 4362, 4364, 3, 262, 131, 0, 4363, 4361, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 4367, 1, 0, 0, 0, 4365, 4366, 5, 192, 0, 0, 4366, 4368, 3, 814, 407, 0, 4367, 4365, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 319, 1, 0, 0, 0, 4369, 4370, 5, 74, 0, 0, 4370, 4371, 5, 20, 0, 0, 4371, 4376, 3, 326, 163, 0, 4372, 4373, 5, 868, 0, 0, 4373, 4375, 3, 326, 163, 0, 4374, 4372, 1, 0, 0, 0, 4375, 4378, 1, 0, 0, 0, 4376, 4374, 1, 0, 0, 0, 4376, 4377, 1, 0, 0, 0, 4377, 4381, 1, 0, 0, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4380, 5, 194, 0, 0, 4380, 4382, 5, 584, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 321, 1, 0, 0, 0, 4383, 4384, 5, 75, 0, 0, 4384, 4385, 3, 814, 407, 0, 4385, 323, 1, 0, 0, 0, 4386, 4387, 5, 689, 0, 0, 4387, 4388, 3, 792, 396, 0, 4388, 4389, 5, 13, 0, 0, 4389, 4390, 5, 866, 0, 0, 4390, 4391, 3, 790, 395, 0, 4391, 4401, 5, 867, 0, 0, 4392, 4393, 5, 868, 0, 0, 4393, 4394, 3, 792, 396, 0, 4394, 4395, 5, 13, 0, 0, 4395, 4396, 5, 866, 0, 0, 4396, 4397, 3, 790, 395, 0, 4397, 4398, 5, 867, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4392, 1, 0, 0, 0, 4400, 4403, 1, 0, 0, 0, 4401, 4399, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 325, 1, 0, 0, 0, 4403, 4401, 1, 0, 0, 0, 4404, 4406, 3, 814, 407, 0, 4405, 4407, 7, 55, 0, 0, 4406, 4405, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 327, 1, 0, 0, 0, 4408, 4419, 5, 100, 0, 0, 4409, 4410, 3, 330, 165, 0, 4410, 4411, 5, 868, 0, 0, 4411, 4413, 1, 0, 0, 0, 4412, 4409, 1, 0, 0, 0, 4412, 4413, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4420, 3, 330, 165, 0, 4415, 4416, 3, 330, 165, 0, 4416, 4417, 5, 509, 0, 0, 4417, 4418, 3, 330, 165, 0, 4418, 4420, 1, 0, 0, 0, 4419, 4412, 1, 0, 0, 0, 4419, 4415, 1, 0, 0, 0, 4420, 329, 1, 0, 0, 0, 4421, 4425, 3, 722, 361, 0, 4422, 4425, 3, 696, 348, 0, 4423, 4425, 3, 718, 359, 0, 4424, 4421, 1, 0, 0, 0, 4424, 4422, 1, 0, 0, 0, 4424, 4423, 1, 0, 0, 0, 4425, 331, 1, 0, 0, 0, 4426, 4427, 5, 640, 0, 0, 4427, 4436, 5, 664, 0, 0, 4428, 4433, 3, 354, 177, 0, 4429, 4430, 5, 868, 0, 0, 4430, 4432, 3, 354, 177, 0, 4431, 4429, 1, 0, 0, 0, 4432, 4435, 1, 0, 0, 0, 4433, 4431, 1, 0, 0, 0, 4433, 4434, 1, 0, 0, 0, 4434, 4437, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4428, 1, 0, 0, 0, 4436, 4437, 1, 0, 0, 0, 4437, 333, 1, 0, 0, 0, 4438, 4440, 5, 317, 0, 0, 4439, 4441, 5, 691, 0, 0, 4440, 4439, 1, 0, 0, 0, 4440, 4441, 1, 0, 0, 0, 4441, 335, 1, 0, 0, 0, 4442, 4444, 5, 341, 0, 0, 4443, 4445, 5, 691, 0, 0, 4444, 4443, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 4451, 1, 0, 0, 0, 4446, 4448, 5, 11, 0, 0, 4447, 4449, 5, 502, 0, 0, 4448, 4447, 1, 0, 0, 0, 4448, 4449, 1, 0, 0, 0, 4449, 4450, 1, 0, 0, 0, 4450, 4452, 5, 326, 0, 0, 4451, 4446, 1, 0, 0, 0, 4451, 4452, 1, 0, 0, 0, 4452, 4457, 1, 0, 0, 0, 4453, 4455, 5, 502, 0, 0, 4454, 4453, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 4458, 5, 140, 0, 0, 4457, 4454, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 337, 1, 0, 0, 0, 4459, 4461, 5, 583, 0, 0, 4460, 4462, 5, 691, 0, 0, 4461, 4460, 1, 0, 0, 0, 4461, 4462, 1, 0, 0, 0, 4462, 4468, 1, 0, 0, 0, 4463, 4465, 5, 11, 0, 0, 4464, 4466, 5, 502, 0, 0, 4465, 4464, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 4469, 5, 326, 0, 0, 4468, 4463, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4474, 1, 0, 0, 0, 4470, 4472, 5, 502, 0, 0, 4471, 4470, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4475, 5, 140, 0, 0, 4474, 4471, 1, 0, 0, 0, 4474, 4475, 1, 0, 0, 0, 4475, 339, 1, 0, 0, 0, 4476, 4477, 5, 589, 0, 0, 4477, 4478, 3, 716, 358, 0, 4478, 341, 1, 0, 0, 0, 4479, 4481, 5, 583, 0, 0, 4480, 4482, 5, 691, 0, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 4485, 5, 176, 0, 0, 4484, 4486, 5, 589, 0, 0, 4485, 4484, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4488, 3, 716, 358, 0, 4488, 343, 1, 0, 0, 0, 4489, 4490, 5, 140, 0, 0, 4490, 4491, 5, 589, 0, 0, 4491, 4492, 3, 716, 358, 0, 4492, 345, 1, 0, 0, 0, 4493, 4494, 5, 104, 0, 0, 4494, 4495, 7, 61, 0, 0, 4495, 4500, 3, 356, 178, 0, 4496, 4497, 5, 868, 0, 0, 4497, 4499, 3, 356, 178, 0, 4498, 4496, 1, 0, 0, 0, 4499, 4502, 1, 0, 0, 0, 4500, 4498, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 347, 1, 0, 0, 0, 4502, 4500, 1, 0, 0, 0, 4503, 4504, 5, 183, 0, 0, 4504, 4505, 5, 752, 0, 0, 4505, 349, 1, 0, 0, 0, 4506, 4507, 5, 155, 0, 0, 4507, 4508, 5, 313, 0, 0, 4508, 4509, 5, 857, 0, 0, 4509, 4510, 7, 26, 0, 0, 4510, 351, 1, 0, 0, 0, 4511, 4513, 5, 155, 0, 0, 4512, 4514, 7, 62, 0, 0, 4513, 4512, 1, 0, 0, 0, 4513, 4514, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 4516, 5, 664, 0, 0, 4516, 4521, 3, 360, 180, 0, 4517, 4518, 5, 868, 0, 0, 4518, 4520, 3, 360, 180, 0, 4519, 4517, 1, 0, 0, 0, 4520, 4523, 1, 0, 0, 0, 4521, 4519, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 353, 1, 0, 0, 0, 4523, 4521, 1, 0, 0, 0, 4524, 4525, 5, 194, 0, 0, 4525, 4526, 5, 350, 0, 0, 4526, 4532, 5, 600, 0, 0, 4527, 4528, 5, 135, 0, 0, 4528, 4532, 5, 195, 0, 0, 4529, 4530, 5, 135, 0, 0, 4530, 4532, 5, 515, 0, 0, 4531, 4524, 1, 0, 0, 0, 4531, 4527, 1, 0, 0, 0, 4531, 4529, 1, 0, 0, 0, 4532, 355, 1, 0, 0, 0, 4533, 4538, 3, 662, 331, 0, 4534, 4536, 5, 13, 0, 0, 4535, 4534, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 4539, 3, 716, 358, 0, 4538, 4535, 1, 0, 0, 0, 4538, 4539, 1, 0, 0, 0, 4539, 4540, 1, 0, 0, 0, 4540, 4541, 3, 358, 179, 0, 4541, 357, 1, 0, 0, 0, 4542, 4544, 5, 135, 0, 0, 4543, 4545, 5, 450, 0, 0, 4544, 4543, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4551, 1, 0, 0, 0, 4546, 4548, 5, 107, 0, 0, 4547, 4546, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4551, 5, 195, 0, 0, 4550, 4542, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4551, 359, 1, 0, 0, 0, 4552, 4553, 5, 440, 0, 0, 4553, 4554, 5, 448, 0, 0, 4554, 4560, 3, 362, 181, 0, 4555, 4556, 5, 135, 0, 0, 4556, 4560, 5, 195, 0, 0, 4557, 4558, 5, 135, 0, 0, 4558, 4560, 5, 515, 0, 0, 4559, 4552, 1, 0, 0, 0, 4559, 4555, 1, 0, 0, 0, 4559, 4557, 1, 0, 0, 0, 4560, 361, 1, 0, 0, 0, 4561, 4562, 5, 809, 0, 0, 4562, 4569, 5, 135, 0, 0, 4563, 4564, 5, 135, 0, 0, 4564, 4569, 5, 810, 0, 0, 4565, 4566, 5, 135, 0, 0, 4566, 4569, 5, 811, 0, 0, 4567, 4569, 5, 812, 0, 0, 4568, 4561, 1, 0, 0, 0, 4568, 4563, 1, 0, 0, 0, 4568, 4565, 1, 0, 0, 0, 4568, 4567, 1, 0, 0, 0, 4569, 363, 1, 0, 0, 0, 4570, 4571, 5, 25, 0, 0, 4571, 4572, 5, 453, 0, 0, 4572, 4573, 5, 176, 0, 0, 4573, 4578, 3, 380, 190, 0, 4574, 4575, 5, 868, 0, 0, 4575, 4577, 3, 380, 190, 0, 4576, 4574, 1, 0, 0, 0, 4577, 4580, 1, 0, 0, 0, 4578, 4576, 1, 0, 0, 0, 4578, 4579, 1, 0, 0, 0, 4579, 4582, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4583, 3, 400, 200, 0, 4582, 4581, 1, 0, 0, 0, 4582, 4583, 1, 0, 0, 0, 4583, 365, 1, 0, 0, 0, 4584, 4585, 5, 25, 0, 0, 4585, 4586, 5, 572, 0, 0, 4586, 4587, 5, 400, 0, 0, 4587, 4592, 3, 402, 201, 0, 4588, 4589, 5, 868, 0, 0, 4589, 4591, 3, 402, 201, 0, 4590, 4588, 1, 0, 0, 0, 4591, 4594, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4592, 4593, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4595, 4597, 3, 400, 200, 0, 4596, 4595, 1, 0, 0, 0, 4596, 4597, 1, 0, 0, 0, 4597, 367, 1, 0, 0, 0, 4598, 4599, 5, 25, 0, 0, 4599, 4600, 5, 572, 0, 0, 4600, 4601, 5, 605, 0, 0, 4601, 4602, 5, 176, 0, 0, 4602, 4607, 3, 390, 195, 0, 4603, 4604, 5, 868, 0, 0, 4604, 4606, 3, 390, 195, 0, 4605, 4603, 1, 0, 0, 0, 4606, 4609, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4611, 1, 0, 0, 0, 4609, 4607, 1, 0, 0, 0, 4610, 4612, 3, 400, 200, 0, 4611, 4610, 1, 0, 0, 0, 4611, 4612, 1, 0, 0, 0, 4612, 369, 1, 0, 0, 0, 4613, 4614, 5, 133, 0, 0, 4614, 4615, 7, 63, 0, 0, 4615, 4620, 5, 452, 0, 0, 4616, 4617, 5, 176, 0, 0, 4617, 4621, 5, 882, 0, 0, 4618, 4619, 5, 16, 0, 0, 4619, 4621, 5, 882, 0, 0, 4620, 4616, 1, 0, 0, 0, 4620, 4618, 1, 0, 0, 0, 4621, 371, 1, 0, 0, 0, 4622, 4623, 5, 640, 0, 0, 4623, 4632, 7, 64, 0, 0, 4624, 4629, 3, 406, 203, 0, 4625, 4626, 5, 868, 0, 0, 4626, 4628, 3, 406, 203, 0, 4627, 4625, 1, 0, 0, 0, 4628, 4631, 1, 0, 0, 0, 4629, 4627, 1, 0, 0, 0, 4629, 4630, 1, 0, 0, 0, 4630, 4633, 1, 0, 0, 0, 4631, 4629, 1, 0, 0, 0, 4632, 4624, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4636, 1, 0, 0, 0, 4634, 4635, 5, 676, 0, 0, 4635, 4637, 3, 408, 204, 0, 4636, 4634, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4641, 1, 0, 0, 0, 4638, 4640, 3, 410, 205, 0, 4639, 4638, 1, 0, 0, 0, 4640, 4643, 1, 0, 0, 0, 4641, 4639, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4644, 4646, 3, 400, 200, 0, 4645, 4644, 1, 0, 0, 0, 4645, 4646, 1, 0, 0, 0, 4646, 373, 1, 0, 0, 0, 4647, 4648, 5, 646, 0, 0, 4648, 4657, 7, 64, 0, 0, 4649, 4654, 3, 406, 203, 0, 4650, 4651, 5, 868, 0, 0, 4651, 4653, 3, 406, 203, 0, 4652, 4650, 1, 0, 0, 0, 4653, 4656, 1, 0, 0, 0, 4654, 4652, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4658, 1, 0, 0, 0, 4656, 4654, 1, 0, 0, 0, 4657, 4649, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4660, 1, 0, 0, 0, 4659, 4661, 3, 400, 200, 0, 4660, 4659, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 375, 1, 0, 0, 0, 4662, 4663, 5, 640, 0, 0, 4663, 4667, 5, 415, 0, 0, 4664, 4665, 5, 678, 0, 0, 4665, 4666, 5, 857, 0, 0, 4666, 4668, 5, 882, 0, 0, 4667, 4664, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4673, 1, 0, 0, 0, 4669, 4670, 5, 868, 0, 0, 4670, 4671, 5, 529, 0, 0, 4671, 4672, 5, 857, 0, 0, 4672, 4674, 5, 882, 0, 0, 4673, 4669, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 4679, 1, 0, 0, 0, 4675, 4676, 5, 868, 0, 0, 4676, 4677, 5, 363, 0, 0, 4677, 4678, 5, 857, 0, 0, 4678, 4680, 5, 882, 0, 0, 4679, 4675, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 377, 1, 0, 0, 0, 4681, 4682, 5, 646, 0, 0, 4682, 4683, 5, 415, 0, 0, 4683, 379, 1, 0, 0, 0, 4684, 4685, 3, 382, 191, 0, 4685, 4686, 5, 857, 0, 0, 4686, 4687, 5, 882, 0, 0, 4687, 4712, 1, 0, 0, 0, 4688, 4689, 3, 384, 192, 0, 4689, 4690, 5, 857, 0, 0, 4690, 4691, 3, 722, 361, 0, 4691, 4712, 1, 0, 0, 0, 4692, 4693, 3, 386, 193, 0, 4693, 4694, 5, 857, 0, 0, 4694, 4695, 7, 26, 0, 0, 4695, 4712, 1, 0, 0, 0, 4696, 4712, 3, 388, 194, 0, 4697, 4698, 5, 424, 0, 0, 4698, 4699, 5, 857, 0, 0, 4699, 4708, 5, 866, 0, 0, 4700, 4705, 3, 716, 358, 0, 4701, 4702, 5, 868, 0, 0, 4702, 4704, 3, 716, 358, 0, 4703, 4701, 1, 0, 0, 0, 4704, 4707, 1, 0, 0, 0, 4705, 4703, 1, 0, 0, 0, 4705, 4706, 1, 0, 0, 0, 4706, 4709, 1, 0, 0, 0, 4707, 4705, 1, 0, 0, 0, 4708, 4700, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4710, 1, 0, 0, 0, 4710, 4712, 5, 867, 0, 0, 4711, 4684, 1, 0, 0, 0, 4711, 4688, 1, 0, 0, 0, 4711, 4692, 1, 0, 0, 0, 4711, 4696, 1, 0, 0, 0, 4711, 4697, 1, 0, 0, 0, 4712, 381, 1, 0, 0, 0, 4713, 4714, 7, 65, 0, 0, 4714, 383, 1, 0, 0, 0, 4715, 4716, 7, 66, 0, 0, 4716, 385, 1, 0, 0, 0, 4717, 4718, 7, 67, 0, 0, 4718, 387, 1, 0, 0, 0, 4719, 4720, 5, 543, 0, 0, 4720, 4721, 5, 857, 0, 0, 4721, 4733, 7, 68, 0, 0, 4722, 4723, 5, 574, 0, 0, 4723, 4724, 5, 857, 0, 0, 4724, 4733, 7, 69, 0, 0, 4725, 4726, 5, 310, 0, 0, 4726, 4730, 5, 857, 0, 0, 4727, 4731, 5, 507, 0, 0, 4728, 4731, 5, 450, 0, 0, 4729, 4731, 3, 412, 206, 0, 4730, 4727, 1, 0, 0, 0, 4730, 4728, 1, 0, 0, 0, 4730, 4729, 1, 0, 0, 0, 4731, 4733, 1, 0, 0, 0, 4732, 4719, 1, 0, 0, 0, 4732, 4722, 1, 0, 0, 0, 4732, 4725, 1, 0, 0, 0, 4733, 389, 1, 0, 0, 0, 4734, 4735, 3, 392, 196, 0, 4735, 4736, 5, 857, 0, 0, 4736, 4737, 5, 882, 0, 0, 4737, 4762, 1, 0, 0, 0, 4738, 4739, 3, 394, 197, 0, 4739, 4740, 5, 857, 0, 0, 4740, 4741, 3, 722, 361, 0, 4741, 4762, 1, 0, 0, 0, 4742, 4743, 3, 396, 198, 0, 4743, 4744, 5, 857, 0, 0, 4744, 4745, 7, 26, 0, 0, 4745, 4762, 1, 0, 0, 0, 4746, 4762, 3, 398, 199, 0, 4747, 4748, 5, 424, 0, 0, 4748, 4749, 5, 857, 0, 0, 4749, 4758, 5, 866, 0, 0, 4750, 4755, 3, 716, 358, 0, 4751, 4752, 5, 868, 0, 0, 4752, 4754, 3, 716, 358, 0, 4753, 4751, 1, 0, 0, 0, 4754, 4757, 1, 0, 0, 0, 4755, 4753, 1, 0, 0, 0, 4755, 4756, 1, 0, 0, 0, 4756, 4759, 1, 0, 0, 0, 4757, 4755, 1, 0, 0, 0, 4758, 4750, 1, 0, 0, 0, 4758, 4759, 1, 0, 0, 0, 4759, 4760, 1, 0, 0, 0, 4760, 4762, 5, 867, 0, 0, 4761, 4734, 1, 0, 0, 0, 4761, 4738, 1, 0, 0, 0, 4761, 4742, 1, 0, 0, 0, 4761, 4746, 1, 0, 0, 0, 4761, 4747, 1, 0, 0, 0, 4762, 391, 1, 0, 0, 0, 4763, 4764, 7, 70, 0, 0, 4764, 393, 1, 0, 0, 0, 4765, 4766, 7, 71, 0, 0, 4766, 395, 1, 0, 0, 0, 4767, 4768, 7, 72, 0, 0, 4768, 397, 1, 0, 0, 0, 4769, 4770, 5, 543, 0, 0, 4770, 4771, 5, 857, 0, 0, 4771, 4783, 7, 68, 0, 0, 4772, 4773, 5, 574, 0, 0, 4773, 4774, 5, 857, 0, 0, 4774, 4783, 7, 73, 0, 0, 4775, 4776, 5, 310, 0, 0, 4776, 4780, 5, 857, 0, 0, 4777, 4781, 5, 507, 0, 0, 4778, 4781, 5, 450, 0, 0, 4779, 4781, 3, 412, 206, 0, 4780, 4777, 1, 0, 0, 0, 4780, 4778, 1, 0, 0, 0, 4780, 4779, 1, 0, 0, 0, 4781, 4783, 1, 0, 0, 0, 4782, 4769, 1, 0, 0, 0, 4782, 4772, 1, 0, 0, 0, 4782, 4775, 1, 0, 0, 0, 4783, 399, 1, 0, 0, 0, 4784, 4785, 5, 65, 0, 0, 4785, 4786, 5, 328, 0, 0, 4786, 4787, 5, 882, 0, 0, 4787, 401, 1, 0, 0, 0, 4788, 4789, 5, 565, 0, 0, 4789, 4790, 5, 857, 0, 0, 4790, 4791, 5, 866, 0, 0, 4791, 4796, 3, 638, 319, 0, 4792, 4793, 5, 868, 0, 0, 4793, 4795, 3, 638, 319, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4798, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4799, 1, 0, 0, 0, 4798, 4796, 1, 0, 0, 0, 4799, 4800, 5, 867, 0, 0, 4800, 4852, 1, 0, 0, 0, 4801, 4802, 5, 567, 0, 0, 4802, 4803, 5, 857, 0, 0, 4803, 4804, 5, 866, 0, 0, 4804, 4809, 3, 638, 319, 0, 4805, 4806, 5, 868, 0, 0, 4806, 4808, 3, 638, 319, 0, 4807, 4805, 1, 0, 0, 0, 4808, 4811, 1, 0, 0, 0, 4809, 4807, 1, 0, 0, 0, 4809, 4810, 1, 0, 0, 0, 4810, 4812, 1, 0, 0, 0, 4811, 4809, 1, 0, 0, 0, 4812, 4813, 5, 867, 0, 0, 4813, 4852, 1, 0, 0, 0, 4814, 4815, 5, 566, 0, 0, 4815, 4816, 5, 857, 0, 0, 4816, 4817, 5, 866, 0, 0, 4817, 4818, 3, 660, 330, 0, 4818, 4819, 5, 867, 0, 0, 4819, 4852, 1, 0, 0, 0, 4820, 4821, 5, 568, 0, 0, 4821, 4822, 5, 857, 0, 0, 4822, 4823, 5, 866, 0, 0, 4823, 4824, 3, 660, 330, 0, 4824, 4825, 5, 867, 0, 0, 4825, 4852, 1, 0, 0, 0, 4826, 4827, 5, 570, 0, 0, 4827, 4828, 5, 857, 0, 0, 4828, 4829, 5, 866, 0, 0, 4829, 4830, 3, 760, 380, 0, 4830, 4831, 5, 867, 0, 0, 4831, 4852, 1, 0, 0, 0, 4832, 4833, 5, 571, 0, 0, 4833, 4834, 5, 857, 0, 0, 4834, 4835, 5, 866, 0, 0, 4835, 4836, 3, 760, 380, 0, 4836, 4837, 5, 867, 0, 0, 4837, 4852, 1, 0, 0, 0, 4838, 4839, 5, 569, 0, 0, 4839, 4840, 5, 857, 0, 0, 4840, 4841, 5, 866, 0, 0, 4841, 4846, 3, 404, 202, 0, 4842, 4843, 5, 868, 0, 0, 4843, 4845, 3, 404, 202, 0, 4844, 4842, 1, 0, 0, 0, 4845, 4848, 1, 0, 0, 0, 4846, 4844, 1, 0, 0, 0, 4846, 4847, 1, 0, 0, 0, 4847, 4849, 1, 0, 0, 0, 4848, 4846, 1, 0, 0, 0, 4849, 4850, 5, 867, 0, 0, 4850, 4852, 1, 0, 0, 0, 4851, 4788, 1, 0, 0, 0, 4851, 4801, 1, 0, 0, 0, 4851, 4814, 1, 0, 0, 0, 4851, 4820, 1, 0, 0, 0, 4851, 4826, 1, 0, 0, 0, 4851, 4832, 1, 0, 0, 0, 4851, 4838, 1, 0, 0, 0, 4852, 403, 1, 0, 0, 0, 4853, 4854, 5, 866, 0, 0, 4854, 4855, 3, 662, 331, 0, 4855, 4856, 5, 868, 0, 0, 4856, 4857, 3, 662, 331, 0, 4857, 4858, 5, 867, 0, 0, 4858, 405, 1, 0, 0, 0, 4859, 4860, 7, 74, 0, 0, 4860, 407, 1, 0, 0, 0, 4861, 4862, 7, 75, 0, 0, 4862, 4863, 5, 857, 0, 0, 4863, 4887, 3, 412, 206, 0, 4864, 4865, 5, 460, 0, 0, 4865, 4866, 5, 857, 0, 0, 4866, 4867, 5, 882, 0, 0, 4867, 4868, 5, 868, 0, 0, 4868, 4869, 5, 461, 0, 0, 4869, 4870, 5, 857, 0, 0, 4870, 4887, 3, 722, 361, 0, 4871, 4872, 5, 611, 0, 0, 4872, 4873, 5, 857, 0, 0, 4873, 4874, 5, 882, 0, 0, 4874, 4875, 5, 868, 0, 0, 4875, 4876, 5, 612, 0, 0, 4876, 4877, 5, 857, 0, 0, 4877, 4887, 3, 722, 361, 0, 4878, 4879, 5, 557, 0, 0, 4879, 4880, 5, 857, 0, 0, 4880, 4881, 5, 882, 0, 0, 4881, 4882, 5, 868, 0, 0, 4882, 4883, 5, 558, 0, 0, 4883, 4884, 5, 857, 0, 0, 4884, 4887, 3, 722, 361, 0, 4885, 4887, 5, 634, 0, 0, 4886, 4861, 1, 0, 0, 0, 4886, 4864, 1, 0, 0, 0, 4886, 4871, 1, 0, 0, 0, 4886, 4878, 1, 0, 0, 0, 4886, 4885, 1, 0, 0, 0, 4887, 409, 1, 0, 0, 0, 4888, 4889, 5, 678, 0, 0, 4889, 4890, 5, 857, 0, 0, 4890, 4901, 5, 882, 0, 0, 4891, 4892, 5, 529, 0, 0, 4892, 4893, 5, 857, 0, 0, 4893, 4901, 5, 882, 0, 0, 4894, 4895, 5, 363, 0, 0, 4895, 4896, 5, 857, 0, 0, 4896, 4901, 5, 882, 0, 0, 4897, 4898, 5, 535, 0, 0, 4898, 4899, 5, 857, 0, 0, 4899, 4901, 5, 882, 0, 0, 4900, 4888, 1, 0, 0, 0, 4900, 4891, 1, 0, 0, 0, 4900, 4894, 1, 0, 0, 0, 4900, 4897, 1, 0, 0, 0, 4901, 411, 1, 0, 0, 0, 4902, 4907, 3, 706, 353, 0, 4903, 4904, 5, 868, 0, 0, 4904, 4906, 3, 706, 353, 0, 4905, 4903, 1, 0, 0, 0, 4906, 4909, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4912, 1, 0, 0, 0, 4909, 4907, 1, 0, 0, 0, 4910, 4912, 5, 882, 0, 0, 4911, 4902, 1, 0, 0, 0, 4911, 4910, 1, 0, 0, 0, 4912, 413, 1, 0, 0, 0, 4913, 4914, 5, 694, 0, 0, 4914, 4915, 7, 76, 0, 0, 4915, 4917, 3, 708, 354, 0, 4916, 4918, 7, 77, 0, 0, 4917, 4916, 1, 0, 0, 0, 4917, 4918, 1, 0, 0, 0, 4918, 415, 1, 0, 0, 0, 4919, 4920, 5, 694, 0, 0, 4920, 4921, 5, 378, 0, 0, 4921, 4927, 3, 708, 354, 0, 4922, 4925, 5, 654, 0, 0, 4923, 4924, 5, 65, 0, 0, 4924, 4926, 5, 489, 0, 0, 4925, 4923, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 4928, 1, 0, 0, 0, 4927, 4922, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 417, 1, 0, 0, 0, 4929, 4930, 5, 694, 0, 0, 4930, 4931, 5, 540, 0, 0, 4931, 4932, 3, 708, 354, 0, 4932, 419, 1, 0, 0, 0, 4933, 4934, 5, 694, 0, 0, 4934, 4935, 5, 341, 0, 0, 4935, 4938, 3, 708, 354, 0, 4936, 4937, 5, 513, 0, 0, 4937, 4939, 5, 533, 0, 0, 4938, 4936, 1, 0, 0, 0, 4938, 4939, 1, 0, 0, 0, 4939, 421, 1, 0, 0, 0, 4940, 4941, 5, 694, 0, 0, 4941, 4942, 5, 583, 0, 0, 4942, 4943, 3, 708, 354, 0, 4943, 423, 1, 0, 0, 0, 4944, 4945, 5, 694, 0, 0, 4945, 4948, 5, 551, 0, 0, 4946, 4947, 5, 33, 0, 0, 4947, 4949, 3, 708, 354, 0, 4948, 4946, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 425, 1, 0, 0, 0, 4950, 4951, 5, 540, 0, 0, 4951, 4952, 3, 716, 358, 0, 4952, 4955, 5, 68, 0, 0, 4953, 4956, 5, 882, 0, 0, 4954, 4956, 5, 892, 0, 0, 4955, 4953, 1, 0, 0, 0, 4955, 4954, 1, 0, 0, 0, 4956, 427, 1, 0, 0, 0, 4957, 4958, 5, 717, 0, 0, 4958, 4961, 3, 716, 358, 0, 4959, 4960, 5, 188, 0, 0, 4960, 4962, 3, 762, 381, 0, 4961, 4959, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 429, 1, 0, 0, 0, 4963, 4964, 7, 78, 0, 0, 4964, 4965, 5, 540, 0, 0, 4965, 4966, 3, 716, 358, 0, 4966, 431, 1, 0, 0, 0, 4967, 4970, 3, 434, 217, 0, 4968, 4970, 3, 4, 2, 0, 4969, 4967, 1, 0, 0, 0, 4969, 4968, 1, 0, 0, 0, 4970, 433, 1, 0, 0, 0, 4971, 4972, 3, 716, 358, 0, 4972, 4973, 5, 878, 0, 0, 4973, 4975, 1, 0, 0, 0, 4974, 4971, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 4976, 1, 0, 0, 0, 4976, 4982, 5, 317, 0, 0, 4977, 4978, 3, 454, 227, 0, 4978, 4979, 5, 869, 0, 0, 4979, 4981, 1, 0, 0, 0, 4980, 4977, 1, 0, 0, 0, 4981, 4984, 1, 0, 0, 0, 4982, 4980, 1, 0, 0, 0, 4982, 4983, 1, 0, 0, 0, 4983, 4990, 1, 0, 0, 0, 4984, 4982, 1, 0, 0, 0, 4985, 4986, 3, 456, 228, 0, 4986, 4987, 5, 869, 0, 0, 4987, 4989, 1, 0, 0, 0, 4988, 4985, 1, 0, 0, 0, 4989, 4992, 1, 0, 0, 0, 4990, 4988, 1, 0, 0, 0, 4990, 4991, 1, 0, 0, 0, 4991, 4998, 1, 0, 0, 0, 4992, 4990, 1, 0, 0, 0, 4993, 4994, 3, 458, 229, 0, 4994, 4995, 5, 869, 0, 0, 4995, 4997, 1, 0, 0, 0, 4996, 4993, 1, 0, 0, 0, 4997, 5000, 1, 0, 0, 0, 4998, 4996, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5006, 1, 0, 0, 0, 5000, 4998, 1, 0, 0, 0, 5001, 5002, 3, 460, 230, 0, 5002, 5003, 5, 869, 0, 0, 5003, 5005, 1, 0, 0, 0, 5004, 5001, 1, 0, 0, 0, 5005, 5008, 1, 0, 0, 0, 5006, 5004, 1, 0, 0, 0, 5006, 5007, 1, 0, 0, 0, 5007, 5012, 1, 0, 0, 0, 5008, 5006, 1, 0, 0, 0, 5009, 5011, 3, 464, 232, 0, 5010, 5009, 1, 0, 0, 0, 5011, 5014, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5015, 1, 0, 0, 0, 5014, 5012, 1, 0, 0, 0, 5015, 5017, 5, 378, 0, 0, 5016, 5018, 3, 716, 358, 0, 5017, 5016, 1, 0, 0, 0, 5017, 5018, 1, 0, 0, 0, 5018, 435, 1, 0, 0, 0, 5019, 5022, 5, 23, 0, 0, 5020, 5023, 3, 716, 358, 0, 5021, 5023, 3, 814, 407, 0, 5022, 5020, 1, 0, 0, 0, 5022, 5021, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5025, 1, 0, 0, 0, 5024, 5026, 3, 466, 233, 0, 5025, 5024, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 5025, 1, 0, 0, 0, 5027, 5028, 1, 0, 0, 0, 5028, 5035, 1, 0, 0, 0, 5029, 5031, 5, 53, 0, 0, 5030, 5032, 3, 464, 232, 0, 5031, 5030, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5031, 1, 0, 0, 0, 5033, 5034, 1, 0, 0, 0, 5034, 5036, 1, 0, 0, 0, 5035, 5029, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5038, 5, 378, 0, 0, 5038, 5039, 5, 23, 0, 0, 5039, 437, 1, 0, 0, 0, 5040, 5041, 5, 78, 0, 0, 5041, 5042, 3, 814, 407, 0, 5042, 5044, 5, 175, 0, 0, 5043, 5045, 3, 464, 232, 0, 5044, 5043, 1, 0, 0, 0, 5045, 5046, 1, 0, 0, 0, 5046, 5044, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5051, 1, 0, 0, 0, 5048, 5050, 3, 468, 234, 0, 5049, 5048, 1, 0, 0, 0, 5050, 5053, 1, 0, 0, 0, 5051, 5049, 1, 0, 0, 0, 5051, 5052, 1, 0, 0, 0, 5052, 5060, 1, 0, 0, 0, 5053, 5051, 1, 0, 0, 0, 5054, 5056, 5, 53, 0, 0, 5055, 5057, 3, 464, 232, 0, 5056, 5055, 1, 0, 0, 0, 5057, 5058, 1, 0, 0, 0, 5058, 5056, 1, 0, 0, 0, 5058, 5059, 1, 0, 0, 0, 5059, 5061, 1, 0, 0, 0, 5060, 5054, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5063, 5, 378, 0, 0, 5063, 5064, 5, 78, 0, 0, 5064, 439, 1, 0, 0, 0, 5065, 5066, 5, 90, 0, 0, 5066, 5067, 3, 716, 358, 0, 5067, 441, 1, 0, 0, 0, 5068, 5069, 5, 97, 0, 0, 5069, 5070, 3, 716, 358, 0, 5070, 443, 1, 0, 0, 0, 5071, 5072, 3, 716, 358, 0, 5072, 5073, 5, 878, 0, 0, 5073, 5075, 1, 0, 0, 0, 5074, 5071, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5078, 5, 106, 0, 0, 5077, 5079, 3, 464, 232, 0, 5078, 5077, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5078, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 5, 378, 0, 0, 5083, 5085, 5, 106, 0, 0, 5084, 5086, 3, 716, 358, 0, 5085, 5084, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 445, 1, 0, 0, 0, 5087, 5088, 3, 716, 358, 0, 5088, 5089, 5, 878, 0, 0, 5089, 5091, 1, 0, 0, 0, 5090, 5087, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5094, 5, 142, 0, 0, 5093, 5095, 3, 464, 232, 0, 5094, 5093, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5094, 1, 0, 0, 0, 5096, 5097, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 5099, 5, 676, 0, 0, 5099, 5100, 3, 814, 407, 0, 5100, 5101, 5, 378, 0, 0, 5101, 5103, 5, 142, 0, 0, 5102, 5104, 3, 716, 358, 0, 5103, 5102, 1, 0, 0, 0, 5103, 5104, 1, 0, 0, 0, 5104, 447, 1, 0, 0, 0, 5105, 5106, 5, 148, 0, 0, 5106, 5107, 3, 814, 407, 0, 5107, 449, 1, 0, 0, 0, 5108, 5109, 3, 716, 358, 0, 5109, 5110, 5, 878, 0, 0, 5110, 5112, 1, 0, 0, 0, 5111, 5108, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 5114, 5, 193, 0, 0, 5114, 5115, 3, 814, 407, 0, 5115, 5117, 5, 371, 0, 0, 5116, 5118, 3, 464, 232, 0, 5117, 5116, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5117, 1, 0, 0, 0, 5119, 5120, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5122, 5, 378, 0, 0, 5122, 5124, 5, 193, 0, 0, 5123, 5125, 3, 716, 358, 0, 5124, 5123, 1, 0, 0, 0, 5124, 5125, 1, 0, 0, 0, 5125, 451, 1, 0, 0, 0, 5126, 5127, 5, 334, 0, 0, 5127, 5142, 3, 716, 358, 0, 5128, 5133, 5, 64, 0, 0, 5129, 5131, 5, 501, 0, 0, 5130, 5129, 1, 0, 0, 0, 5130, 5131, 1, 0, 0, 0, 5131, 5132, 1, 0, 0, 0, 5132, 5134, 5, 68, 0, 0, 5133, 5130, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5136, 3, 716, 358, 0, 5136, 5137, 5, 88, 0, 0, 5137, 5138, 3, 714, 357, 0, 5138, 5142, 1, 0, 0, 0, 5139, 5140, 5, 516, 0, 0, 5140, 5142, 3, 716, 358, 0, 5141, 5126, 1, 0, 0, 0, 5141, 5128, 1, 0, 0, 0, 5141, 5139, 1, 0, 0, 0, 5142, 453, 1, 0, 0, 0, 5143, 5144, 5, 41, 0, 0, 5144, 5145, 3, 714, 357, 0, 5145, 5148, 3, 736, 368, 0, 5146, 5147, 5, 42, 0, 0, 5147, 5149, 3, 814, 407, 0, 5148, 5146, 1, 0, 0, 0, 5148, 5149, 1, 0, 0, 0, 5149, 455, 1, 0, 0, 0, 5150, 5151, 5, 41, 0, 0, 5151, 5152, 3, 716, 358, 0, 5152, 5153, 5, 30, 0, 0, 5153, 5160, 5, 65, 0, 0, 5154, 5161, 3, 722, 361, 0, 5155, 5157, 5, 164, 0, 0, 5156, 5158, 5, 682, 0, 0, 5157, 5156, 1, 0, 0, 0, 5157, 5158, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5161, 5, 882, 0, 0, 5160, 5154, 1, 0, 0, 0, 5160, 5155, 1, 0, 0, 0, 5161, 457, 1, 0, 0, 0, 5162, 5163, 5, 41, 0, 0, 5163, 5164, 3, 716, 358, 0, 5164, 5165, 5, 38, 0, 0, 5165, 5166, 5, 65, 0, 0, 5166, 5167, 3, 210, 105, 0, 5167, 459, 1, 0, 0, 0, 5168, 5169, 5, 41, 0, 0, 5169, 5170, 7, 79, 0, 0, 5170, 5171, 5, 417, 0, 0, 5171, 5172, 5, 65, 0, 0, 5172, 5177, 3, 462, 231, 0, 5173, 5174, 5, 868, 0, 0, 5174, 5176, 3, 462, 231, 0, 5175, 5173, 1, 0, 0, 0, 5176, 5179, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 5180, 1, 0, 0, 0, 5179, 5177, 1, 0, 0, 0, 5180, 5181, 3, 432, 216, 0, 5181, 461, 1, 0, 0, 0, 5182, 5194, 3, 722, 361, 0, 5183, 5185, 5, 164, 0, 0, 5184, 5186, 5, 682, 0, 0, 5185, 5184, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5187, 1, 0, 0, 0, 5187, 5194, 5, 882, 0, 0, 5188, 5194, 3, 716, 358, 0, 5189, 5194, 5, 165, 0, 0, 5190, 5191, 5, 114, 0, 0, 5191, 5194, 5, 407, 0, 0, 5192, 5194, 5, 163, 0, 0, 5193, 5182, 1, 0, 0, 0, 5193, 5183, 1, 0, 0, 0, 5193, 5188, 1, 0, 0, 0, 5193, 5189, 1, 0, 0, 0, 5193, 5190, 1, 0, 0, 0, 5193, 5192, 1, 0, 0, 0, 5194, 463, 1, 0, 0, 0, 5195, 5198, 3, 18, 9, 0, 5196, 5198, 3, 4, 2, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5196, 1, 0, 0, 0, 5198, 5199, 1, 0, 0, 0, 5199, 5200, 5, 869, 0, 0, 5200, 465, 1, 0, 0, 0, 5201, 5204, 5, 191, 0, 0, 5202, 5205, 3, 734, 367, 0, 5203, 5205, 3, 814, 407, 0, 5204, 5202, 1, 0, 0, 0, 5204, 5203, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5208, 5, 175, 0, 0, 5207, 5209, 3, 464, 232, 0, 5208, 5207, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5208, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 467, 1, 0, 0, 0, 5212, 5213, 5, 54, 0, 0, 5213, 5214, 3, 814, 407, 0, 5214, 5216, 5, 175, 0, 0, 5215, 5217, 3, 464, 232, 0, 5216, 5215, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5216, 1, 0, 0, 0, 5218, 5219, 1, 0, 0, 0, 5219, 469, 1, 0, 0, 0, 5220, 5221, 5, 8, 0, 0, 5221, 5223, 5, 678, 0, 0, 5222, 5224, 3, 768, 384, 0, 5223, 5222, 1, 0, 0, 0, 5223, 5224, 1, 0, 0, 0, 5224, 5281, 1, 0, 0, 0, 5225, 5230, 3, 502, 251, 0, 5226, 5227, 5, 868, 0, 0, 5227, 5229, 3, 502, 251, 0, 5228, 5226, 1, 0, 0, 0, 5229, 5232, 1, 0, 0, 0, 5230, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 0, 5231, 5282, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5233, 5238, 3, 504, 252, 0, 5234, 5235, 5, 868, 0, 0, 5235, 5237, 3, 504, 252, 0, 5236, 5234, 1, 0, 0, 0, 5237, 5240, 1, 0, 0, 0, 5238, 5236, 1, 0, 0, 0, 5238, 5239, 1, 0, 0, 0, 5239, 5255, 1, 0, 0, 0, 5240, 5238, 1, 0, 0, 0, 5241, 5253, 5, 144, 0, 0, 5242, 5254, 5, 505, 0, 0, 5243, 5250, 3, 516, 258, 0, 5244, 5246, 5, 11, 0, 0, 5245, 5244, 1, 0, 0, 0, 5245, 5246, 1, 0, 0, 0, 5246, 5247, 1, 0, 0, 0, 5247, 5249, 3, 516, 258, 0, 5248, 5245, 1, 0, 0, 0, 5249, 5252, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5254, 1, 0, 0, 0, 5252, 5250, 1, 0, 0, 0, 5253, 5242, 1, 0, 0, 0, 5253, 5243, 1, 0, 0, 0, 5254, 5256, 1, 0, 0, 0, 5255, 5241, 1, 0, 0, 0, 5255, 5256, 1, 0, 0, 0, 5256, 5263, 1, 0, 0, 0, 5257, 5259, 5, 194, 0, 0, 5258, 5260, 3, 518, 259, 0, 5259, 5258, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 5259, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5264, 1, 0, 0, 0, 5263, 5257, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 5269, 1, 0, 0, 0, 5265, 5268, 3, 520, 260, 0, 5266, 5268, 3, 522, 261, 0, 5267, 5265, 1, 0, 0, 0, 5267, 5266, 1, 0, 0, 0, 5268, 5271, 1, 0, 0, 0, 5269, 5267, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5274, 1, 0, 0, 0, 5271, 5269, 1, 0, 0, 0, 5272, 5273, 7, 80, 0, 0, 5273, 5275, 5, 882, 0, 0, 5274, 5272, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5282, 1, 0, 0, 0, 5276, 5277, 3, 666, 333, 0, 5277, 5278, 5, 42, 0, 0, 5278, 5279, 5, 582, 0, 0, 5279, 5280, 3, 478, 239, 0, 5280, 5282, 1, 0, 0, 0, 5281, 5225, 1, 0, 0, 0, 5281, 5233, 1, 0, 0, 0, 5281, 5276, 1, 0, 0, 0, 5282, 471, 1, 0, 0, 0, 5283, 5284, 5, 34, 0, 0, 5284, 5286, 5, 678, 0, 0, 5285, 5287, 3, 770, 385, 0, 5286, 5285, 1, 0, 0, 0, 5286, 5287, 1, 0, 0, 0, 5287, 5288, 1, 0, 0, 0, 5288, 5290, 3, 694, 347, 0, 5289, 5291, 3, 506, 253, 0, 5290, 5289, 1, 0, 0, 0, 5290, 5291, 1, 0, 0, 0, 5291, 5299, 1, 0, 0, 0, 5292, 5293, 5, 868, 0, 0, 5293, 5295, 3, 694, 347, 0, 5294, 5296, 3, 506, 253, 0, 5295, 5294, 1, 0, 0, 0, 5295, 5296, 1, 0, 0, 0, 5296, 5298, 1, 0, 0, 0, 5297, 5292, 1, 0, 0, 0, 5298, 5301, 1, 0, 0, 0, 5299, 5297, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5300, 5305, 1, 0, 0, 0, 5301, 5299, 1, 0, 0, 0, 5302, 5303, 5, 42, 0, 0, 5303, 5304, 5, 582, 0, 0, 5304, 5306, 3, 478, 239, 0, 5305, 5302, 1, 0, 0, 0, 5305, 5306, 1, 0, 0, 0, 5306, 5321, 1, 0, 0, 0, 5307, 5319, 5, 144, 0, 0, 5308, 5320, 5, 505, 0, 0, 5309, 5316, 3, 516, 258, 0, 5310, 5312, 5, 11, 0, 0, 5311, 5310, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5315, 3, 516, 258, 0, 5314, 5311, 1, 0, 0, 0, 5315, 5318, 1, 0, 0, 0, 5316, 5314, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5320, 1, 0, 0, 0, 5318, 5316, 1, 0, 0, 0, 5319, 5308, 1, 0, 0, 0, 5319, 5309, 1, 0, 0, 0, 5320, 5322, 1, 0, 0, 0, 5321, 5307, 1, 0, 0, 0, 5321, 5322, 1, 0, 0, 0, 5322, 5329, 1, 0, 0, 0, 5323, 5325, 5, 194, 0, 0, 5324, 5326, 3, 518, 259, 0, 5325, 5324, 1, 0, 0, 0, 5326, 5327, 1, 0, 0, 0, 5327, 5325, 1, 0, 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 5330, 1, 0, 0, 0, 5329, 5323, 1, 0, 0, 0, 5329, 5330, 1, 0, 0, 0, 5330, 5335, 1, 0, 0, 0, 5331, 5334, 3, 520, 260, 0, 5332, 5334, 3, 522, 261, 0, 5333, 5331, 1, 0, 0, 0, 5333, 5332, 1, 0, 0, 0, 5334, 5337, 1, 0, 0, 0, 5335, 5333, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 5340, 1, 0, 0, 0, 5337, 5335, 1, 0, 0, 0, 5338, 5339, 7, 80, 0, 0, 5339, 5341, 5, 882, 0, 0, 5340, 5338, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 473, 1, 0, 0, 0, 5342, 5343, 5, 51, 0, 0, 5343, 5345, 5, 678, 0, 0, 5344, 5346, 3, 768, 384, 0, 5345, 5344, 1, 0, 0, 0, 5345, 5346, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5352, 3, 694, 347, 0, 5348, 5349, 5, 868, 0, 0, 5349, 5351, 3, 694, 347, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5354, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 475, 1, 0, 0, 0, 5354, 5352, 1, 0, 0, 0, 5355, 5356, 5, 73, 0, 0, 5356, 5361, 3, 530, 265, 0, 5357, 5358, 5, 868, 0, 0, 5358, 5360, 3, 530, 265, 0, 5359, 5357, 1, 0, 0, 0, 5360, 5363, 1, 0, 0, 0, 5361, 5359, 1, 0, 0, 0, 5361, 5362, 1, 0, 0, 0, 5362, 5364, 1, 0, 0, 0, 5363, 5361, 1, 0, 0, 0, 5364, 5366, 5, 119, 0, 0, 5365, 5367, 3, 498, 249, 0, 5366, 5365, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 5368, 1, 0, 0, 0, 5368, 5369, 3, 534, 267, 0, 5369, 5379, 5, 176, 0, 0, 5370, 5375, 3, 510, 255, 0, 5371, 5372, 5, 868, 0, 0, 5372, 5374, 3, 510, 255, 0, 5373, 5371, 1, 0, 0, 0, 5374, 5377, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5380, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5378, 5380, 3, 664, 332, 0, 5379, 5370, 1, 0, 0, 0, 5379, 5378, 1, 0, 0, 0, 5380, 5395, 1, 0, 0, 0, 5381, 5393, 5, 144, 0, 0, 5382, 5394, 5, 505, 0, 0, 5383, 5390, 3, 516, 258, 0, 5384, 5386, 5, 11, 0, 0, 5385, 5384, 1, 0, 0, 0, 5385, 5386, 1, 0, 0, 0, 5386, 5387, 1, 0, 0, 0, 5387, 5389, 3, 516, 258, 0, 5388, 5385, 1, 0, 0, 0, 5389, 5392, 1, 0, 0, 0, 5390, 5388, 1, 0, 0, 0, 5390, 5391, 1, 0, 0, 0, 5391, 5394, 1, 0, 0, 0, 5392, 5390, 1, 0, 0, 0, 5393, 5382, 1, 0, 0, 0, 5393, 5383, 1, 0, 0, 0, 5394, 5396, 1, 0, 0, 0, 5395, 5381, 1, 0, 0, 0, 5395, 5396, 1, 0, 0, 0, 5396, 5406, 1, 0, 0, 0, 5397, 5403, 5, 194, 0, 0, 5398, 5399, 5, 73, 0, 0, 5399, 5402, 5, 121, 0, 0, 5400, 5402, 3, 518, 259, 0, 5401, 5398, 1, 0, 0, 0, 5401, 5400, 1, 0, 0, 0, 5402, 5405, 1, 0, 0, 0, 5403, 5401, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5407, 1, 0, 0, 0, 5405, 5403, 1, 0, 0, 0, 5406, 5397, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5415, 1, 0, 0, 0, 5408, 5409, 5, 13, 0, 0, 5409, 5413, 3, 694, 347, 0, 5410, 5411, 5, 194, 0, 0, 5411, 5412, 5, 582, 0, 0, 5412, 5414, 3, 478, 239, 0, 5413, 5410, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5416, 1, 0, 0, 0, 5415, 5408, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5445, 1, 0, 0, 0, 5417, 5420, 5, 73, 0, 0, 5418, 5419, 5, 547, 0, 0, 5419, 5421, 5, 119, 0, 0, 5420, 5418, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5427, 3, 666, 333, 0, 5423, 5424, 5, 868, 0, 0, 5424, 5426, 3, 666, 333, 0, 5425, 5423, 1, 0, 0, 0, 5426, 5429, 1, 0, 0, 0, 5427, 5425, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5430, 1, 0, 0, 0, 5429, 5427, 1, 0, 0, 0, 5430, 5431, 5, 176, 0, 0, 5431, 5436, 3, 666, 333, 0, 5432, 5433, 5, 868, 0, 0, 5433, 5435, 3, 666, 333, 0, 5434, 5432, 1, 0, 0, 0, 5435, 5438, 1, 0, 0, 0, 5436, 5434, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 5442, 1, 0, 0, 0, 5438, 5436, 1, 0, 0, 0, 5439, 5440, 5, 194, 0, 0, 5440, 5441, 5, 704, 0, 0, 5441, 5443, 5, 121, 0, 0, 5442, 5439, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5445, 1, 0, 0, 0, 5444, 5355, 1, 0, 0, 0, 5444, 5417, 1, 0, 0, 0, 5445, 477, 1, 0, 0, 0, 5446, 5455, 5, 42, 0, 0, 5447, 5455, 5, 505, 0, 0, 5448, 5451, 5, 7, 0, 0, 5449, 5450, 5, 59, 0, 0, 5450, 5452, 3, 664, 332, 0, 5451, 5449, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 5455, 1, 0, 0, 0, 5453, 5455, 3, 664, 332, 0, 5454, 5446, 1, 0, 0, 0, 5454, 5447, 1, 0, 0, 0, 5454, 5448, 1, 0, 0, 0, 5454, 5453, 1, 0, 0, 0, 5455, 479, 1, 0, 0, 0, 5456, 5457, 5, 73, 0, 0, 5457, 5458, 5, 547, 0, 0, 5458, 5459, 5, 119, 0, 0, 5459, 5460, 3, 694, 347, 0, 5460, 5461, 5, 176, 0, 0, 5461, 5466, 3, 694, 347, 0, 5462, 5463, 5, 868, 0, 0, 5463, 5465, 3, 694, 347, 0, 5464, 5462, 1, 0, 0, 0, 5465, 5468, 1, 0, 0, 0, 5466, 5464, 1, 0, 0, 0, 5466, 5467, 1, 0, 0, 0, 5467, 5472, 1, 0, 0, 0, 5468, 5466, 1, 0, 0, 0, 5469, 5470, 5, 194, 0, 0, 5470, 5471, 5, 73, 0, 0, 5471, 5473, 5, 121, 0, 0, 5472, 5469, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 481, 1, 0, 0, 0, 5474, 5475, 5, 8, 0, 0, 5475, 5476, 5, 739, 0, 0, 5476, 5477, 5, 74, 0, 0, 5477, 5483, 3, 656, 328, 0, 5478, 5480, 5, 190, 0, 0, 5479, 5481, 5, 857, 0, 0, 5480, 5479, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5484, 3, 490, 245, 0, 5483, 5478, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 5490, 1, 0, 0, 0, 5485, 5487, 5, 837, 0, 0, 5486, 5488, 5, 857, 0, 0, 5487, 5486, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5489, 1, 0, 0, 0, 5489, 5491, 3, 722, 361, 0, 5490, 5485, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 5496, 1, 0, 0, 0, 5492, 5494, 7, 39, 0, 0, 5493, 5495, 5, 66, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5497, 1, 0, 0, 0, 5496, 5492, 1, 0, 0, 0, 5496, 5497, 1, 0, 0, 0, 5497, 483, 1, 0, 0, 0, 5498, 5499, 5, 34, 0, 0, 5499, 5500, 5, 739, 0, 0, 5500, 5501, 5, 74, 0, 0, 5501, 5502, 3, 654, 327, 0, 5502, 5503, 5, 839, 0, 0, 5503, 5504, 5, 857, 0, 0, 5504, 5510, 7, 81, 0, 0, 5505, 5507, 5, 190, 0, 0, 5506, 5508, 5, 857, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5511, 3, 490, 245, 0, 5510, 5505, 1, 0, 0, 0, 5510, 5511, 1, 0, 0, 0, 5511, 5517, 1, 0, 0, 0, 5512, 5514, 5, 837, 0, 0, 5513, 5515, 5, 857, 0, 0, 5514, 5513, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5518, 3, 722, 361, 0, 5517, 5512, 1, 0, 0, 0, 5517, 5518, 1, 0, 0, 0, 5518, 5520, 1, 0, 0, 0, 5519, 5521, 7, 39, 0, 0, 5520, 5519, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 485, 1, 0, 0, 0, 5522, 5523, 5, 51, 0, 0, 5523, 5524, 5, 739, 0, 0, 5524, 5525, 5, 74, 0, 0, 5525, 5527, 3, 656, 328, 0, 5526, 5528, 5, 66, 0, 0, 5527, 5526, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 487, 1, 0, 0, 0, 5529, 5530, 5, 155, 0, 0, 5530, 5531, 5, 739, 0, 0, 5531, 5532, 5, 74, 0, 0, 5532, 5542, 3, 656, 328, 0, 5533, 5534, 5, 65, 0, 0, 5534, 5539, 3, 722, 361, 0, 5535, 5536, 5, 868, 0, 0, 5536, 5538, 3, 722, 361, 0, 5537, 5535, 1, 0, 0, 0, 5538, 5541, 1, 0, 0, 0, 5539, 5537, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5543, 1, 0, 0, 0, 5541, 5539, 1, 0, 0, 0, 5542, 5533, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 489, 1, 0, 0, 0, 5544, 5550, 3, 722, 361, 0, 5545, 5546, 3, 722, 361, 0, 5546, 5547, 5, 854, 0, 0, 5547, 5548, 3, 722, 361, 0, 5548, 5550, 1, 0, 0, 0, 5549, 5544, 1, 0, 0, 0, 5549, 5545, 1, 0, 0, 0, 5550, 5555, 1, 0, 0, 0, 5551, 5552, 5, 868, 0, 0, 5552, 5554, 3, 490, 245, 0, 5553, 5551, 1, 0, 0, 0, 5554, 5557, 1, 0, 0, 0, 5555, 5553, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 491, 1, 0, 0, 0, 5557, 5555, 1, 0, 0, 0, 5558, 5559, 5, 141, 0, 0, 5559, 5560, 5, 678, 0, 0, 5560, 5565, 3, 536, 268, 0, 5561, 5562, 5, 868, 0, 0, 5562, 5564, 3, 536, 268, 0, 5563, 5561, 1, 0, 0, 0, 5564, 5567, 1, 0, 0, 0, 5565, 5563, 1, 0, 0, 0, 5565, 5566, 1, 0, 0, 0, 5566, 493, 1, 0, 0, 0, 5567, 5565, 1, 0, 0, 0, 5568, 5570, 5, 149, 0, 0, 5569, 5571, 3, 768, 384, 0, 5570, 5569, 1, 0, 0, 0, 5570, 5571, 1, 0, 0, 0, 5571, 5572, 1, 0, 0, 0, 5572, 5577, 3, 530, 265, 0, 5573, 5574, 5, 868, 0, 0, 5574, 5576, 3, 530, 265, 0, 5575, 5573, 1, 0, 0, 0, 5576, 5579, 1, 0, 0, 0, 5577, 5575, 1, 0, 0, 0, 5577, 5578, 1, 0, 0, 0, 5578, 5580, 1, 0, 0, 0, 5579, 5577, 1, 0, 0, 0, 5580, 5582, 5, 119, 0, 0, 5581, 5583, 3, 498, 249, 0, 5582, 5581, 1, 0, 0, 0, 5582, 5583, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 5585, 3, 534, 267, 0, 5585, 5586, 5, 68, 0, 0, 5586, 5588, 3, 664, 332, 0, 5587, 5589, 3, 496, 248, 0, 5588, 5587, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5621, 1, 0, 0, 0, 5590, 5592, 5, 149, 0, 0, 5591, 5593, 3, 768, 384, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5596, 5, 7, 0, 0, 5595, 5597, 5, 734, 0, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 1, 0, 0, 0, 5598, 5599, 5, 868, 0, 0, 5599, 5600, 5, 73, 0, 0, 5600, 5601, 5, 121, 0, 0, 5601, 5602, 5, 68, 0, 0, 5602, 5604, 3, 664, 332, 0, 5603, 5605, 3, 496, 248, 0, 5604, 5603, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5621, 1, 0, 0, 0, 5606, 5608, 5, 149, 0, 0, 5607, 5609, 3, 768, 384, 0, 5608, 5607, 1, 0, 0, 0, 5608, 5609, 1, 0, 0, 0, 5609, 5612, 1, 0, 0, 0, 5610, 5611, 5, 547, 0, 0, 5611, 5613, 5, 119, 0, 0, 5612, 5610, 1, 0, 0, 0, 5612, 5613, 1, 0, 0, 0, 5613, 5614, 1, 0, 0, 0, 5614, 5615, 3, 664, 332, 0, 5615, 5616, 5, 68, 0, 0, 5616, 5618, 3, 664, 332, 0, 5617, 5619, 3, 496, 248, 0, 5618, 5617, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5621, 1, 0, 0, 0, 5620, 5568, 1, 0, 0, 0, 5620, 5590, 1, 0, 0, 0, 5620, 5606, 1, 0, 0, 0, 5621, 495, 1, 0, 0, 0, 5622, 5623, 5, 79, 0, 0, 5623, 5624, 5, 674, 0, 0, 5624, 5625, 5, 678, 0, 0, 5625, 497, 1, 0, 0, 0, 5626, 5627, 7, 82, 0, 0, 5627, 499, 1, 0, 0, 0, 5628, 5629, 5, 155, 0, 0, 5629, 5632, 5, 529, 0, 0, 5630, 5631, 5, 65, 0, 0, 5631, 5633, 3, 694, 347, 0, 5632, 5630, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5637, 5, 857, 0, 0, 5635, 5638, 3, 808, 404, 0, 5636, 5638, 5, 882, 0, 0, 5637, 5635, 1, 0, 0, 0, 5637, 5636, 1, 0, 0, 0, 5638, 5661, 1, 0, 0, 0, 5639, 5640, 5, 155, 0, 0, 5640, 5643, 5, 529, 0, 0, 5641, 5642, 5, 65, 0, 0, 5642, 5644, 3, 694, 347, 0, 5643, 5641, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5649, 1, 0, 0, 0, 5645, 5646, 5, 176, 0, 0, 5646, 5650, 5, 829, 0, 0, 5647, 5648, 5, 857, 0, 0, 5648, 5650, 5, 882, 0, 0, 5649, 5645, 1, 0, 0, 0, 5649, 5647, 1, 0, 0, 0, 5650, 5653, 1, 0, 0, 0, 5651, 5652, 5, 143, 0, 0, 5652, 5654, 5, 882, 0, 0, 5653, 5651, 1, 0, 0, 0, 5653, 5654, 1, 0, 0, 0, 5654, 5658, 1, 0, 0, 0, 5655, 5656, 5, 147, 0, 0, 5656, 5657, 5, 36, 0, 0, 5657, 5659, 5, 529, 0, 0, 5658, 5655, 1, 0, 0, 0, 5658, 5659, 1, 0, 0, 0, 5659, 5661, 1, 0, 0, 0, 5660, 5628, 1, 0, 0, 0, 5660, 5639, 1, 0, 0, 0, 5661, 501, 1, 0, 0, 0, 5662, 5663, 3, 694, 347, 0, 5663, 5664, 3, 520, 260, 0, 5664, 503, 1, 0, 0, 0, 5665, 5691, 3, 694, 347, 0, 5666, 5667, 5, 423, 0, 0, 5667, 5668, 5, 20, 0, 0, 5668, 5669, 5, 882, 0, 0, 5669, 5692, 3, 512, 256, 0, 5670, 5671, 5, 423, 0, 0, 5671, 5672, 5, 20, 0, 0, 5672, 5673, 5, 829, 0, 0, 5673, 5674, 5, 529, 0, 0, 5674, 5692, 3, 512, 256, 0, 5675, 5676, 5, 423, 0, 0, 5676, 5677, 5, 194, 0, 0, 5677, 5692, 3, 514, 257, 0, 5678, 5679, 5, 369, 0, 0, 5679, 5680, 5, 511, 0, 0, 5680, 5692, 5, 529, 0, 0, 5681, 5682, 7, 83, 0, 0, 5682, 5684, 3, 528, 264, 0, 5683, 5685, 3, 524, 262, 0, 5684, 5683, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 5687, 1, 0, 0, 0, 5686, 5681, 1, 0, 0, 0, 5687, 5688, 1, 0, 0, 0, 5688, 5686, 1, 0, 0, 0, 5688, 5689, 1, 0, 0, 0, 5689, 5692, 1, 0, 0, 0, 5690, 5692, 3, 526, 263, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5670, 1, 0, 0, 0, 5691, 5675, 1, 0, 0, 0, 5691, 5678, 1, 0, 0, 0, 5691, 5686, 1, 0, 0, 0, 5691, 5690, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 505, 1, 0, 0, 0, 5693, 5694, 5, 423, 0, 0, 5694, 5700, 5, 20, 0, 0, 5695, 5701, 5, 882, 0, 0, 5696, 5697, 5, 829, 0, 0, 5697, 5701, 5, 529, 0, 0, 5698, 5699, 5, 529, 0, 0, 5699, 5701, 5, 882, 0, 0, 5700, 5695, 1, 0, 0, 0, 5700, 5696, 1, 0, 0, 0, 5700, 5698, 1, 0, 0, 0, 5701, 5704, 1, 0, 0, 0, 5702, 5703, 5, 11, 0, 0, 5703, 5705, 3, 506, 253, 0, 5704, 5702, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5730, 1, 0, 0, 0, 5706, 5707, 5, 423, 0, 0, 5707, 5708, 5, 194, 0, 0, 5708, 5717, 3, 716, 358, 0, 5709, 5713, 5, 20, 0, 0, 5710, 5714, 5, 882, 0, 0, 5711, 5712, 5, 829, 0, 0, 5712, 5714, 5, 529, 0, 0, 5713, 5710, 1, 0, 0, 0, 5713, 5711, 1, 0, 0, 0, 5714, 5718, 1, 0, 0, 0, 5715, 5716, 5, 13, 0, 0, 5716, 5718, 5, 882, 0, 0, 5717, 5709, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5717, 5718, 1, 0, 0, 0, 5718, 5721, 1, 0, 0, 0, 5719, 5720, 5, 11, 0, 0, 5720, 5722, 3, 506, 253, 0, 5721, 5719, 1, 0, 0, 0, 5721, 5722, 1, 0, 0, 0, 5722, 5730, 1, 0, 0, 0, 5723, 5724, 5, 423, 0, 0, 5724, 5725, 5, 194, 0, 0, 5725, 5727, 3, 716, 358, 0, 5726, 5728, 3, 508, 254, 0, 5727, 5726, 1, 0, 0, 0, 5727, 5728, 1, 0, 0, 0, 5728, 5730, 1, 0, 0, 0, 5729, 5693, 1, 0, 0, 0, 5729, 5706, 1, 0, 0, 0, 5729, 5723, 1, 0, 0, 0, 5730, 507, 1, 0, 0, 0, 5731, 5732, 5, 427, 0, 0, 5732, 5733, 5, 708, 0, 0, 5733, 5734, 5, 423, 0, 0, 5734, 5738, 5, 20, 0, 0, 5735, 5736, 5, 829, 0, 0, 5736, 5739, 5, 529, 0, 0, 5737, 5739, 5, 882, 0, 0, 5738, 5735, 1, 0, 0, 0, 5738, 5737, 1, 0, 0, 0, 5739, 5749, 1, 0, 0, 0, 5740, 5741, 5, 427, 0, 0, 5741, 5742, 5, 708, 0, 0, 5742, 5743, 5, 423, 0, 0, 5743, 5744, 5, 194, 0, 0, 5744, 5745, 3, 716, 358, 0, 5745, 5746, 5, 13, 0, 0, 5746, 5747, 5, 882, 0, 0, 5747, 5749, 1, 0, 0, 0, 5748, 5731, 1, 0, 0, 0, 5748, 5740, 1, 0, 0, 0, 5749, 509, 1, 0, 0, 0, 5750, 5751, 3, 694, 347, 0, 5751, 5752, 5, 423, 0, 0, 5752, 5753, 5, 20, 0, 0, 5753, 5754, 5, 529, 0, 0, 5754, 5755, 5, 882, 0, 0, 5755, 5776, 1, 0, 0, 0, 5756, 5757, 3, 694, 347, 0, 5757, 5758, 5, 423, 0, 0, 5758, 5759, 5, 20, 0, 0, 5759, 5760, 5, 829, 0, 0, 5760, 5761, 5, 529, 0, 0, 5761, 5762, 3, 512, 256, 0, 5762, 5776, 1, 0, 0, 0, 5763, 5764, 3, 694, 347, 0, 5764, 5765, 5, 423, 0, 0, 5765, 5766, 5, 20, 0, 0, 5766, 5767, 5, 882, 0, 0, 5767, 5768, 3, 512, 256, 0, 5768, 5776, 1, 0, 0, 0, 5769, 5770, 3, 694, 347, 0, 5770, 5771, 5, 423, 0, 0, 5771, 5772, 5, 194, 0, 0, 5772, 5773, 3, 514, 257, 0, 5773, 5776, 1, 0, 0, 0, 5774, 5776, 3, 694, 347, 0, 5775, 5750, 1, 0, 0, 0, 5775, 5756, 1, 0, 0, 0, 5775, 5763, 1, 0, 0, 0, 5775, 5769, 1, 0, 0, 0, 5775, 5774, 1, 0, 0, 0, 5776, 511, 1, 0, 0, 0, 5777, 5778, 5, 143, 0, 0, 5778, 5780, 5, 882, 0, 0, 5779, 5777, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5784, 1, 0, 0, 0, 5781, 5782, 5, 147, 0, 0, 5782, 5783, 5, 36, 0, 0, 5783, 5785, 5, 529, 0, 0, 5784, 5781, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 513, 1, 0, 0, 0, 5786, 5794, 3, 716, 358, 0, 5787, 5791, 7, 84, 0, 0, 5788, 5792, 5, 882, 0, 0, 5789, 5790, 5, 829, 0, 0, 5790, 5792, 5, 529, 0, 0, 5791, 5788, 1, 0, 0, 0, 5791, 5789, 1, 0, 0, 0, 5792, 5793, 1, 0, 0, 0, 5793, 5795, 3, 512, 256, 0, 5794, 5787, 1, 0, 0, 0, 5794, 5795, 1, 0, 0, 0, 5795, 5801, 1, 0, 0, 0, 5796, 5797, 3, 716, 358, 0, 5797, 5798, 5, 188, 0, 0, 5798, 5799, 3, 808, 404, 0, 5799, 5801, 1, 0, 0, 0, 5800, 5786, 1, 0, 0, 0, 5800, 5796, 1, 0, 0, 0, 5801, 515, 1, 0, 0, 0, 5802, 5811, 5, 169, 0, 0, 5803, 5811, 5, 693, 0, 0, 5804, 5805, 5, 331, 0, 0, 5805, 5811, 5, 882, 0, 0, 5806, 5807, 5, 441, 0, 0, 5807, 5811, 5, 882, 0, 0, 5808, 5809, 5, 651, 0, 0, 5809, 5811, 5, 882, 0, 0, 5810, 5802, 1, 0, 0, 0, 5810, 5803, 1, 0, 0, 0, 5810, 5804, 1, 0, 0, 0, 5810, 5806, 1, 0, 0, 0, 5810, 5808, 1, 0, 0, 0, 5811, 517, 1, 0, 0, 0, 5812, 5813, 5, 479, 0, 0, 5813, 5821, 3, 722, 361, 0, 5814, 5815, 5, 482, 0, 0, 5815, 5821, 3, 722, 361, 0, 5816, 5817, 5, 478, 0, 0, 5817, 5821, 3, 722, 361, 0, 5818, 5819, 5, 483, 0, 0, 5819, 5821, 3, 722, 361, 0, 5820, 5812, 1, 0, 0, 0, 5820, 5814, 1, 0, 0, 0, 5820, 5816, 1, 0, 0, 0, 5820, 5818, 1, 0, 0, 0, 5821, 519, 1, 0, 0, 0, 5822, 5823, 5, 529, 0, 0, 5823, 5830, 5, 390, 0, 0, 5824, 5831, 5, 42, 0, 0, 5825, 5831, 5, 500, 0, 0, 5826, 5827, 5, 87, 0, 0, 5827, 5828, 3, 722, 361, 0, 5828, 5829, 5, 698, 0, 0, 5829, 5831, 1, 0, 0, 0, 5830, 5824, 1, 0, 0, 0, 5830, 5825, 1, 0, 0, 0, 5830, 5826, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, 5831, 5861, 1, 0, 0, 0, 5832, 5833, 5, 529, 0, 0, 5833, 5836, 5, 420, 0, 0, 5834, 5837, 5, 42, 0, 0, 5835, 5837, 3, 722, 361, 0, 5836, 5834, 1, 0, 0, 0, 5836, 5835, 1, 0, 0, 0, 5837, 5861, 1, 0, 0, 0, 5838, 5839, 5, 529, 0, 0, 5839, 5840, 5, 581, 0, 0, 5840, 5845, 5, 87, 0, 0, 5841, 5846, 5, 42, 0, 0, 5842, 5843, 3, 722, 361, 0, 5843, 5844, 5, 698, 0, 0, 5844, 5846, 1, 0, 0, 0, 5845, 5841, 1, 0, 0, 0, 5845, 5842, 1, 0, 0, 0, 5846, 5861, 1, 0, 0, 0, 5847, 5848, 5, 529, 0, 0, 5848, 5849, 5, 144, 0, 0, 5849, 5851, 5, 36, 0, 0, 5850, 5852, 7, 85, 0, 0, 5851, 5850, 1, 0, 0, 0, 5851, 5852, 1, 0, 0, 0, 5852, 5861, 1, 0, 0, 0, 5853, 5854, 5, 395, 0, 0, 5854, 5861, 3, 722, 361, 0, 5855, 5858, 5, 530, 0, 0, 5856, 5859, 3, 722, 361, 0, 5857, 5859, 5, 669, 0, 0, 5858, 5856, 1, 0, 0, 0, 5858, 5857, 1, 0, 0, 0, 5859, 5861, 1, 0, 0, 0, 5860, 5822, 1, 0, 0, 0, 5860, 5832, 1, 0, 0, 0, 5860, 5838, 1, 0, 0, 0, 5860, 5847, 1, 0, 0, 0, 5860, 5853, 1, 0, 0, 0, 5860, 5855, 1, 0, 0, 0, 5861, 521, 1, 0, 0, 0, 5862, 5863, 5, 304, 0, 0, 5863, 5864, 7, 86, 0, 0, 5864, 523, 1, 0, 0, 0, 5865, 5868, 5, 423, 0, 0, 5866, 5867, 5, 194, 0, 0, 5867, 5869, 3, 716, 358, 0, 5868, 5866, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5878, 1, 0, 0, 0, 5870, 5874, 5, 20, 0, 0, 5871, 5875, 5, 882, 0, 0, 5872, 5873, 5, 829, 0, 0, 5873, 5875, 5, 529, 0, 0, 5874, 5871, 1, 0, 0, 0, 5874, 5872, 1, 0, 0, 0, 5875, 5879, 1, 0, 0, 0, 5876, 5877, 5, 13, 0, 0, 5877, 5879, 5, 882, 0, 0, 5878, 5870, 1, 0, 0, 0, 5878, 5876, 1, 0, 0, 0, 5879, 525, 1, 0, 0, 0, 5880, 5881, 3, 528, 264, 0, 5881, 5882, 5, 429, 0, 0, 5882, 5883, 5, 555, 0, 0, 5883, 5896, 1, 0, 0, 0, 5884, 5885, 3, 528, 264, 0, 5885, 5886, 5, 401, 0, 0, 5886, 5887, 5, 555, 0, 0, 5887, 5888, 5, 155, 0, 0, 5888, 5889, 5, 330, 0, 0, 5889, 5890, 5, 13, 0, 0, 5890, 5891, 5, 882, 0, 0, 5891, 5896, 1, 0, 0, 0, 5892, 5893, 3, 528, 264, 0, 5893, 5894, 5, 675, 0, 0, 5894, 5896, 1, 0, 0, 0, 5895, 5880, 1, 0, 0, 0, 5895, 5884, 1, 0, 0, 0, 5895, 5892, 1, 0, 0, 0, 5896, 527, 1, 0, 0, 0, 5897, 5898, 7, 87, 0, 0, 5898, 5899, 5, 394, 0, 0, 5899, 529, 1, 0, 0, 0, 5900, 5905, 3, 532, 266, 0, 5901, 5902, 5, 866, 0, 0, 5902, 5903, 3, 670, 335, 0, 5903, 5904, 5, 867, 0, 0, 5904, 5906, 1, 0, 0, 0, 5905, 5901, 1, 0, 0, 0, 5905, 5906, 1, 0, 0, 0, 5906, 531, 1, 0, 0, 0, 5907, 5909, 5, 7, 0, 0, 5908, 5910, 5, 734, 0, 0, 5909, 5908, 1, 0, 0, 0, 5909, 5910, 1, 0, 0, 0, 5910, 6001, 1, 0, 0, 0, 5911, 5913, 5, 8, 0, 0, 5912, 5914, 5, 743, 0, 0, 5913, 5912, 1, 0, 0, 0, 5913, 5914, 1, 0, 0, 0, 5914, 6001, 1, 0, 0, 0, 5915, 5923, 5, 34, 0, 0, 5916, 5917, 5, 660, 0, 0, 5917, 5924, 5, 752, 0, 0, 5918, 5924, 5, 743, 0, 0, 5919, 5924, 5, 684, 0, 0, 5920, 5924, 5, 678, 0, 0, 5921, 5924, 5, 658, 0, 0, 5922, 5924, 5, 582, 0, 0, 5923, 5916, 1, 0, 0, 0, 5923, 5918, 1, 0, 0, 0, 5923, 5919, 1, 0, 0, 0, 5923, 5920, 1, 0, 0, 0, 5923, 5921, 1, 0, 0, 0, 5923, 5922, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 6001, 1, 0, 0, 0, 5925, 6001, 5, 44, 0, 0, 5926, 5928, 5, 51, 0, 0, 5927, 5929, 5, 582, 0, 0, 5928, 5927, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 6001, 1, 0, 0, 0, 5930, 6001, 5, 385, 0, 0, 5931, 6001, 5, 717, 0, 0, 5932, 6001, 5, 718, 0, 0, 5933, 5934, 5, 73, 0, 0, 5934, 6001, 5, 121, 0, 0, 5935, 6001, 5, 82, 0, 0, 5936, 6001, 5, 86, 0, 0, 5937, 5938, 5, 104, 0, 0, 5938, 6001, 5, 752, 0, 0, 5939, 6001, 5, 735, 0, 0, 5940, 6001, 5, 547, 0, 0, 5941, 6001, 5, 138, 0, 0, 5942, 6001, 5, 736, 0, 0, 5943, 5944, 5, 572, 0, 0, 5944, 6001, 7, 88, 0, 0, 5945, 6001, 5, 154, 0, 0, 5946, 5947, 5, 157, 0, 0, 5947, 6001, 7, 89, 0, 0, 5948, 6001, 5, 749, 0, 0, 5949, 6001, 5, 750, 0, 0, 5950, 6001, 5, 178, 0, 0, 5951, 6001, 5, 185, 0, 0, 5952, 6001, 5, 186, 0, 0, 5953, 6001, 5, 705, 0, 0, 5954, 6001, 5, 706, 0, 0, 5955, 6001, 5, 707, 0, 0, 5956, 6001, 5, 709, 0, 0, 5957, 6001, 5, 710, 0, 0, 5958, 6001, 5, 711, 0, 0, 5959, 6001, 5, 712, 0, 0, 5960, 6001, 5, 714, 0, 0, 5961, 6001, 5, 715, 0, 0, 5962, 6001, 5, 716, 0, 0, 5963, 6001, 5, 719, 0, 0, 5964, 6001, 5, 720, 0, 0, 5965, 6001, 5, 721, 0, 0, 5966, 6001, 5, 722, 0, 0, 5967, 6001, 5, 723, 0, 0, 5968, 6001, 5, 724, 0, 0, 5969, 6001, 5, 725, 0, 0, 5970, 6001, 5, 726, 0, 0, 5971, 6001, 5, 727, 0, 0, 5972, 6001, 5, 728, 0, 0, 5973, 6001, 5, 731, 0, 0, 5974, 6001, 5, 732, 0, 0, 5975, 6001, 5, 733, 0, 0, 5976, 6001, 5, 737, 0, 0, 5977, 6001, 5, 738, 0, 0, 5978, 6001, 5, 740, 0, 0, 5979, 6001, 5, 741, 0, 0, 5980, 6001, 5, 742, 0, 0, 5981, 6001, 5, 745, 0, 0, 5982, 6001, 5, 746, 0, 0, 5983, 6001, 5, 747, 0, 0, 5984, 6001, 5, 160, 0, 0, 5985, 6001, 5, 748, 0, 0, 5986, 6001, 5, 836, 0, 0, 5987, 6001, 5, 751, 0, 0, 5988, 6001, 5, 753, 0, 0, 5989, 6001, 5, 838, 0, 0, 5990, 6001, 5, 754, 0, 0, 5991, 6001, 5, 755, 0, 0, 5992, 5993, 5, 103, 0, 0, 5993, 5994, 5, 68, 0, 0, 5994, 6001, 5, 744, 0, 0, 5995, 5996, 5, 154, 0, 0, 5996, 5997, 5, 88, 0, 0, 5997, 6001, 5, 744, 0, 0, 5998, 5999, 5, 729, 0, 0, 5999, 6001, 5, 730, 0, 0, 6000, 5907, 1, 0, 0, 0, 6000, 5911, 1, 0, 0, 0, 6000, 5915, 1, 0, 0, 0, 6000, 5925, 1, 0, 0, 0, 6000, 5926, 1, 0, 0, 0, 6000, 5930, 1, 0, 0, 0, 6000, 5931, 1, 0, 0, 0, 6000, 5932, 1, 0, 0, 0, 6000, 5933, 1, 0, 0, 0, 6000, 5935, 1, 0, 0, 0, 6000, 5936, 1, 0, 0, 0, 6000, 5937, 1, 0, 0, 0, 6000, 5939, 1, 0, 0, 0, 6000, 5940, 1, 0, 0, 0, 6000, 5941, 1, 0, 0, 0, 6000, 5942, 1, 0, 0, 0, 6000, 5943, 1, 0, 0, 0, 6000, 5945, 1, 0, 0, 0, 6000, 5946, 1, 0, 0, 0, 6000, 5948, 1, 0, 0, 0, 6000, 5949, 1, 0, 0, 0, 6000, 5950, 1, 0, 0, 0, 6000, 5951, 1, 0, 0, 0, 6000, 5952, 1, 0, 0, 0, 6000, 5953, 1, 0, 0, 0, 6000, 5954, 1, 0, 0, 0, 6000, 5955, 1, 0, 0, 0, 6000, 5956, 1, 0, 0, 0, 6000, 5957, 1, 0, 0, 0, 6000, 5958, 1, 0, 0, 0, 6000, 5959, 1, 0, 0, 0, 6000, 5960, 1, 0, 0, 0, 6000, 5961, 1, 0, 0, 0, 6000, 5962, 1, 0, 0, 0, 6000, 5963, 1, 0, 0, 0, 6000, 5964, 1, 0, 0, 0, 6000, 5965, 1, 0, 0, 0, 6000, 5966, 1, 0, 0, 0, 6000, 5967, 1, 0, 0, 0, 6000, 5968, 1, 0, 0, 0, 6000, 5969, 1, 0, 0, 0, 6000, 5970, 1, 0, 0, 0, 6000, 5971, 1, 0, 0, 0, 6000, 5972, 1, 0, 0, 0, 6000, 5973, 1, 0, 0, 0, 6000, 5974, 1, 0, 0, 0, 6000, 5975, 1, 0, 0, 0, 6000, 5976, 1, 0, 0, 0, 6000, 5977, 1, 0, 0, 0, 6000, 5978, 1, 0, 0, 0, 6000, 5979, 1, 0, 0, 0, 6000, 5980, 1, 0, 0, 0, 6000, 5981, 1, 0, 0, 0, 6000, 5982, 1, 0, 0, 0, 6000, 5983, 1, 0, 0, 0, 6000, 5984, 1, 0, 0, 0, 6000, 5985, 1, 0, 0, 0, 6000, 5986, 1, 0, 0, 0, 6000, 5987, 1, 0, 0, 0, 6000, 5988, 1, 0, 0, 0, 6000, 5989, 1, 0, 0, 0, 6000, 5990, 1, 0, 0, 0, 6000, 5991, 1, 0, 0, 0, 6000, 5992, 1, 0, 0, 0, 6000, 5995, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6001, 533, 1, 0, 0, 0, 6002, 6019, 5, 850, 0, 0, 6003, 6004, 5, 850, 0, 0, 6004, 6005, 5, 865, 0, 0, 6005, 6019, 5, 850, 0, 0, 6006, 6007, 3, 716, 358, 0, 6007, 6008, 5, 865, 0, 0, 6008, 6009, 5, 850, 0, 0, 6009, 6019, 1, 0, 0, 0, 6010, 6011, 3, 716, 358, 0, 6011, 6012, 5, 865, 0, 0, 6012, 6013, 3, 716, 358, 0, 6013, 6019, 1, 0, 0, 0, 6014, 6015, 3, 716, 358, 0, 6015, 6016, 3, 720, 360, 0, 6016, 6019, 1, 0, 0, 0, 6017, 6019, 3, 716, 358, 0, 6018, 6002, 1, 0, 0, 0, 6018, 6003, 1, 0, 0, 0, 6018, 6006, 1, 0, 0, 0, 6018, 6010, 1, 0, 0, 0, 6018, 6014, 1, 0, 0, 0, 6018, 6017, 1, 0, 0, 0, 6019, 535, 1, 0, 0, 0, 6020, 6021, 3, 694, 347, 0, 6021, 6022, 5, 176, 0, 0, 6022, 6023, 3, 694, 347, 0, 6023, 537, 1, 0, 0, 0, 6024, 6026, 5, 10, 0, 0, 6025, 6027, 3, 548, 274, 0, 6026, 6025, 1, 0, 0, 0, 6026, 6027, 1, 0, 0, 0, 6027, 6028, 1, 0, 0, 0, 6028, 6029, 5, 173, 0, 0, 6029, 6073, 3, 660, 330, 0, 6030, 6032, 5, 10, 0, 0, 6031, 6033, 3, 548, 274, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6034, 1, 0, 0, 0, 6034, 6035, 5, 173, 0, 0, 6035, 6036, 3, 662, 331, 0, 6036, 6037, 5, 185, 0, 0, 6037, 6038, 5, 77, 0, 0, 6038, 6039, 5, 119, 0, 0, 6039, 6044, 3, 670, 335, 0, 6040, 6041, 5, 194, 0, 0, 6041, 6042, 3, 722, 361, 0, 6042, 6043, 5, 19, 0, 0, 6043, 6045, 1, 0, 0, 0, 6044, 6040, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6073, 1, 0, 0, 0, 6046, 6048, 5, 10, 0, 0, 6047, 6049, 3, 548, 274, 0, 6048, 6047, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6051, 5, 173, 0, 0, 6051, 6052, 3, 662, 331, 0, 6052, 6053, 5, 185, 0, 0, 6053, 6054, 5, 77, 0, 0, 6054, 6055, 5, 119, 0, 0, 6055, 6059, 3, 672, 336, 0, 6056, 6057, 5, 188, 0, 0, 6057, 6058, 5, 360, 0, 0, 6058, 6060, 5, 882, 0, 0, 6059, 6056, 1, 0, 0, 0, 6059, 6060, 1, 0, 0, 0, 6060, 6073, 1, 0, 0, 0, 6061, 6063, 5, 10, 0, 0, 6062, 6064, 3, 548, 274, 0, 6063, 6062, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, 0, 6065, 6066, 5, 173, 0, 0, 6066, 6067, 3, 662, 331, 0, 6067, 6068, 5, 51, 0, 0, 6068, 6069, 5, 77, 0, 0, 6069, 6070, 5, 119, 0, 0, 6070, 6071, 3, 670, 335, 0, 6071, 6073, 1, 0, 0, 0, 6072, 6024, 1, 0, 0, 0, 6072, 6030, 1, 0, 0, 0, 6072, 6046, 1, 0, 0, 0, 6072, 6061, 1, 0, 0, 0, 6073, 539, 1, 0, 0, 0, 6074, 6075, 5, 27, 0, 0, 6075, 6076, 5, 173, 0, 0, 6076, 6080, 3, 660, 330, 0, 6077, 6079, 3, 550, 275, 0, 6078, 6077, 1, 0, 0, 0, 6079, 6082, 1, 0, 0, 0, 6080, 6078, 1, 0, 0, 0, 6080, 6081, 1, 0, 0, 0, 6081, 541, 1, 0, 0, 0, 6082, 6080, 1, 0, 0, 0, 6083, 6084, 5, 329, 0, 0, 6084, 6085, 5, 173, 0, 0, 6085, 6087, 3, 660, 330, 0, 6086, 6088, 7, 90, 0, 0, 6087, 6086, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 543, 1, 0, 0, 0, 6089, 6091, 5, 120, 0, 0, 6090, 6092, 3, 548, 274, 0, 6091, 6090, 1, 0, 0, 0, 6091, 6092, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6094, 7, 61, 0, 0, 6094, 6095, 3, 660, 330, 0, 6095, 545, 1, 0, 0, 0, 6096, 6098, 5, 562, 0, 0, 6097, 6099, 3, 548, 274, 0, 6098, 6097, 1, 0, 0, 0, 6098, 6099, 1, 0, 0, 0, 6099, 6100, 1, 0, 0, 0, 6100, 6101, 5, 173, 0, 0, 6101, 6103, 3, 660, 330, 0, 6102, 6104, 5, 549, 0, 0, 6103, 6102, 1, 0, 0, 0, 6103, 6104, 1, 0, 0, 0, 6104, 6106, 1, 0, 0, 0, 6105, 6107, 5, 392, 0, 0, 6106, 6105, 1, 0, 0, 0, 6106, 6107, 1, 0, 0, 0, 6107, 6109, 1, 0, 0, 0, 6108, 6110, 5, 679, 0, 0, 6109, 6108, 1, 0, 0, 0, 6109, 6110, 1, 0, 0, 0, 6110, 547, 1, 0, 0, 0, 6111, 6112, 7, 91, 0, 0, 6112, 549, 1, 0, 0, 0, 6113, 6114, 5, 65, 0, 0, 6114, 6121, 5, 677, 0, 0, 6115, 6121, 5, 549, 0, 0, 6116, 6121, 5, 396, 0, 0, 6117, 6121, 5, 484, 0, 0, 6118, 6121, 5, 392, 0, 0, 6119, 6121, 5, 327, 0, 0, 6120, 6113, 1, 0, 0, 0, 6120, 6115, 1, 0, 0, 0, 6120, 6116, 1, 0, 0, 0, 6120, 6117, 1, 0, 0, 0, 6120, 6118, 1, 0, 0, 0, 6120, 6119, 1, 0, 0, 0, 6121, 551, 1, 0, 0, 0, 6122, 6123, 5, 432, 0, 0, 6123, 6124, 5, 344, 0, 0, 6124, 6129, 3, 716, 358, 0, 6125, 6126, 5, 868, 0, 0, 6126, 6128, 3, 716, 358, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6131, 1, 0, 0, 0, 6129, 6127, 1, 0, 0, 0, 6129, 6130, 1, 0, 0, 0, 6130, 6141, 1, 0, 0, 0, 6131, 6129, 1, 0, 0, 0, 6132, 6133, 5, 155, 0, 0, 6133, 6138, 3, 554, 277, 0, 6134, 6135, 5, 868, 0, 0, 6135, 6137, 3, 554, 277, 0, 6136, 6134, 1, 0, 0, 0, 6137, 6140, 1, 0, 0, 0, 6138, 6136, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 6142, 1, 0, 0, 0, 6140, 6138, 1, 0, 0, 0, 6141, 6132, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 553, 1, 0, 0, 0, 6143, 6144, 7, 92, 0, 0, 6144, 6145, 3, 712, 356, 0, 6145, 6146, 5, 857, 0, 0, 6146, 6147, 3, 814, 407, 0, 6147, 555, 1, 0, 0, 0, 6148, 6149, 5, 673, 0, 0, 6149, 6150, 5, 344, 0, 0, 6150, 6155, 3, 716, 358, 0, 6151, 6152, 5, 868, 0, 0, 6152, 6154, 3, 716, 358, 0, 6153, 6151, 1, 0, 0, 0, 6154, 6157, 1, 0, 0, 0, 6155, 6153, 1, 0, 0, 0, 6155, 6156, 1, 0, 0, 0, 6156, 557, 1, 0, 0, 0, 6157, 6155, 1, 0, 0, 0, 6158, 6159, 5, 432, 0, 0, 6159, 6160, 5, 534, 0, 0, 6160, 6161, 3, 716, 358, 0, 6161, 6162, 5, 603, 0, 0, 6162, 6163, 5, 882, 0, 0, 6163, 559, 1, 0, 0, 0, 6164, 6165, 5, 673, 0, 0, 6165, 6166, 5, 534, 0, 0, 6166, 6167, 3, 716, 358, 0, 6167, 561, 1, 0, 0, 0, 6168, 6169, 5, 713, 0, 0, 6169, 6170, 5, 450, 0, 0, 6170, 6171, 5, 360, 0, 0, 6171, 6173, 5, 367, 0, 0, 6172, 6174, 5, 857, 0, 0, 6173, 6172, 1, 0, 0, 0, 6173, 6174, 1, 0, 0, 0, 6174, 6175, 1, 0, 0, 0, 6175, 6199, 5, 882, 0, 0, 6176, 6177, 5, 713, 0, 0, 6177, 6178, 5, 433, 0, 0, 6178, 6179, 5, 68, 0, 0, 6179, 6180, 3, 686, 343, 0, 6180, 6181, 5, 423, 0, 0, 6181, 6182, 5, 20, 0, 0, 6182, 6189, 5, 882, 0, 0, 6183, 6184, 5, 360, 0, 0, 6184, 6186, 5, 367, 0, 0, 6185, 6187, 5, 857, 0, 0, 6186, 6185, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6190, 5, 882, 0, 0, 6189, 6183, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 6196, 1, 0, 0, 0, 6191, 6193, 5, 144, 0, 0, 6192, 6194, 5, 502, 0, 0, 6193, 6192, 1, 0, 0, 0, 6193, 6194, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 6197, 5, 169, 0, 0, 6196, 6191, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6199, 1, 0, 0, 0, 6198, 6168, 1, 0, 0, 0, 6198, 6176, 1, 0, 0, 0, 6199, 563, 1, 0, 0, 0, 6200, 6201, 5, 155, 0, 0, 6201, 6202, 3, 568, 284, 0, 6202, 6205, 7, 93, 0, 0, 6203, 6206, 3, 814, 407, 0, 6204, 6206, 5, 119, 0, 0, 6205, 6203, 1, 0, 0, 0, 6205, 6204, 1, 0, 0, 0, 6206, 6216, 1, 0, 0, 0, 6207, 6208, 5, 868, 0, 0, 6208, 6209, 3, 568, 284, 0, 6209, 6212, 7, 93, 0, 0, 6210, 6213, 3, 814, 407, 0, 6211, 6213, 5, 119, 0, 0, 6212, 6210, 1, 0, 0, 0, 6212, 6211, 1, 0, 0, 0, 6213, 6215, 1, 0, 0, 0, 6214, 6207, 1, 0, 0, 0, 6215, 6218, 1, 0, 0, 0, 6216, 6214, 1, 0, 0, 0, 6216, 6217, 1, 0, 0, 0, 6217, 6253, 1, 0, 0, 0, 6218, 6216, 1, 0, 0, 0, 6219, 6220, 5, 155, 0, 0, 6220, 6223, 3, 58, 29, 0, 6221, 6224, 3, 698, 349, 0, 6222, 6224, 5, 42, 0, 0, 6223, 6221, 1, 0, 0, 0, 6223, 6222, 1, 0, 0, 0, 6224, 6253, 1, 0, 0, 0, 6225, 6226, 5, 155, 0, 0, 6226, 6233, 5, 497, 0, 0, 6227, 6230, 3, 698, 349, 0, 6228, 6229, 5, 28, 0, 0, 6229, 6231, 3, 700, 350, 0, 6230, 6228, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6234, 1, 0, 0, 0, 6232, 6234, 5, 42, 0, 0, 6233, 6227, 1, 0, 0, 0, 6233, 6232, 1, 0, 0, 0, 6234, 6253, 1, 0, 0, 0, 6235, 6253, 3, 500, 250, 0, 6236, 6253, 3, 352, 176, 0, 6237, 6253, 3, 350, 175, 0, 6238, 6239, 5, 155, 0, 0, 6239, 6240, 3, 712, 356, 0, 6240, 6241, 7, 93, 0, 0, 6241, 6249, 3, 814, 407, 0, 6242, 6243, 5, 868, 0, 0, 6243, 6244, 3, 712, 356, 0, 6244, 6245, 7, 93, 0, 0, 6245, 6246, 3, 814, 407, 0, 6246, 6248, 1, 0, 0, 0, 6247, 6242, 1, 0, 0, 0, 6248, 6251, 1, 0, 0, 0, 6249, 6247, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6253, 1, 0, 0, 0, 6251, 6249, 1, 0, 0, 0, 6252, 6200, 1, 0, 0, 0, 6252, 6219, 1, 0, 0, 0, 6252, 6225, 1, 0, 0, 0, 6252, 6235, 1, 0, 0, 0, 6252, 6236, 1, 0, 0, 0, 6252, 6237, 1, 0, 0, 0, 6252, 6238, 1, 0, 0, 0, 6253, 565, 1, 0, 0, 0, 6254, 6255, 5, 157, 0, 0, 6255, 6256, 7, 63, 0, 0, 6256, 6439, 5, 452, 0, 0, 6257, 6258, 5, 157, 0, 0, 6258, 6259, 7, 94, 0, 0, 6259, 6262, 5, 386, 0, 0, 6260, 6261, 5, 80, 0, 0, 6261, 6263, 5, 882, 0, 0, 6262, 6260, 1, 0, 0, 0, 6262, 6263, 1, 0, 0, 0, 6263, 6266, 1, 0, 0, 0, 6264, 6265, 5, 68, 0, 0, 6265, 6267, 3, 722, 361, 0, 6266, 6264, 1, 0, 0, 0, 6266, 6267, 1, 0, 0, 0, 6267, 6275, 1, 0, 0, 0, 6268, 6272, 5, 100, 0, 0, 6269, 6270, 3, 722, 361, 0, 6270, 6271, 5, 868, 0, 0, 6271, 6273, 1, 0, 0, 0, 6272, 6269, 1, 0, 0, 0, 6272, 6273, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6276, 3, 722, 361, 0, 6275, 6268, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6278, 1, 0, 0, 0, 6277, 6279, 3, 400, 200, 0, 6278, 6277, 1, 0, 0, 0, 6278, 6279, 1, 0, 0, 0, 6279, 6439, 1, 0, 0, 0, 6280, 6281, 5, 157, 0, 0, 6281, 6283, 3, 570, 285, 0, 6282, 6284, 3, 572, 286, 0, 6283, 6282, 1, 0, 0, 0, 6283, 6284, 1, 0, 0, 0, 6284, 6439, 1, 0, 0, 0, 6285, 6287, 5, 157, 0, 0, 6286, 6288, 5, 392, 0, 0, 6287, 6286, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6290, 1, 0, 0, 0, 6289, 6291, 5, 408, 0, 0, 6290, 6289, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6292, 1, 0, 0, 0, 6292, 6293, 7, 47, 0, 0, 6293, 6294, 7, 95, 0, 0, 6294, 6297, 3, 662, 331, 0, 6295, 6296, 7, 95, 0, 0, 6296, 6298, 3, 638, 319, 0, 6297, 6295, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6300, 1, 0, 0, 0, 6299, 6301, 3, 572, 286, 0, 6300, 6299, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6439, 1, 0, 0, 0, 6302, 6303, 5, 157, 0, 0, 6303, 6304, 5, 34, 0, 0, 6304, 6306, 7, 0, 0, 0, 6305, 6307, 3, 770, 385, 0, 6306, 6305, 1, 0, 0, 0, 6306, 6307, 1, 0, 0, 0, 6307, 6308, 1, 0, 0, 0, 6308, 6439, 3, 638, 319, 0, 6309, 6310, 5, 157, 0, 0, 6310, 6311, 5, 34, 0, 0, 6311, 6312, 7, 96, 0, 0, 6312, 6439, 3, 712, 356, 0, 6313, 6314, 5, 157, 0, 0, 6314, 6315, 5, 34, 0, 0, 6315, 6316, 5, 409, 0, 0, 6316, 6439, 3, 642, 321, 0, 6317, 6318, 5, 157, 0, 0, 6318, 6319, 5, 34, 0, 0, 6319, 6320, 5, 684, 0, 0, 6320, 6439, 3, 646, 323, 0, 6321, 6322, 5, 157, 0, 0, 6322, 6323, 5, 34, 0, 0, 6323, 6324, 5, 173, 0, 0, 6324, 6439, 3, 662, 331, 0, 6325, 6326, 5, 157, 0, 0, 6326, 6327, 5, 34, 0, 0, 6327, 6328, 5, 678, 0, 0, 6328, 6439, 3, 694, 347, 0, 6329, 6330, 5, 157, 0, 0, 6330, 6331, 5, 380, 0, 0, 6331, 6332, 3, 702, 351, 0, 6332, 6333, 7, 97, 0, 0, 6333, 6439, 1, 0, 0, 0, 6334, 6335, 5, 157, 0, 0, 6335, 6439, 3, 574, 287, 0, 6336, 6337, 5, 157, 0, 0, 6337, 6345, 7, 98, 0, 0, 6338, 6342, 5, 100, 0, 0, 6339, 6340, 3, 722, 361, 0, 6340, 6341, 5, 868, 0, 0, 6341, 6343, 1, 0, 0, 0, 6342, 6339, 1, 0, 0, 0, 6342, 6343, 1, 0, 0, 0, 6343, 6344, 1, 0, 0, 0, 6344, 6346, 3, 722, 361, 0, 6345, 6338, 1, 0, 0, 0, 6345, 6346, 1, 0, 0, 0, 6346, 6439, 1, 0, 0, 0, 6347, 6348, 5, 157, 0, 0, 6348, 6349, 5, 262, 0, 0, 6349, 6350, 5, 866, 0, 0, 6350, 6351, 5, 850, 0, 0, 6351, 6352, 5, 867, 0, 0, 6352, 6439, 7, 98, 0, 0, 6353, 6354, 5, 157, 0, 0, 6354, 6357, 3, 576, 288, 0, 6355, 6356, 7, 95, 0, 0, 6356, 6358, 3, 638, 319, 0, 6357, 6355, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 1, 0, 0, 0, 6359, 6361, 3, 572, 286, 0, 6360, 6359, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 6439, 1, 0, 0, 0, 6362, 6363, 5, 157, 0, 0, 6363, 6364, 5, 132, 0, 0, 6364, 6365, 5, 336, 0, 0, 6365, 6439, 3, 712, 356, 0, 6366, 6367, 5, 157, 0, 0, 6367, 6368, 5, 409, 0, 0, 6368, 6369, 5, 336, 0, 0, 6369, 6439, 3, 642, 321, 0, 6370, 6371, 5, 157, 0, 0, 6371, 6378, 5, 414, 0, 0, 6372, 6373, 5, 65, 0, 0, 6373, 6376, 3, 666, 333, 0, 6374, 6375, 5, 188, 0, 0, 6375, 6377, 3, 664, 332, 0, 6376, 6374, 1, 0, 0, 0, 6376, 6377, 1, 0, 0, 0, 6377, 6379, 1, 0, 0, 0, 6378, 6372, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6439, 1, 0, 0, 0, 6380, 6382, 5, 157, 0, 0, 6381, 6383, 5, 392, 0, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6384, 1, 0, 0, 0, 6384, 6385, 7, 99, 0, 0, 6385, 6386, 7, 95, 0, 0, 6386, 6389, 3, 662, 331, 0, 6387, 6388, 7, 95, 0, 0, 6388, 6390, 3, 638, 319, 0, 6389, 6387, 1, 0, 0, 0, 6389, 6390, 1, 0, 0, 0, 6390, 6393, 1, 0, 0, 0, 6391, 6392, 5, 192, 0, 0, 6392, 6394, 3, 814, 407, 0, 6393, 6391, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6439, 1, 0, 0, 0, 6395, 6396, 5, 157, 0, 0, 6396, 6397, 5, 516, 0, 0, 6397, 6400, 5, 752, 0, 0, 6398, 6399, 7, 95, 0, 0, 6399, 6401, 3, 638, 319, 0, 6400, 6398, 1, 0, 0, 0, 6400, 6401, 1, 0, 0, 0, 6401, 6403, 1, 0, 0, 0, 6402, 6404, 3, 572, 286, 0, 6403, 6402, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6439, 1, 0, 0, 0, 6405, 6406, 5, 157, 0, 0, 6406, 6415, 5, 545, 0, 0, 6407, 6412, 3, 578, 289, 0, 6408, 6409, 5, 868, 0, 0, 6409, 6411, 3, 578, 289, 0, 6410, 6408, 1, 0, 0, 0, 6411, 6414, 1, 0, 0, 0, 6412, 6410, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6416, 1, 0, 0, 0, 6414, 6412, 1, 0, 0, 0, 6415, 6407, 1, 0, 0, 0, 6415, 6416, 1, 0, 0, 0, 6416, 6420, 1, 0, 0, 0, 6417, 6418, 5, 65, 0, 0, 6418, 6419, 5, 548, 0, 0, 6419, 6421, 3, 722, 361, 0, 6420, 6417, 1, 0, 0, 0, 6420, 6421, 1, 0, 0, 0, 6421, 6428, 1, 0, 0, 0, 6422, 6423, 5, 100, 0, 0, 6423, 6426, 3, 722, 361, 0, 6424, 6425, 5, 509, 0, 0, 6425, 6427, 3, 722, 361, 0, 6426, 6424, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6429, 1, 0, 0, 0, 6428, 6422, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 6439, 1, 0, 0, 0, 6430, 6431, 5, 157, 0, 0, 6431, 6432, 7, 64, 0, 0, 6432, 6434, 5, 645, 0, 0, 6433, 6435, 3, 400, 200, 0, 6434, 6433, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6439, 1, 0, 0, 0, 6436, 6437, 5, 157, 0, 0, 6437, 6439, 5, 564, 0, 0, 6438, 6254, 1, 0, 0, 0, 6438, 6257, 1, 0, 0, 0, 6438, 6280, 1, 0, 0, 0, 6438, 6285, 1, 0, 0, 0, 6438, 6302, 1, 0, 0, 0, 6438, 6309, 1, 0, 0, 0, 6438, 6313, 1, 0, 0, 0, 6438, 6317, 1, 0, 0, 0, 6438, 6321, 1, 0, 0, 0, 6438, 6325, 1, 0, 0, 0, 6438, 6329, 1, 0, 0, 0, 6438, 6334, 1, 0, 0, 0, 6438, 6336, 1, 0, 0, 0, 6438, 6347, 1, 0, 0, 0, 6438, 6353, 1, 0, 0, 0, 6438, 6362, 1, 0, 0, 0, 6438, 6366, 1, 0, 0, 0, 6438, 6370, 1, 0, 0, 0, 6438, 6380, 1, 0, 0, 0, 6438, 6395, 1, 0, 0, 0, 6438, 6405, 1, 0, 0, 0, 6438, 6430, 1, 0, 0, 0, 6438, 6436, 1, 0, 0, 0, 6439, 567, 1, 0, 0, 0, 6440, 6451, 5, 892, 0, 0, 6441, 6451, 5, 893, 0, 0, 6442, 6443, 5, 870, 0, 0, 6443, 6445, 5, 870, 0, 0, 6444, 6442, 1, 0, 0, 0, 6444, 6445, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 6448, 7, 100, 0, 0, 6447, 6444, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6449, 1, 0, 0, 0, 6449, 6451, 3, 716, 358, 0, 6450, 6440, 1, 0, 0, 0, 6450, 6441, 1, 0, 0, 0, 6450, 6447, 1, 0, 0, 0, 6451, 569, 1, 0, 0, 0, 6452, 6453, 5, 26, 0, 0, 6453, 6467, 5, 155, 0, 0, 6454, 6467, 5, 823, 0, 0, 6455, 6467, 5, 824, 0, 0, 6456, 6467, 5, 40, 0, 0, 6457, 6467, 5, 153, 0, 0, 6458, 6459, 5, 409, 0, 0, 6459, 6467, 5, 645, 0, 0, 6460, 6461, 5, 132, 0, 0, 6461, 6467, 5, 645, 0, 0, 6462, 6464, 7, 62, 0, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6465, 1, 0, 0, 0, 6465, 6467, 7, 101, 0, 0, 6466, 6452, 1, 0, 0, 0, 6466, 6454, 1, 0, 0, 0, 6466, 6455, 1, 0, 0, 0, 6466, 6456, 1, 0, 0, 0, 6466, 6457, 1, 0, 0, 0, 6466, 6458, 1, 0, 0, 0, 6466, 6460, 1, 0, 0, 0, 6466, 6463, 1, 0, 0, 0, 6467, 571, 1, 0, 0, 0, 6468, 6469, 5, 99, 0, 0, 6469, 6473, 5, 882, 0, 0, 6470, 6471, 5, 192, 0, 0, 6471, 6473, 3, 814, 407, 0, 6472, 6468, 1, 0, 0, 0, 6472, 6470, 1, 0, 0, 0, 6473, 573, 1, 0, 0, 0, 6474, 6476, 5, 647, 0, 0, 6475, 6474, 1, 0, 0, 0, 6475, 6476, 1, 0, 0, 0, 6476, 6477, 1, 0, 0, 0, 6477, 6492, 5, 381, 0, 0, 6478, 6479, 5, 453, 0, 0, 6479, 6492, 5, 645, 0, 0, 6480, 6492, 5, 536, 0, 0, 6481, 6492, 5, 734, 0, 0, 6482, 6484, 5, 408, 0, 0, 6483, 6482, 1, 0, 0, 0, 6483, 6484, 1, 0, 0, 0, 6484, 6485, 1, 0, 0, 0, 6485, 6492, 5, 544, 0, 0, 6486, 6492, 5, 546, 0, 0, 6487, 6488, 5, 598, 0, 0, 6488, 6492, 5, 422, 0, 0, 6489, 6492, 5, 312, 0, 0, 6490, 6492, 5, 356, 0, 0, 6491, 6475, 1, 0, 0, 0, 6491, 6478, 1, 0, 0, 0, 6491, 6480, 1, 0, 0, 0, 6491, 6481, 1, 0, 0, 0, 6491, 6483, 1, 0, 0, 0, 6491, 6486, 1, 0, 0, 0, 6491, 6487, 1, 0, 0, 0, 6491, 6489, 1, 0, 0, 0, 6491, 6490, 1, 0, 0, 0, 6492, 575, 1, 0, 0, 0, 6493, 6505, 5, 386, 0, 0, 6494, 6495, 5, 173, 0, 0, 6495, 6505, 5, 645, 0, 0, 6496, 6498, 5, 392, 0, 0, 6497, 6496, 1, 0, 0, 0, 6497, 6498, 1, 0, 0, 0, 6498, 6500, 1, 0, 0, 0, 6499, 6501, 5, 408, 0, 0, 6500, 6499, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6502, 1, 0, 0, 0, 6502, 6505, 5, 752, 0, 0, 6503, 6505, 5, 667, 0, 0, 6504, 6493, 1, 0, 0, 0, 6504, 6494, 1, 0, 0, 0, 6504, 6497, 1, 0, 0, 0, 6504, 6503, 1, 0, 0, 0, 6505, 577, 1, 0, 0, 0, 6506, 6519, 5, 7, 0, 0, 6507, 6508, 5, 320, 0, 0, 6508, 6519, 5, 437, 0, 0, 6509, 6510, 5, 355, 0, 0, 6510, 6519, 5, 656, 0, 0, 6511, 6519, 5, 358, 0, 0, 6512, 6519, 5, 439, 0, 0, 6513, 6519, 5, 802, 0, 0, 6514, 6515, 5, 521, 0, 0, 6515, 6519, 5, 397, 0, 0, 6516, 6519, 5, 605, 0, 0, 6517, 6519, 5, 655, 0, 0, 6518, 6506, 1, 0, 0, 0, 6518, 6507, 1, 0, 0, 0, 6518, 6509, 1, 0, 0, 0, 6518, 6511, 1, 0, 0, 0, 6518, 6512, 1, 0, 0, 0, 6518, 6513, 1, 0, 0, 0, 6518, 6514, 1, 0, 0, 0, 6518, 6516, 1, 0, 0, 0, 6518, 6517, 1, 0, 0, 0, 6519, 579, 1, 0, 0, 0, 6520, 6521, 5, 318, 0, 0, 6521, 6522, 5, 882, 0, 0, 6522, 581, 1, 0, 0, 0, 6523, 6524, 5, 324, 0, 0, 6524, 6542, 5, 82, 0, 0, 6525, 6530, 3, 602, 301, 0, 6526, 6527, 5, 868, 0, 0, 6527, 6529, 3, 602, 301, 0, 6528, 6526, 1, 0, 0, 0, 6529, 6532, 1, 0, 0, 0, 6530, 6528, 1, 0, 0, 0, 6530, 6531, 1, 0, 0, 0, 6531, 6543, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6533, 6534, 3, 662, 331, 0, 6534, 6535, 5, 130, 0, 0, 6535, 6538, 5, 866, 0, 0, 6536, 6539, 3, 680, 340, 0, 6537, 6539, 5, 7, 0, 0, 6538, 6536, 1, 0, 0, 0, 6538, 6537, 1, 0, 0, 0, 6539, 6540, 1, 0, 0, 0, 6540, 6541, 5, 867, 0, 0, 6541, 6543, 1, 0, 0, 0, 6542, 6525, 1, 0, 0, 0, 6542, 6533, 1, 0, 0, 0, 6543, 6544, 1, 0, 0, 0, 6544, 6545, 5, 80, 0, 0, 6545, 6546, 3, 638, 319, 0, 6546, 583, 1, 0, 0, 0, 6547, 6549, 5, 404, 0, 0, 6548, 6550, 3, 548, 274, 0, 6549, 6548, 1, 0, 0, 0, 6549, 6550, 1, 0, 0, 0, 6550, 6551, 1, 0, 0, 0, 6551, 6556, 3, 604, 302, 0, 6552, 6553, 5, 868, 0, 0, 6553, 6555, 3, 604, 302, 0, 6554, 6552, 1, 0, 0, 0, 6555, 6558, 1, 0, 0, 0, 6556, 6554, 1, 0, 0, 0, 6556, 6557, 1, 0, 0, 0, 6557, 585, 1, 0, 0, 0, 6558, 6556, 1, 0, 0, 0, 6559, 6561, 5, 94, 0, 0, 6560, 6562, 7, 102, 0, 0, 6561, 6560, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 6563, 1, 0, 0, 0, 6563, 6564, 3, 814, 407, 0, 6564, 587, 1, 0, 0, 0, 6565, 6566, 5, 103, 0, 0, 6566, 6567, 5, 82, 0, 0, 6567, 6568, 5, 88, 0, 0, 6568, 6569, 5, 324, 0, 0, 6569, 6574, 3, 608, 304, 0, 6570, 6571, 5, 868, 0, 0, 6571, 6573, 3, 608, 304, 0, 6572, 6570, 1, 0, 0, 0, 6573, 6576, 1, 0, 0, 0, 6574, 6572, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 589, 1, 0, 0, 0, 6576, 6574, 1, 0, 0, 0, 6577, 6578, 5, 575, 0, 0, 6578, 6583, 3, 592, 296, 0, 6579, 6580, 5, 868, 0, 0, 6580, 6582, 3, 592, 296, 0, 6581, 6579, 1, 0, 0, 0, 6582, 6585, 1, 0, 0, 0, 6583, 6581, 1, 0, 0, 0, 6583, 6584, 1, 0, 0, 0, 6584, 591, 1, 0, 0, 0, 6585, 6583, 1, 0, 0, 0, 6586, 6592, 5, 453, 0, 0, 6587, 6592, 5, 563, 0, 0, 6588, 6589, 5, 548, 0, 0, 6589, 6592, 5, 324, 0, 0, 6590, 6592, 5, 598, 0, 0, 6591, 6586, 1, 0, 0, 0, 6591, 6587, 1, 0, 0, 0, 6591, 6588, 1, 0, 0, 0, 6591, 6590, 1, 0, 0, 0, 6592, 593, 1, 0, 0, 0, 6593, 6594, 5, 575, 0, 0, 6594, 6599, 5, 531, 0, 0, 6595, 6597, 3, 768, 384, 0, 6596, 6595, 1, 0, 0, 0, 6596, 6597, 1, 0, 0, 0, 6597, 6598, 1, 0, 0, 0, 6598, 6600, 3, 716, 358, 0, 6599, 6596, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 595, 1, 0, 0, 0, 6601, 6602, 5, 575, 0, 0, 6602, 6604, 7, 64, 0, 0, 6603, 6605, 5, 7, 0, 0, 6604, 6603, 1, 0, 0, 0, 6604, 6605, 1, 0, 0, 0, 6605, 6607, 1, 0, 0, 0, 6606, 6608, 3, 400, 200, 0, 6607, 6606, 1, 0, 0, 0, 6607, 6608, 1, 0, 0, 0, 6608, 597, 1, 0, 0, 0, 6609, 6610, 5, 576, 0, 0, 6610, 599, 1, 0, 0, 0, 6611, 6612, 5, 749, 0, 0, 6612, 601, 1, 0, 0, 0, 6613, 6619, 3, 662, 331, 0, 6614, 6615, 7, 19, 0, 0, 6615, 6616, 5, 866, 0, 0, 6616, 6617, 3, 650, 325, 0, 6617, 6618, 5, 867, 0, 0, 6618, 6620, 1, 0, 0, 0, 6619, 6614, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 603, 1, 0, 0, 0, 6621, 6640, 5, 366, 0, 0, 6622, 6640, 5, 422, 0, 0, 6623, 6625, 7, 103, 0, 0, 6624, 6623, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6640, 5, 452, 0, 0, 6627, 6640, 5, 517, 0, 0, 6628, 6640, 5, 734, 0, 0, 6629, 6630, 5, 548, 0, 0, 6630, 6640, 5, 324, 0, 0, 6631, 6640, 5, 645, 0, 0, 6632, 6640, 5, 680, 0, 0, 6633, 6637, 5, 752, 0, 0, 6634, 6635, 5, 194, 0, 0, 6635, 6636, 5, 135, 0, 0, 6636, 6638, 5, 104, 0, 0, 6637, 6634, 1, 0, 0, 0, 6637, 6638, 1, 0, 0, 0, 6638, 6640, 1, 0, 0, 0, 6639, 6621, 1, 0, 0, 0, 6639, 6622, 1, 0, 0, 0, 6639, 6624, 1, 0, 0, 0, 6639, 6627, 1, 0, 0, 0, 6639, 6628, 1, 0, 0, 0, 6639, 6629, 1, 0, 0, 0, 6639, 6631, 1, 0, 0, 0, 6639, 6632, 1, 0, 0, 0, 6639, 6633, 1, 0, 0, 0, 6640, 6654, 1, 0, 0, 0, 6641, 6642, 5, 556, 0, 0, 6642, 6644, 5, 452, 0, 0, 6643, 6645, 3, 400, 200, 0, 6644, 6643, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 6654, 1, 0, 0, 0, 6646, 6648, 7, 61, 0, 0, 6647, 6649, 3, 660, 330, 0, 6648, 6647, 1, 0, 0, 0, 6648, 6649, 1, 0, 0, 0, 6649, 6651, 1, 0, 0, 0, 6650, 6652, 3, 606, 303, 0, 6651, 6650, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6654, 1, 0, 0, 0, 6653, 6639, 1, 0, 0, 0, 6653, 6641, 1, 0, 0, 0, 6653, 6646, 1, 0, 0, 0, 6654, 605, 1, 0, 0, 0, 6655, 6656, 5, 194, 0, 0, 6656, 6657, 5, 135, 0, 0, 6657, 6661, 5, 104, 0, 0, 6658, 6659, 5, 65, 0, 0, 6659, 6661, 5, 391, 0, 0, 6660, 6655, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6661, 607, 1, 0, 0, 0, 6662, 6670, 3, 662, 331, 0, 6663, 6664, 5, 130, 0, 0, 6664, 6667, 5, 866, 0, 0, 6665, 6668, 3, 680, 340, 0, 6666, 6668, 5, 7, 0, 0, 6667, 6665, 1, 0, 0, 0, 6667, 6666, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6671, 5, 867, 0, 0, 6670, 6663, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 6679, 1, 0, 0, 0, 6672, 6674, 7, 19, 0, 0, 6673, 6672, 1, 0, 0, 0, 6673, 6674, 1, 0, 0, 0, 6674, 6675, 1, 0, 0, 0, 6675, 6676, 5, 866, 0, 0, 6676, 6677, 3, 650, 325, 0, 6677, 6678, 5, 867, 0, 0, 6678, 6680, 1, 0, 0, 0, 6679, 6673, 1, 0, 0, 0, 6679, 6680, 1, 0, 0, 0, 6680, 6683, 1, 0, 0, 0, 6681, 6682, 5, 79, 0, 0, 6682, 6684, 5, 446, 0, 0, 6683, 6681, 1, 0, 0, 0, 6683, 6684, 1, 0, 0, 0, 6684, 609, 1, 0, 0, 0, 6685, 6686, 7, 104, 0, 0, 6686, 6689, 3, 662, 331, 0, 6687, 6690, 3, 672, 336, 0, 6688, 6690, 5, 882, 0, 0, 6689, 6687, 1, 0, 0, 0, 6689, 6688, 1, 0, 0, 0, 6689, 6690, 1, 0, 0, 0, 6690, 611, 1, 0, 0, 0, 6691, 6697, 7, 104, 0, 0, 6692, 6698, 5, 392, 0, 0, 6693, 6698, 5, 528, 0, 0, 6694, 6695, 5, 826, 0, 0, 6695, 6696, 5, 857, 0, 0, 6696, 6698, 7, 105, 0, 0, 6697, 6692, 1, 0, 0, 0, 6697, 6693, 1, 0, 0, 0, 6697, 6694, 1, 0, 0, 0, 6697, 6698, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6700, 3, 634, 317, 0, 6700, 613, 1, 0, 0, 0, 6701, 6702, 7, 104, 0, 0, 6702, 6706, 5, 10, 0, 0, 6703, 6704, 5, 826, 0, 0, 6704, 6705, 5, 857, 0, 0, 6705, 6707, 5, 666, 0, 0, 6706, 6703, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6709, 3, 210, 105, 0, 6709, 615, 1, 0, 0, 0, 6710, 6711, 5, 419, 0, 0, 6711, 6712, 5, 882, 0, 0, 6712, 617, 1, 0, 0, 0, 6713, 6714, 5, 187, 0, 0, 6714, 6715, 3, 638, 319, 0, 6715, 619, 1, 0, 0, 0, 6716, 6724, 5, 158, 0, 0, 6717, 6719, 5, 164, 0, 0, 6718, 6720, 5, 682, 0, 0, 6719, 6718, 1, 0, 0, 0, 6719, 6720, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6725, 3, 726, 363, 0, 6722, 6725, 5, 889, 0, 0, 6723, 6725, 5, 890, 0, 0, 6724, 6717, 1, 0, 0, 0, 6724, 6722, 1, 0, 0, 0, 6724, 6723, 1, 0, 0, 0, 6725, 6735, 1, 0, 0, 0, 6726, 6727, 5, 155, 0, 0, 6727, 6732, 3, 624, 312, 0, 6728, 6729, 5, 868, 0, 0, 6729, 6731, 3, 624, 312, 0, 6730, 6728, 1, 0, 0, 0, 6731, 6734, 1, 0, 0, 0, 6732, 6730, 1, 0, 0, 0, 6732, 6733, 1, 0, 0, 0, 6733, 6736, 1, 0, 0, 0, 6734, 6732, 1, 0, 0, 0, 6735, 6726, 1, 0, 0, 0, 6735, 6736, 1, 0, 0, 0, 6736, 621, 1, 0, 0, 0, 6737, 6745, 5, 145, 0, 0, 6738, 6740, 5, 164, 0, 0, 6739, 6741, 5, 682, 0, 0, 6740, 6739, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 6742, 1, 0, 0, 0, 6742, 6746, 3, 726, 363, 0, 6743, 6746, 5, 889, 0, 0, 6744, 6746, 5, 890, 0, 0, 6745, 6738, 1, 0, 0, 0, 6745, 6743, 1, 0, 0, 0, 6745, 6744, 1, 0, 0, 0, 6745, 6746, 1, 0, 0, 0, 6746, 6756, 1, 0, 0, 0, 6747, 6748, 5, 155, 0, 0, 6748, 6753, 3, 624, 312, 0, 6749, 6750, 5, 868, 0, 0, 6750, 6752, 3, 624, 312, 0, 6751, 6749, 1, 0, 0, 0, 6752, 6755, 1, 0, 0, 0, 6753, 6751, 1, 0, 0, 0, 6753, 6754, 1, 0, 0, 0, 6754, 6757, 1, 0, 0, 0, 6755, 6753, 1, 0, 0, 0, 6756, 6747, 1, 0, 0, 0, 6756, 6757, 1, 0, 0, 0, 6757, 623, 1, 0, 0, 0, 6758, 6759, 7, 106, 0, 0, 6759, 6764, 5, 857, 0, 0, 6760, 6765, 3, 726, 363, 0, 6761, 6765, 5, 883, 0, 0, 6762, 6765, 3, 696, 348, 0, 6763, 6765, 3, 718, 359, 0, 6764, 6760, 1, 0, 0, 0, 6764, 6761, 1, 0, 0, 0, 6764, 6762, 1, 0, 0, 0, 6764, 6763, 1, 0, 0, 0, 6765, 625, 1, 0, 0, 0, 6766, 6768, 5, 194, 0, 0, 6767, 6769, 5, 552, 0, 0, 6768, 6767, 1, 0, 0, 0, 6768, 6769, 1, 0, 0, 0, 6769, 6770, 1, 0, 0, 0, 6770, 6775, 3, 52, 26, 0, 6771, 6772, 5, 868, 0, 0, 6772, 6774, 3, 52, 26, 0, 6773, 6771, 1, 0, 0, 0, 6774, 6777, 1, 0, 0, 0, 6775, 6773, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 627, 1, 0, 0, 0, 6777, 6775, 1, 0, 0, 0, 6778, 6779, 5, 173, 0, 0, 6779, 6781, 3, 662, 331, 0, 6780, 6782, 3, 258, 129, 0, 6781, 6780, 1, 0, 0, 0, 6781, 6782, 1, 0, 0, 0, 6782, 6784, 1, 0, 0, 0, 6783, 6785, 3, 328, 164, 0, 6784, 6783, 1, 0, 0, 0, 6784, 6785, 1, 0, 0, 0, 6785, 629, 1, 0, 0, 0, 6786, 6788, 5, 72, 0, 0, 6787, 6789, 7, 107, 0, 0, 6788, 6787, 1, 0, 0, 0, 6788, 6789, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 6822, 5, 48, 0, 0, 6791, 6792, 3, 568, 284, 0, 6792, 6793, 5, 857, 0, 0, 6793, 6801, 7, 108, 0, 0, 6794, 6795, 5, 868, 0, 0, 6795, 6796, 3, 568, 284, 0, 6796, 6797, 5, 857, 0, 0, 6797, 6798, 7, 108, 0, 0, 6798, 6800, 1, 0, 0, 0, 6799, 6794, 1, 0, 0, 0, 6800, 6803, 1, 0, 0, 0, 6801, 6799, 1, 0, 0, 0, 6801, 6802, 1, 0, 0, 0, 6802, 6823, 1, 0, 0, 0, 6803, 6801, 1, 0, 0, 0, 6804, 6807, 5, 30, 0, 0, 6805, 6808, 3, 722, 361, 0, 6806, 6808, 3, 568, 284, 0, 6807, 6805, 1, 0, 0, 0, 6807, 6806, 1, 0, 0, 0, 6808, 6809, 1, 0, 0, 0, 6809, 6810, 3, 568, 284, 0, 6810, 6811, 5, 857, 0, 0, 6811, 6819, 3, 632, 316, 0, 6812, 6813, 5, 868, 0, 0, 6813, 6814, 3, 568, 284, 0, 6814, 6815, 5, 857, 0, 0, 6815, 6816, 3, 632, 316, 0, 6816, 6818, 1, 0, 0, 0, 6817, 6812, 1, 0, 0, 0, 6818, 6821, 1, 0, 0, 0, 6819, 6817, 1, 0, 0, 0, 6819, 6820, 1, 0, 0, 0, 6820, 6823, 1, 0, 0, 0, 6821, 6819, 1, 0, 0, 0, 6822, 6791, 1, 0, 0, 0, 6822, 6804, 1, 0, 0, 0, 6823, 631, 1, 0, 0, 0, 6824, 6825, 7, 109, 0, 0, 6825, 633, 1, 0, 0, 0, 6826, 6832, 3, 210, 105, 0, 6827, 6832, 3, 186, 93, 0, 6828, 6832, 3, 192, 96, 0, 6829, 6832, 3, 208, 104, 0, 6830, 6832, 3, 220, 110, 0, 6831, 6826, 1, 0, 0, 0, 6831, 6827, 1, 0, 0, 0, 6831, 6828, 1, 0, 0, 0, 6831, 6829, 1, 0, 0, 0, 6831, 6830, 1, 0, 0, 0, 6832, 6837, 1, 0, 0, 0, 6833, 6834, 5, 65, 0, 0, 6834, 6835, 5, 349, 0, 0, 6835, 6837, 3, 716, 358, 0, 6836, 6831, 1, 0, 0, 0, 6836, 6833, 1, 0, 0, 0, 6837, 635, 1, 0, 0, 0, 6838, 6839, 3, 712, 356, 0, 6839, 637, 1, 0, 0, 0, 6840, 6841, 3, 712, 356, 0, 6841, 639, 1, 0, 0, 0, 6842, 6843, 3, 712, 356, 0, 6843, 641, 1, 0, 0, 0, 6844, 6845, 3, 712, 356, 0, 6845, 643, 1, 0, 0, 0, 6846, 6847, 3, 712, 356, 0, 6847, 645, 1, 0, 0, 0, 6848, 6849, 3, 712, 356, 0, 6849, 647, 1, 0, 0, 0, 6850, 6851, 3, 716, 358, 0, 6851, 649, 1, 0, 0, 0, 6852, 6857, 3, 652, 326, 0, 6853, 6854, 5, 868, 0, 0, 6854, 6856, 3, 652, 326, 0, 6855, 6853, 1, 0, 0, 0, 6856, 6859, 1, 0, 0, 0, 6857, 6855, 1, 0, 0, 0, 6857, 6858, 1, 0, 0, 0, 6858, 651, 1, 0, 0, 0, 6859, 6857, 1, 0, 0, 0, 6860, 6861, 3, 716, 358, 0, 6861, 653, 1, 0, 0, 0, 6862, 6863, 3, 716, 358, 0, 6863, 655, 1, 0, 0, 0, 6864, 6865, 3, 716, 358, 0, 6865, 657, 1, 0, 0, 0, 6866, 6867, 3, 712, 356, 0, 6867, 659, 1, 0, 0, 0, 6868, 6873, 3, 662, 331, 0, 6869, 6870, 5, 868, 0, 0, 6870, 6872, 3, 662, 331, 0, 6871, 6869, 1, 0, 0, 0, 6872, 6875, 1, 0, 0, 0, 6873, 6871, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 661, 1, 0, 0, 0, 6875, 6873, 1, 0, 0, 0, 6876, 6877, 3, 712, 356, 0, 6877, 663, 1, 0, 0, 0, 6878, 6883, 3, 666, 333, 0, 6879, 6880, 5, 868, 0, 0, 6880, 6882, 3, 666, 333, 0, 6881, 6879, 1, 0, 0, 0, 6882, 6885, 1, 0, 0, 0, 6883, 6881, 1, 0, 0, 0, 6883, 6884, 1, 0, 0, 0, 6884, 665, 1, 0, 0, 0, 6885, 6883, 1, 0, 0, 0, 6886, 6889, 3, 694, 347, 0, 6887, 6889, 3, 716, 358, 0, 6888, 6886, 1, 0, 0, 0, 6888, 6887, 1, 0, 0, 0, 6889, 667, 1, 0, 0, 0, 6890, 6895, 3, 716, 358, 0, 6891, 6893, 3, 720, 360, 0, 6892, 6894, 3, 720, 360, 0, 6893, 6892, 1, 0, 0, 0, 6893, 6894, 1, 0, 0, 0, 6894, 6896, 1, 0, 0, 0, 6895, 6891, 1, 0, 0, 0, 6895, 6896, 1, 0, 0, 0, 6896, 6905, 1, 0, 0, 0, 6897, 6899, 9, 0, 0, 0, 6898, 6897, 1, 0, 0, 0, 6898, 6899, 1, 0, 0, 0, 6899, 6900, 1, 0, 0, 0, 6900, 6902, 3, 720, 360, 0, 6901, 6903, 3, 720, 360, 0, 6902, 6901, 1, 0, 0, 0, 6902, 6903, 1, 0, 0, 0, 6903, 6905, 1, 0, 0, 0, 6904, 6890, 1, 0, 0, 0, 6904, 6898, 1, 0, 0, 0, 6905, 669, 1, 0, 0, 0, 6906, 6911, 3, 672, 336, 0, 6907, 6908, 5, 868, 0, 0, 6908, 6910, 3, 672, 336, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6913, 1, 0, 0, 0, 6911, 6909, 1, 0, 0, 0, 6911, 6912, 1, 0, 0, 0, 6912, 671, 1, 0, 0, 0, 6913, 6911, 1, 0, 0, 0, 6914, 6919, 3, 716, 358, 0, 6915, 6917, 3, 720, 360, 0, 6916, 6918, 3, 720, 360, 0, 6917, 6916, 1, 0, 0, 0, 6917, 6918, 1, 0, 0, 0, 6918, 6920, 1, 0, 0, 0, 6919, 6915, 1, 0, 0, 0, 6919, 6920, 1, 0, 0, 0, 6920, 6930, 1, 0, 0, 0, 6921, 6923, 9, 0, 0, 0, 6922, 6921, 1, 0, 0, 0, 6922, 6923, 1, 0, 0, 0, 6923, 6924, 1, 0, 0, 0, 6924, 6926, 3, 720, 360, 0, 6925, 6927, 3, 720, 360, 0, 6926, 6925, 1, 0, 0, 0, 6926, 6927, 1, 0, 0, 0, 6927, 6930, 1, 0, 0, 0, 6928, 6930, 4, 336, 3, 0, 6929, 6914, 1, 0, 0, 0, 6929, 6922, 1, 0, 0, 0, 6929, 6928, 1, 0, 0, 0, 6930, 673, 1, 0, 0, 0, 6931, 6932, 3, 716, 358, 0, 6932, 675, 1, 0, 0, 0, 6933, 6934, 3, 716, 358, 0, 6934, 677, 1, 0, 0, 0, 6935, 6936, 3, 716, 358, 0, 6936, 679, 1, 0, 0, 0, 6937, 6942, 3, 682, 341, 0, 6938, 6939, 5, 868, 0, 0, 6939, 6941, 3, 682, 341, 0, 6940, 6938, 1, 0, 0, 0, 6941, 6944, 1, 0, 0, 0, 6942, 6940, 1, 0, 0, 0, 6942, 6943, 1, 0, 0, 0, 6943, 681, 1, 0, 0, 0, 6944, 6942, 1, 0, 0, 0, 6945, 6946, 3, 716, 358, 0, 6946, 683, 1, 0, 0, 0, 6947, 6952, 3, 716, 358, 0, 6948, 6949, 5, 866, 0, 0, 6949, 6950, 3, 722, 361, 0, 6950, 6951, 5, 867, 0, 0, 6951, 6953, 1, 0, 0, 0, 6952, 6948, 1, 0, 0, 0, 6952, 6953, 1, 0, 0, 0, 6953, 6956, 1, 0, 0, 0, 6954, 6956, 3, 814, 407, 0, 6955, 6947, 1, 0, 0, 0, 6955, 6954, 1, 0, 0, 0, 6956, 6958, 1, 0, 0, 0, 6957, 6959, 7, 55, 0, 0, 6958, 6957, 1, 0, 0, 0, 6958, 6959, 1, 0, 0, 0, 6959, 685, 1, 0, 0, 0, 6960, 6961, 3, 688, 344, 0, 6961, 6962, 5, 878, 0, 0, 6962, 6963, 3, 722, 361, 0, 6963, 687, 1, 0, 0, 0, 6964, 6965, 3, 690, 345, 0, 6965, 6966, 5, 891, 0, 0, 6966, 689, 1, 0, 0, 0, 6967, 6972, 5, 882, 0, 0, 6968, 6972, 5, 889, 0, 0, 6969, 6972, 5, 704, 0, 0, 6970, 6972, 3, 844, 422, 0, 6971, 6967, 1, 0, 0, 0, 6971, 6968, 1, 0, 0, 0, 6971, 6969, 1, 0, 0, 0, 6971, 6970, 1, 0, 0, 0, 6972, 691, 1, 0, 0, 0, 6973, 6974, 7, 110, 0, 0, 6974, 693, 1, 0, 0, 0, 6975, 6977, 3, 690, 345, 0, 6976, 6978, 3, 692, 346, 0, 6977, 6976, 1, 0, 0, 0, 6977, 6978, 1, 0, 0, 0, 6978, 6981, 1, 0, 0, 0, 6979, 6981, 3, 60, 30, 0, 6980, 6975, 1, 0, 0, 0, 6980, 6979, 1, 0, 0, 0, 6981, 695, 1, 0, 0, 0, 6982, 6983, 7, 111, 0, 0, 6983, 697, 1, 0, 0, 0, 6984, 6989, 5, 228, 0, 0, 6985, 6989, 3, 834, 417, 0, 6986, 6989, 5, 882, 0, 0, 6987, 6989, 5, 879, 0, 0, 6988, 6984, 1, 0, 0, 0, 6988, 6985, 1, 0, 0, 0, 6988, 6986, 1, 0, 0, 0, 6988, 6987, 1, 0, 0, 0, 6989, 699, 1, 0, 0, 0, 6990, 6991, 3, 716, 358, 0, 6991, 701, 1, 0, 0, 0, 6992, 6996, 3, 704, 352, 0, 6993, 6996, 5, 889, 0, 0, 6994, 6996, 5, 882, 0, 0, 6995, 6992, 1, 0, 0, 0, 6995, 6993, 1, 0, 0, 0, 6995, 6994, 1, 0, 0, 0, 6996, 703, 1, 0, 0, 0, 6997, 6998, 7, 112, 0, 0, 6998, 705, 1, 0, 0, 0, 6999, 7000, 3, 722, 361, 0, 7000, 7001, 5, 854, 0, 0, 7001, 7002, 3, 722, 361, 0, 7002, 7003, 5, 854, 0, 0, 7003, 7004, 3, 722, 361, 0, 7004, 7005, 5, 854, 0, 0, 7005, 7006, 3, 722, 361, 0, 7006, 7007, 5, 854, 0, 0, 7007, 7013, 3, 722, 361, 0, 7008, 7009, 5, 878, 0, 0, 7009, 7010, 3, 722, 361, 0, 7010, 7011, 5, 854, 0, 0, 7011, 7012, 3, 722, 361, 0, 7012, 7014, 1, 0, 0, 0, 7013, 7008, 1, 0, 0, 0, 7014, 7015, 1, 0, 0, 0, 7015, 7013, 1, 0, 0, 0, 7015, 7016, 1, 0, 0, 0, 7016, 707, 1, 0, 0, 0, 7017, 7024, 3, 710, 355, 0, 7018, 7019, 5, 868, 0, 0, 7019, 7022, 3, 710, 355, 0, 7020, 7021, 5, 868, 0, 0, 7021, 7023, 3, 722, 361, 0, 7022, 7020, 1, 0, 0, 0, 7022, 7023, 1, 0, 0, 0, 7023, 7025, 1, 0, 0, 0, 7024, 7018, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 709, 1, 0, 0, 0, 7026, 7034, 5, 882, 0, 0, 7027, 7034, 5, 887, 0, 0, 7028, 7030, 5, 884, 0, 0, 7029, 7028, 1, 0, 0, 0, 7030, 7031, 1, 0, 0, 0, 7031, 7029, 1, 0, 0, 0, 7031, 7032, 1, 0, 0, 0, 7032, 7034, 1, 0, 0, 0, 7033, 7026, 1, 0, 0, 0, 7033, 7027, 1, 0, 0, 0, 7033, 7029, 1, 0, 0, 0, 7034, 711, 1, 0, 0, 0, 7035, 7037, 3, 716, 358, 0, 7036, 7038, 3, 720, 360, 0, 7037, 7036, 1, 0, 0, 0, 7037, 7038, 1, 0, 0, 0, 7038, 713, 1, 0, 0, 0, 7039, 7044, 3, 716, 358, 0, 7040, 7041, 5, 868, 0, 0, 7041, 7043, 3, 716, 358, 0, 7042, 7040, 1, 0, 0, 0, 7043, 7046, 1, 0, 0, 0, 7044, 7042, 1, 0, 0, 0, 7044, 7045, 1, 0, 0, 0, 7045, 715, 1, 0, 0, 0, 7046, 7044, 1, 0, 0, 0, 7047, 7051, 3, 718, 359, 0, 7048, 7051, 5, 879, 0, 0, 7049, 7051, 5, 882, 0, 0, 7050, 7047, 1, 0, 0, 0, 7050, 7048, 1, 0, 0, 0, 7050, 7049, 1, 0, 0, 0, 7051, 717, 1, 0, 0, 0, 7052, 7062, 5, 889, 0, 0, 7053, 7062, 3, 834, 417, 0, 7054, 7062, 3, 836, 418, 0, 7055, 7062, 3, 704, 352, 0, 7056, 7062, 3, 838, 419, 0, 7057, 7062, 3, 840, 420, 0, 7058, 7062, 3, 842, 421, 0, 7059, 7062, 3, 844, 422, 0, 7060, 7062, 3, 806, 403, 0, 7061, 7052, 1, 0, 0, 0, 7061, 7053, 1, 0, 0, 0, 7061, 7054, 1, 0, 0, 0, 7061, 7055, 1, 0, 0, 0, 7061, 7056, 1, 0, 0, 0, 7061, 7057, 1, 0, 0, 0, 7061, 7058, 1, 0, 0, 0, 7061, 7059, 1, 0, 0, 0, 7061, 7060, 1, 0, 0, 0, 7062, 719, 1, 0, 0, 0, 7063, 7064, 5, 865, 0, 0, 7064, 7068, 5, 889, 0, 0, 7065, 7066, 5, 865, 0, 0, 7066, 7068, 3, 716, 358, 0, 7067, 7063, 1, 0, 0, 0, 7067, 7065, 1, 0, 0, 0, 7068, 721, 1, 0, 0, 0, 7069, 7070, 7, 113, 0, 0, 7070, 723, 1, 0, 0, 0, 7071, 7074, 5, 880, 0, 0, 7072, 7074, 3, 722, 361, 0, 7073, 7071, 1, 0, 0, 0, 7073, 7072, 1, 0, 0, 0, 7074, 725, 1, 0, 0, 0, 7075, 7077, 5, 888, 0, 0, 7076, 7075, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7078, 1, 0, 0, 0, 7078, 7081, 5, 882, 0, 0, 7079, 7081, 5, 881, 0, 0, 7080, 7076, 1, 0, 0, 0, 7080, 7079, 1, 0, 0, 0, 7081, 7083, 1, 0, 0, 0, 7082, 7084, 5, 882, 0, 0, 7083, 7082, 1, 0, 0, 0, 7084, 7085, 1, 0, 0, 0, 7085, 7083, 1, 0, 0, 0, 7085, 7086, 1, 0, 0, 0, 7086, 7099, 1, 0, 0, 0, 7087, 7089, 5, 888, 0, 0, 7088, 7087, 1, 0, 0, 0, 7088, 7089, 1, 0, 0, 0, 7089, 7090, 1, 0, 0, 0, 7090, 7093, 5, 882, 0, 0, 7091, 7093, 5, 881, 0, 0, 7092, 7088, 1, 0, 0, 0, 7092, 7091, 1, 0, 0, 0, 7093, 7096, 1, 0, 0, 0, 7094, 7095, 5, 28, 0, 0, 7095, 7097, 3, 700, 350, 0, 7096, 7094, 1, 0, 0, 0, 7096, 7097, 1, 0, 0, 0, 7097, 7099, 1, 0, 0, 0, 7098, 7080, 1, 0, 0, 0, 7098, 7092, 1, 0, 0, 0, 7099, 727, 1, 0, 0, 0, 7100, 7101, 7, 114, 0, 0, 7101, 729, 1, 0, 0, 0, 7102, 7104, 5, 888, 0, 0, 7103, 7102, 1, 0, 0, 0, 7103, 7104, 1, 0, 0, 0, 7104, 7105, 1, 0, 0, 0, 7105, 7106, 5, 884, 0, 0, 7106, 731, 1, 0, 0, 0, 7107, 7109, 5, 114, 0, 0, 7108, 7107, 1, 0, 0, 0, 7108, 7109, 1, 0, 0, 0, 7109, 7110, 1, 0, 0, 0, 7110, 7111, 7, 115, 0, 0, 7111, 733, 1, 0, 0, 0, 7112, 7125, 3, 726, 363, 0, 7113, 7125, 3, 722, 361, 0, 7114, 7115, 5, 854, 0, 0, 7115, 7125, 3, 722, 361, 0, 7116, 7125, 3, 730, 365, 0, 7117, 7125, 3, 728, 364, 0, 7118, 7125, 5, 885, 0, 0, 7119, 7125, 5, 887, 0, 0, 7120, 7122, 5, 114, 0, 0, 7121, 7120, 1, 0, 0, 0, 7121, 7122, 1, 0, 0, 0, 7122, 7123, 1, 0, 0, 0, 7123, 7125, 7, 115, 0, 0, 7124, 7112, 1, 0, 0, 0, 7124, 7113, 1, 0, 0, 0, 7124, 7114, 1, 0, 0, 0, 7124, 7116, 1, 0, 0, 0, 7124, 7117, 1, 0, 0, 0, 7124, 7118, 1, 0, 0, 0, 7124, 7119, 1, 0, 0, 0, 7124, 7121, 1, 0, 0, 0, 7125, 735, 1, 0, 0, 0, 7126, 7128, 7, 116, 0, 0, 7127, 7129, 5, 240, 0, 0, 7128, 7127, 1, 0, 0, 0, 7128, 7129, 1, 0, 0, 0, 7129, 7131, 1, 0, 0, 0, 7130, 7132, 3, 742, 371, 0, 7131, 7130, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7134, 1, 0, 0, 0, 7133, 7135, 5, 228, 0, 0, 7134, 7133, 1, 0, 0, 0, 7134, 7135, 1, 0, 0, 0, 7135, 7139, 1, 0, 0, 0, 7136, 7137, 3, 58, 29, 0, 7137, 7138, 3, 698, 349, 0, 7138, 7140, 1, 0, 0, 0, 7139, 7136, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7144, 1, 0, 0, 0, 7141, 7142, 5, 28, 0, 0, 7142, 7145, 3, 700, 350, 0, 7143, 7145, 5, 228, 0, 0, 7144, 7141, 1, 0, 0, 0, 7144, 7143, 1, 0, 0, 0, 7144, 7145, 1, 0, 0, 0, 7145, 7253, 1, 0, 0, 0, 7146, 7147, 5, 227, 0, 0, 7147, 7148, 7, 117, 0, 0, 7148, 7150, 5, 240, 0, 0, 7149, 7151, 3, 742, 371, 0, 7150, 7149, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7153, 1, 0, 0, 0, 7152, 7154, 5, 228, 0, 0, 7153, 7152, 1, 0, 0, 0, 7153, 7154, 1, 0, 0, 0, 7154, 7253, 1, 0, 0, 0, 7155, 7156, 5, 227, 0, 0, 7156, 7158, 7, 118, 0, 0, 7157, 7159, 3, 742, 371, 0, 7158, 7157, 1, 0, 0, 0, 7158, 7159, 1, 0, 0, 0, 7159, 7161, 1, 0, 0, 0, 7160, 7162, 5, 228, 0, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7253, 1, 0, 0, 0, 7163, 7164, 5, 498, 0, 0, 7164, 7166, 5, 225, 0, 0, 7165, 7167, 3, 742, 371, 0, 7166, 7165, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7169, 1, 0, 0, 0, 7168, 7170, 5, 228, 0, 0, 7169, 7168, 1, 0, 0, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7253, 1, 0, 0, 0, 7171, 7173, 7, 119, 0, 0, 7172, 7174, 3, 742, 371, 0, 7173, 7172, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7178, 1, 0, 0, 0, 7175, 7177, 7, 120, 0, 0, 7176, 7175, 1, 0, 0, 0, 7177, 7180, 1, 0, 0, 0, 7178, 7176, 1, 0, 0, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7253, 1, 0, 0, 0, 7180, 7178, 1, 0, 0, 0, 7181, 7183, 5, 210, 0, 0, 7182, 7184, 3, 744, 372, 0, 7183, 7182, 1, 0, 0, 0, 7183, 7184, 1, 0, 0, 0, 7184, 7188, 1, 0, 0, 0, 7185, 7187, 7, 120, 0, 0, 7186, 7185, 1, 0, 0, 0, 7187, 7190, 1, 0, 0, 0, 7188, 7186, 1, 0, 0, 0, 7188, 7189, 1, 0, 0, 0, 7189, 7253, 1, 0, 0, 0, 7190, 7188, 1, 0, 0, 0, 7191, 7193, 5, 211, 0, 0, 7192, 7194, 5, 212, 0, 0, 7193, 7192, 1, 0, 0, 0, 7193, 7194, 1, 0, 0, 0, 7194, 7196, 1, 0, 0, 0, 7195, 7197, 3, 744, 372, 0, 7196, 7195, 1, 0, 0, 0, 7196, 7197, 1, 0, 0, 0, 7197, 7201, 1, 0, 0, 0, 7198, 7200, 7, 120, 0, 0, 7199, 7198, 1, 0, 0, 0, 7200, 7203, 1, 0, 0, 0, 7201, 7199, 1, 0, 0, 0, 7201, 7202, 1, 0, 0, 0, 7202, 7253, 1, 0, 0, 0, 7203, 7201, 1, 0, 0, 0, 7204, 7206, 7, 121, 0, 0, 7205, 7207, 3, 746, 373, 0, 7206, 7205, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7211, 1, 0, 0, 0, 7208, 7210, 7, 120, 0, 0, 7209, 7208, 1, 0, 0, 0, 7210, 7213, 1, 0, 0, 0, 7211, 7209, 1, 0, 0, 0, 7211, 7212, 1, 0, 0, 0, 7212, 7253, 1, 0, 0, 0, 7213, 7211, 1, 0, 0, 0, 7214, 7253, 7, 122, 0, 0, 7215, 7217, 7, 123, 0, 0, 7216, 7218, 3, 742, 371, 0, 7217, 7216, 1, 0, 0, 0, 7217, 7218, 1, 0, 0, 0, 7218, 7253, 1, 0, 0, 0, 7219, 7220, 7, 124, 0, 0, 7220, 7222, 3, 738, 369, 0, 7221, 7223, 5, 228, 0, 0, 7222, 7221, 1, 0, 0, 0, 7222, 7223, 1, 0, 0, 0, 7223, 7227, 1, 0, 0, 0, 7224, 7225, 3, 58, 29, 0, 7225, 7226, 3, 698, 349, 0, 7226, 7228, 1, 0, 0, 0, 7227, 7224, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 7253, 1, 0, 0, 0, 7229, 7232, 7, 125, 0, 0, 7230, 7231, 5, 834, 0, 0, 7231, 7233, 3, 722, 361, 0, 7232, 7230, 1, 0, 0, 0, 7232, 7233, 1, 0, 0, 0, 7233, 7253, 1, 0, 0, 0, 7234, 7236, 5, 233, 0, 0, 7235, 7237, 5, 225, 0, 0, 7236, 7235, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7239, 1, 0, 0, 0, 7238, 7240, 5, 228, 0, 0, 7239, 7238, 1, 0, 0, 0, 7239, 7240, 1, 0, 0, 0, 7240, 7244, 1, 0, 0, 0, 7241, 7242, 3, 58, 29, 0, 7242, 7243, 3, 698, 349, 0, 7243, 7245, 1, 0, 0, 0, 7244, 7241, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7248, 1, 0, 0, 0, 7246, 7247, 5, 28, 0, 0, 7247, 7249, 3, 700, 350, 0, 7248, 7246, 1, 0, 0, 0, 7248, 7249, 1, 0, 0, 0, 7249, 7253, 1, 0, 0, 0, 7250, 7251, 5, 233, 0, 0, 7251, 7253, 5, 229, 0, 0, 7252, 7126, 1, 0, 0, 0, 7252, 7146, 1, 0, 0, 0, 7252, 7155, 1, 0, 0, 0, 7252, 7163, 1, 0, 0, 0, 7252, 7171, 1, 0, 0, 0, 7252, 7181, 1, 0, 0, 0, 7252, 7191, 1, 0, 0, 0, 7252, 7204, 1, 0, 0, 0, 7252, 7214, 1, 0, 0, 0, 7252, 7215, 1, 0, 0, 0, 7252, 7219, 1, 0, 0, 0, 7252, 7229, 1, 0, 0, 0, 7252, 7234, 1, 0, 0, 0, 7252, 7250, 1, 0, 0, 0, 7253, 737, 1, 0, 0, 0, 7254, 7255, 5, 866, 0, 0, 7255, 7260, 5, 882, 0, 0, 7256, 7257, 5, 868, 0, 0, 7257, 7259, 5, 882, 0, 0, 7258, 7256, 1, 0, 0, 0, 7259, 7262, 1, 0, 0, 0, 7260, 7258, 1, 0, 0, 0, 7260, 7261, 1, 0, 0, 0, 7261, 7263, 1, 0, 0, 0, 7262, 7260, 1, 0, 0, 0, 7263, 7264, 5, 867, 0, 0, 7264, 739, 1, 0, 0, 0, 7265, 7267, 7, 126, 0, 0, 7266, 7268, 3, 742, 371, 0, 7267, 7266, 1, 0, 0, 0, 7267, 7268, 1, 0, 0, 0, 7268, 7288, 1, 0, 0, 0, 7269, 7271, 5, 224, 0, 0, 7270, 7272, 3, 742, 371, 0, 7271, 7270, 1, 0, 0, 0, 7271, 7272, 1, 0, 0, 0, 7272, 7276, 1, 0, 0, 0, 7273, 7274, 3, 58, 29, 0, 7274, 7275, 3, 698, 349, 0, 7275, 7277, 1, 0, 0, 0, 7276, 7273, 1, 0, 0, 0, 7276, 7277, 1, 0, 0, 0, 7277, 7288, 1, 0, 0, 0, 7278, 7288, 7, 127, 0, 0, 7279, 7281, 7, 128, 0, 0, 7280, 7282, 3, 746, 373, 0, 7281, 7280, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7288, 1, 0, 0, 0, 7283, 7285, 7, 129, 0, 0, 7284, 7286, 7, 130, 0, 0, 7285, 7284, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 7288, 1, 0, 0, 0, 7287, 7265, 1, 0, 0, 0, 7287, 7269, 1, 0, 0, 0, 7287, 7278, 1, 0, 0, 0, 7287, 7279, 1, 0, 0, 0, 7287, 7283, 1, 0, 0, 0, 7288, 7290, 1, 0, 0, 0, 7289, 7291, 5, 12, 0, 0, 7290, 7289, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 741, 1, 0, 0, 0, 7292, 7293, 5, 866, 0, 0, 7293, 7294, 3, 722, 361, 0, 7294, 7295, 5, 867, 0, 0, 7295, 743, 1, 0, 0, 0, 7296, 7297, 5, 866, 0, 0, 7297, 7298, 3, 722, 361, 0, 7298, 7299, 5, 868, 0, 0, 7299, 7300, 3, 722, 361, 0, 7300, 7301, 5, 867, 0, 0, 7301, 745, 1, 0, 0, 0, 7302, 7303, 5, 866, 0, 0, 7303, 7306, 3, 722, 361, 0, 7304, 7305, 5, 868, 0, 0, 7305, 7307, 3, 722, 361, 0, 7306, 7304, 1, 0, 0, 0, 7306, 7307, 1, 0, 0, 0, 7307, 7308, 1, 0, 0, 0, 7308, 7309, 5, 867, 0, 0, 7309, 747, 1, 0, 0, 0, 7310, 7311, 5, 866, 0, 0, 7311, 7316, 3, 684, 342, 0, 7312, 7313, 5, 868, 0, 0, 7313, 7315, 3, 684, 342, 0, 7314, 7312, 1, 0, 0, 0, 7315, 7318, 1, 0, 0, 0, 7316, 7314, 1, 0, 0, 0, 7316, 7317, 1, 0, 0, 0, 7317, 7319, 1, 0, 0, 0, 7318, 7316, 1, 0, 0, 0, 7319, 7320, 5, 867, 0, 0, 7320, 749, 1, 0, 0, 0, 7321, 7326, 3, 814, 407, 0, 7322, 7323, 5, 868, 0, 0, 7323, 7325, 3, 814, 407, 0, 7324, 7322, 1, 0, 0, 0, 7325, 7328, 1, 0, 0, 0, 7326, 7324, 1, 0, 0, 0, 7326, 7327, 1, 0, 0, 0, 7327, 751, 1, 0, 0, 0, 7328, 7326, 1, 0, 0, 0, 7329, 7330, 7, 131, 0, 0, 7330, 7335, 3, 754, 377, 0, 7331, 7332, 5, 868, 0, 0, 7332, 7334, 3, 754, 377, 0, 7333, 7331, 1, 0, 0, 0, 7334, 7337, 1, 0, 0, 0, 7335, 7333, 1, 0, 0, 0, 7335, 7336, 1, 0, 0, 0, 7336, 753, 1, 0, 0, 0, 7337, 7335, 1, 0, 0, 0, 7338, 7339, 5, 866, 0, 0, 7339, 7344, 3, 756, 378, 0, 7340, 7341, 5, 868, 0, 0, 7341, 7343, 3, 756, 378, 0, 7342, 7340, 1, 0, 0, 0, 7343, 7346, 1, 0, 0, 0, 7344, 7342, 1, 0, 0, 0, 7344, 7345, 1, 0, 0, 0, 7345, 7347, 1, 0, 0, 0, 7346, 7344, 1, 0, 0, 0, 7347, 7348, 5, 867, 0, 0, 7348, 755, 1, 0, 0, 0, 7349, 7352, 3, 814, 407, 0, 7350, 7352, 5, 42, 0, 0, 7351, 7349, 1, 0, 0, 0, 7351, 7350, 1, 0, 0, 0, 7352, 757, 1, 0, 0, 0, 7353, 7358, 3, 734, 367, 0, 7354, 7355, 5, 868, 0, 0, 7355, 7357, 3, 734, 367, 0, 7356, 7354, 1, 0, 0, 0, 7357, 7360, 1, 0, 0, 0, 7358, 7356, 1, 0, 0, 0, 7358, 7359, 1, 0, 0, 0, 7359, 759, 1, 0, 0, 0, 7360, 7358, 1, 0, 0, 0, 7361, 7366, 5, 882, 0, 0, 7362, 7363, 5, 868, 0, 0, 7363, 7365, 5, 882, 0, 0, 7364, 7362, 1, 0, 0, 0, 7365, 7368, 1, 0, 0, 0, 7366, 7364, 1, 0, 0, 0, 7366, 7367, 1, 0, 0, 0, 7367, 761, 1, 0, 0, 0, 7368, 7366, 1, 0, 0, 0, 7369, 7374, 5, 892, 0, 0, 7370, 7371, 5, 868, 0, 0, 7371, 7373, 5, 892, 0, 0, 7372, 7370, 1, 0, 0, 0, 7373, 7376, 1, 0, 0, 0, 7374, 7372, 1, 0, 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 763, 1, 0, 0, 0, 7376, 7374, 1, 0, 0, 0, 7377, 7404, 5, 116, 0, 0, 7378, 7379, 5, 24, 0, 0, 7379, 7380, 5, 866, 0, 0, 7380, 7381, 3, 814, 407, 0, 7381, 7382, 5, 13, 0, 0, 7382, 7383, 3, 740, 370, 0, 7383, 7384, 5, 867, 0, 0, 7384, 7404, 1, 0, 0, 0, 7385, 7387, 3, 820, 410, 0, 7386, 7385, 1, 0, 0, 0, 7386, 7387, 1, 0, 0, 0, 7387, 7388, 1, 0, 0, 0, 7388, 7404, 3, 734, 367, 0, 7389, 7393, 3, 766, 383, 0, 7390, 7391, 5, 119, 0, 0, 7391, 7392, 5, 185, 0, 0, 7392, 7394, 3, 766, 383, 0, 7393, 7390, 1, 0, 0, 0, 7393, 7394, 1, 0, 0, 0, 7394, 7404, 1, 0, 0, 0, 7395, 7396, 5, 866, 0, 0, 7396, 7397, 3, 814, 407, 0, 7397, 7398, 5, 867, 0, 0, 7398, 7404, 1, 0, 0, 0, 7399, 7400, 5, 866, 0, 0, 7400, 7401, 3, 712, 356, 0, 7401, 7402, 5, 867, 0, 0, 7402, 7404, 1, 0, 0, 0, 7403, 7377, 1, 0, 0, 0, 7403, 7378, 1, 0, 0, 0, 7403, 7386, 1, 0, 0, 0, 7403, 7389, 1, 0, 0, 0, 7403, 7395, 1, 0, 0, 0, 7403, 7399, 1, 0, 0, 0, 7404, 765, 1, 0, 0, 0, 7405, 7411, 7, 132, 0, 0, 7406, 7408, 5, 866, 0, 0, 7407, 7409, 3, 722, 361, 0, 7408, 7407, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 7412, 5, 867, 0, 0, 7411, 7406, 1, 0, 0, 0, 7411, 7412, 1, 0, 0, 0, 7412, 7420, 1, 0, 0, 0, 7413, 7414, 5, 295, 0, 0, 7414, 7416, 5, 866, 0, 0, 7415, 7417, 3, 722, 361, 0, 7416, 7415, 1, 0, 0, 0, 7416, 7417, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 7420, 5, 867, 0, 0, 7419, 7405, 1, 0, 0, 0, 7419, 7413, 1, 0, 0, 0, 7420, 767, 1, 0, 0, 0, 7421, 7422, 5, 78, 0, 0, 7422, 7423, 5, 60, 0, 0, 7423, 769, 1, 0, 0, 0, 7424, 7425, 5, 78, 0, 0, 7425, 7426, 5, 114, 0, 0, 7426, 7427, 5, 60, 0, 0, 7427, 771, 1, 0, 0, 0, 7428, 7429, 5, 124, 0, 0, 7429, 7430, 5, 143, 0, 0, 7430, 773, 1, 0, 0, 0, 7431, 7454, 3, 776, 388, 0, 7432, 7454, 3, 784, 392, 0, 7433, 7454, 3, 786, 393, 0, 7434, 7441, 3, 806, 403, 0, 7435, 7436, 5, 866, 0, 0, 7436, 7442, 5, 867, 0, 0, 7437, 7438, 5, 866, 0, 0, 7438, 7439, 3, 810, 405, 0, 7439, 7440, 5, 867, 0, 0, 7440, 7442, 1, 0, 0, 0, 7441, 7435, 1, 0, 0, 0, 7441, 7437, 1, 0, 0, 0, 7442, 7454, 1, 0, 0, 0, 7443, 7450, 3, 642, 321, 0, 7444, 7445, 5, 866, 0, 0, 7445, 7451, 5, 867, 0, 0, 7446, 7447, 5, 866, 0, 0, 7447, 7448, 3, 810, 405, 0, 7448, 7449, 5, 867, 0, 0, 7449, 7451, 1, 0, 0, 0, 7450, 7444, 1, 0, 0, 0, 7450, 7446, 1, 0, 0, 0, 7451, 7454, 1, 0, 0, 0, 7452, 7454, 3, 808, 404, 0, 7453, 7431, 1, 0, 0, 0, 7453, 7432, 1, 0, 0, 0, 7453, 7433, 1, 0, 0, 0, 7453, 7434, 1, 0, 0, 0, 7453, 7443, 1, 0, 0, 0, 7453, 7452, 1, 0, 0, 0, 7454, 775, 1, 0, 0, 0, 7455, 7458, 7, 133, 0, 0, 7456, 7457, 5, 866, 0, 0, 7457, 7459, 5, 867, 0, 0, 7458, 7456, 1, 0, 0, 0, 7458, 7459, 1, 0, 0, 0, 7459, 7635, 1, 0, 0, 0, 7460, 7635, 3, 60, 30, 0, 7461, 7462, 5, 33, 0, 0, 7462, 7463, 5, 866, 0, 0, 7463, 7464, 3, 814, 407, 0, 7464, 7465, 5, 868, 0, 0, 7465, 7466, 3, 740, 370, 0, 7466, 7467, 5, 867, 0, 0, 7467, 7635, 1, 0, 0, 0, 7468, 7469, 5, 33, 0, 0, 7469, 7470, 5, 866, 0, 0, 7470, 7471, 3, 814, 407, 0, 7471, 7472, 5, 188, 0, 0, 7472, 7473, 3, 698, 349, 0, 7473, 7474, 5, 867, 0, 0, 7474, 7635, 1, 0, 0, 0, 7475, 7476, 5, 24, 0, 0, 7476, 7477, 5, 866, 0, 0, 7477, 7478, 3, 814, 407, 0, 7478, 7479, 5, 13, 0, 0, 7479, 7480, 3, 740, 370, 0, 7480, 7481, 5, 867, 0, 0, 7481, 7635, 1, 0, 0, 0, 7482, 7483, 5, 189, 0, 0, 7483, 7484, 5, 866, 0, 0, 7484, 7485, 3, 672, 336, 0, 7485, 7486, 5, 867, 0, 0, 7486, 7635, 1, 0, 0, 0, 7487, 7489, 5, 23, 0, 0, 7488, 7490, 3, 778, 389, 0, 7489, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7489, 1, 0, 0, 0, 7491, 7492, 1, 0, 0, 0, 7492, 7495, 1, 0, 0, 0, 7493, 7494, 5, 53, 0, 0, 7494, 7496, 3, 812, 406, 0, 7495, 7493, 1, 0, 0, 0, 7495, 7496, 1, 0, 0, 0, 7496, 7497, 1, 0, 0, 0, 7497, 7498, 5, 378, 0, 0, 7498, 7635, 1, 0, 0, 0, 7499, 7500, 5, 23, 0, 0, 7500, 7502, 3, 814, 407, 0, 7501, 7503, 3, 778, 389, 0, 7502, 7501, 1, 0, 0, 0, 7503, 7504, 1, 0, 0, 0, 7504, 7502, 1, 0, 0, 0, 7504, 7505, 1, 0, 0, 0, 7505, 7508, 1, 0, 0, 0, 7506, 7507, 5, 53, 0, 0, 7507, 7509, 3, 812, 406, 0, 7508, 7506, 1, 0, 0, 0, 7508, 7509, 1, 0, 0, 0, 7509, 7510, 1, 0, 0, 0, 7510, 7511, 5, 378, 0, 0, 7511, 7635, 1, 0, 0, 0, 7512, 7513, 5, 224, 0, 0, 7513, 7514, 5, 866, 0, 0, 7514, 7517, 3, 810, 405, 0, 7515, 7516, 5, 188, 0, 0, 7516, 7518, 3, 698, 349, 0, 7517, 7515, 1, 0, 0, 0, 7517, 7518, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7520, 5, 867, 0, 0, 7520, 7635, 1, 0, 0, 0, 7521, 7522, 5, 296, 0, 0, 7522, 7525, 5, 866, 0, 0, 7523, 7526, 3, 726, 363, 0, 7524, 7526, 3, 814, 407, 0, 7525, 7523, 1, 0, 0, 0, 7525, 7524, 1, 0, 0, 0, 7526, 7527, 1, 0, 0, 0, 7527, 7530, 5, 80, 0, 0, 7528, 7531, 3, 726, 363, 0, 7529, 7531, 3, 814, 407, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7529, 1, 0, 0, 0, 7531, 7532, 1, 0, 0, 0, 7532, 7533, 5, 867, 0, 0, 7533, 7635, 1, 0, 0, 0, 7534, 7535, 7, 134, 0, 0, 7535, 7538, 5, 866, 0, 0, 7536, 7539, 3, 726, 363, 0, 7537, 7539, 3, 814, 407, 0, 7538, 7536, 1, 0, 0, 0, 7538, 7537, 1, 0, 0, 0, 7539, 7540, 1, 0, 0, 0, 7540, 7543, 5, 68, 0, 0, 7541, 7544, 3, 722, 361, 0, 7542, 7544, 3, 814, 407, 0, 7543, 7541, 1, 0, 0, 0, 7543, 7542, 1, 0, 0, 0, 7544, 7550, 1, 0, 0, 0, 7545, 7548, 5, 65, 0, 0, 7546, 7549, 3, 722, 361, 0, 7547, 7549, 3, 814, 407, 0, 7548, 7546, 1, 0, 0, 0, 7548, 7547, 1, 0, 0, 0, 7549, 7551, 1, 0, 0, 0, 7550, 7545, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7552, 1, 0, 0, 0, 7552, 7553, 5, 867, 0, 0, 7553, 7635, 1, 0, 0, 0, 7554, 7555, 5, 300, 0, 0, 7555, 7556, 5, 866, 0, 0, 7556, 7559, 7, 135, 0, 0, 7557, 7560, 3, 726, 363, 0, 7558, 7560, 3, 814, 407, 0, 7559, 7557, 1, 0, 0, 0, 7559, 7558, 1, 0, 0, 0, 7559, 7560, 1, 0, 0, 0, 7560, 7561, 1, 0, 0, 0, 7561, 7564, 5, 68, 0, 0, 7562, 7565, 3, 726, 363, 0, 7563, 7565, 3, 814, 407, 0, 7564, 7562, 1, 0, 0, 0, 7564, 7563, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7567, 5, 867, 0, 0, 7567, 7635, 1, 0, 0, 0, 7568, 7569, 5, 300, 0, 0, 7569, 7572, 5, 866, 0, 0, 7570, 7573, 3, 726, 363, 0, 7571, 7573, 3, 814, 407, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7571, 1, 0, 0, 0, 7573, 7574, 1, 0, 0, 0, 7574, 7577, 5, 68, 0, 0, 7575, 7578, 3, 726, 363, 0, 7576, 7578, 3, 814, 407, 0, 7577, 7575, 1, 0, 0, 0, 7577, 7576, 1, 0, 0, 0, 7578, 7579, 1, 0, 0, 0, 7579, 7580, 5, 867, 0, 0, 7580, 7635, 1, 0, 0, 0, 7581, 7582, 5, 840, 0, 0, 7582, 7585, 5, 866, 0, 0, 7583, 7586, 3, 726, 363, 0, 7584, 7586, 3, 814, 407, 0, 7585, 7583, 1, 0, 0, 0, 7585, 7584, 1, 0, 0, 0, 7586, 7593, 1, 0, 0, 0, 7587, 7588, 5, 13, 0, 0, 7588, 7589, 7, 136, 0, 0, 7589, 7590, 5, 866, 0, 0, 7590, 7591, 3, 722, 361, 0, 7591, 7592, 5, 867, 0, 0, 7592, 7594, 1, 0, 0, 0, 7593, 7587, 1, 0, 0, 0, 7593, 7594, 1, 0, 0, 0, 7594, 7596, 1, 0, 0, 0, 7595, 7597, 3, 780, 390, 0, 7596, 7595, 1, 0, 0, 0, 7596, 7597, 1, 0, 0, 0, 7597, 7598, 1, 0, 0, 0, 7598, 7599, 5, 867, 0, 0, 7599, 7635, 1, 0, 0, 0, 7600, 7601, 5, 293, 0, 0, 7601, 7602, 5, 866, 0, 0, 7602, 7603, 3, 70, 35, 0, 7603, 7606, 5, 68, 0, 0, 7604, 7607, 3, 726, 363, 0, 7605, 7607, 3, 814, 407, 0, 7606, 7604, 1, 0, 0, 0, 7606, 7605, 1, 0, 0, 0, 7607, 7608, 1, 0, 0, 0, 7608, 7609, 5, 867, 0, 0, 7609, 7635, 1, 0, 0, 0, 7610, 7611, 5, 827, 0, 0, 7611, 7612, 5, 866, 0, 0, 7612, 7613, 7, 137, 0, 0, 7613, 7614, 5, 868, 0, 0, 7614, 7615, 3, 726, 363, 0, 7615, 7616, 5, 867, 0, 0, 7616, 7635, 1, 0, 0, 0, 7617, 7618, 5, 254, 0, 0, 7618, 7619, 5, 866, 0, 0, 7619, 7620, 3, 814, 407, 0, 7620, 7621, 5, 868, 0, 0, 7621, 7624, 3, 814, 407, 0, 7622, 7623, 5, 579, 0, 0, 7623, 7625, 3, 740, 370, 0, 7624, 7622, 1, 0, 0, 0, 7624, 7625, 1, 0, 0, 0, 7625, 7627, 1, 0, 0, 0, 7626, 7628, 3, 294, 147, 0, 7627, 7626, 1, 0, 0, 0, 7627, 7628, 1, 0, 0, 0, 7628, 7630, 1, 0, 0, 0, 7629, 7631, 3, 296, 148, 0, 7630, 7629, 1, 0, 0, 0, 7630, 7631, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 7633, 5, 867, 0, 0, 7633, 7635, 1, 0, 0, 0, 7634, 7455, 1, 0, 0, 0, 7634, 7460, 1, 0, 0, 0, 7634, 7461, 1, 0, 0, 0, 7634, 7468, 1, 0, 0, 0, 7634, 7475, 1, 0, 0, 0, 7634, 7482, 1, 0, 0, 0, 7634, 7487, 1, 0, 0, 0, 7634, 7499, 1, 0, 0, 0, 7634, 7512, 1, 0, 0, 0, 7634, 7521, 1, 0, 0, 0, 7634, 7534, 1, 0, 0, 0, 7634, 7554, 1, 0, 0, 0, 7634, 7568, 1, 0, 0, 0, 7634, 7581, 1, 0, 0, 0, 7634, 7600, 1, 0, 0, 0, 7634, 7610, 1, 0, 0, 0, 7634, 7617, 1, 0, 0, 0, 7635, 777, 1, 0, 0, 0, 7636, 7637, 5, 191, 0, 0, 7637, 7638, 3, 812, 406, 0, 7638, 7639, 5, 175, 0, 0, 7639, 7640, 3, 812, 406, 0, 7640, 779, 1, 0, 0, 0, 7641, 7642, 5, 448, 0, 0, 7642, 7647, 3, 782, 391, 0, 7643, 7644, 5, 868, 0, 0, 7644, 7646, 3, 782, 391, 0, 7645, 7643, 1, 0, 0, 0, 7646, 7649, 1, 0, 0, 0, 7647, 7645, 1, 0, 0, 0, 7647, 7648, 1, 0, 0, 0, 7648, 7656, 1, 0, 0, 0, 7649, 7647, 1, 0, 0, 0, 7650, 7651, 5, 448, 0, 0, 7651, 7652, 3, 722, 361, 0, 7652, 7653, 5, 854, 0, 0, 7653, 7654, 3, 722, 361, 0, 7654, 7656, 1, 0, 0, 0, 7655, 7641, 1, 0, 0, 0, 7655, 7650, 1, 0, 0, 0, 7656, 781, 1, 0, 0, 0, 7657, 7659, 3, 722, 361, 0, 7658, 7660, 7, 138, 0, 0, 7659, 7658, 1, 0, 0, 0, 7659, 7660, 1, 0, 0, 0, 7660, 783, 1, 0, 0, 0, 7661, 7662, 7, 139, 0, 0, 7662, 7664, 5, 866, 0, 0, 7663, 7665, 7, 45, 0, 0, 7664, 7663, 1, 0, 0, 0, 7664, 7665, 1, 0, 0, 0, 7665, 7666, 1, 0, 0, 0, 7666, 7667, 3, 812, 406, 0, 7667, 7669, 5, 867, 0, 0, 7668, 7670, 3, 788, 394, 0, 7669, 7668, 1, 0, 0, 0, 7669, 7670, 1, 0, 0, 0, 7670, 7721, 1, 0, 0, 0, 7671, 7672, 5, 262, 0, 0, 7672, 7680, 5, 866, 0, 0, 7673, 7681, 5, 850, 0, 0, 7674, 7676, 5, 7, 0, 0, 7675, 7674, 1, 0, 0, 0, 7675, 7676, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 7681, 3, 812, 406, 0, 7678, 7679, 5, 49, 0, 0, 7679, 7681, 3, 810, 405, 0, 7680, 7673, 1, 0, 0, 0, 7680, 7675, 1, 0, 0, 0, 7680, 7678, 1, 0, 0, 0, 7681, 7682, 1, 0, 0, 0, 7682, 7684, 5, 867, 0, 0, 7683, 7685, 3, 788, 394, 0, 7684, 7683, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7721, 1, 0, 0, 0, 7686, 7687, 7, 140, 0, 0, 7687, 7689, 5, 866, 0, 0, 7688, 7690, 5, 7, 0, 0, 7689, 7688, 1, 0, 0, 0, 7689, 7690, 1, 0, 0, 0, 7690, 7691, 1, 0, 0, 0, 7691, 7692, 3, 812, 406, 0, 7692, 7694, 5, 867, 0, 0, 7693, 7695, 3, 788, 394, 0, 7694, 7693, 1, 0, 0, 0, 7694, 7695, 1, 0, 0, 0, 7695, 7721, 1, 0, 0, 0, 7696, 7697, 5, 266, 0, 0, 7697, 7699, 5, 866, 0, 0, 7698, 7700, 5, 49, 0, 0, 7699, 7698, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 7701, 1, 0, 0, 0, 7701, 7712, 3, 810, 405, 0, 7702, 7703, 5, 125, 0, 0, 7703, 7704, 5, 20, 0, 0, 7704, 7709, 3, 260, 130, 0, 7705, 7706, 5, 868, 0, 0, 7706, 7708, 3, 260, 130, 0, 7707, 7705, 1, 0, 0, 0, 7708, 7711, 1, 0, 0, 0, 7709, 7707, 1, 0, 0, 0, 7709, 7710, 1, 0, 0, 0, 7710, 7713, 1, 0, 0, 0, 7711, 7709, 1, 0, 0, 0, 7712, 7702, 1, 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 7716, 1, 0, 0, 0, 7714, 7715, 5, 156, 0, 0, 7715, 7717, 5, 882, 0, 0, 7716, 7714, 1, 0, 0, 0, 7716, 7717, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 7719, 5, 867, 0, 0, 7719, 7721, 1, 0, 0, 0, 7720, 7661, 1, 0, 0, 0, 7720, 7671, 1, 0, 0, 0, 7720, 7686, 1, 0, 0, 0, 7720, 7696, 1, 0, 0, 0, 7721, 785, 1, 0, 0, 0, 7722, 7723, 7, 141, 0, 0, 7723, 7724, 5, 866, 0, 0, 7724, 7727, 3, 814, 407, 0, 7725, 7726, 5, 868, 0, 0, 7726, 7728, 3, 722, 361, 0, 7727, 7725, 1, 0, 0, 0, 7727, 7728, 1, 0, 0, 0, 7728, 7731, 1, 0, 0, 0, 7729, 7730, 5, 868, 0, 0, 7730, 7732, 3, 722, 361, 0, 7731, 7729, 1, 0, 0, 0, 7731, 7732, 1, 0, 0, 0, 7732, 7733, 1, 0, 0, 0, 7733, 7734, 5, 867, 0, 0, 7734, 7735, 3, 788, 394, 0, 7735, 7761, 1, 0, 0, 0, 7736, 7737, 7, 142, 0, 0, 7737, 7738, 5, 866, 0, 0, 7738, 7739, 3, 814, 407, 0, 7739, 7740, 5, 867, 0, 0, 7740, 7741, 3, 788, 394, 0, 7741, 7761, 1, 0, 0, 0, 7742, 7743, 7, 143, 0, 0, 7743, 7744, 5, 866, 0, 0, 7744, 7745, 5, 867, 0, 0, 7745, 7761, 3, 788, 394, 0, 7746, 7747, 5, 273, 0, 0, 7747, 7748, 5, 866, 0, 0, 7748, 7749, 3, 814, 407, 0, 7749, 7750, 5, 868, 0, 0, 7750, 7751, 3, 722, 361, 0, 7751, 7752, 5, 867, 0, 0, 7752, 7753, 3, 788, 394, 0, 7753, 7761, 1, 0, 0, 0, 7754, 7755, 5, 272, 0, 0, 7755, 7756, 5, 866, 0, 0, 7756, 7757, 3, 722, 361, 0, 7757, 7758, 5, 867, 0, 0, 7758, 7759, 3, 788, 394, 0, 7759, 7761, 1, 0, 0, 0, 7760, 7722, 1, 0, 0, 0, 7760, 7736, 1, 0, 0, 0, 7760, 7742, 1, 0, 0, 0, 7760, 7746, 1, 0, 0, 0, 7760, 7754, 1, 0, 0, 0, 7761, 787, 1, 0, 0, 0, 7762, 7768, 5, 129, 0, 0, 7763, 7764, 5, 866, 0, 0, 7764, 7765, 3, 790, 395, 0, 7765, 7766, 5, 867, 0, 0, 7766, 7769, 1, 0, 0, 0, 7767, 7769, 3, 792, 396, 0, 7768, 7763, 1, 0, 0, 0, 7768, 7767, 1, 0, 0, 0, 7769, 789, 1, 0, 0, 0, 7770, 7772, 3, 792, 396, 0, 7771, 7770, 1, 0, 0, 0, 7771, 7772, 1, 0, 0, 0, 7772, 7774, 1, 0, 0, 0, 7773, 7775, 3, 804, 402, 0, 7774, 7773, 1, 0, 0, 0, 7774, 7775, 1, 0, 0, 0, 7775, 7777, 1, 0, 0, 0, 7776, 7778, 3, 258, 129, 0, 7777, 7776, 1, 0, 0, 0, 7777, 7778, 1, 0, 0, 0, 7778, 7780, 1, 0, 0, 0, 7779, 7781, 3, 794, 397, 0, 7780, 7779, 1, 0, 0, 0, 7780, 7781, 1, 0, 0, 0, 7781, 791, 1, 0, 0, 0, 7782, 7783, 3, 716, 358, 0, 7783, 793, 1, 0, 0, 0, 7784, 7785, 3, 796, 398, 0, 7785, 7786, 3, 798, 399, 0, 7786, 795, 1, 0, 0, 0, 7787, 7788, 7, 144, 0, 0, 7788, 797, 1, 0, 0, 0, 7789, 7792, 3, 802, 401, 0, 7790, 7792, 3, 800, 400, 0, 7791, 7789, 1, 0, 0, 0, 7791, 7790, 1, 0, 0, 0, 7792, 799, 1, 0, 0, 0, 7793, 7794, 5, 17, 0, 0, 7794, 7795, 3, 802, 401, 0, 7795, 7796, 5, 11, 0, 0, 7796, 7797, 3, 802, 401, 0, 7797, 801, 1, 0, 0, 0, 7798, 7799, 5, 36, 0, 0, 7799, 7806, 5, 586, 0, 0, 7800, 7801, 5, 669, 0, 0, 7801, 7806, 7, 145, 0, 0, 7802, 7803, 3, 814, 407, 0, 7803, 7804, 7, 145, 0, 0, 7804, 7806, 1, 0, 0, 0, 7805, 7798, 1, 0, 0, 0, 7805, 7800, 1, 0, 0, 0, 7805, 7802, 1, 0, 0, 0, 7806, 803, 1, 0, 0, 0, 7807, 7808, 5, 130, 0, 0, 7808, 7809, 5, 20, 0, 0, 7809, 7814, 3, 814, 407, 0, 7810, 7811, 5, 868, 0, 0, 7811, 7813, 3, 814, 407, 0, 7812, 7810, 1, 0, 0, 0, 7813, 7816, 1, 0, 0, 0, 7814, 7812, 1, 0, 0, 0, 7814, 7815, 1, 0, 0, 0, 7815, 805, 1, 0, 0, 0, 7816, 7814, 1, 0, 0, 0, 7817, 7842, 3, 846, 423, 0, 7818, 7842, 5, 757, 0, 0, 7819, 7842, 5, 289, 0, 0, 7820, 7842, 5, 285, 0, 0, 7821, 7842, 5, 286, 0, 0, 7822, 7842, 5, 287, 0, 0, 7823, 7842, 5, 290, 0, 0, 7824, 7842, 5, 291, 0, 0, 7825, 7842, 5, 292, 0, 0, 7826, 7842, 5, 78, 0, 0, 7827, 7842, 5, 86, 0, 0, 7828, 7842, 5, 288, 0, 0, 7829, 7842, 5, 294, 0, 0, 7830, 7842, 5, 488, 0, 0, 7831, 7842, 5, 295, 0, 0, 7832, 7842, 5, 142, 0, 0, 7833, 7842, 5, 143, 0, 0, 7834, 7842, 5, 297, 0, 0, 7835, 7842, 5, 298, 0, 0, 7836, 7842, 5, 299, 0, 0, 7837, 7842, 5, 300, 0, 0, 7838, 7842, 5, 301, 0, 0, 7839, 7842, 5, 302, 0, 0, 7840, 7842, 5, 303, 0, 0, 7841, 7817, 1, 0, 0, 0, 7841, 7818, 1, 0, 0, 0, 7841, 7819, 1, 0, 0, 0, 7841, 7820, 1, 0, 0, 0, 7841, 7821, 1, 0, 0, 0, 7841, 7822, 1, 0, 0, 0, 7841, 7823, 1, 0, 0, 0, 7841, 7824, 1, 0, 0, 0, 7841, 7825, 1, 0, 0, 0, 7841, 7826, 1, 0, 0, 0, 7841, 7827, 1, 0, 0, 0, 7841, 7828, 1, 0, 0, 0, 7841, 7829, 1, 0, 0, 0, 7841, 7830, 1, 0, 0, 0, 7841, 7831, 1, 0, 0, 0, 7841, 7832, 1, 0, 0, 0, 7841, 7833, 1, 0, 0, 0, 7841, 7834, 1, 0, 0, 0, 7841, 7835, 1, 0, 0, 0, 7841, 7836, 1, 0, 0, 0, 7841, 7837, 1, 0, 0, 0, 7841, 7838, 1, 0, 0, 0, 7841, 7839, 1, 0, 0, 0, 7841, 7840, 1, 0, 0, 0, 7842, 807, 1, 0, 0, 0, 7843, 7844, 7, 146, 0, 0, 7844, 7845, 5, 866, 0, 0, 7845, 7846, 3, 812, 406, 0, 7846, 7847, 5, 867, 0, 0, 7847, 809, 1, 0, 0, 0, 7848, 7853, 3, 812, 406, 0, 7849, 7850, 5, 868, 0, 0, 7850, 7852, 3, 812, 406, 0, 7851, 7849, 1, 0, 0, 0, 7852, 7855, 1, 0, 0, 0, 7853, 7851, 1, 0, 0, 0, 7853, 7854, 1, 0, 0, 0, 7854, 811, 1, 0, 0, 0, 7855, 7853, 1, 0, 0, 0, 7856, 7860, 3, 734, 367, 0, 7857, 7860, 3, 774, 387, 0, 7858, 7860, 3, 814, 407, 0, 7859, 7856, 1, 0, 0, 0, 7859, 7857, 1, 0, 0, 0, 7859, 7858, 1, 0, 0, 0, 7860, 813, 1, 0, 0, 0, 7861, 7862, 6, 407, -1, 0, 7862, 7863, 7, 147, 0, 0, 7863, 7873, 3, 814, 407, 4, 7864, 7865, 3, 816, 408, 0, 7865, 7867, 5, 89, 0, 0, 7866, 7868, 5, 114, 0, 0, 7867, 7866, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 7869, 1, 0, 0, 0, 7869, 7870, 7, 148, 0, 0, 7870, 7873, 1, 0, 0, 0, 7871, 7873, 3, 816, 408, 0, 7872, 7861, 1, 0, 0, 0, 7872, 7864, 1, 0, 0, 0, 7872, 7871, 1, 0, 0, 0, 7873, 7880, 1, 0, 0, 0, 7874, 7875, 10, 3, 0, 0, 7875, 7876, 3, 826, 413, 0, 7876, 7877, 3, 814, 407, 4, 7877, 7879, 1, 0, 0, 0, 7878, 7874, 1, 0, 0, 0, 7879, 7882, 1, 0, 0, 0, 7880, 7878, 1, 0, 0, 0, 7880, 7881, 1, 0, 0, 0, 7881, 815, 1, 0, 0, 0, 7882, 7880, 1, 0, 0, 0, 7883, 7884, 6, 408, -1, 0, 7884, 7885, 3, 818, 409, 0, 7885, 7949, 1, 0, 0, 0, 7886, 7888, 10, 6, 0, 0, 7887, 7889, 5, 114, 0, 0, 7888, 7887, 1, 0, 0, 0, 7888, 7889, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7891, 5, 17, 0, 0, 7891, 7892, 3, 816, 408, 0, 7892, 7893, 5, 11, 0, 0, 7893, 7894, 3, 816, 408, 7, 7894, 7948, 1, 0, 0, 0, 7895, 7896, 10, 5, 0, 0, 7896, 7897, 5, 604, 0, 0, 7897, 7898, 5, 99, 0, 0, 7898, 7948, 3, 816, 408, 6, 7899, 7901, 10, 3, 0, 0, 7900, 7902, 5, 114, 0, 0, 7901, 7900, 1, 0, 0, 0, 7901, 7902, 1, 0, 0, 0, 7902, 7903, 1, 0, 0, 0, 7903, 7904, 7, 149, 0, 0, 7904, 7948, 3, 816, 408, 4, 7905, 7907, 10, 9, 0, 0, 7906, 7908, 5, 114, 0, 0, 7907, 7906, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7909, 1, 0, 0, 0, 7909, 7910, 5, 80, 0, 0, 7910, 7913, 5, 866, 0, 0, 7911, 7914, 3, 210, 105, 0, 7912, 7914, 3, 750, 375, 0, 7913, 7911, 1, 0, 0, 0, 7913, 7912, 1, 0, 0, 0, 7914, 7915, 1, 0, 0, 0, 7915, 7916, 5, 867, 0, 0, 7916, 7948, 1, 0, 0, 0, 7917, 7918, 10, 8, 0, 0, 7918, 7919, 5, 89, 0, 0, 7919, 7948, 3, 732, 366, 0, 7920, 7921, 10, 7, 0, 0, 7921, 7928, 3, 822, 411, 0, 7922, 7923, 7, 150, 0, 0, 7923, 7924, 5, 866, 0, 0, 7924, 7925, 3, 210, 105, 0, 7925, 7926, 5, 867, 0, 0, 7926, 7929, 1, 0, 0, 0, 7927, 7929, 3, 816, 408, 0, 7928, 7922, 1, 0, 0, 0, 7928, 7927, 1, 0, 0, 0, 7929, 7948, 1, 0, 0, 0, 7930, 7932, 10, 4, 0, 0, 7931, 7933, 5, 114, 0, 0, 7932, 7931, 1, 0, 0, 0, 7932, 7933, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 7935, 5, 99, 0, 0, 7935, 7938, 3, 816, 408, 0, 7936, 7937, 5, 384, 0, 0, 7937, 7939, 5, 882, 0, 0, 7938, 7936, 1, 0, 0, 0, 7938, 7939, 1, 0, 0, 0, 7939, 7948, 1, 0, 0, 0, 7940, 7941, 10, 2, 0, 0, 7941, 7942, 5, 485, 0, 0, 7942, 7943, 5, 510, 0, 0, 7943, 7944, 5, 866, 0, 0, 7944, 7945, 3, 816, 408, 0, 7945, 7946, 5, 867, 0, 0, 7946, 7948, 1, 0, 0, 0, 7947, 7886, 1, 0, 0, 0, 7947, 7895, 1, 0, 0, 0, 7947, 7899, 1, 0, 0, 0, 7947, 7905, 1, 0, 0, 0, 7947, 7917, 1, 0, 0, 0, 7947, 7920, 1, 0, 0, 0, 7947, 7930, 1, 0, 0, 0, 7947, 7940, 1, 0, 0, 0, 7948, 7951, 1, 0, 0, 0, 7949, 7947, 1, 0, 0, 0, 7949, 7950, 1, 0, 0, 0, 7950, 817, 1, 0, 0, 0, 7951, 7949, 1, 0, 0, 0, 7952, 7953, 6, 409, -1, 0, 7953, 8001, 3, 734, 367, 0, 7954, 8001, 3, 774, 387, 0, 7955, 8001, 3, 696, 348, 0, 7956, 7957, 3, 820, 410, 0, 7957, 7958, 3, 818, 409, 12, 7958, 8001, 1, 0, 0, 0, 7959, 7960, 5, 228, 0, 0, 7960, 8001, 3, 818, 409, 11, 7961, 7962, 5, 892, 0, 0, 7962, 7963, 5, 841, 0, 0, 7963, 8001, 3, 818, 409, 10, 7964, 7965, 5, 866, 0, 0, 7965, 7970, 3, 814, 407, 0, 7966, 7967, 5, 868, 0, 0, 7967, 7969, 3, 814, 407, 0, 7968, 7966, 1, 0, 0, 0, 7969, 7972, 1, 0, 0, 0, 7970, 7968, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 7973, 1, 0, 0, 0, 7972, 7970, 1, 0, 0, 0, 7973, 7974, 5, 867, 0, 0, 7974, 8001, 1, 0, 0, 0, 7975, 7976, 5, 586, 0, 0, 7976, 7977, 5, 866, 0, 0, 7977, 7980, 3, 814, 407, 0, 7978, 7979, 5, 868, 0, 0, 7979, 7981, 3, 814, 407, 0, 7980, 7978, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 7980, 1, 0, 0, 0, 7982, 7983, 1, 0, 0, 0, 7983, 7984, 1, 0, 0, 0, 7984, 7985, 5, 867, 0, 0, 7985, 8001, 1, 0, 0, 0, 7986, 7987, 5, 60, 0, 0, 7987, 7988, 5, 866, 0, 0, 7988, 7989, 3, 210, 105, 0, 7989, 7990, 5, 867, 0, 0, 7990, 8001, 1, 0, 0, 0, 7991, 7992, 5, 866, 0, 0, 7992, 7993, 3, 210, 105, 0, 7993, 7994, 5, 867, 0, 0, 7994, 8001, 1, 0, 0, 0, 7995, 7996, 5, 87, 0, 0, 7996, 7997, 3, 814, 407, 0, 7997, 7998, 3, 70, 35, 0, 7998, 8001, 1, 0, 0, 0, 7999, 8001, 3, 672, 336, 0, 8000, 7952, 1, 0, 0, 0, 8000, 7954, 1, 0, 0, 0, 8000, 7955, 1, 0, 0, 0, 8000, 7956, 1, 0, 0, 0, 8000, 7959, 1, 0, 0, 0, 8000, 7961, 1, 0, 0, 0, 8000, 7964, 1, 0, 0, 0, 8000, 7975, 1, 0, 0, 0, 8000, 7986, 1, 0, 0, 0, 8000, 7991, 1, 0, 0, 0, 8000, 7995, 1, 0, 0, 0, 8000, 7999, 1, 0, 0, 0, 8001, 8019, 1, 0, 0, 0, 8002, 8003, 10, 4, 0, 0, 8003, 8004, 3, 832, 416, 0, 8004, 8005, 3, 818, 409, 5, 8005, 8018, 1, 0, 0, 0, 8006, 8007, 10, 3, 0, 0, 8007, 8008, 3, 828, 414, 0, 8008, 8009, 3, 818, 409, 4, 8009, 8018, 1, 0, 0, 0, 8010, 8011, 10, 2, 0, 0, 8011, 8012, 3, 830, 415, 0, 8012, 8013, 3, 818, 409, 3, 8013, 8018, 1, 0, 0, 0, 8014, 8015, 10, 14, 0, 0, 8015, 8016, 5, 28, 0, 0, 8016, 8018, 3, 700, 350, 0, 8017, 8002, 1, 0, 0, 0, 8017, 8006, 1, 0, 0, 0, 8017, 8010, 1, 0, 0, 0, 8017, 8014, 1, 0, 0, 0, 8018, 8021, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 819, 1, 0, 0, 0, 8021, 8019, 1, 0, 0, 0, 8022, 8023, 7, 151, 0, 0, 8023, 821, 1, 0, 0, 0, 8024, 8025, 5, 859, 0, 0, 8025, 8033, 5, 858, 0, 0, 8026, 8027, 5, 860, 0, 0, 8027, 8033, 5, 857, 0, 0, 8028, 8029, 5, 859, 0, 0, 8029, 8030, 5, 857, 0, 0, 8030, 8033, 5, 858, 0, 0, 8031, 8033, 3, 824, 412, 0, 8032, 8024, 1, 0, 0, 0, 8032, 8026, 1, 0, 0, 0, 8032, 8028, 1, 0, 0, 0, 8032, 8031, 1, 0, 0, 0, 8033, 823, 1, 0, 0, 0, 8034, 8035, 5, 859, 0, 0, 8035, 8042, 5, 857, 0, 0, 8036, 8037, 5, 858, 0, 0, 8037, 8042, 5, 857, 0, 0, 8038, 8042, 5, 857, 0, 0, 8039, 8042, 5, 858, 0, 0, 8040, 8042, 5, 859, 0, 0, 8041, 8034, 1, 0, 0, 0, 8041, 8036, 1, 0, 0, 0, 8041, 8038, 1, 0, 0, 0, 8041, 8039, 1, 0, 0, 0, 8041, 8040, 1, 0, 0, 0, 8042, 825, 1, 0, 0, 0, 8043, 8051, 5, 11, 0, 0, 8044, 8045, 5, 863, 0, 0, 8045, 8051, 5, 863, 0, 0, 8046, 8051, 5, 196, 0, 0, 8047, 8051, 5, 124, 0, 0, 8048, 8049, 5, 862, 0, 0, 8049, 8051, 5, 862, 0, 0, 8050, 8043, 1, 0, 0, 0, 8050, 8044, 1, 0, 0, 0, 8050, 8046, 1, 0, 0, 0, 8050, 8047, 1, 0, 0, 0, 8050, 8048, 1, 0, 0, 0, 8051, 827, 1, 0, 0, 0, 8052, 8053, 5, 859, 0, 0, 8053, 8060, 5, 859, 0, 0, 8054, 8055, 5, 858, 0, 0, 8055, 8060, 5, 858, 0, 0, 8056, 8060, 5, 863, 0, 0, 8057, 8060, 5, 864, 0, 0, 8058, 8060, 5, 862, 0, 0, 8059, 8052, 1, 0, 0, 0, 8059, 8054, 1, 0, 0, 0, 8059, 8056, 1, 0, 0, 0, 8059, 8057, 1, 0, 0, 0, 8059, 8058, 1, 0, 0, 0, 8060, 829, 1, 0, 0, 0, 8061, 8062, 7, 152, 0, 0, 8062, 831, 1, 0, 0, 0, 8063, 8064, 5, 854, 0, 0, 8064, 8069, 5, 858, 0, 0, 8065, 8066, 5, 854, 0, 0, 8066, 8067, 5, 858, 0, 0, 8067, 8069, 5, 858, 0, 0, 8068, 8063, 1, 0, 0, 0, 8068, 8065, 1, 0, 0, 0, 8069, 833, 1, 0, 0, 0, 8070, 8071, 7, 153, 0, 0, 8071, 835, 1, 0, 0, 0, 8072, 8073, 7, 154, 0, 0, 8073, 837, 1, 0, 0, 0, 8074, 8075, 7, 155, 0, 0, 8075, 839, 1, 0, 0, 0, 8076, 8077, 7, 156, 0, 0, 8077, 841, 1, 0, 0, 0, 8078, 8079, 7, 157, 0, 0, 8079, 843, 1, 0, 0, 0, 8080, 8081, 7, 158, 0, 0, 8081, 845, 1, 0, 0, 0, 8082, 8083, 7, 159, 0, 0, 8083, 847, 1, 0, 0, 0, 1162, 851, 858, 861, 870, 914, 933, 944, 960, 965, 977, 1012, 1022, 1027, 1033, 1038, 1042, 1051, 1054, 1057, 1061, 1068, 1071, 1076, 1084, 1089, 1094, 1097, 1099, 1111, 1114, 1118, 1121, 1125, 1128, 1132, 1135, 1138, 1142, 1145, 1149, 1155, 1159, 1164, 1170, 1177, 1184, 1187, 1191, 1196, 1202, 1211, 1216, 1220, 1224, 1235, 1253, 1260, 1264, 1268, 1272, 1277, 1280, 1283, 1286, 1289, 1295, 1299, 1309, 1313, 1317, 1323, 1328, 1331, 1334, 1336, 1340, 1347, 1351, 1354, 1359, 1363, 1366, 1370, 1373, 1377, 1390, 1393, 1397, 1400, 1404, 1407, 1411, 1414, 1418, 1421, 1424, 1428, 1431, 1435, 1441, 1444, 1448, 1460, 1466, 1477, 1482, 1490, 1494, 1499, 1502, 1507, 1517, 1522, 1527, 1533, 1538, 1542, 1544, 1547, 1551, 1555, 1558, 1562, 1566, 1570, 1576, 1579, 1586, 1591, 1597, 1604, 1610, 1618, 1621, 1628, 1631, 1633, 1639, 1645, 1662, 1669, 1676, 1688, 1693, 1696, 1699, 1712, 1725, 1730, 1746, 1754, 1764, 1767, 1773, 1778, 1781, 1787, 1791, 1796, 1802, 1806, 1810, 1813, 1816, 1822, 1826, 1831, 1842, 1845, 1852, 1855, 1859, 1865, 1877, 1880, 1885, 1898, 1905, 1911, 1916, 1920, 1923, 1931, 1939, 1941, 1951, 1955, 1958, 1962, 1967, 1972, 1977, 1981, 1985, 1989, 1993, 1997, 2001, 2006, 2011, 2016, 2022, 2027, 2032, 2037, 2042, 2047, 2053, 2058, 2063, 2068, 2073, 2078, 2083, 2088, 2095, 2100, 2105, 2110, 2114, 2119, 2127, 2132, 2138, 2150, 2157, 2159, 2167, 2172, 2175, 2183, 2189, 2193, 2206, 2218, 2220, 2223, 2231, 2237, 2243, 2256, 2263, 2272, 2277, 2288, 2297, 2302, 2314, 2321, 2330, 2335, 2347, 2354, 2363, 2368, 2375, 2384, 2389, 2391, 2396, 2404, 2413, 2417, 2420, 2424, 2429, 2435, 2441, 2446, 2451, 2456, 2461, 2464, 2469, 2474, 2484, 2488, 2495, 2500, 2503, 2508, 2511, 2515, 2519, 2527, 2546, 2549, 2552, 2556, 2566, 2579, 2592, 2595, 2601, 2604, 2608, 2617, 2620, 2623, 2628, 2632, 2635, 2639, 2643, 2646, 2650, 2653, 2657, 2660, 2666, 2669, 2674, 2682, 2688, 2692, 2696, 2701, 2706, 2713, 2717, 2728, 2736, 2739, 2745, 2751, 2754, 2760, 2766, 2768, 2773, 2779, 2785, 2787, 2791, 2794, 2797, 2803, 2809, 2811, 2816, 2823, 2832, 2835, 2839, 2844, 2854, 2863, 2871, 2874, 2882, 2885, 2892, 2897, 2905, 2921, 2926, 2933, 2952, 2958, 2968, 2980, 2987, 2994, 3009, 3022, 3028, 3034, 3040, 3046, 3052, 3058, 3063, 3070, 3077, 3084, 3089, 3092, 3094, 3103, 3110, 3117, 3124, 3133, 3139, 3143, 3147, 3151, 3157, 3160, 3165, 3172, 3179, 3183, 3188, 3198, 3206, 3212, 3221, 3230, 3239, 3242, 3246, 3255, 3259, 3262, 3265, 3271, 3274, 3277, 3281, 3284, 3287, 3290, 3301, 3304, 3309, 3315, 3320, 3325, 3328, 3332, 3337, 3340, 3345, 3355, 3360, 3366, 3368, 3374, 3376, 3382, 3390, 3395, 3403, 3406, 3411, 3414, 3419, 3427, 3433, 3437, 3439, 3445, 3453, 3458, 3466, 3469, 3474, 3477, 3481, 3484, 3487, 3491, 3494, 3502, 3508, 3512, 3518, 3523, 3527, 3529, 3535, 3539, 3542, 3545, 3548, 3554, 3559, 3562, 3565, 3568, 3571, 3573, 3576, 3580, 3583, 3586, 3594, 3600, 3603, 3605, 3614, 3619, 3626, 3629, 3632, 3636, 3640, 3646, 3650, 3657, 3661, 3664, 3667, 3672, 3679, 3689, 3698, 3707, 3717, 3720, 3724, 3730, 3734, 3737, 3740, 3745, 3748, 3755, 3759, 3762, 3766, 3770, 3773, 3776, 3781, 3787, 3791, 3801, 3807, 3811, 3817, 3821, 3827, 3830, 3842, 3846, 3850, 3858, 3862, 3876, 3881, 3884, 3888, 3891, 3899, 3904, 3907, 3910, 3914, 3917, 3926, 3931, 3940, 3945, 3952, 3959, 3967, 3973, 3981, 3984, 3987, 3994, 3997, 4000, 4004, 4008, 4014, 4021, 4031, 4035, 4044, 4047, 4051, 4057, 4065, 4070, 4074, 4080, 4086, 4089, 4091, 4095, 4104, 4114, 4120, 4125, 4129, 4132, 4135, 4138, 4141, 4144, 4147, 4151, 4155, 4163, 4167, 4170, 4172, 4185, 4188, 4195, 4205, 4208, 4213, 4215, 4219, 4227, 4233, 4242, 4255, 4259, 4265, 4271, 4274, 4278, 4281, 4283, 4295, 4299, 4307, 4319, 4325, 4327, 4333, 4335, 4337, 4343, 4351, 4359, 4363, 4367, 4376, 4381, 4401, 4406, 4412, 4419, 4424, 4433, 4436, 4440, 4444, 4448, 4451, 4454, 4457, 4461, 4465, 4468, 4471, 4474, 4481, 4485, 4500, 4513, 4521, 4531, 4535, 4538, 4544, 4547, 4550, 4559, 4568, 4578, 4582, 4592, 4596, 4607, 4611, 4620, 4629, 4632, 4636, 4641, 4645, 4654, 4657, 4660, 4667, 4673, 4679, 4705, 4708, 4711, 4730, 4732, 4755, 4758, 4761, 4780, 4782, 4796, 4809, 4846, 4851, 4886, 4900, 4907, 4911, 4917, 4925, 4927, 4938, 4948, 4955, 4961, 4969, 4974, 4982, 4990, 4998, 5006, 5012, 5017, 5022, 5027, 5033, 5035, 5046, 5051, 5058, 5060, 5074, 5080, 5085, 5090, 5096, 5103, 5111, 5119, 5124, 5130, 5133, 5141, 5148, 5157, 5160, 5177, 5185, 5193, 5197, 5204, 5210, 5218, 5223, 5230, 5238, 5245, 5250, 5253, 5255, 5261, 5263, 5267, 5269, 5274, 5281, 5286, 5290, 5295, 5299, 5305, 5311, 5316, 5319, 5321, 5327, 5329, 5333, 5335, 5340, 5345, 5352, 5361, 5366, 5375, 5379, 5385, 5390, 5393, 5395, 5401, 5403, 5406, 5413, 5415, 5420, 5427, 5436, 5442, 5444, 5451, 5454, 5466, 5472, 5480, 5483, 5487, 5490, 5494, 5496, 5507, 5510, 5514, 5517, 5520, 5527, 5539, 5542, 5549, 5555, 5565, 5570, 5577, 5582, 5588, 5592, 5596, 5604, 5608, 5612, 5618, 5620, 5632, 5637, 5643, 5649, 5653, 5658, 5660, 5684, 5688, 5691, 5700, 5704, 5713, 5717, 5721, 5727, 5729, 5738, 5748, 5775, 5779, 5784, 5791, 5794, 5800, 5810, 5820, 5830, 5836, 5845, 5851, 5858, 5860, 5868, 5874, 5878, 5895, 5905, 5909, 5913, 5923, 5928, 6000, 6018, 6026, 6032, 6044, 6048, 6059, 6063, 6072, 6080, 6087, 6091, 6098, 6103, 6106, 6109, 6120, 6129, 6138, 6141, 6155, 6173, 6186, 6189, 6193, 6196, 6198, 6205, 6212, 6216, 6223, 6230, 6233, 6249, 6252, 6262, 6266, 6272, 6275, 6278, 6283, 6287, 6290, 6297, 6300, 6306, 6342, 6345, 6357, 6360, 6376, 6378, 6382, 6389, 6393, 6400, 6403, 6412, 6415, 6420, 6426, 6428, 6434, 6438, 6444, 6447, 6450, 6463, 6466, 6472, 6475, 6483, 6491, 6497, 6500, 6504, 6518, 6530, 6538, 6542, 6549, 6556, 6561, 6574, 6583, 6591, 6596, 6599, 6604, 6607, 6619, 6624, 6637, 6639, 6644, 6648, 6651, 6653, 6660, 6667, 6670, 6673, 6679, 6683, 6689, 6697, 6706, 6719, 6724, 6732, 6735, 6740, 6745, 6753, 6756, 6764, 6768, 6775, 6781, 6784, 6788, 6801, 6807, 6819, 6822, 6831, 6836, 6857, 6873, 6883, 6888, 6893, 6895, 6898, 6902, 6904, 6911, 6917, 6919, 6922, 6926, 6929, 6942, 6952, 6955, 6958, 6971, 6977, 6980, 6988, 6995, 7015, 7022, 7024, 7031, 7033, 7037, 7044, 7050, 7061, 7067, 7073, 7076, 7080, 7085, 7088, 7092, 7096, 7098, 7103, 7108, 7121, 7124, 7128, 7131, 7134, 7139, 7144, 7150, 7153, 7158, 7161, 7166, 7169, 7173, 7178, 7183, 7188, 7193, 7196, 7201, 7206, 7211, 7217, 7222, 7227, 7232, 7236, 7239, 7244, 7248, 7252, 7260, 7267, 7271, 7276, 7281, 7285, 7287, 7290, 7306, 7316, 7326, 7335, 7344, 7351, 7358, 7366, 7374, 7386, 7393, 7403, 7408, 7411, 7416, 7419, 7441, 7450, 7453, 7458, 7491, 7495, 7504, 7508, 7517, 7525, 7530, 7538, 7543, 7548, 7550, 7559, 7564, 7572, 7577, 7585, 7593, 7596, 7606, 7624, 7627, 7630, 7634, 7647, 7655, 7659, 7664, 7669, 7675, 7680, 7684, 7689, 7694, 7699, 7709, 7712, 7716, 7720, 7727, 7731, 7760, 7768, 7771, 7774, 7777, 7780, 7791, 7805, 7814, 7841, 7853, 7859, 7867, 7872, 7880, 7888, 7901, 7907, 7913, 7928, 7932, 7938, 7947, 7949, 7970, 7982, 8000, 8017, 8019, 8032, 8041, 8050, 8059, 8068] \ No newline at end of file diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index cec7dc3e..b85c826a 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -1046,291 +1046,296 @@ export class MySqlParser extends SQLParserBase { public static readonly RULE_tableSources = 131; public static readonly RULE_tableSource = 132; public static readonly RULE_tableSourceItem = 133; - public static readonly RULE_fullColumnNames = 134; - public static readonly RULE_indexHint = 135; - public static readonly RULE_indexHintType = 136; - public static readonly RULE_joinPart = 137; - public static readonly RULE_joinSpec = 138; - public static readonly RULE_queryExpression = 139; - public static readonly RULE_querySpecification = 140; - public static readonly RULE_unionStatement = 141; - public static readonly RULE_lateralStatement = 142; - public static readonly RULE_jsonTable = 143; - public static readonly RULE_jsonColumnList = 144; - public static readonly RULE_jsonColumn = 145; - public static readonly RULE_jsonOnEmpty = 146; - public static readonly RULE_jsonOnError = 147; - public static readonly RULE_selectSpec = 148; - public static readonly RULE_selectElements = 149; - public static readonly RULE_selectElement = 150; - public static readonly RULE_intoClause = 151; - public static readonly RULE_selectFieldsInto = 152; - public static readonly RULE_selectLinesInto = 153; - public static readonly RULE_fromClause = 154; - public static readonly RULE_groupByClause = 155; - public static readonly RULE_havingClause = 156; - public static readonly RULE_windowClause = 157; - public static readonly RULE_groupByItem = 158; - public static readonly RULE_limitClause = 159; - public static readonly RULE_limitClauseAtom = 160; - public static readonly RULE_startTransaction = 161; - public static readonly RULE_beginWork = 162; - public static readonly RULE_commitWork = 163; - public static readonly RULE_rollbackWork = 164; - public static readonly RULE_savePointStatement = 165; - public static readonly RULE_rollbackStatement = 166; - public static readonly RULE_releaseStatement = 167; - public static readonly RULE_lockTables = 168; - public static readonly RULE_unlockTables = 169; - public static readonly RULE_setAutocommitStatement = 170; - public static readonly RULE_setTransactionStatement = 171; - public static readonly RULE_transactionMode = 172; - public static readonly RULE_lockTableElement = 173; - public static readonly RULE_lockAction = 174; - public static readonly RULE_transactionOption = 175; - public static readonly RULE_transactionLevel = 176; - public static readonly RULE_changeMaster = 177; - public static readonly RULE_changeReplicationFilter = 178; - public static readonly RULE_changeReplicationSource = 179; - public static readonly RULE_purgeBinaryLogs = 180; - public static readonly RULE_startSlaveOrReplica = 181; - public static readonly RULE_stopSlaveOrReplica = 182; - public static readonly RULE_startGroupReplication = 183; - public static readonly RULE_stopGroupReplication = 184; - public static readonly RULE_masterOption = 185; - public static readonly RULE_stringMasterOption = 186; - public static readonly RULE_decimalMasterOption = 187; - public static readonly RULE_boolMasterOption = 188; - public static readonly RULE_v8NewMasterOption = 189; - public static readonly RULE_replicationSourceOption = 190; - public static readonly RULE_stringSourceOption = 191; - public static readonly RULE_decimalSourceOption = 192; - public static readonly RULE_boolSourceOption = 193; - public static readonly RULE_otherSourceOption = 194; - public static readonly RULE_channelOption = 195; - public static readonly RULE_replicationFilter = 196; - public static readonly RULE_tablePair = 197; - public static readonly RULE_threadType = 198; - public static readonly RULE_untilOption = 199; - public static readonly RULE_connectionOptions = 200; - public static readonly RULE_gtuidSet = 201; - public static readonly RULE_xaStartTransaction = 202; - public static readonly RULE_xaEndTransaction = 203; - public static readonly RULE_xaPrepareStatement = 204; - public static readonly RULE_xaCommitWork = 205; - public static readonly RULE_xaRollbackWork = 206; - public static readonly RULE_xaRecoverWork = 207; - public static readonly RULE_prepareStatement = 208; - public static readonly RULE_executeStatement = 209; - public static readonly RULE_deallocatePrepare = 210; - public static readonly RULE_routineBody = 211; - public static readonly RULE_blockStatement = 212; - public static readonly RULE_caseStatement = 213; - public static readonly RULE_ifStatement = 214; - public static readonly RULE_iterateStatement = 215; - public static readonly RULE_leaveStatement = 216; - public static readonly RULE_loopStatement = 217; - public static readonly RULE_repeatStatement = 218; - public static readonly RULE_returnStatement = 219; - public static readonly RULE_whileStatement = 220; - public static readonly RULE_cursorStatement = 221; - public static readonly RULE_declareVariable = 222; - public static readonly RULE_declareCondition = 223; - public static readonly RULE_declareCursor = 224; - public static readonly RULE_declareHandler = 225; - public static readonly RULE_handlerConditionValue = 226; - public static readonly RULE_procedureSqlStatement = 227; - public static readonly RULE_caseAlternative = 228; - public static readonly RULE_elseIfAlternative = 229; - public static readonly RULE_alterUser = 230; - public static readonly RULE_createUser = 231; - public static readonly RULE_dropUser = 232; - public static readonly RULE_grantStatement = 233; - public static readonly RULE_roleOption = 234; - public static readonly RULE_grantProxy = 235; - public static readonly RULE_alterResourceGroup = 236; - public static readonly RULE_createResourceGroup = 237; - public static readonly RULE_dropResourceGroup = 238; - public static readonly RULE_setResourceGroup = 239; - public static readonly RULE_resourceGroupVCpuSpec = 240; - public static readonly RULE_renameUser = 241; - public static readonly RULE_revokeStatement = 242; - public static readonly RULE_ignoreUnknownUser = 243; - public static readonly RULE_privilegeObjectType = 244; - public static readonly RULE_setPasswordStatement = 245; - public static readonly RULE_userSpecification = 246; - public static readonly RULE_alterUserAuthOption = 247; - public static readonly RULE_createUserAuthOption = 248; - public static readonly RULE_createUserInitialAuthOption = 249; - public static readonly RULE_userAuthOption = 250; - public static readonly RULE_authOptionClause = 251; - public static readonly RULE_authenticationRule = 252; - public static readonly RULE_tlsOption = 253; - public static readonly RULE_userResourceOption = 254; - public static readonly RULE_userPasswordOption = 255; - public static readonly RULE_userLockOption = 256; - public static readonly RULE_factorAuthOption = 257; - public static readonly RULE_registrationOption = 258; - public static readonly RULE_factor = 259; - public static readonly RULE_privilegeClause = 260; - public static readonly RULE_privilege = 261; - public static readonly RULE_privilegeLevel = 262; - public static readonly RULE_renameUserClause = 263; - public static readonly RULE_analyzeTable = 264; - public static readonly RULE_checkTable = 265; - public static readonly RULE_checksumTable = 266; - public static readonly RULE_optimizeTable = 267; - public static readonly RULE_repairTable = 268; - public static readonly RULE_tableActionOption = 269; - public static readonly RULE_checkTableOption = 270; - public static readonly RULE_installComponent = 271; - public static readonly RULE_variableExpr = 272; - public static readonly RULE_uninstallComponent = 273; - public static readonly RULE_installPlugin = 274; - public static readonly RULE_uninstallPlugin = 275; - public static readonly RULE_cloneStatement = 276; - public static readonly RULE_setStatement = 277; - public static readonly RULE_showStatement = 278; - public static readonly RULE_variableClause = 279; - public static readonly RULE_showCommonEntity = 280; - public static readonly RULE_showFilter = 281; - public static readonly RULE_showGlobalInfoClause = 282; - public static readonly RULE_showSchemaEntity = 283; - public static readonly RULE_showProfileType = 284; - public static readonly RULE_binLogStatement = 285; - public static readonly RULE_cacheIndexStatement = 286; - public static readonly RULE_flushStatement = 287; - public static readonly RULE_killStatement = 288; - public static readonly RULE_loadIndexIntoCache = 289; - public static readonly RULE_resetStatement = 290; - public static readonly RULE_resetOption = 291; - public static readonly RULE_resetPersist = 292; - public static readonly RULE_resetAllChannel = 293; - public static readonly RULE_reStartStatement = 294; - public static readonly RULE_shutdownStatement = 295; - public static readonly RULE_tableIndex = 296; - public static readonly RULE_flushOption = 297; - public static readonly RULE_flushTableOption = 298; - public static readonly RULE_loadedTableIndexes = 299; - public static readonly RULE_simpleDescribeStatement = 300; - public static readonly RULE_fullDescribeStatement = 301; - public static readonly RULE_analyzeDescribeStatement = 302; - public static readonly RULE_helpStatement = 303; - public static readonly RULE_useStatement = 304; - public static readonly RULE_signalStatement = 305; - public static readonly RULE_resignalStatement = 306; - public static readonly RULE_signalConditionInformation = 307; - public static readonly RULE_withStatement = 308; - public static readonly RULE_tableStatement = 309; - public static readonly RULE_diagnosticsStatement = 310; - public static readonly RULE_diagnosticsConditionInformationName = 311; - public static readonly RULE_describeObjectClause = 312; - public static readonly RULE_databaseNameCreate = 313; - public static readonly RULE_databaseName = 314; - public static readonly RULE_functionNameCreate = 315; - public static readonly RULE_functionName = 316; - public static readonly RULE_viewNameCreate = 317; - public static readonly RULE_viewName = 318; - public static readonly RULE_indexNameCreate = 319; - public static readonly RULE_indexNames = 320; - public static readonly RULE_indexName = 321; - public static readonly RULE_groupNameCreate = 322; - public static readonly RULE_groupName = 323; - public static readonly RULE_tableNameCreate = 324; - public static readonly RULE_tableNames = 325; - public static readonly RULE_tableName = 326; - public static readonly RULE_userOrRoleNames = 327; - public static readonly RULE_userOrRoleName = 328; - public static readonly RULE_columnNameCreate = 329; - public static readonly RULE_columnNames = 330; - public static readonly RULE_columnName = 331; - public static readonly RULE_tableSpaceNameCreate = 332; - public static readonly RULE_tableSpaceName = 333; - public static readonly RULE_partitionNameCreate = 334; - public static readonly RULE_partitionNames = 335; - public static readonly RULE_partitionName = 336; - public static readonly RULE_indexColumnName = 337; - public static readonly RULE_userHostPort = 338; - public static readonly RULE_userAtHost = 339; - public static readonly RULE_simpleUserName = 340; - public static readonly RULE_hostName = 341; - public static readonly RULE_userName = 342; - public static readonly RULE_mysqlVariable = 343; - public static readonly RULE_charsetName = 344; - public static readonly RULE_collationName = 345; - public static readonly RULE_engineName = 346; - public static readonly RULE_engineNameBase = 347; - public static readonly RULE_uuidSet = 348; - public static readonly RULE_xid = 349; - public static readonly RULE_xuidStringId = 350; - public static readonly RULE_fullId = 351; - public static readonly RULE_uidList = 352; - public static readonly RULE_uid = 353; - public static readonly RULE_simpleId = 354; - public static readonly RULE_dottedId = 355; - public static readonly RULE_decimalLiteral = 356; - public static readonly RULE_fileSizeLiteral = 357; - public static readonly RULE_stringLiteral = 358; - public static readonly RULE_booleanLiteral = 359; - public static readonly RULE_hexadecimalLiteral = 360; - public static readonly RULE_nullNotNull = 361; - public static readonly RULE_constant = 362; - public static readonly RULE_dataType = 363; - public static readonly RULE_collectionOptions = 364; - public static readonly RULE_convertedDataType = 365; - public static readonly RULE_lengthOneDimension = 366; - public static readonly RULE_lengthTwoDimension = 367; - public static readonly RULE_lengthTwoOptionalDimension = 368; - public static readonly RULE_indexColumnNames = 369; - public static readonly RULE_expressions = 370; - public static readonly RULE_valuesOrValueList = 371; - public static readonly RULE_expressionsWithDefaults = 372; - public static readonly RULE_expressionOrDefault = 373; - public static readonly RULE_constants = 374; - public static readonly RULE_simpleStrings = 375; - public static readonly RULE_userVariables = 376; - public static readonly RULE_defaultValue = 377; - public static readonly RULE_currentTimestamp = 378; - public static readonly RULE_ifExists = 379; - public static readonly RULE_ifNotExists = 380; - public static readonly RULE_orReplace = 381; - public static readonly RULE_functionCall = 382; - public static readonly RULE_specificFunction = 383; - public static readonly RULE_caseFuncAlternative = 384; - public static readonly RULE_levelsInWeightString = 385; - public static readonly RULE_levelInWeightListElement = 386; - public static readonly RULE_aggregateWindowedFunction = 387; - public static readonly RULE_nonAggregateWindowedFunction = 388; - public static readonly RULE_overClause = 389; - public static readonly RULE_windowSpec = 390; - public static readonly RULE_windowName = 391; - public static readonly RULE_frameClause = 392; - public static readonly RULE_frameUnits = 393; - public static readonly RULE_frameExtent = 394; - public static readonly RULE_frameBetween = 395; - public static readonly RULE_frameRange = 396; - public static readonly RULE_partitionClause = 397; - public static readonly RULE_scalarFunctionName = 398; - public static readonly RULE_passwordFunctionClause = 399; - public static readonly RULE_functionArgs = 400; - public static readonly RULE_functionArg = 401; - public static readonly RULE_expression = 402; - public static readonly RULE_predicate = 403; - public static readonly RULE_expressionAtom = 404; - public static readonly RULE_unaryOperator = 405; - public static readonly RULE_comparisonOperator = 406; - public static readonly RULE_comparisonBase = 407; - public static readonly RULE_logicalOperator = 408; - public static readonly RULE_bitOperator = 409; - public static readonly RULE_mathOperator = 410; - public static readonly RULE_jsonOperator = 411; - public static readonly RULE_charsetNameBase = 412; - public static readonly RULE_transactionLevelBase = 413; - public static readonly RULE_privilegesBase = 414; - public static readonly RULE_intervalTypeBase = 415; - public static readonly RULE_dataTypeBase = 416; - public static readonly RULE_keywordsCanBeId = 417; - public static readonly RULE_functionNameBase = 418; + public static readonly RULE_atomSubQueryTableSource = 134; + public static readonly RULE_fullColumnNames = 135; + public static readonly RULE_indexHint = 136; + public static readonly RULE_indexHintType = 137; + public static readonly RULE_joinPart = 138; + public static readonly RULE_joinSpec = 139; + public static readonly RULE_queryExpression = 140; + public static readonly RULE_querySpecification = 141; + public static readonly RULE_unionStatement = 142; + public static readonly RULE_lateralStatement = 143; + public static readonly RULE_jsonTable = 144; + public static readonly RULE_jsonColumnList = 145; + public static readonly RULE_jsonColumn = 146; + public static readonly RULE_jsonOnEmpty = 147; + public static readonly RULE_jsonOnError = 148; + public static readonly RULE_selectSpec = 149; + public static readonly RULE_selectElements = 150; + public static readonly RULE_selectElement = 151; + public static readonly RULE_tableAllColumns = 152; + public static readonly RULE_pureAllColumns = 153; + public static readonly RULE_selectLiteralColumnName = 154; + public static readonly RULE_selectExpressionColumnName = 155; + public static readonly RULE_intoClause = 156; + public static readonly RULE_selectFieldsInto = 157; + public static readonly RULE_selectLinesInto = 158; + public static readonly RULE_fromClause = 159; + public static readonly RULE_groupByClause = 160; + public static readonly RULE_havingClause = 161; + public static readonly RULE_windowClause = 162; + public static readonly RULE_groupByItem = 163; + public static readonly RULE_limitClause = 164; + public static readonly RULE_limitClauseAtom = 165; + public static readonly RULE_startTransaction = 166; + public static readonly RULE_beginWork = 167; + public static readonly RULE_commitWork = 168; + public static readonly RULE_rollbackWork = 169; + public static readonly RULE_savePointStatement = 170; + public static readonly RULE_rollbackStatement = 171; + public static readonly RULE_releaseStatement = 172; + public static readonly RULE_lockTables = 173; + public static readonly RULE_unlockTables = 174; + public static readonly RULE_setAutocommitStatement = 175; + public static readonly RULE_setTransactionStatement = 176; + public static readonly RULE_transactionMode = 177; + public static readonly RULE_lockTableElement = 178; + public static readonly RULE_lockAction = 179; + public static readonly RULE_transactionOption = 180; + public static readonly RULE_transactionLevel = 181; + public static readonly RULE_changeMaster = 182; + public static readonly RULE_changeReplicationFilter = 183; + public static readonly RULE_changeReplicationSource = 184; + public static readonly RULE_purgeBinaryLogs = 185; + public static readonly RULE_startSlaveOrReplica = 186; + public static readonly RULE_stopSlaveOrReplica = 187; + public static readonly RULE_startGroupReplication = 188; + public static readonly RULE_stopGroupReplication = 189; + public static readonly RULE_masterOption = 190; + public static readonly RULE_stringMasterOption = 191; + public static readonly RULE_decimalMasterOption = 192; + public static readonly RULE_boolMasterOption = 193; + public static readonly RULE_v8NewMasterOption = 194; + public static readonly RULE_replicationSourceOption = 195; + public static readonly RULE_stringSourceOption = 196; + public static readonly RULE_decimalSourceOption = 197; + public static readonly RULE_boolSourceOption = 198; + public static readonly RULE_otherSourceOption = 199; + public static readonly RULE_channelOption = 200; + public static readonly RULE_replicationFilter = 201; + public static readonly RULE_tablePair = 202; + public static readonly RULE_threadType = 203; + public static readonly RULE_untilOption = 204; + public static readonly RULE_connectionOptions = 205; + public static readonly RULE_gtuidSet = 206; + public static readonly RULE_xaStartTransaction = 207; + public static readonly RULE_xaEndTransaction = 208; + public static readonly RULE_xaPrepareStatement = 209; + public static readonly RULE_xaCommitWork = 210; + public static readonly RULE_xaRollbackWork = 211; + public static readonly RULE_xaRecoverWork = 212; + public static readonly RULE_prepareStatement = 213; + public static readonly RULE_executeStatement = 214; + public static readonly RULE_deallocatePrepare = 215; + public static readonly RULE_routineBody = 216; + public static readonly RULE_blockStatement = 217; + public static readonly RULE_caseStatement = 218; + public static readonly RULE_ifStatement = 219; + public static readonly RULE_iterateStatement = 220; + public static readonly RULE_leaveStatement = 221; + public static readonly RULE_loopStatement = 222; + public static readonly RULE_repeatStatement = 223; + public static readonly RULE_returnStatement = 224; + public static readonly RULE_whileStatement = 225; + public static readonly RULE_cursorStatement = 226; + public static readonly RULE_declareVariable = 227; + public static readonly RULE_declareCondition = 228; + public static readonly RULE_declareCursor = 229; + public static readonly RULE_declareHandler = 230; + public static readonly RULE_handlerConditionValue = 231; + public static readonly RULE_procedureSqlStatement = 232; + public static readonly RULE_caseAlternative = 233; + public static readonly RULE_elseIfAlternative = 234; + public static readonly RULE_alterUser = 235; + public static readonly RULE_createUser = 236; + public static readonly RULE_dropUser = 237; + public static readonly RULE_grantStatement = 238; + public static readonly RULE_roleOption = 239; + public static readonly RULE_grantProxy = 240; + public static readonly RULE_alterResourceGroup = 241; + public static readonly RULE_createResourceGroup = 242; + public static readonly RULE_dropResourceGroup = 243; + public static readonly RULE_setResourceGroup = 244; + public static readonly RULE_resourceGroupVCpuSpec = 245; + public static readonly RULE_renameUser = 246; + public static readonly RULE_revokeStatement = 247; + public static readonly RULE_ignoreUnknownUser = 248; + public static readonly RULE_privilegeObjectType = 249; + public static readonly RULE_setPasswordStatement = 250; + public static readonly RULE_userSpecification = 251; + public static readonly RULE_alterUserAuthOption = 252; + public static readonly RULE_createUserAuthOption = 253; + public static readonly RULE_createUserInitialAuthOption = 254; + public static readonly RULE_userAuthOption = 255; + public static readonly RULE_authOptionClause = 256; + public static readonly RULE_authenticationRule = 257; + public static readonly RULE_tlsOption = 258; + public static readonly RULE_userResourceOption = 259; + public static readonly RULE_userPasswordOption = 260; + public static readonly RULE_userLockOption = 261; + public static readonly RULE_factorAuthOption = 262; + public static readonly RULE_registrationOption = 263; + public static readonly RULE_factor = 264; + public static readonly RULE_privilegeClause = 265; + public static readonly RULE_privilege = 266; + public static readonly RULE_privilegeLevel = 267; + public static readonly RULE_renameUserClause = 268; + public static readonly RULE_analyzeTable = 269; + public static readonly RULE_checkTable = 270; + public static readonly RULE_checksumTable = 271; + public static readonly RULE_optimizeTable = 272; + public static readonly RULE_repairTable = 273; + public static readonly RULE_tableActionOption = 274; + public static readonly RULE_checkTableOption = 275; + public static readonly RULE_installComponent = 276; + public static readonly RULE_variableExpr = 277; + public static readonly RULE_uninstallComponent = 278; + public static readonly RULE_installPlugin = 279; + public static readonly RULE_uninstallPlugin = 280; + public static readonly RULE_cloneStatement = 281; + public static readonly RULE_setStatement = 282; + public static readonly RULE_showStatement = 283; + public static readonly RULE_variableClause = 284; + public static readonly RULE_showCommonEntity = 285; + public static readonly RULE_showFilter = 286; + public static readonly RULE_showGlobalInfoClause = 287; + public static readonly RULE_showSchemaEntity = 288; + public static readonly RULE_showProfileType = 289; + public static readonly RULE_binLogStatement = 290; + public static readonly RULE_cacheIndexStatement = 291; + public static readonly RULE_flushStatement = 292; + public static readonly RULE_killStatement = 293; + public static readonly RULE_loadIndexIntoCache = 294; + public static readonly RULE_resetStatement = 295; + public static readonly RULE_resetOption = 296; + public static readonly RULE_resetPersist = 297; + public static readonly RULE_resetAllChannel = 298; + public static readonly RULE_reStartStatement = 299; + public static readonly RULE_shutdownStatement = 300; + public static readonly RULE_tableIndex = 301; + public static readonly RULE_flushOption = 302; + public static readonly RULE_flushTableOption = 303; + public static readonly RULE_loadedTableIndexes = 304; + public static readonly RULE_simpleDescribeStatement = 305; + public static readonly RULE_fullDescribeStatement = 306; + public static readonly RULE_analyzeDescribeStatement = 307; + public static readonly RULE_helpStatement = 308; + public static readonly RULE_useStatement = 309; + public static readonly RULE_signalStatement = 310; + public static readonly RULE_resignalStatement = 311; + public static readonly RULE_signalConditionInformation = 312; + public static readonly RULE_withStatement = 313; + public static readonly RULE_tableStatement = 314; + public static readonly RULE_diagnosticsStatement = 315; + public static readonly RULE_diagnosticsConditionInformationName = 316; + public static readonly RULE_describeObjectClause = 317; + public static readonly RULE_databaseNameCreate = 318; + public static readonly RULE_databaseName = 319; + public static readonly RULE_functionNameCreate = 320; + public static readonly RULE_functionName = 321; + public static readonly RULE_viewNameCreate = 322; + public static readonly RULE_viewName = 323; + public static readonly RULE_indexNameCreate = 324; + public static readonly RULE_indexNames = 325; + public static readonly RULE_indexName = 326; + public static readonly RULE_groupNameCreate = 327; + public static readonly RULE_groupName = 328; + public static readonly RULE_tableNameCreate = 329; + public static readonly RULE_tableNames = 330; + public static readonly RULE_tableName = 331; + public static readonly RULE_userOrRoleNames = 332; + public static readonly RULE_userOrRoleName = 333; + public static readonly RULE_columnNameCreate = 334; + public static readonly RULE_columnNames = 335; + public static readonly RULE_columnName = 336; + public static readonly RULE_tableSpaceNameCreate = 337; + public static readonly RULE_tableSpaceName = 338; + public static readonly RULE_partitionNameCreate = 339; + public static readonly RULE_partitionNames = 340; + public static readonly RULE_partitionName = 341; + public static readonly RULE_indexColumnName = 342; + public static readonly RULE_userHostPort = 343; + public static readonly RULE_userAtHost = 344; + public static readonly RULE_simpleUserName = 345; + public static readonly RULE_hostName = 346; + public static readonly RULE_userName = 347; + public static readonly RULE_mysqlVariable = 348; + public static readonly RULE_charsetName = 349; + public static readonly RULE_collationName = 350; + public static readonly RULE_engineName = 351; + public static readonly RULE_engineNameBase = 352; + public static readonly RULE_uuidSet = 353; + public static readonly RULE_xid = 354; + public static readonly RULE_xuidStringId = 355; + public static readonly RULE_fullId = 356; + public static readonly RULE_uidList = 357; + public static readonly RULE_uid = 358; + public static readonly RULE_simpleId = 359; + public static readonly RULE_dottedId = 360; + public static readonly RULE_decimalLiteral = 361; + public static readonly RULE_fileSizeLiteral = 362; + public static readonly RULE_stringLiteral = 363; + public static readonly RULE_booleanLiteral = 364; + public static readonly RULE_hexadecimalLiteral = 365; + public static readonly RULE_nullNotNull = 366; + public static readonly RULE_constant = 367; + public static readonly RULE_dataType = 368; + public static readonly RULE_collectionOptions = 369; + public static readonly RULE_convertedDataType = 370; + public static readonly RULE_lengthOneDimension = 371; + public static readonly RULE_lengthTwoDimension = 372; + public static readonly RULE_lengthTwoOptionalDimension = 373; + public static readonly RULE_indexColumnNames = 374; + public static readonly RULE_expressions = 375; + public static readonly RULE_valuesOrValueList = 376; + public static readonly RULE_expressionsWithDefaults = 377; + public static readonly RULE_expressionOrDefault = 378; + public static readonly RULE_constants = 379; + public static readonly RULE_simpleStrings = 380; + public static readonly RULE_userVariables = 381; + public static readonly RULE_defaultValue = 382; + public static readonly RULE_currentTimestamp = 383; + public static readonly RULE_ifExists = 384; + public static readonly RULE_ifNotExists = 385; + public static readonly RULE_orReplace = 386; + public static readonly RULE_functionCall = 387; + public static readonly RULE_specificFunction = 388; + public static readonly RULE_caseFuncAlternative = 389; + public static readonly RULE_levelsInWeightString = 390; + public static readonly RULE_levelInWeightListElement = 391; + public static readonly RULE_aggregateWindowedFunction = 392; + public static readonly RULE_nonAggregateWindowedFunction = 393; + public static readonly RULE_overClause = 394; + public static readonly RULE_windowSpec = 395; + public static readonly RULE_windowName = 396; + public static readonly RULE_frameClause = 397; + public static readonly RULE_frameUnits = 398; + public static readonly RULE_frameExtent = 399; + public static readonly RULE_frameBetween = 400; + public static readonly RULE_frameRange = 401; + public static readonly RULE_partitionClause = 402; + public static readonly RULE_scalarFunctionName = 403; + public static readonly RULE_passwordFunctionClause = 404; + public static readonly RULE_functionArgs = 405; + public static readonly RULE_functionArg = 406; + public static readonly RULE_expression = 407; + public static readonly RULE_predicate = 408; + public static readonly RULE_expressionAtom = 409; + public static readonly RULE_unaryOperator = 410; + public static readonly RULE_comparisonOperator = 411; + public static readonly RULE_comparisonBase = 412; + public static readonly RULE_logicalOperator = 413; + public static readonly RULE_bitOperator = 414; + public static readonly RULE_mathOperator = 415; + public static readonly RULE_jsonOperator = 416; + public static readonly RULE_charsetNameBase = 417; + public static readonly RULE_transactionLevelBase = 418; + public static readonly RULE_privilegesBase = 419; + public static readonly RULE_intervalTypeBase = 420; + public static readonly RULE_dataTypeBase = 421; + public static readonly RULE_keywordsCanBeId = 422; + public static readonly RULE_functionNameBase = 423; public static readonly literalNames = [ null, null, null, null, null, "'ACTIVE'", "'ADD'", "'ALL'", "'ALTER'", @@ -1745,25 +1750,26 @@ export class MySqlParser extends SQLParserBase { "handlerOpenStatement", "handlerReadIndexStatement", "handlerReadStatement", "handlerCloseStatement", "importTableStatement", "singleUpdateStatement", "multipleUpdateStatement", "orderByClause", "orderByExpression", - "tableSources", "tableSource", "tableSourceItem", "fullColumnNames", - "indexHint", "indexHintType", "joinPart", "joinSpec", "queryExpression", - "querySpecification", "unionStatement", "lateralStatement", "jsonTable", - "jsonColumnList", "jsonColumn", "jsonOnEmpty", "jsonOnError", "selectSpec", - "selectElements", "selectElement", "intoClause", "selectFieldsInto", - "selectLinesInto", "fromClause", "groupByClause", "havingClause", - "windowClause", "groupByItem", "limitClause", "limitClauseAtom", - "startTransaction", "beginWork", "commitWork", "rollbackWork", "savePointStatement", - "rollbackStatement", "releaseStatement", "lockTables", "unlockTables", - "setAutocommitStatement", "setTransactionStatement", "transactionMode", - "lockTableElement", "lockAction", "transactionOption", "transactionLevel", - "changeMaster", "changeReplicationFilter", "changeReplicationSource", - "purgeBinaryLogs", "startSlaveOrReplica", "stopSlaveOrReplica", - "startGroupReplication", "stopGroupReplication", "masterOption", - "stringMasterOption", "decimalMasterOption", "boolMasterOption", - "v8NewMasterOption", "replicationSourceOption", "stringSourceOption", - "decimalSourceOption", "boolSourceOption", "otherSourceOption", - "channelOption", "replicationFilter", "tablePair", "threadType", - "untilOption", "connectionOptions", "gtuidSet", "xaStartTransaction", + "tableSources", "tableSource", "tableSourceItem", "atomSubQueryTableSource", + "fullColumnNames", "indexHint", "indexHintType", "joinPart", "joinSpec", + "queryExpression", "querySpecification", "unionStatement", "lateralStatement", + "jsonTable", "jsonColumnList", "jsonColumn", "jsonOnEmpty", "jsonOnError", + "selectSpec", "selectElements", "selectElement", "tableAllColumns", + "pureAllColumns", "selectLiteralColumnName", "selectExpressionColumnName", + "intoClause", "selectFieldsInto", "selectLinesInto", "fromClause", + "groupByClause", "havingClause", "windowClause", "groupByItem", + "limitClause", "limitClauseAtom", "startTransaction", "beginWork", + "commitWork", "rollbackWork", "savePointStatement", "rollbackStatement", + "releaseStatement", "lockTables", "unlockTables", "setAutocommitStatement", + "setTransactionStatement", "transactionMode", "lockTableElement", + "lockAction", "transactionOption", "transactionLevel", "changeMaster", + "changeReplicationFilter", "changeReplicationSource", "purgeBinaryLogs", + "startSlaveOrReplica", "stopSlaveOrReplica", "startGroupReplication", + "stopGroupReplication", "masterOption", "stringMasterOption", "decimalMasterOption", + "boolMasterOption", "v8NewMasterOption", "replicationSourceOption", + "stringSourceOption", "decimalSourceOption", "boolSourceOption", + "otherSourceOption", "channelOption", "replicationFilter", "tablePair", + "threadType", "untilOption", "connectionOptions", "gtuidSet", "xaStartTransaction", "xaEndTransaction", "xaPrepareStatement", "xaCommitWork", "xaRollbackWork", "xaRecoverWork", "prepareStatement", "executeStatement", "deallocatePrepare", "routineBody", "blockStatement", "caseStatement", "ifStatement", @@ -1841,21 +1847,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 841; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 169870592) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 268573697) !== 0) || ((((_la - 72)) & ~0x1F) === 0 && ((1 << (_la - 72)) & 2151694339) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 536936449) !== 0) || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 442923) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 2184193) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 16781443) !== 0) || _la === 362 || _la === 371 || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 270573569) !== 0) || _la === 540 || _la === 562 || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 16643) !== 0) || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 268435521) !== 0) || _la === 673 || _la === 694 || _la === 713 || _la === 717 || _la === 749 || _la === 866 || _la === 869) { { { - this.state = 838; + this.state = 848; this.singleStatement(); } } - this.state = 843; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 844; + this.state = 854; this.match(MySqlParser.EOF); } } @@ -1877,7 +1883,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, MySqlParser.RULE_singleStatement); try { - this.state = 851; + this.state = 861; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -1943,14 +1949,14 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 846; + this.state = 856; this.sqlStatement(); - this.state = 848; + this.state = 858; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 847; + this.state = 857; this.match(MySqlParser.SEMI); } break; @@ -1960,7 +1966,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.SEMI: this.enterOuterAlt(localContext, 2); { - this.state = 850; + this.state = 860; this.emptyStatement_(); } break; @@ -1986,55 +1992,55 @@ export class MySqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, MySqlParser.RULE_sqlStatement); try { - this.state = 860; + this.state = 870; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 853; + this.state = 863; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 854; + this.state = 864; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 855; + this.state = 865; this.transactionStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 856; + this.state = 866; this.replicationStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 857; + this.state = 867; this.preparedStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 858; + this.state = 868; this.administrationStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 859; + this.state = 869; this.utilityStatement(); } break; @@ -2060,7 +2066,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 862; + this.state = 872; this.match(MySqlParser.SEMI); } } @@ -2082,286 +2088,286 @@ export class MySqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, MySqlParser.RULE_ddlStatement); try { - this.state = 904; + this.state = 914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 864; + this.state = 874; this.createDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 865; + this.state = 875; this.createEvent(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 866; + this.state = 876; this.createIndex(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 867; + this.state = 877; this.createLogFileGroup(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 868; + this.state = 878; this.createProcedure(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 869; + this.state = 879; this.createFunction(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 870; + this.state = 880; this.createFunctionLoadable(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 871; + this.state = 881; this.createServer(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 872; + this.state = 882; this.createTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 873; + this.state = 883; this.createTableSpaceInnoDB(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 874; + this.state = 884; this.createTableSpaceNDB(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 875; + this.state = 885; this.createTrigger(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 876; + this.state = 886; this.createView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 877; + this.state = 887; this.createRole(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 878; + this.state = 888; this.alterDatabase(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 879; + this.state = 889; this.alterEvent(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 880; + this.state = 890; this.alterFunction(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 881; + this.state = 891; this.alterInstance(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 882; + this.state = 892; this.alterLogFileGroup(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 883; + this.state = 893; this.alterProcedure(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 884; + this.state = 894; this.alterServer(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 885; + this.state = 895; this.alterTable(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 886; + this.state = 896; this.alterTableSpace(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 887; + this.state = 897; this.alterView(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 888; + this.state = 898; this.dropDatabase(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 889; + this.state = 899; this.dropEvent(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 890; + this.state = 900; this.dropIndex(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 891; + this.state = 901; this.dropLogFileGroup(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 892; + this.state = 902; this.dropProcedure(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 893; + this.state = 903; this.dropFunction(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 894; + this.state = 904; this.dropServer(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 895; + this.state = 905; this.dropSpatial(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 896; + this.state = 906; this.dropTable(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 897; + this.state = 907; this.dropTableSpace(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 898; + this.state = 908; this.dropTrigger(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 899; + this.state = 909; this.dropView(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 900; + this.state = 910; this.dropRole(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 901; + this.state = 911; this.setRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 902; + this.state = 912; this.renameTable(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 903; + this.state = 913; this.truncateTable(); } break; @@ -2385,125 +2391,125 @@ export class MySqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, MySqlParser.RULE_dmlStatement); try { - this.state = 923; + this.state = 933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 906; + this.state = 916; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 907; + this.state = 917; this.setOperations(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 908; + this.state = 918; this.insertStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 909; + this.state = 919; this.updateStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 910; + this.state = 920; this.deleteStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 911; + this.state = 921; this.replaceStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 912; + this.state = 922; this.callStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 913; + this.state = 923; this.interSectStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 914; + this.state = 924; this.loadDataStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 915; + this.state = 925; this.loadXmlStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 916; + this.state = 926; this.parenthesizedQuery(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 917; + this.state = 927; this.doStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 918; + this.state = 928; this.handlerStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 919; + this.state = 929; this.importTableStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 920; + this.state = 930; this.valuesStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 921; + this.state = 931; this.withStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 922; + this.state = 932; this.tableStatement(); } break; @@ -2527,69 +2533,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionStatementContext(this.context, this.state); this.enterRule(localContext, 12, MySqlParser.RULE_transactionStatement); try { - this.state = 934; + this.state = 944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 935; this.startTransaction(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 926; + this.state = 936; this.beginWork(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 927; + this.state = 937; this.commitWork(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 928; + this.state = 938; this.rollbackWork(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 929; + this.state = 939; this.savePointStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 930; + this.state = 940; this.rollbackStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 931; + this.state = 941; this.releaseStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 932; + this.state = 942; this.lockTables(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 933; + this.state = 943; this.unlockTables(); } break; @@ -2613,104 +2619,104 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReplicationStatementContext(this.context, this.state); this.enterRule(localContext, 14, MySqlParser.RULE_replicationStatement); try { - this.state = 950; + this.state = 960; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 936; + this.state = 946; this.changeMaster(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 937; + this.state = 947; this.changeReplicationFilter(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 938; + this.state = 948; this.changeReplicationSource(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 939; + this.state = 949; this.purgeBinaryLogs(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 940; + this.state = 950; this.startSlaveOrReplica(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 941; + this.state = 951; this.stopSlaveOrReplica(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 942; + this.state = 952; this.startGroupReplication(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 943; + this.state = 953; this.stopGroupReplication(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 944; + this.state = 954; this.xaStartTransaction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 945; + this.state = 955; this.xaEndTransaction(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 946; + this.state = 956; this.xaPrepareStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 947; + this.state = 957; this.xaCommitWork(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 948; + this.state = 958; this.xaRollbackWork(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 949; + this.state = 959; this.xaRecoverWork(); } break; @@ -2734,20 +2740,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new PreparedStatementContext(this.context, this.state); this.enterRule(localContext, 16, MySqlParser.RULE_preparedStatement); try { - this.state = 955; + this.state = 965; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PREPARE: this.enterOuterAlt(localContext, 1); { - this.state = 952; + this.state = 962; this.prepareStatement(); } break; case MySqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 2); { - this.state = 953; + this.state = 963; this.executeStatement(); } break; @@ -2755,7 +2761,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DEALLOCATE: this.enterOuterAlt(localContext, 3); { - this.state = 954; + this.state = 964; this.deallocatePrepare(); } break; @@ -2781,76 +2787,76 @@ export class MySqlParser extends SQLParserBase { let localContext = new CompoundStatementContext(this.context, this.state); this.enterRule(localContext, 18, MySqlParser.RULE_compoundStatement); try { - this.state = 967; + this.state = 977; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 957; + this.state = 967; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 958; + this.state = 968; this.caseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 959; + this.state = 969; this.ifStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 960; + this.state = 970; this.leaveStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 961; + this.state = 971; this.loopStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 962; + this.state = 972; this.repeatStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 963; + this.state = 973; this.whileStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 964; + this.state = 974; this.iterateStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 965; + this.state = 975; this.returnStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 966; + this.state = 976; this.cursorStatement(); } break; @@ -2874,237 +2880,237 @@ export class MySqlParser extends SQLParserBase { let localContext = new AdministrationStatementContext(this.context, this.state); this.enterRule(localContext, 20, MySqlParser.RULE_administrationStatement); try { - this.state = 1002; + this.state = 1012; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 969; + this.state = 979; this.alterUser(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 970; + this.state = 980; this.createUser(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 971; + this.state = 981; this.dropUser(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 972; + this.state = 982; this.grantStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 973; + this.state = 983; this.grantProxy(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 974; + this.state = 984; this.renameUser(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 975; + this.state = 985; this.revokeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 976; + this.state = 986; this.alterResourceGroup(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 977; + this.state = 987; this.createResourceGroup(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 978; + this.state = 988; this.dropResourceGroup(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 979; + this.state = 989; this.setResourceGroup(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 980; + this.state = 990; this.analyzeTable(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 981; + this.state = 991; this.checkTable(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 982; + this.state = 992; this.checksumTable(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 983; + this.state = 993; this.optimizeTable(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 984; + this.state = 994; this.repairTable(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 985; + this.state = 995; this.installComponent(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 986; + this.state = 996; this.uninstallComponent(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 987; + this.state = 997; this.installPlugin(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 988; + this.state = 998; this.uninstallPlugin(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 989; + this.state = 999; this.cloneStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 990; + this.state = 1000; this.setStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 991; + this.state = 1001; this.showStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 992; + this.state = 1002; this.binLogStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 993; + this.state = 1003; this.cacheIndexStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 994; + this.state = 1004; this.flushStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 995; + this.state = 1005; this.killStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 996; + this.state = 1006; this.loadIndexIntoCache(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 997; + this.state = 1007; this.resetStatement(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 998; + this.state = 1008; this.resetPersist(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 999; + this.state = 1009; this.resetAllChannel(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1000; + this.state = 1010; this.reStartStatement(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1001; + this.state = 1011; this.shutdownStatement(); } break; @@ -3128,62 +3134,62 @@ export class MySqlParser extends SQLParserBase { let localContext = new UtilityStatementContext(this.context, this.state); this.enterRule(localContext, 22, MySqlParser.RULE_utilityStatement); try { - this.state = 1012; + this.state = 1022; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1004; + this.state = 1014; this.fullDescribeStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1005; + this.state = 1015; this.simpleDescribeStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1006; + this.state = 1016; this.analyzeDescribeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1007; + this.state = 1017; this.helpStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1008; + this.state = 1018; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1009; + this.state = 1019; this.signalStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1010; + this.state = 1020; this.resignalStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1011; + this.state = 1021; this.diagnosticsStatement(); } break; @@ -3210,9 +3216,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1014; + this.state = 1024; this.match(MySqlParser.KW_CREATE); - this.state = 1015; + this.state = 1025; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -3222,29 +3228,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1017; + this.state = 1027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 1016; + this.state = 1026; this.ifNotExists(); } break; } - this.state = 1019; + this.state = 1029; this.databaseNameCreate(); - this.state = 1023; + this.state = 1033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823) { { { - this.state = 1020; + this.state = 1030; this.createDatabaseOption(); } } - this.state = 1025; + this.state = 1035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3271,87 +3277,87 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1026; + this.state = 1036; this.match(MySqlParser.KW_CREATE); - this.state = 1028; + this.state = 1038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1027; + this.state = 1037; this.ownerStatement(); } } - this.state = 1030; + this.state = 1040; this.match(MySqlParser.KW_EVENT); - this.state = 1032; + this.state = 1042; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 1031; + this.state = 1041; this.ifNotExists(); } break; } - this.state = 1034; + this.state = 1044; localContext._event_name = this.fullId(); - this.state = 1035; + this.state = 1045; this.match(MySqlParser.KW_ON); - this.state = 1036; + this.state = 1046; this.match(MySqlParser.KW_SCHEDULE); - this.state = 1037; + this.state = 1047; this.scheduleExpression(); - this.state = 1044; + this.state = 1054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 1038; + this.state = 1048; this.match(MySqlParser.KW_ON); - this.state = 1039; + this.state = 1049; this.match(MySqlParser.KW_COMPLETION); - this.state = 1041; + this.state = 1051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1040; + this.state = 1050; this.match(MySqlParser.KW_NOT); } } - this.state = 1043; + this.state = 1053; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 1047; + this.state = 1057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 1046; + this.state = 1056; this.enableType(); } } - this.state = 1051; + this.state = 1061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1049; + this.state = 1059; this.match(MySqlParser.KW_COMMENT); - this.state = 1050; + this.state = 1060; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1053; + this.state = 1063; this.match(MySqlParser.KW_DO); - this.state = 1054; + this.state = 1064; this.routineBody(); } } @@ -3377,14 +3383,14 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1056; + this.state = 1066; this.match(MySqlParser.KW_CREATE); - this.state = 1058; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 514) { { - this.state = 1057; + this.state = 1067; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -3397,12 +3403,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1061; + this.state = 1071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 161 || _la === 182) { { - this.state = 1060; + this.state = 1070; localContext._indexCategory = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161 || _la === 182)) { @@ -3415,66 +3421,66 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1063; + this.state = 1073; this.match(MySqlParser.KW_INDEX); - this.state = 1064; + this.state = 1074; this.indexNameCreate(); - this.state = 1066; + this.state = 1076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1065; + this.state = 1075; this.indexType(); } } - this.state = 1068; + this.state = 1078; this.match(MySqlParser.KW_ON); - this.state = 1069; + this.state = 1079; this.tableName(); - this.state = 1070; + this.state = 1080; this.indexColumnNames(); - this.state = 1074; + this.state = 1084; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1071; + this.state = 1081; this.indexOption(); } } } - this.state = 1076; + this.state = 1086; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); } - this.state = 1089; + this.state = 1099; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1087; + this.state = 1097; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 1077; + this.state = 1087; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1079; + this.state = 1089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1078; + this.state = 1088; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1081; + this.state = 1091; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -3488,19 +3494,19 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_LOCK: { - this.state = 1082; + this.state = 1092; this.match(MySqlParser.KW_LOCK); - this.state = 1084; + this.state = 1094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1083; + this.state = 1093; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1086; + this.state = 1096; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -3517,7 +3523,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 1091; + this.state = 1101; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -3544,153 +3550,153 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1092; + this.state = 1102; this.match(MySqlParser.KW_CREATE); - this.state = 1093; + this.state = 1103; this.match(MySqlParser.KW_LOGFILE); - this.state = 1094; + this.state = 1104; this.match(MySqlParser.KW_GROUP); - this.state = 1095; + this.state = 1105; localContext._logFileGroupName = this.uid(); - this.state = 1096; + this.state = 1106; this.match(MySqlParser.KW_ADD); - this.state = 1097; + this.state = 1107; this.match(MySqlParser.KW_UNDOFILE); - this.state = 1098; + this.state = 1108; localContext._undoFile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1104; + this.state = 1114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1099; + this.state = 1109; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1101; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1100; + this.state = 1110; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1103; + this.state = 1113; localContext._initSize = this.fileSizeLiteral(); } } - this.state = 1111; + this.state = 1121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 672) { { - this.state = 1106; + this.state = 1116; this.match(MySqlParser.KW_UNDO_BUFFER_SIZE); - this.state = 1108; + this.state = 1118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1107; + this.state = 1117; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1110; + this.state = 1120; localContext._undoSize = this.fileSizeLiteral(); } } - this.state = 1118; + this.state = 1128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 553) { { - this.state = 1113; + this.state = 1123; this.match(MySqlParser.KW_REDO_BUFFER_SIZE); - this.state = 1115; + this.state = 1125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1114; + this.state = 1124; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1117; + this.state = 1127; localContext._redoSize = this.fileSizeLiteral(); } } - this.state = 1125; + this.state = 1135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1120; + this.state = 1130; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1122; + this.state = 1132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1121; + this.state = 1131; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1124; + this.state = 1134; localContext._nodeGroup = this.uid(); } } - this.state = 1128; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1127; + this.state = 1137; this.match(MySqlParser.KW_WAIT); } } - this.state = 1135; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1130; + this.state = 1140; this.match(MySqlParser.KW_COMMENT); - this.state = 1132; + this.state = 1142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1131; + this.state = 1141; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1134; + this.state = 1144; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1137; + this.state = 1147; this.match(MySqlParser.KW_ENGINE); - this.state = 1139; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1138; + this.state = 1148; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1141; + this.state = 1151; this.engineName(); } } @@ -3716,79 +3722,79 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1143; + this.state = 1153; this.match(MySqlParser.KW_CREATE); - this.state = 1145; + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1144; + this.state = 1154; this.ownerStatement(); } } - this.state = 1147; + this.state = 1157; this.match(MySqlParser.KW_PROCEDURE); - this.state = 1149; + this.state = 1159; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 1148; + this.state = 1158; this.ifNotExists(); } break; } - this.state = 1151; + this.state = 1161; localContext._sp_name = this.fullId(); - this.state = 1152; + this.state = 1162; this.match(MySqlParser.LR_BRACKET); - this.state = 1154; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18880593) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100680481) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1153; + this.state = 1163; this.procedureParameter(); } } - this.state = 1160; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1156; + this.state = 1166; this.match(MySqlParser.COMMA); - this.state = 1157; + this.state = 1167; this.procedureParameter(); } } - this.state = 1162; + this.state = 1172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1163; + this.state = 1173; this.match(MySqlParser.RR_BRACKET); - this.state = 1167; + this.state = 1177; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1164; + this.state = 1174; this.routineOption(); } } } - this.state = 1169; + this.state = 1179; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); } - this.state = 1170; + this.state = 1180; this.routineBody(); } } @@ -3814,93 +3820,93 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1172; + this.state = 1182; this.match(MySqlParser.KW_CREATE); - this.state = 1174; + this.state = 1184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1173; + this.state = 1183; this.ownerStatement(); } } - this.state = 1177; + this.state = 1187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1176; + this.state = 1186; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 1179; + this.state = 1189; this.match(MySqlParser.KW_FUNCTION); - this.state = 1181; + this.state = 1191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 1180; + this.state = 1190; this.ifNotExists(); } break; } - this.state = 1183; + this.state = 1193; this.functionNameCreate(); - this.state = 1184; + this.state = 1194; this.match(MySqlParser.LR_BRACKET); - this.state = 1186; + this.state = 1196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1185; + this.state = 1195; this.functionParameter(); } } - this.state = 1192; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1188; + this.state = 1198; this.match(MySqlParser.COMMA); - this.state = 1189; + this.state = 1199; this.functionParameter(); } } - this.state = 1194; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1195; + this.state = 1205; this.match(MySqlParser.RR_BRACKET); - this.state = 1196; + this.state = 1206; this.match(MySqlParser.KW_RETURNS); - this.state = 1197; + this.state = 1207; this.dataType(); - this.state = 1201; + this.state = 1211; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1198; + this.state = 1208; this.routineOption(); } } } - this.state = 1203; + this.state = 1213; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); } - this.state = 1206; + this.state = 1216; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -4488,13 +4494,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 1204; + this.state = 1214; this.routineBody(); } break; case MySqlParser.KW_RETURN: { - this.state = 1205; + this.state = 1215; this.returnStatement(); } break; @@ -4524,35 +4530,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1208; + this.state = 1218; this.match(MySqlParser.KW_CREATE); - this.state = 1210; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1209; + this.state = 1219; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 1212; + this.state = 1222; this.match(MySqlParser.KW_FUNCTION); - this.state = 1214; + this.state = 1224; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 1213; + this.state = 1223; this.ifNotExists(); } break; } - this.state = 1216; + this.state = 1226; this.functionNameCreate(); - this.state = 1217; + this.state = 1227; this.match(MySqlParser.KW_RETURNS); - this.state = 1218; + this.state = 1228; localContext._returnType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 261) !== 0) || _la === 649)) { @@ -4562,9 +4568,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1219; + this.state = 1229; this.match(MySqlParser.KW_SONAME); - this.state = 1220; + this.state = 1230; this.match(MySqlParser.STRING_LITERAL); } } @@ -4588,21 +4594,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1222; + this.state = 1232; this.match(MySqlParser.KW_CREATE); - this.state = 1223; + this.state = 1233; this.match(MySqlParser.KW_ROLE); - this.state = 1225; + this.state = 1235; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1224; + this.state = 1234; this.ifNotExists(); } break; } - this.state = 1227; + this.state = 1237; this.userOrRoleNames(); } } @@ -4627,19 +4633,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1229; + this.state = 1239; this.match(MySqlParser.KW_CREATE); - this.state = 1230; + this.state = 1240; this.match(MySqlParser.KW_SERVER); - this.state = 1231; + this.state = 1241; localContext._servername = this.uid(); - this.state = 1232; + this.state = 1242; this.match(MySqlParser.KW_FOREIGN); - this.state = 1233; + this.state = 1243; this.match(MySqlParser.KW_DATA); - this.state = 1234; + this.state = 1244; this.match(MySqlParser.KW_WRAPPER); - this.state = 1235; + this.state = 1245; localContext._wrapperName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 882)) { @@ -4649,29 +4655,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1236; + this.state = 1246; this.match(MySqlParser.KW_OPTIONS); - this.state = 1237; + this.state = 1247; this.match(MySqlParser.LR_BRACKET); - this.state = 1238; + this.state = 1248; this.serverOption(); - this.state = 1243; + this.state = 1253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1239; + this.state = 1249; this.match(MySqlParser.COMMA); - this.state = 1240; + this.state = 1250; this.serverOption(); } } - this.state = 1245; + this.state = 1255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1246; + this.state = 1256; this.match(MySqlParser.RR_BRACKET); } } @@ -4695,99 +4701,99 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1326; + this.state = 1336; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1248; + this.state = 1258; this.match(MySqlParser.KW_CREATE); - this.state = 1250; + this.state = 1260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1249; + this.state = 1259; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1252; + this.state = 1262; this.match(MySqlParser.KW_TABLE); - this.state = 1254; + this.state = 1264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1253; + this.state = 1263; this.ifNotExists(); } break; } - this.state = 1256; + this.state = 1266; (localContext as QueryCreateTableContext)._tb = this.tableNameCreate(); - this.state = 1258; + this.state = 1268; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1257; + this.state = 1267; (localContext as QueryCreateTableContext)._col = this.createDefinitions(); } break; } - this.state = 1270; + this.state = 1280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 882) { { - this.state = 1260; + this.state = 1270; this.tableOption(); - this.state = 1267; + this.state = 1277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 868 || _la === 882) { { { - this.state = 1262; + this.state = 1272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1261; + this.state = 1271; this.match(MySqlParser.COMMA); } } - this.state = 1264; + this.state = 1274; this.tableOption(); } } - this.state = 1269; + this.state = 1279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1273; + this.state = 1283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1272; + this.state = 1282; this.partitionDefinitions(); } } - this.state = 1276; + this.state = 1286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 1275; + this.state = 1285; _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { this.errorHandler.recoverInline(this); @@ -4799,17 +4805,17 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1279; + this.state = 1289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 1278; + this.state = 1288; this.match(MySqlParser.KW_AS); } } - this.state = 1281; + this.state = 1291; this.selectStatement(); } break; @@ -4817,52 +4823,52 @@ export class MySqlParser extends SQLParserBase { localContext = new CopyCreateTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1283; + this.state = 1293; this.match(MySqlParser.KW_CREATE); - this.state = 1285; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1284; + this.state = 1294; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1287; + this.state = 1297; this.match(MySqlParser.KW_TABLE); - this.state = 1289; + this.state = 1299; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 1288; + this.state = 1298; this.ifNotExists(); } break; } - this.state = 1291; + this.state = 1301; this.tableNameCreate(); - this.state = 1299; + this.state = 1309; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: { - this.state = 1292; + this.state = 1302; this.match(MySqlParser.KW_LIKE); - this.state = 1293; + this.state = 1303; this.tableName(); } break; case MySqlParser.LR_BRACKET: { - this.state = 1294; + this.state = 1304; this.match(MySqlParser.LR_BRACKET); - this.state = 1295; + this.state = 1305; this.match(MySqlParser.KW_LIKE); - this.state = 1296; + this.state = 1306; this.tableName(); - this.state = 1297; + this.state = 1307; this.match(MySqlParser.RR_BRACKET); } break; @@ -4875,76 +4881,76 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1301; + this.state = 1311; this.match(MySqlParser.KW_CREATE); - this.state = 1303; + this.state = 1313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1302; + this.state = 1312; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1305; + this.state = 1315; this.match(MySqlParser.KW_TABLE); - this.state = 1307; + this.state = 1317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1306; + this.state = 1316; this.ifNotExists(); } break; } - this.state = 1309; + this.state = 1319; this.tableNameCreate(); - this.state = 1310; + this.state = 1320; this.createDefinitions(); - this.state = 1321; + this.state = 1331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1311; + this.state = 1321; this.tableOption(); - this.state = 1318; + this.state = 1328; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 71, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1313; + this.state = 1323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1312; + this.state = 1322; this.match(MySqlParser.COMMA); } } - this.state = 1315; + this.state = 1325; this.tableOption(); } } } - this.state = 1320; + this.state = 1330; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 71, this.context); } } break; } - this.state = 1324; + this.state = 1334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1323; + this.state = 1333; this.partitionDefinitions(); } } @@ -4974,112 +4980,112 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1328; + this.state = 1338; this.match(MySqlParser.KW_CREATE); - this.state = 1330; + this.state = 1340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1329; + this.state = 1339; this.match(MySqlParser.KW_UNDO); } } - this.state = 1332; + this.state = 1342; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1333; + this.state = 1343; this.tableSpaceNameCreate(); - this.state = 1337; + this.state = 1347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 1334; + this.state = 1344; this.match(MySqlParser.KW_ADD); - this.state = 1335; + this.state = 1345; this.match(MySqlParser.KW_DATAFILE); - this.state = 1336; + this.state = 1346; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1344; + this.state = 1354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1339; + this.state = 1349; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1341; + this.state = 1351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1340; + this.state = 1350; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1343; + this.state = 1353; localContext._autoExtendSize = this.fileSizeLiteral(); } } - this.state = 1349; + this.state = 1359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1346; + this.state = 1356; this.match(MySqlParser.KW_FILE_BLOCK_SIZE); - this.state = 1347; + this.state = 1357; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1348; + this.state = 1358; localContext._fileBlockSize = this.fileSizeLiteral(); } } - this.state = 1356; + this.state = 1366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 1351; + this.state = 1361; this.match(MySqlParser.KW_ENGINE); - this.state = 1353; + this.state = 1363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1352; + this.state = 1362; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1355; + this.state = 1365; this.engineName(); } } - this.state = 1363; + this.state = 1373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 1358; + this.state = 1368; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1360; + this.state = 1370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1359; + this.state = 1369; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1362; + this.state = 1372; this.match(MySqlParser.STRING_LITERAL); } } @@ -5107,191 +5113,191 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1365; + this.state = 1375; this.match(MySqlParser.KW_CREATE); - this.state = 1367; + this.state = 1377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1366; + this.state = 1376; this.match(MySqlParser.KW_UNDO); } } - this.state = 1369; + this.state = 1379; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1370; + this.state = 1380; this.tableSpaceNameCreate(); - this.state = 1371; + this.state = 1381; this.match(MySqlParser.KW_ADD); - this.state = 1372; + this.state = 1382; this.match(MySqlParser.KW_DATAFILE); - this.state = 1373; + this.state = 1383; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1374; + this.state = 1384; this.match(MySqlParser.KW_USE); - this.state = 1375; + this.state = 1385; this.match(MySqlParser.KW_LOGFILE); - this.state = 1376; + this.state = 1386; this.match(MySqlParser.KW_GROUP); - this.state = 1377; + this.state = 1387; localContext._logFileGroupName = this.uid(); - this.state = 1383; + this.state = 1393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 393) { { - this.state = 1378; + this.state = 1388; this.match(MySqlParser.KW_EXTENT_SIZE); - this.state = 1380; + this.state = 1390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1379; + this.state = 1389; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1382; + this.state = 1392; localContext._extentSize = this.fileSizeLiteral(); } } - this.state = 1390; + this.state = 1400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1385; + this.state = 1395; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1387; + this.state = 1397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1386; + this.state = 1396; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1389; + this.state = 1399; localContext._initialSize = this.fileSizeLiteral(); } } - this.state = 1397; + this.state = 1407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1392; + this.state = 1402; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1394; + this.state = 1404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1393; + this.state = 1403; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1396; + this.state = 1406; localContext._autoExtendSize = this.fileSizeLiteral(); } } - this.state = 1404; + this.state = 1414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 481) { { - this.state = 1399; + this.state = 1409; this.match(MySqlParser.KW_MAX_SIZE); - this.state = 1401; + this.state = 1411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1400; + this.state = 1410; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1403; + this.state = 1413; localContext._maxSize = this.fileSizeLiteral(); } } - this.state = 1411; + this.state = 1421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1406; + this.state = 1416; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1408; + this.state = 1418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1407; + this.state = 1417; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1410; + this.state = 1420; localContext._nodeGroup = this.uid(); } } - this.state = 1414; + this.state = 1424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1413; + this.state = 1423; this.match(MySqlParser.KW_WAIT); } } - this.state = 1421; + this.state = 1431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1416; + this.state = 1426; this.match(MySqlParser.KW_COMMENT); - this.state = 1418; + this.state = 1428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1417; + this.state = 1427; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1420; + this.state = 1430; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1423; + this.state = 1433; this.match(MySqlParser.KW_ENGINE); - this.state = 1425; + this.state = 1435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1424; + this.state = 1434; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1427; + this.state = 1437; this.engineName(); } } @@ -5316,43 +5322,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1429; + this.state = 1439; this.match(MySqlParser.KW_CREATE); - this.state = 1431; + this.state = 1441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1430; + this.state = 1440; this.ownerStatement(); } } - this.state = 1434; + this.state = 1444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 1433; + this.state = 1443; this.ifNotExists(); } } - this.state = 1436; + this.state = 1446; this.match(MySqlParser.KW_TRIGGER); - this.state = 1438; + this.state = 1448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1437; + this.state = 1447; this.ifNotExists(); } break; } - this.state = 1440; + this.state = 1450; localContext._trigger_name = this.fullId(); - this.state = 1441; + this.state = 1451; localContext._triggerTime = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 16 || _la === 306)) { @@ -5362,7 +5368,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1442; + this.state = 1452; localContext._triggerEvent = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 44 || _la === 86 || _la === 185)) { @@ -5372,22 +5378,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1443; + this.state = 1453; this.match(MySqlParser.KW_ON); - this.state = 1444; + this.state = 1454; this.tableName(); - this.state = 1445; + this.state = 1455; this.match(MySqlParser.KW_FOR); - this.state = 1446; + this.state = 1456; this.match(MySqlParser.KW_EACH); - this.state = 1447; + this.state = 1457; this.match(MySqlParser.KW_ROW); - this.state = 1450; + this.state = 1460; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1448; + this.state = 1458; localContext._triggerPlace = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 406 || _la === 538)) { @@ -5397,12 +5403,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1449; + this.state = 1459; localContext._other_trigger_name = this.fullId(); } break; } - this.state = 1452; + this.state = 1462; this.routineBody(); } } @@ -5426,19 +5432,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1464; this.match(MySqlParser.KW_WITH); - this.state = 1456; + this.state = 1466; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1455; + this.state = 1465; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 1458; + this.state = 1468; this.commonTableExpressions(); } } @@ -5463,54 +5469,54 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1460; + this.state = 1470; localContext._cteName = this.uid(); - this.state = 1472; + this.state = 1482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1461; + this.state = 1471; this.match(MySqlParser.LR_BRACKET); - this.state = 1462; + this.state = 1472; localContext._cteColumnName = this.uid(); - this.state = 1467; + this.state = 1477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1463; + this.state = 1473; this.match(MySqlParser.COMMA); - this.state = 1464; + this.state = 1474; localContext._cteColumnName = this.uid(); } } - this.state = 1469; + this.state = 1479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1470; + this.state = 1480; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1474; + this.state = 1484; this.match(MySqlParser.KW_AS); - this.state = 1475; + this.state = 1485; this.match(MySqlParser.LR_BRACKET); - this.state = 1476; + this.state = 1486; this.dmlStatement(); - this.state = 1477; + this.state = 1487; this.match(MySqlParser.RR_BRACKET); - this.state = 1480; + this.state = 1490; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1478; + this.state = 1488; this.match(MySqlParser.COMMA); - this.state = 1479; + this.state = 1489; this.commonTableExpressions(); } break; @@ -5538,28 +5544,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1482; + this.state = 1492; this.match(MySqlParser.KW_CREATE); - this.state = 1484; + this.state = 1494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 1483; + this.state = 1493; this.orReplace(); } } - this.state = 1489; + this.state = 1499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 1486; + this.state = 1496; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1487; + this.state = 1497; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1488; + this.state = 1498; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -5572,26 +5578,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1492; + this.state = 1502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1491; + this.state = 1501; this.ownerStatement(); } } - this.state = 1497; + this.state = 1507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 1494; + this.state = 1504; this.match(MySqlParser.KW_SQL); - this.state = 1495; + this.state = 1505; this.match(MySqlParser.KW_SECURITY); - this.state = 1496; + this.state = 1506; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -5604,92 +5610,92 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1499; + this.state = 1509; this.match(MySqlParser.KW_VIEW); - this.state = 1500; + this.state = 1510; this.viewNameCreate(); - this.state = 1512; + this.state = 1522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1501; + this.state = 1511; this.match(MySqlParser.LR_BRACKET); - this.state = 1502; + this.state = 1512; this.columnNameCreate(); - this.state = 1507; + this.state = 1517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1503; + this.state = 1513; this.match(MySqlParser.COMMA); - this.state = 1504; + this.state = 1514; this.columnNameCreate(); } } - this.state = 1509; + this.state = 1519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1510; + this.state = 1520; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1514; + this.state = 1524; this.match(MySqlParser.KW_AS); - this.state = 1534; + this.state = 1544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1515; + this.state = 1525; this.match(MySqlParser.LR_BRACKET); - this.state = 1517; + this.state = 1527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1516; + this.state = 1526; this.withClause(); } } - this.state = 1519; + this.state = 1529; this.selectStatement(); - this.state = 1520; + this.state = 1530; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 1523; + this.state = 1533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1522; + this.state = 1532; this.withClause(); } } - this.state = 1525; + this.state = 1535; this.selectStatement(); - this.state = 1532; + this.state = 1542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1526; + this.state = 1536; this.match(MySqlParser.KW_WITH); - this.state = 1528; + this.state = 1538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 1527; + this.state = 1537; localContext._checkOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -5702,9 +5708,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1530; + this.state = 1540; this.match(MySqlParser.KW_CHECK); - this.state = 1531; + this.state = 1541; this.match(MySqlParser.KW_OPTION); } break; @@ -5733,35 +5739,35 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 56, MySqlParser.RULE_createDatabaseOption); let _la: number; try { - this.state = 1569; + this.state = 1579; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1537; + this.state = 1547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1536; + this.state = 1546; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1539; + this.state = 1549; this.charSet(); - this.state = 1541; + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1540; + this.state = 1550; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1545; + this.state = 1555; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -5809,13 +5815,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1543; + this.state = 1553; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1544; + this.state = 1554; this.match(MySqlParser.KW_DEFAULT); } break; @@ -5827,79 +5833,79 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1548; + this.state = 1558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1547; + this.state = 1557; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1550; + this.state = 1560; this.match(MySqlParser.KW_COLLATE); - this.state = 1552; + this.state = 1562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1551; + this.state = 1561; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1554; + this.state = 1564; this.collationName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1556; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1555; + this.state = 1565; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1558; + this.state = 1568; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 1560; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1559; + this.state = 1569; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1562; + this.state = 1572; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1563; + this.state = 1573; this.match(MySqlParser.KW_READ); - this.state = 1564; + this.state = 1574; this.match(MySqlParser.KW_ONLY); - this.state = 1566; + this.state = 1576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1565; + this.state = 1575; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1568; + this.state = 1578; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -5930,31 +5936,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new CharSetContext(this.context, this.state); this.enterRule(localContext, 58, MySqlParser.RULE_charSet); try { - this.state = 1576; + this.state = 1586; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 1571; + this.state = 1581; this.match(MySqlParser.KW_CHARACTER); - this.state = 1572; + this.state = 1582; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 1573; + this.state = 1583; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHAR: this.enterOuterAlt(localContext, 3); { - this.state = 1574; + this.state = 1584; this.match(MySqlParser.KW_CHAR); - this.state = 1575; + this.state = 1585; this.match(MySqlParser.KW_SET); } break; @@ -5983,7 +5989,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1588; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 678)) { this.errorHandler.recoverInline(this); @@ -5992,14 +5998,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1581; + this.state = 1591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1579; + this.state = 1589; this.match(MySqlParser.LR_BRACKET); - this.state = 1580; + this.state = 1590; this.match(MySqlParser.RR_BRACKET); } break; @@ -6026,22 +6032,22 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1583; + this.state = 1593; this.match(MySqlParser.KW_DEFINER); - this.state = 1584; + this.state = 1594; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1587; + this.state = 1597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1585; + this.state = 1595; this.userName(); } break; case 2: { - this.state = 1586; + this.state = 1596; this.currentUserExpression(); } break; @@ -6067,28 +6073,28 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 64, MySqlParser.RULE_scheduleExpression); let _la: number; try { - this.state = 1623; + this.state = 1633; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AT: localContext = new PreciseScheduleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1589; + this.state = 1599; this.match(MySqlParser.KW_AT); - this.state = 1590; + this.state = 1600; this.timestampValue(); - this.state = 1594; + this.state = 1604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1591; + this.state = 1601; this.intervalExpr(); } } - this.state = 1596; + this.state = 1606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6098,74 +6104,74 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalScheduleContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1597; + this.state = 1607; this.match(MySqlParser.KW_EVERY); - this.state = 1600; + this.state = 1610; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1598; + this.state = 1608; this.decimalLiteral(); } break; case 2: { - this.state = 1599; + this.state = 1609; this.expression(0); } break; } - this.state = 1602; + this.state = 1612; this.intervalType(); - this.state = 1611; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 641) { { - this.state = 1603; + this.state = 1613; this.match(MySqlParser.KW_STARTS); - this.state = 1604; + this.state = 1614; (localContext as IntervalScheduleContext)._startTimestamp = this.timestampValue(); - this.state = 1608; + this.state = 1618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1605; + this.state = 1615; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._startIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1610; + this.state = 1620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1621; + this.state = 1631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 379) { { - this.state = 1613; + this.state = 1623; this.match(MySqlParser.KW_ENDS); - this.state = 1614; + this.state = 1624; (localContext as IntervalScheduleContext)._endTimestamp = this.timestampValue(); - this.state = 1618; + this.state = 1628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1615; + this.state = 1625; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._endIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1620; + this.state = 1630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6196,34 +6202,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new TimestampValueContext(this.context, this.state); this.enterRule(localContext, 66, MySqlParser.RULE_timestampValue); try { - this.state = 1629; + this.state = 1639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1625; + this.state = 1635; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1626; + this.state = 1636; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1627; + this.state = 1637; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1628; + this.state = 1638; this.expression(0); } break; @@ -6249,27 +6255,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1631; + this.state = 1641; this.match(MySqlParser.PLUS); - this.state = 1632; + this.state = 1642; this.match(MySqlParser.KW_INTERVAL); - this.state = 1635; + this.state = 1645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1633; + this.state = 1643; this.decimalLiteral(); } break; case 2: { - this.state = 1634; + this.state = 1644; this.expression(0); } break; } - this.state = 1637; + this.state = 1647; this.intervalType(); } } @@ -6291,7 +6297,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new IntervalTypeContext(this.context, this.state); this.enterRule(localContext, 70, MySqlParser.RULE_intervalType); try { - this.state = 1652; + this.state = 1662; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_QUARTER: @@ -6304,91 +6310,91 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MICROSECOND: this.enterOuterAlt(localContext, 1); { - this.state = 1639; + this.state = 1649; this.intervalTypeBase(); } break; case MySqlParser.KW_YEAR: this.enterOuterAlt(localContext, 2); { - this.state = 1640; + this.state = 1650; this.match(MySqlParser.KW_YEAR); } break; case MySqlParser.KW_YEAR_MONTH: this.enterOuterAlt(localContext, 3); { - this.state = 1641; + this.state = 1651; this.match(MySqlParser.KW_YEAR_MONTH); } break; case MySqlParser.KW_DAY_HOUR: this.enterOuterAlt(localContext, 4); { - this.state = 1642; + this.state = 1652; this.match(MySqlParser.KW_DAY_HOUR); } break; case MySqlParser.KW_DAY_MINUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1643; + this.state = 1653; this.match(MySqlParser.KW_DAY_MINUTE); } break; case MySqlParser.KW_DAY_SECOND: this.enterOuterAlt(localContext, 6); { - this.state = 1644; + this.state = 1654; this.match(MySqlParser.KW_DAY_SECOND); } break; case MySqlParser.KW_HOUR_MINUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1645; + this.state = 1655; this.match(MySqlParser.KW_HOUR_MINUTE); } break; case MySqlParser.KW_HOUR_SECOND: this.enterOuterAlt(localContext, 8); { - this.state = 1646; + this.state = 1656; this.match(MySqlParser.KW_HOUR_SECOND); } break; case MySqlParser.KW_MINUTE_SECOND: this.enterOuterAlt(localContext, 9); { - this.state = 1647; + this.state = 1657; this.match(MySqlParser.KW_MINUTE_SECOND); } break; case MySqlParser.KW_SECOND_MICROSECOND: this.enterOuterAlt(localContext, 10); { - this.state = 1648; + this.state = 1658; this.match(MySqlParser.KW_SECOND_MICROSECOND); } break; case MySqlParser.KW_MINUTE_MICROSECOND: this.enterOuterAlt(localContext, 11); { - this.state = 1649; + this.state = 1659; this.match(MySqlParser.KW_MINUTE_MICROSECOND); } break; case MySqlParser.KW_HOUR_MICROSECOND: this.enterOuterAlt(localContext, 12); { - this.state = 1650; + this.state = 1660; this.match(MySqlParser.KW_HOUR_MICROSECOND); } break; case MySqlParser.KW_DAY_MICROSECOND: this.enterOuterAlt(localContext, 13); { - this.state = 1651; + this.state = 1661; this.match(MySqlParser.KW_DAY_MICROSECOND); } break; @@ -6414,31 +6420,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new EnableTypeContext(this.context, this.state); this.enterRule(localContext, 72, MySqlParser.RULE_enableType); try { - this.state = 1659; + this.state = 1669; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1664; this.match(MySqlParser.KW_ENABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1655; + this.state = 1665; this.match(MySqlParser.KW_DISABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1656; + this.state = 1666; this.match(MySqlParser.KW_DISABLE); - this.state = 1657; + this.state = 1667; this.match(MySqlParser.KW_ON); - this.state = 1658; + this.state = 1668; this.match(MySqlParser.KW_SLAVE); } break; @@ -6465,9 +6471,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1661; + this.state = 1671; this.match(MySqlParser.KW_USING); - this.state = 1662; + this.state = 1672; _la = this.tokenStream.LA(1); if(!(_la === 323 || _la === 418)) { this.errorHandler.recoverInline(this); @@ -6497,52 +6503,52 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 76, MySqlParser.RULE_indexOption); let _la: number; try { - this.state = 1686; + this.state = 1696; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_KEY_BLOCK_SIZE: this.enterOuterAlt(localContext, 1); { - this.state = 1664; + this.state = 1674; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 1666; + this.state = 1676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1665; + this.state = 1675; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1668; + this.state = 1678; this.fileSizeLiteral(); } break; case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1669; + this.state = 1679; this.indexType(); } break; case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1670; + this.state = 1680; this.match(MySqlParser.KW_WITH); - this.state = 1671; + this.state = 1681; this.match(MySqlParser.KW_PARSER); - this.state = 1672; + this.state = 1682; localContext._parserName = this.uid(); } break; case MySqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 1673; + this.state = 1683; this.match(MySqlParser.KW_COMMENT); - this.state = 1674; + this.state = 1684; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6550,7 +6556,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VISIBLE: this.enterOuterAlt(localContext, 5); { - this.state = 1675; + this.state = 1685; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -6564,38 +6570,38 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 6); { - this.state = 1676; + this.state = 1686; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1678; + this.state = 1688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1677; + this.state = 1687; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1680; + this.state = 1690; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1681; + this.state = 1691; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 1683; + this.state = 1693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1682; + this.state = 1692; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1685; + this.state = 1695; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6624,12 +6630,12 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1689; + this.state = 1699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80 || _la === 85 || _la === 126) { { - this.state = 1688; + this.state = 1698; localContext._direction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 85 || _la === 126)) { @@ -6642,9 +6648,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1691; + this.state = 1701; localContext._paramName = this.uid(); - this.state = 1692; + this.state = 1702; this.dataType(); } } @@ -6668,9 +6674,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1694; + this.state = 1704; localContext._paramName = this.uid(); - this.state = 1695; + this.state = 1705; this.dataType(); } } @@ -6693,16 +6699,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 82, MySqlParser.RULE_routineOption); let _la: number; try { - this.state = 1720; + this.state = 1730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_COMMENT: localContext = new RoutineCommentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1697; + this.state = 1707; this.match(MySqlParser.KW_COMMENT); - this.state = 1698; + this.state = 1708; (localContext as RoutineCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -6710,9 +6716,9 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineLanguageContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1699; + this.state = 1709; this.match(MySqlParser.KW_LANGUAGE); - this.state = 1700; + this.state = 1710; this.match(MySqlParser.KW_SQL); } break; @@ -6721,17 +6727,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineBehaviorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1702; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1701; + this.state = 1711; this.match(MySqlParser.KW_NOT); } } - this.state = 1704; + this.state = 1714; this.match(MySqlParser.KW_DETERMINISTIC); } break; @@ -6742,42 +6748,42 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineDataContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1715; + this.state = 1725; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONTAINS: { - this.state = 1705; + this.state = 1715; this.match(MySqlParser.KW_CONTAINS); - this.state = 1706; + this.state = 1716; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_NO: { - this.state = 1707; + this.state = 1717; this.match(MySqlParser.KW_NO); - this.state = 1708; + this.state = 1718; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_READS: { - this.state = 1709; + this.state = 1719; this.match(MySqlParser.KW_READS); - this.state = 1710; + this.state = 1720; this.match(MySqlParser.KW_SQL); - this.state = 1711; + this.state = 1721; this.match(MySqlParser.KW_DATA); } break; case MySqlParser.KW_MODIFIES: { - this.state = 1712; + this.state = 1722; this.match(MySqlParser.KW_MODIFIES); - this.state = 1713; + this.state = 1723; this.match(MySqlParser.KW_SQL); - this.state = 1714; + this.state = 1724; this.match(MySqlParser.KW_DATA); } break; @@ -6790,11 +6796,11 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineSecurityContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1717; + this.state = 1727; this.match(MySqlParser.KW_SQL); - this.state = 1718; + this.state = 1728; this.match(MySqlParser.KW_SECURITY); - this.state = 1719; + this.state = 1729; (localContext as RoutineSecurityContext)._context = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -6828,69 +6834,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new ServerOptionContext(this.context, this.state); this.enterRule(localContext, 84, MySqlParser.RULE_serverOption); try { - this.state = 1736; + this.state = 1746; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_HOST: this.enterOuterAlt(localContext, 1); { - this.state = 1722; + this.state = 1732; this.match(MySqlParser.KW_HOST); - this.state = 1723; + this.state = 1733; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 2); { - this.state = 1724; + this.state = 1734; this.match(MySqlParser.KW_DATABASE); - this.state = 1725; + this.state = 1735; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_USER: this.enterOuterAlt(localContext, 3); { - this.state = 1726; + this.state = 1736; this.match(MySqlParser.KW_USER); - this.state = 1727; + this.state = 1737; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PASSWORD: this.enterOuterAlt(localContext, 4); { - this.state = 1728; + this.state = 1738; this.match(MySqlParser.KW_PASSWORD); - this.state = 1729; + this.state = 1739; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SOCKET: this.enterOuterAlt(localContext, 5); { - this.state = 1730; + this.state = 1740; this.match(MySqlParser.KW_SOCKET); - this.state = 1731; + this.state = 1741; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_OWNER: this.enterOuterAlt(localContext, 6); { - this.state = 1732; + this.state = 1742; this.match(MySqlParser.KW_OWNER); - this.state = 1733; + this.state = 1743; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PORT: this.enterOuterAlt(localContext, 7); { - this.state = 1734; + this.state = 1744; this.match(MySqlParser.KW_PORT); - this.state = 1735; + this.state = 1745; this.decimalLiteral(); } break; @@ -6919,27 +6925,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1748; this.match(MySqlParser.LR_BRACKET); - this.state = 1739; + this.state = 1749; this.createDefinition(); - this.state = 1744; + this.state = 1754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1740; + this.state = 1750; this.match(MySqlParser.COMMA); - this.state = 1741; + this.state = 1751; this.createDefinition(); } } - this.state = 1746; + this.state = 1756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1747; + this.state = 1757; this.match(MySqlParser.RR_BRACKET); } } @@ -6962,22 +6968,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 88, MySqlParser.RULE_createDefinition); let _la: number; try { - this.state = 1832; + this.state = 1842; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1749; + this.state = 1759; this.columnNameCreate(); - this.state = 1750; + this.state = 1760; this.columnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1752; + this.state = 1762; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6986,39 +6992,39 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1754; + this.state = 1764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1753; + this.state = 1763; this.indexName(); } } - this.state = 1757; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1756; + this.state = 1766; this.indexType(); } } - this.state = 1759; + this.state = 1769; this.indexColumnNames(); - this.state = 1763; + this.state = 1773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1760; + this.state = 1770; this.indexOption(); } } - this.state = 1765; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7027,7 +7033,7 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1766; + this.state = 1776; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -7036,12 +7042,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1768; + this.state = 1778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1767; + this.state = 1777; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -7053,29 +7059,29 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1771; + this.state = 1781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1770; + this.state = 1780; this.indexName(); } } - this.state = 1773; + this.state = 1783; this.indexColumnNames(); - this.state = 1777; + this.state = 1787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1774; + this.state = 1784; this.indexOption(); } } - this.state = 1779; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7084,43 +7090,43 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1781; + this.state = 1791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1780; + this.state = 1790; this.constraintSymbol(); } } - this.state = 1783; + this.state = 1793; this.match(MySqlParser.KW_PRIMARY); - this.state = 1784; + this.state = 1794; this.match(MySqlParser.KW_KEY); - this.state = 1786; + this.state = 1796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1785; + this.state = 1795; this.indexType(); } } - this.state = 1788; + this.state = 1798; this.indexColumnNames(); - this.state = 1792; + this.state = 1802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1789; + this.state = 1799; this.indexOption(); } } - this.state = 1794; + this.state = 1804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7129,24 +7135,24 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1796; + this.state = 1806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1795; + this.state = 1805; this.constraintSymbol(); } } - this.state = 1798; + this.state = 1808; this.match(MySqlParser.KW_UNIQUE); - this.state = 1800; + this.state = 1810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1799; + this.state = 1809; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -7158,39 +7164,39 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1803; + this.state = 1813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1802; + this.state = 1812; this.indexName(); } } - this.state = 1806; + this.state = 1816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1805; + this.state = 1815; this.indexType(); } } - this.state = 1808; + this.state = 1818; this.indexColumnNames(); - this.state = 1812; + this.state = 1822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1809; + this.state = 1819; this.indexOption(); } } - this.state = 1814; + this.state = 1824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7199,53 +7205,53 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1816; + this.state = 1826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1815; + this.state = 1825; this.constraintSymbol(); } } - this.state = 1818; + this.state = 1828; this.match(MySqlParser.KW_FOREIGN); - this.state = 1819; + this.state = 1829; this.match(MySqlParser.KW_KEY); - this.state = 1821; + this.state = 1831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1820; + this.state = 1830; this.indexName(); } } - this.state = 1823; + this.state = 1833; this.indexColumnNames(); - this.state = 1824; + this.state = 1834; this.referenceDefinition(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1826; + this.state = 1836; this.match(MySqlParser.KW_CHECK); - this.state = 1827; + this.state = 1837; this.match(MySqlParser.LR_BRACKET); - this.state = 1828; + this.state = 1838; this.expression(0); - this.state = 1829; + this.state = 1839; this.match(MySqlParser.RR_BRACKET); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1831; + this.state = 1841; this.checkConstraintDefinition(); } break; @@ -7272,40 +7278,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1834; + this.state = 1844; this.constraintSymbol(); } } - this.state = 1837; + this.state = 1847; this.match(MySqlParser.KW_CHECK); - this.state = 1838; + this.state = 1848; this.match(MySqlParser.LR_BRACKET); - this.state = 1839; + this.state = 1849; this.expression(0); - this.state = 1840; + this.state = 1850; this.match(MySqlParser.RR_BRACKET); - this.state = 1845; + this.state = 1855; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1842; + this.state = 1852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1841; + this.state = 1851; this.match(MySqlParser.KW_NOT); } } - this.state = 1844; + this.state = 1854; this.match(MySqlParser.KW_ENFORCED); } break; @@ -7332,14 +7338,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1847; + this.state = 1857; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 1849; + this.state = 1859; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1848; + this.state = 1858; localContext._symbol_ = this.uid(); } break; @@ -7367,21 +7373,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1851; + this.state = 1861; localContext._colType = this.dataType(); - this.state = 1855; + this.state = 1865; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1852; + this.state = 1862; this.columnConstraint(); } } } - this.state = 1857; + this.state = 1867; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); } @@ -7406,7 +7412,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 96, MySqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 1901; + this.state = 1911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NOT: @@ -7415,7 +7421,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NullColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1858; + this.state = 1868; this.nullNotNull(); } break; @@ -7423,9 +7429,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1859; + this.state = 1869; this.match(MySqlParser.KW_DEFAULT); - this.state = 1860; + this.state = 1870; this.defaultValue(); } break; @@ -7433,7 +7439,7 @@ export class MySqlParser extends SQLParserBase { localContext = new VisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1861; + this.state = 1871; this.match(MySqlParser.KW_VISIBLE); } break; @@ -7441,7 +7447,7 @@ export class MySqlParser extends SQLParserBase { localContext = new InvisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1862; + this.state = 1872; this.match(MySqlParser.KW_INVISIBLE); } break; @@ -7450,22 +7456,22 @@ export class MySqlParser extends SQLParserBase { localContext = new AutoIncrementColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1867; + this.state = 1877; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AUTO_INCREMENT: { - this.state = 1863; + this.state = 1873; this.match(MySqlParser.KW_AUTO_INCREMENT); } break; case MySqlParser.KW_ON: { - this.state = 1864; + this.state = 1874; this.match(MySqlParser.KW_ON); - this.state = 1865; + this.state = 1875; this.match(MySqlParser.KW_UPDATE); - this.state = 1866; + this.state = 1876; this.currentTimestamp(); } break; @@ -7479,17 +7485,17 @@ export class MySqlParser extends SQLParserBase { localContext = new PrimaryKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1870; + this.state = 1880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 131) { { - this.state = 1869; + this.state = 1879; this.match(MySqlParser.KW_PRIMARY); } } - this.state = 1872; + this.state = 1882; this.match(MySqlParser.KW_KEY); } break; @@ -7497,14 +7503,14 @@ export class MySqlParser extends SQLParserBase { localContext = new UniqueKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1873; + this.state = 1883; this.match(MySqlParser.KW_UNIQUE); - this.state = 1875; + this.state = 1885; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: { - this.state = 1874; + this.state = 1884; this.match(MySqlParser.KW_KEY); } break; @@ -7515,9 +7521,9 @@ export class MySqlParser extends SQLParserBase { localContext = new CommentColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1877; + this.state = 1887; this.match(MySqlParser.KW_COMMENT); - this.state = 1878; + this.state = 1888; (localContext as CommentColumnConstraintContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -7525,9 +7531,9 @@ export class MySqlParser extends SQLParserBase { localContext = new FormatColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1879; + this.state = 1889; this.match(MySqlParser.KW_COLUMN_FORMAT); - this.state = 1880; + this.state = 1890; (localContext as FormatColumnConstraintContext)._colformat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 374 || _la === 403)) { @@ -7543,9 +7549,9 @@ export class MySqlParser extends SQLParserBase { localContext = new StorageColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1881; + this.state = 1891; this.match(MySqlParser.KW_STORAGE); - this.state = 1882; + this.state = 1892; (localContext as StorageColumnConstraintContext)._storageval = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { @@ -7561,7 +7567,7 @@ export class MySqlParser extends SQLParserBase { localContext = new ReferenceColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1883; + this.state = 1893; this.referenceDefinition(); } break; @@ -7569,9 +7575,9 @@ export class MySqlParser extends SQLParserBase { localContext = new CollateColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1884; + this.state = 1894; this.match(MySqlParser.KW_COLLATE); - this.state = 1885; + this.state = 1895; this.collationName(); } break; @@ -7580,32 +7586,32 @@ export class MySqlParser extends SQLParserBase { localContext = new GeneratedColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1888; + this.state = 1898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1886; + this.state = 1896; this.match(MySqlParser.KW_GENERATED); - this.state = 1887; + this.state = 1897; this.match(MySqlParser.KW_ALWAYS); } } - this.state = 1890; + this.state = 1900; this.match(MySqlParser.KW_AS); - this.state = 1891; + this.state = 1901; this.match(MySqlParser.LR_BRACKET); - this.state = 1892; + this.state = 1902; this.expression(0); - this.state = 1893; + this.state = 1903; this.match(MySqlParser.RR_BRACKET); - this.state = 1895; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 648 || _la === 685) { { - this.state = 1894; + this.state = 1904; _la = this.tokenStream.LA(1); if(!(_la === 648 || _la === 685)) { this.errorHandler.recoverInline(this); @@ -7623,11 +7629,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SerialDefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1897; + this.state = 1907; this.match(MySqlParser.KW_SERIAL); - this.state = 1898; + this.state = 1908; this.match(MySqlParser.KW_DEFAULT); - this.state = 1899; + this.state = 1909; this.match(MySqlParser.KW_VALUE); } break; @@ -7636,7 +7642,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CheckExprContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1900; + this.state = 1910; this.checkConstraintDefinition(); } break; @@ -7665,28 +7671,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1903; + this.state = 1913; this.match(MySqlParser.KW_REFERENCES); - this.state = 1904; + this.state = 1914; this.tableName(); - this.state = 1906; + this.state = 1916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - this.state = 1905; + this.state = 1915; this.indexColumnNames(); } break; } - this.state = 1910; + this.state = 1920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 1908; + this.state = 1918; this.match(MySqlParser.KW_MATCH); - this.state = 1909; + this.state = 1919; localContext._matchType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 408 || _la === 526 || _la === 597)) { @@ -7699,12 +7705,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1913; + this.state = 1923; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1912; + this.state = 1922; this.referenceAction(); } break; @@ -7729,28 +7735,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReferenceActionContext(this.context, this.state); this.enterRule(localContext, 100, MySqlParser.RULE_referenceAction); try { - this.state = 1931; + this.state = 1941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1915; + this.state = 1925; this.match(MySqlParser.KW_ON); - this.state = 1916; + this.state = 1926; this.match(MySqlParser.KW_DELETE); - this.state = 1917; + this.state = 1927; localContext._onDelete = this.referenceControlType(); - this.state = 1921; + this.state = 1931; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1918; + this.state = 1928; this.match(MySqlParser.KW_ON); - this.state = 1919; + this.state = 1929; this.match(MySqlParser.KW_UPDATE); - this.state = 1920; + this.state = 1930; localContext._onUpdate = this.referenceControlType(); } break; @@ -7760,22 +7766,22 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1923; + this.state = 1933; this.match(MySqlParser.KW_ON); - this.state = 1924; + this.state = 1934; this.match(MySqlParser.KW_UPDATE); - this.state = 1925; + this.state = 1935; localContext._onUpdate = this.referenceControlType(); - this.state = 1929; + this.state = 1939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1926; + this.state = 1936; this.match(MySqlParser.KW_ON); - this.state = 1927; + this.state = 1937; this.match(MySqlParser.KW_DELETE); - this.state = 1928; + this.state = 1938; localContext._onDelete = this.referenceControlType(); } break; @@ -7802,47 +7808,47 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReferenceControlTypeContext(this.context, this.state); this.enterRule(localContext, 102, MySqlParser.RULE_referenceControlType); try { - this.state = 1941; + this.state = 1951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1933; + this.state = 1943; this.match(MySqlParser.KW_RESTRICT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1934; + this.state = 1944; this.match(MySqlParser.KW_CASCADE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1935; + this.state = 1945; this.match(MySqlParser.KW_SET); - this.state = 1936; + this.state = 1946; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1937; + this.state = 1947; this.match(MySqlParser.KW_NO); - this.state = 1938; + this.state = 1948; this.match(MySqlParser.KW_ACTION); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1939; + this.state = 1949; this.match(MySqlParser.KW_SET); - this.state = 1940; + this.state = 1950; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7867,31 +7873,31 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 104, MySqlParser.RULE_tableOption); let _la: number; try { - this.state = 2128; + this.state = 2138; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: localContext = new TableOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1943; + this.state = 1953; this.match(MySqlParser.KW_ENGINE); - this.state = 1945; + this.state = 1955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1944; + this.state = 1954; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1948; + this.state = 1958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1947; + this.state = 1957; this.engineName(); } break; @@ -7902,19 +7908,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1950; + this.state = 1960; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1952; + this.state = 1962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1951; + this.state = 1961; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1954; + this.state = 1964; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7922,19 +7928,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAutoExtendSizeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1955; + this.state = 1965; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1957; + this.state = 1967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1956; + this.state = 1966; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1959; + this.state = 1969; this.decimalLiteral(); } break; @@ -7942,19 +7948,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAutoIncrementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1960; + this.state = 1970; this.match(MySqlParser.KW_AUTO_INCREMENT); - this.state = 1962; + this.state = 1972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1961; + this.state = 1971; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1964; + this.state = 1974; this.decimalLiteral(); } break; @@ -7962,19 +7968,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAverageContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1965; + this.state = 1975; this.match(MySqlParser.KW_AVG_ROW_LENGTH); - this.state = 1967; + this.state = 1977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1966; + this.state = 1976; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1969; + this.state = 1979; this.decimalLiteral(); } break; @@ -7982,29 +7988,29 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCharsetContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1971; + this.state = 1981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1970; + this.state = 1980; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1973; + this.state = 1983; this.charSet(); - this.state = 1975; + this.state = 1985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1974; + this.state = 1984; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1979; + this.state = 1989; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -8052,13 +8058,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1977; + this.state = 1987; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1978; + this.state = 1988; this.match(MySqlParser.KW_DEFAULT); } break; @@ -8071,7 +8077,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionChecksumContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1981; + this.state = 1991; _la = this.tokenStream.LA(1); if(!(_la === 329 || _la === 522)) { this.errorHandler.recoverInline(this); @@ -8080,17 +8086,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1983; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1982; + this.state = 1992; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1985; + this.state = 1995; (localContext as TableOptionChecksumContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -8106,29 +8112,29 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCollateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1987; + this.state = 1997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1986; + this.state = 1996; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1989; + this.state = 1999; this.match(MySqlParser.KW_COLLATE); - this.state = 1991; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1990; + this.state = 2000; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1993; + this.state = 2003; this.collationName(); } break; @@ -8136,19 +8142,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCommentContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1994; + this.state = 2004; this.match(MySqlParser.KW_COMMENT); - this.state = 1996; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1995; + this.state = 2005; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1998; + this.state = 2008; (localContext as TableOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -8156,19 +8162,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCompressionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1999; + this.state = 2009; this.match(MySqlParser.KW_COMPRESSION); - this.state = 2001; + this.state = 2011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2000; + this.state = 2010; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2003; + this.state = 2013; _la = this.tokenStream.LA(1); if(!(_la === 882 || _la === 889)) { this.errorHandler.recoverInline(this); @@ -8183,19 +8189,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionConnectionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2004; + this.state = 2014; this.match(MySqlParser.KW_CONNECTION); - this.state = 2006; + this.state = 2016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2005; + this.state = 2015; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2008; + this.state = 2018; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8203,7 +8209,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2009; + this.state = 2019; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -8212,19 +8218,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2010; + this.state = 2020; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2012; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2011; + this.state = 2021; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2014; + this.state = 2024; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8232,19 +8238,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionDelayContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2015; + this.state = 2025; this.match(MySqlParser.KW_DELAY_KEY_WRITE); - this.state = 2017; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2016; + this.state = 2026; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2019; + this.state = 2029; (localContext as TableOptionDelayContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -8260,19 +8266,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEncryptionContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2020; + this.state = 2030; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2022; + this.state = 2032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2021; + this.state = 2031; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2024; + this.state = 2034; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8280,7 +8286,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPageCompressedContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2025; + this.state = 2035; _la = this.tokenStream.LA(1); if(!(_la === 523 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -8289,17 +8295,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2027; + this.state = 2037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2026; + this.state = 2036; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2029; + this.state = 2039; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -8314,7 +8320,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPageCompressionLevelContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2030; + this.state = 2040; _la = this.tokenStream.LA(1); if(!(_la === 524 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -8323,17 +8329,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2032; + this.state = 2042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2031; + this.state = 2041; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2034; + this.state = 2044; this.decimalLiteral(); } break; @@ -8341,19 +8347,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEncryptionKeyIdContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2035; + this.state = 2045; this.match(MySqlParser.KW_ENCRYPTION_KEY_ID); - this.state = 2037; + this.state = 2047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2036; + this.state = 2046; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2039; + this.state = 2049; this.decimalLiteral(); } break; @@ -8361,21 +8367,21 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2040; + this.state = 2050; this.match(MySqlParser.KW_INDEX); - this.state = 2041; + this.state = 2051; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2043; + this.state = 2053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2042; + this.state = 2052; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2045; + this.state = 2055; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8383,19 +8389,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionInsertMethodContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2046; + this.state = 2056; this.match(MySqlParser.KW_INSERT_METHOD); - this.state = 2048; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2047; + this.state = 2057; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2050; + this.state = 2060; (localContext as TableOptionInsertMethodContext)._insertMethod = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 502)) { @@ -8411,19 +8417,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionKeyBlockSizeContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2051; + this.state = 2061; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 2053; + this.state = 2063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2052; + this.state = 2062; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2055; + this.state = 2065; this.fileSizeLiteral(); } break; @@ -8431,19 +8437,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2056; + this.state = 2066; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2058; + this.state = 2068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2057; + this.state = 2067; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2060; + this.state = 2070; this.decimalLiteral(); } break; @@ -8451,19 +8457,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2061; + this.state = 2071; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2063; + this.state = 2073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2062; + this.state = 2072; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2065; + this.state = 2075; this.decimalLiteral(); } break; @@ -8471,19 +8477,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPackKeysContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2066; + this.state = 2076; this.match(MySqlParser.KW_PACK_KEYS); - this.state = 2068; + this.state = 2078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2067; + this.state = 2077; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2070; + this.state = 2080; (localContext as TableOptionPackKeysContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8499,19 +8505,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPasswordContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2071; + this.state = 2081; this.match(MySqlParser.KW_PASSWORD); - this.state = 2073; + this.state = 2083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2072; + this.state = 2082; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2075; + this.state = 2085; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8519,19 +8525,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionRowFormatContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2076; + this.state = 2086; this.match(MySqlParser.KW_ROW_FORMAT); - this.state = 2078; + this.state = 2088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2077; + this.state = 2087; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2080; + this.state = 2090; (localContext as TableOptionRowFormatContext)._rowFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 342 || _la === 345 || _la === 374 || _la === 403 || _la === 554 || _la === 889)) { @@ -8547,9 +8553,9 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionStartTransactionContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2081; + this.state = 2091; this.match(MySqlParser.KW_START); - this.state = 2082; + this.state = 2092; this.match(MySqlParser.KW_TRANSACTION); } break; @@ -8557,19 +8563,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionSecondaryEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2083; + this.state = 2093; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 2085; + this.state = 2095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2084; + this.state = 2094; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2087; + this.state = 2097; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8577,19 +8583,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionRecalculationContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2088; + this.state = 2098; this.match(MySqlParser.KW_STATS_AUTO_RECALC); - this.state = 2090; + this.state = 2100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2089; + this.state = 2099; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2092; + this.state = 2102; (localContext as TableOptionRecalculationContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8605,19 +8611,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPersistentContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2093; + this.state = 2103; this.match(MySqlParser.KW_STATS_PERSISTENT); - this.state = 2095; + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2094; + this.state = 2104; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2097; + this.state = 2107; (localContext as TableOptionPersistentContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8633,24 +8639,24 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionSamplePageContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2098; + this.state = 2108; this.match(MySqlParser.KW_STATS_SAMPLE_PAGES); - this.state = 2100; + this.state = 2110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2099; + this.state = 2109; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2104; + this.state = 2114; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 2102; + this.state = 2112; this.match(MySqlParser.KW_DEFAULT); } break; @@ -8661,7 +8667,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 2103; + this.state = 2113; this.decimalLiteral(); } break; @@ -8674,16 +8680,16 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2106; + this.state = 2116; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2107; + this.state = 2117; this.tableSpaceName(); - this.state = 2109; + this.state = 2119; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 2108; + this.state = 2118; this.tableSpaceStorage(); } break; @@ -8694,11 +8700,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableTypeContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2111; + this.state = 2121; this.match(MySqlParser.KW_TABLE_TYPE); - this.state = 2112; + this.state = 2122; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2113; + this.state = 2123; this.tableType(); } break; @@ -8706,7 +8712,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 2114; + this.state = 2124; this.tableSpaceStorage(); } break; @@ -8714,19 +8720,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTransactionalContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 2115; + this.state = 2125; this.match(MySqlParser.KW_TRANSACTIONAL); - this.state = 2117; + this.state = 2127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2116; + this.state = 2126; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2119; + this.state = 2129; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -8741,23 +8747,23 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionUnionContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 2120; + this.state = 2130; this.match(MySqlParser.KW_UNION); - this.state = 2122; + this.state = 2132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2121; + this.state = 2131; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2124; + this.state = 2134; this.match(MySqlParser.LR_BRACKET); - this.state = 2125; + this.state = 2135; this.tableNames(); - this.state = 2126; + this.state = 2136; this.match(MySqlParser.RR_BRACKET); } break; @@ -8784,7 +8790,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2130; + this.state = 2140; _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 506)) { this.errorHandler.recoverInline(this); @@ -8816,9 +8822,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2132; + this.state = 2142; this.match(MySqlParser.KW_STORAGE); - this.state = 2133; + this.state = 2143; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { this.errorHandler.recoverInline(this); @@ -8850,43 +8856,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2135; + this.state = 2145; this.match(MySqlParser.KW_PARTITION); - this.state = 2136; + this.state = 2146; this.match(MySqlParser.KW_BY); - this.state = 2137; + this.state = 2147; this.partitionFunctionDefinition(); - this.state = 2140; + this.state = 2150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 528) { { - this.state = 2138; + this.state = 2148; this.match(MySqlParser.KW_PARTITIONS); - this.state = 2139; + this.state = 2149; localContext._count = this.decimalLiteral(); } } - this.state = 2149; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 652) { { - this.state = 2142; + this.state = 2152; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2143; + this.state = 2153; this.match(MySqlParser.KW_BY); - this.state = 2144; + this.state = 2154; this.subpartitionFunctionDefinition(); - this.state = 2147; + this.state = 2157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 653) { { - this.state = 2145; + this.state = 2155; this.match(MySqlParser.KW_SUBPARTITIONS); - this.state = 2146; + this.state = 2156; localContext._subCount = this.decimalLiteral(); } } @@ -8894,32 +8900,32 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2162; + this.state = 2172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 2151; + this.state = 2161; this.match(MySqlParser.LR_BRACKET); - this.state = 2152; + this.state = 2162; this.partitionDefinition(); - this.state = 2157; + this.state = 2167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2153; + this.state = 2163; this.match(MySqlParser.COMMA); - this.state = 2154; + this.state = 2164; this.partitionDefinition(); } } - this.state = 2159; + this.state = 2169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2160; + this.state = 2170; this.match(MySqlParser.RR_BRACKET); } break; @@ -8945,30 +8951,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 112, MySqlParser.RULE_partitionFunctionDefinition); let _la: number; try { - this.state = 2210; + this.state = 2220; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: localContext = new PartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2164; + this.state = 2174; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2167; + this.state = 2177; this.match(MySqlParser.KW_HASH); - this.state = 2168; + this.state = 2178; this.match(MySqlParser.LR_BRACKET); - this.state = 2169; + this.state = 2179; this.expression(0); - this.state = 2170; + this.state = 2180; this.match(MySqlParser.RR_BRACKET); } break; @@ -8976,28 +8982,28 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2173; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2172; + this.state = 2182; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2175; + this.state = 2185; this.match(MySqlParser.KW_KEY); - this.state = 2179; + this.state = 2189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2176; + this.state = 2186; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2177; + this.state = 2187; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2178; + this.state = 2188; (localContext as PartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -9010,19 +9016,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2181; + this.state = 2191; this.match(MySqlParser.LR_BRACKET); - this.state = 2183; + this.state = 2193; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2182; + this.state = 2192; this.columnNames(); } break; } - this.state = 2185; + this.state = 2195; this.match(MySqlParser.RR_BRACKET); } break; @@ -9030,30 +9036,30 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionRangeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2186; - this.match(MySqlParser.KW_RANGE); this.state = 2196; + this.match(MySqlParser.KW_RANGE); + this.state = 2206; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2187; + this.state = 2197; this.match(MySqlParser.LR_BRACKET); - this.state = 2188; + this.state = 2198; this.expression(0); - this.state = 2189; + this.state = 2199; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2191; + this.state = 2201; this.match(MySqlParser.KW_COLUMNS); - this.state = 2192; + this.state = 2202; this.match(MySqlParser.LR_BRACKET); - this.state = 2193; + this.state = 2203; this.columnNames(); - this.state = 2194; + this.state = 2204; this.match(MySqlParser.RR_BRACKET); } break; @@ -9066,30 +9072,30 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2198; - this.match(MySqlParser.KW_LIST); this.state = 2208; + this.match(MySqlParser.KW_LIST); + this.state = 2218; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2199; + this.state = 2209; this.match(MySqlParser.LR_BRACKET); - this.state = 2200; + this.state = 2210; this.expression(0); - this.state = 2201; + this.state = 2211; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2203; + this.state = 2213; this.match(MySqlParser.KW_COLUMNS); - this.state = 2204; + this.state = 2214; this.match(MySqlParser.LR_BRACKET); - this.state = 2205; + this.state = 2215; this.columnNames(); - this.state = 2206; + this.state = 2216; this.match(MySqlParser.RR_BRACKET); } break; @@ -9119,30 +9125,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 114, MySqlParser.RULE_subpartitionFunctionDefinition); let _la: number; try { - this.state = 2233; + this.state = 2243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: localContext = new SubPartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2212; + this.state = 2222; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2215; + this.state = 2225; this.match(MySqlParser.KW_HASH); - this.state = 2216; + this.state = 2226; this.match(MySqlParser.LR_BRACKET); - this.state = 2217; + this.state = 2227; this.expression(0); - this.state = 2218; + this.state = 2228; this.match(MySqlParser.RR_BRACKET); } break; @@ -9150,28 +9156,28 @@ export class MySqlParser extends SQLParserBase { localContext = new SubPartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2221; + this.state = 2231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2220; + this.state = 2230; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2223; + this.state = 2233; this.match(MySqlParser.KW_KEY); - this.state = 2227; + this.state = 2237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2224; + this.state = 2234; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2225; + this.state = 2235; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2226; + this.state = 2236; (localContext as SubPartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -9184,11 +9190,11 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2229; + this.state = 2239; this.match(MySqlParser.LR_BRACKET); - this.state = 2230; + this.state = 2240; this.columnNames(); - this.state = 2231; + this.state = 2241; this.match(MySqlParser.RR_BRACKET); } break; @@ -9213,85 +9219,85 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 116, MySqlParser.RULE_partitionDefinition); let _la: number; try { - this.state = 2381; + this.state = 2391; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2235; + this.state = 2245; this.match(MySqlParser.KW_PARTITION); - this.state = 2236; + this.state = 2246; this.partitionName(); - this.state = 2237; + this.state = 2247; this.match(MySqlParser.KW_VALUES); - this.state = 2238; + this.state = 2248; this.match(MySqlParser.KW_LESS); - this.state = 2239; + this.state = 2249; this.match(MySqlParser.KW_THAN); - this.state = 2240; + this.state = 2250; this.match(MySqlParser.LR_BRACKET); - this.state = 2241; + this.state = 2251; this.partitionDefinerAtom(); - this.state = 2246; + this.state = 2256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2242; + this.state = 2252; this.match(MySqlParser.COMMA); - this.state = 2243; + this.state = 2253; this.partitionDefinerAtom(); } } - this.state = 2248; + this.state = 2258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2249; + this.state = 2259; this.match(MySqlParser.RR_BRACKET); - this.state = 2253; + this.state = 2263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2250; + this.state = 2260; this.partitionOption(); } } - this.state = 2255; + this.state = 2265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2267; + this.state = 2277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2256; + this.state = 2266; this.match(MySqlParser.LR_BRACKET); - this.state = 2257; + this.state = 2267; this.subPartitionDefinition(); - this.state = 2262; + this.state = 2272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2258; + this.state = 2268; this.match(MySqlParser.COMMA); - this.state = 2259; + this.state = 2269; this.subPartitionDefinition(); } } - this.state = 2264; + this.state = 2274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2265; + this.state = 2275; this.match(MySqlParser.RR_BRACKET); } } @@ -9302,58 +9308,58 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2269; + this.state = 2279; this.match(MySqlParser.KW_PARTITION); - this.state = 2270; + this.state = 2280; this.partitionName(); - this.state = 2271; + this.state = 2281; this.match(MySqlParser.KW_VALUES); - this.state = 2272; + this.state = 2282; this.match(MySqlParser.KW_LESS); - this.state = 2273; + this.state = 2283; this.match(MySqlParser.KW_THAN); - this.state = 2274; + this.state = 2284; this.partitionDefinerAtom(); - this.state = 2278; + this.state = 2288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2275; + this.state = 2285; this.partitionOption(); } } - this.state = 2280; + this.state = 2290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2292; + this.state = 2302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2281; + this.state = 2291; this.match(MySqlParser.LR_BRACKET); - this.state = 2282; + this.state = 2292; this.subPartitionDefinition(); - this.state = 2287; + this.state = 2297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2283; + this.state = 2293; this.match(MySqlParser.COMMA); - this.state = 2284; + this.state = 2294; this.subPartitionDefinition(); } } - this.state = 2289; + this.state = 2299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2290; + this.state = 2300; this.match(MySqlParser.RR_BRACKET); } } @@ -9364,76 +9370,76 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionListAtomContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2294; + this.state = 2304; this.match(MySqlParser.KW_PARTITION); - this.state = 2295; + this.state = 2305; this.partitionName(); - this.state = 2296; + this.state = 2306; this.match(MySqlParser.KW_VALUES); - this.state = 2297; + this.state = 2307; this.match(MySqlParser.KW_IN); - this.state = 2298; + this.state = 2308; this.match(MySqlParser.LR_BRACKET); - this.state = 2299; + this.state = 2309; this.partitionDefinerAtom(); - this.state = 2304; + this.state = 2314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2300; + this.state = 2310; this.match(MySqlParser.COMMA); - this.state = 2301; + this.state = 2311; this.partitionDefinerAtom(); } } - this.state = 2306; + this.state = 2316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2307; + this.state = 2317; this.match(MySqlParser.RR_BRACKET); - this.state = 2311; + this.state = 2321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2308; + this.state = 2318; this.partitionOption(); } } - this.state = 2313; + this.state = 2323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2325; + this.state = 2335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2314; + this.state = 2324; this.match(MySqlParser.LR_BRACKET); - this.state = 2315; + this.state = 2325; this.subPartitionDefinition(); - this.state = 2320; + this.state = 2330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2316; + this.state = 2326; this.match(MySqlParser.COMMA); - this.state = 2317; + this.state = 2327; this.subPartitionDefinition(); } } - this.state = 2322; + this.state = 2332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2323; + this.state = 2333; this.match(MySqlParser.RR_BRACKET); } } @@ -9444,76 +9450,76 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionListVectorContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2327; + this.state = 2337; this.match(MySqlParser.KW_PARTITION); - this.state = 2328; + this.state = 2338; this.partitionName(); - this.state = 2329; + this.state = 2339; this.match(MySqlParser.KW_VALUES); - this.state = 2330; + this.state = 2340; this.match(MySqlParser.KW_IN); - this.state = 2331; + this.state = 2341; this.match(MySqlParser.LR_BRACKET); - this.state = 2332; + this.state = 2342; this.partitionDefinerVector(); - this.state = 2337; + this.state = 2347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2333; + this.state = 2343; this.match(MySqlParser.COMMA); - this.state = 2334; + this.state = 2344; this.partitionDefinerVector(); } } - this.state = 2339; + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2340; + this.state = 2350; this.match(MySqlParser.RR_BRACKET); - this.state = 2344; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2341; + this.state = 2351; this.partitionOption(); } } - this.state = 2346; + this.state = 2356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2358; + this.state = 2368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2347; + this.state = 2357; this.match(MySqlParser.LR_BRACKET); - this.state = 2348; + this.state = 2358; this.subPartitionDefinition(); - this.state = 2353; + this.state = 2363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2349; + this.state = 2359; this.match(MySqlParser.COMMA); - this.state = 2350; + this.state = 2360; this.subPartitionDefinition(); } } - this.state = 2355; + this.state = 2365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2356; + this.state = 2366; this.match(MySqlParser.RR_BRACKET); } } @@ -9524,50 +9530,50 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionSimpleContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2360; + this.state = 2370; this.match(MySqlParser.KW_PARTITION); - this.state = 2361; + this.state = 2371; this.partitionName(); - this.state = 2365; + this.state = 2375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2362; + this.state = 2372; this.partitionOption(); } } - this.state = 2367; + this.state = 2377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2379; + this.state = 2389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2368; + this.state = 2378; this.match(MySqlParser.LR_BRACKET); - this.state = 2369; + this.state = 2379; this.subPartitionDefinition(); - this.state = 2374; + this.state = 2384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2370; + this.state = 2380; this.match(MySqlParser.COMMA); - this.state = 2371; + this.state = 2381; this.subPartitionDefinition(); } } - this.state = 2376; + this.state = 2386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2377; + this.state = 2387; this.match(MySqlParser.RR_BRACKET); } } @@ -9594,27 +9600,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new PartitionDefinerAtomContext(this.context, this.state); this.enterRule(localContext, 118, MySqlParser.RULE_partitionDefinerAtom); try { - this.state = 2386; + this.state = 2396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2383; + this.state = 2393; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2384; + this.state = 2394; this.expression(0); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2385; + this.state = 2395; this.match(MySqlParser.KW_MAXVALUE); } break; @@ -9641,27 +9647,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2388; + this.state = 2398; this.match(MySqlParser.LR_BRACKET); - this.state = 2389; + this.state = 2399; this.partitionDefinerAtom(); - this.state = 2392; + this.state = 2402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2390; + this.state = 2400; this.match(MySqlParser.COMMA); - this.state = 2391; + this.state = 2401; this.partitionDefinerAtom(); } } - this.state = 2394; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 2396; + this.state = 2406; this.match(MySqlParser.RR_BRACKET); } } @@ -9686,21 +9692,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2398; + this.state = 2408; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2399; + this.state = 2409; localContext._logicalName = this.uid(); - this.state = 2403; + this.state = 2413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2400; + this.state = 2410; this.partitionOption(); } } - this.state = 2405; + this.state = 2415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9725,7 +9731,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 124, MySqlParser.RULE_partitionOption); let _la: number; try { - this.state = 2454; + this.state = 2464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: @@ -9734,39 +9740,39 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2407; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2406; + this.state = 2416; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2410; + this.state = 2420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 2409; + this.state = 2419; this.match(MySqlParser.KW_STORAGE); } } - this.state = 2412; + this.state = 2422; this.match(MySqlParser.KW_ENGINE); - this.state = 2414; + this.state = 2424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2413; + this.state = 2423; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2416; + this.state = 2426; this.engineName(); } break; @@ -9774,19 +9780,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionCommentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2417; + this.state = 2427; this.match(MySqlParser.KW_COMMENT); - this.state = 2419; + this.state = 2429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2418; + this.state = 2428; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2421; + this.state = 2431; (localContext as PartitionOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9794,21 +9800,21 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2422; + this.state = 2432; this.match(MySqlParser.KW_DATA); - this.state = 2423; + this.state = 2433; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2425; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2424; + this.state = 2434; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2427; + this.state = 2437; (localContext as PartitionOptionDataDirectoryContext)._dataDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9816,21 +9822,21 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2428; + this.state = 2438; this.match(MySqlParser.KW_INDEX); - this.state = 2429; + this.state = 2439; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2431; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2430; + this.state = 2440; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2433; + this.state = 2443; (localContext as PartitionOptionIndexDirectoryContext)._indexDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9838,19 +9844,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2434; + this.state = 2444; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2436; + this.state = 2446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2435; + this.state = 2445; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2438; + this.state = 2448; (localContext as PartitionOptionMaxRowsContext)._maxRows = this.decimalLiteral(); } break; @@ -9858,19 +9864,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2439; + this.state = 2449; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2441; + this.state = 2451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2440; + this.state = 2450; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2443; + this.state = 2453; (localContext as PartitionOptionMinRowsContext)._minRows = this.decimalLiteral(); } break; @@ -9878,19 +9884,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2444; + this.state = 2454; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2446; + this.state = 2456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2445; + this.state = 2455; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2448; + this.state = 2458; this.tableSpaceName(); } break; @@ -9898,19 +9904,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionNodeGroupContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2449; + this.state = 2459; this.match(MySqlParser.KW_NODEGROUP); - this.state = 2451; + this.state = 2461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2450; + this.state = 2460; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2453; + this.state = 2463; (localContext as PartitionOptionNodeGroupContext)._nodeGroup = this.uid(); } break; @@ -9937,16 +9943,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 126, MySqlParser.RULE_alterDatabase); let _la: number; try { - this.state = 2474; + this.state = 2484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: localContext = new AlterSimpleDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2456; + this.state = 2466; this.match(MySqlParser.KW_ALTER); - this.state = 2457; + this.state = 2467; (localContext as AlterSimpleDatabaseContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9956,27 +9962,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2459; + this.state = 2469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2458; + this.state = 2468; this.databaseName(); } break; } - this.state = 2462; + this.state = 2472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2461; + this.state = 2471; this.createDatabaseOption(); } } - this.state = 2464; + this.state = 2474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823); @@ -9986,9 +9992,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterUpgradeNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2466; + this.state = 2476; this.match(MySqlParser.KW_ALTER); - this.state = 2467; + this.state = 2477; (localContext as AlterUpgradeNameContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9998,15 +10004,15 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2468; + this.state = 2478; this.databaseName(); - this.state = 2469; + this.state = 2479; this.match(MySqlParser.KW_UPGRADE); - this.state = 2470; + this.state = 2480; this.match(MySqlParser.KW_DATA); - this.state = 2471; + this.state = 2481; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2472; + this.state = 2482; this.match(MySqlParser.KW_NAME); } break; @@ -10033,104 +10039,104 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2476; + this.state = 2486; this.match(MySqlParser.KW_ALTER); - this.state = 2478; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2477; + this.state = 2487; this.ownerStatement(); } } - this.state = 2480; + this.state = 2490; this.match(MySqlParser.KW_EVENT); - this.state = 2481; + this.state = 2491; localContext._event_name = this.fullId(); - this.state = 2485; + this.state = 2495; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2482; + this.state = 2492; this.match(MySqlParser.KW_ON); - this.state = 2483; + this.state = 2493; this.match(MySqlParser.KW_SCHEDULE); - this.state = 2484; + this.state = 2494; this.scheduleExpression(); } break; } - this.state = 2493; + this.state = 2503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2487; + this.state = 2497; this.match(MySqlParser.KW_ON); - this.state = 2488; + this.state = 2498; this.match(MySqlParser.KW_COMPLETION); - this.state = 2490; + this.state = 2500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2489; + this.state = 2499; this.match(MySqlParser.KW_NOT); } } - this.state = 2492; + this.state = 2502; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 2498; + this.state = 2508; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 2495; + this.state = 2505; this.match(MySqlParser.KW_RENAME); - this.state = 2496; + this.state = 2506; this.match(MySqlParser.KW_TO); - this.state = 2497; + this.state = 2507; localContext._new_event_name = this.fullId(); } break; } - this.state = 2501; + this.state = 2511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 2500; + this.state = 2510; this.enableType(); } } - this.state = 2505; + this.state = 2515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 2503; + this.state = 2513; this.match(MySqlParser.KW_COMMENT); - this.state = 2504; + this.state = 2514; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2509; + this.state = 2519; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2507; + this.state = 2517; this.match(MySqlParser.KW_DO); - this.state = 2508; + this.state = 2518; this.routineBody(); } break; @@ -10158,23 +10164,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2511; + this.state = 2521; this.match(MySqlParser.KW_ALTER); - this.state = 2512; + this.state = 2522; this.match(MySqlParser.KW_FUNCTION); - this.state = 2513; + this.state = 2523; this.functionName(); - this.state = 2517; + this.state = 2527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2514; + this.state = 2524; this.routineOption(); } } - this.state = 2519; + this.state = 2529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10200,17 +10206,17 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2520; + this.state = 2530; this.match(MySqlParser.KW_ALTER); - this.state = 2521; + this.state = 2531; this.match(MySqlParser.KW_INSTANCE); - this.state = 2522; + this.state = 2532; this.match(MySqlParser.KW_ROTATE); - this.state = 2523; + this.state = 2533; this.match(MySqlParser.KW_INNODB); - this.state = 2524; + this.state = 2534; this.match(MySqlParser.KW_MASTER); - this.state = 2525; + this.state = 2535; this.match(MySqlParser.KW_KEY); } } @@ -10235,65 +10241,65 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2527; + this.state = 2537; this.match(MySqlParser.KW_ALTER); - this.state = 2528; + this.state = 2538; this.match(MySqlParser.KW_LOGFILE); - this.state = 2529; + this.state = 2539; this.match(MySqlParser.KW_GROUP); - this.state = 2530; + this.state = 2540; localContext._logFileGroupName = this.uid(); - this.state = 2531; + this.state = 2541; this.match(MySqlParser.KW_ADD); - this.state = 2532; + this.state = 2542; this.match(MySqlParser.KW_UNDOFILE); - this.state = 2533; + this.state = 2543; this.match(MySqlParser.STRING_LITERAL); - this.state = 2539; + this.state = 2549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2534; + this.state = 2544; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2536; + this.state = 2546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2535; + this.state = 2545; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2538; + this.state = 2548; this.fileSizeLiteral(); } } - this.state = 2542; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2541; + this.state = 2551; this.match(MySqlParser.KW_WAIT); } } - this.state = 2544; + this.state = 2554; this.match(MySqlParser.KW_ENGINE); - this.state = 2546; + this.state = 2556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2545; + this.state = 2555; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2548; + this.state = 2558; this.engineName(); } } @@ -10318,23 +10324,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2550; + this.state = 2560; this.match(MySqlParser.KW_ALTER); - this.state = 2551; + this.state = 2561; this.match(MySqlParser.KW_PROCEDURE); - this.state = 2552; + this.state = 2562; localContext._proc_name = this.fullId(); - this.state = 2556; + this.state = 2566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2553; + this.state = 2563; this.routineOption(); } } - this.state = 2558; + this.state = 2568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10361,35 +10367,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2559; + this.state = 2569; this.match(MySqlParser.KW_ALTER); - this.state = 2560; + this.state = 2570; this.match(MySqlParser.KW_SERVER); - this.state = 2561; + this.state = 2571; localContext._serverName = this.uid(); - this.state = 2562; + this.state = 2572; this.match(MySqlParser.KW_OPTIONS); - this.state = 2563; + this.state = 2573; this.match(MySqlParser.LR_BRACKET); - this.state = 2564; + this.state = 2574; this.serverOption(); - this.state = 2569; + this.state = 2579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2565; + this.state = 2575; this.match(MySqlParser.COMMA); - this.state = 2566; + this.state = 2576; this.serverOption(); } } - this.state = 2571; + this.state = 2581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2572; + this.state = 2582; this.match(MySqlParser.RR_BRACKET); } } @@ -10415,58 +10421,58 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2574; + this.state = 2584; this.match(MySqlParser.KW_ALTER); - this.state = 2575; + this.state = 2585; this.match(MySqlParser.KW_TABLE); - this.state = 2576; + this.state = 2586; this.tableName(); - this.state = 2585; + this.state = 2595; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2577; + this.state = 2587; this.alterOption(); - this.state = 2582; + this.state = 2592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2578; + this.state = 2588; this.match(MySqlParser.COMMA); - this.state = 2579; + this.state = 2589; this.alterOption(); } } - this.state = 2584; + this.state = 2594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2594; + this.state = 2604; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { - this.state = 2587; + this.state = 2597; this.alterPartitionSpecification(); - this.state = 2591; + this.state = 2601; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2588; + this.state = 2598; this.alterPartitionSpecification(); } } } - this.state = 2593; + this.state = 2603; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); } @@ -10496,23 +10502,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2596; + this.state = 2606; this.match(MySqlParser.KW_ALTER); - this.state = 2598; + this.state = 2608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 2597; + this.state = 2607; this.match(MySqlParser.KW_UNDO); } } - this.state = 2600; + this.state = 2610; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2601; + this.state = 2611; this.tableSpaceName(); - this.state = 2602; + this.state = 2612; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51)) { this.errorHandler.recoverInline(this); @@ -10521,86 +10527,86 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2603; + this.state = 2613; this.match(MySqlParser.KW_DATAFILE); - this.state = 2604; + this.state = 2614; this.match(MySqlParser.STRING_LITERAL); - this.state = 2610; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2605; + this.state = 2615; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2607; + this.state = 2617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2606; + this.state = 2616; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2609; + this.state = 2619; this.fileSizeLiteral(); } } - this.state = 2613; + this.state = 2623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2612; + this.state = 2622; this.match(MySqlParser.KW_WAIT); } } - this.state = 2618; + this.state = 2628; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2615; + this.state = 2625; this.match(MySqlParser.KW_RENAME); - this.state = 2616; + this.state = 2626; this.match(MySqlParser.KW_TO); - this.state = 2617; + this.state = 2627; this.tableSpaceNameCreate(); } break; } - this.state = 2625; + this.state = 2635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2620; + this.state = 2630; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 2622; + this.state = 2632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2621; + this.state = 2631; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2624; + this.state = 2634; this.fileSizeLiteral(); } } - this.state = 2629; + this.state = 2639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2627; + this.state = 2637; this.match(MySqlParser.KW_SET); - this.state = 2628; + this.state = 2638; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 81)) { this.errorHandler.recoverInline(this); @@ -10612,68 +10618,68 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 2636; + this.state = 2646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 376) { { - this.state = 2631; + this.state = 2641; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2633; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2632; + this.state = 2642; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2635; + this.state = 2645; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2643; + this.state = 2653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 2638; + this.state = 2648; this.match(MySqlParser.KW_ENGINE); - this.state = 2640; + this.state = 2650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2639; + this.state = 2649; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2642; + this.state = 2652; this.engineName(); } } - this.state = 2650; + this.state = 2660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 2645; + this.state = 2655; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 2647; + this.state = 2657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2646; + this.state = 2656; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2649; + this.state = 2659; this.match(MySqlParser.STRING_LITERAL); } } @@ -10701,18 +10707,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2652; + this.state = 2662; this.match(MySqlParser.KW_ALTER); - this.state = 2656; + this.state = 2666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2653; + this.state = 2663; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2654; + this.state = 2664; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2655; + this.state = 2665; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -10725,26 +10731,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2659; + this.state = 2669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2658; + this.state = 2668; this.ownerStatement(); } } - this.state = 2664; + this.state = 2674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 2661; + this.state = 2671; this.match(MySqlParser.KW_SQL); - this.state = 2662; + this.state = 2672; this.match(MySqlParser.KW_SECURITY); - this.state = 2663; + this.state = 2673; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -10757,41 +10763,41 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2666; + this.state = 2676; this.match(MySqlParser.KW_VIEW); - this.state = 2667; + this.state = 2677; this.viewName(); - this.state = 2672; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2668; + this.state = 2678; this.match(MySqlParser.LR_BRACKET); - this.state = 2669; + this.state = 2679; this.columnNames(); - this.state = 2670; + this.state = 2680; this.match(MySqlParser.RR_BRACKET); } } - this.state = 2674; + this.state = 2684; this.match(MySqlParser.KW_AS); - this.state = 2675; + this.state = 2685; this.selectStatement(); - this.state = 2682; + this.state = 2692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2676; + this.state = 2686; this.match(MySqlParser.KW_WITH); - this.state = 2678; + this.state = 2688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 2677; + this.state = 2687; localContext._checkOpt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -10804,9 +10810,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2680; + this.state = 2690; this.match(MySqlParser.KW_CHECK); - this.state = 2681; + this.state = 2691; this.match(MySqlParser.KW_OPTION); } break; @@ -10833,38 +10839,38 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2948; + this.state = 2958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: localContext = new AlterByTableOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2684; + this.state = 2694; this.tableOption(); - this.state = 2691; + this.state = 2701; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2686; + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 2685; + this.state = 2695; this.match(MySqlParser.COMMA); } } - this.state = 2688; + this.state = 2698; this.tableOption(); } } } - this.state = 2693; + this.state = 2703; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); } @@ -10874,36 +10880,36 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2694; + this.state = 2704; this.match(MySqlParser.KW_ADD); - this.state = 2696; + this.state = 2706; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 2695; + this.state = 2705; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2698; + this.state = 2708; this.columnName(); - this.state = 2699; + this.state = 2709; this.columnDefinition(); - this.state = 2703; + this.state = 2713; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2700; + this.state = 2710; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2701; + this.state = 2711; this.match(MySqlParser.KW_AFTER); - this.state = 2702; + this.state = 2712; this.columnName(); } break; @@ -10989,43 +10995,43 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddColumnsContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2705; + this.state = 2715; this.match(MySqlParser.KW_ADD); - this.state = 2707; + this.state = 2717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 29) { { - this.state = 2706; + this.state = 2716; this.match(MySqlParser.KW_COLUMN); } } - this.state = 2709; + this.state = 2719; this.match(MySqlParser.LR_BRACKET); - this.state = 2710; + this.state = 2720; this.columnName(); - this.state = 2711; + this.state = 2721; this.columnDefinition(); - this.state = 2718; + this.state = 2728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2712; + this.state = 2722; this.match(MySqlParser.COMMA); - this.state = 2713; + this.state = 2723; this.columnName(); - this.state = 2714; + this.state = 2724; this.columnDefinition(); } } - this.state = 2720; + this.state = 2730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2721; + this.state = 2731; this.match(MySqlParser.RR_BRACKET); } break; @@ -11033,9 +11039,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddIndexContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2723; + this.state = 2733; this.match(MySqlParser.KW_ADD); - this.state = 2724; + this.state = 2734; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11044,41 +11050,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2726; + this.state = 2736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2725; + this.state = 2735; this.indexName(); } } - this.state = 2729; + this.state = 2739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2728; + this.state = 2738; this.indexType(); } } - this.state = 2731; + this.state = 2741; this.indexColumnNames(); - this.state = 2735; + this.state = 2745; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2732; + this.state = 2742; this.indexOption(); } } } - this.state = 2737; + this.state = 2747; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } @@ -11088,9 +11094,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddSpecialIndexContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2738; + this.state = 2748; this.match(MySqlParser.KW_ADD); - this.state = 2739; + this.state = 2749; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -11099,12 +11105,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2741; + this.state = 2751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2740; + this.state = 2750; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11116,31 +11122,31 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2744; + this.state = 2754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2743; + this.state = 2753; this.indexName(); } } - this.state = 2746; + this.state = 2756; this.indexColumnNames(); - this.state = 2750; + this.state = 2760; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2747; + this.state = 2757; this.indexOption(); } } } - this.state = 2752; + this.state = 2762; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); } @@ -11150,21 +11156,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2753; + this.state = 2763; this.match(MySqlParser.KW_ADD); - this.state = 2758; + this.state = 2768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2754; + this.state = 2764; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2756; + this.state = 2766; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2755; + this.state = 2765; (localContext as AlterByAddPrimaryKeyContext)._symbol_ = this.uid(); } break; @@ -11172,35 +11178,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2760; + this.state = 2770; this.match(MySqlParser.KW_PRIMARY); - this.state = 2761; + this.state = 2771; this.match(MySqlParser.KW_KEY); - this.state = 2763; + this.state = 2773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2762; + this.state = 2772; this.indexType(); } } - this.state = 2765; + this.state = 2775; this.indexColumnNames(); - this.state = 2769; + this.state = 2779; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2766; + this.state = 2776; this.indexOption(); } } } - this.state = 2771; + this.state = 2781; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); } @@ -11210,21 +11216,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddUniqueKeyContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2772; + this.state = 2782; this.match(MySqlParser.KW_ADD); - this.state = 2777; + this.state = 2787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2773; + this.state = 2783; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2775; + this.state = 2785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2774; + this.state = 2784; (localContext as AlterByAddUniqueKeyContext)._symbol_ = this.uid(); } } @@ -11232,14 +11238,14 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2779; + this.state = 2789; this.match(MySqlParser.KW_UNIQUE); - this.state = 2781; + this.state = 2791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2780; + this.state = 2790; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11251,41 +11257,41 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2784; + this.state = 2794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2783; + this.state = 2793; this.indexName(); } } - this.state = 2787; + this.state = 2797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2786; + this.state = 2796; this.indexType(); } } - this.state = 2789; + this.state = 2799; this.indexColumnNames(); - this.state = 2793; + this.state = 2803; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 336, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2790; + this.state = 2800; this.indexOption(); } } } - this.state = 2795; + this.state = 2805; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 336, this.context); } @@ -11295,21 +11301,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddForeignKeyContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2796; + this.state = 2806; this.match(MySqlParser.KW_ADD); - this.state = 2801; + this.state = 2811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2797; + this.state = 2807; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2799; + this.state = 2809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2798; + this.state = 2808; (localContext as AlterByAddForeignKeyContext)._symbol_ = this.uid(); } } @@ -11317,23 +11323,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2803; + this.state = 2813; this.match(MySqlParser.KW_FOREIGN); - this.state = 2804; + this.state = 2814; this.match(MySqlParser.KW_KEY); - this.state = 2806; + this.state = 2816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2805; + this.state = 2815; this.indexName(); } } - this.state = 2808; + this.state = 2818; this.indexColumnNames(); - this.state = 2809; + this.state = 2819; this.referenceDefinition(); } break; @@ -11341,14 +11347,14 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2811; + this.state = 2821; this.match(MySqlParser.KW_ADD); - this.state = 2813; + this.state = 2823; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: { - this.state = 2812; + this.state = 2822; this.checkConstraintDefinition(); } break; @@ -11359,9 +11365,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropConstraintCheckContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2815; + this.state = 2825; this.match(MySqlParser.KW_DROP); - this.state = 2816; + this.state = 2826; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -11370,7 +11376,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2817; + this.state = 2827; (localContext as AlterByDropConstraintCheckContext)._symbol_ = this.uid(); } break; @@ -11378,9 +11384,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2818; + this.state = 2828; this.match(MySqlParser.KW_ALTER); - this.state = 2819; + this.state = 2829; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -11389,24 +11395,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2820; + this.state = 2830; (localContext as AlterByAlterCheckTableConstraintContext)._symbol_ = this.uid(); - this.state = 2822; + this.state = 2832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2821; + this.state = 2831; this.match(MySqlParser.KW_NOT); } } - this.state = 2825; + this.state = 2835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 2824; + this.state = 2834; this.match(MySqlParser.KW_ENFORCED); } } @@ -11417,19 +11423,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterBySetAlgorithmContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2827; + this.state = 2837; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2829; + this.state = 2839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2828; + this.state = 2838; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2831; + this.state = 2841; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430 || _la === 434)) { this.errorHandler.recoverInline(this); @@ -11444,38 +11450,38 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterColumnDefaultContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2832; + this.state = 2842; this.match(MySqlParser.KW_ALTER); - this.state = 2834; + this.state = 2844; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2833; + this.state = 2843; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2836; + this.state = 2846; this.columnName(); - this.state = 2844; + this.state = 2854; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2837; + this.state = 2847; this.match(MySqlParser.KW_SET); - this.state = 2838; + this.state = 2848; this.match(MySqlParser.KW_DEFAULT); - this.state = 2839; + this.state = 2849; this.defaultValue(); } break; case 2: { - this.state = 2840; + this.state = 2850; this.match(MySqlParser.KW_SET); - this.state = 2841; + this.state = 2851; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -11488,9 +11494,9 @@ export class MySqlParser extends SQLParserBase { break; case 3: { - this.state = 2842; + this.state = 2852; this.match(MySqlParser.KW_DROP); - this.state = 2843; + this.state = 2853; this.match(MySqlParser.KW_DEFAULT); } break; @@ -11501,13 +11507,13 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterIndexVisibilityContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2846; + this.state = 2856; this.match(MySqlParser.KW_ALTER); - this.state = 2847; + this.state = 2857; this.match(MySqlParser.KW_INDEX); - this.state = 2848; + this.state = 2858; this.indexName(); - this.state = 2849; + this.state = 2859; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -11522,38 +11528,38 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByChangeColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2851; + this.state = 2861; this.match(MySqlParser.KW_CHANGE); - this.state = 2853; + this.state = 2863; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2852; + this.state = 2862; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2855; + this.state = 2865; (localContext as AlterByChangeColumnContext)._oldColumn = this.columnName(); - this.state = 2856; + this.state = 2866; (localContext as AlterByChangeColumnContext)._newColumn = this.columnNameCreate(); - this.state = 2857; + this.state = 2867; this.columnDefinition(); - this.state = 2861; + this.state = 2871; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2858; + this.state = 2868; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2859; + this.state = 2869; this.match(MySqlParser.KW_AFTER); - this.state = 2860; + this.state = 2870; this.columnName(); } break; @@ -11639,42 +11645,42 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDefaultCharsetContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2864; + this.state = 2874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2863; + this.state = 2873; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2866; + this.state = 2876; this.match(MySqlParser.KW_CHARACTER); - this.state = 2867; + this.state = 2877; this.match(MySqlParser.KW_SET); - this.state = 2868; + this.state = 2878; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2869; + this.state = 2879; this.charsetName(); - this.state = 2875; + this.state = 2885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2870; + this.state = 2880; this.match(MySqlParser.KW_COLLATE); - this.state = 2872; + this.state = 2882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2871; + this.state = 2881; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2874; + this.state = 2884; this.collationName(); } } @@ -11685,40 +11691,40 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByConvertCharsetContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2877; + this.state = 2887; this.match(MySqlParser.KW_CONVERT); - this.state = 2878; + this.state = 2888; this.match(MySqlParser.KW_TO); - this.state = 2882; + this.state = 2892; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARSET: { - this.state = 2879; + this.state = 2889; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHARACTER: { - this.state = 2880; + this.state = 2890; this.match(MySqlParser.KW_CHARACTER); - this.state = 2881; + this.state = 2891; this.match(MySqlParser.KW_SET); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2884; + this.state = 2894; this.charsetName(); - this.state = 2887; + this.state = 2897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2885; + this.state = 2895; this.match(MySqlParser.KW_COLLATE); - this.state = 2886; + this.state = 2896; this.collationName(); } } @@ -11729,7 +11735,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterKeysContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2889; + this.state = 2899; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -11738,7 +11744,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2890; + this.state = 2900; this.match(MySqlParser.KW_KEYS); } break; @@ -11746,7 +11752,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterTableSpaceOptionContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2891; + this.state = 2901; _la = this.tokenStream.LA(1); if(!(_la === 369 || _la === 425)) { this.errorHandler.recoverInline(this); @@ -11755,7 +11761,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2892; + this.state = 2902; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -11763,19 +11769,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2893; + this.state = 2903; this.match(MySqlParser.KW_DROP); - this.state = 2895; + this.state = 2905; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2894; + this.state = 2904; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2897; + this.state = 2907; this.columnName(); } break; @@ -11783,9 +11789,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropIndexContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2898; + this.state = 2908; this.match(MySqlParser.KW_DROP); - this.state = 2899; + this.state = 2909; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11794,7 +11800,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2900; + this.state = 2910; this.indexName(); } break; @@ -11802,11 +11808,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2901; + this.state = 2911; this.match(MySqlParser.KW_DROP); - this.state = 2902; + this.state = 2912; this.match(MySqlParser.KW_PRIMARY); - this.state = 2903; + this.state = 2913; this.match(MySqlParser.KW_KEY); } break; @@ -11814,13 +11820,13 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropForeignKeyContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2904; + this.state = 2914; this.match(MySqlParser.KW_DROP); - this.state = 2905; + this.state = 2915; this.match(MySqlParser.KW_FOREIGN); - this.state = 2906; + this.state = 2916; this.match(MySqlParser.KW_KEY); - this.state = 2907; + this.state = 2917; (localContext as AlterByDropForeignKeyContext)._fk_symbol = this.uid(); } break; @@ -11828,7 +11834,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByForceContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2908; + this.state = 2918; this.match(MySqlParser.KW_FORCE); } break; @@ -11836,19 +11842,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByLockContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2909; + this.state = 2919; this.match(MySqlParser.KW_LOCK); - this.state = 2911; + this.state = 2921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2910; + this.state = 2920; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2913; + this.state = 2923; (localContext as AlterByLockContext)._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -11864,36 +11870,36 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByModifyColumnContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2914; + this.state = 2924; this.match(MySqlParser.KW_MODIFY); - this.state = 2916; + this.state = 2926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2915; + this.state = 2925; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2918; + this.state = 2928; this.columnName(); - this.state = 2919; + this.state = 2929; this.columnDefinition(); - this.state = 2923; + this.state = 2933; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2920; + this.state = 2930; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2921; + this.state = 2931; this.match(MySqlParser.KW_AFTER); - this.state = 2922; + this.state = 2932; this.columnName(); } break; @@ -11979,11 +11985,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByOrderContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2925; + this.state = 2935; this.match(MySqlParser.KW_ORDER); - this.state = 2926; + this.state = 2936; this.match(MySqlParser.KW_BY); - this.state = 2927; + this.state = 2937; this.columnNames(); } break; @@ -11991,15 +11997,15 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameColumnContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2928; + this.state = 2938; this.match(MySqlParser.KW_RENAME); - this.state = 2929; + this.state = 2939; this.match(MySqlParser.KW_COLUMN); - this.state = 2930; + this.state = 2940; (localContext as AlterByRenameColumnContext)._oldColumn = this.columnName(); - this.state = 2931; + this.state = 2941; this.match(MySqlParser.KW_TO); - this.state = 2932; + this.state = 2942; (localContext as AlterByRenameColumnContext)._newColumn = this.columnNameCreate(); } break; @@ -12007,9 +12013,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameIndexContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2934; + this.state = 2944; this.match(MySqlParser.KW_RENAME); - this.state = 2935; + this.state = 2945; (localContext as AlterByRenameIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -12019,11 +12025,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2936; + this.state = 2946; this.indexName(); - this.state = 2937; + this.state = 2947; this.match(MySqlParser.KW_TO); - this.state = 2938; + this.state = 2948; this.indexNameCreate(); } break; @@ -12031,14 +12037,14 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2940; + this.state = 2950; this.match(MySqlParser.KW_RENAME); - this.state = 2942; + this.state = 2952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 176) { { - this.state = 2941; + this.state = 2951; (localContext as AlterByRenameContext)._renameFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 176)) { @@ -12051,7 +12057,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2944; + this.state = 2954; this.tableNameCreate(); } break; @@ -12059,7 +12065,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByValidateContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2945; + this.state = 2955; _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { this.errorHandler.recoverInline(this); @@ -12068,7 +12074,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2946; + this.state = 2956; this.match(MySqlParser.KW_VALIDATION); } break; @@ -12076,7 +12082,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterPartitionContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2947; + this.state = 2957; this.alterPartitionSpecification(); } break; @@ -12101,38 +12107,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 148, MySqlParser.RULE_alterPartitionSpecification); let _la: number; try { - this.state = 3048; + this.state = 3058; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ADD: localContext = new AlterByAddPartitionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2950; + this.state = 2960; this.match(MySqlParser.KW_ADD); - this.state = 2951; + this.state = 2961; this.match(MySqlParser.KW_PARTITION); - this.state = 2952; + this.state = 2962; this.match(MySqlParser.LR_BRACKET); - this.state = 2953; + this.state = 2963; this.partitionDefinition(); - this.state = 2958; + this.state = 2968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2954; + this.state = 2964; this.match(MySqlParser.COMMA); - this.state = 2955; + this.state = 2965; this.partitionDefinition(); } } - this.state = 2960; + this.state = 2970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2961; + this.state = 2971; this.match(MySqlParser.RR_BRACKET); } break; @@ -12140,11 +12146,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropPartitionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2963; + this.state = 2973; this.match(MySqlParser.KW_DROP); - this.state = 2964; + this.state = 2974; this.match(MySqlParser.KW_PARTITION); - this.state = 2965; + this.state = 2975; this.partitionNames(); } break; @@ -12152,11 +12158,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDiscardPartitionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2966; + this.state = 2976; this.match(MySqlParser.KW_DISCARD); - this.state = 2967; + this.state = 2977; this.match(MySqlParser.KW_PARTITION); - this.state = 2970; + this.state = 2980; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -12709,20 +12715,20 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2968; + this.state = 2978; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2969; + this.state = 2979; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2972; + this.state = 2982; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -12730,11 +12736,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByImportPartitionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2973; + this.state = 2983; this.match(MySqlParser.KW_IMPORT); - this.state = 2974; + this.state = 2984; this.match(MySqlParser.KW_PARTITION); - this.state = 2977; + this.state = 2987; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13287,20 +13293,20 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2975; + this.state = 2985; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2976; + this.state = 2986; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2979; + this.state = 2989; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -13308,11 +13314,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByTruncatePartitionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2980; + this.state = 2990; this.match(MySqlParser.KW_TRUNCATE); - this.state = 2981; + this.state = 2991; this.match(MySqlParser.KW_PARTITION); - this.state = 2984; + this.state = 2994; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13865,13 +13871,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2982; + this.state = 2992; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2983; + this.state = 2993; this.match(MySqlParser.KW_ALL); } break; @@ -13884,11 +13890,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByCoalescePartitionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2986; + this.state = 2996; this.match(MySqlParser.KW_COALESCE); - this.state = 2987; + this.state = 2997; this.match(MySqlParser.KW_PARTITION); - this.state = 2988; + this.state = 2998; this.decimalLiteral(); } break; @@ -13896,35 +13902,35 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByReorganizePartitionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2989; + this.state = 2999; this.match(MySqlParser.KW_REORGANIZE); - this.state = 2990; + this.state = 3000; this.match(MySqlParser.KW_PARTITION); - this.state = 2991; + this.state = 3001; this.partitionNames(); - this.state = 2992; + this.state = 3002; this.match(MySqlParser.KW_INTO); - this.state = 2993; + this.state = 3003; this.match(MySqlParser.LR_BRACKET); - this.state = 2994; + this.state = 3004; this.partitionDefinition(); - this.state = 2999; + this.state = 3009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2995; + this.state = 3005; this.match(MySqlParser.COMMA); - this.state = 2996; + this.state = 3006; this.partitionDefinition(); } } - this.state = 3001; + this.state = 3011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3002; + this.state = 3012; this.match(MySqlParser.RR_BRACKET); } break; @@ -13932,24 +13938,24 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByExchangePartitionContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3004; + this.state = 3014; this.match(MySqlParser.KW_EXCHANGE); - this.state = 3005; + this.state = 3015; this.match(MySqlParser.KW_PARTITION); - this.state = 3006; + this.state = 3016; this.partitionName(); - this.state = 3007; + this.state = 3017; this.match(MySqlParser.KW_WITH); - this.state = 3008; + this.state = 3018; this.match(MySqlParser.KW_TABLE); - this.state = 3009; + this.state = 3019; this.tableName(); - this.state = 3012; + this.state = 3022; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: { - this.state = 3010; + this.state = 3020; (localContext as AlterByExchangePartitionContext)._validationFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { @@ -13959,7 +13965,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3011; + this.state = 3021; this.match(MySqlParser.KW_VALIDATION); } break; @@ -13970,11 +13976,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAnalyzePartitionContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3014; + this.state = 3024; this.match(MySqlParser.KW_ANALYZE); - this.state = 3015; + this.state = 3025; this.match(MySqlParser.KW_PARTITION); - this.state = 3018; + this.state = 3028; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -14527,13 +14533,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3016; + this.state = 3026; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3017; + this.state = 3027; this.match(MySqlParser.KW_ALL); } break; @@ -14546,11 +14552,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByCheckPartitionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3020; + this.state = 3030; this.match(MySqlParser.KW_CHECK); - this.state = 3021; + this.state = 3031; this.match(MySqlParser.KW_PARTITION); - this.state = 3024; + this.state = 3034; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15103,13 +15109,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3022; + this.state = 3032; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3023; + this.state = 3033; this.match(MySqlParser.KW_ALL); } break; @@ -15122,11 +15128,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByOptimizePartitionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3026; + this.state = 3036; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 3027; + this.state = 3037; this.match(MySqlParser.KW_PARTITION); - this.state = 3030; + this.state = 3040; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15679,13 +15685,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3028; + this.state = 3038; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3029; + this.state = 3039; this.match(MySqlParser.KW_ALL); } break; @@ -15698,11 +15704,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRebuildPartitionContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 3032; + this.state = 3042; this.match(MySqlParser.KW_REBUILD); - this.state = 3033; + this.state = 3043; this.match(MySqlParser.KW_PARTITION); - this.state = 3036; + this.state = 3046; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -16255,13 +16261,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3034; + this.state = 3044; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3035; + this.state = 3045; this.match(MySqlParser.KW_ALL); } break; @@ -16274,11 +16280,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRepairPartitionContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 3038; + this.state = 3048; this.match(MySqlParser.KW_REPAIR); - this.state = 3039; + this.state = 3049; this.match(MySqlParser.KW_PARTITION); - this.state = 3042; + this.state = 3052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -16831,13 +16837,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3040; + this.state = 3050; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3041; + this.state = 3051; this.match(MySqlParser.KW_ALL); } break; @@ -16850,9 +16856,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRemovePartitioningContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 3044; + this.state = 3054; this.match(MySqlParser.KW_REMOVE); - this.state = 3045; + this.state = 3055; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16860,9 +16866,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByUpgradePartitioningContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 3046; + this.state = 3056; this.match(MySqlParser.KW_UPGRADE); - this.state = 3047; + this.state = 3057; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16891,9 +16897,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3050; + this.state = 3060; this.match(MySqlParser.KW_DROP); - this.state = 3051; + this.state = 3061; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -16903,17 +16909,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3053; + this.state = 3063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { - this.state = 3052; + this.state = 3062; this.ifExists(); } break; } - this.state = 3055; + this.state = 3065; this.databaseName(); } } @@ -16937,21 +16943,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3057; + this.state = 3067; this.match(MySqlParser.KW_DROP); - this.state = 3058; + this.state = 3068; this.match(MySqlParser.KW_EVENT); - this.state = 3060; + this.state = 3070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: { - this.state = 3059; + this.state = 3069; this.ifExists(); } break; } - this.state = 3062; + this.state = 3072; localContext._event_name = this.fullId(); } } @@ -16977,16 +16983,16 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3064; + this.state = 3074; this.match(MySqlParser.KW_DROP); - this.state = 3065; + this.state = 3075; this.match(MySqlParser.KW_INDEX); - this.state = 3067; + this.state = 3077; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { - this.state = 3066; + this.state = 3076; localContext._inTimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -16999,36 +17005,36 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 3069; + this.state = 3079; this.indexName(); - this.state = 3070; + this.state = 3080; this.match(MySqlParser.KW_ON); - this.state = 3071; + this.state = 3081; this.tableName(); - this.state = 3084; + this.state = 3094; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 377, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 3082; + this.state = 3092; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 3072; + this.state = 3082; this.match(MySqlParser.KW_ALGORITHM); - this.state = 3074; + this.state = 3084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3073; + this.state = 3083; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3076; + this.state = 3086; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -17042,19 +17048,19 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_LOCK: { - this.state = 3077; + this.state = 3087; this.match(MySqlParser.KW_LOCK); - this.state = 3079; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3078; + this.state = 3088; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3081; + this.state = 3091; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -17071,7 +17077,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 3086; + this.state = 3096; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 377, this.context); } @@ -17098,27 +17104,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3087; + this.state = 3097; this.match(MySqlParser.KW_DROP); - this.state = 3088; + this.state = 3098; this.match(MySqlParser.KW_LOGFILE); - this.state = 3089; + this.state = 3099; this.match(MySqlParser.KW_GROUP); - this.state = 3090; + this.state = 3100; localContext._logFileGroupName = this.uid(); - this.state = 3091; + this.state = 3101; this.match(MySqlParser.KW_ENGINE); - this.state = 3093; + this.state = 3103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3092; + this.state = 3102; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3095; + this.state = 3105; this.engineName(); } } @@ -17142,21 +17148,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3097; + this.state = 3107; this.match(MySqlParser.KW_DROP); - this.state = 3098; + this.state = 3108; this.match(MySqlParser.KW_PROCEDURE); - this.state = 3100; + this.state = 3110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 3099; + this.state = 3109; this.ifExists(); } break; } - this.state = 3102; + this.state = 3112; localContext._sp_name = this.fullId(); } } @@ -17180,21 +17186,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3104; + this.state = 3114; this.match(MySqlParser.KW_DROP); - this.state = 3105; + this.state = 3115; this.match(MySqlParser.KW_FUNCTION); - this.state = 3107; + this.state = 3117; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 3106; + this.state = 3116; this.ifExists(); } break; } - this.state = 3109; + this.state = 3119; this.functionName(); } } @@ -17218,21 +17224,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3111; + this.state = 3121; this.match(MySqlParser.KW_DROP); - this.state = 3112; + this.state = 3122; this.match(MySqlParser.KW_SERVER); - this.state = 3114; + this.state = 3124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 3113; + this.state = 3123; this.ifExists(); } break; } - this.state = 3116; + this.state = 3126; localContext._serverName = this.uid(); } } @@ -17257,25 +17263,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3118; + this.state = 3128; this.match(MySqlParser.KW_DROP); - this.state = 3119; + this.state = 3129; this.match(MySqlParser.KW_SPATIAL); - this.state = 3120; + this.state = 3130; this.match(MySqlParser.KW_REFERENCE); - this.state = 3121; + this.state = 3131; this.match(MySqlParser.KW_SYSTEM); - this.state = 3123; + this.state = 3133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3122; + this.state = 3132; this.ifExists(); } } - this.state = 3125; + this.state = 3135; this.match(MySqlParser.DECIMAL_LITERAL); } } @@ -17300,38 +17306,38 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3127; + this.state = 3137; this.match(MySqlParser.KW_DROP); - this.state = 3129; + this.state = 3139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 3128; + this.state = 3138; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 3131; + this.state = 3141; this.match(MySqlParser.KW_TABLE); - this.state = 3133; + this.state = 3143; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 3132; + this.state = 3142; this.ifExists(); } break; } - this.state = 3135; + this.state = 3145; this.tableNames(); - this.state = 3137; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3136; + this.state = 3146; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -17367,40 +17373,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3139; + this.state = 3149; this.match(MySqlParser.KW_DROP); - this.state = 3141; + this.state = 3151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 3140; + this.state = 3150; this.match(MySqlParser.KW_UNDO); } } - this.state = 3143; + this.state = 3153; this.match(MySqlParser.KW_TABLESPACE); - this.state = 3144; + this.state = 3154; this.tableSpaceName(); - this.state = 3150; + this.state = 3160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 3145; + this.state = 3155; this.match(MySqlParser.KW_ENGINE); - this.state = 3147; + this.state = 3157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3146; + this.state = 3156; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3149; + this.state = 3159; this.engineName(); } } @@ -17427,21 +17433,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3152; + this.state = 3162; this.match(MySqlParser.KW_DROP); - this.state = 3153; + this.state = 3163; this.match(MySqlParser.KW_TRIGGER); - this.state = 3155; + this.state = 3165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 3154; + this.state = 3164; this.ifExists(); } break; } - this.state = 3157; + this.state = 3167; localContext._trigger_name = this.fullId(); } } @@ -17466,44 +17472,44 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3159; + this.state = 3169; this.match(MySqlParser.KW_DROP); - this.state = 3160; + this.state = 3170; this.match(MySqlParser.KW_VIEW); - this.state = 3162; + this.state = 3172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 3161; + this.state = 3171; this.ifExists(); } break; } - this.state = 3164; + this.state = 3174; this.viewName(); - this.state = 3169; + this.state = 3179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3165; + this.state = 3175; this.match(MySqlParser.COMMA); - this.state = 3166; + this.state = 3176; this.viewName(); } } - this.state = 3171; + this.state = 3181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3173; + this.state = 3183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3172; + this.state = 3182; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -17538,21 +17544,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3175; + this.state = 3185; this.match(MySqlParser.KW_DROP); - this.state = 3176; + this.state = 3186; this.match(MySqlParser.KW_ROLE); - this.state = 3178; + this.state = 3188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 3177; + this.state = 3187; this.ifExists(); } break; } - this.state = 3180; + this.state = 3190; this.userOrRoleNames(); } } @@ -17575,61 +17581,61 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 176, MySqlParser.RULE_setRole); let _la: number; try { - this.state = 3202; + this.state = 3212; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3182; + this.state = 3192; this.match(MySqlParser.KW_SET); - this.state = 3183; + this.state = 3193; this.match(MySqlParser.KW_DEFAULT); - this.state = 3184; + this.state = 3194; this.match(MySqlParser.KW_ROLE); - this.state = 3188; + this.state = 3198; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3185; + this.state = 3195; this.match(MySqlParser.KW_NONE); } break; case 2: { - this.state = 3186; + this.state = 3196; this.match(MySqlParser.KW_ALL); } break; case 3: { - this.state = 3187; + this.state = 3197; this.userOrRoleNames(); } break; } - this.state = 3190; + this.state = 3200; this.match(MySqlParser.KW_TO); { - this.state = 3191; + this.state = 3201; this.userOrRoleName(); } - this.state = 3196; + this.state = 3206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3192; + this.state = 3202; this.match(MySqlParser.COMMA); { - this.state = 3193; + this.state = 3203; this.userOrRoleName(); } } } - this.state = 3198; + this.state = 3208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17638,11 +17644,11 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3199; + this.state = 3209; this.match(MySqlParser.KW_SET); - this.state = 3200; + this.state = 3210; this.match(MySqlParser.KW_ROLE); - this.state = 3201; + this.state = 3211; this.roleOption(); } break; @@ -17669,25 +17675,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3204; + this.state = 3214; this.match(MySqlParser.KW_RENAME); - this.state = 3205; + this.state = 3215; this.match(MySqlParser.KW_TABLE); - this.state = 3206; + this.state = 3216; this.renameTableClause(); - this.state = 3211; + this.state = 3221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3207; + this.state = 3217; this.match(MySqlParser.COMMA); - this.state = 3208; + this.state = 3218; this.renameTableClause(); } } - this.state = 3213; + this.state = 3223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17713,11 +17719,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3214; + this.state = 3224; this.tableName(); - this.state = 3215; + this.state = 3225; this.match(MySqlParser.KW_TO); - this.state = 3216; + this.state = 3226; this.tableNameCreate(); } } @@ -17742,19 +17748,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3218; + this.state = 3228; this.match(MySqlParser.KW_TRUNCATE); - this.state = 3220; + this.state = 3230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 173) { { - this.state = 3219; + this.state = 3229; this.match(MySqlParser.KW_TABLE); } } - this.state = 3222; + this.state = 3232; this.tableName(); } } @@ -17778,34 +17784,34 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3224; + this.state = 3234; this.match(MySqlParser.KW_CALL); - this.state = 3225; + this.state = 3235; localContext._sp_name = this.fullId(); - this.state = 3232; + this.state = 3242; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3226; + this.state = 3236; this.match(MySqlParser.LR_BRACKET); - this.state = 3229; + this.state = 3239; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: { - this.state = 3227; + this.state = 3237; this.constants(); } break; case 2: { - this.state = 3228; + this.state = 3238; this.expressions(); } break; } - this.state = 3231; + this.state = 3241; this.match(MySqlParser.RR_BRACKET); } break; @@ -17830,20 +17836,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 186, MySqlParser.RULE_deleteStatement); try { - this.state = 3236; + this.state = 3246; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3234; + this.state = 3244; this.singleDeleteStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3235; + this.state = 3245; this.multipleDeleteStatement(); } break; @@ -17869,9 +17875,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3238; + this.state = 3248; this.match(MySqlParser.KW_DO); - this.state = 3239; + this.state = 3249; this.expressions(); } } @@ -17893,34 +17899,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new HandlerStatementContext(this.context, this.state); this.enterRule(localContext, 190, MySqlParser.RULE_handlerStatement); try { - this.state = 3245; + this.state = 3255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3241; + this.state = 3251; this.handlerOpenStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3242; + this.state = 3252; this.handlerReadIndexStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3243; + this.state = 3253; this.handlerReadStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3244; + this.state = 3254; this.handlerCloseStatement(); } break; @@ -17947,14 +17953,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3247; + this.state = 3257; this.match(MySqlParser.KW_INSERT); - this.state = 3249; + this.state = 3259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 76 || _la === 107) { { - this.state = 3248; + this.state = 3258; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 76 || _la === 107)) { @@ -17967,89 +17973,89 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3252; + this.state = 3262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3251; + this.state = 3261; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3255; + this.state = 3265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3254; + this.state = 3264; this.match(MySqlParser.KW_INTO); } } - this.state = 3257; + this.state = 3267; this.tableName(); - this.state = 3264; + this.state = 3274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3258; + this.state = 3268; this.match(MySqlParser.KW_PARTITION); - this.state = 3259; + this.state = 3269; this.match(MySqlParser.LR_BRACKET); - this.state = 3261; + this.state = 3271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3260; + this.state = 3270; this.partitionNames(); } } - this.state = 3263; + this.state = 3273; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3277; + this.state = 3287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: { - this.state = 3267; + this.state = 3277; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 3266; + this.state = 3276; this.fullColumnNames(); } break; } - this.state = 3271; + this.state = 3281; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: { - this.state = 3269; + this.state = 3279; this.valuesOrValueList(); } break; case 2: { - this.state = 3270; + this.state = 3280; this.selectOrTableOrValues(); } break; } - this.state = 3274; + this.state = 3284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3273; + this.state = 3283; this.asRowAlias(); } break; @@ -18058,50 +18064,50 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 3276; + this.state = 3286; this.setAssignmentList(); } break; } - this.state = 3280; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3279; + this.state = 3289; this.asRowAlias(); } } - this.state = 3294; + this.state = 3304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3282; + this.state = 3292; this.match(MySqlParser.KW_ON); - this.state = 3283; + this.state = 3293; this.match(MySqlParser.KW_DUPLICATE); - this.state = 3284; + this.state = 3294; this.match(MySqlParser.KW_KEY); - this.state = 3285; + this.state = 3295; this.match(MySqlParser.KW_UPDATE); - this.state = 3286; + this.state = 3296; localContext._duplicatedFirst = this.updatedElement(); - this.state = 3291; + this.state = 3301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3287; + this.state = 3297; this.match(MySqlParser.COMMA); - this.state = 3288; + this.state = 3298; localContext._updatedElement = this.updatedElement(); localContext._duplicatedElements.push(localContext._updatedElement); } } - this.state = 3293; + this.state = 3303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18130,16 +18136,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3296; + this.state = 3306; this.match(MySqlParser.KW_AS); - this.state = 3297; + this.state = 3307; localContext._rowAlias = this.uid(); - this.state = 3299; + this.state = 3309; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { - this.state = 3298; + this.state = 3308; this.fullColumnNames(); } break; @@ -18164,30 +18170,30 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectOrTableOrValuesContext(this.context, this.state); this.enterRule(localContext, 196, MySqlParser.RULE_selectOrTableOrValues); try { - this.state = 3305; + this.state = 3315; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3301; + this.state = 3311; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3302; + this.state = 3312; this.match(MySqlParser.KW_TABLE); - this.state = 3303; + this.state = 3313; this.tableName(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3304; + this.state = 3314; this.rowValuesList(); } break; @@ -18216,22 +18222,22 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3307; + this.state = 3317; this.interSectQuery(); - this.state = 3313; + this.state = 3323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3308; + this.state = 3318; this.match(MySqlParser.KW_INTERSECT); - this.state = 3310; + this.state = 3320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3309; + this.state = 3319; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18243,11 +18249,11 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3312; + this.state = 3322; this.interSectQuery(); } } - this.state = 3315; + this.state = 3325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 828); @@ -18274,24 +18280,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3318; + this.state = 3328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 3317; + this.state = 3327; this.match(MySqlParser.LR_BRACKET); } } - this.state = 3320; + this.state = 3330; this.querySpecification(); - this.state = 3322; + this.state = 3332; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3321; + this.state = 3331; this.match(MySqlParser.RR_BRACKET); } break; @@ -18319,16 +18325,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3324; + this.state = 3334; this.match(MySqlParser.KW_LOAD); - this.state = 3325; + this.state = 3335; this.match(MySqlParser.KW_DATA); - this.state = 3327; + this.state = 3337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3326; + this.state = 3336; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -18341,26 +18347,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3330; + this.state = 3340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3329; + this.state = 3339; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3332; + this.state = 3342; this.match(MySqlParser.KW_INFILE); - this.state = 3333; + this.state = 3343; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3335; + this.state = 3345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3334; + this.state = 3344; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -18373,48 +18379,48 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3337; + this.state = 3347; this.match(MySqlParser.KW_INTO); - this.state = 3338; + this.state = 3348; this.match(MySqlParser.KW_TABLE); - this.state = 3339; + this.state = 3349; this.tableName(); - this.state = 3345; + this.state = 3355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3340; + this.state = 3350; this.match(MySqlParser.KW_PARTITION); - this.state = 3341; + this.state = 3351; this.match(MySqlParser.LR_BRACKET); - this.state = 3342; + this.state = 3352; this.partitionNames(); - this.state = 3343; + this.state = 3353; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3350; + this.state = 3360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3347; + this.state = 3357; this.match(MySqlParser.KW_CHARACTER); - this.state = 3348; + this.state = 3358; this.match(MySqlParser.KW_SET); - this.state = 3349; + this.state = 3359; localContext._charset = this.charsetName(); } } - this.state = 3358; + this.state = 3368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 337 || _la === 398) { { - this.state = 3352; + this.state = 3362; localContext._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -18424,57 +18430,57 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3354; + this.state = 3364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3353; + this.state = 3363; this.selectFieldsInto(); } } - this.state = 3356; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 56 || _la === 58 || _la === 123 || _la === 174); } } - this.state = 3366; + this.state = 3376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3360; + this.state = 3370; this.match(MySqlParser.KW_LINES); - this.state = 3362; + this.state = 3372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3361; + this.state = 3371; this.selectLinesInto(); } } - this.state = 3364; + this.state = 3374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 171 || _la === 174); } } - this.state = 3372; + this.state = 3382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3368; + this.state = 3378; this.match(MySqlParser.KW_IGNORE); - this.state = 3369; + this.state = 3379; this.decimalLiteral(); - this.state = 3370; + this.state = 3380; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -18487,58 +18493,58 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3385; + this.state = 3395; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: { - this.state = 3374; + this.state = 3384; this.match(MySqlParser.LR_BRACKET); - this.state = 3375; + this.state = 3385; this.assignmentField(); - this.state = 3380; + this.state = 3390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3376; + this.state = 3386; this.match(MySqlParser.COMMA); - this.state = 3377; + this.state = 3387; this.assignmentField(); } } - this.state = 3382; + this.state = 3392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3383; + this.state = 3393; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3396; + this.state = 3406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3387; + this.state = 3397; this.match(MySqlParser.KW_SET); - this.state = 3388; + this.state = 3398; this.updatedElement(); - this.state = 3393; + this.state = 3403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3389; + this.state = 3399; this.match(MySqlParser.COMMA); - this.state = 3390; + this.state = 3400; this.updatedElement(); } } - this.state = 3395; + this.state = 3405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18568,16 +18574,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3398; + this.state = 3408; this.match(MySqlParser.KW_LOAD); - this.state = 3399; + this.state = 3409; this.match(MySqlParser.KW_XML); - this.state = 3401; + this.state = 3411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3400; + this.state = 3410; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -18590,26 +18596,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3404; + this.state = 3414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3403; + this.state = 3413; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3406; + this.state = 3416; this.match(MySqlParser.KW_INFILE); - this.state = 3407; + this.state = 3417; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3409; + this.state = 3419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3408; + this.state = 3418; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -18622,55 +18628,55 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3411; + this.state = 3421; this.match(MySqlParser.KW_INTO); - this.state = 3412; + this.state = 3422; this.match(MySqlParser.KW_TABLE); - this.state = 3413; + this.state = 3423; this.tableName(); - this.state = 3417; + this.state = 3427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3414; + this.state = 3424; this.match(MySqlParser.KW_CHARACTER); - this.state = 3415; + this.state = 3425; this.match(MySqlParser.KW_SET); - this.state = 3416; + this.state = 3426; localContext._charset = this.charsetName(); } } - this.state = 3429; + this.state = 3439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 587) { { - this.state = 3419; + this.state = 3429; this.match(MySqlParser.KW_ROWS); - this.state = 3420; + this.state = 3430; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 3421; + this.state = 3431; this.match(MySqlParser.KW_BY); - this.state = 3423; + this.state = 3433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 859) { { - this.state = 3422; + this.state = 3432; this.match(MySqlParser.LESS_SYMBOL); } } - this.state = 3425; + this.state = 3435; localContext._tag = this.match(MySqlParser.STRING_LITERAL); - this.state = 3427; + this.state = 3437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 858) { { - this.state = 3426; + this.state = 3436; this.match(MySqlParser.GREATER_SYMBOL); } } @@ -18678,16 +18684,16 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3435; + this.state = 3445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3431; + this.state = 3441; this.match(MySqlParser.KW_IGNORE); - this.state = 3432; + this.state = 3442; this.decimalLiteral(); - this.state = 3433; + this.state = 3443; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -18700,58 +18706,58 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3448; + this.state = 3458; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3437; + this.state = 3447; this.match(MySqlParser.LR_BRACKET); - this.state = 3438; + this.state = 3448; this.assignmentField(); - this.state = 3443; + this.state = 3453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3439; + this.state = 3449; this.match(MySqlParser.COMMA); - this.state = 3440; + this.state = 3450; this.assignmentField(); } } - this.state = 3445; + this.state = 3455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3446; + this.state = 3456; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3459; + this.state = 3469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3450; + this.state = 3460; this.match(MySqlParser.KW_SET); - this.state = 3451; + this.state = 3461; this.updatedElement(); - this.state = 3456; + this.state = 3466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3452; + this.state = 3462; this.match(MySqlParser.COMMA); - this.state = 3453; + this.state = 3463; this.updatedElement(); } } - this.state = 3458; + this.state = 3468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18781,58 +18787,58 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3471; this.match(MySqlParser.LR_BRACKET); - this.state = 3462; + this.state = 3472; this.parenthesizedQueryExpression(); - this.state = 3464; + this.state = 3474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3463; + this.state = 3473; this.orderByClause(); } } - this.state = 3467; + this.state = 3477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3466; + this.state = 3476; this.limitClause(); } } - this.state = 3469; + this.state = 3479; this.match(MySqlParser.RR_BRACKET); - this.state = 3471; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3470; + this.state = 3480; this.orderByClause(); } } - this.state = 3474; + this.state = 3484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3473; + this.state = 3483; this.limitClause(); } } - this.state = 3477; + this.state = 3487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3476; + this.state = 3486; this.intoClause(); } } @@ -18860,14 +18866,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3479; + this.state = 3489; this.match(MySqlParser.KW_REPLACE); - this.state = 3481; + this.state = 3491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 107) { { - this.state = 3480; + this.state = 3490; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 107)) { @@ -18880,35 +18886,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3484; + this.state = 3494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3483; + this.state = 3493; this.match(MySqlParser.KW_INTO); } } - this.state = 3486; + this.state = 3496; this.tableName(); - this.state = 3492; + this.state = 3502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3487; + this.state = 3497; this.match(MySqlParser.KW_PARTITION); - this.state = 3488; + this.state = 3498; this.match(MySqlParser.LR_BRACKET); - this.state = 3489; + this.state = 3499; this.partitionNames(); - this.state = 3490; + this.state = 3500; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3502; + this.state = 3512; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: @@ -18917,27 +18923,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VALUE: case MySqlParser.LR_BRACKET: { - this.state = 3498; + this.state = 3508; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3494; + this.state = 3504; this.match(MySqlParser.LR_BRACKET); - this.state = 3495; + this.state = 3505; this.columnNames(); - this.state = 3496; + this.state = 3506; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3500; + this.state = 3510; this.replaceStatementValuesOrSelectOrTable(); } break; case MySqlParser.KW_SET: { - this.state = 3501; + this.state = 3511; this.setAssignmentList(); } break; @@ -18966,44 +18972,44 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3563; + this.state = 3573; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: localContext = new UnionAndLateralSelectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3504; + this.state = 3514; this.querySpecification(); - this.state = 3508; + this.state = 3518; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3505; + this.state = 3515; this.unionStatement(); } } } - this.state = 3510; + this.state = 3520; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } - this.state = 3519; + this.state = 3529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3511; + this.state = 3521; this.match(MySqlParser.KW_UNION); - this.state = 3513; + this.state = 3523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3512; + this.state = 3522; (localContext as UnionAndLateralSelectContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -19016,18 +19022,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3517; + this.state = 3527; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 3515; + this.state = 3525; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3516; + this.state = 3526; this.queryExpression(); } break; @@ -19037,60 +19043,60 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 3525; + this.state = 3535; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3521; + this.state = 3531; this.match(MySqlParser.COMMA); - this.state = 3522; + this.state = 3532; this.lateralStatement(); } } } - this.state = 3527; + this.state = 3537; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); } - this.state = 3529; + this.state = 3539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 3528; + this.state = 3538; this.orderByClause(); } break; } - this.state = 3532; + this.state = 3542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 3531; + this.state = 3541; this.limitClause(); } break; } - this.state = 3535; + this.state = 3545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: { - this.state = 3534; + this.state = 3544; this.lockClause(); } break; } - this.state = 3538; + this.state = 3548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3537; + this.state = 3547; this.intoClause(); } break; @@ -19101,37 +19107,37 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectExpressionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3540; + this.state = 3550; this.queryExpression(); - this.state = 3544; + this.state = 3554; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3541; + this.state = 3551; this.unionStatement(); } } } - this.state = 3546; + this.state = 3556; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); } - this.state = 3552; + this.state = 3562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3547; + this.state = 3557; this.match(MySqlParser.KW_UNION); - this.state = 3549; + this.state = 3559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3548; + this.state = 3558; (localContext as SelectExpressionContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -19144,37 +19150,37 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3551; + this.state = 3561; this.queryExpression(); } break; } - this.state = 3555; + this.state = 3565; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3554; + this.state = 3564; this.orderByClause(); } break; } - this.state = 3558; + this.state = 3568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3557; + this.state = 3567; this.limitClause(); } break; } - this.state = 3561; + this.state = 3571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3560; + this.state = 3570; this.lockClause(); } break; @@ -19206,44 +19212,44 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3566; + this.state = 3576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 3565; + this.state = 3575; this.withClause(); } } - this.state = 3568; + this.state = 3578; this.queryExpressionBody(0); - this.state = 3570; + this.state = 3580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3569; + this.state = 3579; this.orderByClause(); } } - this.state = 3573; + this.state = 3583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3572; + this.state = 3582; this.limitClause(); } } - this.state = 3576; + this.state = 3586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3575; + this.state = 3585; this.intoClause(); } } @@ -19284,11 +19290,11 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 3579; + this.state = 3589; this.queryItem(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3595; + this.state = 3605; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -19298,25 +19304,25 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3593; + this.state = 3603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3581; + this.state = 3591; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3582; + this.state = 3592; this.match(MySqlParser.KW_UNION); - this.state = 3584; + this.state = 3594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3583; + this.state = 3593; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19328,7 +19334,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3586; + this.state = 3596; this.queryItem(0); } break; @@ -19336,18 +19342,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3587; + this.state = 3597; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3588; + this.state = 3598; this.match(MySqlParser.KW_EXCEPT); - this.state = 3590; + this.state = 3600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3589; + this.state = 3599; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19359,14 +19365,14 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3592; + this.state = 3602; this.queryItem(0); } break; } } } - this.state = 3597; + this.state = 3607; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); } @@ -19406,11 +19412,11 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 3599; + this.state = 3609; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3609; + this.state = 3619; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -19423,18 +19429,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new QueryItemContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryItem); - this.state = 3601; + this.state = 3611; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3602; + this.state = 3612; this.match(MySqlParser.KW_INTERSECT); - this.state = 3604; + this.state = 3614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3603; + this.state = 3613; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19446,12 +19452,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3606; + this.state = 3616; this.queryPrimary(); } } } - this.state = 3611; + this.state = 3621; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); } @@ -19476,54 +19482,54 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 218, MySqlParser.RULE_queryPrimary); let _la: number; try { - this.state = 3626; + this.state = 3636; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3612; + this.state = 3622; this.queryBlock(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3613; + this.state = 3623; this.match(MySqlParser.LR_BRACKET); - this.state = 3614; + this.state = 3624; this.queryExpressionBody(0); - this.state = 3616; + this.state = 3626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3615; + this.state = 3625; this.orderByClause(); } } - this.state = 3619; + this.state = 3629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3618; + this.state = 3628; this.limitClause(); } } - this.state = 3622; + this.state = 3632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3621; + this.state = 3631; this.intoClause(); } } - this.state = 3624; + this.state = 3634; this.match(MySqlParser.RR_BRACKET); } break; @@ -19547,20 +19553,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new UpdateStatementContext(this.context, this.state); this.enterRule(localContext, 220, MySqlParser.RULE_updateStatement); try { - this.state = 3630; + this.state = 3640; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3628; + this.state = 3638; this.singleUpdateStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3629; + this.state = 3639; this.multipleUpdateStatement(); } break; @@ -19586,30 +19592,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3632; + this.state = 3642; this.rowValuesList(); - this.state = 3636; + this.state = 3646; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: { - this.state = 3633; + this.state = 3643; this.match(MySqlParser.KW_ORDER); - this.state = 3634; + this.state = 3644; this.match(MySqlParser.KW_BY); - this.state = 3635; + this.state = 3645; this.indexColumnName(); } break; } - this.state = 3640; + this.state = 3650; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3638; + this.state = 3648; this.match(MySqlParser.KW_LIMIT); - this.state = 3639; + this.state = 3649; this.limitClauseAtom(); } break; @@ -19637,15 +19643,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3642; + this.state = 3652; this.queryBlock(); - this.state = 3647; + this.state = 3657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 59 || _la === 181 || _la === 828) { { { - this.state = 3643; + this.state = 3653; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 181 || _la === 828)) { this.errorHandler.recoverInline(this); @@ -19654,40 +19660,40 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3644; + this.state = 3654; this.queryBlock(); } } - this.state = 3649; + this.state = 3659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3651; + this.state = 3661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 3650; + this.state = 3660; this.orderByClause(); } break; } - this.state = 3654; + this.state = 3664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 3653; + this.state = 3663; this.limitClause(); } break; } - this.state = 3657; + this.state = 3667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3656; + this.state = 3666; this.intoClause(); } } @@ -19712,28 +19718,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new QueryBlockContext(this.context, this.state); this.enterRule(localContext, 226, MySqlParser.RULE_queryBlock); try { - this.state = 3662; + this.state = 3672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3659; + this.state = 3669; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3660; + this.state = 3670; this.tableStatement(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3661; + this.state = 3671; this.valuesStatement(); } break; @@ -19759,36 +19765,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReplaceStatementValuesOrSelectOrTableContext(this.context, this.state); this.enterRule(localContext, 228, MySqlParser.RULE_replaceStatementValuesOrSelectOrTable); try { - this.state = 3669; + this.state = 3679; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3664; + this.state = 3674; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3665; + this.state = 3675; this.match(MySqlParser.KW_TABLE); - this.state = 3666; + this.state = 3676; this.tableName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3667; + this.state = 3677; this.valuesOrValueList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3668; + this.state = 3678; this.rowValuesList(); } break; @@ -19815,29 +19821,29 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3671; + this.state = 3681; this.match(MySqlParser.KW_VALUES); - this.state = 3672; + this.state = 3682; this.match(MySqlParser.KW_ROW); - this.state = 3673; + this.state = 3683; this.expressionsWithDefaults(); - this.state = 3679; + this.state = 3689; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3674; + this.state = 3684; this.match(MySqlParser.COMMA); - this.state = 3675; + this.state = 3685; this.match(MySqlParser.KW_ROW); - this.state = 3676; + this.state = 3686; this.expressionsWithDefaults(); } } } - this.state = 3681; + this.state = 3691; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); } @@ -19864,24 +19870,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3682; + this.state = 3692; this.match(MySqlParser.KW_SET); - this.state = 3683; + this.state = 3693; localContext._setFirst = this.updatedElement(); - this.state = 3688; + this.state = 3698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3684; + this.state = 3694; this.match(MySqlParser.COMMA); - this.state = 3685; + this.state = 3695; localContext._updatedElement = this.updatedElement(); localContext._setElements.push(localContext._updatedElement); } } - this.state = 3690; + this.state = 3700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19907,11 +19913,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3691; + this.state = 3701; this.columnName(); - this.state = 3692; + this.state = 3702; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 3693; + this.state = 3703; this.expressionOrDefault(); } } @@ -19933,7 +19939,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new AssignmentFieldContext(this.context, this.state); this.enterRule(localContext, 236, MySqlParser.RULE_assignmentField); try { - this.state = 3697; + this.state = 3707; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -20487,14 +20493,14 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 3695; + this.state = 3705; localContext._var_name = this.uid(); } break; case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 3696; + this.state = 3706; this.match(MySqlParser.LOCAL_ID); } break; @@ -20522,15 +20528,15 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3720; + this.state = 3730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 3699; + this.state = 3709; this.match(MySqlParser.KW_FOR); - this.state = 3700; + this.state = 3710; _la = this.tokenStream.LA(1); if(!(_la === 185 || _la === 594)) { this.errorHandler.recoverInline(this); @@ -20539,42 +20545,42 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3710; + this.state = 3720; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: { - this.state = 3701; + this.state = 3711; this.match(MySqlParser.KW_OF); - this.state = 3702; + this.state = 3712; this.tableName(); - this.state = 3707; + this.state = 3717; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3703; + this.state = 3713; this.match(MySqlParser.COMMA); - this.state = 3704; + this.state = 3714; this.tableName(); } } } - this.state = 3709; + this.state = 3719; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); } } break; } - this.state = 3714; + this.state = 3724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3712; + this.state = 3722; _la = this.tokenStream.LA(1); if(!(_la === 159 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -20583,7 +20589,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3713; + this.state = 3723; this.match(MySqlParser.KW_LOCKED); } break; @@ -20593,13 +20599,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LOCK: this.enterOuterAlt(localContext, 2); { - this.state = 3716; + this.state = 3726; this.match(MySqlParser.KW_LOCK); - this.state = 3717; + this.state = 3727; this.match(MySqlParser.KW_IN); - this.state = 3718; + this.state = 3728; this.match(MySqlParser.KW_SHARE); - this.state = 3719; + this.state = 3729; this.match(MySqlParser.KW_MODE); } break; @@ -20628,108 +20634,108 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3722; + this.state = 3732; this.match(MySqlParser.KW_DELETE); - this.state = 3724; + this.state = 3734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3723; + this.state = 3733; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3727; + this.state = 3737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 3726; + this.state = 3736; this.match(MySqlParser.KW_QUICK); } } - this.state = 3730; + this.state = 3740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3729; + this.state = 3739; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3732; + this.state = 3742; this.match(MySqlParser.KW_FROM); - this.state = 3733; + this.state = 3743; this.tableName(); - this.state = 3738; + this.state = 3748; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 3735; + this.state = 3745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3734; + this.state = 3744; this.match(MySqlParser.KW_AS); } } - this.state = 3737; + this.state = 3747; localContext._table_alias = this.uid(); } break; } - this.state = 3745; + this.state = 3755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3740; + this.state = 3750; this.match(MySqlParser.KW_PARTITION); - this.state = 3741; + this.state = 3751; this.match(MySqlParser.LR_BRACKET); - this.state = 3742; + this.state = 3752; this.partitionNames(); - this.state = 3743; + this.state = 3753; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3749; + this.state = 3759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3747; + this.state = 3757; this.match(MySqlParser.KW_WHERE); - this.state = 3748; + this.state = 3758; this.expression(0); } } - this.state = 3752; + this.state = 3762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3751; + this.state = 3761; this.orderByClause(); } } - this.state = 3756; + this.state = 3766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3754; + this.state = 3764; this.match(MySqlParser.KW_LIMIT); - this.state = 3755; + this.state = 3765; this.limitClauseAtom(); } } @@ -20757,39 +20763,39 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3758; + this.state = 3768; this.match(MySqlParser.KW_DELETE); - this.state = 3760; + this.state = 3770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3759; + this.state = 3769; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3763; + this.state = 3773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 3762; + this.state = 3772; this.match(MySqlParser.KW_QUICK); } break; } - this.state = 3766; + this.state = 3776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3765; + this.state = 3775; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3807; + this.state = 3817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -21342,117 +21348,117 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3768; + this.state = 3778; this.tableName(); - this.state = 3771; + this.state = 3781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3769; + this.state = 3779; this.match(MySqlParser.DOT); - this.state = 3770; + this.state = 3780; this.match(MySqlParser.STAR); } } - this.state = 3781; + this.state = 3791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3773; + this.state = 3783; this.match(MySqlParser.COMMA); - this.state = 3774; + this.state = 3784; this.tableName(); - this.state = 3777; + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3775; + this.state = 3785; this.match(MySqlParser.DOT); - this.state = 3776; + this.state = 3786; this.match(MySqlParser.STAR); } } } } - this.state = 3783; + this.state = 3793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3784; + this.state = 3794; this.match(MySqlParser.KW_FROM); - this.state = 3785; + this.state = 3795; this.tableSources(); } break; case MySqlParser.KW_FROM: { - this.state = 3787; + this.state = 3797; this.match(MySqlParser.KW_FROM); - this.state = 3788; + this.state = 3798; this.tableName(); - this.state = 3791; + this.state = 3801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3789; + this.state = 3799; this.match(MySqlParser.DOT); - this.state = 3790; + this.state = 3800; this.match(MySqlParser.STAR); } } - this.state = 3801; + this.state = 3811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3793; + this.state = 3803; this.match(MySqlParser.COMMA); - this.state = 3794; + this.state = 3804; this.tableName(); - this.state = 3797; + this.state = 3807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3795; + this.state = 3805; this.match(MySqlParser.DOT); - this.state = 3796; + this.state = 3806; this.match(MySqlParser.STAR); } } } } - this.state = 3803; + this.state = 3813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3804; + this.state = 3814; this.match(MySqlParser.KW_USING); - this.state = 3805; + this.state = 3815; this.tableSources(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3811; + this.state = 3821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3809; + this.state = 3819; this.match(MySqlParser.KW_WHERE); - this.state = 3810; + this.state = 3820; this.expression(0); } } @@ -21480,28 +21486,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3813; + this.state = 3823; this.match(MySqlParser.KW_HANDLER); - this.state = 3814; + this.state = 3824; this.tableName(); - this.state = 3815; + this.state = 3825; this.match(MySqlParser.KW_OPEN); - this.state = 3820; + this.state = 3830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { case 1: { - this.state = 3817; + this.state = 3827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3816; + this.state = 3826; this.match(MySqlParser.KW_AS); } } - this.state = 3819; + this.state = 3829; localContext._table_alias = this.uid(); } break; @@ -21529,28 +21535,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3822; + this.state = 3832; this.match(MySqlParser.KW_HANDLER); - this.state = 3823; + this.state = 3833; this.tableName(); - this.state = 3824; + this.state = 3834; this.match(MySqlParser.KW_READ); - this.state = 3825; + this.state = 3835; this.indexName(); - this.state = 3832; + this.state = 3842; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.EQUAL_SYMBOL: case MySqlParser.GREATER_SYMBOL: case MySqlParser.LESS_SYMBOL: { - this.state = 3826; + this.state = 3836; this.comparisonBase(); - this.state = 3827; + this.state = 3837; this.match(MySqlParser.LR_BRACKET); - this.state = 3828; + this.state = 3838; this.constants(); - this.state = 3829; + this.state = 3839; this.match(MySqlParser.RR_BRACKET); } break; @@ -21559,7 +21565,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_NEXT: case MySqlParser.KW_PREV: { - this.state = 3831; + this.state = 3841; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 501 || _la === 542)) { @@ -21574,26 +21580,26 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3836; + this.state = 3846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3834; + this.state = 3844; this.match(MySqlParser.KW_WHERE); - this.state = 3835; + this.state = 3845; this.expression(0); } } - this.state = 3840; + this.state = 3850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3838; + this.state = 3848; this.match(MySqlParser.KW_LIMIT); - this.state = 3839; + this.state = 3849; this.limitClauseAtom(); } } @@ -21621,13 +21627,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3842; + this.state = 3852; this.match(MySqlParser.KW_HANDLER); - this.state = 3843; + this.state = 3853; this.tableName(); - this.state = 3844; + this.state = 3854; this.match(MySqlParser.KW_READ); - this.state = 3845; + this.state = 3855; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 501)) { @@ -21637,26 +21643,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3848; + this.state = 3858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3846; + this.state = 3856; this.match(MySqlParser.KW_WHERE); - this.state = 3847; + this.state = 3857; this.expression(0); } } - this.state = 3852; + this.state = 3862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3850; + this.state = 3860; this.match(MySqlParser.KW_LIMIT); - this.state = 3851; + this.state = 3861; this.limitClauseAtom(); } } @@ -21683,11 +21689,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3854; + this.state = 3864; this.match(MySqlParser.KW_HANDLER); - this.state = 3855; + this.state = 3865; this.tableName(); - this.state = 3856; + this.state = 3866; this.match(MySqlParser.KW_CLOSE); } } @@ -21712,27 +21718,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3858; + this.state = 3868; this.match(MySqlParser.KW_IMPORT); - this.state = 3859; + this.state = 3869; this.match(MySqlParser.KW_TABLE); - this.state = 3860; + this.state = 3870; this.match(MySqlParser.KW_FROM); - this.state = 3861; + this.state = 3871; this.stringLiteral(); - this.state = 3866; + this.state = 3876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3862; + this.state = 3872; this.match(MySqlParser.COMMA); - this.state = 3863; + this.state = 3873; this.stringLiteral(); } } - this.state = 3868; + this.state = 3878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21759,98 +21765,98 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3869; + this.state = 3879; this.match(MySqlParser.KW_UPDATE); - this.state = 3871; + this.state = 3881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3870; + this.state = 3880; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3874; + this.state = 3884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3873; + this.state = 3883; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3876; + this.state = 3886; this.tableName(); - this.state = 3881; + this.state = 3891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3878; + this.state = 3888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3877; + this.state = 3887; this.match(MySqlParser.KW_AS); } } - this.state = 3880; + this.state = 3890; localContext._table_alias = this.uid(); } } - this.state = 3883; + this.state = 3893; this.match(MySqlParser.KW_SET); - this.state = 3884; + this.state = 3894; this.updatedElement(); - this.state = 3889; + this.state = 3899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3885; + this.state = 3895; this.match(MySqlParser.COMMA); - this.state = 3886; + this.state = 3896; this.updatedElement(); } } - this.state = 3891; + this.state = 3901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3894; + this.state = 3904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3892; + this.state = 3902; this.match(MySqlParser.KW_WHERE); - this.state = 3893; + this.state = 3903; this.expression(0); } } - this.state = 3897; + this.state = 3907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3896; + this.state = 3906; this.orderByClause(); } } - this.state = 3900; + this.state = 3910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3899; + this.state = 3909; this.limitClause(); } } @@ -21878,58 +21884,58 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3902; + this.state = 3912; this.match(MySqlParser.KW_UPDATE); - this.state = 3904; + this.state = 3914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3903; + this.state = 3913; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3907; + this.state = 3917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3906; + this.state = 3916; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3909; + this.state = 3919; this.tableSources(); - this.state = 3910; + this.state = 3920; this.match(MySqlParser.KW_SET); - this.state = 3911; + this.state = 3921; this.updatedElement(); - this.state = 3916; + this.state = 3926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3912; + this.state = 3922; this.match(MySqlParser.COMMA); - this.state = 3913; + this.state = 3923; this.updatedElement(); } } - this.state = 3918; + this.state = 3928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3921; + this.state = 3931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3919; + this.state = 3929; this.match(MySqlParser.KW_WHERE); - this.state = 3920; + this.state = 3930; this.expression(0); } } @@ -21957,27 +21963,27 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3923; + this.state = 3933; this.match(MySqlParser.KW_ORDER); - this.state = 3924; + this.state = 3934; this.match(MySqlParser.KW_BY); - this.state = 3925; + this.state = 3935; this.orderByExpression(); - this.state = 3930; + this.state = 3940; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3926; + this.state = 3936; this.match(MySqlParser.COMMA); - this.state = 3927; + this.state = 3937; this.orderByExpression(); } } } - this.state = 3932; + this.state = 3942; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); } @@ -22004,14 +22010,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3933; + this.state = 3943; this.expression(0); - this.state = 3935; + this.state = 3945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 3934; + this.state = 3944; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -22047,23 +22053,23 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3937; + this.state = 3947; this.tableSource(); - this.state = 3942; + this.state = 3952; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3938; + this.state = 3948; this.match(MySqlParser.COMMA); - this.state = 3939; + this.state = 3949; this.tableSource(); } } } - this.state = 3944; + this.state = 3954; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); } @@ -22089,28 +22095,28 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3963; + this.state = 3973; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: localContext = new TableSourceBaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3945; + this.state = 3955; this.tableSourceItem(); - this.state = 3949; + this.state = 3959; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3946; + this.state = 3956; this.joinPart(); } } } - this.state = 3951; + this.state = 3961; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); } @@ -22120,25 +22126,25 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourceNestedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3952; + this.state = 3962; this.match(MySqlParser.LR_BRACKET); - this.state = 3953; + this.state = 3963; this.tableSourceItem(); - this.state = 3957; + this.state = 3967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 35 || ((((_la - 84)) & ~0x1F) === 0 && ((1 << (_la - 84)) & 536887425) !== 0) || _la === 150 || _la === 172) { { { - this.state = 3954; + this.state = 3964; this.joinPart(); } } - this.state = 3959; + this.state = 3969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3960; + this.state = 3970; this.match(MySqlParser.RR_BRACKET); } break; @@ -22146,7 +22152,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableJsonContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3962; + this.state = 3972; this.jsonTable(); } break; @@ -22172,73 +22178,73 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4010; + this.state = 4014; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: localContext = new AtomTableItemContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3965; + this.state = 3975; this.tableName(); - this.state = 3971; + this.state = 3981; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: { - this.state = 3966; + this.state = 3976; this.match(MySqlParser.KW_PARTITION); - this.state = 3967; + this.state = 3977; this.match(MySqlParser.LR_BRACKET); - this.state = 3968; + this.state = 3978; this.partitionNames(); - this.state = 3969; + this.state = 3979; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3977; + this.state = 3987; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: { - this.state = 3974; + this.state = 3984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3973; + this.state = 3983; this.match(MySqlParser.KW_AS); } } - this.state = 3976; + this.state = 3986; (localContext as AtomTableItemContext)._alias = this.uid(); } break; } - this.state = 3987; + this.state = 3997; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 3979; + this.state = 3989; this.indexHint(); - this.state = 3984; + this.state = 3994; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3980; + this.state = 3990; this.match(MySqlParser.COMMA); - this.state = 3981; + this.state = 3991; this.indexHint(); } } } - this.state = 3986; + this.state = 3996; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); } @@ -22251,54 +22257,36 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryTableItemContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3990; + this.state = 4000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 95) { { - this.state = 3989; + this.state = 3999; this.match(MySqlParser.KW_LATERAL); } } - this.state = 3997; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { - case 1: - { - this.state = 3992; - this.selectStatement(); - } - break; - case 2: - { - this.state = 3993; - this.match(MySqlParser.LR_BRACKET); - this.state = 3994; - (localContext as SubqueryTableItemContext)._parenthesisSubquery = this.selectStatement(); - this.state = 3995; - this.match(MySqlParser.RR_BRACKET); - } - break; - } - this.state = 4000; + this.state = 4002; + this.atomSubQueryTableSource(); + this.state = 4004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3999; + this.state = 4003; this.match(MySqlParser.KW_AS); } } - this.state = 4002; + this.state = 4006; (localContext as SubqueryTableItemContext)._alias = this.uid(); - this.state = 4004; + this.state = 4008; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4003; + this.state = 4007; this.fullColumnNames(); } break; @@ -22309,11 +22297,52 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourcesItemContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4006; + this.state = 4010; this.match(MySqlParser.LR_BRACKET); - this.state = 4007; + this.state = 4011; this.tableSources(); - this.state = 4008; + this.state = 4012; + this.match(MySqlParser.RR_BRACKET); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); + this.enterRule(localContext, 268, MySqlParser.RULE_atomSubQueryTableSource); + try { + this.state = 4021; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 4016; + this.selectStatement(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 4017; + this.match(MySqlParser.LR_BRACKET); + this.state = 4018; + localContext._parenthesisSubquery = this.selectStatement(); + this.state = 4019; this.match(MySqlParser.RR_BRACKET); } break; @@ -22335,15 +22364,15 @@ export class MySqlParser extends SQLParserBase { } public fullColumnNames(): FullColumnNamesContext { let localContext = new FullColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 268, MySqlParser.RULE_fullColumnNames); + this.enterRule(localContext, 270, MySqlParser.RULE_fullColumnNames); try { this.enterOuterAlt(localContext, 1); { - this.state = 4012; + this.state = 4023; this.match(MySqlParser.LR_BRACKET); - this.state = 4013; + this.state = 4024; this.columnNames(); - this.state = 4014; + this.state = 4025; this.match(MySqlParser.RR_BRACKET); } } @@ -22363,12 +22392,12 @@ export class MySqlParser extends SQLParserBase { } public indexHint(): IndexHintContext { let localContext = new IndexHintContext(this.context, this.state); - this.enterRule(localContext, 270, MySqlParser.RULE_indexHint); + this.enterRule(localContext, 272, MySqlParser.RULE_indexHint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4027; localContext._indexHintAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 79 || _la === 187)) { @@ -22378,7 +22407,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4017; + this.state = 4028; localContext._keyFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -22388,31 +22417,31 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4020; + this.state = 4031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4018; + this.state = 4029; this.match(MySqlParser.KW_FOR); - this.state = 4019; + this.state = 4030; this.indexHintType(); } } - this.state = 4022; + this.state = 4033; this.match(MySqlParser.LR_BRACKET); - this.state = 4024; + this.state = 4035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4023; + this.state = 4034; this.indexNames(); } } - this.state = 4026; + this.state = 4037; this.match(MySqlParser.RR_BRACKET); } } @@ -22432,33 +22461,33 @@ export class MySqlParser extends SQLParserBase { } public indexHintType(): IndexHintTypeContext { let localContext = new IndexHintTypeContext(this.context, this.state); - this.enterRule(localContext, 272, MySqlParser.RULE_indexHintType); + this.enterRule(localContext, 274, MySqlParser.RULE_indexHintType); try { - this.state = 4033; + this.state = 4044; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 4028; + this.state = 4039; this.match(MySqlParser.KW_JOIN); } break; case MySqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 4029; + this.state = 4040; this.match(MySqlParser.KW_ORDER); - this.state = 4030; + this.state = 4041; this.match(MySqlParser.KW_BY); } break; case MySqlParser.KW_GROUP: this.enterOuterAlt(localContext, 3); { - this.state = 4031; + this.state = 4042; this.match(MySqlParser.KW_GROUP); - this.state = 4032; + this.state = 4043; this.match(MySqlParser.KW_BY); } break; @@ -22482,11 +22511,11 @@ export class MySqlParser extends SQLParserBase { } public joinPart(): JoinPartContext { let localContext = new JoinPartContext(this.context, this.state); - this.enterRule(localContext, 274, MySqlParser.RULE_joinPart); + this.enterRule(localContext, 276, MySqlParser.RULE_joinPart); let _la: number; try { let alternative: number; - this.state = 4084; + this.state = 4095; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CROSS: @@ -22495,12 +22524,12 @@ export class MySqlParser extends SQLParserBase { localContext = new InnerJoinContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4036; + this.state = 4047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 35 || _la === 84) { { - this.state = 4035; + this.state = 4046; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 84)) { this.errorHandler.recoverInline(this); @@ -22512,33 +22541,33 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4038; + this.state = 4049; this.match(MySqlParser.KW_JOIN); - this.state = 4040; + this.state = 4051; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: { - this.state = 4039; + this.state = 4050; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4042; + this.state = 4053; this.tableSourceItem(); - this.state = 4046; + this.state = 4057; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4043; + this.state = 4054; this.joinSpec(); } } } - this.state = 4048; + this.state = 4059; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); } @@ -22548,23 +22577,23 @@ export class MySqlParser extends SQLParserBase { localContext = new StraightJoinContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4049; + this.state = 4060; this.match(MySqlParser.KW_STRAIGHT_JOIN); - this.state = 4050; + this.state = 4061; this.tableSourceItem(); - this.state = 4054; + this.state = 4065; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4051; + this.state = 4062; this.joinSpec(); } } } - this.state = 4056; + this.state = 4067; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); } @@ -22575,7 +22604,7 @@ export class MySqlParser extends SQLParserBase { localContext = new OuterJoinContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4057; + this.state = 4068; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22584,43 +22613,43 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4059; + this.state = 4070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4058; + this.state = 4069; this.match(MySqlParser.KW_OUTER); } } - this.state = 4061; + this.state = 4072; this.match(MySqlParser.KW_JOIN); - this.state = 4063; + this.state = 4074; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { case 1: { - this.state = 4062; + this.state = 4073; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4065; + this.state = 4076; this.tableSourceItem(); - this.state = 4069; + this.state = 4080; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4066; + this.state = 4077; this.joinSpec(); } } } - this.state = 4071; + this.state = 4082; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); } @@ -22630,26 +22659,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NaturalJoinContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4072; + this.state = 4083; this.match(MySqlParser.KW_NATURAL); - this.state = 4080; + this.state = 4091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84 || _la === 98 || _la === 150) { { - this.state = 4075; + this.state = 4086; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_INNER: { - this.state = 4073; + this.state = 4084; this.match(MySqlParser.KW_INNER); } break; case MySqlParser.KW_LEFT: case MySqlParser.KW_RIGHT: { - this.state = 4074; + this.state = 4085; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22663,12 +22692,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4078; + this.state = 4089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4077; + this.state = 4088; this.match(MySqlParser.KW_OUTER); } } @@ -22676,9 +22705,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4082; + this.state = 4093; this.match(MySqlParser.KW_JOIN); - this.state = 4083; + this.state = 4094; this.tableSourceItem(); } break; @@ -22702,18 +22731,18 @@ export class MySqlParser extends SQLParserBase { } public joinSpec(): JoinSpecContext { let localContext = new JoinSpecContext(this.context, this.state); - this.enterRule(localContext, 276, MySqlParser.RULE_joinSpec); + this.enterRule(localContext, 278, MySqlParser.RULE_joinSpec); try { - this.state = 4093; + this.state = 4104; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { { - this.state = 4086; + this.state = 4097; this.match(MySqlParser.KW_ON); - this.state = 4087; + this.state = 4098; this.expression(0); } } @@ -22721,13 +22750,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 4088; + this.state = 4099; this.match(MySqlParser.KW_USING); - this.state = 4089; + this.state = 4100; this.match(MySqlParser.LR_BRACKET); - this.state = 4090; + this.state = 4101; this.columnNames(); - this.state = 4091; + this.state = 4102; this.match(MySqlParser.RR_BRACKET); } break; @@ -22751,30 +22780,30 @@ export class MySqlParser extends SQLParserBase { } public queryExpression(): QueryExpressionContext { let localContext = new QueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 278, MySqlParser.RULE_queryExpression); + this.enterRule(localContext, 280, MySqlParser.RULE_queryExpression); try { - this.state = 4103; + this.state = 4114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4095; + this.state = 4106; this.match(MySqlParser.LR_BRACKET); - this.state = 4096; + this.state = 4107; this.querySpecification(); - this.state = 4097; + this.state = 4108; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4099; + this.state = 4110; this.match(MySqlParser.LR_BRACKET); - this.state = 4100; + this.state = 4111; this.queryExpression(); - this.state = 4101; + this.state = 4112; this.match(MySqlParser.RR_BRACKET); } break; @@ -22796,109 +22825,109 @@ export class MySqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 280, MySqlParser.RULE_querySpecification); + this.enterRule(localContext, 282, MySqlParser.RULE_querySpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4105; + this.state = 4116; this.match(MySqlParser.KW_SELECT); - this.state = 4109; + this.state = 4120; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 575, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4106; + this.state = 4117; this.selectSpec(); } } } - this.state = 4111; + this.state = 4122; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 575, this.context); } - this.state = 4112; + this.state = 4123; this.selectElements(); - this.state = 4114; + this.state = 4125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: { - this.state = 4113; + this.state = 4124; this.intoClause(); } break; } - this.state = 4116; + this.state = 4127; this.fromClause(); - this.state = 4118; + this.state = 4129; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4117; + this.state = 4128; this.groupByClause(); } break; } - this.state = 4121; + this.state = 4132; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: { - this.state = 4120; + this.state = 4131; this.havingClause(); } break; } - this.state = 4124; + this.state = 4135; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4123; + this.state = 4134; this.windowClause(); } break; } - this.state = 4127; + this.state = 4138; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4126; + this.state = 4137; this.orderByClause(); } break; } - this.state = 4130; + this.state = 4141; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: { - this.state = 4129; + this.state = 4140; this.limitClause(); } break; } - this.state = 4133; + this.state = 4144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4132; + this.state = 4143; this.intoClause(); } break; } - this.state = 4136; + this.state = 4147; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4135; + this.state = 4146; this.unionStatement(); } break; @@ -22921,19 +22950,19 @@ export class MySqlParser extends SQLParserBase { } public unionStatement(): UnionStatementContext { let localContext = new UnionStatementContext(this.context, this.state); - this.enterRule(localContext, 282, MySqlParser.RULE_unionStatement); + this.enterRule(localContext, 284, MySqlParser.RULE_unionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4138; + this.state = 4149; this.match(MySqlParser.KW_UNION); - this.state = 4140; + this.state = 4151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 4139; + this.state = 4150; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -22946,18 +22975,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4144; + this.state = 4155; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4142; + this.state = 4153; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4143; + this.state = 4154; this.queryExpression(); } break; @@ -22982,69 +23011,69 @@ export class MySqlParser extends SQLParserBase { } public lateralStatement(): LateralStatementContext { let localContext = new LateralStatementContext(this.context, this.state); - this.enterRule(localContext, 284, MySqlParser.RULE_lateralStatement); + this.enterRule(localContext, 286, MySqlParser.RULE_lateralStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4146; + this.state = 4157; this.match(MySqlParser.KW_LATERAL); - this.state = 4161; + this.state = 4172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { case 1: { - this.state = 4147; + this.state = 4158; this.querySpecification(); } break; case 2: { - this.state = 4148; + this.state = 4159; this.queryExpression(); } break; case 3: { { - this.state = 4149; + this.state = 4160; this.match(MySqlParser.LR_BRACKET); - this.state = 4152; + this.state = 4163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4150; + this.state = 4161; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4151; + this.state = 4162; this.queryExpression(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4154; + this.state = 4165; this.match(MySqlParser.RR_BRACKET); - this.state = 4159; + this.state = 4170; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 588, this.context) ) { case 1: { - this.state = 4156; + this.state = 4167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4155; + this.state = 4166; this.match(MySqlParser.KW_AS); } } - this.state = 4158; + this.state = 4169; localContext._alias = this.uid(); } break; @@ -23071,47 +23100,47 @@ export class MySqlParser extends SQLParserBase { } public jsonTable(): JsonTableContext { let localContext = new JsonTableContext(this.context, this.state); - this.enterRule(localContext, 286, MySqlParser.RULE_jsonTable); + this.enterRule(localContext, 288, MySqlParser.RULE_jsonTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4163; + this.state = 4174; this.match(MySqlParser.KW_JSON_TABLE); - this.state = 4164; + this.state = 4175; this.match(MySqlParser.LR_BRACKET); - this.state = 4165; + this.state = 4176; this.match(MySqlParser.STRING_LITERAL); - this.state = 4166; + this.state = 4177; this.match(MySqlParser.COMMA); - this.state = 4167; + this.state = 4178; this.match(MySqlParser.STRING_LITERAL); - this.state = 4168; + this.state = 4179; this.match(MySqlParser.KW_COLUMNS); - this.state = 4169; + this.state = 4180; this.match(MySqlParser.LR_BRACKET); - this.state = 4170; + this.state = 4181; this.jsonColumnList(); - this.state = 4171; + this.state = 4182; this.match(MySqlParser.RR_BRACKET); - this.state = 4172; + this.state = 4183; this.match(MySqlParser.RR_BRACKET); - this.state = 4177; + this.state = 4188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4174; + this.state = 4185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4173; + this.state = 4184; this.match(MySqlParser.KW_AS); } } - this.state = 4176; + this.state = 4187; localContext._alias = this.uid(); } break; @@ -23134,26 +23163,26 @@ export class MySqlParser extends SQLParserBase { } public jsonColumnList(): JsonColumnListContext { let localContext = new JsonColumnListContext(this.context, this.state); - this.enterRule(localContext, 288, MySqlParser.RULE_jsonColumnList); + this.enterRule(localContext, 290, MySqlParser.RULE_jsonColumnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4179; + this.state = 4190; this.jsonColumn(); - this.state = 4184; + this.state = 4195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4180; + this.state = 4191; this.match(MySqlParser.COMMA); - this.state = 4181; + this.state = 4192; this.jsonColumn(); } } - this.state = 4186; + this.state = 4197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23175,25 +23204,25 @@ export class MySqlParser extends SQLParserBase { } public jsonColumn(): JsonColumnContext { let localContext = new JsonColumnContext(this.context, this.state); - this.enterRule(localContext, 290, MySqlParser.RULE_jsonColumn); + this.enterRule(localContext, 292, MySqlParser.RULE_jsonColumn); let _la: number; try { - this.state = 4216; + this.state = 4227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4187; + this.state = 4198; this.columnName(); - this.state = 4204; + this.state = 4215; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: { - this.state = 4188; + this.state = 4199; this.match(MySqlParser.KW_FOR); - this.state = 4189; + this.state = 4200; this.match(MySqlParser.KW_ORDINALITY); } break; @@ -23257,33 +23286,33 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_POINT: case MySqlParser.KW_POLYGON: { - this.state = 4190; + this.state = 4201; this.dataType(); - this.state = 4202; + this.state = 4213; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PATH: { - this.state = 4191; + this.state = 4202; this.match(MySqlParser.KW_PATH); - this.state = 4192; + this.state = 4203; this.match(MySqlParser.STRING_LITERAL); - this.state = 4194; + this.state = 4205; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4193; + this.state = 4204; this.jsonOnEmpty(); } break; } - this.state = 4197; + this.state = 4208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 4196; + this.state = 4207; this.jsonOnError(); } } @@ -23292,11 +23321,11 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_EXISTS: { - this.state = 4199; + this.state = 4210; this.match(MySqlParser.KW_EXISTS); - this.state = 4200; + this.state = 4211; this.match(MySqlParser.KW_PATH); - this.state = 4201; + this.state = 4212; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23313,27 +23342,27 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4206; + this.state = 4217; this.match(MySqlParser.KW_NESTED); - this.state = 4208; + this.state = 4219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 4207; + this.state = 4218; this.match(MySqlParser.KW_PATH); } } - this.state = 4210; + this.state = 4221; this.match(MySqlParser.STRING_LITERAL); - this.state = 4211; + this.state = 4222; this.match(MySqlParser.KW_COLUMNS); - this.state = 4212; + this.state = 4223; this.match(MySqlParser.LR_BRACKET); - this.state = 4213; + this.state = 4224; this.jsonColumnList(); - this.state = 4214; + this.state = 4225; this.match(MySqlParser.RR_BRACKET); } break; @@ -23355,39 +23384,39 @@ export class MySqlParser extends SQLParserBase { } public jsonOnEmpty(): JsonOnEmptyContext { let localContext = new JsonOnEmptyContext(this.context, this.state); - this.enterRule(localContext, 292, MySqlParser.RULE_jsonOnEmpty); + this.enterRule(localContext, 294, MySqlParser.RULE_jsonOnEmpty); try { this.enterOuterAlt(localContext, 1); { - this.state = 4222; + this.state = 4233; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4218; + this.state = 4229; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4219; + this.state = 4230; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4220; + this.state = 4231; this.match(MySqlParser.KW_DEFAULT); - this.state = 4221; + this.state = 4232; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4224; + this.state = 4235; this.match(MySqlParser.KW_ON); - this.state = 4225; + this.state = 4236; this.match(MySqlParser.KW_EMPTY); } } @@ -23407,39 +23436,39 @@ export class MySqlParser extends SQLParserBase { } public jsonOnError(): JsonOnErrorContext { let localContext = new JsonOnErrorContext(this.context, this.state); - this.enterRule(localContext, 294, MySqlParser.RULE_jsonOnError); + this.enterRule(localContext, 296, MySqlParser.RULE_jsonOnError); try { this.enterOuterAlt(localContext, 1); { - this.state = 4231; + this.state = 4242; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4227; + this.state = 4238; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4228; + this.state = 4239; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4229; + this.state = 4240; this.match(MySqlParser.KW_DEFAULT); - this.state = 4230; + this.state = 4241; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4233; + this.state = 4244; this.match(MySqlParser.KW_ON); - this.state = 4234; + this.state = 4245; this.match(MySqlParser.KW_ERROR); } } @@ -23459,10 +23488,10 @@ export class MySqlParser extends SQLParserBase { } public selectSpec(): SelectSpecContext { let localContext = new SelectSpecContext(this.context, this.state); - this.enterRule(localContext, 296, MySqlParser.RULE_selectSpec); + this.enterRule(localContext, 298, MySqlParser.RULE_selectSpec); let _la: number; try { - this.state = 4244; + this.state = 4255; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: @@ -23470,7 +23499,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DISTINCTROW: this.enterOuterAlt(localContext, 1); { - this.state = 4236; + this.state = 4247; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49 || _la === 50)) { this.errorHandler.recoverInline(this); @@ -23484,35 +23513,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_HIGH_PRIORITY: this.enterOuterAlt(localContext, 2); { - this.state = 4237; + this.state = 4248; this.match(MySqlParser.KW_HIGH_PRIORITY); } break; case MySqlParser.KW_STRAIGHT_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4238; + this.state = 4249; this.match(MySqlParser.KW_STRAIGHT_JOIN); } break; case MySqlParser.KW_SQL_SMALL_RESULT: this.enterOuterAlt(localContext, 4); { - this.state = 4239; + this.state = 4250; this.match(MySqlParser.KW_SQL_SMALL_RESULT); } break; case MySqlParser.KW_SQL_BIG_RESULT: this.enterOuterAlt(localContext, 5); { - this.state = 4240; + this.state = 4251; this.match(MySqlParser.KW_SQL_BIG_RESULT); } break; case MySqlParser.KW_SQL_BUFFER_RESULT: this.enterOuterAlt(localContext, 6); { - this.state = 4241; + this.state = 4252; this.match(MySqlParser.KW_SQL_BUFFER_RESULT); } break; @@ -23520,7 +23549,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_NO_CACHE: this.enterOuterAlt(localContext, 7); { - this.state = 4242; + this.state = 4253; _la = this.tokenStream.LA(1); if(!(_la === 637 || _la === 638)) { this.errorHandler.recoverInline(this); @@ -23534,7 +23563,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_CALC_FOUND_ROWS: this.enterOuterAlt(localContext, 8); { - this.state = 4243; + this.state = 4254; this.match(MySqlParser.KW_SQL_CALC_FOUND_ROWS); } break; @@ -23558,42 +23587,42 @@ export class MySqlParser extends SQLParserBase { } public selectElements(): SelectElementsContext { let localContext = new SelectElementsContext(this.context, this.state); - this.enterRule(localContext, 298, MySqlParser.RULE_selectElements); + this.enterRule(localContext, 300, MySqlParser.RULE_selectElements); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4248; + this.state = 4259; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { case 1: { - this.state = 4246; - localContext._star = this.match(MySqlParser.STAR); + this.state = 4257; + this.pureAllColumns(); } break; case 2: { - this.state = 4247; + this.state = 4258; this.selectElement(); } break; } - this.state = 4254; + this.state = 4265; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4250; + this.state = 4261; this.match(MySqlParser.COMMA); - this.state = 4251; + this.state = 4262; this.selectElement(); } } } - this.state = 4256; + this.state = 4267; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); } @@ -23615,115 +23644,68 @@ export class MySqlParser extends SQLParserBase { } public selectElement(): SelectElementContext { let localContext = new SelectElementContext(this.context, this.state); - this.enterRule(localContext, 300, MySqlParser.RULE_selectElement); + this.enterRule(localContext, 302, MySqlParser.RULE_selectElement); let _la: number; try { - this.state = 4286; + this.state = 4283; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: - localContext = new SelectExpressionElementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4259; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { - case 1: - { - this.state = 4257; - this.match(MySqlParser.LOCAL_ID); - this.state = 4258; - this.match(MySqlParser.VAR_ASSIGN); - } - break; - } - this.state = 4261; - this.expression(0); - this.state = 4266; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { - case 1: - { - this.state = 4263; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 13) { - { - this.state = 4262; - this.match(MySqlParser.KW_AS); - } - } - - this.state = 4265; - (localContext as SelectExpressionElementContext)._alias = this.uid(); - } - break; - } + this.state = 4268; + this.tableAllColumns(); } break; case 2: - localContext = new SelectFunctionElementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4268; - this.functionCall(); - this.state = 4273; + this.state = 4269; + this.selectLiteralColumnName(); + this.state = 4274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { case 1: { - this.state = 4270; + this.state = 4271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4269; + this.state = 4270; this.match(MySqlParser.KW_AS); } } - this.state = 4272; - (localContext as SelectFunctionElementContext)._alias = this.uid(); + this.state = 4273; + localContext._alias = this.uid(); } break; } } break; case 3: - localContext = new SelectStarElementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4275; - (localContext as SelectStarElementContext)._select_element = this.fullId(); this.state = 4276; - this.match(MySqlParser.DOT); - this.state = 4277; - this.match(MySqlParser.STAR); - } - break; - case 4: - localContext = new SelectColumnElementContext(localContext); - this.enterOuterAlt(localContext, 4); - { - this.state = 4279; - this.columnName(); - this.state = 4284; + this.selectExpressionColumnName(); + this.state = 4281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 607, this.context) ) { case 1: { - this.state = 4281; + this.state = 4278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4280; + this.state = 4277; this.match(MySqlParser.KW_AS); } } - this.state = 4283; - (localContext as SelectColumnElementContext)._alias = this.uid(); + this.state = 4280; + localContext._alias = this.uid(); } break; } @@ -23745,40 +23727,167 @@ export class MySqlParser extends SQLParserBase { } return localContext; } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 304, MySqlParser.RULE_tableAllColumns); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4285; + this.fullId(); + this.state = 4286; + this.match(MySqlParser.DOT); + this.state = 4287; + this.match(MySqlParser.STAR); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public pureAllColumns(): PureAllColumnsContext { + let localContext = new PureAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 306, MySqlParser.RULE_pureAllColumns); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4289; + this.match(MySqlParser.STAR); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 308, MySqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4291; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 310, MySqlParser.RULE_selectExpressionColumnName); + try { + this.state = 4299; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { + case 1: + localContext = new SelectExpressionElementContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 4295; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { + case 1: + { + this.state = 4293; + this.match(MySqlParser.LOCAL_ID); + this.state = 4294; + this.match(MySqlParser.VAR_ASSIGN); + } + break; + } + this.state = 4297; + this.expression(0); + } + break; + case 2: + localContext = new SelectFunctionElementContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 4298; + this.functionCall(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public intoClause(): IntoClauseContext { let localContext = new IntoClauseContext(this.context, this.state); - this.enterRule(localContext, 302, MySqlParser.RULE_intoClause); + this.enterRule(localContext, 312, MySqlParser.RULE_intoClause); let _la: number; try { let alternative: number; - this.state = 4324; + this.state = 4337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: localContext = new SelectIntoVariablesContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4288; + this.state = 4301; this.match(MySqlParser.KW_INTO); - this.state = 4289; + this.state = 4302; this.assignmentField(); - this.state = 4294; + this.state = 4307; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 611, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4290; + this.state = 4303; this.match(MySqlParser.COMMA); - this.state = 4291; + this.state = 4304; this.assignmentField(); } } } - this.state = 4296; + this.state = 4309; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 611, this.context); } } break; @@ -23786,11 +23895,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectIntoDumpFileContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4297; + this.state = 4310; this.match(MySqlParser.KW_INTO); - this.state = 4298; + this.state = 4311; this.match(MySqlParser.KW_DUMPFILE); - this.state = 4299; + this.state = 4312; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23799,32 +23908,32 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 4300; + this.state = 4313; this.match(MySqlParser.KW_INTO); - this.state = 4301; + this.state = 4314; this.match(MySqlParser.KW_OUTFILE); - this.state = 4302; + this.state = 4315; (localContext as SelectIntoTextFileContext)._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 4306; + this.state = 4319; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: { - this.state = 4303; + this.state = 4316; this.match(MySqlParser.KW_CHARACTER); - this.state = 4304; + this.state = 4317; this.match(MySqlParser.KW_SET); - this.state = 4305; + this.state = 4318; (localContext as SelectIntoTextFileContext)._charset = this.charsetName(); } break; } - this.state = 4314; + this.state = 4327; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 4308; + this.state = 4321; (localContext as SelectIntoTextFileContext)._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -23834,7 +23943,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4310; + this.state = 4323; this.errorHandler.sync(this); alternative = 1; do { @@ -23842,7 +23951,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4309; + this.state = 4322; this.selectFieldsInto(); } } @@ -23850,21 +23959,21 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4312; + this.state = 4325; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 613, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 4322; + this.state = 4335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4316; + this.state = 4329; this.match(MySqlParser.KW_LINES); - this.state = 4318; + this.state = 4331; this.errorHandler.sync(this); alternative = 1; do { @@ -23872,7 +23981,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4317; + this.state = 4330; this.selectLinesInto(); } } @@ -23880,9 +23989,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4320; + this.state = 4333; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 616, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 615, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -23908,20 +24017,20 @@ export class MySqlParser extends SQLParserBase { } public selectFieldsInto(): SelectFieldsIntoContext { let localContext = new SelectFieldsIntoContext(this.context, this.state); - this.enterRule(localContext, 304, MySqlParser.RULE_selectFieldsInto); + this.enterRule(localContext, 314, MySqlParser.RULE_selectFieldsInto); let _la: number; try { - this.state = 4338; + this.state = 4351; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 1); { - this.state = 4326; + this.state = 4339; this.match(MySqlParser.KW_TERMINATED); - this.state = 4327; + this.state = 4340; this.match(MySqlParser.KW_BY); - this.state = 4328; + this.state = 4341; localContext._terminationField = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23929,32 +24038,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_OPTIONALLY: this.enterOuterAlt(localContext, 2); { - this.state = 4330; + this.state = 4343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 4329; + this.state = 4342; this.match(MySqlParser.KW_OPTIONALLY); } } - this.state = 4332; + this.state = 4345; this.match(MySqlParser.KW_ENCLOSED); - this.state = 4333; + this.state = 4346; this.match(MySqlParser.KW_BY); - this.state = 4334; + this.state = 4347; localContext._enClosion = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ESCAPED: this.enterOuterAlt(localContext, 3); { - this.state = 4335; + this.state = 4348; this.match(MySqlParser.KW_ESCAPED); - this.state = 4336; + this.state = 4349; this.match(MySqlParser.KW_BY); - this.state = 4337; + this.state = 4350; localContext._escaping = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23978,30 +24087,30 @@ export class MySqlParser extends SQLParserBase { } public selectLinesInto(): SelectLinesIntoContext { let localContext = new SelectLinesIntoContext(this.context, this.state); - this.enterRule(localContext, 306, MySqlParser.RULE_selectLinesInto); + this.enterRule(localContext, 316, MySqlParser.RULE_selectLinesInto); try { - this.state = 4346; + this.state = 4359; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_STARTING: this.enterOuterAlt(localContext, 1); { - this.state = 4340; + this.state = 4353; this.match(MySqlParser.KW_STARTING); - this.state = 4341; + this.state = 4354; this.match(MySqlParser.KW_BY); - this.state = 4342; + this.state = 4355; localContext._starting = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 2); { - this.state = 4343; + this.state = 4356; this.match(MySqlParser.KW_TERMINATED); - this.state = 4344; + this.state = 4357; this.match(MySqlParser.KW_BY); - this.state = 4345; + this.state = 4358; localContext._terminationLine = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24025,30 +24134,30 @@ export class MySqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 308, MySqlParser.RULE_fromClause); + this.enterRule(localContext, 318, MySqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4350; + this.state = 4363; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { case 1: { - this.state = 4348; + this.state = 4361; this.match(MySqlParser.KW_FROM); - this.state = 4349; + this.state = 4362; this.tableSources(); } break; } - this.state = 4354; + this.state = 4367; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4352; + this.state = 4365; this.match(MySqlParser.KW_WHERE); - this.state = 4353; + this.state = 4366; localContext._whereExpr = this.expression(0); } break; @@ -24071,43 +24180,43 @@ export class MySqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 310, MySqlParser.RULE_groupByClause); + this.enterRule(localContext, 320, MySqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4356; + this.state = 4369; this.match(MySqlParser.KW_GROUP); - this.state = 4357; + this.state = 4370; this.match(MySqlParser.KW_BY); - this.state = 4358; + this.state = 4371; this.groupByItem(); - this.state = 4363; + this.state = 4376; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4359; + this.state = 4372; this.match(MySqlParser.COMMA); - this.state = 4360; + this.state = 4373; this.groupByItem(); } } } - this.state = 4365; + this.state = 4378; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); } - this.state = 4368; + this.state = 4381; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { case 1: { - this.state = 4366; + this.state = 4379; this.match(MySqlParser.KW_WITH); - this.state = 4367; + this.state = 4380; this.match(MySqlParser.KW_ROLLUP); } break; @@ -24130,13 +24239,13 @@ export class MySqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 312, MySqlParser.RULE_havingClause); + this.enterRule(localContext, 322, MySqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4370; + this.state = 4383; this.match(MySqlParser.KW_HAVING); - this.state = 4371; + this.state = 4384; localContext._havingExpr = this.expression(0); } } @@ -24156,48 +24265,48 @@ export class MySqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 314, MySqlParser.RULE_windowClause); + this.enterRule(localContext, 324, MySqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4373; + this.state = 4386; this.match(MySqlParser.KW_WINDOW); - this.state = 4374; + this.state = 4387; this.windowName(); - this.state = 4375; + this.state = 4388; this.match(MySqlParser.KW_AS); - this.state = 4376; + this.state = 4389; this.match(MySqlParser.LR_BRACKET); - this.state = 4377; + this.state = 4390; this.windowSpec(); - this.state = 4378; + this.state = 4391; this.match(MySqlParser.RR_BRACKET); - this.state = 4388; + this.state = 4401; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 626, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4379; + this.state = 4392; this.match(MySqlParser.COMMA); - this.state = 4380; + this.state = 4393; this.windowName(); - this.state = 4381; + this.state = 4394; this.match(MySqlParser.KW_AS); - this.state = 4382; + this.state = 4395; this.match(MySqlParser.LR_BRACKET); - this.state = 4383; + this.state = 4396; this.windowSpec(); - this.state = 4384; + this.state = 4397; this.match(MySqlParser.RR_BRACKET); } } } - this.state = 4390; + this.state = 4403; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 626, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); } } } @@ -24217,19 +24326,19 @@ export class MySqlParser extends SQLParserBase { } public groupByItem(): GroupByItemContext { let localContext = new GroupByItemContext(this.context, this.state); - this.enterRule(localContext, 316, MySqlParser.RULE_groupByItem); + this.enterRule(localContext, 326, MySqlParser.RULE_groupByItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4391; + this.state = 4404; this.expression(0); - this.state = 4393; + this.state = 4406; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 4392; + this.state = 4405; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -24260,40 +24369,40 @@ export class MySqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 318, MySqlParser.RULE_limitClause); + this.enterRule(localContext, 328, MySqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4395; + this.state = 4408; this.match(MySqlParser.KW_LIMIT); - this.state = 4406; + this.state = 4419; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { case 1: { - this.state = 4399; + this.state = 4412; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: { - this.state = 4396; + this.state = 4409; localContext._offset = this.limitClauseAtom(); - this.state = 4397; + this.state = 4410; this.match(MySqlParser.COMMA); } break; } - this.state = 4401; + this.state = 4414; localContext._limit = this.limitClauseAtom(); } break; case 2: { - this.state = 4402; + this.state = 4415; localContext._limit = this.limitClauseAtom(); - this.state = 4403; + this.state = 4416; this.match(MySqlParser.KW_OFFSET); - this.state = 4404; + this.state = 4417; localContext._offset = this.limitClauseAtom(); } break; @@ -24316,9 +24425,9 @@ export class MySqlParser extends SQLParserBase { } public limitClauseAtom(): LimitClauseAtomContext { let localContext = new LimitClauseAtomContext(this.context, this.state); - this.enterRule(localContext, 320, MySqlParser.RULE_limitClauseAtom); + this.enterRule(localContext, 330, MySqlParser.RULE_limitClauseAtom); try { - this.state = 4411; + this.state = 4424; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -24329,7 +24438,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4408; + this.state = 4421; this.decimalLiteral(); } break; @@ -24337,7 +24446,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 4409; + this.state = 4422; this.mysqlVariable(); } break; @@ -24890,7 +24999,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 4410; + this.state = 4423; this.simpleId(); } break; @@ -24914,35 +25023,35 @@ export class MySqlParser extends SQLParserBase { } public startTransaction(): StartTransactionContext { let localContext = new StartTransactionContext(this.context, this.state); - this.enterRule(localContext, 322, MySqlParser.RULE_startTransaction); + this.enterRule(localContext, 332, MySqlParser.RULE_startTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4413; + this.state = 4426; this.match(MySqlParser.KW_START); - this.state = 4414; + this.state = 4427; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4423; + this.state = 4436; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { case 1: { - this.state = 4415; + this.state = 4428; this.transactionMode(); - this.state = 4420; + this.state = 4433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4416; + this.state = 4429; this.match(MySqlParser.COMMA); - this.state = 4417; + this.state = 4430; this.transactionMode(); } } - this.state = 4422; + this.state = 4435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24967,19 +25076,19 @@ export class MySqlParser extends SQLParserBase { } public beginWork(): BeginWorkContext { let localContext = new BeginWorkContext(this.context, this.state); - this.enterRule(localContext, 324, MySqlParser.RULE_beginWork); + this.enterRule(localContext, 334, MySqlParser.RULE_beginWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4425; + this.state = 4438; this.match(MySqlParser.KW_BEGIN); - this.state = 4427; + this.state = 4440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4426; + this.state = 4439; this.match(MySqlParser.KW_WORK); } } @@ -25002,61 +25111,61 @@ export class MySqlParser extends SQLParserBase { } public commitWork(): CommitWorkContext { let localContext = new CommitWorkContext(this.context, this.state); - this.enterRule(localContext, 326, MySqlParser.RULE_commitWork); + this.enterRule(localContext, 336, MySqlParser.RULE_commitWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4429; + this.state = 4442; this.match(MySqlParser.KW_COMMIT); - this.state = 4431; + this.state = 4444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4430; + this.state = 4443; this.match(MySqlParser.KW_WORK); } } - this.state = 4438; + this.state = 4451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4433; + this.state = 4446; this.match(MySqlParser.KW_AND); - this.state = 4435; + this.state = 4448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4434; + this.state = 4447; localContext._noChain = this.match(MySqlParser.KW_NO); } } - this.state = 4437; + this.state = 4450; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4444; + this.state = 4457; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 638, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: { - this.state = 4441; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4440; + this.state = 4453; localContext._noRelease = this.match(MySqlParser.KW_NO); } } - this.state = 4443; + this.state = 4456; this.match(MySqlParser.KW_RELEASE); } break; @@ -25079,61 +25188,61 @@ export class MySqlParser extends SQLParserBase { } public rollbackWork(): RollbackWorkContext { let localContext = new RollbackWorkContext(this.context, this.state); - this.enterRule(localContext, 328, MySqlParser.RULE_rollbackWork); + this.enterRule(localContext, 338, MySqlParser.RULE_rollbackWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4446; + this.state = 4459; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4448; + this.state = 4461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4447; + this.state = 4460; this.match(MySqlParser.KW_WORK); } } - this.state = 4455; + this.state = 4468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4450; + this.state = 4463; this.match(MySqlParser.KW_AND); - this.state = 4452; + this.state = 4465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4451; + this.state = 4464; localContext._noChain = this.match(MySqlParser.KW_NO); } } - this.state = 4454; + this.state = 4467; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4461; + this.state = 4474; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 643, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 642, this.context) ) { case 1: { - this.state = 4458; + this.state = 4471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4457; + this.state = 4470; localContext._noRelease = this.match(MySqlParser.KW_NO); } } - this.state = 4460; + this.state = 4473; this.match(MySqlParser.KW_RELEASE); } break; @@ -25156,13 +25265,13 @@ export class MySqlParser extends SQLParserBase { } public savePointStatement(): SavePointStatementContext { let localContext = new SavePointStatementContext(this.context, this.state); - this.enterRule(localContext, 330, MySqlParser.RULE_savePointStatement); + this.enterRule(localContext, 340, MySqlParser.RULE_savePointStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4463; + this.state = 4476; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4464; + this.state = 4477; localContext._identifier = this.uid(); } } @@ -25182,36 +25291,36 @@ export class MySqlParser extends SQLParserBase { } public rollbackStatement(): RollbackStatementContext { let localContext = new RollbackStatementContext(this.context, this.state); - this.enterRule(localContext, 332, MySqlParser.RULE_rollbackStatement); + this.enterRule(localContext, 342, MySqlParser.RULE_rollbackStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4466; + this.state = 4479; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4468; + this.state = 4481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4467; + this.state = 4480; this.match(MySqlParser.KW_WORK); } } - this.state = 4470; + this.state = 4483; this.match(MySqlParser.KW_TO); - this.state = 4472; + this.state = 4485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: { - this.state = 4471; + this.state = 4484; this.match(MySqlParser.KW_SAVEPOINT); } break; } - this.state = 4474; + this.state = 4487; localContext._identifier = this.uid(); } } @@ -25231,15 +25340,15 @@ export class MySqlParser extends SQLParserBase { } public releaseStatement(): ReleaseStatementContext { let localContext = new ReleaseStatementContext(this.context, this.state); - this.enterRule(localContext, 334, MySqlParser.RULE_releaseStatement); + this.enterRule(localContext, 344, MySqlParser.RULE_releaseStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4476; + this.state = 4489; this.match(MySqlParser.KW_RELEASE); - this.state = 4477; + this.state = 4490; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4478; + this.state = 4491; localContext._identifier = this.uid(); } } @@ -25259,14 +25368,14 @@ export class MySqlParser extends SQLParserBase { } public lockTables(): LockTablesContext { let localContext = new LockTablesContext(this.context, this.state); - this.enterRule(localContext, 336, MySqlParser.RULE_lockTables); + this.enterRule(localContext, 346, MySqlParser.RULE_lockTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4480; + this.state = 4493; this.match(MySqlParser.KW_LOCK); - this.state = 4481; + this.state = 4494; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -25275,21 +25384,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4482; + this.state = 4495; this.lockTableElement(); - this.state = 4487; + this.state = 4500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4483; + this.state = 4496; this.match(MySqlParser.COMMA); - this.state = 4484; + this.state = 4497; this.lockTableElement(); } } - this.state = 4489; + this.state = 4502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25311,13 +25420,13 @@ export class MySqlParser extends SQLParserBase { } public unlockTables(): UnlockTablesContext { let localContext = new UnlockTablesContext(this.context, this.state); - this.enterRule(localContext, 338, MySqlParser.RULE_unlockTables); + this.enterRule(localContext, 348, MySqlParser.RULE_unlockTables); try { this.enterOuterAlt(localContext, 1); { - this.state = 4490; + this.state = 4503; this.match(MySqlParser.KW_UNLOCK); - this.state = 4491; + this.state = 4504; this.match(MySqlParser.KW_TABLES); } } @@ -25337,18 +25446,18 @@ export class MySqlParser extends SQLParserBase { } public setAutocommitStatement(): SetAutocommitStatementContext { let localContext = new SetAutocommitStatementContext(this.context, this.state); - this.enterRule(localContext, 340, MySqlParser.RULE_setAutocommitStatement); + this.enterRule(localContext, 350, MySqlParser.RULE_setAutocommitStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4493; + this.state = 4506; this.match(MySqlParser.KW_SET); - this.state = 4494; + this.state = 4507; this.match(MySqlParser.KW_AUTOCOMMIT); - this.state = 4495; + this.state = 4508; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4496; + this.state = 4509; localContext._autocommitValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -25376,19 +25485,19 @@ export class MySqlParser extends SQLParserBase { } public setTransactionStatement(): SetTransactionStatementContext { let localContext = new SetTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 342, MySqlParser.RULE_setTransactionStatement); + this.enterRule(localContext, 352, MySqlParser.RULE_setTransactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4498; + this.state = 4511; this.match(MySqlParser.KW_SET); - this.state = 4500; + this.state = 4513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 4499; + this.state = 4512; localContext._transactionContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { @@ -25401,23 +25510,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4502; + this.state = 4515; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4503; + this.state = 4516; this.transactionOption(); - this.state = 4508; + this.state = 4521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4504; + this.state = 4517; this.match(MySqlParser.COMMA); - this.state = 4505; + this.state = 4518; this.transactionOption(); } } - this.state = 4510; + this.state = 4523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25439,37 +25548,37 @@ export class MySqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 344, MySqlParser.RULE_transactionMode); + this.enterRule(localContext, 354, MySqlParser.RULE_transactionMode); try { - this.state = 4518; + this.state = 4531; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4511; + this.state = 4524; this.match(MySqlParser.KW_WITH); - this.state = 4512; + this.state = 4525; this.match(MySqlParser.KW_CONSISTENT); - this.state = 4513; + this.state = 4526; this.match(MySqlParser.KW_SNAPSHOT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4514; + this.state = 4527; this.match(MySqlParser.KW_READ); - this.state = 4515; + this.state = 4528; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4516; + this.state = 4529; this.match(MySqlParser.KW_READ); - this.state = 4517; + this.state = 4530; this.match(MySqlParser.KW_ONLY); } break; @@ -25491,34 +25600,34 @@ export class MySqlParser extends SQLParserBase { } public lockTableElement(): LockTableElementContext { let localContext = new LockTableElementContext(this.context, this.state); - this.enterRule(localContext, 346, MySqlParser.RULE_lockTableElement); + this.enterRule(localContext, 356, MySqlParser.RULE_lockTableElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4520; + this.state = 4533; this.tableName(); - this.state = 4525; + this.state = 4538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4522; + this.state = 4535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4521; + this.state = 4534; this.match(MySqlParser.KW_AS); } } - this.state = 4524; + this.state = 4537; localContext._alias = this.uid(); } } - this.state = 4527; + this.state = 4540; this.lockAction(); } } @@ -25538,23 +25647,23 @@ export class MySqlParser extends SQLParserBase { } public lockAction(): LockActionContext { let localContext = new LockActionContext(this.context, this.state); - this.enterRule(localContext, 348, MySqlParser.RULE_lockAction); + this.enterRule(localContext, 358, MySqlParser.RULE_lockAction); let _la: number; try { - this.state = 4537; + this.state = 4550; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 4529; + this.state = 4542; this.match(MySqlParser.KW_READ); - this.state = 4531; + this.state = 4544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 4530; + this.state = 4543; this.match(MySqlParser.KW_LOCAL); } } @@ -25565,17 +25674,17 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_WRITE: this.enterOuterAlt(localContext, 2); { - this.state = 4534; + this.state = 4547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 4533; + this.state = 4546; this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 4536; + this.state = 4549; this.match(MySqlParser.KW_WRITE); } break; @@ -25599,37 +25708,37 @@ export class MySqlParser extends SQLParserBase { } public transactionOption(): TransactionOptionContext { let localContext = new TransactionOptionContext(this.context, this.state); - this.enterRule(localContext, 350, MySqlParser.RULE_transactionOption); + this.enterRule(localContext, 360, MySqlParser.RULE_transactionOption); try { - this.state = 4546; + this.state = 4559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4539; + this.state = 4552; this.match(MySqlParser.KW_ISOLATION); - this.state = 4540; + this.state = 4553; this.match(MySqlParser.KW_LEVEL); - this.state = 4541; + this.state = 4554; this.transactionLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4542; + this.state = 4555; this.match(MySqlParser.KW_READ); - this.state = 4543; + this.state = 4556; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4544; + this.state = 4557; this.match(MySqlParser.KW_READ); - this.state = 4545; + this.state = 4558; this.match(MySqlParser.KW_ONLY); } break; @@ -25651,42 +25760,42 @@ export class MySqlParser extends SQLParserBase { } public transactionLevel(): TransactionLevelContext { let localContext = new TransactionLevelContext(this.context, this.state); - this.enterRule(localContext, 352, MySqlParser.RULE_transactionLevel); + this.enterRule(localContext, 362, MySqlParser.RULE_transactionLevel); try { - this.state = 4555; + this.state = 4568; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4548; + this.state = 4561; this.match(MySqlParser.KW_REPEATABLE); - this.state = 4549; + this.state = 4562; this.match(MySqlParser.KW_READ); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4550; + this.state = 4563; this.match(MySqlParser.KW_READ); - this.state = 4551; + this.state = 4564; this.match(MySqlParser.KW_COMMITTED); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4552; + this.state = 4565; this.match(MySqlParser.KW_READ); - this.state = 4553; + this.state = 4566; this.match(MySqlParser.KW_UNCOMMITTED); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4554; + this.state = 4567; this.match(MySqlParser.KW_SERIALIZABLE); } break; @@ -25708,41 +25817,41 @@ export class MySqlParser extends SQLParserBase { } public changeMaster(): ChangeMasterContext { let localContext = new ChangeMasterContext(this.context, this.state); - this.enterRule(localContext, 354, MySqlParser.RULE_changeMaster); + this.enterRule(localContext, 364, MySqlParser.RULE_changeMaster); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4557; + this.state = 4570; this.match(MySqlParser.KW_CHANGE); - this.state = 4558; + this.state = 4571; this.match(MySqlParser.KW_MASTER); - this.state = 4559; + this.state = 4572; this.match(MySqlParser.KW_TO); - this.state = 4560; + this.state = 4573; this.masterOption(); - this.state = 4565; + this.state = 4578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4561; + this.state = 4574; this.match(MySqlParser.COMMA); - this.state = 4562; + this.state = 4575; this.masterOption(); } } - this.state = 4567; + this.state = 4580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4569; + this.state = 4582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4568; + this.state = 4581; this.channelOption(); } } @@ -25765,41 +25874,41 @@ export class MySqlParser extends SQLParserBase { } public changeReplicationFilter(): ChangeReplicationFilterContext { let localContext = new ChangeReplicationFilterContext(this.context, this.state); - this.enterRule(localContext, 356, MySqlParser.RULE_changeReplicationFilter); + this.enterRule(localContext, 366, MySqlParser.RULE_changeReplicationFilter); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4571; + this.state = 4584; this.match(MySqlParser.KW_CHANGE); - this.state = 4572; + this.state = 4585; this.match(MySqlParser.KW_REPLICATION); - this.state = 4573; + this.state = 4586; this.match(MySqlParser.KW_FILTER); - this.state = 4574; + this.state = 4587; this.replicationFilter(); - this.state = 4579; + this.state = 4592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4575; + this.state = 4588; this.match(MySqlParser.COMMA); - this.state = 4576; + this.state = 4589; this.replicationFilter(); } } - this.state = 4581; + this.state = 4594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4583; + this.state = 4596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4582; + this.state = 4595; this.channelOption(); } } @@ -25822,43 +25931,43 @@ export class MySqlParser extends SQLParserBase { } public changeReplicationSource(): ChangeReplicationSourceContext { let localContext = new ChangeReplicationSourceContext(this.context, this.state); - this.enterRule(localContext, 358, MySqlParser.RULE_changeReplicationSource); + this.enterRule(localContext, 368, MySqlParser.RULE_changeReplicationSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4585; + this.state = 4598; this.match(MySqlParser.KW_CHANGE); - this.state = 4586; + this.state = 4599; this.match(MySqlParser.KW_REPLICATION); - this.state = 4587; + this.state = 4600; this.match(MySqlParser.KW_SOURCE); - this.state = 4588; + this.state = 4601; this.match(MySqlParser.KW_TO); - this.state = 4589; + this.state = 4602; this.replicationSourceOption(); - this.state = 4594; + this.state = 4607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4590; + this.state = 4603; this.match(MySqlParser.COMMA); - this.state = 4591; + this.state = 4604; this.replicationSourceOption(); } } - this.state = 4596; + this.state = 4609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4598; + this.state = 4611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4597; + this.state = 4610; this.channelOption(); } } @@ -25881,14 +25990,14 @@ export class MySqlParser extends SQLParserBase { } public purgeBinaryLogs(): PurgeBinaryLogsContext { let localContext = new PurgeBinaryLogsContext(this.context, this.state); - this.enterRule(localContext, 360, MySqlParser.RULE_purgeBinaryLogs); + this.enterRule(localContext, 370, MySqlParser.RULE_purgeBinaryLogs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4600; + this.state = 4613; this.match(MySqlParser.KW_PURGE); - this.state = 4601; + this.state = 4614; localContext._purgeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -25898,24 +26007,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4602; + this.state = 4615; this.match(MySqlParser.KW_LOGS); - this.state = 4607; + this.state = 4620; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 4603; + this.state = 4616; this.match(MySqlParser.KW_TO); - this.state = 4604; + this.state = 4617; localContext._fileName = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_BEFORE: { - this.state = 4605; + this.state = 4618; this.match(MySqlParser.KW_BEFORE); - this.state = 4606; + this.state = 4619; localContext._timeValue = this.match(MySqlParser.STRING_LITERAL); } break; @@ -25940,14 +26049,14 @@ export class MySqlParser extends SQLParserBase { } public startSlaveOrReplica(): StartSlaveOrReplicaContext { let localContext = new StartSlaveOrReplicaContext(this.context, this.state); - this.enterRule(localContext, 362, MySqlParser.RULE_startSlaveOrReplica); + this.enterRule(localContext, 372, MySqlParser.RULE_startSlaveOrReplica); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4609; + this.state = 4622; this.match(MySqlParser.KW_START); - this.state = 4610; + this.state = 4623; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -25956,64 +26065,64 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4619; + this.state = 4632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4611; + this.state = 4624; this.threadType(); - this.state = 4616; + this.state = 4629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4612; + this.state = 4625; this.match(MySqlParser.COMMA); - this.state = 4613; + this.state = 4626; this.threadType(); } } - this.state = 4618; + this.state = 4631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4623; + this.state = 4636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 4621; + this.state = 4634; this.match(MySqlParser.KW_UNTIL); - this.state = 4622; + this.state = 4635; this.untilOption(); } } - this.state = 4628; + this.state = 4641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 363 || _la === 529 || _la === 535 || _la === 678) { { { - this.state = 4625; + this.state = 4638; this.connectionOptions(); } } - this.state = 4630; + this.state = 4643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4632; + this.state = 4645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4631; + this.state = 4644; this.channelOption(); } } @@ -26036,14 +26145,14 @@ export class MySqlParser extends SQLParserBase { } public stopSlaveOrReplica(): StopSlaveOrReplicaContext { let localContext = new StopSlaveOrReplicaContext(this.context, this.state); - this.enterRule(localContext, 364, MySqlParser.RULE_stopSlaveOrReplica); + this.enterRule(localContext, 374, MySqlParser.RULE_stopSlaveOrReplica); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4634; + this.state = 4647; this.match(MySqlParser.KW_STOP); - this.state = 4635; + this.state = 4648; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -26052,38 +26161,38 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4644; + this.state = 4657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4636; + this.state = 4649; this.threadType(); - this.state = 4641; + this.state = 4654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4637; + this.state = 4650; this.match(MySqlParser.COMMA); - this.state = 4638; + this.state = 4651; this.threadType(); } } - this.state = 4643; + this.state = 4656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4647; + this.state = 4660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4646; + this.state = 4659; this.channelOption(); } } @@ -26106,57 +26215,57 @@ export class MySqlParser extends SQLParserBase { } public startGroupReplication(): StartGroupReplicationContext { let localContext = new StartGroupReplicationContext(this.context, this.state); - this.enterRule(localContext, 366, MySqlParser.RULE_startGroupReplication); + this.enterRule(localContext, 376, MySqlParser.RULE_startGroupReplication); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4649; + this.state = 4662; this.match(MySqlParser.KW_START); - this.state = 4650; + this.state = 4663; this.match(MySqlParser.KW_GROUP_REPLICATION); - this.state = 4654; + this.state = 4667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4651; + this.state = 4664; this.match(MySqlParser.KW_USER); - this.state = 4652; + this.state = 4665; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4653; + this.state = 4666; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 4660; + this.state = 4673; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 672, this.context) ) { case 1: { - this.state = 4656; + this.state = 4669; this.match(MySqlParser.COMMA); - this.state = 4657; + this.state = 4670; this.match(MySqlParser.KW_PASSWORD); - this.state = 4658; + this.state = 4671; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4659; + this.state = 4672; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 4666; + this.state = 4679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 4662; + this.state = 4675; this.match(MySqlParser.COMMA); - this.state = 4663; + this.state = 4676; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4664; + this.state = 4677; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4665; + this.state = 4678; this.match(MySqlParser.STRING_LITERAL); } } @@ -26179,13 +26288,13 @@ export class MySqlParser extends SQLParserBase { } public stopGroupReplication(): StopGroupReplicationContext { let localContext = new StopGroupReplicationContext(this.context, this.state); - this.enterRule(localContext, 368, MySqlParser.RULE_stopGroupReplication); + this.enterRule(localContext, 378, MySqlParser.RULE_stopGroupReplication); try { this.enterOuterAlt(localContext, 1); { - this.state = 4668; + this.state = 4681; this.match(MySqlParser.KW_STOP); - this.state = 4669; + this.state = 4682; this.match(MySqlParser.KW_GROUP_REPLICATION); } } @@ -26205,10 +26314,10 @@ export class MySqlParser extends SQLParserBase { } public masterOption(): MasterOptionContext { let localContext = new MasterOptionContext(this.context, this.state); - this.enterRule(localContext, 370, MySqlParser.RULE_masterOption); + this.enterRule(localContext, 380, MySqlParser.RULE_masterOption); let _la: number; try { - this.state = 4698; + this.state = 4711; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER_BIND: @@ -26232,11 +26341,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4671; + this.state = 4684; this.stringMasterOption(); - this.state = 4672; + this.state = 4685; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4673; + this.state = 4686; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26251,11 +26360,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4675; + this.state = 4688; this.decimalMasterOption(); - this.state = 4676; + this.state = 4689; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4677; + this.state = 4690; this.decimalLiteral(); } break; @@ -26269,11 +26378,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4679; + this.state = 4692; this.boolMasterOption(); - this.state = 4680; + this.state = 4693; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4681; + this.state = 4694; (localContext as MasterBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26291,7 +26400,7 @@ export class MySqlParser extends SQLParserBase { localContext = new V8AddMasterOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4683; + this.state = 4696; this.v8NewMasterOption(); } break; @@ -26299,39 +26408,39 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4684; + this.state = 4697; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4685; + this.state = 4698; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4686; + this.state = 4699; this.match(MySqlParser.LR_BRACKET); - this.state = 4695; + this.state = 4708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4687; + this.state = 4700; (localContext as MasterUidListOptionContext)._server_id = this.uid(); - this.state = 4692; + this.state = 4705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4688; + this.state = 4701; this.match(MySqlParser.COMMA); - this.state = 4689; + this.state = 4702; (localContext as MasterUidListOptionContext)._server_id = this.uid(); } } - this.state = 4694; + this.state = 4707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4697; + this.state = 4710; this.match(MySqlParser.RR_BRACKET); } break; @@ -26355,12 +26464,12 @@ export class MySqlParser extends SQLParserBase { } public stringMasterOption(): StringMasterOptionContext { let localContext = new StringMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 372, MySqlParser.RULE_stringMasterOption); + this.enterRule(localContext, 382, MySqlParser.RULE_stringMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4700; + this.state = 4713; _la = this.tokenStream.LA(1); if(!(_la === 108 || ((((_la - 455)) & ~0x1F) === 0 && ((1 << (_la - 455)) & 4190897) !== 0) || _la === 499 || _la === 557)) { this.errorHandler.recoverInline(this); @@ -26387,12 +26496,12 @@ export class MySqlParser extends SQLParserBase { } public decimalMasterOption(): DecimalMasterOptionContext { let localContext = new DecimalMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 374, MySqlParser.RULE_decimalMasterOption); + this.enterRule(localContext, 384, MySqlParser.RULE_decimalMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4702; + this.state = 4715; _la = this.tokenStream.LA(1); if(!(((((_la - 456)) & ~0x1F) === 0 && ((1 << (_la - 456)) & 2097831) !== 0) || _la === 558)) { this.errorHandler.recoverInline(this); @@ -26419,12 +26528,12 @@ export class MySqlParser extends SQLParserBase { } public boolMasterOption(): BoolMasterOptionContext { let localContext = new BoolMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 376, MySqlParser.RULE_boolMasterOption); + this.enterRule(localContext, 386, MySqlParser.RULE_boolMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4704; + this.state = 4717; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 411 || _la === 416 || _la === 454 || _la === 466 || _la === 573 || _la === 617)) { this.errorHandler.recoverInline(this); @@ -26451,20 +26560,20 @@ export class MySqlParser extends SQLParserBase { } public v8NewMasterOption(): V8NewMasterOptionContext { let localContext = new V8NewMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 378, MySqlParser.RULE_v8NewMasterOption); + this.enterRule(localContext, 388, MySqlParser.RULE_v8NewMasterOption); let _la: number; try { - this.state = 4719; + this.state = 4732; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4706; + this.state = 4719; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4707; + this.state = 4720; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4708; + this.state = 4721; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26478,11 +26587,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4709; + this.state = 4722; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4710; + this.state = 4723; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4711; + this.state = 4724; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26496,22 +26605,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4712; + this.state = 4725; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4713; + this.state = 4726; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4717; + this.state = 4730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4714; + this.state = 4727; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4715; + this.state = 4728; this.match(MySqlParser.KW_LOCAL); } break; @@ -26523,7 +26632,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4716; + this.state = 4729; this.gtuidSet(); } break; @@ -26552,10 +26661,10 @@ export class MySqlParser extends SQLParserBase { } public replicationSourceOption(): ReplicationSourceOptionContext { let localContext = new ReplicationSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 380, MySqlParser.RULE_replicationSourceOption); + this.enterRule(localContext, 390, MySqlParser.RULE_replicationSourceOption); let _la: number; try { - this.state = 4748; + this.state = 4761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NETWORK_NAMESPACE: @@ -26579,11 +26688,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4721; + this.state = 4734; this.stringSourceOption(); - this.state = 4722; + this.state = 4735; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4723; + this.state = 4736; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26598,11 +26707,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4725; + this.state = 4738; this.decimalSourceOption(); - this.state = 4726; + this.state = 4739; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4727; + this.state = 4740; this.decimalLiteral(); } break; @@ -26616,11 +26725,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4729; + this.state = 4742; this.boolSourceOption(); - this.state = 4730; + this.state = 4743; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4731; + this.state = 4744; (localContext as SourceBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26638,7 +26747,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceOtherOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4733; + this.state = 4746; this.otherSourceOption(); } break; @@ -26646,39 +26755,39 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4734; + this.state = 4747; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4735; + this.state = 4748; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4736; + this.state = 4749; this.match(MySqlParser.LR_BRACKET); - this.state = 4745; + this.state = 4758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4737; + this.state = 4750; (localContext as SourceUidListOptionContext)._server_id = this.uid(); - this.state = 4742; + this.state = 4755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4738; + this.state = 4751; this.match(MySqlParser.COMMA); - this.state = 4739; + this.state = 4752; (localContext as SourceUidListOptionContext)._server_id = this.uid(); } } - this.state = 4744; + this.state = 4757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4747; + this.state = 4760; this.match(MySqlParser.RR_BRACKET); } break; @@ -26702,12 +26811,12 @@ export class MySqlParser extends SQLParserBase { } public stringSourceOption(): StringSourceOptionContext { let localContext = new StringSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 382, MySqlParser.RULE_stringSourceOption); + this.enterRule(localContext, 392, MySqlParser.RULE_stringSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4750; + this.state = 4763; _la = this.tokenStream.LA(1); if(!(_la === 499 || _la === 557 || ((((_la - 606)) & ~0x1F) === 0 && ((1 << (_la - 606)) & 125771823) !== 0))) { this.errorHandler.recoverInline(this); @@ -26734,12 +26843,12 @@ export class MySqlParser extends SQLParserBase { } public decimalSourceOption(): DecimalSourceOptionContext { let localContext = new DecimalSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 384, MySqlParser.RULE_decimalSourceOption); + this.enterRule(localContext, 394, MySqlParser.RULE_decimalSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4752; + this.state = 4765; _la = this.tokenStream.LA(1); if(!(_la === 558 || ((((_la - 610)) & ~0x1F) === 0 && ((1 << (_la - 610)) & 1397) !== 0))) { this.errorHandler.recoverInline(this); @@ -26766,12 +26875,12 @@ export class MySqlParser extends SQLParserBase { } public boolSourceOption(): BoolSourceOptionContext { let localContext = new BoolSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 386, MySqlParser.RULE_boolSourceOption); + this.enterRule(localContext, 396, MySqlParser.RULE_boolSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4754; + this.state = 4767; _la = this.tokenStream.LA(1); if(!(_la === 412 || _la === 416 || _la === 573 || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 65809) !== 0))) { this.errorHandler.recoverInline(this); @@ -26798,20 +26907,20 @@ export class MySqlParser extends SQLParserBase { } public otherSourceOption(): OtherSourceOptionContext { let localContext = new OtherSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 388, MySqlParser.RULE_otherSourceOption); + this.enterRule(localContext, 398, MySqlParser.RULE_otherSourceOption); let _la: number; try { - this.state = 4769; + this.state = 4782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4756; + this.state = 4769; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4757; + this.state = 4770; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4758; + this.state = 4771; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26825,11 +26934,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4759; + this.state = 4772; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4760; + this.state = 4773; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4761; + this.state = 4774; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26843,22 +26952,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4762; + this.state = 4775; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4763; + this.state = 4776; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4767; + this.state = 4780; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4764; + this.state = 4777; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4765; + this.state = 4778; this.match(MySqlParser.KW_LOCAL); } break; @@ -26870,7 +26979,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4766; + this.state = 4779; this.gtuidSet(); } break; @@ -26899,15 +27008,15 @@ export class MySqlParser extends SQLParserBase { } public channelOption(): ChannelOptionContext { let localContext = new ChannelOptionContext(this.context, this.state); - this.enterRule(localContext, 390, MySqlParser.RULE_channelOption); + this.enterRule(localContext, 400, MySqlParser.RULE_channelOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 4771; + this.state = 4784; this.match(MySqlParser.KW_FOR); - this.state = 4772; + this.state = 4785; this.match(MySqlParser.KW_CHANNEL); - this.state = 4773; + this.state = 4786; this.match(MySqlParser.STRING_LITERAL); } } @@ -26927,41 +27036,41 @@ export class MySqlParser extends SQLParserBase { } public replicationFilter(): ReplicationFilterContext { let localContext = new ReplicationFilterContext(this.context, this.state); - this.enterRule(localContext, 392, MySqlParser.RULE_replicationFilter); + this.enterRule(localContext, 402, MySqlParser.RULE_replicationFilter); let _la: number; try { - this.state = 4838; + this.state = 4851; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_REPLICATE_DO_DB: localContext = new DoDbReplicationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4775; + this.state = 4788; this.match(MySqlParser.KW_REPLICATE_DO_DB); - this.state = 4776; + this.state = 4789; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4777; + this.state = 4790; this.match(MySqlParser.LR_BRACKET); - this.state = 4778; + this.state = 4791; this.databaseName(); - this.state = 4783; + this.state = 4796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4779; + this.state = 4792; this.match(MySqlParser.COMMA); - this.state = 4780; + this.state = 4793; this.databaseName(); } } - this.state = 4785; + this.state = 4798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4786; + this.state = 4799; this.match(MySqlParser.RR_BRACKET); } break; @@ -26969,31 +27078,31 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreDbReplicationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4788; + this.state = 4801; this.match(MySqlParser.KW_REPLICATE_IGNORE_DB); - this.state = 4789; + this.state = 4802; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4790; + this.state = 4803; this.match(MySqlParser.LR_BRACKET); - this.state = 4791; + this.state = 4804; this.databaseName(); - this.state = 4796; + this.state = 4809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4792; + this.state = 4805; this.match(MySqlParser.COMMA); - this.state = 4793; + this.state = 4806; this.databaseName(); } } - this.state = 4798; + this.state = 4811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4799; + this.state = 4812; this.match(MySqlParser.RR_BRACKET); } break; @@ -27001,15 +27110,15 @@ export class MySqlParser extends SQLParserBase { localContext = new DoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4801; + this.state = 4814; this.match(MySqlParser.KW_REPLICATE_DO_TABLE); - this.state = 4802; + this.state = 4815; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4803; + this.state = 4816; this.match(MySqlParser.LR_BRACKET); - this.state = 4804; + this.state = 4817; this.tableNames(); - this.state = 4805; + this.state = 4818; this.match(MySqlParser.RR_BRACKET); } break; @@ -27017,15 +27126,15 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4807; + this.state = 4820; this.match(MySqlParser.KW_REPLICATE_IGNORE_TABLE); - this.state = 4808; + this.state = 4821; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4809; + this.state = 4822; this.match(MySqlParser.LR_BRACKET); - this.state = 4810; + this.state = 4823; this.tableNames(); - this.state = 4811; + this.state = 4824; this.match(MySqlParser.RR_BRACKET); } break; @@ -27033,15 +27142,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildDoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4813; + this.state = 4826; this.match(MySqlParser.KW_REPLICATE_WILD_DO_TABLE); - this.state = 4814; + this.state = 4827; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4815; + this.state = 4828; this.match(MySqlParser.LR_BRACKET); - this.state = 4816; + this.state = 4829; this.simpleStrings(); - this.state = 4817; + this.state = 4830; this.match(MySqlParser.RR_BRACKET); } break; @@ -27049,15 +27158,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildIgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4819; + this.state = 4832; this.match(MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE); - this.state = 4820; + this.state = 4833; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4821; + this.state = 4834; this.match(MySqlParser.LR_BRACKET); - this.state = 4822; + this.state = 4835; this.simpleStrings(); - this.state = 4823; + this.state = 4836; this.match(MySqlParser.RR_BRACKET); } break; @@ -27065,31 +27174,31 @@ export class MySqlParser extends SQLParserBase { localContext = new RewriteDbReplicationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 4825; + this.state = 4838; this.match(MySqlParser.KW_REPLICATE_REWRITE_DB); - this.state = 4826; + this.state = 4839; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4827; + this.state = 4840; this.match(MySqlParser.LR_BRACKET); - this.state = 4828; + this.state = 4841; this.tablePair(); - this.state = 4833; + this.state = 4846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4829; + this.state = 4842; this.match(MySqlParser.COMMA); - this.state = 4830; + this.state = 4843; this.tablePair(); } } - this.state = 4835; + this.state = 4848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4836; + this.state = 4849; this.match(MySqlParser.RR_BRACKET); } break; @@ -27113,19 +27222,19 @@ export class MySqlParser extends SQLParserBase { } public tablePair(): TablePairContext { let localContext = new TablePairContext(this.context, this.state); - this.enterRule(localContext, 394, MySqlParser.RULE_tablePair); + this.enterRule(localContext, 404, MySqlParser.RULE_tablePair); try { this.enterOuterAlt(localContext, 1); { - this.state = 4840; + this.state = 4853; this.match(MySqlParser.LR_BRACKET); - this.state = 4841; + this.state = 4854; localContext._firstTable = this.tableName(); - this.state = 4842; + this.state = 4855; this.match(MySqlParser.COMMA); - this.state = 4843; + this.state = 4856; localContext._secondTable = this.tableName(); - this.state = 4844; + this.state = 4857; this.match(MySqlParser.RR_BRACKET); } } @@ -27145,12 +27254,12 @@ export class MySqlParser extends SQLParserBase { } public threadType(): ThreadTypeContext { let localContext = new ThreadTypeContext(this.context, this.state); - this.enterRule(localContext, 396, MySqlParser.RULE_threadType); + this.enterRule(localContext, 406, MySqlParser.RULE_threadType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4846; + this.state = 4859; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 639)) { this.errorHandler.recoverInline(this); @@ -27177,10 +27286,10 @@ export class MySqlParser extends SQLParserBase { } public untilOption(): UntilOptionContext { let localContext = new UntilOptionContext(this.context, this.state); - this.enterRule(localContext, 398, MySqlParser.RULE_untilOption); + this.enterRule(localContext, 408, MySqlParser.RULE_untilOption); let _la: number; try { - this.state = 4873; + this.state = 4886; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQL_AFTER_GTIDS: @@ -27188,7 +27297,7 @@ export class MySqlParser extends SQLParserBase { localContext = new GtidsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4848; + this.state = 4861; (localContext as GtidsUntilOptionContext)._gtids = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 633 || _la === 635)) { @@ -27198,9 +27307,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4849; + this.state = 4862; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4850; + this.state = 4863; this.gtuidSet(); } break; @@ -27208,19 +27317,19 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4851; + this.state = 4864; this.match(MySqlParser.KW_MASTER_LOG_FILE); - this.state = 4852; + this.state = 4865; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4853; + this.state = 4866; this.match(MySqlParser.STRING_LITERAL); - this.state = 4854; + this.state = 4867; this.match(MySqlParser.COMMA); - this.state = 4855; + this.state = 4868; this.match(MySqlParser.KW_MASTER_LOG_POS); - this.state = 4856; + this.state = 4869; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4857; + this.state = 4870; this.decimalLiteral(); } break; @@ -27228,19 +27337,19 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4858; + this.state = 4871; this.match(MySqlParser.KW_SOURCE_LOG_FILE); - this.state = 4859; + this.state = 4872; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4860; + this.state = 4873; this.match(MySqlParser.STRING_LITERAL); - this.state = 4861; + this.state = 4874; this.match(MySqlParser.COMMA); - this.state = 4862; + this.state = 4875; this.match(MySqlParser.KW_SOURCE_LOG_POS); - this.state = 4863; + this.state = 4876; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4864; + this.state = 4877; this.decimalLiteral(); } break; @@ -27248,19 +27357,19 @@ export class MySqlParser extends SQLParserBase { localContext = new RelayLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4865; + this.state = 4878; this.match(MySqlParser.KW_RELAY_LOG_FILE); - this.state = 4866; + this.state = 4879; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4867; + this.state = 4880; this.match(MySqlParser.STRING_LITERAL); - this.state = 4868; + this.state = 4881; this.match(MySqlParser.COMMA); - this.state = 4869; + this.state = 4882; this.match(MySqlParser.KW_RELAY_LOG_POS); - this.state = 4870; + this.state = 4883; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4871; + this.state = 4884; this.decimalLiteral(); } break; @@ -27268,7 +27377,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SqlGapsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4872; + this.state = 4885; this.match(MySqlParser.KW_SQL_AFTER_MTS_GAPS); } break; @@ -27292,20 +27401,20 @@ export class MySqlParser extends SQLParserBase { } public connectionOptions(): ConnectionOptionsContext { let localContext = new ConnectionOptionsContext(this.context, this.state); - this.enterRule(localContext, 400, MySqlParser.RULE_connectionOptions); + this.enterRule(localContext, 410, MySqlParser.RULE_connectionOptions); try { - this.state = 4887; + this.state = 4900; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_USER: localContext = new UserConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4875; + this.state = 4888; this.match(MySqlParser.KW_USER); - this.state = 4876; + this.state = 4889; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4877; + this.state = 4890; (localContext as UserConnectionOptionContext)._conOptUser = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27313,11 +27422,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4878; + this.state = 4891; this.match(MySqlParser.KW_PASSWORD); - this.state = 4879; + this.state = 4892; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4880; + this.state = 4893; (localContext as PasswordConnectionOptionContext)._conOptPassword = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27325,11 +27434,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultAuthConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4881; + this.state = 4894; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4882; + this.state = 4895; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4883; + this.state = 4896; (localContext as DefaultAuthConnectionOptionContext)._conOptDefAuth = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27337,11 +27446,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PluginDirConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4884; + this.state = 4897; this.match(MySqlParser.KW_PLUGIN_DIR); - this.state = 4885; + this.state = 4898; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4886; + this.state = 4899; (localContext as PluginDirConnectionOptionContext)._conOptPluginDir = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27365,10 +27474,10 @@ export class MySqlParser extends SQLParserBase { } public gtuidSet(): GtuidSetContext { let localContext = new GtuidSetContext(this.context, this.state); - this.enterRule(localContext, 402, MySqlParser.RULE_gtuidSet); + this.enterRule(localContext, 412, MySqlParser.RULE_gtuidSet); try { let alternative: number; - this.state = 4898; + this.state = 4911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -27379,32 +27488,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4889; + this.state = 4902; this.uuidSet(); - this.state = 4894; + this.state = 4907; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 691, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4890; + this.state = 4903; this.match(MySqlParser.COMMA); - this.state = 4891; + this.state = 4904; this.uuidSet(); } } } - this.state = 4896; + this.state = 4909; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 691, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); } } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 4897; + this.state = 4910; this.match(MySqlParser.STRING_LITERAL); } break; @@ -27428,14 +27537,14 @@ export class MySqlParser extends SQLParserBase { } public xaStartTransaction(): XaStartTransactionContext { let localContext = new XaStartTransactionContext(this.context, this.state); - this.enterRule(localContext, 404, MySqlParser.RULE_xaStartTransaction); + this.enterRule(localContext, 414, MySqlParser.RULE_xaStartTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4900; + this.state = 4913; this.match(MySqlParser.KW_XA); - this.state = 4901; + this.state = 4914; localContext._xaStart = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 317 || _la === 640)) { @@ -27445,14 +27554,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4902; + this.state = 4915; this.xid(); - this.state = 4904; + this.state = 4917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 577) { { - this.state = 4903; + this.state = 4916; localContext._xaAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 577)) { @@ -27483,32 +27592,32 @@ export class MySqlParser extends SQLParserBase { } public xaEndTransaction(): XaEndTransactionContext { let localContext = new XaEndTransactionContext(this.context, this.state); - this.enterRule(localContext, 406, MySqlParser.RULE_xaEndTransaction); + this.enterRule(localContext, 416, MySqlParser.RULE_xaEndTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4906; + this.state = 4919; this.match(MySqlParser.KW_XA); - this.state = 4907; + this.state = 4920; this.match(MySqlParser.KW_END); - this.state = 4908; + this.state = 4921; this.xid(); - this.state = 4914; + this.state = 4927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 654) { { - this.state = 4909; + this.state = 4922; this.match(MySqlParser.KW_SUSPEND); - this.state = 4912; + this.state = 4925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4910; + this.state = 4923; this.match(MySqlParser.KW_FOR); - this.state = 4911; + this.state = 4924; this.match(MySqlParser.KW_MIGRATE); } } @@ -27534,15 +27643,15 @@ export class MySqlParser extends SQLParserBase { } public xaPrepareStatement(): XaPrepareStatementContext { let localContext = new XaPrepareStatementContext(this.context, this.state); - this.enterRule(localContext, 408, MySqlParser.RULE_xaPrepareStatement); + this.enterRule(localContext, 418, MySqlParser.RULE_xaPrepareStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4916; + this.state = 4929; this.match(MySqlParser.KW_XA); - this.state = 4917; + this.state = 4930; this.match(MySqlParser.KW_PREPARE); - this.state = 4918; + this.state = 4931; this.xid(); } } @@ -27562,25 +27671,25 @@ export class MySqlParser extends SQLParserBase { } public xaCommitWork(): XaCommitWorkContext { let localContext = new XaCommitWorkContext(this.context, this.state); - this.enterRule(localContext, 410, MySqlParser.RULE_xaCommitWork); + this.enterRule(localContext, 420, MySqlParser.RULE_xaCommitWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4920; + this.state = 4933; this.match(MySqlParser.KW_XA); - this.state = 4921; + this.state = 4934; this.match(MySqlParser.KW_COMMIT); - this.state = 4922; + this.state = 4935; this.xid(); - this.state = 4925; + this.state = 4938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 4923; + this.state = 4936; this.match(MySqlParser.KW_ONE); - this.state = 4924; + this.state = 4937; this.match(MySqlParser.KW_PHASE); } } @@ -27603,15 +27712,15 @@ export class MySqlParser extends SQLParserBase { } public xaRollbackWork(): XaRollbackWorkContext { let localContext = new XaRollbackWorkContext(this.context, this.state); - this.enterRule(localContext, 412, MySqlParser.RULE_xaRollbackWork); + this.enterRule(localContext, 422, MySqlParser.RULE_xaRollbackWork); try { this.enterOuterAlt(localContext, 1); { - this.state = 4927; + this.state = 4940; this.match(MySqlParser.KW_XA); - this.state = 4928; + this.state = 4941; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4929; + this.state = 4942; this.xid(); } } @@ -27631,23 +27740,23 @@ export class MySqlParser extends SQLParserBase { } public xaRecoverWork(): XaRecoverWorkContext { let localContext = new XaRecoverWorkContext(this.context, this.state); - this.enterRule(localContext, 414, MySqlParser.RULE_xaRecoverWork); + this.enterRule(localContext, 424, MySqlParser.RULE_xaRecoverWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4931; + this.state = 4944; this.match(MySqlParser.KW_XA); - this.state = 4932; + this.state = 4945; this.match(MySqlParser.KW_RECOVER); - this.state = 4935; + this.state = 4948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 4933; + this.state = 4946; this.match(MySqlParser.KW_CONVERT); - this.state = 4934; + this.state = 4947; this.xid(); } } @@ -27670,28 +27779,28 @@ export class MySqlParser extends SQLParserBase { } public prepareStatement(): PrepareStatementContext { let localContext = new PrepareStatementContext(this.context, this.state); - this.enterRule(localContext, 416, MySqlParser.RULE_prepareStatement); + this.enterRule(localContext, 426, MySqlParser.RULE_prepareStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4937; + this.state = 4950; this.match(MySqlParser.KW_PREPARE); - this.state = 4938; + this.state = 4951; localContext._stmt_name = this.uid(); - this.state = 4939; + this.state = 4952; this.match(MySqlParser.KW_FROM); - this.state = 4942; + this.state = 4955; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 4940; + this.state = 4953; localContext._query = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.LOCAL_ID: { - this.state = 4941; + this.state = 4954; localContext._variable = this.match(MySqlParser.LOCAL_ID); } break; @@ -27716,23 +27825,23 @@ export class MySqlParser extends SQLParserBase { } public executeStatement(): ExecuteStatementContext { let localContext = new ExecuteStatementContext(this.context, this.state); - this.enterRule(localContext, 418, MySqlParser.RULE_executeStatement); + this.enterRule(localContext, 428, MySqlParser.RULE_executeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4944; + this.state = 4957; this.match(MySqlParser.KW_EXECUTE); - this.state = 4945; + this.state = 4958; localContext._stmt_name = this.uid(); - this.state = 4948; + this.state = 4961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 4946; + this.state = 4959; this.match(MySqlParser.KW_USING); - this.state = 4947; + this.state = 4960; this.userVariables(); } } @@ -27755,12 +27864,12 @@ export class MySqlParser extends SQLParserBase { } public deallocatePrepare(): DeallocatePrepareContext { let localContext = new DeallocatePrepareContext(this.context, this.state); - this.enterRule(localContext, 420, MySqlParser.RULE_deallocatePrepare); + this.enterRule(localContext, 430, MySqlParser.RULE_deallocatePrepare); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4950; + this.state = 4963; localContext._dropFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 51 || _la === 362)) { @@ -27770,9 +27879,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4951; + this.state = 4964; this.match(MySqlParser.KW_PREPARE); - this.state = 4952; + this.state = 4965; localContext._stmt_name = this.uid(); } } @@ -27792,22 +27901,22 @@ export class MySqlParser extends SQLParserBase { } public routineBody(): RoutineBodyContext { let localContext = new RoutineBodyContext(this.context, this.state); - this.enterRule(localContext, 422, MySqlParser.RULE_routineBody); + this.enterRule(localContext, 432, MySqlParser.RULE_routineBody); try { - this.state = 4956; + this.state = 4969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 700, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 699, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4954; + this.state = 4967; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4955; + this.state = 4968; this.sqlStatement(); } break; @@ -27829,120 +27938,120 @@ export class MySqlParser extends SQLParserBase { } public blockStatement(): BlockStatementContext { let localContext = new BlockStatementContext(this.context, this.state); - this.enterRule(localContext, 424, MySqlParser.RULE_blockStatement); + this.enterRule(localContext, 434, MySqlParser.RULE_blockStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4961; + this.state = 4974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 700, this.context) ) { case 1: { - this.state = 4958; + this.state = 4971; localContext._begin = this.uid(); - this.state = 4959; + this.state = 4972; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4963; + this.state = 4976; this.match(MySqlParser.KW_BEGIN); - this.state = 4969; + this.state = 4982; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 701, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4964; + this.state = 4977; this.declareVariable(); - this.state = 4965; + this.state = 4978; this.match(MySqlParser.SEMI); } } } - this.state = 4971; + this.state = 4984; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 701, this.context); } - this.state = 4977; + this.state = 4990; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4972; + this.state = 4985; this.declareCondition(); - this.state = 4973; + this.state = 4986; this.match(MySqlParser.SEMI); } } } - this.state = 4979; + this.state = 4992; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); } - this.state = 4985; + this.state = 4998; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4980; + this.state = 4993; this.declareCursor(); - this.state = 4981; + this.state = 4994; this.match(MySqlParser.SEMI); } } } - this.state = 4987; + this.state = 5000; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); } - this.state = 4993; + this.state = 5006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 41) { { { - this.state = 4988; + this.state = 5001; this.declareHandler(); - this.state = 4989; + this.state = 5002; this.match(MySqlParser.SEMI); } } - this.state = 4995; + this.state = 5008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4999; + this.state = 5012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 706, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4996; + this.state = 5009; this.procedureSqlStatement(); } } } - this.state = 5001; + this.state = 5014; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 706, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); } - this.state = 5002; + this.state = 5015; this.match(MySqlParser.KW_END); - this.state = 5004; + this.state = 5017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 706, this.context) ) { case 1: { - this.state = 5003; + this.state = 5016; localContext._end = this.uid(); } break; @@ -27965,52 +28074,52 @@ export class MySqlParser extends SQLParserBase { } public caseStatement(): CaseStatementContext { let localContext = new CaseStatementContext(this.context, this.state); - this.enterRule(localContext, 426, MySqlParser.RULE_caseStatement); + this.enterRule(localContext, 436, MySqlParser.RULE_caseStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5006; + this.state = 5019; this.match(MySqlParser.KW_CASE); - this.state = 5009; + this.state = 5022; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: { - this.state = 5007; + this.state = 5020; localContext._case_value = this.uid(); } break; case 2: { - this.state = 5008; + this.state = 5021; this.expression(0); } break; } - this.state = 5012; + this.state = 5025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5011; + this.state = 5024; this.caseAlternative(); } } - this.state = 5014; + this.state = 5027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 5022; + this.state = 5035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5016; + this.state = 5029; this.match(MySqlParser.KW_ELSE); - this.state = 5018; + this.state = 5031; this.errorHandler.sync(this); alternative = 1; do { @@ -28018,7 +28127,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5017; + this.state = 5030; this.procedureSqlStatement(); } } @@ -28026,16 +28135,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5020; + this.state = 5033; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 710, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 709, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5024; + this.state = 5037; this.match(MySqlParser.KW_END); - this.state = 5025; + this.state = 5038; this.match(MySqlParser.KW_CASE); } } @@ -28055,19 +28164,19 @@ export class MySqlParser extends SQLParserBase { } public ifStatement(): IfStatementContext { let localContext = new IfStatementContext(this.context, this.state); - this.enterRule(localContext, 428, MySqlParser.RULE_ifStatement); + this.enterRule(localContext, 438, MySqlParser.RULE_ifStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5027; + this.state = 5040; this.match(MySqlParser.KW_IF); - this.state = 5028; + this.state = 5041; this.expression(0); - this.state = 5029; + this.state = 5042; this.match(MySqlParser.KW_THEN); - this.state = 5031; + this.state = 5044; this.errorHandler.sync(this); alternative = 1; do { @@ -28075,7 +28184,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5030; + this.state = 5043; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._thenStatements.push(localContext._procedureSqlStatement); } @@ -28084,32 +28193,32 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5033; + this.state = 5046; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 712, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5038; + this.state = 5051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 5035; + this.state = 5048; this.elseIfAlternative(); } } - this.state = 5040; + this.state = 5053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5047; + this.state = 5060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5041; + this.state = 5054; this.match(MySqlParser.KW_ELSE); - this.state = 5043; + this.state = 5056; this.errorHandler.sync(this); alternative = 1; do { @@ -28117,7 +28226,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5042; + this.state = 5055; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._elseStatements.push(localContext._procedureSqlStatement); } @@ -28126,16 +28235,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5045; + this.state = 5058; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 714, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 713, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5049; + this.state = 5062; this.match(MySqlParser.KW_END); - this.state = 5050; + this.state = 5063; this.match(MySqlParser.KW_IF); } } @@ -28155,13 +28264,13 @@ export class MySqlParser extends SQLParserBase { } public iterateStatement(): IterateStatementContext { let localContext = new IterateStatementContext(this.context, this.state); - this.enterRule(localContext, 430, MySqlParser.RULE_iterateStatement); + this.enterRule(localContext, 440, MySqlParser.RULE_iterateStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5052; + this.state = 5065; this.match(MySqlParser.KW_ITERATE); - this.state = 5053; + this.state = 5066; localContext._label = this.uid(); } } @@ -28181,13 +28290,13 @@ export class MySqlParser extends SQLParserBase { } public leaveStatement(): LeaveStatementContext { let localContext = new LeaveStatementContext(this.context, this.state); - this.enterRule(localContext, 432, MySqlParser.RULE_leaveStatement); + this.enterRule(localContext, 442, MySqlParser.RULE_leaveStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5055; + this.state = 5068; this.match(MySqlParser.KW_LEAVE); - this.state = 5056; + this.state = 5069; localContext._label = this.uid(); } } @@ -28207,27 +28316,27 @@ export class MySqlParser extends SQLParserBase { } public loopStatement(): LoopStatementContext { let localContext = new LoopStatementContext(this.context, this.state); - this.enterRule(localContext, 434, MySqlParser.RULE_loopStatement); + this.enterRule(localContext, 444, MySqlParser.RULE_loopStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5061; + this.state = 5074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5058; + this.state = 5071; localContext._begin_label = this.uid(); - this.state = 5059; + this.state = 5072; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5063; + this.state = 5076; this.match(MySqlParser.KW_LOOP); - this.state = 5065; + this.state = 5078; this.errorHandler.sync(this); alternative = 1; do { @@ -28235,7 +28344,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5064; + this.state = 5077; this.procedureSqlStatement(); } } @@ -28243,20 +28352,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5067; + this.state = 5080; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 717, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 716, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5069; + this.state = 5082; this.match(MySqlParser.KW_END); - this.state = 5070; + this.state = 5083; this.match(MySqlParser.KW_LOOP); - this.state = 5072; + this.state = 5085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5071; + this.state = 5084; localContext._end_label = this.uid(); } } @@ -28279,27 +28388,27 @@ export class MySqlParser extends SQLParserBase { } public repeatStatement(): RepeatStatementContext { let localContext = new RepeatStatementContext(this.context, this.state); - this.enterRule(localContext, 436, MySqlParser.RULE_repeatStatement); + this.enterRule(localContext, 446, MySqlParser.RULE_repeatStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5077; + this.state = 5090; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: { - this.state = 5074; + this.state = 5087; localContext._begin_label = this.uid(); - this.state = 5075; + this.state = 5088; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 5079; + this.state = 5092; this.match(MySqlParser.KW_REPEAT); - this.state = 5081; + this.state = 5094; this.errorHandler.sync(this); alternative = 1; do { @@ -28307,7 +28416,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5080; + this.state = 5093; this.procedureSqlStatement(); } } @@ -28315,24 +28424,24 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5083; + this.state = 5096; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 720, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 719, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5085; + this.state = 5098; this.match(MySqlParser.KW_UNTIL); - this.state = 5086; + this.state = 5099; this.expression(0); - this.state = 5087; + this.state = 5100; this.match(MySqlParser.KW_END); - this.state = 5088; + this.state = 5101; this.match(MySqlParser.KW_REPEAT); - this.state = 5090; + this.state = 5103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5089; + this.state = 5102; localContext._end_label = this.uid(); } } @@ -28355,13 +28464,13 @@ export class MySqlParser extends SQLParserBase { } public returnStatement(): ReturnStatementContext { let localContext = new ReturnStatementContext(this.context, this.state); - this.enterRule(localContext, 438, MySqlParser.RULE_returnStatement); + this.enterRule(localContext, 448, MySqlParser.RULE_returnStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5092; + this.state = 5105; this.match(MySqlParser.KW_RETURN); - this.state = 5093; + this.state = 5106; this.expression(0); } } @@ -28381,31 +28490,31 @@ export class MySqlParser extends SQLParserBase { } public whileStatement(): WhileStatementContext { let localContext = new WhileStatementContext(this.context, this.state); - this.enterRule(localContext, 440, MySqlParser.RULE_whileStatement); + this.enterRule(localContext, 450, MySqlParser.RULE_whileStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5098; + this.state = 5111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5095; + this.state = 5108; localContext._begin_label = this.uid(); - this.state = 5096; + this.state = 5109; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5100; + this.state = 5113; this.match(MySqlParser.KW_WHILE); - this.state = 5101; + this.state = 5114; this.expression(0); - this.state = 5102; + this.state = 5115; this.match(MySqlParser.KW_DO); - this.state = 5104; + this.state = 5117; this.errorHandler.sync(this); alternative = 1; do { @@ -28413,7 +28522,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5103; + this.state = 5116; this.procedureSqlStatement(); } } @@ -28421,20 +28530,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5106; + this.state = 5119; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 723, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 722, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5108; + this.state = 5121; this.match(MySqlParser.KW_END); - this.state = 5109; + this.state = 5122; this.match(MySqlParser.KW_WHILE); - this.state = 5111; + this.state = 5124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5110; + this.state = 5123; localContext._end_label = this.uid(); } } @@ -28457,19 +28566,19 @@ export class MySqlParser extends SQLParserBase { } public cursorStatement(): CursorStatementContext { let localContext = new CursorStatementContext(this.context, this.state); - this.enterRule(localContext, 442, MySqlParser.RULE_cursorStatement); + this.enterRule(localContext, 452, MySqlParser.RULE_cursorStatement); let _la: number; try { - this.state = 5128; + this.state = 5141; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CLOSE: localContext = new CloseCursorContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5113; + this.state = 5126; this.match(MySqlParser.KW_CLOSE); - this.state = 5114; + this.state = 5127; (localContext as CloseCursorContext)._cursor_name = this.uid(); } break; @@ -28477,33 +28586,33 @@ export class MySqlParser extends SQLParserBase { localContext = new FetchCursorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5115; + this.state = 5128; this.match(MySqlParser.KW_FETCH); - this.state = 5120; + this.state = 5133; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 726, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { case 1: { - this.state = 5117; + this.state = 5130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 501) { { - this.state = 5116; + this.state = 5129; this.match(MySqlParser.KW_NEXT); } } - this.state = 5119; + this.state = 5132; this.match(MySqlParser.KW_FROM); } break; } - this.state = 5122; + this.state = 5135; (localContext as FetchCursorContext)._cursor_name = this.uid(); - this.state = 5123; + this.state = 5136; this.match(MySqlParser.KW_INTO); - this.state = 5124; + this.state = 5137; (localContext as FetchCursorContext)._var_names = this.uidList(); } break; @@ -28511,9 +28620,9 @@ export class MySqlParser extends SQLParserBase { localContext = new OpenCursorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5126; + this.state = 5139; this.match(MySqlParser.KW_OPEN); - this.state = 5127; + this.state = 5140; (localContext as OpenCursorContext)._cursor_name = this.uid(); } break; @@ -28537,25 +28646,25 @@ export class MySqlParser extends SQLParserBase { } public declareVariable(): DeclareVariableContext { let localContext = new DeclareVariableContext(this.context, this.state); - this.enterRule(localContext, 444, MySqlParser.RULE_declareVariable); + this.enterRule(localContext, 454, MySqlParser.RULE_declareVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5130; + this.state = 5143; this.match(MySqlParser.KW_DECLARE); - this.state = 5131; + this.state = 5144; localContext._var_names = this.uidList(); - this.state = 5132; + this.state = 5145; this.dataType(); - this.state = 5135; + this.state = 5148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5133; + this.state = 5146; this.match(MySqlParser.KW_DEFAULT); - this.state = 5134; + this.state = 5147; this.expression(0); } } @@ -28578,20 +28687,20 @@ export class MySqlParser extends SQLParserBase { } public declareCondition(): DeclareConditionContext { let localContext = new DeclareConditionContext(this.context, this.state); - this.enterRule(localContext, 446, MySqlParser.RULE_declareCondition); + this.enterRule(localContext, 456, MySqlParser.RULE_declareCondition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5137; + this.state = 5150; this.match(MySqlParser.KW_DECLARE); - this.state = 5138; + this.state = 5151; localContext._condition_name = this.uid(); - this.state = 5139; + this.state = 5152; this.match(MySqlParser.KW_CONDITION); - this.state = 5140; + this.state = 5153; this.match(MySqlParser.KW_FOR); - this.state = 5147; + this.state = 5160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28601,25 +28710,25 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5141; + this.state = 5154; this.decimalLiteral(); } break; case MySqlParser.KW_SQLSTATE: { - this.state = 5142; + this.state = 5155; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5144; + this.state = 5157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5143; + this.state = 5156; this.match(MySqlParser.KW_VALUE); } } - this.state = 5146; + this.state = 5159; this.match(MySqlParser.STRING_LITERAL); } break; @@ -28644,19 +28753,19 @@ export class MySqlParser extends SQLParserBase { } public declareCursor(): DeclareCursorContext { let localContext = new DeclareCursorContext(this.context, this.state); - this.enterRule(localContext, 448, MySqlParser.RULE_declareCursor); + this.enterRule(localContext, 458, MySqlParser.RULE_declareCursor); try { this.enterOuterAlt(localContext, 1); { - this.state = 5149; + this.state = 5162; this.match(MySqlParser.KW_DECLARE); - this.state = 5150; + this.state = 5163; localContext._condition_name = this.uid(); - this.state = 5151; + this.state = 5164; this.match(MySqlParser.KW_CURSOR); - this.state = 5152; + this.state = 5165; this.match(MySqlParser.KW_FOR); - this.state = 5153; + this.state = 5166; this.selectStatement(); } } @@ -28676,14 +28785,14 @@ export class MySqlParser extends SQLParserBase { } public declareHandler(): DeclareHandlerContext { let localContext = new DeclareHandlerContext(this.context, this.state); - this.enterRule(localContext, 450, MySqlParser.RULE_declareHandler); + this.enterRule(localContext, 460, MySqlParser.RULE_declareHandler); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5155; + this.state = 5168; this.match(MySqlParser.KW_DECLARE); - this.state = 5156; + this.state = 5169; localContext._handlerAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 61 || _la === 180)) { @@ -28693,29 +28802,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5157; + this.state = 5170; this.match(MySqlParser.KW_HANDLER); - this.state = 5158; + this.state = 5171; this.match(MySqlParser.KW_FOR); - this.state = 5159; + this.state = 5172; this.handlerConditionValue(); - this.state = 5164; + this.state = 5177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5160; + this.state = 5173; this.match(MySqlParser.COMMA); - this.state = 5161; + this.state = 5174; this.handlerConditionValue(); } } - this.state = 5166; + this.state = 5179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5167; + this.state = 5180; this.routineBody(); } } @@ -28735,10 +28844,10 @@ export class MySqlParser extends SQLParserBase { } public handlerConditionValue(): HandlerConditionValueContext { let localContext = new HandlerConditionValueContext(this.context, this.state); - this.enterRule(localContext, 452, MySqlParser.RULE_handlerConditionValue); + this.enterRule(localContext, 462, MySqlParser.RULE_handlerConditionValue); let _la: number; try { - this.state = 5180; + this.state = 5193; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28750,7 +28859,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionCodeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5169; + this.state = 5182; this.decimalLiteral(); } break; @@ -28758,19 +28867,19 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionStateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5170; + this.state = 5183; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5172; + this.state = 5185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5171; + this.state = 5184; this.match(MySqlParser.KW_VALUE); } } - this.state = 5174; + this.state = 5187; this.match(MySqlParser.STRING_LITERAL); } break; @@ -29326,7 +29435,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNameContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5175; + this.state = 5188; (localContext as HandlerConditionNameContext)._condition_name = this.uid(); } break; @@ -29334,7 +29443,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionWarningContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5176; + this.state = 5189; this.match(MySqlParser.KW_SQLWARNING); } break; @@ -29342,9 +29451,9 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNotfoundContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5177; + this.state = 5190; this.match(MySqlParser.KW_NOT); - this.state = 5178; + this.state = 5191; this.match(MySqlParser.KW_FOUND); } break; @@ -29352,7 +29461,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionExceptionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5179; + this.state = 5192; this.match(MySqlParser.KW_SQLEXCEPTION); } break; @@ -29376,27 +29485,27 @@ export class MySqlParser extends SQLParserBase { } public procedureSqlStatement(): ProcedureSqlStatementContext { let localContext = new ProcedureSqlStatementContext(this.context, this.state); - this.enterRule(localContext, 454, MySqlParser.RULE_procedureSqlStatement); + this.enterRule(localContext, 464, MySqlParser.RULE_procedureSqlStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5184; + this.state = 5197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 734, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 733, this.context) ) { case 1: { - this.state = 5182; + this.state = 5195; this.compoundStatement(); } break; case 2: { - this.state = 5183; + this.state = 5196; this.sqlStatement(); } break; } - this.state = 5186; + this.state = 5199; this.match(MySqlParser.SEMI); } } @@ -29416,32 +29525,32 @@ export class MySqlParser extends SQLParserBase { } public caseAlternative(): CaseAlternativeContext { let localContext = new CaseAlternativeContext(this.context, this.state); - this.enterRule(localContext, 456, MySqlParser.RULE_caseAlternative); + this.enterRule(localContext, 466, MySqlParser.RULE_caseAlternative); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5188; + this.state = 5201; this.match(MySqlParser.KW_WHEN); - this.state = 5191; + this.state = 5204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 734, this.context) ) { case 1: { - this.state = 5189; + this.state = 5202; this.constant(); } break; case 2: { - this.state = 5190; + this.state = 5203; this.expression(0); } break; } - this.state = 5193; + this.state = 5206; this.match(MySqlParser.KW_THEN); - this.state = 5195; + this.state = 5208; this.errorHandler.sync(this); alternative = 1; do { @@ -29449,7 +29558,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5194; + this.state = 5207; this.procedureSqlStatement(); } } @@ -29457,9 +29566,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5197; + this.state = 5210; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 736, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 735, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29479,18 +29588,18 @@ export class MySqlParser extends SQLParserBase { } public elseIfAlternative(): ElseIfAlternativeContext { let localContext = new ElseIfAlternativeContext(this.context, this.state); - this.enterRule(localContext, 458, MySqlParser.RULE_elseIfAlternative); + this.enterRule(localContext, 468, MySqlParser.RULE_elseIfAlternative); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5199; + this.state = 5212; this.match(MySqlParser.KW_ELSEIF); - this.state = 5200; + this.state = 5213; this.expression(0); - this.state = 5201; + this.state = 5214; this.match(MySqlParser.KW_THEN); - this.state = 5203; + this.state = 5216; this.errorHandler.sync(this); alternative = 1; do { @@ -29498,7 +29607,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5202; + this.state = 5215; this.procedureSqlStatement(); } } @@ -29506,9 +29615,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5205; + this.state = 5218; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 737, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 736, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29528,46 +29637,46 @@ export class MySqlParser extends SQLParserBase { } public alterUser(): AlterUserContext { let localContext = new AlterUserContext(this.context, this.state); - this.enterRule(localContext, 460, MySqlParser.RULE_alterUser); + this.enterRule(localContext, 470, MySqlParser.RULE_alterUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5207; + this.state = 5220; this.match(MySqlParser.KW_ALTER); - this.state = 5208; + this.state = 5221; this.match(MySqlParser.KW_USER); - this.state = 5210; + this.state = 5223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { case 1: { - this.state = 5209; + this.state = 5222; this.ifExists(); } break; } - this.state = 5268; + this.state = 5281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 750, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { case 1: { { - this.state = 5212; + this.state = 5225; this.userSpecification(); - this.state = 5217; + this.state = 5230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5213; + this.state = 5226; this.match(MySqlParser.COMMA); - this.state = 5214; + this.state = 5227; this.userSpecification(); } } - this.state = 5219; + this.state = 5232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29577,37 +29686,37 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 5220; + this.state = 5233; this.alterUserAuthOption(); - this.state = 5225; + this.state = 5238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5221; + this.state = 5234; this.match(MySqlParser.COMMA); - this.state = 5222; + this.state = 5235; this.alterUserAuthOption(); } } - this.state = 5227; + this.state = 5240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5242; + this.state = 5255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5228; + this.state = 5241; this.match(MySqlParser.KW_REQUIRE); - this.state = 5240; + this.state = 5253; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5229; + this.state = 5242; this.match(MySqlParser.KW_NONE); } break; @@ -29617,29 +29726,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5230; + this.state = 5243; this.tlsOption(); - this.state = 5237; + this.state = 5250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5232; + this.state = 5245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5231; + this.state = 5244; this.match(MySqlParser.KW_AND); } } - this.state = 5234; + this.state = 5247; this.tlsOption(); } } - this.state = 5239; + this.state = 5252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29651,49 +29760,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5250; + this.state = 5263; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 746, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 5244; + this.state = 5257; this.match(MySqlParser.KW_WITH); - this.state = 5246; + this.state = 5259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5245; + this.state = 5258; this.userResourceOption(); } } - this.state = 5248; + this.state = 5261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5256; + this.state = 5269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5254; + this.state = 5267; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5252; + this.state = 5265; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5253; + this.state = 5266; this.userLockOption(); } break; @@ -29701,16 +29810,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5258; + this.state = 5271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5261; + this.state = 5274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5259; + this.state = 5272; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29719,7 +29828,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5260; + this.state = 5273; this.match(MySqlParser.STRING_LITERAL); } } @@ -29731,14 +29840,14 @@ export class MySqlParser extends SQLParserBase { { { { - this.state = 5263; + this.state = 5276; this.userOrRoleName(); } - this.state = 5264; + this.state = 5277; this.match(MySqlParser.KW_DEFAULT); - this.state = 5265; + this.state = 5278; this.match(MySqlParser.KW_ROLE); - this.state = 5266; + this.state = 5279; this.roleOption(); } } @@ -29762,90 +29871,90 @@ export class MySqlParser extends SQLParserBase { } public createUser(): CreateUserContext { let localContext = new CreateUserContext(this.context, this.state); - this.enterRule(localContext, 462, MySqlParser.RULE_createUser); + this.enterRule(localContext, 472, MySqlParser.RULE_createUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5270; + this.state = 5283; this.match(MySqlParser.KW_CREATE); - this.state = 5271; + this.state = 5284; this.match(MySqlParser.KW_USER); - this.state = 5273; + this.state = 5286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5272; + this.state = 5285; this.ifNotExists(); } } - this.state = 5275; + this.state = 5288; this.userName(); - this.state = 5277; + this.state = 5290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5276; + this.state = 5289; this.createUserAuthOption(); } } - this.state = 5286; + this.state = 5299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5279; + this.state = 5292; this.match(MySqlParser.COMMA); - this.state = 5280; + this.state = 5293; this.userName(); - this.state = 5282; + this.state = 5295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5281; + this.state = 5294; this.createUserAuthOption(); } } } } - this.state = 5288; + this.state = 5301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5292; + this.state = 5305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5289; + this.state = 5302; this.match(MySqlParser.KW_DEFAULT); - this.state = 5290; + this.state = 5303; this.match(MySqlParser.KW_ROLE); - this.state = 5291; + this.state = 5304; this.roleOption(); } } - this.state = 5308; + this.state = 5321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5294; + this.state = 5307; this.match(MySqlParser.KW_REQUIRE); - this.state = 5306; + this.state = 5319; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5295; + this.state = 5308; this.match(MySqlParser.KW_NONE); } break; @@ -29855,29 +29964,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5296; + this.state = 5309; this.tlsOption(); - this.state = 5303; + this.state = 5316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5298; + this.state = 5311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5297; + this.state = 5310; this.match(MySqlParser.KW_AND); } } - this.state = 5300; + this.state = 5313; this.tlsOption(); } } - this.state = 5305; + this.state = 5318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29889,49 +29998,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5316; + this.state = 5329; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 761, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 760, this.context) ) { case 1: { - this.state = 5310; + this.state = 5323; this.match(MySqlParser.KW_WITH); - this.state = 5312; + this.state = 5325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5311; + this.state = 5324; this.userResourceOption(); } } - this.state = 5314; + this.state = 5327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5322; + this.state = 5335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5320; + this.state = 5333; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5318; + this.state = 5331; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5319; + this.state = 5332; this.userLockOption(); } break; @@ -29939,16 +30048,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5324; + this.state = 5337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5327; + this.state = 5340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5325; + this.state = 5338; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29957,7 +30066,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5326; + this.state = 5339; this.match(MySqlParser.STRING_LITERAL); } } @@ -29980,40 +30089,40 @@ export class MySqlParser extends SQLParserBase { } public dropUser(): DropUserContext { let localContext = new DropUserContext(this.context, this.state); - this.enterRule(localContext, 464, MySqlParser.RULE_dropUser); + this.enterRule(localContext, 474, MySqlParser.RULE_dropUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5329; + this.state = 5342; this.match(MySqlParser.KW_DROP); - this.state = 5330; + this.state = 5343; this.match(MySqlParser.KW_USER); - this.state = 5332; + this.state = 5345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5331; + this.state = 5344; this.ifExists(); } } - this.state = 5334; + this.state = 5347; this.userName(); - this.state = 5339; + this.state = 5352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5335; + this.state = 5348; this.match(MySqlParser.COMMA); - this.state = 5336; + this.state = 5349; this.userName(); } } - this.state = 5341; + this.state = 5354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30035,73 +30144,73 @@ export class MySqlParser extends SQLParserBase { } public grantStatement(): GrantStatementContext { let localContext = new GrantStatementContext(this.context, this.state); - this.enterRule(localContext, 466, MySqlParser.RULE_grantStatement); + this.enterRule(localContext, 476, MySqlParser.RULE_grantStatement); let _la: number; try { let alternative: number; - this.state = 5431; + this.state = 5444; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 783, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5342; + this.state = 5355; this.match(MySqlParser.KW_GRANT); - this.state = 5343; + this.state = 5356; this.privilegeClause(); - this.state = 5348; + this.state = 5361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5344; + this.state = 5357; this.match(MySqlParser.COMMA); - this.state = 5345; + this.state = 5358; this.privilegeClause(); } } - this.state = 5350; + this.state = 5363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5351; + this.state = 5364; this.match(MySqlParser.KW_ON); - this.state = 5353; + this.state = 5366; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 768, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 767, this.context) ) { case 1: { - this.state = 5352; + this.state = 5365; this.privilegeObjectType(); } break; } - this.state = 5355; + this.state = 5368; this.privilegeLevel(); - this.state = 5356; + this.state = 5369; this.match(MySqlParser.KW_TO); - this.state = 5366; + this.state = 5379; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 770, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { case 1: { { - this.state = 5357; + this.state = 5370; this.userAuthOption(); - this.state = 5362; + this.state = 5375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5358; + this.state = 5371; this.match(MySqlParser.COMMA); - this.state = 5359; + this.state = 5372; this.userAuthOption(); } } - this.state = 5364; + this.state = 5377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30110,24 +30219,24 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 5365; + this.state = 5378; this.userOrRoleNames(); } break; } - this.state = 5382; + this.state = 5395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5368; + this.state = 5381; this.match(MySqlParser.KW_REQUIRE); - this.state = 5380; + this.state = 5393; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5369; + this.state = 5382; localContext._tlsNone = this.match(MySqlParser.KW_NONE); } break; @@ -30137,29 +30246,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5370; + this.state = 5383; this.tlsOption(); - this.state = 5377; + this.state = 5390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5372; + this.state = 5385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5371; + this.state = 5384; this.match(MySqlParser.KW_AND); } } - this.state = 5374; + this.state = 5387; this.tlsOption(); } } - this.state = 5379; + this.state = 5392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30171,27 +30280,27 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5393; + this.state = 5406; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { case 1: { - this.state = 5384; + this.state = 5397; this.match(MySqlParser.KW_WITH); - this.state = 5390; + this.state = 5403; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 776, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 775, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 5388; + this.state = 5401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_GRANT: { - this.state = 5385; + this.state = 5398; this.match(MySqlParser.KW_GRANT); - this.state = 5386; + this.state = 5399; this.match(MySqlParser.KW_OPTION); } break; @@ -30200,7 +30309,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MAX_UPDATES_PER_HOUR: case MySqlParser.KW_MAX_USER_CONNECTIONS: { - this.state = 5387; + this.state = 5400; this.userResourceOption(); } break; @@ -30209,32 +30318,32 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 5392; + this.state = 5405; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 776, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 775, this.context); } } break; } - this.state = 5402; + this.state = 5415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 5395; + this.state = 5408; this.match(MySqlParser.KW_AS); - this.state = 5396; + this.state = 5409; this.userName(); - this.state = 5400; + this.state = 5413; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { case 1: { - this.state = 5397; + this.state = 5410; this.match(MySqlParser.KW_WITH); - this.state = 5398; + this.state = 5411; this.match(MySqlParser.KW_ROLE); - this.state = 5399; + this.state = 5412; this.roleOption(); } break; @@ -30247,76 +30356,76 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5404; + this.state = 5417; this.match(MySqlParser.KW_GRANT); - this.state = 5407; + this.state = 5420; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 780, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { case 1: { - this.state = 5405; + this.state = 5418; this.match(MySqlParser.KW_PROXY); - this.state = 5406; + this.state = 5419; this.match(MySqlParser.KW_ON); } break; } { - this.state = 5409; + this.state = 5422; this.userOrRoleName(); } - this.state = 5414; + this.state = 5427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5410; + this.state = 5423; this.match(MySqlParser.COMMA); { - this.state = 5411; + this.state = 5424; this.userOrRoleName(); } } } - this.state = 5416; + this.state = 5429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5417; + this.state = 5430; this.match(MySqlParser.KW_TO); { - this.state = 5418; + this.state = 5431; this.userOrRoleName(); } - this.state = 5423; + this.state = 5436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5419; + this.state = 5432; this.match(MySqlParser.COMMA); { - this.state = 5420; + this.state = 5433; this.userOrRoleName(); } } } - this.state = 5425; + this.state = 5438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5429; + this.state = 5442; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 783, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 782, this.context) ) { case 1: { - this.state = 5426; + this.state = 5439; this.match(MySqlParser.KW_WITH); - this.state = 5427; + this.state = 5440; this.match(MySqlParser.KW_ADMIN); - this.state = 5428; + this.state = 5441; this.match(MySqlParser.KW_OPTION); } break; @@ -30341,39 +30450,39 @@ export class MySqlParser extends SQLParserBase { } public roleOption(): RoleOptionContext { let localContext = new RoleOptionContext(this.context, this.state); - this.enterRule(localContext, 468, MySqlParser.RULE_roleOption); + this.enterRule(localContext, 478, MySqlParser.RULE_roleOption); let _la: number; try { - this.state = 5441; + this.state = 5454; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 786, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5433; + this.state = 5446; this.match(MySqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5434; + this.state = 5447; this.match(MySqlParser.KW_NONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5435; + this.state = 5448; this.match(MySqlParser.KW_ALL); - this.state = 5438; + this.state = 5451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 5436; + this.state = 5449; this.match(MySqlParser.KW_EXCEPT); - this.state = 5437; + this.state = 5450; this.userOrRoleNames(); } } @@ -30383,7 +30492,7 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5440; + this.state = 5453; this.userOrRoleNames(); } break; @@ -30405,50 +30514,50 @@ export class MySqlParser extends SQLParserBase { } public grantProxy(): GrantProxyContext { let localContext = new GrantProxyContext(this.context, this.state); - this.enterRule(localContext, 470, MySqlParser.RULE_grantProxy); + this.enterRule(localContext, 480, MySqlParser.RULE_grantProxy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5443; + this.state = 5456; this.match(MySqlParser.KW_GRANT); - this.state = 5444; + this.state = 5457; this.match(MySqlParser.KW_PROXY); - this.state = 5445; + this.state = 5458; this.match(MySqlParser.KW_ON); - this.state = 5446; + this.state = 5459; localContext._fromFirst = this.userName(); - this.state = 5447; + this.state = 5460; this.match(MySqlParser.KW_TO); - this.state = 5448; + this.state = 5461; localContext._toFirst = this.userName(); - this.state = 5453; + this.state = 5466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5449; + this.state = 5462; this.match(MySqlParser.COMMA); - this.state = 5450; + this.state = 5463; localContext._userName = this.userName(); localContext._toOther.push(localContext._userName); } } - this.state = 5455; + this.state = 5468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5459; + this.state = 5472; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { case 1: { - this.state = 5456; + this.state = 5469; this.match(MySqlParser.KW_WITH); - this.state = 5457; + this.state = 5470; this.match(MySqlParser.KW_GRANT); - this.state = 5458; + this.state = 5471; this.match(MySqlParser.KW_OPTION); } break; @@ -30471,69 +30580,69 @@ export class MySqlParser extends SQLParserBase { } public alterResourceGroup(): AlterResourceGroupContext { let localContext = new AlterResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 472, MySqlParser.RULE_alterResourceGroup); + this.enterRule(localContext, 482, MySqlParser.RULE_alterResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5461; + this.state = 5474; this.match(MySqlParser.KW_ALTER); - this.state = 5462; + this.state = 5475; this.match(MySqlParser.KW_RESOURCE); - this.state = 5463; + this.state = 5476; this.match(MySqlParser.KW_GROUP); - this.state = 5464; + this.state = 5477; this.groupName(); - this.state = 5470; + this.state = 5483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5465; + this.state = 5478; this.match(MySqlParser.KW_VCPU); - this.state = 5467; + this.state = 5480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5466; + this.state = 5479; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5469; + this.state = 5482; this.resourceGroupVCpuSpec(); } } - this.state = 5477; + this.state = 5490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5472; + this.state = 5485; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5474; + this.state = 5487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5473; + this.state = 5486; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5476; + this.state = 5489; this.decimalLiteral(); } } - this.state = 5483; + this.state = 5496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5479; + this.state = 5492; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30542,12 +30651,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5481; + this.state = 5494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5480; + this.state = 5493; this.match(MySqlParser.KW_FORCE); } } @@ -30573,24 +30682,24 @@ export class MySqlParser extends SQLParserBase { } public createResourceGroup(): CreateResourceGroupContext { let localContext = new CreateResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 474, MySqlParser.RULE_createResourceGroup); + this.enterRule(localContext, 484, MySqlParser.RULE_createResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5485; + this.state = 5498; this.match(MySqlParser.KW_CREATE); - this.state = 5486; + this.state = 5499; this.match(MySqlParser.KW_RESOURCE); - this.state = 5487; + this.state = 5500; this.match(MySqlParser.KW_GROUP); - this.state = 5488; + this.state = 5501; this.groupNameCreate(); - this.state = 5489; + this.state = 5502; this.match(MySqlParser.KW_TYPE); - this.state = 5490; + this.state = 5503; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5491; + this.state = 5504; _la = this.tokenStream.LA(1); if(!(_la === 678 || _la === 835)) { this.errorHandler.recoverInline(this); @@ -30599,56 +30708,56 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5497; + this.state = 5510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5492; + this.state = 5505; this.match(MySqlParser.KW_VCPU); - this.state = 5494; + this.state = 5507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5493; + this.state = 5506; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5496; + this.state = 5509; this.resourceGroupVCpuSpec(); } } - this.state = 5504; + this.state = 5517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5499; + this.state = 5512; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5501; + this.state = 5514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5500; + this.state = 5513; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5503; + this.state = 5516; this.decimalLiteral(); } } - this.state = 5507; + this.state = 5520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5506; + this.state = 5519; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30678,25 +30787,25 @@ export class MySqlParser extends SQLParserBase { } public dropResourceGroup(): DropResourceGroupContext { let localContext = new DropResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 476, MySqlParser.RULE_dropResourceGroup); + this.enterRule(localContext, 486, MySqlParser.RULE_dropResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5509; + this.state = 5522; this.match(MySqlParser.KW_DROP); - this.state = 5510; + this.state = 5523; this.match(MySqlParser.KW_RESOURCE); - this.state = 5511; + this.state = 5524; this.match(MySqlParser.KW_GROUP); - this.state = 5512; + this.state = 5525; this.groupName(); - this.state = 5514; + this.state = 5527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5513; + this.state = 5526; this.match(MySqlParser.KW_FORCE); } } @@ -30719,41 +30828,41 @@ export class MySqlParser extends SQLParserBase { } public setResourceGroup(): SetResourceGroupContext { let localContext = new SetResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 478, MySqlParser.RULE_setResourceGroup); + this.enterRule(localContext, 488, MySqlParser.RULE_setResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5516; + this.state = 5529; this.match(MySqlParser.KW_SET); - this.state = 5517; + this.state = 5530; this.match(MySqlParser.KW_RESOURCE); - this.state = 5518; + this.state = 5531; this.match(MySqlParser.KW_GROUP); - this.state = 5519; + this.state = 5532; this.groupName(); - this.state = 5529; + this.state = 5542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5520; + this.state = 5533; this.match(MySqlParser.KW_FOR); - this.state = 5521; + this.state = 5534; this.decimalLiteral(); - this.state = 5526; + this.state = 5539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5522; + this.state = 5535; this.match(MySqlParser.COMMA); - this.state = 5523; + this.state = 5536; this.decimalLiteral(); } } - this.state = 5528; + this.state = 5541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30778,48 +30887,48 @@ export class MySqlParser extends SQLParserBase { } public resourceGroupVCpuSpec(): ResourceGroupVCpuSpecContext { let localContext = new ResourceGroupVCpuSpecContext(this.context, this.state); - this.enterRule(localContext, 480, MySqlParser.RULE_resourceGroupVCpuSpec); + this.enterRule(localContext, 490, MySqlParser.RULE_resourceGroupVCpuSpec); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5536; + this.state = 5549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 803, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 802, this.context) ) { case 1: { - this.state = 5531; + this.state = 5544; this.decimalLiteral(); } break; case 2: { - this.state = 5532; + this.state = 5545; this.decimalLiteral(); - this.state = 5533; + this.state = 5546; this.match(MySqlParser.MINUS); - this.state = 5534; + this.state = 5547; this.decimalLiteral(); } break; } - this.state = 5542; + this.state = 5555; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 804, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 803, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5538; + this.state = 5551; this.match(MySqlParser.COMMA); - this.state = 5539; + this.state = 5552; this.resourceGroupVCpuSpec(); } } } - this.state = 5544; + this.state = 5557; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 804, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 803, this.context); } } } @@ -30839,30 +30948,30 @@ export class MySqlParser extends SQLParserBase { } public renameUser(): RenameUserContext { let localContext = new RenameUserContext(this.context, this.state); - this.enterRule(localContext, 482, MySqlParser.RULE_renameUser); + this.enterRule(localContext, 492, MySqlParser.RULE_renameUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5545; + this.state = 5558; this.match(MySqlParser.KW_RENAME); - this.state = 5546; + this.state = 5559; this.match(MySqlParser.KW_USER); - this.state = 5547; + this.state = 5560; this.renameUserClause(); - this.state = 5552; + this.state = 5565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5548; + this.state = 5561; this.match(MySqlParser.COMMA); - this.state = 5549; + this.state = 5562; this.renameUserClause(); } } - this.state = 5554; + this.state = 5567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30884,70 +30993,70 @@ export class MySqlParser extends SQLParserBase { } public revokeStatement(): RevokeStatementContext { let localContext = new RevokeStatementContext(this.context, this.state); - this.enterRule(localContext, 484, MySqlParser.RULE_revokeStatement); + this.enterRule(localContext, 494, MySqlParser.RULE_revokeStatement); let _la: number; try { - this.state = 5607; + this.state = 5620; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 816, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: localContext = new DetailRevokeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5555; + this.state = 5568; this.match(MySqlParser.KW_REVOKE); - this.state = 5557; + this.state = 5570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5556; + this.state = 5569; this.ifExists(); } } - this.state = 5559; + this.state = 5572; this.privilegeClause(); - this.state = 5564; + this.state = 5577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5560; + this.state = 5573; this.match(MySqlParser.COMMA); - this.state = 5561; + this.state = 5574; this.privilegeClause(); } } - this.state = 5566; + this.state = 5579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5567; + this.state = 5580; this.match(MySqlParser.KW_ON); - this.state = 5569; + this.state = 5582; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 808, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { case 1: { - this.state = 5568; + this.state = 5581; this.privilegeObjectType(); } break; } - this.state = 5571; + this.state = 5584; this.privilegeLevel(); - this.state = 5572; + this.state = 5585; this.match(MySqlParser.KW_FROM); - this.state = 5573; + this.state = 5586; this.userOrRoleNames(); - this.state = 5575; + this.state = 5588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5574; + this.state = 5587; this.ignoreUnknownUser(); } } @@ -30958,46 +31067,46 @@ export class MySqlParser extends SQLParserBase { localContext = new ShortRevokeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5577; + this.state = 5590; this.match(MySqlParser.KW_REVOKE); - this.state = 5579; + this.state = 5592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5578; + this.state = 5591; this.ifExists(); } } - this.state = 5581; + this.state = 5594; this.match(MySqlParser.KW_ALL); - this.state = 5583; + this.state = 5596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5582; + this.state = 5595; this.match(MySqlParser.KW_PRIVILEGES); } } - this.state = 5585; + this.state = 5598; this.match(MySqlParser.COMMA); - this.state = 5586; + this.state = 5599; this.match(MySqlParser.KW_GRANT); - this.state = 5587; + this.state = 5600; this.match(MySqlParser.KW_OPTION); - this.state = 5588; + this.state = 5601; this.match(MySqlParser.KW_FROM); - this.state = 5589; + this.state = 5602; this.userOrRoleNames(); - this.state = 5591; + this.state = 5604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5590; + this.state = 5603; this.ignoreUnknownUser(); } } @@ -31008,42 +31117,42 @@ export class MySqlParser extends SQLParserBase { localContext = new ProxyAndRoleRevokeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5593; + this.state = 5606; this.match(MySqlParser.KW_REVOKE); - this.state = 5595; + this.state = 5608; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 812, this.context) ) { case 1: { - this.state = 5594; + this.state = 5607; this.ifExists(); } break; } - this.state = 5599; + this.state = 5612; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { case 1: { - this.state = 5597; + this.state = 5610; this.match(MySqlParser.KW_PROXY); - this.state = 5598; + this.state = 5611; this.match(MySqlParser.KW_ON); } break; } - this.state = 5601; + this.state = 5614; this.userOrRoleNames(); - this.state = 5602; + this.state = 5615; this.match(MySqlParser.KW_FROM); - this.state = 5603; + this.state = 5616; this.userOrRoleNames(); - this.state = 5605; + this.state = 5618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5604; + this.state = 5617; this.ignoreUnknownUser(); } } @@ -31068,15 +31177,15 @@ export class MySqlParser extends SQLParserBase { } public ignoreUnknownUser(): IgnoreUnknownUserContext { let localContext = new IgnoreUnknownUserContext(this.context, this.state); - this.enterRule(localContext, 486, MySqlParser.RULE_ignoreUnknownUser); + this.enterRule(localContext, 496, MySqlParser.RULE_ignoreUnknownUser); try { this.enterOuterAlt(localContext, 1); { - this.state = 5609; + this.state = 5622; this.match(MySqlParser.KW_IGNORE); - this.state = 5610; + this.state = 5623; this.match(MySqlParser.KW_UNKNOWN); - this.state = 5611; + this.state = 5624; this.match(MySqlParser.KW_USER); } } @@ -31096,12 +31205,12 @@ export class MySqlParser extends SQLParserBase { } public privilegeObjectType(): PrivilegeObjectTypeContext { let localContext = new PrivilegeObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 488, MySqlParser.RULE_privilegeObjectType); + this.enterRule(localContext, 498, MySqlParser.RULE_privilegeObjectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5613; + this.state = 5626; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 173 || _la === 409)) { this.errorHandler.recoverInline(this); @@ -31128,47 +31237,47 @@ export class MySqlParser extends SQLParserBase { } public setPasswordStatement(): SetPasswordStatementContext { let localContext = new SetPasswordStatementContext(this.context, this.state); - this.enterRule(localContext, 490, MySqlParser.RULE_setPasswordStatement); + this.enterRule(localContext, 500, MySqlParser.RULE_setPasswordStatement); let _la: number; try { - this.state = 5647; + this.state = 5660; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 823, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { case 1: localContext = new V57Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5615; + this.state = 5628; this.match(MySqlParser.KW_SET); - this.state = 5616; + this.state = 5629; this.match(MySqlParser.KW_PASSWORD); - this.state = 5619; + this.state = 5632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5617; + this.state = 5630; this.match(MySqlParser.KW_FOR); - this.state = 5618; + this.state = 5631; this.userName(); } } - this.state = 5621; + this.state = 5634; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5624; + this.state = 5637; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OLD_PASSWORD: case MySqlParser.KW_PASSWORD: { - this.state = 5622; + this.state = 5635; this.passwordFunctionClause(); } break; case MySqlParser.STRING_LITERAL: { - this.state = 5623; + this.state = 5636; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31181,66 +31290,66 @@ export class MySqlParser extends SQLParserBase { localContext = new V80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5626; + this.state = 5639; this.match(MySqlParser.KW_SET); - this.state = 5627; + this.state = 5640; this.match(MySqlParser.KW_PASSWORD); - this.state = 5630; + this.state = 5643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5628; + this.state = 5641; this.match(MySqlParser.KW_FOR); - this.state = 5629; + this.state = 5642; this.userName(); } } - this.state = 5636; + this.state = 5649; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 5632; + this.state = 5645; this.match(MySqlParser.KW_TO); - this.state = 5633; + this.state = 5646; this.match(MySqlParser.KW_RANDOM); } break; case MySqlParser.EQUAL_SYMBOL: { - this.state = 5634; + this.state = 5647; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5635; + this.state = 5648; this.match(MySqlParser.STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5640; + this.state = 5653; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 821, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { case 1: { - this.state = 5638; + this.state = 5651; this.match(MySqlParser.KW_REPLACE); - this.state = 5639; + this.state = 5652; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5645; + this.state = 5658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5642; + this.state = 5655; this.match(MySqlParser.KW_RETAIN); - this.state = 5643; + this.state = 5656; this.match(MySqlParser.KW_CURRENT); - this.state = 5644; + this.state = 5657; this.match(MySqlParser.KW_PASSWORD); } } @@ -31265,13 +31374,13 @@ export class MySqlParser extends SQLParserBase { } public userSpecification(): UserSpecificationContext { let localContext = new UserSpecificationContext(this.context, this.state); - this.enterRule(localContext, 492, MySqlParser.RULE_userSpecification); + this.enterRule(localContext, 502, MySqlParser.RULE_userSpecification); try { this.enterOuterAlt(localContext, 1); { - this.state = 5649; + this.state = 5662; this.userName(); - this.state = 5650; + this.state = 5663; this.userPasswordOption(); } } @@ -31291,66 +31400,66 @@ export class MySqlParser extends SQLParserBase { } public alterUserAuthOption(): AlterUserAuthOptionContext { let localContext = new AlterUserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 494, MySqlParser.RULE_alterUserAuthOption); + this.enterRule(localContext, 504, MySqlParser.RULE_alterUserAuthOption); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5652; + this.state = 5665; this.userName(); - this.state = 5678; + this.state = 5691; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 825, this.context) ) { case 1: { - this.state = 5653; + this.state = 5666; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5654; + this.state = 5667; this.match(MySqlParser.KW_BY); - this.state = 5655; + this.state = 5668; this.match(MySqlParser.STRING_LITERAL); - this.state = 5656; + this.state = 5669; this.authOptionClause(); } break; case 2: { - this.state = 5657; + this.state = 5670; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5658; + this.state = 5671; this.match(MySqlParser.KW_BY); - this.state = 5659; + this.state = 5672; this.match(MySqlParser.KW_RANDOM); - this.state = 5660; + this.state = 5673; this.match(MySqlParser.KW_PASSWORD); - this.state = 5661; + this.state = 5674; this.authOptionClause(); } break; case 3: { - this.state = 5662; + this.state = 5675; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5663; + this.state = 5676; this.match(MySqlParser.KW_WITH); - this.state = 5664; + this.state = 5677; this.authenticationRule(); } break; case 4: { - this.state = 5665; + this.state = 5678; this.match(MySqlParser.KW_DISCARD); - this.state = 5666; + this.state = 5679; this.match(MySqlParser.KW_OLD); - this.state = 5667; + this.state = 5680; this.match(MySqlParser.KW_PASSWORD); } break; case 5: { - this.state = 5673; + this.state = 5686; this.errorHandler.sync(this); alternative = 1; do { @@ -31358,7 +31467,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5668; + this.state = 5681; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51 || _la === 492)) { this.errorHandler.recoverInline(this); @@ -31367,14 +31476,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5669; + this.state = 5682; this.factor(); - this.state = 5671; + this.state = 5684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5670; + this.state = 5683; this.factorAuthOption(); } } @@ -31385,15 +31494,15 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5675; + this.state = 5688; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 825, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 824, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 6: { - this.state = 5677; + this.state = 5690; this.registrationOption(); } break; @@ -31416,34 +31525,34 @@ export class MySqlParser extends SQLParserBase { } public createUserAuthOption(): CreateUserAuthOptionContext { let localContext = new CreateUserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 496, MySqlParser.RULE_createUserAuthOption); + this.enterRule(localContext, 506, MySqlParser.RULE_createUserAuthOption); let _la: number; try { - this.state = 5716; + this.state = 5729; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 833, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 832, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5680; + this.state = 5693; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5681; + this.state = 5694; this.match(MySqlParser.KW_BY); - this.state = 5687; + this.state = 5700; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5682; + this.state = 5695; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5683; + this.state = 5696; this.match(MySqlParser.KW_RANDOM); - this.state = 5684; + this.state = 5697; this.match(MySqlParser.KW_PASSWORD); } } @@ -31451,9 +31560,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PASSWORD: { { - this.state = 5685; + this.state = 5698; this.match(MySqlParser.KW_PASSWORD); - this.state = 5686; + this.state = 5699; this.match(MySqlParser.STRING_LITERAL); } } @@ -31461,14 +31570,14 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5691; + this.state = 5704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5689; + this.state = 5702; this.match(MySqlParser.KW_AND); - this.state = 5690; + this.state = 5703; this.createUserAuthOption(); } } @@ -31478,35 +31587,35 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5693; + this.state = 5706; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5694; + this.state = 5707; this.match(MySqlParser.KW_WITH); - this.state = 5695; + this.state = 5708; localContext._authPlugin = this.uid(); - this.state = 5704; + this.state = 5717; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5696; + this.state = 5709; this.match(MySqlParser.KW_BY); - this.state = 5700; + this.state = 5713; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5697; + this.state = 5710; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5698; + this.state = 5711; this.match(MySqlParser.KW_RANDOM); - this.state = 5699; + this.state = 5712; this.match(MySqlParser.KW_PASSWORD); } } @@ -31519,9 +31628,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5702; + this.state = 5715; this.match(MySqlParser.KW_AS); - this.state = 5703; + this.state = 5716; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31602,14 +31711,14 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 5708; + this.state = 5721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5706; + this.state = 5719; this.match(MySqlParser.KW_AND); - this.state = 5707; + this.state = 5720; this.createUserAuthOption(); } } @@ -31619,18 +31728,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5710; + this.state = 5723; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5711; + this.state = 5724; this.match(MySqlParser.KW_WITH); - this.state = 5712; + this.state = 5725; localContext._authPlugin = this.uid(); - this.state = 5714; + this.state = 5727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 427) { { - this.state = 5713; + this.state = 5726; this.createUserInitialAuthOption(); } } @@ -31655,38 +31764,38 @@ export class MySqlParser extends SQLParserBase { } public createUserInitialAuthOption(): CreateUserInitialAuthOptionContext { let localContext = new CreateUserInitialAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 498, MySqlParser.RULE_createUserInitialAuthOption); + this.enterRule(localContext, 508, MySqlParser.RULE_createUserInitialAuthOption); try { - this.state = 5735; + this.state = 5748; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 835, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5718; + this.state = 5731; this.match(MySqlParser.KW_INITIAL); - this.state = 5719; + this.state = 5732; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5720; + this.state = 5733; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5721; + this.state = 5734; this.match(MySqlParser.KW_BY); - this.state = 5725; + this.state = 5738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_RANDOM: { { - this.state = 5722; + this.state = 5735; this.match(MySqlParser.KW_RANDOM); - this.state = 5723; + this.state = 5736; this.match(MySqlParser.KW_PASSWORD); } } break; case MySqlParser.STRING_LITERAL: { - this.state = 5724; + this.state = 5737; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31698,19 +31807,19 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5727; + this.state = 5740; this.match(MySqlParser.KW_INITIAL); - this.state = 5728; + this.state = 5741; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5729; + this.state = 5742; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5730; + this.state = 5743; this.match(MySqlParser.KW_WITH); - this.state = 5731; + this.state = 5744; localContext._authPlugin = this.uid(); - this.state = 5732; + this.state = 5745; this.match(MySqlParser.KW_AS); - this.state = 5733; + this.state = 5746; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31732,24 +31841,24 @@ export class MySqlParser extends SQLParserBase { } public userAuthOption(): UserAuthOptionContext { let localContext = new UserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 500, MySqlParser.RULE_userAuthOption); + this.enterRule(localContext, 510, MySqlParser.RULE_userAuthOption); try { - this.state = 5762; + this.state = 5775; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 835, this.context) ) { case 1: localContext = new HashAuthOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5737; + this.state = 5750; this.userName(); - this.state = 5738; + this.state = 5751; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5739; + this.state = 5752; this.match(MySqlParser.KW_BY); - this.state = 5740; + this.state = 5753; this.match(MySqlParser.KW_PASSWORD); - this.state = 5741; + this.state = 5754; (localContext as HashAuthOptionContext)._hashed = this.match(MySqlParser.STRING_LITERAL); } break; @@ -31757,17 +31866,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RandomAuthOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5743; + this.state = 5756; this.userName(); - this.state = 5744; + this.state = 5757; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5745; + this.state = 5758; this.match(MySqlParser.KW_BY); - this.state = 5746; + this.state = 5759; this.match(MySqlParser.KW_RANDOM); - this.state = 5747; + this.state = 5760; this.match(MySqlParser.KW_PASSWORD); - this.state = 5748; + this.state = 5761; this.authOptionClause(); } break; @@ -31775,15 +31884,15 @@ export class MySqlParser extends SQLParserBase { localContext = new StringAuthOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5750; + this.state = 5763; this.userName(); - this.state = 5751; + this.state = 5764; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5752; + this.state = 5765; this.match(MySqlParser.KW_BY); - this.state = 5753; + this.state = 5766; this.match(MySqlParser.STRING_LITERAL); - this.state = 5754; + this.state = 5767; this.authOptionClause(); } break; @@ -31791,13 +31900,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ModuleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5756; + this.state = 5769; this.userName(); - this.state = 5757; + this.state = 5770; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5758; + this.state = 5771; this.match(MySqlParser.KW_WITH); - this.state = 5759; + this.state = 5772; this.authenticationRule(); } break; @@ -31805,7 +31914,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5761; + this.state = 5774; this.userName(); } break; @@ -31827,33 +31936,33 @@ export class MySqlParser extends SQLParserBase { } public authOptionClause(): AuthOptionClauseContext { let localContext = new AuthOptionClauseContext(this.context, this.state); - this.enterRule(localContext, 502, MySqlParser.RULE_authOptionClause); + this.enterRule(localContext, 512, MySqlParser.RULE_authOptionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5766; + this.state = 5779; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { case 1: { - this.state = 5764; + this.state = 5777; this.match(MySqlParser.KW_REPLACE); - this.state = 5765; + this.state = 5778; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5771; + this.state = 5784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5768; + this.state = 5781; this.match(MySqlParser.KW_RETAIN); - this.state = 5769; + this.state = 5782; this.match(MySqlParser.KW_CURRENT); - this.state = 5770; + this.state = 5783; this.match(MySqlParser.KW_PASSWORD); } } @@ -31876,24 +31985,24 @@ export class MySqlParser extends SQLParserBase { } public authenticationRule(): AuthenticationRuleContext { let localContext = new AuthenticationRuleContext(this.context, this.state); - this.enterRule(localContext, 504, MySqlParser.RULE_authenticationRule); + this.enterRule(localContext, 514, MySqlParser.RULE_authenticationRule); let _la: number; try { - this.state = 5787; + this.state = 5800; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { case 1: localContext = new ModuleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5773; + this.state = 5786; (localContext as ModuleContext)._authPlugin = this.uid(); - this.state = 5781; + this.state = 5794; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { case 1: { - this.state = 5774; + this.state = 5787; _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 20 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -31902,27 +32011,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5778; + this.state = 5791; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5775; + this.state = 5788; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { - this.state = 5776; + this.state = 5789; this.match(MySqlParser.KW_RANDOM); - this.state = 5777; + this.state = 5790; this.match(MySqlParser.KW_PASSWORD); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5780; + this.state = 5793; this.authOptionClause(); } break; @@ -31933,11 +32042,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordModuleOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5783; + this.state = 5796; (localContext as PasswordModuleOptionContext)._authPlugin = this.uid(); - this.state = 5784; + this.state = 5797; this.match(MySqlParser.KW_USING); - this.state = 5785; + this.state = 5798; this.passwordFunctionClause(); } break; @@ -31959,49 +32068,49 @@ export class MySqlParser extends SQLParserBase { } public tlsOption(): TlsOptionContext { let localContext = new TlsOptionContext(this.context, this.state); - this.enterRule(localContext, 506, MySqlParser.RULE_tlsOption); + this.enterRule(localContext, 516, MySqlParser.RULE_tlsOption); try { - this.state = 5797; + this.state = 5810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SSL: this.enterOuterAlt(localContext, 1); { - this.state = 5789; + this.state = 5802; this.match(MySqlParser.KW_SSL); } break; case MySqlParser.KW_X509: this.enterOuterAlt(localContext, 2); { - this.state = 5790; + this.state = 5803; this.match(MySqlParser.KW_X509); } break; case MySqlParser.KW_CIPHER: this.enterOuterAlt(localContext, 3); { - this.state = 5791; + this.state = 5804; this.match(MySqlParser.KW_CIPHER); - this.state = 5792; + this.state = 5805; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ISSUER: this.enterOuterAlt(localContext, 4); { - this.state = 5793; + this.state = 5806; this.match(MySqlParser.KW_ISSUER); - this.state = 5794; + this.state = 5807; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SUBJECT: this.enterOuterAlt(localContext, 5); { - this.state = 5795; + this.state = 5808; this.match(MySqlParser.KW_SUBJECT); - this.state = 5796; + this.state = 5809; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32025,44 +32134,44 @@ export class MySqlParser extends SQLParserBase { } public userResourceOption(): UserResourceOptionContext { let localContext = new UserResourceOptionContext(this.context, this.state); - this.enterRule(localContext, 508, MySqlParser.RULE_userResourceOption); + this.enterRule(localContext, 518, MySqlParser.RULE_userResourceOption); try { - this.state = 5807; + this.state = 5820; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MAX_QUERIES_PER_HOUR: this.enterOuterAlt(localContext, 1); { - this.state = 5799; + this.state = 5812; this.match(MySqlParser.KW_MAX_QUERIES_PER_HOUR); - this.state = 5800; + this.state = 5813; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_UPDATES_PER_HOUR: this.enterOuterAlt(localContext, 2); { - this.state = 5801; + this.state = 5814; this.match(MySqlParser.KW_MAX_UPDATES_PER_HOUR); - this.state = 5802; + this.state = 5815; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: this.enterOuterAlt(localContext, 3); { - this.state = 5803; + this.state = 5816; this.match(MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR); - this.state = 5804; + this.state = 5817; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_USER_CONNECTIONS: this.enterOuterAlt(localContext, 4); { - this.state = 5805; + this.state = 5818; this.match(MySqlParser.KW_MAX_USER_CONNECTIONS); - this.state = 5806; + this.state = 5819; this.decimalLiteral(); } break; @@ -32086,41 +32195,41 @@ export class MySqlParser extends SQLParserBase { } public userPasswordOption(): UserPasswordOptionContext { let localContext = new UserPasswordOptionContext(this.context, this.state); - this.enterRule(localContext, 510, MySqlParser.RULE_userPasswordOption); + this.enterRule(localContext, 520, MySqlParser.RULE_userPasswordOption); let _la: number; try { - this.state = 5847; + this.state = 5860; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5809; + this.state = 5822; this.match(MySqlParser.KW_PASSWORD); - this.state = 5810; + this.state = 5823; this.match(MySqlParser.KW_EXPIRE); - this.state = 5817; + this.state = 5830; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5811; + this.state = 5824; localContext._expireType = this.match(MySqlParser.KW_DEFAULT); } break; case MySqlParser.KW_NEVER: { - this.state = 5812; + this.state = 5825; localContext._expireType = this.match(MySqlParser.KW_NEVER); } break; case MySqlParser.KW_INTERVAL: { - this.state = 5813; + this.state = 5826; localContext._expireType = this.match(MySqlParser.KW_INTERVAL); - this.state = 5814; + this.state = 5827; this.decimalLiteral(); - this.state = 5815; + this.state = 5828; this.match(MySqlParser.KW_DAY); } break; @@ -32203,16 +32312,16 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5819; + this.state = 5832; this.match(MySqlParser.KW_PASSWORD); - this.state = 5820; + this.state = 5833; this.match(MySqlParser.KW_HISTORY); - this.state = 5823; + this.state = 5836; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5821; + this.state = 5834; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32223,7 +32332,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5822; + this.state = 5835; this.decimalLiteral(); } break; @@ -32235,18 +32344,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5825; + this.state = 5838; this.match(MySqlParser.KW_PASSWORD); - this.state = 5826; + this.state = 5839; this.match(MySqlParser.KW_REUSE); - this.state = 5827; + this.state = 5840; this.match(MySqlParser.KW_INTERVAL); - this.state = 5832; + this.state = 5845; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5828; + this.state = 5841; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32257,9 +32366,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5829; + this.state = 5842; this.decimalLiteral(); - this.state = 5830; + this.state = 5843; this.match(MySqlParser.KW_DAY); } break; @@ -32271,18 +32380,18 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5834; + this.state = 5847; this.match(MySqlParser.KW_PASSWORD); - this.state = 5835; + this.state = 5848; this.match(MySqlParser.KW_REQUIRE); - this.state = 5836; + this.state = 5849; this.match(MySqlParser.KW_CURRENT); - this.state = 5838; + this.state = 5851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 122) { { - this.state = 5837; + this.state = 5850; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -32299,18 +32408,18 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5840; + this.state = 5853; this.match(MySqlParser.KW_FAILED_LOGIN_ATTEMPTS); - this.state = 5841; + this.state = 5854; this.decimalLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5842; + this.state = 5855; this.match(MySqlParser.KW_PASSWORD_LOCK_TIME); - this.state = 5845; + this.state = 5858; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -32320,13 +32429,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5843; + this.state = 5856; this.decimalLiteral(); } break; case MySqlParser.KW_UNBOUNDED: { - this.state = 5844; + this.state = 5857; this.match(MySqlParser.KW_UNBOUNDED); } break; @@ -32353,14 +32462,14 @@ export class MySqlParser extends SQLParserBase { } public userLockOption(): UserLockOptionContext { let localContext = new UserLockOptionContext(this.context, this.state); - this.enterRule(localContext, 512, MySqlParser.RULE_userLockOption); + this.enterRule(localContext, 522, MySqlParser.RULE_userLockOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5849; + this.state = 5862; this.match(MySqlParser.KW_ACCOUNT); - this.state = 5850; + this.state = 5863; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 183)) { @@ -32388,48 +32497,48 @@ export class MySqlParser extends SQLParserBase { } public factorAuthOption(): FactorAuthOptionContext { let localContext = new FactorAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 514, MySqlParser.RULE_factorAuthOption); + this.enterRule(localContext, 524, MySqlParser.RULE_factorAuthOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5852; + this.state = 5865; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5855; + this.state = 5868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 5853; + this.state = 5866; this.match(MySqlParser.KW_WITH); - this.state = 5854; + this.state = 5867; localContext._authPlugin = this.uid(); } } - this.state = 5865; + this.state = 5878; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5857; + this.state = 5870; this.match(MySqlParser.KW_BY); - this.state = 5861; + this.state = 5874; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5858; + this.state = 5871; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5859; + this.state = 5872; this.match(MySqlParser.KW_RANDOM); - this.state = 5860; + this.state = 5873; this.match(MySqlParser.KW_PASSWORD); } } @@ -32442,9 +32551,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5863; + this.state = 5876; this.match(MySqlParser.KW_AS); - this.state = 5864; + this.state = 5877; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32469,47 +32578,47 @@ export class MySqlParser extends SQLParserBase { } public registrationOption(): RegistrationOptionContext { let localContext = new RegistrationOptionContext(this.context, this.state); - this.enterRule(localContext, 516, MySqlParser.RULE_registrationOption); + this.enterRule(localContext, 526, MySqlParser.RULE_registrationOption); try { - this.state = 5882; + this.state = 5895; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5867; + this.state = 5880; this.factor(); - this.state = 5868; + this.state = 5881; this.match(MySqlParser.KW_INITIATE); - this.state = 5869; + this.state = 5882; this.match(MySqlParser.KW_REGISTRATION); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5871; + this.state = 5884; this.factor(); - this.state = 5872; + this.state = 5885; this.match(MySqlParser.KW_FINISH); - this.state = 5873; + this.state = 5886; this.match(MySqlParser.KW_REGISTRATION); - this.state = 5874; + this.state = 5887; this.match(MySqlParser.KW_SET); - this.state = 5875; + this.state = 5888; this.match(MySqlParser.KW_CHALLENGE_RESPONSE); - this.state = 5876; + this.state = 5889; this.match(MySqlParser.KW_AS); - this.state = 5877; + this.state = 5890; this.match(MySqlParser.STRING_LITERAL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5879; + this.state = 5892; this.factor(); - this.state = 5880; + this.state = 5893; this.match(MySqlParser.KW_UNREGISTER); } break; @@ -32531,12 +32640,12 @@ export class MySqlParser extends SQLParserBase { } public factor(): FactorContext { let localContext = new FactorContext(this.context, this.state); - this.enterRule(localContext, 518, MySqlParser.RULE_factor); + this.enterRule(localContext, 528, MySqlParser.RULE_factor); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5884; + this.state = 5897; _la = this.tokenStream.LA(1); if(!(_la === 873 || _la === 874)) { this.errorHandler.recoverInline(this); @@ -32545,7 +32654,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5885; + this.state = 5898; this.match(MySqlParser.KW_FACTOR); } } @@ -32565,23 +32674,23 @@ export class MySqlParser extends SQLParserBase { } public privilegeClause(): PrivilegeClauseContext { let localContext = new PrivilegeClauseContext(this.context, this.state); - this.enterRule(localContext, 520, MySqlParser.RULE_privilegeClause); + this.enterRule(localContext, 530, MySqlParser.RULE_privilegeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5887; + this.state = 5900; this.privilege(); - this.state = 5892; + this.state = 5905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 5888; + this.state = 5901; this.match(MySqlParser.LR_BRACKET); - this.state = 5889; + this.state = 5902; this.columnNames(); - this.state = 5890; + this.state = 5903; this.match(MySqlParser.RR_BRACKET); } } @@ -32604,23 +32713,23 @@ export class MySqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 522, MySqlParser.RULE_privilege); + this.enterRule(localContext, 532, MySqlParser.RULE_privilege); let _la: number; try { - this.state = 5987; + this.state = 6000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 858, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5894; + this.state = 5907; this.match(MySqlParser.KW_ALL); - this.state = 5896; + this.state = 5909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5895; + this.state = 5908; this.match(MySqlParser.KW_PRIVILEGES); } } @@ -32630,14 +32739,14 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5898; + this.state = 5911; this.match(MySqlParser.KW_ALTER); - this.state = 5900; + this.state = 5913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 743) { { - this.state = 5899; + this.state = 5912; this.match(MySqlParser.KW_ROUTINE); } } @@ -32647,46 +32756,46 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5902; + this.state = 5915; this.match(MySqlParser.KW_CREATE); - this.state = 5910; + this.state = 5923; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TEMPORARY: { - this.state = 5903; + this.state = 5916; this.match(MySqlParser.KW_TEMPORARY); - this.state = 5904; + this.state = 5917; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_ROUTINE: { - this.state = 5905; + this.state = 5918; this.match(MySqlParser.KW_ROUTINE); } break; case MySqlParser.KW_VIEW: { - this.state = 5906; + this.state = 5919; this.match(MySqlParser.KW_VIEW); } break; case MySqlParser.KW_USER: { - this.state = 5907; + this.state = 5920; this.match(MySqlParser.KW_USER); } break; case MySqlParser.KW_TABLESPACE: { - this.state = 5908; + this.state = 5921; this.match(MySqlParser.KW_TABLESPACE); } break; case MySqlParser.KW_ROLE: { - this.state = 5909; + this.state = 5922; this.match(MySqlParser.KW_ROLE); } break; @@ -32702,21 +32811,21 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5912; + this.state = 5925; this.match(MySqlParser.KW_DELETE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5913; + this.state = 5926; this.match(MySqlParser.KW_DROP); - this.state = 5915; + this.state = 5928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 5914; + this.state = 5927; this.match(MySqlParser.KW_ROLE); } } @@ -32726,90 +32835,90 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5917; + this.state = 5930; this.match(MySqlParser.KW_EVENT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5918; + this.state = 5931; this.match(MySqlParser.KW_EXECUTE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5919; + this.state = 5932; this.match(MySqlParser.KW_FILE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5920; + this.state = 5933; this.match(MySqlParser.KW_GRANT); - this.state = 5921; + this.state = 5934; this.match(MySqlParser.KW_OPTION); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5922; + this.state = 5935; this.match(MySqlParser.KW_INDEX); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5923; + this.state = 5936; this.match(MySqlParser.KW_INSERT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5924; + this.state = 5937; this.match(MySqlParser.KW_LOCK); - this.state = 5925; + this.state = 5938; this.match(MySqlParser.KW_TABLES); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5926; + this.state = 5939; this.match(MySqlParser.KW_PROCESS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5927; + this.state = 5940; this.match(MySqlParser.KW_PROXY); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5928; + this.state = 5941; this.match(MySqlParser.KW_REFERENCES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5929; + this.state = 5942; this.match(MySqlParser.KW_RELOAD); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5930; + this.state = 5943; this.match(MySqlParser.KW_REPLICATION); - this.state = 5931; + this.state = 5944; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -32823,16 +32932,16 @@ export class MySqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5932; + this.state = 5945; this.match(MySqlParser.KW_SELECT); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5933; + this.state = 5946; this.match(MySqlParser.KW_SHOW); - this.state = 5934; + this.state = 5947; _la = this.tokenStream.LA(1); if(!(_la === 40 || _la === 684)) { this.errorHandler.recoverInline(this); @@ -32846,339 +32955,339 @@ export class MySqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5935; + this.state = 5948; this.match(MySqlParser.KW_SHUTDOWN); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5936; + this.state = 5949; this.match(MySqlParser.KW_SUPER); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5937; + this.state = 5950; this.match(MySqlParser.KW_TRIGGER); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5938; + this.state = 5951; this.match(MySqlParser.KW_UPDATE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5939; + this.state = 5952; this.match(MySqlParser.KW_USAGE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5940; + this.state = 5953; this.match(MySqlParser.KW_APPLICATION_PASSWORD_ADMIN); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5941; + this.state = 5954; this.match(MySqlParser.KW_AUDIT_ABORT_EXEMPT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5942; + this.state = 5955; this.match(MySqlParser.KW_AUDIT_ADMIN); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5943; + this.state = 5956; this.match(MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5944; + this.state = 5957; this.match(MySqlParser.KW_BACKUP_ADMIN); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5945; + this.state = 5958; this.match(MySqlParser.KW_BINLOG_ADMIN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5946; + this.state = 5959; this.match(MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5947; + this.state = 5960; this.match(MySqlParser.KW_CLONE_ADMIN); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5948; + this.state = 5961; this.match(MySqlParser.KW_CONNECTION_ADMIN); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5949; + this.state = 5962; this.match(MySqlParser.KW_ENCRYPTION_KEY_ADMIN); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5950; + this.state = 5963; this.match(MySqlParser.KW_FIREWALL_ADMIN); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5951; + this.state = 5964; this.match(MySqlParser.KW_FIREWALL_EXEMPT); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5952; + this.state = 5965; this.match(MySqlParser.KW_FIREWALL_USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5953; + this.state = 5966; this.match(MySqlParser.KW_FLUSH_OPTIMIZER_COSTS); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 5954; + this.state = 5967; this.match(MySqlParser.KW_FLUSH_STATUS); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 5955; + this.state = 5968; this.match(MySqlParser.KW_FLUSH_TABLES); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 5956; + this.state = 5969; this.match(MySqlParser.KW_FLUSH_USER_RESOURCES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 5957; + this.state = 5970; this.match(MySqlParser.KW_GROUP_REPLICATION_ADMIN); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 5958; + this.state = 5971; this.match(MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 5959; + this.state = 5972; this.match(MySqlParser.KW_INNODB_REDO_LOG_ENABLE); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 5960; + this.state = 5973; this.match(MySqlParser.KW_NDB_STORED_USER); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 5961; + this.state = 5974; this.match(MySqlParser.KW_PASSWORDLESS_USER_ADMIN); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 5962; + this.state = 5975; this.match(MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 5963; + this.state = 5976; this.match(MySqlParser.KW_REPLICATION_APPLIER); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 5964; + this.state = 5977; this.match(MySqlParser.KW_REPLICATION_SLAVE_ADMIN); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 5965; + this.state = 5978; this.match(MySqlParser.KW_RESOURCE_GROUP_ADMIN); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 5966; + this.state = 5979; this.match(MySqlParser.KW_RESOURCE_GROUP_USER); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 5967; + this.state = 5980; this.match(MySqlParser.KW_ROLE_ADMIN); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 5968; + this.state = 5981; this.match(MySqlParser.KW_SERVICE_CONNECTION_ADMIN); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 5969; + this.state = 5982; this.match(MySqlParser.KW_SESSION_VARIABLES_ADMIN); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 5970; + this.state = 5983; this.match(MySqlParser.KW_SET_USER_ID); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 5971; + this.state = 5984; this.match(MySqlParser.KW_SKIP_QUERY_REWRITE); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 5972; + this.state = 5985; this.match(MySqlParser.KW_SHOW_ROUTINE); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 5973; + this.state = 5986; this.match(MySqlParser.KW_SYSTEM_USER); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 5974; + this.state = 5987; this.match(MySqlParser.KW_SYSTEM_VARIABLES_ADMIN); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 5975; + this.state = 5988; this.match(MySqlParser.KW_TABLE_ENCRYPTION_ADMIN); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 5976; + this.state = 5989; this.match(MySqlParser.KW_TP_CONNECTION_ADMIN); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 5977; + this.state = 5990; this.match(MySqlParser.KW_VERSION_TOKEN_ADMIN); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 5978; + this.state = 5991; this.match(MySqlParser.KW_XA_RECOVER_ADMIN); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 5979; + this.state = 5992; this.match(MySqlParser.KW_LOAD); - this.state = 5980; + this.state = 5993; this.match(MySqlParser.KW_FROM); - this.state = 5981; + this.state = 5994; this.match(MySqlParser.KW_S3); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 5982; + this.state = 5995; this.match(MySqlParser.KW_SELECT); - this.state = 5983; + this.state = 5996; this.match(MySqlParser.KW_INTO); - this.state = 5984; + this.state = 5997; this.match(MySqlParser.KW_S3); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 5985; + this.state = 5998; this.match(MySqlParser.KW_INVOKE); - this.state = 5986; + this.state = 5999; this.match(MySqlParser.KW_LAMBDA); } break; @@ -33200,16 +33309,16 @@ export class MySqlParser extends SQLParserBase { } public privilegeLevel(): PrivilegeLevelContext { let localContext = new PrivilegeLevelContext(this.context, this.state); - this.enterRule(localContext, 524, MySqlParser.RULE_privilegeLevel); + this.enterRule(localContext, 534, MySqlParser.RULE_privilegeLevel); try { - this.state = 6005; + this.state = 6018; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { case 1: localContext = new CurrentSchemaPriviLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5989; + this.state = 6002; this.match(MySqlParser.STAR); } break; @@ -33217,11 +33326,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GlobalPrivLevelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5990; + this.state = 6003; this.match(MySqlParser.STAR); - this.state = 5991; + this.state = 6004; this.match(MySqlParser.DOT); - this.state = 5992; + this.state = 6005; this.match(MySqlParser.STAR); } break; @@ -33229,11 +33338,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteSchemaPrivLevelContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5993; + this.state = 6006; this.uid(); - this.state = 5994; + this.state = 6007; this.match(MySqlParser.DOT); - this.state = 5995; + this.state = 6008; this.match(MySqlParser.STAR); } break; @@ -33241,11 +33350,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5997; + this.state = 6010; this.uid(); - this.state = 5998; + this.state = 6011; this.match(MySqlParser.DOT); - this.state = 5999; + this.state = 6012; this.uid(); } break; @@ -33253,9 +33362,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevel2Context(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6001; + this.state = 6014; this.uid(); - this.state = 6002; + this.state = 6015; this.dottedId(); } break; @@ -33263,7 +33372,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6004; + this.state = 6017; this.uid(); } break; @@ -33285,15 +33394,15 @@ export class MySqlParser extends SQLParserBase { } public renameUserClause(): RenameUserClauseContext { let localContext = new RenameUserClauseContext(this.context, this.state); - this.enterRule(localContext, 526, MySqlParser.RULE_renameUserClause); + this.enterRule(localContext, 536, MySqlParser.RULE_renameUserClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6007; + this.state = 6020; localContext._fromFirst = this.userName(); - this.state = 6008; + this.state = 6021; this.match(MySqlParser.KW_TO); - this.state = 6009; + this.state = 6022; localContext._toFirst = this.userName(); } } @@ -33313,70 +33422,70 @@ export class MySqlParser extends SQLParserBase { } public analyzeTable(): AnalyzeTableContext { let localContext = new AnalyzeTableContext(this.context, this.state); - this.enterRule(localContext, 528, MySqlParser.RULE_analyzeTable); + this.enterRule(localContext, 538, MySqlParser.RULE_analyzeTable); let _la: number; try { - this.state = 6059; + this.state = 6072; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 867, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6011; + this.state = 6024; this.match(MySqlParser.KW_ANALYZE); - this.state = 6013; + this.state = 6026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6012; + this.state = 6025; this.tableActionOption(); } } - this.state = 6015; + this.state = 6028; this.match(MySqlParser.KW_TABLE); - this.state = 6016; + this.state = 6029; this.tableNames(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6017; + this.state = 6030; this.match(MySqlParser.KW_ANALYZE); - this.state = 6019; + this.state = 6032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6018; + this.state = 6031; this.tableActionOption(); } } - this.state = 6021; + this.state = 6034; this.match(MySqlParser.KW_TABLE); - this.state = 6022; + this.state = 6035; this.tableName(); - this.state = 6023; + this.state = 6036; this.match(MySqlParser.KW_UPDATE); - this.state = 6024; + this.state = 6037; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6025; + this.state = 6038; this.match(MySqlParser.KW_ON); - this.state = 6026; + this.state = 6039; this.columnNames(); - this.state = 6031; + this.state = 6044; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 863, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 862, this.context) ) { case 1: { - this.state = 6027; + this.state = 6040; this.match(MySqlParser.KW_WITH); - this.state = 6028; + this.state = 6041; this.decimalLiteral(); - this.state = 6029; + this.state = 6042; this.match(MySqlParser.KW_BUCKETS); } break; @@ -33386,40 +33495,40 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6033; + this.state = 6046; this.match(MySqlParser.KW_ANALYZE); - this.state = 6035; + this.state = 6048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6034; + this.state = 6047; this.tableActionOption(); } } - this.state = 6037; + this.state = 6050; this.match(MySqlParser.KW_TABLE); - this.state = 6038; + this.state = 6051; this.tableName(); - this.state = 6039; + this.state = 6052; this.match(MySqlParser.KW_UPDATE); - this.state = 6040; + this.state = 6053; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6041; + this.state = 6054; this.match(MySqlParser.KW_ON); - this.state = 6042; + this.state = 6055; this.columnName(); - this.state = 6046; + this.state = 6059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6043; + this.state = 6056; this.match(MySqlParser.KW_USING); - this.state = 6044; + this.state = 6057; this.match(MySqlParser.KW_DATA); - this.state = 6045; + this.state = 6058; this.match(MySqlParser.STRING_LITERAL); } } @@ -33429,29 +33538,29 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6048; + this.state = 6061; this.match(MySqlParser.KW_ANALYZE); - this.state = 6050; + this.state = 6063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6049; + this.state = 6062; this.tableActionOption(); } } - this.state = 6052; + this.state = 6065; this.match(MySqlParser.KW_TABLE); - this.state = 6053; + this.state = 6066; this.tableName(); - this.state = 6054; + this.state = 6067; this.match(MySqlParser.KW_DROP); - this.state = 6055; + this.state = 6068; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6056; + this.state = 6069; this.match(MySqlParser.KW_ON); - this.state = 6057; + this.state = 6070; this.columnNames(); } break; @@ -33473,28 +33582,28 @@ export class MySqlParser extends SQLParserBase { } public checkTable(): CheckTableContext { let localContext = new CheckTableContext(this.context, this.state); - this.enterRule(localContext, 530, MySqlParser.RULE_checkTable); + this.enterRule(localContext, 540, MySqlParser.RULE_checkTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6061; + this.state = 6074; this.match(MySqlParser.KW_CHECK); - this.state = 6062; + this.state = 6075; this.match(MySqlParser.KW_TABLE); - this.state = 6063; + this.state = 6076; this.tableNames(); - this.state = 6067; + this.state = 6080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 65 || _la === 327 || _la === 392 || _la === 396 || _la === 484 || _la === 549) { { { - this.state = 6064; + this.state = 6077; this.checkTableOption(); } } - this.state = 6069; + this.state = 6082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33516,23 +33625,23 @@ export class MySqlParser extends SQLParserBase { } public checksumTable(): ChecksumTableContext { let localContext = new ChecksumTableContext(this.context, this.state); - this.enterRule(localContext, 532, MySqlParser.RULE_checksumTable); + this.enterRule(localContext, 542, MySqlParser.RULE_checksumTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6070; + this.state = 6083; this.match(MySqlParser.KW_CHECKSUM); - this.state = 6071; + this.state = 6084; this.match(MySqlParser.KW_TABLE); - this.state = 6072; + this.state = 6085; this.tableNames(); - this.state = 6074; + this.state = 6087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392 || _la === 549) { { - this.state = 6073; + this.state = 6086; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 549)) { @@ -33563,24 +33672,24 @@ export class MySqlParser extends SQLParserBase { } public optimizeTable(): OptimizeTableContext { let localContext = new OptimizeTableContext(this.context, this.state); - this.enterRule(localContext, 534, MySqlParser.RULE_optimizeTable); + this.enterRule(localContext, 544, MySqlParser.RULE_optimizeTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6076; + this.state = 6089; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 6078; + this.state = 6091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6077; + this.state = 6090; this.tableActionOption(); } } - this.state = 6080; + this.state = 6093; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -33589,7 +33698,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6081; + this.state = 6094; this.tableNames(); } } @@ -33609,53 +33718,53 @@ export class MySqlParser extends SQLParserBase { } public repairTable(): RepairTableContext { let localContext = new RepairTableContext(this.context, this.state); - this.enterRule(localContext, 536, MySqlParser.RULE_repairTable); + this.enterRule(localContext, 546, MySqlParser.RULE_repairTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6083; + this.state = 6096; this.match(MySqlParser.KW_REPAIR); - this.state = 6085; + this.state = 6098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6084; + this.state = 6097; this.tableActionOption(); } } - this.state = 6087; + this.state = 6100; this.match(MySqlParser.KW_TABLE); - this.state = 6088; + this.state = 6101; this.tableNames(); - this.state = 6090; + this.state = 6103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 6089; + this.state = 6102; this.match(MySqlParser.KW_QUICK); } } - this.state = 6093; + this.state = 6106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6092; + this.state = 6105; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6096; + this.state = 6109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 679) { { - this.state = 6095; + this.state = 6108; this.match(MySqlParser.KW_USE_FRM); } } @@ -33678,12 +33787,12 @@ export class MySqlParser extends SQLParserBase { } public tableActionOption(): TableActionOptionContext { let localContext = new TableActionOptionContext(this.context, this.state); - this.enterRule(localContext, 538, MySqlParser.RULE_tableActionOption); + this.enterRule(localContext, 548, MySqlParser.RULE_tableActionOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6098; + this.state = 6111; _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -33710,52 +33819,52 @@ export class MySqlParser extends SQLParserBase { } public checkTableOption(): CheckTableOptionContext { let localContext = new CheckTableOptionContext(this.context, this.state); - this.enterRule(localContext, 540, MySqlParser.RULE_checkTableOption); + this.enterRule(localContext, 550, MySqlParser.RULE_checkTableOption); try { - this.state = 6107; + this.state = 6120; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 6100; + this.state = 6113; this.match(MySqlParser.KW_FOR); - this.state = 6101; + this.state = 6114; this.match(MySqlParser.KW_UPGRADE); } break; case MySqlParser.KW_QUICK: this.enterOuterAlt(localContext, 2); { - this.state = 6102; + this.state = 6115; this.match(MySqlParser.KW_QUICK); } break; case MySqlParser.KW_FAST: this.enterOuterAlt(localContext, 3); { - this.state = 6103; + this.state = 6116; this.match(MySqlParser.KW_FAST); } break; case MySqlParser.KW_MEDIUM: this.enterOuterAlt(localContext, 4); { - this.state = 6104; + this.state = 6117; this.match(MySqlParser.KW_MEDIUM); } break; case MySqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 5); { - this.state = 6105; + this.state = 6118; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_CHANGED: this.enterOuterAlt(localContext, 6); { - this.state = 6106; + this.state = 6119; this.match(MySqlParser.KW_CHANGED); } break; @@ -33779,55 +33888,55 @@ export class MySqlParser extends SQLParserBase { } public installComponent(): InstallComponentContext { let localContext = new InstallComponentContext(this.context, this.state); - this.enterRule(localContext, 542, MySqlParser.RULE_installComponent); + this.enterRule(localContext, 552, MySqlParser.RULE_installComponent); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6109; + this.state = 6122; this.match(MySqlParser.KW_INSTALL); - this.state = 6110; + this.state = 6123; this.match(MySqlParser.KW_COMPONENT); - this.state = 6111; + this.state = 6124; localContext._component_name = this.uid(); - this.state = 6116; + this.state = 6129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6112; + this.state = 6125; this.match(MySqlParser.COMMA); - this.state = 6113; + this.state = 6126; localContext._component_name = this.uid(); } } - this.state = 6118; + this.state = 6131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6128; + this.state = 6141; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 878, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { case 1: { - this.state = 6119; + this.state = 6132; this.match(MySqlParser.KW_SET); - this.state = 6120; + this.state = 6133; this.variableExpr(); - this.state = 6125; + this.state = 6138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6121; + this.state = 6134; this.match(MySqlParser.COMMA); - this.state = 6122; + this.state = 6135; this.variableExpr(); } } - this.state = 6127; + this.state = 6140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33852,12 +33961,12 @@ export class MySqlParser extends SQLParserBase { } public variableExpr(): VariableExprContext { let localContext = new VariableExprContext(this.context, this.state); - this.enterRule(localContext, 544, MySqlParser.RULE_variableExpr); + this.enterRule(localContext, 554, MySqlParser.RULE_variableExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6130; + this.state = 6143; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 531 || _la === 893 || _la === 894)) { this.errorHandler.recoverInline(this); @@ -33866,11 +33975,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6131; + this.state = 6144; localContext._system_var_name = this.fullId(); - this.state = 6132; + this.state = 6145; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6133; + this.state = 6146; this.expression(0); } } @@ -33890,30 +33999,30 @@ export class MySqlParser extends SQLParserBase { } public uninstallComponent(): UninstallComponentContext { let localContext = new UninstallComponentContext(this.context, this.state); - this.enterRule(localContext, 546, MySqlParser.RULE_uninstallComponent); + this.enterRule(localContext, 556, MySqlParser.RULE_uninstallComponent); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6135; + this.state = 6148; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6136; + this.state = 6149; this.match(MySqlParser.KW_COMPONENT); - this.state = 6137; + this.state = 6150; localContext._component_name = this.uid(); - this.state = 6142; + this.state = 6155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6138; + this.state = 6151; this.match(MySqlParser.COMMA); - this.state = 6139; + this.state = 6152; localContext._component_name = this.uid(); } } - this.state = 6144; + this.state = 6157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33935,19 +34044,19 @@ export class MySqlParser extends SQLParserBase { } public installPlugin(): InstallPluginContext { let localContext = new InstallPluginContext(this.context, this.state); - this.enterRule(localContext, 548, MySqlParser.RULE_installPlugin); + this.enterRule(localContext, 558, MySqlParser.RULE_installPlugin); try { this.enterOuterAlt(localContext, 1); { - this.state = 6145; + this.state = 6158; this.match(MySqlParser.KW_INSTALL); - this.state = 6146; + this.state = 6159; this.match(MySqlParser.KW_PLUGIN); - this.state = 6147; + this.state = 6160; localContext._pluginName = this.uid(); - this.state = 6148; + this.state = 6161; this.match(MySqlParser.KW_SONAME); - this.state = 6149; + this.state = 6162; this.match(MySqlParser.STRING_LITERAL); } } @@ -33967,15 +34076,15 @@ export class MySqlParser extends SQLParserBase { } public uninstallPlugin(): UninstallPluginContext { let localContext = new UninstallPluginContext(this.context, this.state); - this.enterRule(localContext, 550, MySqlParser.RULE_uninstallPlugin); + this.enterRule(localContext, 560, MySqlParser.RULE_uninstallPlugin); try { this.enterOuterAlt(localContext, 1); { - this.state = 6151; + this.state = 6164; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6152; + this.state = 6165; this.match(MySqlParser.KW_PLUGIN); - this.state = 6153; + this.state = 6166; localContext._pluginName = this.uid(); } } @@ -33995,96 +34104,96 @@ export class MySqlParser extends SQLParserBase { } public cloneStatement(): CloneStatementContext { let localContext = new CloneStatementContext(this.context, this.state); - this.enterRule(localContext, 552, MySqlParser.RULE_cloneStatement); + this.enterRule(localContext, 562, MySqlParser.RULE_cloneStatement); let _la: number; try { - this.state = 6185; + this.state = 6198; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6155; + this.state = 6168; this.match(MySqlParser.KW_CLONE); - this.state = 6156; + this.state = 6169; this.match(MySqlParser.KW_LOCAL); - this.state = 6157; + this.state = 6170; this.match(MySqlParser.KW_DATA); - this.state = 6158; + this.state = 6171; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6160; + this.state = 6173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6159; + this.state = 6172; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6162; + this.state = 6175; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6163; + this.state = 6176; this.match(MySqlParser.KW_CLONE); - this.state = 6164; + this.state = 6177; this.match(MySqlParser.KW_INSTANCE); - this.state = 6165; + this.state = 6178; this.match(MySqlParser.KW_FROM); - this.state = 6166; + this.state = 6179; this.userHostPort(); - this.state = 6167; + this.state = 6180; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 6168; + this.state = 6181; this.match(MySqlParser.KW_BY); - this.state = 6169; + this.state = 6182; this.match(MySqlParser.STRING_LITERAL); - this.state = 6176; + this.state = 6189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 6170; + this.state = 6183; this.match(MySqlParser.KW_DATA); - this.state = 6171; + this.state = 6184; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6173; + this.state = 6186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6172; + this.state = 6185; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6175; + this.state = 6188; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6183; + this.state = 6196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 6178; + this.state = 6191; this.match(MySqlParser.KW_REQUIRE); - this.state = 6180; + this.state = 6193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 6179; + this.state = 6192; this.match(MySqlParser.KW_NO); } } - this.state = 6182; + this.state = 6195; this.match(MySqlParser.KW_SSL); } } @@ -34109,21 +34218,21 @@ export class MySqlParser extends SQLParserBase { } public setStatement(): SetStatementContext { let localContext = new SetStatementContext(this.context, this.state); - this.enterRule(localContext, 554, MySqlParser.RULE_setStatement); + this.enterRule(localContext, 564, MySqlParser.RULE_setStatement); let _la: number; try { - this.state = 6239; + this.state = 6252; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 893, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { case 1: localContext = new SetVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6187; + this.state = 6200; this.match(MySqlParser.KW_SET); - this.state = 6188; + this.state = 6201; this.variableClause(); - this.state = 6189; + this.state = 6202; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34132,33 +34241,33 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6192; + this.state = 6205; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { case 1: { - this.state = 6190; + this.state = 6203; this.expression(0); } break; case 2: { - this.state = 6191; + this.state = 6204; this.match(MySqlParser.KW_ON); } break; } - this.state = 6203; + this.state = 6216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6194; + this.state = 6207; this.match(MySqlParser.COMMA); - this.state = 6195; + this.state = 6208; this.variableClause(); - this.state = 6196; + this.state = 6209; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34167,25 +34276,25 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6199; + this.state = 6212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: { - this.state = 6197; + this.state = 6210; this.expression(0); } break; case 2: { - this.state = 6198; + this.state = 6211; this.match(MySqlParser.KW_ON); } break; } } } - this.state = 6205; + this.state = 6218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34195,11 +34304,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetCharsetContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6206; + this.state = 6219; this.match(MySqlParser.KW_SET); - this.state = 6207; + this.state = 6220; this.charSet(); - this.state = 6210; + this.state = 6223; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34247,13 +34356,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6208; + this.state = 6221; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 6209; + this.state = 6222; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34266,11 +34375,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNamesContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6212; + this.state = 6225; this.match(MySqlParser.KW_SET); - this.state = 6213; + this.state = 6226; this.match(MySqlParser.KW_NAMES); - this.state = 6220; + this.state = 6233; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34318,16 +34427,16 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6214; + this.state = 6227; this.charsetName(); - this.state = 6217; + this.state = 6230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 6215; + this.state = 6228; this.match(MySqlParser.KW_COLLATE); - this.state = 6216; + this.state = 6229; this.collationName(); } } @@ -34336,7 +34445,7 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_DEFAULT: { - this.state = 6219; + this.state = 6232; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34349,7 +34458,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetPasswordContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6222; + this.state = 6235; this.setPasswordStatement(); } break; @@ -34357,7 +34466,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetTransactionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6223; + this.state = 6236; this.setTransactionStatement(); } break; @@ -34365,7 +34474,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetAutocommitContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6224; + this.state = 6237; this.setAutocommitStatement(); } break; @@ -34373,11 +34482,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNewValueInsideTriggerContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6225; + this.state = 6238; this.match(MySqlParser.KW_SET); - this.state = 6226; + this.state = 6239; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6227; + this.state = 6240; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34386,19 +34495,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6228; + this.state = 6241; this.expression(0); - this.state = 6236; + this.state = 6249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6229; + this.state = 6242; this.match(MySqlParser.COMMA); - this.state = 6230; + this.state = 6243; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6231; + this.state = 6244; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34407,11 +34516,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6232; + this.state = 6245; this.expression(0); } } - this.state = 6238; + this.state = 6251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34435,19 +34544,19 @@ export class MySqlParser extends SQLParserBase { } public showStatement(): ShowStatementContext { let localContext = new ShowStatementContext(this.context, this.state); - this.enterRule(localContext, 556, MySqlParser.RULE_showStatement); + this.enterRule(localContext, 566, MySqlParser.RULE_showStatement); let _la: number; try { - this.state = 6425; + this.state = 6438; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: localContext = new ShowMasterLogsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6241; + this.state = 6254; this.match(MySqlParser.KW_SHOW); - this.state = 6242; + this.state = 6255; (localContext as ShowMasterLogsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -34457,7 +34566,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6243; + this.state = 6256; this.match(MySqlParser.KW_LOGS); } break; @@ -34465,9 +34574,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowLogEventsContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6244; + this.state = 6257; this.match(MySqlParser.KW_SHOW); - this.state = 6245; + this.state = 6258; (localContext as ShowLogEventsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 559)) { @@ -34477,62 +34586,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6246; + this.state = 6259; this.match(MySqlParser.KW_EVENTS); - this.state = 6249; + this.state = 6262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 6247; + this.state = 6260; this.match(MySqlParser.KW_IN); - this.state = 6248; + this.state = 6261; (localContext as ShowLogEventsContext)._filename = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6253; + this.state = 6266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 6251; + this.state = 6264; this.match(MySqlParser.KW_FROM); - this.state = 6252; + this.state = 6265; (localContext as ShowLogEventsContext)._fromPosition = this.decimalLiteral(); } } - this.state = 6262; + this.state = 6275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6255; + this.state = 6268; this.match(MySqlParser.KW_LIMIT); - this.state = 6259; + this.state = 6272; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 896, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 895, this.context) ) { case 1: { - this.state = 6256; + this.state = 6269; (localContext as ShowLogEventsContext)._offset = this.decimalLiteral(); - this.state = 6257; + this.state = 6270; this.match(MySqlParser.COMMA); } break; } - this.state = 6261; + this.state = 6274; (localContext as ShowLogEventsContext)._rowCount = this.decimalLiteral(); } } - this.state = 6265; + this.state = 6278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6264; + this.state = 6277; this.channelOption(); } } @@ -34543,16 +34652,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowObjectFilterContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6267; + this.state = 6280; this.match(MySqlParser.KW_SHOW); - this.state = 6268; + this.state = 6281; this.showCommonEntity(); - this.state = 6270; + this.state = 6283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6269; + this.state = 6282; this.showFilter(); } } @@ -34563,29 +34672,29 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6272; + this.state = 6285; this.match(MySqlParser.KW_SHOW); - this.state = 6274; + this.state = 6287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6273; + this.state = 6286; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6277; + this.state = 6290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6276; + this.state = 6289; this.match(MySqlParser.KW_FULL); } } - this.state = 6279; + this.state = 6292; (localContext as ShowColumnsContext)._columnsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -34595,7 +34704,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6280; + this.state = 6293; (localContext as ShowColumnsContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34605,14 +34714,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6281; + this.state = 6294; this.tableName(); - this.state = 6284; + this.state = 6297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6282; + this.state = 6295; (localContext as ShowColumnsContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34622,17 +34731,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6283; + this.state = 6296; this.databaseName(); } } - this.state = 6287; + this.state = 6300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6286; + this.state = 6299; this.showFilter(); } } @@ -34643,11 +34752,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateDbContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6289; + this.state = 6302; this.match(MySqlParser.KW_SHOW); - this.state = 6290; + this.state = 6303; this.match(MySqlParser.KW_CREATE); - this.state = 6291; + this.state = 6304; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { this.errorHandler.recoverInline(this); @@ -34656,17 +34765,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6293; + this.state = 6306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 903, this.context) ) { case 1: { - this.state = 6292; + this.state = 6305; this.ifNotExists(); } break; } - this.state = 6295; + this.state = 6308; this.databaseName(); } break; @@ -34674,11 +34783,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFullIdObjectContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6296; + this.state = 6309; this.match(MySqlParser.KW_SHOW); - this.state = 6297; + this.state = 6310; this.match(MySqlParser.KW_CREATE); - this.state = 6298; + this.state = 6311; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 178 || _la === 385)) { this.errorHandler.recoverInline(this); @@ -34687,7 +34796,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6299; + this.state = 6312; this.fullId(); } break; @@ -34695,13 +34804,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6300; + this.state = 6313; this.match(MySqlParser.KW_SHOW); - this.state = 6301; + this.state = 6314; this.match(MySqlParser.KW_CREATE); - this.state = 6302; + this.state = 6315; this.match(MySqlParser.KW_FUNCTION); - this.state = 6303; + this.state = 6316; this.functionName(); } break; @@ -34709,13 +34818,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6304; + this.state = 6317; this.match(MySqlParser.KW_SHOW); - this.state = 6305; + this.state = 6318; this.match(MySqlParser.KW_CREATE); - this.state = 6306; + this.state = 6319; this.match(MySqlParser.KW_VIEW); - this.state = 6307; + this.state = 6320; this.viewName(); } break; @@ -34723,13 +34832,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6308; + this.state = 6321; this.match(MySqlParser.KW_SHOW); - this.state = 6309; + this.state = 6322; this.match(MySqlParser.KW_CREATE); - this.state = 6310; + this.state = 6323; this.match(MySqlParser.KW_TABLE); - this.state = 6311; + this.state = 6324; this.tableName(); } break; @@ -34737,13 +34846,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateUserContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6312; + this.state = 6325; this.match(MySqlParser.KW_SHOW); - this.state = 6313; + this.state = 6326; this.match(MySqlParser.KW_CREATE); - this.state = 6314; + this.state = 6327; this.match(MySqlParser.KW_USER); - this.state = 6315; + this.state = 6328; this.userName(); } break; @@ -34751,13 +34860,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowEngineContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6316; + this.state = 6329; this.match(MySqlParser.KW_SHOW); - this.state = 6317; + this.state = 6330; this.match(MySqlParser.KW_ENGINE); - this.state = 6318; + this.state = 6331; this.engineName(); - this.state = 6319; + this.state = 6332; (localContext as ShowEngineContext)._engineOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 493 || _la === 645)) { @@ -34773,9 +34882,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGlobalInfoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6321; + this.state = 6334; this.match(MySqlParser.KW_SHOW); - this.state = 6322; + this.state = 6335; this.showGlobalInfoClause(); } break; @@ -34783,9 +34892,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowErrorsContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6323; + this.state = 6336; this.match(MySqlParser.KW_SHOW); - this.state = 6324; + this.state = 6337; (localContext as ShowErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34795,26 +34904,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6332; + this.state = 6345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6325; + this.state = 6338; this.match(MySqlParser.KW_LIMIT); - this.state = 6329; + this.state = 6342; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { case 1: { - this.state = 6326; + this.state = 6339; (localContext as ShowErrorsContext)._offset = this.decimalLiteral(); - this.state = 6327; + this.state = 6340; this.match(MySqlParser.COMMA); } break; } - this.state = 6331; + this.state = 6344; (localContext as ShowErrorsContext)._rowCount = this.decimalLiteral(); } } @@ -34825,17 +34934,17 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCountErrorsContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6334; + this.state = 6347; this.match(MySqlParser.KW_SHOW); - this.state = 6335; + this.state = 6348; this.match(MySqlParser.KW_COUNT); - this.state = 6336; + this.state = 6349; this.match(MySqlParser.LR_BRACKET); - this.state = 6337; + this.state = 6350; this.match(MySqlParser.STAR); - this.state = 6338; + this.state = 6351; this.match(MySqlParser.RR_BRACKET); - this.state = 6339; + this.state = 6352; (localContext as ShowCountErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34851,16 +34960,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSchemaFilterContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 6340; + this.state = 6353; this.match(MySqlParser.KW_SHOW); - this.state = 6341; + this.state = 6354; this.showSchemaEntity(); - this.state = 6344; + this.state = 6357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6342; + this.state = 6355; (localContext as ShowSchemaFilterContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34870,17 +34979,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6343; + this.state = 6356; this.databaseName(); } } - this.state = 6347; + this.state = 6360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6346; + this.state = 6359; this.showFilter(); } } @@ -34891,13 +35000,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowPercedureCodeContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 6349; + this.state = 6362; this.match(MySqlParser.KW_SHOW); - this.state = 6350; + this.state = 6363; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6351; + this.state = 6364; this.match(MySqlParser.KW_CODE); - this.state = 6352; + this.state = 6365; (localContext as ShowPercedureCodeContext)._proc_name = this.fullId(); } break; @@ -34905,13 +35014,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowFunctionCodeContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 6353; + this.state = 6366; this.match(MySqlParser.KW_SHOW); - this.state = 6354; + this.state = 6367; this.match(MySqlParser.KW_FUNCTION); - this.state = 6355; + this.state = 6368; this.match(MySqlParser.KW_CODE); - this.state = 6356; + this.state = 6369; this.functionName(); } break; @@ -34919,27 +35028,27 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 6357; + this.state = 6370; this.match(MySqlParser.KW_SHOW); - this.state = 6358; + this.state = 6371; this.match(MySqlParser.KW_GRANTS); - this.state = 6365; + this.state = 6378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6359; + this.state = 6372; this.match(MySqlParser.KW_FOR); - this.state = 6360; + this.state = 6373; this.userOrRoleName(); - this.state = 6363; + this.state = 6376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6361; + this.state = 6374; this.match(MySqlParser.KW_USING); - this.state = 6362; + this.state = 6375; this.userOrRoleNames(); } } @@ -34953,19 +35062,19 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowIndexesContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 6367; + this.state = 6380; this.match(MySqlParser.KW_SHOW); - this.state = 6369; + this.state = 6382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6368; + this.state = 6381; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6371; + this.state = 6384; (localContext as ShowIndexesContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 93 || _la === 426)) { @@ -34975,7 +35084,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6372; + this.state = 6385; (localContext as ShowIndexesContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34985,14 +35094,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6373; + this.state = 6386; this.tableName(); - this.state = 6376; + this.state = 6389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6374; + this.state = 6387; (localContext as ShowIndexesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35002,19 +35111,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6375; + this.state = 6388; this.databaseName(); } } - this.state = 6380; + this.state = 6393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 6378; + this.state = 6391; this.match(MySqlParser.KW_WHERE); - this.state = 6379; + this.state = 6392; this.expression(0); } } @@ -35025,18 +35134,18 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowOpenTablesContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 6382; + this.state = 6395; this.match(MySqlParser.KW_SHOW); - this.state = 6383; + this.state = 6396; this.match(MySqlParser.KW_OPEN); - this.state = 6384; + this.state = 6397; this.match(MySqlParser.KW_TABLES); - this.state = 6387; + this.state = 6400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6385; + this.state = 6398; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -35045,17 +35154,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6386; + this.state = 6399; this.databaseName(); } } - this.state = 6390; + this.state = 6403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6389; + this.state = 6402; this.showFilter(); } } @@ -35066,67 +35175,67 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowProfileContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 6392; + this.state = 6405; this.match(MySqlParser.KW_SHOW); - this.state = 6393; + this.state = 6406; this.match(MySqlParser.KW_PROFILE); - this.state = 6402; + this.state = 6415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 320 || _la === 355 || _la === 358 || _la === 439 || _la === 521 || _la === 605 || _la === 655 || _la === 802) { { - this.state = 6394; + this.state = 6407; this.showProfileType(); - this.state = 6399; + this.state = 6412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6395; + this.state = 6408; this.match(MySqlParser.COMMA); - this.state = 6396; + this.state = 6409; this.showProfileType(); } } - this.state = 6401; + this.state = 6414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 6407; + this.state = 6420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6404; + this.state = 6417; this.match(MySqlParser.KW_FOR); - this.state = 6405; + this.state = 6418; this.match(MySqlParser.KW_QUERY); - this.state = 6406; + this.state = 6419; (localContext as ShowProfileContext)._queryCount = this.decimalLiteral(); } } - this.state = 6415; + this.state = 6428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6409; + this.state = 6422; this.match(MySqlParser.KW_LIMIT); - this.state = 6410; + this.state = 6423; (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); - this.state = 6413; + this.state = 6426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 509) { { - this.state = 6411; + this.state = 6424; this.match(MySqlParser.KW_OFFSET); - this.state = 6412; + this.state = 6425; (localContext as ShowProfileContext)._offset = this.decimalLiteral(); } } @@ -35140,9 +35249,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSlaveStatusContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 6417; + this.state = 6430; this.match(MySqlParser.KW_SHOW); - this.state = 6418; + this.state = 6431; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -35151,14 +35260,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6419; + this.state = 6432; this.match(MySqlParser.KW_STATUS); - this.state = 6421; + this.state = 6434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6420; + this.state = 6433; this.channelOption(); } } @@ -35169,9 +35278,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowReplicasContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 6423; + this.state = 6436; this.match(MySqlParser.KW_SHOW); - this.state = 6424; + this.state = 6437; this.match(MySqlParser.KW_REPLICAS); } break; @@ -35193,23 +35302,23 @@ export class MySqlParser extends SQLParserBase { } public variableClause(): VariableClauseContext { let localContext = new VariableClauseContext(this.context, this.state); - this.enterRule(localContext, 558, MySqlParser.RULE_variableClause); + this.enterRule(localContext, 568, MySqlParser.RULE_variableClause); let _la: number; try { - this.state = 6437; + this.state = 6450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 1); { - this.state = 6427; + this.state = 6440; this.match(MySqlParser.LOCAL_ID); } break; case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 6428; + this.state = 6441; this.match(MySqlParser.GLOBAL_ID); } break; @@ -35767,24 +35876,24 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 6434; + this.state = 6447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: { - this.state = 6431; + this.state = 6444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 870) { { - this.state = 6429; + this.state = 6442; this.match(MySqlParser.AT_SIGN); - this.state = 6430; + this.state = 6443; this.match(MySqlParser.AT_SIGN); } } - this.state = 6433; + this.state = 6446; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 450 || _la === 531 || _la === 532 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35796,7 +35905,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6436; + this.state = 6449; localContext._target = this.uid(); } break; @@ -35820,64 +35929,64 @@ export class MySqlParser extends SQLParserBase { } public showCommonEntity(): ShowCommonEntityContext { let localContext = new ShowCommonEntityContext(this.context, this.state); - this.enterRule(localContext, 560, MySqlParser.RULE_showCommonEntity); + this.enterRule(localContext, 570, MySqlParser.RULE_showCommonEntity); let _la: number; try { - this.state = 6453; + this.state = 6466; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 6439; + this.state = 6452; this.match(MySqlParser.KW_CHARACTER); - this.state = 6440; + this.state = 6453; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 6441; + this.state = 6454; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 3); { - this.state = 6442; + this.state = 6455; this.match(MySqlParser.KW_COLLATION); } break; case MySqlParser.KW_DATABASES: this.enterOuterAlt(localContext, 4); { - this.state = 6443; + this.state = 6456; this.match(MySqlParser.KW_DATABASES); } break; case MySqlParser.KW_SCHEMAS: this.enterOuterAlt(localContext, 5); { - this.state = 6444; + this.state = 6457; this.match(MySqlParser.KW_SCHEMAS); } break; case MySqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 6); { - this.state = 6445; + this.state = 6458; this.match(MySqlParser.KW_FUNCTION); - this.state = 6446; + this.state = 6459; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 7); { - this.state = 6447; + this.state = 6460; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6448; + this.state = 6461; this.match(MySqlParser.KW_STATUS); } break; @@ -35887,12 +35996,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIABLES: this.enterOuterAlt(localContext, 8); { - this.state = 6450; + this.state = 6463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 6449; + this.state = 6462; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35904,7 +36013,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6452; + this.state = 6465; _la = this.tokenStream.LA(1); if(!(_la === 645 || _la === 683)) { this.errorHandler.recoverInline(this); @@ -35935,26 +36044,26 @@ export class MySqlParser extends SQLParserBase { } public showFilter(): ShowFilterContext { let localContext = new ShowFilterContext(this.context, this.state); - this.enterRule(localContext, 562, MySqlParser.RULE_showFilter); + this.enterRule(localContext, 572, MySqlParser.RULE_showFilter); try { - this.state = 6459; + this.state = 6472; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 6455; + this.state = 6468; this.match(MySqlParser.KW_LIKE); - this.state = 6456; + this.state = 6469; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_WHERE: this.enterOuterAlt(localContext, 2); { - this.state = 6457; + this.state = 6470; this.match(MySqlParser.KW_WHERE); - this.state = 6458; + this.state = 6471; this.expression(0); } break; @@ -35978,50 +36087,50 @@ export class MySqlParser extends SQLParserBase { } public showGlobalInfoClause(): ShowGlobalInfoClauseContext { let localContext = new ShowGlobalInfoClauseContext(this.context, this.state); - this.enterRule(localContext, 564, MySqlParser.RULE_showGlobalInfoClause); + this.enterRule(localContext, 574, MySqlParser.RULE_showGlobalInfoClause); let _la: number; try { - this.state = 6478; + this.state = 6491; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ENGINES: case MySqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 1); { - this.state = 6462; + this.state = 6475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 6461; + this.state = 6474; this.match(MySqlParser.KW_STORAGE); } } - this.state = 6464; + this.state = 6477; this.match(MySqlParser.KW_ENGINES); } break; case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 2); { - this.state = 6465; + this.state = 6478; this.match(MySqlParser.KW_MASTER); - this.state = 6466; + this.state = 6479; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PLUGINS: this.enterOuterAlt(localContext, 3); { - this.state = 6467; + this.state = 6480; this.match(MySqlParser.KW_PLUGINS); } break; case MySqlParser.KW_PRIVILEGES: this.enterOuterAlt(localContext, 4); { - this.state = 6468; + this.state = 6481; this.match(MySqlParser.KW_PRIVILEGES); } break; @@ -36029,47 +36138,47 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PROCESSLIST: this.enterOuterAlt(localContext, 5); { - this.state = 6470; + this.state = 6483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6469; + this.state = 6482; this.match(MySqlParser.KW_FULL); } } - this.state = 6472; + this.state = 6485; this.match(MySqlParser.KW_PROCESSLIST); } break; case MySqlParser.KW_PROFILES: this.enterOuterAlt(localContext, 6); { - this.state = 6473; + this.state = 6486; this.match(MySqlParser.KW_PROFILES); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 7); { - this.state = 6474; + this.state = 6487; this.match(MySqlParser.KW_SLAVE); - this.state = 6475; + this.state = 6488; this.match(MySqlParser.KW_HOSTS); } break; case MySqlParser.KW_AUTHORS: this.enterOuterAlt(localContext, 8); { - this.state = 6476; + this.state = 6489; this.match(MySqlParser.KW_AUTHORS); } break; case MySqlParser.KW_CONTRIBUTORS: this.enterOuterAlt(localContext, 9); { - this.state = 6477; + this.state = 6490; this.match(MySqlParser.KW_CONTRIBUTORS); } break; @@ -36093,25 +36202,25 @@ export class MySqlParser extends SQLParserBase { } public showSchemaEntity(): ShowSchemaEntityContext { let localContext = new ShowSchemaEntityContext(this.context, this.state); - this.enterRule(localContext, 566, MySqlParser.RULE_showSchemaEntity); + this.enterRule(localContext, 576, MySqlParser.RULE_showSchemaEntity); let _la: number; try { - this.state = 6491; + this.state = 6504; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EVENTS: this.enterOuterAlt(localContext, 1); { - this.state = 6480; + this.state = 6493; this.match(MySqlParser.KW_EVENTS); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 6481; + this.state = 6494; this.match(MySqlParser.KW_TABLE); - this.state = 6482; + this.state = 6495; this.match(MySqlParser.KW_STATUS); } break; @@ -36120,34 +36229,34 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TABLES: this.enterOuterAlt(localContext, 3); { - this.state = 6484; + this.state = 6497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6483; + this.state = 6496; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6487; + this.state = 6500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6486; + this.state = 6499; this.match(MySqlParser.KW_FULL); } } - this.state = 6489; + this.state = 6502; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_TRIGGERS: this.enterOuterAlt(localContext, 4); { - this.state = 6490; + this.state = 6503; this.match(MySqlParser.KW_TRIGGERS); } break; @@ -36171,77 +36280,77 @@ export class MySqlParser extends SQLParserBase { } public showProfileType(): ShowProfileTypeContext { let localContext = new ShowProfileTypeContext(this.context, this.state); - this.enterRule(localContext, 568, MySqlParser.RULE_showProfileType); + this.enterRule(localContext, 578, MySqlParser.RULE_showProfileType); try { - this.state = 6505; + this.state = 6518; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 6493; + this.state = 6506; this.match(MySqlParser.KW_ALL); } break; case MySqlParser.KW_BLOCK: this.enterOuterAlt(localContext, 2); { - this.state = 6494; + this.state = 6507; this.match(MySqlParser.KW_BLOCK); - this.state = 6495; + this.state = 6508; this.match(MySqlParser.KW_IO); } break; case MySqlParser.KW_CONTEXT: this.enterOuterAlt(localContext, 3); { - this.state = 6496; + this.state = 6509; this.match(MySqlParser.KW_CONTEXT); - this.state = 6497; + this.state = 6510; this.match(MySqlParser.KW_SWITCHES); } break; case MySqlParser.KW_CPU: this.enterOuterAlt(localContext, 4); { - this.state = 6498; + this.state = 6511; this.match(MySqlParser.KW_CPU); } break; case MySqlParser.KW_IPC: this.enterOuterAlt(localContext, 5); { - this.state = 6499; + this.state = 6512; this.match(MySqlParser.KW_IPC); } break; case MySqlParser.KW_MEMORY: this.enterOuterAlt(localContext, 6); { - this.state = 6500; + this.state = 6513; this.match(MySqlParser.KW_MEMORY); } break; case MySqlParser.KW_PAGE: this.enterOuterAlt(localContext, 7); { - this.state = 6501; + this.state = 6514; this.match(MySqlParser.KW_PAGE); - this.state = 6502; + this.state = 6515; this.match(MySqlParser.KW_FAULTS); } break; case MySqlParser.KW_SOURCE: this.enterOuterAlt(localContext, 8); { - this.state = 6503; + this.state = 6516; this.match(MySqlParser.KW_SOURCE); } break; case MySqlParser.KW_SWAPS: this.enterOuterAlt(localContext, 9); { - this.state = 6504; + this.state = 6517; this.match(MySqlParser.KW_SWAPS); } break; @@ -36265,13 +36374,13 @@ export class MySqlParser extends SQLParserBase { } public binLogStatement(): BinLogStatementContext { let localContext = new BinLogStatementContext(this.context, this.state); - this.enterRule(localContext, 570, MySqlParser.RULE_binLogStatement); + this.enterRule(localContext, 580, MySqlParser.RULE_binLogStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6507; + this.state = 6520; this.match(MySqlParser.KW_BINLOG); - this.state = 6508; + this.state = 6521; this.match(MySqlParser.STRING_LITERAL); } } @@ -36291,35 +36400,35 @@ export class MySqlParser extends SQLParserBase { } public cacheIndexStatement(): CacheIndexStatementContext { let localContext = new CacheIndexStatementContext(this.context, this.state); - this.enterRule(localContext, 572, MySqlParser.RULE_cacheIndexStatement); + this.enterRule(localContext, 582, MySqlParser.RULE_cacheIndexStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6510; + this.state = 6523; this.match(MySqlParser.KW_CACHE); - this.state = 6511; + this.state = 6524; this.match(MySqlParser.KW_INDEX); - this.state = 6529; + this.state = 6542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 938, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 937, this.context) ) { case 1: { - this.state = 6512; + this.state = 6525; this.tableIndex(); - this.state = 6517; + this.state = 6530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6513; + this.state = 6526; this.match(MySqlParser.COMMA); - this.state = 6514; + this.state = 6527; this.tableIndex(); } } - this.state = 6519; + this.state = 6532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36327,13 +36436,13 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6520; + this.state = 6533; this.tableName(); - this.state = 6521; + this.state = 6534; this.match(MySqlParser.KW_PARTITION); - this.state = 6522; + this.state = 6535; this.match(MySqlParser.LR_BRACKET); - this.state = 6525; + this.state = 6538; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -36886,27 +36995,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6523; + this.state = 6536; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6524; + this.state = 6537; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6527; + this.state = 6540; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6531; + this.state = 6544; this.match(MySqlParser.KW_IN); - this.state = 6532; + this.state = 6545; this.databaseName(); } } @@ -36926,38 +37035,38 @@ export class MySqlParser extends SQLParserBase { } public flushStatement(): FlushStatementContext { let localContext = new FlushStatementContext(this.context, this.state); - this.enterRule(localContext, 574, MySqlParser.RULE_flushStatement); + this.enterRule(localContext, 584, MySqlParser.RULE_flushStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6534; + this.state = 6547; this.match(MySqlParser.KW_FLUSH); - this.state = 6536; + this.state = 6549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6535; + this.state = 6548; this.tableActionOption(); } } - this.state = 6538; + this.state = 6551; this.flushOption(); - this.state = 6543; + this.state = 6556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6539; + this.state = 6552; this.match(MySqlParser.COMMA); - this.state = 6540; + this.state = 6553; this.flushOption(); } } - this.state = 6545; + this.state = 6558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36979,19 +37088,19 @@ export class MySqlParser extends SQLParserBase { } public killStatement(): KillStatementContext { let localContext = new KillStatementContext(this.context, this.state); - this.enterRule(localContext, 576, MySqlParser.RULE_killStatement); + this.enterRule(localContext, 586, MySqlParser.RULE_killStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6546; + this.state = 6559; this.match(MySqlParser.KW_KILL); - this.state = 6548; + this.state = 6561; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 941, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 940, this.context) ) { case 1: { - this.state = 6547; + this.state = 6560; localContext._connectionFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 349 || _la === 548)) { @@ -37004,7 +37113,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6550; + this.state = 6563; this.expression(0); } } @@ -37024,34 +37133,34 @@ export class MySqlParser extends SQLParserBase { } public loadIndexIntoCache(): LoadIndexIntoCacheContext { let localContext = new LoadIndexIntoCacheContext(this.context, this.state); - this.enterRule(localContext, 578, MySqlParser.RULE_loadIndexIntoCache); + this.enterRule(localContext, 588, MySqlParser.RULE_loadIndexIntoCache); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6552; + this.state = 6565; this.match(MySqlParser.KW_LOAD); - this.state = 6553; + this.state = 6566; this.match(MySqlParser.KW_INDEX); - this.state = 6554; + this.state = 6567; this.match(MySqlParser.KW_INTO); - this.state = 6555; + this.state = 6568; this.match(MySqlParser.KW_CACHE); - this.state = 6556; + this.state = 6569; this.loadedTableIndexes(); - this.state = 6561; + this.state = 6574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6557; + this.state = 6570; this.match(MySqlParser.COMMA); - this.state = 6558; + this.state = 6571; this.loadedTableIndexes(); } } - this.state = 6563; + this.state = 6576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37073,28 +37182,28 @@ export class MySqlParser extends SQLParserBase { } public resetStatement(): ResetStatementContext { let localContext = new ResetStatementContext(this.context, this.state); - this.enterRule(localContext, 580, MySqlParser.RULE_resetStatement); + this.enterRule(localContext, 590, MySqlParser.RULE_resetStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6564; + this.state = 6577; this.match(MySqlParser.KW_RESET); - this.state = 6565; + this.state = 6578; this.resetOption(); - this.state = 6570; + this.state = 6583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6566; + this.state = 6579; this.match(MySqlParser.COMMA); - this.state = 6567; + this.state = 6580; this.resetOption(); } } - this.state = 6572; + this.state = 6585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37116,38 +37225,38 @@ export class MySqlParser extends SQLParserBase { } public resetOption(): ResetOptionContext { let localContext = new ResetOptionContext(this.context, this.state); - this.enterRule(localContext, 582, MySqlParser.RULE_resetOption); + this.enterRule(localContext, 592, MySqlParser.RULE_resetOption); try { - this.state = 6578; + this.state = 6591; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 1); { - this.state = 6573; + this.state = 6586; this.match(MySqlParser.KW_MASTER); } break; case MySqlParser.KW_REPLICA: this.enterOuterAlt(localContext, 2); { - this.state = 6574; + this.state = 6587; this.match(MySqlParser.KW_REPLICA); } break; case MySqlParser.KW_QUERY: this.enterOuterAlt(localContext, 3); { - this.state = 6575; + this.state = 6588; this.match(MySqlParser.KW_QUERY); - this.state = 6576; + this.state = 6589; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 4); { - this.state = 6577; + this.state = 6590; this.match(MySqlParser.KW_SLAVE); } break; @@ -37171,30 +37280,30 @@ export class MySqlParser extends SQLParserBase { } public resetPersist(): ResetPersistContext { let localContext = new ResetPersistContext(this.context, this.state); - this.enterRule(localContext, 584, MySqlParser.RULE_resetPersist); + this.enterRule(localContext, 594, MySqlParser.RULE_resetPersist); try { this.enterOuterAlt(localContext, 1); { - this.state = 6580; + this.state = 6593; this.match(MySqlParser.KW_RESET); - this.state = 6581; + this.state = 6594; this.match(MySqlParser.KW_PERSIST); - this.state = 6586; + this.state = 6599; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { case 1: { - this.state = 6583; + this.state = 6596; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { case 1: { - this.state = 6582; + this.state = 6595; this.ifExists(); } break; } - this.state = 6585; + this.state = 6598; localContext._system_var_name = this.uid(); } break; @@ -37217,14 +37326,14 @@ export class MySqlParser extends SQLParserBase { } public resetAllChannel(): ResetAllChannelContext { let localContext = new ResetAllChannelContext(this.context, this.state); - this.enterRule(localContext, 586, MySqlParser.RULE_resetAllChannel); + this.enterRule(localContext, 596, MySqlParser.RULE_resetAllChannel); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6588; + this.state = 6601; this.match(MySqlParser.KW_RESET); - this.state = 6589; + this.state = 6602; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -37233,22 +37342,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6591; + this.state = 6604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 6590; + this.state = 6603; this.match(MySqlParser.KW_ALL); } } - this.state = 6594; + this.state = 6607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6593; + this.state = 6606; this.channelOption(); } } @@ -37271,11 +37380,11 @@ export class MySqlParser extends SQLParserBase { } public reStartStatement(): ReStartStatementContext { let localContext = new ReStartStatementContext(this.context, this.state); - this.enterRule(localContext, 588, MySqlParser.RULE_reStartStatement); + this.enterRule(localContext, 598, MySqlParser.RULE_reStartStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6596; + this.state = 6609; this.match(MySqlParser.KW_RESTART); } } @@ -37295,11 +37404,11 @@ export class MySqlParser extends SQLParserBase { } public shutdownStatement(): ShutdownStatementContext { let localContext = new ShutdownStatementContext(this.context, this.state); - this.enterRule(localContext, 590, MySqlParser.RULE_shutdownStatement); + this.enterRule(localContext, 600, MySqlParser.RULE_shutdownStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6598; + this.state = 6611; this.match(MySqlParser.KW_SHUTDOWN); } } @@ -37319,19 +37428,19 @@ export class MySqlParser extends SQLParserBase { } public tableIndex(): TableIndexContext { let localContext = new TableIndexContext(this.context, this.state); - this.enterRule(localContext, 592, MySqlParser.RULE_tableIndex); + this.enterRule(localContext, 602, MySqlParser.RULE_tableIndex); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6600; + this.state = 6613; this.tableName(); - this.state = 6606; + this.state = 6619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6601; + this.state = 6614; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -37341,11 +37450,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6602; + this.state = 6615; this.match(MySqlParser.LR_BRACKET); - this.state = 6603; + this.state = 6616; this.indexNames(); - this.state = 6604; + this.state = 6617; this.match(MySqlParser.RR_BRACKET); } } @@ -37368,28 +37477,28 @@ export class MySqlParser extends SQLParserBase { } public flushOption(): FlushOptionContext { let localContext = new FlushOptionContext(this.context, this.state); - this.enterRule(localContext, 594, MySqlParser.RULE_flushOption); + this.enterRule(localContext, 604, MySqlParser.RULE_flushOption); let _la: number; try { - this.state = 6640; + this.state = 6653; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 956, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: localContext = new SimpleFlushOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6626; + this.state = 6639; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DES_KEY_FILE: { - this.state = 6608; + this.state = 6621; this.match(MySqlParser.KW_DES_KEY_FILE); } break; case MySqlParser.KW_HOSTS: { - this.state = 6609; + this.state = 6622; this.match(MySqlParser.KW_HOSTS); } break; @@ -37401,12 +37510,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_RELAY: case MySqlParser.KW_SLOW: { - this.state = 6611; + this.state = 6624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599) { { - this.state = 6610; + this.state = 6623; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599)) { this.errorHandler.recoverInline(this); @@ -37418,56 +37527,56 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6613; + this.state = 6626; this.match(MySqlParser.KW_LOGS); } break; case MySqlParser.KW_OPTIMIZER_COSTS: { - this.state = 6614; + this.state = 6627; this.match(MySqlParser.KW_OPTIMIZER_COSTS); } break; case MySqlParser.KW_PRIVILEGES: { - this.state = 6615; + this.state = 6628; this.match(MySqlParser.KW_PRIVILEGES); } break; case MySqlParser.KW_QUERY: { - this.state = 6616; + this.state = 6629; this.match(MySqlParser.KW_QUERY); - this.state = 6617; + this.state = 6630; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_STATUS: { - this.state = 6618; + this.state = 6631; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_USER_RESOURCES: { - this.state = 6619; + this.state = 6632; this.match(MySqlParser.KW_USER_RESOURCES); } break; case MySqlParser.KW_TABLES: { - this.state = 6620; + this.state = 6633; this.match(MySqlParser.KW_TABLES); - this.state = 6624; + this.state = 6637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { case 1: { - this.state = 6621; + this.state = 6634; this.match(MySqlParser.KW_WITH); - this.state = 6622; + this.state = 6635; this.match(MySqlParser.KW_READ); - this.state = 6623; + this.state = 6636; this.match(MySqlParser.KW_LOCK); } break; @@ -37483,16 +37592,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ChannelFlushOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6628; + this.state = 6641; this.match(MySqlParser.KW_RELAY); - this.state = 6629; + this.state = 6642; this.match(MySqlParser.KW_LOGS); - this.state = 6631; + this.state = 6644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6630; + this.state = 6643; this.channelOption(); } } @@ -37503,7 +37612,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableFlushOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6633; + this.state = 6646; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -37512,22 +37621,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6635; + this.state = 6648; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { case 1: { - this.state = 6634; + this.state = 6647; this.tableNames(); } break; } - this.state = 6638; + this.state = 6651; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { case 1: { - this.state = 6637; + this.state = 6650; this.flushTableOption(); } break; @@ -37552,28 +37661,28 @@ export class MySqlParser extends SQLParserBase { } public flushTableOption(): FlushTableOptionContext { let localContext = new FlushTableOptionContext(this.context, this.state); - this.enterRule(localContext, 596, MySqlParser.RULE_flushTableOption); + this.enterRule(localContext, 606, MySqlParser.RULE_flushTableOption); try { - this.state = 6647; + this.state = 6660; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 6642; + this.state = 6655; this.match(MySqlParser.KW_WITH); - this.state = 6643; + this.state = 6656; this.match(MySqlParser.KW_READ); - this.state = 6644; + this.state = 6657; this.match(MySqlParser.KW_LOCK); } break; case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 2); { - this.state = 6645; + this.state = 6658; this.match(MySqlParser.KW_FOR); - this.state = 6646; + this.state = 6659; this.match(MySqlParser.KW_EXPORT); } break; @@ -37597,23 +37706,23 @@ export class MySqlParser extends SQLParserBase { } public loadedTableIndexes(): LoadedTableIndexesContext { let localContext = new LoadedTableIndexesContext(this.context, this.state); - this.enterRule(localContext, 598, MySqlParser.RULE_loadedTableIndexes); + this.enterRule(localContext, 608, MySqlParser.RULE_loadedTableIndexes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6649; + this.state = 6662; this.tableName(); - this.state = 6657; + this.state = 6670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 6650; + this.state = 6663; this.match(MySqlParser.KW_PARTITION); - this.state = 6651; + this.state = 6664; this.match(MySqlParser.LR_BRACKET); - this.state = 6654; + this.state = 6667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -38166,35 +38275,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6652; + this.state = 6665; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6653; + this.state = 6666; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6656; + this.state = 6669; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6666; + this.state = 6679; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 961, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 6660; + this.state = 6673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6659; + this.state = 6672; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -38207,23 +38316,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6662; + this.state = 6675; this.match(MySqlParser.LR_BRACKET); - this.state = 6663; + this.state = 6676; this.indexNames(); - this.state = 6664; + this.state = 6677; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6670; + this.state = 6683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6668; + this.state = 6681; this.match(MySqlParser.KW_IGNORE); - this.state = 6669; + this.state = 6682; this.match(MySqlParser.KW_LEAVES); } } @@ -38246,12 +38355,12 @@ export class MySqlParser extends SQLParserBase { } public simpleDescribeStatement(): SimpleDescribeStatementContext { let localContext = new SimpleDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 600, MySqlParser.RULE_simpleDescribeStatement); + this.enterRule(localContext, 610, MySqlParser.RULE_simpleDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6672; + this.state = 6685; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38261,20 +38370,20 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6673; + this.state = 6686; this.tableName(); - this.state = 6676; + this.state = 6689; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 6674; + this.state = 6687; localContext._column = this.columnName(); } break; case 2: { - this.state = 6675; + this.state = 6688; localContext._pattern = this.match(MySqlParser.STRING_LITERAL); } break; @@ -38297,12 +38406,12 @@ export class MySqlParser extends SQLParserBase { } public fullDescribeStatement(): FullDescribeStatementContext { let localContext = new FullDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 602, MySqlParser.RULE_fullDescribeStatement); + this.enterRule(localContext, 612, MySqlParser.RULE_fullDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6678; + this.state = 6691; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38312,28 +38421,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6684; + this.state = 6697; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EXTENDED: { - this.state = 6679; + this.state = 6692; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_PARTITIONS: { - this.state = 6680; + this.state = 6693; this.match(MySqlParser.KW_PARTITIONS); } break; case MySqlParser.KW_FORMAT: { - this.state = 6681; + this.state = 6694; this.match(MySqlParser.KW_FORMAT); - this.state = 6682; + this.state = 6695; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6683; + this.state = 6696; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 663 || _la === 666)) { this.errorHandler.recoverInline(this); @@ -38355,7 +38464,7 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6686; + this.state = 6699; this.describeObjectClause(); } } @@ -38375,12 +38484,12 @@ export class MySqlParser extends SQLParserBase { } public analyzeDescribeStatement(): AnalyzeDescribeStatementContext { let localContext = new AnalyzeDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 604, MySqlParser.RULE_analyzeDescribeStatement); + this.enterRule(localContext, 614, MySqlParser.RULE_analyzeDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6688; + this.state = 6701; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38390,23 +38499,23 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6689; + this.state = 6702; this.match(MySqlParser.KW_ANALYZE); - this.state = 6693; + this.state = 6706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 826) { { - this.state = 6690; + this.state = 6703; this.match(MySqlParser.KW_FORMAT); - this.state = 6691; + this.state = 6704; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6692; + this.state = 6705; this.match(MySqlParser.KW_TREE); } } - this.state = 6695; + this.state = 6708; this.selectStatement(); } } @@ -38426,13 +38535,13 @@ export class MySqlParser extends SQLParserBase { } public helpStatement(): HelpStatementContext { let localContext = new HelpStatementContext(this.context, this.state); - this.enterRule(localContext, 606, MySqlParser.RULE_helpStatement); + this.enterRule(localContext, 616, MySqlParser.RULE_helpStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6697; + this.state = 6710; this.match(MySqlParser.KW_HELP); - this.state = 6698; + this.state = 6711; this.match(MySqlParser.STRING_LITERAL); } } @@ -38452,13 +38561,13 @@ export class MySqlParser extends SQLParserBase { } public useStatement(): UseStatementContext { let localContext = new UseStatementContext(this.context, this.state); - this.enterRule(localContext, 608, MySqlParser.RULE_useStatement); + this.enterRule(localContext, 618, MySqlParser.RULE_useStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6700; + this.state = 6713; this.match(MySqlParser.KW_USE); - this.state = 6701; + this.state = 6714; this.databaseName(); } } @@ -38478,73 +38587,73 @@ export class MySqlParser extends SQLParserBase { } public signalStatement(): SignalStatementContext { let localContext = new SignalStatementContext(this.context, this.state); - this.enterRule(localContext, 610, MySqlParser.RULE_signalStatement); + this.enterRule(localContext, 620, MySqlParser.RULE_signalStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6703; + this.state = 6716; this.match(MySqlParser.KW_SIGNAL); - this.state = 6711; + this.state = 6724; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6704; + this.state = 6717; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6706; + this.state = 6719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6705; + this.state = 6718; this.match(MySqlParser.KW_VALUE); } } - this.state = 6708; + this.state = 6721; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6709; + this.state = 6722; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6710; + this.state = 6723; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6722; + this.state = 6735; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 968, this.context) ) { case 1: { - this.state = 6713; + this.state = 6726; this.match(MySqlParser.KW_SET); - this.state = 6714; + this.state = 6727; this.signalConditionInformation(); - this.state = 6719; + this.state = 6732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6715; + this.state = 6728; this.match(MySqlParser.COMMA); - this.state = 6716; + this.state = 6729; this.signalConditionInformation(); } } - this.state = 6721; + this.state = 6734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38569,45 +38678,45 @@ export class MySqlParser extends SQLParserBase { } public resignalStatement(): ResignalStatementContext { let localContext = new ResignalStatementContext(this.context, this.state); - this.enterRule(localContext, 612, MySqlParser.RULE_resignalStatement); + this.enterRule(localContext, 622, MySqlParser.RULE_resignalStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6724; + this.state = 6737; this.match(MySqlParser.KW_RESIGNAL); - this.state = 6732; + this.state = 6745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6725; + this.state = 6738; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6727; + this.state = 6740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6726; + this.state = 6739; this.match(MySqlParser.KW_VALUE); } } - this.state = 6729; + this.state = 6742; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6730; + this.state = 6743; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6731; + this.state = 6744; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; @@ -38678,28 +38787,28 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6743; + this.state = 6756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 6734; + this.state = 6747; this.match(MySqlParser.KW_SET); - this.state = 6735; + this.state = 6748; this.signalConditionInformation(); - this.state = 6740; + this.state = 6753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6736; + this.state = 6749; this.match(MySqlParser.COMMA); - this.state = 6737; + this.state = 6750; this.signalConditionInformation(); } } - this.state = 6742; + this.state = 6755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38724,12 +38833,12 @@ export class MySqlParser extends SQLParserBase { } public signalConditionInformation(): SignalConditionInformationContext { let localContext = new SignalConditionInformationContext(this.context, this.state); - this.enterRule(localContext, 614, MySqlParser.RULE_signalConditionInformation); + this.enterRule(localContext, 624, MySqlParser.RULE_signalConditionInformation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6745; + this.state = 6758; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -38738,29 +38847,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6746; + this.state = 6759; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6751; + this.state = 6764; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.START_NATIONAL_STRING_LITERAL: case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 6747; + this.state = 6760; this.stringLiteral(); } break; case MySqlParser.DECIMAL_LITERAL: { - this.state = 6748; + this.state = 6761; this.match(MySqlParser.DECIMAL_LITERAL); } break; case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6749; + this.state = 6762; this.mysqlVariable(); } break; @@ -39312,7 +39421,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: case MySqlParser.ID: { - this.state = 6750; + this.state = 6763; this.simpleId(); } break; @@ -39337,38 +39446,38 @@ export class MySqlParser extends SQLParserBase { } public withStatement(): WithStatementContext { let localContext = new WithStatementContext(this.context, this.state); - this.enterRule(localContext, 616, MySqlParser.RULE_withStatement); + this.enterRule(localContext, 626, MySqlParser.RULE_withStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6753; + this.state = 6766; this.match(MySqlParser.KW_WITH); - this.state = 6755; + this.state = 6768; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: { - this.state = 6754; + this.state = 6767; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 6757; + this.state = 6770; this.commonTableExpressions(); - this.state = 6762; + this.state = 6775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6758; + this.state = 6771; this.match(MySqlParser.COMMA); - this.state = 6759; + this.state = 6772; this.commonTableExpressions(); } } - this.state = 6764; + this.state = 6777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39390,30 +39499,30 @@ export class MySqlParser extends SQLParserBase { } public tableStatement(): TableStatementContext { let localContext = new TableStatementContext(this.context, this.state); - this.enterRule(localContext, 618, MySqlParser.RULE_tableStatement); + this.enterRule(localContext, 628, MySqlParser.RULE_tableStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6765; + this.state = 6778; this.match(MySqlParser.KW_TABLE); - this.state = 6766; + this.state = 6779; this.tableName(); - this.state = 6768; + this.state = 6781; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: { - this.state = 6767; + this.state = 6780; this.orderByClause(); } break; } - this.state = 6771; + this.state = 6784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: { - this.state = 6770; + this.state = 6783; this.limitClause(); } break; @@ -39436,19 +39545,19 @@ export class MySqlParser extends SQLParserBase { } public diagnosticsStatement(): DiagnosticsStatementContext { let localContext = new DiagnosticsStatementContext(this.context, this.state); - this.enterRule(localContext, 620, MySqlParser.RULE_diagnosticsStatement); + this.enterRule(localContext, 630, MySqlParser.RULE_diagnosticsStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6773; + this.state = 6786; this.match(MySqlParser.KW_GET); - this.state = 6775; + this.state = 6788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 170) { { - this.state = 6774; + this.state = 6787; _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -39460,19 +39569,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6777; + this.state = 6790; this.match(MySqlParser.KW_DIAGNOSTICS); - this.state = 6809; + this.state = 6822; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { case 1: { { - this.state = 6778; + this.state = 6791; this.variableClause(); - this.state = 6779; + this.state = 6792; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6780; + this.state = 6793; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39481,19 +39590,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6788; + this.state = 6801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6781; + this.state = 6794; this.match(MySqlParser.COMMA); - this.state = 6782; + this.state = 6795; this.variableClause(); - this.state = 6783; + this.state = 6796; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6784; + this.state = 6797; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39504,7 +39613,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 6790; + this.state = 6803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39514,9 +39623,9 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 6791; + this.state = 6804; this.match(MySqlParser.KW_CONDITION); - this.state = 6794; + this.state = 6807; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -39526,7 +39635,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 6792; + this.state = 6805; this.decimalLiteral(); } break; @@ -40085,36 +40194,36 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6793; + this.state = 6806; this.variableClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6796; + this.state = 6809; this.variableClause(); - this.state = 6797; + this.state = 6810; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6798; + this.state = 6811; this.diagnosticsConditionInformationName(); - this.state = 6806; + this.state = 6819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6799; + this.state = 6812; this.match(MySqlParser.COMMA); - this.state = 6800; + this.state = 6813; this.variableClause(); - this.state = 6801; + this.state = 6814; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6802; + this.state = 6815; this.diagnosticsConditionInformationName(); } } - this.state = 6808; + this.state = 6821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40140,12 +40249,12 @@ export class MySqlParser extends SQLParserBase { } public diagnosticsConditionInformationName(): DiagnosticsConditionInformationNameContext { let localContext = new DiagnosticsConditionInformationNameContext(this.context, this.state); - this.enterRule(localContext, 622, MySqlParser.RULE_diagnosticsConditionInformationName); + this.enterRule(localContext, 632, MySqlParser.RULE_diagnosticsConditionInformationName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6811; + this.state = 6824; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 578 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -40172,9 +40281,9 @@ export class MySqlParser extends SQLParserBase { } public describeObjectClause(): DescribeObjectClauseContext { let localContext = new DescribeObjectClauseContext(this.context, this.state); - this.enterRule(localContext, 624, MySqlParser.RULE_describeObjectClause); + this.enterRule(localContext, 634, MySqlParser.RULE_describeObjectClause); try { - this.state = 6823; + this.state = 6836; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DELETE: @@ -40186,37 +40295,37 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeStatementsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6818; + this.state = 6831; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: { - this.state = 6813; + this.state = 6826; this.selectStatement(); } break; case MySqlParser.KW_DELETE: { - this.state = 6814; + this.state = 6827; this.deleteStatement(); } break; case MySqlParser.KW_INSERT: { - this.state = 6815; + this.state = 6828; this.insertStatement(); } break; case MySqlParser.KW_REPLACE: { - this.state = 6816; + this.state = 6829; this.replaceStatement(); } break; case MySqlParser.KW_UPDATE: { - this.state = 6817; + this.state = 6830; this.updateStatement(); } break; @@ -40229,11 +40338,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeConnectionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6820; + this.state = 6833; this.match(MySqlParser.KW_FOR); - this.state = 6821; + this.state = 6834; this.match(MySqlParser.KW_CONNECTION); - this.state = 6822; + this.state = 6835; (localContext as DescribeConnectionContext)._connection_id = this.uid(); } break; @@ -40257,11 +40366,11 @@ export class MySqlParser extends SQLParserBase { } public databaseNameCreate(): DatabaseNameCreateContext { let localContext = new DatabaseNameCreateContext(this.context, this.state); - this.enterRule(localContext, 626, MySqlParser.RULE_databaseNameCreate); + this.enterRule(localContext, 636, MySqlParser.RULE_databaseNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6825; + this.state = 6838; this.fullId(); } } @@ -40281,11 +40390,11 @@ export class MySqlParser extends SQLParserBase { } public databaseName(): DatabaseNameContext { let localContext = new DatabaseNameContext(this.context, this.state); - this.enterRule(localContext, 628, MySqlParser.RULE_databaseName); + this.enterRule(localContext, 638, MySqlParser.RULE_databaseName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6827; + this.state = 6840; this.fullId(); } } @@ -40305,11 +40414,11 @@ export class MySqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 630, MySqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 640, MySqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6829; + this.state = 6842; this.fullId(); } } @@ -40329,11 +40438,11 @@ export class MySqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 632, MySqlParser.RULE_functionName); + this.enterRule(localContext, 642, MySqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6831; + this.state = 6844; this.fullId(); } } @@ -40353,11 +40462,11 @@ export class MySqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 634, MySqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 644, MySqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6833; + this.state = 6846; this.fullId(); } } @@ -40377,11 +40486,11 @@ export class MySqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 636, MySqlParser.RULE_viewName); + this.enterRule(localContext, 646, MySqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6835; + this.state = 6848; this.fullId(); } } @@ -40401,11 +40510,11 @@ export class MySqlParser extends SQLParserBase { } public indexNameCreate(): IndexNameCreateContext { let localContext = new IndexNameCreateContext(this.context, this.state); - this.enterRule(localContext, 638, MySqlParser.RULE_indexNameCreate); + this.enterRule(localContext, 648, MySqlParser.RULE_indexNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6837; + this.state = 6850; this.uid(); } } @@ -40425,26 +40534,26 @@ export class MySqlParser extends SQLParserBase { } public indexNames(): IndexNamesContext { let localContext = new IndexNamesContext(this.context, this.state); - this.enterRule(localContext, 640, MySqlParser.RULE_indexNames); + this.enterRule(localContext, 650, MySqlParser.RULE_indexNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6839; + this.state = 6852; this.indexName(); - this.state = 6844; + this.state = 6857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6840; + this.state = 6853; this.match(MySqlParser.COMMA); - this.state = 6841; + this.state = 6854; this.indexName(); } } - this.state = 6846; + this.state = 6859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40466,11 +40575,11 @@ export class MySqlParser extends SQLParserBase { } public indexName(): IndexNameContext { let localContext = new IndexNameContext(this.context, this.state); - this.enterRule(localContext, 642, MySqlParser.RULE_indexName); + this.enterRule(localContext, 652, MySqlParser.RULE_indexName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6847; + this.state = 6860; this.uid(); } } @@ -40490,11 +40599,11 @@ export class MySqlParser extends SQLParserBase { } public groupNameCreate(): GroupNameCreateContext { let localContext = new GroupNameCreateContext(this.context, this.state); - this.enterRule(localContext, 644, MySqlParser.RULE_groupNameCreate); + this.enterRule(localContext, 654, MySqlParser.RULE_groupNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6849; + this.state = 6862; this.uid(); } } @@ -40514,11 +40623,11 @@ export class MySqlParser extends SQLParserBase { } public groupName(): GroupNameContext { let localContext = new GroupNameContext(this.context, this.state); - this.enterRule(localContext, 646, MySqlParser.RULE_groupName); + this.enterRule(localContext, 656, MySqlParser.RULE_groupName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6851; + this.state = 6864; this.uid(); } } @@ -40538,11 +40647,11 @@ export class MySqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 648, MySqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 658, MySqlParser.RULE_tableNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6853; + this.state = 6866; this.fullId(); } } @@ -40562,30 +40671,30 @@ export class MySqlParser extends SQLParserBase { } public tableNames(): TableNamesContext { let localContext = new TableNamesContext(this.context, this.state); - this.enterRule(localContext, 650, MySqlParser.RULE_tableNames); + this.enterRule(localContext, 660, MySqlParser.RULE_tableNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6855; + this.state = 6868; this.tableName(); - this.state = 6860; + this.state = 6873; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 987, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 986, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6856; + this.state = 6869; this.match(MySqlParser.COMMA); - this.state = 6857; + this.state = 6870; this.tableName(); } } } - this.state = 6862; + this.state = 6875; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 987, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 986, this.context); } } } @@ -40605,11 +40714,11 @@ export class MySqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 652, MySqlParser.RULE_tableName); + this.enterRule(localContext, 662, MySqlParser.RULE_tableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6863; + this.state = 6876; this.fullId(); } } @@ -40629,26 +40738,26 @@ export class MySqlParser extends SQLParserBase { } public userOrRoleNames(): UserOrRoleNamesContext { let localContext = new UserOrRoleNamesContext(this.context, this.state); - this.enterRule(localContext, 654, MySqlParser.RULE_userOrRoleNames); + this.enterRule(localContext, 664, MySqlParser.RULE_userOrRoleNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6865; + this.state = 6878; this.userOrRoleName(); - this.state = 6870; + this.state = 6883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6866; + this.state = 6879; this.match(MySqlParser.COMMA); - this.state = 6867; + this.state = 6880; this.userOrRoleName(); } } - this.state = 6872; + this.state = 6885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40670,22 +40779,22 @@ export class MySqlParser extends SQLParserBase { } public userOrRoleName(): UserOrRoleNameContext { let localContext = new UserOrRoleNameContext(this.context, this.state); - this.enterRule(localContext, 656, MySqlParser.RULE_userOrRoleName); + this.enterRule(localContext, 666, MySqlParser.RULE_userOrRoleName); try { - this.state = 6875; + this.state = 6888; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 988, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6873; + this.state = 6886; this.userName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6874; + this.state = 6887; this.uid(); } break; @@ -40707,30 +40816,30 @@ export class MySqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 658, MySqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 668, MySqlParser.RULE_columnNameCreate); let _la: number; try { - this.state = 6891; + this.state = 6904; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 994, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6877; + this.state = 6890; this.uid(); - this.state = 6882; + this.state = 6895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6878; + this.state = 6891; this.dottedId(); - this.state = 6880; + this.state = 6893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6879; + this.state = 6892; this.dottedId(); } } @@ -40743,24 +40852,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6885; + this.state = 6898; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: { - this.state = 6884; + this.state = 6897; this.matchWildcard(); } break; } - this.state = 6887; + this.state = 6900; this.dottedId(); - this.state = 6889; + this.state = 6902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6888; + this.state = 6901; this.dottedId(); } } @@ -40785,30 +40894,30 @@ export class MySqlParser extends SQLParserBase { } public columnNames(): ColumnNamesContext { let localContext = new ColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 660, MySqlParser.RULE_columnNames); + this.enterRule(localContext, 670, MySqlParser.RULE_columnNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6893; + this.state = 6906; this.columnName(); - this.state = 6898; + this.state = 6911; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 995, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 994, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6894; + this.state = 6907; this.match(MySqlParser.COMMA); - this.state = 6895; + this.state = 6908; this.columnName(); } } } - this.state = 6900; + this.state = 6913; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 995, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 994, this.context); } } } @@ -40828,29 +40937,29 @@ export class MySqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 662, MySqlParser.RULE_columnName); + this.enterRule(localContext, 672, MySqlParser.RULE_columnName); try { - this.state = 6916; + this.state = 6929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6901; + this.state = 6914; this.uid(); - this.state = 6906; + this.state = 6919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { case 1: { - this.state = 6902; + this.state = 6915; this.dottedId(); - this.state = 6904; + this.state = 6917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { case 1: { - this.state = 6903; + this.state = 6916; this.dottedId(); } break; @@ -40863,24 +40972,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6909; + this.state = 6922; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { case 1: { - this.state = 6908; + this.state = 6921; this.matchWildcard(); } break; } - this.state = 6911; + this.state = 6924; this.dottedId(); - this.state = 6913; + this.state = 6926; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 6912; + this.state = 6925; this.dottedId(); } break; @@ -40890,7 +40999,7 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6915; + this.state = 6928; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -40914,11 +41023,11 @@ export class MySqlParser extends SQLParserBase { } public tableSpaceNameCreate(): TableSpaceNameCreateContext { let localContext = new TableSpaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 664, MySqlParser.RULE_tableSpaceNameCreate); + this.enterRule(localContext, 674, MySqlParser.RULE_tableSpaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6918; + this.state = 6931; this.uid(); } } @@ -40938,11 +41047,11 @@ export class MySqlParser extends SQLParserBase { } public tableSpaceName(): TableSpaceNameContext { let localContext = new TableSpaceNameContext(this.context, this.state); - this.enterRule(localContext, 666, MySqlParser.RULE_tableSpaceName); + this.enterRule(localContext, 676, MySqlParser.RULE_tableSpaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6920; + this.state = 6933; this.uid(); } } @@ -40962,11 +41071,11 @@ export class MySqlParser extends SQLParserBase { } public partitionNameCreate(): PartitionNameCreateContext { let localContext = new PartitionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 668, MySqlParser.RULE_partitionNameCreate); + this.enterRule(localContext, 678, MySqlParser.RULE_partitionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6922; + this.state = 6935; this.uid(); } } @@ -40986,30 +41095,30 @@ export class MySqlParser extends SQLParserBase { } public partitionNames(): PartitionNamesContext { let localContext = new PartitionNamesContext(this.context, this.state); - this.enterRule(localContext, 670, MySqlParser.RULE_partitionNames); + this.enterRule(localContext, 680, MySqlParser.RULE_partitionNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6924; + this.state = 6937; this.partitionName(); - this.state = 6929; + this.state = 6942; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6925; + this.state = 6938; this.match(MySqlParser.COMMA); - this.state = 6926; + this.state = 6939; this.partitionName(); } } } - this.state = 6931; + this.state = 6944; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); } } } @@ -41029,11 +41138,11 @@ export class MySqlParser extends SQLParserBase { } public partitionName(): PartitionNameContext { let localContext = new PartitionNameContext(this.context, this.state); - this.enterRule(localContext, 672, MySqlParser.RULE_partitionName); + this.enterRule(localContext, 682, MySqlParser.RULE_partitionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6932; + this.state = 6945; this.uid(); } } @@ -41053,28 +41162,28 @@ export class MySqlParser extends SQLParserBase { } public indexColumnName(): IndexColumnNameContext { let localContext = new IndexColumnNameContext(this.context, this.state); - this.enterRule(localContext, 674, MySqlParser.RULE_indexColumnName); + this.enterRule(localContext, 684, MySqlParser.RULE_indexColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6942; + this.state = 6955; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 6934; + this.state = 6947; this.uid(); - this.state = 6939; + this.state = 6952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { case 1: { - this.state = 6935; + this.state = 6948; this.match(MySqlParser.LR_BRACKET); - this.state = 6936; + this.state = 6949; this.decimalLiteral(); - this.state = 6937; + this.state = 6950; this.match(MySqlParser.RR_BRACKET); } break; @@ -41083,17 +41192,17 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6941; + this.state = 6954; this.expression(0); } break; } - this.state = 6945; + this.state = 6958; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { case 1: { - this.state = 6944; + this.state = 6957; localContext._sortType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -41124,15 +41233,15 @@ export class MySqlParser extends SQLParserBase { } public userHostPort(): UserHostPortContext { let localContext = new UserHostPortContext(this.context, this.state); - this.enterRule(localContext, 676, MySqlParser.RULE_userHostPort); + this.enterRule(localContext, 686, MySqlParser.RULE_userHostPort); try { this.enterOuterAlt(localContext, 1); { - this.state = 6947; + this.state = 6960; this.userAtHost(); - this.state = 6948; + this.state = 6961; this.match(MySqlParser.COLON_SYMB); - this.state = 6949; + this.state = 6962; this.decimalLiteral(); } } @@ -41152,13 +41261,13 @@ export class MySqlParser extends SQLParserBase { } public userAtHost(): UserAtHostContext { let localContext = new UserAtHostContext(this.context, this.state); - this.enterRule(localContext, 678, MySqlParser.RULE_userAtHost); + this.enterRule(localContext, 688, MySqlParser.RULE_userAtHost); try { this.enterOuterAlt(localContext, 1); { - this.state = 6951; + this.state = 6964; this.simpleUserName(); - this.state = 6952; + this.state = 6965; this.match(MySqlParser.HOST_IP_ADDRESS); } } @@ -41178,36 +41287,36 @@ export class MySqlParser extends SQLParserBase { } public simpleUserName(): SimpleUserNameContext { let localContext = new SimpleUserNameContext(this.context, this.state); - this.enterRule(localContext, 680, MySqlParser.RULE_simpleUserName); + this.enterRule(localContext, 690, MySqlParser.RULE_simpleUserName); try { - this.state = 6958; + this.state = 6971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6954; + this.state = 6967; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6955; + this.state = 6968; this.match(MySqlParser.ID); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6956; + this.state = 6969; this.match(MySqlParser.KW_ADMIN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6957; + this.state = 6970; this.keywordsCanBeId(); } break; @@ -41229,12 +41338,12 @@ export class MySqlParser extends SQLParserBase { } public hostName(): HostNameContext { let localContext = new HostNameContext(this.context, this.state); - this.enterRule(localContext, 682, MySqlParser.RULE_hostName); + this.enterRule(localContext, 692, MySqlParser.RULE_hostName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6960; + this.state = 6973; _la = this.tokenStream.LA(1); if(!(((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0))) { this.errorHandler.recoverInline(this); @@ -41261,23 +41370,23 @@ export class MySqlParser extends SQLParserBase { } public userName(): UserNameContext { let localContext = new UserNameContext(this.context, this.state); - this.enterRule(localContext, 684, MySqlParser.RULE_userName); + this.enterRule(localContext, 694, MySqlParser.RULE_userName); let _la: number; try { - this.state = 6967; + this.state = 6980; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6962; + this.state = 6975; this.simpleUserName(); - this.state = 6964; + this.state = 6977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0)) { { - this.state = 6963; + this.state = 6976; this.hostName(); } } @@ -41287,7 +41396,7 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6966; + this.state = 6979; this.currentUserExpression(); } break; @@ -41309,12 +41418,12 @@ export class MySqlParser extends SQLParserBase { } public mysqlVariable(): MysqlVariableContext { let localContext = new MysqlVariableContext(this.context, this.state); - this.enterRule(localContext, 686, MySqlParser.RULE_mysqlVariable); + this.enterRule(localContext, 696, MySqlParser.RULE_mysqlVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6969; + this.state = 6982; _la = this.tokenStream.LA(1); if(!(_la === 892 || _la === 893)) { this.errorHandler.recoverInline(this); @@ -41341,36 +41450,36 @@ export class MySqlParser extends SQLParserBase { } public charsetName(): CharsetNameContext { let localContext = new CharsetNameContext(this.context, this.state); - this.enterRule(localContext, 688, MySqlParser.RULE_charsetName); + this.enterRule(localContext, 698, MySqlParser.RULE_charsetName); try { - this.state = 6975; + this.state = 6988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6971; + this.state = 6984; this.match(MySqlParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6972; + this.state = 6985; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6973; + this.state = 6986; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6974; + this.state = 6987; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; @@ -41392,11 +41501,11 @@ export class MySqlParser extends SQLParserBase { } public collationName(): CollationNameContext { let localContext = new CollationNameContext(this.context, this.state); - this.enterRule(localContext, 690, MySqlParser.RULE_collationName); + this.enterRule(localContext, 700, MySqlParser.RULE_collationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6977; + this.state = 6990; this.uid(); } } @@ -41416,9 +41525,9 @@ export class MySqlParser extends SQLParserBase { } public engineName(): EngineNameContext { let localContext = new EngineNameContext(this.context, this.state); - this.enterRule(localContext, 692, MySqlParser.RULE_engineName); + this.enterRule(localContext, 702, MySqlParser.RULE_engineName); try { - this.state = 6982; + this.state = 6995; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONNECT: @@ -41436,21 +41545,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TOKUDB: this.enterOuterAlt(localContext, 1); { - this.state = 6979; + this.state = 6992; this.engineNameBase(); } break; case MySqlParser.ID: this.enterOuterAlt(localContext, 2); { - this.state = 6980; + this.state = 6993; this.match(MySqlParser.ID); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6981; + this.state = 6994; this.match(MySqlParser.STRING_LITERAL); } break; @@ -41474,12 +41583,12 @@ export class MySqlParser extends SQLParserBase { } public engineNameBase(): EngineNameBaseContext { let localContext = new EngineNameBaseContext(this.context, this.state); - this.enterRule(localContext, 694, MySqlParser.RULE_engineNameBase); + this.enterRule(localContext, 704, MySqlParser.RULE_engineNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6984; + this.state = 6997; _la = this.tokenStream.LA(1); if(!(_la === 348 || ((((_la - 797)) & ~0x1F) === 0 && ((1 << (_la - 797)) & 4095) !== 0))) { this.errorHandler.recoverInline(this); @@ -41506,46 +41615,46 @@ export class MySqlParser extends SQLParserBase { } public uuidSet(): UuidSetContext { let localContext = new UuidSetContext(this.context, this.state); - this.enterRule(localContext, 696, MySqlParser.RULE_uuidSet); + this.enterRule(localContext, 706, MySqlParser.RULE_uuidSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6986; + this.state = 6999; this.decimalLiteral(); - this.state = 6987; + this.state = 7000; this.match(MySqlParser.MINUS); - this.state = 6988; + this.state = 7001; this.decimalLiteral(); - this.state = 6989; + this.state = 7002; this.match(MySqlParser.MINUS); - this.state = 6990; + this.state = 7003; this.decimalLiteral(); - this.state = 6991; + this.state = 7004; this.match(MySqlParser.MINUS); - this.state = 6992; + this.state = 7005; this.decimalLiteral(); - this.state = 6993; + this.state = 7006; this.match(MySqlParser.MINUS); - this.state = 6994; + this.state = 7007; this.decimalLiteral(); - this.state = 7000; + this.state = 7013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6995; + this.state = 7008; this.match(MySqlParser.COLON_SYMB); - this.state = 6996; + this.state = 7009; this.decimalLiteral(); - this.state = 6997; + this.state = 7010; this.match(MySqlParser.MINUS); - this.state = 6998; + this.state = 7011; this.decimalLiteral(); } } - this.state = 7002; + this.state = 7015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 878); @@ -41567,30 +41676,30 @@ export class MySqlParser extends SQLParserBase { } public xid(): XidContext { let localContext = new XidContext(this.context, this.state); - this.enterRule(localContext, 698, MySqlParser.RULE_xid); + this.enterRule(localContext, 708, MySqlParser.RULE_xid); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7004; + this.state = 7017; localContext._globalTableUid = this.xuidStringId(); - this.state = 7011; + this.state = 7024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7005; + this.state = 7018; this.match(MySqlParser.COMMA); - this.state = 7006; + this.state = 7019; localContext._qualifier = this.xuidStringId(); - this.state = 7009; + this.state = 7022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7007; + this.state = 7020; this.match(MySqlParser.COMMA); - this.state = 7008; + this.state = 7021; localContext._idFormat = this.decimalLiteral(); } } @@ -41616,40 +41725,40 @@ export class MySqlParser extends SQLParserBase { } public xuidStringId(): XuidStringIdContext { let localContext = new XuidStringIdContext(this.context, this.state); - this.enterRule(localContext, 700, MySqlParser.RULE_xuidStringId); + this.enterRule(localContext, 710, MySqlParser.RULE_xuidStringId); let _la: number; try { - this.state = 7020; + this.state = 7033; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7013; + this.state = 7026; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BIT_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7014; + this.state = 7027; this.match(MySqlParser.BIT_STRING); } break; case MySqlParser.HEXADECIMAL_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7016; + this.state = 7029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7015; + this.state = 7028; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } - this.state = 7018; + this.state = 7031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 884); @@ -41675,18 +41784,18 @@ export class MySqlParser extends SQLParserBase { } public fullId(): FullIdContext { let localContext = new FullIdContext(this.context, this.state); - this.enterRule(localContext, 702, MySqlParser.RULE_fullId); + this.enterRule(localContext, 712, MySqlParser.RULE_fullId); try { this.enterOuterAlt(localContext, 1); { - this.state = 7022; + this.state = 7035; this.uid(); - this.state = 7024; + this.state = 7037; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1015, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { case 1: { - this.state = 7023; + this.state = 7036; this.dottedId(); } break; @@ -41709,26 +41818,26 @@ export class MySqlParser extends SQLParserBase { } public uidList(): UidListContext { let localContext = new UidListContext(this.context, this.state); - this.enterRule(localContext, 704, MySqlParser.RULE_uidList); + this.enterRule(localContext, 714, MySqlParser.RULE_uidList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7026; + this.state = 7039; this.uid(); - this.state = 7031; + this.state = 7044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7027; + this.state = 7040; this.match(MySqlParser.COMMA); - this.state = 7028; + this.state = 7041; this.uid(); } } - this.state = 7033; + this.state = 7046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41750,9 +41859,9 @@ export class MySqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 706, MySqlParser.RULE_uid); + this.enterRule(localContext, 716, MySqlParser.RULE_uid); try { - this.state = 7037; + this.state = 7050; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -42304,21 +42413,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 7034; + this.state = 7047; this.simpleId(); } break; case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7035; + this.state = 7048; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7036; + this.state = 7049; this.match(MySqlParser.STRING_LITERAL); } break; @@ -42342,71 +42451,71 @@ export class MySqlParser extends SQLParserBase { } public simpleId(): SimpleIdContext { let localContext = new SimpleIdContext(this.context, this.state); - this.enterRule(localContext, 708, MySqlParser.RULE_simpleId); + this.enterRule(localContext, 718, MySqlParser.RULE_simpleId); try { - this.state = 7048; + this.state = 7061; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7039; + this.state = 7052; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7040; + this.state = 7053; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7041; + this.state = 7054; this.transactionLevelBase(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7042; + this.state = 7055; this.engineNameBase(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7043; + this.state = 7056; this.privilegesBase(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7044; + this.state = 7057; this.intervalTypeBase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7045; + this.state = 7058; this.dataTypeBase(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7046; + this.state = 7059; this.keywordsCanBeId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7047; + this.state = 7060; this.scalarFunctionName(); } break; @@ -42428,26 +42537,26 @@ export class MySqlParser extends SQLParserBase { } public dottedId(): DottedIdContext { let localContext = new DottedIdContext(this.context, this.state); - this.enterRule(localContext, 710, MySqlParser.RULE_dottedId); + this.enterRule(localContext, 720, MySqlParser.RULE_dottedId); try { - this.state = 7054; + this.state = 7067; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7050; + this.state = 7063; this.match(MySqlParser.DOT); - this.state = 7051; + this.state = 7064; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7052; + this.state = 7065; this.match(MySqlParser.DOT); - this.state = 7053; + this.state = 7066; this.uid(); } break; @@ -42469,12 +42578,12 @@ export class MySqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 712, MySqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 722, MySqlParser.RULE_decimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7056; + this.state = 7069; _la = this.tokenStream.LA(1); if(!(((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0))) { this.errorHandler.recoverInline(this); @@ -42501,15 +42610,15 @@ export class MySqlParser extends SQLParserBase { } public fileSizeLiteral(): FileSizeLiteralContext { let localContext = new FileSizeLiteralContext(this.context, this.state); - this.enterRule(localContext, 714, MySqlParser.RULE_fileSizeLiteral); + this.enterRule(localContext, 724, MySqlParser.RULE_fileSizeLiteral); try { - this.state = 7060; + this.state = 7073; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FILESIZE_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7058; + this.state = 7071; this.match(MySqlParser.FILESIZE_LITERAL); } break; @@ -42521,7 +42630,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 7059; + this.state = 7072; this.decimalLiteral(); } break; @@ -42545,46 +42654,46 @@ export class MySqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 716, MySqlParser.RULE_stringLiteral); + this.enterRule(localContext, 726, MySqlParser.RULE_stringLiteral); let _la: number; try { let alternative: number; - this.state = 7085; + this.state = 7098; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7067; + this.state = 7080; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7063; + this.state = 7076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7062; + this.state = 7075; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7065; + this.state = 7078; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7066; + this.state = 7079; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7070; + this.state = 7083; this.errorHandler.sync(this); alternative = 1; do { @@ -42592,7 +42701,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 7069; + this.state = 7082; this.match(MySqlParser.STRING_LITERAL); } } @@ -42600,52 +42709,52 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7072; + this.state = 7085; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7079; + this.state = 7092; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7075; + this.state = 7088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7074; + this.state = 7087; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7077; + this.state = 7090; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7078; + this.state = 7091; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7083; + this.state = 7096; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { case 1: { - this.state = 7081; + this.state = 7094; this.match(MySqlParser.KW_COLLATE); - this.state = 7082; + this.state = 7095; this.collationName(); } break; @@ -42670,12 +42779,12 @@ export class MySqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 718, MySqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 728, MySqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7087; + this.state = 7100; _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179)) { this.errorHandler.recoverInline(this); @@ -42702,22 +42811,22 @@ export class MySqlParser extends SQLParserBase { } public hexadecimalLiteral(): HexadecimalLiteralContext { let localContext = new HexadecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 720, MySqlParser.RULE_hexadecimalLiteral); + this.enterRule(localContext, 730, MySqlParser.RULE_hexadecimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7090; + this.state = 7103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7089; + this.state = 7102; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7092; + this.state = 7105; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } @@ -42737,22 +42846,22 @@ export class MySqlParser extends SQLParserBase { } public nullNotNull(): NullNotNullContext { let localContext = new NullNotNullContext(this.context, this.state); - this.enterRule(localContext, 722, MySqlParser.RULE_nullNotNull); + this.enterRule(localContext, 732, MySqlParser.RULE_nullNotNull); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7095; + this.state = 7108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7094; + this.state = 7107; this.match(MySqlParser.KW_NOT); } } - this.state = 7097; + this.state = 7110; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { this.errorHandler.recoverInline(this); @@ -42779,77 +42888,77 @@ export class MySqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 724, MySqlParser.RULE_constant); + this.enterRule(localContext, 734, MySqlParser.RULE_constant); let _la: number; try { - this.state = 7111; + this.state = 7124; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1030, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7099; + this.state = 7112; this.stringLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7100; + this.state = 7113; this.decimalLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7101; + this.state = 7114; this.match(MySqlParser.MINUS); - this.state = 7102; + this.state = 7115; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7103; + this.state = 7116; this.hexadecimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7104; + this.state = 7117; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7105; + this.state = 7118; this.match(MySqlParser.REAL_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7106; + this.state = 7119; this.match(MySqlParser.BIT_STRING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7108; + this.state = 7121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7107; + this.state = 7120; this.match(MySqlParser.KW_NOT); } } - this.state = 7110; + this.state = 7123; localContext._nullLiteral = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { @@ -42879,18 +42988,18 @@ export class MySqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 726, MySqlParser.RULE_dataType); + this.enterRule(localContext, 736, MySqlParser.RULE_dataType); let _la: number; try { let alternative: number; - this.state = 7239; + this.state = 7252; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: localContext = new StringDataTypeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7113; + this.state = 7126; (localContext as StringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 31239) !== 0) || _la === 498)) { @@ -42900,62 +43009,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7115; + this.state = 7128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 7114; + this.state = 7127; this.match(MySqlParser.KW_VARYING); } } - this.state = 7118; + this.state = 7131; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { case 1: { - this.state = 7117; + this.state = 7130; this.lengthOneDimension(); } break; } - this.state = 7121; + this.state = 7134; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 7120; + this.state = 7133; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7126; + this.state = 7139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { case 1: { - this.state = 7123; + this.state = 7136; this.charSet(); - this.state = 7124; + this.state = 7137; this.charsetName(); } break; } - this.state = 7131; + this.state = 7144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { case 1: { - this.state = 7128; + this.state = 7141; this.match(MySqlParser.KW_COLLATE); - this.state = 7129; + this.state = 7142; this.collationName(); } break; case 2: { - this.state = 7130; + this.state = 7143; this.match(MySqlParser.KW_BINARY); } break; @@ -42966,9 +43075,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalVaryingStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7133; + this.state = 7146; this.match(MySqlParser.KW_NATIONAL); - this.state = 7134; + this.state = 7147; (localContext as NationalVaryingStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224)) { @@ -42978,24 +43087,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7135; + this.state = 7148; this.match(MySqlParser.KW_VARYING); - this.state = 7137; + this.state = 7150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { case 1: { - this.state = 7136; + this.state = 7149; this.lengthOneDimension(); } break; } - this.state = 7140; + this.state = 7153; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { case 1: { - this.state = 7139; + this.state = 7152; this.match(MySqlParser.KW_BINARY); } break; @@ -43006,9 +43115,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7142; + this.state = 7155; this.match(MySqlParser.KW_NATIONAL); - this.state = 7143; + this.state = 7156; (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224 || _la === 225)) { @@ -43018,22 +43127,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7145; + this.state = 7158; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7144; + this.state = 7157; this.lengthOneDimension(); } break; } - this.state = 7148; + this.state = 7161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { case 1: { - this.state = 7147; + this.state = 7160; this.match(MySqlParser.KW_BINARY); } break; @@ -43044,26 +43153,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7150; + this.state = 7163; this.match(MySqlParser.KW_NCHAR); - this.state = 7151; + this.state = 7164; (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.KW_VARCHAR); - this.state = 7153; + this.state = 7166; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: { - this.state = 7152; + this.state = 7165; this.lengthOneDimension(); } break; } - this.state = 7156; + this.state = 7169; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: { - this.state = 7155; + this.state = 7168; this.match(MySqlParser.KW_BINARY); } break; @@ -43074,7 +43183,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7158; + this.state = 7171; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4095) !== 0))) { @@ -43084,24 +43193,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7160; + this.state = 7173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { case 1: { - this.state = 7159; + this.state = 7172; this.lengthOneDimension(); } break; } - this.state = 7165; + this.state = 7178; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7162; + this.state = 7175; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43113,9 +43222,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7167; + this.state = 7180; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context); } } break; @@ -43123,26 +43232,26 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7168; + this.state = 7181; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_REAL); - this.state = 7170; + this.state = 7183; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7169; + this.state = 7182; this.lengthTwoDimension(); } break; } - this.state = 7175; + this.state = 7188; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7172; + this.state = 7185; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43154,9 +43263,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7177; + this.state = 7190; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context); } } break; @@ -43164,36 +43273,36 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7178; + this.state = 7191; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_DOUBLE); - this.state = 7180; + this.state = 7193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 212) { { - this.state = 7179; + this.state = 7192; this.match(MySqlParser.KW_PRECISION); } } - this.state = 7183; + this.state = 7196; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 7182; + this.state = 7195; this.lengthTwoDimension(); } break; } - this.state = 7188; + this.state = 7201; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7185; + this.state = 7198; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43205,9 +43314,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7190; + this.state = 7203; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context); } } break; @@ -43215,7 +43324,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7191; + this.state = 7204; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 213)) & ~0x1F) === 0 && ((1 << (_la - 213)) & 63) !== 0) || _la === 403)) { @@ -43225,24 +43334,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7193; + this.state = 7206; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 7192; + this.state = 7205; this.lengthTwoOptionalDimension(); } break; } - this.state = 7198; + this.state = 7211; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7195; + this.state = 7208; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43254,9 +43363,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7200; + this.state = 7213; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context); } } break; @@ -43264,7 +43373,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleDataTypeContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7201; + this.state = 7214; (localContext as SimpleDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 4237313) !== 0) || _la === 321 || _la === 322)) { @@ -43280,7 +43389,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7202; + this.state = 7215; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 2831) !== 0) || _la === 319)) { @@ -43290,12 +43399,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7204; + this.state = 7217; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: { - this.state = 7203; + this.state = 7216; this.lengthOneDimension(); } break; @@ -43306,7 +43415,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CollectionDataTypeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7206; + this.state = 7219; (localContext as CollectionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 239)) { @@ -43316,26 +43425,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7207; + this.state = 7220; this.collectionOptions(); - this.state = 7209; + this.state = 7222; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7208; + this.state = 7221; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7214; + this.state = 7227; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: { - this.state = 7211; + this.state = 7224; this.charSet(); - this.state = 7212; + this.state = 7225; this.charsetName(); } break; @@ -43346,7 +43455,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SpatialDataTypeContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7216; + this.state = 7229; (localContext as SpatialDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 442 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 511) !== 0))) { @@ -43356,14 +43465,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7219; + this.state = 7232; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { case 1: { - this.state = 7217; + this.state = 7230; this.match(MySqlParser.KW_SRID); - this.state = 7218; + this.state = 7231; this.decimalLiteral(); } break; @@ -43374,48 +43483,48 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarcharDataTypeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7221; + this.state = 7234; (localContext as LongVarcharDataTypeContext)._typeName = this.match(MySqlParser.KW_LONG); - this.state = 7223; + this.state = 7236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 7222; + this.state = 7235; this.match(MySqlParser.KW_VARCHAR); } } - this.state = 7226; + this.state = 7239; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { case 1: { - this.state = 7225; + this.state = 7238; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7231; + this.state = 7244; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { case 1: { - this.state = 7228; + this.state = 7241; this.charSet(); - this.state = 7229; + this.state = 7242; this.charsetName(); } break; } - this.state = 7235; + this.state = 7248; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: { - this.state = 7233; + this.state = 7246; this.match(MySqlParser.KW_COLLATE); - this.state = 7234; + this.state = 7247; this.collationName(); } break; @@ -43426,9 +43535,9 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarbinaryDataTypeContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7237; + this.state = 7250; this.match(MySqlParser.KW_LONG); - this.state = 7238; + this.state = 7251; this.match(MySqlParser.KW_VARBINARY); } break; @@ -43450,32 +43559,32 @@ export class MySqlParser extends SQLParserBase { } public collectionOptions(): CollectionOptionsContext { let localContext = new CollectionOptionsContext(this.context, this.state); - this.enterRule(localContext, 728, MySqlParser.RULE_collectionOptions); + this.enterRule(localContext, 738, MySqlParser.RULE_collectionOptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7241; + this.state = 7254; this.match(MySqlParser.LR_BRACKET); - this.state = 7242; + this.state = 7255; this.match(MySqlParser.STRING_LITERAL); - this.state = 7247; + this.state = 7260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7243; + this.state = 7256; this.match(MySqlParser.COMMA); - this.state = 7244; + this.state = 7257; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7249; + this.state = 7262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7250; + this.state = 7263; this.match(MySqlParser.RR_BRACKET); } } @@ -43495,18 +43604,18 @@ export class MySqlParser extends SQLParserBase { } public convertedDataType(): ConvertedDataTypeContext { let localContext = new ConvertedDataTypeContext(this.context, this.state); - this.enterRule(localContext, 730, MySqlParser.RULE_convertedDataType); + this.enterRule(localContext, 740, MySqlParser.RULE_convertedDataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7274; + this.state = 7287; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: case MySqlParser.KW_NCHAR: { - this.state = 7252; + this.state = 7265; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 498)) { @@ -43516,12 +43625,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7254; + this.state = 7267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7253; + this.state = 7266; this.lengthOneDimension(); } } @@ -43530,26 +43639,26 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_CHAR: { - this.state = 7256; + this.state = 7269; localContext._typeName = this.match(MySqlParser.KW_CHAR); - this.state = 7258; + this.state = 7271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7257; + this.state = 7270; this.lengthOneDimension(); } } - this.state = 7263; + this.state = 7276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7260; + this.state = 7273; this.charSet(); - this.state = 7261; + this.state = 7274; this.charsetName(); } } @@ -43563,7 +43672,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DATETIME: case MySqlParser.KW_JSON: { - this.state = 7265; + this.state = 7278; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 1441857) !== 0) || _la === 442)) { @@ -43578,7 +43687,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DECIMAL: case MySqlParser.KW_DEC: { - this.state = 7266; + this.state = 7279; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 216 || _la === 217)) { @@ -43588,12 +43697,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7268; + this.state = 7281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7267; + this.state = 7280; this.lengthTwoOptionalDimension(); } } @@ -43603,7 +43712,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_UNSIGNED: case MySqlParser.KW_SIGNED: { - this.state = 7270; + this.state = 7283; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43612,12 +43721,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7272; + this.state = 7285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 208) { { - this.state = 7271; + this.state = 7284; _la = this.tokenStream.LA(1); if(!(_la === 202 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -43634,12 +43743,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7277; + this.state = 7290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 7276; + this.state = 7289; this.match(MySqlParser.KW_ARRAY); } } @@ -43662,15 +43771,15 @@ export class MySqlParser extends SQLParserBase { } public lengthOneDimension(): LengthOneDimensionContext { let localContext = new LengthOneDimensionContext(this.context, this.state); - this.enterRule(localContext, 732, MySqlParser.RULE_lengthOneDimension); + this.enterRule(localContext, 742, MySqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7279; + this.state = 7292; this.match(MySqlParser.LR_BRACKET); - this.state = 7280; + this.state = 7293; this.decimalLiteral(); - this.state = 7281; + this.state = 7294; this.match(MySqlParser.RR_BRACKET); } } @@ -43690,19 +43799,19 @@ export class MySqlParser extends SQLParserBase { } public lengthTwoDimension(): LengthTwoDimensionContext { let localContext = new LengthTwoDimensionContext(this.context, this.state); - this.enterRule(localContext, 734, MySqlParser.RULE_lengthTwoDimension); + this.enterRule(localContext, 744, MySqlParser.RULE_lengthTwoDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7283; + this.state = 7296; this.match(MySqlParser.LR_BRACKET); - this.state = 7284; + this.state = 7297; this.decimalLiteral(); - this.state = 7285; + this.state = 7298; this.match(MySqlParser.COMMA); - this.state = 7286; + this.state = 7299; this.decimalLiteral(); - this.state = 7287; + this.state = 7300; this.match(MySqlParser.RR_BRACKET); } } @@ -43722,28 +43831,28 @@ export class MySqlParser extends SQLParserBase { } public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localContext = new LengthTwoOptionalDimensionContext(this.context, this.state); - this.enterRule(localContext, 736, MySqlParser.RULE_lengthTwoOptionalDimension); + this.enterRule(localContext, 746, MySqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7289; + this.state = 7302; this.match(MySqlParser.LR_BRACKET); - this.state = 7290; + this.state = 7303; this.decimalLiteral(); - this.state = 7293; + this.state = 7306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7291; + this.state = 7304; this.match(MySqlParser.COMMA); - this.state = 7292; + this.state = 7305; this.decimalLiteral(); } } - this.state = 7295; + this.state = 7308; this.match(MySqlParser.RR_BRACKET); } } @@ -43763,32 +43872,32 @@ export class MySqlParser extends SQLParserBase { } public indexColumnNames(): IndexColumnNamesContext { let localContext = new IndexColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 738, MySqlParser.RULE_indexColumnNames); + this.enterRule(localContext, 748, MySqlParser.RULE_indexColumnNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7297; + this.state = 7310; this.match(MySqlParser.LR_BRACKET); - this.state = 7298; + this.state = 7311; this.indexColumnName(); - this.state = 7303; + this.state = 7316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7299; + this.state = 7312; this.match(MySqlParser.COMMA); - this.state = 7300; + this.state = 7313; this.indexColumnName(); } } - this.state = 7305; + this.state = 7318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7306; + this.state = 7319; this.match(MySqlParser.RR_BRACKET); } } @@ -43808,26 +43917,26 @@ export class MySqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 740, MySqlParser.RULE_expressions); + this.enterRule(localContext, 750, MySqlParser.RULE_expressions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7308; + this.state = 7321; this.expression(0); - this.state = 7313; + this.state = 7326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7309; + this.state = 7322; this.match(MySqlParser.COMMA); - this.state = 7310; + this.state = 7323; this.expression(0); } } - this.state = 7315; + this.state = 7328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43849,12 +43958,12 @@ export class MySqlParser extends SQLParserBase { } public valuesOrValueList(): ValuesOrValueListContext { let localContext = new ValuesOrValueListContext(this.context, this.state); - this.enterRule(localContext, 742, MySqlParser.RULE_valuesOrValueList); + this.enterRule(localContext, 752, MySqlParser.RULE_valuesOrValueList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7316; + this.state = 7329; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 682)) { this.errorHandler.recoverInline(this); @@ -43863,21 +43972,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7317; + this.state = 7330; this.expressionsWithDefaults(); - this.state = 7322; + this.state = 7335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7318; + this.state = 7331; this.match(MySqlParser.COMMA); - this.state = 7319; + this.state = 7332; this.expressionsWithDefaults(); } } - this.state = 7324; + this.state = 7337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43899,32 +44008,32 @@ export class MySqlParser extends SQLParserBase { } public expressionsWithDefaults(): ExpressionsWithDefaultsContext { let localContext = new ExpressionsWithDefaultsContext(this.context, this.state); - this.enterRule(localContext, 744, MySqlParser.RULE_expressionsWithDefaults); + this.enterRule(localContext, 754, MySqlParser.RULE_expressionsWithDefaults); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7325; + this.state = 7338; this.match(MySqlParser.LR_BRACKET); - this.state = 7326; + this.state = 7339; this.expressionOrDefault(); - this.state = 7331; + this.state = 7344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7327; + this.state = 7340; this.match(MySqlParser.COMMA); - this.state = 7328; + this.state = 7341; this.expressionOrDefault(); } } - this.state = 7333; + this.state = 7346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7334; + this.state = 7347; this.match(MySqlParser.RR_BRACKET); } } @@ -43944,22 +44053,22 @@ export class MySqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 746, MySqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 756, MySqlParser.RULE_expressionOrDefault); try { - this.state = 7338; + this.state = 7351; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7336; + this.state = 7349; this.expression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7337; + this.state = 7350; this.match(MySqlParser.KW_DEFAULT); } break; @@ -43981,26 +44090,26 @@ export class MySqlParser extends SQLParserBase { } public constants(): ConstantsContext { let localContext = new ConstantsContext(this.context, this.state); - this.enterRule(localContext, 748, MySqlParser.RULE_constants); + this.enterRule(localContext, 758, MySqlParser.RULE_constants); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7340; + this.state = 7353; this.constant(); - this.state = 7345; + this.state = 7358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7341; + this.state = 7354; this.match(MySqlParser.COMMA); - this.state = 7342; + this.state = 7355; this.constant(); } } - this.state = 7347; + this.state = 7360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44022,26 +44131,26 @@ export class MySqlParser extends SQLParserBase { } public simpleStrings(): SimpleStringsContext { let localContext = new SimpleStringsContext(this.context, this.state); - this.enterRule(localContext, 750, MySqlParser.RULE_simpleStrings); + this.enterRule(localContext, 760, MySqlParser.RULE_simpleStrings); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7348; + this.state = 7361; this.match(MySqlParser.STRING_LITERAL); - this.state = 7353; + this.state = 7366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7349; + this.state = 7362; this.match(MySqlParser.COMMA); - this.state = 7350; + this.state = 7363; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7355; + this.state = 7368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44063,26 +44172,26 @@ export class MySqlParser extends SQLParserBase { } public userVariables(): UserVariablesContext { let localContext = new UserVariablesContext(this.context, this.state); - this.enterRule(localContext, 752, MySqlParser.RULE_userVariables); + this.enterRule(localContext, 762, MySqlParser.RULE_userVariables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7356; + this.state = 7369; this.match(MySqlParser.LOCAL_ID); - this.state = 7361; + this.state = 7374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7357; + this.state = 7370; this.match(MySqlParser.COMMA); - this.state = 7358; + this.state = 7371; this.match(MySqlParser.LOCAL_ID); } } - this.state = 7363; + this.state = 7376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44104,67 +44213,67 @@ export class MySqlParser extends SQLParserBase { } public defaultValue(): DefaultValueContext { let localContext = new DefaultValueContext(this.context, this.state); - this.enterRule(localContext, 754, MySqlParser.RULE_defaultValue); + this.enterRule(localContext, 764, MySqlParser.RULE_defaultValue); try { - this.state = 7390; + this.state = 7403; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1080, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1079, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7364; + this.state = 7377; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7365; + this.state = 7378; this.match(MySqlParser.KW_CAST); - this.state = 7366; + this.state = 7379; this.match(MySqlParser.LR_BRACKET); - this.state = 7367; + this.state = 7380; this.expression(0); - this.state = 7368; + this.state = 7381; this.match(MySqlParser.KW_AS); - this.state = 7369; + this.state = 7382; this.convertedDataType(); - this.state = 7370; + this.state = 7383; this.match(MySqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7373; + this.state = 7386; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { case 1: { - this.state = 7372; + this.state = 7385; this.unaryOperator(); } break; } - this.state = 7375; + this.state = 7388; this.constant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7376; + this.state = 7389; this.currentTimestamp(); - this.state = 7380; + this.state = 7393; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1079, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { case 1: { - this.state = 7377; + this.state = 7390; this.match(MySqlParser.KW_ON); - this.state = 7378; + this.state = 7391; this.match(MySqlParser.KW_UPDATE); - this.state = 7379; + this.state = 7392; this.currentTimestamp(); } break; @@ -44174,22 +44283,22 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7382; + this.state = 7395; this.match(MySqlParser.LR_BRACKET); - this.state = 7383; + this.state = 7396; this.expression(0); - this.state = 7384; + this.state = 7397; this.match(MySqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7386; + this.state = 7399; this.match(MySqlParser.LR_BRACKET); - this.state = 7387; + this.state = 7400; this.fullId(); - this.state = 7388; + this.state = 7401; this.match(MySqlParser.RR_BRACKET); } break; @@ -44211,19 +44320,19 @@ export class MySqlParser extends SQLParserBase { } public currentTimestamp(): CurrentTimestampContext { let localContext = new CurrentTimestampContext(this.context, this.state); - this.enterRule(localContext, 756, MySqlParser.RULE_currentTimestamp); + this.enterRule(localContext, 766, MySqlParser.RULE_currentTimestamp); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7406; + this.state = 7419; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CURRENT_TIMESTAMP: case MySqlParser.KW_LOCALTIME: case MySqlParser.KW_LOCALTIMESTAMP: { - this.state = 7392; + this.state = 7405; _la = this.tokenStream.LA(1); if(!(((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131) !== 0))) { this.errorHandler.recoverInline(this); @@ -44232,24 +44341,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7398; + this.state = 7411; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1082, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1081, this.context) ) { case 1: { - this.state = 7393; + this.state = 7406; this.match(MySqlParser.LR_BRACKET); - this.state = 7395; + this.state = 7408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7394; + this.state = 7407; this.decimalLiteral(); } } - this.state = 7397; + this.state = 7410; this.match(MySqlParser.RR_BRACKET); } break; @@ -44258,21 +44367,21 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_NOW: { - this.state = 7400; + this.state = 7413; this.match(MySqlParser.KW_NOW); - this.state = 7401; + this.state = 7414; this.match(MySqlParser.LR_BRACKET); - this.state = 7403; + this.state = 7416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7402; + this.state = 7415; this.decimalLiteral(); } } - this.state = 7405; + this.state = 7418; this.match(MySqlParser.RR_BRACKET); } break; @@ -44297,13 +44406,13 @@ export class MySqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 758, MySqlParser.RULE_ifExists); + this.enterRule(localContext, 768, MySqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7408; + this.state = 7421; this.match(MySqlParser.KW_IF); - this.state = 7409; + this.state = 7422; this.match(MySqlParser.KW_EXISTS); } } @@ -44323,15 +44432,15 @@ export class MySqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 760, MySqlParser.RULE_ifNotExists); + this.enterRule(localContext, 770, MySqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7411; + this.state = 7424; this.match(MySqlParser.KW_IF); - this.state = 7412; + this.state = 7425; this.match(MySqlParser.KW_NOT); - this.state = 7413; + this.state = 7426; this.match(MySqlParser.KW_EXISTS); } } @@ -44351,13 +44460,13 @@ export class MySqlParser extends SQLParserBase { } public orReplace(): OrReplaceContext { let localContext = new OrReplaceContext(this.context, this.state); - this.enterRule(localContext, 762, MySqlParser.RULE_orReplace); + this.enterRule(localContext, 772, MySqlParser.RULE_orReplace); try { this.enterOuterAlt(localContext, 1); { - this.state = 7415; + this.state = 7428; this.match(MySqlParser.KW_OR); - this.state = 7416; + this.state = 7429; this.match(MySqlParser.KW_REPLACE); } } @@ -44377,16 +44486,16 @@ export class MySqlParser extends SQLParserBase { } public functionCall(): FunctionCallContext { let localContext = new FunctionCallContext(this.context, this.state); - this.enterRule(localContext, 764, MySqlParser.RULE_functionCall); + this.enterRule(localContext, 774, MySqlParser.RULE_functionCall); try { - this.state = 7440; + this.state = 7453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: localContext = new SpecificFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7418; + this.state = 7431; this.specificFunction(); } break; @@ -44394,7 +44503,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7419; + this.state = 7432; this.aggregateWindowedFunction(); } break; @@ -44402,7 +44511,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NonAggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7420; + this.state = 7433; this.nonAggregateWindowedFunction(); } break; @@ -44410,26 +44519,26 @@ export class MySqlParser extends SQLParserBase { localContext = new ScalarFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7421; + this.state = 7434; this.scalarFunctionName(); - this.state = 7428; + this.state = 7441; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: { - this.state = 7422; + this.state = 7435; this.match(MySqlParser.LR_BRACKET); - this.state = 7423; + this.state = 7436; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7424; + this.state = 7437; this.match(MySqlParser.LR_BRACKET); - this.state = 7425; + this.state = 7438; this.functionArgs(); - this.state = 7426; + this.state = 7439; this.match(MySqlParser.RR_BRACKET); } break; @@ -44440,26 +44549,26 @@ export class MySqlParser extends SQLParserBase { localContext = new UdfFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7430; + this.state = 7443; this.functionName(); - this.state = 7437; + this.state = 7450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { case 1: { - this.state = 7431; + this.state = 7444; this.match(MySqlParser.LR_BRACKET); - this.state = 7432; + this.state = 7445; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7433; + this.state = 7446; this.match(MySqlParser.LR_BRACKET); - this.state = 7434; + this.state = 7447; this.functionArgs(); - this.state = 7435; + this.state = 7448; this.match(MySqlParser.RR_BRACKET); } break; @@ -44470,7 +44579,7 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7439; + this.state = 7452; this.passwordFunctionClause(); } break; @@ -44492,17 +44601,17 @@ export class MySqlParser extends SQLParserBase { } public specificFunction(): SpecificFunctionContext { let localContext = new SpecificFunctionContext(this.context, this.state); - this.enterRule(localContext, 766, MySqlParser.RULE_specificFunction); + this.enterRule(localContext, 776, MySqlParser.RULE_specificFunction); let _la: number; try { - this.state = 7621; + this.state = 7634; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: localContext = new SimpleFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7442; + this.state = 7455; _la = this.tokenStream.LA(1); if(!(_la === 152 || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 262159) !== 0))) { this.errorHandler.recoverInline(this); @@ -44511,14 +44620,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7445; + this.state = 7458; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { case 1: { - this.state = 7443; + this.state = 7456; this.match(MySqlParser.LR_BRACKET); - this.state = 7444; + this.state = 7457; this.match(MySqlParser.RR_BRACKET); } break; @@ -44529,7 +44638,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7447; + this.state = 7460; this.currentUserExpression(); } break; @@ -44537,17 +44646,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7448; + this.state = 7461; this.match(MySqlParser.KW_CONVERT); - this.state = 7449; + this.state = 7462; this.match(MySqlParser.LR_BRACKET); - this.state = 7450; + this.state = 7463; this.expression(0); - this.state = 7451; + this.state = 7464; (localContext as DataTypeFunctionCallContext)._separator = this.match(MySqlParser.COMMA); - this.state = 7452; + this.state = 7465; this.convertedDataType(); - this.state = 7453; + this.state = 7466; this.match(MySqlParser.RR_BRACKET); } break; @@ -44555,17 +44664,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7455; + this.state = 7468; this.match(MySqlParser.KW_CONVERT); - this.state = 7456; + this.state = 7469; this.match(MySqlParser.LR_BRACKET); - this.state = 7457; + this.state = 7470; this.expression(0); - this.state = 7458; + this.state = 7471; this.match(MySqlParser.KW_USING); - this.state = 7459; + this.state = 7472; this.charsetName(); - this.state = 7460; + this.state = 7473; this.match(MySqlParser.RR_BRACKET); } break; @@ -44573,17 +44682,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7462; + this.state = 7475; this.match(MySqlParser.KW_CAST); - this.state = 7463; + this.state = 7476; this.match(MySqlParser.LR_BRACKET); - this.state = 7464; + this.state = 7477; this.expression(0); - this.state = 7465; + this.state = 7478; this.match(MySqlParser.KW_AS); - this.state = 7466; + this.state = 7479; this.convertedDataType(); - this.state = 7467; + this.state = 7480; this.match(MySqlParser.RR_BRACKET); } break; @@ -44591,13 +44700,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ValuesFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7469; + this.state = 7482; this.match(MySqlParser.KW_VALUES); - this.state = 7470; + this.state = 7483; this.match(MySqlParser.LR_BRACKET); - this.state = 7471; + this.state = 7484; this.columnName(); - this.state = 7472; + this.state = 7485; this.match(MySqlParser.RR_BRACKET); } break; @@ -44605,35 +44714,35 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseFunctionCallContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7474; + this.state = 7487; this.match(MySqlParser.KW_CASE); - this.state = 7476; + this.state = 7489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7475; + this.state = 7488; this.caseFuncAlternative(); } } - this.state = 7478; + this.state = 7491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7482; + this.state = 7495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7480; + this.state = 7493; this.match(MySqlParser.KW_ELSE); - this.state = 7481; + this.state = 7494; (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7484; + this.state = 7497; this.match(MySqlParser.KW_END); } break; @@ -44641,37 +44750,37 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseExpressionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7486; + this.state = 7499; this.match(MySqlParser.KW_CASE); - this.state = 7487; + this.state = 7500; this.expression(0); - this.state = 7489; + this.state = 7502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7488; + this.state = 7501; this.caseFuncAlternative(); } } - this.state = 7491; + this.state = 7504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7495; + this.state = 7508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7493; + this.state = 7506; this.match(MySqlParser.KW_ELSE); - this.state = 7494; + this.state = 7507; (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7497; + this.state = 7510; this.match(MySqlParser.KW_END); } break; @@ -44679,25 +44788,25 @@ export class MySqlParser extends SQLParserBase { localContext = new CharFunctionCallContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7499; + this.state = 7512; this.match(MySqlParser.KW_CHAR); - this.state = 7500; + this.state = 7513; this.match(MySqlParser.LR_BRACKET); - this.state = 7501; + this.state = 7514; this.functionArgs(); - this.state = 7504; + this.state = 7517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 7502; + this.state = 7515; this.match(MySqlParser.KW_USING); - this.state = 7503; + this.state = 7516; this.charsetName(); } } - this.state = 7506; + this.state = 7519; this.match(MySqlParser.RR_BRACKET); } break; @@ -44705,45 +44814,45 @@ export class MySqlParser extends SQLParserBase { localContext = new PositionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7508; + this.state = 7521; this.match(MySqlParser.KW_POSITION); - this.state = 7509; + this.state = 7522; this.match(MySqlParser.LR_BRACKET); - this.state = 7512; + this.state = 7525; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { case 1: { - this.state = 7510; + this.state = 7523; (localContext as PositionFunctionCallContext)._positionString = this.stringLiteral(); } break; case 2: { - this.state = 7511; + this.state = 7524; (localContext as PositionFunctionCallContext)._positionExpression = this.expression(0); } break; } - this.state = 7514; + this.state = 7527; this.match(MySqlParser.KW_IN); - this.state = 7517; + this.state = 7530; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { case 1: { - this.state = 7515; + this.state = 7528; (localContext as PositionFunctionCallContext)._inString = this.stringLiteral(); } break; case 2: { - this.state = 7516; + this.state = 7529; (localContext as PositionFunctionCallContext)._inExpression = this.expression(0); } break; } - this.state = 7519; + this.state = 7532; this.match(MySqlParser.RR_BRACKET); } break; @@ -44751,7 +44860,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SubstrFunctionCallContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7521; + this.state = 7534; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -44760,61 +44869,61 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7522; + this.state = 7535; this.match(MySqlParser.LR_BRACKET); - this.state = 7525; + this.state = 7538; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { case 1: { - this.state = 7523; + this.state = 7536; (localContext as SubstrFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7524; + this.state = 7537; (localContext as SubstrFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7527; + this.state = 7540; this.match(MySqlParser.KW_FROM); - this.state = 7530; + this.state = 7543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { case 1: { - this.state = 7528; + this.state = 7541; (localContext as SubstrFunctionCallContext)._fromDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7529; + this.state = 7542; (localContext as SubstrFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7537; + this.state = 7550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 7532; + this.state = 7545; this.match(MySqlParser.KW_FOR); - this.state = 7535; + this.state = 7548; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { case 1: { - this.state = 7533; + this.state = 7546; (localContext as SubstrFunctionCallContext)._forDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7534; + this.state = 7547; (localContext as SubstrFunctionCallContext)._forExpression = this.expression(0); } break; @@ -44822,7 +44931,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 7539; + this.state = 7552; this.match(MySqlParser.RR_BRACKET); } break; @@ -44830,11 +44939,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7541; + this.state = 7554; this.match(MySqlParser.KW_TRIM); - this.state = 7542; + this.state = 7555; this.match(MySqlParser.LR_BRACKET); - this.state = 7543; + this.state = 7556; (localContext as TrimFunctionCallContext)._positioinForm = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 96 || _la === 177)) { @@ -44844,41 +44953,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7546; + this.state = 7559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { case 1: { - this.state = 7544; + this.state = 7557; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7545; + this.state = 7558; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7548; + this.state = 7561; this.match(MySqlParser.KW_FROM); - this.state = 7551; + this.state = 7564; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { case 1: { - this.state = 7549; + this.state = 7562; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7550; + this.state = 7563; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7553; + this.state = 7566; this.match(MySqlParser.RR_BRACKET); } break; @@ -44886,45 +44995,45 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7555; + this.state = 7568; this.match(MySqlParser.KW_TRIM); - this.state = 7556; + this.state = 7569; this.match(MySqlParser.LR_BRACKET); - this.state = 7559; + this.state = 7572; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { case 1: { - this.state = 7557; + this.state = 7570; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7558; + this.state = 7571; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7561; + this.state = 7574; this.match(MySqlParser.KW_FROM); - this.state = 7564; + this.state = 7577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { case 1: { - this.state = 7562; + this.state = 7575; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7563; + this.state = 7576; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7566; + this.state = 7579; this.match(MySqlParser.RR_BRACKET); } break; @@ -44932,34 +45041,34 @@ export class MySqlParser extends SQLParserBase { localContext = new WeightFunctionCallContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7568; + this.state = 7581; this.match(MySqlParser.KW_WEIGHT_STRING); - this.state = 7569; + this.state = 7582; this.match(MySqlParser.LR_BRACKET); - this.state = 7572; + this.state = 7585; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { case 1: { - this.state = 7570; + this.state = 7583; this.stringLiteral(); } break; case 2: { - this.state = 7571; + this.state = 7584; this.expression(0); } break; } - this.state = 7580; + this.state = 7593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 7574; + this.state = 7587; this.match(MySqlParser.KW_AS); - this.state = 7575; + this.state = 7588; (localContext as WeightFunctionCallContext)._stringFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 224 || _la === 228)) { @@ -44969,26 +45078,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7576; + this.state = 7589; this.match(MySqlParser.LR_BRACKET); - this.state = 7577; + this.state = 7590; this.decimalLiteral(); - this.state = 7578; + this.state = 7591; this.match(MySqlParser.RR_BRACKET); } } - this.state = 7583; + this.state = 7596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 448) { { - this.state = 7582; + this.state = 7595; this.levelsInWeightString(); } } - this.state = 7585; + this.state = 7598; this.match(MySqlParser.RR_BRACKET); } break; @@ -44996,31 +45105,31 @@ export class MySqlParser extends SQLParserBase { localContext = new ExtractFunctionCallContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 7587; + this.state = 7600; this.match(MySqlParser.KW_EXTRACT); - this.state = 7588; + this.state = 7601; this.match(MySqlParser.LR_BRACKET); - this.state = 7589; + this.state = 7602; this.intervalType(); - this.state = 7590; + this.state = 7603; this.match(MySqlParser.KW_FROM); - this.state = 7593; + this.state = 7606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 7591; + this.state = 7604; (localContext as ExtractFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7592; + this.state = 7605; (localContext as ExtractFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7595; + this.state = 7608; this.match(MySqlParser.RR_BRACKET); } break; @@ -45028,11 +45137,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GetFormatFunctionCallContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 7597; + this.state = 7610; this.match(MySqlParser.KW_GET_FORMAT); - this.state = 7598; + this.state = 7611; this.match(MySqlParser.LR_BRACKET); - this.state = 7599; + this.state = 7612; (localContext as GetFormatFunctionCallContext)._datetimeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 11) !== 0))) { @@ -45042,11 +45151,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7600; + this.state = 7613; this.match(MySqlParser.COMMA); - this.state = 7601; + this.state = 7614; this.stringLiteral(); - this.state = 7602; + this.state = 7615; this.match(MySqlParser.RR_BRACKET); } break; @@ -45054,49 +45163,49 @@ export class MySqlParser extends SQLParserBase { localContext = new JsonValueFunctionCallContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 7604; + this.state = 7617; this.match(MySqlParser.KW_JSON_VALUE); - this.state = 7605; + this.state = 7618; this.match(MySqlParser.LR_BRACKET); - this.state = 7606; + this.state = 7619; this.expression(0); - this.state = 7607; + this.state = 7620; this.match(MySqlParser.COMMA); - this.state = 7608; + this.state = 7621; this.expression(0); - this.state = 7611; + this.state = 7624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 579) { { - this.state = 7609; + this.state = 7622; this.match(MySqlParser.KW_RETURNING); - this.state = 7610; + this.state = 7623; this.convertedDataType(); } } - this.state = 7614; + this.state = 7627; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 7613; + this.state = 7626; this.jsonOnEmpty(); } break; } - this.state = 7617; + this.state = 7630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 7616; + this.state = 7629; this.jsonOnError(); } } - this.state = 7619; + this.state = 7632; this.match(MySqlParser.RR_BRACKET); } break; @@ -45118,17 +45227,17 @@ export class MySqlParser extends SQLParserBase { } public caseFuncAlternative(): CaseFuncAlternativeContext { let localContext = new CaseFuncAlternativeContext(this.context, this.state); - this.enterRule(localContext, 768, MySqlParser.RULE_caseFuncAlternative); + this.enterRule(localContext, 778, MySqlParser.RULE_caseFuncAlternative); try { this.enterOuterAlt(localContext, 1); { - this.state = 7623; + this.state = 7636; this.match(MySqlParser.KW_WHEN); - this.state = 7624; + this.state = 7637; localContext._condition = this.functionArg(); - this.state = 7625; + this.state = 7638; this.match(MySqlParser.KW_THEN); - this.state = 7626; + this.state = 7639; localContext._consequent = this.functionArg(); } } @@ -45148,33 +45257,33 @@ export class MySqlParser extends SQLParserBase { } public levelsInWeightString(): LevelsInWeightStringContext { let localContext = new LevelsInWeightStringContext(this.context, this.state); - this.enterRule(localContext, 770, MySqlParser.RULE_levelsInWeightString); + this.enterRule(localContext, 780, MySqlParser.RULE_levelsInWeightString); let _la: number; try { - this.state = 7642; + this.state = 7655; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { case 1: localContext = new LevelWeightListContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7628; + this.state = 7641; this.match(MySqlParser.KW_LEVEL); - this.state = 7629; + this.state = 7642; this.levelInWeightListElement(); - this.state = 7634; + this.state = 7647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7630; + this.state = 7643; this.match(MySqlParser.COMMA); - this.state = 7631; + this.state = 7644; this.levelInWeightListElement(); } } - this.state = 7636; + this.state = 7649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -45184,13 +45293,13 @@ export class MySqlParser extends SQLParserBase { localContext = new LevelWeightRangeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7637; + this.state = 7650; this.match(MySqlParser.KW_LEVEL); - this.state = 7638; + this.state = 7651; (localContext as LevelWeightRangeContext)._firstLevel = this.decimalLiteral(); - this.state = 7639; + this.state = 7652; this.match(MySqlParser.MINUS); - this.state = 7640; + this.state = 7653; (localContext as LevelWeightRangeContext)._lastLevel = this.decimalLiteral(); } break; @@ -45212,19 +45321,19 @@ export class MySqlParser extends SQLParserBase { } public levelInWeightListElement(): LevelInWeightListElementContext { let localContext = new LevelInWeightListElementContext(this.context, this.state); - this.enterRule(localContext, 772, MySqlParser.RULE_levelInWeightListElement); + this.enterRule(localContext, 782, MySqlParser.RULE_levelInWeightListElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7644; + this.state = 7657; this.decimalLiteral(); - this.state = 7646; + this.state = 7659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || _la === 45 || _la === 830) { { - this.state = 7645; + this.state = 7658; localContext._orderType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45 || _la === 830)) { @@ -45255,10 +45364,10 @@ export class MySqlParser extends SQLParserBase { } public aggregateWindowedFunction(): AggregateWindowedFunctionContext { let localContext = new AggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 774, MySqlParser.RULE_aggregateWindowedFunction); + this.enterRule(localContext, 784, MySqlParser.RULE_aggregateWindowedFunction); let _la: number; try { - this.state = 7707; + this.state = 7720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AVG: @@ -45267,7 +45376,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUM: this.enterOuterAlt(localContext, 1); { - this.state = 7648; + this.state = 7661; _la = this.tokenStream.LA(1); if(!(((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 8400897) !== 0))) { this.errorHandler.recoverInline(this); @@ -45276,14 +45385,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7649; + this.state = 7662; this.match(MySqlParser.LR_BRACKET); - this.state = 7651; + this.state = 7664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 7650; + this.state = 7663; localContext._aggregator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -45296,16 +45405,16 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 7653; + this.state = 7666; this.functionArg(); - this.state = 7654; + this.state = 7667; this.match(MySqlParser.RR_BRACKET); - this.state = 7656; + this.state = 7669; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { case 1: { - this.state = 7655; + this.state = 7668; this.overClause(); } break; @@ -45315,52 +45424,52 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_COUNT: this.enterOuterAlt(localContext, 2); { - this.state = 7658; + this.state = 7671; this.match(MySqlParser.KW_COUNT); - this.state = 7659; + this.state = 7672; this.match(MySqlParser.LR_BRACKET); - this.state = 7667; + this.state = 7680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { case 1: { - this.state = 7660; + this.state = 7673; localContext._starArg = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 7662; + this.state = 7675; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 7661; + this.state = 7674; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7664; + this.state = 7677; this.functionArg(); } break; case 3: { - this.state = 7665; + this.state = 7678; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); - this.state = 7666; + this.state = 7679; this.functionArgs(); } break; } - this.state = 7669; + this.state = 7682; this.match(MySqlParser.RR_BRACKET); - this.state = 7671; + this.state = 7684; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { case 1: { - this.state = 7670; + this.state = 7683; this.overClause(); } break; @@ -45379,7 +45488,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIANCE: this.enterOuterAlt(localContext, 3); { - this.state = 7673; + this.state = 7686; _la = this.tokenStream.LA(1); if(!(((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 62652423) !== 0))) { this.errorHandler.recoverInline(this); @@ -45388,28 +45497,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7674; + this.state = 7687; this.match(MySqlParser.LR_BRACKET); - this.state = 7676; + this.state = 7689; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 7675; + this.state = 7688; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7678; + this.state = 7691; this.functionArg(); - this.state = 7679; + this.state = 7692; this.match(MySqlParser.RR_BRACKET); - this.state = 7681; + this.state = 7694; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { case 1: { - this.state = 7680; + this.state = 7693; this.overClause(); } break; @@ -45419,65 +45528,65 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_GROUP_CONCAT: this.enterOuterAlt(localContext, 4); { - this.state = 7683; + this.state = 7696; this.match(MySqlParser.KW_GROUP_CONCAT); - this.state = 7684; + this.state = 7697; this.match(MySqlParser.LR_BRACKET); - this.state = 7686; + this.state = 7699; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { case 1: { - this.state = 7685; + this.state = 7698; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); } break; } - this.state = 7688; + this.state = 7701; this.functionArgs(); - this.state = 7699; + this.state = 7712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7689; + this.state = 7702; this.match(MySqlParser.KW_ORDER); - this.state = 7690; + this.state = 7703; this.match(MySqlParser.KW_BY); - this.state = 7691; + this.state = 7704; this.orderByExpression(); - this.state = 7696; + this.state = 7709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7692; + this.state = 7705; this.match(MySqlParser.COMMA); - this.state = 7693; + this.state = 7706; this.orderByExpression(); } } - this.state = 7698; + this.state = 7711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 7703; + this.state = 7716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 156) { { - this.state = 7701; + this.state = 7714; this.match(MySqlParser.KW_SEPARATOR); - this.state = 7702; + this.state = 7715; localContext._separator = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7705; + this.state = 7718; this.match(MySqlParser.RR_BRACKET); } break; @@ -45501,17 +45610,17 @@ export class MySqlParser extends SQLParserBase { } public nonAggregateWindowedFunction(): NonAggregateWindowedFunctionContext { let localContext = new NonAggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 776, MySqlParser.RULE_nonAggregateWindowedFunction); + this.enterRule(localContext, 786, MySqlParser.RULE_nonAggregateWindowedFunction); let _la: number; try { - this.state = 7747; + this.state = 7760; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LAG: case MySqlParser.KW_LEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7709; + this.state = 7722; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 269)) { this.errorHandler.recoverInline(this); @@ -45520,37 +45629,37 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7710; + this.state = 7723; this.match(MySqlParser.LR_BRACKET); - this.state = 7711; + this.state = 7724; this.expression(0); - this.state = 7714; + this.state = 7727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { case 1: { - this.state = 7712; + this.state = 7725; this.match(MySqlParser.COMMA); - this.state = 7713; + this.state = 7726; this.decimalLiteral(); } break; } - this.state = 7718; + this.state = 7731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7716; + this.state = 7729; this.match(MySqlParser.COMMA); - this.state = 7717; + this.state = 7730; this.decimalLiteral(); } } - this.state = 7720; + this.state = 7733; this.match(MySqlParser.RR_BRACKET); - this.state = 7721; + this.state = 7734; this.overClause(); } break; @@ -45558,7 +45667,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LAST_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 7723; + this.state = 7736; _la = this.tokenStream.LA(1); if(!(_la === 265 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -45567,13 +45676,13 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7724; + this.state = 7737; this.match(MySqlParser.LR_BRACKET); - this.state = 7725; + this.state = 7738; this.expression(0); - this.state = 7726; + this.state = 7739; this.match(MySqlParser.RR_BRACKET); - this.state = 7727; + this.state = 7740; this.overClause(); } break; @@ -45584,7 +45693,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ROW_NUMBER: this.enterOuterAlt(localContext, 3); { - this.state = 7729; + this.state = 7742; _la = this.tokenStream.LA(1); if(!(((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 14339) !== 0))) { this.errorHandler.recoverInline(this); @@ -45593,45 +45702,45 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7730; + this.state = 7743; this.match(MySqlParser.LR_BRACKET); - this.state = 7731; + this.state = 7744; this.match(MySqlParser.RR_BRACKET); - this.state = 7732; + this.state = 7745; this.overClause(); } break; case MySqlParser.KW_NTH_VALUE: this.enterOuterAlt(localContext, 4); { - this.state = 7733; + this.state = 7746; this.match(MySqlParser.KW_NTH_VALUE); - this.state = 7734; + this.state = 7747; this.match(MySqlParser.LR_BRACKET); - this.state = 7735; + this.state = 7748; this.expression(0); - this.state = 7736; + this.state = 7749; this.match(MySqlParser.COMMA); - this.state = 7737; + this.state = 7750; this.decimalLiteral(); - this.state = 7738; + this.state = 7751; this.match(MySqlParser.RR_BRACKET); - this.state = 7739; + this.state = 7752; this.overClause(); } break; case MySqlParser.KW_NTILE: this.enterOuterAlt(localContext, 5); { - this.state = 7741; + this.state = 7754; this.match(MySqlParser.KW_NTILE); - this.state = 7742; + this.state = 7755; this.match(MySqlParser.LR_BRACKET); - this.state = 7743; + this.state = 7756; this.decimalLiteral(); - this.state = 7744; + this.state = 7757; this.match(MySqlParser.RR_BRACKET); - this.state = 7745; + this.state = 7758; this.overClause(); } break; @@ -45655,22 +45764,22 @@ export class MySqlParser extends SQLParserBase { } public overClause(): OverClauseContext { let localContext = new OverClauseContext(this.context, this.state); - this.enterRule(localContext, 778, MySqlParser.RULE_overClause); + this.enterRule(localContext, 788, MySqlParser.RULE_overClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7749; + this.state = 7762; this.match(MySqlParser.KW_OVER); - this.state = 7755; + this.state = 7768; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 7750; + this.state = 7763; this.match(MySqlParser.LR_BRACKET); - this.state = 7751; + this.state = 7764; this.windowSpec(); - this.state = 7752; + this.state = 7765; this.match(MySqlParser.RR_BRACKET); } break; @@ -46224,7 +46333,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 7754; + this.state = 7767; this.windowName(); } break; @@ -46249,47 +46358,47 @@ export class MySqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 780, MySqlParser.RULE_windowSpec); + this.enterRule(localContext, 790, MySqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7758; + this.state = 7771; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { case 1: { - this.state = 7757; + this.state = 7770; this.windowName(); } break; } - this.state = 7761; + this.state = 7774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 7760; + this.state = 7773; this.partitionClause(); } } - this.state = 7764; + this.state = 7777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7763; + this.state = 7776; this.orderByClause(); } } - this.state = 7767; + this.state = 7780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 587) { { - this.state = 7766; + this.state = 7779; this.frameClause(); } } @@ -46312,11 +46421,11 @@ export class MySqlParser extends SQLParserBase { } public windowName(): WindowNameContext { let localContext = new WindowNameContext(this.context, this.state); - this.enterRule(localContext, 782, MySqlParser.RULE_windowName); + this.enterRule(localContext, 792, MySqlParser.RULE_windowName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7769; + this.state = 7782; this.uid(); } } @@ -46336,13 +46445,13 @@ export class MySqlParser extends SQLParserBase { } public frameClause(): FrameClauseContext { let localContext = new FrameClauseContext(this.context, this.state); - this.enterRule(localContext, 784, MySqlParser.RULE_frameClause); + this.enterRule(localContext, 794, MySqlParser.RULE_frameClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7771; + this.state = 7784; this.frameUnits(); - this.state = 7772; + this.state = 7785; this.frameExtent(); } } @@ -46362,12 +46471,12 @@ export class MySqlParser extends SQLParserBase { } public frameUnits(): FrameUnitsContext { let localContext = new FrameUnitsContext(this.context, this.state); - this.enterRule(localContext, 786, MySqlParser.RULE_frameUnits); + this.enterRule(localContext, 796, MySqlParser.RULE_frameUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7774; + this.state = 7787; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 587)) { this.errorHandler.recoverInline(this); @@ -46394,22 +46503,22 @@ export class MySqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 788, MySqlParser.RULE_frameExtent); + this.enterRule(localContext, 798, MySqlParser.RULE_frameExtent); try { - this.state = 7778; + this.state = 7791; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7776; + this.state = 7789; this.frameRange(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7777; + this.state = 7790; this.frameBetween(); } break; @@ -46431,17 +46540,17 @@ export class MySqlParser extends SQLParserBase { } public frameBetween(): FrameBetweenContext { let localContext = new FrameBetweenContext(this.context, this.state); - this.enterRule(localContext, 790, MySqlParser.RULE_frameBetween); + this.enterRule(localContext, 800, MySqlParser.RULE_frameBetween); try { this.enterOuterAlt(localContext, 1); { - this.state = 7780; + this.state = 7793; this.match(MySqlParser.KW_BETWEEN); - this.state = 7781; + this.state = 7794; this.frameRange(); - this.state = 7782; + this.state = 7795; this.match(MySqlParser.KW_AND); - this.state = 7783; + this.state = 7796; this.frameRange(); } } @@ -46461,27 +46570,27 @@ export class MySqlParser extends SQLParserBase { } public frameRange(): FrameRangeContext { let localContext = new FrameRangeContext(this.context, this.state); - this.enterRule(localContext, 792, MySqlParser.RULE_frameRange); + this.enterRule(localContext, 802, MySqlParser.RULE_frameRange); let _la: number; try { - this.state = 7792; + this.state = 7805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7785; + this.state = 7798; this.match(MySqlParser.KW_CURRENT); - this.state = 7786; + this.state = 7799; this.match(MySqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7787; + this.state = 7800; this.match(MySqlParser.KW_UNBOUNDED); - this.state = 7788; + this.state = 7801; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46495,9 +46604,9 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7789; + this.state = 7802; this.expression(0); - this.state = 7790; + this.state = 7803; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46526,30 +46635,30 @@ export class MySqlParser extends SQLParserBase { } public partitionClause(): PartitionClauseContext { let localContext = new PartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 794, MySqlParser.RULE_partitionClause); + this.enterRule(localContext, 804, MySqlParser.RULE_partitionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7794; + this.state = 7807; this.match(MySqlParser.KW_PARTITION); - this.state = 7795; + this.state = 7808; this.match(MySqlParser.KW_BY); - this.state = 7796; + this.state = 7809; this.expression(0); - this.state = 7801; + this.state = 7814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7797; + this.state = 7810; this.match(MySqlParser.COMMA); - this.state = 7798; + this.state = 7811; this.expression(0); } } - this.state = 7803; + this.state = 7816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46571,9 +46680,9 @@ export class MySqlParser extends SQLParserBase { } public scalarFunctionName(): ScalarFunctionNameContext { let localContext = new ScalarFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 796, MySqlParser.RULE_scalarFunctionName); + this.enterRule(localContext, 806, MySqlParser.RULE_scalarFunctionName); try { - this.state = 7828; + this.state = 7841; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DATABASE: @@ -46630,168 +46739,168 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: this.enterOuterAlt(localContext, 1); { - this.state = 7804; + this.state = 7817; this.functionNameBase(); } break; case MySqlParser.KW_ASCII: this.enterOuterAlt(localContext, 2); { - this.state = 7805; + this.state = 7818; this.match(MySqlParser.KW_ASCII); } break; case MySqlParser.KW_CURDATE: this.enterOuterAlt(localContext, 3); { - this.state = 7806; + this.state = 7819; this.match(MySqlParser.KW_CURDATE); } break; case MySqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 4); { - this.state = 7807; + this.state = 7820; this.match(MySqlParser.KW_CURRENT_DATE); } break; case MySqlParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 5); { - this.state = 7808; + this.state = 7821; this.match(MySqlParser.KW_CURRENT_TIME); } break; case MySqlParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 7809; + this.state = 7822; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case MySqlParser.KW_CURTIME: this.enterOuterAlt(localContext, 7); { - this.state = 7810; + this.state = 7823; this.match(MySqlParser.KW_CURTIME); } break; case MySqlParser.KW_DATE_ADD: this.enterOuterAlt(localContext, 8); { - this.state = 7811; + this.state = 7824; this.match(MySqlParser.KW_DATE_ADD); } break; case MySqlParser.KW_DATE_SUB: this.enterOuterAlt(localContext, 9); { - this.state = 7812; + this.state = 7825; this.match(MySqlParser.KW_DATE_SUB); } break; case MySqlParser.KW_IF: this.enterOuterAlt(localContext, 10); { - this.state = 7813; + this.state = 7826; this.match(MySqlParser.KW_IF); } break; case MySqlParser.KW_INSERT: this.enterOuterAlt(localContext, 11); { - this.state = 7814; + this.state = 7827; this.match(MySqlParser.KW_INSERT); } break; case MySqlParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 12); { - this.state = 7815; + this.state = 7828; this.match(MySqlParser.KW_LOCALTIME); } break; case MySqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 13); { - this.state = 7816; + this.state = 7829; this.match(MySqlParser.KW_LOCALTIMESTAMP); } break; case MySqlParser.KW_MID: this.enterOuterAlt(localContext, 14); { - this.state = 7817; + this.state = 7830; this.match(MySqlParser.KW_MID); } break; case MySqlParser.KW_NOW: this.enterOuterAlt(localContext, 15); { - this.state = 7818; + this.state = 7831; this.match(MySqlParser.KW_NOW); } break; case MySqlParser.KW_REPEAT: this.enterOuterAlt(localContext, 16); { - this.state = 7819; + this.state = 7832; this.match(MySqlParser.KW_REPEAT); } break; case MySqlParser.KW_REPLACE: this.enterOuterAlt(localContext, 17); { - this.state = 7820; + this.state = 7833; this.match(MySqlParser.KW_REPLACE); } break; case MySqlParser.KW_SUBSTR: this.enterOuterAlt(localContext, 18); { - this.state = 7821; + this.state = 7834; this.match(MySqlParser.KW_SUBSTR); } break; case MySqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 19); { - this.state = 7822; + this.state = 7835; this.match(MySqlParser.KW_SUBSTRING); } break; case MySqlParser.KW_SYSDATE: this.enterOuterAlt(localContext, 20); { - this.state = 7823; + this.state = 7836; this.match(MySqlParser.KW_SYSDATE); } break; case MySqlParser.KW_TRIM: this.enterOuterAlt(localContext, 21); { - this.state = 7824; + this.state = 7837; this.match(MySqlParser.KW_TRIM); } break; case MySqlParser.KW_UTC_DATE: this.enterOuterAlt(localContext, 22); { - this.state = 7825; + this.state = 7838; this.match(MySqlParser.KW_UTC_DATE); } break; case MySqlParser.KW_UTC_TIME: this.enterOuterAlt(localContext, 23); { - this.state = 7826; + this.state = 7839; this.match(MySqlParser.KW_UTC_TIME); } break; case MySqlParser.KW_UTC_TIMESTAMP: this.enterOuterAlt(localContext, 24); { - this.state = 7827; + this.state = 7840; this.match(MySqlParser.KW_UTC_TIMESTAMP); } break; @@ -46815,12 +46924,12 @@ export class MySqlParser extends SQLParserBase { } public passwordFunctionClause(): PasswordFunctionClauseContext { let localContext = new PasswordFunctionClauseContext(this.context, this.state); - this.enterRule(localContext, 798, MySqlParser.RULE_passwordFunctionClause); + this.enterRule(localContext, 808, MySqlParser.RULE_passwordFunctionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7830; + this.state = 7843; _la = this.tokenStream.LA(1); if(!(_la === 512 || _la === 529)) { this.errorHandler.recoverInline(this); @@ -46829,11 +46938,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7831; + this.state = 7844; this.match(MySqlParser.LR_BRACKET); - this.state = 7832; + this.state = 7845; this.functionArg(); - this.state = 7833; + this.state = 7846; this.match(MySqlParser.RR_BRACKET); } } @@ -46853,26 +46962,26 @@ export class MySqlParser extends SQLParserBase { } public functionArgs(): FunctionArgsContext { let localContext = new FunctionArgsContext(this.context, this.state); - this.enterRule(localContext, 800, MySqlParser.RULE_functionArgs); + this.enterRule(localContext, 810, MySqlParser.RULE_functionArgs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7835; + this.state = 7848; this.functionArg(); - this.state = 7840; + this.state = 7853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7836; + this.state = 7849; this.match(MySqlParser.COMMA); - this.state = 7837; + this.state = 7850; this.functionArg(); } } - this.state = 7842; + this.state = 7855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46894,29 +47003,29 @@ export class MySqlParser extends SQLParserBase { } public functionArg(): FunctionArgContext { let localContext = new FunctionArgContext(this.context, this.state); - this.enterRule(localContext, 802, MySqlParser.RULE_functionArg); + this.enterRule(localContext, 812, MySqlParser.RULE_functionArg); try { - this.state = 7846; + this.state = 7859; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7843; + this.state = 7856; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7844; + this.state = 7857; this.functionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7845; + this.state = 7858; this.expression(0); } break; @@ -46948,23 +47057,23 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 804; - this.enterRecursionRule(localContext, 804, MySqlParser.RULE_expression, _p); + let _startState = 814; + this.enterRecursionRule(localContext, 814, MySqlParser.RULE_expression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7859; + this.state = 7872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { localContext = new NotExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7849; + this.state = 7862; (localContext as NotExpressionContext)._notOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 860)) { @@ -46974,7 +47083,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7850; + this.state = 7863; this.expression(4); } break; @@ -46983,21 +47092,21 @@ export class MySqlParser extends SQLParserBase { localContext = new IsExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7851; + this.state = 7864; this.predicate(0); - this.state = 7852; + this.state = 7865; this.match(MySqlParser.KW_IS); - this.state = 7854; + this.state = 7867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7853; + this.state = 7866; this.match(MySqlParser.KW_NOT); } } - this.state = 7856; + this.state = 7869; (localContext as IsExpressionContext)._testValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179 || _la === 674)) { @@ -47014,15 +47123,15 @@ export class MySqlParser extends SQLParserBase { localContext = new PredicateExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7858; + this.state = 7871; this.predicate(0); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7867; + this.state = 7880; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47033,20 +47142,20 @@ export class MySqlParser extends SQLParserBase { { localContext = new LogicalExpressionContext(new ExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expression); - this.state = 7861; + this.state = 7874; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7862; + this.state = 7875; this.logicalOperator(); - this.state = 7863; + this.state = 7876; this.expression(4); } } } - this.state = 7869; + this.state = 7882; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context); } } } @@ -47076,8 +47185,8 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PredicateContext(this.context, parentState); let previousContext = localContext; - let _startState = 806; - this.enterRecursionRule(localContext, 806, MySqlParser.RULE_predicate, _p); + let _startState = 816; + this.enterRecursionRule(localContext, 816, MySqlParser.RULE_predicate, _p); let _la: number; try { let alternative: number; @@ -47088,13 +47197,13 @@ export class MySqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 7871; + this.state = 7884; this.expressionAtom(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7936; + this.state = 7949; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47102,34 +47211,34 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7934; + this.state = 7947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { case 1: { localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7873; + this.state = 7886; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7875; + this.state = 7888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7874; + this.state = 7887; this.match(MySqlParser.KW_NOT); } } - this.state = 7877; + this.state = 7890; this.match(MySqlParser.KW_BETWEEN); - this.state = 7878; + this.state = 7891; this.predicate(0); - this.state = 7879; + this.state = 7892; this.match(MySqlParser.KW_AND); - this.state = 7880; + this.state = 7893; this.predicate(7); } break; @@ -47137,15 +47246,15 @@ export class MySqlParser extends SQLParserBase { { localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7882; + this.state = 7895; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 7883; + this.state = 7896; this.match(MySqlParser.KW_SOUNDS); - this.state = 7884; + this.state = 7897; this.match(MySqlParser.KW_LIKE); - this.state = 7885; + this.state = 7898; this.predicate(6); } break; @@ -47153,21 +47262,21 @@ export class MySqlParser extends SQLParserBase { { localContext = new RegexpPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7886; + this.state = 7899; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7888; + this.state = 7901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7887; + this.state = 7900; this.match(MySqlParser.KW_NOT); } } - this.state = 7890; + this.state = 7903; (localContext as RegexpPredicateContext)._regex = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 151)) { @@ -47177,7 +47286,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7891; + this.state = 7904; this.predicate(4); } break; @@ -47185,41 +47294,41 @@ export class MySqlParser extends SQLParserBase { { localContext = new InPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7892; + this.state = 7905; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 7894; + this.state = 7907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7893; + this.state = 7906; this.match(MySqlParser.KW_NOT); } } - this.state = 7896; + this.state = 7909; this.match(MySqlParser.KW_IN); - this.state = 7897; + this.state = 7910; this.match(MySqlParser.LR_BRACKET); - this.state = 7900; + this.state = 7913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 7898; + this.state = 7911; this.selectStatement(); } break; case 2: { - this.state = 7899; + this.state = 7912; this.expressions(); } break; } - this.state = 7902; + this.state = 7915; this.match(MySqlParser.RR_BRACKET); } break; @@ -47227,13 +47336,13 @@ export class MySqlParser extends SQLParserBase { { localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7904; + this.state = 7917; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 7905; + this.state = 7918; this.match(MySqlParser.KW_IS); - this.state = 7906; + this.state = 7919; this.nullNotNull(); } break; @@ -47241,18 +47350,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7907; + this.state = 7920; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 7908; + this.state = 7921; this.comparisonOperator(); - this.state = 7915; + this.state = 7928; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { case 1: { - this.state = 7909; + this.state = 7922; (localContext as BinaryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 309 || _la === 602)) { @@ -47262,17 +47371,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7910; + this.state = 7923; this.match(MySqlParser.LR_BRACKET); - this.state = 7911; + this.state = 7924; (localContext as BinaryComparisonPredicateContext)._subQuery = this.selectStatement(); - this.state = 7912; + this.state = 7925; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7914; + this.state = 7927; (localContext as BinaryComparisonPredicateContext)._right = this.predicate(0); } break; @@ -47283,32 +47392,32 @@ export class MySqlParser extends SQLParserBase { { localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7917; + this.state = 7930; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7919; + this.state = 7932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7918; + this.state = 7931; this.match(MySqlParser.KW_NOT); } } - this.state = 7921; + this.state = 7934; this.match(MySqlParser.KW_LIKE); - this.state = 7922; + this.state = 7935; this.predicate(0); - this.state = 7925; + this.state = 7938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { case 1: { - this.state = 7923; + this.state = 7936; this.match(MySqlParser.KW_ESCAPE); - this.state = 7924; + this.state = 7937; this.match(MySqlParser.STRING_LITERAL); } break; @@ -47319,28 +47428,28 @@ export class MySqlParser extends SQLParserBase { { localContext = new JsonMemberOfPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7927; + this.state = 7940; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7928; + this.state = 7941; this.match(MySqlParser.KW_MEMBER); - this.state = 7929; + this.state = 7942; this.match(MySqlParser.KW_OF); - this.state = 7930; + this.state = 7943; this.match(MySqlParser.LR_BRACKET); - this.state = 7931; + this.state = 7944; this.predicate(0); - this.state = 7932; + this.state = 7945; this.match(MySqlParser.RR_BRACKET); } break; } } } - this.state = 7938; + this.state = 7951; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context); } } } @@ -47370,23 +47479,23 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ExpressionAtomContext(this.context, parentState); let previousContext = localContext; - let _startState = 808; - this.enterRecursionRule(localContext, 808, MySqlParser.RULE_expressionAtom, _p); + let _startState = 818; + this.enterRecursionRule(localContext, 818, MySqlParser.RULE_expressionAtom, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7987; + this.state = 8000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1154, this.context) ) { case 1: { localContext = new ConstantExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7940; + this.state = 7953; this.constant(); } break; @@ -47395,7 +47504,7 @@ export class MySqlParser extends SQLParserBase { localContext = new FunctionCallExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7941; + this.state = 7954; this.functionCall(); } break; @@ -47404,7 +47513,7 @@ export class MySqlParser extends SQLParserBase { localContext = new MysqlVariableExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7942; + this.state = 7955; this.mysqlVariable(); } break; @@ -47413,9 +47522,9 @@ export class MySqlParser extends SQLParserBase { localContext = new UnaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7943; + this.state = 7956; this.unaryOperator(); - this.state = 7944; + this.state = 7957; this.expressionAtom(12); } break; @@ -47424,9 +47533,9 @@ export class MySqlParser extends SQLParserBase { localContext = new BinaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7946; + this.state = 7959; this.match(MySqlParser.KW_BINARY); - this.state = 7947; + this.state = 7960; this.expressionAtom(11); } break; @@ -47435,11 +47544,11 @@ export class MySqlParser extends SQLParserBase { localContext = new VariableAssignExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7948; + this.state = 7961; this.match(MySqlParser.LOCAL_ID); - this.state = 7949; + this.state = 7962; this.match(MySqlParser.VAR_ASSIGN); - this.state = 7950; + this.state = 7963; this.expressionAtom(10); } break; @@ -47448,27 +47557,27 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7951; + this.state = 7964; this.match(MySqlParser.LR_BRACKET); - this.state = 7952; + this.state = 7965; this.expression(0); - this.state = 7957; + this.state = 7970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7953; + this.state = 7966; this.match(MySqlParser.COMMA); - this.state = 7954; + this.state = 7967; this.expression(0); } } - this.state = 7959; + this.state = 7972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7960; + this.state = 7973; this.match(MySqlParser.RR_BRACKET); } break; @@ -47477,29 +47586,29 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedRowExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7962; + this.state = 7975; this.match(MySqlParser.KW_ROW); - this.state = 7963; + this.state = 7976; this.match(MySqlParser.LR_BRACKET); - this.state = 7964; + this.state = 7977; this.expression(0); - this.state = 7967; + this.state = 7980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7965; + this.state = 7978; this.match(MySqlParser.COMMA); - this.state = 7966; + this.state = 7979; this.expression(0); } } - this.state = 7969; + this.state = 7982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 7971; + this.state = 7984; this.match(MySqlParser.RR_BRACKET); } break; @@ -47508,13 +47617,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ExistsExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7973; + this.state = 7986; this.match(MySqlParser.KW_EXISTS); - this.state = 7974; + this.state = 7987; this.match(MySqlParser.LR_BRACKET); - this.state = 7975; + this.state = 7988; this.selectStatement(); - this.state = 7976; + this.state = 7989; this.match(MySqlParser.RR_BRACKET); } break; @@ -47523,11 +47632,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7978; + this.state = 7991; this.match(MySqlParser.LR_BRACKET); - this.state = 7979; + this.state = 7992; this.selectStatement(); - this.state = 7980; + this.state = 7993; this.match(MySqlParser.RR_BRACKET); } break; @@ -47536,11 +47645,11 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7982; + this.state = 7995; this.match(MySqlParser.KW_INTERVAL); - this.state = 7983; + this.state = 7996; this.expression(0); - this.state = 7984; + this.state = 7997; this.intervalType(); } break; @@ -47549,15 +47658,15 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnNameExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7986; + this.state = 7999; this.columnName(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 8006; + this.state = 8019; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47565,21 +47674,21 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 8004; + this.state = 8017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { case 1: { localContext = new JsonExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as JsonExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7989; + this.state = 8002; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7990; + this.state = 8003; this.jsonOperator(); - this.state = 7991; + this.state = 8004; (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(5); } break; @@ -47588,13 +47697,13 @@ export class MySqlParser extends SQLParserBase { localContext = new BitExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as BitExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7993; + this.state = 8006; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7994; + this.state = 8007; this.bitOperator(); - this.state = 7995; + this.state = 8008; (localContext as BitExpressionAtomContext)._right = this.expressionAtom(4); } break; @@ -47603,13 +47712,13 @@ export class MySqlParser extends SQLParserBase { localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as MathExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7997; + this.state = 8010; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7998; + this.state = 8011; this.mathOperator(); - this.state = 7999; + this.state = 8012; (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); } break; @@ -47617,22 +47726,22 @@ export class MySqlParser extends SQLParserBase { { localContext = new CollateExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8001; + this.state = 8014; if (!(this.precpred(this.context, 14))) { throw this.createFailedPredicateException("this.precpred(this.context, 14)"); } - this.state = 8002; + this.state = 8015; this.match(MySqlParser.KW_COLLATE); - this.state = 8003; + this.state = 8016; this.collationName(); } break; } } } - this.state = 8008; + this.state = 8021; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context); } } } @@ -47652,12 +47761,12 @@ export class MySqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 810, MySqlParser.RULE_unaryOperator); + this.enterRule(localContext, 820, MySqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8009; + this.state = 8022; _la = this.tokenStream.LA(1); if(!(_la === 114 || ((((_la - 853)) & ~0x1F) === 0 && ((1 << (_la - 853)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -47684,44 +47793,44 @@ export class MySqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 812, MySqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 822, MySqlParser.RULE_comparisonOperator); try { - this.state = 8019; + this.state = 8032; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8011; + this.state = 8024; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8012; + this.state = 8025; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8013; + this.state = 8026; this.match(MySqlParser.EXCLAMATION_SYMBOL); - this.state = 8014; + this.state = 8027; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8015; + this.state = 8028; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8016; + this.state = 8029; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 8017; + this.state = 8030; this.match(MySqlParser.GREATER_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8018; + this.state = 8031; this.comparisonBase(); } break; @@ -47743,47 +47852,47 @@ export class MySqlParser extends SQLParserBase { } public comparisonBase(): ComparisonBaseContext { let localContext = new ComparisonBaseContext(this.context, this.state); - this.enterRule(localContext, 814, MySqlParser.RULE_comparisonBase); + this.enterRule(localContext, 824, MySqlParser.RULE_comparisonBase); try { - this.state = 8028; + this.state = 8041; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8021; + this.state = 8034; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8022; + this.state = 8035; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8023; + this.state = 8036; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8024; + this.state = 8037; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8025; + this.state = 8038; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8026; + this.state = 8039; this.match(MySqlParser.GREATER_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8027; + this.state = 8040; this.match(MySqlParser.LESS_SYMBOL); } break; @@ -47805,47 +47914,47 @@ export class MySqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 816, MySqlParser.RULE_logicalOperator); + this.enterRule(localContext, 826, MySqlParser.RULE_logicalOperator); try { - this.state = 8037; + this.state = 8050; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 8030; + this.state = 8043; this.match(MySqlParser.KW_AND); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 8031; + this.state = 8044; this.match(MySqlParser.BIT_AND_OP); - this.state = 8032; + this.state = 8045; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.KW_XOR: this.enterOuterAlt(localContext, 3); { - this.state = 8033; + this.state = 8046; this.match(MySqlParser.KW_XOR); } break; case MySqlParser.KW_OR: this.enterOuterAlt(localContext, 4); { - this.state = 8034; + this.state = 8047; this.match(MySqlParser.KW_OR); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8035; + this.state = 8048; this.match(MySqlParser.BIT_OR_OP); - this.state = 8036; + this.state = 8049; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47869,47 +47978,47 @@ export class MySqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 818, MySqlParser.RULE_bitOperator); + this.enterRule(localContext, 828, MySqlParser.RULE_bitOperator); try { - this.state = 8046; + this.state = 8059; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 8039; + this.state = 8052; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8040; + this.state = 8053; this.match(MySqlParser.LESS_SYMBOL); } break; case MySqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 8041; + this.state = 8054; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8042; + this.state = 8055; this.match(MySqlParser.GREATER_SYMBOL); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 8043; + this.state = 8056; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 8044; + this.state = 8057; this.match(MySqlParser.BIT_XOR_OP); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8045; + this.state = 8058; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47933,12 +48042,12 @@ export class MySqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 820, MySqlParser.RULE_mathOperator); + this.enterRule(localContext, 830, MySqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8048; + this.state = 8061; _la = this.tokenStream.LA(1); if(!(((((_la - 850)) & ~0x1F) === 0 && ((1 << (_la - 850)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -47965,28 +48074,28 @@ export class MySqlParser extends SQLParserBase { } public jsonOperator(): JsonOperatorContext { let localContext = new JsonOperatorContext(this.context, this.state); - this.enterRule(localContext, 822, MySqlParser.RULE_jsonOperator); + this.enterRule(localContext, 832, MySqlParser.RULE_jsonOperator); try { - this.state = 8055; + this.state = 8068; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8050; + this.state = 8063; this.match(MySqlParser.MINUS); - this.state = 8051; + this.state = 8064; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8052; + this.state = 8065; this.match(MySqlParser.MINUS); - this.state = 8053; + this.state = 8066; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8054; + this.state = 8067; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -48008,12 +48117,12 @@ export class MySqlParser extends SQLParserBase { } public charsetNameBase(): CharsetNameBaseContext { let localContext = new CharsetNameBaseContext(this.context, this.state); - this.enterRule(localContext, 824, MySqlParser.RULE_charsetNameBase); + this.enterRule(localContext, 834, MySqlParser.RULE_charsetNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8057; + this.state = 8070; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 756)) & ~0x1F) === 0 && ((1 << (_la - 756)) & 4294967295) !== 0) || ((((_la - 788)) & ~0x1F) === 0 && ((1 << (_la - 788)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -48040,12 +48149,12 @@ export class MySqlParser extends SQLParserBase { } public transactionLevelBase(): TransactionLevelBaseContext { let localContext = new TransactionLevelBaseContext(this.context, this.state); - this.enterRule(localContext, 826, MySqlParser.RULE_transactionLevelBase); + this.enterRule(localContext, 836, MySqlParser.RULE_transactionLevelBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8059; + this.state = 8072; _la = this.tokenStream.LA(1); if(!(((((_la - 809)) & ~0x1F) === 0 && ((1 << (_la - 809)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -48072,12 +48181,12 @@ export class MySqlParser extends SQLParserBase { } public privilegesBase(): PrivilegesBaseContext { let localContext = new PrivilegesBaseContext(this.context, this.state); - this.enterRule(localContext, 828, MySqlParser.RULE_privilegesBase); + this.enterRule(localContext, 838, MySqlParser.RULE_privilegesBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8061; + this.state = 8074; _la = this.tokenStream.LA(1); if(!(((((_la - 717)) & ~0x1F) === 0 && ((1 << (_la - 717)) & 68026371) !== 0) || ((((_la - 749)) & ~0x1F) === 0 && ((1 << (_la - 749)) & 11) !== 0))) { this.errorHandler.recoverInline(this); @@ -48104,12 +48213,12 @@ export class MySqlParser extends SQLParserBase { } public intervalTypeBase(): IntervalTypeBaseContext { let localContext = new IntervalTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 830, MySqlParser.RULE_intervalTypeBase); + this.enterRule(localContext, 840, MySqlParser.RULE_intervalTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8063; + this.state = 8076; _la = this.tokenStream.LA(1); if(!(((((_la - 696)) & ~0x1F) === 0 && ((1 << (_la - 696)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -48136,12 +48245,12 @@ export class MySqlParser extends SQLParserBase { } public dataTypeBase(): DataTypeBaseContext { let localContext = new DataTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 832, MySqlParser.RULE_dataTypeBase); + this.enterRule(localContext, 842, MySqlParser.RULE_dataTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8065; + this.state = 8078; _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1179679) !== 0))) { this.errorHandler.recoverInline(this); @@ -48168,12 +48277,12 @@ export class MySqlParser extends SQLParserBase { } public keywordsCanBeId(): KeywordsCanBeIdContext { let localContext = new KeywordsCanBeIdContext(this.context, this.state); - this.enterRule(localContext, 834, MySqlParser.RULE_keywordsCanBeId); + this.enterRule(localContext, 844, MySqlParser.RULE_keywordsCanBeId); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8067; + this.state = 8080; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014211) !== 0) || _la === 74 || _la === 95 || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 16673) !== 0) || _la === 160 || _la === 170 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1648345089) !== 0) || ((((_la - 277)) & ~0x1F) === 0 && ((1 << (_la - 277)) & 4160749823) !== 0) || ((((_la - 309)) & ~0x1F) === 0 && ((1 << (_la - 309)) & 4292870141) !== 0) || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 4294967287) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 4024434671) !== 0) || ((((_la - 406)) & ~0x1F) === 0 && ((1 << (_la - 406)) & 3747609503) !== 0) || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4227727359) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 3758096239) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 2678062559) !== 0) || ((((_la - 534)) & ~0x1F) === 0 && ((1 << (_la - 534)) & 2682256863) !== 0) || ((((_la - 566)) & ~0x1F) === 0 && ((1 << (_la - 566)) & 4294965887) !== 0) || ((((_la - 598)) & ~0x1F) === 0 && ((1 << (_la - 598)) & 255) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 2128608253) !== 0) || ((((_la - 704)) & ~0x1F) === 0 && ((1 << (_la - 704)) & 1053007341) !== 0) || ((((_la - 737)) & ~0x1F) === 0 && ((1 << (_la - 737)) & 478907) !== 0) || ((((_la - 802)) & ~0x1F) === 0 && ((1 << (_la - 802)) & 3230662657) !== 0) || _la === 838)) { this.errorHandler.recoverInline(this); @@ -48200,12 +48309,12 @@ export class MySqlParser extends SQLParserBase { } public functionNameBase(): FunctionNameBaseContext { let localContext = new FunctionNameBaseContext(this.context, this.state); - this.enterRule(localContext, 836, MySqlParser.RULE_functionNameBase); + this.enterRule(localContext, 846, MySqlParser.RULE_functionNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8069; + this.state = 8082; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 98 || _la === 150 || _la === 152 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 23) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 16375299) !== 0) || _la === 296 || _la === 435 || ((((_la - 686)) & ~0x1F) === 0 && ((1 << (_la - 686)) & 261121) !== 0) || _la === 746 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 145190393) !== 0) || _la === 856)) { this.errorHandler.recoverInline(this); @@ -48237,13 +48346,13 @@ export class MySqlParser extends SQLParserBase { return this.queryExpressionBody_sempred(localContext as QueryExpressionBodyContext, predIndex); case 108: return this.queryItem_sempred(localContext as QueryItemContext, predIndex); - case 331: + case 336: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 402: + case 407: return this.expression_sempred(localContext as ExpressionContext, predIndex); - case 403: + case 408: return this.predicate_sempred(localContext as PredicateContext, predIndex); - case 404: + case 409: return this.expressionAtom_sempred(localContext as ExpressionAtomContext, predIndex); } return true; @@ -48314,7 +48423,7 @@ export class MySqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,895,8072,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,895,8085,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, @@ -48387,3656 +48496,3660 @@ export class MySqlParser extends SQLParserBase { 2,401,7,401,2,402,7,402,2,403,7,403,2,404,7,404,2,405,7,405,2,406, 7,406,2,407,7,407,2,408,7,408,2,409,7,409,2,410,7,410,2,411,7,411, 2,412,7,412,2,413,7,413,2,414,7,414,2,415,7,415,2,416,7,416,2,417, - 7,417,2,418,7,418,1,0,5,0,840,8,0,10,0,12,0,843,9,0,1,0,1,0,1,1, - 1,1,3,1,849,8,1,1,1,3,1,852,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 861,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4, - 1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4, - 1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,905,8,4,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 3,5,924,8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,935,8,6,1,7, - 1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,951,8,7, - 1,8,1,8,1,8,3,8,956,8,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9, - 3,9,968,8,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,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,1,10,1,10,1,10,1,10,1,10,3,10,1003,8,10,1, - 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1013,8,11,1,12,1,12,1, - 12,3,12,1018,8,12,1,12,1,12,5,12,1022,8,12,10,12,12,12,1025,9,12, - 1,13,1,13,3,13,1029,8,13,1,13,1,13,3,13,1033,8,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,3,13,1042,8,13,1,13,3,13,1045,8,13,1,13,3,13, - 1048,8,13,1,13,1,13,3,13,1052,8,13,1,13,1,13,1,13,1,14,1,14,3,14, - 1059,8,14,1,14,3,14,1062,8,14,1,14,1,14,1,14,3,14,1067,8,14,1,14, - 1,14,1,14,1,14,5,14,1073,8,14,10,14,12,14,1076,9,14,1,14,1,14,3, - 14,1080,8,14,1,14,1,14,1,14,3,14,1085,8,14,1,14,5,14,1088,8,14,10, - 14,12,14,1091,9,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 3,15,1102,8,15,1,15,3,15,1105,8,15,1,15,1,15,3,15,1109,8,15,1,15, - 3,15,1112,8,15,1,15,1,15,3,15,1116,8,15,1,15,3,15,1119,8,15,1,15, - 1,15,3,15,1123,8,15,1,15,3,15,1126,8,15,1,15,3,15,1129,8,15,1,15, - 1,15,3,15,1133,8,15,1,15,3,15,1136,8,15,1,15,1,15,3,15,1140,8,15, - 1,15,1,15,1,16,1,16,3,16,1146,8,16,1,16,1,16,3,16,1150,8,16,1,16, - 1,16,1,16,3,16,1155,8,16,1,16,1,16,5,16,1159,8,16,10,16,12,16,1162, - 9,16,1,16,1,16,5,16,1166,8,16,10,16,12,16,1169,9,16,1,16,1,16,1, - 17,1,17,3,17,1175,8,17,1,17,3,17,1178,8,17,1,17,1,17,3,17,1182,8, - 17,1,17,1,17,1,17,3,17,1187,8,17,1,17,1,17,5,17,1191,8,17,10,17, - 12,17,1194,9,17,1,17,1,17,1,17,1,17,5,17,1200,8,17,10,17,12,17,1203, - 9,17,1,17,1,17,3,17,1207,8,17,1,18,1,18,3,18,1211,8,18,1,18,1,18, - 3,18,1215,8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,3,19, - 1226,8,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20, - 1,20,1,20,1,20,5,20,1242,8,20,10,20,12,20,1245,9,20,1,20,1,20,1, - 21,1,21,3,21,1251,8,21,1,21,1,21,3,21,1255,8,21,1,21,1,21,3,21,1259, - 8,21,1,21,1,21,3,21,1263,8,21,1,21,5,21,1266,8,21,10,21,12,21,1269, - 9,21,3,21,1271,8,21,1,21,3,21,1274,8,21,1,21,3,21,1277,8,21,1,21, - 3,21,1280,8,21,1,21,1,21,1,21,1,21,3,21,1286,8,21,1,21,1,21,3,21, - 1290,8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1300,8,21, - 1,21,1,21,3,21,1304,8,21,1,21,1,21,3,21,1308,8,21,1,21,1,21,1,21, - 1,21,3,21,1314,8,21,1,21,5,21,1317,8,21,10,21,12,21,1320,9,21,3, - 21,1322,8,21,1,21,3,21,1325,8,21,3,21,1327,8,21,1,22,1,22,3,22,1331, - 8,22,1,22,1,22,1,22,1,22,1,22,3,22,1338,8,22,1,22,1,22,3,22,1342, - 8,22,1,22,3,22,1345,8,22,1,22,1,22,1,22,3,22,1350,8,22,1,22,1,22, - 3,22,1354,8,22,1,22,3,22,1357,8,22,1,22,1,22,3,22,1361,8,22,1,22, - 3,22,1364,8,22,1,23,1,23,3,23,1368,8,23,1,23,1,23,1,23,1,23,1,23, - 1,23,1,23,1,23,1,23,1,23,1,23,3,23,1381,8,23,1,23,3,23,1384,8,23, - 1,23,1,23,3,23,1388,8,23,1,23,3,23,1391,8,23,1,23,1,23,3,23,1395, - 8,23,1,23,3,23,1398,8,23,1,23,1,23,3,23,1402,8,23,1,23,3,23,1405, - 8,23,1,23,1,23,3,23,1409,8,23,1,23,3,23,1412,8,23,1,23,3,23,1415, - 8,23,1,23,1,23,3,23,1419,8,23,1,23,3,23,1422,8,23,1,23,1,23,3,23, - 1426,8,23,1,23,1,23,1,24,1,24,3,24,1432,8,24,1,24,3,24,1435,8,24, - 1,24,1,24,3,24,1439,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, - 1,24,1,24,3,24,1451,8,24,1,24,1,24,1,25,1,25,3,25,1457,8,25,1,25, - 1,25,1,26,1,26,1,26,1,26,1,26,5,26,1466,8,26,10,26,12,26,1469,9, - 26,1,26,1,26,3,26,1473,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1481, - 8,26,1,27,1,27,3,27,1485,8,27,1,27,1,27,1,27,3,27,1490,8,27,1,27, - 3,27,1493,8,27,1,27,1,27,1,27,3,27,1498,8,27,1,27,1,27,1,27,1,27, - 1,27,1,27,5,27,1506,8,27,10,27,12,27,1509,9,27,1,27,1,27,3,27,1513, - 8,27,1,27,1,27,1,27,3,27,1518,8,27,1,27,1,27,1,27,1,27,3,27,1524, - 8,27,1,27,1,27,1,27,3,27,1529,8,27,1,27,1,27,3,27,1533,8,27,3,27, - 1535,8,27,1,28,3,28,1538,8,28,1,28,1,28,3,28,1542,8,28,1,28,1,28, - 3,28,1546,8,28,1,28,3,28,1549,8,28,1,28,1,28,3,28,1553,8,28,1,28, - 1,28,3,28,1557,8,28,1,28,1,28,3,28,1561,8,28,1,28,1,28,1,28,1,28, - 3,28,1567,8,28,1,28,3,28,1570,8,28,1,29,1,29,1,29,1,29,1,29,3,29, - 1577,8,29,1,30,1,30,1,30,3,30,1582,8,30,1,31,1,31,1,31,1,31,3,31, - 1588,8,31,1,32,1,32,1,32,5,32,1593,8,32,10,32,12,32,1596,9,32,1, - 32,1,32,1,32,3,32,1601,8,32,1,32,1,32,1,32,1,32,5,32,1607,8,32,10, - 32,12,32,1610,9,32,3,32,1612,8,32,1,32,1,32,1,32,5,32,1617,8,32, - 10,32,12,32,1620,9,32,3,32,1622,8,32,3,32,1624,8,32,1,33,1,33,1, - 33,1,33,3,33,1630,8,33,1,34,1,34,1,34,1,34,3,34,1636,8,34,1,34,1, + 7,417,2,418,7,418,2,419,7,419,2,420,7,420,2,421,7,421,2,422,7,422, + 2,423,7,423,1,0,5,0,850,8,0,10,0,12,0,853,9,0,1,0,1,0,1,1,1,1,3, + 1,859,8,1,1,1,3,1,862,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,871,8, + 2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, + 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, + 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,915,8,4,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,934, + 8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,945,8,6,1,7,1,7,1,7, + 1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,961,8,7,1,8,1,8, + 1,8,3,8,966,8,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,978, + 8,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,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,1,10,1,10,1,10,1,10,1,10,3,10,1013,8,10,1,11,1,11, + 1,11,1,11,1,11,1,11,1,11,1,11,3,11,1023,8,11,1,12,1,12,1,12,3,12, + 1028,8,12,1,12,1,12,5,12,1032,8,12,10,12,12,12,1035,9,12,1,13,1, + 13,3,13,1039,8,13,1,13,1,13,3,13,1043,8,13,1,13,1,13,1,13,1,13,1, + 13,1,13,1,13,3,13,1052,8,13,1,13,3,13,1055,8,13,1,13,3,13,1058,8, + 13,1,13,1,13,3,13,1062,8,13,1,13,1,13,1,13,1,14,1,14,3,14,1069,8, + 14,1,14,3,14,1072,8,14,1,14,1,14,1,14,3,14,1077,8,14,1,14,1,14,1, + 14,1,14,5,14,1083,8,14,10,14,12,14,1086,9,14,1,14,1,14,3,14,1090, + 8,14,1,14,1,14,1,14,3,14,1095,8,14,1,14,5,14,1098,8,14,10,14,12, + 14,1101,9,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,3,15,1112, + 8,15,1,15,3,15,1115,8,15,1,15,1,15,3,15,1119,8,15,1,15,3,15,1122, + 8,15,1,15,1,15,3,15,1126,8,15,1,15,3,15,1129,8,15,1,15,1,15,3,15, + 1133,8,15,1,15,3,15,1136,8,15,1,15,3,15,1139,8,15,1,15,1,15,3,15, + 1143,8,15,1,15,3,15,1146,8,15,1,15,1,15,3,15,1150,8,15,1,15,1,15, + 1,16,1,16,3,16,1156,8,16,1,16,1,16,3,16,1160,8,16,1,16,1,16,1,16, + 3,16,1165,8,16,1,16,1,16,5,16,1169,8,16,10,16,12,16,1172,9,16,1, + 16,1,16,5,16,1176,8,16,10,16,12,16,1179,9,16,1,16,1,16,1,17,1,17, + 3,17,1185,8,17,1,17,3,17,1188,8,17,1,17,1,17,3,17,1192,8,17,1,17, + 1,17,1,17,3,17,1197,8,17,1,17,1,17,5,17,1201,8,17,10,17,12,17,1204, + 9,17,1,17,1,17,1,17,1,17,5,17,1210,8,17,10,17,12,17,1213,9,17,1, + 17,1,17,3,17,1217,8,17,1,18,1,18,3,18,1221,8,18,1,18,1,18,3,18,1225, + 8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,3,19,1236,8,19, + 1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20, + 1,20,5,20,1252,8,20,10,20,12,20,1255,9,20,1,20,1,20,1,21,1,21,3, + 21,1261,8,21,1,21,1,21,3,21,1265,8,21,1,21,1,21,3,21,1269,8,21,1, + 21,1,21,3,21,1273,8,21,1,21,5,21,1276,8,21,10,21,12,21,1279,9,21, + 3,21,1281,8,21,1,21,3,21,1284,8,21,1,21,3,21,1287,8,21,1,21,3,21, + 1290,8,21,1,21,1,21,1,21,1,21,3,21,1296,8,21,1,21,1,21,3,21,1300, + 8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1310,8,21,1,21, + 1,21,3,21,1314,8,21,1,21,1,21,3,21,1318,8,21,1,21,1,21,1,21,1,21, + 3,21,1324,8,21,1,21,5,21,1327,8,21,10,21,12,21,1330,9,21,3,21,1332, + 8,21,1,21,3,21,1335,8,21,3,21,1337,8,21,1,22,1,22,3,22,1341,8,22, + 1,22,1,22,1,22,1,22,1,22,3,22,1348,8,22,1,22,1,22,3,22,1352,8,22, + 1,22,3,22,1355,8,22,1,22,1,22,1,22,3,22,1360,8,22,1,22,1,22,3,22, + 1364,8,22,1,22,3,22,1367,8,22,1,22,1,22,3,22,1371,8,22,1,22,3,22, + 1374,8,22,1,23,1,23,3,23,1378,8,23,1,23,1,23,1,23,1,23,1,23,1,23, + 1,23,1,23,1,23,1,23,1,23,3,23,1391,8,23,1,23,3,23,1394,8,23,1,23, + 1,23,3,23,1398,8,23,1,23,3,23,1401,8,23,1,23,1,23,3,23,1405,8,23, + 1,23,3,23,1408,8,23,1,23,1,23,3,23,1412,8,23,1,23,3,23,1415,8,23, + 1,23,1,23,3,23,1419,8,23,1,23,3,23,1422,8,23,1,23,3,23,1425,8,23, + 1,23,1,23,3,23,1429,8,23,1,23,3,23,1432,8,23,1,23,1,23,3,23,1436, + 8,23,1,23,1,23,1,24,1,24,3,24,1442,8,24,1,24,3,24,1445,8,24,1,24, + 1,24,3,24,1449,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, + 1,24,3,24,1461,8,24,1,24,1,24,1,25,1,25,3,25,1467,8,25,1,25,1,25, + 1,26,1,26,1,26,1,26,1,26,5,26,1476,8,26,10,26,12,26,1479,9,26,1, + 26,1,26,3,26,1483,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1491,8, + 26,1,27,1,27,3,27,1495,8,27,1,27,1,27,1,27,3,27,1500,8,27,1,27,3, + 27,1503,8,27,1,27,1,27,1,27,3,27,1508,8,27,1,27,1,27,1,27,1,27,1, + 27,1,27,5,27,1516,8,27,10,27,12,27,1519,9,27,1,27,1,27,3,27,1523, + 8,27,1,27,1,27,1,27,3,27,1528,8,27,1,27,1,27,1,27,1,27,3,27,1534, + 8,27,1,27,1,27,1,27,3,27,1539,8,27,1,27,1,27,3,27,1543,8,27,3,27, + 1545,8,27,1,28,3,28,1548,8,28,1,28,1,28,3,28,1552,8,28,1,28,1,28, + 3,28,1556,8,28,1,28,3,28,1559,8,28,1,28,1,28,3,28,1563,8,28,1,28, + 1,28,3,28,1567,8,28,1,28,1,28,3,28,1571,8,28,1,28,1,28,1,28,1,28, + 3,28,1577,8,28,1,28,3,28,1580,8,28,1,29,1,29,1,29,1,29,1,29,3,29, + 1587,8,29,1,30,1,30,1,30,3,30,1592,8,30,1,31,1,31,1,31,1,31,3,31, + 1598,8,31,1,32,1,32,1,32,5,32,1603,8,32,10,32,12,32,1606,9,32,1, + 32,1,32,1,32,3,32,1611,8,32,1,32,1,32,1,32,1,32,5,32,1617,8,32,10, + 32,12,32,1620,9,32,3,32,1622,8,32,1,32,1,32,1,32,5,32,1627,8,32, + 10,32,12,32,1630,9,32,3,32,1632,8,32,3,32,1634,8,32,1,33,1,33,1, + 33,1,33,3,33,1640,8,33,1,34,1,34,1,34,1,34,3,34,1646,8,34,1,34,1, 34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, - 35,3,35,1653,8,35,1,36,1,36,1,36,1,36,1,36,3,36,1660,8,36,1,37,1, - 37,1,37,1,38,1,38,3,38,1667,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1, - 38,1,38,1,38,1,38,3,38,1679,8,38,1,38,1,38,1,38,3,38,1684,8,38,1, - 38,3,38,1687,8,38,1,39,3,39,1690,8,39,1,39,1,39,1,39,1,40,1,40,1, - 40,1,41,1,41,1,41,1,41,1,41,3,41,1703,8,41,1,41,1,41,1,41,1,41,1, - 41,1,41,1,41,1,41,1,41,1,41,1,41,3,41,1716,8,41,1,41,1,41,1,41,3, - 41,1721,8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, - 42,1,42,1,42,1,42,3,42,1737,8,42,1,43,1,43,1,43,1,43,5,43,1743,8, - 43,10,43,12,43,1746,9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44, - 1755,8,44,1,44,3,44,1758,8,44,1,44,1,44,5,44,1762,8,44,10,44,12, - 44,1765,9,44,1,44,1,44,3,44,1769,8,44,1,44,3,44,1772,8,44,1,44,1, - 44,5,44,1776,8,44,10,44,12,44,1779,9,44,1,44,3,44,1782,8,44,1,44, - 1,44,1,44,3,44,1787,8,44,1,44,1,44,5,44,1791,8,44,10,44,12,44,1794, - 9,44,1,44,3,44,1797,8,44,1,44,1,44,3,44,1801,8,44,1,44,3,44,1804, - 8,44,1,44,3,44,1807,8,44,1,44,1,44,5,44,1811,8,44,10,44,12,44,1814, - 9,44,1,44,3,44,1817,8,44,1,44,1,44,1,44,3,44,1822,8,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1833,8,44,1,45,3,45,1836, - 8,45,1,45,1,45,1,45,1,45,1,45,3,45,1843,8,45,1,45,3,45,1846,8,45, - 1,46,1,46,3,46,1850,8,46,1,47,1,47,5,47,1854,8,47,10,47,12,47,1857, - 9,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1868,8,48, - 1,48,3,48,1871,8,48,1,48,1,48,1,48,3,48,1876,8,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1889,8,48,1,48,1,48, - 1,48,1,48,1,48,3,48,1896,8,48,1,48,1,48,1,48,1,48,3,48,1902,8,48, - 1,49,1,49,1,49,3,49,1907,8,49,1,49,1,49,3,49,1911,8,49,1,49,3,49, - 1914,8,49,1,50,1,50,1,50,1,50,1,50,1,50,3,50,1922,8,50,1,50,1,50, - 1,50,1,50,1,50,1,50,3,50,1930,8,50,3,50,1932,8,50,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,3,51,1942,8,51,1,52,1,52,3,52,1946,8,52, - 1,52,3,52,1949,8,52,1,52,1,52,3,52,1953,8,52,1,52,1,52,1,52,3,52, - 1958,8,52,1,52,1,52,1,52,3,52,1963,8,52,1,52,1,52,1,52,3,52,1968, - 8,52,1,52,1,52,3,52,1972,8,52,1,52,1,52,3,52,1976,8,52,1,52,1,52, - 3,52,1980,8,52,1,52,1,52,3,52,1984,8,52,1,52,1,52,3,52,1988,8,52, - 1,52,1,52,3,52,1992,8,52,1,52,1,52,1,52,3,52,1997,8,52,1,52,1,52, - 1,52,3,52,2002,8,52,1,52,1,52,1,52,3,52,2007,8,52,1,52,1,52,1,52, - 1,52,3,52,2013,8,52,1,52,1,52,1,52,3,52,2018,8,52,1,52,1,52,1,52, - 3,52,2023,8,52,1,52,1,52,1,52,3,52,2028,8,52,1,52,1,52,1,52,3,52, - 2033,8,52,1,52,1,52,1,52,3,52,2038,8,52,1,52,1,52,1,52,1,52,3,52, - 2044,8,52,1,52,1,52,1,52,3,52,2049,8,52,1,52,1,52,1,52,3,52,2054, - 8,52,1,52,1,52,1,52,3,52,2059,8,52,1,52,1,52,1,52,3,52,2064,8,52, - 1,52,1,52,1,52,3,52,2069,8,52,1,52,1,52,1,52,3,52,2074,8,52,1,52, - 1,52,1,52,3,52,2079,8,52,1,52,1,52,1,52,1,52,1,52,3,52,2086,8,52, - 1,52,1,52,1,52,3,52,2091,8,52,1,52,1,52,1,52,3,52,2096,8,52,1,52, - 1,52,1,52,3,52,2101,8,52,1,52,1,52,3,52,2105,8,52,1,52,1,52,1,52, - 3,52,2110,8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2118,8,52,1,52, - 1,52,1,52,3,52,2123,8,52,1,52,1,52,1,52,1,52,3,52,2129,8,52,1,53, - 1,53,1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,3,55,2141,8,55,1,55, - 1,55,1,55,1,55,1,55,3,55,2148,8,55,3,55,2150,8,55,1,55,1,55,1,55, - 1,55,5,55,2156,8,55,10,55,12,55,2159,9,55,1,55,1,55,3,55,2163,8, - 55,1,56,3,56,2166,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2174,8, - 56,1,56,1,56,1,56,1,56,3,56,2180,8,56,1,56,1,56,3,56,2184,8,56,1, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2197,8, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2209,8, - 56,3,56,2211,8,56,1,57,3,57,2214,8,57,1,57,1,57,1,57,1,57,1,57,1, - 57,3,57,2222,8,57,1,57,1,57,1,57,1,57,3,57,2228,8,57,1,57,1,57,1, - 57,1,57,3,57,2234,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, - 58,5,58,2245,8,58,10,58,12,58,2248,9,58,1,58,1,58,5,58,2252,8,58, - 10,58,12,58,2255,9,58,1,58,1,58,1,58,1,58,5,58,2261,8,58,10,58,12, - 58,2264,9,58,1,58,1,58,3,58,2268,8,58,1,58,1,58,1,58,1,58,1,58,1, - 58,1,58,5,58,2277,8,58,10,58,12,58,2280,9,58,1,58,1,58,1,58,1,58, - 5,58,2286,8,58,10,58,12,58,2289,9,58,1,58,1,58,3,58,2293,8,58,1, - 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2303,8,58,10,58,12,58, - 2306,9,58,1,58,1,58,5,58,2310,8,58,10,58,12,58,2313,9,58,1,58,1, - 58,1,58,1,58,5,58,2319,8,58,10,58,12,58,2322,9,58,1,58,1,58,3,58, - 2326,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2336,8,58, - 10,58,12,58,2339,9,58,1,58,1,58,5,58,2343,8,58,10,58,12,58,2346, - 9,58,1,58,1,58,1,58,1,58,5,58,2352,8,58,10,58,12,58,2355,9,58,1, - 58,1,58,3,58,2359,8,58,1,58,1,58,1,58,5,58,2364,8,58,10,58,12,58, - 2367,9,58,1,58,1,58,1,58,1,58,5,58,2373,8,58,10,58,12,58,2376,9, - 58,1,58,1,58,3,58,2380,8,58,3,58,2382,8,58,1,59,1,59,1,59,3,59,2387, - 8,59,1,60,1,60,1,60,1,60,4,60,2393,8,60,11,60,12,60,2394,1,60,1, - 60,1,61,1,61,1,61,5,61,2402,8,61,10,61,12,61,2405,9,61,1,62,3,62, - 2408,8,62,1,62,3,62,2411,8,62,1,62,1,62,3,62,2415,8,62,1,62,1,62, - 1,62,3,62,2420,8,62,1,62,1,62,1,62,1,62,3,62,2426,8,62,1,62,1,62, - 1,62,1,62,3,62,2432,8,62,1,62,1,62,1,62,3,62,2437,8,62,1,62,1,62, - 1,62,3,62,2442,8,62,1,62,1,62,1,62,3,62,2447,8,62,1,62,1,62,1,62, - 3,62,2452,8,62,1,62,3,62,2455,8,62,1,63,1,63,1,63,3,63,2460,8,63, - 1,63,4,63,2463,8,63,11,63,12,63,2464,1,63,1,63,1,63,1,63,1,63,1, - 63,1,63,1,63,3,63,2475,8,63,1,64,1,64,3,64,2479,8,64,1,64,1,64,1, - 64,1,64,1,64,3,64,2486,8,64,1,64,1,64,1,64,3,64,2491,8,64,1,64,3, - 64,2494,8,64,1,64,1,64,1,64,3,64,2499,8,64,1,64,3,64,2502,8,64,1, - 64,1,64,3,64,2506,8,64,1,64,1,64,3,64,2510,8,64,1,65,1,65,1,65,1, - 65,5,65,2516,8,65,10,65,12,65,2519,9,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,67,1,67,1,67,1,67,3,67,2537, - 8,67,1,67,3,67,2540,8,67,1,67,3,67,2543,8,67,1,67,1,67,3,67,2547, - 8,67,1,67,1,67,1,68,1,68,1,68,1,68,5,68,2555,8,68,10,68,12,68,2558, - 9,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69,2568,8,69,10,69, - 12,69,2571,9,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2581, - 8,70,10,70,12,70,2584,9,70,3,70,2586,8,70,1,70,1,70,5,70,2590,8, - 70,10,70,12,70,2593,9,70,3,70,2595,8,70,1,71,1,71,3,71,2599,8,71, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2608,8,71,1,71,3,71,2611, - 8,71,1,71,3,71,2614,8,71,1,71,1,71,1,71,3,71,2619,8,71,1,71,1,71, - 3,71,2623,8,71,1,71,3,71,2626,8,71,1,71,1,71,3,71,2630,8,71,1,71, - 1,71,3,71,2634,8,71,1,71,3,71,2637,8,71,1,71,1,71,3,71,2641,8,71, - 1,71,3,71,2644,8,71,1,71,1,71,3,71,2648,8,71,1,71,3,71,2651,8,71, - 1,72,1,72,1,72,1,72,3,72,2657,8,72,1,72,3,72,2660,8,72,1,72,1,72, - 1,72,3,72,2665,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2673,8,72, - 1,72,1,72,1,72,1,72,3,72,2679,8,72,1,72,1,72,3,72,2683,8,72,1,73, - 1,73,3,73,2687,8,73,1,73,5,73,2690,8,73,10,73,12,73,2693,9,73,1, - 73,1,73,3,73,2697,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2704,8,73,1, - 73,1,73,3,73,2708,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2717, - 8,73,10,73,12,73,2720,9,73,1,73,1,73,1,73,1,73,1,73,3,73,2727,8, - 73,1,73,3,73,2730,8,73,1,73,1,73,5,73,2734,8,73,10,73,12,73,2737, - 9,73,1,73,1,73,1,73,3,73,2742,8,73,1,73,3,73,2745,8,73,1,73,1,73, - 5,73,2749,8,73,10,73,12,73,2752,9,73,1,73,1,73,1,73,3,73,2757,8, - 73,3,73,2759,8,73,1,73,1,73,1,73,3,73,2764,8,73,1,73,1,73,5,73,2768, - 8,73,10,73,12,73,2771,9,73,1,73,1,73,1,73,3,73,2776,8,73,3,73,2778, - 8,73,1,73,1,73,3,73,2782,8,73,1,73,3,73,2785,8,73,1,73,3,73,2788, - 8,73,1,73,1,73,5,73,2792,8,73,10,73,12,73,2795,9,73,1,73,1,73,1, - 73,3,73,2800,8,73,3,73,2802,8,73,1,73,1,73,1,73,3,73,2807,8,73,1, - 73,1,73,1,73,1,73,1,73,3,73,2814,8,73,1,73,1,73,1,73,1,73,1,73,1, - 73,1,73,3,73,2823,8,73,1,73,3,73,2826,8,73,1,73,1,73,3,73,2830,8, - 73,1,73,1,73,1,73,3,73,2835,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1, - 73,1,73,3,73,2845,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2854, - 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2862,8,73,1,73,3,73,2865, - 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2873,8,73,1,73,3,73,2876, - 8,73,1,73,1,73,1,73,1,73,1,73,3,73,2883,8,73,1,73,1,73,1,73,3,73, - 2888,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2896,8,73,1,73,1,73, + 35,3,35,1663,8,35,1,36,1,36,1,36,1,36,1,36,3,36,1670,8,36,1,37,1, + 37,1,37,1,38,1,38,3,38,1677,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1, + 38,1,38,1,38,1,38,3,38,1689,8,38,1,38,1,38,1,38,3,38,1694,8,38,1, + 38,3,38,1697,8,38,1,39,3,39,1700,8,39,1,39,1,39,1,39,1,40,1,40,1, + 40,1,41,1,41,1,41,1,41,1,41,3,41,1713,8,41,1,41,1,41,1,41,1,41,1, + 41,1,41,1,41,1,41,1,41,1,41,1,41,3,41,1726,8,41,1,41,1,41,1,41,3, + 41,1731,8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, + 42,1,42,1,42,1,42,3,42,1747,8,42,1,43,1,43,1,43,1,43,5,43,1753,8, + 43,10,43,12,43,1756,9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44, + 1765,8,44,1,44,3,44,1768,8,44,1,44,1,44,5,44,1772,8,44,10,44,12, + 44,1775,9,44,1,44,1,44,3,44,1779,8,44,1,44,3,44,1782,8,44,1,44,1, + 44,5,44,1786,8,44,10,44,12,44,1789,9,44,1,44,3,44,1792,8,44,1,44, + 1,44,1,44,3,44,1797,8,44,1,44,1,44,5,44,1801,8,44,10,44,12,44,1804, + 9,44,1,44,3,44,1807,8,44,1,44,1,44,3,44,1811,8,44,1,44,3,44,1814, + 8,44,1,44,3,44,1817,8,44,1,44,1,44,5,44,1821,8,44,10,44,12,44,1824, + 9,44,1,44,3,44,1827,8,44,1,44,1,44,1,44,3,44,1832,8,44,1,44,1,44, + 1,44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1843,8,44,1,45,3,45,1846, + 8,45,1,45,1,45,1,45,1,45,1,45,3,45,1853,8,45,1,45,3,45,1856,8,45, + 1,46,1,46,3,46,1860,8,46,1,47,1,47,5,47,1864,8,47,10,47,12,47,1867, + 9,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1878,8,48, + 1,48,3,48,1881,8,48,1,48,1,48,1,48,3,48,1886,8,48,1,48,1,48,1,48, + 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1899,8,48,1,48,1,48, + 1,48,1,48,1,48,3,48,1906,8,48,1,48,1,48,1,48,1,48,3,48,1912,8,48, + 1,49,1,49,1,49,3,49,1917,8,49,1,49,1,49,3,49,1921,8,49,1,49,3,49, + 1924,8,49,1,50,1,50,1,50,1,50,1,50,1,50,3,50,1932,8,50,1,50,1,50, + 1,50,1,50,1,50,1,50,3,50,1940,8,50,3,50,1942,8,50,1,51,1,51,1,51, + 1,51,1,51,1,51,1,51,1,51,3,51,1952,8,51,1,52,1,52,3,52,1956,8,52, + 1,52,3,52,1959,8,52,1,52,1,52,3,52,1963,8,52,1,52,1,52,1,52,3,52, + 1968,8,52,1,52,1,52,1,52,3,52,1973,8,52,1,52,1,52,1,52,3,52,1978, + 8,52,1,52,1,52,3,52,1982,8,52,1,52,1,52,3,52,1986,8,52,1,52,1,52, + 3,52,1990,8,52,1,52,1,52,3,52,1994,8,52,1,52,1,52,3,52,1998,8,52, + 1,52,1,52,3,52,2002,8,52,1,52,1,52,1,52,3,52,2007,8,52,1,52,1,52, + 1,52,3,52,2012,8,52,1,52,1,52,1,52,3,52,2017,8,52,1,52,1,52,1,52, + 1,52,3,52,2023,8,52,1,52,1,52,1,52,3,52,2028,8,52,1,52,1,52,1,52, + 3,52,2033,8,52,1,52,1,52,1,52,3,52,2038,8,52,1,52,1,52,1,52,3,52, + 2043,8,52,1,52,1,52,1,52,3,52,2048,8,52,1,52,1,52,1,52,1,52,3,52, + 2054,8,52,1,52,1,52,1,52,3,52,2059,8,52,1,52,1,52,1,52,3,52,2064, + 8,52,1,52,1,52,1,52,3,52,2069,8,52,1,52,1,52,1,52,3,52,2074,8,52, + 1,52,1,52,1,52,3,52,2079,8,52,1,52,1,52,1,52,3,52,2084,8,52,1,52, + 1,52,1,52,3,52,2089,8,52,1,52,1,52,1,52,1,52,1,52,3,52,2096,8,52, + 1,52,1,52,1,52,3,52,2101,8,52,1,52,1,52,1,52,3,52,2106,8,52,1,52, + 1,52,1,52,3,52,2111,8,52,1,52,1,52,3,52,2115,8,52,1,52,1,52,1,52, + 3,52,2120,8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2128,8,52,1,52, + 1,52,1,52,3,52,2133,8,52,1,52,1,52,1,52,1,52,3,52,2139,8,52,1,53, + 1,53,1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,3,55,2151,8,55,1,55, + 1,55,1,55,1,55,1,55,3,55,2158,8,55,3,55,2160,8,55,1,55,1,55,1,55, + 1,55,5,55,2166,8,55,10,55,12,55,2169,9,55,1,55,1,55,3,55,2173,8, + 55,1,56,3,56,2176,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2184,8, + 56,1,56,1,56,1,56,1,56,3,56,2190,8,56,1,56,1,56,3,56,2194,8,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2207,8, + 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2219,8, + 56,3,56,2221,8,56,1,57,3,57,2224,8,57,1,57,1,57,1,57,1,57,1,57,1, + 57,3,57,2232,8,57,1,57,1,57,1,57,1,57,3,57,2238,8,57,1,57,1,57,1, + 57,1,57,3,57,2244,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,5,58,2255,8,58,10,58,12,58,2258,9,58,1,58,1,58,5,58,2262,8,58, + 10,58,12,58,2265,9,58,1,58,1,58,1,58,1,58,5,58,2271,8,58,10,58,12, + 58,2274,9,58,1,58,1,58,3,58,2278,8,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,5,58,2287,8,58,10,58,12,58,2290,9,58,1,58,1,58,1,58,1,58, + 5,58,2296,8,58,10,58,12,58,2299,9,58,1,58,1,58,3,58,2303,8,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2313,8,58,10,58,12,58, + 2316,9,58,1,58,1,58,5,58,2320,8,58,10,58,12,58,2323,9,58,1,58,1, + 58,1,58,1,58,5,58,2329,8,58,10,58,12,58,2332,9,58,1,58,1,58,3,58, + 2336,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2346,8,58, + 10,58,12,58,2349,9,58,1,58,1,58,5,58,2353,8,58,10,58,12,58,2356, + 9,58,1,58,1,58,1,58,1,58,5,58,2362,8,58,10,58,12,58,2365,9,58,1, + 58,1,58,3,58,2369,8,58,1,58,1,58,1,58,5,58,2374,8,58,10,58,12,58, + 2377,9,58,1,58,1,58,1,58,1,58,5,58,2383,8,58,10,58,12,58,2386,9, + 58,1,58,1,58,3,58,2390,8,58,3,58,2392,8,58,1,59,1,59,1,59,3,59,2397, + 8,59,1,60,1,60,1,60,1,60,4,60,2403,8,60,11,60,12,60,2404,1,60,1, + 60,1,61,1,61,1,61,5,61,2412,8,61,10,61,12,61,2415,9,61,1,62,3,62, + 2418,8,62,1,62,3,62,2421,8,62,1,62,1,62,3,62,2425,8,62,1,62,1,62, + 1,62,3,62,2430,8,62,1,62,1,62,1,62,1,62,3,62,2436,8,62,1,62,1,62, + 1,62,1,62,3,62,2442,8,62,1,62,1,62,1,62,3,62,2447,8,62,1,62,1,62, + 1,62,3,62,2452,8,62,1,62,1,62,1,62,3,62,2457,8,62,1,62,1,62,1,62, + 3,62,2462,8,62,1,62,3,62,2465,8,62,1,63,1,63,1,63,3,63,2470,8,63, + 1,63,4,63,2473,8,63,11,63,12,63,2474,1,63,1,63,1,63,1,63,1,63,1, + 63,1,63,1,63,3,63,2485,8,63,1,64,1,64,3,64,2489,8,64,1,64,1,64,1, + 64,1,64,1,64,3,64,2496,8,64,1,64,1,64,1,64,3,64,2501,8,64,1,64,3, + 64,2504,8,64,1,64,1,64,1,64,3,64,2509,8,64,1,64,3,64,2512,8,64,1, + 64,1,64,3,64,2516,8,64,1,64,1,64,3,64,2520,8,64,1,65,1,65,1,65,1, + 65,5,65,2526,8,65,10,65,12,65,2529,9,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,67,1,67,1,67,1,67,3,67,2547, + 8,67,1,67,3,67,2550,8,67,1,67,3,67,2553,8,67,1,67,1,67,3,67,2557, + 8,67,1,67,1,67,1,68,1,68,1,68,1,68,5,68,2565,8,68,10,68,12,68,2568, + 9,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69,2578,8,69,10,69, + 12,69,2581,9,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2591, + 8,70,10,70,12,70,2594,9,70,3,70,2596,8,70,1,70,1,70,5,70,2600,8, + 70,10,70,12,70,2603,9,70,3,70,2605,8,70,1,71,1,71,3,71,2609,8,71, + 1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2618,8,71,1,71,3,71,2621, + 8,71,1,71,3,71,2624,8,71,1,71,1,71,1,71,3,71,2629,8,71,1,71,1,71, + 3,71,2633,8,71,1,71,3,71,2636,8,71,1,71,1,71,3,71,2640,8,71,1,71, + 1,71,3,71,2644,8,71,1,71,3,71,2647,8,71,1,71,1,71,3,71,2651,8,71, + 1,71,3,71,2654,8,71,1,71,1,71,3,71,2658,8,71,1,71,3,71,2661,8,71, + 1,72,1,72,1,72,1,72,3,72,2667,8,72,1,72,3,72,2670,8,72,1,72,1,72, + 1,72,3,72,2675,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2683,8,72, + 1,72,1,72,1,72,1,72,3,72,2689,8,72,1,72,1,72,3,72,2693,8,72,1,73, + 1,73,3,73,2697,8,73,1,73,5,73,2700,8,73,10,73,12,73,2703,9,73,1, + 73,1,73,3,73,2707,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2714,8,73,1, + 73,1,73,3,73,2718,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2727, + 8,73,10,73,12,73,2730,9,73,1,73,1,73,1,73,1,73,1,73,3,73,2737,8, + 73,1,73,3,73,2740,8,73,1,73,1,73,5,73,2744,8,73,10,73,12,73,2747, + 9,73,1,73,1,73,1,73,3,73,2752,8,73,1,73,3,73,2755,8,73,1,73,1,73, + 5,73,2759,8,73,10,73,12,73,2762,9,73,1,73,1,73,1,73,3,73,2767,8, + 73,3,73,2769,8,73,1,73,1,73,1,73,3,73,2774,8,73,1,73,1,73,5,73,2778, + 8,73,10,73,12,73,2781,9,73,1,73,1,73,1,73,3,73,2786,8,73,3,73,2788, + 8,73,1,73,1,73,3,73,2792,8,73,1,73,3,73,2795,8,73,1,73,3,73,2798, + 8,73,1,73,1,73,5,73,2802,8,73,10,73,12,73,2805,9,73,1,73,1,73,1, + 73,3,73,2810,8,73,3,73,2812,8,73,1,73,1,73,1,73,3,73,2817,8,73,1, + 73,1,73,1,73,1,73,1,73,3,73,2824,8,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,3,73,2833,8,73,1,73,3,73,2836,8,73,1,73,1,73,3,73,2840,8, + 73,1,73,1,73,1,73,3,73,2845,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,3,73,2855,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2864, + 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2872,8,73,1,73,3,73,2875, + 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2883,8,73,1,73,3,73,2886, + 8,73,1,73,1,73,1,73,1,73,1,73,3,73,2893,8,73,1,73,1,73,1,73,3,73, + 2898,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2906,8,73,1,73,1,73, 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, - 2912,8,73,1,73,1,73,1,73,3,73,2917,8,73,1,73,1,73,1,73,1,73,1,73, - 3,73,2924,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2943,8,73,1,73,1,73,1,73, - 1,73,3,73,2949,8,73,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2957,8,74, - 10,74,12,74,2960,9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, - 74,3,74,2971,8,74,1,74,1,74,1,74,1,74,1,74,3,74,2978,8,74,1,74,1, - 74,1,74,1,74,1,74,3,74,2985,8,74,1,74,1,74,1,74,1,74,1,74,1,74,1, - 74,1,74,1,74,1,74,1,74,5,74,2998,8,74,10,74,12,74,3001,9,74,1,74, - 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,3013,8,74,1,74, - 1,74,1,74,1,74,3,74,3019,8,74,1,74,1,74,1,74,1,74,3,74,3025,8,74, - 1,74,1,74,1,74,1,74,3,74,3031,8,74,1,74,1,74,1,74,1,74,3,74,3037, - 8,74,1,74,1,74,1,74,1,74,3,74,3043,8,74,1,74,1,74,1,74,1,74,3,74, - 3049,8,74,1,75,1,75,1,75,3,75,3054,8,75,1,75,1,75,1,76,1,76,1,76, - 3,76,3061,8,76,1,76,1,76,1,77,1,77,1,77,3,77,3068,8,77,1,77,1,77, - 1,77,1,77,1,77,3,77,3075,8,77,1,77,1,77,1,77,3,77,3080,8,77,1,77, - 5,77,3083,8,77,10,77,12,77,3086,9,77,1,78,1,78,1,78,1,78,1,78,1, - 78,3,78,3094,8,78,1,78,1,78,1,79,1,79,1,79,3,79,3101,8,79,1,79,1, - 79,1,80,1,80,1,80,3,80,3108,8,80,1,80,1,80,1,81,1,81,1,81,3,81,3115, - 8,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,3,82,3124,8,82,1,82,1,82, - 1,83,1,83,3,83,3130,8,83,1,83,1,83,3,83,3134,8,83,1,83,1,83,3,83, - 3138,8,83,1,84,1,84,3,84,3142,8,84,1,84,1,84,1,84,1,84,3,84,3148, - 8,84,1,84,3,84,3151,8,84,1,85,1,85,1,85,3,85,3156,8,85,1,85,1,85, - 1,86,1,86,1,86,3,86,3163,8,86,1,86,1,86,1,86,5,86,3168,8,86,10,86, - 12,86,3171,9,86,1,86,3,86,3174,8,86,1,87,1,87,1,87,3,87,3179,8,87, - 1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,3,88,3189,8,88,1,88,1,88, - 1,88,1,88,5,88,3195,8,88,10,88,12,88,3198,9,88,1,88,1,88,1,88,3, - 88,3203,8,88,1,89,1,89,1,89,1,89,1,89,5,89,3210,8,89,10,89,12,89, - 3213,9,89,1,90,1,90,1,90,1,90,1,91,1,91,3,91,3221,8,91,1,91,1,91, - 1,92,1,92,1,92,1,92,1,92,3,92,3230,8,92,1,92,3,92,3233,8,92,1,93, - 1,93,3,93,3237,8,93,1,94,1,94,1,94,1,95,1,95,1,95,1,95,3,95,3246, - 8,95,1,96,1,96,3,96,3250,8,96,1,96,3,96,3253,8,96,1,96,3,96,3256, - 8,96,1,96,1,96,1,96,1,96,3,96,3262,8,96,1,96,3,96,3265,8,96,1,96, - 3,96,3268,8,96,1,96,1,96,3,96,3272,8,96,1,96,3,96,3275,8,96,1,96, - 3,96,3278,8,96,1,96,3,96,3281,8,96,1,96,1,96,1,96,1,96,1,96,1,96, - 1,96,5,96,3290,8,96,10,96,12,96,3293,9,96,3,96,3295,8,96,1,97,1, - 97,1,97,3,97,3300,8,97,1,98,1,98,1,98,1,98,3,98,3306,8,98,1,99,1, - 99,1,99,3,99,3311,8,99,1,99,4,99,3314,8,99,11,99,12,99,3315,1,100, - 3,100,3319,8,100,1,100,1,100,3,100,3323,8,100,1,101,1,101,1,101, - 3,101,3328,8,101,1,101,3,101,3331,8,101,1,101,1,101,1,101,3,101, - 3336,8,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101, - 3346,8,101,1,101,1,101,1,101,3,101,3351,8,101,1,101,1,101,4,101, - 3355,8,101,11,101,12,101,3356,3,101,3359,8,101,1,101,1,101,4,101, - 3363,8,101,11,101,12,101,3364,3,101,3367,8,101,1,101,1,101,1,101, - 1,101,3,101,3373,8,101,1,101,1,101,1,101,1,101,5,101,3379,8,101, - 10,101,12,101,3382,9,101,1,101,1,101,3,101,3386,8,101,1,101,1,101, - 1,101,1,101,5,101,3392,8,101,10,101,12,101,3395,9,101,3,101,3397, - 8,101,1,102,1,102,1,102,3,102,3402,8,102,1,102,3,102,3405,8,102, - 1,102,1,102,1,102,3,102,3410,8,102,1,102,1,102,1,102,1,102,1,102, - 1,102,3,102,3418,8,102,1,102,1,102,1,102,1,102,3,102,3424,8,102, - 1,102,1,102,3,102,3428,8,102,3,102,3430,8,102,1,102,1,102,1,102, - 1,102,3,102,3436,8,102,1,102,1,102,1,102,1,102,5,102,3442,8,102, - 10,102,12,102,3445,9,102,1,102,1,102,3,102,3449,8,102,1,102,1,102, - 1,102,1,102,5,102,3455,8,102,10,102,12,102,3458,9,102,3,102,3460, - 8,102,1,103,1,103,1,103,3,103,3465,8,103,1,103,3,103,3468,8,103, - 1,103,1,103,3,103,3472,8,103,1,103,3,103,3475,8,103,1,103,3,103, - 3478,8,103,1,104,1,104,3,104,3482,8,104,1,104,3,104,3485,8,104,1, - 104,1,104,1,104,1,104,1,104,1,104,3,104,3493,8,104,1,104,1,104,1, - 104,1,104,3,104,3499,8,104,1,104,1,104,3,104,3503,8,104,1,105,1, - 105,5,105,3507,8,105,10,105,12,105,3510,9,105,1,105,1,105,3,105, - 3514,8,105,1,105,1,105,3,105,3518,8,105,3,105,3520,8,105,1,105,1, - 105,5,105,3524,8,105,10,105,12,105,3527,9,105,1,105,3,105,3530,8, - 105,1,105,3,105,3533,8,105,1,105,3,105,3536,8,105,1,105,3,105,3539, - 8,105,1,105,1,105,5,105,3543,8,105,10,105,12,105,3546,9,105,1,105, - 1,105,3,105,3550,8,105,1,105,3,105,3553,8,105,1,105,3,105,3556,8, - 105,1,105,3,105,3559,8,105,1,105,3,105,3562,8,105,3,105,3564,8,105, - 1,106,3,106,3567,8,106,1,106,1,106,3,106,3571,8,106,1,106,3,106, - 3574,8,106,1,106,3,106,3577,8,106,1,107,1,107,1,107,1,107,1,107, - 1,107,3,107,3585,8,107,1,107,1,107,1,107,1,107,3,107,3591,8,107, - 1,107,5,107,3594,8,107,10,107,12,107,3597,9,107,1,108,1,108,1,108, - 1,108,1,108,1,108,3,108,3605,8,108,1,108,5,108,3608,8,108,10,108, - 12,108,3611,9,108,1,109,1,109,1,109,1,109,3,109,3617,8,109,1,109, - 3,109,3620,8,109,1,109,3,109,3623,8,109,1,109,1,109,3,109,3627,8, - 109,1,110,1,110,3,110,3631,8,110,1,111,1,111,1,111,1,111,3,111,3637, - 8,111,1,111,1,111,3,111,3641,8,111,1,112,1,112,1,112,5,112,3646, - 8,112,10,112,12,112,3649,9,112,1,112,3,112,3652,8,112,1,112,3,112, - 3655,8,112,1,112,3,112,3658,8,112,1,113,1,113,1,113,3,113,3663,8, - 113,1,114,1,114,1,114,1,114,1,114,3,114,3670,8,114,1,115,1,115,1, - 115,1,115,1,115,1,115,5,115,3678,8,115,10,115,12,115,3681,9,115, - 1,116,1,116,1,116,1,116,5,116,3687,8,116,10,116,12,116,3690,9,116, - 1,117,1,117,1,117,1,117,1,118,1,118,3,118,3698,8,118,1,119,1,119, - 1,119,1,119,1,119,1,119,5,119,3706,8,119,10,119,12,119,3709,9,119, - 3,119,3711,8,119,1,119,1,119,3,119,3715,8,119,1,119,1,119,1,119, - 1,119,3,119,3721,8,119,1,120,1,120,3,120,3725,8,120,1,120,3,120, - 3728,8,120,1,120,3,120,3731,8,120,1,120,1,120,1,120,3,120,3736,8, - 120,1,120,3,120,3739,8,120,1,120,1,120,1,120,1,120,1,120,3,120,3746, - 8,120,1,120,1,120,3,120,3750,8,120,1,120,3,120,3753,8,120,1,120, - 1,120,3,120,3757,8,120,1,121,1,121,3,121,3761,8,121,1,121,3,121, - 3764,8,121,1,121,3,121,3767,8,121,1,121,1,121,1,121,3,121,3772,8, - 121,1,121,1,121,1,121,1,121,3,121,3778,8,121,5,121,3780,8,121,10, - 121,12,121,3783,9,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 3,121,3792,8,121,1,121,1,121,1,121,1,121,3,121,3798,8,121,5,121, - 3800,8,121,10,121,12,121,3803,9,121,1,121,1,121,1,121,3,121,3808, - 8,121,1,121,1,121,3,121,3812,8,121,1,122,1,122,1,122,1,122,3,122, - 3818,8,122,1,122,3,122,3821,8,122,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,3,123,3833,8,123,1,123,1,123,3,123, - 3837,8,123,1,123,1,123,3,123,3841,8,123,1,124,1,124,1,124,1,124, - 1,124,1,124,3,124,3849,8,124,1,124,1,124,3,124,3853,8,124,1,125, - 1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,126,5,126,3865, - 8,126,10,126,12,126,3868,9,126,1,127,1,127,3,127,3872,8,127,1,127, - 3,127,3875,8,127,1,127,1,127,3,127,3879,8,127,1,127,3,127,3882,8, - 127,1,127,1,127,1,127,1,127,5,127,3888,8,127,10,127,12,127,3891, - 9,127,1,127,1,127,3,127,3895,8,127,1,127,3,127,3898,8,127,1,127, - 3,127,3901,8,127,1,128,1,128,3,128,3905,8,128,1,128,3,128,3908,8, - 128,1,128,1,128,1,128,1,128,1,128,5,128,3915,8,128,10,128,12,128, - 3918,9,128,1,128,1,128,3,128,3922,8,128,1,129,1,129,1,129,1,129, - 1,129,5,129,3929,8,129,10,129,12,129,3932,9,129,1,130,1,130,3,130, - 3936,8,130,1,131,1,131,1,131,5,131,3941,8,131,10,131,12,131,3944, - 9,131,1,132,1,132,5,132,3948,8,132,10,132,12,132,3951,9,132,1,132, - 1,132,1,132,5,132,3956,8,132,10,132,12,132,3959,9,132,1,132,1,132, - 1,132,3,132,3964,8,132,1,133,1,133,1,133,1,133,1,133,1,133,3,133, - 3972,8,133,1,133,3,133,3975,8,133,1,133,3,133,3978,8,133,1,133,1, - 133,1,133,5,133,3983,8,133,10,133,12,133,3986,9,133,3,133,3988,8, - 133,1,133,3,133,3991,8,133,1,133,1,133,1,133,1,133,1,133,3,133,3998, - 8,133,1,133,3,133,4001,8,133,1,133,1,133,3,133,4005,8,133,1,133, - 1,133,1,133,1,133,3,133,4011,8,133,1,134,1,134,1,134,1,134,1,135, - 1,135,1,135,1,135,3,135,4021,8,135,1,135,1,135,3,135,4025,8,135, - 1,135,1,135,1,136,1,136,1,136,1,136,1,136,3,136,4034,8,136,1,137, - 3,137,4037,8,137,1,137,1,137,3,137,4041,8,137,1,137,1,137,5,137, - 4045,8,137,10,137,12,137,4048,9,137,1,137,1,137,1,137,5,137,4053, - 8,137,10,137,12,137,4056,9,137,1,137,1,137,3,137,4060,8,137,1,137, - 1,137,3,137,4064,8,137,1,137,1,137,5,137,4068,8,137,10,137,12,137, - 4071,9,137,1,137,1,137,1,137,3,137,4076,8,137,1,137,3,137,4079,8, - 137,3,137,4081,8,137,1,137,1,137,3,137,4085,8,137,1,138,1,138,1, - 138,1,138,1,138,1,138,1,138,3,138,4094,8,138,1,139,1,139,1,139,1, - 139,1,139,1,139,1,139,1,139,3,139,4104,8,139,1,140,1,140,5,140,4108, - 8,140,10,140,12,140,4111,9,140,1,140,1,140,3,140,4115,8,140,1,140, - 1,140,3,140,4119,8,140,1,140,3,140,4122,8,140,1,140,3,140,4125,8, - 140,1,140,3,140,4128,8,140,1,140,3,140,4131,8,140,1,140,3,140,4134, - 8,140,1,140,3,140,4137,8,140,1,141,1,141,3,141,4141,8,141,1,141, - 1,141,3,141,4145,8,141,1,142,1,142,1,142,1,142,1,142,1,142,3,142, - 4153,8,142,1,142,1,142,3,142,4157,8,142,1,142,3,142,4160,8,142,3, - 142,4162,8,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1, - 143,1,143,1,143,3,143,4175,8,143,1,143,3,143,4178,8,143,1,144,1, - 144,1,144,5,144,4183,8,144,10,144,12,144,4186,9,144,1,145,1,145, - 1,145,1,145,1,145,1,145,1,145,3,145,4195,8,145,1,145,3,145,4198, - 8,145,1,145,1,145,1,145,3,145,4203,8,145,3,145,4205,8,145,1,145, - 1,145,3,145,4209,8,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145, - 4217,8,145,1,146,1,146,1,146,1,146,3,146,4223,8,146,1,146,1,146, - 1,146,1,147,1,147,1,147,1,147,3,147,4232,8,147,1,147,1,147,1,147, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,3,148,4245,8,148, - 1,149,1,149,3,149,4249,8,149,1,149,1,149,5,149,4253,8,149,10,149, - 12,149,4256,9,149,1,150,1,150,3,150,4260,8,150,1,150,1,150,3,150, - 4264,8,150,1,150,3,150,4267,8,150,1,150,1,150,3,150,4271,8,150,1, - 150,3,150,4274,8,150,1,150,1,150,1,150,1,150,1,150,1,150,3,150,4282, - 8,150,1,150,3,150,4285,8,150,3,150,4287,8,150,1,151,1,151,1,151, - 1,151,5,151,4293,8,151,10,151,12,151,4296,9,151,1,151,1,151,1,151, - 1,151,1,151,1,151,1,151,1,151,1,151,3,151,4307,8,151,1,151,1,151, - 4,151,4311,8,151,11,151,12,151,4312,3,151,4315,8,151,1,151,1,151, - 4,151,4319,8,151,11,151,12,151,4320,3,151,4323,8,151,3,151,4325, - 8,151,1,152,1,152,1,152,1,152,3,152,4331,8,152,1,152,1,152,1,152, - 1,152,1,152,1,152,3,152,4339,8,152,1,153,1,153,1,153,1,153,1,153, - 1,153,3,153,4347,8,153,1,154,1,154,3,154,4351,8,154,1,154,1,154, - 3,154,4355,8,154,1,155,1,155,1,155,1,155,1,155,5,155,4362,8,155, - 10,155,12,155,4365,9,155,1,155,1,155,3,155,4369,8,155,1,156,1,156, - 1,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,5,157,4387,8,157,10,157,12,157,4390,9,157,1,158, - 1,158,3,158,4394,8,158,1,159,1,159,1,159,1,159,3,159,4400,8,159, - 1,159,1,159,1,159,1,159,1,159,3,159,4407,8,159,1,160,1,160,1,160, - 3,160,4412,8,160,1,161,1,161,1,161,1,161,1,161,5,161,4419,8,161, - 10,161,12,161,4422,9,161,3,161,4424,8,161,1,162,1,162,3,162,4428, - 8,162,1,163,1,163,3,163,4432,8,163,1,163,1,163,3,163,4436,8,163, - 1,163,3,163,4439,8,163,1,163,3,163,4442,8,163,1,163,3,163,4445,8, - 163,1,164,1,164,3,164,4449,8,164,1,164,1,164,3,164,4453,8,164,1, - 164,3,164,4456,8,164,1,164,3,164,4459,8,164,1,164,3,164,4462,8,164, - 1,165,1,165,1,165,1,166,1,166,3,166,4469,8,166,1,166,1,166,3,166, - 4473,8,166,1,166,1,166,1,167,1,167,1,167,1,167,1,168,1,168,1,168, - 1,168,1,168,5,168,4486,8,168,10,168,12,168,4489,9,168,1,169,1,169, - 1,169,1,170,1,170,1,170,1,170,1,170,1,171,1,171,3,171,4501,8,171, - 1,171,1,171,1,171,1,171,5,171,4507,8,171,10,171,12,171,4510,9,171, - 1,172,1,172,1,172,1,172,1,172,1,172,1,172,3,172,4519,8,172,1,173, - 1,173,3,173,4523,8,173,1,173,3,173,4526,8,173,1,173,1,173,1,174, - 1,174,3,174,4532,8,174,1,174,3,174,4535,8,174,1,174,3,174,4538,8, - 174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,3,175,4547,8,175,1, - 176,1,176,1,176,1,176,1,176,1,176,1,176,3,176,4556,8,176,1,177,1, - 177,1,177,1,177,1,177,1,177,5,177,4564,8,177,10,177,12,177,4567, - 9,177,1,177,3,177,4570,8,177,1,178,1,178,1,178,1,178,1,178,1,178, - 5,178,4578,8,178,10,178,12,178,4581,9,178,1,178,3,178,4584,8,178, - 1,179,1,179,1,179,1,179,1,179,1,179,1,179,5,179,4593,8,179,10,179, - 12,179,4596,9,179,1,179,3,179,4599,8,179,1,180,1,180,1,180,1,180, - 1,180,1,180,1,180,3,180,4608,8,180,1,181,1,181,1,181,1,181,1,181, - 5,181,4615,8,181,10,181,12,181,4618,9,181,3,181,4620,8,181,1,181, - 1,181,3,181,4624,8,181,1,181,5,181,4627,8,181,10,181,12,181,4630, - 9,181,1,181,3,181,4633,8,181,1,182,1,182,1,182,1,182,1,182,5,182, - 4640,8,182,10,182,12,182,4643,9,182,3,182,4645,8,182,1,182,3,182, - 4648,8,182,1,183,1,183,1,183,1,183,1,183,3,183,4655,8,183,1,183, - 1,183,1,183,1,183,3,183,4661,8,183,1,183,1,183,1,183,1,183,3,183, - 4667,8,183,1,184,1,184,1,184,1,185,1,185,1,185,1,185,1,185,1,185, - 1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, - 1,185,1,185,5,185,4691,8,185,10,185,12,185,4694,9,185,3,185,4696, - 8,185,1,185,3,185,4699,8,185,1,186,1,186,1,187,1,187,1,188,1,188, - 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, - 3,189,4718,8,189,3,189,4720,8,189,1,190,1,190,1,190,1,190,1,190, + 2922,8,73,1,73,1,73,1,73,3,73,2927,8,73,1,73,1,73,1,73,1,73,1,73, + 3,73,2934,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2953,8,73,1,73,1,73,1,73, + 1,73,3,73,2959,8,73,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2967,8,74, + 10,74,12,74,2970,9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, + 74,3,74,2981,8,74,1,74,1,74,1,74,1,74,1,74,3,74,2988,8,74,1,74,1, + 74,1,74,1,74,1,74,3,74,2995,8,74,1,74,1,74,1,74,1,74,1,74,1,74,1, + 74,1,74,1,74,1,74,1,74,5,74,3008,8,74,10,74,12,74,3011,9,74,1,74, + 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,3023,8,74,1,74, + 1,74,1,74,1,74,3,74,3029,8,74,1,74,1,74,1,74,1,74,3,74,3035,8,74, + 1,74,1,74,1,74,1,74,3,74,3041,8,74,1,74,1,74,1,74,1,74,3,74,3047, + 8,74,1,74,1,74,1,74,1,74,3,74,3053,8,74,1,74,1,74,1,74,1,74,3,74, + 3059,8,74,1,75,1,75,1,75,3,75,3064,8,75,1,75,1,75,1,76,1,76,1,76, + 3,76,3071,8,76,1,76,1,76,1,77,1,77,1,77,3,77,3078,8,77,1,77,1,77, + 1,77,1,77,1,77,3,77,3085,8,77,1,77,1,77,1,77,3,77,3090,8,77,1,77, + 5,77,3093,8,77,10,77,12,77,3096,9,77,1,78,1,78,1,78,1,78,1,78,1, + 78,3,78,3104,8,78,1,78,1,78,1,79,1,79,1,79,3,79,3111,8,79,1,79,1, + 79,1,80,1,80,1,80,3,80,3118,8,80,1,80,1,80,1,81,1,81,1,81,3,81,3125, + 8,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,3,82,3134,8,82,1,82,1,82, + 1,83,1,83,3,83,3140,8,83,1,83,1,83,3,83,3144,8,83,1,83,1,83,3,83, + 3148,8,83,1,84,1,84,3,84,3152,8,84,1,84,1,84,1,84,1,84,3,84,3158, + 8,84,1,84,3,84,3161,8,84,1,85,1,85,1,85,3,85,3166,8,85,1,85,1,85, + 1,86,1,86,1,86,3,86,3173,8,86,1,86,1,86,1,86,5,86,3178,8,86,10,86, + 12,86,3181,9,86,1,86,3,86,3184,8,86,1,87,1,87,1,87,3,87,3189,8,87, + 1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,3,88,3199,8,88,1,88,1,88, + 1,88,1,88,5,88,3205,8,88,10,88,12,88,3208,9,88,1,88,1,88,1,88,3, + 88,3213,8,88,1,89,1,89,1,89,1,89,1,89,5,89,3220,8,89,10,89,12,89, + 3223,9,89,1,90,1,90,1,90,1,90,1,91,1,91,3,91,3231,8,91,1,91,1,91, + 1,92,1,92,1,92,1,92,1,92,3,92,3240,8,92,1,92,3,92,3243,8,92,1,93, + 1,93,3,93,3247,8,93,1,94,1,94,1,94,1,95,1,95,1,95,1,95,3,95,3256, + 8,95,1,96,1,96,3,96,3260,8,96,1,96,3,96,3263,8,96,1,96,3,96,3266, + 8,96,1,96,1,96,1,96,1,96,3,96,3272,8,96,1,96,3,96,3275,8,96,1,96, + 3,96,3278,8,96,1,96,1,96,3,96,3282,8,96,1,96,3,96,3285,8,96,1,96, + 3,96,3288,8,96,1,96,3,96,3291,8,96,1,96,1,96,1,96,1,96,1,96,1,96, + 1,96,5,96,3300,8,96,10,96,12,96,3303,9,96,3,96,3305,8,96,1,97,1, + 97,1,97,3,97,3310,8,97,1,98,1,98,1,98,1,98,3,98,3316,8,98,1,99,1, + 99,1,99,3,99,3321,8,99,1,99,4,99,3324,8,99,11,99,12,99,3325,1,100, + 3,100,3329,8,100,1,100,1,100,3,100,3333,8,100,1,101,1,101,1,101, + 3,101,3338,8,101,1,101,3,101,3341,8,101,1,101,1,101,1,101,3,101, + 3346,8,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101, + 3356,8,101,1,101,1,101,1,101,3,101,3361,8,101,1,101,1,101,4,101, + 3365,8,101,11,101,12,101,3366,3,101,3369,8,101,1,101,1,101,4,101, + 3373,8,101,11,101,12,101,3374,3,101,3377,8,101,1,101,1,101,1,101, + 1,101,3,101,3383,8,101,1,101,1,101,1,101,1,101,5,101,3389,8,101, + 10,101,12,101,3392,9,101,1,101,1,101,3,101,3396,8,101,1,101,1,101, + 1,101,1,101,5,101,3402,8,101,10,101,12,101,3405,9,101,3,101,3407, + 8,101,1,102,1,102,1,102,3,102,3412,8,102,1,102,3,102,3415,8,102, + 1,102,1,102,1,102,3,102,3420,8,102,1,102,1,102,1,102,1,102,1,102, + 1,102,3,102,3428,8,102,1,102,1,102,1,102,1,102,3,102,3434,8,102, + 1,102,1,102,3,102,3438,8,102,3,102,3440,8,102,1,102,1,102,1,102, + 1,102,3,102,3446,8,102,1,102,1,102,1,102,1,102,5,102,3452,8,102, + 10,102,12,102,3455,9,102,1,102,1,102,3,102,3459,8,102,1,102,1,102, + 1,102,1,102,5,102,3465,8,102,10,102,12,102,3468,9,102,3,102,3470, + 8,102,1,103,1,103,1,103,3,103,3475,8,103,1,103,3,103,3478,8,103, + 1,103,1,103,3,103,3482,8,103,1,103,3,103,3485,8,103,1,103,3,103, + 3488,8,103,1,104,1,104,3,104,3492,8,104,1,104,3,104,3495,8,104,1, + 104,1,104,1,104,1,104,1,104,1,104,3,104,3503,8,104,1,104,1,104,1, + 104,1,104,3,104,3509,8,104,1,104,1,104,3,104,3513,8,104,1,105,1, + 105,5,105,3517,8,105,10,105,12,105,3520,9,105,1,105,1,105,3,105, + 3524,8,105,1,105,1,105,3,105,3528,8,105,3,105,3530,8,105,1,105,1, + 105,5,105,3534,8,105,10,105,12,105,3537,9,105,1,105,3,105,3540,8, + 105,1,105,3,105,3543,8,105,1,105,3,105,3546,8,105,1,105,3,105,3549, + 8,105,1,105,1,105,5,105,3553,8,105,10,105,12,105,3556,9,105,1,105, + 1,105,3,105,3560,8,105,1,105,3,105,3563,8,105,1,105,3,105,3566,8, + 105,1,105,3,105,3569,8,105,1,105,3,105,3572,8,105,3,105,3574,8,105, + 1,106,3,106,3577,8,106,1,106,1,106,3,106,3581,8,106,1,106,3,106, + 3584,8,106,1,106,3,106,3587,8,106,1,107,1,107,1,107,1,107,1,107, + 1,107,3,107,3595,8,107,1,107,1,107,1,107,1,107,3,107,3601,8,107, + 1,107,5,107,3604,8,107,10,107,12,107,3607,9,107,1,108,1,108,1,108, + 1,108,1,108,1,108,3,108,3615,8,108,1,108,5,108,3618,8,108,10,108, + 12,108,3621,9,108,1,109,1,109,1,109,1,109,3,109,3627,8,109,1,109, + 3,109,3630,8,109,1,109,3,109,3633,8,109,1,109,1,109,3,109,3637,8, + 109,1,110,1,110,3,110,3641,8,110,1,111,1,111,1,111,1,111,3,111,3647, + 8,111,1,111,1,111,3,111,3651,8,111,1,112,1,112,1,112,5,112,3656, + 8,112,10,112,12,112,3659,9,112,1,112,3,112,3662,8,112,1,112,3,112, + 3665,8,112,1,112,3,112,3668,8,112,1,113,1,113,1,113,3,113,3673,8, + 113,1,114,1,114,1,114,1,114,1,114,3,114,3680,8,114,1,115,1,115,1, + 115,1,115,1,115,1,115,5,115,3688,8,115,10,115,12,115,3691,9,115, + 1,116,1,116,1,116,1,116,5,116,3697,8,116,10,116,12,116,3700,9,116, + 1,117,1,117,1,117,1,117,1,118,1,118,3,118,3708,8,118,1,119,1,119, + 1,119,1,119,1,119,1,119,5,119,3716,8,119,10,119,12,119,3719,9,119, + 3,119,3721,8,119,1,119,1,119,3,119,3725,8,119,1,119,1,119,1,119, + 1,119,3,119,3731,8,119,1,120,1,120,3,120,3735,8,120,1,120,3,120, + 3738,8,120,1,120,3,120,3741,8,120,1,120,1,120,1,120,3,120,3746,8, + 120,1,120,3,120,3749,8,120,1,120,1,120,1,120,1,120,1,120,3,120,3756, + 8,120,1,120,1,120,3,120,3760,8,120,1,120,3,120,3763,8,120,1,120, + 1,120,3,120,3767,8,120,1,121,1,121,3,121,3771,8,121,1,121,3,121, + 3774,8,121,1,121,3,121,3777,8,121,1,121,1,121,1,121,3,121,3782,8, + 121,1,121,1,121,1,121,1,121,3,121,3788,8,121,5,121,3790,8,121,10, + 121,12,121,3793,9,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 3,121,3802,8,121,1,121,1,121,1,121,1,121,3,121,3808,8,121,5,121, + 3810,8,121,10,121,12,121,3813,9,121,1,121,1,121,1,121,3,121,3818, + 8,121,1,121,1,121,3,121,3822,8,121,1,122,1,122,1,122,1,122,3,122, + 3828,8,122,1,122,3,122,3831,8,122,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,1,123,1,123,3,123,3843,8,123,1,123,1,123,3,123, + 3847,8,123,1,123,1,123,3,123,3851,8,123,1,124,1,124,1,124,1,124, + 1,124,1,124,3,124,3859,8,124,1,124,1,124,3,124,3863,8,124,1,125, + 1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,126,5,126,3875, + 8,126,10,126,12,126,3878,9,126,1,127,1,127,3,127,3882,8,127,1,127, + 3,127,3885,8,127,1,127,1,127,3,127,3889,8,127,1,127,3,127,3892,8, + 127,1,127,1,127,1,127,1,127,5,127,3898,8,127,10,127,12,127,3901, + 9,127,1,127,1,127,3,127,3905,8,127,1,127,3,127,3908,8,127,1,127, + 3,127,3911,8,127,1,128,1,128,3,128,3915,8,128,1,128,3,128,3918,8, + 128,1,128,1,128,1,128,1,128,1,128,5,128,3925,8,128,10,128,12,128, + 3928,9,128,1,128,1,128,3,128,3932,8,128,1,129,1,129,1,129,1,129, + 1,129,5,129,3939,8,129,10,129,12,129,3942,9,129,1,130,1,130,3,130, + 3946,8,130,1,131,1,131,1,131,5,131,3951,8,131,10,131,12,131,3954, + 9,131,1,132,1,132,5,132,3958,8,132,10,132,12,132,3961,9,132,1,132, + 1,132,1,132,5,132,3966,8,132,10,132,12,132,3969,9,132,1,132,1,132, + 1,132,3,132,3974,8,132,1,133,1,133,1,133,1,133,1,133,1,133,3,133, + 3982,8,133,1,133,3,133,3985,8,133,1,133,3,133,3988,8,133,1,133,1, + 133,1,133,5,133,3993,8,133,10,133,12,133,3996,9,133,3,133,3998,8, + 133,1,133,3,133,4001,8,133,1,133,1,133,3,133,4005,8,133,1,133,1, + 133,3,133,4009,8,133,1,133,1,133,1,133,1,133,3,133,4015,8,133,1, + 134,1,134,1,134,1,134,1,134,3,134,4022,8,134,1,135,1,135,1,135,1, + 135,1,136,1,136,1,136,1,136,3,136,4032,8,136,1,136,1,136,3,136,4036, + 8,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,3,137,4045,8,137, + 1,138,3,138,4048,8,138,1,138,1,138,3,138,4052,8,138,1,138,1,138, + 5,138,4056,8,138,10,138,12,138,4059,9,138,1,138,1,138,1,138,5,138, + 4064,8,138,10,138,12,138,4067,9,138,1,138,1,138,3,138,4071,8,138, + 1,138,1,138,3,138,4075,8,138,1,138,1,138,5,138,4079,8,138,10,138, + 12,138,4082,9,138,1,138,1,138,1,138,3,138,4087,8,138,1,138,3,138, + 4090,8,138,3,138,4092,8,138,1,138,1,138,3,138,4096,8,138,1,139,1, + 139,1,139,1,139,1,139,1,139,1,139,3,139,4105,8,139,1,140,1,140,1, + 140,1,140,1,140,1,140,1,140,1,140,3,140,4115,8,140,1,141,1,141,5, + 141,4119,8,141,10,141,12,141,4122,9,141,1,141,1,141,3,141,4126,8, + 141,1,141,1,141,3,141,4130,8,141,1,141,3,141,4133,8,141,1,141,3, + 141,4136,8,141,1,141,3,141,4139,8,141,1,141,3,141,4142,8,141,1,141, + 3,141,4145,8,141,1,141,3,141,4148,8,141,1,142,1,142,3,142,4152,8, + 142,1,142,1,142,3,142,4156,8,142,1,143,1,143,1,143,1,143,1,143,1, + 143,3,143,4164,8,143,1,143,1,143,3,143,4168,8,143,1,143,3,143,4171, + 8,143,3,143,4173,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,144,1,144,1,144,1,144,3,144,4186,8,144,1,144,3,144,4189,8,144, + 1,145,1,145,1,145,5,145,4194,8,145,10,145,12,145,4197,9,145,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,3,146,4206,8,146,1,146,3,146, + 4209,8,146,1,146,1,146,1,146,3,146,4214,8,146,3,146,4216,8,146,1, + 146,1,146,3,146,4220,8,146,1,146,1,146,1,146,1,146,1,146,1,146,3, + 146,4228,8,146,1,147,1,147,1,147,1,147,3,147,4234,8,147,1,147,1, + 147,1,147,1,148,1,148,1,148,1,148,3,148,4243,8,148,1,148,1,148,1, + 148,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,3,149,4256,8, + 149,1,150,1,150,3,150,4260,8,150,1,150,1,150,5,150,4264,8,150,10, + 150,12,150,4267,9,150,1,151,1,151,1,151,3,151,4272,8,151,1,151,3, + 151,4275,8,151,1,151,1,151,3,151,4279,8,151,1,151,3,151,4282,8,151, + 3,151,4284,8,151,1,152,1,152,1,152,1,152,1,153,1,153,1,154,1,154, + 1,155,1,155,3,155,4296,8,155,1,155,1,155,3,155,4300,8,155,1,156, + 1,156,1,156,1,156,5,156,4306,8,156,10,156,12,156,4309,9,156,1,156, + 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,4320,8,156, + 1,156,1,156,4,156,4324,8,156,11,156,12,156,4325,3,156,4328,8,156, + 1,156,1,156,4,156,4332,8,156,11,156,12,156,4333,3,156,4336,8,156, + 3,156,4338,8,156,1,157,1,157,1,157,1,157,3,157,4344,8,157,1,157, + 1,157,1,157,1,157,1,157,1,157,3,157,4352,8,157,1,158,1,158,1,158, + 1,158,1,158,1,158,3,158,4360,8,158,1,159,1,159,3,159,4364,8,159, + 1,159,1,159,3,159,4368,8,159,1,160,1,160,1,160,1,160,1,160,5,160, + 4375,8,160,10,160,12,160,4378,9,160,1,160,1,160,3,160,4382,8,160, + 1,161,1,161,1,161,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162, + 1,162,1,162,1,162,1,162,1,162,5,162,4400,8,162,10,162,12,162,4403, + 9,162,1,163,1,163,3,163,4407,8,163,1,164,1,164,1,164,1,164,3,164, + 4413,8,164,1,164,1,164,1,164,1,164,1,164,3,164,4420,8,164,1,165, + 1,165,1,165,3,165,4425,8,165,1,166,1,166,1,166,1,166,1,166,5,166, + 4432,8,166,10,166,12,166,4435,9,166,3,166,4437,8,166,1,167,1,167, + 3,167,4441,8,167,1,168,1,168,3,168,4445,8,168,1,168,1,168,3,168, + 4449,8,168,1,168,3,168,4452,8,168,1,168,3,168,4455,8,168,1,168,3, + 168,4458,8,168,1,169,1,169,3,169,4462,8,169,1,169,1,169,3,169,4466, + 8,169,1,169,3,169,4469,8,169,1,169,3,169,4472,8,169,1,169,3,169, + 4475,8,169,1,170,1,170,1,170,1,171,1,171,3,171,4482,8,171,1,171, + 1,171,3,171,4486,8,171,1,171,1,171,1,172,1,172,1,172,1,172,1,173, + 1,173,1,173,1,173,1,173,5,173,4499,8,173,10,173,12,173,4502,9,173, + 1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,175,1,176,1,176,3,176, + 4514,8,176,1,176,1,176,1,176,1,176,5,176,4520,8,176,10,176,12,176, + 4523,9,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,4532, + 8,177,1,178,1,178,3,178,4536,8,178,1,178,3,178,4539,8,178,1,178, + 1,178,1,179,1,179,3,179,4545,8,179,1,179,3,179,4548,8,179,1,179, + 3,179,4551,8,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180, + 4560,8,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,4569, + 8,181,1,182,1,182,1,182,1,182,1,182,1,182,5,182,4577,8,182,10,182, + 12,182,4580,9,182,1,182,3,182,4583,8,182,1,183,1,183,1,183,1,183, + 1,183,1,183,5,183,4591,8,183,10,183,12,183,4594,9,183,1,183,3,183, + 4597,8,183,1,184,1,184,1,184,1,184,1,184,1,184,1,184,5,184,4606, + 8,184,10,184,12,184,4609,9,184,1,184,3,184,4612,8,184,1,185,1,185, + 1,185,1,185,1,185,1,185,1,185,3,185,4621,8,185,1,186,1,186,1,186, + 1,186,1,186,5,186,4628,8,186,10,186,12,186,4631,9,186,3,186,4633, + 8,186,1,186,1,186,3,186,4637,8,186,1,186,5,186,4640,8,186,10,186, + 12,186,4643,9,186,1,186,3,186,4646,8,186,1,187,1,187,1,187,1,187, + 1,187,5,187,4653,8,187,10,187,12,187,4656,9,187,3,187,4658,8,187, + 1,187,3,187,4661,8,187,1,188,1,188,1,188,1,188,1,188,3,188,4668, + 8,188,1,188,1,188,1,188,1,188,3,188,4674,8,188,1,188,1,188,1,188, + 1,188,3,188,4680,8,188,1,189,1,189,1,189,1,190,1,190,1,190,1,190, 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,5,190,4741,8,190,10,190,12,190,4744,9,190,3,190, - 4746,8,190,1,190,3,190,4749,8,190,1,191,1,191,1,192,1,192,1,193, - 1,193,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, - 1,194,3,194,4768,8,194,3,194,4770,8,194,1,195,1,195,1,195,1,195, - 1,196,1,196,1,196,1,196,1,196,1,196,5,196,4782,8,196,10,196,12,196, - 4785,9,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,5,196, - 4795,8,196,10,196,12,196,4798,9,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,5,196,4832,8,196,10,196,12,196,4835, - 9,196,1,196,1,196,3,196,4839,8,196,1,197,1,197,1,197,1,197,1,197, + 1,190,1,190,1,190,1,190,5,190,4704,8,190,10,190,12,190,4707,9,190, + 3,190,4709,8,190,1,190,3,190,4712,8,190,1,191,1,191,1,192,1,192, + 1,193,1,193,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, + 1,194,1,194,3,194,4731,8,194,3,194,4733,8,194,1,195,1,195,1,195, + 1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, + 1,195,1,195,1,195,1,195,1,195,5,195,4754,8,195,10,195,12,195,4757, + 9,195,3,195,4759,8,195,1,195,3,195,4762,8,195,1,196,1,196,1,197, 1,197,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,3,199,4874,8,199,1,200,1,200, - 1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,3,200, - 4888,8,200,1,201,1,201,1,201,5,201,4893,8,201,10,201,12,201,4896, - 9,201,1,201,3,201,4899,8,201,1,202,1,202,1,202,1,202,3,202,4905, - 8,202,1,203,1,203,1,203,1,203,1,203,1,203,3,203,4913,8,203,3,203, - 4915,8,203,1,204,1,204,1,204,1,204,1,205,1,205,1,205,1,205,1,205, - 3,205,4926,8,205,1,206,1,206,1,206,1,206,1,207,1,207,1,207,1,207, - 3,207,4936,8,207,1,208,1,208,1,208,1,208,1,208,3,208,4943,8,208, - 1,209,1,209,1,209,1,209,3,209,4949,8,209,1,210,1,210,1,210,1,210, - 1,211,1,211,3,211,4957,8,211,1,212,1,212,1,212,3,212,4962,8,212, - 1,212,1,212,1,212,1,212,5,212,4968,8,212,10,212,12,212,4971,9,212, - 1,212,1,212,1,212,5,212,4976,8,212,10,212,12,212,4979,9,212,1,212, - 1,212,1,212,5,212,4984,8,212,10,212,12,212,4987,9,212,1,212,1,212, - 1,212,5,212,4992,8,212,10,212,12,212,4995,9,212,1,212,5,212,4998, - 8,212,10,212,12,212,5001,9,212,1,212,1,212,3,212,5005,8,212,1,213, - 1,213,1,213,3,213,5010,8,213,1,213,4,213,5013,8,213,11,213,12,213, - 5014,1,213,1,213,4,213,5019,8,213,11,213,12,213,5020,3,213,5023, - 8,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,4,214,5032,8,214, - 11,214,12,214,5033,1,214,5,214,5037,8,214,10,214,12,214,5040,9,214, - 1,214,1,214,4,214,5044,8,214,11,214,12,214,5045,3,214,5048,8,214, - 1,214,1,214,1,214,1,215,1,215,1,215,1,216,1,216,1,216,1,217,1,217, - 1,217,3,217,5062,8,217,1,217,1,217,4,217,5066,8,217,11,217,12,217, - 5067,1,217,1,217,1,217,3,217,5073,8,217,1,218,1,218,1,218,3,218, - 5078,8,218,1,218,1,218,4,218,5082,8,218,11,218,12,218,5083,1,218, - 1,218,1,218,1,218,1,218,3,218,5091,8,218,1,219,1,219,1,219,1,220, - 1,220,1,220,3,220,5099,8,220,1,220,1,220,1,220,1,220,4,220,5105, - 8,220,11,220,12,220,5106,1,220,1,220,1,220,3,220,5112,8,220,1,221, - 1,221,1,221,1,221,3,221,5118,8,221,1,221,3,221,5121,8,221,1,221, - 1,221,1,221,1,221,1,221,1,221,3,221,5129,8,221,1,222,1,222,1,222, - 1,222,1,222,3,222,5136,8,222,1,223,1,223,1,223,1,223,1,223,1,223, - 1,223,3,223,5145,8,223,1,223,3,223,5148,8,223,1,224,1,224,1,224, - 1,224,1,224,1,224,1,225,1,225,1,225,1,225,1,225,1,225,1,225,5,225, - 5163,8,225,10,225,12,225,5166,9,225,1,225,1,225,1,226,1,226,1,226, - 3,226,5173,8,226,1,226,1,226,1,226,1,226,1,226,1,226,3,226,5181, - 8,226,1,227,1,227,3,227,5185,8,227,1,227,1,227,1,228,1,228,1,228, - 3,228,5192,8,228,1,228,1,228,4,228,5196,8,228,11,228,12,228,5197, - 1,229,1,229,1,229,1,229,4,229,5204,8,229,11,229,12,229,5205,1,230, - 1,230,1,230,3,230,5211,8,230,1,230,1,230,1,230,5,230,5216,8,230, - 10,230,12,230,5219,9,230,1,230,1,230,1,230,5,230,5224,8,230,10,230, - 12,230,5227,9,230,1,230,1,230,1,230,1,230,3,230,5233,8,230,1,230, - 5,230,5236,8,230,10,230,12,230,5239,9,230,3,230,5241,8,230,3,230, - 5243,8,230,1,230,1,230,4,230,5247,8,230,11,230,12,230,5248,3,230, - 5251,8,230,1,230,1,230,5,230,5255,8,230,10,230,12,230,5258,9,230, - 1,230,1,230,3,230,5262,8,230,1,230,1,230,1,230,1,230,1,230,3,230, - 5269,8,230,1,231,1,231,1,231,3,231,5274,8,231,1,231,1,231,3,231, - 5278,8,231,1,231,1,231,1,231,3,231,5283,8,231,5,231,5285,8,231,10, - 231,12,231,5288,9,231,1,231,1,231,1,231,3,231,5293,8,231,1,231,1, - 231,1,231,1,231,3,231,5299,8,231,1,231,5,231,5302,8,231,10,231,12, - 231,5305,9,231,3,231,5307,8,231,3,231,5309,8,231,1,231,1,231,4,231, - 5313,8,231,11,231,12,231,5314,3,231,5317,8,231,1,231,1,231,5,231, - 5321,8,231,10,231,12,231,5324,9,231,1,231,1,231,3,231,5328,8,231, - 1,232,1,232,1,232,3,232,5333,8,232,1,232,1,232,1,232,5,232,5338, - 8,232,10,232,12,232,5341,9,232,1,233,1,233,1,233,1,233,5,233,5347, - 8,233,10,233,12,233,5350,9,233,1,233,1,233,3,233,5354,8,233,1,233, - 1,233,1,233,1,233,1,233,5,233,5361,8,233,10,233,12,233,5364,9,233, - 1,233,3,233,5367,8,233,1,233,1,233,1,233,1,233,3,233,5373,8,233, - 1,233,5,233,5376,8,233,10,233,12,233,5379,9,233,3,233,5381,8,233, - 3,233,5383,8,233,1,233,1,233,1,233,1,233,5,233,5389,8,233,10,233, - 12,233,5392,9,233,3,233,5394,8,233,1,233,1,233,1,233,1,233,1,233, - 3,233,5401,8,233,3,233,5403,8,233,1,233,1,233,1,233,3,233,5408,8, - 233,1,233,1,233,1,233,5,233,5413,8,233,10,233,12,233,5416,9,233, - 1,233,1,233,1,233,1,233,5,233,5422,8,233,10,233,12,233,5425,9,233, - 1,233,1,233,1,233,3,233,5430,8,233,3,233,5432,8,233,1,234,1,234, - 1,234,1,234,1,234,3,234,5439,8,234,1,234,3,234,5442,8,234,1,235, - 1,235,1,235,1,235,1,235,1,235,1,235,1,235,5,235,5452,8,235,10,235, - 12,235,5455,9,235,1,235,1,235,1,235,3,235,5460,8,235,1,236,1,236, - 1,236,1,236,1,236,1,236,3,236,5468,8,236,1,236,3,236,5471,8,236, - 1,236,1,236,3,236,5475,8,236,1,236,3,236,5478,8,236,1,236,1,236, - 3,236,5482,8,236,3,236,5484,8,236,1,237,1,237,1,237,1,237,1,237, - 1,237,1,237,1,237,1,237,3,237,5495,8,237,1,237,3,237,5498,8,237, - 1,237,1,237,3,237,5502,8,237,1,237,3,237,5505,8,237,1,237,3,237, - 5508,8,237,1,238,1,238,1,238,1,238,1,238,3,238,5515,8,238,1,239, - 1,239,1,239,1,239,1,239,1,239,1,239,1,239,5,239,5525,8,239,10,239, - 12,239,5528,9,239,3,239,5530,8,239,1,240,1,240,1,240,1,240,1,240, - 3,240,5537,8,240,1,240,1,240,5,240,5541,8,240,10,240,12,240,5544, - 9,240,1,241,1,241,1,241,1,241,1,241,5,241,5551,8,241,10,241,12,241, - 5554,9,241,1,242,1,242,3,242,5558,8,242,1,242,1,242,1,242,5,242, - 5563,8,242,10,242,12,242,5566,9,242,1,242,1,242,3,242,5570,8,242, - 1,242,1,242,1,242,1,242,3,242,5576,8,242,1,242,1,242,3,242,5580, - 8,242,1,242,1,242,3,242,5584,8,242,1,242,1,242,1,242,1,242,1,242, - 1,242,3,242,5592,8,242,1,242,1,242,3,242,5596,8,242,1,242,1,242, - 3,242,5600,8,242,1,242,1,242,1,242,1,242,3,242,5606,8,242,3,242, - 5608,8,242,1,243,1,243,1,243,1,243,1,244,1,244,1,245,1,245,1,245, - 1,245,3,245,5620,8,245,1,245,1,245,1,245,3,245,5625,8,245,1,245, - 1,245,1,245,1,245,3,245,5631,8,245,1,245,1,245,1,245,1,245,3,245, - 5637,8,245,1,245,1,245,3,245,5641,8,245,1,245,1,245,1,245,3,245, - 5646,8,245,3,245,5648,8,245,1,246,1,246,1,246,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,247,3,247,5672,8,247,4,247,5674,8,247, - 11,247,12,247,5675,1,247,3,247,5679,8,247,1,248,1,248,1,248,1,248, - 1,248,1,248,1,248,3,248,5688,8,248,1,248,1,248,3,248,5692,8,248, - 1,248,1,248,1,248,1,248,1,248,1,248,1,248,3,248,5701,8,248,1,248, - 1,248,3,248,5705,8,248,1,248,1,248,3,248,5709,8,248,1,248,1,248, - 1,248,1,248,3,248,5715,8,248,3,248,5717,8,248,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,3,249,5726,8,249,1,249,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,3,249,5736,8,249,1,250,1,250,1,250,1,250, - 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, - 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,3,250, - 5763,8,250,1,251,1,251,3,251,5767,8,251,1,251,1,251,1,251,3,251, - 5772,8,251,1,252,1,252,1,252,1,252,1,252,3,252,5779,8,252,1,252, - 3,252,5782,8,252,1,252,1,252,1,252,1,252,3,252,5788,8,252,1,253, - 1,253,1,253,1,253,1,253,1,253,1,253,1,253,3,253,5798,8,253,1,254, - 1,254,1,254,1,254,1,254,1,254,1,254,1,254,3,254,5808,8,254,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,5818,8,255,1,255, - 1,255,1,255,1,255,3,255,5824,8,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,3,255,5833,8,255,1,255,1,255,1,255,1,255,3,255,5839, - 8,255,1,255,1,255,1,255,1,255,1,255,3,255,5846,8,255,3,255,5848, - 8,255,1,256,1,256,1,256,1,257,1,257,1,257,3,257,5856,8,257,1,257, - 1,257,1,257,1,257,3,257,5862,8,257,1,257,1,257,3,257,5866,8,257, - 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, - 1,258,1,258,1,258,1,258,3,258,5883,8,258,1,259,1,259,1,259,1,260, - 1,260,1,260,1,260,1,260,3,260,5893,8,260,1,261,1,261,3,261,5897, - 8,261,1,261,1,261,3,261,5901,8,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,3,261,5911,8,261,1,261,1,261,1,261,3,261,5916, - 8,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,3,261,5988,8,261,1,262,1,262,1,262, - 1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262, - 1,262,1,262,3,262,6006,8,262,1,263,1,263,1,263,1,263,1,264,1,264, - 3,264,6014,8,264,1,264,1,264,1,264,1,264,3,264,6020,8,264,1,264, - 1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,3,264,6032, - 8,264,1,264,1,264,3,264,6036,8,264,1,264,1,264,1,264,1,264,1,264, - 1,264,1,264,1,264,1,264,3,264,6047,8,264,1,264,1,264,3,264,6051, - 8,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,3,264,6060,8,264, - 1,265,1,265,1,265,1,265,5,265,6066,8,265,10,265,12,265,6069,9,265, - 1,266,1,266,1,266,1,266,3,266,6075,8,266,1,267,1,267,3,267,6079, - 8,267,1,267,1,267,1,267,1,268,1,268,3,268,6086,8,268,1,268,1,268, - 1,268,3,268,6091,8,268,1,268,3,268,6094,8,268,1,268,3,268,6097,8, - 268,1,269,1,269,1,270,1,270,1,270,1,270,1,270,1,270,1,270,3,270, - 6108,8,270,1,271,1,271,1,271,1,271,1,271,5,271,6115,8,271,10,271, - 12,271,6118,9,271,1,271,1,271,1,271,1,271,5,271,6124,8,271,10,271, - 12,271,6127,9,271,3,271,6129,8,271,1,272,1,272,1,272,1,272,1,272, - 1,273,1,273,1,273,1,273,1,273,5,273,6141,8,273,10,273,12,273,6144, - 9,273,1,274,1,274,1,274,1,274,1,274,1,274,1,275,1,275,1,275,1,275, - 1,276,1,276,1,276,1,276,1,276,3,276,6161,8,276,1,276,1,276,1,276, - 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,3,276,6174,8,276, - 1,276,3,276,6177,8,276,1,276,1,276,3,276,6181,8,276,1,276,3,276, - 6184,8,276,3,276,6186,8,276,1,277,1,277,1,277,1,277,1,277,3,277, - 6193,8,277,1,277,1,277,1,277,1,277,1,277,3,277,6200,8,277,5,277, - 6202,8,277,10,277,12,277,6205,9,277,1,277,1,277,1,277,1,277,3,277, - 6211,8,277,1,277,1,277,1,277,1,277,1,277,3,277,6218,8,277,1,277, - 3,277,6221,8,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277, - 1,277,1,277,1,277,1,277,5,277,6235,8,277,10,277,12,277,6238,9,277, - 3,277,6240,8,277,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 3,278,6250,8,278,1,278,1,278,3,278,6254,8,278,1,278,1,278,1,278, - 1,278,3,278,6260,8,278,1,278,3,278,6263,8,278,1,278,3,278,6266,8, - 278,1,278,1,278,1,278,3,278,6271,8,278,1,278,1,278,3,278,6275,8, - 278,1,278,3,278,6278,8,278,1,278,1,278,1,278,1,278,1,278,3,278,6285, - 8,278,1,278,3,278,6288,8,278,1,278,1,278,1,278,1,278,3,278,6294, - 8,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,3,278,6330,8,278,1,278,3,278,6333,8,278,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,3,278,6345,8,278, - 1,278,3,278,6348,8,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,3,278,6364,8,278,3,278, - 6366,8,278,1,278,1,278,3,278,6370,8,278,1,278,1,278,1,278,1,278, - 1,278,3,278,6377,8,278,1,278,1,278,3,278,6381,8,278,1,278,1,278, - 1,278,1,278,1,278,3,278,6388,8,278,1,278,3,278,6391,8,278,1,278, - 1,278,1,278,1,278,1,278,5,278,6398,8,278,10,278,12,278,6401,9,278, - 3,278,6403,8,278,1,278,1,278,1,278,3,278,6408,8,278,1,278,1,278, - 1,278,1,278,3,278,6414,8,278,3,278,6416,8,278,1,278,1,278,1,278, - 1,278,3,278,6422,8,278,1,278,1,278,3,278,6426,8,278,1,279,1,279, - 1,279,1,279,3,279,6432,8,279,1,279,3,279,6435,8,279,1,279,3,279, - 6438,8,279,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280, - 1,280,1,280,3,280,6451,8,280,1,280,3,280,6454,8,280,1,281,1,281, - 1,281,1,281,3,281,6460,8,281,1,282,3,282,6463,8,282,1,282,1,282, - 1,282,1,282,1,282,1,282,3,282,6471,8,282,1,282,1,282,1,282,1,282, - 1,282,1,282,3,282,6479,8,282,1,283,1,283,1,283,1,283,3,283,6485, - 8,283,1,283,3,283,6488,8,283,1,283,1,283,3,283,6492,8,283,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 3,284,6506,8,284,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286, - 5,286,6516,8,286,10,286,12,286,6519,9,286,1,286,1,286,1,286,1,286, - 1,286,3,286,6526,8,286,1,286,1,286,3,286,6530,8,286,1,286,1,286, - 1,286,1,287,1,287,3,287,6537,8,287,1,287,1,287,1,287,5,287,6542, - 8,287,10,287,12,287,6545,9,287,1,288,1,288,3,288,6549,8,288,1,288, - 1,288,1,289,1,289,1,289,1,289,1,289,1,289,1,289,5,289,6560,8,289, - 10,289,12,289,6563,9,289,1,290,1,290,1,290,1,290,5,290,6569,8,290, - 10,290,12,290,6572,9,290,1,291,1,291,1,291,1,291,1,291,3,291,6579, - 8,291,1,292,1,292,1,292,3,292,6584,8,292,1,292,3,292,6587,8,292, - 1,293,1,293,1,293,3,293,6592,8,293,1,293,3,293,6595,8,293,1,294, - 1,294,1,295,1,295,1,296,1,296,1,296,1,296,1,296,1,296,3,296,6607, - 8,296,1,297,1,297,1,297,3,297,6612,8,297,1,297,1,297,1,297,1,297, - 1,297,1,297,1,297,1,297,1,297,1,297,1,297,3,297,6625,8,297,3,297, - 6627,8,297,1,297,1,297,1,297,3,297,6632,8,297,1,297,1,297,3,297, - 6636,8,297,1,297,3,297,6639,8,297,3,297,6641,8,297,1,298,1,298,1, - 298,1,298,1,298,3,298,6648,8,298,1,299,1,299,1,299,1,299,1,299,3, - 299,6655,8,299,1,299,3,299,6658,8,299,1,299,3,299,6661,8,299,1,299, - 1,299,1,299,1,299,3,299,6667,8,299,1,299,1,299,3,299,6671,8,299, - 1,300,1,300,1,300,1,300,3,300,6677,8,300,1,301,1,301,1,301,1,301, - 1,301,1,301,3,301,6685,8,301,1,301,1,301,1,302,1,302,1,302,1,302, - 1,302,3,302,6694,8,302,1,302,1,302,1,303,1,303,1,303,1,304,1,304, - 1,304,1,305,1,305,1,305,3,305,6707,8,305,1,305,1,305,1,305,3,305, - 6712,8,305,1,305,1,305,1,305,1,305,5,305,6718,8,305,10,305,12,305, - 6721,9,305,3,305,6723,8,305,1,306,1,306,1,306,3,306,6728,8,306,1, - 306,1,306,1,306,3,306,6733,8,306,1,306,1,306,1,306,1,306,5,306,6739, - 8,306,10,306,12,306,6742,9,306,3,306,6744,8,306,1,307,1,307,1,307, - 1,307,1,307,1,307,3,307,6752,8,307,1,308,1,308,3,308,6756,8,308, - 1,308,1,308,1,308,5,308,6761,8,308,10,308,12,308,6764,9,308,1,309, - 1,309,1,309,3,309,6769,8,309,1,309,3,309,6772,8,309,1,310,1,310, - 3,310,6776,8,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310, - 1,310,5,310,6787,8,310,10,310,12,310,6790,9,310,1,310,1,310,1,310, - 3,310,6795,8,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310, - 5,310,6805,8,310,10,310,12,310,6808,9,310,3,310,6810,8,310,1,311, - 1,311,1,312,1,312,1,312,1,312,1,312,3,312,6819,8,312,1,312,1,312, - 1,312,3,312,6824,8,312,1,313,1,313,1,314,1,314,1,315,1,315,1,316, - 1,316,1,317,1,317,1,318,1,318,1,319,1,319,1,320,1,320,1,320,5,320, - 6843,8,320,10,320,12,320,6846,9,320,1,321,1,321,1,322,1,322,1,323, - 1,323,1,324,1,324,1,325,1,325,1,325,5,325,6859,8,325,10,325,12,325, - 6862,9,325,1,326,1,326,1,327,1,327,1,327,5,327,6869,8,327,10,327, - 12,327,6872,9,327,1,328,1,328,3,328,6876,8,328,1,329,1,329,1,329, - 3,329,6881,8,329,3,329,6883,8,329,1,329,3,329,6886,8,329,1,329,1, - 329,3,329,6890,8,329,3,329,6892,8,329,1,330,1,330,1,330,5,330,6897, - 8,330,10,330,12,330,6900,9,330,1,331,1,331,1,331,3,331,6905,8,331, - 3,331,6907,8,331,1,331,3,331,6910,8,331,1,331,1,331,3,331,6914,8, - 331,1,331,3,331,6917,8,331,1,332,1,332,1,333,1,333,1,334,1,334,1, - 335,1,335,1,335,5,335,6928,8,335,10,335,12,335,6931,9,335,1,336, - 1,336,1,337,1,337,1,337,1,337,1,337,3,337,6940,8,337,1,337,3,337, - 6943,8,337,1,337,3,337,6946,8,337,1,338,1,338,1,338,1,338,1,339, - 1,339,1,339,1,340,1,340,1,340,1,340,3,340,6959,8,340,1,341,1,341, - 1,342,1,342,3,342,6965,8,342,1,342,3,342,6968,8,342,1,343,1,343, - 1,344,1,344,1,344,1,344,3,344,6976,8,344,1,345,1,345,1,346,1,346, - 1,346,3,346,6983,8,346,1,347,1,347,1,348,1,348,1,348,1,348,1,348, - 1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,4,348,7001, - 8,348,11,348,12,348,7002,1,349,1,349,1,349,1,349,1,349,3,349,7010, - 8,349,3,349,7012,8,349,1,350,1,350,1,350,4,350,7017,8,350,11,350, - 12,350,7018,3,350,7021,8,350,1,351,1,351,3,351,7025,8,351,1,352, - 1,352,1,352,5,352,7030,8,352,10,352,12,352,7033,9,352,1,353,1,353, - 1,353,3,353,7038,8,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,3,354,7049,8,354,1,355,1,355,1,355,1,355,3,355,7055, - 8,355,1,356,1,356,1,357,1,357,3,357,7061,8,357,1,358,3,358,7064, - 8,358,1,358,1,358,3,358,7068,8,358,1,358,4,358,7071,8,358,11,358, - 12,358,7072,1,358,3,358,7076,8,358,1,358,1,358,3,358,7080,8,358, - 1,358,1,358,3,358,7084,8,358,3,358,7086,8,358,1,359,1,359,1,360, - 3,360,7091,8,360,1,360,1,360,1,361,3,361,7096,8,361,1,361,1,361, - 1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,3,362,7109, - 8,362,1,362,3,362,7112,8,362,1,363,1,363,3,363,7116,8,363,1,363, - 3,363,7119,8,363,1,363,3,363,7122,8,363,1,363,1,363,1,363,3,363, - 7127,8,363,1,363,1,363,1,363,3,363,7132,8,363,1,363,1,363,1,363, - 1,363,3,363,7138,8,363,1,363,3,363,7141,8,363,1,363,1,363,1,363, - 3,363,7146,8,363,1,363,3,363,7149,8,363,1,363,1,363,1,363,3,363, - 7154,8,363,1,363,3,363,7157,8,363,1,363,1,363,3,363,7161,8,363,1, - 363,5,363,7164,8,363,10,363,12,363,7167,9,363,1,363,1,363,3,363, - 7171,8,363,1,363,5,363,7174,8,363,10,363,12,363,7177,9,363,1,363, - 1,363,3,363,7181,8,363,1,363,3,363,7184,8,363,1,363,5,363,7187,8, - 363,10,363,12,363,7190,9,363,1,363,1,363,3,363,7194,8,363,1,363, - 5,363,7197,8,363,10,363,12,363,7200,9,363,1,363,1,363,1,363,3,363, - 7205,8,363,1,363,1,363,1,363,3,363,7210,8,363,1,363,1,363,1,363, - 3,363,7215,8,363,1,363,1,363,1,363,3,363,7220,8,363,1,363,1,363, - 3,363,7224,8,363,1,363,3,363,7227,8,363,1,363,1,363,1,363,3,363, - 7232,8,363,1,363,1,363,3,363,7236,8,363,1,363,1,363,3,363,7240,8, - 363,1,364,1,364,1,364,1,364,5,364,7246,8,364,10,364,12,364,7249, - 9,364,1,364,1,364,1,365,1,365,3,365,7255,8,365,1,365,1,365,3,365, - 7259,8,365,1,365,1,365,1,365,3,365,7264,8,365,1,365,1,365,1,365, - 3,365,7269,8,365,1,365,1,365,3,365,7273,8,365,3,365,7275,8,365,1, - 365,3,365,7278,8,365,1,366,1,366,1,366,1,366,1,367,1,367,1,367,1, - 367,1,367,1,367,1,368,1,368,1,368,1,368,3,368,7294,8,368,1,368,1, - 368,1,369,1,369,1,369,1,369,5,369,7302,8,369,10,369,12,369,7305, - 9,369,1,369,1,369,1,370,1,370,1,370,5,370,7312,8,370,10,370,12,370, - 7315,9,370,1,371,1,371,1,371,1,371,5,371,7321,8,371,10,371,12,371, - 7324,9,371,1,372,1,372,1,372,1,372,5,372,7330,8,372,10,372,12,372, - 7333,9,372,1,372,1,372,1,373,1,373,3,373,7339,8,373,1,374,1,374, - 1,374,5,374,7344,8,374,10,374,12,374,7347,9,374,1,375,1,375,1,375, - 5,375,7352,8,375,10,375,12,375,7355,9,375,1,376,1,376,1,376,5,376, - 7360,8,376,10,376,12,376,7363,9,376,1,377,1,377,1,377,1,377,1,377, - 1,377,1,377,1,377,1,377,3,377,7374,8,377,1,377,1,377,1,377,1,377, - 1,377,3,377,7381,8,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377, - 1,377,3,377,7391,8,377,1,378,1,378,1,378,3,378,7396,8,378,1,378, - 3,378,7399,8,378,1,378,1,378,1,378,3,378,7404,8,378,1,378,3,378, - 7407,8,378,1,379,1,379,1,379,1,380,1,380,1,380,1,380,1,381,1,381, - 1,381,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 3,382,7429,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382, - 7438,8,382,1,382,3,382,7441,8,382,1,383,1,383,1,383,3,383,7446,8, - 383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,4,383,7477,8,383, - 11,383,12,383,7478,1,383,1,383,3,383,7483,8,383,1,383,1,383,1,383, - 1,383,1,383,4,383,7490,8,383,11,383,12,383,7491,1,383,1,383,3,383, - 7496,8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7505, - 8,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7513,8,383,1,383, - 1,383,1,383,3,383,7518,8,383,1,383,1,383,1,383,1,383,1,383,1,383, - 3,383,7526,8,383,1,383,1,383,1,383,3,383,7531,8,383,1,383,1,383, - 1,383,3,383,7536,8,383,3,383,7538,8,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,3,383,7547,8,383,1,383,1,383,1,383,3,383,7552, - 8,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7560,8,383,1,383, - 1,383,1,383,3,383,7565,8,383,1,383,1,383,1,383,1,383,1,383,1,383, - 3,383,7573,8,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7581, - 8,383,1,383,3,383,7584,8,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,3,383,7594,8,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383, - 7612,8,383,1,383,3,383,7615,8,383,1,383,3,383,7618,8,383,1,383,1, - 383,3,383,7622,8,383,1,384,1,384,1,384,1,384,1,384,1,385,1,385,1, - 385,1,385,5,385,7633,8,385,10,385,12,385,7636,9,385,1,385,1,385, - 1,385,1,385,1,385,3,385,7643,8,385,1,386,1,386,3,386,7647,8,386, - 1,387,1,387,1,387,3,387,7652,8,387,1,387,1,387,1,387,3,387,7657, - 8,387,1,387,1,387,1,387,1,387,3,387,7663,8,387,1,387,1,387,1,387, - 3,387,7668,8,387,1,387,1,387,3,387,7672,8,387,1,387,1,387,1,387, - 3,387,7677,8,387,1,387,1,387,1,387,3,387,7682,8,387,1,387,1,387, - 1,387,3,387,7687,8,387,1,387,1,387,1,387,1,387,1,387,1,387,5,387, - 7695,8,387,10,387,12,387,7698,9,387,3,387,7700,8,387,1,387,1,387, - 3,387,7704,8,387,1,387,1,387,3,387,7708,8,387,1,388,1,388,1,388, - 1,388,1,388,3,388,7715,8,388,1,388,1,388,3,388,7719,8,388,1,388, + 1,199,1,199,1,199,3,199,4781,8,199,3,199,4783,8,199,1,200,1,200, + 1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201,5,201,4795,8,201, + 10,201,12,201,4798,9,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, + 1,201,5,201,4808,8,201,10,201,12,201,4811,9,201,1,201,1,201,1,201, + 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, + 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, + 1,201,1,201,1,201,1,201,1,201,1,201,1,201,5,201,4845,8,201,10,201, + 12,201,4848,9,201,1,201,1,201,3,201,4852,8,201,1,202,1,202,1,202, + 1,202,1,202,1,202,1,203,1,203,1,204,1,204,1,204,1,204,1,204,1,204, + 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204, + 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,3,204,4887,8,204, + 1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205, + 1,205,3,205,4901,8,205,1,206,1,206,1,206,5,206,4906,8,206,10,206, + 12,206,4909,9,206,1,206,3,206,4912,8,206,1,207,1,207,1,207,1,207, + 3,207,4918,8,207,1,208,1,208,1,208,1,208,1,208,1,208,3,208,4926, + 8,208,3,208,4928,8,208,1,209,1,209,1,209,1,209,1,210,1,210,1,210, + 1,210,1,210,3,210,4939,8,210,1,211,1,211,1,211,1,211,1,212,1,212, + 1,212,1,212,3,212,4949,8,212,1,213,1,213,1,213,1,213,1,213,3,213, + 4956,8,213,1,214,1,214,1,214,1,214,3,214,4962,8,214,1,215,1,215, + 1,215,1,215,1,216,1,216,3,216,4970,8,216,1,217,1,217,1,217,3,217, + 4975,8,217,1,217,1,217,1,217,1,217,5,217,4981,8,217,10,217,12,217, + 4984,9,217,1,217,1,217,1,217,5,217,4989,8,217,10,217,12,217,4992, + 9,217,1,217,1,217,1,217,5,217,4997,8,217,10,217,12,217,5000,9,217, + 1,217,1,217,1,217,5,217,5005,8,217,10,217,12,217,5008,9,217,1,217, + 5,217,5011,8,217,10,217,12,217,5014,9,217,1,217,1,217,3,217,5018, + 8,217,1,218,1,218,1,218,3,218,5023,8,218,1,218,4,218,5026,8,218, + 11,218,12,218,5027,1,218,1,218,4,218,5032,8,218,11,218,12,218,5033, + 3,218,5036,8,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,4,219, + 5045,8,219,11,219,12,219,5046,1,219,5,219,5050,8,219,10,219,12,219, + 5053,9,219,1,219,1,219,4,219,5057,8,219,11,219,12,219,5058,3,219, + 5061,8,219,1,219,1,219,1,219,1,220,1,220,1,220,1,221,1,221,1,221, + 1,222,1,222,1,222,3,222,5075,8,222,1,222,1,222,4,222,5079,8,222, + 11,222,12,222,5080,1,222,1,222,1,222,3,222,5086,8,222,1,223,1,223, + 1,223,3,223,5091,8,223,1,223,1,223,4,223,5095,8,223,11,223,12,223, + 5096,1,223,1,223,1,223,1,223,1,223,3,223,5104,8,223,1,224,1,224, + 1,224,1,225,1,225,1,225,3,225,5112,8,225,1,225,1,225,1,225,1,225, + 4,225,5118,8,225,11,225,12,225,5119,1,225,1,225,1,225,3,225,5125, + 8,225,1,226,1,226,1,226,1,226,3,226,5131,8,226,1,226,3,226,5134, + 8,226,1,226,1,226,1,226,1,226,1,226,1,226,3,226,5142,8,226,1,227, + 1,227,1,227,1,227,1,227,3,227,5149,8,227,1,228,1,228,1,228,1,228, + 1,228,1,228,1,228,3,228,5158,8,228,1,228,3,228,5161,8,228,1,229, + 1,229,1,229,1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230, + 1,230,5,230,5176,8,230,10,230,12,230,5179,9,230,1,230,1,230,1,231, + 1,231,1,231,3,231,5186,8,231,1,231,1,231,1,231,1,231,1,231,1,231, + 3,231,5194,8,231,1,232,1,232,3,232,5198,8,232,1,232,1,232,1,233, + 1,233,1,233,3,233,5205,8,233,1,233,1,233,4,233,5209,8,233,11,233, + 12,233,5210,1,234,1,234,1,234,1,234,4,234,5217,8,234,11,234,12,234, + 5218,1,235,1,235,1,235,3,235,5224,8,235,1,235,1,235,1,235,5,235, + 5229,8,235,10,235,12,235,5232,9,235,1,235,1,235,1,235,5,235,5237, + 8,235,10,235,12,235,5240,9,235,1,235,1,235,1,235,1,235,3,235,5246, + 8,235,1,235,5,235,5249,8,235,10,235,12,235,5252,9,235,3,235,5254, + 8,235,3,235,5256,8,235,1,235,1,235,4,235,5260,8,235,11,235,12,235, + 5261,3,235,5264,8,235,1,235,1,235,5,235,5268,8,235,10,235,12,235, + 5271,9,235,1,235,1,235,3,235,5275,8,235,1,235,1,235,1,235,1,235, + 1,235,3,235,5282,8,235,1,236,1,236,1,236,3,236,5287,8,236,1,236, + 1,236,3,236,5291,8,236,1,236,1,236,1,236,3,236,5296,8,236,5,236, + 5298,8,236,10,236,12,236,5301,9,236,1,236,1,236,1,236,3,236,5306, + 8,236,1,236,1,236,1,236,1,236,3,236,5312,8,236,1,236,5,236,5315, + 8,236,10,236,12,236,5318,9,236,3,236,5320,8,236,3,236,5322,8,236, + 1,236,1,236,4,236,5326,8,236,11,236,12,236,5327,3,236,5330,8,236, + 1,236,1,236,5,236,5334,8,236,10,236,12,236,5337,9,236,1,236,1,236, + 3,236,5341,8,236,1,237,1,237,1,237,3,237,5346,8,237,1,237,1,237, + 1,237,5,237,5351,8,237,10,237,12,237,5354,9,237,1,238,1,238,1,238, + 1,238,5,238,5360,8,238,10,238,12,238,5363,9,238,1,238,1,238,3,238, + 5367,8,238,1,238,1,238,1,238,1,238,1,238,5,238,5374,8,238,10,238, + 12,238,5377,9,238,1,238,3,238,5380,8,238,1,238,1,238,1,238,1,238, + 3,238,5386,8,238,1,238,5,238,5389,8,238,10,238,12,238,5392,9,238, + 3,238,5394,8,238,3,238,5396,8,238,1,238,1,238,1,238,1,238,5,238, + 5402,8,238,10,238,12,238,5405,9,238,3,238,5407,8,238,1,238,1,238, + 1,238,1,238,1,238,3,238,5414,8,238,3,238,5416,8,238,1,238,1,238, + 1,238,3,238,5421,8,238,1,238,1,238,1,238,5,238,5426,8,238,10,238, + 12,238,5429,9,238,1,238,1,238,1,238,1,238,5,238,5435,8,238,10,238, + 12,238,5438,9,238,1,238,1,238,1,238,3,238,5443,8,238,3,238,5445, + 8,238,1,239,1,239,1,239,1,239,1,239,3,239,5452,8,239,1,239,3,239, + 5455,8,239,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,5,240, + 5465,8,240,10,240,12,240,5468,9,240,1,240,1,240,1,240,3,240,5473, + 8,240,1,241,1,241,1,241,1,241,1,241,1,241,3,241,5481,8,241,1,241, + 3,241,5484,8,241,1,241,1,241,3,241,5488,8,241,1,241,3,241,5491,8, + 241,1,241,1,241,3,241,5495,8,241,3,241,5497,8,241,1,242,1,242,1, + 242,1,242,1,242,1,242,1,242,1,242,1,242,3,242,5508,8,242,1,242,3, + 242,5511,8,242,1,242,1,242,3,242,5515,8,242,1,242,3,242,5518,8,242, + 1,242,3,242,5521,8,242,1,243,1,243,1,243,1,243,1,243,3,243,5528, + 8,243,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,5,244,5538, + 8,244,10,244,12,244,5541,9,244,3,244,5543,8,244,1,245,1,245,1,245, + 1,245,1,245,3,245,5550,8,245,1,245,1,245,5,245,5554,8,245,10,245, + 12,245,5557,9,245,1,246,1,246,1,246,1,246,1,246,5,246,5564,8,246, + 10,246,12,246,5567,9,246,1,247,1,247,3,247,5571,8,247,1,247,1,247, + 1,247,5,247,5576,8,247,10,247,12,247,5579,9,247,1,247,1,247,3,247, + 5583,8,247,1,247,1,247,1,247,1,247,3,247,5589,8,247,1,247,1,247, + 3,247,5593,8,247,1,247,1,247,3,247,5597,8,247,1,247,1,247,1,247, + 1,247,1,247,1,247,3,247,5605,8,247,1,247,1,247,3,247,5609,8,247, + 1,247,1,247,3,247,5613,8,247,1,247,1,247,1,247,1,247,3,247,5619, + 8,247,3,247,5621,8,247,1,248,1,248,1,248,1,248,1,249,1,249,1,250, + 1,250,1,250,1,250,3,250,5633,8,250,1,250,1,250,1,250,3,250,5638, + 8,250,1,250,1,250,1,250,1,250,3,250,5644,8,250,1,250,1,250,1,250, + 1,250,3,250,5650,8,250,1,250,1,250,3,250,5654,8,250,1,250,1,250, + 1,250,3,250,5659,8,250,3,250,5661,8,250,1,251,1,251,1,251,1,252, + 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252, + 1,252,1,252,1,252,1,252,1,252,1,252,1,252,3,252,5685,8,252,4,252, + 5687,8,252,11,252,12,252,5688,1,252,3,252,5692,8,252,1,253,1,253, + 1,253,1,253,1,253,1,253,1,253,3,253,5701,8,253,1,253,1,253,3,253, + 5705,8,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,3,253,5714, + 8,253,1,253,1,253,3,253,5718,8,253,1,253,1,253,3,253,5722,8,253, + 1,253,1,253,1,253,1,253,3,253,5728,8,253,3,253,5730,8,253,1,254, + 1,254,1,254,1,254,1,254,1,254,1,254,3,254,5739,8,254,1,254,1,254, + 1,254,1,254,1,254,1,254,1,254,1,254,3,254,5749,8,254,1,255,1,255, + 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, + 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, + 1,255,3,255,5776,8,255,1,256,1,256,3,256,5780,8,256,1,256,1,256, + 1,256,3,256,5785,8,256,1,257,1,257,1,257,1,257,1,257,3,257,5792, + 8,257,1,257,3,257,5795,8,257,1,257,1,257,1,257,1,257,3,257,5801, + 8,257,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5811, + 8,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259,5821, + 8,259,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,3,260,5831, + 8,260,1,260,1,260,1,260,1,260,3,260,5837,8,260,1,260,1,260,1,260, + 1,260,1,260,1,260,1,260,3,260,5846,8,260,1,260,1,260,1,260,1,260, + 3,260,5852,8,260,1,260,1,260,1,260,1,260,1,260,3,260,5859,8,260, + 3,260,5861,8,260,1,261,1,261,1,261,1,262,1,262,1,262,3,262,5869, + 8,262,1,262,1,262,1,262,1,262,3,262,5875,8,262,1,262,1,262,3,262, + 5879,8,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, + 1,263,1,263,1,263,1,263,1,263,1,263,3,263,5896,8,263,1,264,1,264, + 1,264,1,265,1,265,1,265,1,265,1,265,3,265,5906,8,265,1,266,1,266, + 3,266,5910,8,266,1,266,1,266,3,266,5914,8,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,3,266,5924,8,266,1,266,1,266,1,266, + 3,266,5929,8,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,3,266,6001,8,266,1,267, + 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,1,267,1,267,1,267,3,267,6019,8,267,1,268,1,268,1,268,1,268, + 1,269,1,269,3,269,6027,8,269,1,269,1,269,1,269,1,269,3,269,6033, + 8,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269, + 3,269,6045,8,269,1,269,1,269,3,269,6049,8,269,1,269,1,269,1,269, + 1,269,1,269,1,269,1,269,1,269,1,269,3,269,6060,8,269,1,269,1,269, + 3,269,6064,8,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269, + 6073,8,269,1,270,1,270,1,270,1,270,5,270,6079,8,270,10,270,12,270, + 6082,9,270,1,271,1,271,1,271,1,271,3,271,6088,8,271,1,272,1,272, + 3,272,6092,8,272,1,272,1,272,1,272,1,273,1,273,3,273,6099,8,273, + 1,273,1,273,1,273,3,273,6104,8,273,1,273,3,273,6107,8,273,1,273, + 3,273,6110,8,273,1,274,1,274,1,275,1,275,1,275,1,275,1,275,1,275, + 1,275,3,275,6121,8,275,1,276,1,276,1,276,1,276,1,276,5,276,6128, + 8,276,10,276,12,276,6131,9,276,1,276,1,276,1,276,1,276,5,276,6137, + 8,276,10,276,12,276,6140,9,276,3,276,6142,8,276,1,277,1,277,1,277, + 1,277,1,277,1,278,1,278,1,278,1,278,1,278,5,278,6154,8,278,10,278, + 12,278,6157,9,278,1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280, + 1,280,1,280,1,281,1,281,1,281,1,281,1,281,3,281,6174,8,281,1,281, + 1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281, + 6187,8,281,1,281,3,281,6190,8,281,1,281,1,281,3,281,6194,8,281,1, + 281,3,281,6197,8,281,3,281,6199,8,281,1,282,1,282,1,282,1,282,1, + 282,3,282,6206,8,282,1,282,1,282,1,282,1,282,1,282,3,282,6213,8, + 282,5,282,6215,8,282,10,282,12,282,6218,9,282,1,282,1,282,1,282, + 1,282,3,282,6224,8,282,1,282,1,282,1,282,1,282,1,282,3,282,6231, + 8,282,1,282,3,282,6234,8,282,1,282,1,282,1,282,1,282,1,282,1,282, + 1,282,1,282,1,282,1,282,1,282,1,282,5,282,6248,8,282,10,282,12,282, + 6251,9,282,3,282,6253,8,282,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,3,283,6263,8,283,1,283,1,283,3,283,6267,8,283,1,283, + 1,283,1,283,1,283,3,283,6273,8,283,1,283,3,283,6276,8,283,1,283, + 3,283,6279,8,283,1,283,1,283,1,283,3,283,6284,8,283,1,283,1,283, + 3,283,6288,8,283,1,283,3,283,6291,8,283,1,283,1,283,1,283,1,283, + 1,283,3,283,6298,8,283,1,283,3,283,6301,8,283,1,283,1,283,1,283, + 1,283,3,283,6307,8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,3,283,6343,8,283,1,283,3,283,6346, + 8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 3,283,6358,8,283,1,283,3,283,6361,8,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283, + 6377,8,283,3,283,6379,8,283,1,283,1,283,3,283,6383,8,283,1,283,1, + 283,1,283,1,283,1,283,3,283,6390,8,283,1,283,1,283,3,283,6394,8, + 283,1,283,1,283,1,283,1,283,1,283,3,283,6401,8,283,1,283,3,283,6404, + 8,283,1,283,1,283,1,283,1,283,1,283,5,283,6411,8,283,10,283,12,283, + 6414,9,283,3,283,6416,8,283,1,283,1,283,1,283,3,283,6421,8,283,1, + 283,1,283,1,283,1,283,3,283,6427,8,283,3,283,6429,8,283,1,283,1, + 283,1,283,1,283,3,283,6435,8,283,1,283,1,283,3,283,6439,8,283,1, + 284,1,284,1,284,1,284,3,284,6445,8,284,1,284,3,284,6448,8,284,1, + 284,3,284,6451,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1, + 285,1,285,1,285,1,285,3,285,6464,8,285,1,285,3,285,6467,8,285,1, + 286,1,286,1,286,1,286,3,286,6473,8,286,1,287,3,287,6476,8,287,1, + 287,1,287,1,287,1,287,1,287,1,287,3,287,6484,8,287,1,287,1,287,1, + 287,1,287,1,287,1,287,3,287,6492,8,287,1,288,1,288,1,288,1,288,3, + 288,6498,8,288,1,288,3,288,6501,8,288,1,288,1,288,3,288,6505,8,288, + 1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289, + 1,289,3,289,6519,8,289,1,290,1,290,1,290,1,291,1,291,1,291,1,291, + 1,291,5,291,6529,8,291,10,291,12,291,6532,9,291,1,291,1,291,1,291, + 1,291,1,291,3,291,6539,8,291,1,291,1,291,3,291,6543,8,291,1,291, + 1,291,1,291,1,292,1,292,3,292,6550,8,292,1,292,1,292,1,292,5,292, + 6555,8,292,10,292,12,292,6558,9,292,1,293,1,293,3,293,6562,8,293, + 1,293,1,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294,5,294,6573, + 8,294,10,294,12,294,6576,9,294,1,295,1,295,1,295,1,295,5,295,6582, + 8,295,10,295,12,295,6585,9,295,1,296,1,296,1,296,1,296,1,296,3,296, + 6592,8,296,1,297,1,297,1,297,3,297,6597,8,297,1,297,3,297,6600,8, + 297,1,298,1,298,1,298,3,298,6605,8,298,1,298,3,298,6608,8,298,1, + 299,1,299,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,3,301, + 6620,8,301,1,302,1,302,1,302,3,302,6625,8,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,3,302,6638,8,302, + 3,302,6640,8,302,1,302,1,302,1,302,3,302,6645,8,302,1,302,1,302, + 3,302,6649,8,302,1,302,3,302,6652,8,302,3,302,6654,8,302,1,303,1, + 303,1,303,1,303,1,303,3,303,6661,8,303,1,304,1,304,1,304,1,304,1, + 304,3,304,6668,8,304,1,304,3,304,6671,8,304,1,304,3,304,6674,8,304, + 1,304,1,304,1,304,1,304,3,304,6680,8,304,1,304,1,304,3,304,6684, + 8,304,1,305,1,305,1,305,1,305,3,305,6690,8,305,1,306,1,306,1,306, + 1,306,1,306,1,306,3,306,6698,8,306,1,306,1,306,1,307,1,307,1,307, + 1,307,1,307,3,307,6707,8,307,1,307,1,307,1,308,1,308,1,308,1,309, + 1,309,1,309,1,310,1,310,1,310,3,310,6720,8,310,1,310,1,310,1,310, + 3,310,6725,8,310,1,310,1,310,1,310,1,310,5,310,6731,8,310,10,310, + 12,310,6734,9,310,3,310,6736,8,310,1,311,1,311,1,311,3,311,6741, + 8,311,1,311,1,311,1,311,3,311,6746,8,311,1,311,1,311,1,311,1,311, + 5,311,6752,8,311,10,311,12,311,6755,9,311,3,311,6757,8,311,1,312, + 1,312,1,312,1,312,1,312,1,312,3,312,6765,8,312,1,313,1,313,3,313, + 6769,8,313,1,313,1,313,1,313,5,313,6774,8,313,10,313,12,313,6777, + 9,313,1,314,1,314,1,314,3,314,6782,8,314,1,314,3,314,6785,8,314, + 1,315,1,315,3,315,6789,8,315,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,1,315,1,315,5,315,6800,8,315,10,315,12,315,6803,9,315,1,315, + 1,315,1,315,3,315,6808,8,315,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,1,315,5,315,6818,8,315,10,315,12,315,6821,9,315,3,315,6823, + 8,315,1,316,1,316,1,317,1,317,1,317,1,317,1,317,3,317,6832,8,317, + 1,317,1,317,1,317,3,317,6837,8,317,1,318,1,318,1,319,1,319,1,320, + 1,320,1,321,1,321,1,322,1,322,1,323,1,323,1,324,1,324,1,325,1,325, + 1,325,5,325,6856,8,325,10,325,12,325,6859,9,325,1,326,1,326,1,327, + 1,327,1,328,1,328,1,329,1,329,1,330,1,330,1,330,5,330,6872,8,330, + 10,330,12,330,6875,9,330,1,331,1,331,1,332,1,332,1,332,5,332,6882, + 8,332,10,332,12,332,6885,9,332,1,333,1,333,3,333,6889,8,333,1,334, + 1,334,1,334,3,334,6894,8,334,3,334,6896,8,334,1,334,3,334,6899,8, + 334,1,334,1,334,3,334,6903,8,334,3,334,6905,8,334,1,335,1,335,1, + 335,5,335,6910,8,335,10,335,12,335,6913,9,335,1,336,1,336,1,336, + 3,336,6918,8,336,3,336,6920,8,336,1,336,3,336,6923,8,336,1,336,1, + 336,3,336,6927,8,336,1,336,3,336,6930,8,336,1,337,1,337,1,338,1, + 338,1,339,1,339,1,340,1,340,1,340,5,340,6941,8,340,10,340,12,340, + 6944,9,340,1,341,1,341,1,342,1,342,1,342,1,342,1,342,3,342,6953, + 8,342,1,342,3,342,6956,8,342,1,342,3,342,6959,8,342,1,343,1,343, + 1,343,1,343,1,344,1,344,1,344,1,345,1,345,1,345,1,345,3,345,6972, + 8,345,1,346,1,346,1,347,1,347,3,347,6978,8,347,1,347,3,347,6981, + 8,347,1,348,1,348,1,349,1,349,1,349,1,349,3,349,6989,8,349,1,350, + 1,350,1,351,1,351,1,351,3,351,6996,8,351,1,352,1,352,1,353,1,353, + 1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353, + 1,353,4,353,7014,8,353,11,353,12,353,7015,1,354,1,354,1,354,1,354, + 1,354,3,354,7023,8,354,3,354,7025,8,354,1,355,1,355,1,355,4,355, + 7030,8,355,11,355,12,355,7031,3,355,7034,8,355,1,356,1,356,3,356, + 7038,8,356,1,357,1,357,1,357,5,357,7043,8,357,10,357,12,357,7046, + 9,357,1,358,1,358,1,358,3,358,7051,8,358,1,359,1,359,1,359,1,359, + 1,359,1,359,1,359,1,359,1,359,3,359,7062,8,359,1,360,1,360,1,360, + 1,360,3,360,7068,8,360,1,361,1,361,1,362,1,362,3,362,7074,8,362, + 1,363,3,363,7077,8,363,1,363,1,363,3,363,7081,8,363,1,363,4,363, + 7084,8,363,11,363,12,363,7085,1,363,3,363,7089,8,363,1,363,1,363, + 3,363,7093,8,363,1,363,1,363,3,363,7097,8,363,3,363,7099,8,363,1, + 364,1,364,1,365,3,365,7104,8,365,1,365,1,365,1,366,3,366,7109,8, + 366,1,366,1,366,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367, + 1,367,3,367,7122,8,367,1,367,3,367,7125,8,367,1,368,1,368,3,368, + 7129,8,368,1,368,3,368,7132,8,368,1,368,3,368,7135,8,368,1,368,1, + 368,1,368,3,368,7140,8,368,1,368,1,368,1,368,3,368,7145,8,368,1, + 368,1,368,1,368,1,368,3,368,7151,8,368,1,368,3,368,7154,8,368,1, + 368,1,368,1,368,3,368,7159,8,368,1,368,3,368,7162,8,368,1,368,1, + 368,1,368,3,368,7167,8,368,1,368,3,368,7170,8,368,1,368,1,368,3, + 368,7174,8,368,1,368,5,368,7177,8,368,10,368,12,368,7180,9,368,1, + 368,1,368,3,368,7184,8,368,1,368,5,368,7187,8,368,10,368,12,368, + 7190,9,368,1,368,1,368,3,368,7194,8,368,1,368,3,368,7197,8,368,1, + 368,5,368,7200,8,368,10,368,12,368,7203,9,368,1,368,1,368,3,368, + 7207,8,368,1,368,5,368,7210,8,368,10,368,12,368,7213,9,368,1,368, + 1,368,1,368,3,368,7218,8,368,1,368,1,368,1,368,3,368,7223,8,368, + 1,368,1,368,1,368,3,368,7228,8,368,1,368,1,368,1,368,3,368,7233, + 8,368,1,368,1,368,3,368,7237,8,368,1,368,3,368,7240,8,368,1,368, + 1,368,1,368,3,368,7245,8,368,1,368,1,368,3,368,7249,8,368,1,368, + 1,368,3,368,7253,8,368,1,369,1,369,1,369,1,369,5,369,7259,8,369, + 10,369,12,369,7262,9,369,1,369,1,369,1,370,1,370,3,370,7268,8,370, + 1,370,1,370,3,370,7272,8,370,1,370,1,370,1,370,3,370,7277,8,370, + 1,370,1,370,1,370,3,370,7282,8,370,1,370,1,370,3,370,7286,8,370, + 3,370,7288,8,370,1,370,3,370,7291,8,370,1,371,1,371,1,371,1,371, + 1,372,1,372,1,372,1,372,1,372,1,372,1,373,1,373,1,373,1,373,3,373, + 7307,8,373,1,373,1,373,1,374,1,374,1,374,1,374,5,374,7315,8,374, + 10,374,12,374,7318,9,374,1,374,1,374,1,375,1,375,1,375,5,375,7325, + 8,375,10,375,12,375,7328,9,375,1,376,1,376,1,376,1,376,5,376,7334, + 8,376,10,376,12,376,7337,9,376,1,377,1,377,1,377,1,377,5,377,7343, + 8,377,10,377,12,377,7346,9,377,1,377,1,377,1,378,1,378,3,378,7352, + 8,378,1,379,1,379,1,379,5,379,7357,8,379,10,379,12,379,7360,9,379, + 1,380,1,380,1,380,5,380,7365,8,380,10,380,12,380,7368,9,380,1,381, + 1,381,1,381,5,381,7373,8,381,10,381,12,381,7376,9,381,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,7387,8,382,1,382, + 1,382,1,382,1,382,1,382,3,382,7394,8,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,3,382,7404,8,382,1,383,1,383,1,383,3,383, + 7409,8,383,1,383,3,383,7412,8,383,1,383,1,383,1,383,3,383,7417,8, + 383,1,383,3,383,7420,8,383,1,384,1,384,1,384,1,385,1,385,1,385,1, + 385,1,386,1,386,1,386,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,3,387,7442,8,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,3,387,7451,8,387,1,387,3,387,7454,8,387,1,388,1,388, + 1,388,3,388,7459,8,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,3,388,7748,8,388,1,389,1,389,1,389,1,389, - 1,389,1,389,3,389,7756,8,389,1,390,3,390,7759,8,390,1,390,3,390, - 7762,8,390,1,390,3,390,7765,8,390,1,390,3,390,7768,8,390,1,391,1, - 391,1,392,1,392,1,392,1,393,1,393,1,394,1,394,3,394,7779,8,394,1, - 395,1,395,1,395,1,395,1,395,1,396,1,396,1,396,1,396,1,396,1,396, - 1,396,3,396,7793,8,396,1,397,1,397,1,397,1,397,1,397,5,397,7800, - 8,397,10,397,12,397,7803,9,397,1,398,1,398,1,398,1,398,1,398,1,398, - 1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, - 1,398,1,398,1,398,1,398,1,398,1,398,1,398,3,398,7829,8,398,1,399, - 1,399,1,399,1,399,1,399,1,400,1,400,1,400,5,400,7839,8,400,10,400, - 12,400,7842,9,400,1,401,1,401,1,401,3,401,7847,8,401,1,402,1,402, - 1,402,1,402,1,402,1,402,3,402,7855,8,402,1,402,1,402,1,402,3,402, - 7860,8,402,1,402,1,402,1,402,1,402,5,402,7866,8,402,10,402,12,402, - 7869,9,402,1,403,1,403,1,403,1,403,1,403,3,403,7876,8,403,1,403, + 4,388,7490,8,388,11,388,12,388,7491,1,388,1,388,3,388,7496,8,388, + 1,388,1,388,1,388,1,388,1,388,4,388,7503,8,388,11,388,12,388,7504, + 1,388,1,388,3,388,7509,8,388,1,388,1,388,1,388,1,388,1,388,1,388, + 1,388,3,388,7518,8,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388, + 7526,8,388,1,388,1,388,1,388,3,388,7531,8,388,1,388,1,388,1,388, + 1,388,1,388,1,388,3,388,7539,8,388,1,388,1,388,1,388,3,388,7544, + 8,388,1,388,1,388,1,388,3,388,7549,8,388,3,388,7551,8,388,1,388, + 1,388,1,388,1,388,1,388,1,388,1,388,3,388,7560,8,388,1,388,1,388, + 1,388,3,388,7565,8,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388, + 7573,8,388,1,388,1,388,1,388,3,388,7578,8,388,1,388,1,388,1,388, + 1,388,1,388,1,388,3,388,7586,8,388,1,388,1,388,1,388,1,388,1,388, + 1,388,3,388,7594,8,388,1,388,3,388,7597,8,388,1,388,1,388,1,388, + 1,388,1,388,1,388,1,388,1,388,3,388,7607,8,388,1,388,1,388,1,388, + 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, + 1,388,1,388,3,388,7625,8,388,1,388,3,388,7628,8,388,1,388,3,388, + 7631,8,388,1,388,1,388,3,388,7635,8,388,1,389,1,389,1,389,1,389, + 1,389,1,390,1,390,1,390,1,390,5,390,7646,8,390,10,390,12,390,7649, + 9,390,1,390,1,390,1,390,1,390,1,390,3,390,7656,8,390,1,391,1,391, + 3,391,7660,8,391,1,392,1,392,1,392,3,392,7665,8,392,1,392,1,392, + 1,392,3,392,7670,8,392,1,392,1,392,1,392,1,392,3,392,7676,8,392, + 1,392,1,392,1,392,3,392,7681,8,392,1,392,1,392,3,392,7685,8,392, + 1,392,1,392,1,392,3,392,7690,8,392,1,392,1,392,1,392,3,392,7695, + 8,392,1,392,1,392,1,392,3,392,7700,8,392,1,392,1,392,1,392,1,392, + 1,392,1,392,5,392,7708,8,392,10,392,12,392,7711,9,392,3,392,7713, + 8,392,1,392,1,392,3,392,7717,8,392,1,392,1,392,3,392,7721,8,392, + 1,393,1,393,1,393,1,393,1,393,3,393,7728,8,393,1,393,1,393,3,393, + 7732,8,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,3,393,7761,8,393,1,394, + 1,394,1,394,1,394,1,394,1,394,3,394,7769,8,394,1,395,3,395,7772, + 8,395,1,395,3,395,7775,8,395,1,395,3,395,7778,8,395,1,395,3,395, + 7781,8,395,1,396,1,396,1,397,1,397,1,397,1,398,1,398,1,399,1,399, + 3,399,7792,8,399,1,400,1,400,1,400,1,400,1,400,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,3,401,7806,8,401,1,402,1,402,1,402,1,402, + 1,402,5,402,7813,8,402,10,402,12,402,7816,9,402,1,403,1,403,1,403, + 1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403, 1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,3,403, - 7889,8,403,1,403,1,403,1,403,1,403,3,403,7895,8,403,1,403,1,403, - 1,403,1,403,3,403,7901,8,403,1,403,1,403,1,403,1,403,1,403,1,403, - 1,403,1,403,1,403,1,403,1,403,1,403,1,403,3,403,7916,8,403,1,403, - 1,403,3,403,7920,8,403,1,403,1,403,1,403,1,403,3,403,7926,8,403, - 1,403,1,403,1,403,1,403,1,403,1,403,1,403,5,403,7935,8,403,10,403, - 12,403,7938,9,403,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404, - 1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,5,404,7956,8,404, - 10,404,12,404,7959,9,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404, - 4,404,7968,8,404,11,404,12,404,7969,1,404,1,404,1,404,1,404,1,404, - 1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404, - 3,404,7988,8,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404, - 1,404,1,404,1,404,1,404,1,404,1,404,1,404,5,404,8005,8,404,10,404, - 12,404,8008,9,404,1,405,1,405,1,406,1,406,1,406,1,406,1,406,1,406, - 1,406,1,406,3,406,8020,8,406,1,407,1,407,1,407,1,407,1,407,1,407, - 1,407,3,407,8029,8,407,1,408,1,408,1,408,1,408,1,408,1,408,1,408, - 3,408,8038,8,408,1,409,1,409,1,409,1,409,1,409,1,409,1,409,3,409, - 8047,8,409,1,410,1,410,1,411,1,411,1,411,1,411,1,411,3,411,8056, - 8,411,1,412,1,412,1,413,1,413,1,414,1,414,1,415,1,415,1,416,1,416, - 1,417,1,417,1,418,1,418,1,418,0,5,214,216,804,806,808,419,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,120,122,124,126, - 128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158, - 160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190, - 192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222, - 224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254, - 256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286, - 288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318, - 320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350, - 352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382, - 384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414, - 416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446, - 448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478, - 480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510, - 512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542, - 544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574, - 576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606, - 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, - 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, - 672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702, - 704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734, - 736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766, - 768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798, - 800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830, - 832,834,836,0,160,2,0,39,39,152,152,2,0,508,508,514,514,3,0,69,69, - 161,161,182,182,3,0,42,42,357,357,430,430,4,0,42,42,389,389,505, - 505,595,595,4,0,208,208,210,210,216,216,649,649,2,0,494,494,882, - 882,2,0,79,79,143,143,2,0,16,16,306,306,3,0,44,44,86,86,185,185, - 2,0,406,406,538,538,3,0,486,486,661,661,670,670,2,0,364,364,436, - 436,2,0,325,325,450,450,2,0,42,42,871,872,2,0,37,37,678,678,2,0, - 323,323,418,418,2,0,435,435,686,686,3,0,80,80,85,85,126,126,2,0, - 82,82,92,92,2,0,69,69,161,161,3,0,42,42,374,374,403,403,3,0,42,42, - 370,370,802,802,2,0,648,648,685,685,3,0,408,408,526,526,597,597, - 2,0,329,329,522,522,1,0,871,872,2,0,882,882,889,889,2,0,82,82,360, - 360,2,0,523,523,882,882,2,0,524,524,882,882,3,0,402,402,445,445, - 502,502,7,0,42,42,342,342,345,345,374,374,403,403,554,554,889,889, - 2,0,494,494,506,506,1,0,872,873,2,0,6,6,51,51,2,0,5,5,81,81,2,0, - 27,27,31,31,4,0,42,42,357,357,430,430,434,434,2,0,368,368,375,375, - 2,0,369,369,425,425,2,0,13,13,176,176,2,0,194,194,690,690,2,0,22, - 22,146,146,3,0,43,43,76,76,107,107,2,0,7,7,49,49,2,0,107,107,347, - 347,2,0,337,337,398,398,2,0,102,102,587,587,2,0,43,43,107,107,3, - 0,59,59,181,181,828,828,2,0,185,185,594,594,2,0,159,159,503,503, - 4,0,402,402,445,445,501,501,542,542,2,0,402,402,501,501,2,0,14,14, - 45,45,3,0,66,66,79,79,187,187,2,0,35,35,84,84,2,0,98,98,150,150, - 2,0,7,7,49,50,1,0,637,638,2,0,173,173,752,752,2,0,413,413,593,593, - 2,0,228,228,453,453,2,0,563,563,598,598,8,0,108,108,455,455,459, - 460,462,462,464,464,467,476,499,499,557,557,6,0,456,458,461,461, - 463,463,465,465,477,477,558,558,7,0,109,109,411,411,416,416,454, - 454,466,466,573,573,617,617,2,0,116,116,882,882,2,0,118,119,507, - 507,7,0,499,499,557,557,606,609,611,611,619,619,622,628,630,632, - 6,0,558,558,610,610,612,612,614,616,618,618,620,620,7,0,412,412, - 416,416,573,573,613,613,617,617,621,621,629,629,3,0,70,70,118,119, - 507,507,2,0,438,438,639,639,2,0,633,633,635,635,2,0,317,317,640, - 640,2,0,91,91,577,577,2,0,51,51,362,362,3,0,32,32,61,61,180,180, - 2,0,15,15,340,340,2,0,678,678,835,835,3,0,132,132,173,173,409,409, - 3,0,6,6,51,51,492,492,3,0,13,13,20,20,188,188,2,0,42,42,122,122, - 2,0,104,104,183,183,1,0,873,874,2,0,333,333,598,598,2,0,40,40,684, - 684,2,0,392,392,549,549,2,0,115,115,450,450,3,0,413,413,531,531, - 893,894,2,0,841,841,857,857,2,0,318,318,559,559,2,0,68,68,80,80, - 3,0,132,132,178,178,385,385,2,0,493,493,645,645,2,0,383,383,688, - 688,3,0,82,82,93,93,426,426,4,0,413,413,450,450,531,532,593,593, - 2,0,645,645,683,683,2,0,349,349,548,548,6,0,228,228,380,380,382, - 382,410,410,556,556,599,599,2,0,45,46,62,62,3,0,442,442,663,663, - 666,666,10,0,332,332,339,339,351,353,359,359,487,487,495,495,650, - 650,657,657,822,822,832,832,2,0,36,36,170,170,2,0,117,117,831,831, - 11,0,332,332,339,339,351,353,359,359,487,487,495,495,578,578,650, - 650,657,657,822,822,832,832,2,0,870,870,891,892,1,0,892,893,2,0, - 348,348,797,808,3,0,871,874,883,883,885,885,2,0,63,63,179,179,2, - 0,116,116,886,886,5,0,26,26,224,226,233,233,235,238,498,498,2,0, - 26,26,224,224,2,0,26,26,224,225,1,0,198,209,3,0,184,184,197,197, - 596,596,2,0,213,218,403,403,6,0,219,219,230,230,232,232,234,234, - 241,241,321,322,4,0,220,223,228,229,231,231,319,319,2,0,155,155, - 239,239,2,0,442,442,813,821,2,0,228,228,498,498,5,0,202,202,208, - 208,219,220,222,222,442,442,1,0,216,217,2,0,184,184,596,596,2,0, - 202,202,208,208,2,0,189,189,682,682,2,0,287,288,294,294,3,0,152, - 152,285,288,303,303,1,0,297,298,3,0,18,18,96,96,177,177,2,0,224, - 224,228,228,2,0,219,220,222,222,3,0,14,14,45,45,830,830,3,0,258, - 258,270,271,281,281,3,0,259,261,277,280,282,284,2,0,267,267,269, - 269,2,0,265,265,268,268,2,0,263,264,274,276,2,0,134,134,587,587, - 2,0,405,405,539,539,2,0,512,512,529,529,2,0,114,114,860,860,3,0, - 63,63,179,179,674,674,2,0,139,139,151,151,3,0,7,7,309,309,602,602, - 3,0,114,114,853,854,860,861,1,0,850,856,2,0,228,228,756,796,1,0, - 809,812,5,0,717,718,734,736,743,743,749,750,752,752,1,0,696,703, - 3,0,219,223,236,236,239,239,75,0,12,12,15,15,19,19,30,30,36,37,42, - 42,48,48,55,55,57,57,59,59,74,74,95,95,117,117,122,122,125,125,131, - 131,160,160,170,170,241,241,255,262,266,266,270,271,277,284,304, - 309,311,329,331,343,345,376,378,393,395,400,402,404,406,410,413, - 415,417,426,428,428,430,434,436,454,456,463,465,473,475,476,478, - 498,500,506,508,510,512,522,525,530,533,538,540,542,544,554,556, - 562,565,572,575,575,577,605,633,647,649,665,667,674,676,685,687, - 688,690,695,704,704,706,707,709,712,714,716,719,721,726,727,729, - 733,737,738,740,742,744,744,746,748,751,751,753,755,802,802,822, - 822,825,825,832,833,838,838,24,0,39,39,98,98,150,150,152,152,219, - 221,223,223,253,254,262,265,267,269,272,276,296,296,435,435,686, - 686,696,703,746,746,813,813,816,821,823,824,826,827,829,831,834, - 834,836,836,840,840,856,856,9440,0,841,1,0,0,0,2,851,1,0,0,0,4,860, - 1,0,0,0,6,862,1,0,0,0,8,904,1,0,0,0,10,923,1,0,0,0,12,934,1,0,0, - 0,14,950,1,0,0,0,16,955,1,0,0,0,18,967,1,0,0,0,20,1002,1,0,0,0,22, - 1012,1,0,0,0,24,1014,1,0,0,0,26,1026,1,0,0,0,28,1056,1,0,0,0,30, - 1092,1,0,0,0,32,1143,1,0,0,0,34,1172,1,0,0,0,36,1208,1,0,0,0,38, - 1222,1,0,0,0,40,1229,1,0,0,0,42,1326,1,0,0,0,44,1328,1,0,0,0,46, - 1365,1,0,0,0,48,1429,1,0,0,0,50,1454,1,0,0,0,52,1460,1,0,0,0,54, - 1482,1,0,0,0,56,1569,1,0,0,0,58,1576,1,0,0,0,60,1578,1,0,0,0,62, - 1583,1,0,0,0,64,1623,1,0,0,0,66,1629,1,0,0,0,68,1631,1,0,0,0,70, - 1652,1,0,0,0,72,1659,1,0,0,0,74,1661,1,0,0,0,76,1686,1,0,0,0,78, - 1689,1,0,0,0,80,1694,1,0,0,0,82,1720,1,0,0,0,84,1736,1,0,0,0,86, - 1738,1,0,0,0,88,1832,1,0,0,0,90,1835,1,0,0,0,92,1847,1,0,0,0,94, - 1851,1,0,0,0,96,1901,1,0,0,0,98,1903,1,0,0,0,100,1931,1,0,0,0,102, - 1941,1,0,0,0,104,2128,1,0,0,0,106,2130,1,0,0,0,108,2132,1,0,0,0, - 110,2135,1,0,0,0,112,2210,1,0,0,0,114,2233,1,0,0,0,116,2381,1,0, - 0,0,118,2386,1,0,0,0,120,2388,1,0,0,0,122,2398,1,0,0,0,124,2454, - 1,0,0,0,126,2474,1,0,0,0,128,2476,1,0,0,0,130,2511,1,0,0,0,132,2520, - 1,0,0,0,134,2527,1,0,0,0,136,2550,1,0,0,0,138,2559,1,0,0,0,140,2574, - 1,0,0,0,142,2596,1,0,0,0,144,2652,1,0,0,0,146,2948,1,0,0,0,148,3048, - 1,0,0,0,150,3050,1,0,0,0,152,3057,1,0,0,0,154,3064,1,0,0,0,156,3087, - 1,0,0,0,158,3097,1,0,0,0,160,3104,1,0,0,0,162,3111,1,0,0,0,164,3118, - 1,0,0,0,166,3127,1,0,0,0,168,3139,1,0,0,0,170,3152,1,0,0,0,172,3159, - 1,0,0,0,174,3175,1,0,0,0,176,3202,1,0,0,0,178,3204,1,0,0,0,180,3214, - 1,0,0,0,182,3218,1,0,0,0,184,3224,1,0,0,0,186,3236,1,0,0,0,188,3238, - 1,0,0,0,190,3245,1,0,0,0,192,3247,1,0,0,0,194,3296,1,0,0,0,196,3305, - 1,0,0,0,198,3307,1,0,0,0,200,3318,1,0,0,0,202,3324,1,0,0,0,204,3398, - 1,0,0,0,206,3461,1,0,0,0,208,3479,1,0,0,0,210,3563,1,0,0,0,212,3566, - 1,0,0,0,214,3578,1,0,0,0,216,3598,1,0,0,0,218,3626,1,0,0,0,220,3630, - 1,0,0,0,222,3632,1,0,0,0,224,3642,1,0,0,0,226,3662,1,0,0,0,228,3669, - 1,0,0,0,230,3671,1,0,0,0,232,3682,1,0,0,0,234,3691,1,0,0,0,236,3697, - 1,0,0,0,238,3720,1,0,0,0,240,3722,1,0,0,0,242,3758,1,0,0,0,244,3813, - 1,0,0,0,246,3822,1,0,0,0,248,3842,1,0,0,0,250,3854,1,0,0,0,252,3858, - 1,0,0,0,254,3869,1,0,0,0,256,3902,1,0,0,0,258,3923,1,0,0,0,260,3933, - 1,0,0,0,262,3937,1,0,0,0,264,3963,1,0,0,0,266,4010,1,0,0,0,268,4012, - 1,0,0,0,270,4016,1,0,0,0,272,4033,1,0,0,0,274,4084,1,0,0,0,276,4093, - 1,0,0,0,278,4103,1,0,0,0,280,4105,1,0,0,0,282,4138,1,0,0,0,284,4146, - 1,0,0,0,286,4163,1,0,0,0,288,4179,1,0,0,0,290,4216,1,0,0,0,292,4222, - 1,0,0,0,294,4231,1,0,0,0,296,4244,1,0,0,0,298,4248,1,0,0,0,300,4286, - 1,0,0,0,302,4324,1,0,0,0,304,4338,1,0,0,0,306,4346,1,0,0,0,308,4350, - 1,0,0,0,310,4356,1,0,0,0,312,4370,1,0,0,0,314,4373,1,0,0,0,316,4391, - 1,0,0,0,318,4395,1,0,0,0,320,4411,1,0,0,0,322,4413,1,0,0,0,324,4425, - 1,0,0,0,326,4429,1,0,0,0,328,4446,1,0,0,0,330,4463,1,0,0,0,332,4466, - 1,0,0,0,334,4476,1,0,0,0,336,4480,1,0,0,0,338,4490,1,0,0,0,340,4493, - 1,0,0,0,342,4498,1,0,0,0,344,4518,1,0,0,0,346,4520,1,0,0,0,348,4537, - 1,0,0,0,350,4546,1,0,0,0,352,4555,1,0,0,0,354,4557,1,0,0,0,356,4571, - 1,0,0,0,358,4585,1,0,0,0,360,4600,1,0,0,0,362,4609,1,0,0,0,364,4634, - 1,0,0,0,366,4649,1,0,0,0,368,4668,1,0,0,0,370,4698,1,0,0,0,372,4700, - 1,0,0,0,374,4702,1,0,0,0,376,4704,1,0,0,0,378,4719,1,0,0,0,380,4748, - 1,0,0,0,382,4750,1,0,0,0,384,4752,1,0,0,0,386,4754,1,0,0,0,388,4769, - 1,0,0,0,390,4771,1,0,0,0,392,4838,1,0,0,0,394,4840,1,0,0,0,396,4846, - 1,0,0,0,398,4873,1,0,0,0,400,4887,1,0,0,0,402,4898,1,0,0,0,404,4900, - 1,0,0,0,406,4906,1,0,0,0,408,4916,1,0,0,0,410,4920,1,0,0,0,412,4927, - 1,0,0,0,414,4931,1,0,0,0,416,4937,1,0,0,0,418,4944,1,0,0,0,420,4950, - 1,0,0,0,422,4956,1,0,0,0,424,4961,1,0,0,0,426,5006,1,0,0,0,428,5027, - 1,0,0,0,430,5052,1,0,0,0,432,5055,1,0,0,0,434,5061,1,0,0,0,436,5077, - 1,0,0,0,438,5092,1,0,0,0,440,5098,1,0,0,0,442,5128,1,0,0,0,444,5130, - 1,0,0,0,446,5137,1,0,0,0,448,5149,1,0,0,0,450,5155,1,0,0,0,452,5180, - 1,0,0,0,454,5184,1,0,0,0,456,5188,1,0,0,0,458,5199,1,0,0,0,460,5207, - 1,0,0,0,462,5270,1,0,0,0,464,5329,1,0,0,0,466,5431,1,0,0,0,468,5441, - 1,0,0,0,470,5443,1,0,0,0,472,5461,1,0,0,0,474,5485,1,0,0,0,476,5509, - 1,0,0,0,478,5516,1,0,0,0,480,5536,1,0,0,0,482,5545,1,0,0,0,484,5607, - 1,0,0,0,486,5609,1,0,0,0,488,5613,1,0,0,0,490,5647,1,0,0,0,492,5649, - 1,0,0,0,494,5652,1,0,0,0,496,5716,1,0,0,0,498,5735,1,0,0,0,500,5762, - 1,0,0,0,502,5766,1,0,0,0,504,5787,1,0,0,0,506,5797,1,0,0,0,508,5807, - 1,0,0,0,510,5847,1,0,0,0,512,5849,1,0,0,0,514,5852,1,0,0,0,516,5882, - 1,0,0,0,518,5884,1,0,0,0,520,5887,1,0,0,0,522,5987,1,0,0,0,524,6005, - 1,0,0,0,526,6007,1,0,0,0,528,6059,1,0,0,0,530,6061,1,0,0,0,532,6070, - 1,0,0,0,534,6076,1,0,0,0,536,6083,1,0,0,0,538,6098,1,0,0,0,540,6107, - 1,0,0,0,542,6109,1,0,0,0,544,6130,1,0,0,0,546,6135,1,0,0,0,548,6145, - 1,0,0,0,550,6151,1,0,0,0,552,6185,1,0,0,0,554,6239,1,0,0,0,556,6425, - 1,0,0,0,558,6437,1,0,0,0,560,6453,1,0,0,0,562,6459,1,0,0,0,564,6478, - 1,0,0,0,566,6491,1,0,0,0,568,6505,1,0,0,0,570,6507,1,0,0,0,572,6510, - 1,0,0,0,574,6534,1,0,0,0,576,6546,1,0,0,0,578,6552,1,0,0,0,580,6564, - 1,0,0,0,582,6578,1,0,0,0,584,6580,1,0,0,0,586,6588,1,0,0,0,588,6596, - 1,0,0,0,590,6598,1,0,0,0,592,6600,1,0,0,0,594,6640,1,0,0,0,596,6647, - 1,0,0,0,598,6649,1,0,0,0,600,6672,1,0,0,0,602,6678,1,0,0,0,604,6688, - 1,0,0,0,606,6697,1,0,0,0,608,6700,1,0,0,0,610,6703,1,0,0,0,612,6724, - 1,0,0,0,614,6745,1,0,0,0,616,6753,1,0,0,0,618,6765,1,0,0,0,620,6773, - 1,0,0,0,622,6811,1,0,0,0,624,6823,1,0,0,0,626,6825,1,0,0,0,628,6827, - 1,0,0,0,630,6829,1,0,0,0,632,6831,1,0,0,0,634,6833,1,0,0,0,636,6835, - 1,0,0,0,638,6837,1,0,0,0,640,6839,1,0,0,0,642,6847,1,0,0,0,644,6849, - 1,0,0,0,646,6851,1,0,0,0,648,6853,1,0,0,0,650,6855,1,0,0,0,652,6863, - 1,0,0,0,654,6865,1,0,0,0,656,6875,1,0,0,0,658,6891,1,0,0,0,660,6893, - 1,0,0,0,662,6916,1,0,0,0,664,6918,1,0,0,0,666,6920,1,0,0,0,668,6922, - 1,0,0,0,670,6924,1,0,0,0,672,6932,1,0,0,0,674,6942,1,0,0,0,676,6947, - 1,0,0,0,678,6951,1,0,0,0,680,6958,1,0,0,0,682,6960,1,0,0,0,684,6967, - 1,0,0,0,686,6969,1,0,0,0,688,6975,1,0,0,0,690,6977,1,0,0,0,692,6982, - 1,0,0,0,694,6984,1,0,0,0,696,6986,1,0,0,0,698,7004,1,0,0,0,700,7020, - 1,0,0,0,702,7022,1,0,0,0,704,7026,1,0,0,0,706,7037,1,0,0,0,708,7048, - 1,0,0,0,710,7054,1,0,0,0,712,7056,1,0,0,0,714,7060,1,0,0,0,716,7085, - 1,0,0,0,718,7087,1,0,0,0,720,7090,1,0,0,0,722,7095,1,0,0,0,724,7111, - 1,0,0,0,726,7239,1,0,0,0,728,7241,1,0,0,0,730,7274,1,0,0,0,732,7279, - 1,0,0,0,734,7283,1,0,0,0,736,7289,1,0,0,0,738,7297,1,0,0,0,740,7308, - 1,0,0,0,742,7316,1,0,0,0,744,7325,1,0,0,0,746,7338,1,0,0,0,748,7340, - 1,0,0,0,750,7348,1,0,0,0,752,7356,1,0,0,0,754,7390,1,0,0,0,756,7406, - 1,0,0,0,758,7408,1,0,0,0,760,7411,1,0,0,0,762,7415,1,0,0,0,764,7440, - 1,0,0,0,766,7621,1,0,0,0,768,7623,1,0,0,0,770,7642,1,0,0,0,772,7644, - 1,0,0,0,774,7707,1,0,0,0,776,7747,1,0,0,0,778,7749,1,0,0,0,780,7758, - 1,0,0,0,782,7769,1,0,0,0,784,7771,1,0,0,0,786,7774,1,0,0,0,788,7778, - 1,0,0,0,790,7780,1,0,0,0,792,7792,1,0,0,0,794,7794,1,0,0,0,796,7828, - 1,0,0,0,798,7830,1,0,0,0,800,7835,1,0,0,0,802,7846,1,0,0,0,804,7859, - 1,0,0,0,806,7870,1,0,0,0,808,7987,1,0,0,0,810,8009,1,0,0,0,812,8019, - 1,0,0,0,814,8028,1,0,0,0,816,8037,1,0,0,0,818,8046,1,0,0,0,820,8048, - 1,0,0,0,822,8055,1,0,0,0,824,8057,1,0,0,0,826,8059,1,0,0,0,828,8061, - 1,0,0,0,830,8063,1,0,0,0,832,8065,1,0,0,0,834,8067,1,0,0,0,836,8069, - 1,0,0,0,838,840,3,2,1,0,839,838,1,0,0,0,840,843,1,0,0,0,841,839, - 1,0,0,0,841,842,1,0,0,0,842,844,1,0,0,0,843,841,1,0,0,0,844,845, - 5,0,0,1,845,1,1,0,0,0,846,848,3,4,2,0,847,849,5,869,0,0,848,847, - 1,0,0,0,848,849,1,0,0,0,849,852,1,0,0,0,850,852,3,6,3,0,851,846, - 1,0,0,0,851,850,1,0,0,0,852,3,1,0,0,0,853,861,3,8,4,0,854,861,3, - 10,5,0,855,861,3,12,6,0,856,861,3,14,7,0,857,861,3,16,8,0,858,861, - 3,20,10,0,859,861,3,22,11,0,860,853,1,0,0,0,860,854,1,0,0,0,860, - 855,1,0,0,0,860,856,1,0,0,0,860,857,1,0,0,0,860,858,1,0,0,0,860, - 859,1,0,0,0,861,5,1,0,0,0,862,863,5,869,0,0,863,7,1,0,0,0,864,905, - 3,24,12,0,865,905,3,26,13,0,866,905,3,28,14,0,867,905,3,30,15,0, - 868,905,3,32,16,0,869,905,3,34,17,0,870,905,3,36,18,0,871,905,3, - 40,20,0,872,905,3,42,21,0,873,905,3,44,22,0,874,905,3,46,23,0,875, - 905,3,48,24,0,876,905,3,54,27,0,877,905,3,38,19,0,878,905,3,126, - 63,0,879,905,3,128,64,0,880,905,3,130,65,0,881,905,3,132,66,0,882, - 905,3,134,67,0,883,905,3,136,68,0,884,905,3,138,69,0,885,905,3,140, - 70,0,886,905,3,142,71,0,887,905,3,144,72,0,888,905,3,150,75,0,889, - 905,3,152,76,0,890,905,3,154,77,0,891,905,3,156,78,0,892,905,3,158, - 79,0,893,905,3,160,80,0,894,905,3,162,81,0,895,905,3,164,82,0,896, - 905,3,166,83,0,897,905,3,168,84,0,898,905,3,170,85,0,899,905,3,172, - 86,0,900,905,3,174,87,0,901,905,3,176,88,0,902,905,3,178,89,0,903, - 905,3,182,91,0,904,864,1,0,0,0,904,865,1,0,0,0,904,866,1,0,0,0,904, - 867,1,0,0,0,904,868,1,0,0,0,904,869,1,0,0,0,904,870,1,0,0,0,904, - 871,1,0,0,0,904,872,1,0,0,0,904,873,1,0,0,0,904,874,1,0,0,0,904, - 875,1,0,0,0,904,876,1,0,0,0,904,877,1,0,0,0,904,878,1,0,0,0,904, - 879,1,0,0,0,904,880,1,0,0,0,904,881,1,0,0,0,904,882,1,0,0,0,904, - 883,1,0,0,0,904,884,1,0,0,0,904,885,1,0,0,0,904,886,1,0,0,0,904, - 887,1,0,0,0,904,888,1,0,0,0,904,889,1,0,0,0,904,890,1,0,0,0,904, - 891,1,0,0,0,904,892,1,0,0,0,904,893,1,0,0,0,904,894,1,0,0,0,904, - 895,1,0,0,0,904,896,1,0,0,0,904,897,1,0,0,0,904,898,1,0,0,0,904, - 899,1,0,0,0,904,900,1,0,0,0,904,901,1,0,0,0,904,902,1,0,0,0,904, - 903,1,0,0,0,905,9,1,0,0,0,906,924,3,210,105,0,907,924,3,212,106, - 0,908,924,3,192,96,0,909,924,3,220,110,0,910,924,3,186,93,0,911, - 924,3,208,104,0,912,924,3,184,92,0,913,924,3,198,99,0,914,924,3, - 202,101,0,915,924,3,204,102,0,916,924,3,206,103,0,917,924,3,188, - 94,0,918,924,3,190,95,0,919,924,3,252,126,0,920,924,3,222,111,0, - 921,924,3,616,308,0,922,924,3,618,309,0,923,906,1,0,0,0,923,907, - 1,0,0,0,923,908,1,0,0,0,923,909,1,0,0,0,923,910,1,0,0,0,923,911, - 1,0,0,0,923,912,1,0,0,0,923,913,1,0,0,0,923,914,1,0,0,0,923,915, - 1,0,0,0,923,916,1,0,0,0,923,917,1,0,0,0,923,918,1,0,0,0,923,919, - 1,0,0,0,923,920,1,0,0,0,923,921,1,0,0,0,923,922,1,0,0,0,924,11,1, - 0,0,0,925,935,3,322,161,0,926,935,3,324,162,0,927,935,3,326,163, - 0,928,935,3,328,164,0,929,935,3,330,165,0,930,935,3,332,166,0,931, - 935,3,334,167,0,932,935,3,336,168,0,933,935,3,338,169,0,934,925, - 1,0,0,0,934,926,1,0,0,0,934,927,1,0,0,0,934,928,1,0,0,0,934,929, - 1,0,0,0,934,930,1,0,0,0,934,931,1,0,0,0,934,932,1,0,0,0,934,933, - 1,0,0,0,935,13,1,0,0,0,936,951,3,354,177,0,937,951,3,356,178,0,938, - 951,3,358,179,0,939,951,3,360,180,0,940,951,3,362,181,0,941,951, - 3,364,182,0,942,951,3,366,183,0,943,951,3,368,184,0,944,951,3,404, - 202,0,945,951,3,406,203,0,946,951,3,408,204,0,947,951,3,410,205, - 0,948,951,3,412,206,0,949,951,3,414,207,0,950,936,1,0,0,0,950,937, - 1,0,0,0,950,938,1,0,0,0,950,939,1,0,0,0,950,940,1,0,0,0,950,941, - 1,0,0,0,950,942,1,0,0,0,950,943,1,0,0,0,950,944,1,0,0,0,950,945, - 1,0,0,0,950,946,1,0,0,0,950,947,1,0,0,0,950,948,1,0,0,0,950,949, - 1,0,0,0,951,15,1,0,0,0,952,956,3,416,208,0,953,956,3,418,209,0,954, - 956,3,420,210,0,955,952,1,0,0,0,955,953,1,0,0,0,955,954,1,0,0,0, - 956,17,1,0,0,0,957,968,3,424,212,0,958,968,3,426,213,0,959,968,3, - 428,214,0,960,968,3,432,216,0,961,968,3,434,217,0,962,968,3,436, - 218,0,963,968,3,440,220,0,964,968,3,430,215,0,965,968,3,438,219, - 0,966,968,3,442,221,0,967,957,1,0,0,0,967,958,1,0,0,0,967,959,1, - 0,0,0,967,960,1,0,0,0,967,961,1,0,0,0,967,962,1,0,0,0,967,963,1, - 0,0,0,967,964,1,0,0,0,967,965,1,0,0,0,967,966,1,0,0,0,968,19,1,0, - 0,0,969,1003,3,460,230,0,970,1003,3,462,231,0,971,1003,3,464,232, - 0,972,1003,3,466,233,0,973,1003,3,470,235,0,974,1003,3,482,241,0, - 975,1003,3,484,242,0,976,1003,3,472,236,0,977,1003,3,474,237,0,978, - 1003,3,476,238,0,979,1003,3,478,239,0,980,1003,3,528,264,0,981,1003, - 3,530,265,0,982,1003,3,532,266,0,983,1003,3,534,267,0,984,1003,3, - 536,268,0,985,1003,3,542,271,0,986,1003,3,546,273,0,987,1003,3,548, - 274,0,988,1003,3,550,275,0,989,1003,3,552,276,0,990,1003,3,554,277, - 0,991,1003,3,556,278,0,992,1003,3,570,285,0,993,1003,3,572,286,0, - 994,1003,3,574,287,0,995,1003,3,576,288,0,996,1003,3,578,289,0,997, - 1003,3,580,290,0,998,1003,3,584,292,0,999,1003,3,586,293,0,1000, - 1003,3,588,294,0,1001,1003,3,590,295,0,1002,969,1,0,0,0,1002,970, - 1,0,0,0,1002,971,1,0,0,0,1002,972,1,0,0,0,1002,973,1,0,0,0,1002, - 974,1,0,0,0,1002,975,1,0,0,0,1002,976,1,0,0,0,1002,977,1,0,0,0,1002, - 978,1,0,0,0,1002,979,1,0,0,0,1002,980,1,0,0,0,1002,981,1,0,0,0,1002, - 982,1,0,0,0,1002,983,1,0,0,0,1002,984,1,0,0,0,1002,985,1,0,0,0,1002, - 986,1,0,0,0,1002,987,1,0,0,0,1002,988,1,0,0,0,1002,989,1,0,0,0,1002, - 990,1,0,0,0,1002,991,1,0,0,0,1002,992,1,0,0,0,1002,993,1,0,0,0,1002, - 994,1,0,0,0,1002,995,1,0,0,0,1002,996,1,0,0,0,1002,997,1,0,0,0,1002, - 998,1,0,0,0,1002,999,1,0,0,0,1002,1000,1,0,0,0,1002,1001,1,0,0,0, - 1003,21,1,0,0,0,1004,1013,3,602,301,0,1005,1013,3,600,300,0,1006, - 1013,3,604,302,0,1007,1013,3,606,303,0,1008,1013,3,608,304,0,1009, - 1013,3,610,305,0,1010,1013,3,612,306,0,1011,1013,3,620,310,0,1012, - 1004,1,0,0,0,1012,1005,1,0,0,0,1012,1006,1,0,0,0,1012,1007,1,0,0, - 0,1012,1008,1,0,0,0,1012,1009,1,0,0,0,1012,1010,1,0,0,0,1012,1011, - 1,0,0,0,1013,23,1,0,0,0,1014,1015,5,34,0,0,1015,1017,7,0,0,0,1016, - 1018,3,760,380,0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1, - 0,0,0,1019,1023,3,626,313,0,1020,1022,3,56,28,0,1021,1020,1,0,0, - 0,1022,1025,1,0,0,0,1023,1021,1,0,0,0,1023,1024,1,0,0,0,1024,25, - 1,0,0,0,1025,1023,1,0,0,0,1026,1028,5,34,0,0,1027,1029,3,62,31,0, - 1028,1027,1,0,0,0,1028,1029,1,0,0,0,1029,1030,1,0,0,0,1030,1032, - 5,385,0,0,1031,1033,3,760,380,0,1032,1031,1,0,0,0,1032,1033,1,0, - 0,0,1033,1034,1,0,0,0,1034,1035,3,702,351,0,1035,1036,5,119,0,0, - 1036,1037,5,590,0,0,1037,1044,3,64,32,0,1038,1039,5,119,0,0,1039, - 1041,5,343,0,0,1040,1042,5,114,0,0,1041,1040,1,0,0,0,1041,1042,1, - 0,0,0,1042,1043,1,0,0,0,1043,1045,5,541,0,0,1044,1038,1,0,0,0,1044, - 1045,1,0,0,0,1045,1047,1,0,0,0,1046,1048,3,72,36,0,1047,1046,1,0, - 0,0,1047,1048,1,0,0,0,1048,1051,1,0,0,0,1049,1050,5,340,0,0,1050, - 1052,5,882,0,0,1051,1049,1,0,0,0,1051,1052,1,0,0,0,1052,1053,1,0, - 0,0,1053,1054,5,371,0,0,1054,1055,3,422,211,0,1055,27,1,0,0,0,1056, - 1058,5,34,0,0,1057,1059,7,1,0,0,1058,1057,1,0,0,0,1058,1059,1,0, - 0,0,1059,1061,1,0,0,0,1060,1062,7,2,0,0,1061,1060,1,0,0,0,1061,1062, - 1,0,0,0,1062,1063,1,0,0,0,1063,1064,5,82,0,0,1064,1066,3,638,319, - 0,1065,1067,3,74,37,0,1066,1065,1,0,0,0,1066,1067,1,0,0,0,1067,1068, - 1,0,0,0,1068,1069,5,119,0,0,1069,1070,3,652,326,0,1070,1074,3,738, - 369,0,1071,1073,3,76,38,0,1072,1071,1,0,0,0,1073,1076,1,0,0,0,1074, - 1072,1,0,0,0,1074,1075,1,0,0,0,1075,1089,1,0,0,0,1076,1074,1,0,0, - 0,1077,1079,5,308,0,0,1078,1080,5,857,0,0,1079,1078,1,0,0,0,1079, - 1080,1,0,0,0,1080,1081,1,0,0,0,1081,1088,7,3,0,0,1082,1084,5,104, - 0,0,1083,1085,5,857,0,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085, - 1086,1,0,0,0,1086,1088,7,4,0,0,1087,1077,1,0,0,0,1087,1082,1,0,0, - 0,1088,1091,1,0,0,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,29, - 1,0,0,0,1091,1089,1,0,0,0,1092,1093,5,34,0,0,1093,1094,5,451,0,0, - 1094,1095,5,74,0,0,1095,1096,3,706,353,0,1096,1097,5,6,0,0,1097, - 1098,5,671,0,0,1098,1104,5,882,0,0,1099,1101,5,428,0,0,1100,1102, - 5,857,0,0,1101,1100,1,0,0,0,1101,1102,1,0,0,0,1102,1103,1,0,0,0, - 1103,1105,3,714,357,0,1104,1099,1,0,0,0,1104,1105,1,0,0,0,1105,1111, - 1,0,0,0,1106,1108,5,672,0,0,1107,1109,5,857,0,0,1108,1107,1,0,0, - 0,1108,1109,1,0,0,0,1109,1110,1,0,0,0,1110,1112,3,714,357,0,1111, - 1106,1,0,0,0,1111,1112,1,0,0,0,1112,1118,1,0,0,0,1113,1115,5,553, - 0,0,1114,1116,5,857,0,0,1115,1114,1,0,0,0,1115,1116,1,0,0,0,1116, - 1117,1,0,0,0,1117,1119,3,714,357,0,1118,1113,1,0,0,0,1118,1119,1, - 0,0,0,1119,1125,1,0,0,0,1120,1122,5,504,0,0,1121,1123,5,857,0,0, - 1122,1121,1,0,0,0,1122,1123,1,0,0,0,1123,1124,1,0,0,0,1124,1126, - 3,706,353,0,1125,1120,1,0,0,0,1125,1126,1,0,0,0,1126,1128,1,0,0, - 0,1127,1129,5,687,0,0,1128,1127,1,0,0,0,1128,1129,1,0,0,0,1129,1135, - 1,0,0,0,1130,1132,5,340,0,0,1131,1133,5,857,0,0,1132,1131,1,0,0, - 0,1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1136,5,882,0,0,1135,1130, - 1,0,0,0,1135,1136,1,0,0,0,1136,1137,1,0,0,0,1137,1139,5,380,0,0, - 1138,1140,5,857,0,0,1139,1138,1,0,0,0,1139,1140,1,0,0,0,1140,1141, - 1,0,0,0,1141,1142,3,692,346,0,1142,31,1,0,0,0,1143,1145,5,34,0,0, - 1144,1146,3,62,31,0,1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,1147, - 1,0,0,0,1147,1149,5,132,0,0,1148,1150,3,760,380,0,1149,1148,1,0, - 0,0,1149,1150,1,0,0,0,1150,1151,1,0,0,0,1151,1152,3,702,351,0,1152, - 1154,5,866,0,0,1153,1155,3,78,39,0,1154,1153,1,0,0,0,1154,1155,1, - 0,0,0,1155,1160,1,0,0,0,1156,1157,5,868,0,0,1157,1159,3,78,39,0, - 1158,1156,1,0,0,0,1159,1162,1,0,0,0,1160,1158,1,0,0,0,1160,1161, - 1,0,0,0,1161,1163,1,0,0,0,1162,1160,1,0,0,0,1163,1167,5,867,0,0, - 1164,1166,3,82,41,0,1165,1164,1,0,0,0,1166,1169,1,0,0,0,1167,1165, - 1,0,0,0,1167,1168,1,0,0,0,1168,1170,1,0,0,0,1169,1167,1,0,0,0,1170, - 1171,3,422,211,0,1171,33,1,0,0,0,1172,1174,5,34,0,0,1173,1175,3, - 62,31,0,1174,1173,1,0,0,0,1174,1175,1,0,0,0,1175,1177,1,0,0,0,1176, - 1178,5,307,0,0,1177,1176,1,0,0,0,1177,1178,1,0,0,0,1178,1179,1,0, - 0,0,1179,1181,5,409,0,0,1180,1182,3,760,380,0,1181,1180,1,0,0,0, - 1181,1182,1,0,0,0,1182,1183,1,0,0,0,1183,1184,3,630,315,0,1184,1186, - 5,866,0,0,1185,1187,3,80,40,0,1186,1185,1,0,0,0,1186,1187,1,0,0, - 0,1187,1192,1,0,0,0,1188,1189,5,868,0,0,1189,1191,3,80,40,0,1190, - 1188,1,0,0,0,1191,1194,1,0,0,0,1192,1190,1,0,0,0,1192,1193,1,0,0, - 0,1193,1195,1,0,0,0,1194,1192,1,0,0,0,1195,1196,5,867,0,0,1196,1197, - 5,580,0,0,1197,1201,3,726,363,0,1198,1200,3,82,41,0,1199,1198,1, - 0,0,0,1200,1203,1,0,0,0,1201,1199,1,0,0,0,1201,1202,1,0,0,0,1202, - 1206,1,0,0,0,1203,1201,1,0,0,0,1204,1207,3,422,211,0,1205,1207,3, - 438,219,0,1206,1204,1,0,0,0,1206,1205,1,0,0,0,1207,35,1,0,0,0,1208, - 1210,5,34,0,0,1209,1211,5,307,0,0,1210,1209,1,0,0,0,1210,1211,1, - 0,0,0,1211,1212,1,0,0,0,1212,1214,5,409,0,0,1213,1215,3,760,380, - 0,1214,1213,1,0,0,0,1214,1215,1,0,0,0,1215,1216,1,0,0,0,1216,1217, - 3,630,315,0,1217,1218,5,580,0,0,1218,1219,7,5,0,0,1219,1220,5,603, - 0,0,1220,1221,5,882,0,0,1221,37,1,0,0,0,1222,1223,5,34,0,0,1223, - 1225,5,582,0,0,1224,1226,3,760,380,0,1225,1224,1,0,0,0,1225,1226, - 1,0,0,0,1226,1227,1,0,0,0,1227,1228,3,654,327,0,1228,39,1,0,0,0, - 1229,1230,5,34,0,0,1230,1231,5,592,0,0,1231,1232,3,706,353,0,1232, - 1233,5,67,0,0,1233,1234,5,360,0,0,1234,1235,5,692,0,0,1235,1236, - 7,6,0,0,1236,1237,5,518,0,0,1237,1238,5,866,0,0,1238,1243,3,84,42, - 0,1239,1240,5,868,0,0,1240,1242,3,84,42,0,1241,1239,1,0,0,0,1242, - 1245,1,0,0,0,1243,1241,1,0,0,0,1243,1244,1,0,0,0,1244,1246,1,0,0, - 0,1245,1243,1,0,0,0,1246,1247,5,867,0,0,1247,41,1,0,0,0,1248,1250, - 5,34,0,0,1249,1251,5,660,0,0,1250,1249,1,0,0,0,1250,1251,1,0,0,0, - 1251,1252,1,0,0,0,1252,1254,5,173,0,0,1253,1255,3,760,380,0,1254, - 1253,1,0,0,0,1254,1255,1,0,0,0,1255,1256,1,0,0,0,1256,1258,3,648, - 324,0,1257,1259,3,86,43,0,1258,1257,1,0,0,0,1258,1259,1,0,0,0,1259, - 1270,1,0,0,0,1260,1267,3,104,52,0,1261,1263,5,868,0,0,1262,1261, - 1,0,0,0,1262,1263,1,0,0,0,1263,1264,1,0,0,0,1264,1266,3,104,52,0, - 1265,1262,1,0,0,0,1266,1269,1,0,0,0,1267,1265,1,0,0,0,1267,1268, - 1,0,0,0,1268,1271,1,0,0,0,1269,1267,1,0,0,0,1270,1260,1,0,0,0,1270, - 1271,1,0,0,0,1271,1273,1,0,0,0,1272,1274,3,110,55,0,1273,1272,1, - 0,0,0,1273,1274,1,0,0,0,1274,1276,1,0,0,0,1275,1277,7,7,0,0,1276, - 1275,1,0,0,0,1276,1277,1,0,0,0,1277,1279,1,0,0,0,1278,1280,5,13, - 0,0,1279,1278,1,0,0,0,1279,1280,1,0,0,0,1280,1281,1,0,0,0,1281,1282, - 3,210,105,0,1282,1327,1,0,0,0,1283,1285,5,34,0,0,1284,1286,5,660, - 0,0,1285,1284,1,0,0,0,1285,1286,1,0,0,0,1286,1287,1,0,0,0,1287,1289, - 5,173,0,0,1288,1290,3,760,380,0,1289,1288,1,0,0,0,1289,1290,1,0, - 0,0,1290,1291,1,0,0,0,1291,1299,3,648,324,0,1292,1293,5,99,0,0,1293, - 1300,3,652,326,0,1294,1295,5,866,0,0,1295,1296,5,99,0,0,1296,1297, - 3,652,326,0,1297,1298,5,867,0,0,1298,1300,1,0,0,0,1299,1292,1,0, - 0,0,1299,1294,1,0,0,0,1300,1327,1,0,0,0,1301,1303,5,34,0,0,1302, - 1304,5,660,0,0,1303,1302,1,0,0,0,1303,1304,1,0,0,0,1304,1305,1,0, - 0,0,1305,1307,5,173,0,0,1306,1308,3,760,380,0,1307,1306,1,0,0,0, - 1307,1308,1,0,0,0,1308,1309,1,0,0,0,1309,1310,3,648,324,0,1310,1321, - 3,86,43,0,1311,1318,3,104,52,0,1312,1314,5,868,0,0,1313,1312,1,0, - 0,0,1313,1314,1,0,0,0,1314,1315,1,0,0,0,1315,1317,3,104,52,0,1316, - 1313,1,0,0,0,1317,1320,1,0,0,0,1318,1316,1,0,0,0,1318,1319,1,0,0, - 0,1319,1322,1,0,0,0,1320,1318,1,0,0,0,1321,1311,1,0,0,0,1321,1322, - 1,0,0,0,1322,1324,1,0,0,0,1323,1325,3,110,55,0,1324,1323,1,0,0,0, - 1324,1325,1,0,0,0,1325,1327,1,0,0,0,1326,1248,1,0,0,0,1326,1283, - 1,0,0,0,1326,1301,1,0,0,0,1327,43,1,0,0,0,1328,1330,5,34,0,0,1329, - 1331,5,180,0,0,1330,1329,1,0,0,0,1330,1331,1,0,0,0,1331,1332,1,0, - 0,0,1332,1333,5,658,0,0,1333,1337,3,664,332,0,1334,1335,5,6,0,0, - 1335,1336,5,361,0,0,1336,1338,5,882,0,0,1337,1334,1,0,0,0,1337,1338, - 1,0,0,0,1338,1344,1,0,0,0,1339,1341,5,314,0,0,1340,1342,5,857,0, - 0,1341,1340,1,0,0,0,1341,1342,1,0,0,0,1342,1343,1,0,0,0,1343,1345, - 3,714,357,0,1344,1339,1,0,0,0,1344,1345,1,0,0,0,1345,1349,1,0,0, - 0,1346,1347,5,399,0,0,1347,1348,5,857,0,0,1348,1350,3,714,357,0, - 1349,1346,1,0,0,0,1349,1350,1,0,0,0,1350,1356,1,0,0,0,1351,1353, - 5,380,0,0,1352,1354,5,857,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0, - 0,1354,1355,1,0,0,0,1355,1357,3,692,346,0,1356,1351,1,0,0,0,1356, - 1357,1,0,0,0,1357,1363,1,0,0,0,1358,1360,5,825,0,0,1359,1361,5,857, - 0,0,1360,1359,1,0,0,0,1360,1361,1,0,0,0,1361,1362,1,0,0,0,1362,1364, - 5,882,0,0,1363,1358,1,0,0,0,1363,1364,1,0,0,0,1364,45,1,0,0,0,1365, - 1367,5,34,0,0,1366,1368,5,180,0,0,1367,1366,1,0,0,0,1367,1368,1, - 0,0,0,1368,1369,1,0,0,0,1369,1370,5,658,0,0,1370,1371,3,664,332, - 0,1371,1372,5,6,0,0,1372,1373,5,361,0,0,1373,1374,5,882,0,0,1374, - 1375,5,187,0,0,1375,1376,5,451,0,0,1376,1377,5,74,0,0,1377,1383, - 3,706,353,0,1378,1380,5,393,0,0,1379,1381,5,857,0,0,1380,1379,1, - 0,0,0,1380,1381,1,0,0,0,1381,1382,1,0,0,0,1382,1384,3,714,357,0, - 1383,1378,1,0,0,0,1383,1384,1,0,0,0,1384,1390,1,0,0,0,1385,1387, - 5,428,0,0,1386,1388,5,857,0,0,1387,1386,1,0,0,0,1387,1388,1,0,0, - 0,1388,1389,1,0,0,0,1389,1391,3,714,357,0,1390,1385,1,0,0,0,1390, - 1391,1,0,0,0,1391,1397,1,0,0,0,1392,1394,5,314,0,0,1393,1395,5,857, - 0,0,1394,1393,1,0,0,0,1394,1395,1,0,0,0,1395,1396,1,0,0,0,1396,1398, - 3,714,357,0,1397,1392,1,0,0,0,1397,1398,1,0,0,0,1398,1404,1,0,0, - 0,1399,1401,5,481,0,0,1400,1402,5,857,0,0,1401,1400,1,0,0,0,1401, - 1402,1,0,0,0,1402,1403,1,0,0,0,1403,1405,3,714,357,0,1404,1399,1, - 0,0,0,1404,1405,1,0,0,0,1405,1411,1,0,0,0,1406,1408,5,504,0,0,1407, - 1409,5,857,0,0,1408,1407,1,0,0,0,1408,1409,1,0,0,0,1409,1410,1,0, - 0,0,1410,1412,3,706,353,0,1411,1406,1,0,0,0,1411,1412,1,0,0,0,1412, - 1414,1,0,0,0,1413,1415,5,687,0,0,1414,1413,1,0,0,0,1414,1415,1,0, - 0,0,1415,1421,1,0,0,0,1416,1418,5,340,0,0,1417,1419,5,857,0,0,1418, - 1417,1,0,0,0,1418,1419,1,0,0,0,1419,1420,1,0,0,0,1420,1422,5,882, - 0,0,1421,1416,1,0,0,0,1421,1422,1,0,0,0,1422,1423,1,0,0,0,1423,1425, - 5,380,0,0,1424,1426,5,857,0,0,1425,1424,1,0,0,0,1425,1426,1,0,0, - 0,1426,1427,1,0,0,0,1427,1428,3,692,346,0,1428,47,1,0,0,0,1429,1431, - 5,34,0,0,1430,1432,3,62,31,0,1431,1430,1,0,0,0,1431,1432,1,0,0,0, - 1432,1434,1,0,0,0,1433,1435,3,760,380,0,1434,1433,1,0,0,0,1434,1435, - 1,0,0,0,1435,1436,1,0,0,0,1436,1438,5,178,0,0,1437,1439,3,760,380, - 0,1438,1437,1,0,0,0,1438,1439,1,0,0,0,1439,1440,1,0,0,0,1440,1441, - 3,702,351,0,1441,1442,7,8,0,0,1442,1443,7,9,0,0,1443,1444,5,119, - 0,0,1444,1445,3,652,326,0,1445,1446,5,65,0,0,1446,1447,5,52,0,0, - 1447,1450,5,586,0,0,1448,1449,7,10,0,0,1449,1451,3,702,351,0,1450, - 1448,1,0,0,0,1450,1451,1,0,0,0,1451,1452,1,0,0,0,1452,1453,3,422, - 211,0,1453,49,1,0,0,0,1454,1456,5,194,0,0,1455,1457,5,552,0,0,1456, - 1455,1,0,0,0,1456,1457,1,0,0,0,1457,1458,1,0,0,0,1458,1459,3,52, - 26,0,1459,51,1,0,0,0,1460,1472,3,706,353,0,1461,1462,5,866,0,0,1462, - 1467,3,706,353,0,1463,1464,5,868,0,0,1464,1466,3,706,353,0,1465, - 1463,1,0,0,0,1466,1469,1,0,0,0,1467,1465,1,0,0,0,1467,1468,1,0,0, - 0,1468,1470,1,0,0,0,1469,1467,1,0,0,0,1470,1471,5,867,0,0,1471,1473, - 1,0,0,0,1472,1461,1,0,0,0,1472,1473,1,0,0,0,1473,1474,1,0,0,0,1474, - 1475,5,13,0,0,1475,1476,5,866,0,0,1476,1477,3,10,5,0,1477,1480,5, - 867,0,0,1478,1479,5,868,0,0,1479,1481,3,52,26,0,1480,1478,1,0,0, - 0,1480,1481,1,0,0,0,1481,53,1,0,0,0,1482,1484,5,34,0,0,1483,1485, - 3,762,381,0,1484,1483,1,0,0,0,1484,1485,1,0,0,0,1485,1489,1,0,0, - 0,1486,1487,5,308,0,0,1487,1488,5,857,0,0,1488,1490,7,11,0,0,1489, - 1486,1,0,0,0,1489,1490,1,0,0,0,1490,1492,1,0,0,0,1491,1493,3,62, - 31,0,1492,1491,1,0,0,0,1492,1493,1,0,0,0,1493,1497,1,0,0,0,1494, - 1495,5,162,0,0,1495,1496,5,591,0,0,1496,1498,7,12,0,0,1497,1494, - 1,0,0,0,1497,1498,1,0,0,0,1498,1499,1,0,0,0,1499,1500,5,684,0,0, - 1500,1512,3,634,317,0,1501,1502,5,866,0,0,1502,1507,3,658,329,0, - 1503,1504,5,868,0,0,1504,1506,3,658,329,0,1505,1503,1,0,0,0,1506, - 1509,1,0,0,0,1507,1505,1,0,0,0,1507,1508,1,0,0,0,1508,1510,1,0,0, - 0,1509,1507,1,0,0,0,1510,1511,5,867,0,0,1511,1513,1,0,0,0,1512,1501, - 1,0,0,0,1512,1513,1,0,0,0,1513,1514,1,0,0,0,1514,1534,5,13,0,0,1515, - 1517,5,866,0,0,1516,1518,3,50,25,0,1517,1516,1,0,0,0,1517,1518,1, - 0,0,0,1518,1519,1,0,0,0,1519,1520,3,210,105,0,1520,1521,5,867,0, - 0,1521,1535,1,0,0,0,1522,1524,3,50,25,0,1523,1522,1,0,0,0,1523,1524, - 1,0,0,0,1524,1525,1,0,0,0,1525,1532,3,210,105,0,1526,1528,5,194, - 0,0,1527,1529,7,13,0,0,1528,1527,1,0,0,0,1528,1529,1,0,0,0,1529, - 1530,1,0,0,0,1530,1531,5,27,0,0,1531,1533,5,121,0,0,1532,1526,1, - 0,0,0,1532,1533,1,0,0,0,1533,1535,1,0,0,0,1534,1515,1,0,0,0,1534, - 1523,1,0,0,0,1535,55,1,0,0,0,1536,1538,5,42,0,0,1537,1536,1,0,0, - 0,1537,1538,1,0,0,0,1538,1539,1,0,0,0,1539,1541,3,58,29,0,1540,1542, - 5,857,0,0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542,1545,1,0,0,0, - 1543,1546,3,688,344,0,1544,1546,5,42,0,0,1545,1543,1,0,0,0,1545, - 1544,1,0,0,0,1546,1570,1,0,0,0,1547,1549,5,42,0,0,1548,1547,1,0, - 0,0,1548,1549,1,0,0,0,1549,1550,1,0,0,0,1550,1552,5,28,0,0,1551, - 1553,5,857,0,0,1552,1551,1,0,0,0,1552,1553,1,0,0,0,1553,1554,1,0, - 0,0,1554,1570,3,690,345,0,1555,1557,5,42,0,0,1556,1555,1,0,0,0,1556, - 1557,1,0,0,0,1557,1558,1,0,0,0,1558,1560,5,376,0,0,1559,1561,5,857, - 0,0,1560,1559,1,0,0,0,1560,1561,1,0,0,0,1561,1562,1,0,0,0,1562,1570, - 5,882,0,0,1563,1564,5,135,0,0,1564,1566,5,515,0,0,1565,1567,5,857, - 0,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567,1568,1,0,0,0,1568,1570, - 7,14,0,0,1569,1537,1,0,0,0,1569,1548,1,0,0,0,1569,1556,1,0,0,0,1569, - 1563,1,0,0,0,1570,57,1,0,0,0,1571,1572,5,26,0,0,1572,1577,5,155, - 0,0,1573,1577,5,823,0,0,1574,1575,5,224,0,0,1575,1577,5,155,0,0, - 1576,1571,1,0,0,0,1576,1573,1,0,0,0,1576,1574,1,0,0,0,1577,59,1, - 0,0,0,1578,1581,7,15,0,0,1579,1580,5,866,0,0,1580,1582,5,867,0,0, - 1581,1579,1,0,0,0,1581,1582,1,0,0,0,1582,61,1,0,0,0,1583,1584,5, - 364,0,0,1584,1587,5,857,0,0,1585,1588,3,684,342,0,1586,1588,3,60, - 30,0,1587,1585,1,0,0,0,1587,1586,1,0,0,0,1588,63,1,0,0,0,1589,1590, - 5,311,0,0,1590,1594,3,66,33,0,1591,1593,3,68,34,0,1592,1591,1,0, - 0,0,1593,1596,1,0,0,0,1594,1592,1,0,0,0,1594,1595,1,0,0,0,1595,1624, - 1,0,0,0,1596,1594,1,0,0,0,1597,1600,5,387,0,0,1598,1601,3,712,356, - 0,1599,1601,3,804,402,0,1600,1598,1,0,0,0,1600,1599,1,0,0,0,1601, - 1602,1,0,0,0,1602,1611,3,70,35,0,1603,1604,5,641,0,0,1604,1608,3, - 66,33,0,1605,1607,3,68,34,0,1606,1605,1,0,0,0,1607,1610,1,0,0,0, - 1608,1606,1,0,0,0,1608,1609,1,0,0,0,1609,1612,1,0,0,0,1610,1608, - 1,0,0,0,1611,1603,1,0,0,0,1611,1612,1,0,0,0,1612,1621,1,0,0,0,1613, - 1614,5,379,0,0,1614,1618,3,66,33,0,1615,1617,3,68,34,0,1616,1615, - 1,0,0,0,1617,1620,1,0,0,0,1618,1616,1,0,0,0,1618,1619,1,0,0,0,1619, - 1622,1,0,0,0,1620,1618,1,0,0,0,1621,1613,1,0,0,0,1621,1622,1,0,0, - 0,1622,1624,1,0,0,0,1623,1589,1,0,0,0,1623,1597,1,0,0,0,1624,65, - 1,0,0,0,1625,1630,5,287,0,0,1626,1630,3,716,358,0,1627,1630,3,712, - 356,0,1628,1630,3,804,402,0,1629,1625,1,0,0,0,1629,1626,1,0,0,0, - 1629,1627,1,0,0,0,1629,1628,1,0,0,0,1630,67,1,0,0,0,1631,1632,5, - 853,0,0,1632,1635,5,87,0,0,1633,1636,3,712,356,0,1634,1636,3,804, - 402,0,1635,1633,1,0,0,0,1635,1634,1,0,0,0,1636,1637,1,0,0,0,1637, - 1638,3,70,35,0,1638,69,1,0,0,0,1639,1653,3,830,415,0,1640,1653,5, - 223,0,0,1641,1653,5,242,0,0,1642,1653,5,243,0,0,1643,1653,5,244, - 0,0,1644,1653,5,245,0,0,1645,1653,5,246,0,0,1646,1653,5,247,0,0, - 1647,1653,5,248,0,0,1648,1653,5,249,0,0,1649,1653,5,250,0,0,1650, - 1653,5,251,0,0,1651,1653,5,252,0,0,1652,1639,1,0,0,0,1652,1640,1, - 0,0,0,1652,1641,1,0,0,0,1652,1642,1,0,0,0,1652,1643,1,0,0,0,1652, - 1644,1,0,0,0,1652,1645,1,0,0,0,1652,1646,1,0,0,0,1652,1647,1,0,0, - 0,1652,1648,1,0,0,0,1652,1649,1,0,0,0,1652,1650,1,0,0,0,1652,1651, - 1,0,0,0,1653,71,1,0,0,0,1654,1660,5,375,0,0,1655,1660,5,368,0,0, - 1656,1657,5,368,0,0,1657,1658,5,119,0,0,1658,1660,5,598,0,0,1659, - 1654,1,0,0,0,1659,1655,1,0,0,0,1659,1656,1,0,0,0,1660,73,1,0,0,0, - 1661,1662,5,188,0,0,1662,1663,7,16,0,0,1663,75,1,0,0,0,1664,1666, - 5,443,0,0,1665,1667,5,857,0,0,1666,1665,1,0,0,0,1666,1667,1,0,0, - 0,1667,1668,1,0,0,0,1668,1687,3,714,357,0,1669,1687,3,74,37,0,1670, - 1671,5,194,0,0,1671,1672,5,525,0,0,1672,1687,3,706,353,0,1673,1674, - 5,340,0,0,1674,1687,5,882,0,0,1675,1687,7,17,0,0,1676,1678,5,825, - 0,0,1677,1679,5,857,0,0,1678,1677,1,0,0,0,1678,1679,1,0,0,0,1679, - 1680,1,0,0,0,1680,1687,5,882,0,0,1681,1683,5,833,0,0,1682,1684,5, - 857,0,0,1683,1682,1,0,0,0,1683,1684,1,0,0,0,1684,1685,1,0,0,0,1685, - 1687,5,882,0,0,1686,1664,1,0,0,0,1686,1669,1,0,0,0,1686,1670,1,0, - 0,0,1686,1673,1,0,0,0,1686,1675,1,0,0,0,1686,1676,1,0,0,0,1686,1681, - 1,0,0,0,1687,77,1,0,0,0,1688,1690,7,18,0,0,1689,1688,1,0,0,0,1689, - 1690,1,0,0,0,1690,1691,1,0,0,0,1691,1692,3,706,353,0,1692,1693,3, - 726,363,0,1693,79,1,0,0,0,1694,1695,3,706,353,0,1695,1696,3,726, - 363,0,1696,81,1,0,0,0,1697,1698,5,340,0,0,1698,1721,5,882,0,0,1699, - 1700,5,444,0,0,1700,1721,5,162,0,0,1701,1703,5,114,0,0,1702,1701, - 1,0,0,0,1702,1703,1,0,0,0,1703,1704,1,0,0,0,1704,1721,5,47,0,0,1705, - 1706,5,354,0,0,1706,1716,5,162,0,0,1707,1708,5,502,0,0,1708,1716, - 5,162,0,0,1709,1710,5,136,0,0,1710,1711,5,162,0,0,1711,1716,5,360, - 0,0,1712,1713,5,112,0,0,1713,1714,5,162,0,0,1714,1716,5,360,0,0, - 1715,1705,1,0,0,0,1715,1707,1,0,0,0,1715,1709,1,0,0,0,1715,1712, - 1,0,0,0,1716,1721,1,0,0,0,1717,1718,5,162,0,0,1718,1719,5,591,0, - 0,1719,1721,7,12,0,0,1720,1697,1,0,0,0,1720,1699,1,0,0,0,1720,1702, - 1,0,0,0,1720,1715,1,0,0,0,1720,1717,1,0,0,0,1721,83,1,0,0,0,1722, - 1723,5,421,0,0,1723,1737,5,882,0,0,1724,1725,5,39,0,0,1725,1737, - 5,882,0,0,1726,1727,5,678,0,0,1727,1737,5,882,0,0,1728,1729,5,529, - 0,0,1729,1737,5,882,0,0,1730,1731,5,601,0,0,1731,1737,5,882,0,0, - 1732,1733,5,519,0,0,1733,1737,5,882,0,0,1734,1735,5,537,0,0,1735, - 1737,3,712,356,0,1736,1722,1,0,0,0,1736,1724,1,0,0,0,1736,1726,1, - 0,0,0,1736,1728,1,0,0,0,1736,1730,1,0,0,0,1736,1732,1,0,0,0,1736, - 1734,1,0,0,0,1737,85,1,0,0,0,1738,1739,5,866,0,0,1739,1744,3,88, - 44,0,1740,1741,5,868,0,0,1741,1743,3,88,44,0,1742,1740,1,0,0,0,1743, - 1746,1,0,0,0,1744,1742,1,0,0,0,1744,1745,1,0,0,0,1745,1747,1,0,0, - 0,1746,1744,1,0,0,0,1747,1748,5,867,0,0,1748,87,1,0,0,0,1749,1750, - 3,658,329,0,1750,1751,3,94,47,0,1751,1833,1,0,0,0,1752,1754,7,19, - 0,0,1753,1755,3,642,321,0,1754,1753,1,0,0,0,1754,1755,1,0,0,0,1755, - 1757,1,0,0,0,1756,1758,3,74,37,0,1757,1756,1,0,0,0,1757,1758,1,0, - 0,0,1758,1759,1,0,0,0,1759,1763,3,738,369,0,1760,1762,3,76,38,0, - 1761,1760,1,0,0,0,1762,1765,1,0,0,0,1763,1761,1,0,0,0,1763,1764, - 1,0,0,0,1764,1833,1,0,0,0,1765,1763,1,0,0,0,1766,1768,7,20,0,0,1767, - 1769,7,19,0,0,1768,1767,1,0,0,0,1768,1769,1,0,0,0,1769,1771,1,0, - 0,0,1770,1772,3,642,321,0,1771,1770,1,0,0,0,1771,1772,1,0,0,0,1772, - 1773,1,0,0,0,1773,1777,3,738,369,0,1774,1776,3,76,38,0,1775,1774, - 1,0,0,0,1776,1779,1,0,0,0,1777,1775,1,0,0,0,1777,1778,1,0,0,0,1778, - 1833,1,0,0,0,1779,1777,1,0,0,0,1780,1782,3,92,46,0,1781,1780,1,0, - 0,0,1781,1782,1,0,0,0,1782,1783,1,0,0,0,1783,1784,5,131,0,0,1784, - 1786,5,92,0,0,1785,1787,3,74,37,0,1786,1785,1,0,0,0,1786,1787,1, - 0,0,0,1787,1788,1,0,0,0,1788,1792,3,738,369,0,1789,1791,3,76,38, - 0,1790,1789,1,0,0,0,1791,1794,1,0,0,0,1792,1790,1,0,0,0,1792,1793, - 1,0,0,0,1793,1833,1,0,0,0,1794,1792,1,0,0,0,1795,1797,3,92,46,0, - 1796,1795,1,0,0,0,1796,1797,1,0,0,0,1797,1798,1,0,0,0,1798,1800, - 5,182,0,0,1799,1801,7,19,0,0,1800,1799,1,0,0,0,1800,1801,1,0,0,0, - 1801,1803,1,0,0,0,1802,1804,3,642,321,0,1803,1802,1,0,0,0,1803,1804, - 1,0,0,0,1804,1806,1,0,0,0,1805,1807,3,74,37,0,1806,1805,1,0,0,0, - 1806,1807,1,0,0,0,1807,1808,1,0,0,0,1808,1812,3,738,369,0,1809,1811, - 3,76,38,0,1810,1809,1,0,0,0,1811,1814,1,0,0,0,1812,1810,1,0,0,0, - 1812,1813,1,0,0,0,1813,1833,1,0,0,0,1814,1812,1,0,0,0,1815,1817, - 3,92,46,0,1816,1815,1,0,0,0,1816,1817,1,0,0,0,1817,1818,1,0,0,0, - 1818,1819,5,67,0,0,1819,1821,5,92,0,0,1820,1822,3,642,321,0,1821, - 1820,1,0,0,0,1821,1822,1,0,0,0,1822,1823,1,0,0,0,1823,1824,3,738, - 369,0,1824,1825,3,98,49,0,1825,1833,1,0,0,0,1826,1827,5,27,0,0,1827, - 1828,5,866,0,0,1828,1829,3,804,402,0,1829,1830,5,867,0,0,1830,1833, - 1,0,0,0,1831,1833,3,90,45,0,1832,1749,1,0,0,0,1832,1752,1,0,0,0, - 1832,1766,1,0,0,0,1832,1781,1,0,0,0,1832,1796,1,0,0,0,1832,1816, - 1,0,0,0,1832,1826,1,0,0,0,1832,1831,1,0,0,0,1833,89,1,0,0,0,1834, - 1836,3,92,46,0,1835,1834,1,0,0,0,1835,1836,1,0,0,0,1836,1837,1,0, - 0,0,1837,1838,5,27,0,0,1838,1839,5,866,0,0,1839,1840,3,804,402,0, - 1840,1845,5,867,0,0,1841,1843,5,114,0,0,1842,1841,1,0,0,0,1842,1843, - 1,0,0,0,1843,1844,1,0,0,0,1844,1846,5,57,0,0,1845,1842,1,0,0,0,1845, - 1846,1,0,0,0,1846,91,1,0,0,0,1847,1849,5,31,0,0,1848,1850,3,706, - 353,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0,1850,93,1,0,0,0,1851,1855, - 3,726,363,0,1852,1854,3,96,48,0,1853,1852,1,0,0,0,1854,1857,1,0, - 0,0,1855,1853,1,0,0,0,1855,1856,1,0,0,0,1856,95,1,0,0,0,1857,1855, - 1,0,0,0,1858,1902,3,722,361,0,1859,1860,5,42,0,0,1860,1902,3,754, - 377,0,1861,1902,5,686,0,0,1862,1902,5,435,0,0,1863,1868,5,315,0, - 0,1864,1865,5,119,0,0,1865,1866,5,185,0,0,1866,1868,3,756,378,0, - 1867,1863,1,0,0,0,1867,1864,1,0,0,0,1868,1902,1,0,0,0,1869,1871, - 5,131,0,0,1870,1869,1,0,0,0,1870,1871,1,0,0,0,1871,1872,1,0,0,0, - 1872,1902,5,92,0,0,1873,1875,5,182,0,0,1874,1876,5,92,0,0,1875,1874, - 1,0,0,0,1875,1876,1,0,0,0,1876,1902,1,0,0,0,1877,1878,5,340,0,0, - 1878,1902,5,882,0,0,1879,1880,5,338,0,0,1880,1902,7,21,0,0,1881, - 1882,5,647,0,0,1882,1902,7,22,0,0,1883,1902,3,98,49,0,1884,1885, - 5,28,0,0,1885,1902,3,690,345,0,1886,1887,5,71,0,0,1887,1889,5,9, - 0,0,1888,1886,1,0,0,0,1888,1889,1,0,0,0,1889,1890,1,0,0,0,1890,1891, - 5,13,0,0,1891,1892,5,866,0,0,1892,1893,3,804,402,0,1893,1895,5,867, - 0,0,1894,1896,7,23,0,0,1895,1894,1,0,0,0,1895,1896,1,0,0,0,1896, - 1902,1,0,0,0,1897,1898,5,241,0,0,1898,1899,5,42,0,0,1899,1902,5, - 682,0,0,1900,1902,3,90,45,0,1901,1858,1,0,0,0,1901,1859,1,0,0,0, - 1901,1861,1,0,0,0,1901,1862,1,0,0,0,1901,1867,1,0,0,0,1901,1870, - 1,0,0,0,1901,1873,1,0,0,0,1901,1877,1,0,0,0,1901,1879,1,0,0,0,1901, - 1881,1,0,0,0,1901,1883,1,0,0,0,1901,1884,1,0,0,0,1901,1888,1,0,0, - 0,1901,1897,1,0,0,0,1901,1900,1,0,0,0,1902,97,1,0,0,0,1903,1904, - 5,138,0,0,1904,1906,3,652,326,0,1905,1907,3,738,369,0,1906,1905, - 1,0,0,0,1906,1907,1,0,0,0,1907,1910,1,0,0,0,1908,1909,5,110,0,0, - 1909,1911,7,24,0,0,1910,1908,1,0,0,0,1910,1911,1,0,0,0,1911,1913, - 1,0,0,0,1912,1914,3,100,50,0,1913,1912,1,0,0,0,1913,1914,1,0,0,0, - 1914,99,1,0,0,0,1915,1916,5,119,0,0,1916,1917,5,44,0,0,1917,1921, - 3,102,51,0,1918,1919,5,119,0,0,1919,1920,5,185,0,0,1920,1922,3,102, - 51,0,1921,1918,1,0,0,0,1921,1922,1,0,0,0,1922,1932,1,0,0,0,1923, - 1924,5,119,0,0,1924,1925,5,185,0,0,1925,1929,3,102,51,0,1926,1927, - 5,119,0,0,1927,1928,5,44,0,0,1928,1930,3,102,51,0,1929,1926,1,0, - 0,0,1929,1930,1,0,0,0,1930,1932,1,0,0,0,1931,1915,1,0,0,0,1931,1923, - 1,0,0,0,1932,101,1,0,0,0,1933,1942,5,146,0,0,1934,1942,5,22,0,0, - 1935,1936,5,155,0,0,1936,1942,5,116,0,0,1937,1938,5,502,0,0,1938, - 1942,5,305,0,0,1939,1940,5,155,0,0,1940,1942,5,42,0,0,1941,1933, - 1,0,0,0,1941,1934,1,0,0,0,1941,1935,1,0,0,0,1941,1937,1,0,0,0,1941, - 1939,1,0,0,0,1942,103,1,0,0,0,1943,1945,5,380,0,0,1944,1946,5,857, - 0,0,1945,1944,1,0,0,0,1945,1946,1,0,0,0,1946,1948,1,0,0,0,1947,1949, - 3,692,346,0,1948,1947,1,0,0,0,1948,1949,1,0,0,0,1949,2129,1,0,0, - 0,1950,1952,5,825,0,0,1951,1953,5,857,0,0,1952,1951,1,0,0,0,1952, - 1953,1,0,0,0,1953,1954,1,0,0,0,1954,2129,5,882,0,0,1955,1957,5,314, - 0,0,1956,1958,5,857,0,0,1957,1956,1,0,0,0,1957,1958,1,0,0,0,1958, - 1959,1,0,0,0,1959,2129,3,712,356,0,1960,1962,5,315,0,0,1961,1963, - 5,857,0,0,1962,1961,1,0,0,0,1962,1963,1,0,0,0,1963,1964,1,0,0,0, - 1964,2129,3,712,356,0,1965,1967,5,316,0,0,1966,1968,5,857,0,0,1967, - 1966,1,0,0,0,1967,1968,1,0,0,0,1968,1969,1,0,0,0,1969,2129,3,712, - 356,0,1970,1972,5,42,0,0,1971,1970,1,0,0,0,1971,1972,1,0,0,0,1972, - 1973,1,0,0,0,1973,1975,3,58,29,0,1974,1976,5,857,0,0,1975,1974,1, - 0,0,0,1975,1976,1,0,0,0,1976,1979,1,0,0,0,1977,1980,3,688,344,0, - 1978,1980,5,42,0,0,1979,1977,1,0,0,0,1979,1978,1,0,0,0,1980,2129, - 1,0,0,0,1981,1983,7,25,0,0,1982,1984,5,857,0,0,1983,1982,1,0,0,0, - 1983,1984,1,0,0,0,1984,1985,1,0,0,0,1985,2129,7,26,0,0,1986,1988, - 5,42,0,0,1987,1986,1,0,0,0,1987,1988,1,0,0,0,1988,1989,1,0,0,0,1989, - 1991,5,28,0,0,1990,1992,5,857,0,0,1991,1990,1,0,0,0,1991,1992,1, - 0,0,0,1992,1993,1,0,0,0,1993,2129,3,690,345,0,1994,1996,5,340,0, - 0,1995,1997,5,857,0,0,1996,1995,1,0,0,0,1996,1997,1,0,0,0,1997,1998, - 1,0,0,0,1998,2129,5,882,0,0,1999,2001,5,346,0,0,2000,2002,5,857, - 0,0,2001,2000,1,0,0,0,2001,2002,1,0,0,0,2002,2003,1,0,0,0,2003,2129, - 7,27,0,0,2004,2006,5,349,0,0,2005,2007,5,857,0,0,2006,2005,1,0,0, - 0,2006,2007,1,0,0,0,2007,2008,1,0,0,0,2008,2129,5,882,0,0,2009,2010, - 7,28,0,0,2010,2012,5,367,0,0,2011,2013,5,857,0,0,2012,2011,1,0,0, - 0,2012,2013,1,0,0,0,2013,2014,1,0,0,0,2014,2129,5,882,0,0,2015,2017, - 5,365,0,0,2016,2018,5,857,0,0,2017,2016,1,0,0,0,2017,2018,1,0,0, - 0,2018,2019,1,0,0,0,2019,2129,7,26,0,0,2020,2022,5,376,0,0,2021, - 2023,5,857,0,0,2022,2021,1,0,0,0,2022,2023,1,0,0,0,2023,2024,1,0, - 0,0,2024,2129,5,882,0,0,2025,2027,7,29,0,0,2026,2028,5,857,0,0,2027, - 2026,1,0,0,0,2027,2028,1,0,0,0,2028,2029,1,0,0,0,2029,2129,7,26, - 0,0,2030,2032,7,30,0,0,2031,2033,5,857,0,0,2032,2031,1,0,0,0,2032, - 2033,1,0,0,0,2033,2034,1,0,0,0,2034,2129,3,712,356,0,2035,2037,5, - 377,0,0,2036,2038,5,857,0,0,2037,2036,1,0,0,0,2037,2038,1,0,0,0, - 2038,2039,1,0,0,0,2039,2129,3,712,356,0,2040,2041,5,82,0,0,2041, - 2043,5,367,0,0,2042,2044,5,857,0,0,2043,2042,1,0,0,0,2043,2044,1, - 0,0,0,2044,2045,1,0,0,0,2045,2129,5,882,0,0,2046,2048,5,431,0,0, - 2047,2049,5,857,0,0,2048,2047,1,0,0,0,2048,2049,1,0,0,0,2049,2050, - 1,0,0,0,2050,2129,7,31,0,0,2051,2053,5,443,0,0,2052,2054,5,857,0, - 0,2053,2052,1,0,0,0,2053,2054,1,0,0,0,2054,2055,1,0,0,0,2055,2129, - 3,714,357,0,2056,2058,5,480,0,0,2057,2059,5,857,0,0,2058,2057,1, - 0,0,0,2058,2059,1,0,0,0,2059,2060,1,0,0,0,2060,2129,3,712,356,0, - 2061,2063,5,490,0,0,2062,2064,5,857,0,0,2063,2062,1,0,0,0,2063,2064, - 1,0,0,0,2064,2065,1,0,0,0,2065,2129,3,712,356,0,2066,2068,5,520, - 0,0,2067,2069,5,857,0,0,2068,2067,1,0,0,0,2068,2069,1,0,0,0,2069, - 2070,1,0,0,0,2070,2129,7,14,0,0,2071,2073,5,529,0,0,2072,2074,5, - 857,0,0,2073,2072,1,0,0,0,2073,2074,1,0,0,0,2074,2075,1,0,0,0,2075, - 2129,5,882,0,0,2076,2078,5,588,0,0,2077,2079,5,857,0,0,2078,2077, - 1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0,0,2080,2129,7,32,0,0,2081, - 2082,5,640,0,0,2082,2129,5,664,0,0,2083,2085,5,833,0,0,2084,2086, - 5,857,0,0,2085,2084,1,0,0,0,2085,2086,1,0,0,0,2086,2087,1,0,0,0, - 2087,2129,5,882,0,0,2088,2090,5,642,0,0,2089,2091,5,857,0,0,2090, - 2089,1,0,0,0,2090,2091,1,0,0,0,2091,2092,1,0,0,0,2092,2129,7,14, - 0,0,2093,2095,5,643,0,0,2094,2096,5,857,0,0,2095,2094,1,0,0,0,2095, - 2096,1,0,0,0,2096,2097,1,0,0,0,2097,2129,7,14,0,0,2098,2100,5,644, - 0,0,2099,2101,5,857,0,0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101, - 2104,1,0,0,0,2102,2105,5,42,0,0,2103,2105,3,712,356,0,2104,2102, - 1,0,0,0,2104,2103,1,0,0,0,2105,2129,1,0,0,0,2106,2107,5,658,0,0, - 2107,2109,3,666,333,0,2108,2110,3,108,54,0,2109,2108,1,0,0,0,2109, - 2110,1,0,0,0,2110,2129,1,0,0,0,2111,2112,5,659,0,0,2112,2113,5,857, - 0,0,2113,2129,3,106,53,0,2114,2129,3,108,54,0,2115,2117,5,665,0, - 0,2116,2118,5,857,0,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2119, - 1,0,0,0,2119,2129,7,26,0,0,2120,2122,5,181,0,0,2121,2123,5,857,0, - 0,2122,2121,1,0,0,0,2122,2123,1,0,0,0,2123,2124,1,0,0,0,2124,2125, - 5,866,0,0,2125,2126,3,650,325,0,2126,2127,5,867,0,0,2127,2129,1, - 0,0,0,2128,1943,1,0,0,0,2128,1950,1,0,0,0,2128,1955,1,0,0,0,2128, - 1960,1,0,0,0,2128,1965,1,0,0,0,2128,1971,1,0,0,0,2128,1981,1,0,0, - 0,2128,1987,1,0,0,0,2128,1994,1,0,0,0,2128,1999,1,0,0,0,2128,2004, - 1,0,0,0,2128,2009,1,0,0,0,2128,2015,1,0,0,0,2128,2020,1,0,0,0,2128, - 2025,1,0,0,0,2128,2030,1,0,0,0,2128,2035,1,0,0,0,2128,2040,1,0,0, - 0,2128,2046,1,0,0,0,2128,2051,1,0,0,0,2128,2056,1,0,0,0,2128,2061, - 1,0,0,0,2128,2066,1,0,0,0,2128,2071,1,0,0,0,2128,2076,1,0,0,0,2128, - 2081,1,0,0,0,2128,2083,1,0,0,0,2128,2088,1,0,0,0,2128,2093,1,0,0, - 0,2128,2098,1,0,0,0,2128,2106,1,0,0,0,2128,2111,1,0,0,0,2128,2114, - 1,0,0,0,2128,2115,1,0,0,0,2128,2120,1,0,0,0,2129,105,1,0,0,0,2130, - 2131,7,33,0,0,2131,107,1,0,0,0,2132,2133,5,647,0,0,2133,2134,7,22, - 0,0,2134,109,1,0,0,0,2135,2136,5,130,0,0,2136,2137,5,20,0,0,2137, - 2140,3,112,56,0,2138,2139,5,528,0,0,2139,2141,3,712,356,0,2140,2138, - 1,0,0,0,2140,2141,1,0,0,0,2141,2149,1,0,0,0,2142,2143,5,652,0,0, - 2143,2144,5,20,0,0,2144,2147,3,114,57,0,2145,2146,5,653,0,0,2146, - 2148,3,712,356,0,2147,2145,1,0,0,0,2147,2148,1,0,0,0,2148,2150,1, - 0,0,0,2149,2142,1,0,0,0,2149,2150,1,0,0,0,2150,2162,1,0,0,0,2151, - 2152,5,866,0,0,2152,2157,3,116,58,0,2153,2154,5,868,0,0,2154,2156, - 3,116,58,0,2155,2153,1,0,0,0,2156,2159,1,0,0,0,2157,2155,1,0,0,0, - 2157,2158,1,0,0,0,2158,2160,1,0,0,0,2159,2157,1,0,0,0,2160,2161, - 5,867,0,0,2161,2163,1,0,0,0,2162,2151,1,0,0,0,2162,2163,1,0,0,0, - 2163,111,1,0,0,0,2164,2166,5,101,0,0,2165,2164,1,0,0,0,2165,2166, - 1,0,0,0,2166,2167,1,0,0,0,2167,2168,5,418,0,0,2168,2169,5,866,0, - 0,2169,2170,3,804,402,0,2170,2171,5,867,0,0,2171,2211,1,0,0,0,2172, - 2174,5,101,0,0,2173,2172,1,0,0,0,2173,2174,1,0,0,0,2174,2175,1,0, - 0,0,2175,2179,5,92,0,0,2176,2177,5,308,0,0,2177,2178,5,857,0,0,2178, - 2180,7,34,0,0,2179,2176,1,0,0,0,2179,2180,1,0,0,0,2180,2181,1,0, - 0,0,2181,2183,5,866,0,0,2182,2184,3,660,330,0,2183,2182,1,0,0,0, - 2183,2184,1,0,0,0,2184,2185,1,0,0,0,2185,2211,5,867,0,0,2186,2196, - 5,134,0,0,2187,2188,5,866,0,0,2188,2189,3,804,402,0,2189,2190,5, - 867,0,0,2190,2197,1,0,0,0,2191,2192,5,337,0,0,2192,2193,5,866,0, - 0,2193,2194,3,660,330,0,2194,2195,5,867,0,0,2195,2197,1,0,0,0,2196, - 2187,1,0,0,0,2196,2191,1,0,0,0,2197,2211,1,0,0,0,2198,2208,5,449, - 0,0,2199,2200,5,866,0,0,2200,2201,3,804,402,0,2201,2202,5,867,0, - 0,2202,2209,1,0,0,0,2203,2204,5,337,0,0,2204,2205,5,866,0,0,2205, - 2206,3,660,330,0,2206,2207,5,867,0,0,2207,2209,1,0,0,0,2208,2199, - 1,0,0,0,2208,2203,1,0,0,0,2209,2211,1,0,0,0,2210,2165,1,0,0,0,2210, - 2173,1,0,0,0,2210,2186,1,0,0,0,2210,2198,1,0,0,0,2211,113,1,0,0, - 0,2212,2214,5,101,0,0,2213,2212,1,0,0,0,2213,2214,1,0,0,0,2214,2215, - 1,0,0,0,2215,2216,5,418,0,0,2216,2217,5,866,0,0,2217,2218,3,804, - 402,0,2218,2219,5,867,0,0,2219,2234,1,0,0,0,2220,2222,5,101,0,0, - 2221,2220,1,0,0,0,2221,2222,1,0,0,0,2222,2223,1,0,0,0,2223,2227, - 5,92,0,0,2224,2225,5,308,0,0,2225,2226,5,857,0,0,2226,2228,7,34, - 0,0,2227,2224,1,0,0,0,2227,2228,1,0,0,0,2228,2229,1,0,0,0,2229,2230, - 5,866,0,0,2230,2231,3,660,330,0,2231,2232,5,867,0,0,2232,2234,1, - 0,0,0,2233,2213,1,0,0,0,2233,2221,1,0,0,0,2234,115,1,0,0,0,2235, - 2236,5,130,0,0,2236,2237,3,672,336,0,2237,2238,5,189,0,0,2238,2239, - 5,447,0,0,2239,2240,5,662,0,0,2240,2241,5,866,0,0,2241,2246,3,118, - 59,0,2242,2243,5,868,0,0,2243,2245,3,118,59,0,2244,2242,1,0,0,0, - 2245,2248,1,0,0,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2249, - 1,0,0,0,2248,2246,1,0,0,0,2249,2253,5,867,0,0,2250,2252,3,124,62, - 0,2251,2250,1,0,0,0,2252,2255,1,0,0,0,2253,2251,1,0,0,0,2253,2254, - 1,0,0,0,2254,2267,1,0,0,0,2255,2253,1,0,0,0,2256,2257,5,866,0,0, - 2257,2262,3,122,61,0,2258,2259,5,868,0,0,2259,2261,3,122,61,0,2260, - 2258,1,0,0,0,2261,2264,1,0,0,0,2262,2260,1,0,0,0,2262,2263,1,0,0, - 0,2263,2265,1,0,0,0,2264,2262,1,0,0,0,2265,2266,5,867,0,0,2266,2268, - 1,0,0,0,2267,2256,1,0,0,0,2267,2268,1,0,0,0,2268,2382,1,0,0,0,2269, - 2270,5,130,0,0,2270,2271,3,672,336,0,2271,2272,5,189,0,0,2272,2273, - 5,447,0,0,2273,2274,5,662,0,0,2274,2278,3,118,59,0,2275,2277,3,124, - 62,0,2276,2275,1,0,0,0,2277,2280,1,0,0,0,2278,2276,1,0,0,0,2278, - 2279,1,0,0,0,2279,2292,1,0,0,0,2280,2278,1,0,0,0,2281,2282,5,866, - 0,0,2282,2287,3,122,61,0,2283,2284,5,868,0,0,2284,2286,3,122,61, - 0,2285,2283,1,0,0,0,2286,2289,1,0,0,0,2287,2285,1,0,0,0,2287,2288, - 1,0,0,0,2288,2290,1,0,0,0,2289,2287,1,0,0,0,2290,2291,5,867,0,0, - 2291,2293,1,0,0,0,2292,2281,1,0,0,0,2292,2293,1,0,0,0,2293,2382, - 1,0,0,0,2294,2295,5,130,0,0,2295,2296,3,672,336,0,2296,2297,5,189, - 0,0,2297,2298,5,80,0,0,2298,2299,5,866,0,0,2299,2304,3,118,59,0, - 2300,2301,5,868,0,0,2301,2303,3,118,59,0,2302,2300,1,0,0,0,2303, - 2306,1,0,0,0,2304,2302,1,0,0,0,2304,2305,1,0,0,0,2305,2307,1,0,0, - 0,2306,2304,1,0,0,0,2307,2311,5,867,0,0,2308,2310,3,124,62,0,2309, - 2308,1,0,0,0,2310,2313,1,0,0,0,2311,2309,1,0,0,0,2311,2312,1,0,0, - 0,2312,2325,1,0,0,0,2313,2311,1,0,0,0,2314,2315,5,866,0,0,2315,2320, - 3,122,61,0,2316,2317,5,868,0,0,2317,2319,3,122,61,0,2318,2316,1, - 0,0,0,2319,2322,1,0,0,0,2320,2318,1,0,0,0,2320,2321,1,0,0,0,2321, - 2323,1,0,0,0,2322,2320,1,0,0,0,2323,2324,5,867,0,0,2324,2326,1,0, - 0,0,2325,2314,1,0,0,0,2325,2326,1,0,0,0,2326,2382,1,0,0,0,2327,2328, - 5,130,0,0,2328,2329,3,672,336,0,2329,2330,5,189,0,0,2330,2331,5, - 80,0,0,2331,2332,5,866,0,0,2332,2337,3,120,60,0,2333,2334,5,868, - 0,0,2334,2336,3,120,60,0,2335,2333,1,0,0,0,2336,2339,1,0,0,0,2337, - 2335,1,0,0,0,2337,2338,1,0,0,0,2338,2340,1,0,0,0,2339,2337,1,0,0, - 0,2340,2344,5,867,0,0,2341,2343,3,124,62,0,2342,2341,1,0,0,0,2343, - 2346,1,0,0,0,2344,2342,1,0,0,0,2344,2345,1,0,0,0,2345,2358,1,0,0, - 0,2346,2344,1,0,0,0,2347,2348,5,866,0,0,2348,2353,3,122,61,0,2349, - 2350,5,868,0,0,2350,2352,3,122,61,0,2351,2349,1,0,0,0,2352,2355, - 1,0,0,0,2353,2351,1,0,0,0,2353,2354,1,0,0,0,2354,2356,1,0,0,0,2355, - 2353,1,0,0,0,2356,2357,5,867,0,0,2357,2359,1,0,0,0,2358,2347,1,0, - 0,0,2358,2359,1,0,0,0,2359,2382,1,0,0,0,2360,2361,5,130,0,0,2361, - 2365,3,672,336,0,2362,2364,3,124,62,0,2363,2362,1,0,0,0,2364,2367, - 1,0,0,0,2365,2363,1,0,0,0,2365,2366,1,0,0,0,2366,2379,1,0,0,0,2367, - 2365,1,0,0,0,2368,2369,5,866,0,0,2369,2374,3,122,61,0,2370,2371, - 5,868,0,0,2371,2373,3,122,61,0,2372,2370,1,0,0,0,2373,2376,1,0,0, - 0,2374,2372,1,0,0,0,2374,2375,1,0,0,0,2375,2377,1,0,0,0,2376,2374, - 1,0,0,0,2377,2378,5,867,0,0,2378,2380,1,0,0,0,2379,2368,1,0,0,0, - 2379,2380,1,0,0,0,2380,2382,1,0,0,0,2381,2235,1,0,0,0,2381,2269, - 1,0,0,0,2381,2294,1,0,0,0,2381,2327,1,0,0,0,2381,2360,1,0,0,0,2382, - 117,1,0,0,0,2383,2387,3,724,362,0,2384,2387,3,804,402,0,2385,2387, - 5,111,0,0,2386,2383,1,0,0,0,2386,2384,1,0,0,0,2386,2385,1,0,0,0, - 2387,119,1,0,0,0,2388,2389,5,866,0,0,2389,2392,3,118,59,0,2390,2391, - 5,868,0,0,2391,2393,3,118,59,0,2392,2390,1,0,0,0,2393,2394,1,0,0, - 0,2394,2392,1,0,0,0,2394,2395,1,0,0,0,2395,2396,1,0,0,0,2396,2397, - 5,867,0,0,2397,121,1,0,0,0,2398,2399,5,652,0,0,2399,2403,3,706,353, - 0,2400,2402,3,124,62,0,2401,2400,1,0,0,0,2402,2405,1,0,0,0,2403, - 2401,1,0,0,0,2403,2404,1,0,0,0,2404,123,1,0,0,0,2405,2403,1,0,0, - 0,2406,2408,5,42,0,0,2407,2406,1,0,0,0,2407,2408,1,0,0,0,2408,2410, - 1,0,0,0,2409,2411,5,647,0,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0, - 2411,2412,1,0,0,0,2412,2414,5,380,0,0,2413,2415,5,857,0,0,2414,2413, - 1,0,0,0,2414,2415,1,0,0,0,2415,2416,1,0,0,0,2416,2455,3,692,346, - 0,2417,2419,5,340,0,0,2418,2420,5,857,0,0,2419,2418,1,0,0,0,2419, - 2420,1,0,0,0,2420,2421,1,0,0,0,2421,2455,5,882,0,0,2422,2423,5,360, - 0,0,2423,2425,5,367,0,0,2424,2426,5,857,0,0,2425,2424,1,0,0,0,2425, - 2426,1,0,0,0,2426,2427,1,0,0,0,2427,2455,5,882,0,0,2428,2429,5,82, - 0,0,2429,2431,5,367,0,0,2430,2432,5,857,0,0,2431,2430,1,0,0,0,2431, - 2432,1,0,0,0,2432,2433,1,0,0,0,2433,2455,5,882,0,0,2434,2436,5,480, - 0,0,2435,2437,5,857,0,0,2436,2435,1,0,0,0,2436,2437,1,0,0,0,2437, - 2438,1,0,0,0,2438,2455,3,712,356,0,2439,2441,5,490,0,0,2440,2442, - 5,857,0,0,2441,2440,1,0,0,0,2441,2442,1,0,0,0,2442,2443,1,0,0,0, - 2443,2455,3,712,356,0,2444,2446,5,658,0,0,2445,2447,5,857,0,0,2446, - 2445,1,0,0,0,2446,2447,1,0,0,0,2447,2448,1,0,0,0,2448,2455,3,666, - 333,0,2449,2451,5,504,0,0,2450,2452,5,857,0,0,2451,2450,1,0,0,0, - 2451,2452,1,0,0,0,2452,2453,1,0,0,0,2453,2455,3,706,353,0,2454,2407, - 1,0,0,0,2454,2417,1,0,0,0,2454,2422,1,0,0,0,2454,2428,1,0,0,0,2454, - 2434,1,0,0,0,2454,2439,1,0,0,0,2454,2444,1,0,0,0,2454,2449,1,0,0, - 0,2455,125,1,0,0,0,2456,2457,5,8,0,0,2457,2459,7,0,0,0,2458,2460, - 3,628,314,0,2459,2458,1,0,0,0,2459,2460,1,0,0,0,2460,2462,1,0,0, - 0,2461,2463,3,56,28,0,2462,2461,1,0,0,0,2463,2464,1,0,0,0,2464,2462, - 1,0,0,0,2464,2465,1,0,0,0,2465,2475,1,0,0,0,2466,2467,5,8,0,0,2467, - 2468,7,0,0,0,2468,2469,3,628,314,0,2469,2470,5,677,0,0,2470,2471, - 5,360,0,0,2471,2472,5,367,0,0,2472,2473,5,496,0,0,2473,2475,1,0, - 0,0,2474,2456,1,0,0,0,2474,2466,1,0,0,0,2475,127,1,0,0,0,2476,2478, - 5,8,0,0,2477,2479,3,62,31,0,2478,2477,1,0,0,0,2478,2479,1,0,0,0, - 2479,2480,1,0,0,0,2480,2481,5,385,0,0,2481,2485,3,702,351,0,2482, - 2483,5,119,0,0,2483,2484,5,590,0,0,2484,2486,3,64,32,0,2485,2482, - 1,0,0,0,2485,2486,1,0,0,0,2486,2493,1,0,0,0,2487,2488,5,119,0,0, - 2488,2490,5,343,0,0,2489,2491,5,114,0,0,2490,2489,1,0,0,0,2490,2491, - 1,0,0,0,2491,2492,1,0,0,0,2492,2494,5,541,0,0,2493,2487,1,0,0,0, - 2493,2494,1,0,0,0,2494,2498,1,0,0,0,2495,2496,5,141,0,0,2496,2497, - 5,176,0,0,2497,2499,3,702,351,0,2498,2495,1,0,0,0,2498,2499,1,0, - 0,0,2499,2501,1,0,0,0,2500,2502,3,72,36,0,2501,2500,1,0,0,0,2501, - 2502,1,0,0,0,2502,2505,1,0,0,0,2503,2504,5,340,0,0,2504,2506,5,882, - 0,0,2505,2503,1,0,0,0,2505,2506,1,0,0,0,2506,2509,1,0,0,0,2507,2508, - 5,371,0,0,2508,2510,3,422,211,0,2509,2507,1,0,0,0,2509,2510,1,0, - 0,0,2510,129,1,0,0,0,2511,2512,5,8,0,0,2512,2513,5,409,0,0,2513, - 2517,3,632,316,0,2514,2516,3,82,41,0,2515,2514,1,0,0,0,2516,2519, - 1,0,0,0,2517,2515,1,0,0,0,2517,2518,1,0,0,0,2518,131,1,0,0,0,2519, - 2517,1,0,0,0,2520,2521,5,8,0,0,2521,2522,5,433,0,0,2522,2523,5,585, - 0,0,2523,2524,5,801,0,0,2524,2525,5,453,0,0,2525,2526,5,92,0,0,2526, - 133,1,0,0,0,2527,2528,5,8,0,0,2528,2529,5,451,0,0,2529,2530,5,74, - 0,0,2530,2531,3,706,353,0,2531,2532,5,6,0,0,2532,2533,5,671,0,0, - 2533,2539,5,882,0,0,2534,2536,5,428,0,0,2535,2537,5,857,0,0,2536, - 2535,1,0,0,0,2536,2537,1,0,0,0,2537,2538,1,0,0,0,2538,2540,3,714, - 357,0,2539,2534,1,0,0,0,2539,2540,1,0,0,0,2540,2542,1,0,0,0,2541, - 2543,5,687,0,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2544,1,0, - 0,0,2544,2546,5,380,0,0,2545,2547,5,857,0,0,2546,2545,1,0,0,0,2546, - 2547,1,0,0,0,2547,2548,1,0,0,0,2548,2549,3,692,346,0,2549,135,1, - 0,0,0,2550,2551,5,8,0,0,2551,2552,5,132,0,0,2552,2556,3,702,351, - 0,2553,2555,3,82,41,0,2554,2553,1,0,0,0,2555,2558,1,0,0,0,2556,2554, - 1,0,0,0,2556,2557,1,0,0,0,2557,137,1,0,0,0,2558,2556,1,0,0,0,2559, - 2560,5,8,0,0,2560,2561,5,592,0,0,2561,2562,3,706,353,0,2562,2563, - 5,518,0,0,2563,2564,5,866,0,0,2564,2569,3,84,42,0,2565,2566,5,868, - 0,0,2566,2568,3,84,42,0,2567,2565,1,0,0,0,2568,2571,1,0,0,0,2569, - 2567,1,0,0,0,2569,2570,1,0,0,0,2570,2572,1,0,0,0,2571,2569,1,0,0, - 0,2572,2573,5,867,0,0,2573,139,1,0,0,0,2574,2575,5,8,0,0,2575,2576, - 5,173,0,0,2576,2585,3,652,326,0,2577,2582,3,146,73,0,2578,2579,5, - 868,0,0,2579,2581,3,146,73,0,2580,2578,1,0,0,0,2581,2584,1,0,0,0, - 2582,2580,1,0,0,0,2582,2583,1,0,0,0,2583,2586,1,0,0,0,2584,2582, - 1,0,0,0,2585,2577,1,0,0,0,2585,2586,1,0,0,0,2586,2594,1,0,0,0,2587, - 2591,3,148,74,0,2588,2590,3,148,74,0,2589,2588,1,0,0,0,2590,2593, - 1,0,0,0,2591,2589,1,0,0,0,2591,2592,1,0,0,0,2592,2595,1,0,0,0,2593, - 2591,1,0,0,0,2594,2587,1,0,0,0,2594,2595,1,0,0,0,2595,141,1,0,0, - 0,2596,2598,5,8,0,0,2597,2599,5,180,0,0,2598,2597,1,0,0,0,2598,2599, - 1,0,0,0,2599,2600,1,0,0,0,2600,2601,5,658,0,0,2601,2602,3,666,333, - 0,2602,2603,7,35,0,0,2603,2604,5,361,0,0,2604,2610,5,882,0,0,2605, - 2607,5,428,0,0,2606,2608,5,857,0,0,2607,2606,1,0,0,0,2607,2608,1, - 0,0,0,2608,2609,1,0,0,0,2609,2611,3,714,357,0,2610,2605,1,0,0,0, - 2610,2611,1,0,0,0,2611,2613,1,0,0,0,2612,2614,5,687,0,0,2613,2612, - 1,0,0,0,2613,2614,1,0,0,0,2614,2618,1,0,0,0,2615,2616,5,141,0,0, - 2616,2617,5,176,0,0,2617,2619,3,664,332,0,2618,2615,1,0,0,0,2618, - 2619,1,0,0,0,2619,2625,1,0,0,0,2620,2622,5,314,0,0,2621,2623,5,857, - 0,0,2622,2621,1,0,0,0,2622,2623,1,0,0,0,2623,2624,1,0,0,0,2624,2626, - 3,714,357,0,2625,2620,1,0,0,0,2625,2626,1,0,0,0,2626,2629,1,0,0, - 0,2627,2628,5,155,0,0,2628,2630,7,36,0,0,2629,2627,1,0,0,0,2629, - 2630,1,0,0,0,2630,2636,1,0,0,0,2631,2633,5,376,0,0,2632,2634,5,857, - 0,0,2633,2632,1,0,0,0,2633,2634,1,0,0,0,2634,2635,1,0,0,0,2635,2637, - 5,882,0,0,2636,2631,1,0,0,0,2636,2637,1,0,0,0,2637,2643,1,0,0,0, - 2638,2640,5,380,0,0,2639,2641,5,857,0,0,2640,2639,1,0,0,0,2640,2641, - 1,0,0,0,2641,2642,1,0,0,0,2642,2644,3,692,346,0,2643,2638,1,0,0, - 0,2643,2644,1,0,0,0,2644,2650,1,0,0,0,2645,2647,5,825,0,0,2646,2648, - 5,857,0,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,2649,1,0,0,0, - 2649,2651,5,882,0,0,2650,2645,1,0,0,0,2650,2651,1,0,0,0,2651,143, - 1,0,0,0,2652,2656,5,8,0,0,2653,2654,5,308,0,0,2654,2655,5,857,0, - 0,2655,2657,7,11,0,0,2656,2653,1,0,0,0,2656,2657,1,0,0,0,2657,2659, - 1,0,0,0,2658,2660,3,62,31,0,2659,2658,1,0,0,0,2659,2660,1,0,0,0, - 2660,2664,1,0,0,0,2661,2662,5,162,0,0,2662,2663,5,591,0,0,2663,2665, - 7,12,0,0,2664,2661,1,0,0,0,2664,2665,1,0,0,0,2665,2666,1,0,0,0,2666, - 2667,5,684,0,0,2667,2672,3,636,318,0,2668,2669,5,866,0,0,2669,2670, - 3,660,330,0,2670,2671,5,867,0,0,2671,2673,1,0,0,0,2672,2668,1,0, - 0,0,2672,2673,1,0,0,0,2673,2674,1,0,0,0,2674,2675,5,13,0,0,2675, - 2682,3,210,105,0,2676,2678,5,194,0,0,2677,2679,7,13,0,0,2678,2677, - 1,0,0,0,2678,2679,1,0,0,0,2679,2680,1,0,0,0,2680,2681,5,27,0,0,2681, - 2683,5,121,0,0,2682,2676,1,0,0,0,2682,2683,1,0,0,0,2683,145,1,0, - 0,0,2684,2691,3,104,52,0,2685,2687,5,868,0,0,2686,2685,1,0,0,0,2686, - 2687,1,0,0,0,2687,2688,1,0,0,0,2688,2690,3,104,52,0,2689,2686,1, - 0,0,0,2690,2693,1,0,0,0,2691,2689,1,0,0,0,2691,2692,1,0,0,0,2692, - 2949,1,0,0,0,2693,2691,1,0,0,0,2694,2696,5,6,0,0,2695,2697,5,29, - 0,0,2696,2695,1,0,0,0,2696,2697,1,0,0,0,2697,2698,1,0,0,0,2698,2699, - 3,662,331,0,2699,2703,3,94,47,0,2700,2704,5,402,0,0,2701,2702,5, - 306,0,0,2702,2704,3,662,331,0,2703,2700,1,0,0,0,2703,2701,1,0,0, - 0,2703,2704,1,0,0,0,2704,2949,1,0,0,0,2705,2707,5,6,0,0,2706,2708, - 5,29,0,0,2707,2706,1,0,0,0,2707,2708,1,0,0,0,2708,2709,1,0,0,0,2709, - 2710,5,866,0,0,2710,2711,3,662,331,0,2711,2718,3,94,47,0,2712,2713, - 5,868,0,0,2713,2714,3,662,331,0,2714,2715,3,94,47,0,2715,2717,1, - 0,0,0,2716,2712,1,0,0,0,2717,2720,1,0,0,0,2718,2716,1,0,0,0,2718, - 2719,1,0,0,0,2719,2721,1,0,0,0,2720,2718,1,0,0,0,2721,2722,5,867, - 0,0,2722,2949,1,0,0,0,2723,2724,5,6,0,0,2724,2726,7,19,0,0,2725, - 2727,3,642,321,0,2726,2725,1,0,0,0,2726,2727,1,0,0,0,2727,2729,1, - 0,0,0,2728,2730,3,74,37,0,2729,2728,1,0,0,0,2729,2730,1,0,0,0,2730, - 2731,1,0,0,0,2731,2735,3,738,369,0,2732,2734,3,76,38,0,2733,2732, - 1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0,2735,2736,1,0,0,0,2736, - 2949,1,0,0,0,2737,2735,1,0,0,0,2738,2739,5,6,0,0,2739,2741,7,20, - 0,0,2740,2742,7,19,0,0,2741,2740,1,0,0,0,2741,2742,1,0,0,0,2742, - 2744,1,0,0,0,2743,2745,3,642,321,0,2744,2743,1,0,0,0,2744,2745,1, - 0,0,0,2745,2746,1,0,0,0,2746,2750,3,738,369,0,2747,2749,3,76,38, - 0,2748,2747,1,0,0,0,2749,2752,1,0,0,0,2750,2748,1,0,0,0,2750,2751, - 1,0,0,0,2751,2949,1,0,0,0,2752,2750,1,0,0,0,2753,2758,5,6,0,0,2754, - 2756,5,31,0,0,2755,2757,3,706,353,0,2756,2755,1,0,0,0,2756,2757, - 1,0,0,0,2757,2759,1,0,0,0,2758,2754,1,0,0,0,2758,2759,1,0,0,0,2759, - 2760,1,0,0,0,2760,2761,5,131,0,0,2761,2763,5,92,0,0,2762,2764,3, - 74,37,0,2763,2762,1,0,0,0,2763,2764,1,0,0,0,2764,2765,1,0,0,0,2765, - 2769,3,738,369,0,2766,2768,3,76,38,0,2767,2766,1,0,0,0,2768,2771, - 1,0,0,0,2769,2767,1,0,0,0,2769,2770,1,0,0,0,2770,2949,1,0,0,0,2771, - 2769,1,0,0,0,2772,2777,5,6,0,0,2773,2775,5,31,0,0,2774,2776,3,706, - 353,0,2775,2774,1,0,0,0,2775,2776,1,0,0,0,2776,2778,1,0,0,0,2777, - 2773,1,0,0,0,2777,2778,1,0,0,0,2778,2779,1,0,0,0,2779,2781,5,182, - 0,0,2780,2782,7,19,0,0,2781,2780,1,0,0,0,2781,2782,1,0,0,0,2782, - 2784,1,0,0,0,2783,2785,3,642,321,0,2784,2783,1,0,0,0,2784,2785,1, - 0,0,0,2785,2787,1,0,0,0,2786,2788,3,74,37,0,2787,2786,1,0,0,0,2787, - 2788,1,0,0,0,2788,2789,1,0,0,0,2789,2793,3,738,369,0,2790,2792,3, - 76,38,0,2791,2790,1,0,0,0,2792,2795,1,0,0,0,2793,2791,1,0,0,0,2793, - 2794,1,0,0,0,2794,2949,1,0,0,0,2795,2793,1,0,0,0,2796,2801,5,6,0, - 0,2797,2799,5,31,0,0,2798,2800,3,706,353,0,2799,2798,1,0,0,0,2799, - 2800,1,0,0,0,2800,2802,1,0,0,0,2801,2797,1,0,0,0,2801,2802,1,0,0, - 0,2802,2803,1,0,0,0,2803,2804,5,67,0,0,2804,2806,5,92,0,0,2805,2807, - 3,642,321,0,2806,2805,1,0,0,0,2806,2807,1,0,0,0,2807,2808,1,0,0, - 0,2808,2809,3,738,369,0,2809,2810,3,98,49,0,2810,2949,1,0,0,0,2811, - 2813,5,6,0,0,2812,2814,3,90,45,0,2813,2812,1,0,0,0,2813,2814,1,0, - 0,0,2814,2949,1,0,0,0,2815,2816,5,51,0,0,2816,2817,7,37,0,0,2817, - 2949,3,706,353,0,2818,2819,5,8,0,0,2819,2820,7,37,0,0,2820,2822, - 3,706,353,0,2821,2823,5,114,0,0,2822,2821,1,0,0,0,2822,2823,1,0, - 0,0,2823,2825,1,0,0,0,2824,2826,5,57,0,0,2825,2824,1,0,0,0,2825, - 2826,1,0,0,0,2826,2949,1,0,0,0,2827,2829,5,308,0,0,2828,2830,5,857, - 0,0,2829,2828,1,0,0,0,2829,2830,1,0,0,0,2830,2831,1,0,0,0,2831,2949, - 7,38,0,0,2832,2834,5,8,0,0,2833,2835,5,29,0,0,2834,2833,1,0,0,0, - 2834,2835,1,0,0,0,2835,2836,1,0,0,0,2836,2844,3,662,331,0,2837,2838, - 5,155,0,0,2838,2839,5,42,0,0,2839,2845,3,754,377,0,2840,2841,5,155, - 0,0,2841,2845,7,17,0,0,2842,2843,5,51,0,0,2843,2845,5,42,0,0,2844, - 2837,1,0,0,0,2844,2840,1,0,0,0,2844,2842,1,0,0,0,2845,2949,1,0,0, - 0,2846,2847,5,8,0,0,2847,2848,5,82,0,0,2848,2849,3,642,321,0,2849, - 2850,7,17,0,0,2850,2949,1,0,0,0,2851,2853,5,25,0,0,2852,2854,5,29, - 0,0,2853,2852,1,0,0,0,2853,2854,1,0,0,0,2854,2855,1,0,0,0,2855,2856, - 3,662,331,0,2856,2857,3,658,329,0,2857,2861,3,94,47,0,2858,2862, - 5,402,0,0,2859,2860,5,306,0,0,2860,2862,3,662,331,0,2861,2858,1, - 0,0,0,2861,2859,1,0,0,0,2861,2862,1,0,0,0,2862,2949,1,0,0,0,2863, - 2865,5,42,0,0,2864,2863,1,0,0,0,2864,2865,1,0,0,0,2865,2866,1,0, - 0,0,2866,2867,5,26,0,0,2867,2868,5,155,0,0,2868,2869,5,857,0,0,2869, - 2875,3,688,344,0,2870,2872,5,28,0,0,2871,2873,5,857,0,0,2872,2871, - 1,0,0,0,2872,2873,1,0,0,0,2873,2874,1,0,0,0,2874,2876,3,690,345, - 0,2875,2870,1,0,0,0,2875,2876,1,0,0,0,2876,2949,1,0,0,0,2877,2878, - 5,33,0,0,2878,2882,5,176,0,0,2879,2883,5,823,0,0,2880,2881,5,26, - 0,0,2881,2883,5,155,0,0,2882,2879,1,0,0,0,2882,2880,1,0,0,0,2883, - 2884,1,0,0,0,2884,2887,3,688,344,0,2885,2886,5,28,0,0,2886,2888, - 3,690,345,0,2887,2885,1,0,0,0,2887,2888,1,0,0,0,2888,2949,1,0,0, - 0,2889,2890,7,39,0,0,2890,2949,5,93,0,0,2891,2892,7,40,0,0,2892, - 2949,5,658,0,0,2893,2895,5,51,0,0,2894,2896,5,29,0,0,2895,2894,1, - 0,0,0,2895,2896,1,0,0,0,2896,2897,1,0,0,0,2897,2949,3,662,331,0, - 2898,2899,5,51,0,0,2899,2900,7,19,0,0,2900,2949,3,642,321,0,2901, - 2902,5,51,0,0,2902,2903,5,131,0,0,2903,2949,5,92,0,0,2904,2905,5, - 51,0,0,2905,2906,5,67,0,0,2906,2907,5,92,0,0,2907,2949,3,706,353, - 0,2908,2949,5,66,0,0,2909,2911,5,104,0,0,2910,2912,5,857,0,0,2911, - 2910,1,0,0,0,2911,2912,1,0,0,0,2912,2913,1,0,0,0,2913,2949,7,4,0, - 0,2914,2916,5,492,0,0,2915,2917,5,29,0,0,2916,2915,1,0,0,0,2916, - 2917,1,0,0,0,2917,2918,1,0,0,0,2918,2919,3,662,331,0,2919,2923,3, - 94,47,0,2920,2924,5,402,0,0,2921,2922,5,306,0,0,2922,2924,3,662, - 331,0,2923,2920,1,0,0,0,2923,2921,1,0,0,0,2923,2924,1,0,0,0,2924, - 2949,1,0,0,0,2925,2926,5,125,0,0,2926,2927,5,20,0,0,2927,2949,3, - 660,330,0,2928,2929,5,141,0,0,2929,2930,5,29,0,0,2930,2931,3,662, - 331,0,2931,2932,5,176,0,0,2932,2933,3,658,329,0,2933,2949,1,0,0, - 0,2934,2935,5,141,0,0,2935,2936,7,19,0,0,2936,2937,3,642,321,0,2937, - 2938,5,176,0,0,2938,2939,3,638,319,0,2939,2949,1,0,0,0,2940,2942, - 5,141,0,0,2941,2943,7,41,0,0,2942,2941,1,0,0,0,2942,2943,1,0,0,0, - 2943,2944,1,0,0,0,2944,2949,3,648,324,0,2945,2946,7,42,0,0,2946, - 2949,5,681,0,0,2947,2949,3,148,74,0,2948,2684,1,0,0,0,2948,2694, - 1,0,0,0,2948,2705,1,0,0,0,2948,2723,1,0,0,0,2948,2738,1,0,0,0,2948, - 2753,1,0,0,0,2948,2772,1,0,0,0,2948,2796,1,0,0,0,2948,2811,1,0,0, - 0,2948,2815,1,0,0,0,2948,2818,1,0,0,0,2948,2827,1,0,0,0,2948,2832, - 1,0,0,0,2948,2846,1,0,0,0,2948,2851,1,0,0,0,2948,2864,1,0,0,0,2948, - 2877,1,0,0,0,2948,2889,1,0,0,0,2948,2891,1,0,0,0,2948,2893,1,0,0, - 0,2948,2898,1,0,0,0,2948,2901,1,0,0,0,2948,2904,1,0,0,0,2948,2908, - 1,0,0,0,2948,2909,1,0,0,0,2948,2914,1,0,0,0,2948,2925,1,0,0,0,2948, - 2928,1,0,0,0,2948,2934,1,0,0,0,2948,2940,1,0,0,0,2948,2945,1,0,0, - 0,2948,2947,1,0,0,0,2949,147,1,0,0,0,2950,2951,5,6,0,0,2951,2952, - 5,130,0,0,2952,2953,5,866,0,0,2953,2958,3,116,58,0,2954,2955,5,868, - 0,0,2955,2957,3,116,58,0,2956,2954,1,0,0,0,2957,2960,1,0,0,0,2958, - 2956,1,0,0,0,2958,2959,1,0,0,0,2959,2961,1,0,0,0,2960,2958,1,0,0, - 0,2961,2962,5,867,0,0,2962,3049,1,0,0,0,2963,2964,5,51,0,0,2964, - 2965,5,130,0,0,2965,3049,3,670,335,0,2966,2967,5,369,0,0,2967,2970, - 5,130,0,0,2968,2971,3,670,335,0,2969,2971,5,7,0,0,2970,2968,1,0, - 0,0,2970,2969,1,0,0,0,2971,2972,1,0,0,0,2972,3049,5,658,0,0,2973, - 2974,5,425,0,0,2974,2977,5,130,0,0,2975,2978,3,670,335,0,2976,2978, - 5,7,0,0,2977,2975,1,0,0,0,2977,2976,1,0,0,0,2978,2979,1,0,0,0,2979, - 3049,5,658,0,0,2980,2981,5,668,0,0,2981,2984,5,130,0,0,2982,2985, - 3,670,335,0,2983,2985,5,7,0,0,2984,2982,1,0,0,0,2984,2983,1,0,0, - 0,2985,3049,1,0,0,0,2986,2987,5,335,0,0,2987,2988,5,130,0,0,2988, - 3049,3,712,356,0,2989,2990,5,561,0,0,2990,2991,5,130,0,0,2991,2992, - 3,670,335,0,2992,2993,5,88,0,0,2993,2994,5,866,0,0,2994,2999,3,116, - 58,0,2995,2996,5,868,0,0,2996,2998,3,116,58,0,2997,2995,1,0,0,0, - 2998,3001,1,0,0,0,2999,2997,1,0,0,0,2999,3000,1,0,0,0,3000,3002, - 1,0,0,0,3001,2999,1,0,0,0,3002,3003,5,867,0,0,3003,3049,1,0,0,0, - 3004,3005,5,388,0,0,3005,3006,5,130,0,0,3006,3007,3,672,336,0,3007, - 3008,5,194,0,0,3008,3009,5,173,0,0,3009,3012,3,652,326,0,3010,3011, - 7,42,0,0,3011,3013,5,681,0,0,3012,3010,1,0,0,0,3012,3013,1,0,0,0, - 3013,3049,1,0,0,0,3014,3015,5,10,0,0,3015,3018,5,130,0,0,3016,3019, - 3,670,335,0,3017,3019,5,7,0,0,3018,3016,1,0,0,0,3018,3017,1,0,0, - 0,3019,3049,1,0,0,0,3020,3021,5,27,0,0,3021,3024,5,130,0,0,3022, - 3025,3,670,335,0,3023,3025,5,7,0,0,3024,3022,1,0,0,0,3024,3023,1, - 0,0,0,3025,3049,1,0,0,0,3026,3027,5,120,0,0,3027,3030,5,130,0,0, - 3028,3031,3,670,335,0,3029,3031,5,7,0,0,3030,3028,1,0,0,0,3030,3029, - 1,0,0,0,3031,3049,1,0,0,0,3032,3033,5,550,0,0,3033,3036,5,130,0, - 0,3034,3037,3,670,335,0,3035,3037,5,7,0,0,3036,3034,1,0,0,0,3036, - 3035,1,0,0,0,3037,3049,1,0,0,0,3038,3039,5,562,0,0,3039,3042,5,130, - 0,0,3040,3043,3,670,335,0,3041,3043,5,7,0,0,3042,3040,1,0,0,0,3042, - 3041,1,0,0,0,3043,3049,1,0,0,0,3044,3045,5,560,0,0,3045,3049,5,527, - 0,0,3046,3047,5,677,0,0,3047,3049,5,527,0,0,3048,2950,1,0,0,0,3048, - 2963,1,0,0,0,3048,2966,1,0,0,0,3048,2973,1,0,0,0,3048,2980,1,0,0, - 0,3048,2986,1,0,0,0,3048,2989,1,0,0,0,3048,3004,1,0,0,0,3048,3014, - 1,0,0,0,3048,3020,1,0,0,0,3048,3026,1,0,0,0,3048,3032,1,0,0,0,3048, - 3038,1,0,0,0,3048,3044,1,0,0,0,3048,3046,1,0,0,0,3049,149,1,0,0, - 0,3050,3051,5,51,0,0,3051,3053,7,0,0,0,3052,3054,3,758,379,0,3053, - 3052,1,0,0,0,3053,3054,1,0,0,0,3054,3055,1,0,0,0,3055,3056,3,628, - 314,0,3056,151,1,0,0,0,3057,3058,5,51,0,0,3058,3060,5,385,0,0,3059, - 3061,3,758,379,0,3060,3059,1,0,0,0,3060,3061,1,0,0,0,3061,3062,1, - 0,0,0,3062,3063,3,702,351,0,3063,153,1,0,0,0,3064,3065,5,51,0,0, - 3065,3067,5,82,0,0,3066,3068,7,1,0,0,3067,3066,1,0,0,0,3067,3068, - 1,0,0,0,3068,3069,1,0,0,0,3069,3070,3,642,321,0,3070,3071,5,119, - 0,0,3071,3084,3,652,326,0,3072,3074,5,308,0,0,3073,3075,5,857,0, - 0,3074,3073,1,0,0,0,3074,3075,1,0,0,0,3075,3076,1,0,0,0,3076,3083, - 7,3,0,0,3077,3079,5,104,0,0,3078,3080,5,857,0,0,3079,3078,1,0,0, - 0,3079,3080,1,0,0,0,3080,3081,1,0,0,0,3081,3083,7,4,0,0,3082,3072, - 1,0,0,0,3082,3077,1,0,0,0,3083,3086,1,0,0,0,3084,3082,1,0,0,0,3084, - 3085,1,0,0,0,3085,155,1,0,0,0,3086,3084,1,0,0,0,3087,3088,5,51,0, - 0,3088,3089,5,451,0,0,3089,3090,5,74,0,0,3090,3091,3,706,353,0,3091, - 3093,5,380,0,0,3092,3094,5,857,0,0,3093,3092,1,0,0,0,3093,3094,1, - 0,0,0,3094,3095,1,0,0,0,3095,3096,3,692,346,0,3096,157,1,0,0,0,3097, - 3098,5,51,0,0,3098,3100,5,132,0,0,3099,3101,3,758,379,0,3100,3099, - 1,0,0,0,3100,3101,1,0,0,0,3101,3102,1,0,0,0,3102,3103,3,702,351, - 0,3103,159,1,0,0,0,3104,3105,5,51,0,0,3105,3107,5,409,0,0,3106,3108, - 3,758,379,0,3107,3106,1,0,0,0,3107,3108,1,0,0,0,3108,3109,1,0,0, - 0,3109,3110,3,632,316,0,3110,161,1,0,0,0,3111,3112,5,51,0,0,3112, - 3114,5,592,0,0,3113,3115,3,758,379,0,3114,3113,1,0,0,0,3114,3115, - 1,0,0,0,3115,3116,1,0,0,0,3116,3117,3,706,353,0,3117,163,1,0,0,0, - 3118,3119,5,51,0,0,3119,3120,5,161,0,0,3120,3121,5,137,0,0,3121, - 3123,5,835,0,0,3122,3124,3,758,379,0,3123,3122,1,0,0,0,3123,3124, - 1,0,0,0,3124,3125,1,0,0,0,3125,3126,5,883,0,0,3126,165,1,0,0,0,3127, - 3129,5,51,0,0,3128,3130,5,660,0,0,3129,3128,1,0,0,0,3129,3130,1, - 0,0,0,3130,3131,1,0,0,0,3131,3133,5,173,0,0,3132,3134,3,758,379, - 0,3133,3132,1,0,0,0,3133,3134,1,0,0,0,3134,3135,1,0,0,0,3135,3137, - 3,650,325,0,3136,3138,7,43,0,0,3137,3136,1,0,0,0,3137,3138,1,0,0, - 0,3138,167,1,0,0,0,3139,3141,5,51,0,0,3140,3142,5,180,0,0,3141,3140, - 1,0,0,0,3141,3142,1,0,0,0,3142,3143,1,0,0,0,3143,3144,5,658,0,0, - 3144,3150,3,666,333,0,3145,3147,5,380,0,0,3146,3148,5,857,0,0,3147, - 3146,1,0,0,0,3147,3148,1,0,0,0,3148,3149,1,0,0,0,3149,3151,3,692, - 346,0,3150,3145,1,0,0,0,3150,3151,1,0,0,0,3151,169,1,0,0,0,3152, - 3153,5,51,0,0,3153,3155,5,178,0,0,3154,3156,3,758,379,0,3155,3154, - 1,0,0,0,3155,3156,1,0,0,0,3156,3157,1,0,0,0,3157,3158,3,702,351, - 0,3158,171,1,0,0,0,3159,3160,5,51,0,0,3160,3162,5,684,0,0,3161,3163, - 3,758,379,0,3162,3161,1,0,0,0,3162,3163,1,0,0,0,3163,3164,1,0,0, - 0,3164,3169,3,636,318,0,3165,3166,5,868,0,0,3166,3168,3,636,318, - 0,3167,3165,1,0,0,0,3168,3171,1,0,0,0,3169,3167,1,0,0,0,3169,3170, - 1,0,0,0,3170,3173,1,0,0,0,3171,3169,1,0,0,0,3172,3174,7,43,0,0,3173, - 3172,1,0,0,0,3173,3174,1,0,0,0,3174,173,1,0,0,0,3175,3176,5,51,0, - 0,3176,3178,5,582,0,0,3177,3179,3,758,379,0,3178,3177,1,0,0,0,3178, - 3179,1,0,0,0,3179,3180,1,0,0,0,3180,3181,3,654,327,0,3181,175,1, - 0,0,0,3182,3183,5,155,0,0,3183,3184,5,42,0,0,3184,3188,5,582,0,0, - 3185,3189,5,505,0,0,3186,3189,5,7,0,0,3187,3189,3,654,327,0,3188, - 3185,1,0,0,0,3188,3186,1,0,0,0,3188,3187,1,0,0,0,3189,3190,1,0,0, - 0,3190,3191,5,176,0,0,3191,3196,3,656,328,0,3192,3193,5,868,0,0, - 3193,3195,3,656,328,0,3194,3192,1,0,0,0,3195,3198,1,0,0,0,3196,3194, - 1,0,0,0,3196,3197,1,0,0,0,3197,3203,1,0,0,0,3198,3196,1,0,0,0,3199, - 3200,5,155,0,0,3200,3201,5,582,0,0,3201,3203,3,468,234,0,3202,3182, - 1,0,0,0,3202,3199,1,0,0,0,3203,177,1,0,0,0,3204,3205,5,141,0,0,3205, - 3206,5,173,0,0,3206,3211,3,180,90,0,3207,3208,5,868,0,0,3208,3210, - 3,180,90,0,3209,3207,1,0,0,0,3210,3213,1,0,0,0,3211,3209,1,0,0,0, - 3211,3212,1,0,0,0,3212,179,1,0,0,0,3213,3211,1,0,0,0,3214,3215,3, - 652,326,0,3215,3216,5,176,0,0,3216,3217,3,648,324,0,3217,181,1,0, - 0,0,3218,3220,5,668,0,0,3219,3221,5,173,0,0,3220,3219,1,0,0,0,3220, - 3221,1,0,0,0,3221,3222,1,0,0,0,3222,3223,3,652,326,0,3223,183,1, - 0,0,0,3224,3225,5,21,0,0,3225,3232,3,702,351,0,3226,3229,5,866,0, - 0,3227,3230,3,748,374,0,3228,3230,3,740,370,0,3229,3227,1,0,0,0, - 3229,3228,1,0,0,0,3229,3230,1,0,0,0,3230,3231,1,0,0,0,3231,3233, - 5,867,0,0,3232,3226,1,0,0,0,3232,3233,1,0,0,0,3233,185,1,0,0,0,3234, - 3237,3,240,120,0,3235,3237,3,242,121,0,3236,3234,1,0,0,0,3236,3235, - 1,0,0,0,3237,187,1,0,0,0,3238,3239,5,371,0,0,3239,3240,3,740,370, - 0,3240,189,1,0,0,0,3241,3246,3,244,122,0,3242,3246,3,246,123,0,3243, - 3246,3,248,124,0,3244,3246,3,250,125,0,3245,3241,1,0,0,0,3245,3242, - 1,0,0,0,3245,3243,1,0,0,0,3245,3244,1,0,0,0,3246,191,1,0,0,0,3247, - 3249,5,86,0,0,3248,3250,7,44,0,0,3249,3248,1,0,0,0,3249,3250,1,0, - 0,0,3250,3252,1,0,0,0,3251,3253,5,79,0,0,3252,3251,1,0,0,0,3252, - 3253,1,0,0,0,3253,3255,1,0,0,0,3254,3256,5,88,0,0,3255,3254,1,0, - 0,0,3255,3256,1,0,0,0,3256,3257,1,0,0,0,3257,3264,3,652,326,0,3258, - 3259,5,130,0,0,3259,3261,5,866,0,0,3260,3262,3,670,335,0,3261,3260, - 1,0,0,0,3261,3262,1,0,0,0,3262,3263,1,0,0,0,3263,3265,5,867,0,0, - 3264,3258,1,0,0,0,3264,3265,1,0,0,0,3265,3277,1,0,0,0,3266,3268, - 3,268,134,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268,3271,1,0,0, - 0,3269,3272,3,742,371,0,3270,3272,3,196,98,0,3271,3269,1,0,0,0,3271, - 3270,1,0,0,0,3271,3272,1,0,0,0,3272,3274,1,0,0,0,3273,3275,3,194, - 97,0,3274,3273,1,0,0,0,3274,3275,1,0,0,0,3275,3278,1,0,0,0,3276, - 3278,3,232,116,0,3277,3267,1,0,0,0,3277,3276,1,0,0,0,3278,3280,1, - 0,0,0,3279,3281,3,194,97,0,3280,3279,1,0,0,0,3280,3281,1,0,0,0,3281, - 3294,1,0,0,0,3282,3283,5,119,0,0,3283,3284,5,373,0,0,3284,3285,5, - 92,0,0,3285,3286,5,185,0,0,3286,3291,3,234,117,0,3287,3288,5,868, - 0,0,3288,3290,3,234,117,0,3289,3287,1,0,0,0,3290,3293,1,0,0,0,3291, - 3289,1,0,0,0,3291,3292,1,0,0,0,3292,3295,1,0,0,0,3293,3291,1,0,0, - 0,3294,3282,1,0,0,0,3294,3295,1,0,0,0,3295,193,1,0,0,0,3296,3297, - 5,13,0,0,3297,3299,3,706,353,0,3298,3300,3,268,134,0,3299,3298,1, - 0,0,0,3299,3300,1,0,0,0,3300,195,1,0,0,0,3301,3306,3,210,105,0,3302, - 3303,5,173,0,0,3303,3306,3,652,326,0,3304,3306,3,230,115,0,3305, - 3301,1,0,0,0,3305,3302,1,0,0,0,3305,3304,1,0,0,0,3306,197,1,0,0, - 0,3307,3313,3,200,100,0,3308,3310,5,828,0,0,3309,3311,7,45,0,0,3310, - 3309,1,0,0,0,3310,3311,1,0,0,0,3311,3312,1,0,0,0,3312,3314,3,200, - 100,0,3313,3308,1,0,0,0,3314,3315,1,0,0,0,3315,3313,1,0,0,0,3315, - 3316,1,0,0,0,3316,199,1,0,0,0,3317,3319,5,866,0,0,3318,3317,1,0, - 0,0,3318,3319,1,0,0,0,3319,3320,1,0,0,0,3320,3322,3,280,140,0,3321, - 3323,5,867,0,0,3322,3321,1,0,0,0,3322,3323,1,0,0,0,3323,201,1,0, - 0,0,3324,3325,5,103,0,0,3325,3327,5,360,0,0,3326,3328,7,46,0,0,3327, - 3326,1,0,0,0,3327,3328,1,0,0,0,3328,3330,1,0,0,0,3329,3331,5,450, - 0,0,3330,3329,1,0,0,0,3330,3331,1,0,0,0,3331,3332,1,0,0,0,3332,3333, - 5,83,0,0,3333,3335,5,882,0,0,3334,3336,7,7,0,0,3335,3334,1,0,0,0, - 3335,3336,1,0,0,0,3336,3337,1,0,0,0,3337,3338,5,88,0,0,3338,3339, - 5,173,0,0,3339,3345,3,652,326,0,3340,3341,5,130,0,0,3341,3342,5, - 866,0,0,3342,3343,3,670,335,0,3343,3344,5,867,0,0,3344,3346,1,0, - 0,0,3345,3340,1,0,0,0,3345,3346,1,0,0,0,3346,3350,1,0,0,0,3347,3348, - 5,26,0,0,3348,3349,5,155,0,0,3349,3351,3,688,344,0,3350,3347,1,0, - 0,0,3350,3351,1,0,0,0,3351,3358,1,0,0,0,3352,3354,7,47,0,0,3353, - 3355,3,304,152,0,3354,3353,1,0,0,0,3355,3356,1,0,0,0,3356,3354,1, - 0,0,0,3356,3357,1,0,0,0,3357,3359,1,0,0,0,3358,3352,1,0,0,0,3358, - 3359,1,0,0,0,3359,3366,1,0,0,0,3360,3362,5,102,0,0,3361,3363,3,306, - 153,0,3362,3361,1,0,0,0,3363,3364,1,0,0,0,3364,3362,1,0,0,0,3364, - 3365,1,0,0,0,3365,3367,1,0,0,0,3366,3360,1,0,0,0,3366,3367,1,0,0, - 0,3367,3372,1,0,0,0,3368,3369,5,79,0,0,3369,3370,3,712,356,0,3370, - 3371,7,48,0,0,3371,3373,1,0,0,0,3372,3368,1,0,0,0,3372,3373,1,0, - 0,0,3373,3385,1,0,0,0,3374,3375,5,866,0,0,3375,3380,3,236,118,0, - 3376,3377,5,868,0,0,3377,3379,3,236,118,0,3378,3376,1,0,0,0,3379, - 3382,1,0,0,0,3380,3378,1,0,0,0,3380,3381,1,0,0,0,3381,3383,1,0,0, - 0,3382,3380,1,0,0,0,3383,3384,5,867,0,0,3384,3386,1,0,0,0,3385,3374, - 1,0,0,0,3385,3386,1,0,0,0,3386,3396,1,0,0,0,3387,3388,5,155,0,0, - 3388,3393,3,234,117,0,3389,3390,5,868,0,0,3390,3392,3,234,117,0, - 3391,3389,1,0,0,0,3392,3395,1,0,0,0,3393,3391,1,0,0,0,3393,3394, - 1,0,0,0,3394,3397,1,0,0,0,3395,3393,1,0,0,0,3396,3387,1,0,0,0,3396, - 3397,1,0,0,0,3397,203,1,0,0,0,3398,3399,5,103,0,0,3399,3401,5,695, - 0,0,3400,3402,7,46,0,0,3401,3400,1,0,0,0,3401,3402,1,0,0,0,3402, - 3404,1,0,0,0,3403,3405,5,450,0,0,3404,3403,1,0,0,0,3404,3405,1,0, - 0,0,3405,3406,1,0,0,0,3406,3407,5,83,0,0,3407,3409,5,882,0,0,3408, - 3410,7,7,0,0,3409,3408,1,0,0,0,3409,3410,1,0,0,0,3410,3411,1,0,0, - 0,3411,3412,5,88,0,0,3412,3413,5,173,0,0,3413,3417,3,652,326,0,3414, - 3415,5,26,0,0,3415,3416,5,155,0,0,3416,3418,3,688,344,0,3417,3414, - 1,0,0,0,3417,3418,1,0,0,0,3418,3429,1,0,0,0,3419,3420,5,587,0,0, - 3420,3421,5,423,0,0,3421,3423,5,20,0,0,3422,3424,5,859,0,0,3423, - 3422,1,0,0,0,3423,3424,1,0,0,0,3424,3425,1,0,0,0,3425,3427,5,882, - 0,0,3426,3428,5,858,0,0,3427,3426,1,0,0,0,3427,3428,1,0,0,0,3428, - 3430,1,0,0,0,3429,3419,1,0,0,0,3429,3430,1,0,0,0,3430,3435,1,0,0, - 0,3431,3432,5,79,0,0,3432,3433,3,712,356,0,3433,3434,7,48,0,0,3434, - 3436,1,0,0,0,3435,3431,1,0,0,0,3435,3436,1,0,0,0,3436,3448,1,0,0, - 0,3437,3438,5,866,0,0,3438,3443,3,236,118,0,3439,3440,5,868,0,0, - 3440,3442,3,236,118,0,3441,3439,1,0,0,0,3442,3445,1,0,0,0,3443,3441, - 1,0,0,0,3443,3444,1,0,0,0,3444,3446,1,0,0,0,3445,3443,1,0,0,0,3446, - 3447,5,867,0,0,3447,3449,1,0,0,0,3448,3437,1,0,0,0,3448,3449,1,0, - 0,0,3449,3459,1,0,0,0,3450,3451,5,155,0,0,3451,3456,3,234,117,0, - 3452,3453,5,868,0,0,3453,3455,3,234,117,0,3454,3452,1,0,0,0,3455, - 3458,1,0,0,0,3456,3454,1,0,0,0,3456,3457,1,0,0,0,3457,3460,1,0,0, - 0,3458,3456,1,0,0,0,3459,3450,1,0,0,0,3459,3460,1,0,0,0,3460,205, - 1,0,0,0,3461,3462,5,866,0,0,3462,3464,3,224,112,0,3463,3465,3,258, - 129,0,3464,3463,1,0,0,0,3464,3465,1,0,0,0,3465,3467,1,0,0,0,3466, - 3468,3,318,159,0,3467,3466,1,0,0,0,3467,3468,1,0,0,0,3468,3469,1, - 0,0,0,3469,3471,5,867,0,0,3470,3472,3,258,129,0,3471,3470,1,0,0, - 0,3471,3472,1,0,0,0,3472,3474,1,0,0,0,3473,3475,3,318,159,0,3474, - 3473,1,0,0,0,3474,3475,1,0,0,0,3475,3477,1,0,0,0,3476,3478,3,302, - 151,0,3477,3476,1,0,0,0,3477,3478,1,0,0,0,3478,207,1,0,0,0,3479, - 3481,5,143,0,0,3480,3482,7,49,0,0,3481,3480,1,0,0,0,3481,3482,1, - 0,0,0,3482,3484,1,0,0,0,3483,3485,5,88,0,0,3484,3483,1,0,0,0,3484, - 3485,1,0,0,0,3485,3486,1,0,0,0,3486,3492,3,652,326,0,3487,3488,5, - 130,0,0,3488,3489,5,866,0,0,3489,3490,3,670,335,0,3490,3491,5,867, - 0,0,3491,3493,1,0,0,0,3492,3487,1,0,0,0,3492,3493,1,0,0,0,3493,3502, - 1,0,0,0,3494,3495,5,866,0,0,3495,3496,3,660,330,0,3496,3497,5,867, - 0,0,3497,3499,1,0,0,0,3498,3494,1,0,0,0,3498,3499,1,0,0,0,3499,3500, - 1,0,0,0,3500,3503,3,228,114,0,3501,3503,3,232,116,0,3502,3498,1, - 0,0,0,3502,3501,1,0,0,0,3503,209,1,0,0,0,3504,3508,3,280,140,0,3505, - 3507,3,282,141,0,3506,3505,1,0,0,0,3507,3510,1,0,0,0,3508,3506,1, - 0,0,0,3508,3509,1,0,0,0,3509,3519,1,0,0,0,3510,3508,1,0,0,0,3511, - 3513,5,181,0,0,3512,3514,7,45,0,0,3513,3512,1,0,0,0,3513,3514,1, - 0,0,0,3514,3517,1,0,0,0,3515,3518,3,280,140,0,3516,3518,3,278,139, - 0,3517,3515,1,0,0,0,3517,3516,1,0,0,0,3518,3520,1,0,0,0,3519,3511, - 1,0,0,0,3519,3520,1,0,0,0,3520,3525,1,0,0,0,3521,3522,5,868,0,0, - 3522,3524,3,284,142,0,3523,3521,1,0,0,0,3524,3527,1,0,0,0,3525,3523, - 1,0,0,0,3525,3526,1,0,0,0,3526,3529,1,0,0,0,3527,3525,1,0,0,0,3528, - 3530,3,258,129,0,3529,3528,1,0,0,0,3529,3530,1,0,0,0,3530,3532,1, - 0,0,0,3531,3533,3,318,159,0,3532,3531,1,0,0,0,3532,3533,1,0,0,0, - 3533,3535,1,0,0,0,3534,3536,3,238,119,0,3535,3534,1,0,0,0,3535,3536, - 1,0,0,0,3536,3538,1,0,0,0,3537,3539,3,302,151,0,3538,3537,1,0,0, - 0,3538,3539,1,0,0,0,3539,3564,1,0,0,0,3540,3544,3,278,139,0,3541, - 3543,3,282,141,0,3542,3541,1,0,0,0,3543,3546,1,0,0,0,3544,3542,1, - 0,0,0,3544,3545,1,0,0,0,3545,3552,1,0,0,0,3546,3544,1,0,0,0,3547, - 3549,5,181,0,0,3548,3550,7,45,0,0,3549,3548,1,0,0,0,3549,3550,1, - 0,0,0,3550,3551,1,0,0,0,3551,3553,3,278,139,0,3552,3547,1,0,0,0, - 3552,3553,1,0,0,0,3553,3555,1,0,0,0,3554,3556,3,258,129,0,3555,3554, - 1,0,0,0,3555,3556,1,0,0,0,3556,3558,1,0,0,0,3557,3559,3,318,159, - 0,3558,3557,1,0,0,0,3558,3559,1,0,0,0,3559,3561,1,0,0,0,3560,3562, - 3,238,119,0,3561,3560,1,0,0,0,3561,3562,1,0,0,0,3562,3564,1,0,0, - 0,3563,3504,1,0,0,0,3563,3540,1,0,0,0,3564,211,1,0,0,0,3565,3567, - 3,50,25,0,3566,3565,1,0,0,0,3566,3567,1,0,0,0,3567,3568,1,0,0,0, - 3568,3570,3,214,107,0,3569,3571,3,258,129,0,3570,3569,1,0,0,0,3570, - 3571,1,0,0,0,3571,3573,1,0,0,0,3572,3574,3,318,159,0,3573,3572,1, - 0,0,0,3573,3574,1,0,0,0,3574,3576,1,0,0,0,3575,3577,3,302,151,0, - 3576,3575,1,0,0,0,3576,3577,1,0,0,0,3577,213,1,0,0,0,3578,3579,6, - 107,-1,0,3579,3580,3,216,108,0,3580,3595,1,0,0,0,3581,3582,10,2, - 0,0,3582,3584,5,181,0,0,3583,3585,7,45,0,0,3584,3583,1,0,0,0,3584, - 3585,1,0,0,0,3585,3586,1,0,0,0,3586,3594,3,216,108,0,3587,3588,10, - 1,0,0,3588,3590,5,59,0,0,3589,3591,7,45,0,0,3590,3589,1,0,0,0,3590, - 3591,1,0,0,0,3591,3592,1,0,0,0,3592,3594,3,216,108,0,3593,3581,1, - 0,0,0,3593,3587,1,0,0,0,3594,3597,1,0,0,0,3595,3593,1,0,0,0,3595, - 3596,1,0,0,0,3596,215,1,0,0,0,3597,3595,1,0,0,0,3598,3599,6,108, - -1,0,3599,3600,3,218,109,0,3600,3609,1,0,0,0,3601,3602,10,1,0,0, - 3602,3604,5,828,0,0,3603,3605,7,45,0,0,3604,3603,1,0,0,0,3604,3605, - 1,0,0,0,3605,3606,1,0,0,0,3606,3608,3,218,109,0,3607,3601,1,0,0, - 0,3608,3611,1,0,0,0,3609,3607,1,0,0,0,3609,3610,1,0,0,0,3610,217, - 1,0,0,0,3611,3609,1,0,0,0,3612,3627,3,226,113,0,3613,3614,5,866, - 0,0,3614,3616,3,214,107,0,3615,3617,3,258,129,0,3616,3615,1,0,0, - 0,3616,3617,1,0,0,0,3617,3619,1,0,0,0,3618,3620,3,318,159,0,3619, - 3618,1,0,0,0,3619,3620,1,0,0,0,3620,3622,1,0,0,0,3621,3623,3,302, - 151,0,3622,3621,1,0,0,0,3622,3623,1,0,0,0,3623,3624,1,0,0,0,3624, - 3625,5,867,0,0,3625,3627,1,0,0,0,3626,3612,1,0,0,0,3626,3613,1,0, - 0,0,3627,219,1,0,0,0,3628,3631,3,254,127,0,3629,3631,3,256,128,0, - 3630,3628,1,0,0,0,3630,3629,1,0,0,0,3631,221,1,0,0,0,3632,3636,3, - 230,115,0,3633,3634,5,125,0,0,3634,3635,5,20,0,0,3635,3637,3,674, - 337,0,3636,3633,1,0,0,0,3636,3637,1,0,0,0,3637,3640,1,0,0,0,3638, - 3639,5,100,0,0,3639,3641,3,320,160,0,3640,3638,1,0,0,0,3640,3641, - 1,0,0,0,3641,223,1,0,0,0,3642,3647,3,226,113,0,3643,3644,7,50,0, - 0,3644,3646,3,226,113,0,3645,3643,1,0,0,0,3646,3649,1,0,0,0,3647, - 3645,1,0,0,0,3647,3648,1,0,0,0,3648,3651,1,0,0,0,3649,3647,1,0,0, - 0,3650,3652,3,258,129,0,3651,3650,1,0,0,0,3651,3652,1,0,0,0,3652, - 3654,1,0,0,0,3653,3655,3,318,159,0,3654,3653,1,0,0,0,3654,3655,1, - 0,0,0,3655,3657,1,0,0,0,3656,3658,3,302,151,0,3657,3656,1,0,0,0, - 3657,3658,1,0,0,0,3658,225,1,0,0,0,3659,3663,3,210,105,0,3660,3663, - 3,618,309,0,3661,3663,3,222,111,0,3662,3659,1,0,0,0,3662,3660,1, - 0,0,0,3662,3661,1,0,0,0,3663,227,1,0,0,0,3664,3670,3,210,105,0,3665, - 3666,5,173,0,0,3666,3670,3,652,326,0,3667,3670,3,742,371,0,3668, - 3670,3,230,115,0,3669,3664,1,0,0,0,3669,3665,1,0,0,0,3669,3667,1, - 0,0,0,3669,3668,1,0,0,0,3670,229,1,0,0,0,3671,3672,5,189,0,0,3672, - 3673,5,586,0,0,3673,3679,3,744,372,0,3674,3675,5,868,0,0,3675,3676, - 5,586,0,0,3676,3678,3,744,372,0,3677,3674,1,0,0,0,3678,3681,1,0, - 0,0,3679,3677,1,0,0,0,3679,3680,1,0,0,0,3680,231,1,0,0,0,3681,3679, - 1,0,0,0,3682,3683,5,155,0,0,3683,3688,3,234,117,0,3684,3685,5,868, - 0,0,3685,3687,3,234,117,0,3686,3684,1,0,0,0,3687,3690,1,0,0,0,3688, - 3686,1,0,0,0,3688,3689,1,0,0,0,3689,233,1,0,0,0,3690,3688,1,0,0, - 0,3691,3692,3,662,331,0,3692,3693,5,857,0,0,3693,3694,3,746,373, - 0,3694,235,1,0,0,0,3695,3698,3,706,353,0,3696,3698,5,892,0,0,3697, - 3695,1,0,0,0,3697,3696,1,0,0,0,3698,237,1,0,0,0,3699,3700,5,65,0, - 0,3700,3710,7,51,0,0,3701,3702,5,510,0,0,3702,3707,3,652,326,0,3703, - 3704,5,868,0,0,3704,3706,3,652,326,0,3705,3703,1,0,0,0,3706,3709, - 1,0,0,0,3707,3705,1,0,0,0,3707,3708,1,0,0,0,3708,3711,1,0,0,0,3709, - 3707,1,0,0,0,3710,3701,1,0,0,0,3710,3711,1,0,0,0,3711,3714,1,0,0, - 0,3712,3713,7,52,0,0,3713,3715,5,105,0,0,3714,3712,1,0,0,0,3714, - 3715,1,0,0,0,3715,3721,1,0,0,0,3716,3717,5,104,0,0,3717,3718,5,80, - 0,0,3718,3719,5,594,0,0,3719,3721,5,491,0,0,3720,3699,1,0,0,0,3720, - 3716,1,0,0,0,3721,239,1,0,0,0,3722,3724,5,44,0,0,3723,3725,5,107, - 0,0,3724,3723,1,0,0,0,3724,3725,1,0,0,0,3725,3727,1,0,0,0,3726,3728, - 5,549,0,0,3727,3726,1,0,0,0,3727,3728,1,0,0,0,3728,3730,1,0,0,0, - 3729,3731,5,79,0,0,3730,3729,1,0,0,0,3730,3731,1,0,0,0,3731,3732, - 1,0,0,0,3732,3733,5,68,0,0,3733,3738,3,652,326,0,3734,3736,5,13, - 0,0,3735,3734,1,0,0,0,3735,3736,1,0,0,0,3736,3737,1,0,0,0,3737,3739, - 3,706,353,0,3738,3735,1,0,0,0,3738,3739,1,0,0,0,3739,3745,1,0,0, - 0,3740,3741,5,130,0,0,3741,3742,5,866,0,0,3742,3743,3,670,335,0, - 3743,3744,5,867,0,0,3744,3746,1,0,0,0,3745,3740,1,0,0,0,3745,3746, - 1,0,0,0,3746,3749,1,0,0,0,3747,3748,5,192,0,0,3748,3750,3,804,402, - 0,3749,3747,1,0,0,0,3749,3750,1,0,0,0,3750,3752,1,0,0,0,3751,3753, - 3,258,129,0,3752,3751,1,0,0,0,3752,3753,1,0,0,0,3753,3756,1,0,0, - 0,3754,3755,5,100,0,0,3755,3757,3,320,160,0,3756,3754,1,0,0,0,3756, - 3757,1,0,0,0,3757,241,1,0,0,0,3758,3760,5,44,0,0,3759,3761,5,107, - 0,0,3760,3759,1,0,0,0,3760,3761,1,0,0,0,3761,3763,1,0,0,0,3762,3764, - 5,549,0,0,3763,3762,1,0,0,0,3763,3764,1,0,0,0,3764,3766,1,0,0,0, - 3765,3767,5,79,0,0,3766,3765,1,0,0,0,3766,3767,1,0,0,0,3767,3807, - 1,0,0,0,3768,3771,3,652,326,0,3769,3770,5,865,0,0,3770,3772,5,850, - 0,0,3771,3769,1,0,0,0,3771,3772,1,0,0,0,3772,3781,1,0,0,0,3773,3774, - 5,868,0,0,3774,3777,3,652,326,0,3775,3776,5,865,0,0,3776,3778,5, - 850,0,0,3777,3775,1,0,0,0,3777,3778,1,0,0,0,3778,3780,1,0,0,0,3779, - 3773,1,0,0,0,3780,3783,1,0,0,0,3781,3779,1,0,0,0,3781,3782,1,0,0, - 0,3782,3784,1,0,0,0,3783,3781,1,0,0,0,3784,3785,5,68,0,0,3785,3786, - 3,262,131,0,3786,3808,1,0,0,0,3787,3788,5,68,0,0,3788,3791,3,652, - 326,0,3789,3790,5,865,0,0,3790,3792,5,850,0,0,3791,3789,1,0,0,0, - 3791,3792,1,0,0,0,3792,3801,1,0,0,0,3793,3794,5,868,0,0,3794,3797, - 3,652,326,0,3795,3796,5,865,0,0,3796,3798,5,850,0,0,3797,3795,1, - 0,0,0,3797,3798,1,0,0,0,3798,3800,1,0,0,0,3799,3793,1,0,0,0,3800, - 3803,1,0,0,0,3801,3799,1,0,0,0,3801,3802,1,0,0,0,3802,3804,1,0,0, - 0,3803,3801,1,0,0,0,3804,3805,5,188,0,0,3805,3806,3,262,131,0,3806, - 3808,1,0,0,0,3807,3768,1,0,0,0,3807,3787,1,0,0,0,3808,3811,1,0,0, - 0,3809,3810,5,192,0,0,3810,3812,3,804,402,0,3811,3809,1,0,0,0,3811, - 3812,1,0,0,0,3812,243,1,0,0,0,3813,3814,5,417,0,0,3814,3815,3,652, - 326,0,3815,3820,5,516,0,0,3816,3818,5,13,0,0,3817,3816,1,0,0,0,3817, - 3818,1,0,0,0,3818,3819,1,0,0,0,3819,3821,3,706,353,0,3820,3817,1, - 0,0,0,3820,3821,1,0,0,0,3821,245,1,0,0,0,3822,3823,5,417,0,0,3823, - 3824,3,652,326,0,3824,3825,5,135,0,0,3825,3832,3,642,321,0,3826, - 3827,3,814,407,0,3827,3828,5,866,0,0,3828,3829,3,748,374,0,3829, - 3830,5,867,0,0,3830,3833,1,0,0,0,3831,3833,7,53,0,0,3832,3826,1, - 0,0,0,3832,3831,1,0,0,0,3833,3836,1,0,0,0,3834,3835,5,192,0,0,3835, - 3837,3,804,402,0,3836,3834,1,0,0,0,3836,3837,1,0,0,0,3837,3840,1, - 0,0,0,3838,3839,5,100,0,0,3839,3841,3,320,160,0,3840,3838,1,0,0, - 0,3840,3841,1,0,0,0,3841,247,1,0,0,0,3842,3843,5,417,0,0,3843,3844, - 3,652,326,0,3844,3845,5,135,0,0,3845,3848,7,54,0,0,3846,3847,5,192, - 0,0,3847,3849,3,804,402,0,3848,3846,1,0,0,0,3848,3849,1,0,0,0,3849, - 3852,1,0,0,0,3850,3851,5,100,0,0,3851,3853,3,320,160,0,3852,3850, - 1,0,0,0,3852,3853,1,0,0,0,3853,249,1,0,0,0,3854,3855,5,417,0,0,3855, - 3856,3,652,326,0,3856,3857,5,334,0,0,3857,251,1,0,0,0,3858,3859, - 5,425,0,0,3859,3860,5,173,0,0,3860,3861,5,68,0,0,3861,3866,3,716, - 358,0,3862,3863,5,868,0,0,3863,3865,3,716,358,0,3864,3862,1,0,0, - 0,3865,3868,1,0,0,0,3866,3864,1,0,0,0,3866,3867,1,0,0,0,3867,253, - 1,0,0,0,3868,3866,1,0,0,0,3869,3871,5,185,0,0,3870,3872,5,107,0, - 0,3871,3870,1,0,0,0,3871,3872,1,0,0,0,3872,3874,1,0,0,0,3873,3875, - 5,79,0,0,3874,3873,1,0,0,0,3874,3875,1,0,0,0,3875,3876,1,0,0,0,3876, - 3881,3,652,326,0,3877,3879,5,13,0,0,3878,3877,1,0,0,0,3878,3879, - 1,0,0,0,3879,3880,1,0,0,0,3880,3882,3,706,353,0,3881,3878,1,0,0, - 0,3881,3882,1,0,0,0,3882,3883,1,0,0,0,3883,3884,5,155,0,0,3884,3889, - 3,234,117,0,3885,3886,5,868,0,0,3886,3888,3,234,117,0,3887,3885, - 1,0,0,0,3888,3891,1,0,0,0,3889,3887,1,0,0,0,3889,3890,1,0,0,0,3890, - 3894,1,0,0,0,3891,3889,1,0,0,0,3892,3893,5,192,0,0,3893,3895,3,804, - 402,0,3894,3892,1,0,0,0,3894,3895,1,0,0,0,3895,3897,1,0,0,0,3896, - 3898,3,258,129,0,3897,3896,1,0,0,0,3897,3898,1,0,0,0,3898,3900,1, - 0,0,0,3899,3901,3,318,159,0,3900,3899,1,0,0,0,3900,3901,1,0,0,0, - 3901,255,1,0,0,0,3902,3904,5,185,0,0,3903,3905,5,107,0,0,3904,3903, - 1,0,0,0,3904,3905,1,0,0,0,3905,3907,1,0,0,0,3906,3908,5,79,0,0,3907, - 3906,1,0,0,0,3907,3908,1,0,0,0,3908,3909,1,0,0,0,3909,3910,3,262, - 131,0,3910,3911,5,155,0,0,3911,3916,3,234,117,0,3912,3913,5,868, - 0,0,3913,3915,3,234,117,0,3914,3912,1,0,0,0,3915,3918,1,0,0,0,3916, - 3914,1,0,0,0,3916,3917,1,0,0,0,3917,3921,1,0,0,0,3918,3916,1,0,0, - 0,3919,3920,5,192,0,0,3920,3922,3,804,402,0,3921,3919,1,0,0,0,3921, - 3922,1,0,0,0,3922,257,1,0,0,0,3923,3924,5,125,0,0,3924,3925,5,20, - 0,0,3925,3930,3,260,130,0,3926,3927,5,868,0,0,3927,3929,3,260,130, - 0,3928,3926,1,0,0,0,3929,3932,1,0,0,0,3930,3928,1,0,0,0,3930,3931, - 1,0,0,0,3931,259,1,0,0,0,3932,3930,1,0,0,0,3933,3935,3,804,402,0, - 3934,3936,7,55,0,0,3935,3934,1,0,0,0,3935,3936,1,0,0,0,3936,261, - 1,0,0,0,3937,3942,3,264,132,0,3938,3939,5,868,0,0,3939,3941,3,264, - 132,0,3940,3938,1,0,0,0,3941,3944,1,0,0,0,3942,3940,1,0,0,0,3942, - 3943,1,0,0,0,3943,263,1,0,0,0,3944,3942,1,0,0,0,3945,3949,3,266, - 133,0,3946,3948,3,274,137,0,3947,3946,1,0,0,0,3948,3951,1,0,0,0, - 3949,3947,1,0,0,0,3949,3950,1,0,0,0,3950,3964,1,0,0,0,3951,3949, - 1,0,0,0,3952,3953,5,866,0,0,3953,3957,3,266,133,0,3954,3956,3,274, - 137,0,3955,3954,1,0,0,0,3956,3959,1,0,0,0,3957,3955,1,0,0,0,3957, - 3958,1,0,0,0,3958,3960,1,0,0,0,3959,3957,1,0,0,0,3960,3961,5,867, - 0,0,3961,3964,1,0,0,0,3962,3964,3,286,143,0,3963,3945,1,0,0,0,3963, - 3952,1,0,0,0,3963,3962,1,0,0,0,3964,265,1,0,0,0,3965,3971,3,652, - 326,0,3966,3967,5,130,0,0,3967,3968,5,866,0,0,3968,3969,3,670,335, - 0,3969,3970,5,867,0,0,3970,3972,1,0,0,0,3971,3966,1,0,0,0,3971,3972, - 1,0,0,0,3972,3977,1,0,0,0,3973,3975,5,13,0,0,3974,3973,1,0,0,0,3974, - 3975,1,0,0,0,3975,3976,1,0,0,0,3976,3978,3,706,353,0,3977,3974,1, - 0,0,0,3977,3978,1,0,0,0,3978,3987,1,0,0,0,3979,3984,3,270,135,0, - 3980,3981,5,868,0,0,3981,3983,3,270,135,0,3982,3980,1,0,0,0,3983, - 3986,1,0,0,0,3984,3982,1,0,0,0,3984,3985,1,0,0,0,3985,3988,1,0,0, - 0,3986,3984,1,0,0,0,3987,3979,1,0,0,0,3987,3988,1,0,0,0,3988,4011, - 1,0,0,0,3989,3991,5,95,0,0,3990,3989,1,0,0,0,3990,3991,1,0,0,0,3991, - 3997,1,0,0,0,3992,3998,3,210,105,0,3993,3994,5,866,0,0,3994,3995, - 3,210,105,0,3995,3996,5,867,0,0,3996,3998,1,0,0,0,3997,3992,1,0, - 0,0,3997,3993,1,0,0,0,3998,4000,1,0,0,0,3999,4001,5,13,0,0,4000, - 3999,1,0,0,0,4000,4001,1,0,0,0,4001,4002,1,0,0,0,4002,4004,3,706, - 353,0,4003,4005,3,268,134,0,4004,4003,1,0,0,0,4004,4005,1,0,0,0, - 4005,4011,1,0,0,0,4006,4007,5,866,0,0,4007,4008,3,262,131,0,4008, - 4009,5,867,0,0,4009,4011,1,0,0,0,4010,3965,1,0,0,0,4010,3990,1,0, - 0,0,4010,4006,1,0,0,0,4011,267,1,0,0,0,4012,4013,5,866,0,0,4013, - 4014,3,660,330,0,4014,4015,5,867,0,0,4015,269,1,0,0,0,4016,4017, - 7,56,0,0,4017,4020,7,19,0,0,4018,4019,5,65,0,0,4019,4021,3,272,136, - 0,4020,4018,1,0,0,0,4020,4021,1,0,0,0,4021,4022,1,0,0,0,4022,4024, - 5,866,0,0,4023,4025,3,640,320,0,4024,4023,1,0,0,0,4024,4025,1,0, - 0,0,4025,4026,1,0,0,0,4026,4027,5,867,0,0,4027,271,1,0,0,0,4028, - 4034,5,91,0,0,4029,4030,5,125,0,0,4030,4034,5,20,0,0,4031,4032,5, - 74,0,0,4032,4034,5,20,0,0,4033,4028,1,0,0,0,4033,4029,1,0,0,0,4033, - 4031,1,0,0,0,4034,273,1,0,0,0,4035,4037,7,57,0,0,4036,4035,1,0,0, - 0,4036,4037,1,0,0,0,4037,4038,1,0,0,0,4038,4040,5,91,0,0,4039,4041, - 5,95,0,0,4040,4039,1,0,0,0,4040,4041,1,0,0,0,4041,4042,1,0,0,0,4042, - 4046,3,266,133,0,4043,4045,3,276,138,0,4044,4043,1,0,0,0,4045,4048, - 1,0,0,0,4046,4044,1,0,0,0,4046,4047,1,0,0,0,4047,4085,1,0,0,0,4048, - 4046,1,0,0,0,4049,4050,5,172,0,0,4050,4054,3,266,133,0,4051,4053, - 3,276,138,0,4052,4051,1,0,0,0,4053,4056,1,0,0,0,4054,4052,1,0,0, - 0,4054,4055,1,0,0,0,4055,4085,1,0,0,0,4056,4054,1,0,0,0,4057,4059, - 7,58,0,0,4058,4060,5,127,0,0,4059,4058,1,0,0,0,4059,4060,1,0,0,0, - 4060,4061,1,0,0,0,4061,4063,5,91,0,0,4062,4064,5,95,0,0,4063,4062, - 1,0,0,0,4063,4064,1,0,0,0,4064,4065,1,0,0,0,4065,4069,3,266,133, - 0,4066,4068,3,276,138,0,4067,4066,1,0,0,0,4068,4071,1,0,0,0,4069, - 4067,1,0,0,0,4069,4070,1,0,0,0,4070,4085,1,0,0,0,4071,4069,1,0,0, - 0,4072,4080,5,113,0,0,4073,4076,5,84,0,0,4074,4076,7,58,0,0,4075, - 4073,1,0,0,0,4075,4074,1,0,0,0,4076,4078,1,0,0,0,4077,4079,5,127, - 0,0,4078,4077,1,0,0,0,4078,4079,1,0,0,0,4079,4081,1,0,0,0,4080,4075, - 1,0,0,0,4080,4081,1,0,0,0,4081,4082,1,0,0,0,4082,4083,5,91,0,0,4083, - 4085,3,266,133,0,4084,4036,1,0,0,0,4084,4049,1,0,0,0,4084,4057,1, - 0,0,0,4084,4072,1,0,0,0,4085,275,1,0,0,0,4086,4087,5,119,0,0,4087, - 4094,3,804,402,0,4088,4089,5,188,0,0,4089,4090,5,866,0,0,4090,4091, - 3,660,330,0,4091,4092,5,867,0,0,4092,4094,1,0,0,0,4093,4086,1,0, - 0,0,4093,4088,1,0,0,0,4094,277,1,0,0,0,4095,4096,5,866,0,0,4096, - 4097,3,280,140,0,4097,4098,5,867,0,0,4098,4104,1,0,0,0,4099,4100, - 5,866,0,0,4100,4101,3,278,139,0,4101,4102,5,867,0,0,4102,4104,1, - 0,0,0,4103,4095,1,0,0,0,4103,4099,1,0,0,0,4104,279,1,0,0,0,4105, - 4109,5,154,0,0,4106,4108,3,296,148,0,4107,4106,1,0,0,0,4108,4111, - 1,0,0,0,4109,4107,1,0,0,0,4109,4110,1,0,0,0,4110,4112,1,0,0,0,4111, - 4109,1,0,0,0,4112,4114,3,298,149,0,4113,4115,3,302,151,0,4114,4113, - 1,0,0,0,4114,4115,1,0,0,0,4115,4116,1,0,0,0,4116,4118,3,308,154, - 0,4117,4119,3,310,155,0,4118,4117,1,0,0,0,4118,4119,1,0,0,0,4119, - 4121,1,0,0,0,4120,4122,3,312,156,0,4121,4120,1,0,0,0,4121,4122,1, - 0,0,0,4122,4124,1,0,0,0,4123,4125,3,314,157,0,4124,4123,1,0,0,0, - 4124,4125,1,0,0,0,4125,4127,1,0,0,0,4126,4128,3,258,129,0,4127,4126, - 1,0,0,0,4127,4128,1,0,0,0,4128,4130,1,0,0,0,4129,4131,3,318,159, - 0,4130,4129,1,0,0,0,4130,4131,1,0,0,0,4131,4133,1,0,0,0,4132,4134, - 3,302,151,0,4133,4132,1,0,0,0,4133,4134,1,0,0,0,4134,4136,1,0,0, - 0,4135,4137,3,282,141,0,4136,4135,1,0,0,0,4136,4137,1,0,0,0,4137, - 281,1,0,0,0,4138,4140,5,181,0,0,4139,4141,7,45,0,0,4140,4139,1,0, - 0,0,4140,4141,1,0,0,0,4141,4144,1,0,0,0,4142,4145,3,280,140,0,4143, - 4145,3,278,139,0,4144,4142,1,0,0,0,4144,4143,1,0,0,0,4145,283,1, - 0,0,0,4146,4161,5,95,0,0,4147,4162,3,280,140,0,4148,4162,3,278,139, - 0,4149,4152,5,866,0,0,4150,4153,3,280,140,0,4151,4153,3,278,139, - 0,4152,4150,1,0,0,0,4152,4151,1,0,0,0,4153,4154,1,0,0,0,4154,4159, - 5,867,0,0,4155,4157,5,13,0,0,4156,4155,1,0,0,0,4156,4157,1,0,0,0, - 4157,4158,1,0,0,0,4158,4160,3,706,353,0,4159,4156,1,0,0,0,4159,4160, - 1,0,0,0,4160,4162,1,0,0,0,4161,4147,1,0,0,0,4161,4148,1,0,0,0,4161, - 4149,1,0,0,0,4162,285,1,0,0,0,4163,4164,5,253,0,0,4164,4165,5,866, - 0,0,4165,4166,5,882,0,0,4166,4167,5,868,0,0,4167,4168,5,882,0,0, - 4168,4169,5,337,0,0,4169,4170,5,866,0,0,4170,4171,3,288,144,0,4171, - 4172,5,867,0,0,4172,4177,5,867,0,0,4173,4175,5,13,0,0,4174,4173, - 1,0,0,0,4174,4175,1,0,0,0,4175,4176,1,0,0,0,4176,4178,3,706,353, - 0,4177,4174,1,0,0,0,4177,4178,1,0,0,0,4178,287,1,0,0,0,4179,4184, - 3,290,145,0,4180,4181,5,868,0,0,4181,4183,3,290,145,0,4182,4180, - 1,0,0,0,4183,4186,1,0,0,0,4184,4182,1,0,0,0,4184,4185,1,0,0,0,4185, - 289,1,0,0,0,4186,4184,1,0,0,0,4187,4204,3,662,331,0,4188,4189,5, - 65,0,0,4189,4205,5,256,0,0,4190,4202,3,726,363,0,4191,4192,5,257, - 0,0,4192,4194,5,882,0,0,4193,4195,3,292,146,0,4194,4193,1,0,0,0, - 4194,4195,1,0,0,0,4195,4197,1,0,0,0,4196,4198,3,294,147,0,4197,4196, - 1,0,0,0,4197,4198,1,0,0,0,4198,4203,1,0,0,0,4199,4200,5,60,0,0,4200, - 4201,5,257,0,0,4201,4203,5,882,0,0,4202,4191,1,0,0,0,4202,4199,1, - 0,0,0,4203,4205,1,0,0,0,4204,4188,1,0,0,0,4204,4190,1,0,0,0,4205, - 4217,1,0,0,0,4206,4208,5,255,0,0,4207,4209,5,257,0,0,4208,4207,1, - 0,0,0,4208,4209,1,0,0,0,4209,4210,1,0,0,0,4210,4211,5,882,0,0,4211, - 4212,5,337,0,0,4212,4213,5,866,0,0,4213,4214,3,288,144,0,4214,4215, - 5,867,0,0,4215,4217,1,0,0,0,4216,4187,1,0,0,0,4216,4206,1,0,0,0, - 4217,291,1,0,0,0,4218,4223,5,116,0,0,4219,4223,5,382,0,0,4220,4221, - 5,42,0,0,4221,4223,3,754,377,0,4222,4218,1,0,0,0,4222,4219,1,0,0, - 0,4222,4220,1,0,0,0,4223,4224,1,0,0,0,4224,4225,5,119,0,0,4225,4226, - 5,55,0,0,4226,293,1,0,0,0,4227,4232,5,116,0,0,4228,4232,5,382,0, - 0,4229,4230,5,42,0,0,4230,4232,3,754,377,0,4231,4227,1,0,0,0,4231, - 4228,1,0,0,0,4231,4229,1,0,0,0,4232,4233,1,0,0,0,4233,4234,5,119, - 0,0,4234,4235,5,382,0,0,4235,295,1,0,0,0,4236,4245,7,59,0,0,4237, - 4245,5,76,0,0,4238,4245,5,172,0,0,4239,4245,5,168,0,0,4240,4245, - 5,166,0,0,4241,4245,5,636,0,0,4242,4245,7,60,0,0,4243,4245,5,167, - 0,0,4244,4236,1,0,0,0,4244,4237,1,0,0,0,4244,4238,1,0,0,0,4244,4239, - 1,0,0,0,4244,4240,1,0,0,0,4244,4241,1,0,0,0,4244,4242,1,0,0,0,4244, - 4243,1,0,0,0,4245,297,1,0,0,0,4246,4249,5,850,0,0,4247,4249,3,300, - 150,0,4248,4246,1,0,0,0,4248,4247,1,0,0,0,4249,4254,1,0,0,0,4250, - 4251,5,868,0,0,4251,4253,3,300,150,0,4252,4250,1,0,0,0,4253,4256, - 1,0,0,0,4254,4252,1,0,0,0,4254,4255,1,0,0,0,4255,299,1,0,0,0,4256, - 4254,1,0,0,0,4257,4258,5,892,0,0,4258,4260,5,841,0,0,4259,4257,1, - 0,0,0,4259,4260,1,0,0,0,4260,4261,1,0,0,0,4261,4266,3,804,402,0, - 4262,4264,5,13,0,0,4263,4262,1,0,0,0,4263,4264,1,0,0,0,4264,4265, - 1,0,0,0,4265,4267,3,706,353,0,4266,4263,1,0,0,0,4266,4267,1,0,0, - 0,4267,4287,1,0,0,0,4268,4273,3,764,382,0,4269,4271,5,13,0,0,4270, - 4269,1,0,0,0,4270,4271,1,0,0,0,4271,4272,1,0,0,0,4272,4274,3,706, - 353,0,4273,4270,1,0,0,0,4273,4274,1,0,0,0,4274,4287,1,0,0,0,4275, - 4276,3,702,351,0,4276,4277,5,865,0,0,4277,4278,5,850,0,0,4278,4287, - 1,0,0,0,4279,4284,3,662,331,0,4280,4282,5,13,0,0,4281,4280,1,0,0, - 0,4281,4282,1,0,0,0,4282,4283,1,0,0,0,4283,4285,3,706,353,0,4284, - 4281,1,0,0,0,4284,4285,1,0,0,0,4285,4287,1,0,0,0,4286,4259,1,0,0, - 0,4286,4268,1,0,0,0,4286,4275,1,0,0,0,4286,4279,1,0,0,0,4287,301, - 1,0,0,0,4288,4289,5,88,0,0,4289,4294,3,236,118,0,4290,4291,5,868, - 0,0,4291,4293,3,236,118,0,4292,4290,1,0,0,0,4293,4296,1,0,0,0,4294, - 4292,1,0,0,0,4294,4295,1,0,0,0,4295,4325,1,0,0,0,4296,4294,1,0,0, - 0,4297,4298,5,88,0,0,4298,4299,5,372,0,0,4299,4325,5,882,0,0,4300, - 4301,5,88,0,0,4301,4302,5,128,0,0,4302,4306,5,882,0,0,4303,4304, - 5,26,0,0,4304,4305,5,155,0,0,4305,4307,3,688,344,0,4306,4303,1,0, - 0,0,4306,4307,1,0,0,0,4307,4314,1,0,0,0,4308,4310,7,47,0,0,4309, - 4311,3,304,152,0,4310,4309,1,0,0,0,4311,4312,1,0,0,0,4312,4310,1, - 0,0,0,4312,4313,1,0,0,0,4313,4315,1,0,0,0,4314,4308,1,0,0,0,4314, - 4315,1,0,0,0,4315,4322,1,0,0,0,4316,4318,5,102,0,0,4317,4319,3,306, - 153,0,4318,4317,1,0,0,0,4319,4320,1,0,0,0,4320,4318,1,0,0,0,4320, - 4321,1,0,0,0,4321,4323,1,0,0,0,4322,4316,1,0,0,0,4322,4323,1,0,0, - 0,4323,4325,1,0,0,0,4324,4288,1,0,0,0,4324,4297,1,0,0,0,4324,4300, - 1,0,0,0,4325,303,1,0,0,0,4326,4327,5,174,0,0,4327,4328,5,20,0,0, - 4328,4339,5,882,0,0,4329,4331,5,123,0,0,4330,4329,1,0,0,0,4330,4331, - 1,0,0,0,4331,4332,1,0,0,0,4332,4333,5,56,0,0,4333,4334,5,20,0,0, - 4334,4339,5,882,0,0,4335,4336,5,58,0,0,4336,4337,5,20,0,0,4337,4339, - 5,882,0,0,4338,4326,1,0,0,0,4338,4330,1,0,0,0,4338,4335,1,0,0,0, - 4339,305,1,0,0,0,4340,4341,5,171,0,0,4341,4342,5,20,0,0,4342,4347, - 5,882,0,0,4343,4344,5,174,0,0,4344,4345,5,20,0,0,4345,4347,5,882, - 0,0,4346,4340,1,0,0,0,4346,4343,1,0,0,0,4347,307,1,0,0,0,4348,4349, - 5,68,0,0,4349,4351,3,262,131,0,4350,4348,1,0,0,0,4350,4351,1,0,0, - 0,4351,4354,1,0,0,0,4352,4353,5,192,0,0,4353,4355,3,804,402,0,4354, - 4352,1,0,0,0,4354,4355,1,0,0,0,4355,309,1,0,0,0,4356,4357,5,74,0, - 0,4357,4358,5,20,0,0,4358,4363,3,316,158,0,4359,4360,5,868,0,0,4360, - 4362,3,316,158,0,4361,4359,1,0,0,0,4362,4365,1,0,0,0,4363,4361,1, - 0,0,0,4363,4364,1,0,0,0,4364,4368,1,0,0,0,4365,4363,1,0,0,0,4366, - 4367,5,194,0,0,4367,4369,5,584,0,0,4368,4366,1,0,0,0,4368,4369,1, - 0,0,0,4369,311,1,0,0,0,4370,4371,5,75,0,0,4371,4372,3,804,402,0, - 4372,313,1,0,0,0,4373,4374,5,689,0,0,4374,4375,3,782,391,0,4375, - 4376,5,13,0,0,4376,4377,5,866,0,0,4377,4378,3,780,390,0,4378,4388, - 5,867,0,0,4379,4380,5,868,0,0,4380,4381,3,782,391,0,4381,4382,5, - 13,0,0,4382,4383,5,866,0,0,4383,4384,3,780,390,0,4384,4385,5,867, - 0,0,4385,4387,1,0,0,0,4386,4379,1,0,0,0,4387,4390,1,0,0,0,4388,4386, - 1,0,0,0,4388,4389,1,0,0,0,4389,315,1,0,0,0,4390,4388,1,0,0,0,4391, - 4393,3,804,402,0,4392,4394,7,55,0,0,4393,4392,1,0,0,0,4393,4394, - 1,0,0,0,4394,317,1,0,0,0,4395,4406,5,100,0,0,4396,4397,3,320,160, - 0,4397,4398,5,868,0,0,4398,4400,1,0,0,0,4399,4396,1,0,0,0,4399,4400, - 1,0,0,0,4400,4401,1,0,0,0,4401,4407,3,320,160,0,4402,4403,3,320, - 160,0,4403,4404,5,509,0,0,4404,4405,3,320,160,0,4405,4407,1,0,0, - 0,4406,4399,1,0,0,0,4406,4402,1,0,0,0,4407,319,1,0,0,0,4408,4412, - 3,712,356,0,4409,4412,3,686,343,0,4410,4412,3,708,354,0,4411,4408, - 1,0,0,0,4411,4409,1,0,0,0,4411,4410,1,0,0,0,4412,321,1,0,0,0,4413, - 4414,5,640,0,0,4414,4423,5,664,0,0,4415,4420,3,344,172,0,4416,4417, - 5,868,0,0,4417,4419,3,344,172,0,4418,4416,1,0,0,0,4419,4422,1,0, - 0,0,4420,4418,1,0,0,0,4420,4421,1,0,0,0,4421,4424,1,0,0,0,4422,4420, - 1,0,0,0,4423,4415,1,0,0,0,4423,4424,1,0,0,0,4424,323,1,0,0,0,4425, - 4427,5,317,0,0,4426,4428,5,691,0,0,4427,4426,1,0,0,0,4427,4428,1, - 0,0,0,4428,325,1,0,0,0,4429,4431,5,341,0,0,4430,4432,5,691,0,0,4431, - 4430,1,0,0,0,4431,4432,1,0,0,0,4432,4438,1,0,0,0,4433,4435,5,11, - 0,0,4434,4436,5,502,0,0,4435,4434,1,0,0,0,4435,4436,1,0,0,0,4436, - 4437,1,0,0,0,4437,4439,5,326,0,0,4438,4433,1,0,0,0,4438,4439,1,0, - 0,0,4439,4444,1,0,0,0,4440,4442,5,502,0,0,4441,4440,1,0,0,0,4441, - 4442,1,0,0,0,4442,4443,1,0,0,0,4443,4445,5,140,0,0,4444,4441,1,0, - 0,0,4444,4445,1,0,0,0,4445,327,1,0,0,0,4446,4448,5,583,0,0,4447, - 4449,5,691,0,0,4448,4447,1,0,0,0,4448,4449,1,0,0,0,4449,4455,1,0, - 0,0,4450,4452,5,11,0,0,4451,4453,5,502,0,0,4452,4451,1,0,0,0,4452, - 4453,1,0,0,0,4453,4454,1,0,0,0,4454,4456,5,326,0,0,4455,4450,1,0, - 0,0,4455,4456,1,0,0,0,4456,4461,1,0,0,0,4457,4459,5,502,0,0,4458, - 4457,1,0,0,0,4458,4459,1,0,0,0,4459,4460,1,0,0,0,4460,4462,5,140, - 0,0,4461,4458,1,0,0,0,4461,4462,1,0,0,0,4462,329,1,0,0,0,4463,4464, - 5,589,0,0,4464,4465,3,706,353,0,4465,331,1,0,0,0,4466,4468,5,583, - 0,0,4467,4469,5,691,0,0,4468,4467,1,0,0,0,4468,4469,1,0,0,0,4469, - 4470,1,0,0,0,4470,4472,5,176,0,0,4471,4473,5,589,0,0,4472,4471,1, - 0,0,0,4472,4473,1,0,0,0,4473,4474,1,0,0,0,4474,4475,3,706,353,0, - 4475,333,1,0,0,0,4476,4477,5,140,0,0,4477,4478,5,589,0,0,4478,4479, - 3,706,353,0,4479,335,1,0,0,0,4480,4481,5,104,0,0,4481,4482,7,61, - 0,0,4482,4487,3,346,173,0,4483,4484,5,868,0,0,4484,4486,3,346,173, - 0,4485,4483,1,0,0,0,4486,4489,1,0,0,0,4487,4485,1,0,0,0,4487,4488, - 1,0,0,0,4488,337,1,0,0,0,4489,4487,1,0,0,0,4490,4491,5,183,0,0,4491, - 4492,5,752,0,0,4492,339,1,0,0,0,4493,4494,5,155,0,0,4494,4495,5, - 313,0,0,4495,4496,5,857,0,0,4496,4497,7,26,0,0,4497,341,1,0,0,0, - 4498,4500,5,155,0,0,4499,4501,7,62,0,0,4500,4499,1,0,0,0,4500,4501, - 1,0,0,0,4501,4502,1,0,0,0,4502,4503,5,664,0,0,4503,4508,3,350,175, - 0,4504,4505,5,868,0,0,4505,4507,3,350,175,0,4506,4504,1,0,0,0,4507, - 4510,1,0,0,0,4508,4506,1,0,0,0,4508,4509,1,0,0,0,4509,343,1,0,0, - 0,4510,4508,1,0,0,0,4511,4512,5,194,0,0,4512,4513,5,350,0,0,4513, - 4519,5,600,0,0,4514,4515,5,135,0,0,4515,4519,5,195,0,0,4516,4517, - 5,135,0,0,4517,4519,5,515,0,0,4518,4511,1,0,0,0,4518,4514,1,0,0, - 0,4518,4516,1,0,0,0,4519,345,1,0,0,0,4520,4525,3,652,326,0,4521, - 4523,5,13,0,0,4522,4521,1,0,0,0,4522,4523,1,0,0,0,4523,4524,1,0, - 0,0,4524,4526,3,706,353,0,4525,4522,1,0,0,0,4525,4526,1,0,0,0,4526, - 4527,1,0,0,0,4527,4528,3,348,174,0,4528,347,1,0,0,0,4529,4531,5, - 135,0,0,4530,4532,5,450,0,0,4531,4530,1,0,0,0,4531,4532,1,0,0,0, - 4532,4538,1,0,0,0,4533,4535,5,107,0,0,4534,4533,1,0,0,0,4534,4535, - 1,0,0,0,4535,4536,1,0,0,0,4536,4538,5,195,0,0,4537,4529,1,0,0,0, - 4537,4534,1,0,0,0,4538,349,1,0,0,0,4539,4540,5,440,0,0,4540,4541, - 5,448,0,0,4541,4547,3,352,176,0,4542,4543,5,135,0,0,4543,4547,5, - 195,0,0,4544,4545,5,135,0,0,4545,4547,5,515,0,0,4546,4539,1,0,0, - 0,4546,4542,1,0,0,0,4546,4544,1,0,0,0,4547,351,1,0,0,0,4548,4549, - 5,809,0,0,4549,4556,5,135,0,0,4550,4551,5,135,0,0,4551,4556,5,810, - 0,0,4552,4553,5,135,0,0,4553,4556,5,811,0,0,4554,4556,5,812,0,0, - 4555,4548,1,0,0,0,4555,4550,1,0,0,0,4555,4552,1,0,0,0,4555,4554, - 1,0,0,0,4556,353,1,0,0,0,4557,4558,5,25,0,0,4558,4559,5,453,0,0, - 4559,4560,5,176,0,0,4560,4565,3,370,185,0,4561,4562,5,868,0,0,4562, - 4564,3,370,185,0,4563,4561,1,0,0,0,4564,4567,1,0,0,0,4565,4563,1, - 0,0,0,4565,4566,1,0,0,0,4566,4569,1,0,0,0,4567,4565,1,0,0,0,4568, - 4570,3,390,195,0,4569,4568,1,0,0,0,4569,4570,1,0,0,0,4570,355,1, - 0,0,0,4571,4572,5,25,0,0,4572,4573,5,572,0,0,4573,4574,5,400,0,0, - 4574,4579,3,392,196,0,4575,4576,5,868,0,0,4576,4578,3,392,196,0, - 4577,4575,1,0,0,0,4578,4581,1,0,0,0,4579,4577,1,0,0,0,4579,4580, - 1,0,0,0,4580,4583,1,0,0,0,4581,4579,1,0,0,0,4582,4584,3,390,195, - 0,4583,4582,1,0,0,0,4583,4584,1,0,0,0,4584,357,1,0,0,0,4585,4586, - 5,25,0,0,4586,4587,5,572,0,0,4587,4588,5,605,0,0,4588,4589,5,176, - 0,0,4589,4594,3,380,190,0,4590,4591,5,868,0,0,4591,4593,3,380,190, - 0,4592,4590,1,0,0,0,4593,4596,1,0,0,0,4594,4592,1,0,0,0,4594,4595, - 1,0,0,0,4595,4598,1,0,0,0,4596,4594,1,0,0,0,4597,4599,3,390,195, - 0,4598,4597,1,0,0,0,4598,4599,1,0,0,0,4599,359,1,0,0,0,4600,4601, - 5,133,0,0,4601,4602,7,63,0,0,4602,4607,5,452,0,0,4603,4604,5,176, - 0,0,4604,4608,5,882,0,0,4605,4606,5,16,0,0,4606,4608,5,882,0,0,4607, - 4603,1,0,0,0,4607,4605,1,0,0,0,4608,361,1,0,0,0,4609,4610,5,640, - 0,0,4610,4619,7,64,0,0,4611,4616,3,396,198,0,4612,4613,5,868,0,0, - 4613,4615,3,396,198,0,4614,4612,1,0,0,0,4615,4618,1,0,0,0,4616,4614, - 1,0,0,0,4616,4617,1,0,0,0,4617,4620,1,0,0,0,4618,4616,1,0,0,0,4619, - 4611,1,0,0,0,4619,4620,1,0,0,0,4620,4623,1,0,0,0,4621,4622,5,676, - 0,0,4622,4624,3,398,199,0,4623,4621,1,0,0,0,4623,4624,1,0,0,0,4624, - 4628,1,0,0,0,4625,4627,3,400,200,0,4626,4625,1,0,0,0,4627,4630,1, - 0,0,0,4628,4626,1,0,0,0,4628,4629,1,0,0,0,4629,4632,1,0,0,0,4630, - 4628,1,0,0,0,4631,4633,3,390,195,0,4632,4631,1,0,0,0,4632,4633,1, - 0,0,0,4633,363,1,0,0,0,4634,4635,5,646,0,0,4635,4644,7,64,0,0,4636, - 4641,3,396,198,0,4637,4638,5,868,0,0,4638,4640,3,396,198,0,4639, - 4637,1,0,0,0,4640,4643,1,0,0,0,4641,4639,1,0,0,0,4641,4642,1,0,0, - 0,4642,4645,1,0,0,0,4643,4641,1,0,0,0,4644,4636,1,0,0,0,4644,4645, - 1,0,0,0,4645,4647,1,0,0,0,4646,4648,3,390,195,0,4647,4646,1,0,0, - 0,4647,4648,1,0,0,0,4648,365,1,0,0,0,4649,4650,5,640,0,0,4650,4654, - 5,415,0,0,4651,4652,5,678,0,0,4652,4653,5,857,0,0,4653,4655,5,882, - 0,0,4654,4651,1,0,0,0,4654,4655,1,0,0,0,4655,4660,1,0,0,0,4656,4657, - 5,868,0,0,4657,4658,5,529,0,0,4658,4659,5,857,0,0,4659,4661,5,882, - 0,0,4660,4656,1,0,0,0,4660,4661,1,0,0,0,4661,4666,1,0,0,0,4662,4663, - 5,868,0,0,4663,4664,5,363,0,0,4664,4665,5,857,0,0,4665,4667,5,882, - 0,0,4666,4662,1,0,0,0,4666,4667,1,0,0,0,4667,367,1,0,0,0,4668,4669, - 5,646,0,0,4669,4670,5,415,0,0,4670,369,1,0,0,0,4671,4672,3,372,186, - 0,4672,4673,5,857,0,0,4673,4674,5,882,0,0,4674,4699,1,0,0,0,4675, - 4676,3,374,187,0,4676,4677,5,857,0,0,4677,4678,3,712,356,0,4678, - 4699,1,0,0,0,4679,4680,3,376,188,0,4680,4681,5,857,0,0,4681,4682, - 7,26,0,0,4682,4699,1,0,0,0,4683,4699,3,378,189,0,4684,4685,5,424, - 0,0,4685,4686,5,857,0,0,4686,4695,5,866,0,0,4687,4692,3,706,353, - 0,4688,4689,5,868,0,0,4689,4691,3,706,353,0,4690,4688,1,0,0,0,4691, - 4694,1,0,0,0,4692,4690,1,0,0,0,4692,4693,1,0,0,0,4693,4696,1,0,0, - 0,4694,4692,1,0,0,0,4695,4687,1,0,0,0,4695,4696,1,0,0,0,4696,4697, - 1,0,0,0,4697,4699,5,867,0,0,4698,4671,1,0,0,0,4698,4675,1,0,0,0, - 4698,4679,1,0,0,0,4698,4683,1,0,0,0,4698,4684,1,0,0,0,4699,371,1, - 0,0,0,4700,4701,7,65,0,0,4701,373,1,0,0,0,4702,4703,7,66,0,0,4703, - 375,1,0,0,0,4704,4705,7,67,0,0,4705,377,1,0,0,0,4706,4707,5,543, - 0,0,4707,4708,5,857,0,0,4708,4720,7,68,0,0,4709,4710,5,574,0,0,4710, - 4711,5,857,0,0,4711,4720,7,69,0,0,4712,4713,5,310,0,0,4713,4717, - 5,857,0,0,4714,4718,5,507,0,0,4715,4718,5,450,0,0,4716,4718,3,402, - 201,0,4717,4714,1,0,0,0,4717,4715,1,0,0,0,4717,4716,1,0,0,0,4718, - 4720,1,0,0,0,4719,4706,1,0,0,0,4719,4709,1,0,0,0,4719,4712,1,0,0, - 0,4720,379,1,0,0,0,4721,4722,3,382,191,0,4722,4723,5,857,0,0,4723, - 4724,5,882,0,0,4724,4749,1,0,0,0,4725,4726,3,384,192,0,4726,4727, - 5,857,0,0,4727,4728,3,712,356,0,4728,4749,1,0,0,0,4729,4730,3,386, - 193,0,4730,4731,5,857,0,0,4731,4732,7,26,0,0,4732,4749,1,0,0,0,4733, - 4749,3,388,194,0,4734,4735,5,424,0,0,4735,4736,5,857,0,0,4736,4745, - 5,866,0,0,4737,4742,3,706,353,0,4738,4739,5,868,0,0,4739,4741,3, - 706,353,0,4740,4738,1,0,0,0,4741,4744,1,0,0,0,4742,4740,1,0,0,0, - 4742,4743,1,0,0,0,4743,4746,1,0,0,0,4744,4742,1,0,0,0,4745,4737, - 1,0,0,0,4745,4746,1,0,0,0,4746,4747,1,0,0,0,4747,4749,5,867,0,0, - 4748,4721,1,0,0,0,4748,4725,1,0,0,0,4748,4729,1,0,0,0,4748,4733, - 1,0,0,0,4748,4734,1,0,0,0,4749,381,1,0,0,0,4750,4751,7,70,0,0,4751, - 383,1,0,0,0,4752,4753,7,71,0,0,4753,385,1,0,0,0,4754,4755,7,72,0, - 0,4755,387,1,0,0,0,4756,4757,5,543,0,0,4757,4758,5,857,0,0,4758, - 4770,7,68,0,0,4759,4760,5,574,0,0,4760,4761,5,857,0,0,4761,4770, - 7,73,0,0,4762,4763,5,310,0,0,4763,4767,5,857,0,0,4764,4768,5,507, - 0,0,4765,4768,5,450,0,0,4766,4768,3,402,201,0,4767,4764,1,0,0,0, - 4767,4765,1,0,0,0,4767,4766,1,0,0,0,4768,4770,1,0,0,0,4769,4756, - 1,0,0,0,4769,4759,1,0,0,0,4769,4762,1,0,0,0,4770,389,1,0,0,0,4771, - 4772,5,65,0,0,4772,4773,5,328,0,0,4773,4774,5,882,0,0,4774,391,1, - 0,0,0,4775,4776,5,565,0,0,4776,4777,5,857,0,0,4777,4778,5,866,0, - 0,4778,4783,3,628,314,0,4779,4780,5,868,0,0,4780,4782,3,628,314, - 0,4781,4779,1,0,0,0,4782,4785,1,0,0,0,4783,4781,1,0,0,0,4783,4784, - 1,0,0,0,4784,4786,1,0,0,0,4785,4783,1,0,0,0,4786,4787,5,867,0,0, - 4787,4839,1,0,0,0,4788,4789,5,567,0,0,4789,4790,5,857,0,0,4790,4791, - 5,866,0,0,4791,4796,3,628,314,0,4792,4793,5,868,0,0,4793,4795,3, - 628,314,0,4794,4792,1,0,0,0,4795,4798,1,0,0,0,4796,4794,1,0,0,0, - 4796,4797,1,0,0,0,4797,4799,1,0,0,0,4798,4796,1,0,0,0,4799,4800, - 5,867,0,0,4800,4839,1,0,0,0,4801,4802,5,566,0,0,4802,4803,5,857, - 0,0,4803,4804,5,866,0,0,4804,4805,3,650,325,0,4805,4806,5,867,0, - 0,4806,4839,1,0,0,0,4807,4808,5,568,0,0,4808,4809,5,857,0,0,4809, - 4810,5,866,0,0,4810,4811,3,650,325,0,4811,4812,5,867,0,0,4812,4839, - 1,0,0,0,4813,4814,5,570,0,0,4814,4815,5,857,0,0,4815,4816,5,866, - 0,0,4816,4817,3,750,375,0,4817,4818,5,867,0,0,4818,4839,1,0,0,0, - 4819,4820,5,571,0,0,4820,4821,5,857,0,0,4821,4822,5,866,0,0,4822, - 4823,3,750,375,0,4823,4824,5,867,0,0,4824,4839,1,0,0,0,4825,4826, - 5,569,0,0,4826,4827,5,857,0,0,4827,4828,5,866,0,0,4828,4833,3,394, - 197,0,4829,4830,5,868,0,0,4830,4832,3,394,197,0,4831,4829,1,0,0, - 0,4832,4835,1,0,0,0,4833,4831,1,0,0,0,4833,4834,1,0,0,0,4834,4836, - 1,0,0,0,4835,4833,1,0,0,0,4836,4837,5,867,0,0,4837,4839,1,0,0,0, - 4838,4775,1,0,0,0,4838,4788,1,0,0,0,4838,4801,1,0,0,0,4838,4807, - 1,0,0,0,4838,4813,1,0,0,0,4838,4819,1,0,0,0,4838,4825,1,0,0,0,4839, - 393,1,0,0,0,4840,4841,5,866,0,0,4841,4842,3,652,326,0,4842,4843, - 5,868,0,0,4843,4844,3,652,326,0,4844,4845,5,867,0,0,4845,395,1,0, - 0,0,4846,4847,7,74,0,0,4847,397,1,0,0,0,4848,4849,7,75,0,0,4849, - 4850,5,857,0,0,4850,4874,3,402,201,0,4851,4852,5,460,0,0,4852,4853, - 5,857,0,0,4853,4854,5,882,0,0,4854,4855,5,868,0,0,4855,4856,5,461, - 0,0,4856,4857,5,857,0,0,4857,4874,3,712,356,0,4858,4859,5,611,0, - 0,4859,4860,5,857,0,0,4860,4861,5,882,0,0,4861,4862,5,868,0,0,4862, - 4863,5,612,0,0,4863,4864,5,857,0,0,4864,4874,3,712,356,0,4865,4866, - 5,557,0,0,4866,4867,5,857,0,0,4867,4868,5,882,0,0,4868,4869,5,868, - 0,0,4869,4870,5,558,0,0,4870,4871,5,857,0,0,4871,4874,3,712,356, - 0,4872,4874,5,634,0,0,4873,4848,1,0,0,0,4873,4851,1,0,0,0,4873,4858, - 1,0,0,0,4873,4865,1,0,0,0,4873,4872,1,0,0,0,4874,399,1,0,0,0,4875, - 4876,5,678,0,0,4876,4877,5,857,0,0,4877,4888,5,882,0,0,4878,4879, - 5,529,0,0,4879,4880,5,857,0,0,4880,4888,5,882,0,0,4881,4882,5,363, - 0,0,4882,4883,5,857,0,0,4883,4888,5,882,0,0,4884,4885,5,535,0,0, - 4885,4886,5,857,0,0,4886,4888,5,882,0,0,4887,4875,1,0,0,0,4887,4878, - 1,0,0,0,4887,4881,1,0,0,0,4887,4884,1,0,0,0,4888,401,1,0,0,0,4889, - 4894,3,696,348,0,4890,4891,5,868,0,0,4891,4893,3,696,348,0,4892, - 4890,1,0,0,0,4893,4896,1,0,0,0,4894,4892,1,0,0,0,4894,4895,1,0,0, - 0,4895,4899,1,0,0,0,4896,4894,1,0,0,0,4897,4899,5,882,0,0,4898,4889, - 1,0,0,0,4898,4897,1,0,0,0,4899,403,1,0,0,0,4900,4901,5,694,0,0,4901, - 4902,7,76,0,0,4902,4904,3,698,349,0,4903,4905,7,77,0,0,4904,4903, - 1,0,0,0,4904,4905,1,0,0,0,4905,405,1,0,0,0,4906,4907,5,694,0,0,4907, - 4908,5,378,0,0,4908,4914,3,698,349,0,4909,4912,5,654,0,0,4910,4911, - 5,65,0,0,4911,4913,5,489,0,0,4912,4910,1,0,0,0,4912,4913,1,0,0,0, - 4913,4915,1,0,0,0,4914,4909,1,0,0,0,4914,4915,1,0,0,0,4915,407,1, - 0,0,0,4916,4917,5,694,0,0,4917,4918,5,540,0,0,4918,4919,3,698,349, - 0,4919,409,1,0,0,0,4920,4921,5,694,0,0,4921,4922,5,341,0,0,4922, - 4925,3,698,349,0,4923,4924,5,513,0,0,4924,4926,5,533,0,0,4925,4923, - 1,0,0,0,4925,4926,1,0,0,0,4926,411,1,0,0,0,4927,4928,5,694,0,0,4928, - 4929,5,583,0,0,4929,4930,3,698,349,0,4930,413,1,0,0,0,4931,4932, - 5,694,0,0,4932,4935,5,551,0,0,4933,4934,5,33,0,0,4934,4936,3,698, - 349,0,4935,4933,1,0,0,0,4935,4936,1,0,0,0,4936,415,1,0,0,0,4937, - 4938,5,540,0,0,4938,4939,3,706,353,0,4939,4942,5,68,0,0,4940,4943, - 5,882,0,0,4941,4943,5,892,0,0,4942,4940,1,0,0,0,4942,4941,1,0,0, - 0,4943,417,1,0,0,0,4944,4945,5,717,0,0,4945,4948,3,706,353,0,4946, - 4947,5,188,0,0,4947,4949,3,752,376,0,4948,4946,1,0,0,0,4948,4949, - 1,0,0,0,4949,419,1,0,0,0,4950,4951,7,78,0,0,4951,4952,5,540,0,0, - 4952,4953,3,706,353,0,4953,421,1,0,0,0,4954,4957,3,424,212,0,4955, - 4957,3,4,2,0,4956,4954,1,0,0,0,4956,4955,1,0,0,0,4957,423,1,0,0, - 0,4958,4959,3,706,353,0,4959,4960,5,878,0,0,4960,4962,1,0,0,0,4961, - 4958,1,0,0,0,4961,4962,1,0,0,0,4962,4963,1,0,0,0,4963,4969,5,317, - 0,0,4964,4965,3,444,222,0,4965,4966,5,869,0,0,4966,4968,1,0,0,0, - 4967,4964,1,0,0,0,4968,4971,1,0,0,0,4969,4967,1,0,0,0,4969,4970, - 1,0,0,0,4970,4977,1,0,0,0,4971,4969,1,0,0,0,4972,4973,3,446,223, - 0,4973,4974,5,869,0,0,4974,4976,1,0,0,0,4975,4972,1,0,0,0,4976,4979, - 1,0,0,0,4977,4975,1,0,0,0,4977,4978,1,0,0,0,4978,4985,1,0,0,0,4979, - 4977,1,0,0,0,4980,4981,3,448,224,0,4981,4982,5,869,0,0,4982,4984, - 1,0,0,0,4983,4980,1,0,0,0,4984,4987,1,0,0,0,4985,4983,1,0,0,0,4985, - 4986,1,0,0,0,4986,4993,1,0,0,0,4987,4985,1,0,0,0,4988,4989,3,450, - 225,0,4989,4990,5,869,0,0,4990,4992,1,0,0,0,4991,4988,1,0,0,0,4992, - 4995,1,0,0,0,4993,4991,1,0,0,0,4993,4994,1,0,0,0,4994,4999,1,0,0, - 0,4995,4993,1,0,0,0,4996,4998,3,454,227,0,4997,4996,1,0,0,0,4998, - 5001,1,0,0,0,4999,4997,1,0,0,0,4999,5000,1,0,0,0,5000,5002,1,0,0, - 0,5001,4999,1,0,0,0,5002,5004,5,378,0,0,5003,5005,3,706,353,0,5004, - 5003,1,0,0,0,5004,5005,1,0,0,0,5005,425,1,0,0,0,5006,5009,5,23,0, - 0,5007,5010,3,706,353,0,5008,5010,3,804,402,0,5009,5007,1,0,0,0, - 5009,5008,1,0,0,0,5009,5010,1,0,0,0,5010,5012,1,0,0,0,5011,5013, - 3,456,228,0,5012,5011,1,0,0,0,5013,5014,1,0,0,0,5014,5012,1,0,0, - 0,5014,5015,1,0,0,0,5015,5022,1,0,0,0,5016,5018,5,53,0,0,5017,5019, - 3,454,227,0,5018,5017,1,0,0,0,5019,5020,1,0,0,0,5020,5018,1,0,0, - 0,5020,5021,1,0,0,0,5021,5023,1,0,0,0,5022,5016,1,0,0,0,5022,5023, - 1,0,0,0,5023,5024,1,0,0,0,5024,5025,5,378,0,0,5025,5026,5,23,0,0, - 5026,427,1,0,0,0,5027,5028,5,78,0,0,5028,5029,3,804,402,0,5029,5031, - 5,175,0,0,5030,5032,3,454,227,0,5031,5030,1,0,0,0,5032,5033,1,0, - 0,0,5033,5031,1,0,0,0,5033,5034,1,0,0,0,5034,5038,1,0,0,0,5035,5037, - 3,458,229,0,5036,5035,1,0,0,0,5037,5040,1,0,0,0,5038,5036,1,0,0, - 0,5038,5039,1,0,0,0,5039,5047,1,0,0,0,5040,5038,1,0,0,0,5041,5043, - 5,53,0,0,5042,5044,3,454,227,0,5043,5042,1,0,0,0,5044,5045,1,0,0, - 0,5045,5043,1,0,0,0,5045,5046,1,0,0,0,5046,5048,1,0,0,0,5047,5041, - 1,0,0,0,5047,5048,1,0,0,0,5048,5049,1,0,0,0,5049,5050,5,378,0,0, - 5050,5051,5,78,0,0,5051,429,1,0,0,0,5052,5053,5,90,0,0,5053,5054, - 3,706,353,0,5054,431,1,0,0,0,5055,5056,5,97,0,0,5056,5057,3,706, - 353,0,5057,433,1,0,0,0,5058,5059,3,706,353,0,5059,5060,5,878,0,0, - 5060,5062,1,0,0,0,5061,5058,1,0,0,0,5061,5062,1,0,0,0,5062,5063, - 1,0,0,0,5063,5065,5,106,0,0,5064,5066,3,454,227,0,5065,5064,1,0, - 0,0,5066,5067,1,0,0,0,5067,5065,1,0,0,0,5067,5068,1,0,0,0,5068,5069, - 1,0,0,0,5069,5070,5,378,0,0,5070,5072,5,106,0,0,5071,5073,3,706, - 353,0,5072,5071,1,0,0,0,5072,5073,1,0,0,0,5073,435,1,0,0,0,5074, - 5075,3,706,353,0,5075,5076,5,878,0,0,5076,5078,1,0,0,0,5077,5074, - 1,0,0,0,5077,5078,1,0,0,0,5078,5079,1,0,0,0,5079,5081,5,142,0,0, - 5080,5082,3,454,227,0,5081,5080,1,0,0,0,5082,5083,1,0,0,0,5083,5081, - 1,0,0,0,5083,5084,1,0,0,0,5084,5085,1,0,0,0,5085,5086,5,676,0,0, - 5086,5087,3,804,402,0,5087,5088,5,378,0,0,5088,5090,5,142,0,0,5089, - 5091,3,706,353,0,5090,5089,1,0,0,0,5090,5091,1,0,0,0,5091,437,1, - 0,0,0,5092,5093,5,148,0,0,5093,5094,3,804,402,0,5094,439,1,0,0,0, - 5095,5096,3,706,353,0,5096,5097,5,878,0,0,5097,5099,1,0,0,0,5098, - 5095,1,0,0,0,5098,5099,1,0,0,0,5099,5100,1,0,0,0,5100,5101,5,193, - 0,0,5101,5102,3,804,402,0,5102,5104,5,371,0,0,5103,5105,3,454,227, - 0,5104,5103,1,0,0,0,5105,5106,1,0,0,0,5106,5104,1,0,0,0,5106,5107, - 1,0,0,0,5107,5108,1,0,0,0,5108,5109,5,378,0,0,5109,5111,5,193,0, - 0,5110,5112,3,706,353,0,5111,5110,1,0,0,0,5111,5112,1,0,0,0,5112, - 441,1,0,0,0,5113,5114,5,334,0,0,5114,5129,3,706,353,0,5115,5120, - 5,64,0,0,5116,5118,5,501,0,0,5117,5116,1,0,0,0,5117,5118,1,0,0,0, - 5118,5119,1,0,0,0,5119,5121,5,68,0,0,5120,5117,1,0,0,0,5120,5121, - 1,0,0,0,5121,5122,1,0,0,0,5122,5123,3,706,353,0,5123,5124,5,88,0, - 0,5124,5125,3,704,352,0,5125,5129,1,0,0,0,5126,5127,5,516,0,0,5127, - 5129,3,706,353,0,5128,5113,1,0,0,0,5128,5115,1,0,0,0,5128,5126,1, - 0,0,0,5129,443,1,0,0,0,5130,5131,5,41,0,0,5131,5132,3,704,352,0, - 5132,5135,3,726,363,0,5133,5134,5,42,0,0,5134,5136,3,804,402,0,5135, - 5133,1,0,0,0,5135,5136,1,0,0,0,5136,445,1,0,0,0,5137,5138,5,41,0, - 0,5138,5139,3,706,353,0,5139,5140,5,30,0,0,5140,5147,5,65,0,0,5141, - 5148,3,712,356,0,5142,5144,5,164,0,0,5143,5145,5,682,0,0,5144,5143, - 1,0,0,0,5144,5145,1,0,0,0,5145,5146,1,0,0,0,5146,5148,5,882,0,0, - 5147,5141,1,0,0,0,5147,5142,1,0,0,0,5148,447,1,0,0,0,5149,5150,5, - 41,0,0,5150,5151,3,706,353,0,5151,5152,5,38,0,0,5152,5153,5,65,0, - 0,5153,5154,3,210,105,0,5154,449,1,0,0,0,5155,5156,5,41,0,0,5156, - 5157,7,79,0,0,5157,5158,5,417,0,0,5158,5159,5,65,0,0,5159,5164,3, - 452,226,0,5160,5161,5,868,0,0,5161,5163,3,452,226,0,5162,5160,1, - 0,0,0,5163,5166,1,0,0,0,5164,5162,1,0,0,0,5164,5165,1,0,0,0,5165, - 5167,1,0,0,0,5166,5164,1,0,0,0,5167,5168,3,422,211,0,5168,451,1, - 0,0,0,5169,5181,3,712,356,0,5170,5172,5,164,0,0,5171,5173,5,682, - 0,0,5172,5171,1,0,0,0,5172,5173,1,0,0,0,5173,5174,1,0,0,0,5174,5181, - 5,882,0,0,5175,5181,3,706,353,0,5176,5181,5,165,0,0,5177,5178,5, - 114,0,0,5178,5181,5,407,0,0,5179,5181,5,163,0,0,5180,5169,1,0,0, - 0,5180,5170,1,0,0,0,5180,5175,1,0,0,0,5180,5176,1,0,0,0,5180,5177, - 1,0,0,0,5180,5179,1,0,0,0,5181,453,1,0,0,0,5182,5185,3,18,9,0,5183, - 5185,3,4,2,0,5184,5182,1,0,0,0,5184,5183,1,0,0,0,5185,5186,1,0,0, - 0,5186,5187,5,869,0,0,5187,455,1,0,0,0,5188,5191,5,191,0,0,5189, - 5192,3,724,362,0,5190,5192,3,804,402,0,5191,5189,1,0,0,0,5191,5190, - 1,0,0,0,5192,5193,1,0,0,0,5193,5195,5,175,0,0,5194,5196,3,454,227, - 0,5195,5194,1,0,0,0,5196,5197,1,0,0,0,5197,5195,1,0,0,0,5197,5198, - 1,0,0,0,5198,457,1,0,0,0,5199,5200,5,54,0,0,5200,5201,3,804,402, - 0,5201,5203,5,175,0,0,5202,5204,3,454,227,0,5203,5202,1,0,0,0,5204, - 5205,1,0,0,0,5205,5203,1,0,0,0,5205,5206,1,0,0,0,5206,459,1,0,0, - 0,5207,5208,5,8,0,0,5208,5210,5,678,0,0,5209,5211,3,758,379,0,5210, - 5209,1,0,0,0,5210,5211,1,0,0,0,5211,5268,1,0,0,0,5212,5217,3,492, - 246,0,5213,5214,5,868,0,0,5214,5216,3,492,246,0,5215,5213,1,0,0, - 0,5216,5219,1,0,0,0,5217,5215,1,0,0,0,5217,5218,1,0,0,0,5218,5269, - 1,0,0,0,5219,5217,1,0,0,0,5220,5225,3,494,247,0,5221,5222,5,868, - 0,0,5222,5224,3,494,247,0,5223,5221,1,0,0,0,5224,5227,1,0,0,0,5225, - 5223,1,0,0,0,5225,5226,1,0,0,0,5226,5242,1,0,0,0,5227,5225,1,0,0, - 0,5228,5240,5,144,0,0,5229,5241,5,505,0,0,5230,5237,3,506,253,0, - 5231,5233,5,11,0,0,5232,5231,1,0,0,0,5232,5233,1,0,0,0,5233,5234, - 1,0,0,0,5234,5236,3,506,253,0,5235,5232,1,0,0,0,5236,5239,1,0,0, - 0,5237,5235,1,0,0,0,5237,5238,1,0,0,0,5238,5241,1,0,0,0,5239,5237, - 1,0,0,0,5240,5229,1,0,0,0,5240,5230,1,0,0,0,5241,5243,1,0,0,0,5242, - 5228,1,0,0,0,5242,5243,1,0,0,0,5243,5250,1,0,0,0,5244,5246,5,194, - 0,0,5245,5247,3,508,254,0,5246,5245,1,0,0,0,5247,5248,1,0,0,0,5248, - 5246,1,0,0,0,5248,5249,1,0,0,0,5249,5251,1,0,0,0,5250,5244,1,0,0, - 0,5250,5251,1,0,0,0,5251,5256,1,0,0,0,5252,5255,3,510,255,0,5253, - 5255,3,512,256,0,5254,5252,1,0,0,0,5254,5253,1,0,0,0,5255,5258,1, - 0,0,0,5256,5254,1,0,0,0,5256,5257,1,0,0,0,5257,5261,1,0,0,0,5258, - 5256,1,0,0,0,5259,5260,7,80,0,0,5260,5262,5,882,0,0,5261,5259,1, - 0,0,0,5261,5262,1,0,0,0,5262,5269,1,0,0,0,5263,5264,3,656,328,0, - 5264,5265,5,42,0,0,5265,5266,5,582,0,0,5266,5267,3,468,234,0,5267, - 5269,1,0,0,0,5268,5212,1,0,0,0,5268,5220,1,0,0,0,5268,5263,1,0,0, - 0,5269,461,1,0,0,0,5270,5271,5,34,0,0,5271,5273,5,678,0,0,5272,5274, - 3,760,380,0,5273,5272,1,0,0,0,5273,5274,1,0,0,0,5274,5275,1,0,0, - 0,5275,5277,3,684,342,0,5276,5278,3,496,248,0,5277,5276,1,0,0,0, - 5277,5278,1,0,0,0,5278,5286,1,0,0,0,5279,5280,5,868,0,0,5280,5282, - 3,684,342,0,5281,5283,3,496,248,0,5282,5281,1,0,0,0,5282,5283,1, - 0,0,0,5283,5285,1,0,0,0,5284,5279,1,0,0,0,5285,5288,1,0,0,0,5286, - 5284,1,0,0,0,5286,5287,1,0,0,0,5287,5292,1,0,0,0,5288,5286,1,0,0, - 0,5289,5290,5,42,0,0,5290,5291,5,582,0,0,5291,5293,3,468,234,0,5292, - 5289,1,0,0,0,5292,5293,1,0,0,0,5293,5308,1,0,0,0,5294,5306,5,144, - 0,0,5295,5307,5,505,0,0,5296,5303,3,506,253,0,5297,5299,5,11,0,0, - 5298,5297,1,0,0,0,5298,5299,1,0,0,0,5299,5300,1,0,0,0,5300,5302, - 3,506,253,0,5301,5298,1,0,0,0,5302,5305,1,0,0,0,5303,5301,1,0,0, - 0,5303,5304,1,0,0,0,5304,5307,1,0,0,0,5305,5303,1,0,0,0,5306,5295, - 1,0,0,0,5306,5296,1,0,0,0,5307,5309,1,0,0,0,5308,5294,1,0,0,0,5308, - 5309,1,0,0,0,5309,5316,1,0,0,0,5310,5312,5,194,0,0,5311,5313,3,508, - 254,0,5312,5311,1,0,0,0,5313,5314,1,0,0,0,5314,5312,1,0,0,0,5314, - 5315,1,0,0,0,5315,5317,1,0,0,0,5316,5310,1,0,0,0,5316,5317,1,0,0, - 0,5317,5322,1,0,0,0,5318,5321,3,510,255,0,5319,5321,3,512,256,0, - 5320,5318,1,0,0,0,5320,5319,1,0,0,0,5321,5324,1,0,0,0,5322,5320, - 1,0,0,0,5322,5323,1,0,0,0,5323,5327,1,0,0,0,5324,5322,1,0,0,0,5325, - 5326,7,80,0,0,5326,5328,5,882,0,0,5327,5325,1,0,0,0,5327,5328,1, - 0,0,0,5328,463,1,0,0,0,5329,5330,5,51,0,0,5330,5332,5,678,0,0,5331, - 5333,3,758,379,0,5332,5331,1,0,0,0,5332,5333,1,0,0,0,5333,5334,1, - 0,0,0,5334,5339,3,684,342,0,5335,5336,5,868,0,0,5336,5338,3,684, - 342,0,5337,5335,1,0,0,0,5338,5341,1,0,0,0,5339,5337,1,0,0,0,5339, - 5340,1,0,0,0,5340,465,1,0,0,0,5341,5339,1,0,0,0,5342,5343,5,73,0, - 0,5343,5348,3,520,260,0,5344,5345,5,868,0,0,5345,5347,3,520,260, - 0,5346,5344,1,0,0,0,5347,5350,1,0,0,0,5348,5346,1,0,0,0,5348,5349, - 1,0,0,0,5349,5351,1,0,0,0,5350,5348,1,0,0,0,5351,5353,5,119,0,0, - 5352,5354,3,488,244,0,5353,5352,1,0,0,0,5353,5354,1,0,0,0,5354,5355, - 1,0,0,0,5355,5356,3,524,262,0,5356,5366,5,176,0,0,5357,5362,3,500, - 250,0,5358,5359,5,868,0,0,5359,5361,3,500,250,0,5360,5358,1,0,0, - 0,5361,5364,1,0,0,0,5362,5360,1,0,0,0,5362,5363,1,0,0,0,5363,5367, - 1,0,0,0,5364,5362,1,0,0,0,5365,5367,3,654,327,0,5366,5357,1,0,0, - 0,5366,5365,1,0,0,0,5367,5382,1,0,0,0,5368,5380,5,144,0,0,5369,5381, - 5,505,0,0,5370,5377,3,506,253,0,5371,5373,5,11,0,0,5372,5371,1,0, - 0,0,5372,5373,1,0,0,0,5373,5374,1,0,0,0,5374,5376,3,506,253,0,5375, - 5372,1,0,0,0,5376,5379,1,0,0,0,5377,5375,1,0,0,0,5377,5378,1,0,0, - 0,5378,5381,1,0,0,0,5379,5377,1,0,0,0,5380,5369,1,0,0,0,5380,5370, - 1,0,0,0,5381,5383,1,0,0,0,5382,5368,1,0,0,0,5382,5383,1,0,0,0,5383, - 5393,1,0,0,0,5384,5390,5,194,0,0,5385,5386,5,73,0,0,5386,5389,5, - 121,0,0,5387,5389,3,508,254,0,5388,5385,1,0,0,0,5388,5387,1,0,0, - 0,5389,5392,1,0,0,0,5390,5388,1,0,0,0,5390,5391,1,0,0,0,5391,5394, - 1,0,0,0,5392,5390,1,0,0,0,5393,5384,1,0,0,0,5393,5394,1,0,0,0,5394, - 5402,1,0,0,0,5395,5396,5,13,0,0,5396,5400,3,684,342,0,5397,5398, - 5,194,0,0,5398,5399,5,582,0,0,5399,5401,3,468,234,0,5400,5397,1, - 0,0,0,5400,5401,1,0,0,0,5401,5403,1,0,0,0,5402,5395,1,0,0,0,5402, - 5403,1,0,0,0,5403,5432,1,0,0,0,5404,5407,5,73,0,0,5405,5406,5,547, - 0,0,5406,5408,5,119,0,0,5407,5405,1,0,0,0,5407,5408,1,0,0,0,5408, - 5409,1,0,0,0,5409,5414,3,656,328,0,5410,5411,5,868,0,0,5411,5413, - 3,656,328,0,5412,5410,1,0,0,0,5413,5416,1,0,0,0,5414,5412,1,0,0, - 0,5414,5415,1,0,0,0,5415,5417,1,0,0,0,5416,5414,1,0,0,0,5417,5418, - 5,176,0,0,5418,5423,3,656,328,0,5419,5420,5,868,0,0,5420,5422,3, - 656,328,0,5421,5419,1,0,0,0,5422,5425,1,0,0,0,5423,5421,1,0,0,0, - 5423,5424,1,0,0,0,5424,5429,1,0,0,0,5425,5423,1,0,0,0,5426,5427, - 5,194,0,0,5427,5428,5,704,0,0,5428,5430,5,121,0,0,5429,5426,1,0, - 0,0,5429,5430,1,0,0,0,5430,5432,1,0,0,0,5431,5342,1,0,0,0,5431,5404, - 1,0,0,0,5432,467,1,0,0,0,5433,5442,5,42,0,0,5434,5442,5,505,0,0, - 5435,5438,5,7,0,0,5436,5437,5,59,0,0,5437,5439,3,654,327,0,5438, - 5436,1,0,0,0,5438,5439,1,0,0,0,5439,5442,1,0,0,0,5440,5442,3,654, - 327,0,5441,5433,1,0,0,0,5441,5434,1,0,0,0,5441,5435,1,0,0,0,5441, - 5440,1,0,0,0,5442,469,1,0,0,0,5443,5444,5,73,0,0,5444,5445,5,547, - 0,0,5445,5446,5,119,0,0,5446,5447,3,684,342,0,5447,5448,5,176,0, - 0,5448,5453,3,684,342,0,5449,5450,5,868,0,0,5450,5452,3,684,342, - 0,5451,5449,1,0,0,0,5452,5455,1,0,0,0,5453,5451,1,0,0,0,5453,5454, - 1,0,0,0,5454,5459,1,0,0,0,5455,5453,1,0,0,0,5456,5457,5,194,0,0, - 5457,5458,5,73,0,0,5458,5460,5,121,0,0,5459,5456,1,0,0,0,5459,5460, - 1,0,0,0,5460,471,1,0,0,0,5461,5462,5,8,0,0,5462,5463,5,739,0,0,5463, - 5464,5,74,0,0,5464,5470,3,646,323,0,5465,5467,5,190,0,0,5466,5468, - 5,857,0,0,5467,5466,1,0,0,0,5467,5468,1,0,0,0,5468,5469,1,0,0,0, - 5469,5471,3,480,240,0,5470,5465,1,0,0,0,5470,5471,1,0,0,0,5471,5477, - 1,0,0,0,5472,5474,5,837,0,0,5473,5475,5,857,0,0,5474,5473,1,0,0, - 0,5474,5475,1,0,0,0,5475,5476,1,0,0,0,5476,5478,3,712,356,0,5477, - 5472,1,0,0,0,5477,5478,1,0,0,0,5478,5483,1,0,0,0,5479,5481,7,39, - 0,0,5480,5482,5,66,0,0,5481,5480,1,0,0,0,5481,5482,1,0,0,0,5482, - 5484,1,0,0,0,5483,5479,1,0,0,0,5483,5484,1,0,0,0,5484,473,1,0,0, - 0,5485,5486,5,34,0,0,5486,5487,5,739,0,0,5487,5488,5,74,0,0,5488, - 5489,3,644,322,0,5489,5490,5,839,0,0,5490,5491,5,857,0,0,5491,5497, - 7,81,0,0,5492,5494,5,190,0,0,5493,5495,5,857,0,0,5494,5493,1,0,0, - 0,5494,5495,1,0,0,0,5495,5496,1,0,0,0,5496,5498,3,480,240,0,5497, - 5492,1,0,0,0,5497,5498,1,0,0,0,5498,5504,1,0,0,0,5499,5501,5,837, - 0,0,5500,5502,5,857,0,0,5501,5500,1,0,0,0,5501,5502,1,0,0,0,5502, - 5503,1,0,0,0,5503,5505,3,712,356,0,5504,5499,1,0,0,0,5504,5505,1, - 0,0,0,5505,5507,1,0,0,0,5506,5508,7,39,0,0,5507,5506,1,0,0,0,5507, - 5508,1,0,0,0,5508,475,1,0,0,0,5509,5510,5,51,0,0,5510,5511,5,739, - 0,0,5511,5512,5,74,0,0,5512,5514,3,646,323,0,5513,5515,5,66,0,0, - 5514,5513,1,0,0,0,5514,5515,1,0,0,0,5515,477,1,0,0,0,5516,5517,5, - 155,0,0,5517,5518,5,739,0,0,5518,5519,5,74,0,0,5519,5529,3,646,323, - 0,5520,5521,5,65,0,0,5521,5526,3,712,356,0,5522,5523,5,868,0,0,5523, - 5525,3,712,356,0,5524,5522,1,0,0,0,5525,5528,1,0,0,0,5526,5524,1, - 0,0,0,5526,5527,1,0,0,0,5527,5530,1,0,0,0,5528,5526,1,0,0,0,5529, - 5520,1,0,0,0,5529,5530,1,0,0,0,5530,479,1,0,0,0,5531,5537,3,712, - 356,0,5532,5533,3,712,356,0,5533,5534,5,854,0,0,5534,5535,3,712, - 356,0,5535,5537,1,0,0,0,5536,5531,1,0,0,0,5536,5532,1,0,0,0,5537, - 5542,1,0,0,0,5538,5539,5,868,0,0,5539,5541,3,480,240,0,5540,5538, - 1,0,0,0,5541,5544,1,0,0,0,5542,5540,1,0,0,0,5542,5543,1,0,0,0,5543, - 481,1,0,0,0,5544,5542,1,0,0,0,5545,5546,5,141,0,0,5546,5547,5,678, - 0,0,5547,5552,3,526,263,0,5548,5549,5,868,0,0,5549,5551,3,526,263, - 0,5550,5548,1,0,0,0,5551,5554,1,0,0,0,5552,5550,1,0,0,0,5552,5553, - 1,0,0,0,5553,483,1,0,0,0,5554,5552,1,0,0,0,5555,5557,5,149,0,0,5556, - 5558,3,758,379,0,5557,5556,1,0,0,0,5557,5558,1,0,0,0,5558,5559,1, - 0,0,0,5559,5564,3,520,260,0,5560,5561,5,868,0,0,5561,5563,3,520, - 260,0,5562,5560,1,0,0,0,5563,5566,1,0,0,0,5564,5562,1,0,0,0,5564, - 5565,1,0,0,0,5565,5567,1,0,0,0,5566,5564,1,0,0,0,5567,5569,5,119, - 0,0,5568,5570,3,488,244,0,5569,5568,1,0,0,0,5569,5570,1,0,0,0,5570, - 5571,1,0,0,0,5571,5572,3,524,262,0,5572,5573,5,68,0,0,5573,5575, - 3,654,327,0,5574,5576,3,486,243,0,5575,5574,1,0,0,0,5575,5576,1, - 0,0,0,5576,5608,1,0,0,0,5577,5579,5,149,0,0,5578,5580,3,758,379, - 0,5579,5578,1,0,0,0,5579,5580,1,0,0,0,5580,5581,1,0,0,0,5581,5583, - 5,7,0,0,5582,5584,5,734,0,0,5583,5582,1,0,0,0,5583,5584,1,0,0,0, - 5584,5585,1,0,0,0,5585,5586,5,868,0,0,5586,5587,5,73,0,0,5587,5588, - 5,121,0,0,5588,5589,5,68,0,0,5589,5591,3,654,327,0,5590,5592,3,486, - 243,0,5591,5590,1,0,0,0,5591,5592,1,0,0,0,5592,5608,1,0,0,0,5593, - 5595,5,149,0,0,5594,5596,3,758,379,0,5595,5594,1,0,0,0,5595,5596, - 1,0,0,0,5596,5599,1,0,0,0,5597,5598,5,547,0,0,5598,5600,5,119,0, - 0,5599,5597,1,0,0,0,5599,5600,1,0,0,0,5600,5601,1,0,0,0,5601,5602, - 3,654,327,0,5602,5603,5,68,0,0,5603,5605,3,654,327,0,5604,5606,3, - 486,243,0,5605,5604,1,0,0,0,5605,5606,1,0,0,0,5606,5608,1,0,0,0, - 5607,5555,1,0,0,0,5607,5577,1,0,0,0,5607,5593,1,0,0,0,5608,485,1, - 0,0,0,5609,5610,5,79,0,0,5610,5611,5,674,0,0,5611,5612,5,678,0,0, - 5612,487,1,0,0,0,5613,5614,7,82,0,0,5614,489,1,0,0,0,5615,5616,5, - 155,0,0,5616,5619,5,529,0,0,5617,5618,5,65,0,0,5618,5620,3,684,342, - 0,5619,5617,1,0,0,0,5619,5620,1,0,0,0,5620,5621,1,0,0,0,5621,5624, - 5,857,0,0,5622,5625,3,798,399,0,5623,5625,5,882,0,0,5624,5622,1, - 0,0,0,5624,5623,1,0,0,0,5625,5648,1,0,0,0,5626,5627,5,155,0,0,5627, - 5630,5,529,0,0,5628,5629,5,65,0,0,5629,5631,3,684,342,0,5630,5628, - 1,0,0,0,5630,5631,1,0,0,0,5631,5636,1,0,0,0,5632,5633,5,176,0,0, - 5633,5637,5,829,0,0,5634,5635,5,857,0,0,5635,5637,5,882,0,0,5636, - 5632,1,0,0,0,5636,5634,1,0,0,0,5637,5640,1,0,0,0,5638,5639,5,143, - 0,0,5639,5641,5,882,0,0,5640,5638,1,0,0,0,5640,5641,1,0,0,0,5641, - 5645,1,0,0,0,5642,5643,5,147,0,0,5643,5644,5,36,0,0,5644,5646,5, - 529,0,0,5645,5642,1,0,0,0,5645,5646,1,0,0,0,5646,5648,1,0,0,0,5647, - 5615,1,0,0,0,5647,5626,1,0,0,0,5648,491,1,0,0,0,5649,5650,3,684, - 342,0,5650,5651,3,510,255,0,5651,493,1,0,0,0,5652,5678,3,684,342, - 0,5653,5654,5,423,0,0,5654,5655,5,20,0,0,5655,5656,5,882,0,0,5656, - 5679,3,502,251,0,5657,5658,5,423,0,0,5658,5659,5,20,0,0,5659,5660, - 5,829,0,0,5660,5661,5,529,0,0,5661,5679,3,502,251,0,5662,5663,5, - 423,0,0,5663,5664,5,194,0,0,5664,5679,3,504,252,0,5665,5666,5,369, - 0,0,5666,5667,5,511,0,0,5667,5679,5,529,0,0,5668,5669,7,83,0,0,5669, - 5671,3,518,259,0,5670,5672,3,514,257,0,5671,5670,1,0,0,0,5671,5672, - 1,0,0,0,5672,5674,1,0,0,0,5673,5668,1,0,0,0,5674,5675,1,0,0,0,5675, - 5673,1,0,0,0,5675,5676,1,0,0,0,5676,5679,1,0,0,0,5677,5679,3,516, - 258,0,5678,5653,1,0,0,0,5678,5657,1,0,0,0,5678,5662,1,0,0,0,5678, - 5665,1,0,0,0,5678,5673,1,0,0,0,5678,5677,1,0,0,0,5678,5679,1,0,0, - 0,5679,495,1,0,0,0,5680,5681,5,423,0,0,5681,5687,5,20,0,0,5682,5688, - 5,882,0,0,5683,5684,5,829,0,0,5684,5688,5,529,0,0,5685,5686,5,529, - 0,0,5686,5688,5,882,0,0,5687,5682,1,0,0,0,5687,5683,1,0,0,0,5687, - 5685,1,0,0,0,5688,5691,1,0,0,0,5689,5690,5,11,0,0,5690,5692,3,496, - 248,0,5691,5689,1,0,0,0,5691,5692,1,0,0,0,5692,5717,1,0,0,0,5693, - 5694,5,423,0,0,5694,5695,5,194,0,0,5695,5704,3,706,353,0,5696,5700, - 5,20,0,0,5697,5701,5,882,0,0,5698,5699,5,829,0,0,5699,5701,5,529, - 0,0,5700,5697,1,0,0,0,5700,5698,1,0,0,0,5701,5705,1,0,0,0,5702,5703, - 5,13,0,0,5703,5705,5,882,0,0,5704,5696,1,0,0,0,5704,5702,1,0,0,0, - 5704,5705,1,0,0,0,5705,5708,1,0,0,0,5706,5707,5,11,0,0,5707,5709, - 3,496,248,0,5708,5706,1,0,0,0,5708,5709,1,0,0,0,5709,5717,1,0,0, - 0,5710,5711,5,423,0,0,5711,5712,5,194,0,0,5712,5714,3,706,353,0, - 5713,5715,3,498,249,0,5714,5713,1,0,0,0,5714,5715,1,0,0,0,5715,5717, - 1,0,0,0,5716,5680,1,0,0,0,5716,5693,1,0,0,0,5716,5710,1,0,0,0,5717, - 497,1,0,0,0,5718,5719,5,427,0,0,5719,5720,5,708,0,0,5720,5721,5, - 423,0,0,5721,5725,5,20,0,0,5722,5723,5,829,0,0,5723,5726,5,529,0, - 0,5724,5726,5,882,0,0,5725,5722,1,0,0,0,5725,5724,1,0,0,0,5726,5736, - 1,0,0,0,5727,5728,5,427,0,0,5728,5729,5,708,0,0,5729,5730,5,423, - 0,0,5730,5731,5,194,0,0,5731,5732,3,706,353,0,5732,5733,5,13,0,0, - 5733,5734,5,882,0,0,5734,5736,1,0,0,0,5735,5718,1,0,0,0,5735,5727, - 1,0,0,0,5736,499,1,0,0,0,5737,5738,3,684,342,0,5738,5739,5,423,0, - 0,5739,5740,5,20,0,0,5740,5741,5,529,0,0,5741,5742,5,882,0,0,5742, - 5763,1,0,0,0,5743,5744,3,684,342,0,5744,5745,5,423,0,0,5745,5746, - 5,20,0,0,5746,5747,5,829,0,0,5747,5748,5,529,0,0,5748,5749,3,502, - 251,0,5749,5763,1,0,0,0,5750,5751,3,684,342,0,5751,5752,5,423,0, - 0,5752,5753,5,20,0,0,5753,5754,5,882,0,0,5754,5755,3,502,251,0,5755, - 5763,1,0,0,0,5756,5757,3,684,342,0,5757,5758,5,423,0,0,5758,5759, - 5,194,0,0,5759,5760,3,504,252,0,5760,5763,1,0,0,0,5761,5763,3,684, - 342,0,5762,5737,1,0,0,0,5762,5743,1,0,0,0,5762,5750,1,0,0,0,5762, - 5756,1,0,0,0,5762,5761,1,0,0,0,5763,501,1,0,0,0,5764,5765,5,143, - 0,0,5765,5767,5,882,0,0,5766,5764,1,0,0,0,5766,5767,1,0,0,0,5767, - 5771,1,0,0,0,5768,5769,5,147,0,0,5769,5770,5,36,0,0,5770,5772,5, - 529,0,0,5771,5768,1,0,0,0,5771,5772,1,0,0,0,5772,503,1,0,0,0,5773, - 5781,3,706,353,0,5774,5778,7,84,0,0,5775,5779,5,882,0,0,5776,5777, - 5,829,0,0,5777,5779,5,529,0,0,5778,5775,1,0,0,0,5778,5776,1,0,0, - 0,5779,5780,1,0,0,0,5780,5782,3,502,251,0,5781,5774,1,0,0,0,5781, - 5782,1,0,0,0,5782,5788,1,0,0,0,5783,5784,3,706,353,0,5784,5785,5, - 188,0,0,5785,5786,3,798,399,0,5786,5788,1,0,0,0,5787,5773,1,0,0, - 0,5787,5783,1,0,0,0,5788,505,1,0,0,0,5789,5798,5,169,0,0,5790,5798, - 5,693,0,0,5791,5792,5,331,0,0,5792,5798,5,882,0,0,5793,5794,5,441, - 0,0,5794,5798,5,882,0,0,5795,5796,5,651,0,0,5796,5798,5,882,0,0, - 5797,5789,1,0,0,0,5797,5790,1,0,0,0,5797,5791,1,0,0,0,5797,5793, - 1,0,0,0,5797,5795,1,0,0,0,5798,507,1,0,0,0,5799,5800,5,479,0,0,5800, - 5808,3,712,356,0,5801,5802,5,482,0,0,5802,5808,3,712,356,0,5803, - 5804,5,478,0,0,5804,5808,3,712,356,0,5805,5806,5,483,0,0,5806,5808, - 3,712,356,0,5807,5799,1,0,0,0,5807,5801,1,0,0,0,5807,5803,1,0,0, - 0,5807,5805,1,0,0,0,5808,509,1,0,0,0,5809,5810,5,529,0,0,5810,5817, - 5,390,0,0,5811,5818,5,42,0,0,5812,5818,5,500,0,0,5813,5814,5,87, - 0,0,5814,5815,3,712,356,0,5815,5816,5,698,0,0,5816,5818,1,0,0,0, - 5817,5811,1,0,0,0,5817,5812,1,0,0,0,5817,5813,1,0,0,0,5817,5818, - 1,0,0,0,5818,5848,1,0,0,0,5819,5820,5,529,0,0,5820,5823,5,420,0, - 0,5821,5824,5,42,0,0,5822,5824,3,712,356,0,5823,5821,1,0,0,0,5823, - 5822,1,0,0,0,5824,5848,1,0,0,0,5825,5826,5,529,0,0,5826,5827,5,581, - 0,0,5827,5832,5,87,0,0,5828,5833,5,42,0,0,5829,5830,3,712,356,0, - 5830,5831,5,698,0,0,5831,5833,1,0,0,0,5832,5828,1,0,0,0,5832,5829, - 1,0,0,0,5833,5848,1,0,0,0,5834,5835,5,529,0,0,5835,5836,5,144,0, - 0,5836,5838,5,36,0,0,5837,5839,7,85,0,0,5838,5837,1,0,0,0,5838,5839, - 1,0,0,0,5839,5848,1,0,0,0,5840,5841,5,395,0,0,5841,5848,3,712,356, - 0,5842,5845,5,530,0,0,5843,5846,3,712,356,0,5844,5846,5,669,0,0, - 5845,5843,1,0,0,0,5845,5844,1,0,0,0,5846,5848,1,0,0,0,5847,5809, - 1,0,0,0,5847,5819,1,0,0,0,5847,5825,1,0,0,0,5847,5834,1,0,0,0,5847, - 5840,1,0,0,0,5847,5842,1,0,0,0,5848,511,1,0,0,0,5849,5850,5,304, - 0,0,5850,5851,7,86,0,0,5851,513,1,0,0,0,5852,5855,5,423,0,0,5853, - 5854,5,194,0,0,5854,5856,3,706,353,0,5855,5853,1,0,0,0,5855,5856, - 1,0,0,0,5856,5865,1,0,0,0,5857,5861,5,20,0,0,5858,5862,5,882,0,0, - 5859,5860,5,829,0,0,5860,5862,5,529,0,0,5861,5858,1,0,0,0,5861,5859, - 1,0,0,0,5862,5866,1,0,0,0,5863,5864,5,13,0,0,5864,5866,5,882,0,0, - 5865,5857,1,0,0,0,5865,5863,1,0,0,0,5866,515,1,0,0,0,5867,5868,3, - 518,259,0,5868,5869,5,429,0,0,5869,5870,5,555,0,0,5870,5883,1,0, - 0,0,5871,5872,3,518,259,0,5872,5873,5,401,0,0,5873,5874,5,555,0, - 0,5874,5875,5,155,0,0,5875,5876,5,330,0,0,5876,5877,5,13,0,0,5877, - 5878,5,882,0,0,5878,5883,1,0,0,0,5879,5880,3,518,259,0,5880,5881, - 5,675,0,0,5881,5883,1,0,0,0,5882,5867,1,0,0,0,5882,5871,1,0,0,0, - 5882,5879,1,0,0,0,5883,517,1,0,0,0,5884,5885,7,87,0,0,5885,5886, - 5,394,0,0,5886,519,1,0,0,0,5887,5892,3,522,261,0,5888,5889,5,866, - 0,0,5889,5890,3,660,330,0,5890,5891,5,867,0,0,5891,5893,1,0,0,0, - 5892,5888,1,0,0,0,5892,5893,1,0,0,0,5893,521,1,0,0,0,5894,5896,5, - 7,0,0,5895,5897,5,734,0,0,5896,5895,1,0,0,0,5896,5897,1,0,0,0,5897, - 5988,1,0,0,0,5898,5900,5,8,0,0,5899,5901,5,743,0,0,5900,5899,1,0, - 0,0,5900,5901,1,0,0,0,5901,5988,1,0,0,0,5902,5910,5,34,0,0,5903, - 5904,5,660,0,0,5904,5911,5,752,0,0,5905,5911,5,743,0,0,5906,5911, - 5,684,0,0,5907,5911,5,678,0,0,5908,5911,5,658,0,0,5909,5911,5,582, - 0,0,5910,5903,1,0,0,0,5910,5905,1,0,0,0,5910,5906,1,0,0,0,5910,5907, - 1,0,0,0,5910,5908,1,0,0,0,5910,5909,1,0,0,0,5910,5911,1,0,0,0,5911, - 5988,1,0,0,0,5912,5988,5,44,0,0,5913,5915,5,51,0,0,5914,5916,5,582, - 0,0,5915,5914,1,0,0,0,5915,5916,1,0,0,0,5916,5988,1,0,0,0,5917,5988, - 5,385,0,0,5918,5988,5,717,0,0,5919,5988,5,718,0,0,5920,5921,5,73, - 0,0,5921,5988,5,121,0,0,5922,5988,5,82,0,0,5923,5988,5,86,0,0,5924, - 5925,5,104,0,0,5925,5988,5,752,0,0,5926,5988,5,735,0,0,5927,5988, - 5,547,0,0,5928,5988,5,138,0,0,5929,5988,5,736,0,0,5930,5931,5,572, - 0,0,5931,5988,7,88,0,0,5932,5988,5,154,0,0,5933,5934,5,157,0,0,5934, - 5988,7,89,0,0,5935,5988,5,749,0,0,5936,5988,5,750,0,0,5937,5988, - 5,178,0,0,5938,5988,5,185,0,0,5939,5988,5,186,0,0,5940,5988,5,705, - 0,0,5941,5988,5,706,0,0,5942,5988,5,707,0,0,5943,5988,5,709,0,0, - 5944,5988,5,710,0,0,5945,5988,5,711,0,0,5946,5988,5,712,0,0,5947, - 5988,5,714,0,0,5948,5988,5,715,0,0,5949,5988,5,716,0,0,5950,5988, - 5,719,0,0,5951,5988,5,720,0,0,5952,5988,5,721,0,0,5953,5988,5,722, - 0,0,5954,5988,5,723,0,0,5955,5988,5,724,0,0,5956,5988,5,725,0,0, - 5957,5988,5,726,0,0,5958,5988,5,727,0,0,5959,5988,5,728,0,0,5960, - 5988,5,731,0,0,5961,5988,5,732,0,0,5962,5988,5,733,0,0,5963,5988, - 5,737,0,0,5964,5988,5,738,0,0,5965,5988,5,740,0,0,5966,5988,5,741, - 0,0,5967,5988,5,742,0,0,5968,5988,5,745,0,0,5969,5988,5,746,0,0, - 5970,5988,5,747,0,0,5971,5988,5,160,0,0,5972,5988,5,748,0,0,5973, - 5988,5,836,0,0,5974,5988,5,751,0,0,5975,5988,5,753,0,0,5976,5988, - 5,838,0,0,5977,5988,5,754,0,0,5978,5988,5,755,0,0,5979,5980,5,103, - 0,0,5980,5981,5,68,0,0,5981,5988,5,744,0,0,5982,5983,5,154,0,0,5983, - 5984,5,88,0,0,5984,5988,5,744,0,0,5985,5986,5,729,0,0,5986,5988, - 5,730,0,0,5987,5894,1,0,0,0,5987,5898,1,0,0,0,5987,5902,1,0,0,0, - 5987,5912,1,0,0,0,5987,5913,1,0,0,0,5987,5917,1,0,0,0,5987,5918, - 1,0,0,0,5987,5919,1,0,0,0,5987,5920,1,0,0,0,5987,5922,1,0,0,0,5987, - 5923,1,0,0,0,5987,5924,1,0,0,0,5987,5926,1,0,0,0,5987,5927,1,0,0, - 0,5987,5928,1,0,0,0,5987,5929,1,0,0,0,5987,5930,1,0,0,0,5987,5932, - 1,0,0,0,5987,5933,1,0,0,0,5987,5935,1,0,0,0,5987,5936,1,0,0,0,5987, - 5937,1,0,0,0,5987,5938,1,0,0,0,5987,5939,1,0,0,0,5987,5940,1,0,0, - 0,5987,5941,1,0,0,0,5987,5942,1,0,0,0,5987,5943,1,0,0,0,5987,5944, - 1,0,0,0,5987,5945,1,0,0,0,5987,5946,1,0,0,0,5987,5947,1,0,0,0,5987, - 5948,1,0,0,0,5987,5949,1,0,0,0,5987,5950,1,0,0,0,5987,5951,1,0,0, - 0,5987,5952,1,0,0,0,5987,5953,1,0,0,0,5987,5954,1,0,0,0,5987,5955, - 1,0,0,0,5987,5956,1,0,0,0,5987,5957,1,0,0,0,5987,5958,1,0,0,0,5987, - 5959,1,0,0,0,5987,5960,1,0,0,0,5987,5961,1,0,0,0,5987,5962,1,0,0, - 0,5987,5963,1,0,0,0,5987,5964,1,0,0,0,5987,5965,1,0,0,0,5987,5966, - 1,0,0,0,5987,5967,1,0,0,0,5987,5968,1,0,0,0,5987,5969,1,0,0,0,5987, - 5970,1,0,0,0,5987,5971,1,0,0,0,5987,5972,1,0,0,0,5987,5973,1,0,0, - 0,5987,5974,1,0,0,0,5987,5975,1,0,0,0,5987,5976,1,0,0,0,5987,5977, - 1,0,0,0,5987,5978,1,0,0,0,5987,5979,1,0,0,0,5987,5982,1,0,0,0,5987, - 5985,1,0,0,0,5988,523,1,0,0,0,5989,6006,5,850,0,0,5990,5991,5,850, - 0,0,5991,5992,5,865,0,0,5992,6006,5,850,0,0,5993,5994,3,706,353, - 0,5994,5995,5,865,0,0,5995,5996,5,850,0,0,5996,6006,1,0,0,0,5997, - 5998,3,706,353,0,5998,5999,5,865,0,0,5999,6000,3,706,353,0,6000, - 6006,1,0,0,0,6001,6002,3,706,353,0,6002,6003,3,710,355,0,6003,6006, - 1,0,0,0,6004,6006,3,706,353,0,6005,5989,1,0,0,0,6005,5990,1,0,0, - 0,6005,5993,1,0,0,0,6005,5997,1,0,0,0,6005,6001,1,0,0,0,6005,6004, - 1,0,0,0,6006,525,1,0,0,0,6007,6008,3,684,342,0,6008,6009,5,176,0, - 0,6009,6010,3,684,342,0,6010,527,1,0,0,0,6011,6013,5,10,0,0,6012, - 6014,3,538,269,0,6013,6012,1,0,0,0,6013,6014,1,0,0,0,6014,6015,1, - 0,0,0,6015,6016,5,173,0,0,6016,6060,3,650,325,0,6017,6019,5,10,0, - 0,6018,6020,3,538,269,0,6019,6018,1,0,0,0,6019,6020,1,0,0,0,6020, - 6021,1,0,0,0,6021,6022,5,173,0,0,6022,6023,3,652,326,0,6023,6024, - 5,185,0,0,6024,6025,5,77,0,0,6025,6026,5,119,0,0,6026,6031,3,660, - 330,0,6027,6028,5,194,0,0,6028,6029,3,712,356,0,6029,6030,5,19,0, - 0,6030,6032,1,0,0,0,6031,6027,1,0,0,0,6031,6032,1,0,0,0,6032,6060, - 1,0,0,0,6033,6035,5,10,0,0,6034,6036,3,538,269,0,6035,6034,1,0,0, - 0,6035,6036,1,0,0,0,6036,6037,1,0,0,0,6037,6038,5,173,0,0,6038,6039, - 3,652,326,0,6039,6040,5,185,0,0,6040,6041,5,77,0,0,6041,6042,5,119, - 0,0,6042,6046,3,662,331,0,6043,6044,5,188,0,0,6044,6045,5,360,0, - 0,6045,6047,5,882,0,0,6046,6043,1,0,0,0,6046,6047,1,0,0,0,6047,6060, - 1,0,0,0,6048,6050,5,10,0,0,6049,6051,3,538,269,0,6050,6049,1,0,0, - 0,6050,6051,1,0,0,0,6051,6052,1,0,0,0,6052,6053,5,173,0,0,6053,6054, - 3,652,326,0,6054,6055,5,51,0,0,6055,6056,5,77,0,0,6056,6057,5,119, - 0,0,6057,6058,3,660,330,0,6058,6060,1,0,0,0,6059,6011,1,0,0,0,6059, - 6017,1,0,0,0,6059,6033,1,0,0,0,6059,6048,1,0,0,0,6060,529,1,0,0, - 0,6061,6062,5,27,0,0,6062,6063,5,173,0,0,6063,6067,3,650,325,0,6064, - 6066,3,540,270,0,6065,6064,1,0,0,0,6066,6069,1,0,0,0,6067,6065,1, - 0,0,0,6067,6068,1,0,0,0,6068,531,1,0,0,0,6069,6067,1,0,0,0,6070, - 6071,5,329,0,0,6071,6072,5,173,0,0,6072,6074,3,650,325,0,6073,6075, - 7,90,0,0,6074,6073,1,0,0,0,6074,6075,1,0,0,0,6075,533,1,0,0,0,6076, - 6078,5,120,0,0,6077,6079,3,538,269,0,6078,6077,1,0,0,0,6078,6079, - 1,0,0,0,6079,6080,1,0,0,0,6080,6081,7,61,0,0,6081,6082,3,650,325, - 0,6082,535,1,0,0,0,6083,6085,5,562,0,0,6084,6086,3,538,269,0,6085, - 6084,1,0,0,0,6085,6086,1,0,0,0,6086,6087,1,0,0,0,6087,6088,5,173, - 0,0,6088,6090,3,650,325,0,6089,6091,5,549,0,0,6090,6089,1,0,0,0, - 6090,6091,1,0,0,0,6091,6093,1,0,0,0,6092,6094,5,392,0,0,6093,6092, - 1,0,0,0,6093,6094,1,0,0,0,6094,6096,1,0,0,0,6095,6097,5,679,0,0, - 6096,6095,1,0,0,0,6096,6097,1,0,0,0,6097,537,1,0,0,0,6098,6099,7, - 91,0,0,6099,539,1,0,0,0,6100,6101,5,65,0,0,6101,6108,5,677,0,0,6102, - 6108,5,549,0,0,6103,6108,5,396,0,0,6104,6108,5,484,0,0,6105,6108, - 5,392,0,0,6106,6108,5,327,0,0,6107,6100,1,0,0,0,6107,6102,1,0,0, - 0,6107,6103,1,0,0,0,6107,6104,1,0,0,0,6107,6105,1,0,0,0,6107,6106, - 1,0,0,0,6108,541,1,0,0,0,6109,6110,5,432,0,0,6110,6111,5,344,0,0, - 6111,6116,3,706,353,0,6112,6113,5,868,0,0,6113,6115,3,706,353,0, - 6114,6112,1,0,0,0,6115,6118,1,0,0,0,6116,6114,1,0,0,0,6116,6117, - 1,0,0,0,6117,6128,1,0,0,0,6118,6116,1,0,0,0,6119,6120,5,155,0,0, - 6120,6125,3,544,272,0,6121,6122,5,868,0,0,6122,6124,3,544,272,0, - 6123,6121,1,0,0,0,6124,6127,1,0,0,0,6125,6123,1,0,0,0,6125,6126, - 1,0,0,0,6126,6129,1,0,0,0,6127,6125,1,0,0,0,6128,6119,1,0,0,0,6128, - 6129,1,0,0,0,6129,543,1,0,0,0,6130,6131,7,92,0,0,6131,6132,3,702, - 351,0,6132,6133,5,857,0,0,6133,6134,3,804,402,0,6134,545,1,0,0,0, - 6135,6136,5,673,0,0,6136,6137,5,344,0,0,6137,6142,3,706,353,0,6138, - 6139,5,868,0,0,6139,6141,3,706,353,0,6140,6138,1,0,0,0,6141,6144, - 1,0,0,0,6142,6140,1,0,0,0,6142,6143,1,0,0,0,6143,547,1,0,0,0,6144, - 6142,1,0,0,0,6145,6146,5,432,0,0,6146,6147,5,534,0,0,6147,6148,3, - 706,353,0,6148,6149,5,603,0,0,6149,6150,5,882,0,0,6150,549,1,0,0, - 0,6151,6152,5,673,0,0,6152,6153,5,534,0,0,6153,6154,3,706,353,0, - 6154,551,1,0,0,0,6155,6156,5,713,0,0,6156,6157,5,450,0,0,6157,6158, - 5,360,0,0,6158,6160,5,367,0,0,6159,6161,5,857,0,0,6160,6159,1,0, - 0,0,6160,6161,1,0,0,0,6161,6162,1,0,0,0,6162,6186,5,882,0,0,6163, - 6164,5,713,0,0,6164,6165,5,433,0,0,6165,6166,5,68,0,0,6166,6167, - 3,676,338,0,6167,6168,5,423,0,0,6168,6169,5,20,0,0,6169,6176,5,882, - 0,0,6170,6171,5,360,0,0,6171,6173,5,367,0,0,6172,6174,5,857,0,0, - 6173,6172,1,0,0,0,6173,6174,1,0,0,0,6174,6175,1,0,0,0,6175,6177, - 5,882,0,0,6176,6170,1,0,0,0,6176,6177,1,0,0,0,6177,6183,1,0,0,0, - 6178,6180,5,144,0,0,6179,6181,5,502,0,0,6180,6179,1,0,0,0,6180,6181, - 1,0,0,0,6181,6182,1,0,0,0,6182,6184,5,169,0,0,6183,6178,1,0,0,0, - 6183,6184,1,0,0,0,6184,6186,1,0,0,0,6185,6155,1,0,0,0,6185,6163, - 1,0,0,0,6186,553,1,0,0,0,6187,6188,5,155,0,0,6188,6189,3,558,279, - 0,6189,6192,7,93,0,0,6190,6193,3,804,402,0,6191,6193,5,119,0,0,6192, - 6190,1,0,0,0,6192,6191,1,0,0,0,6193,6203,1,0,0,0,6194,6195,5,868, - 0,0,6195,6196,3,558,279,0,6196,6199,7,93,0,0,6197,6200,3,804,402, - 0,6198,6200,5,119,0,0,6199,6197,1,0,0,0,6199,6198,1,0,0,0,6200,6202, - 1,0,0,0,6201,6194,1,0,0,0,6202,6205,1,0,0,0,6203,6201,1,0,0,0,6203, - 6204,1,0,0,0,6204,6240,1,0,0,0,6205,6203,1,0,0,0,6206,6207,5,155, - 0,0,6207,6210,3,58,29,0,6208,6211,3,688,344,0,6209,6211,5,42,0,0, - 6210,6208,1,0,0,0,6210,6209,1,0,0,0,6211,6240,1,0,0,0,6212,6213, - 5,155,0,0,6213,6220,5,497,0,0,6214,6217,3,688,344,0,6215,6216,5, - 28,0,0,6216,6218,3,690,345,0,6217,6215,1,0,0,0,6217,6218,1,0,0,0, - 6218,6221,1,0,0,0,6219,6221,5,42,0,0,6220,6214,1,0,0,0,6220,6219, - 1,0,0,0,6221,6240,1,0,0,0,6222,6240,3,490,245,0,6223,6240,3,342, - 171,0,6224,6240,3,340,170,0,6225,6226,5,155,0,0,6226,6227,3,702, - 351,0,6227,6228,7,93,0,0,6228,6236,3,804,402,0,6229,6230,5,868,0, - 0,6230,6231,3,702,351,0,6231,6232,7,93,0,0,6232,6233,3,804,402,0, - 6233,6235,1,0,0,0,6234,6229,1,0,0,0,6235,6238,1,0,0,0,6236,6234, - 1,0,0,0,6236,6237,1,0,0,0,6237,6240,1,0,0,0,6238,6236,1,0,0,0,6239, - 6187,1,0,0,0,6239,6206,1,0,0,0,6239,6212,1,0,0,0,6239,6222,1,0,0, - 0,6239,6223,1,0,0,0,6239,6224,1,0,0,0,6239,6225,1,0,0,0,6240,555, - 1,0,0,0,6241,6242,5,157,0,0,6242,6243,7,63,0,0,6243,6426,5,452,0, - 0,6244,6245,5,157,0,0,6245,6246,7,94,0,0,6246,6249,5,386,0,0,6247, - 6248,5,80,0,0,6248,6250,5,882,0,0,6249,6247,1,0,0,0,6249,6250,1, - 0,0,0,6250,6253,1,0,0,0,6251,6252,5,68,0,0,6252,6254,3,712,356,0, - 6253,6251,1,0,0,0,6253,6254,1,0,0,0,6254,6262,1,0,0,0,6255,6259, - 5,100,0,0,6256,6257,3,712,356,0,6257,6258,5,868,0,0,6258,6260,1, - 0,0,0,6259,6256,1,0,0,0,6259,6260,1,0,0,0,6260,6261,1,0,0,0,6261, - 6263,3,712,356,0,6262,6255,1,0,0,0,6262,6263,1,0,0,0,6263,6265,1, - 0,0,0,6264,6266,3,390,195,0,6265,6264,1,0,0,0,6265,6266,1,0,0,0, - 6266,6426,1,0,0,0,6267,6268,5,157,0,0,6268,6270,3,560,280,0,6269, - 6271,3,562,281,0,6270,6269,1,0,0,0,6270,6271,1,0,0,0,6271,6426,1, - 0,0,0,6272,6274,5,157,0,0,6273,6275,5,392,0,0,6274,6273,1,0,0,0, - 6274,6275,1,0,0,0,6275,6277,1,0,0,0,6276,6278,5,408,0,0,6277,6276, - 1,0,0,0,6277,6278,1,0,0,0,6278,6279,1,0,0,0,6279,6280,7,47,0,0,6280, - 6281,7,95,0,0,6281,6284,3,652,326,0,6282,6283,7,95,0,0,6283,6285, - 3,628,314,0,6284,6282,1,0,0,0,6284,6285,1,0,0,0,6285,6287,1,0,0, - 0,6286,6288,3,562,281,0,6287,6286,1,0,0,0,6287,6288,1,0,0,0,6288, - 6426,1,0,0,0,6289,6290,5,157,0,0,6290,6291,5,34,0,0,6291,6293,7, - 0,0,0,6292,6294,3,760,380,0,6293,6292,1,0,0,0,6293,6294,1,0,0,0, - 6294,6295,1,0,0,0,6295,6426,3,628,314,0,6296,6297,5,157,0,0,6297, - 6298,5,34,0,0,6298,6299,7,96,0,0,6299,6426,3,702,351,0,6300,6301, - 5,157,0,0,6301,6302,5,34,0,0,6302,6303,5,409,0,0,6303,6426,3,632, - 316,0,6304,6305,5,157,0,0,6305,6306,5,34,0,0,6306,6307,5,684,0,0, - 6307,6426,3,636,318,0,6308,6309,5,157,0,0,6309,6310,5,34,0,0,6310, - 6311,5,173,0,0,6311,6426,3,652,326,0,6312,6313,5,157,0,0,6313,6314, - 5,34,0,0,6314,6315,5,678,0,0,6315,6426,3,684,342,0,6316,6317,5,157, - 0,0,6317,6318,5,380,0,0,6318,6319,3,692,346,0,6319,6320,7,97,0,0, - 6320,6426,1,0,0,0,6321,6322,5,157,0,0,6322,6426,3,564,282,0,6323, - 6324,5,157,0,0,6324,6332,7,98,0,0,6325,6329,5,100,0,0,6326,6327, - 3,712,356,0,6327,6328,5,868,0,0,6328,6330,1,0,0,0,6329,6326,1,0, - 0,0,6329,6330,1,0,0,0,6330,6331,1,0,0,0,6331,6333,3,712,356,0,6332, - 6325,1,0,0,0,6332,6333,1,0,0,0,6333,6426,1,0,0,0,6334,6335,5,157, - 0,0,6335,6336,5,262,0,0,6336,6337,5,866,0,0,6337,6338,5,850,0,0, - 6338,6339,5,867,0,0,6339,6426,7,98,0,0,6340,6341,5,157,0,0,6341, - 6344,3,566,283,0,6342,6343,7,95,0,0,6343,6345,3,628,314,0,6344,6342, - 1,0,0,0,6344,6345,1,0,0,0,6345,6347,1,0,0,0,6346,6348,3,562,281, - 0,6347,6346,1,0,0,0,6347,6348,1,0,0,0,6348,6426,1,0,0,0,6349,6350, - 5,157,0,0,6350,6351,5,132,0,0,6351,6352,5,336,0,0,6352,6426,3,702, - 351,0,6353,6354,5,157,0,0,6354,6355,5,409,0,0,6355,6356,5,336,0, - 0,6356,6426,3,632,316,0,6357,6358,5,157,0,0,6358,6365,5,414,0,0, - 6359,6360,5,65,0,0,6360,6363,3,656,328,0,6361,6362,5,188,0,0,6362, - 6364,3,654,327,0,6363,6361,1,0,0,0,6363,6364,1,0,0,0,6364,6366,1, - 0,0,0,6365,6359,1,0,0,0,6365,6366,1,0,0,0,6366,6426,1,0,0,0,6367, - 6369,5,157,0,0,6368,6370,5,392,0,0,6369,6368,1,0,0,0,6369,6370,1, - 0,0,0,6370,6371,1,0,0,0,6371,6372,7,99,0,0,6372,6373,7,95,0,0,6373, - 6376,3,652,326,0,6374,6375,7,95,0,0,6375,6377,3,628,314,0,6376,6374, - 1,0,0,0,6376,6377,1,0,0,0,6377,6380,1,0,0,0,6378,6379,5,192,0,0, - 6379,6381,3,804,402,0,6380,6378,1,0,0,0,6380,6381,1,0,0,0,6381,6426, - 1,0,0,0,6382,6383,5,157,0,0,6383,6384,5,516,0,0,6384,6387,5,752, - 0,0,6385,6386,7,95,0,0,6386,6388,3,628,314,0,6387,6385,1,0,0,0,6387, - 6388,1,0,0,0,6388,6390,1,0,0,0,6389,6391,3,562,281,0,6390,6389,1, - 0,0,0,6390,6391,1,0,0,0,6391,6426,1,0,0,0,6392,6393,5,157,0,0,6393, - 6402,5,545,0,0,6394,6399,3,568,284,0,6395,6396,5,868,0,0,6396,6398, - 3,568,284,0,6397,6395,1,0,0,0,6398,6401,1,0,0,0,6399,6397,1,0,0, - 0,6399,6400,1,0,0,0,6400,6403,1,0,0,0,6401,6399,1,0,0,0,6402,6394, - 1,0,0,0,6402,6403,1,0,0,0,6403,6407,1,0,0,0,6404,6405,5,65,0,0,6405, - 6406,5,548,0,0,6406,6408,3,712,356,0,6407,6404,1,0,0,0,6407,6408, - 1,0,0,0,6408,6415,1,0,0,0,6409,6410,5,100,0,0,6410,6413,3,712,356, - 0,6411,6412,5,509,0,0,6412,6414,3,712,356,0,6413,6411,1,0,0,0,6413, - 6414,1,0,0,0,6414,6416,1,0,0,0,6415,6409,1,0,0,0,6415,6416,1,0,0, - 0,6416,6426,1,0,0,0,6417,6418,5,157,0,0,6418,6419,7,64,0,0,6419, - 6421,5,645,0,0,6420,6422,3,390,195,0,6421,6420,1,0,0,0,6421,6422, - 1,0,0,0,6422,6426,1,0,0,0,6423,6424,5,157,0,0,6424,6426,5,564,0, - 0,6425,6241,1,0,0,0,6425,6244,1,0,0,0,6425,6267,1,0,0,0,6425,6272, - 1,0,0,0,6425,6289,1,0,0,0,6425,6296,1,0,0,0,6425,6300,1,0,0,0,6425, - 6304,1,0,0,0,6425,6308,1,0,0,0,6425,6312,1,0,0,0,6425,6316,1,0,0, - 0,6425,6321,1,0,0,0,6425,6323,1,0,0,0,6425,6334,1,0,0,0,6425,6340, - 1,0,0,0,6425,6349,1,0,0,0,6425,6353,1,0,0,0,6425,6357,1,0,0,0,6425, - 6367,1,0,0,0,6425,6382,1,0,0,0,6425,6392,1,0,0,0,6425,6417,1,0,0, - 0,6425,6423,1,0,0,0,6426,557,1,0,0,0,6427,6438,5,892,0,0,6428,6438, - 5,893,0,0,6429,6430,5,870,0,0,6430,6432,5,870,0,0,6431,6429,1,0, - 0,0,6431,6432,1,0,0,0,6432,6433,1,0,0,0,6433,6435,7,100,0,0,6434, - 6431,1,0,0,0,6434,6435,1,0,0,0,6435,6436,1,0,0,0,6436,6438,3,706, - 353,0,6437,6427,1,0,0,0,6437,6428,1,0,0,0,6437,6434,1,0,0,0,6438, - 559,1,0,0,0,6439,6440,5,26,0,0,6440,6454,5,155,0,0,6441,6454,5,823, - 0,0,6442,6454,5,824,0,0,6443,6454,5,40,0,0,6444,6454,5,153,0,0,6445, - 6446,5,409,0,0,6446,6454,5,645,0,0,6447,6448,5,132,0,0,6448,6454, - 5,645,0,0,6449,6451,7,62,0,0,6450,6449,1,0,0,0,6450,6451,1,0,0,0, - 6451,6452,1,0,0,0,6452,6454,7,101,0,0,6453,6439,1,0,0,0,6453,6441, - 1,0,0,0,6453,6442,1,0,0,0,6453,6443,1,0,0,0,6453,6444,1,0,0,0,6453, - 6445,1,0,0,0,6453,6447,1,0,0,0,6453,6450,1,0,0,0,6454,561,1,0,0, - 0,6455,6456,5,99,0,0,6456,6460,5,882,0,0,6457,6458,5,192,0,0,6458, - 6460,3,804,402,0,6459,6455,1,0,0,0,6459,6457,1,0,0,0,6460,563,1, - 0,0,0,6461,6463,5,647,0,0,6462,6461,1,0,0,0,6462,6463,1,0,0,0,6463, - 6464,1,0,0,0,6464,6479,5,381,0,0,6465,6466,5,453,0,0,6466,6479,5, - 645,0,0,6467,6479,5,536,0,0,6468,6479,5,734,0,0,6469,6471,5,408, - 0,0,6470,6469,1,0,0,0,6470,6471,1,0,0,0,6471,6472,1,0,0,0,6472,6479, - 5,544,0,0,6473,6479,5,546,0,0,6474,6475,5,598,0,0,6475,6479,5,422, - 0,0,6476,6479,5,312,0,0,6477,6479,5,356,0,0,6478,6462,1,0,0,0,6478, - 6465,1,0,0,0,6478,6467,1,0,0,0,6478,6468,1,0,0,0,6478,6470,1,0,0, - 0,6478,6473,1,0,0,0,6478,6474,1,0,0,0,6478,6476,1,0,0,0,6478,6477, - 1,0,0,0,6479,565,1,0,0,0,6480,6492,5,386,0,0,6481,6482,5,173,0,0, - 6482,6492,5,645,0,0,6483,6485,5,392,0,0,6484,6483,1,0,0,0,6484,6485, - 1,0,0,0,6485,6487,1,0,0,0,6486,6488,5,408,0,0,6487,6486,1,0,0,0, - 6487,6488,1,0,0,0,6488,6489,1,0,0,0,6489,6492,5,752,0,0,6490,6492, - 5,667,0,0,6491,6480,1,0,0,0,6491,6481,1,0,0,0,6491,6484,1,0,0,0, - 6491,6490,1,0,0,0,6492,567,1,0,0,0,6493,6506,5,7,0,0,6494,6495,5, - 320,0,0,6495,6506,5,437,0,0,6496,6497,5,355,0,0,6497,6506,5,656, - 0,0,6498,6506,5,358,0,0,6499,6506,5,439,0,0,6500,6506,5,802,0,0, - 6501,6502,5,521,0,0,6502,6506,5,397,0,0,6503,6506,5,605,0,0,6504, - 6506,5,655,0,0,6505,6493,1,0,0,0,6505,6494,1,0,0,0,6505,6496,1,0, - 0,0,6505,6498,1,0,0,0,6505,6499,1,0,0,0,6505,6500,1,0,0,0,6505,6501, - 1,0,0,0,6505,6503,1,0,0,0,6505,6504,1,0,0,0,6506,569,1,0,0,0,6507, - 6508,5,318,0,0,6508,6509,5,882,0,0,6509,571,1,0,0,0,6510,6511,5, - 324,0,0,6511,6529,5,82,0,0,6512,6517,3,592,296,0,6513,6514,5,868, - 0,0,6514,6516,3,592,296,0,6515,6513,1,0,0,0,6516,6519,1,0,0,0,6517, - 6515,1,0,0,0,6517,6518,1,0,0,0,6518,6530,1,0,0,0,6519,6517,1,0,0, - 0,6520,6521,3,652,326,0,6521,6522,5,130,0,0,6522,6525,5,866,0,0, - 6523,6526,3,670,335,0,6524,6526,5,7,0,0,6525,6523,1,0,0,0,6525,6524, - 1,0,0,0,6526,6527,1,0,0,0,6527,6528,5,867,0,0,6528,6530,1,0,0,0, - 6529,6512,1,0,0,0,6529,6520,1,0,0,0,6530,6531,1,0,0,0,6531,6532, - 5,80,0,0,6532,6533,3,628,314,0,6533,573,1,0,0,0,6534,6536,5,404, - 0,0,6535,6537,3,538,269,0,6536,6535,1,0,0,0,6536,6537,1,0,0,0,6537, - 6538,1,0,0,0,6538,6543,3,594,297,0,6539,6540,5,868,0,0,6540,6542, - 3,594,297,0,6541,6539,1,0,0,0,6542,6545,1,0,0,0,6543,6541,1,0,0, - 0,6543,6544,1,0,0,0,6544,575,1,0,0,0,6545,6543,1,0,0,0,6546,6548, - 5,94,0,0,6547,6549,7,102,0,0,6548,6547,1,0,0,0,6548,6549,1,0,0,0, - 6549,6550,1,0,0,0,6550,6551,3,804,402,0,6551,577,1,0,0,0,6552,6553, - 5,103,0,0,6553,6554,5,82,0,0,6554,6555,5,88,0,0,6555,6556,5,324, - 0,0,6556,6561,3,598,299,0,6557,6558,5,868,0,0,6558,6560,3,598,299, - 0,6559,6557,1,0,0,0,6560,6563,1,0,0,0,6561,6559,1,0,0,0,6561,6562, - 1,0,0,0,6562,579,1,0,0,0,6563,6561,1,0,0,0,6564,6565,5,575,0,0,6565, - 6570,3,582,291,0,6566,6567,5,868,0,0,6567,6569,3,582,291,0,6568, - 6566,1,0,0,0,6569,6572,1,0,0,0,6570,6568,1,0,0,0,6570,6571,1,0,0, - 0,6571,581,1,0,0,0,6572,6570,1,0,0,0,6573,6579,5,453,0,0,6574,6579, - 5,563,0,0,6575,6576,5,548,0,0,6576,6579,5,324,0,0,6577,6579,5,598, - 0,0,6578,6573,1,0,0,0,6578,6574,1,0,0,0,6578,6575,1,0,0,0,6578,6577, - 1,0,0,0,6579,583,1,0,0,0,6580,6581,5,575,0,0,6581,6586,5,531,0,0, - 6582,6584,3,758,379,0,6583,6582,1,0,0,0,6583,6584,1,0,0,0,6584,6585, - 1,0,0,0,6585,6587,3,706,353,0,6586,6583,1,0,0,0,6586,6587,1,0,0, - 0,6587,585,1,0,0,0,6588,6589,5,575,0,0,6589,6591,7,64,0,0,6590,6592, - 5,7,0,0,6591,6590,1,0,0,0,6591,6592,1,0,0,0,6592,6594,1,0,0,0,6593, - 6595,3,390,195,0,6594,6593,1,0,0,0,6594,6595,1,0,0,0,6595,587,1, - 0,0,0,6596,6597,5,576,0,0,6597,589,1,0,0,0,6598,6599,5,749,0,0,6599, - 591,1,0,0,0,6600,6606,3,652,326,0,6601,6602,7,19,0,0,6602,6603,5, - 866,0,0,6603,6604,3,640,320,0,6604,6605,5,867,0,0,6605,6607,1,0, - 0,0,6606,6601,1,0,0,0,6606,6607,1,0,0,0,6607,593,1,0,0,0,6608,6627, - 5,366,0,0,6609,6627,5,422,0,0,6610,6612,7,103,0,0,6611,6610,1,0, - 0,0,6611,6612,1,0,0,0,6612,6613,1,0,0,0,6613,6627,5,452,0,0,6614, - 6627,5,517,0,0,6615,6627,5,734,0,0,6616,6617,5,548,0,0,6617,6627, - 5,324,0,0,6618,6627,5,645,0,0,6619,6627,5,680,0,0,6620,6624,5,752, - 0,0,6621,6622,5,194,0,0,6622,6623,5,135,0,0,6623,6625,5,104,0,0, - 6624,6621,1,0,0,0,6624,6625,1,0,0,0,6625,6627,1,0,0,0,6626,6608, - 1,0,0,0,6626,6609,1,0,0,0,6626,6611,1,0,0,0,6626,6614,1,0,0,0,6626, - 6615,1,0,0,0,6626,6616,1,0,0,0,6626,6618,1,0,0,0,6626,6619,1,0,0, - 0,6626,6620,1,0,0,0,6627,6641,1,0,0,0,6628,6629,5,556,0,0,6629,6631, - 5,452,0,0,6630,6632,3,390,195,0,6631,6630,1,0,0,0,6631,6632,1,0, - 0,0,6632,6641,1,0,0,0,6633,6635,7,61,0,0,6634,6636,3,650,325,0,6635, - 6634,1,0,0,0,6635,6636,1,0,0,0,6636,6638,1,0,0,0,6637,6639,3,596, - 298,0,6638,6637,1,0,0,0,6638,6639,1,0,0,0,6639,6641,1,0,0,0,6640, - 6626,1,0,0,0,6640,6628,1,0,0,0,6640,6633,1,0,0,0,6641,595,1,0,0, - 0,6642,6643,5,194,0,0,6643,6644,5,135,0,0,6644,6648,5,104,0,0,6645, - 6646,5,65,0,0,6646,6648,5,391,0,0,6647,6642,1,0,0,0,6647,6645,1, - 0,0,0,6648,597,1,0,0,0,6649,6657,3,652,326,0,6650,6651,5,130,0,0, - 6651,6654,5,866,0,0,6652,6655,3,670,335,0,6653,6655,5,7,0,0,6654, - 6652,1,0,0,0,6654,6653,1,0,0,0,6655,6656,1,0,0,0,6656,6658,5,867, - 0,0,6657,6650,1,0,0,0,6657,6658,1,0,0,0,6658,6666,1,0,0,0,6659,6661, - 7,19,0,0,6660,6659,1,0,0,0,6660,6661,1,0,0,0,6661,6662,1,0,0,0,6662, - 6663,5,866,0,0,6663,6664,3,640,320,0,6664,6665,5,867,0,0,6665,6667, - 1,0,0,0,6666,6660,1,0,0,0,6666,6667,1,0,0,0,6667,6670,1,0,0,0,6668, - 6669,5,79,0,0,6669,6671,5,446,0,0,6670,6668,1,0,0,0,6670,6671,1, - 0,0,0,6671,599,1,0,0,0,6672,6673,7,104,0,0,6673,6676,3,652,326,0, - 6674,6677,3,662,331,0,6675,6677,5,882,0,0,6676,6674,1,0,0,0,6676, - 6675,1,0,0,0,6676,6677,1,0,0,0,6677,601,1,0,0,0,6678,6684,7,104, - 0,0,6679,6685,5,392,0,0,6680,6685,5,528,0,0,6681,6682,5,826,0,0, - 6682,6683,5,857,0,0,6683,6685,7,105,0,0,6684,6679,1,0,0,0,6684,6680, - 1,0,0,0,6684,6681,1,0,0,0,6684,6685,1,0,0,0,6685,6686,1,0,0,0,6686, - 6687,3,624,312,0,6687,603,1,0,0,0,6688,6689,7,104,0,0,6689,6693, - 5,10,0,0,6690,6691,5,826,0,0,6691,6692,5,857,0,0,6692,6694,5,666, - 0,0,6693,6690,1,0,0,0,6693,6694,1,0,0,0,6694,6695,1,0,0,0,6695,6696, - 3,210,105,0,6696,605,1,0,0,0,6697,6698,5,419,0,0,6698,6699,5,882, - 0,0,6699,607,1,0,0,0,6700,6701,5,187,0,0,6701,6702,3,628,314,0,6702, - 609,1,0,0,0,6703,6711,5,158,0,0,6704,6706,5,164,0,0,6705,6707,5, - 682,0,0,6706,6705,1,0,0,0,6706,6707,1,0,0,0,6707,6708,1,0,0,0,6708, - 6712,3,716,358,0,6709,6712,5,889,0,0,6710,6712,5,890,0,0,6711,6704, - 1,0,0,0,6711,6709,1,0,0,0,6711,6710,1,0,0,0,6712,6722,1,0,0,0,6713, - 6714,5,155,0,0,6714,6719,3,614,307,0,6715,6716,5,868,0,0,6716,6718, - 3,614,307,0,6717,6715,1,0,0,0,6718,6721,1,0,0,0,6719,6717,1,0,0, - 0,6719,6720,1,0,0,0,6720,6723,1,0,0,0,6721,6719,1,0,0,0,6722,6713, - 1,0,0,0,6722,6723,1,0,0,0,6723,611,1,0,0,0,6724,6732,5,145,0,0,6725, - 6727,5,164,0,0,6726,6728,5,682,0,0,6727,6726,1,0,0,0,6727,6728,1, - 0,0,0,6728,6729,1,0,0,0,6729,6733,3,716,358,0,6730,6733,5,889,0, - 0,6731,6733,5,890,0,0,6732,6725,1,0,0,0,6732,6730,1,0,0,0,6732,6731, - 1,0,0,0,6732,6733,1,0,0,0,6733,6743,1,0,0,0,6734,6735,5,155,0,0, - 6735,6740,3,614,307,0,6736,6737,5,868,0,0,6737,6739,3,614,307,0, - 6738,6736,1,0,0,0,6739,6742,1,0,0,0,6740,6738,1,0,0,0,6740,6741, - 1,0,0,0,6741,6744,1,0,0,0,6742,6740,1,0,0,0,6743,6734,1,0,0,0,6743, - 6744,1,0,0,0,6744,613,1,0,0,0,6745,6746,7,106,0,0,6746,6751,5,857, - 0,0,6747,6752,3,716,358,0,6748,6752,5,883,0,0,6749,6752,3,686,343, - 0,6750,6752,3,708,354,0,6751,6747,1,0,0,0,6751,6748,1,0,0,0,6751, - 6749,1,0,0,0,6751,6750,1,0,0,0,6752,615,1,0,0,0,6753,6755,5,194, - 0,0,6754,6756,5,552,0,0,6755,6754,1,0,0,0,6755,6756,1,0,0,0,6756, - 6757,1,0,0,0,6757,6762,3,52,26,0,6758,6759,5,868,0,0,6759,6761,3, - 52,26,0,6760,6758,1,0,0,0,6761,6764,1,0,0,0,6762,6760,1,0,0,0,6762, - 6763,1,0,0,0,6763,617,1,0,0,0,6764,6762,1,0,0,0,6765,6766,5,173, - 0,0,6766,6768,3,652,326,0,6767,6769,3,258,129,0,6768,6767,1,0,0, - 0,6768,6769,1,0,0,0,6769,6771,1,0,0,0,6770,6772,3,318,159,0,6771, - 6770,1,0,0,0,6771,6772,1,0,0,0,6772,619,1,0,0,0,6773,6775,5,72,0, - 0,6774,6776,7,107,0,0,6775,6774,1,0,0,0,6775,6776,1,0,0,0,6776,6777, - 1,0,0,0,6777,6809,5,48,0,0,6778,6779,3,558,279,0,6779,6780,5,857, - 0,0,6780,6788,7,108,0,0,6781,6782,5,868,0,0,6782,6783,3,558,279, - 0,6783,6784,5,857,0,0,6784,6785,7,108,0,0,6785,6787,1,0,0,0,6786, - 6781,1,0,0,0,6787,6790,1,0,0,0,6788,6786,1,0,0,0,6788,6789,1,0,0, - 0,6789,6810,1,0,0,0,6790,6788,1,0,0,0,6791,6794,5,30,0,0,6792,6795, - 3,712,356,0,6793,6795,3,558,279,0,6794,6792,1,0,0,0,6794,6793,1, - 0,0,0,6795,6796,1,0,0,0,6796,6797,3,558,279,0,6797,6798,5,857,0, - 0,6798,6806,3,622,311,0,6799,6800,5,868,0,0,6800,6801,3,558,279, - 0,6801,6802,5,857,0,0,6802,6803,3,622,311,0,6803,6805,1,0,0,0,6804, - 6799,1,0,0,0,6805,6808,1,0,0,0,6806,6804,1,0,0,0,6806,6807,1,0,0, - 0,6807,6810,1,0,0,0,6808,6806,1,0,0,0,6809,6778,1,0,0,0,6809,6791, - 1,0,0,0,6810,621,1,0,0,0,6811,6812,7,109,0,0,6812,623,1,0,0,0,6813, - 6819,3,210,105,0,6814,6819,3,186,93,0,6815,6819,3,192,96,0,6816, - 6819,3,208,104,0,6817,6819,3,220,110,0,6818,6813,1,0,0,0,6818,6814, - 1,0,0,0,6818,6815,1,0,0,0,6818,6816,1,0,0,0,6818,6817,1,0,0,0,6819, - 6824,1,0,0,0,6820,6821,5,65,0,0,6821,6822,5,349,0,0,6822,6824,3, - 706,353,0,6823,6818,1,0,0,0,6823,6820,1,0,0,0,6824,625,1,0,0,0,6825, - 6826,3,702,351,0,6826,627,1,0,0,0,6827,6828,3,702,351,0,6828,629, - 1,0,0,0,6829,6830,3,702,351,0,6830,631,1,0,0,0,6831,6832,3,702,351, - 0,6832,633,1,0,0,0,6833,6834,3,702,351,0,6834,635,1,0,0,0,6835,6836, - 3,702,351,0,6836,637,1,0,0,0,6837,6838,3,706,353,0,6838,639,1,0, - 0,0,6839,6844,3,642,321,0,6840,6841,5,868,0,0,6841,6843,3,642,321, - 0,6842,6840,1,0,0,0,6843,6846,1,0,0,0,6844,6842,1,0,0,0,6844,6845, - 1,0,0,0,6845,641,1,0,0,0,6846,6844,1,0,0,0,6847,6848,3,706,353,0, - 6848,643,1,0,0,0,6849,6850,3,706,353,0,6850,645,1,0,0,0,6851,6852, - 3,706,353,0,6852,647,1,0,0,0,6853,6854,3,702,351,0,6854,649,1,0, - 0,0,6855,6860,3,652,326,0,6856,6857,5,868,0,0,6857,6859,3,652,326, - 0,6858,6856,1,0,0,0,6859,6862,1,0,0,0,6860,6858,1,0,0,0,6860,6861, - 1,0,0,0,6861,651,1,0,0,0,6862,6860,1,0,0,0,6863,6864,3,702,351,0, - 6864,653,1,0,0,0,6865,6870,3,656,328,0,6866,6867,5,868,0,0,6867, - 6869,3,656,328,0,6868,6866,1,0,0,0,6869,6872,1,0,0,0,6870,6868,1, - 0,0,0,6870,6871,1,0,0,0,6871,655,1,0,0,0,6872,6870,1,0,0,0,6873, - 6876,3,684,342,0,6874,6876,3,706,353,0,6875,6873,1,0,0,0,6875,6874, - 1,0,0,0,6876,657,1,0,0,0,6877,6882,3,706,353,0,6878,6880,3,710,355, - 0,6879,6881,3,710,355,0,6880,6879,1,0,0,0,6880,6881,1,0,0,0,6881, - 6883,1,0,0,0,6882,6878,1,0,0,0,6882,6883,1,0,0,0,6883,6892,1,0,0, - 0,6884,6886,9,0,0,0,6885,6884,1,0,0,0,6885,6886,1,0,0,0,6886,6887, - 1,0,0,0,6887,6889,3,710,355,0,6888,6890,3,710,355,0,6889,6888,1, - 0,0,0,6889,6890,1,0,0,0,6890,6892,1,0,0,0,6891,6877,1,0,0,0,6891, - 6885,1,0,0,0,6892,659,1,0,0,0,6893,6898,3,662,331,0,6894,6895,5, - 868,0,0,6895,6897,3,662,331,0,6896,6894,1,0,0,0,6897,6900,1,0,0, - 0,6898,6896,1,0,0,0,6898,6899,1,0,0,0,6899,661,1,0,0,0,6900,6898, - 1,0,0,0,6901,6906,3,706,353,0,6902,6904,3,710,355,0,6903,6905,3, - 710,355,0,6904,6903,1,0,0,0,6904,6905,1,0,0,0,6905,6907,1,0,0,0, - 6906,6902,1,0,0,0,6906,6907,1,0,0,0,6907,6917,1,0,0,0,6908,6910, - 9,0,0,0,6909,6908,1,0,0,0,6909,6910,1,0,0,0,6910,6911,1,0,0,0,6911, - 6913,3,710,355,0,6912,6914,3,710,355,0,6913,6912,1,0,0,0,6913,6914, - 1,0,0,0,6914,6917,1,0,0,0,6915,6917,4,331,3,0,6916,6901,1,0,0,0, - 6916,6909,1,0,0,0,6916,6915,1,0,0,0,6917,663,1,0,0,0,6918,6919,3, - 706,353,0,6919,665,1,0,0,0,6920,6921,3,706,353,0,6921,667,1,0,0, - 0,6922,6923,3,706,353,0,6923,669,1,0,0,0,6924,6929,3,672,336,0,6925, - 6926,5,868,0,0,6926,6928,3,672,336,0,6927,6925,1,0,0,0,6928,6931, - 1,0,0,0,6929,6927,1,0,0,0,6929,6930,1,0,0,0,6930,671,1,0,0,0,6931, - 6929,1,0,0,0,6932,6933,3,706,353,0,6933,673,1,0,0,0,6934,6939,3, - 706,353,0,6935,6936,5,866,0,0,6936,6937,3,712,356,0,6937,6938,5, - 867,0,0,6938,6940,1,0,0,0,6939,6935,1,0,0,0,6939,6940,1,0,0,0,6940, - 6943,1,0,0,0,6941,6943,3,804,402,0,6942,6934,1,0,0,0,6942,6941,1, - 0,0,0,6943,6945,1,0,0,0,6944,6946,7,55,0,0,6945,6944,1,0,0,0,6945, - 6946,1,0,0,0,6946,675,1,0,0,0,6947,6948,3,678,339,0,6948,6949,5, - 878,0,0,6949,6950,3,712,356,0,6950,677,1,0,0,0,6951,6952,3,680,340, - 0,6952,6953,5,891,0,0,6953,679,1,0,0,0,6954,6959,5,882,0,0,6955, - 6959,5,889,0,0,6956,6959,5,704,0,0,6957,6959,3,834,417,0,6958,6954, - 1,0,0,0,6958,6955,1,0,0,0,6958,6956,1,0,0,0,6958,6957,1,0,0,0,6959, - 681,1,0,0,0,6960,6961,7,110,0,0,6961,683,1,0,0,0,6962,6964,3,680, - 340,0,6963,6965,3,682,341,0,6964,6963,1,0,0,0,6964,6965,1,0,0,0, - 6965,6968,1,0,0,0,6966,6968,3,60,30,0,6967,6962,1,0,0,0,6967,6966, - 1,0,0,0,6968,685,1,0,0,0,6969,6970,7,111,0,0,6970,687,1,0,0,0,6971, - 6976,5,228,0,0,6972,6976,3,824,412,0,6973,6976,5,882,0,0,6974,6976, - 5,879,0,0,6975,6971,1,0,0,0,6975,6972,1,0,0,0,6975,6973,1,0,0,0, - 6975,6974,1,0,0,0,6976,689,1,0,0,0,6977,6978,3,706,353,0,6978,691, - 1,0,0,0,6979,6983,3,694,347,0,6980,6983,5,889,0,0,6981,6983,5,882, - 0,0,6982,6979,1,0,0,0,6982,6980,1,0,0,0,6982,6981,1,0,0,0,6983,693, - 1,0,0,0,6984,6985,7,112,0,0,6985,695,1,0,0,0,6986,6987,3,712,356, - 0,6987,6988,5,854,0,0,6988,6989,3,712,356,0,6989,6990,5,854,0,0, - 6990,6991,3,712,356,0,6991,6992,5,854,0,0,6992,6993,3,712,356,0, - 6993,6994,5,854,0,0,6994,7000,3,712,356,0,6995,6996,5,878,0,0,6996, - 6997,3,712,356,0,6997,6998,5,854,0,0,6998,6999,3,712,356,0,6999, - 7001,1,0,0,0,7000,6995,1,0,0,0,7001,7002,1,0,0,0,7002,7000,1,0,0, - 0,7002,7003,1,0,0,0,7003,697,1,0,0,0,7004,7011,3,700,350,0,7005, - 7006,5,868,0,0,7006,7009,3,700,350,0,7007,7008,5,868,0,0,7008,7010, - 3,712,356,0,7009,7007,1,0,0,0,7009,7010,1,0,0,0,7010,7012,1,0,0, - 0,7011,7005,1,0,0,0,7011,7012,1,0,0,0,7012,699,1,0,0,0,7013,7021, - 5,882,0,0,7014,7021,5,887,0,0,7015,7017,5,884,0,0,7016,7015,1,0, - 0,0,7017,7018,1,0,0,0,7018,7016,1,0,0,0,7018,7019,1,0,0,0,7019,7021, - 1,0,0,0,7020,7013,1,0,0,0,7020,7014,1,0,0,0,7020,7016,1,0,0,0,7021, - 701,1,0,0,0,7022,7024,3,706,353,0,7023,7025,3,710,355,0,7024,7023, - 1,0,0,0,7024,7025,1,0,0,0,7025,703,1,0,0,0,7026,7031,3,706,353,0, - 7027,7028,5,868,0,0,7028,7030,3,706,353,0,7029,7027,1,0,0,0,7030, - 7033,1,0,0,0,7031,7029,1,0,0,0,7031,7032,1,0,0,0,7032,705,1,0,0, - 0,7033,7031,1,0,0,0,7034,7038,3,708,354,0,7035,7038,5,879,0,0,7036, - 7038,5,882,0,0,7037,7034,1,0,0,0,7037,7035,1,0,0,0,7037,7036,1,0, - 0,0,7038,707,1,0,0,0,7039,7049,5,889,0,0,7040,7049,3,824,412,0,7041, - 7049,3,826,413,0,7042,7049,3,694,347,0,7043,7049,3,828,414,0,7044, - 7049,3,830,415,0,7045,7049,3,832,416,0,7046,7049,3,834,417,0,7047, - 7049,3,796,398,0,7048,7039,1,0,0,0,7048,7040,1,0,0,0,7048,7041,1, - 0,0,0,7048,7042,1,0,0,0,7048,7043,1,0,0,0,7048,7044,1,0,0,0,7048, - 7045,1,0,0,0,7048,7046,1,0,0,0,7048,7047,1,0,0,0,7049,709,1,0,0, - 0,7050,7051,5,865,0,0,7051,7055,5,889,0,0,7052,7053,5,865,0,0,7053, - 7055,3,706,353,0,7054,7050,1,0,0,0,7054,7052,1,0,0,0,7055,711,1, - 0,0,0,7056,7057,7,113,0,0,7057,713,1,0,0,0,7058,7061,5,880,0,0,7059, - 7061,3,712,356,0,7060,7058,1,0,0,0,7060,7059,1,0,0,0,7061,715,1, - 0,0,0,7062,7064,5,888,0,0,7063,7062,1,0,0,0,7063,7064,1,0,0,0,7064, - 7065,1,0,0,0,7065,7068,5,882,0,0,7066,7068,5,881,0,0,7067,7063,1, - 0,0,0,7067,7066,1,0,0,0,7068,7070,1,0,0,0,7069,7071,5,882,0,0,7070, - 7069,1,0,0,0,7071,7072,1,0,0,0,7072,7070,1,0,0,0,7072,7073,1,0,0, - 0,7073,7086,1,0,0,0,7074,7076,5,888,0,0,7075,7074,1,0,0,0,7075,7076, - 1,0,0,0,7076,7077,1,0,0,0,7077,7080,5,882,0,0,7078,7080,5,881,0, - 0,7079,7075,1,0,0,0,7079,7078,1,0,0,0,7080,7083,1,0,0,0,7081,7082, - 5,28,0,0,7082,7084,3,690,345,0,7083,7081,1,0,0,0,7083,7084,1,0,0, - 0,7084,7086,1,0,0,0,7085,7067,1,0,0,0,7085,7079,1,0,0,0,7086,717, - 1,0,0,0,7087,7088,7,114,0,0,7088,719,1,0,0,0,7089,7091,5,888,0,0, - 7090,7089,1,0,0,0,7090,7091,1,0,0,0,7091,7092,1,0,0,0,7092,7093, - 5,884,0,0,7093,721,1,0,0,0,7094,7096,5,114,0,0,7095,7094,1,0,0,0, - 7095,7096,1,0,0,0,7096,7097,1,0,0,0,7097,7098,7,115,0,0,7098,723, - 1,0,0,0,7099,7112,3,716,358,0,7100,7112,3,712,356,0,7101,7102,5, - 854,0,0,7102,7112,3,712,356,0,7103,7112,3,720,360,0,7104,7112,3, - 718,359,0,7105,7112,5,885,0,0,7106,7112,5,887,0,0,7107,7109,5,114, - 0,0,7108,7107,1,0,0,0,7108,7109,1,0,0,0,7109,7110,1,0,0,0,7110,7112, - 7,115,0,0,7111,7099,1,0,0,0,7111,7100,1,0,0,0,7111,7101,1,0,0,0, - 7111,7103,1,0,0,0,7111,7104,1,0,0,0,7111,7105,1,0,0,0,7111,7106, - 1,0,0,0,7111,7108,1,0,0,0,7112,725,1,0,0,0,7113,7115,7,116,0,0,7114, - 7116,5,240,0,0,7115,7114,1,0,0,0,7115,7116,1,0,0,0,7116,7118,1,0, - 0,0,7117,7119,3,732,366,0,7118,7117,1,0,0,0,7118,7119,1,0,0,0,7119, - 7121,1,0,0,0,7120,7122,5,228,0,0,7121,7120,1,0,0,0,7121,7122,1,0, - 0,0,7122,7126,1,0,0,0,7123,7124,3,58,29,0,7124,7125,3,688,344,0, - 7125,7127,1,0,0,0,7126,7123,1,0,0,0,7126,7127,1,0,0,0,7127,7131, - 1,0,0,0,7128,7129,5,28,0,0,7129,7132,3,690,345,0,7130,7132,5,228, - 0,0,7131,7128,1,0,0,0,7131,7130,1,0,0,0,7131,7132,1,0,0,0,7132,7240, - 1,0,0,0,7133,7134,5,227,0,0,7134,7135,7,117,0,0,7135,7137,5,240, - 0,0,7136,7138,3,732,366,0,7137,7136,1,0,0,0,7137,7138,1,0,0,0,7138, - 7140,1,0,0,0,7139,7141,5,228,0,0,7140,7139,1,0,0,0,7140,7141,1,0, - 0,0,7141,7240,1,0,0,0,7142,7143,5,227,0,0,7143,7145,7,118,0,0,7144, - 7146,3,732,366,0,7145,7144,1,0,0,0,7145,7146,1,0,0,0,7146,7148,1, - 0,0,0,7147,7149,5,228,0,0,7148,7147,1,0,0,0,7148,7149,1,0,0,0,7149, - 7240,1,0,0,0,7150,7151,5,498,0,0,7151,7153,5,225,0,0,7152,7154,3, - 732,366,0,7153,7152,1,0,0,0,7153,7154,1,0,0,0,7154,7156,1,0,0,0, - 7155,7157,5,228,0,0,7156,7155,1,0,0,0,7156,7157,1,0,0,0,7157,7240, - 1,0,0,0,7158,7160,7,119,0,0,7159,7161,3,732,366,0,7160,7159,1,0, - 0,0,7160,7161,1,0,0,0,7161,7165,1,0,0,0,7162,7164,7,120,0,0,7163, - 7162,1,0,0,0,7164,7167,1,0,0,0,7165,7163,1,0,0,0,7165,7166,1,0,0, - 0,7166,7240,1,0,0,0,7167,7165,1,0,0,0,7168,7170,5,210,0,0,7169,7171, - 3,734,367,0,7170,7169,1,0,0,0,7170,7171,1,0,0,0,7171,7175,1,0,0, - 0,7172,7174,7,120,0,0,7173,7172,1,0,0,0,7174,7177,1,0,0,0,7175,7173, - 1,0,0,0,7175,7176,1,0,0,0,7176,7240,1,0,0,0,7177,7175,1,0,0,0,7178, - 7180,5,211,0,0,7179,7181,5,212,0,0,7180,7179,1,0,0,0,7180,7181,1, - 0,0,0,7181,7183,1,0,0,0,7182,7184,3,734,367,0,7183,7182,1,0,0,0, - 7183,7184,1,0,0,0,7184,7188,1,0,0,0,7185,7187,7,120,0,0,7186,7185, - 1,0,0,0,7187,7190,1,0,0,0,7188,7186,1,0,0,0,7188,7189,1,0,0,0,7189, - 7240,1,0,0,0,7190,7188,1,0,0,0,7191,7193,7,121,0,0,7192,7194,3,736, - 368,0,7193,7192,1,0,0,0,7193,7194,1,0,0,0,7194,7198,1,0,0,0,7195, - 7197,7,120,0,0,7196,7195,1,0,0,0,7197,7200,1,0,0,0,7198,7196,1,0, - 0,0,7198,7199,1,0,0,0,7199,7240,1,0,0,0,7200,7198,1,0,0,0,7201,7240, - 7,122,0,0,7202,7204,7,123,0,0,7203,7205,3,732,366,0,7204,7203,1, - 0,0,0,7204,7205,1,0,0,0,7205,7240,1,0,0,0,7206,7207,7,124,0,0,7207, - 7209,3,728,364,0,7208,7210,5,228,0,0,7209,7208,1,0,0,0,7209,7210, - 1,0,0,0,7210,7214,1,0,0,0,7211,7212,3,58,29,0,7212,7213,3,688,344, - 0,7213,7215,1,0,0,0,7214,7211,1,0,0,0,7214,7215,1,0,0,0,7215,7240, - 1,0,0,0,7216,7219,7,125,0,0,7217,7218,5,834,0,0,7218,7220,3,712, - 356,0,7219,7217,1,0,0,0,7219,7220,1,0,0,0,7220,7240,1,0,0,0,7221, - 7223,5,233,0,0,7222,7224,5,225,0,0,7223,7222,1,0,0,0,7223,7224,1, - 0,0,0,7224,7226,1,0,0,0,7225,7227,5,228,0,0,7226,7225,1,0,0,0,7226, - 7227,1,0,0,0,7227,7231,1,0,0,0,7228,7229,3,58,29,0,7229,7230,3,688, - 344,0,7230,7232,1,0,0,0,7231,7228,1,0,0,0,7231,7232,1,0,0,0,7232, - 7235,1,0,0,0,7233,7234,5,28,0,0,7234,7236,3,690,345,0,7235,7233, - 1,0,0,0,7235,7236,1,0,0,0,7236,7240,1,0,0,0,7237,7238,5,233,0,0, - 7238,7240,5,229,0,0,7239,7113,1,0,0,0,7239,7133,1,0,0,0,7239,7142, - 1,0,0,0,7239,7150,1,0,0,0,7239,7158,1,0,0,0,7239,7168,1,0,0,0,7239, - 7178,1,0,0,0,7239,7191,1,0,0,0,7239,7201,1,0,0,0,7239,7202,1,0,0, - 0,7239,7206,1,0,0,0,7239,7216,1,0,0,0,7239,7221,1,0,0,0,7239,7237, - 1,0,0,0,7240,727,1,0,0,0,7241,7242,5,866,0,0,7242,7247,5,882,0,0, - 7243,7244,5,868,0,0,7244,7246,5,882,0,0,7245,7243,1,0,0,0,7246,7249, - 1,0,0,0,7247,7245,1,0,0,0,7247,7248,1,0,0,0,7248,7250,1,0,0,0,7249, - 7247,1,0,0,0,7250,7251,5,867,0,0,7251,729,1,0,0,0,7252,7254,7,126, - 0,0,7253,7255,3,732,366,0,7254,7253,1,0,0,0,7254,7255,1,0,0,0,7255, - 7275,1,0,0,0,7256,7258,5,224,0,0,7257,7259,3,732,366,0,7258,7257, - 1,0,0,0,7258,7259,1,0,0,0,7259,7263,1,0,0,0,7260,7261,3,58,29,0, - 7261,7262,3,688,344,0,7262,7264,1,0,0,0,7263,7260,1,0,0,0,7263,7264, - 1,0,0,0,7264,7275,1,0,0,0,7265,7275,7,127,0,0,7266,7268,7,128,0, - 0,7267,7269,3,736,368,0,7268,7267,1,0,0,0,7268,7269,1,0,0,0,7269, - 7275,1,0,0,0,7270,7272,7,129,0,0,7271,7273,7,130,0,0,7272,7271,1, - 0,0,0,7272,7273,1,0,0,0,7273,7275,1,0,0,0,7274,7252,1,0,0,0,7274, - 7256,1,0,0,0,7274,7265,1,0,0,0,7274,7266,1,0,0,0,7274,7270,1,0,0, - 0,7275,7277,1,0,0,0,7276,7278,5,12,0,0,7277,7276,1,0,0,0,7277,7278, - 1,0,0,0,7278,731,1,0,0,0,7279,7280,5,866,0,0,7280,7281,3,712,356, - 0,7281,7282,5,867,0,0,7282,733,1,0,0,0,7283,7284,5,866,0,0,7284, - 7285,3,712,356,0,7285,7286,5,868,0,0,7286,7287,3,712,356,0,7287, - 7288,5,867,0,0,7288,735,1,0,0,0,7289,7290,5,866,0,0,7290,7293,3, - 712,356,0,7291,7292,5,868,0,0,7292,7294,3,712,356,0,7293,7291,1, - 0,0,0,7293,7294,1,0,0,0,7294,7295,1,0,0,0,7295,7296,5,867,0,0,7296, - 737,1,0,0,0,7297,7298,5,866,0,0,7298,7303,3,674,337,0,7299,7300, - 5,868,0,0,7300,7302,3,674,337,0,7301,7299,1,0,0,0,7302,7305,1,0, - 0,0,7303,7301,1,0,0,0,7303,7304,1,0,0,0,7304,7306,1,0,0,0,7305,7303, - 1,0,0,0,7306,7307,5,867,0,0,7307,739,1,0,0,0,7308,7313,3,804,402, - 0,7309,7310,5,868,0,0,7310,7312,3,804,402,0,7311,7309,1,0,0,0,7312, - 7315,1,0,0,0,7313,7311,1,0,0,0,7313,7314,1,0,0,0,7314,741,1,0,0, - 0,7315,7313,1,0,0,0,7316,7317,7,131,0,0,7317,7322,3,744,372,0,7318, - 7319,5,868,0,0,7319,7321,3,744,372,0,7320,7318,1,0,0,0,7321,7324, - 1,0,0,0,7322,7320,1,0,0,0,7322,7323,1,0,0,0,7323,743,1,0,0,0,7324, - 7322,1,0,0,0,7325,7326,5,866,0,0,7326,7331,3,746,373,0,7327,7328, - 5,868,0,0,7328,7330,3,746,373,0,7329,7327,1,0,0,0,7330,7333,1,0, - 0,0,7331,7329,1,0,0,0,7331,7332,1,0,0,0,7332,7334,1,0,0,0,7333,7331, - 1,0,0,0,7334,7335,5,867,0,0,7335,745,1,0,0,0,7336,7339,3,804,402, - 0,7337,7339,5,42,0,0,7338,7336,1,0,0,0,7338,7337,1,0,0,0,7339,747, - 1,0,0,0,7340,7345,3,724,362,0,7341,7342,5,868,0,0,7342,7344,3,724, - 362,0,7343,7341,1,0,0,0,7344,7347,1,0,0,0,7345,7343,1,0,0,0,7345, - 7346,1,0,0,0,7346,749,1,0,0,0,7347,7345,1,0,0,0,7348,7353,5,882, - 0,0,7349,7350,5,868,0,0,7350,7352,5,882,0,0,7351,7349,1,0,0,0,7352, - 7355,1,0,0,0,7353,7351,1,0,0,0,7353,7354,1,0,0,0,7354,751,1,0,0, - 0,7355,7353,1,0,0,0,7356,7361,5,892,0,0,7357,7358,5,868,0,0,7358, - 7360,5,892,0,0,7359,7357,1,0,0,0,7360,7363,1,0,0,0,7361,7359,1,0, - 0,0,7361,7362,1,0,0,0,7362,753,1,0,0,0,7363,7361,1,0,0,0,7364,7391, - 5,116,0,0,7365,7366,5,24,0,0,7366,7367,5,866,0,0,7367,7368,3,804, - 402,0,7368,7369,5,13,0,0,7369,7370,3,730,365,0,7370,7371,5,867,0, - 0,7371,7391,1,0,0,0,7372,7374,3,810,405,0,7373,7372,1,0,0,0,7373, - 7374,1,0,0,0,7374,7375,1,0,0,0,7375,7391,3,724,362,0,7376,7380,3, - 756,378,0,7377,7378,5,119,0,0,7378,7379,5,185,0,0,7379,7381,3,756, - 378,0,7380,7377,1,0,0,0,7380,7381,1,0,0,0,7381,7391,1,0,0,0,7382, - 7383,5,866,0,0,7383,7384,3,804,402,0,7384,7385,5,867,0,0,7385,7391, - 1,0,0,0,7386,7387,5,866,0,0,7387,7388,3,702,351,0,7388,7389,5,867, - 0,0,7389,7391,1,0,0,0,7390,7364,1,0,0,0,7390,7365,1,0,0,0,7390,7373, - 1,0,0,0,7390,7376,1,0,0,0,7390,7382,1,0,0,0,7390,7386,1,0,0,0,7391, - 755,1,0,0,0,7392,7398,7,132,0,0,7393,7395,5,866,0,0,7394,7396,3, - 712,356,0,7395,7394,1,0,0,0,7395,7396,1,0,0,0,7396,7397,1,0,0,0, - 7397,7399,5,867,0,0,7398,7393,1,0,0,0,7398,7399,1,0,0,0,7399,7407, - 1,0,0,0,7400,7401,5,295,0,0,7401,7403,5,866,0,0,7402,7404,3,712, - 356,0,7403,7402,1,0,0,0,7403,7404,1,0,0,0,7404,7405,1,0,0,0,7405, - 7407,5,867,0,0,7406,7392,1,0,0,0,7406,7400,1,0,0,0,7407,757,1,0, - 0,0,7408,7409,5,78,0,0,7409,7410,5,60,0,0,7410,759,1,0,0,0,7411, - 7412,5,78,0,0,7412,7413,5,114,0,0,7413,7414,5,60,0,0,7414,761,1, - 0,0,0,7415,7416,5,124,0,0,7416,7417,5,143,0,0,7417,763,1,0,0,0,7418, - 7441,3,766,383,0,7419,7441,3,774,387,0,7420,7441,3,776,388,0,7421, - 7428,3,796,398,0,7422,7423,5,866,0,0,7423,7429,5,867,0,0,7424,7425, - 5,866,0,0,7425,7426,3,800,400,0,7426,7427,5,867,0,0,7427,7429,1, - 0,0,0,7428,7422,1,0,0,0,7428,7424,1,0,0,0,7429,7441,1,0,0,0,7430, - 7437,3,632,316,0,7431,7432,5,866,0,0,7432,7438,5,867,0,0,7433,7434, - 5,866,0,0,7434,7435,3,800,400,0,7435,7436,5,867,0,0,7436,7438,1, - 0,0,0,7437,7431,1,0,0,0,7437,7433,1,0,0,0,7438,7441,1,0,0,0,7439, - 7441,3,798,399,0,7440,7418,1,0,0,0,7440,7419,1,0,0,0,7440,7420,1, - 0,0,0,7440,7421,1,0,0,0,7440,7430,1,0,0,0,7440,7439,1,0,0,0,7441, - 765,1,0,0,0,7442,7445,7,133,0,0,7443,7444,5,866,0,0,7444,7446,5, - 867,0,0,7445,7443,1,0,0,0,7445,7446,1,0,0,0,7446,7622,1,0,0,0,7447, - 7622,3,60,30,0,7448,7449,5,33,0,0,7449,7450,5,866,0,0,7450,7451, - 3,804,402,0,7451,7452,5,868,0,0,7452,7453,3,730,365,0,7453,7454, - 5,867,0,0,7454,7622,1,0,0,0,7455,7456,5,33,0,0,7456,7457,5,866,0, - 0,7457,7458,3,804,402,0,7458,7459,5,188,0,0,7459,7460,3,688,344, - 0,7460,7461,5,867,0,0,7461,7622,1,0,0,0,7462,7463,5,24,0,0,7463, - 7464,5,866,0,0,7464,7465,3,804,402,0,7465,7466,5,13,0,0,7466,7467, - 3,730,365,0,7467,7468,5,867,0,0,7468,7622,1,0,0,0,7469,7470,5,189, - 0,0,7470,7471,5,866,0,0,7471,7472,3,662,331,0,7472,7473,5,867,0, - 0,7473,7622,1,0,0,0,7474,7476,5,23,0,0,7475,7477,3,768,384,0,7476, - 7475,1,0,0,0,7477,7478,1,0,0,0,7478,7476,1,0,0,0,7478,7479,1,0,0, - 0,7479,7482,1,0,0,0,7480,7481,5,53,0,0,7481,7483,3,802,401,0,7482, - 7480,1,0,0,0,7482,7483,1,0,0,0,7483,7484,1,0,0,0,7484,7485,5,378, - 0,0,7485,7622,1,0,0,0,7486,7487,5,23,0,0,7487,7489,3,804,402,0,7488, - 7490,3,768,384,0,7489,7488,1,0,0,0,7490,7491,1,0,0,0,7491,7489,1, - 0,0,0,7491,7492,1,0,0,0,7492,7495,1,0,0,0,7493,7494,5,53,0,0,7494, - 7496,3,802,401,0,7495,7493,1,0,0,0,7495,7496,1,0,0,0,7496,7497,1, - 0,0,0,7497,7498,5,378,0,0,7498,7622,1,0,0,0,7499,7500,5,224,0,0, - 7500,7501,5,866,0,0,7501,7504,3,800,400,0,7502,7503,5,188,0,0,7503, - 7505,3,688,344,0,7504,7502,1,0,0,0,7504,7505,1,0,0,0,7505,7506,1, - 0,0,0,7506,7507,5,867,0,0,7507,7622,1,0,0,0,7508,7509,5,296,0,0, - 7509,7512,5,866,0,0,7510,7513,3,716,358,0,7511,7513,3,804,402,0, - 7512,7510,1,0,0,0,7512,7511,1,0,0,0,7513,7514,1,0,0,0,7514,7517, - 5,80,0,0,7515,7518,3,716,358,0,7516,7518,3,804,402,0,7517,7515,1, - 0,0,0,7517,7516,1,0,0,0,7518,7519,1,0,0,0,7519,7520,5,867,0,0,7520, - 7622,1,0,0,0,7521,7522,7,134,0,0,7522,7525,5,866,0,0,7523,7526,3, - 716,358,0,7524,7526,3,804,402,0,7525,7523,1,0,0,0,7525,7524,1,0, - 0,0,7526,7527,1,0,0,0,7527,7530,5,68,0,0,7528,7531,3,712,356,0,7529, - 7531,3,804,402,0,7530,7528,1,0,0,0,7530,7529,1,0,0,0,7531,7537,1, - 0,0,0,7532,7535,5,65,0,0,7533,7536,3,712,356,0,7534,7536,3,804,402, - 0,7535,7533,1,0,0,0,7535,7534,1,0,0,0,7536,7538,1,0,0,0,7537,7532, - 1,0,0,0,7537,7538,1,0,0,0,7538,7539,1,0,0,0,7539,7540,5,867,0,0, - 7540,7622,1,0,0,0,7541,7542,5,300,0,0,7542,7543,5,866,0,0,7543,7546, - 7,135,0,0,7544,7547,3,716,358,0,7545,7547,3,804,402,0,7546,7544, - 1,0,0,0,7546,7545,1,0,0,0,7546,7547,1,0,0,0,7547,7548,1,0,0,0,7548, - 7551,5,68,0,0,7549,7552,3,716,358,0,7550,7552,3,804,402,0,7551,7549, - 1,0,0,0,7551,7550,1,0,0,0,7552,7553,1,0,0,0,7553,7554,5,867,0,0, - 7554,7622,1,0,0,0,7555,7556,5,300,0,0,7556,7559,5,866,0,0,7557,7560, - 3,716,358,0,7558,7560,3,804,402,0,7559,7557,1,0,0,0,7559,7558,1, - 0,0,0,7560,7561,1,0,0,0,7561,7564,5,68,0,0,7562,7565,3,716,358,0, - 7563,7565,3,804,402,0,7564,7562,1,0,0,0,7564,7563,1,0,0,0,7565,7566, - 1,0,0,0,7566,7567,5,867,0,0,7567,7622,1,0,0,0,7568,7569,5,840,0, - 0,7569,7572,5,866,0,0,7570,7573,3,716,358,0,7571,7573,3,804,402, - 0,7572,7570,1,0,0,0,7572,7571,1,0,0,0,7573,7580,1,0,0,0,7574,7575, - 5,13,0,0,7575,7576,7,136,0,0,7576,7577,5,866,0,0,7577,7578,3,712, - 356,0,7578,7579,5,867,0,0,7579,7581,1,0,0,0,7580,7574,1,0,0,0,7580, - 7581,1,0,0,0,7581,7583,1,0,0,0,7582,7584,3,770,385,0,7583,7582,1, - 0,0,0,7583,7584,1,0,0,0,7584,7585,1,0,0,0,7585,7586,5,867,0,0,7586, - 7622,1,0,0,0,7587,7588,5,293,0,0,7588,7589,5,866,0,0,7589,7590,3, - 70,35,0,7590,7593,5,68,0,0,7591,7594,3,716,358,0,7592,7594,3,804, - 402,0,7593,7591,1,0,0,0,7593,7592,1,0,0,0,7594,7595,1,0,0,0,7595, - 7596,5,867,0,0,7596,7622,1,0,0,0,7597,7598,5,827,0,0,7598,7599,5, - 866,0,0,7599,7600,7,137,0,0,7600,7601,5,868,0,0,7601,7602,3,716, - 358,0,7602,7603,5,867,0,0,7603,7622,1,0,0,0,7604,7605,5,254,0,0, - 7605,7606,5,866,0,0,7606,7607,3,804,402,0,7607,7608,5,868,0,0,7608, - 7611,3,804,402,0,7609,7610,5,579,0,0,7610,7612,3,730,365,0,7611, - 7609,1,0,0,0,7611,7612,1,0,0,0,7612,7614,1,0,0,0,7613,7615,3,292, - 146,0,7614,7613,1,0,0,0,7614,7615,1,0,0,0,7615,7617,1,0,0,0,7616, - 7618,3,294,147,0,7617,7616,1,0,0,0,7617,7618,1,0,0,0,7618,7619,1, - 0,0,0,7619,7620,5,867,0,0,7620,7622,1,0,0,0,7621,7442,1,0,0,0,7621, - 7447,1,0,0,0,7621,7448,1,0,0,0,7621,7455,1,0,0,0,7621,7462,1,0,0, - 0,7621,7469,1,0,0,0,7621,7474,1,0,0,0,7621,7486,1,0,0,0,7621,7499, - 1,0,0,0,7621,7508,1,0,0,0,7621,7521,1,0,0,0,7621,7541,1,0,0,0,7621, - 7555,1,0,0,0,7621,7568,1,0,0,0,7621,7587,1,0,0,0,7621,7597,1,0,0, - 0,7621,7604,1,0,0,0,7622,767,1,0,0,0,7623,7624,5,191,0,0,7624,7625, - 3,802,401,0,7625,7626,5,175,0,0,7626,7627,3,802,401,0,7627,769,1, - 0,0,0,7628,7629,5,448,0,0,7629,7634,3,772,386,0,7630,7631,5,868, - 0,0,7631,7633,3,772,386,0,7632,7630,1,0,0,0,7633,7636,1,0,0,0,7634, - 7632,1,0,0,0,7634,7635,1,0,0,0,7635,7643,1,0,0,0,7636,7634,1,0,0, - 0,7637,7638,5,448,0,0,7638,7639,3,712,356,0,7639,7640,5,854,0,0, - 7640,7641,3,712,356,0,7641,7643,1,0,0,0,7642,7628,1,0,0,0,7642,7637, - 1,0,0,0,7643,771,1,0,0,0,7644,7646,3,712,356,0,7645,7647,7,138,0, - 0,7646,7645,1,0,0,0,7646,7647,1,0,0,0,7647,773,1,0,0,0,7648,7649, - 7,139,0,0,7649,7651,5,866,0,0,7650,7652,7,45,0,0,7651,7650,1,0,0, - 0,7651,7652,1,0,0,0,7652,7653,1,0,0,0,7653,7654,3,802,401,0,7654, - 7656,5,867,0,0,7655,7657,3,778,389,0,7656,7655,1,0,0,0,7656,7657, - 1,0,0,0,7657,7708,1,0,0,0,7658,7659,5,262,0,0,7659,7667,5,866,0, - 0,7660,7668,5,850,0,0,7661,7663,5,7,0,0,7662,7661,1,0,0,0,7662,7663, - 1,0,0,0,7663,7664,1,0,0,0,7664,7668,3,802,401,0,7665,7666,5,49,0, - 0,7666,7668,3,800,400,0,7667,7660,1,0,0,0,7667,7662,1,0,0,0,7667, - 7665,1,0,0,0,7668,7669,1,0,0,0,7669,7671,5,867,0,0,7670,7672,3,778, - 389,0,7671,7670,1,0,0,0,7671,7672,1,0,0,0,7672,7708,1,0,0,0,7673, - 7674,7,140,0,0,7674,7676,5,866,0,0,7675,7677,5,7,0,0,7676,7675,1, - 0,0,0,7676,7677,1,0,0,0,7677,7678,1,0,0,0,7678,7679,3,802,401,0, - 7679,7681,5,867,0,0,7680,7682,3,778,389,0,7681,7680,1,0,0,0,7681, - 7682,1,0,0,0,7682,7708,1,0,0,0,7683,7684,5,266,0,0,7684,7686,5,866, - 0,0,7685,7687,5,49,0,0,7686,7685,1,0,0,0,7686,7687,1,0,0,0,7687, - 7688,1,0,0,0,7688,7699,3,800,400,0,7689,7690,5,125,0,0,7690,7691, - 5,20,0,0,7691,7696,3,260,130,0,7692,7693,5,868,0,0,7693,7695,3,260, - 130,0,7694,7692,1,0,0,0,7695,7698,1,0,0,0,7696,7694,1,0,0,0,7696, - 7697,1,0,0,0,7697,7700,1,0,0,0,7698,7696,1,0,0,0,7699,7689,1,0,0, - 0,7699,7700,1,0,0,0,7700,7703,1,0,0,0,7701,7702,5,156,0,0,7702,7704, - 5,882,0,0,7703,7701,1,0,0,0,7703,7704,1,0,0,0,7704,7705,1,0,0,0, - 7705,7706,5,867,0,0,7706,7708,1,0,0,0,7707,7648,1,0,0,0,7707,7658, - 1,0,0,0,7707,7673,1,0,0,0,7707,7683,1,0,0,0,7708,775,1,0,0,0,7709, - 7710,7,141,0,0,7710,7711,5,866,0,0,7711,7714,3,804,402,0,7712,7713, - 5,868,0,0,7713,7715,3,712,356,0,7714,7712,1,0,0,0,7714,7715,1,0, - 0,0,7715,7718,1,0,0,0,7716,7717,5,868,0,0,7717,7719,3,712,356,0, - 7718,7716,1,0,0,0,7718,7719,1,0,0,0,7719,7720,1,0,0,0,7720,7721, - 5,867,0,0,7721,7722,3,778,389,0,7722,7748,1,0,0,0,7723,7724,7,142, - 0,0,7724,7725,5,866,0,0,7725,7726,3,804,402,0,7726,7727,5,867,0, - 0,7727,7728,3,778,389,0,7728,7748,1,0,0,0,7729,7730,7,143,0,0,7730, - 7731,5,866,0,0,7731,7732,5,867,0,0,7732,7748,3,778,389,0,7733,7734, - 5,273,0,0,7734,7735,5,866,0,0,7735,7736,3,804,402,0,7736,7737,5, - 868,0,0,7737,7738,3,712,356,0,7738,7739,5,867,0,0,7739,7740,3,778, - 389,0,7740,7748,1,0,0,0,7741,7742,5,272,0,0,7742,7743,5,866,0,0, - 7743,7744,3,712,356,0,7744,7745,5,867,0,0,7745,7746,3,778,389,0, - 7746,7748,1,0,0,0,7747,7709,1,0,0,0,7747,7723,1,0,0,0,7747,7729, - 1,0,0,0,7747,7733,1,0,0,0,7747,7741,1,0,0,0,7748,777,1,0,0,0,7749, - 7755,5,129,0,0,7750,7751,5,866,0,0,7751,7752,3,780,390,0,7752,7753, - 5,867,0,0,7753,7756,1,0,0,0,7754,7756,3,782,391,0,7755,7750,1,0, - 0,0,7755,7754,1,0,0,0,7756,779,1,0,0,0,7757,7759,3,782,391,0,7758, - 7757,1,0,0,0,7758,7759,1,0,0,0,7759,7761,1,0,0,0,7760,7762,3,794, - 397,0,7761,7760,1,0,0,0,7761,7762,1,0,0,0,7762,7764,1,0,0,0,7763, - 7765,3,258,129,0,7764,7763,1,0,0,0,7764,7765,1,0,0,0,7765,7767,1, - 0,0,0,7766,7768,3,784,392,0,7767,7766,1,0,0,0,7767,7768,1,0,0,0, - 7768,781,1,0,0,0,7769,7770,3,706,353,0,7770,783,1,0,0,0,7771,7772, - 3,786,393,0,7772,7773,3,788,394,0,7773,785,1,0,0,0,7774,7775,7,144, - 0,0,7775,787,1,0,0,0,7776,7779,3,792,396,0,7777,7779,3,790,395,0, - 7778,7776,1,0,0,0,7778,7777,1,0,0,0,7779,789,1,0,0,0,7780,7781,5, - 17,0,0,7781,7782,3,792,396,0,7782,7783,5,11,0,0,7783,7784,3,792, - 396,0,7784,791,1,0,0,0,7785,7786,5,36,0,0,7786,7793,5,586,0,0,7787, - 7788,5,669,0,0,7788,7793,7,145,0,0,7789,7790,3,804,402,0,7790,7791, - 7,145,0,0,7791,7793,1,0,0,0,7792,7785,1,0,0,0,7792,7787,1,0,0,0, - 7792,7789,1,0,0,0,7793,793,1,0,0,0,7794,7795,5,130,0,0,7795,7796, - 5,20,0,0,7796,7801,3,804,402,0,7797,7798,5,868,0,0,7798,7800,3,804, - 402,0,7799,7797,1,0,0,0,7800,7803,1,0,0,0,7801,7799,1,0,0,0,7801, - 7802,1,0,0,0,7802,795,1,0,0,0,7803,7801,1,0,0,0,7804,7829,3,836, - 418,0,7805,7829,5,757,0,0,7806,7829,5,289,0,0,7807,7829,5,285,0, - 0,7808,7829,5,286,0,0,7809,7829,5,287,0,0,7810,7829,5,290,0,0,7811, - 7829,5,291,0,0,7812,7829,5,292,0,0,7813,7829,5,78,0,0,7814,7829, - 5,86,0,0,7815,7829,5,288,0,0,7816,7829,5,294,0,0,7817,7829,5,488, - 0,0,7818,7829,5,295,0,0,7819,7829,5,142,0,0,7820,7829,5,143,0,0, - 7821,7829,5,297,0,0,7822,7829,5,298,0,0,7823,7829,5,299,0,0,7824, - 7829,5,300,0,0,7825,7829,5,301,0,0,7826,7829,5,302,0,0,7827,7829, - 5,303,0,0,7828,7804,1,0,0,0,7828,7805,1,0,0,0,7828,7806,1,0,0,0, - 7828,7807,1,0,0,0,7828,7808,1,0,0,0,7828,7809,1,0,0,0,7828,7810, - 1,0,0,0,7828,7811,1,0,0,0,7828,7812,1,0,0,0,7828,7813,1,0,0,0,7828, - 7814,1,0,0,0,7828,7815,1,0,0,0,7828,7816,1,0,0,0,7828,7817,1,0,0, - 0,7828,7818,1,0,0,0,7828,7819,1,0,0,0,7828,7820,1,0,0,0,7828,7821, - 1,0,0,0,7828,7822,1,0,0,0,7828,7823,1,0,0,0,7828,7824,1,0,0,0,7828, - 7825,1,0,0,0,7828,7826,1,0,0,0,7828,7827,1,0,0,0,7829,797,1,0,0, - 0,7830,7831,7,146,0,0,7831,7832,5,866,0,0,7832,7833,3,802,401,0, - 7833,7834,5,867,0,0,7834,799,1,0,0,0,7835,7840,3,802,401,0,7836, - 7837,5,868,0,0,7837,7839,3,802,401,0,7838,7836,1,0,0,0,7839,7842, - 1,0,0,0,7840,7838,1,0,0,0,7840,7841,1,0,0,0,7841,801,1,0,0,0,7842, - 7840,1,0,0,0,7843,7847,3,724,362,0,7844,7847,3,764,382,0,7845,7847, - 3,804,402,0,7846,7843,1,0,0,0,7846,7844,1,0,0,0,7846,7845,1,0,0, - 0,7847,803,1,0,0,0,7848,7849,6,402,-1,0,7849,7850,7,147,0,0,7850, - 7860,3,804,402,4,7851,7852,3,806,403,0,7852,7854,5,89,0,0,7853,7855, - 5,114,0,0,7854,7853,1,0,0,0,7854,7855,1,0,0,0,7855,7856,1,0,0,0, - 7856,7857,7,148,0,0,7857,7860,1,0,0,0,7858,7860,3,806,403,0,7859, - 7848,1,0,0,0,7859,7851,1,0,0,0,7859,7858,1,0,0,0,7860,7867,1,0,0, - 0,7861,7862,10,3,0,0,7862,7863,3,816,408,0,7863,7864,3,804,402,4, - 7864,7866,1,0,0,0,7865,7861,1,0,0,0,7866,7869,1,0,0,0,7867,7865, - 1,0,0,0,7867,7868,1,0,0,0,7868,805,1,0,0,0,7869,7867,1,0,0,0,7870, - 7871,6,403,-1,0,7871,7872,3,808,404,0,7872,7936,1,0,0,0,7873,7875, - 10,6,0,0,7874,7876,5,114,0,0,7875,7874,1,0,0,0,7875,7876,1,0,0,0, - 7876,7877,1,0,0,0,7877,7878,5,17,0,0,7878,7879,3,806,403,0,7879, - 7880,5,11,0,0,7880,7881,3,806,403,7,7881,7935,1,0,0,0,7882,7883, - 10,5,0,0,7883,7884,5,604,0,0,7884,7885,5,99,0,0,7885,7935,3,806, - 403,6,7886,7888,10,3,0,0,7887,7889,5,114,0,0,7888,7887,1,0,0,0,7888, - 7889,1,0,0,0,7889,7890,1,0,0,0,7890,7891,7,149,0,0,7891,7935,3,806, - 403,4,7892,7894,10,9,0,0,7893,7895,5,114,0,0,7894,7893,1,0,0,0,7894, - 7895,1,0,0,0,7895,7896,1,0,0,0,7896,7897,5,80,0,0,7897,7900,5,866, - 0,0,7898,7901,3,210,105,0,7899,7901,3,740,370,0,7900,7898,1,0,0, - 0,7900,7899,1,0,0,0,7901,7902,1,0,0,0,7902,7903,5,867,0,0,7903,7935, - 1,0,0,0,7904,7905,10,8,0,0,7905,7906,5,89,0,0,7906,7935,3,722,361, - 0,7907,7908,10,7,0,0,7908,7915,3,812,406,0,7909,7910,7,150,0,0,7910, - 7911,5,866,0,0,7911,7912,3,210,105,0,7912,7913,5,867,0,0,7913,7916, - 1,0,0,0,7914,7916,3,806,403,0,7915,7909,1,0,0,0,7915,7914,1,0,0, - 0,7916,7935,1,0,0,0,7917,7919,10,4,0,0,7918,7920,5,114,0,0,7919, - 7918,1,0,0,0,7919,7920,1,0,0,0,7920,7921,1,0,0,0,7921,7922,5,99, - 0,0,7922,7925,3,806,403,0,7923,7924,5,384,0,0,7924,7926,5,882,0, - 0,7925,7923,1,0,0,0,7925,7926,1,0,0,0,7926,7935,1,0,0,0,7927,7928, - 10,2,0,0,7928,7929,5,485,0,0,7929,7930,5,510,0,0,7930,7931,5,866, - 0,0,7931,7932,3,806,403,0,7932,7933,5,867,0,0,7933,7935,1,0,0,0, - 7934,7873,1,0,0,0,7934,7882,1,0,0,0,7934,7886,1,0,0,0,7934,7892, - 1,0,0,0,7934,7904,1,0,0,0,7934,7907,1,0,0,0,7934,7917,1,0,0,0,7934, - 7927,1,0,0,0,7935,7938,1,0,0,0,7936,7934,1,0,0,0,7936,7937,1,0,0, - 0,7937,807,1,0,0,0,7938,7936,1,0,0,0,7939,7940,6,404,-1,0,7940,7988, - 3,724,362,0,7941,7988,3,764,382,0,7942,7988,3,686,343,0,7943,7944, - 3,810,405,0,7944,7945,3,808,404,12,7945,7988,1,0,0,0,7946,7947,5, - 228,0,0,7947,7988,3,808,404,11,7948,7949,5,892,0,0,7949,7950,5,841, - 0,0,7950,7988,3,808,404,10,7951,7952,5,866,0,0,7952,7957,3,804,402, - 0,7953,7954,5,868,0,0,7954,7956,3,804,402,0,7955,7953,1,0,0,0,7956, - 7959,1,0,0,0,7957,7955,1,0,0,0,7957,7958,1,0,0,0,7958,7960,1,0,0, - 0,7959,7957,1,0,0,0,7960,7961,5,867,0,0,7961,7988,1,0,0,0,7962,7963, - 5,586,0,0,7963,7964,5,866,0,0,7964,7967,3,804,402,0,7965,7966,5, - 868,0,0,7966,7968,3,804,402,0,7967,7965,1,0,0,0,7968,7969,1,0,0, - 0,7969,7967,1,0,0,0,7969,7970,1,0,0,0,7970,7971,1,0,0,0,7971,7972, - 5,867,0,0,7972,7988,1,0,0,0,7973,7974,5,60,0,0,7974,7975,5,866,0, - 0,7975,7976,3,210,105,0,7976,7977,5,867,0,0,7977,7988,1,0,0,0,7978, - 7979,5,866,0,0,7979,7980,3,210,105,0,7980,7981,5,867,0,0,7981,7988, - 1,0,0,0,7982,7983,5,87,0,0,7983,7984,3,804,402,0,7984,7985,3,70, - 35,0,7985,7988,1,0,0,0,7986,7988,3,662,331,0,7987,7939,1,0,0,0,7987, - 7941,1,0,0,0,7987,7942,1,0,0,0,7987,7943,1,0,0,0,7987,7946,1,0,0, - 0,7987,7948,1,0,0,0,7987,7951,1,0,0,0,7987,7962,1,0,0,0,7987,7973, - 1,0,0,0,7987,7978,1,0,0,0,7987,7982,1,0,0,0,7987,7986,1,0,0,0,7988, - 8006,1,0,0,0,7989,7990,10,4,0,0,7990,7991,3,822,411,0,7991,7992, - 3,808,404,5,7992,8005,1,0,0,0,7993,7994,10,3,0,0,7994,7995,3,818, - 409,0,7995,7996,3,808,404,4,7996,8005,1,0,0,0,7997,7998,10,2,0,0, - 7998,7999,3,820,410,0,7999,8000,3,808,404,3,8000,8005,1,0,0,0,8001, - 8002,10,14,0,0,8002,8003,5,28,0,0,8003,8005,3,690,345,0,8004,7989, - 1,0,0,0,8004,7993,1,0,0,0,8004,7997,1,0,0,0,8004,8001,1,0,0,0,8005, - 8008,1,0,0,0,8006,8004,1,0,0,0,8006,8007,1,0,0,0,8007,809,1,0,0, - 0,8008,8006,1,0,0,0,8009,8010,7,151,0,0,8010,811,1,0,0,0,8011,8012, - 5,859,0,0,8012,8020,5,858,0,0,8013,8014,5,860,0,0,8014,8020,5,857, - 0,0,8015,8016,5,859,0,0,8016,8017,5,857,0,0,8017,8020,5,858,0,0, - 8018,8020,3,814,407,0,8019,8011,1,0,0,0,8019,8013,1,0,0,0,8019,8015, - 1,0,0,0,8019,8018,1,0,0,0,8020,813,1,0,0,0,8021,8022,5,859,0,0,8022, - 8029,5,857,0,0,8023,8024,5,858,0,0,8024,8029,5,857,0,0,8025,8029, - 5,857,0,0,8026,8029,5,858,0,0,8027,8029,5,859,0,0,8028,8021,1,0, - 0,0,8028,8023,1,0,0,0,8028,8025,1,0,0,0,8028,8026,1,0,0,0,8028,8027, - 1,0,0,0,8029,815,1,0,0,0,8030,8038,5,11,0,0,8031,8032,5,863,0,0, - 8032,8038,5,863,0,0,8033,8038,5,196,0,0,8034,8038,5,124,0,0,8035, - 8036,5,862,0,0,8036,8038,5,862,0,0,8037,8030,1,0,0,0,8037,8031,1, - 0,0,0,8037,8033,1,0,0,0,8037,8034,1,0,0,0,8037,8035,1,0,0,0,8038, - 817,1,0,0,0,8039,8040,5,859,0,0,8040,8047,5,859,0,0,8041,8042,5, - 858,0,0,8042,8047,5,858,0,0,8043,8047,5,863,0,0,8044,8047,5,864, - 0,0,8045,8047,5,862,0,0,8046,8039,1,0,0,0,8046,8041,1,0,0,0,8046, - 8043,1,0,0,0,8046,8044,1,0,0,0,8046,8045,1,0,0,0,8047,819,1,0,0, - 0,8048,8049,7,152,0,0,8049,821,1,0,0,0,8050,8051,5,854,0,0,8051, - 8056,5,858,0,0,8052,8053,5,854,0,0,8053,8054,5,858,0,0,8054,8056, - 5,858,0,0,8055,8050,1,0,0,0,8055,8052,1,0,0,0,8056,823,1,0,0,0,8057, - 8058,7,153,0,0,8058,825,1,0,0,0,8059,8060,7,154,0,0,8060,827,1,0, - 0,0,8061,8062,7,155,0,0,8062,829,1,0,0,0,8063,8064,7,156,0,0,8064, - 831,1,0,0,0,8065,8066,7,157,0,0,8066,833,1,0,0,0,8067,8068,7,158, - 0,0,8068,835,1,0,0,0,8069,8070,7,159,0,0,8070,837,1,0,0,0,1163,841, - 848,851,860,904,923,934,950,955,967,1002,1012,1017,1023,1028,1032, - 1041,1044,1047,1051,1058,1061,1066,1074,1079,1084,1087,1089,1101, - 1104,1108,1111,1115,1118,1122,1125,1128,1132,1135,1139,1145,1149, - 1154,1160,1167,1174,1177,1181,1186,1192,1201,1206,1210,1214,1225, - 1243,1250,1254,1258,1262,1267,1270,1273,1276,1279,1285,1289,1299, - 1303,1307,1313,1318,1321,1324,1326,1330,1337,1341,1344,1349,1353, - 1356,1360,1363,1367,1380,1383,1387,1390,1394,1397,1401,1404,1408, - 1411,1414,1418,1421,1425,1431,1434,1438,1450,1456,1467,1472,1480, - 1484,1489,1492,1497,1507,1512,1517,1523,1528,1532,1534,1537,1541, - 1545,1548,1552,1556,1560,1566,1569,1576,1581,1587,1594,1600,1608, - 1611,1618,1621,1623,1629,1635,1652,1659,1666,1678,1683,1686,1689, - 1702,1715,1720,1736,1744,1754,1757,1763,1768,1771,1777,1781,1786, - 1792,1796,1800,1803,1806,1812,1816,1821,1832,1835,1842,1845,1849, - 1855,1867,1870,1875,1888,1895,1901,1906,1910,1913,1921,1929,1931, - 1941,1945,1948,1952,1957,1962,1967,1971,1975,1979,1983,1987,1991, - 1996,2001,2006,2012,2017,2022,2027,2032,2037,2043,2048,2053,2058, - 2063,2068,2073,2078,2085,2090,2095,2100,2104,2109,2117,2122,2128, - 2140,2147,2149,2157,2162,2165,2173,2179,2183,2196,2208,2210,2213, - 2221,2227,2233,2246,2253,2262,2267,2278,2287,2292,2304,2311,2320, - 2325,2337,2344,2353,2358,2365,2374,2379,2381,2386,2394,2403,2407, - 2410,2414,2419,2425,2431,2436,2441,2446,2451,2454,2459,2464,2474, - 2478,2485,2490,2493,2498,2501,2505,2509,2517,2536,2539,2542,2546, - 2556,2569,2582,2585,2591,2594,2598,2607,2610,2613,2618,2622,2625, - 2629,2633,2636,2640,2643,2647,2650,2656,2659,2664,2672,2678,2682, - 2686,2691,2696,2703,2707,2718,2726,2729,2735,2741,2744,2750,2756, - 2758,2763,2769,2775,2777,2781,2784,2787,2793,2799,2801,2806,2813, - 2822,2825,2829,2834,2844,2853,2861,2864,2872,2875,2882,2887,2895, - 2911,2916,2923,2942,2948,2958,2970,2977,2984,2999,3012,3018,3024, - 3030,3036,3042,3048,3053,3060,3067,3074,3079,3082,3084,3093,3100, - 3107,3114,3123,3129,3133,3137,3141,3147,3150,3155,3162,3169,3173, - 3178,3188,3196,3202,3211,3220,3229,3232,3236,3245,3249,3252,3255, - 3261,3264,3267,3271,3274,3277,3280,3291,3294,3299,3305,3310,3315, - 3318,3322,3327,3330,3335,3345,3350,3356,3358,3364,3366,3372,3380, - 3385,3393,3396,3401,3404,3409,3417,3423,3427,3429,3435,3443,3448, - 3456,3459,3464,3467,3471,3474,3477,3481,3484,3492,3498,3502,3508, - 3513,3517,3519,3525,3529,3532,3535,3538,3544,3549,3552,3555,3558, - 3561,3563,3566,3570,3573,3576,3584,3590,3593,3595,3604,3609,3616, - 3619,3622,3626,3630,3636,3640,3647,3651,3654,3657,3662,3669,3679, - 3688,3697,3707,3710,3714,3720,3724,3727,3730,3735,3738,3745,3749, - 3752,3756,3760,3763,3766,3771,3777,3781,3791,3797,3801,3807,3811, - 3817,3820,3832,3836,3840,3848,3852,3866,3871,3874,3878,3881,3889, - 3894,3897,3900,3904,3907,3916,3921,3930,3935,3942,3949,3957,3963, - 3971,3974,3977,3984,3987,3990,3997,4000,4004,4010,4020,4024,4033, - 4036,4040,4046,4054,4059,4063,4069,4075,4078,4080,4084,4093,4103, - 4109,4114,4118,4121,4124,4127,4130,4133,4136,4140,4144,4152,4156, - 4159,4161,4174,4177,4184,4194,4197,4202,4204,4208,4216,4222,4231, - 4244,4248,4254,4259,4263,4266,4270,4273,4281,4284,4286,4294,4306, - 4312,4314,4320,4322,4324,4330,4338,4346,4350,4354,4363,4368,4388, - 4393,4399,4406,4411,4420,4423,4427,4431,4435,4438,4441,4444,4448, - 4452,4455,4458,4461,4468,4472,4487,4500,4508,4518,4522,4525,4531, - 4534,4537,4546,4555,4565,4569,4579,4583,4594,4598,4607,4616,4619, - 4623,4628,4632,4641,4644,4647,4654,4660,4666,4692,4695,4698,4717, - 4719,4742,4745,4748,4767,4769,4783,4796,4833,4838,4873,4887,4894, - 4898,4904,4912,4914,4925,4935,4942,4948,4956,4961,4969,4977,4985, - 4993,4999,5004,5009,5014,5020,5022,5033,5038,5045,5047,5061,5067, - 5072,5077,5083,5090,5098,5106,5111,5117,5120,5128,5135,5144,5147, - 5164,5172,5180,5184,5191,5197,5205,5210,5217,5225,5232,5237,5240, - 5242,5248,5250,5254,5256,5261,5268,5273,5277,5282,5286,5292,5298, - 5303,5306,5308,5314,5316,5320,5322,5327,5332,5339,5348,5353,5362, - 5366,5372,5377,5380,5382,5388,5390,5393,5400,5402,5407,5414,5423, - 5429,5431,5438,5441,5453,5459,5467,5470,5474,5477,5481,5483,5494, - 5497,5501,5504,5507,5514,5526,5529,5536,5542,5552,5557,5564,5569, - 5575,5579,5583,5591,5595,5599,5605,5607,5619,5624,5630,5636,5640, - 5645,5647,5671,5675,5678,5687,5691,5700,5704,5708,5714,5716,5725, - 5735,5762,5766,5771,5778,5781,5787,5797,5807,5817,5823,5832,5838, - 5845,5847,5855,5861,5865,5882,5892,5896,5900,5910,5915,5987,6005, - 6013,6019,6031,6035,6046,6050,6059,6067,6074,6078,6085,6090,6093, - 6096,6107,6116,6125,6128,6142,6160,6173,6176,6180,6183,6185,6192, - 6199,6203,6210,6217,6220,6236,6239,6249,6253,6259,6262,6265,6270, - 6274,6277,6284,6287,6293,6329,6332,6344,6347,6363,6365,6369,6376, - 6380,6387,6390,6399,6402,6407,6413,6415,6421,6425,6431,6434,6437, - 6450,6453,6459,6462,6470,6478,6484,6487,6491,6505,6517,6525,6529, - 6536,6543,6548,6561,6570,6578,6583,6586,6591,6594,6606,6611,6624, - 6626,6631,6635,6638,6640,6647,6654,6657,6660,6666,6670,6676,6684, - 6693,6706,6711,6719,6722,6727,6732,6740,6743,6751,6755,6762,6768, - 6771,6775,6788,6794,6806,6809,6818,6823,6844,6860,6870,6875,6880, - 6882,6885,6889,6891,6898,6904,6906,6909,6913,6916,6929,6939,6942, - 6945,6958,6964,6967,6975,6982,7002,7009,7011,7018,7020,7024,7031, - 7037,7048,7054,7060,7063,7067,7072,7075,7079,7083,7085,7090,7095, - 7108,7111,7115,7118,7121,7126,7131,7137,7140,7145,7148,7153,7156, - 7160,7165,7170,7175,7180,7183,7188,7193,7198,7204,7209,7214,7219, - 7223,7226,7231,7235,7239,7247,7254,7258,7263,7268,7272,7274,7277, - 7293,7303,7313,7322,7331,7338,7345,7353,7361,7373,7380,7390,7395, - 7398,7403,7406,7428,7437,7440,7445,7478,7482,7491,7495,7504,7512, - 7517,7525,7530,7535,7537,7546,7551,7559,7564,7572,7580,7583,7593, - 7611,7614,7617,7621,7634,7642,7646,7651,7656,7662,7667,7671,7676, - 7681,7686,7696,7699,7703,7707,7714,7718,7747,7755,7758,7761,7764, - 7767,7778,7792,7801,7828,7840,7846,7854,7859,7867,7875,7888,7894, - 7900,7915,7919,7925,7934,7936,7957,7969,7987,8004,8006,8019,8028, - 8037,8046,8055 + 7842,8,403,1,404,1,404,1,404,1,404,1,404,1,405,1,405,1,405,5,405, + 7852,8,405,10,405,12,405,7855,9,405,1,406,1,406,1,406,3,406,7860, + 8,406,1,407,1,407,1,407,1,407,1,407,1,407,3,407,7868,8,407,1,407, + 1,407,1,407,3,407,7873,8,407,1,407,1,407,1,407,1,407,5,407,7879, + 8,407,10,407,12,407,7882,9,407,1,408,1,408,1,408,1,408,1,408,3,408, + 7889,8,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408, + 1,408,1,408,3,408,7902,8,408,1,408,1,408,1,408,1,408,3,408,7908, + 8,408,1,408,1,408,1,408,1,408,3,408,7914,8,408,1,408,1,408,1,408, + 1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,3,408, + 7929,8,408,1,408,1,408,3,408,7933,8,408,1,408,1,408,1,408,1,408, + 3,408,7939,8,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,5,408, + 7948,8,408,10,408,12,408,7951,9,408,1,409,1,409,1,409,1,409,1,409, + 1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409, + 5,409,7969,8,409,10,409,12,409,7972,9,409,1,409,1,409,1,409,1,409, + 1,409,1,409,1,409,4,409,7981,8,409,11,409,12,409,7982,1,409,1,409, + 1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409, + 1,409,1,409,1,409,3,409,8001,8,409,1,409,1,409,1,409,1,409,1,409, + 1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,5,409, + 8018,8,409,10,409,12,409,8021,9,409,1,410,1,410,1,411,1,411,1,411, + 1,411,1,411,1,411,1,411,1,411,3,411,8033,8,411,1,412,1,412,1,412, + 1,412,1,412,1,412,1,412,3,412,8042,8,412,1,413,1,413,1,413,1,413, + 1,413,1,413,1,413,3,413,8051,8,413,1,414,1,414,1,414,1,414,1,414, + 1,414,1,414,3,414,8060,8,414,1,415,1,415,1,416,1,416,1,416,1,416, + 1,416,3,416,8069,8,416,1,417,1,417,1,418,1,418,1,419,1,419,1,420, + 1,420,1,421,1,421,1,422,1,422,1,423,1,423,1,423,0,5,214,216,814, + 816,818,424,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, + 120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150, + 152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182, + 184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214, + 216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246, + 248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278, + 280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310, + 312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342, + 344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374, + 376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406, + 408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438, + 440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470, + 472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502, + 504,506,508,510,512,514,516,518,520,522,524,526,528,530,532,534, + 536,538,540,542,544,546,548,550,552,554,556,558,560,562,564,566, + 568,570,572,574,576,578,580,582,584,586,588,590,592,594,596,598, + 600,602,604,606,608,610,612,614,616,618,620,622,624,626,628,630, + 632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662, + 664,666,668,670,672,674,676,678,680,682,684,686,688,690,692,694, + 696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726, + 728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758, + 760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790, + 792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822, + 824,826,828,830,832,834,836,838,840,842,844,846,0,160,2,0,39,39, + 152,152,2,0,508,508,514,514,3,0,69,69,161,161,182,182,3,0,42,42, + 357,357,430,430,4,0,42,42,389,389,505,505,595,595,4,0,208,208,210, + 210,216,216,649,649,2,0,494,494,882,882,2,0,79,79,143,143,2,0,16, + 16,306,306,3,0,44,44,86,86,185,185,2,0,406,406,538,538,3,0,486,486, + 661,661,670,670,2,0,364,364,436,436,2,0,325,325,450,450,2,0,42,42, + 871,872,2,0,37,37,678,678,2,0,323,323,418,418,2,0,435,435,686,686, + 3,0,80,80,85,85,126,126,2,0,82,82,92,92,2,0,69,69,161,161,3,0,42, + 42,374,374,403,403,3,0,42,42,370,370,802,802,2,0,648,648,685,685, + 3,0,408,408,526,526,597,597,2,0,329,329,522,522,1,0,871,872,2,0, + 882,882,889,889,2,0,82,82,360,360,2,0,523,523,882,882,2,0,524,524, + 882,882,3,0,402,402,445,445,502,502,7,0,42,42,342,342,345,345,374, + 374,403,403,554,554,889,889,2,0,494,494,506,506,1,0,872,873,2,0, + 6,6,51,51,2,0,5,5,81,81,2,0,27,27,31,31,4,0,42,42,357,357,430,430, + 434,434,2,0,368,368,375,375,2,0,369,369,425,425,2,0,13,13,176,176, + 2,0,194,194,690,690,2,0,22,22,146,146,3,0,43,43,76,76,107,107,2, + 0,7,7,49,49,2,0,107,107,347,347,2,0,337,337,398,398,2,0,102,102, + 587,587,2,0,43,43,107,107,3,0,59,59,181,181,828,828,2,0,185,185, + 594,594,2,0,159,159,503,503,4,0,402,402,445,445,501,501,542,542, + 2,0,402,402,501,501,2,0,14,14,45,45,3,0,66,66,79,79,187,187,2,0, + 35,35,84,84,2,0,98,98,150,150,2,0,7,7,49,50,1,0,637,638,2,0,173, + 173,752,752,2,0,413,413,593,593,2,0,228,228,453,453,2,0,563,563, + 598,598,8,0,108,108,455,455,459,460,462,462,464,464,467,476,499, + 499,557,557,6,0,456,458,461,461,463,463,465,465,477,477,558,558, + 7,0,109,109,411,411,416,416,454,454,466,466,573,573,617,617,2,0, + 116,116,882,882,2,0,118,119,507,507,7,0,499,499,557,557,606,609, + 611,611,619,619,622,628,630,632,6,0,558,558,610,610,612,612,614, + 616,618,618,620,620,7,0,412,412,416,416,573,573,613,613,617,617, + 621,621,629,629,3,0,70,70,118,119,507,507,2,0,438,438,639,639,2, + 0,633,633,635,635,2,0,317,317,640,640,2,0,91,91,577,577,2,0,51,51, + 362,362,3,0,32,32,61,61,180,180,2,0,15,15,340,340,2,0,678,678,835, + 835,3,0,132,132,173,173,409,409,3,0,6,6,51,51,492,492,3,0,13,13, + 20,20,188,188,2,0,42,42,122,122,2,0,104,104,183,183,1,0,873,874, + 2,0,333,333,598,598,2,0,40,40,684,684,2,0,392,392,549,549,2,0,115, + 115,450,450,3,0,413,413,531,531,893,894,2,0,841,841,857,857,2,0, + 318,318,559,559,2,0,68,68,80,80,3,0,132,132,178,178,385,385,2,0, + 493,493,645,645,2,0,383,383,688,688,3,0,82,82,93,93,426,426,4,0, + 413,413,450,450,531,532,593,593,2,0,645,645,683,683,2,0,349,349, + 548,548,6,0,228,228,380,380,382,382,410,410,556,556,599,599,2,0, + 45,46,62,62,3,0,442,442,663,663,666,666,10,0,332,332,339,339,351, + 353,359,359,487,487,495,495,650,650,657,657,822,822,832,832,2,0, + 36,36,170,170,2,0,117,117,831,831,11,0,332,332,339,339,351,353,359, + 359,487,487,495,495,578,578,650,650,657,657,822,822,832,832,2,0, + 870,870,891,892,1,0,892,893,2,0,348,348,797,808,3,0,871,874,883, + 883,885,885,2,0,63,63,179,179,2,0,116,116,886,886,5,0,26,26,224, + 226,233,233,235,238,498,498,2,0,26,26,224,224,2,0,26,26,224,225, + 1,0,198,209,3,0,184,184,197,197,596,596,2,0,213,218,403,403,6,0, + 219,219,230,230,232,232,234,234,241,241,321,322,4,0,220,223,228, + 229,231,231,319,319,2,0,155,155,239,239,2,0,442,442,813,821,2,0, + 228,228,498,498,5,0,202,202,208,208,219,220,222,222,442,442,1,0, + 216,217,2,0,184,184,596,596,2,0,202,202,208,208,2,0,189,189,682, + 682,2,0,287,288,294,294,3,0,152,152,285,288,303,303,1,0,297,298, + 3,0,18,18,96,96,177,177,2,0,224,224,228,228,2,0,219,220,222,222, + 3,0,14,14,45,45,830,830,3,0,258,258,270,271,281,281,3,0,259,261, + 277,280,282,284,2,0,267,267,269,269,2,0,265,265,268,268,2,0,263, + 264,274,276,2,0,134,134,587,587,2,0,405,405,539,539,2,0,512,512, + 529,529,2,0,114,114,860,860,3,0,63,63,179,179,674,674,2,0,139,139, + 151,151,3,0,7,7,309,309,602,602,3,0,114,114,853,854,860,861,1,0, + 850,856,2,0,228,228,756,796,1,0,809,812,5,0,717,718,734,736,743, + 743,749,750,752,752,1,0,696,703,3,0,219,223,236,236,239,239,75,0, + 12,12,15,15,19,19,30,30,36,37,42,42,48,48,55,55,57,57,59,59,74,74, + 95,95,117,117,122,122,125,125,131,131,160,160,170,170,241,241,255, + 262,266,266,270,271,277,284,304,309,311,329,331,343,345,376,378, + 393,395,400,402,404,406,410,413,415,417,426,428,428,430,434,436, + 454,456,463,465,473,475,476,478,498,500,506,508,510,512,522,525, + 530,533,538,540,542,544,554,556,562,565,572,575,575,577,605,633, + 647,649,665,667,674,676,685,687,688,690,695,704,704,706,707,709, + 712,714,716,719,721,726,727,729,733,737,738,740,742,744,744,746, + 748,751,751,753,755,802,802,822,822,825,825,832,833,838,838,24,0, + 39,39,98,98,150,150,152,152,219,221,223,223,253,254,262,265,267, + 269,272,276,296,296,435,435,686,686,696,703,746,746,813,813,816, + 821,823,824,826,827,829,831,834,834,836,836,840,840,856,856,9446, + 0,851,1,0,0,0,2,861,1,0,0,0,4,870,1,0,0,0,6,872,1,0,0,0,8,914,1, + 0,0,0,10,933,1,0,0,0,12,944,1,0,0,0,14,960,1,0,0,0,16,965,1,0,0, + 0,18,977,1,0,0,0,20,1012,1,0,0,0,22,1022,1,0,0,0,24,1024,1,0,0,0, + 26,1036,1,0,0,0,28,1066,1,0,0,0,30,1102,1,0,0,0,32,1153,1,0,0,0, + 34,1182,1,0,0,0,36,1218,1,0,0,0,38,1232,1,0,0,0,40,1239,1,0,0,0, + 42,1336,1,0,0,0,44,1338,1,0,0,0,46,1375,1,0,0,0,48,1439,1,0,0,0, + 50,1464,1,0,0,0,52,1470,1,0,0,0,54,1492,1,0,0,0,56,1579,1,0,0,0, + 58,1586,1,0,0,0,60,1588,1,0,0,0,62,1593,1,0,0,0,64,1633,1,0,0,0, + 66,1639,1,0,0,0,68,1641,1,0,0,0,70,1662,1,0,0,0,72,1669,1,0,0,0, + 74,1671,1,0,0,0,76,1696,1,0,0,0,78,1699,1,0,0,0,80,1704,1,0,0,0, + 82,1730,1,0,0,0,84,1746,1,0,0,0,86,1748,1,0,0,0,88,1842,1,0,0,0, + 90,1845,1,0,0,0,92,1857,1,0,0,0,94,1861,1,0,0,0,96,1911,1,0,0,0, + 98,1913,1,0,0,0,100,1941,1,0,0,0,102,1951,1,0,0,0,104,2138,1,0,0, + 0,106,2140,1,0,0,0,108,2142,1,0,0,0,110,2145,1,0,0,0,112,2220,1, + 0,0,0,114,2243,1,0,0,0,116,2391,1,0,0,0,118,2396,1,0,0,0,120,2398, + 1,0,0,0,122,2408,1,0,0,0,124,2464,1,0,0,0,126,2484,1,0,0,0,128,2486, + 1,0,0,0,130,2521,1,0,0,0,132,2530,1,0,0,0,134,2537,1,0,0,0,136,2560, + 1,0,0,0,138,2569,1,0,0,0,140,2584,1,0,0,0,142,2606,1,0,0,0,144,2662, + 1,0,0,0,146,2958,1,0,0,0,148,3058,1,0,0,0,150,3060,1,0,0,0,152,3067, + 1,0,0,0,154,3074,1,0,0,0,156,3097,1,0,0,0,158,3107,1,0,0,0,160,3114, + 1,0,0,0,162,3121,1,0,0,0,164,3128,1,0,0,0,166,3137,1,0,0,0,168,3149, + 1,0,0,0,170,3162,1,0,0,0,172,3169,1,0,0,0,174,3185,1,0,0,0,176,3212, + 1,0,0,0,178,3214,1,0,0,0,180,3224,1,0,0,0,182,3228,1,0,0,0,184,3234, + 1,0,0,0,186,3246,1,0,0,0,188,3248,1,0,0,0,190,3255,1,0,0,0,192,3257, + 1,0,0,0,194,3306,1,0,0,0,196,3315,1,0,0,0,198,3317,1,0,0,0,200,3328, + 1,0,0,0,202,3334,1,0,0,0,204,3408,1,0,0,0,206,3471,1,0,0,0,208,3489, + 1,0,0,0,210,3573,1,0,0,0,212,3576,1,0,0,0,214,3588,1,0,0,0,216,3608, + 1,0,0,0,218,3636,1,0,0,0,220,3640,1,0,0,0,222,3642,1,0,0,0,224,3652, + 1,0,0,0,226,3672,1,0,0,0,228,3679,1,0,0,0,230,3681,1,0,0,0,232,3692, + 1,0,0,0,234,3701,1,0,0,0,236,3707,1,0,0,0,238,3730,1,0,0,0,240,3732, + 1,0,0,0,242,3768,1,0,0,0,244,3823,1,0,0,0,246,3832,1,0,0,0,248,3852, + 1,0,0,0,250,3864,1,0,0,0,252,3868,1,0,0,0,254,3879,1,0,0,0,256,3912, + 1,0,0,0,258,3933,1,0,0,0,260,3943,1,0,0,0,262,3947,1,0,0,0,264,3973, + 1,0,0,0,266,4014,1,0,0,0,268,4021,1,0,0,0,270,4023,1,0,0,0,272,4027, + 1,0,0,0,274,4044,1,0,0,0,276,4095,1,0,0,0,278,4104,1,0,0,0,280,4114, + 1,0,0,0,282,4116,1,0,0,0,284,4149,1,0,0,0,286,4157,1,0,0,0,288,4174, + 1,0,0,0,290,4190,1,0,0,0,292,4227,1,0,0,0,294,4233,1,0,0,0,296,4242, + 1,0,0,0,298,4255,1,0,0,0,300,4259,1,0,0,0,302,4283,1,0,0,0,304,4285, + 1,0,0,0,306,4289,1,0,0,0,308,4291,1,0,0,0,310,4299,1,0,0,0,312,4337, + 1,0,0,0,314,4351,1,0,0,0,316,4359,1,0,0,0,318,4363,1,0,0,0,320,4369, + 1,0,0,0,322,4383,1,0,0,0,324,4386,1,0,0,0,326,4404,1,0,0,0,328,4408, + 1,0,0,0,330,4424,1,0,0,0,332,4426,1,0,0,0,334,4438,1,0,0,0,336,4442, + 1,0,0,0,338,4459,1,0,0,0,340,4476,1,0,0,0,342,4479,1,0,0,0,344,4489, + 1,0,0,0,346,4493,1,0,0,0,348,4503,1,0,0,0,350,4506,1,0,0,0,352,4511, + 1,0,0,0,354,4531,1,0,0,0,356,4533,1,0,0,0,358,4550,1,0,0,0,360,4559, + 1,0,0,0,362,4568,1,0,0,0,364,4570,1,0,0,0,366,4584,1,0,0,0,368,4598, + 1,0,0,0,370,4613,1,0,0,0,372,4622,1,0,0,0,374,4647,1,0,0,0,376,4662, + 1,0,0,0,378,4681,1,0,0,0,380,4711,1,0,0,0,382,4713,1,0,0,0,384,4715, + 1,0,0,0,386,4717,1,0,0,0,388,4732,1,0,0,0,390,4761,1,0,0,0,392,4763, + 1,0,0,0,394,4765,1,0,0,0,396,4767,1,0,0,0,398,4782,1,0,0,0,400,4784, + 1,0,0,0,402,4851,1,0,0,0,404,4853,1,0,0,0,406,4859,1,0,0,0,408,4886, + 1,0,0,0,410,4900,1,0,0,0,412,4911,1,0,0,0,414,4913,1,0,0,0,416,4919, + 1,0,0,0,418,4929,1,0,0,0,420,4933,1,0,0,0,422,4940,1,0,0,0,424,4944, + 1,0,0,0,426,4950,1,0,0,0,428,4957,1,0,0,0,430,4963,1,0,0,0,432,4969, + 1,0,0,0,434,4974,1,0,0,0,436,5019,1,0,0,0,438,5040,1,0,0,0,440,5065, + 1,0,0,0,442,5068,1,0,0,0,444,5074,1,0,0,0,446,5090,1,0,0,0,448,5105, + 1,0,0,0,450,5111,1,0,0,0,452,5141,1,0,0,0,454,5143,1,0,0,0,456,5150, + 1,0,0,0,458,5162,1,0,0,0,460,5168,1,0,0,0,462,5193,1,0,0,0,464,5197, + 1,0,0,0,466,5201,1,0,0,0,468,5212,1,0,0,0,470,5220,1,0,0,0,472,5283, + 1,0,0,0,474,5342,1,0,0,0,476,5444,1,0,0,0,478,5454,1,0,0,0,480,5456, + 1,0,0,0,482,5474,1,0,0,0,484,5498,1,0,0,0,486,5522,1,0,0,0,488,5529, + 1,0,0,0,490,5549,1,0,0,0,492,5558,1,0,0,0,494,5620,1,0,0,0,496,5622, + 1,0,0,0,498,5626,1,0,0,0,500,5660,1,0,0,0,502,5662,1,0,0,0,504,5665, + 1,0,0,0,506,5729,1,0,0,0,508,5748,1,0,0,0,510,5775,1,0,0,0,512,5779, + 1,0,0,0,514,5800,1,0,0,0,516,5810,1,0,0,0,518,5820,1,0,0,0,520,5860, + 1,0,0,0,522,5862,1,0,0,0,524,5865,1,0,0,0,526,5895,1,0,0,0,528,5897, + 1,0,0,0,530,5900,1,0,0,0,532,6000,1,0,0,0,534,6018,1,0,0,0,536,6020, + 1,0,0,0,538,6072,1,0,0,0,540,6074,1,0,0,0,542,6083,1,0,0,0,544,6089, + 1,0,0,0,546,6096,1,0,0,0,548,6111,1,0,0,0,550,6120,1,0,0,0,552,6122, + 1,0,0,0,554,6143,1,0,0,0,556,6148,1,0,0,0,558,6158,1,0,0,0,560,6164, + 1,0,0,0,562,6198,1,0,0,0,564,6252,1,0,0,0,566,6438,1,0,0,0,568,6450, + 1,0,0,0,570,6466,1,0,0,0,572,6472,1,0,0,0,574,6491,1,0,0,0,576,6504, + 1,0,0,0,578,6518,1,0,0,0,580,6520,1,0,0,0,582,6523,1,0,0,0,584,6547, + 1,0,0,0,586,6559,1,0,0,0,588,6565,1,0,0,0,590,6577,1,0,0,0,592,6591, + 1,0,0,0,594,6593,1,0,0,0,596,6601,1,0,0,0,598,6609,1,0,0,0,600,6611, + 1,0,0,0,602,6613,1,0,0,0,604,6653,1,0,0,0,606,6660,1,0,0,0,608,6662, + 1,0,0,0,610,6685,1,0,0,0,612,6691,1,0,0,0,614,6701,1,0,0,0,616,6710, + 1,0,0,0,618,6713,1,0,0,0,620,6716,1,0,0,0,622,6737,1,0,0,0,624,6758, + 1,0,0,0,626,6766,1,0,0,0,628,6778,1,0,0,0,630,6786,1,0,0,0,632,6824, + 1,0,0,0,634,6836,1,0,0,0,636,6838,1,0,0,0,638,6840,1,0,0,0,640,6842, + 1,0,0,0,642,6844,1,0,0,0,644,6846,1,0,0,0,646,6848,1,0,0,0,648,6850, + 1,0,0,0,650,6852,1,0,0,0,652,6860,1,0,0,0,654,6862,1,0,0,0,656,6864, + 1,0,0,0,658,6866,1,0,0,0,660,6868,1,0,0,0,662,6876,1,0,0,0,664,6878, + 1,0,0,0,666,6888,1,0,0,0,668,6904,1,0,0,0,670,6906,1,0,0,0,672,6929, + 1,0,0,0,674,6931,1,0,0,0,676,6933,1,0,0,0,678,6935,1,0,0,0,680,6937, + 1,0,0,0,682,6945,1,0,0,0,684,6955,1,0,0,0,686,6960,1,0,0,0,688,6964, + 1,0,0,0,690,6971,1,0,0,0,692,6973,1,0,0,0,694,6980,1,0,0,0,696,6982, + 1,0,0,0,698,6988,1,0,0,0,700,6990,1,0,0,0,702,6995,1,0,0,0,704,6997, + 1,0,0,0,706,6999,1,0,0,0,708,7017,1,0,0,0,710,7033,1,0,0,0,712,7035, + 1,0,0,0,714,7039,1,0,0,0,716,7050,1,0,0,0,718,7061,1,0,0,0,720,7067, + 1,0,0,0,722,7069,1,0,0,0,724,7073,1,0,0,0,726,7098,1,0,0,0,728,7100, + 1,0,0,0,730,7103,1,0,0,0,732,7108,1,0,0,0,734,7124,1,0,0,0,736,7252, + 1,0,0,0,738,7254,1,0,0,0,740,7287,1,0,0,0,742,7292,1,0,0,0,744,7296, + 1,0,0,0,746,7302,1,0,0,0,748,7310,1,0,0,0,750,7321,1,0,0,0,752,7329, + 1,0,0,0,754,7338,1,0,0,0,756,7351,1,0,0,0,758,7353,1,0,0,0,760,7361, + 1,0,0,0,762,7369,1,0,0,0,764,7403,1,0,0,0,766,7419,1,0,0,0,768,7421, + 1,0,0,0,770,7424,1,0,0,0,772,7428,1,0,0,0,774,7453,1,0,0,0,776,7634, + 1,0,0,0,778,7636,1,0,0,0,780,7655,1,0,0,0,782,7657,1,0,0,0,784,7720, + 1,0,0,0,786,7760,1,0,0,0,788,7762,1,0,0,0,790,7771,1,0,0,0,792,7782, + 1,0,0,0,794,7784,1,0,0,0,796,7787,1,0,0,0,798,7791,1,0,0,0,800,7793, + 1,0,0,0,802,7805,1,0,0,0,804,7807,1,0,0,0,806,7841,1,0,0,0,808,7843, + 1,0,0,0,810,7848,1,0,0,0,812,7859,1,0,0,0,814,7872,1,0,0,0,816,7883, + 1,0,0,0,818,8000,1,0,0,0,820,8022,1,0,0,0,822,8032,1,0,0,0,824,8041, + 1,0,0,0,826,8050,1,0,0,0,828,8059,1,0,0,0,830,8061,1,0,0,0,832,8068, + 1,0,0,0,834,8070,1,0,0,0,836,8072,1,0,0,0,838,8074,1,0,0,0,840,8076, + 1,0,0,0,842,8078,1,0,0,0,844,8080,1,0,0,0,846,8082,1,0,0,0,848,850, + 3,2,1,0,849,848,1,0,0,0,850,853,1,0,0,0,851,849,1,0,0,0,851,852, + 1,0,0,0,852,854,1,0,0,0,853,851,1,0,0,0,854,855,5,0,0,1,855,1,1, + 0,0,0,856,858,3,4,2,0,857,859,5,869,0,0,858,857,1,0,0,0,858,859, + 1,0,0,0,859,862,1,0,0,0,860,862,3,6,3,0,861,856,1,0,0,0,861,860, + 1,0,0,0,862,3,1,0,0,0,863,871,3,8,4,0,864,871,3,10,5,0,865,871,3, + 12,6,0,866,871,3,14,7,0,867,871,3,16,8,0,868,871,3,20,10,0,869,871, + 3,22,11,0,870,863,1,0,0,0,870,864,1,0,0,0,870,865,1,0,0,0,870,866, + 1,0,0,0,870,867,1,0,0,0,870,868,1,0,0,0,870,869,1,0,0,0,871,5,1, + 0,0,0,872,873,5,869,0,0,873,7,1,0,0,0,874,915,3,24,12,0,875,915, + 3,26,13,0,876,915,3,28,14,0,877,915,3,30,15,0,878,915,3,32,16,0, + 879,915,3,34,17,0,880,915,3,36,18,0,881,915,3,40,20,0,882,915,3, + 42,21,0,883,915,3,44,22,0,884,915,3,46,23,0,885,915,3,48,24,0,886, + 915,3,54,27,0,887,915,3,38,19,0,888,915,3,126,63,0,889,915,3,128, + 64,0,890,915,3,130,65,0,891,915,3,132,66,0,892,915,3,134,67,0,893, + 915,3,136,68,0,894,915,3,138,69,0,895,915,3,140,70,0,896,915,3,142, + 71,0,897,915,3,144,72,0,898,915,3,150,75,0,899,915,3,152,76,0,900, + 915,3,154,77,0,901,915,3,156,78,0,902,915,3,158,79,0,903,915,3,160, + 80,0,904,915,3,162,81,0,905,915,3,164,82,0,906,915,3,166,83,0,907, + 915,3,168,84,0,908,915,3,170,85,0,909,915,3,172,86,0,910,915,3,174, + 87,0,911,915,3,176,88,0,912,915,3,178,89,0,913,915,3,182,91,0,914, + 874,1,0,0,0,914,875,1,0,0,0,914,876,1,0,0,0,914,877,1,0,0,0,914, + 878,1,0,0,0,914,879,1,0,0,0,914,880,1,0,0,0,914,881,1,0,0,0,914, + 882,1,0,0,0,914,883,1,0,0,0,914,884,1,0,0,0,914,885,1,0,0,0,914, + 886,1,0,0,0,914,887,1,0,0,0,914,888,1,0,0,0,914,889,1,0,0,0,914, + 890,1,0,0,0,914,891,1,0,0,0,914,892,1,0,0,0,914,893,1,0,0,0,914, + 894,1,0,0,0,914,895,1,0,0,0,914,896,1,0,0,0,914,897,1,0,0,0,914, + 898,1,0,0,0,914,899,1,0,0,0,914,900,1,0,0,0,914,901,1,0,0,0,914, + 902,1,0,0,0,914,903,1,0,0,0,914,904,1,0,0,0,914,905,1,0,0,0,914, + 906,1,0,0,0,914,907,1,0,0,0,914,908,1,0,0,0,914,909,1,0,0,0,914, + 910,1,0,0,0,914,911,1,0,0,0,914,912,1,0,0,0,914,913,1,0,0,0,915, + 9,1,0,0,0,916,934,3,210,105,0,917,934,3,212,106,0,918,934,3,192, + 96,0,919,934,3,220,110,0,920,934,3,186,93,0,921,934,3,208,104,0, + 922,934,3,184,92,0,923,934,3,198,99,0,924,934,3,202,101,0,925,934, + 3,204,102,0,926,934,3,206,103,0,927,934,3,188,94,0,928,934,3,190, + 95,0,929,934,3,252,126,0,930,934,3,222,111,0,931,934,3,626,313,0, + 932,934,3,628,314,0,933,916,1,0,0,0,933,917,1,0,0,0,933,918,1,0, + 0,0,933,919,1,0,0,0,933,920,1,0,0,0,933,921,1,0,0,0,933,922,1,0, + 0,0,933,923,1,0,0,0,933,924,1,0,0,0,933,925,1,0,0,0,933,926,1,0, + 0,0,933,927,1,0,0,0,933,928,1,0,0,0,933,929,1,0,0,0,933,930,1,0, + 0,0,933,931,1,0,0,0,933,932,1,0,0,0,934,11,1,0,0,0,935,945,3,332, + 166,0,936,945,3,334,167,0,937,945,3,336,168,0,938,945,3,338,169, + 0,939,945,3,340,170,0,940,945,3,342,171,0,941,945,3,344,172,0,942, + 945,3,346,173,0,943,945,3,348,174,0,944,935,1,0,0,0,944,936,1,0, + 0,0,944,937,1,0,0,0,944,938,1,0,0,0,944,939,1,0,0,0,944,940,1,0, + 0,0,944,941,1,0,0,0,944,942,1,0,0,0,944,943,1,0,0,0,945,13,1,0,0, + 0,946,961,3,364,182,0,947,961,3,366,183,0,948,961,3,368,184,0,949, + 961,3,370,185,0,950,961,3,372,186,0,951,961,3,374,187,0,952,961, + 3,376,188,0,953,961,3,378,189,0,954,961,3,414,207,0,955,961,3,416, + 208,0,956,961,3,418,209,0,957,961,3,420,210,0,958,961,3,422,211, + 0,959,961,3,424,212,0,960,946,1,0,0,0,960,947,1,0,0,0,960,948,1, + 0,0,0,960,949,1,0,0,0,960,950,1,0,0,0,960,951,1,0,0,0,960,952,1, + 0,0,0,960,953,1,0,0,0,960,954,1,0,0,0,960,955,1,0,0,0,960,956,1, + 0,0,0,960,957,1,0,0,0,960,958,1,0,0,0,960,959,1,0,0,0,961,15,1,0, + 0,0,962,966,3,426,213,0,963,966,3,428,214,0,964,966,3,430,215,0, + 965,962,1,0,0,0,965,963,1,0,0,0,965,964,1,0,0,0,966,17,1,0,0,0,967, + 978,3,434,217,0,968,978,3,436,218,0,969,978,3,438,219,0,970,978, + 3,442,221,0,971,978,3,444,222,0,972,978,3,446,223,0,973,978,3,450, + 225,0,974,978,3,440,220,0,975,978,3,448,224,0,976,978,3,452,226, + 0,977,967,1,0,0,0,977,968,1,0,0,0,977,969,1,0,0,0,977,970,1,0,0, + 0,977,971,1,0,0,0,977,972,1,0,0,0,977,973,1,0,0,0,977,974,1,0,0, + 0,977,975,1,0,0,0,977,976,1,0,0,0,978,19,1,0,0,0,979,1013,3,470, + 235,0,980,1013,3,472,236,0,981,1013,3,474,237,0,982,1013,3,476,238, + 0,983,1013,3,480,240,0,984,1013,3,492,246,0,985,1013,3,494,247,0, + 986,1013,3,482,241,0,987,1013,3,484,242,0,988,1013,3,486,243,0,989, + 1013,3,488,244,0,990,1013,3,538,269,0,991,1013,3,540,270,0,992,1013, + 3,542,271,0,993,1013,3,544,272,0,994,1013,3,546,273,0,995,1013,3, + 552,276,0,996,1013,3,556,278,0,997,1013,3,558,279,0,998,1013,3,560, + 280,0,999,1013,3,562,281,0,1000,1013,3,564,282,0,1001,1013,3,566, + 283,0,1002,1013,3,580,290,0,1003,1013,3,582,291,0,1004,1013,3,584, + 292,0,1005,1013,3,586,293,0,1006,1013,3,588,294,0,1007,1013,3,590, + 295,0,1008,1013,3,594,297,0,1009,1013,3,596,298,0,1010,1013,3,598, + 299,0,1011,1013,3,600,300,0,1012,979,1,0,0,0,1012,980,1,0,0,0,1012, + 981,1,0,0,0,1012,982,1,0,0,0,1012,983,1,0,0,0,1012,984,1,0,0,0,1012, + 985,1,0,0,0,1012,986,1,0,0,0,1012,987,1,0,0,0,1012,988,1,0,0,0,1012, + 989,1,0,0,0,1012,990,1,0,0,0,1012,991,1,0,0,0,1012,992,1,0,0,0,1012, + 993,1,0,0,0,1012,994,1,0,0,0,1012,995,1,0,0,0,1012,996,1,0,0,0,1012, + 997,1,0,0,0,1012,998,1,0,0,0,1012,999,1,0,0,0,1012,1000,1,0,0,0, + 1012,1001,1,0,0,0,1012,1002,1,0,0,0,1012,1003,1,0,0,0,1012,1004, + 1,0,0,0,1012,1005,1,0,0,0,1012,1006,1,0,0,0,1012,1007,1,0,0,0,1012, + 1008,1,0,0,0,1012,1009,1,0,0,0,1012,1010,1,0,0,0,1012,1011,1,0,0, + 0,1013,21,1,0,0,0,1014,1023,3,612,306,0,1015,1023,3,610,305,0,1016, + 1023,3,614,307,0,1017,1023,3,616,308,0,1018,1023,3,618,309,0,1019, + 1023,3,620,310,0,1020,1023,3,622,311,0,1021,1023,3,630,315,0,1022, + 1014,1,0,0,0,1022,1015,1,0,0,0,1022,1016,1,0,0,0,1022,1017,1,0,0, + 0,1022,1018,1,0,0,0,1022,1019,1,0,0,0,1022,1020,1,0,0,0,1022,1021, + 1,0,0,0,1023,23,1,0,0,0,1024,1025,5,34,0,0,1025,1027,7,0,0,0,1026, + 1028,3,770,385,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,1029,1, + 0,0,0,1029,1033,3,636,318,0,1030,1032,3,56,28,0,1031,1030,1,0,0, + 0,1032,1035,1,0,0,0,1033,1031,1,0,0,0,1033,1034,1,0,0,0,1034,25, + 1,0,0,0,1035,1033,1,0,0,0,1036,1038,5,34,0,0,1037,1039,3,62,31,0, + 1038,1037,1,0,0,0,1038,1039,1,0,0,0,1039,1040,1,0,0,0,1040,1042, + 5,385,0,0,1041,1043,3,770,385,0,1042,1041,1,0,0,0,1042,1043,1,0, + 0,0,1043,1044,1,0,0,0,1044,1045,3,712,356,0,1045,1046,5,119,0,0, + 1046,1047,5,590,0,0,1047,1054,3,64,32,0,1048,1049,5,119,0,0,1049, + 1051,5,343,0,0,1050,1052,5,114,0,0,1051,1050,1,0,0,0,1051,1052,1, + 0,0,0,1052,1053,1,0,0,0,1053,1055,5,541,0,0,1054,1048,1,0,0,0,1054, + 1055,1,0,0,0,1055,1057,1,0,0,0,1056,1058,3,72,36,0,1057,1056,1,0, + 0,0,1057,1058,1,0,0,0,1058,1061,1,0,0,0,1059,1060,5,340,0,0,1060, + 1062,5,882,0,0,1061,1059,1,0,0,0,1061,1062,1,0,0,0,1062,1063,1,0, + 0,0,1063,1064,5,371,0,0,1064,1065,3,432,216,0,1065,27,1,0,0,0,1066, + 1068,5,34,0,0,1067,1069,7,1,0,0,1068,1067,1,0,0,0,1068,1069,1,0, + 0,0,1069,1071,1,0,0,0,1070,1072,7,2,0,0,1071,1070,1,0,0,0,1071,1072, + 1,0,0,0,1072,1073,1,0,0,0,1073,1074,5,82,0,0,1074,1076,3,648,324, + 0,1075,1077,3,74,37,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077,1078, + 1,0,0,0,1078,1079,5,119,0,0,1079,1080,3,662,331,0,1080,1084,3,748, + 374,0,1081,1083,3,76,38,0,1082,1081,1,0,0,0,1083,1086,1,0,0,0,1084, + 1082,1,0,0,0,1084,1085,1,0,0,0,1085,1099,1,0,0,0,1086,1084,1,0,0, + 0,1087,1089,5,308,0,0,1088,1090,5,857,0,0,1089,1088,1,0,0,0,1089, + 1090,1,0,0,0,1090,1091,1,0,0,0,1091,1098,7,3,0,0,1092,1094,5,104, + 0,0,1093,1095,5,857,0,0,1094,1093,1,0,0,0,1094,1095,1,0,0,0,1095, + 1096,1,0,0,0,1096,1098,7,4,0,0,1097,1087,1,0,0,0,1097,1092,1,0,0, + 0,1098,1101,1,0,0,0,1099,1097,1,0,0,0,1099,1100,1,0,0,0,1100,29, + 1,0,0,0,1101,1099,1,0,0,0,1102,1103,5,34,0,0,1103,1104,5,451,0,0, + 1104,1105,5,74,0,0,1105,1106,3,716,358,0,1106,1107,5,6,0,0,1107, + 1108,5,671,0,0,1108,1114,5,882,0,0,1109,1111,5,428,0,0,1110,1112, + 5,857,0,0,1111,1110,1,0,0,0,1111,1112,1,0,0,0,1112,1113,1,0,0,0, + 1113,1115,3,724,362,0,1114,1109,1,0,0,0,1114,1115,1,0,0,0,1115,1121, + 1,0,0,0,1116,1118,5,672,0,0,1117,1119,5,857,0,0,1118,1117,1,0,0, + 0,1118,1119,1,0,0,0,1119,1120,1,0,0,0,1120,1122,3,724,362,0,1121, + 1116,1,0,0,0,1121,1122,1,0,0,0,1122,1128,1,0,0,0,1123,1125,5,553, + 0,0,1124,1126,5,857,0,0,1125,1124,1,0,0,0,1125,1126,1,0,0,0,1126, + 1127,1,0,0,0,1127,1129,3,724,362,0,1128,1123,1,0,0,0,1128,1129,1, + 0,0,0,1129,1135,1,0,0,0,1130,1132,5,504,0,0,1131,1133,5,857,0,0, + 1132,1131,1,0,0,0,1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1136, + 3,716,358,0,1135,1130,1,0,0,0,1135,1136,1,0,0,0,1136,1138,1,0,0, + 0,1137,1139,5,687,0,0,1138,1137,1,0,0,0,1138,1139,1,0,0,0,1139,1145, + 1,0,0,0,1140,1142,5,340,0,0,1141,1143,5,857,0,0,1142,1141,1,0,0, + 0,1142,1143,1,0,0,0,1143,1144,1,0,0,0,1144,1146,5,882,0,0,1145,1140, + 1,0,0,0,1145,1146,1,0,0,0,1146,1147,1,0,0,0,1147,1149,5,380,0,0, + 1148,1150,5,857,0,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1151, + 1,0,0,0,1151,1152,3,702,351,0,1152,31,1,0,0,0,1153,1155,5,34,0,0, + 1154,1156,3,62,31,0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156,1157, + 1,0,0,0,1157,1159,5,132,0,0,1158,1160,3,770,385,0,1159,1158,1,0, + 0,0,1159,1160,1,0,0,0,1160,1161,1,0,0,0,1161,1162,3,712,356,0,1162, + 1164,5,866,0,0,1163,1165,3,78,39,0,1164,1163,1,0,0,0,1164,1165,1, + 0,0,0,1165,1170,1,0,0,0,1166,1167,5,868,0,0,1167,1169,3,78,39,0, + 1168,1166,1,0,0,0,1169,1172,1,0,0,0,1170,1168,1,0,0,0,1170,1171, + 1,0,0,0,1171,1173,1,0,0,0,1172,1170,1,0,0,0,1173,1177,5,867,0,0, + 1174,1176,3,82,41,0,1175,1174,1,0,0,0,1176,1179,1,0,0,0,1177,1175, + 1,0,0,0,1177,1178,1,0,0,0,1178,1180,1,0,0,0,1179,1177,1,0,0,0,1180, + 1181,3,432,216,0,1181,33,1,0,0,0,1182,1184,5,34,0,0,1183,1185,3, + 62,31,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185,1187,1,0,0,0,1186, + 1188,5,307,0,0,1187,1186,1,0,0,0,1187,1188,1,0,0,0,1188,1189,1,0, + 0,0,1189,1191,5,409,0,0,1190,1192,3,770,385,0,1191,1190,1,0,0,0, + 1191,1192,1,0,0,0,1192,1193,1,0,0,0,1193,1194,3,640,320,0,1194,1196, + 5,866,0,0,1195,1197,3,80,40,0,1196,1195,1,0,0,0,1196,1197,1,0,0, + 0,1197,1202,1,0,0,0,1198,1199,5,868,0,0,1199,1201,3,80,40,0,1200, + 1198,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1202,1203,1,0,0, + 0,1203,1205,1,0,0,0,1204,1202,1,0,0,0,1205,1206,5,867,0,0,1206,1207, + 5,580,0,0,1207,1211,3,736,368,0,1208,1210,3,82,41,0,1209,1208,1, + 0,0,0,1210,1213,1,0,0,0,1211,1209,1,0,0,0,1211,1212,1,0,0,0,1212, + 1216,1,0,0,0,1213,1211,1,0,0,0,1214,1217,3,432,216,0,1215,1217,3, + 448,224,0,1216,1214,1,0,0,0,1216,1215,1,0,0,0,1217,35,1,0,0,0,1218, + 1220,5,34,0,0,1219,1221,5,307,0,0,1220,1219,1,0,0,0,1220,1221,1, + 0,0,0,1221,1222,1,0,0,0,1222,1224,5,409,0,0,1223,1225,3,770,385, + 0,1224,1223,1,0,0,0,1224,1225,1,0,0,0,1225,1226,1,0,0,0,1226,1227, + 3,640,320,0,1227,1228,5,580,0,0,1228,1229,7,5,0,0,1229,1230,5,603, + 0,0,1230,1231,5,882,0,0,1231,37,1,0,0,0,1232,1233,5,34,0,0,1233, + 1235,5,582,0,0,1234,1236,3,770,385,0,1235,1234,1,0,0,0,1235,1236, + 1,0,0,0,1236,1237,1,0,0,0,1237,1238,3,664,332,0,1238,39,1,0,0,0, + 1239,1240,5,34,0,0,1240,1241,5,592,0,0,1241,1242,3,716,358,0,1242, + 1243,5,67,0,0,1243,1244,5,360,0,0,1244,1245,5,692,0,0,1245,1246, + 7,6,0,0,1246,1247,5,518,0,0,1247,1248,5,866,0,0,1248,1253,3,84,42, + 0,1249,1250,5,868,0,0,1250,1252,3,84,42,0,1251,1249,1,0,0,0,1252, + 1255,1,0,0,0,1253,1251,1,0,0,0,1253,1254,1,0,0,0,1254,1256,1,0,0, + 0,1255,1253,1,0,0,0,1256,1257,5,867,0,0,1257,41,1,0,0,0,1258,1260, + 5,34,0,0,1259,1261,5,660,0,0,1260,1259,1,0,0,0,1260,1261,1,0,0,0, + 1261,1262,1,0,0,0,1262,1264,5,173,0,0,1263,1265,3,770,385,0,1264, + 1263,1,0,0,0,1264,1265,1,0,0,0,1265,1266,1,0,0,0,1266,1268,3,658, + 329,0,1267,1269,3,86,43,0,1268,1267,1,0,0,0,1268,1269,1,0,0,0,1269, + 1280,1,0,0,0,1270,1277,3,104,52,0,1271,1273,5,868,0,0,1272,1271, + 1,0,0,0,1272,1273,1,0,0,0,1273,1274,1,0,0,0,1274,1276,3,104,52,0, + 1275,1272,1,0,0,0,1276,1279,1,0,0,0,1277,1275,1,0,0,0,1277,1278, + 1,0,0,0,1278,1281,1,0,0,0,1279,1277,1,0,0,0,1280,1270,1,0,0,0,1280, + 1281,1,0,0,0,1281,1283,1,0,0,0,1282,1284,3,110,55,0,1283,1282,1, + 0,0,0,1283,1284,1,0,0,0,1284,1286,1,0,0,0,1285,1287,7,7,0,0,1286, + 1285,1,0,0,0,1286,1287,1,0,0,0,1287,1289,1,0,0,0,1288,1290,5,13, + 0,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1291,1,0,0,0,1291,1292, + 3,210,105,0,1292,1337,1,0,0,0,1293,1295,5,34,0,0,1294,1296,5,660, + 0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297,1,0,0,0,1297,1299, + 5,173,0,0,1298,1300,3,770,385,0,1299,1298,1,0,0,0,1299,1300,1,0, + 0,0,1300,1301,1,0,0,0,1301,1309,3,658,329,0,1302,1303,5,99,0,0,1303, + 1310,3,662,331,0,1304,1305,5,866,0,0,1305,1306,5,99,0,0,1306,1307, + 3,662,331,0,1307,1308,5,867,0,0,1308,1310,1,0,0,0,1309,1302,1,0, + 0,0,1309,1304,1,0,0,0,1310,1337,1,0,0,0,1311,1313,5,34,0,0,1312, + 1314,5,660,0,0,1313,1312,1,0,0,0,1313,1314,1,0,0,0,1314,1315,1,0, + 0,0,1315,1317,5,173,0,0,1316,1318,3,770,385,0,1317,1316,1,0,0,0, + 1317,1318,1,0,0,0,1318,1319,1,0,0,0,1319,1320,3,658,329,0,1320,1331, + 3,86,43,0,1321,1328,3,104,52,0,1322,1324,5,868,0,0,1323,1322,1,0, + 0,0,1323,1324,1,0,0,0,1324,1325,1,0,0,0,1325,1327,3,104,52,0,1326, + 1323,1,0,0,0,1327,1330,1,0,0,0,1328,1326,1,0,0,0,1328,1329,1,0,0, + 0,1329,1332,1,0,0,0,1330,1328,1,0,0,0,1331,1321,1,0,0,0,1331,1332, + 1,0,0,0,1332,1334,1,0,0,0,1333,1335,3,110,55,0,1334,1333,1,0,0,0, + 1334,1335,1,0,0,0,1335,1337,1,0,0,0,1336,1258,1,0,0,0,1336,1293, + 1,0,0,0,1336,1311,1,0,0,0,1337,43,1,0,0,0,1338,1340,5,34,0,0,1339, + 1341,5,180,0,0,1340,1339,1,0,0,0,1340,1341,1,0,0,0,1341,1342,1,0, + 0,0,1342,1343,5,658,0,0,1343,1347,3,674,337,0,1344,1345,5,6,0,0, + 1345,1346,5,361,0,0,1346,1348,5,882,0,0,1347,1344,1,0,0,0,1347,1348, + 1,0,0,0,1348,1354,1,0,0,0,1349,1351,5,314,0,0,1350,1352,5,857,0, + 0,1351,1350,1,0,0,0,1351,1352,1,0,0,0,1352,1353,1,0,0,0,1353,1355, + 3,724,362,0,1354,1349,1,0,0,0,1354,1355,1,0,0,0,1355,1359,1,0,0, + 0,1356,1357,5,399,0,0,1357,1358,5,857,0,0,1358,1360,3,724,362,0, + 1359,1356,1,0,0,0,1359,1360,1,0,0,0,1360,1366,1,0,0,0,1361,1363, + 5,380,0,0,1362,1364,5,857,0,0,1363,1362,1,0,0,0,1363,1364,1,0,0, + 0,1364,1365,1,0,0,0,1365,1367,3,702,351,0,1366,1361,1,0,0,0,1366, + 1367,1,0,0,0,1367,1373,1,0,0,0,1368,1370,5,825,0,0,1369,1371,5,857, + 0,0,1370,1369,1,0,0,0,1370,1371,1,0,0,0,1371,1372,1,0,0,0,1372,1374, + 5,882,0,0,1373,1368,1,0,0,0,1373,1374,1,0,0,0,1374,45,1,0,0,0,1375, + 1377,5,34,0,0,1376,1378,5,180,0,0,1377,1376,1,0,0,0,1377,1378,1, + 0,0,0,1378,1379,1,0,0,0,1379,1380,5,658,0,0,1380,1381,3,674,337, + 0,1381,1382,5,6,0,0,1382,1383,5,361,0,0,1383,1384,5,882,0,0,1384, + 1385,5,187,0,0,1385,1386,5,451,0,0,1386,1387,5,74,0,0,1387,1393, + 3,716,358,0,1388,1390,5,393,0,0,1389,1391,5,857,0,0,1390,1389,1, + 0,0,0,1390,1391,1,0,0,0,1391,1392,1,0,0,0,1392,1394,3,724,362,0, + 1393,1388,1,0,0,0,1393,1394,1,0,0,0,1394,1400,1,0,0,0,1395,1397, + 5,428,0,0,1396,1398,5,857,0,0,1397,1396,1,0,0,0,1397,1398,1,0,0, + 0,1398,1399,1,0,0,0,1399,1401,3,724,362,0,1400,1395,1,0,0,0,1400, + 1401,1,0,0,0,1401,1407,1,0,0,0,1402,1404,5,314,0,0,1403,1405,5,857, + 0,0,1404,1403,1,0,0,0,1404,1405,1,0,0,0,1405,1406,1,0,0,0,1406,1408, + 3,724,362,0,1407,1402,1,0,0,0,1407,1408,1,0,0,0,1408,1414,1,0,0, + 0,1409,1411,5,481,0,0,1410,1412,5,857,0,0,1411,1410,1,0,0,0,1411, + 1412,1,0,0,0,1412,1413,1,0,0,0,1413,1415,3,724,362,0,1414,1409,1, + 0,0,0,1414,1415,1,0,0,0,1415,1421,1,0,0,0,1416,1418,5,504,0,0,1417, + 1419,5,857,0,0,1418,1417,1,0,0,0,1418,1419,1,0,0,0,1419,1420,1,0, + 0,0,1420,1422,3,716,358,0,1421,1416,1,0,0,0,1421,1422,1,0,0,0,1422, + 1424,1,0,0,0,1423,1425,5,687,0,0,1424,1423,1,0,0,0,1424,1425,1,0, + 0,0,1425,1431,1,0,0,0,1426,1428,5,340,0,0,1427,1429,5,857,0,0,1428, + 1427,1,0,0,0,1428,1429,1,0,0,0,1429,1430,1,0,0,0,1430,1432,5,882, + 0,0,1431,1426,1,0,0,0,1431,1432,1,0,0,0,1432,1433,1,0,0,0,1433,1435, + 5,380,0,0,1434,1436,5,857,0,0,1435,1434,1,0,0,0,1435,1436,1,0,0, + 0,1436,1437,1,0,0,0,1437,1438,3,702,351,0,1438,47,1,0,0,0,1439,1441, + 5,34,0,0,1440,1442,3,62,31,0,1441,1440,1,0,0,0,1441,1442,1,0,0,0, + 1442,1444,1,0,0,0,1443,1445,3,770,385,0,1444,1443,1,0,0,0,1444,1445, + 1,0,0,0,1445,1446,1,0,0,0,1446,1448,5,178,0,0,1447,1449,3,770,385, + 0,1448,1447,1,0,0,0,1448,1449,1,0,0,0,1449,1450,1,0,0,0,1450,1451, + 3,712,356,0,1451,1452,7,8,0,0,1452,1453,7,9,0,0,1453,1454,5,119, + 0,0,1454,1455,3,662,331,0,1455,1456,5,65,0,0,1456,1457,5,52,0,0, + 1457,1460,5,586,0,0,1458,1459,7,10,0,0,1459,1461,3,712,356,0,1460, + 1458,1,0,0,0,1460,1461,1,0,0,0,1461,1462,1,0,0,0,1462,1463,3,432, + 216,0,1463,49,1,0,0,0,1464,1466,5,194,0,0,1465,1467,5,552,0,0,1466, + 1465,1,0,0,0,1466,1467,1,0,0,0,1467,1468,1,0,0,0,1468,1469,3,52, + 26,0,1469,51,1,0,0,0,1470,1482,3,716,358,0,1471,1472,5,866,0,0,1472, + 1477,3,716,358,0,1473,1474,5,868,0,0,1474,1476,3,716,358,0,1475, + 1473,1,0,0,0,1476,1479,1,0,0,0,1477,1475,1,0,0,0,1477,1478,1,0,0, + 0,1478,1480,1,0,0,0,1479,1477,1,0,0,0,1480,1481,5,867,0,0,1481,1483, + 1,0,0,0,1482,1471,1,0,0,0,1482,1483,1,0,0,0,1483,1484,1,0,0,0,1484, + 1485,5,13,0,0,1485,1486,5,866,0,0,1486,1487,3,10,5,0,1487,1490,5, + 867,0,0,1488,1489,5,868,0,0,1489,1491,3,52,26,0,1490,1488,1,0,0, + 0,1490,1491,1,0,0,0,1491,53,1,0,0,0,1492,1494,5,34,0,0,1493,1495, + 3,772,386,0,1494,1493,1,0,0,0,1494,1495,1,0,0,0,1495,1499,1,0,0, + 0,1496,1497,5,308,0,0,1497,1498,5,857,0,0,1498,1500,7,11,0,0,1499, + 1496,1,0,0,0,1499,1500,1,0,0,0,1500,1502,1,0,0,0,1501,1503,3,62, + 31,0,1502,1501,1,0,0,0,1502,1503,1,0,0,0,1503,1507,1,0,0,0,1504, + 1505,5,162,0,0,1505,1506,5,591,0,0,1506,1508,7,12,0,0,1507,1504, + 1,0,0,0,1507,1508,1,0,0,0,1508,1509,1,0,0,0,1509,1510,5,684,0,0, + 1510,1522,3,644,322,0,1511,1512,5,866,0,0,1512,1517,3,668,334,0, + 1513,1514,5,868,0,0,1514,1516,3,668,334,0,1515,1513,1,0,0,0,1516, + 1519,1,0,0,0,1517,1515,1,0,0,0,1517,1518,1,0,0,0,1518,1520,1,0,0, + 0,1519,1517,1,0,0,0,1520,1521,5,867,0,0,1521,1523,1,0,0,0,1522,1511, + 1,0,0,0,1522,1523,1,0,0,0,1523,1524,1,0,0,0,1524,1544,5,13,0,0,1525, + 1527,5,866,0,0,1526,1528,3,50,25,0,1527,1526,1,0,0,0,1527,1528,1, + 0,0,0,1528,1529,1,0,0,0,1529,1530,3,210,105,0,1530,1531,5,867,0, + 0,1531,1545,1,0,0,0,1532,1534,3,50,25,0,1533,1532,1,0,0,0,1533,1534, + 1,0,0,0,1534,1535,1,0,0,0,1535,1542,3,210,105,0,1536,1538,5,194, + 0,0,1537,1539,7,13,0,0,1538,1537,1,0,0,0,1538,1539,1,0,0,0,1539, + 1540,1,0,0,0,1540,1541,5,27,0,0,1541,1543,5,121,0,0,1542,1536,1, + 0,0,0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1525,1,0,0,0,1544, + 1533,1,0,0,0,1545,55,1,0,0,0,1546,1548,5,42,0,0,1547,1546,1,0,0, + 0,1547,1548,1,0,0,0,1548,1549,1,0,0,0,1549,1551,3,58,29,0,1550,1552, + 5,857,0,0,1551,1550,1,0,0,0,1551,1552,1,0,0,0,1552,1555,1,0,0,0, + 1553,1556,3,698,349,0,1554,1556,5,42,0,0,1555,1553,1,0,0,0,1555, + 1554,1,0,0,0,1556,1580,1,0,0,0,1557,1559,5,42,0,0,1558,1557,1,0, + 0,0,1558,1559,1,0,0,0,1559,1560,1,0,0,0,1560,1562,5,28,0,0,1561, + 1563,5,857,0,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563,1564,1,0, + 0,0,1564,1580,3,700,350,0,1565,1567,5,42,0,0,1566,1565,1,0,0,0,1566, + 1567,1,0,0,0,1567,1568,1,0,0,0,1568,1570,5,376,0,0,1569,1571,5,857, + 0,0,1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1580, + 5,882,0,0,1573,1574,5,135,0,0,1574,1576,5,515,0,0,1575,1577,5,857, + 0,0,1576,1575,1,0,0,0,1576,1577,1,0,0,0,1577,1578,1,0,0,0,1578,1580, + 7,14,0,0,1579,1547,1,0,0,0,1579,1558,1,0,0,0,1579,1566,1,0,0,0,1579, + 1573,1,0,0,0,1580,57,1,0,0,0,1581,1582,5,26,0,0,1582,1587,5,155, + 0,0,1583,1587,5,823,0,0,1584,1585,5,224,0,0,1585,1587,5,155,0,0, + 1586,1581,1,0,0,0,1586,1583,1,0,0,0,1586,1584,1,0,0,0,1587,59,1, + 0,0,0,1588,1591,7,15,0,0,1589,1590,5,866,0,0,1590,1592,5,867,0,0, + 1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592,61,1,0,0,0,1593,1594,5, + 364,0,0,1594,1597,5,857,0,0,1595,1598,3,694,347,0,1596,1598,3,60, + 30,0,1597,1595,1,0,0,0,1597,1596,1,0,0,0,1598,63,1,0,0,0,1599,1600, + 5,311,0,0,1600,1604,3,66,33,0,1601,1603,3,68,34,0,1602,1601,1,0, + 0,0,1603,1606,1,0,0,0,1604,1602,1,0,0,0,1604,1605,1,0,0,0,1605,1634, + 1,0,0,0,1606,1604,1,0,0,0,1607,1610,5,387,0,0,1608,1611,3,722,361, + 0,1609,1611,3,814,407,0,1610,1608,1,0,0,0,1610,1609,1,0,0,0,1611, + 1612,1,0,0,0,1612,1621,3,70,35,0,1613,1614,5,641,0,0,1614,1618,3, + 66,33,0,1615,1617,3,68,34,0,1616,1615,1,0,0,0,1617,1620,1,0,0,0, + 1618,1616,1,0,0,0,1618,1619,1,0,0,0,1619,1622,1,0,0,0,1620,1618, + 1,0,0,0,1621,1613,1,0,0,0,1621,1622,1,0,0,0,1622,1631,1,0,0,0,1623, + 1624,5,379,0,0,1624,1628,3,66,33,0,1625,1627,3,68,34,0,1626,1625, + 1,0,0,0,1627,1630,1,0,0,0,1628,1626,1,0,0,0,1628,1629,1,0,0,0,1629, + 1632,1,0,0,0,1630,1628,1,0,0,0,1631,1623,1,0,0,0,1631,1632,1,0,0, + 0,1632,1634,1,0,0,0,1633,1599,1,0,0,0,1633,1607,1,0,0,0,1634,65, + 1,0,0,0,1635,1640,5,287,0,0,1636,1640,3,726,363,0,1637,1640,3,722, + 361,0,1638,1640,3,814,407,0,1639,1635,1,0,0,0,1639,1636,1,0,0,0, + 1639,1637,1,0,0,0,1639,1638,1,0,0,0,1640,67,1,0,0,0,1641,1642,5, + 853,0,0,1642,1645,5,87,0,0,1643,1646,3,722,361,0,1644,1646,3,814, + 407,0,1645,1643,1,0,0,0,1645,1644,1,0,0,0,1646,1647,1,0,0,0,1647, + 1648,3,70,35,0,1648,69,1,0,0,0,1649,1663,3,840,420,0,1650,1663,5, + 223,0,0,1651,1663,5,242,0,0,1652,1663,5,243,0,0,1653,1663,5,244, + 0,0,1654,1663,5,245,0,0,1655,1663,5,246,0,0,1656,1663,5,247,0,0, + 1657,1663,5,248,0,0,1658,1663,5,249,0,0,1659,1663,5,250,0,0,1660, + 1663,5,251,0,0,1661,1663,5,252,0,0,1662,1649,1,0,0,0,1662,1650,1, + 0,0,0,1662,1651,1,0,0,0,1662,1652,1,0,0,0,1662,1653,1,0,0,0,1662, + 1654,1,0,0,0,1662,1655,1,0,0,0,1662,1656,1,0,0,0,1662,1657,1,0,0, + 0,1662,1658,1,0,0,0,1662,1659,1,0,0,0,1662,1660,1,0,0,0,1662,1661, + 1,0,0,0,1663,71,1,0,0,0,1664,1670,5,375,0,0,1665,1670,5,368,0,0, + 1666,1667,5,368,0,0,1667,1668,5,119,0,0,1668,1670,5,598,0,0,1669, + 1664,1,0,0,0,1669,1665,1,0,0,0,1669,1666,1,0,0,0,1670,73,1,0,0,0, + 1671,1672,5,188,0,0,1672,1673,7,16,0,0,1673,75,1,0,0,0,1674,1676, + 5,443,0,0,1675,1677,5,857,0,0,1676,1675,1,0,0,0,1676,1677,1,0,0, + 0,1677,1678,1,0,0,0,1678,1697,3,724,362,0,1679,1697,3,74,37,0,1680, + 1681,5,194,0,0,1681,1682,5,525,0,0,1682,1697,3,716,358,0,1683,1684, + 5,340,0,0,1684,1697,5,882,0,0,1685,1697,7,17,0,0,1686,1688,5,825, + 0,0,1687,1689,5,857,0,0,1688,1687,1,0,0,0,1688,1689,1,0,0,0,1689, + 1690,1,0,0,0,1690,1697,5,882,0,0,1691,1693,5,833,0,0,1692,1694,5, + 857,0,0,1693,1692,1,0,0,0,1693,1694,1,0,0,0,1694,1695,1,0,0,0,1695, + 1697,5,882,0,0,1696,1674,1,0,0,0,1696,1679,1,0,0,0,1696,1680,1,0, + 0,0,1696,1683,1,0,0,0,1696,1685,1,0,0,0,1696,1686,1,0,0,0,1696,1691, + 1,0,0,0,1697,77,1,0,0,0,1698,1700,7,18,0,0,1699,1698,1,0,0,0,1699, + 1700,1,0,0,0,1700,1701,1,0,0,0,1701,1702,3,716,358,0,1702,1703,3, + 736,368,0,1703,79,1,0,0,0,1704,1705,3,716,358,0,1705,1706,3,736, + 368,0,1706,81,1,0,0,0,1707,1708,5,340,0,0,1708,1731,5,882,0,0,1709, + 1710,5,444,0,0,1710,1731,5,162,0,0,1711,1713,5,114,0,0,1712,1711, + 1,0,0,0,1712,1713,1,0,0,0,1713,1714,1,0,0,0,1714,1731,5,47,0,0,1715, + 1716,5,354,0,0,1716,1726,5,162,0,0,1717,1718,5,502,0,0,1718,1726, + 5,162,0,0,1719,1720,5,136,0,0,1720,1721,5,162,0,0,1721,1726,5,360, + 0,0,1722,1723,5,112,0,0,1723,1724,5,162,0,0,1724,1726,5,360,0,0, + 1725,1715,1,0,0,0,1725,1717,1,0,0,0,1725,1719,1,0,0,0,1725,1722, + 1,0,0,0,1726,1731,1,0,0,0,1727,1728,5,162,0,0,1728,1729,5,591,0, + 0,1729,1731,7,12,0,0,1730,1707,1,0,0,0,1730,1709,1,0,0,0,1730,1712, + 1,0,0,0,1730,1725,1,0,0,0,1730,1727,1,0,0,0,1731,83,1,0,0,0,1732, + 1733,5,421,0,0,1733,1747,5,882,0,0,1734,1735,5,39,0,0,1735,1747, + 5,882,0,0,1736,1737,5,678,0,0,1737,1747,5,882,0,0,1738,1739,5,529, + 0,0,1739,1747,5,882,0,0,1740,1741,5,601,0,0,1741,1747,5,882,0,0, + 1742,1743,5,519,0,0,1743,1747,5,882,0,0,1744,1745,5,537,0,0,1745, + 1747,3,722,361,0,1746,1732,1,0,0,0,1746,1734,1,0,0,0,1746,1736,1, + 0,0,0,1746,1738,1,0,0,0,1746,1740,1,0,0,0,1746,1742,1,0,0,0,1746, + 1744,1,0,0,0,1747,85,1,0,0,0,1748,1749,5,866,0,0,1749,1754,3,88, + 44,0,1750,1751,5,868,0,0,1751,1753,3,88,44,0,1752,1750,1,0,0,0,1753, + 1756,1,0,0,0,1754,1752,1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0,0, + 0,1756,1754,1,0,0,0,1757,1758,5,867,0,0,1758,87,1,0,0,0,1759,1760, + 3,668,334,0,1760,1761,3,94,47,0,1761,1843,1,0,0,0,1762,1764,7,19, + 0,0,1763,1765,3,652,326,0,1764,1763,1,0,0,0,1764,1765,1,0,0,0,1765, + 1767,1,0,0,0,1766,1768,3,74,37,0,1767,1766,1,0,0,0,1767,1768,1,0, + 0,0,1768,1769,1,0,0,0,1769,1773,3,748,374,0,1770,1772,3,76,38,0, + 1771,1770,1,0,0,0,1772,1775,1,0,0,0,1773,1771,1,0,0,0,1773,1774, + 1,0,0,0,1774,1843,1,0,0,0,1775,1773,1,0,0,0,1776,1778,7,20,0,0,1777, + 1779,7,19,0,0,1778,1777,1,0,0,0,1778,1779,1,0,0,0,1779,1781,1,0, + 0,0,1780,1782,3,652,326,0,1781,1780,1,0,0,0,1781,1782,1,0,0,0,1782, + 1783,1,0,0,0,1783,1787,3,748,374,0,1784,1786,3,76,38,0,1785,1784, + 1,0,0,0,1786,1789,1,0,0,0,1787,1785,1,0,0,0,1787,1788,1,0,0,0,1788, + 1843,1,0,0,0,1789,1787,1,0,0,0,1790,1792,3,92,46,0,1791,1790,1,0, + 0,0,1791,1792,1,0,0,0,1792,1793,1,0,0,0,1793,1794,5,131,0,0,1794, + 1796,5,92,0,0,1795,1797,3,74,37,0,1796,1795,1,0,0,0,1796,1797,1, + 0,0,0,1797,1798,1,0,0,0,1798,1802,3,748,374,0,1799,1801,3,76,38, + 0,1800,1799,1,0,0,0,1801,1804,1,0,0,0,1802,1800,1,0,0,0,1802,1803, + 1,0,0,0,1803,1843,1,0,0,0,1804,1802,1,0,0,0,1805,1807,3,92,46,0, + 1806,1805,1,0,0,0,1806,1807,1,0,0,0,1807,1808,1,0,0,0,1808,1810, + 5,182,0,0,1809,1811,7,19,0,0,1810,1809,1,0,0,0,1810,1811,1,0,0,0, + 1811,1813,1,0,0,0,1812,1814,3,652,326,0,1813,1812,1,0,0,0,1813,1814, + 1,0,0,0,1814,1816,1,0,0,0,1815,1817,3,74,37,0,1816,1815,1,0,0,0, + 1816,1817,1,0,0,0,1817,1818,1,0,0,0,1818,1822,3,748,374,0,1819,1821, + 3,76,38,0,1820,1819,1,0,0,0,1821,1824,1,0,0,0,1822,1820,1,0,0,0, + 1822,1823,1,0,0,0,1823,1843,1,0,0,0,1824,1822,1,0,0,0,1825,1827, + 3,92,46,0,1826,1825,1,0,0,0,1826,1827,1,0,0,0,1827,1828,1,0,0,0, + 1828,1829,5,67,0,0,1829,1831,5,92,0,0,1830,1832,3,652,326,0,1831, + 1830,1,0,0,0,1831,1832,1,0,0,0,1832,1833,1,0,0,0,1833,1834,3,748, + 374,0,1834,1835,3,98,49,0,1835,1843,1,0,0,0,1836,1837,5,27,0,0,1837, + 1838,5,866,0,0,1838,1839,3,814,407,0,1839,1840,5,867,0,0,1840,1843, + 1,0,0,0,1841,1843,3,90,45,0,1842,1759,1,0,0,0,1842,1762,1,0,0,0, + 1842,1776,1,0,0,0,1842,1791,1,0,0,0,1842,1806,1,0,0,0,1842,1826, + 1,0,0,0,1842,1836,1,0,0,0,1842,1841,1,0,0,0,1843,89,1,0,0,0,1844, + 1846,3,92,46,0,1845,1844,1,0,0,0,1845,1846,1,0,0,0,1846,1847,1,0, + 0,0,1847,1848,5,27,0,0,1848,1849,5,866,0,0,1849,1850,3,814,407,0, + 1850,1855,5,867,0,0,1851,1853,5,114,0,0,1852,1851,1,0,0,0,1852,1853, + 1,0,0,0,1853,1854,1,0,0,0,1854,1856,5,57,0,0,1855,1852,1,0,0,0,1855, + 1856,1,0,0,0,1856,91,1,0,0,0,1857,1859,5,31,0,0,1858,1860,3,716, + 358,0,1859,1858,1,0,0,0,1859,1860,1,0,0,0,1860,93,1,0,0,0,1861,1865, + 3,736,368,0,1862,1864,3,96,48,0,1863,1862,1,0,0,0,1864,1867,1,0, + 0,0,1865,1863,1,0,0,0,1865,1866,1,0,0,0,1866,95,1,0,0,0,1867,1865, + 1,0,0,0,1868,1912,3,732,366,0,1869,1870,5,42,0,0,1870,1912,3,764, + 382,0,1871,1912,5,686,0,0,1872,1912,5,435,0,0,1873,1878,5,315,0, + 0,1874,1875,5,119,0,0,1875,1876,5,185,0,0,1876,1878,3,766,383,0, + 1877,1873,1,0,0,0,1877,1874,1,0,0,0,1878,1912,1,0,0,0,1879,1881, + 5,131,0,0,1880,1879,1,0,0,0,1880,1881,1,0,0,0,1881,1882,1,0,0,0, + 1882,1912,5,92,0,0,1883,1885,5,182,0,0,1884,1886,5,92,0,0,1885,1884, + 1,0,0,0,1885,1886,1,0,0,0,1886,1912,1,0,0,0,1887,1888,5,340,0,0, + 1888,1912,5,882,0,0,1889,1890,5,338,0,0,1890,1912,7,21,0,0,1891, + 1892,5,647,0,0,1892,1912,7,22,0,0,1893,1912,3,98,49,0,1894,1895, + 5,28,0,0,1895,1912,3,700,350,0,1896,1897,5,71,0,0,1897,1899,5,9, + 0,0,1898,1896,1,0,0,0,1898,1899,1,0,0,0,1899,1900,1,0,0,0,1900,1901, + 5,13,0,0,1901,1902,5,866,0,0,1902,1903,3,814,407,0,1903,1905,5,867, + 0,0,1904,1906,7,23,0,0,1905,1904,1,0,0,0,1905,1906,1,0,0,0,1906, + 1912,1,0,0,0,1907,1908,5,241,0,0,1908,1909,5,42,0,0,1909,1912,5, + 682,0,0,1910,1912,3,90,45,0,1911,1868,1,0,0,0,1911,1869,1,0,0,0, + 1911,1871,1,0,0,0,1911,1872,1,0,0,0,1911,1877,1,0,0,0,1911,1880, + 1,0,0,0,1911,1883,1,0,0,0,1911,1887,1,0,0,0,1911,1889,1,0,0,0,1911, + 1891,1,0,0,0,1911,1893,1,0,0,0,1911,1894,1,0,0,0,1911,1898,1,0,0, + 0,1911,1907,1,0,0,0,1911,1910,1,0,0,0,1912,97,1,0,0,0,1913,1914, + 5,138,0,0,1914,1916,3,662,331,0,1915,1917,3,748,374,0,1916,1915, + 1,0,0,0,1916,1917,1,0,0,0,1917,1920,1,0,0,0,1918,1919,5,110,0,0, + 1919,1921,7,24,0,0,1920,1918,1,0,0,0,1920,1921,1,0,0,0,1921,1923, + 1,0,0,0,1922,1924,3,100,50,0,1923,1922,1,0,0,0,1923,1924,1,0,0,0, + 1924,99,1,0,0,0,1925,1926,5,119,0,0,1926,1927,5,44,0,0,1927,1931, + 3,102,51,0,1928,1929,5,119,0,0,1929,1930,5,185,0,0,1930,1932,3,102, + 51,0,1931,1928,1,0,0,0,1931,1932,1,0,0,0,1932,1942,1,0,0,0,1933, + 1934,5,119,0,0,1934,1935,5,185,0,0,1935,1939,3,102,51,0,1936,1937, + 5,119,0,0,1937,1938,5,44,0,0,1938,1940,3,102,51,0,1939,1936,1,0, + 0,0,1939,1940,1,0,0,0,1940,1942,1,0,0,0,1941,1925,1,0,0,0,1941,1933, + 1,0,0,0,1942,101,1,0,0,0,1943,1952,5,146,0,0,1944,1952,5,22,0,0, + 1945,1946,5,155,0,0,1946,1952,5,116,0,0,1947,1948,5,502,0,0,1948, + 1952,5,305,0,0,1949,1950,5,155,0,0,1950,1952,5,42,0,0,1951,1943, + 1,0,0,0,1951,1944,1,0,0,0,1951,1945,1,0,0,0,1951,1947,1,0,0,0,1951, + 1949,1,0,0,0,1952,103,1,0,0,0,1953,1955,5,380,0,0,1954,1956,5,857, + 0,0,1955,1954,1,0,0,0,1955,1956,1,0,0,0,1956,1958,1,0,0,0,1957,1959, + 3,702,351,0,1958,1957,1,0,0,0,1958,1959,1,0,0,0,1959,2139,1,0,0, + 0,1960,1962,5,825,0,0,1961,1963,5,857,0,0,1962,1961,1,0,0,0,1962, + 1963,1,0,0,0,1963,1964,1,0,0,0,1964,2139,5,882,0,0,1965,1967,5,314, + 0,0,1966,1968,5,857,0,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968, + 1969,1,0,0,0,1969,2139,3,722,361,0,1970,1972,5,315,0,0,1971,1973, + 5,857,0,0,1972,1971,1,0,0,0,1972,1973,1,0,0,0,1973,1974,1,0,0,0, + 1974,2139,3,722,361,0,1975,1977,5,316,0,0,1976,1978,5,857,0,0,1977, + 1976,1,0,0,0,1977,1978,1,0,0,0,1978,1979,1,0,0,0,1979,2139,3,722, + 361,0,1980,1982,5,42,0,0,1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982, + 1983,1,0,0,0,1983,1985,3,58,29,0,1984,1986,5,857,0,0,1985,1984,1, + 0,0,0,1985,1986,1,0,0,0,1986,1989,1,0,0,0,1987,1990,3,698,349,0, + 1988,1990,5,42,0,0,1989,1987,1,0,0,0,1989,1988,1,0,0,0,1990,2139, + 1,0,0,0,1991,1993,7,25,0,0,1992,1994,5,857,0,0,1993,1992,1,0,0,0, + 1993,1994,1,0,0,0,1994,1995,1,0,0,0,1995,2139,7,26,0,0,1996,1998, + 5,42,0,0,1997,1996,1,0,0,0,1997,1998,1,0,0,0,1998,1999,1,0,0,0,1999, + 2001,5,28,0,0,2000,2002,5,857,0,0,2001,2000,1,0,0,0,2001,2002,1, + 0,0,0,2002,2003,1,0,0,0,2003,2139,3,700,350,0,2004,2006,5,340,0, + 0,2005,2007,5,857,0,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2008, + 1,0,0,0,2008,2139,5,882,0,0,2009,2011,5,346,0,0,2010,2012,5,857, + 0,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012,2013,1,0,0,0,2013,2139, + 7,27,0,0,2014,2016,5,349,0,0,2015,2017,5,857,0,0,2016,2015,1,0,0, + 0,2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018,2139,5,882,0,0,2019,2020, + 7,28,0,0,2020,2022,5,367,0,0,2021,2023,5,857,0,0,2022,2021,1,0,0, + 0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024,2139,5,882,0,0,2025,2027, + 5,365,0,0,2026,2028,5,857,0,0,2027,2026,1,0,0,0,2027,2028,1,0,0, + 0,2028,2029,1,0,0,0,2029,2139,7,26,0,0,2030,2032,5,376,0,0,2031, + 2033,5,857,0,0,2032,2031,1,0,0,0,2032,2033,1,0,0,0,2033,2034,1,0, + 0,0,2034,2139,5,882,0,0,2035,2037,7,29,0,0,2036,2038,5,857,0,0,2037, + 2036,1,0,0,0,2037,2038,1,0,0,0,2038,2039,1,0,0,0,2039,2139,7,26, + 0,0,2040,2042,7,30,0,0,2041,2043,5,857,0,0,2042,2041,1,0,0,0,2042, + 2043,1,0,0,0,2043,2044,1,0,0,0,2044,2139,3,722,361,0,2045,2047,5, + 377,0,0,2046,2048,5,857,0,0,2047,2046,1,0,0,0,2047,2048,1,0,0,0, + 2048,2049,1,0,0,0,2049,2139,3,722,361,0,2050,2051,5,82,0,0,2051, + 2053,5,367,0,0,2052,2054,5,857,0,0,2053,2052,1,0,0,0,2053,2054,1, + 0,0,0,2054,2055,1,0,0,0,2055,2139,5,882,0,0,2056,2058,5,431,0,0, + 2057,2059,5,857,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2060, + 1,0,0,0,2060,2139,7,31,0,0,2061,2063,5,443,0,0,2062,2064,5,857,0, + 0,2063,2062,1,0,0,0,2063,2064,1,0,0,0,2064,2065,1,0,0,0,2065,2139, + 3,724,362,0,2066,2068,5,480,0,0,2067,2069,5,857,0,0,2068,2067,1, + 0,0,0,2068,2069,1,0,0,0,2069,2070,1,0,0,0,2070,2139,3,722,361,0, + 2071,2073,5,490,0,0,2072,2074,5,857,0,0,2073,2072,1,0,0,0,2073,2074, + 1,0,0,0,2074,2075,1,0,0,0,2075,2139,3,722,361,0,2076,2078,5,520, + 0,0,2077,2079,5,857,0,0,2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079, + 2080,1,0,0,0,2080,2139,7,14,0,0,2081,2083,5,529,0,0,2082,2084,5, + 857,0,0,2083,2082,1,0,0,0,2083,2084,1,0,0,0,2084,2085,1,0,0,0,2085, + 2139,5,882,0,0,2086,2088,5,588,0,0,2087,2089,5,857,0,0,2088,2087, + 1,0,0,0,2088,2089,1,0,0,0,2089,2090,1,0,0,0,2090,2139,7,32,0,0,2091, + 2092,5,640,0,0,2092,2139,5,664,0,0,2093,2095,5,833,0,0,2094,2096, + 5,857,0,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2097,1,0,0,0, + 2097,2139,5,882,0,0,2098,2100,5,642,0,0,2099,2101,5,857,0,0,2100, + 2099,1,0,0,0,2100,2101,1,0,0,0,2101,2102,1,0,0,0,2102,2139,7,14, + 0,0,2103,2105,5,643,0,0,2104,2106,5,857,0,0,2105,2104,1,0,0,0,2105, + 2106,1,0,0,0,2106,2107,1,0,0,0,2107,2139,7,14,0,0,2108,2110,5,644, + 0,0,2109,2111,5,857,0,0,2110,2109,1,0,0,0,2110,2111,1,0,0,0,2111, + 2114,1,0,0,0,2112,2115,5,42,0,0,2113,2115,3,722,361,0,2114,2112, + 1,0,0,0,2114,2113,1,0,0,0,2115,2139,1,0,0,0,2116,2117,5,658,0,0, + 2117,2119,3,676,338,0,2118,2120,3,108,54,0,2119,2118,1,0,0,0,2119, + 2120,1,0,0,0,2120,2139,1,0,0,0,2121,2122,5,659,0,0,2122,2123,5,857, + 0,0,2123,2139,3,106,53,0,2124,2139,3,108,54,0,2125,2127,5,665,0, + 0,2126,2128,5,857,0,0,2127,2126,1,0,0,0,2127,2128,1,0,0,0,2128,2129, + 1,0,0,0,2129,2139,7,26,0,0,2130,2132,5,181,0,0,2131,2133,5,857,0, + 0,2132,2131,1,0,0,0,2132,2133,1,0,0,0,2133,2134,1,0,0,0,2134,2135, + 5,866,0,0,2135,2136,3,660,330,0,2136,2137,5,867,0,0,2137,2139,1, + 0,0,0,2138,1953,1,0,0,0,2138,1960,1,0,0,0,2138,1965,1,0,0,0,2138, + 1970,1,0,0,0,2138,1975,1,0,0,0,2138,1981,1,0,0,0,2138,1991,1,0,0, + 0,2138,1997,1,0,0,0,2138,2004,1,0,0,0,2138,2009,1,0,0,0,2138,2014, + 1,0,0,0,2138,2019,1,0,0,0,2138,2025,1,0,0,0,2138,2030,1,0,0,0,2138, + 2035,1,0,0,0,2138,2040,1,0,0,0,2138,2045,1,0,0,0,2138,2050,1,0,0, + 0,2138,2056,1,0,0,0,2138,2061,1,0,0,0,2138,2066,1,0,0,0,2138,2071, + 1,0,0,0,2138,2076,1,0,0,0,2138,2081,1,0,0,0,2138,2086,1,0,0,0,2138, + 2091,1,0,0,0,2138,2093,1,0,0,0,2138,2098,1,0,0,0,2138,2103,1,0,0, + 0,2138,2108,1,0,0,0,2138,2116,1,0,0,0,2138,2121,1,0,0,0,2138,2124, + 1,0,0,0,2138,2125,1,0,0,0,2138,2130,1,0,0,0,2139,105,1,0,0,0,2140, + 2141,7,33,0,0,2141,107,1,0,0,0,2142,2143,5,647,0,0,2143,2144,7,22, + 0,0,2144,109,1,0,0,0,2145,2146,5,130,0,0,2146,2147,5,20,0,0,2147, + 2150,3,112,56,0,2148,2149,5,528,0,0,2149,2151,3,722,361,0,2150,2148, + 1,0,0,0,2150,2151,1,0,0,0,2151,2159,1,0,0,0,2152,2153,5,652,0,0, + 2153,2154,5,20,0,0,2154,2157,3,114,57,0,2155,2156,5,653,0,0,2156, + 2158,3,722,361,0,2157,2155,1,0,0,0,2157,2158,1,0,0,0,2158,2160,1, + 0,0,0,2159,2152,1,0,0,0,2159,2160,1,0,0,0,2160,2172,1,0,0,0,2161, + 2162,5,866,0,0,2162,2167,3,116,58,0,2163,2164,5,868,0,0,2164,2166, + 3,116,58,0,2165,2163,1,0,0,0,2166,2169,1,0,0,0,2167,2165,1,0,0,0, + 2167,2168,1,0,0,0,2168,2170,1,0,0,0,2169,2167,1,0,0,0,2170,2171, + 5,867,0,0,2171,2173,1,0,0,0,2172,2161,1,0,0,0,2172,2173,1,0,0,0, + 2173,111,1,0,0,0,2174,2176,5,101,0,0,2175,2174,1,0,0,0,2175,2176, + 1,0,0,0,2176,2177,1,0,0,0,2177,2178,5,418,0,0,2178,2179,5,866,0, + 0,2179,2180,3,814,407,0,2180,2181,5,867,0,0,2181,2221,1,0,0,0,2182, + 2184,5,101,0,0,2183,2182,1,0,0,0,2183,2184,1,0,0,0,2184,2185,1,0, + 0,0,2185,2189,5,92,0,0,2186,2187,5,308,0,0,2187,2188,5,857,0,0,2188, + 2190,7,34,0,0,2189,2186,1,0,0,0,2189,2190,1,0,0,0,2190,2191,1,0, + 0,0,2191,2193,5,866,0,0,2192,2194,3,670,335,0,2193,2192,1,0,0,0, + 2193,2194,1,0,0,0,2194,2195,1,0,0,0,2195,2221,5,867,0,0,2196,2206, + 5,134,0,0,2197,2198,5,866,0,0,2198,2199,3,814,407,0,2199,2200,5, + 867,0,0,2200,2207,1,0,0,0,2201,2202,5,337,0,0,2202,2203,5,866,0, + 0,2203,2204,3,670,335,0,2204,2205,5,867,0,0,2205,2207,1,0,0,0,2206, + 2197,1,0,0,0,2206,2201,1,0,0,0,2207,2221,1,0,0,0,2208,2218,5,449, + 0,0,2209,2210,5,866,0,0,2210,2211,3,814,407,0,2211,2212,5,867,0, + 0,2212,2219,1,0,0,0,2213,2214,5,337,0,0,2214,2215,5,866,0,0,2215, + 2216,3,670,335,0,2216,2217,5,867,0,0,2217,2219,1,0,0,0,2218,2209, + 1,0,0,0,2218,2213,1,0,0,0,2219,2221,1,0,0,0,2220,2175,1,0,0,0,2220, + 2183,1,0,0,0,2220,2196,1,0,0,0,2220,2208,1,0,0,0,2221,113,1,0,0, + 0,2222,2224,5,101,0,0,2223,2222,1,0,0,0,2223,2224,1,0,0,0,2224,2225, + 1,0,0,0,2225,2226,5,418,0,0,2226,2227,5,866,0,0,2227,2228,3,814, + 407,0,2228,2229,5,867,0,0,2229,2244,1,0,0,0,2230,2232,5,101,0,0, + 2231,2230,1,0,0,0,2231,2232,1,0,0,0,2232,2233,1,0,0,0,2233,2237, + 5,92,0,0,2234,2235,5,308,0,0,2235,2236,5,857,0,0,2236,2238,7,34, + 0,0,2237,2234,1,0,0,0,2237,2238,1,0,0,0,2238,2239,1,0,0,0,2239,2240, + 5,866,0,0,2240,2241,3,670,335,0,2241,2242,5,867,0,0,2242,2244,1, + 0,0,0,2243,2223,1,0,0,0,2243,2231,1,0,0,0,2244,115,1,0,0,0,2245, + 2246,5,130,0,0,2246,2247,3,682,341,0,2247,2248,5,189,0,0,2248,2249, + 5,447,0,0,2249,2250,5,662,0,0,2250,2251,5,866,0,0,2251,2256,3,118, + 59,0,2252,2253,5,868,0,0,2253,2255,3,118,59,0,2254,2252,1,0,0,0, + 2255,2258,1,0,0,0,2256,2254,1,0,0,0,2256,2257,1,0,0,0,2257,2259, + 1,0,0,0,2258,2256,1,0,0,0,2259,2263,5,867,0,0,2260,2262,3,124,62, + 0,2261,2260,1,0,0,0,2262,2265,1,0,0,0,2263,2261,1,0,0,0,2263,2264, + 1,0,0,0,2264,2277,1,0,0,0,2265,2263,1,0,0,0,2266,2267,5,866,0,0, + 2267,2272,3,122,61,0,2268,2269,5,868,0,0,2269,2271,3,122,61,0,2270, + 2268,1,0,0,0,2271,2274,1,0,0,0,2272,2270,1,0,0,0,2272,2273,1,0,0, + 0,2273,2275,1,0,0,0,2274,2272,1,0,0,0,2275,2276,5,867,0,0,2276,2278, + 1,0,0,0,2277,2266,1,0,0,0,2277,2278,1,0,0,0,2278,2392,1,0,0,0,2279, + 2280,5,130,0,0,2280,2281,3,682,341,0,2281,2282,5,189,0,0,2282,2283, + 5,447,0,0,2283,2284,5,662,0,0,2284,2288,3,118,59,0,2285,2287,3,124, + 62,0,2286,2285,1,0,0,0,2287,2290,1,0,0,0,2288,2286,1,0,0,0,2288, + 2289,1,0,0,0,2289,2302,1,0,0,0,2290,2288,1,0,0,0,2291,2292,5,866, + 0,0,2292,2297,3,122,61,0,2293,2294,5,868,0,0,2294,2296,3,122,61, + 0,2295,2293,1,0,0,0,2296,2299,1,0,0,0,2297,2295,1,0,0,0,2297,2298, + 1,0,0,0,2298,2300,1,0,0,0,2299,2297,1,0,0,0,2300,2301,5,867,0,0, + 2301,2303,1,0,0,0,2302,2291,1,0,0,0,2302,2303,1,0,0,0,2303,2392, + 1,0,0,0,2304,2305,5,130,0,0,2305,2306,3,682,341,0,2306,2307,5,189, + 0,0,2307,2308,5,80,0,0,2308,2309,5,866,0,0,2309,2314,3,118,59,0, + 2310,2311,5,868,0,0,2311,2313,3,118,59,0,2312,2310,1,0,0,0,2313, + 2316,1,0,0,0,2314,2312,1,0,0,0,2314,2315,1,0,0,0,2315,2317,1,0,0, + 0,2316,2314,1,0,0,0,2317,2321,5,867,0,0,2318,2320,3,124,62,0,2319, + 2318,1,0,0,0,2320,2323,1,0,0,0,2321,2319,1,0,0,0,2321,2322,1,0,0, + 0,2322,2335,1,0,0,0,2323,2321,1,0,0,0,2324,2325,5,866,0,0,2325,2330, + 3,122,61,0,2326,2327,5,868,0,0,2327,2329,3,122,61,0,2328,2326,1, + 0,0,0,2329,2332,1,0,0,0,2330,2328,1,0,0,0,2330,2331,1,0,0,0,2331, + 2333,1,0,0,0,2332,2330,1,0,0,0,2333,2334,5,867,0,0,2334,2336,1,0, + 0,0,2335,2324,1,0,0,0,2335,2336,1,0,0,0,2336,2392,1,0,0,0,2337,2338, + 5,130,0,0,2338,2339,3,682,341,0,2339,2340,5,189,0,0,2340,2341,5, + 80,0,0,2341,2342,5,866,0,0,2342,2347,3,120,60,0,2343,2344,5,868, + 0,0,2344,2346,3,120,60,0,2345,2343,1,0,0,0,2346,2349,1,0,0,0,2347, + 2345,1,0,0,0,2347,2348,1,0,0,0,2348,2350,1,0,0,0,2349,2347,1,0,0, + 0,2350,2354,5,867,0,0,2351,2353,3,124,62,0,2352,2351,1,0,0,0,2353, + 2356,1,0,0,0,2354,2352,1,0,0,0,2354,2355,1,0,0,0,2355,2368,1,0,0, + 0,2356,2354,1,0,0,0,2357,2358,5,866,0,0,2358,2363,3,122,61,0,2359, + 2360,5,868,0,0,2360,2362,3,122,61,0,2361,2359,1,0,0,0,2362,2365, + 1,0,0,0,2363,2361,1,0,0,0,2363,2364,1,0,0,0,2364,2366,1,0,0,0,2365, + 2363,1,0,0,0,2366,2367,5,867,0,0,2367,2369,1,0,0,0,2368,2357,1,0, + 0,0,2368,2369,1,0,0,0,2369,2392,1,0,0,0,2370,2371,5,130,0,0,2371, + 2375,3,682,341,0,2372,2374,3,124,62,0,2373,2372,1,0,0,0,2374,2377, + 1,0,0,0,2375,2373,1,0,0,0,2375,2376,1,0,0,0,2376,2389,1,0,0,0,2377, + 2375,1,0,0,0,2378,2379,5,866,0,0,2379,2384,3,122,61,0,2380,2381, + 5,868,0,0,2381,2383,3,122,61,0,2382,2380,1,0,0,0,2383,2386,1,0,0, + 0,2384,2382,1,0,0,0,2384,2385,1,0,0,0,2385,2387,1,0,0,0,2386,2384, + 1,0,0,0,2387,2388,5,867,0,0,2388,2390,1,0,0,0,2389,2378,1,0,0,0, + 2389,2390,1,0,0,0,2390,2392,1,0,0,0,2391,2245,1,0,0,0,2391,2279, + 1,0,0,0,2391,2304,1,0,0,0,2391,2337,1,0,0,0,2391,2370,1,0,0,0,2392, + 117,1,0,0,0,2393,2397,3,734,367,0,2394,2397,3,814,407,0,2395,2397, + 5,111,0,0,2396,2393,1,0,0,0,2396,2394,1,0,0,0,2396,2395,1,0,0,0, + 2397,119,1,0,0,0,2398,2399,5,866,0,0,2399,2402,3,118,59,0,2400,2401, + 5,868,0,0,2401,2403,3,118,59,0,2402,2400,1,0,0,0,2403,2404,1,0,0, + 0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405,2406,1,0,0,0,2406,2407, + 5,867,0,0,2407,121,1,0,0,0,2408,2409,5,652,0,0,2409,2413,3,716,358, + 0,2410,2412,3,124,62,0,2411,2410,1,0,0,0,2412,2415,1,0,0,0,2413, + 2411,1,0,0,0,2413,2414,1,0,0,0,2414,123,1,0,0,0,2415,2413,1,0,0, + 0,2416,2418,5,42,0,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2420, + 1,0,0,0,2419,2421,5,647,0,0,2420,2419,1,0,0,0,2420,2421,1,0,0,0, + 2421,2422,1,0,0,0,2422,2424,5,380,0,0,2423,2425,5,857,0,0,2424,2423, + 1,0,0,0,2424,2425,1,0,0,0,2425,2426,1,0,0,0,2426,2465,3,702,351, + 0,2427,2429,5,340,0,0,2428,2430,5,857,0,0,2429,2428,1,0,0,0,2429, + 2430,1,0,0,0,2430,2431,1,0,0,0,2431,2465,5,882,0,0,2432,2433,5,360, + 0,0,2433,2435,5,367,0,0,2434,2436,5,857,0,0,2435,2434,1,0,0,0,2435, + 2436,1,0,0,0,2436,2437,1,0,0,0,2437,2465,5,882,0,0,2438,2439,5,82, + 0,0,2439,2441,5,367,0,0,2440,2442,5,857,0,0,2441,2440,1,0,0,0,2441, + 2442,1,0,0,0,2442,2443,1,0,0,0,2443,2465,5,882,0,0,2444,2446,5,480, + 0,0,2445,2447,5,857,0,0,2446,2445,1,0,0,0,2446,2447,1,0,0,0,2447, + 2448,1,0,0,0,2448,2465,3,722,361,0,2449,2451,5,490,0,0,2450,2452, + 5,857,0,0,2451,2450,1,0,0,0,2451,2452,1,0,0,0,2452,2453,1,0,0,0, + 2453,2465,3,722,361,0,2454,2456,5,658,0,0,2455,2457,5,857,0,0,2456, + 2455,1,0,0,0,2456,2457,1,0,0,0,2457,2458,1,0,0,0,2458,2465,3,676, + 338,0,2459,2461,5,504,0,0,2460,2462,5,857,0,0,2461,2460,1,0,0,0, + 2461,2462,1,0,0,0,2462,2463,1,0,0,0,2463,2465,3,716,358,0,2464,2417, + 1,0,0,0,2464,2427,1,0,0,0,2464,2432,1,0,0,0,2464,2438,1,0,0,0,2464, + 2444,1,0,0,0,2464,2449,1,0,0,0,2464,2454,1,0,0,0,2464,2459,1,0,0, + 0,2465,125,1,0,0,0,2466,2467,5,8,0,0,2467,2469,7,0,0,0,2468,2470, + 3,638,319,0,2469,2468,1,0,0,0,2469,2470,1,0,0,0,2470,2472,1,0,0, + 0,2471,2473,3,56,28,0,2472,2471,1,0,0,0,2473,2474,1,0,0,0,2474,2472, + 1,0,0,0,2474,2475,1,0,0,0,2475,2485,1,0,0,0,2476,2477,5,8,0,0,2477, + 2478,7,0,0,0,2478,2479,3,638,319,0,2479,2480,5,677,0,0,2480,2481, + 5,360,0,0,2481,2482,5,367,0,0,2482,2483,5,496,0,0,2483,2485,1,0, + 0,0,2484,2466,1,0,0,0,2484,2476,1,0,0,0,2485,127,1,0,0,0,2486,2488, + 5,8,0,0,2487,2489,3,62,31,0,2488,2487,1,0,0,0,2488,2489,1,0,0,0, + 2489,2490,1,0,0,0,2490,2491,5,385,0,0,2491,2495,3,712,356,0,2492, + 2493,5,119,0,0,2493,2494,5,590,0,0,2494,2496,3,64,32,0,2495,2492, + 1,0,0,0,2495,2496,1,0,0,0,2496,2503,1,0,0,0,2497,2498,5,119,0,0, + 2498,2500,5,343,0,0,2499,2501,5,114,0,0,2500,2499,1,0,0,0,2500,2501, + 1,0,0,0,2501,2502,1,0,0,0,2502,2504,5,541,0,0,2503,2497,1,0,0,0, + 2503,2504,1,0,0,0,2504,2508,1,0,0,0,2505,2506,5,141,0,0,2506,2507, + 5,176,0,0,2507,2509,3,712,356,0,2508,2505,1,0,0,0,2508,2509,1,0, + 0,0,2509,2511,1,0,0,0,2510,2512,3,72,36,0,2511,2510,1,0,0,0,2511, + 2512,1,0,0,0,2512,2515,1,0,0,0,2513,2514,5,340,0,0,2514,2516,5,882, + 0,0,2515,2513,1,0,0,0,2515,2516,1,0,0,0,2516,2519,1,0,0,0,2517,2518, + 5,371,0,0,2518,2520,3,432,216,0,2519,2517,1,0,0,0,2519,2520,1,0, + 0,0,2520,129,1,0,0,0,2521,2522,5,8,0,0,2522,2523,5,409,0,0,2523, + 2527,3,642,321,0,2524,2526,3,82,41,0,2525,2524,1,0,0,0,2526,2529, + 1,0,0,0,2527,2525,1,0,0,0,2527,2528,1,0,0,0,2528,131,1,0,0,0,2529, + 2527,1,0,0,0,2530,2531,5,8,0,0,2531,2532,5,433,0,0,2532,2533,5,585, + 0,0,2533,2534,5,801,0,0,2534,2535,5,453,0,0,2535,2536,5,92,0,0,2536, + 133,1,0,0,0,2537,2538,5,8,0,0,2538,2539,5,451,0,0,2539,2540,5,74, + 0,0,2540,2541,3,716,358,0,2541,2542,5,6,0,0,2542,2543,5,671,0,0, + 2543,2549,5,882,0,0,2544,2546,5,428,0,0,2545,2547,5,857,0,0,2546, + 2545,1,0,0,0,2546,2547,1,0,0,0,2547,2548,1,0,0,0,2548,2550,3,724, + 362,0,2549,2544,1,0,0,0,2549,2550,1,0,0,0,2550,2552,1,0,0,0,2551, + 2553,5,687,0,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0,2553,2554,1,0, + 0,0,2554,2556,5,380,0,0,2555,2557,5,857,0,0,2556,2555,1,0,0,0,2556, + 2557,1,0,0,0,2557,2558,1,0,0,0,2558,2559,3,702,351,0,2559,135,1, + 0,0,0,2560,2561,5,8,0,0,2561,2562,5,132,0,0,2562,2566,3,712,356, + 0,2563,2565,3,82,41,0,2564,2563,1,0,0,0,2565,2568,1,0,0,0,2566,2564, + 1,0,0,0,2566,2567,1,0,0,0,2567,137,1,0,0,0,2568,2566,1,0,0,0,2569, + 2570,5,8,0,0,2570,2571,5,592,0,0,2571,2572,3,716,358,0,2572,2573, + 5,518,0,0,2573,2574,5,866,0,0,2574,2579,3,84,42,0,2575,2576,5,868, + 0,0,2576,2578,3,84,42,0,2577,2575,1,0,0,0,2578,2581,1,0,0,0,2579, + 2577,1,0,0,0,2579,2580,1,0,0,0,2580,2582,1,0,0,0,2581,2579,1,0,0, + 0,2582,2583,5,867,0,0,2583,139,1,0,0,0,2584,2585,5,8,0,0,2585,2586, + 5,173,0,0,2586,2595,3,662,331,0,2587,2592,3,146,73,0,2588,2589,5, + 868,0,0,2589,2591,3,146,73,0,2590,2588,1,0,0,0,2591,2594,1,0,0,0, + 2592,2590,1,0,0,0,2592,2593,1,0,0,0,2593,2596,1,0,0,0,2594,2592, + 1,0,0,0,2595,2587,1,0,0,0,2595,2596,1,0,0,0,2596,2604,1,0,0,0,2597, + 2601,3,148,74,0,2598,2600,3,148,74,0,2599,2598,1,0,0,0,2600,2603, + 1,0,0,0,2601,2599,1,0,0,0,2601,2602,1,0,0,0,2602,2605,1,0,0,0,2603, + 2601,1,0,0,0,2604,2597,1,0,0,0,2604,2605,1,0,0,0,2605,141,1,0,0, + 0,2606,2608,5,8,0,0,2607,2609,5,180,0,0,2608,2607,1,0,0,0,2608,2609, + 1,0,0,0,2609,2610,1,0,0,0,2610,2611,5,658,0,0,2611,2612,3,676,338, + 0,2612,2613,7,35,0,0,2613,2614,5,361,0,0,2614,2620,5,882,0,0,2615, + 2617,5,428,0,0,2616,2618,5,857,0,0,2617,2616,1,0,0,0,2617,2618,1, + 0,0,0,2618,2619,1,0,0,0,2619,2621,3,724,362,0,2620,2615,1,0,0,0, + 2620,2621,1,0,0,0,2621,2623,1,0,0,0,2622,2624,5,687,0,0,2623,2622, + 1,0,0,0,2623,2624,1,0,0,0,2624,2628,1,0,0,0,2625,2626,5,141,0,0, + 2626,2627,5,176,0,0,2627,2629,3,674,337,0,2628,2625,1,0,0,0,2628, + 2629,1,0,0,0,2629,2635,1,0,0,0,2630,2632,5,314,0,0,2631,2633,5,857, + 0,0,2632,2631,1,0,0,0,2632,2633,1,0,0,0,2633,2634,1,0,0,0,2634,2636, + 3,724,362,0,2635,2630,1,0,0,0,2635,2636,1,0,0,0,2636,2639,1,0,0, + 0,2637,2638,5,155,0,0,2638,2640,7,36,0,0,2639,2637,1,0,0,0,2639, + 2640,1,0,0,0,2640,2646,1,0,0,0,2641,2643,5,376,0,0,2642,2644,5,857, + 0,0,2643,2642,1,0,0,0,2643,2644,1,0,0,0,2644,2645,1,0,0,0,2645,2647, + 5,882,0,0,2646,2641,1,0,0,0,2646,2647,1,0,0,0,2647,2653,1,0,0,0, + 2648,2650,5,380,0,0,2649,2651,5,857,0,0,2650,2649,1,0,0,0,2650,2651, + 1,0,0,0,2651,2652,1,0,0,0,2652,2654,3,702,351,0,2653,2648,1,0,0, + 0,2653,2654,1,0,0,0,2654,2660,1,0,0,0,2655,2657,5,825,0,0,2656,2658, + 5,857,0,0,2657,2656,1,0,0,0,2657,2658,1,0,0,0,2658,2659,1,0,0,0, + 2659,2661,5,882,0,0,2660,2655,1,0,0,0,2660,2661,1,0,0,0,2661,143, + 1,0,0,0,2662,2666,5,8,0,0,2663,2664,5,308,0,0,2664,2665,5,857,0, + 0,2665,2667,7,11,0,0,2666,2663,1,0,0,0,2666,2667,1,0,0,0,2667,2669, + 1,0,0,0,2668,2670,3,62,31,0,2669,2668,1,0,0,0,2669,2670,1,0,0,0, + 2670,2674,1,0,0,0,2671,2672,5,162,0,0,2672,2673,5,591,0,0,2673,2675, + 7,12,0,0,2674,2671,1,0,0,0,2674,2675,1,0,0,0,2675,2676,1,0,0,0,2676, + 2677,5,684,0,0,2677,2682,3,646,323,0,2678,2679,5,866,0,0,2679,2680, + 3,670,335,0,2680,2681,5,867,0,0,2681,2683,1,0,0,0,2682,2678,1,0, + 0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2685,5,13,0,0,2685, + 2692,3,210,105,0,2686,2688,5,194,0,0,2687,2689,7,13,0,0,2688,2687, + 1,0,0,0,2688,2689,1,0,0,0,2689,2690,1,0,0,0,2690,2691,5,27,0,0,2691, + 2693,5,121,0,0,2692,2686,1,0,0,0,2692,2693,1,0,0,0,2693,145,1,0, + 0,0,2694,2701,3,104,52,0,2695,2697,5,868,0,0,2696,2695,1,0,0,0,2696, + 2697,1,0,0,0,2697,2698,1,0,0,0,2698,2700,3,104,52,0,2699,2696,1, + 0,0,0,2700,2703,1,0,0,0,2701,2699,1,0,0,0,2701,2702,1,0,0,0,2702, + 2959,1,0,0,0,2703,2701,1,0,0,0,2704,2706,5,6,0,0,2705,2707,5,29, + 0,0,2706,2705,1,0,0,0,2706,2707,1,0,0,0,2707,2708,1,0,0,0,2708,2709, + 3,672,336,0,2709,2713,3,94,47,0,2710,2714,5,402,0,0,2711,2712,5, + 306,0,0,2712,2714,3,672,336,0,2713,2710,1,0,0,0,2713,2711,1,0,0, + 0,2713,2714,1,0,0,0,2714,2959,1,0,0,0,2715,2717,5,6,0,0,2716,2718, + 5,29,0,0,2717,2716,1,0,0,0,2717,2718,1,0,0,0,2718,2719,1,0,0,0,2719, + 2720,5,866,0,0,2720,2721,3,672,336,0,2721,2728,3,94,47,0,2722,2723, + 5,868,0,0,2723,2724,3,672,336,0,2724,2725,3,94,47,0,2725,2727,1, + 0,0,0,2726,2722,1,0,0,0,2727,2730,1,0,0,0,2728,2726,1,0,0,0,2728, + 2729,1,0,0,0,2729,2731,1,0,0,0,2730,2728,1,0,0,0,2731,2732,5,867, + 0,0,2732,2959,1,0,0,0,2733,2734,5,6,0,0,2734,2736,7,19,0,0,2735, + 2737,3,652,326,0,2736,2735,1,0,0,0,2736,2737,1,0,0,0,2737,2739,1, + 0,0,0,2738,2740,3,74,37,0,2739,2738,1,0,0,0,2739,2740,1,0,0,0,2740, + 2741,1,0,0,0,2741,2745,3,748,374,0,2742,2744,3,76,38,0,2743,2742, + 1,0,0,0,2744,2747,1,0,0,0,2745,2743,1,0,0,0,2745,2746,1,0,0,0,2746, + 2959,1,0,0,0,2747,2745,1,0,0,0,2748,2749,5,6,0,0,2749,2751,7,20, + 0,0,2750,2752,7,19,0,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752, + 2754,1,0,0,0,2753,2755,3,652,326,0,2754,2753,1,0,0,0,2754,2755,1, + 0,0,0,2755,2756,1,0,0,0,2756,2760,3,748,374,0,2757,2759,3,76,38, + 0,2758,2757,1,0,0,0,2759,2762,1,0,0,0,2760,2758,1,0,0,0,2760,2761, + 1,0,0,0,2761,2959,1,0,0,0,2762,2760,1,0,0,0,2763,2768,5,6,0,0,2764, + 2766,5,31,0,0,2765,2767,3,716,358,0,2766,2765,1,0,0,0,2766,2767, + 1,0,0,0,2767,2769,1,0,0,0,2768,2764,1,0,0,0,2768,2769,1,0,0,0,2769, + 2770,1,0,0,0,2770,2771,5,131,0,0,2771,2773,5,92,0,0,2772,2774,3, + 74,37,0,2773,2772,1,0,0,0,2773,2774,1,0,0,0,2774,2775,1,0,0,0,2775, + 2779,3,748,374,0,2776,2778,3,76,38,0,2777,2776,1,0,0,0,2778,2781, + 1,0,0,0,2779,2777,1,0,0,0,2779,2780,1,0,0,0,2780,2959,1,0,0,0,2781, + 2779,1,0,0,0,2782,2787,5,6,0,0,2783,2785,5,31,0,0,2784,2786,3,716, + 358,0,2785,2784,1,0,0,0,2785,2786,1,0,0,0,2786,2788,1,0,0,0,2787, + 2783,1,0,0,0,2787,2788,1,0,0,0,2788,2789,1,0,0,0,2789,2791,5,182, + 0,0,2790,2792,7,19,0,0,2791,2790,1,0,0,0,2791,2792,1,0,0,0,2792, + 2794,1,0,0,0,2793,2795,3,652,326,0,2794,2793,1,0,0,0,2794,2795,1, + 0,0,0,2795,2797,1,0,0,0,2796,2798,3,74,37,0,2797,2796,1,0,0,0,2797, + 2798,1,0,0,0,2798,2799,1,0,0,0,2799,2803,3,748,374,0,2800,2802,3, + 76,38,0,2801,2800,1,0,0,0,2802,2805,1,0,0,0,2803,2801,1,0,0,0,2803, + 2804,1,0,0,0,2804,2959,1,0,0,0,2805,2803,1,0,0,0,2806,2811,5,6,0, + 0,2807,2809,5,31,0,0,2808,2810,3,716,358,0,2809,2808,1,0,0,0,2809, + 2810,1,0,0,0,2810,2812,1,0,0,0,2811,2807,1,0,0,0,2811,2812,1,0,0, + 0,2812,2813,1,0,0,0,2813,2814,5,67,0,0,2814,2816,5,92,0,0,2815,2817, + 3,652,326,0,2816,2815,1,0,0,0,2816,2817,1,0,0,0,2817,2818,1,0,0, + 0,2818,2819,3,748,374,0,2819,2820,3,98,49,0,2820,2959,1,0,0,0,2821, + 2823,5,6,0,0,2822,2824,3,90,45,0,2823,2822,1,0,0,0,2823,2824,1,0, + 0,0,2824,2959,1,0,0,0,2825,2826,5,51,0,0,2826,2827,7,37,0,0,2827, + 2959,3,716,358,0,2828,2829,5,8,0,0,2829,2830,7,37,0,0,2830,2832, + 3,716,358,0,2831,2833,5,114,0,0,2832,2831,1,0,0,0,2832,2833,1,0, + 0,0,2833,2835,1,0,0,0,2834,2836,5,57,0,0,2835,2834,1,0,0,0,2835, + 2836,1,0,0,0,2836,2959,1,0,0,0,2837,2839,5,308,0,0,2838,2840,5,857, + 0,0,2839,2838,1,0,0,0,2839,2840,1,0,0,0,2840,2841,1,0,0,0,2841,2959, + 7,38,0,0,2842,2844,5,8,0,0,2843,2845,5,29,0,0,2844,2843,1,0,0,0, + 2844,2845,1,0,0,0,2845,2846,1,0,0,0,2846,2854,3,672,336,0,2847,2848, + 5,155,0,0,2848,2849,5,42,0,0,2849,2855,3,764,382,0,2850,2851,5,155, + 0,0,2851,2855,7,17,0,0,2852,2853,5,51,0,0,2853,2855,5,42,0,0,2854, + 2847,1,0,0,0,2854,2850,1,0,0,0,2854,2852,1,0,0,0,2855,2959,1,0,0, + 0,2856,2857,5,8,0,0,2857,2858,5,82,0,0,2858,2859,3,652,326,0,2859, + 2860,7,17,0,0,2860,2959,1,0,0,0,2861,2863,5,25,0,0,2862,2864,5,29, + 0,0,2863,2862,1,0,0,0,2863,2864,1,0,0,0,2864,2865,1,0,0,0,2865,2866, + 3,672,336,0,2866,2867,3,668,334,0,2867,2871,3,94,47,0,2868,2872, + 5,402,0,0,2869,2870,5,306,0,0,2870,2872,3,672,336,0,2871,2868,1, + 0,0,0,2871,2869,1,0,0,0,2871,2872,1,0,0,0,2872,2959,1,0,0,0,2873, + 2875,5,42,0,0,2874,2873,1,0,0,0,2874,2875,1,0,0,0,2875,2876,1,0, + 0,0,2876,2877,5,26,0,0,2877,2878,5,155,0,0,2878,2879,5,857,0,0,2879, + 2885,3,698,349,0,2880,2882,5,28,0,0,2881,2883,5,857,0,0,2882,2881, + 1,0,0,0,2882,2883,1,0,0,0,2883,2884,1,0,0,0,2884,2886,3,700,350, + 0,2885,2880,1,0,0,0,2885,2886,1,0,0,0,2886,2959,1,0,0,0,2887,2888, + 5,33,0,0,2888,2892,5,176,0,0,2889,2893,5,823,0,0,2890,2891,5,26, + 0,0,2891,2893,5,155,0,0,2892,2889,1,0,0,0,2892,2890,1,0,0,0,2893, + 2894,1,0,0,0,2894,2897,3,698,349,0,2895,2896,5,28,0,0,2896,2898, + 3,700,350,0,2897,2895,1,0,0,0,2897,2898,1,0,0,0,2898,2959,1,0,0, + 0,2899,2900,7,39,0,0,2900,2959,5,93,0,0,2901,2902,7,40,0,0,2902, + 2959,5,658,0,0,2903,2905,5,51,0,0,2904,2906,5,29,0,0,2905,2904,1, + 0,0,0,2905,2906,1,0,0,0,2906,2907,1,0,0,0,2907,2959,3,672,336,0, + 2908,2909,5,51,0,0,2909,2910,7,19,0,0,2910,2959,3,652,326,0,2911, + 2912,5,51,0,0,2912,2913,5,131,0,0,2913,2959,5,92,0,0,2914,2915,5, + 51,0,0,2915,2916,5,67,0,0,2916,2917,5,92,0,0,2917,2959,3,716,358, + 0,2918,2959,5,66,0,0,2919,2921,5,104,0,0,2920,2922,5,857,0,0,2921, + 2920,1,0,0,0,2921,2922,1,0,0,0,2922,2923,1,0,0,0,2923,2959,7,4,0, + 0,2924,2926,5,492,0,0,2925,2927,5,29,0,0,2926,2925,1,0,0,0,2926, + 2927,1,0,0,0,2927,2928,1,0,0,0,2928,2929,3,672,336,0,2929,2933,3, + 94,47,0,2930,2934,5,402,0,0,2931,2932,5,306,0,0,2932,2934,3,672, + 336,0,2933,2930,1,0,0,0,2933,2931,1,0,0,0,2933,2934,1,0,0,0,2934, + 2959,1,0,0,0,2935,2936,5,125,0,0,2936,2937,5,20,0,0,2937,2959,3, + 670,335,0,2938,2939,5,141,0,0,2939,2940,5,29,0,0,2940,2941,3,672, + 336,0,2941,2942,5,176,0,0,2942,2943,3,668,334,0,2943,2959,1,0,0, + 0,2944,2945,5,141,0,0,2945,2946,7,19,0,0,2946,2947,3,652,326,0,2947, + 2948,5,176,0,0,2948,2949,3,648,324,0,2949,2959,1,0,0,0,2950,2952, + 5,141,0,0,2951,2953,7,41,0,0,2952,2951,1,0,0,0,2952,2953,1,0,0,0, + 2953,2954,1,0,0,0,2954,2959,3,658,329,0,2955,2956,7,42,0,0,2956, + 2959,5,681,0,0,2957,2959,3,148,74,0,2958,2694,1,0,0,0,2958,2704, + 1,0,0,0,2958,2715,1,0,0,0,2958,2733,1,0,0,0,2958,2748,1,0,0,0,2958, + 2763,1,0,0,0,2958,2782,1,0,0,0,2958,2806,1,0,0,0,2958,2821,1,0,0, + 0,2958,2825,1,0,0,0,2958,2828,1,0,0,0,2958,2837,1,0,0,0,2958,2842, + 1,0,0,0,2958,2856,1,0,0,0,2958,2861,1,0,0,0,2958,2874,1,0,0,0,2958, + 2887,1,0,0,0,2958,2899,1,0,0,0,2958,2901,1,0,0,0,2958,2903,1,0,0, + 0,2958,2908,1,0,0,0,2958,2911,1,0,0,0,2958,2914,1,0,0,0,2958,2918, + 1,0,0,0,2958,2919,1,0,0,0,2958,2924,1,0,0,0,2958,2935,1,0,0,0,2958, + 2938,1,0,0,0,2958,2944,1,0,0,0,2958,2950,1,0,0,0,2958,2955,1,0,0, + 0,2958,2957,1,0,0,0,2959,147,1,0,0,0,2960,2961,5,6,0,0,2961,2962, + 5,130,0,0,2962,2963,5,866,0,0,2963,2968,3,116,58,0,2964,2965,5,868, + 0,0,2965,2967,3,116,58,0,2966,2964,1,0,0,0,2967,2970,1,0,0,0,2968, + 2966,1,0,0,0,2968,2969,1,0,0,0,2969,2971,1,0,0,0,2970,2968,1,0,0, + 0,2971,2972,5,867,0,0,2972,3059,1,0,0,0,2973,2974,5,51,0,0,2974, + 2975,5,130,0,0,2975,3059,3,680,340,0,2976,2977,5,369,0,0,2977,2980, + 5,130,0,0,2978,2981,3,680,340,0,2979,2981,5,7,0,0,2980,2978,1,0, + 0,0,2980,2979,1,0,0,0,2981,2982,1,0,0,0,2982,3059,5,658,0,0,2983, + 2984,5,425,0,0,2984,2987,5,130,0,0,2985,2988,3,680,340,0,2986,2988, + 5,7,0,0,2987,2985,1,0,0,0,2987,2986,1,0,0,0,2988,2989,1,0,0,0,2989, + 3059,5,658,0,0,2990,2991,5,668,0,0,2991,2994,5,130,0,0,2992,2995, + 3,680,340,0,2993,2995,5,7,0,0,2994,2992,1,0,0,0,2994,2993,1,0,0, + 0,2995,3059,1,0,0,0,2996,2997,5,335,0,0,2997,2998,5,130,0,0,2998, + 3059,3,722,361,0,2999,3000,5,561,0,0,3000,3001,5,130,0,0,3001,3002, + 3,680,340,0,3002,3003,5,88,0,0,3003,3004,5,866,0,0,3004,3009,3,116, + 58,0,3005,3006,5,868,0,0,3006,3008,3,116,58,0,3007,3005,1,0,0,0, + 3008,3011,1,0,0,0,3009,3007,1,0,0,0,3009,3010,1,0,0,0,3010,3012, + 1,0,0,0,3011,3009,1,0,0,0,3012,3013,5,867,0,0,3013,3059,1,0,0,0, + 3014,3015,5,388,0,0,3015,3016,5,130,0,0,3016,3017,3,682,341,0,3017, + 3018,5,194,0,0,3018,3019,5,173,0,0,3019,3022,3,662,331,0,3020,3021, + 7,42,0,0,3021,3023,5,681,0,0,3022,3020,1,0,0,0,3022,3023,1,0,0,0, + 3023,3059,1,0,0,0,3024,3025,5,10,0,0,3025,3028,5,130,0,0,3026,3029, + 3,680,340,0,3027,3029,5,7,0,0,3028,3026,1,0,0,0,3028,3027,1,0,0, + 0,3029,3059,1,0,0,0,3030,3031,5,27,0,0,3031,3034,5,130,0,0,3032, + 3035,3,680,340,0,3033,3035,5,7,0,0,3034,3032,1,0,0,0,3034,3033,1, + 0,0,0,3035,3059,1,0,0,0,3036,3037,5,120,0,0,3037,3040,5,130,0,0, + 3038,3041,3,680,340,0,3039,3041,5,7,0,0,3040,3038,1,0,0,0,3040,3039, + 1,0,0,0,3041,3059,1,0,0,0,3042,3043,5,550,0,0,3043,3046,5,130,0, + 0,3044,3047,3,680,340,0,3045,3047,5,7,0,0,3046,3044,1,0,0,0,3046, + 3045,1,0,0,0,3047,3059,1,0,0,0,3048,3049,5,562,0,0,3049,3052,5,130, + 0,0,3050,3053,3,680,340,0,3051,3053,5,7,0,0,3052,3050,1,0,0,0,3052, + 3051,1,0,0,0,3053,3059,1,0,0,0,3054,3055,5,560,0,0,3055,3059,5,527, + 0,0,3056,3057,5,677,0,0,3057,3059,5,527,0,0,3058,2960,1,0,0,0,3058, + 2973,1,0,0,0,3058,2976,1,0,0,0,3058,2983,1,0,0,0,3058,2990,1,0,0, + 0,3058,2996,1,0,0,0,3058,2999,1,0,0,0,3058,3014,1,0,0,0,3058,3024, + 1,0,0,0,3058,3030,1,0,0,0,3058,3036,1,0,0,0,3058,3042,1,0,0,0,3058, + 3048,1,0,0,0,3058,3054,1,0,0,0,3058,3056,1,0,0,0,3059,149,1,0,0, + 0,3060,3061,5,51,0,0,3061,3063,7,0,0,0,3062,3064,3,768,384,0,3063, + 3062,1,0,0,0,3063,3064,1,0,0,0,3064,3065,1,0,0,0,3065,3066,3,638, + 319,0,3066,151,1,0,0,0,3067,3068,5,51,0,0,3068,3070,5,385,0,0,3069, + 3071,3,768,384,0,3070,3069,1,0,0,0,3070,3071,1,0,0,0,3071,3072,1, + 0,0,0,3072,3073,3,712,356,0,3073,153,1,0,0,0,3074,3075,5,51,0,0, + 3075,3077,5,82,0,0,3076,3078,7,1,0,0,3077,3076,1,0,0,0,3077,3078, + 1,0,0,0,3078,3079,1,0,0,0,3079,3080,3,652,326,0,3080,3081,5,119, + 0,0,3081,3094,3,662,331,0,3082,3084,5,308,0,0,3083,3085,5,857,0, + 0,3084,3083,1,0,0,0,3084,3085,1,0,0,0,3085,3086,1,0,0,0,3086,3093, + 7,3,0,0,3087,3089,5,104,0,0,3088,3090,5,857,0,0,3089,3088,1,0,0, + 0,3089,3090,1,0,0,0,3090,3091,1,0,0,0,3091,3093,7,4,0,0,3092,3082, + 1,0,0,0,3092,3087,1,0,0,0,3093,3096,1,0,0,0,3094,3092,1,0,0,0,3094, + 3095,1,0,0,0,3095,155,1,0,0,0,3096,3094,1,0,0,0,3097,3098,5,51,0, + 0,3098,3099,5,451,0,0,3099,3100,5,74,0,0,3100,3101,3,716,358,0,3101, + 3103,5,380,0,0,3102,3104,5,857,0,0,3103,3102,1,0,0,0,3103,3104,1, + 0,0,0,3104,3105,1,0,0,0,3105,3106,3,702,351,0,3106,157,1,0,0,0,3107, + 3108,5,51,0,0,3108,3110,5,132,0,0,3109,3111,3,768,384,0,3110,3109, + 1,0,0,0,3110,3111,1,0,0,0,3111,3112,1,0,0,0,3112,3113,3,712,356, + 0,3113,159,1,0,0,0,3114,3115,5,51,0,0,3115,3117,5,409,0,0,3116,3118, + 3,768,384,0,3117,3116,1,0,0,0,3117,3118,1,0,0,0,3118,3119,1,0,0, + 0,3119,3120,3,642,321,0,3120,161,1,0,0,0,3121,3122,5,51,0,0,3122, + 3124,5,592,0,0,3123,3125,3,768,384,0,3124,3123,1,0,0,0,3124,3125, + 1,0,0,0,3125,3126,1,0,0,0,3126,3127,3,716,358,0,3127,163,1,0,0,0, + 3128,3129,5,51,0,0,3129,3130,5,161,0,0,3130,3131,5,137,0,0,3131, + 3133,5,835,0,0,3132,3134,3,768,384,0,3133,3132,1,0,0,0,3133,3134, + 1,0,0,0,3134,3135,1,0,0,0,3135,3136,5,883,0,0,3136,165,1,0,0,0,3137, + 3139,5,51,0,0,3138,3140,5,660,0,0,3139,3138,1,0,0,0,3139,3140,1, + 0,0,0,3140,3141,1,0,0,0,3141,3143,5,173,0,0,3142,3144,3,768,384, + 0,3143,3142,1,0,0,0,3143,3144,1,0,0,0,3144,3145,1,0,0,0,3145,3147, + 3,660,330,0,3146,3148,7,43,0,0,3147,3146,1,0,0,0,3147,3148,1,0,0, + 0,3148,167,1,0,0,0,3149,3151,5,51,0,0,3150,3152,5,180,0,0,3151,3150, + 1,0,0,0,3151,3152,1,0,0,0,3152,3153,1,0,0,0,3153,3154,5,658,0,0, + 3154,3160,3,676,338,0,3155,3157,5,380,0,0,3156,3158,5,857,0,0,3157, + 3156,1,0,0,0,3157,3158,1,0,0,0,3158,3159,1,0,0,0,3159,3161,3,702, + 351,0,3160,3155,1,0,0,0,3160,3161,1,0,0,0,3161,169,1,0,0,0,3162, + 3163,5,51,0,0,3163,3165,5,178,0,0,3164,3166,3,768,384,0,3165,3164, + 1,0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3168,3,712,356, + 0,3168,171,1,0,0,0,3169,3170,5,51,0,0,3170,3172,5,684,0,0,3171,3173, + 3,768,384,0,3172,3171,1,0,0,0,3172,3173,1,0,0,0,3173,3174,1,0,0, + 0,3174,3179,3,646,323,0,3175,3176,5,868,0,0,3176,3178,3,646,323, + 0,3177,3175,1,0,0,0,3178,3181,1,0,0,0,3179,3177,1,0,0,0,3179,3180, + 1,0,0,0,3180,3183,1,0,0,0,3181,3179,1,0,0,0,3182,3184,7,43,0,0,3183, + 3182,1,0,0,0,3183,3184,1,0,0,0,3184,173,1,0,0,0,3185,3186,5,51,0, + 0,3186,3188,5,582,0,0,3187,3189,3,768,384,0,3188,3187,1,0,0,0,3188, + 3189,1,0,0,0,3189,3190,1,0,0,0,3190,3191,3,664,332,0,3191,175,1, + 0,0,0,3192,3193,5,155,0,0,3193,3194,5,42,0,0,3194,3198,5,582,0,0, + 3195,3199,5,505,0,0,3196,3199,5,7,0,0,3197,3199,3,664,332,0,3198, + 3195,1,0,0,0,3198,3196,1,0,0,0,3198,3197,1,0,0,0,3199,3200,1,0,0, + 0,3200,3201,5,176,0,0,3201,3206,3,666,333,0,3202,3203,5,868,0,0, + 3203,3205,3,666,333,0,3204,3202,1,0,0,0,3205,3208,1,0,0,0,3206,3204, + 1,0,0,0,3206,3207,1,0,0,0,3207,3213,1,0,0,0,3208,3206,1,0,0,0,3209, + 3210,5,155,0,0,3210,3211,5,582,0,0,3211,3213,3,478,239,0,3212,3192, + 1,0,0,0,3212,3209,1,0,0,0,3213,177,1,0,0,0,3214,3215,5,141,0,0,3215, + 3216,5,173,0,0,3216,3221,3,180,90,0,3217,3218,5,868,0,0,3218,3220, + 3,180,90,0,3219,3217,1,0,0,0,3220,3223,1,0,0,0,3221,3219,1,0,0,0, + 3221,3222,1,0,0,0,3222,179,1,0,0,0,3223,3221,1,0,0,0,3224,3225,3, + 662,331,0,3225,3226,5,176,0,0,3226,3227,3,658,329,0,3227,181,1,0, + 0,0,3228,3230,5,668,0,0,3229,3231,5,173,0,0,3230,3229,1,0,0,0,3230, + 3231,1,0,0,0,3231,3232,1,0,0,0,3232,3233,3,662,331,0,3233,183,1, + 0,0,0,3234,3235,5,21,0,0,3235,3242,3,712,356,0,3236,3239,5,866,0, + 0,3237,3240,3,758,379,0,3238,3240,3,750,375,0,3239,3237,1,0,0,0, + 3239,3238,1,0,0,0,3239,3240,1,0,0,0,3240,3241,1,0,0,0,3241,3243, + 5,867,0,0,3242,3236,1,0,0,0,3242,3243,1,0,0,0,3243,185,1,0,0,0,3244, + 3247,3,240,120,0,3245,3247,3,242,121,0,3246,3244,1,0,0,0,3246,3245, + 1,0,0,0,3247,187,1,0,0,0,3248,3249,5,371,0,0,3249,3250,3,750,375, + 0,3250,189,1,0,0,0,3251,3256,3,244,122,0,3252,3256,3,246,123,0,3253, + 3256,3,248,124,0,3254,3256,3,250,125,0,3255,3251,1,0,0,0,3255,3252, + 1,0,0,0,3255,3253,1,0,0,0,3255,3254,1,0,0,0,3256,191,1,0,0,0,3257, + 3259,5,86,0,0,3258,3260,7,44,0,0,3259,3258,1,0,0,0,3259,3260,1,0, + 0,0,3260,3262,1,0,0,0,3261,3263,5,79,0,0,3262,3261,1,0,0,0,3262, + 3263,1,0,0,0,3263,3265,1,0,0,0,3264,3266,5,88,0,0,3265,3264,1,0, + 0,0,3265,3266,1,0,0,0,3266,3267,1,0,0,0,3267,3274,3,662,331,0,3268, + 3269,5,130,0,0,3269,3271,5,866,0,0,3270,3272,3,680,340,0,3271,3270, + 1,0,0,0,3271,3272,1,0,0,0,3272,3273,1,0,0,0,3273,3275,5,867,0,0, + 3274,3268,1,0,0,0,3274,3275,1,0,0,0,3275,3287,1,0,0,0,3276,3278, + 3,270,135,0,3277,3276,1,0,0,0,3277,3278,1,0,0,0,3278,3281,1,0,0, + 0,3279,3282,3,752,376,0,3280,3282,3,196,98,0,3281,3279,1,0,0,0,3281, + 3280,1,0,0,0,3281,3282,1,0,0,0,3282,3284,1,0,0,0,3283,3285,3,194, + 97,0,3284,3283,1,0,0,0,3284,3285,1,0,0,0,3285,3288,1,0,0,0,3286, + 3288,3,232,116,0,3287,3277,1,0,0,0,3287,3286,1,0,0,0,3288,3290,1, + 0,0,0,3289,3291,3,194,97,0,3290,3289,1,0,0,0,3290,3291,1,0,0,0,3291, + 3304,1,0,0,0,3292,3293,5,119,0,0,3293,3294,5,373,0,0,3294,3295,5, + 92,0,0,3295,3296,5,185,0,0,3296,3301,3,234,117,0,3297,3298,5,868, + 0,0,3298,3300,3,234,117,0,3299,3297,1,0,0,0,3300,3303,1,0,0,0,3301, + 3299,1,0,0,0,3301,3302,1,0,0,0,3302,3305,1,0,0,0,3303,3301,1,0,0, + 0,3304,3292,1,0,0,0,3304,3305,1,0,0,0,3305,193,1,0,0,0,3306,3307, + 5,13,0,0,3307,3309,3,716,358,0,3308,3310,3,270,135,0,3309,3308,1, + 0,0,0,3309,3310,1,0,0,0,3310,195,1,0,0,0,3311,3316,3,210,105,0,3312, + 3313,5,173,0,0,3313,3316,3,662,331,0,3314,3316,3,230,115,0,3315, + 3311,1,0,0,0,3315,3312,1,0,0,0,3315,3314,1,0,0,0,3316,197,1,0,0, + 0,3317,3323,3,200,100,0,3318,3320,5,828,0,0,3319,3321,7,45,0,0,3320, + 3319,1,0,0,0,3320,3321,1,0,0,0,3321,3322,1,0,0,0,3322,3324,3,200, + 100,0,3323,3318,1,0,0,0,3324,3325,1,0,0,0,3325,3323,1,0,0,0,3325, + 3326,1,0,0,0,3326,199,1,0,0,0,3327,3329,5,866,0,0,3328,3327,1,0, + 0,0,3328,3329,1,0,0,0,3329,3330,1,0,0,0,3330,3332,3,282,141,0,3331, + 3333,5,867,0,0,3332,3331,1,0,0,0,3332,3333,1,0,0,0,3333,201,1,0, + 0,0,3334,3335,5,103,0,0,3335,3337,5,360,0,0,3336,3338,7,46,0,0,3337, + 3336,1,0,0,0,3337,3338,1,0,0,0,3338,3340,1,0,0,0,3339,3341,5,450, + 0,0,3340,3339,1,0,0,0,3340,3341,1,0,0,0,3341,3342,1,0,0,0,3342,3343, + 5,83,0,0,3343,3345,5,882,0,0,3344,3346,7,7,0,0,3345,3344,1,0,0,0, + 3345,3346,1,0,0,0,3346,3347,1,0,0,0,3347,3348,5,88,0,0,3348,3349, + 5,173,0,0,3349,3355,3,662,331,0,3350,3351,5,130,0,0,3351,3352,5, + 866,0,0,3352,3353,3,680,340,0,3353,3354,5,867,0,0,3354,3356,1,0, + 0,0,3355,3350,1,0,0,0,3355,3356,1,0,0,0,3356,3360,1,0,0,0,3357,3358, + 5,26,0,0,3358,3359,5,155,0,0,3359,3361,3,698,349,0,3360,3357,1,0, + 0,0,3360,3361,1,0,0,0,3361,3368,1,0,0,0,3362,3364,7,47,0,0,3363, + 3365,3,314,157,0,3364,3363,1,0,0,0,3365,3366,1,0,0,0,3366,3364,1, + 0,0,0,3366,3367,1,0,0,0,3367,3369,1,0,0,0,3368,3362,1,0,0,0,3368, + 3369,1,0,0,0,3369,3376,1,0,0,0,3370,3372,5,102,0,0,3371,3373,3,316, + 158,0,3372,3371,1,0,0,0,3373,3374,1,0,0,0,3374,3372,1,0,0,0,3374, + 3375,1,0,0,0,3375,3377,1,0,0,0,3376,3370,1,0,0,0,3376,3377,1,0,0, + 0,3377,3382,1,0,0,0,3378,3379,5,79,0,0,3379,3380,3,722,361,0,3380, + 3381,7,48,0,0,3381,3383,1,0,0,0,3382,3378,1,0,0,0,3382,3383,1,0, + 0,0,3383,3395,1,0,0,0,3384,3385,5,866,0,0,3385,3390,3,236,118,0, + 3386,3387,5,868,0,0,3387,3389,3,236,118,0,3388,3386,1,0,0,0,3389, + 3392,1,0,0,0,3390,3388,1,0,0,0,3390,3391,1,0,0,0,3391,3393,1,0,0, + 0,3392,3390,1,0,0,0,3393,3394,5,867,0,0,3394,3396,1,0,0,0,3395,3384, + 1,0,0,0,3395,3396,1,0,0,0,3396,3406,1,0,0,0,3397,3398,5,155,0,0, + 3398,3403,3,234,117,0,3399,3400,5,868,0,0,3400,3402,3,234,117,0, + 3401,3399,1,0,0,0,3402,3405,1,0,0,0,3403,3401,1,0,0,0,3403,3404, + 1,0,0,0,3404,3407,1,0,0,0,3405,3403,1,0,0,0,3406,3397,1,0,0,0,3406, + 3407,1,0,0,0,3407,203,1,0,0,0,3408,3409,5,103,0,0,3409,3411,5,695, + 0,0,3410,3412,7,46,0,0,3411,3410,1,0,0,0,3411,3412,1,0,0,0,3412, + 3414,1,0,0,0,3413,3415,5,450,0,0,3414,3413,1,0,0,0,3414,3415,1,0, + 0,0,3415,3416,1,0,0,0,3416,3417,5,83,0,0,3417,3419,5,882,0,0,3418, + 3420,7,7,0,0,3419,3418,1,0,0,0,3419,3420,1,0,0,0,3420,3421,1,0,0, + 0,3421,3422,5,88,0,0,3422,3423,5,173,0,0,3423,3427,3,662,331,0,3424, + 3425,5,26,0,0,3425,3426,5,155,0,0,3426,3428,3,698,349,0,3427,3424, + 1,0,0,0,3427,3428,1,0,0,0,3428,3439,1,0,0,0,3429,3430,5,587,0,0, + 3430,3431,5,423,0,0,3431,3433,5,20,0,0,3432,3434,5,859,0,0,3433, + 3432,1,0,0,0,3433,3434,1,0,0,0,3434,3435,1,0,0,0,3435,3437,5,882, + 0,0,3436,3438,5,858,0,0,3437,3436,1,0,0,0,3437,3438,1,0,0,0,3438, + 3440,1,0,0,0,3439,3429,1,0,0,0,3439,3440,1,0,0,0,3440,3445,1,0,0, + 0,3441,3442,5,79,0,0,3442,3443,3,722,361,0,3443,3444,7,48,0,0,3444, + 3446,1,0,0,0,3445,3441,1,0,0,0,3445,3446,1,0,0,0,3446,3458,1,0,0, + 0,3447,3448,5,866,0,0,3448,3453,3,236,118,0,3449,3450,5,868,0,0, + 3450,3452,3,236,118,0,3451,3449,1,0,0,0,3452,3455,1,0,0,0,3453,3451, + 1,0,0,0,3453,3454,1,0,0,0,3454,3456,1,0,0,0,3455,3453,1,0,0,0,3456, + 3457,5,867,0,0,3457,3459,1,0,0,0,3458,3447,1,0,0,0,3458,3459,1,0, + 0,0,3459,3469,1,0,0,0,3460,3461,5,155,0,0,3461,3466,3,234,117,0, + 3462,3463,5,868,0,0,3463,3465,3,234,117,0,3464,3462,1,0,0,0,3465, + 3468,1,0,0,0,3466,3464,1,0,0,0,3466,3467,1,0,0,0,3467,3470,1,0,0, + 0,3468,3466,1,0,0,0,3469,3460,1,0,0,0,3469,3470,1,0,0,0,3470,205, + 1,0,0,0,3471,3472,5,866,0,0,3472,3474,3,224,112,0,3473,3475,3,258, + 129,0,3474,3473,1,0,0,0,3474,3475,1,0,0,0,3475,3477,1,0,0,0,3476, + 3478,3,328,164,0,3477,3476,1,0,0,0,3477,3478,1,0,0,0,3478,3479,1, + 0,0,0,3479,3481,5,867,0,0,3480,3482,3,258,129,0,3481,3480,1,0,0, + 0,3481,3482,1,0,0,0,3482,3484,1,0,0,0,3483,3485,3,328,164,0,3484, + 3483,1,0,0,0,3484,3485,1,0,0,0,3485,3487,1,0,0,0,3486,3488,3,312, + 156,0,3487,3486,1,0,0,0,3487,3488,1,0,0,0,3488,207,1,0,0,0,3489, + 3491,5,143,0,0,3490,3492,7,49,0,0,3491,3490,1,0,0,0,3491,3492,1, + 0,0,0,3492,3494,1,0,0,0,3493,3495,5,88,0,0,3494,3493,1,0,0,0,3494, + 3495,1,0,0,0,3495,3496,1,0,0,0,3496,3502,3,662,331,0,3497,3498,5, + 130,0,0,3498,3499,5,866,0,0,3499,3500,3,680,340,0,3500,3501,5,867, + 0,0,3501,3503,1,0,0,0,3502,3497,1,0,0,0,3502,3503,1,0,0,0,3503,3512, + 1,0,0,0,3504,3505,5,866,0,0,3505,3506,3,670,335,0,3506,3507,5,867, + 0,0,3507,3509,1,0,0,0,3508,3504,1,0,0,0,3508,3509,1,0,0,0,3509,3510, + 1,0,0,0,3510,3513,3,228,114,0,3511,3513,3,232,116,0,3512,3508,1, + 0,0,0,3512,3511,1,0,0,0,3513,209,1,0,0,0,3514,3518,3,282,141,0,3515, + 3517,3,284,142,0,3516,3515,1,0,0,0,3517,3520,1,0,0,0,3518,3516,1, + 0,0,0,3518,3519,1,0,0,0,3519,3529,1,0,0,0,3520,3518,1,0,0,0,3521, + 3523,5,181,0,0,3522,3524,7,45,0,0,3523,3522,1,0,0,0,3523,3524,1, + 0,0,0,3524,3527,1,0,0,0,3525,3528,3,282,141,0,3526,3528,3,280,140, + 0,3527,3525,1,0,0,0,3527,3526,1,0,0,0,3528,3530,1,0,0,0,3529,3521, + 1,0,0,0,3529,3530,1,0,0,0,3530,3535,1,0,0,0,3531,3532,5,868,0,0, + 3532,3534,3,286,143,0,3533,3531,1,0,0,0,3534,3537,1,0,0,0,3535,3533, + 1,0,0,0,3535,3536,1,0,0,0,3536,3539,1,0,0,0,3537,3535,1,0,0,0,3538, + 3540,3,258,129,0,3539,3538,1,0,0,0,3539,3540,1,0,0,0,3540,3542,1, + 0,0,0,3541,3543,3,328,164,0,3542,3541,1,0,0,0,3542,3543,1,0,0,0, + 3543,3545,1,0,0,0,3544,3546,3,238,119,0,3545,3544,1,0,0,0,3545,3546, + 1,0,0,0,3546,3548,1,0,0,0,3547,3549,3,312,156,0,3548,3547,1,0,0, + 0,3548,3549,1,0,0,0,3549,3574,1,0,0,0,3550,3554,3,280,140,0,3551, + 3553,3,284,142,0,3552,3551,1,0,0,0,3553,3556,1,0,0,0,3554,3552,1, + 0,0,0,3554,3555,1,0,0,0,3555,3562,1,0,0,0,3556,3554,1,0,0,0,3557, + 3559,5,181,0,0,3558,3560,7,45,0,0,3559,3558,1,0,0,0,3559,3560,1, + 0,0,0,3560,3561,1,0,0,0,3561,3563,3,280,140,0,3562,3557,1,0,0,0, + 3562,3563,1,0,0,0,3563,3565,1,0,0,0,3564,3566,3,258,129,0,3565,3564, + 1,0,0,0,3565,3566,1,0,0,0,3566,3568,1,0,0,0,3567,3569,3,328,164, + 0,3568,3567,1,0,0,0,3568,3569,1,0,0,0,3569,3571,1,0,0,0,3570,3572, + 3,238,119,0,3571,3570,1,0,0,0,3571,3572,1,0,0,0,3572,3574,1,0,0, + 0,3573,3514,1,0,0,0,3573,3550,1,0,0,0,3574,211,1,0,0,0,3575,3577, + 3,50,25,0,3576,3575,1,0,0,0,3576,3577,1,0,0,0,3577,3578,1,0,0,0, + 3578,3580,3,214,107,0,3579,3581,3,258,129,0,3580,3579,1,0,0,0,3580, + 3581,1,0,0,0,3581,3583,1,0,0,0,3582,3584,3,328,164,0,3583,3582,1, + 0,0,0,3583,3584,1,0,0,0,3584,3586,1,0,0,0,3585,3587,3,312,156,0, + 3586,3585,1,0,0,0,3586,3587,1,0,0,0,3587,213,1,0,0,0,3588,3589,6, + 107,-1,0,3589,3590,3,216,108,0,3590,3605,1,0,0,0,3591,3592,10,2, + 0,0,3592,3594,5,181,0,0,3593,3595,7,45,0,0,3594,3593,1,0,0,0,3594, + 3595,1,0,0,0,3595,3596,1,0,0,0,3596,3604,3,216,108,0,3597,3598,10, + 1,0,0,3598,3600,5,59,0,0,3599,3601,7,45,0,0,3600,3599,1,0,0,0,3600, + 3601,1,0,0,0,3601,3602,1,0,0,0,3602,3604,3,216,108,0,3603,3591,1, + 0,0,0,3603,3597,1,0,0,0,3604,3607,1,0,0,0,3605,3603,1,0,0,0,3605, + 3606,1,0,0,0,3606,215,1,0,0,0,3607,3605,1,0,0,0,3608,3609,6,108, + -1,0,3609,3610,3,218,109,0,3610,3619,1,0,0,0,3611,3612,10,1,0,0, + 3612,3614,5,828,0,0,3613,3615,7,45,0,0,3614,3613,1,0,0,0,3614,3615, + 1,0,0,0,3615,3616,1,0,0,0,3616,3618,3,218,109,0,3617,3611,1,0,0, + 0,3618,3621,1,0,0,0,3619,3617,1,0,0,0,3619,3620,1,0,0,0,3620,217, + 1,0,0,0,3621,3619,1,0,0,0,3622,3637,3,226,113,0,3623,3624,5,866, + 0,0,3624,3626,3,214,107,0,3625,3627,3,258,129,0,3626,3625,1,0,0, + 0,3626,3627,1,0,0,0,3627,3629,1,0,0,0,3628,3630,3,328,164,0,3629, + 3628,1,0,0,0,3629,3630,1,0,0,0,3630,3632,1,0,0,0,3631,3633,3,312, + 156,0,3632,3631,1,0,0,0,3632,3633,1,0,0,0,3633,3634,1,0,0,0,3634, + 3635,5,867,0,0,3635,3637,1,0,0,0,3636,3622,1,0,0,0,3636,3623,1,0, + 0,0,3637,219,1,0,0,0,3638,3641,3,254,127,0,3639,3641,3,256,128,0, + 3640,3638,1,0,0,0,3640,3639,1,0,0,0,3641,221,1,0,0,0,3642,3646,3, + 230,115,0,3643,3644,5,125,0,0,3644,3645,5,20,0,0,3645,3647,3,684, + 342,0,3646,3643,1,0,0,0,3646,3647,1,0,0,0,3647,3650,1,0,0,0,3648, + 3649,5,100,0,0,3649,3651,3,330,165,0,3650,3648,1,0,0,0,3650,3651, + 1,0,0,0,3651,223,1,0,0,0,3652,3657,3,226,113,0,3653,3654,7,50,0, + 0,3654,3656,3,226,113,0,3655,3653,1,0,0,0,3656,3659,1,0,0,0,3657, + 3655,1,0,0,0,3657,3658,1,0,0,0,3658,3661,1,0,0,0,3659,3657,1,0,0, + 0,3660,3662,3,258,129,0,3661,3660,1,0,0,0,3661,3662,1,0,0,0,3662, + 3664,1,0,0,0,3663,3665,3,328,164,0,3664,3663,1,0,0,0,3664,3665,1, + 0,0,0,3665,3667,1,0,0,0,3666,3668,3,312,156,0,3667,3666,1,0,0,0, + 3667,3668,1,0,0,0,3668,225,1,0,0,0,3669,3673,3,210,105,0,3670,3673, + 3,628,314,0,3671,3673,3,222,111,0,3672,3669,1,0,0,0,3672,3670,1, + 0,0,0,3672,3671,1,0,0,0,3673,227,1,0,0,0,3674,3680,3,210,105,0,3675, + 3676,5,173,0,0,3676,3680,3,662,331,0,3677,3680,3,752,376,0,3678, + 3680,3,230,115,0,3679,3674,1,0,0,0,3679,3675,1,0,0,0,3679,3677,1, + 0,0,0,3679,3678,1,0,0,0,3680,229,1,0,0,0,3681,3682,5,189,0,0,3682, + 3683,5,586,0,0,3683,3689,3,754,377,0,3684,3685,5,868,0,0,3685,3686, + 5,586,0,0,3686,3688,3,754,377,0,3687,3684,1,0,0,0,3688,3691,1,0, + 0,0,3689,3687,1,0,0,0,3689,3690,1,0,0,0,3690,231,1,0,0,0,3691,3689, + 1,0,0,0,3692,3693,5,155,0,0,3693,3698,3,234,117,0,3694,3695,5,868, + 0,0,3695,3697,3,234,117,0,3696,3694,1,0,0,0,3697,3700,1,0,0,0,3698, + 3696,1,0,0,0,3698,3699,1,0,0,0,3699,233,1,0,0,0,3700,3698,1,0,0, + 0,3701,3702,3,672,336,0,3702,3703,5,857,0,0,3703,3704,3,756,378, + 0,3704,235,1,0,0,0,3705,3708,3,716,358,0,3706,3708,5,892,0,0,3707, + 3705,1,0,0,0,3707,3706,1,0,0,0,3708,237,1,0,0,0,3709,3710,5,65,0, + 0,3710,3720,7,51,0,0,3711,3712,5,510,0,0,3712,3717,3,662,331,0,3713, + 3714,5,868,0,0,3714,3716,3,662,331,0,3715,3713,1,0,0,0,3716,3719, + 1,0,0,0,3717,3715,1,0,0,0,3717,3718,1,0,0,0,3718,3721,1,0,0,0,3719, + 3717,1,0,0,0,3720,3711,1,0,0,0,3720,3721,1,0,0,0,3721,3724,1,0,0, + 0,3722,3723,7,52,0,0,3723,3725,5,105,0,0,3724,3722,1,0,0,0,3724, + 3725,1,0,0,0,3725,3731,1,0,0,0,3726,3727,5,104,0,0,3727,3728,5,80, + 0,0,3728,3729,5,594,0,0,3729,3731,5,491,0,0,3730,3709,1,0,0,0,3730, + 3726,1,0,0,0,3731,239,1,0,0,0,3732,3734,5,44,0,0,3733,3735,5,107, + 0,0,3734,3733,1,0,0,0,3734,3735,1,0,0,0,3735,3737,1,0,0,0,3736,3738, + 5,549,0,0,3737,3736,1,0,0,0,3737,3738,1,0,0,0,3738,3740,1,0,0,0, + 3739,3741,5,79,0,0,3740,3739,1,0,0,0,3740,3741,1,0,0,0,3741,3742, + 1,0,0,0,3742,3743,5,68,0,0,3743,3748,3,662,331,0,3744,3746,5,13, + 0,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746,3747,1,0,0,0,3747,3749, + 3,716,358,0,3748,3745,1,0,0,0,3748,3749,1,0,0,0,3749,3755,1,0,0, + 0,3750,3751,5,130,0,0,3751,3752,5,866,0,0,3752,3753,3,680,340,0, + 3753,3754,5,867,0,0,3754,3756,1,0,0,0,3755,3750,1,0,0,0,3755,3756, + 1,0,0,0,3756,3759,1,0,0,0,3757,3758,5,192,0,0,3758,3760,3,814,407, + 0,3759,3757,1,0,0,0,3759,3760,1,0,0,0,3760,3762,1,0,0,0,3761,3763, + 3,258,129,0,3762,3761,1,0,0,0,3762,3763,1,0,0,0,3763,3766,1,0,0, + 0,3764,3765,5,100,0,0,3765,3767,3,330,165,0,3766,3764,1,0,0,0,3766, + 3767,1,0,0,0,3767,241,1,0,0,0,3768,3770,5,44,0,0,3769,3771,5,107, + 0,0,3770,3769,1,0,0,0,3770,3771,1,0,0,0,3771,3773,1,0,0,0,3772,3774, + 5,549,0,0,3773,3772,1,0,0,0,3773,3774,1,0,0,0,3774,3776,1,0,0,0, + 3775,3777,5,79,0,0,3776,3775,1,0,0,0,3776,3777,1,0,0,0,3777,3817, + 1,0,0,0,3778,3781,3,662,331,0,3779,3780,5,865,0,0,3780,3782,5,850, + 0,0,3781,3779,1,0,0,0,3781,3782,1,0,0,0,3782,3791,1,0,0,0,3783,3784, + 5,868,0,0,3784,3787,3,662,331,0,3785,3786,5,865,0,0,3786,3788,5, + 850,0,0,3787,3785,1,0,0,0,3787,3788,1,0,0,0,3788,3790,1,0,0,0,3789, + 3783,1,0,0,0,3790,3793,1,0,0,0,3791,3789,1,0,0,0,3791,3792,1,0,0, + 0,3792,3794,1,0,0,0,3793,3791,1,0,0,0,3794,3795,5,68,0,0,3795,3796, + 3,262,131,0,3796,3818,1,0,0,0,3797,3798,5,68,0,0,3798,3801,3,662, + 331,0,3799,3800,5,865,0,0,3800,3802,5,850,0,0,3801,3799,1,0,0,0, + 3801,3802,1,0,0,0,3802,3811,1,0,0,0,3803,3804,5,868,0,0,3804,3807, + 3,662,331,0,3805,3806,5,865,0,0,3806,3808,5,850,0,0,3807,3805,1, + 0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0,0,3809,3803,1,0,0,0,3810, + 3813,1,0,0,0,3811,3809,1,0,0,0,3811,3812,1,0,0,0,3812,3814,1,0,0, + 0,3813,3811,1,0,0,0,3814,3815,5,188,0,0,3815,3816,3,262,131,0,3816, + 3818,1,0,0,0,3817,3778,1,0,0,0,3817,3797,1,0,0,0,3818,3821,1,0,0, + 0,3819,3820,5,192,0,0,3820,3822,3,814,407,0,3821,3819,1,0,0,0,3821, + 3822,1,0,0,0,3822,243,1,0,0,0,3823,3824,5,417,0,0,3824,3825,3,662, + 331,0,3825,3830,5,516,0,0,3826,3828,5,13,0,0,3827,3826,1,0,0,0,3827, + 3828,1,0,0,0,3828,3829,1,0,0,0,3829,3831,3,716,358,0,3830,3827,1, + 0,0,0,3830,3831,1,0,0,0,3831,245,1,0,0,0,3832,3833,5,417,0,0,3833, + 3834,3,662,331,0,3834,3835,5,135,0,0,3835,3842,3,652,326,0,3836, + 3837,3,824,412,0,3837,3838,5,866,0,0,3838,3839,3,758,379,0,3839, + 3840,5,867,0,0,3840,3843,1,0,0,0,3841,3843,7,53,0,0,3842,3836,1, + 0,0,0,3842,3841,1,0,0,0,3843,3846,1,0,0,0,3844,3845,5,192,0,0,3845, + 3847,3,814,407,0,3846,3844,1,0,0,0,3846,3847,1,0,0,0,3847,3850,1, + 0,0,0,3848,3849,5,100,0,0,3849,3851,3,330,165,0,3850,3848,1,0,0, + 0,3850,3851,1,0,0,0,3851,247,1,0,0,0,3852,3853,5,417,0,0,3853,3854, + 3,662,331,0,3854,3855,5,135,0,0,3855,3858,7,54,0,0,3856,3857,5,192, + 0,0,3857,3859,3,814,407,0,3858,3856,1,0,0,0,3858,3859,1,0,0,0,3859, + 3862,1,0,0,0,3860,3861,5,100,0,0,3861,3863,3,330,165,0,3862,3860, + 1,0,0,0,3862,3863,1,0,0,0,3863,249,1,0,0,0,3864,3865,5,417,0,0,3865, + 3866,3,662,331,0,3866,3867,5,334,0,0,3867,251,1,0,0,0,3868,3869, + 5,425,0,0,3869,3870,5,173,0,0,3870,3871,5,68,0,0,3871,3876,3,726, + 363,0,3872,3873,5,868,0,0,3873,3875,3,726,363,0,3874,3872,1,0,0, + 0,3875,3878,1,0,0,0,3876,3874,1,0,0,0,3876,3877,1,0,0,0,3877,253, + 1,0,0,0,3878,3876,1,0,0,0,3879,3881,5,185,0,0,3880,3882,5,107,0, + 0,3881,3880,1,0,0,0,3881,3882,1,0,0,0,3882,3884,1,0,0,0,3883,3885, + 5,79,0,0,3884,3883,1,0,0,0,3884,3885,1,0,0,0,3885,3886,1,0,0,0,3886, + 3891,3,662,331,0,3887,3889,5,13,0,0,3888,3887,1,0,0,0,3888,3889, + 1,0,0,0,3889,3890,1,0,0,0,3890,3892,3,716,358,0,3891,3888,1,0,0, + 0,3891,3892,1,0,0,0,3892,3893,1,0,0,0,3893,3894,5,155,0,0,3894,3899, + 3,234,117,0,3895,3896,5,868,0,0,3896,3898,3,234,117,0,3897,3895, + 1,0,0,0,3898,3901,1,0,0,0,3899,3897,1,0,0,0,3899,3900,1,0,0,0,3900, + 3904,1,0,0,0,3901,3899,1,0,0,0,3902,3903,5,192,0,0,3903,3905,3,814, + 407,0,3904,3902,1,0,0,0,3904,3905,1,0,0,0,3905,3907,1,0,0,0,3906, + 3908,3,258,129,0,3907,3906,1,0,0,0,3907,3908,1,0,0,0,3908,3910,1, + 0,0,0,3909,3911,3,328,164,0,3910,3909,1,0,0,0,3910,3911,1,0,0,0, + 3911,255,1,0,0,0,3912,3914,5,185,0,0,3913,3915,5,107,0,0,3914,3913, + 1,0,0,0,3914,3915,1,0,0,0,3915,3917,1,0,0,0,3916,3918,5,79,0,0,3917, + 3916,1,0,0,0,3917,3918,1,0,0,0,3918,3919,1,0,0,0,3919,3920,3,262, + 131,0,3920,3921,5,155,0,0,3921,3926,3,234,117,0,3922,3923,5,868, + 0,0,3923,3925,3,234,117,0,3924,3922,1,0,0,0,3925,3928,1,0,0,0,3926, + 3924,1,0,0,0,3926,3927,1,0,0,0,3927,3931,1,0,0,0,3928,3926,1,0,0, + 0,3929,3930,5,192,0,0,3930,3932,3,814,407,0,3931,3929,1,0,0,0,3931, + 3932,1,0,0,0,3932,257,1,0,0,0,3933,3934,5,125,0,0,3934,3935,5,20, + 0,0,3935,3940,3,260,130,0,3936,3937,5,868,0,0,3937,3939,3,260,130, + 0,3938,3936,1,0,0,0,3939,3942,1,0,0,0,3940,3938,1,0,0,0,3940,3941, + 1,0,0,0,3941,259,1,0,0,0,3942,3940,1,0,0,0,3943,3945,3,814,407,0, + 3944,3946,7,55,0,0,3945,3944,1,0,0,0,3945,3946,1,0,0,0,3946,261, + 1,0,0,0,3947,3952,3,264,132,0,3948,3949,5,868,0,0,3949,3951,3,264, + 132,0,3950,3948,1,0,0,0,3951,3954,1,0,0,0,3952,3950,1,0,0,0,3952, + 3953,1,0,0,0,3953,263,1,0,0,0,3954,3952,1,0,0,0,3955,3959,3,266, + 133,0,3956,3958,3,276,138,0,3957,3956,1,0,0,0,3958,3961,1,0,0,0, + 3959,3957,1,0,0,0,3959,3960,1,0,0,0,3960,3974,1,0,0,0,3961,3959, + 1,0,0,0,3962,3963,5,866,0,0,3963,3967,3,266,133,0,3964,3966,3,276, + 138,0,3965,3964,1,0,0,0,3966,3969,1,0,0,0,3967,3965,1,0,0,0,3967, + 3968,1,0,0,0,3968,3970,1,0,0,0,3969,3967,1,0,0,0,3970,3971,5,867, + 0,0,3971,3974,1,0,0,0,3972,3974,3,288,144,0,3973,3955,1,0,0,0,3973, + 3962,1,0,0,0,3973,3972,1,0,0,0,3974,265,1,0,0,0,3975,3981,3,662, + 331,0,3976,3977,5,130,0,0,3977,3978,5,866,0,0,3978,3979,3,680,340, + 0,3979,3980,5,867,0,0,3980,3982,1,0,0,0,3981,3976,1,0,0,0,3981,3982, + 1,0,0,0,3982,3987,1,0,0,0,3983,3985,5,13,0,0,3984,3983,1,0,0,0,3984, + 3985,1,0,0,0,3985,3986,1,0,0,0,3986,3988,3,716,358,0,3987,3984,1, + 0,0,0,3987,3988,1,0,0,0,3988,3997,1,0,0,0,3989,3994,3,272,136,0, + 3990,3991,5,868,0,0,3991,3993,3,272,136,0,3992,3990,1,0,0,0,3993, + 3996,1,0,0,0,3994,3992,1,0,0,0,3994,3995,1,0,0,0,3995,3998,1,0,0, + 0,3996,3994,1,0,0,0,3997,3989,1,0,0,0,3997,3998,1,0,0,0,3998,4015, + 1,0,0,0,3999,4001,5,95,0,0,4000,3999,1,0,0,0,4000,4001,1,0,0,0,4001, + 4002,1,0,0,0,4002,4004,3,268,134,0,4003,4005,5,13,0,0,4004,4003, + 1,0,0,0,4004,4005,1,0,0,0,4005,4006,1,0,0,0,4006,4008,3,716,358, + 0,4007,4009,3,270,135,0,4008,4007,1,0,0,0,4008,4009,1,0,0,0,4009, + 4015,1,0,0,0,4010,4011,5,866,0,0,4011,4012,3,262,131,0,4012,4013, + 5,867,0,0,4013,4015,1,0,0,0,4014,3975,1,0,0,0,4014,4000,1,0,0,0, + 4014,4010,1,0,0,0,4015,267,1,0,0,0,4016,4022,3,210,105,0,4017,4018, + 5,866,0,0,4018,4019,3,210,105,0,4019,4020,5,867,0,0,4020,4022,1, + 0,0,0,4021,4016,1,0,0,0,4021,4017,1,0,0,0,4022,269,1,0,0,0,4023, + 4024,5,866,0,0,4024,4025,3,670,335,0,4025,4026,5,867,0,0,4026,271, + 1,0,0,0,4027,4028,7,56,0,0,4028,4031,7,19,0,0,4029,4030,5,65,0,0, + 4030,4032,3,274,137,0,4031,4029,1,0,0,0,4031,4032,1,0,0,0,4032,4033, + 1,0,0,0,4033,4035,5,866,0,0,4034,4036,3,650,325,0,4035,4034,1,0, + 0,0,4035,4036,1,0,0,0,4036,4037,1,0,0,0,4037,4038,5,867,0,0,4038, + 273,1,0,0,0,4039,4045,5,91,0,0,4040,4041,5,125,0,0,4041,4045,5,20, + 0,0,4042,4043,5,74,0,0,4043,4045,5,20,0,0,4044,4039,1,0,0,0,4044, + 4040,1,0,0,0,4044,4042,1,0,0,0,4045,275,1,0,0,0,4046,4048,7,57,0, + 0,4047,4046,1,0,0,0,4047,4048,1,0,0,0,4048,4049,1,0,0,0,4049,4051, + 5,91,0,0,4050,4052,5,95,0,0,4051,4050,1,0,0,0,4051,4052,1,0,0,0, + 4052,4053,1,0,0,0,4053,4057,3,266,133,0,4054,4056,3,278,139,0,4055, + 4054,1,0,0,0,4056,4059,1,0,0,0,4057,4055,1,0,0,0,4057,4058,1,0,0, + 0,4058,4096,1,0,0,0,4059,4057,1,0,0,0,4060,4061,5,172,0,0,4061,4065, + 3,266,133,0,4062,4064,3,278,139,0,4063,4062,1,0,0,0,4064,4067,1, + 0,0,0,4065,4063,1,0,0,0,4065,4066,1,0,0,0,4066,4096,1,0,0,0,4067, + 4065,1,0,0,0,4068,4070,7,58,0,0,4069,4071,5,127,0,0,4070,4069,1, + 0,0,0,4070,4071,1,0,0,0,4071,4072,1,0,0,0,4072,4074,5,91,0,0,4073, + 4075,5,95,0,0,4074,4073,1,0,0,0,4074,4075,1,0,0,0,4075,4076,1,0, + 0,0,4076,4080,3,266,133,0,4077,4079,3,278,139,0,4078,4077,1,0,0, + 0,4079,4082,1,0,0,0,4080,4078,1,0,0,0,4080,4081,1,0,0,0,4081,4096, + 1,0,0,0,4082,4080,1,0,0,0,4083,4091,5,113,0,0,4084,4087,5,84,0,0, + 4085,4087,7,58,0,0,4086,4084,1,0,0,0,4086,4085,1,0,0,0,4087,4089, + 1,0,0,0,4088,4090,5,127,0,0,4089,4088,1,0,0,0,4089,4090,1,0,0,0, + 4090,4092,1,0,0,0,4091,4086,1,0,0,0,4091,4092,1,0,0,0,4092,4093, + 1,0,0,0,4093,4094,5,91,0,0,4094,4096,3,266,133,0,4095,4047,1,0,0, + 0,4095,4060,1,0,0,0,4095,4068,1,0,0,0,4095,4083,1,0,0,0,4096,277, + 1,0,0,0,4097,4098,5,119,0,0,4098,4105,3,814,407,0,4099,4100,5,188, + 0,0,4100,4101,5,866,0,0,4101,4102,3,670,335,0,4102,4103,5,867,0, + 0,4103,4105,1,0,0,0,4104,4097,1,0,0,0,4104,4099,1,0,0,0,4105,279, + 1,0,0,0,4106,4107,5,866,0,0,4107,4108,3,282,141,0,4108,4109,5,867, + 0,0,4109,4115,1,0,0,0,4110,4111,5,866,0,0,4111,4112,3,280,140,0, + 4112,4113,5,867,0,0,4113,4115,1,0,0,0,4114,4106,1,0,0,0,4114,4110, + 1,0,0,0,4115,281,1,0,0,0,4116,4120,5,154,0,0,4117,4119,3,298,149, + 0,4118,4117,1,0,0,0,4119,4122,1,0,0,0,4120,4118,1,0,0,0,4120,4121, + 1,0,0,0,4121,4123,1,0,0,0,4122,4120,1,0,0,0,4123,4125,3,300,150, + 0,4124,4126,3,312,156,0,4125,4124,1,0,0,0,4125,4126,1,0,0,0,4126, + 4127,1,0,0,0,4127,4129,3,318,159,0,4128,4130,3,320,160,0,4129,4128, + 1,0,0,0,4129,4130,1,0,0,0,4130,4132,1,0,0,0,4131,4133,3,322,161, + 0,4132,4131,1,0,0,0,4132,4133,1,0,0,0,4133,4135,1,0,0,0,4134,4136, + 3,324,162,0,4135,4134,1,0,0,0,4135,4136,1,0,0,0,4136,4138,1,0,0, + 0,4137,4139,3,258,129,0,4138,4137,1,0,0,0,4138,4139,1,0,0,0,4139, + 4141,1,0,0,0,4140,4142,3,328,164,0,4141,4140,1,0,0,0,4141,4142,1, + 0,0,0,4142,4144,1,0,0,0,4143,4145,3,312,156,0,4144,4143,1,0,0,0, + 4144,4145,1,0,0,0,4145,4147,1,0,0,0,4146,4148,3,284,142,0,4147,4146, + 1,0,0,0,4147,4148,1,0,0,0,4148,283,1,0,0,0,4149,4151,5,181,0,0,4150, + 4152,7,45,0,0,4151,4150,1,0,0,0,4151,4152,1,0,0,0,4152,4155,1,0, + 0,0,4153,4156,3,282,141,0,4154,4156,3,280,140,0,4155,4153,1,0,0, + 0,4155,4154,1,0,0,0,4156,285,1,0,0,0,4157,4172,5,95,0,0,4158,4173, + 3,282,141,0,4159,4173,3,280,140,0,4160,4163,5,866,0,0,4161,4164, + 3,282,141,0,4162,4164,3,280,140,0,4163,4161,1,0,0,0,4163,4162,1, + 0,0,0,4164,4165,1,0,0,0,4165,4170,5,867,0,0,4166,4168,5,13,0,0,4167, + 4166,1,0,0,0,4167,4168,1,0,0,0,4168,4169,1,0,0,0,4169,4171,3,716, + 358,0,4170,4167,1,0,0,0,4170,4171,1,0,0,0,4171,4173,1,0,0,0,4172, + 4158,1,0,0,0,4172,4159,1,0,0,0,4172,4160,1,0,0,0,4173,287,1,0,0, + 0,4174,4175,5,253,0,0,4175,4176,5,866,0,0,4176,4177,5,882,0,0,4177, + 4178,5,868,0,0,4178,4179,5,882,0,0,4179,4180,5,337,0,0,4180,4181, + 5,866,0,0,4181,4182,3,290,145,0,4182,4183,5,867,0,0,4183,4188,5, + 867,0,0,4184,4186,5,13,0,0,4185,4184,1,0,0,0,4185,4186,1,0,0,0,4186, + 4187,1,0,0,0,4187,4189,3,716,358,0,4188,4185,1,0,0,0,4188,4189,1, + 0,0,0,4189,289,1,0,0,0,4190,4195,3,292,146,0,4191,4192,5,868,0,0, + 4192,4194,3,292,146,0,4193,4191,1,0,0,0,4194,4197,1,0,0,0,4195,4193, + 1,0,0,0,4195,4196,1,0,0,0,4196,291,1,0,0,0,4197,4195,1,0,0,0,4198, + 4215,3,672,336,0,4199,4200,5,65,0,0,4200,4216,5,256,0,0,4201,4213, + 3,736,368,0,4202,4203,5,257,0,0,4203,4205,5,882,0,0,4204,4206,3, + 294,147,0,4205,4204,1,0,0,0,4205,4206,1,0,0,0,4206,4208,1,0,0,0, + 4207,4209,3,296,148,0,4208,4207,1,0,0,0,4208,4209,1,0,0,0,4209,4214, + 1,0,0,0,4210,4211,5,60,0,0,4211,4212,5,257,0,0,4212,4214,5,882,0, + 0,4213,4202,1,0,0,0,4213,4210,1,0,0,0,4214,4216,1,0,0,0,4215,4199, + 1,0,0,0,4215,4201,1,0,0,0,4216,4228,1,0,0,0,4217,4219,5,255,0,0, + 4218,4220,5,257,0,0,4219,4218,1,0,0,0,4219,4220,1,0,0,0,4220,4221, + 1,0,0,0,4221,4222,5,882,0,0,4222,4223,5,337,0,0,4223,4224,5,866, + 0,0,4224,4225,3,290,145,0,4225,4226,5,867,0,0,4226,4228,1,0,0,0, + 4227,4198,1,0,0,0,4227,4217,1,0,0,0,4228,293,1,0,0,0,4229,4234,5, + 116,0,0,4230,4234,5,382,0,0,4231,4232,5,42,0,0,4232,4234,3,764,382, + 0,4233,4229,1,0,0,0,4233,4230,1,0,0,0,4233,4231,1,0,0,0,4234,4235, + 1,0,0,0,4235,4236,5,119,0,0,4236,4237,5,55,0,0,4237,295,1,0,0,0, + 4238,4243,5,116,0,0,4239,4243,5,382,0,0,4240,4241,5,42,0,0,4241, + 4243,3,764,382,0,4242,4238,1,0,0,0,4242,4239,1,0,0,0,4242,4240,1, + 0,0,0,4243,4244,1,0,0,0,4244,4245,5,119,0,0,4245,4246,5,382,0,0, + 4246,297,1,0,0,0,4247,4256,7,59,0,0,4248,4256,5,76,0,0,4249,4256, + 5,172,0,0,4250,4256,5,168,0,0,4251,4256,5,166,0,0,4252,4256,5,636, + 0,0,4253,4256,7,60,0,0,4254,4256,5,167,0,0,4255,4247,1,0,0,0,4255, + 4248,1,0,0,0,4255,4249,1,0,0,0,4255,4250,1,0,0,0,4255,4251,1,0,0, + 0,4255,4252,1,0,0,0,4255,4253,1,0,0,0,4255,4254,1,0,0,0,4256,299, + 1,0,0,0,4257,4260,3,306,153,0,4258,4260,3,302,151,0,4259,4257,1, + 0,0,0,4259,4258,1,0,0,0,4260,4265,1,0,0,0,4261,4262,5,868,0,0,4262, + 4264,3,302,151,0,4263,4261,1,0,0,0,4264,4267,1,0,0,0,4265,4263,1, + 0,0,0,4265,4266,1,0,0,0,4266,301,1,0,0,0,4267,4265,1,0,0,0,4268, + 4284,3,304,152,0,4269,4274,3,308,154,0,4270,4272,5,13,0,0,4271,4270, + 1,0,0,0,4271,4272,1,0,0,0,4272,4273,1,0,0,0,4273,4275,3,716,358, + 0,4274,4271,1,0,0,0,4274,4275,1,0,0,0,4275,4284,1,0,0,0,4276,4281, + 3,310,155,0,4277,4279,5,13,0,0,4278,4277,1,0,0,0,4278,4279,1,0,0, + 0,4279,4280,1,0,0,0,4280,4282,3,716,358,0,4281,4278,1,0,0,0,4281, + 4282,1,0,0,0,4282,4284,1,0,0,0,4283,4268,1,0,0,0,4283,4269,1,0,0, + 0,4283,4276,1,0,0,0,4284,303,1,0,0,0,4285,4286,3,712,356,0,4286, + 4287,5,865,0,0,4287,4288,5,850,0,0,4288,305,1,0,0,0,4289,4290,5, + 850,0,0,4290,307,1,0,0,0,4291,4292,3,672,336,0,4292,309,1,0,0,0, + 4293,4294,5,892,0,0,4294,4296,5,841,0,0,4295,4293,1,0,0,0,4295,4296, + 1,0,0,0,4296,4297,1,0,0,0,4297,4300,3,814,407,0,4298,4300,3,774, + 387,0,4299,4295,1,0,0,0,4299,4298,1,0,0,0,4300,311,1,0,0,0,4301, + 4302,5,88,0,0,4302,4307,3,236,118,0,4303,4304,5,868,0,0,4304,4306, + 3,236,118,0,4305,4303,1,0,0,0,4306,4309,1,0,0,0,4307,4305,1,0,0, + 0,4307,4308,1,0,0,0,4308,4338,1,0,0,0,4309,4307,1,0,0,0,4310,4311, + 5,88,0,0,4311,4312,5,372,0,0,4312,4338,5,882,0,0,4313,4314,5,88, + 0,0,4314,4315,5,128,0,0,4315,4319,5,882,0,0,4316,4317,5,26,0,0,4317, + 4318,5,155,0,0,4318,4320,3,698,349,0,4319,4316,1,0,0,0,4319,4320, + 1,0,0,0,4320,4327,1,0,0,0,4321,4323,7,47,0,0,4322,4324,3,314,157, + 0,4323,4322,1,0,0,0,4324,4325,1,0,0,0,4325,4323,1,0,0,0,4325,4326, + 1,0,0,0,4326,4328,1,0,0,0,4327,4321,1,0,0,0,4327,4328,1,0,0,0,4328, + 4335,1,0,0,0,4329,4331,5,102,0,0,4330,4332,3,316,158,0,4331,4330, + 1,0,0,0,4332,4333,1,0,0,0,4333,4331,1,0,0,0,4333,4334,1,0,0,0,4334, + 4336,1,0,0,0,4335,4329,1,0,0,0,4335,4336,1,0,0,0,4336,4338,1,0,0, + 0,4337,4301,1,0,0,0,4337,4310,1,0,0,0,4337,4313,1,0,0,0,4338,313, + 1,0,0,0,4339,4340,5,174,0,0,4340,4341,5,20,0,0,4341,4352,5,882,0, + 0,4342,4344,5,123,0,0,4343,4342,1,0,0,0,4343,4344,1,0,0,0,4344,4345, + 1,0,0,0,4345,4346,5,56,0,0,4346,4347,5,20,0,0,4347,4352,5,882,0, + 0,4348,4349,5,58,0,0,4349,4350,5,20,0,0,4350,4352,5,882,0,0,4351, + 4339,1,0,0,0,4351,4343,1,0,0,0,4351,4348,1,0,0,0,4352,315,1,0,0, + 0,4353,4354,5,171,0,0,4354,4355,5,20,0,0,4355,4360,5,882,0,0,4356, + 4357,5,174,0,0,4357,4358,5,20,0,0,4358,4360,5,882,0,0,4359,4353, + 1,0,0,0,4359,4356,1,0,0,0,4360,317,1,0,0,0,4361,4362,5,68,0,0,4362, + 4364,3,262,131,0,4363,4361,1,0,0,0,4363,4364,1,0,0,0,4364,4367,1, + 0,0,0,4365,4366,5,192,0,0,4366,4368,3,814,407,0,4367,4365,1,0,0, + 0,4367,4368,1,0,0,0,4368,319,1,0,0,0,4369,4370,5,74,0,0,4370,4371, + 5,20,0,0,4371,4376,3,326,163,0,4372,4373,5,868,0,0,4373,4375,3,326, + 163,0,4374,4372,1,0,0,0,4375,4378,1,0,0,0,4376,4374,1,0,0,0,4376, + 4377,1,0,0,0,4377,4381,1,0,0,0,4378,4376,1,0,0,0,4379,4380,5,194, + 0,0,4380,4382,5,584,0,0,4381,4379,1,0,0,0,4381,4382,1,0,0,0,4382, + 321,1,0,0,0,4383,4384,5,75,0,0,4384,4385,3,814,407,0,4385,323,1, + 0,0,0,4386,4387,5,689,0,0,4387,4388,3,792,396,0,4388,4389,5,13,0, + 0,4389,4390,5,866,0,0,4390,4391,3,790,395,0,4391,4401,5,867,0,0, + 4392,4393,5,868,0,0,4393,4394,3,792,396,0,4394,4395,5,13,0,0,4395, + 4396,5,866,0,0,4396,4397,3,790,395,0,4397,4398,5,867,0,0,4398,4400, + 1,0,0,0,4399,4392,1,0,0,0,4400,4403,1,0,0,0,4401,4399,1,0,0,0,4401, + 4402,1,0,0,0,4402,325,1,0,0,0,4403,4401,1,0,0,0,4404,4406,3,814, + 407,0,4405,4407,7,55,0,0,4406,4405,1,0,0,0,4406,4407,1,0,0,0,4407, + 327,1,0,0,0,4408,4419,5,100,0,0,4409,4410,3,330,165,0,4410,4411, + 5,868,0,0,4411,4413,1,0,0,0,4412,4409,1,0,0,0,4412,4413,1,0,0,0, + 4413,4414,1,0,0,0,4414,4420,3,330,165,0,4415,4416,3,330,165,0,4416, + 4417,5,509,0,0,4417,4418,3,330,165,0,4418,4420,1,0,0,0,4419,4412, + 1,0,0,0,4419,4415,1,0,0,0,4420,329,1,0,0,0,4421,4425,3,722,361,0, + 4422,4425,3,696,348,0,4423,4425,3,718,359,0,4424,4421,1,0,0,0,4424, + 4422,1,0,0,0,4424,4423,1,0,0,0,4425,331,1,0,0,0,4426,4427,5,640, + 0,0,4427,4436,5,664,0,0,4428,4433,3,354,177,0,4429,4430,5,868,0, + 0,4430,4432,3,354,177,0,4431,4429,1,0,0,0,4432,4435,1,0,0,0,4433, + 4431,1,0,0,0,4433,4434,1,0,0,0,4434,4437,1,0,0,0,4435,4433,1,0,0, + 0,4436,4428,1,0,0,0,4436,4437,1,0,0,0,4437,333,1,0,0,0,4438,4440, + 5,317,0,0,4439,4441,5,691,0,0,4440,4439,1,0,0,0,4440,4441,1,0,0, + 0,4441,335,1,0,0,0,4442,4444,5,341,0,0,4443,4445,5,691,0,0,4444, + 4443,1,0,0,0,4444,4445,1,0,0,0,4445,4451,1,0,0,0,4446,4448,5,11, + 0,0,4447,4449,5,502,0,0,4448,4447,1,0,0,0,4448,4449,1,0,0,0,4449, + 4450,1,0,0,0,4450,4452,5,326,0,0,4451,4446,1,0,0,0,4451,4452,1,0, + 0,0,4452,4457,1,0,0,0,4453,4455,5,502,0,0,4454,4453,1,0,0,0,4454, + 4455,1,0,0,0,4455,4456,1,0,0,0,4456,4458,5,140,0,0,4457,4454,1,0, + 0,0,4457,4458,1,0,0,0,4458,337,1,0,0,0,4459,4461,5,583,0,0,4460, + 4462,5,691,0,0,4461,4460,1,0,0,0,4461,4462,1,0,0,0,4462,4468,1,0, + 0,0,4463,4465,5,11,0,0,4464,4466,5,502,0,0,4465,4464,1,0,0,0,4465, + 4466,1,0,0,0,4466,4467,1,0,0,0,4467,4469,5,326,0,0,4468,4463,1,0, + 0,0,4468,4469,1,0,0,0,4469,4474,1,0,0,0,4470,4472,5,502,0,0,4471, + 4470,1,0,0,0,4471,4472,1,0,0,0,4472,4473,1,0,0,0,4473,4475,5,140, + 0,0,4474,4471,1,0,0,0,4474,4475,1,0,0,0,4475,339,1,0,0,0,4476,4477, + 5,589,0,0,4477,4478,3,716,358,0,4478,341,1,0,0,0,4479,4481,5,583, + 0,0,4480,4482,5,691,0,0,4481,4480,1,0,0,0,4481,4482,1,0,0,0,4482, + 4483,1,0,0,0,4483,4485,5,176,0,0,4484,4486,5,589,0,0,4485,4484,1, + 0,0,0,4485,4486,1,0,0,0,4486,4487,1,0,0,0,4487,4488,3,716,358,0, + 4488,343,1,0,0,0,4489,4490,5,140,0,0,4490,4491,5,589,0,0,4491,4492, + 3,716,358,0,4492,345,1,0,0,0,4493,4494,5,104,0,0,4494,4495,7,61, + 0,0,4495,4500,3,356,178,0,4496,4497,5,868,0,0,4497,4499,3,356,178, + 0,4498,4496,1,0,0,0,4499,4502,1,0,0,0,4500,4498,1,0,0,0,4500,4501, + 1,0,0,0,4501,347,1,0,0,0,4502,4500,1,0,0,0,4503,4504,5,183,0,0,4504, + 4505,5,752,0,0,4505,349,1,0,0,0,4506,4507,5,155,0,0,4507,4508,5, + 313,0,0,4508,4509,5,857,0,0,4509,4510,7,26,0,0,4510,351,1,0,0,0, + 4511,4513,5,155,0,0,4512,4514,7,62,0,0,4513,4512,1,0,0,0,4513,4514, + 1,0,0,0,4514,4515,1,0,0,0,4515,4516,5,664,0,0,4516,4521,3,360,180, + 0,4517,4518,5,868,0,0,4518,4520,3,360,180,0,4519,4517,1,0,0,0,4520, + 4523,1,0,0,0,4521,4519,1,0,0,0,4521,4522,1,0,0,0,4522,353,1,0,0, + 0,4523,4521,1,0,0,0,4524,4525,5,194,0,0,4525,4526,5,350,0,0,4526, + 4532,5,600,0,0,4527,4528,5,135,0,0,4528,4532,5,195,0,0,4529,4530, + 5,135,0,0,4530,4532,5,515,0,0,4531,4524,1,0,0,0,4531,4527,1,0,0, + 0,4531,4529,1,0,0,0,4532,355,1,0,0,0,4533,4538,3,662,331,0,4534, + 4536,5,13,0,0,4535,4534,1,0,0,0,4535,4536,1,0,0,0,4536,4537,1,0, + 0,0,4537,4539,3,716,358,0,4538,4535,1,0,0,0,4538,4539,1,0,0,0,4539, + 4540,1,0,0,0,4540,4541,3,358,179,0,4541,357,1,0,0,0,4542,4544,5, + 135,0,0,4543,4545,5,450,0,0,4544,4543,1,0,0,0,4544,4545,1,0,0,0, + 4545,4551,1,0,0,0,4546,4548,5,107,0,0,4547,4546,1,0,0,0,4547,4548, + 1,0,0,0,4548,4549,1,0,0,0,4549,4551,5,195,0,0,4550,4542,1,0,0,0, + 4550,4547,1,0,0,0,4551,359,1,0,0,0,4552,4553,5,440,0,0,4553,4554, + 5,448,0,0,4554,4560,3,362,181,0,4555,4556,5,135,0,0,4556,4560,5, + 195,0,0,4557,4558,5,135,0,0,4558,4560,5,515,0,0,4559,4552,1,0,0, + 0,4559,4555,1,0,0,0,4559,4557,1,0,0,0,4560,361,1,0,0,0,4561,4562, + 5,809,0,0,4562,4569,5,135,0,0,4563,4564,5,135,0,0,4564,4569,5,810, + 0,0,4565,4566,5,135,0,0,4566,4569,5,811,0,0,4567,4569,5,812,0,0, + 4568,4561,1,0,0,0,4568,4563,1,0,0,0,4568,4565,1,0,0,0,4568,4567, + 1,0,0,0,4569,363,1,0,0,0,4570,4571,5,25,0,0,4571,4572,5,453,0,0, + 4572,4573,5,176,0,0,4573,4578,3,380,190,0,4574,4575,5,868,0,0,4575, + 4577,3,380,190,0,4576,4574,1,0,0,0,4577,4580,1,0,0,0,4578,4576,1, + 0,0,0,4578,4579,1,0,0,0,4579,4582,1,0,0,0,4580,4578,1,0,0,0,4581, + 4583,3,400,200,0,4582,4581,1,0,0,0,4582,4583,1,0,0,0,4583,365,1, + 0,0,0,4584,4585,5,25,0,0,4585,4586,5,572,0,0,4586,4587,5,400,0,0, + 4587,4592,3,402,201,0,4588,4589,5,868,0,0,4589,4591,3,402,201,0, + 4590,4588,1,0,0,0,4591,4594,1,0,0,0,4592,4590,1,0,0,0,4592,4593, + 1,0,0,0,4593,4596,1,0,0,0,4594,4592,1,0,0,0,4595,4597,3,400,200, + 0,4596,4595,1,0,0,0,4596,4597,1,0,0,0,4597,367,1,0,0,0,4598,4599, + 5,25,0,0,4599,4600,5,572,0,0,4600,4601,5,605,0,0,4601,4602,5,176, + 0,0,4602,4607,3,390,195,0,4603,4604,5,868,0,0,4604,4606,3,390,195, + 0,4605,4603,1,0,0,0,4606,4609,1,0,0,0,4607,4605,1,0,0,0,4607,4608, + 1,0,0,0,4608,4611,1,0,0,0,4609,4607,1,0,0,0,4610,4612,3,400,200, + 0,4611,4610,1,0,0,0,4611,4612,1,0,0,0,4612,369,1,0,0,0,4613,4614, + 5,133,0,0,4614,4615,7,63,0,0,4615,4620,5,452,0,0,4616,4617,5,176, + 0,0,4617,4621,5,882,0,0,4618,4619,5,16,0,0,4619,4621,5,882,0,0,4620, + 4616,1,0,0,0,4620,4618,1,0,0,0,4621,371,1,0,0,0,4622,4623,5,640, + 0,0,4623,4632,7,64,0,0,4624,4629,3,406,203,0,4625,4626,5,868,0,0, + 4626,4628,3,406,203,0,4627,4625,1,0,0,0,4628,4631,1,0,0,0,4629,4627, + 1,0,0,0,4629,4630,1,0,0,0,4630,4633,1,0,0,0,4631,4629,1,0,0,0,4632, + 4624,1,0,0,0,4632,4633,1,0,0,0,4633,4636,1,0,0,0,4634,4635,5,676, + 0,0,4635,4637,3,408,204,0,4636,4634,1,0,0,0,4636,4637,1,0,0,0,4637, + 4641,1,0,0,0,4638,4640,3,410,205,0,4639,4638,1,0,0,0,4640,4643,1, + 0,0,0,4641,4639,1,0,0,0,4641,4642,1,0,0,0,4642,4645,1,0,0,0,4643, + 4641,1,0,0,0,4644,4646,3,400,200,0,4645,4644,1,0,0,0,4645,4646,1, + 0,0,0,4646,373,1,0,0,0,4647,4648,5,646,0,0,4648,4657,7,64,0,0,4649, + 4654,3,406,203,0,4650,4651,5,868,0,0,4651,4653,3,406,203,0,4652, + 4650,1,0,0,0,4653,4656,1,0,0,0,4654,4652,1,0,0,0,4654,4655,1,0,0, + 0,4655,4658,1,0,0,0,4656,4654,1,0,0,0,4657,4649,1,0,0,0,4657,4658, + 1,0,0,0,4658,4660,1,0,0,0,4659,4661,3,400,200,0,4660,4659,1,0,0, + 0,4660,4661,1,0,0,0,4661,375,1,0,0,0,4662,4663,5,640,0,0,4663,4667, + 5,415,0,0,4664,4665,5,678,0,0,4665,4666,5,857,0,0,4666,4668,5,882, + 0,0,4667,4664,1,0,0,0,4667,4668,1,0,0,0,4668,4673,1,0,0,0,4669,4670, + 5,868,0,0,4670,4671,5,529,0,0,4671,4672,5,857,0,0,4672,4674,5,882, + 0,0,4673,4669,1,0,0,0,4673,4674,1,0,0,0,4674,4679,1,0,0,0,4675,4676, + 5,868,0,0,4676,4677,5,363,0,0,4677,4678,5,857,0,0,4678,4680,5,882, + 0,0,4679,4675,1,0,0,0,4679,4680,1,0,0,0,4680,377,1,0,0,0,4681,4682, + 5,646,0,0,4682,4683,5,415,0,0,4683,379,1,0,0,0,4684,4685,3,382,191, + 0,4685,4686,5,857,0,0,4686,4687,5,882,0,0,4687,4712,1,0,0,0,4688, + 4689,3,384,192,0,4689,4690,5,857,0,0,4690,4691,3,722,361,0,4691, + 4712,1,0,0,0,4692,4693,3,386,193,0,4693,4694,5,857,0,0,4694,4695, + 7,26,0,0,4695,4712,1,0,0,0,4696,4712,3,388,194,0,4697,4698,5,424, + 0,0,4698,4699,5,857,0,0,4699,4708,5,866,0,0,4700,4705,3,716,358, + 0,4701,4702,5,868,0,0,4702,4704,3,716,358,0,4703,4701,1,0,0,0,4704, + 4707,1,0,0,0,4705,4703,1,0,0,0,4705,4706,1,0,0,0,4706,4709,1,0,0, + 0,4707,4705,1,0,0,0,4708,4700,1,0,0,0,4708,4709,1,0,0,0,4709,4710, + 1,0,0,0,4710,4712,5,867,0,0,4711,4684,1,0,0,0,4711,4688,1,0,0,0, + 4711,4692,1,0,0,0,4711,4696,1,0,0,0,4711,4697,1,0,0,0,4712,381,1, + 0,0,0,4713,4714,7,65,0,0,4714,383,1,0,0,0,4715,4716,7,66,0,0,4716, + 385,1,0,0,0,4717,4718,7,67,0,0,4718,387,1,0,0,0,4719,4720,5,543, + 0,0,4720,4721,5,857,0,0,4721,4733,7,68,0,0,4722,4723,5,574,0,0,4723, + 4724,5,857,0,0,4724,4733,7,69,0,0,4725,4726,5,310,0,0,4726,4730, + 5,857,0,0,4727,4731,5,507,0,0,4728,4731,5,450,0,0,4729,4731,3,412, + 206,0,4730,4727,1,0,0,0,4730,4728,1,0,0,0,4730,4729,1,0,0,0,4731, + 4733,1,0,0,0,4732,4719,1,0,0,0,4732,4722,1,0,0,0,4732,4725,1,0,0, + 0,4733,389,1,0,0,0,4734,4735,3,392,196,0,4735,4736,5,857,0,0,4736, + 4737,5,882,0,0,4737,4762,1,0,0,0,4738,4739,3,394,197,0,4739,4740, + 5,857,0,0,4740,4741,3,722,361,0,4741,4762,1,0,0,0,4742,4743,3,396, + 198,0,4743,4744,5,857,0,0,4744,4745,7,26,0,0,4745,4762,1,0,0,0,4746, + 4762,3,398,199,0,4747,4748,5,424,0,0,4748,4749,5,857,0,0,4749,4758, + 5,866,0,0,4750,4755,3,716,358,0,4751,4752,5,868,0,0,4752,4754,3, + 716,358,0,4753,4751,1,0,0,0,4754,4757,1,0,0,0,4755,4753,1,0,0,0, + 4755,4756,1,0,0,0,4756,4759,1,0,0,0,4757,4755,1,0,0,0,4758,4750, + 1,0,0,0,4758,4759,1,0,0,0,4759,4760,1,0,0,0,4760,4762,5,867,0,0, + 4761,4734,1,0,0,0,4761,4738,1,0,0,0,4761,4742,1,0,0,0,4761,4746, + 1,0,0,0,4761,4747,1,0,0,0,4762,391,1,0,0,0,4763,4764,7,70,0,0,4764, + 393,1,0,0,0,4765,4766,7,71,0,0,4766,395,1,0,0,0,4767,4768,7,72,0, + 0,4768,397,1,0,0,0,4769,4770,5,543,0,0,4770,4771,5,857,0,0,4771, + 4783,7,68,0,0,4772,4773,5,574,0,0,4773,4774,5,857,0,0,4774,4783, + 7,73,0,0,4775,4776,5,310,0,0,4776,4780,5,857,0,0,4777,4781,5,507, + 0,0,4778,4781,5,450,0,0,4779,4781,3,412,206,0,4780,4777,1,0,0,0, + 4780,4778,1,0,0,0,4780,4779,1,0,0,0,4781,4783,1,0,0,0,4782,4769, + 1,0,0,0,4782,4772,1,0,0,0,4782,4775,1,0,0,0,4783,399,1,0,0,0,4784, + 4785,5,65,0,0,4785,4786,5,328,0,0,4786,4787,5,882,0,0,4787,401,1, + 0,0,0,4788,4789,5,565,0,0,4789,4790,5,857,0,0,4790,4791,5,866,0, + 0,4791,4796,3,638,319,0,4792,4793,5,868,0,0,4793,4795,3,638,319, + 0,4794,4792,1,0,0,0,4795,4798,1,0,0,0,4796,4794,1,0,0,0,4796,4797, + 1,0,0,0,4797,4799,1,0,0,0,4798,4796,1,0,0,0,4799,4800,5,867,0,0, + 4800,4852,1,0,0,0,4801,4802,5,567,0,0,4802,4803,5,857,0,0,4803,4804, + 5,866,0,0,4804,4809,3,638,319,0,4805,4806,5,868,0,0,4806,4808,3, + 638,319,0,4807,4805,1,0,0,0,4808,4811,1,0,0,0,4809,4807,1,0,0,0, + 4809,4810,1,0,0,0,4810,4812,1,0,0,0,4811,4809,1,0,0,0,4812,4813, + 5,867,0,0,4813,4852,1,0,0,0,4814,4815,5,566,0,0,4815,4816,5,857, + 0,0,4816,4817,5,866,0,0,4817,4818,3,660,330,0,4818,4819,5,867,0, + 0,4819,4852,1,0,0,0,4820,4821,5,568,0,0,4821,4822,5,857,0,0,4822, + 4823,5,866,0,0,4823,4824,3,660,330,0,4824,4825,5,867,0,0,4825,4852, + 1,0,0,0,4826,4827,5,570,0,0,4827,4828,5,857,0,0,4828,4829,5,866, + 0,0,4829,4830,3,760,380,0,4830,4831,5,867,0,0,4831,4852,1,0,0,0, + 4832,4833,5,571,0,0,4833,4834,5,857,0,0,4834,4835,5,866,0,0,4835, + 4836,3,760,380,0,4836,4837,5,867,0,0,4837,4852,1,0,0,0,4838,4839, + 5,569,0,0,4839,4840,5,857,0,0,4840,4841,5,866,0,0,4841,4846,3,404, + 202,0,4842,4843,5,868,0,0,4843,4845,3,404,202,0,4844,4842,1,0,0, + 0,4845,4848,1,0,0,0,4846,4844,1,0,0,0,4846,4847,1,0,0,0,4847,4849, + 1,0,0,0,4848,4846,1,0,0,0,4849,4850,5,867,0,0,4850,4852,1,0,0,0, + 4851,4788,1,0,0,0,4851,4801,1,0,0,0,4851,4814,1,0,0,0,4851,4820, + 1,0,0,0,4851,4826,1,0,0,0,4851,4832,1,0,0,0,4851,4838,1,0,0,0,4852, + 403,1,0,0,0,4853,4854,5,866,0,0,4854,4855,3,662,331,0,4855,4856, + 5,868,0,0,4856,4857,3,662,331,0,4857,4858,5,867,0,0,4858,405,1,0, + 0,0,4859,4860,7,74,0,0,4860,407,1,0,0,0,4861,4862,7,75,0,0,4862, + 4863,5,857,0,0,4863,4887,3,412,206,0,4864,4865,5,460,0,0,4865,4866, + 5,857,0,0,4866,4867,5,882,0,0,4867,4868,5,868,0,0,4868,4869,5,461, + 0,0,4869,4870,5,857,0,0,4870,4887,3,722,361,0,4871,4872,5,611,0, + 0,4872,4873,5,857,0,0,4873,4874,5,882,0,0,4874,4875,5,868,0,0,4875, + 4876,5,612,0,0,4876,4877,5,857,0,0,4877,4887,3,722,361,0,4878,4879, + 5,557,0,0,4879,4880,5,857,0,0,4880,4881,5,882,0,0,4881,4882,5,868, + 0,0,4882,4883,5,558,0,0,4883,4884,5,857,0,0,4884,4887,3,722,361, + 0,4885,4887,5,634,0,0,4886,4861,1,0,0,0,4886,4864,1,0,0,0,4886,4871, + 1,0,0,0,4886,4878,1,0,0,0,4886,4885,1,0,0,0,4887,409,1,0,0,0,4888, + 4889,5,678,0,0,4889,4890,5,857,0,0,4890,4901,5,882,0,0,4891,4892, + 5,529,0,0,4892,4893,5,857,0,0,4893,4901,5,882,0,0,4894,4895,5,363, + 0,0,4895,4896,5,857,0,0,4896,4901,5,882,0,0,4897,4898,5,535,0,0, + 4898,4899,5,857,0,0,4899,4901,5,882,0,0,4900,4888,1,0,0,0,4900,4891, + 1,0,0,0,4900,4894,1,0,0,0,4900,4897,1,0,0,0,4901,411,1,0,0,0,4902, + 4907,3,706,353,0,4903,4904,5,868,0,0,4904,4906,3,706,353,0,4905, + 4903,1,0,0,0,4906,4909,1,0,0,0,4907,4905,1,0,0,0,4907,4908,1,0,0, + 0,4908,4912,1,0,0,0,4909,4907,1,0,0,0,4910,4912,5,882,0,0,4911,4902, + 1,0,0,0,4911,4910,1,0,0,0,4912,413,1,0,0,0,4913,4914,5,694,0,0,4914, + 4915,7,76,0,0,4915,4917,3,708,354,0,4916,4918,7,77,0,0,4917,4916, + 1,0,0,0,4917,4918,1,0,0,0,4918,415,1,0,0,0,4919,4920,5,694,0,0,4920, + 4921,5,378,0,0,4921,4927,3,708,354,0,4922,4925,5,654,0,0,4923,4924, + 5,65,0,0,4924,4926,5,489,0,0,4925,4923,1,0,0,0,4925,4926,1,0,0,0, + 4926,4928,1,0,0,0,4927,4922,1,0,0,0,4927,4928,1,0,0,0,4928,417,1, + 0,0,0,4929,4930,5,694,0,0,4930,4931,5,540,0,0,4931,4932,3,708,354, + 0,4932,419,1,0,0,0,4933,4934,5,694,0,0,4934,4935,5,341,0,0,4935, + 4938,3,708,354,0,4936,4937,5,513,0,0,4937,4939,5,533,0,0,4938,4936, + 1,0,0,0,4938,4939,1,0,0,0,4939,421,1,0,0,0,4940,4941,5,694,0,0,4941, + 4942,5,583,0,0,4942,4943,3,708,354,0,4943,423,1,0,0,0,4944,4945, + 5,694,0,0,4945,4948,5,551,0,0,4946,4947,5,33,0,0,4947,4949,3,708, + 354,0,4948,4946,1,0,0,0,4948,4949,1,0,0,0,4949,425,1,0,0,0,4950, + 4951,5,540,0,0,4951,4952,3,716,358,0,4952,4955,5,68,0,0,4953,4956, + 5,882,0,0,4954,4956,5,892,0,0,4955,4953,1,0,0,0,4955,4954,1,0,0, + 0,4956,427,1,0,0,0,4957,4958,5,717,0,0,4958,4961,3,716,358,0,4959, + 4960,5,188,0,0,4960,4962,3,762,381,0,4961,4959,1,0,0,0,4961,4962, + 1,0,0,0,4962,429,1,0,0,0,4963,4964,7,78,0,0,4964,4965,5,540,0,0, + 4965,4966,3,716,358,0,4966,431,1,0,0,0,4967,4970,3,434,217,0,4968, + 4970,3,4,2,0,4969,4967,1,0,0,0,4969,4968,1,0,0,0,4970,433,1,0,0, + 0,4971,4972,3,716,358,0,4972,4973,5,878,0,0,4973,4975,1,0,0,0,4974, + 4971,1,0,0,0,4974,4975,1,0,0,0,4975,4976,1,0,0,0,4976,4982,5,317, + 0,0,4977,4978,3,454,227,0,4978,4979,5,869,0,0,4979,4981,1,0,0,0, + 4980,4977,1,0,0,0,4981,4984,1,0,0,0,4982,4980,1,0,0,0,4982,4983, + 1,0,0,0,4983,4990,1,0,0,0,4984,4982,1,0,0,0,4985,4986,3,456,228, + 0,4986,4987,5,869,0,0,4987,4989,1,0,0,0,4988,4985,1,0,0,0,4989,4992, + 1,0,0,0,4990,4988,1,0,0,0,4990,4991,1,0,0,0,4991,4998,1,0,0,0,4992, + 4990,1,0,0,0,4993,4994,3,458,229,0,4994,4995,5,869,0,0,4995,4997, + 1,0,0,0,4996,4993,1,0,0,0,4997,5000,1,0,0,0,4998,4996,1,0,0,0,4998, + 4999,1,0,0,0,4999,5006,1,0,0,0,5000,4998,1,0,0,0,5001,5002,3,460, + 230,0,5002,5003,5,869,0,0,5003,5005,1,0,0,0,5004,5001,1,0,0,0,5005, + 5008,1,0,0,0,5006,5004,1,0,0,0,5006,5007,1,0,0,0,5007,5012,1,0,0, + 0,5008,5006,1,0,0,0,5009,5011,3,464,232,0,5010,5009,1,0,0,0,5011, + 5014,1,0,0,0,5012,5010,1,0,0,0,5012,5013,1,0,0,0,5013,5015,1,0,0, + 0,5014,5012,1,0,0,0,5015,5017,5,378,0,0,5016,5018,3,716,358,0,5017, + 5016,1,0,0,0,5017,5018,1,0,0,0,5018,435,1,0,0,0,5019,5022,5,23,0, + 0,5020,5023,3,716,358,0,5021,5023,3,814,407,0,5022,5020,1,0,0,0, + 5022,5021,1,0,0,0,5022,5023,1,0,0,0,5023,5025,1,0,0,0,5024,5026, + 3,466,233,0,5025,5024,1,0,0,0,5026,5027,1,0,0,0,5027,5025,1,0,0, + 0,5027,5028,1,0,0,0,5028,5035,1,0,0,0,5029,5031,5,53,0,0,5030,5032, + 3,464,232,0,5031,5030,1,0,0,0,5032,5033,1,0,0,0,5033,5031,1,0,0, + 0,5033,5034,1,0,0,0,5034,5036,1,0,0,0,5035,5029,1,0,0,0,5035,5036, + 1,0,0,0,5036,5037,1,0,0,0,5037,5038,5,378,0,0,5038,5039,5,23,0,0, + 5039,437,1,0,0,0,5040,5041,5,78,0,0,5041,5042,3,814,407,0,5042,5044, + 5,175,0,0,5043,5045,3,464,232,0,5044,5043,1,0,0,0,5045,5046,1,0, + 0,0,5046,5044,1,0,0,0,5046,5047,1,0,0,0,5047,5051,1,0,0,0,5048,5050, + 3,468,234,0,5049,5048,1,0,0,0,5050,5053,1,0,0,0,5051,5049,1,0,0, + 0,5051,5052,1,0,0,0,5052,5060,1,0,0,0,5053,5051,1,0,0,0,5054,5056, + 5,53,0,0,5055,5057,3,464,232,0,5056,5055,1,0,0,0,5057,5058,1,0,0, + 0,5058,5056,1,0,0,0,5058,5059,1,0,0,0,5059,5061,1,0,0,0,5060,5054, + 1,0,0,0,5060,5061,1,0,0,0,5061,5062,1,0,0,0,5062,5063,5,378,0,0, + 5063,5064,5,78,0,0,5064,439,1,0,0,0,5065,5066,5,90,0,0,5066,5067, + 3,716,358,0,5067,441,1,0,0,0,5068,5069,5,97,0,0,5069,5070,3,716, + 358,0,5070,443,1,0,0,0,5071,5072,3,716,358,0,5072,5073,5,878,0,0, + 5073,5075,1,0,0,0,5074,5071,1,0,0,0,5074,5075,1,0,0,0,5075,5076, + 1,0,0,0,5076,5078,5,106,0,0,5077,5079,3,464,232,0,5078,5077,1,0, + 0,0,5079,5080,1,0,0,0,5080,5078,1,0,0,0,5080,5081,1,0,0,0,5081,5082, + 1,0,0,0,5082,5083,5,378,0,0,5083,5085,5,106,0,0,5084,5086,3,716, + 358,0,5085,5084,1,0,0,0,5085,5086,1,0,0,0,5086,445,1,0,0,0,5087, + 5088,3,716,358,0,5088,5089,5,878,0,0,5089,5091,1,0,0,0,5090,5087, + 1,0,0,0,5090,5091,1,0,0,0,5091,5092,1,0,0,0,5092,5094,5,142,0,0, + 5093,5095,3,464,232,0,5094,5093,1,0,0,0,5095,5096,1,0,0,0,5096,5094, + 1,0,0,0,5096,5097,1,0,0,0,5097,5098,1,0,0,0,5098,5099,5,676,0,0, + 5099,5100,3,814,407,0,5100,5101,5,378,0,0,5101,5103,5,142,0,0,5102, + 5104,3,716,358,0,5103,5102,1,0,0,0,5103,5104,1,0,0,0,5104,447,1, + 0,0,0,5105,5106,5,148,0,0,5106,5107,3,814,407,0,5107,449,1,0,0,0, + 5108,5109,3,716,358,0,5109,5110,5,878,0,0,5110,5112,1,0,0,0,5111, + 5108,1,0,0,0,5111,5112,1,0,0,0,5112,5113,1,0,0,0,5113,5114,5,193, + 0,0,5114,5115,3,814,407,0,5115,5117,5,371,0,0,5116,5118,3,464,232, + 0,5117,5116,1,0,0,0,5118,5119,1,0,0,0,5119,5117,1,0,0,0,5119,5120, + 1,0,0,0,5120,5121,1,0,0,0,5121,5122,5,378,0,0,5122,5124,5,193,0, + 0,5123,5125,3,716,358,0,5124,5123,1,0,0,0,5124,5125,1,0,0,0,5125, + 451,1,0,0,0,5126,5127,5,334,0,0,5127,5142,3,716,358,0,5128,5133, + 5,64,0,0,5129,5131,5,501,0,0,5130,5129,1,0,0,0,5130,5131,1,0,0,0, + 5131,5132,1,0,0,0,5132,5134,5,68,0,0,5133,5130,1,0,0,0,5133,5134, + 1,0,0,0,5134,5135,1,0,0,0,5135,5136,3,716,358,0,5136,5137,5,88,0, + 0,5137,5138,3,714,357,0,5138,5142,1,0,0,0,5139,5140,5,516,0,0,5140, + 5142,3,716,358,0,5141,5126,1,0,0,0,5141,5128,1,0,0,0,5141,5139,1, + 0,0,0,5142,453,1,0,0,0,5143,5144,5,41,0,0,5144,5145,3,714,357,0, + 5145,5148,3,736,368,0,5146,5147,5,42,0,0,5147,5149,3,814,407,0,5148, + 5146,1,0,0,0,5148,5149,1,0,0,0,5149,455,1,0,0,0,5150,5151,5,41,0, + 0,5151,5152,3,716,358,0,5152,5153,5,30,0,0,5153,5160,5,65,0,0,5154, + 5161,3,722,361,0,5155,5157,5,164,0,0,5156,5158,5,682,0,0,5157,5156, + 1,0,0,0,5157,5158,1,0,0,0,5158,5159,1,0,0,0,5159,5161,5,882,0,0, + 5160,5154,1,0,0,0,5160,5155,1,0,0,0,5161,457,1,0,0,0,5162,5163,5, + 41,0,0,5163,5164,3,716,358,0,5164,5165,5,38,0,0,5165,5166,5,65,0, + 0,5166,5167,3,210,105,0,5167,459,1,0,0,0,5168,5169,5,41,0,0,5169, + 5170,7,79,0,0,5170,5171,5,417,0,0,5171,5172,5,65,0,0,5172,5177,3, + 462,231,0,5173,5174,5,868,0,0,5174,5176,3,462,231,0,5175,5173,1, + 0,0,0,5176,5179,1,0,0,0,5177,5175,1,0,0,0,5177,5178,1,0,0,0,5178, + 5180,1,0,0,0,5179,5177,1,0,0,0,5180,5181,3,432,216,0,5181,461,1, + 0,0,0,5182,5194,3,722,361,0,5183,5185,5,164,0,0,5184,5186,5,682, + 0,0,5185,5184,1,0,0,0,5185,5186,1,0,0,0,5186,5187,1,0,0,0,5187,5194, + 5,882,0,0,5188,5194,3,716,358,0,5189,5194,5,165,0,0,5190,5191,5, + 114,0,0,5191,5194,5,407,0,0,5192,5194,5,163,0,0,5193,5182,1,0,0, + 0,5193,5183,1,0,0,0,5193,5188,1,0,0,0,5193,5189,1,0,0,0,5193,5190, + 1,0,0,0,5193,5192,1,0,0,0,5194,463,1,0,0,0,5195,5198,3,18,9,0,5196, + 5198,3,4,2,0,5197,5195,1,0,0,0,5197,5196,1,0,0,0,5198,5199,1,0,0, + 0,5199,5200,5,869,0,0,5200,465,1,0,0,0,5201,5204,5,191,0,0,5202, + 5205,3,734,367,0,5203,5205,3,814,407,0,5204,5202,1,0,0,0,5204,5203, + 1,0,0,0,5205,5206,1,0,0,0,5206,5208,5,175,0,0,5207,5209,3,464,232, + 0,5208,5207,1,0,0,0,5209,5210,1,0,0,0,5210,5208,1,0,0,0,5210,5211, + 1,0,0,0,5211,467,1,0,0,0,5212,5213,5,54,0,0,5213,5214,3,814,407, + 0,5214,5216,5,175,0,0,5215,5217,3,464,232,0,5216,5215,1,0,0,0,5217, + 5218,1,0,0,0,5218,5216,1,0,0,0,5218,5219,1,0,0,0,5219,469,1,0,0, + 0,5220,5221,5,8,0,0,5221,5223,5,678,0,0,5222,5224,3,768,384,0,5223, + 5222,1,0,0,0,5223,5224,1,0,0,0,5224,5281,1,0,0,0,5225,5230,3,502, + 251,0,5226,5227,5,868,0,0,5227,5229,3,502,251,0,5228,5226,1,0,0, + 0,5229,5232,1,0,0,0,5230,5228,1,0,0,0,5230,5231,1,0,0,0,5231,5282, + 1,0,0,0,5232,5230,1,0,0,0,5233,5238,3,504,252,0,5234,5235,5,868, + 0,0,5235,5237,3,504,252,0,5236,5234,1,0,0,0,5237,5240,1,0,0,0,5238, + 5236,1,0,0,0,5238,5239,1,0,0,0,5239,5255,1,0,0,0,5240,5238,1,0,0, + 0,5241,5253,5,144,0,0,5242,5254,5,505,0,0,5243,5250,3,516,258,0, + 5244,5246,5,11,0,0,5245,5244,1,0,0,0,5245,5246,1,0,0,0,5246,5247, + 1,0,0,0,5247,5249,3,516,258,0,5248,5245,1,0,0,0,5249,5252,1,0,0, + 0,5250,5248,1,0,0,0,5250,5251,1,0,0,0,5251,5254,1,0,0,0,5252,5250, + 1,0,0,0,5253,5242,1,0,0,0,5253,5243,1,0,0,0,5254,5256,1,0,0,0,5255, + 5241,1,0,0,0,5255,5256,1,0,0,0,5256,5263,1,0,0,0,5257,5259,5,194, + 0,0,5258,5260,3,518,259,0,5259,5258,1,0,0,0,5260,5261,1,0,0,0,5261, + 5259,1,0,0,0,5261,5262,1,0,0,0,5262,5264,1,0,0,0,5263,5257,1,0,0, + 0,5263,5264,1,0,0,0,5264,5269,1,0,0,0,5265,5268,3,520,260,0,5266, + 5268,3,522,261,0,5267,5265,1,0,0,0,5267,5266,1,0,0,0,5268,5271,1, + 0,0,0,5269,5267,1,0,0,0,5269,5270,1,0,0,0,5270,5274,1,0,0,0,5271, + 5269,1,0,0,0,5272,5273,7,80,0,0,5273,5275,5,882,0,0,5274,5272,1, + 0,0,0,5274,5275,1,0,0,0,5275,5282,1,0,0,0,5276,5277,3,666,333,0, + 5277,5278,5,42,0,0,5278,5279,5,582,0,0,5279,5280,3,478,239,0,5280, + 5282,1,0,0,0,5281,5225,1,0,0,0,5281,5233,1,0,0,0,5281,5276,1,0,0, + 0,5282,471,1,0,0,0,5283,5284,5,34,0,0,5284,5286,5,678,0,0,5285,5287, + 3,770,385,0,5286,5285,1,0,0,0,5286,5287,1,0,0,0,5287,5288,1,0,0, + 0,5288,5290,3,694,347,0,5289,5291,3,506,253,0,5290,5289,1,0,0,0, + 5290,5291,1,0,0,0,5291,5299,1,0,0,0,5292,5293,5,868,0,0,5293,5295, + 3,694,347,0,5294,5296,3,506,253,0,5295,5294,1,0,0,0,5295,5296,1, + 0,0,0,5296,5298,1,0,0,0,5297,5292,1,0,0,0,5298,5301,1,0,0,0,5299, + 5297,1,0,0,0,5299,5300,1,0,0,0,5300,5305,1,0,0,0,5301,5299,1,0,0, + 0,5302,5303,5,42,0,0,5303,5304,5,582,0,0,5304,5306,3,478,239,0,5305, + 5302,1,0,0,0,5305,5306,1,0,0,0,5306,5321,1,0,0,0,5307,5319,5,144, + 0,0,5308,5320,5,505,0,0,5309,5316,3,516,258,0,5310,5312,5,11,0,0, + 5311,5310,1,0,0,0,5311,5312,1,0,0,0,5312,5313,1,0,0,0,5313,5315, + 3,516,258,0,5314,5311,1,0,0,0,5315,5318,1,0,0,0,5316,5314,1,0,0, + 0,5316,5317,1,0,0,0,5317,5320,1,0,0,0,5318,5316,1,0,0,0,5319,5308, + 1,0,0,0,5319,5309,1,0,0,0,5320,5322,1,0,0,0,5321,5307,1,0,0,0,5321, + 5322,1,0,0,0,5322,5329,1,0,0,0,5323,5325,5,194,0,0,5324,5326,3,518, + 259,0,5325,5324,1,0,0,0,5326,5327,1,0,0,0,5327,5325,1,0,0,0,5327, + 5328,1,0,0,0,5328,5330,1,0,0,0,5329,5323,1,0,0,0,5329,5330,1,0,0, + 0,5330,5335,1,0,0,0,5331,5334,3,520,260,0,5332,5334,3,522,261,0, + 5333,5331,1,0,0,0,5333,5332,1,0,0,0,5334,5337,1,0,0,0,5335,5333, + 1,0,0,0,5335,5336,1,0,0,0,5336,5340,1,0,0,0,5337,5335,1,0,0,0,5338, + 5339,7,80,0,0,5339,5341,5,882,0,0,5340,5338,1,0,0,0,5340,5341,1, + 0,0,0,5341,473,1,0,0,0,5342,5343,5,51,0,0,5343,5345,5,678,0,0,5344, + 5346,3,768,384,0,5345,5344,1,0,0,0,5345,5346,1,0,0,0,5346,5347,1, + 0,0,0,5347,5352,3,694,347,0,5348,5349,5,868,0,0,5349,5351,3,694, + 347,0,5350,5348,1,0,0,0,5351,5354,1,0,0,0,5352,5350,1,0,0,0,5352, + 5353,1,0,0,0,5353,475,1,0,0,0,5354,5352,1,0,0,0,5355,5356,5,73,0, + 0,5356,5361,3,530,265,0,5357,5358,5,868,0,0,5358,5360,3,530,265, + 0,5359,5357,1,0,0,0,5360,5363,1,0,0,0,5361,5359,1,0,0,0,5361,5362, + 1,0,0,0,5362,5364,1,0,0,0,5363,5361,1,0,0,0,5364,5366,5,119,0,0, + 5365,5367,3,498,249,0,5366,5365,1,0,0,0,5366,5367,1,0,0,0,5367,5368, + 1,0,0,0,5368,5369,3,534,267,0,5369,5379,5,176,0,0,5370,5375,3,510, + 255,0,5371,5372,5,868,0,0,5372,5374,3,510,255,0,5373,5371,1,0,0, + 0,5374,5377,1,0,0,0,5375,5373,1,0,0,0,5375,5376,1,0,0,0,5376,5380, + 1,0,0,0,5377,5375,1,0,0,0,5378,5380,3,664,332,0,5379,5370,1,0,0, + 0,5379,5378,1,0,0,0,5380,5395,1,0,0,0,5381,5393,5,144,0,0,5382,5394, + 5,505,0,0,5383,5390,3,516,258,0,5384,5386,5,11,0,0,5385,5384,1,0, + 0,0,5385,5386,1,0,0,0,5386,5387,1,0,0,0,5387,5389,3,516,258,0,5388, + 5385,1,0,0,0,5389,5392,1,0,0,0,5390,5388,1,0,0,0,5390,5391,1,0,0, + 0,5391,5394,1,0,0,0,5392,5390,1,0,0,0,5393,5382,1,0,0,0,5393,5383, + 1,0,0,0,5394,5396,1,0,0,0,5395,5381,1,0,0,0,5395,5396,1,0,0,0,5396, + 5406,1,0,0,0,5397,5403,5,194,0,0,5398,5399,5,73,0,0,5399,5402,5, + 121,0,0,5400,5402,3,518,259,0,5401,5398,1,0,0,0,5401,5400,1,0,0, + 0,5402,5405,1,0,0,0,5403,5401,1,0,0,0,5403,5404,1,0,0,0,5404,5407, + 1,0,0,0,5405,5403,1,0,0,0,5406,5397,1,0,0,0,5406,5407,1,0,0,0,5407, + 5415,1,0,0,0,5408,5409,5,13,0,0,5409,5413,3,694,347,0,5410,5411, + 5,194,0,0,5411,5412,5,582,0,0,5412,5414,3,478,239,0,5413,5410,1, + 0,0,0,5413,5414,1,0,0,0,5414,5416,1,0,0,0,5415,5408,1,0,0,0,5415, + 5416,1,0,0,0,5416,5445,1,0,0,0,5417,5420,5,73,0,0,5418,5419,5,547, + 0,0,5419,5421,5,119,0,0,5420,5418,1,0,0,0,5420,5421,1,0,0,0,5421, + 5422,1,0,0,0,5422,5427,3,666,333,0,5423,5424,5,868,0,0,5424,5426, + 3,666,333,0,5425,5423,1,0,0,0,5426,5429,1,0,0,0,5427,5425,1,0,0, + 0,5427,5428,1,0,0,0,5428,5430,1,0,0,0,5429,5427,1,0,0,0,5430,5431, + 5,176,0,0,5431,5436,3,666,333,0,5432,5433,5,868,0,0,5433,5435,3, + 666,333,0,5434,5432,1,0,0,0,5435,5438,1,0,0,0,5436,5434,1,0,0,0, + 5436,5437,1,0,0,0,5437,5442,1,0,0,0,5438,5436,1,0,0,0,5439,5440, + 5,194,0,0,5440,5441,5,704,0,0,5441,5443,5,121,0,0,5442,5439,1,0, + 0,0,5442,5443,1,0,0,0,5443,5445,1,0,0,0,5444,5355,1,0,0,0,5444,5417, + 1,0,0,0,5445,477,1,0,0,0,5446,5455,5,42,0,0,5447,5455,5,505,0,0, + 5448,5451,5,7,0,0,5449,5450,5,59,0,0,5450,5452,3,664,332,0,5451, + 5449,1,0,0,0,5451,5452,1,0,0,0,5452,5455,1,0,0,0,5453,5455,3,664, + 332,0,5454,5446,1,0,0,0,5454,5447,1,0,0,0,5454,5448,1,0,0,0,5454, + 5453,1,0,0,0,5455,479,1,0,0,0,5456,5457,5,73,0,0,5457,5458,5,547, + 0,0,5458,5459,5,119,0,0,5459,5460,3,694,347,0,5460,5461,5,176,0, + 0,5461,5466,3,694,347,0,5462,5463,5,868,0,0,5463,5465,3,694,347, + 0,5464,5462,1,0,0,0,5465,5468,1,0,0,0,5466,5464,1,0,0,0,5466,5467, + 1,0,0,0,5467,5472,1,0,0,0,5468,5466,1,0,0,0,5469,5470,5,194,0,0, + 5470,5471,5,73,0,0,5471,5473,5,121,0,0,5472,5469,1,0,0,0,5472,5473, + 1,0,0,0,5473,481,1,0,0,0,5474,5475,5,8,0,0,5475,5476,5,739,0,0,5476, + 5477,5,74,0,0,5477,5483,3,656,328,0,5478,5480,5,190,0,0,5479,5481, + 5,857,0,0,5480,5479,1,0,0,0,5480,5481,1,0,0,0,5481,5482,1,0,0,0, + 5482,5484,3,490,245,0,5483,5478,1,0,0,0,5483,5484,1,0,0,0,5484,5490, + 1,0,0,0,5485,5487,5,837,0,0,5486,5488,5,857,0,0,5487,5486,1,0,0, + 0,5487,5488,1,0,0,0,5488,5489,1,0,0,0,5489,5491,3,722,361,0,5490, + 5485,1,0,0,0,5490,5491,1,0,0,0,5491,5496,1,0,0,0,5492,5494,7,39, + 0,0,5493,5495,5,66,0,0,5494,5493,1,0,0,0,5494,5495,1,0,0,0,5495, + 5497,1,0,0,0,5496,5492,1,0,0,0,5496,5497,1,0,0,0,5497,483,1,0,0, + 0,5498,5499,5,34,0,0,5499,5500,5,739,0,0,5500,5501,5,74,0,0,5501, + 5502,3,654,327,0,5502,5503,5,839,0,0,5503,5504,5,857,0,0,5504,5510, + 7,81,0,0,5505,5507,5,190,0,0,5506,5508,5,857,0,0,5507,5506,1,0,0, + 0,5507,5508,1,0,0,0,5508,5509,1,0,0,0,5509,5511,3,490,245,0,5510, + 5505,1,0,0,0,5510,5511,1,0,0,0,5511,5517,1,0,0,0,5512,5514,5,837, + 0,0,5513,5515,5,857,0,0,5514,5513,1,0,0,0,5514,5515,1,0,0,0,5515, + 5516,1,0,0,0,5516,5518,3,722,361,0,5517,5512,1,0,0,0,5517,5518,1, + 0,0,0,5518,5520,1,0,0,0,5519,5521,7,39,0,0,5520,5519,1,0,0,0,5520, + 5521,1,0,0,0,5521,485,1,0,0,0,5522,5523,5,51,0,0,5523,5524,5,739, + 0,0,5524,5525,5,74,0,0,5525,5527,3,656,328,0,5526,5528,5,66,0,0, + 5527,5526,1,0,0,0,5527,5528,1,0,0,0,5528,487,1,0,0,0,5529,5530,5, + 155,0,0,5530,5531,5,739,0,0,5531,5532,5,74,0,0,5532,5542,3,656,328, + 0,5533,5534,5,65,0,0,5534,5539,3,722,361,0,5535,5536,5,868,0,0,5536, + 5538,3,722,361,0,5537,5535,1,0,0,0,5538,5541,1,0,0,0,5539,5537,1, + 0,0,0,5539,5540,1,0,0,0,5540,5543,1,0,0,0,5541,5539,1,0,0,0,5542, + 5533,1,0,0,0,5542,5543,1,0,0,0,5543,489,1,0,0,0,5544,5550,3,722, + 361,0,5545,5546,3,722,361,0,5546,5547,5,854,0,0,5547,5548,3,722, + 361,0,5548,5550,1,0,0,0,5549,5544,1,0,0,0,5549,5545,1,0,0,0,5550, + 5555,1,0,0,0,5551,5552,5,868,0,0,5552,5554,3,490,245,0,5553,5551, + 1,0,0,0,5554,5557,1,0,0,0,5555,5553,1,0,0,0,5555,5556,1,0,0,0,5556, + 491,1,0,0,0,5557,5555,1,0,0,0,5558,5559,5,141,0,0,5559,5560,5,678, + 0,0,5560,5565,3,536,268,0,5561,5562,5,868,0,0,5562,5564,3,536,268, + 0,5563,5561,1,0,0,0,5564,5567,1,0,0,0,5565,5563,1,0,0,0,5565,5566, + 1,0,0,0,5566,493,1,0,0,0,5567,5565,1,0,0,0,5568,5570,5,149,0,0,5569, + 5571,3,768,384,0,5570,5569,1,0,0,0,5570,5571,1,0,0,0,5571,5572,1, + 0,0,0,5572,5577,3,530,265,0,5573,5574,5,868,0,0,5574,5576,3,530, + 265,0,5575,5573,1,0,0,0,5576,5579,1,0,0,0,5577,5575,1,0,0,0,5577, + 5578,1,0,0,0,5578,5580,1,0,0,0,5579,5577,1,0,0,0,5580,5582,5,119, + 0,0,5581,5583,3,498,249,0,5582,5581,1,0,0,0,5582,5583,1,0,0,0,5583, + 5584,1,0,0,0,5584,5585,3,534,267,0,5585,5586,5,68,0,0,5586,5588, + 3,664,332,0,5587,5589,3,496,248,0,5588,5587,1,0,0,0,5588,5589,1, + 0,0,0,5589,5621,1,0,0,0,5590,5592,5,149,0,0,5591,5593,3,768,384, + 0,5592,5591,1,0,0,0,5592,5593,1,0,0,0,5593,5594,1,0,0,0,5594,5596, + 5,7,0,0,5595,5597,5,734,0,0,5596,5595,1,0,0,0,5596,5597,1,0,0,0, + 5597,5598,1,0,0,0,5598,5599,5,868,0,0,5599,5600,5,73,0,0,5600,5601, + 5,121,0,0,5601,5602,5,68,0,0,5602,5604,3,664,332,0,5603,5605,3,496, + 248,0,5604,5603,1,0,0,0,5604,5605,1,0,0,0,5605,5621,1,0,0,0,5606, + 5608,5,149,0,0,5607,5609,3,768,384,0,5608,5607,1,0,0,0,5608,5609, + 1,0,0,0,5609,5612,1,0,0,0,5610,5611,5,547,0,0,5611,5613,5,119,0, + 0,5612,5610,1,0,0,0,5612,5613,1,0,0,0,5613,5614,1,0,0,0,5614,5615, + 3,664,332,0,5615,5616,5,68,0,0,5616,5618,3,664,332,0,5617,5619,3, + 496,248,0,5618,5617,1,0,0,0,5618,5619,1,0,0,0,5619,5621,1,0,0,0, + 5620,5568,1,0,0,0,5620,5590,1,0,0,0,5620,5606,1,0,0,0,5621,495,1, + 0,0,0,5622,5623,5,79,0,0,5623,5624,5,674,0,0,5624,5625,5,678,0,0, + 5625,497,1,0,0,0,5626,5627,7,82,0,0,5627,499,1,0,0,0,5628,5629,5, + 155,0,0,5629,5632,5,529,0,0,5630,5631,5,65,0,0,5631,5633,3,694,347, + 0,5632,5630,1,0,0,0,5632,5633,1,0,0,0,5633,5634,1,0,0,0,5634,5637, + 5,857,0,0,5635,5638,3,808,404,0,5636,5638,5,882,0,0,5637,5635,1, + 0,0,0,5637,5636,1,0,0,0,5638,5661,1,0,0,0,5639,5640,5,155,0,0,5640, + 5643,5,529,0,0,5641,5642,5,65,0,0,5642,5644,3,694,347,0,5643,5641, + 1,0,0,0,5643,5644,1,0,0,0,5644,5649,1,0,0,0,5645,5646,5,176,0,0, + 5646,5650,5,829,0,0,5647,5648,5,857,0,0,5648,5650,5,882,0,0,5649, + 5645,1,0,0,0,5649,5647,1,0,0,0,5650,5653,1,0,0,0,5651,5652,5,143, + 0,0,5652,5654,5,882,0,0,5653,5651,1,0,0,0,5653,5654,1,0,0,0,5654, + 5658,1,0,0,0,5655,5656,5,147,0,0,5656,5657,5,36,0,0,5657,5659,5, + 529,0,0,5658,5655,1,0,0,0,5658,5659,1,0,0,0,5659,5661,1,0,0,0,5660, + 5628,1,0,0,0,5660,5639,1,0,0,0,5661,501,1,0,0,0,5662,5663,3,694, + 347,0,5663,5664,3,520,260,0,5664,503,1,0,0,0,5665,5691,3,694,347, + 0,5666,5667,5,423,0,0,5667,5668,5,20,0,0,5668,5669,5,882,0,0,5669, + 5692,3,512,256,0,5670,5671,5,423,0,0,5671,5672,5,20,0,0,5672,5673, + 5,829,0,0,5673,5674,5,529,0,0,5674,5692,3,512,256,0,5675,5676,5, + 423,0,0,5676,5677,5,194,0,0,5677,5692,3,514,257,0,5678,5679,5,369, + 0,0,5679,5680,5,511,0,0,5680,5692,5,529,0,0,5681,5682,7,83,0,0,5682, + 5684,3,528,264,0,5683,5685,3,524,262,0,5684,5683,1,0,0,0,5684,5685, + 1,0,0,0,5685,5687,1,0,0,0,5686,5681,1,0,0,0,5687,5688,1,0,0,0,5688, + 5686,1,0,0,0,5688,5689,1,0,0,0,5689,5692,1,0,0,0,5690,5692,3,526, + 263,0,5691,5666,1,0,0,0,5691,5670,1,0,0,0,5691,5675,1,0,0,0,5691, + 5678,1,0,0,0,5691,5686,1,0,0,0,5691,5690,1,0,0,0,5691,5692,1,0,0, + 0,5692,505,1,0,0,0,5693,5694,5,423,0,0,5694,5700,5,20,0,0,5695,5701, + 5,882,0,0,5696,5697,5,829,0,0,5697,5701,5,529,0,0,5698,5699,5,529, + 0,0,5699,5701,5,882,0,0,5700,5695,1,0,0,0,5700,5696,1,0,0,0,5700, + 5698,1,0,0,0,5701,5704,1,0,0,0,5702,5703,5,11,0,0,5703,5705,3,506, + 253,0,5704,5702,1,0,0,0,5704,5705,1,0,0,0,5705,5730,1,0,0,0,5706, + 5707,5,423,0,0,5707,5708,5,194,0,0,5708,5717,3,716,358,0,5709,5713, + 5,20,0,0,5710,5714,5,882,0,0,5711,5712,5,829,0,0,5712,5714,5,529, + 0,0,5713,5710,1,0,0,0,5713,5711,1,0,0,0,5714,5718,1,0,0,0,5715,5716, + 5,13,0,0,5716,5718,5,882,0,0,5717,5709,1,0,0,0,5717,5715,1,0,0,0, + 5717,5718,1,0,0,0,5718,5721,1,0,0,0,5719,5720,5,11,0,0,5720,5722, + 3,506,253,0,5721,5719,1,0,0,0,5721,5722,1,0,0,0,5722,5730,1,0,0, + 0,5723,5724,5,423,0,0,5724,5725,5,194,0,0,5725,5727,3,716,358,0, + 5726,5728,3,508,254,0,5727,5726,1,0,0,0,5727,5728,1,0,0,0,5728,5730, + 1,0,0,0,5729,5693,1,0,0,0,5729,5706,1,0,0,0,5729,5723,1,0,0,0,5730, + 507,1,0,0,0,5731,5732,5,427,0,0,5732,5733,5,708,0,0,5733,5734,5, + 423,0,0,5734,5738,5,20,0,0,5735,5736,5,829,0,0,5736,5739,5,529,0, + 0,5737,5739,5,882,0,0,5738,5735,1,0,0,0,5738,5737,1,0,0,0,5739,5749, + 1,0,0,0,5740,5741,5,427,0,0,5741,5742,5,708,0,0,5742,5743,5,423, + 0,0,5743,5744,5,194,0,0,5744,5745,3,716,358,0,5745,5746,5,13,0,0, + 5746,5747,5,882,0,0,5747,5749,1,0,0,0,5748,5731,1,0,0,0,5748,5740, + 1,0,0,0,5749,509,1,0,0,0,5750,5751,3,694,347,0,5751,5752,5,423,0, + 0,5752,5753,5,20,0,0,5753,5754,5,529,0,0,5754,5755,5,882,0,0,5755, + 5776,1,0,0,0,5756,5757,3,694,347,0,5757,5758,5,423,0,0,5758,5759, + 5,20,0,0,5759,5760,5,829,0,0,5760,5761,5,529,0,0,5761,5762,3,512, + 256,0,5762,5776,1,0,0,0,5763,5764,3,694,347,0,5764,5765,5,423,0, + 0,5765,5766,5,20,0,0,5766,5767,5,882,0,0,5767,5768,3,512,256,0,5768, + 5776,1,0,0,0,5769,5770,3,694,347,0,5770,5771,5,423,0,0,5771,5772, + 5,194,0,0,5772,5773,3,514,257,0,5773,5776,1,0,0,0,5774,5776,3,694, + 347,0,5775,5750,1,0,0,0,5775,5756,1,0,0,0,5775,5763,1,0,0,0,5775, + 5769,1,0,0,0,5775,5774,1,0,0,0,5776,511,1,0,0,0,5777,5778,5,143, + 0,0,5778,5780,5,882,0,0,5779,5777,1,0,0,0,5779,5780,1,0,0,0,5780, + 5784,1,0,0,0,5781,5782,5,147,0,0,5782,5783,5,36,0,0,5783,5785,5, + 529,0,0,5784,5781,1,0,0,0,5784,5785,1,0,0,0,5785,513,1,0,0,0,5786, + 5794,3,716,358,0,5787,5791,7,84,0,0,5788,5792,5,882,0,0,5789,5790, + 5,829,0,0,5790,5792,5,529,0,0,5791,5788,1,0,0,0,5791,5789,1,0,0, + 0,5792,5793,1,0,0,0,5793,5795,3,512,256,0,5794,5787,1,0,0,0,5794, + 5795,1,0,0,0,5795,5801,1,0,0,0,5796,5797,3,716,358,0,5797,5798,5, + 188,0,0,5798,5799,3,808,404,0,5799,5801,1,0,0,0,5800,5786,1,0,0, + 0,5800,5796,1,0,0,0,5801,515,1,0,0,0,5802,5811,5,169,0,0,5803,5811, + 5,693,0,0,5804,5805,5,331,0,0,5805,5811,5,882,0,0,5806,5807,5,441, + 0,0,5807,5811,5,882,0,0,5808,5809,5,651,0,0,5809,5811,5,882,0,0, + 5810,5802,1,0,0,0,5810,5803,1,0,0,0,5810,5804,1,0,0,0,5810,5806, + 1,0,0,0,5810,5808,1,0,0,0,5811,517,1,0,0,0,5812,5813,5,479,0,0,5813, + 5821,3,722,361,0,5814,5815,5,482,0,0,5815,5821,3,722,361,0,5816, + 5817,5,478,0,0,5817,5821,3,722,361,0,5818,5819,5,483,0,0,5819,5821, + 3,722,361,0,5820,5812,1,0,0,0,5820,5814,1,0,0,0,5820,5816,1,0,0, + 0,5820,5818,1,0,0,0,5821,519,1,0,0,0,5822,5823,5,529,0,0,5823,5830, + 5,390,0,0,5824,5831,5,42,0,0,5825,5831,5,500,0,0,5826,5827,5,87, + 0,0,5827,5828,3,722,361,0,5828,5829,5,698,0,0,5829,5831,1,0,0,0, + 5830,5824,1,0,0,0,5830,5825,1,0,0,0,5830,5826,1,0,0,0,5830,5831, + 1,0,0,0,5831,5861,1,0,0,0,5832,5833,5,529,0,0,5833,5836,5,420,0, + 0,5834,5837,5,42,0,0,5835,5837,3,722,361,0,5836,5834,1,0,0,0,5836, + 5835,1,0,0,0,5837,5861,1,0,0,0,5838,5839,5,529,0,0,5839,5840,5,581, + 0,0,5840,5845,5,87,0,0,5841,5846,5,42,0,0,5842,5843,3,722,361,0, + 5843,5844,5,698,0,0,5844,5846,1,0,0,0,5845,5841,1,0,0,0,5845,5842, + 1,0,0,0,5846,5861,1,0,0,0,5847,5848,5,529,0,0,5848,5849,5,144,0, + 0,5849,5851,5,36,0,0,5850,5852,7,85,0,0,5851,5850,1,0,0,0,5851,5852, + 1,0,0,0,5852,5861,1,0,0,0,5853,5854,5,395,0,0,5854,5861,3,722,361, + 0,5855,5858,5,530,0,0,5856,5859,3,722,361,0,5857,5859,5,669,0,0, + 5858,5856,1,0,0,0,5858,5857,1,0,0,0,5859,5861,1,0,0,0,5860,5822, + 1,0,0,0,5860,5832,1,0,0,0,5860,5838,1,0,0,0,5860,5847,1,0,0,0,5860, + 5853,1,0,0,0,5860,5855,1,0,0,0,5861,521,1,0,0,0,5862,5863,5,304, + 0,0,5863,5864,7,86,0,0,5864,523,1,0,0,0,5865,5868,5,423,0,0,5866, + 5867,5,194,0,0,5867,5869,3,716,358,0,5868,5866,1,0,0,0,5868,5869, + 1,0,0,0,5869,5878,1,0,0,0,5870,5874,5,20,0,0,5871,5875,5,882,0,0, + 5872,5873,5,829,0,0,5873,5875,5,529,0,0,5874,5871,1,0,0,0,5874,5872, + 1,0,0,0,5875,5879,1,0,0,0,5876,5877,5,13,0,0,5877,5879,5,882,0,0, + 5878,5870,1,0,0,0,5878,5876,1,0,0,0,5879,525,1,0,0,0,5880,5881,3, + 528,264,0,5881,5882,5,429,0,0,5882,5883,5,555,0,0,5883,5896,1,0, + 0,0,5884,5885,3,528,264,0,5885,5886,5,401,0,0,5886,5887,5,555,0, + 0,5887,5888,5,155,0,0,5888,5889,5,330,0,0,5889,5890,5,13,0,0,5890, + 5891,5,882,0,0,5891,5896,1,0,0,0,5892,5893,3,528,264,0,5893,5894, + 5,675,0,0,5894,5896,1,0,0,0,5895,5880,1,0,0,0,5895,5884,1,0,0,0, + 5895,5892,1,0,0,0,5896,527,1,0,0,0,5897,5898,7,87,0,0,5898,5899, + 5,394,0,0,5899,529,1,0,0,0,5900,5905,3,532,266,0,5901,5902,5,866, + 0,0,5902,5903,3,670,335,0,5903,5904,5,867,0,0,5904,5906,1,0,0,0, + 5905,5901,1,0,0,0,5905,5906,1,0,0,0,5906,531,1,0,0,0,5907,5909,5, + 7,0,0,5908,5910,5,734,0,0,5909,5908,1,0,0,0,5909,5910,1,0,0,0,5910, + 6001,1,0,0,0,5911,5913,5,8,0,0,5912,5914,5,743,0,0,5913,5912,1,0, + 0,0,5913,5914,1,0,0,0,5914,6001,1,0,0,0,5915,5923,5,34,0,0,5916, + 5917,5,660,0,0,5917,5924,5,752,0,0,5918,5924,5,743,0,0,5919,5924, + 5,684,0,0,5920,5924,5,678,0,0,5921,5924,5,658,0,0,5922,5924,5,582, + 0,0,5923,5916,1,0,0,0,5923,5918,1,0,0,0,5923,5919,1,0,0,0,5923,5920, + 1,0,0,0,5923,5921,1,0,0,0,5923,5922,1,0,0,0,5923,5924,1,0,0,0,5924, + 6001,1,0,0,0,5925,6001,5,44,0,0,5926,5928,5,51,0,0,5927,5929,5,582, + 0,0,5928,5927,1,0,0,0,5928,5929,1,0,0,0,5929,6001,1,0,0,0,5930,6001, + 5,385,0,0,5931,6001,5,717,0,0,5932,6001,5,718,0,0,5933,5934,5,73, + 0,0,5934,6001,5,121,0,0,5935,6001,5,82,0,0,5936,6001,5,86,0,0,5937, + 5938,5,104,0,0,5938,6001,5,752,0,0,5939,6001,5,735,0,0,5940,6001, + 5,547,0,0,5941,6001,5,138,0,0,5942,6001,5,736,0,0,5943,5944,5,572, + 0,0,5944,6001,7,88,0,0,5945,6001,5,154,0,0,5946,5947,5,157,0,0,5947, + 6001,7,89,0,0,5948,6001,5,749,0,0,5949,6001,5,750,0,0,5950,6001, + 5,178,0,0,5951,6001,5,185,0,0,5952,6001,5,186,0,0,5953,6001,5,705, + 0,0,5954,6001,5,706,0,0,5955,6001,5,707,0,0,5956,6001,5,709,0,0, + 5957,6001,5,710,0,0,5958,6001,5,711,0,0,5959,6001,5,712,0,0,5960, + 6001,5,714,0,0,5961,6001,5,715,0,0,5962,6001,5,716,0,0,5963,6001, + 5,719,0,0,5964,6001,5,720,0,0,5965,6001,5,721,0,0,5966,6001,5,722, + 0,0,5967,6001,5,723,0,0,5968,6001,5,724,0,0,5969,6001,5,725,0,0, + 5970,6001,5,726,0,0,5971,6001,5,727,0,0,5972,6001,5,728,0,0,5973, + 6001,5,731,0,0,5974,6001,5,732,0,0,5975,6001,5,733,0,0,5976,6001, + 5,737,0,0,5977,6001,5,738,0,0,5978,6001,5,740,0,0,5979,6001,5,741, + 0,0,5980,6001,5,742,0,0,5981,6001,5,745,0,0,5982,6001,5,746,0,0, + 5983,6001,5,747,0,0,5984,6001,5,160,0,0,5985,6001,5,748,0,0,5986, + 6001,5,836,0,0,5987,6001,5,751,0,0,5988,6001,5,753,0,0,5989,6001, + 5,838,0,0,5990,6001,5,754,0,0,5991,6001,5,755,0,0,5992,5993,5,103, + 0,0,5993,5994,5,68,0,0,5994,6001,5,744,0,0,5995,5996,5,154,0,0,5996, + 5997,5,88,0,0,5997,6001,5,744,0,0,5998,5999,5,729,0,0,5999,6001, + 5,730,0,0,6000,5907,1,0,0,0,6000,5911,1,0,0,0,6000,5915,1,0,0,0, + 6000,5925,1,0,0,0,6000,5926,1,0,0,0,6000,5930,1,0,0,0,6000,5931, + 1,0,0,0,6000,5932,1,0,0,0,6000,5933,1,0,0,0,6000,5935,1,0,0,0,6000, + 5936,1,0,0,0,6000,5937,1,0,0,0,6000,5939,1,0,0,0,6000,5940,1,0,0, + 0,6000,5941,1,0,0,0,6000,5942,1,0,0,0,6000,5943,1,0,0,0,6000,5945, + 1,0,0,0,6000,5946,1,0,0,0,6000,5948,1,0,0,0,6000,5949,1,0,0,0,6000, + 5950,1,0,0,0,6000,5951,1,0,0,0,6000,5952,1,0,0,0,6000,5953,1,0,0, + 0,6000,5954,1,0,0,0,6000,5955,1,0,0,0,6000,5956,1,0,0,0,6000,5957, + 1,0,0,0,6000,5958,1,0,0,0,6000,5959,1,0,0,0,6000,5960,1,0,0,0,6000, + 5961,1,0,0,0,6000,5962,1,0,0,0,6000,5963,1,0,0,0,6000,5964,1,0,0, + 0,6000,5965,1,0,0,0,6000,5966,1,0,0,0,6000,5967,1,0,0,0,6000,5968, + 1,0,0,0,6000,5969,1,0,0,0,6000,5970,1,0,0,0,6000,5971,1,0,0,0,6000, + 5972,1,0,0,0,6000,5973,1,0,0,0,6000,5974,1,0,0,0,6000,5975,1,0,0, + 0,6000,5976,1,0,0,0,6000,5977,1,0,0,0,6000,5978,1,0,0,0,6000,5979, + 1,0,0,0,6000,5980,1,0,0,0,6000,5981,1,0,0,0,6000,5982,1,0,0,0,6000, + 5983,1,0,0,0,6000,5984,1,0,0,0,6000,5985,1,0,0,0,6000,5986,1,0,0, + 0,6000,5987,1,0,0,0,6000,5988,1,0,0,0,6000,5989,1,0,0,0,6000,5990, + 1,0,0,0,6000,5991,1,0,0,0,6000,5992,1,0,0,0,6000,5995,1,0,0,0,6000, + 5998,1,0,0,0,6001,533,1,0,0,0,6002,6019,5,850,0,0,6003,6004,5,850, + 0,0,6004,6005,5,865,0,0,6005,6019,5,850,0,0,6006,6007,3,716,358, + 0,6007,6008,5,865,0,0,6008,6009,5,850,0,0,6009,6019,1,0,0,0,6010, + 6011,3,716,358,0,6011,6012,5,865,0,0,6012,6013,3,716,358,0,6013, + 6019,1,0,0,0,6014,6015,3,716,358,0,6015,6016,3,720,360,0,6016,6019, + 1,0,0,0,6017,6019,3,716,358,0,6018,6002,1,0,0,0,6018,6003,1,0,0, + 0,6018,6006,1,0,0,0,6018,6010,1,0,0,0,6018,6014,1,0,0,0,6018,6017, + 1,0,0,0,6019,535,1,0,0,0,6020,6021,3,694,347,0,6021,6022,5,176,0, + 0,6022,6023,3,694,347,0,6023,537,1,0,0,0,6024,6026,5,10,0,0,6025, + 6027,3,548,274,0,6026,6025,1,0,0,0,6026,6027,1,0,0,0,6027,6028,1, + 0,0,0,6028,6029,5,173,0,0,6029,6073,3,660,330,0,6030,6032,5,10,0, + 0,6031,6033,3,548,274,0,6032,6031,1,0,0,0,6032,6033,1,0,0,0,6033, + 6034,1,0,0,0,6034,6035,5,173,0,0,6035,6036,3,662,331,0,6036,6037, + 5,185,0,0,6037,6038,5,77,0,0,6038,6039,5,119,0,0,6039,6044,3,670, + 335,0,6040,6041,5,194,0,0,6041,6042,3,722,361,0,6042,6043,5,19,0, + 0,6043,6045,1,0,0,0,6044,6040,1,0,0,0,6044,6045,1,0,0,0,6045,6073, + 1,0,0,0,6046,6048,5,10,0,0,6047,6049,3,548,274,0,6048,6047,1,0,0, + 0,6048,6049,1,0,0,0,6049,6050,1,0,0,0,6050,6051,5,173,0,0,6051,6052, + 3,662,331,0,6052,6053,5,185,0,0,6053,6054,5,77,0,0,6054,6055,5,119, + 0,0,6055,6059,3,672,336,0,6056,6057,5,188,0,0,6057,6058,5,360,0, + 0,6058,6060,5,882,0,0,6059,6056,1,0,0,0,6059,6060,1,0,0,0,6060,6073, + 1,0,0,0,6061,6063,5,10,0,0,6062,6064,3,548,274,0,6063,6062,1,0,0, + 0,6063,6064,1,0,0,0,6064,6065,1,0,0,0,6065,6066,5,173,0,0,6066,6067, + 3,662,331,0,6067,6068,5,51,0,0,6068,6069,5,77,0,0,6069,6070,5,119, + 0,0,6070,6071,3,670,335,0,6071,6073,1,0,0,0,6072,6024,1,0,0,0,6072, + 6030,1,0,0,0,6072,6046,1,0,0,0,6072,6061,1,0,0,0,6073,539,1,0,0, + 0,6074,6075,5,27,0,0,6075,6076,5,173,0,0,6076,6080,3,660,330,0,6077, + 6079,3,550,275,0,6078,6077,1,0,0,0,6079,6082,1,0,0,0,6080,6078,1, + 0,0,0,6080,6081,1,0,0,0,6081,541,1,0,0,0,6082,6080,1,0,0,0,6083, + 6084,5,329,0,0,6084,6085,5,173,0,0,6085,6087,3,660,330,0,6086,6088, + 7,90,0,0,6087,6086,1,0,0,0,6087,6088,1,0,0,0,6088,543,1,0,0,0,6089, + 6091,5,120,0,0,6090,6092,3,548,274,0,6091,6090,1,0,0,0,6091,6092, + 1,0,0,0,6092,6093,1,0,0,0,6093,6094,7,61,0,0,6094,6095,3,660,330, + 0,6095,545,1,0,0,0,6096,6098,5,562,0,0,6097,6099,3,548,274,0,6098, + 6097,1,0,0,0,6098,6099,1,0,0,0,6099,6100,1,0,0,0,6100,6101,5,173, + 0,0,6101,6103,3,660,330,0,6102,6104,5,549,0,0,6103,6102,1,0,0,0, + 6103,6104,1,0,0,0,6104,6106,1,0,0,0,6105,6107,5,392,0,0,6106,6105, + 1,0,0,0,6106,6107,1,0,0,0,6107,6109,1,0,0,0,6108,6110,5,679,0,0, + 6109,6108,1,0,0,0,6109,6110,1,0,0,0,6110,547,1,0,0,0,6111,6112,7, + 91,0,0,6112,549,1,0,0,0,6113,6114,5,65,0,0,6114,6121,5,677,0,0,6115, + 6121,5,549,0,0,6116,6121,5,396,0,0,6117,6121,5,484,0,0,6118,6121, + 5,392,0,0,6119,6121,5,327,0,0,6120,6113,1,0,0,0,6120,6115,1,0,0, + 0,6120,6116,1,0,0,0,6120,6117,1,0,0,0,6120,6118,1,0,0,0,6120,6119, + 1,0,0,0,6121,551,1,0,0,0,6122,6123,5,432,0,0,6123,6124,5,344,0,0, + 6124,6129,3,716,358,0,6125,6126,5,868,0,0,6126,6128,3,716,358,0, + 6127,6125,1,0,0,0,6128,6131,1,0,0,0,6129,6127,1,0,0,0,6129,6130, + 1,0,0,0,6130,6141,1,0,0,0,6131,6129,1,0,0,0,6132,6133,5,155,0,0, + 6133,6138,3,554,277,0,6134,6135,5,868,0,0,6135,6137,3,554,277,0, + 6136,6134,1,0,0,0,6137,6140,1,0,0,0,6138,6136,1,0,0,0,6138,6139, + 1,0,0,0,6139,6142,1,0,0,0,6140,6138,1,0,0,0,6141,6132,1,0,0,0,6141, + 6142,1,0,0,0,6142,553,1,0,0,0,6143,6144,7,92,0,0,6144,6145,3,712, + 356,0,6145,6146,5,857,0,0,6146,6147,3,814,407,0,6147,555,1,0,0,0, + 6148,6149,5,673,0,0,6149,6150,5,344,0,0,6150,6155,3,716,358,0,6151, + 6152,5,868,0,0,6152,6154,3,716,358,0,6153,6151,1,0,0,0,6154,6157, + 1,0,0,0,6155,6153,1,0,0,0,6155,6156,1,0,0,0,6156,557,1,0,0,0,6157, + 6155,1,0,0,0,6158,6159,5,432,0,0,6159,6160,5,534,0,0,6160,6161,3, + 716,358,0,6161,6162,5,603,0,0,6162,6163,5,882,0,0,6163,559,1,0,0, + 0,6164,6165,5,673,0,0,6165,6166,5,534,0,0,6166,6167,3,716,358,0, + 6167,561,1,0,0,0,6168,6169,5,713,0,0,6169,6170,5,450,0,0,6170,6171, + 5,360,0,0,6171,6173,5,367,0,0,6172,6174,5,857,0,0,6173,6172,1,0, + 0,0,6173,6174,1,0,0,0,6174,6175,1,0,0,0,6175,6199,5,882,0,0,6176, + 6177,5,713,0,0,6177,6178,5,433,0,0,6178,6179,5,68,0,0,6179,6180, + 3,686,343,0,6180,6181,5,423,0,0,6181,6182,5,20,0,0,6182,6189,5,882, + 0,0,6183,6184,5,360,0,0,6184,6186,5,367,0,0,6185,6187,5,857,0,0, + 6186,6185,1,0,0,0,6186,6187,1,0,0,0,6187,6188,1,0,0,0,6188,6190, + 5,882,0,0,6189,6183,1,0,0,0,6189,6190,1,0,0,0,6190,6196,1,0,0,0, + 6191,6193,5,144,0,0,6192,6194,5,502,0,0,6193,6192,1,0,0,0,6193,6194, + 1,0,0,0,6194,6195,1,0,0,0,6195,6197,5,169,0,0,6196,6191,1,0,0,0, + 6196,6197,1,0,0,0,6197,6199,1,0,0,0,6198,6168,1,0,0,0,6198,6176, + 1,0,0,0,6199,563,1,0,0,0,6200,6201,5,155,0,0,6201,6202,3,568,284, + 0,6202,6205,7,93,0,0,6203,6206,3,814,407,0,6204,6206,5,119,0,0,6205, + 6203,1,0,0,0,6205,6204,1,0,0,0,6206,6216,1,0,0,0,6207,6208,5,868, + 0,0,6208,6209,3,568,284,0,6209,6212,7,93,0,0,6210,6213,3,814,407, + 0,6211,6213,5,119,0,0,6212,6210,1,0,0,0,6212,6211,1,0,0,0,6213,6215, + 1,0,0,0,6214,6207,1,0,0,0,6215,6218,1,0,0,0,6216,6214,1,0,0,0,6216, + 6217,1,0,0,0,6217,6253,1,0,0,0,6218,6216,1,0,0,0,6219,6220,5,155, + 0,0,6220,6223,3,58,29,0,6221,6224,3,698,349,0,6222,6224,5,42,0,0, + 6223,6221,1,0,0,0,6223,6222,1,0,0,0,6224,6253,1,0,0,0,6225,6226, + 5,155,0,0,6226,6233,5,497,0,0,6227,6230,3,698,349,0,6228,6229,5, + 28,0,0,6229,6231,3,700,350,0,6230,6228,1,0,0,0,6230,6231,1,0,0,0, + 6231,6234,1,0,0,0,6232,6234,5,42,0,0,6233,6227,1,0,0,0,6233,6232, + 1,0,0,0,6234,6253,1,0,0,0,6235,6253,3,500,250,0,6236,6253,3,352, + 176,0,6237,6253,3,350,175,0,6238,6239,5,155,0,0,6239,6240,3,712, + 356,0,6240,6241,7,93,0,0,6241,6249,3,814,407,0,6242,6243,5,868,0, + 0,6243,6244,3,712,356,0,6244,6245,7,93,0,0,6245,6246,3,814,407,0, + 6246,6248,1,0,0,0,6247,6242,1,0,0,0,6248,6251,1,0,0,0,6249,6247, + 1,0,0,0,6249,6250,1,0,0,0,6250,6253,1,0,0,0,6251,6249,1,0,0,0,6252, + 6200,1,0,0,0,6252,6219,1,0,0,0,6252,6225,1,0,0,0,6252,6235,1,0,0, + 0,6252,6236,1,0,0,0,6252,6237,1,0,0,0,6252,6238,1,0,0,0,6253,565, + 1,0,0,0,6254,6255,5,157,0,0,6255,6256,7,63,0,0,6256,6439,5,452,0, + 0,6257,6258,5,157,0,0,6258,6259,7,94,0,0,6259,6262,5,386,0,0,6260, + 6261,5,80,0,0,6261,6263,5,882,0,0,6262,6260,1,0,0,0,6262,6263,1, + 0,0,0,6263,6266,1,0,0,0,6264,6265,5,68,0,0,6265,6267,3,722,361,0, + 6266,6264,1,0,0,0,6266,6267,1,0,0,0,6267,6275,1,0,0,0,6268,6272, + 5,100,0,0,6269,6270,3,722,361,0,6270,6271,5,868,0,0,6271,6273,1, + 0,0,0,6272,6269,1,0,0,0,6272,6273,1,0,0,0,6273,6274,1,0,0,0,6274, + 6276,3,722,361,0,6275,6268,1,0,0,0,6275,6276,1,0,0,0,6276,6278,1, + 0,0,0,6277,6279,3,400,200,0,6278,6277,1,0,0,0,6278,6279,1,0,0,0, + 6279,6439,1,0,0,0,6280,6281,5,157,0,0,6281,6283,3,570,285,0,6282, + 6284,3,572,286,0,6283,6282,1,0,0,0,6283,6284,1,0,0,0,6284,6439,1, + 0,0,0,6285,6287,5,157,0,0,6286,6288,5,392,0,0,6287,6286,1,0,0,0, + 6287,6288,1,0,0,0,6288,6290,1,0,0,0,6289,6291,5,408,0,0,6290,6289, + 1,0,0,0,6290,6291,1,0,0,0,6291,6292,1,0,0,0,6292,6293,7,47,0,0,6293, + 6294,7,95,0,0,6294,6297,3,662,331,0,6295,6296,7,95,0,0,6296,6298, + 3,638,319,0,6297,6295,1,0,0,0,6297,6298,1,0,0,0,6298,6300,1,0,0, + 0,6299,6301,3,572,286,0,6300,6299,1,0,0,0,6300,6301,1,0,0,0,6301, + 6439,1,0,0,0,6302,6303,5,157,0,0,6303,6304,5,34,0,0,6304,6306,7, + 0,0,0,6305,6307,3,770,385,0,6306,6305,1,0,0,0,6306,6307,1,0,0,0, + 6307,6308,1,0,0,0,6308,6439,3,638,319,0,6309,6310,5,157,0,0,6310, + 6311,5,34,0,0,6311,6312,7,96,0,0,6312,6439,3,712,356,0,6313,6314, + 5,157,0,0,6314,6315,5,34,0,0,6315,6316,5,409,0,0,6316,6439,3,642, + 321,0,6317,6318,5,157,0,0,6318,6319,5,34,0,0,6319,6320,5,684,0,0, + 6320,6439,3,646,323,0,6321,6322,5,157,0,0,6322,6323,5,34,0,0,6323, + 6324,5,173,0,0,6324,6439,3,662,331,0,6325,6326,5,157,0,0,6326,6327, + 5,34,0,0,6327,6328,5,678,0,0,6328,6439,3,694,347,0,6329,6330,5,157, + 0,0,6330,6331,5,380,0,0,6331,6332,3,702,351,0,6332,6333,7,97,0,0, + 6333,6439,1,0,0,0,6334,6335,5,157,0,0,6335,6439,3,574,287,0,6336, + 6337,5,157,0,0,6337,6345,7,98,0,0,6338,6342,5,100,0,0,6339,6340, + 3,722,361,0,6340,6341,5,868,0,0,6341,6343,1,0,0,0,6342,6339,1,0, + 0,0,6342,6343,1,0,0,0,6343,6344,1,0,0,0,6344,6346,3,722,361,0,6345, + 6338,1,0,0,0,6345,6346,1,0,0,0,6346,6439,1,0,0,0,6347,6348,5,157, + 0,0,6348,6349,5,262,0,0,6349,6350,5,866,0,0,6350,6351,5,850,0,0, + 6351,6352,5,867,0,0,6352,6439,7,98,0,0,6353,6354,5,157,0,0,6354, + 6357,3,576,288,0,6355,6356,7,95,0,0,6356,6358,3,638,319,0,6357,6355, + 1,0,0,0,6357,6358,1,0,0,0,6358,6360,1,0,0,0,6359,6361,3,572,286, + 0,6360,6359,1,0,0,0,6360,6361,1,0,0,0,6361,6439,1,0,0,0,6362,6363, + 5,157,0,0,6363,6364,5,132,0,0,6364,6365,5,336,0,0,6365,6439,3,712, + 356,0,6366,6367,5,157,0,0,6367,6368,5,409,0,0,6368,6369,5,336,0, + 0,6369,6439,3,642,321,0,6370,6371,5,157,0,0,6371,6378,5,414,0,0, + 6372,6373,5,65,0,0,6373,6376,3,666,333,0,6374,6375,5,188,0,0,6375, + 6377,3,664,332,0,6376,6374,1,0,0,0,6376,6377,1,0,0,0,6377,6379,1, + 0,0,0,6378,6372,1,0,0,0,6378,6379,1,0,0,0,6379,6439,1,0,0,0,6380, + 6382,5,157,0,0,6381,6383,5,392,0,0,6382,6381,1,0,0,0,6382,6383,1, + 0,0,0,6383,6384,1,0,0,0,6384,6385,7,99,0,0,6385,6386,7,95,0,0,6386, + 6389,3,662,331,0,6387,6388,7,95,0,0,6388,6390,3,638,319,0,6389,6387, + 1,0,0,0,6389,6390,1,0,0,0,6390,6393,1,0,0,0,6391,6392,5,192,0,0, + 6392,6394,3,814,407,0,6393,6391,1,0,0,0,6393,6394,1,0,0,0,6394,6439, + 1,0,0,0,6395,6396,5,157,0,0,6396,6397,5,516,0,0,6397,6400,5,752, + 0,0,6398,6399,7,95,0,0,6399,6401,3,638,319,0,6400,6398,1,0,0,0,6400, + 6401,1,0,0,0,6401,6403,1,0,0,0,6402,6404,3,572,286,0,6403,6402,1, + 0,0,0,6403,6404,1,0,0,0,6404,6439,1,0,0,0,6405,6406,5,157,0,0,6406, + 6415,5,545,0,0,6407,6412,3,578,289,0,6408,6409,5,868,0,0,6409,6411, + 3,578,289,0,6410,6408,1,0,0,0,6411,6414,1,0,0,0,6412,6410,1,0,0, + 0,6412,6413,1,0,0,0,6413,6416,1,0,0,0,6414,6412,1,0,0,0,6415,6407, + 1,0,0,0,6415,6416,1,0,0,0,6416,6420,1,0,0,0,6417,6418,5,65,0,0,6418, + 6419,5,548,0,0,6419,6421,3,722,361,0,6420,6417,1,0,0,0,6420,6421, + 1,0,0,0,6421,6428,1,0,0,0,6422,6423,5,100,0,0,6423,6426,3,722,361, + 0,6424,6425,5,509,0,0,6425,6427,3,722,361,0,6426,6424,1,0,0,0,6426, + 6427,1,0,0,0,6427,6429,1,0,0,0,6428,6422,1,0,0,0,6428,6429,1,0,0, + 0,6429,6439,1,0,0,0,6430,6431,5,157,0,0,6431,6432,7,64,0,0,6432, + 6434,5,645,0,0,6433,6435,3,400,200,0,6434,6433,1,0,0,0,6434,6435, + 1,0,0,0,6435,6439,1,0,0,0,6436,6437,5,157,0,0,6437,6439,5,564,0, + 0,6438,6254,1,0,0,0,6438,6257,1,0,0,0,6438,6280,1,0,0,0,6438,6285, + 1,0,0,0,6438,6302,1,0,0,0,6438,6309,1,0,0,0,6438,6313,1,0,0,0,6438, + 6317,1,0,0,0,6438,6321,1,0,0,0,6438,6325,1,0,0,0,6438,6329,1,0,0, + 0,6438,6334,1,0,0,0,6438,6336,1,0,0,0,6438,6347,1,0,0,0,6438,6353, + 1,0,0,0,6438,6362,1,0,0,0,6438,6366,1,0,0,0,6438,6370,1,0,0,0,6438, + 6380,1,0,0,0,6438,6395,1,0,0,0,6438,6405,1,0,0,0,6438,6430,1,0,0, + 0,6438,6436,1,0,0,0,6439,567,1,0,0,0,6440,6451,5,892,0,0,6441,6451, + 5,893,0,0,6442,6443,5,870,0,0,6443,6445,5,870,0,0,6444,6442,1,0, + 0,0,6444,6445,1,0,0,0,6445,6446,1,0,0,0,6446,6448,7,100,0,0,6447, + 6444,1,0,0,0,6447,6448,1,0,0,0,6448,6449,1,0,0,0,6449,6451,3,716, + 358,0,6450,6440,1,0,0,0,6450,6441,1,0,0,0,6450,6447,1,0,0,0,6451, + 569,1,0,0,0,6452,6453,5,26,0,0,6453,6467,5,155,0,0,6454,6467,5,823, + 0,0,6455,6467,5,824,0,0,6456,6467,5,40,0,0,6457,6467,5,153,0,0,6458, + 6459,5,409,0,0,6459,6467,5,645,0,0,6460,6461,5,132,0,0,6461,6467, + 5,645,0,0,6462,6464,7,62,0,0,6463,6462,1,0,0,0,6463,6464,1,0,0,0, + 6464,6465,1,0,0,0,6465,6467,7,101,0,0,6466,6452,1,0,0,0,6466,6454, + 1,0,0,0,6466,6455,1,0,0,0,6466,6456,1,0,0,0,6466,6457,1,0,0,0,6466, + 6458,1,0,0,0,6466,6460,1,0,0,0,6466,6463,1,0,0,0,6467,571,1,0,0, + 0,6468,6469,5,99,0,0,6469,6473,5,882,0,0,6470,6471,5,192,0,0,6471, + 6473,3,814,407,0,6472,6468,1,0,0,0,6472,6470,1,0,0,0,6473,573,1, + 0,0,0,6474,6476,5,647,0,0,6475,6474,1,0,0,0,6475,6476,1,0,0,0,6476, + 6477,1,0,0,0,6477,6492,5,381,0,0,6478,6479,5,453,0,0,6479,6492,5, + 645,0,0,6480,6492,5,536,0,0,6481,6492,5,734,0,0,6482,6484,5,408, + 0,0,6483,6482,1,0,0,0,6483,6484,1,0,0,0,6484,6485,1,0,0,0,6485,6492, + 5,544,0,0,6486,6492,5,546,0,0,6487,6488,5,598,0,0,6488,6492,5,422, + 0,0,6489,6492,5,312,0,0,6490,6492,5,356,0,0,6491,6475,1,0,0,0,6491, + 6478,1,0,0,0,6491,6480,1,0,0,0,6491,6481,1,0,0,0,6491,6483,1,0,0, + 0,6491,6486,1,0,0,0,6491,6487,1,0,0,0,6491,6489,1,0,0,0,6491,6490, + 1,0,0,0,6492,575,1,0,0,0,6493,6505,5,386,0,0,6494,6495,5,173,0,0, + 6495,6505,5,645,0,0,6496,6498,5,392,0,0,6497,6496,1,0,0,0,6497,6498, + 1,0,0,0,6498,6500,1,0,0,0,6499,6501,5,408,0,0,6500,6499,1,0,0,0, + 6500,6501,1,0,0,0,6501,6502,1,0,0,0,6502,6505,5,752,0,0,6503,6505, + 5,667,0,0,6504,6493,1,0,0,0,6504,6494,1,0,0,0,6504,6497,1,0,0,0, + 6504,6503,1,0,0,0,6505,577,1,0,0,0,6506,6519,5,7,0,0,6507,6508,5, + 320,0,0,6508,6519,5,437,0,0,6509,6510,5,355,0,0,6510,6519,5,656, + 0,0,6511,6519,5,358,0,0,6512,6519,5,439,0,0,6513,6519,5,802,0,0, + 6514,6515,5,521,0,0,6515,6519,5,397,0,0,6516,6519,5,605,0,0,6517, + 6519,5,655,0,0,6518,6506,1,0,0,0,6518,6507,1,0,0,0,6518,6509,1,0, + 0,0,6518,6511,1,0,0,0,6518,6512,1,0,0,0,6518,6513,1,0,0,0,6518,6514, + 1,0,0,0,6518,6516,1,0,0,0,6518,6517,1,0,0,0,6519,579,1,0,0,0,6520, + 6521,5,318,0,0,6521,6522,5,882,0,0,6522,581,1,0,0,0,6523,6524,5, + 324,0,0,6524,6542,5,82,0,0,6525,6530,3,602,301,0,6526,6527,5,868, + 0,0,6527,6529,3,602,301,0,6528,6526,1,0,0,0,6529,6532,1,0,0,0,6530, + 6528,1,0,0,0,6530,6531,1,0,0,0,6531,6543,1,0,0,0,6532,6530,1,0,0, + 0,6533,6534,3,662,331,0,6534,6535,5,130,0,0,6535,6538,5,866,0,0, + 6536,6539,3,680,340,0,6537,6539,5,7,0,0,6538,6536,1,0,0,0,6538,6537, + 1,0,0,0,6539,6540,1,0,0,0,6540,6541,5,867,0,0,6541,6543,1,0,0,0, + 6542,6525,1,0,0,0,6542,6533,1,0,0,0,6543,6544,1,0,0,0,6544,6545, + 5,80,0,0,6545,6546,3,638,319,0,6546,583,1,0,0,0,6547,6549,5,404, + 0,0,6548,6550,3,548,274,0,6549,6548,1,0,0,0,6549,6550,1,0,0,0,6550, + 6551,1,0,0,0,6551,6556,3,604,302,0,6552,6553,5,868,0,0,6553,6555, + 3,604,302,0,6554,6552,1,0,0,0,6555,6558,1,0,0,0,6556,6554,1,0,0, + 0,6556,6557,1,0,0,0,6557,585,1,0,0,0,6558,6556,1,0,0,0,6559,6561, + 5,94,0,0,6560,6562,7,102,0,0,6561,6560,1,0,0,0,6561,6562,1,0,0,0, + 6562,6563,1,0,0,0,6563,6564,3,814,407,0,6564,587,1,0,0,0,6565,6566, + 5,103,0,0,6566,6567,5,82,0,0,6567,6568,5,88,0,0,6568,6569,5,324, + 0,0,6569,6574,3,608,304,0,6570,6571,5,868,0,0,6571,6573,3,608,304, + 0,6572,6570,1,0,0,0,6573,6576,1,0,0,0,6574,6572,1,0,0,0,6574,6575, + 1,0,0,0,6575,589,1,0,0,0,6576,6574,1,0,0,0,6577,6578,5,575,0,0,6578, + 6583,3,592,296,0,6579,6580,5,868,0,0,6580,6582,3,592,296,0,6581, + 6579,1,0,0,0,6582,6585,1,0,0,0,6583,6581,1,0,0,0,6583,6584,1,0,0, + 0,6584,591,1,0,0,0,6585,6583,1,0,0,0,6586,6592,5,453,0,0,6587,6592, + 5,563,0,0,6588,6589,5,548,0,0,6589,6592,5,324,0,0,6590,6592,5,598, + 0,0,6591,6586,1,0,0,0,6591,6587,1,0,0,0,6591,6588,1,0,0,0,6591,6590, + 1,0,0,0,6592,593,1,0,0,0,6593,6594,5,575,0,0,6594,6599,5,531,0,0, + 6595,6597,3,768,384,0,6596,6595,1,0,0,0,6596,6597,1,0,0,0,6597,6598, + 1,0,0,0,6598,6600,3,716,358,0,6599,6596,1,0,0,0,6599,6600,1,0,0, + 0,6600,595,1,0,0,0,6601,6602,5,575,0,0,6602,6604,7,64,0,0,6603,6605, + 5,7,0,0,6604,6603,1,0,0,0,6604,6605,1,0,0,0,6605,6607,1,0,0,0,6606, + 6608,3,400,200,0,6607,6606,1,0,0,0,6607,6608,1,0,0,0,6608,597,1, + 0,0,0,6609,6610,5,576,0,0,6610,599,1,0,0,0,6611,6612,5,749,0,0,6612, + 601,1,0,0,0,6613,6619,3,662,331,0,6614,6615,7,19,0,0,6615,6616,5, + 866,0,0,6616,6617,3,650,325,0,6617,6618,5,867,0,0,6618,6620,1,0, + 0,0,6619,6614,1,0,0,0,6619,6620,1,0,0,0,6620,603,1,0,0,0,6621,6640, + 5,366,0,0,6622,6640,5,422,0,0,6623,6625,7,103,0,0,6624,6623,1,0, + 0,0,6624,6625,1,0,0,0,6625,6626,1,0,0,0,6626,6640,5,452,0,0,6627, + 6640,5,517,0,0,6628,6640,5,734,0,0,6629,6630,5,548,0,0,6630,6640, + 5,324,0,0,6631,6640,5,645,0,0,6632,6640,5,680,0,0,6633,6637,5,752, + 0,0,6634,6635,5,194,0,0,6635,6636,5,135,0,0,6636,6638,5,104,0,0, + 6637,6634,1,0,0,0,6637,6638,1,0,0,0,6638,6640,1,0,0,0,6639,6621, + 1,0,0,0,6639,6622,1,0,0,0,6639,6624,1,0,0,0,6639,6627,1,0,0,0,6639, + 6628,1,0,0,0,6639,6629,1,0,0,0,6639,6631,1,0,0,0,6639,6632,1,0,0, + 0,6639,6633,1,0,0,0,6640,6654,1,0,0,0,6641,6642,5,556,0,0,6642,6644, + 5,452,0,0,6643,6645,3,400,200,0,6644,6643,1,0,0,0,6644,6645,1,0, + 0,0,6645,6654,1,0,0,0,6646,6648,7,61,0,0,6647,6649,3,660,330,0,6648, + 6647,1,0,0,0,6648,6649,1,0,0,0,6649,6651,1,0,0,0,6650,6652,3,606, + 303,0,6651,6650,1,0,0,0,6651,6652,1,0,0,0,6652,6654,1,0,0,0,6653, + 6639,1,0,0,0,6653,6641,1,0,0,0,6653,6646,1,0,0,0,6654,605,1,0,0, + 0,6655,6656,5,194,0,0,6656,6657,5,135,0,0,6657,6661,5,104,0,0,6658, + 6659,5,65,0,0,6659,6661,5,391,0,0,6660,6655,1,0,0,0,6660,6658,1, + 0,0,0,6661,607,1,0,0,0,6662,6670,3,662,331,0,6663,6664,5,130,0,0, + 6664,6667,5,866,0,0,6665,6668,3,680,340,0,6666,6668,5,7,0,0,6667, + 6665,1,0,0,0,6667,6666,1,0,0,0,6668,6669,1,0,0,0,6669,6671,5,867, + 0,0,6670,6663,1,0,0,0,6670,6671,1,0,0,0,6671,6679,1,0,0,0,6672,6674, + 7,19,0,0,6673,6672,1,0,0,0,6673,6674,1,0,0,0,6674,6675,1,0,0,0,6675, + 6676,5,866,0,0,6676,6677,3,650,325,0,6677,6678,5,867,0,0,6678,6680, + 1,0,0,0,6679,6673,1,0,0,0,6679,6680,1,0,0,0,6680,6683,1,0,0,0,6681, + 6682,5,79,0,0,6682,6684,5,446,0,0,6683,6681,1,0,0,0,6683,6684,1, + 0,0,0,6684,609,1,0,0,0,6685,6686,7,104,0,0,6686,6689,3,662,331,0, + 6687,6690,3,672,336,0,6688,6690,5,882,0,0,6689,6687,1,0,0,0,6689, + 6688,1,0,0,0,6689,6690,1,0,0,0,6690,611,1,0,0,0,6691,6697,7,104, + 0,0,6692,6698,5,392,0,0,6693,6698,5,528,0,0,6694,6695,5,826,0,0, + 6695,6696,5,857,0,0,6696,6698,7,105,0,0,6697,6692,1,0,0,0,6697,6693, + 1,0,0,0,6697,6694,1,0,0,0,6697,6698,1,0,0,0,6698,6699,1,0,0,0,6699, + 6700,3,634,317,0,6700,613,1,0,0,0,6701,6702,7,104,0,0,6702,6706, + 5,10,0,0,6703,6704,5,826,0,0,6704,6705,5,857,0,0,6705,6707,5,666, + 0,0,6706,6703,1,0,0,0,6706,6707,1,0,0,0,6707,6708,1,0,0,0,6708,6709, + 3,210,105,0,6709,615,1,0,0,0,6710,6711,5,419,0,0,6711,6712,5,882, + 0,0,6712,617,1,0,0,0,6713,6714,5,187,0,0,6714,6715,3,638,319,0,6715, + 619,1,0,0,0,6716,6724,5,158,0,0,6717,6719,5,164,0,0,6718,6720,5, + 682,0,0,6719,6718,1,0,0,0,6719,6720,1,0,0,0,6720,6721,1,0,0,0,6721, + 6725,3,726,363,0,6722,6725,5,889,0,0,6723,6725,5,890,0,0,6724,6717, + 1,0,0,0,6724,6722,1,0,0,0,6724,6723,1,0,0,0,6725,6735,1,0,0,0,6726, + 6727,5,155,0,0,6727,6732,3,624,312,0,6728,6729,5,868,0,0,6729,6731, + 3,624,312,0,6730,6728,1,0,0,0,6731,6734,1,0,0,0,6732,6730,1,0,0, + 0,6732,6733,1,0,0,0,6733,6736,1,0,0,0,6734,6732,1,0,0,0,6735,6726, + 1,0,0,0,6735,6736,1,0,0,0,6736,621,1,0,0,0,6737,6745,5,145,0,0,6738, + 6740,5,164,0,0,6739,6741,5,682,0,0,6740,6739,1,0,0,0,6740,6741,1, + 0,0,0,6741,6742,1,0,0,0,6742,6746,3,726,363,0,6743,6746,5,889,0, + 0,6744,6746,5,890,0,0,6745,6738,1,0,0,0,6745,6743,1,0,0,0,6745,6744, + 1,0,0,0,6745,6746,1,0,0,0,6746,6756,1,0,0,0,6747,6748,5,155,0,0, + 6748,6753,3,624,312,0,6749,6750,5,868,0,0,6750,6752,3,624,312,0, + 6751,6749,1,0,0,0,6752,6755,1,0,0,0,6753,6751,1,0,0,0,6753,6754, + 1,0,0,0,6754,6757,1,0,0,0,6755,6753,1,0,0,0,6756,6747,1,0,0,0,6756, + 6757,1,0,0,0,6757,623,1,0,0,0,6758,6759,7,106,0,0,6759,6764,5,857, + 0,0,6760,6765,3,726,363,0,6761,6765,5,883,0,0,6762,6765,3,696,348, + 0,6763,6765,3,718,359,0,6764,6760,1,0,0,0,6764,6761,1,0,0,0,6764, + 6762,1,0,0,0,6764,6763,1,0,0,0,6765,625,1,0,0,0,6766,6768,5,194, + 0,0,6767,6769,5,552,0,0,6768,6767,1,0,0,0,6768,6769,1,0,0,0,6769, + 6770,1,0,0,0,6770,6775,3,52,26,0,6771,6772,5,868,0,0,6772,6774,3, + 52,26,0,6773,6771,1,0,0,0,6774,6777,1,0,0,0,6775,6773,1,0,0,0,6775, + 6776,1,0,0,0,6776,627,1,0,0,0,6777,6775,1,0,0,0,6778,6779,5,173, + 0,0,6779,6781,3,662,331,0,6780,6782,3,258,129,0,6781,6780,1,0,0, + 0,6781,6782,1,0,0,0,6782,6784,1,0,0,0,6783,6785,3,328,164,0,6784, + 6783,1,0,0,0,6784,6785,1,0,0,0,6785,629,1,0,0,0,6786,6788,5,72,0, + 0,6787,6789,7,107,0,0,6788,6787,1,0,0,0,6788,6789,1,0,0,0,6789,6790, + 1,0,0,0,6790,6822,5,48,0,0,6791,6792,3,568,284,0,6792,6793,5,857, + 0,0,6793,6801,7,108,0,0,6794,6795,5,868,0,0,6795,6796,3,568,284, + 0,6796,6797,5,857,0,0,6797,6798,7,108,0,0,6798,6800,1,0,0,0,6799, + 6794,1,0,0,0,6800,6803,1,0,0,0,6801,6799,1,0,0,0,6801,6802,1,0,0, + 0,6802,6823,1,0,0,0,6803,6801,1,0,0,0,6804,6807,5,30,0,0,6805,6808, + 3,722,361,0,6806,6808,3,568,284,0,6807,6805,1,0,0,0,6807,6806,1, + 0,0,0,6808,6809,1,0,0,0,6809,6810,3,568,284,0,6810,6811,5,857,0, + 0,6811,6819,3,632,316,0,6812,6813,5,868,0,0,6813,6814,3,568,284, + 0,6814,6815,5,857,0,0,6815,6816,3,632,316,0,6816,6818,1,0,0,0,6817, + 6812,1,0,0,0,6818,6821,1,0,0,0,6819,6817,1,0,0,0,6819,6820,1,0,0, + 0,6820,6823,1,0,0,0,6821,6819,1,0,0,0,6822,6791,1,0,0,0,6822,6804, + 1,0,0,0,6823,631,1,0,0,0,6824,6825,7,109,0,0,6825,633,1,0,0,0,6826, + 6832,3,210,105,0,6827,6832,3,186,93,0,6828,6832,3,192,96,0,6829, + 6832,3,208,104,0,6830,6832,3,220,110,0,6831,6826,1,0,0,0,6831,6827, + 1,0,0,0,6831,6828,1,0,0,0,6831,6829,1,0,0,0,6831,6830,1,0,0,0,6832, + 6837,1,0,0,0,6833,6834,5,65,0,0,6834,6835,5,349,0,0,6835,6837,3, + 716,358,0,6836,6831,1,0,0,0,6836,6833,1,0,0,0,6837,635,1,0,0,0,6838, + 6839,3,712,356,0,6839,637,1,0,0,0,6840,6841,3,712,356,0,6841,639, + 1,0,0,0,6842,6843,3,712,356,0,6843,641,1,0,0,0,6844,6845,3,712,356, + 0,6845,643,1,0,0,0,6846,6847,3,712,356,0,6847,645,1,0,0,0,6848,6849, + 3,712,356,0,6849,647,1,0,0,0,6850,6851,3,716,358,0,6851,649,1,0, + 0,0,6852,6857,3,652,326,0,6853,6854,5,868,0,0,6854,6856,3,652,326, + 0,6855,6853,1,0,0,0,6856,6859,1,0,0,0,6857,6855,1,0,0,0,6857,6858, + 1,0,0,0,6858,651,1,0,0,0,6859,6857,1,0,0,0,6860,6861,3,716,358,0, + 6861,653,1,0,0,0,6862,6863,3,716,358,0,6863,655,1,0,0,0,6864,6865, + 3,716,358,0,6865,657,1,0,0,0,6866,6867,3,712,356,0,6867,659,1,0, + 0,0,6868,6873,3,662,331,0,6869,6870,5,868,0,0,6870,6872,3,662,331, + 0,6871,6869,1,0,0,0,6872,6875,1,0,0,0,6873,6871,1,0,0,0,6873,6874, + 1,0,0,0,6874,661,1,0,0,0,6875,6873,1,0,0,0,6876,6877,3,712,356,0, + 6877,663,1,0,0,0,6878,6883,3,666,333,0,6879,6880,5,868,0,0,6880, + 6882,3,666,333,0,6881,6879,1,0,0,0,6882,6885,1,0,0,0,6883,6881,1, + 0,0,0,6883,6884,1,0,0,0,6884,665,1,0,0,0,6885,6883,1,0,0,0,6886, + 6889,3,694,347,0,6887,6889,3,716,358,0,6888,6886,1,0,0,0,6888,6887, + 1,0,0,0,6889,667,1,0,0,0,6890,6895,3,716,358,0,6891,6893,3,720,360, + 0,6892,6894,3,720,360,0,6893,6892,1,0,0,0,6893,6894,1,0,0,0,6894, + 6896,1,0,0,0,6895,6891,1,0,0,0,6895,6896,1,0,0,0,6896,6905,1,0,0, + 0,6897,6899,9,0,0,0,6898,6897,1,0,0,0,6898,6899,1,0,0,0,6899,6900, + 1,0,0,0,6900,6902,3,720,360,0,6901,6903,3,720,360,0,6902,6901,1, + 0,0,0,6902,6903,1,0,0,0,6903,6905,1,0,0,0,6904,6890,1,0,0,0,6904, + 6898,1,0,0,0,6905,669,1,0,0,0,6906,6911,3,672,336,0,6907,6908,5, + 868,0,0,6908,6910,3,672,336,0,6909,6907,1,0,0,0,6910,6913,1,0,0, + 0,6911,6909,1,0,0,0,6911,6912,1,0,0,0,6912,671,1,0,0,0,6913,6911, + 1,0,0,0,6914,6919,3,716,358,0,6915,6917,3,720,360,0,6916,6918,3, + 720,360,0,6917,6916,1,0,0,0,6917,6918,1,0,0,0,6918,6920,1,0,0,0, + 6919,6915,1,0,0,0,6919,6920,1,0,0,0,6920,6930,1,0,0,0,6921,6923, + 9,0,0,0,6922,6921,1,0,0,0,6922,6923,1,0,0,0,6923,6924,1,0,0,0,6924, + 6926,3,720,360,0,6925,6927,3,720,360,0,6926,6925,1,0,0,0,6926,6927, + 1,0,0,0,6927,6930,1,0,0,0,6928,6930,4,336,3,0,6929,6914,1,0,0,0, + 6929,6922,1,0,0,0,6929,6928,1,0,0,0,6930,673,1,0,0,0,6931,6932,3, + 716,358,0,6932,675,1,0,0,0,6933,6934,3,716,358,0,6934,677,1,0,0, + 0,6935,6936,3,716,358,0,6936,679,1,0,0,0,6937,6942,3,682,341,0,6938, + 6939,5,868,0,0,6939,6941,3,682,341,0,6940,6938,1,0,0,0,6941,6944, + 1,0,0,0,6942,6940,1,0,0,0,6942,6943,1,0,0,0,6943,681,1,0,0,0,6944, + 6942,1,0,0,0,6945,6946,3,716,358,0,6946,683,1,0,0,0,6947,6952,3, + 716,358,0,6948,6949,5,866,0,0,6949,6950,3,722,361,0,6950,6951,5, + 867,0,0,6951,6953,1,0,0,0,6952,6948,1,0,0,0,6952,6953,1,0,0,0,6953, + 6956,1,0,0,0,6954,6956,3,814,407,0,6955,6947,1,0,0,0,6955,6954,1, + 0,0,0,6956,6958,1,0,0,0,6957,6959,7,55,0,0,6958,6957,1,0,0,0,6958, + 6959,1,0,0,0,6959,685,1,0,0,0,6960,6961,3,688,344,0,6961,6962,5, + 878,0,0,6962,6963,3,722,361,0,6963,687,1,0,0,0,6964,6965,3,690,345, + 0,6965,6966,5,891,0,0,6966,689,1,0,0,0,6967,6972,5,882,0,0,6968, + 6972,5,889,0,0,6969,6972,5,704,0,0,6970,6972,3,844,422,0,6971,6967, + 1,0,0,0,6971,6968,1,0,0,0,6971,6969,1,0,0,0,6971,6970,1,0,0,0,6972, + 691,1,0,0,0,6973,6974,7,110,0,0,6974,693,1,0,0,0,6975,6977,3,690, + 345,0,6976,6978,3,692,346,0,6977,6976,1,0,0,0,6977,6978,1,0,0,0, + 6978,6981,1,0,0,0,6979,6981,3,60,30,0,6980,6975,1,0,0,0,6980,6979, + 1,0,0,0,6981,695,1,0,0,0,6982,6983,7,111,0,0,6983,697,1,0,0,0,6984, + 6989,5,228,0,0,6985,6989,3,834,417,0,6986,6989,5,882,0,0,6987,6989, + 5,879,0,0,6988,6984,1,0,0,0,6988,6985,1,0,0,0,6988,6986,1,0,0,0, + 6988,6987,1,0,0,0,6989,699,1,0,0,0,6990,6991,3,716,358,0,6991,701, + 1,0,0,0,6992,6996,3,704,352,0,6993,6996,5,889,0,0,6994,6996,5,882, + 0,0,6995,6992,1,0,0,0,6995,6993,1,0,0,0,6995,6994,1,0,0,0,6996,703, + 1,0,0,0,6997,6998,7,112,0,0,6998,705,1,0,0,0,6999,7000,3,722,361, + 0,7000,7001,5,854,0,0,7001,7002,3,722,361,0,7002,7003,5,854,0,0, + 7003,7004,3,722,361,0,7004,7005,5,854,0,0,7005,7006,3,722,361,0, + 7006,7007,5,854,0,0,7007,7013,3,722,361,0,7008,7009,5,878,0,0,7009, + 7010,3,722,361,0,7010,7011,5,854,0,0,7011,7012,3,722,361,0,7012, + 7014,1,0,0,0,7013,7008,1,0,0,0,7014,7015,1,0,0,0,7015,7013,1,0,0, + 0,7015,7016,1,0,0,0,7016,707,1,0,0,0,7017,7024,3,710,355,0,7018, + 7019,5,868,0,0,7019,7022,3,710,355,0,7020,7021,5,868,0,0,7021,7023, + 3,722,361,0,7022,7020,1,0,0,0,7022,7023,1,0,0,0,7023,7025,1,0,0, + 0,7024,7018,1,0,0,0,7024,7025,1,0,0,0,7025,709,1,0,0,0,7026,7034, + 5,882,0,0,7027,7034,5,887,0,0,7028,7030,5,884,0,0,7029,7028,1,0, + 0,0,7030,7031,1,0,0,0,7031,7029,1,0,0,0,7031,7032,1,0,0,0,7032,7034, + 1,0,0,0,7033,7026,1,0,0,0,7033,7027,1,0,0,0,7033,7029,1,0,0,0,7034, + 711,1,0,0,0,7035,7037,3,716,358,0,7036,7038,3,720,360,0,7037,7036, + 1,0,0,0,7037,7038,1,0,0,0,7038,713,1,0,0,0,7039,7044,3,716,358,0, + 7040,7041,5,868,0,0,7041,7043,3,716,358,0,7042,7040,1,0,0,0,7043, + 7046,1,0,0,0,7044,7042,1,0,0,0,7044,7045,1,0,0,0,7045,715,1,0,0, + 0,7046,7044,1,0,0,0,7047,7051,3,718,359,0,7048,7051,5,879,0,0,7049, + 7051,5,882,0,0,7050,7047,1,0,0,0,7050,7048,1,0,0,0,7050,7049,1,0, + 0,0,7051,717,1,0,0,0,7052,7062,5,889,0,0,7053,7062,3,834,417,0,7054, + 7062,3,836,418,0,7055,7062,3,704,352,0,7056,7062,3,838,419,0,7057, + 7062,3,840,420,0,7058,7062,3,842,421,0,7059,7062,3,844,422,0,7060, + 7062,3,806,403,0,7061,7052,1,0,0,0,7061,7053,1,0,0,0,7061,7054,1, + 0,0,0,7061,7055,1,0,0,0,7061,7056,1,0,0,0,7061,7057,1,0,0,0,7061, + 7058,1,0,0,0,7061,7059,1,0,0,0,7061,7060,1,0,0,0,7062,719,1,0,0, + 0,7063,7064,5,865,0,0,7064,7068,5,889,0,0,7065,7066,5,865,0,0,7066, + 7068,3,716,358,0,7067,7063,1,0,0,0,7067,7065,1,0,0,0,7068,721,1, + 0,0,0,7069,7070,7,113,0,0,7070,723,1,0,0,0,7071,7074,5,880,0,0,7072, + 7074,3,722,361,0,7073,7071,1,0,0,0,7073,7072,1,0,0,0,7074,725,1, + 0,0,0,7075,7077,5,888,0,0,7076,7075,1,0,0,0,7076,7077,1,0,0,0,7077, + 7078,1,0,0,0,7078,7081,5,882,0,0,7079,7081,5,881,0,0,7080,7076,1, + 0,0,0,7080,7079,1,0,0,0,7081,7083,1,0,0,0,7082,7084,5,882,0,0,7083, + 7082,1,0,0,0,7084,7085,1,0,0,0,7085,7083,1,0,0,0,7085,7086,1,0,0, + 0,7086,7099,1,0,0,0,7087,7089,5,888,0,0,7088,7087,1,0,0,0,7088,7089, + 1,0,0,0,7089,7090,1,0,0,0,7090,7093,5,882,0,0,7091,7093,5,881,0, + 0,7092,7088,1,0,0,0,7092,7091,1,0,0,0,7093,7096,1,0,0,0,7094,7095, + 5,28,0,0,7095,7097,3,700,350,0,7096,7094,1,0,0,0,7096,7097,1,0,0, + 0,7097,7099,1,0,0,0,7098,7080,1,0,0,0,7098,7092,1,0,0,0,7099,727, + 1,0,0,0,7100,7101,7,114,0,0,7101,729,1,0,0,0,7102,7104,5,888,0,0, + 7103,7102,1,0,0,0,7103,7104,1,0,0,0,7104,7105,1,0,0,0,7105,7106, + 5,884,0,0,7106,731,1,0,0,0,7107,7109,5,114,0,0,7108,7107,1,0,0,0, + 7108,7109,1,0,0,0,7109,7110,1,0,0,0,7110,7111,7,115,0,0,7111,733, + 1,0,0,0,7112,7125,3,726,363,0,7113,7125,3,722,361,0,7114,7115,5, + 854,0,0,7115,7125,3,722,361,0,7116,7125,3,730,365,0,7117,7125,3, + 728,364,0,7118,7125,5,885,0,0,7119,7125,5,887,0,0,7120,7122,5,114, + 0,0,7121,7120,1,0,0,0,7121,7122,1,0,0,0,7122,7123,1,0,0,0,7123,7125, + 7,115,0,0,7124,7112,1,0,0,0,7124,7113,1,0,0,0,7124,7114,1,0,0,0, + 7124,7116,1,0,0,0,7124,7117,1,0,0,0,7124,7118,1,0,0,0,7124,7119, + 1,0,0,0,7124,7121,1,0,0,0,7125,735,1,0,0,0,7126,7128,7,116,0,0,7127, + 7129,5,240,0,0,7128,7127,1,0,0,0,7128,7129,1,0,0,0,7129,7131,1,0, + 0,0,7130,7132,3,742,371,0,7131,7130,1,0,0,0,7131,7132,1,0,0,0,7132, + 7134,1,0,0,0,7133,7135,5,228,0,0,7134,7133,1,0,0,0,7134,7135,1,0, + 0,0,7135,7139,1,0,0,0,7136,7137,3,58,29,0,7137,7138,3,698,349,0, + 7138,7140,1,0,0,0,7139,7136,1,0,0,0,7139,7140,1,0,0,0,7140,7144, + 1,0,0,0,7141,7142,5,28,0,0,7142,7145,3,700,350,0,7143,7145,5,228, + 0,0,7144,7141,1,0,0,0,7144,7143,1,0,0,0,7144,7145,1,0,0,0,7145,7253, + 1,0,0,0,7146,7147,5,227,0,0,7147,7148,7,117,0,0,7148,7150,5,240, + 0,0,7149,7151,3,742,371,0,7150,7149,1,0,0,0,7150,7151,1,0,0,0,7151, + 7153,1,0,0,0,7152,7154,5,228,0,0,7153,7152,1,0,0,0,7153,7154,1,0, + 0,0,7154,7253,1,0,0,0,7155,7156,5,227,0,0,7156,7158,7,118,0,0,7157, + 7159,3,742,371,0,7158,7157,1,0,0,0,7158,7159,1,0,0,0,7159,7161,1, + 0,0,0,7160,7162,5,228,0,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162, + 7253,1,0,0,0,7163,7164,5,498,0,0,7164,7166,5,225,0,0,7165,7167,3, + 742,371,0,7166,7165,1,0,0,0,7166,7167,1,0,0,0,7167,7169,1,0,0,0, + 7168,7170,5,228,0,0,7169,7168,1,0,0,0,7169,7170,1,0,0,0,7170,7253, + 1,0,0,0,7171,7173,7,119,0,0,7172,7174,3,742,371,0,7173,7172,1,0, + 0,0,7173,7174,1,0,0,0,7174,7178,1,0,0,0,7175,7177,7,120,0,0,7176, + 7175,1,0,0,0,7177,7180,1,0,0,0,7178,7176,1,0,0,0,7178,7179,1,0,0, + 0,7179,7253,1,0,0,0,7180,7178,1,0,0,0,7181,7183,5,210,0,0,7182,7184, + 3,744,372,0,7183,7182,1,0,0,0,7183,7184,1,0,0,0,7184,7188,1,0,0, + 0,7185,7187,7,120,0,0,7186,7185,1,0,0,0,7187,7190,1,0,0,0,7188,7186, + 1,0,0,0,7188,7189,1,0,0,0,7189,7253,1,0,0,0,7190,7188,1,0,0,0,7191, + 7193,5,211,0,0,7192,7194,5,212,0,0,7193,7192,1,0,0,0,7193,7194,1, + 0,0,0,7194,7196,1,0,0,0,7195,7197,3,744,372,0,7196,7195,1,0,0,0, + 7196,7197,1,0,0,0,7197,7201,1,0,0,0,7198,7200,7,120,0,0,7199,7198, + 1,0,0,0,7200,7203,1,0,0,0,7201,7199,1,0,0,0,7201,7202,1,0,0,0,7202, + 7253,1,0,0,0,7203,7201,1,0,0,0,7204,7206,7,121,0,0,7205,7207,3,746, + 373,0,7206,7205,1,0,0,0,7206,7207,1,0,0,0,7207,7211,1,0,0,0,7208, + 7210,7,120,0,0,7209,7208,1,0,0,0,7210,7213,1,0,0,0,7211,7209,1,0, + 0,0,7211,7212,1,0,0,0,7212,7253,1,0,0,0,7213,7211,1,0,0,0,7214,7253, + 7,122,0,0,7215,7217,7,123,0,0,7216,7218,3,742,371,0,7217,7216,1, + 0,0,0,7217,7218,1,0,0,0,7218,7253,1,0,0,0,7219,7220,7,124,0,0,7220, + 7222,3,738,369,0,7221,7223,5,228,0,0,7222,7221,1,0,0,0,7222,7223, + 1,0,0,0,7223,7227,1,0,0,0,7224,7225,3,58,29,0,7225,7226,3,698,349, + 0,7226,7228,1,0,0,0,7227,7224,1,0,0,0,7227,7228,1,0,0,0,7228,7253, + 1,0,0,0,7229,7232,7,125,0,0,7230,7231,5,834,0,0,7231,7233,3,722, + 361,0,7232,7230,1,0,0,0,7232,7233,1,0,0,0,7233,7253,1,0,0,0,7234, + 7236,5,233,0,0,7235,7237,5,225,0,0,7236,7235,1,0,0,0,7236,7237,1, + 0,0,0,7237,7239,1,0,0,0,7238,7240,5,228,0,0,7239,7238,1,0,0,0,7239, + 7240,1,0,0,0,7240,7244,1,0,0,0,7241,7242,3,58,29,0,7242,7243,3,698, + 349,0,7243,7245,1,0,0,0,7244,7241,1,0,0,0,7244,7245,1,0,0,0,7245, + 7248,1,0,0,0,7246,7247,5,28,0,0,7247,7249,3,700,350,0,7248,7246, + 1,0,0,0,7248,7249,1,0,0,0,7249,7253,1,0,0,0,7250,7251,5,233,0,0, + 7251,7253,5,229,0,0,7252,7126,1,0,0,0,7252,7146,1,0,0,0,7252,7155, + 1,0,0,0,7252,7163,1,0,0,0,7252,7171,1,0,0,0,7252,7181,1,0,0,0,7252, + 7191,1,0,0,0,7252,7204,1,0,0,0,7252,7214,1,0,0,0,7252,7215,1,0,0, + 0,7252,7219,1,0,0,0,7252,7229,1,0,0,0,7252,7234,1,0,0,0,7252,7250, + 1,0,0,0,7253,737,1,0,0,0,7254,7255,5,866,0,0,7255,7260,5,882,0,0, + 7256,7257,5,868,0,0,7257,7259,5,882,0,0,7258,7256,1,0,0,0,7259,7262, + 1,0,0,0,7260,7258,1,0,0,0,7260,7261,1,0,0,0,7261,7263,1,0,0,0,7262, + 7260,1,0,0,0,7263,7264,5,867,0,0,7264,739,1,0,0,0,7265,7267,7,126, + 0,0,7266,7268,3,742,371,0,7267,7266,1,0,0,0,7267,7268,1,0,0,0,7268, + 7288,1,0,0,0,7269,7271,5,224,0,0,7270,7272,3,742,371,0,7271,7270, + 1,0,0,0,7271,7272,1,0,0,0,7272,7276,1,0,0,0,7273,7274,3,58,29,0, + 7274,7275,3,698,349,0,7275,7277,1,0,0,0,7276,7273,1,0,0,0,7276,7277, + 1,0,0,0,7277,7288,1,0,0,0,7278,7288,7,127,0,0,7279,7281,7,128,0, + 0,7280,7282,3,746,373,0,7281,7280,1,0,0,0,7281,7282,1,0,0,0,7282, + 7288,1,0,0,0,7283,7285,7,129,0,0,7284,7286,7,130,0,0,7285,7284,1, + 0,0,0,7285,7286,1,0,0,0,7286,7288,1,0,0,0,7287,7265,1,0,0,0,7287, + 7269,1,0,0,0,7287,7278,1,0,0,0,7287,7279,1,0,0,0,7287,7283,1,0,0, + 0,7288,7290,1,0,0,0,7289,7291,5,12,0,0,7290,7289,1,0,0,0,7290,7291, + 1,0,0,0,7291,741,1,0,0,0,7292,7293,5,866,0,0,7293,7294,3,722,361, + 0,7294,7295,5,867,0,0,7295,743,1,0,0,0,7296,7297,5,866,0,0,7297, + 7298,3,722,361,0,7298,7299,5,868,0,0,7299,7300,3,722,361,0,7300, + 7301,5,867,0,0,7301,745,1,0,0,0,7302,7303,5,866,0,0,7303,7306,3, + 722,361,0,7304,7305,5,868,0,0,7305,7307,3,722,361,0,7306,7304,1, + 0,0,0,7306,7307,1,0,0,0,7307,7308,1,0,0,0,7308,7309,5,867,0,0,7309, + 747,1,0,0,0,7310,7311,5,866,0,0,7311,7316,3,684,342,0,7312,7313, + 5,868,0,0,7313,7315,3,684,342,0,7314,7312,1,0,0,0,7315,7318,1,0, + 0,0,7316,7314,1,0,0,0,7316,7317,1,0,0,0,7317,7319,1,0,0,0,7318,7316, + 1,0,0,0,7319,7320,5,867,0,0,7320,749,1,0,0,0,7321,7326,3,814,407, + 0,7322,7323,5,868,0,0,7323,7325,3,814,407,0,7324,7322,1,0,0,0,7325, + 7328,1,0,0,0,7326,7324,1,0,0,0,7326,7327,1,0,0,0,7327,751,1,0,0, + 0,7328,7326,1,0,0,0,7329,7330,7,131,0,0,7330,7335,3,754,377,0,7331, + 7332,5,868,0,0,7332,7334,3,754,377,0,7333,7331,1,0,0,0,7334,7337, + 1,0,0,0,7335,7333,1,0,0,0,7335,7336,1,0,0,0,7336,753,1,0,0,0,7337, + 7335,1,0,0,0,7338,7339,5,866,0,0,7339,7344,3,756,378,0,7340,7341, + 5,868,0,0,7341,7343,3,756,378,0,7342,7340,1,0,0,0,7343,7346,1,0, + 0,0,7344,7342,1,0,0,0,7344,7345,1,0,0,0,7345,7347,1,0,0,0,7346,7344, + 1,0,0,0,7347,7348,5,867,0,0,7348,755,1,0,0,0,7349,7352,3,814,407, + 0,7350,7352,5,42,0,0,7351,7349,1,0,0,0,7351,7350,1,0,0,0,7352,757, + 1,0,0,0,7353,7358,3,734,367,0,7354,7355,5,868,0,0,7355,7357,3,734, + 367,0,7356,7354,1,0,0,0,7357,7360,1,0,0,0,7358,7356,1,0,0,0,7358, + 7359,1,0,0,0,7359,759,1,0,0,0,7360,7358,1,0,0,0,7361,7366,5,882, + 0,0,7362,7363,5,868,0,0,7363,7365,5,882,0,0,7364,7362,1,0,0,0,7365, + 7368,1,0,0,0,7366,7364,1,0,0,0,7366,7367,1,0,0,0,7367,761,1,0,0, + 0,7368,7366,1,0,0,0,7369,7374,5,892,0,0,7370,7371,5,868,0,0,7371, + 7373,5,892,0,0,7372,7370,1,0,0,0,7373,7376,1,0,0,0,7374,7372,1,0, + 0,0,7374,7375,1,0,0,0,7375,763,1,0,0,0,7376,7374,1,0,0,0,7377,7404, + 5,116,0,0,7378,7379,5,24,0,0,7379,7380,5,866,0,0,7380,7381,3,814, + 407,0,7381,7382,5,13,0,0,7382,7383,3,740,370,0,7383,7384,5,867,0, + 0,7384,7404,1,0,0,0,7385,7387,3,820,410,0,7386,7385,1,0,0,0,7386, + 7387,1,0,0,0,7387,7388,1,0,0,0,7388,7404,3,734,367,0,7389,7393,3, + 766,383,0,7390,7391,5,119,0,0,7391,7392,5,185,0,0,7392,7394,3,766, + 383,0,7393,7390,1,0,0,0,7393,7394,1,0,0,0,7394,7404,1,0,0,0,7395, + 7396,5,866,0,0,7396,7397,3,814,407,0,7397,7398,5,867,0,0,7398,7404, + 1,0,0,0,7399,7400,5,866,0,0,7400,7401,3,712,356,0,7401,7402,5,867, + 0,0,7402,7404,1,0,0,0,7403,7377,1,0,0,0,7403,7378,1,0,0,0,7403,7386, + 1,0,0,0,7403,7389,1,0,0,0,7403,7395,1,0,0,0,7403,7399,1,0,0,0,7404, + 765,1,0,0,0,7405,7411,7,132,0,0,7406,7408,5,866,0,0,7407,7409,3, + 722,361,0,7408,7407,1,0,0,0,7408,7409,1,0,0,0,7409,7410,1,0,0,0, + 7410,7412,5,867,0,0,7411,7406,1,0,0,0,7411,7412,1,0,0,0,7412,7420, + 1,0,0,0,7413,7414,5,295,0,0,7414,7416,5,866,0,0,7415,7417,3,722, + 361,0,7416,7415,1,0,0,0,7416,7417,1,0,0,0,7417,7418,1,0,0,0,7418, + 7420,5,867,0,0,7419,7405,1,0,0,0,7419,7413,1,0,0,0,7420,767,1,0, + 0,0,7421,7422,5,78,0,0,7422,7423,5,60,0,0,7423,769,1,0,0,0,7424, + 7425,5,78,0,0,7425,7426,5,114,0,0,7426,7427,5,60,0,0,7427,771,1, + 0,0,0,7428,7429,5,124,0,0,7429,7430,5,143,0,0,7430,773,1,0,0,0,7431, + 7454,3,776,388,0,7432,7454,3,784,392,0,7433,7454,3,786,393,0,7434, + 7441,3,806,403,0,7435,7436,5,866,0,0,7436,7442,5,867,0,0,7437,7438, + 5,866,0,0,7438,7439,3,810,405,0,7439,7440,5,867,0,0,7440,7442,1, + 0,0,0,7441,7435,1,0,0,0,7441,7437,1,0,0,0,7442,7454,1,0,0,0,7443, + 7450,3,642,321,0,7444,7445,5,866,0,0,7445,7451,5,867,0,0,7446,7447, + 5,866,0,0,7447,7448,3,810,405,0,7448,7449,5,867,0,0,7449,7451,1, + 0,0,0,7450,7444,1,0,0,0,7450,7446,1,0,0,0,7451,7454,1,0,0,0,7452, + 7454,3,808,404,0,7453,7431,1,0,0,0,7453,7432,1,0,0,0,7453,7433,1, + 0,0,0,7453,7434,1,0,0,0,7453,7443,1,0,0,0,7453,7452,1,0,0,0,7454, + 775,1,0,0,0,7455,7458,7,133,0,0,7456,7457,5,866,0,0,7457,7459,5, + 867,0,0,7458,7456,1,0,0,0,7458,7459,1,0,0,0,7459,7635,1,0,0,0,7460, + 7635,3,60,30,0,7461,7462,5,33,0,0,7462,7463,5,866,0,0,7463,7464, + 3,814,407,0,7464,7465,5,868,0,0,7465,7466,3,740,370,0,7466,7467, + 5,867,0,0,7467,7635,1,0,0,0,7468,7469,5,33,0,0,7469,7470,5,866,0, + 0,7470,7471,3,814,407,0,7471,7472,5,188,0,0,7472,7473,3,698,349, + 0,7473,7474,5,867,0,0,7474,7635,1,0,0,0,7475,7476,5,24,0,0,7476, + 7477,5,866,0,0,7477,7478,3,814,407,0,7478,7479,5,13,0,0,7479,7480, + 3,740,370,0,7480,7481,5,867,0,0,7481,7635,1,0,0,0,7482,7483,5,189, + 0,0,7483,7484,5,866,0,0,7484,7485,3,672,336,0,7485,7486,5,867,0, + 0,7486,7635,1,0,0,0,7487,7489,5,23,0,0,7488,7490,3,778,389,0,7489, + 7488,1,0,0,0,7490,7491,1,0,0,0,7491,7489,1,0,0,0,7491,7492,1,0,0, + 0,7492,7495,1,0,0,0,7493,7494,5,53,0,0,7494,7496,3,812,406,0,7495, + 7493,1,0,0,0,7495,7496,1,0,0,0,7496,7497,1,0,0,0,7497,7498,5,378, + 0,0,7498,7635,1,0,0,0,7499,7500,5,23,0,0,7500,7502,3,814,407,0,7501, + 7503,3,778,389,0,7502,7501,1,0,0,0,7503,7504,1,0,0,0,7504,7502,1, + 0,0,0,7504,7505,1,0,0,0,7505,7508,1,0,0,0,7506,7507,5,53,0,0,7507, + 7509,3,812,406,0,7508,7506,1,0,0,0,7508,7509,1,0,0,0,7509,7510,1, + 0,0,0,7510,7511,5,378,0,0,7511,7635,1,0,0,0,7512,7513,5,224,0,0, + 7513,7514,5,866,0,0,7514,7517,3,810,405,0,7515,7516,5,188,0,0,7516, + 7518,3,698,349,0,7517,7515,1,0,0,0,7517,7518,1,0,0,0,7518,7519,1, + 0,0,0,7519,7520,5,867,0,0,7520,7635,1,0,0,0,7521,7522,5,296,0,0, + 7522,7525,5,866,0,0,7523,7526,3,726,363,0,7524,7526,3,814,407,0, + 7525,7523,1,0,0,0,7525,7524,1,0,0,0,7526,7527,1,0,0,0,7527,7530, + 5,80,0,0,7528,7531,3,726,363,0,7529,7531,3,814,407,0,7530,7528,1, + 0,0,0,7530,7529,1,0,0,0,7531,7532,1,0,0,0,7532,7533,5,867,0,0,7533, + 7635,1,0,0,0,7534,7535,7,134,0,0,7535,7538,5,866,0,0,7536,7539,3, + 726,363,0,7537,7539,3,814,407,0,7538,7536,1,0,0,0,7538,7537,1,0, + 0,0,7539,7540,1,0,0,0,7540,7543,5,68,0,0,7541,7544,3,722,361,0,7542, + 7544,3,814,407,0,7543,7541,1,0,0,0,7543,7542,1,0,0,0,7544,7550,1, + 0,0,0,7545,7548,5,65,0,0,7546,7549,3,722,361,0,7547,7549,3,814,407, + 0,7548,7546,1,0,0,0,7548,7547,1,0,0,0,7549,7551,1,0,0,0,7550,7545, + 1,0,0,0,7550,7551,1,0,0,0,7551,7552,1,0,0,0,7552,7553,5,867,0,0, + 7553,7635,1,0,0,0,7554,7555,5,300,0,0,7555,7556,5,866,0,0,7556,7559, + 7,135,0,0,7557,7560,3,726,363,0,7558,7560,3,814,407,0,7559,7557, + 1,0,0,0,7559,7558,1,0,0,0,7559,7560,1,0,0,0,7560,7561,1,0,0,0,7561, + 7564,5,68,0,0,7562,7565,3,726,363,0,7563,7565,3,814,407,0,7564,7562, + 1,0,0,0,7564,7563,1,0,0,0,7565,7566,1,0,0,0,7566,7567,5,867,0,0, + 7567,7635,1,0,0,0,7568,7569,5,300,0,0,7569,7572,5,866,0,0,7570,7573, + 3,726,363,0,7571,7573,3,814,407,0,7572,7570,1,0,0,0,7572,7571,1, + 0,0,0,7573,7574,1,0,0,0,7574,7577,5,68,0,0,7575,7578,3,726,363,0, + 7576,7578,3,814,407,0,7577,7575,1,0,0,0,7577,7576,1,0,0,0,7578,7579, + 1,0,0,0,7579,7580,5,867,0,0,7580,7635,1,0,0,0,7581,7582,5,840,0, + 0,7582,7585,5,866,0,0,7583,7586,3,726,363,0,7584,7586,3,814,407, + 0,7585,7583,1,0,0,0,7585,7584,1,0,0,0,7586,7593,1,0,0,0,7587,7588, + 5,13,0,0,7588,7589,7,136,0,0,7589,7590,5,866,0,0,7590,7591,3,722, + 361,0,7591,7592,5,867,0,0,7592,7594,1,0,0,0,7593,7587,1,0,0,0,7593, + 7594,1,0,0,0,7594,7596,1,0,0,0,7595,7597,3,780,390,0,7596,7595,1, + 0,0,0,7596,7597,1,0,0,0,7597,7598,1,0,0,0,7598,7599,5,867,0,0,7599, + 7635,1,0,0,0,7600,7601,5,293,0,0,7601,7602,5,866,0,0,7602,7603,3, + 70,35,0,7603,7606,5,68,0,0,7604,7607,3,726,363,0,7605,7607,3,814, + 407,0,7606,7604,1,0,0,0,7606,7605,1,0,0,0,7607,7608,1,0,0,0,7608, + 7609,5,867,0,0,7609,7635,1,0,0,0,7610,7611,5,827,0,0,7611,7612,5, + 866,0,0,7612,7613,7,137,0,0,7613,7614,5,868,0,0,7614,7615,3,726, + 363,0,7615,7616,5,867,0,0,7616,7635,1,0,0,0,7617,7618,5,254,0,0, + 7618,7619,5,866,0,0,7619,7620,3,814,407,0,7620,7621,5,868,0,0,7621, + 7624,3,814,407,0,7622,7623,5,579,0,0,7623,7625,3,740,370,0,7624, + 7622,1,0,0,0,7624,7625,1,0,0,0,7625,7627,1,0,0,0,7626,7628,3,294, + 147,0,7627,7626,1,0,0,0,7627,7628,1,0,0,0,7628,7630,1,0,0,0,7629, + 7631,3,296,148,0,7630,7629,1,0,0,0,7630,7631,1,0,0,0,7631,7632,1, + 0,0,0,7632,7633,5,867,0,0,7633,7635,1,0,0,0,7634,7455,1,0,0,0,7634, + 7460,1,0,0,0,7634,7461,1,0,0,0,7634,7468,1,0,0,0,7634,7475,1,0,0, + 0,7634,7482,1,0,0,0,7634,7487,1,0,0,0,7634,7499,1,0,0,0,7634,7512, + 1,0,0,0,7634,7521,1,0,0,0,7634,7534,1,0,0,0,7634,7554,1,0,0,0,7634, + 7568,1,0,0,0,7634,7581,1,0,0,0,7634,7600,1,0,0,0,7634,7610,1,0,0, + 0,7634,7617,1,0,0,0,7635,777,1,0,0,0,7636,7637,5,191,0,0,7637,7638, + 3,812,406,0,7638,7639,5,175,0,0,7639,7640,3,812,406,0,7640,779,1, + 0,0,0,7641,7642,5,448,0,0,7642,7647,3,782,391,0,7643,7644,5,868, + 0,0,7644,7646,3,782,391,0,7645,7643,1,0,0,0,7646,7649,1,0,0,0,7647, + 7645,1,0,0,0,7647,7648,1,0,0,0,7648,7656,1,0,0,0,7649,7647,1,0,0, + 0,7650,7651,5,448,0,0,7651,7652,3,722,361,0,7652,7653,5,854,0,0, + 7653,7654,3,722,361,0,7654,7656,1,0,0,0,7655,7641,1,0,0,0,7655,7650, + 1,0,0,0,7656,781,1,0,0,0,7657,7659,3,722,361,0,7658,7660,7,138,0, + 0,7659,7658,1,0,0,0,7659,7660,1,0,0,0,7660,783,1,0,0,0,7661,7662, + 7,139,0,0,7662,7664,5,866,0,0,7663,7665,7,45,0,0,7664,7663,1,0,0, + 0,7664,7665,1,0,0,0,7665,7666,1,0,0,0,7666,7667,3,812,406,0,7667, + 7669,5,867,0,0,7668,7670,3,788,394,0,7669,7668,1,0,0,0,7669,7670, + 1,0,0,0,7670,7721,1,0,0,0,7671,7672,5,262,0,0,7672,7680,5,866,0, + 0,7673,7681,5,850,0,0,7674,7676,5,7,0,0,7675,7674,1,0,0,0,7675,7676, + 1,0,0,0,7676,7677,1,0,0,0,7677,7681,3,812,406,0,7678,7679,5,49,0, + 0,7679,7681,3,810,405,0,7680,7673,1,0,0,0,7680,7675,1,0,0,0,7680, + 7678,1,0,0,0,7681,7682,1,0,0,0,7682,7684,5,867,0,0,7683,7685,3,788, + 394,0,7684,7683,1,0,0,0,7684,7685,1,0,0,0,7685,7721,1,0,0,0,7686, + 7687,7,140,0,0,7687,7689,5,866,0,0,7688,7690,5,7,0,0,7689,7688,1, + 0,0,0,7689,7690,1,0,0,0,7690,7691,1,0,0,0,7691,7692,3,812,406,0, + 7692,7694,5,867,0,0,7693,7695,3,788,394,0,7694,7693,1,0,0,0,7694, + 7695,1,0,0,0,7695,7721,1,0,0,0,7696,7697,5,266,0,0,7697,7699,5,866, + 0,0,7698,7700,5,49,0,0,7699,7698,1,0,0,0,7699,7700,1,0,0,0,7700, + 7701,1,0,0,0,7701,7712,3,810,405,0,7702,7703,5,125,0,0,7703,7704, + 5,20,0,0,7704,7709,3,260,130,0,7705,7706,5,868,0,0,7706,7708,3,260, + 130,0,7707,7705,1,0,0,0,7708,7711,1,0,0,0,7709,7707,1,0,0,0,7709, + 7710,1,0,0,0,7710,7713,1,0,0,0,7711,7709,1,0,0,0,7712,7702,1,0,0, + 0,7712,7713,1,0,0,0,7713,7716,1,0,0,0,7714,7715,5,156,0,0,7715,7717, + 5,882,0,0,7716,7714,1,0,0,0,7716,7717,1,0,0,0,7717,7718,1,0,0,0, + 7718,7719,5,867,0,0,7719,7721,1,0,0,0,7720,7661,1,0,0,0,7720,7671, + 1,0,0,0,7720,7686,1,0,0,0,7720,7696,1,0,0,0,7721,785,1,0,0,0,7722, + 7723,7,141,0,0,7723,7724,5,866,0,0,7724,7727,3,814,407,0,7725,7726, + 5,868,0,0,7726,7728,3,722,361,0,7727,7725,1,0,0,0,7727,7728,1,0, + 0,0,7728,7731,1,0,0,0,7729,7730,5,868,0,0,7730,7732,3,722,361,0, + 7731,7729,1,0,0,0,7731,7732,1,0,0,0,7732,7733,1,0,0,0,7733,7734, + 5,867,0,0,7734,7735,3,788,394,0,7735,7761,1,0,0,0,7736,7737,7,142, + 0,0,7737,7738,5,866,0,0,7738,7739,3,814,407,0,7739,7740,5,867,0, + 0,7740,7741,3,788,394,0,7741,7761,1,0,0,0,7742,7743,7,143,0,0,7743, + 7744,5,866,0,0,7744,7745,5,867,0,0,7745,7761,3,788,394,0,7746,7747, + 5,273,0,0,7747,7748,5,866,0,0,7748,7749,3,814,407,0,7749,7750,5, + 868,0,0,7750,7751,3,722,361,0,7751,7752,5,867,0,0,7752,7753,3,788, + 394,0,7753,7761,1,0,0,0,7754,7755,5,272,0,0,7755,7756,5,866,0,0, + 7756,7757,3,722,361,0,7757,7758,5,867,0,0,7758,7759,3,788,394,0, + 7759,7761,1,0,0,0,7760,7722,1,0,0,0,7760,7736,1,0,0,0,7760,7742, + 1,0,0,0,7760,7746,1,0,0,0,7760,7754,1,0,0,0,7761,787,1,0,0,0,7762, + 7768,5,129,0,0,7763,7764,5,866,0,0,7764,7765,3,790,395,0,7765,7766, + 5,867,0,0,7766,7769,1,0,0,0,7767,7769,3,792,396,0,7768,7763,1,0, + 0,0,7768,7767,1,0,0,0,7769,789,1,0,0,0,7770,7772,3,792,396,0,7771, + 7770,1,0,0,0,7771,7772,1,0,0,0,7772,7774,1,0,0,0,7773,7775,3,804, + 402,0,7774,7773,1,0,0,0,7774,7775,1,0,0,0,7775,7777,1,0,0,0,7776, + 7778,3,258,129,0,7777,7776,1,0,0,0,7777,7778,1,0,0,0,7778,7780,1, + 0,0,0,7779,7781,3,794,397,0,7780,7779,1,0,0,0,7780,7781,1,0,0,0, + 7781,791,1,0,0,0,7782,7783,3,716,358,0,7783,793,1,0,0,0,7784,7785, + 3,796,398,0,7785,7786,3,798,399,0,7786,795,1,0,0,0,7787,7788,7,144, + 0,0,7788,797,1,0,0,0,7789,7792,3,802,401,0,7790,7792,3,800,400,0, + 7791,7789,1,0,0,0,7791,7790,1,0,0,0,7792,799,1,0,0,0,7793,7794,5, + 17,0,0,7794,7795,3,802,401,0,7795,7796,5,11,0,0,7796,7797,3,802, + 401,0,7797,801,1,0,0,0,7798,7799,5,36,0,0,7799,7806,5,586,0,0,7800, + 7801,5,669,0,0,7801,7806,7,145,0,0,7802,7803,3,814,407,0,7803,7804, + 7,145,0,0,7804,7806,1,0,0,0,7805,7798,1,0,0,0,7805,7800,1,0,0,0, + 7805,7802,1,0,0,0,7806,803,1,0,0,0,7807,7808,5,130,0,0,7808,7809, + 5,20,0,0,7809,7814,3,814,407,0,7810,7811,5,868,0,0,7811,7813,3,814, + 407,0,7812,7810,1,0,0,0,7813,7816,1,0,0,0,7814,7812,1,0,0,0,7814, + 7815,1,0,0,0,7815,805,1,0,0,0,7816,7814,1,0,0,0,7817,7842,3,846, + 423,0,7818,7842,5,757,0,0,7819,7842,5,289,0,0,7820,7842,5,285,0, + 0,7821,7842,5,286,0,0,7822,7842,5,287,0,0,7823,7842,5,290,0,0,7824, + 7842,5,291,0,0,7825,7842,5,292,0,0,7826,7842,5,78,0,0,7827,7842, + 5,86,0,0,7828,7842,5,288,0,0,7829,7842,5,294,0,0,7830,7842,5,488, + 0,0,7831,7842,5,295,0,0,7832,7842,5,142,0,0,7833,7842,5,143,0,0, + 7834,7842,5,297,0,0,7835,7842,5,298,0,0,7836,7842,5,299,0,0,7837, + 7842,5,300,0,0,7838,7842,5,301,0,0,7839,7842,5,302,0,0,7840,7842, + 5,303,0,0,7841,7817,1,0,0,0,7841,7818,1,0,0,0,7841,7819,1,0,0,0, + 7841,7820,1,0,0,0,7841,7821,1,0,0,0,7841,7822,1,0,0,0,7841,7823, + 1,0,0,0,7841,7824,1,0,0,0,7841,7825,1,0,0,0,7841,7826,1,0,0,0,7841, + 7827,1,0,0,0,7841,7828,1,0,0,0,7841,7829,1,0,0,0,7841,7830,1,0,0, + 0,7841,7831,1,0,0,0,7841,7832,1,0,0,0,7841,7833,1,0,0,0,7841,7834, + 1,0,0,0,7841,7835,1,0,0,0,7841,7836,1,0,0,0,7841,7837,1,0,0,0,7841, + 7838,1,0,0,0,7841,7839,1,0,0,0,7841,7840,1,0,0,0,7842,807,1,0,0, + 0,7843,7844,7,146,0,0,7844,7845,5,866,0,0,7845,7846,3,812,406,0, + 7846,7847,5,867,0,0,7847,809,1,0,0,0,7848,7853,3,812,406,0,7849, + 7850,5,868,0,0,7850,7852,3,812,406,0,7851,7849,1,0,0,0,7852,7855, + 1,0,0,0,7853,7851,1,0,0,0,7853,7854,1,0,0,0,7854,811,1,0,0,0,7855, + 7853,1,0,0,0,7856,7860,3,734,367,0,7857,7860,3,774,387,0,7858,7860, + 3,814,407,0,7859,7856,1,0,0,0,7859,7857,1,0,0,0,7859,7858,1,0,0, + 0,7860,813,1,0,0,0,7861,7862,6,407,-1,0,7862,7863,7,147,0,0,7863, + 7873,3,814,407,4,7864,7865,3,816,408,0,7865,7867,5,89,0,0,7866,7868, + 5,114,0,0,7867,7866,1,0,0,0,7867,7868,1,0,0,0,7868,7869,1,0,0,0, + 7869,7870,7,148,0,0,7870,7873,1,0,0,0,7871,7873,3,816,408,0,7872, + 7861,1,0,0,0,7872,7864,1,0,0,0,7872,7871,1,0,0,0,7873,7880,1,0,0, + 0,7874,7875,10,3,0,0,7875,7876,3,826,413,0,7876,7877,3,814,407,4, + 7877,7879,1,0,0,0,7878,7874,1,0,0,0,7879,7882,1,0,0,0,7880,7878, + 1,0,0,0,7880,7881,1,0,0,0,7881,815,1,0,0,0,7882,7880,1,0,0,0,7883, + 7884,6,408,-1,0,7884,7885,3,818,409,0,7885,7949,1,0,0,0,7886,7888, + 10,6,0,0,7887,7889,5,114,0,0,7888,7887,1,0,0,0,7888,7889,1,0,0,0, + 7889,7890,1,0,0,0,7890,7891,5,17,0,0,7891,7892,3,816,408,0,7892, + 7893,5,11,0,0,7893,7894,3,816,408,7,7894,7948,1,0,0,0,7895,7896, + 10,5,0,0,7896,7897,5,604,0,0,7897,7898,5,99,0,0,7898,7948,3,816, + 408,6,7899,7901,10,3,0,0,7900,7902,5,114,0,0,7901,7900,1,0,0,0,7901, + 7902,1,0,0,0,7902,7903,1,0,0,0,7903,7904,7,149,0,0,7904,7948,3,816, + 408,4,7905,7907,10,9,0,0,7906,7908,5,114,0,0,7907,7906,1,0,0,0,7907, + 7908,1,0,0,0,7908,7909,1,0,0,0,7909,7910,5,80,0,0,7910,7913,5,866, + 0,0,7911,7914,3,210,105,0,7912,7914,3,750,375,0,7913,7911,1,0,0, + 0,7913,7912,1,0,0,0,7914,7915,1,0,0,0,7915,7916,5,867,0,0,7916,7948, + 1,0,0,0,7917,7918,10,8,0,0,7918,7919,5,89,0,0,7919,7948,3,732,366, + 0,7920,7921,10,7,0,0,7921,7928,3,822,411,0,7922,7923,7,150,0,0,7923, + 7924,5,866,0,0,7924,7925,3,210,105,0,7925,7926,5,867,0,0,7926,7929, + 1,0,0,0,7927,7929,3,816,408,0,7928,7922,1,0,0,0,7928,7927,1,0,0, + 0,7929,7948,1,0,0,0,7930,7932,10,4,0,0,7931,7933,5,114,0,0,7932, + 7931,1,0,0,0,7932,7933,1,0,0,0,7933,7934,1,0,0,0,7934,7935,5,99, + 0,0,7935,7938,3,816,408,0,7936,7937,5,384,0,0,7937,7939,5,882,0, + 0,7938,7936,1,0,0,0,7938,7939,1,0,0,0,7939,7948,1,0,0,0,7940,7941, + 10,2,0,0,7941,7942,5,485,0,0,7942,7943,5,510,0,0,7943,7944,5,866, + 0,0,7944,7945,3,816,408,0,7945,7946,5,867,0,0,7946,7948,1,0,0,0, + 7947,7886,1,0,0,0,7947,7895,1,0,0,0,7947,7899,1,0,0,0,7947,7905, + 1,0,0,0,7947,7917,1,0,0,0,7947,7920,1,0,0,0,7947,7930,1,0,0,0,7947, + 7940,1,0,0,0,7948,7951,1,0,0,0,7949,7947,1,0,0,0,7949,7950,1,0,0, + 0,7950,817,1,0,0,0,7951,7949,1,0,0,0,7952,7953,6,409,-1,0,7953,8001, + 3,734,367,0,7954,8001,3,774,387,0,7955,8001,3,696,348,0,7956,7957, + 3,820,410,0,7957,7958,3,818,409,12,7958,8001,1,0,0,0,7959,7960,5, + 228,0,0,7960,8001,3,818,409,11,7961,7962,5,892,0,0,7962,7963,5,841, + 0,0,7963,8001,3,818,409,10,7964,7965,5,866,0,0,7965,7970,3,814,407, + 0,7966,7967,5,868,0,0,7967,7969,3,814,407,0,7968,7966,1,0,0,0,7969, + 7972,1,0,0,0,7970,7968,1,0,0,0,7970,7971,1,0,0,0,7971,7973,1,0,0, + 0,7972,7970,1,0,0,0,7973,7974,5,867,0,0,7974,8001,1,0,0,0,7975,7976, + 5,586,0,0,7976,7977,5,866,0,0,7977,7980,3,814,407,0,7978,7979,5, + 868,0,0,7979,7981,3,814,407,0,7980,7978,1,0,0,0,7981,7982,1,0,0, + 0,7982,7980,1,0,0,0,7982,7983,1,0,0,0,7983,7984,1,0,0,0,7984,7985, + 5,867,0,0,7985,8001,1,0,0,0,7986,7987,5,60,0,0,7987,7988,5,866,0, + 0,7988,7989,3,210,105,0,7989,7990,5,867,0,0,7990,8001,1,0,0,0,7991, + 7992,5,866,0,0,7992,7993,3,210,105,0,7993,7994,5,867,0,0,7994,8001, + 1,0,0,0,7995,7996,5,87,0,0,7996,7997,3,814,407,0,7997,7998,3,70, + 35,0,7998,8001,1,0,0,0,7999,8001,3,672,336,0,8000,7952,1,0,0,0,8000, + 7954,1,0,0,0,8000,7955,1,0,0,0,8000,7956,1,0,0,0,8000,7959,1,0,0, + 0,8000,7961,1,0,0,0,8000,7964,1,0,0,0,8000,7975,1,0,0,0,8000,7986, + 1,0,0,0,8000,7991,1,0,0,0,8000,7995,1,0,0,0,8000,7999,1,0,0,0,8001, + 8019,1,0,0,0,8002,8003,10,4,0,0,8003,8004,3,832,416,0,8004,8005, + 3,818,409,5,8005,8018,1,0,0,0,8006,8007,10,3,0,0,8007,8008,3,828, + 414,0,8008,8009,3,818,409,4,8009,8018,1,0,0,0,8010,8011,10,2,0,0, + 8011,8012,3,830,415,0,8012,8013,3,818,409,3,8013,8018,1,0,0,0,8014, + 8015,10,14,0,0,8015,8016,5,28,0,0,8016,8018,3,700,350,0,8017,8002, + 1,0,0,0,8017,8006,1,0,0,0,8017,8010,1,0,0,0,8017,8014,1,0,0,0,8018, + 8021,1,0,0,0,8019,8017,1,0,0,0,8019,8020,1,0,0,0,8020,819,1,0,0, + 0,8021,8019,1,0,0,0,8022,8023,7,151,0,0,8023,821,1,0,0,0,8024,8025, + 5,859,0,0,8025,8033,5,858,0,0,8026,8027,5,860,0,0,8027,8033,5,857, + 0,0,8028,8029,5,859,0,0,8029,8030,5,857,0,0,8030,8033,5,858,0,0, + 8031,8033,3,824,412,0,8032,8024,1,0,0,0,8032,8026,1,0,0,0,8032,8028, + 1,0,0,0,8032,8031,1,0,0,0,8033,823,1,0,0,0,8034,8035,5,859,0,0,8035, + 8042,5,857,0,0,8036,8037,5,858,0,0,8037,8042,5,857,0,0,8038,8042, + 5,857,0,0,8039,8042,5,858,0,0,8040,8042,5,859,0,0,8041,8034,1,0, + 0,0,8041,8036,1,0,0,0,8041,8038,1,0,0,0,8041,8039,1,0,0,0,8041,8040, + 1,0,0,0,8042,825,1,0,0,0,8043,8051,5,11,0,0,8044,8045,5,863,0,0, + 8045,8051,5,863,0,0,8046,8051,5,196,0,0,8047,8051,5,124,0,0,8048, + 8049,5,862,0,0,8049,8051,5,862,0,0,8050,8043,1,0,0,0,8050,8044,1, + 0,0,0,8050,8046,1,0,0,0,8050,8047,1,0,0,0,8050,8048,1,0,0,0,8051, + 827,1,0,0,0,8052,8053,5,859,0,0,8053,8060,5,859,0,0,8054,8055,5, + 858,0,0,8055,8060,5,858,0,0,8056,8060,5,863,0,0,8057,8060,5,864, + 0,0,8058,8060,5,862,0,0,8059,8052,1,0,0,0,8059,8054,1,0,0,0,8059, + 8056,1,0,0,0,8059,8057,1,0,0,0,8059,8058,1,0,0,0,8060,829,1,0,0, + 0,8061,8062,7,152,0,0,8062,831,1,0,0,0,8063,8064,5,854,0,0,8064, + 8069,5,858,0,0,8065,8066,5,854,0,0,8066,8067,5,858,0,0,8067,8069, + 5,858,0,0,8068,8063,1,0,0,0,8068,8065,1,0,0,0,8069,833,1,0,0,0,8070, + 8071,7,153,0,0,8071,835,1,0,0,0,8072,8073,7,154,0,0,8073,837,1,0, + 0,0,8074,8075,7,155,0,0,8075,839,1,0,0,0,8076,8077,7,156,0,0,8077, + 841,1,0,0,0,8078,8079,7,157,0,0,8079,843,1,0,0,0,8080,8081,7,158, + 0,0,8081,845,1,0,0,0,8082,8083,7,159,0,0,8083,847,1,0,0,0,1162,851, + 858,861,870,914,933,944,960,965,977,1012,1022,1027,1033,1038,1042, + 1051,1054,1057,1061,1068,1071,1076,1084,1089,1094,1097,1099,1111, + 1114,1118,1121,1125,1128,1132,1135,1138,1142,1145,1149,1155,1159, + 1164,1170,1177,1184,1187,1191,1196,1202,1211,1216,1220,1224,1235, + 1253,1260,1264,1268,1272,1277,1280,1283,1286,1289,1295,1299,1309, + 1313,1317,1323,1328,1331,1334,1336,1340,1347,1351,1354,1359,1363, + 1366,1370,1373,1377,1390,1393,1397,1400,1404,1407,1411,1414,1418, + 1421,1424,1428,1431,1435,1441,1444,1448,1460,1466,1477,1482,1490, + 1494,1499,1502,1507,1517,1522,1527,1533,1538,1542,1544,1547,1551, + 1555,1558,1562,1566,1570,1576,1579,1586,1591,1597,1604,1610,1618, + 1621,1628,1631,1633,1639,1645,1662,1669,1676,1688,1693,1696,1699, + 1712,1725,1730,1746,1754,1764,1767,1773,1778,1781,1787,1791,1796, + 1802,1806,1810,1813,1816,1822,1826,1831,1842,1845,1852,1855,1859, + 1865,1877,1880,1885,1898,1905,1911,1916,1920,1923,1931,1939,1941, + 1951,1955,1958,1962,1967,1972,1977,1981,1985,1989,1993,1997,2001, + 2006,2011,2016,2022,2027,2032,2037,2042,2047,2053,2058,2063,2068, + 2073,2078,2083,2088,2095,2100,2105,2110,2114,2119,2127,2132,2138, + 2150,2157,2159,2167,2172,2175,2183,2189,2193,2206,2218,2220,2223, + 2231,2237,2243,2256,2263,2272,2277,2288,2297,2302,2314,2321,2330, + 2335,2347,2354,2363,2368,2375,2384,2389,2391,2396,2404,2413,2417, + 2420,2424,2429,2435,2441,2446,2451,2456,2461,2464,2469,2474,2484, + 2488,2495,2500,2503,2508,2511,2515,2519,2527,2546,2549,2552,2556, + 2566,2579,2592,2595,2601,2604,2608,2617,2620,2623,2628,2632,2635, + 2639,2643,2646,2650,2653,2657,2660,2666,2669,2674,2682,2688,2692, + 2696,2701,2706,2713,2717,2728,2736,2739,2745,2751,2754,2760,2766, + 2768,2773,2779,2785,2787,2791,2794,2797,2803,2809,2811,2816,2823, + 2832,2835,2839,2844,2854,2863,2871,2874,2882,2885,2892,2897,2905, + 2921,2926,2933,2952,2958,2968,2980,2987,2994,3009,3022,3028,3034, + 3040,3046,3052,3058,3063,3070,3077,3084,3089,3092,3094,3103,3110, + 3117,3124,3133,3139,3143,3147,3151,3157,3160,3165,3172,3179,3183, + 3188,3198,3206,3212,3221,3230,3239,3242,3246,3255,3259,3262,3265, + 3271,3274,3277,3281,3284,3287,3290,3301,3304,3309,3315,3320,3325, + 3328,3332,3337,3340,3345,3355,3360,3366,3368,3374,3376,3382,3390, + 3395,3403,3406,3411,3414,3419,3427,3433,3437,3439,3445,3453,3458, + 3466,3469,3474,3477,3481,3484,3487,3491,3494,3502,3508,3512,3518, + 3523,3527,3529,3535,3539,3542,3545,3548,3554,3559,3562,3565,3568, + 3571,3573,3576,3580,3583,3586,3594,3600,3603,3605,3614,3619,3626, + 3629,3632,3636,3640,3646,3650,3657,3661,3664,3667,3672,3679,3689, + 3698,3707,3717,3720,3724,3730,3734,3737,3740,3745,3748,3755,3759, + 3762,3766,3770,3773,3776,3781,3787,3791,3801,3807,3811,3817,3821, + 3827,3830,3842,3846,3850,3858,3862,3876,3881,3884,3888,3891,3899, + 3904,3907,3910,3914,3917,3926,3931,3940,3945,3952,3959,3967,3973, + 3981,3984,3987,3994,3997,4000,4004,4008,4014,4021,4031,4035,4044, + 4047,4051,4057,4065,4070,4074,4080,4086,4089,4091,4095,4104,4114, + 4120,4125,4129,4132,4135,4138,4141,4144,4147,4151,4155,4163,4167, + 4170,4172,4185,4188,4195,4205,4208,4213,4215,4219,4227,4233,4242, + 4255,4259,4265,4271,4274,4278,4281,4283,4295,4299,4307,4319,4325, + 4327,4333,4335,4337,4343,4351,4359,4363,4367,4376,4381,4401,4406, + 4412,4419,4424,4433,4436,4440,4444,4448,4451,4454,4457,4461,4465, + 4468,4471,4474,4481,4485,4500,4513,4521,4531,4535,4538,4544,4547, + 4550,4559,4568,4578,4582,4592,4596,4607,4611,4620,4629,4632,4636, + 4641,4645,4654,4657,4660,4667,4673,4679,4705,4708,4711,4730,4732, + 4755,4758,4761,4780,4782,4796,4809,4846,4851,4886,4900,4907,4911, + 4917,4925,4927,4938,4948,4955,4961,4969,4974,4982,4990,4998,5006, + 5012,5017,5022,5027,5033,5035,5046,5051,5058,5060,5074,5080,5085, + 5090,5096,5103,5111,5119,5124,5130,5133,5141,5148,5157,5160,5177, + 5185,5193,5197,5204,5210,5218,5223,5230,5238,5245,5250,5253,5255, + 5261,5263,5267,5269,5274,5281,5286,5290,5295,5299,5305,5311,5316, + 5319,5321,5327,5329,5333,5335,5340,5345,5352,5361,5366,5375,5379, + 5385,5390,5393,5395,5401,5403,5406,5413,5415,5420,5427,5436,5442, + 5444,5451,5454,5466,5472,5480,5483,5487,5490,5494,5496,5507,5510, + 5514,5517,5520,5527,5539,5542,5549,5555,5565,5570,5577,5582,5588, + 5592,5596,5604,5608,5612,5618,5620,5632,5637,5643,5649,5653,5658, + 5660,5684,5688,5691,5700,5704,5713,5717,5721,5727,5729,5738,5748, + 5775,5779,5784,5791,5794,5800,5810,5820,5830,5836,5845,5851,5858, + 5860,5868,5874,5878,5895,5905,5909,5913,5923,5928,6000,6018,6026, + 6032,6044,6048,6059,6063,6072,6080,6087,6091,6098,6103,6106,6109, + 6120,6129,6138,6141,6155,6173,6186,6189,6193,6196,6198,6205,6212, + 6216,6223,6230,6233,6249,6252,6262,6266,6272,6275,6278,6283,6287, + 6290,6297,6300,6306,6342,6345,6357,6360,6376,6378,6382,6389,6393, + 6400,6403,6412,6415,6420,6426,6428,6434,6438,6444,6447,6450,6463, + 6466,6472,6475,6483,6491,6497,6500,6504,6518,6530,6538,6542,6549, + 6556,6561,6574,6583,6591,6596,6599,6604,6607,6619,6624,6637,6639, + 6644,6648,6651,6653,6660,6667,6670,6673,6679,6683,6689,6697,6706, + 6719,6724,6732,6735,6740,6745,6753,6756,6764,6768,6775,6781,6784, + 6788,6801,6807,6819,6822,6831,6836,6857,6873,6883,6888,6893,6895, + 6898,6902,6904,6911,6917,6919,6922,6926,6929,6942,6952,6955,6958, + 6971,6977,6980,6988,6995,7015,7022,7024,7031,7033,7037,7044,7050, + 7061,7067,7073,7076,7080,7085,7088,7092,7096,7098,7103,7108,7121, + 7124,7128,7131,7134,7139,7144,7150,7153,7158,7161,7166,7169,7173, + 7178,7183,7188,7193,7196,7201,7206,7211,7217,7222,7227,7232,7236, + 7239,7244,7248,7252,7260,7267,7271,7276,7281,7285,7287,7290,7306, + 7316,7326,7335,7344,7351,7358,7366,7374,7386,7393,7403,7408,7411, + 7416,7419,7441,7450,7453,7458,7491,7495,7504,7508,7517,7525,7530, + 7538,7543,7548,7550,7559,7564,7572,7577,7585,7593,7596,7606,7624, + 7627,7630,7634,7647,7655,7659,7664,7669,7675,7680,7684,7689,7694, + 7699,7709,7712,7716,7720,7727,7731,7760,7768,7771,7774,7777,7780, + 7791,7805,7814,7841,7853,7859,7867,7872,7880,7888,7901,7907,7913, + 7928,7932,7938,7947,7949,7970,7982,8000,8017,8019,8032,8041,8050, + 8059,8068 ]; private static __ATN: antlr.ATN; @@ -64635,24 +64748,17 @@ export class TableSourceItemContext extends antlr.ParserRuleContext { } } export class SubqueryTableItemContext extends TableSourceItemContext { - public _parenthesisSubquery?: SelectStatementContext; public _alias?: UidContext; public constructor(ctx: TableSourceItemContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + return this.getRuleContext(0, AtomSubQueryTableSourceContext)!; + } public uid(): UidContext { return this.getRuleContext(0, UidContext)!; } - public selectStatement(): SelectStatementContext | null { - return this.getRuleContext(0, SelectStatementContext); - } - public LR_BRACKET(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.LR_BRACKET, 0); - } - public RR_BRACKET(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.RR_BRACKET, 0); - } public KW_LATERAL(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_LATERAL, 0); } @@ -64777,6 +64883,43 @@ export class TableSourcesItemContext extends TableSourceItemContext { } +export class AtomSubQueryTableSourceContext extends antlr.ParserRuleContext { + public _parenthesisSubquery?: SelectStatementContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; + } + public LR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LR_BRACKET, 0); + } + public RR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.RR_BRACKET, 0); + } + public override get ruleIndex(): number { + return MySqlParser.RULE_atomSubQueryTableSource; + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterAtomSubQueryTableSource) { + listener.enterAtomSubQueryTableSource(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitAtomSubQueryTableSource) { + listener.exitAtomSubQueryTableSource(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitAtomSubQueryTableSource) { + return visitor.visitAtomSubQueryTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class FullColumnNamesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -65692,10 +65835,12 @@ export class SelectSpecContext extends antlr.ParserRuleContext { export class SelectElementsContext extends antlr.ParserRuleContext { - public _star?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public pureAllColumns(): PureAllColumnsContext | null { + return this.getRuleContext(0, PureAllColumnsContext); + } public selectElement(): SelectElementContext[]; public selectElement(i: number): SelectElementContext | null; public selectElement(i?: number): SelectElementContext[] | SelectElementContext | null { @@ -65705,9 +65850,6 @@ export class SelectElementsContext extends antlr.ParserRuleContext { return this.getRuleContext(i, SelectElementContext); } - public STAR(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.STAR, 0); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -65741,149 +65883,208 @@ export class SelectElementsContext extends antlr.ParserRuleContext { export class SelectElementContext extends antlr.ParserRuleContext { + public _alias?: UidContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_AS, 0); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); + } public override get ruleIndex(): number { return MySqlParser.RULE_selectElement; } - public override copyFrom(ctx: SelectElementContext): void { - super.copyFrom(ctx); + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterSelectElement) { + listener.enterSelectElement(this); + } } -} -export class SelectExpressionElementContext extends SelectElementContext { - public _alias?: UidContext; - public constructor(ctx: SelectElementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitSelectElement) { + listener.exitSelectElement(this); + } } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitSelectElement) { + return visitor.visitSelectElement(this); + } else { + return visitor.visitChildren(this); + } } - public LOCAL_ID(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.LOCAL_ID, 0); +} + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public VAR_ASSIGN(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.VAR_ASSIGN, 0); + public fullId(): FullIdContext { + return this.getRuleContext(0, FullIdContext)!; } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); + public DOT(): antlr.TerminalNode { + return this.getToken(MySqlParser.DOT, 0)!; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_AS, 0); + public STAR(): antlr.TerminalNode { + return this.getToken(MySqlParser.STAR, 0)!; + } + public override get ruleIndex(): number { + return MySqlParser.RULE_tableAllColumns; } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectExpressionElement) { - listener.enterSelectExpressionElement(this); + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectExpressionElement) { - listener.exitSelectExpressionElement(this); + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectExpressionElement) { - return visitor.visitSelectExpressionElement(this); + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); } else { return visitor.visitChildren(this); } } } -export class SelectFunctionElementContext extends SelectElementContext { - public _alias?: UidContext; - public constructor(ctx: SelectElementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class PureAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public functionCall(): FunctionCallContext { - return this.getRuleContext(0, FunctionCallContext)!; + public STAR(): antlr.TerminalNode { + return this.getToken(MySqlParser.STAR, 0)!; } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); + public override get ruleIndex(): number { + return MySqlParser.RULE_pureAllColumns; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_AS, 0); + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterPureAllColumns) { + listener.enterPureAllColumns(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitPureAllColumns) { + listener.exitPureAllColumns(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitPureAllColumns) { + return visitor.visitPureAllColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public override get ruleIndex(): number { + return MySqlParser.RULE_selectLiteralColumnName; } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectFunctionElement) { - listener.enterSelectFunctionElement(this); + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectFunctionElement) { - listener.exitSelectFunctionElement(this); + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectFunctionElement) { - return visitor.visitSelectFunctionElement(this); + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); } else { return visitor.visitChildren(this); } } } -export class SelectStarElementContext extends SelectElementContext { - public _select_element?: FullIdContext; - public constructor(ctx: SelectElementContext) { + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return MySqlParser.RULE_selectExpressionColumnName; + } + public override copyFrom(ctx: SelectExpressionColumnNameContext): void { + super.copyFrom(ctx); + } +} +export class SelectExpressionElementContext extends SelectExpressionColumnNameContext { + public constructor(ctx: SelectExpressionColumnNameContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public DOT(): antlr.TerminalNode { - return this.getToken(MySqlParser.DOT, 0)!; + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; } - public STAR(): antlr.TerminalNode { - return this.getToken(MySqlParser.STAR, 0)!; + public LOCAL_ID(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LOCAL_ID, 0); } - public fullId(): FullIdContext { - return this.getRuleContext(0, FullIdContext)!; + public VAR_ASSIGN(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.VAR_ASSIGN, 0); } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectStarElement) { - listener.enterSelectStarElement(this); + if(listener.enterSelectExpressionElement) { + listener.enterSelectExpressionElement(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectStarElement) { - listener.exitSelectStarElement(this); + if(listener.exitSelectExpressionElement) { + listener.exitSelectExpressionElement(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectStarElement) { - return visitor.visitSelectStarElement(this); + if (visitor.visitSelectExpressionElement) { + return visitor.visitSelectExpressionElement(this); } else { return visitor.visitChildren(this); } } } -export class SelectColumnElementContext extends SelectElementContext { - public _alias?: UidContext; - public constructor(ctx: SelectElementContext) { +export class SelectFunctionElementContext extends SelectExpressionColumnNameContext { + public constructor(ctx: SelectExpressionColumnNameContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnName(): ColumnNameContext { - return this.getRuleContext(0, ColumnNameContext)!; - } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); - } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_AS, 0); + public functionCall(): FunctionCallContext { + return this.getRuleContext(0, FunctionCallContext)!; } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectColumnElement) { - listener.enterSelectColumnElement(this); + if(listener.enterSelectFunctionElement) { + listener.enterSelectFunctionElement(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectColumnElement) { - listener.exitSelectColumnElement(this); + if(listener.exitSelectFunctionElement) { + listener.exitSelectFunctionElement(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectColumnElement) { - return visitor.visitSelectColumnElement(this); + if (visitor.visitSelectFunctionElement) { + return visitor.visitSelectFunctionElement(this); } else { return visitor.visitChildren(this); } diff --git a/src/lib/mysql/MySqlParserListener.ts b/src/lib/mysql/MySqlParserListener.ts index 35c09a8f..3f3b832f 100644 --- a/src/lib/mysql/MySqlParserListener.ts +++ b/src/lib/mysql/MySqlParserListener.ts @@ -261,6 +261,7 @@ import { TableJsonContext } from "./MySqlParser.js"; import { AtomTableItemContext } from "./MySqlParser.js"; import { SubqueryTableItemContext } from "./MySqlParser.js"; import { TableSourcesItemContext } from "./MySqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./MySqlParser.js"; import { FullColumnNamesContext } from "./MySqlParser.js"; import { IndexHintContext } from "./MySqlParser.js"; import { IndexHintTypeContext } from "./MySqlParser.js"; @@ -280,10 +281,12 @@ import { JsonOnEmptyContext } from "./MySqlParser.js"; import { JsonOnErrorContext } from "./MySqlParser.js"; import { SelectSpecContext } from "./MySqlParser.js"; import { SelectElementsContext } from "./MySqlParser.js"; +import { SelectElementContext } from "./MySqlParser.js"; +import { TableAllColumnsContext } from "./MySqlParser.js"; +import { PureAllColumnsContext } from "./MySqlParser.js"; +import { SelectLiteralColumnNameContext } from "./MySqlParser.js"; import { SelectExpressionElementContext } from "./MySqlParser.js"; import { SelectFunctionElementContext } from "./MySqlParser.js"; -import { SelectStarElementContext } from "./MySqlParser.js"; -import { SelectColumnElementContext } from "./MySqlParser.js"; import { SelectIntoVariablesContext } from "./MySqlParser.js"; import { SelectIntoDumpFileContext } from "./MySqlParser.js"; import { SelectIntoTextFileContext } from "./MySqlParser.js"; @@ -3484,6 +3487,16 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTableSourcesItem?: (ctx: TableSourcesItemContext) => void; + /** + * Enter a parse tree produced by `MySqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + enterAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; + /** + * Exit a parse tree produced by `MySqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + exitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; /** * Enter a parse tree produced by `MySqlParser.fullColumnNames`. * @param ctx the parse tree @@ -3683,53 +3696,69 @@ export class MySqlParserListener implements ParseTreeListener { */ exitSelectElements?: (ctx: SelectElementsContext) => void; /** - * Enter a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Enter a parse tree produced by `MySqlParser.selectElement`. * @param ctx the parse tree */ - enterSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + enterSelectElement?: (ctx: SelectElementContext) => void; /** - * Exit a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Exit a parse tree produced by `MySqlParser.selectElement`. * @param ctx the parse tree */ - exitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + exitSelectElement?: (ctx: SelectElementContext) => void; /** - * Enter a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Enter a parse tree produced by `MySqlParser.tableAllColumns`. * @param ctx the parse tree */ - enterSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** - * Exit a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Exit a parse tree produced by `MySqlParser.tableAllColumns`. * @param ctx the parse tree */ - exitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; + /** + * Enter a parse tree produced by `MySqlParser.pureAllColumns`. + * @param ctx the parse tree + */ + enterPureAllColumns?: (ctx: PureAllColumnsContext) => void; /** - * Enter a parse tree produced by the `selectStarElement` - * labeled alternative in `MySqlParser.selectElement`. + * Exit a parse tree produced by `MySqlParser.pureAllColumns`. * @param ctx the parse tree */ - enterSelectStarElement?: (ctx: SelectStarElementContext) => void; + exitPureAllColumns?: (ctx: PureAllColumnsContext) => void; /** - * Exit a parse tree produced by the `selectStarElement` - * labeled alternative in `MySqlParser.selectElement`. + * Enter a parse tree produced by `MySqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - exitSelectStarElement?: (ctx: SelectStarElementContext) => void; + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** - * Enter a parse tree produced by the `selectColumnElement` - * labeled alternative in `MySqlParser.selectElement`. + * Exit a parse tree produced by `MySqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - enterSelectColumnElement?: (ctx: SelectColumnElementContext) => void; + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** - * Exit a parse tree produced by the `selectColumnElement` - * labeled alternative in `MySqlParser.selectElement`. + * Enter a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. * @param ctx the parse tree */ - exitSelectColumnElement?: (ctx: SelectColumnElementContext) => void; + enterSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + /** + * Exit a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + /** + * Enter a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; + /** + * Exit a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; /** * Enter a parse tree produced by the `selectIntoVariables` * labeled alternative in `MySqlParser.intoClause`. diff --git a/src/lib/mysql/MySqlParserVisitor.ts b/src/lib/mysql/MySqlParserVisitor.ts index 7d8cf42f..7fa6248c 100644 --- a/src/lib/mysql/MySqlParserVisitor.ts +++ b/src/lib/mysql/MySqlParserVisitor.ts @@ -261,6 +261,7 @@ import { TableJsonContext } from "./MySqlParser.js"; import { AtomTableItemContext } from "./MySqlParser.js"; import { SubqueryTableItemContext } from "./MySqlParser.js"; import { TableSourcesItemContext } from "./MySqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./MySqlParser.js"; import { FullColumnNamesContext } from "./MySqlParser.js"; import { IndexHintContext } from "./MySqlParser.js"; import { IndexHintTypeContext } from "./MySqlParser.js"; @@ -280,10 +281,12 @@ import { JsonOnEmptyContext } from "./MySqlParser.js"; import { JsonOnErrorContext } from "./MySqlParser.js"; import { SelectSpecContext } from "./MySqlParser.js"; import { SelectElementsContext } from "./MySqlParser.js"; +import { SelectElementContext } from "./MySqlParser.js"; +import { TableAllColumnsContext } from "./MySqlParser.js"; +import { PureAllColumnsContext } from "./MySqlParser.js"; +import { SelectLiteralColumnNameContext } from "./MySqlParser.js"; import { SelectExpressionElementContext } from "./MySqlParser.js"; import { SelectFunctionElementContext } from "./MySqlParser.js"; -import { SelectStarElementContext } from "./MySqlParser.js"; -import { SelectColumnElementContext } from "./MySqlParser.js"; import { SelectIntoVariablesContext } from "./MySqlParser.js"; import { SelectIntoDumpFileContext } from "./MySqlParser.js"; import { SelectIntoTextFileContext } from "./MySqlParser.js"; @@ -2341,6 +2344,12 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitTableSourcesItem?: (ctx: TableSourcesItemContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => Result; /** * Visit a parse tree produced by `MySqlParser.fullColumnNames`. * @param ctx the parse tree @@ -2460,33 +2469,43 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor */ visitSelectElements?: (ctx: SelectElementsContext) => Result; /** - * Visit a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Visit a parse tree produced by `MySqlParser.selectElement`. * @param ctx the parse tree * @return the visitor result */ - visitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => Result; + visitSelectElement?: (ctx: SelectElementContext) => Result; /** - * Visit a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Visit a parse tree produced by `MySqlParser.tableAllColumns`. * @param ctx the parse tree * @return the visitor result */ - visitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => Result; + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.pureAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPureAllColumns?: (ctx: PureAllColumnsContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; /** - * Visit a parse tree produced by the `selectStarElement` - * labeled alternative in `MySqlParser.selectElement`. + * Visit a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. * @param ctx the parse tree * @return the visitor result */ - visitSelectStarElement?: (ctx: SelectStarElementContext) => Result; + visitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => Result; /** - * Visit a parse tree produced by the `selectColumnElement` - * labeled alternative in `MySqlParser.selectElement`. + * Visit a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. * @param ctx the parse tree * @return the visitor result */ - visitSelectColumnElement?: (ctx: SelectColumnElementContext) => Result; + visitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => Result; /** * Visit a parse tree produced by the `selectIntoVariables` * labeled alternative in `MySqlParser.intoClause`. diff --git a/src/lib/postgresql/PostgreSqlParser.interp b/src/lib/postgresql/PostgreSqlParser.interp index f46a6352..81d54640 100644 --- a/src/lib/postgresql/PostgreSqlParser.interp +++ b/src/lib/postgresql/PostgreSqlParser.interp @@ -1494,6 +1494,7 @@ valuesClause fromClause fromList tableRef +expressionTable aliasClause funcAliasClause joinType @@ -1553,6 +1554,8 @@ qualOp qualAllOp subqueryOperator exprList +selectExpressionColumnName +selectLiteralColumnName columnExpr columnExprNoParen funcArgList @@ -1567,6 +1570,7 @@ indirection optIndirection targetList targetEl +tableAllColumns qualifiedNameList tableNameList schemaNameList @@ -1657,4 +1661,4 @@ sqlExpression atn: -[4, 1, 592, 8484, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 1, 0, 5, 0, 932, 8, 0, 10, 0, 12, 0, 935, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 941, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1061, 8, 2, 3, 2, 1063, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1072, 8, 4, 1, 4, 5, 4, 1075, 8, 4, 10, 4, 12, 4, 1078, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1083, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1118, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1128, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1134, 8, 7, 1, 7, 5, 7, 1137, 8, 7, 10, 7, 12, 7, 1140, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1146, 8, 8, 1, 8, 5, 8, 1149, 8, 8, 10, 8, 12, 8, 1152, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1158, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1169, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1175, 8, 11, 10, 11, 12, 11, 1178, 9, 11, 1, 11, 3, 11, 1181, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1193, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1199, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1205, 8, 12, 1, 12, 1, 12, 3, 12, 1209, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1214, 8, 12, 1, 12, 1, 12, 3, 12, 1218, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1231, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1241, 8, 12, 3, 12, 1243, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1249, 8, 13, 1, 13, 5, 13, 1252, 8, 13, 10, 13, 12, 13, 1255, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1267, 8, 15, 1, 15, 3, 15, 1270, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1275, 8, 15, 1, 15, 5, 15, 1278, 8, 15, 10, 15, 12, 15, 1281, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1291, 8, 17, 1, 18, 1, 18, 3, 18, 1295, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1307, 8, 19, 1, 20, 1, 20, 3, 20, 1311, 8, 20, 1, 20, 3, 20, 1314, 8, 20, 1, 20, 1, 20, 3, 20, 1318, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1330, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1348, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1353, 8, 22, 10, 22, 12, 22, 1356, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1361, 8, 23, 10, 23, 12, 23, 1364, 9, 23, 1, 24, 1, 24, 3, 24, 1368, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1375, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1383, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1389, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1397, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1405, 8, 28, 1, 29, 1, 29, 3, 29, 1409, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1423, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1428, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1433, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1445, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1451, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1463, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1468, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1478, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1484, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1489, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1498, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1505, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1510, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1515, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1525, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1530, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1535, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1542, 8, 38, 1, 38, 1, 38, 3, 38, 1546, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1560, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1566, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1572, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1577, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1582, 8, 39, 10, 39, 12, 39, 1585, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1593, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1602, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1609, 8, 42, 10, 42, 12, 42, 1612, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1620, 8, 42, 1, 42, 1, 42, 3, 42, 1624, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1636, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1644, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1654, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1674, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1679, 8, 42, 1, 42, 3, 42, 1682, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1689, 8, 42, 1, 42, 3, 42, 1692, 8, 42, 1, 42, 1, 42, 3, 42, 1696, 8, 42, 1, 42, 1, 42, 3, 42, 1700, 8, 42, 1, 42, 3, 42, 1703, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1708, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1713, 8, 42, 1, 42, 1, 42, 3, 42, 1717, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1726, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1732, 8, 42, 1, 42, 1, 42, 3, 42, 1736, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1745, 8, 42, 1, 42, 3, 42, 1748, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1754, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1763, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1773, 8, 42, 11, 42, 12, 42, 1774, 1, 42, 1, 42, 3, 42, 1779, 8, 42, 1, 42, 1, 42, 3, 42, 1783, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1788, 8, 42, 1, 42, 3, 42, 1791, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1797, 8, 42, 4, 42, 1799, 8, 42, 11, 42, 12, 42, 1800, 1, 42, 1, 42, 3, 42, 1805, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1811, 8, 42, 1, 42, 1, 42, 3, 42, 1815, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1820, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1825, 8, 42, 1, 42, 1, 42, 3, 42, 1829, 8, 42, 1, 42, 3, 42, 1832, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1839, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1850, 8, 46, 10, 46, 12, 46, 1853, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1865, 8, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1890, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1898, 8, 50, 10, 50, 12, 50, 1901, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1907, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1912, 8, 51, 1, 51, 1, 51, 3, 51, 1916, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1923, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1928, 8, 51, 1, 51, 3, 51, 1931, 8, 51, 3, 51, 1933, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1938, 8, 52, 1, 53, 1, 53, 3, 53, 1942, 8, 53, 1, 53, 1, 53, 3, 53, 1946, 8, 53, 1, 53, 1, 53, 3, 53, 1950, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1955, 8, 53, 1, 53, 3, 53, 1958, 8, 53, 1, 53, 1, 53, 3, 53, 1962, 8, 53, 1, 53, 3, 53, 1965, 8, 53, 1, 53, 1, 53, 3, 53, 1969, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1977, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1982, 8, 53, 1, 53, 3, 53, 1985, 8, 53, 1, 53, 1, 53, 3, 53, 1989, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1995, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2004, 8, 54, 1, 54, 1, 54, 3, 54, 2008, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2018, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2023, 8, 54, 5, 54, 2025, 8, 54, 10, 54, 12, 54, 2028, 9, 54, 1, 54, 3, 54, 2031, 8, 54, 5, 54, 2033, 8, 54, 10, 54, 12, 54, 2036, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2042, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2047, 8, 55, 5, 55, 2049, 8, 55, 10, 55, 12, 55, 2052, 9, 55, 1, 55, 1, 55, 3, 55, 2056, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2066, 8, 56, 10, 56, 12, 56, 2069, 9, 56, 1, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 57, 1, 57, 3, 57, 2077, 8, 57, 1, 57, 1, 57, 3, 57, 2081, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2086, 8, 57, 1, 57, 1, 57, 3, 57, 2090, 8, 57, 1, 57, 3, 57, 2093, 8, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2110, 8, 57, 1, 57, 3, 57, 2113, 8, 57, 1, 57, 3, 57, 2116, 8, 57, 1, 57, 3, 57, 2119, 8, 57, 1, 57, 3, 57, 2122, 8, 57, 1, 57, 3, 57, 2125, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 1, 57, 3, 57, 2135, 8, 57, 1, 57, 3, 57, 2138, 8, 57, 1, 57, 3, 57, 2141, 8, 57, 1, 57, 3, 57, 2144, 8, 57, 1, 57, 3, 57, 2147, 8, 57, 3, 57, 2149, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2156, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2162, 8, 59, 10, 59, 12, 59, 2165, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2172, 8, 60, 10, 60, 12, 60, 2175, 9, 60, 1, 61, 1, 61, 3, 61, 2179, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2187, 8, 61, 10, 61, 12, 61, 2190, 9, 61, 3, 61, 2192, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2197, 8, 62, 1, 62, 5, 62, 2200, 8, 62, 10, 62, 12, 62, 2203, 9, 62, 1, 62, 1, 62, 3, 62, 2207, 8, 62, 1, 62, 3, 62, 2210, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2215, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2224, 8, 63, 3, 63, 2226, 8, 63, 1, 63, 1, 63, 3, 63, 2230, 8, 63, 1, 63, 3, 63, 2233, 8, 63, 1, 63, 1, 63, 3, 63, 2237, 8, 63, 1, 63, 5, 63, 2240, 8, 63, 10, 63, 12, 63, 2243, 9, 63, 1, 64, 1, 64, 3, 64, 2247, 8, 64, 1, 64, 1, 64, 3, 64, 2251, 8, 64, 1, 64, 3, 64, 2254, 8, 64, 1, 64, 1, 64, 3, 64, 2258, 8, 64, 1, 65, 3, 65, 2261, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2266, 8, 65, 1, 65, 3, 65, 2269, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2274, 8, 65, 1, 65, 3, 65, 2277, 8, 65, 1, 65, 1, 65, 3, 65, 2281, 8, 65, 1, 65, 3, 65, 2284, 8, 65, 1, 65, 3, 65, 2287, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2292, 8, 65, 1, 65, 3, 65, 2295, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2303, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2313, 8, 65, 11, 65, 12, 65, 2314, 1, 65, 1, 65, 3, 65, 2319, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2326, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2331, 8, 65, 1, 65, 3, 65, 2334, 8, 65, 1, 65, 3, 65, 2337, 8, 65, 1, 65, 3, 65, 2340, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2345, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2354, 8, 68, 10, 68, 12, 68, 2357, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2362, 8, 68, 1, 68, 1, 68, 3, 68, 2366, 8, 68, 1, 68, 3, 68, 2369, 8, 68, 1, 68, 3, 68, 2372, 8, 68, 1, 68, 5, 68, 2375, 8, 68, 10, 68, 12, 68, 2378, 9, 68, 1, 68, 1, 68, 5, 68, 2382, 8, 68, 10, 68, 12, 68, 2385, 9, 68, 3, 68, 2387, 8, 68, 1, 68, 1, 68, 3, 68, 2391, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2397, 8, 68, 10, 68, 12, 68, 2400, 9, 68, 1, 68, 1, 68, 3, 68, 2404, 8, 68, 1, 68, 3, 68, 2407, 8, 68, 1, 68, 3, 68, 2410, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2417, 8, 68, 1, 68, 5, 68, 2420, 8, 68, 10, 68, 12, 68, 2423, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2431, 8, 68, 1, 68, 3, 68, 2434, 8, 68, 1, 68, 3, 68, 2437, 8, 68, 1, 68, 5, 68, 2440, 8, 68, 10, 68, 12, 68, 2443, 9, 68, 3, 68, 2445, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2455, 8, 70, 10, 70, 12, 70, 2458, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2465, 8, 71, 10, 71, 12, 71, 2468, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2484, 8, 74, 1, 75, 1, 75, 3, 75, 2488, 8, 75, 1, 75, 1, 75, 3, 75, 2492, 8, 75, 3, 75, 2494, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2511, 8, 78, 3, 78, 2513, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2527, 8, 80, 10, 80, 12, 80, 2530, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2540, 8, 81, 1, 81, 3, 81, 2543, 8, 81, 1, 81, 3, 81, 2546, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2555, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2564, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2580, 8, 88, 1, 88, 3, 88, 2583, 8, 88, 1, 88, 3, 88, 2586, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2592, 8, 88, 10, 88, 12, 88, 2595, 9, 88, 1, 88, 3, 88, 2598, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2605, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2614, 8, 90, 1, 90, 1, 90, 3, 90, 2618, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2624, 8, 90, 1, 91, 1, 91, 3, 91, 2628, 8, 91, 1, 91, 3, 91, 2631, 8, 91, 1, 91, 3, 91, 2634, 8, 91, 1, 91, 3, 91, 2637, 8, 91, 1, 91, 3, 91, 2640, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2646, 8, 92, 1, 93, 1, 93, 3, 93, 2650, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2655, 8, 93, 1, 93, 1, 93, 3, 93, 2659, 8, 93, 1, 93, 3, 93, 2662, 8, 93, 1, 93, 3, 93, 2665, 8, 93, 1, 93, 3, 93, 2668, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2673, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2679, 8, 94, 1, 94, 1, 94, 3, 94, 2683, 8, 94, 1, 95, 1, 95, 3, 95, 2687, 8, 95, 1, 95, 1, 95, 3, 95, 2691, 8, 95, 1, 95, 1, 95, 4, 95, 2695, 8, 95, 11, 95, 12, 95, 2696, 3, 95, 2699, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2704, 8, 96, 1, 96, 1, 96, 4, 96, 2708, 8, 96, 11, 96, 12, 96, 2709, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2716, 8, 97, 1, 97, 1, 97, 3, 97, 2720, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2735, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2740, 8, 97, 1, 97, 3, 97, 2743, 8, 97, 3, 97, 2745, 8, 97, 1, 98, 3, 98, 2748, 8, 98, 1, 98, 1, 98, 3, 98, 2752, 8, 98, 1, 99, 1, 99, 3, 99, 2756, 8, 99, 1, 99, 3, 99, 2759, 8, 99, 1, 99, 3, 99, 2762, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2770, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2776, 8, 99, 3, 99, 2778, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2784, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2789, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2794, 8, 101, 1, 101, 1, 101, 3, 101, 2798, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2805, 8, 101, 10, 101, 12, 101, 2808, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2816, 8, 102, 10, 102, 12, 102, 2819, 9, 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, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2857, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2865, 8, 104, 11, 104, 12, 104, 2866, 3, 104, 2869, 8, 104, 1, 104, 3, 104, 2872, 8, 104, 1, 105, 1, 105, 3, 105, 2876, 8, 105, 1, 105, 1, 105, 3, 105, 2880, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2888, 8, 106, 11, 106, 12, 106, 2889, 3, 106, 2892, 8, 106, 1, 106, 1, 106, 4, 106, 2896, 8, 106, 11, 106, 12, 106, 2897, 3, 106, 2900, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2907, 8, 107, 10, 107, 12, 107, 2910, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2919, 8, 108, 10, 108, 12, 108, 2922, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2935, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2940, 8, 111, 1, 111, 3, 111, 2943, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2950, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2955, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2963, 8, 113, 3, 113, 2965, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2971, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2976, 8, 114, 1, 114, 1, 114, 3, 114, 2980, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2985, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2991, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2998, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3004, 8, 114, 3, 114, 3006, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3015, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3021, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3029, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3035, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3040, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3045, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3053, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3068, 8, 118, 3, 118, 3070, 8, 118, 1, 118, 1, 118, 3, 118, 3074, 8, 118, 1, 118, 1, 118, 3, 118, 3078, 8, 118, 1, 118, 3, 118, 3081, 8, 118, 1, 118, 3, 118, 3084, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3093, 8, 119, 1, 119, 3, 119, 3096, 8, 119, 1, 119, 3, 119, 3099, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3105, 8, 120, 1, 120, 1, 120, 5, 120, 3109, 8, 120, 10, 120, 12, 120, 3112, 9, 120, 1, 120, 3, 120, 3115, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3127, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3133, 8, 120, 1, 121, 3, 121, 3136, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3141, 8, 121, 1, 121, 1, 121, 3, 121, 3145, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3152, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3162, 8, 121, 3, 121, 3164, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3188, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3200, 8, 125, 1, 125, 4, 125, 3203, 8, 125, 11, 125, 12, 125, 3204, 3, 125, 3207, 8, 125, 1, 125, 1, 125, 3, 125, 3211, 8, 125, 1, 125, 3, 125, 3214, 8, 125, 1, 125, 3, 125, 3217, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3227, 8, 125, 1, 125, 3, 125, 3230, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3240, 8, 125, 1, 125, 5, 125, 3243, 8, 125, 10, 125, 12, 125, 3246, 9, 125, 1, 125, 1, 125, 3, 125, 3250, 8, 125, 1, 125, 3, 125, 3253, 8, 125, 1, 125, 3, 125, 3256, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3264, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3270, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3275, 8, 127, 10, 127, 12, 127, 3278, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3285, 8, 128, 1, 128, 3, 128, 3288, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3299, 8, 130, 1, 131, 1, 131, 3, 131, 3303, 8, 131, 1, 131, 1, 131, 5, 131, 3307, 8, 131, 10, 131, 12, 131, 3310, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3316, 8, 132, 1, 133, 3, 133, 3319, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3328, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3340, 8, 134, 10, 134, 12, 134, 3343, 9, 134, 3, 134, 3345, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3357, 8, 135, 10, 135, 12, 135, 3360, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3370, 8, 136, 1, 136, 3, 136, 3373, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3383, 8, 137, 10, 137, 12, 137, 3386, 9, 137, 1, 138, 1, 138, 3, 138, 3390, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3401, 8, 138, 10, 138, 12, 138, 3404, 9, 138, 1, 138, 1, 138, 3, 138, 3408, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3421, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3428, 8, 138, 10, 138, 12, 138, 3431, 9, 138, 3, 138, 3433, 8, 138, 1, 138, 3, 138, 3436, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3443, 8, 138, 1, 138, 3, 138, 3446, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3458, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3464, 8, 138, 3, 138, 3466, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3472, 8, 139, 10, 139, 12, 139, 3475, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3482, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3490, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3502, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3507, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3518, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3529, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3537, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3543, 8, 145, 10, 145, 12, 145, 3546, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3552, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3559, 8, 146, 3, 146, 3561, 8, 146, 1, 146, 3, 146, 3564, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3569, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3574, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3591, 8, 148, 10, 148, 12, 148, 3594, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3600, 8, 148, 10, 148, 12, 148, 3603, 9, 148, 3, 148, 3605, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 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, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3632, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3641, 8, 151, 1, 151, 3, 151, 3644, 8, 151, 1, 151, 1, 151, 3, 151, 3648, 8, 151, 1, 151, 1, 151, 3, 151, 3652, 8, 151, 1, 151, 1, 151, 3, 151, 3656, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3661, 8, 151, 10, 151, 12, 151, 3664, 9, 151, 1, 151, 3, 151, 3667, 8, 151, 1, 151, 1, 151, 3, 151, 3671, 8, 151, 1, 151, 1, 151, 3, 151, 3675, 8, 151, 1, 151, 1, 151, 3, 151, 3679, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3684, 8, 151, 1, 151, 1, 151, 3, 151, 3688, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3693, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3699, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3704, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3709, 8, 151, 10, 151, 12, 151, 3712, 9, 151, 1, 151, 3, 151, 3715, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3721, 8, 151, 1, 151, 1, 151, 3, 151, 3725, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3730, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3738, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3744, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3749, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3756, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3761, 8, 151, 1, 151, 1, 151, 3, 151, 3765, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3770, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3776, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3783, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3788, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3795, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3800, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3807, 8, 151, 1, 151, 1, 151, 3, 151, 3811, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3817, 8, 151, 10, 151, 12, 151, 3820, 9, 151, 1, 151, 3, 151, 3823, 8, 151, 3, 151, 3825, 8, 151, 1, 152, 3, 152, 3828, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3833, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3843, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3858, 8, 153, 1, 153, 3, 153, 3861, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3869, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3874, 8, 154, 10, 154, 12, 154, 3877, 9, 154, 1, 155, 1, 155, 3, 155, 3881, 8, 155, 1, 156, 1, 156, 4, 156, 3885, 8, 156, 11, 156, 12, 156, 3886, 1, 157, 1, 157, 3, 157, 3891, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3896, 8, 157, 10, 157, 12, 157, 3899, 9, 157, 1, 157, 1, 157, 3, 157, 3903, 8, 157, 1, 157, 3, 157, 3906, 8, 157, 1, 158, 3, 158, 3909, 8, 158, 1, 158, 1, 158, 3, 158, 3913, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3922, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3940, 8, 159, 1, 159, 3, 159, 3943, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3975, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3980, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3986, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4006, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4011, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4017, 8, 162, 1, 162, 3, 162, 4020, 8, 162, 1, 162, 1, 162, 3, 162, 4024, 8, 162, 1, 162, 1, 162, 3, 162, 4028, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4034, 8, 162, 1, 162, 3, 162, 4037, 8, 162, 1, 162, 1, 162, 3, 162, 4041, 8, 162, 1, 162, 1, 162, 3, 162, 4045, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4050, 8, 162, 1, 162, 3, 162, 4053, 8, 162, 1, 162, 3, 162, 4056, 8, 162, 1, 162, 3, 162, 4059, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4072, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4078, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4086, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4091, 8, 166, 10, 166, 12, 166, 4094, 9, 166, 1, 166, 1, 166, 3, 166, 4098, 8, 166, 1, 166, 3, 166, 4101, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4106, 8, 166, 10, 166, 12, 166, 4109, 9, 166, 3, 166, 4111, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4119, 8, 168, 1, 168, 3, 168, 4122, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4127, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4134, 8, 169, 1, 169, 3, 169, 4137, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4155, 8, 169, 10, 169, 12, 169, 4158, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4169, 8, 169, 1, 170, 3, 170, 4172, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4178, 8, 170, 1, 170, 5, 170, 4181, 8, 170, 10, 170, 12, 170, 4184, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4190, 8, 171, 10, 171, 12, 171, 4193, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4200, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4205, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4211, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4216, 8, 172, 10, 172, 12, 172, 4219, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4226, 8, 172, 1, 172, 3, 172, 4229, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4240, 8, 173, 10, 173, 12, 173, 4243, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4256, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4262, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4270, 8, 174, 3, 174, 4272, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4278, 8, 176, 1, 176, 1, 176, 3, 176, 4282, 8, 176, 1, 176, 3, 176, 4285, 8, 176, 1, 176, 3, 176, 4288, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4293, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4298, 8, 176, 1, 176, 1, 176, 3, 176, 4302, 8, 176, 1, 176, 3, 176, 4305, 8, 176, 1, 176, 3, 176, 4308, 8, 176, 1, 176, 3, 176, 4311, 8, 176, 1, 176, 3, 176, 4314, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4320, 8, 177, 10, 177, 12, 177, 4323, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4333, 8, 178, 1, 178, 3, 178, 4336, 8, 178, 1, 178, 3, 178, 4339, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4344, 8, 178, 1, 178, 3, 178, 4347, 8, 178, 1, 178, 1, 178, 3, 178, 4351, 8, 178, 1, 179, 1, 179, 3, 179, 4355, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4361, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4367, 8, 179, 10, 179, 12, 179, 4370, 9, 179, 3, 179, 4372, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4383, 8, 179, 10, 179, 12, 179, 4386, 9, 179, 1, 179, 1, 179, 3, 179, 4390, 8, 179, 3, 179, 4392, 8, 179, 1, 179, 4, 179, 4395, 8, 179, 11, 179, 12, 179, 4396, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4404, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4411, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4418, 8, 182, 10, 182, 12, 182, 4421, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4426, 8, 183, 10, 183, 12, 183, 4429, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4436, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4441, 8, 185, 10, 185, 12, 185, 4444, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4451, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4456, 8, 187, 10, 187, 12, 187, 4459, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4466, 8, 188, 1, 189, 1, 189, 3, 189, 4470, 8, 189, 1, 189, 1, 189, 3, 189, 4474, 8, 189, 3, 189, 4476, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4482, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4487, 8, 190, 1, 191, 1, 191, 3, 191, 4491, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4498, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4503, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4508, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4513, 8, 193, 3, 193, 4515, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4525, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4535, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4551, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4567, 8, 196, 10, 196, 12, 196, 4570, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4581, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4588, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4603, 8, 199, 1, 199, 4, 199, 4606, 8, 199, 11, 199, 12, 199, 4607, 1, 199, 3, 199, 4611, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4616, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4621, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4626, 8, 200, 1, 200, 3, 200, 4629, 8, 200, 1, 200, 3, 200, 4632, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4637, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4642, 8, 201, 10, 201, 12, 201, 4645, 9, 201, 1, 201, 3, 201, 4648, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4653, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4658, 8, 202, 10, 202, 12, 202, 4661, 9, 202, 1, 202, 3, 202, 4664, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4670, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4679, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4686, 8, 204, 10, 204, 12, 204, 4689, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4700, 8, 206, 11, 206, 12, 206, 4701, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4715, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4721, 8, 207, 1, 207, 1, 207, 3, 207, 4725, 8, 207, 3, 207, 4727, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4734, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4747, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4754, 8, 209, 3, 209, 4756, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4770, 8, 211, 10, 211, 12, 211, 4773, 9, 211, 1, 211, 3, 211, 4776, 8, 211, 1, 211, 1, 211, 3, 211, 4780, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4785, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4790, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4795, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4800, 8, 211, 1, 211, 3, 211, 4803, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4815, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4868, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4877, 8, 213, 1, 213, 1, 213, 3, 213, 4881, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4890, 8, 213, 1, 213, 1, 213, 3, 213, 4894, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4903, 8, 213, 1, 213, 1, 213, 3, 213, 4907, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4912, 8, 213, 1, 213, 3, 213, 4915, 8, 213, 1, 213, 1, 213, 3, 213, 4919, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4924, 8, 213, 3, 213, 4926, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4935, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4940, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4951, 8, 213, 1, 213, 1, 213, 3, 213, 4955, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4969, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4977, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5015, 8, 213, 3, 213, 5017, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5036, 8, 214, 1, 214, 3, 214, 5039, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5066, 8, 215, 1, 215, 1, 215, 3, 215, 5070, 8, 215, 1, 215, 1, 215, 3, 215, 5074, 8, 215, 1, 215, 1, 215, 3, 215, 5078, 8, 215, 1, 215, 1, 215, 3, 215, 5082, 8, 215, 1, 215, 3, 215, 5085, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5100, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5107, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5119, 8, 217, 10, 217, 12, 217, 5122, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5134, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5159, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5178, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5193, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5209, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5216, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5227, 8, 221, 1, 221, 3, 221, 5230, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5247, 8, 222, 10, 222, 12, 222, 5250, 9, 222, 3, 222, 5252, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5263, 8, 223, 10, 223, 12, 223, 5266, 9, 223, 1, 223, 3, 223, 5269, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5289, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5299, 8, 224, 10, 224, 12, 224, 5302, 9, 224, 1, 224, 3, 224, 5305, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5327, 8, 224, 1, 225, 1, 225, 3, 225, 5331, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5341, 8, 225, 1, 225, 1, 225, 3, 225, 5345, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5351, 8, 225, 1, 225, 1, 225, 3, 225, 5355, 8, 225, 5, 225, 5357, 8, 225, 10, 225, 12, 225, 5360, 9, 225, 1, 225, 3, 225, 5363, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5370, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5375, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5386, 8, 230, 1, 231, 1, 231, 3, 231, 5390, 8, 231, 1, 231, 3, 231, 5393, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5398, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5404, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5415, 8, 231, 1, 231, 1, 231, 3, 231, 5419, 8, 231, 1, 231, 3, 231, 5422, 8, 231, 1, 231, 1, 231, 3, 231, 5426, 8, 231, 1, 231, 1, 231, 3, 231, 5430, 8, 231, 1, 231, 3, 231, 5433, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5443, 8, 233, 1, 233, 3, 233, 5446, 8, 233, 1, 234, 1, 234, 3, 234, 5450, 8, 234, 1, 234, 5, 234, 5453, 8, 234, 10, 234, 12, 234, 5456, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5461, 8, 235, 1, 235, 3, 235, 5464, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5469, 8, 235, 1, 235, 3, 235, 5472, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5479, 8, 235, 3, 235, 5481, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5487, 8, 235, 1, 235, 1, 235, 3, 235, 5491, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5500, 8, 237, 1, 237, 4, 237, 5503, 8, 237, 11, 237, 12, 237, 5504, 3, 237, 5507, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5517, 8, 238, 1, 238, 3, 238, 5520, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5525, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5533, 8, 239, 1, 239, 3, 239, 5536, 8, 239, 1, 239, 4, 239, 5539, 8, 239, 11, 239, 12, 239, 5540, 3, 239, 5543, 8, 239, 3, 239, 5545, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5551, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5568, 8, 243, 1, 243, 1, 243, 5, 243, 5572, 8, 243, 10, 243, 12, 243, 5575, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5587, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5593, 8, 244, 1, 244, 1, 244, 3, 244, 5597, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5602, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5632, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5647, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5652, 8, 246, 1, 247, 1, 247, 3, 247, 5656, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5669, 8, 248, 1, 248, 1, 248, 3, 248, 5673, 8, 248, 3, 248, 5675, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5682, 8, 248, 10, 248, 12, 248, 5685, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5690, 8, 248, 3, 248, 5692, 8, 248, 1, 249, 1, 249, 3, 249, 5696, 8, 249, 1, 249, 3, 249, 5699, 8, 249, 1, 249, 3, 249, 5702, 8, 249, 1, 249, 3, 249, 5705, 8, 249, 1, 249, 3, 249, 5708, 8, 249, 3, 249, 5710, 8, 249, 1, 249, 3, 249, 5713, 8, 249, 1, 250, 1, 250, 3, 250, 5717, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5723, 8, 250, 10, 250, 12, 250, 5726, 9, 250, 1, 250, 1, 250, 3, 250, 5730, 8, 250, 1, 250, 3, 250, 5733, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5739, 8, 252, 1, 252, 1, 252, 3, 252, 5743, 8, 252, 1, 253, 1, 253, 3, 253, 5747, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5752, 8, 253, 3, 253, 5754, 8, 253, 1, 254, 1, 254, 3, 254, 5758, 8, 254, 1, 255, 1, 255, 3, 255, 5762, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5767, 8, 256, 10, 256, 12, 256, 5770, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5775, 8, 257, 1, 257, 1, 257, 3, 257, 5779, 8, 257, 3, 257, 5781, 8, 257, 3, 257, 5783, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5796, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5802, 8, 259, 10, 259, 12, 259, 5805, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5812, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5821, 8, 261, 10, 261, 12, 261, 5824, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5833, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5838, 8, 263, 1, 263, 1, 263, 3, 263, 5842, 8, 263, 1, 263, 1, 263, 3, 263, 5846, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5853, 8, 263, 1, 263, 3, 263, 5856, 8, 263, 3, 263, 5858, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5866, 8, 265, 1, 265, 1, 265, 3, 265, 5870, 8, 265, 1, 266, 3, 266, 5873, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5880, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5887, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5892, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5899, 8, 266, 1, 266, 3, 266, 5902, 8, 266, 3, 266, 5904, 8, 266, 1, 266, 3, 266, 5907, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5913, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5918, 8, 267, 1, 267, 1, 267, 3, 267, 5922, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5927, 8, 268, 10, 268, 12, 268, 5930, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5939, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5946, 8, 271, 1, 271, 3, 271, 5949, 8, 271, 1, 271, 3, 271, 5952, 8, 271, 1, 272, 1, 272, 3, 272, 5956, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5967, 8, 272, 1, 272, 3, 272, 5970, 8, 272, 1, 272, 3, 272, 5973, 8, 272, 1, 272, 3, 272, 5976, 8, 272, 1, 273, 3, 273, 5979, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5986, 8, 273, 1, 273, 3, 273, 5989, 8, 273, 1, 273, 3, 273, 5992, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 5997, 8, 274, 10, 274, 12, 274, 6000, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6011, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6018, 8, 275, 3, 275, 6020, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6025, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6030, 8, 276, 10, 276, 12, 276, 6033, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6038, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6045, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6050, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6055, 8, 279, 1, 279, 1, 279, 3, 279, 6059, 8, 279, 1, 279, 1, 279, 3, 279, 6063, 8, 279, 1, 279, 1, 279, 3, 279, 6067, 8, 279, 3, 279, 6069, 8, 279, 1, 280, 1, 280, 3, 280, 6073, 8, 280, 1, 281, 1, 281, 3, 281, 6077, 8, 281, 1, 281, 3, 281, 6080, 8, 281, 1, 281, 3, 281, 6083, 8, 281, 3, 281, 6085, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6095, 8, 281, 3, 281, 6097, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6102, 8, 281, 5, 281, 6104, 8, 281, 10, 281, 12, 281, 6107, 9, 281, 1, 282, 1, 282, 3, 282, 6111, 8, 282, 1, 283, 1, 283, 3, 283, 6115, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6120, 8, 283, 10, 283, 12, 283, 6123, 9, 283, 1, 284, 1, 284, 3, 284, 6127, 8, 284, 1, 284, 1, 284, 3, 284, 6131, 8, 284, 1, 284, 3, 284, 6134, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6140, 8, 284, 1, 284, 3, 284, 6143, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6162, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6169, 8, 287, 1, 287, 1, 287, 3, 287, 6173, 8, 287, 1, 288, 3, 288, 6176, 8, 288, 1, 288, 1, 288, 3, 288, 6180, 8, 288, 1, 288, 1, 288, 3, 288, 6184, 8, 288, 1, 288, 3, 288, 6187, 8, 288, 1, 288, 3, 288, 6190, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6195, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6202, 8, 290, 10, 290, 12, 290, 6205, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6211, 8, 291, 1, 291, 1, 291, 3, 291, 6215, 8, 291, 1, 292, 1, 292, 3, 292, 6219, 8, 292, 1, 292, 1, 292, 3, 292, 6223, 8, 292, 1, 292, 3, 292, 6226, 8, 292, 3, 292, 6228, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6233, 8, 293, 1, 293, 1, 293, 3, 293, 6237, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6242, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6248, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6255, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6260, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6265, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6272, 8, 298, 10, 298, 12, 298, 6275, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6281, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6287, 8, 299, 10, 299, 12, 299, 6290, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6300, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6305, 8, 300, 1, 300, 1, 300, 3, 300, 6309, 8, 300, 1, 300, 3, 300, 6312, 8, 300, 1, 300, 1, 300, 3, 300, 6316, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6321, 8, 300, 4, 300, 6323, 8, 300, 11, 300, 12, 300, 6324, 1, 300, 1, 300, 1, 300, 3, 300, 6330, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6336, 8, 301, 10, 301, 12, 301, 6339, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6347, 8, 303, 10, 303, 12, 303, 6350, 9, 303, 1, 304, 1, 304, 3, 304, 6354, 8, 304, 1, 304, 1, 304, 3, 304, 6358, 8, 304, 1, 304, 3, 304, 6361, 8, 304, 1, 304, 3, 304, 6364, 8, 304, 3, 304, 6366, 8, 304, 1, 304, 3, 304, 6369, 8, 304, 1, 304, 3, 304, 6372, 8, 304, 1, 304, 3, 304, 6375, 8, 304, 1, 304, 1, 304, 3, 304, 6379, 8, 304, 1, 304, 1, 304, 3, 304, 6383, 8, 304, 1, 304, 1, 304, 3, 304, 6387, 8, 304, 3, 304, 6389, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6398, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6403, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6409, 8, 304, 1, 304, 1, 304, 3, 304, 6413, 8, 304, 3, 304, 6415, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6422, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6427, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6433, 8, 304, 10, 304, 12, 304, 6436, 9, 304, 1, 305, 3, 305, 6439, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6446, 8, 305, 1, 306, 1, 306, 1, 306, 3, 306, 6451, 8, 306, 1, 306, 3, 306, 6454, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6460, 8, 306, 1, 307, 1, 307, 3, 307, 6464, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6470, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6479, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6485, 8, 309, 3, 309, 6487, 8, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6492, 8, 310, 1, 310, 3, 310, 6495, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6504, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6511, 8, 310, 3, 310, 6513, 8, 310, 1, 311, 1, 311, 1, 311, 5, 311, 6518, 8, 311, 10, 311, 12, 311, 6521, 9, 311, 1, 312, 1, 312, 3, 312, 6525, 8, 312, 1, 312, 3, 312, 6528, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6538, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 5, 314, 6547, 8, 314, 10, 314, 12, 314, 6550, 9, 314, 1, 314, 1, 314, 3, 314, 6554, 8, 314, 1, 314, 1, 314, 3, 314, 6558, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6566, 8, 315, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6576, 8, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6581, 8, 318, 10, 318, 12, 318, 6584, 9, 318, 1, 319, 1, 319, 1, 319, 3, 319, 6589, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6598, 8, 320, 10, 320, 12, 320, 6601, 9, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6606, 8, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 6614, 8, 320, 10, 320, 12, 320, 6617, 9, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6625, 8, 321, 1, 321, 1, 321, 3, 321, 6629, 8, 321, 1, 321, 4, 321, 6632, 8, 321, 11, 321, 12, 321, 6633, 3, 321, 6636, 8, 321, 1, 321, 1, 321, 3, 321, 6640, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6648, 8, 322, 1, 323, 3, 323, 6651, 8, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6656, 8, 323, 1, 323, 5, 323, 6659, 8, 323, 10, 323, 12, 323, 6662, 9, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6668, 8, 323, 3, 323, 6670, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6676, 8, 323, 1, 324, 1, 324, 3, 324, 6680, 8, 324, 1, 324, 3, 324, 6683, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6688, 8, 324, 1, 324, 3, 324, 6691, 8, 324, 3, 324, 6693, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6699, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6708, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6714, 8, 326, 1, 326, 3, 326, 6717, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 3, 328, 6725, 8, 328, 1, 328, 3, 328, 6728, 8, 328, 1, 329, 1, 329, 3, 329, 6732, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6738, 8, 329, 3, 329, 6740, 8, 329, 1, 329, 3, 329, 6743, 8, 329, 1, 330, 1, 330, 3, 330, 6747, 8, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6752, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6759, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6766, 8, 331, 3, 331, 6768, 8, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6774, 8, 331, 3, 331, 6776, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6781, 8, 331, 3, 331, 6783, 8, 331, 1, 332, 1, 332, 3, 332, 6787, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 3, 335, 6796, 8, 335, 1, 335, 1, 335, 3, 335, 6800, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 5, 335, 6808, 8, 335, 10, 335, 12, 335, 6811, 9, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6824, 8, 336, 1, 336, 3, 336, 6827, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6835, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6842, 8, 336, 10, 336, 12, 336, 6845, 9, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6850, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6855, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6863, 8, 336, 3, 336, 6865, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6870, 8, 336, 1, 336, 1, 336, 3, 336, 6874, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6879, 8, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6884, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6890, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6906, 8, 337, 10, 337, 12, 337, 6909, 9, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6917, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6932, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6937, 8, 338, 1, 338, 3, 338, 6940, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6946, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6951, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6964, 8, 338, 1, 338, 4, 338, 6967, 8, 338, 11, 338, 12, 338, 6968, 1, 338, 1, 338, 3, 338, 6973, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6980, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6999, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7011, 8, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7016, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 7024, 8, 338, 5, 338, 7026, 8, 338, 10, 338, 12, 338, 7029, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7037, 8, 339, 1, 339, 3, 339, 7040, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7045, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7050, 8, 339, 1, 339, 3, 339, 7053, 8, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7064, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7072, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7077, 8, 340, 3, 340, 7079, 8, 340, 1, 340, 3, 340, 7082, 8, 340, 1, 341, 1, 341, 3, 341, 7086, 8, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7097, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7118, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7126, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7139, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7149, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7155, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7161, 8, 342, 1, 342, 3, 342, 7164, 8, 342, 1, 342, 3, 342, 7167, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7193, 8, 342, 3, 342, 7195, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7216, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7226, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7239, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7244, 8, 342, 1, 342, 1, 342, 3, 342, 7248, 8, 342, 3, 342, 7250, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7262, 8, 342, 1, 343, 1, 343, 1, 343, 5, 343, 7267, 8, 343, 10, 343, 12, 343, 7270, 9, 343, 1, 344, 1, 344, 1, 344, 3, 344, 7275, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 3, 346, 7281, 8, 346, 1, 346, 1, 346, 3, 346, 7285, 8, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 5, 348, 7294, 8, 348, 10, 348, 12, 348, 7297, 9, 348, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 7309, 8, 351, 1, 352, 1, 352, 3, 352, 7313, 8, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7318, 8, 352, 1, 352, 3, 352, 7321, 8, 352, 1, 352, 3, 352, 7324, 8, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7333, 8, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7344, 8, 353, 3, 353, 7346, 8, 353, 1, 354, 1, 354, 3, 354, 7350, 8, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7355, 8, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7364, 8, 355, 1, 356, 1, 356, 1, 356, 3, 356, 7369, 8, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 358, 1, 358, 3, 358, 7377, 8, 358, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7387, 8, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7395, 8, 361, 1, 362, 1, 362, 3, 362, 7399, 8, 362, 1, 362, 3, 362, 7402, 8, 362, 1, 363, 1, 363, 1, 363, 5, 363, 7407, 8, 363, 10, 363, 12, 363, 7410, 9, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7417, 8, 364, 1, 365, 1, 365, 3, 365, 7421, 8, 365, 1, 366, 1, 366, 1, 366, 5, 366, 7426, 8, 366, 10, 366, 12, 366, 7429, 9, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7436, 8, 367, 3, 367, 7438, 8, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 5, 368, 7445, 8, 368, 10, 368, 12, 368, 7448, 9, 368, 3, 368, 7450, 8, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 7462, 8, 369, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7471, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7478, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7487, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 3, 373, 7497, 8, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7502, 8, 373, 1, 373, 1, 373, 3, 373, 7506, 8, 373, 3, 373, 7508, 8, 373, 1, 373, 3, 373, 7511, 8, 373, 1, 374, 4, 374, 7514, 8, 374, 11, 374, 12, 374, 7515, 1, 375, 5, 375, 7519, 8, 375, 10, 375, 12, 375, 7522, 9, 375, 1, 376, 1, 376, 1, 376, 5, 376, 7527, 8, 376, 10, 376, 12, 376, 7530, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7537, 8, 377, 1, 377, 3, 377, 7540, 8, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7545, 8, 378, 10, 378, 12, 378, 7548, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7553, 8, 379, 10, 379, 12, 379, 7556, 9, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7561, 8, 380, 10, 380, 12, 380, 7564, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7569, 8, 381, 10, 381, 12, 381, 7572, 9, 381, 1, 382, 1, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 3, 388, 7588, 8, 388, 1, 389, 1, 389, 1, 389, 5, 389, 7593, 8, 389, 10, 389, 12, 389, 7596, 9, 389, 1, 390, 1, 390, 1, 390, 5, 390, 7601, 8, 390, 10, 390, 12, 390, 7604, 9, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7620, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7626, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7632, 8, 398, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7643, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7649, 8, 402, 1, 403, 1, 403, 1, 403, 3, 403, 7654, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 5, 404, 7660, 8, 404, 10, 404, 12, 404, 7663, 9, 404, 1, 404, 1, 404, 3, 404, 7667, 8, 404, 1, 405, 3, 405, 7670, 8, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7679, 8, 406, 1, 407, 1, 407, 1, 407, 5, 407, 7684, 8, 407, 10, 407, 12, 407, 7687, 9, 407, 1, 408, 1, 408, 3, 408, 7691, 8, 408, 1, 409, 1, 409, 3, 409, 7695, 8, 409, 1, 410, 1, 410, 1, 410, 3, 410, 7700, 8, 410, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7706, 8, 411, 1, 412, 1, 412, 1, 412, 3, 412, 7711, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7719, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7774, 8, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 417, 3, 417, 7781, 8, 417, 1, 417, 1, 417, 1, 417, 1, 417, 4, 417, 7787, 8, 417, 11, 417, 12, 417, 7788, 3, 417, 7791, 8, 417, 3, 417, 7793, 8, 417, 1, 417, 1, 417, 5, 417, 7797, 8, 417, 10, 417, 12, 417, 7800, 9, 417, 1, 417, 3, 417, 7803, 8, 417, 1, 417, 1, 417, 3, 417, 7807, 8, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7818, 8, 419, 1, 419, 3, 419, 7821, 8, 419, 1, 419, 1, 419, 3, 419, 7825, 8, 419, 1, 419, 1, 419, 3, 419, 7829, 8, 419, 1, 419, 1, 419, 3, 419, 7833, 8, 419, 1, 419, 3, 419, 7836, 8, 419, 1, 419, 3, 419, 7839, 8, 419, 1, 419, 3, 419, 7842, 8, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 5, 419, 7849, 8, 419, 10, 419, 12, 419, 7852, 9, 419, 1, 419, 1, 419, 3, 419, 7856, 8, 419, 1, 419, 1, 419, 3, 419, 7860, 8, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7893, 8, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7903, 8, 424, 1, 424, 1, 424, 3, 424, 7907, 8, 424, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7913, 8, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7918, 8, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 3, 426, 7927, 8, 426, 1, 426, 1, 426, 1, 426, 1, 426, 5, 426, 7933, 8, 426, 10, 426, 12, 426, 7936, 9, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 3, 428, 7946, 8, 428, 1, 428, 1, 428, 1, 428, 1, 428, 5, 428, 7952, 8, 428, 10, 428, 12, 428, 7955, 9, 428, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7961, 8, 429, 10, 429, 12, 429, 7964, 9, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7970, 8, 429, 10, 429, 12, 429, 7973, 9, 429, 5, 429, 7975, 8, 429, 10, 429, 12, 429, 7978, 9, 429, 1, 429, 3, 429, 7981, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 5, 430, 7989, 8, 430, 10, 430, 12, 430, 7992, 9, 430, 1, 431, 1, 431, 3, 431, 7996, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 8002, 8, 431, 10, 431, 12, 431, 8005, 9, 431, 4, 431, 8007, 8, 431, 11, 431, 12, 431, 8008, 1, 431, 3, 431, 8012, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 3, 432, 8019, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 3, 432, 8025, 8, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8033, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8041, 8, 433, 1, 433, 3, 433, 8044, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8051, 8, 433, 3, 433, 8053, 8, 433, 1, 434, 3, 434, 8056, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8062, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 3, 435, 8071, 8, 435, 1, 435, 1, 435, 3, 435, 8075, 8, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8089, 8, 436, 1, 436, 3, 436, 8092, 8, 436, 3, 436, 8094, 8, 436, 1, 436, 1, 436, 1, 437, 1, 437, 3, 437, 8100, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 4, 437, 8108, 8, 437, 11, 437, 12, 437, 8109, 3, 437, 8112, 8, 437, 3, 437, 8114, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 5, 437, 8120, 8, 437, 10, 437, 12, 437, 8123, 9, 437, 3, 437, 8125, 8, 437, 1, 437, 3, 437, 8128, 8, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8138, 8, 439, 1, 439, 1, 439, 1, 440, 1, 440, 5, 440, 8144, 8, 440, 10, 440, 12, 440, 8147, 9, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8152, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8158, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 3, 442, 8165, 8, 442, 1, 442, 1, 442, 3, 442, 8169, 8, 442, 1, 442, 1, 442, 3, 442, 8173, 8, 442, 1, 442, 3, 442, 8176, 8, 442, 1, 442, 3, 442, 8179, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 3, 443, 8185, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 3, 444, 8192, 8, 444, 1, 444, 3, 444, 8195, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8203, 8, 444, 3, 444, 8205, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 5, 444, 8212, 8, 444, 10, 444, 12, 444, 8215, 9, 444, 1, 444, 1, 444, 3, 444, 8219, 8, 444, 3, 444, 8221, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 3, 445, 8228, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 3, 446, 8234, 8, 446, 1, 446, 3, 446, 8237, 8, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8249, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8256, 8, 447, 3, 447, 8258, 8, 447, 1, 448, 1, 448, 3, 448, 8262, 8, 448, 1, 448, 1, 448, 1, 448, 1, 449, 3, 449, 8268, 8, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8273, 8, 449, 1, 449, 1, 449, 3, 449, 8277, 8, 449, 1, 449, 3, 449, 8280, 8, 449, 1, 449, 3, 449, 8283, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 4, 449, 8290, 8, 449, 11, 449, 12, 449, 8291, 1, 449, 3, 449, 8295, 8, 449, 1, 450, 3, 450, 8298, 8, 450, 1, 450, 1, 450, 3, 450, 8302, 8, 450, 1, 450, 1, 450, 3, 450, 8306, 8, 450, 3, 450, 8308, 8, 450, 1, 450, 3, 450, 8311, 8, 450, 1, 450, 3, 450, 8314, 8, 450, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8320, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8327, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8334, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8340, 8, 451, 3, 451, 8342, 8, 451, 1, 452, 1, 452, 3, 452, 8346, 8, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8351, 8, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 5, 453, 8367, 8, 453, 10, 453, 12, 453, 8370, 9, 453, 1, 453, 1, 453, 4, 453, 8374, 8, 453, 11, 453, 12, 453, 8375, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 5, 454, 8383, 8, 454, 10, 454, 12, 454, 8386, 9, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8392, 8, 454, 1, 455, 1, 455, 3, 455, 8396, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 3, 458, 8408, 8, 458, 1, 458, 3, 458, 8411, 8, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 3, 459, 8424, 8, 459, 1, 459, 3, 459, 8427, 8, 459, 1, 460, 1, 460, 3, 460, 8431, 8, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 5, 461, 8438, 8, 461, 10, 461, 12, 461, 8441, 9, 461, 1, 461, 1, 461, 5, 461, 8445, 8, 461, 10, 461, 12, 461, 8448, 9, 461, 4, 461, 8450, 8, 461, 11, 461, 12, 461, 8451, 1, 462, 1, 462, 1, 462, 3, 462, 8457, 8, 462, 1, 463, 1, 463, 3, 463, 8461, 8, 463, 1, 464, 3, 464, 8464, 8, 464, 1, 464, 3, 464, 8467, 8, 464, 1, 464, 3, 464, 8470, 8, 464, 1, 464, 3, 464, 8473, 8, 464, 1, 464, 3, 464, 8476, 8, 464, 1, 464, 3, 464, 8479, 8, 464, 1, 464, 3, 464, 8482, 8, 464, 1, 464, 0, 3, 670, 674, 676, 465, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 0, 119, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 158, 158, 277, 277, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 1, 0, 549, 551, 2, 0, 213, 213, 254, 254, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 574, 574, 576, 576, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9922, 0, 933, 1, 0, 0, 0, 2, 938, 1, 0, 0, 0, 4, 1062, 1, 0, 0, 0, 6, 1064, 1, 0, 0, 0, 8, 1067, 1, 0, 0, 0, 10, 1117, 1, 0, 0, 0, 12, 1127, 1, 0, 0, 0, 14, 1129, 1, 0, 0, 0, 16, 1141, 1, 0, 0, 0, 18, 1153, 1, 0, 0, 0, 20, 1164, 1, 0, 0, 0, 22, 1198, 1, 0, 0, 0, 24, 1242, 1, 0, 0, 0, 26, 1244, 1, 0, 0, 0, 28, 1256, 1, 0, 0, 0, 30, 1263, 1, 0, 0, 0, 32, 1282, 1, 0, 0, 0, 34, 1290, 1, 0, 0, 0, 36, 1292, 1, 0, 0, 0, 38, 1306, 1, 0, 0, 0, 40, 1310, 1, 0, 0, 0, 42, 1347, 1, 0, 0, 0, 44, 1349, 1, 0, 0, 0, 46, 1357, 1, 0, 0, 0, 48, 1367, 1, 0, 0, 0, 50, 1374, 1, 0, 0, 0, 52, 1382, 1, 0, 0, 0, 54, 1388, 1, 0, 0, 0, 56, 1404, 1, 0, 0, 0, 58, 1408, 1, 0, 0, 0, 60, 1410, 1, 0, 0, 0, 62, 1422, 1, 0, 0, 0, 64, 1427, 1, 0, 0, 0, 66, 1432, 1, 0, 0, 0, 68, 1434, 1, 0, 0, 0, 70, 1446, 1, 0, 0, 0, 72, 1454, 1, 0, 0, 0, 74, 1456, 1, 0, 0, 0, 76, 1576, 1, 0, 0, 0, 78, 1578, 1, 0, 0, 0, 80, 1592, 1, 0, 0, 0, 82, 1594, 1, 0, 0, 0, 84, 1831, 1, 0, 0, 0, 86, 1838, 1, 0, 0, 0, 88, 1840, 1, 0, 0, 0, 90, 1842, 1, 0, 0, 0, 92, 1845, 1, 0, 0, 0, 94, 1856, 1, 0, 0, 0, 96, 1859, 1, 0, 0, 0, 98, 1889, 1, 0, 0, 0, 100, 1891, 1, 0, 0, 0, 102, 1932, 1, 0, 0, 0, 104, 1934, 1, 0, 0, 0, 106, 1988, 1, 0, 0, 0, 108, 2034, 1, 0, 0, 0, 110, 2055, 1, 0, 0, 0, 112, 2057, 1, 0, 0, 0, 114, 2074, 1, 0, 0, 0, 116, 2155, 1, 0, 0, 0, 118, 2157, 1, 0, 0, 0, 120, 2168, 1, 0, 0, 0, 122, 2191, 1, 0, 0, 0, 124, 2209, 1, 0, 0, 0, 126, 2211, 1, 0, 0, 0, 128, 2246, 1, 0, 0, 0, 130, 2339, 1, 0, 0, 0, 132, 2344, 1, 0, 0, 0, 134, 2346, 1, 0, 0, 0, 136, 2444, 1, 0, 0, 0, 138, 2446, 1, 0, 0, 0, 140, 2450, 1, 0, 0, 0, 142, 2461, 1, 0, 0, 0, 144, 2469, 1, 0, 0, 0, 146, 2472, 1, 0, 0, 0, 148, 2475, 1, 0, 0, 0, 150, 2493, 1, 0, 0, 0, 152, 2495, 1, 0, 0, 0, 154, 2499, 1, 0, 0, 0, 156, 2512, 1, 0, 0, 0, 158, 2514, 1, 0, 0, 0, 160, 2519, 1, 0, 0, 0, 162, 2539, 1, 0, 0, 0, 164, 2547, 1, 0, 0, 0, 166, 2554, 1, 0, 0, 0, 168, 2556, 1, 0, 0, 0, 170, 2565, 1, 0, 0, 0, 172, 2568, 1, 0, 0, 0, 174, 2572, 1, 0, 0, 0, 176, 2576, 1, 0, 0, 0, 178, 2601, 1, 0, 0, 0, 180, 2611, 1, 0, 0, 0, 182, 2625, 1, 0, 0, 0, 184, 2641, 1, 0, 0, 0, 186, 2647, 1, 0, 0, 0, 188, 2674, 1, 0, 0, 0, 190, 2684, 1, 0, 0, 0, 192, 2700, 1, 0, 0, 0, 194, 2744, 1, 0, 0, 0, 196, 2751, 1, 0, 0, 0, 198, 2753, 1, 0, 0, 0, 200, 2779, 1, 0, 0, 0, 202, 2790, 1, 0, 0, 0, 204, 2809, 1, 0, 0, 0, 206, 2820, 1, 0, 0, 0, 208, 2858, 1, 0, 0, 0, 210, 2879, 1, 0, 0, 0, 212, 2881, 1, 0, 0, 0, 214, 2901, 1, 0, 0, 0, 216, 2913, 1, 0, 0, 0, 218, 2925, 1, 0, 0, 0, 220, 2928, 1, 0, 0, 0, 222, 2931, 1, 0, 0, 0, 224, 2951, 1, 0, 0, 0, 226, 2956, 1, 0, 0, 0, 228, 3005, 1, 0, 0, 0, 230, 3007, 1, 0, 0, 0, 232, 3030, 1, 0, 0, 0, 234, 3046, 1, 0, 0, 0, 236, 3058, 1, 0, 0, 0, 238, 3085, 1, 0, 0, 0, 240, 3100, 1, 0, 0, 0, 242, 3163, 1, 0, 0, 0, 244, 3165, 1, 0, 0, 0, 246, 3170, 1, 0, 0, 0, 248, 3176, 1, 0, 0, 0, 250, 3263, 1, 0, 0, 0, 252, 3269, 1, 0, 0, 0, 254, 3271, 1, 0, 0, 0, 256, 3287, 1, 0, 0, 0, 258, 3289, 1, 0, 0, 0, 260, 3298, 1, 0, 0, 0, 262, 3302, 1, 0, 0, 0, 264, 3315, 1, 0, 0, 0, 266, 3327, 1, 0, 0, 0, 268, 3329, 1, 0, 0, 0, 270, 3351, 1, 0, 0, 0, 272, 3363, 1, 0, 0, 0, 274, 3374, 1, 0, 0, 0, 276, 3465, 1, 0, 0, 0, 278, 3467, 1, 0, 0, 0, 280, 3478, 1, 0, 0, 0, 282, 3489, 1, 0, 0, 0, 284, 3491, 1, 0, 0, 0, 286, 3517, 1, 0, 0, 0, 288, 3519, 1, 0, 0, 0, 290, 3523, 1, 0, 0, 0, 292, 3573, 1, 0, 0, 0, 294, 3575, 1, 0, 0, 0, 296, 3581, 1, 0, 0, 0, 298, 3606, 1, 0, 0, 0, 300, 3610, 1, 0, 0, 0, 302, 3824, 1, 0, 0, 0, 304, 3842, 1, 0, 0, 0, 306, 3868, 1, 0, 0, 0, 308, 3870, 1, 0, 0, 0, 310, 3878, 1, 0, 0, 0, 312, 3884, 1, 0, 0, 0, 314, 3888, 1, 0, 0, 0, 316, 3908, 1, 0, 0, 0, 318, 3914, 1, 0, 0, 0, 320, 3981, 1, 0, 0, 0, 322, 4012, 1, 0, 0, 0, 324, 4058, 1, 0, 0, 0, 326, 4060, 1, 0, 0, 0, 328, 4062, 1, 0, 0, 0, 330, 4073, 1, 0, 0, 0, 332, 4110, 1, 0, 0, 0, 334, 4112, 1, 0, 0, 0, 336, 4118, 1, 0, 0, 0, 338, 4168, 1, 0, 0, 0, 340, 4171, 1, 0, 0, 0, 342, 4185, 1, 0, 0, 0, 344, 4206, 1, 0, 0, 0, 346, 4230, 1, 0, 0, 0, 348, 4271, 1, 0, 0, 0, 350, 4273, 1, 0, 0, 0, 352, 4275, 1, 0, 0, 0, 354, 4315, 1, 0, 0, 0, 356, 4332, 1, 0, 0, 0, 358, 4352, 1, 0, 0, 0, 360, 4405, 1, 0, 0, 0, 362, 4408, 1, 0, 0, 0, 364, 4414, 1, 0, 0, 0, 366, 4422, 1, 0, 0, 0, 368, 4435, 1, 0, 0, 0, 370, 4437, 1, 0, 0, 0, 372, 4450, 1, 0, 0, 0, 374, 4452, 1, 0, 0, 0, 376, 4465, 1, 0, 0, 0, 378, 4475, 1, 0, 0, 0, 380, 4486, 1, 0, 0, 0, 382, 4497, 1, 0, 0, 0, 384, 4499, 1, 0, 0, 0, 386, 4504, 1, 0, 0, 0, 388, 4518, 1, 0, 0, 0, 390, 4550, 1, 0, 0, 0, 392, 4587, 1, 0, 0, 0, 394, 4589, 1, 0, 0, 0, 396, 4592, 1, 0, 0, 0, 398, 4595, 1, 0, 0, 0, 400, 4612, 1, 0, 0, 0, 402, 4633, 1, 0, 0, 0, 404, 4649, 1, 0, 0, 0, 406, 4665, 1, 0, 0, 0, 408, 4687, 1, 0, 0, 0, 410, 4692, 1, 0, 0, 0, 412, 4695, 1, 0, 0, 0, 414, 4703, 1, 0, 0, 0, 416, 4728, 1, 0, 0, 0, 418, 4731, 1, 0, 0, 0, 420, 4759, 1, 0, 0, 0, 422, 4764, 1, 0, 0, 0, 424, 4804, 1, 0, 0, 0, 426, 5016, 1, 0, 0, 0, 428, 5018, 1, 0, 0, 0, 430, 5106, 1, 0, 0, 0, 432, 5108, 1, 0, 0, 0, 434, 5114, 1, 0, 0, 0, 436, 5125, 1, 0, 0, 0, 438, 5135, 1, 0, 0, 0, 440, 5215, 1, 0, 0, 0, 442, 5217, 1, 0, 0, 0, 444, 5231, 1, 0, 0, 0, 446, 5253, 1, 0, 0, 0, 448, 5326, 1, 0, 0, 0, 450, 5328, 1, 0, 0, 0, 452, 5369, 1, 0, 0, 0, 454, 5371, 1, 0, 0, 0, 456, 5376, 1, 0, 0, 0, 458, 5379, 1, 0, 0, 0, 460, 5382, 1, 0, 0, 0, 462, 5432, 1, 0, 0, 0, 464, 5434, 1, 0, 0, 0, 466, 5445, 1, 0, 0, 0, 468, 5447, 1, 0, 0, 0, 470, 5457, 1, 0, 0, 0, 472, 5492, 1, 0, 0, 0, 474, 5495, 1, 0, 0, 0, 476, 5516, 1, 0, 0, 0, 478, 5526, 1, 0, 0, 0, 480, 5546, 1, 0, 0, 0, 482, 5552, 1, 0, 0, 0, 484, 5558, 1, 0, 0, 0, 486, 5563, 1, 0, 0, 0, 488, 5576, 1, 0, 0, 0, 490, 5603, 1, 0, 0, 0, 492, 5651, 1, 0, 0, 0, 494, 5653, 1, 0, 0, 0, 496, 5691, 1, 0, 0, 0, 498, 5693, 1, 0, 0, 0, 500, 5714, 1, 0, 0, 0, 502, 5734, 1, 0, 0, 0, 504, 5738, 1, 0, 0, 0, 506, 5753, 1, 0, 0, 0, 508, 5755, 1, 0, 0, 0, 510, 5759, 1, 0, 0, 0, 512, 5763, 1, 0, 0, 0, 514, 5771, 1, 0, 0, 0, 516, 5795, 1, 0, 0, 0, 518, 5797, 1, 0, 0, 0, 520, 5808, 1, 0, 0, 0, 522, 5816, 1, 0, 0, 0, 524, 5832, 1, 0, 0, 0, 526, 5857, 1, 0, 0, 0, 528, 5859, 1, 0, 0, 0, 530, 5863, 1, 0, 0, 0, 532, 5872, 1, 0, 0, 0, 534, 5912, 1, 0, 0, 0, 536, 5923, 1, 0, 0, 0, 538, 5931, 1, 0, 0, 0, 540, 5934, 1, 0, 0, 0, 542, 5938, 1, 0, 0, 0, 544, 5953, 1, 0, 0, 0, 546, 5978, 1, 0, 0, 0, 548, 5993, 1, 0, 0, 0, 550, 6019, 1, 0, 0, 0, 552, 6021, 1, 0, 0, 0, 554, 6044, 1, 0, 0, 0, 556, 6046, 1, 0, 0, 0, 558, 6054, 1, 0, 0, 0, 560, 6072, 1, 0, 0, 0, 562, 6096, 1, 0, 0, 0, 564, 6108, 1, 0, 0, 0, 566, 6112, 1, 0, 0, 0, 568, 6124, 1, 0, 0, 0, 570, 6144, 1, 0, 0, 0, 572, 6152, 1, 0, 0, 0, 574, 6166, 1, 0, 0, 0, 576, 6189, 1, 0, 0, 0, 578, 6191, 1, 0, 0, 0, 580, 6196, 1, 0, 0, 0, 582, 6206, 1, 0, 0, 0, 584, 6227, 1, 0, 0, 0, 586, 6229, 1, 0, 0, 0, 588, 6238, 1, 0, 0, 0, 590, 6249, 1, 0, 0, 0, 592, 6259, 1, 0, 0, 0, 594, 6261, 1, 0, 0, 0, 596, 6268, 1, 0, 0, 0, 598, 6299, 1, 0, 0, 0, 600, 6329, 1, 0, 0, 0, 602, 6331, 1, 0, 0, 0, 604, 6340, 1, 0, 0, 0, 606, 6343, 1, 0, 0, 0, 608, 6414, 1, 0, 0, 0, 610, 6438, 1, 0, 0, 0, 612, 6459, 1, 0, 0, 0, 614, 6461, 1, 0, 0, 0, 616, 6469, 1, 0, 0, 0, 618, 6486, 1, 0, 0, 0, 620, 6512, 1, 0, 0, 0, 622, 6514, 1, 0, 0, 0, 624, 6522, 1, 0, 0, 0, 626, 6529, 1, 0, 0, 0, 628, 6553, 1, 0, 0, 0, 630, 6559, 1, 0, 0, 0, 632, 6567, 1, 0, 0, 0, 634, 6570, 1, 0, 0, 0, 636, 6577, 1, 0, 0, 0, 638, 6585, 1, 0, 0, 0, 640, 6590, 1, 0, 0, 0, 642, 6620, 1, 0, 0, 0, 644, 6647, 1, 0, 0, 0, 646, 6675, 1, 0, 0, 0, 648, 6692, 1, 0, 0, 0, 650, 6698, 1, 0, 0, 0, 652, 6716, 1, 0, 0, 0, 654, 6718, 1, 0, 0, 0, 656, 6722, 1, 0, 0, 0, 658, 6739, 1, 0, 0, 0, 660, 6744, 1, 0, 0, 0, 662, 6782, 1, 0, 0, 0, 664, 6784, 1, 0, 0, 0, 666, 6788, 1, 0, 0, 0, 668, 6790, 1, 0, 0, 0, 670, 6799, 1, 0, 0, 0, 672, 6883, 1, 0, 0, 0, 674, 6889, 1, 0, 0, 0, 676, 6998, 1, 0, 0, 0, 678, 7030, 1, 0, 0, 0, 680, 7081, 1, 0, 0, 0, 682, 7085, 1, 0, 0, 0, 684, 7261, 1, 0, 0, 0, 686, 7263, 1, 0, 0, 0, 688, 7271, 1, 0, 0, 0, 690, 7276, 1, 0, 0, 0, 692, 7278, 1, 0, 0, 0, 694, 7286, 1, 0, 0, 0, 696, 7289, 1, 0, 0, 0, 698, 7298, 1, 0, 0, 0, 700, 7301, 1, 0, 0, 0, 702, 7305, 1, 0, 0, 0, 704, 7310, 1, 0, 0, 0, 706, 7327, 1, 0, 0, 0, 708, 7354, 1, 0, 0, 0, 710, 7363, 1, 0, 0, 0, 712, 7365, 1, 0, 0, 0, 714, 7372, 1, 0, 0, 0, 716, 7376, 1, 0, 0, 0, 718, 7378, 1, 0, 0, 0, 720, 7386, 1, 0, 0, 0, 722, 7394, 1, 0, 0, 0, 724, 7401, 1, 0, 0, 0, 726, 7403, 1, 0, 0, 0, 728, 7416, 1, 0, 0, 0, 730, 7420, 1, 0, 0, 0, 732, 7422, 1, 0, 0, 0, 734, 7437, 1, 0, 0, 0, 736, 7439, 1, 0, 0, 0, 738, 7461, 1, 0, 0, 0, 740, 7463, 1, 0, 0, 0, 742, 7486, 1, 0, 0, 0, 744, 7488, 1, 0, 0, 0, 746, 7510, 1, 0, 0, 0, 748, 7513, 1, 0, 0, 0, 750, 7520, 1, 0, 0, 0, 752, 7523, 1, 0, 0, 0, 754, 7539, 1, 0, 0, 0, 756, 7541, 1, 0, 0, 0, 758, 7549, 1, 0, 0, 0, 760, 7557, 1, 0, 0, 0, 762, 7565, 1, 0, 0, 0, 764, 7573, 1, 0, 0, 0, 766, 7575, 1, 0, 0, 0, 768, 7577, 1, 0, 0, 0, 770, 7579, 1, 0, 0, 0, 772, 7581, 1, 0, 0, 0, 774, 7583, 1, 0, 0, 0, 776, 7585, 1, 0, 0, 0, 778, 7589, 1, 0, 0, 0, 780, 7597, 1, 0, 0, 0, 782, 7605, 1, 0, 0, 0, 784, 7607, 1, 0, 0, 0, 786, 7609, 1, 0, 0, 0, 788, 7611, 1, 0, 0, 0, 790, 7613, 1, 0, 0, 0, 792, 7619, 1, 0, 0, 0, 794, 7625, 1, 0, 0, 0, 796, 7631, 1, 0, 0, 0, 798, 7633, 1, 0, 0, 0, 800, 7636, 1, 0, 0, 0, 802, 7642, 1, 0, 0, 0, 804, 7648, 1, 0, 0, 0, 806, 7650, 1, 0, 0, 0, 808, 7666, 1, 0, 0, 0, 810, 7669, 1, 0, 0, 0, 812, 7678, 1, 0, 0, 0, 814, 7680, 1, 0, 0, 0, 816, 7690, 1, 0, 0, 0, 818, 7694, 1, 0, 0, 0, 820, 7699, 1, 0, 0, 0, 822, 7705, 1, 0, 0, 0, 824, 7718, 1, 0, 0, 0, 826, 7720, 1, 0, 0, 0, 828, 7773, 1, 0, 0, 0, 830, 7775, 1, 0, 0, 0, 832, 7777, 1, 0, 0, 0, 834, 7780, 1, 0, 0, 0, 836, 7808, 1, 0, 0, 0, 838, 7812, 1, 0, 0, 0, 840, 7863, 1, 0, 0, 0, 842, 7866, 1, 0, 0, 0, 844, 7892, 1, 0, 0, 0, 846, 7894, 1, 0, 0, 0, 848, 7917, 1, 0, 0, 0, 850, 7919, 1, 0, 0, 0, 852, 7924, 1, 0, 0, 0, 854, 7939, 1, 0, 0, 0, 856, 7945, 1, 0, 0, 0, 858, 7956, 1, 0, 0, 0, 860, 7986, 1, 0, 0, 0, 862, 7993, 1, 0, 0, 0, 864, 8018, 1, 0, 0, 0, 866, 8028, 1, 0, 0, 0, 868, 8055, 1, 0, 0, 0, 870, 8068, 1, 0, 0, 0, 872, 8078, 1, 0, 0, 0, 874, 8097, 1, 0, 0, 0, 876, 8129, 1, 0, 0, 0, 878, 8133, 1, 0, 0, 0, 880, 8141, 1, 0, 0, 0, 882, 8155, 1, 0, 0, 0, 884, 8161, 1, 0, 0, 0, 886, 8182, 1, 0, 0, 0, 888, 8188, 1, 0, 0, 0, 890, 8227, 1, 0, 0, 0, 892, 8231, 1, 0, 0, 0, 894, 8257, 1, 0, 0, 0, 896, 8259, 1, 0, 0, 0, 898, 8267, 1, 0, 0, 0, 900, 8307, 1, 0, 0, 0, 902, 8341, 1, 0, 0, 0, 904, 8343, 1, 0, 0, 0, 906, 8354, 1, 0, 0, 0, 908, 8391, 1, 0, 0, 0, 910, 8395, 1, 0, 0, 0, 912, 8397, 1, 0, 0, 0, 914, 8401, 1, 0, 0, 0, 916, 8404, 1, 0, 0, 0, 918, 8426, 1, 0, 0, 0, 920, 8430, 1, 0, 0, 0, 922, 8432, 1, 0, 0, 0, 924, 8456, 1, 0, 0, 0, 926, 8460, 1, 0, 0, 0, 928, 8463, 1, 0, 0, 0, 930, 932, 3, 2, 1, 0, 931, 930, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 936, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 0, 0, 1, 937, 1, 1, 0, 0, 0, 938, 940, 3, 4, 2, 0, 939, 941, 5, 7, 0, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 3, 1, 0, 0, 0, 942, 1063, 3, 272, 136, 0, 943, 1063, 3, 482, 241, 0, 944, 1063, 3, 478, 239, 0, 945, 1063, 3, 480, 240, 0, 946, 1063, 3, 346, 173, 0, 947, 1063, 3, 488, 244, 0, 948, 1063, 3, 286, 143, 0, 949, 1063, 3, 204, 102, 0, 950, 1063, 3, 206, 103, 0, 951, 1063, 3, 212, 106, 0, 952, 1063, 3, 226, 113, 0, 953, 1063, 3, 398, 199, 0, 954, 1063, 3, 28, 14, 0, 955, 1063, 3, 428, 214, 0, 956, 1063, 3, 430, 215, 0, 957, 1063, 3, 440, 220, 0, 958, 1063, 3, 432, 216, 0, 959, 1063, 3, 438, 219, 0, 960, 1063, 3, 238, 119, 0, 961, 1063, 3, 240, 120, 0, 962, 1063, 3, 192, 96, 0, 963, 1063, 3, 484, 242, 0, 964, 1063, 3, 76, 38, 0, 965, 1063, 3, 424, 212, 0, 966, 1063, 3, 100, 50, 0, 967, 1063, 3, 444, 222, 0, 968, 1063, 3, 18, 9, 0, 969, 1063, 3, 20, 10, 0, 970, 1063, 3, 16, 8, 0, 971, 1063, 3, 448, 224, 0, 972, 1063, 3, 178, 89, 0, 973, 1063, 3, 492, 246, 0, 974, 1063, 3, 490, 245, 0, 975, 1063, 3, 234, 117, 0, 976, 1063, 3, 500, 250, 0, 977, 1063, 3, 6, 3, 0, 978, 1063, 3, 72, 36, 0, 979, 1063, 3, 104, 52, 0, 980, 1063, 3, 496, 248, 0, 981, 1063, 3, 318, 159, 0, 982, 1063, 3, 70, 35, 0, 983, 1063, 3, 106, 53, 0, 984, 1063, 3, 248, 124, 0, 985, 1063, 3, 180, 90, 0, 986, 1063, 3, 274, 137, 0, 987, 1063, 3, 414, 207, 0, 988, 1063, 3, 494, 247, 0, 989, 1063, 3, 486, 243, 0, 990, 1063, 3, 202, 101, 0, 991, 1063, 3, 208, 104, 0, 992, 1063, 3, 222, 111, 0, 993, 1063, 3, 228, 114, 0, 994, 1063, 3, 358, 179, 0, 995, 1063, 3, 26, 13, 0, 996, 1063, 3, 186, 93, 0, 997, 1063, 3, 290, 145, 0, 998, 1063, 3, 294, 147, 0, 999, 1063, 3, 442, 221, 0, 1000, 1063, 3, 296, 148, 0, 1001, 1063, 3, 236, 118, 0, 1002, 1063, 3, 198, 99, 0, 1003, 1063, 3, 30, 15, 0, 1004, 1063, 3, 190, 95, 0, 1005, 1063, 3, 114, 57, 0, 1006, 1063, 3, 446, 223, 0, 1007, 1063, 3, 176, 88, 0, 1008, 1063, 3, 200, 100, 0, 1009, 1063, 3, 418, 209, 0, 1010, 1063, 3, 250, 125, 0, 1011, 1063, 3, 268, 134, 0, 1012, 1063, 3, 8, 4, 0, 1013, 1063, 3, 14, 7, 0, 1014, 1063, 3, 232, 116, 0, 1015, 1063, 3, 474, 237, 0, 1016, 1063, 3, 530, 265, 0, 1017, 1063, 3, 552, 276, 0, 1018, 1063, 3, 276, 138, 0, 1019, 1063, 3, 542, 271, 0, 1020, 1063, 3, 74, 37, 0, 1021, 1063, 3, 412, 206, 0, 1022, 1063, 3, 302, 151, 0, 1023, 1063, 3, 526, 263, 0, 1024, 1063, 3, 514, 257, 0, 1025, 1063, 3, 322, 161, 0, 1026, 1063, 3, 328, 164, 0, 1027, 1063, 3, 342, 171, 0, 1028, 1063, 3, 898, 449, 0, 1029, 1063, 3, 230, 115, 0, 1030, 1063, 3, 352, 176, 0, 1031, 1063, 3, 532, 266, 0, 1032, 1063, 3, 458, 229, 0, 1033, 1063, 3, 188, 94, 0, 1034, 1063, 3, 472, 236, 0, 1035, 1063, 3, 544, 272, 0, 1036, 1063, 3, 454, 227, 0, 1037, 1063, 3, 520, 260, 0, 1038, 1063, 3, 300, 150, 0, 1039, 1063, 3, 422, 211, 0, 1040, 1063, 3, 402, 201, 0, 1041, 1063, 3, 400, 200, 0, 1042, 1063, 3, 404, 202, 0, 1043, 1063, 3, 426, 213, 0, 1044, 1063, 3, 330, 165, 0, 1045, 1063, 3, 344, 172, 0, 1046, 1063, 3, 450, 225, 0, 1047, 1063, 3, 320, 160, 0, 1048, 1063, 3, 554, 277, 0, 1049, 1063, 3, 462, 231, 0, 1050, 1063, 3, 314, 157, 0, 1051, 1063, 3, 460, 230, 0, 1052, 1063, 3, 546, 273, 0, 1053, 1063, 3, 498, 249, 0, 1054, 1063, 3, 60, 30, 0, 1055, 1063, 3, 36, 18, 0, 1056, 1063, 3, 68, 34, 0, 1057, 1063, 3, 470, 235, 0, 1058, 1060, 5, 583, 0, 0, 1059, 1061, 5, 584, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 942, 1, 0, 0, 0, 1062, 943, 1, 0, 0, 0, 1062, 944, 1, 0, 0, 0, 1062, 945, 1, 0, 0, 0, 1062, 946, 1, 0, 0, 0, 1062, 947, 1, 0, 0, 0, 1062, 948, 1, 0, 0, 0, 1062, 949, 1, 0, 0, 0, 1062, 950, 1, 0, 0, 0, 1062, 951, 1, 0, 0, 0, 1062, 952, 1, 0, 0, 0, 1062, 953, 1, 0, 0, 0, 1062, 954, 1, 0, 0, 0, 1062, 955, 1, 0, 0, 0, 1062, 956, 1, 0, 0, 0, 1062, 957, 1, 0, 0, 0, 1062, 958, 1, 0, 0, 0, 1062, 959, 1, 0, 0, 0, 1062, 960, 1, 0, 0, 0, 1062, 961, 1, 0, 0, 0, 1062, 962, 1, 0, 0, 0, 1062, 963, 1, 0, 0, 0, 1062, 964, 1, 0, 0, 0, 1062, 965, 1, 0, 0, 0, 1062, 966, 1, 0, 0, 0, 1062, 967, 1, 0, 0, 0, 1062, 968, 1, 0, 0, 0, 1062, 969, 1, 0, 0, 0, 1062, 970, 1, 0, 0, 0, 1062, 971, 1, 0, 0, 0, 1062, 972, 1, 0, 0, 0, 1062, 973, 1, 0, 0, 0, 1062, 974, 1, 0, 0, 0, 1062, 975, 1, 0, 0, 0, 1062, 976, 1, 0, 0, 0, 1062, 977, 1, 0, 0, 0, 1062, 978, 1, 0, 0, 0, 1062, 979, 1, 0, 0, 0, 1062, 980, 1, 0, 0, 0, 1062, 981, 1, 0, 0, 0, 1062, 982, 1, 0, 0, 0, 1062, 983, 1, 0, 0, 0, 1062, 984, 1, 0, 0, 0, 1062, 985, 1, 0, 0, 0, 1062, 986, 1, 0, 0, 0, 1062, 987, 1, 0, 0, 0, 1062, 988, 1, 0, 0, 0, 1062, 989, 1, 0, 0, 0, 1062, 990, 1, 0, 0, 0, 1062, 991, 1, 0, 0, 0, 1062, 992, 1, 0, 0, 0, 1062, 993, 1, 0, 0, 0, 1062, 994, 1, 0, 0, 0, 1062, 995, 1, 0, 0, 0, 1062, 996, 1, 0, 0, 0, 1062, 997, 1, 0, 0, 0, 1062, 998, 1, 0, 0, 0, 1062, 999, 1, 0, 0, 0, 1062, 1000, 1, 0, 0, 0, 1062, 1001, 1, 0, 0, 0, 1062, 1002, 1, 0, 0, 0, 1062, 1003, 1, 0, 0, 0, 1062, 1004, 1, 0, 0, 0, 1062, 1005, 1, 0, 0, 0, 1062, 1006, 1, 0, 0, 0, 1062, 1007, 1, 0, 0, 0, 1062, 1008, 1, 0, 0, 0, 1062, 1009, 1, 0, 0, 0, 1062, 1010, 1, 0, 0, 0, 1062, 1011, 1, 0, 0, 0, 1062, 1012, 1, 0, 0, 0, 1062, 1013, 1, 0, 0, 0, 1062, 1014, 1, 0, 0, 0, 1062, 1015, 1, 0, 0, 0, 1062, 1016, 1, 0, 0, 0, 1062, 1017, 1, 0, 0, 0, 1062, 1018, 1, 0, 0, 0, 1062, 1019, 1, 0, 0, 0, 1062, 1020, 1, 0, 0, 0, 1062, 1021, 1, 0, 0, 0, 1062, 1022, 1, 0, 0, 0, 1062, 1023, 1, 0, 0, 0, 1062, 1024, 1, 0, 0, 0, 1062, 1025, 1, 0, 0, 0, 1062, 1026, 1, 0, 0, 0, 1062, 1027, 1, 0, 0, 0, 1062, 1028, 1, 0, 0, 0, 1062, 1029, 1, 0, 0, 0, 1062, 1030, 1, 0, 0, 0, 1062, 1031, 1, 0, 0, 0, 1062, 1032, 1, 0, 0, 0, 1062, 1033, 1, 0, 0, 0, 1062, 1034, 1, 0, 0, 0, 1062, 1035, 1, 0, 0, 0, 1062, 1036, 1, 0, 0, 0, 1062, 1037, 1, 0, 0, 0, 1062, 1038, 1, 0, 0, 0, 1062, 1039, 1, 0, 0, 0, 1062, 1040, 1, 0, 0, 0, 1062, 1041, 1, 0, 0, 0, 1062, 1042, 1, 0, 0, 0, 1062, 1043, 1, 0, 0, 0, 1062, 1044, 1, 0, 0, 0, 1062, 1045, 1, 0, 0, 0, 1062, 1046, 1, 0, 0, 0, 1062, 1047, 1, 0, 0, 0, 1062, 1048, 1, 0, 0, 0, 1062, 1049, 1, 0, 0, 0, 1062, 1050, 1, 0, 0, 0, 1062, 1051, 1, 0, 0, 0, 1062, 1052, 1, 0, 0, 0, 1062, 1053, 1, 0, 0, 0, 1062, 1054, 1, 0, 0, 0, 1062, 1055, 1, 0, 0, 0, 1062, 1056, 1, 0, 0, 0, 1062, 1057, 1, 0, 0, 0, 1062, 1058, 1, 0, 0, 0, 1063, 5, 1, 0, 0, 0, 1064, 1065, 5, 433, 0, 0, 1065, 1066, 3, 678, 339, 0, 1066, 7, 1, 0, 0, 0, 1067, 1068, 5, 46, 0, 0, 1068, 1069, 5, 318, 0, 0, 1069, 1071, 3, 812, 406, 0, 1070, 1072, 5, 105, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 1, 0, 0, 0, 1073, 1075, 3, 12, 6, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 9, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1082, 5, 287, 0, 0, 1080, 1083, 3, 806, 403, 0, 1081, 1083, 5, 78, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1118, 1, 0, 0, 0, 1084, 1085, 7, 0, 0, 0, 1085, 1086, 5, 287, 0, 0, 1086, 1118, 3, 806, 403, 0, 1087, 1118, 5, 228, 0, 0, 1088, 1118, 5, 229, 0, 0, 1089, 1118, 5, 236, 0, 0, 1090, 1118, 5, 237, 0, 0, 1091, 1118, 5, 234, 0, 0, 1092, 1118, 5, 235, 0, 0, 1093, 1118, 5, 232, 0, 0, 1094, 1118, 5, 233, 0, 0, 1095, 1118, 5, 230, 0, 0, 1096, 1118, 5, 231, 0, 0, 1097, 1118, 5, 535, 0, 0, 1098, 1118, 5, 536, 0, 0, 1099, 1118, 5, 537, 0, 0, 1100, 1118, 5, 538, 0, 0, 1101, 1118, 5, 539, 0, 0, 1102, 1118, 5, 540, 0, 0, 1103, 1104, 5, 164, 0, 0, 1104, 1105, 5, 74, 0, 0, 1105, 1118, 3, 810, 405, 0, 1106, 1107, 5, 371, 0, 0, 1107, 1108, 5, 368, 0, 0, 1108, 1118, 3, 806, 403, 0, 1109, 1110, 5, 68, 0, 0, 1110, 1111, 7, 1, 0, 0, 1111, 1118, 3, 780, 390, 0, 1112, 1113, 7, 2, 0, 0, 1113, 1118, 3, 814, 407, 0, 1114, 1115, 5, 134, 0, 0, 1115, 1118, 3, 780, 390, 0, 1116, 1118, 3, 824, 412, 0, 1117, 1079, 1, 0, 0, 0, 1117, 1084, 1, 0, 0, 0, 1117, 1087, 1, 0, 0, 0, 1117, 1088, 1, 0, 0, 0, 1117, 1089, 1, 0, 0, 0, 1117, 1090, 1, 0, 0, 0, 1117, 1091, 1, 0, 0, 0, 1117, 1092, 1, 0, 0, 0, 1117, 1093, 1, 0, 0, 0, 1117, 1094, 1, 0, 0, 0, 1117, 1095, 1, 0, 0, 0, 1117, 1096, 1, 0, 0, 0, 1117, 1097, 1, 0, 0, 0, 1117, 1098, 1, 0, 0, 0, 1117, 1099, 1, 0, 0, 0, 1117, 1100, 1, 0, 0, 0, 1117, 1101, 1, 0, 0, 0, 1117, 1102, 1, 0, 0, 0, 1117, 1103, 1, 0, 0, 0, 1117, 1106, 1, 0, 0, 0, 1117, 1109, 1, 0, 0, 0, 1117, 1112, 1, 0, 0, 0, 1117, 1114, 1, 0, 0, 0, 1117, 1116, 1, 0, 0, 0, 1118, 11, 1, 0, 0, 0, 1119, 1128, 3, 10, 5, 0, 1120, 1121, 5, 348, 0, 0, 1121, 1128, 5, 574, 0, 0, 1122, 1123, 7, 3, 0, 0, 1123, 1128, 3, 814, 407, 0, 1124, 1125, 5, 68, 0, 0, 1125, 1126, 7, 1, 0, 0, 1126, 1128, 3, 814, 407, 0, 1127, 1119, 1, 0, 0, 0, 1127, 1120, 1, 0, 0, 0, 1127, 1122, 1, 0, 0, 0, 1127, 1124, 1, 0, 0, 0, 1128, 13, 1, 0, 0, 0, 1129, 1130, 5, 46, 0, 0, 1130, 1131, 5, 99, 0, 0, 1131, 1133, 3, 812, 406, 0, 1132, 1134, 5, 105, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1138, 1, 0, 0, 0, 1135, 1137, 3, 12, 6, 0, 1136, 1135, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 15, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1142, 5, 138, 0, 0, 1142, 1143, 7, 2, 0, 0, 1143, 1145, 3, 812, 406, 0, 1144, 1146, 5, 105, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1150, 1, 0, 0, 0, 1147, 1149, 3, 10, 5, 0, 1148, 1147, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 17, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1154, 5, 138, 0, 0, 1154, 1157, 7, 2, 0, 0, 1155, 1158, 5, 30, 0, 0, 1156, 1158, 3, 812, 406, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 5, 68, 0, 0, 1160, 1161, 5, 175, 0, 0, 1161, 1162, 3, 784, 392, 0, 1162, 1163, 3, 64, 32, 0, 1163, 19, 1, 0, 0, 0, 1164, 1165, 5, 138, 0, 0, 1165, 1166, 5, 442, 0, 0, 1166, 1168, 3, 790, 395, 0, 1167, 1169, 3, 362, 181, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 3, 22, 11, 0, 1171, 21, 1, 0, 0, 0, 1172, 1176, 3, 24, 12, 0, 1173, 1175, 3, 24, 12, 0, 1174, 1173, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1181, 5, 315, 0, 0, 1180, 1179, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1199, 1, 0, 0, 0, 1182, 1183, 5, 309, 0, 0, 1183, 1184, 5, 94, 0, 0, 1184, 1199, 3, 788, 394, 0, 1185, 1186, 5, 282, 0, 0, 1186, 1187, 5, 94, 0, 0, 1187, 1199, 3, 812, 406, 0, 1188, 1189, 5, 333, 0, 0, 1189, 1190, 5, 323, 0, 0, 1190, 1199, 3, 32, 16, 0, 1191, 1193, 5, 269, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 5, 462, 0, 0, 1195, 1196, 5, 80, 0, 0, 1196, 1197, 5, 204, 0, 0, 1197, 1199, 3, 816, 408, 0, 1198, 1172, 1, 0, 0, 0, 1198, 1182, 1, 0, 0, 0, 1198, 1185, 1, 0, 0, 0, 1198, 1188, 1, 0, 0, 0, 1198, 1192, 1, 0, 0, 0, 1199, 23, 1, 0, 0, 0, 1200, 1243, 5, 222, 0, 0, 1201, 1243, 5, 338, 0, 0, 1202, 1243, 5, 377, 0, 0, 1203, 1205, 5, 77, 0, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1243, 5, 250, 0, 0, 1207, 1209, 5, 205, 0, 0, 1208, 1207, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 5, 327, 0, 0, 1211, 1218, 5, 243, 0, 0, 1212, 1214, 5, 205, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 5, 327, 0, 0, 1216, 1218, 5, 181, 0, 0, 1217, 1208, 1, 0, 0, 0, 1217, 1213, 1, 0, 0, 0, 1218, 1243, 1, 0, 0, 0, 1219, 1220, 5, 460, 0, 0, 1220, 1243, 7, 4, 0, 0, 1221, 1222, 5, 170, 0, 0, 1222, 1243, 3, 822, 411, 0, 1223, 1224, 5, 320, 0, 0, 1224, 1243, 3, 816, 408, 0, 1225, 1226, 5, 333, 0, 0, 1226, 1227, 3, 816, 408, 0, 1227, 1230, 7, 5, 0, 0, 1228, 1231, 3, 816, 408, 0, 1229, 1231, 5, 53, 0, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1243, 1, 0, 0, 0, 1232, 1233, 5, 333, 0, 0, 1233, 1234, 3, 816, 408, 0, 1234, 1235, 5, 64, 0, 0, 1235, 1236, 5, 434, 0, 0, 1236, 1243, 1, 0, 0, 0, 1237, 1240, 5, 313, 0, 0, 1238, 1241, 3, 816, 408, 0, 1239, 1241, 5, 30, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1239, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1200, 1, 0, 0, 0, 1242, 1201, 1, 0, 0, 0, 1242, 1202, 1, 0, 0, 0, 1242, 1204, 1, 0, 0, 0, 1242, 1217, 1, 0, 0, 0, 1242, 1219, 1, 0, 0, 0, 1242, 1221, 1, 0, 0, 0, 1242, 1223, 1, 0, 0, 0, 1242, 1225, 1, 0, 0, 0, 1242, 1232, 1, 0, 0, 0, 1242, 1237, 1, 0, 0, 0, 1243, 25, 1, 0, 0, 0, 1244, 1245, 5, 46, 0, 0, 1245, 1246, 5, 66, 0, 0, 1246, 1248, 3, 812, 406, 0, 1247, 1249, 5, 105, 0, 0, 1248, 1247, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1253, 1, 0, 0, 0, 1250, 1252, 3, 12, 6, 0, 1251, 1250, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 27, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1257, 5, 138, 0, 0, 1257, 1258, 5, 66, 0, 0, 1258, 1259, 3, 812, 406, 0, 1259, 1260, 7, 6, 0, 0, 1260, 1261, 5, 99, 0, 0, 1261, 1262, 3, 814, 407, 0, 1262, 29, 1, 0, 0, 0, 1263, 1264, 5, 46, 0, 0, 1264, 1266, 5, 323, 0, 0, 1265, 1267, 3, 288, 144, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1274, 1, 0, 0, 0, 1268, 1270, 3, 32, 16, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1272, 5, 106, 0, 0, 1272, 1275, 3, 812, 406, 0, 1273, 1275, 3, 32, 16, 0, 1274, 1269, 1, 0, 0, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1279, 1, 0, 0, 0, 1276, 1278, 3, 34, 17, 0, 1277, 1276, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 31, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1282, 1283, 3, 310, 155, 0, 1283, 33, 1, 0, 0, 0, 1284, 1291, 3, 114, 57, 0, 1285, 1291, 3, 352, 176, 0, 1286, 1291, 3, 190, 95, 0, 1287, 1291, 3, 250, 125, 0, 1288, 1291, 3, 328, 164, 0, 1289, 1291, 3, 470, 235, 0, 1290, 1284, 1, 0, 0, 0, 1290, 1285, 1, 0, 0, 0, 1290, 1286, 1, 0, 0, 0, 1290, 1287, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1289, 1, 0, 0, 0, 1291, 35, 1, 0, 0, 0, 1292, 1294, 5, 333, 0, 0, 1293, 1295, 7, 7, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 3, 38, 19, 0, 1297, 37, 1, 0, 0, 0, 1298, 1299, 5, 356, 0, 0, 1299, 1307, 3, 468, 234, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1302, 5, 154, 0, 0, 1302, 1303, 5, 36, 0, 0, 1303, 1304, 5, 356, 0, 0, 1304, 1307, 3, 468, 234, 0, 1305, 1307, 3, 42, 21, 0, 1306, 1298, 1, 0, 0, 0, 1306, 1300, 1, 0, 0, 0, 1306, 1305, 1, 0, 0, 0, 1307, 39, 1, 0, 0, 0, 1308, 1311, 5, 30, 0, 0, 1309, 1311, 3, 44, 22, 0, 1310, 1308, 1, 0, 0, 0, 1310, 1309, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1314, 7, 5, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1317, 1, 0, 0, 0, 1315, 1318, 5, 53, 0, 0, 1316, 1318, 3, 46, 23, 0, 1317, 1315, 1, 0, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 41, 1, 0, 0, 0, 1319, 1320, 5, 418, 0, 0, 1320, 1321, 5, 386, 0, 0, 1321, 1348, 3, 56, 28, 0, 1322, 1323, 5, 152, 0, 0, 1323, 1348, 3, 806, 403, 0, 1324, 1325, 5, 323, 0, 0, 1325, 1348, 3, 786, 393, 0, 1326, 1329, 5, 267, 0, 0, 1327, 1330, 3, 806, 403, 0, 1328, 1330, 5, 53, 0, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1348, 1, 0, 0, 0, 1331, 1332, 5, 318, 0, 0, 1332, 1348, 3, 58, 29, 0, 1333, 1334, 5, 332, 0, 0, 1334, 1335, 5, 106, 0, 0, 1335, 1348, 3, 58, 29, 0, 1336, 1337, 5, 383, 0, 0, 1337, 1338, 5, 279, 0, 0, 1338, 1348, 3, 690, 345, 0, 1339, 1340, 5, 356, 0, 0, 1340, 1341, 5, 337, 0, 0, 1341, 1348, 3, 806, 403, 0, 1342, 1343, 3, 44, 22, 0, 1343, 1344, 5, 64, 0, 0, 1344, 1345, 5, 434, 0, 0, 1345, 1348, 1, 0, 0, 0, 1346, 1348, 3, 40, 20, 0, 1347, 1319, 1, 0, 0, 0, 1347, 1322, 1, 0, 0, 0, 1347, 1324, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1331, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1336, 1, 0, 0, 0, 1347, 1339, 1, 0, 0, 0, 1347, 1342, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 43, 1, 0, 0, 0, 1349, 1354, 3, 816, 408, 0, 1350, 1351, 5, 11, 0, 0, 1351, 1353, 3, 816, 408, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 45, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1362, 3, 48, 24, 0, 1358, 1359, 5, 6, 0, 0, 1359, 1361, 3, 48, 24, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 47, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1368, 3, 54, 27, 0, 1366, 1368, 3, 196, 98, 0, 1367, 1365, 1, 0, 0, 0, 1367, 1366, 1, 0, 0, 0, 1368, 49, 1, 0, 0, 0, 1369, 1370, 5, 300, 0, 0, 1370, 1375, 7, 8, 0, 0, 1371, 1372, 5, 310, 0, 0, 1372, 1375, 5, 300, 0, 0, 1373, 1375, 5, 330, 0, 0, 1374, 1369, 1, 0, 0, 0, 1374, 1371, 1, 0, 0, 0, 1374, 1373, 1, 0, 0, 0, 1375, 51, 1, 0, 0, 0, 1376, 1383, 5, 96, 0, 0, 1377, 1383, 5, 60, 0, 0, 1378, 1383, 5, 80, 0, 0, 1379, 1383, 3, 796, 398, 0, 1380, 1383, 3, 830, 415, 0, 1381, 1383, 3, 806, 403, 0, 1382, 1376, 1, 0, 0, 0, 1382, 1377, 1, 0, 0, 0, 1382, 1378, 1, 0, 0, 0, 1382, 1379, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 53, 1, 0, 0, 0, 1384, 1389, 5, 96, 0, 0, 1385, 1389, 5, 60, 0, 0, 1386, 1389, 5, 80, 0, 0, 1387, 1389, 3, 58, 29, 0, 1388, 1384, 1, 0, 0, 0, 1388, 1385, 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1388, 1387, 1, 0, 0, 0, 1389, 55, 1, 0, 0, 0, 1390, 1405, 3, 806, 403, 0, 1391, 1405, 5, 53, 0, 0, 1392, 1405, 3, 824, 412, 0, 1393, 1394, 5, 403, 0, 0, 1394, 1396, 3, 806, 403, 0, 1395, 1397, 3, 662, 331, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1405, 1, 0, 0, 0, 1398, 1399, 5, 403, 0, 0, 1399, 1400, 3, 654, 327, 0, 1400, 1401, 3, 806, 403, 0, 1401, 1405, 1, 0, 0, 0, 1402, 1405, 3, 196, 98, 0, 1403, 1405, 5, 254, 0, 0, 1404, 1390, 1, 0, 0, 0, 1404, 1391, 1, 0, 0, 0, 1404, 1392, 1, 0, 0, 0, 1404, 1393, 1, 0, 0, 0, 1404, 1398, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 57, 1, 0, 0, 0, 1406, 1409, 3, 820, 410, 0, 1407, 1409, 3, 806, 403, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1407, 1, 0, 0, 0, 1409, 59, 1, 0, 0, 0, 1410, 1411, 5, 313, 0, 0, 1411, 1412, 3, 62, 31, 0, 1412, 61, 1, 0, 0, 0, 1413, 1414, 5, 418, 0, 0, 1414, 1423, 5, 386, 0, 0, 1415, 1416, 5, 356, 0, 0, 1416, 1417, 5, 244, 0, 0, 1417, 1423, 5, 251, 0, 0, 1418, 1419, 5, 332, 0, 0, 1419, 1423, 5, 106, 0, 0, 1420, 1423, 5, 30, 0, 0, 1421, 1423, 3, 44, 22, 0, 1422, 1413, 1, 0, 0, 0, 1422, 1415, 1, 0, 0, 0, 1422, 1418, 1, 0, 0, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1421, 1, 0, 0, 0, 1423, 63, 1, 0, 0, 0, 1424, 1425, 5, 333, 0, 0, 1425, 1428, 3, 38, 19, 0, 1426, 1428, 3, 60, 30, 0, 1427, 1424, 1, 0, 0, 0, 1427, 1426, 1, 0, 0, 0, 1428, 65, 1, 0, 0, 0, 1429, 1430, 5, 333, 0, 0, 1430, 1433, 3, 42, 21, 0, 1431, 1433, 3, 60, 30, 0, 1432, 1429, 1, 0, 0, 0, 1432, 1431, 1, 0, 0, 0, 1433, 67, 1, 0, 0, 0, 1434, 1444, 5, 335, 0, 0, 1435, 1445, 3, 44, 22, 0, 1436, 1437, 5, 418, 0, 0, 1437, 1445, 5, 386, 0, 0, 1438, 1439, 5, 356, 0, 0, 1439, 1440, 5, 244, 0, 0, 1440, 1445, 5, 251, 0, 0, 1441, 1442, 5, 332, 0, 0, 1442, 1445, 5, 106, 0, 0, 1443, 1445, 5, 30, 0, 0, 1444, 1435, 1, 0, 0, 0, 1444, 1436, 1, 0, 0, 0, 1444, 1438, 1, 0, 0, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1443, 1, 0, 0, 0, 1445, 69, 1, 0, 0, 0, 1446, 1447, 5, 333, 0, 0, 1447, 1450, 5, 165, 0, 0, 1448, 1451, 5, 30, 0, 0, 1449, 1451, 3, 756, 378, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1449, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 7, 9, 0, 0, 1453, 71, 1, 0, 0, 0, 1454, 1455, 5, 155, 0, 0, 1455, 73, 1, 0, 0, 0, 1456, 1457, 5, 187, 0, 0, 1457, 1458, 7, 10, 0, 0, 1458, 75, 1, 0, 0, 0, 1459, 1460, 5, 138, 0, 0, 1460, 1462, 5, 92, 0, 0, 1461, 1463, 3, 416, 208, 0, 1462, 1461, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1467, 3, 618, 309, 0, 1465, 1468, 3, 78, 39, 0, 1466, 1468, 3, 80, 40, 0, 1467, 1465, 1, 0, 0, 0, 1467, 1466, 1, 0, 0, 0, 1468, 1577, 1, 0, 0, 0, 1469, 1470, 5, 138, 0, 0, 1470, 1471, 5, 92, 0, 0, 1471, 1472, 5, 30, 0, 0, 1472, 1473, 5, 68, 0, 0, 1473, 1477, 3, 170, 85, 0, 1474, 1475, 5, 281, 0, 0, 1475, 1476, 5, 147, 0, 0, 1476, 1478, 3, 814, 407, 0, 1477, 1474, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 5, 333, 0, 0, 1480, 1481, 5, 351, 0, 0, 1481, 1483, 3, 766, 383, 0, 1482, 1484, 5, 272, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1577, 1, 0, 0, 0, 1485, 1486, 5, 138, 0, 0, 1486, 1488, 5, 92, 0, 0, 1487, 1489, 3, 416, 208, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 3, 770, 385, 0, 1491, 1492, 3, 82, 41, 0, 1492, 1493, 3, 98, 49, 0, 1493, 1577, 1, 0, 0, 0, 1494, 1495, 5, 138, 0, 0, 1495, 1497, 5, 92, 0, 0, 1496, 1498, 3, 416, 208, 0, 1497, 1496, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 3, 770, 385, 0, 1500, 1501, 5, 436, 0, 0, 1501, 1502, 5, 285, 0, 0, 1502, 1504, 3, 776, 388, 0, 1503, 1505, 7, 11, 0, 0, 1504, 1503, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1577, 1, 0, 0, 0, 1506, 1507, 5, 138, 0, 0, 1507, 1509, 5, 226, 0, 0, 1508, 1510, 3, 416, 208, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 3, 776, 388, 0, 1512, 1515, 3, 78, 39, 0, 1513, 1515, 3, 82, 41, 0, 1514, 1512, 1, 0, 0, 0, 1514, 1513, 1, 0, 0, 0, 1515, 1577, 1, 0, 0, 0, 1516, 1517, 5, 138, 0, 0, 1517, 1518, 5, 226, 0, 0, 1518, 1519, 5, 30, 0, 0, 1519, 1520, 5, 68, 0, 0, 1520, 1524, 3, 170, 85, 0, 1521, 1522, 5, 281, 0, 0, 1522, 1523, 5, 147, 0, 0, 1523, 1525, 3, 814, 407, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 5, 333, 0, 0, 1527, 1529, 3, 170, 85, 0, 1528, 1530, 5, 272, 0, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1577, 1, 0, 0, 0, 1531, 1532, 5, 138, 0, 0, 1532, 1534, 5, 328, 0, 0, 1533, 1535, 3, 416, 208, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 3, 776, 388, 0, 1537, 1538, 3, 78, 39, 0, 1538, 1577, 1, 0, 0, 0, 1539, 1541, 5, 138, 0, 0, 1540, 1542, 5, 259, 0, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 5, 376, 0, 0, 1544, 1546, 3, 416, 208, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 3, 774, 387, 0, 1548, 1549, 3, 78, 39, 0, 1549, 1577, 1, 0, 0, 0, 1550, 1551, 5, 138, 0, 0, 1551, 1552, 5, 259, 0, 0, 1552, 1553, 5, 376, 0, 0, 1553, 1554, 5, 30, 0, 0, 1554, 1555, 5, 68, 0, 0, 1555, 1559, 3, 170, 85, 0, 1556, 1557, 5, 281, 0, 0, 1557, 1558, 5, 147, 0, 0, 1558, 1560, 3, 814, 407, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 333, 0, 0, 1562, 1563, 5, 351, 0, 0, 1563, 1565, 3, 766, 383, 0, 1564, 1566, 5, 272, 0, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1577, 1, 0, 0, 0, 1567, 1568, 5, 138, 0, 0, 1568, 1569, 5, 63, 0, 0, 1569, 1571, 5, 92, 0, 0, 1570, 1572, 3, 416, 208, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 3, 618, 309, 0, 1574, 1575, 3, 78, 39, 0, 1575, 1577, 1, 0, 0, 0, 1576, 1459, 1, 0, 0, 0, 1576, 1469, 1, 0, 0, 0, 1576, 1485, 1, 0, 0, 0, 1576, 1494, 1, 0, 0, 0, 1576, 1506, 1, 0, 0, 0, 1576, 1516, 1, 0, 0, 0, 1576, 1531, 1, 0, 0, 0, 1576, 1539, 1, 0, 0, 0, 1576, 1550, 1, 0, 0, 0, 1576, 1567, 1, 0, 0, 0, 1577, 77, 1, 0, 0, 0, 1578, 1583, 3, 84, 42, 0, 1579, 1580, 5, 6, 0, 0, 1580, 1582, 3, 84, 42, 0, 1581, 1579, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1581, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 79, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1587, 3, 82, 41, 0, 1587, 1588, 3, 98, 49, 0, 1588, 1593, 1, 0, 0, 0, 1589, 1590, 5, 436, 0, 0, 1590, 1591, 5, 285, 0, 0, 1591, 1593, 3, 776, 388, 0, 1592, 1586, 1, 0, 0, 0, 1592, 1589, 1, 0, 0, 0, 1593, 81, 1, 0, 0, 0, 1594, 1595, 5, 435, 0, 0, 1595, 1596, 5, 285, 0, 0, 1596, 1597, 3, 776, 388, 0, 1597, 83, 1, 0, 0, 0, 1598, 1601, 5, 133, 0, 0, 1599, 1600, 5, 45, 0, 0, 1600, 1602, 3, 816, 408, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1832, 3, 136, 68, 0, 1604, 1605, 5, 138, 0, 0, 1605, 1606, 5, 45, 0, 0, 1606, 1610, 3, 816, 408, 0, 1607, 1609, 3, 266, 133, 0, 1608, 1607, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1832, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1614, 5, 372, 0, 0, 1614, 1615, 5, 45, 0, 0, 1615, 1832, 3, 816, 408, 0, 1616, 1617, 5, 191, 0, 0, 1617, 1619, 5, 45, 0, 0, 1618, 1620, 3, 416, 208, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1623, 3, 816, 408, 0, 1622, 1624, 3, 88, 44, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1832, 1, 0, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 379, 0, 0, 1627, 1832, 7, 12, 0, 0, 1628, 1629, 5, 158, 0, 0, 1629, 1630, 5, 80, 0, 0, 1630, 1832, 3, 816, 408, 0, 1631, 1632, 5, 333, 0, 0, 1632, 1832, 7, 13, 0, 0, 1633, 1635, 5, 193, 0, 0, 1634, 1636, 7, 14, 0, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1832, 5, 357, 0, 0, 1638, 1639, 5, 186, 0, 0, 1639, 1643, 5, 357, 0, 0, 1640, 1644, 5, 30, 0, 0, 1641, 1644, 5, 99, 0, 0, 1642, 1644, 3, 816, 408, 0, 1643, 1640, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1642, 1, 0, 0, 0, 1644, 1832, 1, 0, 0, 0, 1645, 1646, 5, 193, 0, 0, 1646, 1647, 7, 14, 0, 0, 1647, 1648, 5, 321, 0, 0, 1648, 1832, 3, 816, 408, 0, 1649, 1650, 5, 186, 0, 0, 1650, 1651, 5, 321, 0, 0, 1651, 1832, 3, 816, 408, 0, 1652, 1654, 5, 269, 0, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 5, 228, 0, 0, 1656, 1832, 3, 776, 388, 0, 1657, 1658, 5, 275, 0, 0, 1658, 1832, 3, 310, 155, 0, 1659, 1660, 5, 77, 0, 0, 1660, 1832, 5, 275, 0, 0, 1661, 1662, 5, 282, 0, 0, 1662, 1663, 5, 94, 0, 0, 1663, 1832, 3, 812, 406, 0, 1664, 1665, 5, 333, 0, 0, 1665, 1666, 5, 351, 0, 0, 1666, 1832, 3, 766, 383, 0, 1667, 1668, 5, 312, 0, 0, 1668, 1673, 5, 219, 0, 0, 1669, 1674, 5, 270, 0, 0, 1670, 1674, 5, 113, 0, 0, 1671, 1674, 5, 53, 0, 0, 1672, 1674, 3, 174, 87, 0, 1673, 1669, 1, 0, 0, 0, 1673, 1670, 1, 0, 0, 0, 1673, 1671, 1, 0, 0, 0, 1673, 1672, 1, 0, 0, 0, 1674, 1832, 1, 0, 0, 0, 1675, 1682, 5, 193, 0, 0, 1676, 1682, 5, 186, 0, 0, 1677, 1679, 5, 269, 0, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1682, 5, 209, 0, 0, 1681, 1675, 1, 0, 0, 0, 1681, 1676, 1, 0, 0, 0, 1681, 1678, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 5, 414, 0, 0, 1684, 1685, 5, 251, 0, 0, 1685, 1832, 5, 327, 0, 0, 1686, 1688, 5, 191, 0, 0, 1687, 1689, 5, 44, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1691, 1, 0, 0, 0, 1690, 1692, 3, 416, 208, 0, 1691, 1690, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 3, 796, 398, 0, 1694, 1696, 3, 88, 44, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1832, 1, 0, 0, 0, 1697, 1699, 5, 133, 0, 0, 1698, 1700, 5, 44, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 1, 0, 0, 0, 1701, 1703, 3, 288, 144, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1832, 3, 126, 63, 0, 1705, 1707, 5, 138, 0, 0, 1706, 1708, 5, 44, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1712, 3, 796, 398, 0, 1710, 1713, 3, 86, 43, 0, 1711, 1713, 3, 216, 108, 0, 1712, 1710, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 1832, 1, 0, 0, 0, 1714, 1716, 5, 138, 0, 0, 1715, 1717, 5, 44, 0, 0, 1716, 1715, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 3, 796, 398, 0, 1719, 1720, 7, 15, 0, 0, 1720, 1721, 5, 77, 0, 0, 1721, 1722, 5, 78, 0, 0, 1722, 1832, 1, 0, 0, 0, 1723, 1725, 5, 138, 0, 0, 1724, 1726, 5, 44, 0, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 3, 796, 398, 0, 1728, 1729, 5, 191, 0, 0, 1729, 1731, 5, 437, 0, 0, 1730, 1732, 3, 416, 208, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1832, 1, 0, 0, 0, 1733, 1735, 5, 138, 0, 0, 1734, 1736, 5, 44, 0, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 3, 796, 398, 0, 1738, 1739, 5, 333, 0, 0, 1739, 1740, 5, 342, 0, 0, 1740, 1741, 3, 810, 405, 0, 1741, 1832, 1, 0, 0, 0, 1742, 1744, 5, 138, 0, 0, 1743, 1745, 5, 44, 0, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1748, 3, 796, 398, 0, 1747, 1742, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 7, 16, 0, 0, 1750, 1832, 3, 92, 46, 0, 1751, 1753, 5, 138, 0, 0, 1752, 1754, 5, 44, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 3, 796, 398, 0, 1756, 1757, 5, 333, 0, 0, 1757, 1758, 5, 345, 0, 0, 1758, 1759, 3, 816, 408, 0, 1759, 1832, 1, 0, 0, 0, 1760, 1762, 5, 138, 0, 0, 1761, 1763, 5, 44, 0, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 796, 398, 0, 1765, 1766, 5, 133, 0, 0, 1766, 1767, 5, 438, 0, 0, 1767, 1768, 3, 132, 66, 0, 1768, 1769, 5, 36, 0, 0, 1769, 1778, 5, 219, 0, 0, 1770, 1772, 5, 2, 0, 0, 1771, 1773, 3, 194, 97, 0, 1772, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1772, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 5, 3, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1770, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1832, 1, 0, 0, 0, 1780, 1782, 5, 138, 0, 0, 1781, 1783, 5, 44, 0, 0, 1782, 1781, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1798, 3, 796, 398, 0, 1785, 1790, 5, 314, 0, 0, 1786, 1788, 5, 105, 0, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1791, 3, 196, 98, 0, 1790, 1787, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1799, 1, 0, 0, 0, 1792, 1796, 5, 333, 0, 0, 1793, 1797, 3, 194, 97, 0, 1794, 1795, 5, 438, 0, 0, 1795, 1797, 3, 132, 66, 0, 1796, 1793, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1797, 1799, 1, 0, 0, 0, 1798, 1785, 1, 0, 0, 0, 1798, 1792, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1832, 1, 0, 0, 0, 1802, 1804, 5, 138, 0, 0, 1803, 1805, 5, 44, 0, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 796, 398, 0, 1807, 1808, 5, 191, 0, 0, 1808, 1810, 5, 219, 0, 0, 1809, 1811, 3, 416, 208, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1832, 1, 0, 0, 0, 1812, 1814, 5, 138, 0, 0, 1813, 1815, 5, 44, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1819, 3, 796, 398, 0, 1817, 1818, 5, 333, 0, 0, 1818, 1820, 5, 174, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 5, 360, 0, 0, 1822, 1824, 3, 646, 323, 0, 1823, 1825, 3, 90, 45, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1827, 5, 100, 0, 0, 1827, 1829, 3, 668, 334, 0, 1828, 1826, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1832, 3, 216, 108, 0, 1831, 1598, 1, 0, 0, 0, 1831, 1604, 1, 0, 0, 0, 1831, 1613, 1, 0, 0, 0, 1831, 1616, 1, 0, 0, 0, 1831, 1625, 1, 0, 0, 0, 1831, 1628, 1, 0, 0, 0, 1831, 1631, 1, 0, 0, 0, 1831, 1633, 1, 0, 0, 0, 1831, 1638, 1, 0, 0, 0, 1831, 1645, 1, 0, 0, 0, 1831, 1649, 1, 0, 0, 0, 1831, 1653, 1, 0, 0, 0, 1831, 1657, 1, 0, 0, 0, 1831, 1659, 1, 0, 0, 0, 1831, 1661, 1, 0, 0, 0, 1831, 1664, 1, 0, 0, 0, 1831, 1667, 1, 0, 0, 0, 1831, 1681, 1, 0, 0, 0, 1831, 1686, 1, 0, 0, 0, 1831, 1697, 1, 0, 0, 0, 1831, 1705, 1, 0, 0, 0, 1831, 1714, 1, 0, 0, 0, 1831, 1723, 1, 0, 0, 0, 1831, 1733, 1, 0, 0, 0, 1831, 1747, 1, 0, 0, 0, 1831, 1751, 1, 0, 0, 0, 1831, 1760, 1, 0, 0, 0, 1831, 1780, 1, 0, 0, 0, 1831, 1802, 1, 0, 0, 0, 1831, 1812, 1, 0, 0, 0, 1831, 1830, 1, 0, 0, 0, 1832, 85, 1, 0, 0, 0, 1833, 1834, 5, 333, 0, 0, 1834, 1835, 5, 53, 0, 0, 1835, 1839, 3, 668, 334, 0, 1836, 1837, 5, 191, 0, 0, 1837, 1839, 5, 53, 0, 0, 1838, 1833, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 87, 1, 0, 0, 0, 1840, 1841, 7, 17, 0, 0, 1841, 89, 1, 0, 0, 0, 1842, 1843, 5, 43, 0, 0, 1843, 1844, 3, 310, 155, 0, 1844, 91, 1, 0, 0, 0, 1845, 1846, 5, 2, 0, 0, 1846, 1851, 3, 96, 48, 0, 1847, 1848, 5, 6, 0, 0, 1848, 1850, 3, 96, 48, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 3, 0, 0, 1855, 93, 1, 0, 0, 0, 1856, 1857, 5, 105, 0, 0, 1857, 1858, 3, 92, 46, 0, 1858, 95, 1, 0, 0, 0, 1859, 1864, 3, 822, 411, 0, 1860, 1861, 5, 10, 0, 0, 1861, 1865, 3, 282, 141, 0, 1862, 1863, 5, 11, 0, 0, 1863, 1865, 3, 280, 140, 0, 1864, 1860, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 97, 1, 0, 0, 0, 1866, 1867, 5, 62, 0, 0, 1867, 1868, 5, 422, 0, 0, 1868, 1869, 5, 105, 0, 0, 1869, 1870, 5, 2, 0, 0, 1870, 1871, 5, 533, 0, 0, 1871, 1872, 3, 196, 98, 0, 1872, 1873, 5, 6, 0, 0, 1873, 1874, 5, 534, 0, 0, 1874, 1875, 3, 196, 98, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1890, 1, 0, 0, 0, 1877, 1878, 5, 62, 0, 0, 1878, 1879, 5, 422, 0, 0, 1879, 1880, 5, 68, 0, 0, 1880, 1890, 3, 528, 264, 0, 1881, 1882, 5, 62, 0, 0, 1882, 1883, 5, 422, 0, 0, 1883, 1884, 5, 64, 0, 0, 1884, 1885, 3, 528, 264, 0, 1885, 1886, 5, 94, 0, 0, 1886, 1887, 3, 528, 264, 0, 1887, 1890, 1, 0, 0, 0, 1888, 1890, 5, 53, 0, 0, 1889, 1866, 1, 0, 0, 0, 1889, 1877, 1, 0, 0, 0, 1889, 1881, 1, 0, 0, 0, 1889, 1888, 1, 0, 0, 0, 1890, 99, 1, 0, 0, 0, 1891, 1892, 5, 138, 0, 0, 1892, 1893, 5, 360, 0, 0, 1893, 1894, 3, 310, 155, 0, 1894, 1899, 3, 102, 51, 0, 1895, 1896, 5, 6, 0, 0, 1896, 1898, 3, 102, 51, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 101, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1903, 5, 133, 0, 0, 1903, 1904, 5, 143, 0, 0, 1904, 1906, 3, 638, 319, 0, 1905, 1907, 3, 88, 44, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1933, 1, 0, 0, 0, 1908, 1909, 5, 191, 0, 0, 1909, 1911, 5, 143, 0, 0, 1910, 1912, 3, 416, 208, 0, 1911, 1910, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1915, 3, 816, 408, 0, 1914, 1916, 3, 88, 44, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1933, 1, 0, 0, 0, 1917, 1918, 5, 138, 0, 0, 1918, 1919, 5, 143, 0, 0, 1919, 1922, 3, 816, 408, 0, 1920, 1921, 5, 333, 0, 0, 1921, 1923, 5, 174, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 5, 360, 0, 0, 1925, 1927, 3, 646, 323, 0, 1926, 1928, 3, 90, 45, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1931, 3, 88, 44, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1933, 1, 0, 0, 0, 1932, 1902, 1, 0, 0, 0, 1932, 1908, 1, 0, 0, 0, 1932, 1917, 1, 0, 0, 0, 1933, 103, 1, 0, 0, 0, 1934, 1937, 5, 157, 0, 0, 1935, 1938, 3, 816, 408, 0, 1936, 1938, 5, 30, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 105, 1, 0, 0, 0, 1939, 1941, 5, 169, 0, 0, 1940, 1942, 5, 107, 0, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1945, 3, 770, 385, 0, 1944, 1946, 3, 138, 69, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1949, 7, 18, 0, 0, 1948, 1950, 5, 297, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1954, 1, 0, 0, 0, 1951, 1955, 3, 806, 403, 0, 1952, 1955, 5, 343, 0, 0, 1953, 1955, 5, 344, 0, 0, 1954, 1951, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1953, 1, 0, 0, 0, 1955, 1961, 1, 0, 0, 0, 1956, 1958, 5, 100, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 5, 184, 0, 0, 1960, 1962, 3, 806, 403, 0, 1961, 1957, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1965, 5, 105, 0, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1968, 3, 110, 55, 0, 1967, 1969, 3, 632, 316, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1989, 1, 0, 0, 0, 1970, 1971, 5, 169, 0, 0, 1971, 1972, 5, 2, 0, 0, 1972, 1973, 3, 524, 262, 0, 1973, 1974, 5, 3, 0, 0, 1974, 1976, 5, 94, 0, 0, 1975, 1977, 5, 297, 0, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1981, 1, 0, 0, 0, 1978, 1982, 3, 806, 403, 0, 1979, 1982, 5, 343, 0, 0, 1980, 1982, 5, 344, 0, 0, 1981, 1978, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1980, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 5, 105, 0, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 3, 110, 55, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1939, 1, 0, 0, 0, 1988, 1970, 1, 0, 0, 0, 1989, 107, 1, 0, 0, 0, 1990, 2033, 5, 107, 0, 0, 1991, 2033, 5, 112, 0, 0, 1992, 1994, 7, 19, 0, 0, 1993, 1995, 5, 36, 0, 0, 1994, 1993, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2033, 3, 806, 403, 0, 1997, 2033, 5, 171, 0, 0, 1998, 2033, 5, 216, 0, 0, 1999, 2000, 5, 209, 0, 0, 2000, 2003, 5, 298, 0, 0, 2001, 2004, 3, 142, 71, 0, 2002, 2004, 5, 9, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2002, 1, 0, 0, 0, 2004, 2033, 1, 0, 0, 0, 2005, 2007, 5, 209, 0, 0, 2006, 2008, 5, 77, 0, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2010, 5, 78, 0, 0, 2010, 2033, 3, 142, 71, 0, 2011, 2012, 5, 194, 0, 0, 2012, 2033, 3, 806, 403, 0, 2013, 2030, 7, 20, 0, 0, 2014, 2017, 5, 2, 0, 0, 2015, 2018, 3, 142, 71, 0, 2016, 2018, 5, 9, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2016, 1, 0, 0, 0, 2018, 2026, 1, 0, 0, 0, 2019, 2022, 5, 6, 0, 0, 2020, 2023, 3, 142, 71, 0, 2021, 2023, 5, 9, 0, 0, 2022, 2020, 1, 0, 0, 0, 2022, 2021, 1, 0, 0, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2019, 1, 0, 0, 0, 2025, 2028, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2029, 2031, 5, 3, 0, 0, 2030, 2014, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 1990, 1, 0, 0, 0, 2032, 1991, 1, 0, 0, 0, 2032, 1992, 1, 0, 0, 0, 2032, 1997, 1, 0, 0, 0, 2032, 1998, 1, 0, 0, 0, 2032, 1999, 1, 0, 0, 0, 2032, 2005, 1, 0, 0, 0, 2032, 2011, 1, 0, 0, 0, 2032, 2013, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 109, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2056, 3, 108, 54, 0, 2038, 2041, 5, 2, 0, 0, 2039, 2042, 3, 108, 54, 0, 2040, 2042, 3, 112, 56, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 2050, 1, 0, 0, 0, 2043, 2046, 5, 6, 0, 0, 2044, 2047, 3, 108, 54, 0, 2045, 2047, 3, 112, 56, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2045, 1, 0, 0, 0, 2047, 2049, 1, 0, 0, 0, 2048, 2043, 1, 0, 0, 0, 2049, 2052, 1, 0, 0, 0, 2050, 2048, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2053, 1, 0, 0, 0, 2052, 2050, 1, 0, 0, 0, 2053, 2054, 5, 3, 0, 0, 2054, 2056, 1, 0, 0, 0, 2055, 2037, 1, 0, 0, 0, 2055, 2038, 1, 0, 0, 0, 2056, 111, 1, 0, 0, 0, 2057, 2072, 3, 822, 411, 0, 2058, 2073, 3, 54, 27, 0, 2059, 2073, 3, 196, 98, 0, 2060, 2073, 5, 9, 0, 0, 2061, 2062, 5, 2, 0, 0, 2062, 2067, 3, 52, 26, 0, 2063, 2064, 5, 6, 0, 0, 2064, 2066, 3, 52, 26, 0, 2065, 2063, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2070, 1, 0, 0, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 1, 0, 0, 0, 2072, 2058, 1, 0, 0, 0, 2072, 2059, 1, 0, 0, 0, 2072, 2060, 1, 0, 0, 0, 2072, 2061, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 113, 1, 0, 0, 0, 2074, 2076, 5, 46, 0, 0, 2075, 2077, 3, 116, 58, 0, 2076, 2075, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 5, 92, 0, 0, 2079, 2081, 3, 288, 144, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2148, 3, 768, 384, 0, 2083, 2085, 5, 2, 0, 0, 2084, 2086, 3, 120, 60, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2089, 5, 3, 0, 0, 2088, 2090, 3, 158, 79, 0, 2089, 2088, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2093, 3, 160, 80, 0, 2092, 2091, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2096, 3, 164, 82, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 166, 83, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 168, 84, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 170, 85, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2149, 1, 0, 0, 0, 2106, 2107, 5, 275, 0, 0, 2107, 2109, 3, 310, 155, 0, 2108, 2110, 3, 118, 59, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 160, 80, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 164, 82, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 166, 83, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2122, 3, 168, 84, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 1, 0, 0, 0, 2123, 2125, 3, 170, 85, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2149, 1, 0, 0, 0, 2126, 2127, 5, 285, 0, 0, 2127, 2128, 5, 275, 0, 0, 2128, 2130, 3, 776, 388, 0, 2129, 2131, 3, 118, 59, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 3, 98, 49, 0, 2133, 2135, 3, 160, 80, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2137, 1, 0, 0, 0, 2136, 2138, 3, 164, 82, 0, 2137, 2136, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2140, 1, 0, 0, 0, 2139, 2141, 3, 166, 83, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2144, 3, 168, 84, 0, 2143, 2142, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2146, 1, 0, 0, 0, 2145, 2147, 3, 170, 85, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2083, 1, 0, 0, 0, 2148, 2106, 1, 0, 0, 0, 2148, 2126, 1, 0, 0, 0, 2149, 115, 1, 0, 0, 0, 2150, 2156, 5, 354, 0, 0, 2151, 2156, 5, 352, 0, 0, 2152, 2153, 7, 21, 0, 0, 2153, 2156, 7, 22, 0, 0, 2154, 2156, 5, 367, 0, 0, 2155, 2150, 1, 0, 0, 0, 2155, 2151, 1, 0, 0, 0, 2155, 2152, 1, 0, 0, 0, 2155, 2154, 1, 0, 0, 0, 2156, 117, 1, 0, 0, 0, 2157, 2158, 5, 2, 0, 0, 2158, 2163, 3, 124, 62, 0, 2159, 2160, 5, 6, 0, 0, 2160, 2162, 3, 124, 62, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2165, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2167, 5, 3, 0, 0, 2167, 119, 1, 0, 0, 0, 2168, 2173, 3, 122, 61, 0, 2169, 2170, 5, 6, 0, 0, 2170, 2172, 3, 122, 61, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 121, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 5, 45, 0, 0, 2177, 2179, 3, 816, 408, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2192, 3, 136, 68, 0, 2181, 2192, 3, 126, 63, 0, 2182, 2183, 5, 120, 0, 0, 2183, 2188, 3, 776, 388, 0, 2184, 2185, 7, 23, 0, 0, 2185, 2187, 3, 134, 67, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2190, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2192, 1, 0, 0, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2178, 1, 0, 0, 0, 2191, 2181, 1, 0, 0, 0, 2191, 2182, 1, 0, 0, 0, 2192, 123, 1, 0, 0, 0, 2193, 2196, 3, 800, 400, 0, 2194, 2195, 5, 105, 0, 0, 2195, 2197, 5, 280, 0, 0, 2196, 2194, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2201, 1, 0, 0, 0, 2198, 2200, 3, 128, 64, 0, 2199, 2198, 1, 0, 0, 0, 2200, 2203, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2210, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2205, 5, 45, 0, 0, 2205, 2207, 3, 816, 408, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 3, 136, 68, 0, 2209, 2193, 1, 0, 0, 0, 2209, 2206, 1, 0, 0, 0, 2210, 125, 1, 0, 0, 0, 2211, 2212, 3, 800, 400, 0, 2212, 2214, 3, 646, 323, 0, 2213, 2215, 3, 214, 107, 0, 2214, 2213, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2225, 1, 0, 0, 0, 2216, 2223, 5, 345, 0, 0, 2217, 2224, 5, 544, 0, 0, 2218, 2224, 5, 205, 0, 0, 2219, 2224, 5, 545, 0, 0, 2220, 2224, 5, 546, 0, 0, 2221, 2224, 5, 53, 0, 0, 2222, 2224, 3, 816, 408, 0, 2223, 2217, 1, 0, 0, 0, 2223, 2218, 1, 0, 0, 0, 2223, 2219, 1, 0, 0, 0, 2223, 2220, 1, 0, 0, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2222, 1, 0, 0, 0, 2224, 2226, 1, 0, 0, 0, 2225, 2216, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2229, 1, 0, 0, 0, 2227, 2228, 5, 543, 0, 0, 2228, 2230, 3, 816, 408, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2233, 3, 90, 45, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2235, 5, 105, 0, 0, 2235, 2237, 5, 280, 0, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2241, 1, 0, 0, 0, 2238, 2240, 3, 128, 64, 0, 2239, 2238, 1, 0, 0, 0, 2240, 2243, 1, 0, 0, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 127, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2245, 5, 45, 0, 0, 2245, 2247, 3, 816, 408, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2253, 3, 130, 65, 0, 2249, 2251, 5, 77, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2254, 5, 54, 0, 0, 2253, 2250, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2256, 5, 69, 0, 0, 2256, 2258, 7, 9, 0, 0, 2257, 2255, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 129, 1, 0, 0, 0, 2259, 2261, 5, 77, 0, 0, 2260, 2259, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2340, 5, 78, 0, 0, 2263, 2265, 5, 98, 0, 0, 2264, 2266, 3, 394, 197, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2268, 1, 0, 0, 0, 2267, 2269, 3, 172, 86, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2340, 1, 0, 0, 0, 2270, 2276, 5, 98, 0, 0, 2271, 2273, 5, 273, 0, 0, 2272, 2274, 5, 77, 0, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2277, 5, 56, 0, 0, 2276, 2271, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2280, 1, 0, 0, 0, 2278, 2279, 5, 441, 0, 0, 2279, 2281, 3, 354, 177, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 1, 0, 0, 0, 2282, 2284, 3, 566, 283, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2287, 3, 172, 86, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2340, 1, 0, 0, 0, 2288, 2289, 5, 85, 0, 0, 2289, 2291, 5, 245, 0, 0, 2290, 2292, 3, 394, 197, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2295, 3, 172, 86, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2340, 1, 0, 0, 0, 2296, 2297, 5, 42, 0, 0, 2297, 2298, 5, 2, 0, 0, 2298, 2299, 3, 668, 334, 0, 2299, 2302, 5, 3, 0, 0, 2300, 2301, 5, 269, 0, 0, 2301, 2303, 5, 228, 0, 0, 2302, 2300, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2340, 1, 0, 0, 0, 2304, 2305, 5, 53, 0, 0, 2305, 2340, 3, 676, 338, 0, 2306, 2307, 5, 438, 0, 0, 2307, 2308, 3, 132, 66, 0, 2308, 2325, 5, 36, 0, 0, 2309, 2318, 5, 219, 0, 0, 2310, 2312, 5, 2, 0, 0, 2311, 2313, 3, 194, 97, 0, 2312, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 2317, 5, 3, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2310, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2326, 1, 0, 0, 0, 2320, 2321, 5, 2, 0, 0, 2321, 2322, 3, 668, 334, 0, 2322, 2323, 5, 3, 0, 0, 2323, 2324, 5, 440, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2309, 1, 0, 0, 0, 2325, 2320, 1, 0, 0, 0, 2326, 2340, 1, 0, 0, 0, 2327, 2328, 5, 86, 0, 0, 2328, 2330, 3, 776, 388, 0, 2329, 2331, 3, 138, 69, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2334, 3, 146, 73, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2337, 3, 150, 75, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2340, 3, 90, 45, 0, 2339, 2260, 1, 0, 0, 0, 2339, 2263, 1, 0, 0, 0, 2339, 2270, 1, 0, 0, 0, 2339, 2288, 1, 0, 0, 0, 2339, 2296, 1, 0, 0, 0, 2339, 2304, 1, 0, 0, 0, 2339, 2306, 1, 0, 0, 0, 2339, 2327, 1, 0, 0, 0, 2339, 2338, 1, 0, 0, 0, 2340, 131, 1, 0, 0, 0, 2341, 2345, 5, 139, 0, 0, 2342, 2343, 5, 147, 0, 0, 2343, 2345, 5, 53, 0, 0, 2344, 2341, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2345, 133, 1, 0, 0, 0, 2346, 2347, 7, 24, 0, 0, 2347, 135, 1, 0, 0, 0, 2348, 2349, 5, 42, 0, 0, 2349, 2350, 5, 2, 0, 0, 2350, 2351, 3, 668, 334, 0, 2351, 2355, 5, 3, 0, 0, 2352, 2354, 3, 266, 133, 0, 2353, 2352, 1, 0, 0, 0, 2354, 2357, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2445, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2362, 5, 98, 0, 0, 2359, 2360, 5, 85, 0, 0, 2360, 2362, 5, 245, 0, 0, 2361, 2358, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2386, 1, 0, 0, 0, 2363, 2365, 3, 138, 69, 0, 2364, 2366, 3, 144, 72, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2368, 1, 0, 0, 0, 2367, 2369, 3, 394, 197, 0, 2368, 2367, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2371, 1, 0, 0, 0, 2370, 2372, 3, 172, 86, 0, 2371, 2370, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2376, 1, 0, 0, 0, 2373, 2375, 3, 266, 133, 0, 2374, 2373, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2387, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2383, 3, 174, 87, 0, 2380, 2382, 3, 266, 133, 0, 2381, 2380, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2387, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2363, 1, 0, 0, 0, 2386, 2379, 1, 0, 0, 0, 2387, 2445, 1, 0, 0, 0, 2388, 2390, 5, 199, 0, 0, 2389, 2391, 3, 164, 82, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2393, 5, 2, 0, 0, 2393, 2398, 3, 148, 74, 0, 2394, 2395, 5, 6, 0, 0, 2395, 2397, 3, 148, 74, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2400, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2401, 1, 0, 0, 0, 2400, 2398, 1, 0, 0, 0, 2401, 2403, 5, 3, 0, 0, 2402, 2404, 3, 144, 72, 0, 2403, 2402, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2406, 1, 0, 0, 0, 2405, 2407, 3, 394, 197, 0, 2406, 2405, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2410, 3, 172, 86, 0, 2409, 2408, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2416, 1, 0, 0, 0, 2411, 2412, 5, 103, 0, 0, 2412, 2413, 5, 2, 0, 0, 2413, 2414, 3, 668, 334, 0, 2414, 2415, 5, 3, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2411, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2421, 1, 0, 0, 0, 2418, 2420, 3, 266, 133, 0, 2419, 2418, 1, 0, 0, 0, 2420, 2423, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2445, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2425, 5, 63, 0, 0, 2425, 2426, 5, 245, 0, 0, 2426, 2427, 3, 138, 69, 0, 2427, 2428, 5, 86, 0, 0, 2428, 2430, 3, 776, 388, 0, 2429, 2431, 3, 138, 69, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2434, 3, 146, 73, 0, 2433, 2432, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, 1, 0, 0, 0, 2435, 2437, 3, 150, 75, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2441, 1, 0, 0, 0, 2438, 2440, 3, 266, 133, 0, 2439, 2438, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2445, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2348, 1, 0, 0, 0, 2444, 2361, 1, 0, 0, 0, 2444, 2388, 1, 0, 0, 0, 2444, 2424, 1, 0, 0, 0, 2445, 137, 1, 0, 0, 0, 2446, 2447, 5, 2, 0, 0, 2447, 2448, 3, 142, 71, 0, 2448, 2449, 5, 3, 0, 0, 2449, 139, 1, 0, 0, 0, 2450, 2451, 5, 2, 0, 0, 2451, 2456, 3, 800, 400, 0, 2452, 2453, 5, 6, 0, 0, 2453, 2455, 3, 800, 400, 0, 2454, 2452, 1, 0, 0, 0, 2455, 2458, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2459, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2460, 5, 3, 0, 0, 2460, 141, 1, 0, 0, 0, 2461, 2466, 3, 796, 398, 0, 2462, 2463, 5, 6, 0, 0, 2463, 2465, 3, 796, 398, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 143, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2470, 5, 441, 0, 0, 2470, 2471, 3, 138, 69, 0, 2471, 145, 1, 0, 0, 0, 2472, 2473, 5, 258, 0, 0, 2473, 2474, 7, 25, 0, 0, 2474, 147, 1, 0, 0, 0, 2475, 2476, 3, 356, 178, 0, 2476, 2483, 5, 105, 0, 0, 2477, 2484, 3, 408, 204, 0, 2478, 2479, 5, 278, 0, 0, 2479, 2480, 5, 2, 0, 0, 2480, 2481, 3, 408, 204, 0, 2481, 2482, 5, 3, 0, 0, 2482, 2484, 1, 0, 0, 0, 2483, 2477, 1, 0, 0, 0, 2483, 2478, 1, 0, 0, 0, 2484, 149, 1, 0, 0, 0, 2485, 2487, 3, 152, 76, 0, 2486, 2488, 3, 154, 77, 0, 2487, 2486, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2494, 1, 0, 0, 0, 2489, 2491, 3, 154, 77, 0, 2490, 2492, 3, 152, 76, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 1, 0, 0, 0, 2493, 2485, 1, 0, 0, 0, 2493, 2489, 1, 0, 0, 0, 2494, 151, 1, 0, 0, 0, 2495, 2496, 5, 80, 0, 0, 2496, 2497, 5, 369, 0, 0, 2497, 2498, 3, 156, 78, 0, 2498, 153, 1, 0, 0, 0, 2499, 2500, 5, 80, 0, 0, 2500, 2501, 5, 182, 0, 0, 2501, 2502, 3, 156, 78, 0, 2502, 155, 1, 0, 0, 0, 2503, 2504, 5, 269, 0, 0, 2504, 2513, 5, 132, 0, 0, 2505, 2513, 5, 315, 0, 0, 2506, 2513, 5, 150, 0, 0, 2507, 2508, 5, 333, 0, 0, 2508, 2510, 7, 26, 0, 0, 2509, 2511, 3, 142, 71, 0, 2510, 2509, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 1, 0, 0, 0, 2512, 2503, 1, 0, 0, 0, 2512, 2505, 1, 0, 0, 0, 2512, 2506, 1, 0, 0, 0, 2512, 2507, 1, 0, 0, 0, 2513, 157, 1, 0, 0, 0, 2514, 2515, 5, 238, 0, 0, 2515, 2516, 5, 2, 0, 0, 2516, 2517, 3, 756, 378, 0, 2517, 2518, 5, 3, 0, 0, 2518, 159, 1, 0, 0, 0, 2519, 2520, 5, 285, 0, 0, 2520, 2521, 5, 147, 0, 0, 2521, 2522, 3, 816, 408, 0, 2522, 2523, 5, 2, 0, 0, 2523, 2528, 3, 162, 81, 0, 2524, 2525, 5, 6, 0, 0, 2525, 2527, 3, 162, 81, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2530, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2531, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2531, 2532, 5, 3, 0, 0, 2532, 161, 1, 0, 0, 0, 2533, 2540, 3, 796, 398, 0, 2534, 2540, 3, 682, 341, 0, 2535, 2536, 5, 2, 0, 0, 2536, 2537, 3, 668, 334, 0, 2537, 2538, 5, 3, 0, 0, 2538, 2540, 1, 0, 0, 0, 2539, 2533, 1, 0, 0, 0, 2539, 2534, 1, 0, 0, 0, 2539, 2535, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 90, 45, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 310, 155, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 163, 1, 0, 0, 0, 2547, 2548, 5, 100, 0, 0, 2548, 2549, 3, 816, 408, 0, 2549, 165, 1, 0, 0, 0, 2550, 2551, 5, 105, 0, 0, 2551, 2555, 3, 92, 46, 0, 2552, 2553, 7, 27, 0, 0, 2553, 2555, 5, 277, 0, 0, 2554, 2550, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2555, 167, 1, 0, 0, 0, 2556, 2557, 5, 80, 0, 0, 2557, 2563, 5, 161, 0, 0, 2558, 2564, 5, 191, 0, 0, 2559, 2560, 5, 182, 0, 0, 2560, 2564, 5, 320, 0, 0, 2561, 2562, 5, 292, 0, 0, 2562, 2564, 5, 320, 0, 0, 2563, 2558, 1, 0, 0, 0, 2563, 2559, 1, 0, 0, 0, 2563, 2561, 1, 0, 0, 0, 2564, 169, 1, 0, 0, 0, 2565, 2566, 5, 351, 0, 0, 2566, 2567, 3, 766, 383, 0, 2567, 171, 1, 0, 0, 0, 2568, 2569, 5, 100, 0, 0, 2569, 2570, 5, 226, 0, 0, 2570, 2571, 3, 170, 85, 0, 2571, 173, 1, 0, 0, 0, 2572, 2573, 5, 100, 0, 0, 2573, 2574, 5, 226, 0, 0, 2574, 2575, 3, 816, 408, 0, 2575, 175, 1, 0, 0, 0, 2576, 2577, 5, 46, 0, 0, 2577, 2582, 5, 342, 0, 0, 2578, 2580, 3, 288, 144, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 3, 310, 155, 0, 2582, 2579, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2586, 3, 138, 69, 0, 2585, 2584, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2597, 5, 80, 0, 0, 2588, 2593, 3, 728, 364, 0, 2589, 2590, 5, 6, 0, 0, 2590, 2592, 3, 728, 364, 0, 2591, 2589, 1, 0, 0, 0, 2592, 2595, 1, 0, 0, 0, 2593, 2591, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2598, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2596, 2598, 3, 726, 363, 0, 2597, 2588, 1, 0, 0, 0, 2597, 2596, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 3, 604, 302, 0, 2600, 177, 1, 0, 0, 0, 2601, 2602, 5, 138, 0, 0, 2602, 2604, 5, 342, 0, 0, 2603, 2605, 3, 416, 208, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 3, 310, 155, 0, 2607, 2608, 5, 333, 0, 0, 2608, 2609, 5, 342, 0, 0, 2609, 2610, 3, 810, 405, 0, 2610, 179, 1, 0, 0, 0, 2611, 2613, 5, 46, 0, 0, 2612, 2614, 3, 116, 58, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 5, 92, 0, 0, 2616, 2618, 3, 288, 144, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 3, 182, 91, 0, 2620, 2621, 5, 36, 0, 0, 2621, 2623, 3, 554, 277, 0, 2622, 2624, 3, 184, 92, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 181, 1, 0, 0, 0, 2625, 2627, 3, 768, 384, 0, 2626, 2628, 3, 140, 70, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2630, 1, 0, 0, 0, 2629, 2631, 3, 164, 82, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2633, 1, 0, 0, 0, 2632, 2634, 3, 166, 83, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2637, 3, 168, 84, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 170, 85, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 183, 1, 0, 0, 0, 2641, 2645, 5, 105, 0, 0, 2642, 2646, 5, 174, 0, 0, 2643, 2644, 5, 269, 0, 0, 2644, 2646, 5, 174, 0, 0, 2645, 2642, 1, 0, 0, 0, 2645, 2643, 1, 0, 0, 0, 2646, 185, 1, 0, 0, 0, 2647, 2649, 5, 46, 0, 0, 2648, 2650, 5, 367, 0, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 5, 259, 0, 0, 2652, 2654, 5, 376, 0, 0, 2653, 2655, 3, 288, 144, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2658, 3, 772, 386, 0, 2657, 2659, 3, 140, 70, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 1, 0, 0, 0, 2660, 2662, 3, 164, 82, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2665, 3, 94, 47, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2667, 1, 0, 0, 0, 2666, 2668, 3, 170, 85, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 5, 36, 0, 0, 2670, 2672, 3, 554, 277, 0, 2671, 2673, 3, 184, 92, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 187, 1, 0, 0, 0, 2674, 2675, 5, 305, 0, 0, 2675, 2676, 5, 259, 0, 0, 2676, 2678, 5, 376, 0, 0, 2677, 2679, 5, 109, 0, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 3, 774, 387, 0, 2681, 2683, 3, 184, 92, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 189, 1, 0, 0, 0, 2684, 2686, 5, 46, 0, 0, 2685, 2687, 3, 116, 58, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 5, 328, 0, 0, 2689, 2691, 3, 288, 144, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2698, 3, 776, 388, 0, 2693, 2695, 3, 194, 97, 0, 2694, 2693, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2694, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2699, 1, 0, 0, 0, 2698, 2694, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 191, 1, 0, 0, 0, 2700, 2701, 5, 138, 0, 0, 2701, 2703, 5, 328, 0, 0, 2702, 2704, 3, 416, 208, 0, 2703, 2702, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2707, 3, 776, 388, 0, 2706, 2708, 3, 194, 97, 0, 2707, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 193, 1, 0, 0, 0, 2711, 2712, 5, 36, 0, 0, 2712, 2745, 3, 648, 324, 0, 2713, 2715, 5, 148, 0, 0, 2714, 2716, 3, 196, 98, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2745, 1, 0, 0, 0, 2717, 2719, 5, 225, 0, 0, 2718, 2720, 5, 147, 0, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2745, 3, 196, 98, 0, 2722, 2723, 7, 28, 0, 0, 2723, 2745, 3, 196, 98, 0, 2724, 2725, 5, 269, 0, 0, 2725, 2745, 7, 29, 0, 0, 2726, 2727, 5, 281, 0, 0, 2727, 2728, 5, 147, 0, 0, 2728, 2745, 3, 796, 398, 0, 2729, 2730, 5, 328, 0, 0, 2730, 2731, 5, 266, 0, 0, 2731, 2745, 3, 310, 155, 0, 2732, 2734, 5, 340, 0, 0, 2733, 2735, 5, 105, 0, 0, 2734, 2733, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2745, 3, 196, 98, 0, 2737, 2739, 5, 314, 0, 0, 2738, 2740, 5, 105, 0, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2742, 1, 0, 0, 0, 2741, 2743, 3, 196, 98, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2711, 1, 0, 0, 0, 2744, 2713, 1, 0, 0, 0, 2744, 2717, 1, 0, 0, 0, 2744, 2722, 1, 0, 0, 0, 2744, 2724, 1, 0, 0, 0, 2744, 2726, 1, 0, 0, 0, 2744, 2729, 1, 0, 0, 0, 2744, 2732, 1, 0, 0, 0, 2744, 2737, 1, 0, 0, 0, 2745, 195, 1, 0, 0, 0, 2746, 2748, 7, 30, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2752, 5, 576, 0, 0, 2750, 2752, 3, 810, 405, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2750, 1, 0, 0, 0, 2752, 197, 1, 0, 0, 0, 2753, 2755, 5, 46, 0, 0, 2754, 2756, 3, 360, 180, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2758, 1, 0, 0, 0, 2757, 2759, 5, 359, 0, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2762, 5, 295, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 5, 247, 0, 0, 2764, 2777, 3, 816, 408, 0, 2765, 2766, 5, 215, 0, 0, 2766, 2769, 3, 310, 155, 0, 2767, 2768, 5, 239, 0, 0, 2768, 2770, 3, 310, 155, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2775, 1, 0, 0, 0, 2771, 2772, 5, 373, 0, 0, 2772, 2776, 3, 310, 155, 0, 2773, 2774, 5, 269, 0, 0, 2774, 2776, 5, 373, 0, 0, 2775, 2771, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2778, 1, 0, 0, 0, 2777, 2765, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 199, 1, 0, 0, 0, 2779, 2780, 5, 46, 0, 0, 2780, 2783, 3, 170, 85, 0, 2781, 2782, 5, 282, 0, 0, 2782, 2784, 3, 812, 406, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 5, 255, 0, 0, 2786, 2788, 3, 806, 403, 0, 2787, 2789, 3, 94, 47, 0, 2788, 2787, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 201, 1, 0, 0, 0, 2790, 2791, 5, 46, 0, 0, 2791, 2793, 5, 204, 0, 0, 2792, 2794, 3, 288, 144, 0, 2793, 2792, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 3, 816, 408, 0, 2796, 2798, 5, 105, 0, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2806, 1, 0, 0, 0, 2799, 2800, 5, 323, 0, 0, 2800, 2805, 3, 786, 393, 0, 2801, 2802, 7, 31, 0, 0, 2802, 2805, 3, 58, 29, 0, 2803, 2805, 5, 150, 0, 0, 2804, 2799, 1, 0, 0, 0, 2804, 2801, 1, 0, 0, 0, 2804, 2803, 1, 0, 0, 0, 2805, 2808, 1, 0, 0, 0, 2806, 2804, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 203, 1, 0, 0, 0, 2808, 2806, 1, 0, 0, 0, 2809, 2810, 5, 138, 0, 0, 2810, 2811, 5, 204, 0, 0, 2811, 2812, 3, 816, 408, 0, 2812, 2817, 5, 369, 0, 0, 2813, 2814, 5, 94, 0, 0, 2814, 2816, 3, 58, 29, 0, 2815, 2813, 1, 0, 0, 0, 2816, 2819, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 205, 1, 0, 0, 0, 2819, 2817, 1, 0, 0, 0, 2820, 2821, 5, 138, 0, 0, 2821, 2822, 5, 204, 0, 0, 2822, 2823, 3, 816, 408, 0, 2823, 2856, 7, 6, 0, 0, 2824, 2825, 5, 443, 0, 0, 2825, 2826, 5, 62, 0, 0, 2826, 2827, 3, 646, 323, 0, 2827, 2828, 5, 247, 0, 0, 2828, 2829, 3, 816, 408, 0, 2829, 2857, 1, 0, 0, 0, 2830, 2831, 5, 442, 0, 0, 2831, 2857, 3, 368, 184, 0, 2832, 2833, 5, 296, 0, 0, 2833, 2857, 3, 372, 186, 0, 2834, 2835, 5, 278, 0, 0, 2835, 2836, 7, 32, 0, 0, 2836, 2837, 3, 310, 155, 0, 2837, 2838, 3, 164, 82, 0, 2838, 2857, 1, 0, 0, 0, 2839, 2840, 5, 278, 0, 0, 2840, 2857, 3, 410, 205, 0, 2841, 2842, 5, 211, 0, 0, 2842, 2857, 3, 376, 188, 0, 2843, 2844, 7, 33, 0, 0, 2844, 2857, 3, 646, 323, 0, 2845, 2846, 5, 41, 0, 0, 2846, 2847, 5, 2, 0, 0, 2847, 2848, 3, 646, 323, 0, 2848, 2849, 5, 36, 0, 0, 2849, 2850, 3, 646, 323, 0, 2850, 2851, 5, 3, 0, 0, 2851, 2857, 1, 0, 0, 0, 2852, 2853, 5, 136, 0, 0, 2853, 2857, 3, 388, 194, 0, 2854, 2857, 3, 306, 153, 0, 2855, 2857, 3, 304, 152, 0, 2856, 2824, 1, 0, 0, 0, 2856, 2830, 1, 0, 0, 0, 2856, 2832, 1, 0, 0, 0, 2856, 2834, 1, 0, 0, 0, 2856, 2839, 1, 0, 0, 0, 2856, 2841, 1, 0, 0, 0, 2856, 2843, 1, 0, 0, 0, 2856, 2845, 1, 0, 0, 0, 2856, 2852, 1, 0, 0, 0, 2856, 2854, 1, 0, 0, 0, 2856, 2855, 1, 0, 0, 0, 2857, 207, 1, 0, 0, 0, 2858, 2859, 5, 46, 0, 0, 2859, 2860, 5, 63, 0, 0, 2860, 2861, 5, 174, 0, 0, 2861, 2862, 5, 381, 0, 0, 2862, 2868, 3, 816, 408, 0, 2863, 2865, 3, 210, 105, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2864, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2871, 1, 0, 0, 0, 2870, 2872, 3, 214, 107, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 209, 1, 0, 0, 0, 2873, 2875, 7, 34, 0, 0, 2874, 2876, 3, 310, 155, 0, 2875, 2874, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2880, 1, 0, 0, 0, 2877, 2878, 5, 269, 0, 0, 2878, 2880, 7, 34, 0, 0, 2879, 2873, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 211, 1, 0, 0, 0, 2881, 2882, 5, 138, 0, 0, 2882, 2883, 5, 63, 0, 0, 2883, 2884, 5, 174, 0, 0, 2884, 2885, 5, 381, 0, 0, 2885, 2899, 3, 816, 408, 0, 2886, 2888, 3, 210, 105, 0, 2887, 2886, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2887, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2900, 3, 216, 108, 0, 2894, 2896, 3, 210, 105, 0, 2895, 2894, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2891, 1, 0, 0, 0, 2899, 2895, 1, 0, 0, 0, 2900, 213, 1, 0, 0, 0, 2901, 2902, 5, 280, 0, 0, 2902, 2903, 5, 2, 0, 0, 2903, 2908, 3, 220, 110, 0, 2904, 2905, 5, 6, 0, 0, 2905, 2907, 3, 220, 110, 0, 2906, 2904, 1, 0, 0, 0, 2907, 2910, 1, 0, 0, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2912, 5, 3, 0, 0, 2912, 215, 1, 0, 0, 0, 2913, 2914, 5, 280, 0, 0, 2914, 2915, 5, 2, 0, 0, 2915, 2920, 3, 218, 109, 0, 2916, 2917, 5, 6, 0, 0, 2917, 2919, 3, 218, 109, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 1, 0, 0, 0, 2922, 2920, 1, 0, 0, 0, 2923, 2924, 5, 3, 0, 0, 2924, 217, 1, 0, 0, 0, 2925, 2926, 7, 35, 0, 0, 2926, 2927, 3, 220, 110, 0, 2927, 219, 1, 0, 0, 0, 2928, 2929, 3, 822, 411, 0, 2929, 2930, 3, 806, 403, 0, 2930, 221, 1, 0, 0, 0, 2931, 2932, 5, 46, 0, 0, 2932, 2934, 5, 331, 0, 0, 2933, 2935, 3, 288, 144, 0, 2934, 2933, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2939, 3, 816, 408, 0, 2937, 2938, 5, 360, 0, 0, 2938, 2940, 3, 806, 403, 0, 2939, 2937, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2942, 1, 0, 0, 0, 2941, 2943, 3, 224, 112, 0, 2942, 2941, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2945, 5, 63, 0, 0, 2945, 2946, 5, 174, 0, 0, 2946, 2947, 5, 381, 0, 0, 2947, 2949, 3, 816, 408, 0, 2948, 2950, 3, 214, 107, 0, 2949, 2948, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 223, 1, 0, 0, 0, 2951, 2954, 5, 375, 0, 0, 2952, 2955, 3, 806, 403, 0, 2953, 2955, 5, 78, 0, 0, 2954, 2952, 1, 0, 0, 0, 2954, 2953, 1, 0, 0, 0, 2955, 225, 1, 0, 0, 0, 2956, 2957, 5, 138, 0, 0, 2957, 2958, 5, 331, 0, 0, 2958, 2964, 3, 816, 408, 0, 2959, 2965, 3, 216, 108, 0, 2960, 2962, 3, 224, 112, 0, 2961, 2963, 3, 216, 108, 0, 2962, 2961, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2959, 1, 0, 0, 0, 2964, 2960, 1, 0, 0, 0, 2965, 227, 1, 0, 0, 0, 2966, 2967, 5, 46, 0, 0, 2967, 2968, 5, 63, 0, 0, 2968, 2970, 5, 92, 0, 0, 2969, 2971, 3, 288, 144, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2973, 3, 768, 384, 0, 2973, 2975, 5, 2, 0, 0, 2974, 2976, 3, 120, 60, 0, 2975, 2974, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2979, 5, 3, 0, 0, 2978, 2980, 3, 158, 79, 0, 2979, 2978, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 5, 331, 0, 0, 2982, 2984, 3, 816, 408, 0, 2983, 2985, 3, 214, 107, 0, 2984, 2983, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 3006, 1, 0, 0, 0, 2986, 2987, 5, 46, 0, 0, 2987, 2988, 5, 63, 0, 0, 2988, 2990, 5, 92, 0, 0, 2989, 2991, 3, 288, 144, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 3, 768, 384, 0, 2993, 2994, 5, 285, 0, 0, 2994, 2995, 5, 275, 0, 0, 2995, 2997, 3, 770, 385, 0, 2996, 2998, 3, 118, 59, 0, 2997, 2996, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3000, 3, 98, 49, 0, 3000, 3001, 5, 331, 0, 0, 3001, 3003, 3, 816, 408, 0, 3002, 3004, 3, 214, 107, 0, 3003, 3002, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3006, 1, 0, 0, 0, 3005, 2966, 1, 0, 0, 0, 3005, 2986, 1, 0, 0, 0, 3006, 229, 1, 0, 0, 0, 3007, 3008, 5, 444, 0, 0, 3008, 3009, 5, 63, 0, 0, 3009, 3010, 5, 323, 0, 0, 3010, 3020, 3, 786, 393, 0, 3011, 3012, 5, 74, 0, 0, 3012, 3015, 5, 94, 0, 0, 3013, 3015, 5, 59, 0, 0, 3014, 3011, 1, 0, 0, 0, 3014, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 5, 2, 0, 0, 3017, 3018, 3, 622, 311, 0, 3018, 3019, 5, 3, 0, 0, 3019, 3021, 1, 0, 0, 0, 3020, 3014, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 5, 64, 0, 0, 3023, 3024, 5, 331, 0, 0, 3024, 3025, 3, 816, 408, 0, 3025, 3026, 5, 71, 0, 0, 3026, 3028, 3, 816, 408, 0, 3027, 3029, 3, 214, 107, 0, 3028, 3027, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 231, 1, 0, 0, 0, 3030, 3031, 5, 46, 0, 0, 3031, 3032, 5, 99, 0, 0, 3032, 3034, 5, 257, 0, 0, 3033, 3035, 3, 288, 144, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3039, 5, 62, 0, 0, 3037, 3040, 3, 812, 406, 0, 3038, 3040, 5, 99, 0, 0, 3039, 3037, 1, 0, 0, 0, 3039, 3038, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 5, 331, 0, 0, 3042, 3044, 3, 816, 408, 0, 3043, 3045, 3, 214, 107, 0, 3044, 3043, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 233, 1, 0, 0, 0, 3046, 3047, 5, 138, 0, 0, 3047, 3048, 5, 99, 0, 0, 3048, 3049, 5, 257, 0, 0, 3049, 3052, 5, 62, 0, 0, 3050, 3053, 3, 812, 406, 0, 3051, 3053, 5, 99, 0, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 5, 331, 0, 0, 3055, 3056, 3, 816, 408, 0, 3056, 3057, 3, 216, 108, 0, 3057, 235, 1, 0, 0, 0, 3058, 3059, 5, 46, 0, 0, 3059, 3060, 5, 445, 0, 0, 3060, 3061, 3, 816, 408, 0, 3061, 3062, 5, 80, 0, 0, 3062, 3069, 3, 776, 388, 0, 3063, 3067, 5, 36, 0, 0, 3064, 3068, 5, 541, 0, 0, 3065, 3068, 5, 542, 0, 0, 3066, 3068, 3, 824, 412, 0, 3067, 3064, 1, 0, 0, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3066, 1, 0, 0, 0, 3068, 3070, 1, 0, 0, 0, 3069, 3063, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3073, 1, 0, 0, 0, 3071, 3072, 5, 62, 0, 0, 3072, 3074, 7, 36, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3077, 1, 0, 0, 0, 3075, 3076, 5, 94, 0, 0, 3076, 3078, 3, 814, 407, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3081, 3, 244, 122, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3084, 3, 246, 123, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 237, 1, 0, 0, 0, 3085, 3086, 5, 138, 0, 0, 3086, 3087, 5, 445, 0, 0, 3087, 3088, 3, 816, 408, 0, 3088, 3089, 5, 80, 0, 0, 3089, 3092, 3, 776, 388, 0, 3090, 3091, 5, 94, 0, 0, 3091, 3093, 3, 814, 407, 0, 3092, 3090, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3096, 3, 244, 122, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3098, 1, 0, 0, 0, 3097, 3099, 3, 246, 123, 0, 3098, 3097, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 239, 1, 0, 0, 0, 3100, 3101, 5, 138, 0, 0, 3101, 3102, 5, 296, 0, 0, 3102, 3104, 3, 792, 396, 0, 3103, 3105, 3, 362, 181, 0, 3104, 3103, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3132, 1, 0, 0, 0, 3106, 3110, 3, 242, 121, 0, 3107, 3109, 3, 242, 121, 0, 3108, 3107, 1, 0, 0, 0, 3109, 3112, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3113, 3115, 5, 315, 0, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3133, 1, 0, 0, 0, 3116, 3117, 5, 309, 0, 0, 3117, 3118, 5, 94, 0, 0, 3118, 3133, 3, 794, 397, 0, 3119, 3120, 5, 282, 0, 0, 3120, 3121, 5, 94, 0, 0, 3121, 3133, 3, 812, 406, 0, 3122, 3123, 5, 333, 0, 0, 3123, 3124, 5, 323, 0, 0, 3124, 3133, 3, 32, 16, 0, 3125, 3127, 5, 269, 0, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 3129, 5, 462, 0, 0, 3129, 3130, 5, 80, 0, 0, 3130, 3131, 5, 204, 0, 0, 3131, 3133, 3, 816, 408, 0, 3132, 3106, 1, 0, 0, 0, 3132, 3116, 1, 0, 0, 0, 3132, 3119, 1, 0, 0, 0, 3132, 3122, 1, 0, 0, 0, 3132, 3126, 1, 0, 0, 0, 3133, 241, 1, 0, 0, 0, 3134, 3136, 5, 205, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 5, 327, 0, 0, 3138, 3145, 5, 243, 0, 0, 3139, 3141, 5, 205, 0, 0, 3140, 3139, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 5, 327, 0, 0, 3143, 3145, 5, 181, 0, 0, 3144, 3135, 1, 0, 0, 0, 3144, 3140, 1, 0, 0, 0, 3145, 3164, 1, 0, 0, 0, 3146, 3147, 5, 333, 0, 0, 3147, 3148, 3, 816, 408, 0, 3148, 3151, 7, 37, 0, 0, 3149, 3152, 3, 816, 408, 0, 3150, 3152, 5, 53, 0, 0, 3151, 3149, 1, 0, 0, 0, 3151, 3150, 1, 0, 0, 0, 3152, 3164, 1, 0, 0, 0, 3153, 3154, 5, 333, 0, 0, 3154, 3155, 3, 816, 408, 0, 3155, 3156, 5, 64, 0, 0, 3156, 3157, 5, 434, 0, 0, 3157, 3164, 1, 0, 0, 0, 3158, 3161, 5, 313, 0, 0, 3159, 3162, 3, 816, 408, 0, 3160, 3162, 5, 30, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3162, 3164, 1, 0, 0, 0, 3163, 3144, 1, 0, 0, 0, 3163, 3146, 1, 0, 0, 0, 3163, 3153, 1, 0, 0, 0, 3163, 3158, 1, 0, 0, 0, 3164, 243, 1, 0, 0, 0, 3165, 3166, 5, 100, 0, 0, 3166, 3167, 5, 2, 0, 0, 3167, 3168, 3, 668, 334, 0, 3168, 3169, 5, 3, 0, 0, 3169, 245, 1, 0, 0, 0, 3170, 3171, 5, 105, 0, 0, 3171, 3172, 5, 42, 0, 0, 3172, 3173, 5, 2, 0, 0, 3173, 3174, 3, 668, 334, 0, 3174, 3175, 5, 3, 0, 0, 3175, 247, 1, 0, 0, 0, 3176, 3177, 5, 46, 0, 0, 3177, 3178, 5, 131, 0, 0, 3178, 3179, 5, 446, 0, 0, 3179, 3180, 3, 816, 408, 0, 3180, 3181, 5, 360, 0, 0, 3181, 3182, 7, 38, 0, 0, 3182, 3183, 5, 215, 0, 0, 3183, 3184, 3, 310, 155, 0, 3184, 249, 1, 0, 0, 0, 3185, 3187, 5, 46, 0, 0, 3186, 3188, 3, 360, 180, 0, 3187, 3186, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3190, 5, 357, 0, 0, 3190, 3191, 3, 816, 408, 0, 3191, 3192, 3, 252, 126, 0, 3192, 3193, 3, 254, 127, 0, 3193, 3194, 5, 80, 0, 0, 3194, 3206, 3, 770, 385, 0, 3195, 3202, 5, 447, 0, 0, 3196, 3197, 7, 39, 0, 0, 3197, 3199, 7, 40, 0, 0, 3198, 3200, 5, 36, 0, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 3, 816, 408, 0, 3202, 3196, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3207, 1, 0, 0, 0, 3206, 3195, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3213, 1, 0, 0, 0, 3208, 3210, 5, 62, 0, 0, 3209, 3211, 5, 192, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3214, 7, 41, 0, 0, 3213, 3208, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3217, 3, 258, 129, 0, 3216, 3215, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 5, 202, 0, 0, 3219, 3220, 3, 260, 130, 0, 3220, 3221, 5, 2, 0, 0, 3221, 3222, 3, 262, 131, 0, 3222, 3223, 5, 3, 0, 0, 3223, 3264, 1, 0, 0, 0, 3224, 3226, 5, 46, 0, 0, 3225, 3227, 3, 360, 180, 0, 3226, 3225, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3229, 1, 0, 0, 0, 3228, 3230, 5, 45, 0, 0, 3229, 3228, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 5, 357, 0, 0, 3232, 3233, 3, 816, 408, 0, 3233, 3234, 3, 252, 126, 0, 3234, 3235, 3, 254, 127, 0, 3235, 3236, 5, 80, 0, 0, 3236, 3239, 3, 770, 385, 0, 3237, 3238, 5, 64, 0, 0, 3238, 3240, 3, 776, 388, 0, 3239, 3237, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3244, 1, 0, 0, 0, 3241, 3243, 3, 266, 133, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3246, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3252, 1, 0, 0, 0, 3246, 3244, 1, 0, 0, 0, 3247, 3249, 5, 62, 0, 0, 3248, 3250, 5, 192, 0, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3253, 7, 41, 0, 0, 3252, 3247, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 258, 129, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 5, 202, 0, 0, 3258, 3259, 3, 260, 130, 0, 3259, 3260, 5, 2, 0, 0, 3260, 3261, 3, 262, 131, 0, 3261, 3262, 5, 3, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3185, 1, 0, 0, 0, 3263, 3224, 1, 0, 0, 0, 3264, 251, 1, 0, 0, 0, 3265, 3270, 5, 145, 0, 0, 3266, 3270, 5, 135, 0, 0, 3267, 3268, 5, 242, 0, 0, 3268, 3270, 5, 275, 0, 0, 3269, 3265, 1, 0, 0, 0, 3269, 3266, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 253, 1, 0, 0, 0, 3271, 3276, 3, 256, 128, 0, 3272, 3273, 5, 82, 0, 0, 3273, 3275, 3, 256, 128, 0, 3274, 3272, 1, 0, 0, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3274, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 255, 1, 0, 0, 0, 3278, 3276, 1, 0, 0, 0, 3279, 3288, 5, 241, 0, 0, 3280, 3288, 5, 182, 0, 0, 3281, 3284, 5, 369, 0, 0, 3282, 3283, 5, 275, 0, 0, 3283, 3285, 3, 142, 71, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3288, 5, 358, 0, 0, 3287, 3279, 1, 0, 0, 0, 3287, 3280, 1, 0, 0, 0, 3287, 3281, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3288, 257, 1, 0, 0, 0, 3289, 3290, 5, 102, 0, 0, 3290, 3291, 5, 2, 0, 0, 3291, 3292, 3, 668, 334, 0, 3292, 3293, 5, 3, 0, 0, 3293, 259, 1, 0, 0, 0, 3294, 3295, 5, 211, 0, 0, 3295, 3299, 3, 804, 402, 0, 3296, 3297, 5, 296, 0, 0, 3297, 3299, 3, 792, 396, 0, 3298, 3294, 1, 0, 0, 0, 3298, 3296, 1, 0, 0, 0, 3299, 261, 1, 0, 0, 0, 3300, 3303, 3, 264, 132, 0, 3301, 3303, 1, 0, 0, 0, 3302, 3300, 1, 0, 0, 0, 3302, 3301, 1, 0, 0, 0, 3303, 3308, 1, 0, 0, 0, 3304, 3305, 5, 6, 0, 0, 3305, 3307, 3, 264, 132, 0, 3306, 3304, 1, 0, 0, 0, 3307, 3310, 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 263, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3311, 3316, 5, 574, 0, 0, 3312, 3316, 5, 576, 0, 0, 3313, 3316, 3, 806, 403, 0, 3314, 3316, 3, 822, 411, 0, 3315, 3311, 1, 0, 0, 0, 3315, 3312, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3315, 3314, 1, 0, 0, 0, 3316, 265, 1, 0, 0, 0, 3317, 3319, 5, 77, 0, 0, 3318, 3317, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3328, 5, 54, 0, 0, 3321, 3322, 5, 69, 0, 0, 3322, 3328, 7, 9, 0, 0, 3323, 3324, 5, 77, 0, 0, 3324, 3328, 5, 371, 0, 0, 3325, 3326, 5, 269, 0, 0, 3326, 3328, 5, 228, 0, 0, 3327, 3318, 1, 0, 0, 0, 3327, 3321, 1, 0, 0, 0, 3327, 3323, 1, 0, 0, 0, 3327, 3325, 1, 0, 0, 0, 3328, 267, 1, 0, 0, 0, 3329, 3330, 5, 46, 0, 0, 3330, 3331, 5, 198, 0, 0, 3331, 3332, 5, 357, 0, 0, 3332, 3333, 3, 816, 408, 0, 3333, 3334, 5, 80, 0, 0, 3334, 3344, 3, 822, 411, 0, 3335, 3336, 5, 102, 0, 0, 3336, 3341, 3, 270, 135, 0, 3337, 3338, 5, 33, 0, 0, 3338, 3340, 3, 270, 135, 0, 3339, 3337, 1, 0, 0, 0, 3340, 3343, 1, 0, 0, 0, 3341, 3339, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3345, 1, 0, 0, 0, 3343, 3341, 1, 0, 0, 0, 3344, 3335, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 5, 202, 0, 0, 3347, 3348, 3, 260, 130, 0, 3348, 3349, 5, 2, 0, 0, 3349, 3350, 5, 3, 0, 0, 3350, 269, 1, 0, 0, 0, 3351, 3352, 3, 816, 408, 0, 3352, 3353, 5, 68, 0, 0, 3353, 3354, 5, 2, 0, 0, 3354, 3358, 3, 806, 403, 0, 3355, 3357, 3, 456, 228, 0, 3356, 3355, 1, 0, 0, 0, 3357, 3360, 1, 0, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3361, 1, 0, 0, 0, 3360, 3358, 1, 0, 0, 0, 3361, 3362, 5, 3, 0, 0, 3362, 271, 1, 0, 0, 0, 3363, 3364, 5, 138, 0, 0, 3364, 3365, 5, 198, 0, 0, 3365, 3366, 5, 357, 0, 0, 3366, 3372, 3, 816, 408, 0, 3367, 3369, 5, 193, 0, 0, 3368, 3370, 7, 14, 0, 0, 3369, 3368, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3373, 1, 0, 0, 0, 3371, 3373, 5, 186, 0, 0, 3372, 3367, 1, 0, 0, 0, 3372, 3371, 1, 0, 0, 0, 3373, 273, 1, 0, 0, 0, 3374, 3375, 5, 46, 0, 0, 3375, 3376, 5, 140, 0, 0, 3376, 3377, 3, 310, 155, 0, 3377, 3378, 5, 42, 0, 0, 3378, 3379, 5, 2, 0, 0, 3379, 3380, 3, 668, 334, 0, 3380, 3384, 5, 3, 0, 0, 3381, 3383, 3, 266, 133, 0, 3382, 3381, 1, 0, 0, 0, 3383, 3386, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 275, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3389, 5, 46, 0, 0, 3388, 3390, 3, 360, 180, 0, 3389, 3388, 1, 0, 0, 0, 3389, 3390, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3392, 5, 136, 0, 0, 3392, 3407, 3, 804, 402, 0, 3393, 3394, 3, 386, 193, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3408, 1, 0, 0, 0, 3396, 3397, 5, 2, 0, 0, 3397, 3402, 3, 284, 142, 0, 3398, 3399, 5, 6, 0, 0, 3399, 3401, 3, 284, 142, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3404, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3405, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3405, 3406, 5, 3, 0, 0, 3406, 3408, 1, 0, 0, 0, 3407, 3393, 1, 0, 0, 0, 3407, 3396, 1, 0, 0, 0, 3408, 3466, 1, 0, 0, 0, 3409, 3410, 5, 46, 0, 0, 3410, 3411, 5, 278, 0, 0, 3411, 3412, 3, 408, 204, 0, 3412, 3413, 3, 278, 139, 0, 3413, 3466, 1, 0, 0, 0, 3414, 3415, 5, 46, 0, 0, 3415, 3416, 5, 360, 0, 0, 3416, 3417, 3, 310, 155, 0, 3417, 3435, 5, 36, 0, 0, 3418, 3420, 5, 2, 0, 0, 3419, 3421, 3, 636, 318, 0, 3420, 3419, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3436, 5, 3, 0, 0, 3423, 3424, 5, 196, 0, 0, 3424, 3432, 5, 2, 0, 0, 3425, 3429, 3, 806, 403, 0, 3426, 3428, 3, 456, 228, 0, 3427, 3426, 1, 0, 0, 0, 3428, 3431, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3433, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3432, 3425, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3436, 5, 3, 0, 0, 3435, 3418, 1, 0, 0, 0, 3435, 3423, 1, 0, 0, 0, 3436, 3466, 1, 0, 0, 0, 3437, 3438, 5, 46, 0, 0, 3438, 3439, 5, 360, 0, 0, 3439, 3445, 3, 310, 155, 0, 3440, 3441, 5, 36, 0, 0, 3441, 3443, 5, 299, 0, 0, 3442, 3440, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 3, 278, 139, 0, 3445, 3442, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3466, 1, 0, 0, 0, 3447, 3448, 5, 46, 0, 0, 3448, 3449, 5, 355, 0, 0, 3449, 3450, 5, 325, 0, 0, 3450, 3451, 7, 42, 0, 0, 3451, 3452, 3, 310, 155, 0, 3452, 3453, 3, 278, 139, 0, 3453, 3466, 1, 0, 0, 0, 3454, 3455, 5, 46, 0, 0, 3455, 3457, 5, 108, 0, 0, 3456, 3458, 3, 288, 144, 0, 3457, 3456, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3463, 3, 310, 155, 0, 3460, 3464, 3, 278, 139, 0, 3461, 3462, 5, 64, 0, 0, 3462, 3464, 3, 310, 155, 0, 3463, 3460, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3464, 3466, 1, 0, 0, 0, 3465, 3387, 1, 0, 0, 0, 3465, 3409, 1, 0, 0, 0, 3465, 3414, 1, 0, 0, 0, 3465, 3437, 1, 0, 0, 0, 3465, 3447, 1, 0, 0, 0, 3465, 3454, 1, 0, 0, 0, 3466, 277, 1, 0, 0, 0, 3467, 3468, 5, 2, 0, 0, 3468, 3473, 3, 280, 140, 0, 3469, 3470, 5, 6, 0, 0, 3470, 3472, 3, 280, 140, 0, 3471, 3469, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3476, 3477, 5, 3, 0, 0, 3477, 279, 1, 0, 0, 0, 3478, 3481, 3, 822, 411, 0, 3479, 3480, 5, 10, 0, 0, 3480, 3482, 3, 282, 141, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 281, 1, 0, 0, 0, 3483, 3490, 3, 382, 191, 0, 3484, 3490, 3, 832, 416, 0, 3485, 3490, 3, 722, 361, 0, 3486, 3490, 3, 196, 98, 0, 3487, 3490, 3, 806, 403, 0, 3488, 3490, 5, 407, 0, 0, 3489, 3483, 1, 0, 0, 0, 3489, 3484, 1, 0, 0, 0, 3489, 3485, 1, 0, 0, 0, 3489, 3486, 1, 0, 0, 0, 3489, 3487, 1, 0, 0, 0, 3489, 3488, 1, 0, 0, 0, 3490, 283, 1, 0, 0, 0, 3491, 3492, 3, 824, 412, 0, 3492, 3493, 5, 10, 0, 0, 3493, 3494, 3, 282, 141, 0, 3494, 285, 1, 0, 0, 0, 3495, 3496, 5, 138, 0, 0, 3496, 3497, 5, 360, 0, 0, 3497, 3498, 3, 310, 155, 0, 3498, 3499, 5, 133, 0, 0, 3499, 3501, 5, 450, 0, 0, 3500, 3502, 3, 288, 144, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3506, 3, 806, 403, 0, 3504, 3505, 7, 43, 0, 0, 3505, 3507, 3, 806, 403, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3518, 1, 0, 0, 0, 3508, 3509, 5, 138, 0, 0, 3509, 3510, 5, 360, 0, 0, 3510, 3511, 3, 310, 155, 0, 3511, 3512, 5, 309, 0, 0, 3512, 3513, 5, 450, 0, 0, 3513, 3514, 3, 806, 403, 0, 3514, 3515, 5, 94, 0, 0, 3515, 3516, 3, 806, 403, 0, 3516, 3518, 1, 0, 0, 0, 3517, 3495, 1, 0, 0, 0, 3517, 3508, 1, 0, 0, 0, 3518, 287, 1, 0, 0, 0, 3519, 3520, 5, 220, 0, 0, 3520, 3521, 5, 77, 0, 0, 3521, 3522, 5, 396, 0, 0, 3522, 289, 1, 0, 0, 0, 3523, 3524, 5, 46, 0, 0, 3524, 3525, 5, 278, 0, 0, 3525, 3526, 5, 156, 0, 0, 3526, 3528, 3, 310, 155, 0, 3527, 3529, 5, 53, 0, 0, 3528, 3527, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 5, 62, 0, 0, 3531, 3532, 5, 360, 0, 0, 3532, 3533, 3, 646, 323, 0, 3533, 3536, 3, 164, 82, 0, 3534, 3535, 5, 206, 0, 0, 3535, 3537, 3, 310, 155, 0, 3536, 3534, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3539, 5, 36, 0, 0, 3539, 3544, 3, 292, 146, 0, 3540, 3541, 5, 6, 0, 0, 3541, 3543, 3, 292, 146, 0, 3542, 3540, 1, 0, 0, 0, 3543, 3546, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 291, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 3548, 5, 278, 0, 0, 3548, 3549, 5, 574, 0, 0, 3549, 3551, 3, 408, 204, 0, 3550, 3552, 3, 406, 203, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3560, 1, 0, 0, 0, 3553, 3558, 5, 62, 0, 0, 3554, 3559, 5, 325, 0, 0, 3555, 3556, 5, 83, 0, 0, 3556, 3557, 5, 147, 0, 0, 3557, 3559, 3, 310, 155, 0, 3558, 3554, 1, 0, 0, 0, 3558, 3555, 1, 0, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3553, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3564, 5, 302, 0, 0, 3563, 3562, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3574, 1, 0, 0, 0, 3565, 3566, 5, 211, 0, 0, 3566, 3568, 5, 574, 0, 0, 3567, 3569, 3, 522, 261, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3574, 3, 376, 188, 0, 3571, 3572, 5, 345, 0, 0, 3572, 3574, 3, 646, 323, 0, 3573, 3547, 1, 0, 0, 0, 3573, 3565, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3574, 293, 1, 0, 0, 0, 3575, 3576, 5, 46, 0, 0, 3576, 3577, 5, 278, 0, 0, 3577, 3578, 5, 206, 0, 0, 3578, 3579, 3, 310, 155, 0, 3579, 3580, 3, 164, 82, 0, 3580, 295, 1, 0, 0, 0, 3581, 3582, 5, 138, 0, 0, 3582, 3583, 5, 278, 0, 0, 3583, 3584, 5, 206, 0, 0, 3584, 3585, 3, 310, 155, 0, 3585, 3604, 3, 164, 82, 0, 3586, 3587, 5, 133, 0, 0, 3587, 3592, 3, 292, 146, 0, 3588, 3589, 5, 6, 0, 0, 3589, 3591, 3, 292, 146, 0, 3590, 3588, 1, 0, 0, 0, 3591, 3594, 1, 0, 0, 0, 3592, 3590, 1, 0, 0, 0, 3592, 3593, 1, 0, 0, 0, 3593, 3605, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3595, 3596, 5, 191, 0, 0, 3596, 3601, 3, 298, 149, 0, 3597, 3598, 5, 6, 0, 0, 3598, 3600, 3, 298, 149, 0, 3599, 3597, 1, 0, 0, 0, 3600, 3603, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3605, 1, 0, 0, 0, 3603, 3601, 1, 0, 0, 0, 3604, 3586, 1, 0, 0, 0, 3604, 3595, 1, 0, 0, 0, 3605, 297, 1, 0, 0, 0, 3606, 3607, 7, 44, 0, 0, 3607, 3608, 5, 574, 0, 0, 3608, 3609, 3, 522, 261, 0, 3609, 299, 1, 0, 0, 0, 3610, 3611, 5, 301, 0, 0, 3611, 3612, 5, 281, 0, 0, 3612, 3613, 5, 147, 0, 0, 3613, 3614, 3, 814, 407, 0, 3614, 3615, 5, 94, 0, 0, 3615, 3616, 3, 812, 406, 0, 3616, 301, 1, 0, 0, 0, 3617, 3640, 5, 191, 0, 0, 3618, 3641, 5, 328, 0, 0, 3619, 3641, 5, 226, 0, 0, 3620, 3641, 5, 108, 0, 0, 3621, 3641, 5, 168, 0, 0, 3622, 3641, 5, 342, 0, 0, 3623, 3641, 5, 452, 0, 0, 3624, 3641, 5, 331, 0, 0, 3625, 3626, 5, 131, 0, 0, 3626, 3641, 5, 446, 0, 0, 3627, 3628, 5, 198, 0, 0, 3628, 3641, 5, 357, 0, 0, 3629, 3641, 5, 204, 0, 0, 3630, 3632, 5, 295, 0, 0, 3631, 3630, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3641, 5, 247, 0, 0, 3634, 3635, 5, 63, 0, 0, 3635, 3636, 5, 174, 0, 0, 3636, 3641, 5, 381, 0, 0, 3637, 3638, 5, 355, 0, 0, 3638, 3639, 5, 325, 0, 0, 3639, 3641, 7, 42, 0, 0, 3640, 3618, 1, 0, 0, 0, 3640, 3619, 1, 0, 0, 0, 3640, 3620, 1, 0, 0, 0, 3640, 3621, 1, 0, 0, 0, 3640, 3622, 1, 0, 0, 0, 3640, 3623, 1, 0, 0, 0, 3640, 3624, 1, 0, 0, 0, 3640, 3625, 1, 0, 0, 0, 3640, 3627, 1, 0, 0, 0, 3640, 3629, 1, 0, 0, 0, 3640, 3631, 1, 0, 0, 0, 3640, 3634, 1, 0, 0, 0, 3640, 3637, 1, 0, 0, 0, 3641, 3643, 1, 0, 0, 0, 3642, 3644, 3, 416, 208, 0, 3643, 3642, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3647, 3, 780, 390, 0, 3646, 3648, 3, 88, 44, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3825, 1, 0, 0, 0, 3649, 3651, 5, 191, 0, 0, 3650, 3652, 5, 259, 0, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3655, 5, 376, 0, 0, 3654, 3656, 3, 416, 208, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3662, 3, 774, 387, 0, 3658, 3659, 5, 6, 0, 0, 3659, 3661, 3, 774, 387, 0, 3660, 3658, 1, 0, 0, 0, 3661, 3664, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3665, 3667, 3, 88, 44, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3825, 1, 0, 0, 0, 3668, 3670, 5, 191, 0, 0, 3669, 3671, 5, 63, 0, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3674, 5, 92, 0, 0, 3673, 3675, 3, 416, 208, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3678, 3, 758, 379, 0, 3677, 3679, 3, 88, 44, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3825, 1, 0, 0, 0, 3680, 3681, 5, 191, 0, 0, 3681, 3683, 5, 323, 0, 0, 3682, 3684, 3, 416, 208, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3687, 3, 760, 380, 0, 3686, 3688, 3, 88, 44, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3825, 1, 0, 0, 0, 3689, 3690, 5, 191, 0, 0, 3690, 3692, 7, 45, 0, 0, 3691, 3693, 3, 416, 208, 0, 3692, 3691, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 3, 816, 408, 0, 3695, 3696, 5, 80, 0, 0, 3696, 3698, 3, 310, 155, 0, 3697, 3699, 3, 88, 44, 0, 3698, 3697, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 3825, 1, 0, 0, 0, 3700, 3701, 5, 191, 0, 0, 3701, 3703, 7, 33, 0, 0, 3702, 3704, 3, 416, 208, 0, 3703, 3702, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3710, 3, 646, 323, 0, 3706, 3707, 5, 6, 0, 0, 3707, 3709, 3, 646, 323, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3714, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3715, 3, 88, 44, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3825, 1, 0, 0, 0, 3716, 3717, 5, 191, 0, 0, 3717, 3718, 5, 226, 0, 0, 3718, 3720, 5, 109, 0, 0, 3719, 3721, 3, 416, 208, 0, 3720, 3719, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3724, 3, 308, 154, 0, 3723, 3725, 3, 88, 44, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3825, 1, 0, 0, 0, 3726, 3727, 5, 191, 0, 0, 3727, 3729, 5, 41, 0, 0, 3728, 3730, 3, 416, 208, 0, 3729, 3728, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 5, 2, 0, 0, 3732, 3733, 3, 646, 323, 0, 3733, 3734, 5, 36, 0, 0, 3734, 3735, 3, 646, 323, 0, 3735, 3737, 5, 3, 0, 0, 3736, 3738, 3, 88, 44, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3825, 1, 0, 0, 0, 3739, 3740, 5, 191, 0, 0, 3740, 3741, 5, 278, 0, 0, 3741, 3743, 7, 32, 0, 0, 3742, 3744, 3, 416, 208, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3746, 3, 310, 155, 0, 3746, 3748, 3, 164, 82, 0, 3747, 3749, 3, 88, 44, 0, 3748, 3747, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3825, 1, 0, 0, 0, 3750, 3751, 5, 191, 0, 0, 3751, 3752, 5, 281, 0, 0, 3752, 3753, 5, 147, 0, 0, 3753, 3755, 3, 814, 407, 0, 3754, 3756, 3, 88, 44, 0, 3755, 3754, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3825, 1, 0, 0, 0, 3757, 3758, 5, 191, 0, 0, 3758, 3760, 5, 451, 0, 0, 3759, 3761, 3, 416, 208, 0, 3760, 3759, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 3, 816, 408, 0, 3763, 3765, 3, 88, 44, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3825, 1, 0, 0, 0, 3766, 3767, 5, 191, 0, 0, 3767, 3769, 5, 351, 0, 0, 3768, 3770, 3, 416, 208, 0, 3769, 3768, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3825, 3, 766, 383, 0, 3772, 3773, 5, 191, 0, 0, 3773, 3775, 5, 443, 0, 0, 3774, 3776, 3, 416, 208, 0, 3775, 3774, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3778, 5, 62, 0, 0, 3778, 3779, 3, 646, 323, 0, 3779, 3780, 5, 247, 0, 0, 3780, 3782, 3, 816, 408, 0, 3781, 3783, 3, 88, 44, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3825, 1, 0, 0, 0, 3784, 3785, 5, 191, 0, 0, 3785, 3787, 7, 46, 0, 0, 3786, 3788, 3, 416, 208, 0, 3787, 3786, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3825, 3, 814, 407, 0, 3790, 3791, 5, 191, 0, 0, 3791, 3792, 5, 99, 0, 0, 3792, 3794, 5, 257, 0, 0, 3793, 3795, 3, 416, 208, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3799, 5, 62, 0, 0, 3797, 3800, 3, 812, 406, 0, 3798, 3800, 5, 99, 0, 0, 3799, 3797, 1, 0, 0, 0, 3799, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 5, 331, 0, 0, 3802, 3825, 3, 816, 408, 0, 3803, 3804, 5, 191, 0, 0, 3804, 3806, 5, 175, 0, 0, 3805, 3807, 3, 416, 208, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3822, 3, 784, 392, 0, 3809, 3811, 5, 105, 0, 0, 3810, 3809, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 5, 2, 0, 0, 3813, 3818, 5, 209, 0, 0, 3814, 3815, 5, 6, 0, 0, 3815, 3817, 5, 209, 0, 0, 3816, 3814, 1, 0, 0, 0, 3817, 3820, 1, 0, 0, 0, 3818, 3816, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3821, 1, 0, 0, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3823, 5, 3, 0, 0, 3822, 3810, 1, 0, 0, 0, 3822, 3823, 1, 0, 0, 0, 3823, 3825, 1, 0, 0, 0, 3824, 3617, 1, 0, 0, 0, 3824, 3649, 1, 0, 0, 0, 3824, 3668, 1, 0, 0, 0, 3824, 3680, 1, 0, 0, 0, 3824, 3689, 1, 0, 0, 0, 3824, 3700, 1, 0, 0, 0, 3824, 3716, 1, 0, 0, 0, 3824, 3726, 1, 0, 0, 0, 3824, 3739, 1, 0, 0, 0, 3824, 3750, 1, 0, 0, 0, 3824, 3757, 1, 0, 0, 0, 3824, 3766, 1, 0, 0, 0, 3824, 3772, 1, 0, 0, 0, 3824, 3784, 1, 0, 0, 0, 3824, 3790, 1, 0, 0, 0, 3824, 3803, 1, 0, 0, 0, 3825, 303, 1, 0, 0, 0, 3826, 3828, 5, 63, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 5, 92, 0, 0, 3830, 3843, 3, 770, 385, 0, 3831, 3833, 5, 259, 0, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3834, 1, 0, 0, 0, 3834, 3835, 5, 376, 0, 0, 3835, 3843, 3, 774, 387, 0, 3836, 3837, 7, 47, 0, 0, 3837, 3843, 3, 310, 155, 0, 3838, 3839, 5, 355, 0, 0, 3839, 3840, 5, 325, 0, 0, 3840, 3841, 7, 42, 0, 0, 3841, 3843, 3, 310, 155, 0, 3842, 3827, 1, 0, 0, 0, 3842, 3832, 1, 0, 0, 0, 3842, 3836, 1, 0, 0, 0, 3842, 3838, 1, 0, 0, 0, 3843, 305, 1, 0, 0, 0, 3844, 3845, 5, 198, 0, 0, 3845, 3861, 5, 357, 0, 0, 3846, 3847, 5, 131, 0, 0, 3847, 3861, 5, 446, 0, 0, 3848, 3861, 5, 204, 0, 0, 3849, 3861, 5, 452, 0, 0, 3850, 3861, 5, 331, 0, 0, 3851, 3861, 5, 318, 0, 0, 3852, 3861, 5, 451, 0, 0, 3853, 3854, 5, 63, 0, 0, 3854, 3855, 5, 174, 0, 0, 3855, 3861, 5, 381, 0, 0, 3856, 3858, 5, 295, 0, 0, 3857, 3856, 1, 0, 0, 0, 3857, 3858, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3861, 5, 247, 0, 0, 3860, 3844, 1, 0, 0, 0, 3860, 3846, 1, 0, 0, 0, 3860, 3848, 1, 0, 0, 0, 3860, 3849, 1, 0, 0, 0, 3860, 3850, 1, 0, 0, 0, 3860, 3851, 1, 0, 0, 0, 3860, 3852, 1, 0, 0, 0, 3860, 3853, 1, 0, 0, 0, 3860, 3857, 1, 0, 0, 0, 3861, 3862, 1, 0, 0, 0, 3862, 3869, 3, 816, 408, 0, 3863, 3864, 5, 323, 0, 0, 3864, 3869, 3, 786, 393, 0, 3865, 3866, 5, 175, 0, 0, 3866, 3869, 3, 784, 392, 0, 3867, 3869, 3, 170, 85, 0, 3868, 3860, 1, 0, 0, 0, 3868, 3863, 1, 0, 0, 0, 3868, 3865, 1, 0, 0, 0, 3868, 3867, 1, 0, 0, 0, 3869, 307, 1, 0, 0, 0, 3870, 3875, 3, 310, 155, 0, 3871, 3872, 5, 6, 0, 0, 3872, 3874, 3, 310, 155, 0, 3873, 3871, 1, 0, 0, 0, 3874, 3877, 1, 0, 0, 0, 3875, 3873, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 309, 1, 0, 0, 0, 3877, 3875, 1, 0, 0, 0, 3878, 3880, 3, 816, 408, 0, 3879, 3881, 3, 312, 156, 0, 3880, 3879, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 311, 1, 0, 0, 0, 3882, 3883, 5, 11, 0, 0, 3883, 3885, 3, 822, 411, 0, 3884, 3882, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3886, 3887, 1, 0, 0, 0, 3887, 313, 1, 0, 0, 0, 3888, 3890, 5, 358, 0, 0, 3889, 3891, 5, 92, 0, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3897, 3, 316, 158, 0, 3893, 3894, 5, 6, 0, 0, 3894, 3896, 3, 316, 158, 0, 3895, 3893, 1, 0, 0, 0, 3896, 3899, 1, 0, 0, 0, 3897, 3895, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3902, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3900, 3901, 7, 48, 0, 0, 3901, 3903, 5, 219, 0, 0, 3902, 3900, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3905, 1, 0, 0, 0, 3904, 3906, 3, 88, 44, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 315, 1, 0, 0, 0, 3907, 3909, 5, 81, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3912, 3, 770, 385, 0, 3911, 3913, 5, 9, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 317, 1, 0, 0, 0, 3914, 3915, 5, 159, 0, 0, 3915, 3974, 5, 80, 0, 0, 3916, 3975, 3, 304, 152, 0, 3917, 3975, 3, 306, 153, 0, 3918, 3919, 5, 44, 0, 0, 3919, 3921, 3, 816, 408, 0, 3920, 3922, 3, 312, 156, 0, 3921, 3920, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3924, 5, 11, 0, 0, 3924, 3925, 3, 796, 398, 0, 3925, 3975, 1, 0, 0, 0, 3926, 3927, 7, 33, 0, 0, 3927, 3975, 3, 646, 323, 0, 3928, 3929, 5, 136, 0, 0, 3929, 3975, 3, 388, 194, 0, 3930, 3931, 5, 211, 0, 0, 3931, 3975, 3, 376, 188, 0, 3932, 3933, 5, 278, 0, 0, 3933, 3975, 3, 410, 205, 0, 3934, 3935, 5, 45, 0, 0, 3935, 3936, 3, 816, 408, 0, 3936, 3942, 5, 80, 0, 0, 3937, 3943, 3, 770, 385, 0, 3938, 3940, 5, 189, 0, 0, 3939, 3938, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 3943, 3, 310, 155, 0, 3942, 3937, 1, 0, 0, 0, 3942, 3939, 1, 0, 0, 0, 3943, 3975, 1, 0, 0, 0, 3944, 3945, 7, 45, 0, 0, 3945, 3946, 3, 816, 408, 0, 3946, 3947, 5, 80, 0, 0, 3947, 3948, 3, 310, 155, 0, 3948, 3975, 1, 0, 0, 0, 3949, 3950, 5, 296, 0, 0, 3950, 3975, 3, 372, 186, 0, 3951, 3952, 5, 442, 0, 0, 3952, 3975, 3, 368, 184, 0, 3953, 3954, 5, 443, 0, 0, 3954, 3955, 5, 62, 0, 0, 3955, 3956, 3, 646, 323, 0, 3956, 3957, 5, 247, 0, 0, 3957, 3958, 3, 816, 408, 0, 3958, 3975, 1, 0, 0, 0, 3959, 3960, 5, 278, 0, 0, 3960, 3961, 7, 32, 0, 0, 3961, 3962, 3, 310, 155, 0, 3962, 3963, 3, 164, 82, 0, 3963, 3975, 1, 0, 0, 0, 3964, 3965, 5, 248, 0, 0, 3965, 3966, 5, 274, 0, 0, 3966, 3975, 3, 196, 98, 0, 3967, 3968, 5, 41, 0, 0, 3968, 3969, 5, 2, 0, 0, 3969, 3970, 3, 646, 323, 0, 3970, 3971, 5, 36, 0, 0, 3971, 3972, 3, 646, 323, 0, 3972, 3973, 5, 3, 0, 0, 3973, 3975, 1, 0, 0, 0, 3974, 3916, 1, 0, 0, 0, 3974, 3917, 1, 0, 0, 0, 3974, 3918, 1, 0, 0, 0, 3974, 3926, 1, 0, 0, 0, 3974, 3928, 1, 0, 0, 0, 3974, 3930, 1, 0, 0, 0, 3974, 3932, 1, 0, 0, 0, 3974, 3934, 1, 0, 0, 0, 3974, 3944, 1, 0, 0, 0, 3974, 3949, 1, 0, 0, 0, 3974, 3951, 1, 0, 0, 0, 3974, 3953, 1, 0, 0, 0, 3974, 3959, 1, 0, 0, 0, 3974, 3964, 1, 0, 0, 0, 3974, 3967, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3979, 5, 116, 0, 0, 3977, 3980, 3, 806, 403, 0, 3978, 3980, 5, 78, 0, 0, 3979, 3977, 1, 0, 0, 0, 3979, 3978, 1, 0, 0, 0, 3980, 319, 1, 0, 0, 0, 3981, 3982, 5, 327, 0, 0, 3982, 3985, 5, 246, 0, 0, 3983, 3984, 5, 62, 0, 0, 3984, 3986, 3, 58, 29, 0, 3985, 3983, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 4005, 5, 80, 0, 0, 3988, 3989, 7, 33, 0, 0, 3989, 4006, 3, 646, 323, 0, 3990, 3991, 5, 136, 0, 0, 3991, 4006, 3, 388, 194, 0, 3992, 3993, 5, 44, 0, 0, 3993, 4006, 3, 796, 398, 0, 3994, 3995, 5, 211, 0, 0, 3995, 4006, 3, 376, 188, 0, 3996, 3997, 5, 248, 0, 0, 3997, 3998, 5, 274, 0, 0, 3998, 4006, 3, 196, 98, 0, 3999, 4000, 5, 296, 0, 0, 4000, 4006, 3, 372, 186, 0, 4001, 4002, 5, 442, 0, 0, 4002, 4006, 3, 368, 184, 0, 4003, 4006, 3, 304, 152, 0, 4004, 4006, 3, 306, 153, 0, 4005, 3988, 1, 0, 0, 0, 4005, 3990, 1, 0, 0, 0, 4005, 3992, 1, 0, 0, 0, 4005, 3994, 1, 0, 0, 0, 4005, 3996, 1, 0, 0, 0, 4005, 3999, 1, 0, 0, 0, 4005, 4001, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4004, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4010, 5, 116, 0, 0, 4008, 4011, 3, 806, 403, 0, 4009, 4011, 5, 78, 0, 0, 4010, 4008, 1, 0, 0, 0, 4010, 4009, 1, 0, 0, 0, 4011, 321, 1, 0, 0, 0, 4012, 4013, 7, 49, 0, 0, 4013, 4014, 3, 324, 162, 0, 4014, 323, 1, 0, 0, 0, 4015, 4017, 7, 50, 0, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4019, 1, 0, 0, 0, 4018, 4020, 3, 326, 163, 0, 4019, 4018, 1, 0, 0, 0, 4019, 4020, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4059, 3, 816, 408, 0, 4022, 4024, 7, 51, 0, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 3, 810, 405, 0, 4026, 4028, 3, 326, 163, 0, 4027, 4026, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4030, 3, 816, 408, 0, 4030, 4059, 1, 0, 0, 0, 4031, 4033, 5, 210, 0, 0, 4032, 4034, 3, 810, 405, 0, 4033, 4032, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4036, 1, 0, 0, 0, 4035, 4037, 3, 326, 163, 0, 4036, 4035, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4059, 3, 816, 408, 0, 4039, 4041, 5, 210, 0, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 5, 30, 0, 0, 4043, 4045, 3, 326, 163, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4059, 3, 816, 408, 0, 4047, 4052, 5, 144, 0, 0, 4048, 4050, 5, 30, 0, 0, 4049, 4048, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4053, 1, 0, 0, 0, 4051, 4053, 3, 810, 405, 0, 4052, 4049, 1, 0, 0, 0, 4052, 4051, 1, 0, 0, 0, 4053, 4055, 1, 0, 0, 0, 4054, 4056, 3, 326, 163, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 3, 816, 408, 0, 4058, 4016, 1, 0, 0, 0, 4058, 4023, 1, 0, 0, 0, 4058, 4031, 1, 0, 0, 0, 4058, 4040, 1, 0, 0, 0, 4058, 4047, 1, 0, 0, 0, 4059, 325, 1, 0, 0, 0, 4060, 4061, 7, 52, 0, 0, 4061, 327, 1, 0, 0, 0, 4062, 4063, 5, 65, 0, 0, 4063, 4064, 3, 332, 166, 0, 4064, 4065, 5, 80, 0, 0, 4065, 4066, 3, 338, 169, 0, 4066, 4067, 5, 94, 0, 0, 4067, 4071, 3, 340, 170, 0, 4068, 4069, 5, 105, 0, 0, 4069, 4070, 5, 65, 0, 0, 4070, 4072, 5, 279, 0, 0, 4071, 4068, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 329, 1, 0, 0, 0, 4073, 4077, 5, 317, 0, 0, 4074, 4075, 5, 65, 0, 0, 4075, 4076, 5, 279, 0, 0, 4076, 4078, 5, 62, 0, 0, 4077, 4074, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4080, 3, 332, 166, 0, 4080, 4081, 5, 80, 0, 0, 4081, 4082, 3, 338, 169, 0, 4082, 4083, 5, 64, 0, 0, 4083, 4085, 3, 340, 170, 0, 4084, 4086, 3, 88, 44, 0, 4085, 4084, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 331, 1, 0, 0, 0, 4087, 4092, 3, 336, 168, 0, 4088, 4089, 5, 6, 0, 0, 4089, 4091, 3, 336, 168, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4094, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4111, 1, 0, 0, 0, 4094, 4092, 1, 0, 0, 0, 4095, 4097, 5, 30, 0, 0, 4096, 4098, 5, 294, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4100, 1, 0, 0, 0, 4099, 4101, 3, 138, 69, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4111, 1, 0, 0, 0, 4102, 4107, 3, 334, 167, 0, 4103, 4104, 5, 6, 0, 0, 4104, 4106, 3, 334, 167, 0, 4105, 4103, 1, 0, 0, 0, 4106, 4109, 1, 0, 0, 0, 4107, 4105, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 4111, 1, 0, 0, 0, 4109, 4107, 1, 0, 0, 0, 4110, 4087, 1, 0, 0, 0, 4110, 4095, 1, 0, 0, 0, 4110, 4102, 1, 0, 0, 0, 4111, 333, 1, 0, 0, 0, 4112, 4113, 7, 53, 0, 0, 4113, 335, 1, 0, 0, 0, 4114, 4119, 5, 88, 0, 0, 4115, 4119, 5, 86, 0, 0, 4116, 4119, 5, 46, 0, 0, 4117, 4119, 3, 816, 408, 0, 4118, 4114, 1, 0, 0, 0, 4118, 4115, 1, 0, 0, 0, 4118, 4116, 1, 0, 0, 0, 4118, 4117, 1, 0, 0, 0, 4119, 4121, 1, 0, 0, 0, 4120, 4122, 3, 138, 69, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 337, 1, 0, 0, 0, 4123, 4124, 5, 92, 0, 0, 4124, 4169, 3, 758, 379, 0, 4125, 4127, 5, 328, 0, 0, 4126, 4125, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4169, 3, 756, 378, 0, 4129, 4133, 5, 63, 0, 0, 4130, 4131, 5, 174, 0, 0, 4131, 4134, 5, 381, 0, 0, 4132, 4134, 5, 331, 0, 0, 4133, 4130, 1, 0, 0, 0, 4133, 4132, 1, 0, 0, 0, 4134, 4137, 1, 0, 0, 0, 4135, 4137, 5, 247, 0, 0, 4136, 4129, 1, 0, 0, 0, 4136, 4135, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4169, 3, 780, 390, 0, 4139, 4140, 5, 211, 0, 0, 4140, 4169, 3, 374, 187, 0, 4141, 4142, 5, 296, 0, 0, 4142, 4169, 3, 370, 185, 0, 4143, 4144, 5, 442, 0, 0, 4144, 4169, 3, 366, 183, 0, 4145, 4146, 5, 175, 0, 0, 4146, 4169, 3, 762, 381, 0, 4147, 4148, 7, 33, 0, 0, 4148, 4169, 3, 308, 154, 0, 4149, 4150, 5, 248, 0, 0, 4150, 4151, 5, 274, 0, 0, 4151, 4156, 3, 196, 98, 0, 4152, 4153, 5, 6, 0, 0, 4153, 4155, 3, 196, 98, 0, 4154, 4152, 1, 0, 0, 0, 4155, 4158, 1, 0, 0, 0, 4156, 4154, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4169, 1, 0, 0, 0, 4158, 4156, 1, 0, 0, 0, 4159, 4160, 5, 323, 0, 0, 4160, 4169, 3, 760, 380, 0, 4161, 4162, 5, 351, 0, 0, 4162, 4169, 3, 778, 389, 0, 4163, 4164, 5, 30, 0, 0, 4164, 4165, 7, 54, 0, 0, 4165, 4166, 5, 68, 0, 0, 4166, 4167, 5, 323, 0, 0, 4167, 4169, 3, 760, 380, 0, 4168, 4123, 1, 0, 0, 0, 4168, 4126, 1, 0, 0, 0, 4168, 4136, 1, 0, 0, 0, 4168, 4139, 1, 0, 0, 0, 4168, 4141, 1, 0, 0, 0, 4168, 4143, 1, 0, 0, 0, 4168, 4145, 1, 0, 0, 0, 4168, 4147, 1, 0, 0, 0, 4168, 4149, 1, 0, 0, 0, 4168, 4159, 1, 0, 0, 0, 4168, 4161, 1, 0, 0, 0, 4168, 4163, 1, 0, 0, 0, 4169, 339, 1, 0, 0, 0, 4170, 4172, 5, 66, 0, 0, 4171, 4170, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4174, 3, 812, 406, 0, 4174, 4182, 1, 0, 0, 0, 4175, 4177, 5, 6, 0, 0, 4176, 4178, 5, 66, 0, 0, 4177, 4176, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 4181, 3, 812, 406, 0, 4180, 4175, 1, 0, 0, 0, 4181, 4184, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 341, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4185, 4186, 5, 65, 0, 0, 4186, 4191, 3, 336, 168, 0, 4187, 4188, 5, 6, 0, 0, 4188, 4190, 3, 336, 168, 0, 4189, 4187, 1, 0, 0, 0, 4190, 4193, 1, 0, 0, 0, 4191, 4189, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 4194, 1, 0, 0, 0, 4193, 4191, 1, 0, 0, 0, 4194, 4195, 5, 94, 0, 0, 4195, 4199, 3, 814, 407, 0, 4196, 4197, 5, 105, 0, 0, 4197, 4198, 5, 134, 0, 0, 4198, 4200, 5, 279, 0, 0, 4199, 4196, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4204, 1, 0, 0, 0, 4201, 4202, 5, 214, 0, 0, 4202, 4203, 5, 147, 0, 0, 4203, 4205, 3, 812, 406, 0, 4204, 4201, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 343, 1, 0, 0, 0, 4206, 4210, 5, 317, 0, 0, 4207, 4208, 5, 134, 0, 0, 4208, 4209, 5, 279, 0, 0, 4209, 4211, 5, 62, 0, 0, 4210, 4207, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4217, 3, 336, 168, 0, 4213, 4214, 5, 6, 0, 0, 4214, 4216, 3, 336, 168, 0, 4215, 4213, 1, 0, 0, 0, 4216, 4219, 1, 0, 0, 0, 4217, 4215, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4220, 1, 0, 0, 0, 4219, 4217, 1, 0, 0, 0, 4220, 4221, 5, 64, 0, 0, 4221, 4225, 3, 814, 407, 0, 4222, 4223, 5, 214, 0, 0, 4223, 4224, 5, 147, 0, 0, 4224, 4226, 3, 812, 406, 0, 4225, 4222, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4229, 3, 88, 44, 0, 4228, 4227, 1, 0, 0, 0, 4228, 4229, 1, 0, 0, 0, 4229, 345, 1, 0, 0, 0, 4230, 4231, 5, 138, 0, 0, 4231, 4232, 5, 53, 0, 0, 4232, 4241, 5, 294, 0, 0, 4233, 4234, 5, 68, 0, 0, 4234, 4235, 5, 323, 0, 0, 4235, 4240, 3, 760, 380, 0, 4236, 4237, 5, 62, 0, 0, 4237, 4238, 7, 2, 0, 0, 4238, 4240, 3, 814, 407, 0, 4239, 4233, 1, 0, 0, 0, 4239, 4236, 1, 0, 0, 0, 4240, 4243, 1, 0, 0, 0, 4241, 4239, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 4244, 1, 0, 0, 0, 4243, 4241, 1, 0, 0, 0, 4244, 4245, 3, 348, 174, 0, 4245, 347, 1, 0, 0, 0, 4246, 4247, 5, 65, 0, 0, 4247, 4248, 3, 332, 166, 0, 4248, 4249, 5, 80, 0, 0, 4249, 4250, 3, 350, 175, 0, 4250, 4251, 5, 94, 0, 0, 4251, 4255, 3, 340, 170, 0, 4252, 4253, 5, 105, 0, 0, 4253, 4254, 5, 65, 0, 0, 4254, 4256, 5, 279, 0, 0, 4255, 4252, 1, 0, 0, 0, 4255, 4256, 1, 0, 0, 0, 4256, 4272, 1, 0, 0, 0, 4257, 4261, 5, 317, 0, 0, 4258, 4259, 5, 65, 0, 0, 4259, 4260, 5, 279, 0, 0, 4260, 4262, 5, 62, 0, 0, 4261, 4258, 1, 0, 0, 0, 4261, 4262, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4264, 3, 332, 166, 0, 4264, 4265, 5, 80, 0, 0, 4265, 4266, 3, 350, 175, 0, 4266, 4267, 5, 64, 0, 0, 4267, 4269, 3, 340, 170, 0, 4268, 4270, 3, 88, 44, 0, 4269, 4268, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4272, 1, 0, 0, 0, 4271, 4246, 1, 0, 0, 0, 4271, 4257, 1, 0, 0, 0, 4272, 349, 1, 0, 0, 0, 4273, 4274, 7, 55, 0, 0, 4274, 351, 1, 0, 0, 0, 4275, 4277, 5, 46, 0, 0, 4276, 4278, 5, 98, 0, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4281, 5, 226, 0, 0, 4280, 4282, 5, 109, 0, 0, 4281, 4280, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 1, 0, 0, 0, 4283, 4285, 3, 288, 144, 0, 4284, 4283, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4287, 1, 0, 0, 0, 4286, 4288, 3, 816, 408, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4290, 5, 80, 0, 0, 4290, 4292, 3, 618, 309, 0, 4291, 4293, 3, 164, 82, 0, 4292, 4291, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4294, 1, 0, 0, 0, 4294, 4297, 3, 354, 177, 0, 4295, 4296, 5, 441, 0, 0, 4296, 4298, 3, 354, 177, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4304, 1, 0, 0, 0, 4299, 4301, 5, 273, 0, 0, 4300, 4302, 5, 77, 0, 0, 4301, 4300, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4305, 5, 56, 0, 0, 4304, 4299, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 4307, 1, 0, 0, 0, 4306, 4308, 3, 94, 47, 0, 4307, 4306, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4310, 1, 0, 0, 0, 4309, 4311, 3, 170, 85, 0, 4310, 4309, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4313, 1, 0, 0, 0, 4312, 4314, 3, 632, 316, 0, 4313, 4312, 1, 0, 0, 0, 4313, 4314, 1, 0, 0, 0, 4314, 353, 1, 0, 0, 0, 4315, 4316, 5, 2, 0, 0, 4316, 4321, 3, 356, 178, 0, 4317, 4318, 5, 6, 0, 0, 4318, 4320, 3, 356, 178, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4323, 1, 0, 0, 0, 4321, 4319, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4324, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 4325, 5, 3, 0, 0, 4325, 355, 1, 0, 0, 0, 4326, 4333, 3, 796, 398, 0, 4327, 4333, 3, 682, 341, 0, 4328, 4329, 5, 2, 0, 0, 4329, 4330, 3, 668, 334, 0, 4330, 4331, 5, 3, 0, 0, 4331, 4333, 1, 0, 0, 0, 4332, 4326, 1, 0, 0, 0, 4332, 4327, 1, 0, 0, 0, 4332, 4328, 1, 0, 0, 0, 4333, 4335, 1, 0, 0, 0, 4334, 4336, 3, 90, 45, 0, 4335, 4334, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4343, 1, 0, 0, 0, 4337, 4339, 3, 310, 155, 0, 4338, 4337, 1, 0, 0, 0, 4338, 4339, 1, 0, 0, 0, 4339, 4344, 1, 0, 0, 0, 4340, 4341, 3, 310, 155, 0, 4341, 4342, 3, 92, 46, 0, 4342, 4344, 1, 0, 0, 0, 4343, 4338, 1, 0, 0, 0, 4343, 4340, 1, 0, 0, 0, 4344, 4346, 1, 0, 0, 0, 4345, 4347, 7, 56, 0, 0, 4346, 4345, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4350, 1, 0, 0, 0, 4348, 4349, 5, 273, 0, 0, 4349, 4351, 7, 57, 0, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 357, 1, 0, 0, 0, 4352, 4354, 5, 46, 0, 0, 4353, 4355, 3, 360, 180, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4360, 1, 0, 0, 0, 4356, 4357, 5, 211, 0, 0, 4357, 4361, 3, 802, 401, 0, 4358, 4359, 5, 296, 0, 0, 4359, 4361, 3, 794, 397, 0, 4360, 4356, 1, 0, 0, 0, 4360, 4358, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4371, 5, 2, 0, 0, 4363, 4368, 3, 384, 192, 0, 4364, 4365, 5, 6, 0, 0, 4365, 4367, 3, 384, 192, 0, 4366, 4364, 1, 0, 0, 0, 4367, 4370, 1, 0, 0, 0, 4368, 4366, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4372, 1, 0, 0, 0, 4370, 4368, 1, 0, 0, 0, 4371, 4363, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 4374, 5, 3, 0, 0, 4374, 4391, 1, 0, 0, 0, 4375, 4389, 5, 316, 0, 0, 4376, 4390, 3, 382, 191, 0, 4377, 4378, 5, 92, 0, 0, 4378, 4379, 5, 2, 0, 0, 4379, 4384, 3, 396, 198, 0, 4380, 4381, 5, 6, 0, 0, 4381, 4383, 3, 396, 198, 0, 4382, 4380, 1, 0, 0, 0, 4383, 4386, 1, 0, 0, 0, 4384, 4382, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 4387, 1, 0, 0, 0, 4386, 4384, 1, 0, 0, 0, 4387, 4388, 5, 3, 0, 0, 4388, 4390, 1, 0, 0, 0, 4389, 4376, 1, 0, 0, 0, 4389, 4377, 1, 0, 0, 0, 4390, 4392, 1, 0, 0, 0, 4391, 4375, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4394, 1, 0, 0, 0, 4393, 4395, 3, 392, 196, 0, 4394, 4393, 1, 0, 0, 0, 4395, 4396, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4396, 4397, 1, 0, 0, 0, 4397, 4403, 1, 0, 0, 0, 4398, 4399, 5, 105, 0, 0, 4399, 4400, 5, 2, 0, 0, 4400, 4401, 3, 780, 390, 0, 4401, 4402, 5, 3, 0, 0, 4402, 4404, 1, 0, 0, 0, 4403, 4398, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 359, 1, 0, 0, 0, 4405, 4406, 5, 82, 0, 0, 4406, 4407, 5, 311, 0, 0, 4407, 361, 1, 0, 0, 0, 4408, 4410, 5, 2, 0, 0, 4409, 4411, 3, 364, 182, 0, 4410, 4409, 1, 0, 0, 0, 4410, 4411, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 4413, 5, 3, 0, 0, 4413, 363, 1, 0, 0, 0, 4414, 4419, 3, 378, 189, 0, 4415, 4416, 5, 6, 0, 0, 4416, 4418, 3, 378, 189, 0, 4417, 4415, 1, 0, 0, 0, 4418, 4421, 1, 0, 0, 0, 4419, 4417, 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 365, 1, 0, 0, 0, 4421, 4419, 1, 0, 0, 0, 4422, 4427, 3, 368, 184, 0, 4423, 4424, 5, 6, 0, 0, 4424, 4426, 3, 368, 184, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4429, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 367, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4431, 3, 790, 395, 0, 4431, 4432, 3, 362, 181, 0, 4432, 4436, 1, 0, 0, 0, 4433, 4436, 3, 830, 415, 0, 4434, 4436, 3, 776, 388, 0, 4435, 4430, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4435, 4434, 1, 0, 0, 0, 4436, 369, 1, 0, 0, 0, 4437, 4442, 3, 372, 186, 0, 4438, 4439, 5, 6, 0, 0, 4439, 4441, 3, 372, 186, 0, 4440, 4438, 1, 0, 0, 0, 4441, 4444, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 371, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4445, 4446, 3, 792, 396, 0, 4446, 4447, 3, 362, 181, 0, 4447, 4451, 1, 0, 0, 0, 4448, 4451, 3, 830, 415, 0, 4449, 4451, 3, 776, 388, 0, 4450, 4445, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4449, 1, 0, 0, 0, 4451, 373, 1, 0, 0, 0, 4452, 4457, 3, 376, 188, 0, 4453, 4454, 5, 6, 0, 0, 4454, 4456, 3, 376, 188, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4459, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 375, 1, 0, 0, 0, 4459, 4457, 1, 0, 0, 0, 4460, 4461, 3, 804, 402, 0, 4461, 4462, 3, 362, 181, 0, 4462, 4466, 1, 0, 0, 0, 4463, 4466, 3, 830, 415, 0, 4464, 4466, 3, 776, 388, 0, 4465, 4460, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4465, 4464, 1, 0, 0, 0, 4466, 377, 1, 0, 0, 0, 4467, 4469, 3, 380, 190, 0, 4468, 4470, 3, 818, 409, 0, 4469, 4468, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4476, 1, 0, 0, 0, 4471, 4473, 3, 818, 409, 0, 4472, 4474, 3, 380, 190, 0, 4473, 4472, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 4476, 1, 0, 0, 0, 4475, 4467, 1, 0, 0, 0, 4475, 4471, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 4477, 1, 0, 0, 0, 4477, 4478, 3, 382, 191, 0, 4478, 379, 1, 0, 0, 0, 4479, 4481, 5, 68, 0, 0, 4480, 4482, 5, 453, 0, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4487, 1, 0, 0, 0, 4483, 4487, 5, 453, 0, 0, 4484, 4487, 5, 400, 0, 0, 4485, 4487, 5, 101, 0, 0, 4486, 4479, 1, 0, 0, 0, 4486, 4483, 1, 0, 0, 0, 4486, 4484, 1, 0, 0, 0, 4486, 4485, 1, 0, 0, 0, 4487, 381, 1, 0, 0, 0, 4488, 4498, 3, 646, 323, 0, 4489, 4491, 5, 415, 0, 0, 4490, 4489, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4493, 3, 818, 409, 0, 4493, 4494, 3, 312, 156, 0, 4494, 4495, 5, 27, 0, 0, 4495, 4496, 5, 360, 0, 0, 4496, 4498, 1, 0, 0, 0, 4497, 4488, 1, 0, 0, 0, 4497, 4490, 1, 0, 0, 0, 4498, 383, 1, 0, 0, 0, 4499, 4502, 3, 378, 189, 0, 4500, 4501, 7, 58, 0, 0, 4501, 4503, 3, 668, 334, 0, 4502, 4500, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 385, 1, 0, 0, 0, 4504, 4514, 5, 2, 0, 0, 4505, 4515, 5, 9, 0, 0, 4506, 4508, 3, 364, 182, 0, 4507, 4506, 1, 0, 0, 0, 4507, 4508, 1, 0, 0, 0, 4508, 4512, 1, 0, 0, 0, 4509, 4510, 5, 83, 0, 0, 4510, 4511, 5, 147, 0, 0, 4511, 4513, 3, 364, 182, 0, 4512, 4509, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4515, 1, 0, 0, 0, 4514, 4505, 1, 0, 0, 0, 4514, 4507, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4517, 5, 3, 0, 0, 4517, 387, 1, 0, 0, 0, 4518, 4519, 3, 804, 402, 0, 4519, 4520, 3, 386, 193, 0, 4520, 389, 1, 0, 0, 0, 4521, 4522, 5, 316, 0, 0, 4522, 4525, 5, 78, 0, 0, 4523, 4525, 5, 149, 0, 0, 4524, 4521, 1, 0, 0, 0, 4524, 4523, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4527, 5, 80, 0, 0, 4527, 4528, 5, 78, 0, 0, 4528, 4551, 5, 458, 0, 0, 4529, 4551, 5, 346, 0, 0, 4530, 4551, 5, 222, 0, 0, 4531, 4551, 5, 338, 0, 0, 4532, 4551, 5, 377, 0, 0, 4533, 4535, 5, 205, 0, 0, 4534, 4533, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 5, 327, 0, 0, 4537, 4551, 7, 59, 0, 0, 4538, 4551, 5, 250, 0, 0, 4539, 4540, 5, 77, 0, 0, 4540, 4551, 5, 250, 0, 0, 4541, 4542, 7, 60, 0, 0, 4542, 4551, 3, 196, 98, 0, 4543, 4544, 5, 459, 0, 0, 4544, 4551, 3, 310, 155, 0, 4545, 4546, 5, 333, 0, 0, 4546, 4551, 3, 42, 21, 0, 4547, 4551, 3, 60, 30, 0, 4548, 4549, 5, 460, 0, 0, 4549, 4551, 3, 816, 408, 0, 4550, 4524, 1, 0, 0, 0, 4550, 4529, 1, 0, 0, 0, 4550, 4530, 1, 0, 0, 0, 4550, 4531, 1, 0, 0, 0, 4550, 4532, 1, 0, 0, 0, 4550, 4534, 1, 0, 0, 0, 4550, 4538, 1, 0, 0, 0, 4550, 4539, 1, 0, 0, 0, 4550, 4541, 1, 0, 0, 0, 4550, 4543, 1, 0, 0, 0, 4550, 4545, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4550, 4548, 1, 0, 0, 0, 4551, 391, 1, 0, 0, 0, 4552, 4553, 5, 36, 0, 0, 4553, 4554, 3, 806, 403, 0, 4554, 4555, 3, 456, 228, 0, 4555, 4588, 1, 0, 0, 0, 4556, 4557, 5, 247, 0, 0, 4557, 4588, 3, 58, 29, 0, 4558, 4559, 5, 443, 0, 0, 4559, 4560, 5, 62, 0, 0, 4560, 4561, 5, 360, 0, 0, 4561, 4568, 3, 646, 323, 0, 4562, 4563, 5, 6, 0, 0, 4563, 4564, 5, 62, 0, 0, 4564, 4565, 5, 360, 0, 0, 4565, 4567, 3, 646, 323, 0, 4566, 4562, 1, 0, 0, 0, 4567, 4570, 1, 0, 0, 0, 4568, 4566, 1, 0, 0, 0, 4568, 4569, 1, 0, 0, 0, 4569, 4588, 1, 0, 0, 0, 4570, 4568, 1, 0, 0, 0, 4571, 4588, 5, 104, 0, 0, 4572, 4573, 5, 333, 0, 0, 4573, 4580, 3, 816, 408, 0, 4574, 4575, 5, 94, 0, 0, 4575, 4581, 3, 816, 408, 0, 4576, 4577, 5, 10, 0, 0, 4577, 4581, 3, 816, 408, 0, 4578, 4579, 5, 64, 0, 0, 4579, 4581, 5, 434, 0, 0, 4580, 4574, 1, 0, 0, 0, 4580, 4576, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4588, 1, 0, 0, 0, 4582, 4583, 5, 36, 0, 0, 4583, 4588, 3, 816, 408, 0, 4584, 4588, 3, 4, 2, 0, 4585, 4588, 3, 390, 195, 0, 4586, 4588, 3, 816, 408, 0, 4587, 4552, 1, 0, 0, 0, 4587, 4556, 1, 0, 0, 0, 4587, 4558, 1, 0, 0, 0, 4587, 4571, 1, 0, 0, 0, 4587, 4572, 1, 0, 0, 0, 4587, 4582, 1, 0, 0, 0, 4587, 4584, 1, 0, 0, 0, 4587, 4585, 1, 0, 0, 0, 4587, 4586, 1, 0, 0, 0, 4588, 393, 1, 0, 0, 0, 4589, 4590, 5, 105, 0, 0, 4590, 4591, 3, 278, 139, 0, 4591, 395, 1, 0, 0, 0, 4592, 4593, 3, 796, 398, 0, 4593, 4594, 3, 382, 191, 0, 4594, 397, 1, 0, 0, 0, 4595, 4602, 5, 138, 0, 0, 4596, 4597, 5, 211, 0, 0, 4597, 4603, 3, 376, 188, 0, 4598, 4599, 5, 296, 0, 0, 4599, 4603, 3, 372, 186, 0, 4600, 4601, 5, 442, 0, 0, 4601, 4603, 3, 368, 184, 0, 4602, 4596, 1, 0, 0, 0, 4602, 4598, 1, 0, 0, 0, 4602, 4600, 1, 0, 0, 0, 4603, 4605, 1, 0, 0, 0, 4604, 4606, 3, 390, 195, 0, 4605, 4604, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4610, 1, 0, 0, 0, 4609, 4611, 5, 315, 0, 0, 4610, 4609, 1, 0, 0, 0, 4610, 4611, 1, 0, 0, 0, 4611, 399, 1, 0, 0, 0, 4612, 4628, 5, 191, 0, 0, 4613, 4615, 5, 211, 0, 0, 4614, 4616, 3, 416, 208, 0, 4615, 4614, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4629, 3, 374, 187, 0, 4618, 4620, 5, 296, 0, 0, 4619, 4621, 3, 416, 208, 0, 4620, 4619, 1, 0, 0, 0, 4620, 4621, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4629, 3, 370, 185, 0, 4623, 4625, 5, 442, 0, 0, 4624, 4626, 3, 416, 208, 0, 4625, 4624, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4629, 3, 366, 183, 0, 4628, 4613, 1, 0, 0, 0, 4628, 4618, 1, 0, 0, 0, 4628, 4623, 1, 0, 0, 0, 4629, 4631, 1, 0, 0, 0, 4630, 4632, 3, 88, 44, 0, 4631, 4630, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 401, 1, 0, 0, 0, 4633, 4634, 5, 191, 0, 0, 4634, 4636, 5, 136, 0, 0, 4635, 4637, 3, 416, 208, 0, 4636, 4635, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4643, 3, 388, 194, 0, 4639, 4640, 5, 6, 0, 0, 4640, 4642, 3, 388, 194, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4647, 1, 0, 0, 0, 4645, 4643, 1, 0, 0, 0, 4646, 4648, 3, 88, 44, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 403, 1, 0, 0, 0, 4649, 4650, 5, 191, 0, 0, 4650, 4652, 5, 278, 0, 0, 4651, 4653, 3, 416, 208, 0, 4652, 4651, 1, 0, 0, 0, 4652, 4653, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4659, 3, 410, 205, 0, 4655, 4656, 5, 6, 0, 0, 4656, 4658, 3, 410, 205, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4661, 1, 0, 0, 0, 4659, 4657, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 4663, 1, 0, 0, 0, 4661, 4659, 1, 0, 0, 0, 4662, 4664, 3, 88, 44, 0, 4663, 4662, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 405, 1, 0, 0, 0, 4665, 4678, 5, 2, 0, 0, 4666, 4669, 3, 646, 323, 0, 4667, 4668, 5, 6, 0, 0, 4668, 4670, 3, 646, 323, 0, 4669, 4667, 1, 0, 0, 0, 4669, 4670, 1, 0, 0, 0, 4670, 4679, 1, 0, 0, 0, 4671, 4672, 5, 407, 0, 0, 4672, 4673, 5, 6, 0, 0, 4673, 4679, 3, 646, 323, 0, 4674, 4675, 3, 646, 323, 0, 4675, 4676, 5, 6, 0, 0, 4676, 4677, 5, 407, 0, 0, 4677, 4679, 1, 0, 0, 0, 4678, 4666, 1, 0, 0, 0, 4678, 4671, 1, 0, 0, 0, 4678, 4674, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 4681, 5, 3, 0, 0, 4681, 407, 1, 0, 0, 0, 4682, 4683, 3, 816, 408, 0, 4683, 4684, 5, 11, 0, 0, 4684, 4686, 1, 0, 0, 0, 4685, 4682, 1, 0, 0, 0, 4686, 4689, 1, 0, 0, 0, 4687, 4685, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4690, 1, 0, 0, 0, 4689, 4687, 1, 0, 0, 0, 4690, 4691, 3, 716, 358, 0, 4691, 409, 1, 0, 0, 0, 4692, 4693, 3, 408, 204, 0, 4693, 4694, 3, 406, 203, 0, 4694, 411, 1, 0, 0, 0, 4695, 4699, 5, 57, 0, 0, 4696, 4700, 3, 806, 403, 0, 4697, 4698, 5, 247, 0, 0, 4698, 4700, 3, 58, 29, 0, 4699, 4696, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4699, 1, 0, 0, 0, 4701, 4702, 1, 0, 0, 0, 4702, 413, 1, 0, 0, 0, 4703, 4704, 5, 46, 0, 0, 4704, 4705, 5, 41, 0, 0, 4705, 4706, 5, 2, 0, 0, 4706, 4707, 3, 646, 323, 0, 4707, 4708, 5, 36, 0, 0, 4708, 4709, 3, 646, 323, 0, 4709, 4726, 5, 3, 0, 0, 4710, 4711, 5, 379, 0, 0, 4711, 4714, 5, 211, 0, 0, 4712, 4713, 5, 36, 0, 0, 4713, 4715, 7, 61, 0, 0, 4714, 4712, 1, 0, 0, 0, 4714, 4715, 1, 0, 0, 0, 4715, 4727, 1, 0, 0, 0, 4716, 4720, 5, 105, 0, 0, 4717, 4718, 5, 211, 0, 0, 4718, 4721, 3, 376, 188, 0, 4719, 4721, 5, 400, 0, 0, 4720, 4717, 1, 0, 0, 0, 4720, 4719, 1, 0, 0, 0, 4721, 4724, 1, 0, 0, 0, 4722, 4723, 5, 36, 0, 0, 4723, 4725, 7, 61, 0, 0, 4724, 4722, 1, 0, 0, 0, 4724, 4725, 1, 0, 0, 0, 4725, 4727, 1, 0, 0, 0, 4726, 4710, 1, 0, 0, 0, 4726, 4716, 1, 0, 0, 0, 4727, 415, 1, 0, 0, 0, 4728, 4729, 5, 220, 0, 0, 4729, 4730, 5, 396, 0, 0, 4730, 417, 1, 0, 0, 0, 4731, 4733, 5, 46, 0, 0, 4732, 4734, 3, 360, 180, 0, 4733, 4732, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4735, 1, 0, 0, 0, 4735, 4736, 5, 443, 0, 0, 4736, 4737, 5, 62, 0, 0, 4737, 4738, 3, 646, 323, 0, 4738, 4739, 5, 247, 0, 0, 4739, 4740, 3, 816, 408, 0, 4740, 4755, 5, 2, 0, 0, 4741, 4742, 5, 64, 0, 0, 4742, 4746, 3, 420, 210, 0, 4743, 4744, 5, 6, 0, 0, 4744, 4745, 5, 94, 0, 0, 4745, 4747, 3, 420, 210, 0, 4746, 4743, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4756, 1, 0, 0, 0, 4748, 4749, 5, 94, 0, 0, 4749, 4753, 3, 420, 210, 0, 4750, 4751, 5, 6, 0, 0, 4751, 4752, 5, 64, 0, 0, 4752, 4754, 3, 420, 210, 0, 4753, 4750, 1, 0, 0, 0, 4753, 4754, 1, 0, 0, 0, 4754, 4756, 1, 0, 0, 0, 4755, 4741, 1, 0, 0, 0, 4755, 4748, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4758, 5, 3, 0, 0, 4758, 419, 1, 0, 0, 0, 4759, 4760, 5, 461, 0, 0, 4760, 4761, 5, 105, 0, 0, 4761, 4762, 5, 211, 0, 0, 4762, 4763, 3, 376, 188, 0, 4763, 421, 1, 0, 0, 0, 4764, 4775, 5, 306, 0, 0, 4765, 4766, 5, 2, 0, 0, 4766, 4771, 5, 128, 0, 0, 4767, 4768, 5, 6, 0, 0, 4768, 4770, 5, 128, 0, 0, 4769, 4767, 1, 0, 0, 0, 4770, 4773, 1, 0, 0, 0, 4771, 4769, 1, 0, 0, 0, 4771, 4772, 1, 0, 0, 0, 4772, 4774, 1, 0, 0, 0, 4773, 4771, 1, 0, 0, 0, 4774, 4776, 5, 3, 0, 0, 4775, 4765, 1, 0, 0, 0, 4775, 4776, 1, 0, 0, 0, 4776, 4802, 1, 0, 0, 0, 4777, 4779, 5, 226, 0, 0, 4778, 4780, 5, 109, 0, 0, 4779, 4778, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 4781, 1, 0, 0, 0, 4781, 4803, 3, 776, 388, 0, 4782, 4784, 5, 92, 0, 0, 4783, 4785, 5, 109, 0, 0, 4784, 4783, 1, 0, 0, 0, 4784, 4785, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4803, 3, 770, 385, 0, 4787, 4789, 5, 323, 0, 0, 4788, 4790, 5, 109, 0, 0, 4789, 4788, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4803, 3, 786, 393, 0, 4792, 4794, 5, 349, 0, 0, 4793, 4795, 5, 109, 0, 0, 4794, 4793, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 4803, 3, 816, 408, 0, 4797, 4799, 5, 175, 0, 0, 4798, 4800, 5, 109, 0, 0, 4799, 4798, 1, 0, 0, 0, 4799, 4800, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4803, 3, 784, 392, 0, 4802, 4777, 1, 0, 0, 0, 4802, 4782, 1, 0, 0, 0, 4802, 4787, 1, 0, 0, 0, 4802, 4792, 1, 0, 0, 0, 4802, 4797, 1, 0, 0, 0, 4803, 423, 1, 0, 0, 0, 4804, 4805, 5, 138, 0, 0, 4805, 4806, 3, 170, 85, 0, 4806, 4807, 7, 16, 0, 0, 4807, 4808, 3, 92, 46, 0, 4808, 425, 1, 0, 0, 0, 4809, 4814, 5, 138, 0, 0, 4810, 4811, 5, 136, 0, 0, 4811, 4815, 3, 388, 194, 0, 4812, 4813, 5, 442, 0, 0, 4813, 4815, 3, 368, 184, 0, 4814, 4810, 1, 0, 0, 0, 4814, 4812, 1, 0, 0, 0, 4815, 4816, 1, 0, 0, 0, 4816, 4817, 5, 309, 0, 0, 4817, 4818, 5, 94, 0, 0, 4818, 4819, 3, 816, 408, 0, 4819, 5017, 1, 0, 0, 0, 4820, 4821, 5, 138, 0, 0, 4821, 4822, 5, 175, 0, 0, 4822, 4823, 3, 784, 392, 0, 4823, 4824, 5, 309, 0, 0, 4824, 4825, 5, 94, 0, 0, 4825, 4826, 3, 782, 391, 0, 4826, 5017, 1, 0, 0, 0, 4827, 4828, 5, 138, 0, 0, 4828, 4829, 7, 62, 0, 0, 4829, 4830, 3, 310, 155, 0, 4830, 4831, 5, 309, 0, 0, 4831, 4832, 5, 94, 0, 0, 4832, 4833, 3, 816, 408, 0, 4833, 5017, 1, 0, 0, 0, 4834, 4835, 5, 138, 0, 0, 4835, 4836, 5, 211, 0, 0, 4836, 4837, 3, 376, 188, 0, 4837, 4838, 5, 309, 0, 0, 4838, 4839, 5, 94, 0, 0, 4839, 4840, 3, 802, 401, 0, 4840, 5017, 1, 0, 0, 0, 4841, 4842, 5, 138, 0, 0, 4842, 4843, 5, 278, 0, 0, 4843, 4844, 7, 32, 0, 0, 4844, 4845, 3, 310, 155, 0, 4845, 4846, 3, 164, 82, 0, 4846, 4847, 5, 309, 0, 0, 4847, 4848, 5, 94, 0, 0, 4848, 4849, 3, 816, 408, 0, 4849, 5017, 1, 0, 0, 0, 4850, 4851, 5, 138, 0, 0, 4851, 4852, 5, 296, 0, 0, 4852, 4853, 3, 372, 186, 0, 4853, 4854, 5, 309, 0, 0, 4854, 4855, 5, 94, 0, 0, 4855, 4856, 3, 794, 397, 0, 4856, 5017, 1, 0, 0, 0, 4857, 4858, 5, 138, 0, 0, 4858, 4859, 5, 323, 0, 0, 4859, 4860, 3, 786, 393, 0, 4860, 4861, 5, 309, 0, 0, 4861, 4862, 5, 94, 0, 0, 4862, 4863, 3, 32, 16, 0, 4863, 5017, 1, 0, 0, 0, 4864, 4865, 5, 138, 0, 0, 4865, 4867, 7, 63, 0, 0, 4866, 4868, 3, 416, 208, 0, 4867, 4866, 1, 0, 0, 0, 4867, 4868, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 4870, 3, 776, 388, 0, 4870, 4871, 5, 309, 0, 0, 4871, 4872, 5, 94, 0, 0, 4872, 4873, 3, 816, 408, 0, 4873, 5017, 1, 0, 0, 0, 4874, 4876, 5, 138, 0, 0, 4875, 4877, 5, 259, 0, 0, 4876, 4875, 1, 0, 0, 0, 4876, 4877, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 4880, 5, 376, 0, 0, 4879, 4881, 3, 416, 208, 0, 4880, 4879, 1, 0, 0, 0, 4880, 4881, 1, 0, 0, 0, 4881, 4882, 1, 0, 0, 0, 4882, 4883, 3, 774, 387, 0, 4883, 4884, 5, 309, 0, 0, 4884, 4885, 5, 94, 0, 0, 4885, 4886, 3, 772, 386, 0, 4886, 5017, 1, 0, 0, 0, 4887, 4889, 5, 138, 0, 0, 4888, 4890, 5, 63, 0, 0, 4889, 4888, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4893, 5, 92, 0, 0, 4892, 4894, 3, 416, 208, 0, 4893, 4892, 1, 0, 0, 0, 4893, 4894, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4896, 3, 618, 309, 0, 4896, 4897, 5, 309, 0, 0, 4897, 4898, 5, 94, 0, 0, 4898, 4899, 3, 768, 384, 0, 4899, 5017, 1, 0, 0, 0, 4900, 4925, 5, 138, 0, 0, 4901, 4903, 5, 63, 0, 0, 4902, 4901, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 1, 0, 0, 0, 4904, 4906, 5, 92, 0, 0, 4905, 4907, 3, 416, 208, 0, 4906, 4905, 1, 0, 0, 0, 4906, 4907, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4909, 3, 618, 309, 0, 4909, 4911, 5, 309, 0, 0, 4910, 4912, 5, 44, 0, 0, 4911, 4910, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4926, 1, 0, 0, 0, 4913, 4915, 5, 259, 0, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4918, 5, 376, 0, 0, 4917, 4919, 3, 416, 208, 0, 4918, 4917, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4921, 3, 774, 387, 0, 4921, 4923, 5, 309, 0, 0, 4922, 4924, 5, 44, 0, 0, 4923, 4922, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4926, 1, 0, 0, 0, 4925, 4902, 1, 0, 0, 0, 4925, 4914, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 3, 796, 398, 0, 4928, 4929, 5, 94, 0, 0, 4929, 4930, 3, 800, 400, 0, 4930, 5017, 1, 0, 0, 0, 4931, 4939, 5, 138, 0, 0, 4932, 4934, 5, 92, 0, 0, 4933, 4935, 3, 416, 208, 0, 4934, 4933, 1, 0, 0, 0, 4934, 4935, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4940, 3, 618, 309, 0, 4937, 4938, 5, 189, 0, 0, 4938, 4940, 3, 310, 155, 0, 4939, 4932, 1, 0, 0, 0, 4939, 4937, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 4942, 5, 309, 0, 0, 4942, 4943, 5, 45, 0, 0, 4943, 4944, 3, 816, 408, 0, 4944, 4945, 5, 94, 0, 0, 4945, 4946, 3, 816, 408, 0, 4946, 5017, 1, 0, 0, 0, 4947, 4954, 5, 138, 0, 0, 4948, 4950, 5, 445, 0, 0, 4949, 4951, 3, 416, 208, 0, 4950, 4949, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4955, 1, 0, 0, 0, 4952, 4955, 5, 321, 0, 0, 4953, 4955, 5, 357, 0, 0, 4954, 4948, 1, 0, 0, 0, 4954, 4952, 1, 0, 0, 0, 4954, 4953, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4957, 3, 816, 408, 0, 4957, 4958, 5, 80, 0, 0, 4958, 4959, 3, 776, 388, 0, 4959, 4960, 5, 309, 0, 0, 4960, 4961, 5, 94, 0, 0, 4961, 4962, 3, 816, 408, 0, 4962, 5017, 1, 0, 0, 0, 4963, 4976, 5, 138, 0, 0, 4964, 4965, 5, 63, 0, 0, 4965, 4966, 5, 174, 0, 0, 4966, 4977, 5, 381, 0, 0, 4967, 4969, 5, 295, 0, 0, 4968, 4967, 1, 0, 0, 0, 4968, 4969, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4977, 5, 247, 0, 0, 4971, 4977, 5, 452, 0, 0, 4972, 4977, 5, 331, 0, 0, 4973, 4977, 5, 451, 0, 0, 4974, 4975, 5, 198, 0, 0, 4975, 4977, 5, 357, 0, 0, 4976, 4964, 1, 0, 0, 0, 4976, 4968, 1, 0, 0, 0, 4976, 4971, 1, 0, 0, 0, 4976, 4972, 1, 0, 0, 0, 4976, 4973, 1, 0, 0, 0, 4976, 4974, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4979, 3, 816, 408, 0, 4979, 4980, 5, 309, 0, 0, 4980, 4981, 5, 94, 0, 0, 4981, 4982, 3, 816, 408, 0, 4982, 5017, 1, 0, 0, 0, 4983, 4984, 5, 138, 0, 0, 4984, 4985, 7, 46, 0, 0, 4985, 4986, 3, 812, 406, 0, 4986, 4987, 5, 309, 0, 0, 4987, 4988, 5, 94, 0, 0, 4988, 4989, 3, 812, 406, 0, 4989, 5017, 1, 0, 0, 0, 4990, 4991, 5, 138, 0, 0, 4991, 4992, 3, 170, 85, 0, 4992, 4993, 5, 309, 0, 0, 4993, 4994, 5, 94, 0, 0, 4994, 4995, 3, 766, 383, 0, 4995, 5017, 1, 0, 0, 0, 4996, 4997, 5, 138, 0, 0, 4997, 4998, 5, 355, 0, 0, 4998, 4999, 5, 325, 0, 0, 4999, 5000, 7, 42, 0, 0, 5000, 5001, 3, 310, 155, 0, 5001, 5002, 5, 309, 0, 0, 5002, 5003, 5, 94, 0, 0, 5003, 5004, 3, 816, 408, 0, 5004, 5017, 1, 0, 0, 0, 5005, 5006, 5, 138, 0, 0, 5006, 5007, 5, 360, 0, 0, 5007, 5008, 3, 310, 155, 0, 5008, 5009, 5, 309, 0, 0, 5009, 5010, 5, 143, 0, 0, 5010, 5011, 3, 816, 408, 0, 5011, 5012, 5, 94, 0, 0, 5012, 5014, 3, 816, 408, 0, 5013, 5015, 3, 88, 44, 0, 5014, 5013, 1, 0, 0, 0, 5014, 5015, 1, 0, 0, 0, 5015, 5017, 1, 0, 0, 0, 5016, 4809, 1, 0, 0, 0, 5016, 4820, 1, 0, 0, 0, 5016, 4827, 1, 0, 0, 0, 5016, 4834, 1, 0, 0, 0, 5016, 4841, 1, 0, 0, 0, 5016, 4850, 1, 0, 0, 0, 5016, 4857, 1, 0, 0, 0, 5016, 4864, 1, 0, 0, 0, 5016, 4874, 1, 0, 0, 0, 5016, 4887, 1, 0, 0, 0, 5016, 4900, 1, 0, 0, 0, 5016, 4931, 1, 0, 0, 0, 5016, 4947, 1, 0, 0, 0, 5016, 4963, 1, 0, 0, 0, 5016, 4983, 1, 0, 0, 0, 5016, 4990, 1, 0, 0, 0, 5016, 4996, 1, 0, 0, 0, 5016, 5005, 1, 0, 0, 0, 5017, 427, 1, 0, 0, 0, 5018, 5035, 5, 138, 0, 0, 5019, 5020, 5, 211, 0, 0, 5020, 5036, 3, 376, 188, 0, 5021, 5022, 5, 296, 0, 0, 5022, 5036, 3, 372, 186, 0, 5023, 5024, 5, 442, 0, 0, 5024, 5036, 3, 368, 184, 0, 5025, 5026, 5, 357, 0, 0, 5026, 5027, 3, 816, 408, 0, 5027, 5028, 5, 80, 0, 0, 5028, 5029, 3, 776, 388, 0, 5029, 5036, 1, 0, 0, 0, 5030, 5031, 5, 259, 0, 0, 5031, 5032, 5, 376, 0, 0, 5032, 5036, 3, 774, 387, 0, 5033, 5034, 5, 226, 0, 0, 5034, 5036, 3, 776, 388, 0, 5035, 5019, 1, 0, 0, 0, 5035, 5021, 1, 0, 0, 0, 5035, 5023, 1, 0, 0, 0, 5035, 5025, 1, 0, 0, 0, 5035, 5030, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5036, 5038, 1, 0, 0, 0, 5037, 5039, 5, 269, 0, 0, 5038, 5037, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5040, 1, 0, 0, 0, 5040, 5041, 5, 462, 0, 0, 5041, 5042, 5, 80, 0, 0, 5042, 5043, 5, 204, 0, 0, 5043, 5044, 3, 816, 408, 0, 5044, 429, 1, 0, 0, 0, 5045, 5084, 5, 138, 0, 0, 5046, 5047, 5, 136, 0, 0, 5047, 5085, 3, 388, 194, 0, 5048, 5049, 5, 204, 0, 0, 5049, 5085, 3, 816, 408, 0, 5050, 5051, 5, 211, 0, 0, 5051, 5085, 3, 376, 188, 0, 5052, 5053, 5, 278, 0, 0, 5053, 5085, 3, 410, 205, 0, 5054, 5055, 5, 278, 0, 0, 5055, 5056, 7, 32, 0, 0, 5056, 5057, 3, 310, 155, 0, 5057, 5058, 3, 164, 82, 0, 5058, 5085, 1, 0, 0, 0, 5059, 5060, 5, 296, 0, 0, 5060, 5085, 3, 372, 186, 0, 5061, 5062, 5, 442, 0, 0, 5062, 5085, 3, 368, 184, 0, 5063, 5065, 5, 328, 0, 0, 5064, 5066, 3, 416, 208, 0, 5065, 5064, 1, 0, 0, 0, 5065, 5066, 1, 0, 0, 0, 5066, 5067, 1, 0, 0, 0, 5067, 5085, 3, 776, 388, 0, 5068, 5070, 5, 259, 0, 0, 5069, 5068, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5071, 1, 0, 0, 0, 5071, 5073, 5, 376, 0, 0, 5072, 5074, 3, 416, 208, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5085, 3, 774, 387, 0, 5076, 5078, 5, 63, 0, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 5, 92, 0, 0, 5080, 5082, 3, 416, 208, 0, 5081, 5080, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5085, 3, 618, 309, 0, 5084, 5046, 1, 0, 0, 0, 5084, 5048, 1, 0, 0, 0, 5084, 5050, 1, 0, 0, 0, 5084, 5052, 1, 0, 0, 0, 5084, 5054, 1, 0, 0, 0, 5084, 5059, 1, 0, 0, 0, 5084, 5061, 1, 0, 0, 0, 5084, 5063, 1, 0, 0, 0, 5084, 5069, 1, 0, 0, 0, 5084, 5077, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 5087, 5, 333, 0, 0, 5087, 5088, 5, 323, 0, 0, 5088, 5089, 3, 786, 393, 0, 5089, 5107, 1, 0, 0, 0, 5090, 5099, 5, 138, 0, 0, 5091, 5092, 5, 355, 0, 0, 5092, 5093, 5, 325, 0, 0, 5093, 5100, 7, 42, 0, 0, 5094, 5100, 5, 108, 0, 0, 5095, 5100, 5, 168, 0, 0, 5096, 5100, 5, 189, 0, 0, 5097, 5100, 5, 342, 0, 0, 5098, 5100, 5, 360, 0, 0, 5099, 5091, 1, 0, 0, 0, 5099, 5094, 1, 0, 0, 0, 5099, 5095, 1, 0, 0, 0, 5099, 5096, 1, 0, 0, 0, 5099, 5097, 1, 0, 0, 0, 5099, 5098, 1, 0, 0, 0, 5100, 5101, 1, 0, 0, 0, 5101, 5102, 3, 310, 155, 0, 5102, 5103, 5, 333, 0, 0, 5103, 5104, 5, 323, 0, 0, 5104, 5105, 3, 786, 393, 0, 5105, 5107, 1, 0, 0, 0, 5106, 5045, 1, 0, 0, 0, 5106, 5090, 1, 0, 0, 0, 5107, 431, 1, 0, 0, 0, 5108, 5109, 5, 138, 0, 0, 5109, 5110, 5, 278, 0, 0, 5110, 5111, 3, 410, 205, 0, 5111, 5112, 5, 333, 0, 0, 5112, 5113, 3, 434, 217, 0, 5113, 433, 1, 0, 0, 0, 5114, 5115, 5, 2, 0, 0, 5115, 5120, 3, 436, 218, 0, 5116, 5117, 5, 6, 0, 0, 5117, 5119, 3, 436, 218, 0, 5118, 5116, 1, 0, 0, 0, 5119, 5122, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5123, 1, 0, 0, 0, 5122, 5120, 1, 0, 0, 0, 5123, 5124, 5, 3, 0, 0, 5124, 435, 1, 0, 0, 0, 5125, 5126, 3, 822, 411, 0, 5126, 5133, 5, 10, 0, 0, 5127, 5134, 5, 407, 0, 0, 5128, 5134, 3, 382, 191, 0, 5129, 5134, 3, 832, 416, 0, 5130, 5134, 3, 722, 361, 0, 5131, 5134, 3, 196, 98, 0, 5132, 5134, 3, 806, 403, 0, 5133, 5127, 1, 0, 0, 0, 5133, 5128, 1, 0, 0, 0, 5133, 5129, 1, 0, 0, 0, 5133, 5130, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5133, 5132, 1, 0, 0, 0, 5134, 437, 1, 0, 0, 0, 5135, 5136, 5, 138, 0, 0, 5136, 5137, 5, 360, 0, 0, 5137, 5138, 3, 310, 155, 0, 5138, 5139, 5, 333, 0, 0, 5139, 5140, 3, 434, 217, 0, 5140, 439, 1, 0, 0, 0, 5141, 5142, 5, 138, 0, 0, 5142, 5143, 5, 278, 0, 0, 5143, 5144, 7, 32, 0, 0, 5144, 5145, 3, 310, 155, 0, 5145, 5146, 3, 164, 82, 0, 5146, 5147, 5, 282, 0, 0, 5147, 5148, 5, 94, 0, 0, 5148, 5149, 3, 812, 406, 0, 5149, 5216, 1, 0, 0, 0, 5150, 5177, 5, 138, 0, 0, 5151, 5152, 5, 136, 0, 0, 5152, 5178, 3, 388, 194, 0, 5153, 5154, 5, 175, 0, 0, 5154, 5178, 3, 784, 392, 0, 5155, 5156, 5, 211, 0, 0, 5156, 5178, 3, 376, 188, 0, 5157, 5159, 5, 295, 0, 0, 5158, 5157, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5160, 1, 0, 0, 0, 5160, 5161, 5, 247, 0, 0, 5161, 5178, 3, 816, 408, 0, 5162, 5163, 5, 248, 0, 0, 5163, 5164, 5, 274, 0, 0, 5164, 5178, 3, 196, 98, 0, 5165, 5166, 5, 248, 0, 0, 5166, 5167, 5, 274, 0, 0, 5167, 5178, 3, 196, 98, 0, 5168, 5169, 5, 278, 0, 0, 5169, 5178, 3, 410, 205, 0, 5170, 5171, 5, 296, 0, 0, 5171, 5178, 3, 372, 186, 0, 5172, 5173, 5, 442, 0, 0, 5173, 5178, 3, 368, 184, 0, 5174, 5175, 5, 323, 0, 0, 5175, 5178, 3, 786, 393, 0, 5176, 5178, 3, 170, 85, 0, 5177, 5151, 1, 0, 0, 0, 5177, 5153, 1, 0, 0, 0, 5177, 5155, 1, 0, 0, 0, 5177, 5158, 1, 0, 0, 0, 5177, 5162, 1, 0, 0, 0, 5177, 5165, 1, 0, 0, 0, 5177, 5168, 1, 0, 0, 0, 5177, 5170, 1, 0, 0, 0, 5177, 5172, 1, 0, 0, 0, 5177, 5174, 1, 0, 0, 0, 5177, 5176, 1, 0, 0, 0, 5178, 5179, 1, 0, 0, 0, 5179, 5180, 5, 282, 0, 0, 5180, 5181, 5, 94, 0, 0, 5181, 5182, 3, 812, 406, 0, 5182, 5216, 1, 0, 0, 0, 5183, 5192, 5, 138, 0, 0, 5184, 5185, 5, 355, 0, 0, 5185, 5186, 5, 325, 0, 0, 5186, 5193, 7, 64, 0, 0, 5187, 5193, 5, 108, 0, 0, 5188, 5193, 5, 168, 0, 0, 5189, 5193, 5, 189, 0, 0, 5190, 5193, 5, 360, 0, 0, 5191, 5193, 5, 342, 0, 0, 5192, 5184, 1, 0, 0, 0, 5192, 5187, 1, 0, 0, 0, 5192, 5188, 1, 0, 0, 0, 5192, 5189, 1, 0, 0, 0, 5192, 5190, 1, 0, 0, 0, 5192, 5191, 1, 0, 0, 0, 5193, 5194, 1, 0, 0, 0, 5194, 5195, 3, 310, 155, 0, 5195, 5196, 5, 282, 0, 0, 5196, 5197, 5, 94, 0, 0, 5197, 5198, 3, 812, 406, 0, 5198, 5216, 1, 0, 0, 0, 5199, 5208, 5, 138, 0, 0, 5200, 5209, 5, 331, 0, 0, 5201, 5202, 5, 63, 0, 0, 5202, 5203, 5, 174, 0, 0, 5203, 5209, 5, 381, 0, 0, 5204, 5205, 5, 198, 0, 0, 5205, 5209, 5, 357, 0, 0, 5206, 5209, 5, 452, 0, 0, 5207, 5209, 5, 451, 0, 0, 5208, 5200, 1, 0, 0, 0, 5208, 5201, 1, 0, 0, 0, 5208, 5204, 1, 0, 0, 0, 5208, 5206, 1, 0, 0, 0, 5208, 5207, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5211, 3, 816, 408, 0, 5211, 5212, 5, 282, 0, 0, 5212, 5213, 5, 94, 0, 0, 5213, 5214, 3, 812, 406, 0, 5214, 5216, 1, 0, 0, 0, 5215, 5141, 1, 0, 0, 0, 5215, 5150, 1, 0, 0, 0, 5215, 5183, 1, 0, 0, 0, 5215, 5199, 1, 0, 0, 0, 5216, 441, 1, 0, 0, 0, 5217, 5218, 5, 46, 0, 0, 5218, 5219, 5, 452, 0, 0, 5219, 5226, 3, 816, 408, 0, 5220, 5221, 5, 62, 0, 0, 5221, 5222, 5, 92, 0, 0, 5222, 5227, 3, 622, 311, 0, 5223, 5224, 5, 62, 0, 0, 5224, 5225, 5, 30, 0, 0, 5225, 5227, 5, 350, 0, 0, 5226, 5220, 1, 0, 0, 0, 5226, 5223, 1, 0, 0, 0, 5226, 5227, 1, 0, 0, 0, 5227, 5229, 1, 0, 0, 0, 5228, 5230, 3, 394, 197, 0, 5229, 5228, 1, 0, 0, 0, 5229, 5230, 1, 0, 0, 0, 5230, 443, 1, 0, 0, 0, 5231, 5232, 5, 138, 0, 0, 5232, 5233, 5, 452, 0, 0, 5233, 5251, 3, 816, 408, 0, 5234, 5235, 5, 282, 0, 0, 5235, 5236, 5, 94, 0, 0, 5236, 5252, 3, 812, 406, 0, 5237, 5238, 5, 333, 0, 0, 5238, 5252, 3, 278, 139, 0, 5239, 5240, 5, 309, 0, 0, 5240, 5241, 5, 94, 0, 0, 5241, 5252, 3, 816, 408, 0, 5242, 5243, 7, 35, 0, 0, 5243, 5248, 3, 620, 310, 0, 5244, 5245, 5, 6, 0, 0, 5245, 5247, 3, 620, 310, 0, 5246, 5244, 1, 0, 0, 0, 5247, 5250, 1, 0, 0, 0, 5248, 5246, 1, 0, 0, 0, 5248, 5249, 1, 0, 0, 0, 5249, 5252, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5251, 5234, 1, 0, 0, 0, 5251, 5237, 1, 0, 0, 0, 5251, 5239, 1, 0, 0, 0, 5251, 5242, 1, 0, 0, 0, 5252, 445, 1, 0, 0, 0, 5253, 5254, 5, 46, 0, 0, 5254, 5255, 5, 451, 0, 0, 5255, 5256, 3, 816, 408, 0, 5256, 5257, 5, 164, 0, 0, 5257, 5258, 3, 806, 403, 0, 5258, 5259, 5, 452, 0, 0, 5259, 5264, 3, 822, 411, 0, 5260, 5261, 5, 6, 0, 0, 5261, 5263, 3, 822, 411, 0, 5262, 5260, 1, 0, 0, 0, 5263, 5266, 1, 0, 0, 0, 5264, 5262, 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 5268, 1, 0, 0, 0, 5266, 5264, 1, 0, 0, 0, 5267, 5269, 3, 394, 197, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 447, 1, 0, 0, 0, 5270, 5271, 5, 138, 0, 0, 5271, 5272, 5, 451, 0, 0, 5272, 5273, 3, 816, 408, 0, 5273, 5274, 5, 333, 0, 0, 5274, 5275, 3, 278, 139, 0, 5275, 5327, 1, 0, 0, 0, 5276, 5277, 5, 138, 0, 0, 5277, 5278, 5, 451, 0, 0, 5278, 5279, 3, 816, 408, 0, 5279, 5280, 5, 164, 0, 0, 5280, 5281, 3, 806, 403, 0, 5281, 5327, 1, 0, 0, 0, 5282, 5283, 5, 138, 0, 0, 5283, 5284, 5, 451, 0, 0, 5284, 5285, 3, 816, 408, 0, 5285, 5286, 5, 305, 0, 0, 5286, 5288, 5, 452, 0, 0, 5287, 5289, 3, 394, 197, 0, 5288, 5287, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5327, 1, 0, 0, 0, 5290, 5291, 5, 138, 0, 0, 5291, 5292, 5, 451, 0, 0, 5292, 5293, 3, 816, 408, 0, 5293, 5294, 7, 35, 0, 0, 5294, 5295, 5, 452, 0, 0, 5295, 5300, 3, 822, 411, 0, 5296, 5297, 5, 6, 0, 0, 5297, 5299, 3, 822, 411, 0, 5298, 5296, 1, 0, 0, 0, 5299, 5302, 1, 0, 0, 0, 5300, 5298, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5304, 1, 0, 0, 0, 5302, 5300, 1, 0, 0, 0, 5303, 5305, 3, 394, 197, 0, 5304, 5303, 1, 0, 0, 0, 5304, 5305, 1, 0, 0, 0, 5305, 5327, 1, 0, 0, 0, 5306, 5307, 5, 138, 0, 0, 5307, 5308, 5, 451, 0, 0, 5308, 5309, 3, 816, 408, 0, 5309, 5310, 7, 65, 0, 0, 5310, 5327, 1, 0, 0, 0, 5311, 5312, 5, 138, 0, 0, 5312, 5313, 5, 451, 0, 0, 5313, 5314, 3, 816, 408, 0, 5314, 5315, 5, 465, 0, 0, 5315, 5316, 5, 2, 0, 0, 5316, 5317, 3, 284, 142, 0, 5317, 5318, 5, 3, 0, 0, 5318, 5327, 1, 0, 0, 0, 5319, 5320, 5, 138, 0, 0, 5320, 5321, 5, 451, 0, 0, 5321, 5322, 3, 816, 408, 0, 5322, 5323, 5, 282, 0, 0, 5323, 5324, 5, 94, 0, 0, 5324, 5325, 3, 812, 406, 0, 5325, 5327, 1, 0, 0, 0, 5326, 5270, 1, 0, 0, 0, 5326, 5276, 1, 0, 0, 0, 5326, 5282, 1, 0, 0, 0, 5326, 5290, 1, 0, 0, 0, 5326, 5306, 1, 0, 0, 0, 5326, 5311, 1, 0, 0, 0, 5326, 5319, 1, 0, 0, 0, 5327, 449, 1, 0, 0, 0, 5328, 5330, 5, 46, 0, 0, 5329, 5331, 3, 360, 180, 0, 5330, 5329, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 5332, 1, 0, 0, 0, 5332, 5333, 5, 321, 0, 0, 5333, 5334, 3, 816, 408, 0, 5334, 5335, 5, 36, 0, 0, 5335, 5336, 5, 80, 0, 0, 5336, 5337, 7, 66, 0, 0, 5337, 5338, 5, 94, 0, 0, 5338, 5340, 3, 776, 388, 0, 5339, 5341, 3, 632, 316, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5344, 5, 57, 0, 0, 5343, 5345, 7, 67, 0, 0, 5344, 5343, 1, 0, 0, 0, 5344, 5345, 1, 0, 0, 0, 5345, 5362, 1, 0, 0, 0, 5346, 5363, 5, 270, 0, 0, 5347, 5363, 3, 452, 226, 0, 5348, 5350, 5, 2, 0, 0, 5349, 5351, 3, 452, 226, 0, 5350, 5349, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 5358, 1, 0, 0, 0, 5352, 5354, 5, 7, 0, 0, 5353, 5355, 3, 452, 226, 0, 5354, 5353, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5357, 1, 0, 0, 0, 5356, 5352, 1, 0, 0, 0, 5357, 5360, 1, 0, 0, 0, 5358, 5356, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5361, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5363, 5, 3, 0, 0, 5362, 5346, 1, 0, 0, 0, 5362, 5347, 1, 0, 0, 0, 5362, 5348, 1, 0, 0, 0, 5363, 451, 1, 0, 0, 0, 5364, 5370, 3, 554, 277, 0, 5365, 5370, 3, 532, 266, 0, 5366, 5370, 3, 546, 273, 0, 5367, 5370, 3, 542, 271, 0, 5368, 5370, 3, 454, 227, 0, 5369, 5364, 1, 0, 0, 0, 5369, 5365, 1, 0, 0, 0, 5369, 5366, 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5368, 1, 0, 0, 0, 5370, 453, 1, 0, 0, 0, 5371, 5372, 5, 271, 0, 0, 5372, 5374, 3, 816, 408, 0, 5373, 5375, 3, 456, 228, 0, 5374, 5373, 1, 0, 0, 0, 5374, 5375, 1, 0, 0, 0, 5375, 455, 1, 0, 0, 0, 5376, 5377, 5, 6, 0, 0, 5377, 5378, 3, 806, 403, 0, 5378, 457, 1, 0, 0, 0, 5379, 5380, 5, 252, 0, 0, 5380, 5381, 3, 816, 408, 0, 5381, 459, 1, 0, 0, 0, 5382, 5385, 5, 366, 0, 0, 5383, 5386, 3, 816, 408, 0, 5384, 5386, 5, 9, 0, 0, 5385, 5383, 1, 0, 0, 0, 5385, 5384, 1, 0, 0, 0, 5386, 461, 1, 0, 0, 0, 5387, 5389, 5, 146, 0, 0, 5388, 5390, 3, 464, 232, 0, 5389, 5388, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 5392, 1, 0, 0, 0, 5391, 5393, 3, 468, 234, 0, 5392, 5391, 1, 0, 0, 0, 5392, 5393, 1, 0, 0, 0, 5393, 5433, 1, 0, 0, 0, 5394, 5395, 5, 340, 0, 0, 5395, 5397, 5, 356, 0, 0, 5396, 5398, 3, 468, 234, 0, 5397, 5396, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5433, 1, 0, 0, 0, 5399, 5400, 5, 322, 0, 0, 5400, 5433, 3, 816, 408, 0, 5401, 5403, 5, 308, 0, 0, 5402, 5404, 5, 322, 0, 0, 5403, 5402, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5433, 3, 816, 408, 0, 5406, 5407, 5, 290, 0, 0, 5407, 5408, 5, 356, 0, 0, 5408, 5433, 3, 806, 403, 0, 5409, 5410, 7, 68, 0, 0, 5410, 5411, 5, 291, 0, 0, 5411, 5433, 3, 806, 403, 0, 5412, 5414, 7, 69, 0, 0, 5413, 5415, 3, 464, 232, 0, 5414, 5413, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5421, 1, 0, 0, 0, 5416, 5418, 5, 33, 0, 0, 5417, 5419, 5, 269, 0, 0, 5418, 5417, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 5422, 5, 153, 0, 0, 5421, 5416, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5433, 1, 0, 0, 0, 5423, 5425, 5, 319, 0, 0, 5424, 5426, 3, 464, 232, 0, 5425, 5424, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5429, 5, 94, 0, 0, 5428, 5430, 5, 322, 0, 0, 5429, 5428, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5433, 3, 816, 408, 0, 5432, 5387, 1, 0, 0, 0, 5432, 5394, 1, 0, 0, 0, 5432, 5399, 1, 0, 0, 0, 5432, 5401, 1, 0, 0, 0, 5432, 5406, 1, 0, 0, 0, 5432, 5409, 1, 0, 0, 0, 5432, 5412, 1, 0, 0, 0, 5432, 5423, 1, 0, 0, 0, 5433, 463, 1, 0, 0, 0, 5434, 5435, 7, 70, 0, 0, 5435, 465, 1, 0, 0, 0, 5436, 5437, 5, 244, 0, 0, 5437, 5438, 5, 251, 0, 0, 5438, 5446, 3, 50, 25, 0, 5439, 5440, 5, 300, 0, 0, 5440, 5446, 7, 71, 0, 0, 5441, 5443, 5, 77, 0, 0, 5442, 5441, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5446, 5, 54, 0, 0, 5445, 5436, 1, 0, 0, 0, 5445, 5439, 1, 0, 0, 0, 5445, 5442, 1, 0, 0, 0, 5446, 467, 1, 0, 0, 0, 5447, 5454, 3, 466, 233, 0, 5448, 5450, 5, 6, 0, 0, 5449, 5448, 1, 0, 0, 0, 5449, 5450, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5453, 3, 466, 233, 0, 5452, 5449, 1, 0, 0, 0, 5453, 5456, 1, 0, 0, 0, 5454, 5452, 1, 0, 0, 0, 5454, 5455, 1, 0, 0, 0, 5455, 469, 1, 0, 0, 0, 5456, 5454, 1, 0, 0, 0, 5457, 5460, 5, 46, 0, 0, 5458, 5459, 5, 82, 0, 0, 5459, 5461, 5, 311, 0, 0, 5460, 5458, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5463, 1, 0, 0, 0, 5462, 5464, 3, 116, 58, 0, 5463, 5462, 1, 0, 0, 0, 5463, 5464, 1, 0, 0, 0, 5464, 5480, 1, 0, 0, 0, 5465, 5466, 5, 376, 0, 0, 5466, 5468, 3, 772, 386, 0, 5467, 5469, 3, 140, 70, 0, 5468, 5467, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 1, 0, 0, 0, 5470, 5472, 3, 94, 47, 0, 5471, 5470, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5481, 1, 0, 0, 0, 5473, 5474, 5, 303, 0, 0, 5474, 5475, 5, 376, 0, 0, 5475, 5476, 3, 772, 386, 0, 5476, 5478, 3, 138, 69, 0, 5477, 5479, 3, 94, 47, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5481, 1, 0, 0, 0, 5480, 5465, 1, 0, 0, 0, 5480, 5473, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5483, 5, 36, 0, 0, 5483, 5490, 3, 554, 277, 0, 5484, 5486, 5, 105, 0, 0, 5485, 5487, 7, 72, 0, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5489, 5, 42, 0, 0, 5489, 5491, 5, 279, 0, 0, 5490, 5484, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 471, 1, 0, 0, 0, 5492, 5493, 5, 253, 0, 0, 5493, 5494, 3, 806, 403, 0, 5494, 473, 1, 0, 0, 0, 5495, 5496, 5, 46, 0, 0, 5496, 5497, 5, 175, 0, 0, 5497, 5499, 3, 782, 391, 0, 5498, 5500, 5, 105, 0, 0, 5499, 5498, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5506, 1, 0, 0, 0, 5501, 5503, 3, 476, 238, 0, 5502, 5501, 1, 0, 0, 0, 5503, 5504, 1, 0, 0, 0, 5504, 5502, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5507, 1, 0, 0, 0, 5506, 5502, 1, 0, 0, 0, 5506, 5507, 1, 0, 0, 0, 5507, 475, 1, 0, 0, 0, 5508, 5509, 5, 164, 0, 0, 5509, 5517, 5, 74, 0, 0, 5510, 5517, 5, 194, 0, 0, 5511, 5517, 5, 255, 0, 0, 5512, 5517, 5, 282, 0, 0, 5513, 5517, 5, 351, 0, 0, 5514, 5517, 5, 353, 0, 0, 5515, 5517, 3, 824, 412, 0, 5516, 5508, 1, 0, 0, 0, 5516, 5510, 1, 0, 0, 0, 5516, 5511, 1, 0, 0, 0, 5516, 5512, 1, 0, 0, 0, 5516, 5513, 1, 0, 0, 0, 5516, 5514, 1, 0, 0, 0, 5516, 5515, 1, 0, 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5520, 5, 10, 0, 0, 5519, 5518, 1, 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5524, 1, 0, 0, 0, 5521, 5525, 3, 810, 405, 0, 5522, 5525, 3, 54, 27, 0, 5523, 5525, 5, 53, 0, 0, 5524, 5521, 1, 0, 0, 0, 5524, 5522, 1, 0, 0, 0, 5524, 5523, 1, 0, 0, 0, 5525, 477, 1, 0, 0, 0, 5526, 5527, 5, 138, 0, 0, 5527, 5528, 5, 175, 0, 0, 5528, 5544, 3, 784, 392, 0, 5529, 5530, 5, 333, 0, 0, 5530, 5531, 5, 351, 0, 0, 5531, 5533, 3, 766, 383, 0, 5532, 5529, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5545, 1, 0, 0, 0, 5534, 5536, 5, 105, 0, 0, 5535, 5534, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5538, 1, 0, 0, 0, 5537, 5539, 3, 476, 238, 0, 5538, 5537, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5538, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5543, 1, 0, 0, 0, 5542, 5535, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5545, 1, 0, 0, 0, 5544, 5532, 1, 0, 0, 0, 5544, 5542, 1, 0, 0, 0, 5545, 479, 1, 0, 0, 0, 5546, 5547, 5, 138, 0, 0, 5547, 5548, 5, 175, 0, 0, 5548, 5550, 3, 784, 392, 0, 5549, 5551, 3, 64, 32, 0, 5550, 5549, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 481, 1, 0, 0, 0, 5552, 5553, 5, 138, 0, 0, 5553, 5554, 5, 108, 0, 0, 5554, 5555, 3, 310, 155, 0, 5555, 5556, 5, 305, 0, 0, 5556, 5557, 5, 375, 0, 0, 5557, 483, 1, 0, 0, 0, 5558, 5559, 5, 138, 0, 0, 5559, 5560, 5, 349, 0, 0, 5560, 5561, 7, 16, 0, 0, 5561, 5562, 3, 40, 20, 0, 5562, 485, 1, 0, 0, 0, 5563, 5564, 5, 46, 0, 0, 5564, 5565, 5, 189, 0, 0, 5565, 5567, 3, 310, 155, 0, 5566, 5568, 5, 36, 0, 0, 5567, 5566, 1, 0, 0, 0, 5567, 5568, 1, 0, 0, 0, 5568, 5569, 1, 0, 0, 0, 5569, 5573, 3, 646, 323, 0, 5570, 5572, 3, 128, 64, 0, 5571, 5570, 1, 0, 0, 0, 5572, 5575, 1, 0, 0, 0, 5573, 5571, 1, 0, 0, 0, 5573, 5574, 1, 0, 0, 0, 5574, 487, 1, 0, 0, 0, 5575, 5573, 1, 0, 0, 0, 5576, 5577, 5, 138, 0, 0, 5577, 5578, 5, 189, 0, 0, 5578, 5601, 3, 310, 155, 0, 5579, 5602, 3, 86, 43, 0, 5580, 5581, 7, 15, 0, 0, 5581, 5582, 5, 77, 0, 0, 5582, 5602, 5, 78, 0, 0, 5583, 5586, 5, 133, 0, 0, 5584, 5585, 5, 45, 0, 0, 5585, 5587, 3, 816, 408, 0, 5586, 5584, 1, 0, 0, 0, 5586, 5587, 1, 0, 0, 0, 5587, 5588, 1, 0, 0, 0, 5588, 5602, 3, 136, 68, 0, 5589, 5590, 5, 191, 0, 0, 5590, 5592, 5, 45, 0, 0, 5591, 5593, 3, 416, 208, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5596, 3, 816, 408, 0, 5595, 5597, 3, 88, 44, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5602, 1, 0, 0, 0, 5598, 5599, 5, 372, 0, 0, 5599, 5600, 5, 45, 0, 0, 5600, 5602, 3, 816, 408, 0, 5601, 5579, 1, 0, 0, 0, 5601, 5580, 1, 0, 0, 0, 5601, 5583, 1, 0, 0, 0, 5601, 5589, 1, 0, 0, 0, 5601, 5598, 1, 0, 0, 0, 5602, 489, 1, 0, 0, 0, 5603, 5604, 5, 138, 0, 0, 5604, 5605, 5, 355, 0, 0, 5605, 5606, 5, 325, 0, 0, 5606, 5607, 5, 185, 0, 0, 5607, 5608, 3, 310, 155, 0, 5608, 5609, 3, 278, 139, 0, 5609, 491, 1, 0, 0, 0, 5610, 5611, 5, 138, 0, 0, 5611, 5612, 5, 355, 0, 0, 5612, 5613, 5, 325, 0, 0, 5613, 5614, 5, 163, 0, 0, 5614, 5615, 3, 310, 155, 0, 5615, 5616, 7, 73, 0, 0, 5616, 5617, 5, 257, 0, 0, 5617, 5618, 5, 62, 0, 0, 5618, 5619, 3, 780, 390, 0, 5619, 5620, 5, 105, 0, 0, 5620, 5621, 3, 308, 154, 0, 5621, 5652, 1, 0, 0, 0, 5622, 5623, 5, 138, 0, 0, 5623, 5624, 5, 355, 0, 0, 5624, 5625, 5, 325, 0, 0, 5625, 5626, 5, 163, 0, 0, 5626, 5627, 3, 310, 155, 0, 5627, 5628, 5, 138, 0, 0, 5628, 5631, 5, 257, 0, 0, 5629, 5630, 5, 62, 0, 0, 5630, 5632, 3, 780, 390, 0, 5631, 5629, 1, 0, 0, 0, 5631, 5632, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5634, 5, 311, 0, 0, 5634, 5635, 3, 310, 155, 0, 5635, 5636, 5, 105, 0, 0, 5636, 5637, 3, 310, 155, 0, 5637, 5652, 1, 0, 0, 0, 5638, 5639, 5, 138, 0, 0, 5639, 5640, 5, 355, 0, 0, 5640, 5641, 5, 325, 0, 0, 5641, 5642, 5, 163, 0, 0, 5642, 5643, 3, 310, 155, 0, 5643, 5644, 5, 191, 0, 0, 5644, 5646, 5, 257, 0, 0, 5645, 5647, 3, 416, 208, 0, 5646, 5645, 1, 0, 0, 0, 5646, 5647, 1, 0, 0, 0, 5647, 5648, 1, 0, 0, 0, 5648, 5649, 5, 62, 0, 0, 5649, 5650, 3, 780, 390, 0, 5650, 5652, 1, 0, 0, 0, 5651, 5610, 1, 0, 0, 0, 5651, 5622, 1, 0, 0, 0, 5651, 5638, 1, 0, 0, 0, 5652, 493, 1, 0, 0, 0, 5653, 5655, 5, 46, 0, 0, 5654, 5656, 5, 53, 0, 0, 5655, 5654, 1, 0, 0, 0, 5655, 5656, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5658, 5, 168, 0, 0, 5658, 5659, 3, 310, 155, 0, 5659, 5660, 5, 62, 0, 0, 5660, 5661, 3, 806, 403, 0, 5661, 5662, 5, 94, 0, 0, 5662, 5663, 3, 806, 403, 0, 5663, 5664, 5, 64, 0, 0, 5664, 5665, 3, 310, 155, 0, 5665, 495, 1, 0, 0, 0, 5666, 5668, 5, 158, 0, 0, 5667, 5669, 3, 508, 254, 0, 5668, 5667, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5674, 1, 0, 0, 0, 5670, 5672, 3, 770, 385, 0, 5671, 5673, 3, 164, 82, 0, 5672, 5671, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5675, 1, 0, 0, 0, 5674, 5670, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5692, 1, 0, 0, 0, 5676, 5677, 5, 158, 0, 0, 5677, 5678, 5, 2, 0, 0, 5678, 5683, 3, 508, 254, 0, 5679, 5680, 5, 6, 0, 0, 5680, 5682, 3, 508, 254, 0, 5681, 5679, 1, 0, 0, 0, 5682, 5685, 1, 0, 0, 0, 5683, 5681, 1, 0, 0, 0, 5683, 5684, 1, 0, 0, 0, 5684, 5686, 1, 0, 0, 0, 5685, 5683, 1, 0, 0, 0, 5686, 5687, 5, 3, 0, 0, 5687, 5689, 3, 770, 385, 0, 5688, 5690, 3, 164, 82, 0, 5689, 5688, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 5692, 1, 0, 0, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5676, 1, 0, 0, 0, 5692, 497, 1, 0, 0, 0, 5693, 5709, 5, 370, 0, 0, 5694, 5696, 5, 113, 0, 0, 5695, 5694, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5698, 1, 0, 0, 0, 5697, 5699, 5, 112, 0, 0, 5698, 5697, 1, 0, 0, 0, 5698, 5699, 1, 0, 0, 0, 5699, 5701, 1, 0, 0, 0, 5700, 5702, 3, 508, 254, 0, 5701, 5700, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5704, 1, 0, 0, 0, 5703, 5705, 3, 502, 251, 0, 5704, 5703, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5710, 1, 0, 0, 0, 5706, 5708, 3, 518, 259, 0, 5707, 5706, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 5710, 1, 0, 0, 0, 5709, 5695, 1, 0, 0, 0, 5709, 5707, 1, 0, 0, 0, 5710, 5712, 1, 0, 0, 0, 5711, 5713, 3, 512, 256, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 499, 1, 0, 0, 0, 5714, 5729, 3, 502, 251, 0, 5715, 5717, 3, 508, 254, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5730, 1, 0, 0, 0, 5718, 5719, 5, 2, 0, 0, 5719, 5724, 3, 506, 253, 0, 5720, 5721, 5, 6, 0, 0, 5721, 5723, 3, 506, 253, 0, 5722, 5720, 1, 0, 0, 0, 5723, 5726, 1, 0, 0, 0, 5724, 5722, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5727, 1, 0, 0, 0, 5726, 5724, 1, 0, 0, 0, 5727, 5728, 5, 3, 0, 0, 5728, 5730, 1, 0, 0, 0, 5729, 5716, 1, 0, 0, 0, 5729, 5718, 1, 0, 0, 0, 5730, 5732, 1, 0, 0, 0, 5731, 5733, 3, 512, 256, 0, 5732, 5731, 1, 0, 0, 0, 5732, 5733, 1, 0, 0, 0, 5733, 501, 1, 0, 0, 0, 5734, 5735, 7, 74, 0, 0, 5735, 503, 1, 0, 0, 0, 5736, 5739, 3, 820, 410, 0, 5737, 5739, 3, 502, 251, 0, 5738, 5736, 1, 0, 0, 0, 5738, 5737, 1, 0, 0, 0, 5739, 5742, 1, 0, 0, 0, 5740, 5743, 3, 54, 27, 0, 5741, 5743, 3, 196, 98, 0, 5742, 5740, 1, 0, 0, 0, 5742, 5741, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 505, 1, 0, 0, 0, 5744, 5746, 7, 75, 0, 0, 5745, 5747, 7, 76, 0, 0, 5746, 5745, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 5754, 1, 0, 0, 0, 5748, 5751, 5, 548, 0, 0, 5749, 5752, 3, 196, 98, 0, 5750, 5752, 3, 806, 403, 0, 5751, 5749, 1, 0, 0, 0, 5751, 5750, 1, 0, 0, 0, 5752, 5754, 1, 0, 0, 0, 5753, 5744, 1, 0, 0, 0, 5753, 5748, 1, 0, 0, 0, 5754, 507, 1, 0, 0, 0, 5755, 5757, 5, 128, 0, 0, 5756, 5758, 7, 76, 0, 0, 5757, 5756, 1, 0, 0, 0, 5757, 5758, 1, 0, 0, 0, 5758, 509, 1, 0, 0, 0, 5759, 5761, 3, 770, 385, 0, 5760, 5762, 3, 138, 69, 0, 5761, 5760, 1, 0, 0, 0, 5761, 5762, 1, 0, 0, 0, 5762, 511, 1, 0, 0, 0, 5763, 5768, 3, 510, 255, 0, 5764, 5765, 5, 6, 0, 0, 5765, 5767, 3, 510, 255, 0, 5766, 5764, 1, 0, 0, 0, 5767, 5770, 1, 0, 0, 0, 5768, 5766, 1, 0, 0, 0, 5768, 5769, 1, 0, 0, 0, 5769, 513, 1, 0, 0, 0, 5770, 5768, 1, 0, 0, 0, 5771, 5782, 5, 203, 0, 0, 5772, 5783, 3, 518, 259, 0, 5773, 5775, 5, 128, 0, 0, 5774, 5773, 1, 0, 0, 0, 5774, 5775, 1, 0, 0, 0, 5775, 5783, 1, 0, 0, 0, 5776, 5778, 3, 502, 251, 0, 5777, 5779, 3, 508, 254, 0, 5778, 5777, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 5781, 1, 0, 0, 0, 5780, 5776, 1, 0, 0, 0, 5780, 5781, 1, 0, 0, 0, 5781, 5783, 1, 0, 0, 0, 5782, 5772, 1, 0, 0, 0, 5782, 5774, 1, 0, 0, 0, 5782, 5780, 1, 0, 0, 0, 5783, 5784, 1, 0, 0, 0, 5784, 5785, 3, 516, 258, 0, 5785, 515, 1, 0, 0, 0, 5786, 5796, 3, 554, 277, 0, 5787, 5796, 3, 532, 266, 0, 5788, 5796, 3, 546, 273, 0, 5789, 5796, 3, 542, 271, 0, 5790, 5796, 3, 552, 276, 0, 5791, 5796, 3, 180, 90, 0, 5792, 5796, 3, 186, 93, 0, 5793, 5796, 3, 188, 94, 0, 5794, 5796, 3, 526, 263, 0, 5795, 5786, 1, 0, 0, 0, 5795, 5787, 1, 0, 0, 0, 5795, 5788, 1, 0, 0, 0, 5795, 5789, 1, 0, 0, 0, 5795, 5790, 1, 0, 0, 0, 5795, 5791, 1, 0, 0, 0, 5795, 5792, 1, 0, 0, 0, 5795, 5793, 1, 0, 0, 0, 5795, 5794, 1, 0, 0, 0, 5796, 517, 1, 0, 0, 0, 5797, 5798, 5, 2, 0, 0, 5798, 5803, 3, 504, 252, 0, 5799, 5800, 5, 6, 0, 0, 5800, 5802, 3, 504, 252, 0, 5801, 5799, 1, 0, 0, 0, 5802, 5805, 1, 0, 0, 0, 5803, 5801, 1, 0, 0, 0, 5803, 5804, 1, 0, 0, 0, 5804, 5806, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5806, 5807, 5, 3, 0, 0, 5807, 519, 1, 0, 0, 0, 5808, 5809, 5, 290, 0, 0, 5809, 5811, 3, 816, 408, 0, 5810, 5812, 3, 522, 261, 0, 5811, 5810, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 5813, 1, 0, 0, 0, 5813, 5814, 5, 36, 0, 0, 5814, 5815, 3, 524, 262, 0, 5815, 521, 1, 0, 0, 0, 5816, 5817, 5, 2, 0, 0, 5817, 5822, 3, 646, 323, 0, 5818, 5819, 5, 6, 0, 0, 5819, 5821, 3, 646, 323, 0, 5820, 5818, 1, 0, 0, 0, 5821, 5824, 1, 0, 0, 0, 5822, 5820, 1, 0, 0, 0, 5822, 5823, 1, 0, 0, 0, 5823, 5825, 1, 0, 0, 0, 5824, 5822, 1, 0, 0, 0, 5825, 5826, 5, 3, 0, 0, 5826, 523, 1, 0, 0, 0, 5827, 5833, 3, 554, 277, 0, 5828, 5833, 3, 532, 266, 0, 5829, 5833, 3, 546, 273, 0, 5830, 5833, 3, 542, 271, 0, 5831, 5833, 3, 898, 449, 0, 5832, 5827, 1, 0, 0, 0, 5832, 5828, 1, 0, 0, 0, 5832, 5829, 1, 0, 0, 0, 5832, 5830, 1, 0, 0, 0, 5832, 5831, 1, 0, 0, 0, 5833, 525, 1, 0, 0, 0, 5834, 5835, 5, 202, 0, 0, 5835, 5837, 3, 816, 408, 0, 5836, 5838, 3, 528, 264, 0, 5837, 5836, 1, 0, 0, 0, 5837, 5838, 1, 0, 0, 0, 5838, 5858, 1, 0, 0, 0, 5839, 5841, 5, 46, 0, 0, 5840, 5842, 3, 116, 58, 0, 5841, 5840, 1, 0, 0, 0, 5841, 5842, 1, 0, 0, 0, 5842, 5843, 1, 0, 0, 0, 5843, 5845, 5, 92, 0, 0, 5844, 5846, 3, 288, 144, 0, 5845, 5844, 1, 0, 0, 0, 5845, 5846, 1, 0, 0, 0, 5846, 5847, 1, 0, 0, 0, 5847, 5848, 3, 182, 91, 0, 5848, 5849, 5, 36, 0, 0, 5849, 5850, 5, 202, 0, 0, 5850, 5852, 3, 816, 408, 0, 5851, 5853, 3, 528, 264, 0, 5852, 5851, 1, 0, 0, 0, 5852, 5853, 1, 0, 0, 0, 5853, 5855, 1, 0, 0, 0, 5854, 5856, 3, 184, 92, 0, 5855, 5854, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5858, 1, 0, 0, 0, 5857, 5834, 1, 0, 0, 0, 5857, 5839, 1, 0, 0, 0, 5858, 527, 1, 0, 0, 0, 5859, 5860, 5, 2, 0, 0, 5860, 5861, 3, 726, 363, 0, 5861, 5862, 5, 3, 0, 0, 5862, 529, 1, 0, 0, 0, 5863, 5865, 5, 177, 0, 0, 5864, 5866, 5, 290, 0, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5869, 1, 0, 0, 0, 5867, 5870, 3, 816, 408, 0, 5868, 5870, 5, 30, 0, 0, 5869, 5867, 1, 0, 0, 0, 5869, 5868, 1, 0, 0, 0, 5870, 531, 1, 0, 0, 0, 5871, 5873, 3, 566, 283, 0, 5872, 5871, 1, 0, 0, 0, 5872, 5873, 1, 0, 0, 0, 5873, 5874, 1, 0, 0, 0, 5874, 5875, 5, 241, 0, 0, 5875, 5876, 5, 71, 0, 0, 5876, 5879, 3, 770, 385, 0, 5877, 5878, 5, 36, 0, 0, 5878, 5880, 3, 816, 408, 0, 5879, 5877, 1, 0, 0, 0, 5879, 5880, 1, 0, 0, 0, 5880, 5881, 1, 0, 0, 0, 5881, 5903, 3, 534, 267, 0, 5882, 5883, 5, 80, 0, 0, 5883, 5891, 5, 464, 0, 0, 5884, 5886, 3, 354, 177, 0, 5885, 5887, 3, 632, 316, 0, 5886, 5885, 1, 0, 0, 0, 5886, 5887, 1, 0, 0, 0, 5887, 5892, 1, 0, 0, 0, 5888, 5889, 5, 80, 0, 0, 5889, 5890, 5, 45, 0, 0, 5890, 5892, 3, 816, 408, 0, 5891, 5884, 1, 0, 0, 0, 5891, 5888, 1, 0, 0, 0, 5891, 5892, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5901, 5, 57, 0, 0, 5894, 5895, 5, 369, 0, 0, 5895, 5896, 5, 333, 0, 0, 5896, 5898, 3, 548, 274, 0, 5897, 5899, 3, 632, 316, 0, 5898, 5897, 1, 0, 0, 0, 5898, 5899, 1, 0, 0, 0, 5899, 5902, 1, 0, 0, 0, 5900, 5902, 5, 270, 0, 0, 5901, 5894, 1, 0, 0, 0, 5901, 5900, 1, 0, 0, 0, 5902, 5904, 1, 0, 0, 0, 5903, 5882, 1, 0, 0, 0, 5903, 5904, 1, 0, 0, 0, 5904, 5906, 1, 0, 0, 0, 5905, 5907, 3, 540, 270, 0, 5906, 5905, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 533, 1, 0, 0, 0, 5908, 5909, 5, 2, 0, 0, 5909, 5910, 3, 536, 268, 0, 5910, 5911, 5, 3, 0, 0, 5911, 5913, 1, 0, 0, 0, 5912, 5908, 1, 0, 0, 0, 5912, 5913, 1, 0, 0, 0, 5913, 5917, 1, 0, 0, 0, 5914, 5915, 5, 463, 0, 0, 5915, 5916, 7, 77, 0, 0, 5916, 5918, 5, 450, 0, 0, 5917, 5914, 1, 0, 0, 0, 5917, 5918, 1, 0, 0, 0, 5918, 5921, 1, 0, 0, 0, 5919, 5922, 3, 908, 454, 0, 5920, 5922, 3, 554, 277, 0, 5921, 5919, 1, 0, 0, 0, 5921, 5920, 1, 0, 0, 0, 5922, 535, 1, 0, 0, 0, 5923, 5928, 3, 538, 269, 0, 5924, 5925, 5, 6, 0, 0, 5925, 5927, 3, 538, 269, 0, 5926, 5924, 1, 0, 0, 0, 5927, 5930, 1, 0, 0, 0, 5928, 5926, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 537, 1, 0, 0, 0, 5930, 5928, 1, 0, 0, 0, 5931, 5932, 3, 796, 398, 0, 5932, 5933, 3, 750, 375, 0, 5933, 539, 1, 0, 0, 0, 5934, 5935, 5, 87, 0, 0, 5935, 5936, 3, 752, 376, 0, 5936, 541, 1, 0, 0, 0, 5937, 5939, 3, 566, 283, 0, 5938, 5937, 1, 0, 0, 0, 5938, 5939, 1, 0, 0, 0, 5939, 5940, 1, 0, 0, 0, 5940, 5941, 5, 182, 0, 0, 5941, 5942, 5, 64, 0, 0, 5942, 5945, 3, 624, 312, 0, 5943, 5944, 5, 100, 0, 0, 5944, 5946, 3, 606, 303, 0, 5945, 5943, 1, 0, 0, 0, 5945, 5946, 1, 0, 0, 0, 5946, 5948, 1, 0, 0, 0, 5947, 5949, 3, 634, 317, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5951, 1, 0, 0, 0, 5950, 5952, 3, 540, 270, 0, 5951, 5950, 1, 0, 0, 0, 5951, 5952, 1, 0, 0, 0, 5952, 543, 1, 0, 0, 0, 5953, 5955, 5, 256, 0, 0, 5954, 5956, 5, 92, 0, 0, 5955, 5954, 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 5957, 1, 0, 0, 0, 5957, 5972, 3, 622, 311, 0, 5958, 5969, 5, 68, 0, 0, 5959, 5960, 7, 78, 0, 0, 5960, 5970, 7, 79, 0, 0, 5961, 5966, 5, 334, 0, 0, 5962, 5963, 5, 369, 0, 0, 5963, 5967, 5, 201, 0, 0, 5964, 5965, 5, 414, 0, 0, 5965, 5967, 5, 201, 0, 0, 5966, 5962, 1, 0, 0, 0, 5966, 5964, 1, 0, 0, 0, 5966, 5967, 1, 0, 0, 0, 5967, 5970, 1, 0, 0, 0, 5968, 5970, 5, 201, 0, 0, 5969, 5959, 1, 0, 0, 0, 5969, 5961, 1, 0, 0, 0, 5969, 5968, 1, 0, 0, 0, 5970, 5971, 1, 0, 0, 0, 5971, 5973, 5, 263, 0, 0, 5972, 5958, 1, 0, 0, 0, 5972, 5973, 1, 0, 0, 0, 5973, 5975, 1, 0, 0, 0, 5974, 5976, 5, 272, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 545, 1, 0, 0, 0, 5977, 5979, 3, 566, 283, 0, 5978, 5977, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 5980, 1, 0, 0, 0, 5980, 5981, 5, 369, 0, 0, 5981, 5982, 3, 624, 312, 0, 5982, 5983, 5, 333, 0, 0, 5983, 5985, 3, 548, 274, 0, 5984, 5986, 3, 604, 302, 0, 5985, 5984, 1, 0, 0, 0, 5985, 5986, 1, 0, 0, 0, 5986, 5988, 1, 0, 0, 0, 5987, 5989, 3, 634, 317, 0, 5988, 5987, 1, 0, 0, 0, 5988, 5989, 1, 0, 0, 0, 5989, 5991, 1, 0, 0, 0, 5990, 5992, 3, 540, 270, 0, 5991, 5990, 1, 0, 0, 0, 5991, 5992, 1, 0, 0, 0, 5992, 547, 1, 0, 0, 0, 5993, 5998, 3, 550, 275, 0, 5994, 5995, 5, 6, 0, 0, 5995, 5997, 3, 550, 275, 0, 5996, 5994, 1, 0, 0, 0, 5997, 6000, 1, 0, 0, 0, 5998, 5996, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 549, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6001, 6002, 3, 538, 269, 0, 6002, 6003, 5, 10, 0, 0, 6003, 6004, 3, 668, 334, 0, 6004, 6020, 1, 0, 0, 0, 6005, 6006, 5, 2, 0, 0, 6006, 6007, 3, 536, 268, 0, 6007, 6008, 5, 3, 0, 0, 6008, 6017, 5, 10, 0, 0, 6009, 6011, 5, 414, 0, 0, 6010, 6009, 1, 0, 0, 0, 6010, 6011, 1, 0, 0, 0, 6011, 6012, 1, 0, 0, 0, 6012, 6018, 3, 668, 334, 0, 6013, 6014, 5, 2, 0, 0, 6014, 6015, 3, 560, 280, 0, 6015, 6016, 5, 3, 0, 0, 6016, 6018, 1, 0, 0, 0, 6017, 6010, 1, 0, 0, 0, 6017, 6013, 1, 0, 0, 0, 6018, 6020, 1, 0, 0, 0, 6019, 6001, 1, 0, 0, 0, 6019, 6005, 1, 0, 0, 0, 6020, 551, 1, 0, 0, 0, 6021, 6022, 5, 178, 0, 0, 6022, 6031, 3, 816, 408, 0, 6023, 6025, 5, 269, 0, 0, 6024, 6023, 1, 0, 0, 0, 6024, 6025, 1, 0, 0, 0, 6025, 6026, 1, 0, 0, 0, 6026, 6030, 5, 324, 0, 0, 6027, 6030, 5, 107, 0, 0, 6028, 6030, 5, 240, 0, 0, 6029, 6024, 1, 0, 0, 0, 6029, 6027, 1, 0, 0, 0, 6029, 6028, 1, 0, 0, 0, 6030, 6033, 1, 0, 0, 0, 6031, 6029, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6034, 1, 0, 0, 0, 6033, 6031, 1, 0, 0, 0, 6034, 6037, 5, 172, 0, 0, 6035, 6036, 7, 27, 0, 0, 6036, 6038, 5, 217, 0, 0, 6037, 6035, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6040, 5, 62, 0, 0, 6040, 6041, 3, 554, 277, 0, 6041, 553, 1, 0, 0, 0, 6042, 6045, 3, 558, 279, 0, 6043, 6045, 3, 556, 278, 0, 6044, 6042, 1, 0, 0, 0, 6044, 6043, 1, 0, 0, 0, 6045, 555, 1, 0, 0, 0, 6046, 6049, 5, 2, 0, 0, 6047, 6050, 3, 558, 279, 0, 6048, 6050, 3, 556, 278, 0, 6049, 6047, 1, 0, 0, 0, 6049, 6048, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 5, 3, 0, 0, 6052, 557, 1, 0, 0, 0, 6053, 6055, 3, 566, 283, 0, 6054, 6053, 1, 0, 0, 0, 6054, 6055, 1, 0, 0, 0, 6055, 6056, 1, 0, 0, 0, 6056, 6058, 3, 560, 280, 0, 6057, 6059, 3, 580, 290, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6068, 1, 0, 0, 0, 6060, 6062, 3, 600, 300, 0, 6061, 6063, 3, 584, 292, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6069, 1, 0, 0, 0, 6064, 6066, 3, 584, 292, 0, 6065, 6067, 3, 600, 300, 0, 6066, 6065, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6069, 1, 0, 0, 0, 6068, 6060, 1, 0, 0, 0, 6068, 6064, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 559, 1, 0, 0, 0, 6070, 6073, 3, 562, 281, 0, 6071, 6073, 3, 556, 278, 0, 6072, 6070, 1, 0, 0, 0, 6072, 6071, 1, 0, 0, 0, 6073, 561, 1, 0, 0, 0, 6074, 6084, 5, 88, 0, 0, 6075, 6077, 5, 30, 0, 0, 6076, 6075, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 6079, 1, 0, 0, 0, 6078, 6080, 3, 574, 287, 0, 6079, 6078, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6085, 1, 0, 0, 0, 6081, 6083, 3, 578, 289, 0, 6082, 6081, 1, 0, 0, 0, 6082, 6083, 1, 0, 0, 0, 6083, 6085, 1, 0, 0, 0, 6084, 6076, 1, 0, 0, 0, 6084, 6082, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 6097, 3, 928, 464, 0, 6087, 6097, 3, 602, 301, 0, 6088, 6089, 5, 92, 0, 0, 6089, 6097, 3, 618, 309, 0, 6090, 6091, 3, 556, 278, 0, 6091, 6094, 3, 564, 282, 0, 6092, 6095, 3, 562, 281, 0, 6093, 6095, 3, 556, 278, 0, 6094, 6092, 1, 0, 0, 0, 6094, 6093, 1, 0, 0, 0, 6095, 6097, 1, 0, 0, 0, 6096, 6074, 1, 0, 0, 0, 6096, 6087, 1, 0, 0, 0, 6096, 6088, 1, 0, 0, 0, 6096, 6090, 1, 0, 0, 0, 6097, 6105, 1, 0, 0, 0, 6098, 6101, 3, 564, 282, 0, 6099, 6102, 3, 562, 281, 0, 6100, 6102, 3, 556, 278, 0, 6101, 6099, 1, 0, 0, 0, 6101, 6100, 1, 0, 0, 0, 6102, 6104, 1, 0, 0, 0, 6103, 6098, 1, 0, 0, 0, 6104, 6107, 1, 0, 0, 0, 6105, 6103, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 563, 1, 0, 0, 0, 6107, 6105, 1, 0, 0, 0, 6108, 6110, 7, 80, 0, 0, 6109, 6111, 7, 81, 0, 0, 6110, 6109, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 565, 1, 0, 0, 0, 6112, 6114, 5, 105, 0, 0, 6113, 6115, 5, 303, 0, 0, 6114, 6113, 1, 0, 0, 0, 6114, 6115, 1, 0, 0, 0, 6115, 6116, 1, 0, 0, 0, 6116, 6121, 3, 568, 284, 0, 6117, 6118, 5, 6, 0, 0, 6118, 6120, 3, 568, 284, 0, 6119, 6117, 1, 0, 0, 0, 6120, 6123, 1, 0, 0, 0, 6121, 6119, 1, 0, 0, 0, 6121, 6122, 1, 0, 0, 0, 6122, 567, 1, 0, 0, 0, 6123, 6121, 1, 0, 0, 0, 6124, 6126, 3, 816, 408, 0, 6125, 6127, 3, 138, 69, 0, 6126, 6125, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 6133, 5, 36, 0, 0, 6129, 6131, 5, 77, 0, 0, 6130, 6129, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 6134, 5, 259, 0, 0, 6133, 6130, 1, 0, 0, 0, 6133, 6134, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 5, 2, 0, 0, 6136, 6137, 3, 524, 262, 0, 6137, 6139, 5, 3, 0, 0, 6138, 6140, 3, 570, 285, 0, 6139, 6138, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6142, 1, 0, 0, 0, 6141, 6143, 3, 572, 286, 0, 6142, 6141, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 569, 1, 0, 0, 0, 6144, 6145, 5, 325, 0, 0, 6145, 6146, 7, 82, 0, 0, 6146, 6147, 5, 207, 0, 0, 6147, 6148, 5, 147, 0, 0, 6148, 6149, 3, 142, 71, 0, 6149, 6150, 5, 333, 0, 0, 6150, 6151, 3, 796, 398, 0, 6151, 571, 1, 0, 0, 0, 6152, 6153, 5, 173, 0, 0, 6153, 6154, 3, 142, 71, 0, 6154, 6155, 5, 333, 0, 0, 6155, 6161, 3, 796, 398, 0, 6156, 6157, 5, 94, 0, 0, 6157, 6158, 3, 816, 408, 0, 6158, 6159, 5, 53, 0, 0, 6159, 6160, 3, 816, 408, 0, 6160, 6162, 1, 0, 0, 0, 6161, 6156, 1, 0, 0, 0, 6161, 6162, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 6164, 5, 100, 0, 0, 6164, 6165, 3, 796, 398, 0, 6165, 573, 1, 0, 0, 0, 6166, 6172, 5, 71, 0, 0, 6167, 6169, 5, 346, 0, 0, 6168, 6167, 1, 0, 0, 0, 6168, 6169, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 6173, 3, 576, 288, 0, 6171, 6173, 3, 726, 363, 0, 6172, 6168, 1, 0, 0, 0, 6172, 6171, 1, 0, 0, 0, 6173, 575, 1, 0, 0, 0, 6174, 6176, 7, 21, 0, 0, 6175, 6174, 1, 0, 0, 0, 6175, 6176, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6179, 7, 22, 0, 0, 6178, 6180, 5, 92, 0, 0, 6179, 6178, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 6190, 3, 768, 384, 0, 6182, 6184, 5, 367, 0, 0, 6183, 6182, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6186, 1, 0, 0, 0, 6185, 6187, 5, 92, 0, 0, 6186, 6185, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6190, 3, 768, 384, 0, 6189, 6175, 1, 0, 0, 0, 6189, 6183, 1, 0, 0, 0, 6190, 577, 1, 0, 0, 0, 6191, 6194, 5, 56, 0, 0, 6192, 6193, 5, 80, 0, 0, 6193, 6195, 3, 528, 264, 0, 6194, 6192, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 579, 1, 0, 0, 0, 6196, 6197, 5, 83, 0, 0, 6197, 6198, 5, 147, 0, 0, 6198, 6203, 3, 582, 291, 0, 6199, 6200, 5, 6, 0, 0, 6200, 6202, 3, 582, 291, 0, 6201, 6199, 1, 0, 0, 0, 6202, 6205, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 581, 1, 0, 0, 0, 6205, 6203, 1, 0, 0, 0, 6206, 6210, 3, 730, 365, 0, 6207, 6208, 5, 100, 0, 0, 6208, 6211, 3, 722, 361, 0, 6209, 6211, 7, 56, 0, 0, 6210, 6207, 1, 0, 0, 0, 6210, 6209, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6214, 1, 0, 0, 0, 6212, 6213, 5, 273, 0, 0, 6213, 6215, 7, 57, 0, 0, 6214, 6212, 1, 0, 0, 0, 6214, 6215, 1, 0, 0, 0, 6215, 583, 1, 0, 0, 0, 6216, 6218, 3, 590, 295, 0, 6217, 6219, 3, 588, 294, 0, 6218, 6217, 1, 0, 0, 0, 6218, 6219, 1, 0, 0, 0, 6219, 6228, 1, 0, 0, 0, 6220, 6223, 3, 586, 293, 0, 6221, 6223, 3, 588, 294, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6221, 1, 0, 0, 0, 6223, 6225, 1, 0, 0, 0, 6224, 6226, 3, 590, 295, 0, 6225, 6224, 1, 0, 0, 0, 6225, 6226, 1, 0, 0, 0, 6226, 6228, 1, 0, 0, 0, 6227, 6216, 1, 0, 0, 0, 6227, 6222, 1, 0, 0, 0, 6228, 585, 1, 0, 0, 0, 6229, 6232, 5, 74, 0, 0, 6230, 6233, 3, 668, 334, 0, 6231, 6233, 5, 30, 0, 0, 6232, 6230, 1, 0, 0, 0, 6232, 6231, 1, 0, 0, 0, 6233, 6236, 1, 0, 0, 0, 6234, 6235, 5, 6, 0, 0, 6235, 6237, 3, 668, 334, 0, 6236, 6234, 1, 0, 0, 0, 6236, 6237, 1, 0, 0, 0, 6237, 587, 1, 0, 0, 0, 6238, 6239, 5, 61, 0, 0, 6239, 6241, 7, 83, 0, 0, 6240, 6242, 3, 592, 296, 0, 6241, 6240, 1, 0, 0, 0, 6241, 6242, 1, 0, 0, 0, 6242, 6243, 1, 0, 0, 0, 6243, 6247, 7, 84, 0, 0, 6244, 6248, 5, 81, 0, 0, 6245, 6246, 5, 105, 0, 0, 6246, 6248, 5, 467, 0, 0, 6247, 6244, 1, 0, 0, 0, 6247, 6245, 1, 0, 0, 0, 6248, 589, 1, 0, 0, 0, 6249, 6254, 5, 79, 0, 0, 6250, 6251, 3, 592, 296, 0, 6251, 6252, 7, 84, 0, 0, 6252, 6255, 1, 0, 0, 0, 6253, 6255, 3, 668, 334, 0, 6254, 6250, 1, 0, 0, 0, 6254, 6253, 1, 0, 0, 0, 6255, 591, 1, 0, 0, 0, 6256, 6257, 7, 30, 0, 0, 6257, 6260, 7, 85, 0, 0, 6258, 6260, 3, 676, 338, 0, 6259, 6256, 1, 0, 0, 0, 6259, 6258, 1, 0, 0, 0, 6260, 593, 1, 0, 0, 0, 6261, 6262, 5, 66, 0, 0, 6262, 6264, 5, 147, 0, 0, 6263, 6265, 7, 81, 0, 0, 6264, 6263, 1, 0, 0, 0, 6264, 6265, 1, 0, 0, 0, 6265, 6266, 1, 0, 0, 0, 6266, 6267, 3, 596, 298, 0, 6267, 595, 1, 0, 0, 0, 6268, 6273, 3, 598, 299, 0, 6269, 6270, 5, 6, 0, 0, 6270, 6272, 3, 598, 299, 0, 6271, 6269, 1, 0, 0, 0, 6272, 6275, 1, 0, 0, 0, 6273, 6271, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 597, 1, 0, 0, 0, 6275, 6273, 1, 0, 0, 0, 6276, 6300, 3, 730, 365, 0, 6277, 6278, 5, 2, 0, 0, 6278, 6300, 5, 3, 0, 0, 6279, 6281, 7, 86, 0, 0, 6280, 6279, 1, 0, 0, 0, 6280, 6281, 1, 0, 0, 0, 6281, 6282, 1, 0, 0, 0, 6282, 6283, 5, 2, 0, 0, 6283, 6288, 3, 730, 365, 0, 6284, 6285, 5, 6, 0, 0, 6285, 6287, 3, 730, 365, 0, 6286, 6284, 1, 0, 0, 0, 6287, 6290, 1, 0, 0, 0, 6288, 6286, 1, 0, 0, 0, 6288, 6289, 1, 0, 0, 0, 6289, 6291, 1, 0, 0, 0, 6290, 6288, 1, 0, 0, 0, 6291, 6292, 5, 3, 0, 0, 6292, 6300, 1, 0, 0, 0, 6293, 6294, 5, 470, 0, 0, 6294, 6295, 5, 471, 0, 0, 6295, 6296, 5, 2, 0, 0, 6296, 6297, 3, 596, 298, 0, 6297, 6298, 5, 3, 0, 0, 6298, 6300, 1, 0, 0, 0, 6299, 6276, 1, 0, 0, 0, 6299, 6277, 1, 0, 0, 0, 6299, 6280, 1, 0, 0, 0, 6299, 6293, 1, 0, 0, 0, 6300, 599, 1, 0, 0, 0, 6301, 6311, 5, 62, 0, 0, 6302, 6303, 5, 269, 0, 0, 6303, 6305, 5, 245, 0, 0, 6304, 6302, 1, 0, 0, 0, 6304, 6305, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 6312, 5, 369, 0, 0, 6307, 6309, 5, 245, 0, 0, 6308, 6307, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6310, 1, 0, 0, 0, 6310, 6312, 5, 334, 0, 0, 6311, 6304, 1, 0, 0, 0, 6311, 6308, 1, 0, 0, 0, 6312, 6315, 1, 0, 0, 0, 6313, 6314, 5, 275, 0, 0, 6314, 6316, 3, 756, 378, 0, 6315, 6313, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6320, 1, 0, 0, 0, 6317, 6321, 5, 272, 0, 0, 6318, 6319, 5, 465, 0, 0, 6319, 6321, 5, 466, 0, 0, 6320, 6317, 1, 0, 0, 0, 6320, 6318, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6323, 1, 0, 0, 0, 6322, 6301, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6322, 1, 0, 0, 0, 6324, 6325, 1, 0, 0, 0, 6325, 6330, 1, 0, 0, 0, 6326, 6327, 5, 62, 0, 0, 6327, 6328, 5, 300, 0, 0, 6328, 6330, 5, 81, 0, 0, 6329, 6322, 1, 0, 0, 0, 6329, 6326, 1, 0, 0, 0, 6330, 601, 1, 0, 0, 0, 6331, 6332, 5, 422, 0, 0, 6332, 6337, 3, 528, 264, 0, 6333, 6334, 5, 6, 0, 0, 6334, 6336, 3, 528, 264, 0, 6335, 6333, 1, 0, 0, 0, 6336, 6339, 1, 0, 0, 0, 6337, 6335, 1, 0, 0, 0, 6337, 6338, 1, 0, 0, 0, 6338, 603, 1, 0, 0, 0, 6339, 6337, 1, 0, 0, 0, 6340, 6341, 5, 64, 0, 0, 6341, 6342, 3, 606, 303, 0, 6342, 605, 1, 0, 0, 0, 6343, 6348, 3, 608, 304, 0, 6344, 6345, 5, 6, 0, 0, 6345, 6347, 3, 608, 304, 0, 6346, 6344, 1, 0, 0, 0, 6347, 6350, 1, 0, 0, 0, 6348, 6346, 1, 0, 0, 0, 6348, 6349, 1, 0, 0, 0, 6349, 607, 1, 0, 0, 0, 6350, 6348, 1, 0, 0, 0, 6351, 6366, 3, 618, 309, 0, 6352, 6354, 5, 81, 0, 0, 6353, 6352, 1, 0, 0, 0, 6353, 6354, 1, 0, 0, 0, 6354, 6355, 1, 0, 0, 0, 6355, 6357, 3, 774, 387, 0, 6356, 6358, 5, 9, 0, 0, 6357, 6356, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 1, 0, 0, 0, 6359, 6361, 3, 142, 71, 0, 6360, 6359, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 6363, 1, 0, 0, 0, 6362, 6364, 3, 632, 316, 0, 6363, 6362, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6366, 1, 0, 0, 0, 6365, 6351, 1, 0, 0, 0, 6365, 6353, 1, 0, 0, 0, 6366, 6368, 1, 0, 0, 0, 6367, 6369, 3, 610, 305, 0, 6368, 6367, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 6371, 1, 0, 0, 0, 6370, 6372, 3, 626, 313, 0, 6371, 6370, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6415, 1, 0, 0, 0, 6373, 6375, 5, 72, 0, 0, 6374, 6373, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6388, 1, 0, 0, 0, 6376, 6378, 3, 640, 320, 0, 6377, 6379, 3, 610, 305, 0, 6378, 6377, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6389, 1, 0, 0, 0, 6380, 6382, 3, 628, 314, 0, 6381, 6383, 3, 612, 306, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6389, 1, 0, 0, 0, 6384, 6386, 3, 556, 278, 0, 6385, 6387, 3, 610, 305, 0, 6386, 6385, 1, 0, 0, 0, 6386, 6387, 1, 0, 0, 0, 6387, 6389, 1, 0, 0, 0, 6388, 6376, 1, 0, 0, 0, 6388, 6380, 1, 0, 0, 0, 6388, 6384, 1, 0, 0, 0, 6389, 6415, 1, 0, 0, 0, 6390, 6391, 5, 2, 0, 0, 6391, 6408, 3, 608, 304, 0, 6392, 6393, 5, 110, 0, 0, 6393, 6394, 5, 118, 0, 0, 6394, 6409, 3, 608, 304, 0, 6395, 6397, 5, 121, 0, 0, 6396, 6398, 3, 614, 307, 0, 6397, 6396, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6400, 5, 118, 0, 0, 6400, 6409, 3, 608, 304, 0, 6401, 6403, 3, 614, 307, 0, 6402, 6401, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6405, 5, 118, 0, 0, 6405, 6406, 3, 608, 304, 0, 6406, 6407, 3, 616, 308, 0, 6407, 6409, 1, 0, 0, 0, 6408, 6392, 1, 0, 0, 0, 6408, 6395, 1, 0, 0, 0, 6408, 6402, 1, 0, 0, 0, 6408, 6409, 1, 0, 0, 0, 6409, 6410, 1, 0, 0, 0, 6410, 6412, 5, 3, 0, 0, 6411, 6413, 3, 610, 305, 0, 6412, 6411, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6415, 1, 0, 0, 0, 6414, 6365, 1, 0, 0, 0, 6414, 6374, 1, 0, 0, 0, 6414, 6390, 1, 0, 0, 0, 6415, 6434, 1, 0, 0, 0, 6416, 6417, 5, 110, 0, 0, 6417, 6418, 5, 118, 0, 0, 6418, 6433, 3, 608, 304, 0, 6419, 6421, 5, 121, 0, 0, 6420, 6422, 3, 614, 307, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 5, 118, 0, 0, 6424, 6433, 3, 608, 304, 0, 6425, 6427, 3, 614, 307, 0, 6426, 6425, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6429, 5, 118, 0, 0, 6429, 6430, 3, 608, 304, 0, 6430, 6431, 3, 616, 308, 0, 6431, 6433, 1, 0, 0, 0, 6432, 6416, 1, 0, 0, 0, 6432, 6419, 1, 0, 0, 0, 6432, 6426, 1, 0, 0, 0, 6433, 6436, 1, 0, 0, 0, 6434, 6432, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 609, 1, 0, 0, 0, 6436, 6434, 1, 0, 0, 0, 6437, 6439, 5, 36, 0, 0, 6438, 6437, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 6440, 1, 0, 0, 0, 6440, 6445, 3, 816, 408, 0, 6441, 6442, 5, 2, 0, 0, 6442, 6443, 3, 780, 390, 0, 6443, 6444, 5, 3, 0, 0, 6444, 6446, 1, 0, 0, 0, 6445, 6441, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 611, 1, 0, 0, 0, 6447, 6460, 3, 610, 305, 0, 6448, 6450, 5, 36, 0, 0, 6449, 6451, 3, 816, 408, 0, 6450, 6449, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6454, 1, 0, 0, 0, 6452, 6454, 3, 816, 408, 0, 6453, 6448, 1, 0, 0, 0, 6453, 6452, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 6456, 5, 2, 0, 0, 6456, 6457, 3, 636, 318, 0, 6457, 6458, 5, 3, 0, 0, 6458, 6460, 1, 0, 0, 0, 6459, 6447, 1, 0, 0, 0, 6459, 6453, 1, 0, 0, 0, 6460, 613, 1, 0, 0, 0, 6461, 6463, 7, 87, 0, 0, 6462, 6464, 5, 123, 0, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 615, 1, 0, 0, 0, 6465, 6466, 5, 100, 0, 0, 6466, 6470, 3, 138, 69, 0, 6467, 6468, 5, 80, 0, 0, 6468, 6470, 3, 668, 334, 0, 6469, 6465, 1, 0, 0, 0, 6469, 6467, 1, 0, 0, 0, 6470, 617, 1, 0, 0, 0, 6471, 6487, 3, 316, 158, 0, 6472, 6478, 5, 81, 0, 0, 6473, 6479, 3, 770, 385, 0, 6474, 6475, 5, 2, 0, 0, 6475, 6476, 3, 770, 385, 0, 6476, 6477, 5, 3, 0, 0, 6477, 6479, 1, 0, 0, 0, 6478, 6473, 1, 0, 0, 0, 6478, 6474, 1, 0, 0, 0, 6479, 6487, 1, 0, 0, 0, 6480, 6481, 5, 68, 0, 0, 6481, 6484, 5, 323, 0, 0, 6482, 6485, 3, 786, 393, 0, 6483, 6485, 5, 111, 0, 0, 6484, 6482, 1, 0, 0, 0, 6484, 6483, 1, 0, 0, 0, 6485, 6487, 1, 0, 0, 0, 6486, 6471, 1, 0, 0, 0, 6486, 6472, 1, 0, 0, 0, 6486, 6480, 1, 0, 0, 0, 6487, 619, 1, 0, 0, 0, 6488, 6489, 5, 92, 0, 0, 6489, 6491, 3, 316, 158, 0, 6490, 6492, 3, 138, 69, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6494, 1, 0, 0, 0, 6493, 6495, 3, 632, 316, 0, 6494, 6493, 1, 0, 0, 0, 6494, 6495, 1, 0, 0, 0, 6495, 6513, 1, 0, 0, 0, 6496, 6497, 5, 92, 0, 0, 6497, 6503, 5, 81, 0, 0, 6498, 6504, 3, 770, 385, 0, 6499, 6500, 5, 2, 0, 0, 6500, 6501, 3, 770, 385, 0, 6501, 6502, 5, 3, 0, 0, 6502, 6504, 1, 0, 0, 0, 6503, 6498, 1, 0, 0, 0, 6503, 6499, 1, 0, 0, 0, 6504, 6513, 1, 0, 0, 0, 6505, 6506, 5, 350, 0, 0, 6506, 6507, 5, 68, 0, 0, 6507, 6510, 5, 323, 0, 0, 6508, 6511, 3, 786, 393, 0, 6509, 6511, 5, 111, 0, 0, 6510, 6508, 1, 0, 0, 0, 6510, 6509, 1, 0, 0, 0, 6511, 6513, 1, 0, 0, 0, 6512, 6488, 1, 0, 0, 0, 6512, 6496, 1, 0, 0, 0, 6512, 6505, 1, 0, 0, 0, 6513, 621, 1, 0, 0, 0, 6514, 6519, 3, 618, 309, 0, 6515, 6516, 5, 6, 0, 0, 6516, 6518, 3, 618, 309, 0, 6517, 6515, 1, 0, 0, 0, 6518, 6521, 1, 0, 0, 0, 6519, 6517, 1, 0, 0, 0, 6519, 6520, 1, 0, 0, 0, 6520, 623, 1, 0, 0, 0, 6521, 6519, 1, 0, 0, 0, 6522, 6527, 3, 618, 309, 0, 6523, 6525, 5, 36, 0, 0, 6524, 6523, 1, 0, 0, 0, 6524, 6525, 1, 0, 0, 0, 6525, 6526, 1, 0, 0, 0, 6526, 6528, 3, 816, 408, 0, 6527, 6524, 1, 0, 0, 0, 6527, 6528, 1, 0, 0, 0, 6528, 625, 1, 0, 0, 0, 6529, 6530, 5, 472, 0, 0, 6530, 6531, 3, 804, 402, 0, 6531, 6537, 3, 528, 264, 0, 6532, 6533, 5, 310, 0, 0, 6533, 6534, 5, 2, 0, 0, 6534, 6535, 3, 668, 334, 0, 6535, 6536, 5, 3, 0, 0, 6536, 6538, 1, 0, 0, 0, 6537, 6532, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 627, 1, 0, 0, 0, 6539, 6554, 3, 682, 341, 0, 6540, 6541, 5, 320, 0, 0, 6541, 6542, 5, 64, 0, 0, 6542, 6543, 5, 2, 0, 0, 6543, 6548, 3, 630, 315, 0, 6544, 6545, 5, 6, 0, 0, 6545, 6547, 3, 630, 315, 0, 6546, 6544, 1, 0, 0, 0, 6547, 6550, 1, 0, 0, 0, 6548, 6546, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 6551, 1, 0, 0, 0, 6550, 6548, 1, 0, 0, 0, 6551, 6552, 5, 3, 0, 0, 6552, 6554, 1, 0, 0, 0, 6553, 6539, 1, 0, 0, 0, 6553, 6540, 1, 0, 0, 0, 6554, 6557, 1, 0, 0, 0, 6555, 6556, 5, 105, 0, 0, 6556, 6558, 5, 473, 0, 0, 6557, 6555, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 629, 1, 0, 0, 0, 6559, 6565, 3, 682, 341, 0, 6560, 6561, 5, 36, 0, 0, 6561, 6562, 5, 2, 0, 0, 6562, 6563, 3, 636, 318, 0, 6563, 6564, 5, 3, 0, 0, 6564, 6566, 1, 0, 0, 0, 6565, 6560, 1, 0, 0, 0, 6565, 6566, 1, 0, 0, 0, 6566, 631, 1, 0, 0, 0, 6567, 6568, 5, 103, 0, 0, 6568, 6569, 3, 730, 365, 0, 6569, 633, 1, 0, 0, 0, 6570, 6575, 5, 103, 0, 0, 6571, 6572, 5, 434, 0, 0, 6572, 6573, 5, 275, 0, 0, 6573, 6576, 3, 816, 408, 0, 6574, 6576, 3, 668, 334, 0, 6575, 6571, 1, 0, 0, 0, 6575, 6574, 1, 0, 0, 0, 6576, 635, 1, 0, 0, 0, 6577, 6582, 3, 638, 319, 0, 6578, 6579, 5, 6, 0, 0, 6579, 6581, 3, 638, 319, 0, 6580, 6578, 1, 0, 0, 0, 6581, 6584, 1, 0, 0, 0, 6582, 6580, 1, 0, 0, 0, 6582, 6583, 1, 0, 0, 0, 6583, 637, 1, 0, 0, 0, 6584, 6582, 1, 0, 0, 0, 6585, 6586, 3, 816, 408, 0, 6586, 6588, 3, 646, 323, 0, 6587, 6589, 3, 90, 45, 0, 6588, 6587, 1, 0, 0, 0, 6588, 6589, 1, 0, 0, 0, 6589, 639, 1, 0, 0, 0, 6590, 6591, 5, 474, 0, 0, 6591, 6605, 5, 2, 0, 0, 6592, 6593, 5, 476, 0, 0, 6593, 6594, 5, 2, 0, 0, 6594, 6599, 3, 644, 322, 0, 6595, 6596, 5, 6, 0, 0, 6596, 6598, 3, 644, 322, 0, 6597, 6595, 1, 0, 0, 0, 6598, 6601, 1, 0, 0, 0, 6599, 6597, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 6602, 1, 0, 0, 0, 6601, 6599, 1, 0, 0, 0, 6602, 6603, 5, 3, 0, 0, 6603, 6604, 5, 6, 0, 0, 6604, 6606, 1, 0, 0, 0, 6605, 6592, 1, 0, 0, 0, 6605, 6606, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 6608, 3, 676, 338, 0, 6608, 6609, 3, 692, 346, 0, 6609, 6610, 5, 475, 0, 0, 6610, 6615, 3, 642, 321, 0, 6611, 6612, 5, 6, 0, 0, 6612, 6614, 3, 642, 321, 0, 6613, 6611, 1, 0, 0, 0, 6614, 6617, 1, 0, 0, 0, 6615, 6613, 1, 0, 0, 0, 6615, 6616, 1, 0, 0, 0, 6616, 6618, 1, 0, 0, 0, 6617, 6615, 1, 0, 0, 0, 6618, 6619, 5, 3, 0, 0, 6619, 641, 1, 0, 0, 0, 6620, 6639, 3, 816, 408, 0, 6621, 6635, 3, 646, 323, 0, 6622, 6625, 5, 53, 0, 0, 6623, 6625, 3, 824, 412, 0, 6624, 6622, 1, 0, 0, 0, 6624, 6623, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6632, 3, 668, 334, 0, 6627, 6629, 5, 77, 0, 0, 6628, 6627, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6630, 1, 0, 0, 0, 6630, 6632, 5, 78, 0, 0, 6631, 6624, 1, 0, 0, 0, 6631, 6628, 1, 0, 0, 0, 6632, 6633, 1, 0, 0, 0, 6633, 6631, 1, 0, 0, 0, 6633, 6634, 1, 0, 0, 0, 6634, 6636, 1, 0, 0, 0, 6635, 6631, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6640, 1, 0, 0, 0, 6637, 6638, 5, 62, 0, 0, 6638, 6640, 5, 473, 0, 0, 6639, 6621, 1, 0, 0, 0, 6639, 6637, 1, 0, 0, 0, 6640, 643, 1, 0, 0, 0, 6641, 6642, 3, 676, 338, 0, 6642, 6643, 5, 36, 0, 0, 6643, 6644, 3, 822, 411, 0, 6644, 6648, 1, 0, 0, 0, 6645, 6646, 5, 53, 0, 0, 6646, 6648, 3, 676, 338, 0, 6647, 6641, 1, 0, 0, 0, 6647, 6645, 1, 0, 0, 0, 6648, 645, 1, 0, 0, 0, 6649, 6651, 5, 415, 0, 0, 6650, 6649, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6669, 3, 648, 324, 0, 6653, 6655, 5, 4, 0, 0, 6654, 6656, 5, 574, 0, 0, 6655, 6654, 1, 0, 0, 0, 6655, 6656, 1, 0, 0, 0, 6656, 6657, 1, 0, 0, 0, 6657, 6659, 5, 5, 0, 0, 6658, 6653, 1, 0, 0, 0, 6659, 6662, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6670, 1, 0, 0, 0, 6662, 6660, 1, 0, 0, 0, 6663, 6667, 5, 35, 0, 0, 6664, 6665, 5, 4, 0, 0, 6665, 6666, 5, 574, 0, 0, 6666, 6668, 5, 5, 0, 0, 6667, 6664, 1, 0, 0, 0, 6667, 6668, 1, 0, 0, 0, 6668, 6670, 1, 0, 0, 0, 6669, 6660, 1, 0, 0, 0, 6669, 6663, 1, 0, 0, 0, 6670, 6676, 1, 0, 0, 0, 6671, 6672, 3, 776, 388, 0, 6672, 6673, 5, 27, 0, 0, 6673, 6674, 7, 88, 0, 0, 6674, 6676, 1, 0, 0, 0, 6675, 6650, 1, 0, 0, 0, 6675, 6671, 1, 0, 0, 0, 6676, 647, 1, 0, 0, 0, 6677, 6679, 3, 818, 409, 0, 6678, 6680, 3, 312, 156, 0, 6679, 6678, 1, 0, 0, 0, 6679, 6680, 1, 0, 0, 0, 6680, 6682, 1, 0, 0, 0, 6681, 6683, 3, 528, 264, 0, 6682, 6681, 1, 0, 0, 0, 6682, 6683, 1, 0, 0, 0, 6683, 6693, 1, 0, 0, 0, 6684, 6693, 3, 650, 325, 0, 6685, 6690, 5, 403, 0, 0, 6686, 6688, 3, 662, 331, 0, 6687, 6686, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6691, 1, 0, 0, 0, 6689, 6691, 3, 654, 327, 0, 6690, 6687, 1, 0, 0, 0, 6690, 6689, 1, 0, 0, 0, 6691, 6693, 1, 0, 0, 0, 6692, 6677, 1, 0, 0, 0, 6692, 6684, 1, 0, 0, 0, 6692, 6685, 1, 0, 0, 0, 6693, 649, 1, 0, 0, 0, 6694, 6699, 3, 652, 326, 0, 6695, 6699, 3, 656, 328, 0, 6696, 6699, 3, 658, 329, 0, 6697, 6699, 3, 660, 330, 0, 6698, 6694, 1, 0, 0, 0, 6698, 6695, 1, 0, 0, 0, 6698, 6696, 1, 0, 0, 0, 6698, 6697, 1, 0, 0, 0, 6699, 651, 1, 0, 0, 0, 6700, 6717, 5, 401, 0, 0, 6701, 6717, 5, 402, 0, 0, 6702, 6717, 5, 416, 0, 0, 6703, 6717, 5, 388, 0, 0, 6704, 6717, 5, 413, 0, 0, 6705, 6707, 5, 398, 0, 0, 6706, 6708, 3, 654, 327, 0, 6707, 6706, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6717, 1, 0, 0, 0, 6709, 6710, 5, 190, 0, 0, 6710, 6717, 5, 412, 0, 0, 6711, 6713, 7, 89, 0, 0, 6712, 6714, 3, 528, 264, 0, 6713, 6712, 1, 0, 0, 0, 6713, 6714, 1, 0, 0, 0, 6714, 6717, 1, 0, 0, 0, 6715, 6717, 5, 390, 0, 0, 6716, 6700, 1, 0, 0, 0, 6716, 6701, 1, 0, 0, 0, 6716, 6702, 1, 0, 0, 0, 6716, 6703, 1, 0, 0, 0, 6716, 6704, 1, 0, 0, 0, 6716, 6705, 1, 0, 0, 0, 6716, 6709, 1, 0, 0, 0, 6716, 6711, 1, 0, 0, 0, 6716, 6715, 1, 0, 0, 0, 6717, 653, 1, 0, 0, 0, 6718, 6719, 5, 2, 0, 0, 6719, 6720, 5, 574, 0, 0, 6720, 6721, 5, 3, 0, 0, 6721, 655, 1, 0, 0, 0, 6722, 6724, 5, 389, 0, 0, 6723, 6725, 5, 374, 0, 0, 6724, 6723, 1, 0, 0, 0, 6724, 6725, 1, 0, 0, 0, 6725, 6727, 1, 0, 0, 0, 6726, 6728, 3, 528, 264, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 657, 1, 0, 0, 0, 6729, 6731, 7, 90, 0, 0, 6730, 6732, 5, 374, 0, 0, 6731, 6730, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6740, 1, 0, 0, 0, 6733, 6740, 5, 423, 0, 0, 6734, 6735, 5, 405, 0, 0, 6735, 6737, 7, 91, 0, 0, 6736, 6738, 5, 374, 0, 0, 6737, 6736, 1, 0, 0, 0, 6737, 6738, 1, 0, 0, 0, 6738, 6740, 1, 0, 0, 0, 6739, 6729, 1, 0, 0, 0, 6739, 6733, 1, 0, 0, 0, 6739, 6734, 1, 0, 0, 0, 6740, 6742, 1, 0, 0, 0, 6741, 6743, 3, 654, 327, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 659, 1, 0, 0, 0, 6744, 6746, 7, 92, 0, 0, 6745, 6747, 3, 654, 327, 0, 6746, 6745, 1, 0, 0, 0, 6746, 6747, 1, 0, 0, 0, 6747, 6751, 1, 0, 0, 0, 6748, 6749, 7, 27, 0, 0, 6749, 6750, 5, 418, 0, 0, 6750, 6752, 5, 386, 0, 0, 6751, 6748, 1, 0, 0, 0, 6751, 6752, 1, 0, 0, 0, 6752, 661, 1, 0, 0, 0, 6753, 6783, 5, 264, 0, 0, 6754, 6783, 3, 664, 332, 0, 6755, 6758, 5, 384, 0, 0, 6756, 6757, 5, 94, 0, 0, 6757, 6759, 5, 264, 0, 0, 6758, 6756, 1, 0, 0, 0, 6758, 6759, 1, 0, 0, 0, 6759, 6783, 1, 0, 0, 0, 6760, 6767, 5, 176, 0, 0, 6761, 6765, 5, 94, 0, 0, 6762, 6766, 5, 218, 0, 0, 6763, 6766, 5, 261, 0, 0, 6764, 6766, 3, 664, 332, 0, 6765, 6762, 1, 0, 0, 0, 6765, 6763, 1, 0, 0, 0, 6765, 6764, 1, 0, 0, 0, 6766, 6768, 1, 0, 0, 0, 6767, 6761, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6783, 1, 0, 0, 0, 6769, 6775, 5, 218, 0, 0, 6770, 6773, 5, 94, 0, 0, 6771, 6774, 5, 261, 0, 0, 6772, 6774, 3, 664, 332, 0, 6773, 6771, 1, 0, 0, 0, 6773, 6772, 1, 0, 0, 0, 6774, 6776, 1, 0, 0, 0, 6775, 6770, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 6783, 1, 0, 0, 0, 6777, 6780, 5, 261, 0, 0, 6778, 6779, 5, 94, 0, 0, 6779, 6781, 3, 664, 332, 0, 6780, 6778, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 6783, 1, 0, 0, 0, 6782, 6753, 1, 0, 0, 0, 6782, 6754, 1, 0, 0, 0, 6782, 6755, 1, 0, 0, 0, 6782, 6760, 1, 0, 0, 0, 6782, 6769, 1, 0, 0, 0, 6782, 6777, 1, 0, 0, 0, 6783, 663, 1, 0, 0, 0, 6784, 6786, 5, 326, 0, 0, 6785, 6787, 3, 654, 327, 0, 6786, 6785, 1, 0, 0, 0, 6786, 6787, 1, 0, 0, 0, 6787, 665, 1, 0, 0, 0, 6788, 6789, 7, 93, 0, 0, 6789, 667, 1, 0, 0, 0, 6790, 6791, 3, 670, 335, 0, 6791, 669, 1, 0, 0, 0, 6792, 6793, 6, 335, -1, 0, 6793, 6795, 3, 674, 337, 0, 6794, 6796, 3, 672, 336, 0, 6795, 6794, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6800, 1, 0, 0, 0, 6797, 6798, 5, 77, 0, 0, 6798, 6800, 3, 670, 335, 3, 6799, 6792, 1, 0, 0, 0, 6799, 6797, 1, 0, 0, 0, 6800, 6809, 1, 0, 0, 0, 6801, 6802, 10, 2, 0, 0, 6802, 6803, 5, 33, 0, 0, 6803, 6808, 3, 670, 335, 3, 6804, 6805, 10, 1, 0, 0, 6805, 6806, 5, 82, 0, 0, 6806, 6808, 3, 670, 335, 2, 6807, 6801, 1, 0, 0, 0, 6807, 6804, 1, 0, 0, 0, 6808, 6811, 1, 0, 0, 0, 6809, 6807, 1, 0, 0, 0, 6809, 6810, 1, 0, 0, 0, 6810, 671, 1, 0, 0, 0, 6811, 6809, 1, 0, 0, 0, 6812, 6813, 3, 666, 333, 0, 6813, 6814, 3, 674, 337, 0, 6814, 6884, 1, 0, 0, 0, 6815, 6816, 3, 666, 333, 0, 6816, 6817, 3, 724, 362, 0, 6817, 6823, 3, 714, 357, 0, 6818, 6824, 3, 556, 278, 0, 6819, 6820, 5, 2, 0, 0, 6820, 6821, 3, 668, 334, 0, 6821, 6822, 5, 3, 0, 0, 6822, 6824, 1, 0, 0, 0, 6823, 6818, 1, 0, 0, 0, 6823, 6819, 1, 0, 0, 0, 6824, 6884, 1, 0, 0, 0, 6825, 6827, 5, 77, 0, 0, 6826, 6825, 1, 0, 0, 0, 6826, 6827, 1, 0, 0, 0, 6827, 6828, 1, 0, 0, 0, 6828, 6829, 5, 387, 0, 0, 6829, 6830, 3, 674, 337, 0, 6830, 6831, 5, 33, 0, 0, 6831, 6832, 3, 674, 337, 0, 6832, 6884, 1, 0, 0, 0, 6833, 6835, 5, 77, 0, 0, 6834, 6833, 1, 0, 0, 0, 6834, 6835, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6837, 5, 68, 0, 0, 6837, 6838, 5, 2, 0, 0, 6838, 6843, 3, 668, 334, 0, 6839, 6840, 5, 6, 0, 0, 6840, 6842, 3, 668, 334, 0, 6841, 6839, 1, 0, 0, 0, 6842, 6845, 1, 0, 0, 0, 6843, 6841, 1, 0, 0, 0, 6843, 6844, 1, 0, 0, 0, 6844, 6846, 1, 0, 0, 0, 6845, 6843, 1, 0, 0, 0, 6846, 6847, 5, 3, 0, 0, 6847, 6884, 1, 0, 0, 0, 6848, 6850, 5, 77, 0, 0, 6849, 6848, 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6851, 1, 0, 0, 0, 6851, 6852, 5, 68, 0, 0, 6852, 6884, 3, 556, 278, 0, 6853, 6855, 5, 77, 0, 0, 6854, 6853, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6864, 1, 0, 0, 0, 6856, 6865, 5, 120, 0, 0, 6857, 6865, 5, 114, 0, 0, 6858, 6859, 5, 127, 0, 0, 6859, 6865, 5, 94, 0, 0, 6860, 6862, 5, 387, 0, 0, 6861, 6863, 5, 91, 0, 0, 6862, 6861, 1, 0, 0, 0, 6862, 6863, 1, 0, 0, 0, 6863, 6865, 1, 0, 0, 0, 6864, 6856, 1, 0, 0, 0, 6864, 6857, 1, 0, 0, 0, 6864, 6858, 1, 0, 0, 0, 6864, 6860, 1, 0, 0, 0, 6865, 6866, 1, 0, 0, 0, 6866, 6869, 3, 674, 337, 0, 6867, 6868, 5, 197, 0, 0, 6868, 6870, 3, 674, 337, 0, 6869, 6867, 1, 0, 0, 0, 6869, 6870, 1, 0, 0, 0, 6870, 6884, 1, 0, 0, 0, 6871, 6873, 5, 116, 0, 0, 6872, 6874, 5, 77, 0, 0, 6873, 6872, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6884, 5, 78, 0, 0, 6876, 6878, 5, 116, 0, 0, 6877, 6879, 5, 77, 0, 0, 6878, 6877, 1, 0, 0, 0, 6878, 6879, 1, 0, 0, 0, 6879, 6880, 1, 0, 0, 0, 6880, 6881, 5, 56, 0, 0, 6881, 6882, 5, 64, 0, 0, 6882, 6884, 3, 674, 337, 0, 6883, 6812, 1, 0, 0, 0, 6883, 6815, 1, 0, 0, 0, 6883, 6826, 1, 0, 0, 0, 6883, 6834, 1, 0, 0, 0, 6883, 6849, 1, 0, 0, 0, 6883, 6854, 1, 0, 0, 0, 6883, 6871, 1, 0, 0, 0, 6883, 6876, 1, 0, 0, 0, 6884, 673, 1, 0, 0, 0, 6885, 6886, 6, 337, -1, 0, 6886, 6890, 3, 676, 338, 0, 6887, 6888, 7, 30, 0, 0, 6888, 6890, 3, 674, 337, 4, 6889, 6885, 1, 0, 0, 0, 6889, 6887, 1, 0, 0, 0, 6890, 6907, 1, 0, 0, 0, 6891, 6892, 10, 3, 0, 0, 6892, 6893, 7, 94, 0, 0, 6893, 6906, 3, 674, 337, 4, 6894, 6895, 10, 2, 0, 0, 6895, 6896, 7, 30, 0, 0, 6896, 6906, 3, 674, 337, 3, 6897, 6898, 10, 1, 0, 0, 6898, 6899, 5, 15, 0, 0, 6899, 6906, 3, 674, 337, 2, 6900, 6901, 10, 5, 0, 0, 6901, 6902, 5, 142, 0, 0, 6902, 6903, 5, 418, 0, 0, 6903, 6904, 5, 386, 0, 0, 6904, 6906, 3, 668, 334, 0, 6905, 6891, 1, 0, 0, 0, 6905, 6894, 1, 0, 0, 0, 6905, 6897, 1, 0, 0, 0, 6905, 6900, 1, 0, 0, 0, 6906, 6909, 1, 0, 0, 0, 6907, 6905, 1, 0, 0, 0, 6907, 6908, 1, 0, 0, 0, 6908, 675, 1, 0, 0, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6911, 6, 338, -1, 0, 6911, 6912, 7, 95, 0, 0, 6912, 6999, 3, 556, 278, 0, 6913, 6916, 5, 35, 0, 0, 6914, 6917, 3, 556, 278, 0, 6915, 6917, 3, 736, 368, 0, 6916, 6914, 1, 0, 0, 0, 6916, 6915, 1, 0, 0, 0, 6917, 6999, 1, 0, 0, 0, 6918, 6919, 5, 28, 0, 0, 6919, 6999, 3, 750, 375, 0, 6920, 6921, 5, 470, 0, 0, 6921, 6999, 3, 528, 264, 0, 6922, 6999, 5, 574, 0, 0, 6923, 6999, 5, 576, 0, 0, 6924, 6999, 5, 566, 0, 0, 6925, 6999, 5, 570, 0, 0, 6926, 6936, 3, 804, 402, 0, 6927, 6937, 3, 806, 403, 0, 6928, 6929, 5, 2, 0, 0, 6929, 6931, 3, 732, 366, 0, 6930, 6932, 3, 580, 290, 0, 6931, 6930, 1, 0, 0, 0, 6931, 6932, 1, 0, 0, 0, 6932, 6933, 1, 0, 0, 0, 6933, 6934, 5, 3, 0, 0, 6934, 6935, 3, 806, 403, 0, 6935, 6937, 1, 0, 0, 0, 6936, 6927, 1, 0, 0, 0, 6936, 6928, 1, 0, 0, 0, 6937, 6999, 1, 0, 0, 0, 6938, 6940, 3, 650, 325, 0, 6939, 6938, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6941, 1, 0, 0, 0, 6941, 6999, 3, 806, 403, 0, 6942, 6950, 5, 403, 0, 0, 6943, 6945, 3, 806, 403, 0, 6944, 6946, 3, 662, 331, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6951, 1, 0, 0, 0, 6947, 6948, 3, 654, 327, 0, 6948, 6949, 3, 806, 403, 0, 6949, 6951, 1, 0, 0, 0, 6950, 6943, 1, 0, 0, 0, 6950, 6947, 1, 0, 0, 0, 6951, 6999, 1, 0, 0, 0, 6952, 6999, 5, 96, 0, 0, 6953, 6999, 5, 60, 0, 0, 6954, 6999, 5, 78, 0, 0, 6955, 6999, 5, 577, 0, 0, 6956, 6957, 5, 2, 0, 0, 6957, 6958, 3, 668, 334, 0, 6958, 6959, 5, 3, 0, 0, 6959, 6960, 3, 750, 375, 0, 6960, 6999, 1, 0, 0, 0, 6961, 6963, 5, 40, 0, 0, 6962, 6964, 3, 668, 334, 0, 6963, 6962, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6966, 1, 0, 0, 0, 6965, 6967, 3, 744, 372, 0, 6966, 6965, 1, 0, 0, 0, 6967, 6968, 1, 0, 0, 0, 6968, 6966, 1, 0, 0, 0, 6968, 6969, 1, 0, 0, 0, 6969, 6972, 1, 0, 0, 0, 6970, 6971, 5, 58, 0, 0, 6971, 6973, 3, 668, 334, 0, 6972, 6970, 1, 0, 0, 0, 6972, 6973, 1, 0, 0, 0, 6973, 6974, 1, 0, 0, 0, 6974, 6975, 5, 454, 0, 0, 6975, 6999, 1, 0, 0, 0, 6976, 6999, 3, 680, 340, 0, 6977, 6979, 3, 556, 278, 0, 6978, 6980, 3, 748, 374, 0, 6979, 6978, 1, 0, 0, 0, 6979, 6980, 1, 0, 0, 0, 6980, 6999, 1, 0, 0, 0, 6981, 6999, 3, 712, 356, 0, 6982, 6983, 5, 2, 0, 0, 6983, 6984, 3, 668, 334, 0, 6984, 6985, 5, 6, 0, 0, 6985, 6986, 3, 726, 363, 0, 6986, 6987, 5, 3, 0, 0, 6987, 6999, 1, 0, 0, 0, 6988, 6989, 3, 710, 355, 0, 6989, 6990, 5, 125, 0, 0, 6990, 6991, 3, 710, 355, 0, 6991, 6999, 1, 0, 0, 0, 6992, 6999, 3, 798, 399, 0, 6993, 6994, 7, 30, 0, 0, 6994, 6999, 3, 676, 338, 5, 6995, 6996, 3, 720, 360, 0, 6996, 6997, 3, 676, 338, 2, 6997, 6999, 1, 0, 0, 0, 6998, 6910, 1, 0, 0, 0, 6998, 6913, 1, 0, 0, 0, 6998, 6918, 1, 0, 0, 0, 6998, 6920, 1, 0, 0, 0, 6998, 6922, 1, 0, 0, 0, 6998, 6923, 1, 0, 0, 0, 6998, 6924, 1, 0, 0, 0, 6998, 6925, 1, 0, 0, 0, 6998, 6926, 1, 0, 0, 0, 6998, 6939, 1, 0, 0, 0, 6998, 6942, 1, 0, 0, 0, 6998, 6952, 1, 0, 0, 0, 6998, 6953, 1, 0, 0, 0, 6998, 6954, 1, 0, 0, 0, 6998, 6955, 1, 0, 0, 0, 6998, 6956, 1, 0, 0, 0, 6998, 6961, 1, 0, 0, 0, 6998, 6976, 1, 0, 0, 0, 6998, 6977, 1, 0, 0, 0, 6998, 6981, 1, 0, 0, 0, 6998, 6982, 1, 0, 0, 0, 6998, 6988, 1, 0, 0, 0, 6998, 6992, 1, 0, 0, 0, 6998, 6993, 1, 0, 0, 0, 6998, 6995, 1, 0, 0, 0, 6999, 7027, 1, 0, 0, 0, 7000, 7001, 10, 3, 0, 0, 7001, 7002, 3, 718, 359, 0, 7002, 7003, 3, 676, 338, 4, 7003, 7026, 1, 0, 0, 0, 7004, 7005, 10, 6, 0, 0, 7005, 7006, 5, 26, 0, 0, 7006, 7026, 3, 646, 323, 0, 7007, 7008, 10, 4, 0, 0, 7008, 7010, 3, 720, 360, 0, 7009, 7011, 3, 676, 338, 0, 7010, 7009, 1, 0, 0, 0, 7010, 7011, 1, 0, 0, 0, 7011, 7026, 1, 0, 0, 0, 7012, 7013, 10, 1, 0, 0, 7013, 7015, 5, 116, 0, 0, 7014, 7016, 5, 77, 0, 0, 7015, 7014, 1, 0, 0, 0, 7015, 7016, 1, 0, 0, 0, 7016, 7023, 1, 0, 0, 0, 7017, 7018, 5, 56, 0, 0, 7018, 7019, 5, 64, 0, 0, 7019, 7024, 3, 676, 338, 0, 7020, 7021, 5, 275, 0, 0, 7021, 7024, 3, 522, 261, 0, 7022, 7024, 5, 188, 0, 0, 7023, 7017, 1, 0, 0, 0, 7023, 7020, 1, 0, 0, 0, 7023, 7022, 1, 0, 0, 0, 7024, 7026, 1, 0, 0, 0, 7025, 7000, 1, 0, 0, 0, 7025, 7004, 1, 0, 0, 0, 7025, 7007, 1, 0, 0, 0, 7025, 7012, 1, 0, 0, 0, 7026, 7029, 1, 0, 0, 0, 7027, 7025, 1, 0, 0, 0, 7027, 7028, 1, 0, 0, 0, 7028, 677, 1, 0, 0, 0, 7029, 7027, 1, 0, 0, 0, 7030, 7031, 3, 804, 402, 0, 7031, 7052, 5, 2, 0, 0, 7032, 7036, 3, 732, 366, 0, 7033, 7034, 5, 6, 0, 0, 7034, 7035, 5, 101, 0, 0, 7035, 7037, 3, 734, 367, 0, 7036, 7033, 1, 0, 0, 0, 7036, 7037, 1, 0, 0, 0, 7037, 7039, 1, 0, 0, 0, 7038, 7040, 3, 580, 290, 0, 7039, 7038, 1, 0, 0, 0, 7039, 7040, 1, 0, 0, 0, 7040, 7053, 1, 0, 0, 0, 7041, 7042, 5, 101, 0, 0, 7042, 7044, 3, 734, 367, 0, 7043, 7045, 3, 580, 290, 0, 7044, 7043, 1, 0, 0, 0, 7044, 7045, 1, 0, 0, 0, 7045, 7053, 1, 0, 0, 0, 7046, 7047, 7, 81, 0, 0, 7047, 7049, 3, 732, 366, 0, 7048, 7050, 3, 580, 290, 0, 7049, 7048, 1, 0, 0, 0, 7049, 7050, 1, 0, 0, 0, 7050, 7053, 1, 0, 0, 0, 7051, 7053, 5, 9, 0, 0, 7052, 7032, 1, 0, 0, 0, 7052, 7041, 1, 0, 0, 0, 7052, 7046, 1, 0, 0, 0, 7052, 7051, 1, 0, 0, 0, 7052, 7053, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7055, 5, 3, 0, 0, 7055, 679, 1, 0, 0, 0, 7056, 7063, 3, 678, 339, 0, 7057, 7058, 5, 479, 0, 0, 7058, 7059, 5, 66, 0, 0, 7059, 7060, 5, 2, 0, 0, 7060, 7061, 3, 580, 290, 0, 7061, 7062, 5, 3, 0, 0, 7062, 7064, 1, 0, 0, 0, 7063, 7057, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7071, 1, 0, 0, 0, 7065, 7066, 5, 480, 0, 0, 7066, 7067, 5, 2, 0, 0, 7067, 7068, 5, 103, 0, 0, 7068, 7069, 3, 668, 334, 0, 7069, 7070, 5, 3, 0, 0, 7070, 7072, 1, 0, 0, 0, 7071, 7065, 1, 0, 0, 0, 7071, 7072, 1, 0, 0, 0, 7072, 7078, 1, 0, 0, 0, 7073, 7076, 5, 124, 0, 0, 7074, 7077, 3, 704, 352, 0, 7075, 7077, 3, 816, 408, 0, 7076, 7074, 1, 0, 0, 0, 7076, 7075, 1, 0, 0, 0, 7077, 7079, 1, 0, 0, 0, 7078, 7073, 1, 0, 0, 0, 7078, 7079, 1, 0, 0, 0, 7079, 7082, 1, 0, 0, 0, 7080, 7082, 3, 684, 342, 0, 7081, 7056, 1, 0, 0, 0, 7081, 7080, 1, 0, 0, 0, 7082, 681, 1, 0, 0, 0, 7083, 7086, 3, 678, 339, 0, 7084, 7086, 3, 684, 342, 0, 7085, 7083, 1, 0, 0, 0, 7085, 7084, 1, 0, 0, 0, 7086, 683, 1, 0, 0, 0, 7087, 7088, 5, 108, 0, 0, 7088, 7089, 5, 62, 0, 0, 7089, 7090, 5, 2, 0, 0, 7090, 7091, 3, 668, 334, 0, 7091, 7092, 5, 3, 0, 0, 7092, 7262, 1, 0, 0, 0, 7093, 7262, 5, 48, 0, 0, 7094, 7096, 7, 96, 0, 0, 7095, 7097, 3, 654, 327, 0, 7096, 7095, 1, 0, 0, 0, 7096, 7097, 1, 0, 0, 0, 7097, 7262, 1, 0, 0, 0, 7098, 7262, 5, 49, 0, 0, 7099, 7262, 5, 52, 0, 0, 7100, 7262, 5, 89, 0, 0, 7101, 7262, 5, 99, 0, 0, 7102, 7262, 5, 47, 0, 0, 7103, 7262, 5, 111, 0, 0, 7104, 7105, 7, 97, 0, 0, 7105, 7106, 5, 2, 0, 0, 7106, 7107, 3, 668, 334, 0, 7107, 7108, 5, 36, 0, 0, 7108, 7109, 3, 646, 323, 0, 7109, 7110, 5, 3, 0, 0, 7110, 7262, 1, 0, 0, 0, 7111, 7112, 5, 397, 0, 0, 7112, 7117, 5, 2, 0, 0, 7113, 7114, 3, 738, 369, 0, 7114, 7115, 5, 64, 0, 0, 7115, 7116, 3, 668, 334, 0, 7116, 7118, 1, 0, 0, 0, 7117, 7113, 1, 0, 0, 0, 7117, 7118, 1, 0, 0, 0, 7118, 7119, 1, 0, 0, 0, 7119, 7262, 5, 3, 0, 0, 7120, 7121, 5, 489, 0, 0, 7121, 7122, 5, 2, 0, 0, 7122, 7125, 3, 668, 334, 0, 7123, 7124, 5, 6, 0, 0, 7124, 7126, 3, 740, 370, 0, 7125, 7123, 1, 0, 0, 0, 7125, 7126, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7128, 5, 3, 0, 0, 7128, 7262, 1, 0, 0, 0, 7129, 7130, 5, 410, 0, 0, 7130, 7131, 5, 2, 0, 0, 7131, 7132, 3, 668, 334, 0, 7132, 7133, 5, 84, 0, 0, 7133, 7134, 3, 668, 334, 0, 7134, 7135, 5, 64, 0, 0, 7135, 7138, 3, 668, 334, 0, 7136, 7137, 5, 62, 0, 0, 7137, 7139, 3, 668, 334, 0, 7138, 7136, 1, 0, 0, 0, 7138, 7139, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 5, 3, 0, 0, 7141, 7262, 1, 0, 0, 0, 7142, 7143, 5, 411, 0, 0, 7143, 7148, 5, 2, 0, 0, 7144, 7145, 3, 676, 338, 0, 7145, 7146, 5, 68, 0, 0, 7146, 7147, 3, 676, 338, 0, 7147, 7149, 1, 0, 0, 0, 7148, 7144, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7262, 5, 3, 0, 0, 7151, 7152, 5, 417, 0, 0, 7152, 7154, 5, 2, 0, 0, 7153, 7155, 3, 742, 371, 0, 7154, 7153, 1, 0, 0, 0, 7154, 7155, 1, 0, 0, 0, 7155, 7156, 1, 0, 0, 0, 7156, 7262, 5, 3, 0, 0, 7157, 7158, 5, 421, 0, 0, 7158, 7160, 5, 2, 0, 0, 7159, 7161, 7, 98, 0, 0, 7160, 7159, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7166, 1, 0, 0, 0, 7162, 7164, 3, 668, 334, 0, 7163, 7162, 1, 0, 0, 0, 7163, 7164, 1, 0, 0, 0, 7164, 7165, 1, 0, 0, 0, 7165, 7167, 5, 64, 0, 0, 7166, 7163, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7169, 3, 726, 363, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7171, 5, 3, 0, 0, 7171, 7262, 1, 0, 0, 0, 7172, 7173, 5, 408, 0, 0, 7173, 7174, 5, 2, 0, 0, 7174, 7175, 3, 668, 334, 0, 7175, 7176, 5, 6, 0, 0, 7176, 7177, 3, 668, 334, 0, 7177, 7178, 5, 3, 0, 0, 7178, 7262, 1, 0, 0, 0, 7179, 7180, 7, 99, 0, 0, 7180, 7262, 3, 528, 264, 0, 7181, 7182, 5, 426, 0, 0, 7182, 7183, 5, 2, 0, 0, 7183, 7184, 5, 266, 0, 0, 7184, 7194, 3, 822, 411, 0, 7185, 7192, 5, 6, 0, 0, 7186, 7187, 5, 424, 0, 0, 7187, 7188, 5, 2, 0, 0, 7188, 7189, 3, 686, 343, 0, 7189, 7190, 5, 3, 0, 0, 7190, 7193, 1, 0, 0, 0, 7191, 7193, 3, 726, 363, 0, 7192, 7186, 1, 0, 0, 0, 7192, 7191, 1, 0, 0, 0, 7193, 7195, 1, 0, 0, 0, 7194, 7185, 1, 0, 0, 0, 7194, 7195, 1, 0, 0, 0, 7195, 7196, 1, 0, 0, 0, 7196, 7197, 5, 3, 0, 0, 7197, 7262, 1, 0, 0, 0, 7198, 7199, 5, 427, 0, 0, 7199, 7200, 5, 2, 0, 0, 7200, 7201, 3, 676, 338, 0, 7201, 7202, 3, 692, 346, 0, 7202, 7203, 5, 3, 0, 0, 7203, 7262, 1, 0, 0, 0, 7204, 7205, 5, 428, 0, 0, 7205, 7206, 5, 2, 0, 0, 7206, 7207, 3, 686, 343, 0, 7207, 7208, 5, 3, 0, 0, 7208, 7262, 1, 0, 0, 0, 7209, 7210, 5, 429, 0, 0, 7210, 7211, 5, 2, 0, 0, 7211, 7212, 3, 690, 345, 0, 7212, 7215, 3, 668, 334, 0, 7213, 7214, 7, 100, 0, 0, 7214, 7216, 5, 378, 0, 0, 7215, 7213, 1, 0, 0, 0, 7215, 7216, 1, 0, 0, 0, 7216, 7217, 1, 0, 0, 0, 7217, 7218, 5, 3, 0, 0, 7218, 7262, 1, 0, 0, 0, 7219, 7220, 5, 430, 0, 0, 7220, 7221, 5, 2, 0, 0, 7221, 7222, 5, 266, 0, 0, 7222, 7225, 3, 822, 411, 0, 7223, 7224, 5, 6, 0, 0, 7224, 7226, 3, 668, 334, 0, 7225, 7223, 1, 0, 0, 0, 7225, 7226, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7228, 5, 3, 0, 0, 7228, 7262, 1, 0, 0, 0, 7229, 7230, 5, 431, 0, 0, 7230, 7231, 5, 2, 0, 0, 7231, 7232, 5, 383, 0, 0, 7232, 7233, 3, 668, 334, 0, 7233, 7234, 5, 6, 0, 0, 7234, 7238, 5, 375, 0, 0, 7235, 7236, 5, 269, 0, 0, 7236, 7239, 5, 450, 0, 0, 7237, 7239, 3, 668, 334, 0, 7238, 7235, 1, 0, 0, 0, 7238, 7237, 1, 0, 0, 0, 7239, 7249, 1, 0, 0, 0, 7240, 7241, 5, 6, 0, 0, 7241, 7247, 5, 339, 0, 0, 7242, 7244, 5, 269, 0, 0, 7243, 7242, 1, 0, 0, 0, 7243, 7244, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7248, 5, 450, 0, 0, 7246, 7248, 5, 385, 0, 0, 7247, 7243, 1, 0, 0, 0, 7247, 7246, 1, 0, 0, 0, 7248, 7250, 1, 0, 0, 0, 7249, 7240, 1, 0, 0, 0, 7249, 7250, 1, 0, 0, 0, 7250, 7251, 1, 0, 0, 0, 7251, 7252, 5, 3, 0, 0, 7252, 7262, 1, 0, 0, 0, 7253, 7254, 5, 432, 0, 0, 7254, 7255, 5, 2, 0, 0, 7255, 7256, 3, 690, 345, 0, 7256, 7257, 3, 668, 334, 0, 7257, 7258, 5, 36, 0, 0, 7258, 7259, 3, 648, 324, 0, 7259, 7260, 5, 3, 0, 0, 7260, 7262, 1, 0, 0, 0, 7261, 7087, 1, 0, 0, 0, 7261, 7093, 1, 0, 0, 0, 7261, 7094, 1, 0, 0, 0, 7261, 7098, 1, 0, 0, 0, 7261, 7099, 1, 0, 0, 0, 7261, 7100, 1, 0, 0, 0, 7261, 7101, 1, 0, 0, 0, 7261, 7102, 1, 0, 0, 0, 7261, 7103, 1, 0, 0, 0, 7261, 7104, 1, 0, 0, 0, 7261, 7111, 1, 0, 0, 0, 7261, 7120, 1, 0, 0, 0, 7261, 7129, 1, 0, 0, 0, 7261, 7142, 1, 0, 0, 0, 7261, 7151, 1, 0, 0, 0, 7261, 7157, 1, 0, 0, 0, 7261, 7172, 1, 0, 0, 0, 7261, 7179, 1, 0, 0, 0, 7261, 7181, 1, 0, 0, 0, 7261, 7198, 1, 0, 0, 0, 7261, 7204, 1, 0, 0, 0, 7261, 7209, 1, 0, 0, 0, 7261, 7219, 1, 0, 0, 0, 7261, 7229, 1, 0, 0, 0, 7261, 7253, 1, 0, 0, 0, 7262, 685, 1, 0, 0, 0, 7263, 7268, 3, 688, 344, 0, 7264, 7265, 5, 6, 0, 0, 7265, 7267, 3, 688, 344, 0, 7266, 7264, 1, 0, 0, 0, 7267, 7270, 1, 0, 0, 0, 7268, 7266, 1, 0, 0, 0, 7268, 7269, 1, 0, 0, 0, 7269, 687, 1, 0, 0, 0, 7270, 7268, 1, 0, 0, 0, 7271, 7274, 3, 668, 334, 0, 7272, 7273, 5, 36, 0, 0, 7273, 7275, 3, 822, 411, 0, 7274, 7272, 1, 0, 0, 0, 7274, 7275, 1, 0, 0, 0, 7275, 689, 1, 0, 0, 0, 7276, 7277, 7, 101, 0, 0, 7277, 691, 1, 0, 0, 0, 7278, 7280, 5, 286, 0, 0, 7279, 7281, 3, 694, 347, 0, 7280, 7279, 1, 0, 0, 0, 7280, 7281, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7284, 3, 676, 338, 0, 7283, 7285, 3, 694, 347, 0, 7284, 7283, 1, 0, 0, 0, 7284, 7285, 1, 0, 0, 0, 7285, 693, 1, 0, 0, 0, 7286, 7287, 5, 147, 0, 0, 7287, 7288, 7, 102, 0, 0, 7288, 695, 1, 0, 0, 0, 7289, 7290, 5, 104, 0, 0, 7290, 7295, 3, 700, 350, 0, 7291, 7292, 5, 6, 0, 0, 7292, 7294, 3, 700, 350, 0, 7293, 7291, 1, 0, 0, 0, 7294, 7297, 1, 0, 0, 0, 7295, 7293, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 697, 1, 0, 0, 0, 7297, 7295, 1, 0, 0, 0, 7298, 7299, 5, 67, 0, 0, 7299, 7300, 3, 668, 334, 0, 7300, 699, 1, 0, 0, 0, 7301, 7302, 3, 816, 408, 0, 7302, 7303, 5, 36, 0, 0, 7303, 7304, 3, 704, 352, 0, 7304, 701, 1, 0, 0, 0, 7305, 7308, 5, 124, 0, 0, 7306, 7309, 3, 704, 352, 0, 7307, 7309, 3, 816, 408, 0, 7308, 7306, 1, 0, 0, 0, 7308, 7307, 1, 0, 0, 0, 7309, 703, 1, 0, 0, 0, 7310, 7312, 5, 2, 0, 0, 7311, 7313, 3, 816, 408, 0, 7312, 7311, 1, 0, 0, 0, 7312, 7313, 1, 0, 0, 0, 7313, 7317, 1, 0, 0, 0, 7314, 7315, 5, 285, 0, 0, 7315, 7316, 5, 147, 0, 0, 7316, 7318, 3, 726, 363, 0, 7317, 7314, 1, 0, 0, 0, 7317, 7318, 1, 0, 0, 0, 7318, 7320, 1, 0, 0, 0, 7319, 7321, 3, 580, 290, 0, 7320, 7319, 1, 0, 0, 0, 7320, 7321, 1, 0, 0, 0, 7321, 7323, 1, 0, 0, 0, 7322, 7324, 3, 706, 353, 0, 7323, 7322, 1, 0, 0, 0, 7323, 7324, 1, 0, 0, 0, 7324, 7325, 1, 0, 0, 0, 7325, 7326, 5, 3, 0, 0, 7326, 705, 1, 0, 0, 0, 7327, 7332, 7, 103, 0, 0, 7328, 7329, 5, 387, 0, 0, 7329, 7330, 3, 708, 354, 0, 7330, 7331, 5, 33, 0, 0, 7331, 7333, 1, 0, 0, 0, 7332, 7328, 1, 0, 0, 0, 7332, 7333, 1, 0, 0, 0, 7333, 7334, 1, 0, 0, 0, 7334, 7335, 3, 708, 354, 0, 7335, 7345, 1, 0, 0, 0, 7336, 7343, 5, 199, 0, 0, 7337, 7338, 5, 434, 0, 0, 7338, 7344, 5, 414, 0, 0, 7339, 7344, 5, 66, 0, 0, 7340, 7344, 5, 467, 0, 0, 7341, 7342, 5, 269, 0, 0, 7342, 7344, 5, 482, 0, 0, 7343, 7337, 1, 0, 0, 0, 7343, 7339, 1, 0, 0, 0, 7343, 7340, 1, 0, 0, 0, 7343, 7341, 1, 0, 0, 0, 7344, 7346, 1, 0, 0, 0, 7345, 7336, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 707, 1, 0, 0, 0, 7347, 7350, 5, 362, 0, 0, 7348, 7350, 3, 668, 334, 0, 7349, 7347, 1, 0, 0, 0, 7349, 7348, 1, 0, 0, 0, 7350, 7351, 1, 0, 0, 0, 7351, 7355, 7, 104, 0, 0, 7352, 7353, 5, 434, 0, 0, 7353, 7355, 5, 414, 0, 0, 7354, 7349, 1, 0, 0, 0, 7354, 7352, 1, 0, 0, 0, 7355, 709, 1, 0, 0, 0, 7356, 7364, 3, 712, 356, 0, 7357, 7358, 5, 2, 0, 0, 7358, 7359, 3, 726, 363, 0, 7359, 7360, 5, 6, 0, 0, 7360, 7361, 3, 668, 334, 0, 7361, 7362, 5, 3, 0, 0, 7362, 7364, 1, 0, 0, 0, 7363, 7356, 1, 0, 0, 0, 7363, 7357, 1, 0, 0, 0, 7364, 711, 1, 0, 0, 0, 7365, 7366, 5, 414, 0, 0, 7366, 7368, 5, 2, 0, 0, 7367, 7369, 3, 726, 363, 0, 7368, 7367, 1, 0, 0, 0, 7368, 7369, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7371, 5, 3, 0, 0, 7371, 713, 1, 0, 0, 0, 7372, 7373, 7, 105, 0, 0, 7373, 715, 1, 0, 0, 0, 7374, 7377, 5, 29, 0, 0, 7375, 7377, 3, 718, 359, 0, 7376, 7374, 1, 0, 0, 0, 7376, 7375, 1, 0, 0, 0, 7377, 717, 1, 0, 0, 0, 7378, 7379, 7, 106, 0, 0, 7379, 719, 1, 0, 0, 0, 7380, 7387, 5, 29, 0, 0, 7381, 7382, 5, 278, 0, 0, 7382, 7383, 5, 2, 0, 0, 7383, 7384, 3, 408, 204, 0, 7384, 7385, 5, 3, 0, 0, 7385, 7387, 1, 0, 0, 0, 7386, 7380, 1, 0, 0, 0, 7386, 7381, 1, 0, 0, 0, 7387, 721, 1, 0, 0, 0, 7388, 7395, 3, 716, 358, 0, 7389, 7390, 5, 278, 0, 0, 7390, 7391, 5, 2, 0, 0, 7391, 7392, 3, 408, 204, 0, 7392, 7393, 5, 3, 0, 0, 7393, 7395, 1, 0, 0, 0, 7394, 7388, 1, 0, 0, 0, 7394, 7389, 1, 0, 0, 0, 7395, 723, 1, 0, 0, 0, 7396, 7402, 3, 722, 361, 0, 7397, 7399, 5, 77, 0, 0, 7398, 7397, 1, 0, 0, 0, 7398, 7399, 1, 0, 0, 0, 7399, 7400, 1, 0, 0, 0, 7400, 7402, 7, 107, 0, 0, 7401, 7396, 1, 0, 0, 0, 7401, 7398, 1, 0, 0, 0, 7402, 725, 1, 0, 0, 0, 7403, 7408, 3, 668, 334, 0, 7404, 7405, 5, 6, 0, 0, 7405, 7407, 3, 668, 334, 0, 7406, 7404, 1, 0, 0, 0, 7407, 7410, 1, 0, 0, 0, 7408, 7406, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 727, 1, 0, 0, 0, 7410, 7408, 1, 0, 0, 0, 7411, 7412, 5, 2, 0, 0, 7412, 7413, 3, 668, 334, 0, 7413, 7414, 5, 3, 0, 0, 7414, 7417, 1, 0, 0, 0, 7415, 7417, 3, 796, 398, 0, 7416, 7411, 1, 0, 0, 0, 7416, 7415, 1, 0, 0, 0, 7417, 729, 1, 0, 0, 0, 7418, 7421, 3, 668, 334, 0, 7419, 7421, 3, 796, 398, 0, 7420, 7418, 1, 0, 0, 0, 7420, 7419, 1, 0, 0, 0, 7421, 731, 1, 0, 0, 0, 7422, 7427, 3, 734, 367, 0, 7423, 7424, 5, 6, 0, 0, 7424, 7426, 3, 734, 367, 0, 7425, 7423, 1, 0, 0, 0, 7426, 7429, 1, 0, 0, 0, 7427, 7425, 1, 0, 0, 0, 7427, 7428, 1, 0, 0, 0, 7428, 733, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7430, 7438, 3, 796, 398, 0, 7431, 7438, 3, 668, 334, 0, 7432, 7435, 3, 818, 409, 0, 7433, 7434, 7, 108, 0, 0, 7434, 7436, 3, 668, 334, 0, 7435, 7433, 1, 0, 0, 0, 7435, 7436, 1, 0, 0, 0, 7436, 7438, 1, 0, 0, 0, 7437, 7430, 1, 0, 0, 0, 7437, 7431, 1, 0, 0, 0, 7437, 7432, 1, 0, 0, 0, 7438, 735, 1, 0, 0, 0, 7439, 7449, 5, 4, 0, 0, 7440, 7450, 3, 726, 363, 0, 7441, 7446, 3, 736, 368, 0, 7442, 7443, 5, 6, 0, 0, 7443, 7445, 3, 736, 368, 0, 7444, 7442, 1, 0, 0, 0, 7445, 7448, 1, 0, 0, 0, 7446, 7444, 1, 0, 0, 0, 7446, 7447, 1, 0, 0, 0, 7447, 7450, 1, 0, 0, 0, 7448, 7446, 1, 0, 0, 0, 7449, 7440, 1, 0, 0, 0, 7449, 7441, 1, 0, 0, 0, 7449, 7450, 1, 0, 0, 0, 7450, 7451, 1, 0, 0, 0, 7451, 7452, 5, 5, 0, 0, 7452, 737, 1, 0, 0, 0, 7453, 7462, 3, 824, 412, 0, 7454, 7462, 5, 384, 0, 0, 7455, 7462, 5, 264, 0, 0, 7456, 7462, 5, 176, 0, 0, 7457, 7462, 5, 218, 0, 0, 7458, 7462, 5, 261, 0, 0, 7459, 7462, 5, 326, 0, 0, 7460, 7462, 3, 806, 403, 0, 7461, 7453, 1, 0, 0, 0, 7461, 7454, 1, 0, 0, 0, 7461, 7455, 1, 0, 0, 0, 7461, 7456, 1, 0, 0, 0, 7461, 7457, 1, 0, 0, 0, 7461, 7458, 1, 0, 0, 0, 7461, 7459, 1, 0, 0, 0, 7461, 7460, 1, 0, 0, 0, 7462, 739, 1, 0, 0, 0, 7463, 7464, 7, 109, 0, 0, 7464, 741, 1, 0, 0, 0, 7465, 7466, 3, 668, 334, 0, 7466, 7467, 5, 64, 0, 0, 7467, 7470, 3, 668, 334, 0, 7468, 7469, 5, 62, 0, 0, 7469, 7471, 3, 668, 334, 0, 7470, 7468, 1, 0, 0, 0, 7470, 7471, 1, 0, 0, 0, 7471, 7487, 1, 0, 0, 0, 7472, 7473, 3, 668, 334, 0, 7473, 7474, 5, 62, 0, 0, 7474, 7477, 3, 668, 334, 0, 7475, 7476, 5, 64, 0, 0, 7476, 7478, 3, 668, 334, 0, 7477, 7475, 1, 0, 0, 0, 7477, 7478, 1, 0, 0, 0, 7478, 7487, 1, 0, 0, 0, 7479, 7480, 3, 668, 334, 0, 7480, 7481, 5, 127, 0, 0, 7481, 7482, 3, 668, 334, 0, 7482, 7483, 5, 197, 0, 0, 7483, 7484, 3, 668, 334, 0, 7484, 7487, 1, 0, 0, 0, 7485, 7487, 3, 726, 363, 0, 7486, 7465, 1, 0, 0, 0, 7486, 7472, 1, 0, 0, 0, 7486, 7479, 1, 0, 0, 0, 7486, 7485, 1, 0, 0, 0, 7487, 743, 1, 0, 0, 0, 7488, 7489, 5, 102, 0, 0, 7489, 7490, 3, 668, 334, 0, 7490, 7491, 5, 93, 0, 0, 7491, 7492, 3, 668, 334, 0, 7492, 745, 1, 0, 0, 0, 7493, 7496, 5, 11, 0, 0, 7494, 7497, 3, 822, 411, 0, 7495, 7497, 5, 9, 0, 0, 7496, 7494, 1, 0, 0, 0, 7496, 7495, 1, 0, 0, 0, 7497, 7511, 1, 0, 0, 0, 7498, 7507, 5, 4, 0, 0, 7499, 7508, 3, 668, 334, 0, 7500, 7502, 3, 668, 334, 0, 7501, 7500, 1, 0, 0, 0, 7501, 7502, 1, 0, 0, 0, 7502, 7503, 1, 0, 0, 0, 7503, 7505, 5, 8, 0, 0, 7504, 7506, 3, 668, 334, 0, 7505, 7504, 1, 0, 0, 0, 7505, 7506, 1, 0, 0, 0, 7506, 7508, 1, 0, 0, 0, 7507, 7499, 1, 0, 0, 0, 7507, 7501, 1, 0, 0, 0, 7508, 7509, 1, 0, 0, 0, 7509, 7511, 5, 5, 0, 0, 7510, 7493, 1, 0, 0, 0, 7510, 7498, 1, 0, 0, 0, 7511, 747, 1, 0, 0, 0, 7512, 7514, 3, 746, 373, 0, 7513, 7512, 1, 0, 0, 0, 7514, 7515, 1, 0, 0, 0, 7515, 7513, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 749, 1, 0, 0, 0, 7517, 7519, 3, 746, 373, 0, 7518, 7517, 1, 0, 0, 0, 7519, 7522, 1, 0, 0, 0, 7520, 7518, 1, 0, 0, 0, 7520, 7521, 1, 0, 0, 0, 7521, 751, 1, 0, 0, 0, 7522, 7520, 1, 0, 0, 0, 7523, 7528, 3, 754, 377, 0, 7524, 7525, 5, 6, 0, 0, 7525, 7527, 3, 754, 377, 0, 7526, 7524, 1, 0, 0, 0, 7527, 7530, 1, 0, 0, 0, 7528, 7526, 1, 0, 0, 0, 7528, 7529, 1, 0, 0, 0, 7529, 753, 1, 0, 0, 0, 7530, 7528, 1, 0, 0, 0, 7531, 7536, 3, 730, 365, 0, 7532, 7533, 5, 36, 0, 0, 7533, 7537, 3, 822, 411, 0, 7534, 7537, 3, 824, 412, 0, 7535, 7537, 1, 0, 0, 0, 7536, 7532, 1, 0, 0, 0, 7536, 7534, 1, 0, 0, 0, 7536, 7535, 1, 0, 0, 0, 7537, 7540, 1, 0, 0, 0, 7538, 7540, 5, 9, 0, 0, 7539, 7531, 1, 0, 0, 0, 7539, 7538, 1, 0, 0, 0, 7540, 755, 1, 0, 0, 0, 7541, 7546, 3, 776, 388, 0, 7542, 7543, 5, 6, 0, 0, 7543, 7545, 3, 776, 388, 0, 7544, 7542, 1, 0, 0, 0, 7545, 7548, 1, 0, 0, 0, 7546, 7544, 1, 0, 0, 0, 7546, 7547, 1, 0, 0, 0, 7547, 757, 1, 0, 0, 0, 7548, 7546, 1, 0, 0, 0, 7549, 7554, 3, 770, 385, 0, 7550, 7551, 5, 6, 0, 0, 7551, 7553, 3, 770, 385, 0, 7552, 7550, 1, 0, 0, 0, 7553, 7556, 1, 0, 0, 0, 7554, 7552, 1, 0, 0, 0, 7554, 7555, 1, 0, 0, 0, 7555, 759, 1, 0, 0, 0, 7556, 7554, 1, 0, 0, 0, 7557, 7562, 3, 786, 393, 0, 7558, 7559, 5, 6, 0, 0, 7559, 7561, 3, 786, 393, 0, 7560, 7558, 1, 0, 0, 0, 7561, 7564, 1, 0, 0, 0, 7562, 7560, 1, 0, 0, 0, 7562, 7563, 1, 0, 0, 0, 7563, 761, 1, 0, 0, 0, 7564, 7562, 1, 0, 0, 0, 7565, 7570, 3, 784, 392, 0, 7566, 7567, 5, 6, 0, 0, 7567, 7569, 3, 784, 392, 0, 7568, 7566, 1, 0, 0, 0, 7569, 7572, 1, 0, 0, 0, 7570, 7568, 1, 0, 0, 0, 7570, 7571, 1, 0, 0, 0, 7571, 763, 1, 0, 0, 0, 7572, 7570, 1, 0, 0, 0, 7573, 7574, 3, 776, 388, 0, 7574, 765, 1, 0, 0, 0, 7575, 7576, 3, 776, 388, 0, 7576, 767, 1, 0, 0, 0, 7577, 7578, 3, 776, 388, 0, 7578, 769, 1, 0, 0, 0, 7579, 7580, 3, 776, 388, 0, 7580, 771, 1, 0, 0, 0, 7581, 7582, 3, 776, 388, 0, 7582, 773, 1, 0, 0, 0, 7583, 7584, 3, 310, 155, 0, 7584, 775, 1, 0, 0, 0, 7585, 7587, 3, 816, 408, 0, 7586, 7588, 3, 748, 374, 0, 7587, 7586, 1, 0, 0, 0, 7587, 7588, 1, 0, 0, 0, 7588, 777, 1, 0, 0, 0, 7589, 7594, 3, 766, 383, 0, 7590, 7591, 5, 6, 0, 0, 7591, 7593, 3, 766, 383, 0, 7592, 7590, 1, 0, 0, 0, 7593, 7596, 1, 0, 0, 0, 7594, 7592, 1, 0, 0, 0, 7594, 7595, 1, 0, 0, 0, 7595, 779, 1, 0, 0, 0, 7596, 7594, 1, 0, 0, 0, 7597, 7602, 3, 816, 408, 0, 7598, 7599, 5, 6, 0, 0, 7599, 7601, 3, 816, 408, 0, 7600, 7598, 1, 0, 0, 0, 7601, 7604, 1, 0, 0, 0, 7602, 7600, 1, 0, 0, 0, 7602, 7603, 1, 0, 0, 0, 7603, 781, 1, 0, 0, 0, 7604, 7602, 1, 0, 0, 0, 7605, 7606, 3, 310, 155, 0, 7606, 783, 1, 0, 0, 0, 7607, 7608, 3, 310, 155, 0, 7608, 785, 1, 0, 0, 0, 7609, 7610, 3, 310, 155, 0, 7610, 787, 1, 0, 0, 0, 7611, 7612, 3, 816, 408, 0, 7612, 789, 1, 0, 0, 0, 7613, 7614, 3, 816, 408, 0, 7614, 791, 1, 0, 0, 0, 7615, 7620, 3, 818, 409, 0, 7616, 7617, 3, 816, 408, 0, 7617, 7618, 3, 748, 374, 0, 7618, 7620, 1, 0, 0, 0, 7619, 7615, 1, 0, 0, 0, 7619, 7616, 1, 0, 0, 0, 7620, 793, 1, 0, 0, 0, 7621, 7626, 3, 818, 409, 0, 7622, 7623, 3, 816, 408, 0, 7623, 7624, 3, 748, 374, 0, 7624, 7626, 1, 0, 0, 0, 7625, 7621, 1, 0, 0, 0, 7625, 7622, 1, 0, 0, 0, 7626, 795, 1, 0, 0, 0, 7627, 7628, 3, 816, 408, 0, 7628, 7629, 3, 750, 375, 0, 7629, 7632, 1, 0, 0, 0, 7630, 7632, 4, 398, 10, 0, 7631, 7627, 1, 0, 0, 0, 7631, 7630, 1, 0, 0, 0, 7632, 797, 1, 0, 0, 0, 7633, 7634, 3, 816, 408, 0, 7634, 7635, 3, 750, 375, 0, 7635, 799, 1, 0, 0, 0, 7636, 7637, 3, 816, 408, 0, 7637, 801, 1, 0, 0, 0, 7638, 7643, 3, 818, 409, 0, 7639, 7640, 3, 816, 408, 0, 7640, 7641, 3, 748, 374, 0, 7641, 7643, 1, 0, 0, 0, 7642, 7638, 1, 0, 0, 0, 7642, 7639, 1, 0, 0, 0, 7643, 803, 1, 0, 0, 0, 7644, 7649, 3, 818, 409, 0, 7645, 7646, 3, 816, 408, 0, 7646, 7647, 3, 748, 374, 0, 7647, 7649, 1, 0, 0, 0, 7648, 7644, 1, 0, 0, 0, 7648, 7645, 1, 0, 0, 0, 7649, 805, 1, 0, 0, 0, 7650, 7653, 3, 808, 404, 0, 7651, 7652, 5, 487, 0, 0, 7652, 7654, 3, 808, 404, 0, 7653, 7651, 1, 0, 0, 0, 7653, 7654, 1, 0, 0, 0, 7654, 807, 1, 0, 0, 0, 7655, 7667, 5, 561, 0, 0, 7656, 7667, 5, 563, 0, 0, 7657, 7661, 5, 565, 0, 0, 7658, 7660, 5, 590, 0, 0, 7659, 7658, 1, 0, 0, 0, 7660, 7663, 1, 0, 0, 0, 7661, 7659, 1, 0, 0, 0, 7661, 7662, 1, 0, 0, 0, 7662, 7664, 1, 0, 0, 0, 7663, 7661, 1, 0, 0, 0, 7664, 7667, 5, 591, 0, 0, 7665, 7667, 5, 586, 0, 0, 7666, 7655, 1, 0, 0, 0, 7666, 7656, 1, 0, 0, 0, 7666, 7657, 1, 0, 0, 0, 7666, 7665, 1, 0, 0, 0, 7667, 809, 1, 0, 0, 0, 7668, 7670, 7, 30, 0, 0, 7669, 7668, 1, 0, 0, 0, 7669, 7670, 1, 0, 0, 0, 7670, 7671, 1, 0, 0, 0, 7671, 7672, 5, 574, 0, 0, 7672, 811, 1, 0, 0, 0, 7673, 7679, 3, 820, 410, 0, 7674, 7679, 5, 52, 0, 0, 7675, 7679, 5, 49, 0, 0, 7676, 7679, 5, 89, 0, 0, 7677, 7679, 5, 524, 0, 0, 7678, 7673, 1, 0, 0, 0, 7678, 7674, 1, 0, 0, 0, 7678, 7675, 1, 0, 0, 0, 7678, 7676, 1, 0, 0, 0, 7678, 7677, 1, 0, 0, 0, 7679, 813, 1, 0, 0, 0, 7680, 7685, 3, 812, 406, 0, 7681, 7682, 5, 6, 0, 0, 7682, 7684, 3, 812, 406, 0, 7683, 7681, 1, 0, 0, 0, 7684, 7687, 1, 0, 0, 0, 7685, 7683, 1, 0, 0, 0, 7685, 7686, 1, 0, 0, 0, 7686, 815, 1, 0, 0, 0, 7687, 7685, 1, 0, 0, 0, 7688, 7691, 3, 824, 412, 0, 7689, 7691, 3, 828, 414, 0, 7690, 7688, 1, 0, 0, 0, 7690, 7689, 1, 0, 0, 0, 7691, 817, 1, 0, 0, 0, 7692, 7695, 3, 824, 412, 0, 7693, 7695, 3, 830, 415, 0, 7694, 7692, 1, 0, 0, 0, 7694, 7693, 1, 0, 0, 0, 7695, 819, 1, 0, 0, 0, 7696, 7700, 3, 824, 412, 0, 7697, 7700, 3, 828, 414, 0, 7698, 7700, 3, 830, 415, 0, 7699, 7696, 1, 0, 0, 0, 7699, 7697, 1, 0, 0, 0, 7699, 7698, 1, 0, 0, 0, 7700, 821, 1, 0, 0, 0, 7701, 7706, 3, 824, 412, 0, 7702, 7706, 3, 828, 414, 0, 7703, 7706, 3, 830, 415, 0, 7704, 7706, 3, 832, 416, 0, 7705, 7701, 1, 0, 0, 0, 7705, 7702, 1, 0, 0, 0, 7705, 7703, 1, 0, 0, 0, 7705, 7704, 1, 0, 0, 0, 7706, 823, 1, 0, 0, 0, 7707, 7710, 5, 552, 0, 0, 7708, 7709, 5, 487, 0, 0, 7709, 7711, 3, 808, 404, 0, 7710, 7708, 1, 0, 0, 0, 7710, 7711, 1, 0, 0, 0, 7711, 7719, 1, 0, 0, 0, 7712, 7719, 3, 806, 403, 0, 7713, 7719, 5, 553, 0, 0, 7714, 7719, 5, 557, 0, 0, 7715, 7719, 5, 577, 0, 0, 7716, 7719, 5, 578, 0, 0, 7717, 7719, 3, 826, 413, 0, 7718, 7707, 1, 0, 0, 0, 7718, 7712, 1, 0, 0, 0, 7718, 7713, 1, 0, 0, 0, 7718, 7714, 1, 0, 0, 0, 7718, 7715, 1, 0, 0, 0, 7718, 7716, 1, 0, 0, 0, 7718, 7717, 1, 0, 0, 0, 7719, 825, 1, 0, 0, 0, 7720, 7721, 7, 110, 0, 0, 7721, 827, 1, 0, 0, 0, 7722, 7774, 5, 387, 0, 0, 7723, 7774, 5, 388, 0, 0, 7724, 7774, 3, 656, 328, 0, 7725, 7774, 5, 390, 0, 0, 7726, 7774, 5, 391, 0, 0, 7727, 7774, 3, 658, 329, 0, 7728, 7774, 5, 393, 0, 0, 7729, 7774, 5, 394, 0, 0, 7730, 7774, 5, 395, 0, 0, 7731, 7774, 5, 396, 0, 0, 7732, 7774, 5, 397, 0, 0, 7733, 7774, 5, 398, 0, 0, 7734, 7774, 5, 399, 0, 0, 7735, 7774, 5, 470, 0, 0, 7736, 7774, 5, 400, 0, 0, 7737, 7774, 5, 401, 0, 0, 7738, 7774, 5, 402, 0, 0, 7739, 7774, 5, 403, 0, 0, 7740, 7774, 5, 404, 0, 0, 7741, 7774, 5, 405, 0, 0, 7742, 7774, 5, 406, 0, 0, 7743, 7774, 5, 407, 0, 0, 7744, 7774, 5, 489, 0, 0, 7745, 7774, 5, 408, 0, 0, 7746, 7774, 3, 652, 326, 0, 7747, 7774, 5, 453, 0, 0, 7748, 7774, 5, 410, 0, 0, 7749, 7774, 5, 411, 0, 0, 7750, 7774, 5, 412, 0, 0, 7751, 7774, 5, 413, 0, 0, 7752, 7774, 5, 414, 0, 0, 7753, 7774, 5, 415, 0, 0, 7754, 7774, 5, 416, 0, 0, 7755, 7774, 5, 417, 0, 0, 7756, 7774, 5, 418, 0, 0, 7757, 7774, 5, 419, 0, 0, 7758, 7774, 5, 420, 0, 0, 7759, 7774, 5, 421, 0, 0, 7760, 7774, 5, 422, 0, 0, 7761, 7774, 5, 423, 0, 0, 7762, 7774, 5, 424, 0, 0, 7763, 7774, 5, 425, 0, 0, 7764, 7774, 5, 426, 0, 0, 7765, 7774, 5, 427, 0, 0, 7766, 7774, 5, 428, 0, 0, 7767, 7774, 5, 476, 0, 0, 7768, 7774, 5, 429, 0, 0, 7769, 7774, 5, 430, 0, 0, 7770, 7774, 5, 431, 0, 0, 7771, 7774, 5, 432, 0, 0, 7772, 7774, 5, 474, 0, 0, 7773, 7722, 1, 0, 0, 0, 7773, 7723, 1, 0, 0, 0, 7773, 7724, 1, 0, 0, 0, 7773, 7725, 1, 0, 0, 0, 7773, 7726, 1, 0, 0, 0, 7773, 7727, 1, 0, 0, 0, 7773, 7728, 1, 0, 0, 0, 7773, 7729, 1, 0, 0, 0, 7773, 7730, 1, 0, 0, 0, 7773, 7731, 1, 0, 0, 0, 7773, 7732, 1, 0, 0, 0, 7773, 7733, 1, 0, 0, 0, 7773, 7734, 1, 0, 0, 0, 7773, 7735, 1, 0, 0, 0, 7773, 7736, 1, 0, 0, 0, 7773, 7737, 1, 0, 0, 0, 7773, 7738, 1, 0, 0, 0, 7773, 7739, 1, 0, 0, 0, 7773, 7740, 1, 0, 0, 0, 7773, 7741, 1, 0, 0, 0, 7773, 7742, 1, 0, 0, 0, 7773, 7743, 1, 0, 0, 0, 7773, 7744, 1, 0, 0, 0, 7773, 7745, 1, 0, 0, 0, 7773, 7746, 1, 0, 0, 0, 7773, 7747, 1, 0, 0, 0, 7773, 7748, 1, 0, 0, 0, 7773, 7749, 1, 0, 0, 0, 7773, 7750, 1, 0, 0, 0, 7773, 7751, 1, 0, 0, 0, 7773, 7752, 1, 0, 0, 0, 7773, 7753, 1, 0, 0, 0, 7773, 7754, 1, 0, 0, 0, 7773, 7755, 1, 0, 0, 0, 7773, 7756, 1, 0, 0, 0, 7773, 7757, 1, 0, 0, 0, 7773, 7758, 1, 0, 0, 0, 7773, 7759, 1, 0, 0, 0, 7773, 7760, 1, 0, 0, 0, 7773, 7761, 1, 0, 0, 0, 7773, 7762, 1, 0, 0, 0, 7773, 7763, 1, 0, 0, 0, 7773, 7764, 1, 0, 0, 0, 7773, 7765, 1, 0, 0, 0, 7773, 7766, 1, 0, 0, 0, 7773, 7767, 1, 0, 0, 0, 7773, 7768, 1, 0, 0, 0, 7773, 7769, 1, 0, 0, 0, 7773, 7770, 1, 0, 0, 0, 7773, 7771, 1, 0, 0, 0, 7773, 7772, 1, 0, 0, 0, 7774, 829, 1, 0, 0, 0, 7775, 7776, 7, 111, 0, 0, 7776, 831, 1, 0, 0, 0, 7777, 7778, 7, 112, 0, 0, 7778, 833, 1, 0, 0, 0, 7779, 7781, 3, 836, 418, 0, 7780, 7779, 1, 0, 0, 0, 7780, 7781, 1, 0, 0, 0, 7781, 7792, 1, 0, 0, 0, 7782, 7790, 5, 178, 0, 0, 7783, 7787, 3, 838, 419, 0, 7784, 7787, 5, 178, 0, 0, 7785, 7787, 3, 836, 418, 0, 7786, 7783, 1, 0, 0, 0, 7786, 7784, 1, 0, 0, 0, 7786, 7785, 1, 0, 0, 0, 7787, 7788, 1, 0, 0, 0, 7788, 7786, 1, 0, 0, 0, 7788, 7789, 1, 0, 0, 0, 7789, 7791, 1, 0, 0, 0, 7790, 7786, 1, 0, 0, 0, 7790, 7791, 1, 0, 0, 0, 7791, 7793, 1, 0, 0, 0, 7792, 7782, 1, 0, 0, 0, 7792, 7793, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7798, 5, 146, 0, 0, 7795, 7797, 3, 844, 422, 0, 7796, 7795, 1, 0, 0, 0, 7797, 7800, 1, 0, 0, 0, 7798, 7796, 1, 0, 0, 0, 7798, 7799, 1, 0, 0, 0, 7799, 7802, 1, 0, 0, 0, 7800, 7798, 1, 0, 0, 0, 7801, 7803, 3, 922, 461, 0, 7802, 7801, 1, 0, 0, 0, 7802, 7803, 1, 0, 0, 0, 7803, 7804, 1, 0, 0, 0, 7804, 7806, 5, 454, 0, 0, 7805, 7807, 3, 926, 463, 0, 7806, 7805, 1, 0, 0, 0, 7806, 7807, 1, 0, 0, 0, 7807, 835, 1, 0, 0, 0, 7808, 7809, 5, 18, 0, 0, 7809, 7810, 3, 926, 463, 0, 7810, 7811, 5, 19, 0, 0, 7811, 837, 1, 0, 0, 0, 7812, 7859, 3, 926, 463, 0, 7813, 7814, 5, 496, 0, 0, 7814, 7817, 5, 62, 0, 0, 7815, 7818, 5, 28, 0, 0, 7816, 7818, 3, 816, 408, 0, 7817, 7815, 1, 0, 0, 0, 7817, 7816, 1, 0, 0, 0, 7818, 7860, 1, 0, 0, 0, 7819, 7821, 5, 497, 0, 0, 7820, 7819, 1, 0, 0, 0, 7820, 7821, 1, 0, 0, 0, 7821, 7822, 1, 0, 0, 0, 7822, 7824, 3, 646, 323, 0, 7823, 7825, 3, 90, 45, 0, 7824, 7823, 1, 0, 0, 0, 7824, 7825, 1, 0, 0, 0, 7825, 7828, 1, 0, 0, 0, 7826, 7827, 5, 77, 0, 0, 7827, 7829, 5, 78, 0, 0, 7828, 7826, 1, 0, 0, 0, 7828, 7829, 1, 0, 0, 0, 7829, 7835, 1, 0, 0, 0, 7830, 7833, 3, 842, 421, 0, 7831, 7833, 5, 53, 0, 0, 7832, 7830, 1, 0, 0, 0, 7832, 7831, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 7836, 3, 928, 464, 0, 7835, 7832, 1, 0, 0, 0, 7835, 7836, 1, 0, 0, 0, 7836, 7860, 1, 0, 0, 0, 7837, 7839, 5, 269, 0, 0, 7838, 7837, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7840, 1, 0, 0, 0, 7840, 7842, 5, 324, 0, 0, 7841, 7838, 1, 0, 0, 0, 7841, 7842, 1, 0, 0, 0, 7842, 7843, 1, 0, 0, 0, 7843, 7855, 5, 172, 0, 0, 7844, 7845, 5, 2, 0, 0, 7845, 7850, 3, 840, 420, 0, 7846, 7847, 5, 6, 0, 0, 7847, 7849, 3, 840, 420, 0, 7848, 7846, 1, 0, 0, 0, 7849, 7852, 1, 0, 0, 0, 7850, 7848, 1, 0, 0, 0, 7850, 7851, 1, 0, 0, 0, 7851, 7853, 1, 0, 0, 0, 7852, 7850, 1, 0, 0, 0, 7853, 7854, 5, 3, 0, 0, 7854, 7856, 1, 0, 0, 0, 7855, 7844, 1, 0, 0, 0, 7855, 7856, 1, 0, 0, 0, 7856, 7857, 1, 0, 0, 0, 7857, 7858, 7, 113, 0, 0, 7858, 7860, 3, 554, 277, 0, 7859, 7813, 1, 0, 0, 0, 7859, 7820, 1, 0, 0, 0, 7859, 7841, 1, 0, 0, 0, 7860, 7861, 1, 0, 0, 0, 7861, 7862, 5, 7, 0, 0, 7862, 839, 1, 0, 0, 0, 7863, 7864, 3, 926, 463, 0, 7864, 7865, 3, 646, 323, 0, 7865, 841, 1, 0, 0, 0, 7866, 7867, 7, 114, 0, 0, 7867, 843, 1, 0, 0, 0, 7868, 7869, 3, 834, 417, 0, 7869, 7870, 5, 7, 0, 0, 7870, 7893, 1, 0, 0, 0, 7871, 7893, 3, 872, 436, 0, 7872, 7893, 3, 874, 437, 0, 7873, 7893, 3, 850, 425, 0, 7874, 7893, 3, 858, 429, 0, 7875, 7893, 3, 862, 431, 0, 7876, 7893, 3, 864, 432, 0, 7877, 7893, 3, 868, 434, 0, 7878, 7893, 3, 870, 435, 0, 7879, 7893, 3, 878, 439, 0, 7880, 7893, 3, 882, 441, 0, 7881, 7893, 3, 884, 442, 0, 7882, 7893, 3, 846, 423, 0, 7883, 7893, 3, 848, 424, 0, 7884, 7893, 3, 852, 426, 0, 7885, 7893, 3, 888, 444, 0, 7886, 7893, 3, 892, 446, 0, 7887, 7893, 3, 896, 448, 0, 7888, 7893, 3, 912, 456, 0, 7889, 7893, 3, 914, 457, 0, 7890, 7893, 3, 916, 458, 0, 7891, 7893, 3, 918, 459, 0, 7892, 7868, 1, 0, 0, 0, 7892, 7871, 1, 0, 0, 0, 7892, 7872, 1, 0, 0, 0, 7892, 7873, 1, 0, 0, 0, 7892, 7874, 1, 0, 0, 0, 7892, 7875, 1, 0, 0, 0, 7892, 7876, 1, 0, 0, 0, 7892, 7877, 1, 0, 0, 0, 7892, 7878, 1, 0, 0, 0, 7892, 7879, 1, 0, 0, 0, 7892, 7880, 1, 0, 0, 0, 7892, 7881, 1, 0, 0, 0, 7892, 7882, 1, 0, 0, 0, 7892, 7883, 1, 0, 0, 0, 7892, 7884, 1, 0, 0, 0, 7892, 7885, 1, 0, 0, 0, 7892, 7886, 1, 0, 0, 0, 7892, 7887, 1, 0, 0, 0, 7892, 7888, 1, 0, 0, 0, 7892, 7889, 1, 0, 0, 0, 7892, 7890, 1, 0, 0, 0, 7892, 7891, 1, 0, 0, 0, 7893, 845, 1, 0, 0, 0, 7894, 7895, 5, 498, 0, 0, 7895, 7896, 3, 928, 464, 0, 7896, 7897, 5, 7, 0, 0, 7897, 847, 1, 0, 0, 0, 7898, 7899, 5, 433, 0, 0, 7899, 7906, 3, 926, 463, 0, 7900, 7902, 5, 2, 0, 0, 7901, 7903, 3, 726, 363, 0, 7902, 7901, 1, 0, 0, 0, 7902, 7903, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 5, 3, 0, 0, 7905, 7907, 5, 7, 0, 0, 7906, 7900, 1, 0, 0, 0, 7906, 7907, 1, 0, 0, 0, 7907, 7918, 1, 0, 0, 0, 7908, 7909, 5, 57, 0, 0, 7909, 7910, 3, 926, 463, 0, 7910, 7912, 5, 2, 0, 0, 7911, 7913, 3, 726, 363, 0, 7912, 7911, 1, 0, 0, 0, 7912, 7913, 1, 0, 0, 0, 7913, 7914, 1, 0, 0, 0, 7914, 7915, 5, 3, 0, 0, 7915, 7916, 5, 7, 0, 0, 7916, 7918, 1, 0, 0, 0, 7917, 7898, 1, 0, 0, 0, 7917, 7908, 1, 0, 0, 0, 7918, 849, 1, 0, 0, 0, 7919, 7920, 3, 856, 428, 0, 7920, 7921, 3, 842, 421, 0, 7921, 7922, 3, 928, 464, 0, 7922, 7923, 5, 7, 0, 0, 7923, 851, 1, 0, 0, 0, 7924, 7926, 5, 499, 0, 0, 7925, 7927, 7, 115, 0, 0, 7926, 7925, 1, 0, 0, 0, 7926, 7927, 1, 0, 0, 0, 7927, 7928, 1, 0, 0, 0, 7928, 7929, 5, 500, 0, 0, 7929, 7934, 3, 854, 427, 0, 7930, 7931, 5, 6, 0, 0, 7931, 7933, 3, 854, 427, 0, 7932, 7930, 1, 0, 0, 0, 7933, 7936, 1, 0, 0, 0, 7934, 7932, 1, 0, 0, 0, 7934, 7935, 1, 0, 0, 0, 7935, 7937, 1, 0, 0, 0, 7936, 7934, 1, 0, 0, 0, 7937, 7938, 5, 7, 0, 0, 7938, 853, 1, 0, 0, 0, 7939, 7940, 3, 856, 428, 0, 7940, 7941, 3, 842, 421, 0, 7941, 7942, 3, 816, 408, 0, 7942, 855, 1, 0, 0, 0, 7943, 7946, 3, 310, 155, 0, 7944, 7946, 5, 28, 0, 0, 7945, 7943, 1, 0, 0, 0, 7945, 7944, 1, 0, 0, 0, 7946, 7953, 1, 0, 0, 0, 7947, 7948, 5, 4, 0, 0, 7948, 7949, 3, 668, 334, 0, 7949, 7950, 5, 5, 0, 0, 7950, 7952, 1, 0, 0, 0, 7951, 7947, 1, 0, 0, 0, 7952, 7955, 1, 0, 0, 0, 7953, 7951, 1, 0, 0, 0, 7953, 7954, 1, 0, 0, 0, 7954, 857, 1, 0, 0, 0, 7955, 7953, 1, 0, 0, 0, 7956, 7957, 5, 220, 0, 0, 7957, 7958, 3, 928, 464, 0, 7958, 7962, 5, 93, 0, 0, 7959, 7961, 3, 844, 422, 0, 7960, 7959, 1, 0, 0, 0, 7961, 7964, 1, 0, 0, 0, 7962, 7960, 1, 0, 0, 0, 7962, 7963, 1, 0, 0, 0, 7963, 7976, 1, 0, 0, 0, 7964, 7962, 1, 0, 0, 0, 7965, 7966, 5, 502, 0, 0, 7966, 7967, 3, 668, 334, 0, 7967, 7971, 5, 93, 0, 0, 7968, 7970, 3, 844, 422, 0, 7969, 7968, 1, 0, 0, 0, 7970, 7973, 1, 0, 0, 0, 7971, 7969, 1, 0, 0, 0, 7971, 7972, 1, 0, 0, 0, 7972, 7975, 1, 0, 0, 0, 7973, 7971, 1, 0, 0, 0, 7974, 7965, 1, 0, 0, 0, 7975, 7978, 1, 0, 0, 0, 7976, 7974, 1, 0, 0, 0, 7976, 7977, 1, 0, 0, 0, 7977, 7980, 1, 0, 0, 0, 7978, 7976, 1, 0, 0, 0, 7979, 7981, 3, 860, 430, 0, 7980, 7979, 1, 0, 0, 0, 7980, 7981, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 7983, 5, 454, 0, 0, 7983, 7984, 5, 220, 0, 0, 7984, 7985, 5, 7, 0, 0, 7985, 859, 1, 0, 0, 0, 7986, 7990, 5, 58, 0, 0, 7987, 7989, 3, 844, 422, 0, 7988, 7987, 1, 0, 0, 0, 7989, 7992, 1, 0, 0, 0, 7990, 7988, 1, 0, 0, 0, 7990, 7991, 1, 0, 0, 0, 7991, 861, 1, 0, 0, 0, 7992, 7990, 1, 0, 0, 0, 7993, 7995, 5, 40, 0, 0, 7994, 7996, 3, 928, 464, 0, 7995, 7994, 1, 0, 0, 0, 7995, 7996, 1, 0, 0, 0, 7996, 8006, 1, 0, 0, 0, 7997, 7998, 5, 102, 0, 0, 7998, 7999, 3, 726, 363, 0, 7999, 8003, 5, 93, 0, 0, 8000, 8002, 3, 844, 422, 0, 8001, 8000, 1, 0, 0, 0, 8002, 8005, 1, 0, 0, 0, 8003, 8001, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 8007, 1, 0, 0, 0, 8005, 8003, 1, 0, 0, 0, 8006, 7997, 1, 0, 0, 0, 8007, 8008, 1, 0, 0, 0, 8008, 8006, 1, 0, 0, 0, 8008, 8009, 1, 0, 0, 0, 8009, 8011, 1, 0, 0, 0, 8010, 8012, 3, 860, 430, 0, 8011, 8010, 1, 0, 0, 0, 8011, 8012, 1, 0, 0, 0, 8012, 8013, 1, 0, 0, 0, 8013, 8014, 5, 454, 0, 0, 8014, 8015, 5, 40, 0, 0, 8015, 8016, 5, 7, 0, 0, 8016, 863, 1, 0, 0, 0, 8017, 8019, 3, 836, 418, 0, 8018, 8017, 1, 0, 0, 0, 8018, 8019, 1, 0, 0, 0, 8019, 8024, 1, 0, 0, 0, 8020, 8021, 5, 503, 0, 0, 8021, 8025, 3, 668, 334, 0, 8022, 8023, 5, 62, 0, 0, 8023, 8025, 3, 866, 433, 0, 8024, 8020, 1, 0, 0, 0, 8024, 8022, 1, 0, 0, 0, 8024, 8025, 1, 0, 0, 0, 8025, 8026, 1, 0, 0, 0, 8026, 8027, 3, 880, 440, 0, 8027, 865, 1, 0, 0, 0, 8028, 8029, 3, 308, 154, 0, 8029, 8052, 5, 68, 0, 0, 8030, 8032, 3, 816, 408, 0, 8031, 8033, 3, 528, 264, 0, 8032, 8031, 1, 0, 0, 0, 8032, 8033, 1, 0, 0, 0, 8033, 8053, 1, 0, 0, 0, 8034, 8053, 3, 554, 277, 0, 8035, 8053, 3, 514, 257, 0, 8036, 8037, 5, 202, 0, 0, 8037, 8040, 3, 668, 334, 0, 8038, 8039, 5, 100, 0, 0, 8039, 8041, 3, 726, 363, 0, 8040, 8038, 1, 0, 0, 0, 8040, 8041, 1, 0, 0, 0, 8041, 8053, 1, 0, 0, 0, 8042, 8044, 5, 504, 0, 0, 8043, 8042, 1, 0, 0, 0, 8043, 8044, 1, 0, 0, 0, 8044, 8045, 1, 0, 0, 0, 8045, 8046, 3, 668, 334, 0, 8046, 8047, 5, 24, 0, 0, 8047, 8050, 3, 668, 334, 0, 8048, 8049, 5, 147, 0, 0, 8049, 8051, 3, 668, 334, 0, 8050, 8048, 1, 0, 0, 0, 8050, 8051, 1, 0, 0, 0, 8051, 8053, 1, 0, 0, 0, 8052, 8030, 1, 0, 0, 0, 8052, 8034, 1, 0, 0, 0, 8052, 8035, 1, 0, 0, 0, 8052, 8036, 1, 0, 0, 0, 8052, 8043, 1, 0, 0, 0, 8053, 867, 1, 0, 0, 0, 8054, 8056, 3, 836, 418, 0, 8055, 8054, 1, 0, 0, 0, 8055, 8056, 1, 0, 0, 0, 8056, 8057, 1, 0, 0, 0, 8057, 8058, 5, 505, 0, 0, 8058, 8061, 3, 308, 154, 0, 8059, 8060, 5, 506, 0, 0, 8060, 8062, 5, 574, 0, 0, 8061, 8059, 1, 0, 0, 0, 8061, 8062, 1, 0, 0, 0, 8062, 8063, 1, 0, 0, 0, 8063, 8064, 5, 68, 0, 0, 8064, 8065, 5, 35, 0, 0, 8065, 8066, 3, 668, 334, 0, 8066, 8067, 3, 880, 440, 0, 8067, 869, 1, 0, 0, 0, 8068, 8070, 7, 116, 0, 0, 8069, 8071, 3, 926, 463, 0, 8070, 8069, 1, 0, 0, 0, 8070, 8071, 1, 0, 0, 0, 8071, 8074, 1, 0, 0, 0, 8072, 8073, 5, 102, 0, 0, 8073, 8075, 3, 928, 464, 0, 8074, 8072, 1, 0, 0, 0, 8074, 8075, 1, 0, 0, 0, 8075, 8076, 1, 0, 0, 0, 8076, 8077, 5, 7, 0, 0, 8077, 871, 1, 0, 0, 0, 8078, 8093, 5, 508, 0, 0, 8079, 8080, 5, 268, 0, 0, 8080, 8094, 3, 928, 464, 0, 8081, 8088, 5, 509, 0, 0, 8082, 8083, 5, 202, 0, 0, 8083, 8084, 3, 668, 334, 0, 8084, 8085, 5, 100, 0, 0, 8085, 8086, 3, 726, 363, 0, 8086, 8089, 1, 0, 0, 0, 8087, 8089, 3, 554, 277, 0, 8088, 8082, 1, 0, 0, 0, 8088, 8087, 1, 0, 0, 0, 8089, 8094, 1, 0, 0, 0, 8090, 8092, 3, 928, 464, 0, 8091, 8090, 1, 0, 0, 0, 8091, 8092, 1, 0, 0, 0, 8092, 8094, 1, 0, 0, 0, 8093, 8079, 1, 0, 0, 0, 8093, 8081, 1, 0, 0, 0, 8093, 8091, 1, 0, 0, 0, 8094, 8095, 1, 0, 0, 0, 8095, 8096, 5, 7, 0, 0, 8096, 873, 1, 0, 0, 0, 8097, 8127, 5, 510, 0, 0, 8098, 8100, 7, 117, 0, 0, 8099, 8098, 1, 0, 0, 0, 8099, 8100, 1, 0, 0, 0, 8100, 8113, 1, 0, 0, 0, 8101, 8114, 3, 824, 412, 0, 8102, 8103, 5, 511, 0, 0, 8103, 8114, 3, 806, 403, 0, 8104, 8111, 3, 806, 403, 0, 8105, 8106, 5, 6, 0, 0, 8106, 8108, 3, 668, 334, 0, 8107, 8105, 1, 0, 0, 0, 8108, 8109, 1, 0, 0, 0, 8109, 8107, 1, 0, 0, 0, 8109, 8110, 1, 0, 0, 0, 8110, 8112, 1, 0, 0, 0, 8111, 8107, 1, 0, 0, 0, 8111, 8112, 1, 0, 0, 0, 8112, 8114, 1, 0, 0, 0, 8113, 8101, 1, 0, 0, 0, 8113, 8102, 1, 0, 0, 0, 8113, 8104, 1, 0, 0, 0, 8113, 8114, 1, 0, 0, 0, 8114, 8124, 1, 0, 0, 0, 8115, 8116, 5, 100, 0, 0, 8116, 8121, 3, 876, 438, 0, 8117, 8118, 5, 6, 0, 0, 8118, 8120, 3, 876, 438, 0, 8119, 8117, 1, 0, 0, 0, 8120, 8123, 1, 0, 0, 0, 8121, 8119, 1, 0, 0, 0, 8121, 8122, 1, 0, 0, 0, 8122, 8125, 1, 0, 0, 0, 8123, 8121, 1, 0, 0, 0, 8124, 8115, 1, 0, 0, 0, 8124, 8125, 1, 0, 0, 0, 8125, 8126, 1, 0, 0, 0, 8126, 8128, 5, 7, 0, 0, 8127, 8099, 1, 0, 0, 0, 8127, 8128, 1, 0, 0, 0, 8128, 875, 1, 0, 0, 0, 8129, 8130, 3, 824, 412, 0, 8130, 8131, 5, 10, 0, 0, 8131, 8132, 3, 668, 334, 0, 8132, 877, 1, 0, 0, 0, 8133, 8134, 5, 518, 0, 0, 8134, 8137, 3, 928, 464, 0, 8135, 8136, 5, 6, 0, 0, 8136, 8138, 3, 928, 464, 0, 8137, 8135, 1, 0, 0, 0, 8137, 8138, 1, 0, 0, 0, 8138, 8139, 1, 0, 0, 0, 8139, 8140, 5, 7, 0, 0, 8140, 879, 1, 0, 0, 0, 8141, 8145, 5, 519, 0, 0, 8142, 8144, 3, 844, 422, 0, 8143, 8142, 1, 0, 0, 0, 8144, 8147, 1, 0, 0, 0, 8145, 8143, 1, 0, 0, 0, 8145, 8146, 1, 0, 0, 0, 8146, 8148, 1, 0, 0, 0, 8147, 8145, 1, 0, 0, 0, 8148, 8149, 5, 454, 0, 0, 8149, 8151, 5, 519, 0, 0, 8150, 8152, 3, 926, 463, 0, 8151, 8150, 1, 0, 0, 0, 8151, 8152, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8154, 5, 7, 0, 0, 8154, 881, 1, 0, 0, 0, 8155, 8157, 3, 4, 2, 0, 8156, 8158, 3, 886, 443, 0, 8157, 8156, 1, 0, 0, 0, 8157, 8158, 1, 0, 0, 0, 8158, 8159, 1, 0, 0, 0, 8159, 8160, 5, 7, 0, 0, 8160, 883, 1, 0, 0, 0, 8161, 8162, 5, 202, 0, 0, 8162, 8178, 3, 668, 334, 0, 8163, 8165, 3, 886, 443, 0, 8164, 8163, 1, 0, 0, 0, 8164, 8165, 1, 0, 0, 0, 8165, 8168, 1, 0, 0, 0, 8166, 8167, 5, 100, 0, 0, 8167, 8169, 3, 726, 363, 0, 8168, 8166, 1, 0, 0, 0, 8168, 8169, 1, 0, 0, 0, 8169, 8179, 1, 0, 0, 0, 8170, 8171, 5, 100, 0, 0, 8171, 8173, 3, 726, 363, 0, 8172, 8170, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8175, 1, 0, 0, 0, 8174, 8176, 3, 886, 443, 0, 8175, 8174, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 8179, 1, 0, 0, 0, 8177, 8179, 1, 0, 0, 0, 8178, 8164, 1, 0, 0, 0, 8178, 8172, 1, 0, 0, 0, 8178, 8177, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 8181, 5, 7, 0, 0, 8181, 885, 1, 0, 0, 0, 8182, 8184, 5, 71, 0, 0, 8183, 8185, 5, 346, 0, 0, 8184, 8183, 1, 0, 0, 0, 8184, 8185, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8187, 3, 726, 363, 0, 8187, 887, 1, 0, 0, 0, 8188, 8220, 5, 520, 0, 0, 8189, 8194, 3, 920, 460, 0, 8190, 8192, 5, 269, 0, 0, 8191, 8190, 1, 0, 0, 0, 8191, 8192, 1, 0, 0, 0, 8192, 8193, 1, 0, 0, 0, 8193, 8195, 5, 324, 0, 0, 8194, 8191, 1, 0, 0, 0, 8194, 8195, 1, 0, 0, 0, 8195, 8196, 1, 0, 0, 0, 8196, 8204, 5, 62, 0, 0, 8197, 8205, 3, 554, 277, 0, 8198, 8199, 5, 202, 0, 0, 8199, 8202, 3, 928, 464, 0, 8200, 8201, 5, 100, 0, 0, 8201, 8203, 3, 726, 363, 0, 8202, 8200, 1, 0, 0, 0, 8202, 8203, 1, 0, 0, 0, 8203, 8205, 1, 0, 0, 0, 8204, 8197, 1, 0, 0, 0, 8204, 8198, 1, 0, 0, 0, 8205, 8221, 1, 0, 0, 0, 8206, 8218, 3, 816, 408, 0, 8207, 8208, 5, 2, 0, 0, 8208, 8213, 3, 890, 445, 0, 8209, 8210, 5, 6, 0, 0, 8210, 8212, 3, 890, 445, 0, 8211, 8209, 1, 0, 0, 0, 8212, 8215, 1, 0, 0, 0, 8213, 8211, 1, 0, 0, 0, 8213, 8214, 1, 0, 0, 0, 8214, 8216, 1, 0, 0, 0, 8215, 8213, 1, 0, 0, 0, 8216, 8217, 5, 3, 0, 0, 8217, 8219, 1, 0, 0, 0, 8218, 8207, 1, 0, 0, 0, 8218, 8219, 1, 0, 0, 0, 8219, 8221, 1, 0, 0, 0, 8220, 8189, 1, 0, 0, 0, 8220, 8206, 1, 0, 0, 0, 8221, 8222, 1, 0, 0, 0, 8222, 8223, 5, 7, 0, 0, 8223, 889, 1, 0, 0, 0, 8224, 8225, 3, 816, 408, 0, 8225, 8226, 5, 20, 0, 0, 8226, 8228, 1, 0, 0, 0, 8227, 8224, 1, 0, 0, 0, 8227, 8228, 1, 0, 0, 0, 8228, 8229, 1, 0, 0, 0, 8229, 8230, 3, 668, 334, 0, 8230, 891, 1, 0, 0, 0, 8231, 8233, 5, 61, 0, 0, 8232, 8234, 3, 894, 447, 0, 8233, 8232, 1, 0, 0, 0, 8233, 8234, 1, 0, 0, 0, 8234, 8236, 1, 0, 0, 0, 8235, 8237, 3, 326, 163, 0, 8236, 8235, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8238, 1, 0, 0, 0, 8238, 8239, 3, 920, 460, 0, 8239, 8240, 5, 71, 0, 0, 8240, 8241, 3, 726, 363, 0, 8241, 8242, 5, 7, 0, 0, 8242, 893, 1, 0, 0, 0, 8243, 8258, 5, 268, 0, 0, 8244, 8258, 5, 293, 0, 0, 8245, 8258, 5, 207, 0, 0, 8246, 8258, 5, 249, 0, 0, 8247, 8249, 7, 51, 0, 0, 8248, 8247, 1, 0, 0, 0, 8248, 8249, 1, 0, 0, 0, 8249, 8250, 1, 0, 0, 0, 8250, 8258, 3, 668, 334, 0, 8251, 8258, 5, 30, 0, 0, 8252, 8255, 7, 118, 0, 0, 8253, 8256, 3, 668, 334, 0, 8254, 8256, 5, 30, 0, 0, 8255, 8253, 1, 0, 0, 0, 8255, 8254, 1, 0, 0, 0, 8255, 8256, 1, 0, 0, 0, 8256, 8258, 1, 0, 0, 0, 8257, 8243, 1, 0, 0, 0, 8257, 8244, 1, 0, 0, 0, 8257, 8245, 1, 0, 0, 0, 8257, 8246, 1, 0, 0, 0, 8257, 8248, 1, 0, 0, 0, 8257, 8251, 1, 0, 0, 0, 8257, 8252, 1, 0, 0, 0, 8258, 895, 1, 0, 0, 0, 8259, 8261, 5, 265, 0, 0, 8260, 8262, 3, 894, 447, 0, 8261, 8260, 1, 0, 0, 0, 8261, 8262, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8264, 3, 920, 460, 0, 8264, 8265, 5, 7, 0, 0, 8265, 897, 1, 0, 0, 0, 8266, 8268, 3, 566, 283, 0, 8267, 8266, 1, 0, 0, 0, 8267, 8268, 1, 0, 0, 0, 8268, 8269, 1, 0, 0, 0, 8269, 8270, 5, 525, 0, 0, 8270, 8272, 5, 71, 0, 0, 8271, 8273, 5, 81, 0, 0, 8272, 8271, 1, 0, 0, 0, 8272, 8273, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, 0, 8274, 8276, 3, 770, 385, 0, 8275, 8277, 5, 9, 0, 0, 8276, 8275, 1, 0, 0, 0, 8276, 8277, 1, 0, 0, 0, 8277, 8282, 1, 0, 0, 0, 8278, 8280, 5, 36, 0, 0, 8279, 8278, 1, 0, 0, 0, 8279, 8280, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 8283, 3, 816, 408, 0, 8282, 8279, 1, 0, 0, 0, 8282, 8283, 1, 0, 0, 0, 8283, 8284, 1, 0, 0, 0, 8284, 8285, 5, 100, 0, 0, 8285, 8286, 3, 900, 450, 0, 8286, 8287, 5, 80, 0, 0, 8287, 8289, 3, 668, 334, 0, 8288, 8290, 3, 902, 451, 0, 8289, 8288, 1, 0, 0, 0, 8290, 8291, 1, 0, 0, 0, 8291, 8289, 1, 0, 0, 0, 8291, 8292, 1, 0, 0, 0, 8292, 8294, 1, 0, 0, 0, 8293, 8295, 3, 540, 270, 0, 8294, 8293, 1, 0, 0, 0, 8294, 8295, 1, 0, 0, 0, 8295, 899, 1, 0, 0, 0, 8296, 8298, 5, 81, 0, 0, 8297, 8296, 1, 0, 0, 0, 8297, 8298, 1, 0, 0, 0, 8298, 8299, 1, 0, 0, 0, 8299, 8301, 3, 770, 385, 0, 8300, 8302, 5, 9, 0, 0, 8301, 8300, 1, 0, 0, 0, 8301, 8302, 1, 0, 0, 0, 8302, 8308, 1, 0, 0, 0, 8303, 8306, 3, 558, 279, 0, 8304, 8306, 3, 602, 301, 0, 8305, 8303, 1, 0, 0, 0, 8305, 8304, 1, 0, 0, 0, 8306, 8308, 1, 0, 0, 0, 8307, 8297, 1, 0, 0, 0, 8307, 8305, 1, 0, 0, 0, 8308, 8313, 1, 0, 0, 0, 8309, 8311, 5, 36, 0, 0, 8310, 8309, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8312, 1, 0, 0, 0, 8312, 8314, 3, 816, 408, 0, 8313, 8310, 1, 0, 0, 0, 8313, 8314, 1, 0, 0, 0, 8314, 901, 1, 0, 0, 0, 8315, 8316, 5, 102, 0, 0, 8316, 8319, 5, 526, 0, 0, 8317, 8318, 5, 33, 0, 0, 8318, 8320, 3, 668, 334, 0, 8319, 8317, 1, 0, 0, 0, 8319, 8320, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, 8321, 8326, 5, 93, 0, 0, 8322, 8327, 3, 906, 453, 0, 8323, 8327, 5, 182, 0, 0, 8324, 8325, 5, 57, 0, 0, 8325, 8327, 5, 270, 0, 0, 8326, 8322, 1, 0, 0, 0, 8326, 8323, 1, 0, 0, 0, 8326, 8324, 1, 0, 0, 0, 8327, 8342, 1, 0, 0, 0, 8328, 8329, 5, 102, 0, 0, 8329, 8330, 5, 77, 0, 0, 8330, 8333, 5, 526, 0, 0, 8331, 8332, 5, 33, 0, 0, 8332, 8334, 3, 668, 334, 0, 8333, 8331, 1, 0, 0, 0, 8333, 8334, 1, 0, 0, 0, 8334, 8335, 1, 0, 0, 0, 8335, 8339, 5, 93, 0, 0, 8336, 8340, 3, 904, 452, 0, 8337, 8338, 5, 57, 0, 0, 8338, 8340, 5, 270, 0, 0, 8339, 8336, 1, 0, 0, 0, 8339, 8337, 1, 0, 0, 0, 8340, 8342, 1, 0, 0, 0, 8341, 8315, 1, 0, 0, 0, 8341, 8328, 1, 0, 0, 0, 8342, 903, 1, 0, 0, 0, 8343, 8345, 5, 241, 0, 0, 8344, 8346, 3, 138, 69, 0, 8345, 8344, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 8350, 1, 0, 0, 0, 8347, 8348, 5, 463, 0, 0, 8348, 8349, 7, 77, 0, 0, 8349, 8351, 5, 450, 0, 0, 8350, 8347, 1, 0, 0, 0, 8350, 8351, 1, 0, 0, 0, 8351, 8352, 1, 0, 0, 0, 8352, 8353, 3, 908, 454, 0, 8353, 905, 1, 0, 0, 0, 8354, 8355, 5, 369, 0, 0, 8355, 8373, 5, 333, 0, 0, 8356, 8357, 3, 796, 398, 0, 8357, 8358, 5, 10, 0, 0, 8358, 8359, 3, 910, 455, 0, 8359, 8374, 1, 0, 0, 0, 8360, 8361, 3, 138, 69, 0, 8361, 8362, 5, 10, 0, 0, 8362, 8363, 5, 2, 0, 0, 8363, 8368, 3, 910, 455, 0, 8364, 8365, 5, 6, 0, 0, 8365, 8367, 3, 910, 455, 0, 8366, 8364, 1, 0, 0, 0, 8367, 8370, 1, 0, 0, 0, 8368, 8366, 1, 0, 0, 0, 8368, 8369, 1, 0, 0, 0, 8369, 8371, 1, 0, 0, 0, 8370, 8368, 1, 0, 0, 0, 8371, 8372, 5, 3, 0, 0, 8372, 8374, 1, 0, 0, 0, 8373, 8356, 1, 0, 0, 0, 8373, 8360, 1, 0, 0, 0, 8374, 8375, 1, 0, 0, 0, 8375, 8373, 1, 0, 0, 0, 8375, 8376, 1, 0, 0, 0, 8376, 907, 1, 0, 0, 0, 8377, 8378, 5, 422, 0, 0, 8378, 8379, 5, 2, 0, 0, 8379, 8384, 3, 910, 455, 0, 8380, 8381, 5, 6, 0, 0, 8381, 8383, 3, 910, 455, 0, 8382, 8380, 1, 0, 0, 0, 8383, 8386, 1, 0, 0, 0, 8384, 8382, 1, 0, 0, 0, 8384, 8385, 1, 0, 0, 0, 8385, 8387, 1, 0, 0, 0, 8386, 8384, 1, 0, 0, 0, 8387, 8388, 5, 3, 0, 0, 8388, 8392, 1, 0, 0, 0, 8389, 8390, 5, 53, 0, 0, 8390, 8392, 5, 422, 0, 0, 8391, 8377, 1, 0, 0, 0, 8391, 8389, 1, 0, 0, 0, 8392, 909, 1, 0, 0, 0, 8393, 8396, 3, 582, 291, 0, 8394, 8396, 5, 53, 0, 0, 8395, 8393, 1, 0, 0, 0, 8395, 8394, 1, 0, 0, 0, 8396, 911, 1, 0, 0, 0, 8397, 8398, 5, 157, 0, 0, 8398, 8399, 3, 920, 460, 0, 8399, 8400, 5, 7, 0, 0, 8400, 913, 1, 0, 0, 0, 8401, 8402, 5, 78, 0, 0, 8402, 8403, 5, 7, 0, 0, 8403, 915, 1, 0, 0, 0, 8404, 8410, 7, 68, 0, 0, 8405, 8407, 5, 33, 0, 0, 8406, 8408, 5, 269, 0, 0, 8407, 8406, 1, 0, 0, 0, 8407, 8408, 1, 0, 0, 0, 8408, 8409, 1, 0, 0, 0, 8409, 8411, 5, 153, 0, 0, 8410, 8405, 1, 0, 0, 0, 8410, 8411, 1, 0, 0, 0, 8411, 8412, 1, 0, 0, 0, 8412, 8413, 5, 7, 0, 0, 8413, 917, 1, 0, 0, 0, 8414, 8415, 5, 333, 0, 0, 8415, 8416, 3, 310, 155, 0, 8416, 8417, 5, 94, 0, 0, 8417, 8418, 5, 53, 0, 0, 8418, 8419, 5, 7, 0, 0, 8419, 8427, 1, 0, 0, 0, 8420, 8423, 5, 313, 0, 0, 8421, 8424, 3, 310, 155, 0, 8422, 8424, 5, 30, 0, 0, 8423, 8421, 1, 0, 0, 0, 8423, 8422, 1, 0, 0, 0, 8424, 8425, 1, 0, 0, 0, 8425, 8427, 5, 7, 0, 0, 8426, 8414, 1, 0, 0, 0, 8426, 8420, 1, 0, 0, 0, 8427, 919, 1, 0, 0, 0, 8428, 8431, 3, 816, 408, 0, 8429, 8431, 5, 28, 0, 0, 8430, 8428, 1, 0, 0, 0, 8430, 8429, 1, 0, 0, 0, 8431, 921, 1, 0, 0, 0, 8432, 8449, 5, 517, 0, 0, 8433, 8434, 5, 102, 0, 0, 8434, 8439, 3, 924, 462, 0, 8435, 8436, 5, 82, 0, 0, 8436, 8438, 3, 924, 462, 0, 8437, 8435, 1, 0, 0, 0, 8438, 8441, 1, 0, 0, 0, 8439, 8437, 1, 0, 0, 0, 8439, 8440, 1, 0, 0, 0, 8440, 8442, 1, 0, 0, 0, 8441, 8439, 1, 0, 0, 0, 8442, 8446, 5, 93, 0, 0, 8443, 8445, 3, 844, 422, 0, 8444, 8443, 1, 0, 0, 0, 8445, 8448, 1, 0, 0, 0, 8446, 8444, 1, 0, 0, 0, 8446, 8447, 1, 0, 0, 0, 8447, 8450, 1, 0, 0, 0, 8448, 8446, 1, 0, 0, 0, 8449, 8433, 1, 0, 0, 0, 8450, 8451, 1, 0, 0, 0, 8451, 8449, 1, 0, 0, 0, 8451, 8452, 1, 0, 0, 0, 8452, 923, 1, 0, 0, 0, 8453, 8457, 3, 926, 463, 0, 8454, 8455, 5, 511, 0, 0, 8455, 8457, 3, 806, 403, 0, 8456, 8453, 1, 0, 0, 0, 8456, 8454, 1, 0, 0, 0, 8457, 925, 1, 0, 0, 0, 8458, 8461, 3, 816, 408, 0, 8459, 8461, 3, 826, 413, 0, 8460, 8458, 1, 0, 0, 0, 8460, 8459, 1, 0, 0, 0, 8461, 927, 1, 0, 0, 0, 8462, 8464, 3, 752, 376, 0, 8463, 8462, 1, 0, 0, 0, 8463, 8464, 1, 0, 0, 0, 8464, 8466, 1, 0, 0, 0, 8465, 8467, 3, 574, 287, 0, 8466, 8465, 1, 0, 0, 0, 8466, 8467, 1, 0, 0, 0, 8467, 8469, 1, 0, 0, 0, 8468, 8470, 3, 604, 302, 0, 8469, 8468, 1, 0, 0, 0, 8469, 8470, 1, 0, 0, 0, 8470, 8472, 1, 0, 0, 0, 8471, 8473, 3, 632, 316, 0, 8472, 8471, 1, 0, 0, 0, 8472, 8473, 1, 0, 0, 0, 8473, 8475, 1, 0, 0, 0, 8474, 8476, 3, 594, 297, 0, 8475, 8474, 1, 0, 0, 0, 8475, 8476, 1, 0, 0, 0, 8476, 8478, 1, 0, 0, 0, 8477, 8479, 3, 698, 349, 0, 8478, 8477, 1, 0, 0, 0, 8478, 8479, 1, 0, 0, 0, 8479, 8481, 1, 0, 0, 0, 8480, 8482, 3, 696, 348, 0, 8481, 8480, 1, 0, 0, 0, 8481, 8482, 1, 0, 0, 0, 8482, 929, 1, 0, 0, 0, 1190, 933, 940, 1060, 1062, 1071, 1076, 1082, 1117, 1127, 1133, 1138, 1145, 1150, 1157, 1168, 1176, 1180, 1192, 1198, 1204, 1208, 1213, 1217, 1230, 1240, 1242, 1248, 1253, 1266, 1269, 1274, 1279, 1290, 1294, 1306, 1310, 1313, 1317, 1329, 1347, 1354, 1362, 1367, 1374, 1382, 1388, 1396, 1404, 1408, 1422, 1427, 1432, 1444, 1450, 1462, 1467, 1477, 1483, 1488, 1497, 1504, 1509, 1514, 1524, 1529, 1534, 1541, 1545, 1559, 1565, 1571, 1576, 1583, 1592, 1601, 1610, 1619, 1623, 1635, 1643, 1653, 1673, 1678, 1681, 1688, 1691, 1695, 1699, 1702, 1707, 1712, 1716, 1725, 1731, 1735, 1744, 1747, 1753, 1762, 1774, 1778, 1782, 1787, 1790, 1796, 1798, 1800, 1804, 1810, 1814, 1819, 1824, 1828, 1831, 1838, 1851, 1864, 1889, 1899, 1906, 1911, 1915, 1922, 1927, 1930, 1932, 1937, 1941, 1945, 1949, 1954, 1957, 1961, 1964, 1968, 1976, 1981, 1984, 1988, 1994, 2003, 2007, 2017, 2022, 2026, 2030, 2032, 2034, 2041, 2046, 2050, 2055, 2067, 2072, 2076, 2080, 2085, 2089, 2092, 2095, 2098, 2101, 2104, 2109, 2112, 2115, 2118, 2121, 2124, 2130, 2134, 2137, 2140, 2143, 2146, 2148, 2155, 2163, 2173, 2178, 2188, 2191, 2196, 2201, 2206, 2209, 2214, 2223, 2225, 2229, 2232, 2236, 2241, 2246, 2250, 2253, 2257, 2260, 2265, 2268, 2273, 2276, 2280, 2283, 2286, 2291, 2294, 2302, 2314, 2318, 2325, 2330, 2333, 2336, 2339, 2344, 2355, 2361, 2365, 2368, 2371, 2376, 2383, 2386, 2390, 2398, 2403, 2406, 2409, 2416, 2421, 2430, 2433, 2436, 2441, 2444, 2456, 2466, 2483, 2487, 2491, 2493, 2510, 2512, 2528, 2539, 2542, 2545, 2554, 2563, 2579, 2582, 2585, 2593, 2597, 2604, 2613, 2617, 2623, 2627, 2630, 2633, 2636, 2639, 2645, 2649, 2654, 2658, 2661, 2664, 2667, 2672, 2678, 2682, 2686, 2690, 2696, 2698, 2703, 2709, 2715, 2719, 2734, 2739, 2742, 2744, 2747, 2751, 2755, 2758, 2761, 2769, 2775, 2777, 2783, 2788, 2793, 2797, 2804, 2806, 2817, 2856, 2866, 2868, 2871, 2875, 2879, 2889, 2891, 2897, 2899, 2908, 2920, 2934, 2939, 2942, 2949, 2954, 2962, 2964, 2970, 2975, 2979, 2984, 2990, 2997, 3003, 3005, 3014, 3020, 3028, 3034, 3039, 3044, 3052, 3067, 3069, 3073, 3077, 3080, 3083, 3092, 3095, 3098, 3104, 3110, 3114, 3126, 3132, 3135, 3140, 3144, 3151, 3161, 3163, 3187, 3199, 3204, 3206, 3210, 3213, 3216, 3226, 3229, 3239, 3244, 3249, 3252, 3255, 3263, 3269, 3276, 3284, 3287, 3298, 3302, 3308, 3315, 3318, 3327, 3341, 3344, 3358, 3369, 3372, 3384, 3389, 3402, 3407, 3420, 3429, 3432, 3435, 3442, 3445, 3457, 3463, 3465, 3473, 3481, 3489, 3501, 3506, 3517, 3528, 3536, 3544, 3551, 3558, 3560, 3563, 3568, 3573, 3592, 3601, 3604, 3631, 3640, 3643, 3647, 3651, 3655, 3662, 3666, 3670, 3674, 3678, 3683, 3687, 3692, 3698, 3703, 3710, 3714, 3720, 3724, 3729, 3737, 3743, 3748, 3755, 3760, 3764, 3769, 3775, 3782, 3787, 3794, 3799, 3806, 3810, 3818, 3822, 3824, 3827, 3832, 3842, 3857, 3860, 3868, 3875, 3880, 3886, 3890, 3897, 3902, 3905, 3908, 3912, 3921, 3939, 3942, 3974, 3979, 3985, 4005, 4010, 4016, 4019, 4023, 4027, 4033, 4036, 4040, 4044, 4049, 4052, 4055, 4058, 4071, 4077, 4085, 4092, 4097, 4100, 4107, 4110, 4118, 4121, 4126, 4133, 4136, 4156, 4168, 4171, 4177, 4182, 4191, 4199, 4204, 4210, 4217, 4225, 4228, 4239, 4241, 4255, 4261, 4269, 4271, 4277, 4281, 4284, 4287, 4292, 4297, 4301, 4304, 4307, 4310, 4313, 4321, 4332, 4335, 4338, 4343, 4346, 4350, 4354, 4360, 4368, 4371, 4384, 4389, 4391, 4396, 4403, 4410, 4419, 4427, 4435, 4442, 4450, 4457, 4465, 4469, 4473, 4475, 4481, 4486, 4490, 4497, 4502, 4507, 4512, 4514, 4524, 4534, 4550, 4568, 4580, 4587, 4602, 4607, 4610, 4615, 4620, 4625, 4628, 4631, 4636, 4643, 4647, 4652, 4659, 4663, 4669, 4678, 4687, 4699, 4701, 4714, 4720, 4724, 4726, 4733, 4746, 4753, 4755, 4771, 4775, 4779, 4784, 4789, 4794, 4799, 4802, 4814, 4867, 4876, 4880, 4889, 4893, 4902, 4906, 4911, 4914, 4918, 4923, 4925, 4934, 4939, 4950, 4954, 4968, 4976, 5014, 5016, 5035, 5038, 5065, 5069, 5073, 5077, 5081, 5084, 5099, 5106, 5120, 5133, 5158, 5177, 5192, 5208, 5215, 5226, 5229, 5248, 5251, 5264, 5268, 5288, 5300, 5304, 5326, 5330, 5340, 5344, 5350, 5354, 5358, 5362, 5369, 5374, 5385, 5389, 5392, 5397, 5403, 5414, 5418, 5421, 5425, 5429, 5432, 5442, 5445, 5449, 5454, 5460, 5463, 5468, 5471, 5478, 5480, 5486, 5490, 5499, 5504, 5506, 5516, 5519, 5524, 5532, 5535, 5540, 5542, 5544, 5550, 5567, 5573, 5586, 5592, 5596, 5601, 5631, 5646, 5651, 5655, 5668, 5672, 5674, 5683, 5689, 5691, 5695, 5698, 5701, 5704, 5707, 5709, 5712, 5716, 5724, 5729, 5732, 5738, 5742, 5746, 5751, 5753, 5757, 5761, 5768, 5774, 5778, 5780, 5782, 5795, 5803, 5811, 5822, 5832, 5837, 5841, 5845, 5852, 5855, 5857, 5865, 5869, 5872, 5879, 5886, 5891, 5898, 5901, 5903, 5906, 5912, 5917, 5921, 5928, 5938, 5945, 5948, 5951, 5955, 5966, 5969, 5972, 5975, 5978, 5985, 5988, 5991, 5998, 6010, 6017, 6019, 6024, 6029, 6031, 6037, 6044, 6049, 6054, 6058, 6062, 6066, 6068, 6072, 6076, 6079, 6082, 6084, 6094, 6096, 6101, 6105, 6110, 6114, 6121, 6126, 6130, 6133, 6139, 6142, 6161, 6168, 6172, 6175, 6179, 6183, 6186, 6189, 6194, 6203, 6210, 6214, 6218, 6222, 6225, 6227, 6232, 6236, 6241, 6247, 6254, 6259, 6264, 6273, 6280, 6288, 6299, 6304, 6308, 6311, 6315, 6320, 6324, 6329, 6337, 6348, 6353, 6357, 6360, 6363, 6365, 6368, 6371, 6374, 6378, 6382, 6386, 6388, 6397, 6402, 6408, 6412, 6414, 6421, 6426, 6432, 6434, 6438, 6445, 6450, 6453, 6459, 6463, 6469, 6478, 6484, 6486, 6491, 6494, 6503, 6510, 6512, 6519, 6524, 6527, 6537, 6548, 6553, 6557, 6565, 6575, 6582, 6588, 6599, 6605, 6615, 6624, 6628, 6631, 6633, 6635, 6639, 6647, 6650, 6655, 6660, 6667, 6669, 6675, 6679, 6682, 6687, 6690, 6692, 6698, 6707, 6713, 6716, 6724, 6727, 6731, 6737, 6739, 6742, 6746, 6751, 6758, 6765, 6767, 6773, 6775, 6780, 6782, 6786, 6795, 6799, 6807, 6809, 6823, 6826, 6834, 6843, 6849, 6854, 6862, 6864, 6869, 6873, 6878, 6883, 6889, 6905, 6907, 6916, 6931, 6936, 6939, 6945, 6950, 6963, 6968, 6972, 6979, 6998, 7010, 7015, 7023, 7025, 7027, 7036, 7039, 7044, 7049, 7052, 7063, 7071, 7076, 7078, 7081, 7085, 7096, 7117, 7125, 7138, 7148, 7154, 7160, 7163, 7166, 7192, 7194, 7215, 7225, 7238, 7243, 7247, 7249, 7261, 7268, 7274, 7280, 7284, 7295, 7308, 7312, 7317, 7320, 7323, 7332, 7343, 7345, 7349, 7354, 7363, 7368, 7376, 7386, 7394, 7398, 7401, 7408, 7416, 7420, 7427, 7435, 7437, 7446, 7449, 7461, 7470, 7477, 7486, 7496, 7501, 7505, 7507, 7510, 7515, 7520, 7528, 7536, 7539, 7546, 7554, 7562, 7570, 7587, 7594, 7602, 7619, 7625, 7631, 7642, 7648, 7653, 7661, 7666, 7669, 7678, 7685, 7690, 7694, 7699, 7705, 7710, 7718, 7773, 7780, 7786, 7788, 7790, 7792, 7798, 7802, 7806, 7817, 7820, 7824, 7828, 7832, 7835, 7838, 7841, 7850, 7855, 7859, 7892, 7902, 7906, 7912, 7917, 7926, 7934, 7945, 7953, 7962, 7971, 7976, 7980, 7990, 7995, 8003, 8008, 8011, 8018, 8024, 8032, 8040, 8043, 8050, 8052, 8055, 8061, 8070, 8074, 8088, 8091, 8093, 8099, 8109, 8111, 8113, 8121, 8124, 8127, 8137, 8145, 8151, 8157, 8164, 8168, 8172, 8175, 8178, 8184, 8191, 8194, 8202, 8204, 8213, 8218, 8220, 8227, 8233, 8236, 8248, 8255, 8257, 8261, 8267, 8272, 8276, 8279, 8282, 8291, 8294, 8297, 8301, 8305, 8307, 8310, 8313, 8319, 8326, 8333, 8339, 8341, 8345, 8350, 8368, 8373, 8375, 8384, 8391, 8395, 8407, 8410, 8423, 8426, 8430, 8439, 8446, 8451, 8456, 8460, 8463, 8466, 8469, 8472, 8475, 8478, 8481] \ No newline at end of file +[4, 1, 592, 8511, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 1, 0, 5, 0, 940, 8, 0, 10, 0, 12, 0, 943, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 949, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1069, 8, 2, 3, 2, 1071, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1080, 8, 4, 1, 4, 5, 4, 1083, 8, 4, 10, 4, 12, 4, 1086, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1091, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1126, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1136, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1142, 8, 7, 1, 7, 5, 7, 1145, 8, 7, 10, 7, 12, 7, 1148, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1154, 8, 8, 1, 8, 5, 8, 1157, 8, 8, 10, 8, 12, 8, 1160, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1166, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1177, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1183, 8, 11, 10, 11, 12, 11, 1186, 9, 11, 1, 11, 3, 11, 1189, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1201, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1207, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1213, 8, 12, 1, 12, 1, 12, 3, 12, 1217, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1222, 8, 12, 1, 12, 1, 12, 3, 12, 1226, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1239, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1249, 8, 12, 3, 12, 1251, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1257, 8, 13, 1, 13, 5, 13, 1260, 8, 13, 10, 13, 12, 13, 1263, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1275, 8, 15, 1, 15, 3, 15, 1278, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1283, 8, 15, 1, 15, 5, 15, 1286, 8, 15, 10, 15, 12, 15, 1289, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1299, 8, 17, 1, 18, 1, 18, 3, 18, 1303, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1315, 8, 19, 1, 20, 1, 20, 3, 20, 1319, 8, 20, 1, 20, 3, 20, 1322, 8, 20, 1, 20, 1, 20, 3, 20, 1326, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1338, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1356, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1361, 8, 22, 10, 22, 12, 22, 1364, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1369, 8, 23, 10, 23, 12, 23, 1372, 9, 23, 1, 24, 1, 24, 3, 24, 1376, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1383, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1391, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1397, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1405, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1413, 8, 28, 1, 29, 1, 29, 3, 29, 1417, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1431, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1436, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1441, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1453, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1459, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1471, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1476, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1486, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1492, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1497, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1506, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1513, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1518, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1523, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1533, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1538, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1543, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1550, 8, 38, 1, 38, 1, 38, 3, 38, 1554, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1568, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1574, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1580, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1585, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1590, 8, 39, 10, 39, 12, 39, 1593, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1601, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1610, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1617, 8, 42, 10, 42, 12, 42, 1620, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1628, 8, 42, 1, 42, 1, 42, 3, 42, 1632, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1644, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1652, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1662, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1682, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1687, 8, 42, 1, 42, 3, 42, 1690, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1697, 8, 42, 1, 42, 3, 42, 1700, 8, 42, 1, 42, 1, 42, 3, 42, 1704, 8, 42, 1, 42, 1, 42, 3, 42, 1708, 8, 42, 1, 42, 3, 42, 1711, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1716, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1721, 8, 42, 1, 42, 1, 42, 3, 42, 1725, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1734, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1740, 8, 42, 1, 42, 1, 42, 3, 42, 1744, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1753, 8, 42, 1, 42, 3, 42, 1756, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1762, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1771, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1781, 8, 42, 11, 42, 12, 42, 1782, 1, 42, 1, 42, 3, 42, 1787, 8, 42, 1, 42, 1, 42, 3, 42, 1791, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1796, 8, 42, 1, 42, 3, 42, 1799, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1805, 8, 42, 4, 42, 1807, 8, 42, 11, 42, 12, 42, 1808, 1, 42, 1, 42, 3, 42, 1813, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1819, 8, 42, 1, 42, 1, 42, 3, 42, 1823, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1828, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1833, 8, 42, 1, 42, 1, 42, 3, 42, 1837, 8, 42, 1, 42, 3, 42, 1840, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1847, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1858, 8, 46, 10, 46, 12, 46, 1861, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1873, 8, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1898, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1906, 8, 50, 10, 50, 12, 50, 1909, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1915, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1920, 8, 51, 1, 51, 1, 51, 3, 51, 1924, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1931, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1936, 8, 51, 1, 51, 3, 51, 1939, 8, 51, 3, 51, 1941, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1946, 8, 52, 1, 53, 1, 53, 3, 53, 1950, 8, 53, 1, 53, 1, 53, 3, 53, 1954, 8, 53, 1, 53, 1, 53, 3, 53, 1958, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1963, 8, 53, 1, 53, 3, 53, 1966, 8, 53, 1, 53, 1, 53, 3, 53, 1970, 8, 53, 1, 53, 3, 53, 1973, 8, 53, 1, 53, 1, 53, 3, 53, 1977, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1985, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1990, 8, 53, 1, 53, 3, 53, 1993, 8, 53, 1, 53, 1, 53, 3, 53, 1997, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2003, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2012, 8, 54, 1, 54, 1, 54, 3, 54, 2016, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2026, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2031, 8, 54, 5, 54, 2033, 8, 54, 10, 54, 12, 54, 2036, 9, 54, 1, 54, 3, 54, 2039, 8, 54, 5, 54, 2041, 8, 54, 10, 54, 12, 54, 2044, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2050, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2055, 8, 55, 5, 55, 2057, 8, 55, 10, 55, 12, 55, 2060, 9, 55, 1, 55, 1, 55, 3, 55, 2064, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2074, 8, 56, 10, 56, 12, 56, 2077, 9, 56, 1, 56, 1, 56, 3, 56, 2081, 8, 56, 1, 57, 1, 57, 3, 57, 2085, 8, 57, 1, 57, 1, 57, 3, 57, 2089, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2094, 8, 57, 1, 57, 1, 57, 3, 57, 2098, 8, 57, 1, 57, 3, 57, 2101, 8, 57, 1, 57, 3, 57, 2104, 8, 57, 1, 57, 3, 57, 2107, 8, 57, 1, 57, 3, 57, 2110, 8, 57, 1, 57, 3, 57, 2113, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 3, 57, 2130, 8, 57, 1, 57, 3, 57, 2133, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2139, 8, 57, 1, 57, 1, 57, 3, 57, 2143, 8, 57, 1, 57, 3, 57, 2146, 8, 57, 1, 57, 3, 57, 2149, 8, 57, 1, 57, 3, 57, 2152, 8, 57, 1, 57, 3, 57, 2155, 8, 57, 3, 57, 2157, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2164, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2170, 8, 59, 10, 59, 12, 59, 2173, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2180, 8, 60, 10, 60, 12, 60, 2183, 9, 60, 1, 61, 1, 61, 3, 61, 2187, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2195, 8, 61, 10, 61, 12, 61, 2198, 9, 61, 3, 61, 2200, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2205, 8, 62, 1, 62, 5, 62, 2208, 8, 62, 10, 62, 12, 62, 2211, 9, 62, 1, 62, 1, 62, 3, 62, 2215, 8, 62, 1, 62, 3, 62, 2218, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2223, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2232, 8, 63, 3, 63, 2234, 8, 63, 1, 63, 1, 63, 3, 63, 2238, 8, 63, 1, 63, 3, 63, 2241, 8, 63, 1, 63, 1, 63, 3, 63, 2245, 8, 63, 1, 63, 5, 63, 2248, 8, 63, 10, 63, 12, 63, 2251, 9, 63, 1, 64, 1, 64, 3, 64, 2255, 8, 64, 1, 64, 1, 64, 3, 64, 2259, 8, 64, 1, 64, 3, 64, 2262, 8, 64, 1, 64, 1, 64, 3, 64, 2266, 8, 64, 1, 65, 3, 65, 2269, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2274, 8, 65, 1, 65, 3, 65, 2277, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2282, 8, 65, 1, 65, 3, 65, 2285, 8, 65, 1, 65, 1, 65, 3, 65, 2289, 8, 65, 1, 65, 3, 65, 2292, 8, 65, 1, 65, 3, 65, 2295, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2300, 8, 65, 1, 65, 3, 65, 2303, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2311, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2321, 8, 65, 11, 65, 12, 65, 2322, 1, 65, 1, 65, 3, 65, 2327, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2334, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2339, 8, 65, 1, 65, 3, 65, 2342, 8, 65, 1, 65, 3, 65, 2345, 8, 65, 1, 65, 3, 65, 2348, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2353, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2362, 8, 68, 10, 68, 12, 68, 2365, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2370, 8, 68, 1, 68, 1, 68, 3, 68, 2374, 8, 68, 1, 68, 3, 68, 2377, 8, 68, 1, 68, 3, 68, 2380, 8, 68, 1, 68, 5, 68, 2383, 8, 68, 10, 68, 12, 68, 2386, 9, 68, 1, 68, 1, 68, 5, 68, 2390, 8, 68, 10, 68, 12, 68, 2393, 9, 68, 3, 68, 2395, 8, 68, 1, 68, 1, 68, 3, 68, 2399, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2405, 8, 68, 10, 68, 12, 68, 2408, 9, 68, 1, 68, 1, 68, 3, 68, 2412, 8, 68, 1, 68, 3, 68, 2415, 8, 68, 1, 68, 3, 68, 2418, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2425, 8, 68, 1, 68, 5, 68, 2428, 8, 68, 10, 68, 12, 68, 2431, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2439, 8, 68, 1, 68, 3, 68, 2442, 8, 68, 1, 68, 3, 68, 2445, 8, 68, 1, 68, 5, 68, 2448, 8, 68, 10, 68, 12, 68, 2451, 9, 68, 3, 68, 2453, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2463, 8, 70, 10, 70, 12, 70, 2466, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2473, 8, 71, 10, 71, 12, 71, 2476, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2492, 8, 74, 1, 75, 1, 75, 3, 75, 2496, 8, 75, 1, 75, 1, 75, 3, 75, 2500, 8, 75, 3, 75, 2502, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2519, 8, 78, 3, 78, 2521, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2535, 8, 80, 10, 80, 12, 80, 2538, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2548, 8, 81, 1, 81, 3, 81, 2551, 8, 81, 1, 81, 3, 81, 2554, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2563, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2572, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2588, 8, 88, 1, 88, 3, 88, 2591, 8, 88, 1, 88, 3, 88, 2594, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2600, 8, 88, 10, 88, 12, 88, 2603, 9, 88, 1, 88, 3, 88, 2606, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2613, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2622, 8, 90, 1, 90, 1, 90, 3, 90, 2626, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2632, 8, 90, 1, 91, 1, 91, 3, 91, 2636, 8, 91, 1, 91, 3, 91, 2639, 8, 91, 1, 91, 3, 91, 2642, 8, 91, 1, 91, 3, 91, 2645, 8, 91, 1, 91, 3, 91, 2648, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2654, 8, 92, 1, 93, 1, 93, 3, 93, 2658, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2663, 8, 93, 1, 93, 1, 93, 3, 93, 2667, 8, 93, 1, 93, 3, 93, 2670, 8, 93, 1, 93, 3, 93, 2673, 8, 93, 1, 93, 3, 93, 2676, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2681, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2687, 8, 94, 1, 94, 1, 94, 3, 94, 2691, 8, 94, 1, 95, 1, 95, 3, 95, 2695, 8, 95, 1, 95, 1, 95, 3, 95, 2699, 8, 95, 1, 95, 1, 95, 4, 95, 2703, 8, 95, 11, 95, 12, 95, 2704, 3, 95, 2707, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2712, 8, 96, 1, 96, 1, 96, 4, 96, 2716, 8, 96, 11, 96, 12, 96, 2717, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2724, 8, 97, 1, 97, 1, 97, 3, 97, 2728, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2743, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2748, 8, 97, 1, 97, 3, 97, 2751, 8, 97, 3, 97, 2753, 8, 97, 1, 98, 3, 98, 2756, 8, 98, 1, 98, 1, 98, 3, 98, 2760, 8, 98, 1, 99, 1, 99, 3, 99, 2764, 8, 99, 1, 99, 3, 99, 2767, 8, 99, 1, 99, 3, 99, 2770, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2778, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2784, 8, 99, 3, 99, 2786, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2792, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2797, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2802, 8, 101, 1, 101, 1, 101, 3, 101, 2806, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2813, 8, 101, 10, 101, 12, 101, 2816, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2824, 8, 102, 10, 102, 12, 102, 2827, 9, 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, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2865, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2873, 8, 104, 11, 104, 12, 104, 2874, 3, 104, 2877, 8, 104, 1, 104, 3, 104, 2880, 8, 104, 1, 105, 1, 105, 3, 105, 2884, 8, 105, 1, 105, 1, 105, 3, 105, 2888, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2896, 8, 106, 11, 106, 12, 106, 2897, 3, 106, 2900, 8, 106, 1, 106, 1, 106, 4, 106, 2904, 8, 106, 11, 106, 12, 106, 2905, 3, 106, 2908, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2915, 8, 107, 10, 107, 12, 107, 2918, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2927, 8, 108, 10, 108, 12, 108, 2930, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2943, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2948, 8, 111, 1, 111, 3, 111, 2951, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2958, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2963, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2971, 8, 113, 3, 113, 2973, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2979, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2984, 8, 114, 1, 114, 1, 114, 3, 114, 2988, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2993, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2999, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3006, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3012, 8, 114, 3, 114, 3014, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3023, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3029, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3037, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3043, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3048, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3053, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3061, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3076, 8, 118, 3, 118, 3078, 8, 118, 1, 118, 1, 118, 3, 118, 3082, 8, 118, 1, 118, 1, 118, 3, 118, 3086, 8, 118, 1, 118, 3, 118, 3089, 8, 118, 1, 118, 3, 118, 3092, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3101, 8, 119, 1, 119, 3, 119, 3104, 8, 119, 1, 119, 3, 119, 3107, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3113, 8, 120, 1, 120, 1, 120, 5, 120, 3117, 8, 120, 10, 120, 12, 120, 3120, 9, 120, 1, 120, 3, 120, 3123, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3135, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3141, 8, 120, 1, 121, 3, 121, 3144, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3149, 8, 121, 1, 121, 1, 121, 3, 121, 3153, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3160, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3170, 8, 121, 3, 121, 3172, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3196, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3208, 8, 125, 1, 125, 4, 125, 3211, 8, 125, 11, 125, 12, 125, 3212, 3, 125, 3215, 8, 125, 1, 125, 1, 125, 3, 125, 3219, 8, 125, 1, 125, 3, 125, 3222, 8, 125, 1, 125, 3, 125, 3225, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3235, 8, 125, 1, 125, 3, 125, 3238, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3248, 8, 125, 1, 125, 5, 125, 3251, 8, 125, 10, 125, 12, 125, 3254, 9, 125, 1, 125, 1, 125, 3, 125, 3258, 8, 125, 1, 125, 3, 125, 3261, 8, 125, 1, 125, 3, 125, 3264, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3272, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3278, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3283, 8, 127, 10, 127, 12, 127, 3286, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3293, 8, 128, 1, 128, 3, 128, 3296, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3307, 8, 130, 1, 131, 1, 131, 3, 131, 3311, 8, 131, 1, 131, 1, 131, 5, 131, 3315, 8, 131, 10, 131, 12, 131, 3318, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3324, 8, 132, 1, 133, 3, 133, 3327, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3336, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3348, 8, 134, 10, 134, 12, 134, 3351, 9, 134, 3, 134, 3353, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3365, 8, 135, 10, 135, 12, 135, 3368, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3378, 8, 136, 1, 136, 3, 136, 3381, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3391, 8, 137, 10, 137, 12, 137, 3394, 9, 137, 1, 138, 1, 138, 3, 138, 3398, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3409, 8, 138, 10, 138, 12, 138, 3412, 9, 138, 1, 138, 1, 138, 3, 138, 3416, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3429, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3436, 8, 138, 10, 138, 12, 138, 3439, 9, 138, 3, 138, 3441, 8, 138, 1, 138, 3, 138, 3444, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3451, 8, 138, 1, 138, 3, 138, 3454, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3466, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3472, 8, 138, 3, 138, 3474, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3480, 8, 139, 10, 139, 12, 139, 3483, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3490, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3498, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3510, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3515, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3526, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3537, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3545, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3551, 8, 145, 10, 145, 12, 145, 3554, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3560, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3567, 8, 146, 3, 146, 3569, 8, 146, 1, 146, 3, 146, 3572, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3577, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3582, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3599, 8, 148, 10, 148, 12, 148, 3602, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3608, 8, 148, 10, 148, 12, 148, 3611, 9, 148, 3, 148, 3613, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 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, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3640, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3649, 8, 151, 1, 151, 3, 151, 3652, 8, 151, 1, 151, 1, 151, 3, 151, 3656, 8, 151, 1, 151, 1, 151, 3, 151, 3660, 8, 151, 1, 151, 1, 151, 3, 151, 3664, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3669, 8, 151, 10, 151, 12, 151, 3672, 9, 151, 1, 151, 3, 151, 3675, 8, 151, 1, 151, 1, 151, 3, 151, 3679, 8, 151, 1, 151, 1, 151, 3, 151, 3683, 8, 151, 1, 151, 1, 151, 3, 151, 3687, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3692, 8, 151, 1, 151, 1, 151, 3, 151, 3696, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3701, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3707, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3712, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3717, 8, 151, 10, 151, 12, 151, 3720, 9, 151, 1, 151, 3, 151, 3723, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3729, 8, 151, 1, 151, 1, 151, 3, 151, 3733, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3738, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3746, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3752, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3757, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3764, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3769, 8, 151, 1, 151, 1, 151, 3, 151, 3773, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3778, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3784, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3791, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3796, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3803, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3808, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3815, 8, 151, 1, 151, 1, 151, 3, 151, 3819, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3825, 8, 151, 10, 151, 12, 151, 3828, 9, 151, 1, 151, 3, 151, 3831, 8, 151, 3, 151, 3833, 8, 151, 1, 152, 3, 152, 3836, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3841, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3851, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3866, 8, 153, 1, 153, 3, 153, 3869, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3877, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3882, 8, 154, 10, 154, 12, 154, 3885, 9, 154, 1, 155, 1, 155, 3, 155, 3889, 8, 155, 1, 156, 1, 156, 4, 156, 3893, 8, 156, 11, 156, 12, 156, 3894, 1, 157, 1, 157, 3, 157, 3899, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3904, 8, 157, 10, 157, 12, 157, 3907, 9, 157, 1, 157, 1, 157, 3, 157, 3911, 8, 157, 1, 157, 3, 157, 3914, 8, 157, 1, 158, 3, 158, 3917, 8, 158, 1, 158, 1, 158, 3, 158, 3921, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3930, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3948, 8, 159, 1, 159, 3, 159, 3951, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3983, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3988, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3994, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4014, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4019, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4025, 8, 162, 1, 162, 3, 162, 4028, 8, 162, 1, 162, 1, 162, 3, 162, 4032, 8, 162, 1, 162, 1, 162, 3, 162, 4036, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4042, 8, 162, 1, 162, 3, 162, 4045, 8, 162, 1, 162, 1, 162, 3, 162, 4049, 8, 162, 1, 162, 1, 162, 3, 162, 4053, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4058, 8, 162, 1, 162, 3, 162, 4061, 8, 162, 1, 162, 3, 162, 4064, 8, 162, 1, 162, 3, 162, 4067, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4080, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4086, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4094, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4099, 8, 166, 10, 166, 12, 166, 4102, 9, 166, 1, 166, 1, 166, 3, 166, 4106, 8, 166, 1, 166, 3, 166, 4109, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4114, 8, 166, 10, 166, 12, 166, 4117, 9, 166, 3, 166, 4119, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4127, 8, 168, 1, 168, 3, 168, 4130, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4135, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4142, 8, 169, 1, 169, 3, 169, 4145, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4163, 8, 169, 10, 169, 12, 169, 4166, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4177, 8, 169, 1, 170, 3, 170, 4180, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4186, 8, 170, 1, 170, 5, 170, 4189, 8, 170, 10, 170, 12, 170, 4192, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4198, 8, 171, 10, 171, 12, 171, 4201, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4208, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4213, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4219, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4224, 8, 172, 10, 172, 12, 172, 4227, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4234, 8, 172, 1, 172, 3, 172, 4237, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4248, 8, 173, 10, 173, 12, 173, 4251, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4264, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4270, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4278, 8, 174, 3, 174, 4280, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4286, 8, 176, 1, 176, 1, 176, 3, 176, 4290, 8, 176, 1, 176, 3, 176, 4293, 8, 176, 1, 176, 3, 176, 4296, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4301, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4306, 8, 176, 1, 176, 1, 176, 3, 176, 4310, 8, 176, 1, 176, 3, 176, 4313, 8, 176, 1, 176, 3, 176, 4316, 8, 176, 1, 176, 3, 176, 4319, 8, 176, 1, 176, 3, 176, 4322, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4328, 8, 177, 10, 177, 12, 177, 4331, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4341, 8, 178, 1, 178, 3, 178, 4344, 8, 178, 1, 178, 3, 178, 4347, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4352, 8, 178, 1, 178, 3, 178, 4355, 8, 178, 1, 178, 1, 178, 3, 178, 4359, 8, 178, 1, 179, 1, 179, 3, 179, 4363, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4369, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4375, 8, 179, 10, 179, 12, 179, 4378, 9, 179, 3, 179, 4380, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4391, 8, 179, 10, 179, 12, 179, 4394, 9, 179, 1, 179, 1, 179, 3, 179, 4398, 8, 179, 3, 179, 4400, 8, 179, 1, 179, 4, 179, 4403, 8, 179, 11, 179, 12, 179, 4404, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4412, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4419, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4426, 8, 182, 10, 182, 12, 182, 4429, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4434, 8, 183, 10, 183, 12, 183, 4437, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4444, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4449, 8, 185, 10, 185, 12, 185, 4452, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4459, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4464, 8, 187, 10, 187, 12, 187, 4467, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4474, 8, 188, 1, 189, 1, 189, 3, 189, 4478, 8, 189, 1, 189, 1, 189, 3, 189, 4482, 8, 189, 3, 189, 4484, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4490, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4495, 8, 190, 1, 191, 1, 191, 3, 191, 4499, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4506, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4511, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4516, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4521, 8, 193, 3, 193, 4523, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4533, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4543, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4559, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4575, 8, 196, 10, 196, 12, 196, 4578, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4589, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4596, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4611, 8, 199, 1, 199, 4, 199, 4614, 8, 199, 11, 199, 12, 199, 4615, 1, 199, 3, 199, 4619, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4624, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4629, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4634, 8, 200, 1, 200, 3, 200, 4637, 8, 200, 1, 200, 3, 200, 4640, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4645, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4650, 8, 201, 10, 201, 12, 201, 4653, 9, 201, 1, 201, 3, 201, 4656, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4661, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4666, 8, 202, 10, 202, 12, 202, 4669, 9, 202, 1, 202, 3, 202, 4672, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4678, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4687, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4694, 8, 204, 10, 204, 12, 204, 4697, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4708, 8, 206, 11, 206, 12, 206, 4709, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4723, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4729, 8, 207, 1, 207, 1, 207, 3, 207, 4733, 8, 207, 3, 207, 4735, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4742, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4755, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4762, 8, 209, 3, 209, 4764, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4778, 8, 211, 10, 211, 12, 211, 4781, 9, 211, 1, 211, 3, 211, 4784, 8, 211, 1, 211, 1, 211, 3, 211, 4788, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4793, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4798, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4803, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4808, 8, 211, 1, 211, 3, 211, 4811, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4823, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4876, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4885, 8, 213, 1, 213, 1, 213, 3, 213, 4889, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4898, 8, 213, 1, 213, 1, 213, 3, 213, 4902, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4911, 8, 213, 1, 213, 1, 213, 3, 213, 4915, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4920, 8, 213, 1, 213, 3, 213, 4923, 8, 213, 1, 213, 1, 213, 3, 213, 4927, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4932, 8, 213, 3, 213, 4934, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4943, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4948, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4959, 8, 213, 1, 213, 1, 213, 3, 213, 4963, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4977, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4985, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5023, 8, 213, 3, 213, 5025, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5044, 8, 214, 1, 214, 3, 214, 5047, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5074, 8, 215, 1, 215, 1, 215, 3, 215, 5078, 8, 215, 1, 215, 1, 215, 3, 215, 5082, 8, 215, 1, 215, 1, 215, 3, 215, 5086, 8, 215, 1, 215, 1, 215, 3, 215, 5090, 8, 215, 1, 215, 3, 215, 5093, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5108, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5115, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5127, 8, 217, 10, 217, 12, 217, 5130, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5142, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5167, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5186, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5201, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5217, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5224, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5235, 8, 221, 1, 221, 3, 221, 5238, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5255, 8, 222, 10, 222, 12, 222, 5258, 9, 222, 3, 222, 5260, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5271, 8, 223, 10, 223, 12, 223, 5274, 9, 223, 1, 223, 3, 223, 5277, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5297, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5307, 8, 224, 10, 224, 12, 224, 5310, 9, 224, 1, 224, 3, 224, 5313, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5335, 8, 224, 1, 225, 1, 225, 3, 225, 5339, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5349, 8, 225, 1, 225, 1, 225, 3, 225, 5353, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5359, 8, 225, 1, 225, 1, 225, 3, 225, 5363, 8, 225, 5, 225, 5365, 8, 225, 10, 225, 12, 225, 5368, 9, 225, 1, 225, 3, 225, 5371, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5378, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5383, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5394, 8, 230, 1, 231, 1, 231, 3, 231, 5398, 8, 231, 1, 231, 3, 231, 5401, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5406, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5412, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5423, 8, 231, 1, 231, 1, 231, 3, 231, 5427, 8, 231, 1, 231, 3, 231, 5430, 8, 231, 1, 231, 1, 231, 3, 231, 5434, 8, 231, 1, 231, 1, 231, 3, 231, 5438, 8, 231, 1, 231, 3, 231, 5441, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5451, 8, 233, 1, 233, 3, 233, 5454, 8, 233, 1, 234, 1, 234, 3, 234, 5458, 8, 234, 1, 234, 5, 234, 5461, 8, 234, 10, 234, 12, 234, 5464, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5469, 8, 235, 1, 235, 3, 235, 5472, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5477, 8, 235, 1, 235, 3, 235, 5480, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5487, 8, 235, 3, 235, 5489, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5495, 8, 235, 1, 235, 1, 235, 3, 235, 5499, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5508, 8, 237, 1, 237, 4, 237, 5511, 8, 237, 11, 237, 12, 237, 5512, 3, 237, 5515, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5525, 8, 238, 1, 238, 3, 238, 5528, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5533, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5541, 8, 239, 1, 239, 3, 239, 5544, 8, 239, 1, 239, 4, 239, 5547, 8, 239, 11, 239, 12, 239, 5548, 3, 239, 5551, 8, 239, 3, 239, 5553, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5559, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5576, 8, 243, 1, 243, 1, 243, 5, 243, 5580, 8, 243, 10, 243, 12, 243, 5583, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5595, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5601, 8, 244, 1, 244, 1, 244, 3, 244, 5605, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5610, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5640, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5655, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5660, 8, 246, 1, 247, 1, 247, 3, 247, 5664, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5677, 8, 248, 1, 248, 1, 248, 3, 248, 5681, 8, 248, 3, 248, 5683, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5690, 8, 248, 10, 248, 12, 248, 5693, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5698, 8, 248, 3, 248, 5700, 8, 248, 1, 249, 1, 249, 3, 249, 5704, 8, 249, 1, 249, 3, 249, 5707, 8, 249, 1, 249, 3, 249, 5710, 8, 249, 1, 249, 3, 249, 5713, 8, 249, 1, 249, 3, 249, 5716, 8, 249, 3, 249, 5718, 8, 249, 1, 249, 3, 249, 5721, 8, 249, 1, 250, 1, 250, 3, 250, 5725, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5731, 8, 250, 10, 250, 12, 250, 5734, 9, 250, 1, 250, 1, 250, 3, 250, 5738, 8, 250, 1, 250, 3, 250, 5741, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5747, 8, 252, 1, 252, 1, 252, 3, 252, 5751, 8, 252, 1, 253, 1, 253, 3, 253, 5755, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5760, 8, 253, 3, 253, 5762, 8, 253, 1, 254, 1, 254, 3, 254, 5766, 8, 254, 1, 255, 1, 255, 3, 255, 5770, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5775, 8, 256, 10, 256, 12, 256, 5778, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5783, 8, 257, 1, 257, 1, 257, 3, 257, 5787, 8, 257, 3, 257, 5789, 8, 257, 3, 257, 5791, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5804, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5810, 8, 259, 10, 259, 12, 259, 5813, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5820, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5829, 8, 261, 10, 261, 12, 261, 5832, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5841, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5846, 8, 263, 1, 263, 1, 263, 3, 263, 5850, 8, 263, 1, 263, 1, 263, 3, 263, 5854, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5861, 8, 263, 1, 263, 3, 263, 5864, 8, 263, 3, 263, 5866, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5874, 8, 265, 1, 265, 1, 265, 3, 265, 5878, 8, 265, 1, 266, 3, 266, 5881, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5888, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5895, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5900, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5907, 8, 266, 1, 266, 3, 266, 5910, 8, 266, 3, 266, 5912, 8, 266, 1, 266, 3, 266, 5915, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5921, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5926, 8, 267, 1, 267, 1, 267, 3, 267, 5930, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5935, 8, 268, 10, 268, 12, 268, 5938, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5947, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5954, 8, 271, 1, 271, 3, 271, 5957, 8, 271, 1, 271, 3, 271, 5960, 8, 271, 1, 272, 1, 272, 3, 272, 5964, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5975, 8, 272, 1, 272, 3, 272, 5978, 8, 272, 1, 272, 3, 272, 5981, 8, 272, 1, 272, 3, 272, 5984, 8, 272, 1, 273, 3, 273, 5987, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5994, 8, 273, 1, 273, 3, 273, 5997, 8, 273, 1, 273, 3, 273, 6000, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 6005, 8, 274, 10, 274, 12, 274, 6008, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6019, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6026, 8, 275, 3, 275, 6028, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6033, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6038, 8, 276, 10, 276, 12, 276, 6041, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6046, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6053, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6058, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6063, 8, 279, 1, 279, 1, 279, 3, 279, 6067, 8, 279, 1, 279, 1, 279, 3, 279, 6071, 8, 279, 1, 279, 1, 279, 3, 279, 6075, 8, 279, 3, 279, 6077, 8, 279, 1, 280, 1, 280, 3, 280, 6081, 8, 280, 1, 281, 1, 281, 3, 281, 6085, 8, 281, 1, 281, 3, 281, 6088, 8, 281, 1, 281, 3, 281, 6091, 8, 281, 3, 281, 6093, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6103, 8, 281, 3, 281, 6105, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6110, 8, 281, 5, 281, 6112, 8, 281, 10, 281, 12, 281, 6115, 9, 281, 1, 282, 1, 282, 3, 282, 6119, 8, 282, 1, 283, 1, 283, 3, 283, 6123, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6128, 8, 283, 10, 283, 12, 283, 6131, 9, 283, 1, 284, 1, 284, 3, 284, 6135, 8, 284, 1, 284, 1, 284, 3, 284, 6139, 8, 284, 1, 284, 3, 284, 6142, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6148, 8, 284, 1, 284, 3, 284, 6151, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6170, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6177, 8, 287, 1, 287, 1, 287, 3, 287, 6181, 8, 287, 1, 288, 3, 288, 6184, 8, 288, 1, 288, 1, 288, 3, 288, 6188, 8, 288, 1, 288, 1, 288, 3, 288, 6192, 8, 288, 1, 288, 3, 288, 6195, 8, 288, 1, 288, 3, 288, 6198, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6203, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6210, 8, 290, 10, 290, 12, 290, 6213, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6219, 8, 291, 1, 291, 1, 291, 3, 291, 6223, 8, 291, 1, 292, 1, 292, 3, 292, 6227, 8, 292, 1, 292, 1, 292, 3, 292, 6231, 8, 292, 1, 292, 3, 292, 6234, 8, 292, 3, 292, 6236, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6241, 8, 293, 1, 293, 1, 293, 3, 293, 6245, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6250, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6256, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6263, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6268, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6273, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6280, 8, 298, 10, 298, 12, 298, 6283, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6289, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6295, 8, 299, 10, 299, 12, 299, 6298, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6308, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6313, 8, 300, 1, 300, 1, 300, 3, 300, 6317, 8, 300, 1, 300, 3, 300, 6320, 8, 300, 1, 300, 1, 300, 3, 300, 6324, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6329, 8, 300, 4, 300, 6331, 8, 300, 11, 300, 12, 300, 6332, 1, 300, 1, 300, 1, 300, 3, 300, 6338, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6344, 8, 301, 10, 301, 12, 301, 6347, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6355, 8, 303, 10, 303, 12, 303, 6358, 9, 303, 1, 304, 1, 304, 3, 304, 6362, 8, 304, 1, 304, 1, 304, 3, 304, 6366, 8, 304, 1, 304, 3, 304, 6369, 8, 304, 1, 304, 3, 304, 6372, 8, 304, 3, 304, 6374, 8, 304, 1, 304, 3, 304, 6377, 8, 304, 1, 304, 3, 304, 6380, 8, 304, 1, 304, 3, 304, 6383, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6393, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6398, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6404, 8, 304, 1, 304, 1, 304, 3, 304, 6408, 8, 304, 3, 304, 6410, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6417, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6422, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6428, 8, 304, 10, 304, 12, 304, 6431, 9, 304, 1, 305, 1, 305, 3, 305, 6435, 8, 305, 1, 305, 1, 305, 3, 305, 6439, 8, 305, 1, 305, 1, 305, 3, 305, 6443, 8, 305, 3, 305, 6445, 8, 305, 1, 306, 3, 306, 6448, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6455, 8, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6460, 8, 307, 1, 307, 3, 307, 6463, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6469, 8, 307, 1, 308, 1, 308, 3, 308, 6473, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6479, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6488, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6494, 8, 310, 3, 310, 6496, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6501, 8, 311, 1, 311, 3, 311, 6504, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6513, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6520, 8, 311, 3, 311, 6522, 8, 311, 1, 312, 1, 312, 1, 312, 5, 312, 6527, 8, 312, 10, 312, 12, 312, 6530, 9, 312, 1, 313, 1, 313, 3, 313, 6534, 8, 313, 1, 313, 3, 313, 6537, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 6547, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6556, 8, 315, 10, 315, 12, 315, 6559, 9, 315, 1, 315, 1, 315, 3, 315, 6563, 8, 315, 1, 315, 1, 315, 3, 315, 6567, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 6575, 8, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6585, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 6590, 8, 319, 10, 319, 12, 319, 6593, 9, 319, 1, 320, 1, 320, 1, 320, 3, 320, 6598, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6607, 8, 321, 10, 321, 12, 321, 6610, 9, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6615, 8, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6623, 8, 321, 10, 321, 12, 321, 6626, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6634, 8, 322, 1, 322, 1, 322, 3, 322, 6638, 8, 322, 1, 322, 4, 322, 6641, 8, 322, 11, 322, 12, 322, 6642, 3, 322, 6645, 8, 322, 1, 322, 1, 322, 3, 322, 6649, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6657, 8, 323, 1, 324, 3, 324, 6660, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6665, 8, 324, 1, 324, 5, 324, 6668, 8, 324, 10, 324, 12, 324, 6671, 9, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6677, 8, 324, 3, 324, 6679, 8, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6685, 8, 324, 1, 325, 1, 325, 3, 325, 6689, 8, 325, 1, 325, 3, 325, 6692, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6697, 8, 325, 1, 325, 3, 325, 6700, 8, 325, 3, 325, 6702, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6708, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6717, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6723, 8, 327, 1, 327, 3, 327, 6726, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 6734, 8, 329, 1, 329, 3, 329, 6737, 8, 329, 1, 330, 1, 330, 3, 330, 6741, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6747, 8, 330, 3, 330, 6749, 8, 330, 1, 330, 3, 330, 6752, 8, 330, 1, 331, 1, 331, 3, 331, 6756, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6761, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6768, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6775, 8, 332, 3, 332, 6777, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6783, 8, 332, 3, 332, 6785, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6790, 8, 332, 3, 332, 6792, 8, 332, 1, 333, 1, 333, 3, 333, 6796, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 3, 336, 6805, 8, 336, 1, 336, 1, 336, 3, 336, 6809, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6817, 8, 336, 10, 336, 12, 336, 6820, 9, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6833, 8, 337, 1, 337, 3, 337, 6836, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6844, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6851, 8, 337, 10, 337, 12, 337, 6854, 9, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6859, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6864, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6872, 8, 337, 3, 337, 6874, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6879, 8, 337, 1, 337, 1, 337, 3, 337, 6883, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6888, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6893, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6899, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 6915, 8, 338, 10, 338, 12, 338, 6918, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6926, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6941, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6946, 8, 339, 1, 339, 3, 339, 6949, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6955, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6960, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6973, 8, 339, 1, 339, 4, 339, 6976, 8, 339, 11, 339, 12, 339, 6977, 1, 339, 1, 339, 3, 339, 6982, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6989, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7008, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7020, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7025, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7033, 8, 339, 5, 339, 7035, 8, 339, 10, 339, 12, 339, 7038, 9, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7046, 8, 340, 1, 340, 3, 340, 7049, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7054, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7059, 8, 340, 1, 340, 3, 340, 7062, 8, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7073, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7081, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7086, 8, 341, 3, 341, 7088, 8, 341, 1, 341, 3, 341, 7091, 8, 341, 1, 342, 1, 342, 3, 342, 7095, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7106, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7127, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7135, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7148, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7158, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7164, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7170, 8, 343, 1, 343, 3, 343, 7173, 8, 343, 1, 343, 3, 343, 7176, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7202, 8, 343, 3, 343, 7204, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7225, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7235, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7248, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7253, 8, 343, 1, 343, 1, 343, 3, 343, 7257, 8, 343, 3, 343, 7259, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7271, 8, 343, 1, 344, 1, 344, 1, 344, 5, 344, 7276, 8, 344, 10, 344, 12, 344, 7279, 9, 344, 1, 345, 1, 345, 1, 345, 3, 345, 7284, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 3, 347, 7290, 8, 347, 1, 347, 1, 347, 3, 347, 7294, 8, 347, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 5, 349, 7303, 8, 349, 10, 349, 12, 349, 7306, 9, 349, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 3, 352, 7318, 8, 352, 1, 353, 1, 353, 3, 353, 7322, 8, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7327, 8, 353, 1, 353, 3, 353, 7330, 8, 353, 1, 353, 3, 353, 7333, 8, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7342, 8, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7353, 8, 354, 3, 354, 7355, 8, 354, 1, 355, 1, 355, 3, 355, 7359, 8, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7364, 8, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7373, 8, 356, 1, 357, 1, 357, 1, 357, 3, 357, 7378, 8, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 359, 1, 359, 3, 359, 7386, 8, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7396, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7404, 8, 362, 1, 363, 1, 363, 3, 363, 7408, 8, 363, 1, 363, 3, 363, 7411, 8, 363, 1, 364, 1, 364, 1, 364, 5, 364, 7416, 8, 364, 10, 364, 12, 364, 7419, 9, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7430, 8, 367, 1, 368, 1, 368, 3, 368, 7434, 8, 368, 1, 369, 1, 369, 1, 369, 5, 369, 7439, 8, 369, 10, 369, 12, 369, 7442, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7449, 8, 370, 3, 370, 7451, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 5, 371, 7458, 8, 371, 10, 371, 12, 371, 7461, 9, 371, 3, 371, 7463, 8, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7475, 8, 372, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7484, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7491, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7500, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 3, 376, 7510, 8, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7515, 8, 376, 1, 376, 1, 376, 3, 376, 7519, 8, 376, 3, 376, 7521, 8, 376, 1, 376, 3, 376, 7524, 8, 376, 1, 377, 4, 377, 7527, 8, 377, 11, 377, 12, 377, 7528, 1, 378, 5, 378, 7532, 8, 378, 10, 378, 12, 378, 7535, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7540, 8, 379, 10, 379, 12, 379, 7543, 9, 379, 1, 380, 1, 380, 1, 380, 3, 380, 7548, 8, 380, 1, 380, 3, 380, 7551, 8, 380, 1, 380, 1, 380, 3, 380, 7555, 8, 380, 3, 380, 7557, 8, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7562, 8, 381, 10, 381, 12, 381, 7565, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7572, 8, 382, 10, 382, 12, 382, 7575, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7580, 8, 383, 10, 383, 12, 383, 7583, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7588, 8, 384, 10, 384, 12, 384, 7591, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7596, 8, 385, 10, 385, 12, 385, 7599, 9, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7615, 8, 392, 1, 393, 1, 393, 1, 393, 5, 393, 7620, 8, 393, 10, 393, 12, 393, 7623, 9, 393, 1, 394, 1, 394, 1, 394, 5, 394, 7628, 8, 394, 10, 394, 12, 394, 7631, 9, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7647, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7653, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7659, 8, 402, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7670, 8, 405, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7676, 8, 406, 1, 407, 1, 407, 1, 407, 3, 407, 7681, 8, 407, 1, 408, 1, 408, 1, 408, 1, 408, 5, 408, 7687, 8, 408, 10, 408, 12, 408, 7690, 9, 408, 1, 408, 1, 408, 3, 408, 7694, 8, 408, 1, 409, 3, 409, 7697, 8, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 3, 410, 7706, 8, 410, 1, 411, 1, 411, 1, 411, 5, 411, 7711, 8, 411, 10, 411, 12, 411, 7714, 9, 411, 1, 412, 1, 412, 3, 412, 7718, 8, 412, 1, 413, 1, 413, 3, 413, 7722, 8, 413, 1, 414, 1, 414, 1, 414, 3, 414, 7727, 8, 414, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 7733, 8, 415, 1, 416, 1, 416, 1, 416, 3, 416, 7738, 8, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 7746, 8, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7801, 8, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 421, 3, 421, 7808, 8, 421, 1, 421, 1, 421, 1, 421, 1, 421, 4, 421, 7814, 8, 421, 11, 421, 12, 421, 7815, 3, 421, 7818, 8, 421, 3, 421, 7820, 8, 421, 1, 421, 1, 421, 5, 421, 7824, 8, 421, 10, 421, 12, 421, 7827, 9, 421, 1, 421, 3, 421, 7830, 8, 421, 1, 421, 1, 421, 3, 421, 7834, 8, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 3, 423, 7845, 8, 423, 1, 423, 3, 423, 7848, 8, 423, 1, 423, 1, 423, 3, 423, 7852, 8, 423, 1, 423, 1, 423, 3, 423, 7856, 8, 423, 1, 423, 1, 423, 3, 423, 7860, 8, 423, 1, 423, 3, 423, 7863, 8, 423, 1, 423, 3, 423, 7866, 8, 423, 1, 423, 3, 423, 7869, 8, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 5, 423, 7876, 8, 423, 10, 423, 12, 423, 7879, 9, 423, 1, 423, 1, 423, 3, 423, 7883, 8, 423, 1, 423, 1, 423, 3, 423, 7887, 8, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 3, 426, 7920, 8, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, 7930, 8, 428, 1, 428, 1, 428, 3, 428, 7934, 8, 428, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, 7940, 8, 428, 1, 428, 1, 428, 1, 428, 3, 428, 7945, 8, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 3, 430, 7954, 8, 430, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 7960, 8, 430, 10, 430, 12, 430, 7963, 9, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 3, 432, 7973, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 7979, 8, 432, 10, 432, 12, 432, 7982, 9, 432, 1, 433, 1, 433, 1, 433, 1, 433, 5, 433, 7988, 8, 433, 10, 433, 12, 433, 7991, 9, 433, 1, 433, 1, 433, 1, 433, 1, 433, 5, 433, 7997, 8, 433, 10, 433, 12, 433, 8000, 9, 433, 5, 433, 8002, 8, 433, 10, 433, 12, 433, 8005, 9, 433, 1, 433, 3, 433, 8008, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 5, 434, 8016, 8, 434, 10, 434, 12, 434, 8019, 9, 434, 1, 435, 1, 435, 3, 435, 8023, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 5, 435, 8029, 8, 435, 10, 435, 12, 435, 8032, 9, 435, 4, 435, 8034, 8, 435, 11, 435, 12, 435, 8035, 1, 435, 3, 435, 8039, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 3, 436, 8046, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8052, 8, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8060, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8068, 8, 437, 1, 437, 3, 437, 8071, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8078, 8, 437, 3, 437, 8080, 8, 437, 1, 438, 3, 438, 8083, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8089, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 3, 439, 8098, 8, 439, 1, 439, 1, 439, 3, 439, 8102, 8, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8116, 8, 440, 1, 440, 3, 440, 8119, 8, 440, 3, 440, 8121, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8127, 8, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 4, 441, 8135, 8, 441, 11, 441, 12, 441, 8136, 3, 441, 8139, 8, 441, 3, 441, 8141, 8, 441, 1, 441, 1, 441, 1, 441, 1, 441, 5, 441, 8147, 8, 441, 10, 441, 12, 441, 8150, 9, 441, 3, 441, 8152, 8, 441, 1, 441, 3, 441, 8155, 8, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 8165, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 5, 444, 8171, 8, 444, 10, 444, 12, 444, 8174, 9, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8179, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 3, 445, 8185, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 3, 446, 8192, 8, 446, 1, 446, 1, 446, 3, 446, 8196, 8, 446, 1, 446, 1, 446, 3, 446, 8200, 8, 446, 1, 446, 3, 446, 8203, 8, 446, 1, 446, 3, 446, 8206, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8212, 8, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 3, 448, 8219, 8, 448, 1, 448, 3, 448, 8222, 8, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 8230, 8, 448, 3, 448, 8232, 8, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 5, 448, 8239, 8, 448, 10, 448, 12, 448, 8242, 9, 448, 1, 448, 1, 448, 3, 448, 8246, 8, 448, 3, 448, 8248, 8, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 3, 449, 8255, 8, 449, 1, 449, 1, 449, 1, 450, 1, 450, 3, 450, 8261, 8, 450, 1, 450, 3, 450, 8264, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8276, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8283, 8, 451, 3, 451, 8285, 8, 451, 1, 452, 1, 452, 3, 452, 8289, 8, 452, 1, 452, 1, 452, 1, 452, 1, 453, 3, 453, 8295, 8, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8300, 8, 453, 1, 453, 1, 453, 3, 453, 8304, 8, 453, 1, 453, 3, 453, 8307, 8, 453, 1, 453, 3, 453, 8310, 8, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 4, 453, 8317, 8, 453, 11, 453, 12, 453, 8318, 1, 453, 3, 453, 8322, 8, 453, 1, 454, 3, 454, 8325, 8, 454, 1, 454, 1, 454, 3, 454, 8329, 8, 454, 1, 454, 1, 454, 3, 454, 8333, 8, 454, 3, 454, 8335, 8, 454, 1, 454, 3, 454, 8338, 8, 454, 1, 454, 3, 454, 8341, 8, 454, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8347, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8354, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8361, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8367, 8, 455, 3, 455, 8369, 8, 455, 1, 456, 1, 456, 3, 456, 8373, 8, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8378, 8, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 5, 457, 8394, 8, 457, 10, 457, 12, 457, 8397, 9, 457, 1, 457, 1, 457, 4, 457, 8401, 8, 457, 11, 457, 12, 457, 8402, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 5, 458, 8410, 8, 458, 10, 458, 12, 458, 8413, 9, 458, 1, 458, 1, 458, 1, 458, 1, 458, 3, 458, 8419, 8, 458, 1, 459, 1, 459, 3, 459, 8423, 8, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 3, 462, 8435, 8, 462, 1, 462, 3, 462, 8438, 8, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 3, 463, 8451, 8, 463, 1, 463, 3, 463, 8454, 8, 463, 1, 464, 1, 464, 3, 464, 8458, 8, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 5, 465, 8465, 8, 465, 10, 465, 12, 465, 8468, 9, 465, 1, 465, 1, 465, 5, 465, 8472, 8, 465, 10, 465, 12, 465, 8475, 9, 465, 4, 465, 8477, 8, 465, 11, 465, 12, 465, 8478, 1, 466, 1, 466, 1, 466, 3, 466, 8484, 8, 466, 1, 467, 1, 467, 3, 467, 8488, 8, 467, 1, 468, 3, 468, 8491, 8, 468, 1, 468, 3, 468, 8494, 8, 468, 1, 468, 3, 468, 8497, 8, 468, 1, 468, 3, 468, 8500, 8, 468, 1, 468, 3, 468, 8503, 8, 468, 1, 468, 3, 468, 8506, 8, 468, 1, 468, 3, 468, 8509, 8, 468, 1, 468, 0, 3, 672, 676, 678, 469, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 0, 119, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 158, 158, 277, 277, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 1, 0, 549, 551, 2, 0, 213, 213, 254, 254, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 574, 574, 576, 576, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9947, 0, 941, 1, 0, 0, 0, 2, 946, 1, 0, 0, 0, 4, 1070, 1, 0, 0, 0, 6, 1072, 1, 0, 0, 0, 8, 1075, 1, 0, 0, 0, 10, 1125, 1, 0, 0, 0, 12, 1135, 1, 0, 0, 0, 14, 1137, 1, 0, 0, 0, 16, 1149, 1, 0, 0, 0, 18, 1161, 1, 0, 0, 0, 20, 1172, 1, 0, 0, 0, 22, 1206, 1, 0, 0, 0, 24, 1250, 1, 0, 0, 0, 26, 1252, 1, 0, 0, 0, 28, 1264, 1, 0, 0, 0, 30, 1271, 1, 0, 0, 0, 32, 1290, 1, 0, 0, 0, 34, 1298, 1, 0, 0, 0, 36, 1300, 1, 0, 0, 0, 38, 1314, 1, 0, 0, 0, 40, 1318, 1, 0, 0, 0, 42, 1355, 1, 0, 0, 0, 44, 1357, 1, 0, 0, 0, 46, 1365, 1, 0, 0, 0, 48, 1375, 1, 0, 0, 0, 50, 1382, 1, 0, 0, 0, 52, 1390, 1, 0, 0, 0, 54, 1396, 1, 0, 0, 0, 56, 1412, 1, 0, 0, 0, 58, 1416, 1, 0, 0, 0, 60, 1418, 1, 0, 0, 0, 62, 1430, 1, 0, 0, 0, 64, 1435, 1, 0, 0, 0, 66, 1440, 1, 0, 0, 0, 68, 1442, 1, 0, 0, 0, 70, 1454, 1, 0, 0, 0, 72, 1462, 1, 0, 0, 0, 74, 1464, 1, 0, 0, 0, 76, 1584, 1, 0, 0, 0, 78, 1586, 1, 0, 0, 0, 80, 1600, 1, 0, 0, 0, 82, 1602, 1, 0, 0, 0, 84, 1839, 1, 0, 0, 0, 86, 1846, 1, 0, 0, 0, 88, 1848, 1, 0, 0, 0, 90, 1850, 1, 0, 0, 0, 92, 1853, 1, 0, 0, 0, 94, 1864, 1, 0, 0, 0, 96, 1867, 1, 0, 0, 0, 98, 1897, 1, 0, 0, 0, 100, 1899, 1, 0, 0, 0, 102, 1940, 1, 0, 0, 0, 104, 1942, 1, 0, 0, 0, 106, 1996, 1, 0, 0, 0, 108, 2042, 1, 0, 0, 0, 110, 2063, 1, 0, 0, 0, 112, 2065, 1, 0, 0, 0, 114, 2082, 1, 0, 0, 0, 116, 2163, 1, 0, 0, 0, 118, 2165, 1, 0, 0, 0, 120, 2176, 1, 0, 0, 0, 122, 2199, 1, 0, 0, 0, 124, 2217, 1, 0, 0, 0, 126, 2219, 1, 0, 0, 0, 128, 2254, 1, 0, 0, 0, 130, 2347, 1, 0, 0, 0, 132, 2352, 1, 0, 0, 0, 134, 2354, 1, 0, 0, 0, 136, 2452, 1, 0, 0, 0, 138, 2454, 1, 0, 0, 0, 140, 2458, 1, 0, 0, 0, 142, 2469, 1, 0, 0, 0, 144, 2477, 1, 0, 0, 0, 146, 2480, 1, 0, 0, 0, 148, 2483, 1, 0, 0, 0, 150, 2501, 1, 0, 0, 0, 152, 2503, 1, 0, 0, 0, 154, 2507, 1, 0, 0, 0, 156, 2520, 1, 0, 0, 0, 158, 2522, 1, 0, 0, 0, 160, 2527, 1, 0, 0, 0, 162, 2547, 1, 0, 0, 0, 164, 2555, 1, 0, 0, 0, 166, 2562, 1, 0, 0, 0, 168, 2564, 1, 0, 0, 0, 170, 2573, 1, 0, 0, 0, 172, 2576, 1, 0, 0, 0, 174, 2580, 1, 0, 0, 0, 176, 2584, 1, 0, 0, 0, 178, 2609, 1, 0, 0, 0, 180, 2619, 1, 0, 0, 0, 182, 2633, 1, 0, 0, 0, 184, 2649, 1, 0, 0, 0, 186, 2655, 1, 0, 0, 0, 188, 2682, 1, 0, 0, 0, 190, 2692, 1, 0, 0, 0, 192, 2708, 1, 0, 0, 0, 194, 2752, 1, 0, 0, 0, 196, 2759, 1, 0, 0, 0, 198, 2761, 1, 0, 0, 0, 200, 2787, 1, 0, 0, 0, 202, 2798, 1, 0, 0, 0, 204, 2817, 1, 0, 0, 0, 206, 2828, 1, 0, 0, 0, 208, 2866, 1, 0, 0, 0, 210, 2887, 1, 0, 0, 0, 212, 2889, 1, 0, 0, 0, 214, 2909, 1, 0, 0, 0, 216, 2921, 1, 0, 0, 0, 218, 2933, 1, 0, 0, 0, 220, 2936, 1, 0, 0, 0, 222, 2939, 1, 0, 0, 0, 224, 2959, 1, 0, 0, 0, 226, 2964, 1, 0, 0, 0, 228, 3013, 1, 0, 0, 0, 230, 3015, 1, 0, 0, 0, 232, 3038, 1, 0, 0, 0, 234, 3054, 1, 0, 0, 0, 236, 3066, 1, 0, 0, 0, 238, 3093, 1, 0, 0, 0, 240, 3108, 1, 0, 0, 0, 242, 3171, 1, 0, 0, 0, 244, 3173, 1, 0, 0, 0, 246, 3178, 1, 0, 0, 0, 248, 3184, 1, 0, 0, 0, 250, 3271, 1, 0, 0, 0, 252, 3277, 1, 0, 0, 0, 254, 3279, 1, 0, 0, 0, 256, 3295, 1, 0, 0, 0, 258, 3297, 1, 0, 0, 0, 260, 3306, 1, 0, 0, 0, 262, 3310, 1, 0, 0, 0, 264, 3323, 1, 0, 0, 0, 266, 3335, 1, 0, 0, 0, 268, 3337, 1, 0, 0, 0, 270, 3359, 1, 0, 0, 0, 272, 3371, 1, 0, 0, 0, 274, 3382, 1, 0, 0, 0, 276, 3473, 1, 0, 0, 0, 278, 3475, 1, 0, 0, 0, 280, 3486, 1, 0, 0, 0, 282, 3497, 1, 0, 0, 0, 284, 3499, 1, 0, 0, 0, 286, 3525, 1, 0, 0, 0, 288, 3527, 1, 0, 0, 0, 290, 3531, 1, 0, 0, 0, 292, 3581, 1, 0, 0, 0, 294, 3583, 1, 0, 0, 0, 296, 3589, 1, 0, 0, 0, 298, 3614, 1, 0, 0, 0, 300, 3618, 1, 0, 0, 0, 302, 3832, 1, 0, 0, 0, 304, 3850, 1, 0, 0, 0, 306, 3876, 1, 0, 0, 0, 308, 3878, 1, 0, 0, 0, 310, 3886, 1, 0, 0, 0, 312, 3892, 1, 0, 0, 0, 314, 3896, 1, 0, 0, 0, 316, 3916, 1, 0, 0, 0, 318, 3922, 1, 0, 0, 0, 320, 3989, 1, 0, 0, 0, 322, 4020, 1, 0, 0, 0, 324, 4066, 1, 0, 0, 0, 326, 4068, 1, 0, 0, 0, 328, 4070, 1, 0, 0, 0, 330, 4081, 1, 0, 0, 0, 332, 4118, 1, 0, 0, 0, 334, 4120, 1, 0, 0, 0, 336, 4126, 1, 0, 0, 0, 338, 4176, 1, 0, 0, 0, 340, 4179, 1, 0, 0, 0, 342, 4193, 1, 0, 0, 0, 344, 4214, 1, 0, 0, 0, 346, 4238, 1, 0, 0, 0, 348, 4279, 1, 0, 0, 0, 350, 4281, 1, 0, 0, 0, 352, 4283, 1, 0, 0, 0, 354, 4323, 1, 0, 0, 0, 356, 4340, 1, 0, 0, 0, 358, 4360, 1, 0, 0, 0, 360, 4413, 1, 0, 0, 0, 362, 4416, 1, 0, 0, 0, 364, 4422, 1, 0, 0, 0, 366, 4430, 1, 0, 0, 0, 368, 4443, 1, 0, 0, 0, 370, 4445, 1, 0, 0, 0, 372, 4458, 1, 0, 0, 0, 374, 4460, 1, 0, 0, 0, 376, 4473, 1, 0, 0, 0, 378, 4483, 1, 0, 0, 0, 380, 4494, 1, 0, 0, 0, 382, 4505, 1, 0, 0, 0, 384, 4507, 1, 0, 0, 0, 386, 4512, 1, 0, 0, 0, 388, 4526, 1, 0, 0, 0, 390, 4558, 1, 0, 0, 0, 392, 4595, 1, 0, 0, 0, 394, 4597, 1, 0, 0, 0, 396, 4600, 1, 0, 0, 0, 398, 4603, 1, 0, 0, 0, 400, 4620, 1, 0, 0, 0, 402, 4641, 1, 0, 0, 0, 404, 4657, 1, 0, 0, 0, 406, 4673, 1, 0, 0, 0, 408, 4695, 1, 0, 0, 0, 410, 4700, 1, 0, 0, 0, 412, 4703, 1, 0, 0, 0, 414, 4711, 1, 0, 0, 0, 416, 4736, 1, 0, 0, 0, 418, 4739, 1, 0, 0, 0, 420, 4767, 1, 0, 0, 0, 422, 4772, 1, 0, 0, 0, 424, 4812, 1, 0, 0, 0, 426, 5024, 1, 0, 0, 0, 428, 5026, 1, 0, 0, 0, 430, 5114, 1, 0, 0, 0, 432, 5116, 1, 0, 0, 0, 434, 5122, 1, 0, 0, 0, 436, 5133, 1, 0, 0, 0, 438, 5143, 1, 0, 0, 0, 440, 5223, 1, 0, 0, 0, 442, 5225, 1, 0, 0, 0, 444, 5239, 1, 0, 0, 0, 446, 5261, 1, 0, 0, 0, 448, 5334, 1, 0, 0, 0, 450, 5336, 1, 0, 0, 0, 452, 5377, 1, 0, 0, 0, 454, 5379, 1, 0, 0, 0, 456, 5384, 1, 0, 0, 0, 458, 5387, 1, 0, 0, 0, 460, 5390, 1, 0, 0, 0, 462, 5440, 1, 0, 0, 0, 464, 5442, 1, 0, 0, 0, 466, 5453, 1, 0, 0, 0, 468, 5455, 1, 0, 0, 0, 470, 5465, 1, 0, 0, 0, 472, 5500, 1, 0, 0, 0, 474, 5503, 1, 0, 0, 0, 476, 5524, 1, 0, 0, 0, 478, 5534, 1, 0, 0, 0, 480, 5554, 1, 0, 0, 0, 482, 5560, 1, 0, 0, 0, 484, 5566, 1, 0, 0, 0, 486, 5571, 1, 0, 0, 0, 488, 5584, 1, 0, 0, 0, 490, 5611, 1, 0, 0, 0, 492, 5659, 1, 0, 0, 0, 494, 5661, 1, 0, 0, 0, 496, 5699, 1, 0, 0, 0, 498, 5701, 1, 0, 0, 0, 500, 5722, 1, 0, 0, 0, 502, 5742, 1, 0, 0, 0, 504, 5746, 1, 0, 0, 0, 506, 5761, 1, 0, 0, 0, 508, 5763, 1, 0, 0, 0, 510, 5767, 1, 0, 0, 0, 512, 5771, 1, 0, 0, 0, 514, 5779, 1, 0, 0, 0, 516, 5803, 1, 0, 0, 0, 518, 5805, 1, 0, 0, 0, 520, 5816, 1, 0, 0, 0, 522, 5824, 1, 0, 0, 0, 524, 5840, 1, 0, 0, 0, 526, 5865, 1, 0, 0, 0, 528, 5867, 1, 0, 0, 0, 530, 5871, 1, 0, 0, 0, 532, 5880, 1, 0, 0, 0, 534, 5920, 1, 0, 0, 0, 536, 5931, 1, 0, 0, 0, 538, 5939, 1, 0, 0, 0, 540, 5942, 1, 0, 0, 0, 542, 5946, 1, 0, 0, 0, 544, 5961, 1, 0, 0, 0, 546, 5986, 1, 0, 0, 0, 548, 6001, 1, 0, 0, 0, 550, 6027, 1, 0, 0, 0, 552, 6029, 1, 0, 0, 0, 554, 6052, 1, 0, 0, 0, 556, 6054, 1, 0, 0, 0, 558, 6062, 1, 0, 0, 0, 560, 6080, 1, 0, 0, 0, 562, 6104, 1, 0, 0, 0, 564, 6116, 1, 0, 0, 0, 566, 6120, 1, 0, 0, 0, 568, 6132, 1, 0, 0, 0, 570, 6152, 1, 0, 0, 0, 572, 6160, 1, 0, 0, 0, 574, 6174, 1, 0, 0, 0, 576, 6197, 1, 0, 0, 0, 578, 6199, 1, 0, 0, 0, 580, 6204, 1, 0, 0, 0, 582, 6214, 1, 0, 0, 0, 584, 6235, 1, 0, 0, 0, 586, 6237, 1, 0, 0, 0, 588, 6246, 1, 0, 0, 0, 590, 6257, 1, 0, 0, 0, 592, 6267, 1, 0, 0, 0, 594, 6269, 1, 0, 0, 0, 596, 6276, 1, 0, 0, 0, 598, 6307, 1, 0, 0, 0, 600, 6337, 1, 0, 0, 0, 602, 6339, 1, 0, 0, 0, 604, 6348, 1, 0, 0, 0, 606, 6351, 1, 0, 0, 0, 608, 6409, 1, 0, 0, 0, 610, 6444, 1, 0, 0, 0, 612, 6447, 1, 0, 0, 0, 614, 6468, 1, 0, 0, 0, 616, 6470, 1, 0, 0, 0, 618, 6478, 1, 0, 0, 0, 620, 6495, 1, 0, 0, 0, 622, 6521, 1, 0, 0, 0, 624, 6523, 1, 0, 0, 0, 626, 6531, 1, 0, 0, 0, 628, 6538, 1, 0, 0, 0, 630, 6562, 1, 0, 0, 0, 632, 6568, 1, 0, 0, 0, 634, 6576, 1, 0, 0, 0, 636, 6579, 1, 0, 0, 0, 638, 6586, 1, 0, 0, 0, 640, 6594, 1, 0, 0, 0, 642, 6599, 1, 0, 0, 0, 644, 6629, 1, 0, 0, 0, 646, 6656, 1, 0, 0, 0, 648, 6684, 1, 0, 0, 0, 650, 6701, 1, 0, 0, 0, 652, 6707, 1, 0, 0, 0, 654, 6725, 1, 0, 0, 0, 656, 6727, 1, 0, 0, 0, 658, 6731, 1, 0, 0, 0, 660, 6748, 1, 0, 0, 0, 662, 6753, 1, 0, 0, 0, 664, 6791, 1, 0, 0, 0, 666, 6793, 1, 0, 0, 0, 668, 6797, 1, 0, 0, 0, 670, 6799, 1, 0, 0, 0, 672, 6808, 1, 0, 0, 0, 674, 6892, 1, 0, 0, 0, 676, 6898, 1, 0, 0, 0, 678, 7007, 1, 0, 0, 0, 680, 7039, 1, 0, 0, 0, 682, 7090, 1, 0, 0, 0, 684, 7094, 1, 0, 0, 0, 686, 7270, 1, 0, 0, 0, 688, 7272, 1, 0, 0, 0, 690, 7280, 1, 0, 0, 0, 692, 7285, 1, 0, 0, 0, 694, 7287, 1, 0, 0, 0, 696, 7295, 1, 0, 0, 0, 698, 7298, 1, 0, 0, 0, 700, 7307, 1, 0, 0, 0, 702, 7310, 1, 0, 0, 0, 704, 7314, 1, 0, 0, 0, 706, 7319, 1, 0, 0, 0, 708, 7336, 1, 0, 0, 0, 710, 7363, 1, 0, 0, 0, 712, 7372, 1, 0, 0, 0, 714, 7374, 1, 0, 0, 0, 716, 7381, 1, 0, 0, 0, 718, 7385, 1, 0, 0, 0, 720, 7387, 1, 0, 0, 0, 722, 7395, 1, 0, 0, 0, 724, 7403, 1, 0, 0, 0, 726, 7410, 1, 0, 0, 0, 728, 7412, 1, 0, 0, 0, 730, 7420, 1, 0, 0, 0, 732, 7422, 1, 0, 0, 0, 734, 7429, 1, 0, 0, 0, 736, 7433, 1, 0, 0, 0, 738, 7435, 1, 0, 0, 0, 740, 7450, 1, 0, 0, 0, 742, 7452, 1, 0, 0, 0, 744, 7474, 1, 0, 0, 0, 746, 7476, 1, 0, 0, 0, 748, 7499, 1, 0, 0, 0, 750, 7501, 1, 0, 0, 0, 752, 7523, 1, 0, 0, 0, 754, 7526, 1, 0, 0, 0, 756, 7533, 1, 0, 0, 0, 758, 7536, 1, 0, 0, 0, 760, 7556, 1, 0, 0, 0, 762, 7563, 1, 0, 0, 0, 764, 7568, 1, 0, 0, 0, 766, 7576, 1, 0, 0, 0, 768, 7584, 1, 0, 0, 0, 770, 7592, 1, 0, 0, 0, 772, 7600, 1, 0, 0, 0, 774, 7602, 1, 0, 0, 0, 776, 7604, 1, 0, 0, 0, 778, 7606, 1, 0, 0, 0, 780, 7608, 1, 0, 0, 0, 782, 7610, 1, 0, 0, 0, 784, 7612, 1, 0, 0, 0, 786, 7616, 1, 0, 0, 0, 788, 7624, 1, 0, 0, 0, 790, 7632, 1, 0, 0, 0, 792, 7634, 1, 0, 0, 0, 794, 7636, 1, 0, 0, 0, 796, 7638, 1, 0, 0, 0, 798, 7640, 1, 0, 0, 0, 800, 7646, 1, 0, 0, 0, 802, 7652, 1, 0, 0, 0, 804, 7658, 1, 0, 0, 0, 806, 7660, 1, 0, 0, 0, 808, 7663, 1, 0, 0, 0, 810, 7669, 1, 0, 0, 0, 812, 7675, 1, 0, 0, 0, 814, 7677, 1, 0, 0, 0, 816, 7693, 1, 0, 0, 0, 818, 7696, 1, 0, 0, 0, 820, 7705, 1, 0, 0, 0, 822, 7707, 1, 0, 0, 0, 824, 7717, 1, 0, 0, 0, 826, 7721, 1, 0, 0, 0, 828, 7726, 1, 0, 0, 0, 830, 7732, 1, 0, 0, 0, 832, 7745, 1, 0, 0, 0, 834, 7747, 1, 0, 0, 0, 836, 7800, 1, 0, 0, 0, 838, 7802, 1, 0, 0, 0, 840, 7804, 1, 0, 0, 0, 842, 7807, 1, 0, 0, 0, 844, 7835, 1, 0, 0, 0, 846, 7839, 1, 0, 0, 0, 848, 7890, 1, 0, 0, 0, 850, 7893, 1, 0, 0, 0, 852, 7919, 1, 0, 0, 0, 854, 7921, 1, 0, 0, 0, 856, 7944, 1, 0, 0, 0, 858, 7946, 1, 0, 0, 0, 860, 7951, 1, 0, 0, 0, 862, 7966, 1, 0, 0, 0, 864, 7972, 1, 0, 0, 0, 866, 7983, 1, 0, 0, 0, 868, 8013, 1, 0, 0, 0, 870, 8020, 1, 0, 0, 0, 872, 8045, 1, 0, 0, 0, 874, 8055, 1, 0, 0, 0, 876, 8082, 1, 0, 0, 0, 878, 8095, 1, 0, 0, 0, 880, 8105, 1, 0, 0, 0, 882, 8124, 1, 0, 0, 0, 884, 8156, 1, 0, 0, 0, 886, 8160, 1, 0, 0, 0, 888, 8168, 1, 0, 0, 0, 890, 8182, 1, 0, 0, 0, 892, 8188, 1, 0, 0, 0, 894, 8209, 1, 0, 0, 0, 896, 8215, 1, 0, 0, 0, 898, 8254, 1, 0, 0, 0, 900, 8258, 1, 0, 0, 0, 902, 8284, 1, 0, 0, 0, 904, 8286, 1, 0, 0, 0, 906, 8294, 1, 0, 0, 0, 908, 8334, 1, 0, 0, 0, 910, 8368, 1, 0, 0, 0, 912, 8370, 1, 0, 0, 0, 914, 8381, 1, 0, 0, 0, 916, 8418, 1, 0, 0, 0, 918, 8422, 1, 0, 0, 0, 920, 8424, 1, 0, 0, 0, 922, 8428, 1, 0, 0, 0, 924, 8431, 1, 0, 0, 0, 926, 8453, 1, 0, 0, 0, 928, 8457, 1, 0, 0, 0, 930, 8459, 1, 0, 0, 0, 932, 8483, 1, 0, 0, 0, 934, 8487, 1, 0, 0, 0, 936, 8490, 1, 0, 0, 0, 938, 940, 3, 2, 1, 0, 939, 938, 1, 0, 0, 0, 940, 943, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 944, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 944, 945, 5, 0, 0, 1, 945, 1, 1, 0, 0, 0, 946, 948, 3, 4, 2, 0, 947, 949, 5, 7, 0, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 3, 1, 0, 0, 0, 950, 1071, 3, 272, 136, 0, 951, 1071, 3, 482, 241, 0, 952, 1071, 3, 478, 239, 0, 953, 1071, 3, 480, 240, 0, 954, 1071, 3, 346, 173, 0, 955, 1071, 3, 488, 244, 0, 956, 1071, 3, 286, 143, 0, 957, 1071, 3, 204, 102, 0, 958, 1071, 3, 206, 103, 0, 959, 1071, 3, 212, 106, 0, 960, 1071, 3, 226, 113, 0, 961, 1071, 3, 398, 199, 0, 962, 1071, 3, 28, 14, 0, 963, 1071, 3, 428, 214, 0, 964, 1071, 3, 430, 215, 0, 965, 1071, 3, 440, 220, 0, 966, 1071, 3, 432, 216, 0, 967, 1071, 3, 438, 219, 0, 968, 1071, 3, 238, 119, 0, 969, 1071, 3, 240, 120, 0, 970, 1071, 3, 192, 96, 0, 971, 1071, 3, 484, 242, 0, 972, 1071, 3, 76, 38, 0, 973, 1071, 3, 424, 212, 0, 974, 1071, 3, 100, 50, 0, 975, 1071, 3, 444, 222, 0, 976, 1071, 3, 18, 9, 0, 977, 1071, 3, 20, 10, 0, 978, 1071, 3, 16, 8, 0, 979, 1071, 3, 448, 224, 0, 980, 1071, 3, 178, 89, 0, 981, 1071, 3, 492, 246, 0, 982, 1071, 3, 490, 245, 0, 983, 1071, 3, 234, 117, 0, 984, 1071, 3, 500, 250, 0, 985, 1071, 3, 6, 3, 0, 986, 1071, 3, 72, 36, 0, 987, 1071, 3, 104, 52, 0, 988, 1071, 3, 496, 248, 0, 989, 1071, 3, 318, 159, 0, 990, 1071, 3, 70, 35, 0, 991, 1071, 3, 106, 53, 0, 992, 1071, 3, 248, 124, 0, 993, 1071, 3, 180, 90, 0, 994, 1071, 3, 274, 137, 0, 995, 1071, 3, 414, 207, 0, 996, 1071, 3, 494, 247, 0, 997, 1071, 3, 486, 243, 0, 998, 1071, 3, 202, 101, 0, 999, 1071, 3, 208, 104, 0, 1000, 1071, 3, 222, 111, 0, 1001, 1071, 3, 228, 114, 0, 1002, 1071, 3, 358, 179, 0, 1003, 1071, 3, 26, 13, 0, 1004, 1071, 3, 186, 93, 0, 1005, 1071, 3, 290, 145, 0, 1006, 1071, 3, 294, 147, 0, 1007, 1071, 3, 442, 221, 0, 1008, 1071, 3, 296, 148, 0, 1009, 1071, 3, 236, 118, 0, 1010, 1071, 3, 198, 99, 0, 1011, 1071, 3, 30, 15, 0, 1012, 1071, 3, 190, 95, 0, 1013, 1071, 3, 114, 57, 0, 1014, 1071, 3, 446, 223, 0, 1015, 1071, 3, 176, 88, 0, 1016, 1071, 3, 200, 100, 0, 1017, 1071, 3, 418, 209, 0, 1018, 1071, 3, 250, 125, 0, 1019, 1071, 3, 268, 134, 0, 1020, 1071, 3, 8, 4, 0, 1021, 1071, 3, 14, 7, 0, 1022, 1071, 3, 232, 116, 0, 1023, 1071, 3, 474, 237, 0, 1024, 1071, 3, 530, 265, 0, 1025, 1071, 3, 552, 276, 0, 1026, 1071, 3, 276, 138, 0, 1027, 1071, 3, 542, 271, 0, 1028, 1071, 3, 74, 37, 0, 1029, 1071, 3, 412, 206, 0, 1030, 1071, 3, 302, 151, 0, 1031, 1071, 3, 526, 263, 0, 1032, 1071, 3, 514, 257, 0, 1033, 1071, 3, 322, 161, 0, 1034, 1071, 3, 328, 164, 0, 1035, 1071, 3, 342, 171, 0, 1036, 1071, 3, 906, 453, 0, 1037, 1071, 3, 230, 115, 0, 1038, 1071, 3, 352, 176, 0, 1039, 1071, 3, 532, 266, 0, 1040, 1071, 3, 458, 229, 0, 1041, 1071, 3, 188, 94, 0, 1042, 1071, 3, 472, 236, 0, 1043, 1071, 3, 544, 272, 0, 1044, 1071, 3, 454, 227, 0, 1045, 1071, 3, 520, 260, 0, 1046, 1071, 3, 300, 150, 0, 1047, 1071, 3, 422, 211, 0, 1048, 1071, 3, 402, 201, 0, 1049, 1071, 3, 400, 200, 0, 1050, 1071, 3, 404, 202, 0, 1051, 1071, 3, 426, 213, 0, 1052, 1071, 3, 330, 165, 0, 1053, 1071, 3, 344, 172, 0, 1054, 1071, 3, 450, 225, 0, 1055, 1071, 3, 320, 160, 0, 1056, 1071, 3, 554, 277, 0, 1057, 1071, 3, 462, 231, 0, 1058, 1071, 3, 314, 157, 0, 1059, 1071, 3, 460, 230, 0, 1060, 1071, 3, 546, 273, 0, 1061, 1071, 3, 498, 249, 0, 1062, 1071, 3, 60, 30, 0, 1063, 1071, 3, 36, 18, 0, 1064, 1071, 3, 68, 34, 0, 1065, 1071, 3, 470, 235, 0, 1066, 1068, 5, 583, 0, 0, 1067, 1069, 5, 584, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 1, 0, 0, 0, 1070, 950, 1, 0, 0, 0, 1070, 951, 1, 0, 0, 0, 1070, 952, 1, 0, 0, 0, 1070, 953, 1, 0, 0, 0, 1070, 954, 1, 0, 0, 0, 1070, 955, 1, 0, 0, 0, 1070, 956, 1, 0, 0, 0, 1070, 957, 1, 0, 0, 0, 1070, 958, 1, 0, 0, 0, 1070, 959, 1, 0, 0, 0, 1070, 960, 1, 0, 0, 0, 1070, 961, 1, 0, 0, 0, 1070, 962, 1, 0, 0, 0, 1070, 963, 1, 0, 0, 0, 1070, 964, 1, 0, 0, 0, 1070, 965, 1, 0, 0, 0, 1070, 966, 1, 0, 0, 0, 1070, 967, 1, 0, 0, 0, 1070, 968, 1, 0, 0, 0, 1070, 969, 1, 0, 0, 0, 1070, 970, 1, 0, 0, 0, 1070, 971, 1, 0, 0, 0, 1070, 972, 1, 0, 0, 0, 1070, 973, 1, 0, 0, 0, 1070, 974, 1, 0, 0, 0, 1070, 975, 1, 0, 0, 0, 1070, 976, 1, 0, 0, 0, 1070, 977, 1, 0, 0, 0, 1070, 978, 1, 0, 0, 0, 1070, 979, 1, 0, 0, 0, 1070, 980, 1, 0, 0, 0, 1070, 981, 1, 0, 0, 0, 1070, 982, 1, 0, 0, 0, 1070, 983, 1, 0, 0, 0, 1070, 984, 1, 0, 0, 0, 1070, 985, 1, 0, 0, 0, 1070, 986, 1, 0, 0, 0, 1070, 987, 1, 0, 0, 0, 1070, 988, 1, 0, 0, 0, 1070, 989, 1, 0, 0, 0, 1070, 990, 1, 0, 0, 0, 1070, 991, 1, 0, 0, 0, 1070, 992, 1, 0, 0, 0, 1070, 993, 1, 0, 0, 0, 1070, 994, 1, 0, 0, 0, 1070, 995, 1, 0, 0, 0, 1070, 996, 1, 0, 0, 0, 1070, 997, 1, 0, 0, 0, 1070, 998, 1, 0, 0, 0, 1070, 999, 1, 0, 0, 0, 1070, 1000, 1, 0, 0, 0, 1070, 1001, 1, 0, 0, 0, 1070, 1002, 1, 0, 0, 0, 1070, 1003, 1, 0, 0, 0, 1070, 1004, 1, 0, 0, 0, 1070, 1005, 1, 0, 0, 0, 1070, 1006, 1, 0, 0, 0, 1070, 1007, 1, 0, 0, 0, 1070, 1008, 1, 0, 0, 0, 1070, 1009, 1, 0, 0, 0, 1070, 1010, 1, 0, 0, 0, 1070, 1011, 1, 0, 0, 0, 1070, 1012, 1, 0, 0, 0, 1070, 1013, 1, 0, 0, 0, 1070, 1014, 1, 0, 0, 0, 1070, 1015, 1, 0, 0, 0, 1070, 1016, 1, 0, 0, 0, 1070, 1017, 1, 0, 0, 0, 1070, 1018, 1, 0, 0, 0, 1070, 1019, 1, 0, 0, 0, 1070, 1020, 1, 0, 0, 0, 1070, 1021, 1, 0, 0, 0, 1070, 1022, 1, 0, 0, 0, 1070, 1023, 1, 0, 0, 0, 1070, 1024, 1, 0, 0, 0, 1070, 1025, 1, 0, 0, 0, 1070, 1026, 1, 0, 0, 0, 1070, 1027, 1, 0, 0, 0, 1070, 1028, 1, 0, 0, 0, 1070, 1029, 1, 0, 0, 0, 1070, 1030, 1, 0, 0, 0, 1070, 1031, 1, 0, 0, 0, 1070, 1032, 1, 0, 0, 0, 1070, 1033, 1, 0, 0, 0, 1070, 1034, 1, 0, 0, 0, 1070, 1035, 1, 0, 0, 0, 1070, 1036, 1, 0, 0, 0, 1070, 1037, 1, 0, 0, 0, 1070, 1038, 1, 0, 0, 0, 1070, 1039, 1, 0, 0, 0, 1070, 1040, 1, 0, 0, 0, 1070, 1041, 1, 0, 0, 0, 1070, 1042, 1, 0, 0, 0, 1070, 1043, 1, 0, 0, 0, 1070, 1044, 1, 0, 0, 0, 1070, 1045, 1, 0, 0, 0, 1070, 1046, 1, 0, 0, 0, 1070, 1047, 1, 0, 0, 0, 1070, 1048, 1, 0, 0, 0, 1070, 1049, 1, 0, 0, 0, 1070, 1050, 1, 0, 0, 0, 1070, 1051, 1, 0, 0, 0, 1070, 1052, 1, 0, 0, 0, 1070, 1053, 1, 0, 0, 0, 1070, 1054, 1, 0, 0, 0, 1070, 1055, 1, 0, 0, 0, 1070, 1056, 1, 0, 0, 0, 1070, 1057, 1, 0, 0, 0, 1070, 1058, 1, 0, 0, 0, 1070, 1059, 1, 0, 0, 0, 1070, 1060, 1, 0, 0, 0, 1070, 1061, 1, 0, 0, 0, 1070, 1062, 1, 0, 0, 0, 1070, 1063, 1, 0, 0, 0, 1070, 1064, 1, 0, 0, 0, 1070, 1065, 1, 0, 0, 0, 1070, 1066, 1, 0, 0, 0, 1071, 5, 1, 0, 0, 0, 1072, 1073, 5, 433, 0, 0, 1073, 1074, 3, 680, 340, 0, 1074, 7, 1, 0, 0, 0, 1075, 1076, 5, 46, 0, 0, 1076, 1077, 5, 318, 0, 0, 1077, 1079, 3, 820, 410, 0, 1078, 1080, 5, 105, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1084, 1, 0, 0, 0, 1081, 1083, 3, 12, 6, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 9, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1090, 5, 287, 0, 0, 1088, 1091, 3, 814, 407, 0, 1089, 1091, 5, 78, 0, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1089, 1, 0, 0, 0, 1091, 1126, 1, 0, 0, 0, 1092, 1093, 7, 0, 0, 0, 1093, 1094, 5, 287, 0, 0, 1094, 1126, 3, 814, 407, 0, 1095, 1126, 5, 228, 0, 0, 1096, 1126, 5, 229, 0, 0, 1097, 1126, 5, 236, 0, 0, 1098, 1126, 5, 237, 0, 0, 1099, 1126, 5, 234, 0, 0, 1100, 1126, 5, 235, 0, 0, 1101, 1126, 5, 232, 0, 0, 1102, 1126, 5, 233, 0, 0, 1103, 1126, 5, 230, 0, 0, 1104, 1126, 5, 231, 0, 0, 1105, 1126, 5, 535, 0, 0, 1106, 1126, 5, 536, 0, 0, 1107, 1126, 5, 537, 0, 0, 1108, 1126, 5, 538, 0, 0, 1109, 1126, 5, 539, 0, 0, 1110, 1126, 5, 540, 0, 0, 1111, 1112, 5, 164, 0, 0, 1112, 1113, 5, 74, 0, 0, 1113, 1126, 3, 818, 409, 0, 1114, 1115, 5, 371, 0, 0, 1115, 1116, 5, 368, 0, 0, 1116, 1126, 3, 814, 407, 0, 1117, 1118, 5, 68, 0, 0, 1118, 1119, 7, 1, 0, 0, 1119, 1126, 3, 788, 394, 0, 1120, 1121, 7, 2, 0, 0, 1121, 1126, 3, 822, 411, 0, 1122, 1123, 5, 134, 0, 0, 1123, 1126, 3, 788, 394, 0, 1124, 1126, 3, 832, 416, 0, 1125, 1087, 1, 0, 0, 0, 1125, 1092, 1, 0, 0, 0, 1125, 1095, 1, 0, 0, 0, 1125, 1096, 1, 0, 0, 0, 1125, 1097, 1, 0, 0, 0, 1125, 1098, 1, 0, 0, 0, 1125, 1099, 1, 0, 0, 0, 1125, 1100, 1, 0, 0, 0, 1125, 1101, 1, 0, 0, 0, 1125, 1102, 1, 0, 0, 0, 1125, 1103, 1, 0, 0, 0, 1125, 1104, 1, 0, 0, 0, 1125, 1105, 1, 0, 0, 0, 1125, 1106, 1, 0, 0, 0, 1125, 1107, 1, 0, 0, 0, 1125, 1108, 1, 0, 0, 0, 1125, 1109, 1, 0, 0, 0, 1125, 1110, 1, 0, 0, 0, 1125, 1111, 1, 0, 0, 0, 1125, 1114, 1, 0, 0, 0, 1125, 1117, 1, 0, 0, 0, 1125, 1120, 1, 0, 0, 0, 1125, 1122, 1, 0, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 11, 1, 0, 0, 0, 1127, 1136, 3, 10, 5, 0, 1128, 1129, 5, 348, 0, 0, 1129, 1136, 5, 574, 0, 0, 1130, 1131, 7, 3, 0, 0, 1131, 1136, 3, 822, 411, 0, 1132, 1133, 5, 68, 0, 0, 1133, 1134, 7, 1, 0, 0, 1134, 1136, 3, 822, 411, 0, 1135, 1127, 1, 0, 0, 0, 1135, 1128, 1, 0, 0, 0, 1135, 1130, 1, 0, 0, 0, 1135, 1132, 1, 0, 0, 0, 1136, 13, 1, 0, 0, 0, 1137, 1138, 5, 46, 0, 0, 1138, 1139, 5, 99, 0, 0, 1139, 1141, 3, 820, 410, 0, 1140, 1142, 5, 105, 0, 0, 1141, 1140, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1146, 1, 0, 0, 0, 1143, 1145, 3, 12, 6, 0, 1144, 1143, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 15, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1150, 5, 138, 0, 0, 1150, 1151, 7, 2, 0, 0, 1151, 1153, 3, 820, 410, 0, 1152, 1154, 5, 105, 0, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1158, 1, 0, 0, 0, 1155, 1157, 3, 10, 5, 0, 1156, 1155, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 17, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1162, 5, 138, 0, 0, 1162, 1165, 7, 2, 0, 0, 1163, 1166, 5, 30, 0, 0, 1164, 1166, 3, 820, 410, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 5, 68, 0, 0, 1168, 1169, 5, 175, 0, 0, 1169, 1170, 3, 792, 396, 0, 1170, 1171, 3, 64, 32, 0, 1171, 19, 1, 0, 0, 0, 1172, 1173, 5, 138, 0, 0, 1173, 1174, 5, 442, 0, 0, 1174, 1176, 3, 798, 399, 0, 1175, 1177, 3, 362, 181, 0, 1176, 1175, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 3, 22, 11, 0, 1179, 21, 1, 0, 0, 0, 1180, 1184, 3, 24, 12, 0, 1181, 1183, 3, 24, 12, 0, 1182, 1181, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1189, 5, 315, 0, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1207, 1, 0, 0, 0, 1190, 1191, 5, 309, 0, 0, 1191, 1192, 5, 94, 0, 0, 1192, 1207, 3, 796, 398, 0, 1193, 1194, 5, 282, 0, 0, 1194, 1195, 5, 94, 0, 0, 1195, 1207, 3, 820, 410, 0, 1196, 1197, 5, 333, 0, 0, 1197, 1198, 5, 323, 0, 0, 1198, 1207, 3, 32, 16, 0, 1199, 1201, 5, 269, 0, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 5, 462, 0, 0, 1203, 1204, 5, 80, 0, 0, 1204, 1205, 5, 204, 0, 0, 1205, 1207, 3, 824, 412, 0, 1206, 1180, 1, 0, 0, 0, 1206, 1190, 1, 0, 0, 0, 1206, 1193, 1, 0, 0, 0, 1206, 1196, 1, 0, 0, 0, 1206, 1200, 1, 0, 0, 0, 1207, 23, 1, 0, 0, 0, 1208, 1251, 5, 222, 0, 0, 1209, 1251, 5, 338, 0, 0, 1210, 1251, 5, 377, 0, 0, 1211, 1213, 5, 77, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1251, 5, 250, 0, 0, 1215, 1217, 5, 205, 0, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 5, 327, 0, 0, 1219, 1226, 5, 243, 0, 0, 1220, 1222, 5, 205, 0, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1224, 5, 327, 0, 0, 1224, 1226, 5, 181, 0, 0, 1225, 1216, 1, 0, 0, 0, 1225, 1221, 1, 0, 0, 0, 1226, 1251, 1, 0, 0, 0, 1227, 1228, 5, 460, 0, 0, 1228, 1251, 7, 4, 0, 0, 1229, 1230, 5, 170, 0, 0, 1230, 1251, 3, 830, 415, 0, 1231, 1232, 5, 320, 0, 0, 1232, 1251, 3, 824, 412, 0, 1233, 1234, 5, 333, 0, 0, 1234, 1235, 3, 824, 412, 0, 1235, 1238, 7, 5, 0, 0, 1236, 1239, 3, 824, 412, 0, 1237, 1239, 5, 53, 0, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1237, 1, 0, 0, 0, 1239, 1251, 1, 0, 0, 0, 1240, 1241, 5, 333, 0, 0, 1241, 1242, 3, 824, 412, 0, 1242, 1243, 5, 64, 0, 0, 1243, 1244, 5, 434, 0, 0, 1244, 1251, 1, 0, 0, 0, 1245, 1248, 5, 313, 0, 0, 1246, 1249, 3, 824, 412, 0, 1247, 1249, 5, 30, 0, 0, 1248, 1246, 1, 0, 0, 0, 1248, 1247, 1, 0, 0, 0, 1249, 1251, 1, 0, 0, 0, 1250, 1208, 1, 0, 0, 0, 1250, 1209, 1, 0, 0, 0, 1250, 1210, 1, 0, 0, 0, 1250, 1212, 1, 0, 0, 0, 1250, 1225, 1, 0, 0, 0, 1250, 1227, 1, 0, 0, 0, 1250, 1229, 1, 0, 0, 0, 1250, 1231, 1, 0, 0, 0, 1250, 1233, 1, 0, 0, 0, 1250, 1240, 1, 0, 0, 0, 1250, 1245, 1, 0, 0, 0, 1251, 25, 1, 0, 0, 0, 1252, 1253, 5, 46, 0, 0, 1253, 1254, 5, 66, 0, 0, 1254, 1256, 3, 820, 410, 0, 1255, 1257, 5, 105, 0, 0, 1256, 1255, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1261, 1, 0, 0, 0, 1258, 1260, 3, 12, 6, 0, 1259, 1258, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 27, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1264, 1265, 5, 138, 0, 0, 1265, 1266, 5, 66, 0, 0, 1266, 1267, 3, 820, 410, 0, 1267, 1268, 7, 6, 0, 0, 1268, 1269, 5, 99, 0, 0, 1269, 1270, 3, 822, 411, 0, 1270, 29, 1, 0, 0, 0, 1271, 1272, 5, 46, 0, 0, 1272, 1274, 5, 323, 0, 0, 1273, 1275, 3, 288, 144, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1282, 1, 0, 0, 0, 1276, 1278, 3, 32, 16, 0, 1277, 1276, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1280, 5, 106, 0, 0, 1280, 1283, 3, 820, 410, 0, 1281, 1283, 3, 32, 16, 0, 1282, 1277, 1, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1287, 1, 0, 0, 0, 1284, 1286, 3, 34, 17, 0, 1285, 1284, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 31, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1291, 3, 310, 155, 0, 1291, 33, 1, 0, 0, 0, 1292, 1299, 3, 114, 57, 0, 1293, 1299, 3, 352, 176, 0, 1294, 1299, 3, 190, 95, 0, 1295, 1299, 3, 250, 125, 0, 1296, 1299, 3, 328, 164, 0, 1297, 1299, 3, 470, 235, 0, 1298, 1292, 1, 0, 0, 0, 1298, 1293, 1, 0, 0, 0, 1298, 1294, 1, 0, 0, 0, 1298, 1295, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1298, 1297, 1, 0, 0, 0, 1299, 35, 1, 0, 0, 0, 1300, 1302, 5, 333, 0, 0, 1301, 1303, 7, 7, 0, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 3, 38, 19, 0, 1305, 37, 1, 0, 0, 0, 1306, 1307, 5, 356, 0, 0, 1307, 1315, 3, 468, 234, 0, 1308, 1309, 5, 332, 0, 0, 1309, 1310, 5, 154, 0, 0, 1310, 1311, 5, 36, 0, 0, 1311, 1312, 5, 356, 0, 0, 1312, 1315, 3, 468, 234, 0, 1313, 1315, 3, 42, 21, 0, 1314, 1306, 1, 0, 0, 0, 1314, 1308, 1, 0, 0, 0, 1314, 1313, 1, 0, 0, 0, 1315, 39, 1, 0, 0, 0, 1316, 1319, 5, 30, 0, 0, 1317, 1319, 3, 44, 22, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1317, 1, 0, 0, 0, 1319, 1321, 1, 0, 0, 0, 1320, 1322, 7, 5, 0, 0, 1321, 1320, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1325, 1, 0, 0, 0, 1323, 1326, 5, 53, 0, 0, 1324, 1326, 3, 46, 23, 0, 1325, 1323, 1, 0, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 41, 1, 0, 0, 0, 1327, 1328, 5, 418, 0, 0, 1328, 1329, 5, 386, 0, 0, 1329, 1356, 3, 56, 28, 0, 1330, 1331, 5, 152, 0, 0, 1331, 1356, 3, 814, 407, 0, 1332, 1333, 5, 323, 0, 0, 1333, 1356, 3, 794, 397, 0, 1334, 1337, 5, 267, 0, 0, 1335, 1338, 3, 814, 407, 0, 1336, 1338, 5, 53, 0, 0, 1337, 1335, 1, 0, 0, 0, 1337, 1336, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1356, 1, 0, 0, 0, 1339, 1340, 5, 318, 0, 0, 1340, 1356, 3, 58, 29, 0, 1341, 1342, 5, 332, 0, 0, 1342, 1343, 5, 106, 0, 0, 1343, 1356, 3, 58, 29, 0, 1344, 1345, 5, 383, 0, 0, 1345, 1346, 5, 279, 0, 0, 1346, 1356, 3, 692, 346, 0, 1347, 1348, 5, 356, 0, 0, 1348, 1349, 5, 337, 0, 0, 1349, 1356, 3, 814, 407, 0, 1350, 1351, 3, 44, 22, 0, 1351, 1352, 5, 64, 0, 0, 1352, 1353, 5, 434, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1356, 3, 40, 20, 0, 1355, 1327, 1, 0, 0, 0, 1355, 1330, 1, 0, 0, 0, 1355, 1332, 1, 0, 0, 0, 1355, 1334, 1, 0, 0, 0, 1355, 1339, 1, 0, 0, 0, 1355, 1341, 1, 0, 0, 0, 1355, 1344, 1, 0, 0, 0, 1355, 1347, 1, 0, 0, 0, 1355, 1350, 1, 0, 0, 0, 1355, 1354, 1, 0, 0, 0, 1356, 43, 1, 0, 0, 0, 1357, 1362, 3, 824, 412, 0, 1358, 1359, 5, 11, 0, 0, 1359, 1361, 3, 824, 412, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 45, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1370, 3, 48, 24, 0, 1366, 1367, 5, 6, 0, 0, 1367, 1369, 3, 48, 24, 0, 1368, 1366, 1, 0, 0, 0, 1369, 1372, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 47, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1373, 1376, 3, 54, 27, 0, 1374, 1376, 3, 196, 98, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1374, 1, 0, 0, 0, 1376, 49, 1, 0, 0, 0, 1377, 1378, 5, 300, 0, 0, 1378, 1383, 7, 8, 0, 0, 1379, 1380, 5, 310, 0, 0, 1380, 1383, 5, 300, 0, 0, 1381, 1383, 5, 330, 0, 0, 1382, 1377, 1, 0, 0, 0, 1382, 1379, 1, 0, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 51, 1, 0, 0, 0, 1384, 1391, 5, 96, 0, 0, 1385, 1391, 5, 60, 0, 0, 1386, 1391, 5, 80, 0, 0, 1387, 1391, 3, 804, 402, 0, 1388, 1391, 3, 838, 419, 0, 1389, 1391, 3, 814, 407, 0, 1390, 1384, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1387, 1, 0, 0, 0, 1390, 1388, 1, 0, 0, 0, 1390, 1389, 1, 0, 0, 0, 1391, 53, 1, 0, 0, 0, 1392, 1397, 5, 96, 0, 0, 1393, 1397, 5, 60, 0, 0, 1394, 1397, 5, 80, 0, 0, 1395, 1397, 3, 58, 29, 0, 1396, 1392, 1, 0, 0, 0, 1396, 1393, 1, 0, 0, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1395, 1, 0, 0, 0, 1397, 55, 1, 0, 0, 0, 1398, 1413, 3, 814, 407, 0, 1399, 1413, 5, 53, 0, 0, 1400, 1413, 3, 832, 416, 0, 1401, 1402, 5, 403, 0, 0, 1402, 1404, 3, 814, 407, 0, 1403, 1405, 3, 664, 332, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1413, 1, 0, 0, 0, 1406, 1407, 5, 403, 0, 0, 1407, 1408, 3, 656, 328, 0, 1408, 1409, 3, 814, 407, 0, 1409, 1413, 1, 0, 0, 0, 1410, 1413, 3, 196, 98, 0, 1411, 1413, 5, 254, 0, 0, 1412, 1398, 1, 0, 0, 0, 1412, 1399, 1, 0, 0, 0, 1412, 1400, 1, 0, 0, 0, 1412, 1401, 1, 0, 0, 0, 1412, 1406, 1, 0, 0, 0, 1412, 1410, 1, 0, 0, 0, 1412, 1411, 1, 0, 0, 0, 1413, 57, 1, 0, 0, 0, 1414, 1417, 3, 828, 414, 0, 1415, 1417, 3, 814, 407, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 59, 1, 0, 0, 0, 1418, 1419, 5, 313, 0, 0, 1419, 1420, 3, 62, 31, 0, 1420, 61, 1, 0, 0, 0, 1421, 1422, 5, 418, 0, 0, 1422, 1431, 5, 386, 0, 0, 1423, 1424, 5, 356, 0, 0, 1424, 1425, 5, 244, 0, 0, 1425, 1431, 5, 251, 0, 0, 1426, 1427, 5, 332, 0, 0, 1427, 1431, 5, 106, 0, 0, 1428, 1431, 5, 30, 0, 0, 1429, 1431, 3, 44, 22, 0, 1430, 1421, 1, 0, 0, 0, 1430, 1423, 1, 0, 0, 0, 1430, 1426, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 63, 1, 0, 0, 0, 1432, 1433, 5, 333, 0, 0, 1433, 1436, 3, 38, 19, 0, 1434, 1436, 3, 60, 30, 0, 1435, 1432, 1, 0, 0, 0, 1435, 1434, 1, 0, 0, 0, 1436, 65, 1, 0, 0, 0, 1437, 1438, 5, 333, 0, 0, 1438, 1441, 3, 42, 21, 0, 1439, 1441, 3, 60, 30, 0, 1440, 1437, 1, 0, 0, 0, 1440, 1439, 1, 0, 0, 0, 1441, 67, 1, 0, 0, 0, 1442, 1452, 5, 335, 0, 0, 1443, 1453, 3, 44, 22, 0, 1444, 1445, 5, 418, 0, 0, 1445, 1453, 5, 386, 0, 0, 1446, 1447, 5, 356, 0, 0, 1447, 1448, 5, 244, 0, 0, 1448, 1453, 5, 251, 0, 0, 1449, 1450, 5, 332, 0, 0, 1450, 1453, 5, 106, 0, 0, 1451, 1453, 5, 30, 0, 0, 1452, 1443, 1, 0, 0, 0, 1452, 1444, 1, 0, 0, 0, 1452, 1446, 1, 0, 0, 0, 1452, 1449, 1, 0, 0, 0, 1452, 1451, 1, 0, 0, 0, 1453, 69, 1, 0, 0, 0, 1454, 1455, 5, 333, 0, 0, 1455, 1458, 5, 165, 0, 0, 1456, 1459, 5, 30, 0, 0, 1457, 1459, 3, 764, 382, 0, 1458, 1456, 1, 0, 0, 0, 1458, 1457, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 7, 9, 0, 0, 1461, 71, 1, 0, 0, 0, 1462, 1463, 5, 155, 0, 0, 1463, 73, 1, 0, 0, 0, 1464, 1465, 5, 187, 0, 0, 1465, 1466, 7, 10, 0, 0, 1466, 75, 1, 0, 0, 0, 1467, 1468, 5, 138, 0, 0, 1468, 1470, 5, 92, 0, 0, 1469, 1471, 3, 416, 208, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1475, 3, 620, 310, 0, 1473, 1476, 3, 78, 39, 0, 1474, 1476, 3, 80, 40, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1474, 1, 0, 0, 0, 1476, 1585, 1, 0, 0, 0, 1477, 1478, 5, 138, 0, 0, 1478, 1479, 5, 92, 0, 0, 1479, 1480, 5, 30, 0, 0, 1480, 1481, 5, 68, 0, 0, 1481, 1485, 3, 170, 85, 0, 1482, 1483, 5, 281, 0, 0, 1483, 1484, 5, 147, 0, 0, 1484, 1486, 3, 822, 411, 0, 1485, 1482, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 5, 333, 0, 0, 1488, 1489, 5, 351, 0, 0, 1489, 1491, 3, 774, 387, 0, 1490, 1492, 5, 272, 0, 0, 1491, 1490, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1585, 1, 0, 0, 0, 1493, 1494, 5, 138, 0, 0, 1494, 1496, 5, 92, 0, 0, 1495, 1497, 3, 416, 208, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 3, 778, 389, 0, 1499, 1500, 3, 82, 41, 0, 1500, 1501, 3, 98, 49, 0, 1501, 1585, 1, 0, 0, 0, 1502, 1503, 5, 138, 0, 0, 1503, 1505, 5, 92, 0, 0, 1504, 1506, 3, 416, 208, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 3, 778, 389, 0, 1508, 1509, 5, 436, 0, 0, 1509, 1510, 5, 285, 0, 0, 1510, 1512, 3, 784, 392, 0, 1511, 1513, 7, 11, 0, 0, 1512, 1511, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1585, 1, 0, 0, 0, 1514, 1515, 5, 138, 0, 0, 1515, 1517, 5, 226, 0, 0, 1516, 1518, 3, 416, 208, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1522, 3, 784, 392, 0, 1520, 1523, 3, 78, 39, 0, 1521, 1523, 3, 82, 41, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1521, 1, 0, 0, 0, 1523, 1585, 1, 0, 0, 0, 1524, 1525, 5, 138, 0, 0, 1525, 1526, 5, 226, 0, 0, 1526, 1527, 5, 30, 0, 0, 1527, 1528, 5, 68, 0, 0, 1528, 1532, 3, 170, 85, 0, 1529, 1530, 5, 281, 0, 0, 1530, 1531, 5, 147, 0, 0, 1531, 1533, 3, 822, 411, 0, 1532, 1529, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 5, 333, 0, 0, 1535, 1537, 3, 170, 85, 0, 1536, 1538, 5, 272, 0, 0, 1537, 1536, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1585, 1, 0, 0, 0, 1539, 1540, 5, 138, 0, 0, 1540, 1542, 5, 328, 0, 0, 1541, 1543, 3, 416, 208, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 3, 784, 392, 0, 1545, 1546, 3, 78, 39, 0, 1546, 1585, 1, 0, 0, 0, 1547, 1549, 5, 138, 0, 0, 1548, 1550, 5, 259, 0, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 5, 376, 0, 0, 1552, 1554, 3, 416, 208, 0, 1553, 1552, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 3, 782, 391, 0, 1556, 1557, 3, 78, 39, 0, 1557, 1585, 1, 0, 0, 0, 1558, 1559, 5, 138, 0, 0, 1559, 1560, 5, 259, 0, 0, 1560, 1561, 5, 376, 0, 0, 1561, 1562, 5, 30, 0, 0, 1562, 1563, 5, 68, 0, 0, 1563, 1567, 3, 170, 85, 0, 1564, 1565, 5, 281, 0, 0, 1565, 1566, 5, 147, 0, 0, 1566, 1568, 3, 822, 411, 0, 1567, 1564, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 5, 333, 0, 0, 1570, 1571, 5, 351, 0, 0, 1571, 1573, 3, 774, 387, 0, 1572, 1574, 5, 272, 0, 0, 1573, 1572, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1585, 1, 0, 0, 0, 1575, 1576, 5, 138, 0, 0, 1576, 1577, 5, 63, 0, 0, 1577, 1579, 5, 92, 0, 0, 1578, 1580, 3, 416, 208, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 3, 620, 310, 0, 1582, 1583, 3, 78, 39, 0, 1583, 1585, 1, 0, 0, 0, 1584, 1467, 1, 0, 0, 0, 1584, 1477, 1, 0, 0, 0, 1584, 1493, 1, 0, 0, 0, 1584, 1502, 1, 0, 0, 0, 1584, 1514, 1, 0, 0, 0, 1584, 1524, 1, 0, 0, 0, 1584, 1539, 1, 0, 0, 0, 1584, 1547, 1, 0, 0, 0, 1584, 1558, 1, 0, 0, 0, 1584, 1575, 1, 0, 0, 0, 1585, 77, 1, 0, 0, 0, 1586, 1591, 3, 84, 42, 0, 1587, 1588, 5, 6, 0, 0, 1588, 1590, 3, 84, 42, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 79, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 82, 41, 0, 1595, 1596, 3, 98, 49, 0, 1596, 1601, 1, 0, 0, 0, 1597, 1598, 5, 436, 0, 0, 1598, 1599, 5, 285, 0, 0, 1599, 1601, 3, 784, 392, 0, 1600, 1594, 1, 0, 0, 0, 1600, 1597, 1, 0, 0, 0, 1601, 81, 1, 0, 0, 0, 1602, 1603, 5, 435, 0, 0, 1603, 1604, 5, 285, 0, 0, 1604, 1605, 3, 784, 392, 0, 1605, 83, 1, 0, 0, 0, 1606, 1609, 5, 133, 0, 0, 1607, 1608, 5, 45, 0, 0, 1608, 1610, 3, 824, 412, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1840, 3, 136, 68, 0, 1612, 1613, 5, 138, 0, 0, 1613, 1614, 5, 45, 0, 0, 1614, 1618, 3, 824, 412, 0, 1615, 1617, 3, 266, 133, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1840, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1622, 5, 372, 0, 0, 1622, 1623, 5, 45, 0, 0, 1623, 1840, 3, 824, 412, 0, 1624, 1625, 5, 191, 0, 0, 1625, 1627, 5, 45, 0, 0, 1626, 1628, 3, 416, 208, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1631, 3, 824, 412, 0, 1630, 1632, 3, 88, 44, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1840, 1, 0, 0, 0, 1633, 1634, 5, 333, 0, 0, 1634, 1635, 5, 379, 0, 0, 1635, 1840, 7, 12, 0, 0, 1636, 1637, 5, 158, 0, 0, 1637, 1638, 5, 80, 0, 0, 1638, 1840, 3, 824, 412, 0, 1639, 1640, 5, 333, 0, 0, 1640, 1840, 7, 13, 0, 0, 1641, 1643, 5, 193, 0, 0, 1642, 1644, 7, 14, 0, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1840, 5, 357, 0, 0, 1646, 1647, 5, 186, 0, 0, 1647, 1651, 5, 357, 0, 0, 1648, 1652, 5, 30, 0, 0, 1649, 1652, 5, 99, 0, 0, 1650, 1652, 3, 824, 412, 0, 1651, 1648, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1650, 1, 0, 0, 0, 1652, 1840, 1, 0, 0, 0, 1653, 1654, 5, 193, 0, 0, 1654, 1655, 7, 14, 0, 0, 1655, 1656, 5, 321, 0, 0, 1656, 1840, 3, 824, 412, 0, 1657, 1658, 5, 186, 0, 0, 1658, 1659, 5, 321, 0, 0, 1659, 1840, 3, 824, 412, 0, 1660, 1662, 5, 269, 0, 0, 1661, 1660, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1664, 5, 228, 0, 0, 1664, 1840, 3, 784, 392, 0, 1665, 1666, 5, 275, 0, 0, 1666, 1840, 3, 310, 155, 0, 1667, 1668, 5, 77, 0, 0, 1668, 1840, 5, 275, 0, 0, 1669, 1670, 5, 282, 0, 0, 1670, 1671, 5, 94, 0, 0, 1671, 1840, 3, 820, 410, 0, 1672, 1673, 5, 333, 0, 0, 1673, 1674, 5, 351, 0, 0, 1674, 1840, 3, 774, 387, 0, 1675, 1676, 5, 312, 0, 0, 1676, 1681, 5, 219, 0, 0, 1677, 1682, 5, 270, 0, 0, 1678, 1682, 5, 113, 0, 0, 1679, 1682, 5, 53, 0, 0, 1680, 1682, 3, 174, 87, 0, 1681, 1677, 1, 0, 0, 0, 1681, 1678, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1681, 1680, 1, 0, 0, 0, 1682, 1840, 1, 0, 0, 0, 1683, 1690, 5, 193, 0, 0, 1684, 1690, 5, 186, 0, 0, 1685, 1687, 5, 269, 0, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1690, 5, 209, 0, 0, 1689, 1683, 1, 0, 0, 0, 1689, 1684, 1, 0, 0, 0, 1689, 1686, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 5, 414, 0, 0, 1692, 1693, 5, 251, 0, 0, 1693, 1840, 5, 327, 0, 0, 1694, 1696, 5, 191, 0, 0, 1695, 1697, 5, 44, 0, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1699, 1, 0, 0, 0, 1698, 1700, 3, 416, 208, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1703, 3, 804, 402, 0, 1702, 1704, 3, 88, 44, 0, 1703, 1702, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1840, 1, 0, 0, 0, 1705, 1707, 5, 133, 0, 0, 1706, 1708, 5, 44, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1711, 3, 288, 144, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1840, 3, 126, 63, 0, 1713, 1715, 5, 138, 0, 0, 1714, 1716, 5, 44, 0, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1720, 3, 804, 402, 0, 1718, 1721, 3, 86, 43, 0, 1719, 1721, 3, 216, 108, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1719, 1, 0, 0, 0, 1721, 1840, 1, 0, 0, 0, 1722, 1724, 5, 138, 0, 0, 1723, 1725, 5, 44, 0, 0, 1724, 1723, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 3, 804, 402, 0, 1727, 1728, 7, 15, 0, 0, 1728, 1729, 5, 77, 0, 0, 1729, 1730, 5, 78, 0, 0, 1730, 1840, 1, 0, 0, 0, 1731, 1733, 5, 138, 0, 0, 1732, 1734, 5, 44, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 3, 804, 402, 0, 1736, 1737, 5, 191, 0, 0, 1737, 1739, 5, 437, 0, 0, 1738, 1740, 3, 416, 208, 0, 1739, 1738, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1840, 1, 0, 0, 0, 1741, 1743, 5, 138, 0, 0, 1742, 1744, 5, 44, 0, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 3, 804, 402, 0, 1746, 1747, 5, 333, 0, 0, 1747, 1748, 5, 342, 0, 0, 1748, 1749, 3, 818, 409, 0, 1749, 1840, 1, 0, 0, 0, 1750, 1752, 5, 138, 0, 0, 1751, 1753, 5, 44, 0, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1756, 3, 804, 402, 0, 1755, 1750, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 7, 16, 0, 0, 1758, 1840, 3, 92, 46, 0, 1759, 1761, 5, 138, 0, 0, 1760, 1762, 5, 44, 0, 0, 1761, 1760, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 3, 804, 402, 0, 1764, 1765, 5, 333, 0, 0, 1765, 1766, 5, 345, 0, 0, 1766, 1767, 3, 824, 412, 0, 1767, 1840, 1, 0, 0, 0, 1768, 1770, 5, 138, 0, 0, 1769, 1771, 5, 44, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 3, 804, 402, 0, 1773, 1774, 5, 133, 0, 0, 1774, 1775, 5, 438, 0, 0, 1775, 1776, 3, 132, 66, 0, 1776, 1777, 5, 36, 0, 0, 1777, 1786, 5, 219, 0, 0, 1778, 1780, 5, 2, 0, 0, 1779, 1781, 3, 194, 97, 0, 1780, 1779, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1780, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 5, 3, 0, 0, 1785, 1787, 1, 0, 0, 0, 1786, 1778, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1840, 1, 0, 0, 0, 1788, 1790, 5, 138, 0, 0, 1789, 1791, 5, 44, 0, 0, 1790, 1789, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1806, 3, 804, 402, 0, 1793, 1798, 5, 314, 0, 0, 1794, 1796, 5, 105, 0, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1799, 3, 196, 98, 0, 1798, 1795, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1807, 1, 0, 0, 0, 1800, 1804, 5, 333, 0, 0, 1801, 1805, 3, 194, 97, 0, 1802, 1803, 5, 438, 0, 0, 1803, 1805, 3, 132, 66, 0, 1804, 1801, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1805, 1807, 1, 0, 0, 0, 1806, 1793, 1, 0, 0, 0, 1806, 1800, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1840, 1, 0, 0, 0, 1810, 1812, 5, 138, 0, 0, 1811, 1813, 5, 44, 0, 0, 1812, 1811, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1815, 3, 804, 402, 0, 1815, 1816, 5, 191, 0, 0, 1816, 1818, 5, 219, 0, 0, 1817, 1819, 3, 416, 208, 0, 1818, 1817, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1840, 1, 0, 0, 0, 1820, 1822, 5, 138, 0, 0, 1821, 1823, 5, 44, 0, 0, 1822, 1821, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1827, 3, 804, 402, 0, 1825, 1826, 5, 333, 0, 0, 1826, 1828, 5, 174, 0, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 5, 360, 0, 0, 1830, 1832, 3, 648, 324, 0, 1831, 1833, 3, 90, 45, 0, 1832, 1831, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1836, 1, 0, 0, 0, 1834, 1835, 5, 100, 0, 0, 1835, 1837, 3, 670, 335, 0, 1836, 1834, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1840, 1, 0, 0, 0, 1838, 1840, 3, 216, 108, 0, 1839, 1606, 1, 0, 0, 0, 1839, 1612, 1, 0, 0, 0, 1839, 1621, 1, 0, 0, 0, 1839, 1624, 1, 0, 0, 0, 1839, 1633, 1, 0, 0, 0, 1839, 1636, 1, 0, 0, 0, 1839, 1639, 1, 0, 0, 0, 1839, 1641, 1, 0, 0, 0, 1839, 1646, 1, 0, 0, 0, 1839, 1653, 1, 0, 0, 0, 1839, 1657, 1, 0, 0, 0, 1839, 1661, 1, 0, 0, 0, 1839, 1665, 1, 0, 0, 0, 1839, 1667, 1, 0, 0, 0, 1839, 1669, 1, 0, 0, 0, 1839, 1672, 1, 0, 0, 0, 1839, 1675, 1, 0, 0, 0, 1839, 1689, 1, 0, 0, 0, 1839, 1694, 1, 0, 0, 0, 1839, 1705, 1, 0, 0, 0, 1839, 1713, 1, 0, 0, 0, 1839, 1722, 1, 0, 0, 0, 1839, 1731, 1, 0, 0, 0, 1839, 1741, 1, 0, 0, 0, 1839, 1755, 1, 0, 0, 0, 1839, 1759, 1, 0, 0, 0, 1839, 1768, 1, 0, 0, 0, 1839, 1788, 1, 0, 0, 0, 1839, 1810, 1, 0, 0, 0, 1839, 1820, 1, 0, 0, 0, 1839, 1838, 1, 0, 0, 0, 1840, 85, 1, 0, 0, 0, 1841, 1842, 5, 333, 0, 0, 1842, 1843, 5, 53, 0, 0, 1843, 1847, 3, 670, 335, 0, 1844, 1845, 5, 191, 0, 0, 1845, 1847, 5, 53, 0, 0, 1846, 1841, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1847, 87, 1, 0, 0, 0, 1848, 1849, 7, 17, 0, 0, 1849, 89, 1, 0, 0, 0, 1850, 1851, 5, 43, 0, 0, 1851, 1852, 3, 310, 155, 0, 1852, 91, 1, 0, 0, 0, 1853, 1854, 5, 2, 0, 0, 1854, 1859, 3, 96, 48, 0, 1855, 1856, 5, 6, 0, 0, 1856, 1858, 3, 96, 48, 0, 1857, 1855, 1, 0, 0, 0, 1858, 1861, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1862, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1863, 5, 3, 0, 0, 1863, 93, 1, 0, 0, 0, 1864, 1865, 5, 105, 0, 0, 1865, 1866, 3, 92, 46, 0, 1866, 95, 1, 0, 0, 0, 1867, 1872, 3, 830, 415, 0, 1868, 1869, 5, 10, 0, 0, 1869, 1873, 3, 282, 141, 0, 1870, 1871, 5, 11, 0, 0, 1871, 1873, 3, 280, 140, 0, 1872, 1868, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 97, 1, 0, 0, 0, 1874, 1875, 5, 62, 0, 0, 1875, 1876, 5, 422, 0, 0, 1876, 1877, 5, 105, 0, 0, 1877, 1878, 5, 2, 0, 0, 1878, 1879, 5, 533, 0, 0, 1879, 1880, 3, 196, 98, 0, 1880, 1881, 5, 6, 0, 0, 1881, 1882, 5, 534, 0, 0, 1882, 1883, 3, 196, 98, 0, 1883, 1884, 5, 3, 0, 0, 1884, 1898, 1, 0, 0, 0, 1885, 1886, 5, 62, 0, 0, 1886, 1887, 5, 422, 0, 0, 1887, 1888, 5, 68, 0, 0, 1888, 1898, 3, 528, 264, 0, 1889, 1890, 5, 62, 0, 0, 1890, 1891, 5, 422, 0, 0, 1891, 1892, 5, 64, 0, 0, 1892, 1893, 3, 528, 264, 0, 1893, 1894, 5, 94, 0, 0, 1894, 1895, 3, 528, 264, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1898, 5, 53, 0, 0, 1897, 1874, 1, 0, 0, 0, 1897, 1885, 1, 0, 0, 0, 1897, 1889, 1, 0, 0, 0, 1897, 1896, 1, 0, 0, 0, 1898, 99, 1, 0, 0, 0, 1899, 1900, 5, 138, 0, 0, 1900, 1901, 5, 360, 0, 0, 1901, 1902, 3, 310, 155, 0, 1902, 1907, 3, 102, 51, 0, 1903, 1904, 5, 6, 0, 0, 1904, 1906, 3, 102, 51, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1909, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 101, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1911, 5, 133, 0, 0, 1911, 1912, 5, 143, 0, 0, 1912, 1914, 3, 640, 320, 0, 1913, 1915, 3, 88, 44, 0, 1914, 1913, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1941, 1, 0, 0, 0, 1916, 1917, 5, 191, 0, 0, 1917, 1919, 5, 143, 0, 0, 1918, 1920, 3, 416, 208, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 3, 824, 412, 0, 1922, 1924, 3, 88, 44, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1941, 1, 0, 0, 0, 1925, 1926, 5, 138, 0, 0, 1926, 1927, 5, 143, 0, 0, 1927, 1930, 3, 824, 412, 0, 1928, 1929, 5, 333, 0, 0, 1929, 1931, 5, 174, 0, 0, 1930, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 5, 360, 0, 0, 1933, 1935, 3, 648, 324, 0, 1934, 1936, 3, 90, 45, 0, 1935, 1934, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1939, 3, 88, 44, 0, 1938, 1937, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 1, 0, 0, 0, 1940, 1910, 1, 0, 0, 0, 1940, 1916, 1, 0, 0, 0, 1940, 1925, 1, 0, 0, 0, 1941, 103, 1, 0, 0, 0, 1942, 1945, 5, 157, 0, 0, 1943, 1946, 3, 824, 412, 0, 1944, 1946, 5, 30, 0, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1944, 1, 0, 0, 0, 1946, 105, 1, 0, 0, 0, 1947, 1949, 5, 169, 0, 0, 1948, 1950, 5, 107, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1953, 3, 778, 389, 0, 1952, 1954, 3, 138, 69, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1957, 7, 18, 0, 0, 1956, 1958, 5, 297, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1962, 1, 0, 0, 0, 1959, 1963, 3, 814, 407, 0, 1960, 1963, 5, 343, 0, 0, 1961, 1963, 5, 344, 0, 0, 1962, 1959, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1961, 1, 0, 0, 0, 1963, 1969, 1, 0, 0, 0, 1964, 1966, 5, 100, 0, 0, 1965, 1964, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 5, 184, 0, 0, 1968, 1970, 3, 814, 407, 0, 1969, 1965, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1972, 1, 0, 0, 0, 1971, 1973, 5, 105, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 3, 110, 55, 0, 1975, 1977, 3, 634, 317, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1997, 1, 0, 0, 0, 1978, 1979, 5, 169, 0, 0, 1979, 1980, 5, 2, 0, 0, 1980, 1981, 3, 524, 262, 0, 1981, 1982, 5, 3, 0, 0, 1982, 1984, 5, 94, 0, 0, 1983, 1985, 5, 297, 0, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1989, 1, 0, 0, 0, 1986, 1990, 3, 814, 407, 0, 1987, 1990, 5, 343, 0, 0, 1988, 1990, 5, 344, 0, 0, 1989, 1986, 1, 0, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1988, 1, 0, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1993, 5, 105, 0, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 3, 110, 55, 0, 1995, 1997, 1, 0, 0, 0, 1996, 1947, 1, 0, 0, 0, 1996, 1978, 1, 0, 0, 0, 1997, 107, 1, 0, 0, 0, 1998, 2041, 5, 107, 0, 0, 1999, 2041, 5, 112, 0, 0, 2000, 2002, 7, 19, 0, 0, 2001, 2003, 5, 36, 0, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2041, 3, 814, 407, 0, 2005, 2041, 5, 171, 0, 0, 2006, 2041, 5, 216, 0, 0, 2007, 2008, 5, 209, 0, 0, 2008, 2011, 5, 298, 0, 0, 2009, 2012, 3, 142, 71, 0, 2010, 2012, 5, 9, 0, 0, 2011, 2009, 1, 0, 0, 0, 2011, 2010, 1, 0, 0, 0, 2012, 2041, 1, 0, 0, 0, 2013, 2015, 5, 209, 0, 0, 2014, 2016, 5, 77, 0, 0, 2015, 2014, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 5, 78, 0, 0, 2018, 2041, 3, 142, 71, 0, 2019, 2020, 5, 194, 0, 0, 2020, 2041, 3, 814, 407, 0, 2021, 2038, 7, 20, 0, 0, 2022, 2025, 5, 2, 0, 0, 2023, 2026, 3, 142, 71, 0, 2024, 2026, 5, 9, 0, 0, 2025, 2023, 1, 0, 0, 0, 2025, 2024, 1, 0, 0, 0, 2026, 2034, 1, 0, 0, 0, 2027, 2030, 5, 6, 0, 0, 2028, 2031, 3, 142, 71, 0, 2029, 2031, 5, 9, 0, 0, 2030, 2028, 1, 0, 0, 0, 2030, 2029, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 2027, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2039, 5, 3, 0, 0, 2038, 2022, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 1, 0, 0, 0, 2040, 1998, 1, 0, 0, 0, 2040, 1999, 1, 0, 0, 0, 2040, 2000, 1, 0, 0, 0, 2040, 2005, 1, 0, 0, 0, 2040, 2006, 1, 0, 0, 0, 2040, 2007, 1, 0, 0, 0, 2040, 2013, 1, 0, 0, 0, 2040, 2019, 1, 0, 0, 0, 2040, 2021, 1, 0, 0, 0, 2041, 2044, 1, 0, 0, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 109, 1, 0, 0, 0, 2044, 2042, 1, 0, 0, 0, 2045, 2064, 3, 108, 54, 0, 2046, 2049, 5, 2, 0, 0, 2047, 2050, 3, 108, 54, 0, 2048, 2050, 3, 112, 56, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2048, 1, 0, 0, 0, 2050, 2058, 1, 0, 0, 0, 2051, 2054, 5, 6, 0, 0, 2052, 2055, 3, 108, 54, 0, 2053, 2055, 3, 112, 56, 0, 2054, 2052, 1, 0, 0, 0, 2054, 2053, 1, 0, 0, 0, 2055, 2057, 1, 0, 0, 0, 2056, 2051, 1, 0, 0, 0, 2057, 2060, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2061, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2062, 5, 3, 0, 0, 2062, 2064, 1, 0, 0, 0, 2063, 2045, 1, 0, 0, 0, 2063, 2046, 1, 0, 0, 0, 2064, 111, 1, 0, 0, 0, 2065, 2080, 3, 830, 415, 0, 2066, 2081, 3, 54, 27, 0, 2067, 2081, 3, 196, 98, 0, 2068, 2081, 5, 9, 0, 0, 2069, 2070, 5, 2, 0, 0, 2070, 2075, 3, 52, 26, 0, 2071, 2072, 5, 6, 0, 0, 2072, 2074, 3, 52, 26, 0, 2073, 2071, 1, 0, 0, 0, 2074, 2077, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2075, 1, 0, 0, 0, 2078, 2079, 5, 3, 0, 0, 2079, 2081, 1, 0, 0, 0, 2080, 2066, 1, 0, 0, 0, 2080, 2067, 1, 0, 0, 0, 2080, 2068, 1, 0, 0, 0, 2080, 2069, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 113, 1, 0, 0, 0, 2082, 2084, 5, 46, 0, 0, 2083, 2085, 3, 116, 58, 0, 2084, 2083, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2088, 5, 92, 0, 0, 2087, 2089, 3, 288, 144, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2156, 3, 776, 388, 0, 2091, 2093, 5, 2, 0, 0, 2092, 2094, 3, 120, 60, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 5, 3, 0, 0, 2096, 2098, 3, 158, 79, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2101, 3, 160, 80, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2103, 1, 0, 0, 0, 2102, 2104, 3, 164, 82, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2107, 3, 166, 83, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2109, 1, 0, 0, 0, 2108, 2110, 3, 168, 84, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 170, 85, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2157, 1, 0, 0, 0, 2114, 2115, 5, 275, 0, 0, 2115, 2117, 3, 310, 155, 0, 2116, 2118, 3, 118, 59, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 160, 80, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 164, 82, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 166, 83, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2130, 3, 168, 84, 0, 2129, 2128, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2132, 1, 0, 0, 0, 2131, 2133, 3, 170, 85, 0, 2132, 2131, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2157, 1, 0, 0, 0, 2134, 2135, 5, 285, 0, 0, 2135, 2136, 5, 275, 0, 0, 2136, 2138, 3, 784, 392, 0, 2137, 2139, 3, 118, 59, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 3, 98, 49, 0, 2141, 2143, 3, 160, 80, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 164, 82, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 1, 0, 0, 0, 2147, 2149, 3, 166, 83, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2152, 3, 168, 84, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2154, 1, 0, 0, 0, 2153, 2155, 3, 170, 85, 0, 2154, 2153, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 1, 0, 0, 0, 2156, 2091, 1, 0, 0, 0, 2156, 2114, 1, 0, 0, 0, 2156, 2134, 1, 0, 0, 0, 2157, 115, 1, 0, 0, 0, 2158, 2164, 5, 354, 0, 0, 2159, 2164, 5, 352, 0, 0, 2160, 2161, 7, 21, 0, 0, 2161, 2164, 7, 22, 0, 0, 2162, 2164, 5, 367, 0, 0, 2163, 2158, 1, 0, 0, 0, 2163, 2159, 1, 0, 0, 0, 2163, 2160, 1, 0, 0, 0, 2163, 2162, 1, 0, 0, 0, 2164, 117, 1, 0, 0, 0, 2165, 2166, 5, 2, 0, 0, 2166, 2171, 3, 124, 62, 0, 2167, 2168, 5, 6, 0, 0, 2168, 2170, 3, 124, 62, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2173, 1, 0, 0, 0, 2171, 2169, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2175, 5, 3, 0, 0, 2175, 119, 1, 0, 0, 0, 2176, 2181, 3, 122, 61, 0, 2177, 2178, 5, 6, 0, 0, 2178, 2180, 3, 122, 61, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2183, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 121, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2185, 5, 45, 0, 0, 2185, 2187, 3, 824, 412, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2200, 3, 136, 68, 0, 2189, 2200, 3, 126, 63, 0, 2190, 2191, 5, 120, 0, 0, 2191, 2196, 3, 784, 392, 0, 2192, 2193, 7, 23, 0, 0, 2193, 2195, 3, 134, 67, 0, 2194, 2192, 1, 0, 0, 0, 2195, 2198, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2186, 1, 0, 0, 0, 2199, 2189, 1, 0, 0, 0, 2199, 2190, 1, 0, 0, 0, 2200, 123, 1, 0, 0, 0, 2201, 2204, 3, 808, 404, 0, 2202, 2203, 5, 105, 0, 0, 2203, 2205, 5, 280, 0, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 2209, 1, 0, 0, 0, 2206, 2208, 3, 128, 64, 0, 2207, 2206, 1, 0, 0, 0, 2208, 2211, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2218, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2212, 2213, 5, 45, 0, 0, 2213, 2215, 3, 824, 412, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2218, 3, 136, 68, 0, 2217, 2201, 1, 0, 0, 0, 2217, 2214, 1, 0, 0, 0, 2218, 125, 1, 0, 0, 0, 2219, 2220, 3, 808, 404, 0, 2220, 2222, 3, 648, 324, 0, 2221, 2223, 3, 214, 107, 0, 2222, 2221, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2233, 1, 0, 0, 0, 2224, 2231, 5, 345, 0, 0, 2225, 2232, 5, 544, 0, 0, 2226, 2232, 5, 205, 0, 0, 2227, 2232, 5, 545, 0, 0, 2228, 2232, 5, 546, 0, 0, 2229, 2232, 5, 53, 0, 0, 2230, 2232, 3, 824, 412, 0, 2231, 2225, 1, 0, 0, 0, 2231, 2226, 1, 0, 0, 0, 2231, 2227, 1, 0, 0, 0, 2231, 2228, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2231, 2230, 1, 0, 0, 0, 2232, 2234, 1, 0, 0, 0, 2233, 2224, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2237, 1, 0, 0, 0, 2235, 2236, 5, 543, 0, 0, 2236, 2238, 3, 824, 412, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2240, 1, 0, 0, 0, 2239, 2241, 3, 90, 45, 0, 2240, 2239, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2244, 1, 0, 0, 0, 2242, 2243, 5, 105, 0, 0, 2243, 2245, 5, 280, 0, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2249, 1, 0, 0, 0, 2246, 2248, 3, 128, 64, 0, 2247, 2246, 1, 0, 0, 0, 2248, 2251, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 127, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2253, 5, 45, 0, 0, 2253, 2255, 3, 824, 412, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2261, 3, 130, 65, 0, 2257, 2259, 5, 77, 0, 0, 2258, 2257, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2262, 5, 54, 0, 0, 2261, 2258, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2264, 5, 69, 0, 0, 2264, 2266, 7, 9, 0, 0, 2265, 2263, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 129, 1, 0, 0, 0, 2267, 2269, 5, 77, 0, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2348, 5, 78, 0, 0, 2271, 2273, 5, 98, 0, 0, 2272, 2274, 3, 394, 197, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2276, 1, 0, 0, 0, 2275, 2277, 3, 172, 86, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2348, 1, 0, 0, 0, 2278, 2284, 5, 98, 0, 0, 2279, 2281, 5, 273, 0, 0, 2280, 2282, 5, 77, 0, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2285, 5, 56, 0, 0, 2284, 2279, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2287, 5, 441, 0, 0, 2287, 2289, 3, 354, 177, 0, 2288, 2286, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2291, 1, 0, 0, 0, 2290, 2292, 3, 566, 283, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2295, 3, 172, 86, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2348, 1, 0, 0, 0, 2296, 2297, 5, 85, 0, 0, 2297, 2299, 5, 245, 0, 0, 2298, 2300, 3, 394, 197, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 3, 172, 86, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2348, 1, 0, 0, 0, 2304, 2305, 5, 42, 0, 0, 2305, 2306, 5, 2, 0, 0, 2306, 2307, 3, 670, 335, 0, 2307, 2310, 5, 3, 0, 0, 2308, 2309, 5, 269, 0, 0, 2309, 2311, 5, 228, 0, 0, 2310, 2308, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2348, 1, 0, 0, 0, 2312, 2313, 5, 53, 0, 0, 2313, 2348, 3, 678, 339, 0, 2314, 2315, 5, 438, 0, 0, 2315, 2316, 3, 132, 66, 0, 2316, 2333, 5, 36, 0, 0, 2317, 2326, 5, 219, 0, 0, 2318, 2320, 5, 2, 0, 0, 2319, 2321, 3, 194, 97, 0, 2320, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2325, 5, 3, 0, 0, 2325, 2327, 1, 0, 0, 0, 2326, 2318, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2334, 1, 0, 0, 0, 2328, 2329, 5, 2, 0, 0, 2329, 2330, 3, 670, 335, 0, 2330, 2331, 5, 3, 0, 0, 2331, 2332, 5, 440, 0, 0, 2332, 2334, 1, 0, 0, 0, 2333, 2317, 1, 0, 0, 0, 2333, 2328, 1, 0, 0, 0, 2334, 2348, 1, 0, 0, 0, 2335, 2336, 5, 86, 0, 0, 2336, 2338, 3, 784, 392, 0, 2337, 2339, 3, 138, 69, 0, 2338, 2337, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2341, 1, 0, 0, 0, 2340, 2342, 3, 146, 73, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2344, 1, 0, 0, 0, 2343, 2345, 3, 150, 75, 0, 2344, 2343, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2348, 3, 90, 45, 0, 2347, 2268, 1, 0, 0, 0, 2347, 2271, 1, 0, 0, 0, 2347, 2278, 1, 0, 0, 0, 2347, 2296, 1, 0, 0, 0, 2347, 2304, 1, 0, 0, 0, 2347, 2312, 1, 0, 0, 0, 2347, 2314, 1, 0, 0, 0, 2347, 2335, 1, 0, 0, 0, 2347, 2346, 1, 0, 0, 0, 2348, 131, 1, 0, 0, 0, 2349, 2353, 5, 139, 0, 0, 2350, 2351, 5, 147, 0, 0, 2351, 2353, 5, 53, 0, 0, 2352, 2349, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2353, 133, 1, 0, 0, 0, 2354, 2355, 7, 24, 0, 0, 2355, 135, 1, 0, 0, 0, 2356, 2357, 5, 42, 0, 0, 2357, 2358, 5, 2, 0, 0, 2358, 2359, 3, 670, 335, 0, 2359, 2363, 5, 3, 0, 0, 2360, 2362, 3, 266, 133, 0, 2361, 2360, 1, 0, 0, 0, 2362, 2365, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2453, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2370, 5, 98, 0, 0, 2367, 2368, 5, 85, 0, 0, 2368, 2370, 5, 245, 0, 0, 2369, 2366, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2394, 1, 0, 0, 0, 2371, 2373, 3, 138, 69, 0, 2372, 2374, 3, 144, 72, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2376, 1, 0, 0, 0, 2375, 2377, 3, 394, 197, 0, 2376, 2375, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 1, 0, 0, 0, 2378, 2380, 3, 172, 86, 0, 2379, 2378, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2384, 1, 0, 0, 0, 2381, 2383, 3, 266, 133, 0, 2382, 2381, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2395, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2387, 2391, 3, 174, 87, 0, 2388, 2390, 3, 266, 133, 0, 2389, 2388, 1, 0, 0, 0, 2390, 2393, 1, 0, 0, 0, 2391, 2389, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2395, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2394, 2371, 1, 0, 0, 0, 2394, 2387, 1, 0, 0, 0, 2395, 2453, 1, 0, 0, 0, 2396, 2398, 5, 199, 0, 0, 2397, 2399, 3, 164, 82, 0, 2398, 2397, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 5, 2, 0, 0, 2401, 2406, 3, 148, 74, 0, 2402, 2403, 5, 6, 0, 0, 2403, 2405, 3, 148, 74, 0, 2404, 2402, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2411, 5, 3, 0, 0, 2410, 2412, 3, 144, 72, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 1, 0, 0, 0, 2413, 2415, 3, 394, 197, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2418, 3, 172, 86, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2424, 1, 0, 0, 0, 2419, 2420, 5, 103, 0, 0, 2420, 2421, 5, 2, 0, 0, 2421, 2422, 3, 670, 335, 0, 2422, 2423, 5, 3, 0, 0, 2423, 2425, 1, 0, 0, 0, 2424, 2419, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2429, 1, 0, 0, 0, 2426, 2428, 3, 266, 133, 0, 2427, 2426, 1, 0, 0, 0, 2428, 2431, 1, 0, 0, 0, 2429, 2427, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2453, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2432, 2433, 5, 63, 0, 0, 2433, 2434, 5, 245, 0, 0, 2434, 2435, 3, 138, 69, 0, 2435, 2436, 5, 86, 0, 0, 2436, 2438, 3, 784, 392, 0, 2437, 2439, 3, 138, 69, 0, 2438, 2437, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 1, 0, 0, 0, 2440, 2442, 3, 146, 73, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2444, 1, 0, 0, 0, 2443, 2445, 3, 150, 75, 0, 2444, 2443, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2449, 1, 0, 0, 0, 2446, 2448, 3, 266, 133, 0, 2447, 2446, 1, 0, 0, 0, 2448, 2451, 1, 0, 0, 0, 2449, 2447, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2453, 1, 0, 0, 0, 2451, 2449, 1, 0, 0, 0, 2452, 2356, 1, 0, 0, 0, 2452, 2369, 1, 0, 0, 0, 2452, 2396, 1, 0, 0, 0, 2452, 2432, 1, 0, 0, 0, 2453, 137, 1, 0, 0, 0, 2454, 2455, 5, 2, 0, 0, 2455, 2456, 3, 142, 71, 0, 2456, 2457, 5, 3, 0, 0, 2457, 139, 1, 0, 0, 0, 2458, 2459, 5, 2, 0, 0, 2459, 2464, 3, 808, 404, 0, 2460, 2461, 5, 6, 0, 0, 2461, 2463, 3, 808, 404, 0, 2462, 2460, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2467, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2468, 5, 3, 0, 0, 2468, 141, 1, 0, 0, 0, 2469, 2474, 3, 804, 402, 0, 2470, 2471, 5, 6, 0, 0, 2471, 2473, 3, 804, 402, 0, 2472, 2470, 1, 0, 0, 0, 2473, 2476, 1, 0, 0, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 143, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2477, 2478, 5, 441, 0, 0, 2478, 2479, 3, 138, 69, 0, 2479, 145, 1, 0, 0, 0, 2480, 2481, 5, 258, 0, 0, 2481, 2482, 7, 25, 0, 0, 2482, 147, 1, 0, 0, 0, 2483, 2484, 3, 356, 178, 0, 2484, 2491, 5, 105, 0, 0, 2485, 2492, 3, 408, 204, 0, 2486, 2487, 5, 278, 0, 0, 2487, 2488, 5, 2, 0, 0, 2488, 2489, 3, 408, 204, 0, 2489, 2490, 5, 3, 0, 0, 2490, 2492, 1, 0, 0, 0, 2491, 2485, 1, 0, 0, 0, 2491, 2486, 1, 0, 0, 0, 2492, 149, 1, 0, 0, 0, 2493, 2495, 3, 152, 76, 0, 2494, 2496, 3, 154, 77, 0, 2495, 2494, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2502, 1, 0, 0, 0, 2497, 2499, 3, 154, 77, 0, 2498, 2500, 3, 152, 76, 0, 2499, 2498, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2502, 1, 0, 0, 0, 2501, 2493, 1, 0, 0, 0, 2501, 2497, 1, 0, 0, 0, 2502, 151, 1, 0, 0, 0, 2503, 2504, 5, 80, 0, 0, 2504, 2505, 5, 369, 0, 0, 2505, 2506, 3, 156, 78, 0, 2506, 153, 1, 0, 0, 0, 2507, 2508, 5, 80, 0, 0, 2508, 2509, 5, 182, 0, 0, 2509, 2510, 3, 156, 78, 0, 2510, 155, 1, 0, 0, 0, 2511, 2512, 5, 269, 0, 0, 2512, 2521, 5, 132, 0, 0, 2513, 2521, 5, 315, 0, 0, 2514, 2521, 5, 150, 0, 0, 2515, 2516, 5, 333, 0, 0, 2516, 2518, 7, 26, 0, 0, 2517, 2519, 3, 142, 71, 0, 2518, 2517, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2521, 1, 0, 0, 0, 2520, 2511, 1, 0, 0, 0, 2520, 2513, 1, 0, 0, 0, 2520, 2514, 1, 0, 0, 0, 2520, 2515, 1, 0, 0, 0, 2521, 157, 1, 0, 0, 0, 2522, 2523, 5, 238, 0, 0, 2523, 2524, 5, 2, 0, 0, 2524, 2525, 3, 764, 382, 0, 2525, 2526, 5, 3, 0, 0, 2526, 159, 1, 0, 0, 0, 2527, 2528, 5, 285, 0, 0, 2528, 2529, 5, 147, 0, 0, 2529, 2530, 3, 824, 412, 0, 2530, 2531, 5, 2, 0, 0, 2531, 2536, 3, 162, 81, 0, 2532, 2533, 5, 6, 0, 0, 2533, 2535, 3, 162, 81, 0, 2534, 2532, 1, 0, 0, 0, 2535, 2538, 1, 0, 0, 0, 2536, 2534, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2539, 2540, 5, 3, 0, 0, 2540, 161, 1, 0, 0, 0, 2541, 2548, 3, 804, 402, 0, 2542, 2548, 3, 684, 342, 0, 2543, 2544, 5, 2, 0, 0, 2544, 2545, 3, 670, 335, 0, 2545, 2546, 5, 3, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2541, 1, 0, 0, 0, 2547, 2542, 1, 0, 0, 0, 2547, 2543, 1, 0, 0, 0, 2548, 2550, 1, 0, 0, 0, 2549, 2551, 3, 90, 45, 0, 2550, 2549, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2553, 1, 0, 0, 0, 2552, 2554, 3, 310, 155, 0, 2553, 2552, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 163, 1, 0, 0, 0, 2555, 2556, 5, 100, 0, 0, 2556, 2557, 3, 824, 412, 0, 2557, 165, 1, 0, 0, 0, 2558, 2559, 5, 105, 0, 0, 2559, 2563, 3, 92, 46, 0, 2560, 2561, 7, 27, 0, 0, 2561, 2563, 5, 277, 0, 0, 2562, 2558, 1, 0, 0, 0, 2562, 2560, 1, 0, 0, 0, 2563, 167, 1, 0, 0, 0, 2564, 2565, 5, 80, 0, 0, 2565, 2571, 5, 161, 0, 0, 2566, 2572, 5, 191, 0, 0, 2567, 2568, 5, 182, 0, 0, 2568, 2572, 5, 320, 0, 0, 2569, 2570, 5, 292, 0, 0, 2570, 2572, 5, 320, 0, 0, 2571, 2566, 1, 0, 0, 0, 2571, 2567, 1, 0, 0, 0, 2571, 2569, 1, 0, 0, 0, 2572, 169, 1, 0, 0, 0, 2573, 2574, 5, 351, 0, 0, 2574, 2575, 3, 774, 387, 0, 2575, 171, 1, 0, 0, 0, 2576, 2577, 5, 100, 0, 0, 2577, 2578, 5, 226, 0, 0, 2578, 2579, 3, 170, 85, 0, 2579, 173, 1, 0, 0, 0, 2580, 2581, 5, 100, 0, 0, 2581, 2582, 5, 226, 0, 0, 2582, 2583, 3, 824, 412, 0, 2583, 175, 1, 0, 0, 0, 2584, 2585, 5, 46, 0, 0, 2585, 2590, 5, 342, 0, 0, 2586, 2588, 3, 288, 144, 0, 2587, 2586, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 3, 310, 155, 0, 2590, 2587, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2593, 1, 0, 0, 0, 2592, 2594, 3, 138, 69, 0, 2593, 2592, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2605, 5, 80, 0, 0, 2596, 2601, 3, 734, 367, 0, 2597, 2598, 5, 6, 0, 0, 2598, 2600, 3, 734, 367, 0, 2599, 2597, 1, 0, 0, 0, 2600, 2603, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2606, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2604, 2606, 3, 728, 364, 0, 2605, 2596, 1, 0, 0, 0, 2605, 2604, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2608, 3, 604, 302, 0, 2608, 177, 1, 0, 0, 0, 2609, 2610, 5, 138, 0, 0, 2610, 2612, 5, 342, 0, 0, 2611, 2613, 3, 416, 208, 0, 2612, 2611, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 3, 310, 155, 0, 2615, 2616, 5, 333, 0, 0, 2616, 2617, 5, 342, 0, 0, 2617, 2618, 3, 818, 409, 0, 2618, 179, 1, 0, 0, 0, 2619, 2621, 5, 46, 0, 0, 2620, 2622, 3, 116, 58, 0, 2621, 2620, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2625, 5, 92, 0, 0, 2624, 2626, 3, 288, 144, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2628, 3, 182, 91, 0, 2628, 2629, 5, 36, 0, 0, 2629, 2631, 3, 554, 277, 0, 2630, 2632, 3, 184, 92, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 181, 1, 0, 0, 0, 2633, 2635, 3, 776, 388, 0, 2634, 2636, 3, 140, 70, 0, 2635, 2634, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2638, 1, 0, 0, 0, 2637, 2639, 3, 164, 82, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2641, 1, 0, 0, 0, 2640, 2642, 3, 166, 83, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2645, 3, 168, 84, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2648, 3, 170, 85, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 183, 1, 0, 0, 0, 2649, 2653, 5, 105, 0, 0, 2650, 2654, 5, 174, 0, 0, 2651, 2652, 5, 269, 0, 0, 2652, 2654, 5, 174, 0, 0, 2653, 2650, 1, 0, 0, 0, 2653, 2651, 1, 0, 0, 0, 2654, 185, 1, 0, 0, 0, 2655, 2657, 5, 46, 0, 0, 2656, 2658, 5, 367, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 5, 259, 0, 0, 2660, 2662, 5, 376, 0, 0, 2661, 2663, 3, 288, 144, 0, 2662, 2661, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2666, 3, 780, 390, 0, 2665, 2667, 3, 140, 70, 0, 2666, 2665, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2669, 1, 0, 0, 0, 2668, 2670, 3, 164, 82, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2673, 3, 94, 47, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2676, 3, 170, 85, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 5, 36, 0, 0, 2678, 2680, 3, 554, 277, 0, 2679, 2681, 3, 184, 92, 0, 2680, 2679, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 187, 1, 0, 0, 0, 2682, 2683, 5, 305, 0, 0, 2683, 2684, 5, 259, 0, 0, 2684, 2686, 5, 376, 0, 0, 2685, 2687, 5, 109, 0, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 3, 782, 391, 0, 2689, 2691, 3, 184, 92, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 189, 1, 0, 0, 0, 2692, 2694, 5, 46, 0, 0, 2693, 2695, 3, 116, 58, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2698, 5, 328, 0, 0, 2697, 2699, 3, 288, 144, 0, 2698, 2697, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2706, 3, 784, 392, 0, 2701, 2703, 3, 194, 97, 0, 2702, 2701, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2707, 1, 0, 0, 0, 2706, 2702, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 191, 1, 0, 0, 0, 2708, 2709, 5, 138, 0, 0, 2709, 2711, 5, 328, 0, 0, 2710, 2712, 3, 416, 208, 0, 2711, 2710, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2715, 3, 784, 392, 0, 2714, 2716, 3, 194, 97, 0, 2715, 2714, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2715, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 193, 1, 0, 0, 0, 2719, 2720, 5, 36, 0, 0, 2720, 2753, 3, 650, 325, 0, 2721, 2723, 5, 148, 0, 0, 2722, 2724, 3, 196, 98, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2753, 1, 0, 0, 0, 2725, 2727, 5, 225, 0, 0, 2726, 2728, 5, 147, 0, 0, 2727, 2726, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 2753, 3, 196, 98, 0, 2730, 2731, 7, 28, 0, 0, 2731, 2753, 3, 196, 98, 0, 2732, 2733, 5, 269, 0, 0, 2733, 2753, 7, 29, 0, 0, 2734, 2735, 5, 281, 0, 0, 2735, 2736, 5, 147, 0, 0, 2736, 2753, 3, 804, 402, 0, 2737, 2738, 5, 328, 0, 0, 2738, 2739, 5, 266, 0, 0, 2739, 2753, 3, 310, 155, 0, 2740, 2742, 5, 340, 0, 0, 2741, 2743, 5, 105, 0, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2753, 3, 196, 98, 0, 2745, 2747, 5, 314, 0, 0, 2746, 2748, 5, 105, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2750, 1, 0, 0, 0, 2749, 2751, 3, 196, 98, 0, 2750, 2749, 1, 0, 0, 0, 2750, 2751, 1, 0, 0, 0, 2751, 2753, 1, 0, 0, 0, 2752, 2719, 1, 0, 0, 0, 2752, 2721, 1, 0, 0, 0, 2752, 2725, 1, 0, 0, 0, 2752, 2730, 1, 0, 0, 0, 2752, 2732, 1, 0, 0, 0, 2752, 2734, 1, 0, 0, 0, 2752, 2737, 1, 0, 0, 0, 2752, 2740, 1, 0, 0, 0, 2752, 2745, 1, 0, 0, 0, 2753, 195, 1, 0, 0, 0, 2754, 2756, 7, 30, 0, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2760, 5, 576, 0, 0, 2758, 2760, 3, 818, 409, 0, 2759, 2755, 1, 0, 0, 0, 2759, 2758, 1, 0, 0, 0, 2760, 197, 1, 0, 0, 0, 2761, 2763, 5, 46, 0, 0, 2762, 2764, 3, 360, 180, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2766, 1, 0, 0, 0, 2765, 2767, 5, 359, 0, 0, 2766, 2765, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2770, 5, 295, 0, 0, 2769, 2768, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2772, 5, 247, 0, 0, 2772, 2785, 3, 824, 412, 0, 2773, 2774, 5, 215, 0, 0, 2774, 2777, 3, 310, 155, 0, 2775, 2776, 5, 239, 0, 0, 2776, 2778, 3, 310, 155, 0, 2777, 2775, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2783, 1, 0, 0, 0, 2779, 2780, 5, 373, 0, 0, 2780, 2784, 3, 310, 155, 0, 2781, 2782, 5, 269, 0, 0, 2782, 2784, 5, 373, 0, 0, 2783, 2779, 1, 0, 0, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2786, 1, 0, 0, 0, 2785, 2773, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 199, 1, 0, 0, 0, 2787, 2788, 5, 46, 0, 0, 2788, 2791, 3, 170, 85, 0, 2789, 2790, 5, 282, 0, 0, 2790, 2792, 3, 820, 410, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 5, 255, 0, 0, 2794, 2796, 3, 814, 407, 0, 2795, 2797, 3, 94, 47, 0, 2796, 2795, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 201, 1, 0, 0, 0, 2798, 2799, 5, 46, 0, 0, 2799, 2801, 5, 204, 0, 0, 2800, 2802, 3, 288, 144, 0, 2801, 2800, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2805, 3, 824, 412, 0, 2804, 2806, 5, 105, 0, 0, 2805, 2804, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2814, 1, 0, 0, 0, 2807, 2808, 5, 323, 0, 0, 2808, 2813, 3, 794, 397, 0, 2809, 2810, 7, 31, 0, 0, 2810, 2813, 3, 58, 29, 0, 2811, 2813, 5, 150, 0, 0, 2812, 2807, 1, 0, 0, 0, 2812, 2809, 1, 0, 0, 0, 2812, 2811, 1, 0, 0, 0, 2813, 2816, 1, 0, 0, 0, 2814, 2812, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 203, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2817, 2818, 5, 138, 0, 0, 2818, 2819, 5, 204, 0, 0, 2819, 2820, 3, 824, 412, 0, 2820, 2825, 5, 369, 0, 0, 2821, 2822, 5, 94, 0, 0, 2822, 2824, 3, 58, 29, 0, 2823, 2821, 1, 0, 0, 0, 2824, 2827, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 205, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2828, 2829, 5, 138, 0, 0, 2829, 2830, 5, 204, 0, 0, 2830, 2831, 3, 824, 412, 0, 2831, 2864, 7, 6, 0, 0, 2832, 2833, 5, 443, 0, 0, 2833, 2834, 5, 62, 0, 0, 2834, 2835, 3, 648, 324, 0, 2835, 2836, 5, 247, 0, 0, 2836, 2837, 3, 824, 412, 0, 2837, 2865, 1, 0, 0, 0, 2838, 2839, 5, 442, 0, 0, 2839, 2865, 3, 368, 184, 0, 2840, 2841, 5, 296, 0, 0, 2841, 2865, 3, 372, 186, 0, 2842, 2843, 5, 278, 0, 0, 2843, 2844, 7, 32, 0, 0, 2844, 2845, 3, 310, 155, 0, 2845, 2846, 3, 164, 82, 0, 2846, 2865, 1, 0, 0, 0, 2847, 2848, 5, 278, 0, 0, 2848, 2865, 3, 410, 205, 0, 2849, 2850, 5, 211, 0, 0, 2850, 2865, 3, 376, 188, 0, 2851, 2852, 7, 33, 0, 0, 2852, 2865, 3, 648, 324, 0, 2853, 2854, 5, 41, 0, 0, 2854, 2855, 5, 2, 0, 0, 2855, 2856, 3, 648, 324, 0, 2856, 2857, 5, 36, 0, 0, 2857, 2858, 3, 648, 324, 0, 2858, 2859, 5, 3, 0, 0, 2859, 2865, 1, 0, 0, 0, 2860, 2861, 5, 136, 0, 0, 2861, 2865, 3, 388, 194, 0, 2862, 2865, 3, 306, 153, 0, 2863, 2865, 3, 304, 152, 0, 2864, 2832, 1, 0, 0, 0, 2864, 2838, 1, 0, 0, 0, 2864, 2840, 1, 0, 0, 0, 2864, 2842, 1, 0, 0, 0, 2864, 2847, 1, 0, 0, 0, 2864, 2849, 1, 0, 0, 0, 2864, 2851, 1, 0, 0, 0, 2864, 2853, 1, 0, 0, 0, 2864, 2860, 1, 0, 0, 0, 2864, 2862, 1, 0, 0, 0, 2864, 2863, 1, 0, 0, 0, 2865, 207, 1, 0, 0, 0, 2866, 2867, 5, 46, 0, 0, 2867, 2868, 5, 63, 0, 0, 2868, 2869, 5, 174, 0, 0, 2869, 2870, 5, 381, 0, 0, 2870, 2876, 3, 824, 412, 0, 2871, 2873, 3, 210, 105, 0, 2872, 2871, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2872, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2877, 1, 0, 0, 0, 2876, 2872, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2879, 1, 0, 0, 0, 2878, 2880, 3, 214, 107, 0, 2879, 2878, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 209, 1, 0, 0, 0, 2881, 2883, 7, 34, 0, 0, 2882, 2884, 3, 310, 155, 0, 2883, 2882, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2888, 1, 0, 0, 0, 2885, 2886, 5, 269, 0, 0, 2886, 2888, 7, 34, 0, 0, 2887, 2881, 1, 0, 0, 0, 2887, 2885, 1, 0, 0, 0, 2888, 211, 1, 0, 0, 0, 2889, 2890, 5, 138, 0, 0, 2890, 2891, 5, 63, 0, 0, 2891, 2892, 5, 174, 0, 0, 2892, 2893, 5, 381, 0, 0, 2893, 2907, 3, 824, 412, 0, 2894, 2896, 3, 210, 105, 0, 2895, 2894, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2895, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2908, 3, 216, 108, 0, 2902, 2904, 3, 210, 105, 0, 2903, 2902, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 2903, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2908, 1, 0, 0, 0, 2907, 2899, 1, 0, 0, 0, 2907, 2903, 1, 0, 0, 0, 2908, 213, 1, 0, 0, 0, 2909, 2910, 5, 280, 0, 0, 2910, 2911, 5, 2, 0, 0, 2911, 2916, 3, 220, 110, 0, 2912, 2913, 5, 6, 0, 0, 2913, 2915, 3, 220, 110, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2918, 1, 0, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2919, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2920, 5, 3, 0, 0, 2920, 215, 1, 0, 0, 0, 2921, 2922, 5, 280, 0, 0, 2922, 2923, 5, 2, 0, 0, 2923, 2928, 3, 218, 109, 0, 2924, 2925, 5, 6, 0, 0, 2925, 2927, 3, 218, 109, 0, 2926, 2924, 1, 0, 0, 0, 2927, 2930, 1, 0, 0, 0, 2928, 2926, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2931, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2931, 2932, 5, 3, 0, 0, 2932, 217, 1, 0, 0, 0, 2933, 2934, 7, 35, 0, 0, 2934, 2935, 3, 220, 110, 0, 2935, 219, 1, 0, 0, 0, 2936, 2937, 3, 830, 415, 0, 2937, 2938, 3, 814, 407, 0, 2938, 221, 1, 0, 0, 0, 2939, 2940, 5, 46, 0, 0, 2940, 2942, 5, 331, 0, 0, 2941, 2943, 3, 288, 144, 0, 2942, 2941, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2947, 3, 824, 412, 0, 2945, 2946, 5, 360, 0, 0, 2946, 2948, 3, 814, 407, 0, 2947, 2945, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2950, 1, 0, 0, 0, 2949, 2951, 3, 224, 112, 0, 2950, 2949, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2953, 5, 63, 0, 0, 2953, 2954, 5, 174, 0, 0, 2954, 2955, 5, 381, 0, 0, 2955, 2957, 3, 824, 412, 0, 2956, 2958, 3, 214, 107, 0, 2957, 2956, 1, 0, 0, 0, 2957, 2958, 1, 0, 0, 0, 2958, 223, 1, 0, 0, 0, 2959, 2962, 5, 375, 0, 0, 2960, 2963, 3, 814, 407, 0, 2961, 2963, 5, 78, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2961, 1, 0, 0, 0, 2963, 225, 1, 0, 0, 0, 2964, 2965, 5, 138, 0, 0, 2965, 2966, 5, 331, 0, 0, 2966, 2972, 3, 824, 412, 0, 2967, 2973, 3, 216, 108, 0, 2968, 2970, 3, 224, 112, 0, 2969, 2971, 3, 216, 108, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2973, 1, 0, 0, 0, 2972, 2967, 1, 0, 0, 0, 2972, 2968, 1, 0, 0, 0, 2973, 227, 1, 0, 0, 0, 2974, 2975, 5, 46, 0, 0, 2975, 2976, 5, 63, 0, 0, 2976, 2978, 5, 92, 0, 0, 2977, 2979, 3, 288, 144, 0, 2978, 2977, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2981, 3, 776, 388, 0, 2981, 2983, 5, 2, 0, 0, 2982, 2984, 3, 120, 60, 0, 2983, 2982, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2987, 5, 3, 0, 0, 2986, 2988, 3, 158, 79, 0, 2987, 2986, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2990, 5, 331, 0, 0, 2990, 2992, 3, 824, 412, 0, 2991, 2993, 3, 214, 107, 0, 2992, 2991, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 3014, 1, 0, 0, 0, 2994, 2995, 5, 46, 0, 0, 2995, 2996, 5, 63, 0, 0, 2996, 2998, 5, 92, 0, 0, 2997, 2999, 3, 288, 144, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3001, 3, 776, 388, 0, 3001, 3002, 5, 285, 0, 0, 3002, 3003, 5, 275, 0, 0, 3003, 3005, 3, 778, 389, 0, 3004, 3006, 3, 118, 59, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 3, 98, 49, 0, 3008, 3009, 5, 331, 0, 0, 3009, 3011, 3, 824, 412, 0, 3010, 3012, 3, 214, 107, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3014, 1, 0, 0, 0, 3013, 2974, 1, 0, 0, 0, 3013, 2994, 1, 0, 0, 0, 3014, 229, 1, 0, 0, 0, 3015, 3016, 5, 444, 0, 0, 3016, 3017, 5, 63, 0, 0, 3017, 3018, 5, 323, 0, 0, 3018, 3028, 3, 794, 397, 0, 3019, 3020, 5, 74, 0, 0, 3020, 3023, 5, 94, 0, 0, 3021, 3023, 5, 59, 0, 0, 3022, 3019, 1, 0, 0, 0, 3022, 3021, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 5, 2, 0, 0, 3025, 3026, 3, 624, 312, 0, 3026, 3027, 5, 3, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3022, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3031, 5, 64, 0, 0, 3031, 3032, 5, 331, 0, 0, 3032, 3033, 3, 824, 412, 0, 3033, 3034, 5, 71, 0, 0, 3034, 3036, 3, 824, 412, 0, 3035, 3037, 3, 214, 107, 0, 3036, 3035, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 231, 1, 0, 0, 0, 3038, 3039, 5, 46, 0, 0, 3039, 3040, 5, 99, 0, 0, 3040, 3042, 5, 257, 0, 0, 3041, 3043, 3, 288, 144, 0, 3042, 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 1, 0, 0, 0, 3044, 3047, 5, 62, 0, 0, 3045, 3048, 3, 820, 410, 0, 3046, 3048, 5, 99, 0, 0, 3047, 3045, 1, 0, 0, 0, 3047, 3046, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3050, 5, 331, 0, 0, 3050, 3052, 3, 824, 412, 0, 3051, 3053, 3, 214, 107, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 233, 1, 0, 0, 0, 3054, 3055, 5, 138, 0, 0, 3055, 3056, 5, 99, 0, 0, 3056, 3057, 5, 257, 0, 0, 3057, 3060, 5, 62, 0, 0, 3058, 3061, 3, 820, 410, 0, 3059, 3061, 5, 99, 0, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3059, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 5, 331, 0, 0, 3063, 3064, 3, 824, 412, 0, 3064, 3065, 3, 216, 108, 0, 3065, 235, 1, 0, 0, 0, 3066, 3067, 5, 46, 0, 0, 3067, 3068, 5, 445, 0, 0, 3068, 3069, 3, 824, 412, 0, 3069, 3070, 5, 80, 0, 0, 3070, 3077, 3, 784, 392, 0, 3071, 3075, 5, 36, 0, 0, 3072, 3076, 5, 541, 0, 0, 3073, 3076, 5, 542, 0, 0, 3074, 3076, 3, 832, 416, 0, 3075, 3072, 1, 0, 0, 0, 3075, 3073, 1, 0, 0, 0, 3075, 3074, 1, 0, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3071, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3081, 1, 0, 0, 0, 3079, 3080, 5, 62, 0, 0, 3080, 3082, 7, 36, 0, 0, 3081, 3079, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3085, 1, 0, 0, 0, 3083, 3084, 5, 94, 0, 0, 3084, 3086, 3, 822, 411, 0, 3085, 3083, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3088, 1, 0, 0, 0, 3087, 3089, 3, 244, 122, 0, 3088, 3087, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3092, 3, 246, 123, 0, 3091, 3090, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 237, 1, 0, 0, 0, 3093, 3094, 5, 138, 0, 0, 3094, 3095, 5, 445, 0, 0, 3095, 3096, 3, 824, 412, 0, 3096, 3097, 5, 80, 0, 0, 3097, 3100, 3, 784, 392, 0, 3098, 3099, 5, 94, 0, 0, 3099, 3101, 3, 822, 411, 0, 3100, 3098, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3103, 1, 0, 0, 0, 3102, 3104, 3, 244, 122, 0, 3103, 3102, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 3106, 1, 0, 0, 0, 3105, 3107, 3, 246, 123, 0, 3106, 3105, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 239, 1, 0, 0, 0, 3108, 3109, 5, 138, 0, 0, 3109, 3110, 5, 296, 0, 0, 3110, 3112, 3, 800, 400, 0, 3111, 3113, 3, 362, 181, 0, 3112, 3111, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3140, 1, 0, 0, 0, 3114, 3118, 3, 242, 121, 0, 3115, 3117, 3, 242, 121, 0, 3116, 3115, 1, 0, 0, 0, 3117, 3120, 1, 0, 0, 0, 3118, 3116, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3122, 1, 0, 0, 0, 3120, 3118, 1, 0, 0, 0, 3121, 3123, 5, 315, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3141, 1, 0, 0, 0, 3124, 3125, 5, 309, 0, 0, 3125, 3126, 5, 94, 0, 0, 3126, 3141, 3, 802, 401, 0, 3127, 3128, 5, 282, 0, 0, 3128, 3129, 5, 94, 0, 0, 3129, 3141, 3, 820, 410, 0, 3130, 3131, 5, 333, 0, 0, 3131, 3132, 5, 323, 0, 0, 3132, 3141, 3, 32, 16, 0, 3133, 3135, 5, 269, 0, 0, 3134, 3133, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 5, 462, 0, 0, 3137, 3138, 5, 80, 0, 0, 3138, 3139, 5, 204, 0, 0, 3139, 3141, 3, 824, 412, 0, 3140, 3114, 1, 0, 0, 0, 3140, 3124, 1, 0, 0, 0, 3140, 3127, 1, 0, 0, 0, 3140, 3130, 1, 0, 0, 0, 3140, 3134, 1, 0, 0, 0, 3141, 241, 1, 0, 0, 0, 3142, 3144, 5, 205, 0, 0, 3143, 3142, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3146, 5, 327, 0, 0, 3146, 3153, 5, 243, 0, 0, 3147, 3149, 5, 205, 0, 0, 3148, 3147, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 5, 327, 0, 0, 3151, 3153, 5, 181, 0, 0, 3152, 3143, 1, 0, 0, 0, 3152, 3148, 1, 0, 0, 0, 3153, 3172, 1, 0, 0, 0, 3154, 3155, 5, 333, 0, 0, 3155, 3156, 3, 824, 412, 0, 3156, 3159, 7, 37, 0, 0, 3157, 3160, 3, 824, 412, 0, 3158, 3160, 5, 53, 0, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3158, 1, 0, 0, 0, 3160, 3172, 1, 0, 0, 0, 3161, 3162, 5, 333, 0, 0, 3162, 3163, 3, 824, 412, 0, 3163, 3164, 5, 64, 0, 0, 3164, 3165, 5, 434, 0, 0, 3165, 3172, 1, 0, 0, 0, 3166, 3169, 5, 313, 0, 0, 3167, 3170, 3, 824, 412, 0, 3168, 3170, 5, 30, 0, 0, 3169, 3167, 1, 0, 0, 0, 3169, 3168, 1, 0, 0, 0, 3170, 3172, 1, 0, 0, 0, 3171, 3152, 1, 0, 0, 0, 3171, 3154, 1, 0, 0, 0, 3171, 3161, 1, 0, 0, 0, 3171, 3166, 1, 0, 0, 0, 3172, 243, 1, 0, 0, 0, 3173, 3174, 5, 100, 0, 0, 3174, 3175, 5, 2, 0, 0, 3175, 3176, 3, 670, 335, 0, 3176, 3177, 5, 3, 0, 0, 3177, 245, 1, 0, 0, 0, 3178, 3179, 5, 105, 0, 0, 3179, 3180, 5, 42, 0, 0, 3180, 3181, 5, 2, 0, 0, 3181, 3182, 3, 670, 335, 0, 3182, 3183, 5, 3, 0, 0, 3183, 247, 1, 0, 0, 0, 3184, 3185, 5, 46, 0, 0, 3185, 3186, 5, 131, 0, 0, 3186, 3187, 5, 446, 0, 0, 3187, 3188, 3, 824, 412, 0, 3188, 3189, 5, 360, 0, 0, 3189, 3190, 7, 38, 0, 0, 3190, 3191, 5, 215, 0, 0, 3191, 3192, 3, 310, 155, 0, 3192, 249, 1, 0, 0, 0, 3193, 3195, 5, 46, 0, 0, 3194, 3196, 3, 360, 180, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3198, 5, 357, 0, 0, 3198, 3199, 3, 824, 412, 0, 3199, 3200, 3, 252, 126, 0, 3200, 3201, 3, 254, 127, 0, 3201, 3202, 5, 80, 0, 0, 3202, 3214, 3, 778, 389, 0, 3203, 3210, 5, 447, 0, 0, 3204, 3205, 7, 39, 0, 0, 3205, 3207, 7, 40, 0, 0, 3206, 3208, 5, 36, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3211, 3, 824, 412, 0, 3210, 3204, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3210, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3215, 1, 0, 0, 0, 3214, 3203, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3221, 1, 0, 0, 0, 3216, 3218, 5, 62, 0, 0, 3217, 3219, 5, 192, 0, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3222, 7, 41, 0, 0, 3221, 3216, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 1, 0, 0, 0, 3223, 3225, 3, 258, 129, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3227, 5, 202, 0, 0, 3227, 3228, 3, 260, 130, 0, 3228, 3229, 5, 2, 0, 0, 3229, 3230, 3, 262, 131, 0, 3230, 3231, 5, 3, 0, 0, 3231, 3272, 1, 0, 0, 0, 3232, 3234, 5, 46, 0, 0, 3233, 3235, 3, 360, 180, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 5, 45, 0, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3240, 5, 357, 0, 0, 3240, 3241, 3, 824, 412, 0, 3241, 3242, 3, 252, 126, 0, 3242, 3243, 3, 254, 127, 0, 3243, 3244, 5, 80, 0, 0, 3244, 3247, 3, 778, 389, 0, 3245, 3246, 5, 64, 0, 0, 3246, 3248, 3, 784, 392, 0, 3247, 3245, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3252, 1, 0, 0, 0, 3249, 3251, 3, 266, 133, 0, 3250, 3249, 1, 0, 0, 0, 3251, 3254, 1, 0, 0, 0, 3252, 3250, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3260, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3255, 3257, 5, 62, 0, 0, 3256, 3258, 5, 192, 0, 0, 3257, 3256, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 7, 41, 0, 0, 3260, 3255, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3263, 1, 0, 0, 0, 3262, 3264, 3, 258, 129, 0, 3263, 3262, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3266, 5, 202, 0, 0, 3266, 3267, 3, 260, 130, 0, 3267, 3268, 5, 2, 0, 0, 3268, 3269, 3, 262, 131, 0, 3269, 3270, 5, 3, 0, 0, 3270, 3272, 1, 0, 0, 0, 3271, 3193, 1, 0, 0, 0, 3271, 3232, 1, 0, 0, 0, 3272, 251, 1, 0, 0, 0, 3273, 3278, 5, 145, 0, 0, 3274, 3278, 5, 135, 0, 0, 3275, 3276, 5, 242, 0, 0, 3276, 3278, 5, 275, 0, 0, 3277, 3273, 1, 0, 0, 0, 3277, 3274, 1, 0, 0, 0, 3277, 3275, 1, 0, 0, 0, 3278, 253, 1, 0, 0, 0, 3279, 3284, 3, 256, 128, 0, 3280, 3281, 5, 82, 0, 0, 3281, 3283, 3, 256, 128, 0, 3282, 3280, 1, 0, 0, 0, 3283, 3286, 1, 0, 0, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 255, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3287, 3296, 5, 241, 0, 0, 3288, 3296, 5, 182, 0, 0, 3289, 3292, 5, 369, 0, 0, 3290, 3291, 5, 275, 0, 0, 3291, 3293, 3, 142, 71, 0, 3292, 3290, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3296, 1, 0, 0, 0, 3294, 3296, 5, 358, 0, 0, 3295, 3287, 1, 0, 0, 0, 3295, 3288, 1, 0, 0, 0, 3295, 3289, 1, 0, 0, 0, 3295, 3294, 1, 0, 0, 0, 3296, 257, 1, 0, 0, 0, 3297, 3298, 5, 102, 0, 0, 3298, 3299, 5, 2, 0, 0, 3299, 3300, 3, 670, 335, 0, 3300, 3301, 5, 3, 0, 0, 3301, 259, 1, 0, 0, 0, 3302, 3303, 5, 211, 0, 0, 3303, 3307, 3, 812, 406, 0, 3304, 3305, 5, 296, 0, 0, 3305, 3307, 3, 800, 400, 0, 3306, 3302, 1, 0, 0, 0, 3306, 3304, 1, 0, 0, 0, 3307, 261, 1, 0, 0, 0, 3308, 3311, 3, 264, 132, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3310, 3309, 1, 0, 0, 0, 3311, 3316, 1, 0, 0, 0, 3312, 3313, 5, 6, 0, 0, 3313, 3315, 3, 264, 132, 0, 3314, 3312, 1, 0, 0, 0, 3315, 3318, 1, 0, 0, 0, 3316, 3314, 1, 0, 0, 0, 3316, 3317, 1, 0, 0, 0, 3317, 263, 1, 0, 0, 0, 3318, 3316, 1, 0, 0, 0, 3319, 3324, 5, 574, 0, 0, 3320, 3324, 5, 576, 0, 0, 3321, 3324, 3, 814, 407, 0, 3322, 3324, 3, 830, 415, 0, 3323, 3319, 1, 0, 0, 0, 3323, 3320, 1, 0, 0, 0, 3323, 3321, 1, 0, 0, 0, 3323, 3322, 1, 0, 0, 0, 3324, 265, 1, 0, 0, 0, 3325, 3327, 5, 77, 0, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3336, 5, 54, 0, 0, 3329, 3330, 5, 69, 0, 0, 3330, 3336, 7, 9, 0, 0, 3331, 3332, 5, 77, 0, 0, 3332, 3336, 5, 371, 0, 0, 3333, 3334, 5, 269, 0, 0, 3334, 3336, 5, 228, 0, 0, 3335, 3326, 1, 0, 0, 0, 3335, 3329, 1, 0, 0, 0, 3335, 3331, 1, 0, 0, 0, 3335, 3333, 1, 0, 0, 0, 3336, 267, 1, 0, 0, 0, 3337, 3338, 5, 46, 0, 0, 3338, 3339, 5, 198, 0, 0, 3339, 3340, 5, 357, 0, 0, 3340, 3341, 3, 824, 412, 0, 3341, 3342, 5, 80, 0, 0, 3342, 3352, 3, 830, 415, 0, 3343, 3344, 5, 102, 0, 0, 3344, 3349, 3, 270, 135, 0, 3345, 3346, 5, 33, 0, 0, 3346, 3348, 3, 270, 135, 0, 3347, 3345, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3353, 1, 0, 0, 0, 3351, 3349, 1, 0, 0, 0, 3352, 3343, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3355, 5, 202, 0, 0, 3355, 3356, 3, 260, 130, 0, 3356, 3357, 5, 2, 0, 0, 3357, 3358, 5, 3, 0, 0, 3358, 269, 1, 0, 0, 0, 3359, 3360, 3, 824, 412, 0, 3360, 3361, 5, 68, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3366, 3, 814, 407, 0, 3363, 3365, 3, 456, 228, 0, 3364, 3363, 1, 0, 0, 0, 3365, 3368, 1, 0, 0, 0, 3366, 3364, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3369, 1, 0, 0, 0, 3368, 3366, 1, 0, 0, 0, 3369, 3370, 5, 3, 0, 0, 3370, 271, 1, 0, 0, 0, 3371, 3372, 5, 138, 0, 0, 3372, 3373, 5, 198, 0, 0, 3373, 3374, 5, 357, 0, 0, 3374, 3380, 3, 824, 412, 0, 3375, 3377, 5, 193, 0, 0, 3376, 3378, 7, 14, 0, 0, 3377, 3376, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3381, 1, 0, 0, 0, 3379, 3381, 5, 186, 0, 0, 3380, 3375, 1, 0, 0, 0, 3380, 3379, 1, 0, 0, 0, 3381, 273, 1, 0, 0, 0, 3382, 3383, 5, 46, 0, 0, 3383, 3384, 5, 140, 0, 0, 3384, 3385, 3, 310, 155, 0, 3385, 3386, 5, 42, 0, 0, 3386, 3387, 5, 2, 0, 0, 3387, 3388, 3, 670, 335, 0, 3388, 3392, 5, 3, 0, 0, 3389, 3391, 3, 266, 133, 0, 3390, 3389, 1, 0, 0, 0, 3391, 3394, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3392, 3393, 1, 0, 0, 0, 3393, 275, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3395, 3397, 5, 46, 0, 0, 3396, 3398, 3, 360, 180, 0, 3397, 3396, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 5, 136, 0, 0, 3400, 3415, 3, 812, 406, 0, 3401, 3402, 3, 386, 193, 0, 3402, 3403, 3, 278, 139, 0, 3403, 3416, 1, 0, 0, 0, 3404, 3405, 5, 2, 0, 0, 3405, 3410, 3, 284, 142, 0, 3406, 3407, 5, 6, 0, 0, 3407, 3409, 3, 284, 142, 0, 3408, 3406, 1, 0, 0, 0, 3409, 3412, 1, 0, 0, 0, 3410, 3408, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3413, 1, 0, 0, 0, 3412, 3410, 1, 0, 0, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3416, 1, 0, 0, 0, 3415, 3401, 1, 0, 0, 0, 3415, 3404, 1, 0, 0, 0, 3416, 3474, 1, 0, 0, 0, 3417, 3418, 5, 46, 0, 0, 3418, 3419, 5, 278, 0, 0, 3419, 3420, 3, 408, 204, 0, 3420, 3421, 3, 278, 139, 0, 3421, 3474, 1, 0, 0, 0, 3422, 3423, 5, 46, 0, 0, 3423, 3424, 5, 360, 0, 0, 3424, 3425, 3, 310, 155, 0, 3425, 3443, 5, 36, 0, 0, 3426, 3428, 5, 2, 0, 0, 3427, 3429, 3, 638, 319, 0, 3428, 3427, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3444, 5, 3, 0, 0, 3431, 3432, 5, 196, 0, 0, 3432, 3440, 5, 2, 0, 0, 3433, 3437, 3, 814, 407, 0, 3434, 3436, 3, 456, 228, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3441, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3433, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3444, 5, 3, 0, 0, 3443, 3426, 1, 0, 0, 0, 3443, 3431, 1, 0, 0, 0, 3444, 3474, 1, 0, 0, 0, 3445, 3446, 5, 46, 0, 0, 3446, 3447, 5, 360, 0, 0, 3447, 3453, 3, 310, 155, 0, 3448, 3449, 5, 36, 0, 0, 3449, 3451, 5, 299, 0, 0, 3450, 3448, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3454, 3, 278, 139, 0, 3453, 3450, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3474, 1, 0, 0, 0, 3455, 3456, 5, 46, 0, 0, 3456, 3457, 5, 355, 0, 0, 3457, 3458, 5, 325, 0, 0, 3458, 3459, 7, 42, 0, 0, 3459, 3460, 3, 310, 155, 0, 3460, 3461, 3, 278, 139, 0, 3461, 3474, 1, 0, 0, 0, 3462, 3463, 5, 46, 0, 0, 3463, 3465, 5, 108, 0, 0, 3464, 3466, 3, 288, 144, 0, 3465, 3464, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3471, 3, 310, 155, 0, 3468, 3472, 3, 278, 139, 0, 3469, 3470, 5, 64, 0, 0, 3470, 3472, 3, 310, 155, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3472, 3474, 1, 0, 0, 0, 3473, 3395, 1, 0, 0, 0, 3473, 3417, 1, 0, 0, 0, 3473, 3422, 1, 0, 0, 0, 3473, 3445, 1, 0, 0, 0, 3473, 3455, 1, 0, 0, 0, 3473, 3462, 1, 0, 0, 0, 3474, 277, 1, 0, 0, 0, 3475, 3476, 5, 2, 0, 0, 3476, 3481, 3, 280, 140, 0, 3477, 3478, 5, 6, 0, 0, 3478, 3480, 3, 280, 140, 0, 3479, 3477, 1, 0, 0, 0, 3480, 3483, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3484, 3485, 5, 3, 0, 0, 3485, 279, 1, 0, 0, 0, 3486, 3489, 3, 830, 415, 0, 3487, 3488, 5, 10, 0, 0, 3488, 3490, 3, 282, 141, 0, 3489, 3487, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 281, 1, 0, 0, 0, 3491, 3498, 3, 382, 191, 0, 3492, 3498, 3, 840, 420, 0, 3493, 3498, 3, 724, 362, 0, 3494, 3498, 3, 196, 98, 0, 3495, 3498, 3, 814, 407, 0, 3496, 3498, 5, 407, 0, 0, 3497, 3491, 1, 0, 0, 0, 3497, 3492, 1, 0, 0, 0, 3497, 3493, 1, 0, 0, 0, 3497, 3494, 1, 0, 0, 0, 3497, 3495, 1, 0, 0, 0, 3497, 3496, 1, 0, 0, 0, 3498, 283, 1, 0, 0, 0, 3499, 3500, 3, 832, 416, 0, 3500, 3501, 5, 10, 0, 0, 3501, 3502, 3, 282, 141, 0, 3502, 285, 1, 0, 0, 0, 3503, 3504, 5, 138, 0, 0, 3504, 3505, 5, 360, 0, 0, 3505, 3506, 3, 310, 155, 0, 3506, 3507, 5, 133, 0, 0, 3507, 3509, 5, 450, 0, 0, 3508, 3510, 3, 288, 144, 0, 3509, 3508, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3514, 3, 814, 407, 0, 3512, 3513, 7, 43, 0, 0, 3513, 3515, 3, 814, 407, 0, 3514, 3512, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3526, 1, 0, 0, 0, 3516, 3517, 5, 138, 0, 0, 3517, 3518, 5, 360, 0, 0, 3518, 3519, 3, 310, 155, 0, 3519, 3520, 5, 309, 0, 0, 3520, 3521, 5, 450, 0, 0, 3521, 3522, 3, 814, 407, 0, 3522, 3523, 5, 94, 0, 0, 3523, 3524, 3, 814, 407, 0, 3524, 3526, 1, 0, 0, 0, 3525, 3503, 1, 0, 0, 0, 3525, 3516, 1, 0, 0, 0, 3526, 287, 1, 0, 0, 0, 3527, 3528, 5, 220, 0, 0, 3528, 3529, 5, 77, 0, 0, 3529, 3530, 5, 396, 0, 0, 3530, 289, 1, 0, 0, 0, 3531, 3532, 5, 46, 0, 0, 3532, 3533, 5, 278, 0, 0, 3533, 3534, 5, 156, 0, 0, 3534, 3536, 3, 310, 155, 0, 3535, 3537, 5, 53, 0, 0, 3536, 3535, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3539, 5, 62, 0, 0, 3539, 3540, 5, 360, 0, 0, 3540, 3541, 3, 648, 324, 0, 3541, 3544, 3, 164, 82, 0, 3542, 3543, 5, 206, 0, 0, 3543, 3545, 3, 310, 155, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3547, 5, 36, 0, 0, 3547, 3552, 3, 292, 146, 0, 3548, 3549, 5, 6, 0, 0, 3549, 3551, 3, 292, 146, 0, 3550, 3548, 1, 0, 0, 0, 3551, 3554, 1, 0, 0, 0, 3552, 3550, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 291, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3555, 3556, 5, 278, 0, 0, 3556, 3557, 5, 574, 0, 0, 3557, 3559, 3, 408, 204, 0, 3558, 3560, 3, 406, 203, 0, 3559, 3558, 1, 0, 0, 0, 3559, 3560, 1, 0, 0, 0, 3560, 3568, 1, 0, 0, 0, 3561, 3566, 5, 62, 0, 0, 3562, 3567, 5, 325, 0, 0, 3563, 3564, 5, 83, 0, 0, 3564, 3565, 5, 147, 0, 0, 3565, 3567, 3, 310, 155, 0, 3566, 3562, 1, 0, 0, 0, 3566, 3563, 1, 0, 0, 0, 3567, 3569, 1, 0, 0, 0, 3568, 3561, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3572, 5, 302, 0, 0, 3571, 3570, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3582, 1, 0, 0, 0, 3573, 3574, 5, 211, 0, 0, 3574, 3576, 5, 574, 0, 0, 3575, 3577, 3, 522, 261, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3582, 3, 376, 188, 0, 3579, 3580, 5, 345, 0, 0, 3580, 3582, 3, 648, 324, 0, 3581, 3555, 1, 0, 0, 0, 3581, 3573, 1, 0, 0, 0, 3581, 3579, 1, 0, 0, 0, 3582, 293, 1, 0, 0, 0, 3583, 3584, 5, 46, 0, 0, 3584, 3585, 5, 278, 0, 0, 3585, 3586, 5, 206, 0, 0, 3586, 3587, 3, 310, 155, 0, 3587, 3588, 3, 164, 82, 0, 3588, 295, 1, 0, 0, 0, 3589, 3590, 5, 138, 0, 0, 3590, 3591, 5, 278, 0, 0, 3591, 3592, 5, 206, 0, 0, 3592, 3593, 3, 310, 155, 0, 3593, 3612, 3, 164, 82, 0, 3594, 3595, 5, 133, 0, 0, 3595, 3600, 3, 292, 146, 0, 3596, 3597, 5, 6, 0, 0, 3597, 3599, 3, 292, 146, 0, 3598, 3596, 1, 0, 0, 0, 3599, 3602, 1, 0, 0, 0, 3600, 3598, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3613, 1, 0, 0, 0, 3602, 3600, 1, 0, 0, 0, 3603, 3604, 5, 191, 0, 0, 3604, 3609, 3, 298, 149, 0, 3605, 3606, 5, 6, 0, 0, 3606, 3608, 3, 298, 149, 0, 3607, 3605, 1, 0, 0, 0, 3608, 3611, 1, 0, 0, 0, 3609, 3607, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3594, 1, 0, 0, 0, 3612, 3603, 1, 0, 0, 0, 3613, 297, 1, 0, 0, 0, 3614, 3615, 7, 44, 0, 0, 3615, 3616, 5, 574, 0, 0, 3616, 3617, 3, 522, 261, 0, 3617, 299, 1, 0, 0, 0, 3618, 3619, 5, 301, 0, 0, 3619, 3620, 5, 281, 0, 0, 3620, 3621, 5, 147, 0, 0, 3621, 3622, 3, 822, 411, 0, 3622, 3623, 5, 94, 0, 0, 3623, 3624, 3, 820, 410, 0, 3624, 301, 1, 0, 0, 0, 3625, 3648, 5, 191, 0, 0, 3626, 3649, 5, 328, 0, 0, 3627, 3649, 5, 226, 0, 0, 3628, 3649, 5, 108, 0, 0, 3629, 3649, 5, 168, 0, 0, 3630, 3649, 5, 342, 0, 0, 3631, 3649, 5, 452, 0, 0, 3632, 3649, 5, 331, 0, 0, 3633, 3634, 5, 131, 0, 0, 3634, 3649, 5, 446, 0, 0, 3635, 3636, 5, 198, 0, 0, 3636, 3649, 5, 357, 0, 0, 3637, 3649, 5, 204, 0, 0, 3638, 3640, 5, 295, 0, 0, 3639, 3638, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3649, 5, 247, 0, 0, 3642, 3643, 5, 63, 0, 0, 3643, 3644, 5, 174, 0, 0, 3644, 3649, 5, 381, 0, 0, 3645, 3646, 5, 355, 0, 0, 3646, 3647, 5, 325, 0, 0, 3647, 3649, 7, 42, 0, 0, 3648, 3626, 1, 0, 0, 0, 3648, 3627, 1, 0, 0, 0, 3648, 3628, 1, 0, 0, 0, 3648, 3629, 1, 0, 0, 0, 3648, 3630, 1, 0, 0, 0, 3648, 3631, 1, 0, 0, 0, 3648, 3632, 1, 0, 0, 0, 3648, 3633, 1, 0, 0, 0, 3648, 3635, 1, 0, 0, 0, 3648, 3637, 1, 0, 0, 0, 3648, 3639, 1, 0, 0, 0, 3648, 3642, 1, 0, 0, 0, 3648, 3645, 1, 0, 0, 0, 3649, 3651, 1, 0, 0, 0, 3650, 3652, 3, 416, 208, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3655, 3, 788, 394, 0, 3654, 3656, 3, 88, 44, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3833, 1, 0, 0, 0, 3657, 3659, 5, 191, 0, 0, 3658, 3660, 5, 259, 0, 0, 3659, 3658, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3661, 1, 0, 0, 0, 3661, 3663, 5, 376, 0, 0, 3662, 3664, 3, 416, 208, 0, 3663, 3662, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3670, 3, 782, 391, 0, 3666, 3667, 5, 6, 0, 0, 3667, 3669, 3, 782, 391, 0, 3668, 3666, 1, 0, 0, 0, 3669, 3672, 1, 0, 0, 0, 3670, 3668, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3674, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3675, 3, 88, 44, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3833, 1, 0, 0, 0, 3676, 3678, 5, 191, 0, 0, 3677, 3679, 5, 63, 0, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3682, 5, 92, 0, 0, 3681, 3683, 3, 416, 208, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3686, 3, 766, 383, 0, 3685, 3687, 3, 88, 44, 0, 3686, 3685, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, 3833, 1, 0, 0, 0, 3688, 3689, 5, 191, 0, 0, 3689, 3691, 5, 323, 0, 0, 3690, 3692, 3, 416, 208, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 3, 768, 384, 0, 3694, 3696, 3, 88, 44, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 3833, 1, 0, 0, 0, 3697, 3698, 5, 191, 0, 0, 3698, 3700, 7, 45, 0, 0, 3699, 3701, 3, 416, 208, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3702, 3703, 3, 824, 412, 0, 3703, 3704, 5, 80, 0, 0, 3704, 3706, 3, 310, 155, 0, 3705, 3707, 3, 88, 44, 0, 3706, 3705, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3833, 1, 0, 0, 0, 3708, 3709, 5, 191, 0, 0, 3709, 3711, 7, 33, 0, 0, 3710, 3712, 3, 416, 208, 0, 3711, 3710, 1, 0, 0, 0, 3711, 3712, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3718, 3, 648, 324, 0, 3714, 3715, 5, 6, 0, 0, 3715, 3717, 3, 648, 324, 0, 3716, 3714, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3723, 3, 88, 44, 0, 3722, 3721, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3833, 1, 0, 0, 0, 3724, 3725, 5, 191, 0, 0, 3725, 3726, 5, 226, 0, 0, 3726, 3728, 5, 109, 0, 0, 3727, 3729, 3, 416, 208, 0, 3728, 3727, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3732, 3, 308, 154, 0, 3731, 3733, 3, 88, 44, 0, 3732, 3731, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3833, 1, 0, 0, 0, 3734, 3735, 5, 191, 0, 0, 3735, 3737, 5, 41, 0, 0, 3736, 3738, 3, 416, 208, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3740, 5, 2, 0, 0, 3740, 3741, 3, 648, 324, 0, 3741, 3742, 5, 36, 0, 0, 3742, 3743, 3, 648, 324, 0, 3743, 3745, 5, 3, 0, 0, 3744, 3746, 3, 88, 44, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3833, 1, 0, 0, 0, 3747, 3748, 5, 191, 0, 0, 3748, 3749, 5, 278, 0, 0, 3749, 3751, 7, 32, 0, 0, 3750, 3752, 3, 416, 208, 0, 3751, 3750, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3754, 3, 310, 155, 0, 3754, 3756, 3, 164, 82, 0, 3755, 3757, 3, 88, 44, 0, 3756, 3755, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3833, 1, 0, 0, 0, 3758, 3759, 5, 191, 0, 0, 3759, 3760, 5, 281, 0, 0, 3760, 3761, 5, 147, 0, 0, 3761, 3763, 3, 822, 411, 0, 3762, 3764, 3, 88, 44, 0, 3763, 3762, 1, 0, 0, 0, 3763, 3764, 1, 0, 0, 0, 3764, 3833, 1, 0, 0, 0, 3765, 3766, 5, 191, 0, 0, 3766, 3768, 5, 451, 0, 0, 3767, 3769, 3, 416, 208, 0, 3768, 3767, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3772, 3, 824, 412, 0, 3771, 3773, 3, 88, 44, 0, 3772, 3771, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3833, 1, 0, 0, 0, 3774, 3775, 5, 191, 0, 0, 3775, 3777, 5, 351, 0, 0, 3776, 3778, 3, 416, 208, 0, 3777, 3776, 1, 0, 0, 0, 3777, 3778, 1, 0, 0, 0, 3778, 3779, 1, 0, 0, 0, 3779, 3833, 3, 774, 387, 0, 3780, 3781, 5, 191, 0, 0, 3781, 3783, 5, 443, 0, 0, 3782, 3784, 3, 416, 208, 0, 3783, 3782, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3786, 5, 62, 0, 0, 3786, 3787, 3, 648, 324, 0, 3787, 3788, 5, 247, 0, 0, 3788, 3790, 3, 824, 412, 0, 3789, 3791, 3, 88, 44, 0, 3790, 3789, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3833, 1, 0, 0, 0, 3792, 3793, 5, 191, 0, 0, 3793, 3795, 7, 46, 0, 0, 3794, 3796, 3, 416, 208, 0, 3795, 3794, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 3833, 3, 822, 411, 0, 3798, 3799, 5, 191, 0, 0, 3799, 3800, 5, 99, 0, 0, 3800, 3802, 5, 257, 0, 0, 3801, 3803, 3, 416, 208, 0, 3802, 3801, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3807, 5, 62, 0, 0, 3805, 3808, 3, 820, 410, 0, 3806, 3808, 5, 99, 0, 0, 3807, 3805, 1, 0, 0, 0, 3807, 3806, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3810, 5, 331, 0, 0, 3810, 3833, 3, 824, 412, 0, 3811, 3812, 5, 191, 0, 0, 3812, 3814, 5, 175, 0, 0, 3813, 3815, 3, 416, 208, 0, 3814, 3813, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3830, 3, 792, 396, 0, 3817, 3819, 5, 105, 0, 0, 3818, 3817, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3821, 5, 2, 0, 0, 3821, 3826, 5, 209, 0, 0, 3822, 3823, 5, 6, 0, 0, 3823, 3825, 5, 209, 0, 0, 3824, 3822, 1, 0, 0, 0, 3825, 3828, 1, 0, 0, 0, 3826, 3824, 1, 0, 0, 0, 3826, 3827, 1, 0, 0, 0, 3827, 3829, 1, 0, 0, 0, 3828, 3826, 1, 0, 0, 0, 3829, 3831, 5, 3, 0, 0, 3830, 3818, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3833, 1, 0, 0, 0, 3832, 3625, 1, 0, 0, 0, 3832, 3657, 1, 0, 0, 0, 3832, 3676, 1, 0, 0, 0, 3832, 3688, 1, 0, 0, 0, 3832, 3697, 1, 0, 0, 0, 3832, 3708, 1, 0, 0, 0, 3832, 3724, 1, 0, 0, 0, 3832, 3734, 1, 0, 0, 0, 3832, 3747, 1, 0, 0, 0, 3832, 3758, 1, 0, 0, 0, 3832, 3765, 1, 0, 0, 0, 3832, 3774, 1, 0, 0, 0, 3832, 3780, 1, 0, 0, 0, 3832, 3792, 1, 0, 0, 0, 3832, 3798, 1, 0, 0, 0, 3832, 3811, 1, 0, 0, 0, 3833, 303, 1, 0, 0, 0, 3834, 3836, 5, 63, 0, 0, 3835, 3834, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3838, 5, 92, 0, 0, 3838, 3851, 3, 778, 389, 0, 3839, 3841, 5, 259, 0, 0, 3840, 3839, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3842, 1, 0, 0, 0, 3842, 3843, 5, 376, 0, 0, 3843, 3851, 3, 782, 391, 0, 3844, 3845, 7, 47, 0, 0, 3845, 3851, 3, 310, 155, 0, 3846, 3847, 5, 355, 0, 0, 3847, 3848, 5, 325, 0, 0, 3848, 3849, 7, 42, 0, 0, 3849, 3851, 3, 310, 155, 0, 3850, 3835, 1, 0, 0, 0, 3850, 3840, 1, 0, 0, 0, 3850, 3844, 1, 0, 0, 0, 3850, 3846, 1, 0, 0, 0, 3851, 305, 1, 0, 0, 0, 3852, 3853, 5, 198, 0, 0, 3853, 3869, 5, 357, 0, 0, 3854, 3855, 5, 131, 0, 0, 3855, 3869, 5, 446, 0, 0, 3856, 3869, 5, 204, 0, 0, 3857, 3869, 5, 452, 0, 0, 3858, 3869, 5, 331, 0, 0, 3859, 3869, 5, 318, 0, 0, 3860, 3869, 5, 451, 0, 0, 3861, 3862, 5, 63, 0, 0, 3862, 3863, 5, 174, 0, 0, 3863, 3869, 5, 381, 0, 0, 3864, 3866, 5, 295, 0, 0, 3865, 3864, 1, 0, 0, 0, 3865, 3866, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 3869, 5, 247, 0, 0, 3868, 3852, 1, 0, 0, 0, 3868, 3854, 1, 0, 0, 0, 3868, 3856, 1, 0, 0, 0, 3868, 3857, 1, 0, 0, 0, 3868, 3858, 1, 0, 0, 0, 3868, 3859, 1, 0, 0, 0, 3868, 3860, 1, 0, 0, 0, 3868, 3861, 1, 0, 0, 0, 3868, 3865, 1, 0, 0, 0, 3869, 3870, 1, 0, 0, 0, 3870, 3877, 3, 824, 412, 0, 3871, 3872, 5, 323, 0, 0, 3872, 3877, 3, 794, 397, 0, 3873, 3874, 5, 175, 0, 0, 3874, 3877, 3, 792, 396, 0, 3875, 3877, 3, 170, 85, 0, 3876, 3868, 1, 0, 0, 0, 3876, 3871, 1, 0, 0, 0, 3876, 3873, 1, 0, 0, 0, 3876, 3875, 1, 0, 0, 0, 3877, 307, 1, 0, 0, 0, 3878, 3883, 3, 310, 155, 0, 3879, 3880, 5, 6, 0, 0, 3880, 3882, 3, 310, 155, 0, 3881, 3879, 1, 0, 0, 0, 3882, 3885, 1, 0, 0, 0, 3883, 3881, 1, 0, 0, 0, 3883, 3884, 1, 0, 0, 0, 3884, 309, 1, 0, 0, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3888, 3, 824, 412, 0, 3887, 3889, 3, 312, 156, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 311, 1, 0, 0, 0, 3890, 3891, 5, 11, 0, 0, 3891, 3893, 3, 830, 415, 0, 3892, 3890, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3892, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 313, 1, 0, 0, 0, 3896, 3898, 5, 358, 0, 0, 3897, 3899, 5, 92, 0, 0, 3898, 3897, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3905, 3, 316, 158, 0, 3901, 3902, 5, 6, 0, 0, 3902, 3904, 3, 316, 158, 0, 3903, 3901, 1, 0, 0, 0, 3904, 3907, 1, 0, 0, 0, 3905, 3903, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3910, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3908, 3909, 7, 48, 0, 0, 3909, 3911, 5, 219, 0, 0, 3910, 3908, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3913, 1, 0, 0, 0, 3912, 3914, 3, 88, 44, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 315, 1, 0, 0, 0, 3915, 3917, 5, 81, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3920, 3, 778, 389, 0, 3919, 3921, 5, 9, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 317, 1, 0, 0, 0, 3922, 3923, 5, 159, 0, 0, 3923, 3982, 5, 80, 0, 0, 3924, 3983, 3, 304, 152, 0, 3925, 3983, 3, 306, 153, 0, 3926, 3927, 5, 44, 0, 0, 3927, 3929, 3, 824, 412, 0, 3928, 3930, 3, 312, 156, 0, 3929, 3928, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 3932, 5, 11, 0, 0, 3932, 3933, 3, 804, 402, 0, 3933, 3983, 1, 0, 0, 0, 3934, 3935, 7, 33, 0, 0, 3935, 3983, 3, 648, 324, 0, 3936, 3937, 5, 136, 0, 0, 3937, 3983, 3, 388, 194, 0, 3938, 3939, 5, 211, 0, 0, 3939, 3983, 3, 376, 188, 0, 3940, 3941, 5, 278, 0, 0, 3941, 3983, 3, 410, 205, 0, 3942, 3943, 5, 45, 0, 0, 3943, 3944, 3, 824, 412, 0, 3944, 3950, 5, 80, 0, 0, 3945, 3951, 3, 778, 389, 0, 3946, 3948, 5, 189, 0, 0, 3947, 3946, 1, 0, 0, 0, 3947, 3948, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3951, 3, 310, 155, 0, 3950, 3945, 1, 0, 0, 0, 3950, 3947, 1, 0, 0, 0, 3951, 3983, 1, 0, 0, 0, 3952, 3953, 7, 45, 0, 0, 3953, 3954, 3, 824, 412, 0, 3954, 3955, 5, 80, 0, 0, 3955, 3956, 3, 310, 155, 0, 3956, 3983, 1, 0, 0, 0, 3957, 3958, 5, 296, 0, 0, 3958, 3983, 3, 372, 186, 0, 3959, 3960, 5, 442, 0, 0, 3960, 3983, 3, 368, 184, 0, 3961, 3962, 5, 443, 0, 0, 3962, 3963, 5, 62, 0, 0, 3963, 3964, 3, 648, 324, 0, 3964, 3965, 5, 247, 0, 0, 3965, 3966, 3, 824, 412, 0, 3966, 3983, 1, 0, 0, 0, 3967, 3968, 5, 278, 0, 0, 3968, 3969, 7, 32, 0, 0, 3969, 3970, 3, 310, 155, 0, 3970, 3971, 3, 164, 82, 0, 3971, 3983, 1, 0, 0, 0, 3972, 3973, 5, 248, 0, 0, 3973, 3974, 5, 274, 0, 0, 3974, 3983, 3, 196, 98, 0, 3975, 3976, 5, 41, 0, 0, 3976, 3977, 5, 2, 0, 0, 3977, 3978, 3, 648, 324, 0, 3978, 3979, 5, 36, 0, 0, 3979, 3980, 3, 648, 324, 0, 3980, 3981, 5, 3, 0, 0, 3981, 3983, 1, 0, 0, 0, 3982, 3924, 1, 0, 0, 0, 3982, 3925, 1, 0, 0, 0, 3982, 3926, 1, 0, 0, 0, 3982, 3934, 1, 0, 0, 0, 3982, 3936, 1, 0, 0, 0, 3982, 3938, 1, 0, 0, 0, 3982, 3940, 1, 0, 0, 0, 3982, 3942, 1, 0, 0, 0, 3982, 3952, 1, 0, 0, 0, 3982, 3957, 1, 0, 0, 0, 3982, 3959, 1, 0, 0, 0, 3982, 3961, 1, 0, 0, 0, 3982, 3967, 1, 0, 0, 0, 3982, 3972, 1, 0, 0, 0, 3982, 3975, 1, 0, 0, 0, 3983, 3984, 1, 0, 0, 0, 3984, 3987, 5, 116, 0, 0, 3985, 3988, 3, 814, 407, 0, 3986, 3988, 5, 78, 0, 0, 3987, 3985, 1, 0, 0, 0, 3987, 3986, 1, 0, 0, 0, 3988, 319, 1, 0, 0, 0, 3989, 3990, 5, 327, 0, 0, 3990, 3993, 5, 246, 0, 0, 3991, 3992, 5, 62, 0, 0, 3992, 3994, 3, 58, 29, 0, 3993, 3991, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 4013, 5, 80, 0, 0, 3996, 3997, 7, 33, 0, 0, 3997, 4014, 3, 648, 324, 0, 3998, 3999, 5, 136, 0, 0, 3999, 4014, 3, 388, 194, 0, 4000, 4001, 5, 44, 0, 0, 4001, 4014, 3, 804, 402, 0, 4002, 4003, 5, 211, 0, 0, 4003, 4014, 3, 376, 188, 0, 4004, 4005, 5, 248, 0, 0, 4005, 4006, 5, 274, 0, 0, 4006, 4014, 3, 196, 98, 0, 4007, 4008, 5, 296, 0, 0, 4008, 4014, 3, 372, 186, 0, 4009, 4010, 5, 442, 0, 0, 4010, 4014, 3, 368, 184, 0, 4011, 4014, 3, 304, 152, 0, 4012, 4014, 3, 306, 153, 0, 4013, 3996, 1, 0, 0, 0, 4013, 3998, 1, 0, 0, 0, 4013, 4000, 1, 0, 0, 0, 4013, 4002, 1, 0, 0, 0, 4013, 4004, 1, 0, 0, 0, 4013, 4007, 1, 0, 0, 0, 4013, 4009, 1, 0, 0, 0, 4013, 4011, 1, 0, 0, 0, 4013, 4012, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 4018, 5, 116, 0, 0, 4016, 4019, 3, 814, 407, 0, 4017, 4019, 5, 78, 0, 0, 4018, 4016, 1, 0, 0, 0, 4018, 4017, 1, 0, 0, 0, 4019, 321, 1, 0, 0, 0, 4020, 4021, 7, 49, 0, 0, 4021, 4022, 3, 324, 162, 0, 4022, 323, 1, 0, 0, 0, 4023, 4025, 7, 50, 0, 0, 4024, 4023, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 1, 0, 0, 0, 4026, 4028, 3, 326, 163, 0, 4027, 4026, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4067, 3, 824, 412, 0, 4030, 4032, 7, 51, 0, 0, 4031, 4030, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4035, 3, 818, 409, 0, 4034, 4036, 3, 326, 163, 0, 4035, 4034, 1, 0, 0, 0, 4035, 4036, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 3, 824, 412, 0, 4038, 4067, 1, 0, 0, 0, 4039, 4041, 5, 210, 0, 0, 4040, 4042, 3, 818, 409, 0, 4041, 4040, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 1, 0, 0, 0, 4043, 4045, 3, 326, 163, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4067, 3, 824, 412, 0, 4047, 4049, 5, 210, 0, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4052, 5, 30, 0, 0, 4051, 4053, 3, 326, 163, 0, 4052, 4051, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4054, 1, 0, 0, 0, 4054, 4067, 3, 824, 412, 0, 4055, 4060, 5, 144, 0, 0, 4056, 4058, 5, 30, 0, 0, 4057, 4056, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4061, 1, 0, 0, 0, 4059, 4061, 3, 818, 409, 0, 4060, 4057, 1, 0, 0, 0, 4060, 4059, 1, 0, 0, 0, 4061, 4063, 1, 0, 0, 0, 4062, 4064, 3, 326, 163, 0, 4063, 4062, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4065, 1, 0, 0, 0, 4065, 4067, 3, 824, 412, 0, 4066, 4024, 1, 0, 0, 0, 4066, 4031, 1, 0, 0, 0, 4066, 4039, 1, 0, 0, 0, 4066, 4048, 1, 0, 0, 0, 4066, 4055, 1, 0, 0, 0, 4067, 325, 1, 0, 0, 0, 4068, 4069, 7, 52, 0, 0, 4069, 327, 1, 0, 0, 0, 4070, 4071, 5, 65, 0, 0, 4071, 4072, 3, 332, 166, 0, 4072, 4073, 5, 80, 0, 0, 4073, 4074, 3, 338, 169, 0, 4074, 4075, 5, 94, 0, 0, 4075, 4079, 3, 340, 170, 0, 4076, 4077, 5, 105, 0, 0, 4077, 4078, 5, 65, 0, 0, 4078, 4080, 5, 279, 0, 0, 4079, 4076, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 329, 1, 0, 0, 0, 4081, 4085, 5, 317, 0, 0, 4082, 4083, 5, 65, 0, 0, 4083, 4084, 5, 279, 0, 0, 4084, 4086, 5, 62, 0, 0, 4085, 4082, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 4087, 1, 0, 0, 0, 4087, 4088, 3, 332, 166, 0, 4088, 4089, 5, 80, 0, 0, 4089, 4090, 3, 338, 169, 0, 4090, 4091, 5, 64, 0, 0, 4091, 4093, 3, 340, 170, 0, 4092, 4094, 3, 88, 44, 0, 4093, 4092, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 331, 1, 0, 0, 0, 4095, 4100, 3, 336, 168, 0, 4096, 4097, 5, 6, 0, 0, 4097, 4099, 3, 336, 168, 0, 4098, 4096, 1, 0, 0, 0, 4099, 4102, 1, 0, 0, 0, 4100, 4098, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4119, 1, 0, 0, 0, 4102, 4100, 1, 0, 0, 0, 4103, 4105, 5, 30, 0, 0, 4104, 4106, 5, 294, 0, 0, 4105, 4104, 1, 0, 0, 0, 4105, 4106, 1, 0, 0, 0, 4106, 4108, 1, 0, 0, 0, 4107, 4109, 3, 138, 69, 0, 4108, 4107, 1, 0, 0, 0, 4108, 4109, 1, 0, 0, 0, 4109, 4119, 1, 0, 0, 0, 4110, 4115, 3, 334, 167, 0, 4111, 4112, 5, 6, 0, 0, 4112, 4114, 3, 334, 167, 0, 4113, 4111, 1, 0, 0, 0, 4114, 4117, 1, 0, 0, 0, 4115, 4113, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4119, 1, 0, 0, 0, 4117, 4115, 1, 0, 0, 0, 4118, 4095, 1, 0, 0, 0, 4118, 4103, 1, 0, 0, 0, 4118, 4110, 1, 0, 0, 0, 4119, 333, 1, 0, 0, 0, 4120, 4121, 7, 53, 0, 0, 4121, 335, 1, 0, 0, 0, 4122, 4127, 5, 88, 0, 0, 4123, 4127, 5, 86, 0, 0, 4124, 4127, 5, 46, 0, 0, 4125, 4127, 3, 824, 412, 0, 4126, 4122, 1, 0, 0, 0, 4126, 4123, 1, 0, 0, 0, 4126, 4124, 1, 0, 0, 0, 4126, 4125, 1, 0, 0, 0, 4127, 4129, 1, 0, 0, 0, 4128, 4130, 3, 138, 69, 0, 4129, 4128, 1, 0, 0, 0, 4129, 4130, 1, 0, 0, 0, 4130, 337, 1, 0, 0, 0, 4131, 4132, 5, 92, 0, 0, 4132, 4177, 3, 766, 383, 0, 4133, 4135, 5, 328, 0, 0, 4134, 4133, 1, 0, 0, 0, 4134, 4135, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4177, 3, 764, 382, 0, 4137, 4141, 5, 63, 0, 0, 4138, 4139, 5, 174, 0, 0, 4139, 4142, 5, 381, 0, 0, 4140, 4142, 5, 331, 0, 0, 4141, 4138, 1, 0, 0, 0, 4141, 4140, 1, 0, 0, 0, 4142, 4145, 1, 0, 0, 0, 4143, 4145, 5, 247, 0, 0, 4144, 4137, 1, 0, 0, 0, 4144, 4143, 1, 0, 0, 0, 4145, 4146, 1, 0, 0, 0, 4146, 4177, 3, 788, 394, 0, 4147, 4148, 5, 211, 0, 0, 4148, 4177, 3, 374, 187, 0, 4149, 4150, 5, 296, 0, 0, 4150, 4177, 3, 370, 185, 0, 4151, 4152, 5, 442, 0, 0, 4152, 4177, 3, 366, 183, 0, 4153, 4154, 5, 175, 0, 0, 4154, 4177, 3, 770, 385, 0, 4155, 4156, 7, 33, 0, 0, 4156, 4177, 3, 308, 154, 0, 4157, 4158, 5, 248, 0, 0, 4158, 4159, 5, 274, 0, 0, 4159, 4164, 3, 196, 98, 0, 4160, 4161, 5, 6, 0, 0, 4161, 4163, 3, 196, 98, 0, 4162, 4160, 1, 0, 0, 0, 4163, 4166, 1, 0, 0, 0, 4164, 4162, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4177, 1, 0, 0, 0, 4166, 4164, 1, 0, 0, 0, 4167, 4168, 5, 323, 0, 0, 4168, 4177, 3, 768, 384, 0, 4169, 4170, 5, 351, 0, 0, 4170, 4177, 3, 786, 393, 0, 4171, 4172, 5, 30, 0, 0, 4172, 4173, 7, 54, 0, 0, 4173, 4174, 5, 68, 0, 0, 4174, 4175, 5, 323, 0, 0, 4175, 4177, 3, 768, 384, 0, 4176, 4131, 1, 0, 0, 0, 4176, 4134, 1, 0, 0, 0, 4176, 4144, 1, 0, 0, 0, 4176, 4147, 1, 0, 0, 0, 4176, 4149, 1, 0, 0, 0, 4176, 4151, 1, 0, 0, 0, 4176, 4153, 1, 0, 0, 0, 4176, 4155, 1, 0, 0, 0, 4176, 4157, 1, 0, 0, 0, 4176, 4167, 1, 0, 0, 0, 4176, 4169, 1, 0, 0, 0, 4176, 4171, 1, 0, 0, 0, 4177, 339, 1, 0, 0, 0, 4178, 4180, 5, 66, 0, 0, 4179, 4178, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4182, 3, 820, 410, 0, 4182, 4190, 1, 0, 0, 0, 4183, 4185, 5, 6, 0, 0, 4184, 4186, 5, 66, 0, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4189, 3, 820, 410, 0, 4188, 4183, 1, 0, 0, 0, 4189, 4192, 1, 0, 0, 0, 4190, 4188, 1, 0, 0, 0, 4190, 4191, 1, 0, 0, 0, 4191, 341, 1, 0, 0, 0, 4192, 4190, 1, 0, 0, 0, 4193, 4194, 5, 65, 0, 0, 4194, 4199, 3, 336, 168, 0, 4195, 4196, 5, 6, 0, 0, 4196, 4198, 3, 336, 168, 0, 4197, 4195, 1, 0, 0, 0, 4198, 4201, 1, 0, 0, 0, 4199, 4197, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4202, 1, 0, 0, 0, 4201, 4199, 1, 0, 0, 0, 4202, 4203, 5, 94, 0, 0, 4203, 4207, 3, 822, 411, 0, 4204, 4205, 5, 105, 0, 0, 4205, 4206, 5, 134, 0, 0, 4206, 4208, 5, 279, 0, 0, 4207, 4204, 1, 0, 0, 0, 4207, 4208, 1, 0, 0, 0, 4208, 4212, 1, 0, 0, 0, 4209, 4210, 5, 214, 0, 0, 4210, 4211, 5, 147, 0, 0, 4211, 4213, 3, 820, 410, 0, 4212, 4209, 1, 0, 0, 0, 4212, 4213, 1, 0, 0, 0, 4213, 343, 1, 0, 0, 0, 4214, 4218, 5, 317, 0, 0, 4215, 4216, 5, 134, 0, 0, 4216, 4217, 5, 279, 0, 0, 4217, 4219, 5, 62, 0, 0, 4218, 4215, 1, 0, 0, 0, 4218, 4219, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4225, 3, 336, 168, 0, 4221, 4222, 5, 6, 0, 0, 4222, 4224, 3, 336, 168, 0, 4223, 4221, 1, 0, 0, 0, 4224, 4227, 1, 0, 0, 0, 4225, 4223, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4225, 1, 0, 0, 0, 4228, 4229, 5, 64, 0, 0, 4229, 4233, 3, 822, 411, 0, 4230, 4231, 5, 214, 0, 0, 4231, 4232, 5, 147, 0, 0, 4232, 4234, 3, 820, 410, 0, 4233, 4230, 1, 0, 0, 0, 4233, 4234, 1, 0, 0, 0, 4234, 4236, 1, 0, 0, 0, 4235, 4237, 3, 88, 44, 0, 4236, 4235, 1, 0, 0, 0, 4236, 4237, 1, 0, 0, 0, 4237, 345, 1, 0, 0, 0, 4238, 4239, 5, 138, 0, 0, 4239, 4240, 5, 53, 0, 0, 4240, 4249, 5, 294, 0, 0, 4241, 4242, 5, 68, 0, 0, 4242, 4243, 5, 323, 0, 0, 4243, 4248, 3, 768, 384, 0, 4244, 4245, 5, 62, 0, 0, 4245, 4246, 7, 2, 0, 0, 4246, 4248, 3, 822, 411, 0, 4247, 4241, 1, 0, 0, 0, 4247, 4244, 1, 0, 0, 0, 4248, 4251, 1, 0, 0, 0, 4249, 4247, 1, 0, 0, 0, 4249, 4250, 1, 0, 0, 0, 4250, 4252, 1, 0, 0, 0, 4251, 4249, 1, 0, 0, 0, 4252, 4253, 3, 348, 174, 0, 4253, 347, 1, 0, 0, 0, 4254, 4255, 5, 65, 0, 0, 4255, 4256, 3, 332, 166, 0, 4256, 4257, 5, 80, 0, 0, 4257, 4258, 3, 350, 175, 0, 4258, 4259, 5, 94, 0, 0, 4259, 4263, 3, 340, 170, 0, 4260, 4261, 5, 105, 0, 0, 4261, 4262, 5, 65, 0, 0, 4262, 4264, 5, 279, 0, 0, 4263, 4260, 1, 0, 0, 0, 4263, 4264, 1, 0, 0, 0, 4264, 4280, 1, 0, 0, 0, 4265, 4269, 5, 317, 0, 0, 4266, 4267, 5, 65, 0, 0, 4267, 4268, 5, 279, 0, 0, 4268, 4270, 5, 62, 0, 0, 4269, 4266, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4271, 1, 0, 0, 0, 4271, 4272, 3, 332, 166, 0, 4272, 4273, 5, 80, 0, 0, 4273, 4274, 3, 350, 175, 0, 4274, 4275, 5, 64, 0, 0, 4275, 4277, 3, 340, 170, 0, 4276, 4278, 3, 88, 44, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4280, 1, 0, 0, 0, 4279, 4254, 1, 0, 0, 0, 4279, 4265, 1, 0, 0, 0, 4280, 349, 1, 0, 0, 0, 4281, 4282, 7, 55, 0, 0, 4282, 351, 1, 0, 0, 0, 4283, 4285, 5, 46, 0, 0, 4284, 4286, 5, 98, 0, 0, 4285, 4284, 1, 0, 0, 0, 4285, 4286, 1, 0, 0, 0, 4286, 4287, 1, 0, 0, 0, 4287, 4289, 5, 226, 0, 0, 4288, 4290, 5, 109, 0, 0, 4289, 4288, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4292, 1, 0, 0, 0, 4291, 4293, 3, 288, 144, 0, 4292, 4291, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4295, 1, 0, 0, 0, 4294, 4296, 3, 824, 412, 0, 4295, 4294, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4298, 5, 80, 0, 0, 4298, 4300, 3, 620, 310, 0, 4299, 4301, 3, 164, 82, 0, 4300, 4299, 1, 0, 0, 0, 4300, 4301, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 4305, 3, 354, 177, 0, 4303, 4304, 5, 441, 0, 0, 4304, 4306, 3, 354, 177, 0, 4305, 4303, 1, 0, 0, 0, 4305, 4306, 1, 0, 0, 0, 4306, 4312, 1, 0, 0, 0, 4307, 4309, 5, 273, 0, 0, 4308, 4310, 5, 77, 0, 0, 4309, 4308, 1, 0, 0, 0, 4309, 4310, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4313, 5, 56, 0, 0, 4312, 4307, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4315, 1, 0, 0, 0, 4314, 4316, 3, 94, 47, 0, 4315, 4314, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 4318, 1, 0, 0, 0, 4317, 4319, 3, 170, 85, 0, 4318, 4317, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4321, 1, 0, 0, 0, 4320, 4322, 3, 634, 317, 0, 4321, 4320, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 353, 1, 0, 0, 0, 4323, 4324, 5, 2, 0, 0, 4324, 4329, 3, 356, 178, 0, 4325, 4326, 5, 6, 0, 0, 4326, 4328, 3, 356, 178, 0, 4327, 4325, 1, 0, 0, 0, 4328, 4331, 1, 0, 0, 0, 4329, 4327, 1, 0, 0, 0, 4329, 4330, 1, 0, 0, 0, 4330, 4332, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4332, 4333, 5, 3, 0, 0, 4333, 355, 1, 0, 0, 0, 4334, 4341, 3, 804, 402, 0, 4335, 4341, 3, 684, 342, 0, 4336, 4337, 5, 2, 0, 0, 4337, 4338, 3, 670, 335, 0, 4338, 4339, 5, 3, 0, 0, 4339, 4341, 1, 0, 0, 0, 4340, 4334, 1, 0, 0, 0, 4340, 4335, 1, 0, 0, 0, 4340, 4336, 1, 0, 0, 0, 4341, 4343, 1, 0, 0, 0, 4342, 4344, 3, 90, 45, 0, 4343, 4342, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 4351, 1, 0, 0, 0, 4345, 4347, 3, 310, 155, 0, 4346, 4345, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4352, 1, 0, 0, 0, 4348, 4349, 3, 310, 155, 0, 4349, 4350, 3, 92, 46, 0, 4350, 4352, 1, 0, 0, 0, 4351, 4346, 1, 0, 0, 0, 4351, 4348, 1, 0, 0, 0, 4352, 4354, 1, 0, 0, 0, 4353, 4355, 7, 56, 0, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4358, 1, 0, 0, 0, 4356, 4357, 5, 273, 0, 0, 4357, 4359, 7, 57, 0, 0, 4358, 4356, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 357, 1, 0, 0, 0, 4360, 4362, 5, 46, 0, 0, 4361, 4363, 3, 360, 180, 0, 4362, 4361, 1, 0, 0, 0, 4362, 4363, 1, 0, 0, 0, 4363, 4368, 1, 0, 0, 0, 4364, 4365, 5, 211, 0, 0, 4365, 4369, 3, 810, 405, 0, 4366, 4367, 5, 296, 0, 0, 4367, 4369, 3, 802, 401, 0, 4368, 4364, 1, 0, 0, 0, 4368, 4366, 1, 0, 0, 0, 4369, 4370, 1, 0, 0, 0, 4370, 4379, 5, 2, 0, 0, 4371, 4376, 3, 384, 192, 0, 4372, 4373, 5, 6, 0, 0, 4373, 4375, 3, 384, 192, 0, 4374, 4372, 1, 0, 0, 0, 4375, 4378, 1, 0, 0, 0, 4376, 4374, 1, 0, 0, 0, 4376, 4377, 1, 0, 0, 0, 4377, 4380, 1, 0, 0, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4371, 1, 0, 0, 0, 4379, 4380, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 4382, 5, 3, 0, 0, 4382, 4399, 1, 0, 0, 0, 4383, 4397, 5, 316, 0, 0, 4384, 4398, 3, 382, 191, 0, 4385, 4386, 5, 92, 0, 0, 4386, 4387, 5, 2, 0, 0, 4387, 4392, 3, 396, 198, 0, 4388, 4389, 5, 6, 0, 0, 4389, 4391, 3, 396, 198, 0, 4390, 4388, 1, 0, 0, 0, 4391, 4394, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4392, 4393, 1, 0, 0, 0, 4393, 4395, 1, 0, 0, 0, 4394, 4392, 1, 0, 0, 0, 4395, 4396, 5, 3, 0, 0, 4396, 4398, 1, 0, 0, 0, 4397, 4384, 1, 0, 0, 0, 4397, 4385, 1, 0, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4383, 1, 0, 0, 0, 4399, 4400, 1, 0, 0, 0, 4400, 4402, 1, 0, 0, 0, 4401, 4403, 3, 392, 196, 0, 4402, 4401, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4402, 1, 0, 0, 0, 4404, 4405, 1, 0, 0, 0, 4405, 4411, 1, 0, 0, 0, 4406, 4407, 5, 105, 0, 0, 4407, 4408, 5, 2, 0, 0, 4408, 4409, 3, 788, 394, 0, 4409, 4410, 5, 3, 0, 0, 4410, 4412, 1, 0, 0, 0, 4411, 4406, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 359, 1, 0, 0, 0, 4413, 4414, 5, 82, 0, 0, 4414, 4415, 5, 311, 0, 0, 4415, 361, 1, 0, 0, 0, 4416, 4418, 5, 2, 0, 0, 4417, 4419, 3, 364, 182, 0, 4418, 4417, 1, 0, 0, 0, 4418, 4419, 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 4421, 5, 3, 0, 0, 4421, 363, 1, 0, 0, 0, 4422, 4427, 3, 378, 189, 0, 4423, 4424, 5, 6, 0, 0, 4424, 4426, 3, 378, 189, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4429, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 365, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4435, 3, 368, 184, 0, 4431, 4432, 5, 6, 0, 0, 4432, 4434, 3, 368, 184, 0, 4433, 4431, 1, 0, 0, 0, 4434, 4437, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4435, 4436, 1, 0, 0, 0, 4436, 367, 1, 0, 0, 0, 4437, 4435, 1, 0, 0, 0, 4438, 4439, 3, 798, 399, 0, 4439, 4440, 3, 362, 181, 0, 4440, 4444, 1, 0, 0, 0, 4441, 4444, 3, 838, 419, 0, 4442, 4444, 3, 784, 392, 0, 4443, 4438, 1, 0, 0, 0, 4443, 4441, 1, 0, 0, 0, 4443, 4442, 1, 0, 0, 0, 4444, 369, 1, 0, 0, 0, 4445, 4450, 3, 372, 186, 0, 4446, 4447, 5, 6, 0, 0, 4447, 4449, 3, 372, 186, 0, 4448, 4446, 1, 0, 0, 0, 4449, 4452, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4451, 1, 0, 0, 0, 4451, 371, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4453, 4454, 3, 800, 400, 0, 4454, 4455, 3, 362, 181, 0, 4455, 4459, 1, 0, 0, 0, 4456, 4459, 3, 838, 419, 0, 4457, 4459, 3, 784, 392, 0, 4458, 4453, 1, 0, 0, 0, 4458, 4456, 1, 0, 0, 0, 4458, 4457, 1, 0, 0, 0, 4459, 373, 1, 0, 0, 0, 4460, 4465, 3, 376, 188, 0, 4461, 4462, 5, 6, 0, 0, 4462, 4464, 3, 376, 188, 0, 4463, 4461, 1, 0, 0, 0, 4464, 4467, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 375, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4468, 4469, 3, 812, 406, 0, 4469, 4470, 3, 362, 181, 0, 4470, 4474, 1, 0, 0, 0, 4471, 4474, 3, 838, 419, 0, 4472, 4474, 3, 784, 392, 0, 4473, 4468, 1, 0, 0, 0, 4473, 4471, 1, 0, 0, 0, 4473, 4472, 1, 0, 0, 0, 4474, 377, 1, 0, 0, 0, 4475, 4477, 3, 380, 190, 0, 4476, 4478, 3, 826, 413, 0, 4477, 4476, 1, 0, 0, 0, 4477, 4478, 1, 0, 0, 0, 4478, 4484, 1, 0, 0, 0, 4479, 4481, 3, 826, 413, 0, 4480, 4482, 3, 380, 190, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4484, 1, 0, 0, 0, 4483, 4475, 1, 0, 0, 0, 4483, 4479, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 4485, 1, 0, 0, 0, 4485, 4486, 3, 382, 191, 0, 4486, 379, 1, 0, 0, 0, 4487, 4489, 5, 68, 0, 0, 4488, 4490, 5, 453, 0, 0, 4489, 4488, 1, 0, 0, 0, 4489, 4490, 1, 0, 0, 0, 4490, 4495, 1, 0, 0, 0, 4491, 4495, 5, 453, 0, 0, 4492, 4495, 5, 400, 0, 0, 4493, 4495, 5, 101, 0, 0, 4494, 4487, 1, 0, 0, 0, 4494, 4491, 1, 0, 0, 0, 4494, 4492, 1, 0, 0, 0, 4494, 4493, 1, 0, 0, 0, 4495, 381, 1, 0, 0, 0, 4496, 4506, 3, 648, 324, 0, 4497, 4499, 5, 415, 0, 0, 4498, 4497, 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 4500, 1, 0, 0, 0, 4500, 4501, 3, 826, 413, 0, 4501, 4502, 3, 312, 156, 0, 4502, 4503, 5, 27, 0, 0, 4503, 4504, 5, 360, 0, 0, 4504, 4506, 1, 0, 0, 0, 4505, 4496, 1, 0, 0, 0, 4505, 4498, 1, 0, 0, 0, 4506, 383, 1, 0, 0, 0, 4507, 4510, 3, 378, 189, 0, 4508, 4509, 7, 58, 0, 0, 4509, 4511, 3, 670, 335, 0, 4510, 4508, 1, 0, 0, 0, 4510, 4511, 1, 0, 0, 0, 4511, 385, 1, 0, 0, 0, 4512, 4522, 5, 2, 0, 0, 4513, 4523, 5, 9, 0, 0, 4514, 4516, 3, 364, 182, 0, 4515, 4514, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4520, 1, 0, 0, 0, 4517, 4518, 5, 83, 0, 0, 4518, 4519, 5, 147, 0, 0, 4519, 4521, 3, 364, 182, 0, 4520, 4517, 1, 0, 0, 0, 4520, 4521, 1, 0, 0, 0, 4521, 4523, 1, 0, 0, 0, 4522, 4513, 1, 0, 0, 0, 4522, 4515, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 4525, 5, 3, 0, 0, 4525, 387, 1, 0, 0, 0, 4526, 4527, 3, 812, 406, 0, 4527, 4528, 3, 386, 193, 0, 4528, 389, 1, 0, 0, 0, 4529, 4530, 5, 316, 0, 0, 4530, 4533, 5, 78, 0, 0, 4531, 4533, 5, 149, 0, 0, 4532, 4529, 1, 0, 0, 0, 4532, 4531, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 4535, 5, 80, 0, 0, 4535, 4536, 5, 78, 0, 0, 4536, 4559, 5, 458, 0, 0, 4537, 4559, 5, 346, 0, 0, 4538, 4559, 5, 222, 0, 0, 4539, 4559, 5, 338, 0, 0, 4540, 4559, 5, 377, 0, 0, 4541, 4543, 5, 205, 0, 0, 4542, 4541, 1, 0, 0, 0, 4542, 4543, 1, 0, 0, 0, 4543, 4544, 1, 0, 0, 0, 4544, 4545, 5, 327, 0, 0, 4545, 4559, 7, 59, 0, 0, 4546, 4559, 5, 250, 0, 0, 4547, 4548, 5, 77, 0, 0, 4548, 4559, 5, 250, 0, 0, 4549, 4550, 7, 60, 0, 0, 4550, 4559, 3, 196, 98, 0, 4551, 4552, 5, 459, 0, 0, 4552, 4559, 3, 310, 155, 0, 4553, 4554, 5, 333, 0, 0, 4554, 4559, 3, 42, 21, 0, 4555, 4559, 3, 60, 30, 0, 4556, 4557, 5, 460, 0, 0, 4557, 4559, 3, 824, 412, 0, 4558, 4532, 1, 0, 0, 0, 4558, 4537, 1, 0, 0, 0, 4558, 4538, 1, 0, 0, 0, 4558, 4539, 1, 0, 0, 0, 4558, 4540, 1, 0, 0, 0, 4558, 4542, 1, 0, 0, 0, 4558, 4546, 1, 0, 0, 0, 4558, 4547, 1, 0, 0, 0, 4558, 4549, 1, 0, 0, 0, 4558, 4551, 1, 0, 0, 0, 4558, 4553, 1, 0, 0, 0, 4558, 4555, 1, 0, 0, 0, 4558, 4556, 1, 0, 0, 0, 4559, 391, 1, 0, 0, 0, 4560, 4561, 5, 36, 0, 0, 4561, 4562, 3, 814, 407, 0, 4562, 4563, 3, 456, 228, 0, 4563, 4596, 1, 0, 0, 0, 4564, 4565, 5, 247, 0, 0, 4565, 4596, 3, 58, 29, 0, 4566, 4567, 5, 443, 0, 0, 4567, 4568, 5, 62, 0, 0, 4568, 4569, 5, 360, 0, 0, 4569, 4576, 3, 648, 324, 0, 4570, 4571, 5, 6, 0, 0, 4571, 4572, 5, 62, 0, 0, 4572, 4573, 5, 360, 0, 0, 4573, 4575, 3, 648, 324, 0, 4574, 4570, 1, 0, 0, 0, 4575, 4578, 1, 0, 0, 0, 4576, 4574, 1, 0, 0, 0, 4576, 4577, 1, 0, 0, 0, 4577, 4596, 1, 0, 0, 0, 4578, 4576, 1, 0, 0, 0, 4579, 4596, 5, 104, 0, 0, 4580, 4581, 5, 333, 0, 0, 4581, 4588, 3, 824, 412, 0, 4582, 4583, 5, 94, 0, 0, 4583, 4589, 3, 824, 412, 0, 4584, 4585, 5, 10, 0, 0, 4585, 4589, 3, 824, 412, 0, 4586, 4587, 5, 64, 0, 0, 4587, 4589, 5, 434, 0, 0, 4588, 4582, 1, 0, 0, 0, 4588, 4584, 1, 0, 0, 0, 4588, 4586, 1, 0, 0, 0, 4589, 4596, 1, 0, 0, 0, 4590, 4591, 5, 36, 0, 0, 4591, 4596, 3, 824, 412, 0, 4592, 4596, 3, 4, 2, 0, 4593, 4596, 3, 390, 195, 0, 4594, 4596, 3, 824, 412, 0, 4595, 4560, 1, 0, 0, 0, 4595, 4564, 1, 0, 0, 0, 4595, 4566, 1, 0, 0, 0, 4595, 4579, 1, 0, 0, 0, 4595, 4580, 1, 0, 0, 0, 4595, 4590, 1, 0, 0, 0, 4595, 4592, 1, 0, 0, 0, 4595, 4593, 1, 0, 0, 0, 4595, 4594, 1, 0, 0, 0, 4596, 393, 1, 0, 0, 0, 4597, 4598, 5, 105, 0, 0, 4598, 4599, 3, 278, 139, 0, 4599, 395, 1, 0, 0, 0, 4600, 4601, 3, 804, 402, 0, 4601, 4602, 3, 382, 191, 0, 4602, 397, 1, 0, 0, 0, 4603, 4610, 5, 138, 0, 0, 4604, 4605, 5, 211, 0, 0, 4605, 4611, 3, 376, 188, 0, 4606, 4607, 5, 296, 0, 0, 4607, 4611, 3, 372, 186, 0, 4608, 4609, 5, 442, 0, 0, 4609, 4611, 3, 368, 184, 0, 4610, 4604, 1, 0, 0, 0, 4610, 4606, 1, 0, 0, 0, 4610, 4608, 1, 0, 0, 0, 4611, 4613, 1, 0, 0, 0, 4612, 4614, 3, 390, 195, 0, 4613, 4612, 1, 0, 0, 0, 4614, 4615, 1, 0, 0, 0, 4615, 4613, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4618, 1, 0, 0, 0, 4617, 4619, 5, 315, 0, 0, 4618, 4617, 1, 0, 0, 0, 4618, 4619, 1, 0, 0, 0, 4619, 399, 1, 0, 0, 0, 4620, 4636, 5, 191, 0, 0, 4621, 4623, 5, 211, 0, 0, 4622, 4624, 3, 416, 208, 0, 4623, 4622, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4637, 3, 374, 187, 0, 4626, 4628, 5, 296, 0, 0, 4627, 4629, 3, 416, 208, 0, 4628, 4627, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4630, 1, 0, 0, 0, 4630, 4637, 3, 370, 185, 0, 4631, 4633, 5, 442, 0, 0, 4632, 4634, 3, 416, 208, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4635, 1, 0, 0, 0, 4635, 4637, 3, 366, 183, 0, 4636, 4621, 1, 0, 0, 0, 4636, 4626, 1, 0, 0, 0, 4636, 4631, 1, 0, 0, 0, 4637, 4639, 1, 0, 0, 0, 4638, 4640, 3, 88, 44, 0, 4639, 4638, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 401, 1, 0, 0, 0, 4641, 4642, 5, 191, 0, 0, 4642, 4644, 5, 136, 0, 0, 4643, 4645, 3, 416, 208, 0, 4644, 4643, 1, 0, 0, 0, 4644, 4645, 1, 0, 0, 0, 4645, 4646, 1, 0, 0, 0, 4646, 4651, 3, 388, 194, 0, 4647, 4648, 5, 6, 0, 0, 4648, 4650, 3, 388, 194, 0, 4649, 4647, 1, 0, 0, 0, 4650, 4653, 1, 0, 0, 0, 4651, 4649, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4655, 1, 0, 0, 0, 4653, 4651, 1, 0, 0, 0, 4654, 4656, 3, 88, 44, 0, 4655, 4654, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 403, 1, 0, 0, 0, 4657, 4658, 5, 191, 0, 0, 4658, 4660, 5, 278, 0, 0, 4659, 4661, 3, 416, 208, 0, 4660, 4659, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 4662, 1, 0, 0, 0, 4662, 4667, 3, 410, 205, 0, 4663, 4664, 5, 6, 0, 0, 4664, 4666, 3, 410, 205, 0, 4665, 4663, 1, 0, 0, 0, 4666, 4669, 1, 0, 0, 0, 4667, 4665, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4671, 1, 0, 0, 0, 4669, 4667, 1, 0, 0, 0, 4670, 4672, 3, 88, 44, 0, 4671, 4670, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 405, 1, 0, 0, 0, 4673, 4686, 5, 2, 0, 0, 4674, 4677, 3, 648, 324, 0, 4675, 4676, 5, 6, 0, 0, 4676, 4678, 3, 648, 324, 0, 4677, 4675, 1, 0, 0, 0, 4677, 4678, 1, 0, 0, 0, 4678, 4687, 1, 0, 0, 0, 4679, 4680, 5, 407, 0, 0, 4680, 4681, 5, 6, 0, 0, 4681, 4687, 3, 648, 324, 0, 4682, 4683, 3, 648, 324, 0, 4683, 4684, 5, 6, 0, 0, 4684, 4685, 5, 407, 0, 0, 4685, 4687, 1, 0, 0, 0, 4686, 4674, 1, 0, 0, 0, 4686, 4679, 1, 0, 0, 0, 4686, 4682, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4689, 5, 3, 0, 0, 4689, 407, 1, 0, 0, 0, 4690, 4691, 3, 824, 412, 0, 4691, 4692, 5, 11, 0, 0, 4692, 4694, 1, 0, 0, 0, 4693, 4690, 1, 0, 0, 0, 4694, 4697, 1, 0, 0, 0, 4695, 4693, 1, 0, 0, 0, 4695, 4696, 1, 0, 0, 0, 4696, 4698, 1, 0, 0, 0, 4697, 4695, 1, 0, 0, 0, 4698, 4699, 3, 718, 359, 0, 4699, 409, 1, 0, 0, 0, 4700, 4701, 3, 408, 204, 0, 4701, 4702, 3, 406, 203, 0, 4702, 411, 1, 0, 0, 0, 4703, 4707, 5, 57, 0, 0, 4704, 4708, 3, 814, 407, 0, 4705, 4706, 5, 247, 0, 0, 4706, 4708, 3, 58, 29, 0, 4707, 4704, 1, 0, 0, 0, 4707, 4705, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4707, 1, 0, 0, 0, 4709, 4710, 1, 0, 0, 0, 4710, 413, 1, 0, 0, 0, 4711, 4712, 5, 46, 0, 0, 4712, 4713, 5, 41, 0, 0, 4713, 4714, 5, 2, 0, 0, 4714, 4715, 3, 648, 324, 0, 4715, 4716, 5, 36, 0, 0, 4716, 4717, 3, 648, 324, 0, 4717, 4734, 5, 3, 0, 0, 4718, 4719, 5, 379, 0, 0, 4719, 4722, 5, 211, 0, 0, 4720, 4721, 5, 36, 0, 0, 4721, 4723, 7, 61, 0, 0, 4722, 4720, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 4735, 1, 0, 0, 0, 4724, 4728, 5, 105, 0, 0, 4725, 4726, 5, 211, 0, 0, 4726, 4729, 3, 376, 188, 0, 4727, 4729, 5, 400, 0, 0, 4728, 4725, 1, 0, 0, 0, 4728, 4727, 1, 0, 0, 0, 4729, 4732, 1, 0, 0, 0, 4730, 4731, 5, 36, 0, 0, 4731, 4733, 7, 61, 0, 0, 4732, 4730, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 4735, 1, 0, 0, 0, 4734, 4718, 1, 0, 0, 0, 4734, 4724, 1, 0, 0, 0, 4735, 415, 1, 0, 0, 0, 4736, 4737, 5, 220, 0, 0, 4737, 4738, 5, 396, 0, 0, 4738, 417, 1, 0, 0, 0, 4739, 4741, 5, 46, 0, 0, 4740, 4742, 3, 360, 180, 0, 4741, 4740, 1, 0, 0, 0, 4741, 4742, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4744, 5, 443, 0, 0, 4744, 4745, 5, 62, 0, 0, 4745, 4746, 3, 648, 324, 0, 4746, 4747, 5, 247, 0, 0, 4747, 4748, 3, 824, 412, 0, 4748, 4763, 5, 2, 0, 0, 4749, 4750, 5, 64, 0, 0, 4750, 4754, 3, 420, 210, 0, 4751, 4752, 5, 6, 0, 0, 4752, 4753, 5, 94, 0, 0, 4753, 4755, 3, 420, 210, 0, 4754, 4751, 1, 0, 0, 0, 4754, 4755, 1, 0, 0, 0, 4755, 4764, 1, 0, 0, 0, 4756, 4757, 5, 94, 0, 0, 4757, 4761, 3, 420, 210, 0, 4758, 4759, 5, 6, 0, 0, 4759, 4760, 5, 64, 0, 0, 4760, 4762, 3, 420, 210, 0, 4761, 4758, 1, 0, 0, 0, 4761, 4762, 1, 0, 0, 0, 4762, 4764, 1, 0, 0, 0, 4763, 4749, 1, 0, 0, 0, 4763, 4756, 1, 0, 0, 0, 4764, 4765, 1, 0, 0, 0, 4765, 4766, 5, 3, 0, 0, 4766, 419, 1, 0, 0, 0, 4767, 4768, 5, 461, 0, 0, 4768, 4769, 5, 105, 0, 0, 4769, 4770, 5, 211, 0, 0, 4770, 4771, 3, 376, 188, 0, 4771, 421, 1, 0, 0, 0, 4772, 4783, 5, 306, 0, 0, 4773, 4774, 5, 2, 0, 0, 4774, 4779, 5, 128, 0, 0, 4775, 4776, 5, 6, 0, 0, 4776, 4778, 5, 128, 0, 0, 4777, 4775, 1, 0, 0, 0, 4778, 4781, 1, 0, 0, 0, 4779, 4777, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 4782, 1, 0, 0, 0, 4781, 4779, 1, 0, 0, 0, 4782, 4784, 5, 3, 0, 0, 4783, 4773, 1, 0, 0, 0, 4783, 4784, 1, 0, 0, 0, 4784, 4810, 1, 0, 0, 0, 4785, 4787, 5, 226, 0, 0, 4786, 4788, 5, 109, 0, 0, 4787, 4786, 1, 0, 0, 0, 4787, 4788, 1, 0, 0, 0, 4788, 4789, 1, 0, 0, 0, 4789, 4811, 3, 784, 392, 0, 4790, 4792, 5, 92, 0, 0, 4791, 4793, 5, 109, 0, 0, 4792, 4791, 1, 0, 0, 0, 4792, 4793, 1, 0, 0, 0, 4793, 4794, 1, 0, 0, 0, 4794, 4811, 3, 778, 389, 0, 4795, 4797, 5, 323, 0, 0, 4796, 4798, 5, 109, 0, 0, 4797, 4796, 1, 0, 0, 0, 4797, 4798, 1, 0, 0, 0, 4798, 4799, 1, 0, 0, 0, 4799, 4811, 3, 794, 397, 0, 4800, 4802, 5, 349, 0, 0, 4801, 4803, 5, 109, 0, 0, 4802, 4801, 1, 0, 0, 0, 4802, 4803, 1, 0, 0, 0, 4803, 4804, 1, 0, 0, 0, 4804, 4811, 3, 824, 412, 0, 4805, 4807, 5, 175, 0, 0, 4806, 4808, 5, 109, 0, 0, 4807, 4806, 1, 0, 0, 0, 4807, 4808, 1, 0, 0, 0, 4808, 4809, 1, 0, 0, 0, 4809, 4811, 3, 792, 396, 0, 4810, 4785, 1, 0, 0, 0, 4810, 4790, 1, 0, 0, 0, 4810, 4795, 1, 0, 0, 0, 4810, 4800, 1, 0, 0, 0, 4810, 4805, 1, 0, 0, 0, 4811, 423, 1, 0, 0, 0, 4812, 4813, 5, 138, 0, 0, 4813, 4814, 3, 170, 85, 0, 4814, 4815, 7, 16, 0, 0, 4815, 4816, 3, 92, 46, 0, 4816, 425, 1, 0, 0, 0, 4817, 4822, 5, 138, 0, 0, 4818, 4819, 5, 136, 0, 0, 4819, 4823, 3, 388, 194, 0, 4820, 4821, 5, 442, 0, 0, 4821, 4823, 3, 368, 184, 0, 4822, 4818, 1, 0, 0, 0, 4822, 4820, 1, 0, 0, 0, 4823, 4824, 1, 0, 0, 0, 4824, 4825, 5, 309, 0, 0, 4825, 4826, 5, 94, 0, 0, 4826, 4827, 3, 824, 412, 0, 4827, 5025, 1, 0, 0, 0, 4828, 4829, 5, 138, 0, 0, 4829, 4830, 5, 175, 0, 0, 4830, 4831, 3, 792, 396, 0, 4831, 4832, 5, 309, 0, 0, 4832, 4833, 5, 94, 0, 0, 4833, 4834, 3, 790, 395, 0, 4834, 5025, 1, 0, 0, 0, 4835, 4836, 5, 138, 0, 0, 4836, 4837, 7, 62, 0, 0, 4837, 4838, 3, 310, 155, 0, 4838, 4839, 5, 309, 0, 0, 4839, 4840, 5, 94, 0, 0, 4840, 4841, 3, 824, 412, 0, 4841, 5025, 1, 0, 0, 0, 4842, 4843, 5, 138, 0, 0, 4843, 4844, 5, 211, 0, 0, 4844, 4845, 3, 376, 188, 0, 4845, 4846, 5, 309, 0, 0, 4846, 4847, 5, 94, 0, 0, 4847, 4848, 3, 810, 405, 0, 4848, 5025, 1, 0, 0, 0, 4849, 4850, 5, 138, 0, 0, 4850, 4851, 5, 278, 0, 0, 4851, 4852, 7, 32, 0, 0, 4852, 4853, 3, 310, 155, 0, 4853, 4854, 3, 164, 82, 0, 4854, 4855, 5, 309, 0, 0, 4855, 4856, 5, 94, 0, 0, 4856, 4857, 3, 824, 412, 0, 4857, 5025, 1, 0, 0, 0, 4858, 4859, 5, 138, 0, 0, 4859, 4860, 5, 296, 0, 0, 4860, 4861, 3, 372, 186, 0, 4861, 4862, 5, 309, 0, 0, 4862, 4863, 5, 94, 0, 0, 4863, 4864, 3, 802, 401, 0, 4864, 5025, 1, 0, 0, 0, 4865, 4866, 5, 138, 0, 0, 4866, 4867, 5, 323, 0, 0, 4867, 4868, 3, 794, 397, 0, 4868, 4869, 5, 309, 0, 0, 4869, 4870, 5, 94, 0, 0, 4870, 4871, 3, 32, 16, 0, 4871, 5025, 1, 0, 0, 0, 4872, 4873, 5, 138, 0, 0, 4873, 4875, 7, 63, 0, 0, 4874, 4876, 3, 416, 208, 0, 4875, 4874, 1, 0, 0, 0, 4875, 4876, 1, 0, 0, 0, 4876, 4877, 1, 0, 0, 0, 4877, 4878, 3, 784, 392, 0, 4878, 4879, 5, 309, 0, 0, 4879, 4880, 5, 94, 0, 0, 4880, 4881, 3, 824, 412, 0, 4881, 5025, 1, 0, 0, 0, 4882, 4884, 5, 138, 0, 0, 4883, 4885, 5, 259, 0, 0, 4884, 4883, 1, 0, 0, 0, 4884, 4885, 1, 0, 0, 0, 4885, 4886, 1, 0, 0, 0, 4886, 4888, 5, 376, 0, 0, 4887, 4889, 3, 416, 208, 0, 4888, 4887, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 3, 782, 391, 0, 4891, 4892, 5, 309, 0, 0, 4892, 4893, 5, 94, 0, 0, 4893, 4894, 3, 780, 390, 0, 4894, 5025, 1, 0, 0, 0, 4895, 4897, 5, 138, 0, 0, 4896, 4898, 5, 63, 0, 0, 4897, 4896, 1, 0, 0, 0, 4897, 4898, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4901, 5, 92, 0, 0, 4900, 4902, 3, 416, 208, 0, 4901, 4900, 1, 0, 0, 0, 4901, 4902, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 3, 620, 310, 0, 4904, 4905, 5, 309, 0, 0, 4905, 4906, 5, 94, 0, 0, 4906, 4907, 3, 776, 388, 0, 4907, 5025, 1, 0, 0, 0, 4908, 4933, 5, 138, 0, 0, 4909, 4911, 5, 63, 0, 0, 4910, 4909, 1, 0, 0, 0, 4910, 4911, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4914, 5, 92, 0, 0, 4913, 4915, 3, 416, 208, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4917, 3, 620, 310, 0, 4917, 4919, 5, 309, 0, 0, 4918, 4920, 5, 44, 0, 0, 4919, 4918, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4934, 1, 0, 0, 0, 4921, 4923, 5, 259, 0, 0, 4922, 4921, 1, 0, 0, 0, 4922, 4923, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4926, 5, 376, 0, 0, 4925, 4927, 3, 416, 208, 0, 4926, 4925, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 4929, 3, 782, 391, 0, 4929, 4931, 5, 309, 0, 0, 4930, 4932, 5, 44, 0, 0, 4931, 4930, 1, 0, 0, 0, 4931, 4932, 1, 0, 0, 0, 4932, 4934, 1, 0, 0, 0, 4933, 4910, 1, 0, 0, 0, 4933, 4922, 1, 0, 0, 0, 4934, 4935, 1, 0, 0, 0, 4935, 4936, 3, 804, 402, 0, 4936, 4937, 5, 94, 0, 0, 4937, 4938, 3, 808, 404, 0, 4938, 5025, 1, 0, 0, 0, 4939, 4947, 5, 138, 0, 0, 4940, 4942, 5, 92, 0, 0, 4941, 4943, 3, 416, 208, 0, 4942, 4941, 1, 0, 0, 0, 4942, 4943, 1, 0, 0, 0, 4943, 4944, 1, 0, 0, 0, 4944, 4948, 3, 620, 310, 0, 4945, 4946, 5, 189, 0, 0, 4946, 4948, 3, 310, 155, 0, 4947, 4940, 1, 0, 0, 0, 4947, 4945, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 4950, 5, 309, 0, 0, 4950, 4951, 5, 45, 0, 0, 4951, 4952, 3, 824, 412, 0, 4952, 4953, 5, 94, 0, 0, 4953, 4954, 3, 824, 412, 0, 4954, 5025, 1, 0, 0, 0, 4955, 4962, 5, 138, 0, 0, 4956, 4958, 5, 445, 0, 0, 4957, 4959, 3, 416, 208, 0, 4958, 4957, 1, 0, 0, 0, 4958, 4959, 1, 0, 0, 0, 4959, 4963, 1, 0, 0, 0, 4960, 4963, 5, 321, 0, 0, 4961, 4963, 5, 357, 0, 0, 4962, 4956, 1, 0, 0, 0, 4962, 4960, 1, 0, 0, 0, 4962, 4961, 1, 0, 0, 0, 4963, 4964, 1, 0, 0, 0, 4964, 4965, 3, 824, 412, 0, 4965, 4966, 5, 80, 0, 0, 4966, 4967, 3, 784, 392, 0, 4967, 4968, 5, 309, 0, 0, 4968, 4969, 5, 94, 0, 0, 4969, 4970, 3, 824, 412, 0, 4970, 5025, 1, 0, 0, 0, 4971, 4984, 5, 138, 0, 0, 4972, 4973, 5, 63, 0, 0, 4973, 4974, 5, 174, 0, 0, 4974, 4985, 5, 381, 0, 0, 4975, 4977, 5, 295, 0, 0, 4976, 4975, 1, 0, 0, 0, 4976, 4977, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4985, 5, 247, 0, 0, 4979, 4985, 5, 452, 0, 0, 4980, 4985, 5, 331, 0, 0, 4981, 4985, 5, 451, 0, 0, 4982, 4983, 5, 198, 0, 0, 4983, 4985, 5, 357, 0, 0, 4984, 4972, 1, 0, 0, 0, 4984, 4976, 1, 0, 0, 0, 4984, 4979, 1, 0, 0, 0, 4984, 4980, 1, 0, 0, 0, 4984, 4981, 1, 0, 0, 0, 4984, 4982, 1, 0, 0, 0, 4985, 4986, 1, 0, 0, 0, 4986, 4987, 3, 824, 412, 0, 4987, 4988, 5, 309, 0, 0, 4988, 4989, 5, 94, 0, 0, 4989, 4990, 3, 824, 412, 0, 4990, 5025, 1, 0, 0, 0, 4991, 4992, 5, 138, 0, 0, 4992, 4993, 7, 46, 0, 0, 4993, 4994, 3, 820, 410, 0, 4994, 4995, 5, 309, 0, 0, 4995, 4996, 5, 94, 0, 0, 4996, 4997, 3, 820, 410, 0, 4997, 5025, 1, 0, 0, 0, 4998, 4999, 5, 138, 0, 0, 4999, 5000, 3, 170, 85, 0, 5000, 5001, 5, 309, 0, 0, 5001, 5002, 5, 94, 0, 0, 5002, 5003, 3, 774, 387, 0, 5003, 5025, 1, 0, 0, 0, 5004, 5005, 5, 138, 0, 0, 5005, 5006, 5, 355, 0, 0, 5006, 5007, 5, 325, 0, 0, 5007, 5008, 7, 42, 0, 0, 5008, 5009, 3, 310, 155, 0, 5009, 5010, 5, 309, 0, 0, 5010, 5011, 5, 94, 0, 0, 5011, 5012, 3, 824, 412, 0, 5012, 5025, 1, 0, 0, 0, 5013, 5014, 5, 138, 0, 0, 5014, 5015, 5, 360, 0, 0, 5015, 5016, 3, 310, 155, 0, 5016, 5017, 5, 309, 0, 0, 5017, 5018, 5, 143, 0, 0, 5018, 5019, 3, 824, 412, 0, 5019, 5020, 5, 94, 0, 0, 5020, 5022, 3, 824, 412, 0, 5021, 5023, 3, 88, 44, 0, 5022, 5021, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5025, 1, 0, 0, 0, 5024, 4817, 1, 0, 0, 0, 5024, 4828, 1, 0, 0, 0, 5024, 4835, 1, 0, 0, 0, 5024, 4842, 1, 0, 0, 0, 5024, 4849, 1, 0, 0, 0, 5024, 4858, 1, 0, 0, 0, 5024, 4865, 1, 0, 0, 0, 5024, 4872, 1, 0, 0, 0, 5024, 4882, 1, 0, 0, 0, 5024, 4895, 1, 0, 0, 0, 5024, 4908, 1, 0, 0, 0, 5024, 4939, 1, 0, 0, 0, 5024, 4955, 1, 0, 0, 0, 5024, 4971, 1, 0, 0, 0, 5024, 4991, 1, 0, 0, 0, 5024, 4998, 1, 0, 0, 0, 5024, 5004, 1, 0, 0, 0, 5024, 5013, 1, 0, 0, 0, 5025, 427, 1, 0, 0, 0, 5026, 5043, 5, 138, 0, 0, 5027, 5028, 5, 211, 0, 0, 5028, 5044, 3, 376, 188, 0, 5029, 5030, 5, 296, 0, 0, 5030, 5044, 3, 372, 186, 0, 5031, 5032, 5, 442, 0, 0, 5032, 5044, 3, 368, 184, 0, 5033, 5034, 5, 357, 0, 0, 5034, 5035, 3, 824, 412, 0, 5035, 5036, 5, 80, 0, 0, 5036, 5037, 3, 784, 392, 0, 5037, 5044, 1, 0, 0, 0, 5038, 5039, 5, 259, 0, 0, 5039, 5040, 5, 376, 0, 0, 5040, 5044, 3, 782, 391, 0, 5041, 5042, 5, 226, 0, 0, 5042, 5044, 3, 784, 392, 0, 5043, 5027, 1, 0, 0, 0, 5043, 5029, 1, 0, 0, 0, 5043, 5031, 1, 0, 0, 0, 5043, 5033, 1, 0, 0, 0, 5043, 5038, 1, 0, 0, 0, 5043, 5041, 1, 0, 0, 0, 5044, 5046, 1, 0, 0, 0, 5045, 5047, 5, 269, 0, 0, 5046, 5045, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5049, 5, 462, 0, 0, 5049, 5050, 5, 80, 0, 0, 5050, 5051, 5, 204, 0, 0, 5051, 5052, 3, 824, 412, 0, 5052, 429, 1, 0, 0, 0, 5053, 5092, 5, 138, 0, 0, 5054, 5055, 5, 136, 0, 0, 5055, 5093, 3, 388, 194, 0, 5056, 5057, 5, 204, 0, 0, 5057, 5093, 3, 824, 412, 0, 5058, 5059, 5, 211, 0, 0, 5059, 5093, 3, 376, 188, 0, 5060, 5061, 5, 278, 0, 0, 5061, 5093, 3, 410, 205, 0, 5062, 5063, 5, 278, 0, 0, 5063, 5064, 7, 32, 0, 0, 5064, 5065, 3, 310, 155, 0, 5065, 5066, 3, 164, 82, 0, 5066, 5093, 1, 0, 0, 0, 5067, 5068, 5, 296, 0, 0, 5068, 5093, 3, 372, 186, 0, 5069, 5070, 5, 442, 0, 0, 5070, 5093, 3, 368, 184, 0, 5071, 5073, 5, 328, 0, 0, 5072, 5074, 3, 416, 208, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5093, 3, 784, 392, 0, 5076, 5078, 5, 259, 0, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 5, 376, 0, 0, 5080, 5082, 3, 416, 208, 0, 5081, 5080, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5093, 3, 782, 391, 0, 5084, 5086, 5, 63, 0, 0, 5085, 5084, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 5089, 5, 92, 0, 0, 5088, 5090, 3, 416, 208, 0, 5089, 5088, 1, 0, 0, 0, 5089, 5090, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 5093, 3, 620, 310, 0, 5092, 5054, 1, 0, 0, 0, 5092, 5056, 1, 0, 0, 0, 5092, 5058, 1, 0, 0, 0, 5092, 5060, 1, 0, 0, 0, 5092, 5062, 1, 0, 0, 0, 5092, 5067, 1, 0, 0, 0, 5092, 5069, 1, 0, 0, 0, 5092, 5071, 1, 0, 0, 0, 5092, 5077, 1, 0, 0, 0, 5092, 5085, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5095, 5, 333, 0, 0, 5095, 5096, 5, 323, 0, 0, 5096, 5097, 3, 794, 397, 0, 5097, 5115, 1, 0, 0, 0, 5098, 5107, 5, 138, 0, 0, 5099, 5100, 5, 355, 0, 0, 5100, 5101, 5, 325, 0, 0, 5101, 5108, 7, 42, 0, 0, 5102, 5108, 5, 108, 0, 0, 5103, 5108, 5, 168, 0, 0, 5104, 5108, 5, 189, 0, 0, 5105, 5108, 5, 342, 0, 0, 5106, 5108, 5, 360, 0, 0, 5107, 5099, 1, 0, 0, 0, 5107, 5102, 1, 0, 0, 0, 5107, 5103, 1, 0, 0, 0, 5107, 5104, 1, 0, 0, 0, 5107, 5105, 1, 0, 0, 0, 5107, 5106, 1, 0, 0, 0, 5108, 5109, 1, 0, 0, 0, 5109, 5110, 3, 310, 155, 0, 5110, 5111, 5, 333, 0, 0, 5111, 5112, 5, 323, 0, 0, 5112, 5113, 3, 794, 397, 0, 5113, 5115, 1, 0, 0, 0, 5114, 5053, 1, 0, 0, 0, 5114, 5098, 1, 0, 0, 0, 5115, 431, 1, 0, 0, 0, 5116, 5117, 5, 138, 0, 0, 5117, 5118, 5, 278, 0, 0, 5118, 5119, 3, 410, 205, 0, 5119, 5120, 5, 333, 0, 0, 5120, 5121, 3, 434, 217, 0, 5121, 433, 1, 0, 0, 0, 5122, 5123, 5, 2, 0, 0, 5123, 5128, 3, 436, 218, 0, 5124, 5125, 5, 6, 0, 0, 5125, 5127, 3, 436, 218, 0, 5126, 5124, 1, 0, 0, 0, 5127, 5130, 1, 0, 0, 0, 5128, 5126, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 5131, 1, 0, 0, 0, 5130, 5128, 1, 0, 0, 0, 5131, 5132, 5, 3, 0, 0, 5132, 435, 1, 0, 0, 0, 5133, 5134, 3, 830, 415, 0, 5134, 5141, 5, 10, 0, 0, 5135, 5142, 5, 407, 0, 0, 5136, 5142, 3, 382, 191, 0, 5137, 5142, 3, 840, 420, 0, 5138, 5142, 3, 724, 362, 0, 5139, 5142, 3, 196, 98, 0, 5140, 5142, 3, 814, 407, 0, 5141, 5135, 1, 0, 0, 0, 5141, 5136, 1, 0, 0, 0, 5141, 5137, 1, 0, 0, 0, 5141, 5138, 1, 0, 0, 0, 5141, 5139, 1, 0, 0, 0, 5141, 5140, 1, 0, 0, 0, 5142, 437, 1, 0, 0, 0, 5143, 5144, 5, 138, 0, 0, 5144, 5145, 5, 360, 0, 0, 5145, 5146, 3, 310, 155, 0, 5146, 5147, 5, 333, 0, 0, 5147, 5148, 3, 434, 217, 0, 5148, 439, 1, 0, 0, 0, 5149, 5150, 5, 138, 0, 0, 5150, 5151, 5, 278, 0, 0, 5151, 5152, 7, 32, 0, 0, 5152, 5153, 3, 310, 155, 0, 5153, 5154, 3, 164, 82, 0, 5154, 5155, 5, 282, 0, 0, 5155, 5156, 5, 94, 0, 0, 5156, 5157, 3, 820, 410, 0, 5157, 5224, 1, 0, 0, 0, 5158, 5185, 5, 138, 0, 0, 5159, 5160, 5, 136, 0, 0, 5160, 5186, 3, 388, 194, 0, 5161, 5162, 5, 175, 0, 0, 5162, 5186, 3, 792, 396, 0, 5163, 5164, 5, 211, 0, 0, 5164, 5186, 3, 376, 188, 0, 5165, 5167, 5, 295, 0, 0, 5166, 5165, 1, 0, 0, 0, 5166, 5167, 1, 0, 0, 0, 5167, 5168, 1, 0, 0, 0, 5168, 5169, 5, 247, 0, 0, 5169, 5186, 3, 824, 412, 0, 5170, 5171, 5, 248, 0, 0, 5171, 5172, 5, 274, 0, 0, 5172, 5186, 3, 196, 98, 0, 5173, 5174, 5, 248, 0, 0, 5174, 5175, 5, 274, 0, 0, 5175, 5186, 3, 196, 98, 0, 5176, 5177, 5, 278, 0, 0, 5177, 5186, 3, 410, 205, 0, 5178, 5179, 5, 296, 0, 0, 5179, 5186, 3, 372, 186, 0, 5180, 5181, 5, 442, 0, 0, 5181, 5186, 3, 368, 184, 0, 5182, 5183, 5, 323, 0, 0, 5183, 5186, 3, 794, 397, 0, 5184, 5186, 3, 170, 85, 0, 5185, 5159, 1, 0, 0, 0, 5185, 5161, 1, 0, 0, 0, 5185, 5163, 1, 0, 0, 0, 5185, 5166, 1, 0, 0, 0, 5185, 5170, 1, 0, 0, 0, 5185, 5173, 1, 0, 0, 0, 5185, 5176, 1, 0, 0, 0, 5185, 5178, 1, 0, 0, 0, 5185, 5180, 1, 0, 0, 0, 5185, 5182, 1, 0, 0, 0, 5185, 5184, 1, 0, 0, 0, 5186, 5187, 1, 0, 0, 0, 5187, 5188, 5, 282, 0, 0, 5188, 5189, 5, 94, 0, 0, 5189, 5190, 3, 820, 410, 0, 5190, 5224, 1, 0, 0, 0, 5191, 5200, 5, 138, 0, 0, 5192, 5193, 5, 355, 0, 0, 5193, 5194, 5, 325, 0, 0, 5194, 5201, 7, 64, 0, 0, 5195, 5201, 5, 108, 0, 0, 5196, 5201, 5, 168, 0, 0, 5197, 5201, 5, 189, 0, 0, 5198, 5201, 5, 360, 0, 0, 5199, 5201, 5, 342, 0, 0, 5200, 5192, 1, 0, 0, 0, 5200, 5195, 1, 0, 0, 0, 5200, 5196, 1, 0, 0, 0, 5200, 5197, 1, 0, 0, 0, 5200, 5198, 1, 0, 0, 0, 5200, 5199, 1, 0, 0, 0, 5201, 5202, 1, 0, 0, 0, 5202, 5203, 3, 310, 155, 0, 5203, 5204, 5, 282, 0, 0, 5204, 5205, 5, 94, 0, 0, 5205, 5206, 3, 820, 410, 0, 5206, 5224, 1, 0, 0, 0, 5207, 5216, 5, 138, 0, 0, 5208, 5217, 5, 331, 0, 0, 5209, 5210, 5, 63, 0, 0, 5210, 5211, 5, 174, 0, 0, 5211, 5217, 5, 381, 0, 0, 5212, 5213, 5, 198, 0, 0, 5213, 5217, 5, 357, 0, 0, 5214, 5217, 5, 452, 0, 0, 5215, 5217, 5, 451, 0, 0, 5216, 5208, 1, 0, 0, 0, 5216, 5209, 1, 0, 0, 0, 5216, 5212, 1, 0, 0, 0, 5216, 5214, 1, 0, 0, 0, 5216, 5215, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5219, 3, 824, 412, 0, 5219, 5220, 5, 282, 0, 0, 5220, 5221, 5, 94, 0, 0, 5221, 5222, 3, 820, 410, 0, 5222, 5224, 1, 0, 0, 0, 5223, 5149, 1, 0, 0, 0, 5223, 5158, 1, 0, 0, 0, 5223, 5191, 1, 0, 0, 0, 5223, 5207, 1, 0, 0, 0, 5224, 441, 1, 0, 0, 0, 5225, 5226, 5, 46, 0, 0, 5226, 5227, 5, 452, 0, 0, 5227, 5234, 3, 824, 412, 0, 5228, 5229, 5, 62, 0, 0, 5229, 5230, 5, 92, 0, 0, 5230, 5235, 3, 624, 312, 0, 5231, 5232, 5, 62, 0, 0, 5232, 5233, 5, 30, 0, 0, 5233, 5235, 5, 350, 0, 0, 5234, 5228, 1, 0, 0, 0, 5234, 5231, 1, 0, 0, 0, 5234, 5235, 1, 0, 0, 0, 5235, 5237, 1, 0, 0, 0, 5236, 5238, 3, 394, 197, 0, 5237, 5236, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 443, 1, 0, 0, 0, 5239, 5240, 5, 138, 0, 0, 5240, 5241, 5, 452, 0, 0, 5241, 5259, 3, 824, 412, 0, 5242, 5243, 5, 282, 0, 0, 5243, 5244, 5, 94, 0, 0, 5244, 5260, 3, 820, 410, 0, 5245, 5246, 5, 333, 0, 0, 5246, 5260, 3, 278, 139, 0, 5247, 5248, 5, 309, 0, 0, 5248, 5249, 5, 94, 0, 0, 5249, 5260, 3, 824, 412, 0, 5250, 5251, 7, 35, 0, 0, 5251, 5256, 3, 622, 311, 0, 5252, 5253, 5, 6, 0, 0, 5253, 5255, 3, 622, 311, 0, 5254, 5252, 1, 0, 0, 0, 5255, 5258, 1, 0, 0, 0, 5256, 5254, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, 0, 5257, 5260, 1, 0, 0, 0, 5258, 5256, 1, 0, 0, 0, 5259, 5242, 1, 0, 0, 0, 5259, 5245, 1, 0, 0, 0, 5259, 5247, 1, 0, 0, 0, 5259, 5250, 1, 0, 0, 0, 5260, 445, 1, 0, 0, 0, 5261, 5262, 5, 46, 0, 0, 5262, 5263, 5, 451, 0, 0, 5263, 5264, 3, 824, 412, 0, 5264, 5265, 5, 164, 0, 0, 5265, 5266, 3, 814, 407, 0, 5266, 5267, 5, 452, 0, 0, 5267, 5272, 3, 830, 415, 0, 5268, 5269, 5, 6, 0, 0, 5269, 5271, 3, 830, 415, 0, 5270, 5268, 1, 0, 0, 0, 5271, 5274, 1, 0, 0, 0, 5272, 5270, 1, 0, 0, 0, 5272, 5273, 1, 0, 0, 0, 5273, 5276, 1, 0, 0, 0, 5274, 5272, 1, 0, 0, 0, 5275, 5277, 3, 394, 197, 0, 5276, 5275, 1, 0, 0, 0, 5276, 5277, 1, 0, 0, 0, 5277, 447, 1, 0, 0, 0, 5278, 5279, 5, 138, 0, 0, 5279, 5280, 5, 451, 0, 0, 5280, 5281, 3, 824, 412, 0, 5281, 5282, 5, 333, 0, 0, 5282, 5283, 3, 278, 139, 0, 5283, 5335, 1, 0, 0, 0, 5284, 5285, 5, 138, 0, 0, 5285, 5286, 5, 451, 0, 0, 5286, 5287, 3, 824, 412, 0, 5287, 5288, 5, 164, 0, 0, 5288, 5289, 3, 814, 407, 0, 5289, 5335, 1, 0, 0, 0, 5290, 5291, 5, 138, 0, 0, 5291, 5292, 5, 451, 0, 0, 5292, 5293, 3, 824, 412, 0, 5293, 5294, 5, 305, 0, 0, 5294, 5296, 5, 452, 0, 0, 5295, 5297, 3, 394, 197, 0, 5296, 5295, 1, 0, 0, 0, 5296, 5297, 1, 0, 0, 0, 5297, 5335, 1, 0, 0, 0, 5298, 5299, 5, 138, 0, 0, 5299, 5300, 5, 451, 0, 0, 5300, 5301, 3, 824, 412, 0, 5301, 5302, 7, 35, 0, 0, 5302, 5303, 5, 452, 0, 0, 5303, 5308, 3, 830, 415, 0, 5304, 5305, 5, 6, 0, 0, 5305, 5307, 3, 830, 415, 0, 5306, 5304, 1, 0, 0, 0, 5307, 5310, 1, 0, 0, 0, 5308, 5306, 1, 0, 0, 0, 5308, 5309, 1, 0, 0, 0, 5309, 5312, 1, 0, 0, 0, 5310, 5308, 1, 0, 0, 0, 5311, 5313, 3, 394, 197, 0, 5312, 5311, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5335, 1, 0, 0, 0, 5314, 5315, 5, 138, 0, 0, 5315, 5316, 5, 451, 0, 0, 5316, 5317, 3, 824, 412, 0, 5317, 5318, 7, 65, 0, 0, 5318, 5335, 1, 0, 0, 0, 5319, 5320, 5, 138, 0, 0, 5320, 5321, 5, 451, 0, 0, 5321, 5322, 3, 824, 412, 0, 5322, 5323, 5, 465, 0, 0, 5323, 5324, 5, 2, 0, 0, 5324, 5325, 3, 284, 142, 0, 5325, 5326, 5, 3, 0, 0, 5326, 5335, 1, 0, 0, 0, 5327, 5328, 5, 138, 0, 0, 5328, 5329, 5, 451, 0, 0, 5329, 5330, 3, 824, 412, 0, 5330, 5331, 5, 282, 0, 0, 5331, 5332, 5, 94, 0, 0, 5332, 5333, 3, 820, 410, 0, 5333, 5335, 1, 0, 0, 0, 5334, 5278, 1, 0, 0, 0, 5334, 5284, 1, 0, 0, 0, 5334, 5290, 1, 0, 0, 0, 5334, 5298, 1, 0, 0, 0, 5334, 5314, 1, 0, 0, 0, 5334, 5319, 1, 0, 0, 0, 5334, 5327, 1, 0, 0, 0, 5335, 449, 1, 0, 0, 0, 5336, 5338, 5, 46, 0, 0, 5337, 5339, 3, 360, 180, 0, 5338, 5337, 1, 0, 0, 0, 5338, 5339, 1, 0, 0, 0, 5339, 5340, 1, 0, 0, 0, 5340, 5341, 5, 321, 0, 0, 5341, 5342, 3, 824, 412, 0, 5342, 5343, 5, 36, 0, 0, 5343, 5344, 5, 80, 0, 0, 5344, 5345, 7, 66, 0, 0, 5345, 5346, 5, 94, 0, 0, 5346, 5348, 3, 784, 392, 0, 5347, 5349, 3, 634, 317, 0, 5348, 5347, 1, 0, 0, 0, 5348, 5349, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 5352, 5, 57, 0, 0, 5351, 5353, 7, 67, 0, 0, 5352, 5351, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5370, 1, 0, 0, 0, 5354, 5371, 5, 270, 0, 0, 5355, 5371, 3, 452, 226, 0, 5356, 5358, 5, 2, 0, 0, 5357, 5359, 3, 452, 226, 0, 5358, 5357, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5366, 1, 0, 0, 0, 5360, 5362, 5, 7, 0, 0, 5361, 5363, 3, 452, 226, 0, 5362, 5361, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5365, 1, 0, 0, 0, 5364, 5360, 1, 0, 0, 0, 5365, 5368, 1, 0, 0, 0, 5366, 5364, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 5369, 1, 0, 0, 0, 5368, 5366, 1, 0, 0, 0, 5369, 5371, 5, 3, 0, 0, 5370, 5354, 1, 0, 0, 0, 5370, 5355, 1, 0, 0, 0, 5370, 5356, 1, 0, 0, 0, 5371, 451, 1, 0, 0, 0, 5372, 5378, 3, 554, 277, 0, 5373, 5378, 3, 532, 266, 0, 5374, 5378, 3, 546, 273, 0, 5375, 5378, 3, 542, 271, 0, 5376, 5378, 3, 454, 227, 0, 5377, 5372, 1, 0, 0, 0, 5377, 5373, 1, 0, 0, 0, 5377, 5374, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5377, 5376, 1, 0, 0, 0, 5378, 453, 1, 0, 0, 0, 5379, 5380, 5, 271, 0, 0, 5380, 5382, 3, 824, 412, 0, 5381, 5383, 3, 456, 228, 0, 5382, 5381, 1, 0, 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 455, 1, 0, 0, 0, 5384, 5385, 5, 6, 0, 0, 5385, 5386, 3, 814, 407, 0, 5386, 457, 1, 0, 0, 0, 5387, 5388, 5, 252, 0, 0, 5388, 5389, 3, 824, 412, 0, 5389, 459, 1, 0, 0, 0, 5390, 5393, 5, 366, 0, 0, 5391, 5394, 3, 824, 412, 0, 5392, 5394, 5, 9, 0, 0, 5393, 5391, 1, 0, 0, 0, 5393, 5392, 1, 0, 0, 0, 5394, 461, 1, 0, 0, 0, 5395, 5397, 5, 146, 0, 0, 5396, 5398, 3, 464, 232, 0, 5397, 5396, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5400, 1, 0, 0, 0, 5399, 5401, 3, 468, 234, 0, 5400, 5399, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5441, 1, 0, 0, 0, 5402, 5403, 5, 340, 0, 0, 5403, 5405, 5, 356, 0, 0, 5404, 5406, 3, 468, 234, 0, 5405, 5404, 1, 0, 0, 0, 5405, 5406, 1, 0, 0, 0, 5406, 5441, 1, 0, 0, 0, 5407, 5408, 5, 322, 0, 0, 5408, 5441, 3, 824, 412, 0, 5409, 5411, 5, 308, 0, 0, 5410, 5412, 5, 322, 0, 0, 5411, 5410, 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5413, 1, 0, 0, 0, 5413, 5441, 3, 824, 412, 0, 5414, 5415, 5, 290, 0, 0, 5415, 5416, 5, 356, 0, 0, 5416, 5441, 3, 814, 407, 0, 5417, 5418, 7, 68, 0, 0, 5418, 5419, 5, 291, 0, 0, 5419, 5441, 3, 814, 407, 0, 5420, 5422, 7, 69, 0, 0, 5421, 5423, 3, 464, 232, 0, 5422, 5421, 1, 0, 0, 0, 5422, 5423, 1, 0, 0, 0, 5423, 5429, 1, 0, 0, 0, 5424, 5426, 5, 33, 0, 0, 5425, 5427, 5, 269, 0, 0, 5426, 5425, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5430, 5, 153, 0, 0, 5429, 5424, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5441, 1, 0, 0, 0, 5431, 5433, 5, 319, 0, 0, 5432, 5434, 3, 464, 232, 0, 5433, 5432, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5435, 1, 0, 0, 0, 5435, 5437, 5, 94, 0, 0, 5436, 5438, 5, 322, 0, 0, 5437, 5436, 1, 0, 0, 0, 5437, 5438, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5441, 3, 824, 412, 0, 5440, 5395, 1, 0, 0, 0, 5440, 5402, 1, 0, 0, 0, 5440, 5407, 1, 0, 0, 0, 5440, 5409, 1, 0, 0, 0, 5440, 5414, 1, 0, 0, 0, 5440, 5417, 1, 0, 0, 0, 5440, 5420, 1, 0, 0, 0, 5440, 5431, 1, 0, 0, 0, 5441, 463, 1, 0, 0, 0, 5442, 5443, 7, 70, 0, 0, 5443, 465, 1, 0, 0, 0, 5444, 5445, 5, 244, 0, 0, 5445, 5446, 5, 251, 0, 0, 5446, 5454, 3, 50, 25, 0, 5447, 5448, 5, 300, 0, 0, 5448, 5454, 7, 71, 0, 0, 5449, 5451, 5, 77, 0, 0, 5450, 5449, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 5454, 5, 54, 0, 0, 5453, 5444, 1, 0, 0, 0, 5453, 5447, 1, 0, 0, 0, 5453, 5450, 1, 0, 0, 0, 5454, 467, 1, 0, 0, 0, 5455, 5462, 3, 466, 233, 0, 5456, 5458, 5, 6, 0, 0, 5457, 5456, 1, 0, 0, 0, 5457, 5458, 1, 0, 0, 0, 5458, 5459, 1, 0, 0, 0, 5459, 5461, 3, 466, 233, 0, 5460, 5457, 1, 0, 0, 0, 5461, 5464, 1, 0, 0, 0, 5462, 5460, 1, 0, 0, 0, 5462, 5463, 1, 0, 0, 0, 5463, 469, 1, 0, 0, 0, 5464, 5462, 1, 0, 0, 0, 5465, 5468, 5, 46, 0, 0, 5466, 5467, 5, 82, 0, 0, 5467, 5469, 5, 311, 0, 0, 5468, 5466, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 1, 0, 0, 0, 5470, 5472, 3, 116, 58, 0, 5471, 5470, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5488, 1, 0, 0, 0, 5473, 5474, 5, 376, 0, 0, 5474, 5476, 3, 780, 390, 0, 5475, 5477, 3, 140, 70, 0, 5476, 5475, 1, 0, 0, 0, 5476, 5477, 1, 0, 0, 0, 5477, 5479, 1, 0, 0, 0, 5478, 5480, 3, 94, 47, 0, 5479, 5478, 1, 0, 0, 0, 5479, 5480, 1, 0, 0, 0, 5480, 5489, 1, 0, 0, 0, 5481, 5482, 5, 303, 0, 0, 5482, 5483, 5, 376, 0, 0, 5483, 5484, 3, 780, 390, 0, 5484, 5486, 3, 138, 69, 0, 5485, 5487, 3, 94, 47, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5489, 1, 0, 0, 0, 5488, 5473, 1, 0, 0, 0, 5488, 5481, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 5491, 5, 36, 0, 0, 5491, 5498, 3, 554, 277, 0, 5492, 5494, 5, 105, 0, 0, 5493, 5495, 7, 72, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5497, 5, 42, 0, 0, 5497, 5499, 5, 279, 0, 0, 5498, 5492, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, 471, 1, 0, 0, 0, 5500, 5501, 5, 253, 0, 0, 5501, 5502, 3, 814, 407, 0, 5502, 473, 1, 0, 0, 0, 5503, 5504, 5, 46, 0, 0, 5504, 5505, 5, 175, 0, 0, 5505, 5507, 3, 790, 395, 0, 5506, 5508, 5, 105, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 5514, 1, 0, 0, 0, 5509, 5511, 3, 476, 238, 0, 5510, 5509, 1, 0, 0, 0, 5511, 5512, 1, 0, 0, 0, 5512, 5510, 1, 0, 0, 0, 5512, 5513, 1, 0, 0, 0, 5513, 5515, 1, 0, 0, 0, 5514, 5510, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 475, 1, 0, 0, 0, 5516, 5517, 5, 164, 0, 0, 5517, 5525, 5, 74, 0, 0, 5518, 5525, 5, 194, 0, 0, 5519, 5525, 5, 255, 0, 0, 5520, 5525, 5, 282, 0, 0, 5521, 5525, 5, 351, 0, 0, 5522, 5525, 5, 353, 0, 0, 5523, 5525, 3, 832, 416, 0, 5524, 5516, 1, 0, 0, 0, 5524, 5518, 1, 0, 0, 0, 5524, 5519, 1, 0, 0, 0, 5524, 5520, 1, 0, 0, 0, 5524, 5521, 1, 0, 0, 0, 5524, 5522, 1, 0, 0, 0, 5524, 5523, 1, 0, 0, 0, 5525, 5527, 1, 0, 0, 0, 5526, 5528, 5, 10, 0, 0, 5527, 5526, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 5532, 1, 0, 0, 0, 5529, 5533, 3, 818, 409, 0, 5530, 5533, 3, 54, 27, 0, 5531, 5533, 5, 53, 0, 0, 5532, 5529, 1, 0, 0, 0, 5532, 5530, 1, 0, 0, 0, 5532, 5531, 1, 0, 0, 0, 5533, 477, 1, 0, 0, 0, 5534, 5535, 5, 138, 0, 0, 5535, 5536, 5, 175, 0, 0, 5536, 5552, 3, 792, 396, 0, 5537, 5538, 5, 333, 0, 0, 5538, 5539, 5, 351, 0, 0, 5539, 5541, 3, 774, 387, 0, 5540, 5537, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5553, 1, 0, 0, 0, 5542, 5544, 5, 105, 0, 0, 5543, 5542, 1, 0, 0, 0, 5543, 5544, 1, 0, 0, 0, 5544, 5546, 1, 0, 0, 0, 5545, 5547, 3, 476, 238, 0, 5546, 5545, 1, 0, 0, 0, 5547, 5548, 1, 0, 0, 0, 5548, 5546, 1, 0, 0, 0, 5548, 5549, 1, 0, 0, 0, 5549, 5551, 1, 0, 0, 0, 5550, 5543, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 5553, 1, 0, 0, 0, 5552, 5540, 1, 0, 0, 0, 5552, 5550, 1, 0, 0, 0, 5553, 479, 1, 0, 0, 0, 5554, 5555, 5, 138, 0, 0, 5555, 5556, 5, 175, 0, 0, 5556, 5558, 3, 792, 396, 0, 5557, 5559, 3, 64, 32, 0, 5558, 5557, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, 481, 1, 0, 0, 0, 5560, 5561, 5, 138, 0, 0, 5561, 5562, 5, 108, 0, 0, 5562, 5563, 3, 310, 155, 0, 5563, 5564, 5, 305, 0, 0, 5564, 5565, 5, 375, 0, 0, 5565, 483, 1, 0, 0, 0, 5566, 5567, 5, 138, 0, 0, 5567, 5568, 5, 349, 0, 0, 5568, 5569, 7, 16, 0, 0, 5569, 5570, 3, 40, 20, 0, 5570, 485, 1, 0, 0, 0, 5571, 5572, 5, 46, 0, 0, 5572, 5573, 5, 189, 0, 0, 5573, 5575, 3, 310, 155, 0, 5574, 5576, 5, 36, 0, 0, 5575, 5574, 1, 0, 0, 0, 5575, 5576, 1, 0, 0, 0, 5576, 5577, 1, 0, 0, 0, 5577, 5581, 3, 648, 324, 0, 5578, 5580, 3, 128, 64, 0, 5579, 5578, 1, 0, 0, 0, 5580, 5583, 1, 0, 0, 0, 5581, 5579, 1, 0, 0, 0, 5581, 5582, 1, 0, 0, 0, 5582, 487, 1, 0, 0, 0, 5583, 5581, 1, 0, 0, 0, 5584, 5585, 5, 138, 0, 0, 5585, 5586, 5, 189, 0, 0, 5586, 5609, 3, 310, 155, 0, 5587, 5610, 3, 86, 43, 0, 5588, 5589, 7, 15, 0, 0, 5589, 5590, 5, 77, 0, 0, 5590, 5610, 5, 78, 0, 0, 5591, 5594, 5, 133, 0, 0, 5592, 5593, 5, 45, 0, 0, 5593, 5595, 3, 824, 412, 0, 5594, 5592, 1, 0, 0, 0, 5594, 5595, 1, 0, 0, 0, 5595, 5596, 1, 0, 0, 0, 5596, 5610, 3, 136, 68, 0, 5597, 5598, 5, 191, 0, 0, 5598, 5600, 5, 45, 0, 0, 5599, 5601, 3, 416, 208, 0, 5600, 5599, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5602, 1, 0, 0, 0, 5602, 5604, 3, 824, 412, 0, 5603, 5605, 3, 88, 44, 0, 5604, 5603, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5610, 1, 0, 0, 0, 5606, 5607, 5, 372, 0, 0, 5607, 5608, 5, 45, 0, 0, 5608, 5610, 3, 824, 412, 0, 5609, 5587, 1, 0, 0, 0, 5609, 5588, 1, 0, 0, 0, 5609, 5591, 1, 0, 0, 0, 5609, 5597, 1, 0, 0, 0, 5609, 5606, 1, 0, 0, 0, 5610, 489, 1, 0, 0, 0, 5611, 5612, 5, 138, 0, 0, 5612, 5613, 5, 355, 0, 0, 5613, 5614, 5, 325, 0, 0, 5614, 5615, 5, 185, 0, 0, 5615, 5616, 3, 310, 155, 0, 5616, 5617, 3, 278, 139, 0, 5617, 491, 1, 0, 0, 0, 5618, 5619, 5, 138, 0, 0, 5619, 5620, 5, 355, 0, 0, 5620, 5621, 5, 325, 0, 0, 5621, 5622, 5, 163, 0, 0, 5622, 5623, 3, 310, 155, 0, 5623, 5624, 7, 73, 0, 0, 5624, 5625, 5, 257, 0, 0, 5625, 5626, 5, 62, 0, 0, 5626, 5627, 3, 788, 394, 0, 5627, 5628, 5, 105, 0, 0, 5628, 5629, 3, 308, 154, 0, 5629, 5660, 1, 0, 0, 0, 5630, 5631, 5, 138, 0, 0, 5631, 5632, 5, 355, 0, 0, 5632, 5633, 5, 325, 0, 0, 5633, 5634, 5, 163, 0, 0, 5634, 5635, 3, 310, 155, 0, 5635, 5636, 5, 138, 0, 0, 5636, 5639, 5, 257, 0, 0, 5637, 5638, 5, 62, 0, 0, 5638, 5640, 3, 788, 394, 0, 5639, 5637, 1, 0, 0, 0, 5639, 5640, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5642, 5, 311, 0, 0, 5642, 5643, 3, 310, 155, 0, 5643, 5644, 5, 105, 0, 0, 5644, 5645, 3, 310, 155, 0, 5645, 5660, 1, 0, 0, 0, 5646, 5647, 5, 138, 0, 0, 5647, 5648, 5, 355, 0, 0, 5648, 5649, 5, 325, 0, 0, 5649, 5650, 5, 163, 0, 0, 5650, 5651, 3, 310, 155, 0, 5651, 5652, 5, 191, 0, 0, 5652, 5654, 5, 257, 0, 0, 5653, 5655, 3, 416, 208, 0, 5654, 5653, 1, 0, 0, 0, 5654, 5655, 1, 0, 0, 0, 5655, 5656, 1, 0, 0, 0, 5656, 5657, 5, 62, 0, 0, 5657, 5658, 3, 788, 394, 0, 5658, 5660, 1, 0, 0, 0, 5659, 5618, 1, 0, 0, 0, 5659, 5630, 1, 0, 0, 0, 5659, 5646, 1, 0, 0, 0, 5660, 493, 1, 0, 0, 0, 5661, 5663, 5, 46, 0, 0, 5662, 5664, 5, 53, 0, 0, 5663, 5662, 1, 0, 0, 0, 5663, 5664, 1, 0, 0, 0, 5664, 5665, 1, 0, 0, 0, 5665, 5666, 5, 168, 0, 0, 5666, 5667, 3, 310, 155, 0, 5667, 5668, 5, 62, 0, 0, 5668, 5669, 3, 814, 407, 0, 5669, 5670, 5, 94, 0, 0, 5670, 5671, 3, 814, 407, 0, 5671, 5672, 5, 64, 0, 0, 5672, 5673, 3, 310, 155, 0, 5673, 495, 1, 0, 0, 0, 5674, 5676, 5, 158, 0, 0, 5675, 5677, 3, 508, 254, 0, 5676, 5675, 1, 0, 0, 0, 5676, 5677, 1, 0, 0, 0, 5677, 5682, 1, 0, 0, 0, 5678, 5680, 3, 778, 389, 0, 5679, 5681, 3, 164, 82, 0, 5680, 5679, 1, 0, 0, 0, 5680, 5681, 1, 0, 0, 0, 5681, 5683, 1, 0, 0, 0, 5682, 5678, 1, 0, 0, 0, 5682, 5683, 1, 0, 0, 0, 5683, 5700, 1, 0, 0, 0, 5684, 5685, 5, 158, 0, 0, 5685, 5686, 5, 2, 0, 0, 5686, 5691, 3, 508, 254, 0, 5687, 5688, 5, 6, 0, 0, 5688, 5690, 3, 508, 254, 0, 5689, 5687, 1, 0, 0, 0, 5690, 5693, 1, 0, 0, 0, 5691, 5689, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 5694, 1, 0, 0, 0, 5693, 5691, 1, 0, 0, 0, 5694, 5695, 5, 3, 0, 0, 5695, 5697, 3, 778, 389, 0, 5696, 5698, 3, 164, 82, 0, 5697, 5696, 1, 0, 0, 0, 5697, 5698, 1, 0, 0, 0, 5698, 5700, 1, 0, 0, 0, 5699, 5674, 1, 0, 0, 0, 5699, 5684, 1, 0, 0, 0, 5700, 497, 1, 0, 0, 0, 5701, 5717, 5, 370, 0, 0, 5702, 5704, 5, 113, 0, 0, 5703, 5702, 1, 0, 0, 0, 5703, 5704, 1, 0, 0, 0, 5704, 5706, 1, 0, 0, 0, 5705, 5707, 5, 112, 0, 0, 5706, 5705, 1, 0, 0, 0, 5706, 5707, 1, 0, 0, 0, 5707, 5709, 1, 0, 0, 0, 5708, 5710, 3, 508, 254, 0, 5709, 5708, 1, 0, 0, 0, 5709, 5710, 1, 0, 0, 0, 5710, 5712, 1, 0, 0, 0, 5711, 5713, 3, 502, 251, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5718, 1, 0, 0, 0, 5714, 5716, 3, 518, 259, 0, 5715, 5714, 1, 0, 0, 0, 5715, 5716, 1, 0, 0, 0, 5716, 5718, 1, 0, 0, 0, 5717, 5703, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5718, 5720, 1, 0, 0, 0, 5719, 5721, 3, 512, 256, 0, 5720, 5719, 1, 0, 0, 0, 5720, 5721, 1, 0, 0, 0, 5721, 499, 1, 0, 0, 0, 5722, 5737, 3, 502, 251, 0, 5723, 5725, 3, 508, 254, 0, 5724, 5723, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5738, 1, 0, 0, 0, 5726, 5727, 5, 2, 0, 0, 5727, 5732, 3, 506, 253, 0, 5728, 5729, 5, 6, 0, 0, 5729, 5731, 3, 506, 253, 0, 5730, 5728, 1, 0, 0, 0, 5731, 5734, 1, 0, 0, 0, 5732, 5730, 1, 0, 0, 0, 5732, 5733, 1, 0, 0, 0, 5733, 5735, 1, 0, 0, 0, 5734, 5732, 1, 0, 0, 0, 5735, 5736, 5, 3, 0, 0, 5736, 5738, 1, 0, 0, 0, 5737, 5724, 1, 0, 0, 0, 5737, 5726, 1, 0, 0, 0, 5738, 5740, 1, 0, 0, 0, 5739, 5741, 3, 512, 256, 0, 5740, 5739, 1, 0, 0, 0, 5740, 5741, 1, 0, 0, 0, 5741, 501, 1, 0, 0, 0, 5742, 5743, 7, 74, 0, 0, 5743, 503, 1, 0, 0, 0, 5744, 5747, 3, 828, 414, 0, 5745, 5747, 3, 502, 251, 0, 5746, 5744, 1, 0, 0, 0, 5746, 5745, 1, 0, 0, 0, 5747, 5750, 1, 0, 0, 0, 5748, 5751, 3, 54, 27, 0, 5749, 5751, 3, 196, 98, 0, 5750, 5748, 1, 0, 0, 0, 5750, 5749, 1, 0, 0, 0, 5750, 5751, 1, 0, 0, 0, 5751, 505, 1, 0, 0, 0, 5752, 5754, 7, 75, 0, 0, 5753, 5755, 7, 76, 0, 0, 5754, 5753, 1, 0, 0, 0, 5754, 5755, 1, 0, 0, 0, 5755, 5762, 1, 0, 0, 0, 5756, 5759, 5, 548, 0, 0, 5757, 5760, 3, 196, 98, 0, 5758, 5760, 3, 814, 407, 0, 5759, 5757, 1, 0, 0, 0, 5759, 5758, 1, 0, 0, 0, 5760, 5762, 1, 0, 0, 0, 5761, 5752, 1, 0, 0, 0, 5761, 5756, 1, 0, 0, 0, 5762, 507, 1, 0, 0, 0, 5763, 5765, 5, 128, 0, 0, 5764, 5766, 7, 76, 0, 0, 5765, 5764, 1, 0, 0, 0, 5765, 5766, 1, 0, 0, 0, 5766, 509, 1, 0, 0, 0, 5767, 5769, 3, 778, 389, 0, 5768, 5770, 3, 138, 69, 0, 5769, 5768, 1, 0, 0, 0, 5769, 5770, 1, 0, 0, 0, 5770, 511, 1, 0, 0, 0, 5771, 5776, 3, 510, 255, 0, 5772, 5773, 5, 6, 0, 0, 5773, 5775, 3, 510, 255, 0, 5774, 5772, 1, 0, 0, 0, 5775, 5778, 1, 0, 0, 0, 5776, 5774, 1, 0, 0, 0, 5776, 5777, 1, 0, 0, 0, 5777, 513, 1, 0, 0, 0, 5778, 5776, 1, 0, 0, 0, 5779, 5790, 5, 203, 0, 0, 5780, 5791, 3, 518, 259, 0, 5781, 5783, 5, 128, 0, 0, 5782, 5781, 1, 0, 0, 0, 5782, 5783, 1, 0, 0, 0, 5783, 5791, 1, 0, 0, 0, 5784, 5786, 3, 502, 251, 0, 5785, 5787, 3, 508, 254, 0, 5786, 5785, 1, 0, 0, 0, 5786, 5787, 1, 0, 0, 0, 5787, 5789, 1, 0, 0, 0, 5788, 5784, 1, 0, 0, 0, 5788, 5789, 1, 0, 0, 0, 5789, 5791, 1, 0, 0, 0, 5790, 5780, 1, 0, 0, 0, 5790, 5782, 1, 0, 0, 0, 5790, 5788, 1, 0, 0, 0, 5791, 5792, 1, 0, 0, 0, 5792, 5793, 3, 516, 258, 0, 5793, 515, 1, 0, 0, 0, 5794, 5804, 3, 554, 277, 0, 5795, 5804, 3, 532, 266, 0, 5796, 5804, 3, 546, 273, 0, 5797, 5804, 3, 542, 271, 0, 5798, 5804, 3, 552, 276, 0, 5799, 5804, 3, 180, 90, 0, 5800, 5804, 3, 186, 93, 0, 5801, 5804, 3, 188, 94, 0, 5802, 5804, 3, 526, 263, 0, 5803, 5794, 1, 0, 0, 0, 5803, 5795, 1, 0, 0, 0, 5803, 5796, 1, 0, 0, 0, 5803, 5797, 1, 0, 0, 0, 5803, 5798, 1, 0, 0, 0, 5803, 5799, 1, 0, 0, 0, 5803, 5800, 1, 0, 0, 0, 5803, 5801, 1, 0, 0, 0, 5803, 5802, 1, 0, 0, 0, 5804, 517, 1, 0, 0, 0, 5805, 5806, 5, 2, 0, 0, 5806, 5811, 3, 504, 252, 0, 5807, 5808, 5, 6, 0, 0, 5808, 5810, 3, 504, 252, 0, 5809, 5807, 1, 0, 0, 0, 5810, 5813, 1, 0, 0, 0, 5811, 5809, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 5814, 1, 0, 0, 0, 5813, 5811, 1, 0, 0, 0, 5814, 5815, 5, 3, 0, 0, 5815, 519, 1, 0, 0, 0, 5816, 5817, 5, 290, 0, 0, 5817, 5819, 3, 824, 412, 0, 5818, 5820, 3, 522, 261, 0, 5819, 5818, 1, 0, 0, 0, 5819, 5820, 1, 0, 0, 0, 5820, 5821, 1, 0, 0, 0, 5821, 5822, 5, 36, 0, 0, 5822, 5823, 3, 524, 262, 0, 5823, 521, 1, 0, 0, 0, 5824, 5825, 5, 2, 0, 0, 5825, 5830, 3, 648, 324, 0, 5826, 5827, 5, 6, 0, 0, 5827, 5829, 3, 648, 324, 0, 5828, 5826, 1, 0, 0, 0, 5829, 5832, 1, 0, 0, 0, 5830, 5828, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, 5831, 5833, 1, 0, 0, 0, 5832, 5830, 1, 0, 0, 0, 5833, 5834, 5, 3, 0, 0, 5834, 523, 1, 0, 0, 0, 5835, 5841, 3, 554, 277, 0, 5836, 5841, 3, 532, 266, 0, 5837, 5841, 3, 546, 273, 0, 5838, 5841, 3, 542, 271, 0, 5839, 5841, 3, 906, 453, 0, 5840, 5835, 1, 0, 0, 0, 5840, 5836, 1, 0, 0, 0, 5840, 5837, 1, 0, 0, 0, 5840, 5838, 1, 0, 0, 0, 5840, 5839, 1, 0, 0, 0, 5841, 525, 1, 0, 0, 0, 5842, 5843, 5, 202, 0, 0, 5843, 5845, 3, 824, 412, 0, 5844, 5846, 3, 528, 264, 0, 5845, 5844, 1, 0, 0, 0, 5845, 5846, 1, 0, 0, 0, 5846, 5866, 1, 0, 0, 0, 5847, 5849, 5, 46, 0, 0, 5848, 5850, 3, 116, 58, 0, 5849, 5848, 1, 0, 0, 0, 5849, 5850, 1, 0, 0, 0, 5850, 5851, 1, 0, 0, 0, 5851, 5853, 5, 92, 0, 0, 5852, 5854, 3, 288, 144, 0, 5853, 5852, 1, 0, 0, 0, 5853, 5854, 1, 0, 0, 0, 5854, 5855, 1, 0, 0, 0, 5855, 5856, 3, 182, 91, 0, 5856, 5857, 5, 36, 0, 0, 5857, 5858, 5, 202, 0, 0, 5858, 5860, 3, 824, 412, 0, 5859, 5861, 3, 528, 264, 0, 5860, 5859, 1, 0, 0, 0, 5860, 5861, 1, 0, 0, 0, 5861, 5863, 1, 0, 0, 0, 5862, 5864, 3, 184, 92, 0, 5863, 5862, 1, 0, 0, 0, 5863, 5864, 1, 0, 0, 0, 5864, 5866, 1, 0, 0, 0, 5865, 5842, 1, 0, 0, 0, 5865, 5847, 1, 0, 0, 0, 5866, 527, 1, 0, 0, 0, 5867, 5868, 5, 2, 0, 0, 5868, 5869, 3, 728, 364, 0, 5869, 5870, 5, 3, 0, 0, 5870, 529, 1, 0, 0, 0, 5871, 5873, 5, 177, 0, 0, 5872, 5874, 5, 290, 0, 0, 5873, 5872, 1, 0, 0, 0, 5873, 5874, 1, 0, 0, 0, 5874, 5877, 1, 0, 0, 0, 5875, 5878, 3, 824, 412, 0, 5876, 5878, 5, 30, 0, 0, 5877, 5875, 1, 0, 0, 0, 5877, 5876, 1, 0, 0, 0, 5878, 531, 1, 0, 0, 0, 5879, 5881, 3, 566, 283, 0, 5880, 5879, 1, 0, 0, 0, 5880, 5881, 1, 0, 0, 0, 5881, 5882, 1, 0, 0, 0, 5882, 5883, 5, 241, 0, 0, 5883, 5884, 5, 71, 0, 0, 5884, 5887, 3, 778, 389, 0, 5885, 5886, 5, 36, 0, 0, 5886, 5888, 3, 824, 412, 0, 5887, 5885, 1, 0, 0, 0, 5887, 5888, 1, 0, 0, 0, 5888, 5889, 1, 0, 0, 0, 5889, 5911, 3, 534, 267, 0, 5890, 5891, 5, 80, 0, 0, 5891, 5899, 5, 464, 0, 0, 5892, 5894, 3, 354, 177, 0, 5893, 5895, 3, 634, 317, 0, 5894, 5893, 1, 0, 0, 0, 5894, 5895, 1, 0, 0, 0, 5895, 5900, 1, 0, 0, 0, 5896, 5897, 5, 80, 0, 0, 5897, 5898, 5, 45, 0, 0, 5898, 5900, 3, 824, 412, 0, 5899, 5892, 1, 0, 0, 0, 5899, 5896, 1, 0, 0, 0, 5899, 5900, 1, 0, 0, 0, 5900, 5901, 1, 0, 0, 0, 5901, 5909, 5, 57, 0, 0, 5902, 5903, 5, 369, 0, 0, 5903, 5904, 5, 333, 0, 0, 5904, 5906, 3, 548, 274, 0, 5905, 5907, 3, 634, 317, 0, 5906, 5905, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 5910, 1, 0, 0, 0, 5908, 5910, 5, 270, 0, 0, 5909, 5902, 1, 0, 0, 0, 5909, 5908, 1, 0, 0, 0, 5910, 5912, 1, 0, 0, 0, 5911, 5890, 1, 0, 0, 0, 5911, 5912, 1, 0, 0, 0, 5912, 5914, 1, 0, 0, 0, 5913, 5915, 3, 540, 270, 0, 5914, 5913, 1, 0, 0, 0, 5914, 5915, 1, 0, 0, 0, 5915, 533, 1, 0, 0, 0, 5916, 5917, 5, 2, 0, 0, 5917, 5918, 3, 536, 268, 0, 5918, 5919, 5, 3, 0, 0, 5919, 5921, 1, 0, 0, 0, 5920, 5916, 1, 0, 0, 0, 5920, 5921, 1, 0, 0, 0, 5921, 5925, 1, 0, 0, 0, 5922, 5923, 5, 463, 0, 0, 5923, 5924, 7, 77, 0, 0, 5924, 5926, 5, 450, 0, 0, 5925, 5922, 1, 0, 0, 0, 5925, 5926, 1, 0, 0, 0, 5926, 5929, 1, 0, 0, 0, 5927, 5930, 3, 916, 458, 0, 5928, 5930, 3, 554, 277, 0, 5929, 5927, 1, 0, 0, 0, 5929, 5928, 1, 0, 0, 0, 5930, 535, 1, 0, 0, 0, 5931, 5936, 3, 538, 269, 0, 5932, 5933, 5, 6, 0, 0, 5933, 5935, 3, 538, 269, 0, 5934, 5932, 1, 0, 0, 0, 5935, 5938, 1, 0, 0, 0, 5936, 5934, 1, 0, 0, 0, 5936, 5937, 1, 0, 0, 0, 5937, 537, 1, 0, 0, 0, 5938, 5936, 1, 0, 0, 0, 5939, 5940, 3, 804, 402, 0, 5940, 5941, 3, 756, 378, 0, 5941, 539, 1, 0, 0, 0, 5942, 5943, 5, 87, 0, 0, 5943, 5944, 3, 758, 379, 0, 5944, 541, 1, 0, 0, 0, 5945, 5947, 3, 566, 283, 0, 5946, 5945, 1, 0, 0, 0, 5946, 5947, 1, 0, 0, 0, 5947, 5948, 1, 0, 0, 0, 5948, 5949, 5, 182, 0, 0, 5949, 5950, 5, 64, 0, 0, 5950, 5953, 3, 626, 313, 0, 5951, 5952, 5, 100, 0, 0, 5952, 5954, 3, 606, 303, 0, 5953, 5951, 1, 0, 0, 0, 5953, 5954, 1, 0, 0, 0, 5954, 5956, 1, 0, 0, 0, 5955, 5957, 3, 636, 318, 0, 5956, 5955, 1, 0, 0, 0, 5956, 5957, 1, 0, 0, 0, 5957, 5959, 1, 0, 0, 0, 5958, 5960, 3, 540, 270, 0, 5959, 5958, 1, 0, 0, 0, 5959, 5960, 1, 0, 0, 0, 5960, 543, 1, 0, 0, 0, 5961, 5963, 5, 256, 0, 0, 5962, 5964, 5, 92, 0, 0, 5963, 5962, 1, 0, 0, 0, 5963, 5964, 1, 0, 0, 0, 5964, 5965, 1, 0, 0, 0, 5965, 5980, 3, 624, 312, 0, 5966, 5977, 5, 68, 0, 0, 5967, 5968, 7, 78, 0, 0, 5968, 5978, 7, 79, 0, 0, 5969, 5974, 5, 334, 0, 0, 5970, 5971, 5, 369, 0, 0, 5971, 5975, 5, 201, 0, 0, 5972, 5973, 5, 414, 0, 0, 5973, 5975, 5, 201, 0, 0, 5974, 5970, 1, 0, 0, 0, 5974, 5972, 1, 0, 0, 0, 5974, 5975, 1, 0, 0, 0, 5975, 5978, 1, 0, 0, 0, 5976, 5978, 5, 201, 0, 0, 5977, 5967, 1, 0, 0, 0, 5977, 5969, 1, 0, 0, 0, 5977, 5976, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 5981, 5, 263, 0, 0, 5980, 5966, 1, 0, 0, 0, 5980, 5981, 1, 0, 0, 0, 5981, 5983, 1, 0, 0, 0, 5982, 5984, 5, 272, 0, 0, 5983, 5982, 1, 0, 0, 0, 5983, 5984, 1, 0, 0, 0, 5984, 545, 1, 0, 0, 0, 5985, 5987, 3, 566, 283, 0, 5986, 5985, 1, 0, 0, 0, 5986, 5987, 1, 0, 0, 0, 5987, 5988, 1, 0, 0, 0, 5988, 5989, 5, 369, 0, 0, 5989, 5990, 3, 626, 313, 0, 5990, 5991, 5, 333, 0, 0, 5991, 5993, 3, 548, 274, 0, 5992, 5994, 3, 604, 302, 0, 5993, 5992, 1, 0, 0, 0, 5993, 5994, 1, 0, 0, 0, 5994, 5996, 1, 0, 0, 0, 5995, 5997, 3, 636, 318, 0, 5996, 5995, 1, 0, 0, 0, 5996, 5997, 1, 0, 0, 0, 5997, 5999, 1, 0, 0, 0, 5998, 6000, 3, 540, 270, 0, 5999, 5998, 1, 0, 0, 0, 5999, 6000, 1, 0, 0, 0, 6000, 547, 1, 0, 0, 0, 6001, 6006, 3, 550, 275, 0, 6002, 6003, 5, 6, 0, 0, 6003, 6005, 3, 550, 275, 0, 6004, 6002, 1, 0, 0, 0, 6005, 6008, 1, 0, 0, 0, 6006, 6004, 1, 0, 0, 0, 6006, 6007, 1, 0, 0, 0, 6007, 549, 1, 0, 0, 0, 6008, 6006, 1, 0, 0, 0, 6009, 6010, 3, 538, 269, 0, 6010, 6011, 5, 10, 0, 0, 6011, 6012, 3, 670, 335, 0, 6012, 6028, 1, 0, 0, 0, 6013, 6014, 5, 2, 0, 0, 6014, 6015, 3, 536, 268, 0, 6015, 6016, 5, 3, 0, 0, 6016, 6025, 5, 10, 0, 0, 6017, 6019, 5, 414, 0, 0, 6018, 6017, 1, 0, 0, 0, 6018, 6019, 1, 0, 0, 0, 6019, 6020, 1, 0, 0, 0, 6020, 6026, 3, 670, 335, 0, 6021, 6022, 5, 2, 0, 0, 6022, 6023, 3, 560, 280, 0, 6023, 6024, 5, 3, 0, 0, 6024, 6026, 1, 0, 0, 0, 6025, 6018, 1, 0, 0, 0, 6025, 6021, 1, 0, 0, 0, 6026, 6028, 1, 0, 0, 0, 6027, 6009, 1, 0, 0, 0, 6027, 6013, 1, 0, 0, 0, 6028, 551, 1, 0, 0, 0, 6029, 6030, 5, 178, 0, 0, 6030, 6039, 3, 824, 412, 0, 6031, 6033, 5, 269, 0, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6034, 1, 0, 0, 0, 6034, 6038, 5, 324, 0, 0, 6035, 6038, 5, 107, 0, 0, 6036, 6038, 5, 240, 0, 0, 6037, 6032, 1, 0, 0, 0, 6037, 6035, 1, 0, 0, 0, 6037, 6036, 1, 0, 0, 0, 6038, 6041, 1, 0, 0, 0, 6039, 6037, 1, 0, 0, 0, 6039, 6040, 1, 0, 0, 0, 6040, 6042, 1, 0, 0, 0, 6041, 6039, 1, 0, 0, 0, 6042, 6045, 5, 172, 0, 0, 6043, 6044, 7, 27, 0, 0, 6044, 6046, 5, 217, 0, 0, 6045, 6043, 1, 0, 0, 0, 6045, 6046, 1, 0, 0, 0, 6046, 6047, 1, 0, 0, 0, 6047, 6048, 5, 62, 0, 0, 6048, 6049, 3, 554, 277, 0, 6049, 553, 1, 0, 0, 0, 6050, 6053, 3, 558, 279, 0, 6051, 6053, 3, 556, 278, 0, 6052, 6050, 1, 0, 0, 0, 6052, 6051, 1, 0, 0, 0, 6053, 555, 1, 0, 0, 0, 6054, 6057, 5, 2, 0, 0, 6055, 6058, 3, 558, 279, 0, 6056, 6058, 3, 556, 278, 0, 6057, 6055, 1, 0, 0, 0, 6057, 6056, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6060, 5, 3, 0, 0, 6060, 557, 1, 0, 0, 0, 6061, 6063, 3, 566, 283, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6066, 3, 560, 280, 0, 6065, 6067, 3, 580, 290, 0, 6066, 6065, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6076, 1, 0, 0, 0, 6068, 6070, 3, 600, 300, 0, 6069, 6071, 3, 584, 292, 0, 6070, 6069, 1, 0, 0, 0, 6070, 6071, 1, 0, 0, 0, 6071, 6077, 1, 0, 0, 0, 6072, 6074, 3, 584, 292, 0, 6073, 6075, 3, 600, 300, 0, 6074, 6073, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 6077, 1, 0, 0, 0, 6076, 6068, 1, 0, 0, 0, 6076, 6072, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 559, 1, 0, 0, 0, 6078, 6081, 3, 562, 281, 0, 6079, 6081, 3, 556, 278, 0, 6080, 6078, 1, 0, 0, 0, 6080, 6079, 1, 0, 0, 0, 6081, 561, 1, 0, 0, 0, 6082, 6092, 5, 88, 0, 0, 6083, 6085, 5, 30, 0, 0, 6084, 6083, 1, 0, 0, 0, 6084, 6085, 1, 0, 0, 0, 6085, 6087, 1, 0, 0, 0, 6086, 6088, 3, 574, 287, 0, 6087, 6086, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 6093, 1, 0, 0, 0, 6089, 6091, 3, 578, 289, 0, 6090, 6089, 1, 0, 0, 0, 6090, 6091, 1, 0, 0, 0, 6091, 6093, 1, 0, 0, 0, 6092, 6084, 1, 0, 0, 0, 6092, 6090, 1, 0, 0, 0, 6093, 6094, 1, 0, 0, 0, 6094, 6105, 3, 936, 468, 0, 6095, 6105, 3, 602, 301, 0, 6096, 6097, 5, 92, 0, 0, 6097, 6105, 3, 620, 310, 0, 6098, 6099, 3, 556, 278, 0, 6099, 6102, 3, 564, 282, 0, 6100, 6103, 3, 562, 281, 0, 6101, 6103, 3, 556, 278, 0, 6102, 6100, 1, 0, 0, 0, 6102, 6101, 1, 0, 0, 0, 6103, 6105, 1, 0, 0, 0, 6104, 6082, 1, 0, 0, 0, 6104, 6095, 1, 0, 0, 0, 6104, 6096, 1, 0, 0, 0, 6104, 6098, 1, 0, 0, 0, 6105, 6113, 1, 0, 0, 0, 6106, 6109, 3, 564, 282, 0, 6107, 6110, 3, 562, 281, 0, 6108, 6110, 3, 556, 278, 0, 6109, 6107, 1, 0, 0, 0, 6109, 6108, 1, 0, 0, 0, 6110, 6112, 1, 0, 0, 0, 6111, 6106, 1, 0, 0, 0, 6112, 6115, 1, 0, 0, 0, 6113, 6111, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 563, 1, 0, 0, 0, 6115, 6113, 1, 0, 0, 0, 6116, 6118, 7, 80, 0, 0, 6117, 6119, 7, 81, 0, 0, 6118, 6117, 1, 0, 0, 0, 6118, 6119, 1, 0, 0, 0, 6119, 565, 1, 0, 0, 0, 6120, 6122, 5, 105, 0, 0, 6121, 6123, 5, 303, 0, 0, 6122, 6121, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6129, 3, 568, 284, 0, 6125, 6126, 5, 6, 0, 0, 6126, 6128, 3, 568, 284, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6131, 1, 0, 0, 0, 6129, 6127, 1, 0, 0, 0, 6129, 6130, 1, 0, 0, 0, 6130, 567, 1, 0, 0, 0, 6131, 6129, 1, 0, 0, 0, 6132, 6134, 3, 824, 412, 0, 6133, 6135, 3, 138, 69, 0, 6134, 6133, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 1, 0, 0, 0, 6136, 6141, 5, 36, 0, 0, 6137, 6139, 5, 77, 0, 0, 6138, 6137, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6142, 5, 259, 0, 0, 6141, 6138, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 6144, 5, 2, 0, 0, 6144, 6145, 3, 524, 262, 0, 6145, 6147, 5, 3, 0, 0, 6146, 6148, 3, 570, 285, 0, 6147, 6146, 1, 0, 0, 0, 6147, 6148, 1, 0, 0, 0, 6148, 6150, 1, 0, 0, 0, 6149, 6151, 3, 572, 286, 0, 6150, 6149, 1, 0, 0, 0, 6150, 6151, 1, 0, 0, 0, 6151, 569, 1, 0, 0, 0, 6152, 6153, 5, 325, 0, 0, 6153, 6154, 7, 82, 0, 0, 6154, 6155, 5, 207, 0, 0, 6155, 6156, 5, 147, 0, 0, 6156, 6157, 3, 142, 71, 0, 6157, 6158, 5, 333, 0, 0, 6158, 6159, 3, 804, 402, 0, 6159, 571, 1, 0, 0, 0, 6160, 6161, 5, 173, 0, 0, 6161, 6162, 3, 142, 71, 0, 6162, 6163, 5, 333, 0, 0, 6163, 6169, 3, 804, 402, 0, 6164, 6165, 5, 94, 0, 0, 6165, 6166, 3, 824, 412, 0, 6166, 6167, 5, 53, 0, 0, 6167, 6168, 3, 824, 412, 0, 6168, 6170, 1, 0, 0, 0, 6169, 6164, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 6171, 1, 0, 0, 0, 6171, 6172, 5, 100, 0, 0, 6172, 6173, 3, 804, 402, 0, 6173, 573, 1, 0, 0, 0, 6174, 6180, 5, 71, 0, 0, 6175, 6177, 5, 346, 0, 0, 6176, 6175, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6178, 1, 0, 0, 0, 6178, 6181, 3, 576, 288, 0, 6179, 6181, 3, 728, 364, 0, 6180, 6176, 1, 0, 0, 0, 6180, 6179, 1, 0, 0, 0, 6181, 575, 1, 0, 0, 0, 6182, 6184, 7, 21, 0, 0, 6183, 6182, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6185, 1, 0, 0, 0, 6185, 6187, 7, 22, 0, 0, 6186, 6188, 5, 92, 0, 0, 6187, 6186, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6198, 3, 776, 388, 0, 6190, 6192, 5, 367, 0, 0, 6191, 6190, 1, 0, 0, 0, 6191, 6192, 1, 0, 0, 0, 6192, 6194, 1, 0, 0, 0, 6193, 6195, 5, 92, 0, 0, 6194, 6193, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 6196, 1, 0, 0, 0, 6196, 6198, 3, 776, 388, 0, 6197, 6183, 1, 0, 0, 0, 6197, 6191, 1, 0, 0, 0, 6198, 577, 1, 0, 0, 0, 6199, 6202, 5, 56, 0, 0, 6200, 6201, 5, 80, 0, 0, 6201, 6203, 3, 528, 264, 0, 6202, 6200, 1, 0, 0, 0, 6202, 6203, 1, 0, 0, 0, 6203, 579, 1, 0, 0, 0, 6204, 6205, 5, 83, 0, 0, 6205, 6206, 5, 147, 0, 0, 6206, 6211, 3, 582, 291, 0, 6207, 6208, 5, 6, 0, 0, 6208, 6210, 3, 582, 291, 0, 6209, 6207, 1, 0, 0, 0, 6210, 6213, 1, 0, 0, 0, 6211, 6209, 1, 0, 0, 0, 6211, 6212, 1, 0, 0, 0, 6212, 581, 1, 0, 0, 0, 6213, 6211, 1, 0, 0, 0, 6214, 6218, 3, 736, 368, 0, 6215, 6216, 5, 100, 0, 0, 6216, 6219, 3, 724, 362, 0, 6217, 6219, 7, 56, 0, 0, 6218, 6215, 1, 0, 0, 0, 6218, 6217, 1, 0, 0, 0, 6218, 6219, 1, 0, 0, 0, 6219, 6222, 1, 0, 0, 0, 6220, 6221, 5, 273, 0, 0, 6221, 6223, 7, 57, 0, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6223, 1, 0, 0, 0, 6223, 583, 1, 0, 0, 0, 6224, 6226, 3, 590, 295, 0, 6225, 6227, 3, 588, 294, 0, 6226, 6225, 1, 0, 0, 0, 6226, 6227, 1, 0, 0, 0, 6227, 6236, 1, 0, 0, 0, 6228, 6231, 3, 586, 293, 0, 6229, 6231, 3, 588, 294, 0, 6230, 6228, 1, 0, 0, 0, 6230, 6229, 1, 0, 0, 0, 6231, 6233, 1, 0, 0, 0, 6232, 6234, 3, 590, 295, 0, 6233, 6232, 1, 0, 0, 0, 6233, 6234, 1, 0, 0, 0, 6234, 6236, 1, 0, 0, 0, 6235, 6224, 1, 0, 0, 0, 6235, 6230, 1, 0, 0, 0, 6236, 585, 1, 0, 0, 0, 6237, 6240, 5, 74, 0, 0, 6238, 6241, 3, 670, 335, 0, 6239, 6241, 5, 30, 0, 0, 6240, 6238, 1, 0, 0, 0, 6240, 6239, 1, 0, 0, 0, 6241, 6244, 1, 0, 0, 0, 6242, 6243, 5, 6, 0, 0, 6243, 6245, 3, 670, 335, 0, 6244, 6242, 1, 0, 0, 0, 6244, 6245, 1, 0, 0, 0, 6245, 587, 1, 0, 0, 0, 6246, 6247, 5, 61, 0, 0, 6247, 6249, 7, 83, 0, 0, 6248, 6250, 3, 592, 296, 0, 6249, 6248, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6251, 1, 0, 0, 0, 6251, 6255, 7, 84, 0, 0, 6252, 6256, 5, 81, 0, 0, 6253, 6254, 5, 105, 0, 0, 6254, 6256, 5, 467, 0, 0, 6255, 6252, 1, 0, 0, 0, 6255, 6253, 1, 0, 0, 0, 6256, 589, 1, 0, 0, 0, 6257, 6262, 5, 79, 0, 0, 6258, 6259, 3, 592, 296, 0, 6259, 6260, 7, 84, 0, 0, 6260, 6263, 1, 0, 0, 0, 6261, 6263, 3, 670, 335, 0, 6262, 6258, 1, 0, 0, 0, 6262, 6261, 1, 0, 0, 0, 6263, 591, 1, 0, 0, 0, 6264, 6265, 7, 30, 0, 0, 6265, 6268, 7, 85, 0, 0, 6266, 6268, 3, 678, 339, 0, 6267, 6264, 1, 0, 0, 0, 6267, 6266, 1, 0, 0, 0, 6268, 593, 1, 0, 0, 0, 6269, 6270, 5, 66, 0, 0, 6270, 6272, 5, 147, 0, 0, 6271, 6273, 7, 81, 0, 0, 6272, 6271, 1, 0, 0, 0, 6272, 6273, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6275, 3, 596, 298, 0, 6275, 595, 1, 0, 0, 0, 6276, 6281, 3, 598, 299, 0, 6277, 6278, 5, 6, 0, 0, 6278, 6280, 3, 598, 299, 0, 6279, 6277, 1, 0, 0, 0, 6280, 6283, 1, 0, 0, 0, 6281, 6279, 1, 0, 0, 0, 6281, 6282, 1, 0, 0, 0, 6282, 597, 1, 0, 0, 0, 6283, 6281, 1, 0, 0, 0, 6284, 6308, 3, 736, 368, 0, 6285, 6286, 5, 2, 0, 0, 6286, 6308, 5, 3, 0, 0, 6287, 6289, 7, 86, 0, 0, 6288, 6287, 1, 0, 0, 0, 6288, 6289, 1, 0, 0, 0, 6289, 6290, 1, 0, 0, 0, 6290, 6291, 5, 2, 0, 0, 6291, 6296, 3, 736, 368, 0, 6292, 6293, 5, 6, 0, 0, 6293, 6295, 3, 736, 368, 0, 6294, 6292, 1, 0, 0, 0, 6295, 6298, 1, 0, 0, 0, 6296, 6294, 1, 0, 0, 0, 6296, 6297, 1, 0, 0, 0, 6297, 6299, 1, 0, 0, 0, 6298, 6296, 1, 0, 0, 0, 6299, 6300, 5, 3, 0, 0, 6300, 6308, 1, 0, 0, 0, 6301, 6302, 5, 470, 0, 0, 6302, 6303, 5, 471, 0, 0, 6303, 6304, 5, 2, 0, 0, 6304, 6305, 3, 596, 298, 0, 6305, 6306, 5, 3, 0, 0, 6306, 6308, 1, 0, 0, 0, 6307, 6284, 1, 0, 0, 0, 6307, 6285, 1, 0, 0, 0, 6307, 6288, 1, 0, 0, 0, 6307, 6301, 1, 0, 0, 0, 6308, 599, 1, 0, 0, 0, 6309, 6319, 5, 62, 0, 0, 6310, 6311, 5, 269, 0, 0, 6311, 6313, 5, 245, 0, 0, 6312, 6310, 1, 0, 0, 0, 6312, 6313, 1, 0, 0, 0, 6313, 6314, 1, 0, 0, 0, 6314, 6320, 5, 369, 0, 0, 6315, 6317, 5, 245, 0, 0, 6316, 6315, 1, 0, 0, 0, 6316, 6317, 1, 0, 0, 0, 6317, 6318, 1, 0, 0, 0, 6318, 6320, 5, 334, 0, 0, 6319, 6312, 1, 0, 0, 0, 6319, 6316, 1, 0, 0, 0, 6320, 6323, 1, 0, 0, 0, 6321, 6322, 5, 275, 0, 0, 6322, 6324, 3, 764, 382, 0, 6323, 6321, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6328, 1, 0, 0, 0, 6325, 6329, 5, 272, 0, 0, 6326, 6327, 5, 465, 0, 0, 6327, 6329, 5, 466, 0, 0, 6328, 6325, 1, 0, 0, 0, 6328, 6326, 1, 0, 0, 0, 6328, 6329, 1, 0, 0, 0, 6329, 6331, 1, 0, 0, 0, 6330, 6309, 1, 0, 0, 0, 6331, 6332, 1, 0, 0, 0, 6332, 6330, 1, 0, 0, 0, 6332, 6333, 1, 0, 0, 0, 6333, 6338, 1, 0, 0, 0, 6334, 6335, 5, 62, 0, 0, 6335, 6336, 5, 300, 0, 0, 6336, 6338, 5, 81, 0, 0, 6337, 6330, 1, 0, 0, 0, 6337, 6334, 1, 0, 0, 0, 6338, 601, 1, 0, 0, 0, 6339, 6340, 5, 422, 0, 0, 6340, 6345, 3, 528, 264, 0, 6341, 6342, 5, 6, 0, 0, 6342, 6344, 3, 528, 264, 0, 6343, 6341, 1, 0, 0, 0, 6344, 6347, 1, 0, 0, 0, 6345, 6343, 1, 0, 0, 0, 6345, 6346, 1, 0, 0, 0, 6346, 603, 1, 0, 0, 0, 6347, 6345, 1, 0, 0, 0, 6348, 6349, 5, 64, 0, 0, 6349, 6350, 3, 606, 303, 0, 6350, 605, 1, 0, 0, 0, 6351, 6356, 3, 608, 304, 0, 6352, 6353, 5, 6, 0, 0, 6353, 6355, 3, 608, 304, 0, 6354, 6352, 1, 0, 0, 0, 6355, 6358, 1, 0, 0, 0, 6356, 6354, 1, 0, 0, 0, 6356, 6357, 1, 0, 0, 0, 6357, 607, 1, 0, 0, 0, 6358, 6356, 1, 0, 0, 0, 6359, 6374, 3, 620, 310, 0, 6360, 6362, 5, 81, 0, 0, 6361, 6360, 1, 0, 0, 0, 6361, 6362, 1, 0, 0, 0, 6362, 6363, 1, 0, 0, 0, 6363, 6365, 3, 782, 391, 0, 6364, 6366, 5, 9, 0, 0, 6365, 6364, 1, 0, 0, 0, 6365, 6366, 1, 0, 0, 0, 6366, 6368, 1, 0, 0, 0, 6367, 6369, 3, 142, 71, 0, 6368, 6367, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 6371, 1, 0, 0, 0, 6370, 6372, 3, 634, 317, 0, 6371, 6370, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6374, 1, 0, 0, 0, 6373, 6359, 1, 0, 0, 0, 6373, 6361, 1, 0, 0, 0, 6374, 6376, 1, 0, 0, 0, 6375, 6377, 3, 612, 306, 0, 6376, 6375, 1, 0, 0, 0, 6376, 6377, 1, 0, 0, 0, 6377, 6379, 1, 0, 0, 0, 6378, 6380, 3, 628, 314, 0, 6379, 6378, 1, 0, 0, 0, 6379, 6380, 1, 0, 0, 0, 6380, 6410, 1, 0, 0, 0, 6381, 6383, 5, 72, 0, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6384, 1, 0, 0, 0, 6384, 6410, 3, 610, 305, 0, 6385, 6386, 5, 2, 0, 0, 6386, 6403, 3, 608, 304, 0, 6387, 6388, 5, 110, 0, 0, 6388, 6389, 5, 118, 0, 0, 6389, 6404, 3, 608, 304, 0, 6390, 6392, 5, 121, 0, 0, 6391, 6393, 3, 616, 308, 0, 6392, 6391, 1, 0, 0, 0, 6392, 6393, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6395, 5, 118, 0, 0, 6395, 6404, 3, 608, 304, 0, 6396, 6398, 3, 616, 308, 0, 6397, 6396, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6400, 5, 118, 0, 0, 6400, 6401, 3, 608, 304, 0, 6401, 6402, 3, 618, 309, 0, 6402, 6404, 1, 0, 0, 0, 6403, 6387, 1, 0, 0, 0, 6403, 6390, 1, 0, 0, 0, 6403, 6397, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6405, 1, 0, 0, 0, 6405, 6407, 5, 3, 0, 0, 6406, 6408, 3, 612, 306, 0, 6407, 6406, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6410, 1, 0, 0, 0, 6409, 6373, 1, 0, 0, 0, 6409, 6382, 1, 0, 0, 0, 6409, 6385, 1, 0, 0, 0, 6410, 6429, 1, 0, 0, 0, 6411, 6412, 5, 110, 0, 0, 6412, 6413, 5, 118, 0, 0, 6413, 6428, 3, 608, 304, 0, 6414, 6416, 5, 121, 0, 0, 6415, 6417, 3, 616, 308, 0, 6416, 6415, 1, 0, 0, 0, 6416, 6417, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6419, 5, 118, 0, 0, 6419, 6428, 3, 608, 304, 0, 6420, 6422, 3, 616, 308, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 5, 118, 0, 0, 6424, 6425, 3, 608, 304, 0, 6425, 6426, 3, 618, 309, 0, 6426, 6428, 1, 0, 0, 0, 6427, 6411, 1, 0, 0, 0, 6427, 6414, 1, 0, 0, 0, 6427, 6421, 1, 0, 0, 0, 6428, 6431, 1, 0, 0, 0, 6429, 6427, 1, 0, 0, 0, 6429, 6430, 1, 0, 0, 0, 6430, 609, 1, 0, 0, 0, 6431, 6429, 1, 0, 0, 0, 6432, 6434, 3, 642, 321, 0, 6433, 6435, 3, 612, 306, 0, 6434, 6433, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6445, 1, 0, 0, 0, 6436, 6438, 3, 630, 315, 0, 6437, 6439, 3, 614, 307, 0, 6438, 6437, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 6445, 1, 0, 0, 0, 6440, 6442, 3, 556, 278, 0, 6441, 6443, 3, 612, 306, 0, 6442, 6441, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 6445, 1, 0, 0, 0, 6444, 6432, 1, 0, 0, 0, 6444, 6436, 1, 0, 0, 0, 6444, 6440, 1, 0, 0, 0, 6445, 611, 1, 0, 0, 0, 6446, 6448, 5, 36, 0, 0, 6447, 6446, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6449, 1, 0, 0, 0, 6449, 6454, 3, 824, 412, 0, 6450, 6451, 5, 2, 0, 0, 6451, 6452, 3, 788, 394, 0, 6452, 6453, 5, 3, 0, 0, 6453, 6455, 1, 0, 0, 0, 6454, 6450, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 613, 1, 0, 0, 0, 6456, 6469, 3, 612, 306, 0, 6457, 6459, 5, 36, 0, 0, 6458, 6460, 3, 824, 412, 0, 6459, 6458, 1, 0, 0, 0, 6459, 6460, 1, 0, 0, 0, 6460, 6463, 1, 0, 0, 0, 6461, 6463, 3, 824, 412, 0, 6462, 6457, 1, 0, 0, 0, 6462, 6461, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6465, 5, 2, 0, 0, 6465, 6466, 3, 638, 319, 0, 6466, 6467, 5, 3, 0, 0, 6467, 6469, 1, 0, 0, 0, 6468, 6456, 1, 0, 0, 0, 6468, 6462, 1, 0, 0, 0, 6469, 615, 1, 0, 0, 0, 6470, 6472, 7, 87, 0, 0, 6471, 6473, 5, 123, 0, 0, 6472, 6471, 1, 0, 0, 0, 6472, 6473, 1, 0, 0, 0, 6473, 617, 1, 0, 0, 0, 6474, 6475, 5, 100, 0, 0, 6475, 6479, 3, 138, 69, 0, 6476, 6477, 5, 80, 0, 0, 6477, 6479, 3, 670, 335, 0, 6478, 6474, 1, 0, 0, 0, 6478, 6476, 1, 0, 0, 0, 6479, 619, 1, 0, 0, 0, 6480, 6496, 3, 316, 158, 0, 6481, 6487, 5, 81, 0, 0, 6482, 6488, 3, 778, 389, 0, 6483, 6484, 5, 2, 0, 0, 6484, 6485, 3, 778, 389, 0, 6485, 6486, 5, 3, 0, 0, 6486, 6488, 1, 0, 0, 0, 6487, 6482, 1, 0, 0, 0, 6487, 6483, 1, 0, 0, 0, 6488, 6496, 1, 0, 0, 0, 6489, 6490, 5, 68, 0, 0, 6490, 6493, 5, 323, 0, 0, 6491, 6494, 3, 794, 397, 0, 6492, 6494, 5, 111, 0, 0, 6493, 6491, 1, 0, 0, 0, 6493, 6492, 1, 0, 0, 0, 6494, 6496, 1, 0, 0, 0, 6495, 6480, 1, 0, 0, 0, 6495, 6481, 1, 0, 0, 0, 6495, 6489, 1, 0, 0, 0, 6496, 621, 1, 0, 0, 0, 6497, 6498, 5, 92, 0, 0, 6498, 6500, 3, 316, 158, 0, 6499, 6501, 3, 138, 69, 0, 6500, 6499, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6503, 1, 0, 0, 0, 6502, 6504, 3, 634, 317, 0, 6503, 6502, 1, 0, 0, 0, 6503, 6504, 1, 0, 0, 0, 6504, 6522, 1, 0, 0, 0, 6505, 6506, 5, 92, 0, 0, 6506, 6512, 5, 81, 0, 0, 6507, 6513, 3, 778, 389, 0, 6508, 6509, 5, 2, 0, 0, 6509, 6510, 3, 778, 389, 0, 6510, 6511, 5, 3, 0, 0, 6511, 6513, 1, 0, 0, 0, 6512, 6507, 1, 0, 0, 0, 6512, 6508, 1, 0, 0, 0, 6513, 6522, 1, 0, 0, 0, 6514, 6515, 5, 350, 0, 0, 6515, 6516, 5, 68, 0, 0, 6516, 6519, 5, 323, 0, 0, 6517, 6520, 3, 794, 397, 0, 6518, 6520, 5, 111, 0, 0, 6519, 6517, 1, 0, 0, 0, 6519, 6518, 1, 0, 0, 0, 6520, 6522, 1, 0, 0, 0, 6521, 6497, 1, 0, 0, 0, 6521, 6505, 1, 0, 0, 0, 6521, 6514, 1, 0, 0, 0, 6522, 623, 1, 0, 0, 0, 6523, 6528, 3, 620, 310, 0, 6524, 6525, 5, 6, 0, 0, 6525, 6527, 3, 620, 310, 0, 6526, 6524, 1, 0, 0, 0, 6527, 6530, 1, 0, 0, 0, 6528, 6526, 1, 0, 0, 0, 6528, 6529, 1, 0, 0, 0, 6529, 625, 1, 0, 0, 0, 6530, 6528, 1, 0, 0, 0, 6531, 6536, 3, 620, 310, 0, 6532, 6534, 5, 36, 0, 0, 6533, 6532, 1, 0, 0, 0, 6533, 6534, 1, 0, 0, 0, 6534, 6535, 1, 0, 0, 0, 6535, 6537, 3, 824, 412, 0, 6536, 6533, 1, 0, 0, 0, 6536, 6537, 1, 0, 0, 0, 6537, 627, 1, 0, 0, 0, 6538, 6539, 5, 472, 0, 0, 6539, 6540, 3, 812, 406, 0, 6540, 6546, 3, 528, 264, 0, 6541, 6542, 5, 310, 0, 0, 6542, 6543, 5, 2, 0, 0, 6543, 6544, 3, 670, 335, 0, 6544, 6545, 5, 3, 0, 0, 6545, 6547, 1, 0, 0, 0, 6546, 6541, 1, 0, 0, 0, 6546, 6547, 1, 0, 0, 0, 6547, 629, 1, 0, 0, 0, 6548, 6563, 3, 684, 342, 0, 6549, 6550, 5, 320, 0, 0, 6550, 6551, 5, 64, 0, 0, 6551, 6552, 5, 2, 0, 0, 6552, 6557, 3, 632, 316, 0, 6553, 6554, 5, 6, 0, 0, 6554, 6556, 3, 632, 316, 0, 6555, 6553, 1, 0, 0, 0, 6556, 6559, 1, 0, 0, 0, 6557, 6555, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 6560, 1, 0, 0, 0, 6559, 6557, 1, 0, 0, 0, 6560, 6561, 5, 3, 0, 0, 6561, 6563, 1, 0, 0, 0, 6562, 6548, 1, 0, 0, 0, 6562, 6549, 1, 0, 0, 0, 6563, 6566, 1, 0, 0, 0, 6564, 6565, 5, 105, 0, 0, 6565, 6567, 5, 473, 0, 0, 6566, 6564, 1, 0, 0, 0, 6566, 6567, 1, 0, 0, 0, 6567, 631, 1, 0, 0, 0, 6568, 6574, 3, 684, 342, 0, 6569, 6570, 5, 36, 0, 0, 6570, 6571, 5, 2, 0, 0, 6571, 6572, 3, 638, 319, 0, 6572, 6573, 5, 3, 0, 0, 6573, 6575, 1, 0, 0, 0, 6574, 6569, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 633, 1, 0, 0, 0, 6576, 6577, 5, 103, 0, 0, 6577, 6578, 3, 736, 368, 0, 6578, 635, 1, 0, 0, 0, 6579, 6584, 5, 103, 0, 0, 6580, 6581, 5, 434, 0, 0, 6581, 6582, 5, 275, 0, 0, 6582, 6585, 3, 824, 412, 0, 6583, 6585, 3, 670, 335, 0, 6584, 6580, 1, 0, 0, 0, 6584, 6583, 1, 0, 0, 0, 6585, 637, 1, 0, 0, 0, 6586, 6591, 3, 640, 320, 0, 6587, 6588, 5, 6, 0, 0, 6588, 6590, 3, 640, 320, 0, 6589, 6587, 1, 0, 0, 0, 6590, 6593, 1, 0, 0, 0, 6591, 6589, 1, 0, 0, 0, 6591, 6592, 1, 0, 0, 0, 6592, 639, 1, 0, 0, 0, 6593, 6591, 1, 0, 0, 0, 6594, 6595, 3, 824, 412, 0, 6595, 6597, 3, 648, 324, 0, 6596, 6598, 3, 90, 45, 0, 6597, 6596, 1, 0, 0, 0, 6597, 6598, 1, 0, 0, 0, 6598, 641, 1, 0, 0, 0, 6599, 6600, 5, 474, 0, 0, 6600, 6614, 5, 2, 0, 0, 6601, 6602, 5, 476, 0, 0, 6602, 6603, 5, 2, 0, 0, 6603, 6608, 3, 646, 323, 0, 6604, 6605, 5, 6, 0, 0, 6605, 6607, 3, 646, 323, 0, 6606, 6604, 1, 0, 0, 0, 6607, 6610, 1, 0, 0, 0, 6608, 6606, 1, 0, 0, 0, 6608, 6609, 1, 0, 0, 0, 6609, 6611, 1, 0, 0, 0, 6610, 6608, 1, 0, 0, 0, 6611, 6612, 5, 3, 0, 0, 6612, 6613, 5, 6, 0, 0, 6613, 6615, 1, 0, 0, 0, 6614, 6601, 1, 0, 0, 0, 6614, 6615, 1, 0, 0, 0, 6615, 6616, 1, 0, 0, 0, 6616, 6617, 3, 678, 339, 0, 6617, 6618, 3, 694, 347, 0, 6618, 6619, 5, 475, 0, 0, 6619, 6624, 3, 644, 322, 0, 6620, 6621, 5, 6, 0, 0, 6621, 6623, 3, 644, 322, 0, 6622, 6620, 1, 0, 0, 0, 6623, 6626, 1, 0, 0, 0, 6624, 6622, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6627, 1, 0, 0, 0, 6626, 6624, 1, 0, 0, 0, 6627, 6628, 5, 3, 0, 0, 6628, 643, 1, 0, 0, 0, 6629, 6648, 3, 824, 412, 0, 6630, 6644, 3, 648, 324, 0, 6631, 6634, 5, 53, 0, 0, 6632, 6634, 3, 832, 416, 0, 6633, 6631, 1, 0, 0, 0, 6633, 6632, 1, 0, 0, 0, 6634, 6635, 1, 0, 0, 0, 6635, 6641, 3, 670, 335, 0, 6636, 6638, 5, 77, 0, 0, 6637, 6636, 1, 0, 0, 0, 6637, 6638, 1, 0, 0, 0, 6638, 6639, 1, 0, 0, 0, 6639, 6641, 5, 78, 0, 0, 6640, 6633, 1, 0, 0, 0, 6640, 6637, 1, 0, 0, 0, 6641, 6642, 1, 0, 0, 0, 6642, 6640, 1, 0, 0, 0, 6642, 6643, 1, 0, 0, 0, 6643, 6645, 1, 0, 0, 0, 6644, 6640, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 6649, 1, 0, 0, 0, 6646, 6647, 5, 62, 0, 0, 6647, 6649, 5, 473, 0, 0, 6648, 6630, 1, 0, 0, 0, 6648, 6646, 1, 0, 0, 0, 6649, 645, 1, 0, 0, 0, 6650, 6651, 3, 678, 339, 0, 6651, 6652, 5, 36, 0, 0, 6652, 6653, 3, 830, 415, 0, 6653, 6657, 1, 0, 0, 0, 6654, 6655, 5, 53, 0, 0, 6655, 6657, 3, 678, 339, 0, 6656, 6650, 1, 0, 0, 0, 6656, 6654, 1, 0, 0, 0, 6657, 647, 1, 0, 0, 0, 6658, 6660, 5, 415, 0, 0, 6659, 6658, 1, 0, 0, 0, 6659, 6660, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6678, 3, 650, 325, 0, 6662, 6664, 5, 4, 0, 0, 6663, 6665, 5, 574, 0, 0, 6664, 6663, 1, 0, 0, 0, 6664, 6665, 1, 0, 0, 0, 6665, 6666, 1, 0, 0, 0, 6666, 6668, 5, 5, 0, 0, 6667, 6662, 1, 0, 0, 0, 6668, 6671, 1, 0, 0, 0, 6669, 6667, 1, 0, 0, 0, 6669, 6670, 1, 0, 0, 0, 6670, 6679, 1, 0, 0, 0, 6671, 6669, 1, 0, 0, 0, 6672, 6676, 5, 35, 0, 0, 6673, 6674, 5, 4, 0, 0, 6674, 6675, 5, 574, 0, 0, 6675, 6677, 5, 5, 0, 0, 6676, 6673, 1, 0, 0, 0, 6676, 6677, 1, 0, 0, 0, 6677, 6679, 1, 0, 0, 0, 6678, 6669, 1, 0, 0, 0, 6678, 6672, 1, 0, 0, 0, 6679, 6685, 1, 0, 0, 0, 6680, 6681, 3, 784, 392, 0, 6681, 6682, 5, 27, 0, 0, 6682, 6683, 7, 88, 0, 0, 6683, 6685, 1, 0, 0, 0, 6684, 6659, 1, 0, 0, 0, 6684, 6680, 1, 0, 0, 0, 6685, 649, 1, 0, 0, 0, 6686, 6688, 3, 826, 413, 0, 6687, 6689, 3, 312, 156, 0, 6688, 6687, 1, 0, 0, 0, 6688, 6689, 1, 0, 0, 0, 6689, 6691, 1, 0, 0, 0, 6690, 6692, 3, 528, 264, 0, 6691, 6690, 1, 0, 0, 0, 6691, 6692, 1, 0, 0, 0, 6692, 6702, 1, 0, 0, 0, 6693, 6702, 3, 652, 326, 0, 6694, 6699, 5, 403, 0, 0, 6695, 6697, 3, 664, 332, 0, 6696, 6695, 1, 0, 0, 0, 6696, 6697, 1, 0, 0, 0, 6697, 6700, 1, 0, 0, 0, 6698, 6700, 3, 656, 328, 0, 6699, 6696, 1, 0, 0, 0, 6699, 6698, 1, 0, 0, 0, 6700, 6702, 1, 0, 0, 0, 6701, 6686, 1, 0, 0, 0, 6701, 6693, 1, 0, 0, 0, 6701, 6694, 1, 0, 0, 0, 6702, 651, 1, 0, 0, 0, 6703, 6708, 3, 654, 327, 0, 6704, 6708, 3, 658, 329, 0, 6705, 6708, 3, 660, 330, 0, 6706, 6708, 3, 662, 331, 0, 6707, 6703, 1, 0, 0, 0, 6707, 6704, 1, 0, 0, 0, 6707, 6705, 1, 0, 0, 0, 6707, 6706, 1, 0, 0, 0, 6708, 653, 1, 0, 0, 0, 6709, 6726, 5, 401, 0, 0, 6710, 6726, 5, 402, 0, 0, 6711, 6726, 5, 416, 0, 0, 6712, 6726, 5, 388, 0, 0, 6713, 6726, 5, 413, 0, 0, 6714, 6716, 5, 398, 0, 0, 6715, 6717, 3, 656, 328, 0, 6716, 6715, 1, 0, 0, 0, 6716, 6717, 1, 0, 0, 0, 6717, 6726, 1, 0, 0, 0, 6718, 6719, 5, 190, 0, 0, 6719, 6726, 5, 412, 0, 0, 6720, 6722, 7, 89, 0, 0, 6721, 6723, 3, 528, 264, 0, 6722, 6721, 1, 0, 0, 0, 6722, 6723, 1, 0, 0, 0, 6723, 6726, 1, 0, 0, 0, 6724, 6726, 5, 390, 0, 0, 6725, 6709, 1, 0, 0, 0, 6725, 6710, 1, 0, 0, 0, 6725, 6711, 1, 0, 0, 0, 6725, 6712, 1, 0, 0, 0, 6725, 6713, 1, 0, 0, 0, 6725, 6714, 1, 0, 0, 0, 6725, 6718, 1, 0, 0, 0, 6725, 6720, 1, 0, 0, 0, 6725, 6724, 1, 0, 0, 0, 6726, 655, 1, 0, 0, 0, 6727, 6728, 5, 2, 0, 0, 6728, 6729, 5, 574, 0, 0, 6729, 6730, 5, 3, 0, 0, 6730, 657, 1, 0, 0, 0, 6731, 6733, 5, 389, 0, 0, 6732, 6734, 5, 374, 0, 0, 6733, 6732, 1, 0, 0, 0, 6733, 6734, 1, 0, 0, 0, 6734, 6736, 1, 0, 0, 0, 6735, 6737, 3, 528, 264, 0, 6736, 6735, 1, 0, 0, 0, 6736, 6737, 1, 0, 0, 0, 6737, 659, 1, 0, 0, 0, 6738, 6740, 7, 90, 0, 0, 6739, 6741, 5, 374, 0, 0, 6740, 6739, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 6749, 1, 0, 0, 0, 6742, 6749, 5, 423, 0, 0, 6743, 6744, 5, 405, 0, 0, 6744, 6746, 7, 91, 0, 0, 6745, 6747, 5, 374, 0, 0, 6746, 6745, 1, 0, 0, 0, 6746, 6747, 1, 0, 0, 0, 6747, 6749, 1, 0, 0, 0, 6748, 6738, 1, 0, 0, 0, 6748, 6742, 1, 0, 0, 0, 6748, 6743, 1, 0, 0, 0, 6749, 6751, 1, 0, 0, 0, 6750, 6752, 3, 656, 328, 0, 6751, 6750, 1, 0, 0, 0, 6751, 6752, 1, 0, 0, 0, 6752, 661, 1, 0, 0, 0, 6753, 6755, 7, 92, 0, 0, 6754, 6756, 3, 656, 328, 0, 6755, 6754, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 6760, 1, 0, 0, 0, 6757, 6758, 7, 27, 0, 0, 6758, 6759, 5, 418, 0, 0, 6759, 6761, 5, 386, 0, 0, 6760, 6757, 1, 0, 0, 0, 6760, 6761, 1, 0, 0, 0, 6761, 663, 1, 0, 0, 0, 6762, 6792, 5, 264, 0, 0, 6763, 6792, 3, 666, 333, 0, 6764, 6767, 5, 384, 0, 0, 6765, 6766, 5, 94, 0, 0, 6766, 6768, 5, 264, 0, 0, 6767, 6765, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6792, 1, 0, 0, 0, 6769, 6776, 5, 176, 0, 0, 6770, 6774, 5, 94, 0, 0, 6771, 6775, 5, 218, 0, 0, 6772, 6775, 5, 261, 0, 0, 6773, 6775, 3, 666, 333, 0, 6774, 6771, 1, 0, 0, 0, 6774, 6772, 1, 0, 0, 0, 6774, 6773, 1, 0, 0, 0, 6775, 6777, 1, 0, 0, 0, 6776, 6770, 1, 0, 0, 0, 6776, 6777, 1, 0, 0, 0, 6777, 6792, 1, 0, 0, 0, 6778, 6784, 5, 218, 0, 0, 6779, 6782, 5, 94, 0, 0, 6780, 6783, 5, 261, 0, 0, 6781, 6783, 3, 666, 333, 0, 6782, 6780, 1, 0, 0, 0, 6782, 6781, 1, 0, 0, 0, 6783, 6785, 1, 0, 0, 0, 6784, 6779, 1, 0, 0, 0, 6784, 6785, 1, 0, 0, 0, 6785, 6792, 1, 0, 0, 0, 6786, 6789, 5, 261, 0, 0, 6787, 6788, 5, 94, 0, 0, 6788, 6790, 3, 666, 333, 0, 6789, 6787, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 6792, 1, 0, 0, 0, 6791, 6762, 1, 0, 0, 0, 6791, 6763, 1, 0, 0, 0, 6791, 6764, 1, 0, 0, 0, 6791, 6769, 1, 0, 0, 0, 6791, 6778, 1, 0, 0, 0, 6791, 6786, 1, 0, 0, 0, 6792, 665, 1, 0, 0, 0, 6793, 6795, 5, 326, 0, 0, 6794, 6796, 3, 656, 328, 0, 6795, 6794, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 667, 1, 0, 0, 0, 6797, 6798, 7, 93, 0, 0, 6798, 669, 1, 0, 0, 0, 6799, 6800, 3, 672, 336, 0, 6800, 671, 1, 0, 0, 0, 6801, 6802, 6, 336, -1, 0, 6802, 6804, 3, 676, 338, 0, 6803, 6805, 3, 674, 337, 0, 6804, 6803, 1, 0, 0, 0, 6804, 6805, 1, 0, 0, 0, 6805, 6809, 1, 0, 0, 0, 6806, 6807, 5, 77, 0, 0, 6807, 6809, 3, 672, 336, 3, 6808, 6801, 1, 0, 0, 0, 6808, 6806, 1, 0, 0, 0, 6809, 6818, 1, 0, 0, 0, 6810, 6811, 10, 2, 0, 0, 6811, 6812, 5, 33, 0, 0, 6812, 6817, 3, 672, 336, 3, 6813, 6814, 10, 1, 0, 0, 6814, 6815, 5, 82, 0, 0, 6815, 6817, 3, 672, 336, 2, 6816, 6810, 1, 0, 0, 0, 6816, 6813, 1, 0, 0, 0, 6817, 6820, 1, 0, 0, 0, 6818, 6816, 1, 0, 0, 0, 6818, 6819, 1, 0, 0, 0, 6819, 673, 1, 0, 0, 0, 6820, 6818, 1, 0, 0, 0, 6821, 6822, 3, 668, 334, 0, 6822, 6823, 3, 676, 338, 0, 6823, 6893, 1, 0, 0, 0, 6824, 6825, 3, 668, 334, 0, 6825, 6826, 3, 726, 363, 0, 6826, 6832, 3, 716, 358, 0, 6827, 6833, 3, 556, 278, 0, 6828, 6829, 5, 2, 0, 0, 6829, 6830, 3, 670, 335, 0, 6830, 6831, 5, 3, 0, 0, 6831, 6833, 1, 0, 0, 0, 6832, 6827, 1, 0, 0, 0, 6832, 6828, 1, 0, 0, 0, 6833, 6893, 1, 0, 0, 0, 6834, 6836, 5, 77, 0, 0, 6835, 6834, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6837, 1, 0, 0, 0, 6837, 6838, 5, 387, 0, 0, 6838, 6839, 3, 676, 338, 0, 6839, 6840, 5, 33, 0, 0, 6840, 6841, 3, 676, 338, 0, 6841, 6893, 1, 0, 0, 0, 6842, 6844, 5, 77, 0, 0, 6843, 6842, 1, 0, 0, 0, 6843, 6844, 1, 0, 0, 0, 6844, 6845, 1, 0, 0, 0, 6845, 6846, 5, 68, 0, 0, 6846, 6847, 5, 2, 0, 0, 6847, 6852, 3, 670, 335, 0, 6848, 6849, 5, 6, 0, 0, 6849, 6851, 3, 670, 335, 0, 6850, 6848, 1, 0, 0, 0, 6851, 6854, 1, 0, 0, 0, 6852, 6850, 1, 0, 0, 0, 6852, 6853, 1, 0, 0, 0, 6853, 6855, 1, 0, 0, 0, 6854, 6852, 1, 0, 0, 0, 6855, 6856, 5, 3, 0, 0, 6856, 6893, 1, 0, 0, 0, 6857, 6859, 5, 77, 0, 0, 6858, 6857, 1, 0, 0, 0, 6858, 6859, 1, 0, 0, 0, 6859, 6860, 1, 0, 0, 0, 6860, 6861, 5, 68, 0, 0, 6861, 6893, 3, 556, 278, 0, 6862, 6864, 5, 77, 0, 0, 6863, 6862, 1, 0, 0, 0, 6863, 6864, 1, 0, 0, 0, 6864, 6873, 1, 0, 0, 0, 6865, 6874, 5, 120, 0, 0, 6866, 6874, 5, 114, 0, 0, 6867, 6868, 5, 127, 0, 0, 6868, 6874, 5, 94, 0, 0, 6869, 6871, 5, 387, 0, 0, 6870, 6872, 5, 91, 0, 0, 6871, 6870, 1, 0, 0, 0, 6871, 6872, 1, 0, 0, 0, 6872, 6874, 1, 0, 0, 0, 6873, 6865, 1, 0, 0, 0, 6873, 6866, 1, 0, 0, 0, 6873, 6867, 1, 0, 0, 0, 6873, 6869, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6878, 3, 676, 338, 0, 6876, 6877, 5, 197, 0, 0, 6877, 6879, 3, 676, 338, 0, 6878, 6876, 1, 0, 0, 0, 6878, 6879, 1, 0, 0, 0, 6879, 6893, 1, 0, 0, 0, 6880, 6882, 5, 116, 0, 0, 6881, 6883, 5, 77, 0, 0, 6882, 6881, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6884, 1, 0, 0, 0, 6884, 6893, 5, 78, 0, 0, 6885, 6887, 5, 116, 0, 0, 6886, 6888, 5, 77, 0, 0, 6887, 6886, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 6889, 1, 0, 0, 0, 6889, 6890, 5, 56, 0, 0, 6890, 6891, 5, 64, 0, 0, 6891, 6893, 3, 676, 338, 0, 6892, 6821, 1, 0, 0, 0, 6892, 6824, 1, 0, 0, 0, 6892, 6835, 1, 0, 0, 0, 6892, 6843, 1, 0, 0, 0, 6892, 6858, 1, 0, 0, 0, 6892, 6863, 1, 0, 0, 0, 6892, 6880, 1, 0, 0, 0, 6892, 6885, 1, 0, 0, 0, 6893, 675, 1, 0, 0, 0, 6894, 6895, 6, 338, -1, 0, 6895, 6899, 3, 678, 339, 0, 6896, 6897, 7, 30, 0, 0, 6897, 6899, 3, 676, 338, 4, 6898, 6894, 1, 0, 0, 0, 6898, 6896, 1, 0, 0, 0, 6899, 6916, 1, 0, 0, 0, 6900, 6901, 10, 3, 0, 0, 6901, 6902, 7, 94, 0, 0, 6902, 6915, 3, 676, 338, 4, 6903, 6904, 10, 2, 0, 0, 6904, 6905, 7, 30, 0, 0, 6905, 6915, 3, 676, 338, 3, 6906, 6907, 10, 1, 0, 0, 6907, 6908, 5, 15, 0, 0, 6908, 6915, 3, 676, 338, 2, 6909, 6910, 10, 5, 0, 0, 6910, 6911, 5, 142, 0, 0, 6911, 6912, 5, 418, 0, 0, 6912, 6913, 5, 386, 0, 0, 6913, 6915, 3, 670, 335, 0, 6914, 6900, 1, 0, 0, 0, 6914, 6903, 1, 0, 0, 0, 6914, 6906, 1, 0, 0, 0, 6914, 6909, 1, 0, 0, 0, 6915, 6918, 1, 0, 0, 0, 6916, 6914, 1, 0, 0, 0, 6916, 6917, 1, 0, 0, 0, 6917, 677, 1, 0, 0, 0, 6918, 6916, 1, 0, 0, 0, 6919, 6920, 6, 339, -1, 0, 6920, 6921, 7, 95, 0, 0, 6921, 7008, 3, 556, 278, 0, 6922, 6925, 5, 35, 0, 0, 6923, 6926, 3, 556, 278, 0, 6924, 6926, 3, 742, 371, 0, 6925, 6923, 1, 0, 0, 0, 6925, 6924, 1, 0, 0, 0, 6926, 7008, 1, 0, 0, 0, 6927, 6928, 5, 28, 0, 0, 6928, 7008, 3, 756, 378, 0, 6929, 6930, 5, 470, 0, 0, 6930, 7008, 3, 528, 264, 0, 6931, 7008, 5, 574, 0, 0, 6932, 7008, 5, 576, 0, 0, 6933, 7008, 5, 566, 0, 0, 6934, 7008, 5, 570, 0, 0, 6935, 6945, 3, 812, 406, 0, 6936, 6946, 3, 814, 407, 0, 6937, 6938, 5, 2, 0, 0, 6938, 6940, 3, 738, 369, 0, 6939, 6941, 3, 580, 290, 0, 6940, 6939, 1, 0, 0, 0, 6940, 6941, 1, 0, 0, 0, 6941, 6942, 1, 0, 0, 0, 6942, 6943, 5, 3, 0, 0, 6943, 6944, 3, 814, 407, 0, 6944, 6946, 1, 0, 0, 0, 6945, 6936, 1, 0, 0, 0, 6945, 6937, 1, 0, 0, 0, 6946, 7008, 1, 0, 0, 0, 6947, 6949, 3, 652, 326, 0, 6948, 6947, 1, 0, 0, 0, 6948, 6949, 1, 0, 0, 0, 6949, 6950, 1, 0, 0, 0, 6950, 7008, 3, 814, 407, 0, 6951, 6959, 5, 403, 0, 0, 6952, 6954, 3, 814, 407, 0, 6953, 6955, 3, 664, 332, 0, 6954, 6953, 1, 0, 0, 0, 6954, 6955, 1, 0, 0, 0, 6955, 6960, 1, 0, 0, 0, 6956, 6957, 3, 656, 328, 0, 6957, 6958, 3, 814, 407, 0, 6958, 6960, 1, 0, 0, 0, 6959, 6952, 1, 0, 0, 0, 6959, 6956, 1, 0, 0, 0, 6960, 7008, 1, 0, 0, 0, 6961, 7008, 5, 96, 0, 0, 6962, 7008, 5, 60, 0, 0, 6963, 7008, 5, 78, 0, 0, 6964, 7008, 5, 577, 0, 0, 6965, 6966, 5, 2, 0, 0, 6966, 6967, 3, 670, 335, 0, 6967, 6968, 5, 3, 0, 0, 6968, 6969, 3, 756, 378, 0, 6969, 7008, 1, 0, 0, 0, 6970, 6972, 5, 40, 0, 0, 6971, 6973, 3, 670, 335, 0, 6972, 6971, 1, 0, 0, 0, 6972, 6973, 1, 0, 0, 0, 6973, 6975, 1, 0, 0, 0, 6974, 6976, 3, 750, 375, 0, 6975, 6974, 1, 0, 0, 0, 6976, 6977, 1, 0, 0, 0, 6977, 6975, 1, 0, 0, 0, 6977, 6978, 1, 0, 0, 0, 6978, 6981, 1, 0, 0, 0, 6979, 6980, 5, 58, 0, 0, 6980, 6982, 3, 670, 335, 0, 6981, 6979, 1, 0, 0, 0, 6981, 6982, 1, 0, 0, 0, 6982, 6983, 1, 0, 0, 0, 6983, 6984, 5, 454, 0, 0, 6984, 7008, 1, 0, 0, 0, 6985, 7008, 3, 682, 341, 0, 6986, 6988, 3, 556, 278, 0, 6987, 6989, 3, 754, 377, 0, 6988, 6987, 1, 0, 0, 0, 6988, 6989, 1, 0, 0, 0, 6989, 7008, 1, 0, 0, 0, 6990, 7008, 3, 714, 357, 0, 6991, 6992, 5, 2, 0, 0, 6992, 6993, 3, 670, 335, 0, 6993, 6994, 5, 6, 0, 0, 6994, 6995, 3, 728, 364, 0, 6995, 6996, 5, 3, 0, 0, 6996, 7008, 1, 0, 0, 0, 6997, 6998, 3, 712, 356, 0, 6998, 6999, 5, 125, 0, 0, 6999, 7000, 3, 712, 356, 0, 7000, 7008, 1, 0, 0, 0, 7001, 7008, 3, 806, 403, 0, 7002, 7003, 7, 30, 0, 0, 7003, 7008, 3, 678, 339, 5, 7004, 7005, 3, 722, 361, 0, 7005, 7006, 3, 678, 339, 2, 7006, 7008, 1, 0, 0, 0, 7007, 6919, 1, 0, 0, 0, 7007, 6922, 1, 0, 0, 0, 7007, 6927, 1, 0, 0, 0, 7007, 6929, 1, 0, 0, 0, 7007, 6931, 1, 0, 0, 0, 7007, 6932, 1, 0, 0, 0, 7007, 6933, 1, 0, 0, 0, 7007, 6934, 1, 0, 0, 0, 7007, 6935, 1, 0, 0, 0, 7007, 6948, 1, 0, 0, 0, 7007, 6951, 1, 0, 0, 0, 7007, 6961, 1, 0, 0, 0, 7007, 6962, 1, 0, 0, 0, 7007, 6963, 1, 0, 0, 0, 7007, 6964, 1, 0, 0, 0, 7007, 6965, 1, 0, 0, 0, 7007, 6970, 1, 0, 0, 0, 7007, 6985, 1, 0, 0, 0, 7007, 6986, 1, 0, 0, 0, 7007, 6990, 1, 0, 0, 0, 7007, 6991, 1, 0, 0, 0, 7007, 6997, 1, 0, 0, 0, 7007, 7001, 1, 0, 0, 0, 7007, 7002, 1, 0, 0, 0, 7007, 7004, 1, 0, 0, 0, 7008, 7036, 1, 0, 0, 0, 7009, 7010, 10, 3, 0, 0, 7010, 7011, 3, 720, 360, 0, 7011, 7012, 3, 678, 339, 4, 7012, 7035, 1, 0, 0, 0, 7013, 7014, 10, 6, 0, 0, 7014, 7015, 5, 26, 0, 0, 7015, 7035, 3, 648, 324, 0, 7016, 7017, 10, 4, 0, 0, 7017, 7019, 3, 722, 361, 0, 7018, 7020, 3, 678, 339, 0, 7019, 7018, 1, 0, 0, 0, 7019, 7020, 1, 0, 0, 0, 7020, 7035, 1, 0, 0, 0, 7021, 7022, 10, 1, 0, 0, 7022, 7024, 5, 116, 0, 0, 7023, 7025, 5, 77, 0, 0, 7024, 7023, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 7032, 1, 0, 0, 0, 7026, 7027, 5, 56, 0, 0, 7027, 7028, 5, 64, 0, 0, 7028, 7033, 3, 678, 339, 0, 7029, 7030, 5, 275, 0, 0, 7030, 7033, 3, 522, 261, 0, 7031, 7033, 5, 188, 0, 0, 7032, 7026, 1, 0, 0, 0, 7032, 7029, 1, 0, 0, 0, 7032, 7031, 1, 0, 0, 0, 7033, 7035, 1, 0, 0, 0, 7034, 7009, 1, 0, 0, 0, 7034, 7013, 1, 0, 0, 0, 7034, 7016, 1, 0, 0, 0, 7034, 7021, 1, 0, 0, 0, 7035, 7038, 1, 0, 0, 0, 7036, 7034, 1, 0, 0, 0, 7036, 7037, 1, 0, 0, 0, 7037, 679, 1, 0, 0, 0, 7038, 7036, 1, 0, 0, 0, 7039, 7040, 3, 812, 406, 0, 7040, 7061, 5, 2, 0, 0, 7041, 7045, 3, 738, 369, 0, 7042, 7043, 5, 6, 0, 0, 7043, 7044, 5, 101, 0, 0, 7044, 7046, 3, 740, 370, 0, 7045, 7042, 1, 0, 0, 0, 7045, 7046, 1, 0, 0, 0, 7046, 7048, 1, 0, 0, 0, 7047, 7049, 3, 580, 290, 0, 7048, 7047, 1, 0, 0, 0, 7048, 7049, 1, 0, 0, 0, 7049, 7062, 1, 0, 0, 0, 7050, 7051, 5, 101, 0, 0, 7051, 7053, 3, 740, 370, 0, 7052, 7054, 3, 580, 290, 0, 7053, 7052, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7062, 1, 0, 0, 0, 7055, 7056, 7, 81, 0, 0, 7056, 7058, 3, 738, 369, 0, 7057, 7059, 3, 580, 290, 0, 7058, 7057, 1, 0, 0, 0, 7058, 7059, 1, 0, 0, 0, 7059, 7062, 1, 0, 0, 0, 7060, 7062, 5, 9, 0, 0, 7061, 7041, 1, 0, 0, 0, 7061, 7050, 1, 0, 0, 0, 7061, 7055, 1, 0, 0, 0, 7061, 7060, 1, 0, 0, 0, 7061, 7062, 1, 0, 0, 0, 7062, 7063, 1, 0, 0, 0, 7063, 7064, 5, 3, 0, 0, 7064, 681, 1, 0, 0, 0, 7065, 7072, 3, 680, 340, 0, 7066, 7067, 5, 479, 0, 0, 7067, 7068, 5, 66, 0, 0, 7068, 7069, 5, 2, 0, 0, 7069, 7070, 3, 580, 290, 0, 7070, 7071, 5, 3, 0, 0, 7071, 7073, 1, 0, 0, 0, 7072, 7066, 1, 0, 0, 0, 7072, 7073, 1, 0, 0, 0, 7073, 7080, 1, 0, 0, 0, 7074, 7075, 5, 480, 0, 0, 7075, 7076, 5, 2, 0, 0, 7076, 7077, 5, 103, 0, 0, 7077, 7078, 3, 670, 335, 0, 7078, 7079, 5, 3, 0, 0, 7079, 7081, 1, 0, 0, 0, 7080, 7074, 1, 0, 0, 0, 7080, 7081, 1, 0, 0, 0, 7081, 7087, 1, 0, 0, 0, 7082, 7085, 5, 124, 0, 0, 7083, 7086, 3, 706, 353, 0, 7084, 7086, 3, 824, 412, 0, 7085, 7083, 1, 0, 0, 0, 7085, 7084, 1, 0, 0, 0, 7086, 7088, 1, 0, 0, 0, 7087, 7082, 1, 0, 0, 0, 7087, 7088, 1, 0, 0, 0, 7088, 7091, 1, 0, 0, 0, 7089, 7091, 3, 686, 343, 0, 7090, 7065, 1, 0, 0, 0, 7090, 7089, 1, 0, 0, 0, 7091, 683, 1, 0, 0, 0, 7092, 7095, 3, 680, 340, 0, 7093, 7095, 3, 686, 343, 0, 7094, 7092, 1, 0, 0, 0, 7094, 7093, 1, 0, 0, 0, 7095, 685, 1, 0, 0, 0, 7096, 7097, 5, 108, 0, 0, 7097, 7098, 5, 62, 0, 0, 7098, 7099, 5, 2, 0, 0, 7099, 7100, 3, 670, 335, 0, 7100, 7101, 5, 3, 0, 0, 7101, 7271, 1, 0, 0, 0, 7102, 7271, 5, 48, 0, 0, 7103, 7105, 7, 96, 0, 0, 7104, 7106, 3, 656, 328, 0, 7105, 7104, 1, 0, 0, 0, 7105, 7106, 1, 0, 0, 0, 7106, 7271, 1, 0, 0, 0, 7107, 7271, 5, 49, 0, 0, 7108, 7271, 5, 52, 0, 0, 7109, 7271, 5, 89, 0, 0, 7110, 7271, 5, 99, 0, 0, 7111, 7271, 5, 47, 0, 0, 7112, 7271, 5, 111, 0, 0, 7113, 7114, 7, 97, 0, 0, 7114, 7115, 5, 2, 0, 0, 7115, 7116, 3, 670, 335, 0, 7116, 7117, 5, 36, 0, 0, 7117, 7118, 3, 648, 324, 0, 7118, 7119, 5, 3, 0, 0, 7119, 7271, 1, 0, 0, 0, 7120, 7121, 5, 397, 0, 0, 7121, 7126, 5, 2, 0, 0, 7122, 7123, 3, 744, 372, 0, 7123, 7124, 5, 64, 0, 0, 7124, 7125, 3, 670, 335, 0, 7125, 7127, 1, 0, 0, 0, 7126, 7122, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7128, 1, 0, 0, 0, 7128, 7271, 5, 3, 0, 0, 7129, 7130, 5, 489, 0, 0, 7130, 7131, 5, 2, 0, 0, 7131, 7134, 3, 670, 335, 0, 7132, 7133, 5, 6, 0, 0, 7133, 7135, 3, 746, 373, 0, 7134, 7132, 1, 0, 0, 0, 7134, 7135, 1, 0, 0, 0, 7135, 7136, 1, 0, 0, 0, 7136, 7137, 5, 3, 0, 0, 7137, 7271, 1, 0, 0, 0, 7138, 7139, 5, 410, 0, 0, 7139, 7140, 5, 2, 0, 0, 7140, 7141, 3, 670, 335, 0, 7141, 7142, 5, 84, 0, 0, 7142, 7143, 3, 670, 335, 0, 7143, 7144, 5, 64, 0, 0, 7144, 7147, 3, 670, 335, 0, 7145, 7146, 5, 62, 0, 0, 7146, 7148, 3, 670, 335, 0, 7147, 7145, 1, 0, 0, 0, 7147, 7148, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7150, 5, 3, 0, 0, 7150, 7271, 1, 0, 0, 0, 7151, 7152, 5, 411, 0, 0, 7152, 7157, 5, 2, 0, 0, 7153, 7154, 3, 678, 339, 0, 7154, 7155, 5, 68, 0, 0, 7155, 7156, 3, 678, 339, 0, 7156, 7158, 1, 0, 0, 0, 7157, 7153, 1, 0, 0, 0, 7157, 7158, 1, 0, 0, 0, 7158, 7159, 1, 0, 0, 0, 7159, 7271, 5, 3, 0, 0, 7160, 7161, 5, 417, 0, 0, 7161, 7163, 5, 2, 0, 0, 7162, 7164, 3, 748, 374, 0, 7163, 7162, 1, 0, 0, 0, 7163, 7164, 1, 0, 0, 0, 7164, 7165, 1, 0, 0, 0, 7165, 7271, 5, 3, 0, 0, 7166, 7167, 5, 421, 0, 0, 7167, 7169, 5, 2, 0, 0, 7168, 7170, 7, 98, 0, 0, 7169, 7168, 1, 0, 0, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7175, 1, 0, 0, 0, 7171, 7173, 3, 670, 335, 0, 7172, 7171, 1, 0, 0, 0, 7172, 7173, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7176, 5, 64, 0, 0, 7175, 7172, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7178, 3, 728, 364, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7180, 5, 3, 0, 0, 7180, 7271, 1, 0, 0, 0, 7181, 7182, 5, 408, 0, 0, 7182, 7183, 5, 2, 0, 0, 7183, 7184, 3, 670, 335, 0, 7184, 7185, 5, 6, 0, 0, 7185, 7186, 3, 670, 335, 0, 7186, 7187, 5, 3, 0, 0, 7187, 7271, 1, 0, 0, 0, 7188, 7189, 7, 99, 0, 0, 7189, 7271, 3, 528, 264, 0, 7190, 7191, 5, 426, 0, 0, 7191, 7192, 5, 2, 0, 0, 7192, 7193, 5, 266, 0, 0, 7193, 7203, 3, 830, 415, 0, 7194, 7201, 5, 6, 0, 0, 7195, 7196, 5, 424, 0, 0, 7196, 7197, 5, 2, 0, 0, 7197, 7198, 3, 688, 344, 0, 7198, 7199, 5, 3, 0, 0, 7199, 7202, 1, 0, 0, 0, 7200, 7202, 3, 728, 364, 0, 7201, 7195, 1, 0, 0, 0, 7201, 7200, 1, 0, 0, 0, 7202, 7204, 1, 0, 0, 0, 7203, 7194, 1, 0, 0, 0, 7203, 7204, 1, 0, 0, 0, 7204, 7205, 1, 0, 0, 0, 7205, 7206, 5, 3, 0, 0, 7206, 7271, 1, 0, 0, 0, 7207, 7208, 5, 427, 0, 0, 7208, 7209, 5, 2, 0, 0, 7209, 7210, 3, 678, 339, 0, 7210, 7211, 3, 694, 347, 0, 7211, 7212, 5, 3, 0, 0, 7212, 7271, 1, 0, 0, 0, 7213, 7214, 5, 428, 0, 0, 7214, 7215, 5, 2, 0, 0, 7215, 7216, 3, 688, 344, 0, 7216, 7217, 5, 3, 0, 0, 7217, 7271, 1, 0, 0, 0, 7218, 7219, 5, 429, 0, 0, 7219, 7220, 5, 2, 0, 0, 7220, 7221, 3, 692, 346, 0, 7221, 7224, 3, 670, 335, 0, 7222, 7223, 7, 100, 0, 0, 7223, 7225, 5, 378, 0, 0, 7224, 7222, 1, 0, 0, 0, 7224, 7225, 1, 0, 0, 0, 7225, 7226, 1, 0, 0, 0, 7226, 7227, 5, 3, 0, 0, 7227, 7271, 1, 0, 0, 0, 7228, 7229, 5, 430, 0, 0, 7229, 7230, 5, 2, 0, 0, 7230, 7231, 5, 266, 0, 0, 7231, 7234, 3, 830, 415, 0, 7232, 7233, 5, 6, 0, 0, 7233, 7235, 3, 670, 335, 0, 7234, 7232, 1, 0, 0, 0, 7234, 7235, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7237, 5, 3, 0, 0, 7237, 7271, 1, 0, 0, 0, 7238, 7239, 5, 431, 0, 0, 7239, 7240, 5, 2, 0, 0, 7240, 7241, 5, 383, 0, 0, 7241, 7242, 3, 670, 335, 0, 7242, 7243, 5, 6, 0, 0, 7243, 7247, 5, 375, 0, 0, 7244, 7245, 5, 269, 0, 0, 7245, 7248, 5, 450, 0, 0, 7246, 7248, 3, 670, 335, 0, 7247, 7244, 1, 0, 0, 0, 7247, 7246, 1, 0, 0, 0, 7248, 7258, 1, 0, 0, 0, 7249, 7250, 5, 6, 0, 0, 7250, 7256, 5, 339, 0, 0, 7251, 7253, 5, 269, 0, 0, 7252, 7251, 1, 0, 0, 0, 7252, 7253, 1, 0, 0, 0, 7253, 7254, 1, 0, 0, 0, 7254, 7257, 5, 450, 0, 0, 7255, 7257, 5, 385, 0, 0, 7256, 7252, 1, 0, 0, 0, 7256, 7255, 1, 0, 0, 0, 7257, 7259, 1, 0, 0, 0, 7258, 7249, 1, 0, 0, 0, 7258, 7259, 1, 0, 0, 0, 7259, 7260, 1, 0, 0, 0, 7260, 7261, 5, 3, 0, 0, 7261, 7271, 1, 0, 0, 0, 7262, 7263, 5, 432, 0, 0, 7263, 7264, 5, 2, 0, 0, 7264, 7265, 3, 692, 346, 0, 7265, 7266, 3, 670, 335, 0, 7266, 7267, 5, 36, 0, 0, 7267, 7268, 3, 650, 325, 0, 7268, 7269, 5, 3, 0, 0, 7269, 7271, 1, 0, 0, 0, 7270, 7096, 1, 0, 0, 0, 7270, 7102, 1, 0, 0, 0, 7270, 7103, 1, 0, 0, 0, 7270, 7107, 1, 0, 0, 0, 7270, 7108, 1, 0, 0, 0, 7270, 7109, 1, 0, 0, 0, 7270, 7110, 1, 0, 0, 0, 7270, 7111, 1, 0, 0, 0, 7270, 7112, 1, 0, 0, 0, 7270, 7113, 1, 0, 0, 0, 7270, 7120, 1, 0, 0, 0, 7270, 7129, 1, 0, 0, 0, 7270, 7138, 1, 0, 0, 0, 7270, 7151, 1, 0, 0, 0, 7270, 7160, 1, 0, 0, 0, 7270, 7166, 1, 0, 0, 0, 7270, 7181, 1, 0, 0, 0, 7270, 7188, 1, 0, 0, 0, 7270, 7190, 1, 0, 0, 0, 7270, 7207, 1, 0, 0, 0, 7270, 7213, 1, 0, 0, 0, 7270, 7218, 1, 0, 0, 0, 7270, 7228, 1, 0, 0, 0, 7270, 7238, 1, 0, 0, 0, 7270, 7262, 1, 0, 0, 0, 7271, 687, 1, 0, 0, 0, 7272, 7277, 3, 690, 345, 0, 7273, 7274, 5, 6, 0, 0, 7274, 7276, 3, 690, 345, 0, 7275, 7273, 1, 0, 0, 0, 7276, 7279, 1, 0, 0, 0, 7277, 7275, 1, 0, 0, 0, 7277, 7278, 1, 0, 0, 0, 7278, 689, 1, 0, 0, 0, 7279, 7277, 1, 0, 0, 0, 7280, 7283, 3, 670, 335, 0, 7281, 7282, 5, 36, 0, 0, 7282, 7284, 3, 830, 415, 0, 7283, 7281, 1, 0, 0, 0, 7283, 7284, 1, 0, 0, 0, 7284, 691, 1, 0, 0, 0, 7285, 7286, 7, 101, 0, 0, 7286, 693, 1, 0, 0, 0, 7287, 7289, 5, 286, 0, 0, 7288, 7290, 3, 696, 348, 0, 7289, 7288, 1, 0, 0, 0, 7289, 7290, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 7293, 3, 678, 339, 0, 7292, 7294, 3, 696, 348, 0, 7293, 7292, 1, 0, 0, 0, 7293, 7294, 1, 0, 0, 0, 7294, 695, 1, 0, 0, 0, 7295, 7296, 5, 147, 0, 0, 7296, 7297, 7, 102, 0, 0, 7297, 697, 1, 0, 0, 0, 7298, 7299, 5, 104, 0, 0, 7299, 7304, 3, 702, 351, 0, 7300, 7301, 5, 6, 0, 0, 7301, 7303, 3, 702, 351, 0, 7302, 7300, 1, 0, 0, 0, 7303, 7306, 1, 0, 0, 0, 7304, 7302, 1, 0, 0, 0, 7304, 7305, 1, 0, 0, 0, 7305, 699, 1, 0, 0, 0, 7306, 7304, 1, 0, 0, 0, 7307, 7308, 5, 67, 0, 0, 7308, 7309, 3, 670, 335, 0, 7309, 701, 1, 0, 0, 0, 7310, 7311, 3, 824, 412, 0, 7311, 7312, 5, 36, 0, 0, 7312, 7313, 3, 706, 353, 0, 7313, 703, 1, 0, 0, 0, 7314, 7317, 5, 124, 0, 0, 7315, 7318, 3, 706, 353, 0, 7316, 7318, 3, 824, 412, 0, 7317, 7315, 1, 0, 0, 0, 7317, 7316, 1, 0, 0, 0, 7318, 705, 1, 0, 0, 0, 7319, 7321, 5, 2, 0, 0, 7320, 7322, 3, 824, 412, 0, 7321, 7320, 1, 0, 0, 0, 7321, 7322, 1, 0, 0, 0, 7322, 7326, 1, 0, 0, 0, 7323, 7324, 5, 285, 0, 0, 7324, 7325, 5, 147, 0, 0, 7325, 7327, 3, 728, 364, 0, 7326, 7323, 1, 0, 0, 0, 7326, 7327, 1, 0, 0, 0, 7327, 7329, 1, 0, 0, 0, 7328, 7330, 3, 580, 290, 0, 7329, 7328, 1, 0, 0, 0, 7329, 7330, 1, 0, 0, 0, 7330, 7332, 1, 0, 0, 0, 7331, 7333, 3, 708, 354, 0, 7332, 7331, 1, 0, 0, 0, 7332, 7333, 1, 0, 0, 0, 7333, 7334, 1, 0, 0, 0, 7334, 7335, 5, 3, 0, 0, 7335, 707, 1, 0, 0, 0, 7336, 7341, 7, 103, 0, 0, 7337, 7338, 5, 387, 0, 0, 7338, 7339, 3, 710, 355, 0, 7339, 7340, 5, 33, 0, 0, 7340, 7342, 1, 0, 0, 0, 7341, 7337, 1, 0, 0, 0, 7341, 7342, 1, 0, 0, 0, 7342, 7343, 1, 0, 0, 0, 7343, 7344, 3, 710, 355, 0, 7344, 7354, 1, 0, 0, 0, 7345, 7352, 5, 199, 0, 0, 7346, 7347, 5, 434, 0, 0, 7347, 7353, 5, 414, 0, 0, 7348, 7353, 5, 66, 0, 0, 7349, 7353, 5, 467, 0, 0, 7350, 7351, 5, 269, 0, 0, 7351, 7353, 5, 482, 0, 0, 7352, 7346, 1, 0, 0, 0, 7352, 7348, 1, 0, 0, 0, 7352, 7349, 1, 0, 0, 0, 7352, 7350, 1, 0, 0, 0, 7353, 7355, 1, 0, 0, 0, 7354, 7345, 1, 0, 0, 0, 7354, 7355, 1, 0, 0, 0, 7355, 709, 1, 0, 0, 0, 7356, 7359, 5, 362, 0, 0, 7357, 7359, 3, 670, 335, 0, 7358, 7356, 1, 0, 0, 0, 7358, 7357, 1, 0, 0, 0, 7359, 7360, 1, 0, 0, 0, 7360, 7364, 7, 104, 0, 0, 7361, 7362, 5, 434, 0, 0, 7362, 7364, 5, 414, 0, 0, 7363, 7358, 1, 0, 0, 0, 7363, 7361, 1, 0, 0, 0, 7364, 711, 1, 0, 0, 0, 7365, 7373, 3, 714, 357, 0, 7366, 7367, 5, 2, 0, 0, 7367, 7368, 3, 728, 364, 0, 7368, 7369, 5, 6, 0, 0, 7369, 7370, 3, 670, 335, 0, 7370, 7371, 5, 3, 0, 0, 7371, 7373, 1, 0, 0, 0, 7372, 7365, 1, 0, 0, 0, 7372, 7366, 1, 0, 0, 0, 7373, 713, 1, 0, 0, 0, 7374, 7375, 5, 414, 0, 0, 7375, 7377, 5, 2, 0, 0, 7376, 7378, 3, 728, 364, 0, 7377, 7376, 1, 0, 0, 0, 7377, 7378, 1, 0, 0, 0, 7378, 7379, 1, 0, 0, 0, 7379, 7380, 5, 3, 0, 0, 7380, 715, 1, 0, 0, 0, 7381, 7382, 7, 105, 0, 0, 7382, 717, 1, 0, 0, 0, 7383, 7386, 5, 29, 0, 0, 7384, 7386, 3, 720, 360, 0, 7385, 7383, 1, 0, 0, 0, 7385, 7384, 1, 0, 0, 0, 7386, 719, 1, 0, 0, 0, 7387, 7388, 7, 106, 0, 0, 7388, 721, 1, 0, 0, 0, 7389, 7396, 5, 29, 0, 0, 7390, 7391, 5, 278, 0, 0, 7391, 7392, 5, 2, 0, 0, 7392, 7393, 3, 408, 204, 0, 7393, 7394, 5, 3, 0, 0, 7394, 7396, 1, 0, 0, 0, 7395, 7389, 1, 0, 0, 0, 7395, 7390, 1, 0, 0, 0, 7396, 723, 1, 0, 0, 0, 7397, 7404, 3, 718, 359, 0, 7398, 7399, 5, 278, 0, 0, 7399, 7400, 5, 2, 0, 0, 7400, 7401, 3, 408, 204, 0, 7401, 7402, 5, 3, 0, 0, 7402, 7404, 1, 0, 0, 0, 7403, 7397, 1, 0, 0, 0, 7403, 7398, 1, 0, 0, 0, 7404, 725, 1, 0, 0, 0, 7405, 7411, 3, 724, 362, 0, 7406, 7408, 5, 77, 0, 0, 7407, 7406, 1, 0, 0, 0, 7407, 7408, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 7411, 7, 107, 0, 0, 7410, 7405, 1, 0, 0, 0, 7410, 7407, 1, 0, 0, 0, 7411, 727, 1, 0, 0, 0, 7412, 7417, 3, 670, 335, 0, 7413, 7414, 5, 6, 0, 0, 7414, 7416, 3, 670, 335, 0, 7415, 7413, 1, 0, 0, 0, 7416, 7419, 1, 0, 0, 0, 7417, 7415, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 729, 1, 0, 0, 0, 7419, 7417, 1, 0, 0, 0, 7420, 7421, 3, 670, 335, 0, 7421, 731, 1, 0, 0, 0, 7422, 7423, 3, 804, 402, 0, 7423, 733, 1, 0, 0, 0, 7424, 7425, 5, 2, 0, 0, 7425, 7426, 3, 670, 335, 0, 7426, 7427, 5, 3, 0, 0, 7427, 7430, 1, 0, 0, 0, 7428, 7430, 3, 804, 402, 0, 7429, 7424, 1, 0, 0, 0, 7429, 7428, 1, 0, 0, 0, 7430, 735, 1, 0, 0, 0, 7431, 7434, 3, 670, 335, 0, 7432, 7434, 3, 804, 402, 0, 7433, 7431, 1, 0, 0, 0, 7433, 7432, 1, 0, 0, 0, 7434, 737, 1, 0, 0, 0, 7435, 7440, 3, 740, 370, 0, 7436, 7437, 5, 6, 0, 0, 7437, 7439, 3, 740, 370, 0, 7438, 7436, 1, 0, 0, 0, 7439, 7442, 1, 0, 0, 0, 7440, 7438, 1, 0, 0, 0, 7440, 7441, 1, 0, 0, 0, 7441, 739, 1, 0, 0, 0, 7442, 7440, 1, 0, 0, 0, 7443, 7451, 3, 804, 402, 0, 7444, 7451, 3, 670, 335, 0, 7445, 7448, 3, 826, 413, 0, 7446, 7447, 7, 108, 0, 0, 7447, 7449, 3, 670, 335, 0, 7448, 7446, 1, 0, 0, 0, 7448, 7449, 1, 0, 0, 0, 7449, 7451, 1, 0, 0, 0, 7450, 7443, 1, 0, 0, 0, 7450, 7444, 1, 0, 0, 0, 7450, 7445, 1, 0, 0, 0, 7451, 741, 1, 0, 0, 0, 7452, 7462, 5, 4, 0, 0, 7453, 7463, 3, 728, 364, 0, 7454, 7459, 3, 742, 371, 0, 7455, 7456, 5, 6, 0, 0, 7456, 7458, 3, 742, 371, 0, 7457, 7455, 1, 0, 0, 0, 7458, 7461, 1, 0, 0, 0, 7459, 7457, 1, 0, 0, 0, 7459, 7460, 1, 0, 0, 0, 7460, 7463, 1, 0, 0, 0, 7461, 7459, 1, 0, 0, 0, 7462, 7453, 1, 0, 0, 0, 7462, 7454, 1, 0, 0, 0, 7462, 7463, 1, 0, 0, 0, 7463, 7464, 1, 0, 0, 0, 7464, 7465, 5, 5, 0, 0, 7465, 743, 1, 0, 0, 0, 7466, 7475, 3, 832, 416, 0, 7467, 7475, 5, 384, 0, 0, 7468, 7475, 5, 264, 0, 0, 7469, 7475, 5, 176, 0, 0, 7470, 7475, 5, 218, 0, 0, 7471, 7475, 5, 261, 0, 0, 7472, 7475, 5, 326, 0, 0, 7473, 7475, 3, 814, 407, 0, 7474, 7466, 1, 0, 0, 0, 7474, 7467, 1, 0, 0, 0, 7474, 7468, 1, 0, 0, 0, 7474, 7469, 1, 0, 0, 0, 7474, 7470, 1, 0, 0, 0, 7474, 7471, 1, 0, 0, 0, 7474, 7472, 1, 0, 0, 0, 7474, 7473, 1, 0, 0, 0, 7475, 745, 1, 0, 0, 0, 7476, 7477, 7, 109, 0, 0, 7477, 747, 1, 0, 0, 0, 7478, 7479, 3, 670, 335, 0, 7479, 7480, 5, 64, 0, 0, 7480, 7483, 3, 670, 335, 0, 7481, 7482, 5, 62, 0, 0, 7482, 7484, 3, 670, 335, 0, 7483, 7481, 1, 0, 0, 0, 7483, 7484, 1, 0, 0, 0, 7484, 7500, 1, 0, 0, 0, 7485, 7486, 3, 670, 335, 0, 7486, 7487, 5, 62, 0, 0, 7487, 7490, 3, 670, 335, 0, 7488, 7489, 5, 64, 0, 0, 7489, 7491, 3, 670, 335, 0, 7490, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7500, 1, 0, 0, 0, 7492, 7493, 3, 670, 335, 0, 7493, 7494, 5, 127, 0, 0, 7494, 7495, 3, 670, 335, 0, 7495, 7496, 5, 197, 0, 0, 7496, 7497, 3, 670, 335, 0, 7497, 7500, 1, 0, 0, 0, 7498, 7500, 3, 728, 364, 0, 7499, 7478, 1, 0, 0, 0, 7499, 7485, 1, 0, 0, 0, 7499, 7492, 1, 0, 0, 0, 7499, 7498, 1, 0, 0, 0, 7500, 749, 1, 0, 0, 0, 7501, 7502, 5, 102, 0, 0, 7502, 7503, 3, 670, 335, 0, 7503, 7504, 5, 93, 0, 0, 7504, 7505, 3, 670, 335, 0, 7505, 751, 1, 0, 0, 0, 7506, 7509, 5, 11, 0, 0, 7507, 7510, 3, 830, 415, 0, 7508, 7510, 5, 9, 0, 0, 7509, 7507, 1, 0, 0, 0, 7509, 7508, 1, 0, 0, 0, 7510, 7524, 1, 0, 0, 0, 7511, 7520, 5, 4, 0, 0, 7512, 7521, 3, 670, 335, 0, 7513, 7515, 3, 670, 335, 0, 7514, 7513, 1, 0, 0, 0, 7514, 7515, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 7518, 5, 8, 0, 0, 7517, 7519, 3, 670, 335, 0, 7518, 7517, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7521, 1, 0, 0, 0, 7520, 7512, 1, 0, 0, 0, 7520, 7514, 1, 0, 0, 0, 7521, 7522, 1, 0, 0, 0, 7522, 7524, 5, 5, 0, 0, 7523, 7506, 1, 0, 0, 0, 7523, 7511, 1, 0, 0, 0, 7524, 753, 1, 0, 0, 0, 7525, 7527, 3, 752, 376, 0, 7526, 7525, 1, 0, 0, 0, 7527, 7528, 1, 0, 0, 0, 7528, 7526, 1, 0, 0, 0, 7528, 7529, 1, 0, 0, 0, 7529, 755, 1, 0, 0, 0, 7530, 7532, 3, 752, 376, 0, 7531, 7530, 1, 0, 0, 0, 7532, 7535, 1, 0, 0, 0, 7533, 7531, 1, 0, 0, 0, 7533, 7534, 1, 0, 0, 0, 7534, 757, 1, 0, 0, 0, 7535, 7533, 1, 0, 0, 0, 7536, 7541, 3, 760, 380, 0, 7537, 7538, 5, 6, 0, 0, 7538, 7540, 3, 760, 380, 0, 7539, 7537, 1, 0, 0, 0, 7540, 7543, 1, 0, 0, 0, 7541, 7539, 1, 0, 0, 0, 7541, 7542, 1, 0, 0, 0, 7542, 759, 1, 0, 0, 0, 7543, 7541, 1, 0, 0, 0, 7544, 7557, 3, 762, 381, 0, 7545, 7548, 3, 732, 366, 0, 7546, 7548, 3, 730, 365, 0, 7547, 7545, 1, 0, 0, 0, 7547, 7546, 1, 0, 0, 0, 7548, 7554, 1, 0, 0, 0, 7549, 7551, 5, 36, 0, 0, 7550, 7549, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7552, 1, 0, 0, 0, 7552, 7555, 3, 832, 416, 0, 7553, 7555, 1, 0, 0, 0, 7554, 7550, 1, 0, 0, 0, 7554, 7553, 1, 0, 0, 0, 7555, 7557, 1, 0, 0, 0, 7556, 7544, 1, 0, 0, 0, 7556, 7547, 1, 0, 0, 0, 7557, 761, 1, 0, 0, 0, 7558, 7559, 3, 824, 412, 0, 7559, 7560, 5, 11, 0, 0, 7560, 7562, 1, 0, 0, 0, 7561, 7558, 1, 0, 0, 0, 7562, 7565, 1, 0, 0, 0, 7563, 7561, 1, 0, 0, 0, 7563, 7564, 1, 0, 0, 0, 7564, 7566, 1, 0, 0, 0, 7565, 7563, 1, 0, 0, 0, 7566, 7567, 5, 9, 0, 0, 7567, 763, 1, 0, 0, 0, 7568, 7573, 3, 784, 392, 0, 7569, 7570, 5, 6, 0, 0, 7570, 7572, 3, 784, 392, 0, 7571, 7569, 1, 0, 0, 0, 7572, 7575, 1, 0, 0, 0, 7573, 7571, 1, 0, 0, 0, 7573, 7574, 1, 0, 0, 0, 7574, 765, 1, 0, 0, 0, 7575, 7573, 1, 0, 0, 0, 7576, 7581, 3, 778, 389, 0, 7577, 7578, 5, 6, 0, 0, 7578, 7580, 3, 778, 389, 0, 7579, 7577, 1, 0, 0, 0, 7580, 7583, 1, 0, 0, 0, 7581, 7579, 1, 0, 0, 0, 7581, 7582, 1, 0, 0, 0, 7582, 767, 1, 0, 0, 0, 7583, 7581, 1, 0, 0, 0, 7584, 7589, 3, 794, 397, 0, 7585, 7586, 5, 6, 0, 0, 7586, 7588, 3, 794, 397, 0, 7587, 7585, 1, 0, 0, 0, 7588, 7591, 1, 0, 0, 0, 7589, 7587, 1, 0, 0, 0, 7589, 7590, 1, 0, 0, 0, 7590, 769, 1, 0, 0, 0, 7591, 7589, 1, 0, 0, 0, 7592, 7597, 3, 792, 396, 0, 7593, 7594, 5, 6, 0, 0, 7594, 7596, 3, 792, 396, 0, 7595, 7593, 1, 0, 0, 0, 7596, 7599, 1, 0, 0, 0, 7597, 7595, 1, 0, 0, 0, 7597, 7598, 1, 0, 0, 0, 7598, 771, 1, 0, 0, 0, 7599, 7597, 1, 0, 0, 0, 7600, 7601, 3, 784, 392, 0, 7601, 773, 1, 0, 0, 0, 7602, 7603, 3, 784, 392, 0, 7603, 775, 1, 0, 0, 0, 7604, 7605, 3, 784, 392, 0, 7605, 777, 1, 0, 0, 0, 7606, 7607, 3, 784, 392, 0, 7607, 779, 1, 0, 0, 0, 7608, 7609, 3, 784, 392, 0, 7609, 781, 1, 0, 0, 0, 7610, 7611, 3, 310, 155, 0, 7611, 783, 1, 0, 0, 0, 7612, 7614, 3, 824, 412, 0, 7613, 7615, 3, 754, 377, 0, 7614, 7613, 1, 0, 0, 0, 7614, 7615, 1, 0, 0, 0, 7615, 785, 1, 0, 0, 0, 7616, 7621, 3, 774, 387, 0, 7617, 7618, 5, 6, 0, 0, 7618, 7620, 3, 774, 387, 0, 7619, 7617, 1, 0, 0, 0, 7620, 7623, 1, 0, 0, 0, 7621, 7619, 1, 0, 0, 0, 7621, 7622, 1, 0, 0, 0, 7622, 787, 1, 0, 0, 0, 7623, 7621, 1, 0, 0, 0, 7624, 7629, 3, 824, 412, 0, 7625, 7626, 5, 6, 0, 0, 7626, 7628, 3, 824, 412, 0, 7627, 7625, 1, 0, 0, 0, 7628, 7631, 1, 0, 0, 0, 7629, 7627, 1, 0, 0, 0, 7629, 7630, 1, 0, 0, 0, 7630, 789, 1, 0, 0, 0, 7631, 7629, 1, 0, 0, 0, 7632, 7633, 3, 310, 155, 0, 7633, 791, 1, 0, 0, 0, 7634, 7635, 3, 310, 155, 0, 7635, 793, 1, 0, 0, 0, 7636, 7637, 3, 310, 155, 0, 7637, 795, 1, 0, 0, 0, 7638, 7639, 3, 824, 412, 0, 7639, 797, 1, 0, 0, 0, 7640, 7641, 3, 824, 412, 0, 7641, 799, 1, 0, 0, 0, 7642, 7647, 3, 826, 413, 0, 7643, 7644, 3, 824, 412, 0, 7644, 7645, 3, 754, 377, 0, 7645, 7647, 1, 0, 0, 0, 7646, 7642, 1, 0, 0, 0, 7646, 7643, 1, 0, 0, 0, 7647, 801, 1, 0, 0, 0, 7648, 7653, 3, 826, 413, 0, 7649, 7650, 3, 824, 412, 0, 7650, 7651, 3, 754, 377, 0, 7651, 7653, 1, 0, 0, 0, 7652, 7648, 1, 0, 0, 0, 7652, 7649, 1, 0, 0, 0, 7653, 803, 1, 0, 0, 0, 7654, 7655, 3, 824, 412, 0, 7655, 7656, 3, 756, 378, 0, 7656, 7659, 1, 0, 0, 0, 7657, 7659, 4, 402, 10, 0, 7658, 7654, 1, 0, 0, 0, 7658, 7657, 1, 0, 0, 0, 7659, 805, 1, 0, 0, 0, 7660, 7661, 3, 824, 412, 0, 7661, 7662, 3, 756, 378, 0, 7662, 807, 1, 0, 0, 0, 7663, 7664, 3, 824, 412, 0, 7664, 809, 1, 0, 0, 0, 7665, 7670, 3, 826, 413, 0, 7666, 7667, 3, 824, 412, 0, 7667, 7668, 3, 754, 377, 0, 7668, 7670, 1, 0, 0, 0, 7669, 7665, 1, 0, 0, 0, 7669, 7666, 1, 0, 0, 0, 7670, 811, 1, 0, 0, 0, 7671, 7676, 3, 826, 413, 0, 7672, 7673, 3, 824, 412, 0, 7673, 7674, 3, 754, 377, 0, 7674, 7676, 1, 0, 0, 0, 7675, 7671, 1, 0, 0, 0, 7675, 7672, 1, 0, 0, 0, 7676, 813, 1, 0, 0, 0, 7677, 7680, 3, 816, 408, 0, 7678, 7679, 5, 487, 0, 0, 7679, 7681, 3, 816, 408, 0, 7680, 7678, 1, 0, 0, 0, 7680, 7681, 1, 0, 0, 0, 7681, 815, 1, 0, 0, 0, 7682, 7694, 5, 561, 0, 0, 7683, 7694, 5, 563, 0, 0, 7684, 7688, 5, 565, 0, 0, 7685, 7687, 5, 590, 0, 0, 7686, 7685, 1, 0, 0, 0, 7687, 7690, 1, 0, 0, 0, 7688, 7686, 1, 0, 0, 0, 7688, 7689, 1, 0, 0, 0, 7689, 7691, 1, 0, 0, 0, 7690, 7688, 1, 0, 0, 0, 7691, 7694, 5, 591, 0, 0, 7692, 7694, 5, 586, 0, 0, 7693, 7682, 1, 0, 0, 0, 7693, 7683, 1, 0, 0, 0, 7693, 7684, 1, 0, 0, 0, 7693, 7692, 1, 0, 0, 0, 7694, 817, 1, 0, 0, 0, 7695, 7697, 7, 30, 0, 0, 7696, 7695, 1, 0, 0, 0, 7696, 7697, 1, 0, 0, 0, 7697, 7698, 1, 0, 0, 0, 7698, 7699, 5, 574, 0, 0, 7699, 819, 1, 0, 0, 0, 7700, 7706, 3, 828, 414, 0, 7701, 7706, 5, 52, 0, 0, 7702, 7706, 5, 49, 0, 0, 7703, 7706, 5, 89, 0, 0, 7704, 7706, 5, 524, 0, 0, 7705, 7700, 1, 0, 0, 0, 7705, 7701, 1, 0, 0, 0, 7705, 7702, 1, 0, 0, 0, 7705, 7703, 1, 0, 0, 0, 7705, 7704, 1, 0, 0, 0, 7706, 821, 1, 0, 0, 0, 7707, 7712, 3, 820, 410, 0, 7708, 7709, 5, 6, 0, 0, 7709, 7711, 3, 820, 410, 0, 7710, 7708, 1, 0, 0, 0, 7711, 7714, 1, 0, 0, 0, 7712, 7710, 1, 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 823, 1, 0, 0, 0, 7714, 7712, 1, 0, 0, 0, 7715, 7718, 3, 832, 416, 0, 7716, 7718, 3, 836, 418, 0, 7717, 7715, 1, 0, 0, 0, 7717, 7716, 1, 0, 0, 0, 7718, 825, 1, 0, 0, 0, 7719, 7722, 3, 832, 416, 0, 7720, 7722, 3, 838, 419, 0, 7721, 7719, 1, 0, 0, 0, 7721, 7720, 1, 0, 0, 0, 7722, 827, 1, 0, 0, 0, 7723, 7727, 3, 832, 416, 0, 7724, 7727, 3, 836, 418, 0, 7725, 7727, 3, 838, 419, 0, 7726, 7723, 1, 0, 0, 0, 7726, 7724, 1, 0, 0, 0, 7726, 7725, 1, 0, 0, 0, 7727, 829, 1, 0, 0, 0, 7728, 7733, 3, 832, 416, 0, 7729, 7733, 3, 836, 418, 0, 7730, 7733, 3, 838, 419, 0, 7731, 7733, 3, 840, 420, 0, 7732, 7728, 1, 0, 0, 0, 7732, 7729, 1, 0, 0, 0, 7732, 7730, 1, 0, 0, 0, 7732, 7731, 1, 0, 0, 0, 7733, 831, 1, 0, 0, 0, 7734, 7737, 5, 552, 0, 0, 7735, 7736, 5, 487, 0, 0, 7736, 7738, 3, 816, 408, 0, 7737, 7735, 1, 0, 0, 0, 7737, 7738, 1, 0, 0, 0, 7738, 7746, 1, 0, 0, 0, 7739, 7746, 3, 814, 407, 0, 7740, 7746, 5, 553, 0, 0, 7741, 7746, 5, 557, 0, 0, 7742, 7746, 5, 577, 0, 0, 7743, 7746, 5, 578, 0, 0, 7744, 7746, 3, 834, 417, 0, 7745, 7734, 1, 0, 0, 0, 7745, 7739, 1, 0, 0, 0, 7745, 7740, 1, 0, 0, 0, 7745, 7741, 1, 0, 0, 0, 7745, 7742, 1, 0, 0, 0, 7745, 7743, 1, 0, 0, 0, 7745, 7744, 1, 0, 0, 0, 7746, 833, 1, 0, 0, 0, 7747, 7748, 7, 110, 0, 0, 7748, 835, 1, 0, 0, 0, 7749, 7801, 5, 387, 0, 0, 7750, 7801, 5, 388, 0, 0, 7751, 7801, 3, 658, 329, 0, 7752, 7801, 5, 390, 0, 0, 7753, 7801, 5, 391, 0, 0, 7754, 7801, 3, 660, 330, 0, 7755, 7801, 5, 393, 0, 0, 7756, 7801, 5, 394, 0, 0, 7757, 7801, 5, 395, 0, 0, 7758, 7801, 5, 396, 0, 0, 7759, 7801, 5, 397, 0, 0, 7760, 7801, 5, 398, 0, 0, 7761, 7801, 5, 399, 0, 0, 7762, 7801, 5, 470, 0, 0, 7763, 7801, 5, 400, 0, 0, 7764, 7801, 5, 401, 0, 0, 7765, 7801, 5, 402, 0, 0, 7766, 7801, 5, 403, 0, 0, 7767, 7801, 5, 404, 0, 0, 7768, 7801, 5, 405, 0, 0, 7769, 7801, 5, 406, 0, 0, 7770, 7801, 5, 407, 0, 0, 7771, 7801, 5, 489, 0, 0, 7772, 7801, 5, 408, 0, 0, 7773, 7801, 3, 654, 327, 0, 7774, 7801, 5, 453, 0, 0, 7775, 7801, 5, 410, 0, 0, 7776, 7801, 5, 411, 0, 0, 7777, 7801, 5, 412, 0, 0, 7778, 7801, 5, 413, 0, 0, 7779, 7801, 5, 414, 0, 0, 7780, 7801, 5, 415, 0, 0, 7781, 7801, 5, 416, 0, 0, 7782, 7801, 5, 417, 0, 0, 7783, 7801, 5, 418, 0, 0, 7784, 7801, 5, 419, 0, 0, 7785, 7801, 5, 420, 0, 0, 7786, 7801, 5, 421, 0, 0, 7787, 7801, 5, 422, 0, 0, 7788, 7801, 5, 423, 0, 0, 7789, 7801, 5, 424, 0, 0, 7790, 7801, 5, 425, 0, 0, 7791, 7801, 5, 426, 0, 0, 7792, 7801, 5, 427, 0, 0, 7793, 7801, 5, 428, 0, 0, 7794, 7801, 5, 476, 0, 0, 7795, 7801, 5, 429, 0, 0, 7796, 7801, 5, 430, 0, 0, 7797, 7801, 5, 431, 0, 0, 7798, 7801, 5, 432, 0, 0, 7799, 7801, 5, 474, 0, 0, 7800, 7749, 1, 0, 0, 0, 7800, 7750, 1, 0, 0, 0, 7800, 7751, 1, 0, 0, 0, 7800, 7752, 1, 0, 0, 0, 7800, 7753, 1, 0, 0, 0, 7800, 7754, 1, 0, 0, 0, 7800, 7755, 1, 0, 0, 0, 7800, 7756, 1, 0, 0, 0, 7800, 7757, 1, 0, 0, 0, 7800, 7758, 1, 0, 0, 0, 7800, 7759, 1, 0, 0, 0, 7800, 7760, 1, 0, 0, 0, 7800, 7761, 1, 0, 0, 0, 7800, 7762, 1, 0, 0, 0, 7800, 7763, 1, 0, 0, 0, 7800, 7764, 1, 0, 0, 0, 7800, 7765, 1, 0, 0, 0, 7800, 7766, 1, 0, 0, 0, 7800, 7767, 1, 0, 0, 0, 7800, 7768, 1, 0, 0, 0, 7800, 7769, 1, 0, 0, 0, 7800, 7770, 1, 0, 0, 0, 7800, 7771, 1, 0, 0, 0, 7800, 7772, 1, 0, 0, 0, 7800, 7773, 1, 0, 0, 0, 7800, 7774, 1, 0, 0, 0, 7800, 7775, 1, 0, 0, 0, 7800, 7776, 1, 0, 0, 0, 7800, 7777, 1, 0, 0, 0, 7800, 7778, 1, 0, 0, 0, 7800, 7779, 1, 0, 0, 0, 7800, 7780, 1, 0, 0, 0, 7800, 7781, 1, 0, 0, 0, 7800, 7782, 1, 0, 0, 0, 7800, 7783, 1, 0, 0, 0, 7800, 7784, 1, 0, 0, 0, 7800, 7785, 1, 0, 0, 0, 7800, 7786, 1, 0, 0, 0, 7800, 7787, 1, 0, 0, 0, 7800, 7788, 1, 0, 0, 0, 7800, 7789, 1, 0, 0, 0, 7800, 7790, 1, 0, 0, 0, 7800, 7791, 1, 0, 0, 0, 7800, 7792, 1, 0, 0, 0, 7800, 7793, 1, 0, 0, 0, 7800, 7794, 1, 0, 0, 0, 7800, 7795, 1, 0, 0, 0, 7800, 7796, 1, 0, 0, 0, 7800, 7797, 1, 0, 0, 0, 7800, 7798, 1, 0, 0, 0, 7800, 7799, 1, 0, 0, 0, 7801, 837, 1, 0, 0, 0, 7802, 7803, 7, 111, 0, 0, 7803, 839, 1, 0, 0, 0, 7804, 7805, 7, 112, 0, 0, 7805, 841, 1, 0, 0, 0, 7806, 7808, 3, 844, 422, 0, 7807, 7806, 1, 0, 0, 0, 7807, 7808, 1, 0, 0, 0, 7808, 7819, 1, 0, 0, 0, 7809, 7817, 5, 178, 0, 0, 7810, 7814, 3, 846, 423, 0, 7811, 7814, 5, 178, 0, 0, 7812, 7814, 3, 844, 422, 0, 7813, 7810, 1, 0, 0, 0, 7813, 7811, 1, 0, 0, 0, 7813, 7812, 1, 0, 0, 0, 7814, 7815, 1, 0, 0, 0, 7815, 7813, 1, 0, 0, 0, 7815, 7816, 1, 0, 0, 0, 7816, 7818, 1, 0, 0, 0, 7817, 7813, 1, 0, 0, 0, 7817, 7818, 1, 0, 0, 0, 7818, 7820, 1, 0, 0, 0, 7819, 7809, 1, 0, 0, 0, 7819, 7820, 1, 0, 0, 0, 7820, 7821, 1, 0, 0, 0, 7821, 7825, 5, 146, 0, 0, 7822, 7824, 3, 852, 426, 0, 7823, 7822, 1, 0, 0, 0, 7824, 7827, 1, 0, 0, 0, 7825, 7823, 1, 0, 0, 0, 7825, 7826, 1, 0, 0, 0, 7826, 7829, 1, 0, 0, 0, 7827, 7825, 1, 0, 0, 0, 7828, 7830, 3, 930, 465, 0, 7829, 7828, 1, 0, 0, 0, 7829, 7830, 1, 0, 0, 0, 7830, 7831, 1, 0, 0, 0, 7831, 7833, 5, 454, 0, 0, 7832, 7834, 3, 934, 467, 0, 7833, 7832, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 843, 1, 0, 0, 0, 7835, 7836, 5, 18, 0, 0, 7836, 7837, 3, 934, 467, 0, 7837, 7838, 5, 19, 0, 0, 7838, 845, 1, 0, 0, 0, 7839, 7886, 3, 934, 467, 0, 7840, 7841, 5, 496, 0, 0, 7841, 7844, 5, 62, 0, 0, 7842, 7845, 5, 28, 0, 0, 7843, 7845, 3, 824, 412, 0, 7844, 7842, 1, 0, 0, 0, 7844, 7843, 1, 0, 0, 0, 7845, 7887, 1, 0, 0, 0, 7846, 7848, 5, 497, 0, 0, 7847, 7846, 1, 0, 0, 0, 7847, 7848, 1, 0, 0, 0, 7848, 7849, 1, 0, 0, 0, 7849, 7851, 3, 648, 324, 0, 7850, 7852, 3, 90, 45, 0, 7851, 7850, 1, 0, 0, 0, 7851, 7852, 1, 0, 0, 0, 7852, 7855, 1, 0, 0, 0, 7853, 7854, 5, 77, 0, 0, 7854, 7856, 5, 78, 0, 0, 7855, 7853, 1, 0, 0, 0, 7855, 7856, 1, 0, 0, 0, 7856, 7862, 1, 0, 0, 0, 7857, 7860, 3, 850, 425, 0, 7858, 7860, 5, 53, 0, 0, 7859, 7857, 1, 0, 0, 0, 7859, 7858, 1, 0, 0, 0, 7860, 7861, 1, 0, 0, 0, 7861, 7863, 3, 936, 468, 0, 7862, 7859, 1, 0, 0, 0, 7862, 7863, 1, 0, 0, 0, 7863, 7887, 1, 0, 0, 0, 7864, 7866, 5, 269, 0, 0, 7865, 7864, 1, 0, 0, 0, 7865, 7866, 1, 0, 0, 0, 7866, 7867, 1, 0, 0, 0, 7867, 7869, 5, 324, 0, 0, 7868, 7865, 1, 0, 0, 0, 7868, 7869, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7882, 5, 172, 0, 0, 7871, 7872, 5, 2, 0, 0, 7872, 7877, 3, 848, 424, 0, 7873, 7874, 5, 6, 0, 0, 7874, 7876, 3, 848, 424, 0, 7875, 7873, 1, 0, 0, 0, 7876, 7879, 1, 0, 0, 0, 7877, 7875, 1, 0, 0, 0, 7877, 7878, 1, 0, 0, 0, 7878, 7880, 1, 0, 0, 0, 7879, 7877, 1, 0, 0, 0, 7880, 7881, 5, 3, 0, 0, 7881, 7883, 1, 0, 0, 0, 7882, 7871, 1, 0, 0, 0, 7882, 7883, 1, 0, 0, 0, 7883, 7884, 1, 0, 0, 0, 7884, 7885, 7, 113, 0, 0, 7885, 7887, 3, 554, 277, 0, 7886, 7840, 1, 0, 0, 0, 7886, 7847, 1, 0, 0, 0, 7886, 7868, 1, 0, 0, 0, 7887, 7888, 1, 0, 0, 0, 7888, 7889, 5, 7, 0, 0, 7889, 847, 1, 0, 0, 0, 7890, 7891, 3, 934, 467, 0, 7891, 7892, 3, 648, 324, 0, 7892, 849, 1, 0, 0, 0, 7893, 7894, 7, 114, 0, 0, 7894, 851, 1, 0, 0, 0, 7895, 7896, 3, 842, 421, 0, 7896, 7897, 5, 7, 0, 0, 7897, 7920, 1, 0, 0, 0, 7898, 7920, 3, 880, 440, 0, 7899, 7920, 3, 882, 441, 0, 7900, 7920, 3, 858, 429, 0, 7901, 7920, 3, 866, 433, 0, 7902, 7920, 3, 870, 435, 0, 7903, 7920, 3, 872, 436, 0, 7904, 7920, 3, 876, 438, 0, 7905, 7920, 3, 878, 439, 0, 7906, 7920, 3, 886, 443, 0, 7907, 7920, 3, 890, 445, 0, 7908, 7920, 3, 892, 446, 0, 7909, 7920, 3, 854, 427, 0, 7910, 7920, 3, 856, 428, 0, 7911, 7920, 3, 860, 430, 0, 7912, 7920, 3, 896, 448, 0, 7913, 7920, 3, 900, 450, 0, 7914, 7920, 3, 904, 452, 0, 7915, 7920, 3, 920, 460, 0, 7916, 7920, 3, 922, 461, 0, 7917, 7920, 3, 924, 462, 0, 7918, 7920, 3, 926, 463, 0, 7919, 7895, 1, 0, 0, 0, 7919, 7898, 1, 0, 0, 0, 7919, 7899, 1, 0, 0, 0, 7919, 7900, 1, 0, 0, 0, 7919, 7901, 1, 0, 0, 0, 7919, 7902, 1, 0, 0, 0, 7919, 7903, 1, 0, 0, 0, 7919, 7904, 1, 0, 0, 0, 7919, 7905, 1, 0, 0, 0, 7919, 7906, 1, 0, 0, 0, 7919, 7907, 1, 0, 0, 0, 7919, 7908, 1, 0, 0, 0, 7919, 7909, 1, 0, 0, 0, 7919, 7910, 1, 0, 0, 0, 7919, 7911, 1, 0, 0, 0, 7919, 7912, 1, 0, 0, 0, 7919, 7913, 1, 0, 0, 0, 7919, 7914, 1, 0, 0, 0, 7919, 7915, 1, 0, 0, 0, 7919, 7916, 1, 0, 0, 0, 7919, 7917, 1, 0, 0, 0, 7919, 7918, 1, 0, 0, 0, 7920, 853, 1, 0, 0, 0, 7921, 7922, 5, 498, 0, 0, 7922, 7923, 3, 936, 468, 0, 7923, 7924, 5, 7, 0, 0, 7924, 855, 1, 0, 0, 0, 7925, 7926, 5, 433, 0, 0, 7926, 7933, 3, 934, 467, 0, 7927, 7929, 5, 2, 0, 0, 7928, 7930, 3, 728, 364, 0, 7929, 7928, 1, 0, 0, 0, 7929, 7930, 1, 0, 0, 0, 7930, 7931, 1, 0, 0, 0, 7931, 7932, 5, 3, 0, 0, 7932, 7934, 5, 7, 0, 0, 7933, 7927, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 7945, 1, 0, 0, 0, 7935, 7936, 5, 57, 0, 0, 7936, 7937, 3, 934, 467, 0, 7937, 7939, 5, 2, 0, 0, 7938, 7940, 3, 728, 364, 0, 7939, 7938, 1, 0, 0, 0, 7939, 7940, 1, 0, 0, 0, 7940, 7941, 1, 0, 0, 0, 7941, 7942, 5, 3, 0, 0, 7942, 7943, 5, 7, 0, 0, 7943, 7945, 1, 0, 0, 0, 7944, 7925, 1, 0, 0, 0, 7944, 7935, 1, 0, 0, 0, 7945, 857, 1, 0, 0, 0, 7946, 7947, 3, 864, 432, 0, 7947, 7948, 3, 850, 425, 0, 7948, 7949, 3, 936, 468, 0, 7949, 7950, 5, 7, 0, 0, 7950, 859, 1, 0, 0, 0, 7951, 7953, 5, 499, 0, 0, 7952, 7954, 7, 115, 0, 0, 7953, 7952, 1, 0, 0, 0, 7953, 7954, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7956, 5, 500, 0, 0, 7956, 7961, 3, 862, 431, 0, 7957, 7958, 5, 6, 0, 0, 7958, 7960, 3, 862, 431, 0, 7959, 7957, 1, 0, 0, 0, 7960, 7963, 1, 0, 0, 0, 7961, 7959, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7964, 1, 0, 0, 0, 7963, 7961, 1, 0, 0, 0, 7964, 7965, 5, 7, 0, 0, 7965, 861, 1, 0, 0, 0, 7966, 7967, 3, 864, 432, 0, 7967, 7968, 3, 850, 425, 0, 7968, 7969, 3, 824, 412, 0, 7969, 863, 1, 0, 0, 0, 7970, 7973, 3, 310, 155, 0, 7971, 7973, 5, 28, 0, 0, 7972, 7970, 1, 0, 0, 0, 7972, 7971, 1, 0, 0, 0, 7973, 7980, 1, 0, 0, 0, 7974, 7975, 5, 4, 0, 0, 7975, 7976, 3, 670, 335, 0, 7976, 7977, 5, 5, 0, 0, 7977, 7979, 1, 0, 0, 0, 7978, 7974, 1, 0, 0, 0, 7979, 7982, 1, 0, 0, 0, 7980, 7978, 1, 0, 0, 0, 7980, 7981, 1, 0, 0, 0, 7981, 865, 1, 0, 0, 0, 7982, 7980, 1, 0, 0, 0, 7983, 7984, 5, 220, 0, 0, 7984, 7985, 3, 936, 468, 0, 7985, 7989, 5, 93, 0, 0, 7986, 7988, 3, 852, 426, 0, 7987, 7986, 1, 0, 0, 0, 7988, 7991, 1, 0, 0, 0, 7989, 7987, 1, 0, 0, 0, 7989, 7990, 1, 0, 0, 0, 7990, 8003, 1, 0, 0, 0, 7991, 7989, 1, 0, 0, 0, 7992, 7993, 5, 502, 0, 0, 7993, 7994, 3, 670, 335, 0, 7994, 7998, 5, 93, 0, 0, 7995, 7997, 3, 852, 426, 0, 7996, 7995, 1, 0, 0, 0, 7997, 8000, 1, 0, 0, 0, 7998, 7996, 1, 0, 0, 0, 7998, 7999, 1, 0, 0, 0, 7999, 8002, 1, 0, 0, 0, 8000, 7998, 1, 0, 0, 0, 8001, 7992, 1, 0, 0, 0, 8002, 8005, 1, 0, 0, 0, 8003, 8001, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 8007, 1, 0, 0, 0, 8005, 8003, 1, 0, 0, 0, 8006, 8008, 3, 868, 434, 0, 8007, 8006, 1, 0, 0, 0, 8007, 8008, 1, 0, 0, 0, 8008, 8009, 1, 0, 0, 0, 8009, 8010, 5, 454, 0, 0, 8010, 8011, 5, 220, 0, 0, 8011, 8012, 5, 7, 0, 0, 8012, 867, 1, 0, 0, 0, 8013, 8017, 5, 58, 0, 0, 8014, 8016, 3, 852, 426, 0, 8015, 8014, 1, 0, 0, 0, 8016, 8019, 1, 0, 0, 0, 8017, 8015, 1, 0, 0, 0, 8017, 8018, 1, 0, 0, 0, 8018, 869, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8020, 8022, 5, 40, 0, 0, 8021, 8023, 3, 936, 468, 0, 8022, 8021, 1, 0, 0, 0, 8022, 8023, 1, 0, 0, 0, 8023, 8033, 1, 0, 0, 0, 8024, 8025, 5, 102, 0, 0, 8025, 8026, 3, 728, 364, 0, 8026, 8030, 5, 93, 0, 0, 8027, 8029, 3, 852, 426, 0, 8028, 8027, 1, 0, 0, 0, 8029, 8032, 1, 0, 0, 0, 8030, 8028, 1, 0, 0, 0, 8030, 8031, 1, 0, 0, 0, 8031, 8034, 1, 0, 0, 0, 8032, 8030, 1, 0, 0, 0, 8033, 8024, 1, 0, 0, 0, 8034, 8035, 1, 0, 0, 0, 8035, 8033, 1, 0, 0, 0, 8035, 8036, 1, 0, 0, 0, 8036, 8038, 1, 0, 0, 0, 8037, 8039, 3, 868, 434, 0, 8038, 8037, 1, 0, 0, 0, 8038, 8039, 1, 0, 0, 0, 8039, 8040, 1, 0, 0, 0, 8040, 8041, 5, 454, 0, 0, 8041, 8042, 5, 40, 0, 0, 8042, 8043, 5, 7, 0, 0, 8043, 871, 1, 0, 0, 0, 8044, 8046, 3, 844, 422, 0, 8045, 8044, 1, 0, 0, 0, 8045, 8046, 1, 0, 0, 0, 8046, 8051, 1, 0, 0, 0, 8047, 8048, 5, 503, 0, 0, 8048, 8052, 3, 670, 335, 0, 8049, 8050, 5, 62, 0, 0, 8050, 8052, 3, 874, 437, 0, 8051, 8047, 1, 0, 0, 0, 8051, 8049, 1, 0, 0, 0, 8051, 8052, 1, 0, 0, 0, 8052, 8053, 1, 0, 0, 0, 8053, 8054, 3, 888, 444, 0, 8054, 873, 1, 0, 0, 0, 8055, 8056, 3, 308, 154, 0, 8056, 8079, 5, 68, 0, 0, 8057, 8059, 3, 824, 412, 0, 8058, 8060, 3, 528, 264, 0, 8059, 8058, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8080, 1, 0, 0, 0, 8061, 8080, 3, 554, 277, 0, 8062, 8080, 3, 514, 257, 0, 8063, 8064, 5, 202, 0, 0, 8064, 8067, 3, 670, 335, 0, 8065, 8066, 5, 100, 0, 0, 8066, 8068, 3, 728, 364, 0, 8067, 8065, 1, 0, 0, 0, 8067, 8068, 1, 0, 0, 0, 8068, 8080, 1, 0, 0, 0, 8069, 8071, 5, 504, 0, 0, 8070, 8069, 1, 0, 0, 0, 8070, 8071, 1, 0, 0, 0, 8071, 8072, 1, 0, 0, 0, 8072, 8073, 3, 670, 335, 0, 8073, 8074, 5, 24, 0, 0, 8074, 8077, 3, 670, 335, 0, 8075, 8076, 5, 147, 0, 0, 8076, 8078, 3, 670, 335, 0, 8077, 8075, 1, 0, 0, 0, 8077, 8078, 1, 0, 0, 0, 8078, 8080, 1, 0, 0, 0, 8079, 8057, 1, 0, 0, 0, 8079, 8061, 1, 0, 0, 0, 8079, 8062, 1, 0, 0, 0, 8079, 8063, 1, 0, 0, 0, 8079, 8070, 1, 0, 0, 0, 8080, 875, 1, 0, 0, 0, 8081, 8083, 3, 844, 422, 0, 8082, 8081, 1, 0, 0, 0, 8082, 8083, 1, 0, 0, 0, 8083, 8084, 1, 0, 0, 0, 8084, 8085, 5, 505, 0, 0, 8085, 8088, 3, 308, 154, 0, 8086, 8087, 5, 506, 0, 0, 8087, 8089, 5, 574, 0, 0, 8088, 8086, 1, 0, 0, 0, 8088, 8089, 1, 0, 0, 0, 8089, 8090, 1, 0, 0, 0, 8090, 8091, 5, 68, 0, 0, 8091, 8092, 5, 35, 0, 0, 8092, 8093, 3, 670, 335, 0, 8093, 8094, 3, 888, 444, 0, 8094, 877, 1, 0, 0, 0, 8095, 8097, 7, 116, 0, 0, 8096, 8098, 3, 934, 467, 0, 8097, 8096, 1, 0, 0, 0, 8097, 8098, 1, 0, 0, 0, 8098, 8101, 1, 0, 0, 0, 8099, 8100, 5, 102, 0, 0, 8100, 8102, 3, 936, 468, 0, 8101, 8099, 1, 0, 0, 0, 8101, 8102, 1, 0, 0, 0, 8102, 8103, 1, 0, 0, 0, 8103, 8104, 5, 7, 0, 0, 8104, 879, 1, 0, 0, 0, 8105, 8120, 5, 508, 0, 0, 8106, 8107, 5, 268, 0, 0, 8107, 8121, 3, 936, 468, 0, 8108, 8115, 5, 509, 0, 0, 8109, 8110, 5, 202, 0, 0, 8110, 8111, 3, 670, 335, 0, 8111, 8112, 5, 100, 0, 0, 8112, 8113, 3, 728, 364, 0, 8113, 8116, 1, 0, 0, 0, 8114, 8116, 3, 554, 277, 0, 8115, 8109, 1, 0, 0, 0, 8115, 8114, 1, 0, 0, 0, 8116, 8121, 1, 0, 0, 0, 8117, 8119, 3, 936, 468, 0, 8118, 8117, 1, 0, 0, 0, 8118, 8119, 1, 0, 0, 0, 8119, 8121, 1, 0, 0, 0, 8120, 8106, 1, 0, 0, 0, 8120, 8108, 1, 0, 0, 0, 8120, 8118, 1, 0, 0, 0, 8121, 8122, 1, 0, 0, 0, 8122, 8123, 5, 7, 0, 0, 8123, 881, 1, 0, 0, 0, 8124, 8154, 5, 510, 0, 0, 8125, 8127, 7, 117, 0, 0, 8126, 8125, 1, 0, 0, 0, 8126, 8127, 1, 0, 0, 0, 8127, 8140, 1, 0, 0, 0, 8128, 8141, 3, 832, 416, 0, 8129, 8130, 5, 511, 0, 0, 8130, 8141, 3, 814, 407, 0, 8131, 8138, 3, 814, 407, 0, 8132, 8133, 5, 6, 0, 0, 8133, 8135, 3, 670, 335, 0, 8134, 8132, 1, 0, 0, 0, 8135, 8136, 1, 0, 0, 0, 8136, 8134, 1, 0, 0, 0, 8136, 8137, 1, 0, 0, 0, 8137, 8139, 1, 0, 0, 0, 8138, 8134, 1, 0, 0, 0, 8138, 8139, 1, 0, 0, 0, 8139, 8141, 1, 0, 0, 0, 8140, 8128, 1, 0, 0, 0, 8140, 8129, 1, 0, 0, 0, 8140, 8131, 1, 0, 0, 0, 8140, 8141, 1, 0, 0, 0, 8141, 8151, 1, 0, 0, 0, 8142, 8143, 5, 100, 0, 0, 8143, 8148, 3, 884, 442, 0, 8144, 8145, 5, 6, 0, 0, 8145, 8147, 3, 884, 442, 0, 8146, 8144, 1, 0, 0, 0, 8147, 8150, 1, 0, 0, 0, 8148, 8146, 1, 0, 0, 0, 8148, 8149, 1, 0, 0, 0, 8149, 8152, 1, 0, 0, 0, 8150, 8148, 1, 0, 0, 0, 8151, 8142, 1, 0, 0, 0, 8151, 8152, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8155, 5, 7, 0, 0, 8154, 8126, 1, 0, 0, 0, 8154, 8155, 1, 0, 0, 0, 8155, 883, 1, 0, 0, 0, 8156, 8157, 3, 832, 416, 0, 8157, 8158, 5, 10, 0, 0, 8158, 8159, 3, 670, 335, 0, 8159, 885, 1, 0, 0, 0, 8160, 8161, 5, 518, 0, 0, 8161, 8164, 3, 936, 468, 0, 8162, 8163, 5, 6, 0, 0, 8163, 8165, 3, 936, 468, 0, 8164, 8162, 1, 0, 0, 0, 8164, 8165, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8167, 5, 7, 0, 0, 8167, 887, 1, 0, 0, 0, 8168, 8172, 5, 519, 0, 0, 8169, 8171, 3, 852, 426, 0, 8170, 8169, 1, 0, 0, 0, 8171, 8174, 1, 0, 0, 0, 8172, 8170, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8175, 1, 0, 0, 0, 8174, 8172, 1, 0, 0, 0, 8175, 8176, 5, 454, 0, 0, 8176, 8178, 5, 519, 0, 0, 8177, 8179, 3, 934, 467, 0, 8178, 8177, 1, 0, 0, 0, 8178, 8179, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 8181, 5, 7, 0, 0, 8181, 889, 1, 0, 0, 0, 8182, 8184, 3, 4, 2, 0, 8183, 8185, 3, 894, 447, 0, 8184, 8183, 1, 0, 0, 0, 8184, 8185, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8187, 5, 7, 0, 0, 8187, 891, 1, 0, 0, 0, 8188, 8189, 5, 202, 0, 0, 8189, 8205, 3, 670, 335, 0, 8190, 8192, 3, 894, 447, 0, 8191, 8190, 1, 0, 0, 0, 8191, 8192, 1, 0, 0, 0, 8192, 8195, 1, 0, 0, 0, 8193, 8194, 5, 100, 0, 0, 8194, 8196, 3, 728, 364, 0, 8195, 8193, 1, 0, 0, 0, 8195, 8196, 1, 0, 0, 0, 8196, 8206, 1, 0, 0, 0, 8197, 8198, 5, 100, 0, 0, 8198, 8200, 3, 728, 364, 0, 8199, 8197, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8202, 1, 0, 0, 0, 8201, 8203, 3, 894, 447, 0, 8202, 8201, 1, 0, 0, 0, 8202, 8203, 1, 0, 0, 0, 8203, 8206, 1, 0, 0, 0, 8204, 8206, 1, 0, 0, 0, 8205, 8191, 1, 0, 0, 0, 8205, 8199, 1, 0, 0, 0, 8205, 8204, 1, 0, 0, 0, 8206, 8207, 1, 0, 0, 0, 8207, 8208, 5, 7, 0, 0, 8208, 893, 1, 0, 0, 0, 8209, 8211, 5, 71, 0, 0, 8210, 8212, 5, 346, 0, 0, 8211, 8210, 1, 0, 0, 0, 8211, 8212, 1, 0, 0, 0, 8212, 8213, 1, 0, 0, 0, 8213, 8214, 3, 728, 364, 0, 8214, 895, 1, 0, 0, 0, 8215, 8247, 5, 520, 0, 0, 8216, 8221, 3, 928, 464, 0, 8217, 8219, 5, 269, 0, 0, 8218, 8217, 1, 0, 0, 0, 8218, 8219, 1, 0, 0, 0, 8219, 8220, 1, 0, 0, 0, 8220, 8222, 5, 324, 0, 0, 8221, 8218, 1, 0, 0, 0, 8221, 8222, 1, 0, 0, 0, 8222, 8223, 1, 0, 0, 0, 8223, 8231, 5, 62, 0, 0, 8224, 8232, 3, 554, 277, 0, 8225, 8226, 5, 202, 0, 0, 8226, 8229, 3, 936, 468, 0, 8227, 8228, 5, 100, 0, 0, 8228, 8230, 3, 728, 364, 0, 8229, 8227, 1, 0, 0, 0, 8229, 8230, 1, 0, 0, 0, 8230, 8232, 1, 0, 0, 0, 8231, 8224, 1, 0, 0, 0, 8231, 8225, 1, 0, 0, 0, 8232, 8248, 1, 0, 0, 0, 8233, 8245, 3, 824, 412, 0, 8234, 8235, 5, 2, 0, 0, 8235, 8240, 3, 898, 449, 0, 8236, 8237, 5, 6, 0, 0, 8237, 8239, 3, 898, 449, 0, 8238, 8236, 1, 0, 0, 0, 8239, 8242, 1, 0, 0, 0, 8240, 8238, 1, 0, 0, 0, 8240, 8241, 1, 0, 0, 0, 8241, 8243, 1, 0, 0, 0, 8242, 8240, 1, 0, 0, 0, 8243, 8244, 5, 3, 0, 0, 8244, 8246, 1, 0, 0, 0, 8245, 8234, 1, 0, 0, 0, 8245, 8246, 1, 0, 0, 0, 8246, 8248, 1, 0, 0, 0, 8247, 8216, 1, 0, 0, 0, 8247, 8233, 1, 0, 0, 0, 8248, 8249, 1, 0, 0, 0, 8249, 8250, 5, 7, 0, 0, 8250, 897, 1, 0, 0, 0, 8251, 8252, 3, 824, 412, 0, 8252, 8253, 5, 20, 0, 0, 8253, 8255, 1, 0, 0, 0, 8254, 8251, 1, 0, 0, 0, 8254, 8255, 1, 0, 0, 0, 8255, 8256, 1, 0, 0, 0, 8256, 8257, 3, 670, 335, 0, 8257, 899, 1, 0, 0, 0, 8258, 8260, 5, 61, 0, 0, 8259, 8261, 3, 902, 451, 0, 8260, 8259, 1, 0, 0, 0, 8260, 8261, 1, 0, 0, 0, 8261, 8263, 1, 0, 0, 0, 8262, 8264, 3, 326, 163, 0, 8263, 8262, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, 8265, 1, 0, 0, 0, 8265, 8266, 3, 928, 464, 0, 8266, 8267, 5, 71, 0, 0, 8267, 8268, 3, 728, 364, 0, 8268, 8269, 5, 7, 0, 0, 8269, 901, 1, 0, 0, 0, 8270, 8285, 5, 268, 0, 0, 8271, 8285, 5, 293, 0, 0, 8272, 8285, 5, 207, 0, 0, 8273, 8285, 5, 249, 0, 0, 8274, 8276, 7, 51, 0, 0, 8275, 8274, 1, 0, 0, 0, 8275, 8276, 1, 0, 0, 0, 8276, 8277, 1, 0, 0, 0, 8277, 8285, 3, 670, 335, 0, 8278, 8285, 5, 30, 0, 0, 8279, 8282, 7, 118, 0, 0, 8280, 8283, 3, 670, 335, 0, 8281, 8283, 5, 30, 0, 0, 8282, 8280, 1, 0, 0, 0, 8282, 8281, 1, 0, 0, 0, 8282, 8283, 1, 0, 0, 0, 8283, 8285, 1, 0, 0, 0, 8284, 8270, 1, 0, 0, 0, 8284, 8271, 1, 0, 0, 0, 8284, 8272, 1, 0, 0, 0, 8284, 8273, 1, 0, 0, 0, 8284, 8275, 1, 0, 0, 0, 8284, 8278, 1, 0, 0, 0, 8284, 8279, 1, 0, 0, 0, 8285, 903, 1, 0, 0, 0, 8286, 8288, 5, 265, 0, 0, 8287, 8289, 3, 902, 451, 0, 8288, 8287, 1, 0, 0, 0, 8288, 8289, 1, 0, 0, 0, 8289, 8290, 1, 0, 0, 0, 8290, 8291, 3, 928, 464, 0, 8291, 8292, 5, 7, 0, 0, 8292, 905, 1, 0, 0, 0, 8293, 8295, 3, 566, 283, 0, 8294, 8293, 1, 0, 0, 0, 8294, 8295, 1, 0, 0, 0, 8295, 8296, 1, 0, 0, 0, 8296, 8297, 5, 525, 0, 0, 8297, 8299, 5, 71, 0, 0, 8298, 8300, 5, 81, 0, 0, 8299, 8298, 1, 0, 0, 0, 8299, 8300, 1, 0, 0, 0, 8300, 8301, 1, 0, 0, 0, 8301, 8303, 3, 778, 389, 0, 8302, 8304, 5, 9, 0, 0, 8303, 8302, 1, 0, 0, 0, 8303, 8304, 1, 0, 0, 0, 8304, 8309, 1, 0, 0, 0, 8305, 8307, 5, 36, 0, 0, 8306, 8305, 1, 0, 0, 0, 8306, 8307, 1, 0, 0, 0, 8307, 8308, 1, 0, 0, 0, 8308, 8310, 3, 824, 412, 0, 8309, 8306, 1, 0, 0, 0, 8309, 8310, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8312, 5, 100, 0, 0, 8312, 8313, 3, 908, 454, 0, 8313, 8314, 5, 80, 0, 0, 8314, 8316, 3, 670, 335, 0, 8315, 8317, 3, 910, 455, 0, 8316, 8315, 1, 0, 0, 0, 8317, 8318, 1, 0, 0, 0, 8318, 8316, 1, 0, 0, 0, 8318, 8319, 1, 0, 0, 0, 8319, 8321, 1, 0, 0, 0, 8320, 8322, 3, 540, 270, 0, 8321, 8320, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 907, 1, 0, 0, 0, 8323, 8325, 5, 81, 0, 0, 8324, 8323, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8326, 1, 0, 0, 0, 8326, 8328, 3, 778, 389, 0, 8327, 8329, 5, 9, 0, 0, 8328, 8327, 1, 0, 0, 0, 8328, 8329, 1, 0, 0, 0, 8329, 8335, 1, 0, 0, 0, 8330, 8333, 3, 558, 279, 0, 8331, 8333, 3, 602, 301, 0, 8332, 8330, 1, 0, 0, 0, 8332, 8331, 1, 0, 0, 0, 8333, 8335, 1, 0, 0, 0, 8334, 8324, 1, 0, 0, 0, 8334, 8332, 1, 0, 0, 0, 8335, 8340, 1, 0, 0, 0, 8336, 8338, 5, 36, 0, 0, 8337, 8336, 1, 0, 0, 0, 8337, 8338, 1, 0, 0, 0, 8338, 8339, 1, 0, 0, 0, 8339, 8341, 3, 824, 412, 0, 8340, 8337, 1, 0, 0, 0, 8340, 8341, 1, 0, 0, 0, 8341, 909, 1, 0, 0, 0, 8342, 8343, 5, 102, 0, 0, 8343, 8346, 5, 526, 0, 0, 8344, 8345, 5, 33, 0, 0, 8345, 8347, 3, 670, 335, 0, 8346, 8344, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8348, 1, 0, 0, 0, 8348, 8353, 5, 93, 0, 0, 8349, 8354, 3, 914, 457, 0, 8350, 8354, 5, 182, 0, 0, 8351, 8352, 5, 57, 0, 0, 8352, 8354, 5, 270, 0, 0, 8353, 8349, 1, 0, 0, 0, 8353, 8350, 1, 0, 0, 0, 8353, 8351, 1, 0, 0, 0, 8354, 8369, 1, 0, 0, 0, 8355, 8356, 5, 102, 0, 0, 8356, 8357, 5, 77, 0, 0, 8357, 8360, 5, 526, 0, 0, 8358, 8359, 5, 33, 0, 0, 8359, 8361, 3, 670, 335, 0, 8360, 8358, 1, 0, 0, 0, 8360, 8361, 1, 0, 0, 0, 8361, 8362, 1, 0, 0, 0, 8362, 8366, 5, 93, 0, 0, 8363, 8367, 3, 912, 456, 0, 8364, 8365, 5, 57, 0, 0, 8365, 8367, 5, 270, 0, 0, 8366, 8363, 1, 0, 0, 0, 8366, 8364, 1, 0, 0, 0, 8367, 8369, 1, 0, 0, 0, 8368, 8342, 1, 0, 0, 0, 8368, 8355, 1, 0, 0, 0, 8369, 911, 1, 0, 0, 0, 8370, 8372, 5, 241, 0, 0, 8371, 8373, 3, 138, 69, 0, 8372, 8371, 1, 0, 0, 0, 8372, 8373, 1, 0, 0, 0, 8373, 8377, 1, 0, 0, 0, 8374, 8375, 5, 463, 0, 0, 8375, 8376, 7, 77, 0, 0, 8376, 8378, 5, 450, 0, 0, 8377, 8374, 1, 0, 0, 0, 8377, 8378, 1, 0, 0, 0, 8378, 8379, 1, 0, 0, 0, 8379, 8380, 3, 916, 458, 0, 8380, 913, 1, 0, 0, 0, 8381, 8382, 5, 369, 0, 0, 8382, 8400, 5, 333, 0, 0, 8383, 8384, 3, 804, 402, 0, 8384, 8385, 5, 10, 0, 0, 8385, 8386, 3, 918, 459, 0, 8386, 8401, 1, 0, 0, 0, 8387, 8388, 3, 138, 69, 0, 8388, 8389, 5, 10, 0, 0, 8389, 8390, 5, 2, 0, 0, 8390, 8395, 3, 918, 459, 0, 8391, 8392, 5, 6, 0, 0, 8392, 8394, 3, 918, 459, 0, 8393, 8391, 1, 0, 0, 0, 8394, 8397, 1, 0, 0, 0, 8395, 8393, 1, 0, 0, 0, 8395, 8396, 1, 0, 0, 0, 8396, 8398, 1, 0, 0, 0, 8397, 8395, 1, 0, 0, 0, 8398, 8399, 5, 3, 0, 0, 8399, 8401, 1, 0, 0, 0, 8400, 8383, 1, 0, 0, 0, 8400, 8387, 1, 0, 0, 0, 8401, 8402, 1, 0, 0, 0, 8402, 8400, 1, 0, 0, 0, 8402, 8403, 1, 0, 0, 0, 8403, 915, 1, 0, 0, 0, 8404, 8405, 5, 422, 0, 0, 8405, 8406, 5, 2, 0, 0, 8406, 8411, 3, 918, 459, 0, 8407, 8408, 5, 6, 0, 0, 8408, 8410, 3, 918, 459, 0, 8409, 8407, 1, 0, 0, 0, 8410, 8413, 1, 0, 0, 0, 8411, 8409, 1, 0, 0, 0, 8411, 8412, 1, 0, 0, 0, 8412, 8414, 1, 0, 0, 0, 8413, 8411, 1, 0, 0, 0, 8414, 8415, 5, 3, 0, 0, 8415, 8419, 1, 0, 0, 0, 8416, 8417, 5, 53, 0, 0, 8417, 8419, 5, 422, 0, 0, 8418, 8404, 1, 0, 0, 0, 8418, 8416, 1, 0, 0, 0, 8419, 917, 1, 0, 0, 0, 8420, 8423, 3, 582, 291, 0, 8421, 8423, 5, 53, 0, 0, 8422, 8420, 1, 0, 0, 0, 8422, 8421, 1, 0, 0, 0, 8423, 919, 1, 0, 0, 0, 8424, 8425, 5, 157, 0, 0, 8425, 8426, 3, 928, 464, 0, 8426, 8427, 5, 7, 0, 0, 8427, 921, 1, 0, 0, 0, 8428, 8429, 5, 78, 0, 0, 8429, 8430, 5, 7, 0, 0, 8430, 923, 1, 0, 0, 0, 8431, 8437, 7, 68, 0, 0, 8432, 8434, 5, 33, 0, 0, 8433, 8435, 5, 269, 0, 0, 8434, 8433, 1, 0, 0, 0, 8434, 8435, 1, 0, 0, 0, 8435, 8436, 1, 0, 0, 0, 8436, 8438, 5, 153, 0, 0, 8437, 8432, 1, 0, 0, 0, 8437, 8438, 1, 0, 0, 0, 8438, 8439, 1, 0, 0, 0, 8439, 8440, 5, 7, 0, 0, 8440, 925, 1, 0, 0, 0, 8441, 8442, 5, 333, 0, 0, 8442, 8443, 3, 310, 155, 0, 8443, 8444, 5, 94, 0, 0, 8444, 8445, 5, 53, 0, 0, 8445, 8446, 5, 7, 0, 0, 8446, 8454, 1, 0, 0, 0, 8447, 8450, 5, 313, 0, 0, 8448, 8451, 3, 310, 155, 0, 8449, 8451, 5, 30, 0, 0, 8450, 8448, 1, 0, 0, 0, 8450, 8449, 1, 0, 0, 0, 8451, 8452, 1, 0, 0, 0, 8452, 8454, 5, 7, 0, 0, 8453, 8441, 1, 0, 0, 0, 8453, 8447, 1, 0, 0, 0, 8454, 927, 1, 0, 0, 0, 8455, 8458, 3, 824, 412, 0, 8456, 8458, 5, 28, 0, 0, 8457, 8455, 1, 0, 0, 0, 8457, 8456, 1, 0, 0, 0, 8458, 929, 1, 0, 0, 0, 8459, 8476, 5, 517, 0, 0, 8460, 8461, 5, 102, 0, 0, 8461, 8466, 3, 932, 466, 0, 8462, 8463, 5, 82, 0, 0, 8463, 8465, 3, 932, 466, 0, 8464, 8462, 1, 0, 0, 0, 8465, 8468, 1, 0, 0, 0, 8466, 8464, 1, 0, 0, 0, 8466, 8467, 1, 0, 0, 0, 8467, 8469, 1, 0, 0, 0, 8468, 8466, 1, 0, 0, 0, 8469, 8473, 5, 93, 0, 0, 8470, 8472, 3, 852, 426, 0, 8471, 8470, 1, 0, 0, 0, 8472, 8475, 1, 0, 0, 0, 8473, 8471, 1, 0, 0, 0, 8473, 8474, 1, 0, 0, 0, 8474, 8477, 1, 0, 0, 0, 8475, 8473, 1, 0, 0, 0, 8476, 8460, 1, 0, 0, 0, 8477, 8478, 1, 0, 0, 0, 8478, 8476, 1, 0, 0, 0, 8478, 8479, 1, 0, 0, 0, 8479, 931, 1, 0, 0, 0, 8480, 8484, 3, 934, 467, 0, 8481, 8482, 5, 511, 0, 0, 8482, 8484, 3, 814, 407, 0, 8483, 8480, 1, 0, 0, 0, 8483, 8481, 1, 0, 0, 0, 8484, 933, 1, 0, 0, 0, 8485, 8488, 3, 824, 412, 0, 8486, 8488, 3, 834, 417, 0, 8487, 8485, 1, 0, 0, 0, 8487, 8486, 1, 0, 0, 0, 8488, 935, 1, 0, 0, 0, 8489, 8491, 3, 758, 379, 0, 8490, 8489, 1, 0, 0, 0, 8490, 8491, 1, 0, 0, 0, 8491, 8493, 1, 0, 0, 0, 8492, 8494, 3, 574, 287, 0, 8493, 8492, 1, 0, 0, 0, 8493, 8494, 1, 0, 0, 0, 8494, 8496, 1, 0, 0, 0, 8495, 8497, 3, 604, 302, 0, 8496, 8495, 1, 0, 0, 0, 8496, 8497, 1, 0, 0, 0, 8497, 8499, 1, 0, 0, 0, 8498, 8500, 3, 634, 317, 0, 8499, 8498, 1, 0, 0, 0, 8499, 8500, 1, 0, 0, 0, 8500, 8502, 1, 0, 0, 0, 8501, 8503, 3, 594, 297, 0, 8502, 8501, 1, 0, 0, 0, 8502, 8503, 1, 0, 0, 0, 8503, 8505, 1, 0, 0, 0, 8504, 8506, 3, 700, 350, 0, 8505, 8504, 1, 0, 0, 0, 8505, 8506, 1, 0, 0, 0, 8506, 8508, 1, 0, 0, 0, 8507, 8509, 3, 698, 349, 0, 8508, 8507, 1, 0, 0, 0, 8508, 8509, 1, 0, 0, 0, 8509, 937, 1, 0, 0, 0, 1193, 941, 948, 1068, 1070, 1079, 1084, 1090, 1125, 1135, 1141, 1146, 1153, 1158, 1165, 1176, 1184, 1188, 1200, 1206, 1212, 1216, 1221, 1225, 1238, 1248, 1250, 1256, 1261, 1274, 1277, 1282, 1287, 1298, 1302, 1314, 1318, 1321, 1325, 1337, 1355, 1362, 1370, 1375, 1382, 1390, 1396, 1404, 1412, 1416, 1430, 1435, 1440, 1452, 1458, 1470, 1475, 1485, 1491, 1496, 1505, 1512, 1517, 1522, 1532, 1537, 1542, 1549, 1553, 1567, 1573, 1579, 1584, 1591, 1600, 1609, 1618, 1627, 1631, 1643, 1651, 1661, 1681, 1686, 1689, 1696, 1699, 1703, 1707, 1710, 1715, 1720, 1724, 1733, 1739, 1743, 1752, 1755, 1761, 1770, 1782, 1786, 1790, 1795, 1798, 1804, 1806, 1808, 1812, 1818, 1822, 1827, 1832, 1836, 1839, 1846, 1859, 1872, 1897, 1907, 1914, 1919, 1923, 1930, 1935, 1938, 1940, 1945, 1949, 1953, 1957, 1962, 1965, 1969, 1972, 1976, 1984, 1989, 1992, 1996, 2002, 2011, 2015, 2025, 2030, 2034, 2038, 2040, 2042, 2049, 2054, 2058, 2063, 2075, 2080, 2084, 2088, 2093, 2097, 2100, 2103, 2106, 2109, 2112, 2117, 2120, 2123, 2126, 2129, 2132, 2138, 2142, 2145, 2148, 2151, 2154, 2156, 2163, 2171, 2181, 2186, 2196, 2199, 2204, 2209, 2214, 2217, 2222, 2231, 2233, 2237, 2240, 2244, 2249, 2254, 2258, 2261, 2265, 2268, 2273, 2276, 2281, 2284, 2288, 2291, 2294, 2299, 2302, 2310, 2322, 2326, 2333, 2338, 2341, 2344, 2347, 2352, 2363, 2369, 2373, 2376, 2379, 2384, 2391, 2394, 2398, 2406, 2411, 2414, 2417, 2424, 2429, 2438, 2441, 2444, 2449, 2452, 2464, 2474, 2491, 2495, 2499, 2501, 2518, 2520, 2536, 2547, 2550, 2553, 2562, 2571, 2587, 2590, 2593, 2601, 2605, 2612, 2621, 2625, 2631, 2635, 2638, 2641, 2644, 2647, 2653, 2657, 2662, 2666, 2669, 2672, 2675, 2680, 2686, 2690, 2694, 2698, 2704, 2706, 2711, 2717, 2723, 2727, 2742, 2747, 2750, 2752, 2755, 2759, 2763, 2766, 2769, 2777, 2783, 2785, 2791, 2796, 2801, 2805, 2812, 2814, 2825, 2864, 2874, 2876, 2879, 2883, 2887, 2897, 2899, 2905, 2907, 2916, 2928, 2942, 2947, 2950, 2957, 2962, 2970, 2972, 2978, 2983, 2987, 2992, 2998, 3005, 3011, 3013, 3022, 3028, 3036, 3042, 3047, 3052, 3060, 3075, 3077, 3081, 3085, 3088, 3091, 3100, 3103, 3106, 3112, 3118, 3122, 3134, 3140, 3143, 3148, 3152, 3159, 3169, 3171, 3195, 3207, 3212, 3214, 3218, 3221, 3224, 3234, 3237, 3247, 3252, 3257, 3260, 3263, 3271, 3277, 3284, 3292, 3295, 3306, 3310, 3316, 3323, 3326, 3335, 3349, 3352, 3366, 3377, 3380, 3392, 3397, 3410, 3415, 3428, 3437, 3440, 3443, 3450, 3453, 3465, 3471, 3473, 3481, 3489, 3497, 3509, 3514, 3525, 3536, 3544, 3552, 3559, 3566, 3568, 3571, 3576, 3581, 3600, 3609, 3612, 3639, 3648, 3651, 3655, 3659, 3663, 3670, 3674, 3678, 3682, 3686, 3691, 3695, 3700, 3706, 3711, 3718, 3722, 3728, 3732, 3737, 3745, 3751, 3756, 3763, 3768, 3772, 3777, 3783, 3790, 3795, 3802, 3807, 3814, 3818, 3826, 3830, 3832, 3835, 3840, 3850, 3865, 3868, 3876, 3883, 3888, 3894, 3898, 3905, 3910, 3913, 3916, 3920, 3929, 3947, 3950, 3982, 3987, 3993, 4013, 4018, 4024, 4027, 4031, 4035, 4041, 4044, 4048, 4052, 4057, 4060, 4063, 4066, 4079, 4085, 4093, 4100, 4105, 4108, 4115, 4118, 4126, 4129, 4134, 4141, 4144, 4164, 4176, 4179, 4185, 4190, 4199, 4207, 4212, 4218, 4225, 4233, 4236, 4247, 4249, 4263, 4269, 4277, 4279, 4285, 4289, 4292, 4295, 4300, 4305, 4309, 4312, 4315, 4318, 4321, 4329, 4340, 4343, 4346, 4351, 4354, 4358, 4362, 4368, 4376, 4379, 4392, 4397, 4399, 4404, 4411, 4418, 4427, 4435, 4443, 4450, 4458, 4465, 4473, 4477, 4481, 4483, 4489, 4494, 4498, 4505, 4510, 4515, 4520, 4522, 4532, 4542, 4558, 4576, 4588, 4595, 4610, 4615, 4618, 4623, 4628, 4633, 4636, 4639, 4644, 4651, 4655, 4660, 4667, 4671, 4677, 4686, 4695, 4707, 4709, 4722, 4728, 4732, 4734, 4741, 4754, 4761, 4763, 4779, 4783, 4787, 4792, 4797, 4802, 4807, 4810, 4822, 4875, 4884, 4888, 4897, 4901, 4910, 4914, 4919, 4922, 4926, 4931, 4933, 4942, 4947, 4958, 4962, 4976, 4984, 5022, 5024, 5043, 5046, 5073, 5077, 5081, 5085, 5089, 5092, 5107, 5114, 5128, 5141, 5166, 5185, 5200, 5216, 5223, 5234, 5237, 5256, 5259, 5272, 5276, 5296, 5308, 5312, 5334, 5338, 5348, 5352, 5358, 5362, 5366, 5370, 5377, 5382, 5393, 5397, 5400, 5405, 5411, 5422, 5426, 5429, 5433, 5437, 5440, 5450, 5453, 5457, 5462, 5468, 5471, 5476, 5479, 5486, 5488, 5494, 5498, 5507, 5512, 5514, 5524, 5527, 5532, 5540, 5543, 5548, 5550, 5552, 5558, 5575, 5581, 5594, 5600, 5604, 5609, 5639, 5654, 5659, 5663, 5676, 5680, 5682, 5691, 5697, 5699, 5703, 5706, 5709, 5712, 5715, 5717, 5720, 5724, 5732, 5737, 5740, 5746, 5750, 5754, 5759, 5761, 5765, 5769, 5776, 5782, 5786, 5788, 5790, 5803, 5811, 5819, 5830, 5840, 5845, 5849, 5853, 5860, 5863, 5865, 5873, 5877, 5880, 5887, 5894, 5899, 5906, 5909, 5911, 5914, 5920, 5925, 5929, 5936, 5946, 5953, 5956, 5959, 5963, 5974, 5977, 5980, 5983, 5986, 5993, 5996, 5999, 6006, 6018, 6025, 6027, 6032, 6037, 6039, 6045, 6052, 6057, 6062, 6066, 6070, 6074, 6076, 6080, 6084, 6087, 6090, 6092, 6102, 6104, 6109, 6113, 6118, 6122, 6129, 6134, 6138, 6141, 6147, 6150, 6169, 6176, 6180, 6183, 6187, 6191, 6194, 6197, 6202, 6211, 6218, 6222, 6226, 6230, 6233, 6235, 6240, 6244, 6249, 6255, 6262, 6267, 6272, 6281, 6288, 6296, 6307, 6312, 6316, 6319, 6323, 6328, 6332, 6337, 6345, 6356, 6361, 6365, 6368, 6371, 6373, 6376, 6379, 6382, 6392, 6397, 6403, 6407, 6409, 6416, 6421, 6427, 6429, 6434, 6438, 6442, 6444, 6447, 6454, 6459, 6462, 6468, 6472, 6478, 6487, 6493, 6495, 6500, 6503, 6512, 6519, 6521, 6528, 6533, 6536, 6546, 6557, 6562, 6566, 6574, 6584, 6591, 6597, 6608, 6614, 6624, 6633, 6637, 6640, 6642, 6644, 6648, 6656, 6659, 6664, 6669, 6676, 6678, 6684, 6688, 6691, 6696, 6699, 6701, 6707, 6716, 6722, 6725, 6733, 6736, 6740, 6746, 6748, 6751, 6755, 6760, 6767, 6774, 6776, 6782, 6784, 6789, 6791, 6795, 6804, 6808, 6816, 6818, 6832, 6835, 6843, 6852, 6858, 6863, 6871, 6873, 6878, 6882, 6887, 6892, 6898, 6914, 6916, 6925, 6940, 6945, 6948, 6954, 6959, 6972, 6977, 6981, 6988, 7007, 7019, 7024, 7032, 7034, 7036, 7045, 7048, 7053, 7058, 7061, 7072, 7080, 7085, 7087, 7090, 7094, 7105, 7126, 7134, 7147, 7157, 7163, 7169, 7172, 7175, 7201, 7203, 7224, 7234, 7247, 7252, 7256, 7258, 7270, 7277, 7283, 7289, 7293, 7304, 7317, 7321, 7326, 7329, 7332, 7341, 7352, 7354, 7358, 7363, 7372, 7377, 7385, 7395, 7403, 7407, 7410, 7417, 7429, 7433, 7440, 7448, 7450, 7459, 7462, 7474, 7483, 7490, 7499, 7509, 7514, 7518, 7520, 7523, 7528, 7533, 7541, 7547, 7550, 7554, 7556, 7563, 7573, 7581, 7589, 7597, 7614, 7621, 7629, 7646, 7652, 7658, 7669, 7675, 7680, 7688, 7693, 7696, 7705, 7712, 7717, 7721, 7726, 7732, 7737, 7745, 7800, 7807, 7813, 7815, 7817, 7819, 7825, 7829, 7833, 7844, 7847, 7851, 7855, 7859, 7862, 7865, 7868, 7877, 7882, 7886, 7919, 7929, 7933, 7939, 7944, 7953, 7961, 7972, 7980, 7989, 7998, 8003, 8007, 8017, 8022, 8030, 8035, 8038, 8045, 8051, 8059, 8067, 8070, 8077, 8079, 8082, 8088, 8097, 8101, 8115, 8118, 8120, 8126, 8136, 8138, 8140, 8148, 8151, 8154, 8164, 8172, 8178, 8184, 8191, 8195, 8199, 8202, 8205, 8211, 8218, 8221, 8229, 8231, 8240, 8245, 8247, 8254, 8260, 8263, 8275, 8282, 8284, 8288, 8294, 8299, 8303, 8306, 8309, 8318, 8321, 8324, 8328, 8332, 8334, 8337, 8340, 8346, 8353, 8360, 8366, 8368, 8372, 8377, 8395, 8400, 8402, 8411, 8418, 8422, 8434, 8437, 8450, 8453, 8457, 8466, 8473, 8478, 8483, 8487, 8490, 8493, 8496, 8499, 8502, 8505, 8508] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlParser.ts b/src/lib/postgresql/PostgreSqlParser.ts index 142b94b1..c5dae09a 100644 --- a/src/lib/postgresql/PostgreSqlParser.ts +++ b/src/lib/postgresql/PostgreSqlParser.ts @@ -914,166 +914,170 @@ export class PostgreSqlParser extends SQLParserBase { public static readonly RULE_fromClause = 302; public static readonly RULE_fromList = 303; public static readonly RULE_tableRef = 304; - public static readonly RULE_aliasClause = 305; - public static readonly RULE_funcAliasClause = 306; - public static readonly RULE_joinType = 307; - public static readonly RULE_joinQual = 308; - public static readonly RULE_relationExpr = 309; - public static readonly RULE_publicationRelationExpr = 310; - public static readonly RULE_relationExprList = 311; - public static readonly RULE_relationExprOptAlias = 312; - public static readonly RULE_tableSampleClause = 313; - public static readonly RULE_funcTable = 314; - public static readonly RULE_rowsFromItem = 315; - public static readonly RULE_whereClause = 316; - public static readonly RULE_whereOrCurrentClause = 317; - public static readonly RULE_tableFuncElementList = 318; - public static readonly RULE_tableFuncElement = 319; - public static readonly RULE_xmlTable = 320; - public static readonly RULE_xmlTableColumnEl = 321; - public static readonly RULE_xmlNamespaceEle = 322; - public static readonly RULE_typename = 323; - public static readonly RULE_simpleTypeName = 324; - public static readonly RULE_constTypeName = 325; - public static readonly RULE_numeric = 326; - public static readonly RULE_optFloat = 327; - public static readonly RULE_bit = 328; - public static readonly RULE_character = 329; - public static readonly RULE_constDatetime = 330; - public static readonly RULE_optInterval = 331; - public static readonly RULE_intervalSecond = 332; - public static readonly RULE_comparisonOperator = 333; - public static readonly RULE_expression = 334; - public static readonly RULE_booleanExpression = 335; - public static readonly RULE_predicate = 336; - public static readonly RULE_valueExpression = 337; - public static readonly RULE_primaryExpression = 338; - public static readonly RULE_funcApplication = 339; - public static readonly RULE_func_expr = 340; - public static readonly RULE_funcExprWindowless = 341; - public static readonly RULE_funcExprCommonSubExpr = 342; - public static readonly RULE_xmlAttributeList = 343; - public static readonly RULE_xmlAttributeEl = 344; - public static readonly RULE_documentOrContent = 345; - public static readonly RULE_xmlExistsArgument = 346; - public static readonly RULE_xmlPassingMech = 347; - public static readonly RULE_windowClause = 348; - public static readonly RULE_havingClause = 349; - public static readonly RULE_windowDefinition = 350; - public static readonly RULE_over_clause = 351; - public static readonly RULE_windowSpecification = 352; - public static readonly RULE_optFrameClause = 353; - public static readonly RULE_frameBound = 354; - public static readonly RULE_row = 355; - public static readonly RULE_explicitRow = 356; - public static readonly RULE_subType = 357; - public static readonly RULE_allOp = 358; - public static readonly RULE_mathOp = 359; - public static readonly RULE_qualOp = 360; - public static readonly RULE_qualAllOp = 361; - public static readonly RULE_subqueryOperator = 362; - public static readonly RULE_exprList = 363; - public static readonly RULE_columnExpr = 364; - public static readonly RULE_columnExprNoParen = 365; - public static readonly RULE_funcArgList = 366; - public static readonly RULE_funcArgExpr = 367; - public static readonly RULE_arrayExpr = 368; - public static readonly RULE_extractArg = 369; - public static readonly RULE_unicodeNormalForm = 370; - public static readonly RULE_substrList = 371; - public static readonly RULE_when_clause = 372; - public static readonly RULE_indirectionEl = 373; - public static readonly RULE_indirection = 374; - public static readonly RULE_optIndirection = 375; - public static readonly RULE_targetList = 376; - public static readonly RULE_targetEl = 377; - public static readonly RULE_qualifiedNameList = 378; - public static readonly RULE_tableNameList = 379; - public static readonly RULE_schemaNameList = 380; - public static readonly RULE_databaseNameList = 381; - public static readonly RULE_tableSpaceNameCreate = 382; - public static readonly RULE_tableSpaceName = 383; - public static readonly RULE_tableNameCreate = 384; - public static readonly RULE_tableName = 385; - public static readonly RULE_viewNameCreate = 386; - public static readonly RULE_viewName = 387; - public static readonly RULE_qualifiedName = 388; - public static readonly RULE_tableSpaceNameList = 389; - public static readonly RULE_nameList = 390; - public static readonly RULE_databaseNameCreate = 391; - public static readonly RULE_databaseName = 392; - public static readonly RULE_schemaName = 393; - public static readonly RULE_routineNameCreate = 394; - public static readonly RULE_routineName = 395; - public static readonly RULE_procedureName = 396; - public static readonly RULE_procedureNameCreate = 397; - public static readonly RULE_columnName = 398; - public static readonly RULE_columnNamePath = 399; - public static readonly RULE_columnNameCreate = 400; - public static readonly RULE_functionNameCreate = 401; - public static readonly RULE_functionName = 402; - public static readonly RULE_stringConst = 403; - public static readonly RULE_anysconst = 404; - public static readonly RULE_signedConst = 405; - public static readonly RULE_roleSpec = 406; - public static readonly RULE_roleList = 407; - public static readonly RULE_colId = 408; - public static readonly RULE_typeFunctionName = 409; - public static readonly RULE_nonReservedWord = 410; - public static readonly RULE_colLabel = 411; - public static readonly RULE_identifier = 412; - public static readonly RULE_unreservedKeyword = 413; - public static readonly RULE_colNameKeyword = 414; - public static readonly RULE_typeFuncNameKeyword = 415; - public static readonly RULE_reservedKeyword = 416; - public static readonly RULE_plBlock = 417; - public static readonly RULE_labelDecl = 418; - public static readonly RULE_declStatement = 419; - public static readonly RULE_declCursorArg = 420; - public static readonly RULE_assignOperator = 421; - public static readonly RULE_procStmt = 422; - public static readonly RULE_stmtPerform = 423; - public static readonly RULE_stmtCall = 424; - public static readonly RULE_stmtAssign = 425; - public static readonly RULE_stmtGetdiag = 426; - public static readonly RULE_getdiagListItem = 427; - public static readonly RULE_assignVar = 428; - public static readonly RULE_stmtIf = 429; - public static readonly RULE_stmtElse = 430; - public static readonly RULE_stmtCase = 431; - public static readonly RULE_stmtLoopWhileFor = 432; - public static readonly RULE_forControl = 433; - public static readonly RULE_stmtForeach = 434; - public static readonly RULE_stmtExit = 435; - public static readonly RULE_stmtReturn = 436; - public static readonly RULE_stmtRaise = 437; - public static readonly RULE_optRaiseUsingElem = 438; - public static readonly RULE_stmtAssert = 439; - public static readonly RULE_loopBody = 440; - public static readonly RULE_stmtExecsql = 441; - public static readonly RULE_stmtDynexecute = 442; - public static readonly RULE_optExecuteInto = 443; - public static readonly RULE_stmtOpen = 444; - public static readonly RULE_optOpenBoundListItem = 445; - public static readonly RULE_stmtFetch = 446; - public static readonly RULE_optFetchFirection = 447; - public static readonly RULE_stmtMove = 448; - public static readonly RULE_mergeStmt = 449; - public static readonly RULE_dataSource = 450; - public static readonly RULE_mergeWhenClause = 451; - public static readonly RULE_mergeInsert = 452; - public static readonly RULE_mergeUpdate = 453; - public static readonly RULE_defaultValuesOrValues = 454; - public static readonly RULE_exprofdefault = 455; - public static readonly RULE_stmtClose = 456; - public static readonly RULE_stmtNull = 457; - public static readonly RULE_stmtCommitOrRollback = 458; - public static readonly RULE_stmtSet = 459; - public static readonly RULE_cursorVariable = 460; - public static readonly RULE_exceptionSect = 461; - public static readonly RULE_procCondition = 462; - public static readonly RULE_anyIdentifier = 463; - public static readonly RULE_sqlExpression = 464; + public static readonly RULE_expressionTable = 305; + public static readonly RULE_aliasClause = 306; + public static readonly RULE_funcAliasClause = 307; + public static readonly RULE_joinType = 308; + public static readonly RULE_joinQual = 309; + public static readonly RULE_relationExpr = 310; + public static readonly RULE_publicationRelationExpr = 311; + public static readonly RULE_relationExprList = 312; + public static readonly RULE_relationExprOptAlias = 313; + public static readonly RULE_tableSampleClause = 314; + public static readonly RULE_funcTable = 315; + public static readonly RULE_rowsFromItem = 316; + public static readonly RULE_whereClause = 317; + public static readonly RULE_whereOrCurrentClause = 318; + public static readonly RULE_tableFuncElementList = 319; + public static readonly RULE_tableFuncElement = 320; + public static readonly RULE_xmlTable = 321; + public static readonly RULE_xmlTableColumnEl = 322; + public static readonly RULE_xmlNamespaceEle = 323; + public static readonly RULE_typename = 324; + public static readonly RULE_simpleTypeName = 325; + public static readonly RULE_constTypeName = 326; + public static readonly RULE_numeric = 327; + public static readonly RULE_optFloat = 328; + public static readonly RULE_bit = 329; + public static readonly RULE_character = 330; + public static readonly RULE_constDatetime = 331; + public static readonly RULE_optInterval = 332; + public static readonly RULE_intervalSecond = 333; + public static readonly RULE_comparisonOperator = 334; + public static readonly RULE_expression = 335; + public static readonly RULE_booleanExpression = 336; + public static readonly RULE_predicate = 337; + public static readonly RULE_valueExpression = 338; + public static readonly RULE_primaryExpression = 339; + public static readonly RULE_funcApplication = 340; + public static readonly RULE_func_expr = 341; + public static readonly RULE_funcExprWindowless = 342; + public static readonly RULE_funcExprCommonSubExpr = 343; + public static readonly RULE_xmlAttributeList = 344; + public static readonly RULE_xmlAttributeEl = 345; + public static readonly RULE_documentOrContent = 346; + public static readonly RULE_xmlExistsArgument = 347; + public static readonly RULE_xmlPassingMech = 348; + public static readonly RULE_windowClause = 349; + public static readonly RULE_havingClause = 350; + public static readonly RULE_windowDefinition = 351; + public static readonly RULE_over_clause = 352; + public static readonly RULE_windowSpecification = 353; + public static readonly RULE_optFrameClause = 354; + public static readonly RULE_frameBound = 355; + public static readonly RULE_row = 356; + public static readonly RULE_explicitRow = 357; + public static readonly RULE_subType = 358; + public static readonly RULE_allOp = 359; + public static readonly RULE_mathOp = 360; + public static readonly RULE_qualOp = 361; + public static readonly RULE_qualAllOp = 362; + public static readonly RULE_subqueryOperator = 363; + public static readonly RULE_exprList = 364; + public static readonly RULE_selectExpressionColumnName = 365; + public static readonly RULE_selectLiteralColumnName = 366; + public static readonly RULE_columnExpr = 367; + public static readonly RULE_columnExprNoParen = 368; + public static readonly RULE_funcArgList = 369; + public static readonly RULE_funcArgExpr = 370; + public static readonly RULE_arrayExpr = 371; + public static readonly RULE_extractArg = 372; + public static readonly RULE_unicodeNormalForm = 373; + public static readonly RULE_substrList = 374; + public static readonly RULE_when_clause = 375; + public static readonly RULE_indirectionEl = 376; + public static readonly RULE_indirection = 377; + public static readonly RULE_optIndirection = 378; + public static readonly RULE_targetList = 379; + public static readonly RULE_targetEl = 380; + public static readonly RULE_tableAllColumns = 381; + public static readonly RULE_qualifiedNameList = 382; + public static readonly RULE_tableNameList = 383; + public static readonly RULE_schemaNameList = 384; + public static readonly RULE_databaseNameList = 385; + public static readonly RULE_tableSpaceNameCreate = 386; + public static readonly RULE_tableSpaceName = 387; + public static readonly RULE_tableNameCreate = 388; + public static readonly RULE_tableName = 389; + public static readonly RULE_viewNameCreate = 390; + public static readonly RULE_viewName = 391; + public static readonly RULE_qualifiedName = 392; + public static readonly RULE_tableSpaceNameList = 393; + public static readonly RULE_nameList = 394; + public static readonly RULE_databaseNameCreate = 395; + public static readonly RULE_databaseName = 396; + public static readonly RULE_schemaName = 397; + public static readonly RULE_routineNameCreate = 398; + public static readonly RULE_routineName = 399; + public static readonly RULE_procedureName = 400; + public static readonly RULE_procedureNameCreate = 401; + public static readonly RULE_columnName = 402; + public static readonly RULE_columnNamePath = 403; + public static readonly RULE_columnNameCreate = 404; + public static readonly RULE_functionNameCreate = 405; + public static readonly RULE_functionName = 406; + public static readonly RULE_stringConst = 407; + public static readonly RULE_anysconst = 408; + public static readonly RULE_signedConst = 409; + public static readonly RULE_roleSpec = 410; + public static readonly RULE_roleList = 411; + public static readonly RULE_colId = 412; + public static readonly RULE_typeFunctionName = 413; + public static readonly RULE_nonReservedWord = 414; + public static readonly RULE_colLabel = 415; + public static readonly RULE_identifier = 416; + public static readonly RULE_unreservedKeyword = 417; + public static readonly RULE_colNameKeyword = 418; + public static readonly RULE_typeFuncNameKeyword = 419; + public static readonly RULE_reservedKeyword = 420; + public static readonly RULE_plBlock = 421; + public static readonly RULE_labelDecl = 422; + public static readonly RULE_declStatement = 423; + public static readonly RULE_declCursorArg = 424; + public static readonly RULE_assignOperator = 425; + public static readonly RULE_procStmt = 426; + public static readonly RULE_stmtPerform = 427; + public static readonly RULE_stmtCall = 428; + public static readonly RULE_stmtAssign = 429; + public static readonly RULE_stmtGetdiag = 430; + public static readonly RULE_getdiagListItem = 431; + public static readonly RULE_assignVar = 432; + public static readonly RULE_stmtIf = 433; + public static readonly RULE_stmtElse = 434; + public static readonly RULE_stmtCase = 435; + public static readonly RULE_stmtLoopWhileFor = 436; + public static readonly RULE_forControl = 437; + public static readonly RULE_stmtForeach = 438; + public static readonly RULE_stmtExit = 439; + public static readonly RULE_stmtReturn = 440; + public static readonly RULE_stmtRaise = 441; + public static readonly RULE_optRaiseUsingElem = 442; + public static readonly RULE_stmtAssert = 443; + public static readonly RULE_loopBody = 444; + public static readonly RULE_stmtExecsql = 445; + public static readonly RULE_stmtDynexecute = 446; + public static readonly RULE_optExecuteInto = 447; + public static readonly RULE_stmtOpen = 448; + public static readonly RULE_optOpenBoundListItem = 449; + public static readonly RULE_stmtFetch = 450; + public static readonly RULE_optFetchFirection = 451; + public static readonly RULE_stmtMove = 452; + public static readonly RULE_mergeStmt = 453; + public static readonly RULE_dataSource = 454; + public static readonly RULE_mergeWhenClause = 455; + public static readonly RULE_mergeInsert = 456; + public static readonly RULE_mergeUpdate = 457; + public static readonly RULE_defaultValuesOrValues = 458; + public static readonly RULE_exprofdefault = 459; + public static readonly RULE_stmtClose = 460; + public static readonly RULE_stmtNull = 461; + public static readonly RULE_stmtCommitOrRollback = 462; + public static readonly RULE_stmtSet = 463; + public static readonly RULE_cursorVariable = 464; + public static readonly RULE_exceptionSect = 465; + public static readonly RULE_procCondition = 466; + public static readonly RULE_anyIdentifier = 467; + public static readonly RULE_sqlExpression = 468; public static readonly literalNames = [ null, "'$'", "'('", "')'", "'['", "']'", "','", "';'", "':'", "'*'", @@ -1382,8 +1386,8 @@ export class PostgreSqlParser extends SQLParserBase { "distinctClause", "sortClause", "sortBy", "selectLimit", "limitClause", "fetchClause", "offsetClause", "selectFetchFirstValue", "groupClause", "groupByList", "groupByItem", "forLockingClause", "valuesClause", - "fromClause", "fromList", "tableRef", "aliasClause", "funcAliasClause", - "joinType", "joinQual", "relationExpr", "publicationRelationExpr", + "fromClause", "fromList", "tableRef", "expressionTable", "aliasClause", + "funcAliasClause", "joinType", "joinQual", "relationExpr", "publicationRelationExpr", "relationExprList", "relationExprOptAlias", "tableSampleClause", "funcTable", "rowsFromItem", "whereClause", "whereOrCurrentClause", "tableFuncElementList", "tableFuncElement", "xmlTable", "xmlTableColumnEl", @@ -1396,24 +1400,26 @@ export class PostgreSqlParser extends SQLParserBase { "windowClause", "havingClause", "windowDefinition", "over_clause", "windowSpecification", "optFrameClause", "frameBound", "row", "explicitRow", "subType", "allOp", "mathOp", "qualOp", "qualAllOp", "subqueryOperator", - "exprList", "columnExpr", "columnExprNoParen", "funcArgList", "funcArgExpr", + "exprList", "selectExpressionColumnName", "selectLiteralColumnName", + "columnExpr", "columnExprNoParen", "funcArgList", "funcArgExpr", "arrayExpr", "extractArg", "unicodeNormalForm", "substrList", "when_clause", "indirectionEl", "indirection", "optIndirection", "targetList", - "targetEl", "qualifiedNameList", "tableNameList", "schemaNameList", - "databaseNameList", "tableSpaceNameCreate", "tableSpaceName", "tableNameCreate", - "tableName", "viewNameCreate", "viewName", "qualifiedName", "tableSpaceNameList", - "nameList", "databaseNameCreate", "databaseName", "schemaName", - "routineNameCreate", "routineName", "procedureName", "procedureNameCreate", - "columnName", "columnNamePath", "columnNameCreate", "functionNameCreate", - "functionName", "stringConst", "anysconst", "signedConst", "roleSpec", - "roleList", "colId", "typeFunctionName", "nonReservedWord", "colLabel", - "identifier", "unreservedKeyword", "colNameKeyword", "typeFuncNameKeyword", - "reservedKeyword", "plBlock", "labelDecl", "declStatement", "declCursorArg", - "assignOperator", "procStmt", "stmtPerform", "stmtCall", "stmtAssign", - "stmtGetdiag", "getdiagListItem", "assignVar", "stmtIf", "stmtElse", - "stmtCase", "stmtLoopWhileFor", "forControl", "stmtForeach", "stmtExit", - "stmtReturn", "stmtRaise", "optRaiseUsingElem", "stmtAssert", "loopBody", - "stmtExecsql", "stmtDynexecute", "optExecuteInto", "stmtOpen", "optOpenBoundListItem", + "targetEl", "tableAllColumns", "qualifiedNameList", "tableNameList", + "schemaNameList", "databaseNameList", "tableSpaceNameCreate", "tableSpaceName", + "tableNameCreate", "tableName", "viewNameCreate", "viewName", "qualifiedName", + "tableSpaceNameList", "nameList", "databaseNameCreate", "databaseName", + "schemaName", "routineNameCreate", "routineName", "procedureName", + "procedureNameCreate", "columnName", "columnNamePath", "columnNameCreate", + "functionNameCreate", "functionName", "stringConst", "anysconst", + "signedConst", "roleSpec", "roleList", "colId", "typeFunctionName", + "nonReservedWord", "colLabel", "identifier", "unreservedKeyword", + "colNameKeyword", "typeFuncNameKeyword", "reservedKeyword", "plBlock", + "labelDecl", "declStatement", "declCursorArg", "assignOperator", + "procStmt", "stmtPerform", "stmtCall", "stmtAssign", "stmtGetdiag", + "getdiagListItem", "assignVar", "stmtIf", "stmtElse", "stmtCase", + "stmtLoopWhileFor", "forControl", "stmtForeach", "stmtExit", "stmtReturn", + "stmtRaise", "optRaiseUsingElem", "stmtAssert", "loopBody", "stmtExecsql", + "stmtDynexecute", "optExecuteInto", "stmtOpen", "optOpenBoundListItem", "stmtFetch", "optFetchFirection", "stmtMove", "mergeStmt", "dataSource", "mergeWhenClause", "mergeInsert", "mergeUpdate", "defaultValuesOrValues", "exprofdefault", "stmtClose", "stmtNull", "stmtCommitOrRollback", @@ -1442,21 +1448,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 933; + this.state = 941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 2 || _la === 31 || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 570441729) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 142606337) !== 0) || _la === 105 || _la === 129 || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 2159673601) !== 0) || ((((_la - 177)) & ~0x1F) === 0 && ((1 << (_la - 177)) & 100680739) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1090557953) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 679839745) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 272417) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 6401) !== 0) || ((((_la - 422)) & ~0x1F) === 0 && ((1 << (_la - 422)) & 4196353) !== 0) || _la === 454 || _la === 525 || _la === 583) { { { - this.state = 930; + this.state = 938; this.singleStmt(); } } - this.state = 935; + this.state = 943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 936; + this.state = 944; this.match(PostgreSqlParser.EOF); } } @@ -1481,14 +1487,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 938; + this.state = 946; this.stmt(); - this.state = 940; + this.state = 948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 939; + this.state = 947; this.match(PostgreSqlParser.SEMI); } } @@ -1514,832 +1520,832 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 4, PostgreSqlParser.RULE_stmt); let _la: number; try { - this.state = 1062; + this.state = 1070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 942; + this.state = 950; this.alterEventTrigStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 943; + this.state = 951; this.alterCollationStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 944; + this.state = 952; this.alterDatabaseStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 945; + this.state = 953; this.alterDatabaseSetStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 946; + this.state = 954; this.alterDefaultPrivilegesStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 947; + this.state = 955; this.alterDomainStmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 948; + this.state = 956; this.alterEnumStmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 949; + this.state = 957; this.alterExtensionStmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 950; + this.state = 958; this.alterExtensionContentsStmt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 951; + this.state = 959; this.alterFdwStmt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 952; + this.state = 960; this.alterForeignServerStmt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 953; + this.state = 961; this.alterFunctionStmt(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 954; + this.state = 962; this.alterGroupStmt(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 955; + this.state = 963; this.alterObjectDependsStmt(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 956; + this.state = 964; this.alterObjectSchemaStmt(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 957; + this.state = 965; this.alterOwnerStmt(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 958; + this.state = 966; this.alterOperatorStmt(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 959; + this.state = 967; this.alterTypeStmt(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 960; + this.state = 968; this.alterPolicyStmt(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 961; + this.state = 969; this.alterProcedureStmt(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 962; + this.state = 970; this.alterSeqStmt(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 963; + this.state = 971; this.alterSystemStmt(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 964; + this.state = 972; this.alterTableStmt(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 965; + this.state = 973; this.alterTblSpcStmt(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 966; + this.state = 974; this.alterCompositeTypeStmt(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 967; + this.state = 975; this.alterPublicationStmt(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 968; + this.state = 976; this.alterRoleSetStmt(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 969; + this.state = 977; this.alterRoutineStmt(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 970; + this.state = 978; this.alterRoleStmt(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 971; + this.state = 979; this.alterSubscriptionStmt(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 972; + this.state = 980; this.alterStatsStmt(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 973; + this.state = 981; this.alterSearchConfigurationStmt(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 974; + this.state = 982; this.alterSearchDictionaryStmt(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 975; + this.state = 983; this.alterUserMappingStmt(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 976; + this.state = 984; this.analyzeStmt(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 977; + this.state = 985; this.callStmt(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 978; + this.state = 986; this.checkPointStmt(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 979; + this.state = 987; this.closePortalStmt(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 980; + this.state = 988; this.clusterStmt(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 981; + this.state = 989; this.commentStmt(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 982; + this.state = 990; this.constraintsSetStmt(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 983; + this.state = 991; this.copyStmt(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 984; + this.state = 992; this.createAccessMethodStmt(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 985; + this.state = 993; this.createAsStmt(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 986; + this.state = 994; this.createAssertionStmt(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 987; + this.state = 995; this.createCastStmt(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 988; + this.state = 996; this.createConversionStmt(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 989; + this.state = 997; this.createDomainStmt(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 990; + this.state = 998; this.createExtensionStmt(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 991; + this.state = 999; this.createFdwStmt(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 992; + this.state = 1000; this.createForeignServerStmt(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 993; + this.state = 1001; this.createForeignTableStmt(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 994; + this.state = 1002; this.createFunctionStmt(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 995; + this.state = 1003; this.createGroupStmt(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 996; + this.state = 1004; this.createMaterializedViewStmt(); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 997; + this.state = 1005; this.createOperatorClassStmt(); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 998; + this.state = 1006; this.createOperatorFamilyStmt(); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 999; + this.state = 1007; this.createPublicationStmt(); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1000; + this.state = 1008; this.alterOperatorFamilyStmt(); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1001; + this.state = 1009; this.createPolicyStmt(); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1002; + this.state = 1010; this.createProceduralLangStmt(); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1003; + this.state = 1011; this.createSchemaStmt(); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1004; + this.state = 1012; this.createSeqStmt(); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1005; + this.state = 1013; this.createStmt(); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1006; + this.state = 1014; this.createSubscriptionStmt(); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1007; + this.state = 1015; this.createStatsStmt(); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1008; + this.state = 1016; this.createTableSpaceStmt(); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1009; + this.state = 1017; this.createTransformStmt(); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1010; + this.state = 1018; this.createTrigStmt(); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1011; + this.state = 1019; this.createEventTrigStmt(); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1012; + this.state = 1020; this.createRoleStmt(); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1013; + this.state = 1021; this.createUserStmt(); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1014; + this.state = 1022; this.createUserMappingStmt(); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1015; + this.state = 1023; this.createDbStmt(); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1016; + this.state = 1024; this.dealLocateStmt(); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1017; + this.state = 1025; this.declareCursorStmt(); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1018; + this.state = 1026; this.defineStmt(); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1019; + this.state = 1027; this.deleteStmt(); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1020; + this.state = 1028; this.discardStmt(); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1021; + this.state = 1029; this.doStmt(); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1022; + this.state = 1030; this.dropStmt(); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1023; + this.state = 1031; this.executeStmt(); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1024; + this.state = 1032; this.explainStmt(); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1025; + this.state = 1033; this.fetchStmt(); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1026; + this.state = 1034; this.grantStmt(); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1027; + this.state = 1035; this.grantRoleStmt(); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1028; + this.state = 1036; this.mergeStmt(); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1029; + this.state = 1037; this.importForeignSchemaStmt(); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1030; + this.state = 1038; this.indexStmt(); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1031; + this.state = 1039; this.insertStmt(); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1032; + this.state = 1040; this.listenStmt(); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1033; + this.state = 1041; this.refreshMaterializedViewStmt(); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1034; + this.state = 1042; this.loadStmt(); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1035; + this.state = 1043; this.lockStmt(); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1036; + this.state = 1044; this.notifyStmt(); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1037; + this.state = 1045; this.prepareStmt(); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1038; + this.state = 1046; this.reassignOwnedStmt(); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1039; + this.state = 1047; this.reindexStmt(); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1040; + this.state = 1048; this.removeAggregateStmt(); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1041; + this.state = 1049; this.removeFuncStmt(); } break; case 101: this.enterOuterAlt(localContext, 101); { - this.state = 1042; + this.state = 1050; this.removeOperatorStmt(); } break; case 102: this.enterOuterAlt(localContext, 102); { - this.state = 1043; + this.state = 1051; this.renameStmt(); } break; case 103: this.enterOuterAlt(localContext, 103); { - this.state = 1044; + this.state = 1052; this.revokeStmt(); } break; case 104: this.enterOuterAlt(localContext, 104); { - this.state = 1045; + this.state = 1053; this.revokeRoleStmt(); } break; case 105: this.enterOuterAlt(localContext, 105); { - this.state = 1046; + this.state = 1054; this.ruleStmt(); } break; case 106: this.enterOuterAlt(localContext, 106); { - this.state = 1047; + this.state = 1055; this.secLabelStmt(); } break; case 107: this.enterOuterAlt(localContext, 107); { - this.state = 1048; + this.state = 1056; this.selectStmt(); } break; case 108: this.enterOuterAlt(localContext, 108); { - this.state = 1049; + this.state = 1057; this.transactionStmt(); } break; case 109: this.enterOuterAlt(localContext, 109); { - this.state = 1050; + this.state = 1058; this.truncateStmt(); } break; case 110: this.enterOuterAlt(localContext, 110); { - this.state = 1051; + this.state = 1059; this.unListenStmt(); } break; case 111: this.enterOuterAlt(localContext, 111); { - this.state = 1052; + this.state = 1060; this.updateStmt(); } break; case 112: this.enterOuterAlt(localContext, 112); { - this.state = 1053; + this.state = 1061; this.vacuumStmt(); } break; case 113: this.enterOuterAlt(localContext, 113); { - this.state = 1054; + this.state = 1062; this.variableResetStmt(); } break; case 114: this.enterOuterAlt(localContext, 114); { - this.state = 1055; + this.state = 1063; this.variableSetStmt(); } break; case 115: this.enterOuterAlt(localContext, 115); { - this.state = 1056; + this.state = 1064; this.variableShowStmt(); } break; case 116: this.enterOuterAlt(localContext, 116); { - this.state = 1057; + this.state = 1065; this.viewStmt(); } break; case 117: this.enterOuterAlt(localContext, 117); { - this.state = 1058; + this.state = 1066; this.match(PostgreSqlParser.MetaCommand); - this.state = 1060; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 584) { { - this.state = 1059; + this.state = 1067; this.match(PostgreSqlParser.EndMetaCommand); } } @@ -2368,9 +2374,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1064; + this.state = 1072; this.match(PostgreSqlParser.KW_CALL); - this.state = 1065; + this.state = 1073; this.funcApplication(); } } @@ -2395,35 +2401,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1067; + this.state = 1075; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1068; + this.state = 1076; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1069; + this.state = 1077; this.roleSpec(); - this.state = 1071; + this.state = 1079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 1070; + this.state = 1078; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1076; + this.state = 1084; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1073; + this.state = 1081; this.createOperatorRoleElem(); } } } - this.state = 1078; + this.state = 1086; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); } @@ -2448,15 +2454,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 10, PostgreSqlParser.RULE_alterOperatorRoleElem); let _la: number; try { - this.state = 1117; + this.state = 1125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1079; + this.state = 1087; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1082; + this.state = 1090; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -2464,13 +2470,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1080; + this.state = 1088; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 1081; + this.state = 1089; this.match(PostgreSqlParser.KW_NULL); } break; @@ -2482,7 +2488,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1084; + this.state = 1092; _la = this.tokenStream.LA(1); if(!(_la === 195 || _la === 364)) { this.errorHandler.recoverInline(this); @@ -2491,152 +2497,152 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1085; + this.state = 1093; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1086; + this.state = 1094; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1087; + this.state = 1095; this.match(PostgreSqlParser.KW_INHERIT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1088; + this.state = 1096; this.match(PostgreSqlParser.KW_NOINHERIT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1089; + this.state = 1097; this.match(PostgreSqlParser.KW_CREATEUSER); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1090; + this.state = 1098; this.match(PostgreSqlParser.KW_NOCREATEUSER); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1091; + this.state = 1099; this.match(PostgreSqlParser.KW_CREATEROLE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1092; + this.state = 1100; this.match(PostgreSqlParser.KW_NOCREATEROLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1093; + this.state = 1101; this.match(PostgreSqlParser.KW_CREATEDB); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1094; + this.state = 1102; this.match(PostgreSqlParser.KW_NOCREATEDB); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1095; + this.state = 1103; this.match(PostgreSqlParser.KW_SUPERUSER); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1096; + this.state = 1104; this.match(PostgreSqlParser.KW_NOSUPERUSER); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1097; + this.state = 1105; this.match(PostgreSqlParser.KW_LOGIN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1098; + this.state = 1106; this.match(PostgreSqlParser.KW_NOLOGIN); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1099; + this.state = 1107; this.match(PostgreSqlParser.KW_REPLICATION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1100; + this.state = 1108; this.match(PostgreSqlParser.KW_NOREPLICATION); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1101; + this.state = 1109; this.match(PostgreSqlParser.KW_BYPASSRLS); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1102; + this.state = 1110; this.match(PostgreSqlParser.KW_NOBYPASSRLS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1103; + this.state = 1111; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 1104; + this.state = 1112; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 1105; + this.state = 1113; this.signedConst(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1106; + this.state = 1114; this.match(PostgreSqlParser.KW_VALID); - this.state = 1107; + this.state = 1115; this.match(PostgreSqlParser.KW_UNTIL); - this.state = 1108; + this.state = 1116; this.stringConst(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1109; + this.state = 1117; this.match(PostgreSqlParser.KW_IN); - this.state = 1110; + this.state = 1118; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2645,14 +2651,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1111; + this.state = 1119; this.nameList(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1112; + this.state = 1120; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2661,23 +2667,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1113; + this.state = 1121; this.roleList(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1114; + this.state = 1122; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 1115; + this.state = 1123; this.nameList(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1116; + this.state = 1124; this.identifier(); } break; @@ -2702,29 +2708,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 12, PostgreSqlParser.RULE_createOperatorRoleElem); let _la: number; try { - this.state = 1127; + this.state = 1135; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1119; + this.state = 1127; this.alterOperatorRoleElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1120; + this.state = 1128; this.match(PostgreSqlParser.KW_SYSID); - this.state = 1121; + this.state = 1129; this.match(PostgreSqlParser.Integral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1122; + this.state = 1130; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2733,16 +2739,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1123; + this.state = 1131; this.roleList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1124; + this.state = 1132; this.match(PostgreSqlParser.KW_IN); - this.state = 1125; + this.state = 1133; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2751,7 +2757,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1126; + this.state = 1134; this.roleList(); } break; @@ -2778,35 +2784,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1129; + this.state = 1137; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1130; + this.state = 1138; this.match(PostgreSqlParser.KW_USER); - this.state = 1131; + this.state = 1139; this.roleSpec(); - this.state = 1133; + this.state = 1141; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 1132; + this.state = 1140; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1138; + this.state = 1146; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1135; + this.state = 1143; this.createOperatorRoleElem(); } } } - this.state = 1140; + this.state = 1148; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); } @@ -2834,9 +2840,9 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1141; + this.state = 1149; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1142; + this.state = 1150; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2845,31 +2851,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1143; + this.state = 1151; this.roleSpec(); - this.state = 1145; + this.state = 1153; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: { - this.state = 1144; + this.state = 1152; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1150; + this.state = 1158; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1147; + this.state = 1155; this.alterOperatorRoleElem(); } } } - this.state = 1152; + this.state = 1160; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); } @@ -2896,9 +2902,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1153; + this.state = 1161; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1154; + this.state = 1162; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2907,12 +2913,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1157; + this.state = 1165; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1155; + this.state = 1163; this.match(PostgreSqlParser.KW_ALL); } break; @@ -3335,20 +3341,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1156; + this.state = 1164; this.roleSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1159; + this.state = 1167; this.match(PostgreSqlParser.KW_IN); - this.state = 1160; + this.state = 1168; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 1161; + this.state = 1169; this.databaseName(); - this.state = 1162; + this.state = 1170; this.setOrResetClause(); } } @@ -3373,23 +3379,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1164; + this.state = 1172; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1165; + this.state = 1173; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 1166; + this.state = 1174; this.routineName(); - this.state = 1168; + this.state = 1176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1167; + this.state = 1175; this.funcArgs(); } } - this.state = 1170; + this.state = 1178; this.alterRoutineClause(); } } @@ -3413,36 +3419,36 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1198; + this.state = 1206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1172; + this.state = 1180; this.routineAction(); - this.state = 1176; + this.state = 1184; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1173; + this.state = 1181; this.routineAction(); } } } - this.state = 1178; + this.state = 1186; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); } - this.state = 1180; + this.state = 1188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 1179; + this.state = 1187; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -3452,56 +3458,56 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1182; + this.state = 1190; this.match(PostgreSqlParser.KW_RENAME); - this.state = 1183; + this.state = 1191; this.match(PostgreSqlParser.KW_TO); - this.state = 1184; + this.state = 1192; this.routineNameCreate(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1185; + this.state = 1193; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1186; + this.state = 1194; this.match(PostgreSqlParser.KW_TO); - this.state = 1187; + this.state = 1195; this.roleSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1188; + this.state = 1196; this.match(PostgreSqlParser.KW_SET); - this.state = 1189; + this.state = 1197; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1190; + this.state = 1198; this.schemaNameCreate(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1192; + this.state = 1200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1191; + this.state = 1199; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1194; + this.state = 1202; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 1195; + this.state = 1203; this.match(PostgreSqlParser.KW_ON); - this.state = 1196; + this.state = 1204; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 1197; + this.state = 1205; this.colId(); } break; @@ -3526,86 +3532,86 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 24, PostgreSqlParser.RULE_routineAction); let _la: number; try { - this.state = 1242; + this.state = 1250; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1200; + this.state = 1208; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1201; + this.state = 1209; this.match(PostgreSqlParser.KW_STABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1202; + this.state = 1210; this.match(PostgreSqlParser.KW_VOLATILE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1204; + this.state = 1212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 1203; + this.state = 1211; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 1206; + this.state = 1214; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1217; + this.state = 1225; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 1208; + this.state = 1216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1207; + this.state = 1215; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1210; + this.state = 1218; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1211; + this.state = 1219; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 1213; + this.state = 1221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1212; + this.state = 1220; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1215; + this.state = 1223; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1216; + this.state = 1224; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -3615,9 +3621,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1219; + this.state = 1227; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 1220; + this.state = 1228; _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -3631,29 +3637,29 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1221; + this.state = 1229; this.match(PostgreSqlParser.KW_COST); - this.state = 1222; + this.state = 1230; this.colLabel(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1223; + this.state = 1231; this.match(PostgreSqlParser.KW_ROWS); - this.state = 1224; + this.state = 1232; this.colId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1225; + this.state = 1233; this.match(PostgreSqlParser.KW_SET); - this.state = 1226; + this.state = 1234; this.colId(); - this.state = 1227; + this.state = 1235; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -3662,18 +3668,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1230; + this.state = 1238; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 1228; + this.state = 1236; this.colId(); } break; case 2: { - this.state = 1229; + this.state = 1237; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -3683,22 +3689,22 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1232; + this.state = 1240; this.match(PostgreSqlParser.KW_SET); - this.state = 1233; + this.state = 1241; this.colId(); - this.state = 1234; + this.state = 1242; this.match(PostgreSqlParser.KW_FROM); - this.state = 1235; + this.state = 1243; this.match(PostgreSqlParser.KW_CURRENT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1237; + this.state = 1245; this.match(PostgreSqlParser.KW_RESET); - this.state = 1240; + this.state = 1248; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -4096,13 +4102,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1238; + this.state = 1246; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1239; + this.state = 1247; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4134,35 +4140,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1244; + this.state = 1252; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1245; + this.state = 1253; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1246; + this.state = 1254; this.roleSpec(); - this.state = 1248; + this.state = 1256; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 1247; + this.state = 1255; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1253; + this.state = 1261; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1250; + this.state = 1258; this.createOperatorRoleElem(); } } } - this.state = 1255; + this.state = 1263; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -4189,13 +4195,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1256; + this.state = 1264; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1257; + this.state = 1265; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1258; + this.state = 1266; this.roleSpec(); - this.state = 1259; + this.state = 1267; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -4204,9 +4210,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1260; + this.state = 1268; this.match(PostgreSqlParser.KW_USER); - this.state = 1261; + this.state = 1269; this.roleList(); } } @@ -4232,61 +4238,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1263; + this.state = 1271; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1264; + this.state = 1272; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1266; + this.state = 1274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 1265; + this.state = 1273; this.ifNotExists(); } break; } - this.state = 1274; + this.state = 1282; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 1269; + this.state = 1277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 1268; + this.state = 1276; this.schemaNameCreate(); } } - this.state = 1271; + this.state = 1279; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1272; + this.state = 1280; this.roleSpec(); } break; case 2: { - this.state = 1273; + this.state = 1281; this.schemaNameCreate(); } break; } - this.state = 1279; + this.state = 1287; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1276; + this.state = 1284; this.schemaStmt(); } } } - this.state = 1281; + this.state = 1289; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } @@ -4312,7 +4318,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1282; + this.state = 1290; this.anyName(); } } @@ -4334,48 +4340,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SchemaStmtContext(this.context, this.state); this.enterRule(localContext, 34, PostgreSqlParser.RULE_schemaStmt); try { - this.state = 1290; + this.state = 1298; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1284; + this.state = 1292; this.createStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1285; + this.state = 1293; this.indexStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1286; + this.state = 1294; this.createSeqStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1287; + this.state = 1295; this.createTrigStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1288; + this.state = 1296; this.grantStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1289; + this.state = 1297; this.viewStmt(); } break; @@ -4402,14 +4408,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1292; + this.state = 1300; this.match(PostgreSqlParser.KW_SET); - this.state = 1294; + this.state = 1302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 1293; + this.state = 1301; _la = this.tokenStream.LA(1); if(!(_la === 254 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -4421,7 +4427,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 1296; + this.state = 1304; this.setRest(); } } @@ -4443,37 +4449,37 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetRestContext(this.context, this.state); this.enterRule(localContext, 38, PostgreSqlParser.RULE_setRest); try { - this.state = 1306; + this.state = 1314; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1298; + this.state = 1306; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1299; + this.state = 1307; this.transactionModeList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1300; + this.state = 1308; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1301; + this.state = 1309; this.match(PostgreSqlParser.KW_CHARACTERISTICS); - this.state = 1302; + this.state = 1310; this.match(PostgreSqlParser.KW_AS); - this.state = 1303; + this.state = 1311; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1304; + this.state = 1312; this.transactionModeList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1305; + this.state = 1313; this.setRestMore(); } break; @@ -4500,12 +4506,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1310; + this.state = 1318; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1308; + this.state = 1316; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4904,19 +4910,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1309; + this.state = 1317; this.varName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1313; + this.state = 1321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 94) { { - this.state = 1312; + this.state = 1320; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -4928,18 +4934,18 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1317; + this.state = 1325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 1315; + this.state = 1323; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 1316; + this.state = 1324; this.varList(); } break; @@ -4964,55 +4970,55 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetRestMoreContext(this.context, this.state); this.enterRule(localContext, 42, PostgreSqlParser.RULE_setRestMore); try { - this.state = 1347; + this.state = 1355; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1319; + this.state = 1327; this.match(PostgreSqlParser.KW_TIME); - this.state = 1320; + this.state = 1328; this.match(PostgreSqlParser.KW_ZONE); - this.state = 1321; + this.state = 1329; this.zoneValue(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1322; + this.state = 1330; this.match(PostgreSqlParser.KW_CATALOG); - this.state = 1323; + this.state = 1331; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1324; + this.state = 1332; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1325; + this.state = 1333; this.schemaName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1326; + this.state = 1334; this.match(PostgreSqlParser.KW_NAMES); - this.state = 1329; + this.state = 1337; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 1327; + this.state = 1335; this.stringConst(); } break; case 2: { - this.state = 1328; + this.state = 1336; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -5022,60 +5028,60 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1331; + this.state = 1339; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1332; + this.state = 1340; this.nonReservedWordOrStringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1333; + this.state = 1341; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1334; + this.state = 1342; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1335; + this.state = 1343; this.nonReservedWordOrStringConst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1336; + this.state = 1344; this.match(PostgreSqlParser.KW_XML); - this.state = 1337; + this.state = 1345; this.match(PostgreSqlParser.KW_OPTION); - this.state = 1338; + this.state = 1346; this.documentOrContent(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1339; + this.state = 1347; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1340; + this.state = 1348; this.match(PostgreSqlParser.KW_SNAPSHOT); - this.state = 1341; + this.state = 1349; this.stringConst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1342; + this.state = 1350; this.varName(); - this.state = 1343; + this.state = 1351; this.match(PostgreSqlParser.KW_FROM); - this.state = 1344; + this.state = 1352; this.match(PostgreSqlParser.KW_CURRENT); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1346; + this.state = 1354; this.genericSet(); } break; @@ -5102,21 +5108,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1357; this.colId(); - this.state = 1354; + this.state = 1362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 1350; + this.state = 1358; this.match(PostgreSqlParser.DOT); - this.state = 1351; + this.state = 1359; this.colId(); } } - this.state = 1356; + this.state = 1364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5143,21 +5149,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1357; + this.state = 1365; this.varValue(); - this.state = 1362; + this.state = 1370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1358; + this.state = 1366; this.match(PostgreSqlParser.COMMA); - this.state = 1359; + this.state = 1367; this.varValue(); } } - this.state = 1364; + this.state = 1372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5181,7 +5187,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new VarValueContext(this.context, this.state); this.enterRule(localContext, 48, PostgreSqlParser.RULE_varValue); try { - this.state = 1367; + this.state = 1375; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -5604,7 +5610,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 1365; + this.state = 1373; this.booleanOrString(); } break; @@ -5614,7 +5620,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 1366; + this.state = 1374; this.numericOnly(); } break; @@ -5641,15 +5647,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 50, PostgreSqlParser.RULE_isoLevel); let _la: number; try { - this.state = 1374; + this.state = 1382; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 1369; + this.state = 1377; this.match(PostgreSqlParser.KW_READ); - this.state = 1370; + this.state = 1378; _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 363)) { this.errorHandler.recoverInline(this); @@ -5663,16 +5669,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REPEATABLE: this.enterOuterAlt(localContext, 2); { - this.state = 1371; + this.state = 1379; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 1372; + this.state = 1380; this.match(PostgreSqlParser.KW_READ); } break; case PostgreSqlParser.KW_SERIALIZABLE: this.enterOuterAlt(localContext, 3); { - this.state = 1373; + this.state = 1381; this.match(PostgreSqlParser.KW_SERIALIZABLE); } break; @@ -5698,48 +5704,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new OptBooleanOrStringColumnContext(this.context, this.state); this.enterRule(localContext, 52, PostgreSqlParser.RULE_optBooleanOrStringColumn); try { - this.state = 1382; + this.state = 1390; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1376; + this.state = 1384; this.match(PostgreSqlParser.KW_TRUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1377; + this.state = 1385; this.match(PostgreSqlParser.KW_FALSE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1378; + this.state = 1386; this.match(PostgreSqlParser.KW_ON); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1379; + this.state = 1387; this.columnName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1380; + this.state = 1388; this.typeFuncNameKeyword(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1381; + this.state = 1389; this.stringConst(); } break; @@ -5763,27 +5769,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new BooleanOrStringContext(this.context, this.state); this.enterRule(localContext, 54, PostgreSqlParser.RULE_booleanOrString); try { - this.state = 1388; + this.state = 1396; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1392; this.match(PostgreSqlParser.KW_TRUE); } break; case PostgreSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 2); { - this.state = 1385; + this.state = 1393; this.match(PostgreSqlParser.KW_FALSE); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 3); { - this.state = 1386; + this.state = 1394; this.match(PostgreSqlParser.KW_ON); } break; @@ -6204,7 +6210,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 1387; + this.state = 1395; this.nonReservedWordOrStringConst(); } break; @@ -6230,43 +6236,43 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ZoneValueContext(this.context, this.state); this.enterRule(localContext, 56, PostgreSqlParser.RULE_zoneValue); try { - this.state = 1404; + this.state = 1412; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1390; + this.state = 1398; this.stringConst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1391; + this.state = 1399; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1392; + this.state = 1400; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1393; + this.state = 1401; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1394; + this.state = 1402; this.stringConst(); - this.state = 1396; + this.state = 1404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: { - this.state = 1395; + this.state = 1403; this.optInterval(); } break; @@ -6276,25 +6282,25 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1398; + this.state = 1406; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1399; + this.state = 1407; this.optFloat(); - this.state = 1400; + this.state = 1408; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1402; + this.state = 1410; this.numericOnly(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1403; + this.state = 1411; this.match(PostgreSqlParser.KW_LOCAL); } break; @@ -6318,20 +6324,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new NonReservedWordOrStringConstContext(this.context, this.state); this.enterRule(localContext, 58, PostgreSqlParser.RULE_nonReservedWordOrStringConst); try { - this.state = 1408; + this.state = 1416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1406; + this.state = 1414; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1407; + this.state = 1415; this.stringConst(); } break; @@ -6357,9 +6363,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1410; + this.state = 1418; this.match(PostgreSqlParser.KW_RESET); - this.state = 1411; + this.state = 1419; this.resetRest(); } } @@ -6381,49 +6387,49 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ResetRestContext(this.context, this.state); this.enterRule(localContext, 62, PostgreSqlParser.RULE_resetRest); try { - this.state = 1422; + this.state = 1430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1413; + this.state = 1421; this.match(PostgreSqlParser.KW_TIME); - this.state = 1414; + this.state = 1422; this.match(PostgreSqlParser.KW_ZONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1415; + this.state = 1423; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1416; + this.state = 1424; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1417; + this.state = 1425; this.match(PostgreSqlParser.KW_LEVEL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1418; + this.state = 1426; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1419; + this.state = 1427; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1420; + this.state = 1428; this.match(PostgreSqlParser.KW_ALL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1421; + this.state = 1429; this.varName(); } break; @@ -6447,22 +6453,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetOrResetClauseContext(this.context, this.state); this.enterRule(localContext, 64, PostgreSqlParser.RULE_setOrResetClause); try { - this.state = 1427; + this.state = 1435; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1424; + this.state = 1432; this.match(PostgreSqlParser.KW_SET); - this.state = 1425; + this.state = 1433; this.setRest(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 1426; + this.state = 1434; this.variableResetStmt(); } break; @@ -6488,22 +6494,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionSetOrResetClauseContext(this.context, this.state); this.enterRule(localContext, 66, PostgreSqlParser.RULE_functionSetOrResetClause); try { - this.state = 1432; + this.state = 1440; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1429; + this.state = 1437; this.match(PostgreSqlParser.KW_SET); - this.state = 1430; + this.state = 1438; this.setRestMore(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 1431; + this.state = 1439; this.variableResetStmt(); } break; @@ -6531,46 +6537,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1434; + this.state = 1442; this.match(PostgreSqlParser.KW_SHOW); - this.state = 1444; + this.state = 1452; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 52, this.context) ) { case 1: { - this.state = 1435; + this.state = 1443; this.varName(); } break; case 2: { - this.state = 1436; + this.state = 1444; this.match(PostgreSqlParser.KW_TIME); - this.state = 1437; + this.state = 1445; this.match(PostgreSqlParser.KW_ZONE); } break; case 3: { - this.state = 1438; + this.state = 1446; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1439; + this.state = 1447; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1440; + this.state = 1448; this.match(PostgreSqlParser.KW_LEVEL); } break; case 4: { - this.state = 1441; + this.state = 1449; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1442; + this.state = 1450; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 5: { - this.state = 1443; + this.state = 1451; this.match(PostgreSqlParser.KW_ALL); } break; @@ -6598,16 +6604,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1446; + this.state = 1454; this.match(PostgreSqlParser.KW_SET); - this.state = 1447; + this.state = 1455; this.match(PostgreSqlParser.KW_CONSTRAINTS); - this.state = 1450; + this.state = 1458; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1448; + this.state = 1456; this.match(PostgreSqlParser.KW_ALL); } break; @@ -7006,14 +7012,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1449; + this.state = 1457; this.qualifiedNameList(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1452; + this.state = 1460; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -7044,7 +7050,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1462; this.match(PostgreSqlParser.KW_CHECKPOINT); } } @@ -7069,9 +7075,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1456; + this.state = 1464; this.match(PostgreSqlParser.KW_DISCARD); - this.state = 1457; + this.state = 1465; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 288 || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 41943041) !== 0))) { this.errorHandler.recoverInline(this); @@ -7101,29 +7107,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 76, PostgreSqlParser.RULE_alterTableStmt); let _la: number; try { - this.state = 1576; + this.state = 1584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1459; + this.state = 1467; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1460; + this.state = 1468; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1462; + this.state = 1470; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1461; + this.state = 1469; this.ifExists(); } break; } - this.state = 1464; + this.state = 1472; this.relationExpr(); - this.state = 1467; + this.state = 1475; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7144,14 +7150,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1465; + this.state = 1473; this.alterTableCmds(); } break; case PostgreSqlParser.KW_ATTACH: case PostgreSqlParser.KW_DETACH: { - this.state = 1466; + this.state = 1474; this.partitionCmd(); } break; @@ -7163,42 +7169,42 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1469; + this.state = 1477; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1470; + this.state = 1478; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1471; + this.state = 1479; this.match(PostgreSqlParser.KW_ALL); - this.state = 1472; + this.state = 1480; this.match(PostgreSqlParser.KW_IN); - this.state = 1473; + this.state = 1481; this.optTableSpace(); - this.state = 1477; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1474; + this.state = 1482; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1475; + this.state = 1483; this.match(PostgreSqlParser.KW_BY); - this.state = 1476; + this.state = 1484; this.roleList(); } } - this.state = 1479; + this.state = 1487; this.match(PostgreSqlParser.KW_SET); - this.state = 1480; + this.state = 1488; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1481; + this.state = 1489; this.tableSpaceName(); - this.state = 1483; + this.state = 1491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1482; + this.state = 1490; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7208,59 +7214,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1485; + this.state = 1493; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1486; + this.state = 1494; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1488; + this.state = 1496; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1487; + this.state = 1495; this.ifExists(); } break; } - this.state = 1490; + this.state = 1498; this.tableName(); - this.state = 1491; + this.state = 1499; this.indexPartitionCmd(); - this.state = 1492; + this.state = 1500; this.partitionBoundSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1494; + this.state = 1502; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1495; + this.state = 1503; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1497; + this.state = 1505; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1496; + this.state = 1504; this.ifExists(); } break; } - this.state = 1499; + this.state = 1507; this.tableName(); - this.state = 1500; + this.state = 1508; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1501; + this.state = 1509; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1502; + this.state = 1510; this.qualifiedName(); - this.state = 1504; + this.state = 1512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109 || _la === 532) { { - this.state = 1503; + this.state = 1511; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 532)) { this.errorHandler.recoverInline(this); @@ -7277,23 +7283,23 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1506; + this.state = 1514; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1507; + this.state = 1515; this.match(PostgreSqlParser.KW_INDEX); - this.state = 1509; + this.state = 1517; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 1508; + this.state = 1516; this.ifExists(); } break; } - this.state = 1511; + this.state = 1519; this.qualifiedName(); - this.state = 1514; + this.state = 1522; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7314,13 +7320,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1512; + this.state = 1520; this.alterTableCmds(); } break; case PostgreSqlParser.KW_ATTACH: { - this.state = 1513; + this.state = 1521; this.indexPartitionCmd(); } break; @@ -7332,40 +7338,40 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1516; + this.state = 1524; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1517; + this.state = 1525; this.match(PostgreSqlParser.KW_INDEX); - this.state = 1518; + this.state = 1526; this.match(PostgreSqlParser.KW_ALL); - this.state = 1519; + this.state = 1527; this.match(PostgreSqlParser.KW_IN); - this.state = 1520; + this.state = 1528; this.optTableSpace(); - this.state = 1524; + this.state = 1532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1521; + this.state = 1529; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1522; + this.state = 1530; this.match(PostgreSqlParser.KW_BY); - this.state = 1523; + this.state = 1531; this.roleList(); } } - this.state = 1526; + this.state = 1534; this.match(PostgreSqlParser.KW_SET); - this.state = 1527; + this.state = 1535; this.optTableSpace(); - this.state = 1529; + this.state = 1537; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1528; + this.state = 1536; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7375,100 +7381,100 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1531; + this.state = 1539; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1532; + this.state = 1540; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 1534; + this.state = 1542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1533; + this.state = 1541; this.ifExists(); } break; } - this.state = 1536; + this.state = 1544; this.qualifiedName(); - this.state = 1537; + this.state = 1545; this.alterTableCmds(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1539; + this.state = 1547; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1541; + this.state = 1549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1540; + this.state = 1548; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 1543; + this.state = 1551; this.match(PostgreSqlParser.KW_VIEW); - this.state = 1545; + this.state = 1553; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 1544; + this.state = 1552; this.ifExists(); } break; } - this.state = 1547; + this.state = 1555; this.viewName(); - this.state = 1548; + this.state = 1556; this.alterTableCmds(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1550; + this.state = 1558; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1551; + this.state = 1559; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 1552; + this.state = 1560; this.match(PostgreSqlParser.KW_VIEW); - this.state = 1553; + this.state = 1561; this.match(PostgreSqlParser.KW_ALL); - this.state = 1554; + this.state = 1562; this.match(PostgreSqlParser.KW_IN); - this.state = 1555; + this.state = 1563; this.optTableSpace(); - this.state = 1559; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1556; + this.state = 1564; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1557; + this.state = 1565; this.match(PostgreSqlParser.KW_BY); - this.state = 1558; + this.state = 1566; this.roleList(); } } - this.state = 1561; + this.state = 1569; this.match(PostgreSqlParser.KW_SET); - this.state = 1562; + this.state = 1570; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1563; + this.state = 1571; this.tableSpaceName(); - this.state = 1565; + this.state = 1573; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1564; + this.state = 1572; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7478,25 +7484,25 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1567; + this.state = 1575; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1568; + this.state = 1576; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 1569; + this.state = 1577; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1571; + this.state = 1579; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1570; + this.state = 1578; this.ifExists(); } break; } - this.state = 1573; + this.state = 1581; this.relationExpr(); - this.state = 1574; + this.state = 1582; this.alterTableCmds(); } break; @@ -7523,21 +7529,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1586; this.alterTableCmd(); - this.state = 1583; + this.state = 1591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1579; + this.state = 1587; this.match(PostgreSqlParser.COMMA); - this.state = 1580; + this.state = 1588; this.alterTableCmd(); } } - this.state = 1585; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7561,26 +7567,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionCmdContext(this.context, this.state); this.enterRule(localContext, 80, PostgreSqlParser.RULE_partitionCmd); try { - this.state = 1592; + this.state = 1600; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ATTACH: this.enterOuterAlt(localContext, 1); { - this.state = 1586; + this.state = 1594; this.indexPartitionCmd(); - this.state = 1587; + this.state = 1595; this.partitionBoundSpec(); } break; case PostgreSqlParser.KW_DETACH: this.enterOuterAlt(localContext, 2); { - this.state = 1589; + this.state = 1597; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1590; + this.state = 1598; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1591; + this.state = 1599; this.qualifiedName(); } break; @@ -7608,11 +7614,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1594; + this.state = 1602; this.match(PostgreSqlParser.KW_ATTACH); - this.state = 1595; + this.state = 1603; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1596; + this.state = 1604; this.qualifiedName(); } } @@ -7636,52 +7642,52 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1831; + this.state = 1839; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1598; + this.state = 1606; this.match(PostgreSqlParser.KW_ADD); - this.state = 1601; + this.state = 1609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 1599; + this.state = 1607; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1600; + this.state = 1608; this.colId(); } } - this.state = 1603; + this.state = 1611; this.constraintElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1604; + this.state = 1612; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1605; + this.state = 1613; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1606; + this.state = 1614; this.colId(); - this.state = 1610; + this.state = 1618; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1607; + this.state = 1615; this.constraintAttributeElem(); } } } - this.state = 1612; + this.state = 1620; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); } @@ -7690,39 +7696,39 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1613; + this.state = 1621; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 1614; + this.state = 1622; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1615; + this.state = 1623; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1616; + this.state = 1624; this.match(PostgreSqlParser.KW_DROP); - this.state = 1617; + this.state = 1625; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1619; + this.state = 1627; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 1618; + this.state = 1626; this.ifExists(); } break; } - this.state = 1621; + this.state = 1629; this.colId(); - this.state = 1623; + this.state = 1631; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1622; + this.state = 1630; this.optDropBehavior(); } break; @@ -7732,11 +7738,11 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1625; + this.state = 1633; this.match(PostgreSqlParser.KW_SET); - this.state = 1626; + this.state = 1634; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 1627; + this.state = 1635; _la = this.tokenStream.LA(1); if(!(_la === 158 || _la === 277)) { this.errorHandler.recoverInline(this); @@ -7750,20 +7756,20 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1628; + this.state = 1636; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 1629; + this.state = 1637; this.match(PostgreSqlParser.KW_ON); - this.state = 1630; + this.state = 1638; this.colId(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1631; + this.state = 1639; this.match(PostgreSqlParser.KW_SET); - this.state = 1632; + this.state = 1640; _la = this.tokenStream.LA(1); if(!(_la === 367 || _la === 439)) { this.errorHandler.recoverInline(this); @@ -7777,14 +7783,14 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1633; + this.state = 1641; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 1635; + this.state = 1643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 312) { { - this.state = 1634; + this.state = 1642; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -7796,29 +7802,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1637; + this.state = 1645; this.match(PostgreSqlParser.KW_TRIGGER); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1638; + this.state = 1646; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1639; + this.state = 1647; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 1643; + this.state = 1651; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1640; + this.state = 1648; this.match(PostgreSqlParser.KW_ALL); } break; case PostgreSqlParser.KW_USER: { - this.state = 1641; + this.state = 1649; this.match(PostgreSqlParser.KW_USER); } break; @@ -8217,7 +8223,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1642; + this.state = 1650; this.colId(); } break; @@ -8229,9 +8235,9 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1645; + this.state = 1653; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 1646; + this.state = 1654; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -8240,113 +8246,113 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1647; + this.state = 1655; this.match(PostgreSqlParser.KW_RULE); - this.state = 1648; + this.state = 1656; this.colId(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1649; + this.state = 1657; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1650; + this.state = 1658; this.match(PostgreSqlParser.KW_RULE); - this.state = 1651; + this.state = 1659; this.colId(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1653; + this.state = 1661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1652; + this.state = 1660; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1655; + this.state = 1663; this.match(PostgreSqlParser.KW_INHERIT); - this.state = 1656; + this.state = 1664; this.qualifiedName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1657; + this.state = 1665; this.match(PostgreSqlParser.KW_OF); - this.state = 1658; + this.state = 1666; this.anyName(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1659; + this.state = 1667; this.match(PostgreSqlParser.KW_NOT); - this.state = 1660; + this.state = 1668; this.match(PostgreSqlParser.KW_OF); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1661; + this.state = 1669; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1662; + this.state = 1670; this.match(PostgreSqlParser.KW_TO); - this.state = 1663; + this.state = 1671; this.roleSpec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1664; + this.state = 1672; this.match(PostgreSqlParser.KW_SET); - this.state = 1665; + this.state = 1673; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1666; + this.state = 1674; this.tableSpaceName(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1667; + this.state = 1675; this.match(PostgreSqlParser.KW_REPLICA); - this.state = 1668; + this.state = 1676; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1673; + this.state = 1681; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOTHING: { - this.state = 1669; + this.state = 1677; this.match(PostgreSqlParser.KW_NOTHING); } break; case PostgreSqlParser.KW_FULL: { - this.state = 1670; + this.state = 1678; this.match(PostgreSqlParser.KW_FULL); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 1671; + this.state = 1679; this.match(PostgreSqlParser.KW_DEFAULT); } break; case PostgreSqlParser.KW_USING: { - this.state = 1672; + this.state = 1680; this.existingIndex(); } break; @@ -8358,18 +8364,18 @@ export class PostgreSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1681; + this.state = 1689; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 1675; + this.state = 1683; this.match(PostgreSqlParser.KW_ENABLE); } break; case PostgreSqlParser.KW_DISABLE: { - this.state = 1676; + this.state = 1684; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -8377,17 +8383,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: { { - this.state = 1678; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1677; + this.state = 1685; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1680; + this.state = 1688; this.match(PostgreSqlParser.KW_FORCE); } } @@ -8395,47 +8401,47 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1683; + this.state = 1691; this.match(PostgreSqlParser.KW_ROW); - this.state = 1684; + this.state = 1692; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 1685; + this.state = 1693; this.match(PostgreSqlParser.KW_SECURITY); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1686; + this.state = 1694; this.match(PostgreSqlParser.KW_DROP); - this.state = 1688; + this.state = 1696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 1687; + this.state = 1695; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1691; + this.state = 1699; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { case 1: { - this.state = 1690; + this.state = 1698; this.ifExists(); } break; } - this.state = 1693; + this.state = 1701; this.columnName(); - this.state = 1695; + this.state = 1703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 1694; + this.state = 1702; this.optDropBehavior(); } break; @@ -8445,62 +8451,62 @@ export class PostgreSqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1697; + this.state = 1705; this.match(PostgreSqlParser.KW_ADD); - this.state = 1699; + this.state = 1707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1698; + this.state = 1706; this.match(PostgreSqlParser.KW_COLUMN); } } - this.state = 1702; + this.state = 1710; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 1701; + this.state = 1709; this.ifNotExists(); } break; } - this.state = 1704; + this.state = 1712; this.column_def(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1705; + this.state = 1713; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1707; + this.state = 1715; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1706; + this.state = 1714; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1709; + this.state = 1717; this.columnName(); - this.state = 1712; + this.state = 1720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: case PostgreSqlParser.KW_SET: { - this.state = 1710; + this.state = 1718; this.alterColumnDefault(); } break; case PostgreSqlParser.KW_OPTIONS: { - this.state = 1711; + this.state = 1719; this.alterGenericOptions(); } break; @@ -8512,21 +8518,21 @@ export class PostgreSqlParser extends SQLParserBase { case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1714; + this.state = 1722; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1716; + this.state = 1724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1715; + this.state = 1723; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1718; + this.state = 1726; this.columnName(); - this.state = 1719; + this.state = 1727; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8535,39 +8541,39 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1720; + this.state = 1728; this.match(PostgreSqlParser.KW_NOT); - this.state = 1721; + this.state = 1729; this.match(PostgreSqlParser.KW_NULL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1723; + this.state = 1731; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1725; + this.state = 1733; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1724; + this.state = 1732; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1727; + this.state = 1735; this.columnName(); - this.state = 1728; + this.state = 1736; this.match(PostgreSqlParser.KW_DROP); - this.state = 1729; + this.state = 1737; this.match(PostgreSqlParser.KW_EXPRESSION); - this.state = 1731; + this.state = 1739; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1730; + this.state = 1738; this.ifExists(); } break; @@ -8577,54 +8583,54 @@ export class PostgreSqlParser extends SQLParserBase { case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1733; + this.state = 1741; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1735; + this.state = 1743; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1734; + this.state = 1742; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1737; + this.state = 1745; this.columnName(); - this.state = 1738; + this.state = 1746; this.match(PostgreSqlParser.KW_SET); - this.state = 1739; + this.state = 1747; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 1740; + this.state = 1748; this.signedConst(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1747; + this.state = 1755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1742; + this.state = 1750; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1744; + this.state = 1752; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: { - this.state = 1743; + this.state = 1751; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1746; + this.state = 1754; this.columnName(); } } - this.state = 1749; + this.state = 1757; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8633,84 +8639,84 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1750; + this.state = 1758; this.relOptions(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1751; + this.state = 1759; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1753; + this.state = 1761; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: { - this.state = 1752; + this.state = 1760; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1755; + this.state = 1763; this.columnName(); - this.state = 1756; + this.state = 1764; this.match(PostgreSqlParser.KW_SET); - this.state = 1757; + this.state = 1765; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 1758; + this.state = 1766; this.colId(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1760; + this.state = 1768; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1762; + this.state = 1770; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { case 1: { - this.state = 1761; + this.state = 1769; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1764; + this.state = 1772; this.columnName(); - this.state = 1765; + this.state = 1773; this.match(PostgreSqlParser.KW_ADD); - this.state = 1766; + this.state = 1774; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1767; + this.state = 1775; this.generatedWhen(); - this.state = 1768; + this.state = 1776; this.match(PostgreSqlParser.KW_AS); - this.state = 1769; + this.state = 1777; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1778; + this.state = 1786; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1770; + this.state = 1778; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1772; + this.state = 1780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1771; + this.state = 1779; this.seqOptElem(); } } - this.state = 1774; + this.state = 1782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 1776; + this.state = 1784; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -8720,50 +8726,50 @@ export class PostgreSqlParser extends SQLParserBase { case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1780; + this.state = 1788; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1782; + this.state = 1790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1781; + this.state = 1789; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1784; + this.state = 1792; this.columnName(); - this.state = 1798; + this.state = 1806; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 1798; + this.state = 1806; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RESTART: { - this.state = 1785; + this.state = 1793; this.match(PostgreSqlParser.KW_RESTART); - this.state = 1790; + this.state = 1798; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1787; + this.state = 1795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 1786; + this.state = 1794; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 1789; + this.state = 1797; this.numericOnly(); } break; @@ -8772,9 +8778,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SET: { - this.state = 1792; + this.state = 1800; this.match(PostgreSqlParser.KW_SET); - this.state = 1796; + this.state = 1804; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: @@ -8788,15 +8794,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SEQUENCE: case PostgreSqlParser.KW_START: { - this.state = 1793; + this.state = 1801; this.seqOptElem(); } break; case PostgreSqlParser.KW_GENERATED: { - this.state = 1794; + this.state = 1802; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1795; + this.state = 1803; this.generatedWhen(); } break; @@ -8813,7 +8819,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1800; + this.state = 1808; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 106, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -8822,30 +8828,30 @@ export class PostgreSqlParser extends SQLParserBase { case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1802; + this.state = 1810; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1804; + this.state = 1812; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1803; + this.state = 1811; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1806; + this.state = 1814; this.columnName(); - this.state = 1807; + this.state = 1815; this.match(PostgreSqlParser.KW_DROP); - this.state = 1808; + this.state = 1816; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1810; + this.state = 1818; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1809; + this.state = 1817; this.ifExists(); } break; @@ -8855,54 +8861,54 @@ export class PostgreSqlParser extends SQLParserBase { case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1812; + this.state = 1820; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1814; + this.state = 1822; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1813; + this.state = 1821; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1816; + this.state = 1824; this.columnName(); - this.state = 1819; + this.state = 1827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1817; + this.state = 1825; this.match(PostgreSqlParser.KW_SET); - this.state = 1818; + this.state = 1826; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1821; + this.state = 1829; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1822; + this.state = 1830; this.typename(); - this.state = 1824; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1823; + this.state = 1831; this.collateClause(); } } - this.state = 1828; + this.state = 1836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1826; + this.state = 1834; this.match(PostgreSqlParser.KW_USING); - this.state = 1827; + this.state = 1835; this.expression(); } } @@ -8912,7 +8918,7 @@ export class PostgreSqlParser extends SQLParserBase { case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1830; + this.state = 1838; this.alterGenericOptions(); } break; @@ -8936,26 +8942,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AlterColumnDefaultContext(this.context, this.state); this.enterRule(localContext, 86, PostgreSqlParser.RULE_alterColumnDefault); try { - this.state = 1838; + this.state = 1846; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1833; + this.state = 1841; this.match(PostgreSqlParser.KW_SET); - this.state = 1834; + this.state = 1842; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 1835; + this.state = 1843; this.expression(); } break; case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1836; + this.state = 1844; this.match(PostgreSqlParser.KW_DROP); - this.state = 1837; + this.state = 1845; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -8984,7 +8990,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1840; + this.state = 1848; _la = this.tokenStream.LA(1); if(!(_la === 150 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -9015,9 +9021,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1842; + this.state = 1850; this.match(PostgreSqlParser.KW_COLLATE); - this.state = 1843; + this.state = 1851; this.anyName(); } } @@ -9042,27 +9048,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1853; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1846; + this.state = 1854; this.relOptionElem(); - this.state = 1851; + this.state = 1859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1847; + this.state = 1855; this.match(PostgreSqlParser.COMMA); - this.state = 1848; + this.state = 1856; this.relOptionElem(); } } - this.state = 1853; + this.state = 1861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1854; + this.state = 1862; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -9086,9 +9092,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1864; this.match(PostgreSqlParser.KW_WITH); - this.state = 1857; + this.state = 1865; this.relOptions(); } } @@ -9112,24 +9118,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1859; + this.state = 1867; this.colLabel(); - this.state = 1864; + this.state = 1872; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: { - this.state = 1860; + this.state = 1868; this.match(PostgreSqlParser.EQUAL); - this.state = 1861; + this.state = 1869; this.defArg(); } break; case PostgreSqlParser.DOT: { - this.state = 1862; + this.state = 1870; this.match(PostgreSqlParser.DOT); - this.state = 1863; + this.state = 1871; this.defElem(); } break; @@ -9159,68 +9165,68 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionBoundSpecContext(this.context, this.state); this.enterRule(localContext, 98, PostgreSqlParser.RULE_partitionBoundSpec); try { - this.state = 1889; + this.state = 1897; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1866; + this.state = 1874; this.match(PostgreSqlParser.KW_FOR); - this.state = 1867; + this.state = 1875; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1868; + this.state = 1876; this.match(PostgreSqlParser.KW_WITH); - this.state = 1869; + this.state = 1877; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1870; + this.state = 1878; this.match(PostgreSqlParser.KW_MODULUS); - this.state = 1871; + this.state = 1879; this.numericOnly(); - this.state = 1872; + this.state = 1880; this.match(PostgreSqlParser.COMMA); - this.state = 1873; + this.state = 1881; this.match(PostgreSqlParser.KW_REMAINDER); - this.state = 1874; + this.state = 1882; this.numericOnly(); - this.state = 1875; + this.state = 1883; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1877; + this.state = 1885; this.match(PostgreSqlParser.KW_FOR); - this.state = 1878; + this.state = 1886; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1879; + this.state = 1887; this.match(PostgreSqlParser.KW_IN); - this.state = 1880; + this.state = 1888; this.executeParamClause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1881; + this.state = 1889; this.match(PostgreSqlParser.KW_FOR); - this.state = 1882; + this.state = 1890; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1883; + this.state = 1891; this.match(PostgreSqlParser.KW_FROM); - this.state = 1884; + this.state = 1892; this.executeParamClause(); - this.state = 1885; + this.state = 1893; this.match(PostgreSqlParser.KW_TO); - this.state = 1886; + this.state = 1894; this.executeParamClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1888; + this.state = 1896; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -9247,27 +9253,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1891; + this.state = 1899; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1892; + this.state = 1900; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1893; + this.state = 1901; this.anyName(); - this.state = 1894; + this.state = 1902; this.alterTypeCmd(); - this.state = 1899; + this.state = 1907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1895; + this.state = 1903; this.match(PostgreSqlParser.COMMA); - this.state = 1896; + this.state = 1904; this.alterTypeCmd(); } } - this.state = 1901; + this.state = 1909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9292,24 +9298,24 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 102, PostgreSqlParser.RULE_alterTypeCmd); let _la: number; try { - this.state = 1932; + this.state = 1940; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: this.enterOuterAlt(localContext, 1); { - this.state = 1902; + this.state = 1910; this.match(PostgreSqlParser.KW_ADD); - this.state = 1903; + this.state = 1911; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1904; + this.state = 1912; this.tableFuncElement(); - this.state = 1906; + this.state = 1914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1905; + this.state = 1913; this.optDropBehavior(); } break; @@ -9319,28 +9325,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1908; + this.state = 1916; this.match(PostgreSqlParser.KW_DROP); - this.state = 1909; + this.state = 1917; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1911; + this.state = 1919; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1910; + this.state = 1918; this.ifExists(); } break; } - this.state = 1913; + this.state = 1921; this.colId(); - this.state = 1915; + this.state = 1923; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1914; + this.state = 1922; this.optDropBehavior(); } break; @@ -9350,44 +9356,44 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 3); { - this.state = 1917; + this.state = 1925; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1918; + this.state = 1926; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1919; + this.state = 1927; this.colId(); - this.state = 1922; + this.state = 1930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1920; + this.state = 1928; this.match(PostgreSqlParser.KW_SET); - this.state = 1921; + this.state = 1929; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1924; + this.state = 1932; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1925; + this.state = 1933; this.typename(); - this.state = 1927; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1926; + this.state = 1934; this.collateClause(); } } - this.state = 1930; + this.state = 1938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: { - this.state = 1929; + this.state = 1937; this.optDropBehavior(); } break; @@ -9418,9 +9424,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1934; + this.state = 1942; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 1937; + this.state = 1945; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -9818,13 +9824,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1935; + this.state = 1943; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1936; + this.state = 1944; this.match(PostgreSqlParser.KW_ALL); } break; @@ -9852,37 +9858,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 106, PostgreSqlParser.RULE_copyStmt); let _la: number; try { - this.state = 1988; + this.state = 1996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1939; + this.state = 1947; this.match(PostgreSqlParser.KW_COPY); - this.state = 1941; + this.state = 1949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 1940; + this.state = 1948; this.match(PostgreSqlParser.KW_BINARY); } } - this.state = 1943; + this.state = 1951; this.tableName(); - this.state = 1945; + this.state = 1953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1944; + this.state = 1952; this.optColumnList(); } } - this.state = 1947; + this.state = 1955; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -9891,17 +9897,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1949; + this.state = 1957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1948; + this.state = 1956; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1954; + this.state = 1962; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -9909,65 +9915,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1951; + this.state = 1959; this.stringConst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1952; + this.state = 1960; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1953; + this.state = 1961; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1961; + this.state = 1969; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1957; + this.state = 1965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1956; + this.state = 1964; this.match(PostgreSqlParser.KW_USING); } } - this.state = 1959; + this.state = 1967; this.match(PostgreSqlParser.KW_DELIMITERS); - this.state = 1960; + this.state = 1968; this.stringConst(); } break; } - this.state = 1964; + this.state = 1972; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1963; + this.state = 1971; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1966; + this.state = 1974; this.copyOptions(); - this.state = 1968; + this.state = 1976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 1967; + this.state = 1975; this.whereClause(); } } @@ -9977,27 +9983,27 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1970; + this.state = 1978; this.match(PostgreSqlParser.KW_COPY); - this.state = 1971; + this.state = 1979; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1972; + this.state = 1980; this.preParableStmt(); - this.state = 1973; + this.state = 1981; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 1974; + this.state = 1982; this.match(PostgreSqlParser.KW_TO); - this.state = 1976; + this.state = 1984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1975; + this.state = 1983; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1981; + this.state = 1989; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -10005,36 +10011,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1978; + this.state = 1986; this.stringConst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1979; + this.state = 1987; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1980; + this.state = 1988; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1984; + this.state = 1992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1983; + this.state = 1991; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1986; + this.state = 1994; this.copyOptions(); } break; @@ -10062,30 +10068,30 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2034; + this.state = 2042; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2032; + this.state = 2040; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1990; + this.state = 1998; this.match(PostgreSqlParser.KW_BINARY); } break; case 2: { - this.state = 1991; + this.state = 1999; this.match(PostgreSqlParser.KW_FREEZE); } break; case 3: { - this.state = 1992; + this.state = 2000; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 183 || _la === 197 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -10094,50 +10100,50 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1994; + this.state = 2002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 1993; + this.state = 2001; this.match(PostgreSqlParser.KW_AS); } } - this.state = 1996; + this.state = 2004; this.stringConst(); } break; case 4: { - this.state = 1997; + this.state = 2005; this.match(PostgreSqlParser.KW_CSV); } break; case 5: { - this.state = 1998; + this.state = 2006; this.match(PostgreSqlParser.KW_HEADER); } break; case 6: { - this.state = 1999; + this.state = 2007; this.match(PostgreSqlParser.KW_FORCE); - this.state = 2000; + this.state = 2008; this.match(PostgreSqlParser.KW_QUOTE); - this.state = 2003; + this.state = 2011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 2001; + this.state = 2009; this.columnList(); } break; case 2: { - this.state = 2002; + this.state = 2010; this.match(PostgreSqlParser.STAR); } break; @@ -10146,35 +10152,35 @@ export class PostgreSqlParser extends SQLParserBase { break; case 7: { - this.state = 2005; + this.state = 2013; this.match(PostgreSqlParser.KW_FORCE); - this.state = 2007; + this.state = 2015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2006; + this.state = 2014; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2009; + this.state = 2017; this.match(PostgreSqlParser.KW_NULL); - this.state = 2010; + this.state = 2018; this.columnList(); } break; case 8: { - this.state = 2011; + this.state = 2019; this.match(PostgreSqlParser.KW_ENCODING); - this.state = 2012; + this.state = 2020; this.stringConst(); } break; case 9: { - this.state = 2013; + this.state = 2021; _la = this.tokenStream.LA(1); if(!(((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -10183,60 +10189,60 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2030; + this.state = 2038; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { case 1: { - this.state = 2014; + this.state = 2022; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2017; + this.state = 2025; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: { - this.state = 2015; + this.state = 2023; this.columnList(); } break; case 2: { - this.state = 2016; + this.state = 2024; this.match(PostgreSqlParser.STAR); } break; } - this.state = 2026; + this.state = 2034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2019; + this.state = 2027; this.match(PostgreSqlParser.COMMA); - this.state = 2022; + this.state = 2030; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 2020; + this.state = 2028; this.columnList(); } break; case 2: { - this.state = 2021; + this.state = 2029; this.match(PostgreSqlParser.STAR); } break; } } } - this.state = 2028; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2029; + this.state = 2037; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10246,7 +10252,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2036; + this.state = 2044; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); } @@ -10271,68 +10277,68 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 110, PostgreSqlParser.RULE_copyOptions); let _la: number; try { - this.state = 2055; + this.state = 2063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2037; + this.state = 2045; this.copyOptionsNoparens(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2038; + this.state = 2046; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2041; + this.state = 2049; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 2039; + this.state = 2047; this.copyOptionsNoparens(); } break; case 2: { - this.state = 2040; + this.state = 2048; this.copyGenericOptElem(); } break; } - this.state = 2050; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2043; + this.state = 2051; this.match(PostgreSqlParser.COMMA); - this.state = 2046; + this.state = 2054; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 2044; + this.state = 2052; this.copyOptionsNoparens(); } break; case 2: { - this.state = 2045; + this.state = 2053; this.copyGenericOptElem(); } break; } } } - this.state = 2052; + this.state = 2060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2053; + this.state = 2061; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10359,9 +10365,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2057; + this.state = 2065; this.colLabel(); - this.state = 2072; + this.state = 2080; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -10783,7 +10789,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2058; + this.state = 2066; this.booleanOrString(); } break; @@ -10792,39 +10798,39 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 2059; + this.state = 2067; this.numericOnly(); } break; case PostgreSqlParser.STAR: { - this.state = 2060; + this.state = 2068; this.match(PostgreSqlParser.STAR); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2061; + this.state = 2069; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2062; + this.state = 2070; this.optBooleanOrStringColumn(); - this.state = 2067; + this.state = 2075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2063; + this.state = 2071; this.match(PostgreSqlParser.COMMA); - this.state = 2064; + this.state = 2072; this.optBooleanOrStringColumn(); } } - this.state = 2069; + this.state = 2077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2070; + this.state = 2078; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10858,107 +10864,107 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2074; + this.state = 2082; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2076; + this.state = 2084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2075; + this.state = 2083; this.optTemp(); } } - this.state = 2078; + this.state = 2086; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2080; + this.state = 2088; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 2079; + this.state = 2087; this.ifNotExists(); } break; } - this.state = 2082; + this.state = 2090; this.tableNameCreate(); - this.state = 2148; + this.state = 2156; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2083; + this.state = 2091; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2085; + this.state = 2093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2084; + this.state = 2092; this.tableElementList(); } } - this.state = 2087; + this.state = 2095; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2089; + this.state = 2097; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { - this.state = 2088; + this.state = 2096; this.optInherit(); } break; } - this.state = 2092; + this.state = 2100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 2091; + this.state = 2099; this.partitionSpec(); } break; } - this.state = 2095; + this.state = 2103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2094; + this.state = 2102; this.tableAccessMethodClause(); } } - this.state = 2098; + this.state = 2106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 2097; + this.state = 2105; this.optWith(); } break; } - this.state = 2101; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2100; + this.state = 2108; this.onCommitOption(); } } - this.state = 2104; + this.state = 2112; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 2103; + this.state = 2111; this.optTableSpace(); } break; @@ -10967,66 +10973,66 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_OF: { - this.state = 2106; + this.state = 2114; this.match(PostgreSqlParser.KW_OF); - this.state = 2107; + this.state = 2115; this.anyName(); - this.state = 2109; + this.state = 2117; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: { - this.state = 2108; + this.state = 2116; this.optTypedTableElEmentList(); } break; } - this.state = 2112; + this.state = 2120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 2111; + this.state = 2119; this.partitionSpec(); } break; } - this.state = 2115; + this.state = 2123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2114; + this.state = 2122; this.tableAccessMethodClause(); } } - this.state = 2118; + this.state = 2126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 2117; + this.state = 2125; this.optWith(); } break; } - this.state = 2121; + this.state = 2129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2120; + this.state = 2128; this.onCommitOption(); } } - this.state = 2124; + this.state = 2132; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 2123; + this.state = 2131; this.optTableSpace(); } break; @@ -11035,70 +11041,70 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_PARTITION: { - this.state = 2126; + this.state = 2134; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2127; + this.state = 2135; this.match(PostgreSqlParser.KW_OF); - this.state = 2128; + this.state = 2136; this.qualifiedName(); - this.state = 2130; + this.state = 2138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2129; + this.state = 2137; this.optTypedTableElEmentList(); } } - this.state = 2132; + this.state = 2140; this.partitionBoundSpec(); - this.state = 2134; + this.state = 2142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 2133; + this.state = 2141; this.partitionSpec(); } break; } - this.state = 2137; + this.state = 2145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2136; + this.state = 2144; this.tableAccessMethodClause(); } } - this.state = 2140; + this.state = 2148; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 2139; + this.state = 2147; this.optWith(); } break; } - this.state = 2143; + this.state = 2151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2142; + this.state = 2150; this.onCommitOption(); } } - this.state = 2146; + this.state = 2154; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 2145; + this.state = 2153; this.optTableSpace(); } break; @@ -11129,20 +11135,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 116, PostgreSqlParser.RULE_optTemp); let _la: number; try { - this.state = 2155; + this.state = 2163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEMPORARY: this.enterOuterAlt(localContext, 1); { - this.state = 2150; + this.state = 2158; this.match(PostgreSqlParser.KW_TEMPORARY); } break; case PostgreSqlParser.KW_TEMP: this.enterOuterAlt(localContext, 2); { - this.state = 2151; + this.state = 2159; this.match(PostgreSqlParser.KW_TEMP); } break; @@ -11150,7 +11156,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 3); { - this.state = 2152; + this.state = 2160; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11159,7 +11165,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2153; + this.state = 2161; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -11173,7 +11179,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNLOGGED: this.enterOuterAlt(localContext, 4); { - this.state = 2154; + this.state = 2162; this.match(PostgreSqlParser.KW_UNLOGGED); } break; @@ -11202,27 +11208,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2157; + this.state = 2165; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2158; + this.state = 2166; this.typedTableElement(); - this.state = 2163; + this.state = 2171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2159; + this.state = 2167; this.match(PostgreSqlParser.COMMA); - this.state = 2160; + this.state = 2168; this.typedTableElement(); } } - this.state = 2165; + this.state = 2173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2166; + this.state = 2174; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -11247,21 +11253,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2168; + this.state = 2176; this.tableElement(); - this.state = 2173; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2169; + this.state = 2177; this.match(PostgreSqlParser.COMMA); - this.state = 2170; + this.state = 2178; this.tableElement(); } } - this.state = 2175; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11286,49 +11292,49 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 122, PostgreSqlParser.RULE_tableElement); let _la: number; try { - this.state = 2191; + this.state = 2199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2178; + this.state = 2186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2176; + this.state = 2184; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2177; + this.state = 2185; this.colId(); } } - this.state = 2180; + this.state = 2188; this.constraintElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2181; + this.state = 2189; this.column_def(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2182; + this.state = 2190; this.match(PostgreSqlParser.KW_LIKE); - this.state = 2183; + this.state = 2191; this.qualifiedName(); - this.state = 2188; + this.state = 2196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 200 || _la === 224) { { { - this.state = 2184; + this.state = 2192; _la = this.tokenStream.LA(1); if(!(_la === 200 || _la === 224)) { this.errorHandler.recoverInline(this); @@ -11337,11 +11343,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2185; + this.state = 2193; this.tableLikeOption(); } } - this.state = 2190; + this.state = 2198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11368,37 +11374,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 124, PostgreSqlParser.RULE_typedTableElement); let _la: number; try { - this.state = 2209; + this.state = 2217; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2201; this.columnNameCreate(); - this.state = 2196; + this.state = 2204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2194; + this.state = 2202; this.match(PostgreSqlParser.KW_WITH); - this.state = 2195; + this.state = 2203; this.match(PostgreSqlParser.KW_OPTIONS); } } - this.state = 2201; + this.state = 2209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2059) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 2097923) !== 0) || _la === 438) { { { - this.state = 2198; + this.state = 2206; this.colConstraint(); } } - this.state = 2203; + this.state = 2211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11407,19 +11413,19 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2206; + this.state = 2214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2204; + this.state = 2212; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2205; + this.state = 2213; this.colId(); } } - this.state = 2208; + this.state = 2216; this.constraintElem(); } break; @@ -11447,63 +11453,63 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2211; + this.state = 2219; this.columnNameCreate(); - this.state = 2212; + this.state = 2220; localContext._colType = this.typename(); - this.state = 2214; + this.state = 2222; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 2213; + this.state = 2221; this.createGenericOptions(); } break; } - this.state = 2225; + this.state = 2233; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 2216; + this.state = 2224; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 2223; + this.state = 2231; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 2217; + this.state = 2225; this.match(PostgreSqlParser.KW_PLAIN); } break; case 2: { - this.state = 2218; + this.state = 2226; this.match(PostgreSqlParser.KW_EXTERNAL); } break; case 3: { - this.state = 2219; + this.state = 2227; this.match(PostgreSqlParser.KW_EXTENDED); } break; case 4: { - this.state = 2220; + this.state = 2228; this.match(PostgreSqlParser.KW_MAIN); } break; case 5: { - this.state = 2221; + this.state = 2229; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 6: { - this.state = 2222; + this.state = 2230; this.colId(); } break; @@ -11511,53 +11517,53 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 2229; + this.state = 2237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 543) { { - this.state = 2227; + this.state = 2235; this.match(PostgreSqlParser.KW_COMPRESSION); - this.state = 2228; + this.state = 2236; this.colId(); } } - this.state = 2232; + this.state = 2240; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 2231; + this.state = 2239; this.collateClause(); } break; } - this.state = 2236; + this.state = 2244; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 2234; + this.state = 2242; this.match(PostgreSqlParser.KW_WITH); - this.state = 2235; + this.state = 2243; this.match(PostgreSqlParser.KW_OPTIONS); } break; } - this.state = 2241; + this.state = 2249; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2238; + this.state = 2246; this.colConstraint(); } } } - this.state = 2243; + this.state = 2251; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } @@ -11584,48 +11590,48 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2246; + this.state = 2254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2244; + this.state = 2252; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2245; + this.state = 2253; this.colId(); } } - this.state = 2248; + this.state = 2256; this.colConstraintElem(); - this.state = 2253; + this.state = 2261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 2250; + this.state = 2258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2249; + this.state = 2257; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2252; + this.state = 2260; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; } - this.state = 2257; + this.state = 2265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 2255; + this.state = 2263; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 2256; + this.state = 2264; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -11658,47 +11664,47 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 130, PostgreSqlParser.RULE_colConstraintElem); let _la: number; try { - this.state = 2339; + this.state = 2347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2260; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2259; + this.state = 2267; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2262; + this.state = 2270; this.match(PostgreSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2263; + this.state = 2271; this.match(PostgreSqlParser.KW_UNIQUE); - this.state = 2265; + this.state = 2273; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 2264; + this.state = 2272; this.optDefinition(); } break; } - this.state = 2268; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2267; + this.state = 2275; this.optConstableSpace(); } } @@ -11708,59 +11714,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2270; + this.state = 2278; this.match(PostgreSqlParser.KW_UNIQUE); - this.state = 2276; + this.state = 2284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2271; + this.state = 2279; this.match(PostgreSqlParser.KW_NULLS); - this.state = 2273; + this.state = 2281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2272; + this.state = 2280; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2275; + this.state = 2283; this.match(PostgreSqlParser.KW_DISTINCT); } break; } { - this.state = 2280; + this.state = 2288; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 2278; + this.state = 2286; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2279; + this.state = 2287; this.indexParams(); } break; } - this.state = 2283; + this.state = 2291; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { - this.state = 2282; + this.state = 2290; this.withClause(); } break; } - this.state = 2286; + this.state = 2294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2285; + this.state = 2293; this.optConstableSpace(); } } @@ -11771,26 +11777,26 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2288; + this.state = 2296; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2289; + this.state = 2297; this.match(PostgreSqlParser.KW_KEY); - this.state = 2291; + this.state = 2299; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { case 1: { - this.state = 2290; + this.state = 2298; this.optDefinition(); } break; } - this.state = 2294; + this.state = 2302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2293; + this.state = 2301; this.optConstableSpace(); } } @@ -11800,22 +11806,22 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2296; + this.state = 2304; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2297; + this.state = 2305; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2298; + this.state = 2306; this.expression(); - this.state = 2299; + this.state = 2307; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2302; + this.state = 2310; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 2300; + this.state = 2308; this.match(PostgreSqlParser.KW_NO); - this.state = 2301; + this.state = 2309; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -11825,50 +11831,50 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2304; + this.state = 2312; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 2305; + this.state = 2313; this.primaryExpression(0); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2306; + this.state = 2314; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 2307; + this.state = 2315; this.generatedWhen(); - this.state = 2308; + this.state = 2316; this.match(PostgreSqlParser.KW_AS); - this.state = 2325; + this.state = 2333; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IDENTITY: { - this.state = 2309; + this.state = 2317; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 2318; + this.state = 2326; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2310; + this.state = 2318; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2312; + this.state = 2320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2311; + this.state = 2319; this.seqOptElem(); } } - this.state = 2314; + this.state = 2322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 2316; + this.state = 2324; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -11877,13 +11883,13 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2320; + this.state = 2328; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2321; + this.state = 2329; this.expression(); - this.state = 2322; + this.state = 2330; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2323; + this.state = 2331; this.match(PostgreSqlParser.KW_STORED); } break; @@ -11895,36 +11901,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2327; + this.state = 2335; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2328; + this.state = 2336; this.qualifiedName(); - this.state = 2330; + this.state = 2338; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 2329; + this.state = 2337; this.optColumnList(); } break; } - this.state = 2333; + this.state = 2341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { - this.state = 2332; + this.state = 2340; this.keyMatch(); } break; } - this.state = 2336; + this.state = 2344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2335; + this.state = 2343; this.keyActions(); } } @@ -11934,7 +11940,7 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2338; + this.state = 2346; this.collateClause(); } break; @@ -11958,22 +11964,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new GeneratedWhenContext(this.context, this.state); this.enterRule(localContext, 132, PostgreSqlParser.RULE_generatedWhen); try { - this.state = 2344; + this.state = 2352; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALWAYS: this.enterOuterAlt(localContext, 1); { - this.state = 2341; + this.state = 2349; this.match(PostgreSqlParser.KW_ALWAYS); } break; case PostgreSqlParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 2342; + this.state = 2350; this.match(PostgreSqlParser.KW_BY); - this.state = 2343; + this.state = 2351; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -12002,7 +12008,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2346; + this.state = 2354; _la = this.tokenStream.LA(1); if(!(_la === 30 || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 524321) !== 0) || _la === 219 || _la === 227 || _la === 342 || _la === 345 || _la === 438)) { this.errorHandler.recoverInline(this); @@ -12033,33 +12039,33 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2444; + this.state = 2452; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 1); { - this.state = 2348; + this.state = 2356; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2349; + this.state = 2357; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2350; + this.state = 2358; this.expression(); - this.state = 2351; + this.state = 2359; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2355; + this.state = 2363; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2352; + this.state = 2360; this.constraintAttributeElem(); } } } - this.state = 2357; + this.state = 2365; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } @@ -12069,21 +12075,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2361; + this.state = 2369; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UNIQUE: { - this.state = 2358; + this.state = 2366; this.match(PostgreSqlParser.KW_UNIQUE); } break; case PostgreSqlParser.KW_PRIMARY: { { - this.state = 2359; + this.state = 2367; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2360; + this.state = 2368; this.match(PostgreSqlParser.KW_KEY); } } @@ -12091,56 +12097,56 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2386; + this.state = 2394; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2363; + this.state = 2371; this.optColumnList(); - this.state = 2365; + this.state = 2373; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2364; + this.state = 2372; this.columnListInclude(); } break; } - this.state = 2368; + this.state = 2376; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 2367; + this.state = 2375; this.optDefinition(); } break; } - this.state = 2371; + this.state = 2379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2370; + this.state = 2378; this.optConstableSpace(); } } - this.state = 2376; + this.state = 2384; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 221, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2373; + this.state = 2381; this.constraintAttributeElem(); } } } - this.state = 2378; + this.state = 2386; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 221, this.context); } @@ -12148,21 +12154,21 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_USING: { - this.state = 2379; + this.state = 2387; this.existingIndex(); - this.state = 2383; + this.state = 2391; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2380; + this.state = 2388; this.constraintAttributeElem(); } } } - this.state = 2385; + this.state = 2393; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); } @@ -12176,99 +12182,99 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 3); { - this.state = 2388; + this.state = 2396; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 2390; + this.state = 2398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2389; + this.state = 2397; this.tableAccessMethodClause(); } } - this.state = 2392; + this.state = 2400; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2393; + this.state = 2401; this.exclusionConstraintElem(); - this.state = 2398; + this.state = 2406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2394; + this.state = 2402; this.match(PostgreSqlParser.COMMA); - this.state = 2395; + this.state = 2403; this.exclusionConstraintElem(); } } - this.state = 2400; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2401; + this.state = 2409; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2403; + this.state = 2411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 226, this.context) ) { case 1: { - this.state = 2402; + this.state = 2410; this.columnListInclude(); } break; } - this.state = 2406; + this.state = 2414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 2405; + this.state = 2413; this.optDefinition(); } break; } - this.state = 2409; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2408; + this.state = 2416; this.optConstableSpace(); } } - this.state = 2416; + this.state = 2424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2411; + this.state = 2419; this.match(PostgreSqlParser.KW_WHERE); - this.state = 2412; + this.state = 2420; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2413; + this.state = 2421; this.expression(); - this.state = 2414; + this.state = 2422; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 2421; + this.state = 2429; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2418; + this.state = 2426; this.constraintAttributeElem(); } } } - this.state = 2423; + this.state = 2431; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } @@ -12277,59 +12283,59 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOREIGN: this.enterOuterAlt(localContext, 4); { - this.state = 2424; + this.state = 2432; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2425; + this.state = 2433; this.match(PostgreSqlParser.KW_KEY); - this.state = 2426; + this.state = 2434; this.optColumnList(); - this.state = 2427; + this.state = 2435; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2428; + this.state = 2436; this.qualifiedName(); - this.state = 2430; + this.state = 2438; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2429; + this.state = 2437; this.optColumnList(); } break; } - this.state = 2433; + this.state = 2441; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2432; + this.state = 2440; this.keyMatch(); } break; } - this.state = 2436; + this.state = 2444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2435; + this.state = 2443; this.keyActions(); } } - this.state = 2441; + this.state = 2449; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2438; + this.state = 2446; this.constraintAttributeElem(); } } } - this.state = 2443; + this.state = 2451; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); } @@ -12359,11 +12365,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2446; + this.state = 2454; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2447; + this.state = 2455; this.columnList(); - this.state = 2448; + this.state = 2456; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12388,27 +12394,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2450; + this.state = 2458; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2451; + this.state = 2459; this.columnNameCreate(); - this.state = 2456; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2452; + this.state = 2460; this.match(PostgreSqlParser.COMMA); - this.state = 2453; + this.state = 2461; this.columnNameCreate(); } } - this.state = 2458; + this.state = 2466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2459; + this.state = 2467; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12433,23 +12439,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2461; + this.state = 2469; this.columnName(); - this.state = 2466; + this.state = 2474; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2462; + this.state = 2470; this.match(PostgreSqlParser.COMMA); - this.state = 2463; + this.state = 2471; this.columnName(); } } } - this.state = 2468; + this.state = 2476; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } @@ -12475,9 +12481,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2469; + this.state = 2477; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2470; + this.state = 2478; this.optColumnList(); } } @@ -12502,9 +12508,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2472; + this.state = 2480; this.match(PostgreSqlParser.KW_MATCH); - this.state = 2473; + this.state = 2481; _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 284 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -12535,28 +12541,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2475; + this.state = 2483; this.indexElem(); - this.state = 2476; + this.state = 2484; this.match(PostgreSqlParser.KW_WITH); - this.state = 2483; + this.state = 2491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2477; + this.state = 2485; this.anyOperator(); } break; case 2: { - this.state = 2478; + this.state = 2486; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2479; + this.state = 2487; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2480; + this.state = 2488; this.anyOperator(); - this.state = 2481; + this.state = 2489; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -12582,20 +12588,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 150, PostgreSqlParser.RULE_keyActions); let _la: number; try { - this.state = 2493; + this.state = 2501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2485; + this.state = 2493; this.keyUpdate(); - this.state = 2487; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2486; + this.state = 2494; this.keyDelete(); } } @@ -12605,14 +12611,14 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2489; + this.state = 2497; this.keyDelete(); - this.state = 2491; + this.state = 2499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2490; + this.state = 2498; this.keyUpdate(); } } @@ -12641,11 +12647,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2495; + this.state = 2503; this.match(PostgreSqlParser.KW_ON); - this.state = 2496; + this.state = 2504; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2497; + this.state = 2505; this.keyAction(); } } @@ -12669,11 +12675,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2499; + this.state = 2507; this.match(PostgreSqlParser.KW_ON); - this.state = 2500; + this.state = 2508; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2501; + this.state = 2509; this.keyAction(); } } @@ -12696,38 +12702,38 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 156, PostgreSqlParser.RULE_keyAction); let _la: number; try { - this.state = 2512; + this.state = 2520; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 1); { - this.state = 2503; + this.state = 2511; this.match(PostgreSqlParser.KW_NO); - this.state = 2504; + this.state = 2512; this.match(PostgreSqlParser.KW_ACTION); } break; case PostgreSqlParser.KW_RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 2505; + this.state = 2513; this.match(PostgreSqlParser.KW_RESTRICT); } break; case PostgreSqlParser.KW_CASCADE: this.enterOuterAlt(localContext, 3); { - this.state = 2506; + this.state = 2514; this.match(PostgreSqlParser.KW_CASCADE); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2507; + this.state = 2515; this.match(PostgreSqlParser.KW_SET); - this.state = 2508; + this.state = 2516; _la = this.tokenStream.LA(1); if(!(_la === 53 || _la === 78)) { this.errorHandler.recoverInline(this); @@ -12736,12 +12742,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2510; + this.state = 2518; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2509; + this.state = 2517; this.columnList(); } break; @@ -12772,13 +12778,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2514; + this.state = 2522; this.match(PostgreSqlParser.KW_INHERITS); - this.state = 2515; + this.state = 2523; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2516; + this.state = 2524; this.qualifiedNameList(); - this.state = 2517; + this.state = 2525; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12803,33 +12809,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2519; + this.state = 2527; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2520; + this.state = 2528; this.match(PostgreSqlParser.KW_BY); - this.state = 2521; + this.state = 2529; this.colId(); - this.state = 2522; + this.state = 2530; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2523; + this.state = 2531; this.partElem(); - this.state = 2528; + this.state = 2536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2524; + this.state = 2532; this.match(PostgreSqlParser.COMMA); - this.state = 2525; + this.state = 2533; this.partElem(); } } - this.state = 2530; + this.state = 2538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2531; + this.state = 2539; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12854,50 +12860,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2539; + this.state = 2547; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2533; + this.state = 2541; this.columnName(); } break; case 2: { - this.state = 2534; + this.state = 2542; this.funcExprWindowless(); } break; case 3: { { - this.state = 2535; + this.state = 2543; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2536; + this.state = 2544; this.expression(); - this.state = 2537; + this.state = 2545; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 2542; + this.state = 2550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 2541; + this.state = 2549; this.collateClause(); } } - this.state = 2545; + this.state = 2553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2544; + this.state = 2552; this.anyName(); } } @@ -12924,9 +12930,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2547; + this.state = 2555; this.match(PostgreSqlParser.KW_USING); - this.state = 2548; + this.state = 2556; this.colId(); } } @@ -12949,22 +12955,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 166, PostgreSqlParser.RULE_optWith); let _la: number; try { - this.state = 2554; + this.state = 2562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2550; + this.state = 2558; this.match(PostgreSqlParser.KW_WITH); - this.state = 2551; + this.state = 2559; this.relOptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2552; + this.state = 2560; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -12973,7 +12979,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2553; + this.state = 2561; this.match(PostgreSqlParser.KW_OIDS); } break; @@ -12999,32 +13005,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2556; + this.state = 2564; this.match(PostgreSqlParser.KW_ON); - this.state = 2557; + this.state = 2565; this.match(PostgreSqlParser.KW_COMMIT); - this.state = 2563; + this.state = 2571; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: { - this.state = 2558; + this.state = 2566; this.match(PostgreSqlParser.KW_DROP); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 2559; + this.state = 2567; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2560; + this.state = 2568; this.match(PostgreSqlParser.KW_ROWS); } break; case PostgreSqlParser.KW_PRESERVE: { - this.state = 2561; + this.state = 2569; this.match(PostgreSqlParser.KW_PRESERVE); - this.state = 2562; + this.state = 2570; this.match(PostgreSqlParser.KW_ROWS); } break; @@ -13053,9 +13059,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2565; + this.state = 2573; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 2566; + this.state = 2574; this.tableSpaceName(); } } @@ -13079,11 +13085,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2568; + this.state = 2576; this.match(PostgreSqlParser.KW_USING); - this.state = 2569; + this.state = 2577; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2570; + this.state = 2578; this.optTableSpace(); } } @@ -13107,11 +13113,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2572; + this.state = 2580; this.match(PostgreSqlParser.KW_USING); - this.state = 2573; + this.state = 2581; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2574; + this.state = 2582; this.colId(); } } @@ -13136,62 +13142,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2576; + this.state = 2584; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2577; + this.state = 2585; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2582; + this.state = 2590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2579; + this.state = 2587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2578; + this.state = 2586; this.ifNotExists(); } break; } - this.state = 2581; + this.state = 2589; this.anyName(); } } - this.state = 2585; + this.state = 2593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2584; + this.state = 2592; this.optColumnList(); } } - this.state = 2587; + this.state = 2595; this.match(PostgreSqlParser.KW_ON); - this.state = 2597; + this.state = 2605; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2588; + this.state = 2596; this.columnExpr(); - this.state = 2593; + this.state = 2601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2589; + this.state = 2597; this.match(PostgreSqlParser.COMMA); - this.state = 2590; + this.state = 2598; this.columnExpr(); } } - this.state = 2595; + this.state = 2603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13199,12 +13205,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 2596; + this.state = 2604; this.exprList(); } break; } - this.state = 2599; + this.state = 2607; this.fromClause(); } } @@ -13228,27 +13234,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2601; + this.state = 2609; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2602; + this.state = 2610; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2604; + this.state = 2612; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2603; + this.state = 2611; this.ifExists(); } break; } - this.state = 2606; + this.state = 2614; this.anyName(); - this.state = 2607; + this.state = 2615; this.match(PostgreSqlParser.KW_SET); - this.state = 2608; + this.state = 2616; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2609; + this.state = 2617; this.signedConst(); } } @@ -13274,42 +13280,42 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2611; + this.state = 2619; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2613; + this.state = 2621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2612; + this.state = 2620; this.optTemp(); } } - this.state = 2615; + this.state = 2623; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2617; + this.state = 2625; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2616; + this.state = 2624; this.ifNotExists(); } break; } - this.state = 2619; + this.state = 2627; this.createAsTarget(); - this.state = 2620; + this.state = 2628; this.match(PostgreSqlParser.KW_AS); - this.state = 2621; + this.state = 2629; this.selectStmt(); - this.state = 2623; + this.state = 2631; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2622; + this.state = 2630; this.optWithData(); } break; @@ -13337,54 +13343,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2625; + this.state = 2633; this.tableNameCreate(); - this.state = 2627; + this.state = 2635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2626; + this.state = 2634; this.columnListCreate(); } } - this.state = 2630; + this.state = 2638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2629; + this.state = 2637; this.tableAccessMethodClause(); } } - this.state = 2633; + this.state = 2641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 2632; + this.state = 2640; this.optWith(); } } - this.state = 2636; + this.state = 2644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2635; + this.state = 2643; this.onCommitOption(); } } - this.state = 2639; + this.state = 2647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2638; + this.state = 2646; this.optTableSpace(); } } @@ -13411,22 +13417,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2641; + this.state = 2649; this.match(PostgreSqlParser.KW_WITH); - this.state = 2645; + this.state = 2653; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 2642; + this.state = 2650; this.match(PostgreSqlParser.KW_DATA); } break; case PostgreSqlParser.KW_NO: { - this.state = 2643; + this.state = 2651; this.match(PostgreSqlParser.KW_NO); - this.state = 2644; + this.state = 2652; this.match(PostgreSqlParser.KW_DATA); } break; @@ -13457,84 +13463,84 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2647; + this.state = 2655; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2649; + this.state = 2657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 2648; + this.state = 2656; this.match(PostgreSqlParser.KW_UNLOGGED); } } - this.state = 2651; + this.state = 2659; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2652; + this.state = 2660; this.match(PostgreSqlParser.KW_VIEW); - this.state = 2654; + this.state = 2662; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2653; + this.state = 2661; this.ifNotExists(); } break; } - this.state = 2656; + this.state = 2664; this.viewNameCreate(); - this.state = 2658; + this.state = 2666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2657; + this.state = 2665; this.columnListCreate(); } } - this.state = 2661; + this.state = 2669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2660; + this.state = 2668; this.tableAccessMethodClause(); } } - this.state = 2664; + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2663; + this.state = 2671; this.optRelOptions(); } } - this.state = 2667; + this.state = 2675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2666; + this.state = 2674; this.optTableSpace(); } } - this.state = 2669; + this.state = 2677; this.match(PostgreSqlParser.KW_AS); - this.state = 2670; + this.state = 2678; this.selectStmt(); - this.state = 2672; + this.state = 2680; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2671; + this.state = 2679; this.optWithData(); } break; @@ -13562,30 +13568,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2674; + this.state = 2682; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 2675; + this.state = 2683; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2676; + this.state = 2684; this.match(PostgreSqlParser.KW_VIEW); - this.state = 2678; + this.state = 2686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 2677; + this.state = 2685; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 2680; + this.state = 2688; this.viewName(); - this.state = 2682; + this.state = 2690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2681; + this.state = 2689; this.optWithData(); } break; @@ -13614,38 +13620,38 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2684; + this.state = 2692; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2686; + this.state = 2694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2685; + this.state = 2693; this.optTemp(); } } - this.state = 2688; + this.state = 2696; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2690; + this.state = 2698; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2689; + this.state = 2697; this.ifNotExists(); } break; } - this.state = 2692; + this.state = 2700; this.qualifiedName(); - this.state = 2698; + this.state = 2706; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2694; + this.state = 2702; this.errorHandler.sync(this); alternative = 1; do { @@ -13653,7 +13659,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2693; + this.state = 2701; this.seqOptElem(); } } @@ -13661,7 +13667,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2696; + this.state = 2704; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13691,23 +13697,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2700; + this.state = 2708; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2701; + this.state = 2709; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2703; + this.state = 2711; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { - this.state = 2702; + this.state = 2710; this.ifExists(); } break; } - this.state = 2705; + this.state = 2713; this.qualifiedName(); - this.state = 2707; + this.state = 2715; this.errorHandler.sync(this); alternative = 1; do { @@ -13715,7 +13721,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2706; + this.state = 2714; this.seqOptElem(); } } @@ -13723,7 +13729,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2709; + this.state = 2717; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13748,29 +13754,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 194, PostgreSqlParser.RULE_seqOptElem); let _la: number; try { - this.state = 2744; + this.state = 2752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: this.enterOuterAlt(localContext, 1); { - this.state = 2711; + this.state = 2719; this.match(PostgreSqlParser.KW_AS); - this.state = 2712; + this.state = 2720; this.simpleTypeName(); } break; case PostgreSqlParser.KW_CACHE: this.enterOuterAlt(localContext, 2); { - this.state = 2713; + this.state = 2721; this.match(PostgreSqlParser.KW_CACHE); - this.state = 2715; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574 || _la === 576) { { - this.state = 2714; + this.state = 2722; this.numericOnly(); } } @@ -13780,19 +13786,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_INCREMENT: this.enterOuterAlt(localContext, 3); { - this.state = 2717; + this.state = 2725; this.match(PostgreSqlParser.KW_INCREMENT); - this.state = 2719; + this.state = 2727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 2718; + this.state = 2726; this.match(PostgreSqlParser.KW_BY); } } - this.state = 2721; + this.state = 2729; this.numericOnly(); } break; @@ -13800,7 +13806,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINVALUE: this.enterOuterAlt(localContext, 4); { - this.state = 2722; + this.state = 2730; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13809,16 +13815,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2723; + this.state = 2731; this.numericOnly(); } break; case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 5); { - this.state = 2724; + this.state = 2732; this.match(PostgreSqlParser.KW_NO); - this.state = 2725; + this.state = 2733; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13832,65 +13838,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OWNED: this.enterOuterAlt(localContext, 6); { - this.state = 2726; + this.state = 2734; this.match(PostgreSqlParser.KW_OWNED); - this.state = 2727; + this.state = 2735; this.match(PostgreSqlParser.KW_BY); - this.state = 2728; + this.state = 2736; this.columnName(); } break; case PostgreSqlParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 7); { - this.state = 2729; + this.state = 2737; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2730; + this.state = 2738; this.match(PostgreSqlParser.KW_NAME); - this.state = 2731; + this.state = 2739; this.anyName(); } break; case PostgreSqlParser.KW_START: this.enterOuterAlt(localContext, 8); { - this.state = 2732; + this.state = 2740; this.match(PostgreSqlParser.KW_START); - this.state = 2734; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2733; + this.state = 2741; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 2736; + this.state = 2744; this.numericOnly(); } break; case PostgreSqlParser.KW_RESTART: this.enterOuterAlt(localContext, 9); { - this.state = 2737; + this.state = 2745; this.match(PostgreSqlParser.KW_RESTART); - this.state = 2739; + this.state = 2747; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2738; + this.state = 2746; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2742; + this.state = 2750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574 || _la === 576) { { - this.state = 2741; + this.state = 2749; this.numericOnly(); } } @@ -13920,18 +13926,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 196, PostgreSqlParser.RULE_numericOnly); let _la: number; try { - this.state = 2751; + this.state = 2759; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2747; + this.state = 2755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 2746; + this.state = 2754; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -13943,14 +13949,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 2749; + this.state = 2757; this.match(PostgreSqlParser.Numeric); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2750; + this.state = 2758; this.signedConst(); } break; @@ -13977,79 +13983,79 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2753; + this.state = 2761; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2755; + this.state = 2763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 2754; + this.state = 2762; this.orReplaceOpt(); } } - this.state = 2758; + this.state = 2766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 359) { { - this.state = 2757; + this.state = 2765; this.match(PostgreSqlParser.KW_TRUSTED); } } - this.state = 2761; + this.state = 2769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 2760; + this.state = 2768; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 2763; + this.state = 2771; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2764; + this.state = 2772; this.colId(); - this.state = 2777; + this.state = 2785; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2765; + this.state = 2773; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 2766; + this.state = 2774; this.anyName(); - this.state = 2769; + this.state = 2777; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2767; + this.state = 2775; this.match(PostgreSqlParser.KW_INLINE); - this.state = 2768; + this.state = 2776; this.anyName(); } break; } - this.state = 2775; + this.state = 2783; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2771; + this.state = 2779; this.match(PostgreSqlParser.KW_VALIDATOR); - this.state = 2772; + this.state = 2780; this.anyName(); } break; case 2: { - this.state = 2773; + this.state = 2781; this.match(PostgreSqlParser.KW_NO); - this.state = 2774; + this.state = 2782; this.match(PostgreSqlParser.KW_VALIDATOR); } break; @@ -14080,32 +14086,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2779; + this.state = 2787; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2780; + this.state = 2788; this.optTableSpace(); - this.state = 2783; + this.state = 2791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 282) { { - this.state = 2781; + this.state = 2789; this.match(PostgreSqlParser.KW_OWNER); - this.state = 2782; + this.state = 2790; this.roleSpec(); } } - this.state = 2785; + this.state = 2793; this.match(PostgreSqlParser.KW_LOCATION); - this.state = 2786; + this.state = 2794; this.stringConst(); - this.state = 2788; + this.state = 2796; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { - this.state = 2787; + this.state = 2795; this.optRelOptions(); } break; @@ -14134,53 +14140,53 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2790; + this.state = 2798; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2791; + this.state = 2799; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2793; + this.state = 2801; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2792; + this.state = 2800; this.ifNotExists(); } break; } - this.state = 2795; + this.state = 2803; this.colId(); - this.state = 2797; + this.state = 2805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2796; + this.state = 2804; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2806; + this.state = 2814; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 299, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2804; + this.state = 2812; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SCHEMA: { - this.state = 2799; + this.state = 2807; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 2800; + this.state = 2808; this.schemaName(); } break; case PostgreSqlParser.KW_FROM: case PostgreSqlParser.KW_VERSION: { - this.state = 2801; + this.state = 2809; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -14189,13 +14195,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2802; + this.state = 2810; this.nonReservedWordOrStringConst(); } break; case PostgreSqlParser.KW_CASCADE: { - this.state = 2803; + this.state = 2811; this.match(PostgreSqlParser.KW_CASCADE); } break; @@ -14204,7 +14210,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2808; + this.state = 2816; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 299, this.context); } @@ -14231,27 +14237,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2809; + this.state = 2817; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2810; + this.state = 2818; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2811; + this.state = 2819; this.colId(); - this.state = 2812; + this.state = 2820; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2817; + this.state = 2825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 94) { { { - this.state = 2813; + this.state = 2821; this.match(PostgreSqlParser.KW_TO); - this.state = 2814; + this.state = 2822; this.nonReservedWordOrStringConst(); } } - this.state = 2819; + this.state = 2827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14278,13 +14284,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2820; + this.state = 2828; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2821; + this.state = 2829; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2822; + this.state = 2830; this.colId(); - this.state = 2823; + this.state = 2831; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -14293,44 +14299,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2856; + this.state = 2864; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2824; + this.state = 2832; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 2825; + this.state = 2833; this.match(PostgreSqlParser.KW_FOR); - this.state = 2826; + this.state = 2834; this.typename(); - this.state = 2827; + this.state = 2835; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2828; + this.state = 2836; this.colId(); } break; case 2: { - this.state = 2830; + this.state = 2838; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 2831; + this.state = 2839; this.routineWithArgTypes(); } break; case 3: { - this.state = 2832; + this.state = 2840; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 2833; + this.state = 2841; this.procedureWithArgTypes(); } break; case 4: { - this.state = 2834; + this.state = 2842; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2835; + this.state = 2843; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -14339,31 +14345,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2836; + this.state = 2844; this.anyName(); - this.state = 2837; + this.state = 2845; this.tableAccessMethodClause(); } break; case 5: { - this.state = 2839; + this.state = 2847; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2840; + this.state = 2848; this.operatorWithArgTypes(); } break; case 6: { - this.state = 2841; + this.state = 2849; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 2842; + this.state = 2850; this.functionWithArgTypes(); } break; case 7: { - this.state = 2843; + this.state = 2851; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14372,43 +14378,43 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2844; + this.state = 2852; this.typename(); } break; case 8: { - this.state = 2845; + this.state = 2853; this.match(PostgreSqlParser.KW_CAST); - this.state = 2846; + this.state = 2854; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2847; + this.state = 2855; this.typename(); - this.state = 2848; + this.state = 2856; this.match(PostgreSqlParser.KW_AS); - this.state = 2849; + this.state = 2857; this.typename(); - this.state = 2850; + this.state = 2858; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 9: { - this.state = 2852; + this.state = 2860; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 2853; + this.state = 2861; this.aggregateWithArgTypes(); } break; case 10: { - this.state = 2854; + this.state = 2862; this.objectTypeName(); } break; case 11: { - this.state = 2855; + this.state = 2863; this.objectTypeAnyName(); } break; @@ -14436,22 +14442,22 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2858; + this.state = 2866; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2859; + this.state = 2867; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2860; + this.state = 2868; this.match(PostgreSqlParser.KW_DATA); - this.state = 2861; + this.state = 2869; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2862; + this.state = 2870; this.colId(); - this.state = 2868; + this.state = 2876; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2864; + this.state = 2872; this.errorHandler.sync(this); alternative = 1; do { @@ -14459,7 +14465,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2863; + this.state = 2871; this.fdwOption(); } } @@ -14467,19 +14473,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2866; + this.state = 2874; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 302, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 2871; + this.state = 2879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2870; + this.state = 2878; this.createGenericOptions(); } break; @@ -14505,14 +14511,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 210, PostgreSqlParser.RULE_fdwOption); let _la: number; try { - this.state = 2879; + this.state = 2887; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HANDLER: case PostgreSqlParser.KW_VALIDATOR: this.enterOuterAlt(localContext, 1); { - this.state = 2873; + this.state = 2881; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14521,12 +14527,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2875; + this.state = 2883; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2874; + this.state = 2882; this.anyName(); } break; @@ -14536,9 +14542,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 2877; + this.state = 2885; this.match(PostgreSqlParser.KW_NO); - this.state = 2878; + this.state = 2886; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14575,50 +14581,50 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2881; + this.state = 2889; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2882; + this.state = 2890; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2883; + this.state = 2891; this.match(PostgreSqlParser.KW_DATA); - this.state = 2884; + this.state = 2892; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2885; + this.state = 2893; this.colId(); - this.state = 2899; + this.state = 2907; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2891; + this.state = 2899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215 || _la === 269 || _la === 373) { { - this.state = 2887; + this.state = 2895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2886; + this.state = 2894; this.fdwOption(); } } - this.state = 2889; + this.state = 2897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 215 || _la === 269 || _la === 373); } } - this.state = 2893; + this.state = 2901; this.alterGenericOptions(); } break; case 2: { - this.state = 2895; + this.state = 2903; this.errorHandler.sync(this); alternative = 1; do { @@ -14626,7 +14632,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2894; + this.state = 2902; this.fdwOption(); } } @@ -14634,7 +14640,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2897; + this.state = 2905; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 309, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -14664,29 +14670,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2901; + this.state = 2909; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2902; + this.state = 2910; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2903; + this.state = 2911; this.genericOptionElem(); - this.state = 2908; + this.state = 2916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2904; + this.state = 2912; this.match(PostgreSqlParser.COMMA); - this.state = 2905; + this.state = 2913; this.genericOptionElem(); } } - this.state = 2910; + this.state = 2918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2911; + this.state = 2919; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14711,29 +14717,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2913; + this.state = 2921; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2914; + this.state = 2922; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2915; + this.state = 2923; this.alterGenericOptionElem(); - this.state = 2920; + this.state = 2928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2916; + this.state = 2924; this.match(PostgreSqlParser.COMMA); - this.state = 2917; + this.state = 2925; this.alterGenericOptionElem(); } } - this.state = 2922; + this.state = 2930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2923; + this.state = 2931; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14758,7 +14764,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2925; + this.state = 2933; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -14767,7 +14773,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2926; + this.state = 2934; this.genericOptionElem(); } } @@ -14791,9 +14797,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2928; + this.state = 2936; this.colLabel(); - this.state = 2929; + this.state = 2937; this.stringConst(); } } @@ -14818,58 +14824,58 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2931; + this.state = 2939; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2932; + this.state = 2940; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2934; + this.state = 2942; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2933; + this.state = 2941; this.ifNotExists(); } break; } - this.state = 2936; + this.state = 2944; this.colId(); - this.state = 2939; + this.state = 2947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 2937; + this.state = 2945; this.match(PostgreSqlParser.KW_TYPE); - this.state = 2938; + this.state = 2946; this.stringConst(); } } - this.state = 2942; + this.state = 2950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 375) { { - this.state = 2941; + this.state = 2949; this.foreignServerVersion(); } } - this.state = 2944; + this.state = 2952; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2945; + this.state = 2953; this.match(PostgreSqlParser.KW_DATA); - this.state = 2946; + this.state = 2954; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2947; + this.state = 2955; this.colId(); - this.state = 2949; + this.state = 2957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2948; + this.state = 2956; this.createGenericOptions(); } break; @@ -14896,9 +14902,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2951; + this.state = 2959; this.match(PostgreSqlParser.KW_VERSION); - this.state = 2954; + this.state = 2962; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -14906,13 +14912,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2952; + this.state = 2960; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 2953; + this.state = 2961; this.match(PostgreSqlParser.KW_NULL); } break; @@ -14941,31 +14947,31 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2956; + this.state = 2964; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2957; + this.state = 2965; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2958; + this.state = 2966; this.colId(); - this.state = 2964; + this.state = 2972; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPTIONS: { - this.state = 2959; + this.state = 2967; this.alterGenericOptions(); } break; case PostgreSqlParser.KW_VERSION: { - this.state = 2960; + this.state = 2968; this.foreignServerVersion(); - this.state = 2962; + this.state = 2970; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2961; + this.state = 2969; this.alterGenericOptions(); } break; @@ -14996,65 +15002,65 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 228, PostgreSqlParser.RULE_createForeignTableStmt); let _la: number; try { - this.state = 3005; + this.state = 3013; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: localContext = new CreateForeignTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2966; + this.state = 2974; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2967; + this.state = 2975; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2968; + this.state = 2976; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2970; + this.state = 2978; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2969; + this.state = 2977; this.ifNotExists(); } break; } - this.state = 2972; + this.state = 2980; this.tableNameCreate(); - this.state = 2973; + this.state = 2981; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2975; + this.state = 2983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2974; + this.state = 2982; this.tableElementList(); } } - this.state = 2977; + this.state = 2985; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2979; + this.state = 2987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 2978; + this.state = 2986; this.optInherit(); } } - this.state = 2981; + this.state = 2989; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2982; + this.state = 2990; this.colId(); - this.state = 2984; + this.state = 2992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2983; + this.state = 2991; this.createGenericOptions(); } break; @@ -15065,52 +15071,52 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreatePartitionForeignTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2986; + this.state = 2994; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2987; + this.state = 2995; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2988; + this.state = 2996; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2990; + this.state = 2998; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2989; + this.state = 2997; this.ifNotExists(); } break; } - this.state = 2992; + this.state = 3000; this.tableNameCreate(); - this.state = 2993; + this.state = 3001; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2994; + this.state = 3002; this.match(PostgreSqlParser.KW_OF); - this.state = 2995; + this.state = 3003; this.tableName(); - this.state = 2997; + this.state = 3005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2996; + this.state = 3004; this.optTypedTableElEmentList(); } } - this.state = 2999; + this.state = 3007; this.partitionBoundSpec(); - this.state = 3000; + this.state = 3008; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3001; + this.state = 3009; this.colId(); - this.state = 3003; + this.state = 3011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 3002; + this.state = 3010; this.createGenericOptions(); } break; @@ -15140,64 +15146,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3007; + this.state = 3015; this.match(PostgreSqlParser.KW_IMPORT); - this.state = 3008; + this.state = 3016; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3009; + this.state = 3017; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3010; + this.state = 3018; this.schemaName(); - this.state = 3020; + this.state = 3028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59 || _la === 74) { { - this.state = 3014; + this.state = 3022; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 3011; + this.state = 3019; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 3012; + this.state = 3020; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_EXCEPT: { - this.state = 3013; + this.state = 3021; this.match(PostgreSqlParser.KW_EXCEPT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3016; + this.state = 3024; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3017; + this.state = 3025; this.relationExprList(); - this.state = 3018; + this.state = 3026; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 3022; + this.state = 3030; this.match(PostgreSqlParser.KW_FROM); - this.state = 3023; + this.state = 3031; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3024; + this.state = 3032; this.colId(); - this.state = 3025; + this.state = 3033; this.match(PostgreSqlParser.KW_INTO); - this.state = 3026; + this.state = 3034; this.colId(); - this.state = 3028; + this.state = 3036; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 3027; + this.state = 3035; this.createGenericOptions(); } break; @@ -15225,25 +15231,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3030; + this.state = 3038; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3031; + this.state = 3039; this.match(PostgreSqlParser.KW_USER); - this.state = 3032; + this.state = 3040; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3034; + this.state = 3042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3033; + this.state = 3041; this.ifNotExists(); } } - this.state = 3036; + this.state = 3044; this.match(PostgreSqlParser.KW_FOR); - this.state = 3039; + this.state = 3047; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -15665,29 +15671,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3037; + this.state = 3045; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3038; + this.state = 3046; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3041; + this.state = 3049; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3042; + this.state = 3050; this.colId(); - this.state = 3044; + this.state = 3052; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 3043; + this.state = 3051; this.createGenericOptions(); } break; @@ -15714,15 +15720,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3046; + this.state = 3054; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3047; + this.state = 3055; this.match(PostgreSqlParser.KW_USER); - this.state = 3048; + this.state = 3056; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3049; + this.state = 3057; this.match(PostgreSqlParser.KW_FOR); - this.state = 3052; + this.state = 3060; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -16144,24 +16150,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3050; + this.state = 3058; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3051; + this.state = 3059; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3054; + this.state = 3062; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3055; + this.state = 3063; this.colId(); - this.state = 3056; + this.state = 3064; this.alterGenericOptions(); } } @@ -16186,35 +16192,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3058; + this.state = 3066; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3059; + this.state = 3067; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3060; + this.state = 3068; this.colId(); - this.state = 3061; + this.state = 3069; this.match(PostgreSqlParser.KW_ON); - this.state = 3062; + this.state = 3070; this.qualifiedName(); - this.state = 3069; + this.state = 3077; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 3063; + this.state = 3071; this.match(PostgreSqlParser.KW_AS); - this.state = 3067; + this.state = 3075; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_PERMISSIVE: { - this.state = 3064; + this.state = 3072; this.match(PostgreSqlParser.KW_PERMISSIVE); } break; case PostgreSqlParser.KW_RESTRICTIVE: { - this.state = 3065; + this.state = 3073; this.match(PostgreSqlParser.KW_RESTRICTIVE); } break; @@ -16562,7 +16568,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3066; + this.state = 3074; this.identifier(); } break; @@ -16572,14 +16578,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 3073; + this.state = 3081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3071; + this.state = 3079; this.match(PostgreSqlParser.KW_FOR); - this.state = 3072; + this.state = 3080; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -16591,34 +16597,34 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3077; + this.state = 3085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3075; + this.state = 3083; this.match(PostgreSqlParser.KW_TO); - this.state = 3076; + this.state = 3084; this.roleList(); } } - this.state = 3080; + this.state = 3088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3079; + this.state = 3087; this.rowSecurityOptionalExpr(); } } - this.state = 3083; + this.state = 3091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: { - this.state = 3082; + this.state = 3090; this.rowSecurityOptionalWithCheck(); } break; @@ -16646,44 +16652,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3085; + this.state = 3093; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3086; + this.state = 3094; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3087; + this.state = 3095; this.colId(); - this.state = 3088; + this.state = 3096; this.match(PostgreSqlParser.KW_ON); - this.state = 3089; + this.state = 3097; this.qualifiedName(); - this.state = 3092; + this.state = 3100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3090; + this.state = 3098; this.match(PostgreSqlParser.KW_TO); - this.state = 3091; + this.state = 3099; this.roleList(); } } - this.state = 3095; + this.state = 3103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3094; + this.state = 3102; this.rowSecurityOptionalExpr(); } } - this.state = 3098; + this.state = 3106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 3097; + this.state = 3105; this.rowSecurityOptionalWithCheck(); } break; @@ -16712,51 +16718,51 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3100; + this.state = 3108; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3101; + this.state = 3109; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3102; + this.state = 3110; this.procedureName(); - this.state = 3104; + this.state = 3112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3103; + this.state = 3111; this.funcArgs(); } } - this.state = 3132; + this.state = 3140; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: { - this.state = 3106; + this.state = 3114; this.procedureAction(); - this.state = 3110; + this.state = 3118; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3107; + this.state = 3115; this.procedureAction(); } } } - this.state = 3112; + this.state = 3120; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); } - this.state = 3114; + this.state = 3122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 3113; + this.state = 3121; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -16765,53 +16771,53 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 3116; + this.state = 3124; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3117; + this.state = 3125; this.match(PostgreSqlParser.KW_TO); - this.state = 3118; + this.state = 3126; this.procedureNameCreate(); } break; case 3: { - this.state = 3119; + this.state = 3127; this.match(PostgreSqlParser.KW_OWNER); - this.state = 3120; + this.state = 3128; this.match(PostgreSqlParser.KW_TO); - this.state = 3121; + this.state = 3129; this.roleSpec(); } break; case 4: { - this.state = 3122; + this.state = 3130; this.match(PostgreSqlParser.KW_SET); - this.state = 3123; + this.state = 3131; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3124; + this.state = 3132; this.schemaNameCreate(); } break; case 5: { - this.state = 3126; + this.state = 3134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 3125; + this.state = 3133; this.match(PostgreSqlParser.KW_NO); } } - this.state = 3128; + this.state = 3136; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 3129; + this.state = 3137; this.match(PostgreSqlParser.KW_ON); - this.state = 3130; + this.state = 3138; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 3131; + this.state = 3139; this.colId(); } break; @@ -16837,48 +16843,48 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 242, PostgreSqlParser.RULE_procedureAction); let _la: number; try { - this.state = 3163; + this.state = 3171; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3144; + this.state = 3152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 3135; + this.state = 3143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3134; + this.state = 3142; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3137; + this.state = 3145; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3138; + this.state = 3146; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 3140; + this.state = 3148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3139; + this.state = 3147; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3142; + this.state = 3150; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3143; + this.state = 3151; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -16888,11 +16894,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3146; + this.state = 3154; this.match(PostgreSqlParser.KW_SET); - this.state = 3147; + this.state = 3155; this.colId(); - this.state = 3148; + this.state = 3156; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -16901,18 +16907,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3151; + this.state = 3159; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 3149; + this.state = 3157; this.colId(); } break; case 2: { - this.state = 3150; + this.state = 3158; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -16922,22 +16928,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3153; + this.state = 3161; this.match(PostgreSqlParser.KW_SET); - this.state = 3154; + this.state = 3162; this.colId(); - this.state = 3155; + this.state = 3163; this.match(PostgreSqlParser.KW_FROM); - this.state = 3156; + this.state = 3164; this.match(PostgreSqlParser.KW_CURRENT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3158; + this.state = 3166; this.match(PostgreSqlParser.KW_RESET); - this.state = 3161; + this.state = 3169; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -17335,13 +17341,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3159; + this.state = 3167; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 3160; + this.state = 3168; this.match(PostgreSqlParser.KW_ALL); } break; @@ -17372,13 +17378,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3165; + this.state = 3173; this.match(PostgreSqlParser.KW_USING); - this.state = 3166; + this.state = 3174; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3167; + this.state = 3175; this.expression(); - this.state = 3168; + this.state = 3176; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17402,15 +17408,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3170; + this.state = 3178; this.match(PostgreSqlParser.KW_WITH); - this.state = 3171; + this.state = 3179; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3172; + this.state = 3180; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3173; + this.state = 3181; this.expression(); - this.state = 3174; + this.state = 3182; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17435,17 +17441,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3176; + this.state = 3184; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3177; + this.state = 3185; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3178; + this.state = 3186; this.match(PostgreSqlParser.KW_METHOD); - this.state = 3179; + this.state = 3187; this.colId(); - this.state = 3180; + this.state = 3188; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3181; + this.state = 3189; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 226)) { this.errorHandler.recoverInline(this); @@ -17454,9 +17460,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3182; + this.state = 3190; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 3183; + this.state = 3191; this.anyName(); } } @@ -17479,50 +17485,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 250, PostgreSqlParser.RULE_createTrigStmt); let _la: number; try { - this.state = 3263; + this.state = 3271; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3185; + this.state = 3193; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3187; + this.state = 3195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3186; + this.state = 3194; this.orReplaceOpt(); } } - this.state = 3189; + this.state = 3197; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3190; + this.state = 3198; this.colId(); - this.state = 3191; + this.state = 3199; this.triggerActionTime(); - this.state = 3192; + this.state = 3200; this.triggerEvents(); - this.state = 3193; + this.state = 3201; this.match(PostgreSqlParser.KW_ON); - this.state = 3194; + this.state = 3202; this.tableName(); - this.state = 3206; + this.state = 3214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 447) { { - this.state = 3195; + this.state = 3203; this.match(PostgreSqlParser.KW_REFERENCING); - this.state = 3202; + this.state = 3210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3196; + this.state = 3204; _la = this.tokenStream.LA(1); if(!(_la === 448 || _la === 449)) { this.errorHandler.recoverInline(this); @@ -17531,7 +17537,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3197; + this.state = 3205; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17540,45 +17546,45 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3199; + this.state = 3207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3198; + this.state = 3206; this.match(PostgreSqlParser.KW_AS); } } - this.state = 3201; + this.state = 3209; this.colId(); } } - this.state = 3204; + this.state = 3212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 448 || _la === 449); } } - this.state = 3213; + this.state = 3221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3208; + this.state = 3216; this.match(PostgreSqlParser.KW_FOR); - this.state = 3210; + this.state = 3218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3209; + this.state = 3217; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3212; + this.state = 3220; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17590,109 +17596,109 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3216; + this.state = 3224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3215; + this.state = 3223; this.triggerWhen(); } } - this.state = 3218; + this.state = 3226; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3219; + this.state = 3227; this.functionOrProcedure(); - this.state = 3220; + this.state = 3228; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3221; + this.state = 3229; this.triggerFuncArgs(); - this.state = 3222; + this.state = 3230; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3224; + this.state = 3232; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3226; + this.state = 3234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3225; + this.state = 3233; this.orReplaceOpt(); } } - this.state = 3229; + this.state = 3237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 3228; + this.state = 3236; this.match(PostgreSqlParser.KW_CONSTRAINT); } } - this.state = 3231; + this.state = 3239; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3232; + this.state = 3240; this.colId(); - this.state = 3233; + this.state = 3241; this.triggerActionTime(); - this.state = 3234; + this.state = 3242; this.triggerEvents(); - this.state = 3235; + this.state = 3243; this.match(PostgreSqlParser.KW_ON); - this.state = 3236; + this.state = 3244; this.tableName(); - this.state = 3239; + this.state = 3247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 3237; + this.state = 3245; this.match(PostgreSqlParser.KW_FROM); - this.state = 3238; + this.state = 3246; this.qualifiedName(); } } - this.state = 3244; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 54)) & ~0x1F) === 0 && ((1 << (_la - 54)) & 8421377) !== 0) || _la === 269) { { { - this.state = 3241; + this.state = 3249; this.constraintAttributeElem(); } } - this.state = 3246; + this.state = 3254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3252; + this.state = 3260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3247; + this.state = 3255; this.match(PostgreSqlParser.KW_FOR); - this.state = 3249; + this.state = 3257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3248; + this.state = 3256; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3251; + this.state = 3259; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17704,25 +17710,25 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3255; + this.state = 3263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3254; + this.state = 3262; this.triggerWhen(); } } - this.state = 3257; + this.state = 3265; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3258; + this.state = 3266; this.functionOrProcedure(); - this.state = 3259; + this.state = 3267; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3260; + this.state = 3268; this.triggerFuncArgs(); - this.state = 3261; + this.state = 3269; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -17746,29 +17752,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerActionTimeContext(this.context, this.state); this.enterRule(localContext, 252, PostgreSqlParser.RULE_triggerActionTime); try { - this.state = 3269; + this.state = 3277; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_BEFORE: this.enterOuterAlt(localContext, 1); { - this.state = 3265; + this.state = 3273; this.match(PostgreSqlParser.KW_BEFORE); } break; case PostgreSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3266; + this.state = 3274; this.match(PostgreSqlParser.KW_AFTER); } break; case PostgreSqlParser.KW_INSTEAD: this.enterOuterAlt(localContext, 3); { - this.state = 3267; + this.state = 3275; this.match(PostgreSqlParser.KW_INSTEAD); - this.state = 3268; + this.state = 3276; this.match(PostgreSqlParser.KW_OF); } break; @@ -17797,21 +17803,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3271; + this.state = 3279; this.triggerOneEvent(); - this.state = 3276; + this.state = 3284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 3272; + this.state = 3280; this.match(PostgreSqlParser.KW_OR); - this.state = 3273; + this.state = 3281; this.triggerOneEvent(); } } - this.state = 3278; + this.state = 3286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17836,36 +17842,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 256, PostgreSqlParser.RULE_triggerOneEvent); let _la: number; try { - this.state = 3287; + this.state = 3295; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 1); { - this.state = 3279; + this.state = 3287; this.match(PostgreSqlParser.KW_INSERT); } break; case PostgreSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 2); { - this.state = 3280; + this.state = 3288; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 3); { - this.state = 3281; + this.state = 3289; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 3284; + this.state = 3292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 275) { { - this.state = 3282; + this.state = 3290; this.match(PostgreSqlParser.KW_OF); - this.state = 3283; + this.state = 3291; this.columnList(); } } @@ -17875,7 +17881,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 4); { - this.state = 3286; + this.state = 3294; this.match(PostgreSqlParser.KW_TRUNCATE); } break; @@ -17903,13 +17909,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3289; + this.state = 3297; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3290; + this.state = 3298; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3291; + this.state = 3299; this.expression(); - this.state = 3292; + this.state = 3300; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17931,24 +17937,24 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionOrProcedureContext(this.context, this.state); this.enterRule(localContext, 260, PostgreSqlParser.RULE_functionOrProcedure); try { - this.state = 3298; + this.state = 3306; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 3294; + this.state = 3302; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3295; + this.state = 3303; this.functionName(); } break; case PostgreSqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 3296; + this.state = 3304; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3297; + this.state = 3305; this.procedureName(); } break; @@ -17977,7 +17983,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3302; + this.state = 3310; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -18473,7 +18479,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3300; + this.state = 3308; this.triggerFuncArg(); } break; @@ -18486,19 +18492,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3308; + this.state = 3316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3304; + this.state = 3312; this.match(PostgreSqlParser.COMMA); - this.state = 3305; + this.state = 3313; this.triggerFuncArg(); } } - this.state = 3310; + this.state = 3318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18522,34 +18528,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerFuncArgContext(this.context, this.state); this.enterRule(localContext, 264, PostgreSqlParser.RULE_triggerFuncArg); try { - this.state = 3315; + this.state = 3323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3311; + this.state = 3319; this.match(PostgreSqlParser.Integral); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3312; + this.state = 3320; this.match(PostgreSqlParser.Numeric); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3313; + this.state = 3321; this.stringConst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3314; + this.state = 3322; this.colLabel(); } break; @@ -18574,32 +18580,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 266, PostgreSqlParser.RULE_constraintAttributeElem); let _la: number; try { - this.state = 3327; + this.state = 3335; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3318; + this.state = 3326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 3317; + this.state = 3325; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 3320; + this.state = 3328; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3321; + this.state = 3329; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 3322; + this.state = 3330; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -18613,18 +18619,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3323; + this.state = 3331; this.match(PostgreSqlParser.KW_NOT); - this.state = 3324; + this.state = 3332; this.match(PostgreSqlParser.KW_VALID); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3325; + this.state = 3333; this.match(PostgreSqlParser.KW_NO); - this.state = 3326; + this.state = 3334; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -18651,53 +18657,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3329; + this.state = 3337; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3330; + this.state = 3338; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3331; + this.state = 3339; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3332; + this.state = 3340; this.colId(); - this.state = 3333; + this.state = 3341; this.match(PostgreSqlParser.KW_ON); - this.state = 3334; + this.state = 3342; this.colLabel(); - this.state = 3344; + this.state = 3352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3335; + this.state = 3343; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3336; + this.state = 3344; this.eventTriggerWhenItem(); - this.state = 3341; + this.state = 3349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 33) { { { - this.state = 3337; + this.state = 3345; this.match(PostgreSqlParser.KW_AND); - this.state = 3338; + this.state = 3346; this.eventTriggerWhenItem(); } } - this.state = 3343; + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3346; + this.state = 3354; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3347; + this.state = 3355; this.functionOrProcedure(); - this.state = 3348; + this.state = 3356; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3349; + this.state = 3357; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18722,29 +18728,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3351; + this.state = 3359; this.colId(); - this.state = 3352; + this.state = 3360; this.match(PostgreSqlParser.KW_IN); - this.state = 3353; + this.state = 3361; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3354; + this.state = 3362; this.stringConst(); - this.state = 3358; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3355; + this.state = 3363; this.notifyPayload(); } } - this.state = 3360; + this.state = 3368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3361; + this.state = 3369; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18769,27 +18775,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3363; + this.state = 3371; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3364; + this.state = 3372; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3365; + this.state = 3373; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3366; + this.state = 3374; this.colId(); - this.state = 3372; + this.state = 3380; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 3367; + this.state = 3375; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 3369; + this.state = 3377; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 3368; + this.state = 3376; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -18805,7 +18811,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DISABLE: { - this.state = 3371; + this.state = 3379; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -18835,33 +18841,33 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3374; + this.state = 3382; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3375; + this.state = 3383; this.match(PostgreSqlParser.KW_ASSERTION); - this.state = 3376; + this.state = 3384; this.anyName(); - this.state = 3377; + this.state = 3385; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3378; + this.state = 3386; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3379; + this.state = 3387; this.expression(); - this.state = 3380; + this.state = 3388; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3384; + this.state = 3392; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 385, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3381; + this.state = 3389; this.constraintAttributeElem(); } } } - this.state = 3386; + this.state = 3394; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 385, this.context); } @@ -18886,64 +18892,64 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 276, PostgreSqlParser.RULE_defineStmt); let _la: number; try { - this.state = 3465; + this.state = 3473; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3387; + this.state = 3395; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3389; + this.state = 3397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3388; + this.state = 3396; this.orReplaceOpt(); } } - this.state = 3391; + this.state = 3399; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3392; + this.state = 3400; this.functionName(); - this.state = 3407; + this.state = 3415; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { { - this.state = 3393; + this.state = 3401; this.aggregateArgs(); - this.state = 3394; + this.state = 3402; this.definition(); } } break; case 2: { - this.state = 3396; + this.state = 3404; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3397; + this.state = 3405; this.oldAggregateElem(); - this.state = 3402; + this.state = 3410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3398; + this.state = 3406; this.match(PostgreSqlParser.COMMA); - this.state = 3399; + this.state = 3407; this.oldAggregateElem(); } } - this.state = 3404; + this.state = 3412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3405; + this.state = 3413; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -18953,79 +18959,79 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3409; + this.state = 3417; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3410; + this.state = 3418; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3411; + this.state = 3419; this.anyOperator(); - this.state = 3412; + this.state = 3420; this.definition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3414; + this.state = 3422; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3415; + this.state = 3423; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3416; + this.state = 3424; this.anyName(); - this.state = 3417; + this.state = 3425; this.match(PostgreSqlParser.KW_AS); - this.state = 3435; + this.state = 3443; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3418; + this.state = 3426; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3420; + this.state = 3428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 3419; + this.state = 3427; this.tableFuncElementList(); } } - this.state = 3422; + this.state = 3430; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_ENUM: { - this.state = 3423; + this.state = 3431; this.match(PostgreSqlParser.KW_ENUM); - this.state = 3424; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3432; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 561)) & ~0x1F) === 0 && ((1 << (_la - 561)) & 33554453) !== 0)) { { - this.state = 3425; + this.state = 3433; this.stringConst(); - this.state = 3429; + this.state = 3437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3426; + this.state = 3434; this.notifyPayload(); } } - this.state = 3431; + this.state = 3439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3434; + this.state = 3442; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -19037,30 +19043,30 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3437; + this.state = 3445; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3438; + this.state = 3446; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3439; + this.state = 3447; this.anyName(); - this.state = 3445; + this.state = 3453; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3442; + this.state = 3450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3440; + this.state = 3448; this.match(PostgreSqlParser.KW_AS); - this.state = 3441; + this.state = 3449; this.match(PostgreSqlParser.KW_RANGE); } } - this.state = 3444; + this.state = 3452; this.definition(); } break; @@ -19070,13 +19076,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3447; + this.state = 3455; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3448; + this.state = 3456; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3449; + this.state = 3457; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3450; + this.state = 3458; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19085,46 +19091,46 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3451; + this.state = 3459; this.anyName(); - this.state = 3452; + this.state = 3460; this.definition(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3454; + this.state = 3462; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3455; + this.state = 3463; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 3457; + this.state = 3465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 395, this.context) ) { case 1: { - this.state = 3456; + this.state = 3464; this.ifNotExists(); } break; } - this.state = 3459; + this.state = 3467; this.anyName(); - this.state = 3463; + this.state = 3471; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3460; + this.state = 3468; this.definition(); } break; case PostgreSqlParser.KW_FROM: { { - this.state = 3461; + this.state = 3469; this.match(PostgreSqlParser.KW_FROM); - this.state = 3462; + this.state = 3470; this.anyName(); } } @@ -19157,27 +19163,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3467; + this.state = 3475; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3468; + this.state = 3476; this.defElem(); - this.state = 3473; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3469; + this.state = 3477; this.match(PostgreSqlParser.COMMA); - this.state = 3470; + this.state = 3478; this.defElem(); } } - this.state = 3475; + this.state = 3483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3476; + this.state = 3484; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -19202,16 +19208,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3478; + this.state = 3486; this.colLabel(); - this.state = 3481; + this.state = 3489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 3479; + this.state = 3487; this.match(PostgreSqlParser.EQUAL); - this.state = 3480; + this.state = 3488; this.defArg(); } } @@ -19236,48 +19242,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new DefArgContext(this.context, this.state); this.enterRule(localContext, 282, PostgreSqlParser.RULE_defArg); try { - this.state = 3489; + this.state = 3497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3483; + this.state = 3491; this.funcType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3484; + this.state = 3492; this.reservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3485; + this.state = 3493; this.qualAllOp(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3486; + this.state = 3494; this.numericOnly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3487; + this.state = 3495; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3488; + this.state = 3496; this.match(PostgreSqlParser.KW_NONE); } break; @@ -19303,11 +19309,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3491; + this.state = 3499; this.identifier(); - this.state = 3492; + this.state = 3500; this.match(PostgreSqlParser.EQUAL); - this.state = 3493; + this.state = 3501; this.defArg(); } } @@ -19330,40 +19336,40 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 286, PostgreSqlParser.RULE_alterEnumStmt); let _la: number; try { - this.state = 3517; + this.state = 3525; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3495; + this.state = 3503; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3496; + this.state = 3504; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3497; + this.state = 3505; this.anyName(); - this.state = 3498; + this.state = 3506; this.match(PostgreSqlParser.KW_ADD); - this.state = 3499; + this.state = 3507; this.match(PostgreSqlParser.KW_VALUE); - this.state = 3501; + this.state = 3509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3500; + this.state = 3508; this.ifNotExists(); } } - this.state = 3503; + this.state = 3511; this.stringConst(); - this.state = 3506; + this.state = 3514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: { - this.state = 3504; + this.state = 3512; _la = this.tokenStream.LA(1); if(!(_la === 135 || _la === 145)) { this.errorHandler.recoverInline(this); @@ -19372,7 +19378,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3505; + this.state = 3513; this.stringConst(); } break; @@ -19382,21 +19388,21 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3508; + this.state = 3516; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3509; + this.state = 3517; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3510; + this.state = 3518; this.anyName(); - this.state = 3511; + this.state = 3519; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3512; + this.state = 3520; this.match(PostgreSqlParser.KW_VALUE); - this.state = 3513; + this.state = 3521; this.stringConst(); - this.state = 3514; + this.state = 3522; this.match(PostgreSqlParser.KW_TO); - this.state = 3515; + this.state = 3523; this.stringConst(); } break; @@ -19422,11 +19428,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3519; + this.state = 3527; this.match(PostgreSqlParser.KW_IF); - this.state = 3520; + this.state = 3528; this.match(PostgreSqlParser.KW_NOT); - this.state = 3521; + this.state = 3529; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -19451,61 +19457,61 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3523; + this.state = 3531; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3524; + this.state = 3532; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3525; + this.state = 3533; this.match(PostgreSqlParser.KW_CLASS); - this.state = 3526; + this.state = 3534; this.anyName(); - this.state = 3528; + this.state = 3536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 3527; + this.state = 3535; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 3530; + this.state = 3538; this.match(PostgreSqlParser.KW_FOR); - this.state = 3531; + this.state = 3539; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3532; + this.state = 3540; this.typename(); - this.state = 3533; + this.state = 3541; this.tableAccessMethodClause(); - this.state = 3536; + this.state = 3544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3534; + this.state = 3542; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3535; + this.state = 3543; this.anyName(); } } - this.state = 3538; + this.state = 3546; this.match(PostgreSqlParser.KW_AS); - this.state = 3539; + this.state = 3547; this.opClassItem(); - this.state = 3544; + this.state = 3552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3540; + this.state = 3548; this.match(PostgreSqlParser.COMMA); - this.state = 3541; + this.state = 3549; this.opClassItem(); } } - this.state = 3546; + this.state = 3554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19530,52 +19536,52 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 292, PostgreSqlParser.RULE_opClassItem); let _la: number; try { - this.state = 3573; + this.state = 3581; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 3547; + this.state = 3555; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3548; + this.state = 3556; this.match(PostgreSqlParser.Integral); - this.state = 3549; + this.state = 3557; this.anyOperator(); - this.state = 3551; + this.state = 3559; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { case 1: { - this.state = 3550; + this.state = 3558; this.operatorArgTypes(); } break; } - this.state = 3560; + this.state = 3568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3553; + this.state = 3561; this.match(PostgreSqlParser.KW_FOR); - this.state = 3558; + this.state = 3566; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEARCH: { - this.state = 3554; + this.state = 3562; this.match(PostgreSqlParser.KW_SEARCH); } break; case PostgreSqlParser.KW_ORDER: { { - this.state = 3555; + this.state = 3563; this.match(PostgreSqlParser.KW_ORDER); - this.state = 3556; + this.state = 3564; this.match(PostgreSqlParser.KW_BY); - this.state = 3557; + this.state = 3565; this.anyName(); } } @@ -19586,12 +19592,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3563; + this.state = 3571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3562; + this.state = 3570; this.match(PostgreSqlParser.KW_RECHECK); } break; @@ -19601,30 +19607,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 2); { - this.state = 3565; + this.state = 3573; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3566; + this.state = 3574; this.match(PostgreSqlParser.Integral); - this.state = 3568; + this.state = 3576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3567; + this.state = 3575; this.prepTypeClause(); } } - this.state = 3570; + this.state = 3578; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 3); { - this.state = 3571; + this.state = 3579; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 3572; + this.state = 3580; this.typename(); } break; @@ -19652,15 +19658,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3575; + this.state = 3583; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3576; + this.state = 3584; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3577; + this.state = 3585; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3578; + this.state = 3586; this.anyName(); - this.state = 3579; + this.state = 3587; this.tableAccessMethodClause(); } } @@ -19685,38 +19691,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3581; + this.state = 3589; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3582; + this.state = 3590; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3583; + this.state = 3591; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3584; + this.state = 3592; this.anyName(); - this.state = 3585; + this.state = 3593; this.tableAccessMethodClause(); - this.state = 3604; + this.state = 3612; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: { - this.state = 3586; + this.state = 3594; this.match(PostgreSqlParser.KW_ADD); - this.state = 3587; + this.state = 3595; this.opClassItem(); - this.state = 3592; + this.state = 3600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3588; + this.state = 3596; this.match(PostgreSqlParser.COMMA); - this.state = 3589; + this.state = 3597; this.opClassItem(); } } - this.state = 3594; + this.state = 3602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19724,23 +19730,23 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DROP: { - this.state = 3595; + this.state = 3603; this.match(PostgreSqlParser.KW_DROP); - this.state = 3596; + this.state = 3604; this.opClassDrop(); - this.state = 3601; + this.state = 3609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3597; + this.state = 3605; this.match(PostgreSqlParser.COMMA); - this.state = 3598; + this.state = 3606; this.opClassDrop(); } } - this.state = 3603; + this.state = 3611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19772,7 +19778,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3606; + this.state = 3614; _la = this.tokenStream.LA(1); if(!(_la === 211 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -19781,9 +19787,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3607; + this.state = 3615; this.match(PostgreSqlParser.Integral); - this.state = 3608; + this.state = 3616; this.prepTypeClause(); } } @@ -19807,17 +19813,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3610; + this.state = 3618; this.match(PostgreSqlParser.KW_REASSIGN); - this.state = 3611; + this.state = 3619; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3612; + this.state = 3620; this.match(PostgreSqlParser.KW_BY); - this.state = 3613; + this.state = 3621; this.roleList(); - this.state = 3614; + this.state = 3622; this.match(PostgreSqlParser.KW_TO); - this.state = 3615; + this.state = 3623; this.roleSpec(); } } @@ -19840,115 +19846,115 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 302, PostgreSqlParser.RULE_dropStmt); let _la: number; try { - this.state = 3824; + this.state = 3832; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3617; + this.state = 3625; this.match(PostgreSqlParser.KW_DROP); - this.state = 3640; + this.state = 3648; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEQUENCE: { - this.state = 3618; + this.state = 3626; this.match(PostgreSqlParser.KW_SEQUENCE); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 3619; + this.state = 3627; this.match(PostgreSqlParser.KW_INDEX); } break; case PostgreSqlParser.KW_COLLATION: { - this.state = 3620; + this.state = 3628; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 3621; + this.state = 3629; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 3622; + this.state = 3630; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3623; + this.state = 3631; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3624; + this.state = 3632; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3625; + this.state = 3633; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3626; + this.state = 3634; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 3627; + this.state = 3635; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3628; + this.state = 3636; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3629; + this.state = 3637; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3631; + this.state = 3639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3630; + this.state = 3638; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3633; + this.state = 3641; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3634; + this.state = 3642; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3635; + this.state = 3643; this.match(PostgreSqlParser.KW_DATA); - this.state = 3636; + this.state = 3644; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_TEXT: { - this.state = 3637; + this.state = 3645; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3638; + this.state = 3646; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3639; + this.state = 3647; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19962,24 +19968,24 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3643; + this.state = 3651; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 3642; + this.state = 3650; this.ifExists(); } break; } - this.state = 3645; + this.state = 3653; this.nameList(); - this.state = 3647; + this.state = 3655; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3646; + this.state = 3654; this.optDropBehavior(); } break; @@ -19989,54 +19995,54 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3649; + this.state = 3657; this.match(PostgreSqlParser.KW_DROP); - this.state = 3651; + this.state = 3659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3650; + this.state = 3658; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3653; + this.state = 3661; this.match(PostgreSqlParser.KW_VIEW); - this.state = 3655; + this.state = 3663; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3654; + this.state = 3662; this.ifExists(); } break; } - this.state = 3657; + this.state = 3665; this.viewName(); - this.state = 3662; + this.state = 3670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3658; + this.state = 3666; this.match(PostgreSqlParser.COMMA); - this.state = 3659; + this.state = 3667; this.viewName(); } } - this.state = 3664; + this.state = 3672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3666; + this.state = 3674; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3665; + this.state = 3673; this.optDropBehavior(); } break; @@ -20046,38 +20052,38 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3668; + this.state = 3676; this.match(PostgreSqlParser.KW_DROP); - this.state = 3670; + this.state = 3678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3669; + this.state = 3677; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3672; + this.state = 3680; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3674; + this.state = 3682; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { - this.state = 3673; + this.state = 3681; this.ifExists(); } break; } - this.state = 3676; + this.state = 3684; this.tableNameList(); - this.state = 3678; + this.state = 3686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 3677; + this.state = 3685; this.optDropBehavior(); } break; @@ -20087,28 +20093,28 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3680; + this.state = 3688; this.match(PostgreSqlParser.KW_DROP); - this.state = 3681; + this.state = 3689; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3683; + this.state = 3691; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3682; + this.state = 3690; this.ifExists(); } break; } - this.state = 3685; + this.state = 3693; this.schemaNameList(); - this.state = 3687; + this.state = 3695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 3686; + this.state = 3694; this.optDropBehavior(); } break; @@ -20118,9 +20124,9 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3689; + this.state = 3697; this.match(PostgreSqlParser.KW_DROP); - this.state = 3690; + this.state = 3698; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -20129,28 +20135,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3692; + this.state = 3700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: { - this.state = 3691; + this.state = 3699; this.ifExists(); } break; } - this.state = 3694; + this.state = 3702; this.colId(); - this.state = 3695; + this.state = 3703; this.match(PostgreSqlParser.KW_ON); - this.state = 3696; + this.state = 3704; this.anyName(); - this.state = 3698; + this.state = 3706; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: { - this.state = 3697; + this.state = 3705; this.optDropBehavior(); } break; @@ -20160,9 +20166,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3700; + this.state = 3708; this.match(PostgreSqlParser.KW_DROP); - this.state = 3701; + this.state = 3709; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -20171,40 +20177,40 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3703; + this.state = 3711; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: { - this.state = 3702; + this.state = 3710; this.ifExists(); } break; } - this.state = 3705; + this.state = 3713; this.typename(); - this.state = 3710; + this.state = 3718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3706; + this.state = 3714; this.match(PostgreSqlParser.COMMA); - this.state = 3707; + this.state = 3715; this.typename(); } } - this.state = 3712; + this.state = 3720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3714; + this.state = 3722; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 3713; + this.state = 3721; this.optDropBehavior(); } break; @@ -20214,30 +20220,30 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3716; + this.state = 3724; this.match(PostgreSqlParser.KW_DROP); - this.state = 3717; + this.state = 3725; this.match(PostgreSqlParser.KW_INDEX); - this.state = 3718; + this.state = 3726; this.match(PostgreSqlParser.KW_CONCURRENTLY); - this.state = 3720; + this.state = 3728; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3719; + this.state = 3727; this.ifExists(); } break; } - this.state = 3722; + this.state = 3730; this.anyNameList(); - this.state = 3724; + this.state = 3732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: { - this.state = 3723; + this.state = 3731; this.optDropBehavior(); } break; @@ -20247,36 +20253,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3726; + this.state = 3734; this.match(PostgreSqlParser.KW_DROP); - this.state = 3727; + this.state = 3735; this.match(PostgreSqlParser.KW_CAST); - this.state = 3729; + this.state = 3737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3728; + this.state = 3736; this.ifExists(); } } - this.state = 3731; + this.state = 3739; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3732; + this.state = 3740; this.typename(); - this.state = 3733; + this.state = 3741; this.match(PostgreSqlParser.KW_AS); - this.state = 3734; + this.state = 3742; this.typename(); - this.state = 3735; + this.state = 3743; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3737; + this.state = 3745; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3736; + this.state = 3744; this.optDropBehavior(); } break; @@ -20286,11 +20292,11 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3739; + this.state = 3747; this.match(PostgreSqlParser.KW_DROP); - this.state = 3740; + this.state = 3748; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3741; + this.state = 3749; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -20299,26 +20305,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3743; + this.state = 3751; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3742; + this.state = 3750; this.ifExists(); } break; } - this.state = 3745; + this.state = 3753; this.anyName(); - this.state = 3746; + this.state = 3754; this.tableAccessMethodClause(); - this.state = 3748; + this.state = 3756; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3747; + this.state = 3755; this.optDropBehavior(); } break; @@ -20328,20 +20334,20 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3750; + this.state = 3758; this.match(PostgreSqlParser.KW_DROP); - this.state = 3751; + this.state = 3759; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3752; + this.state = 3760; this.match(PostgreSqlParser.KW_BY); - this.state = 3753; + this.state = 3761; this.roleList(); - this.state = 3755; + this.state = 3763; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3754; + this.state = 3762; this.optDropBehavior(); } break; @@ -20351,28 +20357,28 @@ export class PostgreSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3757; + this.state = 3765; this.match(PostgreSqlParser.KW_DROP); - this.state = 3758; + this.state = 3766; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 3760; + this.state = 3768; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3759; + this.state = 3767; this.ifExists(); } break; } - this.state = 3762; + this.state = 3770; this.colId(); - this.state = 3764; + this.state = 3772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3763; + this.state = 3771; this.optDropBehavior(); } break; @@ -20382,55 +20388,55 @@ export class PostgreSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3766; + this.state = 3774; this.match(PostgreSqlParser.KW_DROP); - this.state = 3767; + this.state = 3775; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 3769; + this.state = 3777; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 3768; + this.state = 3776; this.ifExists(); } break; } - this.state = 3771; + this.state = 3779; this.tableSpaceName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3772; + this.state = 3780; this.match(PostgreSqlParser.KW_DROP); - this.state = 3773; + this.state = 3781; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 3775; + this.state = 3783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3774; + this.state = 3782; this.ifExists(); } } - this.state = 3777; + this.state = 3785; this.match(PostgreSqlParser.KW_FOR); - this.state = 3778; + this.state = 3786; this.typename(); - this.state = 3779; + this.state = 3787; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3780; + this.state = 3788; this.colId(); - this.state = 3782; + this.state = 3790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3781; + this.state = 3789; this.optDropBehavior(); } break; @@ -20440,9 +20446,9 @@ export class PostgreSqlParser extends SQLParserBase { case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3784; + this.state = 3792; this.match(PostgreSqlParser.KW_DROP); - this.state = 3785; + this.state = 3793; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -20451,42 +20457,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3787; + this.state = 3795; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3786; + this.state = 3794; this.ifExists(); } break; } - this.state = 3789; + this.state = 3797; this.roleList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3790; + this.state = 3798; this.match(PostgreSqlParser.KW_DROP); - this.state = 3791; + this.state = 3799; this.match(PostgreSqlParser.KW_USER); - this.state = 3792; + this.state = 3800; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3794; + this.state = 3802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3793; + this.state = 3801; this.ifExists(); } } - this.state = 3796; + this.state = 3804; this.match(PostgreSqlParser.KW_FOR); - this.state = 3799; + this.state = 3807; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -20908,81 +20914,81 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3797; + this.state = 3805; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3798; + this.state = 3806; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3801; + this.state = 3809; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3802; + this.state = 3810; this.colId(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3803; + this.state = 3811; this.match(PostgreSqlParser.KW_DROP); - this.state = 3804; + this.state = 3812; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 3806; + this.state = 3814; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3805; + this.state = 3813; this.ifExists(); } break; } - this.state = 3808; + this.state = 3816; this.databaseName(); - this.state = 3822; + this.state = 3830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3810; + this.state = 3818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3809; + this.state = 3817; this.match(PostgreSqlParser.KW_WITH); } } { - this.state = 3812; + this.state = 3820; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3813; + this.state = 3821; this.match(PostgreSqlParser.KW_FORCE); - this.state = 3818; + this.state = 3826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3814; + this.state = 3822; this.match(PostgreSqlParser.COMMA); - this.state = 3815; + this.state = 3823; this.match(PostgreSqlParser.KW_FORCE); } } - this.state = 3820; + this.state = 3828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3821; + this.state = 3829; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -21011,26 +21017,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 304, PostgreSqlParser.RULE_objectTypeAnyName); let _la: number; try { - this.state = 3842; + this.state = 3850; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 3827; + this.state = 3835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3826; + this.state = 3834; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3829; + this.state = 3837; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3830; + this.state = 3838; this.tableName(); } break; @@ -21038,19 +21044,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VIEW: this.enterOuterAlt(localContext, 2); { - this.state = 3832; + this.state = 3840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3831; + this.state = 3839; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3834; + this.state = 3842; this.match(PostgreSqlParser.KW_VIEW); - this.state = 3835; + this.state = 3843; this.viewName(); } break; @@ -21061,7 +21067,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_STATISTICS: this.enterOuterAlt(localContext, 3); { - this.state = 3836; + this.state = 3844; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 226 || _la === 328 || _la === 342)) { this.errorHandler.recoverInline(this); @@ -21070,18 +21076,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3837; + this.state = 3845; this.anyName(); } break; case PostgreSqlParser.KW_TEXT: this.enterOuterAlt(localContext, 4); { - this.state = 3838; + this.state = 3846; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3839; + this.state = 3847; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3840; + this.state = 3848; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -21090,7 +21096,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3841; + this.state = 3849; this.anyName(); } break; @@ -21117,7 +21123,7 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 306, PostgreSqlParser.RULE_objectTypeName); let _la: number; try { - this.state = 3868; + this.state = 3876; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: @@ -21132,111 +21138,111 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_PUBLICATION: this.enterOuterAlt(localContext, 1); { - this.state = 3860; + this.state = 3868; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EVENT: { - this.state = 3844; + this.state = 3852; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3845; + this.state = 3853; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3846; + this.state = 3854; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3847; + this.state = 3855; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3848; + this.state = 3856; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3849; + this.state = 3857; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3850; + this.state = 3858; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ROLE: { - this.state = 3851; + this.state = 3859; this.match(PostgreSqlParser.KW_ROLE); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 3852; + this.state = 3860; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3853; + this.state = 3861; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3854; + this.state = 3862; this.match(PostgreSqlParser.KW_DATA); - this.state = 3855; + this.state = 3863; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3857; + this.state = 3865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3856; + this.state = 3864; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3859; + this.state = 3867; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3862; + this.state = 3870; this.colId(); } break; case PostgreSqlParser.KW_SCHEMA: this.enterOuterAlt(localContext, 2); { - this.state = 3863; + this.state = 3871; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3864; + this.state = 3872; this.schemaName(); } break; case PostgreSqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 3); { - this.state = 3865; + this.state = 3873; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 3866; + this.state = 3874; this.databaseName(); } break; case PostgreSqlParser.KW_TABLESPACE: this.enterOuterAlt(localContext, 4); { - this.state = 3867; + this.state = 3875; this.optTableSpace(); } break; @@ -21265,21 +21271,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3870; + this.state = 3878; this.anyName(); - this.state = 3875; + this.state = 3883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3871; + this.state = 3879; this.match(PostgreSqlParser.COMMA); - this.state = 3872; + this.state = 3880; this.anyName(); } } - this.state = 3877; + this.state = 3885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21305,14 +21311,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3886; this.colId(); - this.state = 3880; + this.state = 3888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: { - this.state = 3879; + this.state = 3887; this.attrs(); } break; @@ -21340,7 +21346,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3884; + this.state = 3892; this.errorHandler.sync(this); alternative = 1; do { @@ -21348,9 +21354,9 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 3882; + this.state = 3890; this.match(PostgreSqlParser.DOT); - this.state = 3883; + this.state = 3891; this.colLabel(); } } @@ -21358,7 +21364,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3886; + this.state = 3894; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 462, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -21385,42 +21391,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3888; + this.state = 3896; this.match(PostgreSqlParser.KW_TRUNCATE); - this.state = 3890; + this.state = 3898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 3889; + this.state = 3897; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 3892; + this.state = 3900; this.truncateTable(); - this.state = 3897; + this.state = 3905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3893; + this.state = 3901; this.match(PostgreSqlParser.COMMA); - this.state = 3894; + this.state = 3902; this.truncateTable(); } } - this.state = 3899; + this.state = 3907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3902; + this.state = 3910; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3900; + this.state = 3908; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 314)) { this.errorHandler.recoverInline(this); @@ -21429,17 +21435,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3901; + this.state = 3909; this.match(PostgreSqlParser.KW_IDENTITY); } break; } - this.state = 3905; + this.state = 3913; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3904; + this.state = 3912; this.optDropBehavior(); } break; @@ -21467,24 +21473,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3908; + this.state = 3916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 3907; + this.state = 3915; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 3910; + this.state = 3918; this.tableName(); - this.state = 3912; + this.state = 3920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 3911; + this.state = 3919; this.match(PostgreSqlParser.STAR); } } @@ -21512,52 +21518,52 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3914; + this.state = 3922; this.match(PostgreSqlParser.KW_COMMENT); - this.state = 3915; + this.state = 3923; this.match(PostgreSqlParser.KW_ON); - this.state = 3974; + this.state = 3982; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3916; + this.state = 3924; this.objectTypeAnyName(); } break; case 2: { - this.state = 3917; + this.state = 3925; this.objectTypeName(); } break; case 3: { - this.state = 3918; + this.state = 3926; this.match(PostgreSqlParser.KW_COLUMN); { - this.state = 3919; + this.state = 3927; this.colId(); - this.state = 3921; + this.state = 3929; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3920; + this.state = 3928; this.attrs(); } break; } } - this.state = 3923; + this.state = 3931; this.match(PostgreSqlParser.DOT); - this.state = 3924; + this.state = 3932; this.columnName(); } break; case 4: { - this.state = 3926; + this.state = 3934; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21566,65 +21572,65 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3927; + this.state = 3935; this.typename(); } break; case 5: { - this.state = 3928; + this.state = 3936; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3929; + this.state = 3937; this.aggregateWithArgTypes(); } break; case 6: { - this.state = 3930; + this.state = 3938; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3931; + this.state = 3939; this.functionWithArgTypes(); } break; case 7: { - this.state = 3932; + this.state = 3940; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3933; + this.state = 3941; this.operatorWithArgTypes(); } break; case 8: { - this.state = 3934; + this.state = 3942; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 3935; + this.state = 3943; this.colId(); - this.state = 3936; + this.state = 3944; this.match(PostgreSqlParser.KW_ON); - this.state = 3942; + this.state = 3950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3937; + this.state = 3945; this.tableName(); } break; case 2: { { - this.state = 3939; + this.state = 3947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3938; + this.state = 3946; this.match(PostgreSqlParser.KW_DOMAIN); } break; } - this.state = 3941; + this.state = 3949; this.anyName(); } } @@ -21634,7 +21640,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 9: { - this.state = 3944; + this.state = 3952; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -21643,49 +21649,49 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3945; + this.state = 3953; this.colId(); - this.state = 3946; + this.state = 3954; this.match(PostgreSqlParser.KW_ON); - this.state = 3947; + this.state = 3955; this.anyName(); } break; case 10: { - this.state = 3949; + this.state = 3957; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3950; + this.state = 3958; this.procedureWithArgTypes(); } break; case 11: { - this.state = 3951; + this.state = 3959; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 3952; + this.state = 3960; this.routineWithArgTypes(); } break; case 12: { - this.state = 3953; + this.state = 3961; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 3954; + this.state = 3962; this.match(PostgreSqlParser.KW_FOR); - this.state = 3955; + this.state = 3963; this.typename(); - this.state = 3956; + this.state = 3964; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3957; + this.state = 3965; this.colId(); } break; case 13: { - this.state = 3959; + this.state = 3967; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3960; + this.state = 3968; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -21694,42 +21700,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3961; + this.state = 3969; this.anyName(); - this.state = 3962; + this.state = 3970; this.tableAccessMethodClause(); } break; case 14: { - this.state = 3964; + this.state = 3972; this.match(PostgreSqlParser.KW_LARGE); - this.state = 3965; + this.state = 3973; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 3966; + this.state = 3974; this.numericOnly(); } break; case 15: { - this.state = 3967; + this.state = 3975; this.match(PostgreSqlParser.KW_CAST); - this.state = 3968; + this.state = 3976; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3969; + this.state = 3977; this.typename(); - this.state = 3970; + this.state = 3978; this.match(PostgreSqlParser.KW_AS); - this.state = 3971; + this.state = 3979; this.typename(); - this.state = 3972; + this.state = 3980; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 3976; + this.state = 3984; this.match(PostgreSqlParser.KW_IS); - this.state = 3979; + this.state = 3987; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21737,13 +21743,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3977; + this.state = 3985; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 3978; + this.state = 3986; this.match(PostgreSqlParser.KW_NULL); } break; @@ -21773,30 +21779,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3981; + this.state = 3989; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3982; + this.state = 3990; this.match(PostgreSqlParser.KW_LABEL); - this.state = 3985; + this.state = 3993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3983; + this.state = 3991; this.match(PostgreSqlParser.KW_FOR); - this.state = 3984; + this.state = 3992; this.nonReservedWordOrStringConst(); } } - this.state = 3987; + this.state = 3995; this.match(PostgreSqlParser.KW_ON); - this.state = 4005; + this.state = 4013; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 3988; + this.state = 3996; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21805,76 +21811,76 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3989; + this.state = 3997; this.typename(); } break; case 2: { - this.state = 3990; + this.state = 3998; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3991; + this.state = 3999; this.aggregateWithArgTypes(); } break; case 3: { - this.state = 3992; + this.state = 4000; this.match(PostgreSqlParser.KW_COLUMN); - this.state = 3993; + this.state = 4001; this.columnName(); } break; case 4: { - this.state = 3994; + this.state = 4002; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3995; + this.state = 4003; this.functionWithArgTypes(); } break; case 5: { - this.state = 3996; + this.state = 4004; this.match(PostgreSqlParser.KW_LARGE); - this.state = 3997; + this.state = 4005; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 3998; + this.state = 4006; this.numericOnly(); } break; case 6: { - this.state = 3999; + this.state = 4007; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4000; + this.state = 4008; this.procedureWithArgTypes(); } break; case 7: { - this.state = 4001; + this.state = 4009; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4002; + this.state = 4010; this.routineWithArgTypes(); } break; case 8: { - this.state = 4003; + this.state = 4011; this.objectTypeAnyName(); } break; case 9: { - this.state = 4004; + this.state = 4012; this.objectTypeName(); } break; } - this.state = 4007; + this.state = 4015; this.match(PostgreSqlParser.KW_IS); - this.state = 4010; + this.state = 4018; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21882,13 +21888,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4008; + this.state = 4016; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 4009; + this.state = 4017; this.match(PostgreSqlParser.KW_NULL); } break; @@ -21918,7 +21924,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4012; + this.state = 4020; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 265)) { this.errorHandler.recoverInline(this); @@ -21927,7 +21933,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4013; + this.state = 4021; this.fetch_args(); } } @@ -21950,18 +21956,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 324, PostgreSqlParser.RULE_fetch_args); let _la: number; try { - this.state = 4058; + this.state = 4066; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 4015; + this.state = 4023; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249 || _la === 268 || _la === 293)) { this.errorHandler.recoverInline(this); @@ -21973,29 +21979,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4019; + this.state = 4027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4018; + this.state = 4026; this.fromIn(); } } - this.state = 4021; + this.state = 4029; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4023; + this.state = 4031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130 || _la === 307) { { - this.state = 4022; + this.state = 4030; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -22007,86 +22013,86 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4025; + this.state = 4033; this.signedConst(); - this.state = 4027; + this.state = 4035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4026; + this.state = 4034; this.fromIn(); } } - this.state = 4029; + this.state = 4037; this.colId(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4031; + this.state = 4039; this.match(PostgreSqlParser.KW_FORWARD); - this.state = 4033; + this.state = 4041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574) { { - this.state = 4032; + this.state = 4040; this.signedConst(); } } - this.state = 4036; + this.state = 4044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4035; + this.state = 4043; this.fromIn(); } } - this.state = 4038; + this.state = 4046; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4040; + this.state = 4048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 4039; + this.state = 4047; this.match(PostgreSqlParser.KW_FORWARD); } } - this.state = 4042; + this.state = 4050; this.match(PostgreSqlParser.KW_ALL); - this.state = 4044; + this.state = 4052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4043; + this.state = 4051; this.fromIn(); } } - this.state = 4046; + this.state = 4054; this.colId(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4047; + this.state = 4055; this.match(PostgreSqlParser.KW_BACKWARD); - this.state = 4052; + this.state = 4060; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -22487,12 +22493,12 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4049; + this.state = 4057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 4048; + this.state = 4056; this.match(PostgreSqlParser.KW_ALL); } } @@ -22503,24 +22509,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.MINUS: case PostgreSqlParser.Integral: { - this.state = 4051; + this.state = 4059; this.signedConst(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4055; + this.state = 4063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4054; + this.state = 4062; this.fromIn(); } } - this.state = 4057; + this.state = 4065; this.colId(); } break; @@ -22547,7 +22553,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4060; + this.state = 4068; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 68)) { this.errorHandler.recoverInline(this); @@ -22578,28 +22584,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4062; + this.state = 4070; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4063; + this.state = 4071; this.privileges(); - this.state = 4064; + this.state = 4072; this.match(PostgreSqlParser.KW_ON); - this.state = 4065; + this.state = 4073; this.privilegeTarget(); - this.state = 4066; + this.state = 4074; this.match(PostgreSqlParser.KW_TO); - this.state = 4067; + this.state = 4075; this.granteeList(); - this.state = 4071; + this.state = 4079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 4068; + this.state = 4076; this.match(PostgreSqlParser.KW_WITH); - this.state = 4069; + this.state = 4077; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4070; + this.state = 4078; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -22627,38 +22633,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4073; + this.state = 4081; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4077; + this.state = 4085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4074; + this.state = 4082; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4075; + this.state = 4083; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4076; + this.state = 4084; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4079; + this.state = 4087; this.privileges(); - this.state = 4080; + this.state = 4088; this.match(PostgreSqlParser.KW_ON); - this.state = 4081; + this.state = 4089; this.privilegeTarget(); - this.state = 4082; + this.state = 4090; this.match(PostgreSqlParser.KW_FROM); - this.state = 4083; + this.state = 4091; this.granteeList(); - this.state = 4085; + this.state = 4093; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 4084; + this.state = 4092; this.optDropBehavior(); } break; @@ -22684,27 +22690,27 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 332, PostgreSqlParser.RULE_privileges); let _la: number; try { - this.state = 4110; + this.state = 4118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4087; + this.state = 4095; this.privilege(); - this.state = 4092; + this.state = 4100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4088; + this.state = 4096; this.match(PostgreSqlParser.COMMA); - this.state = 4089; + this.state = 4097; this.privilege(); } } - this.state = 4094; + this.state = 4102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22713,24 +22719,24 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4095; + this.state = 4103; this.match(PostgreSqlParser.KW_ALL); - this.state = 4097; + this.state = 4105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 294) { { - this.state = 4096; + this.state = 4104; this.match(PostgreSqlParser.KW_PRIVILEGES); } } - this.state = 4100; + this.state = 4108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4099; + this.state = 4107; this.optColumnList(); } } @@ -22740,21 +22746,21 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4102; + this.state = 4110; this.beforePrivilegeSelect(); - this.state = 4107; + this.state = 4115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4103; + this.state = 4111; this.match(PostgreSqlParser.COMMA); - this.state = 4104; + this.state = 4112; this.beforePrivilegeSelect(); } } - this.state = 4109; + this.state = 4117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22783,7 +22789,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4112; + this.state = 4120; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 88 || _la === 182 || _la === 202 || _la === 241 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 131173) !== 0) || ((((_la - 521)) & ~0x1F) === 0 && ((1 << (_la - 521)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -22815,24 +22821,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4118; + this.state = 4126; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 4114; + this.state = 4122; this.match(PostgreSqlParser.KW_SELECT); } break; case PostgreSqlParser.KW_REFERENCES: { - this.state = 4115; + this.state = 4123; this.match(PostgreSqlParser.KW_REFERENCES); } break; case PostgreSqlParser.KW_CREATE: { - this.state = 4116; + this.state = 4124; this.match(PostgreSqlParser.KW_CREATE); } break; @@ -23231,19 +23237,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4117; + this.state = 4125; this.colId(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4121; + this.state = 4129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4120; + this.state = 4128; this.optColumnList(); } } @@ -23269,59 +23275,59 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 338, PostgreSqlParser.RULE_privilegeTarget); let _la: number; try { - this.state = 4168; + this.state = 4176; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4123; + this.state = 4131; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4124; + this.state = 4132; this.tableNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4126; + this.state = 4134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: { - this.state = 4125; + this.state = 4133; this.match(PostgreSqlParser.KW_SEQUENCE); } break; } - this.state = 4128; + this.state = 4136; this.qualifiedNameList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4136; + this.state = 4144; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4129; + this.state = 4137; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 4133; + this.state = 4141; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 4130; + this.state = 4138; this.match(PostgreSqlParser.KW_DATA); - this.state = 4131; + this.state = 4139; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4132; + this.state = 4140; this.match(PostgreSqlParser.KW_SERVER); } break; @@ -23332,57 +23338,57 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4135; + this.state = 4143; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4138; + this.state = 4146; this.nameList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4139; + this.state = 4147; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4140; + this.state = 4148; this.functionWithArgTypesList(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4141; + this.state = 4149; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4142; + this.state = 4150; this.procedureWithArgTypesList(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4143; + this.state = 4151; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4144; + this.state = 4152; this.routineWithArgTypesList(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4145; + this.state = 4153; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4146; + this.state = 4154; this.databaseNameList(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4147; + this.state = 4155; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23391,32 +23397,32 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4148; + this.state = 4156; this.anyNameList(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4149; + this.state = 4157; this.match(PostgreSqlParser.KW_LARGE); - this.state = 4150; + this.state = 4158; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 4151; + this.state = 4159; this.numericOnly(); - this.state = 4156; + this.state = 4164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4152; + this.state = 4160; this.match(PostgreSqlParser.COMMA); - this.state = 4153; + this.state = 4161; this.numericOnly(); } } - this.state = 4158; + this.state = 4166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23425,27 +23431,27 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4159; + this.state = 4167; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4160; + this.state = 4168; this.schemaNameList(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4161; + this.state = 4169; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 4162; + this.state = 4170; this.tableSpaceNameList(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4163; + this.state = 4171; this.match(PostgreSqlParser.KW_ALL); - this.state = 4164; + this.state = 4172; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 455 || _la === 457)) { this.errorHandler.recoverInline(this); @@ -23454,11 +23460,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4165; + this.state = 4173; this.match(PostgreSqlParser.KW_IN); - this.state = 4166; + this.state = 4174; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4167; + this.state = 4175; this.schemaNameList(); } break; @@ -23486,44 +23492,44 @@ export class PostgreSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 4171; + this.state = 4179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4170; + this.state = 4178; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4173; + this.state = 4181; this.roleSpec(); } - this.state = 4182; + this.state = 4190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4175; + this.state = 4183; this.match(PostgreSqlParser.COMMA); { - this.state = 4177; + this.state = 4185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4176; + this.state = 4184; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4179; + this.state = 4187; this.roleSpec(); } } } - this.state = 4184; + this.state = 4192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23550,54 +23556,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4185; + this.state = 4193; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4186; + this.state = 4194; this.privilege(); - this.state = 4191; + this.state = 4199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4187; + this.state = 4195; this.match(PostgreSqlParser.COMMA); - this.state = 4188; + this.state = 4196; this.privilege(); } } - this.state = 4193; + this.state = 4201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4194; + this.state = 4202; this.match(PostgreSqlParser.KW_TO); - this.state = 4195; + this.state = 4203; this.roleList(); - this.state = 4199; + this.state = 4207; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: { - this.state = 4196; + this.state = 4204; this.match(PostgreSqlParser.KW_WITH); - this.state = 4197; + this.state = 4205; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4198; + this.state = 4206; this.match(PostgreSqlParser.KW_OPTION); } break; } - this.state = 4204; + this.state = 4212; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: { - this.state = 4201; + this.state = 4209; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4202; + this.state = 4210; this.match(PostgreSqlParser.KW_BY); - this.state = 4203; + this.state = 4211; this.roleSpec(); } break; @@ -23625,64 +23631,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4206; + this.state = 4214; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4210; + this.state = 4218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 4207; + this.state = 4215; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4208; + this.state = 4216; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4209; + this.state = 4217; this.match(PostgreSqlParser.KW_FOR); } break; } - this.state = 4212; + this.state = 4220; this.privilege(); - this.state = 4217; + this.state = 4225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4213; + this.state = 4221; this.match(PostgreSqlParser.COMMA); - this.state = 4214; + this.state = 4222; this.privilege(); } } - this.state = 4219; + this.state = 4227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4220; + this.state = 4228; this.match(PostgreSqlParser.KW_FROM); - this.state = 4221; + this.state = 4229; this.roleList(); - this.state = 4225; + this.state = 4233; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { case 1: { - this.state = 4222; + this.state = 4230; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4223; + this.state = 4231; this.match(PostgreSqlParser.KW_BY); - this.state = 4224; + this.state = 4232; this.roleSpec(); } break; } - this.state = 4228; + this.state = 4236; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 4227; + this.state = 4235; this.optDropBehavior(); } break; @@ -23710,35 +23716,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4230; + this.state = 4238; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4231; + this.state = 4239; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 4232; + this.state = 4240; this.match(PostgreSqlParser.KW_PRIVILEGES); - this.state = 4241; + this.state = 4249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 62 || _la === 68) { { - this.state = 4239; + this.state = 4247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: { - this.state = 4233; + this.state = 4241; this.match(PostgreSqlParser.KW_IN); - this.state = 4234; + this.state = 4242; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4235; + this.state = 4243; this.schemaNameList(); } break; case PostgreSqlParser.KW_FOR: { - this.state = 4236; + this.state = 4244; this.match(PostgreSqlParser.KW_FOR); - this.state = 4237; + this.state = 4245; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -23747,7 +23753,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4238; + this.state = 4246; this.roleList(); } break; @@ -23755,11 +23761,11 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4243; + this.state = 4251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4244; + this.state = 4252; this.defaclaction(); } } @@ -23782,34 +23788,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 348, PostgreSqlParser.RULE_defaclaction); let _la: number; try { - this.state = 4271; + this.state = 4279; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_GRANT: this.enterOuterAlt(localContext, 1); { - this.state = 4246; + this.state = 4254; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4247; + this.state = 4255; this.privileges(); - this.state = 4248; + this.state = 4256; this.match(PostgreSqlParser.KW_ON); - this.state = 4249; + this.state = 4257; this.defaclPrivilegeTarget(); - this.state = 4250; + this.state = 4258; this.match(PostgreSqlParser.KW_TO); - this.state = 4251; + this.state = 4259; this.granteeList(); - this.state = 4255; + this.state = 4263; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: { - this.state = 4252; + this.state = 4260; this.match(PostgreSqlParser.KW_WITH); - this.state = 4253; + this.state = 4261; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4254; + this.state = 4262; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -23819,38 +23825,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REVOKE: this.enterOuterAlt(localContext, 2); { - this.state = 4257; + this.state = 4265; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4261; + this.state = 4269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4258; + this.state = 4266; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4259; + this.state = 4267; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4260; + this.state = 4268; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4263; + this.state = 4271; this.privileges(); - this.state = 4264; + this.state = 4272; this.match(PostgreSqlParser.KW_ON); - this.state = 4265; + this.state = 4273; this.defaclPrivilegeTarget(); - this.state = 4266; + this.state = 4274; this.match(PostgreSqlParser.KW_FROM); - this.state = 4267; + this.state = 4275; this.granteeList(); - this.state = 4269; + this.state = 4277; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 518, this.context) ) { case 1: { - this.state = 4268; + this.state = 4276; this.optDropBehavior(); } break; @@ -23882,7 +23888,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4273; + this.state = 4281; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 361 || _la === 455 || _la === 456)) { this.errorHandler.recoverInline(this); @@ -23914,126 +23920,126 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4275; + this.state = 4283; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4277; + this.state = 4285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98) { { - this.state = 4276; + this.state = 4284; this.match(PostgreSqlParser.KW_UNIQUE); } } - this.state = 4279; + this.state = 4287; this.match(PostgreSqlParser.KW_INDEX); - this.state = 4281; + this.state = 4289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4280; + this.state = 4288; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4284; + this.state = 4292; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 4283; + this.state = 4291; this.ifNotExists(); } break; } - this.state = 4287; + this.state = 4295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4286; + this.state = 4294; this.colId(); } } - this.state = 4289; + this.state = 4297; this.match(PostgreSqlParser.KW_ON); - this.state = 4290; + this.state = 4298; this.relationExpr(); - this.state = 4292; + this.state = 4300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4291; + this.state = 4299; this.tableAccessMethodClause(); } } - this.state = 4294; + this.state = 4302; this.indexParams(); - this.state = 4297; + this.state = 4305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { case 1: { - this.state = 4295; + this.state = 4303; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 4296; + this.state = 4304; this.indexParams(); } break; } - this.state = 4304; + this.state = 4312; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: { - this.state = 4299; + this.state = 4307; this.match(PostgreSqlParser.KW_NULLS); - this.state = 4301; + this.state = 4309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 4300; + this.state = 4308; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 4303; + this.state = 4311; this.match(PostgreSqlParser.KW_DISTINCT); } break; } - this.state = 4307; + this.state = 4315; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: { - this.state = 4306; + this.state = 4314; this.optRelOptions(); } break; } - this.state = 4310; + this.state = 4318; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { case 1: { - this.state = 4309; + this.state = 4317; this.optTableSpace(); } break; } - this.state = 4313; + this.state = 4321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 4312; + this.state = 4320; this.whereClause(); } } @@ -24061,27 +24067,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4315; + this.state = 4323; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4316; + this.state = 4324; this.indexElem(); - this.state = 4321; + this.state = 4329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4317; + this.state = 4325; this.match(PostgreSqlParser.COMMA); - this.state = 4318; + this.state = 4326; this.indexElem(); } } - this.state = 4323; + this.state = 4331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4324; + this.state = 4332; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24106,53 +24112,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4332; + this.state = 4340; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: { - this.state = 4326; + this.state = 4334; this.columnName(); } break; case 2: { - this.state = 4327; + this.state = 4335; this.funcExprWindowless(); } break; case 3: { - this.state = 4328; + this.state = 4336; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4329; + this.state = 4337; this.expression(); - this.state = 4330; + this.state = 4338; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 4335; + this.state = 4343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 4334; + this.state = 4342; this.collateClause(); } } - this.state = 4343; + this.state = 4351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 535, this.context) ) { case 1: { - this.state = 4338; + this.state = 4346; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { case 1: { - this.state = 4337; + this.state = 4345; this.anyName(); } break; @@ -24161,19 +24167,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4340; + this.state = 4348; this.anyName(); - this.state = 4341; + this.state = 4349; this.relOptions(); } break; } - this.state = 4346; + this.state = 4354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 4345; + this.state = 4353; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -24185,14 +24191,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4350; + this.state = 4358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 4348; + this.state = 4356; this.match(PostgreSqlParser.KW_NULLS); - this.state = 4349; + this.state = 4357; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -24228,34 +24234,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4352; + this.state = 4360; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4354; + this.state = 4362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4353; + this.state = 4361; this.orReplaceOpt(); } } - this.state = 4360; + this.state = 4368; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4356; + this.state = 4364; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4357; + this.state = 4365; this.functionNameCreate(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4358; + this.state = 4366; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4359; + this.state = 4367; this.procedureNameCreate(); } break; @@ -24263,45 +24269,45 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } { - this.state = 4362; + this.state = 4370; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4371; + this.state = 4379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4363; + this.state = 4371; this.funcArgWithDefault(); - this.state = 4368; + this.state = 4376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4364; + this.state = 4372; this.match(PostgreSqlParser.COMMA); - this.state = 4365; + this.state = 4373; this.funcArgWithDefault(); } } - this.state = 4370; + this.state = 4378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4373; + this.state = 4381; this.match(PostgreSqlParser.CLOSE_PAREN); } - this.state = 4391; + this.state = 4399; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 4375; + this.state = 4383; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4389; + this.state = 4397; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -24720,36 +24726,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4376; + this.state = 4384; this.funcType(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4377; + this.state = 4385; this.match(PostgreSqlParser.KW_TABLE); { - this.state = 4378; + this.state = 4386; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4379; + this.state = 4387; this.tableFuncColumn(); - this.state = 4384; + this.state = 4392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4380; + this.state = 4388; this.match(PostgreSqlParser.COMMA); - this.state = 4381; + this.state = 4389; this.tableFuncColumn(); } } - this.state = 4386; + this.state = 4394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4387; + this.state = 4395; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24760,7 +24766,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4394; + this.state = 4402; this.errorHandler.sync(this); alternative = 1; do { @@ -24768,7 +24774,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4393; + this.state = 4401; this.createFuncOptItem(); } } @@ -24776,22 +24782,22 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4396; + this.state = 4404; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4403; + this.state = 4411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 4398; + this.state = 4406; this.match(PostgreSqlParser.KW_WITH); - this.state = 4399; + this.state = 4407; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4400; + this.state = 4408; this.nameList(); - this.state = 4401; + this.state = 4409; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -24818,9 +24824,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4405; + this.state = 4413; this.match(PostgreSqlParser.KW_OR); - this.state = 4406; + this.state = 4414; this.match(PostgreSqlParser.KW_REPLACE); } } @@ -24845,19 +24851,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4408; + this.state = 4416; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4410; + this.state = 4418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4409; + this.state = 4417; this.funcArgsList(); } } - this.state = 4412; + this.state = 4420; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24882,21 +24888,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4414; + this.state = 4422; this.funcArg(); - this.state = 4419; + this.state = 4427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4415; + this.state = 4423; this.match(PostgreSqlParser.COMMA); - this.state = 4416; + this.state = 4424; this.funcArg(); } } - this.state = 4421; + this.state = 4429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24923,21 +24929,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4422; + this.state = 4430; this.routineWithArgTypes(); - this.state = 4427; + this.state = 4435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4423; + this.state = 4431; this.match(PostgreSqlParser.COMMA); - this.state = 4424; + this.state = 4432; this.routineWithArgTypes(); } } - this.state = 4429; + this.state = 4437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24961,29 +24967,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RoutineWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 368, PostgreSqlParser.RULE_routineWithArgTypes); try { - this.state = 4435; + this.state = 4443; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4430; + this.state = 4438; this.routineName(); - this.state = 4431; + this.state = 4439; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4433; + this.state = 4441; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4434; + this.state = 4442; this.qualifiedName(); } break; @@ -25010,21 +25016,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4437; + this.state = 4445; this.procedureWithArgTypes(); - this.state = 4442; + this.state = 4450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4438; + this.state = 4446; this.match(PostgreSqlParser.COMMA); - this.state = 4439; + this.state = 4447; this.procedureWithArgTypes(); } } - this.state = 4444; + this.state = 4452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25048,29 +25054,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 372, PostgreSqlParser.RULE_procedureWithArgTypes); try { - this.state = 4450; + this.state = 4458; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4445; + this.state = 4453; this.procedureName(); - this.state = 4446; + this.state = 4454; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4448; + this.state = 4456; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4449; + this.state = 4457; this.qualifiedName(); } break; @@ -25097,21 +25103,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4452; + this.state = 4460; this.functionWithArgTypes(); - this.state = 4457; + this.state = 4465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4453; + this.state = 4461; this.match(PostgreSqlParser.COMMA); - this.state = 4454; + this.state = 4462; this.functionWithArgTypes(); } } - this.state = 4459; + this.state = 4467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25135,29 +25141,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 376, PostgreSqlParser.RULE_functionWithArgTypes); try { - this.state = 4465; + this.state = 4473; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4460; + this.state = 4468; this.functionName(); - this.state = 4461; + this.state = 4469; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4463; + this.state = 4471; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4464; + this.state = 4472; this.qualifiedName(); } break; @@ -25183,19 +25189,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4475; + this.state = 4483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 4467; + this.state = 4475; this.argClass(); - this.state = 4469; + this.state = 4477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: { - this.state = 4468; + this.state = 4476; this.typeFunctionName(); } break; @@ -25204,14 +25210,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4471; + this.state = 4479; this.typeFunctionName(); - this.state = 4473; + this.state = 4481; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4472; + this.state = 4480; this.argClass(); } break; @@ -25219,7 +25225,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4477; + this.state = 4485; this.funcType(); } } @@ -25241,20 +25247,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ArgClassContext(this.context, this.state); this.enterRule(localContext, 380, PostgreSqlParser.RULE_argClass); try { - this.state = 4486; + this.state = 4494; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4479; + this.state = 4487; this.match(PostgreSqlParser.KW_IN); - this.state = 4481; + this.state = 4489; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { case 1: { - this.state = 4480; + this.state = 4488; this.match(PostgreSqlParser.KW_OUT); } break; @@ -25264,21 +25270,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OUT: this.enterOuterAlt(localContext, 2); { - this.state = 4483; + this.state = 4491; this.match(PostgreSqlParser.KW_OUT); } break; case PostgreSqlParser.KW_INOUT: this.enterOuterAlt(localContext, 3); { - this.state = 4484; + this.state = 4492; this.match(PostgreSqlParser.KW_INOUT); } break; case PostgreSqlParser.KW_VARIADIC: this.enterOuterAlt(localContext, 4); { - this.state = 4485; + this.state = 4493; this.match(PostgreSqlParser.KW_VARIADIC); } break; @@ -25305,36 +25311,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 382, PostgreSqlParser.RULE_funcType); let _la: number; try { - this.state = 4497; + this.state = 4505; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4488; + this.state = 4496; this.typename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4490; + this.state = 4498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 4489; + this.state = 4497; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 4492; + this.state = 4500; this.typeFunctionName(); - this.state = 4493; + this.state = 4501; this.attrs(); - this.state = 4494; + this.state = 4502; this.match(PostgreSqlParser.PERCENT); - this.state = 4495; + this.state = 4503; this.match(PostgreSqlParser.KW_TYPE); } break; @@ -25361,14 +25367,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4499; + this.state = 4507; this.funcArg(); - this.state = 4502; + this.state = 4510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 53) { { - this.state = 4500; + this.state = 4508; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 53)) { this.errorHandler.recoverInline(this); @@ -25377,7 +25383,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4501; + this.state = 4509; this.expression(); } } @@ -25405,14 +25411,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4504; + this.state = 4512; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4514; + this.state = 4522; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: { - this.state = 4505; + this.state = 4513; this.match(PostgreSqlParser.STAR); } break; @@ -25836,26 +25842,26 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4507; + this.state = 4515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4506; + this.state = 4514; this.funcArgsList(); } } - this.state = 4512; + this.state = 4520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 4509; + this.state = 4517; this.match(PostgreSqlParser.KW_ORDER); - this.state = 4510; + this.state = 4518; this.match(PostgreSqlParser.KW_BY); - this.state = 4511; + this.state = 4519; this.funcArgsList(); } } @@ -25865,7 +25871,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4516; + this.state = 4524; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -25889,9 +25895,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4518; + this.state = 4526; this.functionName(); - this.state = 4519; + this.state = 4527; this.aggregateArgs(); } } @@ -25914,66 +25920,66 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 390, PostgreSqlParser.RULE_commonFuncOptItem); let _la: number; try { - this.state = 4550; + this.state = 4558; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALLED: case PostgreSqlParser.KW_RETURNS: this.enterOuterAlt(localContext, 1); { - this.state = 4524; + this.state = 4532; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RETURNS: { - this.state = 4521; + this.state = 4529; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4522; + this.state = 4530; this.match(PostgreSqlParser.KW_NULL); } break; case PostgreSqlParser.KW_CALLED: { - this.state = 4523; + this.state = 4531; this.match(PostgreSqlParser.KW_CALLED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4526; + this.state = 4534; this.match(PostgreSqlParser.KW_ON); - this.state = 4527; + this.state = 4535; this.match(PostgreSqlParser.KW_NULL); - this.state = 4528; + this.state = 4536; this.match(PostgreSqlParser.KW_INPUT); } break; case PostgreSqlParser.KW_STRICT: this.enterOuterAlt(localContext, 2); { - this.state = 4529; + this.state = 4537; this.match(PostgreSqlParser.KW_STRICT); } break; case PostgreSqlParser.KW_IMMUTABLE: this.enterOuterAlt(localContext, 3); { - this.state = 4530; + this.state = 4538; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case PostgreSqlParser.KW_STABLE: this.enterOuterAlt(localContext, 4); { - this.state = 4531; + this.state = 4539; this.match(PostgreSqlParser.KW_STABLE); } break; case PostgreSqlParser.KW_VOLATILE: this.enterOuterAlt(localContext, 5); { - this.state = 4532; + this.state = 4540; this.match(PostgreSqlParser.KW_VOLATILE); } break; @@ -25981,19 +25987,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SECURITY: this.enterOuterAlt(localContext, 6); { - this.state = 4534; + this.state = 4542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4533; + this.state = 4541; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 4536; + this.state = 4544; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 4537; + this.state = 4545; _la = this.tokenStream.LA(1); if(!(_la === 181 || _la === 243)) { this.errorHandler.recoverInline(this); @@ -26007,16 +26013,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEAKPROOF: this.enterOuterAlt(localContext, 7); { - this.state = 4538; + this.state = 4546; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 8); { - this.state = 4539; + this.state = 4547; this.match(PostgreSqlParser.KW_NOT); - this.state = 4540; + this.state = 4548; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; @@ -26024,7 +26030,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 9); { - this.state = 4541; + this.state = 4549; _la = this.tokenStream.LA(1); if(!(_la === 170 || _la === 320)) { this.errorHandler.recoverInline(this); @@ -26033,41 +26039,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4542; + this.state = 4550; this.numericOnly(); } break; case PostgreSqlParser.KW_SUPPORT: this.enterOuterAlt(localContext, 10); { - this.state = 4543; + this.state = 4551; this.match(PostgreSqlParser.KW_SUPPORT); - this.state = 4544; + this.state = 4552; this.anyName(); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 11); { - this.state = 4545; + this.state = 4553; this.match(PostgreSqlParser.KW_SET); - this.state = 4546; + this.state = 4554; this.setRestMore(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 12); { - this.state = 4547; + this.state = 4555; this.variableResetStmt(); } break; case PostgreSqlParser.KW_PARALLEL: this.enterOuterAlt(localContext, 13); { - this.state = 4548; + this.state = 4556; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 4549; + this.state = 4557; this.colId(); } break; @@ -26094,57 +26100,57 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 392, PostgreSqlParser.RULE_createFuncOptItem); let _la: number; try { - this.state = 4587; + this.state = 4595; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4552; + this.state = 4560; this.match(PostgreSqlParser.KW_AS); - this.state = 4553; + this.state = 4561; this.stringConst(); - this.state = 4554; + this.state = 4562; this.notifyPayload(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4556; + this.state = 4564; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4557; + this.state = 4565; this.nonReservedWordOrStringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4558; + this.state = 4566; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4559; + this.state = 4567; this.match(PostgreSqlParser.KW_FOR); - this.state = 4560; + this.state = 4568; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4561; + this.state = 4569; this.typename(); - this.state = 4568; + this.state = 4576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4562; + this.state = 4570; this.match(PostgreSqlParser.COMMA); - this.state = 4563; + this.state = 4571; this.match(PostgreSqlParser.KW_FOR); - this.state = 4564; + this.state = 4572; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4565; + this.state = 4573; this.typename(); } } - this.state = 4570; + this.state = 4578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26153,41 +26159,41 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4571; + this.state = 4579; this.match(PostgreSqlParser.KW_WINDOW); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4572; + this.state = 4580; this.match(PostgreSqlParser.KW_SET); - this.state = 4573; + this.state = 4581; this.colId(); - this.state = 4580; + this.state = 4588; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TO: { - this.state = 4574; + this.state = 4582; this.match(PostgreSqlParser.KW_TO); - this.state = 4575; + this.state = 4583; this.colId(); } break; case PostgreSqlParser.EQUAL: { - this.state = 4576; + this.state = 4584; this.match(PostgreSqlParser.EQUAL); - this.state = 4577; + this.state = 4585; this.colId(); } break; case PostgreSqlParser.KW_FROM: { - this.state = 4578; + this.state = 4586; this.match(PostgreSqlParser.KW_FROM); - this.state = 4579; + this.state = 4587; this.match(PostgreSqlParser.KW_CURRENT); } break; @@ -26199,30 +26205,30 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4582; + this.state = 4590; this.match(PostgreSqlParser.KW_AS); - this.state = 4583; + this.state = 4591; this.colId(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4584; + this.state = 4592; this.stmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4585; + this.state = 4593; this.commonFuncOptItem(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4586; + this.state = 4594; this.colId(); } break; @@ -26248,9 +26254,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4589; + this.state = 4597; this.match(PostgreSqlParser.KW_WITH); - this.state = 4590; + this.state = 4598; this.definition(); } } @@ -26274,9 +26280,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4592; + this.state = 4600; this.columnName(); - this.state = 4593; + this.state = 4601; this.funcType(); } } @@ -26301,39 +26307,39 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4595; + this.state = 4603; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4602; + this.state = 4610; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4596; + this.state = 4604; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4597; + this.state = 4605; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4598; + this.state = 4606; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4599; + this.state = 4607; this.procedureWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4600; + this.state = 4608; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4601; + this.state = 4609; this.routineWithArgTypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4605; + this.state = 4613; this.errorHandler.sync(this); alternative = 1; do { @@ -26341,7 +26347,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4604; + this.state = 4612; this.commonFuncOptItem(); } } @@ -26349,16 +26355,16 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4607; + this.state = 4615; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 573, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4610; + this.state = 4618; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: { - this.state = 4609; + this.state = 4617; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -26385,74 +26391,74 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4612; + this.state = 4620; this.match(PostgreSqlParser.KW_DROP); - this.state = 4628; + this.state = 4636; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4613; + this.state = 4621; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4615; + this.state = 4623; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4614; + this.state = 4622; this.ifExists(); } break; } - this.state = 4617; + this.state = 4625; this.functionWithArgTypesList(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4618; + this.state = 4626; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4620; + this.state = 4628; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: { - this.state = 4619; + this.state = 4627; this.ifExists(); } break; } - this.state = 4622; + this.state = 4630; this.procedureWithArgTypesList(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4623; + this.state = 4631; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4625; + this.state = 4633; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4624; + this.state = 4632; this.ifExists(); } break; } - this.state = 4627; + this.state = 4635; this.routineWithArgTypesList(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4631; + this.state = 4639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4630; + this.state = 4638; this.optDropBehavior(); } break; @@ -26480,46 +26486,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4633; + this.state = 4641; this.match(PostgreSqlParser.KW_DROP); - this.state = 4634; + this.state = 4642; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4636; + this.state = 4644; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4635; + this.state = 4643; this.ifExists(); } break; } { - this.state = 4638; + this.state = 4646; this.aggregateWithArgTypes(); - this.state = 4643; + this.state = 4651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4639; + this.state = 4647; this.match(PostgreSqlParser.COMMA); - this.state = 4640; + this.state = 4648; this.aggregateWithArgTypes(); } } - this.state = 4645; + this.state = 4653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4647; + this.state = 4655; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4646; + this.state = 4654; this.optDropBehavior(); } break; @@ -26547,46 +26553,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4649; + this.state = 4657; this.match(PostgreSqlParser.KW_DROP); - this.state = 4650; + this.state = 4658; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 4652; + this.state = 4660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4651; + this.state = 4659; this.ifExists(); } break; } { - this.state = 4654; + this.state = 4662; this.operatorWithArgTypes(); - this.state = 4659; + this.state = 4667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4655; + this.state = 4663; this.match(PostgreSqlParser.COMMA); - this.state = 4656; + this.state = 4664; this.operatorWithArgTypes(); } } - this.state = 4661; + this.state = 4669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4663; + this.state = 4671; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: { - this.state = 4662; + this.state = 4670; this.optDropBehavior(); } break; @@ -26614,23 +26620,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4665; + this.state = 4673; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4678; + this.state = 4686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { case 1: { - this.state = 4666; + this.state = 4674; this.typename(); - this.state = 4669; + this.state = 4677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4667; + this.state = 4675; this.match(PostgreSqlParser.COMMA); - this.state = 4668; + this.state = 4676; this.typename(); } } @@ -26639,26 +26645,26 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4671; + this.state = 4679; this.match(PostgreSqlParser.KW_NONE); - this.state = 4672; + this.state = 4680; this.match(PostgreSqlParser.COMMA); - this.state = 4673; + this.state = 4681; this.typename(); } break; case 3: { - this.state = 4674; + this.state = 4682; this.typename(); - this.state = 4675; + this.state = 4683; this.match(PostgreSqlParser.COMMA); - this.state = 4676; + this.state = 4684; this.match(PostgreSqlParser.KW_NONE); } break; } - this.state = 4680; + this.state = 4688; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -26683,23 +26689,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4687; + this.state = 4695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { { - this.state = 4682; + this.state = 4690; this.colId(); - this.state = 4683; + this.state = 4691; this.match(PostgreSqlParser.DOT); } } - this.state = 4689; + this.state = 4697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4690; + this.state = 4698; this.allOp(); } } @@ -26723,9 +26729,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4692; + this.state = 4700; this.anyOperator(); - this.state = 4693; + this.state = 4701; this.operatorArgTypes(); } } @@ -26750,16 +26756,16 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4695; + this.state = 4703; this.match(PostgreSqlParser.KW_DO); - this.state = 4699; + this.state = 4707; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 4699; + this.state = 4707; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -26767,15 +26773,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4696; + this.state = 4704; this.stringConst(); } break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4697; + this.state = 4705; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4698; + this.state = 4706; this.nonReservedWordOrStringConst(); } break; @@ -26787,7 +26793,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4701; + this.state = 4709; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -26814,38 +26820,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4703; + this.state = 4711; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4704; + this.state = 4712; this.match(PostgreSqlParser.KW_CAST); - this.state = 4705; + this.state = 4713; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4706; + this.state = 4714; this.typename(); - this.state = 4707; + this.state = 4715; this.match(PostgreSqlParser.KW_AS); - this.state = 4708; + this.state = 4716; this.typename(); - this.state = 4709; + this.state = 4717; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 4726; + this.state = 4734; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WITHOUT: { { - this.state = 4710; + this.state = 4718; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 4711; + this.state = 4719; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4714; + this.state = 4722; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4712; + this.state = 4720; this.match(PostgreSqlParser.KW_AS); - this.state = 4713; + this.state = 4721; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26863,36 +26869,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: { { - this.state = 4716; + this.state = 4724; this.match(PostgreSqlParser.KW_WITH); - this.state = 4720; + this.state = 4728; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4717; + this.state = 4725; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4718; + this.state = 4726; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_INOUT: { - this.state = 4719; + this.state = 4727; this.match(PostgreSqlParser.KW_INOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4724; + this.state = 4732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4722; + this.state = 4730; this.match(PostgreSqlParser.KW_AS); - this.state = 4723; + this.state = 4731; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26932,9 +26938,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4728; + this.state = 4736; this.match(PostgreSqlParser.KW_IF); - this.state = 4729; + this.state = 4737; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -26959,49 +26965,49 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4731; + this.state = 4739; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4733; + this.state = 4741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4732; + this.state = 4740; this.orReplaceOpt(); } } - this.state = 4735; + this.state = 4743; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4736; + this.state = 4744; this.match(PostgreSqlParser.KW_FOR); - this.state = 4737; + this.state = 4745; this.typename(); - this.state = 4738; + this.state = 4746; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4739; + this.state = 4747; this.colId(); - this.state = 4740; + this.state = 4748; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4755; + this.state = 4763; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FROM: { - this.state = 4741; + this.state = 4749; this.match(PostgreSqlParser.KW_FROM); - this.state = 4742; + this.state = 4750; this.sqlWithFunction(); - this.state = 4746; + this.state = 4754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4743; + this.state = 4751; this.match(PostgreSqlParser.COMMA); - this.state = 4744; + this.state = 4752; this.match(PostgreSqlParser.KW_TO); - this.state = 4745; + this.state = 4753; this.sqlWithFunction(); } } @@ -27010,20 +27016,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_TO: { - this.state = 4748; + this.state = 4756; this.match(PostgreSqlParser.KW_TO); - this.state = 4749; + this.state = 4757; this.sqlWithFunction(); - this.state = 4753; + this.state = 4761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4750; + this.state = 4758; this.match(PostgreSqlParser.COMMA); - this.state = 4751; + this.state = 4759; this.match(PostgreSqlParser.KW_FROM); - this.state = 4752; + this.state = 4760; this.sqlWithFunction(); } } @@ -27033,7 +27039,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4757; + this.state = 4765; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -27057,13 +27063,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4759; + this.state = 4767; this.match(PostgreSqlParser.KW_SQL); - this.state = 4760; + this.state = 4768; this.match(PostgreSqlParser.KW_WITH); - this.state = 4761; + this.state = 4769; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4762; + this.state = 4770; this.functionWithArgTypes(); } } @@ -27088,129 +27094,129 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4764; + this.state = 4772; this.match(PostgreSqlParser.KW_REINDEX); - this.state = 4775; + this.state = 4783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4765; + this.state = 4773; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4766; + this.state = 4774; this.match(PostgreSqlParser.KW_VERBOSE); - this.state = 4771; + this.state = 4779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4767; + this.state = 4775; this.match(PostgreSqlParser.COMMA); - this.state = 4768; + this.state = 4776; this.match(PostgreSqlParser.KW_VERBOSE); } } - this.state = 4773; + this.state = 4781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4774; + this.state = 4782; this.match(PostgreSqlParser.CLOSE_PAREN); } } { - this.state = 4802; + this.state = 4810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INDEX: { - this.state = 4777; + this.state = 4785; this.match(PostgreSqlParser.KW_INDEX); - this.state = 4779; + this.state = 4787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4778; + this.state = 4786; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4781; + this.state = 4789; this.qualifiedName(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4782; + this.state = 4790; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4784; + this.state = 4792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4783; + this.state = 4791; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4786; + this.state = 4794; this.tableName(); } break; case PostgreSqlParser.KW_SCHEMA: { - this.state = 4787; + this.state = 4795; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4789; + this.state = 4797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4788; + this.state = 4796; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4791; + this.state = 4799; this.schemaName(); } break; case PostgreSqlParser.KW_SYSTEM: { - this.state = 4792; + this.state = 4800; this.match(PostgreSqlParser.KW_SYSTEM); - this.state = 4794; + this.state = 4802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4793; + this.state = 4801; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4796; + this.state = 4804; this.colId(); } break; case PostgreSqlParser.KW_DATABASE: { - this.state = 4797; + this.state = 4805; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4799; + this.state = 4807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4798; + this.state = 4806; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4801; + this.state = 4809; this.databaseName(); } break; @@ -27241,11 +27247,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4804; + this.state = 4812; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4805; + this.state = 4813; this.optTableSpace(); - this.state = 4806; + this.state = 4814; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -27254,7 +27260,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4807; + this.state = 4815; this.relOptions(); } } @@ -27277,67 +27283,67 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 426, PostgreSqlParser.RULE_renameStmt); let _la: number; try { - this.state = 5016; + this.state = 5024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4809; + this.state = 4817; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4814; + this.state = 4822; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AGGREGATE: { - this.state = 4810; + this.state = 4818; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4811; + this.state = 4819; this.aggregateWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4812; + this.state = 4820; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4813; + this.state = 4821; this.routineWithArgTypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4816; + this.state = 4824; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4817; + this.state = 4825; this.match(PostgreSqlParser.KW_TO); - this.state = 4818; + this.state = 4826; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4820; + this.state = 4828; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4821; + this.state = 4829; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4822; + this.state = 4830; this.databaseName(); - this.state = 4823; + this.state = 4831; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4824; + this.state = 4832; this.match(PostgreSqlParser.KW_TO); - this.state = 4825; + this.state = 4833; this.databaseNameCreate(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4827; + this.state = 4835; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4828; + this.state = 4836; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 189 || _la === 342 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -27346,41 +27352,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4829; + this.state = 4837; this.anyName(); - this.state = 4830; + this.state = 4838; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4831; + this.state = 4839; this.match(PostgreSqlParser.KW_TO); - this.state = 4832; + this.state = 4840; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4834; + this.state = 4842; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4835; + this.state = 4843; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4836; + this.state = 4844; this.functionWithArgTypes(); - this.state = 4837; + this.state = 4845; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4838; + this.state = 4846; this.match(PostgreSqlParser.KW_TO); - this.state = 4839; + this.state = 4847; this.functionNameCreate(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4841; + this.state = 4849; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4842; + this.state = 4850; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 4843; + this.state = 4851; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -27389,58 +27395,58 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4844; + this.state = 4852; this.anyName(); - this.state = 4845; + this.state = 4853; this.tableAccessMethodClause(); - this.state = 4846; + this.state = 4854; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4847; + this.state = 4855; this.match(PostgreSqlParser.KW_TO); - this.state = 4848; + this.state = 4856; this.colId(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4850; + this.state = 4858; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4851; + this.state = 4859; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4852; + this.state = 4860; this.procedureWithArgTypes(); - this.state = 4853; + this.state = 4861; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4854; + this.state = 4862; this.match(PostgreSqlParser.KW_TO); - this.state = 4855; + this.state = 4863; this.procedureNameCreate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4857; + this.state = 4865; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4858; + this.state = 4866; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4859; + this.state = 4867; this.schemaName(); - this.state = 4860; + this.state = 4868; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4861; + this.state = 4869; this.match(PostgreSqlParser.KW_TO); - this.state = 4862; + this.state = 4870; this.schemaNameCreate(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4864; + this.state = 4872; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4865; + this.state = 4873; _la = this.tokenStream.LA(1); if(!(_la === 226 || _la === 328)) { this.errorHandler.recoverInline(this); @@ -27449,143 +27455,143 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4867; + this.state = 4875; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: { - this.state = 4866; + this.state = 4874; this.ifExists(); } break; } - this.state = 4869; + this.state = 4877; this.qualifiedName(); - this.state = 4870; + this.state = 4878; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4871; + this.state = 4879; this.match(PostgreSqlParser.KW_TO); - this.state = 4872; + this.state = 4880; this.colId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4874; + this.state = 4882; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4876; + this.state = 4884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4875; + this.state = 4883; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4878; + this.state = 4886; this.match(PostgreSqlParser.KW_VIEW); - this.state = 4880; + this.state = 4888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 4879; + this.state = 4887; this.ifExists(); } break; } - this.state = 4882; + this.state = 4890; this.viewName(); - this.state = 4883; + this.state = 4891; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4884; + this.state = 4892; this.match(PostgreSqlParser.KW_TO); - this.state = 4885; + this.state = 4893; this.viewNameCreate(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4887; + this.state = 4895; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4889; + this.state = 4897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4888; + this.state = 4896; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4891; + this.state = 4899; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4893; + this.state = 4901; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: { - this.state = 4892; + this.state = 4900; this.ifExists(); } break; } - this.state = 4895; + this.state = 4903; this.relationExpr(); - this.state = 4896; + this.state = 4904; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4897; + this.state = 4905; this.match(PostgreSqlParser.KW_TO); - this.state = 4898; + this.state = 4906; this.tableNameCreate(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4900; + this.state = 4908; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4925; + this.state = 4933; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: { - this.state = 4902; + this.state = 4910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4901; + this.state = 4909; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4904; + this.state = 4912; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4906; + this.state = 4914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 4905; + this.state = 4913; this.ifExists(); } break; } - this.state = 4908; + this.state = 4916; this.relationExpr(); - this.state = 4909; + this.state = 4917; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4911; + this.state = 4919; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: { - this.state = 4910; + this.state = 4918; this.match(PostgreSqlParser.KW_COLUMN); } break; @@ -27595,38 +27601,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MATERIALIZED: case PostgreSqlParser.KW_VIEW: { - this.state = 4914; + this.state = 4922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4913; + this.state = 4921; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4916; + this.state = 4924; this.match(PostgreSqlParser.KW_VIEW); - this.state = 4918; + this.state = 4926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4917; + this.state = 4925; this.ifExists(); } break; } - this.state = 4920; + this.state = 4928; this.viewName(); - this.state = 4921; + this.state = 4929; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4923; + this.state = 4931; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 4922; + this.state = 4930; this.match(PostgreSqlParser.KW_COLUMN); } break; @@ -27636,82 +27642,82 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4927; + this.state = 4935; this.columnName(); - this.state = 4928; + this.state = 4936; this.match(PostgreSqlParser.KW_TO); - this.state = 4929; + this.state = 4937; this.columnNameCreate(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4931; - this.match(PostgreSqlParser.KW_ALTER); this.state = 4939; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 4947; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TABLE: { - this.state = 4932; + this.state = 4940; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4934; + this.state = 4942; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { case 1: { - this.state = 4933; + this.state = 4941; this.ifExists(); } break; } - this.state = 4936; + this.state = 4944; this.relationExpr(); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 4937; + this.state = 4945; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 4938; + this.state = 4946; this.anyName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4941; + this.state = 4949; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4942; + this.state = 4950; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 4943; + this.state = 4951; this.colId(); - this.state = 4944; + this.state = 4952; this.match(PostgreSqlParser.KW_TO); - this.state = 4945; + this.state = 4953; this.colId(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4947; + this.state = 4955; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4954; + this.state = 4962; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_POLICY: { { - this.state = 4948; + this.state = 4956; this.match(PostgreSqlParser.KW_POLICY); - this.state = 4950; + this.state = 4958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4949; + this.state = 4957; this.ifExists(); } break; @@ -27721,113 +27727,113 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RULE: { - this.state = 4952; + this.state = 4960; this.match(PostgreSqlParser.KW_RULE); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 4953; + this.state = 4961; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4956; + this.state = 4964; this.colId(); - this.state = 4957; + this.state = 4965; this.match(PostgreSqlParser.KW_ON); - this.state = 4958; + this.state = 4966; this.qualifiedName(); - this.state = 4959; + this.state = 4967; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4960; + this.state = 4968; this.match(PostgreSqlParser.KW_TO); - this.state = 4961; + this.state = 4969; this.colId(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4963; + this.state = 4971; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4976; + this.state = 4984; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4964; + this.state = 4972; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 4965; + this.state = 4973; this.match(PostgreSqlParser.KW_DATA); - this.state = 4966; + this.state = 4974; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 4968; + this.state = 4976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 4967; + this.state = 4975; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 4970; + this.state = 4978; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 4971; + this.state = 4979; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4972; + this.state = 4980; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 4973; + this.state = 4981; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 4974; + this.state = 4982; this.match(PostgreSqlParser.KW_EVENT); - this.state = 4975; + this.state = 4983; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4978; + this.state = 4986; this.colId(); - this.state = 4979; + this.state = 4987; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4980; + this.state = 4988; this.match(PostgreSqlParser.KW_TO); - this.state = 4981; + this.state = 4989; this.colId(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4983; + this.state = 4991; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4984; + this.state = 4992; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -27836,41 +27842,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4985; + this.state = 4993; this.roleSpec(); - this.state = 4986; + this.state = 4994; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4987; + this.state = 4995; this.match(PostgreSqlParser.KW_TO); - this.state = 4988; + this.state = 4996; this.roleSpec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4990; + this.state = 4998; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4991; + this.state = 4999; this.optTableSpace(); - this.state = 4992; + this.state = 5000; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4993; + this.state = 5001; this.match(PostgreSqlParser.KW_TO); - this.state = 4994; + this.state = 5002; this.tableSpaceName(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 4996; + this.state = 5004; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4997; + this.state = 5005; this.match(PostgreSqlParser.KW_TEXT); - this.state = 4998; + this.state = 5006; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 4999; + this.state = 5007; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -27879,41 +27885,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5000; + this.state = 5008; this.anyName(); - this.state = 5001; + this.state = 5009; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5002; + this.state = 5010; this.match(PostgreSqlParser.KW_TO); - this.state = 5003; + this.state = 5011; this.colId(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5005; + this.state = 5013; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5006; + this.state = 5014; this.match(PostgreSqlParser.KW_TYPE); - this.state = 5007; + this.state = 5015; this.anyName(); - this.state = 5008; + this.state = 5016; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5009; + this.state = 5017; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 5010; + this.state = 5018; this.colId(); - this.state = 5011; + this.state = 5019; this.match(PostgreSqlParser.KW_TO); - this.state = 5012; + this.state = 5020; this.colId(); - this.state = 5014; + this.state = 5022; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 5013; + this.state = 5021; this.optDropBehavior(); } break; @@ -27943,85 +27949,85 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5018; + this.state = 5026; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5035; + this.state = 5043; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 5019; + this.state = 5027; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5020; + this.state = 5028; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 5021; + this.state = 5029; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5022; + this.state = 5030; this.procedureWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 5023; + this.state = 5031; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5024; + this.state = 5032; this.routineWithArgTypes(); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 5025; + this.state = 5033; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 5026; + this.state = 5034; this.colId(); - this.state = 5027; + this.state = 5035; this.match(PostgreSqlParser.KW_ON); - this.state = 5028; + this.state = 5036; this.qualifiedName(); } break; case PostgreSqlParser.KW_MATERIALIZED: { - this.state = 5030; + this.state = 5038; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 5031; + this.state = 5039; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5032; + this.state = 5040; this.viewName(); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 5033; + this.state = 5041; this.match(PostgreSqlParser.KW_INDEX); - this.state = 5034; + this.state = 5042; this.qualifiedName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5038; + this.state = 5046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5037; + this.state = 5045; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5040; + this.state = 5048; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 5041; + this.state = 5049; this.match(PostgreSqlParser.KW_ON); - this.state = 5042; + this.state = 5050; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5043; + this.state = 5051; this.colId(); } } @@ -28044,54 +28050,54 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 430, PostgreSqlParser.RULE_alterObjectSchemaStmt); let _la: number; try { - this.state = 5106; + this.state = 5114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5045; + this.state = 5053; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5084; + this.state = 5092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { case 1: { - this.state = 5046; + this.state = 5054; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5047; + this.state = 5055; this.aggregateWithArgTypes(); } break; case 2: { - this.state = 5048; + this.state = 5056; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5049; + this.state = 5057; this.colId(); } break; case 3: { - this.state = 5050; + this.state = 5058; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5051; + this.state = 5059; this.functionWithArgTypes(); } break; case 4: { - this.state = 5052; + this.state = 5060; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5053; + this.state = 5061; this.operatorWithArgTypes(); } break; case 5: { - this.state = 5054; + this.state = 5062; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5055; + this.state = 5063; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28100,126 +28106,126 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5056; + this.state = 5064; this.anyName(); - this.state = 5057; + this.state = 5065; this.tableAccessMethodClause(); } break; case 6: { - this.state = 5059; + this.state = 5067; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5060; + this.state = 5068; this.procedureWithArgTypes(); } break; case 7: { - this.state = 5061; + this.state = 5069; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5062; + this.state = 5070; this.routineWithArgTypes(); } break; case 8: { - this.state = 5063; + this.state = 5071; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 5065; + this.state = 5073; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 5064; + this.state = 5072; this.ifExists(); } break; } - this.state = 5067; + this.state = 5075; this.qualifiedName(); } break; case 9: { - this.state = 5069; + this.state = 5077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 5068; + this.state = 5076; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 5071; + this.state = 5079; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5073; + this.state = 5081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { case 1: { - this.state = 5072; + this.state = 5080; this.ifExists(); } break; } - this.state = 5075; + this.state = 5083; this.viewName(); } break; case 10: { - this.state = 5077; + this.state = 5085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 5076; + this.state = 5084; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 5079; + this.state = 5087; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5081; + this.state = 5089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { case 1: { - this.state = 5080; + this.state = 5088; this.ifExists(); } break; } - this.state = 5083; + this.state = 5091; this.relationExpr(); } break; } - this.state = 5086; + this.state = 5094; this.match(PostgreSqlParser.KW_SET); - this.state = 5087; + this.state = 5095; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5088; + this.state = 5096; this.schemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5090; + this.state = 5098; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5099; + this.state = 5107; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5091; + this.state = 5099; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5092; + this.state = 5100; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5093; + this.state = 5101; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -28232,44 +28238,44 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5094; + this.state = 5102; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5095; + this.state = 5103; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5096; + this.state = 5104; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5097; + this.state = 5105; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5098; + this.state = 5106; this.match(PostgreSqlParser.KW_TYPE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5101; + this.state = 5109; this.anyName(); - this.state = 5102; + this.state = 5110; this.match(PostgreSqlParser.KW_SET); - this.state = 5103; + this.state = 5111; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5104; + this.state = 5112; this.schemaName(); } break; @@ -28295,15 +28301,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5108; + this.state = 5116; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5109; + this.state = 5117; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5110; + this.state = 5118; this.operatorWithArgTypes(); - this.state = 5111; + this.state = 5119; this.match(PostgreSqlParser.KW_SET); - this.state = 5112; + this.state = 5120; this.operatorDefList(); } } @@ -28328,27 +28334,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5114; + this.state = 5122; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5115; + this.state = 5123; this.operatorDefElem(); - this.state = 5120; + this.state = 5128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5116; + this.state = 5124; this.match(PostgreSqlParser.COMMA); - this.state = 5117; + this.state = 5125; this.operatorDefElem(); } } - this.state = 5122; + this.state = 5130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5123; + this.state = 5131; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -28372,46 +28378,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5125; + this.state = 5133; this.colLabel(); - this.state = 5126; + this.state = 5134; this.match(PostgreSqlParser.EQUAL); - this.state = 5133; + this.state = 5141; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { case 1: { - this.state = 5127; + this.state = 5135; this.match(PostgreSqlParser.KW_NONE); } break; case 2: { - this.state = 5128; + this.state = 5136; this.funcType(); } break; case 3: { - this.state = 5129; + this.state = 5137; this.reservedKeyword(); } break; case 4: { - this.state = 5130; + this.state = 5138; this.qualAllOp(); } break; case 5: { - this.state = 5131; + this.state = 5139; this.numericOnly(); } break; case 6: { - this.state = 5132; + this.state = 5140; this.stringConst(); } break; @@ -28438,15 +28444,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5135; + this.state = 5143; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5136; + this.state = 5144; this.match(PostgreSqlParser.KW_TYPE); - this.state = 5137; + this.state = 5145; this.anyName(); - this.state = 5138; + this.state = 5146; this.match(PostgreSqlParser.KW_SET); - this.state = 5139; + this.state = 5147; this.operatorDefList(); } } @@ -28469,17 +28475,17 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 440, PostgreSqlParser.RULE_alterOwnerStmt); let _la: number; try { - this.state = 5215; + this.state = 5223; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5141; + this.state = 5149; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5142; + this.state = 5150; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5143; + this.state = 5151; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28488,150 +28494,150 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5144; + this.state = 5152; this.anyName(); - this.state = 5145; + this.state = 5153; this.tableAccessMethodClause(); - this.state = 5146; + this.state = 5154; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5147; + this.state = 5155; this.match(PostgreSqlParser.KW_TO); - this.state = 5148; + this.state = 5156; this.roleSpec(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5150; + this.state = 5158; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5177; + this.state = 5185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 641, this.context) ) { case 1: { - this.state = 5151; + this.state = 5159; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5152; + this.state = 5160; this.aggregateWithArgTypes(); } break; case 2: { - this.state = 5153; + this.state = 5161; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5154; + this.state = 5162; this.databaseName(); } break; case 3: { - this.state = 5155; + this.state = 5163; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5156; + this.state = 5164; this.functionWithArgTypes(); } break; case 4: { - this.state = 5158; + this.state = 5166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5157; + this.state = 5165; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 5160; + this.state = 5168; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 5161; + this.state = 5169; this.colId(); } break; case 5: { - this.state = 5162; + this.state = 5170; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5163; + this.state = 5171; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5164; + this.state = 5172; this.numericOnly(); } break; case 6: { - this.state = 5165; + this.state = 5173; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5166; + this.state = 5174; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5167; + this.state = 5175; this.numericOnly(); } break; case 7: { - this.state = 5168; + this.state = 5176; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5169; + this.state = 5177; this.operatorWithArgTypes(); } break; case 8: { - this.state = 5170; + this.state = 5178; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5171; + this.state = 5179; this.procedureWithArgTypes(); } break; case 9: { - this.state = 5172; + this.state = 5180; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5173; + this.state = 5181; this.routineWithArgTypes(); } break; case 10: { - this.state = 5174; + this.state = 5182; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5175; + this.state = 5183; this.schemaName(); } break; case 11: { - this.state = 5176; + this.state = 5184; this.optTableSpace(); } break; } - this.state = 5179; + this.state = 5187; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5180; + this.state = 5188; this.match(PostgreSqlParser.KW_TO); - this.state = 5181; + this.state = 5189; this.roleSpec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5183; + this.state = 5191; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5192; + this.state = 5200; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5184; + this.state = 5192; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5185; + this.state = 5193; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5186; + this.state = 5194; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -28644,69 +28650,69 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5187; + this.state = 5195; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5188; + this.state = 5196; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5189; + this.state = 5197; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5190; + this.state = 5198; this.match(PostgreSqlParser.KW_TYPE); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5191; + this.state = 5199; this.match(PostgreSqlParser.KW_STATISTICS); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5194; + this.state = 5202; this.anyName(); - this.state = 5195; + this.state = 5203; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5196; + this.state = 5204; this.match(PostgreSqlParser.KW_TO); - this.state = 5197; + this.state = 5205; this.roleSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5199; + this.state = 5207; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5208; + this.state = 5216; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SERVER: { - this.state = 5200; + this.state = 5208; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_FOREIGN: { { - this.state = 5201; + this.state = 5209; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 5202; + this.state = 5210; this.match(PostgreSqlParser.KW_DATA); - this.state = 5203; + this.state = 5211; this.match(PostgreSqlParser.KW_WRAPPER); } } @@ -28714,35 +28720,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EVENT: { { - this.state = 5204; + this.state = 5212; this.match(PostgreSqlParser.KW_EVENT); - this.state = 5205; + this.state = 5213; this.match(PostgreSqlParser.KW_TRIGGER); } } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 5206; + this.state = 5214; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 5207; + this.state = 5215; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5210; + this.state = 5218; this.colId(); - this.state = 5211; + this.state = 5219; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5212; + this.state = 5220; this.match(PostgreSqlParser.KW_TO); - this.state = 5213; + this.state = 5221; this.roleSpec(); } break; @@ -28768,42 +28774,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5217; + this.state = 5225; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5218; + this.state = 5226; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5219; + this.state = 5227; this.colId(); - this.state = 5226; + this.state = 5234; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { case 1: { - this.state = 5220; + this.state = 5228; this.match(PostgreSqlParser.KW_FOR); - this.state = 5221; + this.state = 5229; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5222; + this.state = 5230; this.relationExprList(); } break; case 2: { - this.state = 5223; + this.state = 5231; this.match(PostgreSqlParser.KW_FOR); - this.state = 5224; + this.state = 5232; this.match(PostgreSqlParser.KW_ALL); - this.state = 5225; + this.state = 5233; this.match(PostgreSqlParser.KW_TABLES); } break; } - this.state = 5229; + this.state = 5237; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { case 1: { - this.state = 5228; + this.state = 5236; this.optDefinition(); } break; @@ -28831,23 +28837,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5231; + this.state = 5239; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5232; + this.state = 5240; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5233; + this.state = 5241; this.colId(); - this.state = 5251; + this.state = 5259; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: { { - this.state = 5234; + this.state = 5242; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5235; + this.state = 5243; this.match(PostgreSqlParser.KW_TO); - this.state = 5236; + this.state = 5244; this.roleSpec(); } } @@ -28855,9 +28861,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: { { - this.state = 5237; + this.state = 5245; this.match(PostgreSqlParser.KW_SET); - this.state = 5238; + this.state = 5246; this.definition(); } } @@ -28865,18 +28871,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 5239; + this.state = 5247; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5240; + this.state = 5248; this.match(PostgreSqlParser.KW_TO); - this.state = 5241; + this.state = 5249; this.colId(); } } break; case 4: { - this.state = 5242; + this.state = 5250; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -28885,21 +28891,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5243; + this.state = 5251; this.publicationRelationExpr(); - this.state = 5248; + this.state = 5256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5244; + this.state = 5252; this.match(PostgreSqlParser.COMMA); - this.state = 5245; + this.state = 5253; this.publicationRelationExpr(); } } - this.state = 5250; + this.state = 5258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28929,44 +28935,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5253; + this.state = 5261; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5254; + this.state = 5262; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5255; + this.state = 5263; this.colId(); - this.state = 5256; + this.state = 5264; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5257; + this.state = 5265; this.stringConst(); - this.state = 5258; + this.state = 5266; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5259; + this.state = 5267; this.colLabel(); - this.state = 5264; + this.state = 5272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5260; + this.state = 5268; this.match(PostgreSqlParser.COMMA); - this.state = 5261; + this.state = 5269; this.colLabel(); } } - this.state = 5266; + this.state = 5274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5268; + this.state = 5276; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { case 1: { - this.state = 5267; + this.state = 5275; this.optDefinition(); } break; @@ -28992,58 +28998,58 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 448, PostgreSqlParser.RULE_alterSubscriptionStmt); let _la: number; try { - this.state = 5326; + this.state = 5334; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5270; + this.state = 5278; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5271; + this.state = 5279; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5272; + this.state = 5280; this.colId(); - this.state = 5273; + this.state = 5281; this.match(PostgreSqlParser.KW_SET); - this.state = 5274; + this.state = 5282; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5276; + this.state = 5284; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5277; + this.state = 5285; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5278; + this.state = 5286; this.colId(); - this.state = 5279; + this.state = 5287; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5280; + this.state = 5288; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5282; + this.state = 5290; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5283; + this.state = 5291; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5284; + this.state = 5292; this.colId(); - this.state = 5285; + this.state = 5293; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5286; + this.state = 5294; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5288; + this.state = 5296; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { case 1: { - this.state = 5287; + this.state = 5295; this.optDefinition(); } break; @@ -29053,13 +29059,13 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5290; + this.state = 5298; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5291; + this.state = 5299; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5292; + this.state = 5300; this.colId(); - this.state = 5293; + this.state = 5301; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -29068,34 +29074,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5294; + this.state = 5302; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5295; + this.state = 5303; this.colLabel(); - this.state = 5300; + this.state = 5308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5296; + this.state = 5304; this.match(PostgreSqlParser.COMMA); - this.state = 5297; + this.state = 5305; this.colLabel(); } } - this.state = 5302; + this.state = 5310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5304; + this.state = 5312; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { case 1: { - this.state = 5303; + this.state = 5311; this.optDefinition(); } break; @@ -29105,13 +29111,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5306; + this.state = 5314; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5307; + this.state = 5315; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5308; + this.state = 5316; this.colId(); - this.state = 5309; + this.state = 5317; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 193)) { this.errorHandler.recoverInline(this); @@ -29125,36 +29131,36 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5311; + this.state = 5319; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5312; + this.state = 5320; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5313; + this.state = 5321; this.colId(); - this.state = 5314; + this.state = 5322; this.match(PostgreSqlParser.KW_SKIP); - this.state = 5315; + this.state = 5323; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5316; + this.state = 5324; this.oldAggregateElem(); - this.state = 5317; + this.state = 5325; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5319; + this.state = 5327; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5320; + this.state = 5328; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5321; + this.state = 5329; this.colId(); - this.state = 5322; + this.state = 5330; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5323; + this.state = 5331; this.match(PostgreSqlParser.KW_TO); - this.state = 5324; + this.state = 5332; this.roleSpec(); } break; @@ -29181,27 +29187,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5328; + this.state = 5336; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5330; + this.state = 5338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5329; + this.state = 5337; this.orReplaceOpt(); } } - this.state = 5332; + this.state = 5340; this.match(PostgreSqlParser.KW_RULE); - this.state = 5333; + this.state = 5341; this.colId(); - this.state = 5334; + this.state = 5342; this.match(PostgreSqlParser.KW_AS); - this.state = 5335; + this.state = 5343; this.match(PostgreSqlParser.KW_ON); - this.state = 5336; + this.state = 5344; _la = this.tokenStream.LA(1); if(!(_la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -29210,28 +29216,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5337; + this.state = 5345; this.match(PostgreSqlParser.KW_TO); - this.state = 5338; + this.state = 5346; this.qualifiedName(); - this.state = 5340; + this.state = 5348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5339; + this.state = 5347; this.whereClause(); } } - this.state = 5342; + this.state = 5350; this.match(PostgreSqlParser.KW_DO); - this.state = 5344; + this.state = 5352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137 || _la === 242) { { - this.state = 5343; + this.state = 5351; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 242)) { this.errorHandler.recoverInline(this); @@ -29243,62 +29249,62 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5362; + this.state = 5370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { case 1: { - this.state = 5346; + this.state = 5354; this.match(PostgreSqlParser.KW_NOTHING); } break; case 2: { - this.state = 5347; + this.state = 5355; this.ruleActionStmt(); } break; case 3: { - this.state = 5348; + this.state = 5356; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 5350; + this.state = 5358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 5349; + this.state = 5357; this.ruleActionStmt(); } } - this.state = 5358; + this.state = 5366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 7) { { { - this.state = 5352; + this.state = 5360; this.match(PostgreSqlParser.SEMI); - this.state = 5354; + this.state = 5362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 5353; + this.state = 5361; this.ruleActionStmt(); } } } } - this.state = 5360; + this.state = 5368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5361; + this.state = 5369; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -29323,41 +29329,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RuleActionStmtContext(this.context, this.state); this.enterRule(localContext, 452, PostgreSqlParser.RULE_ruleActionStmt); try { - this.state = 5369; + this.state = 5377; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5364; + this.state = 5372; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5365; + this.state = 5373; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5366; + this.state = 5374; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5367; + this.state = 5375; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5368; + this.state = 5376; this.notifyStmt(); } break; @@ -29384,16 +29390,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5371; + this.state = 5379; this.match(PostgreSqlParser.KW_NOTIFY); - this.state = 5372; + this.state = 5380; this.colId(); - this.state = 5374; + this.state = 5382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5373; + this.state = 5381; this.notifyPayload(); } } @@ -29420,9 +29426,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5376; + this.state = 5384; this.match(PostgreSqlParser.COMMA); - this.state = 5377; + this.state = 5385; this.stringConst(); } } @@ -29446,9 +29452,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5379; + this.state = 5387; this.match(PostgreSqlParser.KW_LISTEN); - this.state = 5380; + this.state = 5388; this.colId(); } } @@ -29472,9 +29478,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5382; + this.state = 5390; this.match(PostgreSqlParser.KW_UNLISTEN); - this.state = 5385; + this.state = 5393; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -29872,13 +29878,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5383; + this.state = 5391; this.colId(); } break; case PostgreSqlParser.STAR: { - this.state = 5384; + this.state = 5392; this.match(PostgreSqlParser.STAR); } break; @@ -29906,30 +29912,30 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 462, PostgreSqlParser.RULE_transactionStmt); let _la: number; try { - this.state = 5432; + this.state = 5440; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5387; + this.state = 5395; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 5389; + this.state = 5397; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 665, this.context) ) { case 1: { - this.state = 5388; + this.state = 5396; this.optTransaction(); } break; } - this.state = 5392; + this.state = 5400; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 666, this.context) ) { case 1: { - this.state = 5391; + this.state = 5399; this.transactionModeList(); } break; @@ -29939,16 +29945,16 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5394; + this.state = 5402; this.match(PostgreSqlParser.KW_START); - this.state = 5395; + this.state = 5403; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 5397; + this.state = 5405; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 667, this.context) ) { case 1: { - this.state = 5396; + this.state = 5404; this.transactionModeList(); } break; @@ -29958,46 +29964,46 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5399; + this.state = 5407; this.match(PostgreSqlParser.KW_SAVEPOINT); - this.state = 5400; + this.state = 5408; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5401; + this.state = 5409; this.match(PostgreSqlParser.KW_RELEASE); - this.state = 5403; + this.state = 5411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 668, this.context) ) { case 1: { - this.state = 5402; + this.state = 5410; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5405; + this.state = 5413; this.colId(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5406; + this.state = 5414; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5407; + this.state = 5415; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 5408; + this.state = 5416; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5409; + this.state = 5417; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -30006,16 +30012,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5410; + this.state = 5418; this.match(PostgreSqlParser.KW_PREPARED); - this.state = 5411; + this.state = 5419; this.stringConst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5412; + this.state = 5420; _la = this.tokenStream.LA(1); if(!(_la === 129 || _la === 161 || _la === 319 || _la === 454)) { this.errorHandler.recoverInline(this); @@ -30024,34 +30030,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5414; + this.state = 5422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 669, this.context) ) { case 1: { - this.state = 5413; + this.state = 5421; this.optTransaction(); } break; } - this.state = 5421; + this.state = 5429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 5416; + this.state = 5424; this.match(PostgreSqlParser.KW_AND); - this.state = 5418; + this.state = 5426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5417; + this.state = 5425; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5420; + this.state = 5428; this.match(PostgreSqlParser.KW_CHAIN); } } @@ -30061,31 +30067,31 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5423; + this.state = 5431; this.match(PostgreSqlParser.KW_ROLLBACK); - this.state = 5425; + this.state = 5433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 356 || _la === 380) { { - this.state = 5424; + this.state = 5432; this.optTransaction(); } } - this.state = 5427; + this.state = 5435; this.match(PostgreSqlParser.KW_TO); - this.state = 5429; + this.state = 5437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { case 1: { - this.state = 5428; + this.state = 5436; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5431; + this.state = 5439; this.colId(); } break; @@ -30112,7 +30118,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5434; + this.state = 5442; _la = this.tokenStream.LA(1); if(!(_la === 356 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -30142,26 +30148,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 466, PostgreSqlParser.RULE_transactionModeItem); let _la: number; try { - this.state = 5445; + this.state = 5453; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 5436; + this.state = 5444; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 5437; + this.state = 5445; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 5438; + this.state = 5446; this.isoLevel(); } break; case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 5439; + this.state = 5447; this.match(PostgreSqlParser.KW_READ); - this.state = 5440; + this.state = 5448; _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -30176,17 +30182,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 3); { - this.state = 5442; + this.state = 5450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 5441; + this.state = 5449; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 5444; + this.state = 5452; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; @@ -30216,31 +30222,31 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5447; + this.state = 5455; this.transactionModeItem(); - this.state = 5454; + this.state = 5462; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5449; + this.state = 5457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5448; + this.state = 5456; this.match(PostgreSqlParser.COMMA); } } - this.state = 5451; + this.state = 5459; this.transactionModeItem(); } } } - this.state = 5456; + this.state = 5464; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); } @@ -30268,55 +30274,55 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5457; + this.state = 5465; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5460; + this.state = 5468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5458; + this.state = 5466; this.match(PostgreSqlParser.KW_OR); - this.state = 5459; + this.state = 5467; this.match(PostgreSqlParser.KW_REPLACE); } } - this.state = 5463; + this.state = 5471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 5462; + this.state = 5470; this.optTemp(); } } - this.state = 5480; + this.state = 5488; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VIEW: { - this.state = 5465; + this.state = 5473; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5466; + this.state = 5474; this.viewNameCreate(); - this.state = 5468; + this.state = 5476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5467; + this.state = 5475; this.columnListCreate(); } } - this.state = 5471; + this.state = 5479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5470; + this.state = 5478; this.optRelOptions(); } } @@ -30325,20 +30331,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RECURSIVE: { - this.state = 5473; + this.state = 5481; this.match(PostgreSqlParser.KW_RECURSIVE); - this.state = 5474; + this.state = 5482; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5475; + this.state = 5483; this.viewNameCreate(); - this.state = 5476; + this.state = 5484; this.optColumnList(); - this.state = 5478; + this.state = 5486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5477; + this.state = 5485; this.optRelOptions(); } } @@ -30348,23 +30354,23 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5482; + this.state = 5490; this.match(PostgreSqlParser.KW_AS); - this.state = 5483; + this.state = 5491; this.selectStmt(); - this.state = 5490; + this.state = 5498; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 686, this.context) ) { case 1: { - this.state = 5484; + this.state = 5492; this.match(PostgreSqlParser.KW_WITH); - this.state = 5486; + this.state = 5494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 254) { { - this.state = 5485; + this.state = 5493; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -30376,9 +30382,9 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5488; + this.state = 5496; this.match(PostgreSqlParser.KW_CHECK); - this.state = 5489; + this.state = 5497; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -30405,9 +30411,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5492; + this.state = 5500; this.match(PostgreSqlParser.KW_LOAD); - this.state = 5493; + this.state = 5501; this.stringConst(); } } @@ -30433,28 +30439,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5495; + this.state = 5503; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5496; + this.state = 5504; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5497; + this.state = 5505; this.databaseNameCreate(); - this.state = 5499; + this.state = 5507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 687, this.context) ) { case 1: { - this.state = 5498; + this.state = 5506; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 5506; + this.state = 5514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { case 1: { - this.state = 5502; + this.state = 5510; this.errorHandler.sync(this); alternative = 1; do { @@ -30462,7 +30468,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5501; + this.state = 5509; this.createDbOptItem(); } } @@ -30470,7 +30476,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5504; + this.state = 5512; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 688, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30500,82 +30506,82 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5516; + this.state = 5524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: { - this.state = 5508; + this.state = 5516; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5509; + this.state = 5517; this.match(PostgreSqlParser.KW_LIMIT); } break; case 2: { - this.state = 5510; + this.state = 5518; this.match(PostgreSqlParser.KW_ENCODING); } break; case 3: { - this.state = 5511; + this.state = 5519; this.match(PostgreSqlParser.KW_LOCATION); } break; case 4: { - this.state = 5512; + this.state = 5520; this.match(PostgreSqlParser.KW_OWNER); } break; case 5: { - this.state = 5513; + this.state = 5521; this.match(PostgreSqlParser.KW_TABLESPACE); } break; case 6: { - this.state = 5514; + this.state = 5522; this.match(PostgreSqlParser.KW_TEMPLATE); } break; case 7: { - this.state = 5515; + this.state = 5523; this.identifier(); } break; } - this.state = 5519; + this.state = 5527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 5518; + this.state = 5526; this.match(PostgreSqlParser.EQUAL); } } - this.state = 5524; + this.state = 5532; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 692, this.context) ) { case 1: { - this.state = 5521; + this.state = 5529; this.signedConst(); } break; case 2: { - this.state = 5522; + this.state = 5530; this.booleanOrString(); } break; case 3: { - this.state = 5523; + this.state = 5531; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -30604,27 +30610,27 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5526; + this.state = 5534; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5527; + this.state = 5535; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5528; + this.state = 5536; this.databaseName(); - this.state = 5544; + this.state = 5552; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { case 1: { - this.state = 5532; + this.state = 5540; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 693, this.context) ) { case 1: { - this.state = 5529; + this.state = 5537; this.match(PostgreSqlParser.KW_SET); - this.state = 5530; + this.state = 5538; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 5531; + this.state = 5539; this.tableSpaceName(); } break; @@ -30633,22 +30639,22 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5542; + this.state = 5550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: { - this.state = 5535; + this.state = 5543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5534; + this.state = 5542; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 5538; + this.state = 5546; this.errorHandler.sync(this); alternative = 1; do { @@ -30656,7 +30662,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5537; + this.state = 5545; this.createDbOptItem(); } } @@ -30664,7 +30670,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5540; + this.state = 5548; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30696,18 +30702,18 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5546; + this.state = 5554; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5547; + this.state = 5555; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5548; + this.state = 5556; this.databaseName(); - this.state = 5550; + this.state = 5558; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 698, this.context) ) { case 1: { - this.state = 5549; + this.state = 5557; this.setOrResetClause(); } break; @@ -30734,15 +30740,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5552; + this.state = 5560; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5553; + this.state = 5561; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 5554; + this.state = 5562; this.anyName(); - this.state = 5555; + this.state = 5563; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5556; + this.state = 5564; this.match(PostgreSqlParser.KW_VERSION); } } @@ -30767,11 +30773,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5558; + this.state = 5566; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5559; + this.state = 5567; this.match(PostgreSqlParser.KW_SYSTEM); - this.state = 5560; + this.state = 5568; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30780,7 +30786,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5561; + this.state = 5569; this.genericSet(); } } @@ -30806,37 +30812,37 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5563; + this.state = 5571; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5564; + this.state = 5572; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5565; + this.state = 5573; this.anyName(); - this.state = 5567; + this.state = 5575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5566; + this.state = 5574; this.match(PostgreSqlParser.KW_AS); } } - this.state = 5569; + this.state = 5577; this.typename(); - this.state = 5573; + this.state = 5581; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5570; + this.state = 5578; this.colConstraint(); } } } - this.state = 5575; + this.state = 5583; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); } @@ -30863,24 +30869,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5576; + this.state = 5584; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5577; + this.state = 5585; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5578; + this.state = 5586; this.anyName(); - this.state = 5601; + this.state = 5609; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 704, this.context) ) { case 1: { - this.state = 5579; + this.state = 5587; this.alterColumnDefault(); } break; case 2: { - this.state = 5580; + this.state = 5588; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30889,56 +30895,56 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5581; + this.state = 5589; this.match(PostgreSqlParser.KW_NOT); - this.state = 5582; + this.state = 5590; this.match(PostgreSqlParser.KW_NULL); } break; case 3: { - this.state = 5583; + this.state = 5591; this.match(PostgreSqlParser.KW_ADD); - this.state = 5586; + this.state = 5594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 5584; + this.state = 5592; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5585; + this.state = 5593; this.colId(); } } - this.state = 5588; + this.state = 5596; this.constraintElem(); } break; case 4: { - this.state = 5589; + this.state = 5597; this.match(PostgreSqlParser.KW_DROP); - this.state = 5590; + this.state = 5598; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5592; + this.state = 5600; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { case 1: { - this.state = 5591; + this.state = 5599; this.ifExists(); } break; } - this.state = 5594; + this.state = 5602; this.colId(); - this.state = 5596; + this.state = 5604; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 703, this.context) ) { case 1: { - this.state = 5595; + this.state = 5603; this.optDropBehavior(); } break; @@ -30947,11 +30953,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 5598; + this.state = 5606; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 5599; + this.state = 5607; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5600; + this.state = 5608; this.colId(); } break; @@ -30978,17 +30984,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5603; + this.state = 5611; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5604; + this.state = 5612; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5605; + this.state = 5613; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5606; + this.state = 5614; this.match(PostgreSqlParser.KW_DICTIONARY); - this.state = 5607; + this.state = 5615; this.anyName(); - this.state = 5608; + this.state = 5616; this.definition(); } } @@ -31011,23 +31017,23 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 492, PostgreSqlParser.RULE_alterSearchConfigurationStmt); let _la: number; try { - this.state = 5651; + this.state = 5659; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5610; + this.state = 5618; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5611; + this.state = 5619; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5612; + this.state = 5620; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5613; + this.state = 5621; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5614; + this.state = 5622; this.anyName(); - this.state = 5615; + this.state = 5623; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 138)) { this.errorHandler.recoverInline(this); @@ -31036,87 +31042,87 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5616; + this.state = 5624; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5617; + this.state = 5625; this.match(PostgreSqlParser.KW_FOR); - this.state = 5618; + this.state = 5626; this.nameList(); - this.state = 5619; + this.state = 5627; this.match(PostgreSqlParser.KW_WITH); - this.state = 5620; + this.state = 5628; this.anyNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5622; + this.state = 5630; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5623; + this.state = 5631; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5624; + this.state = 5632; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5625; + this.state = 5633; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5626; + this.state = 5634; this.anyName(); - this.state = 5627; + this.state = 5635; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5628; + this.state = 5636; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5631; + this.state = 5639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5629; + this.state = 5637; this.match(PostgreSqlParser.KW_FOR); - this.state = 5630; + this.state = 5638; this.nameList(); } } - this.state = 5633; + this.state = 5641; this.match(PostgreSqlParser.KW_REPLACE); - this.state = 5634; + this.state = 5642; this.anyName(); - this.state = 5635; + this.state = 5643; this.match(PostgreSqlParser.KW_WITH); - this.state = 5636; + this.state = 5644; this.anyName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5638; + this.state = 5646; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5639; + this.state = 5647; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5640; + this.state = 5648; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5641; + this.state = 5649; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5642; + this.state = 5650; this.anyName(); - this.state = 5643; + this.state = 5651; this.match(PostgreSqlParser.KW_DROP); - this.state = 5644; + this.state = 5652; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5646; + this.state = 5654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5645; + this.state = 5653; this.ifExists(); } } - this.state = 5648; + this.state = 5656; this.match(PostgreSqlParser.KW_FOR); - this.state = 5649; + this.state = 5657; this.nameList(); } break; @@ -31143,33 +31149,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5653; + this.state = 5661; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5655; + this.state = 5663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5654; + this.state = 5662; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 5657; + this.state = 5665; this.match(PostgreSqlParser.KW_CONVERSION); - this.state = 5658; + this.state = 5666; this.anyName(); - this.state = 5659; + this.state = 5667; this.match(PostgreSqlParser.KW_FOR); - this.state = 5660; + this.state = 5668; this.stringConst(); - this.state = 5661; + this.state = 5669; this.match(PostgreSqlParser.KW_TO); - this.state = 5662; + this.state = 5670; this.stringConst(); - this.state = 5663; + this.state = 5671; this.match(PostgreSqlParser.KW_FROM); - this.state = 5664; + this.state = 5672; this.anyName(); } } @@ -31192,37 +31198,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 496, PostgreSqlParser.RULE_clusterStmt); let _la: number; try { - this.state = 5691; + this.state = 5699; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5666; + this.state = 5674; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 5668; + this.state = 5676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5667; + this.state = 5675; this.optVerbose(); } } - this.state = 5674; + this.state = 5682; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { case 1: { - this.state = 5670; + this.state = 5678; this.tableName(); - this.state = 5672; + this.state = 5680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5671; + this.state = 5679; this.tableAccessMethodClause(); } } @@ -31235,38 +31241,38 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5676; + this.state = 5684; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 5677; + this.state = 5685; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5678; + this.state = 5686; this.optVerbose(); - this.state = 5683; + this.state = 5691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5679; + this.state = 5687; this.match(PostgreSqlParser.COMMA); - this.state = 5680; + this.state = 5688; this.optVerbose(); } } - this.state = 5685; + this.state = 5693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5686; + this.state = 5694; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5687; + this.state = 5695; this.tableName(); - this.state = 5689; + this.state = 5697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5688; + this.state = 5696; this.tableAccessMethodClause(); } } @@ -31296,50 +31302,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5693; + this.state = 5701; this.match(PostgreSqlParser.KW_VACUUM); - this.state = 5709; + this.state = 5717; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { case 1: { { - this.state = 5695; + this.state = 5703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 5694; + this.state = 5702; this.match(PostgreSqlParser.KW_FULL); } } - this.state = 5698; + this.state = 5706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 5697; + this.state = 5705; this.match(PostgreSqlParser.KW_FREEZE); } } - this.state = 5701; + this.state = 5709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5700; + this.state = 5708; this.optVerbose(); } } - this.state = 5704; + this.state = 5712; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: { - this.state = 5703; + this.state = 5711; this.analyzeKeyword(); } break; @@ -31349,12 +31355,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5707; + this.state = 5715; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { case 1: { - this.state = 5706; + this.state = 5714; this.explainOptionList(); } break; @@ -31362,12 +31368,12 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5712; + this.state = 5720; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 721, this.context) ) { case 1: { - this.state = 5711; + this.state = 5719; this.vacuumRelationList(); } break; @@ -31395,19 +31401,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5714; + this.state = 5722; this.analyzeKeyword(); - this.state = 5729; + this.state = 5737; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 724, this.context) ) { case 1: { - this.state = 5716; + this.state = 5724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5715; + this.state = 5723; this.optVerbose(); } } @@ -31416,37 +31422,37 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5718; + this.state = 5726; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5719; + this.state = 5727; this.analyzeOptionElem(); - this.state = 5724; + this.state = 5732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5720; + this.state = 5728; this.match(PostgreSqlParser.COMMA); - this.state = 5721; + this.state = 5729; this.analyzeOptionElem(); } } - this.state = 5726; + this.state = 5734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5727; + this.state = 5735; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5732; + this.state = 5740; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { case 1: { - this.state = 5731; + this.state = 5739; this.vacuumRelationList(); } break; @@ -31474,7 +31480,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5734; + this.state = 5742; _la = this.tokenStream.LA(1); if(!(_la === 31 || _la === 32)) { this.errorHandler.recoverInline(this); @@ -31505,7 +31511,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5738; + this.state = 5746; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -31924,21 +31930,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5736; + this.state = 5744; this.nonReservedWord(); } break; case PostgreSqlParser.KW_ANALYSE: case PostgreSqlParser.KW_ANALYZE: { - this.state = 5737; + this.state = 5745; this.analyzeKeyword(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5742; + this.state = 5750; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -32360,7 +32366,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5740; + this.state = 5748; this.booleanOrString(); } break; @@ -32369,7 +32375,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5741; + this.state = 5749; this.numericOnly(); } break; @@ -32400,14 +32406,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 506, PostgreSqlParser.RULE_analyzeOptionElem); let _la: number; try { - this.state = 5753; + this.state = 5761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VERBOSE: case PostgreSqlParser.KW_SKIP_LOCKED: this.enterOuterAlt(localContext, 1); { - this.state = 5744; + this.state = 5752; _la = this.tokenStream.LA(1); if(!(_la === 128 || _la === 547)) { this.errorHandler.recoverInline(this); @@ -32416,12 +32422,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5746; + this.state = 5754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5745; + this.state = 5753; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32438,9 +32444,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 5748; + this.state = 5756; this.match(PostgreSqlParser.KW_BUFFER_USAGE_LIMIT); - this.state = 5751; + this.state = 5759; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PLUS: @@ -32448,7 +32454,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5749; + this.state = 5757; this.numericOnly(); } break; @@ -32457,7 +32463,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5750; + this.state = 5758; this.stringConst(); } break; @@ -32491,14 +32497,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5755; + this.state = 5763; this.match(PostgreSqlParser.KW_VERBOSE); - this.state = 5757; + this.state = 5765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5756; + this.state = 5764; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32532,14 +32538,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5759; + this.state = 5767; this.tableName(); - this.state = 5761; + this.state = 5769; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 732, this.context) ) { case 1: { - this.state = 5760; + this.state = 5768; this.optColumnList(); } break; @@ -32567,21 +32573,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5763; + this.state = 5771; this.vacuumRelation(); - this.state = 5768; + this.state = 5776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5764; + this.state = 5772; this.match(PostgreSqlParser.COMMA); - this.state = 5765; + this.state = 5773; this.vacuumRelation(); } } - this.state = 5770; + this.state = 5778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32608,25 +32614,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5771; + this.state = 5779; this.match(PostgreSqlParser.KW_EXPLAIN); - this.state = 5782; + this.state = 5790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { case 1: { - this.state = 5772; + this.state = 5780; this.explainOptionList(); } break; case 2: { - this.state = 5774; + this.state = 5782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5773; + this.state = 5781; this.match(PostgreSqlParser.KW_VERBOSE); } } @@ -32635,19 +32641,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 5780; + this.state = 5788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31 || _la === 32) { { - this.state = 5776; + this.state = 5784; this.analyzeKeyword(); - this.state = 5778; + this.state = 5786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5777; + this.state = 5785; this.optVerbose(); } } @@ -32658,7 +32664,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5784; + this.state = 5792; this.explainableStmt(); } } @@ -32680,69 +32686,69 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExplainableStmtContext(this.context, this.state); this.enterRule(localContext, 516, PostgreSqlParser.RULE_explainableStmt); try { - this.state = 5795; + this.state = 5803; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5786; + this.state = 5794; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5787; + this.state = 5795; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5788; + this.state = 5796; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5789; + this.state = 5797; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5790; + this.state = 5798; this.declareCursorStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5791; + this.state = 5799; this.createAsStmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5792; + this.state = 5800; this.createMaterializedViewStmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5793; + this.state = 5801; this.refreshMaterializedViewStmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5794; + this.state = 5802; this.executeStmt(); } break; @@ -32769,27 +32775,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5797; + this.state = 5805; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5798; + this.state = 5806; this.vacAnalyzeOptionElem(); - this.state = 5803; + this.state = 5811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5799; + this.state = 5807; this.match(PostgreSqlParser.COMMA); - this.state = 5800; + this.state = 5808; this.vacAnalyzeOptionElem(); } } - this.state = 5805; + this.state = 5813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5806; + this.state = 5814; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32814,23 +32820,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5808; + this.state = 5816; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5809; + this.state = 5817; this.colId(); - this.state = 5811; + this.state = 5819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5810; + this.state = 5818; this.prepTypeClause(); } } - this.state = 5813; + this.state = 5821; this.match(PostgreSqlParser.KW_AS); - this.state = 5814; + this.state = 5822; this.preParableStmt(); } } @@ -32855,27 +32861,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5816; + this.state = 5824; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5817; + this.state = 5825; this.typename(); - this.state = 5822; + this.state = 5830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5818; + this.state = 5826; this.match(PostgreSqlParser.COMMA); - this.state = 5819; + this.state = 5827; this.typename(); } } - this.state = 5824; + this.state = 5832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5825; + this.state = 5833; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32897,41 +32903,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PreParableStmtContext(this.context, this.state); this.enterRule(localContext, 524, PostgreSqlParser.RULE_preParableStmt); try { - this.state = 5832; + this.state = 5840; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 742, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5827; + this.state = 5835; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5828; + this.state = 5836; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5829; + this.state = 5837; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5830; + this.state = 5838; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5831; + this.state = 5839; this.mergeStmt(); } break; @@ -32956,22 +32962,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 526, PostgreSqlParser.RULE_executeStmt); let _la: number; try { - this.state = 5857; + this.state = 5865; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 1); { - this.state = 5834; + this.state = 5842; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5835; + this.state = 5843; this.colId(); - this.state = 5837; + this.state = 5845; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { case 1: { - this.state = 5836; + this.state = 5844; this.executeParamClause(); } break; @@ -32981,54 +32987,54 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 2); { - this.state = 5839; + this.state = 5847; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5841; + this.state = 5849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 5840; + this.state = 5848; this.optTemp(); } } - this.state = 5843; + this.state = 5851; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5845; + this.state = 5853; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 5844; + this.state = 5852; this.ifNotExists(); } break; } - this.state = 5847; + this.state = 5855; this.createAsTarget(); - this.state = 5848; + this.state = 5856; this.match(PostgreSqlParser.KW_AS); - this.state = 5849; + this.state = 5857; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5850; + this.state = 5858; this.colId(); - this.state = 5852; + this.state = 5860; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 746, this.context) ) { case 1: { - this.state = 5851; + this.state = 5859; this.executeParamClause(); } break; } - this.state = 5855; + this.state = 5863; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { case 1: { - this.state = 5854; + this.state = 5862; this.optWithData(); } break; @@ -33059,11 +33065,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5859; + this.state = 5867; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5860; + this.state = 5868; this.exprList(); - this.state = 5861; + this.state = 5869; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -33087,19 +33093,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5863; + this.state = 5871; this.match(PostgreSqlParser.KW_DEALLOCATE); - this.state = 5865; + this.state = 5873; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { case 1: { - this.state = 5864; + this.state = 5872; this.match(PostgreSqlParser.KW_PREPARE); } break; } - this.state = 5869; + this.state = 5877; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -33497,13 +33503,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5867; + this.state = 5875; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 5868; + this.state = 5876; this.match(PostgreSqlParser.KW_ALL); } break; @@ -33534,58 +33540,58 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InsertStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5872; + this.state = 5880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5871; + this.state = 5879; this.withClause(); } } - this.state = 5874; + this.state = 5882; this.match(PostgreSqlParser.KW_INSERT); - this.state = 5875; + this.state = 5883; this.match(PostgreSqlParser.KW_INTO); - this.state = 5876; + this.state = 5884; this.tableName(); - this.state = 5879; + this.state = 5887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5877; + this.state = 5885; this.match(PostgreSqlParser.KW_AS); - this.state = 5878; + this.state = 5886; this.colId(); } } - this.state = 5881; + this.state = 5889; this.insertRest(); - this.state = 5903; + this.state = 5911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 5882; + this.state = 5890; this.match(PostgreSqlParser.KW_ON); - this.state = 5883; - this.match(PostgreSqlParser.KW_CONFLICT); this.state = 5891; + this.match(PostgreSqlParser.KW_CONFLICT); + this.state = 5899; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 5884; + this.state = 5892; this.indexParams(); - this.state = 5886; + this.state = 5894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5885; + this.state = 5893; this.whereClause(); } } @@ -33594,11 +33600,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_ON: { - this.state = 5888; + this.state = 5896; this.match(PostgreSqlParser.KW_ON); - this.state = 5889; + this.state = 5897; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5890; + this.state = 5898; this.colId(); } break; @@ -33607,25 +33613,25 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 5893; - this.match(PostgreSqlParser.KW_DO); this.state = 5901; + this.match(PostgreSqlParser.KW_DO); + this.state = 5909; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5894; + this.state = 5902; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5895; + this.state = 5903; this.match(PostgreSqlParser.KW_SET); - this.state = 5896; + this.state = 5904; this.setClauseList(); - this.state = 5898; + this.state = 5906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5897; + this.state = 5905; this.whereClause(); } } @@ -33634,7 +33640,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_NOTHING: { - this.state = 5900; + this.state = 5908; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -33644,12 +33650,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5906; + this.state = 5914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5905; + this.state = 5913; this.returningClause(); } } @@ -33677,28 +33683,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5912; + this.state = 5920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { case 1: { - this.state = 5908; + this.state = 5916; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5909; + this.state = 5917; this.insertColumnList(); - this.state = 5910; + this.state = 5918; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5917; + this.state = 5925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 5914; + this.state = 5922; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 5915; + this.state = 5923; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -33707,23 +33713,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5916; + this.state = 5924; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 5921; + this.state = 5929; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 761, this.context) ) { case 1: { - this.state = 5919; + this.state = 5927; this.defaultValuesOrValues(); } break; case 2: { - this.state = 5920; + this.state = 5928; this.selectStmt(); } break; @@ -33751,21 +33757,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5923; + this.state = 5931; this.insertColumnItem(); - this.state = 5928; + this.state = 5936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5924; + this.state = 5932; this.match(PostgreSqlParser.COMMA); - this.state = 5925; + this.state = 5933; this.insertColumnItem(); } } - this.state = 5930; + this.state = 5938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33791,9 +33797,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5931; + this.state = 5939; this.columnName(); - this.state = 5932; + this.state = 5940; this.optIndirection(); } } @@ -33817,9 +33823,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5934; + this.state = 5942; this.match(PostgreSqlParser.KW_RETURNING); - this.state = 5935; + this.state = 5943; this.targetList(); } } @@ -33844,50 +33850,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5938; + this.state = 5946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5937; + this.state = 5945; this.withClause(); } } - this.state = 5940; + this.state = 5948; this.match(PostgreSqlParser.KW_DELETE); - this.state = 5941; + this.state = 5949; this.match(PostgreSqlParser.KW_FROM); - this.state = 5942; + this.state = 5950; this.relationExprOptAlias(); - this.state = 5945; + this.state = 5953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5943; + this.state = 5951; this.match(PostgreSqlParser.KW_USING); - this.state = 5944; + this.state = 5952; this.fromList(); } } - this.state = 5948; + this.state = 5956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5947; + this.state = 5955; this.whereOrCurrentClause(); } } - this.state = 5951; + this.state = 5959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5950; + this.state = 5958; this.returningClause(); } } @@ -33915,34 +33921,34 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5953; + this.state = 5961; this.match(PostgreSqlParser.KW_LOCK); - this.state = 5955; + this.state = 5963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 5954; + this.state = 5962; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 5957; + this.state = 5965; this.relationExprList(); - this.state = 5972; + this.state = 5980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 5958; + this.state = 5966; this.match(PostgreSqlParser.KW_IN); - this.state = 5969; + this.state = 5977; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ACCESS: case PostgreSqlParser.KW_ROW: { - this.state = 5959; + this.state = 5967; _la = this.tokenStream.LA(1); if(!(_la === 131 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -33951,7 +33957,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5960; + this.state = 5968; _la = this.tokenStream.LA(1); if(!(_la === 201 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -33964,24 +33970,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SHARE: { - this.state = 5961; + this.state = 5969; this.match(PostgreSqlParser.KW_SHARE); - this.state = 5966; + this.state = 5974; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5962; + this.state = 5970; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5963; + this.state = 5971; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; case PostgreSqlParser.KW_ROW: { - this.state = 5964; + this.state = 5972; this.match(PostgreSqlParser.KW_ROW); - this.state = 5965; + this.state = 5973; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; @@ -33994,24 +34000,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_EXCLUSIVE: { - this.state = 5968; + this.state = 5976; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5971; + this.state = 5979; this.match(PostgreSqlParser.KW_MODE); } } - this.state = 5975; + this.state = 5983; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: { - this.state = 5974; + this.state = 5982; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -34039,50 +34045,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5978; + this.state = 5986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5977; + this.state = 5985; this.withClause(); } } - this.state = 5980; + this.state = 5988; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5981; + this.state = 5989; this.relationExprOptAlias(); - this.state = 5982; + this.state = 5990; this.match(PostgreSqlParser.KW_SET); - this.state = 5983; + this.state = 5991; this.setClauseList(); - this.state = 5985; + this.state = 5993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 5984; + this.state = 5992; this.fromClause(); } } - this.state = 5988; + this.state = 5996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5987; + this.state = 5995; this.whereOrCurrentClause(); } } - this.state = 5991; + this.state = 5999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5990; + this.state = 5998; this.returningClause(); } } @@ -34110,21 +34116,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5993; + this.state = 6001; this.setClause(); - this.state = 5998; + this.state = 6006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5994; + this.state = 6002; this.match(PostgreSqlParser.COMMA); - this.state = 5995; + this.state = 6003; this.setClause(); } } - this.state = 6000; + this.state = 6008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34148,57 +34154,57 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetClauseContext(this.context, this.state); this.enterRule(localContext, 550, PostgreSqlParser.RULE_setClause); try { - this.state = 6019; + this.state = 6027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6001; + this.state = 6009; this.insertColumnItem(); - this.state = 6002; + this.state = 6010; this.match(PostgreSqlParser.EQUAL); - this.state = 6003; + this.state = 6011; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6005; + this.state = 6013; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6006; + this.state = 6014; this.insertColumnList(); - this.state = 6007; + this.state = 6015; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6008; + this.state = 6016; this.match(PostgreSqlParser.EQUAL); - this.state = 6017; + this.state = 6025; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { case 1: { - this.state = 6010; + this.state = 6018; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { case 1: { - this.state = 6009; + this.state = 6017; this.match(PostgreSqlParser.KW_ROW); } break; } - this.state = 6012; + this.state = 6020; this.expression(); } break; case 2: { - this.state = 6013; + this.state = 6021; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6014; + this.state = 6022; this.selectClause(); - this.state = 6015; + this.state = 6023; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -34228,47 +34234,47 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6021; + this.state = 6029; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 6022; + this.state = 6030; this.colId(); { - this.state = 6031; + this.state = 6039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 107 || _la === 240 || _la === 269 || _la === 324) { { - this.state = 6029; + this.state = 6037; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_SCROLL: { { - this.state = 6024; + this.state = 6032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 6023; + this.state = 6031; this.match(PostgreSqlParser.KW_NO); } } - this.state = 6026; + this.state = 6034; this.match(PostgreSqlParser.KW_SCROLL); } } break; case PostgreSqlParser.KW_BINARY: { - this.state = 6027; + this.state = 6035; this.match(PostgreSqlParser.KW_BINARY); } break; case PostgreSqlParser.KW_INSENSITIVE: { - this.state = 6028; + this.state = 6036; this.match(PostgreSqlParser.KW_INSENSITIVE); } break; @@ -34276,19 +34282,19 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6033; + this.state = 6041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6034; + this.state = 6042; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 6037; + this.state = 6045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 6035; + this.state = 6043; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -34297,14 +34303,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6036; + this.state = 6044; this.match(PostgreSqlParser.KW_HOLD); } } - this.state = 6039; + this.state = 6047; this.match(PostgreSqlParser.KW_FOR); - this.state = 6040; + this.state = 6048; this.selectStmt(); } } @@ -34326,14 +34332,14 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SelectStmtContext(this.context, this.state); this.enterRule(localContext, 554, PostgreSqlParser.RULE_selectStmt); try { - this.state = 6044; + this.state = 6052; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { case 1: localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6042; + this.state = 6050; this.selectNoParens(); } break; @@ -34341,7 +34347,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6043; + this.state = 6051; this.selectWithParens(); } break; @@ -34367,25 +34373,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6046; + this.state = 6054; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6049; + this.state = 6057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: { - this.state = 6047; + this.state = 6055; this.selectNoParens(); } break; case 2: { - this.state = 6048; + this.state = 6056; this.selectWithParens(); } break; } - this.state = 6051; + this.state = 6059; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -34410,41 +34416,41 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6054; + this.state = 6062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 6053; + this.state = 6061; this.withClause(); } } - this.state = 6056; + this.state = 6064; this.selectClause(); - this.state = 6058; + this.state = 6066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6057; + this.state = 6065; this.sortClause(); } } - this.state = 6068; + this.state = 6076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { case 1: { - this.state = 6060; + this.state = 6068; this.forLockingClause(); - this.state = 6062; + this.state = 6070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { case 1: { - this.state = 6061; + this.state = 6069; this.selectLimit(); } break; @@ -34453,14 +34459,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6064; + this.state = 6072; this.selectLimit(); - this.state = 6066; + this.state = 6074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 6065; + this.state = 6073; this.forLockingClause(); } } @@ -34488,20 +34494,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SelectClauseContext(this.context, this.state); this.enterRule(localContext, 560, PostgreSqlParser.RULE_selectClause); try { - this.state = 6072; + this.state = 6080; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6070; + this.state = 6078; this.simpleSelect(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6071; + this.state = 6079; this.selectWithParens(); } break; @@ -34528,34 +34534,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6096; + this.state = 6104; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 6074; + this.state = 6082; this.match(PostgreSqlParser.KW_SELECT); - this.state = 6084; + this.state = 6092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 795, this.context) ) { case 1: { - this.state = 6076; + this.state = 6084; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { case 1: { - this.state = 6075; + this.state = 6083; this.match(PostgreSqlParser.KW_ALL); } break; } - this.state = 6079; + this.state = 6087; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 793, this.context) ) { case 1: { - this.state = 6078; + this.state = 6086; this.intoClause(); } break; @@ -34564,12 +34570,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6082; + this.state = 6090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { case 1: { - this.state = 6081; + this.state = 6089; this.distinctClause(); } break; @@ -34577,42 +34583,42 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6086; + this.state = 6094; this.sqlExpression(); } break; case PostgreSqlParser.KW_VALUES: { - this.state = 6087; + this.state = 6095; this.valuesClause(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 6088; + this.state = 6096; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6089; + this.state = 6097; this.relationExpr(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6090; + this.state = 6098; this.selectWithParens(); - this.state = 6091; + this.state = 6099; this.setOperatorWithAllOrDistinct(); - this.state = 6094; + this.state = 6102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { case 1: { - this.state = 6092; + this.state = 6100; this.simpleSelect(); } break; case 2: { - this.state = 6093; + this.state = 6101; this.selectWithParens(); } break; @@ -34622,27 +34628,27 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6105; + this.state = 6113; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6098; + this.state = 6106; this.setOperatorWithAllOrDistinct(); - this.state = 6101; + this.state = 6109; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { case 1: { - this.state = 6099; + this.state = 6107; this.simpleSelect(); } break; case 2: { - this.state = 6100; + this.state = 6108; this.selectWithParens(); } break; @@ -34650,7 +34656,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 6107; + this.state = 6115; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); } @@ -34677,7 +34683,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6108; + this.state = 6116; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 70 || _la === 97)) { this.errorHandler.recoverInline(this); @@ -34686,12 +34692,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6110; + this.state = 6118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 56) { { - this.state = 6109; + this.state = 6117; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -34726,36 +34732,36 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6112; + this.state = 6120; this.match(PostgreSqlParser.KW_WITH); - this.state = 6114; + this.state = 6122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 801, this.context) ) { case 1: { - this.state = 6113; + this.state = 6121; this.match(PostgreSqlParser.KW_RECURSIVE); } break; } { - this.state = 6116; + this.state = 6124; this.commonTableExpr(); - this.state = 6121; + this.state = 6129; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6117; + this.state = 6125; this.match(PostgreSqlParser.COMMA); - this.state = 6118; + this.state = 6126; this.commonTableExpr(); } } } - this.state = 6123; + this.state = 6131; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); } @@ -34783,62 +34789,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6124; + this.state = 6132; this.colId(); - this.state = 6126; + this.state = 6134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 6125; + this.state = 6133; this.optColumnList(); } } - this.state = 6128; + this.state = 6136; this.match(PostgreSqlParser.KW_AS); - this.state = 6133; + this.state = 6141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77 || _la === 259) { { - this.state = 6130; + this.state = 6138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6129; + this.state = 6137; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6132; + this.state = 6140; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 6135; + this.state = 6143; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6136; + this.state = 6144; this.preParableStmt(); - this.state = 6137; + this.state = 6145; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6139; + this.state = 6147; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 806, this.context) ) { case 1: { - this.state = 6138; + this.state = 6146; this.searchClause(); } break; } - this.state = 6142; + this.state = 6150; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { case 1: { - this.state = 6141; + this.state = 6149; this.cycleClause(); } break; @@ -34866,9 +34872,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6144; + this.state = 6152; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 6145; + this.state = 6153; _la = this.tokenStream.LA(1); if(!(_la === 527 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -34877,15 +34883,15 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6146; + this.state = 6154; this.match(PostgreSqlParser.KW_FIRST); - this.state = 6147; + this.state = 6155; this.match(PostgreSqlParser.KW_BY); - this.state = 6148; + this.state = 6156; this.columnList(); - this.state = 6149; + this.state = 6157; this.match(PostgreSqlParser.KW_SET); - this.state = 6150; + this.state = 6158; this.columnName(); } } @@ -34910,33 +34916,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6152; + this.state = 6160; this.match(PostgreSqlParser.KW_CYCLE); - this.state = 6153; + this.state = 6161; this.columnList(); - this.state = 6154; + this.state = 6162; this.match(PostgreSqlParser.KW_SET); - this.state = 6155; + this.state = 6163; this.columnName(); - this.state = 6161; + this.state = 6169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 6156; + this.state = 6164; this.match(PostgreSqlParser.KW_TO); - this.state = 6157; + this.state = 6165; this.colId(); - this.state = 6158; + this.state = 6166; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6159; + this.state = 6167; this.colId(); } } - this.state = 6163; + this.state = 6171; this.match(PostgreSqlParser.KW_USING); - this.state = 6164; + this.state = 6172; this.columnName(); } } @@ -34960,30 +34966,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6166; + this.state = 6174; this.match(PostgreSqlParser.KW_INTO); - this.state = 6172; + this.state = 6180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 810, this.context) ) { case 1: { - this.state = 6168; + this.state = 6176; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { case 1: { - this.state = 6167; + this.state = 6175; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 6170; + this.state = 6178; this.optTempTableName(); } break; case 2: { - this.state = 6171; + this.state = 6179; this.exprList(); } break; @@ -35009,18 +35015,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 576, PostgreSqlParser.RULE_optTempTableName); let _la: number; try { - this.state = 6189; + this.state = 6197; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6175; + this.state = 6183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254) { { - this.state = 6174; + this.state = 6182; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -35032,7 +35038,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 6177; + this.state = 6185; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -35041,44 +35047,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6179; + this.state = 6187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 6178; + this.state = 6186; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 6181; + this.state = 6189; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6183; + this.state = 6191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { case 1: { - this.state = 6182; + this.state = 6190; this.match(PostgreSqlParser.KW_UNLOGGED); } break; } - this.state = 6186; + this.state = 6194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 6185; + this.state = 6193; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 6188; + this.state = 6196; this.tableNameCreate(); } break; @@ -35104,16 +35110,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6191; + this.state = 6199; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6194; + this.state = 6202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 816, this.context) ) { case 1: { - this.state = 6192; + this.state = 6200; this.match(PostgreSqlParser.KW_ON); - this.state = 6193; + this.state = 6201; this.executeParamClause(); } break; @@ -35141,25 +35147,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6196; + this.state = 6204; this.match(PostgreSqlParser.KW_ORDER); - this.state = 6197; + this.state = 6205; this.match(PostgreSqlParser.KW_BY); - this.state = 6198; + this.state = 6206; this.sortBy(); - this.state = 6203; + this.state = 6211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6199; + this.state = 6207; this.match(PostgreSqlParser.COMMA); - this.state = 6200; + this.state = 6208; this.sortBy(); } } - this.state = 6205; + this.state = 6213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35186,22 +35192,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6206; + this.state = 6214; this.columnExprNoParen(); - this.state = 6210; + this.state = 6218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 818, this.context) ) { case 1: { - this.state = 6207; + this.state = 6215; this.match(PostgreSqlParser.KW_USING); - this.state = 6208; + this.state = 6216; this.qualAllOp(); } break; case 2: { - this.state = 6209; + this.state = 6217; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -35213,14 +35219,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6214; + this.state = 6222; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 819, this.context) ) { case 1: { - this.state = 6212; + this.state = 6220; this.match(PostgreSqlParser.KW_NULLS); - this.state = 6213; + this.state = 6221; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -35253,20 +35259,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 584, PostgreSqlParser.RULE_selectLimit); let _la: number; try { - this.state = 6227; + this.state = 6235; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OFFSET: this.enterOuterAlt(localContext, 1); { - this.state = 6216; + this.state = 6224; this.offsetClause(); - this.state = 6218; + this.state = 6226; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { case 1: { - this.state = 6217; + this.state = 6225; this.fetchClause(); } break; @@ -35277,30 +35283,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 6222; + this.state = 6230; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 6220; + this.state = 6228; this.limitClause(); } break; case PostgreSqlParser.KW_FETCH: { - this.state = 6221; + this.state = 6229; this.fetchClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6225; + this.state = 6233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6224; + this.state = 6232; this.offsetClause(); } } @@ -35332,9 +35338,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6229; + this.state = 6237; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 6232; + this.state = 6240; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -35780,27 +35786,27 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6230; + this.state = 6238; this.expression(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 6231; + this.state = 6239; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6236; + this.state = 6244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 6234; + this.state = 6242; this.match(PostgreSqlParser.COMMA); - this.state = 6235; + this.state = 6243; this.expression(); } } @@ -35828,9 +35834,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6238; + this.state = 6246; this.match(PostgreSqlParser.KW_FETCH); - this.state = 6239; + this.state = 6247; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -35840,17 +35846,17 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 6241; + this.state = 6249; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { case 1: { - this.state = 6240; + this.state = 6248; this.selectFetchFirstValue(); } break; } - this.state = 6243; + this.state = 6251; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -35859,20 +35865,20 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6247; + this.state = 6255; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ONLY: { - this.state = 6244; + this.state = 6252; this.match(PostgreSqlParser.KW_ONLY); } break; case PostgreSqlParser.KW_WITH: { - this.state = 6245; + this.state = 6253; this.match(PostgreSqlParser.KW_WITH); - this.state = 6246; + this.state = 6254; this.match(PostgreSqlParser.KW_TIES); } break; @@ -35903,16 +35909,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6249; + this.state = 6257; this.match(PostgreSqlParser.KW_OFFSET); - this.state = 6254; + this.state = 6262; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { case 1: { - this.state = 6250; + this.state = 6258; this.selectFetchFirstValue(); - this.state = 6251; + this.state = 6259; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -35925,7 +35931,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6253; + this.state = 6261; this.expression(); } break; @@ -35951,13 +35957,13 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 592, PostgreSqlParser.RULE_selectFetchFirstValue); let _la: number; try { - this.state = 6259; + this.state = 6267; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6256; + this.state = 6264; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -35966,7 +35972,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6257; + this.state = 6265; _la = this.tokenStream.LA(1); if(!(_la === 574 || _la === 576)) { this.errorHandler.recoverInline(this); @@ -35980,7 +35986,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6258; + this.state = 6266; this.primaryExpression(0); } break; @@ -36007,16 +36013,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6261; + this.state = 6269; this.match(PostgreSqlParser.KW_GROUP); - this.state = 6262; + this.state = 6270; this.match(PostgreSqlParser.KW_BY); - this.state = 6264; + this.state = 6272; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 830, this.context) ) { case 1: { - this.state = 6263; + this.state = 6271; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -36028,7 +36034,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6266; + this.state = 6274; this.groupByList(); } } @@ -36053,23 +36059,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6268; + this.state = 6276; this.groupByItem(); - this.state = 6273; + this.state = 6281; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6269; + this.state = 6277; this.match(PostgreSqlParser.COMMA); - this.state = 6270; + this.state = 6278; this.groupByItem(); } } } - this.state = 6275; + this.state = 6283; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); } @@ -36094,34 +36100,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 598, PostgreSqlParser.RULE_groupByItem); let _la: number; try { - this.state = 6299; + this.state = 6307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6276; + this.state = 6284; this.columnExprNoParen(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6277; + this.state = 6285; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6278; + this.state = 6286; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6280; + this.state = 6288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 468 || _la === 469) { { - this.state = 6279; + this.state = 6287; _la = this.tokenStream.LA(1); if(!(_la === 468 || _la === 469)) { this.errorHandler.recoverInline(this); @@ -36133,44 +36139,44 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 6282; + this.state = 6290; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 6283; + this.state = 6291; this.columnExprNoParen(); - this.state = 6288; + this.state = 6296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6284; + this.state = 6292; this.match(PostgreSqlParser.COMMA); - this.state = 6285; + this.state = 6293; this.columnExprNoParen(); } } - this.state = 6290; + this.state = 6298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6291; + this.state = 6299; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6293; + this.state = 6301; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6294; + this.state = 6302; this.match(PostgreSqlParser.KW_SETS); - this.state = 6295; + this.state = 6303; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6296; + this.state = 6304; this.groupByList(); - this.state = 6297; + this.state = 6305; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36195,95 +36201,95 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 600, PostgreSqlParser.RULE_forLockingClause); let _la: number; try { - this.state = 6329; + this.state = 6337; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6322; + this.state = 6330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6301; + this.state = 6309; this.match(PostgreSqlParser.KW_FOR); - this.state = 6311; + this.state = 6319; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_UPDATE: { - this.state = 6304; + this.state = 6312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 6302; + this.state = 6310; this.match(PostgreSqlParser.KW_NO); - this.state = 6303; + this.state = 6311; this.match(PostgreSqlParser.KW_KEY); } } - this.state = 6306; + this.state = 6314; this.match(PostgreSqlParser.KW_UPDATE); } break; case PostgreSqlParser.KW_KEY: case PostgreSqlParser.KW_SHARE: { - this.state = 6308; + this.state = 6316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 6307; + this.state = 6315; this.match(PostgreSqlParser.KW_KEY); } } - this.state = 6310; + this.state = 6318; this.match(PostgreSqlParser.KW_SHARE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6315; + this.state = 6323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: { - this.state = 6313; + this.state = 6321; this.match(PostgreSqlParser.KW_OF); - this.state = 6314; + this.state = 6322; this.qualifiedNameList(); } break; } - this.state = 6320; + this.state = 6328; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { case 1: { - this.state = 6317; + this.state = 6325; this.match(PostgreSqlParser.KW_NOWAIT); } break; case 2: { - this.state = 6318; + this.state = 6326; this.match(PostgreSqlParser.KW_SKIP); - this.state = 6319; + this.state = 6327; this.match(PostgreSqlParser.KW_LOCKED); } break; } } } - this.state = 6324; + this.state = 6332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 62); @@ -36292,11 +36298,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6326; + this.state = 6334; this.match(PostgreSqlParser.KW_FOR); - this.state = 6327; + this.state = 6335; this.match(PostgreSqlParser.KW_READ); - this.state = 6328; + this.state = 6336; this.match(PostgreSqlParser.KW_ONLY); } break; @@ -36323,23 +36329,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6331; + this.state = 6339; this.match(PostgreSqlParser.KW_VALUES); - this.state = 6332; + this.state = 6340; this.executeParamClause(); - this.state = 6337; + this.state = 6345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6333; + this.state = 6341; this.match(PostgreSqlParser.COMMA); - this.state = 6334; + this.state = 6342; this.executeParamClause(); } } - this.state = 6339; + this.state = 6347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36365,9 +36371,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6340; + this.state = 6348; this.match(PostgreSqlParser.KW_FROM); - this.state = 6341; + this.state = 6349; this.fromList(); } } @@ -36392,23 +36398,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6343; + this.state = 6351; this.tableRef(); - this.state = 6348; + this.state = 6356; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6344; + this.state = 6352; this.match(PostgreSqlParser.COMMA); - this.state = 6345; + this.state = 6353; this.tableRef(); } } } - this.state = 6350; + this.state = 6358; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); } @@ -36436,61 +36442,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6414; + this.state = 6409; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 856, this.context) ) { case 1: { - this.state = 6365; + this.state = 6373; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: { - this.state = 6351; + this.state = 6359; this.relationExpr(); } break; case 2: { { - this.state = 6353; + this.state = 6361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 6352; + this.state = 6360; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 6355; + this.state = 6363; this.viewName(); - this.state = 6357; + this.state = 6365; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 845, this.context) ) { case 1: { - this.state = 6356; + this.state = 6364; this.match(PostgreSqlParser.STAR); } break; } - this.state = 6360; + this.state = 6368; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { case 1: { - this.state = 6359; + this.state = 6367; this.columnList(); } break; } - this.state = 6363; + this.state = 6371; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { case 1: { - this.state = 6362; + this.state = 6370; this.whereClause(); } break; @@ -36499,22 +36505,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6368; + this.state = 6376; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { case 1: { - this.state = 6367; + this.state = 6375; this.aliasClause(); } break; } - this.state = 6371; + this.state = 6379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 472) { { - this.state = 6370; + this.state = 6378; this.tableSampleClause(); } } @@ -36523,106 +36529,56 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6374; + this.state = 6382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 72) { { - this.state = 6373; + this.state = 6381; this.match(PostgreSqlParser.KW_LATERAL); } } - this.state = 6388; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { - case 1: - { - this.state = 6376; - this.xmlTable(); - this.state = 6378; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { - case 1: - { - this.state = 6377; - this.aliasClause(); - } - break; - } - } - break; - case 2: - { - this.state = 6380; - this.funcTable(); - this.state = 6382; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { - case 1: - { - this.state = 6381; - this.funcAliasClause(); - } - break; - } - } - break; - case 3: - { - this.state = 6384; - this.selectWithParens(); - this.state = 6386; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 854, this.context) ) { - case 1: - { - this.state = 6385; - this.aliasClause(); - } - break; - } - } - break; - } + this.state = 6384; + this.expressionTable(); } break; case 3: { - this.state = 6390; + this.state = 6385; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6391; + this.state = 6386; this.tableRef(); - this.state = 6408; + this.state = 6403; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CROSS: { - this.state = 6392; + this.state = 6387; this.match(PostgreSqlParser.KW_CROSS); - this.state = 6393; + this.state = 6388; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6394; + this.state = 6389; this.tableRef(); } break; case PostgreSqlParser.KW_NATURAL: { - this.state = 6395; + this.state = 6390; this.match(PostgreSqlParser.KW_NATURAL); - this.state = 6397; + this.state = 6392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6396; + this.state = 6391; this.joinType(); } } - this.state = 6399; + this.state = 6394; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6400; + this.state = 6395; this.tableRef(); } break; @@ -36632,21 +36588,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEFT: case PostgreSqlParser.KW_RIGHT: { - this.state = 6402; + this.state = 6397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6401; + this.state = 6396; this.joinType(); } } - this.state = 6404; + this.state = 6399; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6405; + this.state = 6400; this.tableRef(); - this.state = 6406; + this.state = 6401; this.joinQual(); } break; @@ -36655,14 +36611,14 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 6410; + this.state = 6405; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6412; + this.state = 6407; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { case 1: { - this.state = 6411; + this.state = 6406; this.aliasClause(); } break; @@ -36670,42 +36626,42 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6434; + this.state = 6429; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 864, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 6432; + this.state = 6427; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CROSS: { - this.state = 6416; + this.state = 6411; this.match(PostgreSqlParser.KW_CROSS); - this.state = 6417; + this.state = 6412; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6418; + this.state = 6413; this.tableRef(); } break; case PostgreSqlParser.KW_NATURAL: { - this.state = 6419; + this.state = 6414; this.match(PostgreSqlParser.KW_NATURAL); - this.state = 6421; + this.state = 6416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6420; + this.state = 6415; this.joinType(); } } - this.state = 6423; + this.state = 6418; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6424; + this.state = 6419; this.tableRef(); } break; @@ -36715,21 +36671,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEFT: case PostgreSqlParser.KW_RIGHT: { - this.state = 6426; + this.state = 6421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6425; + this.state = 6420; this.joinType(); } } - this.state = 6428; + this.state = 6423; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6429; + this.state = 6424; this.tableRef(); - this.state = 6430; + this.state = 6425; this.joinQual(); } break; @@ -36738,9 +36694,9 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 6436; + this.state = 6431; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 864, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); } } } @@ -36758,35 +36714,109 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } + public expressionTable(): ExpressionTableContext { + let localContext = new ExpressionTableContext(this.context, this.state); + this.enterRule(localContext, 610, PostgreSqlParser.RULE_expressionTable); + try { + this.state = 6444; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 6432; + this.xmlTable(); + this.state = 6434; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { + case 1: + { + this.state = 6433; + this.aliasClause(); + } + break; + } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 6436; + this.funcTable(); + this.state = 6438; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 862, this.context) ) { + case 1: + { + this.state = 6437; + this.funcAliasClause(); + } + break; + } + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 6440; + this.selectWithParens(); + this.state = 6442; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 863, this.context) ) { + case 1: + { + this.state = 6441; + this.aliasClause(); + } + break; + } + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public aliasClause(): AliasClauseContext { let localContext = new AliasClauseContext(this.context, this.state); - this.enterRule(localContext, 610, PostgreSqlParser.RULE_aliasClause); + this.enterRule(localContext, 612, PostgreSqlParser.RULE_aliasClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6438; + this.state = 6447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6437; + this.state = 6446; this.match(PostgreSqlParser.KW_AS); } } - this.state = 6440; + this.state = 6449; localContext._alias = this.colId(); - this.state = 6445; + this.state = 6454; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { case 1: { - this.state = 6441; + this.state = 6450; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6442; + this.state = 6451; this.nameList(); - this.state = 6443; + this.state = 6452; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36809,35 +36839,35 @@ export class PostgreSqlParser extends SQLParserBase { } public funcAliasClause(): FuncAliasClauseContext { let localContext = new FuncAliasClauseContext(this.context, this.state); - this.enterRule(localContext, 612, PostgreSqlParser.RULE_funcAliasClause); + this.enterRule(localContext, 614, PostgreSqlParser.RULE_funcAliasClause); let _la: number; try { - this.state = 6459; + this.state = 6468; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6447; + this.state = 6456; this.aliasClause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6453; + this.state = 6462; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: { - this.state = 6448; + this.state = 6457; this.match(PostgreSqlParser.KW_AS); - this.state = 6450; + this.state = 6459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 6449; + this.state = 6458; localContext._alias = this.colId(); } } @@ -37239,18 +37269,18 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6452; + this.state = 6461; localContext._alias = this.colId(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6455; + this.state = 6464; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6456; + this.state = 6465; this.tableFuncElementList(); - this.state = 6457; + this.state = 6466; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37272,12 +37302,12 @@ export class PostgreSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 614, PostgreSqlParser.RULE_joinType); + this.enterRule(localContext, 616, PostgreSqlParser.RULE_joinType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6461; + this.state = 6470; _la = this.tokenStream.LA(1); if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { this.errorHandler.recoverInline(this); @@ -37286,12 +37316,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6463; + this.state = 6472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 6462; + this.state = 6471; this.match(PostgreSqlParser.KW_OUTER); } } @@ -37314,26 +37344,26 @@ export class PostgreSqlParser extends SQLParserBase { } public joinQual(): JoinQualContext { let localContext = new JoinQualContext(this.context, this.state); - this.enterRule(localContext, 616, PostgreSqlParser.RULE_joinQual); + this.enterRule(localContext, 618, PostgreSqlParser.RULE_joinQual); try { - this.state = 6469; + this.state = 6478; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_USING: this.enterOuterAlt(localContext, 1); { - this.state = 6465; + this.state = 6474; this.match(PostgreSqlParser.KW_USING); - this.state = 6466; + this.state = 6475; this.optColumnList(); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 2); { - this.state = 6467; + this.state = 6476; this.match(PostgreSqlParser.KW_ON); - this.state = 6468; + this.state = 6477; this.expression(); } break; @@ -37357,24 +37387,24 @@ export class PostgreSqlParser extends SQLParserBase { } public relationExpr(): RelationExprContext { let localContext = new RelationExprContext(this.context, this.state); - this.enterRule(localContext, 618, PostgreSqlParser.RULE_relationExpr); + this.enterRule(localContext, 620, PostgreSqlParser.RULE_relationExpr); try { - this.state = 6486; + this.state = 6495; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6471; + this.state = 6480; this.truncateTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6472; + this.state = 6481; this.match(PostgreSqlParser.KW_ONLY); - this.state = 6478; + this.state = 6487; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -37772,17 +37802,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6473; + this.state = 6482; this.tableName(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6474; + this.state = 6483; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6475; + this.state = 6484; this.tableName(); - this.state = 6476; + this.state = 6485; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37794,11 +37824,11 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6480; + this.state = 6489; this.match(PostgreSqlParser.KW_IN); - this.state = 6481; + this.state = 6490; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6484; + this.state = 6493; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38196,13 +38226,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6482; + this.state = 6491; this.schemaName(); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6483; + this.state = 6492; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -38229,35 +38259,35 @@ export class PostgreSqlParser extends SQLParserBase { } public publicationRelationExpr(): PublicationRelationExprContext { let localContext = new PublicationRelationExprContext(this.context, this.state); - this.enterRule(localContext, 620, PostgreSqlParser.RULE_publicationRelationExpr); + this.enterRule(localContext, 622, PostgreSqlParser.RULE_publicationRelationExpr); let _la: number; try { - this.state = 6512; + this.state = 6521; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6488; + this.state = 6497; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6489; + this.state = 6498; this.truncateTable(); - this.state = 6491; + this.state = 6500; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 875, this.context) ) { case 1: { - this.state = 6490; + this.state = 6499; this.optColumnList(); } break; } - this.state = 6494; + this.state = 6503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 6493; + this.state = 6502; this.whereClause(); } } @@ -38267,11 +38297,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6496; + this.state = 6505; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6497; + this.state = 6506; this.match(PostgreSqlParser.KW_ONLY); - this.state = 6503; + this.state = 6512; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38669,17 +38699,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6498; + this.state = 6507; this.tableName(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6499; + this.state = 6508; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6500; + this.state = 6509; this.tableName(); - this.state = 6501; + this.state = 6510; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -38691,13 +38721,13 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6505; + this.state = 6514; this.match(PostgreSqlParser.KW_TABLES); - this.state = 6506; + this.state = 6515; this.match(PostgreSqlParser.KW_IN); - this.state = 6507; + this.state = 6516; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6510; + this.state = 6519; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -39095,13 +39125,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6508; + this.state = 6517; this.schemaName(); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6509; + this.state = 6518; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -39128,26 +39158,26 @@ export class PostgreSqlParser extends SQLParserBase { } public relationExprList(): RelationExprListContext { let localContext = new RelationExprListContext(this.context, this.state); - this.enterRule(localContext, 622, PostgreSqlParser.RULE_relationExprList); + this.enterRule(localContext, 624, PostgreSqlParser.RULE_relationExprList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6514; + this.state = 6523; this.relationExpr(); - this.state = 6519; + this.state = 6528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6515; + this.state = 6524; this.match(PostgreSqlParser.COMMA); - this.state = 6516; + this.state = 6525; this.relationExpr(); } } - this.state = 6521; + this.state = 6530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39169,29 +39199,29 @@ export class PostgreSqlParser extends SQLParserBase { } public relationExprOptAlias(): RelationExprOptAliasContext { let localContext = new RelationExprOptAliasContext(this.context, this.state); - this.enterRule(localContext, 624, PostgreSqlParser.RULE_relationExprOptAlias); + this.enterRule(localContext, 626, PostgreSqlParser.RULE_relationExprOptAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6522; + this.state = 6531; this.relationExpr(); - this.state = 6527; + this.state = 6536; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 882, this.context) ) { case 1: { - this.state = 6524; + this.state = 6533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6523; + this.state = 6532; this.match(PostgreSqlParser.KW_AS); } } - this.state = 6526; + this.state = 6535; this.colId(); } break; @@ -39214,28 +39244,28 @@ export class PostgreSqlParser extends SQLParserBase { } public tableSampleClause(): TableSampleClauseContext { let localContext = new TableSampleClauseContext(this.context, this.state); - this.enterRule(localContext, 626, PostgreSqlParser.RULE_tableSampleClause); + this.enterRule(localContext, 628, PostgreSqlParser.RULE_tableSampleClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6529; + this.state = 6538; this.match(PostgreSqlParser.KW_TABLESAMPLE); - this.state = 6530; + this.state = 6539; this.functionName(); - this.state = 6531; + this.state = 6540; this.executeParamClause(); - this.state = 6537; + this.state = 6546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 883, this.context) ) { case 1: { - this.state = 6532; + this.state = 6541; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 6533; + this.state = 6542; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6534; + this.state = 6543; this.expression(); - this.state = 6535; + this.state = 6544; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -39258,61 +39288,61 @@ export class PostgreSqlParser extends SQLParserBase { } public funcTable(): FuncTableContext { let localContext = new FuncTableContext(this.context, this.state); - this.enterRule(localContext, 628, PostgreSqlParser.RULE_funcTable); + this.enterRule(localContext, 630, PostgreSqlParser.RULE_funcTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6553; + this.state = 6562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { case 1: { - this.state = 6539; + this.state = 6548; this.funcExprWindowless(); } break; case 2: { { - this.state = 6540; + this.state = 6549; this.match(PostgreSqlParser.KW_ROWS); - this.state = 6541; + this.state = 6550; this.match(PostgreSqlParser.KW_FROM); - this.state = 6542; + this.state = 6551; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6543; + this.state = 6552; this.rowsFromItem(); - this.state = 6548; + this.state = 6557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6544; + this.state = 6553; this.match(PostgreSqlParser.COMMA); - this.state = 6545; + this.state = 6554; this.rowsFromItem(); } } - this.state = 6550; + this.state = 6559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6551; + this.state = 6560; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 6557; + this.state = 6566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: { - this.state = 6555; + this.state = 6564; this.match(PostgreSqlParser.KW_WITH); - this.state = 6556; + this.state = 6565; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -39335,25 +39365,25 @@ export class PostgreSqlParser extends SQLParserBase { } public rowsFromItem(): RowsFromItemContext { let localContext = new RowsFromItemContext(this.context, this.state); - this.enterRule(localContext, 630, PostgreSqlParser.RULE_rowsFromItem); + this.enterRule(localContext, 632, PostgreSqlParser.RULE_rowsFromItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6559; + this.state = 6568; this.funcExprWindowless(); - this.state = 6565; + this.state = 6574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6560; + this.state = 6569; this.match(PostgreSqlParser.KW_AS); - this.state = 6561; + this.state = 6570; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6562; + this.state = 6571; this.tableFuncElementList(); - this.state = 6563; + this.state = 6572; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39376,13 +39406,13 @@ export class PostgreSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 632, PostgreSqlParser.RULE_whereClause); + this.enterRule(localContext, 634, PostgreSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6567; + this.state = 6576; this.match(PostgreSqlParser.KW_WHERE); - this.state = 6568; + this.state = 6577; this.columnExprNoParen(); } } @@ -39402,28 +39432,28 @@ export class PostgreSqlParser extends SQLParserBase { } public whereOrCurrentClause(): WhereOrCurrentClauseContext { let localContext = new WhereOrCurrentClauseContext(this.context, this.state); - this.enterRule(localContext, 634, PostgreSqlParser.RULE_whereOrCurrentClause); + this.enterRule(localContext, 636, PostgreSqlParser.RULE_whereOrCurrentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6570; + this.state = 6579; this.match(PostgreSqlParser.KW_WHERE); - this.state = 6575; + this.state = 6584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 888, this.context) ) { case 1: { - this.state = 6571; + this.state = 6580; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 6572; + this.state = 6581; this.match(PostgreSqlParser.KW_OF); - this.state = 6573; + this.state = 6582; this.colId(); } break; case 2: { - this.state = 6574; + this.state = 6583; this.expression(); } break; @@ -39446,26 +39476,26 @@ export class PostgreSqlParser extends SQLParserBase { } public tableFuncElementList(): TableFuncElementListContext { let localContext = new TableFuncElementListContext(this.context, this.state); - this.enterRule(localContext, 636, PostgreSqlParser.RULE_tableFuncElementList); + this.enterRule(localContext, 638, PostgreSqlParser.RULE_tableFuncElementList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6577; + this.state = 6586; this.tableFuncElement(); - this.state = 6582; + this.state = 6591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6578; + this.state = 6587; this.match(PostgreSqlParser.COMMA); - this.state = 6579; + this.state = 6588; this.tableFuncElement(); } } - this.state = 6584; + this.state = 6593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39487,21 +39517,21 @@ export class PostgreSqlParser extends SQLParserBase { } public tableFuncElement(): TableFuncElementContext { let localContext = new TableFuncElementContext(this.context, this.state); - this.enterRule(localContext, 638, PostgreSqlParser.RULE_tableFuncElement); + this.enterRule(localContext, 640, PostgreSqlParser.RULE_tableFuncElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6585; + this.state = 6594; this.colId(); - this.state = 6586; + this.state = 6595; this.typename(); - this.state = 6588; + this.state = 6597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 6587; + this.state = 6596; this.collateClause(); } } @@ -39524,76 +39554,76 @@ export class PostgreSqlParser extends SQLParserBase { } public xmlTable(): XmlTableContext { let localContext = new XmlTableContext(this.context, this.state); - this.enterRule(localContext, 640, PostgreSqlParser.RULE_xmlTable); + this.enterRule(localContext, 642, PostgreSqlParser.RULE_xmlTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6590; + this.state = 6599; this.match(PostgreSqlParser.KW_XMLTABLE); - this.state = 6591; + this.state = 6600; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 6605; + this.state = 6614; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { case 1: { - this.state = 6592; + this.state = 6601; this.match(PostgreSqlParser.KW_XMLNAMESPACES); - this.state = 6593; + this.state = 6602; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6594; + this.state = 6603; this.xmlNamespaceEle(); - this.state = 6599; + this.state = 6608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6595; + this.state = 6604; this.match(PostgreSqlParser.COMMA); - this.state = 6596; + this.state = 6605; this.xmlNamespaceEle(); } } - this.state = 6601; + this.state = 6610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6602; + this.state = 6611; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6603; + this.state = 6612; this.match(PostgreSqlParser.COMMA); } break; } - this.state = 6607; + this.state = 6616; this.primaryExpression(0); - this.state = 6608; + this.state = 6617; this.xmlExistsArgument(); - this.state = 6609; + this.state = 6618; this.match(PostgreSqlParser.KW_COLUMNS); - this.state = 6610; + this.state = 6619; this.xmlTableColumnEl(); - this.state = 6615; + this.state = 6624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6611; + this.state = 6620; this.match(PostgreSqlParser.COMMA); - this.state = 6612; + this.state = 6621; this.xmlTableColumnEl(); } } - this.state = 6617; + this.state = 6626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6618; + this.state = 6627; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39613,14 +39643,14 @@ export class PostgreSqlParser extends SQLParserBase { } public xmlTableColumnEl(): XmlTableColumnElContext { let localContext = new XmlTableColumnElContext(this.context, this.state); - this.enterRule(localContext, 642, PostgreSqlParser.RULE_xmlTableColumnEl); + this.enterRule(localContext, 644, PostgreSqlParser.RULE_xmlTableColumnEl); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6620; + this.state = 6629; this.colId(); - this.state = 6639; + this.state = 6648; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -40039,19 +40069,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6621; + this.state = 6630; this.typename(); - this.state = 6635; + this.state = 6644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 6631; + this.state = 6640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { - this.state = 6631; + this.state = 6640; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -40398,40 +40428,40 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6624; + this.state = 6633; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { case 1: { - this.state = 6622; + this.state = 6631; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 6623; + this.state = 6632; this.identifier(); } break; } - this.state = 6626; + this.state = 6635; this.expression(); } break; case PostgreSqlParser.KW_NOT: case PostgreSqlParser.KW_NULL: { - this.state = 6628; + this.state = 6637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6627; + this.state = 6636; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6630; + this.state = 6639; this.match(PostgreSqlParser.KW_NULL); } break; @@ -40439,7 +40469,7 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6633; + this.state = 6642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586); @@ -40450,9 +40480,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_FOR: { - this.state = 6637; + this.state = 6646; this.match(PostgreSqlParser.KW_FOR); - this.state = 6638; + this.state = 6647; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -40477,28 +40507,28 @@ export class PostgreSqlParser extends SQLParserBase { } public xmlNamespaceEle(): XmlNamespaceEleContext { let localContext = new XmlNamespaceEleContext(this.context, this.state); - this.enterRule(localContext, 644, PostgreSqlParser.RULE_xmlNamespaceEle); + this.enterRule(localContext, 646, PostgreSqlParser.RULE_xmlNamespaceEle); try { - this.state = 6647; + this.state = 6656; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 900, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6641; + this.state = 6650; this.primaryExpression(0); - this.state = 6642; + this.state = 6651; this.match(PostgreSqlParser.KW_AS); - this.state = 6643; + this.state = 6652; this.colLabel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6645; + this.state = 6654; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6646; + this.state = 6655; this.primaryExpression(0); } break; @@ -40520,59 +40550,59 @@ export class PostgreSqlParser extends SQLParserBase { } public typename(): TypenameContext { let localContext = new TypenameContext(this.context, this.state); - this.enterRule(localContext, 646, PostgreSqlParser.RULE_typename); + this.enterRule(localContext, 648, PostgreSqlParser.RULE_typename); let _la: number; try { let alternative: number; - this.state = 6675; + this.state = 6684; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6650; + this.state = 6659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 6649; + this.state = 6658; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 6652; + this.state = 6661; this.simpleTypeName(); - this.state = 6669; + this.state = 6678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { case 1: { { - this.state = 6660; + this.state = 6669; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 903, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6653; + this.state = 6662; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 6655; + this.state = 6664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 574) { { - this.state = 6654; + this.state = 6663; this.match(PostgreSqlParser.Integral); } } - this.state = 6657; + this.state = 6666; this.match(PostgreSqlParser.CLOSE_BRACKET); } } } - this.state = 6662; + this.state = 6671; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 903, this.context); } @@ -40581,18 +40611,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6663; + this.state = 6672; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6667; + this.state = 6676; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { case 1: { - this.state = 6664; + this.state = 6673; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 6665; + this.state = 6674; this.match(PostgreSqlParser.Integral); - this.state = 6666; + this.state = 6675; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -40605,11 +40635,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6671; + this.state = 6680; this.qualifiedName(); - this.state = 6672; + this.state = 6681; this.match(PostgreSqlParser.PERCENT); - this.state = 6673; + this.state = 6682; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -40638,32 +40668,32 @@ export class PostgreSqlParser extends SQLParserBase { } public simpleTypeName(): SimpleTypeNameContext { let localContext = new SimpleTypeNameContext(this.context, this.state); - this.enterRule(localContext, 648, PostgreSqlParser.RULE_simpleTypeName); + this.enterRule(localContext, 650, PostgreSqlParser.RULE_simpleTypeName); try { - this.state = 6692; + this.state = 6701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6677; + this.state = 6686; this.typeFunctionName(); - this.state = 6679; + this.state = 6688; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { case 1: { - this.state = 6678; + this.state = 6687; this.attrs(); } break; } - this.state = 6682; + this.state = 6691; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { case 1: { - this.state = 6681; + this.state = 6690; this.executeParamClause(); } break; @@ -40673,26 +40703,26 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6684; + this.state = 6693; this.constTypeName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6685; + this.state = 6694; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6690; + this.state = 6699; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 910, this.context) ) { case 1: { - this.state = 6687; + this.state = 6696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { case 1: { - this.state = 6686; + this.state = 6695; this.optInterval(); } break; @@ -40701,7 +40731,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6689; + this.state = 6698; this.optFloat(); } break; @@ -40726,9 +40756,9 @@ export class PostgreSqlParser extends SQLParserBase { } public constTypeName(): ConstTypeNameContext { let localContext = new ConstTypeNameContext(this.context, this.state); - this.enterRule(localContext, 650, PostgreSqlParser.RULE_constTypeName); + this.enterRule(localContext, 652, PostgreSqlParser.RULE_constTypeName); try { - this.state = 6698; + this.state = 6707; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DOUBLE: @@ -40744,14 +40774,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 1); { - this.state = 6694; + this.state = 6703; this.numeric(); } break; case PostgreSqlParser.KW_BIT: this.enterOuterAlt(localContext, 2); { - this.state = 6695; + this.state = 6704; this.bit(); } break; @@ -40762,7 +40792,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 3); { - this.state = 6696; + this.state = 6705; this.character(); } break; @@ -40770,7 +40800,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 6697; + this.state = 6706; this.constDatetime(); } break; @@ -40794,58 +40824,58 @@ export class PostgreSqlParser extends SQLParserBase { } public numeric(): NumericContext { let localContext = new NumericContext(this.context, this.state); - this.enterRule(localContext, 652, PostgreSqlParser.RULE_numeric); + this.enterRule(localContext, 654, PostgreSqlParser.RULE_numeric); let _la: number; try { - this.state = 6716; + this.state = 6725; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INT: this.enterOuterAlt(localContext, 1); { - this.state = 6700; + this.state = 6709; this.match(PostgreSqlParser.KW_INT); } break; case PostgreSqlParser.KW_INTEGER: this.enterOuterAlt(localContext, 2); { - this.state = 6701; + this.state = 6710; this.match(PostgreSqlParser.KW_INTEGER); } break; case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 3); { - this.state = 6702; + this.state = 6711; this.match(PostgreSqlParser.KW_SMALLINT); } break; case PostgreSqlParser.KW_BIGINT: this.enterOuterAlt(localContext, 4); { - this.state = 6703; + this.state = 6712; this.match(PostgreSqlParser.KW_BIGINT); } break; case PostgreSqlParser.KW_REAL: this.enterOuterAlt(localContext, 5); { - this.state = 6704; + this.state = 6713; this.match(PostgreSqlParser.KW_REAL); } break; case PostgreSqlParser.KW_FLOAT: this.enterOuterAlt(localContext, 6); { - this.state = 6705; + this.state = 6714; this.match(PostgreSqlParser.KW_FLOAT); - this.state = 6707; + this.state = 6716; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { case 1: { - this.state = 6706; + this.state = 6715; this.optFloat(); } break; @@ -40855,9 +40885,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DOUBLE: this.enterOuterAlt(localContext, 7); { - this.state = 6709; + this.state = 6718; this.match(PostgreSqlParser.KW_DOUBLE); - this.state = 6710; + this.state = 6719; this.match(PostgreSqlParser.KW_PRECISION); } break; @@ -40866,7 +40896,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 8); { - this.state = 6711; + this.state = 6720; _la = this.tokenStream.LA(1); if(!(((((_la - 394)) & ~0x1F) === 0 && ((1 << (_la - 394)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -40875,12 +40905,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6713; + this.state = 6722; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { case 1: { - this.state = 6712; + this.state = 6721; this.executeParamClause(); } break; @@ -40890,7 +40920,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BOOLEAN: this.enterOuterAlt(localContext, 9); { - this.state = 6715; + this.state = 6724; this.match(PostgreSqlParser.KW_BOOLEAN); } break; @@ -40914,15 +40944,15 @@ export class PostgreSqlParser extends SQLParserBase { } public optFloat(): OptFloatContext { let localContext = new OptFloatContext(this.context, this.state); - this.enterRule(localContext, 654, PostgreSqlParser.RULE_optFloat); + this.enterRule(localContext, 656, PostgreSqlParser.RULE_optFloat); try { this.enterOuterAlt(localContext, 1); { - this.state = 6718; + this.state = 6727; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6719; + this.state = 6728; this.match(PostgreSqlParser.Integral); - this.state = 6720; + this.state = 6729; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -40942,28 +40972,28 @@ export class PostgreSqlParser extends SQLParserBase { } public bit(): BitContext { let localContext = new BitContext(this.context, this.state); - this.enterRule(localContext, 656, PostgreSqlParser.RULE_bit); + this.enterRule(localContext, 658, PostgreSqlParser.RULE_bit); try { this.enterOuterAlt(localContext, 1); { - this.state = 6722; + this.state = 6731; this.match(PostgreSqlParser.KW_BIT); - this.state = 6724; + this.state = 6733; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { case 1: { - this.state = 6723; + this.state = 6732; this.match(PostgreSqlParser.KW_VARYING); } break; } - this.state = 6727; + this.state = 6736; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 917, this.context) ) { case 1: { - this.state = 6726; + this.state = 6735; this.executeParamClause(); } break; @@ -40986,19 +41016,19 @@ export class PostgreSqlParser extends SQLParserBase { } public character(): CharacterContext { let localContext = new CharacterContext(this.context, this.state); - this.enterRule(localContext, 658, PostgreSqlParser.RULE_character); + this.enterRule(localContext, 660, PostgreSqlParser.RULE_character); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6739; + this.state = 6748; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHAR: case PostgreSqlParser.KW_CHARACTER: case PostgreSqlParser.KW_NCHAR: { - this.state = 6729; + this.state = 6738; _la = this.tokenStream.LA(1); if(!(((((_la - 391)) & ~0x1F) === 0 && ((1 << (_la - 391)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -41007,12 +41037,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6731; + this.state = 6740; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 918, this.context) ) { case 1: { - this.state = 6730; + this.state = 6739; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -41021,15 +41051,15 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_VARCHAR: { - this.state = 6733; + this.state = 6742; this.match(PostgreSqlParser.KW_VARCHAR); } break; case PostgreSqlParser.KW_NATIONAL: { - this.state = 6734; + this.state = 6743; this.match(PostgreSqlParser.KW_NATIONAL); - this.state = 6735; + this.state = 6744; _la = this.tokenStream.LA(1); if(!(_la === 391 || _la === 392)) { this.errorHandler.recoverInline(this); @@ -41038,12 +41068,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6737; + this.state = 6746; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 919, this.context) ) { case 1: { - this.state = 6736; + this.state = 6745; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -41053,12 +41083,12 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6742; + this.state = 6751; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: { - this.state = 6741; + this.state = 6750; this.optFloat(); } break; @@ -41081,12 +41111,12 @@ export class PostgreSqlParser extends SQLParserBase { } public constDatetime(): ConstDatetimeContext { let localContext = new ConstDatetimeContext(this.context, this.state); - this.enterRule(localContext, 660, PostgreSqlParser.RULE_constDatetime); + this.enterRule(localContext, 662, PostgreSqlParser.RULE_constDatetime); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6744; + this.state = 6753; _la = this.tokenStream.LA(1); if(!(_la === 418 || _la === 419)) { this.errorHandler.recoverInline(this); @@ -41095,22 +41125,22 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6746; + this.state = 6755; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { case 1: { - this.state = 6745; + this.state = 6754; this.optFloat(); } break; } - this.state = 6751; + this.state = 6760; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: { - this.state = 6748; + this.state = 6757; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -41119,9 +41149,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6749; + this.state = 6758; this.match(PostgreSqlParser.KW_TIME); - this.state = 6750; + this.state = 6759; this.match(PostgreSqlParser.KW_ZONE); } break; @@ -41144,38 +41174,38 @@ export class PostgreSqlParser extends SQLParserBase { } public optInterval(): OptIntervalContext { let localContext = new OptIntervalContext(this.context, this.state); - this.enterRule(localContext, 662, PostgreSqlParser.RULE_optInterval); + this.enterRule(localContext, 664, PostgreSqlParser.RULE_optInterval); try { - this.state = 6782; + this.state = 6791; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_MONTH: this.enterOuterAlt(localContext, 1); { - this.state = 6753; + this.state = 6762; this.match(PostgreSqlParser.KW_MONTH); } break; case PostgreSqlParser.KW_SECOND: this.enterOuterAlt(localContext, 2); { - this.state = 6754; + this.state = 6763; this.intervalSecond(); } break; case PostgreSqlParser.KW_YEAR: this.enterOuterAlt(localContext, 3); { - this.state = 6755; + this.state = 6764; this.match(PostgreSqlParser.KW_YEAR); - this.state = 6758; + this.state = 6767; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { case 1: { - this.state = 6756; + this.state = 6765; this.match(PostgreSqlParser.KW_TO); - this.state = 6757; + this.state = 6766; this.match(PostgreSqlParser.KW_MONTH); } break; @@ -41185,33 +41215,33 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DAY: this.enterOuterAlt(localContext, 4); { - this.state = 6760; + this.state = 6769; this.match(PostgreSqlParser.KW_DAY); - this.state = 6767; + this.state = 6776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 926, this.context) ) { case 1: { - this.state = 6761; + this.state = 6770; this.match(PostgreSqlParser.KW_TO); - this.state = 6765; + this.state = 6774; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HOUR: { - this.state = 6762; + this.state = 6771; this.match(PostgreSqlParser.KW_HOUR); } break; case PostgreSqlParser.KW_MINUTE: { - this.state = 6763; + this.state = 6772; this.match(PostgreSqlParser.KW_MINUTE); } break; case PostgreSqlParser.KW_SECOND: { - this.state = 6764; + this.state = 6773; this.intervalSecond(); } break; @@ -41226,27 +41256,27 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_HOUR: this.enterOuterAlt(localContext, 5); { - this.state = 6769; + this.state = 6778; this.match(PostgreSqlParser.KW_HOUR); - this.state = 6775; + this.state = 6784; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 928, this.context) ) { case 1: { - this.state = 6770; + this.state = 6779; this.match(PostgreSqlParser.KW_TO); - this.state = 6773; + this.state = 6782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_MINUTE: { - this.state = 6771; + this.state = 6780; this.match(PostgreSqlParser.KW_MINUTE); } break; case PostgreSqlParser.KW_SECOND: { - this.state = 6772; + this.state = 6781; this.intervalSecond(); } break; @@ -41261,16 +41291,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINUTE: this.enterOuterAlt(localContext, 6); { - this.state = 6777; + this.state = 6786; this.match(PostgreSqlParser.KW_MINUTE); - this.state = 6780; + this.state = 6789; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 929, this.context) ) { case 1: { - this.state = 6778; + this.state = 6787; this.match(PostgreSqlParser.KW_TO); - this.state = 6779; + this.state = 6788; this.intervalSecond(); } break; @@ -41297,18 +41327,18 @@ export class PostgreSqlParser extends SQLParserBase { } public intervalSecond(): IntervalSecondContext { let localContext = new IntervalSecondContext(this.context, this.state); - this.enterRule(localContext, 664, PostgreSqlParser.RULE_intervalSecond); + this.enterRule(localContext, 666, PostgreSqlParser.RULE_intervalSecond); try { this.enterOuterAlt(localContext, 1); { - this.state = 6784; + this.state = 6793; this.match(PostgreSqlParser.KW_SECOND); - this.state = 6786; + this.state = 6795; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { case 1: { - this.state = 6785; + this.state = 6794; this.optFloat(); } break; @@ -41331,12 +41361,12 @@ export class PostgreSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 666, PostgreSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 668, PostgreSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6788; + this.state = 6797; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { this.errorHandler.recoverInline(this); @@ -41363,11 +41393,11 @@ export class PostgreSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 668, PostgreSqlParser.RULE_expression); + this.enterRule(localContext, 670, PostgreSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 6790; + this.state = 6799; this.booleanExpression(0); } } @@ -41397,13 +41427,13 @@ export class PostgreSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 670; - this.enterRecursionRule(localContext, 670, PostgreSqlParser.RULE_booleanExpression, _p); + let _startState = 672; + this.enterRecursionRule(localContext, 672, PostgreSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6799; + this.state = 6808; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -41852,14 +41882,14 @@ export class PostgreSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 6793; + this.state = 6802; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 6795; + this.state = 6804; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 932, this.context) ) { case 1: { - this.state = 6794; + this.state = 6803; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -41871,9 +41901,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6797; + this.state = 6806; this.match(PostgreSqlParser.KW_NOT); - this.state = 6798; + this.state = 6807; this.booleanExpression(3); } break; @@ -41881,7 +41911,7 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 6809; + this.state = 6818; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -41891,7 +41921,7 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 6807; + this.state = 6816; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 934, this.context) ) { case 1: @@ -41899,13 +41929,13 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6801; + this.state = 6810; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6802; + this.state = 6811; (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_AND); - this.state = 6803; + this.state = 6812; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -41914,20 +41944,20 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6804; + this.state = 6813; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 6805; + this.state = 6814; (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_OR); - this.state = 6806; + this.state = 6815; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 6811; + this.state = 6820; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); } @@ -41949,19 +41979,19 @@ export class PostgreSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 672, PostgreSqlParser.RULE_predicate); + this.enterRule(localContext, 674, PostgreSqlParser.RULE_predicate); let _la: number; try { - this.state = 6883; + this.state = 6892; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6812; + this.state = 6821; this.comparisonOperator(); - this.state = 6813; + this.state = 6822; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -41969,28 +41999,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6815; + this.state = 6824; this.comparisonOperator(); - this.state = 6816; + this.state = 6825; this.subqueryOperator(); - this.state = 6817; + this.state = 6826; this.subType(); - this.state = 6823; + this.state = 6832; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { case 1: { - this.state = 6818; + this.state = 6827; this.selectWithParens(); } break; case 2: { - this.state = 6819; + this.state = 6828; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6820; + this.state = 6829; this.expression(); - this.state = 6821; + this.state = 6830; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -42001,23 +42031,23 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6826; + this.state = 6835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6825; + this.state = 6834; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6828; + this.state = 6837; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6829; + this.state = 6838; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 6830; + this.state = 6839; this.match(PostgreSqlParser.KW_AND); - this.state = 6831; + this.state = 6840; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -42025,39 +42055,39 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6834; + this.state = 6843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6833; + this.state = 6842; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6836; + this.state = 6845; this.match(PostgreSqlParser.KW_IN); - this.state = 6837; + this.state = 6846; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6838; + this.state = 6847; this.expression(); - this.state = 6843; + this.state = 6852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6839; + this.state = 6848; this.match(PostgreSqlParser.COMMA); - this.state = 6840; + this.state = 6849; this.expression(); } } - this.state = 6845; + this.state = 6854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6846; + this.state = 6855; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -42065,19 +42095,19 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6849; + this.state = 6858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6848; + this.state = 6857; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6851; + this.state = 6860; this.match(PostgreSqlParser.KW_IN); - this.state = 6852; + this.state = 6861; this.selectWithParens(); } break; @@ -42085,49 +42115,49 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6854; + this.state = 6863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6853; + this.state = 6862; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6864; + this.state = 6873; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIKE: { - this.state = 6856; + this.state = 6865; this.match(PostgreSqlParser.KW_LIKE); } break; case PostgreSqlParser.KW_ILIKE: { - this.state = 6857; + this.state = 6866; this.match(PostgreSqlParser.KW_ILIKE); } break; case PostgreSqlParser.KW_SIMILAR: { - this.state = 6858; + this.state = 6867; this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 6859; + this.state = 6868; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_BETWEEN: { - this.state = 6860; + this.state = 6869; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6862; + this.state = 6871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 6861; + this.state = 6870; this.match(PostgreSqlParser.KW_SYMMETRIC); } } @@ -42137,16 +42167,16 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6866; + this.state = 6875; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 6869; + this.state = 6878; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { case 1: { - this.state = 6867; + this.state = 6876; this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 6868; + this.state = 6877; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -42157,19 +42187,19 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6871; + this.state = 6880; this.match(PostgreSqlParser.KW_IS); - this.state = 6873; + this.state = 6882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6872; + this.state = 6881; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6875; + this.state = 6884; this.match(PostgreSqlParser.KW_NULL); } break; @@ -42177,23 +42207,23 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6876; + this.state = 6885; this.match(PostgreSqlParser.KW_IS); - this.state = 6878; + this.state = 6887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6877; + this.state = 6886; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6880; + this.state = 6889; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6881; + this.state = 6890; this.match(PostgreSqlParser.KW_FROM); - this.state = 6882; + this.state = 6891; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -42225,14 +42255,14 @@ export class PostgreSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 674; - this.enterRecursionRule(localContext, 674, PostgreSqlParser.RULE_valueExpression, _p); + let _startState = 676; + this.enterRecursionRule(localContext, 676, PostgreSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6889; + this.state = 6898; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 948, this.context) ) { case 1: @@ -42241,7 +42271,7 @@ export class PostgreSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 6886; + this.state = 6895; this.primaryExpression(0); } break; @@ -42250,7 +42280,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6887; + this.state = 6896; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { @@ -42260,13 +42290,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6888; + this.state = 6897; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 6907; + this.state = 6916; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42276,7 +42306,7 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 6905; + this.state = 6914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { case 1: @@ -42284,11 +42314,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6891; + this.state = 6900; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 6892; + this.state = 6901; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { @@ -42298,7 +42328,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6893; + this.state = 6902; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -42307,11 +42337,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6894; + this.state = 6903; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6895; + this.state = 6904; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { @@ -42321,7 +42351,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6896; + this.state = 6905; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -42330,13 +42360,13 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6897; + this.state = 6906; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 6898; + this.state = 6907; this.match(PostgreSqlParser.CARET); - this.state = 6899; + this.state = 6908; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -42344,24 +42374,24 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6900; + this.state = 6909; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 6901; + this.state = 6910; this.match(PostgreSqlParser.KW_AT); - this.state = 6902; + this.state = 6911; this.match(PostgreSqlParser.KW_TIME); - this.state = 6903; + this.state = 6912; this.match(PostgreSqlParser.KW_ZONE); - this.state = 6904; + this.state = 6913; this.expression(); } break; } } } - this.state = 6909; + this.state = 6918; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); } @@ -42393,19 +42423,19 @@ export class PostgreSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 676; - this.enterRecursionRule(localContext, 676, PostgreSqlParser.RULE_primaryExpression, _p); + let _startState = 678; + this.enterRecursionRule(localContext, 678, PostgreSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6998; + this.state = 7007; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 961, this.context) ) { case 1: { - this.state = 6911; + this.state = 6920; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -42414,26 +42444,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6912; + this.state = 6921; this.selectWithParens(); } break; case 2: { - this.state = 6913; + this.state = 6922; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6916; + this.state = 6925; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 6914; + this.state = 6923; this.selectWithParens(); } break; case PostgreSqlParser.OPEN_BRACKET: { - this.state = 6915; + this.state = 6924; this.arrayExpr(); } break; @@ -42444,49 +42474,49 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 6918; + this.state = 6927; this.match(PostgreSqlParser.PARAM); - this.state = 6919; + this.state = 6928; this.optIndirection(); } break; case 4: { - this.state = 6920; + this.state = 6929; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6921; + this.state = 6930; this.executeParamClause(); } break; case 5: { - this.state = 6922; + this.state = 6931; this.match(PostgreSqlParser.Integral); } break; case 6: { - this.state = 6923; + this.state = 6932; this.match(PostgreSqlParser.Numeric); } break; case 7: { - this.state = 6924; + this.state = 6933; this.match(PostgreSqlParser.BinaryStringConstant); } break; case 8: { - this.state = 6925; + this.state = 6934; this.match(PostgreSqlParser.HexadecimalStringConstant); } break; case 9: { - this.state = 6926; + this.state = 6935; this.functionName(); - this.state = 6936; + this.state = 6945; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -42494,29 +42524,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6927; + this.state = 6936; this.stringConst(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6928; + this.state = 6937; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6929; + this.state = 6938; this.funcArgList(); - this.state = 6931; + this.state = 6940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6930; + this.state = 6939; this.sortClause(); } } - this.state = 6933; + this.state = 6942; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6934; + this.state = 6943; this.stringConst(); } break; @@ -42527,25 +42557,25 @@ export class PostgreSqlParser extends SQLParserBase { break; case 10: { - this.state = 6939; + this.state = 6948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190 || ((((_la - 388)) & ~0x1F) === 0 && ((1 << (_la - 388)) & 3525731551) !== 0) || _la === 423) { { - this.state = 6938; + this.state = 6947; this.constTypeName(); } } - this.state = 6941; + this.state = 6950; this.stringConst(); } break; case 11: { - this.state = 6942; + this.state = 6951; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6950; + this.state = 6959; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -42553,14 +42583,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6943; + this.state = 6952; this.stringConst(); - this.state = 6945; + this.state = 6954; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 6944; + this.state = 6953; this.optInterval(); } break; @@ -42569,9 +42599,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6947; + this.state = 6956; this.optFloat(); - this.state = 6948; + this.state = 6957; this.stringConst(); } break; @@ -42582,100 +42612,100 @@ export class PostgreSqlParser extends SQLParserBase { break; case 12: { - this.state = 6952; + this.state = 6961; this.match(PostgreSqlParser.KW_TRUE); } break; case 13: { - this.state = 6953; + this.state = 6962; this.match(PostgreSqlParser.KW_FALSE); } break; case 14: { - this.state = 6954; + this.state = 6963; this.match(PostgreSqlParser.KW_NULL); } break; case 15: { - this.state = 6955; + this.state = 6964; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case 16: { - this.state = 6956; + this.state = 6965; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6957; + this.state = 6966; localContext._a_expr_in_parens = this.expression(); - this.state = 6958; + this.state = 6967; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6959; + this.state = 6968; this.optIndirection(); } break; case 17: { - this.state = 6961; + this.state = 6970; this.match(PostgreSqlParser.KW_CASE); - this.state = 6963; + this.state = 6972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 6962; + this.state = 6971; this.expression(); } } - this.state = 6966; + this.state = 6975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6965; + this.state = 6974; this.when_clause(); } } - this.state = 6968; + this.state = 6977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 6972; + this.state = 6981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 6970; + this.state = 6979; this.match(PostgreSqlParser.KW_ELSE); - this.state = 6971; + this.state = 6980; this.expression(); } } - this.state = 6974; + this.state = 6983; this.match(PostgreSqlParser.KW_END); } break; case 18: { - this.state = 6976; + this.state = 6985; this.func_expr(); } break; case 19: { - this.state = 6977; + this.state = 6986; this.selectWithParens(); - this.state = 6979; + this.state = 6988; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 6978; + this.state = 6987; this.indirection(); } break; @@ -42684,43 +42714,43 @@ export class PostgreSqlParser extends SQLParserBase { break; case 20: { - this.state = 6981; + this.state = 6990; this.explicitRow(); } break; case 21: { - this.state = 6982; + this.state = 6991; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6983; + this.state = 6992; this.expression(); - this.state = 6984; + this.state = 6993; this.match(PostgreSqlParser.COMMA); - this.state = 6985; + this.state = 6994; this.exprList(); - this.state = 6986; + this.state = 6995; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 22: { - this.state = 6988; + this.state = 6997; this.row(); - this.state = 6989; + this.state = 6998; this.match(PostgreSqlParser.KW_OVERLAPS); - this.state = 6990; + this.state = 6999; this.row(); } break; case 23: { - this.state = 6992; + this.state = 7001; this.columnNamePath(); } break; case 24: { - this.state = 6993; + this.state = 7002; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -42729,21 +42759,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6994; + this.state = 7003; this.primaryExpression(5); } break; case 25: { - this.state = 6995; + this.state = 7004; this.qualOp(); - this.state = 6996; + this.state = 7005; this.primaryExpression(2); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7027; + this.state = 7036; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42753,20 +42783,20 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7025; + this.state = 7034; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7000; + this.state = 7009; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7001; + this.state = 7010; this.mathOp(); - this.state = 7002; + this.state = 7011; this.primaryExpression(4); } break; @@ -42774,13 +42804,13 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7004; + this.state = 7013; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7005; + this.state = 7014; this.match(PostgreSqlParser.TYPECAST); - this.state = 7006; + this.state = 7015; this.typename(); } break; @@ -42788,18 +42818,18 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7007; + this.state = 7016; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7008; + this.state = 7017; this.qualOp(); - this.state = 7010; + this.state = 7019; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 7009; + this.state = 7018; this.primaryExpression(0); } break; @@ -42810,46 +42840,46 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7012; + this.state = 7021; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 7013; + this.state = 7022; this.match(PostgreSqlParser.KW_IS); - this.state = 7015; + this.state = 7024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7014; + this.state = 7023; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7023; + this.state = 7032; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DISTINCT: { - this.state = 7017; + this.state = 7026; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 7018; + this.state = 7027; this.match(PostgreSqlParser.KW_FROM); - this.state = 7019; + this.state = 7028; this.primaryExpression(0); } break; case PostgreSqlParser.KW_OF: { - this.state = 7020; + this.state = 7029; this.match(PostgreSqlParser.KW_OF); - this.state = 7021; + this.state = 7030; this.prepTypeClause(); } break; case PostgreSqlParser.KW_DOCUMENT: { - this.state = 7022; + this.state = 7031; this.match(PostgreSqlParser.KW_DOCUMENT); } break; @@ -42861,7 +42891,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 7029; + this.state = 7038; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); } @@ -42883,42 +42913,42 @@ export class PostgreSqlParser extends SQLParserBase { } public funcApplication(): FuncApplicationContext { let localContext = new FuncApplicationContext(this.context, this.state); - this.enterRule(localContext, 678, PostgreSqlParser.RULE_funcApplication); + this.enterRule(localContext, 680, PostgreSqlParser.RULE_funcApplication); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7030; + this.state = 7039; this.functionName(); - this.state = 7031; + this.state = 7040; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7052; + this.state = 7061; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 971, this.context) ) { case 1: { - this.state = 7032; + this.state = 7041; this.funcArgList(); - this.state = 7036; + this.state = 7045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7033; + this.state = 7042; this.match(PostgreSqlParser.COMMA); - this.state = 7034; + this.state = 7043; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7035; + this.state = 7044; this.funcArgExpr(); } } - this.state = 7039; + this.state = 7048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7038; + this.state = 7047; this.sortClause(); } } @@ -42927,16 +42957,16 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7041; + this.state = 7050; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7042; + this.state = 7051; this.funcArgExpr(); - this.state = 7044; + this.state = 7053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7043; + this.state = 7052; this.sortClause(); } } @@ -42945,7 +42975,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7046; + this.state = 7055; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -42954,14 +42984,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7047; + this.state = 7056; this.funcArgList(); - this.state = 7049; + this.state = 7058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7048; + this.state = 7057; this.sortClause(); } } @@ -42970,12 +43000,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 4: { - this.state = 7051; + this.state = 7060; this.match(PostgreSqlParser.STAR); } break; } - this.state = 7054; + this.state = 7063; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -42995,65 +43025,65 @@ export class PostgreSqlParser extends SQLParserBase { } public func_expr(): Func_exprContext { let localContext = new Func_exprContext(this.context, this.state); - this.enterRule(localContext, 680, PostgreSqlParser.RULE_func_expr); + this.enterRule(localContext, 682, PostgreSqlParser.RULE_func_expr); try { - this.state = 7081; + this.state = 7090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7056; + this.state = 7065; this.funcApplication(); - this.state = 7063; + this.state = 7072; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 7057; + this.state = 7066; this.match(PostgreSqlParser.KW_WITHIN); - this.state = 7058; + this.state = 7067; this.match(PostgreSqlParser.KW_GROUP); - this.state = 7059; + this.state = 7068; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7060; + this.state = 7069; this.sortClause(); - this.state = 7061; + this.state = 7070; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7071; + this.state = 7080; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 7065; + this.state = 7074; this.match(PostgreSqlParser.KW_FILTER); - this.state = 7066; + this.state = 7075; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7067; + this.state = 7076; this.match(PostgreSqlParser.KW_WHERE); - this.state = 7068; + this.state = 7077; this.expression(); - this.state = 7069; + this.state = 7078; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7078; + this.state = 7087; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { case 1: { - this.state = 7073; + this.state = 7082; this.match(PostgreSqlParser.KW_OVER); - this.state = 7076; + this.state = 7085; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7074; + this.state = 7083; this.windowSpecification(); } break; @@ -43452,7 +43482,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7075; + this.state = 7084; this.colId(); } break; @@ -43467,7 +43497,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7080; + this.state = 7089; this.funcExprCommonSubExpr(); } break; @@ -43489,22 +43519,22 @@ export class PostgreSqlParser extends SQLParserBase { } public funcExprWindowless(): FuncExprWindowlessContext { let localContext = new FuncExprWindowlessContext(this.context, this.state); - this.enterRule(localContext, 682, PostgreSqlParser.RULE_funcExprWindowless); + this.enterRule(localContext, 684, PostgreSqlParser.RULE_funcExprWindowless); try { - this.state = 7085; + this.state = 7094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7083; + this.state = 7092; this.funcApplication(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7084; + this.state = 7093; this.funcExprCommonSubExpr(); } break; @@ -43526,31 +43556,31 @@ export class PostgreSqlParser extends SQLParserBase { } public funcExprCommonSubExpr(): FuncExprCommonSubExprContext { let localContext = new FuncExprCommonSubExprContext(this.context, this.state); - this.enterRule(localContext, 684, PostgreSqlParser.RULE_funcExprCommonSubExpr); + this.enterRule(localContext, 686, PostgreSqlParser.RULE_funcExprCommonSubExpr); let _la: number; try { - this.state = 7261; + this.state = 7270; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 1); { - this.state = 7087; + this.state = 7096; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 7088; + this.state = 7097; this.match(PostgreSqlParser.KW_FOR); - this.state = 7089; + this.state = 7098; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7090; + this.state = 7099; this.expression(); - this.state = 7091; + this.state = 7100; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 7093; + this.state = 7102; this.match(PostgreSqlParser.KW_CURRENT_DATE); } break; @@ -43560,7 +43590,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 7094; + this.state = 7103; _la = this.tokenStream.LA(1); if(!(((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 100663299) !== 0))) { this.errorHandler.recoverInline(this); @@ -43569,12 +43599,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7096; + this.state = 7105; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 7095; + this.state = 7104; this.optFloat(); } break; @@ -43584,42 +43614,42 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 4); { - this.state = 7098; + this.state = 7107; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case PostgreSqlParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 5); { - this.state = 7099; + this.state = 7108; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case PostgreSqlParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 6); { - this.state = 7100; + this.state = 7109; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case PostgreSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 7101; + this.state = 7110; this.match(PostgreSqlParser.KW_USER); } break; case PostgreSqlParser.KW_CURRENT_CATALOG: this.enterOuterAlt(localContext, 8); { - this.state = 7102; + this.state = 7111; this.match(PostgreSqlParser.KW_CURRENT_CATALOG); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: this.enterOuterAlt(localContext, 9); { - this.state = 7103; + this.state = 7112; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -43627,7 +43657,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TREAT: this.enterOuterAlt(localContext, 10); { - this.state = 7104; + this.state = 7113; _la = this.tokenStream.LA(1); if(!(_la === 41 || _la === 420)) { this.errorHandler.recoverInline(this); @@ -43636,162 +43666,162 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7105; + this.state = 7114; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7106; + this.state = 7115; this.expression(); - this.state = 7107; + this.state = 7116; this.match(PostgreSqlParser.KW_AS); - this.state = 7108; + this.state = 7117; this.typename(); - this.state = 7109; + this.state = 7118; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_EXTRACT: this.enterOuterAlt(localContext, 11); { - this.state = 7111; + this.state = 7120; this.match(PostgreSqlParser.KW_EXTRACT); - this.state = 7112; + this.state = 7121; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7117; + this.state = 7126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7113; + this.state = 7122; this.extractArg(); - this.state = 7114; + this.state = 7123; this.match(PostgreSqlParser.KW_FROM); - this.state = 7115; + this.state = 7124; this.expression(); } } - this.state = 7119; + this.state = 7128; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NORMALIZE: this.enterOuterAlt(localContext, 12); { - this.state = 7120; + this.state = 7129; this.match(PostgreSqlParser.KW_NORMALIZE); - this.state = 7121; + this.state = 7130; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7122; + this.state = 7131; this.expression(); - this.state = 7125; + this.state = 7134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7123; + this.state = 7132; this.match(PostgreSqlParser.COMMA); - this.state = 7124; + this.state = 7133; this.unicodeNormalForm(); } } - this.state = 7127; + this.state = 7136; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_OVERLAY: this.enterOuterAlt(localContext, 13); { - this.state = 7129; + this.state = 7138; this.match(PostgreSqlParser.KW_OVERLAY); - this.state = 7130; + this.state = 7139; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 7131; + this.state = 7140; this.expression(); - this.state = 7132; + this.state = 7141; this.match(PostgreSqlParser.KW_PLACING); - this.state = 7133; + this.state = 7142; this.expression(); - this.state = 7134; + this.state = 7143; this.match(PostgreSqlParser.KW_FROM); - this.state = 7135; + this.state = 7144; this.expression(); - this.state = 7138; + this.state = 7147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7136; + this.state = 7145; this.match(PostgreSqlParser.KW_FOR); - this.state = 7137; + this.state = 7146; this.expression(); } } } - this.state = 7140; + this.state = 7149; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_POSITION: this.enterOuterAlt(localContext, 14); { - this.state = 7142; + this.state = 7151; this.match(PostgreSqlParser.KW_POSITION); - this.state = 7143; + this.state = 7152; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7148; + this.state = 7157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763019) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7144; + this.state = 7153; this.primaryExpression(0); - this.state = 7145; + this.state = 7154; this.match(PostgreSqlParser.KW_IN); - this.state = 7146; + this.state = 7155; this.primaryExpression(0); } } - this.state = 7150; + this.state = 7159; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 15); { - this.state = 7151; + this.state = 7160; this.match(PostgreSqlParser.KW_SUBSTRING); - this.state = 7152; + this.state = 7161; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7154; + this.state = 7163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7153; + this.state = 7162; this.substrList(); } } - this.state = 7156; + this.state = 7165; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_TRIM: this.enterOuterAlt(localContext, 16); { - this.state = 7157; + this.state = 7166; this.match(PostgreSqlParser.KW_TRIM); - this.state = 7158; + this.state = 7167; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7160; + this.state = 7169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 73 || _la === 95) { { - this.state = 7159; + this.state = 7168; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 73 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -43804,47 +43834,47 @@ export class PostgreSqlParser extends SQLParserBase { } { - this.state = 7166; + this.state = 7175; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { case 1: { - this.state = 7163; + this.state = 7172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7162; + this.state = 7171; this.expression(); } } - this.state = 7165; + this.state = 7174; this.match(PostgreSqlParser.KW_FROM); } break; } - this.state = 7168; + this.state = 7177; this.exprList(); } - this.state = 7170; + this.state = 7179; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NULLIF: this.enterOuterAlt(localContext, 17); { - this.state = 7172; + this.state = 7181; this.match(PostgreSqlParser.KW_NULLIF); - this.state = 7173; + this.state = 7182; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7174; + this.state = 7183; this.expression(); - this.state = 7175; + this.state = 7184; this.match(PostgreSqlParser.COMMA); - this.state = 7176; + this.state = 7185; this.expression(); - this.state = 7177; + this.state = 7186; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -43854,7 +43884,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_XMLCONCAT: this.enterOuterAlt(localContext, 18); { - this.state = 7179; + this.state = 7188; _la = this.tokenStream.LA(1); if(!(((((_la - 393)) & ~0x1F) === 0 && ((1 << (_la - 393)) & 2113) !== 0) || _la === 425)) { this.errorHandler.recoverInline(this); @@ -43863,48 +43893,48 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7180; + this.state = 7189; this.executeParamClause(); } break; case PostgreSqlParser.KW_XMLELEMENT: this.enterOuterAlt(localContext, 19); { - this.state = 7181; + this.state = 7190; this.match(PostgreSqlParser.KW_XMLELEMENT); - this.state = 7182; + this.state = 7191; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7183; + this.state = 7192; this.match(PostgreSqlParser.KW_NAME); - this.state = 7184; + this.state = 7193; this.colLabel(); - this.state = 7194; + this.state = 7203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7185; + this.state = 7194; this.match(PostgreSqlParser.COMMA); - this.state = 7192; + this.state = 7201; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { { - this.state = 7186; + this.state = 7195; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); - this.state = 7187; + this.state = 7196; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7188; + this.state = 7197; this.xmlAttributeList(); - this.state = 7189; + this.state = 7198; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; case 2: { - this.state = 7191; + this.state = 7200; this.exprList(); } break; @@ -43912,55 +43942,55 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7196; + this.state = 7205; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLEXISTS: this.enterOuterAlt(localContext, 20); { - this.state = 7198; + this.state = 7207; this.match(PostgreSqlParser.KW_XMLEXISTS); - this.state = 7199; + this.state = 7208; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7200; + this.state = 7209; this.primaryExpression(0); - this.state = 7201; + this.state = 7210; this.xmlExistsArgument(); - this.state = 7202; + this.state = 7211; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLFOREST: this.enterOuterAlt(localContext, 21); { - this.state = 7204; + this.state = 7213; this.match(PostgreSqlParser.KW_XMLFOREST); - this.state = 7205; + this.state = 7214; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7206; + this.state = 7215; this.xmlAttributeList(); - this.state = 7207; + this.state = 7216; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPARSE: this.enterOuterAlt(localContext, 22); { - this.state = 7209; + this.state = 7218; this.match(PostgreSqlParser.KW_XMLPARSE); - this.state = 7210; + this.state = 7219; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7211; + this.state = 7220; this.documentOrContent(); - this.state = 7212; + this.state = 7221; this.expression(); - this.state = 7215; + this.state = 7224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 347) { { - this.state = 7213; + this.state = 7222; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -43969,111 +43999,111 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7214; + this.state = 7223; this.match(PostgreSqlParser.KW_WHITESPACE); } } - this.state = 7217; + this.state = 7226; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPI: this.enterOuterAlt(localContext, 23); { - this.state = 7219; + this.state = 7228; this.match(PostgreSqlParser.KW_XMLPI); - this.state = 7220; + this.state = 7229; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7221; + this.state = 7230; this.match(PostgreSqlParser.KW_NAME); - this.state = 7222; + this.state = 7231; this.colLabel(); - this.state = 7225; + this.state = 7234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7223; + this.state = 7232; this.match(PostgreSqlParser.COMMA); - this.state = 7224; + this.state = 7233; this.expression(); } } - this.state = 7227; + this.state = 7236; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLROOT: this.enterOuterAlt(localContext, 24); { - this.state = 7229; + this.state = 7238; this.match(PostgreSqlParser.KW_XMLROOT); - this.state = 7230; + this.state = 7239; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7231; + this.state = 7240; this.match(PostgreSqlParser.KW_XML); - this.state = 7232; + this.state = 7241; this.expression(); - this.state = 7233; + this.state = 7242; this.match(PostgreSqlParser.COMMA); - this.state = 7234; + this.state = 7243; this.match(PostgreSqlParser.KW_VERSION); - this.state = 7238; + this.state = 7247; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: { { - this.state = 7235; + this.state = 7244; this.match(PostgreSqlParser.KW_NO); - this.state = 7236; + this.state = 7245; this.match(PostgreSqlParser.KW_VALUE); } } break; case 2: { - this.state = 7237; + this.state = 7246; this.expression(); } break; } - this.state = 7249; + this.state = 7258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7240; + this.state = 7249; this.match(PostgreSqlParser.COMMA); - this.state = 7241; + this.state = 7250; this.match(PostgreSqlParser.KW_STANDALONE); - this.state = 7247; + this.state = 7256; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_VALUE: { { - this.state = 7243; + this.state = 7252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7242; + this.state = 7251; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7245; + this.state = 7254; this.match(PostgreSqlParser.KW_VALUE); } } break; case PostgreSqlParser.KW_YES: { - this.state = 7246; + this.state = 7255; this.match(PostgreSqlParser.KW_YES); } break; @@ -44083,26 +44113,26 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7251; + this.state = 7260; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLSERIALIZE: this.enterOuterAlt(localContext, 25); { - this.state = 7253; + this.state = 7262; this.match(PostgreSqlParser.KW_XMLSERIALIZE); - this.state = 7254; + this.state = 7263; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7255; + this.state = 7264; this.documentOrContent(); - this.state = 7256; + this.state = 7265; this.expression(); - this.state = 7257; + this.state = 7266; this.match(PostgreSqlParser.KW_AS); - this.state = 7258; + this.state = 7267; this.simpleTypeName(); - this.state = 7259; + this.state = 7268; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -44126,26 +44156,26 @@ export class PostgreSqlParser extends SQLParserBase { } public xmlAttributeList(): XmlAttributeListContext { let localContext = new XmlAttributeListContext(this.context, this.state); - this.enterRule(localContext, 686, PostgreSqlParser.RULE_xmlAttributeList); + this.enterRule(localContext, 688, PostgreSqlParser.RULE_xmlAttributeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7263; + this.state = 7272; this.xmlAttributeEl(); - this.state = 7268; + this.state = 7277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7264; + this.state = 7273; this.match(PostgreSqlParser.COMMA); - this.state = 7265; + this.state = 7274; this.xmlAttributeEl(); } } - this.state = 7270; + this.state = 7279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44167,21 +44197,21 @@ export class PostgreSqlParser extends SQLParserBase { } public xmlAttributeEl(): XmlAttributeElContext { let localContext = new XmlAttributeElContext(this.context, this.state); - this.enterRule(localContext, 688, PostgreSqlParser.RULE_xmlAttributeEl); + this.enterRule(localContext, 690, PostgreSqlParser.RULE_xmlAttributeEl); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7271; + this.state = 7280; this.expression(); - this.state = 7274; + this.state = 7283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7272; + this.state = 7281; this.match(PostgreSqlParser.KW_AS); - this.state = 7273; + this.state = 7282; this.colLabel(); } } @@ -44204,12 +44234,12 @@ export class PostgreSqlParser extends SQLParserBase { } public documentOrContent(): DocumentOrContentContext { let localContext = new DocumentOrContentContext(this.context, this.state); - this.enterRule(localContext, 690, PostgreSqlParser.RULE_documentOrContent); + this.enterRule(localContext, 692, PostgreSqlParser.RULE_documentOrContent); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7276; + this.state = 7285; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -44236,31 +44266,31 @@ export class PostgreSqlParser extends SQLParserBase { } public xmlExistsArgument(): XmlExistsArgumentContext { let localContext = new XmlExistsArgumentContext(this.context, this.state); - this.enterRule(localContext, 692, PostgreSqlParser.RULE_xmlExistsArgument); + this.enterRule(localContext, 694, PostgreSqlParser.RULE_xmlExistsArgument); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7278; + this.state = 7287; this.match(PostgreSqlParser.KW_PASSING); - this.state = 7280; + this.state = 7289; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 7279; + this.state = 7288; this.xmlPassingMech(); } break; } - this.state = 7282; + this.state = 7291; this.primaryExpression(0); - this.state = 7284; + this.state = 7293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 7283; + this.state = 7292; this.xmlPassingMech(); } } @@ -44283,14 +44313,14 @@ export class PostgreSqlParser extends SQLParserBase { } public xmlPassingMech(): XmlPassingMechContext { let localContext = new XmlPassingMechContext(this.context, this.state); - this.enterRule(localContext, 694, PostgreSqlParser.RULE_xmlPassingMech); + this.enterRule(localContext, 696, PostgreSqlParser.RULE_xmlPassingMech); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7286; + this.state = 7295; this.match(PostgreSqlParser.KW_BY); - this.state = 7287; + this.state = 7296; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -44317,30 +44347,30 @@ export class PostgreSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 696, PostgreSqlParser.RULE_windowClause); + this.enterRule(localContext, 698, PostgreSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7289; + this.state = 7298; this.match(PostgreSqlParser.KW_WINDOW); - this.state = 7290; + this.state = 7299; this.windowDefinition(); - this.state = 7295; + this.state = 7304; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7291; + this.state = 7300; this.match(PostgreSqlParser.COMMA); - this.state = 7292; + this.state = 7301; this.windowDefinition(); } } } - this.state = 7297; + this.state = 7306; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); } @@ -44362,13 +44392,13 @@ export class PostgreSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 698, PostgreSqlParser.RULE_havingClause); + this.enterRule(localContext, 700, PostgreSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7298; + this.state = 7307; this.match(PostgreSqlParser.KW_HAVING); - this.state = 7299; + this.state = 7308; this.expression(); } } @@ -44388,15 +44418,15 @@ export class PostgreSqlParser extends SQLParserBase { } public windowDefinition(): WindowDefinitionContext { let localContext = new WindowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 700, PostgreSqlParser.RULE_windowDefinition); + this.enterRule(localContext, 702, PostgreSqlParser.RULE_windowDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 7301; + this.state = 7310; this.colId(); - this.state = 7302; + this.state = 7311; this.match(PostgreSqlParser.KW_AS); - this.state = 7303; + this.state = 7312; this.windowSpecification(); } } @@ -44416,18 +44446,18 @@ export class PostgreSqlParser extends SQLParserBase { } public over_clause(): Over_clauseContext { let localContext = new Over_clauseContext(this.context, this.state); - this.enterRule(localContext, 702, PostgreSqlParser.RULE_over_clause); + this.enterRule(localContext, 704, PostgreSqlParser.RULE_over_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7305; + this.state = 7314; this.match(PostgreSqlParser.KW_OVER); - this.state = 7308; + this.state = 7317; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7306; + this.state = 7315; this.windowSpecification(); } break; @@ -44826,7 +44856,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7307; + this.state = 7316; this.colId(); } break; @@ -44851,58 +44881,58 @@ export class PostgreSqlParser extends SQLParserBase { } public windowSpecification(): WindowSpecificationContext { let localContext = new WindowSpecificationContext(this.context, this.state); - this.enterRule(localContext, 704, PostgreSqlParser.RULE_windowSpecification); + this.enterRule(localContext, 706, PostgreSqlParser.RULE_windowSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7310; + this.state = 7319; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7312; + this.state = 7321; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 7311; + this.state = 7320; this.colId(); } break; } - this.state = 7317; + this.state = 7326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 7314; + this.state = 7323; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 7315; + this.state = 7324; this.match(PostgreSqlParser.KW_BY); - this.state = 7316; + this.state = 7325; this.exprList(); } } - this.state = 7320; + this.state = 7329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7319; + this.state = 7328; this.sortClause(); } } - this.state = 7323; + this.state = 7332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 299 || _la === 320 || _la === 481) { { - this.state = 7322; + this.state = 7331; this.optFrameClause(); } } - this.state = 7325; + this.state = 7334; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -44922,12 +44952,12 @@ export class PostgreSqlParser extends SQLParserBase { } public optFrameClause(): OptFrameClauseContext { let localContext = new OptFrameClauseContext(this.context, this.state); - this.enterRule(localContext, 706, PostgreSqlParser.RULE_optFrameClause); + this.enterRule(localContext, 708, PostgreSqlParser.RULE_optFrameClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7327; + this.state = 7336; _la = this.tokenStream.LA(1); if(!(_la === 299 || _la === 320 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -44937,58 +44967,58 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 7332; + this.state = 7341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 7328; + this.state = 7337; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 7329; + this.state = 7338; this.frameBound(); - this.state = 7330; + this.state = 7339; this.match(PostgreSqlParser.KW_AND); } break; } - this.state = 7334; + this.state = 7343; this.frameBound(); } - this.state = 7345; + this.state = 7354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 7336; + this.state = 7345; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 7343; + this.state = 7352; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT: { - this.state = 7337; + this.state = 7346; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7338; + this.state = 7347; this.match(PostgreSqlParser.KW_ROW); } break; case PostgreSqlParser.KW_GROUP: { - this.state = 7339; + this.state = 7348; this.match(PostgreSqlParser.KW_GROUP); } break; case PostgreSqlParser.KW_TIES: { - this.state = 7340; + this.state = 7349; this.match(PostgreSqlParser.KW_TIES); } break; case PostgreSqlParser.KW_NO: { - this.state = 7341; + this.state = 7350; this.match(PostgreSqlParser.KW_NO); - this.state = 7342; + this.state = 7351; this.match(PostgreSqlParser.KW_OTHERS); } break; @@ -45016,32 +45046,32 @@ export class PostgreSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 708, PostgreSqlParser.RULE_frameBound); + this.enterRule(localContext, 710, PostgreSqlParser.RULE_frameBound); let _la: number; try { - this.state = 7354; + this.state = 7363; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7349; + this.state = 7358; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: { - this.state = 7347; + this.state = 7356; this.match(PostgreSqlParser.KW_UNBOUNDED); } break; case 2: { - this.state = 7348; + this.state = 7357; this.expression(); } break; } - this.state = 7351; + this.state = 7360; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -45055,9 +45085,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7352; + this.state = 7361; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7353; + this.state = 7362; this.match(PostgreSqlParser.KW_ROW); } break; @@ -45079,30 +45109,30 @@ export class PostgreSqlParser extends SQLParserBase { } public row(): RowContext { let localContext = new RowContext(this.context, this.state); - this.enterRule(localContext, 710, PostgreSqlParser.RULE_row); + this.enterRule(localContext, 712, PostgreSqlParser.RULE_row); try { - this.state = 7363; + this.state = 7372; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ROW: this.enterOuterAlt(localContext, 1); { - this.state = 7356; + this.state = 7365; this.explicitRow(); } break; case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 7357; + this.state = 7366; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7358; + this.state = 7367; this.exprList(); - this.state = 7359; + this.state = 7368; this.match(PostgreSqlParser.COMMA); - this.state = 7360; + this.state = 7369; this.expression(); - this.state = 7361; + this.state = 7370; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45126,26 +45156,26 @@ export class PostgreSqlParser extends SQLParserBase { } public explicitRow(): ExplicitRowContext { let localContext = new ExplicitRowContext(this.context, this.state); - this.enterRule(localContext, 712, PostgreSqlParser.RULE_explicitRow); + this.enterRule(localContext, 714, PostgreSqlParser.RULE_explicitRow); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7365; + this.state = 7374; this.match(PostgreSqlParser.KW_ROW); - this.state = 7366; + this.state = 7375; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7368; + this.state = 7377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7367; + this.state = 7376; this.exprList(); } } - this.state = 7370; + this.state = 7379; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45165,12 +45195,12 @@ export class PostgreSqlParser extends SQLParserBase { } public subType(): SubTypeContext { let localContext = new SubTypeContext(this.context, this.state); - this.enterRule(localContext, 714, PostgreSqlParser.RULE_subType); + this.enterRule(localContext, 716, PostgreSqlParser.RULE_subType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7372; + this.state = 7381; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 34 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -45197,15 +45227,15 @@ export class PostgreSqlParser extends SQLParserBase { } public allOp(): AllOpContext { let localContext = new AllOpContext(this.context, this.state); - this.enterRule(localContext, 716, PostgreSqlParser.RULE_allOp); + this.enterRule(localContext, 718, PostgreSqlParser.RULE_allOp); try { - this.state = 7376; + this.state = 7385; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7374; + this.state = 7383; this.match(PostgreSqlParser.Operator); } break; @@ -45223,7 +45253,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PERCENT: this.enterOuterAlt(localContext, 2); { - this.state = 7375; + this.state = 7384; this.mathOp(); } break; @@ -45247,12 +45277,12 @@ export class PostgreSqlParser extends SQLParserBase { } public mathOp(): MathOpContext { let localContext = new MathOpContext(this.context, this.state); - this.enterRule(localContext, 718, PostgreSqlParser.RULE_mathOp); + this.enterRule(localContext, 720, PostgreSqlParser.RULE_mathOp); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7378; + this.state = 7387; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { this.errorHandler.recoverInline(this); @@ -45279,28 +45309,28 @@ export class PostgreSqlParser extends SQLParserBase { } public qualOp(): QualOpContext { let localContext = new QualOpContext(this.context, this.state); - this.enterRule(localContext, 720, PostgreSqlParser.RULE_qualOp); + this.enterRule(localContext, 722, PostgreSqlParser.RULE_qualOp); try { - this.state = 7386; + this.state = 7395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7380; + this.state = 7389; this.match(PostgreSqlParser.Operator); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7381; + this.state = 7390; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7382; + this.state = 7391; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7383; + this.state = 7392; this.anyOperator(); - this.state = 7384; + this.state = 7393; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45324,9 +45354,9 @@ export class PostgreSqlParser extends SQLParserBase { } public qualAllOp(): QualAllOpContext { let localContext = new QualAllOpContext(this.context, this.state); - this.enterRule(localContext, 722, PostgreSqlParser.RULE_qualAllOp); + this.enterRule(localContext, 724, PostgreSqlParser.RULE_qualAllOp); try { - this.state = 7394; + this.state = 7403; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45344,20 +45374,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7388; + this.state = 7397; this.allOp(); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7389; + this.state = 7398; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7390; + this.state = 7399; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7391; + this.state = 7400; this.anyOperator(); - this.state = 7392; + this.state = 7401; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45381,10 +45411,10 @@ export class PostgreSqlParser extends SQLParserBase { } public subqueryOperator(): SubqueryOperatorContext { let localContext = new SubqueryOperatorContext(this.context, this.state); - this.enterRule(localContext, 724, PostgreSqlParser.RULE_subqueryOperator); + this.enterRule(localContext, 726, PostgreSqlParser.RULE_subqueryOperator); let _la: number; try { - this.state = 7401; + this.state = 7410; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45403,7 +45433,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 7396; + this.state = 7405; this.qualAllOp(); } break; @@ -45412,17 +45442,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 7398; + this.state = 7407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7397; + this.state = 7406; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7400; + this.state = 7409; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 120)) { this.errorHandler.recoverInline(this); @@ -45453,28 +45483,28 @@ export class PostgreSqlParser extends SQLParserBase { } public exprList(): ExprListContext { let localContext = new ExprListContext(this.context, this.state); - this.enterRule(localContext, 726, PostgreSqlParser.RULE_exprList); + this.enterRule(localContext, 728, PostgreSqlParser.RULE_exprList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7403; + this.state = 7412; this.expression(); - this.state = 7408; + this.state = 7417; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7404; + this.state = 7413; this.match(PostgreSqlParser.COMMA); - this.state = 7405; + this.state = 7414; this.expression(); } } } - this.state = 7410; + this.state = 7419; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); } @@ -45494,22 +45524,70 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 730, PostgreSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7420; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 732, PostgreSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7422; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnExpr(): ColumnExprContext { let localContext = new ColumnExprContext(this.context, this.state); - this.enterRule(localContext, 728, PostgreSqlParser.RULE_columnExpr); + this.enterRule(localContext, 734, PostgreSqlParser.RULE_columnExpr); try { - this.state = 7416; + this.state = 7429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 7411; + this.state = 7424; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7412; + this.state = 7425; this.expression(); - this.state = 7413; + this.state = 7426; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45517,7 +45595,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7415; + this.state = 7428; this.columnName(); } break; @@ -45539,22 +45617,22 @@ export class PostgreSqlParser extends SQLParserBase { } public columnExprNoParen(): ColumnExprNoParenContext { let localContext = new ColumnExprNoParenContext(this.context, this.state); - this.enterRule(localContext, 730, PostgreSqlParser.RULE_columnExprNoParen); + this.enterRule(localContext, 736, PostgreSqlParser.RULE_columnExprNoParen); try { - this.state = 7420; + this.state = 7433; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7418; + this.state = 7431; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7419; + this.state = 7432; this.columnName(); } break; @@ -45576,28 +45654,28 @@ export class PostgreSqlParser extends SQLParserBase { } public funcArgList(): FuncArgListContext { let localContext = new FuncArgListContext(this.context, this.state); - this.enterRule(localContext, 732, PostgreSqlParser.RULE_funcArgList); + this.enterRule(localContext, 738, PostgreSqlParser.RULE_funcArgList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7422; + this.state = 7435; this.funcArgExpr(); - this.state = 7427; + this.state = 7440; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7423; + this.state = 7436; this.match(PostgreSqlParser.COMMA); - this.state = 7424; + this.state = 7437; this.funcArgExpr(); } } } - this.state = 7429; + this.state = 7442; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); } @@ -45619,37 +45697,37 @@ export class PostgreSqlParser extends SQLParserBase { } public funcArgExpr(): FuncArgExprContext { let localContext = new FuncArgExprContext(this.context, this.state); - this.enterRule(localContext, 734, PostgreSqlParser.RULE_funcArgExpr); + this.enterRule(localContext, 740, PostgreSqlParser.RULE_funcArgExpr); let _la: number; try { - this.state = 7437; + this.state = 7450; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7430; + this.state = 7443; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7431; + this.state = 7444; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7432; + this.state = 7445; this.typeFunctionName(); - this.state = 7435; + this.state = 7448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 22) { { - this.state = 7433; + this.state = 7446; _la = this.tokenStream.LA(1); if(!(_la === 20 || _la === 22)) { this.errorHandler.recoverInline(this); @@ -45658,7 +45736,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7434; + this.state = 7447; this.expression(); } } @@ -45683,14 +45761,14 @@ export class PostgreSqlParser extends SQLParserBase { } public arrayExpr(): ArrayExprContext { let localContext = new ArrayExprContext(this.context, this.state); - this.enterRule(localContext, 736, PostgreSqlParser.RULE_arrayExpr); + this.enterRule(localContext, 742, PostgreSqlParser.RULE_arrayExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7439; + this.state = 7452; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7449; + this.state = 7462; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -46136,28 +46214,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7440; + this.state = 7453; this.exprList(); } break; case PostgreSqlParser.OPEN_BRACKET: { { - this.state = 7441; + this.state = 7454; this.arrayExpr(); - this.state = 7446; + this.state = 7459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7442; + this.state = 7455; this.match(PostgreSqlParser.COMMA); - this.state = 7443; + this.state = 7456; this.arrayExpr(); } } - this.state = 7448; + this.state = 7461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46169,7 +46247,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 7451; + this.state = 7464; this.match(PostgreSqlParser.CLOSE_BRACKET); } } @@ -46189,64 +46267,64 @@ export class PostgreSqlParser extends SQLParserBase { } public extractArg(): ExtractArgContext { let localContext = new ExtractArgContext(this.context, this.state); - this.enterRule(localContext, 738, PostgreSqlParser.RULE_extractArg); + this.enterRule(localContext, 744, PostgreSqlParser.RULE_extractArg); try { - this.state = 7461; + this.state = 7474; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7453; + this.state = 7466; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7454; + this.state = 7467; this.match(PostgreSqlParser.KW_YEAR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7455; + this.state = 7468; this.match(PostgreSqlParser.KW_MONTH); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7456; + this.state = 7469; this.match(PostgreSqlParser.KW_DAY); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7457; + this.state = 7470; this.match(PostgreSqlParser.KW_HOUR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7458; + this.state = 7471; this.match(PostgreSqlParser.KW_MINUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7459; + this.state = 7472; this.match(PostgreSqlParser.KW_SECOND); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7460; + this.state = 7473; this.stringConst(); } break; @@ -46268,12 +46346,12 @@ export class PostgreSqlParser extends SQLParserBase { } public unicodeNormalForm(): UnicodeNormalFormContext { let localContext = new UnicodeNormalFormContext(this.context, this.state); - this.enterRule(localContext, 740, PostgreSqlParser.RULE_unicodeNormalForm); + this.enterRule(localContext, 746, PostgreSqlParser.RULE_unicodeNormalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7463; + this.state = 7476; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -46300,29 +46378,29 @@ export class PostgreSqlParser extends SQLParserBase { } public substrList(): SubstrListContext { let localContext = new SubstrListContext(this.context, this.state); - this.enterRule(localContext, 742, PostgreSqlParser.RULE_substrList); + this.enterRule(localContext, 748, PostgreSqlParser.RULE_substrList); let _la: number; try { - this.state = 7486; + this.state = 7499; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7465; + this.state = 7478; this.expression(); - this.state = 7466; + this.state = 7479; this.match(PostgreSqlParser.KW_FROM); - this.state = 7467; + this.state = 7480; this.expression(); - this.state = 7470; + this.state = 7483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7468; + this.state = 7481; this.match(PostgreSqlParser.KW_FOR); - this.state = 7469; + this.state = 7482; this.expression(); } } @@ -46332,20 +46410,20 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7472; + this.state = 7485; this.expression(); - this.state = 7473; + this.state = 7486; this.match(PostgreSqlParser.KW_FOR); - this.state = 7474; + this.state = 7487; this.expression(); - this.state = 7477; + this.state = 7490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 7475; + this.state = 7488; this.match(PostgreSqlParser.KW_FROM); - this.state = 7476; + this.state = 7489; this.expression(); } } @@ -46355,22 +46433,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7479; + this.state = 7492; this.expression(); - this.state = 7480; + this.state = 7493; this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 7481; + this.state = 7494; this.expression(); - this.state = 7482; + this.state = 7495; this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 7483; + this.state = 7496; this.expression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7485; + this.state = 7498; this.exprList(); } break; @@ -46392,17 +46470,17 @@ export class PostgreSqlParser extends SQLParserBase { } public when_clause(): When_clauseContext { let localContext = new When_clauseContext(this.context, this.state); - this.enterRule(localContext, 744, PostgreSqlParser.RULE_when_clause); + this.enterRule(localContext, 750, PostgreSqlParser.RULE_when_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7488; + this.state = 7501; this.match(PostgreSqlParser.KW_WHEN); - this.state = 7489; + this.state = 7502; this.expression(); - this.state = 7490; + this.state = 7503; this.match(PostgreSqlParser.KW_THEN); - this.state = 7491; + this.state = 7504; this.expression(); } } @@ -46422,18 +46500,18 @@ export class PostgreSqlParser extends SQLParserBase { } public indirectionEl(): IndirectionElContext { let localContext = new IndirectionElContext(this.context, this.state); - this.enterRule(localContext, 746, PostgreSqlParser.RULE_indirectionEl); + this.enterRule(localContext, 752, PostgreSqlParser.RULE_indirectionEl); let _la: number; try { - this.state = 7510; + this.state = 7523; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.DOT: this.enterOuterAlt(localContext, 1); { - this.state = 7493; + this.state = 7506; this.match(PostgreSqlParser.DOT); - this.state = 7496; + this.state = 7509; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -46927,13 +47005,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7494; + this.state = 7507; this.colLabel(); } break; case PostgreSqlParser.STAR: { - this.state = 7495; + this.state = 7508; this.match(PostgreSqlParser.STAR); } break; @@ -46945,37 +47023,37 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 7498; + this.state = 7511; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7507; + this.state = 7520; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 7499; + this.state = 7512; this.expression(); } break; case 2: { - this.state = 7501; + this.state = 7514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7500; + this.state = 7513; this.expression(); } } - this.state = 7503; + this.state = 7516; this.match(PostgreSqlParser.COLON); - this.state = 7505; + this.state = 7518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7504; + this.state = 7517; this.expression(); } } @@ -46983,7 +47061,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 7509; + this.state = 7522; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -47007,12 +47085,12 @@ export class PostgreSqlParser extends SQLParserBase { } public indirection(): IndirectionContext { let localContext = new IndirectionContext(this.context, this.state); - this.enterRule(localContext, 748, PostgreSqlParser.RULE_indirection); + this.enterRule(localContext, 754, PostgreSqlParser.RULE_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7513; + this.state = 7526; this.errorHandler.sync(this); alternative = 1; do { @@ -47020,7 +47098,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 7512; + this.state = 7525; this.indirectionEl(); } } @@ -47028,7 +47106,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7515; + this.state = 7528; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -47050,24 +47128,24 @@ export class PostgreSqlParser extends SQLParserBase { } public optIndirection(): OptIndirectionContext { let localContext = new OptIndirectionContext(this.context, this.state); - this.enterRule(localContext, 750, PostgreSqlParser.RULE_optIndirection); + this.enterRule(localContext, 756, PostgreSqlParser.RULE_optIndirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7520; + this.state = 7533; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7517; + this.state = 7530; this.indirectionEl(); } } } - this.state = 7522; + this.state = 7535; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); } @@ -47089,28 +47167,28 @@ export class PostgreSqlParser extends SQLParserBase { } public targetList(): TargetListContext { let localContext = new TargetListContext(this.context, this.state); - this.enterRule(localContext, 752, PostgreSqlParser.RULE_targetList); + this.enterRule(localContext, 758, PostgreSqlParser.RULE_targetList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7523; + this.state = 7536; this.targetEl(); - this.state = 7528; + this.state = 7541; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7524; + this.state = 7537; this.match(PostgreSqlParser.COMMA); - this.state = 7525; + this.state = 7538; this.targetEl(); } } } - this.state = 7530; + this.state = 7543; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); } @@ -47132,35 +47210,60 @@ export class PostgreSqlParser extends SQLParserBase { } public targetEl(): TargetElContext { let localContext = new TargetElContext(this.context, this.state); - this.enterRule(localContext, 754, PostgreSqlParser.RULE_targetEl); + this.enterRule(localContext, 760, PostgreSqlParser.RULE_targetEl); + let _la: number; try { - this.state = 7539; + this.state = 7556; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: - localContext = new Target_labelContext(localContext); + localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7531; - this.columnExprNoParen(); - this.state = 7536; + this.state = 7544; + this.tableAllColumns(); + } + break; + case 2: + localContext = new Target_labelContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 7547; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7532; - this.match(PostgreSqlParser.KW_AS); - this.state = 7533; - this.colLabel(); + this.state = 7545; + this.selectLiteralColumnName(); } break; case 2: { - this.state = 7534; - this.identifier(); + this.state = 7546; + this.selectExpressionColumnName(); } break; - case 3: + } + this.state = 7554; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + case 1: + { + this.state = 7550; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36) { + { + this.state = 7549; + this.match(PostgreSqlParser.KW_AS); + } + } + + this.state = 7552; + (localContext as Target_labelContext)._alias = this.identifier(); + } + break; + case 2: // tslint:disable-next-line:no-empty { } @@ -47168,14 +47271,47 @@ export class PostgreSqlParser extends SQLParserBase { } } break; - case 2: - localContext = new Target_starContext(localContext); - this.enterOuterAlt(localContext, 2); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 762, PostgreSqlParser.RULE_tableAllColumns); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7563; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7538; - this.match(PostgreSqlParser.STAR); + { + this.state = 7558; + this.colId(); + this.state = 7559; + this.match(PostgreSqlParser.DOT); } - break; + } + this.state = 7565; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 7566; + this.match(PostgreSqlParser.STAR); } } catch (re) { @@ -47194,26 +47330,26 @@ export class PostgreSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 756, PostgreSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 764, PostgreSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7541; + this.state = 7568; this.qualifiedName(); - this.state = 7546; + this.state = 7573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7542; + this.state = 7569; this.match(PostgreSqlParser.COMMA); - this.state = 7543; + this.state = 7570; this.qualifiedName(); } } - this.state = 7548; + this.state = 7575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47235,26 +47371,26 @@ export class PostgreSqlParser extends SQLParserBase { } public tableNameList(): TableNameListContext { let localContext = new TableNameListContext(this.context, this.state); - this.enterRule(localContext, 758, PostgreSqlParser.RULE_tableNameList); + this.enterRule(localContext, 766, PostgreSqlParser.RULE_tableNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7549; + this.state = 7576; this.tableName(); - this.state = 7554; + this.state = 7581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7550; + this.state = 7577; this.match(PostgreSqlParser.COMMA); - this.state = 7551; + this.state = 7578; this.tableName(); } } - this.state = 7556; + this.state = 7583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47276,26 +47412,26 @@ export class PostgreSqlParser extends SQLParserBase { } public schemaNameList(): SchemaNameListContext { let localContext = new SchemaNameListContext(this.context, this.state); - this.enterRule(localContext, 760, PostgreSqlParser.RULE_schemaNameList); + this.enterRule(localContext, 768, PostgreSqlParser.RULE_schemaNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7557; + this.state = 7584; this.schemaName(); - this.state = 7562; + this.state = 7589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7558; + this.state = 7585; this.match(PostgreSqlParser.COMMA); - this.state = 7559; + this.state = 7586; this.schemaName(); } } - this.state = 7564; + this.state = 7591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47317,26 +47453,26 @@ export class PostgreSqlParser extends SQLParserBase { } public databaseNameList(): DatabaseNameListContext { let localContext = new DatabaseNameListContext(this.context, this.state); - this.enterRule(localContext, 762, PostgreSqlParser.RULE_databaseNameList); + this.enterRule(localContext, 770, PostgreSqlParser.RULE_databaseNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7565; + this.state = 7592; this.databaseName(); - this.state = 7570; + this.state = 7597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7566; + this.state = 7593; this.match(PostgreSqlParser.COMMA); - this.state = 7567; + this.state = 7594; this.databaseName(); } } - this.state = 7572; + this.state = 7599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47358,11 +47494,11 @@ export class PostgreSqlParser extends SQLParserBase { } public tableSpaceNameCreate(): TableSpaceNameCreateContext { let localContext = new TableSpaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 764, PostgreSqlParser.RULE_tableSpaceNameCreate); + this.enterRule(localContext, 772, PostgreSqlParser.RULE_tableSpaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7573; + this.state = 7600; this.qualifiedName(); } } @@ -47382,11 +47518,11 @@ export class PostgreSqlParser extends SQLParserBase { } public tableSpaceName(): TableSpaceNameContext { let localContext = new TableSpaceNameContext(this.context, this.state); - this.enterRule(localContext, 766, PostgreSqlParser.RULE_tableSpaceName); + this.enterRule(localContext, 774, PostgreSqlParser.RULE_tableSpaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7575; + this.state = 7602; this.qualifiedName(); } } @@ -47406,11 +47542,11 @@ export class PostgreSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 768, PostgreSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 776, PostgreSqlParser.RULE_tableNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7577; + this.state = 7604; this.qualifiedName(); } } @@ -47430,11 +47566,11 @@ export class PostgreSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 770, PostgreSqlParser.RULE_tableName); + this.enterRule(localContext, 778, PostgreSqlParser.RULE_tableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7579; + this.state = 7606; this.qualifiedName(); } } @@ -47454,11 +47590,11 @@ export class PostgreSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 772, PostgreSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 780, PostgreSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7581; + this.state = 7608; this.qualifiedName(); } } @@ -47478,11 +47614,11 @@ export class PostgreSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 774, PostgreSqlParser.RULE_viewName); + this.enterRule(localContext, 782, PostgreSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7583; + this.state = 7610; this.anyName(); } } @@ -47502,18 +47638,18 @@ export class PostgreSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 776, PostgreSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 784, PostgreSqlParser.RULE_qualifiedName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7585; + this.state = 7612; this.colId(); - this.state = 7587; + this.state = 7614; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 7586; + this.state = 7613; this.indirection(); } break; @@ -47536,26 +47672,26 @@ export class PostgreSqlParser extends SQLParserBase { } public tableSpaceNameList(): TableSpaceNameListContext { let localContext = new TableSpaceNameListContext(this.context, this.state); - this.enterRule(localContext, 778, PostgreSqlParser.RULE_tableSpaceNameList); + this.enterRule(localContext, 786, PostgreSqlParser.RULE_tableSpaceNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7589; + this.state = 7616; this.tableSpaceName(); - this.state = 7594; + this.state = 7621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7590; + this.state = 7617; this.match(PostgreSqlParser.COMMA); - this.state = 7591; + this.state = 7618; this.tableSpaceName(); } } - this.state = 7596; + this.state = 7623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47577,26 +47713,26 @@ export class PostgreSqlParser extends SQLParserBase { } public nameList(): NameListContext { let localContext = new NameListContext(this.context, this.state); - this.enterRule(localContext, 780, PostgreSqlParser.RULE_nameList); + this.enterRule(localContext, 788, PostgreSqlParser.RULE_nameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7597; + this.state = 7624; this.colId(); - this.state = 7602; + this.state = 7629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7598; + this.state = 7625; this.match(PostgreSqlParser.COMMA); - this.state = 7599; + this.state = 7626; this.colId(); } } - this.state = 7604; + this.state = 7631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47618,11 +47754,11 @@ export class PostgreSqlParser extends SQLParserBase { } public databaseNameCreate(): DatabaseNameCreateContext { let localContext = new DatabaseNameCreateContext(this.context, this.state); - this.enterRule(localContext, 782, PostgreSqlParser.RULE_databaseNameCreate); + this.enterRule(localContext, 790, PostgreSqlParser.RULE_databaseNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7605; + this.state = 7632; this.anyName(); } } @@ -47642,11 +47778,11 @@ export class PostgreSqlParser extends SQLParserBase { } public databaseName(): DatabaseNameContext { let localContext = new DatabaseNameContext(this.context, this.state); - this.enterRule(localContext, 784, PostgreSqlParser.RULE_databaseName); + this.enterRule(localContext, 792, PostgreSqlParser.RULE_databaseName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7607; + this.state = 7634; this.anyName(); } } @@ -47666,11 +47802,11 @@ export class PostgreSqlParser extends SQLParserBase { } public schemaName(): SchemaNameContext { let localContext = new SchemaNameContext(this.context, this.state); - this.enterRule(localContext, 786, PostgreSqlParser.RULE_schemaName); + this.enterRule(localContext, 794, PostgreSqlParser.RULE_schemaName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7609; + this.state = 7636; this.anyName(); } } @@ -47690,11 +47826,11 @@ export class PostgreSqlParser extends SQLParserBase { } public routineNameCreate(): RoutineNameCreateContext { let localContext = new RoutineNameCreateContext(this.context, this.state); - this.enterRule(localContext, 788, PostgreSqlParser.RULE_routineNameCreate); + this.enterRule(localContext, 796, PostgreSqlParser.RULE_routineNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7611; + this.state = 7638; this.colId(); } } @@ -47714,11 +47850,11 @@ export class PostgreSqlParser extends SQLParserBase { } public routineName(): RoutineNameContext { let localContext = new RoutineNameContext(this.context, this.state); - this.enterRule(localContext, 790, PostgreSqlParser.RULE_routineName); + this.enterRule(localContext, 798, PostgreSqlParser.RULE_routineName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7613; + this.state = 7640; this.colId(); } } @@ -47738,24 +47874,24 @@ export class PostgreSqlParser extends SQLParserBase { } public procedureName(): ProcedureNameContext { let localContext = new ProcedureNameContext(this.context, this.state); - this.enterRule(localContext, 792, PostgreSqlParser.RULE_procedureName); + this.enterRule(localContext, 800, PostgreSqlParser.RULE_procedureName); try { - this.state = 7619; + this.state = 7646; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7615; + this.state = 7642; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7616; + this.state = 7643; this.colId(); - this.state = 7617; + this.state = 7644; this.indirection(); } break; @@ -47777,24 +47913,24 @@ export class PostgreSqlParser extends SQLParserBase { } public procedureNameCreate(): ProcedureNameCreateContext { let localContext = new ProcedureNameCreateContext(this.context, this.state); - this.enterRule(localContext, 794, PostgreSqlParser.RULE_procedureNameCreate); + this.enterRule(localContext, 802, PostgreSqlParser.RULE_procedureNameCreate); try { - this.state = 7625; + this.state = 7652; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7621; + this.state = 7648; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7622; + this.state = 7649; this.colId(); - this.state = 7623; + this.state = 7650; this.indirection(); } break; @@ -47816,24 +47952,24 @@ export class PostgreSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 796, PostgreSqlParser.RULE_columnName); + this.enterRule(localContext, 804, PostgreSqlParser.RULE_columnName); try { - this.state = 7631; + this.state = 7658; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7627; + this.state = 7654; this.colId(); - this.state = 7628; + this.state = 7655; this.optIndirection(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7630; + this.state = 7657; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -47857,13 +47993,13 @@ export class PostgreSqlParser extends SQLParserBase { } public columnNamePath(): ColumnNamePathContext { let localContext = new ColumnNamePathContext(this.context, this.state); - this.enterRule(localContext, 798, PostgreSqlParser.RULE_columnNamePath); + this.enterRule(localContext, 806, PostgreSqlParser.RULE_columnNamePath); try { this.enterOuterAlt(localContext, 1); { - this.state = 7633; + this.state = 7660; this.colId(); - this.state = 7634; + this.state = 7661; this.optIndirection(); } } @@ -47883,11 +48019,11 @@ export class PostgreSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 800, PostgreSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 808, PostgreSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7636; + this.state = 7663; this.colId(); } } @@ -47907,24 +48043,24 @@ export class PostgreSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 802, PostgreSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 810, PostgreSqlParser.RULE_functionNameCreate); try { - this.state = 7642; + this.state = 7669; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7638; + this.state = 7665; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7639; + this.state = 7666; this.colId(); - this.state = 7640; + this.state = 7667; this.indirection(); } break; @@ -47946,24 +48082,24 @@ export class PostgreSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 804, PostgreSqlParser.RULE_functionName); + this.enterRule(localContext, 812, PostgreSqlParser.RULE_functionName); try { - this.state = 7648; + this.state = 7675; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7644; + this.state = 7671; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7645; + this.state = 7672; this.colId(); - this.state = 7646; + this.state = 7673; this.indirection(); } break; @@ -47985,20 +48121,20 @@ export class PostgreSqlParser extends SQLParserBase { } public stringConst(): StringConstContext { let localContext = new StringConstContext(this.context, this.state); - this.enterRule(localContext, 806, PostgreSqlParser.RULE_stringConst); + this.enterRule(localContext, 814, PostgreSqlParser.RULE_stringConst); try { this.enterOuterAlt(localContext, 1); { - this.state = 7650; + this.state = 7677; this.anysconst(); - this.state = 7653; + this.state = 7680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { case 1: { - this.state = 7651; + this.state = 7678; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7652; + this.state = 7679; this.anysconst(); } break; @@ -48021,53 +48157,53 @@ export class PostgreSqlParser extends SQLParserBase { } public anysconst(): AnysconstContext { let localContext = new AnysconstContext(this.context, this.state); - this.enterRule(localContext, 808, PostgreSqlParser.RULE_anysconst); + this.enterRule(localContext, 816, PostgreSqlParser.RULE_anysconst); let _la: number; try { - this.state = 7666; + this.state = 7693; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7655; + this.state = 7682; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7656; + this.state = 7683; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 7657; + this.state = 7684; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 7661; + this.state = 7688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 590) { { { - this.state = 7658; + this.state = 7685; this.match(PostgreSqlParser.DollarText); } } - this.state = 7663; + this.state = 7690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7664; + this.state = 7691; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 7665; + this.state = 7692; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -48091,17 +48227,17 @@ export class PostgreSqlParser extends SQLParserBase { } public signedConst(): SignedConstContext { let localContext = new SignedConstContext(this.context, this.state); - this.enterRule(localContext, 810, PostgreSqlParser.RULE_signedConst); + this.enterRule(localContext, 818, PostgreSqlParser.RULE_signedConst); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7669; + this.state = 7696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 7668; + this.state = 7695; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -48113,7 +48249,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7671; + this.state = 7698; this.match(PostgreSqlParser.Integral); } } @@ -48133,43 +48269,43 @@ export class PostgreSqlParser extends SQLParserBase { } public roleSpec(): RoleSpecContext { let localContext = new RoleSpecContext(this.context, this.state); - this.enterRule(localContext, 812, PostgreSqlParser.RULE_roleSpec); + this.enterRule(localContext, 820, PostgreSqlParser.RULE_roleSpec); try { - this.state = 7678; + this.state = 7705; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7673; + this.state = 7700; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7674; + this.state = 7701; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7675; + this.state = 7702; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7676; + this.state = 7703; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7677; + this.state = 7704; this.match(PostgreSqlParser.KW_PUBLIC); } break; @@ -48191,26 +48327,26 @@ export class PostgreSqlParser extends SQLParserBase { } public roleList(): RoleListContext { let localContext = new RoleListContext(this.context, this.state); - this.enterRule(localContext, 814, PostgreSqlParser.RULE_roleList); + this.enterRule(localContext, 822, PostgreSqlParser.RULE_roleList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7680; + this.state = 7707; this.roleSpec(); - this.state = 7685; + this.state = 7712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7681; + this.state = 7708; this.match(PostgreSqlParser.COMMA); - this.state = 7682; + this.state = 7709; this.roleSpec(); } } - this.state = 7687; + this.state = 7714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48232,22 +48368,22 @@ export class PostgreSqlParser extends SQLParserBase { } public colId(): ColIdContext { let localContext = new ColIdContext(this.context, this.state); - this.enterRule(localContext, 816, PostgreSqlParser.RULE_colId); + this.enterRule(localContext, 824, PostgreSqlParser.RULE_colId); try { - this.state = 7690; + this.state = 7717; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7688; + this.state = 7715; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7689; + this.state = 7716; this.colNameKeyword(); } break; @@ -48269,22 +48405,22 @@ export class PostgreSqlParser extends SQLParserBase { } public typeFunctionName(): TypeFunctionNameContext { let localContext = new TypeFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 818, PostgreSqlParser.RULE_typeFunctionName); + this.enterRule(localContext, 826, PostgreSqlParser.RULE_typeFunctionName); try { - this.state = 7694; + this.state = 7721; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7692; + this.state = 7719; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7693; + this.state = 7720; this.typeFuncNameKeyword(); } break; @@ -48306,29 +48442,29 @@ export class PostgreSqlParser extends SQLParserBase { } public nonReservedWord(): NonReservedWordContext { let localContext = new NonReservedWordContext(this.context, this.state); - this.enterRule(localContext, 820, PostgreSqlParser.RULE_nonReservedWord); + this.enterRule(localContext, 828, PostgreSqlParser.RULE_nonReservedWord); try { - this.state = 7699; + this.state = 7726; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7696; + this.state = 7723; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7697; + this.state = 7724; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7698; + this.state = 7725; this.typeFuncNameKeyword(); } break; @@ -48350,36 +48486,36 @@ export class PostgreSqlParser extends SQLParserBase { } public colLabel(): ColLabelContext { let localContext = new ColLabelContext(this.context, this.state); - this.enterRule(localContext, 822, PostgreSqlParser.RULE_colLabel); + this.enterRule(localContext, 830, PostgreSqlParser.RULE_colLabel); try { - this.state = 7705; + this.state = 7732; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7701; + this.state = 7728; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7702; + this.state = 7729; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7703; + this.state = 7730; this.typeFuncNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7704; + this.state = 7731; this.reservedKeyword(); } break; @@ -48401,24 +48537,24 @@ export class PostgreSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 824, PostgreSqlParser.RULE_identifier); + this.enterRule(localContext, 832, PostgreSqlParser.RULE_identifier); try { - this.state = 7718; + this.state = 7745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 7707; + this.state = 7734; this.match(PostgreSqlParser.Identifier); - this.state = 7710; + this.state = 7737; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { case 1: { - this.state = 7708; + this.state = 7735; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7709; + this.state = 7736; this.anysconst(); } break; @@ -48431,35 +48567,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7712; + this.state = 7739; this.stringConst(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 7713; + this.state = 7740; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 7714; + this.state = 7741; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 7715; + this.state = 7742; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 7716; + this.state = 7743; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } break; @@ -48799,7 +48935,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 7); { - this.state = 7717; + this.state = 7744; this.unreservedKeyword(); } break; @@ -48823,12 +48959,12 @@ export class PostgreSqlParser extends SQLParserBase { } public unreservedKeyword(): UnreservedKeywordContext { let localContext = new UnreservedKeywordContext(this.context, this.state); - this.enterRule(localContext, 826, PostgreSqlParser.RULE_unreservedKeyword); + this.enterRule(localContext, 834, PostgreSqlParser.RULE_unreservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7720; + this.state = 7747; _la = this.tokenStream.LA(1); if(!(_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || _la === 547 || _la === 548)) { this.errorHandler.recoverInline(this); @@ -48855,365 +48991,365 @@ export class PostgreSqlParser extends SQLParserBase { } public colNameKeyword(): ColNameKeywordContext { let localContext = new ColNameKeywordContext(this.context, this.state); - this.enterRule(localContext, 828, PostgreSqlParser.RULE_colNameKeyword); + this.enterRule(localContext, 836, PostgreSqlParser.RULE_colNameKeyword); try { - this.state = 7773; + this.state = 7800; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7722; + this.state = 7749; this.match(PostgreSqlParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7723; + this.state = 7750; this.match(PostgreSqlParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7724; + this.state = 7751; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7725; + this.state = 7752; this.match(PostgreSqlParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7726; + this.state = 7753; this.match(PostgreSqlParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7727; + this.state = 7754; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7728; + this.state = 7755; this.match(PostgreSqlParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7729; + this.state = 7756; this.match(PostgreSqlParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7730; + this.state = 7757; this.match(PostgreSqlParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7731; + this.state = 7758; this.match(PostgreSqlParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7732; + this.state = 7759; this.match(PostgreSqlParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7733; + this.state = 7760; this.match(PostgreSqlParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7734; + this.state = 7761; this.match(PostgreSqlParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7735; + this.state = 7762; this.match(PostgreSqlParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7736; + this.state = 7763; this.match(PostgreSqlParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7737; + this.state = 7764; this.match(PostgreSqlParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7738; + this.state = 7765; this.match(PostgreSqlParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7739; + this.state = 7766; this.match(PostgreSqlParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7740; + this.state = 7767; this.match(PostgreSqlParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7741; + this.state = 7768; this.match(PostgreSqlParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7742; + this.state = 7769; this.match(PostgreSqlParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7743; + this.state = 7770; this.match(PostgreSqlParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7744; + this.state = 7771; this.match(PostgreSqlParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7745; + this.state = 7772; this.match(PostgreSqlParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7746; + this.state = 7773; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7747; + this.state = 7774; this.match(PostgreSqlParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7748; + this.state = 7775; this.match(PostgreSqlParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7749; + this.state = 7776; this.match(PostgreSqlParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7750; + this.state = 7777; this.match(PostgreSqlParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7751; + this.state = 7778; this.match(PostgreSqlParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7752; + this.state = 7779; this.match(PostgreSqlParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7753; + this.state = 7780; this.match(PostgreSqlParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7754; + this.state = 7781; this.match(PostgreSqlParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7755; + this.state = 7782; this.match(PostgreSqlParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7756; + this.state = 7783; this.match(PostgreSqlParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7757; + this.state = 7784; this.match(PostgreSqlParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7758; + this.state = 7785; this.match(PostgreSqlParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7759; + this.state = 7786; this.match(PostgreSqlParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7760; + this.state = 7787; this.match(PostgreSqlParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7761; + this.state = 7788; this.match(PostgreSqlParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7762; + this.state = 7789; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7763; + this.state = 7790; this.match(PostgreSqlParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7764; + this.state = 7791; this.match(PostgreSqlParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 7765; + this.state = 7792; this.match(PostgreSqlParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 7766; + this.state = 7793; this.match(PostgreSqlParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 7767; + this.state = 7794; this.match(PostgreSqlParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 7768; + this.state = 7795; this.match(PostgreSqlParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 7769; + this.state = 7796; this.match(PostgreSqlParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 7770; + this.state = 7797; this.match(PostgreSqlParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 7771; + this.state = 7798; this.match(PostgreSqlParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 7772; + this.state = 7799; this.match(PostgreSqlParser.KW_XMLTABLE); } break; @@ -49235,12 +49371,12 @@ export class PostgreSqlParser extends SQLParserBase { } public typeFuncNameKeyword(): TypeFuncNameKeywordContext { let localContext = new TypeFuncNameKeywordContext(this.context, this.state); - this.enterRule(localContext, 830, PostgreSqlParser.RULE_typeFuncNameKeyword); + this.enterRule(localContext, 838, PostgreSqlParser.RULE_typeFuncNameKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7775; + this.state = 7802; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -49267,12 +49403,12 @@ export class PostgreSqlParser extends SQLParserBase { } public reservedKeyword(): ReservedKeywordContext { let localContext = new ReservedKeywordContext(this.context, this.state); - this.enterRule(localContext, 832, PostgreSqlParser.RULE_reservedKeyword); + this.enterRule(localContext, 840, PostgreSqlParser.RULE_reservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7777; + this.state = 7804; _la = this.tokenStream.LA(1); if(!(((((_la - 30)) & ~0x1F) === 0 && ((1 << (_la - 30)) & 4286578687) !== 0) || ((((_la - 62)) & ~0x1F) === 0 && ((1 << (_la - 62)) & 4294966783) !== 0) || ((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 4095) !== 0) || _la === 454)) { this.errorHandler.recoverInline(this); @@ -49299,60 +49435,60 @@ export class PostgreSqlParser extends SQLParserBase { } public plBlock(): PlBlockContext { let localContext = new PlBlockContext(this.context, this.state); - this.enterRule(localContext, 834, PostgreSqlParser.RULE_plBlock); + this.enterRule(localContext, 842, PostgreSqlParser.RULE_plBlock); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 7780; + this.state = 7807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 7779; + this.state = 7806; this.labelDecl(); } } - this.state = 7792; + this.state = 7819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 7782; + this.state = 7809; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 7790; + this.state = 7817; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1071, this.context) ) { case 1: { - this.state = 7786; + this.state = 7813; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 7786; + this.state = 7813; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { case 1: { - this.state = 7783; + this.state = 7810; this.declStatement(); } break; case 2: { - this.state = 7784; + this.state = 7811; this.match(PostgreSqlParser.KW_DECLARE); } break; case 3: { - this.state = 7785; + this.state = 7812; this.labelDecl(); } break; @@ -49362,9 +49498,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7788; + this.state = 7815; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -49373,42 +49509,42 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7794; + this.state = 7821; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 7798; + this.state = 7825; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7795; + this.state = 7822; this.procStmt(); } } } - this.state = 7800; + this.state = 7827; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context); } - this.state = 7802; + this.state = 7829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 7801; + this.state = 7828; this.exceptionSect(); } } - this.state = 7804; + this.state = 7831; this.match(PostgreSqlParser.KW_END); - this.state = 7806; + this.state = 7833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7805; + this.state = 7832; this.anyIdentifier(); } } @@ -49431,15 +49567,15 @@ export class PostgreSqlParser extends SQLParserBase { } public labelDecl(): LabelDeclContext { let localContext = new LabelDeclContext(this.context, this.state); - this.enterRule(localContext, 836, PostgreSqlParser.RULE_labelDecl); + this.enterRule(localContext, 844, PostgreSqlParser.RULE_labelDecl); try { this.enterOuterAlt(localContext, 1); { - this.state = 7808; + this.state = 7835; this.match(PostgreSqlParser.LESS_LESS); - this.state = 7809; + this.state = 7836; this.anyIdentifier(); - this.state = 7810; + this.state = 7837; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -49459,28 +49595,28 @@ export class PostgreSqlParser extends SQLParserBase { } public declStatement(): DeclStatementContext { let localContext = new DeclStatementContext(this.context, this.state); - this.enterRule(localContext, 838, PostgreSqlParser.RULE_declStatement); + this.enterRule(localContext, 846, PostgreSqlParser.RULE_declStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7812; + this.state = 7839; this.anyIdentifier(); - this.state = 7859; + this.state = 7886; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: { - this.state = 7813; + this.state = 7840; this.match(PostgreSqlParser.KW_ALIAS); - this.state = 7814; + this.state = 7841; this.match(PostgreSqlParser.KW_FOR); - this.state = 7817; + this.state = 7844; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: { - this.state = 7815; + this.state = 7842; this.match(PostgreSqlParser.PARAM); } break; @@ -49879,7 +50015,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7816; + this.state = 7843; this.colId(); } break; @@ -49890,65 +50026,65 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7820; + this.state = 7847; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { case 1: { - this.state = 7819; + this.state = 7846; this.match(PostgreSqlParser.KW_CONSTANT); } break; } - this.state = 7822; + this.state = 7849; this.typename(); - this.state = 7824; + this.state = 7851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 7823; + this.state = 7850; this.collateClause(); } } - this.state = 7828; + this.state = 7855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7826; + this.state = 7853; this.match(PostgreSqlParser.KW_NOT); - this.state = 7827; + this.state = 7854; this.match(PostgreSqlParser.KW_NULL); } } - this.state = 7835; + this.state = 7862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 20 || _la === 53) { { - this.state = 7832; + this.state = 7859; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: { - this.state = 7830; + this.state = 7857; this.assignOperator(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 7831; + this.state = 7858; this.match(PostgreSqlParser.KW_DEFAULT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7834; + this.state = 7861; this.sqlExpression(); } } @@ -49957,59 +50093,59 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7841; + this.state = 7868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 7838; + this.state = 7865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7837; + this.state = 7864; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7840; + this.state = 7867; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 7843; + this.state = 7870; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 7855; + this.state = 7882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7844; + this.state = 7871; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7845; + this.state = 7872; this.declCursorArg(); - this.state = 7850; + this.state = 7877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7846; + this.state = 7873; this.match(PostgreSqlParser.COMMA); - this.state = 7847; + this.state = 7874; this.declCursorArg(); } } - this.state = 7852; + this.state = 7879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7853; + this.state = 7880; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7857; + this.state = 7884; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -50018,12 +50154,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7858; + this.state = 7885; this.selectStmt(); } break; } - this.state = 7861; + this.state = 7888; this.match(PostgreSqlParser.SEMI); } } @@ -50043,13 +50179,13 @@ export class PostgreSqlParser extends SQLParserBase { } public declCursorArg(): DeclCursorArgContext { let localContext = new DeclCursorArgContext(this.context, this.state); - this.enterRule(localContext, 840, PostgreSqlParser.RULE_declCursorArg); + this.enterRule(localContext, 848, PostgreSqlParser.RULE_declCursorArg); try { this.enterOuterAlt(localContext, 1); { - this.state = 7863; + this.state = 7890; this.anyIdentifier(); - this.state = 7864; + this.state = 7891; this.typename(); } } @@ -50069,12 +50205,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assignOperator(): AssignOperatorContext { let localContext = new AssignOperatorContext(this.context, this.state); - this.enterRule(localContext, 842, PostgreSqlParser.RULE_assignOperator); + this.enterRule(localContext, 850, PostgreSqlParser.RULE_assignOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7866; + this.state = 7893; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -50101,164 +50237,164 @@ export class PostgreSqlParser extends SQLParserBase { } public procStmt(): ProcStmtContext { let localContext = new ProcStmtContext(this.context, this.state); - this.enterRule(localContext, 844, PostgreSqlParser.RULE_procStmt); + this.enterRule(localContext, 852, PostgreSqlParser.RULE_procStmt); try { - this.state = 7892; + this.state = 7919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7868; + this.state = 7895; this.plBlock(); - this.state = 7869; + this.state = 7896; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7871; + this.state = 7898; this.stmtReturn(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7872; + this.state = 7899; this.stmtRaise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7873; + this.state = 7900; this.stmtAssign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7874; + this.state = 7901; this.stmtIf(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7875; + this.state = 7902; this.stmtCase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7876; + this.state = 7903; this.stmtLoopWhileFor(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7877; + this.state = 7904; this.stmtForeach(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7878; + this.state = 7905; this.stmtExit(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7879; + this.state = 7906; this.stmtAssert(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7880; + this.state = 7907; this.stmtExecsql(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7881; + this.state = 7908; this.stmtDynexecute(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7882; + this.state = 7909; this.stmtPerform(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7883; + this.state = 7910; this.stmtCall(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7884; + this.state = 7911; this.stmtGetdiag(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7885; + this.state = 7912; this.stmtOpen(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7886; + this.state = 7913; this.stmtFetch(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7887; + this.state = 7914; this.stmtMove(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7888; + this.state = 7915; this.stmtClose(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7889; + this.state = 7916; this.stmtNull(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7890; + this.state = 7917; this.stmtCommitOrRollback(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7891; + this.state = 7918; this.stmtSet(); } break; @@ -50280,15 +50416,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtPerform(): StmtPerformContext { let localContext = new StmtPerformContext(this.context, this.state); - this.enterRule(localContext, 846, PostgreSqlParser.RULE_stmtPerform); + this.enterRule(localContext, 854, PostgreSqlParser.RULE_stmtPerform); try { this.enterOuterAlt(localContext, 1); { - this.state = 7894; + this.state = 7921; this.match(PostgreSqlParser.KW_PERFORM); - this.state = 7895; + this.state = 7922; this.sqlExpression(); - this.state = 7896; + this.state = 7923; this.match(PostgreSqlParser.SEMI); } } @@ -50308,39 +50444,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCall(): StmtCallContext { let localContext = new StmtCallContext(this.context, this.state); - this.enterRule(localContext, 848, PostgreSqlParser.RULE_stmtCall); + this.enterRule(localContext, 856, PostgreSqlParser.RULE_stmtCall); let _la: number; try { - this.state = 7917; + this.state = 7944; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 7898; + this.state = 7925; this.match(PostgreSqlParser.KW_CALL); - this.state = 7899; + this.state = 7926; this.anyIdentifier(); - this.state = 7906; + this.state = 7933; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { case 1: { - this.state = 7900; + this.state = 7927; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7902; + this.state = 7929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7901; + this.state = 7928; this.exprList(); } } - this.state = 7904; + this.state = 7931; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7905; + this.state = 7932; this.match(PostgreSqlParser.SEMI); } break; @@ -50350,25 +50486,25 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 7908; + this.state = 7935; this.match(PostgreSqlParser.KW_DO); - this.state = 7909; + this.state = 7936; this.anyIdentifier(); - this.state = 7910; + this.state = 7937; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7912; + this.state = 7939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7911; + this.state = 7938; this.exprList(); } } - this.state = 7914; + this.state = 7941; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7915; + this.state = 7942; this.match(PostgreSqlParser.SEMI); } break; @@ -50392,17 +50528,17 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtAssign(): StmtAssignContext { let localContext = new StmtAssignContext(this.context, this.state); - this.enterRule(localContext, 850, PostgreSqlParser.RULE_stmtAssign); + this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmtAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 7919; + this.state = 7946; this.assignVar(); - this.state = 7920; + this.state = 7947; this.assignOperator(); - this.state = 7921; + this.state = 7948; this.sqlExpression(); - this.state = 7922; + this.state = 7949; this.match(PostgreSqlParser.SEMI); } } @@ -50422,19 +50558,19 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtGetdiag(): StmtGetdiagContext { let localContext = new StmtGetdiagContext(this.context, this.state); - this.enterRule(localContext, 852, PostgreSqlParser.RULE_stmtGetdiag); + this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtGetdiag); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7924; + this.state = 7951; this.match(PostgreSqlParser.KW_GET); - this.state = 7926; + this.state = 7953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 501) { { - this.state = 7925; + this.state = 7952; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 501)) { this.errorHandler.recoverInline(this); @@ -50446,29 +50582,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7928; + this.state = 7955; this.match(PostgreSqlParser.KW_DIAGNOSTICS); { - this.state = 7929; + this.state = 7956; this.getdiagListItem(); - this.state = 7934; + this.state = 7961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7930; + this.state = 7957; this.match(PostgreSqlParser.COMMA); - this.state = 7931; + this.state = 7958; this.getdiagListItem(); } } - this.state = 7936; + this.state = 7963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7937; + this.state = 7964; this.match(PostgreSqlParser.SEMI); } } @@ -50488,15 +50624,15 @@ export class PostgreSqlParser extends SQLParserBase { } public getdiagListItem(): GetdiagListItemContext { let localContext = new GetdiagListItemContext(this.context, this.state); - this.enterRule(localContext, 854, PostgreSqlParser.RULE_getdiagListItem); + this.enterRule(localContext, 862, PostgreSqlParser.RULE_getdiagListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 7939; + this.state = 7966; this.assignVar(); - this.state = 7940; + this.state = 7967; this.assignOperator(); - this.state = 7941; + this.state = 7968; this.colId(); } } @@ -50516,12 +50652,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assignVar(): AssignVarContext { let localContext = new AssignVarContext(this.context, this.state); - this.enterRule(localContext, 856, PostgreSqlParser.RULE_assignVar); + this.enterRule(localContext, 864, PostgreSqlParser.RULE_assignVar); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7945; + this.state = 7972; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -50919,34 +51055,34 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7943; + this.state = 7970; this.anyName(); } break; case PostgreSqlParser.PARAM: { - this.state = 7944; + this.state = 7971; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7953; + this.state = 7980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 7947; + this.state = 7974; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7948; + this.state = 7975; this.expression(); - this.state = 7949; + this.state = 7976; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 7955; + this.state = 7982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50968,85 +51104,85 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtIf(): StmtIfContext { let localContext = new StmtIfContext(this.context, this.state); - this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmtIf); + this.enterRule(localContext, 866, PostgreSqlParser.RULE_stmtIf); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7956; + this.state = 7983; this.match(PostgreSqlParser.KW_IF); - this.state = 7957; + this.state = 7984; this.sqlExpression(); - this.state = 7958; + this.state = 7985; this.match(PostgreSqlParser.KW_THEN); - this.state = 7962; + this.state = 7989; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7959; + this.state = 7986; this.procStmt(); } } } - this.state = 7964; + this.state = 7991; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); } { - this.state = 7976; + this.state = 8003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 7965; + this.state = 7992; this.match(PostgreSqlParser.KW_ELSIF); - this.state = 7966; + this.state = 7993; this.expression(); - this.state = 7967; + this.state = 7994; this.match(PostgreSqlParser.KW_THEN); - this.state = 7971; + this.state = 7998; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7968; + this.state = 7995; this.procStmt(); } } } - this.state = 7973; + this.state = 8000; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); } } } - this.state = 7978; + this.state = 8005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7980; + this.state = 8007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 7979; + this.state = 8006; this.stmtElse(); } } - this.state = 7982; + this.state = 8009; this.match(PostgreSqlParser.KW_END); - this.state = 7983; + this.state = 8010; this.match(PostgreSqlParser.KW_IF); - this.state = 7984; + this.state = 8011; this.match(PostgreSqlParser.SEMI); } } @@ -51066,28 +51202,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtElse(): StmtElseContext { let localContext = new StmtElseContext(this.context, this.state); - this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtElse); + this.enterRule(localContext, 868, PostgreSqlParser.RULE_stmtElse); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7986; + this.state = 8013; this.match(PostgreSqlParser.KW_ELSE); - this.state = 7990; + this.state = 8017; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7987; + this.state = 8014; this.procStmt(); } } } - this.state = 7992; + this.state = 8019; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context); } } } @@ -51107,73 +51243,73 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCase(): StmtCaseContext { let localContext = new StmtCaseContext(this.context, this.state); - this.enterRule(localContext, 862, PostgreSqlParser.RULE_stmtCase); + this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmtCase); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7993; + this.state = 8020; this.match(PostgreSqlParser.KW_CASE); - this.state = 7995; + this.state = 8022; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { case 1: { - this.state = 7994; + this.state = 8021; this.sqlExpression(); } break; } - this.state = 8006; + this.state = 8033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7997; + this.state = 8024; this.match(PostgreSqlParser.KW_WHEN); - this.state = 7998; + this.state = 8025; this.exprList(); - this.state = 7999; + this.state = 8026; this.match(PostgreSqlParser.KW_THEN); - this.state = 8003; + this.state = 8030; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8000; + this.state = 8027; this.procStmt(); } } } - this.state = 8005; + this.state = 8032; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context); } } } - this.state = 8008; + this.state = 8035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8011; + this.state = 8038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8010; + this.state = 8037; this.stmtElse(); } } - this.state = 8013; + this.state = 8040; this.match(PostgreSqlParser.KW_END); - this.state = 8014; + this.state = 8041; this.match(PostgreSqlParser.KW_CASE); - this.state = 8015; + this.state = 8042; this.match(PostgreSqlParser.SEMI); } } @@ -51193,30 +51329,30 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtLoopWhileFor(): StmtLoopWhileForContext { let localContext = new StmtLoopWhileForContext(this.context, this.state); - this.enterRule(localContext, 864, PostgreSqlParser.RULE_stmtLoopWhileFor); + this.enterRule(localContext, 872, PostgreSqlParser.RULE_stmtLoopWhileFor); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8018; + this.state = 8045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8017; + this.state = 8044; this.labelDecl(); } } - this.state = 8024; + this.state = 8051; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WHILE: { { - this.state = 8020; + this.state = 8047; this.match(PostgreSqlParser.KW_WHILE); - this.state = 8021; + this.state = 8048; this.expression(); } } @@ -51224,9 +51360,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOR: { { - this.state = 8022; + this.state = 8049; this.match(PostgreSqlParser.KW_FOR); - this.state = 8023; + this.state = 8050; this.forControl(); } } @@ -51236,7 +51372,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 8026; + this.state = 8053; this.loopBody(); } } @@ -51256,28 +51392,28 @@ export class PostgreSqlParser extends SQLParserBase { } public forControl(): ForControlContext { let localContext = new ForControlContext(this.context, this.state); - this.enterRule(localContext, 866, PostgreSqlParser.RULE_forControl); + this.enterRule(localContext, 874, PostgreSqlParser.RULE_forControl); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8028; + this.state = 8055; this.anyNameList(); - this.state = 8029; + this.state = 8056; this.match(PostgreSqlParser.KW_IN); - this.state = 8052; + this.state = 8079; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { case 1: { - this.state = 8030; + this.state = 8057; this.colId(); - this.state = 8032; + this.state = 8059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8031; + this.state = 8058; this.executeParamClause(); } } @@ -51286,30 +51422,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8034; + this.state = 8061; this.selectStmt(); } break; case 3: { - this.state = 8035; + this.state = 8062; this.explainStmt(); } break; case 4: { - this.state = 8036; + this.state = 8063; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8037; + this.state = 8064; this.expression(); - this.state = 8040; + this.state = 8067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8038; + this.state = 8065; this.match(PostgreSqlParser.KW_USING); - this.state = 8039; + this.state = 8066; this.exprList(); } } @@ -51318,30 +51454,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 8043; + this.state = 8070; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { case 1: { - this.state = 8042; + this.state = 8069; this.match(PostgreSqlParser.KW_REVERSE); } break; } - this.state = 8045; + this.state = 8072; this.expression(); - this.state = 8046; + this.state = 8073; this.match(PostgreSqlParser.DOT_DOT); - this.state = 8047; + this.state = 8074; this.expression(); - this.state = 8050; + this.state = 8077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 8048; + this.state = 8075; this.match(PostgreSqlParser.KW_BY); - this.state = 8049; + this.state = 8076; this.expression(); } } @@ -51367,44 +51503,44 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtForeach(): StmtForeachContext { let localContext = new StmtForeachContext(this.context, this.state); - this.enterRule(localContext, 868, PostgreSqlParser.RULE_stmtForeach); + this.enterRule(localContext, 876, PostgreSqlParser.RULE_stmtForeach); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8055; + this.state = 8082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8054; + this.state = 8081; this.labelDecl(); } } - this.state = 8057; + this.state = 8084; this.match(PostgreSqlParser.KW_FOREACH); - this.state = 8058; + this.state = 8085; this.anyNameList(); - this.state = 8061; + this.state = 8088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 8059; + this.state = 8086; this.match(PostgreSqlParser.KW_SLICE); - this.state = 8060; + this.state = 8087; this.match(PostgreSqlParser.Integral); } } - this.state = 8063; + this.state = 8090; this.match(PostgreSqlParser.KW_IN); - this.state = 8064; + this.state = 8091; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 8065; + this.state = 8092; this.expression(); - this.state = 8066; + this.state = 8093; this.loopBody(); } } @@ -51424,12 +51560,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtExit(): StmtExitContext { let localContext = new StmtExitContext(this.context, this.state); - this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmtExit); + this.enterRule(localContext, 878, PostgreSqlParser.RULE_stmtExit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8068; + this.state = 8095; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -51438,29 +51574,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8070; + this.state = 8097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8069; + this.state = 8096; this.anyIdentifier(); } } - this.state = 8074; + this.state = 8101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 8072; + this.state = 8099; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8073; + this.state = 8100; this.sqlExpression(); } } - this.state = 8076; + this.state = 8103; this.match(PostgreSqlParser.SEMI); } } @@ -51480,39 +51616,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtReturn(): StmtReturnContext { let localContext = new StmtReturnContext(this.context, this.state); - this.enterRule(localContext, 872, PostgreSqlParser.RULE_stmtReturn); + this.enterRule(localContext, 880, PostgreSqlParser.RULE_stmtReturn); try { this.enterOuterAlt(localContext, 1); { - this.state = 8078; + this.state = 8105; this.match(PostgreSqlParser.KW_RETURN); - this.state = 8093; + this.state = 8120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { case 1: { - this.state = 8079; + this.state = 8106; this.match(PostgreSqlParser.KW_NEXT); - this.state = 8080; + this.state = 8107; this.sqlExpression(); } break; case 2: { - this.state = 8081; + this.state = 8108; this.match(PostgreSqlParser.KW_QUERY); - this.state = 8088; + this.state = 8115; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: { - this.state = 8082; + this.state = 8109; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8083; + this.state = 8110; this.expression(); - this.state = 8084; + this.state = 8111; this.match(PostgreSqlParser.KW_USING); - this.state = 8085; + this.state = 8112; this.exprList(); } break; @@ -51522,7 +51658,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8087; + this.state = 8114; this.selectStmt(); } break; @@ -51533,12 +51669,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 8091; + this.state = 8118; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { case 1: { - this.state = 8090; + this.state = 8117; this.sqlExpression(); } break; @@ -51546,7 +51682,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8095; + this.state = 8122; this.match(PostgreSqlParser.SEMI); } } @@ -51566,24 +51702,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtRaise(): StmtRaiseContext { let localContext = new StmtRaiseContext(this.context, this.state); - this.enterRule(localContext, 874, PostgreSqlParser.RULE_stmtRaise); + this.enterRule(localContext, 882, PostgreSqlParser.RULE_stmtRaise); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8097; + this.state = 8124; this.match(PostgreSqlParser.KW_RAISE); - this.state = 8127; + this.state = 8154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { case 1: { - this.state = 8099; + this.state = 8126; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 8098; + this.state = 8125; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -51595,21 +51731,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8113; + this.state = 8140; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { case 1: { - this.state = 8101; + this.state = 8128; this.identifier(); } break; case 2: { { - this.state = 8102; + this.state = 8129; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8103; + this.state = 8130; this.stringConst(); } } @@ -51617,26 +51753,26 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 8104; + this.state = 8131; this.stringConst(); - this.state = 8111; + this.state = 8138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8107; + this.state = 8134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8105; + this.state = 8132; this.match(PostgreSqlParser.COMMA); - this.state = 8106; + this.state = 8133; this.expression(); } } - this.state = 8109; + this.state = 8136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -51647,29 +51783,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8124; + this.state = 8151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8115; + this.state = 8142; this.match(PostgreSqlParser.KW_USING); { - this.state = 8116; + this.state = 8143; this.optRaiseUsingElem(); - this.state = 8121; + this.state = 8148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8117; + this.state = 8144; this.match(PostgreSqlParser.COMMA); - this.state = 8118; + this.state = 8145; this.optRaiseUsingElem(); } } - this.state = 8123; + this.state = 8150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -51677,7 +51813,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 8126; + this.state = 8153; this.match(PostgreSqlParser.SEMI); } break; @@ -51700,15 +51836,15 @@ export class PostgreSqlParser extends SQLParserBase { } public optRaiseUsingElem(): OptRaiseUsingElemContext { let localContext = new OptRaiseUsingElemContext(this.context, this.state); - this.enterRule(localContext, 876, PostgreSqlParser.RULE_optRaiseUsingElem); + this.enterRule(localContext, 884, PostgreSqlParser.RULE_optRaiseUsingElem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8129; + this.state = 8156; this.identifier(); - this.state = 8130; + this.state = 8157; this.match(PostgreSqlParser.EQUAL); - this.state = 8131; + this.state = 8158; this.expression(); } } @@ -51728,28 +51864,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtAssert(): StmtAssertContext { let localContext = new StmtAssertContext(this.context, this.state); - this.enterRule(localContext, 878, PostgreSqlParser.RULE_stmtAssert); + this.enterRule(localContext, 886, PostgreSqlParser.RULE_stmtAssert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8133; + this.state = 8160; this.match(PostgreSqlParser.KW_ASSERT); - this.state = 8134; + this.state = 8161; this.sqlExpression(); - this.state = 8137; + this.state = 8164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8135; + this.state = 8162; this.match(PostgreSqlParser.COMMA); - this.state = 8136; + this.state = 8163; this.sqlExpression(); } } - this.state = 8139; + this.state = 8166; this.match(PostgreSqlParser.SEMI); } } @@ -51769,45 +51905,45 @@ export class PostgreSqlParser extends SQLParserBase { } public loopBody(): LoopBodyContext { let localContext = new LoopBodyContext(this.context, this.state); - this.enterRule(localContext, 880, PostgreSqlParser.RULE_loopBody); + this.enterRule(localContext, 888, PostgreSqlParser.RULE_loopBody); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8141; + this.state = 8168; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8145; + this.state = 8172; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8142; + this.state = 8169; this.procStmt(); } } } - this.state = 8147; + this.state = 8174; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context); } - this.state = 8148; + this.state = 8175; this.match(PostgreSqlParser.KW_END); - this.state = 8149; + this.state = 8176; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8151; + this.state = 8178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8150; + this.state = 8177; this.anyIdentifier(); } } - this.state = 8153; + this.state = 8180; this.match(PostgreSqlParser.SEMI); } } @@ -51827,24 +51963,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtExecsql(): StmtExecsqlContext { let localContext = new StmtExecsqlContext(this.context, this.state); - this.enterRule(localContext, 882, PostgreSqlParser.RULE_stmtExecsql); + this.enterRule(localContext, 890, PostgreSqlParser.RULE_stmtExecsql); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8155; + this.state = 8182; this.stmt(); - this.state = 8157; + this.state = 8184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8156; + this.state = 8183; this.optExecuteInto(); } } - this.state = 8159; + this.state = 8186; this.match(PostgreSqlParser.SEMI); } } @@ -51864,38 +52000,38 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtDynexecute(): StmtDynexecuteContext { let localContext = new StmtDynexecuteContext(this.context, this.state); - this.enterRule(localContext, 884, PostgreSqlParser.RULE_stmtDynexecute); + this.enterRule(localContext, 892, PostgreSqlParser.RULE_stmtDynexecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8161; + this.state = 8188; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8162; + this.state = 8189; this.expression(); - this.state = 8178; + this.state = 8205; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { case 1: { - this.state = 8164; + this.state = 8191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8163; + this.state = 8190; this.optExecuteInto(); } } - this.state = 8168; + this.state = 8195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8166; + this.state = 8193; this.match(PostgreSqlParser.KW_USING); - this.state = 8167; + this.state = 8194; this.exprList(); } } @@ -51904,24 +52040,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8172; + this.state = 8199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8170; + this.state = 8197; this.match(PostgreSqlParser.KW_USING); - this.state = 8171; + this.state = 8198; this.exprList(); } } - this.state = 8175; + this.state = 8202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8174; + this.state = 8201; this.optExecuteInto(); } } @@ -51934,7 +52070,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8180; + this.state = 8207; this.match(PostgreSqlParser.SEMI); } } @@ -51954,23 +52090,23 @@ export class PostgreSqlParser extends SQLParserBase { } public optExecuteInto(): OptExecuteIntoContext { let localContext = new OptExecuteIntoContext(this.context, this.state); - this.enterRule(localContext, 886, PostgreSqlParser.RULE_optExecuteInto); + this.enterRule(localContext, 894, PostgreSqlParser.RULE_optExecuteInto); try { this.enterOuterAlt(localContext, 1); { - this.state = 8182; + this.state = 8209; this.match(PostgreSqlParser.KW_INTO); - this.state = 8184; + this.state = 8211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { case 1: { - this.state = 8183; + this.state = 8210; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 8186; + this.state = 8213; this.exprList(); } } @@ -51990,43 +52126,43 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtOpen(): StmtOpenContext { let localContext = new StmtOpenContext(this.context, this.state); - this.enterRule(localContext, 888, PostgreSqlParser.RULE_stmtOpen); + this.enterRule(localContext, 896, PostgreSqlParser.RULE_stmtOpen); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8188; + this.state = 8215; this.match(PostgreSqlParser.KW_OPEN); - this.state = 8220; + this.state = 8247; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { case 1: { - this.state = 8189; + this.state = 8216; this.cursorVariable(); - this.state = 8194; + this.state = 8221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 8191; + this.state = 8218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8190; + this.state = 8217; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8193; + this.state = 8220; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 8196; + this.state = 8223; this.match(PostgreSqlParser.KW_FOR); - this.state = 8204; + this.state = 8231; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -52035,24 +52171,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8197; + this.state = 8224; this.selectStmt(); } break; case PostgreSqlParser.KW_EXECUTE: { - this.state = 8198; + this.state = 8225; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8199; + this.state = 8226; this.sqlExpression(); - this.state = 8202; + this.state = 8229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8200; + this.state = 8227; this.match(PostgreSqlParser.KW_USING); - this.state = 8201; + this.state = 8228; this.exprList(); } } @@ -52066,36 +52202,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8206; + this.state = 8233; this.colId(); - this.state = 8218; + this.state = 8245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8207; + this.state = 8234; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 8208; + this.state = 8235; this.optOpenBoundListItem(); - this.state = 8213; + this.state = 8240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8209; + this.state = 8236; this.match(PostgreSqlParser.COMMA); - this.state = 8210; + this.state = 8237; this.optOpenBoundListItem(); } } - this.state = 8215; + this.state = 8242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8216; + this.state = 8243; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -52103,7 +52239,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8222; + this.state = 8249; this.match(PostgreSqlParser.SEMI); } } @@ -52123,23 +52259,23 @@ export class PostgreSqlParser extends SQLParserBase { } public optOpenBoundListItem(): OptOpenBoundListItemContext { let localContext = new OptOpenBoundListItemContext(this.context, this.state); - this.enterRule(localContext, 890, PostgreSqlParser.RULE_optOpenBoundListItem); + this.enterRule(localContext, 898, PostgreSqlParser.RULE_optOpenBoundListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8227; + this.state = 8254; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { case 1: { - this.state = 8224; + this.state = 8251; this.colId(); - this.state = 8225; + this.state = 8252; this.match(PostgreSqlParser.COLON_EQUALS); } break; } - this.state = 8229; + this.state = 8256; this.expression(); } } @@ -52159,40 +52295,40 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtFetch(): StmtFetchContext { let localContext = new StmtFetchContext(this.context, this.state); - this.enterRule(localContext, 892, PostgreSqlParser.RULE_stmtFetch); + this.enterRule(localContext, 900, PostgreSqlParser.RULE_stmtFetch); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8231; + this.state = 8258; this.match(PostgreSqlParser.KW_FETCH); - this.state = 8233; + this.state = 8260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: { - this.state = 8232; + this.state = 8259; localContext._direction = this.optFetchFirection(); } break; } - this.state = 8236; + this.state = 8263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 8235; + this.state = 8262; this.fromIn(); } } - this.state = 8238; + this.state = 8265; this.cursorVariable(); - this.state = 8239; + this.state = 8266; this.match(PostgreSqlParser.KW_INTO); - this.state = 8240; + this.state = 8267; this.exprList(); - this.state = 8241; + this.state = 8268; this.match(PostgreSqlParser.SEMI); } } @@ -52212,49 +52348,49 @@ export class PostgreSqlParser extends SQLParserBase { } public optFetchFirection(): OptFetchFirectionContext { let localContext = new OptFetchFirectionContext(this.context, this.state); - this.enterRule(localContext, 894, PostgreSqlParser.RULE_optFetchFirection); + this.enterRule(localContext, 902, PostgreSqlParser.RULE_optFetchFirection); let _la: number; try { - this.state = 8257; + this.state = 8284; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8243; + this.state = 8270; this.match(PostgreSqlParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8244; + this.state = 8271; this.match(PostgreSqlParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8245; + this.state = 8272; this.match(PostgreSqlParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8246; + this.state = 8273; this.match(PostgreSqlParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8248; + this.state = 8275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 8247; + this.state = 8274; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -52266,21 +52402,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8250; + this.state = 8277; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8251; + this.state = 8278; this.match(PostgreSqlParser.KW_ALL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8252; + this.state = 8279; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -52289,18 +52425,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8255; + this.state = 8282; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { case 1: { - this.state = 8253; + this.state = 8280; this.expression(); } break; case 2: { - this.state = 8254; + this.state = 8281; this.match(PostgreSqlParser.KW_ALL); } break; @@ -52325,25 +52461,25 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtMove(): StmtMoveContext { let localContext = new StmtMoveContext(this.context, this.state); - this.enterRule(localContext, 896, PostgreSqlParser.RULE_stmtMove); + this.enterRule(localContext, 904, PostgreSqlParser.RULE_stmtMove); try { this.enterOuterAlt(localContext, 1); { - this.state = 8259; + this.state = 8286; this.match(PostgreSqlParser.KW_MOVE); - this.state = 8261; + this.state = 8288; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { case 1: { - this.state = 8260; + this.state = 8287; this.optFetchFirection(); } break; } - this.state = 8263; + this.state = 8290; this.cursorVariable(); - this.state = 8264; + this.state = 8291; this.match(PostgreSqlParser.SEMI); } } @@ -52363,95 +52499,95 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeStmt(): MergeStmtContext { let localContext = new MergeStmtContext(this.context, this.state); - this.enterRule(localContext, 898, PostgreSqlParser.RULE_mergeStmt); + this.enterRule(localContext, 906, PostgreSqlParser.RULE_mergeStmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8267; + this.state = 8294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8266; + this.state = 8293; this.withClause(); } } - this.state = 8269; + this.state = 8296; this.match(PostgreSqlParser.KW_MERGE); - this.state = 8270; + this.state = 8297; this.match(PostgreSqlParser.KW_INTO); - this.state = 8272; + this.state = 8299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8271; + this.state = 8298; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8274; + this.state = 8301; this.tableName(); - this.state = 8276; + this.state = 8303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8275; + this.state = 8302; this.match(PostgreSqlParser.STAR); } } - this.state = 8282; + this.state = 8309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8279; + this.state = 8306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8278; + this.state = 8305; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8281; + this.state = 8308; this.colId(); } } - this.state = 8284; + this.state = 8311; this.match(PostgreSqlParser.KW_USING); - this.state = 8285; + this.state = 8312; this.dataSource(); - this.state = 8286; + this.state = 8313; this.match(PostgreSqlParser.KW_ON); - this.state = 8287; + this.state = 8314; this.expression(); - this.state = 8289; + this.state = 8316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8288; + this.state = 8315; this.mergeWhenClause(); } } - this.state = 8291; + this.state = 8318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8294; + this.state = 8321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8293; + this.state = 8320; this.returningClause(); } } @@ -52474,34 +52610,34 @@ export class PostgreSqlParser extends SQLParserBase { } public dataSource(): DataSourceContext { let localContext = new DataSourceContext(this.context, this.state); - this.enterRule(localContext, 900, PostgreSqlParser.RULE_dataSource); + this.enterRule(localContext, 908, PostgreSqlParser.RULE_dataSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8307; + this.state = 8334; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { case 1: { - this.state = 8297; + this.state = 8324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8296; + this.state = 8323; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8299; + this.state = 8326; this.tableName(); - this.state = 8301; + this.state = 8328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8300; + this.state = 8327; this.match(PostgreSqlParser.STAR); } } @@ -52510,18 +52646,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8305; + this.state = 8332; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { case 1: { - this.state = 8303; + this.state = 8330; this.selectNoParens(); } break; case 2: { - this.state = 8304; + this.state = 8331; this.valuesClause(); } break; @@ -52529,22 +52665,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8313; + this.state = 8340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8310; + this.state = 8337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8309; + this.state = 8336; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8312; + this.state = 8339; this.colId(); } } @@ -52567,53 +52703,53 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeWhenClause(): MergeWhenClauseContext { let localContext = new MergeWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 902, PostgreSqlParser.RULE_mergeWhenClause); + this.enterRule(localContext, 910, PostgreSqlParser.RULE_mergeWhenClause); let _la: number; try { - this.state = 8341; + this.state = 8368; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1164, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8315; + this.state = 8342; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8316; + this.state = 8343; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8319; + this.state = 8346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8317; + this.state = 8344; this.match(PostgreSqlParser.KW_AND); - this.state = 8318; + this.state = 8345; this.expression(); } } - this.state = 8321; + this.state = 8348; this.match(PostgreSqlParser.KW_THEN); - this.state = 8326; + this.state = 8353; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 8322; + this.state = 8349; this.mergeUpdate(); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 8323; + this.state = 8350; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_DO: { - this.state = 8324; + this.state = 8351; this.match(PostgreSqlParser.KW_DO); - this.state = 8325; + this.state = 8352; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52625,40 +52761,40 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8328; + this.state = 8355; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8329; + this.state = 8356; this.match(PostgreSqlParser.KW_NOT); - this.state = 8330; + this.state = 8357; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8333; + this.state = 8360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8331; + this.state = 8358; this.match(PostgreSqlParser.KW_AND); - this.state = 8332; + this.state = 8359; this.expression(); } } - this.state = 8335; + this.state = 8362; this.match(PostgreSqlParser.KW_THEN); - this.state = 8339; + this.state = 8366; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: { - this.state = 8336; + this.state = 8363; this.mergeInsert(); } break; case PostgreSqlParser.KW_DO: { - this.state = 8337; + this.state = 8364; this.match(PostgreSqlParser.KW_DO); - this.state = 8338; + this.state = 8365; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52685,31 +52821,31 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeInsert(): MergeInsertContext { let localContext = new MergeInsertContext(this.context, this.state); - this.enterRule(localContext, 904, PostgreSqlParser.RULE_mergeInsert); + this.enterRule(localContext, 912, PostgreSqlParser.RULE_mergeInsert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8343; + this.state = 8370; this.match(PostgreSqlParser.KW_INSERT); - this.state = 8345; + this.state = 8372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8344; + this.state = 8371; this.optColumnList(); } } - this.state = 8350; + this.state = 8377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8347; + this.state = 8374; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 8348; + this.state = 8375; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -52718,12 +52854,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8349; + this.state = 8376; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 8352; + this.state = 8379; this.defaultValuesOrValues(); } } @@ -52743,63 +52879,63 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeUpdate(): MergeUpdateContext { let localContext = new MergeUpdateContext(this.context, this.state); - this.enterRule(localContext, 906, PostgreSqlParser.RULE_mergeUpdate); + this.enterRule(localContext, 914, PostgreSqlParser.RULE_mergeUpdate); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8354; + this.state = 8381; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 8355; + this.state = 8382; this.match(PostgreSqlParser.KW_SET); - this.state = 8373; + this.state = 8400; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 8373; + this.state = 8400; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context) ) { case 1: { - this.state = 8356; + this.state = 8383; this.columnName(); - this.state = 8357; + this.state = 8384; this.match(PostgreSqlParser.EQUAL); - this.state = 8358; + this.state = 8385; this.exprofdefault(); } break; case 2: { - this.state = 8360; + this.state = 8387; this.optColumnList(); - this.state = 8361; + this.state = 8388; this.match(PostgreSqlParser.EQUAL); - this.state = 8362; + this.state = 8389; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8363; + this.state = 8390; this.exprofdefault(); - this.state = 8368; + this.state = 8395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8364; + this.state = 8391; this.match(PostgreSqlParser.COMMA); - this.state = 8365; + this.state = 8392; this.exprofdefault(); } } - this.state = 8370; + this.state = 8397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8371; + this.state = 8398; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -52809,9 +52945,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 8375; + this.state = 8402; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -52831,47 +52967,47 @@ export class PostgreSqlParser extends SQLParserBase { } public defaultValuesOrValues(): DefaultValuesOrValuesContext { let localContext = new DefaultValuesOrValuesContext(this.context, this.state); - this.enterRule(localContext, 908, PostgreSqlParser.RULE_defaultValuesOrValues); + this.enterRule(localContext, 916, PostgreSqlParser.RULE_defaultValuesOrValues); let _la: number; try { - this.state = 8391; + this.state = 8418; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8377; + this.state = 8404; this.match(PostgreSqlParser.KW_VALUES); - this.state = 8378; + this.state = 8405; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8379; + this.state = 8406; this.exprofdefault(); - this.state = 8384; + this.state = 8411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8380; + this.state = 8407; this.match(PostgreSqlParser.COMMA); - this.state = 8381; + this.state = 8408; this.exprofdefault(); } } - this.state = 8386; + this.state = 8413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8387; + this.state = 8414; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 8389; + this.state = 8416; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8390; + this.state = 8417; this.match(PostgreSqlParser.KW_VALUES); } break; @@ -52895,22 +53031,22 @@ export class PostgreSqlParser extends SQLParserBase { } public exprofdefault(): ExprofdefaultContext { let localContext = new ExprofdefaultContext(this.context, this.state); - this.enterRule(localContext, 910, PostgreSqlParser.RULE_exprofdefault); + this.enterRule(localContext, 918, PostgreSqlParser.RULE_exprofdefault); try { - this.state = 8395; + this.state = 8422; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1175, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8393; + this.state = 8420; this.sortBy(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8394; + this.state = 8421; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -52932,15 +53068,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtClose(): StmtCloseContext { let localContext = new StmtCloseContext(this.context, this.state); - this.enterRule(localContext, 912, PostgreSqlParser.RULE_stmtClose); + this.enterRule(localContext, 920, PostgreSqlParser.RULE_stmtClose); try { this.enterOuterAlt(localContext, 1); { - this.state = 8397; + this.state = 8424; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 8398; + this.state = 8425; this.cursorVariable(); - this.state = 8399; + this.state = 8426; this.match(PostgreSqlParser.SEMI); } } @@ -52960,13 +53096,13 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtNull(): StmtNullContext { let localContext = new StmtNullContext(this.context, this.state); - this.enterRule(localContext, 914, PostgreSqlParser.RULE_stmtNull); + this.enterRule(localContext, 922, PostgreSqlParser.RULE_stmtNull); try { this.enterOuterAlt(localContext, 1); { - this.state = 8401; + this.state = 8428; this.match(PostgreSqlParser.KW_NULL); - this.state = 8402; + this.state = 8429; this.match(PostgreSqlParser.SEMI); } } @@ -52986,12 +53122,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCommitOrRollback(): StmtCommitOrRollbackContext { let localContext = new StmtCommitOrRollbackContext(this.context, this.state); - this.enterRule(localContext, 916, PostgreSqlParser.RULE_stmtCommitOrRollback); + this.enterRule(localContext, 924, PostgreSqlParser.RULE_stmtCommitOrRollback); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8404; + this.state = 8431; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -53000,29 +53136,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8410; + this.state = 8437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8405; + this.state = 8432; this.match(PostgreSqlParser.KW_AND); - this.state = 8407; + this.state = 8434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8406; + this.state = 8433; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8409; + this.state = 8436; this.match(PostgreSqlParser.KW_CHAIN); } } - this.state = 8412; + this.state = 8439; this.match(PostgreSqlParser.SEMI); } } @@ -53042,32 +53178,32 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtSet(): StmtSetContext { let localContext = new StmtSetContext(this.context, this.state); - this.enterRule(localContext, 918, PostgreSqlParser.RULE_stmtSet); + this.enterRule(localContext, 926, PostgreSqlParser.RULE_stmtSet); try { - this.state = 8426; + this.state = 8453; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 8414; + this.state = 8441; this.match(PostgreSqlParser.KW_SET); - this.state = 8415; + this.state = 8442; this.anyName(); - this.state = 8416; + this.state = 8443; this.match(PostgreSqlParser.KW_TO); - this.state = 8417; + this.state = 8444; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8418; + this.state = 8445; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 8420; + this.state = 8447; this.match(PostgreSqlParser.KW_RESET); - this.state = 8423; + this.state = 8450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53465,20 +53601,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8421; + this.state = 8448; this.anyName(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 8422; + this.state = 8449; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8425; + this.state = 8452; this.match(PostgreSqlParser.SEMI); } break; @@ -53502,9 +53638,9 @@ export class PostgreSqlParser extends SQLParserBase { } public cursorVariable(): CursorVariableContext { let localContext = new CursorVariableContext(this.context, this.state); - this.enterRule(localContext, 920, PostgreSqlParser.RULE_cursorVariable); + this.enterRule(localContext, 928, PostgreSqlParser.RULE_cursorVariable); try { - this.state = 8430; + this.state = 8457; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53903,14 +54039,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8428; + this.state = 8455; this.colId(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 8429; + this.state = 8456; this.match(PostgreSqlParser.PARAM); } break; @@ -53934,63 +54070,63 @@ export class PostgreSqlParser extends SQLParserBase { } public exceptionSect(): ExceptionSectContext { let localContext = new ExceptionSectContext(this.context, this.state); - this.enterRule(localContext, 922, PostgreSqlParser.RULE_exceptionSect); + this.enterRule(localContext, 930, PostgreSqlParser.RULE_exceptionSect); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8432; + this.state = 8459; this.match(PostgreSqlParser.KW_EXCEPTION); - this.state = 8449; + this.state = 8476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8433; + this.state = 8460; this.match(PostgreSqlParser.KW_WHEN); { - this.state = 8434; + this.state = 8461; this.procCondition(); - this.state = 8439; + this.state = 8466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 8435; + this.state = 8462; this.match(PostgreSqlParser.KW_OR); - this.state = 8436; + this.state = 8463; this.procCondition(); } } - this.state = 8441; + this.state = 8468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8442; + this.state = 8469; this.match(PostgreSqlParser.KW_THEN); - this.state = 8446; + this.state = 8473; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8443; + this.state = 8470; this.procStmt(); } } } - this.state = 8448; + this.state = 8475; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context); } } } - this.state = 8451; + this.state = 8478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -54012,24 +54148,24 @@ export class PostgreSqlParser extends SQLParserBase { } public procCondition(): ProcConditionContext { let localContext = new ProcConditionContext(this.context, this.state); - this.enterRule(localContext, 924, PostgreSqlParser.RULE_procCondition); + this.enterRule(localContext, 932, PostgreSqlParser.RULE_procCondition); try { - this.state = 8456; + this.state = 8483; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8453; + this.state = 8480; this.anyIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8454; + this.state = 8481; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8455; + this.state = 8482; this.stringConst(); } break; @@ -54051,22 +54187,22 @@ export class PostgreSqlParser extends SQLParserBase { } public anyIdentifier(): AnyIdentifierContext { let localContext = new AnyIdentifierContext(this.context, this.state); - this.enterRule(localContext, 926, PostgreSqlParser.RULE_anyIdentifier); + this.enterRule(localContext, 934, PostgreSqlParser.RULE_anyIdentifier); try { - this.state = 8460; + this.state = 8487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8458; + this.state = 8485; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8459; + this.state = 8486; this.unreservedKeyword(); } break; @@ -54088,77 +54224,77 @@ export class PostgreSqlParser extends SQLParserBase { } public sqlExpression(): SqlExpressionContext { let localContext = new SqlExpressionContext(this.context, this.state); - this.enterRule(localContext, 928, PostgreSqlParser.RULE_sqlExpression); + this.enterRule(localContext, 936, PostgreSqlParser.RULE_sqlExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8463; + this.state = 8490; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1186, this.context) ) { case 1: { - this.state = 8462; + this.state = 8489; this.targetList(); } break; } - this.state = 8466; + this.state = 8493; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1187, this.context) ) { case 1: { - this.state = 8465; + this.state = 8492; this.intoClause(); } break; } - this.state = 8469; + this.state = 8496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8468; + this.state = 8495; this.fromClause(); } } - this.state = 8472; + this.state = 8499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8471; + this.state = 8498; this.whereClause(); } } - this.state = 8475; + this.state = 8502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8474; + this.state = 8501; this.groupClause(); } } - this.state = 8478; + this.state = 8505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8477; + this.state = 8504; this.havingClause(); } } - this.state = 8481; + this.state = 8508; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1189, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1192, this.context) ) { case 1: { - this.state = 8480; + this.state = 8507; this.windowClause(); } break; @@ -54182,13 +54318,13 @@ export class PostgreSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 335: + case 336: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 337: - return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 338: + return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); + case 339: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 398: + case 402: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); } return true; @@ -54237,7 +54373,7 @@ export class PostgreSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,592,8484,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,592,8511,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, @@ -54318,3818 +54454,3828 @@ export class PostgreSqlParser extends SQLParserBase { 2,445,7,445,2,446,7,446,2,447,7,447,2,448,7,448,2,449,7,449,2,450, 7,450,2,451,7,451,2,452,7,452,2,453,7,453,2,454,7,454,2,455,7,455, 2,456,7,456,2,457,7,457,2,458,7,458,2,459,7,459,2,460,7,460,2,461, - 7,461,2,462,7,462,2,463,7,463,2,464,7,464,1,0,5,0,932,8,0,10,0,12, - 0,935,9,0,1,0,1,0,1,1,1,1,3,1,941,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1, + 7,461,2,462,7,462,2,463,7,463,2,464,7,464,2,465,7,465,2,466,7,466, + 2,467,7,467,2,468,7,468,1,0,5,0,940,8,0,10,0,12,0,943,9,0,1,0,1, + 0,1,1,1,1,3,1,949,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1061,8,2,3,2,1063,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,3,4,1072,8,4, - 1,4,5,4,1075,8,4,10,4,12,4,1078,9,4,1,5,1,5,1,5,3,5,1083,8,5,1,5, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1069,8,2,3,2,1071, + 8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,3,4,1080,8,4,1,4,5,4,1083,8,4,10, + 4,12,4,1086,9,4,1,5,1,5,1,5,3,5,1091,8,5,1,5,1,5,1,5,1,5,1,5,1,5, 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 3,5,1118,8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1128,8,6,1,7,1, - 7,1,7,1,7,3,7,1134,8,7,1,7,5,7,1137,8,7,10,7,12,7,1140,9,7,1,8,1, - 8,1,8,1,8,3,8,1146,8,8,1,8,5,8,1149,8,8,10,8,12,8,1152,9,8,1,9,1, - 9,1,9,1,9,3,9,1158,8,9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,3, - 10,1169,8,10,1,10,1,10,1,11,1,11,5,11,1175,8,11,10,11,12,11,1178, - 9,11,1,11,3,11,1181,8,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11, - 1,11,1,11,3,11,1193,8,11,1,11,1,11,1,11,1,11,3,11,1199,8,11,1,12, - 1,12,1,12,1,12,3,12,1205,8,12,1,12,1,12,3,12,1209,8,12,1,12,1,12, - 1,12,3,12,1214,8,12,1,12,1,12,3,12,1218,8,12,1,12,1,12,1,12,1,12, - 1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,1231,8,12,1,12,1,12,1,12, - 1,12,1,12,1,12,1,12,1,12,3,12,1241,8,12,3,12,1243,8,12,1,13,1,13, - 1,13,1,13,3,13,1249,8,13,1,13,5,13,1252,8,13,10,13,12,13,1255,9, - 13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,3,15,1267,8, - 15,1,15,3,15,1270,8,15,1,15,1,15,1,15,3,15,1275,8,15,1,15,5,15,1278, - 8,15,10,15,12,15,1281,9,15,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1, - 17,3,17,1291,8,17,1,18,1,18,3,18,1295,8,18,1,18,1,18,1,19,1,19,1, - 19,1,19,1,19,1,19,1,19,1,19,3,19,1307,8,19,1,20,1,20,3,20,1311,8, - 20,1,20,3,20,1314,8,20,1,20,1,20,3,20,1318,8,20,1,21,1,21,1,21,1, - 21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1330,8,21,1,21,1,21,1,21,1, - 21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3, - 21,1348,8,21,1,22,1,22,1,22,5,22,1353,8,22,10,22,12,22,1356,9,22, - 1,23,1,23,1,23,5,23,1361,8,23,10,23,12,23,1364,9,23,1,24,1,24,3, - 24,1368,8,24,1,25,1,25,1,25,1,25,1,25,3,25,1375,8,25,1,26,1,26,1, - 26,1,26,1,26,1,26,3,26,1383,8,26,1,27,1,27,1,27,1,27,3,27,1389,8, - 27,1,28,1,28,1,28,1,28,1,28,1,28,3,28,1397,8,28,1,28,1,28,1,28,1, - 28,1,28,1,28,3,28,1405,8,28,1,29,1,29,3,29,1409,8,29,1,30,1,30,1, - 30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,3,31,1423,8,31,1, - 32,1,32,1,32,3,32,1428,8,32,1,33,1,33,1,33,3,33,1433,8,33,1,34,1, - 34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,1445,8,34,1,35,1, - 35,1,35,1,35,3,35,1451,8,35,1,35,1,35,1,36,1,36,1,37,1,37,1,37,1, - 38,1,38,1,38,3,38,1463,8,38,1,38,1,38,1,38,3,38,1468,8,38,1,38,1, - 38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1478,8,38,1,38,1,38,1,38,1, - 38,3,38,1484,8,38,1,38,1,38,1,38,3,38,1489,8,38,1,38,1,38,1,38,1, - 38,1,38,1,38,1,38,3,38,1498,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1505, - 8,38,1,38,1,38,1,38,3,38,1510,8,38,1,38,1,38,1,38,3,38,1515,8,38, - 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1525,8,38,1,38,1,38, - 1,38,3,38,1530,8,38,1,38,1,38,1,38,3,38,1535,8,38,1,38,1,38,1,38, - 1,38,1,38,3,38,1542,8,38,1,38,1,38,3,38,1546,8,38,1,38,1,38,1,38, - 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1560,8,38,1,38, - 1,38,1,38,1,38,3,38,1566,8,38,1,38,1,38,1,38,1,38,3,38,1572,8,38, - 1,38,1,38,1,38,3,38,1577,8,38,1,39,1,39,1,39,5,39,1582,8,39,10,39, - 12,39,1585,9,39,1,40,1,40,1,40,1,40,1,40,1,40,3,40,1593,8,40,1,41, - 1,41,1,41,1,41,1,42,1,42,1,42,3,42,1602,8,42,1,42,1,42,1,42,1,42, - 1,42,5,42,1609,8,42,10,42,12,42,1612,9,42,1,42,1,42,1,42,1,42,1, - 42,1,42,3,42,1620,8,42,1,42,1,42,3,42,1624,8,42,1,42,1,42,1,42,1, - 42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1636,8,42,1,42,1,42,1,42,1, - 42,1,42,1,42,3,42,1644,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, - 42,3,42,1654,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, - 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1674,8,42,1,42,1, - 42,1,42,3,42,1679,8,42,1,42,3,42,1682,8,42,1,42,1,42,1,42,1,42,1, - 42,3,42,1689,8,42,1,42,3,42,1692,8,42,1,42,1,42,3,42,1696,8,42,1, - 42,1,42,3,42,1700,8,42,1,42,3,42,1703,8,42,1,42,1,42,1,42,3,42,1708, - 8,42,1,42,1,42,1,42,3,42,1713,8,42,1,42,1,42,3,42,1717,8,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,3,42,1726,8,42,1,42,1,42,1,42,1,42, - 3,42,1732,8,42,1,42,1,42,3,42,1736,8,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,3,42,1745,8,42,1,42,3,42,1748,8,42,1,42,1,42,1,42,1,42, - 3,42,1754,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1763,8,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,4,42,1773,8,42,11,42,12, - 42,1774,1,42,1,42,3,42,1779,8,42,1,42,1,42,3,42,1783,8,42,1,42,1, - 42,1,42,3,42,1788,8,42,1,42,3,42,1791,8,42,1,42,1,42,1,42,1,42,3, - 42,1797,8,42,4,42,1799,8,42,11,42,12,42,1800,1,42,1,42,3,42,1805, - 8,42,1,42,1,42,1,42,1,42,3,42,1811,8,42,1,42,1,42,3,42,1815,8,42, - 1,42,1,42,1,42,3,42,1820,8,42,1,42,1,42,1,42,3,42,1825,8,42,1,42, - 1,42,3,42,1829,8,42,1,42,3,42,1832,8,42,1,43,1,43,1,43,1,43,1,43, - 3,43,1839,8,43,1,44,1,44,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46, - 1850,8,46,10,46,12,46,1853,9,46,1,46,1,46,1,47,1,47,1,47,1,48,1, - 48,1,48,1,48,1,48,3,48,1865,8,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,49,1,49,1,49,1,49,1,49,1,49,1,49,1, - 49,1,49,1,49,1,49,3,49,1890,8,49,1,50,1,50,1,50,1,50,1,50,1,50,5, - 50,1898,8,50,10,50,12,50,1901,9,50,1,51,1,51,1,51,1,51,3,51,1907, - 8,51,1,51,1,51,1,51,3,51,1912,8,51,1,51,1,51,3,51,1916,8,51,1,51, - 1,51,1,51,1,51,1,51,3,51,1923,8,51,1,51,1,51,1,51,3,51,1928,8,51, - 1,51,3,51,1931,8,51,3,51,1933,8,51,1,52,1,52,1,52,3,52,1938,8,52, - 1,53,1,53,3,53,1942,8,53,1,53,1,53,3,53,1946,8,53,1,53,1,53,3,53, - 1950,8,53,1,53,1,53,1,53,3,53,1955,8,53,1,53,3,53,1958,8,53,1,53, - 1,53,3,53,1962,8,53,1,53,3,53,1965,8,53,1,53,1,53,3,53,1969,8,53, - 1,53,1,53,1,53,1,53,1,53,1,53,3,53,1977,8,53,1,53,1,53,1,53,3,53, - 1982,8,53,1,53,3,53,1985,8,53,1,53,1,53,3,53,1989,8,53,1,54,1,54, - 1,54,1,54,3,54,1995,8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54, - 2004,8,54,1,54,1,54,3,54,2008,8,54,1,54,1,54,1,54,1,54,1,54,1,54, - 1,54,1,54,3,54,2018,8,54,1,54,1,54,1,54,3,54,2023,8,54,5,54,2025, - 8,54,10,54,12,54,2028,9,54,1,54,3,54,2031,8,54,5,54,2033,8,54,10, - 54,12,54,2036,9,54,1,55,1,55,1,55,1,55,3,55,2042,8,55,1,55,1,55, - 1,55,3,55,2047,8,55,5,55,2049,8,55,10,55,12,55,2052,9,55,1,55,1, - 55,3,55,2056,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,2066, - 8,56,10,56,12,56,2069,9,56,1,56,1,56,3,56,2073,8,56,1,57,1,57,3, - 57,2077,8,57,1,57,1,57,3,57,2081,8,57,1,57,1,57,1,57,3,57,2086,8, - 57,1,57,1,57,3,57,2090,8,57,1,57,3,57,2093,8,57,1,57,3,57,2096,8, - 57,1,57,3,57,2099,8,57,1,57,3,57,2102,8,57,1,57,3,57,2105,8,57,1, - 57,1,57,1,57,3,57,2110,8,57,1,57,3,57,2113,8,57,1,57,3,57,2116,8, - 57,1,57,3,57,2119,8,57,1,57,3,57,2122,8,57,1,57,3,57,2125,8,57,1, - 57,1,57,1,57,1,57,3,57,2131,8,57,1,57,1,57,3,57,2135,8,57,1,57,3, - 57,2138,8,57,1,57,3,57,2141,8,57,1,57,3,57,2144,8,57,1,57,3,57,2147, - 8,57,3,57,2149,8,57,1,58,1,58,1,58,1,58,1,58,3,58,2156,8,58,1,59, - 1,59,1,59,1,59,5,59,2162,8,59,10,59,12,59,2165,9,59,1,59,1,59,1, - 60,1,60,1,60,5,60,2172,8,60,10,60,12,60,2175,9,60,1,61,1,61,3,61, - 2179,8,61,1,61,1,61,1,61,1,61,1,61,1,61,5,61,2187,8,61,10,61,12, - 61,2190,9,61,3,61,2192,8,61,1,62,1,62,1,62,3,62,2197,8,62,1,62,5, - 62,2200,8,62,10,62,12,62,2203,9,62,1,62,1,62,3,62,2207,8,62,1,62, - 3,62,2210,8,62,1,63,1,63,1,63,3,63,2215,8,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,3,63,2224,8,63,3,63,2226,8,63,1,63,1,63,3,63,2230, - 8,63,1,63,3,63,2233,8,63,1,63,1,63,3,63,2237,8,63,1,63,5,63,2240, - 8,63,10,63,12,63,2243,9,63,1,64,1,64,3,64,2247,8,64,1,64,1,64,3, - 64,2251,8,64,1,64,3,64,2254,8,64,1,64,1,64,3,64,2258,8,64,1,65,3, - 65,2261,8,65,1,65,1,65,1,65,3,65,2266,8,65,1,65,3,65,2269,8,65,1, - 65,1,65,1,65,3,65,2274,8,65,1,65,3,65,2277,8,65,1,65,1,65,3,65,2281, - 8,65,1,65,3,65,2284,8,65,1,65,3,65,2287,8,65,1,65,1,65,1,65,3,65, - 2292,8,65,1,65,3,65,2295,8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65, - 2303,8,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,4,65,2313,8,65, - 11,65,12,65,2314,1,65,1,65,3,65,2319,8,65,1,65,1,65,1,65,1,65,1, - 65,3,65,2326,8,65,1,65,1,65,1,65,3,65,2331,8,65,1,65,3,65,2334,8, - 65,1,65,3,65,2337,8,65,1,65,3,65,2340,8,65,1,66,1,66,1,66,3,66,2345, - 8,66,1,67,1,67,1,68,1,68,1,68,1,68,1,68,5,68,2354,8,68,10,68,12, - 68,2357,9,68,1,68,1,68,1,68,3,68,2362,8,68,1,68,1,68,3,68,2366,8, - 68,1,68,3,68,2369,8,68,1,68,3,68,2372,8,68,1,68,5,68,2375,8,68,10, - 68,12,68,2378,9,68,1,68,1,68,5,68,2382,8,68,10,68,12,68,2385,9,68, - 3,68,2387,8,68,1,68,1,68,3,68,2391,8,68,1,68,1,68,1,68,1,68,5,68, - 2397,8,68,10,68,12,68,2400,9,68,1,68,1,68,3,68,2404,8,68,1,68,3, - 68,2407,8,68,1,68,3,68,2410,8,68,1,68,1,68,1,68,1,68,1,68,3,68,2417, - 8,68,1,68,5,68,2420,8,68,10,68,12,68,2423,9,68,1,68,1,68,1,68,1, - 68,1,68,1,68,3,68,2431,8,68,1,68,3,68,2434,8,68,1,68,3,68,2437,8, - 68,1,68,5,68,2440,8,68,10,68,12,68,2443,9,68,3,68,2445,8,68,1,69, - 1,69,1,69,1,69,1,70,1,70,1,70,1,70,5,70,2455,8,70,10,70,12,70,2458, - 9,70,1,70,1,70,1,71,1,71,1,71,5,71,2465,8,71,10,71,12,71,2468,9, - 71,1,72,1,72,1,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1, - 74,1,74,3,74,2484,8,74,1,75,1,75,3,75,2488,8,75,1,75,1,75,3,75,2492, - 8,75,3,75,2494,8,75,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,3,78,2511,8,78,3,78,2513,8,78,1,79, - 1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2527, - 8,80,10,80,12,80,2530,9,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1, - 81,3,81,2540,8,81,1,81,3,81,2543,8,81,1,81,3,81,2546,8,81,1,82,1, - 82,1,82,1,83,1,83,1,83,1,83,3,83,2555,8,83,1,84,1,84,1,84,1,84,1, - 84,1,84,1,84,3,84,2564,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1, - 87,1,87,1,87,1,87,1,88,1,88,1,88,3,88,2580,8,88,1,88,3,88,2583,8, - 88,1,88,3,88,2586,8,88,1,88,1,88,1,88,1,88,5,88,2592,8,88,10,88, - 12,88,2595,9,88,1,88,3,88,2598,8,88,1,88,1,88,1,89,1,89,1,89,3,89, - 2605,8,89,1,89,1,89,1,89,1,89,1,89,1,90,1,90,3,90,2614,8,90,1,90, - 1,90,3,90,2618,8,90,1,90,1,90,1,90,1,90,3,90,2624,8,90,1,91,1,91, - 3,91,2628,8,91,1,91,3,91,2631,8,91,1,91,3,91,2634,8,91,1,91,3,91, - 2637,8,91,1,91,3,91,2640,8,91,1,92,1,92,1,92,1,92,3,92,2646,8,92, - 1,93,1,93,3,93,2650,8,93,1,93,1,93,1,93,3,93,2655,8,93,1,93,1,93, - 3,93,2659,8,93,1,93,3,93,2662,8,93,1,93,3,93,2665,8,93,1,93,3,93, - 2668,8,93,1,93,1,93,1,93,3,93,2673,8,93,1,94,1,94,1,94,1,94,3,94, - 2679,8,94,1,94,1,94,3,94,2683,8,94,1,95,1,95,3,95,2687,8,95,1,95, - 1,95,3,95,2691,8,95,1,95,1,95,4,95,2695,8,95,11,95,12,95,2696,3, - 95,2699,8,95,1,96,1,96,1,96,3,96,2704,8,96,1,96,1,96,4,96,2708,8, - 96,11,96,12,96,2709,1,97,1,97,1,97,1,97,3,97,2716,8,97,1,97,1,97, - 3,97,2720,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97, - 1,97,1,97,1,97,3,97,2735,8,97,1,97,1,97,1,97,3,97,2740,8,97,1,97, - 3,97,2743,8,97,3,97,2745,8,97,1,98,3,98,2748,8,98,1,98,1,98,3,98, - 2752,8,98,1,99,1,99,3,99,2756,8,99,1,99,3,99,2759,8,99,1,99,3,99, - 2762,8,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,2770,8,99,1,99,1,99, - 1,99,1,99,3,99,2776,8,99,3,99,2778,8,99,1,100,1,100,1,100,1,100, - 3,100,2784,8,100,1,100,1,100,1,100,3,100,2789,8,100,1,101,1,101, - 1,101,3,101,2794,8,101,1,101,1,101,3,101,2798,8,101,1,101,1,101, - 1,101,1,101,1,101,5,101,2805,8,101,10,101,12,101,2808,9,101,1,102, - 1,102,1,102,1,102,1,102,1,102,5,102,2816,8,102,10,102,12,102,2819, - 9,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,1126,8,5,1,6,1,6, + 1,6,1,6,1,6,1,6,1,6,1,6,3,6,1136,8,6,1,7,1,7,1,7,1,7,3,7,1142,8, + 7,1,7,5,7,1145,8,7,10,7,12,7,1148,9,7,1,8,1,8,1,8,1,8,3,8,1154,8, + 8,1,8,5,8,1157,8,8,10,8,12,8,1160,9,8,1,9,1,9,1,9,1,9,3,9,1166,8, + 9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,3,10,1177,8,10,1,10,1, + 10,1,11,1,11,5,11,1183,8,11,10,11,12,11,1186,9,11,1,11,3,11,1189, + 8,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1201, + 8,11,1,11,1,11,1,11,1,11,3,11,1207,8,11,1,12,1,12,1,12,1,12,3,12, + 1213,8,12,1,12,1,12,3,12,1217,8,12,1,12,1,12,1,12,3,12,1222,8,12, + 1,12,1,12,3,12,1226,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, + 1,12,1,12,1,12,3,12,1239,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, + 1,12,3,12,1249,8,12,3,12,1251,8,12,1,13,1,13,1,13,1,13,3,13,1257, + 8,13,1,13,5,13,1260,8,13,10,13,12,13,1263,9,13,1,14,1,14,1,14,1, + 14,1,14,1,14,1,14,1,15,1,15,1,15,3,15,1275,8,15,1,15,3,15,1278,8, + 15,1,15,1,15,1,15,3,15,1283,8,15,1,15,5,15,1286,8,15,10,15,12,15, + 1289,9,15,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,3,17,1299,8,17, + 1,18,1,18,3,18,1303,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19, + 1,19,1,19,3,19,1315,8,19,1,20,1,20,3,20,1319,8,20,1,20,3,20,1322, + 8,20,1,20,1,20,3,20,1326,8,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,3,21,1338,8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1356,8,21,1,22, + 1,22,1,22,5,22,1361,8,22,10,22,12,22,1364,9,22,1,23,1,23,1,23,5, + 23,1369,8,23,10,23,12,23,1372,9,23,1,24,1,24,3,24,1376,8,24,1,25, + 1,25,1,25,1,25,1,25,3,25,1383,8,25,1,26,1,26,1,26,1,26,1,26,1,26, + 3,26,1391,8,26,1,27,1,27,1,27,1,27,3,27,1397,8,27,1,28,1,28,1,28, + 1,28,1,28,1,28,3,28,1405,8,28,1,28,1,28,1,28,1,28,1,28,1,28,3,28, + 1413,8,28,1,29,1,29,3,29,1417,8,29,1,30,1,30,1,30,1,31,1,31,1,31, + 1,31,1,31,1,31,1,31,1,31,1,31,3,31,1431,8,31,1,32,1,32,1,32,3,32, + 1436,8,32,1,33,1,33,1,33,3,33,1441,8,33,1,34,1,34,1,34,1,34,1,34, + 1,34,1,34,1,34,1,34,1,34,3,34,1453,8,34,1,35,1,35,1,35,1,35,3,35, + 1459,8,35,1,35,1,35,1,36,1,36,1,37,1,37,1,37,1,38,1,38,1,38,3,38, + 1471,8,38,1,38,1,38,1,38,3,38,1476,8,38,1,38,1,38,1,38,1,38,1,38, + 1,38,1,38,1,38,3,38,1486,8,38,1,38,1,38,1,38,1,38,3,38,1492,8,38, + 1,38,1,38,1,38,3,38,1497,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, + 3,38,1506,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1513,8,38,1,38,1,38, + 1,38,3,38,1518,8,38,1,38,1,38,1,38,3,38,1523,8,38,1,38,1,38,1,38, + 1,38,1,38,1,38,1,38,1,38,3,38,1533,8,38,1,38,1,38,1,38,3,38,1538, + 8,38,1,38,1,38,1,38,3,38,1543,8,38,1,38,1,38,1,38,1,38,1,38,3,38, + 1550,8,38,1,38,1,38,3,38,1554,8,38,1,38,1,38,1,38,1,38,1,38,1,38, + 1,38,1,38,1,38,1,38,1,38,1,38,3,38,1568,8,38,1,38,1,38,1,38,1,38, + 3,38,1574,8,38,1,38,1,38,1,38,1,38,3,38,1580,8,38,1,38,1,38,1,38, + 3,38,1585,8,38,1,39,1,39,1,39,5,39,1590,8,39,10,39,12,39,1593,9, + 39,1,40,1,40,1,40,1,40,1,40,1,40,3,40,1601,8,40,1,41,1,41,1,41,1, + 41,1,42,1,42,1,42,3,42,1610,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1617, + 8,42,10,42,12,42,1620,9,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1628, + 8,42,1,42,1,42,3,42,1632,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, + 1,42,1,42,1,42,3,42,1644,8,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42, + 1652,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1662,8,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,42,3,42,1682,8,42,1,42,1,42,1,42,3,42,1687, + 8,42,1,42,3,42,1690,8,42,1,42,1,42,1,42,1,42,1,42,3,42,1697,8,42, + 1,42,3,42,1700,8,42,1,42,1,42,3,42,1704,8,42,1,42,1,42,3,42,1708, + 8,42,1,42,3,42,1711,8,42,1,42,1,42,1,42,3,42,1716,8,42,1,42,1,42, + 1,42,3,42,1721,8,42,1,42,1,42,3,42,1725,8,42,1,42,1,42,1,42,1,42, + 1,42,1,42,1,42,3,42,1734,8,42,1,42,1,42,1,42,1,42,3,42,1740,8,42, + 1,42,1,42,3,42,1744,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42, + 1753,8,42,1,42,3,42,1756,8,42,1,42,1,42,1,42,1,42,3,42,1762,8,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1771,8,42,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,42,4,42,1781,8,42,11,42,12,42,1782,1,42,1, + 42,3,42,1787,8,42,1,42,1,42,3,42,1791,8,42,1,42,1,42,1,42,3,42,1796, + 8,42,1,42,3,42,1799,8,42,1,42,1,42,1,42,1,42,3,42,1805,8,42,4,42, + 1807,8,42,11,42,12,42,1808,1,42,1,42,3,42,1813,8,42,1,42,1,42,1, + 42,1,42,3,42,1819,8,42,1,42,1,42,3,42,1823,8,42,1,42,1,42,1,42,3, + 42,1828,8,42,1,42,1,42,1,42,3,42,1833,8,42,1,42,1,42,3,42,1837,8, + 42,1,42,3,42,1840,8,42,1,43,1,43,1,43,1,43,1,43,3,43,1847,8,43,1, + 44,1,44,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46,1858,8,46,10,46, + 12,46,1861,9,46,1,46,1,46,1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48, + 3,48,1873,8,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,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49, + 3,49,1898,8,49,1,50,1,50,1,50,1,50,1,50,1,50,5,50,1906,8,50,10,50, + 12,50,1909,9,50,1,51,1,51,1,51,1,51,3,51,1915,8,51,1,51,1,51,1,51, + 3,51,1920,8,51,1,51,1,51,3,51,1924,8,51,1,51,1,51,1,51,1,51,1,51, + 3,51,1931,8,51,1,51,1,51,1,51,3,51,1936,8,51,1,51,3,51,1939,8,51, + 3,51,1941,8,51,1,52,1,52,1,52,3,52,1946,8,52,1,53,1,53,3,53,1950, + 8,53,1,53,1,53,3,53,1954,8,53,1,53,1,53,3,53,1958,8,53,1,53,1,53, + 1,53,3,53,1963,8,53,1,53,3,53,1966,8,53,1,53,1,53,3,53,1970,8,53, + 1,53,3,53,1973,8,53,1,53,1,53,3,53,1977,8,53,1,53,1,53,1,53,1,53, + 1,53,1,53,3,53,1985,8,53,1,53,1,53,1,53,3,53,1990,8,53,1,53,3,53, + 1993,8,53,1,53,1,53,3,53,1997,8,53,1,54,1,54,1,54,1,54,3,54,2003, + 8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2012,8,54,1,54,1,54, + 3,54,2016,8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2026, + 8,54,1,54,1,54,1,54,3,54,2031,8,54,5,54,2033,8,54,10,54,12,54,2036, + 9,54,1,54,3,54,2039,8,54,5,54,2041,8,54,10,54,12,54,2044,9,54,1, + 55,1,55,1,55,1,55,3,55,2050,8,55,1,55,1,55,1,55,3,55,2055,8,55,5, + 55,2057,8,55,10,55,12,55,2060,9,55,1,55,1,55,3,55,2064,8,55,1,56, + 1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,2074,8,56,10,56,12,56,2077, + 9,56,1,56,1,56,3,56,2081,8,56,1,57,1,57,3,57,2085,8,57,1,57,1,57, + 3,57,2089,8,57,1,57,1,57,1,57,3,57,2094,8,57,1,57,1,57,3,57,2098, + 8,57,1,57,3,57,2101,8,57,1,57,3,57,2104,8,57,1,57,3,57,2107,8,57, + 1,57,3,57,2110,8,57,1,57,3,57,2113,8,57,1,57,1,57,1,57,3,57,2118, + 8,57,1,57,3,57,2121,8,57,1,57,3,57,2124,8,57,1,57,3,57,2127,8,57, + 1,57,3,57,2130,8,57,1,57,3,57,2133,8,57,1,57,1,57,1,57,1,57,3,57, + 2139,8,57,1,57,1,57,3,57,2143,8,57,1,57,3,57,2146,8,57,1,57,3,57, + 2149,8,57,1,57,3,57,2152,8,57,1,57,3,57,2155,8,57,3,57,2157,8,57, + 1,58,1,58,1,58,1,58,1,58,3,58,2164,8,58,1,59,1,59,1,59,1,59,5,59, + 2170,8,59,10,59,12,59,2173,9,59,1,59,1,59,1,60,1,60,1,60,5,60,2180, + 8,60,10,60,12,60,2183,9,60,1,61,1,61,3,61,2187,8,61,1,61,1,61,1, + 61,1,61,1,61,1,61,5,61,2195,8,61,10,61,12,61,2198,9,61,3,61,2200, + 8,61,1,62,1,62,1,62,3,62,2205,8,62,1,62,5,62,2208,8,62,10,62,12, + 62,2211,9,62,1,62,1,62,3,62,2215,8,62,1,62,3,62,2218,8,62,1,63,1, + 63,1,63,3,63,2223,8,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2232, + 8,63,3,63,2234,8,63,1,63,1,63,3,63,2238,8,63,1,63,3,63,2241,8,63, + 1,63,1,63,3,63,2245,8,63,1,63,5,63,2248,8,63,10,63,12,63,2251,9, + 63,1,64,1,64,3,64,2255,8,64,1,64,1,64,3,64,2259,8,64,1,64,3,64,2262, + 8,64,1,64,1,64,3,64,2266,8,64,1,65,3,65,2269,8,65,1,65,1,65,1,65, + 3,65,2274,8,65,1,65,3,65,2277,8,65,1,65,1,65,1,65,3,65,2282,8,65, + 1,65,3,65,2285,8,65,1,65,1,65,3,65,2289,8,65,1,65,3,65,2292,8,65, + 1,65,3,65,2295,8,65,1,65,1,65,1,65,3,65,2300,8,65,1,65,3,65,2303, + 8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,2311,8,65,1,65,1,65,1,65, + 1,65,1,65,1,65,1,65,1,65,4,65,2321,8,65,11,65,12,65,2322,1,65,1, + 65,3,65,2327,8,65,1,65,1,65,1,65,1,65,1,65,3,65,2334,8,65,1,65,1, + 65,1,65,3,65,2339,8,65,1,65,3,65,2342,8,65,1,65,3,65,2345,8,65,1, + 65,3,65,2348,8,65,1,66,1,66,1,66,3,66,2353,8,66,1,67,1,67,1,68,1, + 68,1,68,1,68,1,68,5,68,2362,8,68,10,68,12,68,2365,9,68,1,68,1,68, + 1,68,3,68,2370,8,68,1,68,1,68,3,68,2374,8,68,1,68,3,68,2377,8,68, + 1,68,3,68,2380,8,68,1,68,5,68,2383,8,68,10,68,12,68,2386,9,68,1, + 68,1,68,5,68,2390,8,68,10,68,12,68,2393,9,68,3,68,2395,8,68,1,68, + 1,68,3,68,2399,8,68,1,68,1,68,1,68,1,68,5,68,2405,8,68,10,68,12, + 68,2408,9,68,1,68,1,68,3,68,2412,8,68,1,68,3,68,2415,8,68,1,68,3, + 68,2418,8,68,1,68,1,68,1,68,1,68,1,68,3,68,2425,8,68,1,68,5,68,2428, + 8,68,10,68,12,68,2431,9,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,2439, + 8,68,1,68,3,68,2442,8,68,1,68,3,68,2445,8,68,1,68,5,68,2448,8,68, + 10,68,12,68,2451,9,68,3,68,2453,8,68,1,69,1,69,1,69,1,69,1,70,1, + 70,1,70,1,70,5,70,2463,8,70,10,70,12,70,2466,9,70,1,70,1,70,1,71, + 1,71,1,71,5,71,2473,8,71,10,71,12,71,2476,9,71,1,72,1,72,1,72,1, + 73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,2492,8, + 74,1,75,1,75,3,75,2496,8,75,1,75,1,75,3,75,2500,8,75,3,75,2502,8, + 75,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1, + 78,1,78,1,78,3,78,2519,8,78,3,78,2521,8,78,1,79,1,79,1,79,1,79,1, + 79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2535,8,80,10,80,12,80, + 2538,9,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2548,8,81, + 1,81,3,81,2551,8,81,1,81,3,81,2554,8,81,1,82,1,82,1,82,1,83,1,83, + 1,83,1,83,3,83,2563,8,83,1,84,1,84,1,84,1,84,1,84,1,84,1,84,3,84, + 2572,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87, + 1,88,1,88,1,88,3,88,2588,8,88,1,88,3,88,2591,8,88,1,88,3,88,2594, + 8,88,1,88,1,88,1,88,1,88,5,88,2600,8,88,10,88,12,88,2603,9,88,1, + 88,3,88,2606,8,88,1,88,1,88,1,89,1,89,1,89,3,89,2613,8,89,1,89,1, + 89,1,89,1,89,1,89,1,90,1,90,3,90,2622,8,90,1,90,1,90,3,90,2626,8, + 90,1,90,1,90,1,90,1,90,3,90,2632,8,90,1,91,1,91,3,91,2636,8,91,1, + 91,3,91,2639,8,91,1,91,3,91,2642,8,91,1,91,3,91,2645,8,91,1,91,3, + 91,2648,8,91,1,92,1,92,1,92,1,92,3,92,2654,8,92,1,93,1,93,3,93,2658, + 8,93,1,93,1,93,1,93,3,93,2663,8,93,1,93,1,93,3,93,2667,8,93,1,93, + 3,93,2670,8,93,1,93,3,93,2673,8,93,1,93,3,93,2676,8,93,1,93,1,93, + 1,93,3,93,2681,8,93,1,94,1,94,1,94,1,94,3,94,2687,8,94,1,94,1,94, + 3,94,2691,8,94,1,95,1,95,3,95,2695,8,95,1,95,1,95,3,95,2699,8,95, + 1,95,1,95,4,95,2703,8,95,11,95,12,95,2704,3,95,2707,8,95,1,96,1, + 96,1,96,3,96,2712,8,96,1,96,1,96,4,96,2716,8,96,11,96,12,96,2717, + 1,97,1,97,1,97,1,97,3,97,2724,8,97,1,97,1,97,3,97,2728,8,97,1,97, + 1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97, + 2743,8,97,1,97,1,97,1,97,3,97,2748,8,97,1,97,3,97,2751,8,97,3,97, + 2753,8,97,1,98,3,98,2756,8,98,1,98,1,98,3,98,2760,8,98,1,99,1,99, + 3,99,2764,8,99,1,99,3,99,2767,8,99,1,99,3,99,2770,8,99,1,99,1,99, + 1,99,1,99,1,99,1,99,3,99,2778,8,99,1,99,1,99,1,99,1,99,3,99,2784, + 8,99,3,99,2786,8,99,1,100,1,100,1,100,1,100,3,100,2792,8,100,1,100, + 1,100,1,100,3,100,2797,8,100,1,101,1,101,1,101,3,101,2802,8,101, + 1,101,1,101,3,101,2806,8,101,1,101,1,101,1,101,1,101,1,101,5,101, + 2813,8,101,10,101,12,101,2816,9,101,1,102,1,102,1,102,1,102,1,102, + 1,102,5,102,2824,8,102,10,102,12,102,2827,9,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,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,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,103,3,103,2857,8,103,1,104,1,104,1,104,1,104, - 1,104,1,104,4,104,2865,8,104,11,104,12,104,2866,3,104,2869,8,104, - 1,104,3,104,2872,8,104,1,105,1,105,3,105,2876,8,105,1,105,1,105, - 3,105,2880,8,105,1,106,1,106,1,106,1,106,1,106,1,106,4,106,2888, - 8,106,11,106,12,106,2889,3,106,2892,8,106,1,106,1,106,4,106,2896, - 8,106,11,106,12,106,2897,3,106,2900,8,106,1,107,1,107,1,107,1,107, - 1,107,5,107,2907,8,107,10,107,12,107,2910,9,107,1,107,1,107,1,108, - 1,108,1,108,1,108,1,108,5,108,2919,8,108,10,108,12,108,2922,9,108, - 1,108,1,108,1,109,1,109,1,109,1,110,1,110,1,110,1,111,1,111,1,111, - 3,111,2935,8,111,1,111,1,111,1,111,3,111,2940,8,111,1,111,3,111, - 2943,8,111,1,111,1,111,1,111,1,111,1,111,3,111,2950,8,111,1,112, - 1,112,1,112,3,112,2955,8,112,1,113,1,113,1,113,1,113,1,113,1,113, - 3,113,2963,8,113,3,113,2965,8,113,1,114,1,114,1,114,1,114,3,114, - 2971,8,114,1,114,1,114,1,114,3,114,2976,8,114,1,114,1,114,3,114, - 2980,8,114,1,114,1,114,1,114,3,114,2985,8,114,1,114,1,114,1,114, - 1,114,3,114,2991,8,114,1,114,1,114,1,114,1,114,1,114,3,114,2998, - 8,114,1,114,1,114,1,114,1,114,3,114,3004,8,114,3,114,3006,8,114, - 1,115,1,115,1,115,1,115,1,115,1,115,1,115,3,115,3015,8,115,1,115, - 1,115,1,115,1,115,3,115,3021,8,115,1,115,1,115,1,115,1,115,1,115, - 1,115,3,115,3029,8,115,1,116,1,116,1,116,1,116,3,116,3035,8,116, - 1,116,1,116,1,116,3,116,3040,8,116,1,116,1,116,1,116,3,116,3045, - 8,116,1,117,1,117,1,117,1,117,1,117,1,117,3,117,3053,8,117,1,117, - 1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,3,118,3068,8,118,3,118,3070,8,118,1,118,1,118,3,118,3074,8, - 118,1,118,1,118,3,118,3078,8,118,1,118,3,118,3081,8,118,1,118,3, - 118,3084,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3093, - 8,119,1,119,3,119,3096,8,119,1,119,3,119,3099,8,119,1,120,1,120, - 1,120,1,120,3,120,3105,8,120,1,120,1,120,5,120,3109,8,120,10,120, - 12,120,3112,9,120,1,120,3,120,3115,8,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,3,120,3127,8,120,1,120,1,120, - 1,120,1,120,3,120,3133,8,120,1,121,3,121,3136,8,121,1,121,1,121, - 1,121,3,121,3141,8,121,1,121,1,121,3,121,3145,8,121,1,121,1,121, - 1,121,1,121,1,121,3,121,3152,8,121,1,121,1,121,1,121,1,121,1,121, - 1,121,1,121,1,121,3,121,3162,8,121,3,121,3164,8,121,1,122,1,122, - 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,3,125,3188, - 8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 3,125,3200,8,125,1,125,4,125,3203,8,125,11,125,12,125,3204,3,125, - 3207,8,125,1,125,1,125,3,125,3211,8,125,1,125,3,125,3214,8,125,1, - 125,3,125,3217,8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, - 125,3,125,3227,8,125,1,125,3,125,3230,8,125,1,125,1,125,1,125,1, - 125,1,125,1,125,1,125,1,125,3,125,3240,8,125,1,125,5,125,3243,8, - 125,10,125,12,125,3246,9,125,1,125,1,125,3,125,3250,8,125,1,125, - 3,125,3253,8,125,1,125,3,125,3256,8,125,1,125,1,125,1,125,1,125, - 1,125,1,125,3,125,3264,8,125,1,126,1,126,1,126,1,126,3,126,3270, - 8,126,1,127,1,127,1,127,5,127,3275,8,127,10,127,12,127,3278,9,127, - 1,128,1,128,1,128,1,128,1,128,3,128,3285,8,128,1,128,3,128,3288, - 8,128,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,3,130, - 3299,8,130,1,131,1,131,3,131,3303,8,131,1,131,1,131,5,131,3307,8, - 131,10,131,12,131,3310,9,131,1,132,1,132,1,132,1,132,3,132,3316, - 8,132,1,133,3,133,3319,8,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,3,133,3328,8,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,5,134,3340,8,134,10,134,12,134,3343,9,134,3,134, - 3345,8,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135, - 1,135,5,135,3357,8,135,10,135,12,135,3360,9,135,1,135,1,135,1,136, - 1,136,1,136,1,136,1,136,1,136,3,136,3370,8,136,1,136,3,136,3373, - 8,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,5,137,3383, - 8,137,10,137,12,137,3386,9,137,1,138,1,138,3,138,3390,8,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,5,138,3401,8,138, - 10,138,12,138,3404,9,138,1,138,1,138,3,138,3408,8,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3421, - 8,138,1,138,1,138,1,138,1,138,1,138,5,138,3428,8,138,10,138,12,138, - 3431,9,138,3,138,3433,8,138,1,138,3,138,3436,8,138,1,138,1,138,1, - 138,1,138,1,138,3,138,3443,8,138,1,138,3,138,3446,8,138,1,138,1, - 138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3458,8, - 138,1,138,1,138,1,138,1,138,3,138,3464,8,138,3,138,3466,8,138,1, - 139,1,139,1,139,1,139,5,139,3472,8,139,10,139,12,139,3475,9,139, - 1,139,1,139,1,140,1,140,1,140,3,140,3482,8,140,1,141,1,141,1,141, - 1,141,1,141,1,141,3,141,3490,8,141,1,142,1,142,1,142,1,142,1,143, - 1,143,1,143,1,143,1,143,1,143,3,143,3502,8,143,1,143,1,143,1,143, - 3,143,3507,8,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 1,143,3,143,3518,8,143,1,144,1,144,1,144,1,144,1,145,1,145,1,145, - 1,145,1,145,3,145,3529,8,145,1,145,1,145,1,145,1,145,1,145,1,145, - 3,145,3537,8,145,1,145,1,145,1,145,1,145,5,145,3543,8,145,10,145, - 12,145,3546,9,145,1,146,1,146,1,146,1,146,3,146,3552,8,146,1,146, - 1,146,1,146,1,146,1,146,3,146,3559,8,146,3,146,3561,8,146,1,146, - 3,146,3564,8,146,1,146,1,146,1,146,3,146,3569,8,146,1,146,1,146, - 1,146,3,146,3574,8,146,1,147,1,147,1,147,1,147,1,147,1,147,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,5,148,3591,8,148, - 10,148,12,148,3594,9,148,1,148,1,148,1,148,1,148,5,148,3600,8,148, - 10,148,12,148,3603,9,148,3,148,3605,8,148,1,149,1,149,1,149,1,149, - 1,150,1,150,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,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151, - 3632,8,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3641, - 8,151,1,151,3,151,3644,8,151,1,151,1,151,3,151,3648,8,151,1,151, - 1,151,3,151,3652,8,151,1,151,1,151,3,151,3656,8,151,1,151,1,151, - 1,151,5,151,3661,8,151,10,151,12,151,3664,9,151,1,151,3,151,3667, - 8,151,1,151,1,151,3,151,3671,8,151,1,151,1,151,3,151,3675,8,151, - 1,151,1,151,3,151,3679,8,151,1,151,1,151,1,151,3,151,3684,8,151, - 1,151,1,151,3,151,3688,8,151,1,151,1,151,1,151,3,151,3693,8,151, - 1,151,1,151,1,151,1,151,3,151,3699,8,151,1,151,1,151,1,151,3,151, - 3704,8,151,1,151,1,151,1,151,5,151,3709,8,151,10,151,12,151,3712, - 9,151,1,151,3,151,3715,8,151,1,151,1,151,1,151,1,151,3,151,3721, - 8,151,1,151,1,151,3,151,3725,8,151,1,151,1,151,1,151,3,151,3730, - 8,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3738,8,151,1,151, - 1,151,1,151,1,151,3,151,3744,8,151,1,151,1,151,1,151,3,151,3749, - 8,151,1,151,1,151,1,151,1,151,1,151,3,151,3756,8,151,1,151,1,151, - 1,151,3,151,3761,8,151,1,151,1,151,3,151,3765,8,151,1,151,1,151, - 1,151,3,151,3770,8,151,1,151,1,151,1,151,1,151,3,151,3776,8,151, - 1,151,1,151,1,151,1,151,1,151,3,151,3783,8,151,1,151,1,151,1,151, - 3,151,3788,8,151,1,151,1,151,1,151,1,151,1,151,3,151,3795,8,151, - 1,151,1,151,1,151,3,151,3800,8,151,1,151,1,151,1,151,1,151,1,151, - 3,151,3807,8,151,1,151,1,151,3,151,3811,8,151,1,151,1,151,1,151, - 1,151,5,151,3817,8,151,10,151,12,151,3820,9,151,1,151,3,151,3823, - 8,151,3,151,3825,8,151,1,152,3,152,3828,8,152,1,152,1,152,1,152, - 3,152,3833,8,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, - 3,152,3843,8,152,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, - 1,153,1,153,1,153,1,153,1,153,3,153,3858,8,153,1,153,3,153,3861, - 8,153,1,153,1,153,1,153,1,153,1,153,1,153,3,153,3869,8,153,1,154, - 1,154,1,154,5,154,3874,8,154,10,154,12,154,3877,9,154,1,155,1,155, - 3,155,3881,8,155,1,156,1,156,4,156,3885,8,156,11,156,12,156,3886, - 1,157,1,157,3,157,3891,8,157,1,157,1,157,1,157,5,157,3896,8,157, - 10,157,12,157,3899,9,157,1,157,1,157,3,157,3903,8,157,1,157,3,157, - 3906,8,157,1,158,3,158,3909,8,158,1,158,1,158,3,158,3913,8,158,1, - 159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3922,8,159,1,159,1, - 159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,1,159,3,159,3940,8,159,1,159,3,159,3943,8,159, + 3,103,2865,8,103,1,104,1,104,1,104,1,104,1,104,1,104,4,104,2873, + 8,104,11,104,12,104,2874,3,104,2877,8,104,1,104,3,104,2880,8,104, + 1,105,1,105,3,105,2884,8,105,1,105,1,105,3,105,2888,8,105,1,106, + 1,106,1,106,1,106,1,106,1,106,4,106,2896,8,106,11,106,12,106,2897, + 3,106,2900,8,106,1,106,1,106,4,106,2904,8,106,11,106,12,106,2905, + 3,106,2908,8,106,1,107,1,107,1,107,1,107,1,107,5,107,2915,8,107, + 10,107,12,107,2918,9,107,1,107,1,107,1,108,1,108,1,108,1,108,1,108, + 5,108,2927,8,108,10,108,12,108,2930,9,108,1,108,1,108,1,109,1,109, + 1,109,1,110,1,110,1,110,1,111,1,111,1,111,3,111,2943,8,111,1,111, + 1,111,1,111,3,111,2948,8,111,1,111,3,111,2951,8,111,1,111,1,111, + 1,111,1,111,1,111,3,111,2958,8,111,1,112,1,112,1,112,3,112,2963, + 8,112,1,113,1,113,1,113,1,113,1,113,1,113,3,113,2971,8,113,3,113, + 2973,8,113,1,114,1,114,1,114,1,114,3,114,2979,8,114,1,114,1,114, + 1,114,3,114,2984,8,114,1,114,1,114,3,114,2988,8,114,1,114,1,114, + 1,114,3,114,2993,8,114,1,114,1,114,1,114,1,114,3,114,2999,8,114, + 1,114,1,114,1,114,1,114,1,114,3,114,3006,8,114,1,114,1,114,1,114, + 1,114,3,114,3012,8,114,3,114,3014,8,114,1,115,1,115,1,115,1,115, + 1,115,1,115,1,115,3,115,3023,8,115,1,115,1,115,1,115,1,115,3,115, + 3029,8,115,1,115,1,115,1,115,1,115,1,115,1,115,3,115,3037,8,115, + 1,116,1,116,1,116,1,116,3,116,3043,8,116,1,116,1,116,1,116,3,116, + 3048,8,116,1,116,1,116,1,116,3,116,3053,8,116,1,117,1,117,1,117, + 1,117,1,117,1,117,3,117,3061,8,117,1,117,1,117,1,117,1,117,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,3076,8,118, + 3,118,3078,8,118,1,118,1,118,3,118,3082,8,118,1,118,1,118,3,118, + 3086,8,118,1,118,3,118,3089,8,118,1,118,3,118,3092,8,118,1,119,1, + 119,1,119,1,119,1,119,1,119,1,119,3,119,3101,8,119,1,119,3,119,3104, + 8,119,1,119,3,119,3107,8,119,1,120,1,120,1,120,1,120,3,120,3113, + 8,120,1,120,1,120,5,120,3117,8,120,10,120,12,120,3120,9,120,1,120, + 3,120,3123,8,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,3,120,3135,8,120,1,120,1,120,1,120,1,120,3,120,3141, + 8,120,1,121,3,121,3144,8,121,1,121,1,121,1,121,3,121,3149,8,121, + 1,121,1,121,3,121,3153,8,121,1,121,1,121,1,121,1,121,1,121,3,121, + 3160,8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, + 3170,8,121,3,121,3172,8,121,1,122,1,122,1,122,1,122,1,122,1,123, + 1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,1,125,1,125,3,125,3196,8,125,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3208,8,125,1,125, + 4,125,3211,8,125,11,125,12,125,3212,3,125,3215,8,125,1,125,1,125, + 3,125,3219,8,125,1,125,3,125,3222,8,125,1,125,3,125,3225,8,125,1, + 125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3235,8,125,1, + 125,3,125,3238,8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, + 125,3,125,3248,8,125,1,125,5,125,3251,8,125,10,125,12,125,3254,9, + 125,1,125,1,125,3,125,3258,8,125,1,125,3,125,3261,8,125,1,125,3, + 125,3264,8,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3272,8, + 125,1,126,1,126,1,126,1,126,3,126,3278,8,126,1,127,1,127,1,127,5, + 127,3283,8,127,10,127,12,127,3286,9,127,1,128,1,128,1,128,1,128, + 1,128,3,128,3293,8,128,1,128,3,128,3296,8,128,1,129,1,129,1,129, + 1,129,1,129,1,130,1,130,1,130,1,130,3,130,3307,8,130,1,131,1,131, + 3,131,3311,8,131,1,131,1,131,5,131,3315,8,131,10,131,12,131,3318, + 9,131,1,132,1,132,1,132,1,132,3,132,3324,8,132,1,133,3,133,3327, + 8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,3336,8,133, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134, + 3348,8,134,10,134,12,134,3351,9,134,3,134,3353,8,134,1,134,1,134, + 1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,5,135,3365,8,135, + 10,135,12,135,3368,9,135,1,135,1,135,1,136,1,136,1,136,1,136,1,136, + 1,136,3,136,3378,8,136,1,136,3,136,3381,8,136,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,5,137,3391,8,137,10,137,12,137,3394, + 9,137,1,138,1,138,3,138,3398,8,138,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,5,138,3409,8,138,10,138,12,138,3412,9,138, + 1,138,1,138,3,138,3416,8,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,3,138,3429,8,138,1,138,1,138,1,138, + 1,138,1,138,5,138,3436,8,138,10,138,12,138,3439,9,138,3,138,3441, + 8,138,1,138,3,138,3444,8,138,1,138,1,138,1,138,1,138,1,138,3,138, + 3451,8,138,1,138,3,138,3454,8,138,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,3,138,3466,8,138,1,138,1,138,1,138, + 1,138,3,138,3472,8,138,3,138,3474,8,138,1,139,1,139,1,139,1,139, + 5,139,3480,8,139,10,139,12,139,3483,9,139,1,139,1,139,1,140,1,140, + 1,140,3,140,3490,8,140,1,141,1,141,1,141,1,141,1,141,1,141,3,141, + 3498,8,141,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143, + 1,143,3,143,3510,8,143,1,143,1,143,1,143,3,143,3515,8,143,1,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,3526,8,143, + 1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,1,145,3,145,3537, + 8,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,3545,8,145,1,145, + 1,145,1,145,1,145,5,145,3551,8,145,10,145,12,145,3554,9,145,1,146, + 1,146,1,146,1,146,3,146,3560,8,146,1,146,1,146,1,146,1,146,1,146, + 3,146,3567,8,146,3,146,3569,8,146,1,146,3,146,3572,8,146,1,146,1, + 146,1,146,3,146,3577,8,146,1,146,1,146,1,146,3,146,3582,8,146,1, + 147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,5,148,3599,8,148,10,148,12,148,3602,9,148, + 1,148,1,148,1,148,1,148,5,148,3608,8,148,10,148,12,148,3611,9,148, + 3,148,3613,8,148,1,149,1,149,1,149,1,149,1,150,1,150,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,151, + 1,151,1,151,1,151,1,151,1,151,1,151,3,151,3640,8,151,1,151,1,151, + 1,151,1,151,1,151,1,151,1,151,3,151,3649,8,151,1,151,3,151,3652, + 8,151,1,151,1,151,3,151,3656,8,151,1,151,1,151,3,151,3660,8,151, + 1,151,1,151,3,151,3664,8,151,1,151,1,151,1,151,5,151,3669,8,151, + 10,151,12,151,3672,9,151,1,151,3,151,3675,8,151,1,151,1,151,3,151, + 3679,8,151,1,151,1,151,3,151,3683,8,151,1,151,1,151,3,151,3687,8, + 151,1,151,1,151,1,151,3,151,3692,8,151,1,151,1,151,3,151,3696,8, + 151,1,151,1,151,1,151,3,151,3701,8,151,1,151,1,151,1,151,1,151,3, + 151,3707,8,151,1,151,1,151,1,151,3,151,3712,8,151,1,151,1,151,1, + 151,5,151,3717,8,151,10,151,12,151,3720,9,151,1,151,3,151,3723,8, + 151,1,151,1,151,1,151,1,151,3,151,3729,8,151,1,151,1,151,3,151,3733, + 8,151,1,151,1,151,1,151,3,151,3738,8,151,1,151,1,151,1,151,1,151, + 1,151,1,151,3,151,3746,8,151,1,151,1,151,1,151,1,151,3,151,3752, + 8,151,1,151,1,151,1,151,3,151,3757,8,151,1,151,1,151,1,151,1,151, + 1,151,3,151,3764,8,151,1,151,1,151,1,151,3,151,3769,8,151,1,151, + 1,151,3,151,3773,8,151,1,151,1,151,1,151,3,151,3778,8,151,1,151, + 1,151,1,151,1,151,3,151,3784,8,151,1,151,1,151,1,151,1,151,1,151, + 3,151,3791,8,151,1,151,1,151,1,151,3,151,3796,8,151,1,151,1,151, + 1,151,1,151,1,151,3,151,3803,8,151,1,151,1,151,1,151,3,151,3808, + 8,151,1,151,1,151,1,151,1,151,1,151,3,151,3815,8,151,1,151,1,151, + 3,151,3819,8,151,1,151,1,151,1,151,1,151,5,151,3825,8,151,10,151, + 12,151,3828,9,151,1,151,3,151,3831,8,151,3,151,3833,8,151,1,152, + 3,152,3836,8,152,1,152,1,152,1,152,3,152,3841,8,152,1,152,1,152, + 1,152,1,152,1,152,1,152,1,152,1,152,3,152,3851,8,152,1,153,1,153, + 1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, + 3,153,3866,8,153,1,153,3,153,3869,8,153,1,153,1,153,1,153,1,153, + 1,153,1,153,3,153,3877,8,153,1,154,1,154,1,154,5,154,3882,8,154, + 10,154,12,154,3885,9,154,1,155,1,155,3,155,3889,8,155,1,156,1,156, + 4,156,3893,8,156,11,156,12,156,3894,1,157,1,157,3,157,3899,8,157, + 1,157,1,157,1,157,5,157,3904,8,157,10,157,12,157,3907,9,157,1,157, + 1,157,3,157,3911,8,157,1,157,3,157,3914,8,157,1,158,3,158,3917,8, + 158,1,158,1,158,3,158,3921,8,158,1,159,1,159,1,159,1,159,1,159,1, + 159,1,159,3,159,3930,8,159,1,159,1,159,1,159,1,159,1,159,1,159,1, + 159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159, + 3948,8,159,1,159,3,159,3951,8,159,1,159,1,159,1,159,1,159,1,159, 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3975,8,159, - 1,159,1,159,1,159,3,159,3980,8,159,1,160,1,160,1,160,1,160,3,160, - 3986,8,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,3,160,4006, - 8,160,1,160,1,160,1,160,3,160,4011,8,160,1,161,1,161,1,161,1,162, - 3,162,4017,8,162,1,162,3,162,4020,8,162,1,162,1,162,3,162,4024,8, - 162,1,162,1,162,3,162,4028,8,162,1,162,1,162,1,162,1,162,3,162,4034, - 8,162,1,162,3,162,4037,8,162,1,162,1,162,3,162,4041,8,162,1,162, - 1,162,3,162,4045,8,162,1,162,1,162,1,162,3,162,4050,8,162,1,162, - 3,162,4053,8,162,1,162,3,162,4056,8,162,1,162,3,162,4059,8,162,1, - 163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, - 3,164,4072,8,164,1,165,1,165,1,165,1,165,3,165,4078,8,165,1,165, - 1,165,1,165,1,165,1,165,1,165,3,165,4086,8,165,1,166,1,166,1,166, - 5,166,4091,8,166,10,166,12,166,4094,9,166,1,166,1,166,3,166,4098, - 8,166,1,166,3,166,4101,8,166,1,166,1,166,1,166,5,166,4106,8,166, - 10,166,12,166,4109,9,166,3,166,4111,8,166,1,167,1,167,1,168,1,168, - 1,168,1,168,3,168,4119,8,168,1,168,3,168,4122,8,168,1,169,1,169, - 1,169,3,169,4127,8,169,1,169,1,169,1,169,1,169,1,169,3,169,4134, - 8,169,1,169,3,169,4137,8,169,1,169,1,169,1,169,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,5,169, - 4155,8,169,10,169,12,169,4158,9,169,1,169,1,169,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,3,169,4169,8,169,1,170,3,170,4172,8,170, - 1,170,1,170,1,170,1,170,3,170,4178,8,170,1,170,5,170,4181,8,170, - 10,170,12,170,4184,9,170,1,171,1,171,1,171,1,171,5,171,4190,8,171, - 10,171,12,171,4193,9,171,1,171,1,171,1,171,1,171,1,171,3,171,4200, - 8,171,1,171,1,171,1,171,3,171,4205,8,171,1,172,1,172,1,172,1,172, - 3,172,4211,8,172,1,172,1,172,1,172,5,172,4216,8,172,10,172,12,172, - 4219,9,172,1,172,1,172,1,172,1,172,1,172,3,172,4226,8,172,1,172, - 3,172,4229,8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, - 1,173,5,173,4240,8,173,10,173,12,173,4243,9,173,1,173,1,173,1,174, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,4256,8,174, - 1,174,1,174,1,174,1,174,3,174,4262,8,174,1,174,1,174,1,174,1,174, - 1,174,1,174,3,174,4270,8,174,3,174,4272,8,174,1,175,1,175,1,176, - 1,176,3,176,4278,8,176,1,176,1,176,3,176,4282,8,176,1,176,3,176, - 4285,8,176,1,176,3,176,4288,8,176,1,176,1,176,1,176,3,176,4293,8, - 176,1,176,1,176,1,176,3,176,4298,8,176,1,176,1,176,3,176,4302,8, - 176,1,176,3,176,4305,8,176,1,176,3,176,4308,8,176,1,176,3,176,4311, - 8,176,1,176,3,176,4314,8,176,1,177,1,177,1,177,1,177,5,177,4320, - 8,177,10,177,12,177,4323,9,177,1,177,1,177,1,178,1,178,1,178,1,178, - 1,178,1,178,3,178,4333,8,178,1,178,3,178,4336,8,178,1,178,3,178, - 4339,8,178,1,178,1,178,1,178,3,178,4344,8,178,1,178,3,178,4347,8, - 178,1,178,1,178,3,178,4351,8,178,1,179,1,179,3,179,4355,8,179,1, - 179,1,179,1,179,1,179,3,179,4361,8,179,1,179,1,179,1,179,1,179,5, - 179,4367,8,179,10,179,12,179,4370,9,179,3,179,4372,8,179,1,179,1, - 179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,5,179,4383,8,179,10, - 179,12,179,4386,9,179,1,179,1,179,3,179,4390,8,179,3,179,4392,8, - 179,1,179,4,179,4395,8,179,11,179,12,179,4396,1,179,1,179,1,179, - 1,179,1,179,3,179,4404,8,179,1,180,1,180,1,180,1,181,1,181,3,181, - 4411,8,181,1,181,1,181,1,182,1,182,1,182,5,182,4418,8,182,10,182, - 12,182,4421,9,182,1,183,1,183,1,183,5,183,4426,8,183,10,183,12,183, - 4429,9,183,1,184,1,184,1,184,1,184,1,184,3,184,4436,8,184,1,185, - 1,185,1,185,5,185,4441,8,185,10,185,12,185,4444,9,185,1,186,1,186, - 1,186,1,186,1,186,3,186,4451,8,186,1,187,1,187,1,187,5,187,4456, - 8,187,10,187,12,187,4459,9,187,1,188,1,188,1,188,1,188,1,188,3,188, - 4466,8,188,1,189,1,189,3,189,4470,8,189,1,189,1,189,3,189,4474,8, - 189,3,189,4476,8,189,1,189,1,189,1,190,1,190,3,190,4482,8,190,1, - 190,1,190,1,190,3,190,4487,8,190,1,191,1,191,3,191,4491,8,191,1, - 191,1,191,1,191,1,191,1,191,3,191,4498,8,191,1,192,1,192,1,192,3, - 192,4503,8,192,1,193,1,193,1,193,3,193,4508,8,193,1,193,1,193,1, - 193,3,193,4513,8,193,3,193,4515,8,193,1,193,1,193,1,194,1,194,1, - 194,1,195,1,195,1,195,3,195,4525,8,195,1,195,1,195,1,195,1,195,1, - 195,1,195,1,195,1,195,3,195,4535,8,195,1,195,1,195,1,195,1,195,1, - 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,3,195, - 4551,8,195,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,5,196,4567,8,196,10,196,12,196,4570, - 9,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,3,196, - 4581,8,196,1,196,1,196,1,196,1,196,1,196,3,196,4588,8,196,1,197, - 1,197,1,197,1,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,3,199,4603,8,199,1,199,4,199,4606,8,199,11,199,12,199,4607, - 1,199,3,199,4611,8,199,1,200,1,200,1,200,3,200,4616,8,200,1,200, - 1,200,1,200,3,200,4621,8,200,1,200,1,200,1,200,3,200,4626,8,200, - 1,200,3,200,4629,8,200,1,200,3,200,4632,8,200,1,201,1,201,1,201, - 3,201,4637,8,201,1,201,1,201,1,201,5,201,4642,8,201,10,201,12,201, - 4645,9,201,1,201,3,201,4648,8,201,1,202,1,202,1,202,3,202,4653,8, - 202,1,202,1,202,1,202,5,202,4658,8,202,10,202,12,202,4661,9,202, - 1,202,3,202,4664,8,202,1,203,1,203,1,203,1,203,3,203,4670,8,203, - 1,203,1,203,1,203,1,203,1,203,1,203,1,203,3,203,4679,8,203,1,203, - 1,203,1,204,1,204,1,204,5,204,4686,8,204,10,204,12,204,4689,9,204, - 1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206,1,206,4,206,4700, - 8,206,11,206,12,206,4701,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,1,207,1,207,3,207,4715,8,207,1,207,1,207,1,207,1,207, - 3,207,4721,8,207,1,207,1,207,3,207,4725,8,207,3,207,4727,8,207,1, - 208,1,208,1,208,1,209,1,209,3,209,4734,8,209,1,209,1,209,1,209,1, - 209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,4747,8,209,1, - 209,1,209,1,209,1,209,1,209,3,209,4754,8,209,3,209,4756,8,209,1, - 209,1,209,1,210,1,210,1,210,1,210,1,210,1,211,1,211,1,211,1,211, - 1,211,5,211,4770,8,211,10,211,12,211,4773,9,211,1,211,3,211,4776, - 8,211,1,211,1,211,3,211,4780,8,211,1,211,1,211,1,211,3,211,4785, - 8,211,1,211,1,211,1,211,3,211,4790,8,211,1,211,1,211,1,211,3,211, - 4795,8,211,1,211,1,211,1,211,3,211,4800,8,211,1,211,3,211,4803,8, - 211,1,212,1,212,1,212,1,212,1,212,1,213,1,213,1,213,1,213,1,213, - 3,213,4815,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,159,1,159,1,159,3,159,3983,8,159,1,159,1,159,1,159,3,159,3988, + 8,159,1,160,1,160,1,160,1,160,3,160,3994,8,160,1,160,1,160,1,160, + 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, + 1,160,1,160,1,160,1,160,3,160,4014,8,160,1,160,1,160,1,160,3,160, + 4019,8,160,1,161,1,161,1,161,1,162,3,162,4025,8,162,1,162,3,162, + 4028,8,162,1,162,1,162,3,162,4032,8,162,1,162,1,162,3,162,4036,8, + 162,1,162,1,162,1,162,1,162,3,162,4042,8,162,1,162,3,162,4045,8, + 162,1,162,1,162,3,162,4049,8,162,1,162,1,162,3,162,4053,8,162,1, + 162,1,162,1,162,3,162,4058,8,162,1,162,3,162,4061,8,162,1,162,3, + 162,4064,8,162,1,162,3,162,4067,8,162,1,163,1,163,1,164,1,164,1, + 164,1,164,1,164,1,164,1,164,1,164,1,164,3,164,4080,8,164,1,165,1, + 165,1,165,1,165,3,165,4086,8,165,1,165,1,165,1,165,1,165,1,165,1, + 165,3,165,4094,8,165,1,166,1,166,1,166,5,166,4099,8,166,10,166,12, + 166,4102,9,166,1,166,1,166,3,166,4106,8,166,1,166,3,166,4109,8,166, + 1,166,1,166,1,166,5,166,4114,8,166,10,166,12,166,4117,9,166,3,166, + 4119,8,166,1,167,1,167,1,168,1,168,1,168,1,168,3,168,4127,8,168, + 1,168,3,168,4130,8,168,1,169,1,169,1,169,3,169,4135,8,169,1,169, + 1,169,1,169,1,169,1,169,3,169,4142,8,169,1,169,3,169,4145,8,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,5,169,4163,8,169,10,169,12,169,4166, + 9,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,3,169, + 4177,8,169,1,170,3,170,4180,8,170,1,170,1,170,1,170,1,170,3,170, + 4186,8,170,1,170,5,170,4189,8,170,10,170,12,170,4192,9,170,1,171, + 1,171,1,171,1,171,5,171,4198,8,171,10,171,12,171,4201,9,171,1,171, + 1,171,1,171,1,171,1,171,3,171,4208,8,171,1,171,1,171,1,171,3,171, + 4213,8,171,1,172,1,172,1,172,1,172,3,172,4219,8,172,1,172,1,172, + 1,172,5,172,4224,8,172,10,172,12,172,4227,9,172,1,172,1,172,1,172, + 1,172,1,172,3,172,4234,8,172,1,172,3,172,4237,8,172,1,173,1,173, + 1,173,1,173,1,173,1,173,1,173,1,173,1,173,5,173,4248,8,173,10,173, + 12,173,4251,9,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,174, + 1,174,1,174,1,174,3,174,4264,8,174,1,174,1,174,1,174,1,174,3,174, + 4270,8,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,4278,8,174, + 3,174,4280,8,174,1,175,1,175,1,176,1,176,3,176,4286,8,176,1,176, + 1,176,3,176,4290,8,176,1,176,3,176,4293,8,176,1,176,3,176,4296,8, + 176,1,176,1,176,1,176,3,176,4301,8,176,1,176,1,176,1,176,3,176,4306, + 8,176,1,176,1,176,3,176,4310,8,176,1,176,3,176,4313,8,176,1,176, + 3,176,4316,8,176,1,176,3,176,4319,8,176,1,176,3,176,4322,8,176,1, + 177,1,177,1,177,1,177,5,177,4328,8,177,10,177,12,177,4331,9,177, + 1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,3,178,4341,8,178, + 1,178,3,178,4344,8,178,1,178,3,178,4347,8,178,1,178,1,178,1,178, + 3,178,4352,8,178,1,178,3,178,4355,8,178,1,178,1,178,3,178,4359,8, + 178,1,179,1,179,3,179,4363,8,179,1,179,1,179,1,179,1,179,3,179,4369, + 8,179,1,179,1,179,1,179,1,179,5,179,4375,8,179,10,179,12,179,4378, + 9,179,3,179,4380,8,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, + 1,179,1,179,5,179,4391,8,179,10,179,12,179,4394,9,179,1,179,1,179, + 3,179,4398,8,179,3,179,4400,8,179,1,179,4,179,4403,8,179,11,179, + 12,179,4404,1,179,1,179,1,179,1,179,1,179,3,179,4412,8,179,1,180, + 1,180,1,180,1,181,1,181,3,181,4419,8,181,1,181,1,181,1,182,1,182, + 1,182,5,182,4426,8,182,10,182,12,182,4429,9,182,1,183,1,183,1,183, + 5,183,4434,8,183,10,183,12,183,4437,9,183,1,184,1,184,1,184,1,184, + 1,184,3,184,4444,8,184,1,185,1,185,1,185,5,185,4449,8,185,10,185, + 12,185,4452,9,185,1,186,1,186,1,186,1,186,1,186,3,186,4459,8,186, + 1,187,1,187,1,187,5,187,4464,8,187,10,187,12,187,4467,9,187,1,188, + 1,188,1,188,1,188,1,188,3,188,4474,8,188,1,189,1,189,3,189,4478, + 8,189,1,189,1,189,3,189,4482,8,189,3,189,4484,8,189,1,189,1,189, + 1,190,1,190,3,190,4490,8,190,1,190,1,190,1,190,3,190,4495,8,190, + 1,191,1,191,3,191,4499,8,191,1,191,1,191,1,191,1,191,1,191,3,191, + 4506,8,191,1,192,1,192,1,192,3,192,4511,8,192,1,193,1,193,1,193, + 3,193,4516,8,193,1,193,1,193,1,193,3,193,4521,8,193,3,193,4523,8, + 193,1,193,1,193,1,194,1,194,1,194,1,195,1,195,1,195,3,195,4533,8, + 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,3,195,4543,8, + 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, + 1,195,1,195,1,195,1,195,3,195,4559,8,195,1,196,1,196,1,196,1,196, + 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,5,196, + 4575,8,196,10,196,12,196,4578,9,196,1,196,1,196,1,196,1,196,1,196, + 1,196,1,196,1,196,1,196,3,196,4589,8,196,1,196,1,196,1,196,1,196, + 1,196,3,196,4596,8,196,1,197,1,197,1,197,1,198,1,198,1,198,1,199, + 1,199,1,199,1,199,1,199,1,199,1,199,3,199,4611,8,199,1,199,4,199, + 4614,8,199,11,199,12,199,4615,1,199,3,199,4619,8,199,1,200,1,200, + 1,200,3,200,4624,8,200,1,200,1,200,1,200,3,200,4629,8,200,1,200, + 1,200,1,200,3,200,4634,8,200,1,200,3,200,4637,8,200,1,200,3,200, + 4640,8,200,1,201,1,201,1,201,3,201,4645,8,201,1,201,1,201,1,201, + 5,201,4650,8,201,10,201,12,201,4653,9,201,1,201,3,201,4656,8,201, + 1,202,1,202,1,202,3,202,4661,8,202,1,202,1,202,1,202,5,202,4666, + 8,202,10,202,12,202,4669,9,202,1,202,3,202,4672,8,202,1,203,1,203, + 1,203,1,203,3,203,4678,8,203,1,203,1,203,1,203,1,203,1,203,1,203, + 1,203,3,203,4687,8,203,1,203,1,203,1,204,1,204,1,204,5,204,4694, + 8,204,10,204,12,204,4697,9,204,1,204,1,204,1,205,1,205,1,205,1,206, + 1,206,1,206,1,206,4,206,4708,8,206,11,206,12,206,4709,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,4723, + 8,207,1,207,1,207,1,207,1,207,3,207,4729,8,207,1,207,1,207,3,207, + 4733,8,207,3,207,4735,8,207,1,208,1,208,1,208,1,209,1,209,3,209, + 4742,8,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, + 1,209,1,209,3,209,4755,8,209,1,209,1,209,1,209,1,209,1,209,3,209, + 4762,8,209,3,209,4764,8,209,1,209,1,209,1,210,1,210,1,210,1,210, + 1,210,1,211,1,211,1,211,1,211,1,211,5,211,4778,8,211,10,211,12,211, + 4781,9,211,1,211,3,211,4784,8,211,1,211,1,211,3,211,4788,8,211,1, + 211,1,211,1,211,3,211,4793,8,211,1,211,1,211,1,211,3,211,4798,8, + 211,1,211,1,211,1,211,3,211,4803,8,211,1,211,1,211,1,211,3,211,4808, + 8,211,1,211,3,211,4811,8,211,1,212,1,212,1,212,1,212,1,212,1,213, + 1,213,1,213,1,213,1,213,3,213,4823,8,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,3,213,4876,8,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,3,213,4885,8,213,1,213,1,213,3,213,4889,8,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4898,8,213,1,213,1,213, + 3,213,4902,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, + 4911,8,213,1,213,1,213,3,213,4915,8,213,1,213,1,213,1,213,3,213, + 4920,8,213,1,213,3,213,4923,8,213,1,213,1,213,3,213,4927,8,213,1, + 213,1,213,1,213,3,213,4932,8,213,3,213,4934,8,213,1,213,1,213,1, + 213,1,213,1,213,1,213,1,213,3,213,4943,8,213,1,213,1,213,1,213,3, + 213,4948,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1, + 213,3,213,4959,8,213,1,213,1,213,3,213,4963,8,213,1,213,1,213,1, + 213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, + 4977,8,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4985,8,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, - 4868,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4877, - 8,213,1,213,1,213,3,213,4881,8,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,3,213,4890,8,213,1,213,1,213,3,213,4894,8,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4903,8,213,1,213,1,213, - 3,213,4907,8,213,1,213,1,213,1,213,3,213,4912,8,213,1,213,3,213, - 4915,8,213,1,213,1,213,3,213,4919,8,213,1,213,1,213,1,213,3,213, - 4924,8,213,3,213,4926,8,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,3,213,4935,8,213,1,213,1,213,1,213,3,213,4940,8,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4951,8,213, - 1,213,1,213,3,213,4955,8,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4969,8,213,1,213,1,213, - 1,213,1,213,1,213,1,213,3,213,4977,8,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, - 5015,8,213,3,213,5017,8,213,1,214,1,214,1,214,1,214,1,214,1,214, + 1,213,1,213,1,213,3,213,5023,8,213,3,213,5025,8,213,1,214,1,214, 1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214, - 3,214,5036,8,214,1,214,3,214,5039,8,214,1,214,1,214,1,214,1,214, - 1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, + 1,214,1,214,1,214,1,214,3,214,5044,8,214,1,214,3,214,5047,8,214, + 1,214,1,214,1,214,1,214,1,214,1,215,1,215,1,215,1,215,1,215,1,215, + 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, + 1,215,1,215,1,215,3,215,5074,8,215,1,215,1,215,3,215,5078,8,215, + 1,215,1,215,3,215,5082,8,215,1,215,1,215,3,215,5086,8,215,1,215, + 1,215,3,215,5090,8,215,1,215,3,215,5093,8,215,1,215,1,215,1,215, 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215, - 5066,8,215,1,215,1,215,3,215,5070,8,215,1,215,1,215,3,215,5074,8, - 215,1,215,1,215,3,215,5078,8,215,1,215,1,215,3,215,5082,8,215,1, - 215,3,215,5085,8,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1, - 215,1,215,1,215,1,215,1,215,1,215,3,215,5100,8,215,1,215,1,215,1, - 215,1,215,1,215,3,215,5107,8,215,1,216,1,216,1,216,1,216,1,216,1, - 216,1,217,1,217,1,217,1,217,5,217,5119,8,217,10,217,12,217,5122, - 9,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, - 3,218,5134,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,220,1,220, + 5108,8,215,1,215,1,215,1,215,1,215,1,215,3,215,5115,8,215,1,216, + 1,216,1,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,5,217,5127, + 8,217,10,217,12,217,5130,9,217,1,217,1,217,1,218,1,218,1,218,1,218, + 1,218,1,218,1,218,1,218,3,218,5142,8,218,1,219,1,219,1,219,1,219, + 1,219,1,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5167,8,220, 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,3,220,5159,8,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,3,220,5186,8,220,1,220,1,220, 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,3,220,5178,8,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5193,8,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,3,220,5209,8,220,1,220,1,220,1,220,1,220,1,220,3,220, - 5216,8,220,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221, - 3,221,5227,8,221,1,221,3,221,5230,8,221,1,222,1,222,1,222,1,222, + 3,220,5201,8,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,3,220,5217,8,220,1,220,1,220, + 1,220,1,220,1,220,3,220,5224,8,220,1,221,1,221,1,221,1,221,1,221, + 1,221,1,221,1,221,1,221,3,221,5235,8,221,1,221,3,221,5238,8,221, 1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222, - 5,222,5247,8,222,10,222,12,222,5250,9,222,3,222,5252,8,222,1,223, - 1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,5,223,5263,8,223, - 10,223,12,223,5266,9,223,1,223,3,223,5269,8,223,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,3,224,5289,8,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,5,224,5299,8,224,10,224,12,224,5302,9,224, - 1,224,3,224,5305,8,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,222,1,222,1,222,1,222,5,222,5255,8,222,10,222,12,222,5258,9,222, + 3,222,5260,8,222,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223, + 1,223,5,223,5271,8,223,10,223,12,223,5274,9,223,1,223,3,223,5277, + 8,223,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,3,224,5297,8,224, + 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,5,224,5307,8,224, + 10,224,12,224,5310,9,224,1,224,3,224,5313,8,224,1,224,1,224,1,224, 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,3,224,5327,8,224,1,225,1,225,3,225,5331,8,225,1,225, - 1,225,1,225,1,225,1,225,1,225,1,225,1,225,3,225,5341,8,225,1,225, - 1,225,3,225,5345,8,225,1,225,1,225,1,225,1,225,3,225,5351,8,225, - 1,225,1,225,3,225,5355,8,225,5,225,5357,8,225,10,225,12,225,5360, - 9,225,1,225,3,225,5363,8,225,1,226,1,226,1,226,1,226,1,226,3,226, - 5370,8,226,1,227,1,227,1,227,3,227,5375,8,227,1,228,1,228,1,228, - 1,229,1,229,1,229,1,230,1,230,1,230,3,230,5386,8,230,1,231,1,231, - 3,231,5390,8,231,1,231,3,231,5393,8,231,1,231,1,231,1,231,3,231, - 5398,8,231,1,231,1,231,1,231,1,231,3,231,5404,8,231,1,231,1,231, - 1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5415,8,231,1,231, - 1,231,3,231,5419,8,231,1,231,3,231,5422,8,231,1,231,1,231,3,231, - 5426,8,231,1,231,1,231,3,231,5430,8,231,1,231,3,231,5433,8,231,1, - 232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,3,233,5443,8,233,1, - 233,3,233,5446,8,233,1,234,1,234,3,234,5450,8,234,1,234,5,234,5453, - 8,234,10,234,12,234,5456,9,234,1,235,1,235,1,235,3,235,5461,8,235, - 1,235,3,235,5464,8,235,1,235,1,235,1,235,3,235,5469,8,235,1,235, - 3,235,5472,8,235,1,235,1,235,1,235,1,235,1,235,3,235,5479,8,235, - 3,235,5481,8,235,1,235,1,235,1,235,1,235,3,235,5487,8,235,1,235, - 1,235,3,235,5491,8,235,1,236,1,236,1,236,1,237,1,237,1,237,1,237, - 3,237,5500,8,237,1,237,4,237,5503,8,237,11,237,12,237,5504,3,237, - 5507,8,237,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,3,238, - 5517,8,238,1,238,3,238,5520,8,238,1,238,1,238,1,238,3,238,5525,8, - 238,1,239,1,239,1,239,1,239,1,239,1,239,3,239,5533,8,239,1,239,3, - 239,5536,8,239,1,239,4,239,5539,8,239,11,239,12,239,5540,3,239,5543, - 8,239,3,239,5545,8,239,1,240,1,240,1,240,1,240,3,240,5551,8,240, - 1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242,1,242,1,242,1,242, - 1,243,1,243,1,243,1,243,3,243,5568,8,243,1,243,1,243,5,243,5572, - 8,243,10,243,12,243,5575,9,243,1,244,1,244,1,244,1,244,1,244,1,244, - 1,244,1,244,1,244,1,244,3,244,5587,8,244,1,244,1,244,1,244,1,244, - 3,244,5593,8,244,1,244,1,244,3,244,5597,8,244,1,244,1,244,1,244, - 3,244,5602,8,244,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246, + 1,224,1,224,1,224,1,224,1,224,1,224,3,224,5335,8,224,1,225,1,225, + 3,225,5339,8,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225, + 3,225,5349,8,225,1,225,1,225,3,225,5353,8,225,1,225,1,225,1,225, + 1,225,3,225,5359,8,225,1,225,1,225,3,225,5363,8,225,5,225,5365,8, + 225,10,225,12,225,5368,9,225,1,225,3,225,5371,8,225,1,226,1,226, + 1,226,1,226,1,226,3,226,5378,8,226,1,227,1,227,1,227,3,227,5383, + 8,227,1,228,1,228,1,228,1,229,1,229,1,229,1,230,1,230,1,230,3,230, + 5394,8,230,1,231,1,231,3,231,5398,8,231,1,231,3,231,5401,8,231,1, + 231,1,231,1,231,3,231,5406,8,231,1,231,1,231,1,231,1,231,3,231,5412, + 8,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231, + 5423,8,231,1,231,1,231,3,231,5427,8,231,1,231,3,231,5430,8,231,1, + 231,1,231,3,231,5434,8,231,1,231,1,231,3,231,5438,8,231,1,231,3, + 231,5441,8,231,1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,3, + 233,5451,8,233,1,233,3,233,5454,8,233,1,234,1,234,3,234,5458,8,234, + 1,234,5,234,5461,8,234,10,234,12,234,5464,9,234,1,235,1,235,1,235, + 3,235,5469,8,235,1,235,3,235,5472,8,235,1,235,1,235,1,235,3,235, + 5477,8,235,1,235,3,235,5480,8,235,1,235,1,235,1,235,1,235,1,235, + 3,235,5487,8,235,3,235,5489,8,235,1,235,1,235,1,235,1,235,3,235, + 5495,8,235,1,235,1,235,3,235,5499,8,235,1,236,1,236,1,236,1,237, + 1,237,1,237,1,237,3,237,5508,8,237,1,237,4,237,5511,8,237,11,237, + 12,237,5512,3,237,5515,8,237,1,238,1,238,1,238,1,238,1,238,1,238, + 1,238,1,238,3,238,5525,8,238,1,238,3,238,5528,8,238,1,238,1,238, + 1,238,3,238,5533,8,238,1,239,1,239,1,239,1,239,1,239,1,239,3,239, + 5541,8,239,1,239,3,239,5544,8,239,1,239,4,239,5547,8,239,11,239, + 12,239,5548,3,239,5551,8,239,3,239,5553,8,239,1,240,1,240,1,240, + 1,240,3,240,5559,8,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242, + 1,242,1,242,1,242,1,242,1,243,1,243,1,243,1,243,3,243,5576,8,243, + 1,243,1,243,5,243,5580,8,243,10,243,12,243,5583,9,243,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5595,8,244, + 1,244,1,244,1,244,1,244,3,244,5601,8,244,1,244,1,244,3,244,5605, + 8,244,1,244,1,244,1,244,3,244,5610,8,244,1,245,1,245,1,245,1,245, + 1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5632, - 8,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,3,246,5647,8,246,1,246,1,246,1,246,3,246,5652, - 8,246,1,247,1,247,3,247,5656,8,247,1,247,1,247,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,248,1,248,3,248,5669,8,248,1,248,1,248, - 3,248,5673,8,248,3,248,5675,8,248,1,248,1,248,1,248,1,248,1,248, - 5,248,5682,8,248,10,248,12,248,5685,9,248,1,248,1,248,1,248,3,248, - 5690,8,248,3,248,5692,8,248,1,249,1,249,3,249,5696,8,249,1,249,3, - 249,5699,8,249,1,249,3,249,5702,8,249,1,249,3,249,5705,8,249,1,249, - 3,249,5708,8,249,3,249,5710,8,249,1,249,3,249,5713,8,249,1,250,1, - 250,3,250,5717,8,250,1,250,1,250,1,250,1,250,5,250,5723,8,250,10, - 250,12,250,5726,9,250,1,250,1,250,3,250,5730,8,250,1,250,3,250,5733, - 8,250,1,251,1,251,1,252,1,252,3,252,5739,8,252,1,252,1,252,3,252, - 5743,8,252,1,253,1,253,3,253,5747,8,253,1,253,1,253,1,253,3,253, - 5752,8,253,3,253,5754,8,253,1,254,1,254,3,254,5758,8,254,1,255,1, - 255,3,255,5762,8,255,1,256,1,256,1,256,5,256,5767,8,256,10,256,12, - 256,5770,9,256,1,257,1,257,1,257,3,257,5775,8,257,1,257,1,257,3, - 257,5779,8,257,3,257,5781,8,257,3,257,5783,8,257,1,257,1,257,1,258, - 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5796,8,258, - 1,259,1,259,1,259,1,259,5,259,5802,8,259,10,259,12,259,5805,9,259, - 1,259,1,259,1,260,1,260,1,260,3,260,5812,8,260,1,260,1,260,1,260, - 1,261,1,261,1,261,1,261,5,261,5821,8,261,10,261,12,261,5824,9,261, - 1,261,1,261,1,262,1,262,1,262,1,262,1,262,3,262,5833,8,262,1,263, - 1,263,1,263,3,263,5838,8,263,1,263,1,263,3,263,5842,8,263,1,263, - 1,263,3,263,5846,8,263,1,263,1,263,1,263,1,263,1,263,3,263,5853, - 8,263,1,263,3,263,5856,8,263,3,263,5858,8,263,1,264,1,264,1,264, - 1,264,1,265,1,265,3,265,5866,8,265,1,265,1,265,3,265,5870,8,265, - 1,266,3,266,5873,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5880, - 8,266,1,266,1,266,1,266,1,266,1,266,3,266,5887,8,266,1,266,1,266, - 1,266,3,266,5892,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5899, - 8,266,1,266,3,266,5902,8,266,3,266,5904,8,266,1,266,3,266,5907,8, - 266,1,267,1,267,1,267,1,267,3,267,5913,8,267,1,267,1,267,1,267,3, - 267,5918,8,267,1,267,1,267,3,267,5922,8,267,1,268,1,268,1,268,5, - 268,5927,8,268,10,268,12,268,5930,9,268,1,269,1,269,1,269,1,270, - 1,270,1,270,1,271,3,271,5939,8,271,1,271,1,271,1,271,1,271,1,271, - 3,271,5946,8,271,1,271,3,271,5949,8,271,1,271,3,271,5952,8,271,1, - 272,1,272,3,272,5956,8,272,1,272,1,272,1,272,1,272,1,272,1,272,1, - 272,1,272,1,272,3,272,5967,8,272,1,272,3,272,5970,8,272,1,272,3, - 272,5973,8,272,1,272,3,272,5976,8,272,1,273,3,273,5979,8,273,1,273, - 1,273,1,273,1,273,1,273,3,273,5986,8,273,1,273,3,273,5989,8,273, - 1,273,3,273,5992,8,273,1,274,1,274,1,274,5,274,5997,8,274,10,274, - 12,274,6000,9,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, - 1,275,3,275,6011,8,275,1,275,1,275,1,275,1,275,1,275,3,275,6018, - 8,275,3,275,6020,8,275,1,276,1,276,1,276,3,276,6025,8,276,1,276, - 1,276,1,276,5,276,6030,8,276,10,276,12,276,6033,9,276,1,276,1,276, - 1,276,3,276,6038,8,276,1,276,1,276,1,276,1,277,1,277,3,277,6045, - 8,277,1,278,1,278,1,278,3,278,6050,8,278,1,278,1,278,1,279,3,279, - 6055,8,279,1,279,1,279,3,279,6059,8,279,1,279,1,279,3,279,6063,8, - 279,1,279,1,279,3,279,6067,8,279,3,279,6069,8,279,1,280,1,280,3, - 280,6073,8,280,1,281,1,281,3,281,6077,8,281,1,281,3,281,6080,8,281, - 1,281,3,281,6083,8,281,3,281,6085,8,281,1,281,1,281,1,281,1,281, - 1,281,1,281,1,281,1,281,3,281,6095,8,281,3,281,6097,8,281,1,281, - 1,281,1,281,3,281,6102,8,281,5,281,6104,8,281,10,281,12,281,6107, - 9,281,1,282,1,282,3,282,6111,8,282,1,283,1,283,3,283,6115,8,283, - 1,283,1,283,1,283,5,283,6120,8,283,10,283,12,283,6123,9,283,1,284, - 1,284,3,284,6127,8,284,1,284,1,284,3,284,6131,8,284,1,284,3,284, - 6134,8,284,1,284,1,284,1,284,1,284,3,284,6140,8,284,1,284,3,284, - 6143,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,286, - 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,6162,8,286, - 1,286,1,286,1,286,1,287,1,287,3,287,6169,8,287,1,287,1,287,3,287, - 6173,8,287,1,288,3,288,6176,8,288,1,288,1,288,3,288,6180,8,288,1, - 288,1,288,3,288,6184,8,288,1,288,3,288,6187,8,288,1,288,3,288,6190, - 8,288,1,289,1,289,1,289,3,289,6195,8,289,1,290,1,290,1,290,1,290, - 1,290,5,290,6202,8,290,10,290,12,290,6205,9,290,1,291,1,291,1,291, - 1,291,3,291,6211,8,291,1,291,1,291,3,291,6215,8,291,1,292,1,292, - 3,292,6219,8,292,1,292,1,292,3,292,6223,8,292,1,292,3,292,6226,8, - 292,3,292,6228,8,292,1,293,1,293,1,293,3,293,6233,8,293,1,293,1, - 293,3,293,6237,8,293,1,294,1,294,1,294,3,294,6242,8,294,1,294,1, - 294,1,294,1,294,3,294,6248,8,294,1,295,1,295,1,295,1,295,1,295,3, - 295,6255,8,295,1,296,1,296,1,296,3,296,6260,8,296,1,297,1,297,1, - 297,3,297,6265,8,297,1,297,1,297,1,298,1,298,1,298,5,298,6272,8, - 298,10,298,12,298,6275,9,298,1,299,1,299,1,299,1,299,3,299,6281, - 8,299,1,299,1,299,1,299,1,299,5,299,6287,8,299,10,299,12,299,6290, - 9,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,3,299,6300, - 8,299,1,300,1,300,1,300,3,300,6305,8,300,1,300,1,300,3,300,6309, - 8,300,1,300,3,300,6312,8,300,1,300,1,300,3,300,6316,8,300,1,300, - 1,300,1,300,3,300,6321,8,300,4,300,6323,8,300,11,300,12,300,6324, - 1,300,1,300,1,300,3,300,6330,8,300,1,301,1,301,1,301,1,301,5,301, - 6336,8,301,10,301,12,301,6339,9,301,1,302,1,302,1,302,1,303,1,303, - 1,303,5,303,6347,8,303,10,303,12,303,6350,9,303,1,304,1,304,3,304, - 6354,8,304,1,304,1,304,3,304,6358,8,304,1,304,3,304,6361,8,304,1, - 304,3,304,6364,8,304,3,304,6366,8,304,1,304,3,304,6369,8,304,1,304, - 3,304,6372,8,304,1,304,3,304,6375,8,304,1,304,1,304,3,304,6379,8, - 304,1,304,1,304,3,304,6383,8,304,1,304,1,304,3,304,6387,8,304,3, - 304,6389,8,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,3,304,6398, - 8,304,1,304,1,304,1,304,3,304,6403,8,304,1,304,1,304,1,304,1,304, - 3,304,6409,8,304,1,304,1,304,3,304,6413,8,304,3,304,6415,8,304,1, - 304,1,304,1,304,1,304,1,304,3,304,6422,8,304,1,304,1,304,1,304,3, - 304,6427,8,304,1,304,1,304,1,304,1,304,5,304,6433,8,304,10,304,12, - 304,6436,9,304,1,305,3,305,6439,8,305,1,305,1,305,1,305,1,305,1, - 305,3,305,6446,8,305,1,306,1,306,1,306,3,306,6451,8,306,1,306,3, - 306,6454,8,306,1,306,1,306,1,306,1,306,3,306,6460,8,306,1,307,1, - 307,3,307,6464,8,307,1,308,1,308,1,308,1,308,3,308,6470,8,308,1, - 309,1,309,1,309,1,309,1,309,1,309,1,309,3,309,6479,8,309,1,309,1, - 309,1,309,1,309,3,309,6485,8,309,3,309,6487,8,309,1,310,1,310,1, - 310,3,310,6492,8,310,1,310,3,310,6495,8,310,1,310,1,310,1,310,1, - 310,1,310,1,310,1,310,3,310,6504,8,310,1,310,1,310,1,310,1,310,1, - 310,3,310,6511,8,310,3,310,6513,8,310,1,311,1,311,1,311,5,311,6518, - 8,311,10,311,12,311,6521,9,311,1,312,1,312,3,312,6525,8,312,1,312, - 3,312,6528,8,312,1,313,1,313,1,313,1,313,1,313,1,313,1,313,1,313, - 3,313,6538,8,313,1,314,1,314,1,314,1,314,1,314,1,314,1,314,5,314, - 6547,8,314,10,314,12,314,6550,9,314,1,314,1,314,3,314,6554,8,314, - 1,314,1,314,3,314,6558,8,314,1,315,1,315,1,315,1,315,1,315,1,315, - 3,315,6566,8,315,1,316,1,316,1,316,1,317,1,317,1,317,1,317,1,317, - 3,317,6576,8,317,1,318,1,318,1,318,5,318,6581,8,318,10,318,12,318, - 6584,9,318,1,319,1,319,1,319,3,319,6589,8,319,1,320,1,320,1,320, - 1,320,1,320,1,320,1,320,5,320,6598,8,320,10,320,12,320,6601,9,320, - 1,320,1,320,1,320,3,320,6606,8,320,1,320,1,320,1,320,1,320,1,320, - 1,320,5,320,6614,8,320,10,320,12,320,6617,9,320,1,320,1,320,1,321, - 1,321,1,321,1,321,3,321,6625,8,321,1,321,1,321,3,321,6629,8,321, - 1,321,4,321,6632,8,321,11,321,12,321,6633,3,321,6636,8,321,1,321, - 1,321,3,321,6640,8,321,1,322,1,322,1,322,1,322,1,322,1,322,3,322, - 6648,8,322,1,323,3,323,6651,8,323,1,323,1,323,1,323,3,323,6656,8, - 323,1,323,5,323,6659,8,323,10,323,12,323,6662,9,323,1,323,1,323, - 1,323,1,323,3,323,6668,8,323,3,323,6670,8,323,1,323,1,323,1,323, - 1,323,3,323,6676,8,323,1,324,1,324,3,324,6680,8,324,1,324,3,324, - 6683,8,324,1,324,1,324,1,324,3,324,6688,8,324,1,324,3,324,6691,8, - 324,3,324,6693,8,324,1,325,1,325,1,325,1,325,3,325,6699,8,325,1, - 326,1,326,1,326,1,326,1,326,1,326,1,326,3,326,6708,8,326,1,326,1, - 326,1,326,1,326,3,326,6714,8,326,1,326,3,326,6717,8,326,1,327,1, - 327,1,327,1,327,1,328,1,328,3,328,6725,8,328,1,328,3,328,6728,8, - 328,1,329,1,329,3,329,6732,8,329,1,329,1,329,1,329,1,329,3,329,6738, - 8,329,3,329,6740,8,329,1,329,3,329,6743,8,329,1,330,1,330,3,330, - 6747,8,330,1,330,1,330,1,330,3,330,6752,8,330,1,331,1,331,1,331, - 1,331,1,331,3,331,6759,8,331,1,331,1,331,1,331,1,331,1,331,3,331, - 6766,8,331,3,331,6768,8,331,1,331,1,331,1,331,1,331,3,331,6774,8, - 331,3,331,6776,8,331,1,331,1,331,1,331,3,331,6781,8,331,3,331,6783, - 8,331,1,332,1,332,3,332,6787,8,332,1,333,1,333,1,334,1,334,1,335, - 1,335,1,335,3,335,6796,8,335,1,335,1,335,3,335,6800,8,335,1,335, - 1,335,1,335,1,335,1,335,1,335,5,335,6808,8,335,10,335,12,335,6811, - 9,335,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336, - 1,336,3,336,6824,8,336,1,336,3,336,6827,8,336,1,336,1,336,1,336, - 1,336,1,336,1,336,3,336,6835,8,336,1,336,1,336,1,336,1,336,1,336, - 5,336,6842,8,336,10,336,12,336,6845,9,336,1,336,1,336,1,336,3,336, - 6850,8,336,1,336,1,336,1,336,3,336,6855,8,336,1,336,1,336,1,336, - 1,336,1,336,1,336,3,336,6863,8,336,3,336,6865,8,336,1,336,1,336, - 1,336,3,336,6870,8,336,1,336,1,336,3,336,6874,8,336,1,336,1,336, - 1,336,3,336,6879,8,336,1,336,1,336,1,336,3,336,6884,8,336,1,337, - 1,337,1,337,1,337,3,337,6890,8,337,1,337,1,337,1,337,1,337,1,337, - 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,5,337,6906, - 8,337,10,337,12,337,6909,9,337,1,338,1,338,1,338,1,338,1,338,1,338, - 3,338,6917,8,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,3,338,6932,8,338,1,338,1,338,1,338, - 3,338,6937,8,338,1,338,3,338,6940,8,338,1,338,1,338,1,338,1,338, - 3,338,6946,8,338,1,338,1,338,1,338,3,338,6951,8,338,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,3,338,6964, - 8,338,1,338,4,338,6967,8,338,11,338,12,338,6968,1,338,1,338,3,338, - 6973,8,338,1,338,1,338,1,338,1,338,1,338,3,338,6980,8,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,3,338,6999,8,338,1,338,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,1,338,3,338,7011,8,338,1,338, - 1,338,1,338,3,338,7016,8,338,1,338,1,338,1,338,1,338,1,338,1,338, - 3,338,7024,8,338,5,338,7026,8,338,10,338,12,338,7029,9,338,1,339, - 1,339,1,339,1,339,1,339,1,339,3,339,7037,8,339,1,339,3,339,7040, - 8,339,1,339,1,339,1,339,3,339,7045,8,339,1,339,1,339,1,339,3,339, - 7050,8,339,1,339,3,339,7053,8,339,1,339,1,339,1,340,1,340,1,340, - 1,340,1,340,1,340,1,340,3,340,7064,8,340,1,340,1,340,1,340,1,340, - 1,340,1,340,3,340,7072,8,340,1,340,1,340,1,340,3,340,7077,8,340, - 3,340,7079,8,340,1,340,3,340,7082,8,340,1,341,1,341,3,341,7086,8, - 341,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342, - 7097,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342, - 7118,8,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7126,8,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 3,342,7139,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 3,342,7149,8,342,1,342,1,342,1,342,1,342,3,342,7155,8,342,1,342, - 1,342,1,342,1,342,3,342,7161,8,342,1,342,3,342,7164,8,342,1,342, - 3,342,7167,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,3,342,7193,8,342,3,342,7195,8,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7216,8,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,3,342,7226,8,342, - 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, - 3,342,7239,8,342,1,342,1,342,1,342,3,342,7244,8,342,1,342,1,342, - 3,342,7248,8,342,3,342,7250,8,342,1,342,1,342,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,3,342,7262,8,342,1,343,1,343,1,343, - 5,343,7267,8,343,10,343,12,343,7270,9,343,1,344,1,344,1,344,3,344, - 7275,8,344,1,345,1,345,1,346,1,346,3,346,7281,8,346,1,346,1,346, - 3,346,7285,8,346,1,347,1,347,1,347,1,348,1,348,1,348,1,348,5,348, - 7294,8,348,10,348,12,348,7297,9,348,1,349,1,349,1,349,1,350,1,350, - 1,350,1,350,1,351,1,351,1,351,3,351,7309,8,351,1,352,1,352,3,352, - 7313,8,352,1,352,1,352,1,352,3,352,7318,8,352,1,352,3,352,7321,8, - 352,1,352,3,352,7324,8,352,1,352,1,352,1,353,1,353,1,353,1,353,1, - 353,3,353,7333,8,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1, - 353,1,353,3,353,7344,8,353,3,353,7346,8,353,1,354,1,354,3,354,7350, - 8,354,1,354,1,354,1,354,3,354,7355,8,354,1,355,1,355,1,355,1,355, - 1,355,1,355,1,355,3,355,7364,8,355,1,356,1,356,1,356,3,356,7369, - 8,356,1,356,1,356,1,357,1,357,1,358,1,358,3,358,7377,8,358,1,359, - 1,359,1,360,1,360,1,360,1,360,1,360,1,360,3,360,7387,8,360,1,361, - 1,361,1,361,1,361,1,361,1,361,3,361,7395,8,361,1,362,1,362,3,362, - 7399,8,362,1,362,3,362,7402,8,362,1,363,1,363,1,363,5,363,7407,8, - 363,10,363,12,363,7410,9,363,1,364,1,364,1,364,1,364,1,364,3,364, - 7417,8,364,1,365,1,365,3,365,7421,8,365,1,366,1,366,1,366,5,366, - 7426,8,366,10,366,12,366,7429,9,366,1,367,1,367,1,367,1,367,1,367, - 3,367,7436,8,367,3,367,7438,8,367,1,368,1,368,1,368,1,368,1,368, - 5,368,7445,8,368,10,368,12,368,7448,9,368,3,368,7450,8,368,1,368, - 1,368,1,369,1,369,1,369,1,369,1,369,1,369,1,369,1,369,3,369,7462, - 8,369,1,370,1,370,1,371,1,371,1,371,1,371,1,371,3,371,7471,8,371, - 1,371,1,371,1,371,1,371,1,371,3,371,7478,8,371,1,371,1,371,1,371, - 1,371,1,371,1,371,1,371,3,371,7487,8,371,1,372,1,372,1,372,1,372, - 1,372,1,373,1,373,1,373,3,373,7497,8,373,1,373,1,373,1,373,3,373, - 7502,8,373,1,373,1,373,3,373,7506,8,373,3,373,7508,8,373,1,373,3, - 373,7511,8,373,1,374,4,374,7514,8,374,11,374,12,374,7515,1,375,5, - 375,7519,8,375,10,375,12,375,7522,9,375,1,376,1,376,1,376,5,376, - 7527,8,376,10,376,12,376,7530,9,376,1,377,1,377,1,377,1,377,1,377, - 3,377,7537,8,377,1,377,3,377,7540,8,377,1,378,1,378,1,378,5,378, - 7545,8,378,10,378,12,378,7548,9,378,1,379,1,379,1,379,5,379,7553, - 8,379,10,379,12,379,7556,9,379,1,380,1,380,1,380,5,380,7561,8,380, - 10,380,12,380,7564,9,380,1,381,1,381,1,381,5,381,7569,8,381,10,381, - 12,381,7572,9,381,1,382,1,382,1,383,1,383,1,384,1,384,1,385,1,385, - 1,386,1,386,1,387,1,387,1,388,1,388,3,388,7588,8,388,1,389,1,389, - 1,389,5,389,7593,8,389,10,389,12,389,7596,9,389,1,390,1,390,1,390, - 5,390,7601,8,390,10,390,12,390,7604,9,390,1,391,1,391,1,392,1,392, - 1,393,1,393,1,394,1,394,1,395,1,395,1,396,1,396,1,396,1,396,3,396, - 7620,8,396,1,397,1,397,1,397,1,397,3,397,7626,8,397,1,398,1,398, - 1,398,1,398,3,398,7632,8,398,1,399,1,399,1,399,1,400,1,400,1,401, - 1,401,1,401,1,401,3,401,7643,8,401,1,402,1,402,1,402,1,402,3,402, - 7649,8,402,1,403,1,403,1,403,3,403,7654,8,403,1,404,1,404,1,404, - 1,404,5,404,7660,8,404,10,404,12,404,7663,9,404,1,404,1,404,3,404, - 7667,8,404,1,405,3,405,7670,8,405,1,405,1,405,1,406,1,406,1,406, - 1,406,1,406,3,406,7679,8,406,1,407,1,407,1,407,5,407,7684,8,407, - 10,407,12,407,7687,9,407,1,408,1,408,3,408,7691,8,408,1,409,1,409, - 3,409,7695,8,409,1,410,1,410,1,410,3,410,7700,8,410,1,411,1,411, - 1,411,1,411,3,411,7706,8,411,1,412,1,412,1,412,3,412,7711,8,412, - 1,412,1,412,1,412,1,412,1,412,1,412,3,412,7719,8,412,1,413,1,413, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,3,414,7774,8,414,1,415, - 1,415,1,416,1,416,1,417,3,417,7781,8,417,1,417,1,417,1,417,1,417, - 4,417,7787,8,417,11,417,12,417,7788,3,417,7791,8,417,3,417,7793, - 8,417,1,417,1,417,5,417,7797,8,417,10,417,12,417,7800,9,417,1,417, - 3,417,7803,8,417,1,417,1,417,3,417,7807,8,417,1,418,1,418,1,418, - 1,418,1,419,1,419,1,419,1,419,1,419,3,419,7818,8,419,1,419,3,419, - 7821,8,419,1,419,1,419,3,419,7825,8,419,1,419,1,419,3,419,7829,8, - 419,1,419,1,419,3,419,7833,8,419,1,419,3,419,7836,8,419,1,419,3, - 419,7839,8,419,1,419,3,419,7842,8,419,1,419,1,419,1,419,1,419,1, - 419,5,419,7849,8,419,10,419,12,419,7852,9,419,1,419,1,419,3,419, - 7856,8,419,1,419,1,419,3,419,7860,8,419,1,419,1,419,1,420,1,420, - 1,420,1,421,1,421,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422, - 1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422, - 1,422,1,422,1,422,1,422,1,422,3,422,7893,8,422,1,423,1,423,1,423, - 1,423,1,424,1,424,1,424,1,424,3,424,7903,8,424,1,424,1,424,3,424, - 7907,8,424,1,424,1,424,1,424,1,424,3,424,7913,8,424,1,424,1,424, - 1,424,3,424,7918,8,424,1,425,1,425,1,425,1,425,1,425,1,426,1,426, - 3,426,7927,8,426,1,426,1,426,1,426,1,426,5,426,7933,8,426,10,426, - 12,426,7936,9,426,1,426,1,426,1,427,1,427,1,427,1,427,1,428,1,428, - 3,428,7946,8,428,1,428,1,428,1,428,1,428,5,428,7952,8,428,10,428, - 12,428,7955,9,428,1,429,1,429,1,429,1,429,5,429,7961,8,429,10,429, - 12,429,7964,9,429,1,429,1,429,1,429,1,429,5,429,7970,8,429,10,429, - 12,429,7973,9,429,5,429,7975,8,429,10,429,12,429,7978,9,429,1,429, - 3,429,7981,8,429,1,429,1,429,1,429,1,429,1,430,1,430,5,430,7989, - 8,430,10,430,12,430,7992,9,430,1,431,1,431,3,431,7996,8,431,1,431, - 1,431,1,431,1,431,5,431,8002,8,431,10,431,12,431,8005,9,431,4,431, - 8007,8,431,11,431,12,431,8008,1,431,3,431,8012,8,431,1,431,1,431, - 1,431,1,431,1,432,3,432,8019,8,432,1,432,1,432,1,432,1,432,3,432, - 8025,8,432,1,432,1,432,1,433,1,433,1,433,1,433,3,433,8033,8,433, - 1,433,1,433,1,433,1,433,1,433,1,433,3,433,8041,8,433,1,433,3,433, - 8044,8,433,1,433,1,433,1,433,1,433,1,433,3,433,8051,8,433,3,433, - 8053,8,433,1,434,3,434,8056,8,434,1,434,1,434,1,434,1,434,3,434, - 8062,8,434,1,434,1,434,1,434,1,434,1,434,1,435,1,435,3,435,8071, - 8,435,1,435,1,435,3,435,8075,8,435,1,435,1,435,1,436,1,436,1,436, - 1,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436,8089,8,436,1,436, - 3,436,8092,8,436,3,436,8094,8,436,1,436,1,436,1,437,1,437,3,437, - 8100,8,437,1,437,1,437,1,437,1,437,1,437,1,437,4,437,8108,8,437, - 11,437,12,437,8109,3,437,8112,8,437,3,437,8114,8,437,1,437,1,437, - 1,437,1,437,5,437,8120,8,437,10,437,12,437,8123,9,437,3,437,8125, - 8,437,1,437,3,437,8128,8,437,1,438,1,438,1,438,1,438,1,439,1,439, - 1,439,1,439,3,439,8138,8,439,1,439,1,439,1,440,1,440,5,440,8144, - 8,440,10,440,12,440,8147,9,440,1,440,1,440,1,440,3,440,8152,8,440, - 1,440,1,440,1,441,1,441,3,441,8158,8,441,1,441,1,441,1,442,1,442, - 1,442,3,442,8165,8,442,1,442,1,442,3,442,8169,8,442,1,442,1,442, - 3,442,8173,8,442,1,442,3,442,8176,8,442,1,442,3,442,8179,8,442,1, - 442,1,442,1,443,1,443,3,443,8185,8,443,1,443,1,443,1,444,1,444,1, - 444,3,444,8192,8,444,1,444,3,444,8195,8,444,1,444,1,444,1,444,1, - 444,1,444,1,444,3,444,8203,8,444,3,444,8205,8,444,1,444,1,444,1, - 444,1,444,1,444,5,444,8212,8,444,10,444,12,444,8215,9,444,1,444, - 1,444,3,444,8219,8,444,3,444,8221,8,444,1,444,1,444,1,445,1,445, - 1,445,3,445,8228,8,445,1,445,1,445,1,446,1,446,3,446,8234,8,446, - 1,446,3,446,8237,8,446,1,446,1,446,1,446,1,446,1,446,1,447,1,447, - 1,447,1,447,1,447,3,447,8249,8,447,1,447,1,447,1,447,1,447,1,447, - 3,447,8256,8,447,3,447,8258,8,447,1,448,1,448,3,448,8262,8,448,1, - 448,1,448,1,448,1,449,3,449,8268,8,449,1,449,1,449,1,449,3,449,8273, - 8,449,1,449,1,449,3,449,8277,8,449,1,449,3,449,8280,8,449,1,449, - 3,449,8283,8,449,1,449,1,449,1,449,1,449,1,449,4,449,8290,8,449, - 11,449,12,449,8291,1,449,3,449,8295,8,449,1,450,3,450,8298,8,450, - 1,450,1,450,3,450,8302,8,450,1,450,1,450,3,450,8306,8,450,3,450, - 8308,8,450,1,450,3,450,8311,8,450,1,450,3,450,8314,8,450,1,451,1, - 451,1,451,1,451,3,451,8320,8,451,1,451,1,451,1,451,1,451,1,451,3, - 451,8327,8,451,1,451,1,451,1,451,1,451,1,451,3,451,8334,8,451,1, - 451,1,451,1,451,1,451,3,451,8340,8,451,3,451,8342,8,451,1,452,1, - 452,3,452,8346,8,452,1,452,1,452,1,452,3,452,8351,8,452,1,452,1, - 452,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453, - 1,453,1,453,5,453,8367,8,453,10,453,12,453,8370,9,453,1,453,1,453, - 4,453,8374,8,453,11,453,12,453,8375,1,454,1,454,1,454,1,454,1,454, - 5,454,8383,8,454,10,454,12,454,8386,9,454,1,454,1,454,1,454,1,454, - 3,454,8392,8,454,1,455,1,455,3,455,8396,8,455,1,456,1,456,1,456, - 1,456,1,457,1,457,1,457,1,458,1,458,1,458,3,458,8408,8,458,1,458, - 3,458,8411,8,458,1,458,1,458,1,459,1,459,1,459,1,459,1,459,1,459, - 1,459,1,459,1,459,3,459,8424,8,459,1,459,3,459,8427,8,459,1,460, - 1,460,3,460,8431,8,460,1,461,1,461,1,461,1,461,1,461,5,461,8438, - 8,461,10,461,12,461,8441,9,461,1,461,1,461,5,461,8445,8,461,10,461, - 12,461,8448,9,461,4,461,8450,8,461,11,461,12,461,8451,1,462,1,462, - 1,462,3,462,8457,8,462,1,463,1,463,3,463,8461,8,463,1,464,3,464, - 8464,8,464,1,464,3,464,8467,8,464,1,464,3,464,8470,8,464,1,464,3, - 464,8473,8,464,1,464,3,464,8476,8,464,1,464,3,464,8479,8,464,1,464, - 3,464,8482,8,464,1,464,0,3,670,674,676,465,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,120,122,124,126,128,130,132,134, - 136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166, - 168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198, - 200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230, - 232,234,236,238,240,242,244,246,248,250,252,254,256,258,260,262, - 264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294, - 296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326, - 328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358, - 360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390, - 392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422, - 424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454, - 456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486, - 488,490,492,494,496,498,500,502,504,506,508,510,512,514,516,518, - 520,522,524,526,528,530,532,534,536,538,540,542,544,546,548,550, - 552,554,556,558,560,562,564,566,568,570,572,574,576,578,580,582, - 584,586,588,590,592,594,596,598,600,602,604,606,608,610,612,614, - 616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646, - 648,650,652,654,656,658,660,662,664,666,668,670,672,674,676,678, - 680,682,684,686,688,690,692,694,696,698,700,702,704,706,708,710, - 712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742, - 744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774, - 776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806, - 808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838, - 840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870, - 872,874,876,878,880,882,884,886,888,890,892,894,896,898,900,902, - 904,906,908,910,912,914,916,918,920,922,924,926,928,0,119,2,0,195, - 195,364,364,2,0,66,66,318,318,2,0,99,99,318,318,2,0,134,134,318, - 318,1,0,529,531,2,0,10,10,94,94,2,0,133,133,191,191,2,0,254,254, - 332,332,2,0,162,162,363,363,2,0,180,180,221,221,5,0,30,30,288,288, - 329,329,352,352,354,354,2,0,109,109,532,532,2,0,158,158,277,277, - 2,0,367,367,439,439,2,0,139,139,312,312,2,0,191,191,333,333,2,0, - 313,313,333,333,2,0,150,150,315,315,2,0,64,64,94,94,4,0,78,78,183, - 183,197,197,298,298,1,0,549,551,2,0,213,213,254,254,2,0,352,352, - 354,354,2,0,200,200,224,224,9,0,30,30,160,160,165,165,179,179,219, - 219,227,227,342,342,345,345,438,438,3,0,113,113,284,284,336,336, - 2,0,53,53,78,78,2,0,105,105,379,379,2,0,260,260,262,262,3,0,173, - 173,260,260,262,262,1,0,12,13,2,0,64,64,375,375,2,0,156,156,206, - 206,2,0,189,189,360,360,2,0,215,215,373,373,3,0,133,133,191,191, - 333,333,5,0,30,30,88,88,182,182,241,241,369,369,2,0,9,9,94,94,2, - 0,92,92,226,226,1,0,448,449,2,0,92,92,414,414,2,0,341,341,414,414, - 4,0,163,163,185,185,283,283,353,353,2,0,135,135,145,145,2,0,211, - 211,278,278,3,0,321,321,357,357,445,445,3,0,66,66,99,99,318,318, - 5,0,108,108,168,168,226,226,328,328,342,342,2,0,167,167,314,314, - 2,0,61,61,265,265,4,0,207,207,249,249,268,268,293,293,2,0,130,130, - 307,307,2,0,64,64,68,68,10,0,46,46,88,88,182,182,202,202,241,241, - 352,352,354,354,357,358,369,369,521,523,5,0,212,212,329,329,350, - 350,455,455,457,457,5,0,212,212,329,329,350,350,361,361,455,456, - 2,0,37,37,55,55,2,0,207,207,249,249,2,0,10,10,53,53,2,0,181,181, - 243,243,2,0,170,170,320,320,2,0,141,141,223,223,5,0,108,108,168, - 168,189,189,342,342,360,360,2,0,226,226,328,328,2,0,163,163,185, - 185,2,0,186,186,193,193,4,0,88,88,182,182,241,241,369,369,2,0,137, - 137,242,242,2,0,161,161,319,319,4,0,129,129,161,161,319,319,454, - 454,2,0,356,356,380,380,2,0,81,81,382,382,2,0,151,151,254,254,2, - 0,133,133,138,138,1,0,31,32,2,0,128,128,547,547,2,0,60,60,96,96, - 2,0,99,99,349,349,2,0,131,131,414,414,2,0,201,201,334,334,3,0,59, - 59,70,70,97,97,2,0,30,30,56,56,1,0,527,528,2,0,207,207,268,268,2, - 0,320,320,414,414,2,0,574,574,576,576,1,0,468,469,4,0,113,113,115, - 115,119,119,126,126,2,0,360,360,477,477,2,0,394,395,409,409,2,0, - 391,392,406,406,1,0,391,392,1,0,418,419,5,0,10,10,16,17,21,21,23, - 23,25,25,3,0,9,9,14,14,27,27,2,0,98,98,396,396,2,0,50,51,75,76,2, - 0,41,41,420,420,3,0,39,39,73,73,95,95,4,0,393,393,399,399,404,404, - 425,425,2,0,292,292,347,347,2,0,166,166,188,188,2,0,304,304,450, - 450,3,0,299,299,320,320,481,481,2,0,208,208,289,289,3,0,30,30,34, - 34,90,90,6,0,9,10,12,17,21,21,23,23,25,25,27,27,2,0,114,114,120, - 120,2,0,20,20,22,22,1,0,483,486,17,0,53,53,116,116,123,124,129,228, - 238,386,433,452,455,469,471,471,473,473,475,475,477,488,490,502, - 504,504,506,518,520,520,524,524,547,548,3,0,106,123,125,128,472, - 472,4,0,30,52,54,70,72,105,454,454,2,0,62,62,116,116,2,0,10,10,20, - 20,2,0,434,434,501,501,2,0,167,167,507,507,1,0,512,517,2,0,144,144, - 210,210,9922,0,933,1,0,0,0,2,938,1,0,0,0,4,1062,1,0,0,0,6,1064,1, - 0,0,0,8,1067,1,0,0,0,10,1117,1,0,0,0,12,1127,1,0,0,0,14,1129,1,0, - 0,0,16,1141,1,0,0,0,18,1153,1,0,0,0,20,1164,1,0,0,0,22,1198,1,0, - 0,0,24,1242,1,0,0,0,26,1244,1,0,0,0,28,1256,1,0,0,0,30,1263,1,0, - 0,0,32,1282,1,0,0,0,34,1290,1,0,0,0,36,1292,1,0,0,0,38,1306,1,0, - 0,0,40,1310,1,0,0,0,42,1347,1,0,0,0,44,1349,1,0,0,0,46,1357,1,0, - 0,0,48,1367,1,0,0,0,50,1374,1,0,0,0,52,1382,1,0,0,0,54,1388,1,0, - 0,0,56,1404,1,0,0,0,58,1408,1,0,0,0,60,1410,1,0,0,0,62,1422,1,0, - 0,0,64,1427,1,0,0,0,66,1432,1,0,0,0,68,1434,1,0,0,0,70,1446,1,0, - 0,0,72,1454,1,0,0,0,74,1456,1,0,0,0,76,1576,1,0,0,0,78,1578,1,0, - 0,0,80,1592,1,0,0,0,82,1594,1,0,0,0,84,1831,1,0,0,0,86,1838,1,0, - 0,0,88,1840,1,0,0,0,90,1842,1,0,0,0,92,1845,1,0,0,0,94,1856,1,0, - 0,0,96,1859,1,0,0,0,98,1889,1,0,0,0,100,1891,1,0,0,0,102,1932,1, - 0,0,0,104,1934,1,0,0,0,106,1988,1,0,0,0,108,2034,1,0,0,0,110,2055, - 1,0,0,0,112,2057,1,0,0,0,114,2074,1,0,0,0,116,2155,1,0,0,0,118,2157, - 1,0,0,0,120,2168,1,0,0,0,122,2191,1,0,0,0,124,2209,1,0,0,0,126,2211, - 1,0,0,0,128,2246,1,0,0,0,130,2339,1,0,0,0,132,2344,1,0,0,0,134,2346, - 1,0,0,0,136,2444,1,0,0,0,138,2446,1,0,0,0,140,2450,1,0,0,0,142,2461, - 1,0,0,0,144,2469,1,0,0,0,146,2472,1,0,0,0,148,2475,1,0,0,0,150,2493, - 1,0,0,0,152,2495,1,0,0,0,154,2499,1,0,0,0,156,2512,1,0,0,0,158,2514, - 1,0,0,0,160,2519,1,0,0,0,162,2539,1,0,0,0,164,2547,1,0,0,0,166,2554, - 1,0,0,0,168,2556,1,0,0,0,170,2565,1,0,0,0,172,2568,1,0,0,0,174,2572, - 1,0,0,0,176,2576,1,0,0,0,178,2601,1,0,0,0,180,2611,1,0,0,0,182,2625, - 1,0,0,0,184,2641,1,0,0,0,186,2647,1,0,0,0,188,2674,1,0,0,0,190,2684, - 1,0,0,0,192,2700,1,0,0,0,194,2744,1,0,0,0,196,2751,1,0,0,0,198,2753, - 1,0,0,0,200,2779,1,0,0,0,202,2790,1,0,0,0,204,2809,1,0,0,0,206,2820, - 1,0,0,0,208,2858,1,0,0,0,210,2879,1,0,0,0,212,2881,1,0,0,0,214,2901, - 1,0,0,0,216,2913,1,0,0,0,218,2925,1,0,0,0,220,2928,1,0,0,0,222,2931, - 1,0,0,0,224,2951,1,0,0,0,226,2956,1,0,0,0,228,3005,1,0,0,0,230,3007, - 1,0,0,0,232,3030,1,0,0,0,234,3046,1,0,0,0,236,3058,1,0,0,0,238,3085, - 1,0,0,0,240,3100,1,0,0,0,242,3163,1,0,0,0,244,3165,1,0,0,0,246,3170, - 1,0,0,0,248,3176,1,0,0,0,250,3263,1,0,0,0,252,3269,1,0,0,0,254,3271, - 1,0,0,0,256,3287,1,0,0,0,258,3289,1,0,0,0,260,3298,1,0,0,0,262,3302, - 1,0,0,0,264,3315,1,0,0,0,266,3327,1,0,0,0,268,3329,1,0,0,0,270,3351, - 1,0,0,0,272,3363,1,0,0,0,274,3374,1,0,0,0,276,3465,1,0,0,0,278,3467, - 1,0,0,0,280,3478,1,0,0,0,282,3489,1,0,0,0,284,3491,1,0,0,0,286,3517, - 1,0,0,0,288,3519,1,0,0,0,290,3523,1,0,0,0,292,3573,1,0,0,0,294,3575, - 1,0,0,0,296,3581,1,0,0,0,298,3606,1,0,0,0,300,3610,1,0,0,0,302,3824, - 1,0,0,0,304,3842,1,0,0,0,306,3868,1,0,0,0,308,3870,1,0,0,0,310,3878, - 1,0,0,0,312,3884,1,0,0,0,314,3888,1,0,0,0,316,3908,1,0,0,0,318,3914, - 1,0,0,0,320,3981,1,0,0,0,322,4012,1,0,0,0,324,4058,1,0,0,0,326,4060, - 1,0,0,0,328,4062,1,0,0,0,330,4073,1,0,0,0,332,4110,1,0,0,0,334,4112, - 1,0,0,0,336,4118,1,0,0,0,338,4168,1,0,0,0,340,4171,1,0,0,0,342,4185, - 1,0,0,0,344,4206,1,0,0,0,346,4230,1,0,0,0,348,4271,1,0,0,0,350,4273, - 1,0,0,0,352,4275,1,0,0,0,354,4315,1,0,0,0,356,4332,1,0,0,0,358,4352, - 1,0,0,0,360,4405,1,0,0,0,362,4408,1,0,0,0,364,4414,1,0,0,0,366,4422, - 1,0,0,0,368,4435,1,0,0,0,370,4437,1,0,0,0,372,4450,1,0,0,0,374,4452, - 1,0,0,0,376,4465,1,0,0,0,378,4475,1,0,0,0,380,4486,1,0,0,0,382,4497, - 1,0,0,0,384,4499,1,0,0,0,386,4504,1,0,0,0,388,4518,1,0,0,0,390,4550, - 1,0,0,0,392,4587,1,0,0,0,394,4589,1,0,0,0,396,4592,1,0,0,0,398,4595, - 1,0,0,0,400,4612,1,0,0,0,402,4633,1,0,0,0,404,4649,1,0,0,0,406,4665, - 1,0,0,0,408,4687,1,0,0,0,410,4692,1,0,0,0,412,4695,1,0,0,0,414,4703, - 1,0,0,0,416,4728,1,0,0,0,418,4731,1,0,0,0,420,4759,1,0,0,0,422,4764, - 1,0,0,0,424,4804,1,0,0,0,426,5016,1,0,0,0,428,5018,1,0,0,0,430,5106, - 1,0,0,0,432,5108,1,0,0,0,434,5114,1,0,0,0,436,5125,1,0,0,0,438,5135, - 1,0,0,0,440,5215,1,0,0,0,442,5217,1,0,0,0,444,5231,1,0,0,0,446,5253, - 1,0,0,0,448,5326,1,0,0,0,450,5328,1,0,0,0,452,5369,1,0,0,0,454,5371, - 1,0,0,0,456,5376,1,0,0,0,458,5379,1,0,0,0,460,5382,1,0,0,0,462,5432, - 1,0,0,0,464,5434,1,0,0,0,466,5445,1,0,0,0,468,5447,1,0,0,0,470,5457, - 1,0,0,0,472,5492,1,0,0,0,474,5495,1,0,0,0,476,5516,1,0,0,0,478,5526, - 1,0,0,0,480,5546,1,0,0,0,482,5552,1,0,0,0,484,5558,1,0,0,0,486,5563, - 1,0,0,0,488,5576,1,0,0,0,490,5603,1,0,0,0,492,5651,1,0,0,0,494,5653, - 1,0,0,0,496,5691,1,0,0,0,498,5693,1,0,0,0,500,5714,1,0,0,0,502,5734, - 1,0,0,0,504,5738,1,0,0,0,506,5753,1,0,0,0,508,5755,1,0,0,0,510,5759, - 1,0,0,0,512,5763,1,0,0,0,514,5771,1,0,0,0,516,5795,1,0,0,0,518,5797, - 1,0,0,0,520,5808,1,0,0,0,522,5816,1,0,0,0,524,5832,1,0,0,0,526,5857, - 1,0,0,0,528,5859,1,0,0,0,530,5863,1,0,0,0,532,5872,1,0,0,0,534,5912, - 1,0,0,0,536,5923,1,0,0,0,538,5931,1,0,0,0,540,5934,1,0,0,0,542,5938, - 1,0,0,0,544,5953,1,0,0,0,546,5978,1,0,0,0,548,5993,1,0,0,0,550,6019, - 1,0,0,0,552,6021,1,0,0,0,554,6044,1,0,0,0,556,6046,1,0,0,0,558,6054, - 1,0,0,0,560,6072,1,0,0,0,562,6096,1,0,0,0,564,6108,1,0,0,0,566,6112, - 1,0,0,0,568,6124,1,0,0,0,570,6144,1,0,0,0,572,6152,1,0,0,0,574,6166, - 1,0,0,0,576,6189,1,0,0,0,578,6191,1,0,0,0,580,6196,1,0,0,0,582,6206, - 1,0,0,0,584,6227,1,0,0,0,586,6229,1,0,0,0,588,6238,1,0,0,0,590,6249, - 1,0,0,0,592,6259,1,0,0,0,594,6261,1,0,0,0,596,6268,1,0,0,0,598,6299, - 1,0,0,0,600,6329,1,0,0,0,602,6331,1,0,0,0,604,6340,1,0,0,0,606,6343, - 1,0,0,0,608,6414,1,0,0,0,610,6438,1,0,0,0,612,6459,1,0,0,0,614,6461, - 1,0,0,0,616,6469,1,0,0,0,618,6486,1,0,0,0,620,6512,1,0,0,0,622,6514, - 1,0,0,0,624,6522,1,0,0,0,626,6529,1,0,0,0,628,6553,1,0,0,0,630,6559, - 1,0,0,0,632,6567,1,0,0,0,634,6570,1,0,0,0,636,6577,1,0,0,0,638,6585, - 1,0,0,0,640,6590,1,0,0,0,642,6620,1,0,0,0,644,6647,1,0,0,0,646,6675, - 1,0,0,0,648,6692,1,0,0,0,650,6698,1,0,0,0,652,6716,1,0,0,0,654,6718, - 1,0,0,0,656,6722,1,0,0,0,658,6739,1,0,0,0,660,6744,1,0,0,0,662,6782, - 1,0,0,0,664,6784,1,0,0,0,666,6788,1,0,0,0,668,6790,1,0,0,0,670,6799, - 1,0,0,0,672,6883,1,0,0,0,674,6889,1,0,0,0,676,6998,1,0,0,0,678,7030, - 1,0,0,0,680,7081,1,0,0,0,682,7085,1,0,0,0,684,7261,1,0,0,0,686,7263, - 1,0,0,0,688,7271,1,0,0,0,690,7276,1,0,0,0,692,7278,1,0,0,0,694,7286, - 1,0,0,0,696,7289,1,0,0,0,698,7298,1,0,0,0,700,7301,1,0,0,0,702,7305, - 1,0,0,0,704,7310,1,0,0,0,706,7327,1,0,0,0,708,7354,1,0,0,0,710,7363, - 1,0,0,0,712,7365,1,0,0,0,714,7372,1,0,0,0,716,7376,1,0,0,0,718,7378, - 1,0,0,0,720,7386,1,0,0,0,722,7394,1,0,0,0,724,7401,1,0,0,0,726,7403, - 1,0,0,0,728,7416,1,0,0,0,730,7420,1,0,0,0,732,7422,1,0,0,0,734,7437, - 1,0,0,0,736,7439,1,0,0,0,738,7461,1,0,0,0,740,7463,1,0,0,0,742,7486, - 1,0,0,0,744,7488,1,0,0,0,746,7510,1,0,0,0,748,7513,1,0,0,0,750,7520, - 1,0,0,0,752,7523,1,0,0,0,754,7539,1,0,0,0,756,7541,1,0,0,0,758,7549, - 1,0,0,0,760,7557,1,0,0,0,762,7565,1,0,0,0,764,7573,1,0,0,0,766,7575, - 1,0,0,0,768,7577,1,0,0,0,770,7579,1,0,0,0,772,7581,1,0,0,0,774,7583, - 1,0,0,0,776,7585,1,0,0,0,778,7589,1,0,0,0,780,7597,1,0,0,0,782,7605, - 1,0,0,0,784,7607,1,0,0,0,786,7609,1,0,0,0,788,7611,1,0,0,0,790,7613, - 1,0,0,0,792,7619,1,0,0,0,794,7625,1,0,0,0,796,7631,1,0,0,0,798,7633, - 1,0,0,0,800,7636,1,0,0,0,802,7642,1,0,0,0,804,7648,1,0,0,0,806,7650, - 1,0,0,0,808,7666,1,0,0,0,810,7669,1,0,0,0,812,7678,1,0,0,0,814,7680, - 1,0,0,0,816,7690,1,0,0,0,818,7694,1,0,0,0,820,7699,1,0,0,0,822,7705, - 1,0,0,0,824,7718,1,0,0,0,826,7720,1,0,0,0,828,7773,1,0,0,0,830,7775, - 1,0,0,0,832,7777,1,0,0,0,834,7780,1,0,0,0,836,7808,1,0,0,0,838,7812, - 1,0,0,0,840,7863,1,0,0,0,842,7866,1,0,0,0,844,7892,1,0,0,0,846,7894, - 1,0,0,0,848,7917,1,0,0,0,850,7919,1,0,0,0,852,7924,1,0,0,0,854,7939, - 1,0,0,0,856,7945,1,0,0,0,858,7956,1,0,0,0,860,7986,1,0,0,0,862,7993, - 1,0,0,0,864,8018,1,0,0,0,866,8028,1,0,0,0,868,8055,1,0,0,0,870,8068, - 1,0,0,0,872,8078,1,0,0,0,874,8097,1,0,0,0,876,8129,1,0,0,0,878,8133, - 1,0,0,0,880,8141,1,0,0,0,882,8155,1,0,0,0,884,8161,1,0,0,0,886,8182, - 1,0,0,0,888,8188,1,0,0,0,890,8227,1,0,0,0,892,8231,1,0,0,0,894,8257, - 1,0,0,0,896,8259,1,0,0,0,898,8267,1,0,0,0,900,8307,1,0,0,0,902,8341, - 1,0,0,0,904,8343,1,0,0,0,906,8354,1,0,0,0,908,8391,1,0,0,0,910,8395, - 1,0,0,0,912,8397,1,0,0,0,914,8401,1,0,0,0,916,8404,1,0,0,0,918,8426, - 1,0,0,0,920,8430,1,0,0,0,922,8432,1,0,0,0,924,8456,1,0,0,0,926,8460, - 1,0,0,0,928,8463,1,0,0,0,930,932,3,2,1,0,931,930,1,0,0,0,932,935, - 1,0,0,0,933,931,1,0,0,0,933,934,1,0,0,0,934,936,1,0,0,0,935,933, - 1,0,0,0,936,937,5,0,0,1,937,1,1,0,0,0,938,940,3,4,2,0,939,941,5, - 7,0,0,940,939,1,0,0,0,940,941,1,0,0,0,941,3,1,0,0,0,942,1063,3,272, - 136,0,943,1063,3,482,241,0,944,1063,3,478,239,0,945,1063,3,480,240, - 0,946,1063,3,346,173,0,947,1063,3,488,244,0,948,1063,3,286,143,0, - 949,1063,3,204,102,0,950,1063,3,206,103,0,951,1063,3,212,106,0,952, - 1063,3,226,113,0,953,1063,3,398,199,0,954,1063,3,28,14,0,955,1063, - 3,428,214,0,956,1063,3,430,215,0,957,1063,3,440,220,0,958,1063,3, - 432,216,0,959,1063,3,438,219,0,960,1063,3,238,119,0,961,1063,3,240, - 120,0,962,1063,3,192,96,0,963,1063,3,484,242,0,964,1063,3,76,38, - 0,965,1063,3,424,212,0,966,1063,3,100,50,0,967,1063,3,444,222,0, - 968,1063,3,18,9,0,969,1063,3,20,10,0,970,1063,3,16,8,0,971,1063, - 3,448,224,0,972,1063,3,178,89,0,973,1063,3,492,246,0,974,1063,3, - 490,245,0,975,1063,3,234,117,0,976,1063,3,500,250,0,977,1063,3,6, - 3,0,978,1063,3,72,36,0,979,1063,3,104,52,0,980,1063,3,496,248,0, - 981,1063,3,318,159,0,982,1063,3,70,35,0,983,1063,3,106,53,0,984, - 1063,3,248,124,0,985,1063,3,180,90,0,986,1063,3,274,137,0,987,1063, - 3,414,207,0,988,1063,3,494,247,0,989,1063,3,486,243,0,990,1063,3, - 202,101,0,991,1063,3,208,104,0,992,1063,3,222,111,0,993,1063,3,228, - 114,0,994,1063,3,358,179,0,995,1063,3,26,13,0,996,1063,3,186,93, - 0,997,1063,3,290,145,0,998,1063,3,294,147,0,999,1063,3,442,221,0, - 1000,1063,3,296,148,0,1001,1063,3,236,118,0,1002,1063,3,198,99,0, - 1003,1063,3,30,15,0,1004,1063,3,190,95,0,1005,1063,3,114,57,0,1006, - 1063,3,446,223,0,1007,1063,3,176,88,0,1008,1063,3,200,100,0,1009, - 1063,3,418,209,0,1010,1063,3,250,125,0,1011,1063,3,268,134,0,1012, - 1063,3,8,4,0,1013,1063,3,14,7,0,1014,1063,3,232,116,0,1015,1063, - 3,474,237,0,1016,1063,3,530,265,0,1017,1063,3,552,276,0,1018,1063, - 3,276,138,0,1019,1063,3,542,271,0,1020,1063,3,74,37,0,1021,1063, - 3,412,206,0,1022,1063,3,302,151,0,1023,1063,3,526,263,0,1024,1063, - 3,514,257,0,1025,1063,3,322,161,0,1026,1063,3,328,164,0,1027,1063, - 3,342,171,0,1028,1063,3,898,449,0,1029,1063,3,230,115,0,1030,1063, - 3,352,176,0,1031,1063,3,532,266,0,1032,1063,3,458,229,0,1033,1063, - 3,188,94,0,1034,1063,3,472,236,0,1035,1063,3,544,272,0,1036,1063, - 3,454,227,0,1037,1063,3,520,260,0,1038,1063,3,300,150,0,1039,1063, - 3,422,211,0,1040,1063,3,402,201,0,1041,1063,3,400,200,0,1042,1063, - 3,404,202,0,1043,1063,3,426,213,0,1044,1063,3,330,165,0,1045,1063, - 3,344,172,0,1046,1063,3,450,225,0,1047,1063,3,320,160,0,1048,1063, - 3,554,277,0,1049,1063,3,462,231,0,1050,1063,3,314,157,0,1051,1063, - 3,460,230,0,1052,1063,3,546,273,0,1053,1063,3,498,249,0,1054,1063, - 3,60,30,0,1055,1063,3,36,18,0,1056,1063,3,68,34,0,1057,1063,3,470, - 235,0,1058,1060,5,583,0,0,1059,1061,5,584,0,0,1060,1059,1,0,0,0, - 1060,1061,1,0,0,0,1061,1063,1,0,0,0,1062,942,1,0,0,0,1062,943,1, - 0,0,0,1062,944,1,0,0,0,1062,945,1,0,0,0,1062,946,1,0,0,0,1062,947, - 1,0,0,0,1062,948,1,0,0,0,1062,949,1,0,0,0,1062,950,1,0,0,0,1062, - 951,1,0,0,0,1062,952,1,0,0,0,1062,953,1,0,0,0,1062,954,1,0,0,0,1062, - 955,1,0,0,0,1062,956,1,0,0,0,1062,957,1,0,0,0,1062,958,1,0,0,0,1062, - 959,1,0,0,0,1062,960,1,0,0,0,1062,961,1,0,0,0,1062,962,1,0,0,0,1062, - 963,1,0,0,0,1062,964,1,0,0,0,1062,965,1,0,0,0,1062,966,1,0,0,0,1062, - 967,1,0,0,0,1062,968,1,0,0,0,1062,969,1,0,0,0,1062,970,1,0,0,0,1062, - 971,1,0,0,0,1062,972,1,0,0,0,1062,973,1,0,0,0,1062,974,1,0,0,0,1062, - 975,1,0,0,0,1062,976,1,0,0,0,1062,977,1,0,0,0,1062,978,1,0,0,0,1062, - 979,1,0,0,0,1062,980,1,0,0,0,1062,981,1,0,0,0,1062,982,1,0,0,0,1062, - 983,1,0,0,0,1062,984,1,0,0,0,1062,985,1,0,0,0,1062,986,1,0,0,0,1062, - 987,1,0,0,0,1062,988,1,0,0,0,1062,989,1,0,0,0,1062,990,1,0,0,0,1062, - 991,1,0,0,0,1062,992,1,0,0,0,1062,993,1,0,0,0,1062,994,1,0,0,0,1062, - 995,1,0,0,0,1062,996,1,0,0,0,1062,997,1,0,0,0,1062,998,1,0,0,0,1062, - 999,1,0,0,0,1062,1000,1,0,0,0,1062,1001,1,0,0,0,1062,1002,1,0,0, - 0,1062,1003,1,0,0,0,1062,1004,1,0,0,0,1062,1005,1,0,0,0,1062,1006, - 1,0,0,0,1062,1007,1,0,0,0,1062,1008,1,0,0,0,1062,1009,1,0,0,0,1062, - 1010,1,0,0,0,1062,1011,1,0,0,0,1062,1012,1,0,0,0,1062,1013,1,0,0, - 0,1062,1014,1,0,0,0,1062,1015,1,0,0,0,1062,1016,1,0,0,0,1062,1017, - 1,0,0,0,1062,1018,1,0,0,0,1062,1019,1,0,0,0,1062,1020,1,0,0,0,1062, - 1021,1,0,0,0,1062,1022,1,0,0,0,1062,1023,1,0,0,0,1062,1024,1,0,0, - 0,1062,1025,1,0,0,0,1062,1026,1,0,0,0,1062,1027,1,0,0,0,1062,1028, - 1,0,0,0,1062,1029,1,0,0,0,1062,1030,1,0,0,0,1062,1031,1,0,0,0,1062, - 1032,1,0,0,0,1062,1033,1,0,0,0,1062,1034,1,0,0,0,1062,1035,1,0,0, - 0,1062,1036,1,0,0,0,1062,1037,1,0,0,0,1062,1038,1,0,0,0,1062,1039, - 1,0,0,0,1062,1040,1,0,0,0,1062,1041,1,0,0,0,1062,1042,1,0,0,0,1062, - 1043,1,0,0,0,1062,1044,1,0,0,0,1062,1045,1,0,0,0,1062,1046,1,0,0, - 0,1062,1047,1,0,0,0,1062,1048,1,0,0,0,1062,1049,1,0,0,0,1062,1050, - 1,0,0,0,1062,1051,1,0,0,0,1062,1052,1,0,0,0,1062,1053,1,0,0,0,1062, - 1054,1,0,0,0,1062,1055,1,0,0,0,1062,1056,1,0,0,0,1062,1057,1,0,0, - 0,1062,1058,1,0,0,0,1063,5,1,0,0,0,1064,1065,5,433,0,0,1065,1066, - 3,678,339,0,1066,7,1,0,0,0,1067,1068,5,46,0,0,1068,1069,5,318,0, - 0,1069,1071,3,812,406,0,1070,1072,5,105,0,0,1071,1070,1,0,0,0,1071, - 1072,1,0,0,0,1072,1076,1,0,0,0,1073,1075,3,12,6,0,1074,1073,1,0, - 0,0,1075,1078,1,0,0,0,1076,1074,1,0,0,0,1076,1077,1,0,0,0,1077,9, - 1,0,0,0,1078,1076,1,0,0,0,1079,1082,5,287,0,0,1080,1083,3,806,403, - 0,1081,1083,5,78,0,0,1082,1080,1,0,0,0,1082,1081,1,0,0,0,1083,1118, - 1,0,0,0,1084,1085,7,0,0,0,1085,1086,5,287,0,0,1086,1118,3,806,403, - 0,1087,1118,5,228,0,0,1088,1118,5,229,0,0,1089,1118,5,236,0,0,1090, - 1118,5,237,0,0,1091,1118,5,234,0,0,1092,1118,5,235,0,0,1093,1118, - 5,232,0,0,1094,1118,5,233,0,0,1095,1118,5,230,0,0,1096,1118,5,231, - 0,0,1097,1118,5,535,0,0,1098,1118,5,536,0,0,1099,1118,5,537,0,0, - 1100,1118,5,538,0,0,1101,1118,5,539,0,0,1102,1118,5,540,0,0,1103, - 1104,5,164,0,0,1104,1105,5,74,0,0,1105,1118,3,810,405,0,1106,1107, - 5,371,0,0,1107,1108,5,368,0,0,1108,1118,3,806,403,0,1109,1110,5, - 68,0,0,1110,1111,7,1,0,0,1111,1118,3,780,390,0,1112,1113,7,2,0,0, - 1113,1118,3,814,407,0,1114,1115,5,134,0,0,1115,1118,3,780,390,0, - 1116,1118,3,824,412,0,1117,1079,1,0,0,0,1117,1084,1,0,0,0,1117,1087, - 1,0,0,0,1117,1088,1,0,0,0,1117,1089,1,0,0,0,1117,1090,1,0,0,0,1117, - 1091,1,0,0,0,1117,1092,1,0,0,0,1117,1093,1,0,0,0,1117,1094,1,0,0, - 0,1117,1095,1,0,0,0,1117,1096,1,0,0,0,1117,1097,1,0,0,0,1117,1098, - 1,0,0,0,1117,1099,1,0,0,0,1117,1100,1,0,0,0,1117,1101,1,0,0,0,1117, - 1102,1,0,0,0,1117,1103,1,0,0,0,1117,1106,1,0,0,0,1117,1109,1,0,0, - 0,1117,1112,1,0,0,0,1117,1114,1,0,0,0,1117,1116,1,0,0,0,1118,11, - 1,0,0,0,1119,1128,3,10,5,0,1120,1121,5,348,0,0,1121,1128,5,574,0, - 0,1122,1123,7,3,0,0,1123,1128,3,814,407,0,1124,1125,5,68,0,0,1125, - 1126,7,1,0,0,1126,1128,3,814,407,0,1127,1119,1,0,0,0,1127,1120,1, - 0,0,0,1127,1122,1,0,0,0,1127,1124,1,0,0,0,1128,13,1,0,0,0,1129,1130, - 5,46,0,0,1130,1131,5,99,0,0,1131,1133,3,812,406,0,1132,1134,5,105, - 0,0,1133,1132,1,0,0,0,1133,1134,1,0,0,0,1134,1138,1,0,0,0,1135,1137, - 3,12,6,0,1136,1135,1,0,0,0,1137,1140,1,0,0,0,1138,1136,1,0,0,0,1138, - 1139,1,0,0,0,1139,15,1,0,0,0,1140,1138,1,0,0,0,1141,1142,5,138,0, - 0,1142,1143,7,2,0,0,1143,1145,3,812,406,0,1144,1146,5,105,0,0,1145, - 1144,1,0,0,0,1145,1146,1,0,0,0,1146,1150,1,0,0,0,1147,1149,3,10, - 5,0,1148,1147,1,0,0,0,1149,1152,1,0,0,0,1150,1148,1,0,0,0,1150,1151, - 1,0,0,0,1151,17,1,0,0,0,1152,1150,1,0,0,0,1153,1154,5,138,0,0,1154, - 1157,7,2,0,0,1155,1158,5,30,0,0,1156,1158,3,812,406,0,1157,1155, - 1,0,0,0,1157,1156,1,0,0,0,1158,1159,1,0,0,0,1159,1160,5,68,0,0,1160, - 1161,5,175,0,0,1161,1162,3,784,392,0,1162,1163,3,64,32,0,1163,19, - 1,0,0,0,1164,1165,5,138,0,0,1165,1166,5,442,0,0,1166,1168,3,790, - 395,0,1167,1169,3,362,181,0,1168,1167,1,0,0,0,1168,1169,1,0,0,0, - 1169,1170,1,0,0,0,1170,1171,3,22,11,0,1171,21,1,0,0,0,1172,1176, - 3,24,12,0,1173,1175,3,24,12,0,1174,1173,1,0,0,0,1175,1178,1,0,0, - 0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1180,1,0,0,0,1178,1176, - 1,0,0,0,1179,1181,5,315,0,0,1180,1179,1,0,0,0,1180,1181,1,0,0,0, - 1181,1199,1,0,0,0,1182,1183,5,309,0,0,1183,1184,5,94,0,0,1184,1199, - 3,788,394,0,1185,1186,5,282,0,0,1186,1187,5,94,0,0,1187,1199,3,812, - 406,0,1188,1189,5,333,0,0,1189,1190,5,323,0,0,1190,1199,3,32,16, - 0,1191,1193,5,269,0,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0,1193,1194, - 1,0,0,0,1194,1195,5,462,0,0,1195,1196,5,80,0,0,1196,1197,5,204,0, - 0,1197,1199,3,816,408,0,1198,1172,1,0,0,0,1198,1182,1,0,0,0,1198, - 1185,1,0,0,0,1198,1188,1,0,0,0,1198,1192,1,0,0,0,1199,23,1,0,0,0, - 1200,1243,5,222,0,0,1201,1243,5,338,0,0,1202,1243,5,377,0,0,1203, - 1205,5,77,0,0,1204,1203,1,0,0,0,1204,1205,1,0,0,0,1205,1206,1,0, - 0,0,1206,1243,5,250,0,0,1207,1209,5,205,0,0,1208,1207,1,0,0,0,1208, - 1209,1,0,0,0,1209,1210,1,0,0,0,1210,1211,5,327,0,0,1211,1218,5,243, - 0,0,1212,1214,5,205,0,0,1213,1212,1,0,0,0,1213,1214,1,0,0,0,1214, - 1215,1,0,0,0,1215,1216,5,327,0,0,1216,1218,5,181,0,0,1217,1208,1, - 0,0,0,1217,1213,1,0,0,0,1218,1243,1,0,0,0,1219,1220,5,460,0,0,1220, - 1243,7,4,0,0,1221,1222,5,170,0,0,1222,1243,3,822,411,0,1223,1224, - 5,320,0,0,1224,1243,3,816,408,0,1225,1226,5,333,0,0,1226,1227,3, - 816,408,0,1227,1230,7,5,0,0,1228,1231,3,816,408,0,1229,1231,5,53, - 0,0,1230,1228,1,0,0,0,1230,1229,1,0,0,0,1231,1243,1,0,0,0,1232,1233, - 5,333,0,0,1233,1234,3,816,408,0,1234,1235,5,64,0,0,1235,1236,5,434, - 0,0,1236,1243,1,0,0,0,1237,1240,5,313,0,0,1238,1241,3,816,408,0, - 1239,1241,5,30,0,0,1240,1238,1,0,0,0,1240,1239,1,0,0,0,1241,1243, - 1,0,0,0,1242,1200,1,0,0,0,1242,1201,1,0,0,0,1242,1202,1,0,0,0,1242, - 1204,1,0,0,0,1242,1217,1,0,0,0,1242,1219,1,0,0,0,1242,1221,1,0,0, - 0,1242,1223,1,0,0,0,1242,1225,1,0,0,0,1242,1232,1,0,0,0,1242,1237, - 1,0,0,0,1243,25,1,0,0,0,1244,1245,5,46,0,0,1245,1246,5,66,0,0,1246, - 1248,3,812,406,0,1247,1249,5,105,0,0,1248,1247,1,0,0,0,1248,1249, - 1,0,0,0,1249,1253,1,0,0,0,1250,1252,3,12,6,0,1251,1250,1,0,0,0,1252, - 1255,1,0,0,0,1253,1251,1,0,0,0,1253,1254,1,0,0,0,1254,27,1,0,0,0, - 1255,1253,1,0,0,0,1256,1257,5,138,0,0,1257,1258,5,66,0,0,1258,1259, - 3,812,406,0,1259,1260,7,6,0,0,1260,1261,5,99,0,0,1261,1262,3,814, - 407,0,1262,29,1,0,0,0,1263,1264,5,46,0,0,1264,1266,5,323,0,0,1265, - 1267,3,288,144,0,1266,1265,1,0,0,0,1266,1267,1,0,0,0,1267,1274,1, - 0,0,0,1268,1270,3,32,16,0,1269,1268,1,0,0,0,1269,1270,1,0,0,0,1270, - 1271,1,0,0,0,1271,1272,5,106,0,0,1272,1275,3,812,406,0,1273,1275, - 3,32,16,0,1274,1269,1,0,0,0,1274,1273,1,0,0,0,1275,1279,1,0,0,0, - 1276,1278,3,34,17,0,1277,1276,1,0,0,0,1278,1281,1,0,0,0,1279,1277, - 1,0,0,0,1279,1280,1,0,0,0,1280,31,1,0,0,0,1281,1279,1,0,0,0,1282, - 1283,3,310,155,0,1283,33,1,0,0,0,1284,1291,3,114,57,0,1285,1291, - 3,352,176,0,1286,1291,3,190,95,0,1287,1291,3,250,125,0,1288,1291, - 3,328,164,0,1289,1291,3,470,235,0,1290,1284,1,0,0,0,1290,1285,1, - 0,0,0,1290,1286,1,0,0,0,1290,1287,1,0,0,0,1290,1288,1,0,0,0,1290, - 1289,1,0,0,0,1291,35,1,0,0,0,1292,1294,5,333,0,0,1293,1295,7,7,0, - 0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1296,1,0,0,0,1296,1297, - 3,38,19,0,1297,37,1,0,0,0,1298,1299,5,356,0,0,1299,1307,3,468,234, - 0,1300,1301,5,332,0,0,1301,1302,5,154,0,0,1302,1303,5,36,0,0,1303, - 1304,5,356,0,0,1304,1307,3,468,234,0,1305,1307,3,42,21,0,1306,1298, - 1,0,0,0,1306,1300,1,0,0,0,1306,1305,1,0,0,0,1307,39,1,0,0,0,1308, - 1311,5,30,0,0,1309,1311,3,44,22,0,1310,1308,1,0,0,0,1310,1309,1, - 0,0,0,1311,1313,1,0,0,0,1312,1314,7,5,0,0,1313,1312,1,0,0,0,1313, - 1314,1,0,0,0,1314,1317,1,0,0,0,1315,1318,5,53,0,0,1316,1318,3,46, - 23,0,1317,1315,1,0,0,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318, - 41,1,0,0,0,1319,1320,5,418,0,0,1320,1321,5,386,0,0,1321,1348,3,56, - 28,0,1322,1323,5,152,0,0,1323,1348,3,806,403,0,1324,1325,5,323,0, - 0,1325,1348,3,786,393,0,1326,1329,5,267,0,0,1327,1330,3,806,403, - 0,1328,1330,5,53,0,0,1329,1327,1,0,0,0,1329,1328,1,0,0,0,1329,1330, - 1,0,0,0,1330,1348,1,0,0,0,1331,1332,5,318,0,0,1332,1348,3,58,29, - 0,1333,1334,5,332,0,0,1334,1335,5,106,0,0,1335,1348,3,58,29,0,1336, - 1337,5,383,0,0,1337,1338,5,279,0,0,1338,1348,3,690,345,0,1339,1340, - 5,356,0,0,1340,1341,5,337,0,0,1341,1348,3,806,403,0,1342,1343,3, - 44,22,0,1343,1344,5,64,0,0,1344,1345,5,434,0,0,1345,1348,1,0,0,0, - 1346,1348,3,40,20,0,1347,1319,1,0,0,0,1347,1322,1,0,0,0,1347,1324, - 1,0,0,0,1347,1326,1,0,0,0,1347,1331,1,0,0,0,1347,1333,1,0,0,0,1347, - 1336,1,0,0,0,1347,1339,1,0,0,0,1347,1342,1,0,0,0,1347,1346,1,0,0, - 0,1348,43,1,0,0,0,1349,1354,3,816,408,0,1350,1351,5,11,0,0,1351, - 1353,3,816,408,0,1352,1350,1,0,0,0,1353,1356,1,0,0,0,1354,1352,1, - 0,0,0,1354,1355,1,0,0,0,1355,45,1,0,0,0,1356,1354,1,0,0,0,1357,1362, - 3,48,24,0,1358,1359,5,6,0,0,1359,1361,3,48,24,0,1360,1358,1,0,0, - 0,1361,1364,1,0,0,0,1362,1360,1,0,0,0,1362,1363,1,0,0,0,1363,47, - 1,0,0,0,1364,1362,1,0,0,0,1365,1368,3,54,27,0,1366,1368,3,196,98, - 0,1367,1365,1,0,0,0,1367,1366,1,0,0,0,1368,49,1,0,0,0,1369,1370, - 5,300,0,0,1370,1375,7,8,0,0,1371,1372,5,310,0,0,1372,1375,5,300, - 0,0,1373,1375,5,330,0,0,1374,1369,1,0,0,0,1374,1371,1,0,0,0,1374, - 1373,1,0,0,0,1375,51,1,0,0,0,1376,1383,5,96,0,0,1377,1383,5,60,0, - 0,1378,1383,5,80,0,0,1379,1383,3,796,398,0,1380,1383,3,830,415,0, - 1381,1383,3,806,403,0,1382,1376,1,0,0,0,1382,1377,1,0,0,0,1382,1378, - 1,0,0,0,1382,1379,1,0,0,0,1382,1380,1,0,0,0,1382,1381,1,0,0,0,1383, - 53,1,0,0,0,1384,1389,5,96,0,0,1385,1389,5,60,0,0,1386,1389,5,80, - 0,0,1387,1389,3,58,29,0,1388,1384,1,0,0,0,1388,1385,1,0,0,0,1388, - 1386,1,0,0,0,1388,1387,1,0,0,0,1389,55,1,0,0,0,1390,1405,3,806,403, - 0,1391,1405,5,53,0,0,1392,1405,3,824,412,0,1393,1394,5,403,0,0,1394, - 1396,3,806,403,0,1395,1397,3,662,331,0,1396,1395,1,0,0,0,1396,1397, - 1,0,0,0,1397,1405,1,0,0,0,1398,1399,5,403,0,0,1399,1400,3,654,327, - 0,1400,1401,3,806,403,0,1401,1405,1,0,0,0,1402,1405,3,196,98,0,1403, - 1405,5,254,0,0,1404,1390,1,0,0,0,1404,1391,1,0,0,0,1404,1392,1,0, - 0,0,1404,1393,1,0,0,0,1404,1398,1,0,0,0,1404,1402,1,0,0,0,1404,1403, - 1,0,0,0,1405,57,1,0,0,0,1406,1409,3,820,410,0,1407,1409,3,806,403, - 0,1408,1406,1,0,0,0,1408,1407,1,0,0,0,1409,59,1,0,0,0,1410,1411, - 5,313,0,0,1411,1412,3,62,31,0,1412,61,1,0,0,0,1413,1414,5,418,0, - 0,1414,1423,5,386,0,0,1415,1416,5,356,0,0,1416,1417,5,244,0,0,1417, - 1423,5,251,0,0,1418,1419,5,332,0,0,1419,1423,5,106,0,0,1420,1423, - 5,30,0,0,1421,1423,3,44,22,0,1422,1413,1,0,0,0,1422,1415,1,0,0,0, - 1422,1418,1,0,0,0,1422,1420,1,0,0,0,1422,1421,1,0,0,0,1423,63,1, - 0,0,0,1424,1425,5,333,0,0,1425,1428,3,38,19,0,1426,1428,3,60,30, - 0,1427,1424,1,0,0,0,1427,1426,1,0,0,0,1428,65,1,0,0,0,1429,1430, - 5,333,0,0,1430,1433,3,42,21,0,1431,1433,3,60,30,0,1432,1429,1,0, - 0,0,1432,1431,1,0,0,0,1433,67,1,0,0,0,1434,1444,5,335,0,0,1435,1445, - 3,44,22,0,1436,1437,5,418,0,0,1437,1445,5,386,0,0,1438,1439,5,356, - 0,0,1439,1440,5,244,0,0,1440,1445,5,251,0,0,1441,1442,5,332,0,0, - 1442,1445,5,106,0,0,1443,1445,5,30,0,0,1444,1435,1,0,0,0,1444,1436, - 1,0,0,0,1444,1438,1,0,0,0,1444,1441,1,0,0,0,1444,1443,1,0,0,0,1445, - 69,1,0,0,0,1446,1447,5,333,0,0,1447,1450,5,165,0,0,1448,1451,5,30, - 0,0,1449,1451,3,756,378,0,1450,1448,1,0,0,0,1450,1449,1,0,0,0,1451, - 1452,1,0,0,0,1452,1453,7,9,0,0,1453,71,1,0,0,0,1454,1455,5,155,0, - 0,1455,73,1,0,0,0,1456,1457,5,187,0,0,1457,1458,7,10,0,0,1458,75, - 1,0,0,0,1459,1460,5,138,0,0,1460,1462,5,92,0,0,1461,1463,3,416,208, - 0,1462,1461,1,0,0,0,1462,1463,1,0,0,0,1463,1464,1,0,0,0,1464,1467, - 3,618,309,0,1465,1468,3,78,39,0,1466,1468,3,80,40,0,1467,1465,1, - 0,0,0,1467,1466,1,0,0,0,1468,1577,1,0,0,0,1469,1470,5,138,0,0,1470, - 1471,5,92,0,0,1471,1472,5,30,0,0,1472,1473,5,68,0,0,1473,1477,3, - 170,85,0,1474,1475,5,281,0,0,1475,1476,5,147,0,0,1476,1478,3,814, - 407,0,1477,1474,1,0,0,0,1477,1478,1,0,0,0,1478,1479,1,0,0,0,1479, - 1480,5,333,0,0,1480,1481,5,351,0,0,1481,1483,3,766,383,0,1482,1484, - 5,272,0,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484,1577,1,0,0,0, - 1485,1486,5,138,0,0,1486,1488,5,92,0,0,1487,1489,3,416,208,0,1488, - 1487,1,0,0,0,1488,1489,1,0,0,0,1489,1490,1,0,0,0,1490,1491,3,770, - 385,0,1491,1492,3,82,41,0,1492,1493,3,98,49,0,1493,1577,1,0,0,0, - 1494,1495,5,138,0,0,1495,1497,5,92,0,0,1496,1498,3,416,208,0,1497, - 1496,1,0,0,0,1497,1498,1,0,0,0,1498,1499,1,0,0,0,1499,1500,3,770, - 385,0,1500,1501,5,436,0,0,1501,1502,5,285,0,0,1502,1504,3,776,388, - 0,1503,1505,7,11,0,0,1504,1503,1,0,0,0,1504,1505,1,0,0,0,1505,1577, - 1,0,0,0,1506,1507,5,138,0,0,1507,1509,5,226,0,0,1508,1510,3,416, - 208,0,1509,1508,1,0,0,0,1509,1510,1,0,0,0,1510,1511,1,0,0,0,1511, - 1514,3,776,388,0,1512,1515,3,78,39,0,1513,1515,3,82,41,0,1514,1512, - 1,0,0,0,1514,1513,1,0,0,0,1515,1577,1,0,0,0,1516,1517,5,138,0,0, - 1517,1518,5,226,0,0,1518,1519,5,30,0,0,1519,1520,5,68,0,0,1520,1524, - 3,170,85,0,1521,1522,5,281,0,0,1522,1523,5,147,0,0,1523,1525,3,814, - 407,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525,1526,1,0,0,0,1526, - 1527,5,333,0,0,1527,1529,3,170,85,0,1528,1530,5,272,0,0,1529,1528, - 1,0,0,0,1529,1530,1,0,0,0,1530,1577,1,0,0,0,1531,1532,5,138,0,0, - 1532,1534,5,328,0,0,1533,1535,3,416,208,0,1534,1533,1,0,0,0,1534, - 1535,1,0,0,0,1535,1536,1,0,0,0,1536,1537,3,776,388,0,1537,1538,3, - 78,39,0,1538,1577,1,0,0,0,1539,1541,5,138,0,0,1540,1542,5,259,0, - 0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542,1543,1,0,0,0,1543,1545, - 5,376,0,0,1544,1546,3,416,208,0,1545,1544,1,0,0,0,1545,1546,1,0, - 0,0,1546,1547,1,0,0,0,1547,1548,3,774,387,0,1548,1549,3,78,39,0, - 1549,1577,1,0,0,0,1550,1551,5,138,0,0,1551,1552,5,259,0,0,1552,1553, - 5,376,0,0,1553,1554,5,30,0,0,1554,1555,5,68,0,0,1555,1559,3,170, - 85,0,1556,1557,5,281,0,0,1557,1558,5,147,0,0,1558,1560,3,814,407, - 0,1559,1556,1,0,0,0,1559,1560,1,0,0,0,1560,1561,1,0,0,0,1561,1562, - 5,333,0,0,1562,1563,5,351,0,0,1563,1565,3,766,383,0,1564,1566,5, - 272,0,0,1565,1564,1,0,0,0,1565,1566,1,0,0,0,1566,1577,1,0,0,0,1567, - 1568,5,138,0,0,1568,1569,5,63,0,0,1569,1571,5,92,0,0,1570,1572,3, - 416,208,0,1571,1570,1,0,0,0,1571,1572,1,0,0,0,1572,1573,1,0,0,0, - 1573,1574,3,618,309,0,1574,1575,3,78,39,0,1575,1577,1,0,0,0,1576, - 1459,1,0,0,0,1576,1469,1,0,0,0,1576,1485,1,0,0,0,1576,1494,1,0,0, - 0,1576,1506,1,0,0,0,1576,1516,1,0,0,0,1576,1531,1,0,0,0,1576,1539, - 1,0,0,0,1576,1550,1,0,0,0,1576,1567,1,0,0,0,1577,77,1,0,0,0,1578, - 1583,3,84,42,0,1579,1580,5,6,0,0,1580,1582,3,84,42,0,1581,1579,1, - 0,0,0,1582,1585,1,0,0,0,1583,1581,1,0,0,0,1583,1584,1,0,0,0,1584, - 79,1,0,0,0,1585,1583,1,0,0,0,1586,1587,3,82,41,0,1587,1588,3,98, - 49,0,1588,1593,1,0,0,0,1589,1590,5,436,0,0,1590,1591,5,285,0,0,1591, - 1593,3,776,388,0,1592,1586,1,0,0,0,1592,1589,1,0,0,0,1593,81,1,0, - 0,0,1594,1595,5,435,0,0,1595,1596,5,285,0,0,1596,1597,3,776,388, - 0,1597,83,1,0,0,0,1598,1601,5,133,0,0,1599,1600,5,45,0,0,1600,1602, - 3,816,408,0,1601,1599,1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0, - 0,1603,1832,3,136,68,0,1604,1605,5,138,0,0,1605,1606,5,45,0,0,1606, - 1610,3,816,408,0,1607,1609,3,266,133,0,1608,1607,1,0,0,0,1609,1612, - 1,0,0,0,1610,1608,1,0,0,0,1610,1611,1,0,0,0,1611,1832,1,0,0,0,1612, - 1610,1,0,0,0,1613,1614,5,372,0,0,1614,1615,5,45,0,0,1615,1832,3, - 816,408,0,1616,1617,5,191,0,0,1617,1619,5,45,0,0,1618,1620,3,416, - 208,0,1619,1618,1,0,0,0,1619,1620,1,0,0,0,1620,1621,1,0,0,0,1621, - 1623,3,816,408,0,1622,1624,3,88,44,0,1623,1622,1,0,0,0,1623,1624, - 1,0,0,0,1624,1832,1,0,0,0,1625,1626,5,333,0,0,1626,1627,5,379,0, - 0,1627,1832,7,12,0,0,1628,1629,5,158,0,0,1629,1630,5,80,0,0,1630, - 1832,3,816,408,0,1631,1632,5,333,0,0,1632,1832,7,13,0,0,1633,1635, - 5,193,0,0,1634,1636,7,14,0,0,1635,1634,1,0,0,0,1635,1636,1,0,0,0, - 1636,1637,1,0,0,0,1637,1832,5,357,0,0,1638,1639,5,186,0,0,1639,1643, - 5,357,0,0,1640,1644,5,30,0,0,1641,1644,5,99,0,0,1642,1644,3,816, - 408,0,1643,1640,1,0,0,0,1643,1641,1,0,0,0,1643,1642,1,0,0,0,1644, - 1832,1,0,0,0,1645,1646,5,193,0,0,1646,1647,7,14,0,0,1647,1648,5, - 321,0,0,1648,1832,3,816,408,0,1649,1650,5,186,0,0,1650,1651,5,321, - 0,0,1651,1832,3,816,408,0,1652,1654,5,269,0,0,1653,1652,1,0,0,0, - 1653,1654,1,0,0,0,1654,1655,1,0,0,0,1655,1656,5,228,0,0,1656,1832, - 3,776,388,0,1657,1658,5,275,0,0,1658,1832,3,310,155,0,1659,1660, - 5,77,0,0,1660,1832,5,275,0,0,1661,1662,5,282,0,0,1662,1663,5,94, - 0,0,1663,1832,3,812,406,0,1664,1665,5,333,0,0,1665,1666,5,351,0, - 0,1666,1832,3,766,383,0,1667,1668,5,312,0,0,1668,1673,5,219,0,0, - 1669,1674,5,270,0,0,1670,1674,5,113,0,0,1671,1674,5,53,0,0,1672, - 1674,3,174,87,0,1673,1669,1,0,0,0,1673,1670,1,0,0,0,1673,1671,1, - 0,0,0,1673,1672,1,0,0,0,1674,1832,1,0,0,0,1675,1682,5,193,0,0,1676, - 1682,5,186,0,0,1677,1679,5,269,0,0,1678,1677,1,0,0,0,1678,1679,1, - 0,0,0,1679,1680,1,0,0,0,1680,1682,5,209,0,0,1681,1675,1,0,0,0,1681, - 1676,1,0,0,0,1681,1678,1,0,0,0,1682,1683,1,0,0,0,1683,1684,5,414, - 0,0,1684,1685,5,251,0,0,1685,1832,5,327,0,0,1686,1688,5,191,0,0, - 1687,1689,5,44,0,0,1688,1687,1,0,0,0,1688,1689,1,0,0,0,1689,1691, - 1,0,0,0,1690,1692,3,416,208,0,1691,1690,1,0,0,0,1691,1692,1,0,0, - 0,1692,1693,1,0,0,0,1693,1695,3,796,398,0,1694,1696,3,88,44,0,1695, - 1694,1,0,0,0,1695,1696,1,0,0,0,1696,1832,1,0,0,0,1697,1699,5,133, - 0,0,1698,1700,5,44,0,0,1699,1698,1,0,0,0,1699,1700,1,0,0,0,1700, - 1702,1,0,0,0,1701,1703,3,288,144,0,1702,1701,1,0,0,0,1702,1703,1, - 0,0,0,1703,1704,1,0,0,0,1704,1832,3,126,63,0,1705,1707,5,138,0,0, - 1706,1708,5,44,0,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708,1709, - 1,0,0,0,1709,1712,3,796,398,0,1710,1713,3,86,43,0,1711,1713,3,216, - 108,0,1712,1710,1,0,0,0,1712,1711,1,0,0,0,1713,1832,1,0,0,0,1714, - 1716,5,138,0,0,1715,1717,5,44,0,0,1716,1715,1,0,0,0,1716,1717,1, - 0,0,0,1717,1718,1,0,0,0,1718,1719,3,796,398,0,1719,1720,7,15,0,0, - 1720,1721,5,77,0,0,1721,1722,5,78,0,0,1722,1832,1,0,0,0,1723,1725, - 5,138,0,0,1724,1726,5,44,0,0,1725,1724,1,0,0,0,1725,1726,1,0,0,0, - 1726,1727,1,0,0,0,1727,1728,3,796,398,0,1728,1729,5,191,0,0,1729, - 1731,5,437,0,0,1730,1732,3,416,208,0,1731,1730,1,0,0,0,1731,1732, - 1,0,0,0,1732,1832,1,0,0,0,1733,1735,5,138,0,0,1734,1736,5,44,0,0, - 1735,1734,1,0,0,0,1735,1736,1,0,0,0,1736,1737,1,0,0,0,1737,1738, - 3,796,398,0,1738,1739,5,333,0,0,1739,1740,5,342,0,0,1740,1741,3, - 810,405,0,1741,1832,1,0,0,0,1742,1744,5,138,0,0,1743,1745,5,44,0, - 0,1744,1743,1,0,0,0,1744,1745,1,0,0,0,1745,1746,1,0,0,0,1746,1748, - 3,796,398,0,1747,1742,1,0,0,0,1747,1748,1,0,0,0,1748,1749,1,0,0, - 0,1749,1750,7,16,0,0,1750,1832,3,92,46,0,1751,1753,5,138,0,0,1752, - 1754,5,44,0,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0, - 0,0,1755,1756,3,796,398,0,1756,1757,5,333,0,0,1757,1758,5,345,0, - 0,1758,1759,3,816,408,0,1759,1832,1,0,0,0,1760,1762,5,138,0,0,1761, - 1763,5,44,0,0,1762,1761,1,0,0,0,1762,1763,1,0,0,0,1763,1764,1,0, - 0,0,1764,1765,3,796,398,0,1765,1766,5,133,0,0,1766,1767,5,438,0, - 0,1767,1768,3,132,66,0,1768,1769,5,36,0,0,1769,1778,5,219,0,0,1770, - 1772,5,2,0,0,1771,1773,3,194,97,0,1772,1771,1,0,0,0,1773,1774,1, - 0,0,0,1774,1772,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0,0,0,1776, - 1777,5,3,0,0,1777,1779,1,0,0,0,1778,1770,1,0,0,0,1778,1779,1,0,0, - 0,1779,1832,1,0,0,0,1780,1782,5,138,0,0,1781,1783,5,44,0,0,1782, - 1781,1,0,0,0,1782,1783,1,0,0,0,1783,1784,1,0,0,0,1784,1798,3,796, - 398,0,1785,1790,5,314,0,0,1786,1788,5,105,0,0,1787,1786,1,0,0,0, - 1787,1788,1,0,0,0,1788,1789,1,0,0,0,1789,1791,3,196,98,0,1790,1787, - 1,0,0,0,1790,1791,1,0,0,0,1791,1799,1,0,0,0,1792,1796,5,333,0,0, - 1793,1797,3,194,97,0,1794,1795,5,438,0,0,1795,1797,3,132,66,0,1796, - 1793,1,0,0,0,1796,1794,1,0,0,0,1797,1799,1,0,0,0,1798,1785,1,0,0, - 0,1798,1792,1,0,0,0,1799,1800,1,0,0,0,1800,1798,1,0,0,0,1800,1801, - 1,0,0,0,1801,1832,1,0,0,0,1802,1804,5,138,0,0,1803,1805,5,44,0,0, - 1804,1803,1,0,0,0,1804,1805,1,0,0,0,1805,1806,1,0,0,0,1806,1807, - 3,796,398,0,1807,1808,5,191,0,0,1808,1810,5,219,0,0,1809,1811,3, - 416,208,0,1810,1809,1,0,0,0,1810,1811,1,0,0,0,1811,1832,1,0,0,0, - 1812,1814,5,138,0,0,1813,1815,5,44,0,0,1814,1813,1,0,0,0,1814,1815, - 1,0,0,0,1815,1816,1,0,0,0,1816,1819,3,796,398,0,1817,1818,5,333, - 0,0,1818,1820,5,174,0,0,1819,1817,1,0,0,0,1819,1820,1,0,0,0,1820, - 1821,1,0,0,0,1821,1822,5,360,0,0,1822,1824,3,646,323,0,1823,1825, - 3,90,45,0,1824,1823,1,0,0,0,1824,1825,1,0,0,0,1825,1828,1,0,0,0, - 1826,1827,5,100,0,0,1827,1829,3,668,334,0,1828,1826,1,0,0,0,1828, - 1829,1,0,0,0,1829,1832,1,0,0,0,1830,1832,3,216,108,0,1831,1598,1, - 0,0,0,1831,1604,1,0,0,0,1831,1613,1,0,0,0,1831,1616,1,0,0,0,1831, - 1625,1,0,0,0,1831,1628,1,0,0,0,1831,1631,1,0,0,0,1831,1633,1,0,0, - 0,1831,1638,1,0,0,0,1831,1645,1,0,0,0,1831,1649,1,0,0,0,1831,1653, - 1,0,0,0,1831,1657,1,0,0,0,1831,1659,1,0,0,0,1831,1661,1,0,0,0,1831, - 1664,1,0,0,0,1831,1667,1,0,0,0,1831,1681,1,0,0,0,1831,1686,1,0,0, - 0,1831,1697,1,0,0,0,1831,1705,1,0,0,0,1831,1714,1,0,0,0,1831,1723, - 1,0,0,0,1831,1733,1,0,0,0,1831,1747,1,0,0,0,1831,1751,1,0,0,0,1831, - 1760,1,0,0,0,1831,1780,1,0,0,0,1831,1802,1,0,0,0,1831,1812,1,0,0, - 0,1831,1830,1,0,0,0,1832,85,1,0,0,0,1833,1834,5,333,0,0,1834,1835, - 5,53,0,0,1835,1839,3,668,334,0,1836,1837,5,191,0,0,1837,1839,5,53, - 0,0,1838,1833,1,0,0,0,1838,1836,1,0,0,0,1839,87,1,0,0,0,1840,1841, - 7,17,0,0,1841,89,1,0,0,0,1842,1843,5,43,0,0,1843,1844,3,310,155, - 0,1844,91,1,0,0,0,1845,1846,5,2,0,0,1846,1851,3,96,48,0,1847,1848, - 5,6,0,0,1848,1850,3,96,48,0,1849,1847,1,0,0,0,1850,1853,1,0,0,0, - 1851,1849,1,0,0,0,1851,1852,1,0,0,0,1852,1854,1,0,0,0,1853,1851, - 1,0,0,0,1854,1855,5,3,0,0,1855,93,1,0,0,0,1856,1857,5,105,0,0,1857, - 1858,3,92,46,0,1858,95,1,0,0,0,1859,1864,3,822,411,0,1860,1861,5, - 10,0,0,1861,1865,3,282,141,0,1862,1863,5,11,0,0,1863,1865,3,280, - 140,0,1864,1860,1,0,0,0,1864,1862,1,0,0,0,1864,1865,1,0,0,0,1865, - 97,1,0,0,0,1866,1867,5,62,0,0,1867,1868,5,422,0,0,1868,1869,5,105, - 0,0,1869,1870,5,2,0,0,1870,1871,5,533,0,0,1871,1872,3,196,98,0,1872, - 1873,5,6,0,0,1873,1874,5,534,0,0,1874,1875,3,196,98,0,1875,1876, - 5,3,0,0,1876,1890,1,0,0,0,1877,1878,5,62,0,0,1878,1879,5,422,0,0, - 1879,1880,5,68,0,0,1880,1890,3,528,264,0,1881,1882,5,62,0,0,1882, - 1883,5,422,0,0,1883,1884,5,64,0,0,1884,1885,3,528,264,0,1885,1886, - 5,94,0,0,1886,1887,3,528,264,0,1887,1890,1,0,0,0,1888,1890,5,53, - 0,0,1889,1866,1,0,0,0,1889,1877,1,0,0,0,1889,1881,1,0,0,0,1889,1888, - 1,0,0,0,1890,99,1,0,0,0,1891,1892,5,138,0,0,1892,1893,5,360,0,0, - 1893,1894,3,310,155,0,1894,1899,3,102,51,0,1895,1896,5,6,0,0,1896, - 1898,3,102,51,0,1897,1895,1,0,0,0,1898,1901,1,0,0,0,1899,1897,1, - 0,0,0,1899,1900,1,0,0,0,1900,101,1,0,0,0,1901,1899,1,0,0,0,1902, - 1903,5,133,0,0,1903,1904,5,143,0,0,1904,1906,3,638,319,0,1905,1907, - 3,88,44,0,1906,1905,1,0,0,0,1906,1907,1,0,0,0,1907,1933,1,0,0,0, - 1908,1909,5,191,0,0,1909,1911,5,143,0,0,1910,1912,3,416,208,0,1911, - 1910,1,0,0,0,1911,1912,1,0,0,0,1912,1913,1,0,0,0,1913,1915,3,816, - 408,0,1914,1916,3,88,44,0,1915,1914,1,0,0,0,1915,1916,1,0,0,0,1916, - 1933,1,0,0,0,1917,1918,5,138,0,0,1918,1919,5,143,0,0,1919,1922,3, - 816,408,0,1920,1921,5,333,0,0,1921,1923,5,174,0,0,1922,1920,1,0, - 0,0,1922,1923,1,0,0,0,1923,1924,1,0,0,0,1924,1925,5,360,0,0,1925, - 1927,3,646,323,0,1926,1928,3,90,45,0,1927,1926,1,0,0,0,1927,1928, - 1,0,0,0,1928,1930,1,0,0,0,1929,1931,3,88,44,0,1930,1929,1,0,0,0, - 1930,1931,1,0,0,0,1931,1933,1,0,0,0,1932,1902,1,0,0,0,1932,1908, - 1,0,0,0,1932,1917,1,0,0,0,1933,103,1,0,0,0,1934,1937,5,157,0,0,1935, - 1938,3,816,408,0,1936,1938,5,30,0,0,1937,1935,1,0,0,0,1937,1936, - 1,0,0,0,1938,105,1,0,0,0,1939,1941,5,169,0,0,1940,1942,5,107,0,0, - 1941,1940,1,0,0,0,1941,1942,1,0,0,0,1942,1943,1,0,0,0,1943,1945, - 3,770,385,0,1944,1946,3,138,69,0,1945,1944,1,0,0,0,1945,1946,1,0, - 0,0,1946,1947,1,0,0,0,1947,1949,7,18,0,0,1948,1950,5,297,0,0,1949, - 1948,1,0,0,0,1949,1950,1,0,0,0,1950,1954,1,0,0,0,1951,1955,3,806, - 403,0,1952,1955,5,343,0,0,1953,1955,5,344,0,0,1954,1951,1,0,0,0, - 1954,1952,1,0,0,0,1954,1953,1,0,0,0,1955,1961,1,0,0,0,1956,1958, - 5,100,0,0,1957,1956,1,0,0,0,1957,1958,1,0,0,0,1958,1959,1,0,0,0, - 1959,1960,5,184,0,0,1960,1962,3,806,403,0,1961,1957,1,0,0,0,1961, - 1962,1,0,0,0,1962,1964,1,0,0,0,1963,1965,5,105,0,0,1964,1963,1,0, - 0,0,1964,1965,1,0,0,0,1965,1966,1,0,0,0,1966,1968,3,110,55,0,1967, - 1969,3,632,316,0,1968,1967,1,0,0,0,1968,1969,1,0,0,0,1969,1989,1, - 0,0,0,1970,1971,5,169,0,0,1971,1972,5,2,0,0,1972,1973,3,524,262, - 0,1973,1974,5,3,0,0,1974,1976,5,94,0,0,1975,1977,5,297,0,0,1976, - 1975,1,0,0,0,1976,1977,1,0,0,0,1977,1981,1,0,0,0,1978,1982,3,806, - 403,0,1979,1982,5,343,0,0,1980,1982,5,344,0,0,1981,1978,1,0,0,0, - 1981,1979,1,0,0,0,1981,1980,1,0,0,0,1982,1984,1,0,0,0,1983,1985, - 5,105,0,0,1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985,1986,1,0,0,0, - 1986,1987,3,110,55,0,1987,1989,1,0,0,0,1988,1939,1,0,0,0,1988,1970, - 1,0,0,0,1989,107,1,0,0,0,1990,2033,5,107,0,0,1991,2033,5,112,0,0, - 1992,1994,7,19,0,0,1993,1995,5,36,0,0,1994,1993,1,0,0,0,1994,1995, - 1,0,0,0,1995,1996,1,0,0,0,1996,2033,3,806,403,0,1997,2033,5,171, - 0,0,1998,2033,5,216,0,0,1999,2000,5,209,0,0,2000,2003,5,298,0,0, - 2001,2004,3,142,71,0,2002,2004,5,9,0,0,2003,2001,1,0,0,0,2003,2002, - 1,0,0,0,2004,2033,1,0,0,0,2005,2007,5,209,0,0,2006,2008,5,77,0,0, - 2007,2006,1,0,0,0,2007,2008,1,0,0,0,2008,2009,1,0,0,0,2009,2010, - 5,78,0,0,2010,2033,3,142,71,0,2011,2012,5,194,0,0,2012,2033,3,806, - 403,0,2013,2030,7,20,0,0,2014,2017,5,2,0,0,2015,2018,3,142,71,0, - 2016,2018,5,9,0,0,2017,2015,1,0,0,0,2017,2016,1,0,0,0,2018,2026, - 1,0,0,0,2019,2022,5,6,0,0,2020,2023,3,142,71,0,2021,2023,5,9,0,0, - 2022,2020,1,0,0,0,2022,2021,1,0,0,0,2023,2025,1,0,0,0,2024,2019, - 1,0,0,0,2025,2028,1,0,0,0,2026,2024,1,0,0,0,2026,2027,1,0,0,0,2027, - 2029,1,0,0,0,2028,2026,1,0,0,0,2029,2031,5,3,0,0,2030,2014,1,0,0, - 0,2030,2031,1,0,0,0,2031,2033,1,0,0,0,2032,1990,1,0,0,0,2032,1991, - 1,0,0,0,2032,1992,1,0,0,0,2032,1997,1,0,0,0,2032,1998,1,0,0,0,2032, - 1999,1,0,0,0,2032,2005,1,0,0,0,2032,2011,1,0,0,0,2032,2013,1,0,0, - 0,2033,2036,1,0,0,0,2034,2032,1,0,0,0,2034,2035,1,0,0,0,2035,109, - 1,0,0,0,2036,2034,1,0,0,0,2037,2056,3,108,54,0,2038,2041,5,2,0,0, - 2039,2042,3,108,54,0,2040,2042,3,112,56,0,2041,2039,1,0,0,0,2041, - 2040,1,0,0,0,2042,2050,1,0,0,0,2043,2046,5,6,0,0,2044,2047,3,108, - 54,0,2045,2047,3,112,56,0,2046,2044,1,0,0,0,2046,2045,1,0,0,0,2047, - 2049,1,0,0,0,2048,2043,1,0,0,0,2049,2052,1,0,0,0,2050,2048,1,0,0, - 0,2050,2051,1,0,0,0,2051,2053,1,0,0,0,2052,2050,1,0,0,0,2053,2054, - 5,3,0,0,2054,2056,1,0,0,0,2055,2037,1,0,0,0,2055,2038,1,0,0,0,2056, - 111,1,0,0,0,2057,2072,3,822,411,0,2058,2073,3,54,27,0,2059,2073, - 3,196,98,0,2060,2073,5,9,0,0,2061,2062,5,2,0,0,2062,2067,3,52,26, - 0,2063,2064,5,6,0,0,2064,2066,3,52,26,0,2065,2063,1,0,0,0,2066,2069, - 1,0,0,0,2067,2065,1,0,0,0,2067,2068,1,0,0,0,2068,2070,1,0,0,0,2069, - 2067,1,0,0,0,2070,2071,5,3,0,0,2071,2073,1,0,0,0,2072,2058,1,0,0, - 0,2072,2059,1,0,0,0,2072,2060,1,0,0,0,2072,2061,1,0,0,0,2072,2073, - 1,0,0,0,2073,113,1,0,0,0,2074,2076,5,46,0,0,2075,2077,3,116,58,0, - 2076,2075,1,0,0,0,2076,2077,1,0,0,0,2077,2078,1,0,0,0,2078,2080, - 5,92,0,0,2079,2081,3,288,144,0,2080,2079,1,0,0,0,2080,2081,1,0,0, - 0,2081,2082,1,0,0,0,2082,2148,3,768,384,0,2083,2085,5,2,0,0,2084, - 2086,3,120,60,0,2085,2084,1,0,0,0,2085,2086,1,0,0,0,2086,2087,1, - 0,0,0,2087,2089,5,3,0,0,2088,2090,3,158,79,0,2089,2088,1,0,0,0,2089, - 2090,1,0,0,0,2090,2092,1,0,0,0,2091,2093,3,160,80,0,2092,2091,1, - 0,0,0,2092,2093,1,0,0,0,2093,2095,1,0,0,0,2094,2096,3,164,82,0,2095, - 2094,1,0,0,0,2095,2096,1,0,0,0,2096,2098,1,0,0,0,2097,2099,3,166, - 83,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1,0,0,0,2100, - 2102,3,168,84,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102,2104,1, - 0,0,0,2103,2105,3,170,85,0,2104,2103,1,0,0,0,2104,2105,1,0,0,0,2105, - 2149,1,0,0,0,2106,2107,5,275,0,0,2107,2109,3,310,155,0,2108,2110, - 3,118,59,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1,0,0,0, - 2111,2113,3,160,80,0,2112,2111,1,0,0,0,2112,2113,1,0,0,0,2113,2115, - 1,0,0,0,2114,2116,3,164,82,0,2115,2114,1,0,0,0,2115,2116,1,0,0,0, - 2116,2118,1,0,0,0,2117,2119,3,166,83,0,2118,2117,1,0,0,0,2118,2119, - 1,0,0,0,2119,2121,1,0,0,0,2120,2122,3,168,84,0,2121,2120,1,0,0,0, - 2121,2122,1,0,0,0,2122,2124,1,0,0,0,2123,2125,3,170,85,0,2124,2123, - 1,0,0,0,2124,2125,1,0,0,0,2125,2149,1,0,0,0,2126,2127,5,285,0,0, - 2127,2128,5,275,0,0,2128,2130,3,776,388,0,2129,2131,3,118,59,0,2130, - 2129,1,0,0,0,2130,2131,1,0,0,0,2131,2132,1,0,0,0,2132,2134,3,98, - 49,0,2133,2135,3,160,80,0,2134,2133,1,0,0,0,2134,2135,1,0,0,0,2135, - 2137,1,0,0,0,2136,2138,3,164,82,0,2137,2136,1,0,0,0,2137,2138,1, - 0,0,0,2138,2140,1,0,0,0,2139,2141,3,166,83,0,2140,2139,1,0,0,0,2140, - 2141,1,0,0,0,2141,2143,1,0,0,0,2142,2144,3,168,84,0,2143,2142,1, - 0,0,0,2143,2144,1,0,0,0,2144,2146,1,0,0,0,2145,2147,3,170,85,0,2146, - 2145,1,0,0,0,2146,2147,1,0,0,0,2147,2149,1,0,0,0,2148,2083,1,0,0, - 0,2148,2106,1,0,0,0,2148,2126,1,0,0,0,2149,115,1,0,0,0,2150,2156, - 5,354,0,0,2151,2156,5,352,0,0,2152,2153,7,21,0,0,2153,2156,7,22, - 0,0,2154,2156,5,367,0,0,2155,2150,1,0,0,0,2155,2151,1,0,0,0,2155, - 2152,1,0,0,0,2155,2154,1,0,0,0,2156,117,1,0,0,0,2157,2158,5,2,0, - 0,2158,2163,3,124,62,0,2159,2160,5,6,0,0,2160,2162,3,124,62,0,2161, - 2159,1,0,0,0,2162,2165,1,0,0,0,2163,2161,1,0,0,0,2163,2164,1,0,0, - 0,2164,2166,1,0,0,0,2165,2163,1,0,0,0,2166,2167,5,3,0,0,2167,119, - 1,0,0,0,2168,2173,3,122,61,0,2169,2170,5,6,0,0,2170,2172,3,122,61, - 0,2171,2169,1,0,0,0,2172,2175,1,0,0,0,2173,2171,1,0,0,0,2173,2174, - 1,0,0,0,2174,121,1,0,0,0,2175,2173,1,0,0,0,2176,2177,5,45,0,0,2177, - 2179,3,816,408,0,2178,2176,1,0,0,0,2178,2179,1,0,0,0,2179,2180,1, - 0,0,0,2180,2192,3,136,68,0,2181,2192,3,126,63,0,2182,2183,5,120, - 0,0,2183,2188,3,776,388,0,2184,2185,7,23,0,0,2185,2187,3,134,67, - 0,2186,2184,1,0,0,0,2187,2190,1,0,0,0,2188,2186,1,0,0,0,2188,2189, - 1,0,0,0,2189,2192,1,0,0,0,2190,2188,1,0,0,0,2191,2178,1,0,0,0,2191, - 2181,1,0,0,0,2191,2182,1,0,0,0,2192,123,1,0,0,0,2193,2196,3,800, - 400,0,2194,2195,5,105,0,0,2195,2197,5,280,0,0,2196,2194,1,0,0,0, - 2196,2197,1,0,0,0,2197,2201,1,0,0,0,2198,2200,3,128,64,0,2199,2198, - 1,0,0,0,2200,2203,1,0,0,0,2201,2199,1,0,0,0,2201,2202,1,0,0,0,2202, - 2210,1,0,0,0,2203,2201,1,0,0,0,2204,2205,5,45,0,0,2205,2207,3,816, - 408,0,2206,2204,1,0,0,0,2206,2207,1,0,0,0,2207,2208,1,0,0,0,2208, - 2210,3,136,68,0,2209,2193,1,0,0,0,2209,2206,1,0,0,0,2210,125,1,0, - 0,0,2211,2212,3,800,400,0,2212,2214,3,646,323,0,2213,2215,3,214, - 107,0,2214,2213,1,0,0,0,2214,2215,1,0,0,0,2215,2225,1,0,0,0,2216, - 2223,5,345,0,0,2217,2224,5,544,0,0,2218,2224,5,205,0,0,2219,2224, - 5,545,0,0,2220,2224,5,546,0,0,2221,2224,5,53,0,0,2222,2224,3,816, - 408,0,2223,2217,1,0,0,0,2223,2218,1,0,0,0,2223,2219,1,0,0,0,2223, - 2220,1,0,0,0,2223,2221,1,0,0,0,2223,2222,1,0,0,0,2224,2226,1,0,0, - 0,2225,2216,1,0,0,0,2225,2226,1,0,0,0,2226,2229,1,0,0,0,2227,2228, - 5,543,0,0,2228,2230,3,816,408,0,2229,2227,1,0,0,0,2229,2230,1,0, - 0,0,2230,2232,1,0,0,0,2231,2233,3,90,45,0,2232,2231,1,0,0,0,2232, - 2233,1,0,0,0,2233,2236,1,0,0,0,2234,2235,5,105,0,0,2235,2237,5,280, - 0,0,2236,2234,1,0,0,0,2236,2237,1,0,0,0,2237,2241,1,0,0,0,2238,2240, - 3,128,64,0,2239,2238,1,0,0,0,2240,2243,1,0,0,0,2241,2239,1,0,0,0, - 2241,2242,1,0,0,0,2242,127,1,0,0,0,2243,2241,1,0,0,0,2244,2245,5, - 45,0,0,2245,2247,3,816,408,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0, - 2247,2248,1,0,0,0,2248,2253,3,130,65,0,2249,2251,5,77,0,0,2250,2249, - 1,0,0,0,2250,2251,1,0,0,0,2251,2252,1,0,0,0,2252,2254,5,54,0,0,2253, - 2250,1,0,0,0,2253,2254,1,0,0,0,2254,2257,1,0,0,0,2255,2256,5,69, - 0,0,2256,2258,7,9,0,0,2257,2255,1,0,0,0,2257,2258,1,0,0,0,2258,129, - 1,0,0,0,2259,2261,5,77,0,0,2260,2259,1,0,0,0,2260,2261,1,0,0,0,2261, - 2262,1,0,0,0,2262,2340,5,78,0,0,2263,2265,5,98,0,0,2264,2266,3,394, - 197,0,2265,2264,1,0,0,0,2265,2266,1,0,0,0,2266,2268,1,0,0,0,2267, - 2269,3,172,86,0,2268,2267,1,0,0,0,2268,2269,1,0,0,0,2269,2340,1, - 0,0,0,2270,2276,5,98,0,0,2271,2273,5,273,0,0,2272,2274,5,77,0,0, - 2273,2272,1,0,0,0,2273,2274,1,0,0,0,2274,2275,1,0,0,0,2275,2277, - 5,56,0,0,2276,2271,1,0,0,0,2276,2277,1,0,0,0,2277,2280,1,0,0,0,2278, - 2279,5,441,0,0,2279,2281,3,354,177,0,2280,2278,1,0,0,0,2280,2281, - 1,0,0,0,2281,2283,1,0,0,0,2282,2284,3,566,283,0,2283,2282,1,0,0, - 0,2283,2284,1,0,0,0,2284,2286,1,0,0,0,2285,2287,3,172,86,0,2286, - 2285,1,0,0,0,2286,2287,1,0,0,0,2287,2340,1,0,0,0,2288,2289,5,85, - 0,0,2289,2291,5,245,0,0,2290,2292,3,394,197,0,2291,2290,1,0,0,0, - 2291,2292,1,0,0,0,2292,2294,1,0,0,0,2293,2295,3,172,86,0,2294,2293, - 1,0,0,0,2294,2295,1,0,0,0,2295,2340,1,0,0,0,2296,2297,5,42,0,0,2297, - 2298,5,2,0,0,2298,2299,3,668,334,0,2299,2302,5,3,0,0,2300,2301,5, - 269,0,0,2301,2303,5,228,0,0,2302,2300,1,0,0,0,2302,2303,1,0,0,0, - 2303,2340,1,0,0,0,2304,2305,5,53,0,0,2305,2340,3,676,338,0,2306, - 2307,5,438,0,0,2307,2308,3,132,66,0,2308,2325,5,36,0,0,2309,2318, - 5,219,0,0,2310,2312,5,2,0,0,2311,2313,3,194,97,0,2312,2311,1,0,0, - 0,2313,2314,1,0,0,0,2314,2312,1,0,0,0,2314,2315,1,0,0,0,2315,2316, - 1,0,0,0,2316,2317,5,3,0,0,2317,2319,1,0,0,0,2318,2310,1,0,0,0,2318, - 2319,1,0,0,0,2319,2326,1,0,0,0,2320,2321,5,2,0,0,2321,2322,3,668, - 334,0,2322,2323,5,3,0,0,2323,2324,5,440,0,0,2324,2326,1,0,0,0,2325, - 2309,1,0,0,0,2325,2320,1,0,0,0,2326,2340,1,0,0,0,2327,2328,5,86, - 0,0,2328,2330,3,776,388,0,2329,2331,3,138,69,0,2330,2329,1,0,0,0, - 2330,2331,1,0,0,0,2331,2333,1,0,0,0,2332,2334,3,146,73,0,2333,2332, - 1,0,0,0,2333,2334,1,0,0,0,2334,2336,1,0,0,0,2335,2337,3,150,75,0, - 2336,2335,1,0,0,0,2336,2337,1,0,0,0,2337,2340,1,0,0,0,2338,2340, - 3,90,45,0,2339,2260,1,0,0,0,2339,2263,1,0,0,0,2339,2270,1,0,0,0, - 2339,2288,1,0,0,0,2339,2296,1,0,0,0,2339,2304,1,0,0,0,2339,2306, - 1,0,0,0,2339,2327,1,0,0,0,2339,2338,1,0,0,0,2340,131,1,0,0,0,2341, - 2345,5,139,0,0,2342,2343,5,147,0,0,2343,2345,5,53,0,0,2344,2341, - 1,0,0,0,2344,2342,1,0,0,0,2345,133,1,0,0,0,2346,2347,7,24,0,0,2347, - 135,1,0,0,0,2348,2349,5,42,0,0,2349,2350,5,2,0,0,2350,2351,3,668, - 334,0,2351,2355,5,3,0,0,2352,2354,3,266,133,0,2353,2352,1,0,0,0, - 2354,2357,1,0,0,0,2355,2353,1,0,0,0,2355,2356,1,0,0,0,2356,2445, - 1,0,0,0,2357,2355,1,0,0,0,2358,2362,5,98,0,0,2359,2360,5,85,0,0, - 2360,2362,5,245,0,0,2361,2358,1,0,0,0,2361,2359,1,0,0,0,2362,2386, - 1,0,0,0,2363,2365,3,138,69,0,2364,2366,3,144,72,0,2365,2364,1,0, - 0,0,2365,2366,1,0,0,0,2366,2368,1,0,0,0,2367,2369,3,394,197,0,2368, - 2367,1,0,0,0,2368,2369,1,0,0,0,2369,2371,1,0,0,0,2370,2372,3,172, - 86,0,2371,2370,1,0,0,0,2371,2372,1,0,0,0,2372,2376,1,0,0,0,2373, - 2375,3,266,133,0,2374,2373,1,0,0,0,2375,2378,1,0,0,0,2376,2374,1, - 0,0,0,2376,2377,1,0,0,0,2377,2387,1,0,0,0,2378,2376,1,0,0,0,2379, - 2383,3,174,87,0,2380,2382,3,266,133,0,2381,2380,1,0,0,0,2382,2385, - 1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0,0,2384,2387,1,0,0,0,2385, - 2383,1,0,0,0,2386,2363,1,0,0,0,2386,2379,1,0,0,0,2387,2445,1,0,0, - 0,2388,2390,5,199,0,0,2389,2391,3,164,82,0,2390,2389,1,0,0,0,2390, - 2391,1,0,0,0,2391,2392,1,0,0,0,2392,2393,5,2,0,0,2393,2398,3,148, - 74,0,2394,2395,5,6,0,0,2395,2397,3,148,74,0,2396,2394,1,0,0,0,2397, - 2400,1,0,0,0,2398,2396,1,0,0,0,2398,2399,1,0,0,0,2399,2401,1,0,0, - 0,2400,2398,1,0,0,0,2401,2403,5,3,0,0,2402,2404,3,144,72,0,2403, - 2402,1,0,0,0,2403,2404,1,0,0,0,2404,2406,1,0,0,0,2405,2407,3,394, - 197,0,2406,2405,1,0,0,0,2406,2407,1,0,0,0,2407,2409,1,0,0,0,2408, - 2410,3,172,86,0,2409,2408,1,0,0,0,2409,2410,1,0,0,0,2410,2416,1, - 0,0,0,2411,2412,5,103,0,0,2412,2413,5,2,0,0,2413,2414,3,668,334, - 0,2414,2415,5,3,0,0,2415,2417,1,0,0,0,2416,2411,1,0,0,0,2416,2417, - 1,0,0,0,2417,2421,1,0,0,0,2418,2420,3,266,133,0,2419,2418,1,0,0, - 0,2420,2423,1,0,0,0,2421,2419,1,0,0,0,2421,2422,1,0,0,0,2422,2445, - 1,0,0,0,2423,2421,1,0,0,0,2424,2425,5,63,0,0,2425,2426,5,245,0,0, - 2426,2427,3,138,69,0,2427,2428,5,86,0,0,2428,2430,3,776,388,0,2429, - 2431,3,138,69,0,2430,2429,1,0,0,0,2430,2431,1,0,0,0,2431,2433,1, - 0,0,0,2432,2434,3,146,73,0,2433,2432,1,0,0,0,2433,2434,1,0,0,0,2434, - 2436,1,0,0,0,2435,2437,3,150,75,0,2436,2435,1,0,0,0,2436,2437,1, - 0,0,0,2437,2441,1,0,0,0,2438,2440,3,266,133,0,2439,2438,1,0,0,0, - 2440,2443,1,0,0,0,2441,2439,1,0,0,0,2441,2442,1,0,0,0,2442,2445, - 1,0,0,0,2443,2441,1,0,0,0,2444,2348,1,0,0,0,2444,2361,1,0,0,0,2444, - 2388,1,0,0,0,2444,2424,1,0,0,0,2445,137,1,0,0,0,2446,2447,5,2,0, - 0,2447,2448,3,142,71,0,2448,2449,5,3,0,0,2449,139,1,0,0,0,2450,2451, - 5,2,0,0,2451,2456,3,800,400,0,2452,2453,5,6,0,0,2453,2455,3,800, - 400,0,2454,2452,1,0,0,0,2455,2458,1,0,0,0,2456,2454,1,0,0,0,2456, - 2457,1,0,0,0,2457,2459,1,0,0,0,2458,2456,1,0,0,0,2459,2460,5,3,0, - 0,2460,141,1,0,0,0,2461,2466,3,796,398,0,2462,2463,5,6,0,0,2463, - 2465,3,796,398,0,2464,2462,1,0,0,0,2465,2468,1,0,0,0,2466,2464,1, - 0,0,0,2466,2467,1,0,0,0,2467,143,1,0,0,0,2468,2466,1,0,0,0,2469, - 2470,5,441,0,0,2470,2471,3,138,69,0,2471,145,1,0,0,0,2472,2473,5, - 258,0,0,2473,2474,7,25,0,0,2474,147,1,0,0,0,2475,2476,3,356,178, - 0,2476,2483,5,105,0,0,2477,2484,3,408,204,0,2478,2479,5,278,0,0, - 2479,2480,5,2,0,0,2480,2481,3,408,204,0,2481,2482,5,3,0,0,2482,2484, - 1,0,0,0,2483,2477,1,0,0,0,2483,2478,1,0,0,0,2484,149,1,0,0,0,2485, - 2487,3,152,76,0,2486,2488,3,154,77,0,2487,2486,1,0,0,0,2487,2488, - 1,0,0,0,2488,2494,1,0,0,0,2489,2491,3,154,77,0,2490,2492,3,152,76, - 0,2491,2490,1,0,0,0,2491,2492,1,0,0,0,2492,2494,1,0,0,0,2493,2485, - 1,0,0,0,2493,2489,1,0,0,0,2494,151,1,0,0,0,2495,2496,5,80,0,0,2496, - 2497,5,369,0,0,2497,2498,3,156,78,0,2498,153,1,0,0,0,2499,2500,5, - 80,0,0,2500,2501,5,182,0,0,2501,2502,3,156,78,0,2502,155,1,0,0,0, - 2503,2504,5,269,0,0,2504,2513,5,132,0,0,2505,2513,5,315,0,0,2506, - 2513,5,150,0,0,2507,2508,5,333,0,0,2508,2510,7,26,0,0,2509,2511, - 3,142,71,0,2510,2509,1,0,0,0,2510,2511,1,0,0,0,2511,2513,1,0,0,0, - 2512,2503,1,0,0,0,2512,2505,1,0,0,0,2512,2506,1,0,0,0,2512,2507, - 1,0,0,0,2513,157,1,0,0,0,2514,2515,5,238,0,0,2515,2516,5,2,0,0,2516, - 2517,3,756,378,0,2517,2518,5,3,0,0,2518,159,1,0,0,0,2519,2520,5, - 285,0,0,2520,2521,5,147,0,0,2521,2522,3,816,408,0,2522,2523,5,2, - 0,0,2523,2528,3,162,81,0,2524,2525,5,6,0,0,2525,2527,3,162,81,0, - 2526,2524,1,0,0,0,2527,2530,1,0,0,0,2528,2526,1,0,0,0,2528,2529, - 1,0,0,0,2529,2531,1,0,0,0,2530,2528,1,0,0,0,2531,2532,5,3,0,0,2532, - 161,1,0,0,0,2533,2540,3,796,398,0,2534,2540,3,682,341,0,2535,2536, - 5,2,0,0,2536,2537,3,668,334,0,2537,2538,5,3,0,0,2538,2540,1,0,0, - 0,2539,2533,1,0,0,0,2539,2534,1,0,0,0,2539,2535,1,0,0,0,2540,2542, - 1,0,0,0,2541,2543,3,90,45,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0, - 2543,2545,1,0,0,0,2544,2546,3,310,155,0,2545,2544,1,0,0,0,2545,2546, - 1,0,0,0,2546,163,1,0,0,0,2547,2548,5,100,0,0,2548,2549,3,816,408, - 0,2549,165,1,0,0,0,2550,2551,5,105,0,0,2551,2555,3,92,46,0,2552, - 2553,7,27,0,0,2553,2555,5,277,0,0,2554,2550,1,0,0,0,2554,2552,1, - 0,0,0,2555,167,1,0,0,0,2556,2557,5,80,0,0,2557,2563,5,161,0,0,2558, - 2564,5,191,0,0,2559,2560,5,182,0,0,2560,2564,5,320,0,0,2561,2562, - 5,292,0,0,2562,2564,5,320,0,0,2563,2558,1,0,0,0,2563,2559,1,0,0, - 0,2563,2561,1,0,0,0,2564,169,1,0,0,0,2565,2566,5,351,0,0,2566,2567, - 3,766,383,0,2567,171,1,0,0,0,2568,2569,5,100,0,0,2569,2570,5,226, - 0,0,2570,2571,3,170,85,0,2571,173,1,0,0,0,2572,2573,5,100,0,0,2573, - 2574,5,226,0,0,2574,2575,3,816,408,0,2575,175,1,0,0,0,2576,2577, - 5,46,0,0,2577,2582,5,342,0,0,2578,2580,3,288,144,0,2579,2578,1,0, - 0,0,2579,2580,1,0,0,0,2580,2581,1,0,0,0,2581,2583,3,310,155,0,2582, - 2579,1,0,0,0,2582,2583,1,0,0,0,2583,2585,1,0,0,0,2584,2586,3,138, - 69,0,2585,2584,1,0,0,0,2585,2586,1,0,0,0,2586,2587,1,0,0,0,2587, - 2597,5,80,0,0,2588,2593,3,728,364,0,2589,2590,5,6,0,0,2590,2592, - 3,728,364,0,2591,2589,1,0,0,0,2592,2595,1,0,0,0,2593,2591,1,0,0, - 0,2593,2594,1,0,0,0,2594,2598,1,0,0,0,2595,2593,1,0,0,0,2596,2598, - 3,726,363,0,2597,2588,1,0,0,0,2597,2596,1,0,0,0,2598,2599,1,0,0, - 0,2599,2600,3,604,302,0,2600,177,1,0,0,0,2601,2602,5,138,0,0,2602, - 2604,5,342,0,0,2603,2605,3,416,208,0,2604,2603,1,0,0,0,2604,2605, - 1,0,0,0,2605,2606,1,0,0,0,2606,2607,3,310,155,0,2607,2608,5,333, - 0,0,2608,2609,5,342,0,0,2609,2610,3,810,405,0,2610,179,1,0,0,0,2611, - 2613,5,46,0,0,2612,2614,3,116,58,0,2613,2612,1,0,0,0,2613,2614,1, - 0,0,0,2614,2615,1,0,0,0,2615,2617,5,92,0,0,2616,2618,3,288,144,0, - 2617,2616,1,0,0,0,2617,2618,1,0,0,0,2618,2619,1,0,0,0,2619,2620, - 3,182,91,0,2620,2621,5,36,0,0,2621,2623,3,554,277,0,2622,2624,3, - 184,92,0,2623,2622,1,0,0,0,2623,2624,1,0,0,0,2624,181,1,0,0,0,2625, - 2627,3,768,384,0,2626,2628,3,140,70,0,2627,2626,1,0,0,0,2627,2628, - 1,0,0,0,2628,2630,1,0,0,0,2629,2631,3,164,82,0,2630,2629,1,0,0,0, - 2630,2631,1,0,0,0,2631,2633,1,0,0,0,2632,2634,3,166,83,0,2633,2632, - 1,0,0,0,2633,2634,1,0,0,0,2634,2636,1,0,0,0,2635,2637,3,168,84,0, - 2636,2635,1,0,0,0,2636,2637,1,0,0,0,2637,2639,1,0,0,0,2638,2640, - 3,170,85,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640,183,1,0,0,0, - 2641,2645,5,105,0,0,2642,2646,5,174,0,0,2643,2644,5,269,0,0,2644, - 2646,5,174,0,0,2645,2642,1,0,0,0,2645,2643,1,0,0,0,2646,185,1,0, - 0,0,2647,2649,5,46,0,0,2648,2650,5,367,0,0,2649,2648,1,0,0,0,2649, - 2650,1,0,0,0,2650,2651,1,0,0,0,2651,2652,5,259,0,0,2652,2654,5,376, - 0,0,2653,2655,3,288,144,0,2654,2653,1,0,0,0,2654,2655,1,0,0,0,2655, - 2656,1,0,0,0,2656,2658,3,772,386,0,2657,2659,3,140,70,0,2658,2657, - 1,0,0,0,2658,2659,1,0,0,0,2659,2661,1,0,0,0,2660,2662,3,164,82,0, - 2661,2660,1,0,0,0,2661,2662,1,0,0,0,2662,2664,1,0,0,0,2663,2665, - 3,94,47,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665,2667,1,0,0,0, - 2666,2668,3,170,85,0,2667,2666,1,0,0,0,2667,2668,1,0,0,0,2668,2669, - 1,0,0,0,2669,2670,5,36,0,0,2670,2672,3,554,277,0,2671,2673,3,184, - 92,0,2672,2671,1,0,0,0,2672,2673,1,0,0,0,2673,187,1,0,0,0,2674,2675, - 5,305,0,0,2675,2676,5,259,0,0,2676,2678,5,376,0,0,2677,2679,5,109, - 0,0,2678,2677,1,0,0,0,2678,2679,1,0,0,0,2679,2680,1,0,0,0,2680,2682, - 3,774,387,0,2681,2683,3,184,92,0,2682,2681,1,0,0,0,2682,2683,1,0, - 0,0,2683,189,1,0,0,0,2684,2686,5,46,0,0,2685,2687,3,116,58,0,2686, - 2685,1,0,0,0,2686,2687,1,0,0,0,2687,2688,1,0,0,0,2688,2690,5,328, - 0,0,2689,2691,3,288,144,0,2690,2689,1,0,0,0,2690,2691,1,0,0,0,2691, - 2692,1,0,0,0,2692,2698,3,776,388,0,2693,2695,3,194,97,0,2694,2693, - 1,0,0,0,2695,2696,1,0,0,0,2696,2694,1,0,0,0,2696,2697,1,0,0,0,2697, - 2699,1,0,0,0,2698,2694,1,0,0,0,2698,2699,1,0,0,0,2699,191,1,0,0, - 0,2700,2701,5,138,0,0,2701,2703,5,328,0,0,2702,2704,3,416,208,0, - 2703,2702,1,0,0,0,2703,2704,1,0,0,0,2704,2705,1,0,0,0,2705,2707, - 3,776,388,0,2706,2708,3,194,97,0,2707,2706,1,0,0,0,2708,2709,1,0, - 0,0,2709,2707,1,0,0,0,2709,2710,1,0,0,0,2710,193,1,0,0,0,2711,2712, - 5,36,0,0,2712,2745,3,648,324,0,2713,2715,5,148,0,0,2714,2716,3,196, - 98,0,2715,2714,1,0,0,0,2715,2716,1,0,0,0,2716,2745,1,0,0,0,2717, - 2719,5,225,0,0,2718,2720,5,147,0,0,2719,2718,1,0,0,0,2719,2720,1, - 0,0,0,2720,2721,1,0,0,0,2721,2745,3,196,98,0,2722,2723,7,28,0,0, - 2723,2745,3,196,98,0,2724,2725,5,269,0,0,2725,2745,7,29,0,0,2726, - 2727,5,281,0,0,2727,2728,5,147,0,0,2728,2745,3,796,398,0,2729,2730, - 5,328,0,0,2730,2731,5,266,0,0,2731,2745,3,310,155,0,2732,2734,5, - 340,0,0,2733,2735,5,105,0,0,2734,2733,1,0,0,0,2734,2735,1,0,0,0, - 2735,2736,1,0,0,0,2736,2745,3,196,98,0,2737,2739,5,314,0,0,2738, - 2740,5,105,0,0,2739,2738,1,0,0,0,2739,2740,1,0,0,0,2740,2742,1,0, - 0,0,2741,2743,3,196,98,0,2742,2741,1,0,0,0,2742,2743,1,0,0,0,2743, - 2745,1,0,0,0,2744,2711,1,0,0,0,2744,2713,1,0,0,0,2744,2717,1,0,0, - 0,2744,2722,1,0,0,0,2744,2724,1,0,0,0,2744,2726,1,0,0,0,2744,2729, - 1,0,0,0,2744,2732,1,0,0,0,2744,2737,1,0,0,0,2745,195,1,0,0,0,2746, - 2748,7,30,0,0,2747,2746,1,0,0,0,2747,2748,1,0,0,0,2748,2749,1,0, - 0,0,2749,2752,5,576,0,0,2750,2752,3,810,405,0,2751,2747,1,0,0,0, - 2751,2750,1,0,0,0,2752,197,1,0,0,0,2753,2755,5,46,0,0,2754,2756, - 3,360,180,0,2755,2754,1,0,0,0,2755,2756,1,0,0,0,2756,2758,1,0,0, - 0,2757,2759,5,359,0,0,2758,2757,1,0,0,0,2758,2759,1,0,0,0,2759,2761, - 1,0,0,0,2760,2762,5,295,0,0,2761,2760,1,0,0,0,2761,2762,1,0,0,0, - 2762,2763,1,0,0,0,2763,2764,5,247,0,0,2764,2777,3,816,408,0,2765, - 2766,5,215,0,0,2766,2769,3,310,155,0,2767,2768,5,239,0,0,2768,2770, - 3,310,155,0,2769,2767,1,0,0,0,2769,2770,1,0,0,0,2770,2775,1,0,0, - 0,2771,2772,5,373,0,0,2772,2776,3,310,155,0,2773,2774,5,269,0,0, - 2774,2776,5,373,0,0,2775,2771,1,0,0,0,2775,2773,1,0,0,0,2775,2776, - 1,0,0,0,2776,2778,1,0,0,0,2777,2765,1,0,0,0,2777,2778,1,0,0,0,2778, - 199,1,0,0,0,2779,2780,5,46,0,0,2780,2783,3,170,85,0,2781,2782,5, - 282,0,0,2782,2784,3,812,406,0,2783,2781,1,0,0,0,2783,2784,1,0,0, - 0,2784,2785,1,0,0,0,2785,2786,5,255,0,0,2786,2788,3,806,403,0,2787, - 2789,3,94,47,0,2788,2787,1,0,0,0,2788,2789,1,0,0,0,2789,201,1,0, - 0,0,2790,2791,5,46,0,0,2791,2793,5,204,0,0,2792,2794,3,288,144,0, - 2793,2792,1,0,0,0,2793,2794,1,0,0,0,2794,2795,1,0,0,0,2795,2797, - 3,816,408,0,2796,2798,5,105,0,0,2797,2796,1,0,0,0,2797,2798,1,0, - 0,0,2798,2806,1,0,0,0,2799,2800,5,323,0,0,2800,2805,3,786,393,0, - 2801,2802,7,31,0,0,2802,2805,3,58,29,0,2803,2805,5,150,0,0,2804, - 2799,1,0,0,0,2804,2801,1,0,0,0,2804,2803,1,0,0,0,2805,2808,1,0,0, - 0,2806,2804,1,0,0,0,2806,2807,1,0,0,0,2807,203,1,0,0,0,2808,2806, - 1,0,0,0,2809,2810,5,138,0,0,2810,2811,5,204,0,0,2811,2812,3,816, - 408,0,2812,2817,5,369,0,0,2813,2814,5,94,0,0,2814,2816,3,58,29,0, - 2815,2813,1,0,0,0,2816,2819,1,0,0,0,2817,2815,1,0,0,0,2817,2818, - 1,0,0,0,2818,205,1,0,0,0,2819,2817,1,0,0,0,2820,2821,5,138,0,0,2821, - 2822,5,204,0,0,2822,2823,3,816,408,0,2823,2856,7,6,0,0,2824,2825, - 5,443,0,0,2825,2826,5,62,0,0,2826,2827,3,646,323,0,2827,2828,5,247, - 0,0,2828,2829,3,816,408,0,2829,2857,1,0,0,0,2830,2831,5,442,0,0, - 2831,2857,3,368,184,0,2832,2833,5,296,0,0,2833,2857,3,372,186,0, - 2834,2835,5,278,0,0,2835,2836,7,32,0,0,2836,2837,3,310,155,0,2837, - 2838,3,164,82,0,2838,2857,1,0,0,0,2839,2840,5,278,0,0,2840,2857, - 3,410,205,0,2841,2842,5,211,0,0,2842,2857,3,376,188,0,2843,2844, - 7,33,0,0,2844,2857,3,646,323,0,2845,2846,5,41,0,0,2846,2847,5,2, - 0,0,2847,2848,3,646,323,0,2848,2849,5,36,0,0,2849,2850,3,646,323, - 0,2850,2851,5,3,0,0,2851,2857,1,0,0,0,2852,2853,5,136,0,0,2853,2857, - 3,388,194,0,2854,2857,3,306,153,0,2855,2857,3,304,152,0,2856,2824, - 1,0,0,0,2856,2830,1,0,0,0,2856,2832,1,0,0,0,2856,2834,1,0,0,0,2856, - 2839,1,0,0,0,2856,2841,1,0,0,0,2856,2843,1,0,0,0,2856,2845,1,0,0, - 0,2856,2852,1,0,0,0,2856,2854,1,0,0,0,2856,2855,1,0,0,0,2857,207, - 1,0,0,0,2858,2859,5,46,0,0,2859,2860,5,63,0,0,2860,2861,5,174,0, - 0,2861,2862,5,381,0,0,2862,2868,3,816,408,0,2863,2865,3,210,105, - 0,2864,2863,1,0,0,0,2865,2866,1,0,0,0,2866,2864,1,0,0,0,2866,2867, - 1,0,0,0,2867,2869,1,0,0,0,2868,2864,1,0,0,0,2868,2869,1,0,0,0,2869, - 2871,1,0,0,0,2870,2872,3,214,107,0,2871,2870,1,0,0,0,2871,2872,1, - 0,0,0,2872,209,1,0,0,0,2873,2875,7,34,0,0,2874,2876,3,310,155,0, - 2875,2874,1,0,0,0,2875,2876,1,0,0,0,2876,2880,1,0,0,0,2877,2878, - 5,269,0,0,2878,2880,7,34,0,0,2879,2873,1,0,0,0,2879,2877,1,0,0,0, - 2880,211,1,0,0,0,2881,2882,5,138,0,0,2882,2883,5,63,0,0,2883,2884, - 5,174,0,0,2884,2885,5,381,0,0,2885,2899,3,816,408,0,2886,2888,3, - 210,105,0,2887,2886,1,0,0,0,2888,2889,1,0,0,0,2889,2887,1,0,0,0, - 2889,2890,1,0,0,0,2890,2892,1,0,0,0,2891,2887,1,0,0,0,2891,2892, - 1,0,0,0,2892,2893,1,0,0,0,2893,2900,3,216,108,0,2894,2896,3,210, - 105,0,2895,2894,1,0,0,0,2896,2897,1,0,0,0,2897,2895,1,0,0,0,2897, - 2898,1,0,0,0,2898,2900,1,0,0,0,2899,2891,1,0,0,0,2899,2895,1,0,0, - 0,2900,213,1,0,0,0,2901,2902,5,280,0,0,2902,2903,5,2,0,0,2903,2908, - 3,220,110,0,2904,2905,5,6,0,0,2905,2907,3,220,110,0,2906,2904,1, - 0,0,0,2907,2910,1,0,0,0,2908,2906,1,0,0,0,2908,2909,1,0,0,0,2909, - 2911,1,0,0,0,2910,2908,1,0,0,0,2911,2912,5,3,0,0,2912,215,1,0,0, - 0,2913,2914,5,280,0,0,2914,2915,5,2,0,0,2915,2920,3,218,109,0,2916, - 2917,5,6,0,0,2917,2919,3,218,109,0,2918,2916,1,0,0,0,2919,2922,1, - 0,0,0,2920,2918,1,0,0,0,2920,2921,1,0,0,0,2921,2923,1,0,0,0,2922, - 2920,1,0,0,0,2923,2924,5,3,0,0,2924,217,1,0,0,0,2925,2926,7,35,0, - 0,2926,2927,3,220,110,0,2927,219,1,0,0,0,2928,2929,3,822,411,0,2929, - 2930,3,806,403,0,2930,221,1,0,0,0,2931,2932,5,46,0,0,2932,2934,5, - 331,0,0,2933,2935,3,288,144,0,2934,2933,1,0,0,0,2934,2935,1,0,0, - 0,2935,2936,1,0,0,0,2936,2939,3,816,408,0,2937,2938,5,360,0,0,2938, - 2940,3,806,403,0,2939,2937,1,0,0,0,2939,2940,1,0,0,0,2940,2942,1, - 0,0,0,2941,2943,3,224,112,0,2942,2941,1,0,0,0,2942,2943,1,0,0,0, - 2943,2944,1,0,0,0,2944,2945,5,63,0,0,2945,2946,5,174,0,0,2946,2947, - 5,381,0,0,2947,2949,3,816,408,0,2948,2950,3,214,107,0,2949,2948, - 1,0,0,0,2949,2950,1,0,0,0,2950,223,1,0,0,0,2951,2954,5,375,0,0,2952, - 2955,3,806,403,0,2953,2955,5,78,0,0,2954,2952,1,0,0,0,2954,2953, - 1,0,0,0,2955,225,1,0,0,0,2956,2957,5,138,0,0,2957,2958,5,331,0,0, - 2958,2964,3,816,408,0,2959,2965,3,216,108,0,2960,2962,3,224,112, - 0,2961,2963,3,216,108,0,2962,2961,1,0,0,0,2962,2963,1,0,0,0,2963, - 2965,1,0,0,0,2964,2959,1,0,0,0,2964,2960,1,0,0,0,2965,227,1,0,0, - 0,2966,2967,5,46,0,0,2967,2968,5,63,0,0,2968,2970,5,92,0,0,2969, - 2971,3,288,144,0,2970,2969,1,0,0,0,2970,2971,1,0,0,0,2971,2972,1, - 0,0,0,2972,2973,3,768,384,0,2973,2975,5,2,0,0,2974,2976,3,120,60, - 0,2975,2974,1,0,0,0,2975,2976,1,0,0,0,2976,2977,1,0,0,0,2977,2979, - 5,3,0,0,2978,2980,3,158,79,0,2979,2978,1,0,0,0,2979,2980,1,0,0,0, - 2980,2981,1,0,0,0,2981,2982,5,331,0,0,2982,2984,3,816,408,0,2983, - 2985,3,214,107,0,2984,2983,1,0,0,0,2984,2985,1,0,0,0,2985,3006,1, - 0,0,0,2986,2987,5,46,0,0,2987,2988,5,63,0,0,2988,2990,5,92,0,0,2989, - 2991,3,288,144,0,2990,2989,1,0,0,0,2990,2991,1,0,0,0,2991,2992,1, - 0,0,0,2992,2993,3,768,384,0,2993,2994,5,285,0,0,2994,2995,5,275, - 0,0,2995,2997,3,770,385,0,2996,2998,3,118,59,0,2997,2996,1,0,0,0, - 2997,2998,1,0,0,0,2998,2999,1,0,0,0,2999,3000,3,98,49,0,3000,3001, - 5,331,0,0,3001,3003,3,816,408,0,3002,3004,3,214,107,0,3003,3002, - 1,0,0,0,3003,3004,1,0,0,0,3004,3006,1,0,0,0,3005,2966,1,0,0,0,3005, - 2986,1,0,0,0,3006,229,1,0,0,0,3007,3008,5,444,0,0,3008,3009,5,63, - 0,0,3009,3010,5,323,0,0,3010,3020,3,786,393,0,3011,3012,5,74,0,0, - 3012,3015,5,94,0,0,3013,3015,5,59,0,0,3014,3011,1,0,0,0,3014,3013, - 1,0,0,0,3015,3016,1,0,0,0,3016,3017,5,2,0,0,3017,3018,3,622,311, - 0,3018,3019,5,3,0,0,3019,3021,1,0,0,0,3020,3014,1,0,0,0,3020,3021, - 1,0,0,0,3021,3022,1,0,0,0,3022,3023,5,64,0,0,3023,3024,5,331,0,0, - 3024,3025,3,816,408,0,3025,3026,5,71,0,0,3026,3028,3,816,408,0,3027, - 3029,3,214,107,0,3028,3027,1,0,0,0,3028,3029,1,0,0,0,3029,231,1, - 0,0,0,3030,3031,5,46,0,0,3031,3032,5,99,0,0,3032,3034,5,257,0,0, - 3033,3035,3,288,144,0,3034,3033,1,0,0,0,3034,3035,1,0,0,0,3035,3036, - 1,0,0,0,3036,3039,5,62,0,0,3037,3040,3,812,406,0,3038,3040,5,99, - 0,0,3039,3037,1,0,0,0,3039,3038,1,0,0,0,3040,3041,1,0,0,0,3041,3042, - 5,331,0,0,3042,3044,3,816,408,0,3043,3045,3,214,107,0,3044,3043, - 1,0,0,0,3044,3045,1,0,0,0,3045,233,1,0,0,0,3046,3047,5,138,0,0,3047, - 3048,5,99,0,0,3048,3049,5,257,0,0,3049,3052,5,62,0,0,3050,3053,3, - 812,406,0,3051,3053,5,99,0,0,3052,3050,1,0,0,0,3052,3051,1,0,0,0, - 3053,3054,1,0,0,0,3054,3055,5,331,0,0,3055,3056,3,816,408,0,3056, - 3057,3,216,108,0,3057,235,1,0,0,0,3058,3059,5,46,0,0,3059,3060,5, - 445,0,0,3060,3061,3,816,408,0,3061,3062,5,80,0,0,3062,3069,3,776, - 388,0,3063,3067,5,36,0,0,3064,3068,5,541,0,0,3065,3068,5,542,0,0, - 3066,3068,3,824,412,0,3067,3064,1,0,0,0,3067,3065,1,0,0,0,3067,3066, - 1,0,0,0,3068,3070,1,0,0,0,3069,3063,1,0,0,0,3069,3070,1,0,0,0,3070, - 3073,1,0,0,0,3071,3072,5,62,0,0,3072,3074,7,36,0,0,3073,3071,1,0, - 0,0,3073,3074,1,0,0,0,3074,3077,1,0,0,0,3075,3076,5,94,0,0,3076, - 3078,3,814,407,0,3077,3075,1,0,0,0,3077,3078,1,0,0,0,3078,3080,1, - 0,0,0,3079,3081,3,244,122,0,3080,3079,1,0,0,0,3080,3081,1,0,0,0, - 3081,3083,1,0,0,0,3082,3084,3,246,123,0,3083,3082,1,0,0,0,3083,3084, - 1,0,0,0,3084,237,1,0,0,0,3085,3086,5,138,0,0,3086,3087,5,445,0,0, - 3087,3088,3,816,408,0,3088,3089,5,80,0,0,3089,3092,3,776,388,0,3090, - 3091,5,94,0,0,3091,3093,3,814,407,0,3092,3090,1,0,0,0,3092,3093, - 1,0,0,0,3093,3095,1,0,0,0,3094,3096,3,244,122,0,3095,3094,1,0,0, - 0,3095,3096,1,0,0,0,3096,3098,1,0,0,0,3097,3099,3,246,123,0,3098, - 3097,1,0,0,0,3098,3099,1,0,0,0,3099,239,1,0,0,0,3100,3101,5,138, - 0,0,3101,3102,5,296,0,0,3102,3104,3,792,396,0,3103,3105,3,362,181, - 0,3104,3103,1,0,0,0,3104,3105,1,0,0,0,3105,3132,1,0,0,0,3106,3110, - 3,242,121,0,3107,3109,3,242,121,0,3108,3107,1,0,0,0,3109,3112,1, - 0,0,0,3110,3108,1,0,0,0,3110,3111,1,0,0,0,3111,3114,1,0,0,0,3112, - 3110,1,0,0,0,3113,3115,5,315,0,0,3114,3113,1,0,0,0,3114,3115,1,0, - 0,0,3115,3133,1,0,0,0,3116,3117,5,309,0,0,3117,3118,5,94,0,0,3118, - 3133,3,794,397,0,3119,3120,5,282,0,0,3120,3121,5,94,0,0,3121,3133, - 3,812,406,0,3122,3123,5,333,0,0,3123,3124,5,323,0,0,3124,3133,3, - 32,16,0,3125,3127,5,269,0,0,3126,3125,1,0,0,0,3126,3127,1,0,0,0, - 3127,3128,1,0,0,0,3128,3129,5,462,0,0,3129,3130,5,80,0,0,3130,3131, - 5,204,0,0,3131,3133,3,816,408,0,3132,3106,1,0,0,0,3132,3116,1,0, - 0,0,3132,3119,1,0,0,0,3132,3122,1,0,0,0,3132,3126,1,0,0,0,3133,241, - 1,0,0,0,3134,3136,5,205,0,0,3135,3134,1,0,0,0,3135,3136,1,0,0,0, - 3136,3137,1,0,0,0,3137,3138,5,327,0,0,3138,3145,5,243,0,0,3139,3141, - 5,205,0,0,3140,3139,1,0,0,0,3140,3141,1,0,0,0,3141,3142,1,0,0,0, - 3142,3143,5,327,0,0,3143,3145,5,181,0,0,3144,3135,1,0,0,0,3144,3140, - 1,0,0,0,3145,3164,1,0,0,0,3146,3147,5,333,0,0,3147,3148,3,816,408, - 0,3148,3151,7,37,0,0,3149,3152,3,816,408,0,3150,3152,5,53,0,0,3151, - 3149,1,0,0,0,3151,3150,1,0,0,0,3152,3164,1,0,0,0,3153,3154,5,333, - 0,0,3154,3155,3,816,408,0,3155,3156,5,64,0,0,3156,3157,5,434,0,0, - 3157,3164,1,0,0,0,3158,3161,5,313,0,0,3159,3162,3,816,408,0,3160, - 3162,5,30,0,0,3161,3159,1,0,0,0,3161,3160,1,0,0,0,3162,3164,1,0, - 0,0,3163,3144,1,0,0,0,3163,3146,1,0,0,0,3163,3153,1,0,0,0,3163,3158, - 1,0,0,0,3164,243,1,0,0,0,3165,3166,5,100,0,0,3166,3167,5,2,0,0,3167, - 3168,3,668,334,0,3168,3169,5,3,0,0,3169,245,1,0,0,0,3170,3171,5, - 105,0,0,3171,3172,5,42,0,0,3172,3173,5,2,0,0,3173,3174,3,668,334, - 0,3174,3175,5,3,0,0,3175,247,1,0,0,0,3176,3177,5,46,0,0,3177,3178, - 5,131,0,0,3178,3179,5,446,0,0,3179,3180,3,816,408,0,3180,3181,5, - 360,0,0,3181,3182,7,38,0,0,3182,3183,5,215,0,0,3183,3184,3,310,155, - 0,3184,249,1,0,0,0,3185,3187,5,46,0,0,3186,3188,3,360,180,0,3187, - 3186,1,0,0,0,3187,3188,1,0,0,0,3188,3189,1,0,0,0,3189,3190,5,357, - 0,0,3190,3191,3,816,408,0,3191,3192,3,252,126,0,3192,3193,3,254, - 127,0,3193,3194,5,80,0,0,3194,3206,3,770,385,0,3195,3202,5,447,0, - 0,3196,3197,7,39,0,0,3197,3199,7,40,0,0,3198,3200,5,36,0,0,3199, - 3198,1,0,0,0,3199,3200,1,0,0,0,3200,3201,1,0,0,0,3201,3203,3,816, - 408,0,3202,3196,1,0,0,0,3203,3204,1,0,0,0,3204,3202,1,0,0,0,3204, - 3205,1,0,0,0,3205,3207,1,0,0,0,3206,3195,1,0,0,0,3206,3207,1,0,0, - 0,3207,3213,1,0,0,0,3208,3210,5,62,0,0,3209,3211,5,192,0,0,3210, - 3209,1,0,0,0,3210,3211,1,0,0,0,3211,3212,1,0,0,0,3212,3214,7,41, - 0,0,3213,3208,1,0,0,0,3213,3214,1,0,0,0,3214,3216,1,0,0,0,3215,3217, - 3,258,129,0,3216,3215,1,0,0,0,3216,3217,1,0,0,0,3217,3218,1,0,0, - 0,3218,3219,5,202,0,0,3219,3220,3,260,130,0,3220,3221,5,2,0,0,3221, - 3222,3,262,131,0,3222,3223,5,3,0,0,3223,3264,1,0,0,0,3224,3226,5, - 46,0,0,3225,3227,3,360,180,0,3226,3225,1,0,0,0,3226,3227,1,0,0,0, - 3227,3229,1,0,0,0,3228,3230,5,45,0,0,3229,3228,1,0,0,0,3229,3230, - 1,0,0,0,3230,3231,1,0,0,0,3231,3232,5,357,0,0,3232,3233,3,816,408, - 0,3233,3234,3,252,126,0,3234,3235,3,254,127,0,3235,3236,5,80,0,0, - 3236,3239,3,770,385,0,3237,3238,5,64,0,0,3238,3240,3,776,388,0,3239, - 3237,1,0,0,0,3239,3240,1,0,0,0,3240,3244,1,0,0,0,3241,3243,3,266, - 133,0,3242,3241,1,0,0,0,3243,3246,1,0,0,0,3244,3242,1,0,0,0,3244, - 3245,1,0,0,0,3245,3252,1,0,0,0,3246,3244,1,0,0,0,3247,3249,5,62, - 0,0,3248,3250,5,192,0,0,3249,3248,1,0,0,0,3249,3250,1,0,0,0,3250, - 3251,1,0,0,0,3251,3253,7,41,0,0,3252,3247,1,0,0,0,3252,3253,1,0, - 0,0,3253,3255,1,0,0,0,3254,3256,3,258,129,0,3255,3254,1,0,0,0,3255, - 3256,1,0,0,0,3256,3257,1,0,0,0,3257,3258,5,202,0,0,3258,3259,3,260, - 130,0,3259,3260,5,2,0,0,3260,3261,3,262,131,0,3261,3262,5,3,0,0, - 3262,3264,1,0,0,0,3263,3185,1,0,0,0,3263,3224,1,0,0,0,3264,251,1, - 0,0,0,3265,3270,5,145,0,0,3266,3270,5,135,0,0,3267,3268,5,242,0, - 0,3268,3270,5,275,0,0,3269,3265,1,0,0,0,3269,3266,1,0,0,0,3269,3267, - 1,0,0,0,3270,253,1,0,0,0,3271,3276,3,256,128,0,3272,3273,5,82,0, - 0,3273,3275,3,256,128,0,3274,3272,1,0,0,0,3275,3278,1,0,0,0,3276, - 3274,1,0,0,0,3276,3277,1,0,0,0,3277,255,1,0,0,0,3278,3276,1,0,0, - 0,3279,3288,5,241,0,0,3280,3288,5,182,0,0,3281,3284,5,369,0,0,3282, - 3283,5,275,0,0,3283,3285,3,142,71,0,3284,3282,1,0,0,0,3284,3285, - 1,0,0,0,3285,3288,1,0,0,0,3286,3288,5,358,0,0,3287,3279,1,0,0,0, - 3287,3280,1,0,0,0,3287,3281,1,0,0,0,3287,3286,1,0,0,0,3288,257,1, - 0,0,0,3289,3290,5,102,0,0,3290,3291,5,2,0,0,3291,3292,3,668,334, - 0,3292,3293,5,3,0,0,3293,259,1,0,0,0,3294,3295,5,211,0,0,3295,3299, - 3,804,402,0,3296,3297,5,296,0,0,3297,3299,3,792,396,0,3298,3294, - 1,0,0,0,3298,3296,1,0,0,0,3299,261,1,0,0,0,3300,3303,3,264,132,0, - 3301,3303,1,0,0,0,3302,3300,1,0,0,0,3302,3301,1,0,0,0,3303,3308, - 1,0,0,0,3304,3305,5,6,0,0,3305,3307,3,264,132,0,3306,3304,1,0,0, - 0,3307,3310,1,0,0,0,3308,3306,1,0,0,0,3308,3309,1,0,0,0,3309,263, - 1,0,0,0,3310,3308,1,0,0,0,3311,3316,5,574,0,0,3312,3316,5,576,0, - 0,3313,3316,3,806,403,0,3314,3316,3,822,411,0,3315,3311,1,0,0,0, - 3315,3312,1,0,0,0,3315,3313,1,0,0,0,3315,3314,1,0,0,0,3316,265,1, - 0,0,0,3317,3319,5,77,0,0,3318,3317,1,0,0,0,3318,3319,1,0,0,0,3319, - 3320,1,0,0,0,3320,3328,5,54,0,0,3321,3322,5,69,0,0,3322,3328,7,9, - 0,0,3323,3324,5,77,0,0,3324,3328,5,371,0,0,3325,3326,5,269,0,0,3326, - 3328,5,228,0,0,3327,3318,1,0,0,0,3327,3321,1,0,0,0,3327,3323,1,0, - 0,0,3327,3325,1,0,0,0,3328,267,1,0,0,0,3329,3330,5,46,0,0,3330,3331, - 5,198,0,0,3331,3332,5,357,0,0,3332,3333,3,816,408,0,3333,3334,5, - 80,0,0,3334,3344,3,822,411,0,3335,3336,5,102,0,0,3336,3341,3,270, - 135,0,3337,3338,5,33,0,0,3338,3340,3,270,135,0,3339,3337,1,0,0,0, - 3340,3343,1,0,0,0,3341,3339,1,0,0,0,3341,3342,1,0,0,0,3342,3345, - 1,0,0,0,3343,3341,1,0,0,0,3344,3335,1,0,0,0,3344,3345,1,0,0,0,3345, - 3346,1,0,0,0,3346,3347,5,202,0,0,3347,3348,3,260,130,0,3348,3349, - 5,2,0,0,3349,3350,5,3,0,0,3350,269,1,0,0,0,3351,3352,3,816,408,0, - 3352,3353,5,68,0,0,3353,3354,5,2,0,0,3354,3358,3,806,403,0,3355, - 3357,3,456,228,0,3356,3355,1,0,0,0,3357,3360,1,0,0,0,3358,3356,1, - 0,0,0,3358,3359,1,0,0,0,3359,3361,1,0,0,0,3360,3358,1,0,0,0,3361, - 3362,5,3,0,0,3362,271,1,0,0,0,3363,3364,5,138,0,0,3364,3365,5,198, - 0,0,3365,3366,5,357,0,0,3366,3372,3,816,408,0,3367,3369,5,193,0, - 0,3368,3370,7,14,0,0,3369,3368,1,0,0,0,3369,3370,1,0,0,0,3370,3373, - 1,0,0,0,3371,3373,5,186,0,0,3372,3367,1,0,0,0,3372,3371,1,0,0,0, - 3373,273,1,0,0,0,3374,3375,5,46,0,0,3375,3376,5,140,0,0,3376,3377, - 3,310,155,0,3377,3378,5,42,0,0,3378,3379,5,2,0,0,3379,3380,3,668, - 334,0,3380,3384,5,3,0,0,3381,3383,3,266,133,0,3382,3381,1,0,0,0, - 3383,3386,1,0,0,0,3384,3382,1,0,0,0,3384,3385,1,0,0,0,3385,275,1, - 0,0,0,3386,3384,1,0,0,0,3387,3389,5,46,0,0,3388,3390,3,360,180,0, - 3389,3388,1,0,0,0,3389,3390,1,0,0,0,3390,3391,1,0,0,0,3391,3392, - 5,136,0,0,3392,3407,3,804,402,0,3393,3394,3,386,193,0,3394,3395, - 3,278,139,0,3395,3408,1,0,0,0,3396,3397,5,2,0,0,3397,3402,3,284, - 142,0,3398,3399,5,6,0,0,3399,3401,3,284,142,0,3400,3398,1,0,0,0, - 3401,3404,1,0,0,0,3402,3400,1,0,0,0,3402,3403,1,0,0,0,3403,3405, - 1,0,0,0,3404,3402,1,0,0,0,3405,3406,5,3,0,0,3406,3408,1,0,0,0,3407, - 3393,1,0,0,0,3407,3396,1,0,0,0,3408,3466,1,0,0,0,3409,3410,5,46, - 0,0,3410,3411,5,278,0,0,3411,3412,3,408,204,0,3412,3413,3,278,139, - 0,3413,3466,1,0,0,0,3414,3415,5,46,0,0,3415,3416,5,360,0,0,3416, - 3417,3,310,155,0,3417,3435,5,36,0,0,3418,3420,5,2,0,0,3419,3421, - 3,636,318,0,3420,3419,1,0,0,0,3420,3421,1,0,0,0,3421,3422,1,0,0, - 0,3422,3436,5,3,0,0,3423,3424,5,196,0,0,3424,3432,5,2,0,0,3425,3429, - 3,806,403,0,3426,3428,3,456,228,0,3427,3426,1,0,0,0,3428,3431,1, - 0,0,0,3429,3427,1,0,0,0,3429,3430,1,0,0,0,3430,3433,1,0,0,0,3431, - 3429,1,0,0,0,3432,3425,1,0,0,0,3432,3433,1,0,0,0,3433,3434,1,0,0, - 0,3434,3436,5,3,0,0,3435,3418,1,0,0,0,3435,3423,1,0,0,0,3436,3466, - 1,0,0,0,3437,3438,5,46,0,0,3438,3439,5,360,0,0,3439,3445,3,310,155, - 0,3440,3441,5,36,0,0,3441,3443,5,299,0,0,3442,3440,1,0,0,0,3442, - 3443,1,0,0,0,3443,3444,1,0,0,0,3444,3446,3,278,139,0,3445,3442,1, - 0,0,0,3445,3446,1,0,0,0,3446,3466,1,0,0,0,3447,3448,5,46,0,0,3448, - 3449,5,355,0,0,3449,3450,5,325,0,0,3450,3451,7,42,0,0,3451,3452, - 3,310,155,0,3452,3453,3,278,139,0,3453,3466,1,0,0,0,3454,3455,5, - 46,0,0,3455,3457,5,108,0,0,3456,3458,3,288,144,0,3457,3456,1,0,0, - 0,3457,3458,1,0,0,0,3458,3459,1,0,0,0,3459,3463,3,310,155,0,3460, - 3464,3,278,139,0,3461,3462,5,64,0,0,3462,3464,3,310,155,0,3463,3460, - 1,0,0,0,3463,3461,1,0,0,0,3464,3466,1,0,0,0,3465,3387,1,0,0,0,3465, - 3409,1,0,0,0,3465,3414,1,0,0,0,3465,3437,1,0,0,0,3465,3447,1,0,0, - 0,3465,3454,1,0,0,0,3466,277,1,0,0,0,3467,3468,5,2,0,0,3468,3473, - 3,280,140,0,3469,3470,5,6,0,0,3470,3472,3,280,140,0,3471,3469,1, - 0,0,0,3472,3475,1,0,0,0,3473,3471,1,0,0,0,3473,3474,1,0,0,0,3474, - 3476,1,0,0,0,3475,3473,1,0,0,0,3476,3477,5,3,0,0,3477,279,1,0,0, - 0,3478,3481,3,822,411,0,3479,3480,5,10,0,0,3480,3482,3,282,141,0, - 3481,3479,1,0,0,0,3481,3482,1,0,0,0,3482,281,1,0,0,0,3483,3490,3, - 382,191,0,3484,3490,3,832,416,0,3485,3490,3,722,361,0,3486,3490, - 3,196,98,0,3487,3490,3,806,403,0,3488,3490,5,407,0,0,3489,3483,1, - 0,0,0,3489,3484,1,0,0,0,3489,3485,1,0,0,0,3489,3486,1,0,0,0,3489, - 3487,1,0,0,0,3489,3488,1,0,0,0,3490,283,1,0,0,0,3491,3492,3,824, - 412,0,3492,3493,5,10,0,0,3493,3494,3,282,141,0,3494,285,1,0,0,0, - 3495,3496,5,138,0,0,3496,3497,5,360,0,0,3497,3498,3,310,155,0,3498, - 3499,5,133,0,0,3499,3501,5,450,0,0,3500,3502,3,288,144,0,3501,3500, - 1,0,0,0,3501,3502,1,0,0,0,3502,3503,1,0,0,0,3503,3506,3,806,403, - 0,3504,3505,7,43,0,0,3505,3507,3,806,403,0,3506,3504,1,0,0,0,3506, - 3507,1,0,0,0,3507,3518,1,0,0,0,3508,3509,5,138,0,0,3509,3510,5,360, - 0,0,3510,3511,3,310,155,0,3511,3512,5,309,0,0,3512,3513,5,450,0, - 0,3513,3514,3,806,403,0,3514,3515,5,94,0,0,3515,3516,3,806,403,0, - 3516,3518,1,0,0,0,3517,3495,1,0,0,0,3517,3508,1,0,0,0,3518,287,1, - 0,0,0,3519,3520,5,220,0,0,3520,3521,5,77,0,0,3521,3522,5,396,0,0, - 3522,289,1,0,0,0,3523,3524,5,46,0,0,3524,3525,5,278,0,0,3525,3526, - 5,156,0,0,3526,3528,3,310,155,0,3527,3529,5,53,0,0,3528,3527,1,0, - 0,0,3528,3529,1,0,0,0,3529,3530,1,0,0,0,3530,3531,5,62,0,0,3531, - 3532,5,360,0,0,3532,3533,3,646,323,0,3533,3536,3,164,82,0,3534,3535, - 5,206,0,0,3535,3537,3,310,155,0,3536,3534,1,0,0,0,3536,3537,1,0, - 0,0,3537,3538,1,0,0,0,3538,3539,5,36,0,0,3539,3544,3,292,146,0,3540, - 3541,5,6,0,0,3541,3543,3,292,146,0,3542,3540,1,0,0,0,3543,3546,1, - 0,0,0,3544,3542,1,0,0,0,3544,3545,1,0,0,0,3545,291,1,0,0,0,3546, - 3544,1,0,0,0,3547,3548,5,278,0,0,3548,3549,5,574,0,0,3549,3551,3, - 408,204,0,3550,3552,3,406,203,0,3551,3550,1,0,0,0,3551,3552,1,0, - 0,0,3552,3560,1,0,0,0,3553,3558,5,62,0,0,3554,3559,5,325,0,0,3555, - 3556,5,83,0,0,3556,3557,5,147,0,0,3557,3559,3,310,155,0,3558,3554, - 1,0,0,0,3558,3555,1,0,0,0,3559,3561,1,0,0,0,3560,3553,1,0,0,0,3560, - 3561,1,0,0,0,3561,3563,1,0,0,0,3562,3564,5,302,0,0,3563,3562,1,0, - 0,0,3563,3564,1,0,0,0,3564,3574,1,0,0,0,3565,3566,5,211,0,0,3566, - 3568,5,574,0,0,3567,3569,3,522,261,0,3568,3567,1,0,0,0,3568,3569, - 1,0,0,0,3569,3570,1,0,0,0,3570,3574,3,376,188,0,3571,3572,5,345, - 0,0,3572,3574,3,646,323,0,3573,3547,1,0,0,0,3573,3565,1,0,0,0,3573, - 3571,1,0,0,0,3574,293,1,0,0,0,3575,3576,5,46,0,0,3576,3577,5,278, - 0,0,3577,3578,5,206,0,0,3578,3579,3,310,155,0,3579,3580,3,164,82, - 0,3580,295,1,0,0,0,3581,3582,5,138,0,0,3582,3583,5,278,0,0,3583, - 3584,5,206,0,0,3584,3585,3,310,155,0,3585,3604,3,164,82,0,3586,3587, - 5,133,0,0,3587,3592,3,292,146,0,3588,3589,5,6,0,0,3589,3591,3,292, - 146,0,3590,3588,1,0,0,0,3591,3594,1,0,0,0,3592,3590,1,0,0,0,3592, - 3593,1,0,0,0,3593,3605,1,0,0,0,3594,3592,1,0,0,0,3595,3596,5,191, - 0,0,3596,3601,3,298,149,0,3597,3598,5,6,0,0,3598,3600,3,298,149, - 0,3599,3597,1,0,0,0,3600,3603,1,0,0,0,3601,3599,1,0,0,0,3601,3602, - 1,0,0,0,3602,3605,1,0,0,0,3603,3601,1,0,0,0,3604,3586,1,0,0,0,3604, - 3595,1,0,0,0,3605,297,1,0,0,0,3606,3607,7,44,0,0,3607,3608,5,574, - 0,0,3608,3609,3,522,261,0,3609,299,1,0,0,0,3610,3611,5,301,0,0,3611, - 3612,5,281,0,0,3612,3613,5,147,0,0,3613,3614,3,814,407,0,3614,3615, - 5,94,0,0,3615,3616,3,812,406,0,3616,301,1,0,0,0,3617,3640,5,191, - 0,0,3618,3641,5,328,0,0,3619,3641,5,226,0,0,3620,3641,5,108,0,0, - 3621,3641,5,168,0,0,3622,3641,5,342,0,0,3623,3641,5,452,0,0,3624, - 3641,5,331,0,0,3625,3626,5,131,0,0,3626,3641,5,446,0,0,3627,3628, - 5,198,0,0,3628,3641,5,357,0,0,3629,3641,5,204,0,0,3630,3632,5,295, - 0,0,3631,3630,1,0,0,0,3631,3632,1,0,0,0,3632,3633,1,0,0,0,3633,3641, - 5,247,0,0,3634,3635,5,63,0,0,3635,3636,5,174,0,0,3636,3641,5,381, - 0,0,3637,3638,5,355,0,0,3638,3639,5,325,0,0,3639,3641,7,42,0,0,3640, - 3618,1,0,0,0,3640,3619,1,0,0,0,3640,3620,1,0,0,0,3640,3621,1,0,0, - 0,3640,3622,1,0,0,0,3640,3623,1,0,0,0,3640,3624,1,0,0,0,3640,3625, - 1,0,0,0,3640,3627,1,0,0,0,3640,3629,1,0,0,0,3640,3631,1,0,0,0,3640, - 3634,1,0,0,0,3640,3637,1,0,0,0,3641,3643,1,0,0,0,3642,3644,3,416, - 208,0,3643,3642,1,0,0,0,3643,3644,1,0,0,0,3644,3645,1,0,0,0,3645, - 3647,3,780,390,0,3646,3648,3,88,44,0,3647,3646,1,0,0,0,3647,3648, - 1,0,0,0,3648,3825,1,0,0,0,3649,3651,5,191,0,0,3650,3652,5,259,0, - 0,3651,3650,1,0,0,0,3651,3652,1,0,0,0,3652,3653,1,0,0,0,3653,3655, - 5,376,0,0,3654,3656,3,416,208,0,3655,3654,1,0,0,0,3655,3656,1,0, - 0,0,3656,3657,1,0,0,0,3657,3662,3,774,387,0,3658,3659,5,6,0,0,3659, - 3661,3,774,387,0,3660,3658,1,0,0,0,3661,3664,1,0,0,0,3662,3660,1, - 0,0,0,3662,3663,1,0,0,0,3663,3666,1,0,0,0,3664,3662,1,0,0,0,3665, - 3667,3,88,44,0,3666,3665,1,0,0,0,3666,3667,1,0,0,0,3667,3825,1,0, - 0,0,3668,3670,5,191,0,0,3669,3671,5,63,0,0,3670,3669,1,0,0,0,3670, - 3671,1,0,0,0,3671,3672,1,0,0,0,3672,3674,5,92,0,0,3673,3675,3,416, - 208,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0,3675,3676,1,0,0,0,3676, - 3678,3,758,379,0,3677,3679,3,88,44,0,3678,3677,1,0,0,0,3678,3679, - 1,0,0,0,3679,3825,1,0,0,0,3680,3681,5,191,0,0,3681,3683,5,323,0, - 0,3682,3684,3,416,208,0,3683,3682,1,0,0,0,3683,3684,1,0,0,0,3684, - 3685,1,0,0,0,3685,3687,3,760,380,0,3686,3688,3,88,44,0,3687,3686, - 1,0,0,0,3687,3688,1,0,0,0,3688,3825,1,0,0,0,3689,3690,5,191,0,0, - 3690,3692,7,45,0,0,3691,3693,3,416,208,0,3692,3691,1,0,0,0,3692, - 3693,1,0,0,0,3693,3694,1,0,0,0,3694,3695,3,816,408,0,3695,3696,5, - 80,0,0,3696,3698,3,310,155,0,3697,3699,3,88,44,0,3698,3697,1,0,0, - 0,3698,3699,1,0,0,0,3699,3825,1,0,0,0,3700,3701,5,191,0,0,3701,3703, - 7,33,0,0,3702,3704,3,416,208,0,3703,3702,1,0,0,0,3703,3704,1,0,0, - 0,3704,3705,1,0,0,0,3705,3710,3,646,323,0,3706,3707,5,6,0,0,3707, - 3709,3,646,323,0,3708,3706,1,0,0,0,3709,3712,1,0,0,0,3710,3708,1, - 0,0,0,3710,3711,1,0,0,0,3711,3714,1,0,0,0,3712,3710,1,0,0,0,3713, - 3715,3,88,44,0,3714,3713,1,0,0,0,3714,3715,1,0,0,0,3715,3825,1,0, - 0,0,3716,3717,5,191,0,0,3717,3718,5,226,0,0,3718,3720,5,109,0,0, - 3719,3721,3,416,208,0,3720,3719,1,0,0,0,3720,3721,1,0,0,0,3721,3722, - 1,0,0,0,3722,3724,3,308,154,0,3723,3725,3,88,44,0,3724,3723,1,0, - 0,0,3724,3725,1,0,0,0,3725,3825,1,0,0,0,3726,3727,5,191,0,0,3727, - 3729,5,41,0,0,3728,3730,3,416,208,0,3729,3728,1,0,0,0,3729,3730, - 1,0,0,0,3730,3731,1,0,0,0,3731,3732,5,2,0,0,3732,3733,3,646,323, - 0,3733,3734,5,36,0,0,3734,3735,3,646,323,0,3735,3737,5,3,0,0,3736, - 3738,3,88,44,0,3737,3736,1,0,0,0,3737,3738,1,0,0,0,3738,3825,1,0, - 0,0,3739,3740,5,191,0,0,3740,3741,5,278,0,0,3741,3743,7,32,0,0,3742, - 3744,3,416,208,0,3743,3742,1,0,0,0,3743,3744,1,0,0,0,3744,3745,1, - 0,0,0,3745,3746,3,310,155,0,3746,3748,3,164,82,0,3747,3749,3,88, - 44,0,3748,3747,1,0,0,0,3748,3749,1,0,0,0,3749,3825,1,0,0,0,3750, - 3751,5,191,0,0,3751,3752,5,281,0,0,3752,3753,5,147,0,0,3753,3755, - 3,814,407,0,3754,3756,3,88,44,0,3755,3754,1,0,0,0,3755,3756,1,0, - 0,0,3756,3825,1,0,0,0,3757,3758,5,191,0,0,3758,3760,5,451,0,0,3759, - 3761,3,416,208,0,3760,3759,1,0,0,0,3760,3761,1,0,0,0,3761,3762,1, - 0,0,0,3762,3764,3,816,408,0,3763,3765,3,88,44,0,3764,3763,1,0,0, - 0,3764,3765,1,0,0,0,3765,3825,1,0,0,0,3766,3767,5,191,0,0,3767,3769, - 5,351,0,0,3768,3770,3,416,208,0,3769,3768,1,0,0,0,3769,3770,1,0, - 0,0,3770,3771,1,0,0,0,3771,3825,3,766,383,0,3772,3773,5,191,0,0, - 3773,3775,5,443,0,0,3774,3776,3,416,208,0,3775,3774,1,0,0,0,3775, - 3776,1,0,0,0,3776,3777,1,0,0,0,3777,3778,5,62,0,0,3778,3779,3,646, - 323,0,3779,3780,5,247,0,0,3780,3782,3,816,408,0,3781,3783,3,88,44, - 0,3782,3781,1,0,0,0,3782,3783,1,0,0,0,3783,3825,1,0,0,0,3784,3785, - 5,191,0,0,3785,3787,7,46,0,0,3786,3788,3,416,208,0,3787,3786,1,0, - 0,0,3787,3788,1,0,0,0,3788,3789,1,0,0,0,3789,3825,3,814,407,0,3790, - 3791,5,191,0,0,3791,3792,5,99,0,0,3792,3794,5,257,0,0,3793,3795, - 3,416,208,0,3794,3793,1,0,0,0,3794,3795,1,0,0,0,3795,3796,1,0,0, - 0,3796,3799,5,62,0,0,3797,3800,3,812,406,0,3798,3800,5,99,0,0,3799, - 3797,1,0,0,0,3799,3798,1,0,0,0,3800,3801,1,0,0,0,3801,3802,5,331, - 0,0,3802,3825,3,816,408,0,3803,3804,5,191,0,0,3804,3806,5,175,0, - 0,3805,3807,3,416,208,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807, - 3808,1,0,0,0,3808,3822,3,784,392,0,3809,3811,5,105,0,0,3810,3809, - 1,0,0,0,3810,3811,1,0,0,0,3811,3812,1,0,0,0,3812,3813,5,2,0,0,3813, - 3818,5,209,0,0,3814,3815,5,6,0,0,3815,3817,5,209,0,0,3816,3814,1, - 0,0,0,3817,3820,1,0,0,0,3818,3816,1,0,0,0,3818,3819,1,0,0,0,3819, - 3821,1,0,0,0,3820,3818,1,0,0,0,3821,3823,5,3,0,0,3822,3810,1,0,0, - 0,3822,3823,1,0,0,0,3823,3825,1,0,0,0,3824,3617,1,0,0,0,3824,3649, - 1,0,0,0,3824,3668,1,0,0,0,3824,3680,1,0,0,0,3824,3689,1,0,0,0,3824, - 3700,1,0,0,0,3824,3716,1,0,0,0,3824,3726,1,0,0,0,3824,3739,1,0,0, - 0,3824,3750,1,0,0,0,3824,3757,1,0,0,0,3824,3766,1,0,0,0,3824,3772, - 1,0,0,0,3824,3784,1,0,0,0,3824,3790,1,0,0,0,3824,3803,1,0,0,0,3825, - 303,1,0,0,0,3826,3828,5,63,0,0,3827,3826,1,0,0,0,3827,3828,1,0,0, - 0,3828,3829,1,0,0,0,3829,3830,5,92,0,0,3830,3843,3,770,385,0,3831, - 3833,5,259,0,0,3832,3831,1,0,0,0,3832,3833,1,0,0,0,3833,3834,1,0, - 0,0,3834,3835,5,376,0,0,3835,3843,3,774,387,0,3836,3837,7,47,0,0, - 3837,3843,3,310,155,0,3838,3839,5,355,0,0,3839,3840,5,325,0,0,3840, - 3841,7,42,0,0,3841,3843,3,310,155,0,3842,3827,1,0,0,0,3842,3832, - 1,0,0,0,3842,3836,1,0,0,0,3842,3838,1,0,0,0,3843,305,1,0,0,0,3844, - 3845,5,198,0,0,3845,3861,5,357,0,0,3846,3847,5,131,0,0,3847,3861, - 5,446,0,0,3848,3861,5,204,0,0,3849,3861,5,452,0,0,3850,3861,5,331, - 0,0,3851,3861,5,318,0,0,3852,3861,5,451,0,0,3853,3854,5,63,0,0,3854, - 3855,5,174,0,0,3855,3861,5,381,0,0,3856,3858,5,295,0,0,3857,3856, - 1,0,0,0,3857,3858,1,0,0,0,3858,3859,1,0,0,0,3859,3861,5,247,0,0, - 3860,3844,1,0,0,0,3860,3846,1,0,0,0,3860,3848,1,0,0,0,3860,3849, - 1,0,0,0,3860,3850,1,0,0,0,3860,3851,1,0,0,0,3860,3852,1,0,0,0,3860, - 3853,1,0,0,0,3860,3857,1,0,0,0,3861,3862,1,0,0,0,3862,3869,3,816, - 408,0,3863,3864,5,323,0,0,3864,3869,3,786,393,0,3865,3866,5,175, - 0,0,3866,3869,3,784,392,0,3867,3869,3,170,85,0,3868,3860,1,0,0,0, - 3868,3863,1,0,0,0,3868,3865,1,0,0,0,3868,3867,1,0,0,0,3869,307,1, - 0,0,0,3870,3875,3,310,155,0,3871,3872,5,6,0,0,3872,3874,3,310,155, - 0,3873,3871,1,0,0,0,3874,3877,1,0,0,0,3875,3873,1,0,0,0,3875,3876, - 1,0,0,0,3876,309,1,0,0,0,3877,3875,1,0,0,0,3878,3880,3,816,408,0, - 3879,3881,3,312,156,0,3880,3879,1,0,0,0,3880,3881,1,0,0,0,3881,311, - 1,0,0,0,3882,3883,5,11,0,0,3883,3885,3,822,411,0,3884,3882,1,0,0, - 0,3885,3886,1,0,0,0,3886,3884,1,0,0,0,3886,3887,1,0,0,0,3887,313, - 1,0,0,0,3888,3890,5,358,0,0,3889,3891,5,92,0,0,3890,3889,1,0,0,0, - 3890,3891,1,0,0,0,3891,3892,1,0,0,0,3892,3897,3,316,158,0,3893,3894, - 5,6,0,0,3894,3896,3,316,158,0,3895,3893,1,0,0,0,3896,3899,1,0,0, - 0,3897,3895,1,0,0,0,3897,3898,1,0,0,0,3898,3902,1,0,0,0,3899,3897, - 1,0,0,0,3900,3901,7,48,0,0,3901,3903,5,219,0,0,3902,3900,1,0,0,0, - 3902,3903,1,0,0,0,3903,3905,1,0,0,0,3904,3906,3,88,44,0,3905,3904, - 1,0,0,0,3905,3906,1,0,0,0,3906,315,1,0,0,0,3907,3909,5,81,0,0,3908, - 3907,1,0,0,0,3908,3909,1,0,0,0,3909,3910,1,0,0,0,3910,3912,3,770, - 385,0,3911,3913,5,9,0,0,3912,3911,1,0,0,0,3912,3913,1,0,0,0,3913, - 317,1,0,0,0,3914,3915,5,159,0,0,3915,3974,5,80,0,0,3916,3975,3,304, - 152,0,3917,3975,3,306,153,0,3918,3919,5,44,0,0,3919,3921,3,816,408, - 0,3920,3922,3,312,156,0,3921,3920,1,0,0,0,3921,3922,1,0,0,0,3922, - 3923,1,0,0,0,3923,3924,5,11,0,0,3924,3925,3,796,398,0,3925,3975, - 1,0,0,0,3926,3927,7,33,0,0,3927,3975,3,646,323,0,3928,3929,5,136, - 0,0,3929,3975,3,388,194,0,3930,3931,5,211,0,0,3931,3975,3,376,188, - 0,3932,3933,5,278,0,0,3933,3975,3,410,205,0,3934,3935,5,45,0,0,3935, - 3936,3,816,408,0,3936,3942,5,80,0,0,3937,3943,3,770,385,0,3938,3940, - 5,189,0,0,3939,3938,1,0,0,0,3939,3940,1,0,0,0,3940,3941,1,0,0,0, - 3941,3943,3,310,155,0,3942,3937,1,0,0,0,3942,3939,1,0,0,0,3943,3975, - 1,0,0,0,3944,3945,7,45,0,0,3945,3946,3,816,408,0,3946,3947,5,80, - 0,0,3947,3948,3,310,155,0,3948,3975,1,0,0,0,3949,3950,5,296,0,0, - 3950,3975,3,372,186,0,3951,3952,5,442,0,0,3952,3975,3,368,184,0, - 3953,3954,5,443,0,0,3954,3955,5,62,0,0,3955,3956,3,646,323,0,3956, - 3957,5,247,0,0,3957,3958,3,816,408,0,3958,3975,1,0,0,0,3959,3960, - 5,278,0,0,3960,3961,7,32,0,0,3961,3962,3,310,155,0,3962,3963,3,164, - 82,0,3963,3975,1,0,0,0,3964,3965,5,248,0,0,3965,3966,5,274,0,0,3966, - 3975,3,196,98,0,3967,3968,5,41,0,0,3968,3969,5,2,0,0,3969,3970,3, - 646,323,0,3970,3971,5,36,0,0,3971,3972,3,646,323,0,3972,3973,5,3, - 0,0,3973,3975,1,0,0,0,3974,3916,1,0,0,0,3974,3917,1,0,0,0,3974,3918, - 1,0,0,0,3974,3926,1,0,0,0,3974,3928,1,0,0,0,3974,3930,1,0,0,0,3974, - 3932,1,0,0,0,3974,3934,1,0,0,0,3974,3944,1,0,0,0,3974,3949,1,0,0, - 0,3974,3951,1,0,0,0,3974,3953,1,0,0,0,3974,3959,1,0,0,0,3974,3964, - 1,0,0,0,3974,3967,1,0,0,0,3975,3976,1,0,0,0,3976,3979,5,116,0,0, - 3977,3980,3,806,403,0,3978,3980,5,78,0,0,3979,3977,1,0,0,0,3979, - 3978,1,0,0,0,3980,319,1,0,0,0,3981,3982,5,327,0,0,3982,3985,5,246, - 0,0,3983,3984,5,62,0,0,3984,3986,3,58,29,0,3985,3983,1,0,0,0,3985, - 3986,1,0,0,0,3986,3987,1,0,0,0,3987,4005,5,80,0,0,3988,3989,7,33, - 0,0,3989,4006,3,646,323,0,3990,3991,5,136,0,0,3991,4006,3,388,194, - 0,3992,3993,5,44,0,0,3993,4006,3,796,398,0,3994,3995,5,211,0,0,3995, - 4006,3,376,188,0,3996,3997,5,248,0,0,3997,3998,5,274,0,0,3998,4006, - 3,196,98,0,3999,4000,5,296,0,0,4000,4006,3,372,186,0,4001,4002,5, - 442,0,0,4002,4006,3,368,184,0,4003,4006,3,304,152,0,4004,4006,3, - 306,153,0,4005,3988,1,0,0,0,4005,3990,1,0,0,0,4005,3992,1,0,0,0, - 4005,3994,1,0,0,0,4005,3996,1,0,0,0,4005,3999,1,0,0,0,4005,4001, - 1,0,0,0,4005,4003,1,0,0,0,4005,4004,1,0,0,0,4006,4007,1,0,0,0,4007, - 4010,5,116,0,0,4008,4011,3,806,403,0,4009,4011,5,78,0,0,4010,4008, - 1,0,0,0,4010,4009,1,0,0,0,4011,321,1,0,0,0,4012,4013,7,49,0,0,4013, - 4014,3,324,162,0,4014,323,1,0,0,0,4015,4017,7,50,0,0,4016,4015,1, - 0,0,0,4016,4017,1,0,0,0,4017,4019,1,0,0,0,4018,4020,3,326,163,0, - 4019,4018,1,0,0,0,4019,4020,1,0,0,0,4020,4021,1,0,0,0,4021,4059, - 3,816,408,0,4022,4024,7,51,0,0,4023,4022,1,0,0,0,4023,4024,1,0,0, - 0,4024,4025,1,0,0,0,4025,4027,3,810,405,0,4026,4028,3,326,163,0, - 4027,4026,1,0,0,0,4027,4028,1,0,0,0,4028,4029,1,0,0,0,4029,4030, - 3,816,408,0,4030,4059,1,0,0,0,4031,4033,5,210,0,0,4032,4034,3,810, - 405,0,4033,4032,1,0,0,0,4033,4034,1,0,0,0,4034,4036,1,0,0,0,4035, - 4037,3,326,163,0,4036,4035,1,0,0,0,4036,4037,1,0,0,0,4037,4038,1, - 0,0,0,4038,4059,3,816,408,0,4039,4041,5,210,0,0,4040,4039,1,0,0, - 0,4040,4041,1,0,0,0,4041,4042,1,0,0,0,4042,4044,5,30,0,0,4043,4045, - 3,326,163,0,4044,4043,1,0,0,0,4044,4045,1,0,0,0,4045,4046,1,0,0, - 0,4046,4059,3,816,408,0,4047,4052,5,144,0,0,4048,4050,5,30,0,0,4049, - 4048,1,0,0,0,4049,4050,1,0,0,0,4050,4053,1,0,0,0,4051,4053,3,810, - 405,0,4052,4049,1,0,0,0,4052,4051,1,0,0,0,4053,4055,1,0,0,0,4054, - 4056,3,326,163,0,4055,4054,1,0,0,0,4055,4056,1,0,0,0,4056,4057,1, - 0,0,0,4057,4059,3,816,408,0,4058,4016,1,0,0,0,4058,4023,1,0,0,0, - 4058,4031,1,0,0,0,4058,4040,1,0,0,0,4058,4047,1,0,0,0,4059,325,1, - 0,0,0,4060,4061,7,52,0,0,4061,327,1,0,0,0,4062,4063,5,65,0,0,4063, - 4064,3,332,166,0,4064,4065,5,80,0,0,4065,4066,3,338,169,0,4066,4067, - 5,94,0,0,4067,4071,3,340,170,0,4068,4069,5,105,0,0,4069,4070,5,65, - 0,0,4070,4072,5,279,0,0,4071,4068,1,0,0,0,4071,4072,1,0,0,0,4072, - 329,1,0,0,0,4073,4077,5,317,0,0,4074,4075,5,65,0,0,4075,4076,5,279, - 0,0,4076,4078,5,62,0,0,4077,4074,1,0,0,0,4077,4078,1,0,0,0,4078, - 4079,1,0,0,0,4079,4080,3,332,166,0,4080,4081,5,80,0,0,4081,4082, - 3,338,169,0,4082,4083,5,64,0,0,4083,4085,3,340,170,0,4084,4086,3, - 88,44,0,4085,4084,1,0,0,0,4085,4086,1,0,0,0,4086,331,1,0,0,0,4087, - 4092,3,336,168,0,4088,4089,5,6,0,0,4089,4091,3,336,168,0,4090,4088, - 1,0,0,0,4091,4094,1,0,0,0,4092,4090,1,0,0,0,4092,4093,1,0,0,0,4093, - 4111,1,0,0,0,4094,4092,1,0,0,0,4095,4097,5,30,0,0,4096,4098,5,294, - 0,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,4100,1,0,0,0,4099,4101, - 3,138,69,0,4100,4099,1,0,0,0,4100,4101,1,0,0,0,4101,4111,1,0,0,0, - 4102,4107,3,334,167,0,4103,4104,5,6,0,0,4104,4106,3,334,167,0,4105, - 4103,1,0,0,0,4106,4109,1,0,0,0,4107,4105,1,0,0,0,4107,4108,1,0,0, - 0,4108,4111,1,0,0,0,4109,4107,1,0,0,0,4110,4087,1,0,0,0,4110,4095, - 1,0,0,0,4110,4102,1,0,0,0,4111,333,1,0,0,0,4112,4113,7,53,0,0,4113, - 335,1,0,0,0,4114,4119,5,88,0,0,4115,4119,5,86,0,0,4116,4119,5,46, - 0,0,4117,4119,3,816,408,0,4118,4114,1,0,0,0,4118,4115,1,0,0,0,4118, - 4116,1,0,0,0,4118,4117,1,0,0,0,4119,4121,1,0,0,0,4120,4122,3,138, - 69,0,4121,4120,1,0,0,0,4121,4122,1,0,0,0,4122,337,1,0,0,0,4123,4124, - 5,92,0,0,4124,4169,3,758,379,0,4125,4127,5,328,0,0,4126,4125,1,0, - 0,0,4126,4127,1,0,0,0,4127,4128,1,0,0,0,4128,4169,3,756,378,0,4129, - 4133,5,63,0,0,4130,4131,5,174,0,0,4131,4134,5,381,0,0,4132,4134, - 5,331,0,0,4133,4130,1,0,0,0,4133,4132,1,0,0,0,4134,4137,1,0,0,0, - 4135,4137,5,247,0,0,4136,4129,1,0,0,0,4136,4135,1,0,0,0,4137,4138, - 1,0,0,0,4138,4169,3,780,390,0,4139,4140,5,211,0,0,4140,4169,3,374, - 187,0,4141,4142,5,296,0,0,4142,4169,3,370,185,0,4143,4144,5,442, - 0,0,4144,4169,3,366,183,0,4145,4146,5,175,0,0,4146,4169,3,762,381, - 0,4147,4148,7,33,0,0,4148,4169,3,308,154,0,4149,4150,5,248,0,0,4150, - 4151,5,274,0,0,4151,4156,3,196,98,0,4152,4153,5,6,0,0,4153,4155, - 3,196,98,0,4154,4152,1,0,0,0,4155,4158,1,0,0,0,4156,4154,1,0,0,0, - 4156,4157,1,0,0,0,4157,4169,1,0,0,0,4158,4156,1,0,0,0,4159,4160, - 5,323,0,0,4160,4169,3,760,380,0,4161,4162,5,351,0,0,4162,4169,3, - 778,389,0,4163,4164,5,30,0,0,4164,4165,7,54,0,0,4165,4166,5,68,0, - 0,4166,4167,5,323,0,0,4167,4169,3,760,380,0,4168,4123,1,0,0,0,4168, - 4126,1,0,0,0,4168,4136,1,0,0,0,4168,4139,1,0,0,0,4168,4141,1,0,0, - 0,4168,4143,1,0,0,0,4168,4145,1,0,0,0,4168,4147,1,0,0,0,4168,4149, - 1,0,0,0,4168,4159,1,0,0,0,4168,4161,1,0,0,0,4168,4163,1,0,0,0,4169, - 339,1,0,0,0,4170,4172,5,66,0,0,4171,4170,1,0,0,0,4171,4172,1,0,0, - 0,4172,4173,1,0,0,0,4173,4174,3,812,406,0,4174,4182,1,0,0,0,4175, - 4177,5,6,0,0,4176,4178,5,66,0,0,4177,4176,1,0,0,0,4177,4178,1,0, - 0,0,4178,4179,1,0,0,0,4179,4181,3,812,406,0,4180,4175,1,0,0,0,4181, - 4184,1,0,0,0,4182,4180,1,0,0,0,4182,4183,1,0,0,0,4183,341,1,0,0, - 0,4184,4182,1,0,0,0,4185,4186,5,65,0,0,4186,4191,3,336,168,0,4187, - 4188,5,6,0,0,4188,4190,3,336,168,0,4189,4187,1,0,0,0,4190,4193,1, - 0,0,0,4191,4189,1,0,0,0,4191,4192,1,0,0,0,4192,4194,1,0,0,0,4193, - 4191,1,0,0,0,4194,4195,5,94,0,0,4195,4199,3,814,407,0,4196,4197, - 5,105,0,0,4197,4198,5,134,0,0,4198,4200,5,279,0,0,4199,4196,1,0, - 0,0,4199,4200,1,0,0,0,4200,4204,1,0,0,0,4201,4202,5,214,0,0,4202, - 4203,5,147,0,0,4203,4205,3,812,406,0,4204,4201,1,0,0,0,4204,4205, - 1,0,0,0,4205,343,1,0,0,0,4206,4210,5,317,0,0,4207,4208,5,134,0,0, - 4208,4209,5,279,0,0,4209,4211,5,62,0,0,4210,4207,1,0,0,0,4210,4211, - 1,0,0,0,4211,4212,1,0,0,0,4212,4217,3,336,168,0,4213,4214,5,6,0, - 0,4214,4216,3,336,168,0,4215,4213,1,0,0,0,4216,4219,1,0,0,0,4217, - 4215,1,0,0,0,4217,4218,1,0,0,0,4218,4220,1,0,0,0,4219,4217,1,0,0, - 0,4220,4221,5,64,0,0,4221,4225,3,814,407,0,4222,4223,5,214,0,0,4223, - 4224,5,147,0,0,4224,4226,3,812,406,0,4225,4222,1,0,0,0,4225,4226, - 1,0,0,0,4226,4228,1,0,0,0,4227,4229,3,88,44,0,4228,4227,1,0,0,0, - 4228,4229,1,0,0,0,4229,345,1,0,0,0,4230,4231,5,138,0,0,4231,4232, - 5,53,0,0,4232,4241,5,294,0,0,4233,4234,5,68,0,0,4234,4235,5,323, - 0,0,4235,4240,3,760,380,0,4236,4237,5,62,0,0,4237,4238,7,2,0,0,4238, - 4240,3,814,407,0,4239,4233,1,0,0,0,4239,4236,1,0,0,0,4240,4243,1, - 0,0,0,4241,4239,1,0,0,0,4241,4242,1,0,0,0,4242,4244,1,0,0,0,4243, - 4241,1,0,0,0,4244,4245,3,348,174,0,4245,347,1,0,0,0,4246,4247,5, - 65,0,0,4247,4248,3,332,166,0,4248,4249,5,80,0,0,4249,4250,3,350, - 175,0,4250,4251,5,94,0,0,4251,4255,3,340,170,0,4252,4253,5,105,0, - 0,4253,4254,5,65,0,0,4254,4256,5,279,0,0,4255,4252,1,0,0,0,4255, - 4256,1,0,0,0,4256,4272,1,0,0,0,4257,4261,5,317,0,0,4258,4259,5,65, - 0,0,4259,4260,5,279,0,0,4260,4262,5,62,0,0,4261,4258,1,0,0,0,4261, - 4262,1,0,0,0,4262,4263,1,0,0,0,4263,4264,3,332,166,0,4264,4265,5, - 80,0,0,4265,4266,3,350,175,0,4266,4267,5,64,0,0,4267,4269,3,340, - 170,0,4268,4270,3,88,44,0,4269,4268,1,0,0,0,4269,4270,1,0,0,0,4270, - 4272,1,0,0,0,4271,4246,1,0,0,0,4271,4257,1,0,0,0,4272,349,1,0,0, - 0,4273,4274,7,55,0,0,4274,351,1,0,0,0,4275,4277,5,46,0,0,4276,4278, - 5,98,0,0,4277,4276,1,0,0,0,4277,4278,1,0,0,0,4278,4279,1,0,0,0,4279, - 4281,5,226,0,0,4280,4282,5,109,0,0,4281,4280,1,0,0,0,4281,4282,1, - 0,0,0,4282,4284,1,0,0,0,4283,4285,3,288,144,0,4284,4283,1,0,0,0, - 4284,4285,1,0,0,0,4285,4287,1,0,0,0,4286,4288,3,816,408,0,4287,4286, - 1,0,0,0,4287,4288,1,0,0,0,4288,4289,1,0,0,0,4289,4290,5,80,0,0,4290, - 4292,3,618,309,0,4291,4293,3,164,82,0,4292,4291,1,0,0,0,4292,4293, - 1,0,0,0,4293,4294,1,0,0,0,4294,4297,3,354,177,0,4295,4296,5,441, - 0,0,4296,4298,3,354,177,0,4297,4295,1,0,0,0,4297,4298,1,0,0,0,4298, - 4304,1,0,0,0,4299,4301,5,273,0,0,4300,4302,5,77,0,0,4301,4300,1, - 0,0,0,4301,4302,1,0,0,0,4302,4303,1,0,0,0,4303,4305,5,56,0,0,4304, - 4299,1,0,0,0,4304,4305,1,0,0,0,4305,4307,1,0,0,0,4306,4308,3,94, - 47,0,4307,4306,1,0,0,0,4307,4308,1,0,0,0,4308,4310,1,0,0,0,4309, - 4311,3,170,85,0,4310,4309,1,0,0,0,4310,4311,1,0,0,0,4311,4313,1, - 0,0,0,4312,4314,3,632,316,0,4313,4312,1,0,0,0,4313,4314,1,0,0,0, - 4314,353,1,0,0,0,4315,4316,5,2,0,0,4316,4321,3,356,178,0,4317,4318, - 5,6,0,0,4318,4320,3,356,178,0,4319,4317,1,0,0,0,4320,4323,1,0,0, - 0,4321,4319,1,0,0,0,4321,4322,1,0,0,0,4322,4324,1,0,0,0,4323,4321, - 1,0,0,0,4324,4325,5,3,0,0,4325,355,1,0,0,0,4326,4333,3,796,398,0, - 4327,4333,3,682,341,0,4328,4329,5,2,0,0,4329,4330,3,668,334,0,4330, - 4331,5,3,0,0,4331,4333,1,0,0,0,4332,4326,1,0,0,0,4332,4327,1,0,0, - 0,4332,4328,1,0,0,0,4333,4335,1,0,0,0,4334,4336,3,90,45,0,4335,4334, - 1,0,0,0,4335,4336,1,0,0,0,4336,4343,1,0,0,0,4337,4339,3,310,155, - 0,4338,4337,1,0,0,0,4338,4339,1,0,0,0,4339,4344,1,0,0,0,4340,4341, - 3,310,155,0,4341,4342,3,92,46,0,4342,4344,1,0,0,0,4343,4338,1,0, - 0,0,4343,4340,1,0,0,0,4344,4346,1,0,0,0,4345,4347,7,56,0,0,4346, - 4345,1,0,0,0,4346,4347,1,0,0,0,4347,4350,1,0,0,0,4348,4349,5,273, - 0,0,4349,4351,7,57,0,0,4350,4348,1,0,0,0,4350,4351,1,0,0,0,4351, - 357,1,0,0,0,4352,4354,5,46,0,0,4353,4355,3,360,180,0,4354,4353,1, - 0,0,0,4354,4355,1,0,0,0,4355,4360,1,0,0,0,4356,4357,5,211,0,0,4357, - 4361,3,802,401,0,4358,4359,5,296,0,0,4359,4361,3,794,397,0,4360, - 4356,1,0,0,0,4360,4358,1,0,0,0,4361,4362,1,0,0,0,4362,4371,5,2,0, - 0,4363,4368,3,384,192,0,4364,4365,5,6,0,0,4365,4367,3,384,192,0, - 4366,4364,1,0,0,0,4367,4370,1,0,0,0,4368,4366,1,0,0,0,4368,4369, - 1,0,0,0,4369,4372,1,0,0,0,4370,4368,1,0,0,0,4371,4363,1,0,0,0,4371, - 4372,1,0,0,0,4372,4373,1,0,0,0,4373,4374,5,3,0,0,4374,4391,1,0,0, - 0,4375,4389,5,316,0,0,4376,4390,3,382,191,0,4377,4378,5,92,0,0,4378, - 4379,5,2,0,0,4379,4384,3,396,198,0,4380,4381,5,6,0,0,4381,4383,3, - 396,198,0,4382,4380,1,0,0,0,4383,4386,1,0,0,0,4384,4382,1,0,0,0, - 4384,4385,1,0,0,0,4385,4387,1,0,0,0,4386,4384,1,0,0,0,4387,4388, - 5,3,0,0,4388,4390,1,0,0,0,4389,4376,1,0,0,0,4389,4377,1,0,0,0,4390, - 4392,1,0,0,0,4391,4375,1,0,0,0,4391,4392,1,0,0,0,4392,4394,1,0,0, - 0,4393,4395,3,392,196,0,4394,4393,1,0,0,0,4395,4396,1,0,0,0,4396, - 4394,1,0,0,0,4396,4397,1,0,0,0,4397,4403,1,0,0,0,4398,4399,5,105, - 0,0,4399,4400,5,2,0,0,4400,4401,3,780,390,0,4401,4402,5,3,0,0,4402, - 4404,1,0,0,0,4403,4398,1,0,0,0,4403,4404,1,0,0,0,4404,359,1,0,0, - 0,4405,4406,5,82,0,0,4406,4407,5,311,0,0,4407,361,1,0,0,0,4408,4410, - 5,2,0,0,4409,4411,3,364,182,0,4410,4409,1,0,0,0,4410,4411,1,0,0, - 0,4411,4412,1,0,0,0,4412,4413,5,3,0,0,4413,363,1,0,0,0,4414,4419, - 3,378,189,0,4415,4416,5,6,0,0,4416,4418,3,378,189,0,4417,4415,1, - 0,0,0,4418,4421,1,0,0,0,4419,4417,1,0,0,0,4419,4420,1,0,0,0,4420, - 365,1,0,0,0,4421,4419,1,0,0,0,4422,4427,3,368,184,0,4423,4424,5, - 6,0,0,4424,4426,3,368,184,0,4425,4423,1,0,0,0,4426,4429,1,0,0,0, - 4427,4425,1,0,0,0,4427,4428,1,0,0,0,4428,367,1,0,0,0,4429,4427,1, - 0,0,0,4430,4431,3,790,395,0,4431,4432,3,362,181,0,4432,4436,1,0, - 0,0,4433,4436,3,830,415,0,4434,4436,3,776,388,0,4435,4430,1,0,0, - 0,4435,4433,1,0,0,0,4435,4434,1,0,0,0,4436,369,1,0,0,0,4437,4442, - 3,372,186,0,4438,4439,5,6,0,0,4439,4441,3,372,186,0,4440,4438,1, - 0,0,0,4441,4444,1,0,0,0,4442,4440,1,0,0,0,4442,4443,1,0,0,0,4443, - 371,1,0,0,0,4444,4442,1,0,0,0,4445,4446,3,792,396,0,4446,4447,3, - 362,181,0,4447,4451,1,0,0,0,4448,4451,3,830,415,0,4449,4451,3,776, - 388,0,4450,4445,1,0,0,0,4450,4448,1,0,0,0,4450,4449,1,0,0,0,4451, - 373,1,0,0,0,4452,4457,3,376,188,0,4453,4454,5,6,0,0,4454,4456,3, - 376,188,0,4455,4453,1,0,0,0,4456,4459,1,0,0,0,4457,4455,1,0,0,0, - 4457,4458,1,0,0,0,4458,375,1,0,0,0,4459,4457,1,0,0,0,4460,4461,3, - 804,402,0,4461,4462,3,362,181,0,4462,4466,1,0,0,0,4463,4466,3,830, - 415,0,4464,4466,3,776,388,0,4465,4460,1,0,0,0,4465,4463,1,0,0,0, - 4465,4464,1,0,0,0,4466,377,1,0,0,0,4467,4469,3,380,190,0,4468,4470, - 3,818,409,0,4469,4468,1,0,0,0,4469,4470,1,0,0,0,4470,4476,1,0,0, - 0,4471,4473,3,818,409,0,4472,4474,3,380,190,0,4473,4472,1,0,0,0, - 4473,4474,1,0,0,0,4474,4476,1,0,0,0,4475,4467,1,0,0,0,4475,4471, - 1,0,0,0,4475,4476,1,0,0,0,4476,4477,1,0,0,0,4477,4478,3,382,191, - 0,4478,379,1,0,0,0,4479,4481,5,68,0,0,4480,4482,5,453,0,0,4481,4480, - 1,0,0,0,4481,4482,1,0,0,0,4482,4487,1,0,0,0,4483,4487,5,453,0,0, - 4484,4487,5,400,0,0,4485,4487,5,101,0,0,4486,4479,1,0,0,0,4486,4483, - 1,0,0,0,4486,4484,1,0,0,0,4486,4485,1,0,0,0,4487,381,1,0,0,0,4488, - 4498,3,646,323,0,4489,4491,5,415,0,0,4490,4489,1,0,0,0,4490,4491, - 1,0,0,0,4491,4492,1,0,0,0,4492,4493,3,818,409,0,4493,4494,3,312, - 156,0,4494,4495,5,27,0,0,4495,4496,5,360,0,0,4496,4498,1,0,0,0,4497, - 4488,1,0,0,0,4497,4490,1,0,0,0,4498,383,1,0,0,0,4499,4502,3,378, - 189,0,4500,4501,7,58,0,0,4501,4503,3,668,334,0,4502,4500,1,0,0,0, - 4502,4503,1,0,0,0,4503,385,1,0,0,0,4504,4514,5,2,0,0,4505,4515,5, - 9,0,0,4506,4508,3,364,182,0,4507,4506,1,0,0,0,4507,4508,1,0,0,0, - 4508,4512,1,0,0,0,4509,4510,5,83,0,0,4510,4511,5,147,0,0,4511,4513, - 3,364,182,0,4512,4509,1,0,0,0,4512,4513,1,0,0,0,4513,4515,1,0,0, - 0,4514,4505,1,0,0,0,4514,4507,1,0,0,0,4515,4516,1,0,0,0,4516,4517, - 5,3,0,0,4517,387,1,0,0,0,4518,4519,3,804,402,0,4519,4520,3,386,193, - 0,4520,389,1,0,0,0,4521,4522,5,316,0,0,4522,4525,5,78,0,0,4523,4525, - 5,149,0,0,4524,4521,1,0,0,0,4524,4523,1,0,0,0,4525,4526,1,0,0,0, - 4526,4527,5,80,0,0,4527,4528,5,78,0,0,4528,4551,5,458,0,0,4529,4551, - 5,346,0,0,4530,4551,5,222,0,0,4531,4551,5,338,0,0,4532,4551,5,377, - 0,0,4533,4535,5,205,0,0,4534,4533,1,0,0,0,4534,4535,1,0,0,0,4535, - 4536,1,0,0,0,4536,4537,5,327,0,0,4537,4551,7,59,0,0,4538,4551,5, - 250,0,0,4539,4540,5,77,0,0,4540,4551,5,250,0,0,4541,4542,7,60,0, - 0,4542,4551,3,196,98,0,4543,4544,5,459,0,0,4544,4551,3,310,155,0, - 4545,4546,5,333,0,0,4546,4551,3,42,21,0,4547,4551,3,60,30,0,4548, - 4549,5,460,0,0,4549,4551,3,816,408,0,4550,4524,1,0,0,0,4550,4529, - 1,0,0,0,4550,4530,1,0,0,0,4550,4531,1,0,0,0,4550,4532,1,0,0,0,4550, - 4534,1,0,0,0,4550,4538,1,0,0,0,4550,4539,1,0,0,0,4550,4541,1,0,0, - 0,4550,4543,1,0,0,0,4550,4545,1,0,0,0,4550,4547,1,0,0,0,4550,4548, - 1,0,0,0,4551,391,1,0,0,0,4552,4553,5,36,0,0,4553,4554,3,806,403, - 0,4554,4555,3,456,228,0,4555,4588,1,0,0,0,4556,4557,5,247,0,0,4557, - 4588,3,58,29,0,4558,4559,5,443,0,0,4559,4560,5,62,0,0,4560,4561, - 5,360,0,0,4561,4568,3,646,323,0,4562,4563,5,6,0,0,4563,4564,5,62, - 0,0,4564,4565,5,360,0,0,4565,4567,3,646,323,0,4566,4562,1,0,0,0, - 4567,4570,1,0,0,0,4568,4566,1,0,0,0,4568,4569,1,0,0,0,4569,4588, - 1,0,0,0,4570,4568,1,0,0,0,4571,4588,5,104,0,0,4572,4573,5,333,0, - 0,4573,4580,3,816,408,0,4574,4575,5,94,0,0,4575,4581,3,816,408,0, - 4576,4577,5,10,0,0,4577,4581,3,816,408,0,4578,4579,5,64,0,0,4579, - 4581,5,434,0,0,4580,4574,1,0,0,0,4580,4576,1,0,0,0,4580,4578,1,0, - 0,0,4581,4588,1,0,0,0,4582,4583,5,36,0,0,4583,4588,3,816,408,0,4584, - 4588,3,4,2,0,4585,4588,3,390,195,0,4586,4588,3,816,408,0,4587,4552, - 1,0,0,0,4587,4556,1,0,0,0,4587,4558,1,0,0,0,4587,4571,1,0,0,0,4587, - 4572,1,0,0,0,4587,4582,1,0,0,0,4587,4584,1,0,0,0,4587,4585,1,0,0, - 0,4587,4586,1,0,0,0,4588,393,1,0,0,0,4589,4590,5,105,0,0,4590,4591, - 3,278,139,0,4591,395,1,0,0,0,4592,4593,3,796,398,0,4593,4594,3,382, - 191,0,4594,397,1,0,0,0,4595,4602,5,138,0,0,4596,4597,5,211,0,0,4597, - 4603,3,376,188,0,4598,4599,5,296,0,0,4599,4603,3,372,186,0,4600, - 4601,5,442,0,0,4601,4603,3,368,184,0,4602,4596,1,0,0,0,4602,4598, - 1,0,0,0,4602,4600,1,0,0,0,4603,4605,1,0,0,0,4604,4606,3,390,195, - 0,4605,4604,1,0,0,0,4606,4607,1,0,0,0,4607,4605,1,0,0,0,4607,4608, - 1,0,0,0,4608,4610,1,0,0,0,4609,4611,5,315,0,0,4610,4609,1,0,0,0, - 4610,4611,1,0,0,0,4611,399,1,0,0,0,4612,4628,5,191,0,0,4613,4615, - 5,211,0,0,4614,4616,3,416,208,0,4615,4614,1,0,0,0,4615,4616,1,0, - 0,0,4616,4617,1,0,0,0,4617,4629,3,374,187,0,4618,4620,5,296,0,0, - 4619,4621,3,416,208,0,4620,4619,1,0,0,0,4620,4621,1,0,0,0,4621,4622, - 1,0,0,0,4622,4629,3,370,185,0,4623,4625,5,442,0,0,4624,4626,3,416, - 208,0,4625,4624,1,0,0,0,4625,4626,1,0,0,0,4626,4627,1,0,0,0,4627, - 4629,3,366,183,0,4628,4613,1,0,0,0,4628,4618,1,0,0,0,4628,4623,1, - 0,0,0,4629,4631,1,0,0,0,4630,4632,3,88,44,0,4631,4630,1,0,0,0,4631, - 4632,1,0,0,0,4632,401,1,0,0,0,4633,4634,5,191,0,0,4634,4636,5,136, - 0,0,4635,4637,3,416,208,0,4636,4635,1,0,0,0,4636,4637,1,0,0,0,4637, - 4638,1,0,0,0,4638,4643,3,388,194,0,4639,4640,5,6,0,0,4640,4642,3, - 388,194,0,4641,4639,1,0,0,0,4642,4645,1,0,0,0,4643,4641,1,0,0,0, - 4643,4644,1,0,0,0,4644,4647,1,0,0,0,4645,4643,1,0,0,0,4646,4648, - 3,88,44,0,4647,4646,1,0,0,0,4647,4648,1,0,0,0,4648,403,1,0,0,0,4649, - 4650,5,191,0,0,4650,4652,5,278,0,0,4651,4653,3,416,208,0,4652,4651, - 1,0,0,0,4652,4653,1,0,0,0,4653,4654,1,0,0,0,4654,4659,3,410,205, - 0,4655,4656,5,6,0,0,4656,4658,3,410,205,0,4657,4655,1,0,0,0,4658, - 4661,1,0,0,0,4659,4657,1,0,0,0,4659,4660,1,0,0,0,4660,4663,1,0,0, - 0,4661,4659,1,0,0,0,4662,4664,3,88,44,0,4663,4662,1,0,0,0,4663,4664, - 1,0,0,0,4664,405,1,0,0,0,4665,4678,5,2,0,0,4666,4669,3,646,323,0, - 4667,4668,5,6,0,0,4668,4670,3,646,323,0,4669,4667,1,0,0,0,4669,4670, - 1,0,0,0,4670,4679,1,0,0,0,4671,4672,5,407,0,0,4672,4673,5,6,0,0, - 4673,4679,3,646,323,0,4674,4675,3,646,323,0,4675,4676,5,6,0,0,4676, - 4677,5,407,0,0,4677,4679,1,0,0,0,4678,4666,1,0,0,0,4678,4671,1,0, - 0,0,4678,4674,1,0,0,0,4679,4680,1,0,0,0,4680,4681,5,3,0,0,4681,407, - 1,0,0,0,4682,4683,3,816,408,0,4683,4684,5,11,0,0,4684,4686,1,0,0, - 0,4685,4682,1,0,0,0,4686,4689,1,0,0,0,4687,4685,1,0,0,0,4687,4688, - 1,0,0,0,4688,4690,1,0,0,0,4689,4687,1,0,0,0,4690,4691,3,716,358, - 0,4691,409,1,0,0,0,4692,4693,3,408,204,0,4693,4694,3,406,203,0,4694, - 411,1,0,0,0,4695,4699,5,57,0,0,4696,4700,3,806,403,0,4697,4698,5, - 247,0,0,4698,4700,3,58,29,0,4699,4696,1,0,0,0,4699,4697,1,0,0,0, - 4700,4701,1,0,0,0,4701,4699,1,0,0,0,4701,4702,1,0,0,0,4702,413,1, - 0,0,0,4703,4704,5,46,0,0,4704,4705,5,41,0,0,4705,4706,5,2,0,0,4706, - 4707,3,646,323,0,4707,4708,5,36,0,0,4708,4709,3,646,323,0,4709,4726, - 5,3,0,0,4710,4711,5,379,0,0,4711,4714,5,211,0,0,4712,4713,5,36,0, - 0,4713,4715,7,61,0,0,4714,4712,1,0,0,0,4714,4715,1,0,0,0,4715,4727, - 1,0,0,0,4716,4720,5,105,0,0,4717,4718,5,211,0,0,4718,4721,3,376, - 188,0,4719,4721,5,400,0,0,4720,4717,1,0,0,0,4720,4719,1,0,0,0,4721, - 4724,1,0,0,0,4722,4723,5,36,0,0,4723,4725,7,61,0,0,4724,4722,1,0, - 0,0,4724,4725,1,0,0,0,4725,4727,1,0,0,0,4726,4710,1,0,0,0,4726,4716, - 1,0,0,0,4727,415,1,0,0,0,4728,4729,5,220,0,0,4729,4730,5,396,0,0, - 4730,417,1,0,0,0,4731,4733,5,46,0,0,4732,4734,3,360,180,0,4733,4732, - 1,0,0,0,4733,4734,1,0,0,0,4734,4735,1,0,0,0,4735,4736,5,443,0,0, - 4736,4737,5,62,0,0,4737,4738,3,646,323,0,4738,4739,5,247,0,0,4739, - 4740,3,816,408,0,4740,4755,5,2,0,0,4741,4742,5,64,0,0,4742,4746, - 3,420,210,0,4743,4744,5,6,0,0,4744,4745,5,94,0,0,4745,4747,3,420, - 210,0,4746,4743,1,0,0,0,4746,4747,1,0,0,0,4747,4756,1,0,0,0,4748, - 4749,5,94,0,0,4749,4753,3,420,210,0,4750,4751,5,6,0,0,4751,4752, - 5,64,0,0,4752,4754,3,420,210,0,4753,4750,1,0,0,0,4753,4754,1,0,0, - 0,4754,4756,1,0,0,0,4755,4741,1,0,0,0,4755,4748,1,0,0,0,4756,4757, - 1,0,0,0,4757,4758,5,3,0,0,4758,419,1,0,0,0,4759,4760,5,461,0,0,4760, - 4761,5,105,0,0,4761,4762,5,211,0,0,4762,4763,3,376,188,0,4763,421, - 1,0,0,0,4764,4775,5,306,0,0,4765,4766,5,2,0,0,4766,4771,5,128,0, - 0,4767,4768,5,6,0,0,4768,4770,5,128,0,0,4769,4767,1,0,0,0,4770,4773, - 1,0,0,0,4771,4769,1,0,0,0,4771,4772,1,0,0,0,4772,4774,1,0,0,0,4773, - 4771,1,0,0,0,4774,4776,5,3,0,0,4775,4765,1,0,0,0,4775,4776,1,0,0, - 0,4776,4802,1,0,0,0,4777,4779,5,226,0,0,4778,4780,5,109,0,0,4779, - 4778,1,0,0,0,4779,4780,1,0,0,0,4780,4781,1,0,0,0,4781,4803,3,776, - 388,0,4782,4784,5,92,0,0,4783,4785,5,109,0,0,4784,4783,1,0,0,0,4784, - 4785,1,0,0,0,4785,4786,1,0,0,0,4786,4803,3,770,385,0,4787,4789,5, - 323,0,0,4788,4790,5,109,0,0,4789,4788,1,0,0,0,4789,4790,1,0,0,0, - 4790,4791,1,0,0,0,4791,4803,3,786,393,0,4792,4794,5,349,0,0,4793, - 4795,5,109,0,0,4794,4793,1,0,0,0,4794,4795,1,0,0,0,4795,4796,1,0, - 0,0,4796,4803,3,816,408,0,4797,4799,5,175,0,0,4798,4800,5,109,0, - 0,4799,4798,1,0,0,0,4799,4800,1,0,0,0,4800,4801,1,0,0,0,4801,4803, - 3,784,392,0,4802,4777,1,0,0,0,4802,4782,1,0,0,0,4802,4787,1,0,0, - 0,4802,4792,1,0,0,0,4802,4797,1,0,0,0,4803,423,1,0,0,0,4804,4805, - 5,138,0,0,4805,4806,3,170,85,0,4806,4807,7,16,0,0,4807,4808,3,92, - 46,0,4808,425,1,0,0,0,4809,4814,5,138,0,0,4810,4811,5,136,0,0,4811, - 4815,3,388,194,0,4812,4813,5,442,0,0,4813,4815,3,368,184,0,4814, - 4810,1,0,0,0,4814,4812,1,0,0,0,4815,4816,1,0,0,0,4816,4817,5,309, - 0,0,4817,4818,5,94,0,0,4818,4819,3,816,408,0,4819,5017,1,0,0,0,4820, - 4821,5,138,0,0,4821,4822,5,175,0,0,4822,4823,3,784,392,0,4823,4824, - 5,309,0,0,4824,4825,5,94,0,0,4825,4826,3,782,391,0,4826,5017,1,0, - 0,0,4827,4828,5,138,0,0,4828,4829,7,62,0,0,4829,4830,3,310,155,0, - 4830,4831,5,309,0,0,4831,4832,5,94,0,0,4832,4833,3,816,408,0,4833, - 5017,1,0,0,0,4834,4835,5,138,0,0,4835,4836,5,211,0,0,4836,4837,3, - 376,188,0,4837,4838,5,309,0,0,4838,4839,5,94,0,0,4839,4840,3,802, - 401,0,4840,5017,1,0,0,0,4841,4842,5,138,0,0,4842,4843,5,278,0,0, - 4843,4844,7,32,0,0,4844,4845,3,310,155,0,4845,4846,3,164,82,0,4846, - 4847,5,309,0,0,4847,4848,5,94,0,0,4848,4849,3,816,408,0,4849,5017, - 1,0,0,0,4850,4851,5,138,0,0,4851,4852,5,296,0,0,4852,4853,3,372, - 186,0,4853,4854,5,309,0,0,4854,4855,5,94,0,0,4855,4856,3,794,397, - 0,4856,5017,1,0,0,0,4857,4858,5,138,0,0,4858,4859,5,323,0,0,4859, - 4860,3,786,393,0,4860,4861,5,309,0,0,4861,4862,5,94,0,0,4862,4863, - 3,32,16,0,4863,5017,1,0,0,0,4864,4865,5,138,0,0,4865,4867,7,63,0, - 0,4866,4868,3,416,208,0,4867,4866,1,0,0,0,4867,4868,1,0,0,0,4868, - 4869,1,0,0,0,4869,4870,3,776,388,0,4870,4871,5,309,0,0,4871,4872, - 5,94,0,0,4872,4873,3,816,408,0,4873,5017,1,0,0,0,4874,4876,5,138, - 0,0,4875,4877,5,259,0,0,4876,4875,1,0,0,0,4876,4877,1,0,0,0,4877, - 4878,1,0,0,0,4878,4880,5,376,0,0,4879,4881,3,416,208,0,4880,4879, - 1,0,0,0,4880,4881,1,0,0,0,4881,4882,1,0,0,0,4882,4883,3,774,387, - 0,4883,4884,5,309,0,0,4884,4885,5,94,0,0,4885,4886,3,772,386,0,4886, - 5017,1,0,0,0,4887,4889,5,138,0,0,4888,4890,5,63,0,0,4889,4888,1, - 0,0,0,4889,4890,1,0,0,0,4890,4891,1,0,0,0,4891,4893,5,92,0,0,4892, - 4894,3,416,208,0,4893,4892,1,0,0,0,4893,4894,1,0,0,0,4894,4895,1, - 0,0,0,4895,4896,3,618,309,0,4896,4897,5,309,0,0,4897,4898,5,94,0, - 0,4898,4899,3,768,384,0,4899,5017,1,0,0,0,4900,4925,5,138,0,0,4901, - 4903,5,63,0,0,4902,4901,1,0,0,0,4902,4903,1,0,0,0,4903,4904,1,0, - 0,0,4904,4906,5,92,0,0,4905,4907,3,416,208,0,4906,4905,1,0,0,0,4906, - 4907,1,0,0,0,4907,4908,1,0,0,0,4908,4909,3,618,309,0,4909,4911,5, - 309,0,0,4910,4912,5,44,0,0,4911,4910,1,0,0,0,4911,4912,1,0,0,0,4912, - 4926,1,0,0,0,4913,4915,5,259,0,0,4914,4913,1,0,0,0,4914,4915,1,0, - 0,0,4915,4916,1,0,0,0,4916,4918,5,376,0,0,4917,4919,3,416,208,0, - 4918,4917,1,0,0,0,4918,4919,1,0,0,0,4919,4920,1,0,0,0,4920,4921, - 3,774,387,0,4921,4923,5,309,0,0,4922,4924,5,44,0,0,4923,4922,1,0, - 0,0,4923,4924,1,0,0,0,4924,4926,1,0,0,0,4925,4902,1,0,0,0,4925,4914, - 1,0,0,0,4926,4927,1,0,0,0,4927,4928,3,796,398,0,4928,4929,5,94,0, - 0,4929,4930,3,800,400,0,4930,5017,1,0,0,0,4931,4939,5,138,0,0,4932, - 4934,5,92,0,0,4933,4935,3,416,208,0,4934,4933,1,0,0,0,4934,4935, - 1,0,0,0,4935,4936,1,0,0,0,4936,4940,3,618,309,0,4937,4938,5,189, - 0,0,4938,4940,3,310,155,0,4939,4932,1,0,0,0,4939,4937,1,0,0,0,4940, - 4941,1,0,0,0,4941,4942,5,309,0,0,4942,4943,5,45,0,0,4943,4944,3, - 816,408,0,4944,4945,5,94,0,0,4945,4946,3,816,408,0,4946,5017,1,0, - 0,0,4947,4954,5,138,0,0,4948,4950,5,445,0,0,4949,4951,3,416,208, - 0,4950,4949,1,0,0,0,4950,4951,1,0,0,0,4951,4955,1,0,0,0,4952,4955, - 5,321,0,0,4953,4955,5,357,0,0,4954,4948,1,0,0,0,4954,4952,1,0,0, - 0,4954,4953,1,0,0,0,4955,4956,1,0,0,0,4956,4957,3,816,408,0,4957, - 4958,5,80,0,0,4958,4959,3,776,388,0,4959,4960,5,309,0,0,4960,4961, - 5,94,0,0,4961,4962,3,816,408,0,4962,5017,1,0,0,0,4963,4976,5,138, - 0,0,4964,4965,5,63,0,0,4965,4966,5,174,0,0,4966,4977,5,381,0,0,4967, - 4969,5,295,0,0,4968,4967,1,0,0,0,4968,4969,1,0,0,0,4969,4970,1,0, - 0,0,4970,4977,5,247,0,0,4971,4977,5,452,0,0,4972,4977,5,331,0,0, - 4973,4977,5,451,0,0,4974,4975,5,198,0,0,4975,4977,5,357,0,0,4976, - 4964,1,0,0,0,4976,4968,1,0,0,0,4976,4971,1,0,0,0,4976,4972,1,0,0, - 0,4976,4973,1,0,0,0,4976,4974,1,0,0,0,4977,4978,1,0,0,0,4978,4979, - 3,816,408,0,4979,4980,5,309,0,0,4980,4981,5,94,0,0,4981,4982,3,816, - 408,0,4982,5017,1,0,0,0,4983,4984,5,138,0,0,4984,4985,7,46,0,0,4985, - 4986,3,812,406,0,4986,4987,5,309,0,0,4987,4988,5,94,0,0,4988,4989, - 3,812,406,0,4989,5017,1,0,0,0,4990,4991,5,138,0,0,4991,4992,3,170, - 85,0,4992,4993,5,309,0,0,4993,4994,5,94,0,0,4994,4995,3,766,383, - 0,4995,5017,1,0,0,0,4996,4997,5,138,0,0,4997,4998,5,355,0,0,4998, - 4999,5,325,0,0,4999,5000,7,42,0,0,5000,5001,3,310,155,0,5001,5002, - 5,309,0,0,5002,5003,5,94,0,0,5003,5004,3,816,408,0,5004,5017,1,0, - 0,0,5005,5006,5,138,0,0,5006,5007,5,360,0,0,5007,5008,3,310,155, - 0,5008,5009,5,309,0,0,5009,5010,5,143,0,0,5010,5011,3,816,408,0, - 5011,5012,5,94,0,0,5012,5014,3,816,408,0,5013,5015,3,88,44,0,5014, - 5013,1,0,0,0,5014,5015,1,0,0,0,5015,5017,1,0,0,0,5016,4809,1,0,0, - 0,5016,4820,1,0,0,0,5016,4827,1,0,0,0,5016,4834,1,0,0,0,5016,4841, - 1,0,0,0,5016,4850,1,0,0,0,5016,4857,1,0,0,0,5016,4864,1,0,0,0,5016, - 4874,1,0,0,0,5016,4887,1,0,0,0,5016,4900,1,0,0,0,5016,4931,1,0,0, - 0,5016,4947,1,0,0,0,5016,4963,1,0,0,0,5016,4983,1,0,0,0,5016,4990, - 1,0,0,0,5016,4996,1,0,0,0,5016,5005,1,0,0,0,5017,427,1,0,0,0,5018, - 5035,5,138,0,0,5019,5020,5,211,0,0,5020,5036,3,376,188,0,5021,5022, - 5,296,0,0,5022,5036,3,372,186,0,5023,5024,5,442,0,0,5024,5036,3, - 368,184,0,5025,5026,5,357,0,0,5026,5027,3,816,408,0,5027,5028,5, - 80,0,0,5028,5029,3,776,388,0,5029,5036,1,0,0,0,5030,5031,5,259,0, - 0,5031,5032,5,376,0,0,5032,5036,3,774,387,0,5033,5034,5,226,0,0, - 5034,5036,3,776,388,0,5035,5019,1,0,0,0,5035,5021,1,0,0,0,5035,5023, - 1,0,0,0,5035,5025,1,0,0,0,5035,5030,1,0,0,0,5035,5033,1,0,0,0,5036, - 5038,1,0,0,0,5037,5039,5,269,0,0,5038,5037,1,0,0,0,5038,5039,1,0, - 0,0,5039,5040,1,0,0,0,5040,5041,5,462,0,0,5041,5042,5,80,0,0,5042, - 5043,5,204,0,0,5043,5044,3,816,408,0,5044,429,1,0,0,0,5045,5084, - 5,138,0,0,5046,5047,5,136,0,0,5047,5085,3,388,194,0,5048,5049,5, - 204,0,0,5049,5085,3,816,408,0,5050,5051,5,211,0,0,5051,5085,3,376, - 188,0,5052,5053,5,278,0,0,5053,5085,3,410,205,0,5054,5055,5,278, - 0,0,5055,5056,7,32,0,0,5056,5057,3,310,155,0,5057,5058,3,164,82, - 0,5058,5085,1,0,0,0,5059,5060,5,296,0,0,5060,5085,3,372,186,0,5061, - 5062,5,442,0,0,5062,5085,3,368,184,0,5063,5065,5,328,0,0,5064,5066, - 3,416,208,0,5065,5064,1,0,0,0,5065,5066,1,0,0,0,5066,5067,1,0,0, - 0,5067,5085,3,776,388,0,5068,5070,5,259,0,0,5069,5068,1,0,0,0,5069, - 5070,1,0,0,0,5070,5071,1,0,0,0,5071,5073,5,376,0,0,5072,5074,3,416, - 208,0,5073,5072,1,0,0,0,5073,5074,1,0,0,0,5074,5075,1,0,0,0,5075, - 5085,3,774,387,0,5076,5078,5,63,0,0,5077,5076,1,0,0,0,5077,5078, - 1,0,0,0,5078,5079,1,0,0,0,5079,5081,5,92,0,0,5080,5082,3,416,208, - 0,5081,5080,1,0,0,0,5081,5082,1,0,0,0,5082,5083,1,0,0,0,5083,5085, - 3,618,309,0,5084,5046,1,0,0,0,5084,5048,1,0,0,0,5084,5050,1,0,0, - 0,5084,5052,1,0,0,0,5084,5054,1,0,0,0,5084,5059,1,0,0,0,5084,5061, - 1,0,0,0,5084,5063,1,0,0,0,5084,5069,1,0,0,0,5084,5077,1,0,0,0,5085, - 5086,1,0,0,0,5086,5087,5,333,0,0,5087,5088,5,323,0,0,5088,5089,3, - 786,393,0,5089,5107,1,0,0,0,5090,5099,5,138,0,0,5091,5092,5,355, - 0,0,5092,5093,5,325,0,0,5093,5100,7,42,0,0,5094,5100,5,108,0,0,5095, - 5100,5,168,0,0,5096,5100,5,189,0,0,5097,5100,5,342,0,0,5098,5100, - 5,360,0,0,5099,5091,1,0,0,0,5099,5094,1,0,0,0,5099,5095,1,0,0,0, - 5099,5096,1,0,0,0,5099,5097,1,0,0,0,5099,5098,1,0,0,0,5100,5101, - 1,0,0,0,5101,5102,3,310,155,0,5102,5103,5,333,0,0,5103,5104,5,323, - 0,0,5104,5105,3,786,393,0,5105,5107,1,0,0,0,5106,5045,1,0,0,0,5106, - 5090,1,0,0,0,5107,431,1,0,0,0,5108,5109,5,138,0,0,5109,5110,5,278, - 0,0,5110,5111,3,410,205,0,5111,5112,5,333,0,0,5112,5113,3,434,217, - 0,5113,433,1,0,0,0,5114,5115,5,2,0,0,5115,5120,3,436,218,0,5116, - 5117,5,6,0,0,5117,5119,3,436,218,0,5118,5116,1,0,0,0,5119,5122,1, - 0,0,0,5120,5118,1,0,0,0,5120,5121,1,0,0,0,5121,5123,1,0,0,0,5122, - 5120,1,0,0,0,5123,5124,5,3,0,0,5124,435,1,0,0,0,5125,5126,3,822, - 411,0,5126,5133,5,10,0,0,5127,5134,5,407,0,0,5128,5134,3,382,191, - 0,5129,5134,3,832,416,0,5130,5134,3,722,361,0,5131,5134,3,196,98, - 0,5132,5134,3,806,403,0,5133,5127,1,0,0,0,5133,5128,1,0,0,0,5133, - 5129,1,0,0,0,5133,5130,1,0,0,0,5133,5131,1,0,0,0,5133,5132,1,0,0, - 0,5134,437,1,0,0,0,5135,5136,5,138,0,0,5136,5137,5,360,0,0,5137, - 5138,3,310,155,0,5138,5139,5,333,0,0,5139,5140,3,434,217,0,5140, - 439,1,0,0,0,5141,5142,5,138,0,0,5142,5143,5,278,0,0,5143,5144,7, - 32,0,0,5144,5145,3,310,155,0,5145,5146,3,164,82,0,5146,5147,5,282, - 0,0,5147,5148,5,94,0,0,5148,5149,3,812,406,0,5149,5216,1,0,0,0,5150, - 5177,5,138,0,0,5151,5152,5,136,0,0,5152,5178,3,388,194,0,5153,5154, - 5,175,0,0,5154,5178,3,784,392,0,5155,5156,5,211,0,0,5156,5178,3, - 376,188,0,5157,5159,5,295,0,0,5158,5157,1,0,0,0,5158,5159,1,0,0, - 0,5159,5160,1,0,0,0,5160,5161,5,247,0,0,5161,5178,3,816,408,0,5162, - 5163,5,248,0,0,5163,5164,5,274,0,0,5164,5178,3,196,98,0,5165,5166, - 5,248,0,0,5166,5167,5,274,0,0,5167,5178,3,196,98,0,5168,5169,5,278, - 0,0,5169,5178,3,410,205,0,5170,5171,5,296,0,0,5171,5178,3,372,186, - 0,5172,5173,5,442,0,0,5173,5178,3,368,184,0,5174,5175,5,323,0,0, - 5175,5178,3,786,393,0,5176,5178,3,170,85,0,5177,5151,1,0,0,0,5177, - 5153,1,0,0,0,5177,5155,1,0,0,0,5177,5158,1,0,0,0,5177,5162,1,0,0, - 0,5177,5165,1,0,0,0,5177,5168,1,0,0,0,5177,5170,1,0,0,0,5177,5172, - 1,0,0,0,5177,5174,1,0,0,0,5177,5176,1,0,0,0,5178,5179,1,0,0,0,5179, - 5180,5,282,0,0,5180,5181,5,94,0,0,5181,5182,3,812,406,0,5182,5216, - 1,0,0,0,5183,5192,5,138,0,0,5184,5185,5,355,0,0,5185,5186,5,325, - 0,0,5186,5193,7,64,0,0,5187,5193,5,108,0,0,5188,5193,5,168,0,0,5189, - 5193,5,189,0,0,5190,5193,5,360,0,0,5191,5193,5,342,0,0,5192,5184, - 1,0,0,0,5192,5187,1,0,0,0,5192,5188,1,0,0,0,5192,5189,1,0,0,0,5192, - 5190,1,0,0,0,5192,5191,1,0,0,0,5193,5194,1,0,0,0,5194,5195,3,310, - 155,0,5195,5196,5,282,0,0,5196,5197,5,94,0,0,5197,5198,3,812,406, - 0,5198,5216,1,0,0,0,5199,5208,5,138,0,0,5200,5209,5,331,0,0,5201, - 5202,5,63,0,0,5202,5203,5,174,0,0,5203,5209,5,381,0,0,5204,5205, - 5,198,0,0,5205,5209,5,357,0,0,5206,5209,5,452,0,0,5207,5209,5,451, - 0,0,5208,5200,1,0,0,0,5208,5201,1,0,0,0,5208,5204,1,0,0,0,5208,5206, - 1,0,0,0,5208,5207,1,0,0,0,5209,5210,1,0,0,0,5210,5211,3,816,408, - 0,5211,5212,5,282,0,0,5212,5213,5,94,0,0,5213,5214,3,812,406,0,5214, - 5216,1,0,0,0,5215,5141,1,0,0,0,5215,5150,1,0,0,0,5215,5183,1,0,0, - 0,5215,5199,1,0,0,0,5216,441,1,0,0,0,5217,5218,5,46,0,0,5218,5219, - 5,452,0,0,5219,5226,3,816,408,0,5220,5221,5,62,0,0,5221,5222,5,92, - 0,0,5222,5227,3,622,311,0,5223,5224,5,62,0,0,5224,5225,5,30,0,0, - 5225,5227,5,350,0,0,5226,5220,1,0,0,0,5226,5223,1,0,0,0,5226,5227, - 1,0,0,0,5227,5229,1,0,0,0,5228,5230,3,394,197,0,5229,5228,1,0,0, - 0,5229,5230,1,0,0,0,5230,443,1,0,0,0,5231,5232,5,138,0,0,5232,5233, - 5,452,0,0,5233,5251,3,816,408,0,5234,5235,5,282,0,0,5235,5236,5, - 94,0,0,5236,5252,3,812,406,0,5237,5238,5,333,0,0,5238,5252,3,278, - 139,0,5239,5240,5,309,0,0,5240,5241,5,94,0,0,5241,5252,3,816,408, - 0,5242,5243,7,35,0,0,5243,5248,3,620,310,0,5244,5245,5,6,0,0,5245, - 5247,3,620,310,0,5246,5244,1,0,0,0,5247,5250,1,0,0,0,5248,5246,1, - 0,0,0,5248,5249,1,0,0,0,5249,5252,1,0,0,0,5250,5248,1,0,0,0,5251, - 5234,1,0,0,0,5251,5237,1,0,0,0,5251,5239,1,0,0,0,5251,5242,1,0,0, - 0,5252,445,1,0,0,0,5253,5254,5,46,0,0,5254,5255,5,451,0,0,5255,5256, - 3,816,408,0,5256,5257,5,164,0,0,5257,5258,3,806,403,0,5258,5259, - 5,452,0,0,5259,5264,3,822,411,0,5260,5261,5,6,0,0,5261,5263,3,822, - 411,0,5262,5260,1,0,0,0,5263,5266,1,0,0,0,5264,5262,1,0,0,0,5264, - 5265,1,0,0,0,5265,5268,1,0,0,0,5266,5264,1,0,0,0,5267,5269,3,394, - 197,0,5268,5267,1,0,0,0,5268,5269,1,0,0,0,5269,447,1,0,0,0,5270, - 5271,5,138,0,0,5271,5272,5,451,0,0,5272,5273,3,816,408,0,5273,5274, - 5,333,0,0,5274,5275,3,278,139,0,5275,5327,1,0,0,0,5276,5277,5,138, - 0,0,5277,5278,5,451,0,0,5278,5279,3,816,408,0,5279,5280,5,164,0, - 0,5280,5281,3,806,403,0,5281,5327,1,0,0,0,5282,5283,5,138,0,0,5283, - 5284,5,451,0,0,5284,5285,3,816,408,0,5285,5286,5,305,0,0,5286,5288, - 5,452,0,0,5287,5289,3,394,197,0,5288,5287,1,0,0,0,5288,5289,1,0, - 0,0,5289,5327,1,0,0,0,5290,5291,5,138,0,0,5291,5292,5,451,0,0,5292, - 5293,3,816,408,0,5293,5294,7,35,0,0,5294,5295,5,452,0,0,5295,5300, - 3,822,411,0,5296,5297,5,6,0,0,5297,5299,3,822,411,0,5298,5296,1, - 0,0,0,5299,5302,1,0,0,0,5300,5298,1,0,0,0,5300,5301,1,0,0,0,5301, - 5304,1,0,0,0,5302,5300,1,0,0,0,5303,5305,3,394,197,0,5304,5303,1, - 0,0,0,5304,5305,1,0,0,0,5305,5327,1,0,0,0,5306,5307,5,138,0,0,5307, - 5308,5,451,0,0,5308,5309,3,816,408,0,5309,5310,7,65,0,0,5310,5327, - 1,0,0,0,5311,5312,5,138,0,0,5312,5313,5,451,0,0,5313,5314,3,816, - 408,0,5314,5315,5,465,0,0,5315,5316,5,2,0,0,5316,5317,3,284,142, - 0,5317,5318,5,3,0,0,5318,5327,1,0,0,0,5319,5320,5,138,0,0,5320,5321, - 5,451,0,0,5321,5322,3,816,408,0,5322,5323,5,282,0,0,5323,5324,5, - 94,0,0,5324,5325,3,812,406,0,5325,5327,1,0,0,0,5326,5270,1,0,0,0, - 5326,5276,1,0,0,0,5326,5282,1,0,0,0,5326,5290,1,0,0,0,5326,5306, - 1,0,0,0,5326,5311,1,0,0,0,5326,5319,1,0,0,0,5327,449,1,0,0,0,5328, - 5330,5,46,0,0,5329,5331,3,360,180,0,5330,5329,1,0,0,0,5330,5331, - 1,0,0,0,5331,5332,1,0,0,0,5332,5333,5,321,0,0,5333,5334,3,816,408, - 0,5334,5335,5,36,0,0,5335,5336,5,80,0,0,5336,5337,7,66,0,0,5337, - 5338,5,94,0,0,5338,5340,3,776,388,0,5339,5341,3,632,316,0,5340,5339, - 1,0,0,0,5340,5341,1,0,0,0,5341,5342,1,0,0,0,5342,5344,5,57,0,0,5343, - 5345,7,67,0,0,5344,5343,1,0,0,0,5344,5345,1,0,0,0,5345,5362,1,0, - 0,0,5346,5363,5,270,0,0,5347,5363,3,452,226,0,5348,5350,5,2,0,0, - 5349,5351,3,452,226,0,5350,5349,1,0,0,0,5350,5351,1,0,0,0,5351,5358, - 1,0,0,0,5352,5354,5,7,0,0,5353,5355,3,452,226,0,5354,5353,1,0,0, - 0,5354,5355,1,0,0,0,5355,5357,1,0,0,0,5356,5352,1,0,0,0,5357,5360, - 1,0,0,0,5358,5356,1,0,0,0,5358,5359,1,0,0,0,5359,5361,1,0,0,0,5360, - 5358,1,0,0,0,5361,5363,5,3,0,0,5362,5346,1,0,0,0,5362,5347,1,0,0, - 0,5362,5348,1,0,0,0,5363,451,1,0,0,0,5364,5370,3,554,277,0,5365, - 5370,3,532,266,0,5366,5370,3,546,273,0,5367,5370,3,542,271,0,5368, - 5370,3,454,227,0,5369,5364,1,0,0,0,5369,5365,1,0,0,0,5369,5366,1, - 0,0,0,5369,5367,1,0,0,0,5369,5368,1,0,0,0,5370,453,1,0,0,0,5371, - 5372,5,271,0,0,5372,5374,3,816,408,0,5373,5375,3,456,228,0,5374, - 5373,1,0,0,0,5374,5375,1,0,0,0,5375,455,1,0,0,0,5376,5377,5,6,0, - 0,5377,5378,3,806,403,0,5378,457,1,0,0,0,5379,5380,5,252,0,0,5380, - 5381,3,816,408,0,5381,459,1,0,0,0,5382,5385,5,366,0,0,5383,5386, - 3,816,408,0,5384,5386,5,9,0,0,5385,5383,1,0,0,0,5385,5384,1,0,0, - 0,5386,461,1,0,0,0,5387,5389,5,146,0,0,5388,5390,3,464,232,0,5389, - 5388,1,0,0,0,5389,5390,1,0,0,0,5390,5392,1,0,0,0,5391,5393,3,468, - 234,0,5392,5391,1,0,0,0,5392,5393,1,0,0,0,5393,5433,1,0,0,0,5394, - 5395,5,340,0,0,5395,5397,5,356,0,0,5396,5398,3,468,234,0,5397,5396, - 1,0,0,0,5397,5398,1,0,0,0,5398,5433,1,0,0,0,5399,5400,5,322,0,0, - 5400,5433,3,816,408,0,5401,5403,5,308,0,0,5402,5404,5,322,0,0,5403, - 5402,1,0,0,0,5403,5404,1,0,0,0,5404,5405,1,0,0,0,5405,5433,3,816, - 408,0,5406,5407,5,290,0,0,5407,5408,5,356,0,0,5408,5433,3,806,403, - 0,5409,5410,7,68,0,0,5410,5411,5,291,0,0,5411,5433,3,806,403,0,5412, - 5414,7,69,0,0,5413,5415,3,464,232,0,5414,5413,1,0,0,0,5414,5415, - 1,0,0,0,5415,5421,1,0,0,0,5416,5418,5,33,0,0,5417,5419,5,269,0,0, - 5418,5417,1,0,0,0,5418,5419,1,0,0,0,5419,5420,1,0,0,0,5420,5422, - 5,153,0,0,5421,5416,1,0,0,0,5421,5422,1,0,0,0,5422,5433,1,0,0,0, - 5423,5425,5,319,0,0,5424,5426,3,464,232,0,5425,5424,1,0,0,0,5425, - 5426,1,0,0,0,5426,5427,1,0,0,0,5427,5429,5,94,0,0,5428,5430,5,322, - 0,0,5429,5428,1,0,0,0,5429,5430,1,0,0,0,5430,5431,1,0,0,0,5431,5433, - 3,816,408,0,5432,5387,1,0,0,0,5432,5394,1,0,0,0,5432,5399,1,0,0, - 0,5432,5401,1,0,0,0,5432,5406,1,0,0,0,5432,5409,1,0,0,0,5432,5412, - 1,0,0,0,5432,5423,1,0,0,0,5433,463,1,0,0,0,5434,5435,7,70,0,0,5435, - 465,1,0,0,0,5436,5437,5,244,0,0,5437,5438,5,251,0,0,5438,5446,3, - 50,25,0,5439,5440,5,300,0,0,5440,5446,7,71,0,0,5441,5443,5,77,0, - 0,5442,5441,1,0,0,0,5442,5443,1,0,0,0,5443,5444,1,0,0,0,5444,5446, - 5,54,0,0,5445,5436,1,0,0,0,5445,5439,1,0,0,0,5445,5442,1,0,0,0,5446, - 467,1,0,0,0,5447,5454,3,466,233,0,5448,5450,5,6,0,0,5449,5448,1, - 0,0,0,5449,5450,1,0,0,0,5450,5451,1,0,0,0,5451,5453,3,466,233,0, - 5452,5449,1,0,0,0,5453,5456,1,0,0,0,5454,5452,1,0,0,0,5454,5455, - 1,0,0,0,5455,469,1,0,0,0,5456,5454,1,0,0,0,5457,5460,5,46,0,0,5458, - 5459,5,82,0,0,5459,5461,5,311,0,0,5460,5458,1,0,0,0,5460,5461,1, - 0,0,0,5461,5463,1,0,0,0,5462,5464,3,116,58,0,5463,5462,1,0,0,0,5463, - 5464,1,0,0,0,5464,5480,1,0,0,0,5465,5466,5,376,0,0,5466,5468,3,772, - 386,0,5467,5469,3,140,70,0,5468,5467,1,0,0,0,5468,5469,1,0,0,0,5469, - 5471,1,0,0,0,5470,5472,3,94,47,0,5471,5470,1,0,0,0,5471,5472,1,0, - 0,0,5472,5481,1,0,0,0,5473,5474,5,303,0,0,5474,5475,5,376,0,0,5475, - 5476,3,772,386,0,5476,5478,3,138,69,0,5477,5479,3,94,47,0,5478,5477, - 1,0,0,0,5478,5479,1,0,0,0,5479,5481,1,0,0,0,5480,5465,1,0,0,0,5480, - 5473,1,0,0,0,5481,5482,1,0,0,0,5482,5483,5,36,0,0,5483,5490,3,554, - 277,0,5484,5486,5,105,0,0,5485,5487,7,72,0,0,5486,5485,1,0,0,0,5486, - 5487,1,0,0,0,5487,5488,1,0,0,0,5488,5489,5,42,0,0,5489,5491,5,279, - 0,0,5490,5484,1,0,0,0,5490,5491,1,0,0,0,5491,471,1,0,0,0,5492,5493, - 5,253,0,0,5493,5494,3,806,403,0,5494,473,1,0,0,0,5495,5496,5,46, - 0,0,5496,5497,5,175,0,0,5497,5499,3,782,391,0,5498,5500,5,105,0, - 0,5499,5498,1,0,0,0,5499,5500,1,0,0,0,5500,5506,1,0,0,0,5501,5503, - 3,476,238,0,5502,5501,1,0,0,0,5503,5504,1,0,0,0,5504,5502,1,0,0, - 0,5504,5505,1,0,0,0,5505,5507,1,0,0,0,5506,5502,1,0,0,0,5506,5507, - 1,0,0,0,5507,475,1,0,0,0,5508,5509,5,164,0,0,5509,5517,5,74,0,0, - 5510,5517,5,194,0,0,5511,5517,5,255,0,0,5512,5517,5,282,0,0,5513, - 5517,5,351,0,0,5514,5517,5,353,0,0,5515,5517,3,824,412,0,5516,5508, - 1,0,0,0,5516,5510,1,0,0,0,5516,5511,1,0,0,0,5516,5512,1,0,0,0,5516, - 5513,1,0,0,0,5516,5514,1,0,0,0,5516,5515,1,0,0,0,5517,5519,1,0,0, - 0,5518,5520,5,10,0,0,5519,5518,1,0,0,0,5519,5520,1,0,0,0,5520,5524, - 1,0,0,0,5521,5525,3,810,405,0,5522,5525,3,54,27,0,5523,5525,5,53, - 0,0,5524,5521,1,0,0,0,5524,5522,1,0,0,0,5524,5523,1,0,0,0,5525,477, - 1,0,0,0,5526,5527,5,138,0,0,5527,5528,5,175,0,0,5528,5544,3,784, - 392,0,5529,5530,5,333,0,0,5530,5531,5,351,0,0,5531,5533,3,766,383, - 0,5532,5529,1,0,0,0,5532,5533,1,0,0,0,5533,5545,1,0,0,0,5534,5536, - 5,105,0,0,5535,5534,1,0,0,0,5535,5536,1,0,0,0,5536,5538,1,0,0,0, - 5537,5539,3,476,238,0,5538,5537,1,0,0,0,5539,5540,1,0,0,0,5540,5538, - 1,0,0,0,5540,5541,1,0,0,0,5541,5543,1,0,0,0,5542,5535,1,0,0,0,5542, - 5543,1,0,0,0,5543,5545,1,0,0,0,5544,5532,1,0,0,0,5544,5542,1,0,0, - 0,5545,479,1,0,0,0,5546,5547,5,138,0,0,5547,5548,5,175,0,0,5548, - 5550,3,784,392,0,5549,5551,3,64,32,0,5550,5549,1,0,0,0,5550,5551, - 1,0,0,0,5551,481,1,0,0,0,5552,5553,5,138,0,0,5553,5554,5,108,0,0, - 5554,5555,3,310,155,0,5555,5556,5,305,0,0,5556,5557,5,375,0,0,5557, - 483,1,0,0,0,5558,5559,5,138,0,0,5559,5560,5,349,0,0,5560,5561,7, - 16,0,0,5561,5562,3,40,20,0,5562,485,1,0,0,0,5563,5564,5,46,0,0,5564, - 5565,5,189,0,0,5565,5567,3,310,155,0,5566,5568,5,36,0,0,5567,5566, - 1,0,0,0,5567,5568,1,0,0,0,5568,5569,1,0,0,0,5569,5573,3,646,323, - 0,5570,5572,3,128,64,0,5571,5570,1,0,0,0,5572,5575,1,0,0,0,5573, - 5571,1,0,0,0,5573,5574,1,0,0,0,5574,487,1,0,0,0,5575,5573,1,0,0, - 0,5576,5577,5,138,0,0,5577,5578,5,189,0,0,5578,5601,3,310,155,0, - 5579,5602,3,86,43,0,5580,5581,7,15,0,0,5581,5582,5,77,0,0,5582,5602, - 5,78,0,0,5583,5586,5,133,0,0,5584,5585,5,45,0,0,5585,5587,3,816, - 408,0,5586,5584,1,0,0,0,5586,5587,1,0,0,0,5587,5588,1,0,0,0,5588, - 5602,3,136,68,0,5589,5590,5,191,0,0,5590,5592,5,45,0,0,5591,5593, - 3,416,208,0,5592,5591,1,0,0,0,5592,5593,1,0,0,0,5593,5594,1,0,0, - 0,5594,5596,3,816,408,0,5595,5597,3,88,44,0,5596,5595,1,0,0,0,5596, - 5597,1,0,0,0,5597,5602,1,0,0,0,5598,5599,5,372,0,0,5599,5600,5,45, - 0,0,5600,5602,3,816,408,0,5601,5579,1,0,0,0,5601,5580,1,0,0,0,5601, - 5583,1,0,0,0,5601,5589,1,0,0,0,5601,5598,1,0,0,0,5602,489,1,0,0, - 0,5603,5604,5,138,0,0,5604,5605,5,355,0,0,5605,5606,5,325,0,0,5606, - 5607,5,185,0,0,5607,5608,3,310,155,0,5608,5609,3,278,139,0,5609, - 491,1,0,0,0,5610,5611,5,138,0,0,5611,5612,5,355,0,0,5612,5613,5, - 325,0,0,5613,5614,5,163,0,0,5614,5615,3,310,155,0,5615,5616,7,73, - 0,0,5616,5617,5,257,0,0,5617,5618,5,62,0,0,5618,5619,3,780,390,0, - 5619,5620,5,105,0,0,5620,5621,3,308,154,0,5621,5652,1,0,0,0,5622, - 5623,5,138,0,0,5623,5624,5,355,0,0,5624,5625,5,325,0,0,5625,5626, - 5,163,0,0,5626,5627,3,310,155,0,5627,5628,5,138,0,0,5628,5631,5, - 257,0,0,5629,5630,5,62,0,0,5630,5632,3,780,390,0,5631,5629,1,0,0, - 0,5631,5632,1,0,0,0,5632,5633,1,0,0,0,5633,5634,5,311,0,0,5634,5635, - 3,310,155,0,5635,5636,5,105,0,0,5636,5637,3,310,155,0,5637,5652, - 1,0,0,0,5638,5639,5,138,0,0,5639,5640,5,355,0,0,5640,5641,5,325, - 0,0,5641,5642,5,163,0,0,5642,5643,3,310,155,0,5643,5644,5,191,0, - 0,5644,5646,5,257,0,0,5645,5647,3,416,208,0,5646,5645,1,0,0,0,5646, - 5647,1,0,0,0,5647,5648,1,0,0,0,5648,5649,5,62,0,0,5649,5650,3,780, - 390,0,5650,5652,1,0,0,0,5651,5610,1,0,0,0,5651,5622,1,0,0,0,5651, - 5638,1,0,0,0,5652,493,1,0,0,0,5653,5655,5,46,0,0,5654,5656,5,53, - 0,0,5655,5654,1,0,0,0,5655,5656,1,0,0,0,5656,5657,1,0,0,0,5657,5658, - 5,168,0,0,5658,5659,3,310,155,0,5659,5660,5,62,0,0,5660,5661,3,806, - 403,0,5661,5662,5,94,0,0,5662,5663,3,806,403,0,5663,5664,5,64,0, - 0,5664,5665,3,310,155,0,5665,495,1,0,0,0,5666,5668,5,158,0,0,5667, - 5669,3,508,254,0,5668,5667,1,0,0,0,5668,5669,1,0,0,0,5669,5674,1, - 0,0,0,5670,5672,3,770,385,0,5671,5673,3,164,82,0,5672,5671,1,0,0, - 0,5672,5673,1,0,0,0,5673,5675,1,0,0,0,5674,5670,1,0,0,0,5674,5675, - 1,0,0,0,5675,5692,1,0,0,0,5676,5677,5,158,0,0,5677,5678,5,2,0,0, - 5678,5683,3,508,254,0,5679,5680,5,6,0,0,5680,5682,3,508,254,0,5681, - 5679,1,0,0,0,5682,5685,1,0,0,0,5683,5681,1,0,0,0,5683,5684,1,0,0, - 0,5684,5686,1,0,0,0,5685,5683,1,0,0,0,5686,5687,5,3,0,0,5687,5689, - 3,770,385,0,5688,5690,3,164,82,0,5689,5688,1,0,0,0,5689,5690,1,0, - 0,0,5690,5692,1,0,0,0,5691,5666,1,0,0,0,5691,5676,1,0,0,0,5692,497, - 1,0,0,0,5693,5709,5,370,0,0,5694,5696,5,113,0,0,5695,5694,1,0,0, - 0,5695,5696,1,0,0,0,5696,5698,1,0,0,0,5697,5699,5,112,0,0,5698,5697, - 1,0,0,0,5698,5699,1,0,0,0,5699,5701,1,0,0,0,5700,5702,3,508,254, - 0,5701,5700,1,0,0,0,5701,5702,1,0,0,0,5702,5704,1,0,0,0,5703,5705, - 3,502,251,0,5704,5703,1,0,0,0,5704,5705,1,0,0,0,5705,5710,1,0,0, - 0,5706,5708,3,518,259,0,5707,5706,1,0,0,0,5707,5708,1,0,0,0,5708, - 5710,1,0,0,0,5709,5695,1,0,0,0,5709,5707,1,0,0,0,5710,5712,1,0,0, - 0,5711,5713,3,512,256,0,5712,5711,1,0,0,0,5712,5713,1,0,0,0,5713, - 499,1,0,0,0,5714,5729,3,502,251,0,5715,5717,3,508,254,0,5716,5715, - 1,0,0,0,5716,5717,1,0,0,0,5717,5730,1,0,0,0,5718,5719,5,2,0,0,5719, - 5724,3,506,253,0,5720,5721,5,6,0,0,5721,5723,3,506,253,0,5722,5720, - 1,0,0,0,5723,5726,1,0,0,0,5724,5722,1,0,0,0,5724,5725,1,0,0,0,5725, - 5727,1,0,0,0,5726,5724,1,0,0,0,5727,5728,5,3,0,0,5728,5730,1,0,0, - 0,5729,5716,1,0,0,0,5729,5718,1,0,0,0,5730,5732,1,0,0,0,5731,5733, - 3,512,256,0,5732,5731,1,0,0,0,5732,5733,1,0,0,0,5733,501,1,0,0,0, - 5734,5735,7,74,0,0,5735,503,1,0,0,0,5736,5739,3,820,410,0,5737,5739, - 3,502,251,0,5738,5736,1,0,0,0,5738,5737,1,0,0,0,5739,5742,1,0,0, - 0,5740,5743,3,54,27,0,5741,5743,3,196,98,0,5742,5740,1,0,0,0,5742, - 5741,1,0,0,0,5742,5743,1,0,0,0,5743,505,1,0,0,0,5744,5746,7,75,0, - 0,5745,5747,7,76,0,0,5746,5745,1,0,0,0,5746,5747,1,0,0,0,5747,5754, - 1,0,0,0,5748,5751,5,548,0,0,5749,5752,3,196,98,0,5750,5752,3,806, - 403,0,5751,5749,1,0,0,0,5751,5750,1,0,0,0,5752,5754,1,0,0,0,5753, - 5744,1,0,0,0,5753,5748,1,0,0,0,5754,507,1,0,0,0,5755,5757,5,128, - 0,0,5756,5758,7,76,0,0,5757,5756,1,0,0,0,5757,5758,1,0,0,0,5758, - 509,1,0,0,0,5759,5761,3,770,385,0,5760,5762,3,138,69,0,5761,5760, - 1,0,0,0,5761,5762,1,0,0,0,5762,511,1,0,0,0,5763,5768,3,510,255,0, - 5764,5765,5,6,0,0,5765,5767,3,510,255,0,5766,5764,1,0,0,0,5767,5770, - 1,0,0,0,5768,5766,1,0,0,0,5768,5769,1,0,0,0,5769,513,1,0,0,0,5770, - 5768,1,0,0,0,5771,5782,5,203,0,0,5772,5783,3,518,259,0,5773,5775, - 5,128,0,0,5774,5773,1,0,0,0,5774,5775,1,0,0,0,5775,5783,1,0,0,0, - 5776,5778,3,502,251,0,5777,5779,3,508,254,0,5778,5777,1,0,0,0,5778, - 5779,1,0,0,0,5779,5781,1,0,0,0,5780,5776,1,0,0,0,5780,5781,1,0,0, - 0,5781,5783,1,0,0,0,5782,5772,1,0,0,0,5782,5774,1,0,0,0,5782,5780, - 1,0,0,0,5783,5784,1,0,0,0,5784,5785,3,516,258,0,5785,515,1,0,0,0, - 5786,5796,3,554,277,0,5787,5796,3,532,266,0,5788,5796,3,546,273, - 0,5789,5796,3,542,271,0,5790,5796,3,552,276,0,5791,5796,3,180,90, - 0,5792,5796,3,186,93,0,5793,5796,3,188,94,0,5794,5796,3,526,263, - 0,5795,5786,1,0,0,0,5795,5787,1,0,0,0,5795,5788,1,0,0,0,5795,5789, - 1,0,0,0,5795,5790,1,0,0,0,5795,5791,1,0,0,0,5795,5792,1,0,0,0,5795, - 5793,1,0,0,0,5795,5794,1,0,0,0,5796,517,1,0,0,0,5797,5798,5,2,0, - 0,5798,5803,3,504,252,0,5799,5800,5,6,0,0,5800,5802,3,504,252,0, - 5801,5799,1,0,0,0,5802,5805,1,0,0,0,5803,5801,1,0,0,0,5803,5804, - 1,0,0,0,5804,5806,1,0,0,0,5805,5803,1,0,0,0,5806,5807,5,3,0,0,5807, - 519,1,0,0,0,5808,5809,5,290,0,0,5809,5811,3,816,408,0,5810,5812, - 3,522,261,0,5811,5810,1,0,0,0,5811,5812,1,0,0,0,5812,5813,1,0,0, - 0,5813,5814,5,36,0,0,5814,5815,3,524,262,0,5815,521,1,0,0,0,5816, - 5817,5,2,0,0,5817,5822,3,646,323,0,5818,5819,5,6,0,0,5819,5821,3, - 646,323,0,5820,5818,1,0,0,0,5821,5824,1,0,0,0,5822,5820,1,0,0,0, - 5822,5823,1,0,0,0,5823,5825,1,0,0,0,5824,5822,1,0,0,0,5825,5826, - 5,3,0,0,5826,523,1,0,0,0,5827,5833,3,554,277,0,5828,5833,3,532,266, - 0,5829,5833,3,546,273,0,5830,5833,3,542,271,0,5831,5833,3,898,449, - 0,5832,5827,1,0,0,0,5832,5828,1,0,0,0,5832,5829,1,0,0,0,5832,5830, - 1,0,0,0,5832,5831,1,0,0,0,5833,525,1,0,0,0,5834,5835,5,202,0,0,5835, - 5837,3,816,408,0,5836,5838,3,528,264,0,5837,5836,1,0,0,0,5837,5838, - 1,0,0,0,5838,5858,1,0,0,0,5839,5841,5,46,0,0,5840,5842,3,116,58, - 0,5841,5840,1,0,0,0,5841,5842,1,0,0,0,5842,5843,1,0,0,0,5843,5845, - 5,92,0,0,5844,5846,3,288,144,0,5845,5844,1,0,0,0,5845,5846,1,0,0, - 0,5846,5847,1,0,0,0,5847,5848,3,182,91,0,5848,5849,5,36,0,0,5849, - 5850,5,202,0,0,5850,5852,3,816,408,0,5851,5853,3,528,264,0,5852, - 5851,1,0,0,0,5852,5853,1,0,0,0,5853,5855,1,0,0,0,5854,5856,3,184, - 92,0,5855,5854,1,0,0,0,5855,5856,1,0,0,0,5856,5858,1,0,0,0,5857, - 5834,1,0,0,0,5857,5839,1,0,0,0,5858,527,1,0,0,0,5859,5860,5,2,0, - 0,5860,5861,3,726,363,0,5861,5862,5,3,0,0,5862,529,1,0,0,0,5863, - 5865,5,177,0,0,5864,5866,5,290,0,0,5865,5864,1,0,0,0,5865,5866,1, - 0,0,0,5866,5869,1,0,0,0,5867,5870,3,816,408,0,5868,5870,5,30,0,0, - 5869,5867,1,0,0,0,5869,5868,1,0,0,0,5870,531,1,0,0,0,5871,5873,3, - 566,283,0,5872,5871,1,0,0,0,5872,5873,1,0,0,0,5873,5874,1,0,0,0, - 5874,5875,5,241,0,0,5875,5876,5,71,0,0,5876,5879,3,770,385,0,5877, - 5878,5,36,0,0,5878,5880,3,816,408,0,5879,5877,1,0,0,0,5879,5880, - 1,0,0,0,5880,5881,1,0,0,0,5881,5903,3,534,267,0,5882,5883,5,80,0, - 0,5883,5891,5,464,0,0,5884,5886,3,354,177,0,5885,5887,3,632,316, - 0,5886,5885,1,0,0,0,5886,5887,1,0,0,0,5887,5892,1,0,0,0,5888,5889, - 5,80,0,0,5889,5890,5,45,0,0,5890,5892,3,816,408,0,5891,5884,1,0, - 0,0,5891,5888,1,0,0,0,5891,5892,1,0,0,0,5892,5893,1,0,0,0,5893,5901, - 5,57,0,0,5894,5895,5,369,0,0,5895,5896,5,333,0,0,5896,5898,3,548, - 274,0,5897,5899,3,632,316,0,5898,5897,1,0,0,0,5898,5899,1,0,0,0, - 5899,5902,1,0,0,0,5900,5902,5,270,0,0,5901,5894,1,0,0,0,5901,5900, - 1,0,0,0,5902,5904,1,0,0,0,5903,5882,1,0,0,0,5903,5904,1,0,0,0,5904, - 5906,1,0,0,0,5905,5907,3,540,270,0,5906,5905,1,0,0,0,5906,5907,1, - 0,0,0,5907,533,1,0,0,0,5908,5909,5,2,0,0,5909,5910,3,536,268,0,5910, - 5911,5,3,0,0,5911,5913,1,0,0,0,5912,5908,1,0,0,0,5912,5913,1,0,0, - 0,5913,5917,1,0,0,0,5914,5915,5,463,0,0,5915,5916,7,77,0,0,5916, - 5918,5,450,0,0,5917,5914,1,0,0,0,5917,5918,1,0,0,0,5918,5921,1,0, - 0,0,5919,5922,3,908,454,0,5920,5922,3,554,277,0,5921,5919,1,0,0, - 0,5921,5920,1,0,0,0,5922,535,1,0,0,0,5923,5928,3,538,269,0,5924, - 5925,5,6,0,0,5925,5927,3,538,269,0,5926,5924,1,0,0,0,5927,5930,1, - 0,0,0,5928,5926,1,0,0,0,5928,5929,1,0,0,0,5929,537,1,0,0,0,5930, - 5928,1,0,0,0,5931,5932,3,796,398,0,5932,5933,3,750,375,0,5933,539, - 1,0,0,0,5934,5935,5,87,0,0,5935,5936,3,752,376,0,5936,541,1,0,0, - 0,5937,5939,3,566,283,0,5938,5937,1,0,0,0,5938,5939,1,0,0,0,5939, - 5940,1,0,0,0,5940,5941,5,182,0,0,5941,5942,5,64,0,0,5942,5945,3, - 624,312,0,5943,5944,5,100,0,0,5944,5946,3,606,303,0,5945,5943,1, - 0,0,0,5945,5946,1,0,0,0,5946,5948,1,0,0,0,5947,5949,3,634,317,0, - 5948,5947,1,0,0,0,5948,5949,1,0,0,0,5949,5951,1,0,0,0,5950,5952, - 3,540,270,0,5951,5950,1,0,0,0,5951,5952,1,0,0,0,5952,543,1,0,0,0, - 5953,5955,5,256,0,0,5954,5956,5,92,0,0,5955,5954,1,0,0,0,5955,5956, - 1,0,0,0,5956,5957,1,0,0,0,5957,5972,3,622,311,0,5958,5969,5,68,0, - 0,5959,5960,7,78,0,0,5960,5970,7,79,0,0,5961,5966,5,334,0,0,5962, - 5963,5,369,0,0,5963,5967,5,201,0,0,5964,5965,5,414,0,0,5965,5967, - 5,201,0,0,5966,5962,1,0,0,0,5966,5964,1,0,0,0,5966,5967,1,0,0,0, - 5967,5970,1,0,0,0,5968,5970,5,201,0,0,5969,5959,1,0,0,0,5969,5961, - 1,0,0,0,5969,5968,1,0,0,0,5970,5971,1,0,0,0,5971,5973,5,263,0,0, - 5972,5958,1,0,0,0,5972,5973,1,0,0,0,5973,5975,1,0,0,0,5974,5976, - 5,272,0,0,5975,5974,1,0,0,0,5975,5976,1,0,0,0,5976,545,1,0,0,0,5977, - 5979,3,566,283,0,5978,5977,1,0,0,0,5978,5979,1,0,0,0,5979,5980,1, - 0,0,0,5980,5981,5,369,0,0,5981,5982,3,624,312,0,5982,5983,5,333, - 0,0,5983,5985,3,548,274,0,5984,5986,3,604,302,0,5985,5984,1,0,0, - 0,5985,5986,1,0,0,0,5986,5988,1,0,0,0,5987,5989,3,634,317,0,5988, - 5987,1,0,0,0,5988,5989,1,0,0,0,5989,5991,1,0,0,0,5990,5992,3,540, - 270,0,5991,5990,1,0,0,0,5991,5992,1,0,0,0,5992,547,1,0,0,0,5993, - 5998,3,550,275,0,5994,5995,5,6,0,0,5995,5997,3,550,275,0,5996,5994, - 1,0,0,0,5997,6000,1,0,0,0,5998,5996,1,0,0,0,5998,5999,1,0,0,0,5999, - 549,1,0,0,0,6000,5998,1,0,0,0,6001,6002,3,538,269,0,6002,6003,5, - 10,0,0,6003,6004,3,668,334,0,6004,6020,1,0,0,0,6005,6006,5,2,0,0, - 6006,6007,3,536,268,0,6007,6008,5,3,0,0,6008,6017,5,10,0,0,6009, - 6011,5,414,0,0,6010,6009,1,0,0,0,6010,6011,1,0,0,0,6011,6012,1,0, - 0,0,6012,6018,3,668,334,0,6013,6014,5,2,0,0,6014,6015,3,560,280, - 0,6015,6016,5,3,0,0,6016,6018,1,0,0,0,6017,6010,1,0,0,0,6017,6013, - 1,0,0,0,6018,6020,1,0,0,0,6019,6001,1,0,0,0,6019,6005,1,0,0,0,6020, - 551,1,0,0,0,6021,6022,5,178,0,0,6022,6031,3,816,408,0,6023,6025, - 5,269,0,0,6024,6023,1,0,0,0,6024,6025,1,0,0,0,6025,6026,1,0,0,0, - 6026,6030,5,324,0,0,6027,6030,5,107,0,0,6028,6030,5,240,0,0,6029, - 6024,1,0,0,0,6029,6027,1,0,0,0,6029,6028,1,0,0,0,6030,6033,1,0,0, - 0,6031,6029,1,0,0,0,6031,6032,1,0,0,0,6032,6034,1,0,0,0,6033,6031, - 1,0,0,0,6034,6037,5,172,0,0,6035,6036,7,27,0,0,6036,6038,5,217,0, - 0,6037,6035,1,0,0,0,6037,6038,1,0,0,0,6038,6039,1,0,0,0,6039,6040, - 5,62,0,0,6040,6041,3,554,277,0,6041,553,1,0,0,0,6042,6045,3,558, - 279,0,6043,6045,3,556,278,0,6044,6042,1,0,0,0,6044,6043,1,0,0,0, - 6045,555,1,0,0,0,6046,6049,5,2,0,0,6047,6050,3,558,279,0,6048,6050, - 3,556,278,0,6049,6047,1,0,0,0,6049,6048,1,0,0,0,6050,6051,1,0,0, - 0,6051,6052,5,3,0,0,6052,557,1,0,0,0,6053,6055,3,566,283,0,6054, - 6053,1,0,0,0,6054,6055,1,0,0,0,6055,6056,1,0,0,0,6056,6058,3,560, - 280,0,6057,6059,3,580,290,0,6058,6057,1,0,0,0,6058,6059,1,0,0,0, - 6059,6068,1,0,0,0,6060,6062,3,600,300,0,6061,6063,3,584,292,0,6062, - 6061,1,0,0,0,6062,6063,1,0,0,0,6063,6069,1,0,0,0,6064,6066,3,584, - 292,0,6065,6067,3,600,300,0,6066,6065,1,0,0,0,6066,6067,1,0,0,0, - 6067,6069,1,0,0,0,6068,6060,1,0,0,0,6068,6064,1,0,0,0,6068,6069, - 1,0,0,0,6069,559,1,0,0,0,6070,6073,3,562,281,0,6071,6073,3,556,278, - 0,6072,6070,1,0,0,0,6072,6071,1,0,0,0,6073,561,1,0,0,0,6074,6084, - 5,88,0,0,6075,6077,5,30,0,0,6076,6075,1,0,0,0,6076,6077,1,0,0,0, - 6077,6079,1,0,0,0,6078,6080,3,574,287,0,6079,6078,1,0,0,0,6079,6080, - 1,0,0,0,6080,6085,1,0,0,0,6081,6083,3,578,289,0,6082,6081,1,0,0, - 0,6082,6083,1,0,0,0,6083,6085,1,0,0,0,6084,6076,1,0,0,0,6084,6082, - 1,0,0,0,6085,6086,1,0,0,0,6086,6097,3,928,464,0,6087,6097,3,602, - 301,0,6088,6089,5,92,0,0,6089,6097,3,618,309,0,6090,6091,3,556,278, - 0,6091,6094,3,564,282,0,6092,6095,3,562,281,0,6093,6095,3,556,278, - 0,6094,6092,1,0,0,0,6094,6093,1,0,0,0,6095,6097,1,0,0,0,6096,6074, - 1,0,0,0,6096,6087,1,0,0,0,6096,6088,1,0,0,0,6096,6090,1,0,0,0,6097, - 6105,1,0,0,0,6098,6101,3,564,282,0,6099,6102,3,562,281,0,6100,6102, - 3,556,278,0,6101,6099,1,0,0,0,6101,6100,1,0,0,0,6102,6104,1,0,0, - 0,6103,6098,1,0,0,0,6104,6107,1,0,0,0,6105,6103,1,0,0,0,6105,6106, - 1,0,0,0,6106,563,1,0,0,0,6107,6105,1,0,0,0,6108,6110,7,80,0,0,6109, - 6111,7,81,0,0,6110,6109,1,0,0,0,6110,6111,1,0,0,0,6111,565,1,0,0, - 0,6112,6114,5,105,0,0,6113,6115,5,303,0,0,6114,6113,1,0,0,0,6114, - 6115,1,0,0,0,6115,6116,1,0,0,0,6116,6121,3,568,284,0,6117,6118,5, - 6,0,0,6118,6120,3,568,284,0,6119,6117,1,0,0,0,6120,6123,1,0,0,0, - 6121,6119,1,0,0,0,6121,6122,1,0,0,0,6122,567,1,0,0,0,6123,6121,1, - 0,0,0,6124,6126,3,816,408,0,6125,6127,3,138,69,0,6126,6125,1,0,0, - 0,6126,6127,1,0,0,0,6127,6128,1,0,0,0,6128,6133,5,36,0,0,6129,6131, - 5,77,0,0,6130,6129,1,0,0,0,6130,6131,1,0,0,0,6131,6132,1,0,0,0,6132, - 6134,5,259,0,0,6133,6130,1,0,0,0,6133,6134,1,0,0,0,6134,6135,1,0, - 0,0,6135,6136,5,2,0,0,6136,6137,3,524,262,0,6137,6139,5,3,0,0,6138, - 6140,3,570,285,0,6139,6138,1,0,0,0,6139,6140,1,0,0,0,6140,6142,1, - 0,0,0,6141,6143,3,572,286,0,6142,6141,1,0,0,0,6142,6143,1,0,0,0, - 6143,569,1,0,0,0,6144,6145,5,325,0,0,6145,6146,7,82,0,0,6146,6147, - 5,207,0,0,6147,6148,5,147,0,0,6148,6149,3,142,71,0,6149,6150,5,333, - 0,0,6150,6151,3,796,398,0,6151,571,1,0,0,0,6152,6153,5,173,0,0,6153, - 6154,3,142,71,0,6154,6155,5,333,0,0,6155,6161,3,796,398,0,6156,6157, - 5,94,0,0,6157,6158,3,816,408,0,6158,6159,5,53,0,0,6159,6160,3,816, - 408,0,6160,6162,1,0,0,0,6161,6156,1,0,0,0,6161,6162,1,0,0,0,6162, - 6163,1,0,0,0,6163,6164,5,100,0,0,6164,6165,3,796,398,0,6165,573, - 1,0,0,0,6166,6172,5,71,0,0,6167,6169,5,346,0,0,6168,6167,1,0,0,0, - 6168,6169,1,0,0,0,6169,6170,1,0,0,0,6170,6173,3,576,288,0,6171,6173, - 3,726,363,0,6172,6168,1,0,0,0,6172,6171,1,0,0,0,6173,575,1,0,0,0, - 6174,6176,7,21,0,0,6175,6174,1,0,0,0,6175,6176,1,0,0,0,6176,6177, - 1,0,0,0,6177,6179,7,22,0,0,6178,6180,5,92,0,0,6179,6178,1,0,0,0, - 6179,6180,1,0,0,0,6180,6181,1,0,0,0,6181,6190,3,768,384,0,6182,6184, - 5,367,0,0,6183,6182,1,0,0,0,6183,6184,1,0,0,0,6184,6186,1,0,0,0, - 6185,6187,5,92,0,0,6186,6185,1,0,0,0,6186,6187,1,0,0,0,6187,6188, - 1,0,0,0,6188,6190,3,768,384,0,6189,6175,1,0,0,0,6189,6183,1,0,0, - 0,6190,577,1,0,0,0,6191,6194,5,56,0,0,6192,6193,5,80,0,0,6193,6195, - 3,528,264,0,6194,6192,1,0,0,0,6194,6195,1,0,0,0,6195,579,1,0,0,0, - 6196,6197,5,83,0,0,6197,6198,5,147,0,0,6198,6203,3,582,291,0,6199, - 6200,5,6,0,0,6200,6202,3,582,291,0,6201,6199,1,0,0,0,6202,6205,1, - 0,0,0,6203,6201,1,0,0,0,6203,6204,1,0,0,0,6204,581,1,0,0,0,6205, - 6203,1,0,0,0,6206,6210,3,730,365,0,6207,6208,5,100,0,0,6208,6211, - 3,722,361,0,6209,6211,7,56,0,0,6210,6207,1,0,0,0,6210,6209,1,0,0, - 0,6210,6211,1,0,0,0,6211,6214,1,0,0,0,6212,6213,5,273,0,0,6213,6215, - 7,57,0,0,6214,6212,1,0,0,0,6214,6215,1,0,0,0,6215,583,1,0,0,0,6216, - 6218,3,590,295,0,6217,6219,3,588,294,0,6218,6217,1,0,0,0,6218,6219, - 1,0,0,0,6219,6228,1,0,0,0,6220,6223,3,586,293,0,6221,6223,3,588, - 294,0,6222,6220,1,0,0,0,6222,6221,1,0,0,0,6223,6225,1,0,0,0,6224, - 6226,3,590,295,0,6225,6224,1,0,0,0,6225,6226,1,0,0,0,6226,6228,1, - 0,0,0,6227,6216,1,0,0,0,6227,6222,1,0,0,0,6228,585,1,0,0,0,6229, - 6232,5,74,0,0,6230,6233,3,668,334,0,6231,6233,5,30,0,0,6232,6230, - 1,0,0,0,6232,6231,1,0,0,0,6233,6236,1,0,0,0,6234,6235,5,6,0,0,6235, - 6237,3,668,334,0,6236,6234,1,0,0,0,6236,6237,1,0,0,0,6237,587,1, - 0,0,0,6238,6239,5,61,0,0,6239,6241,7,83,0,0,6240,6242,3,592,296, - 0,6241,6240,1,0,0,0,6241,6242,1,0,0,0,6242,6243,1,0,0,0,6243,6247, - 7,84,0,0,6244,6248,5,81,0,0,6245,6246,5,105,0,0,6246,6248,5,467, - 0,0,6247,6244,1,0,0,0,6247,6245,1,0,0,0,6248,589,1,0,0,0,6249,6254, - 5,79,0,0,6250,6251,3,592,296,0,6251,6252,7,84,0,0,6252,6255,1,0, - 0,0,6253,6255,3,668,334,0,6254,6250,1,0,0,0,6254,6253,1,0,0,0,6255, - 591,1,0,0,0,6256,6257,7,30,0,0,6257,6260,7,85,0,0,6258,6260,3,676, - 338,0,6259,6256,1,0,0,0,6259,6258,1,0,0,0,6260,593,1,0,0,0,6261, - 6262,5,66,0,0,6262,6264,5,147,0,0,6263,6265,7,81,0,0,6264,6263,1, - 0,0,0,6264,6265,1,0,0,0,6265,6266,1,0,0,0,6266,6267,3,596,298,0, - 6267,595,1,0,0,0,6268,6273,3,598,299,0,6269,6270,5,6,0,0,6270,6272, - 3,598,299,0,6271,6269,1,0,0,0,6272,6275,1,0,0,0,6273,6271,1,0,0, - 0,6273,6274,1,0,0,0,6274,597,1,0,0,0,6275,6273,1,0,0,0,6276,6300, - 3,730,365,0,6277,6278,5,2,0,0,6278,6300,5,3,0,0,6279,6281,7,86,0, - 0,6280,6279,1,0,0,0,6280,6281,1,0,0,0,6281,6282,1,0,0,0,6282,6283, - 5,2,0,0,6283,6288,3,730,365,0,6284,6285,5,6,0,0,6285,6287,3,730, - 365,0,6286,6284,1,0,0,0,6287,6290,1,0,0,0,6288,6286,1,0,0,0,6288, - 6289,1,0,0,0,6289,6291,1,0,0,0,6290,6288,1,0,0,0,6291,6292,5,3,0, - 0,6292,6300,1,0,0,0,6293,6294,5,470,0,0,6294,6295,5,471,0,0,6295, - 6296,5,2,0,0,6296,6297,3,596,298,0,6297,6298,5,3,0,0,6298,6300,1, - 0,0,0,6299,6276,1,0,0,0,6299,6277,1,0,0,0,6299,6280,1,0,0,0,6299, - 6293,1,0,0,0,6300,599,1,0,0,0,6301,6311,5,62,0,0,6302,6303,5,269, - 0,0,6303,6305,5,245,0,0,6304,6302,1,0,0,0,6304,6305,1,0,0,0,6305, - 6306,1,0,0,0,6306,6312,5,369,0,0,6307,6309,5,245,0,0,6308,6307,1, - 0,0,0,6308,6309,1,0,0,0,6309,6310,1,0,0,0,6310,6312,5,334,0,0,6311, - 6304,1,0,0,0,6311,6308,1,0,0,0,6312,6315,1,0,0,0,6313,6314,5,275, - 0,0,6314,6316,3,756,378,0,6315,6313,1,0,0,0,6315,6316,1,0,0,0,6316, - 6320,1,0,0,0,6317,6321,5,272,0,0,6318,6319,5,465,0,0,6319,6321,5, - 466,0,0,6320,6317,1,0,0,0,6320,6318,1,0,0,0,6320,6321,1,0,0,0,6321, - 6323,1,0,0,0,6322,6301,1,0,0,0,6323,6324,1,0,0,0,6324,6322,1,0,0, - 0,6324,6325,1,0,0,0,6325,6330,1,0,0,0,6326,6327,5,62,0,0,6327,6328, - 5,300,0,0,6328,6330,5,81,0,0,6329,6322,1,0,0,0,6329,6326,1,0,0,0, - 6330,601,1,0,0,0,6331,6332,5,422,0,0,6332,6337,3,528,264,0,6333, - 6334,5,6,0,0,6334,6336,3,528,264,0,6335,6333,1,0,0,0,6336,6339,1, - 0,0,0,6337,6335,1,0,0,0,6337,6338,1,0,0,0,6338,603,1,0,0,0,6339, - 6337,1,0,0,0,6340,6341,5,64,0,0,6341,6342,3,606,303,0,6342,605,1, - 0,0,0,6343,6348,3,608,304,0,6344,6345,5,6,0,0,6345,6347,3,608,304, - 0,6346,6344,1,0,0,0,6347,6350,1,0,0,0,6348,6346,1,0,0,0,6348,6349, - 1,0,0,0,6349,607,1,0,0,0,6350,6348,1,0,0,0,6351,6366,3,618,309,0, - 6352,6354,5,81,0,0,6353,6352,1,0,0,0,6353,6354,1,0,0,0,6354,6355, - 1,0,0,0,6355,6357,3,774,387,0,6356,6358,5,9,0,0,6357,6356,1,0,0, - 0,6357,6358,1,0,0,0,6358,6360,1,0,0,0,6359,6361,3,142,71,0,6360, - 6359,1,0,0,0,6360,6361,1,0,0,0,6361,6363,1,0,0,0,6362,6364,3,632, - 316,0,6363,6362,1,0,0,0,6363,6364,1,0,0,0,6364,6366,1,0,0,0,6365, - 6351,1,0,0,0,6365,6353,1,0,0,0,6366,6368,1,0,0,0,6367,6369,3,610, - 305,0,6368,6367,1,0,0,0,6368,6369,1,0,0,0,6369,6371,1,0,0,0,6370, - 6372,3,626,313,0,6371,6370,1,0,0,0,6371,6372,1,0,0,0,6372,6415,1, - 0,0,0,6373,6375,5,72,0,0,6374,6373,1,0,0,0,6374,6375,1,0,0,0,6375, - 6388,1,0,0,0,6376,6378,3,640,320,0,6377,6379,3,610,305,0,6378,6377, - 1,0,0,0,6378,6379,1,0,0,0,6379,6389,1,0,0,0,6380,6382,3,628,314, - 0,6381,6383,3,612,306,0,6382,6381,1,0,0,0,6382,6383,1,0,0,0,6383, - 6389,1,0,0,0,6384,6386,3,556,278,0,6385,6387,3,610,305,0,6386,6385, - 1,0,0,0,6386,6387,1,0,0,0,6387,6389,1,0,0,0,6388,6376,1,0,0,0,6388, - 6380,1,0,0,0,6388,6384,1,0,0,0,6389,6415,1,0,0,0,6390,6391,5,2,0, - 0,6391,6408,3,608,304,0,6392,6393,5,110,0,0,6393,6394,5,118,0,0, - 6394,6409,3,608,304,0,6395,6397,5,121,0,0,6396,6398,3,614,307,0, - 6397,6396,1,0,0,0,6397,6398,1,0,0,0,6398,6399,1,0,0,0,6399,6400, - 5,118,0,0,6400,6409,3,608,304,0,6401,6403,3,614,307,0,6402,6401, - 1,0,0,0,6402,6403,1,0,0,0,6403,6404,1,0,0,0,6404,6405,5,118,0,0, - 6405,6406,3,608,304,0,6406,6407,3,616,308,0,6407,6409,1,0,0,0,6408, - 6392,1,0,0,0,6408,6395,1,0,0,0,6408,6402,1,0,0,0,6408,6409,1,0,0, - 0,6409,6410,1,0,0,0,6410,6412,5,3,0,0,6411,6413,3,610,305,0,6412, - 6411,1,0,0,0,6412,6413,1,0,0,0,6413,6415,1,0,0,0,6414,6365,1,0,0, - 0,6414,6374,1,0,0,0,6414,6390,1,0,0,0,6415,6434,1,0,0,0,6416,6417, - 5,110,0,0,6417,6418,5,118,0,0,6418,6433,3,608,304,0,6419,6421,5, - 121,0,0,6420,6422,3,614,307,0,6421,6420,1,0,0,0,6421,6422,1,0,0, - 0,6422,6423,1,0,0,0,6423,6424,5,118,0,0,6424,6433,3,608,304,0,6425, - 6427,3,614,307,0,6426,6425,1,0,0,0,6426,6427,1,0,0,0,6427,6428,1, - 0,0,0,6428,6429,5,118,0,0,6429,6430,3,608,304,0,6430,6431,3,616, - 308,0,6431,6433,1,0,0,0,6432,6416,1,0,0,0,6432,6419,1,0,0,0,6432, - 6426,1,0,0,0,6433,6436,1,0,0,0,6434,6432,1,0,0,0,6434,6435,1,0,0, - 0,6435,609,1,0,0,0,6436,6434,1,0,0,0,6437,6439,5,36,0,0,6438,6437, - 1,0,0,0,6438,6439,1,0,0,0,6439,6440,1,0,0,0,6440,6445,3,816,408, - 0,6441,6442,5,2,0,0,6442,6443,3,780,390,0,6443,6444,5,3,0,0,6444, - 6446,1,0,0,0,6445,6441,1,0,0,0,6445,6446,1,0,0,0,6446,611,1,0,0, - 0,6447,6460,3,610,305,0,6448,6450,5,36,0,0,6449,6451,3,816,408,0, - 6450,6449,1,0,0,0,6450,6451,1,0,0,0,6451,6454,1,0,0,0,6452,6454, - 3,816,408,0,6453,6448,1,0,0,0,6453,6452,1,0,0,0,6454,6455,1,0,0, - 0,6455,6456,5,2,0,0,6456,6457,3,636,318,0,6457,6458,5,3,0,0,6458, - 6460,1,0,0,0,6459,6447,1,0,0,0,6459,6453,1,0,0,0,6460,613,1,0,0, - 0,6461,6463,7,87,0,0,6462,6464,5,123,0,0,6463,6462,1,0,0,0,6463, - 6464,1,0,0,0,6464,615,1,0,0,0,6465,6466,5,100,0,0,6466,6470,3,138, - 69,0,6467,6468,5,80,0,0,6468,6470,3,668,334,0,6469,6465,1,0,0,0, - 6469,6467,1,0,0,0,6470,617,1,0,0,0,6471,6487,3,316,158,0,6472,6478, - 5,81,0,0,6473,6479,3,770,385,0,6474,6475,5,2,0,0,6475,6476,3,770, - 385,0,6476,6477,5,3,0,0,6477,6479,1,0,0,0,6478,6473,1,0,0,0,6478, - 6474,1,0,0,0,6479,6487,1,0,0,0,6480,6481,5,68,0,0,6481,6484,5,323, - 0,0,6482,6485,3,786,393,0,6483,6485,5,111,0,0,6484,6482,1,0,0,0, - 6484,6483,1,0,0,0,6485,6487,1,0,0,0,6486,6471,1,0,0,0,6486,6472, - 1,0,0,0,6486,6480,1,0,0,0,6487,619,1,0,0,0,6488,6489,5,92,0,0,6489, - 6491,3,316,158,0,6490,6492,3,138,69,0,6491,6490,1,0,0,0,6491,6492, - 1,0,0,0,6492,6494,1,0,0,0,6493,6495,3,632,316,0,6494,6493,1,0,0, - 0,6494,6495,1,0,0,0,6495,6513,1,0,0,0,6496,6497,5,92,0,0,6497,6503, - 5,81,0,0,6498,6504,3,770,385,0,6499,6500,5,2,0,0,6500,6501,3,770, - 385,0,6501,6502,5,3,0,0,6502,6504,1,0,0,0,6503,6498,1,0,0,0,6503, - 6499,1,0,0,0,6504,6513,1,0,0,0,6505,6506,5,350,0,0,6506,6507,5,68, - 0,0,6507,6510,5,323,0,0,6508,6511,3,786,393,0,6509,6511,5,111,0, - 0,6510,6508,1,0,0,0,6510,6509,1,0,0,0,6511,6513,1,0,0,0,6512,6488, - 1,0,0,0,6512,6496,1,0,0,0,6512,6505,1,0,0,0,6513,621,1,0,0,0,6514, - 6519,3,618,309,0,6515,6516,5,6,0,0,6516,6518,3,618,309,0,6517,6515, - 1,0,0,0,6518,6521,1,0,0,0,6519,6517,1,0,0,0,6519,6520,1,0,0,0,6520, - 623,1,0,0,0,6521,6519,1,0,0,0,6522,6527,3,618,309,0,6523,6525,5, - 36,0,0,6524,6523,1,0,0,0,6524,6525,1,0,0,0,6525,6526,1,0,0,0,6526, - 6528,3,816,408,0,6527,6524,1,0,0,0,6527,6528,1,0,0,0,6528,625,1, - 0,0,0,6529,6530,5,472,0,0,6530,6531,3,804,402,0,6531,6537,3,528, - 264,0,6532,6533,5,310,0,0,6533,6534,5,2,0,0,6534,6535,3,668,334, - 0,6535,6536,5,3,0,0,6536,6538,1,0,0,0,6537,6532,1,0,0,0,6537,6538, - 1,0,0,0,6538,627,1,0,0,0,6539,6554,3,682,341,0,6540,6541,5,320,0, - 0,6541,6542,5,64,0,0,6542,6543,5,2,0,0,6543,6548,3,630,315,0,6544, - 6545,5,6,0,0,6545,6547,3,630,315,0,6546,6544,1,0,0,0,6547,6550,1, - 0,0,0,6548,6546,1,0,0,0,6548,6549,1,0,0,0,6549,6551,1,0,0,0,6550, - 6548,1,0,0,0,6551,6552,5,3,0,0,6552,6554,1,0,0,0,6553,6539,1,0,0, - 0,6553,6540,1,0,0,0,6554,6557,1,0,0,0,6555,6556,5,105,0,0,6556,6558, - 5,473,0,0,6557,6555,1,0,0,0,6557,6558,1,0,0,0,6558,629,1,0,0,0,6559, - 6565,3,682,341,0,6560,6561,5,36,0,0,6561,6562,5,2,0,0,6562,6563, - 3,636,318,0,6563,6564,5,3,0,0,6564,6566,1,0,0,0,6565,6560,1,0,0, - 0,6565,6566,1,0,0,0,6566,631,1,0,0,0,6567,6568,5,103,0,0,6568,6569, - 3,730,365,0,6569,633,1,0,0,0,6570,6575,5,103,0,0,6571,6572,5,434, - 0,0,6572,6573,5,275,0,0,6573,6576,3,816,408,0,6574,6576,3,668,334, - 0,6575,6571,1,0,0,0,6575,6574,1,0,0,0,6576,635,1,0,0,0,6577,6582, - 3,638,319,0,6578,6579,5,6,0,0,6579,6581,3,638,319,0,6580,6578,1, - 0,0,0,6581,6584,1,0,0,0,6582,6580,1,0,0,0,6582,6583,1,0,0,0,6583, - 637,1,0,0,0,6584,6582,1,0,0,0,6585,6586,3,816,408,0,6586,6588,3, - 646,323,0,6587,6589,3,90,45,0,6588,6587,1,0,0,0,6588,6589,1,0,0, - 0,6589,639,1,0,0,0,6590,6591,5,474,0,0,6591,6605,5,2,0,0,6592,6593, - 5,476,0,0,6593,6594,5,2,0,0,6594,6599,3,644,322,0,6595,6596,5,6, - 0,0,6596,6598,3,644,322,0,6597,6595,1,0,0,0,6598,6601,1,0,0,0,6599, - 6597,1,0,0,0,6599,6600,1,0,0,0,6600,6602,1,0,0,0,6601,6599,1,0,0, - 0,6602,6603,5,3,0,0,6603,6604,5,6,0,0,6604,6606,1,0,0,0,6605,6592, - 1,0,0,0,6605,6606,1,0,0,0,6606,6607,1,0,0,0,6607,6608,3,676,338, - 0,6608,6609,3,692,346,0,6609,6610,5,475,0,0,6610,6615,3,642,321, - 0,6611,6612,5,6,0,0,6612,6614,3,642,321,0,6613,6611,1,0,0,0,6614, - 6617,1,0,0,0,6615,6613,1,0,0,0,6615,6616,1,0,0,0,6616,6618,1,0,0, - 0,6617,6615,1,0,0,0,6618,6619,5,3,0,0,6619,641,1,0,0,0,6620,6639, - 3,816,408,0,6621,6635,3,646,323,0,6622,6625,5,53,0,0,6623,6625,3, - 824,412,0,6624,6622,1,0,0,0,6624,6623,1,0,0,0,6625,6626,1,0,0,0, - 6626,6632,3,668,334,0,6627,6629,5,77,0,0,6628,6627,1,0,0,0,6628, - 6629,1,0,0,0,6629,6630,1,0,0,0,6630,6632,5,78,0,0,6631,6624,1,0, - 0,0,6631,6628,1,0,0,0,6632,6633,1,0,0,0,6633,6631,1,0,0,0,6633,6634, - 1,0,0,0,6634,6636,1,0,0,0,6635,6631,1,0,0,0,6635,6636,1,0,0,0,6636, - 6640,1,0,0,0,6637,6638,5,62,0,0,6638,6640,5,473,0,0,6639,6621,1, - 0,0,0,6639,6637,1,0,0,0,6640,643,1,0,0,0,6641,6642,3,676,338,0,6642, - 6643,5,36,0,0,6643,6644,3,822,411,0,6644,6648,1,0,0,0,6645,6646, - 5,53,0,0,6646,6648,3,676,338,0,6647,6641,1,0,0,0,6647,6645,1,0,0, - 0,6648,645,1,0,0,0,6649,6651,5,415,0,0,6650,6649,1,0,0,0,6650,6651, - 1,0,0,0,6651,6652,1,0,0,0,6652,6669,3,648,324,0,6653,6655,5,4,0, - 0,6654,6656,5,574,0,0,6655,6654,1,0,0,0,6655,6656,1,0,0,0,6656,6657, - 1,0,0,0,6657,6659,5,5,0,0,6658,6653,1,0,0,0,6659,6662,1,0,0,0,6660, - 6658,1,0,0,0,6660,6661,1,0,0,0,6661,6670,1,0,0,0,6662,6660,1,0,0, - 0,6663,6667,5,35,0,0,6664,6665,5,4,0,0,6665,6666,5,574,0,0,6666, - 6668,5,5,0,0,6667,6664,1,0,0,0,6667,6668,1,0,0,0,6668,6670,1,0,0, - 0,6669,6660,1,0,0,0,6669,6663,1,0,0,0,6670,6676,1,0,0,0,6671,6672, - 3,776,388,0,6672,6673,5,27,0,0,6673,6674,7,88,0,0,6674,6676,1,0, - 0,0,6675,6650,1,0,0,0,6675,6671,1,0,0,0,6676,647,1,0,0,0,6677,6679, - 3,818,409,0,6678,6680,3,312,156,0,6679,6678,1,0,0,0,6679,6680,1, - 0,0,0,6680,6682,1,0,0,0,6681,6683,3,528,264,0,6682,6681,1,0,0,0, - 6682,6683,1,0,0,0,6683,6693,1,0,0,0,6684,6693,3,650,325,0,6685,6690, - 5,403,0,0,6686,6688,3,662,331,0,6687,6686,1,0,0,0,6687,6688,1,0, - 0,0,6688,6691,1,0,0,0,6689,6691,3,654,327,0,6690,6687,1,0,0,0,6690, - 6689,1,0,0,0,6691,6693,1,0,0,0,6692,6677,1,0,0,0,6692,6684,1,0,0, - 0,6692,6685,1,0,0,0,6693,649,1,0,0,0,6694,6699,3,652,326,0,6695, - 6699,3,656,328,0,6696,6699,3,658,329,0,6697,6699,3,660,330,0,6698, - 6694,1,0,0,0,6698,6695,1,0,0,0,6698,6696,1,0,0,0,6698,6697,1,0,0, - 0,6699,651,1,0,0,0,6700,6717,5,401,0,0,6701,6717,5,402,0,0,6702, - 6717,5,416,0,0,6703,6717,5,388,0,0,6704,6717,5,413,0,0,6705,6707, - 5,398,0,0,6706,6708,3,654,327,0,6707,6706,1,0,0,0,6707,6708,1,0, - 0,0,6708,6717,1,0,0,0,6709,6710,5,190,0,0,6710,6717,5,412,0,0,6711, - 6713,7,89,0,0,6712,6714,3,528,264,0,6713,6712,1,0,0,0,6713,6714, - 1,0,0,0,6714,6717,1,0,0,0,6715,6717,5,390,0,0,6716,6700,1,0,0,0, - 6716,6701,1,0,0,0,6716,6702,1,0,0,0,6716,6703,1,0,0,0,6716,6704, - 1,0,0,0,6716,6705,1,0,0,0,6716,6709,1,0,0,0,6716,6711,1,0,0,0,6716, - 6715,1,0,0,0,6717,653,1,0,0,0,6718,6719,5,2,0,0,6719,6720,5,574, - 0,0,6720,6721,5,3,0,0,6721,655,1,0,0,0,6722,6724,5,389,0,0,6723, - 6725,5,374,0,0,6724,6723,1,0,0,0,6724,6725,1,0,0,0,6725,6727,1,0, - 0,0,6726,6728,3,528,264,0,6727,6726,1,0,0,0,6727,6728,1,0,0,0,6728, - 657,1,0,0,0,6729,6731,7,90,0,0,6730,6732,5,374,0,0,6731,6730,1,0, - 0,0,6731,6732,1,0,0,0,6732,6740,1,0,0,0,6733,6740,5,423,0,0,6734, - 6735,5,405,0,0,6735,6737,7,91,0,0,6736,6738,5,374,0,0,6737,6736, - 1,0,0,0,6737,6738,1,0,0,0,6738,6740,1,0,0,0,6739,6729,1,0,0,0,6739, - 6733,1,0,0,0,6739,6734,1,0,0,0,6740,6742,1,0,0,0,6741,6743,3,654, - 327,0,6742,6741,1,0,0,0,6742,6743,1,0,0,0,6743,659,1,0,0,0,6744, - 6746,7,92,0,0,6745,6747,3,654,327,0,6746,6745,1,0,0,0,6746,6747, - 1,0,0,0,6747,6751,1,0,0,0,6748,6749,7,27,0,0,6749,6750,5,418,0,0, - 6750,6752,5,386,0,0,6751,6748,1,0,0,0,6751,6752,1,0,0,0,6752,661, - 1,0,0,0,6753,6783,5,264,0,0,6754,6783,3,664,332,0,6755,6758,5,384, - 0,0,6756,6757,5,94,0,0,6757,6759,5,264,0,0,6758,6756,1,0,0,0,6758, - 6759,1,0,0,0,6759,6783,1,0,0,0,6760,6767,5,176,0,0,6761,6765,5,94, - 0,0,6762,6766,5,218,0,0,6763,6766,5,261,0,0,6764,6766,3,664,332, - 0,6765,6762,1,0,0,0,6765,6763,1,0,0,0,6765,6764,1,0,0,0,6766,6768, - 1,0,0,0,6767,6761,1,0,0,0,6767,6768,1,0,0,0,6768,6783,1,0,0,0,6769, - 6775,5,218,0,0,6770,6773,5,94,0,0,6771,6774,5,261,0,0,6772,6774, - 3,664,332,0,6773,6771,1,0,0,0,6773,6772,1,0,0,0,6774,6776,1,0,0, - 0,6775,6770,1,0,0,0,6775,6776,1,0,0,0,6776,6783,1,0,0,0,6777,6780, - 5,261,0,0,6778,6779,5,94,0,0,6779,6781,3,664,332,0,6780,6778,1,0, - 0,0,6780,6781,1,0,0,0,6781,6783,1,0,0,0,6782,6753,1,0,0,0,6782,6754, - 1,0,0,0,6782,6755,1,0,0,0,6782,6760,1,0,0,0,6782,6769,1,0,0,0,6782, - 6777,1,0,0,0,6783,663,1,0,0,0,6784,6786,5,326,0,0,6785,6787,3,654, - 327,0,6786,6785,1,0,0,0,6786,6787,1,0,0,0,6787,665,1,0,0,0,6788, - 6789,7,93,0,0,6789,667,1,0,0,0,6790,6791,3,670,335,0,6791,669,1, - 0,0,0,6792,6793,6,335,-1,0,6793,6795,3,674,337,0,6794,6796,3,672, - 336,0,6795,6794,1,0,0,0,6795,6796,1,0,0,0,6796,6800,1,0,0,0,6797, - 6798,5,77,0,0,6798,6800,3,670,335,3,6799,6792,1,0,0,0,6799,6797, - 1,0,0,0,6800,6809,1,0,0,0,6801,6802,10,2,0,0,6802,6803,5,33,0,0, - 6803,6808,3,670,335,3,6804,6805,10,1,0,0,6805,6806,5,82,0,0,6806, - 6808,3,670,335,2,6807,6801,1,0,0,0,6807,6804,1,0,0,0,6808,6811,1, - 0,0,0,6809,6807,1,0,0,0,6809,6810,1,0,0,0,6810,671,1,0,0,0,6811, - 6809,1,0,0,0,6812,6813,3,666,333,0,6813,6814,3,674,337,0,6814,6884, - 1,0,0,0,6815,6816,3,666,333,0,6816,6817,3,724,362,0,6817,6823,3, - 714,357,0,6818,6824,3,556,278,0,6819,6820,5,2,0,0,6820,6821,3,668, - 334,0,6821,6822,5,3,0,0,6822,6824,1,0,0,0,6823,6818,1,0,0,0,6823, - 6819,1,0,0,0,6824,6884,1,0,0,0,6825,6827,5,77,0,0,6826,6825,1,0, - 0,0,6826,6827,1,0,0,0,6827,6828,1,0,0,0,6828,6829,5,387,0,0,6829, - 6830,3,674,337,0,6830,6831,5,33,0,0,6831,6832,3,674,337,0,6832,6884, - 1,0,0,0,6833,6835,5,77,0,0,6834,6833,1,0,0,0,6834,6835,1,0,0,0,6835, - 6836,1,0,0,0,6836,6837,5,68,0,0,6837,6838,5,2,0,0,6838,6843,3,668, - 334,0,6839,6840,5,6,0,0,6840,6842,3,668,334,0,6841,6839,1,0,0,0, - 6842,6845,1,0,0,0,6843,6841,1,0,0,0,6843,6844,1,0,0,0,6844,6846, - 1,0,0,0,6845,6843,1,0,0,0,6846,6847,5,3,0,0,6847,6884,1,0,0,0,6848, - 6850,5,77,0,0,6849,6848,1,0,0,0,6849,6850,1,0,0,0,6850,6851,1,0, - 0,0,6851,6852,5,68,0,0,6852,6884,3,556,278,0,6853,6855,5,77,0,0, - 6854,6853,1,0,0,0,6854,6855,1,0,0,0,6855,6864,1,0,0,0,6856,6865, - 5,120,0,0,6857,6865,5,114,0,0,6858,6859,5,127,0,0,6859,6865,5,94, - 0,0,6860,6862,5,387,0,0,6861,6863,5,91,0,0,6862,6861,1,0,0,0,6862, - 6863,1,0,0,0,6863,6865,1,0,0,0,6864,6856,1,0,0,0,6864,6857,1,0,0, - 0,6864,6858,1,0,0,0,6864,6860,1,0,0,0,6865,6866,1,0,0,0,6866,6869, - 3,674,337,0,6867,6868,5,197,0,0,6868,6870,3,674,337,0,6869,6867, - 1,0,0,0,6869,6870,1,0,0,0,6870,6884,1,0,0,0,6871,6873,5,116,0,0, - 6872,6874,5,77,0,0,6873,6872,1,0,0,0,6873,6874,1,0,0,0,6874,6875, - 1,0,0,0,6875,6884,5,78,0,0,6876,6878,5,116,0,0,6877,6879,5,77,0, - 0,6878,6877,1,0,0,0,6878,6879,1,0,0,0,6879,6880,1,0,0,0,6880,6881, - 5,56,0,0,6881,6882,5,64,0,0,6882,6884,3,674,337,0,6883,6812,1,0, - 0,0,6883,6815,1,0,0,0,6883,6826,1,0,0,0,6883,6834,1,0,0,0,6883,6849, - 1,0,0,0,6883,6854,1,0,0,0,6883,6871,1,0,0,0,6883,6876,1,0,0,0,6884, - 673,1,0,0,0,6885,6886,6,337,-1,0,6886,6890,3,676,338,0,6887,6888, - 7,30,0,0,6888,6890,3,674,337,4,6889,6885,1,0,0,0,6889,6887,1,0,0, - 0,6890,6907,1,0,0,0,6891,6892,10,3,0,0,6892,6893,7,94,0,0,6893,6906, - 3,674,337,4,6894,6895,10,2,0,0,6895,6896,7,30,0,0,6896,6906,3,674, - 337,3,6897,6898,10,1,0,0,6898,6899,5,15,0,0,6899,6906,3,674,337, - 2,6900,6901,10,5,0,0,6901,6902,5,142,0,0,6902,6903,5,418,0,0,6903, - 6904,5,386,0,0,6904,6906,3,668,334,0,6905,6891,1,0,0,0,6905,6894, - 1,0,0,0,6905,6897,1,0,0,0,6905,6900,1,0,0,0,6906,6909,1,0,0,0,6907, - 6905,1,0,0,0,6907,6908,1,0,0,0,6908,675,1,0,0,0,6909,6907,1,0,0, - 0,6910,6911,6,338,-1,0,6911,6912,7,95,0,0,6912,6999,3,556,278,0, - 6913,6916,5,35,0,0,6914,6917,3,556,278,0,6915,6917,3,736,368,0,6916, - 6914,1,0,0,0,6916,6915,1,0,0,0,6917,6999,1,0,0,0,6918,6919,5,28, - 0,0,6919,6999,3,750,375,0,6920,6921,5,470,0,0,6921,6999,3,528,264, - 0,6922,6999,5,574,0,0,6923,6999,5,576,0,0,6924,6999,5,566,0,0,6925, - 6999,5,570,0,0,6926,6936,3,804,402,0,6927,6937,3,806,403,0,6928, - 6929,5,2,0,0,6929,6931,3,732,366,0,6930,6932,3,580,290,0,6931,6930, - 1,0,0,0,6931,6932,1,0,0,0,6932,6933,1,0,0,0,6933,6934,5,3,0,0,6934, - 6935,3,806,403,0,6935,6937,1,0,0,0,6936,6927,1,0,0,0,6936,6928,1, - 0,0,0,6937,6999,1,0,0,0,6938,6940,3,650,325,0,6939,6938,1,0,0,0, - 6939,6940,1,0,0,0,6940,6941,1,0,0,0,6941,6999,3,806,403,0,6942,6950, - 5,403,0,0,6943,6945,3,806,403,0,6944,6946,3,662,331,0,6945,6944, - 1,0,0,0,6945,6946,1,0,0,0,6946,6951,1,0,0,0,6947,6948,3,654,327, - 0,6948,6949,3,806,403,0,6949,6951,1,0,0,0,6950,6943,1,0,0,0,6950, - 6947,1,0,0,0,6951,6999,1,0,0,0,6952,6999,5,96,0,0,6953,6999,5,60, - 0,0,6954,6999,5,78,0,0,6955,6999,5,577,0,0,6956,6957,5,2,0,0,6957, - 6958,3,668,334,0,6958,6959,5,3,0,0,6959,6960,3,750,375,0,6960,6999, - 1,0,0,0,6961,6963,5,40,0,0,6962,6964,3,668,334,0,6963,6962,1,0,0, - 0,6963,6964,1,0,0,0,6964,6966,1,0,0,0,6965,6967,3,744,372,0,6966, - 6965,1,0,0,0,6967,6968,1,0,0,0,6968,6966,1,0,0,0,6968,6969,1,0,0, - 0,6969,6972,1,0,0,0,6970,6971,5,58,0,0,6971,6973,3,668,334,0,6972, - 6970,1,0,0,0,6972,6973,1,0,0,0,6973,6974,1,0,0,0,6974,6975,5,454, - 0,0,6975,6999,1,0,0,0,6976,6999,3,680,340,0,6977,6979,3,556,278, - 0,6978,6980,3,748,374,0,6979,6978,1,0,0,0,6979,6980,1,0,0,0,6980, - 6999,1,0,0,0,6981,6999,3,712,356,0,6982,6983,5,2,0,0,6983,6984,3, - 668,334,0,6984,6985,5,6,0,0,6985,6986,3,726,363,0,6986,6987,5,3, - 0,0,6987,6999,1,0,0,0,6988,6989,3,710,355,0,6989,6990,5,125,0,0, - 6990,6991,3,710,355,0,6991,6999,1,0,0,0,6992,6999,3,798,399,0,6993, - 6994,7,30,0,0,6994,6999,3,676,338,5,6995,6996,3,720,360,0,6996,6997, - 3,676,338,2,6997,6999,1,0,0,0,6998,6910,1,0,0,0,6998,6913,1,0,0, - 0,6998,6918,1,0,0,0,6998,6920,1,0,0,0,6998,6922,1,0,0,0,6998,6923, - 1,0,0,0,6998,6924,1,0,0,0,6998,6925,1,0,0,0,6998,6926,1,0,0,0,6998, - 6939,1,0,0,0,6998,6942,1,0,0,0,6998,6952,1,0,0,0,6998,6953,1,0,0, - 0,6998,6954,1,0,0,0,6998,6955,1,0,0,0,6998,6956,1,0,0,0,6998,6961, - 1,0,0,0,6998,6976,1,0,0,0,6998,6977,1,0,0,0,6998,6981,1,0,0,0,6998, - 6982,1,0,0,0,6998,6988,1,0,0,0,6998,6992,1,0,0,0,6998,6993,1,0,0, - 0,6998,6995,1,0,0,0,6999,7027,1,0,0,0,7000,7001,10,3,0,0,7001,7002, - 3,718,359,0,7002,7003,3,676,338,4,7003,7026,1,0,0,0,7004,7005,10, - 6,0,0,7005,7006,5,26,0,0,7006,7026,3,646,323,0,7007,7008,10,4,0, - 0,7008,7010,3,720,360,0,7009,7011,3,676,338,0,7010,7009,1,0,0,0, - 7010,7011,1,0,0,0,7011,7026,1,0,0,0,7012,7013,10,1,0,0,7013,7015, - 5,116,0,0,7014,7016,5,77,0,0,7015,7014,1,0,0,0,7015,7016,1,0,0,0, - 7016,7023,1,0,0,0,7017,7018,5,56,0,0,7018,7019,5,64,0,0,7019,7024, - 3,676,338,0,7020,7021,5,275,0,0,7021,7024,3,522,261,0,7022,7024, - 5,188,0,0,7023,7017,1,0,0,0,7023,7020,1,0,0,0,7023,7022,1,0,0,0, - 7024,7026,1,0,0,0,7025,7000,1,0,0,0,7025,7004,1,0,0,0,7025,7007, - 1,0,0,0,7025,7012,1,0,0,0,7026,7029,1,0,0,0,7027,7025,1,0,0,0,7027, - 7028,1,0,0,0,7028,677,1,0,0,0,7029,7027,1,0,0,0,7030,7031,3,804, - 402,0,7031,7052,5,2,0,0,7032,7036,3,732,366,0,7033,7034,5,6,0,0, - 7034,7035,5,101,0,0,7035,7037,3,734,367,0,7036,7033,1,0,0,0,7036, - 7037,1,0,0,0,7037,7039,1,0,0,0,7038,7040,3,580,290,0,7039,7038,1, - 0,0,0,7039,7040,1,0,0,0,7040,7053,1,0,0,0,7041,7042,5,101,0,0,7042, - 7044,3,734,367,0,7043,7045,3,580,290,0,7044,7043,1,0,0,0,7044,7045, - 1,0,0,0,7045,7053,1,0,0,0,7046,7047,7,81,0,0,7047,7049,3,732,366, - 0,7048,7050,3,580,290,0,7049,7048,1,0,0,0,7049,7050,1,0,0,0,7050, - 7053,1,0,0,0,7051,7053,5,9,0,0,7052,7032,1,0,0,0,7052,7041,1,0,0, - 0,7052,7046,1,0,0,0,7052,7051,1,0,0,0,7052,7053,1,0,0,0,7053,7054, - 1,0,0,0,7054,7055,5,3,0,0,7055,679,1,0,0,0,7056,7063,3,678,339,0, - 7057,7058,5,479,0,0,7058,7059,5,66,0,0,7059,7060,5,2,0,0,7060,7061, - 3,580,290,0,7061,7062,5,3,0,0,7062,7064,1,0,0,0,7063,7057,1,0,0, - 0,7063,7064,1,0,0,0,7064,7071,1,0,0,0,7065,7066,5,480,0,0,7066,7067, - 5,2,0,0,7067,7068,5,103,0,0,7068,7069,3,668,334,0,7069,7070,5,3, - 0,0,7070,7072,1,0,0,0,7071,7065,1,0,0,0,7071,7072,1,0,0,0,7072,7078, - 1,0,0,0,7073,7076,5,124,0,0,7074,7077,3,704,352,0,7075,7077,3,816, - 408,0,7076,7074,1,0,0,0,7076,7075,1,0,0,0,7077,7079,1,0,0,0,7078, - 7073,1,0,0,0,7078,7079,1,0,0,0,7079,7082,1,0,0,0,7080,7082,3,684, - 342,0,7081,7056,1,0,0,0,7081,7080,1,0,0,0,7082,681,1,0,0,0,7083, - 7086,3,678,339,0,7084,7086,3,684,342,0,7085,7083,1,0,0,0,7085,7084, - 1,0,0,0,7086,683,1,0,0,0,7087,7088,5,108,0,0,7088,7089,5,62,0,0, - 7089,7090,5,2,0,0,7090,7091,3,668,334,0,7091,7092,5,3,0,0,7092,7262, - 1,0,0,0,7093,7262,5,48,0,0,7094,7096,7,96,0,0,7095,7097,3,654,327, - 0,7096,7095,1,0,0,0,7096,7097,1,0,0,0,7097,7262,1,0,0,0,7098,7262, - 5,49,0,0,7099,7262,5,52,0,0,7100,7262,5,89,0,0,7101,7262,5,99,0, - 0,7102,7262,5,47,0,0,7103,7262,5,111,0,0,7104,7105,7,97,0,0,7105, - 7106,5,2,0,0,7106,7107,3,668,334,0,7107,7108,5,36,0,0,7108,7109, - 3,646,323,0,7109,7110,5,3,0,0,7110,7262,1,0,0,0,7111,7112,5,397, - 0,0,7112,7117,5,2,0,0,7113,7114,3,738,369,0,7114,7115,5,64,0,0,7115, - 7116,3,668,334,0,7116,7118,1,0,0,0,7117,7113,1,0,0,0,7117,7118,1, - 0,0,0,7118,7119,1,0,0,0,7119,7262,5,3,0,0,7120,7121,5,489,0,0,7121, - 7122,5,2,0,0,7122,7125,3,668,334,0,7123,7124,5,6,0,0,7124,7126,3, - 740,370,0,7125,7123,1,0,0,0,7125,7126,1,0,0,0,7126,7127,1,0,0,0, - 7127,7128,5,3,0,0,7128,7262,1,0,0,0,7129,7130,5,410,0,0,7130,7131, - 5,2,0,0,7131,7132,3,668,334,0,7132,7133,5,84,0,0,7133,7134,3,668, - 334,0,7134,7135,5,64,0,0,7135,7138,3,668,334,0,7136,7137,5,62,0, - 0,7137,7139,3,668,334,0,7138,7136,1,0,0,0,7138,7139,1,0,0,0,7139, - 7140,1,0,0,0,7140,7141,5,3,0,0,7141,7262,1,0,0,0,7142,7143,5,411, - 0,0,7143,7148,5,2,0,0,7144,7145,3,676,338,0,7145,7146,5,68,0,0,7146, - 7147,3,676,338,0,7147,7149,1,0,0,0,7148,7144,1,0,0,0,7148,7149,1, - 0,0,0,7149,7150,1,0,0,0,7150,7262,5,3,0,0,7151,7152,5,417,0,0,7152, - 7154,5,2,0,0,7153,7155,3,742,371,0,7154,7153,1,0,0,0,7154,7155,1, - 0,0,0,7155,7156,1,0,0,0,7156,7262,5,3,0,0,7157,7158,5,421,0,0,7158, - 7160,5,2,0,0,7159,7161,7,98,0,0,7160,7159,1,0,0,0,7160,7161,1,0, - 0,0,7161,7166,1,0,0,0,7162,7164,3,668,334,0,7163,7162,1,0,0,0,7163, - 7164,1,0,0,0,7164,7165,1,0,0,0,7165,7167,5,64,0,0,7166,7163,1,0, - 0,0,7166,7167,1,0,0,0,7167,7168,1,0,0,0,7168,7169,3,726,363,0,7169, - 7170,1,0,0,0,7170,7171,5,3,0,0,7171,7262,1,0,0,0,7172,7173,5,408, - 0,0,7173,7174,5,2,0,0,7174,7175,3,668,334,0,7175,7176,5,6,0,0,7176, - 7177,3,668,334,0,7177,7178,5,3,0,0,7178,7262,1,0,0,0,7179,7180,7, - 99,0,0,7180,7262,3,528,264,0,7181,7182,5,426,0,0,7182,7183,5,2,0, - 0,7183,7184,5,266,0,0,7184,7194,3,822,411,0,7185,7192,5,6,0,0,7186, - 7187,5,424,0,0,7187,7188,5,2,0,0,7188,7189,3,686,343,0,7189,7190, - 5,3,0,0,7190,7193,1,0,0,0,7191,7193,3,726,363,0,7192,7186,1,0,0, - 0,7192,7191,1,0,0,0,7193,7195,1,0,0,0,7194,7185,1,0,0,0,7194,7195, - 1,0,0,0,7195,7196,1,0,0,0,7196,7197,5,3,0,0,7197,7262,1,0,0,0,7198, - 7199,5,427,0,0,7199,7200,5,2,0,0,7200,7201,3,676,338,0,7201,7202, - 3,692,346,0,7202,7203,5,3,0,0,7203,7262,1,0,0,0,7204,7205,5,428, - 0,0,7205,7206,5,2,0,0,7206,7207,3,686,343,0,7207,7208,5,3,0,0,7208, - 7262,1,0,0,0,7209,7210,5,429,0,0,7210,7211,5,2,0,0,7211,7212,3,690, - 345,0,7212,7215,3,668,334,0,7213,7214,7,100,0,0,7214,7216,5,378, - 0,0,7215,7213,1,0,0,0,7215,7216,1,0,0,0,7216,7217,1,0,0,0,7217,7218, - 5,3,0,0,7218,7262,1,0,0,0,7219,7220,5,430,0,0,7220,7221,5,2,0,0, - 7221,7222,5,266,0,0,7222,7225,3,822,411,0,7223,7224,5,6,0,0,7224, - 7226,3,668,334,0,7225,7223,1,0,0,0,7225,7226,1,0,0,0,7226,7227,1, - 0,0,0,7227,7228,5,3,0,0,7228,7262,1,0,0,0,7229,7230,5,431,0,0,7230, - 7231,5,2,0,0,7231,7232,5,383,0,0,7232,7233,3,668,334,0,7233,7234, - 5,6,0,0,7234,7238,5,375,0,0,7235,7236,5,269,0,0,7236,7239,5,450, - 0,0,7237,7239,3,668,334,0,7238,7235,1,0,0,0,7238,7237,1,0,0,0,7239, - 7249,1,0,0,0,7240,7241,5,6,0,0,7241,7247,5,339,0,0,7242,7244,5,269, - 0,0,7243,7242,1,0,0,0,7243,7244,1,0,0,0,7244,7245,1,0,0,0,7245,7248, - 5,450,0,0,7246,7248,5,385,0,0,7247,7243,1,0,0,0,7247,7246,1,0,0, - 0,7248,7250,1,0,0,0,7249,7240,1,0,0,0,7249,7250,1,0,0,0,7250,7251, - 1,0,0,0,7251,7252,5,3,0,0,7252,7262,1,0,0,0,7253,7254,5,432,0,0, - 7254,7255,5,2,0,0,7255,7256,3,690,345,0,7256,7257,3,668,334,0,7257, - 7258,5,36,0,0,7258,7259,3,648,324,0,7259,7260,5,3,0,0,7260,7262, - 1,0,0,0,7261,7087,1,0,0,0,7261,7093,1,0,0,0,7261,7094,1,0,0,0,7261, - 7098,1,0,0,0,7261,7099,1,0,0,0,7261,7100,1,0,0,0,7261,7101,1,0,0, - 0,7261,7102,1,0,0,0,7261,7103,1,0,0,0,7261,7104,1,0,0,0,7261,7111, - 1,0,0,0,7261,7120,1,0,0,0,7261,7129,1,0,0,0,7261,7142,1,0,0,0,7261, - 7151,1,0,0,0,7261,7157,1,0,0,0,7261,7172,1,0,0,0,7261,7179,1,0,0, - 0,7261,7181,1,0,0,0,7261,7198,1,0,0,0,7261,7204,1,0,0,0,7261,7209, - 1,0,0,0,7261,7219,1,0,0,0,7261,7229,1,0,0,0,7261,7253,1,0,0,0,7262, - 685,1,0,0,0,7263,7268,3,688,344,0,7264,7265,5,6,0,0,7265,7267,3, - 688,344,0,7266,7264,1,0,0,0,7267,7270,1,0,0,0,7268,7266,1,0,0,0, - 7268,7269,1,0,0,0,7269,687,1,0,0,0,7270,7268,1,0,0,0,7271,7274,3, - 668,334,0,7272,7273,5,36,0,0,7273,7275,3,822,411,0,7274,7272,1,0, - 0,0,7274,7275,1,0,0,0,7275,689,1,0,0,0,7276,7277,7,101,0,0,7277, - 691,1,0,0,0,7278,7280,5,286,0,0,7279,7281,3,694,347,0,7280,7279, - 1,0,0,0,7280,7281,1,0,0,0,7281,7282,1,0,0,0,7282,7284,3,676,338, - 0,7283,7285,3,694,347,0,7284,7283,1,0,0,0,7284,7285,1,0,0,0,7285, - 693,1,0,0,0,7286,7287,5,147,0,0,7287,7288,7,102,0,0,7288,695,1,0, - 0,0,7289,7290,5,104,0,0,7290,7295,3,700,350,0,7291,7292,5,6,0,0, - 7292,7294,3,700,350,0,7293,7291,1,0,0,0,7294,7297,1,0,0,0,7295,7293, - 1,0,0,0,7295,7296,1,0,0,0,7296,697,1,0,0,0,7297,7295,1,0,0,0,7298, - 7299,5,67,0,0,7299,7300,3,668,334,0,7300,699,1,0,0,0,7301,7302,3, - 816,408,0,7302,7303,5,36,0,0,7303,7304,3,704,352,0,7304,701,1,0, - 0,0,7305,7308,5,124,0,0,7306,7309,3,704,352,0,7307,7309,3,816,408, - 0,7308,7306,1,0,0,0,7308,7307,1,0,0,0,7309,703,1,0,0,0,7310,7312, - 5,2,0,0,7311,7313,3,816,408,0,7312,7311,1,0,0,0,7312,7313,1,0,0, - 0,7313,7317,1,0,0,0,7314,7315,5,285,0,0,7315,7316,5,147,0,0,7316, - 7318,3,726,363,0,7317,7314,1,0,0,0,7317,7318,1,0,0,0,7318,7320,1, - 0,0,0,7319,7321,3,580,290,0,7320,7319,1,0,0,0,7320,7321,1,0,0,0, - 7321,7323,1,0,0,0,7322,7324,3,706,353,0,7323,7322,1,0,0,0,7323,7324, - 1,0,0,0,7324,7325,1,0,0,0,7325,7326,5,3,0,0,7326,705,1,0,0,0,7327, - 7332,7,103,0,0,7328,7329,5,387,0,0,7329,7330,3,708,354,0,7330,7331, - 5,33,0,0,7331,7333,1,0,0,0,7332,7328,1,0,0,0,7332,7333,1,0,0,0,7333, - 7334,1,0,0,0,7334,7335,3,708,354,0,7335,7345,1,0,0,0,7336,7343,5, - 199,0,0,7337,7338,5,434,0,0,7338,7344,5,414,0,0,7339,7344,5,66,0, - 0,7340,7344,5,467,0,0,7341,7342,5,269,0,0,7342,7344,5,482,0,0,7343, - 7337,1,0,0,0,7343,7339,1,0,0,0,7343,7340,1,0,0,0,7343,7341,1,0,0, - 0,7344,7346,1,0,0,0,7345,7336,1,0,0,0,7345,7346,1,0,0,0,7346,707, - 1,0,0,0,7347,7350,5,362,0,0,7348,7350,3,668,334,0,7349,7347,1,0, - 0,0,7349,7348,1,0,0,0,7350,7351,1,0,0,0,7351,7355,7,104,0,0,7352, - 7353,5,434,0,0,7353,7355,5,414,0,0,7354,7349,1,0,0,0,7354,7352,1, - 0,0,0,7355,709,1,0,0,0,7356,7364,3,712,356,0,7357,7358,5,2,0,0,7358, - 7359,3,726,363,0,7359,7360,5,6,0,0,7360,7361,3,668,334,0,7361,7362, - 5,3,0,0,7362,7364,1,0,0,0,7363,7356,1,0,0,0,7363,7357,1,0,0,0,7364, - 711,1,0,0,0,7365,7366,5,414,0,0,7366,7368,5,2,0,0,7367,7369,3,726, - 363,0,7368,7367,1,0,0,0,7368,7369,1,0,0,0,7369,7370,1,0,0,0,7370, - 7371,5,3,0,0,7371,713,1,0,0,0,7372,7373,7,105,0,0,7373,715,1,0,0, - 0,7374,7377,5,29,0,0,7375,7377,3,718,359,0,7376,7374,1,0,0,0,7376, - 7375,1,0,0,0,7377,717,1,0,0,0,7378,7379,7,106,0,0,7379,719,1,0,0, - 0,7380,7387,5,29,0,0,7381,7382,5,278,0,0,7382,7383,5,2,0,0,7383, - 7384,3,408,204,0,7384,7385,5,3,0,0,7385,7387,1,0,0,0,7386,7380,1, - 0,0,0,7386,7381,1,0,0,0,7387,721,1,0,0,0,7388,7395,3,716,358,0,7389, - 7390,5,278,0,0,7390,7391,5,2,0,0,7391,7392,3,408,204,0,7392,7393, - 5,3,0,0,7393,7395,1,0,0,0,7394,7388,1,0,0,0,7394,7389,1,0,0,0,7395, - 723,1,0,0,0,7396,7402,3,722,361,0,7397,7399,5,77,0,0,7398,7397,1, - 0,0,0,7398,7399,1,0,0,0,7399,7400,1,0,0,0,7400,7402,7,107,0,0,7401, - 7396,1,0,0,0,7401,7398,1,0,0,0,7402,725,1,0,0,0,7403,7408,3,668, - 334,0,7404,7405,5,6,0,0,7405,7407,3,668,334,0,7406,7404,1,0,0,0, - 7407,7410,1,0,0,0,7408,7406,1,0,0,0,7408,7409,1,0,0,0,7409,727,1, - 0,0,0,7410,7408,1,0,0,0,7411,7412,5,2,0,0,7412,7413,3,668,334,0, - 7413,7414,5,3,0,0,7414,7417,1,0,0,0,7415,7417,3,796,398,0,7416,7411, - 1,0,0,0,7416,7415,1,0,0,0,7417,729,1,0,0,0,7418,7421,3,668,334,0, - 7419,7421,3,796,398,0,7420,7418,1,0,0,0,7420,7419,1,0,0,0,7421,731, - 1,0,0,0,7422,7427,3,734,367,0,7423,7424,5,6,0,0,7424,7426,3,734, - 367,0,7425,7423,1,0,0,0,7426,7429,1,0,0,0,7427,7425,1,0,0,0,7427, - 7428,1,0,0,0,7428,733,1,0,0,0,7429,7427,1,0,0,0,7430,7438,3,796, - 398,0,7431,7438,3,668,334,0,7432,7435,3,818,409,0,7433,7434,7,108, - 0,0,7434,7436,3,668,334,0,7435,7433,1,0,0,0,7435,7436,1,0,0,0,7436, - 7438,1,0,0,0,7437,7430,1,0,0,0,7437,7431,1,0,0,0,7437,7432,1,0,0, - 0,7438,735,1,0,0,0,7439,7449,5,4,0,0,7440,7450,3,726,363,0,7441, - 7446,3,736,368,0,7442,7443,5,6,0,0,7443,7445,3,736,368,0,7444,7442, - 1,0,0,0,7445,7448,1,0,0,0,7446,7444,1,0,0,0,7446,7447,1,0,0,0,7447, - 7450,1,0,0,0,7448,7446,1,0,0,0,7449,7440,1,0,0,0,7449,7441,1,0,0, - 0,7449,7450,1,0,0,0,7450,7451,1,0,0,0,7451,7452,5,5,0,0,7452,737, - 1,0,0,0,7453,7462,3,824,412,0,7454,7462,5,384,0,0,7455,7462,5,264, - 0,0,7456,7462,5,176,0,0,7457,7462,5,218,0,0,7458,7462,5,261,0,0, - 7459,7462,5,326,0,0,7460,7462,3,806,403,0,7461,7453,1,0,0,0,7461, - 7454,1,0,0,0,7461,7455,1,0,0,0,7461,7456,1,0,0,0,7461,7457,1,0,0, - 0,7461,7458,1,0,0,0,7461,7459,1,0,0,0,7461,7460,1,0,0,0,7462,739, - 1,0,0,0,7463,7464,7,109,0,0,7464,741,1,0,0,0,7465,7466,3,668,334, - 0,7466,7467,5,64,0,0,7467,7470,3,668,334,0,7468,7469,5,62,0,0,7469, - 7471,3,668,334,0,7470,7468,1,0,0,0,7470,7471,1,0,0,0,7471,7487,1, - 0,0,0,7472,7473,3,668,334,0,7473,7474,5,62,0,0,7474,7477,3,668,334, - 0,7475,7476,5,64,0,0,7476,7478,3,668,334,0,7477,7475,1,0,0,0,7477, - 7478,1,0,0,0,7478,7487,1,0,0,0,7479,7480,3,668,334,0,7480,7481,5, - 127,0,0,7481,7482,3,668,334,0,7482,7483,5,197,0,0,7483,7484,3,668, - 334,0,7484,7487,1,0,0,0,7485,7487,3,726,363,0,7486,7465,1,0,0,0, - 7486,7472,1,0,0,0,7486,7479,1,0,0,0,7486,7485,1,0,0,0,7487,743,1, - 0,0,0,7488,7489,5,102,0,0,7489,7490,3,668,334,0,7490,7491,5,93,0, - 0,7491,7492,3,668,334,0,7492,745,1,0,0,0,7493,7496,5,11,0,0,7494, - 7497,3,822,411,0,7495,7497,5,9,0,0,7496,7494,1,0,0,0,7496,7495,1, - 0,0,0,7497,7511,1,0,0,0,7498,7507,5,4,0,0,7499,7508,3,668,334,0, - 7500,7502,3,668,334,0,7501,7500,1,0,0,0,7501,7502,1,0,0,0,7502,7503, - 1,0,0,0,7503,7505,5,8,0,0,7504,7506,3,668,334,0,7505,7504,1,0,0, - 0,7505,7506,1,0,0,0,7506,7508,1,0,0,0,7507,7499,1,0,0,0,7507,7501, - 1,0,0,0,7508,7509,1,0,0,0,7509,7511,5,5,0,0,7510,7493,1,0,0,0,7510, - 7498,1,0,0,0,7511,747,1,0,0,0,7512,7514,3,746,373,0,7513,7512,1, - 0,0,0,7514,7515,1,0,0,0,7515,7513,1,0,0,0,7515,7516,1,0,0,0,7516, - 749,1,0,0,0,7517,7519,3,746,373,0,7518,7517,1,0,0,0,7519,7522,1, - 0,0,0,7520,7518,1,0,0,0,7520,7521,1,0,0,0,7521,751,1,0,0,0,7522, - 7520,1,0,0,0,7523,7528,3,754,377,0,7524,7525,5,6,0,0,7525,7527,3, - 754,377,0,7526,7524,1,0,0,0,7527,7530,1,0,0,0,7528,7526,1,0,0,0, - 7528,7529,1,0,0,0,7529,753,1,0,0,0,7530,7528,1,0,0,0,7531,7536,3, - 730,365,0,7532,7533,5,36,0,0,7533,7537,3,822,411,0,7534,7537,3,824, - 412,0,7535,7537,1,0,0,0,7536,7532,1,0,0,0,7536,7534,1,0,0,0,7536, - 7535,1,0,0,0,7537,7540,1,0,0,0,7538,7540,5,9,0,0,7539,7531,1,0,0, - 0,7539,7538,1,0,0,0,7540,755,1,0,0,0,7541,7546,3,776,388,0,7542, - 7543,5,6,0,0,7543,7545,3,776,388,0,7544,7542,1,0,0,0,7545,7548,1, - 0,0,0,7546,7544,1,0,0,0,7546,7547,1,0,0,0,7547,757,1,0,0,0,7548, - 7546,1,0,0,0,7549,7554,3,770,385,0,7550,7551,5,6,0,0,7551,7553,3, - 770,385,0,7552,7550,1,0,0,0,7553,7556,1,0,0,0,7554,7552,1,0,0,0, - 7554,7555,1,0,0,0,7555,759,1,0,0,0,7556,7554,1,0,0,0,7557,7562,3, - 786,393,0,7558,7559,5,6,0,0,7559,7561,3,786,393,0,7560,7558,1,0, - 0,0,7561,7564,1,0,0,0,7562,7560,1,0,0,0,7562,7563,1,0,0,0,7563,761, - 1,0,0,0,7564,7562,1,0,0,0,7565,7570,3,784,392,0,7566,7567,5,6,0, - 0,7567,7569,3,784,392,0,7568,7566,1,0,0,0,7569,7572,1,0,0,0,7570, - 7568,1,0,0,0,7570,7571,1,0,0,0,7571,763,1,0,0,0,7572,7570,1,0,0, - 0,7573,7574,3,776,388,0,7574,765,1,0,0,0,7575,7576,3,776,388,0,7576, - 767,1,0,0,0,7577,7578,3,776,388,0,7578,769,1,0,0,0,7579,7580,3,776, - 388,0,7580,771,1,0,0,0,7581,7582,3,776,388,0,7582,773,1,0,0,0,7583, - 7584,3,310,155,0,7584,775,1,0,0,0,7585,7587,3,816,408,0,7586,7588, - 3,748,374,0,7587,7586,1,0,0,0,7587,7588,1,0,0,0,7588,777,1,0,0,0, - 7589,7594,3,766,383,0,7590,7591,5,6,0,0,7591,7593,3,766,383,0,7592, - 7590,1,0,0,0,7593,7596,1,0,0,0,7594,7592,1,0,0,0,7594,7595,1,0,0, - 0,7595,779,1,0,0,0,7596,7594,1,0,0,0,7597,7602,3,816,408,0,7598, - 7599,5,6,0,0,7599,7601,3,816,408,0,7600,7598,1,0,0,0,7601,7604,1, - 0,0,0,7602,7600,1,0,0,0,7602,7603,1,0,0,0,7603,781,1,0,0,0,7604, - 7602,1,0,0,0,7605,7606,3,310,155,0,7606,783,1,0,0,0,7607,7608,3, - 310,155,0,7608,785,1,0,0,0,7609,7610,3,310,155,0,7610,787,1,0,0, - 0,7611,7612,3,816,408,0,7612,789,1,0,0,0,7613,7614,3,816,408,0,7614, - 791,1,0,0,0,7615,7620,3,818,409,0,7616,7617,3,816,408,0,7617,7618, - 3,748,374,0,7618,7620,1,0,0,0,7619,7615,1,0,0,0,7619,7616,1,0,0, - 0,7620,793,1,0,0,0,7621,7626,3,818,409,0,7622,7623,3,816,408,0,7623, - 7624,3,748,374,0,7624,7626,1,0,0,0,7625,7621,1,0,0,0,7625,7622,1, - 0,0,0,7626,795,1,0,0,0,7627,7628,3,816,408,0,7628,7629,3,750,375, - 0,7629,7632,1,0,0,0,7630,7632,4,398,10,0,7631,7627,1,0,0,0,7631, - 7630,1,0,0,0,7632,797,1,0,0,0,7633,7634,3,816,408,0,7634,7635,3, - 750,375,0,7635,799,1,0,0,0,7636,7637,3,816,408,0,7637,801,1,0,0, - 0,7638,7643,3,818,409,0,7639,7640,3,816,408,0,7640,7641,3,748,374, - 0,7641,7643,1,0,0,0,7642,7638,1,0,0,0,7642,7639,1,0,0,0,7643,803, - 1,0,0,0,7644,7649,3,818,409,0,7645,7646,3,816,408,0,7646,7647,3, - 748,374,0,7647,7649,1,0,0,0,7648,7644,1,0,0,0,7648,7645,1,0,0,0, - 7649,805,1,0,0,0,7650,7653,3,808,404,0,7651,7652,5,487,0,0,7652, - 7654,3,808,404,0,7653,7651,1,0,0,0,7653,7654,1,0,0,0,7654,807,1, - 0,0,0,7655,7667,5,561,0,0,7656,7667,5,563,0,0,7657,7661,5,565,0, - 0,7658,7660,5,590,0,0,7659,7658,1,0,0,0,7660,7663,1,0,0,0,7661,7659, - 1,0,0,0,7661,7662,1,0,0,0,7662,7664,1,0,0,0,7663,7661,1,0,0,0,7664, - 7667,5,591,0,0,7665,7667,5,586,0,0,7666,7655,1,0,0,0,7666,7656,1, - 0,0,0,7666,7657,1,0,0,0,7666,7665,1,0,0,0,7667,809,1,0,0,0,7668, - 7670,7,30,0,0,7669,7668,1,0,0,0,7669,7670,1,0,0,0,7670,7671,1,0, - 0,0,7671,7672,5,574,0,0,7672,811,1,0,0,0,7673,7679,3,820,410,0,7674, - 7679,5,52,0,0,7675,7679,5,49,0,0,7676,7679,5,89,0,0,7677,7679,5, - 524,0,0,7678,7673,1,0,0,0,7678,7674,1,0,0,0,7678,7675,1,0,0,0,7678, - 7676,1,0,0,0,7678,7677,1,0,0,0,7679,813,1,0,0,0,7680,7685,3,812, - 406,0,7681,7682,5,6,0,0,7682,7684,3,812,406,0,7683,7681,1,0,0,0, - 7684,7687,1,0,0,0,7685,7683,1,0,0,0,7685,7686,1,0,0,0,7686,815,1, - 0,0,0,7687,7685,1,0,0,0,7688,7691,3,824,412,0,7689,7691,3,828,414, - 0,7690,7688,1,0,0,0,7690,7689,1,0,0,0,7691,817,1,0,0,0,7692,7695, - 3,824,412,0,7693,7695,3,830,415,0,7694,7692,1,0,0,0,7694,7693,1, - 0,0,0,7695,819,1,0,0,0,7696,7700,3,824,412,0,7697,7700,3,828,414, - 0,7698,7700,3,830,415,0,7699,7696,1,0,0,0,7699,7697,1,0,0,0,7699, - 7698,1,0,0,0,7700,821,1,0,0,0,7701,7706,3,824,412,0,7702,7706,3, - 828,414,0,7703,7706,3,830,415,0,7704,7706,3,832,416,0,7705,7701, + 1,246,1,246,3,246,5640,8,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5655,8,246,1,246, + 1,246,1,246,3,246,5660,8,246,1,247,1,247,3,247,5664,8,247,1,247, + 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,248,1,248,3,248, + 5677,8,248,1,248,1,248,3,248,5681,8,248,3,248,5683,8,248,1,248,1, + 248,1,248,1,248,1,248,5,248,5690,8,248,10,248,12,248,5693,9,248, + 1,248,1,248,1,248,3,248,5698,8,248,3,248,5700,8,248,1,249,1,249, + 3,249,5704,8,249,1,249,3,249,5707,8,249,1,249,3,249,5710,8,249,1, + 249,3,249,5713,8,249,1,249,3,249,5716,8,249,3,249,5718,8,249,1,249, + 3,249,5721,8,249,1,250,1,250,3,250,5725,8,250,1,250,1,250,1,250, + 1,250,5,250,5731,8,250,10,250,12,250,5734,9,250,1,250,1,250,3,250, + 5738,8,250,1,250,3,250,5741,8,250,1,251,1,251,1,252,1,252,3,252, + 5747,8,252,1,252,1,252,3,252,5751,8,252,1,253,1,253,3,253,5755,8, + 253,1,253,1,253,1,253,3,253,5760,8,253,3,253,5762,8,253,1,254,1, + 254,3,254,5766,8,254,1,255,1,255,3,255,5770,8,255,1,256,1,256,1, + 256,5,256,5775,8,256,10,256,12,256,5778,9,256,1,257,1,257,1,257, + 3,257,5783,8,257,1,257,1,257,3,257,5787,8,257,3,257,5789,8,257,3, + 257,5791,8,257,1,257,1,257,1,258,1,258,1,258,1,258,1,258,1,258,1, + 258,1,258,1,258,3,258,5804,8,258,1,259,1,259,1,259,1,259,5,259,5810, + 8,259,10,259,12,259,5813,9,259,1,259,1,259,1,260,1,260,1,260,3,260, + 5820,8,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,5,261,5829, + 8,261,10,261,12,261,5832,9,261,1,261,1,261,1,262,1,262,1,262,1,262, + 1,262,3,262,5841,8,262,1,263,1,263,1,263,3,263,5846,8,263,1,263, + 1,263,3,263,5850,8,263,1,263,1,263,3,263,5854,8,263,1,263,1,263, + 1,263,1,263,1,263,3,263,5861,8,263,1,263,3,263,5864,8,263,3,263, + 5866,8,263,1,264,1,264,1,264,1,264,1,265,1,265,3,265,5874,8,265, + 1,265,1,265,3,265,5878,8,265,1,266,3,266,5881,8,266,1,266,1,266, + 1,266,1,266,1,266,3,266,5888,8,266,1,266,1,266,1,266,1,266,1,266, + 3,266,5895,8,266,1,266,1,266,1,266,3,266,5900,8,266,1,266,1,266, + 1,266,1,266,1,266,3,266,5907,8,266,1,266,3,266,5910,8,266,3,266, + 5912,8,266,1,266,3,266,5915,8,266,1,267,1,267,1,267,1,267,3,267, + 5921,8,267,1,267,1,267,1,267,3,267,5926,8,267,1,267,1,267,3,267, + 5930,8,267,1,268,1,268,1,268,5,268,5935,8,268,10,268,12,268,5938, + 9,268,1,269,1,269,1,269,1,270,1,270,1,270,1,271,3,271,5947,8,271, + 1,271,1,271,1,271,1,271,1,271,3,271,5954,8,271,1,271,3,271,5957, + 8,271,1,271,3,271,5960,8,271,1,272,1,272,3,272,5964,8,272,1,272, + 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,3,272,5975,8,272, + 1,272,3,272,5978,8,272,1,272,3,272,5981,8,272,1,272,3,272,5984,8, + 272,1,273,3,273,5987,8,273,1,273,1,273,1,273,1,273,1,273,3,273,5994, + 8,273,1,273,3,273,5997,8,273,1,273,3,273,6000,8,273,1,274,1,274, + 1,274,5,274,6005,8,274,10,274,12,274,6008,9,274,1,275,1,275,1,275, + 1,275,1,275,1,275,1,275,1,275,1,275,3,275,6019,8,275,1,275,1,275, + 1,275,1,275,1,275,3,275,6026,8,275,3,275,6028,8,275,1,276,1,276, + 1,276,3,276,6033,8,276,1,276,1,276,1,276,5,276,6038,8,276,10,276, + 12,276,6041,9,276,1,276,1,276,1,276,3,276,6046,8,276,1,276,1,276, + 1,276,1,277,1,277,3,277,6053,8,277,1,278,1,278,1,278,3,278,6058, + 8,278,1,278,1,278,1,279,3,279,6063,8,279,1,279,1,279,3,279,6067, + 8,279,1,279,1,279,3,279,6071,8,279,1,279,1,279,3,279,6075,8,279, + 3,279,6077,8,279,1,280,1,280,3,280,6081,8,280,1,281,1,281,3,281, + 6085,8,281,1,281,3,281,6088,8,281,1,281,3,281,6091,8,281,3,281,6093, + 8,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281,6103, + 8,281,3,281,6105,8,281,1,281,1,281,1,281,3,281,6110,8,281,5,281, + 6112,8,281,10,281,12,281,6115,9,281,1,282,1,282,3,282,6119,8,282, + 1,283,1,283,3,283,6123,8,283,1,283,1,283,1,283,5,283,6128,8,283, + 10,283,12,283,6131,9,283,1,284,1,284,3,284,6135,8,284,1,284,1,284, + 3,284,6139,8,284,1,284,3,284,6142,8,284,1,284,1,284,1,284,1,284, + 3,284,6148,8,284,1,284,3,284,6151,8,284,1,285,1,285,1,285,1,285, + 1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286,1,286,1,286, + 1,286,1,286,3,286,6170,8,286,1,286,1,286,1,286,1,287,1,287,3,287, + 6177,8,287,1,287,1,287,3,287,6181,8,287,1,288,3,288,6184,8,288,1, + 288,1,288,3,288,6188,8,288,1,288,1,288,3,288,6192,8,288,1,288,3, + 288,6195,8,288,1,288,3,288,6198,8,288,1,289,1,289,1,289,3,289,6203, + 8,289,1,290,1,290,1,290,1,290,1,290,5,290,6210,8,290,10,290,12,290, + 6213,9,290,1,291,1,291,1,291,1,291,3,291,6219,8,291,1,291,1,291, + 3,291,6223,8,291,1,292,1,292,3,292,6227,8,292,1,292,1,292,3,292, + 6231,8,292,1,292,3,292,6234,8,292,3,292,6236,8,292,1,293,1,293,1, + 293,3,293,6241,8,293,1,293,1,293,3,293,6245,8,293,1,294,1,294,1, + 294,3,294,6250,8,294,1,294,1,294,1,294,1,294,3,294,6256,8,294,1, + 295,1,295,1,295,1,295,1,295,3,295,6263,8,295,1,296,1,296,1,296,3, + 296,6268,8,296,1,297,1,297,1,297,3,297,6273,8,297,1,297,1,297,1, + 298,1,298,1,298,5,298,6280,8,298,10,298,12,298,6283,9,298,1,299, + 1,299,1,299,1,299,3,299,6289,8,299,1,299,1,299,1,299,1,299,5,299, + 6295,8,299,10,299,12,299,6298,9,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,3,299,6308,8,299,1,300,1,300,1,300,3,300,6313, + 8,300,1,300,1,300,3,300,6317,8,300,1,300,3,300,6320,8,300,1,300, + 1,300,3,300,6324,8,300,1,300,1,300,1,300,3,300,6329,8,300,4,300, + 6331,8,300,11,300,12,300,6332,1,300,1,300,1,300,3,300,6338,8,300, + 1,301,1,301,1,301,1,301,5,301,6344,8,301,10,301,12,301,6347,9,301, + 1,302,1,302,1,302,1,303,1,303,1,303,5,303,6355,8,303,10,303,12,303, + 6358,9,303,1,304,1,304,3,304,6362,8,304,1,304,1,304,3,304,6366,8, + 304,1,304,3,304,6369,8,304,1,304,3,304,6372,8,304,3,304,6374,8,304, + 1,304,3,304,6377,8,304,1,304,3,304,6380,8,304,1,304,3,304,6383,8, + 304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,3,304,6393,8, + 304,1,304,1,304,1,304,3,304,6398,8,304,1,304,1,304,1,304,1,304,3, + 304,6404,8,304,1,304,1,304,3,304,6408,8,304,3,304,6410,8,304,1,304, + 1,304,1,304,1,304,1,304,3,304,6417,8,304,1,304,1,304,1,304,3,304, + 6422,8,304,1,304,1,304,1,304,1,304,5,304,6428,8,304,10,304,12,304, + 6431,9,304,1,305,1,305,3,305,6435,8,305,1,305,1,305,3,305,6439,8, + 305,1,305,1,305,3,305,6443,8,305,3,305,6445,8,305,1,306,3,306,6448, + 8,306,1,306,1,306,1,306,1,306,1,306,3,306,6455,8,306,1,307,1,307, + 1,307,3,307,6460,8,307,1,307,3,307,6463,8,307,1,307,1,307,1,307, + 1,307,3,307,6469,8,307,1,308,1,308,3,308,6473,8,308,1,309,1,309, + 1,309,1,309,3,309,6479,8,309,1,310,1,310,1,310,1,310,1,310,1,310, + 1,310,3,310,6488,8,310,1,310,1,310,1,310,1,310,3,310,6494,8,310, + 3,310,6496,8,310,1,311,1,311,1,311,3,311,6501,8,311,1,311,3,311, + 6504,8,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,3,311,6513, + 8,311,1,311,1,311,1,311,1,311,1,311,3,311,6520,8,311,3,311,6522, + 8,311,1,312,1,312,1,312,5,312,6527,8,312,10,312,12,312,6530,9,312, + 1,313,1,313,3,313,6534,8,313,1,313,3,313,6537,8,313,1,314,1,314, + 1,314,1,314,1,314,1,314,1,314,1,314,3,314,6547,8,314,1,315,1,315, + 1,315,1,315,1,315,1,315,1,315,5,315,6556,8,315,10,315,12,315,6559, + 9,315,1,315,1,315,3,315,6563,8,315,1,315,1,315,3,315,6567,8,315, + 1,316,1,316,1,316,1,316,1,316,1,316,3,316,6575,8,316,1,317,1,317, + 1,317,1,318,1,318,1,318,1,318,1,318,3,318,6585,8,318,1,319,1,319, + 1,319,5,319,6590,8,319,10,319,12,319,6593,9,319,1,320,1,320,1,320, + 3,320,6598,8,320,1,321,1,321,1,321,1,321,1,321,1,321,1,321,5,321, + 6607,8,321,10,321,12,321,6610,9,321,1,321,1,321,1,321,3,321,6615, + 8,321,1,321,1,321,1,321,1,321,1,321,1,321,5,321,6623,8,321,10,321, + 12,321,6626,9,321,1,321,1,321,1,322,1,322,1,322,1,322,3,322,6634, + 8,322,1,322,1,322,3,322,6638,8,322,1,322,4,322,6641,8,322,11,322, + 12,322,6642,3,322,6645,8,322,1,322,1,322,3,322,6649,8,322,1,323, + 1,323,1,323,1,323,1,323,1,323,3,323,6657,8,323,1,324,3,324,6660, + 8,324,1,324,1,324,1,324,3,324,6665,8,324,1,324,5,324,6668,8,324, + 10,324,12,324,6671,9,324,1,324,1,324,1,324,1,324,3,324,6677,8,324, + 3,324,6679,8,324,1,324,1,324,1,324,1,324,3,324,6685,8,324,1,325, + 1,325,3,325,6689,8,325,1,325,3,325,6692,8,325,1,325,1,325,1,325, + 3,325,6697,8,325,1,325,3,325,6700,8,325,3,325,6702,8,325,1,326,1, + 326,1,326,1,326,3,326,6708,8,326,1,327,1,327,1,327,1,327,1,327,1, + 327,1,327,3,327,6717,8,327,1,327,1,327,1,327,1,327,3,327,6723,8, + 327,1,327,3,327,6726,8,327,1,328,1,328,1,328,1,328,1,329,1,329,3, + 329,6734,8,329,1,329,3,329,6737,8,329,1,330,1,330,3,330,6741,8,330, + 1,330,1,330,1,330,1,330,3,330,6747,8,330,3,330,6749,8,330,1,330, + 3,330,6752,8,330,1,331,1,331,3,331,6756,8,331,1,331,1,331,1,331, + 3,331,6761,8,331,1,332,1,332,1,332,1,332,1,332,3,332,6768,8,332, + 1,332,1,332,1,332,1,332,1,332,3,332,6775,8,332,3,332,6777,8,332, + 1,332,1,332,1,332,1,332,3,332,6783,8,332,3,332,6785,8,332,1,332, + 1,332,1,332,3,332,6790,8,332,3,332,6792,8,332,1,333,1,333,3,333, + 6796,8,333,1,334,1,334,1,335,1,335,1,336,1,336,1,336,3,336,6805, + 8,336,1,336,1,336,3,336,6809,8,336,1,336,1,336,1,336,1,336,1,336, + 1,336,5,336,6817,8,336,10,336,12,336,6820,9,336,1,337,1,337,1,337, + 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337,6833,8,337, + 1,337,3,337,6836,8,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337, + 6844,8,337,1,337,1,337,1,337,1,337,1,337,5,337,6851,8,337,10,337, + 12,337,6854,9,337,1,337,1,337,1,337,3,337,6859,8,337,1,337,1,337, + 1,337,3,337,6864,8,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337, + 6872,8,337,3,337,6874,8,337,1,337,1,337,1,337,3,337,6879,8,337,1, + 337,1,337,3,337,6883,8,337,1,337,1,337,1,337,3,337,6888,8,337,1, + 337,1,337,1,337,3,337,6893,8,337,1,338,1,338,1,338,1,338,3,338,6899, + 8,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, + 1,338,1,338,1,338,1,338,5,338,6915,8,338,10,338,12,338,6918,9,338, + 1,339,1,339,1,339,1,339,1,339,1,339,3,339,6926,8,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 3,339,6941,8,339,1,339,1,339,1,339,3,339,6946,8,339,1,339,3,339, + 6949,8,339,1,339,1,339,1,339,1,339,3,339,6955,8,339,1,339,1,339, + 1,339,3,339,6960,8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,3,339,6973,8,339,1,339,4,339,6976,8,339, + 11,339,12,339,6977,1,339,1,339,3,339,6982,8,339,1,339,1,339,1,339, + 1,339,1,339,3,339,6989,8,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 3,339,7008,8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,3,339,7020,8,339,1,339,1,339,1,339,3,339,7025,8,339, + 1,339,1,339,1,339,1,339,1,339,1,339,3,339,7033,8,339,5,339,7035, + 8,339,10,339,12,339,7038,9,339,1,340,1,340,1,340,1,340,1,340,1,340, + 3,340,7046,8,340,1,340,3,340,7049,8,340,1,340,1,340,1,340,3,340, + 7054,8,340,1,340,1,340,1,340,3,340,7059,8,340,1,340,3,340,7062,8, + 340,1,340,1,340,1,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341, + 7073,8,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341,7081,8,341, + 1,341,1,341,1,341,3,341,7086,8,341,3,341,7088,8,341,1,341,3,341, + 7091,8,341,1,342,1,342,3,342,7095,8,342,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,3,343,7106,8,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,3,343,7127,8,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7135,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7148,8,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7158,8,343,1,343,1,343, + 1,343,1,343,3,343,7164,8,343,1,343,1,343,1,343,1,343,3,343,7170, + 8,343,1,343,3,343,7173,8,343,1,343,3,343,7176,8,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 3,343,7202,8,343,3,343,7204,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7225,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7235,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7248,8,343,1,343,1,343, + 1,343,3,343,7253,8,343,1,343,1,343,3,343,7257,8,343,3,343,7259,8, + 343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 3,343,7271,8,343,1,344,1,344,1,344,5,344,7276,8,344,10,344,12,344, + 7279,9,344,1,345,1,345,1,345,3,345,7284,8,345,1,346,1,346,1,347, + 1,347,3,347,7290,8,347,1,347,1,347,3,347,7294,8,347,1,348,1,348, + 1,348,1,349,1,349,1,349,1,349,5,349,7303,8,349,10,349,12,349,7306, + 9,349,1,350,1,350,1,350,1,351,1,351,1,351,1,351,1,352,1,352,1,352, + 3,352,7318,8,352,1,353,1,353,3,353,7322,8,353,1,353,1,353,1,353, + 3,353,7327,8,353,1,353,3,353,7330,8,353,1,353,3,353,7333,8,353,1, + 353,1,353,1,354,1,354,1,354,1,354,1,354,3,354,7342,8,354,1,354,1, + 354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,3,354,7353,8,354,3, + 354,7355,8,354,1,355,1,355,3,355,7359,8,355,1,355,1,355,1,355,3, + 355,7364,8,355,1,356,1,356,1,356,1,356,1,356,1,356,1,356,3,356,7373, + 8,356,1,357,1,357,1,357,3,357,7378,8,357,1,357,1,357,1,358,1,358, + 1,359,1,359,3,359,7386,8,359,1,360,1,360,1,361,1,361,1,361,1,361, + 1,361,1,361,3,361,7396,8,361,1,362,1,362,1,362,1,362,1,362,1,362, + 3,362,7404,8,362,1,363,1,363,3,363,7408,8,363,1,363,3,363,7411,8, + 363,1,364,1,364,1,364,5,364,7416,8,364,10,364,12,364,7419,9,364, + 1,365,1,365,1,366,1,366,1,367,1,367,1,367,1,367,1,367,3,367,7430, + 8,367,1,368,1,368,3,368,7434,8,368,1,369,1,369,1,369,5,369,7439, + 8,369,10,369,12,369,7442,9,369,1,370,1,370,1,370,1,370,1,370,3,370, + 7449,8,370,3,370,7451,8,370,1,371,1,371,1,371,1,371,1,371,5,371, + 7458,8,371,10,371,12,371,7461,9,371,3,371,7463,8,371,1,371,1,371, + 1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,3,372,7475,8,372, + 1,373,1,373,1,374,1,374,1,374,1,374,1,374,3,374,7484,8,374,1,374, + 1,374,1,374,1,374,1,374,3,374,7491,8,374,1,374,1,374,1,374,1,374, + 1,374,1,374,1,374,3,374,7500,8,374,1,375,1,375,1,375,1,375,1,375, + 1,376,1,376,1,376,3,376,7510,8,376,1,376,1,376,1,376,3,376,7515, + 8,376,1,376,1,376,3,376,7519,8,376,3,376,7521,8,376,1,376,3,376, + 7524,8,376,1,377,4,377,7527,8,377,11,377,12,377,7528,1,378,5,378, + 7532,8,378,10,378,12,378,7535,9,378,1,379,1,379,1,379,5,379,7540, + 8,379,10,379,12,379,7543,9,379,1,380,1,380,1,380,3,380,7548,8,380, + 1,380,3,380,7551,8,380,1,380,1,380,3,380,7555,8,380,3,380,7557,8, + 380,1,381,1,381,1,381,5,381,7562,8,381,10,381,12,381,7565,9,381, + 1,381,1,381,1,382,1,382,1,382,5,382,7572,8,382,10,382,12,382,7575, + 9,382,1,383,1,383,1,383,5,383,7580,8,383,10,383,12,383,7583,9,383, + 1,384,1,384,1,384,5,384,7588,8,384,10,384,12,384,7591,9,384,1,385, + 1,385,1,385,5,385,7596,8,385,10,385,12,385,7599,9,385,1,386,1,386, + 1,387,1,387,1,388,1,388,1,389,1,389,1,390,1,390,1,391,1,391,1,392, + 1,392,3,392,7615,8,392,1,393,1,393,1,393,5,393,7620,8,393,10,393, + 12,393,7623,9,393,1,394,1,394,1,394,5,394,7628,8,394,10,394,12,394, + 7631,9,394,1,395,1,395,1,396,1,396,1,397,1,397,1,398,1,398,1,399, + 1,399,1,400,1,400,1,400,1,400,3,400,7647,8,400,1,401,1,401,1,401, + 1,401,3,401,7653,8,401,1,402,1,402,1,402,1,402,3,402,7659,8,402, + 1,403,1,403,1,403,1,404,1,404,1,405,1,405,1,405,1,405,3,405,7670, + 8,405,1,406,1,406,1,406,1,406,3,406,7676,8,406,1,407,1,407,1,407, + 3,407,7681,8,407,1,408,1,408,1,408,1,408,5,408,7687,8,408,10,408, + 12,408,7690,9,408,1,408,1,408,3,408,7694,8,408,1,409,3,409,7697, + 8,409,1,409,1,409,1,410,1,410,1,410,1,410,1,410,3,410,7706,8,410, + 1,411,1,411,1,411,5,411,7711,8,411,10,411,12,411,7714,9,411,1,412, + 1,412,3,412,7718,8,412,1,413,1,413,3,413,7722,8,413,1,414,1,414, + 1,414,3,414,7727,8,414,1,415,1,415,1,415,1,415,3,415,7733,8,415, + 1,416,1,416,1,416,3,416,7738,8,416,1,416,1,416,1,416,1,416,1,416, + 1,416,3,416,7746,8,416,1,417,1,417,1,418,1,418,1,418,1,418,1,418, + 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, + 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, + 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, + 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, + 1,418,1,418,3,418,7801,8,418,1,419,1,419,1,420,1,420,1,421,3,421, + 7808,8,421,1,421,1,421,1,421,1,421,4,421,7814,8,421,11,421,12,421, + 7815,3,421,7818,8,421,3,421,7820,8,421,1,421,1,421,5,421,7824,8, + 421,10,421,12,421,7827,9,421,1,421,3,421,7830,8,421,1,421,1,421, + 3,421,7834,8,421,1,422,1,422,1,422,1,422,1,423,1,423,1,423,1,423, + 1,423,3,423,7845,8,423,1,423,3,423,7848,8,423,1,423,1,423,3,423, + 7852,8,423,1,423,1,423,3,423,7856,8,423,1,423,1,423,3,423,7860,8, + 423,1,423,3,423,7863,8,423,1,423,3,423,7866,8,423,1,423,3,423,7869, + 8,423,1,423,1,423,1,423,1,423,1,423,5,423,7876,8,423,10,423,12,423, + 7879,9,423,1,423,1,423,3,423,7883,8,423,1,423,1,423,3,423,7887,8, + 423,1,423,1,423,1,424,1,424,1,424,1,425,1,425,1,426,1,426,1,426, + 1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426, + 1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,3,426, + 7920,8,426,1,427,1,427,1,427,1,427,1,428,1,428,1,428,1,428,3,428, + 7930,8,428,1,428,1,428,3,428,7934,8,428,1,428,1,428,1,428,1,428, + 3,428,7940,8,428,1,428,1,428,1,428,3,428,7945,8,428,1,429,1,429, + 1,429,1,429,1,429,1,430,1,430,3,430,7954,8,430,1,430,1,430,1,430, + 1,430,5,430,7960,8,430,10,430,12,430,7963,9,430,1,430,1,430,1,431, + 1,431,1,431,1,431,1,432,1,432,3,432,7973,8,432,1,432,1,432,1,432, + 1,432,5,432,7979,8,432,10,432,12,432,7982,9,432,1,433,1,433,1,433, + 1,433,5,433,7988,8,433,10,433,12,433,7991,9,433,1,433,1,433,1,433, + 1,433,5,433,7997,8,433,10,433,12,433,8000,9,433,5,433,8002,8,433, + 10,433,12,433,8005,9,433,1,433,3,433,8008,8,433,1,433,1,433,1,433, + 1,433,1,434,1,434,5,434,8016,8,434,10,434,12,434,8019,9,434,1,435, + 1,435,3,435,8023,8,435,1,435,1,435,1,435,1,435,5,435,8029,8,435, + 10,435,12,435,8032,9,435,4,435,8034,8,435,11,435,12,435,8035,1,435, + 3,435,8039,8,435,1,435,1,435,1,435,1,435,1,436,3,436,8046,8,436, + 1,436,1,436,1,436,1,436,3,436,8052,8,436,1,436,1,436,1,437,1,437, + 1,437,1,437,3,437,8060,8,437,1,437,1,437,1,437,1,437,1,437,1,437, + 3,437,8068,8,437,1,437,3,437,8071,8,437,1,437,1,437,1,437,1,437, + 1,437,3,437,8078,8,437,3,437,8080,8,437,1,438,3,438,8083,8,438,1, + 438,1,438,1,438,1,438,3,438,8089,8,438,1,438,1,438,1,438,1,438,1, + 438,1,439,1,439,3,439,8098,8,439,1,439,1,439,3,439,8102,8,439,1, + 439,1,439,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440, + 1,440,3,440,8116,8,440,1,440,3,440,8119,8,440,3,440,8121,8,440,1, + 440,1,440,1,441,1,441,3,441,8127,8,441,1,441,1,441,1,441,1,441,1, + 441,1,441,4,441,8135,8,441,11,441,12,441,8136,3,441,8139,8,441,3, + 441,8141,8,441,1,441,1,441,1,441,1,441,5,441,8147,8,441,10,441,12, + 441,8150,9,441,3,441,8152,8,441,1,441,3,441,8155,8,441,1,442,1,442, + 1,442,1,442,1,443,1,443,1,443,1,443,3,443,8165,8,443,1,443,1,443, + 1,444,1,444,5,444,8171,8,444,10,444,12,444,8174,9,444,1,444,1,444, + 1,444,3,444,8179,8,444,1,444,1,444,1,445,1,445,3,445,8185,8,445, + 1,445,1,445,1,446,1,446,1,446,3,446,8192,8,446,1,446,1,446,3,446, + 8196,8,446,1,446,1,446,3,446,8200,8,446,1,446,3,446,8203,8,446,1, + 446,3,446,8206,8,446,1,446,1,446,1,447,1,447,3,447,8212,8,447,1, + 447,1,447,1,448,1,448,1,448,3,448,8219,8,448,1,448,3,448,8222,8, + 448,1,448,1,448,1,448,1,448,1,448,1,448,3,448,8230,8,448,3,448,8232, + 8,448,1,448,1,448,1,448,1,448,1,448,5,448,8239,8,448,10,448,12,448, + 8242,9,448,1,448,1,448,3,448,8246,8,448,3,448,8248,8,448,1,448,1, + 448,1,449,1,449,1,449,3,449,8255,8,449,1,449,1,449,1,450,1,450,3, + 450,8261,8,450,1,450,3,450,8264,8,450,1,450,1,450,1,450,1,450,1, + 450,1,451,1,451,1,451,1,451,1,451,3,451,8276,8,451,1,451,1,451,1, + 451,1,451,1,451,3,451,8283,8,451,3,451,8285,8,451,1,452,1,452,3, + 452,8289,8,452,1,452,1,452,1,452,1,453,3,453,8295,8,453,1,453,1, + 453,1,453,3,453,8300,8,453,1,453,1,453,3,453,8304,8,453,1,453,3, + 453,8307,8,453,1,453,3,453,8310,8,453,1,453,1,453,1,453,1,453,1, + 453,4,453,8317,8,453,11,453,12,453,8318,1,453,3,453,8322,8,453,1, + 454,3,454,8325,8,454,1,454,1,454,3,454,8329,8,454,1,454,1,454,3, + 454,8333,8,454,3,454,8335,8,454,1,454,3,454,8338,8,454,1,454,3,454, + 8341,8,454,1,455,1,455,1,455,1,455,3,455,8347,8,455,1,455,1,455, + 1,455,1,455,1,455,3,455,8354,8,455,1,455,1,455,1,455,1,455,1,455, + 3,455,8361,8,455,1,455,1,455,1,455,1,455,3,455,8367,8,455,3,455, + 8369,8,455,1,456,1,456,3,456,8373,8,456,1,456,1,456,1,456,3,456, + 8378,8,456,1,456,1,456,1,457,1,457,1,457,1,457,1,457,1,457,1,457, + 1,457,1,457,1,457,1,457,1,457,5,457,8394,8,457,10,457,12,457,8397, + 9,457,1,457,1,457,4,457,8401,8,457,11,457,12,457,8402,1,458,1,458, + 1,458,1,458,1,458,5,458,8410,8,458,10,458,12,458,8413,9,458,1,458, + 1,458,1,458,1,458,3,458,8419,8,458,1,459,1,459,3,459,8423,8,459, + 1,460,1,460,1,460,1,460,1,461,1,461,1,461,1,462,1,462,1,462,3,462, + 8435,8,462,1,462,3,462,8438,8,462,1,462,1,462,1,463,1,463,1,463, + 1,463,1,463,1,463,1,463,1,463,1,463,3,463,8451,8,463,1,463,3,463, + 8454,8,463,1,464,1,464,3,464,8458,8,464,1,465,1,465,1,465,1,465, + 1,465,5,465,8465,8,465,10,465,12,465,8468,9,465,1,465,1,465,5,465, + 8472,8,465,10,465,12,465,8475,9,465,4,465,8477,8,465,11,465,12,465, + 8478,1,466,1,466,1,466,3,466,8484,8,466,1,467,1,467,3,467,8488,8, + 467,1,468,3,468,8491,8,468,1,468,3,468,8494,8,468,1,468,3,468,8497, + 8,468,1,468,3,468,8500,8,468,1,468,3,468,8503,8,468,1,468,3,468, + 8506,8,468,1,468,3,468,8509,8,468,1,468,0,3,672,676,678,469,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,120,122,124,126, + 128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158, + 160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190, + 192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222, + 224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254, + 256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286, + 288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318, + 320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350, + 352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382, + 384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414, + 416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446, + 448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478, + 480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510, + 512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542, + 544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574, + 576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606, + 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, + 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, + 672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702, + 704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734, + 736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766, + 768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798, + 800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830, + 832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862, + 864,866,868,870,872,874,876,878,880,882,884,886,888,890,892,894, + 896,898,900,902,904,906,908,910,912,914,916,918,920,922,924,926, + 928,930,932,934,936,0,119,2,0,195,195,364,364,2,0,66,66,318,318, + 2,0,99,99,318,318,2,0,134,134,318,318,1,0,529,531,2,0,10,10,94,94, + 2,0,133,133,191,191,2,0,254,254,332,332,2,0,162,162,363,363,2,0, + 180,180,221,221,5,0,30,30,288,288,329,329,352,352,354,354,2,0,109, + 109,532,532,2,0,158,158,277,277,2,0,367,367,439,439,2,0,139,139, + 312,312,2,0,191,191,333,333,2,0,313,313,333,333,2,0,150,150,315, + 315,2,0,64,64,94,94,4,0,78,78,183,183,197,197,298,298,1,0,549,551, + 2,0,213,213,254,254,2,0,352,352,354,354,2,0,200,200,224,224,9,0, + 30,30,160,160,165,165,179,179,219,219,227,227,342,342,345,345,438, + 438,3,0,113,113,284,284,336,336,2,0,53,53,78,78,2,0,105,105,379, + 379,2,0,260,260,262,262,3,0,173,173,260,260,262,262,1,0,12,13,2, + 0,64,64,375,375,2,0,156,156,206,206,2,0,189,189,360,360,2,0,215, + 215,373,373,3,0,133,133,191,191,333,333,5,0,30,30,88,88,182,182, + 241,241,369,369,2,0,9,9,94,94,2,0,92,92,226,226,1,0,448,449,2,0, + 92,92,414,414,2,0,341,341,414,414,4,0,163,163,185,185,283,283,353, + 353,2,0,135,135,145,145,2,0,211,211,278,278,3,0,321,321,357,357, + 445,445,3,0,66,66,99,99,318,318,5,0,108,108,168,168,226,226,328, + 328,342,342,2,0,167,167,314,314,2,0,61,61,265,265,4,0,207,207,249, + 249,268,268,293,293,2,0,130,130,307,307,2,0,64,64,68,68,10,0,46, + 46,88,88,182,182,202,202,241,241,352,352,354,354,357,358,369,369, + 521,523,5,0,212,212,329,329,350,350,455,455,457,457,5,0,212,212, + 329,329,350,350,361,361,455,456,2,0,37,37,55,55,2,0,207,207,249, + 249,2,0,10,10,53,53,2,0,181,181,243,243,2,0,170,170,320,320,2,0, + 141,141,223,223,5,0,108,108,168,168,189,189,342,342,360,360,2,0, + 226,226,328,328,2,0,163,163,185,185,2,0,186,186,193,193,4,0,88,88, + 182,182,241,241,369,369,2,0,137,137,242,242,2,0,161,161,319,319, + 4,0,129,129,161,161,319,319,454,454,2,0,356,356,380,380,2,0,81,81, + 382,382,2,0,151,151,254,254,2,0,133,133,138,138,1,0,31,32,2,0,128, + 128,547,547,2,0,60,60,96,96,2,0,99,99,349,349,2,0,131,131,414,414, + 2,0,201,201,334,334,3,0,59,59,70,70,97,97,2,0,30,30,56,56,1,0,527, + 528,2,0,207,207,268,268,2,0,320,320,414,414,2,0,574,574,576,576, + 1,0,468,469,4,0,113,113,115,115,119,119,126,126,2,0,360,360,477, + 477,2,0,394,395,409,409,2,0,391,392,406,406,1,0,391,392,1,0,418, + 419,5,0,10,10,16,17,21,21,23,23,25,25,3,0,9,9,14,14,27,27,2,0,98, + 98,396,396,2,0,50,51,75,76,2,0,41,41,420,420,3,0,39,39,73,73,95, + 95,4,0,393,393,399,399,404,404,425,425,2,0,292,292,347,347,2,0,166, + 166,188,188,2,0,304,304,450,450,3,0,299,299,320,320,481,481,2,0, + 208,208,289,289,3,0,30,30,34,34,90,90,6,0,9,10,12,17,21,21,23,23, + 25,25,27,27,2,0,114,114,120,120,2,0,20,20,22,22,1,0,483,486,17,0, + 53,53,116,116,123,124,129,228,238,386,433,452,455,469,471,471,473, + 473,475,475,477,488,490,502,504,504,506,518,520,520,524,524,547, + 548,3,0,106,123,125,128,472,472,4,0,30,52,54,70,72,105,454,454,2, + 0,62,62,116,116,2,0,10,10,20,20,2,0,434,434,501,501,2,0,167,167, + 507,507,1,0,512,517,2,0,144,144,210,210,9947,0,941,1,0,0,0,2,946, + 1,0,0,0,4,1070,1,0,0,0,6,1072,1,0,0,0,8,1075,1,0,0,0,10,1125,1,0, + 0,0,12,1135,1,0,0,0,14,1137,1,0,0,0,16,1149,1,0,0,0,18,1161,1,0, + 0,0,20,1172,1,0,0,0,22,1206,1,0,0,0,24,1250,1,0,0,0,26,1252,1,0, + 0,0,28,1264,1,0,0,0,30,1271,1,0,0,0,32,1290,1,0,0,0,34,1298,1,0, + 0,0,36,1300,1,0,0,0,38,1314,1,0,0,0,40,1318,1,0,0,0,42,1355,1,0, + 0,0,44,1357,1,0,0,0,46,1365,1,0,0,0,48,1375,1,0,0,0,50,1382,1,0, + 0,0,52,1390,1,0,0,0,54,1396,1,0,0,0,56,1412,1,0,0,0,58,1416,1,0, + 0,0,60,1418,1,0,0,0,62,1430,1,0,0,0,64,1435,1,0,0,0,66,1440,1,0, + 0,0,68,1442,1,0,0,0,70,1454,1,0,0,0,72,1462,1,0,0,0,74,1464,1,0, + 0,0,76,1584,1,0,0,0,78,1586,1,0,0,0,80,1600,1,0,0,0,82,1602,1,0, + 0,0,84,1839,1,0,0,0,86,1846,1,0,0,0,88,1848,1,0,0,0,90,1850,1,0, + 0,0,92,1853,1,0,0,0,94,1864,1,0,0,0,96,1867,1,0,0,0,98,1897,1,0, + 0,0,100,1899,1,0,0,0,102,1940,1,0,0,0,104,1942,1,0,0,0,106,1996, + 1,0,0,0,108,2042,1,0,0,0,110,2063,1,0,0,0,112,2065,1,0,0,0,114,2082, + 1,0,0,0,116,2163,1,0,0,0,118,2165,1,0,0,0,120,2176,1,0,0,0,122,2199, + 1,0,0,0,124,2217,1,0,0,0,126,2219,1,0,0,0,128,2254,1,0,0,0,130,2347, + 1,0,0,0,132,2352,1,0,0,0,134,2354,1,0,0,0,136,2452,1,0,0,0,138,2454, + 1,0,0,0,140,2458,1,0,0,0,142,2469,1,0,0,0,144,2477,1,0,0,0,146,2480, + 1,0,0,0,148,2483,1,0,0,0,150,2501,1,0,0,0,152,2503,1,0,0,0,154,2507, + 1,0,0,0,156,2520,1,0,0,0,158,2522,1,0,0,0,160,2527,1,0,0,0,162,2547, + 1,0,0,0,164,2555,1,0,0,0,166,2562,1,0,0,0,168,2564,1,0,0,0,170,2573, + 1,0,0,0,172,2576,1,0,0,0,174,2580,1,0,0,0,176,2584,1,0,0,0,178,2609, + 1,0,0,0,180,2619,1,0,0,0,182,2633,1,0,0,0,184,2649,1,0,0,0,186,2655, + 1,0,0,0,188,2682,1,0,0,0,190,2692,1,0,0,0,192,2708,1,0,0,0,194,2752, + 1,0,0,0,196,2759,1,0,0,0,198,2761,1,0,0,0,200,2787,1,0,0,0,202,2798, + 1,0,0,0,204,2817,1,0,0,0,206,2828,1,0,0,0,208,2866,1,0,0,0,210,2887, + 1,0,0,0,212,2889,1,0,0,0,214,2909,1,0,0,0,216,2921,1,0,0,0,218,2933, + 1,0,0,0,220,2936,1,0,0,0,222,2939,1,0,0,0,224,2959,1,0,0,0,226,2964, + 1,0,0,0,228,3013,1,0,0,0,230,3015,1,0,0,0,232,3038,1,0,0,0,234,3054, + 1,0,0,0,236,3066,1,0,0,0,238,3093,1,0,0,0,240,3108,1,0,0,0,242,3171, + 1,0,0,0,244,3173,1,0,0,0,246,3178,1,0,0,0,248,3184,1,0,0,0,250,3271, + 1,0,0,0,252,3277,1,0,0,0,254,3279,1,0,0,0,256,3295,1,0,0,0,258,3297, + 1,0,0,0,260,3306,1,0,0,0,262,3310,1,0,0,0,264,3323,1,0,0,0,266,3335, + 1,0,0,0,268,3337,1,0,0,0,270,3359,1,0,0,0,272,3371,1,0,0,0,274,3382, + 1,0,0,0,276,3473,1,0,0,0,278,3475,1,0,0,0,280,3486,1,0,0,0,282,3497, + 1,0,0,0,284,3499,1,0,0,0,286,3525,1,0,0,0,288,3527,1,0,0,0,290,3531, + 1,0,0,0,292,3581,1,0,0,0,294,3583,1,0,0,0,296,3589,1,0,0,0,298,3614, + 1,0,0,0,300,3618,1,0,0,0,302,3832,1,0,0,0,304,3850,1,0,0,0,306,3876, + 1,0,0,0,308,3878,1,0,0,0,310,3886,1,0,0,0,312,3892,1,0,0,0,314,3896, + 1,0,0,0,316,3916,1,0,0,0,318,3922,1,0,0,0,320,3989,1,0,0,0,322,4020, + 1,0,0,0,324,4066,1,0,0,0,326,4068,1,0,0,0,328,4070,1,0,0,0,330,4081, + 1,0,0,0,332,4118,1,0,0,0,334,4120,1,0,0,0,336,4126,1,0,0,0,338,4176, + 1,0,0,0,340,4179,1,0,0,0,342,4193,1,0,0,0,344,4214,1,0,0,0,346,4238, + 1,0,0,0,348,4279,1,0,0,0,350,4281,1,0,0,0,352,4283,1,0,0,0,354,4323, + 1,0,0,0,356,4340,1,0,0,0,358,4360,1,0,0,0,360,4413,1,0,0,0,362,4416, + 1,0,0,0,364,4422,1,0,0,0,366,4430,1,0,0,0,368,4443,1,0,0,0,370,4445, + 1,0,0,0,372,4458,1,0,0,0,374,4460,1,0,0,0,376,4473,1,0,0,0,378,4483, + 1,0,0,0,380,4494,1,0,0,0,382,4505,1,0,0,0,384,4507,1,0,0,0,386,4512, + 1,0,0,0,388,4526,1,0,0,0,390,4558,1,0,0,0,392,4595,1,0,0,0,394,4597, + 1,0,0,0,396,4600,1,0,0,0,398,4603,1,0,0,0,400,4620,1,0,0,0,402,4641, + 1,0,0,0,404,4657,1,0,0,0,406,4673,1,0,0,0,408,4695,1,0,0,0,410,4700, + 1,0,0,0,412,4703,1,0,0,0,414,4711,1,0,0,0,416,4736,1,0,0,0,418,4739, + 1,0,0,0,420,4767,1,0,0,0,422,4772,1,0,0,0,424,4812,1,0,0,0,426,5024, + 1,0,0,0,428,5026,1,0,0,0,430,5114,1,0,0,0,432,5116,1,0,0,0,434,5122, + 1,0,0,0,436,5133,1,0,0,0,438,5143,1,0,0,0,440,5223,1,0,0,0,442,5225, + 1,0,0,0,444,5239,1,0,0,0,446,5261,1,0,0,0,448,5334,1,0,0,0,450,5336, + 1,0,0,0,452,5377,1,0,0,0,454,5379,1,0,0,0,456,5384,1,0,0,0,458,5387, + 1,0,0,0,460,5390,1,0,0,0,462,5440,1,0,0,0,464,5442,1,0,0,0,466,5453, + 1,0,0,0,468,5455,1,0,0,0,470,5465,1,0,0,0,472,5500,1,0,0,0,474,5503, + 1,0,0,0,476,5524,1,0,0,0,478,5534,1,0,0,0,480,5554,1,0,0,0,482,5560, + 1,0,0,0,484,5566,1,0,0,0,486,5571,1,0,0,0,488,5584,1,0,0,0,490,5611, + 1,0,0,0,492,5659,1,0,0,0,494,5661,1,0,0,0,496,5699,1,0,0,0,498,5701, + 1,0,0,0,500,5722,1,0,0,0,502,5742,1,0,0,0,504,5746,1,0,0,0,506,5761, + 1,0,0,0,508,5763,1,0,0,0,510,5767,1,0,0,0,512,5771,1,0,0,0,514,5779, + 1,0,0,0,516,5803,1,0,0,0,518,5805,1,0,0,0,520,5816,1,0,0,0,522,5824, + 1,0,0,0,524,5840,1,0,0,0,526,5865,1,0,0,0,528,5867,1,0,0,0,530,5871, + 1,0,0,0,532,5880,1,0,0,0,534,5920,1,0,0,0,536,5931,1,0,0,0,538,5939, + 1,0,0,0,540,5942,1,0,0,0,542,5946,1,0,0,0,544,5961,1,0,0,0,546,5986, + 1,0,0,0,548,6001,1,0,0,0,550,6027,1,0,0,0,552,6029,1,0,0,0,554,6052, + 1,0,0,0,556,6054,1,0,0,0,558,6062,1,0,0,0,560,6080,1,0,0,0,562,6104, + 1,0,0,0,564,6116,1,0,0,0,566,6120,1,0,0,0,568,6132,1,0,0,0,570,6152, + 1,0,0,0,572,6160,1,0,0,0,574,6174,1,0,0,0,576,6197,1,0,0,0,578,6199, + 1,0,0,0,580,6204,1,0,0,0,582,6214,1,0,0,0,584,6235,1,0,0,0,586,6237, + 1,0,0,0,588,6246,1,0,0,0,590,6257,1,0,0,0,592,6267,1,0,0,0,594,6269, + 1,0,0,0,596,6276,1,0,0,0,598,6307,1,0,0,0,600,6337,1,0,0,0,602,6339, + 1,0,0,0,604,6348,1,0,0,0,606,6351,1,0,0,0,608,6409,1,0,0,0,610,6444, + 1,0,0,0,612,6447,1,0,0,0,614,6468,1,0,0,0,616,6470,1,0,0,0,618,6478, + 1,0,0,0,620,6495,1,0,0,0,622,6521,1,0,0,0,624,6523,1,0,0,0,626,6531, + 1,0,0,0,628,6538,1,0,0,0,630,6562,1,0,0,0,632,6568,1,0,0,0,634,6576, + 1,0,0,0,636,6579,1,0,0,0,638,6586,1,0,0,0,640,6594,1,0,0,0,642,6599, + 1,0,0,0,644,6629,1,0,0,0,646,6656,1,0,0,0,648,6684,1,0,0,0,650,6701, + 1,0,0,0,652,6707,1,0,0,0,654,6725,1,0,0,0,656,6727,1,0,0,0,658,6731, + 1,0,0,0,660,6748,1,0,0,0,662,6753,1,0,0,0,664,6791,1,0,0,0,666,6793, + 1,0,0,0,668,6797,1,0,0,0,670,6799,1,0,0,0,672,6808,1,0,0,0,674,6892, + 1,0,0,0,676,6898,1,0,0,0,678,7007,1,0,0,0,680,7039,1,0,0,0,682,7090, + 1,0,0,0,684,7094,1,0,0,0,686,7270,1,0,0,0,688,7272,1,0,0,0,690,7280, + 1,0,0,0,692,7285,1,0,0,0,694,7287,1,0,0,0,696,7295,1,0,0,0,698,7298, + 1,0,0,0,700,7307,1,0,0,0,702,7310,1,0,0,0,704,7314,1,0,0,0,706,7319, + 1,0,0,0,708,7336,1,0,0,0,710,7363,1,0,0,0,712,7372,1,0,0,0,714,7374, + 1,0,0,0,716,7381,1,0,0,0,718,7385,1,0,0,0,720,7387,1,0,0,0,722,7395, + 1,0,0,0,724,7403,1,0,0,0,726,7410,1,0,0,0,728,7412,1,0,0,0,730,7420, + 1,0,0,0,732,7422,1,0,0,0,734,7429,1,0,0,0,736,7433,1,0,0,0,738,7435, + 1,0,0,0,740,7450,1,0,0,0,742,7452,1,0,0,0,744,7474,1,0,0,0,746,7476, + 1,0,0,0,748,7499,1,0,0,0,750,7501,1,0,0,0,752,7523,1,0,0,0,754,7526, + 1,0,0,0,756,7533,1,0,0,0,758,7536,1,0,0,0,760,7556,1,0,0,0,762,7563, + 1,0,0,0,764,7568,1,0,0,0,766,7576,1,0,0,0,768,7584,1,0,0,0,770,7592, + 1,0,0,0,772,7600,1,0,0,0,774,7602,1,0,0,0,776,7604,1,0,0,0,778,7606, + 1,0,0,0,780,7608,1,0,0,0,782,7610,1,0,0,0,784,7612,1,0,0,0,786,7616, + 1,0,0,0,788,7624,1,0,0,0,790,7632,1,0,0,0,792,7634,1,0,0,0,794,7636, + 1,0,0,0,796,7638,1,0,0,0,798,7640,1,0,0,0,800,7646,1,0,0,0,802,7652, + 1,0,0,0,804,7658,1,0,0,0,806,7660,1,0,0,0,808,7663,1,0,0,0,810,7669, + 1,0,0,0,812,7675,1,0,0,0,814,7677,1,0,0,0,816,7693,1,0,0,0,818,7696, + 1,0,0,0,820,7705,1,0,0,0,822,7707,1,0,0,0,824,7717,1,0,0,0,826,7721, + 1,0,0,0,828,7726,1,0,0,0,830,7732,1,0,0,0,832,7745,1,0,0,0,834,7747, + 1,0,0,0,836,7800,1,0,0,0,838,7802,1,0,0,0,840,7804,1,0,0,0,842,7807, + 1,0,0,0,844,7835,1,0,0,0,846,7839,1,0,0,0,848,7890,1,0,0,0,850,7893, + 1,0,0,0,852,7919,1,0,0,0,854,7921,1,0,0,0,856,7944,1,0,0,0,858,7946, + 1,0,0,0,860,7951,1,0,0,0,862,7966,1,0,0,0,864,7972,1,0,0,0,866,7983, + 1,0,0,0,868,8013,1,0,0,0,870,8020,1,0,0,0,872,8045,1,0,0,0,874,8055, + 1,0,0,0,876,8082,1,0,0,0,878,8095,1,0,0,0,880,8105,1,0,0,0,882,8124, + 1,0,0,0,884,8156,1,0,0,0,886,8160,1,0,0,0,888,8168,1,0,0,0,890,8182, + 1,0,0,0,892,8188,1,0,0,0,894,8209,1,0,0,0,896,8215,1,0,0,0,898,8254, + 1,0,0,0,900,8258,1,0,0,0,902,8284,1,0,0,0,904,8286,1,0,0,0,906,8294, + 1,0,0,0,908,8334,1,0,0,0,910,8368,1,0,0,0,912,8370,1,0,0,0,914,8381, + 1,0,0,0,916,8418,1,0,0,0,918,8422,1,0,0,0,920,8424,1,0,0,0,922,8428, + 1,0,0,0,924,8431,1,0,0,0,926,8453,1,0,0,0,928,8457,1,0,0,0,930,8459, + 1,0,0,0,932,8483,1,0,0,0,934,8487,1,0,0,0,936,8490,1,0,0,0,938,940, + 3,2,1,0,939,938,1,0,0,0,940,943,1,0,0,0,941,939,1,0,0,0,941,942, + 1,0,0,0,942,944,1,0,0,0,943,941,1,0,0,0,944,945,5,0,0,1,945,1,1, + 0,0,0,946,948,3,4,2,0,947,949,5,7,0,0,948,947,1,0,0,0,948,949,1, + 0,0,0,949,3,1,0,0,0,950,1071,3,272,136,0,951,1071,3,482,241,0,952, + 1071,3,478,239,0,953,1071,3,480,240,0,954,1071,3,346,173,0,955,1071, + 3,488,244,0,956,1071,3,286,143,0,957,1071,3,204,102,0,958,1071,3, + 206,103,0,959,1071,3,212,106,0,960,1071,3,226,113,0,961,1071,3,398, + 199,0,962,1071,3,28,14,0,963,1071,3,428,214,0,964,1071,3,430,215, + 0,965,1071,3,440,220,0,966,1071,3,432,216,0,967,1071,3,438,219,0, + 968,1071,3,238,119,0,969,1071,3,240,120,0,970,1071,3,192,96,0,971, + 1071,3,484,242,0,972,1071,3,76,38,0,973,1071,3,424,212,0,974,1071, + 3,100,50,0,975,1071,3,444,222,0,976,1071,3,18,9,0,977,1071,3,20, + 10,0,978,1071,3,16,8,0,979,1071,3,448,224,0,980,1071,3,178,89,0, + 981,1071,3,492,246,0,982,1071,3,490,245,0,983,1071,3,234,117,0,984, + 1071,3,500,250,0,985,1071,3,6,3,0,986,1071,3,72,36,0,987,1071,3, + 104,52,0,988,1071,3,496,248,0,989,1071,3,318,159,0,990,1071,3,70, + 35,0,991,1071,3,106,53,0,992,1071,3,248,124,0,993,1071,3,180,90, + 0,994,1071,3,274,137,0,995,1071,3,414,207,0,996,1071,3,494,247,0, + 997,1071,3,486,243,0,998,1071,3,202,101,0,999,1071,3,208,104,0,1000, + 1071,3,222,111,0,1001,1071,3,228,114,0,1002,1071,3,358,179,0,1003, + 1071,3,26,13,0,1004,1071,3,186,93,0,1005,1071,3,290,145,0,1006,1071, + 3,294,147,0,1007,1071,3,442,221,0,1008,1071,3,296,148,0,1009,1071, + 3,236,118,0,1010,1071,3,198,99,0,1011,1071,3,30,15,0,1012,1071,3, + 190,95,0,1013,1071,3,114,57,0,1014,1071,3,446,223,0,1015,1071,3, + 176,88,0,1016,1071,3,200,100,0,1017,1071,3,418,209,0,1018,1071,3, + 250,125,0,1019,1071,3,268,134,0,1020,1071,3,8,4,0,1021,1071,3,14, + 7,0,1022,1071,3,232,116,0,1023,1071,3,474,237,0,1024,1071,3,530, + 265,0,1025,1071,3,552,276,0,1026,1071,3,276,138,0,1027,1071,3,542, + 271,0,1028,1071,3,74,37,0,1029,1071,3,412,206,0,1030,1071,3,302, + 151,0,1031,1071,3,526,263,0,1032,1071,3,514,257,0,1033,1071,3,322, + 161,0,1034,1071,3,328,164,0,1035,1071,3,342,171,0,1036,1071,3,906, + 453,0,1037,1071,3,230,115,0,1038,1071,3,352,176,0,1039,1071,3,532, + 266,0,1040,1071,3,458,229,0,1041,1071,3,188,94,0,1042,1071,3,472, + 236,0,1043,1071,3,544,272,0,1044,1071,3,454,227,0,1045,1071,3,520, + 260,0,1046,1071,3,300,150,0,1047,1071,3,422,211,0,1048,1071,3,402, + 201,0,1049,1071,3,400,200,0,1050,1071,3,404,202,0,1051,1071,3,426, + 213,0,1052,1071,3,330,165,0,1053,1071,3,344,172,0,1054,1071,3,450, + 225,0,1055,1071,3,320,160,0,1056,1071,3,554,277,0,1057,1071,3,462, + 231,0,1058,1071,3,314,157,0,1059,1071,3,460,230,0,1060,1071,3,546, + 273,0,1061,1071,3,498,249,0,1062,1071,3,60,30,0,1063,1071,3,36,18, + 0,1064,1071,3,68,34,0,1065,1071,3,470,235,0,1066,1068,5,583,0,0, + 1067,1069,5,584,0,0,1068,1067,1,0,0,0,1068,1069,1,0,0,0,1069,1071, + 1,0,0,0,1070,950,1,0,0,0,1070,951,1,0,0,0,1070,952,1,0,0,0,1070, + 953,1,0,0,0,1070,954,1,0,0,0,1070,955,1,0,0,0,1070,956,1,0,0,0,1070, + 957,1,0,0,0,1070,958,1,0,0,0,1070,959,1,0,0,0,1070,960,1,0,0,0,1070, + 961,1,0,0,0,1070,962,1,0,0,0,1070,963,1,0,0,0,1070,964,1,0,0,0,1070, + 965,1,0,0,0,1070,966,1,0,0,0,1070,967,1,0,0,0,1070,968,1,0,0,0,1070, + 969,1,0,0,0,1070,970,1,0,0,0,1070,971,1,0,0,0,1070,972,1,0,0,0,1070, + 973,1,0,0,0,1070,974,1,0,0,0,1070,975,1,0,0,0,1070,976,1,0,0,0,1070, + 977,1,0,0,0,1070,978,1,0,0,0,1070,979,1,0,0,0,1070,980,1,0,0,0,1070, + 981,1,0,0,0,1070,982,1,0,0,0,1070,983,1,0,0,0,1070,984,1,0,0,0,1070, + 985,1,0,0,0,1070,986,1,0,0,0,1070,987,1,0,0,0,1070,988,1,0,0,0,1070, + 989,1,0,0,0,1070,990,1,0,0,0,1070,991,1,0,0,0,1070,992,1,0,0,0,1070, + 993,1,0,0,0,1070,994,1,0,0,0,1070,995,1,0,0,0,1070,996,1,0,0,0,1070, + 997,1,0,0,0,1070,998,1,0,0,0,1070,999,1,0,0,0,1070,1000,1,0,0,0, + 1070,1001,1,0,0,0,1070,1002,1,0,0,0,1070,1003,1,0,0,0,1070,1004, + 1,0,0,0,1070,1005,1,0,0,0,1070,1006,1,0,0,0,1070,1007,1,0,0,0,1070, + 1008,1,0,0,0,1070,1009,1,0,0,0,1070,1010,1,0,0,0,1070,1011,1,0,0, + 0,1070,1012,1,0,0,0,1070,1013,1,0,0,0,1070,1014,1,0,0,0,1070,1015, + 1,0,0,0,1070,1016,1,0,0,0,1070,1017,1,0,0,0,1070,1018,1,0,0,0,1070, + 1019,1,0,0,0,1070,1020,1,0,0,0,1070,1021,1,0,0,0,1070,1022,1,0,0, + 0,1070,1023,1,0,0,0,1070,1024,1,0,0,0,1070,1025,1,0,0,0,1070,1026, + 1,0,0,0,1070,1027,1,0,0,0,1070,1028,1,0,0,0,1070,1029,1,0,0,0,1070, + 1030,1,0,0,0,1070,1031,1,0,0,0,1070,1032,1,0,0,0,1070,1033,1,0,0, + 0,1070,1034,1,0,0,0,1070,1035,1,0,0,0,1070,1036,1,0,0,0,1070,1037, + 1,0,0,0,1070,1038,1,0,0,0,1070,1039,1,0,0,0,1070,1040,1,0,0,0,1070, + 1041,1,0,0,0,1070,1042,1,0,0,0,1070,1043,1,0,0,0,1070,1044,1,0,0, + 0,1070,1045,1,0,0,0,1070,1046,1,0,0,0,1070,1047,1,0,0,0,1070,1048, + 1,0,0,0,1070,1049,1,0,0,0,1070,1050,1,0,0,0,1070,1051,1,0,0,0,1070, + 1052,1,0,0,0,1070,1053,1,0,0,0,1070,1054,1,0,0,0,1070,1055,1,0,0, + 0,1070,1056,1,0,0,0,1070,1057,1,0,0,0,1070,1058,1,0,0,0,1070,1059, + 1,0,0,0,1070,1060,1,0,0,0,1070,1061,1,0,0,0,1070,1062,1,0,0,0,1070, + 1063,1,0,0,0,1070,1064,1,0,0,0,1070,1065,1,0,0,0,1070,1066,1,0,0, + 0,1071,5,1,0,0,0,1072,1073,5,433,0,0,1073,1074,3,680,340,0,1074, + 7,1,0,0,0,1075,1076,5,46,0,0,1076,1077,5,318,0,0,1077,1079,3,820, + 410,0,1078,1080,5,105,0,0,1079,1078,1,0,0,0,1079,1080,1,0,0,0,1080, + 1084,1,0,0,0,1081,1083,3,12,6,0,1082,1081,1,0,0,0,1083,1086,1,0, + 0,0,1084,1082,1,0,0,0,1084,1085,1,0,0,0,1085,9,1,0,0,0,1086,1084, + 1,0,0,0,1087,1090,5,287,0,0,1088,1091,3,814,407,0,1089,1091,5,78, + 0,0,1090,1088,1,0,0,0,1090,1089,1,0,0,0,1091,1126,1,0,0,0,1092,1093, + 7,0,0,0,1093,1094,5,287,0,0,1094,1126,3,814,407,0,1095,1126,5,228, + 0,0,1096,1126,5,229,0,0,1097,1126,5,236,0,0,1098,1126,5,237,0,0, + 1099,1126,5,234,0,0,1100,1126,5,235,0,0,1101,1126,5,232,0,0,1102, + 1126,5,233,0,0,1103,1126,5,230,0,0,1104,1126,5,231,0,0,1105,1126, + 5,535,0,0,1106,1126,5,536,0,0,1107,1126,5,537,0,0,1108,1126,5,538, + 0,0,1109,1126,5,539,0,0,1110,1126,5,540,0,0,1111,1112,5,164,0,0, + 1112,1113,5,74,0,0,1113,1126,3,818,409,0,1114,1115,5,371,0,0,1115, + 1116,5,368,0,0,1116,1126,3,814,407,0,1117,1118,5,68,0,0,1118,1119, + 7,1,0,0,1119,1126,3,788,394,0,1120,1121,7,2,0,0,1121,1126,3,822, + 411,0,1122,1123,5,134,0,0,1123,1126,3,788,394,0,1124,1126,3,832, + 416,0,1125,1087,1,0,0,0,1125,1092,1,0,0,0,1125,1095,1,0,0,0,1125, + 1096,1,0,0,0,1125,1097,1,0,0,0,1125,1098,1,0,0,0,1125,1099,1,0,0, + 0,1125,1100,1,0,0,0,1125,1101,1,0,0,0,1125,1102,1,0,0,0,1125,1103, + 1,0,0,0,1125,1104,1,0,0,0,1125,1105,1,0,0,0,1125,1106,1,0,0,0,1125, + 1107,1,0,0,0,1125,1108,1,0,0,0,1125,1109,1,0,0,0,1125,1110,1,0,0, + 0,1125,1111,1,0,0,0,1125,1114,1,0,0,0,1125,1117,1,0,0,0,1125,1120, + 1,0,0,0,1125,1122,1,0,0,0,1125,1124,1,0,0,0,1126,11,1,0,0,0,1127, + 1136,3,10,5,0,1128,1129,5,348,0,0,1129,1136,5,574,0,0,1130,1131, + 7,3,0,0,1131,1136,3,822,411,0,1132,1133,5,68,0,0,1133,1134,7,1,0, + 0,1134,1136,3,822,411,0,1135,1127,1,0,0,0,1135,1128,1,0,0,0,1135, + 1130,1,0,0,0,1135,1132,1,0,0,0,1136,13,1,0,0,0,1137,1138,5,46,0, + 0,1138,1139,5,99,0,0,1139,1141,3,820,410,0,1140,1142,5,105,0,0,1141, + 1140,1,0,0,0,1141,1142,1,0,0,0,1142,1146,1,0,0,0,1143,1145,3,12, + 6,0,1144,1143,1,0,0,0,1145,1148,1,0,0,0,1146,1144,1,0,0,0,1146,1147, + 1,0,0,0,1147,15,1,0,0,0,1148,1146,1,0,0,0,1149,1150,5,138,0,0,1150, + 1151,7,2,0,0,1151,1153,3,820,410,0,1152,1154,5,105,0,0,1153,1152, + 1,0,0,0,1153,1154,1,0,0,0,1154,1158,1,0,0,0,1155,1157,3,10,5,0,1156, + 1155,1,0,0,0,1157,1160,1,0,0,0,1158,1156,1,0,0,0,1158,1159,1,0,0, + 0,1159,17,1,0,0,0,1160,1158,1,0,0,0,1161,1162,5,138,0,0,1162,1165, + 7,2,0,0,1163,1166,5,30,0,0,1164,1166,3,820,410,0,1165,1163,1,0,0, + 0,1165,1164,1,0,0,0,1166,1167,1,0,0,0,1167,1168,5,68,0,0,1168,1169, + 5,175,0,0,1169,1170,3,792,396,0,1170,1171,3,64,32,0,1171,19,1,0, + 0,0,1172,1173,5,138,0,0,1173,1174,5,442,0,0,1174,1176,3,798,399, + 0,1175,1177,3,362,181,0,1176,1175,1,0,0,0,1176,1177,1,0,0,0,1177, + 1178,1,0,0,0,1178,1179,3,22,11,0,1179,21,1,0,0,0,1180,1184,3,24, + 12,0,1181,1183,3,24,12,0,1182,1181,1,0,0,0,1183,1186,1,0,0,0,1184, + 1182,1,0,0,0,1184,1185,1,0,0,0,1185,1188,1,0,0,0,1186,1184,1,0,0, + 0,1187,1189,5,315,0,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1207, + 1,0,0,0,1190,1191,5,309,0,0,1191,1192,5,94,0,0,1192,1207,3,796,398, + 0,1193,1194,5,282,0,0,1194,1195,5,94,0,0,1195,1207,3,820,410,0,1196, + 1197,5,333,0,0,1197,1198,5,323,0,0,1198,1207,3,32,16,0,1199,1201, + 5,269,0,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201,1202,1,0,0,0, + 1202,1203,5,462,0,0,1203,1204,5,80,0,0,1204,1205,5,204,0,0,1205, + 1207,3,824,412,0,1206,1180,1,0,0,0,1206,1190,1,0,0,0,1206,1193,1, + 0,0,0,1206,1196,1,0,0,0,1206,1200,1,0,0,0,1207,23,1,0,0,0,1208,1251, + 5,222,0,0,1209,1251,5,338,0,0,1210,1251,5,377,0,0,1211,1213,5,77, + 0,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0,1214,1251, + 5,250,0,0,1215,1217,5,205,0,0,1216,1215,1,0,0,0,1216,1217,1,0,0, + 0,1217,1218,1,0,0,0,1218,1219,5,327,0,0,1219,1226,5,243,0,0,1220, + 1222,5,205,0,0,1221,1220,1,0,0,0,1221,1222,1,0,0,0,1222,1223,1,0, + 0,0,1223,1224,5,327,0,0,1224,1226,5,181,0,0,1225,1216,1,0,0,0,1225, + 1221,1,0,0,0,1226,1251,1,0,0,0,1227,1228,5,460,0,0,1228,1251,7,4, + 0,0,1229,1230,5,170,0,0,1230,1251,3,830,415,0,1231,1232,5,320,0, + 0,1232,1251,3,824,412,0,1233,1234,5,333,0,0,1234,1235,3,824,412, + 0,1235,1238,7,5,0,0,1236,1239,3,824,412,0,1237,1239,5,53,0,0,1238, + 1236,1,0,0,0,1238,1237,1,0,0,0,1239,1251,1,0,0,0,1240,1241,5,333, + 0,0,1241,1242,3,824,412,0,1242,1243,5,64,0,0,1243,1244,5,434,0,0, + 1244,1251,1,0,0,0,1245,1248,5,313,0,0,1246,1249,3,824,412,0,1247, + 1249,5,30,0,0,1248,1246,1,0,0,0,1248,1247,1,0,0,0,1249,1251,1,0, + 0,0,1250,1208,1,0,0,0,1250,1209,1,0,0,0,1250,1210,1,0,0,0,1250,1212, + 1,0,0,0,1250,1225,1,0,0,0,1250,1227,1,0,0,0,1250,1229,1,0,0,0,1250, + 1231,1,0,0,0,1250,1233,1,0,0,0,1250,1240,1,0,0,0,1250,1245,1,0,0, + 0,1251,25,1,0,0,0,1252,1253,5,46,0,0,1253,1254,5,66,0,0,1254,1256, + 3,820,410,0,1255,1257,5,105,0,0,1256,1255,1,0,0,0,1256,1257,1,0, + 0,0,1257,1261,1,0,0,0,1258,1260,3,12,6,0,1259,1258,1,0,0,0,1260, + 1263,1,0,0,0,1261,1259,1,0,0,0,1261,1262,1,0,0,0,1262,27,1,0,0,0, + 1263,1261,1,0,0,0,1264,1265,5,138,0,0,1265,1266,5,66,0,0,1266,1267, + 3,820,410,0,1267,1268,7,6,0,0,1268,1269,5,99,0,0,1269,1270,3,822, + 411,0,1270,29,1,0,0,0,1271,1272,5,46,0,0,1272,1274,5,323,0,0,1273, + 1275,3,288,144,0,1274,1273,1,0,0,0,1274,1275,1,0,0,0,1275,1282,1, + 0,0,0,1276,1278,3,32,16,0,1277,1276,1,0,0,0,1277,1278,1,0,0,0,1278, + 1279,1,0,0,0,1279,1280,5,106,0,0,1280,1283,3,820,410,0,1281,1283, + 3,32,16,0,1282,1277,1,0,0,0,1282,1281,1,0,0,0,1283,1287,1,0,0,0, + 1284,1286,3,34,17,0,1285,1284,1,0,0,0,1286,1289,1,0,0,0,1287,1285, + 1,0,0,0,1287,1288,1,0,0,0,1288,31,1,0,0,0,1289,1287,1,0,0,0,1290, + 1291,3,310,155,0,1291,33,1,0,0,0,1292,1299,3,114,57,0,1293,1299, + 3,352,176,0,1294,1299,3,190,95,0,1295,1299,3,250,125,0,1296,1299, + 3,328,164,0,1297,1299,3,470,235,0,1298,1292,1,0,0,0,1298,1293,1, + 0,0,0,1298,1294,1,0,0,0,1298,1295,1,0,0,0,1298,1296,1,0,0,0,1298, + 1297,1,0,0,0,1299,35,1,0,0,0,1300,1302,5,333,0,0,1301,1303,7,7,0, + 0,1302,1301,1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1305, + 3,38,19,0,1305,37,1,0,0,0,1306,1307,5,356,0,0,1307,1315,3,468,234, + 0,1308,1309,5,332,0,0,1309,1310,5,154,0,0,1310,1311,5,36,0,0,1311, + 1312,5,356,0,0,1312,1315,3,468,234,0,1313,1315,3,42,21,0,1314,1306, + 1,0,0,0,1314,1308,1,0,0,0,1314,1313,1,0,0,0,1315,39,1,0,0,0,1316, + 1319,5,30,0,0,1317,1319,3,44,22,0,1318,1316,1,0,0,0,1318,1317,1, + 0,0,0,1319,1321,1,0,0,0,1320,1322,7,5,0,0,1321,1320,1,0,0,0,1321, + 1322,1,0,0,0,1322,1325,1,0,0,0,1323,1326,5,53,0,0,1324,1326,3,46, + 23,0,1325,1323,1,0,0,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326, + 41,1,0,0,0,1327,1328,5,418,0,0,1328,1329,5,386,0,0,1329,1356,3,56, + 28,0,1330,1331,5,152,0,0,1331,1356,3,814,407,0,1332,1333,5,323,0, + 0,1333,1356,3,794,397,0,1334,1337,5,267,0,0,1335,1338,3,814,407, + 0,1336,1338,5,53,0,0,1337,1335,1,0,0,0,1337,1336,1,0,0,0,1337,1338, + 1,0,0,0,1338,1356,1,0,0,0,1339,1340,5,318,0,0,1340,1356,3,58,29, + 0,1341,1342,5,332,0,0,1342,1343,5,106,0,0,1343,1356,3,58,29,0,1344, + 1345,5,383,0,0,1345,1346,5,279,0,0,1346,1356,3,692,346,0,1347,1348, + 5,356,0,0,1348,1349,5,337,0,0,1349,1356,3,814,407,0,1350,1351,3, + 44,22,0,1351,1352,5,64,0,0,1352,1353,5,434,0,0,1353,1356,1,0,0,0, + 1354,1356,3,40,20,0,1355,1327,1,0,0,0,1355,1330,1,0,0,0,1355,1332, + 1,0,0,0,1355,1334,1,0,0,0,1355,1339,1,0,0,0,1355,1341,1,0,0,0,1355, + 1344,1,0,0,0,1355,1347,1,0,0,0,1355,1350,1,0,0,0,1355,1354,1,0,0, + 0,1356,43,1,0,0,0,1357,1362,3,824,412,0,1358,1359,5,11,0,0,1359, + 1361,3,824,412,0,1360,1358,1,0,0,0,1361,1364,1,0,0,0,1362,1360,1, + 0,0,0,1362,1363,1,0,0,0,1363,45,1,0,0,0,1364,1362,1,0,0,0,1365,1370, + 3,48,24,0,1366,1367,5,6,0,0,1367,1369,3,48,24,0,1368,1366,1,0,0, + 0,1369,1372,1,0,0,0,1370,1368,1,0,0,0,1370,1371,1,0,0,0,1371,47, + 1,0,0,0,1372,1370,1,0,0,0,1373,1376,3,54,27,0,1374,1376,3,196,98, + 0,1375,1373,1,0,0,0,1375,1374,1,0,0,0,1376,49,1,0,0,0,1377,1378, + 5,300,0,0,1378,1383,7,8,0,0,1379,1380,5,310,0,0,1380,1383,5,300, + 0,0,1381,1383,5,330,0,0,1382,1377,1,0,0,0,1382,1379,1,0,0,0,1382, + 1381,1,0,0,0,1383,51,1,0,0,0,1384,1391,5,96,0,0,1385,1391,5,60,0, + 0,1386,1391,5,80,0,0,1387,1391,3,804,402,0,1388,1391,3,838,419,0, + 1389,1391,3,814,407,0,1390,1384,1,0,0,0,1390,1385,1,0,0,0,1390,1386, + 1,0,0,0,1390,1387,1,0,0,0,1390,1388,1,0,0,0,1390,1389,1,0,0,0,1391, + 53,1,0,0,0,1392,1397,5,96,0,0,1393,1397,5,60,0,0,1394,1397,5,80, + 0,0,1395,1397,3,58,29,0,1396,1392,1,0,0,0,1396,1393,1,0,0,0,1396, + 1394,1,0,0,0,1396,1395,1,0,0,0,1397,55,1,0,0,0,1398,1413,3,814,407, + 0,1399,1413,5,53,0,0,1400,1413,3,832,416,0,1401,1402,5,403,0,0,1402, + 1404,3,814,407,0,1403,1405,3,664,332,0,1404,1403,1,0,0,0,1404,1405, + 1,0,0,0,1405,1413,1,0,0,0,1406,1407,5,403,0,0,1407,1408,3,656,328, + 0,1408,1409,3,814,407,0,1409,1413,1,0,0,0,1410,1413,3,196,98,0,1411, + 1413,5,254,0,0,1412,1398,1,0,0,0,1412,1399,1,0,0,0,1412,1400,1,0, + 0,0,1412,1401,1,0,0,0,1412,1406,1,0,0,0,1412,1410,1,0,0,0,1412,1411, + 1,0,0,0,1413,57,1,0,0,0,1414,1417,3,828,414,0,1415,1417,3,814,407, + 0,1416,1414,1,0,0,0,1416,1415,1,0,0,0,1417,59,1,0,0,0,1418,1419, + 5,313,0,0,1419,1420,3,62,31,0,1420,61,1,0,0,0,1421,1422,5,418,0, + 0,1422,1431,5,386,0,0,1423,1424,5,356,0,0,1424,1425,5,244,0,0,1425, + 1431,5,251,0,0,1426,1427,5,332,0,0,1427,1431,5,106,0,0,1428,1431, + 5,30,0,0,1429,1431,3,44,22,0,1430,1421,1,0,0,0,1430,1423,1,0,0,0, + 1430,1426,1,0,0,0,1430,1428,1,0,0,0,1430,1429,1,0,0,0,1431,63,1, + 0,0,0,1432,1433,5,333,0,0,1433,1436,3,38,19,0,1434,1436,3,60,30, + 0,1435,1432,1,0,0,0,1435,1434,1,0,0,0,1436,65,1,0,0,0,1437,1438, + 5,333,0,0,1438,1441,3,42,21,0,1439,1441,3,60,30,0,1440,1437,1,0, + 0,0,1440,1439,1,0,0,0,1441,67,1,0,0,0,1442,1452,5,335,0,0,1443,1453, + 3,44,22,0,1444,1445,5,418,0,0,1445,1453,5,386,0,0,1446,1447,5,356, + 0,0,1447,1448,5,244,0,0,1448,1453,5,251,0,0,1449,1450,5,332,0,0, + 1450,1453,5,106,0,0,1451,1453,5,30,0,0,1452,1443,1,0,0,0,1452,1444, + 1,0,0,0,1452,1446,1,0,0,0,1452,1449,1,0,0,0,1452,1451,1,0,0,0,1453, + 69,1,0,0,0,1454,1455,5,333,0,0,1455,1458,5,165,0,0,1456,1459,5,30, + 0,0,1457,1459,3,764,382,0,1458,1456,1,0,0,0,1458,1457,1,0,0,0,1459, + 1460,1,0,0,0,1460,1461,7,9,0,0,1461,71,1,0,0,0,1462,1463,5,155,0, + 0,1463,73,1,0,0,0,1464,1465,5,187,0,0,1465,1466,7,10,0,0,1466,75, + 1,0,0,0,1467,1468,5,138,0,0,1468,1470,5,92,0,0,1469,1471,3,416,208, + 0,1470,1469,1,0,0,0,1470,1471,1,0,0,0,1471,1472,1,0,0,0,1472,1475, + 3,620,310,0,1473,1476,3,78,39,0,1474,1476,3,80,40,0,1475,1473,1, + 0,0,0,1475,1474,1,0,0,0,1476,1585,1,0,0,0,1477,1478,5,138,0,0,1478, + 1479,5,92,0,0,1479,1480,5,30,0,0,1480,1481,5,68,0,0,1481,1485,3, + 170,85,0,1482,1483,5,281,0,0,1483,1484,5,147,0,0,1484,1486,3,822, + 411,0,1485,1482,1,0,0,0,1485,1486,1,0,0,0,1486,1487,1,0,0,0,1487, + 1488,5,333,0,0,1488,1489,5,351,0,0,1489,1491,3,774,387,0,1490,1492, + 5,272,0,0,1491,1490,1,0,0,0,1491,1492,1,0,0,0,1492,1585,1,0,0,0, + 1493,1494,5,138,0,0,1494,1496,5,92,0,0,1495,1497,3,416,208,0,1496, + 1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0,1498,1499,3,778, + 389,0,1499,1500,3,82,41,0,1500,1501,3,98,49,0,1501,1585,1,0,0,0, + 1502,1503,5,138,0,0,1503,1505,5,92,0,0,1504,1506,3,416,208,0,1505, + 1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507,1508,3,778, + 389,0,1508,1509,5,436,0,0,1509,1510,5,285,0,0,1510,1512,3,784,392, + 0,1511,1513,7,11,0,0,1512,1511,1,0,0,0,1512,1513,1,0,0,0,1513,1585, + 1,0,0,0,1514,1515,5,138,0,0,1515,1517,5,226,0,0,1516,1518,3,416, + 208,0,1517,1516,1,0,0,0,1517,1518,1,0,0,0,1518,1519,1,0,0,0,1519, + 1522,3,784,392,0,1520,1523,3,78,39,0,1521,1523,3,82,41,0,1522,1520, + 1,0,0,0,1522,1521,1,0,0,0,1523,1585,1,0,0,0,1524,1525,5,138,0,0, + 1525,1526,5,226,0,0,1526,1527,5,30,0,0,1527,1528,5,68,0,0,1528,1532, + 3,170,85,0,1529,1530,5,281,0,0,1530,1531,5,147,0,0,1531,1533,3,822, + 411,0,1532,1529,1,0,0,0,1532,1533,1,0,0,0,1533,1534,1,0,0,0,1534, + 1535,5,333,0,0,1535,1537,3,170,85,0,1536,1538,5,272,0,0,1537,1536, + 1,0,0,0,1537,1538,1,0,0,0,1538,1585,1,0,0,0,1539,1540,5,138,0,0, + 1540,1542,5,328,0,0,1541,1543,3,416,208,0,1542,1541,1,0,0,0,1542, + 1543,1,0,0,0,1543,1544,1,0,0,0,1544,1545,3,784,392,0,1545,1546,3, + 78,39,0,1546,1585,1,0,0,0,1547,1549,5,138,0,0,1548,1550,5,259,0, + 0,1549,1548,1,0,0,0,1549,1550,1,0,0,0,1550,1551,1,0,0,0,1551,1553, + 5,376,0,0,1552,1554,3,416,208,0,1553,1552,1,0,0,0,1553,1554,1,0, + 0,0,1554,1555,1,0,0,0,1555,1556,3,782,391,0,1556,1557,3,78,39,0, + 1557,1585,1,0,0,0,1558,1559,5,138,0,0,1559,1560,5,259,0,0,1560,1561, + 5,376,0,0,1561,1562,5,30,0,0,1562,1563,5,68,0,0,1563,1567,3,170, + 85,0,1564,1565,5,281,0,0,1565,1566,5,147,0,0,1566,1568,3,822,411, + 0,1567,1564,1,0,0,0,1567,1568,1,0,0,0,1568,1569,1,0,0,0,1569,1570, + 5,333,0,0,1570,1571,5,351,0,0,1571,1573,3,774,387,0,1572,1574,5, + 272,0,0,1573,1572,1,0,0,0,1573,1574,1,0,0,0,1574,1585,1,0,0,0,1575, + 1576,5,138,0,0,1576,1577,5,63,0,0,1577,1579,5,92,0,0,1578,1580,3, + 416,208,0,1579,1578,1,0,0,0,1579,1580,1,0,0,0,1580,1581,1,0,0,0, + 1581,1582,3,620,310,0,1582,1583,3,78,39,0,1583,1585,1,0,0,0,1584, + 1467,1,0,0,0,1584,1477,1,0,0,0,1584,1493,1,0,0,0,1584,1502,1,0,0, + 0,1584,1514,1,0,0,0,1584,1524,1,0,0,0,1584,1539,1,0,0,0,1584,1547, + 1,0,0,0,1584,1558,1,0,0,0,1584,1575,1,0,0,0,1585,77,1,0,0,0,1586, + 1591,3,84,42,0,1587,1588,5,6,0,0,1588,1590,3,84,42,0,1589,1587,1, + 0,0,0,1590,1593,1,0,0,0,1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592, + 79,1,0,0,0,1593,1591,1,0,0,0,1594,1595,3,82,41,0,1595,1596,3,98, + 49,0,1596,1601,1,0,0,0,1597,1598,5,436,0,0,1598,1599,5,285,0,0,1599, + 1601,3,784,392,0,1600,1594,1,0,0,0,1600,1597,1,0,0,0,1601,81,1,0, + 0,0,1602,1603,5,435,0,0,1603,1604,5,285,0,0,1604,1605,3,784,392, + 0,1605,83,1,0,0,0,1606,1609,5,133,0,0,1607,1608,5,45,0,0,1608,1610, + 3,824,412,0,1609,1607,1,0,0,0,1609,1610,1,0,0,0,1610,1611,1,0,0, + 0,1611,1840,3,136,68,0,1612,1613,5,138,0,0,1613,1614,5,45,0,0,1614, + 1618,3,824,412,0,1615,1617,3,266,133,0,1616,1615,1,0,0,0,1617,1620, + 1,0,0,0,1618,1616,1,0,0,0,1618,1619,1,0,0,0,1619,1840,1,0,0,0,1620, + 1618,1,0,0,0,1621,1622,5,372,0,0,1622,1623,5,45,0,0,1623,1840,3, + 824,412,0,1624,1625,5,191,0,0,1625,1627,5,45,0,0,1626,1628,3,416, + 208,0,1627,1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0,0,1629, + 1631,3,824,412,0,1630,1632,3,88,44,0,1631,1630,1,0,0,0,1631,1632, + 1,0,0,0,1632,1840,1,0,0,0,1633,1634,5,333,0,0,1634,1635,5,379,0, + 0,1635,1840,7,12,0,0,1636,1637,5,158,0,0,1637,1638,5,80,0,0,1638, + 1840,3,824,412,0,1639,1640,5,333,0,0,1640,1840,7,13,0,0,1641,1643, + 5,193,0,0,1642,1644,7,14,0,0,1643,1642,1,0,0,0,1643,1644,1,0,0,0, + 1644,1645,1,0,0,0,1645,1840,5,357,0,0,1646,1647,5,186,0,0,1647,1651, + 5,357,0,0,1648,1652,5,30,0,0,1649,1652,5,99,0,0,1650,1652,3,824, + 412,0,1651,1648,1,0,0,0,1651,1649,1,0,0,0,1651,1650,1,0,0,0,1652, + 1840,1,0,0,0,1653,1654,5,193,0,0,1654,1655,7,14,0,0,1655,1656,5, + 321,0,0,1656,1840,3,824,412,0,1657,1658,5,186,0,0,1658,1659,5,321, + 0,0,1659,1840,3,824,412,0,1660,1662,5,269,0,0,1661,1660,1,0,0,0, + 1661,1662,1,0,0,0,1662,1663,1,0,0,0,1663,1664,5,228,0,0,1664,1840, + 3,784,392,0,1665,1666,5,275,0,0,1666,1840,3,310,155,0,1667,1668, + 5,77,0,0,1668,1840,5,275,0,0,1669,1670,5,282,0,0,1670,1671,5,94, + 0,0,1671,1840,3,820,410,0,1672,1673,5,333,0,0,1673,1674,5,351,0, + 0,1674,1840,3,774,387,0,1675,1676,5,312,0,0,1676,1681,5,219,0,0, + 1677,1682,5,270,0,0,1678,1682,5,113,0,0,1679,1682,5,53,0,0,1680, + 1682,3,174,87,0,1681,1677,1,0,0,0,1681,1678,1,0,0,0,1681,1679,1, + 0,0,0,1681,1680,1,0,0,0,1682,1840,1,0,0,0,1683,1690,5,193,0,0,1684, + 1690,5,186,0,0,1685,1687,5,269,0,0,1686,1685,1,0,0,0,1686,1687,1, + 0,0,0,1687,1688,1,0,0,0,1688,1690,5,209,0,0,1689,1683,1,0,0,0,1689, + 1684,1,0,0,0,1689,1686,1,0,0,0,1690,1691,1,0,0,0,1691,1692,5,414, + 0,0,1692,1693,5,251,0,0,1693,1840,5,327,0,0,1694,1696,5,191,0,0, + 1695,1697,5,44,0,0,1696,1695,1,0,0,0,1696,1697,1,0,0,0,1697,1699, + 1,0,0,0,1698,1700,3,416,208,0,1699,1698,1,0,0,0,1699,1700,1,0,0, + 0,1700,1701,1,0,0,0,1701,1703,3,804,402,0,1702,1704,3,88,44,0,1703, + 1702,1,0,0,0,1703,1704,1,0,0,0,1704,1840,1,0,0,0,1705,1707,5,133, + 0,0,1706,1708,5,44,0,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708, + 1710,1,0,0,0,1709,1711,3,288,144,0,1710,1709,1,0,0,0,1710,1711,1, + 0,0,0,1711,1712,1,0,0,0,1712,1840,3,126,63,0,1713,1715,5,138,0,0, + 1714,1716,5,44,0,0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1717, + 1,0,0,0,1717,1720,3,804,402,0,1718,1721,3,86,43,0,1719,1721,3,216, + 108,0,1720,1718,1,0,0,0,1720,1719,1,0,0,0,1721,1840,1,0,0,0,1722, + 1724,5,138,0,0,1723,1725,5,44,0,0,1724,1723,1,0,0,0,1724,1725,1, + 0,0,0,1725,1726,1,0,0,0,1726,1727,3,804,402,0,1727,1728,7,15,0,0, + 1728,1729,5,77,0,0,1729,1730,5,78,0,0,1730,1840,1,0,0,0,1731,1733, + 5,138,0,0,1732,1734,5,44,0,0,1733,1732,1,0,0,0,1733,1734,1,0,0,0, + 1734,1735,1,0,0,0,1735,1736,3,804,402,0,1736,1737,5,191,0,0,1737, + 1739,5,437,0,0,1738,1740,3,416,208,0,1739,1738,1,0,0,0,1739,1740, + 1,0,0,0,1740,1840,1,0,0,0,1741,1743,5,138,0,0,1742,1744,5,44,0,0, + 1743,1742,1,0,0,0,1743,1744,1,0,0,0,1744,1745,1,0,0,0,1745,1746, + 3,804,402,0,1746,1747,5,333,0,0,1747,1748,5,342,0,0,1748,1749,3, + 818,409,0,1749,1840,1,0,0,0,1750,1752,5,138,0,0,1751,1753,5,44,0, + 0,1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753,1754,1,0,0,0,1754,1756, + 3,804,402,0,1755,1750,1,0,0,0,1755,1756,1,0,0,0,1756,1757,1,0,0, + 0,1757,1758,7,16,0,0,1758,1840,3,92,46,0,1759,1761,5,138,0,0,1760, + 1762,5,44,0,0,1761,1760,1,0,0,0,1761,1762,1,0,0,0,1762,1763,1,0, + 0,0,1763,1764,3,804,402,0,1764,1765,5,333,0,0,1765,1766,5,345,0, + 0,1766,1767,3,824,412,0,1767,1840,1,0,0,0,1768,1770,5,138,0,0,1769, + 1771,5,44,0,0,1770,1769,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0, + 0,0,1772,1773,3,804,402,0,1773,1774,5,133,0,0,1774,1775,5,438,0, + 0,1775,1776,3,132,66,0,1776,1777,5,36,0,0,1777,1786,5,219,0,0,1778, + 1780,5,2,0,0,1779,1781,3,194,97,0,1780,1779,1,0,0,0,1781,1782,1, + 0,0,0,1782,1780,1,0,0,0,1782,1783,1,0,0,0,1783,1784,1,0,0,0,1784, + 1785,5,3,0,0,1785,1787,1,0,0,0,1786,1778,1,0,0,0,1786,1787,1,0,0, + 0,1787,1840,1,0,0,0,1788,1790,5,138,0,0,1789,1791,5,44,0,0,1790, + 1789,1,0,0,0,1790,1791,1,0,0,0,1791,1792,1,0,0,0,1792,1806,3,804, + 402,0,1793,1798,5,314,0,0,1794,1796,5,105,0,0,1795,1794,1,0,0,0, + 1795,1796,1,0,0,0,1796,1797,1,0,0,0,1797,1799,3,196,98,0,1798,1795, + 1,0,0,0,1798,1799,1,0,0,0,1799,1807,1,0,0,0,1800,1804,5,333,0,0, + 1801,1805,3,194,97,0,1802,1803,5,438,0,0,1803,1805,3,132,66,0,1804, + 1801,1,0,0,0,1804,1802,1,0,0,0,1805,1807,1,0,0,0,1806,1793,1,0,0, + 0,1806,1800,1,0,0,0,1807,1808,1,0,0,0,1808,1806,1,0,0,0,1808,1809, + 1,0,0,0,1809,1840,1,0,0,0,1810,1812,5,138,0,0,1811,1813,5,44,0,0, + 1812,1811,1,0,0,0,1812,1813,1,0,0,0,1813,1814,1,0,0,0,1814,1815, + 3,804,402,0,1815,1816,5,191,0,0,1816,1818,5,219,0,0,1817,1819,3, + 416,208,0,1818,1817,1,0,0,0,1818,1819,1,0,0,0,1819,1840,1,0,0,0, + 1820,1822,5,138,0,0,1821,1823,5,44,0,0,1822,1821,1,0,0,0,1822,1823, + 1,0,0,0,1823,1824,1,0,0,0,1824,1827,3,804,402,0,1825,1826,5,333, + 0,0,1826,1828,5,174,0,0,1827,1825,1,0,0,0,1827,1828,1,0,0,0,1828, + 1829,1,0,0,0,1829,1830,5,360,0,0,1830,1832,3,648,324,0,1831,1833, + 3,90,45,0,1832,1831,1,0,0,0,1832,1833,1,0,0,0,1833,1836,1,0,0,0, + 1834,1835,5,100,0,0,1835,1837,3,670,335,0,1836,1834,1,0,0,0,1836, + 1837,1,0,0,0,1837,1840,1,0,0,0,1838,1840,3,216,108,0,1839,1606,1, + 0,0,0,1839,1612,1,0,0,0,1839,1621,1,0,0,0,1839,1624,1,0,0,0,1839, + 1633,1,0,0,0,1839,1636,1,0,0,0,1839,1639,1,0,0,0,1839,1641,1,0,0, + 0,1839,1646,1,0,0,0,1839,1653,1,0,0,0,1839,1657,1,0,0,0,1839,1661, + 1,0,0,0,1839,1665,1,0,0,0,1839,1667,1,0,0,0,1839,1669,1,0,0,0,1839, + 1672,1,0,0,0,1839,1675,1,0,0,0,1839,1689,1,0,0,0,1839,1694,1,0,0, + 0,1839,1705,1,0,0,0,1839,1713,1,0,0,0,1839,1722,1,0,0,0,1839,1731, + 1,0,0,0,1839,1741,1,0,0,0,1839,1755,1,0,0,0,1839,1759,1,0,0,0,1839, + 1768,1,0,0,0,1839,1788,1,0,0,0,1839,1810,1,0,0,0,1839,1820,1,0,0, + 0,1839,1838,1,0,0,0,1840,85,1,0,0,0,1841,1842,5,333,0,0,1842,1843, + 5,53,0,0,1843,1847,3,670,335,0,1844,1845,5,191,0,0,1845,1847,5,53, + 0,0,1846,1841,1,0,0,0,1846,1844,1,0,0,0,1847,87,1,0,0,0,1848,1849, + 7,17,0,0,1849,89,1,0,0,0,1850,1851,5,43,0,0,1851,1852,3,310,155, + 0,1852,91,1,0,0,0,1853,1854,5,2,0,0,1854,1859,3,96,48,0,1855,1856, + 5,6,0,0,1856,1858,3,96,48,0,1857,1855,1,0,0,0,1858,1861,1,0,0,0, + 1859,1857,1,0,0,0,1859,1860,1,0,0,0,1860,1862,1,0,0,0,1861,1859, + 1,0,0,0,1862,1863,5,3,0,0,1863,93,1,0,0,0,1864,1865,5,105,0,0,1865, + 1866,3,92,46,0,1866,95,1,0,0,0,1867,1872,3,830,415,0,1868,1869,5, + 10,0,0,1869,1873,3,282,141,0,1870,1871,5,11,0,0,1871,1873,3,280, + 140,0,1872,1868,1,0,0,0,1872,1870,1,0,0,0,1872,1873,1,0,0,0,1873, + 97,1,0,0,0,1874,1875,5,62,0,0,1875,1876,5,422,0,0,1876,1877,5,105, + 0,0,1877,1878,5,2,0,0,1878,1879,5,533,0,0,1879,1880,3,196,98,0,1880, + 1881,5,6,0,0,1881,1882,5,534,0,0,1882,1883,3,196,98,0,1883,1884, + 5,3,0,0,1884,1898,1,0,0,0,1885,1886,5,62,0,0,1886,1887,5,422,0,0, + 1887,1888,5,68,0,0,1888,1898,3,528,264,0,1889,1890,5,62,0,0,1890, + 1891,5,422,0,0,1891,1892,5,64,0,0,1892,1893,3,528,264,0,1893,1894, + 5,94,0,0,1894,1895,3,528,264,0,1895,1898,1,0,0,0,1896,1898,5,53, + 0,0,1897,1874,1,0,0,0,1897,1885,1,0,0,0,1897,1889,1,0,0,0,1897,1896, + 1,0,0,0,1898,99,1,0,0,0,1899,1900,5,138,0,0,1900,1901,5,360,0,0, + 1901,1902,3,310,155,0,1902,1907,3,102,51,0,1903,1904,5,6,0,0,1904, + 1906,3,102,51,0,1905,1903,1,0,0,0,1906,1909,1,0,0,0,1907,1905,1, + 0,0,0,1907,1908,1,0,0,0,1908,101,1,0,0,0,1909,1907,1,0,0,0,1910, + 1911,5,133,0,0,1911,1912,5,143,0,0,1912,1914,3,640,320,0,1913,1915, + 3,88,44,0,1914,1913,1,0,0,0,1914,1915,1,0,0,0,1915,1941,1,0,0,0, + 1916,1917,5,191,0,0,1917,1919,5,143,0,0,1918,1920,3,416,208,0,1919, + 1918,1,0,0,0,1919,1920,1,0,0,0,1920,1921,1,0,0,0,1921,1923,3,824, + 412,0,1922,1924,3,88,44,0,1923,1922,1,0,0,0,1923,1924,1,0,0,0,1924, + 1941,1,0,0,0,1925,1926,5,138,0,0,1926,1927,5,143,0,0,1927,1930,3, + 824,412,0,1928,1929,5,333,0,0,1929,1931,5,174,0,0,1930,1928,1,0, + 0,0,1930,1931,1,0,0,0,1931,1932,1,0,0,0,1932,1933,5,360,0,0,1933, + 1935,3,648,324,0,1934,1936,3,90,45,0,1935,1934,1,0,0,0,1935,1936, + 1,0,0,0,1936,1938,1,0,0,0,1937,1939,3,88,44,0,1938,1937,1,0,0,0, + 1938,1939,1,0,0,0,1939,1941,1,0,0,0,1940,1910,1,0,0,0,1940,1916, + 1,0,0,0,1940,1925,1,0,0,0,1941,103,1,0,0,0,1942,1945,5,157,0,0,1943, + 1946,3,824,412,0,1944,1946,5,30,0,0,1945,1943,1,0,0,0,1945,1944, + 1,0,0,0,1946,105,1,0,0,0,1947,1949,5,169,0,0,1948,1950,5,107,0,0, + 1949,1948,1,0,0,0,1949,1950,1,0,0,0,1950,1951,1,0,0,0,1951,1953, + 3,778,389,0,1952,1954,3,138,69,0,1953,1952,1,0,0,0,1953,1954,1,0, + 0,0,1954,1955,1,0,0,0,1955,1957,7,18,0,0,1956,1958,5,297,0,0,1957, + 1956,1,0,0,0,1957,1958,1,0,0,0,1958,1962,1,0,0,0,1959,1963,3,814, + 407,0,1960,1963,5,343,0,0,1961,1963,5,344,0,0,1962,1959,1,0,0,0, + 1962,1960,1,0,0,0,1962,1961,1,0,0,0,1963,1969,1,0,0,0,1964,1966, + 5,100,0,0,1965,1964,1,0,0,0,1965,1966,1,0,0,0,1966,1967,1,0,0,0, + 1967,1968,5,184,0,0,1968,1970,3,814,407,0,1969,1965,1,0,0,0,1969, + 1970,1,0,0,0,1970,1972,1,0,0,0,1971,1973,5,105,0,0,1972,1971,1,0, + 0,0,1972,1973,1,0,0,0,1973,1974,1,0,0,0,1974,1976,3,110,55,0,1975, + 1977,3,634,317,0,1976,1975,1,0,0,0,1976,1977,1,0,0,0,1977,1997,1, + 0,0,0,1978,1979,5,169,0,0,1979,1980,5,2,0,0,1980,1981,3,524,262, + 0,1981,1982,5,3,0,0,1982,1984,5,94,0,0,1983,1985,5,297,0,0,1984, + 1983,1,0,0,0,1984,1985,1,0,0,0,1985,1989,1,0,0,0,1986,1990,3,814, + 407,0,1987,1990,5,343,0,0,1988,1990,5,344,0,0,1989,1986,1,0,0,0, + 1989,1987,1,0,0,0,1989,1988,1,0,0,0,1990,1992,1,0,0,0,1991,1993, + 5,105,0,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0,1993,1994,1,0,0,0, + 1994,1995,3,110,55,0,1995,1997,1,0,0,0,1996,1947,1,0,0,0,1996,1978, + 1,0,0,0,1997,107,1,0,0,0,1998,2041,5,107,0,0,1999,2041,5,112,0,0, + 2000,2002,7,19,0,0,2001,2003,5,36,0,0,2002,2001,1,0,0,0,2002,2003, + 1,0,0,0,2003,2004,1,0,0,0,2004,2041,3,814,407,0,2005,2041,5,171, + 0,0,2006,2041,5,216,0,0,2007,2008,5,209,0,0,2008,2011,5,298,0,0, + 2009,2012,3,142,71,0,2010,2012,5,9,0,0,2011,2009,1,0,0,0,2011,2010, + 1,0,0,0,2012,2041,1,0,0,0,2013,2015,5,209,0,0,2014,2016,5,77,0,0, + 2015,2014,1,0,0,0,2015,2016,1,0,0,0,2016,2017,1,0,0,0,2017,2018, + 5,78,0,0,2018,2041,3,142,71,0,2019,2020,5,194,0,0,2020,2041,3,814, + 407,0,2021,2038,7,20,0,0,2022,2025,5,2,0,0,2023,2026,3,142,71,0, + 2024,2026,5,9,0,0,2025,2023,1,0,0,0,2025,2024,1,0,0,0,2026,2034, + 1,0,0,0,2027,2030,5,6,0,0,2028,2031,3,142,71,0,2029,2031,5,9,0,0, + 2030,2028,1,0,0,0,2030,2029,1,0,0,0,2031,2033,1,0,0,0,2032,2027, + 1,0,0,0,2033,2036,1,0,0,0,2034,2032,1,0,0,0,2034,2035,1,0,0,0,2035, + 2037,1,0,0,0,2036,2034,1,0,0,0,2037,2039,5,3,0,0,2038,2022,1,0,0, + 0,2038,2039,1,0,0,0,2039,2041,1,0,0,0,2040,1998,1,0,0,0,2040,1999, + 1,0,0,0,2040,2000,1,0,0,0,2040,2005,1,0,0,0,2040,2006,1,0,0,0,2040, + 2007,1,0,0,0,2040,2013,1,0,0,0,2040,2019,1,0,0,0,2040,2021,1,0,0, + 0,2041,2044,1,0,0,0,2042,2040,1,0,0,0,2042,2043,1,0,0,0,2043,109, + 1,0,0,0,2044,2042,1,0,0,0,2045,2064,3,108,54,0,2046,2049,5,2,0,0, + 2047,2050,3,108,54,0,2048,2050,3,112,56,0,2049,2047,1,0,0,0,2049, + 2048,1,0,0,0,2050,2058,1,0,0,0,2051,2054,5,6,0,0,2052,2055,3,108, + 54,0,2053,2055,3,112,56,0,2054,2052,1,0,0,0,2054,2053,1,0,0,0,2055, + 2057,1,0,0,0,2056,2051,1,0,0,0,2057,2060,1,0,0,0,2058,2056,1,0,0, + 0,2058,2059,1,0,0,0,2059,2061,1,0,0,0,2060,2058,1,0,0,0,2061,2062, + 5,3,0,0,2062,2064,1,0,0,0,2063,2045,1,0,0,0,2063,2046,1,0,0,0,2064, + 111,1,0,0,0,2065,2080,3,830,415,0,2066,2081,3,54,27,0,2067,2081, + 3,196,98,0,2068,2081,5,9,0,0,2069,2070,5,2,0,0,2070,2075,3,52,26, + 0,2071,2072,5,6,0,0,2072,2074,3,52,26,0,2073,2071,1,0,0,0,2074,2077, + 1,0,0,0,2075,2073,1,0,0,0,2075,2076,1,0,0,0,2076,2078,1,0,0,0,2077, + 2075,1,0,0,0,2078,2079,5,3,0,0,2079,2081,1,0,0,0,2080,2066,1,0,0, + 0,2080,2067,1,0,0,0,2080,2068,1,0,0,0,2080,2069,1,0,0,0,2080,2081, + 1,0,0,0,2081,113,1,0,0,0,2082,2084,5,46,0,0,2083,2085,3,116,58,0, + 2084,2083,1,0,0,0,2084,2085,1,0,0,0,2085,2086,1,0,0,0,2086,2088, + 5,92,0,0,2087,2089,3,288,144,0,2088,2087,1,0,0,0,2088,2089,1,0,0, + 0,2089,2090,1,0,0,0,2090,2156,3,776,388,0,2091,2093,5,2,0,0,2092, + 2094,3,120,60,0,2093,2092,1,0,0,0,2093,2094,1,0,0,0,2094,2095,1, + 0,0,0,2095,2097,5,3,0,0,2096,2098,3,158,79,0,2097,2096,1,0,0,0,2097, + 2098,1,0,0,0,2098,2100,1,0,0,0,2099,2101,3,160,80,0,2100,2099,1, + 0,0,0,2100,2101,1,0,0,0,2101,2103,1,0,0,0,2102,2104,3,164,82,0,2103, + 2102,1,0,0,0,2103,2104,1,0,0,0,2104,2106,1,0,0,0,2105,2107,3,166, + 83,0,2106,2105,1,0,0,0,2106,2107,1,0,0,0,2107,2109,1,0,0,0,2108, + 2110,3,168,84,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1, + 0,0,0,2111,2113,3,170,85,0,2112,2111,1,0,0,0,2112,2113,1,0,0,0,2113, + 2157,1,0,0,0,2114,2115,5,275,0,0,2115,2117,3,310,155,0,2116,2118, + 3,118,59,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2120,1,0,0,0, + 2119,2121,3,160,80,0,2120,2119,1,0,0,0,2120,2121,1,0,0,0,2121,2123, + 1,0,0,0,2122,2124,3,164,82,0,2123,2122,1,0,0,0,2123,2124,1,0,0,0, + 2124,2126,1,0,0,0,2125,2127,3,166,83,0,2126,2125,1,0,0,0,2126,2127, + 1,0,0,0,2127,2129,1,0,0,0,2128,2130,3,168,84,0,2129,2128,1,0,0,0, + 2129,2130,1,0,0,0,2130,2132,1,0,0,0,2131,2133,3,170,85,0,2132,2131, + 1,0,0,0,2132,2133,1,0,0,0,2133,2157,1,0,0,0,2134,2135,5,285,0,0, + 2135,2136,5,275,0,0,2136,2138,3,784,392,0,2137,2139,3,118,59,0,2138, + 2137,1,0,0,0,2138,2139,1,0,0,0,2139,2140,1,0,0,0,2140,2142,3,98, + 49,0,2141,2143,3,160,80,0,2142,2141,1,0,0,0,2142,2143,1,0,0,0,2143, + 2145,1,0,0,0,2144,2146,3,164,82,0,2145,2144,1,0,0,0,2145,2146,1, + 0,0,0,2146,2148,1,0,0,0,2147,2149,3,166,83,0,2148,2147,1,0,0,0,2148, + 2149,1,0,0,0,2149,2151,1,0,0,0,2150,2152,3,168,84,0,2151,2150,1, + 0,0,0,2151,2152,1,0,0,0,2152,2154,1,0,0,0,2153,2155,3,170,85,0,2154, + 2153,1,0,0,0,2154,2155,1,0,0,0,2155,2157,1,0,0,0,2156,2091,1,0,0, + 0,2156,2114,1,0,0,0,2156,2134,1,0,0,0,2157,115,1,0,0,0,2158,2164, + 5,354,0,0,2159,2164,5,352,0,0,2160,2161,7,21,0,0,2161,2164,7,22, + 0,0,2162,2164,5,367,0,0,2163,2158,1,0,0,0,2163,2159,1,0,0,0,2163, + 2160,1,0,0,0,2163,2162,1,0,0,0,2164,117,1,0,0,0,2165,2166,5,2,0, + 0,2166,2171,3,124,62,0,2167,2168,5,6,0,0,2168,2170,3,124,62,0,2169, + 2167,1,0,0,0,2170,2173,1,0,0,0,2171,2169,1,0,0,0,2171,2172,1,0,0, + 0,2172,2174,1,0,0,0,2173,2171,1,0,0,0,2174,2175,5,3,0,0,2175,119, + 1,0,0,0,2176,2181,3,122,61,0,2177,2178,5,6,0,0,2178,2180,3,122,61, + 0,2179,2177,1,0,0,0,2180,2183,1,0,0,0,2181,2179,1,0,0,0,2181,2182, + 1,0,0,0,2182,121,1,0,0,0,2183,2181,1,0,0,0,2184,2185,5,45,0,0,2185, + 2187,3,824,412,0,2186,2184,1,0,0,0,2186,2187,1,0,0,0,2187,2188,1, + 0,0,0,2188,2200,3,136,68,0,2189,2200,3,126,63,0,2190,2191,5,120, + 0,0,2191,2196,3,784,392,0,2192,2193,7,23,0,0,2193,2195,3,134,67, + 0,2194,2192,1,0,0,0,2195,2198,1,0,0,0,2196,2194,1,0,0,0,2196,2197, + 1,0,0,0,2197,2200,1,0,0,0,2198,2196,1,0,0,0,2199,2186,1,0,0,0,2199, + 2189,1,0,0,0,2199,2190,1,0,0,0,2200,123,1,0,0,0,2201,2204,3,808, + 404,0,2202,2203,5,105,0,0,2203,2205,5,280,0,0,2204,2202,1,0,0,0, + 2204,2205,1,0,0,0,2205,2209,1,0,0,0,2206,2208,3,128,64,0,2207,2206, + 1,0,0,0,2208,2211,1,0,0,0,2209,2207,1,0,0,0,2209,2210,1,0,0,0,2210, + 2218,1,0,0,0,2211,2209,1,0,0,0,2212,2213,5,45,0,0,2213,2215,3,824, + 412,0,2214,2212,1,0,0,0,2214,2215,1,0,0,0,2215,2216,1,0,0,0,2216, + 2218,3,136,68,0,2217,2201,1,0,0,0,2217,2214,1,0,0,0,2218,125,1,0, + 0,0,2219,2220,3,808,404,0,2220,2222,3,648,324,0,2221,2223,3,214, + 107,0,2222,2221,1,0,0,0,2222,2223,1,0,0,0,2223,2233,1,0,0,0,2224, + 2231,5,345,0,0,2225,2232,5,544,0,0,2226,2232,5,205,0,0,2227,2232, + 5,545,0,0,2228,2232,5,546,0,0,2229,2232,5,53,0,0,2230,2232,3,824, + 412,0,2231,2225,1,0,0,0,2231,2226,1,0,0,0,2231,2227,1,0,0,0,2231, + 2228,1,0,0,0,2231,2229,1,0,0,0,2231,2230,1,0,0,0,2232,2234,1,0,0, + 0,2233,2224,1,0,0,0,2233,2234,1,0,0,0,2234,2237,1,0,0,0,2235,2236, + 5,543,0,0,2236,2238,3,824,412,0,2237,2235,1,0,0,0,2237,2238,1,0, + 0,0,2238,2240,1,0,0,0,2239,2241,3,90,45,0,2240,2239,1,0,0,0,2240, + 2241,1,0,0,0,2241,2244,1,0,0,0,2242,2243,5,105,0,0,2243,2245,5,280, + 0,0,2244,2242,1,0,0,0,2244,2245,1,0,0,0,2245,2249,1,0,0,0,2246,2248, + 3,128,64,0,2247,2246,1,0,0,0,2248,2251,1,0,0,0,2249,2247,1,0,0,0, + 2249,2250,1,0,0,0,2250,127,1,0,0,0,2251,2249,1,0,0,0,2252,2253,5, + 45,0,0,2253,2255,3,824,412,0,2254,2252,1,0,0,0,2254,2255,1,0,0,0, + 2255,2256,1,0,0,0,2256,2261,3,130,65,0,2257,2259,5,77,0,0,2258,2257, + 1,0,0,0,2258,2259,1,0,0,0,2259,2260,1,0,0,0,2260,2262,5,54,0,0,2261, + 2258,1,0,0,0,2261,2262,1,0,0,0,2262,2265,1,0,0,0,2263,2264,5,69, + 0,0,2264,2266,7,9,0,0,2265,2263,1,0,0,0,2265,2266,1,0,0,0,2266,129, + 1,0,0,0,2267,2269,5,77,0,0,2268,2267,1,0,0,0,2268,2269,1,0,0,0,2269, + 2270,1,0,0,0,2270,2348,5,78,0,0,2271,2273,5,98,0,0,2272,2274,3,394, + 197,0,2273,2272,1,0,0,0,2273,2274,1,0,0,0,2274,2276,1,0,0,0,2275, + 2277,3,172,86,0,2276,2275,1,0,0,0,2276,2277,1,0,0,0,2277,2348,1, + 0,0,0,2278,2284,5,98,0,0,2279,2281,5,273,0,0,2280,2282,5,77,0,0, + 2281,2280,1,0,0,0,2281,2282,1,0,0,0,2282,2283,1,0,0,0,2283,2285, + 5,56,0,0,2284,2279,1,0,0,0,2284,2285,1,0,0,0,2285,2288,1,0,0,0,2286, + 2287,5,441,0,0,2287,2289,3,354,177,0,2288,2286,1,0,0,0,2288,2289, + 1,0,0,0,2289,2291,1,0,0,0,2290,2292,3,566,283,0,2291,2290,1,0,0, + 0,2291,2292,1,0,0,0,2292,2294,1,0,0,0,2293,2295,3,172,86,0,2294, + 2293,1,0,0,0,2294,2295,1,0,0,0,2295,2348,1,0,0,0,2296,2297,5,85, + 0,0,2297,2299,5,245,0,0,2298,2300,3,394,197,0,2299,2298,1,0,0,0, + 2299,2300,1,0,0,0,2300,2302,1,0,0,0,2301,2303,3,172,86,0,2302,2301, + 1,0,0,0,2302,2303,1,0,0,0,2303,2348,1,0,0,0,2304,2305,5,42,0,0,2305, + 2306,5,2,0,0,2306,2307,3,670,335,0,2307,2310,5,3,0,0,2308,2309,5, + 269,0,0,2309,2311,5,228,0,0,2310,2308,1,0,0,0,2310,2311,1,0,0,0, + 2311,2348,1,0,0,0,2312,2313,5,53,0,0,2313,2348,3,678,339,0,2314, + 2315,5,438,0,0,2315,2316,3,132,66,0,2316,2333,5,36,0,0,2317,2326, + 5,219,0,0,2318,2320,5,2,0,0,2319,2321,3,194,97,0,2320,2319,1,0,0, + 0,2321,2322,1,0,0,0,2322,2320,1,0,0,0,2322,2323,1,0,0,0,2323,2324, + 1,0,0,0,2324,2325,5,3,0,0,2325,2327,1,0,0,0,2326,2318,1,0,0,0,2326, + 2327,1,0,0,0,2327,2334,1,0,0,0,2328,2329,5,2,0,0,2329,2330,3,670, + 335,0,2330,2331,5,3,0,0,2331,2332,5,440,0,0,2332,2334,1,0,0,0,2333, + 2317,1,0,0,0,2333,2328,1,0,0,0,2334,2348,1,0,0,0,2335,2336,5,86, + 0,0,2336,2338,3,784,392,0,2337,2339,3,138,69,0,2338,2337,1,0,0,0, + 2338,2339,1,0,0,0,2339,2341,1,0,0,0,2340,2342,3,146,73,0,2341,2340, + 1,0,0,0,2341,2342,1,0,0,0,2342,2344,1,0,0,0,2343,2345,3,150,75,0, + 2344,2343,1,0,0,0,2344,2345,1,0,0,0,2345,2348,1,0,0,0,2346,2348, + 3,90,45,0,2347,2268,1,0,0,0,2347,2271,1,0,0,0,2347,2278,1,0,0,0, + 2347,2296,1,0,0,0,2347,2304,1,0,0,0,2347,2312,1,0,0,0,2347,2314, + 1,0,0,0,2347,2335,1,0,0,0,2347,2346,1,0,0,0,2348,131,1,0,0,0,2349, + 2353,5,139,0,0,2350,2351,5,147,0,0,2351,2353,5,53,0,0,2352,2349, + 1,0,0,0,2352,2350,1,0,0,0,2353,133,1,0,0,0,2354,2355,7,24,0,0,2355, + 135,1,0,0,0,2356,2357,5,42,0,0,2357,2358,5,2,0,0,2358,2359,3,670, + 335,0,2359,2363,5,3,0,0,2360,2362,3,266,133,0,2361,2360,1,0,0,0, + 2362,2365,1,0,0,0,2363,2361,1,0,0,0,2363,2364,1,0,0,0,2364,2453, + 1,0,0,0,2365,2363,1,0,0,0,2366,2370,5,98,0,0,2367,2368,5,85,0,0, + 2368,2370,5,245,0,0,2369,2366,1,0,0,0,2369,2367,1,0,0,0,2370,2394, + 1,0,0,0,2371,2373,3,138,69,0,2372,2374,3,144,72,0,2373,2372,1,0, + 0,0,2373,2374,1,0,0,0,2374,2376,1,0,0,0,2375,2377,3,394,197,0,2376, + 2375,1,0,0,0,2376,2377,1,0,0,0,2377,2379,1,0,0,0,2378,2380,3,172, + 86,0,2379,2378,1,0,0,0,2379,2380,1,0,0,0,2380,2384,1,0,0,0,2381, + 2383,3,266,133,0,2382,2381,1,0,0,0,2383,2386,1,0,0,0,2384,2382,1, + 0,0,0,2384,2385,1,0,0,0,2385,2395,1,0,0,0,2386,2384,1,0,0,0,2387, + 2391,3,174,87,0,2388,2390,3,266,133,0,2389,2388,1,0,0,0,2390,2393, + 1,0,0,0,2391,2389,1,0,0,0,2391,2392,1,0,0,0,2392,2395,1,0,0,0,2393, + 2391,1,0,0,0,2394,2371,1,0,0,0,2394,2387,1,0,0,0,2395,2453,1,0,0, + 0,2396,2398,5,199,0,0,2397,2399,3,164,82,0,2398,2397,1,0,0,0,2398, + 2399,1,0,0,0,2399,2400,1,0,0,0,2400,2401,5,2,0,0,2401,2406,3,148, + 74,0,2402,2403,5,6,0,0,2403,2405,3,148,74,0,2404,2402,1,0,0,0,2405, + 2408,1,0,0,0,2406,2404,1,0,0,0,2406,2407,1,0,0,0,2407,2409,1,0,0, + 0,2408,2406,1,0,0,0,2409,2411,5,3,0,0,2410,2412,3,144,72,0,2411, + 2410,1,0,0,0,2411,2412,1,0,0,0,2412,2414,1,0,0,0,2413,2415,3,394, + 197,0,2414,2413,1,0,0,0,2414,2415,1,0,0,0,2415,2417,1,0,0,0,2416, + 2418,3,172,86,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2424,1, + 0,0,0,2419,2420,5,103,0,0,2420,2421,5,2,0,0,2421,2422,3,670,335, + 0,2422,2423,5,3,0,0,2423,2425,1,0,0,0,2424,2419,1,0,0,0,2424,2425, + 1,0,0,0,2425,2429,1,0,0,0,2426,2428,3,266,133,0,2427,2426,1,0,0, + 0,2428,2431,1,0,0,0,2429,2427,1,0,0,0,2429,2430,1,0,0,0,2430,2453, + 1,0,0,0,2431,2429,1,0,0,0,2432,2433,5,63,0,0,2433,2434,5,245,0,0, + 2434,2435,3,138,69,0,2435,2436,5,86,0,0,2436,2438,3,784,392,0,2437, + 2439,3,138,69,0,2438,2437,1,0,0,0,2438,2439,1,0,0,0,2439,2441,1, + 0,0,0,2440,2442,3,146,73,0,2441,2440,1,0,0,0,2441,2442,1,0,0,0,2442, + 2444,1,0,0,0,2443,2445,3,150,75,0,2444,2443,1,0,0,0,2444,2445,1, + 0,0,0,2445,2449,1,0,0,0,2446,2448,3,266,133,0,2447,2446,1,0,0,0, + 2448,2451,1,0,0,0,2449,2447,1,0,0,0,2449,2450,1,0,0,0,2450,2453, + 1,0,0,0,2451,2449,1,0,0,0,2452,2356,1,0,0,0,2452,2369,1,0,0,0,2452, + 2396,1,0,0,0,2452,2432,1,0,0,0,2453,137,1,0,0,0,2454,2455,5,2,0, + 0,2455,2456,3,142,71,0,2456,2457,5,3,0,0,2457,139,1,0,0,0,2458,2459, + 5,2,0,0,2459,2464,3,808,404,0,2460,2461,5,6,0,0,2461,2463,3,808, + 404,0,2462,2460,1,0,0,0,2463,2466,1,0,0,0,2464,2462,1,0,0,0,2464, + 2465,1,0,0,0,2465,2467,1,0,0,0,2466,2464,1,0,0,0,2467,2468,5,3,0, + 0,2468,141,1,0,0,0,2469,2474,3,804,402,0,2470,2471,5,6,0,0,2471, + 2473,3,804,402,0,2472,2470,1,0,0,0,2473,2476,1,0,0,0,2474,2472,1, + 0,0,0,2474,2475,1,0,0,0,2475,143,1,0,0,0,2476,2474,1,0,0,0,2477, + 2478,5,441,0,0,2478,2479,3,138,69,0,2479,145,1,0,0,0,2480,2481,5, + 258,0,0,2481,2482,7,25,0,0,2482,147,1,0,0,0,2483,2484,3,356,178, + 0,2484,2491,5,105,0,0,2485,2492,3,408,204,0,2486,2487,5,278,0,0, + 2487,2488,5,2,0,0,2488,2489,3,408,204,0,2489,2490,5,3,0,0,2490,2492, + 1,0,0,0,2491,2485,1,0,0,0,2491,2486,1,0,0,0,2492,149,1,0,0,0,2493, + 2495,3,152,76,0,2494,2496,3,154,77,0,2495,2494,1,0,0,0,2495,2496, + 1,0,0,0,2496,2502,1,0,0,0,2497,2499,3,154,77,0,2498,2500,3,152,76, + 0,2499,2498,1,0,0,0,2499,2500,1,0,0,0,2500,2502,1,0,0,0,2501,2493, + 1,0,0,0,2501,2497,1,0,0,0,2502,151,1,0,0,0,2503,2504,5,80,0,0,2504, + 2505,5,369,0,0,2505,2506,3,156,78,0,2506,153,1,0,0,0,2507,2508,5, + 80,0,0,2508,2509,5,182,0,0,2509,2510,3,156,78,0,2510,155,1,0,0,0, + 2511,2512,5,269,0,0,2512,2521,5,132,0,0,2513,2521,5,315,0,0,2514, + 2521,5,150,0,0,2515,2516,5,333,0,0,2516,2518,7,26,0,0,2517,2519, + 3,142,71,0,2518,2517,1,0,0,0,2518,2519,1,0,0,0,2519,2521,1,0,0,0, + 2520,2511,1,0,0,0,2520,2513,1,0,0,0,2520,2514,1,0,0,0,2520,2515, + 1,0,0,0,2521,157,1,0,0,0,2522,2523,5,238,0,0,2523,2524,5,2,0,0,2524, + 2525,3,764,382,0,2525,2526,5,3,0,0,2526,159,1,0,0,0,2527,2528,5, + 285,0,0,2528,2529,5,147,0,0,2529,2530,3,824,412,0,2530,2531,5,2, + 0,0,2531,2536,3,162,81,0,2532,2533,5,6,0,0,2533,2535,3,162,81,0, + 2534,2532,1,0,0,0,2535,2538,1,0,0,0,2536,2534,1,0,0,0,2536,2537, + 1,0,0,0,2537,2539,1,0,0,0,2538,2536,1,0,0,0,2539,2540,5,3,0,0,2540, + 161,1,0,0,0,2541,2548,3,804,402,0,2542,2548,3,684,342,0,2543,2544, + 5,2,0,0,2544,2545,3,670,335,0,2545,2546,5,3,0,0,2546,2548,1,0,0, + 0,2547,2541,1,0,0,0,2547,2542,1,0,0,0,2547,2543,1,0,0,0,2548,2550, + 1,0,0,0,2549,2551,3,90,45,0,2550,2549,1,0,0,0,2550,2551,1,0,0,0, + 2551,2553,1,0,0,0,2552,2554,3,310,155,0,2553,2552,1,0,0,0,2553,2554, + 1,0,0,0,2554,163,1,0,0,0,2555,2556,5,100,0,0,2556,2557,3,824,412, + 0,2557,165,1,0,0,0,2558,2559,5,105,0,0,2559,2563,3,92,46,0,2560, + 2561,7,27,0,0,2561,2563,5,277,0,0,2562,2558,1,0,0,0,2562,2560,1, + 0,0,0,2563,167,1,0,0,0,2564,2565,5,80,0,0,2565,2571,5,161,0,0,2566, + 2572,5,191,0,0,2567,2568,5,182,0,0,2568,2572,5,320,0,0,2569,2570, + 5,292,0,0,2570,2572,5,320,0,0,2571,2566,1,0,0,0,2571,2567,1,0,0, + 0,2571,2569,1,0,0,0,2572,169,1,0,0,0,2573,2574,5,351,0,0,2574,2575, + 3,774,387,0,2575,171,1,0,0,0,2576,2577,5,100,0,0,2577,2578,5,226, + 0,0,2578,2579,3,170,85,0,2579,173,1,0,0,0,2580,2581,5,100,0,0,2581, + 2582,5,226,0,0,2582,2583,3,824,412,0,2583,175,1,0,0,0,2584,2585, + 5,46,0,0,2585,2590,5,342,0,0,2586,2588,3,288,144,0,2587,2586,1,0, + 0,0,2587,2588,1,0,0,0,2588,2589,1,0,0,0,2589,2591,3,310,155,0,2590, + 2587,1,0,0,0,2590,2591,1,0,0,0,2591,2593,1,0,0,0,2592,2594,3,138, + 69,0,2593,2592,1,0,0,0,2593,2594,1,0,0,0,2594,2595,1,0,0,0,2595, + 2605,5,80,0,0,2596,2601,3,734,367,0,2597,2598,5,6,0,0,2598,2600, + 3,734,367,0,2599,2597,1,0,0,0,2600,2603,1,0,0,0,2601,2599,1,0,0, + 0,2601,2602,1,0,0,0,2602,2606,1,0,0,0,2603,2601,1,0,0,0,2604,2606, + 3,728,364,0,2605,2596,1,0,0,0,2605,2604,1,0,0,0,2606,2607,1,0,0, + 0,2607,2608,3,604,302,0,2608,177,1,0,0,0,2609,2610,5,138,0,0,2610, + 2612,5,342,0,0,2611,2613,3,416,208,0,2612,2611,1,0,0,0,2612,2613, + 1,0,0,0,2613,2614,1,0,0,0,2614,2615,3,310,155,0,2615,2616,5,333, + 0,0,2616,2617,5,342,0,0,2617,2618,3,818,409,0,2618,179,1,0,0,0,2619, + 2621,5,46,0,0,2620,2622,3,116,58,0,2621,2620,1,0,0,0,2621,2622,1, + 0,0,0,2622,2623,1,0,0,0,2623,2625,5,92,0,0,2624,2626,3,288,144,0, + 2625,2624,1,0,0,0,2625,2626,1,0,0,0,2626,2627,1,0,0,0,2627,2628, + 3,182,91,0,2628,2629,5,36,0,0,2629,2631,3,554,277,0,2630,2632,3, + 184,92,0,2631,2630,1,0,0,0,2631,2632,1,0,0,0,2632,181,1,0,0,0,2633, + 2635,3,776,388,0,2634,2636,3,140,70,0,2635,2634,1,0,0,0,2635,2636, + 1,0,0,0,2636,2638,1,0,0,0,2637,2639,3,164,82,0,2638,2637,1,0,0,0, + 2638,2639,1,0,0,0,2639,2641,1,0,0,0,2640,2642,3,166,83,0,2641,2640, + 1,0,0,0,2641,2642,1,0,0,0,2642,2644,1,0,0,0,2643,2645,3,168,84,0, + 2644,2643,1,0,0,0,2644,2645,1,0,0,0,2645,2647,1,0,0,0,2646,2648, + 3,170,85,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,183,1,0,0,0, + 2649,2653,5,105,0,0,2650,2654,5,174,0,0,2651,2652,5,269,0,0,2652, + 2654,5,174,0,0,2653,2650,1,0,0,0,2653,2651,1,0,0,0,2654,185,1,0, + 0,0,2655,2657,5,46,0,0,2656,2658,5,367,0,0,2657,2656,1,0,0,0,2657, + 2658,1,0,0,0,2658,2659,1,0,0,0,2659,2660,5,259,0,0,2660,2662,5,376, + 0,0,2661,2663,3,288,144,0,2662,2661,1,0,0,0,2662,2663,1,0,0,0,2663, + 2664,1,0,0,0,2664,2666,3,780,390,0,2665,2667,3,140,70,0,2666,2665, + 1,0,0,0,2666,2667,1,0,0,0,2667,2669,1,0,0,0,2668,2670,3,164,82,0, + 2669,2668,1,0,0,0,2669,2670,1,0,0,0,2670,2672,1,0,0,0,2671,2673, + 3,94,47,0,2672,2671,1,0,0,0,2672,2673,1,0,0,0,2673,2675,1,0,0,0, + 2674,2676,3,170,85,0,2675,2674,1,0,0,0,2675,2676,1,0,0,0,2676,2677, + 1,0,0,0,2677,2678,5,36,0,0,2678,2680,3,554,277,0,2679,2681,3,184, + 92,0,2680,2679,1,0,0,0,2680,2681,1,0,0,0,2681,187,1,0,0,0,2682,2683, + 5,305,0,0,2683,2684,5,259,0,0,2684,2686,5,376,0,0,2685,2687,5,109, + 0,0,2686,2685,1,0,0,0,2686,2687,1,0,0,0,2687,2688,1,0,0,0,2688,2690, + 3,782,391,0,2689,2691,3,184,92,0,2690,2689,1,0,0,0,2690,2691,1,0, + 0,0,2691,189,1,0,0,0,2692,2694,5,46,0,0,2693,2695,3,116,58,0,2694, + 2693,1,0,0,0,2694,2695,1,0,0,0,2695,2696,1,0,0,0,2696,2698,5,328, + 0,0,2697,2699,3,288,144,0,2698,2697,1,0,0,0,2698,2699,1,0,0,0,2699, + 2700,1,0,0,0,2700,2706,3,784,392,0,2701,2703,3,194,97,0,2702,2701, + 1,0,0,0,2703,2704,1,0,0,0,2704,2702,1,0,0,0,2704,2705,1,0,0,0,2705, + 2707,1,0,0,0,2706,2702,1,0,0,0,2706,2707,1,0,0,0,2707,191,1,0,0, + 0,2708,2709,5,138,0,0,2709,2711,5,328,0,0,2710,2712,3,416,208,0, + 2711,2710,1,0,0,0,2711,2712,1,0,0,0,2712,2713,1,0,0,0,2713,2715, + 3,784,392,0,2714,2716,3,194,97,0,2715,2714,1,0,0,0,2716,2717,1,0, + 0,0,2717,2715,1,0,0,0,2717,2718,1,0,0,0,2718,193,1,0,0,0,2719,2720, + 5,36,0,0,2720,2753,3,650,325,0,2721,2723,5,148,0,0,2722,2724,3,196, + 98,0,2723,2722,1,0,0,0,2723,2724,1,0,0,0,2724,2753,1,0,0,0,2725, + 2727,5,225,0,0,2726,2728,5,147,0,0,2727,2726,1,0,0,0,2727,2728,1, + 0,0,0,2728,2729,1,0,0,0,2729,2753,3,196,98,0,2730,2731,7,28,0,0, + 2731,2753,3,196,98,0,2732,2733,5,269,0,0,2733,2753,7,29,0,0,2734, + 2735,5,281,0,0,2735,2736,5,147,0,0,2736,2753,3,804,402,0,2737,2738, + 5,328,0,0,2738,2739,5,266,0,0,2739,2753,3,310,155,0,2740,2742,5, + 340,0,0,2741,2743,5,105,0,0,2742,2741,1,0,0,0,2742,2743,1,0,0,0, + 2743,2744,1,0,0,0,2744,2753,3,196,98,0,2745,2747,5,314,0,0,2746, + 2748,5,105,0,0,2747,2746,1,0,0,0,2747,2748,1,0,0,0,2748,2750,1,0, + 0,0,2749,2751,3,196,98,0,2750,2749,1,0,0,0,2750,2751,1,0,0,0,2751, + 2753,1,0,0,0,2752,2719,1,0,0,0,2752,2721,1,0,0,0,2752,2725,1,0,0, + 0,2752,2730,1,0,0,0,2752,2732,1,0,0,0,2752,2734,1,0,0,0,2752,2737, + 1,0,0,0,2752,2740,1,0,0,0,2752,2745,1,0,0,0,2753,195,1,0,0,0,2754, + 2756,7,30,0,0,2755,2754,1,0,0,0,2755,2756,1,0,0,0,2756,2757,1,0, + 0,0,2757,2760,5,576,0,0,2758,2760,3,818,409,0,2759,2755,1,0,0,0, + 2759,2758,1,0,0,0,2760,197,1,0,0,0,2761,2763,5,46,0,0,2762,2764, + 3,360,180,0,2763,2762,1,0,0,0,2763,2764,1,0,0,0,2764,2766,1,0,0, + 0,2765,2767,5,359,0,0,2766,2765,1,0,0,0,2766,2767,1,0,0,0,2767,2769, + 1,0,0,0,2768,2770,5,295,0,0,2769,2768,1,0,0,0,2769,2770,1,0,0,0, + 2770,2771,1,0,0,0,2771,2772,5,247,0,0,2772,2785,3,824,412,0,2773, + 2774,5,215,0,0,2774,2777,3,310,155,0,2775,2776,5,239,0,0,2776,2778, + 3,310,155,0,2777,2775,1,0,0,0,2777,2778,1,0,0,0,2778,2783,1,0,0, + 0,2779,2780,5,373,0,0,2780,2784,3,310,155,0,2781,2782,5,269,0,0, + 2782,2784,5,373,0,0,2783,2779,1,0,0,0,2783,2781,1,0,0,0,2783,2784, + 1,0,0,0,2784,2786,1,0,0,0,2785,2773,1,0,0,0,2785,2786,1,0,0,0,2786, + 199,1,0,0,0,2787,2788,5,46,0,0,2788,2791,3,170,85,0,2789,2790,5, + 282,0,0,2790,2792,3,820,410,0,2791,2789,1,0,0,0,2791,2792,1,0,0, + 0,2792,2793,1,0,0,0,2793,2794,5,255,0,0,2794,2796,3,814,407,0,2795, + 2797,3,94,47,0,2796,2795,1,0,0,0,2796,2797,1,0,0,0,2797,201,1,0, + 0,0,2798,2799,5,46,0,0,2799,2801,5,204,0,0,2800,2802,3,288,144,0, + 2801,2800,1,0,0,0,2801,2802,1,0,0,0,2802,2803,1,0,0,0,2803,2805, + 3,824,412,0,2804,2806,5,105,0,0,2805,2804,1,0,0,0,2805,2806,1,0, + 0,0,2806,2814,1,0,0,0,2807,2808,5,323,0,0,2808,2813,3,794,397,0, + 2809,2810,7,31,0,0,2810,2813,3,58,29,0,2811,2813,5,150,0,0,2812, + 2807,1,0,0,0,2812,2809,1,0,0,0,2812,2811,1,0,0,0,2813,2816,1,0,0, + 0,2814,2812,1,0,0,0,2814,2815,1,0,0,0,2815,203,1,0,0,0,2816,2814, + 1,0,0,0,2817,2818,5,138,0,0,2818,2819,5,204,0,0,2819,2820,3,824, + 412,0,2820,2825,5,369,0,0,2821,2822,5,94,0,0,2822,2824,3,58,29,0, + 2823,2821,1,0,0,0,2824,2827,1,0,0,0,2825,2823,1,0,0,0,2825,2826, + 1,0,0,0,2826,205,1,0,0,0,2827,2825,1,0,0,0,2828,2829,5,138,0,0,2829, + 2830,5,204,0,0,2830,2831,3,824,412,0,2831,2864,7,6,0,0,2832,2833, + 5,443,0,0,2833,2834,5,62,0,0,2834,2835,3,648,324,0,2835,2836,5,247, + 0,0,2836,2837,3,824,412,0,2837,2865,1,0,0,0,2838,2839,5,442,0,0, + 2839,2865,3,368,184,0,2840,2841,5,296,0,0,2841,2865,3,372,186,0, + 2842,2843,5,278,0,0,2843,2844,7,32,0,0,2844,2845,3,310,155,0,2845, + 2846,3,164,82,0,2846,2865,1,0,0,0,2847,2848,5,278,0,0,2848,2865, + 3,410,205,0,2849,2850,5,211,0,0,2850,2865,3,376,188,0,2851,2852, + 7,33,0,0,2852,2865,3,648,324,0,2853,2854,5,41,0,0,2854,2855,5,2, + 0,0,2855,2856,3,648,324,0,2856,2857,5,36,0,0,2857,2858,3,648,324, + 0,2858,2859,5,3,0,0,2859,2865,1,0,0,0,2860,2861,5,136,0,0,2861,2865, + 3,388,194,0,2862,2865,3,306,153,0,2863,2865,3,304,152,0,2864,2832, + 1,0,0,0,2864,2838,1,0,0,0,2864,2840,1,0,0,0,2864,2842,1,0,0,0,2864, + 2847,1,0,0,0,2864,2849,1,0,0,0,2864,2851,1,0,0,0,2864,2853,1,0,0, + 0,2864,2860,1,0,0,0,2864,2862,1,0,0,0,2864,2863,1,0,0,0,2865,207, + 1,0,0,0,2866,2867,5,46,0,0,2867,2868,5,63,0,0,2868,2869,5,174,0, + 0,2869,2870,5,381,0,0,2870,2876,3,824,412,0,2871,2873,3,210,105, + 0,2872,2871,1,0,0,0,2873,2874,1,0,0,0,2874,2872,1,0,0,0,2874,2875, + 1,0,0,0,2875,2877,1,0,0,0,2876,2872,1,0,0,0,2876,2877,1,0,0,0,2877, + 2879,1,0,0,0,2878,2880,3,214,107,0,2879,2878,1,0,0,0,2879,2880,1, + 0,0,0,2880,209,1,0,0,0,2881,2883,7,34,0,0,2882,2884,3,310,155,0, + 2883,2882,1,0,0,0,2883,2884,1,0,0,0,2884,2888,1,0,0,0,2885,2886, + 5,269,0,0,2886,2888,7,34,0,0,2887,2881,1,0,0,0,2887,2885,1,0,0,0, + 2888,211,1,0,0,0,2889,2890,5,138,0,0,2890,2891,5,63,0,0,2891,2892, + 5,174,0,0,2892,2893,5,381,0,0,2893,2907,3,824,412,0,2894,2896,3, + 210,105,0,2895,2894,1,0,0,0,2896,2897,1,0,0,0,2897,2895,1,0,0,0, + 2897,2898,1,0,0,0,2898,2900,1,0,0,0,2899,2895,1,0,0,0,2899,2900, + 1,0,0,0,2900,2901,1,0,0,0,2901,2908,3,216,108,0,2902,2904,3,210, + 105,0,2903,2902,1,0,0,0,2904,2905,1,0,0,0,2905,2903,1,0,0,0,2905, + 2906,1,0,0,0,2906,2908,1,0,0,0,2907,2899,1,0,0,0,2907,2903,1,0,0, + 0,2908,213,1,0,0,0,2909,2910,5,280,0,0,2910,2911,5,2,0,0,2911,2916, + 3,220,110,0,2912,2913,5,6,0,0,2913,2915,3,220,110,0,2914,2912,1, + 0,0,0,2915,2918,1,0,0,0,2916,2914,1,0,0,0,2916,2917,1,0,0,0,2917, + 2919,1,0,0,0,2918,2916,1,0,0,0,2919,2920,5,3,0,0,2920,215,1,0,0, + 0,2921,2922,5,280,0,0,2922,2923,5,2,0,0,2923,2928,3,218,109,0,2924, + 2925,5,6,0,0,2925,2927,3,218,109,0,2926,2924,1,0,0,0,2927,2930,1, + 0,0,0,2928,2926,1,0,0,0,2928,2929,1,0,0,0,2929,2931,1,0,0,0,2930, + 2928,1,0,0,0,2931,2932,5,3,0,0,2932,217,1,0,0,0,2933,2934,7,35,0, + 0,2934,2935,3,220,110,0,2935,219,1,0,0,0,2936,2937,3,830,415,0,2937, + 2938,3,814,407,0,2938,221,1,0,0,0,2939,2940,5,46,0,0,2940,2942,5, + 331,0,0,2941,2943,3,288,144,0,2942,2941,1,0,0,0,2942,2943,1,0,0, + 0,2943,2944,1,0,0,0,2944,2947,3,824,412,0,2945,2946,5,360,0,0,2946, + 2948,3,814,407,0,2947,2945,1,0,0,0,2947,2948,1,0,0,0,2948,2950,1, + 0,0,0,2949,2951,3,224,112,0,2950,2949,1,0,0,0,2950,2951,1,0,0,0, + 2951,2952,1,0,0,0,2952,2953,5,63,0,0,2953,2954,5,174,0,0,2954,2955, + 5,381,0,0,2955,2957,3,824,412,0,2956,2958,3,214,107,0,2957,2956, + 1,0,0,0,2957,2958,1,0,0,0,2958,223,1,0,0,0,2959,2962,5,375,0,0,2960, + 2963,3,814,407,0,2961,2963,5,78,0,0,2962,2960,1,0,0,0,2962,2961, + 1,0,0,0,2963,225,1,0,0,0,2964,2965,5,138,0,0,2965,2966,5,331,0,0, + 2966,2972,3,824,412,0,2967,2973,3,216,108,0,2968,2970,3,224,112, + 0,2969,2971,3,216,108,0,2970,2969,1,0,0,0,2970,2971,1,0,0,0,2971, + 2973,1,0,0,0,2972,2967,1,0,0,0,2972,2968,1,0,0,0,2973,227,1,0,0, + 0,2974,2975,5,46,0,0,2975,2976,5,63,0,0,2976,2978,5,92,0,0,2977, + 2979,3,288,144,0,2978,2977,1,0,0,0,2978,2979,1,0,0,0,2979,2980,1, + 0,0,0,2980,2981,3,776,388,0,2981,2983,5,2,0,0,2982,2984,3,120,60, + 0,2983,2982,1,0,0,0,2983,2984,1,0,0,0,2984,2985,1,0,0,0,2985,2987, + 5,3,0,0,2986,2988,3,158,79,0,2987,2986,1,0,0,0,2987,2988,1,0,0,0, + 2988,2989,1,0,0,0,2989,2990,5,331,0,0,2990,2992,3,824,412,0,2991, + 2993,3,214,107,0,2992,2991,1,0,0,0,2992,2993,1,0,0,0,2993,3014,1, + 0,0,0,2994,2995,5,46,0,0,2995,2996,5,63,0,0,2996,2998,5,92,0,0,2997, + 2999,3,288,144,0,2998,2997,1,0,0,0,2998,2999,1,0,0,0,2999,3000,1, + 0,0,0,3000,3001,3,776,388,0,3001,3002,5,285,0,0,3002,3003,5,275, + 0,0,3003,3005,3,778,389,0,3004,3006,3,118,59,0,3005,3004,1,0,0,0, + 3005,3006,1,0,0,0,3006,3007,1,0,0,0,3007,3008,3,98,49,0,3008,3009, + 5,331,0,0,3009,3011,3,824,412,0,3010,3012,3,214,107,0,3011,3010, + 1,0,0,0,3011,3012,1,0,0,0,3012,3014,1,0,0,0,3013,2974,1,0,0,0,3013, + 2994,1,0,0,0,3014,229,1,0,0,0,3015,3016,5,444,0,0,3016,3017,5,63, + 0,0,3017,3018,5,323,0,0,3018,3028,3,794,397,0,3019,3020,5,74,0,0, + 3020,3023,5,94,0,0,3021,3023,5,59,0,0,3022,3019,1,0,0,0,3022,3021, + 1,0,0,0,3023,3024,1,0,0,0,3024,3025,5,2,0,0,3025,3026,3,624,312, + 0,3026,3027,5,3,0,0,3027,3029,1,0,0,0,3028,3022,1,0,0,0,3028,3029, + 1,0,0,0,3029,3030,1,0,0,0,3030,3031,5,64,0,0,3031,3032,5,331,0,0, + 3032,3033,3,824,412,0,3033,3034,5,71,0,0,3034,3036,3,824,412,0,3035, + 3037,3,214,107,0,3036,3035,1,0,0,0,3036,3037,1,0,0,0,3037,231,1, + 0,0,0,3038,3039,5,46,0,0,3039,3040,5,99,0,0,3040,3042,5,257,0,0, + 3041,3043,3,288,144,0,3042,3041,1,0,0,0,3042,3043,1,0,0,0,3043,3044, + 1,0,0,0,3044,3047,5,62,0,0,3045,3048,3,820,410,0,3046,3048,5,99, + 0,0,3047,3045,1,0,0,0,3047,3046,1,0,0,0,3048,3049,1,0,0,0,3049,3050, + 5,331,0,0,3050,3052,3,824,412,0,3051,3053,3,214,107,0,3052,3051, + 1,0,0,0,3052,3053,1,0,0,0,3053,233,1,0,0,0,3054,3055,5,138,0,0,3055, + 3056,5,99,0,0,3056,3057,5,257,0,0,3057,3060,5,62,0,0,3058,3061,3, + 820,410,0,3059,3061,5,99,0,0,3060,3058,1,0,0,0,3060,3059,1,0,0,0, + 3061,3062,1,0,0,0,3062,3063,5,331,0,0,3063,3064,3,824,412,0,3064, + 3065,3,216,108,0,3065,235,1,0,0,0,3066,3067,5,46,0,0,3067,3068,5, + 445,0,0,3068,3069,3,824,412,0,3069,3070,5,80,0,0,3070,3077,3,784, + 392,0,3071,3075,5,36,0,0,3072,3076,5,541,0,0,3073,3076,5,542,0,0, + 3074,3076,3,832,416,0,3075,3072,1,0,0,0,3075,3073,1,0,0,0,3075,3074, + 1,0,0,0,3076,3078,1,0,0,0,3077,3071,1,0,0,0,3077,3078,1,0,0,0,3078, + 3081,1,0,0,0,3079,3080,5,62,0,0,3080,3082,7,36,0,0,3081,3079,1,0, + 0,0,3081,3082,1,0,0,0,3082,3085,1,0,0,0,3083,3084,5,94,0,0,3084, + 3086,3,822,411,0,3085,3083,1,0,0,0,3085,3086,1,0,0,0,3086,3088,1, + 0,0,0,3087,3089,3,244,122,0,3088,3087,1,0,0,0,3088,3089,1,0,0,0, + 3089,3091,1,0,0,0,3090,3092,3,246,123,0,3091,3090,1,0,0,0,3091,3092, + 1,0,0,0,3092,237,1,0,0,0,3093,3094,5,138,0,0,3094,3095,5,445,0,0, + 3095,3096,3,824,412,0,3096,3097,5,80,0,0,3097,3100,3,784,392,0,3098, + 3099,5,94,0,0,3099,3101,3,822,411,0,3100,3098,1,0,0,0,3100,3101, + 1,0,0,0,3101,3103,1,0,0,0,3102,3104,3,244,122,0,3103,3102,1,0,0, + 0,3103,3104,1,0,0,0,3104,3106,1,0,0,0,3105,3107,3,246,123,0,3106, + 3105,1,0,0,0,3106,3107,1,0,0,0,3107,239,1,0,0,0,3108,3109,5,138, + 0,0,3109,3110,5,296,0,0,3110,3112,3,800,400,0,3111,3113,3,362,181, + 0,3112,3111,1,0,0,0,3112,3113,1,0,0,0,3113,3140,1,0,0,0,3114,3118, + 3,242,121,0,3115,3117,3,242,121,0,3116,3115,1,0,0,0,3117,3120,1, + 0,0,0,3118,3116,1,0,0,0,3118,3119,1,0,0,0,3119,3122,1,0,0,0,3120, + 3118,1,0,0,0,3121,3123,5,315,0,0,3122,3121,1,0,0,0,3122,3123,1,0, + 0,0,3123,3141,1,0,0,0,3124,3125,5,309,0,0,3125,3126,5,94,0,0,3126, + 3141,3,802,401,0,3127,3128,5,282,0,0,3128,3129,5,94,0,0,3129,3141, + 3,820,410,0,3130,3131,5,333,0,0,3131,3132,5,323,0,0,3132,3141,3, + 32,16,0,3133,3135,5,269,0,0,3134,3133,1,0,0,0,3134,3135,1,0,0,0, + 3135,3136,1,0,0,0,3136,3137,5,462,0,0,3137,3138,5,80,0,0,3138,3139, + 5,204,0,0,3139,3141,3,824,412,0,3140,3114,1,0,0,0,3140,3124,1,0, + 0,0,3140,3127,1,0,0,0,3140,3130,1,0,0,0,3140,3134,1,0,0,0,3141,241, + 1,0,0,0,3142,3144,5,205,0,0,3143,3142,1,0,0,0,3143,3144,1,0,0,0, + 3144,3145,1,0,0,0,3145,3146,5,327,0,0,3146,3153,5,243,0,0,3147,3149, + 5,205,0,0,3148,3147,1,0,0,0,3148,3149,1,0,0,0,3149,3150,1,0,0,0, + 3150,3151,5,327,0,0,3151,3153,5,181,0,0,3152,3143,1,0,0,0,3152,3148, + 1,0,0,0,3153,3172,1,0,0,0,3154,3155,5,333,0,0,3155,3156,3,824,412, + 0,3156,3159,7,37,0,0,3157,3160,3,824,412,0,3158,3160,5,53,0,0,3159, + 3157,1,0,0,0,3159,3158,1,0,0,0,3160,3172,1,0,0,0,3161,3162,5,333, + 0,0,3162,3163,3,824,412,0,3163,3164,5,64,0,0,3164,3165,5,434,0,0, + 3165,3172,1,0,0,0,3166,3169,5,313,0,0,3167,3170,3,824,412,0,3168, + 3170,5,30,0,0,3169,3167,1,0,0,0,3169,3168,1,0,0,0,3170,3172,1,0, + 0,0,3171,3152,1,0,0,0,3171,3154,1,0,0,0,3171,3161,1,0,0,0,3171,3166, + 1,0,0,0,3172,243,1,0,0,0,3173,3174,5,100,0,0,3174,3175,5,2,0,0,3175, + 3176,3,670,335,0,3176,3177,5,3,0,0,3177,245,1,0,0,0,3178,3179,5, + 105,0,0,3179,3180,5,42,0,0,3180,3181,5,2,0,0,3181,3182,3,670,335, + 0,3182,3183,5,3,0,0,3183,247,1,0,0,0,3184,3185,5,46,0,0,3185,3186, + 5,131,0,0,3186,3187,5,446,0,0,3187,3188,3,824,412,0,3188,3189,5, + 360,0,0,3189,3190,7,38,0,0,3190,3191,5,215,0,0,3191,3192,3,310,155, + 0,3192,249,1,0,0,0,3193,3195,5,46,0,0,3194,3196,3,360,180,0,3195, + 3194,1,0,0,0,3195,3196,1,0,0,0,3196,3197,1,0,0,0,3197,3198,5,357, + 0,0,3198,3199,3,824,412,0,3199,3200,3,252,126,0,3200,3201,3,254, + 127,0,3201,3202,5,80,0,0,3202,3214,3,778,389,0,3203,3210,5,447,0, + 0,3204,3205,7,39,0,0,3205,3207,7,40,0,0,3206,3208,5,36,0,0,3207, + 3206,1,0,0,0,3207,3208,1,0,0,0,3208,3209,1,0,0,0,3209,3211,3,824, + 412,0,3210,3204,1,0,0,0,3211,3212,1,0,0,0,3212,3210,1,0,0,0,3212, + 3213,1,0,0,0,3213,3215,1,0,0,0,3214,3203,1,0,0,0,3214,3215,1,0,0, + 0,3215,3221,1,0,0,0,3216,3218,5,62,0,0,3217,3219,5,192,0,0,3218, + 3217,1,0,0,0,3218,3219,1,0,0,0,3219,3220,1,0,0,0,3220,3222,7,41, + 0,0,3221,3216,1,0,0,0,3221,3222,1,0,0,0,3222,3224,1,0,0,0,3223,3225, + 3,258,129,0,3224,3223,1,0,0,0,3224,3225,1,0,0,0,3225,3226,1,0,0, + 0,3226,3227,5,202,0,0,3227,3228,3,260,130,0,3228,3229,5,2,0,0,3229, + 3230,3,262,131,0,3230,3231,5,3,0,0,3231,3272,1,0,0,0,3232,3234,5, + 46,0,0,3233,3235,3,360,180,0,3234,3233,1,0,0,0,3234,3235,1,0,0,0, + 3235,3237,1,0,0,0,3236,3238,5,45,0,0,3237,3236,1,0,0,0,3237,3238, + 1,0,0,0,3238,3239,1,0,0,0,3239,3240,5,357,0,0,3240,3241,3,824,412, + 0,3241,3242,3,252,126,0,3242,3243,3,254,127,0,3243,3244,5,80,0,0, + 3244,3247,3,778,389,0,3245,3246,5,64,0,0,3246,3248,3,784,392,0,3247, + 3245,1,0,0,0,3247,3248,1,0,0,0,3248,3252,1,0,0,0,3249,3251,3,266, + 133,0,3250,3249,1,0,0,0,3251,3254,1,0,0,0,3252,3250,1,0,0,0,3252, + 3253,1,0,0,0,3253,3260,1,0,0,0,3254,3252,1,0,0,0,3255,3257,5,62, + 0,0,3256,3258,5,192,0,0,3257,3256,1,0,0,0,3257,3258,1,0,0,0,3258, + 3259,1,0,0,0,3259,3261,7,41,0,0,3260,3255,1,0,0,0,3260,3261,1,0, + 0,0,3261,3263,1,0,0,0,3262,3264,3,258,129,0,3263,3262,1,0,0,0,3263, + 3264,1,0,0,0,3264,3265,1,0,0,0,3265,3266,5,202,0,0,3266,3267,3,260, + 130,0,3267,3268,5,2,0,0,3268,3269,3,262,131,0,3269,3270,5,3,0,0, + 3270,3272,1,0,0,0,3271,3193,1,0,0,0,3271,3232,1,0,0,0,3272,251,1, + 0,0,0,3273,3278,5,145,0,0,3274,3278,5,135,0,0,3275,3276,5,242,0, + 0,3276,3278,5,275,0,0,3277,3273,1,0,0,0,3277,3274,1,0,0,0,3277,3275, + 1,0,0,0,3278,253,1,0,0,0,3279,3284,3,256,128,0,3280,3281,5,82,0, + 0,3281,3283,3,256,128,0,3282,3280,1,0,0,0,3283,3286,1,0,0,0,3284, + 3282,1,0,0,0,3284,3285,1,0,0,0,3285,255,1,0,0,0,3286,3284,1,0,0, + 0,3287,3296,5,241,0,0,3288,3296,5,182,0,0,3289,3292,5,369,0,0,3290, + 3291,5,275,0,0,3291,3293,3,142,71,0,3292,3290,1,0,0,0,3292,3293, + 1,0,0,0,3293,3296,1,0,0,0,3294,3296,5,358,0,0,3295,3287,1,0,0,0, + 3295,3288,1,0,0,0,3295,3289,1,0,0,0,3295,3294,1,0,0,0,3296,257,1, + 0,0,0,3297,3298,5,102,0,0,3298,3299,5,2,0,0,3299,3300,3,670,335, + 0,3300,3301,5,3,0,0,3301,259,1,0,0,0,3302,3303,5,211,0,0,3303,3307, + 3,812,406,0,3304,3305,5,296,0,0,3305,3307,3,800,400,0,3306,3302, + 1,0,0,0,3306,3304,1,0,0,0,3307,261,1,0,0,0,3308,3311,3,264,132,0, + 3309,3311,1,0,0,0,3310,3308,1,0,0,0,3310,3309,1,0,0,0,3311,3316, + 1,0,0,0,3312,3313,5,6,0,0,3313,3315,3,264,132,0,3314,3312,1,0,0, + 0,3315,3318,1,0,0,0,3316,3314,1,0,0,0,3316,3317,1,0,0,0,3317,263, + 1,0,0,0,3318,3316,1,0,0,0,3319,3324,5,574,0,0,3320,3324,5,576,0, + 0,3321,3324,3,814,407,0,3322,3324,3,830,415,0,3323,3319,1,0,0,0, + 3323,3320,1,0,0,0,3323,3321,1,0,0,0,3323,3322,1,0,0,0,3324,265,1, + 0,0,0,3325,3327,5,77,0,0,3326,3325,1,0,0,0,3326,3327,1,0,0,0,3327, + 3328,1,0,0,0,3328,3336,5,54,0,0,3329,3330,5,69,0,0,3330,3336,7,9, + 0,0,3331,3332,5,77,0,0,3332,3336,5,371,0,0,3333,3334,5,269,0,0,3334, + 3336,5,228,0,0,3335,3326,1,0,0,0,3335,3329,1,0,0,0,3335,3331,1,0, + 0,0,3335,3333,1,0,0,0,3336,267,1,0,0,0,3337,3338,5,46,0,0,3338,3339, + 5,198,0,0,3339,3340,5,357,0,0,3340,3341,3,824,412,0,3341,3342,5, + 80,0,0,3342,3352,3,830,415,0,3343,3344,5,102,0,0,3344,3349,3,270, + 135,0,3345,3346,5,33,0,0,3346,3348,3,270,135,0,3347,3345,1,0,0,0, + 3348,3351,1,0,0,0,3349,3347,1,0,0,0,3349,3350,1,0,0,0,3350,3353, + 1,0,0,0,3351,3349,1,0,0,0,3352,3343,1,0,0,0,3352,3353,1,0,0,0,3353, + 3354,1,0,0,0,3354,3355,5,202,0,0,3355,3356,3,260,130,0,3356,3357, + 5,2,0,0,3357,3358,5,3,0,0,3358,269,1,0,0,0,3359,3360,3,824,412,0, + 3360,3361,5,68,0,0,3361,3362,5,2,0,0,3362,3366,3,814,407,0,3363, + 3365,3,456,228,0,3364,3363,1,0,0,0,3365,3368,1,0,0,0,3366,3364,1, + 0,0,0,3366,3367,1,0,0,0,3367,3369,1,0,0,0,3368,3366,1,0,0,0,3369, + 3370,5,3,0,0,3370,271,1,0,0,0,3371,3372,5,138,0,0,3372,3373,5,198, + 0,0,3373,3374,5,357,0,0,3374,3380,3,824,412,0,3375,3377,5,193,0, + 0,3376,3378,7,14,0,0,3377,3376,1,0,0,0,3377,3378,1,0,0,0,3378,3381, + 1,0,0,0,3379,3381,5,186,0,0,3380,3375,1,0,0,0,3380,3379,1,0,0,0, + 3381,273,1,0,0,0,3382,3383,5,46,0,0,3383,3384,5,140,0,0,3384,3385, + 3,310,155,0,3385,3386,5,42,0,0,3386,3387,5,2,0,0,3387,3388,3,670, + 335,0,3388,3392,5,3,0,0,3389,3391,3,266,133,0,3390,3389,1,0,0,0, + 3391,3394,1,0,0,0,3392,3390,1,0,0,0,3392,3393,1,0,0,0,3393,275,1, + 0,0,0,3394,3392,1,0,0,0,3395,3397,5,46,0,0,3396,3398,3,360,180,0, + 3397,3396,1,0,0,0,3397,3398,1,0,0,0,3398,3399,1,0,0,0,3399,3400, + 5,136,0,0,3400,3415,3,812,406,0,3401,3402,3,386,193,0,3402,3403, + 3,278,139,0,3403,3416,1,0,0,0,3404,3405,5,2,0,0,3405,3410,3,284, + 142,0,3406,3407,5,6,0,0,3407,3409,3,284,142,0,3408,3406,1,0,0,0, + 3409,3412,1,0,0,0,3410,3408,1,0,0,0,3410,3411,1,0,0,0,3411,3413, + 1,0,0,0,3412,3410,1,0,0,0,3413,3414,5,3,0,0,3414,3416,1,0,0,0,3415, + 3401,1,0,0,0,3415,3404,1,0,0,0,3416,3474,1,0,0,0,3417,3418,5,46, + 0,0,3418,3419,5,278,0,0,3419,3420,3,408,204,0,3420,3421,3,278,139, + 0,3421,3474,1,0,0,0,3422,3423,5,46,0,0,3423,3424,5,360,0,0,3424, + 3425,3,310,155,0,3425,3443,5,36,0,0,3426,3428,5,2,0,0,3427,3429, + 3,638,319,0,3428,3427,1,0,0,0,3428,3429,1,0,0,0,3429,3430,1,0,0, + 0,3430,3444,5,3,0,0,3431,3432,5,196,0,0,3432,3440,5,2,0,0,3433,3437, + 3,814,407,0,3434,3436,3,456,228,0,3435,3434,1,0,0,0,3436,3439,1, + 0,0,0,3437,3435,1,0,0,0,3437,3438,1,0,0,0,3438,3441,1,0,0,0,3439, + 3437,1,0,0,0,3440,3433,1,0,0,0,3440,3441,1,0,0,0,3441,3442,1,0,0, + 0,3442,3444,5,3,0,0,3443,3426,1,0,0,0,3443,3431,1,0,0,0,3444,3474, + 1,0,0,0,3445,3446,5,46,0,0,3446,3447,5,360,0,0,3447,3453,3,310,155, + 0,3448,3449,5,36,0,0,3449,3451,5,299,0,0,3450,3448,1,0,0,0,3450, + 3451,1,0,0,0,3451,3452,1,0,0,0,3452,3454,3,278,139,0,3453,3450,1, + 0,0,0,3453,3454,1,0,0,0,3454,3474,1,0,0,0,3455,3456,5,46,0,0,3456, + 3457,5,355,0,0,3457,3458,5,325,0,0,3458,3459,7,42,0,0,3459,3460, + 3,310,155,0,3460,3461,3,278,139,0,3461,3474,1,0,0,0,3462,3463,5, + 46,0,0,3463,3465,5,108,0,0,3464,3466,3,288,144,0,3465,3464,1,0,0, + 0,3465,3466,1,0,0,0,3466,3467,1,0,0,0,3467,3471,3,310,155,0,3468, + 3472,3,278,139,0,3469,3470,5,64,0,0,3470,3472,3,310,155,0,3471,3468, + 1,0,0,0,3471,3469,1,0,0,0,3472,3474,1,0,0,0,3473,3395,1,0,0,0,3473, + 3417,1,0,0,0,3473,3422,1,0,0,0,3473,3445,1,0,0,0,3473,3455,1,0,0, + 0,3473,3462,1,0,0,0,3474,277,1,0,0,0,3475,3476,5,2,0,0,3476,3481, + 3,280,140,0,3477,3478,5,6,0,0,3478,3480,3,280,140,0,3479,3477,1, + 0,0,0,3480,3483,1,0,0,0,3481,3479,1,0,0,0,3481,3482,1,0,0,0,3482, + 3484,1,0,0,0,3483,3481,1,0,0,0,3484,3485,5,3,0,0,3485,279,1,0,0, + 0,3486,3489,3,830,415,0,3487,3488,5,10,0,0,3488,3490,3,282,141,0, + 3489,3487,1,0,0,0,3489,3490,1,0,0,0,3490,281,1,0,0,0,3491,3498,3, + 382,191,0,3492,3498,3,840,420,0,3493,3498,3,724,362,0,3494,3498, + 3,196,98,0,3495,3498,3,814,407,0,3496,3498,5,407,0,0,3497,3491,1, + 0,0,0,3497,3492,1,0,0,0,3497,3493,1,0,0,0,3497,3494,1,0,0,0,3497, + 3495,1,0,0,0,3497,3496,1,0,0,0,3498,283,1,0,0,0,3499,3500,3,832, + 416,0,3500,3501,5,10,0,0,3501,3502,3,282,141,0,3502,285,1,0,0,0, + 3503,3504,5,138,0,0,3504,3505,5,360,0,0,3505,3506,3,310,155,0,3506, + 3507,5,133,0,0,3507,3509,5,450,0,0,3508,3510,3,288,144,0,3509,3508, + 1,0,0,0,3509,3510,1,0,0,0,3510,3511,1,0,0,0,3511,3514,3,814,407, + 0,3512,3513,7,43,0,0,3513,3515,3,814,407,0,3514,3512,1,0,0,0,3514, + 3515,1,0,0,0,3515,3526,1,0,0,0,3516,3517,5,138,0,0,3517,3518,5,360, + 0,0,3518,3519,3,310,155,0,3519,3520,5,309,0,0,3520,3521,5,450,0, + 0,3521,3522,3,814,407,0,3522,3523,5,94,0,0,3523,3524,3,814,407,0, + 3524,3526,1,0,0,0,3525,3503,1,0,0,0,3525,3516,1,0,0,0,3526,287,1, + 0,0,0,3527,3528,5,220,0,0,3528,3529,5,77,0,0,3529,3530,5,396,0,0, + 3530,289,1,0,0,0,3531,3532,5,46,0,0,3532,3533,5,278,0,0,3533,3534, + 5,156,0,0,3534,3536,3,310,155,0,3535,3537,5,53,0,0,3536,3535,1,0, + 0,0,3536,3537,1,0,0,0,3537,3538,1,0,0,0,3538,3539,5,62,0,0,3539, + 3540,5,360,0,0,3540,3541,3,648,324,0,3541,3544,3,164,82,0,3542,3543, + 5,206,0,0,3543,3545,3,310,155,0,3544,3542,1,0,0,0,3544,3545,1,0, + 0,0,3545,3546,1,0,0,0,3546,3547,5,36,0,0,3547,3552,3,292,146,0,3548, + 3549,5,6,0,0,3549,3551,3,292,146,0,3550,3548,1,0,0,0,3551,3554,1, + 0,0,0,3552,3550,1,0,0,0,3552,3553,1,0,0,0,3553,291,1,0,0,0,3554, + 3552,1,0,0,0,3555,3556,5,278,0,0,3556,3557,5,574,0,0,3557,3559,3, + 408,204,0,3558,3560,3,406,203,0,3559,3558,1,0,0,0,3559,3560,1,0, + 0,0,3560,3568,1,0,0,0,3561,3566,5,62,0,0,3562,3567,5,325,0,0,3563, + 3564,5,83,0,0,3564,3565,5,147,0,0,3565,3567,3,310,155,0,3566,3562, + 1,0,0,0,3566,3563,1,0,0,0,3567,3569,1,0,0,0,3568,3561,1,0,0,0,3568, + 3569,1,0,0,0,3569,3571,1,0,0,0,3570,3572,5,302,0,0,3571,3570,1,0, + 0,0,3571,3572,1,0,0,0,3572,3582,1,0,0,0,3573,3574,5,211,0,0,3574, + 3576,5,574,0,0,3575,3577,3,522,261,0,3576,3575,1,0,0,0,3576,3577, + 1,0,0,0,3577,3578,1,0,0,0,3578,3582,3,376,188,0,3579,3580,5,345, + 0,0,3580,3582,3,648,324,0,3581,3555,1,0,0,0,3581,3573,1,0,0,0,3581, + 3579,1,0,0,0,3582,293,1,0,0,0,3583,3584,5,46,0,0,3584,3585,5,278, + 0,0,3585,3586,5,206,0,0,3586,3587,3,310,155,0,3587,3588,3,164,82, + 0,3588,295,1,0,0,0,3589,3590,5,138,0,0,3590,3591,5,278,0,0,3591, + 3592,5,206,0,0,3592,3593,3,310,155,0,3593,3612,3,164,82,0,3594,3595, + 5,133,0,0,3595,3600,3,292,146,0,3596,3597,5,6,0,0,3597,3599,3,292, + 146,0,3598,3596,1,0,0,0,3599,3602,1,0,0,0,3600,3598,1,0,0,0,3600, + 3601,1,0,0,0,3601,3613,1,0,0,0,3602,3600,1,0,0,0,3603,3604,5,191, + 0,0,3604,3609,3,298,149,0,3605,3606,5,6,0,0,3606,3608,3,298,149, + 0,3607,3605,1,0,0,0,3608,3611,1,0,0,0,3609,3607,1,0,0,0,3609,3610, + 1,0,0,0,3610,3613,1,0,0,0,3611,3609,1,0,0,0,3612,3594,1,0,0,0,3612, + 3603,1,0,0,0,3613,297,1,0,0,0,3614,3615,7,44,0,0,3615,3616,5,574, + 0,0,3616,3617,3,522,261,0,3617,299,1,0,0,0,3618,3619,5,301,0,0,3619, + 3620,5,281,0,0,3620,3621,5,147,0,0,3621,3622,3,822,411,0,3622,3623, + 5,94,0,0,3623,3624,3,820,410,0,3624,301,1,0,0,0,3625,3648,5,191, + 0,0,3626,3649,5,328,0,0,3627,3649,5,226,0,0,3628,3649,5,108,0,0, + 3629,3649,5,168,0,0,3630,3649,5,342,0,0,3631,3649,5,452,0,0,3632, + 3649,5,331,0,0,3633,3634,5,131,0,0,3634,3649,5,446,0,0,3635,3636, + 5,198,0,0,3636,3649,5,357,0,0,3637,3649,5,204,0,0,3638,3640,5,295, + 0,0,3639,3638,1,0,0,0,3639,3640,1,0,0,0,3640,3641,1,0,0,0,3641,3649, + 5,247,0,0,3642,3643,5,63,0,0,3643,3644,5,174,0,0,3644,3649,5,381, + 0,0,3645,3646,5,355,0,0,3646,3647,5,325,0,0,3647,3649,7,42,0,0,3648, + 3626,1,0,0,0,3648,3627,1,0,0,0,3648,3628,1,0,0,0,3648,3629,1,0,0, + 0,3648,3630,1,0,0,0,3648,3631,1,0,0,0,3648,3632,1,0,0,0,3648,3633, + 1,0,0,0,3648,3635,1,0,0,0,3648,3637,1,0,0,0,3648,3639,1,0,0,0,3648, + 3642,1,0,0,0,3648,3645,1,0,0,0,3649,3651,1,0,0,0,3650,3652,3,416, + 208,0,3651,3650,1,0,0,0,3651,3652,1,0,0,0,3652,3653,1,0,0,0,3653, + 3655,3,788,394,0,3654,3656,3,88,44,0,3655,3654,1,0,0,0,3655,3656, + 1,0,0,0,3656,3833,1,0,0,0,3657,3659,5,191,0,0,3658,3660,5,259,0, + 0,3659,3658,1,0,0,0,3659,3660,1,0,0,0,3660,3661,1,0,0,0,3661,3663, + 5,376,0,0,3662,3664,3,416,208,0,3663,3662,1,0,0,0,3663,3664,1,0, + 0,0,3664,3665,1,0,0,0,3665,3670,3,782,391,0,3666,3667,5,6,0,0,3667, + 3669,3,782,391,0,3668,3666,1,0,0,0,3669,3672,1,0,0,0,3670,3668,1, + 0,0,0,3670,3671,1,0,0,0,3671,3674,1,0,0,0,3672,3670,1,0,0,0,3673, + 3675,3,88,44,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0,3675,3833,1,0, + 0,0,3676,3678,5,191,0,0,3677,3679,5,63,0,0,3678,3677,1,0,0,0,3678, + 3679,1,0,0,0,3679,3680,1,0,0,0,3680,3682,5,92,0,0,3681,3683,3,416, + 208,0,3682,3681,1,0,0,0,3682,3683,1,0,0,0,3683,3684,1,0,0,0,3684, + 3686,3,766,383,0,3685,3687,3,88,44,0,3686,3685,1,0,0,0,3686,3687, + 1,0,0,0,3687,3833,1,0,0,0,3688,3689,5,191,0,0,3689,3691,5,323,0, + 0,3690,3692,3,416,208,0,3691,3690,1,0,0,0,3691,3692,1,0,0,0,3692, + 3693,1,0,0,0,3693,3695,3,768,384,0,3694,3696,3,88,44,0,3695,3694, + 1,0,0,0,3695,3696,1,0,0,0,3696,3833,1,0,0,0,3697,3698,5,191,0,0, + 3698,3700,7,45,0,0,3699,3701,3,416,208,0,3700,3699,1,0,0,0,3700, + 3701,1,0,0,0,3701,3702,1,0,0,0,3702,3703,3,824,412,0,3703,3704,5, + 80,0,0,3704,3706,3,310,155,0,3705,3707,3,88,44,0,3706,3705,1,0,0, + 0,3706,3707,1,0,0,0,3707,3833,1,0,0,0,3708,3709,5,191,0,0,3709,3711, + 7,33,0,0,3710,3712,3,416,208,0,3711,3710,1,0,0,0,3711,3712,1,0,0, + 0,3712,3713,1,0,0,0,3713,3718,3,648,324,0,3714,3715,5,6,0,0,3715, + 3717,3,648,324,0,3716,3714,1,0,0,0,3717,3720,1,0,0,0,3718,3716,1, + 0,0,0,3718,3719,1,0,0,0,3719,3722,1,0,0,0,3720,3718,1,0,0,0,3721, + 3723,3,88,44,0,3722,3721,1,0,0,0,3722,3723,1,0,0,0,3723,3833,1,0, + 0,0,3724,3725,5,191,0,0,3725,3726,5,226,0,0,3726,3728,5,109,0,0, + 3727,3729,3,416,208,0,3728,3727,1,0,0,0,3728,3729,1,0,0,0,3729,3730, + 1,0,0,0,3730,3732,3,308,154,0,3731,3733,3,88,44,0,3732,3731,1,0, + 0,0,3732,3733,1,0,0,0,3733,3833,1,0,0,0,3734,3735,5,191,0,0,3735, + 3737,5,41,0,0,3736,3738,3,416,208,0,3737,3736,1,0,0,0,3737,3738, + 1,0,0,0,3738,3739,1,0,0,0,3739,3740,5,2,0,0,3740,3741,3,648,324, + 0,3741,3742,5,36,0,0,3742,3743,3,648,324,0,3743,3745,5,3,0,0,3744, + 3746,3,88,44,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746,3833,1,0, + 0,0,3747,3748,5,191,0,0,3748,3749,5,278,0,0,3749,3751,7,32,0,0,3750, + 3752,3,416,208,0,3751,3750,1,0,0,0,3751,3752,1,0,0,0,3752,3753,1, + 0,0,0,3753,3754,3,310,155,0,3754,3756,3,164,82,0,3755,3757,3,88, + 44,0,3756,3755,1,0,0,0,3756,3757,1,0,0,0,3757,3833,1,0,0,0,3758, + 3759,5,191,0,0,3759,3760,5,281,0,0,3760,3761,5,147,0,0,3761,3763, + 3,822,411,0,3762,3764,3,88,44,0,3763,3762,1,0,0,0,3763,3764,1,0, + 0,0,3764,3833,1,0,0,0,3765,3766,5,191,0,0,3766,3768,5,451,0,0,3767, + 3769,3,416,208,0,3768,3767,1,0,0,0,3768,3769,1,0,0,0,3769,3770,1, + 0,0,0,3770,3772,3,824,412,0,3771,3773,3,88,44,0,3772,3771,1,0,0, + 0,3772,3773,1,0,0,0,3773,3833,1,0,0,0,3774,3775,5,191,0,0,3775,3777, + 5,351,0,0,3776,3778,3,416,208,0,3777,3776,1,0,0,0,3777,3778,1,0, + 0,0,3778,3779,1,0,0,0,3779,3833,3,774,387,0,3780,3781,5,191,0,0, + 3781,3783,5,443,0,0,3782,3784,3,416,208,0,3783,3782,1,0,0,0,3783, + 3784,1,0,0,0,3784,3785,1,0,0,0,3785,3786,5,62,0,0,3786,3787,3,648, + 324,0,3787,3788,5,247,0,0,3788,3790,3,824,412,0,3789,3791,3,88,44, + 0,3790,3789,1,0,0,0,3790,3791,1,0,0,0,3791,3833,1,0,0,0,3792,3793, + 5,191,0,0,3793,3795,7,46,0,0,3794,3796,3,416,208,0,3795,3794,1,0, + 0,0,3795,3796,1,0,0,0,3796,3797,1,0,0,0,3797,3833,3,822,411,0,3798, + 3799,5,191,0,0,3799,3800,5,99,0,0,3800,3802,5,257,0,0,3801,3803, + 3,416,208,0,3802,3801,1,0,0,0,3802,3803,1,0,0,0,3803,3804,1,0,0, + 0,3804,3807,5,62,0,0,3805,3808,3,820,410,0,3806,3808,5,99,0,0,3807, + 3805,1,0,0,0,3807,3806,1,0,0,0,3808,3809,1,0,0,0,3809,3810,5,331, + 0,0,3810,3833,3,824,412,0,3811,3812,5,191,0,0,3812,3814,5,175,0, + 0,3813,3815,3,416,208,0,3814,3813,1,0,0,0,3814,3815,1,0,0,0,3815, + 3816,1,0,0,0,3816,3830,3,792,396,0,3817,3819,5,105,0,0,3818,3817, + 1,0,0,0,3818,3819,1,0,0,0,3819,3820,1,0,0,0,3820,3821,5,2,0,0,3821, + 3826,5,209,0,0,3822,3823,5,6,0,0,3823,3825,5,209,0,0,3824,3822,1, + 0,0,0,3825,3828,1,0,0,0,3826,3824,1,0,0,0,3826,3827,1,0,0,0,3827, + 3829,1,0,0,0,3828,3826,1,0,0,0,3829,3831,5,3,0,0,3830,3818,1,0,0, + 0,3830,3831,1,0,0,0,3831,3833,1,0,0,0,3832,3625,1,0,0,0,3832,3657, + 1,0,0,0,3832,3676,1,0,0,0,3832,3688,1,0,0,0,3832,3697,1,0,0,0,3832, + 3708,1,0,0,0,3832,3724,1,0,0,0,3832,3734,1,0,0,0,3832,3747,1,0,0, + 0,3832,3758,1,0,0,0,3832,3765,1,0,0,0,3832,3774,1,0,0,0,3832,3780, + 1,0,0,0,3832,3792,1,0,0,0,3832,3798,1,0,0,0,3832,3811,1,0,0,0,3833, + 303,1,0,0,0,3834,3836,5,63,0,0,3835,3834,1,0,0,0,3835,3836,1,0,0, + 0,3836,3837,1,0,0,0,3837,3838,5,92,0,0,3838,3851,3,778,389,0,3839, + 3841,5,259,0,0,3840,3839,1,0,0,0,3840,3841,1,0,0,0,3841,3842,1,0, + 0,0,3842,3843,5,376,0,0,3843,3851,3,782,391,0,3844,3845,7,47,0,0, + 3845,3851,3,310,155,0,3846,3847,5,355,0,0,3847,3848,5,325,0,0,3848, + 3849,7,42,0,0,3849,3851,3,310,155,0,3850,3835,1,0,0,0,3850,3840, + 1,0,0,0,3850,3844,1,0,0,0,3850,3846,1,0,0,0,3851,305,1,0,0,0,3852, + 3853,5,198,0,0,3853,3869,5,357,0,0,3854,3855,5,131,0,0,3855,3869, + 5,446,0,0,3856,3869,5,204,0,0,3857,3869,5,452,0,0,3858,3869,5,331, + 0,0,3859,3869,5,318,0,0,3860,3869,5,451,0,0,3861,3862,5,63,0,0,3862, + 3863,5,174,0,0,3863,3869,5,381,0,0,3864,3866,5,295,0,0,3865,3864, + 1,0,0,0,3865,3866,1,0,0,0,3866,3867,1,0,0,0,3867,3869,5,247,0,0, + 3868,3852,1,0,0,0,3868,3854,1,0,0,0,3868,3856,1,0,0,0,3868,3857, + 1,0,0,0,3868,3858,1,0,0,0,3868,3859,1,0,0,0,3868,3860,1,0,0,0,3868, + 3861,1,0,0,0,3868,3865,1,0,0,0,3869,3870,1,0,0,0,3870,3877,3,824, + 412,0,3871,3872,5,323,0,0,3872,3877,3,794,397,0,3873,3874,5,175, + 0,0,3874,3877,3,792,396,0,3875,3877,3,170,85,0,3876,3868,1,0,0,0, + 3876,3871,1,0,0,0,3876,3873,1,0,0,0,3876,3875,1,0,0,0,3877,307,1, + 0,0,0,3878,3883,3,310,155,0,3879,3880,5,6,0,0,3880,3882,3,310,155, + 0,3881,3879,1,0,0,0,3882,3885,1,0,0,0,3883,3881,1,0,0,0,3883,3884, + 1,0,0,0,3884,309,1,0,0,0,3885,3883,1,0,0,0,3886,3888,3,824,412,0, + 3887,3889,3,312,156,0,3888,3887,1,0,0,0,3888,3889,1,0,0,0,3889,311, + 1,0,0,0,3890,3891,5,11,0,0,3891,3893,3,830,415,0,3892,3890,1,0,0, + 0,3893,3894,1,0,0,0,3894,3892,1,0,0,0,3894,3895,1,0,0,0,3895,313, + 1,0,0,0,3896,3898,5,358,0,0,3897,3899,5,92,0,0,3898,3897,1,0,0,0, + 3898,3899,1,0,0,0,3899,3900,1,0,0,0,3900,3905,3,316,158,0,3901,3902, + 5,6,0,0,3902,3904,3,316,158,0,3903,3901,1,0,0,0,3904,3907,1,0,0, + 0,3905,3903,1,0,0,0,3905,3906,1,0,0,0,3906,3910,1,0,0,0,3907,3905, + 1,0,0,0,3908,3909,7,48,0,0,3909,3911,5,219,0,0,3910,3908,1,0,0,0, + 3910,3911,1,0,0,0,3911,3913,1,0,0,0,3912,3914,3,88,44,0,3913,3912, + 1,0,0,0,3913,3914,1,0,0,0,3914,315,1,0,0,0,3915,3917,5,81,0,0,3916, + 3915,1,0,0,0,3916,3917,1,0,0,0,3917,3918,1,0,0,0,3918,3920,3,778, + 389,0,3919,3921,5,9,0,0,3920,3919,1,0,0,0,3920,3921,1,0,0,0,3921, + 317,1,0,0,0,3922,3923,5,159,0,0,3923,3982,5,80,0,0,3924,3983,3,304, + 152,0,3925,3983,3,306,153,0,3926,3927,5,44,0,0,3927,3929,3,824,412, + 0,3928,3930,3,312,156,0,3929,3928,1,0,0,0,3929,3930,1,0,0,0,3930, + 3931,1,0,0,0,3931,3932,5,11,0,0,3932,3933,3,804,402,0,3933,3983, + 1,0,0,0,3934,3935,7,33,0,0,3935,3983,3,648,324,0,3936,3937,5,136, + 0,0,3937,3983,3,388,194,0,3938,3939,5,211,0,0,3939,3983,3,376,188, + 0,3940,3941,5,278,0,0,3941,3983,3,410,205,0,3942,3943,5,45,0,0,3943, + 3944,3,824,412,0,3944,3950,5,80,0,0,3945,3951,3,778,389,0,3946,3948, + 5,189,0,0,3947,3946,1,0,0,0,3947,3948,1,0,0,0,3948,3949,1,0,0,0, + 3949,3951,3,310,155,0,3950,3945,1,0,0,0,3950,3947,1,0,0,0,3951,3983, + 1,0,0,0,3952,3953,7,45,0,0,3953,3954,3,824,412,0,3954,3955,5,80, + 0,0,3955,3956,3,310,155,0,3956,3983,1,0,0,0,3957,3958,5,296,0,0, + 3958,3983,3,372,186,0,3959,3960,5,442,0,0,3960,3983,3,368,184,0, + 3961,3962,5,443,0,0,3962,3963,5,62,0,0,3963,3964,3,648,324,0,3964, + 3965,5,247,0,0,3965,3966,3,824,412,0,3966,3983,1,0,0,0,3967,3968, + 5,278,0,0,3968,3969,7,32,0,0,3969,3970,3,310,155,0,3970,3971,3,164, + 82,0,3971,3983,1,0,0,0,3972,3973,5,248,0,0,3973,3974,5,274,0,0,3974, + 3983,3,196,98,0,3975,3976,5,41,0,0,3976,3977,5,2,0,0,3977,3978,3, + 648,324,0,3978,3979,5,36,0,0,3979,3980,3,648,324,0,3980,3981,5,3, + 0,0,3981,3983,1,0,0,0,3982,3924,1,0,0,0,3982,3925,1,0,0,0,3982,3926, + 1,0,0,0,3982,3934,1,0,0,0,3982,3936,1,0,0,0,3982,3938,1,0,0,0,3982, + 3940,1,0,0,0,3982,3942,1,0,0,0,3982,3952,1,0,0,0,3982,3957,1,0,0, + 0,3982,3959,1,0,0,0,3982,3961,1,0,0,0,3982,3967,1,0,0,0,3982,3972, + 1,0,0,0,3982,3975,1,0,0,0,3983,3984,1,0,0,0,3984,3987,5,116,0,0, + 3985,3988,3,814,407,0,3986,3988,5,78,0,0,3987,3985,1,0,0,0,3987, + 3986,1,0,0,0,3988,319,1,0,0,0,3989,3990,5,327,0,0,3990,3993,5,246, + 0,0,3991,3992,5,62,0,0,3992,3994,3,58,29,0,3993,3991,1,0,0,0,3993, + 3994,1,0,0,0,3994,3995,1,0,0,0,3995,4013,5,80,0,0,3996,3997,7,33, + 0,0,3997,4014,3,648,324,0,3998,3999,5,136,0,0,3999,4014,3,388,194, + 0,4000,4001,5,44,0,0,4001,4014,3,804,402,0,4002,4003,5,211,0,0,4003, + 4014,3,376,188,0,4004,4005,5,248,0,0,4005,4006,5,274,0,0,4006,4014, + 3,196,98,0,4007,4008,5,296,0,0,4008,4014,3,372,186,0,4009,4010,5, + 442,0,0,4010,4014,3,368,184,0,4011,4014,3,304,152,0,4012,4014,3, + 306,153,0,4013,3996,1,0,0,0,4013,3998,1,0,0,0,4013,4000,1,0,0,0, + 4013,4002,1,0,0,0,4013,4004,1,0,0,0,4013,4007,1,0,0,0,4013,4009, + 1,0,0,0,4013,4011,1,0,0,0,4013,4012,1,0,0,0,4014,4015,1,0,0,0,4015, + 4018,5,116,0,0,4016,4019,3,814,407,0,4017,4019,5,78,0,0,4018,4016, + 1,0,0,0,4018,4017,1,0,0,0,4019,321,1,0,0,0,4020,4021,7,49,0,0,4021, + 4022,3,324,162,0,4022,323,1,0,0,0,4023,4025,7,50,0,0,4024,4023,1, + 0,0,0,4024,4025,1,0,0,0,4025,4027,1,0,0,0,4026,4028,3,326,163,0, + 4027,4026,1,0,0,0,4027,4028,1,0,0,0,4028,4029,1,0,0,0,4029,4067, + 3,824,412,0,4030,4032,7,51,0,0,4031,4030,1,0,0,0,4031,4032,1,0,0, + 0,4032,4033,1,0,0,0,4033,4035,3,818,409,0,4034,4036,3,326,163,0, + 4035,4034,1,0,0,0,4035,4036,1,0,0,0,4036,4037,1,0,0,0,4037,4038, + 3,824,412,0,4038,4067,1,0,0,0,4039,4041,5,210,0,0,4040,4042,3,818, + 409,0,4041,4040,1,0,0,0,4041,4042,1,0,0,0,4042,4044,1,0,0,0,4043, + 4045,3,326,163,0,4044,4043,1,0,0,0,4044,4045,1,0,0,0,4045,4046,1, + 0,0,0,4046,4067,3,824,412,0,4047,4049,5,210,0,0,4048,4047,1,0,0, + 0,4048,4049,1,0,0,0,4049,4050,1,0,0,0,4050,4052,5,30,0,0,4051,4053, + 3,326,163,0,4052,4051,1,0,0,0,4052,4053,1,0,0,0,4053,4054,1,0,0, + 0,4054,4067,3,824,412,0,4055,4060,5,144,0,0,4056,4058,5,30,0,0,4057, + 4056,1,0,0,0,4057,4058,1,0,0,0,4058,4061,1,0,0,0,4059,4061,3,818, + 409,0,4060,4057,1,0,0,0,4060,4059,1,0,0,0,4061,4063,1,0,0,0,4062, + 4064,3,326,163,0,4063,4062,1,0,0,0,4063,4064,1,0,0,0,4064,4065,1, + 0,0,0,4065,4067,3,824,412,0,4066,4024,1,0,0,0,4066,4031,1,0,0,0, + 4066,4039,1,0,0,0,4066,4048,1,0,0,0,4066,4055,1,0,0,0,4067,325,1, + 0,0,0,4068,4069,7,52,0,0,4069,327,1,0,0,0,4070,4071,5,65,0,0,4071, + 4072,3,332,166,0,4072,4073,5,80,0,0,4073,4074,3,338,169,0,4074,4075, + 5,94,0,0,4075,4079,3,340,170,0,4076,4077,5,105,0,0,4077,4078,5,65, + 0,0,4078,4080,5,279,0,0,4079,4076,1,0,0,0,4079,4080,1,0,0,0,4080, + 329,1,0,0,0,4081,4085,5,317,0,0,4082,4083,5,65,0,0,4083,4084,5,279, + 0,0,4084,4086,5,62,0,0,4085,4082,1,0,0,0,4085,4086,1,0,0,0,4086, + 4087,1,0,0,0,4087,4088,3,332,166,0,4088,4089,5,80,0,0,4089,4090, + 3,338,169,0,4090,4091,5,64,0,0,4091,4093,3,340,170,0,4092,4094,3, + 88,44,0,4093,4092,1,0,0,0,4093,4094,1,0,0,0,4094,331,1,0,0,0,4095, + 4100,3,336,168,0,4096,4097,5,6,0,0,4097,4099,3,336,168,0,4098,4096, + 1,0,0,0,4099,4102,1,0,0,0,4100,4098,1,0,0,0,4100,4101,1,0,0,0,4101, + 4119,1,0,0,0,4102,4100,1,0,0,0,4103,4105,5,30,0,0,4104,4106,5,294, + 0,0,4105,4104,1,0,0,0,4105,4106,1,0,0,0,4106,4108,1,0,0,0,4107,4109, + 3,138,69,0,4108,4107,1,0,0,0,4108,4109,1,0,0,0,4109,4119,1,0,0,0, + 4110,4115,3,334,167,0,4111,4112,5,6,0,0,4112,4114,3,334,167,0,4113, + 4111,1,0,0,0,4114,4117,1,0,0,0,4115,4113,1,0,0,0,4115,4116,1,0,0, + 0,4116,4119,1,0,0,0,4117,4115,1,0,0,0,4118,4095,1,0,0,0,4118,4103, + 1,0,0,0,4118,4110,1,0,0,0,4119,333,1,0,0,0,4120,4121,7,53,0,0,4121, + 335,1,0,0,0,4122,4127,5,88,0,0,4123,4127,5,86,0,0,4124,4127,5,46, + 0,0,4125,4127,3,824,412,0,4126,4122,1,0,0,0,4126,4123,1,0,0,0,4126, + 4124,1,0,0,0,4126,4125,1,0,0,0,4127,4129,1,0,0,0,4128,4130,3,138, + 69,0,4129,4128,1,0,0,0,4129,4130,1,0,0,0,4130,337,1,0,0,0,4131,4132, + 5,92,0,0,4132,4177,3,766,383,0,4133,4135,5,328,0,0,4134,4133,1,0, + 0,0,4134,4135,1,0,0,0,4135,4136,1,0,0,0,4136,4177,3,764,382,0,4137, + 4141,5,63,0,0,4138,4139,5,174,0,0,4139,4142,5,381,0,0,4140,4142, + 5,331,0,0,4141,4138,1,0,0,0,4141,4140,1,0,0,0,4142,4145,1,0,0,0, + 4143,4145,5,247,0,0,4144,4137,1,0,0,0,4144,4143,1,0,0,0,4145,4146, + 1,0,0,0,4146,4177,3,788,394,0,4147,4148,5,211,0,0,4148,4177,3,374, + 187,0,4149,4150,5,296,0,0,4150,4177,3,370,185,0,4151,4152,5,442, + 0,0,4152,4177,3,366,183,0,4153,4154,5,175,0,0,4154,4177,3,770,385, + 0,4155,4156,7,33,0,0,4156,4177,3,308,154,0,4157,4158,5,248,0,0,4158, + 4159,5,274,0,0,4159,4164,3,196,98,0,4160,4161,5,6,0,0,4161,4163, + 3,196,98,0,4162,4160,1,0,0,0,4163,4166,1,0,0,0,4164,4162,1,0,0,0, + 4164,4165,1,0,0,0,4165,4177,1,0,0,0,4166,4164,1,0,0,0,4167,4168, + 5,323,0,0,4168,4177,3,768,384,0,4169,4170,5,351,0,0,4170,4177,3, + 786,393,0,4171,4172,5,30,0,0,4172,4173,7,54,0,0,4173,4174,5,68,0, + 0,4174,4175,5,323,0,0,4175,4177,3,768,384,0,4176,4131,1,0,0,0,4176, + 4134,1,0,0,0,4176,4144,1,0,0,0,4176,4147,1,0,0,0,4176,4149,1,0,0, + 0,4176,4151,1,0,0,0,4176,4153,1,0,0,0,4176,4155,1,0,0,0,4176,4157, + 1,0,0,0,4176,4167,1,0,0,0,4176,4169,1,0,0,0,4176,4171,1,0,0,0,4177, + 339,1,0,0,0,4178,4180,5,66,0,0,4179,4178,1,0,0,0,4179,4180,1,0,0, + 0,4180,4181,1,0,0,0,4181,4182,3,820,410,0,4182,4190,1,0,0,0,4183, + 4185,5,6,0,0,4184,4186,5,66,0,0,4185,4184,1,0,0,0,4185,4186,1,0, + 0,0,4186,4187,1,0,0,0,4187,4189,3,820,410,0,4188,4183,1,0,0,0,4189, + 4192,1,0,0,0,4190,4188,1,0,0,0,4190,4191,1,0,0,0,4191,341,1,0,0, + 0,4192,4190,1,0,0,0,4193,4194,5,65,0,0,4194,4199,3,336,168,0,4195, + 4196,5,6,0,0,4196,4198,3,336,168,0,4197,4195,1,0,0,0,4198,4201,1, + 0,0,0,4199,4197,1,0,0,0,4199,4200,1,0,0,0,4200,4202,1,0,0,0,4201, + 4199,1,0,0,0,4202,4203,5,94,0,0,4203,4207,3,822,411,0,4204,4205, + 5,105,0,0,4205,4206,5,134,0,0,4206,4208,5,279,0,0,4207,4204,1,0, + 0,0,4207,4208,1,0,0,0,4208,4212,1,0,0,0,4209,4210,5,214,0,0,4210, + 4211,5,147,0,0,4211,4213,3,820,410,0,4212,4209,1,0,0,0,4212,4213, + 1,0,0,0,4213,343,1,0,0,0,4214,4218,5,317,0,0,4215,4216,5,134,0,0, + 4216,4217,5,279,0,0,4217,4219,5,62,0,0,4218,4215,1,0,0,0,4218,4219, + 1,0,0,0,4219,4220,1,0,0,0,4220,4225,3,336,168,0,4221,4222,5,6,0, + 0,4222,4224,3,336,168,0,4223,4221,1,0,0,0,4224,4227,1,0,0,0,4225, + 4223,1,0,0,0,4225,4226,1,0,0,0,4226,4228,1,0,0,0,4227,4225,1,0,0, + 0,4228,4229,5,64,0,0,4229,4233,3,822,411,0,4230,4231,5,214,0,0,4231, + 4232,5,147,0,0,4232,4234,3,820,410,0,4233,4230,1,0,0,0,4233,4234, + 1,0,0,0,4234,4236,1,0,0,0,4235,4237,3,88,44,0,4236,4235,1,0,0,0, + 4236,4237,1,0,0,0,4237,345,1,0,0,0,4238,4239,5,138,0,0,4239,4240, + 5,53,0,0,4240,4249,5,294,0,0,4241,4242,5,68,0,0,4242,4243,5,323, + 0,0,4243,4248,3,768,384,0,4244,4245,5,62,0,0,4245,4246,7,2,0,0,4246, + 4248,3,822,411,0,4247,4241,1,0,0,0,4247,4244,1,0,0,0,4248,4251,1, + 0,0,0,4249,4247,1,0,0,0,4249,4250,1,0,0,0,4250,4252,1,0,0,0,4251, + 4249,1,0,0,0,4252,4253,3,348,174,0,4253,347,1,0,0,0,4254,4255,5, + 65,0,0,4255,4256,3,332,166,0,4256,4257,5,80,0,0,4257,4258,3,350, + 175,0,4258,4259,5,94,0,0,4259,4263,3,340,170,0,4260,4261,5,105,0, + 0,4261,4262,5,65,0,0,4262,4264,5,279,0,0,4263,4260,1,0,0,0,4263, + 4264,1,0,0,0,4264,4280,1,0,0,0,4265,4269,5,317,0,0,4266,4267,5,65, + 0,0,4267,4268,5,279,0,0,4268,4270,5,62,0,0,4269,4266,1,0,0,0,4269, + 4270,1,0,0,0,4270,4271,1,0,0,0,4271,4272,3,332,166,0,4272,4273,5, + 80,0,0,4273,4274,3,350,175,0,4274,4275,5,64,0,0,4275,4277,3,340, + 170,0,4276,4278,3,88,44,0,4277,4276,1,0,0,0,4277,4278,1,0,0,0,4278, + 4280,1,0,0,0,4279,4254,1,0,0,0,4279,4265,1,0,0,0,4280,349,1,0,0, + 0,4281,4282,7,55,0,0,4282,351,1,0,0,0,4283,4285,5,46,0,0,4284,4286, + 5,98,0,0,4285,4284,1,0,0,0,4285,4286,1,0,0,0,4286,4287,1,0,0,0,4287, + 4289,5,226,0,0,4288,4290,5,109,0,0,4289,4288,1,0,0,0,4289,4290,1, + 0,0,0,4290,4292,1,0,0,0,4291,4293,3,288,144,0,4292,4291,1,0,0,0, + 4292,4293,1,0,0,0,4293,4295,1,0,0,0,4294,4296,3,824,412,0,4295,4294, + 1,0,0,0,4295,4296,1,0,0,0,4296,4297,1,0,0,0,4297,4298,5,80,0,0,4298, + 4300,3,620,310,0,4299,4301,3,164,82,0,4300,4299,1,0,0,0,4300,4301, + 1,0,0,0,4301,4302,1,0,0,0,4302,4305,3,354,177,0,4303,4304,5,441, + 0,0,4304,4306,3,354,177,0,4305,4303,1,0,0,0,4305,4306,1,0,0,0,4306, + 4312,1,0,0,0,4307,4309,5,273,0,0,4308,4310,5,77,0,0,4309,4308,1, + 0,0,0,4309,4310,1,0,0,0,4310,4311,1,0,0,0,4311,4313,5,56,0,0,4312, + 4307,1,0,0,0,4312,4313,1,0,0,0,4313,4315,1,0,0,0,4314,4316,3,94, + 47,0,4315,4314,1,0,0,0,4315,4316,1,0,0,0,4316,4318,1,0,0,0,4317, + 4319,3,170,85,0,4318,4317,1,0,0,0,4318,4319,1,0,0,0,4319,4321,1, + 0,0,0,4320,4322,3,634,317,0,4321,4320,1,0,0,0,4321,4322,1,0,0,0, + 4322,353,1,0,0,0,4323,4324,5,2,0,0,4324,4329,3,356,178,0,4325,4326, + 5,6,0,0,4326,4328,3,356,178,0,4327,4325,1,0,0,0,4328,4331,1,0,0, + 0,4329,4327,1,0,0,0,4329,4330,1,0,0,0,4330,4332,1,0,0,0,4331,4329, + 1,0,0,0,4332,4333,5,3,0,0,4333,355,1,0,0,0,4334,4341,3,804,402,0, + 4335,4341,3,684,342,0,4336,4337,5,2,0,0,4337,4338,3,670,335,0,4338, + 4339,5,3,0,0,4339,4341,1,0,0,0,4340,4334,1,0,0,0,4340,4335,1,0,0, + 0,4340,4336,1,0,0,0,4341,4343,1,0,0,0,4342,4344,3,90,45,0,4343,4342, + 1,0,0,0,4343,4344,1,0,0,0,4344,4351,1,0,0,0,4345,4347,3,310,155, + 0,4346,4345,1,0,0,0,4346,4347,1,0,0,0,4347,4352,1,0,0,0,4348,4349, + 3,310,155,0,4349,4350,3,92,46,0,4350,4352,1,0,0,0,4351,4346,1,0, + 0,0,4351,4348,1,0,0,0,4352,4354,1,0,0,0,4353,4355,7,56,0,0,4354, + 4353,1,0,0,0,4354,4355,1,0,0,0,4355,4358,1,0,0,0,4356,4357,5,273, + 0,0,4357,4359,7,57,0,0,4358,4356,1,0,0,0,4358,4359,1,0,0,0,4359, + 357,1,0,0,0,4360,4362,5,46,0,0,4361,4363,3,360,180,0,4362,4361,1, + 0,0,0,4362,4363,1,0,0,0,4363,4368,1,0,0,0,4364,4365,5,211,0,0,4365, + 4369,3,810,405,0,4366,4367,5,296,0,0,4367,4369,3,802,401,0,4368, + 4364,1,0,0,0,4368,4366,1,0,0,0,4369,4370,1,0,0,0,4370,4379,5,2,0, + 0,4371,4376,3,384,192,0,4372,4373,5,6,0,0,4373,4375,3,384,192,0, + 4374,4372,1,0,0,0,4375,4378,1,0,0,0,4376,4374,1,0,0,0,4376,4377, + 1,0,0,0,4377,4380,1,0,0,0,4378,4376,1,0,0,0,4379,4371,1,0,0,0,4379, + 4380,1,0,0,0,4380,4381,1,0,0,0,4381,4382,5,3,0,0,4382,4399,1,0,0, + 0,4383,4397,5,316,0,0,4384,4398,3,382,191,0,4385,4386,5,92,0,0,4386, + 4387,5,2,0,0,4387,4392,3,396,198,0,4388,4389,5,6,0,0,4389,4391,3, + 396,198,0,4390,4388,1,0,0,0,4391,4394,1,0,0,0,4392,4390,1,0,0,0, + 4392,4393,1,0,0,0,4393,4395,1,0,0,0,4394,4392,1,0,0,0,4395,4396, + 5,3,0,0,4396,4398,1,0,0,0,4397,4384,1,0,0,0,4397,4385,1,0,0,0,4398, + 4400,1,0,0,0,4399,4383,1,0,0,0,4399,4400,1,0,0,0,4400,4402,1,0,0, + 0,4401,4403,3,392,196,0,4402,4401,1,0,0,0,4403,4404,1,0,0,0,4404, + 4402,1,0,0,0,4404,4405,1,0,0,0,4405,4411,1,0,0,0,4406,4407,5,105, + 0,0,4407,4408,5,2,0,0,4408,4409,3,788,394,0,4409,4410,5,3,0,0,4410, + 4412,1,0,0,0,4411,4406,1,0,0,0,4411,4412,1,0,0,0,4412,359,1,0,0, + 0,4413,4414,5,82,0,0,4414,4415,5,311,0,0,4415,361,1,0,0,0,4416,4418, + 5,2,0,0,4417,4419,3,364,182,0,4418,4417,1,0,0,0,4418,4419,1,0,0, + 0,4419,4420,1,0,0,0,4420,4421,5,3,0,0,4421,363,1,0,0,0,4422,4427, + 3,378,189,0,4423,4424,5,6,0,0,4424,4426,3,378,189,0,4425,4423,1, + 0,0,0,4426,4429,1,0,0,0,4427,4425,1,0,0,0,4427,4428,1,0,0,0,4428, + 365,1,0,0,0,4429,4427,1,0,0,0,4430,4435,3,368,184,0,4431,4432,5, + 6,0,0,4432,4434,3,368,184,0,4433,4431,1,0,0,0,4434,4437,1,0,0,0, + 4435,4433,1,0,0,0,4435,4436,1,0,0,0,4436,367,1,0,0,0,4437,4435,1, + 0,0,0,4438,4439,3,798,399,0,4439,4440,3,362,181,0,4440,4444,1,0, + 0,0,4441,4444,3,838,419,0,4442,4444,3,784,392,0,4443,4438,1,0,0, + 0,4443,4441,1,0,0,0,4443,4442,1,0,0,0,4444,369,1,0,0,0,4445,4450, + 3,372,186,0,4446,4447,5,6,0,0,4447,4449,3,372,186,0,4448,4446,1, + 0,0,0,4449,4452,1,0,0,0,4450,4448,1,0,0,0,4450,4451,1,0,0,0,4451, + 371,1,0,0,0,4452,4450,1,0,0,0,4453,4454,3,800,400,0,4454,4455,3, + 362,181,0,4455,4459,1,0,0,0,4456,4459,3,838,419,0,4457,4459,3,784, + 392,0,4458,4453,1,0,0,0,4458,4456,1,0,0,0,4458,4457,1,0,0,0,4459, + 373,1,0,0,0,4460,4465,3,376,188,0,4461,4462,5,6,0,0,4462,4464,3, + 376,188,0,4463,4461,1,0,0,0,4464,4467,1,0,0,0,4465,4463,1,0,0,0, + 4465,4466,1,0,0,0,4466,375,1,0,0,0,4467,4465,1,0,0,0,4468,4469,3, + 812,406,0,4469,4470,3,362,181,0,4470,4474,1,0,0,0,4471,4474,3,838, + 419,0,4472,4474,3,784,392,0,4473,4468,1,0,0,0,4473,4471,1,0,0,0, + 4473,4472,1,0,0,0,4474,377,1,0,0,0,4475,4477,3,380,190,0,4476,4478, + 3,826,413,0,4477,4476,1,0,0,0,4477,4478,1,0,0,0,4478,4484,1,0,0, + 0,4479,4481,3,826,413,0,4480,4482,3,380,190,0,4481,4480,1,0,0,0, + 4481,4482,1,0,0,0,4482,4484,1,0,0,0,4483,4475,1,0,0,0,4483,4479, + 1,0,0,0,4483,4484,1,0,0,0,4484,4485,1,0,0,0,4485,4486,3,382,191, + 0,4486,379,1,0,0,0,4487,4489,5,68,0,0,4488,4490,5,453,0,0,4489,4488, + 1,0,0,0,4489,4490,1,0,0,0,4490,4495,1,0,0,0,4491,4495,5,453,0,0, + 4492,4495,5,400,0,0,4493,4495,5,101,0,0,4494,4487,1,0,0,0,4494,4491, + 1,0,0,0,4494,4492,1,0,0,0,4494,4493,1,0,0,0,4495,381,1,0,0,0,4496, + 4506,3,648,324,0,4497,4499,5,415,0,0,4498,4497,1,0,0,0,4498,4499, + 1,0,0,0,4499,4500,1,0,0,0,4500,4501,3,826,413,0,4501,4502,3,312, + 156,0,4502,4503,5,27,0,0,4503,4504,5,360,0,0,4504,4506,1,0,0,0,4505, + 4496,1,0,0,0,4505,4498,1,0,0,0,4506,383,1,0,0,0,4507,4510,3,378, + 189,0,4508,4509,7,58,0,0,4509,4511,3,670,335,0,4510,4508,1,0,0,0, + 4510,4511,1,0,0,0,4511,385,1,0,0,0,4512,4522,5,2,0,0,4513,4523,5, + 9,0,0,4514,4516,3,364,182,0,4515,4514,1,0,0,0,4515,4516,1,0,0,0, + 4516,4520,1,0,0,0,4517,4518,5,83,0,0,4518,4519,5,147,0,0,4519,4521, + 3,364,182,0,4520,4517,1,0,0,0,4520,4521,1,0,0,0,4521,4523,1,0,0, + 0,4522,4513,1,0,0,0,4522,4515,1,0,0,0,4523,4524,1,0,0,0,4524,4525, + 5,3,0,0,4525,387,1,0,0,0,4526,4527,3,812,406,0,4527,4528,3,386,193, + 0,4528,389,1,0,0,0,4529,4530,5,316,0,0,4530,4533,5,78,0,0,4531,4533, + 5,149,0,0,4532,4529,1,0,0,0,4532,4531,1,0,0,0,4533,4534,1,0,0,0, + 4534,4535,5,80,0,0,4535,4536,5,78,0,0,4536,4559,5,458,0,0,4537,4559, + 5,346,0,0,4538,4559,5,222,0,0,4539,4559,5,338,0,0,4540,4559,5,377, + 0,0,4541,4543,5,205,0,0,4542,4541,1,0,0,0,4542,4543,1,0,0,0,4543, + 4544,1,0,0,0,4544,4545,5,327,0,0,4545,4559,7,59,0,0,4546,4559,5, + 250,0,0,4547,4548,5,77,0,0,4548,4559,5,250,0,0,4549,4550,7,60,0, + 0,4550,4559,3,196,98,0,4551,4552,5,459,0,0,4552,4559,3,310,155,0, + 4553,4554,5,333,0,0,4554,4559,3,42,21,0,4555,4559,3,60,30,0,4556, + 4557,5,460,0,0,4557,4559,3,824,412,0,4558,4532,1,0,0,0,4558,4537, + 1,0,0,0,4558,4538,1,0,0,0,4558,4539,1,0,0,0,4558,4540,1,0,0,0,4558, + 4542,1,0,0,0,4558,4546,1,0,0,0,4558,4547,1,0,0,0,4558,4549,1,0,0, + 0,4558,4551,1,0,0,0,4558,4553,1,0,0,0,4558,4555,1,0,0,0,4558,4556, + 1,0,0,0,4559,391,1,0,0,0,4560,4561,5,36,0,0,4561,4562,3,814,407, + 0,4562,4563,3,456,228,0,4563,4596,1,0,0,0,4564,4565,5,247,0,0,4565, + 4596,3,58,29,0,4566,4567,5,443,0,0,4567,4568,5,62,0,0,4568,4569, + 5,360,0,0,4569,4576,3,648,324,0,4570,4571,5,6,0,0,4571,4572,5,62, + 0,0,4572,4573,5,360,0,0,4573,4575,3,648,324,0,4574,4570,1,0,0,0, + 4575,4578,1,0,0,0,4576,4574,1,0,0,0,4576,4577,1,0,0,0,4577,4596, + 1,0,0,0,4578,4576,1,0,0,0,4579,4596,5,104,0,0,4580,4581,5,333,0, + 0,4581,4588,3,824,412,0,4582,4583,5,94,0,0,4583,4589,3,824,412,0, + 4584,4585,5,10,0,0,4585,4589,3,824,412,0,4586,4587,5,64,0,0,4587, + 4589,5,434,0,0,4588,4582,1,0,0,0,4588,4584,1,0,0,0,4588,4586,1,0, + 0,0,4589,4596,1,0,0,0,4590,4591,5,36,0,0,4591,4596,3,824,412,0,4592, + 4596,3,4,2,0,4593,4596,3,390,195,0,4594,4596,3,824,412,0,4595,4560, + 1,0,0,0,4595,4564,1,0,0,0,4595,4566,1,0,0,0,4595,4579,1,0,0,0,4595, + 4580,1,0,0,0,4595,4590,1,0,0,0,4595,4592,1,0,0,0,4595,4593,1,0,0, + 0,4595,4594,1,0,0,0,4596,393,1,0,0,0,4597,4598,5,105,0,0,4598,4599, + 3,278,139,0,4599,395,1,0,0,0,4600,4601,3,804,402,0,4601,4602,3,382, + 191,0,4602,397,1,0,0,0,4603,4610,5,138,0,0,4604,4605,5,211,0,0,4605, + 4611,3,376,188,0,4606,4607,5,296,0,0,4607,4611,3,372,186,0,4608, + 4609,5,442,0,0,4609,4611,3,368,184,0,4610,4604,1,0,0,0,4610,4606, + 1,0,0,0,4610,4608,1,0,0,0,4611,4613,1,0,0,0,4612,4614,3,390,195, + 0,4613,4612,1,0,0,0,4614,4615,1,0,0,0,4615,4613,1,0,0,0,4615,4616, + 1,0,0,0,4616,4618,1,0,0,0,4617,4619,5,315,0,0,4618,4617,1,0,0,0, + 4618,4619,1,0,0,0,4619,399,1,0,0,0,4620,4636,5,191,0,0,4621,4623, + 5,211,0,0,4622,4624,3,416,208,0,4623,4622,1,0,0,0,4623,4624,1,0, + 0,0,4624,4625,1,0,0,0,4625,4637,3,374,187,0,4626,4628,5,296,0,0, + 4627,4629,3,416,208,0,4628,4627,1,0,0,0,4628,4629,1,0,0,0,4629,4630, + 1,0,0,0,4630,4637,3,370,185,0,4631,4633,5,442,0,0,4632,4634,3,416, + 208,0,4633,4632,1,0,0,0,4633,4634,1,0,0,0,4634,4635,1,0,0,0,4635, + 4637,3,366,183,0,4636,4621,1,0,0,0,4636,4626,1,0,0,0,4636,4631,1, + 0,0,0,4637,4639,1,0,0,0,4638,4640,3,88,44,0,4639,4638,1,0,0,0,4639, + 4640,1,0,0,0,4640,401,1,0,0,0,4641,4642,5,191,0,0,4642,4644,5,136, + 0,0,4643,4645,3,416,208,0,4644,4643,1,0,0,0,4644,4645,1,0,0,0,4645, + 4646,1,0,0,0,4646,4651,3,388,194,0,4647,4648,5,6,0,0,4648,4650,3, + 388,194,0,4649,4647,1,0,0,0,4650,4653,1,0,0,0,4651,4649,1,0,0,0, + 4651,4652,1,0,0,0,4652,4655,1,0,0,0,4653,4651,1,0,0,0,4654,4656, + 3,88,44,0,4655,4654,1,0,0,0,4655,4656,1,0,0,0,4656,403,1,0,0,0,4657, + 4658,5,191,0,0,4658,4660,5,278,0,0,4659,4661,3,416,208,0,4660,4659, + 1,0,0,0,4660,4661,1,0,0,0,4661,4662,1,0,0,0,4662,4667,3,410,205, + 0,4663,4664,5,6,0,0,4664,4666,3,410,205,0,4665,4663,1,0,0,0,4666, + 4669,1,0,0,0,4667,4665,1,0,0,0,4667,4668,1,0,0,0,4668,4671,1,0,0, + 0,4669,4667,1,0,0,0,4670,4672,3,88,44,0,4671,4670,1,0,0,0,4671,4672, + 1,0,0,0,4672,405,1,0,0,0,4673,4686,5,2,0,0,4674,4677,3,648,324,0, + 4675,4676,5,6,0,0,4676,4678,3,648,324,0,4677,4675,1,0,0,0,4677,4678, + 1,0,0,0,4678,4687,1,0,0,0,4679,4680,5,407,0,0,4680,4681,5,6,0,0, + 4681,4687,3,648,324,0,4682,4683,3,648,324,0,4683,4684,5,6,0,0,4684, + 4685,5,407,0,0,4685,4687,1,0,0,0,4686,4674,1,0,0,0,4686,4679,1,0, + 0,0,4686,4682,1,0,0,0,4687,4688,1,0,0,0,4688,4689,5,3,0,0,4689,407, + 1,0,0,0,4690,4691,3,824,412,0,4691,4692,5,11,0,0,4692,4694,1,0,0, + 0,4693,4690,1,0,0,0,4694,4697,1,0,0,0,4695,4693,1,0,0,0,4695,4696, + 1,0,0,0,4696,4698,1,0,0,0,4697,4695,1,0,0,0,4698,4699,3,718,359, + 0,4699,409,1,0,0,0,4700,4701,3,408,204,0,4701,4702,3,406,203,0,4702, + 411,1,0,0,0,4703,4707,5,57,0,0,4704,4708,3,814,407,0,4705,4706,5, + 247,0,0,4706,4708,3,58,29,0,4707,4704,1,0,0,0,4707,4705,1,0,0,0, + 4708,4709,1,0,0,0,4709,4707,1,0,0,0,4709,4710,1,0,0,0,4710,413,1, + 0,0,0,4711,4712,5,46,0,0,4712,4713,5,41,0,0,4713,4714,5,2,0,0,4714, + 4715,3,648,324,0,4715,4716,5,36,0,0,4716,4717,3,648,324,0,4717,4734, + 5,3,0,0,4718,4719,5,379,0,0,4719,4722,5,211,0,0,4720,4721,5,36,0, + 0,4721,4723,7,61,0,0,4722,4720,1,0,0,0,4722,4723,1,0,0,0,4723,4735, + 1,0,0,0,4724,4728,5,105,0,0,4725,4726,5,211,0,0,4726,4729,3,376, + 188,0,4727,4729,5,400,0,0,4728,4725,1,0,0,0,4728,4727,1,0,0,0,4729, + 4732,1,0,0,0,4730,4731,5,36,0,0,4731,4733,7,61,0,0,4732,4730,1,0, + 0,0,4732,4733,1,0,0,0,4733,4735,1,0,0,0,4734,4718,1,0,0,0,4734,4724, + 1,0,0,0,4735,415,1,0,0,0,4736,4737,5,220,0,0,4737,4738,5,396,0,0, + 4738,417,1,0,0,0,4739,4741,5,46,0,0,4740,4742,3,360,180,0,4741,4740, + 1,0,0,0,4741,4742,1,0,0,0,4742,4743,1,0,0,0,4743,4744,5,443,0,0, + 4744,4745,5,62,0,0,4745,4746,3,648,324,0,4746,4747,5,247,0,0,4747, + 4748,3,824,412,0,4748,4763,5,2,0,0,4749,4750,5,64,0,0,4750,4754, + 3,420,210,0,4751,4752,5,6,0,0,4752,4753,5,94,0,0,4753,4755,3,420, + 210,0,4754,4751,1,0,0,0,4754,4755,1,0,0,0,4755,4764,1,0,0,0,4756, + 4757,5,94,0,0,4757,4761,3,420,210,0,4758,4759,5,6,0,0,4759,4760, + 5,64,0,0,4760,4762,3,420,210,0,4761,4758,1,0,0,0,4761,4762,1,0,0, + 0,4762,4764,1,0,0,0,4763,4749,1,0,0,0,4763,4756,1,0,0,0,4764,4765, + 1,0,0,0,4765,4766,5,3,0,0,4766,419,1,0,0,0,4767,4768,5,461,0,0,4768, + 4769,5,105,0,0,4769,4770,5,211,0,0,4770,4771,3,376,188,0,4771,421, + 1,0,0,0,4772,4783,5,306,0,0,4773,4774,5,2,0,0,4774,4779,5,128,0, + 0,4775,4776,5,6,0,0,4776,4778,5,128,0,0,4777,4775,1,0,0,0,4778,4781, + 1,0,0,0,4779,4777,1,0,0,0,4779,4780,1,0,0,0,4780,4782,1,0,0,0,4781, + 4779,1,0,0,0,4782,4784,5,3,0,0,4783,4773,1,0,0,0,4783,4784,1,0,0, + 0,4784,4810,1,0,0,0,4785,4787,5,226,0,0,4786,4788,5,109,0,0,4787, + 4786,1,0,0,0,4787,4788,1,0,0,0,4788,4789,1,0,0,0,4789,4811,3,784, + 392,0,4790,4792,5,92,0,0,4791,4793,5,109,0,0,4792,4791,1,0,0,0,4792, + 4793,1,0,0,0,4793,4794,1,0,0,0,4794,4811,3,778,389,0,4795,4797,5, + 323,0,0,4796,4798,5,109,0,0,4797,4796,1,0,0,0,4797,4798,1,0,0,0, + 4798,4799,1,0,0,0,4799,4811,3,794,397,0,4800,4802,5,349,0,0,4801, + 4803,5,109,0,0,4802,4801,1,0,0,0,4802,4803,1,0,0,0,4803,4804,1,0, + 0,0,4804,4811,3,824,412,0,4805,4807,5,175,0,0,4806,4808,5,109,0, + 0,4807,4806,1,0,0,0,4807,4808,1,0,0,0,4808,4809,1,0,0,0,4809,4811, + 3,792,396,0,4810,4785,1,0,0,0,4810,4790,1,0,0,0,4810,4795,1,0,0, + 0,4810,4800,1,0,0,0,4810,4805,1,0,0,0,4811,423,1,0,0,0,4812,4813, + 5,138,0,0,4813,4814,3,170,85,0,4814,4815,7,16,0,0,4815,4816,3,92, + 46,0,4816,425,1,0,0,0,4817,4822,5,138,0,0,4818,4819,5,136,0,0,4819, + 4823,3,388,194,0,4820,4821,5,442,0,0,4821,4823,3,368,184,0,4822, + 4818,1,0,0,0,4822,4820,1,0,0,0,4823,4824,1,0,0,0,4824,4825,5,309, + 0,0,4825,4826,5,94,0,0,4826,4827,3,824,412,0,4827,5025,1,0,0,0,4828, + 4829,5,138,0,0,4829,4830,5,175,0,0,4830,4831,3,792,396,0,4831,4832, + 5,309,0,0,4832,4833,5,94,0,0,4833,4834,3,790,395,0,4834,5025,1,0, + 0,0,4835,4836,5,138,0,0,4836,4837,7,62,0,0,4837,4838,3,310,155,0, + 4838,4839,5,309,0,0,4839,4840,5,94,0,0,4840,4841,3,824,412,0,4841, + 5025,1,0,0,0,4842,4843,5,138,0,0,4843,4844,5,211,0,0,4844,4845,3, + 376,188,0,4845,4846,5,309,0,0,4846,4847,5,94,0,0,4847,4848,3,810, + 405,0,4848,5025,1,0,0,0,4849,4850,5,138,0,0,4850,4851,5,278,0,0, + 4851,4852,7,32,0,0,4852,4853,3,310,155,0,4853,4854,3,164,82,0,4854, + 4855,5,309,0,0,4855,4856,5,94,0,0,4856,4857,3,824,412,0,4857,5025, + 1,0,0,0,4858,4859,5,138,0,0,4859,4860,5,296,0,0,4860,4861,3,372, + 186,0,4861,4862,5,309,0,0,4862,4863,5,94,0,0,4863,4864,3,802,401, + 0,4864,5025,1,0,0,0,4865,4866,5,138,0,0,4866,4867,5,323,0,0,4867, + 4868,3,794,397,0,4868,4869,5,309,0,0,4869,4870,5,94,0,0,4870,4871, + 3,32,16,0,4871,5025,1,0,0,0,4872,4873,5,138,0,0,4873,4875,7,63,0, + 0,4874,4876,3,416,208,0,4875,4874,1,0,0,0,4875,4876,1,0,0,0,4876, + 4877,1,0,0,0,4877,4878,3,784,392,0,4878,4879,5,309,0,0,4879,4880, + 5,94,0,0,4880,4881,3,824,412,0,4881,5025,1,0,0,0,4882,4884,5,138, + 0,0,4883,4885,5,259,0,0,4884,4883,1,0,0,0,4884,4885,1,0,0,0,4885, + 4886,1,0,0,0,4886,4888,5,376,0,0,4887,4889,3,416,208,0,4888,4887, + 1,0,0,0,4888,4889,1,0,0,0,4889,4890,1,0,0,0,4890,4891,3,782,391, + 0,4891,4892,5,309,0,0,4892,4893,5,94,0,0,4893,4894,3,780,390,0,4894, + 5025,1,0,0,0,4895,4897,5,138,0,0,4896,4898,5,63,0,0,4897,4896,1, + 0,0,0,4897,4898,1,0,0,0,4898,4899,1,0,0,0,4899,4901,5,92,0,0,4900, + 4902,3,416,208,0,4901,4900,1,0,0,0,4901,4902,1,0,0,0,4902,4903,1, + 0,0,0,4903,4904,3,620,310,0,4904,4905,5,309,0,0,4905,4906,5,94,0, + 0,4906,4907,3,776,388,0,4907,5025,1,0,0,0,4908,4933,5,138,0,0,4909, + 4911,5,63,0,0,4910,4909,1,0,0,0,4910,4911,1,0,0,0,4911,4912,1,0, + 0,0,4912,4914,5,92,0,0,4913,4915,3,416,208,0,4914,4913,1,0,0,0,4914, + 4915,1,0,0,0,4915,4916,1,0,0,0,4916,4917,3,620,310,0,4917,4919,5, + 309,0,0,4918,4920,5,44,0,0,4919,4918,1,0,0,0,4919,4920,1,0,0,0,4920, + 4934,1,0,0,0,4921,4923,5,259,0,0,4922,4921,1,0,0,0,4922,4923,1,0, + 0,0,4923,4924,1,0,0,0,4924,4926,5,376,0,0,4925,4927,3,416,208,0, + 4926,4925,1,0,0,0,4926,4927,1,0,0,0,4927,4928,1,0,0,0,4928,4929, + 3,782,391,0,4929,4931,5,309,0,0,4930,4932,5,44,0,0,4931,4930,1,0, + 0,0,4931,4932,1,0,0,0,4932,4934,1,0,0,0,4933,4910,1,0,0,0,4933,4922, + 1,0,0,0,4934,4935,1,0,0,0,4935,4936,3,804,402,0,4936,4937,5,94,0, + 0,4937,4938,3,808,404,0,4938,5025,1,0,0,0,4939,4947,5,138,0,0,4940, + 4942,5,92,0,0,4941,4943,3,416,208,0,4942,4941,1,0,0,0,4942,4943, + 1,0,0,0,4943,4944,1,0,0,0,4944,4948,3,620,310,0,4945,4946,5,189, + 0,0,4946,4948,3,310,155,0,4947,4940,1,0,0,0,4947,4945,1,0,0,0,4948, + 4949,1,0,0,0,4949,4950,5,309,0,0,4950,4951,5,45,0,0,4951,4952,3, + 824,412,0,4952,4953,5,94,0,0,4953,4954,3,824,412,0,4954,5025,1,0, + 0,0,4955,4962,5,138,0,0,4956,4958,5,445,0,0,4957,4959,3,416,208, + 0,4958,4957,1,0,0,0,4958,4959,1,0,0,0,4959,4963,1,0,0,0,4960,4963, + 5,321,0,0,4961,4963,5,357,0,0,4962,4956,1,0,0,0,4962,4960,1,0,0, + 0,4962,4961,1,0,0,0,4963,4964,1,0,0,0,4964,4965,3,824,412,0,4965, + 4966,5,80,0,0,4966,4967,3,784,392,0,4967,4968,5,309,0,0,4968,4969, + 5,94,0,0,4969,4970,3,824,412,0,4970,5025,1,0,0,0,4971,4984,5,138, + 0,0,4972,4973,5,63,0,0,4973,4974,5,174,0,0,4974,4985,5,381,0,0,4975, + 4977,5,295,0,0,4976,4975,1,0,0,0,4976,4977,1,0,0,0,4977,4978,1,0, + 0,0,4978,4985,5,247,0,0,4979,4985,5,452,0,0,4980,4985,5,331,0,0, + 4981,4985,5,451,0,0,4982,4983,5,198,0,0,4983,4985,5,357,0,0,4984, + 4972,1,0,0,0,4984,4976,1,0,0,0,4984,4979,1,0,0,0,4984,4980,1,0,0, + 0,4984,4981,1,0,0,0,4984,4982,1,0,0,0,4985,4986,1,0,0,0,4986,4987, + 3,824,412,0,4987,4988,5,309,0,0,4988,4989,5,94,0,0,4989,4990,3,824, + 412,0,4990,5025,1,0,0,0,4991,4992,5,138,0,0,4992,4993,7,46,0,0,4993, + 4994,3,820,410,0,4994,4995,5,309,0,0,4995,4996,5,94,0,0,4996,4997, + 3,820,410,0,4997,5025,1,0,0,0,4998,4999,5,138,0,0,4999,5000,3,170, + 85,0,5000,5001,5,309,0,0,5001,5002,5,94,0,0,5002,5003,3,774,387, + 0,5003,5025,1,0,0,0,5004,5005,5,138,0,0,5005,5006,5,355,0,0,5006, + 5007,5,325,0,0,5007,5008,7,42,0,0,5008,5009,3,310,155,0,5009,5010, + 5,309,0,0,5010,5011,5,94,0,0,5011,5012,3,824,412,0,5012,5025,1,0, + 0,0,5013,5014,5,138,0,0,5014,5015,5,360,0,0,5015,5016,3,310,155, + 0,5016,5017,5,309,0,0,5017,5018,5,143,0,0,5018,5019,3,824,412,0, + 5019,5020,5,94,0,0,5020,5022,3,824,412,0,5021,5023,3,88,44,0,5022, + 5021,1,0,0,0,5022,5023,1,0,0,0,5023,5025,1,0,0,0,5024,4817,1,0,0, + 0,5024,4828,1,0,0,0,5024,4835,1,0,0,0,5024,4842,1,0,0,0,5024,4849, + 1,0,0,0,5024,4858,1,0,0,0,5024,4865,1,0,0,0,5024,4872,1,0,0,0,5024, + 4882,1,0,0,0,5024,4895,1,0,0,0,5024,4908,1,0,0,0,5024,4939,1,0,0, + 0,5024,4955,1,0,0,0,5024,4971,1,0,0,0,5024,4991,1,0,0,0,5024,4998, + 1,0,0,0,5024,5004,1,0,0,0,5024,5013,1,0,0,0,5025,427,1,0,0,0,5026, + 5043,5,138,0,0,5027,5028,5,211,0,0,5028,5044,3,376,188,0,5029,5030, + 5,296,0,0,5030,5044,3,372,186,0,5031,5032,5,442,0,0,5032,5044,3, + 368,184,0,5033,5034,5,357,0,0,5034,5035,3,824,412,0,5035,5036,5, + 80,0,0,5036,5037,3,784,392,0,5037,5044,1,0,0,0,5038,5039,5,259,0, + 0,5039,5040,5,376,0,0,5040,5044,3,782,391,0,5041,5042,5,226,0,0, + 5042,5044,3,784,392,0,5043,5027,1,0,0,0,5043,5029,1,0,0,0,5043,5031, + 1,0,0,0,5043,5033,1,0,0,0,5043,5038,1,0,0,0,5043,5041,1,0,0,0,5044, + 5046,1,0,0,0,5045,5047,5,269,0,0,5046,5045,1,0,0,0,5046,5047,1,0, + 0,0,5047,5048,1,0,0,0,5048,5049,5,462,0,0,5049,5050,5,80,0,0,5050, + 5051,5,204,0,0,5051,5052,3,824,412,0,5052,429,1,0,0,0,5053,5092, + 5,138,0,0,5054,5055,5,136,0,0,5055,5093,3,388,194,0,5056,5057,5, + 204,0,0,5057,5093,3,824,412,0,5058,5059,5,211,0,0,5059,5093,3,376, + 188,0,5060,5061,5,278,0,0,5061,5093,3,410,205,0,5062,5063,5,278, + 0,0,5063,5064,7,32,0,0,5064,5065,3,310,155,0,5065,5066,3,164,82, + 0,5066,5093,1,0,0,0,5067,5068,5,296,0,0,5068,5093,3,372,186,0,5069, + 5070,5,442,0,0,5070,5093,3,368,184,0,5071,5073,5,328,0,0,5072,5074, + 3,416,208,0,5073,5072,1,0,0,0,5073,5074,1,0,0,0,5074,5075,1,0,0, + 0,5075,5093,3,784,392,0,5076,5078,5,259,0,0,5077,5076,1,0,0,0,5077, + 5078,1,0,0,0,5078,5079,1,0,0,0,5079,5081,5,376,0,0,5080,5082,3,416, + 208,0,5081,5080,1,0,0,0,5081,5082,1,0,0,0,5082,5083,1,0,0,0,5083, + 5093,3,782,391,0,5084,5086,5,63,0,0,5085,5084,1,0,0,0,5085,5086, + 1,0,0,0,5086,5087,1,0,0,0,5087,5089,5,92,0,0,5088,5090,3,416,208, + 0,5089,5088,1,0,0,0,5089,5090,1,0,0,0,5090,5091,1,0,0,0,5091,5093, + 3,620,310,0,5092,5054,1,0,0,0,5092,5056,1,0,0,0,5092,5058,1,0,0, + 0,5092,5060,1,0,0,0,5092,5062,1,0,0,0,5092,5067,1,0,0,0,5092,5069, + 1,0,0,0,5092,5071,1,0,0,0,5092,5077,1,0,0,0,5092,5085,1,0,0,0,5093, + 5094,1,0,0,0,5094,5095,5,333,0,0,5095,5096,5,323,0,0,5096,5097,3, + 794,397,0,5097,5115,1,0,0,0,5098,5107,5,138,0,0,5099,5100,5,355, + 0,0,5100,5101,5,325,0,0,5101,5108,7,42,0,0,5102,5108,5,108,0,0,5103, + 5108,5,168,0,0,5104,5108,5,189,0,0,5105,5108,5,342,0,0,5106,5108, + 5,360,0,0,5107,5099,1,0,0,0,5107,5102,1,0,0,0,5107,5103,1,0,0,0, + 5107,5104,1,0,0,0,5107,5105,1,0,0,0,5107,5106,1,0,0,0,5108,5109, + 1,0,0,0,5109,5110,3,310,155,0,5110,5111,5,333,0,0,5111,5112,5,323, + 0,0,5112,5113,3,794,397,0,5113,5115,1,0,0,0,5114,5053,1,0,0,0,5114, + 5098,1,0,0,0,5115,431,1,0,0,0,5116,5117,5,138,0,0,5117,5118,5,278, + 0,0,5118,5119,3,410,205,0,5119,5120,5,333,0,0,5120,5121,3,434,217, + 0,5121,433,1,0,0,0,5122,5123,5,2,0,0,5123,5128,3,436,218,0,5124, + 5125,5,6,0,0,5125,5127,3,436,218,0,5126,5124,1,0,0,0,5127,5130,1, + 0,0,0,5128,5126,1,0,0,0,5128,5129,1,0,0,0,5129,5131,1,0,0,0,5130, + 5128,1,0,0,0,5131,5132,5,3,0,0,5132,435,1,0,0,0,5133,5134,3,830, + 415,0,5134,5141,5,10,0,0,5135,5142,5,407,0,0,5136,5142,3,382,191, + 0,5137,5142,3,840,420,0,5138,5142,3,724,362,0,5139,5142,3,196,98, + 0,5140,5142,3,814,407,0,5141,5135,1,0,0,0,5141,5136,1,0,0,0,5141, + 5137,1,0,0,0,5141,5138,1,0,0,0,5141,5139,1,0,0,0,5141,5140,1,0,0, + 0,5142,437,1,0,0,0,5143,5144,5,138,0,0,5144,5145,5,360,0,0,5145, + 5146,3,310,155,0,5146,5147,5,333,0,0,5147,5148,3,434,217,0,5148, + 439,1,0,0,0,5149,5150,5,138,0,0,5150,5151,5,278,0,0,5151,5152,7, + 32,0,0,5152,5153,3,310,155,0,5153,5154,3,164,82,0,5154,5155,5,282, + 0,0,5155,5156,5,94,0,0,5156,5157,3,820,410,0,5157,5224,1,0,0,0,5158, + 5185,5,138,0,0,5159,5160,5,136,0,0,5160,5186,3,388,194,0,5161,5162, + 5,175,0,0,5162,5186,3,792,396,0,5163,5164,5,211,0,0,5164,5186,3, + 376,188,0,5165,5167,5,295,0,0,5166,5165,1,0,0,0,5166,5167,1,0,0, + 0,5167,5168,1,0,0,0,5168,5169,5,247,0,0,5169,5186,3,824,412,0,5170, + 5171,5,248,0,0,5171,5172,5,274,0,0,5172,5186,3,196,98,0,5173,5174, + 5,248,0,0,5174,5175,5,274,0,0,5175,5186,3,196,98,0,5176,5177,5,278, + 0,0,5177,5186,3,410,205,0,5178,5179,5,296,0,0,5179,5186,3,372,186, + 0,5180,5181,5,442,0,0,5181,5186,3,368,184,0,5182,5183,5,323,0,0, + 5183,5186,3,794,397,0,5184,5186,3,170,85,0,5185,5159,1,0,0,0,5185, + 5161,1,0,0,0,5185,5163,1,0,0,0,5185,5166,1,0,0,0,5185,5170,1,0,0, + 0,5185,5173,1,0,0,0,5185,5176,1,0,0,0,5185,5178,1,0,0,0,5185,5180, + 1,0,0,0,5185,5182,1,0,0,0,5185,5184,1,0,0,0,5186,5187,1,0,0,0,5187, + 5188,5,282,0,0,5188,5189,5,94,0,0,5189,5190,3,820,410,0,5190,5224, + 1,0,0,0,5191,5200,5,138,0,0,5192,5193,5,355,0,0,5193,5194,5,325, + 0,0,5194,5201,7,64,0,0,5195,5201,5,108,0,0,5196,5201,5,168,0,0,5197, + 5201,5,189,0,0,5198,5201,5,360,0,0,5199,5201,5,342,0,0,5200,5192, + 1,0,0,0,5200,5195,1,0,0,0,5200,5196,1,0,0,0,5200,5197,1,0,0,0,5200, + 5198,1,0,0,0,5200,5199,1,0,0,0,5201,5202,1,0,0,0,5202,5203,3,310, + 155,0,5203,5204,5,282,0,0,5204,5205,5,94,0,0,5205,5206,3,820,410, + 0,5206,5224,1,0,0,0,5207,5216,5,138,0,0,5208,5217,5,331,0,0,5209, + 5210,5,63,0,0,5210,5211,5,174,0,0,5211,5217,5,381,0,0,5212,5213, + 5,198,0,0,5213,5217,5,357,0,0,5214,5217,5,452,0,0,5215,5217,5,451, + 0,0,5216,5208,1,0,0,0,5216,5209,1,0,0,0,5216,5212,1,0,0,0,5216,5214, + 1,0,0,0,5216,5215,1,0,0,0,5217,5218,1,0,0,0,5218,5219,3,824,412, + 0,5219,5220,5,282,0,0,5220,5221,5,94,0,0,5221,5222,3,820,410,0,5222, + 5224,1,0,0,0,5223,5149,1,0,0,0,5223,5158,1,0,0,0,5223,5191,1,0,0, + 0,5223,5207,1,0,0,0,5224,441,1,0,0,0,5225,5226,5,46,0,0,5226,5227, + 5,452,0,0,5227,5234,3,824,412,0,5228,5229,5,62,0,0,5229,5230,5,92, + 0,0,5230,5235,3,624,312,0,5231,5232,5,62,0,0,5232,5233,5,30,0,0, + 5233,5235,5,350,0,0,5234,5228,1,0,0,0,5234,5231,1,0,0,0,5234,5235, + 1,0,0,0,5235,5237,1,0,0,0,5236,5238,3,394,197,0,5237,5236,1,0,0, + 0,5237,5238,1,0,0,0,5238,443,1,0,0,0,5239,5240,5,138,0,0,5240,5241, + 5,452,0,0,5241,5259,3,824,412,0,5242,5243,5,282,0,0,5243,5244,5, + 94,0,0,5244,5260,3,820,410,0,5245,5246,5,333,0,0,5246,5260,3,278, + 139,0,5247,5248,5,309,0,0,5248,5249,5,94,0,0,5249,5260,3,824,412, + 0,5250,5251,7,35,0,0,5251,5256,3,622,311,0,5252,5253,5,6,0,0,5253, + 5255,3,622,311,0,5254,5252,1,0,0,0,5255,5258,1,0,0,0,5256,5254,1, + 0,0,0,5256,5257,1,0,0,0,5257,5260,1,0,0,0,5258,5256,1,0,0,0,5259, + 5242,1,0,0,0,5259,5245,1,0,0,0,5259,5247,1,0,0,0,5259,5250,1,0,0, + 0,5260,445,1,0,0,0,5261,5262,5,46,0,0,5262,5263,5,451,0,0,5263,5264, + 3,824,412,0,5264,5265,5,164,0,0,5265,5266,3,814,407,0,5266,5267, + 5,452,0,0,5267,5272,3,830,415,0,5268,5269,5,6,0,0,5269,5271,3,830, + 415,0,5270,5268,1,0,0,0,5271,5274,1,0,0,0,5272,5270,1,0,0,0,5272, + 5273,1,0,0,0,5273,5276,1,0,0,0,5274,5272,1,0,0,0,5275,5277,3,394, + 197,0,5276,5275,1,0,0,0,5276,5277,1,0,0,0,5277,447,1,0,0,0,5278, + 5279,5,138,0,0,5279,5280,5,451,0,0,5280,5281,3,824,412,0,5281,5282, + 5,333,0,0,5282,5283,3,278,139,0,5283,5335,1,0,0,0,5284,5285,5,138, + 0,0,5285,5286,5,451,0,0,5286,5287,3,824,412,0,5287,5288,5,164,0, + 0,5288,5289,3,814,407,0,5289,5335,1,0,0,0,5290,5291,5,138,0,0,5291, + 5292,5,451,0,0,5292,5293,3,824,412,0,5293,5294,5,305,0,0,5294,5296, + 5,452,0,0,5295,5297,3,394,197,0,5296,5295,1,0,0,0,5296,5297,1,0, + 0,0,5297,5335,1,0,0,0,5298,5299,5,138,0,0,5299,5300,5,451,0,0,5300, + 5301,3,824,412,0,5301,5302,7,35,0,0,5302,5303,5,452,0,0,5303,5308, + 3,830,415,0,5304,5305,5,6,0,0,5305,5307,3,830,415,0,5306,5304,1, + 0,0,0,5307,5310,1,0,0,0,5308,5306,1,0,0,0,5308,5309,1,0,0,0,5309, + 5312,1,0,0,0,5310,5308,1,0,0,0,5311,5313,3,394,197,0,5312,5311,1, + 0,0,0,5312,5313,1,0,0,0,5313,5335,1,0,0,0,5314,5315,5,138,0,0,5315, + 5316,5,451,0,0,5316,5317,3,824,412,0,5317,5318,7,65,0,0,5318,5335, + 1,0,0,0,5319,5320,5,138,0,0,5320,5321,5,451,0,0,5321,5322,3,824, + 412,0,5322,5323,5,465,0,0,5323,5324,5,2,0,0,5324,5325,3,284,142, + 0,5325,5326,5,3,0,0,5326,5335,1,0,0,0,5327,5328,5,138,0,0,5328,5329, + 5,451,0,0,5329,5330,3,824,412,0,5330,5331,5,282,0,0,5331,5332,5, + 94,0,0,5332,5333,3,820,410,0,5333,5335,1,0,0,0,5334,5278,1,0,0,0, + 5334,5284,1,0,0,0,5334,5290,1,0,0,0,5334,5298,1,0,0,0,5334,5314, + 1,0,0,0,5334,5319,1,0,0,0,5334,5327,1,0,0,0,5335,449,1,0,0,0,5336, + 5338,5,46,0,0,5337,5339,3,360,180,0,5338,5337,1,0,0,0,5338,5339, + 1,0,0,0,5339,5340,1,0,0,0,5340,5341,5,321,0,0,5341,5342,3,824,412, + 0,5342,5343,5,36,0,0,5343,5344,5,80,0,0,5344,5345,7,66,0,0,5345, + 5346,5,94,0,0,5346,5348,3,784,392,0,5347,5349,3,634,317,0,5348,5347, + 1,0,0,0,5348,5349,1,0,0,0,5349,5350,1,0,0,0,5350,5352,5,57,0,0,5351, + 5353,7,67,0,0,5352,5351,1,0,0,0,5352,5353,1,0,0,0,5353,5370,1,0, + 0,0,5354,5371,5,270,0,0,5355,5371,3,452,226,0,5356,5358,5,2,0,0, + 5357,5359,3,452,226,0,5358,5357,1,0,0,0,5358,5359,1,0,0,0,5359,5366, + 1,0,0,0,5360,5362,5,7,0,0,5361,5363,3,452,226,0,5362,5361,1,0,0, + 0,5362,5363,1,0,0,0,5363,5365,1,0,0,0,5364,5360,1,0,0,0,5365,5368, + 1,0,0,0,5366,5364,1,0,0,0,5366,5367,1,0,0,0,5367,5369,1,0,0,0,5368, + 5366,1,0,0,0,5369,5371,5,3,0,0,5370,5354,1,0,0,0,5370,5355,1,0,0, + 0,5370,5356,1,0,0,0,5371,451,1,0,0,0,5372,5378,3,554,277,0,5373, + 5378,3,532,266,0,5374,5378,3,546,273,0,5375,5378,3,542,271,0,5376, + 5378,3,454,227,0,5377,5372,1,0,0,0,5377,5373,1,0,0,0,5377,5374,1, + 0,0,0,5377,5375,1,0,0,0,5377,5376,1,0,0,0,5378,453,1,0,0,0,5379, + 5380,5,271,0,0,5380,5382,3,824,412,0,5381,5383,3,456,228,0,5382, + 5381,1,0,0,0,5382,5383,1,0,0,0,5383,455,1,0,0,0,5384,5385,5,6,0, + 0,5385,5386,3,814,407,0,5386,457,1,0,0,0,5387,5388,5,252,0,0,5388, + 5389,3,824,412,0,5389,459,1,0,0,0,5390,5393,5,366,0,0,5391,5394, + 3,824,412,0,5392,5394,5,9,0,0,5393,5391,1,0,0,0,5393,5392,1,0,0, + 0,5394,461,1,0,0,0,5395,5397,5,146,0,0,5396,5398,3,464,232,0,5397, + 5396,1,0,0,0,5397,5398,1,0,0,0,5398,5400,1,0,0,0,5399,5401,3,468, + 234,0,5400,5399,1,0,0,0,5400,5401,1,0,0,0,5401,5441,1,0,0,0,5402, + 5403,5,340,0,0,5403,5405,5,356,0,0,5404,5406,3,468,234,0,5405,5404, + 1,0,0,0,5405,5406,1,0,0,0,5406,5441,1,0,0,0,5407,5408,5,322,0,0, + 5408,5441,3,824,412,0,5409,5411,5,308,0,0,5410,5412,5,322,0,0,5411, + 5410,1,0,0,0,5411,5412,1,0,0,0,5412,5413,1,0,0,0,5413,5441,3,824, + 412,0,5414,5415,5,290,0,0,5415,5416,5,356,0,0,5416,5441,3,814,407, + 0,5417,5418,7,68,0,0,5418,5419,5,291,0,0,5419,5441,3,814,407,0,5420, + 5422,7,69,0,0,5421,5423,3,464,232,0,5422,5421,1,0,0,0,5422,5423, + 1,0,0,0,5423,5429,1,0,0,0,5424,5426,5,33,0,0,5425,5427,5,269,0,0, + 5426,5425,1,0,0,0,5426,5427,1,0,0,0,5427,5428,1,0,0,0,5428,5430, + 5,153,0,0,5429,5424,1,0,0,0,5429,5430,1,0,0,0,5430,5441,1,0,0,0, + 5431,5433,5,319,0,0,5432,5434,3,464,232,0,5433,5432,1,0,0,0,5433, + 5434,1,0,0,0,5434,5435,1,0,0,0,5435,5437,5,94,0,0,5436,5438,5,322, + 0,0,5437,5436,1,0,0,0,5437,5438,1,0,0,0,5438,5439,1,0,0,0,5439,5441, + 3,824,412,0,5440,5395,1,0,0,0,5440,5402,1,0,0,0,5440,5407,1,0,0, + 0,5440,5409,1,0,0,0,5440,5414,1,0,0,0,5440,5417,1,0,0,0,5440,5420, + 1,0,0,0,5440,5431,1,0,0,0,5441,463,1,0,0,0,5442,5443,7,70,0,0,5443, + 465,1,0,0,0,5444,5445,5,244,0,0,5445,5446,5,251,0,0,5446,5454,3, + 50,25,0,5447,5448,5,300,0,0,5448,5454,7,71,0,0,5449,5451,5,77,0, + 0,5450,5449,1,0,0,0,5450,5451,1,0,0,0,5451,5452,1,0,0,0,5452,5454, + 5,54,0,0,5453,5444,1,0,0,0,5453,5447,1,0,0,0,5453,5450,1,0,0,0,5454, + 467,1,0,0,0,5455,5462,3,466,233,0,5456,5458,5,6,0,0,5457,5456,1, + 0,0,0,5457,5458,1,0,0,0,5458,5459,1,0,0,0,5459,5461,3,466,233,0, + 5460,5457,1,0,0,0,5461,5464,1,0,0,0,5462,5460,1,0,0,0,5462,5463, + 1,0,0,0,5463,469,1,0,0,0,5464,5462,1,0,0,0,5465,5468,5,46,0,0,5466, + 5467,5,82,0,0,5467,5469,5,311,0,0,5468,5466,1,0,0,0,5468,5469,1, + 0,0,0,5469,5471,1,0,0,0,5470,5472,3,116,58,0,5471,5470,1,0,0,0,5471, + 5472,1,0,0,0,5472,5488,1,0,0,0,5473,5474,5,376,0,0,5474,5476,3,780, + 390,0,5475,5477,3,140,70,0,5476,5475,1,0,0,0,5476,5477,1,0,0,0,5477, + 5479,1,0,0,0,5478,5480,3,94,47,0,5479,5478,1,0,0,0,5479,5480,1,0, + 0,0,5480,5489,1,0,0,0,5481,5482,5,303,0,0,5482,5483,5,376,0,0,5483, + 5484,3,780,390,0,5484,5486,3,138,69,0,5485,5487,3,94,47,0,5486,5485, + 1,0,0,0,5486,5487,1,0,0,0,5487,5489,1,0,0,0,5488,5473,1,0,0,0,5488, + 5481,1,0,0,0,5489,5490,1,0,0,0,5490,5491,5,36,0,0,5491,5498,3,554, + 277,0,5492,5494,5,105,0,0,5493,5495,7,72,0,0,5494,5493,1,0,0,0,5494, + 5495,1,0,0,0,5495,5496,1,0,0,0,5496,5497,5,42,0,0,5497,5499,5,279, + 0,0,5498,5492,1,0,0,0,5498,5499,1,0,0,0,5499,471,1,0,0,0,5500,5501, + 5,253,0,0,5501,5502,3,814,407,0,5502,473,1,0,0,0,5503,5504,5,46, + 0,0,5504,5505,5,175,0,0,5505,5507,3,790,395,0,5506,5508,5,105,0, + 0,5507,5506,1,0,0,0,5507,5508,1,0,0,0,5508,5514,1,0,0,0,5509,5511, + 3,476,238,0,5510,5509,1,0,0,0,5511,5512,1,0,0,0,5512,5510,1,0,0, + 0,5512,5513,1,0,0,0,5513,5515,1,0,0,0,5514,5510,1,0,0,0,5514,5515, + 1,0,0,0,5515,475,1,0,0,0,5516,5517,5,164,0,0,5517,5525,5,74,0,0, + 5518,5525,5,194,0,0,5519,5525,5,255,0,0,5520,5525,5,282,0,0,5521, + 5525,5,351,0,0,5522,5525,5,353,0,0,5523,5525,3,832,416,0,5524,5516, + 1,0,0,0,5524,5518,1,0,0,0,5524,5519,1,0,0,0,5524,5520,1,0,0,0,5524, + 5521,1,0,0,0,5524,5522,1,0,0,0,5524,5523,1,0,0,0,5525,5527,1,0,0, + 0,5526,5528,5,10,0,0,5527,5526,1,0,0,0,5527,5528,1,0,0,0,5528,5532, + 1,0,0,0,5529,5533,3,818,409,0,5530,5533,3,54,27,0,5531,5533,5,53, + 0,0,5532,5529,1,0,0,0,5532,5530,1,0,0,0,5532,5531,1,0,0,0,5533,477, + 1,0,0,0,5534,5535,5,138,0,0,5535,5536,5,175,0,0,5536,5552,3,792, + 396,0,5537,5538,5,333,0,0,5538,5539,5,351,0,0,5539,5541,3,774,387, + 0,5540,5537,1,0,0,0,5540,5541,1,0,0,0,5541,5553,1,0,0,0,5542,5544, + 5,105,0,0,5543,5542,1,0,0,0,5543,5544,1,0,0,0,5544,5546,1,0,0,0, + 5545,5547,3,476,238,0,5546,5545,1,0,0,0,5547,5548,1,0,0,0,5548,5546, + 1,0,0,0,5548,5549,1,0,0,0,5549,5551,1,0,0,0,5550,5543,1,0,0,0,5550, + 5551,1,0,0,0,5551,5553,1,0,0,0,5552,5540,1,0,0,0,5552,5550,1,0,0, + 0,5553,479,1,0,0,0,5554,5555,5,138,0,0,5555,5556,5,175,0,0,5556, + 5558,3,792,396,0,5557,5559,3,64,32,0,5558,5557,1,0,0,0,5558,5559, + 1,0,0,0,5559,481,1,0,0,0,5560,5561,5,138,0,0,5561,5562,5,108,0,0, + 5562,5563,3,310,155,0,5563,5564,5,305,0,0,5564,5565,5,375,0,0,5565, + 483,1,0,0,0,5566,5567,5,138,0,0,5567,5568,5,349,0,0,5568,5569,7, + 16,0,0,5569,5570,3,40,20,0,5570,485,1,0,0,0,5571,5572,5,46,0,0,5572, + 5573,5,189,0,0,5573,5575,3,310,155,0,5574,5576,5,36,0,0,5575,5574, + 1,0,0,0,5575,5576,1,0,0,0,5576,5577,1,0,0,0,5577,5581,3,648,324, + 0,5578,5580,3,128,64,0,5579,5578,1,0,0,0,5580,5583,1,0,0,0,5581, + 5579,1,0,0,0,5581,5582,1,0,0,0,5582,487,1,0,0,0,5583,5581,1,0,0, + 0,5584,5585,5,138,0,0,5585,5586,5,189,0,0,5586,5609,3,310,155,0, + 5587,5610,3,86,43,0,5588,5589,7,15,0,0,5589,5590,5,77,0,0,5590,5610, + 5,78,0,0,5591,5594,5,133,0,0,5592,5593,5,45,0,0,5593,5595,3,824, + 412,0,5594,5592,1,0,0,0,5594,5595,1,0,0,0,5595,5596,1,0,0,0,5596, + 5610,3,136,68,0,5597,5598,5,191,0,0,5598,5600,5,45,0,0,5599,5601, + 3,416,208,0,5600,5599,1,0,0,0,5600,5601,1,0,0,0,5601,5602,1,0,0, + 0,5602,5604,3,824,412,0,5603,5605,3,88,44,0,5604,5603,1,0,0,0,5604, + 5605,1,0,0,0,5605,5610,1,0,0,0,5606,5607,5,372,0,0,5607,5608,5,45, + 0,0,5608,5610,3,824,412,0,5609,5587,1,0,0,0,5609,5588,1,0,0,0,5609, + 5591,1,0,0,0,5609,5597,1,0,0,0,5609,5606,1,0,0,0,5610,489,1,0,0, + 0,5611,5612,5,138,0,0,5612,5613,5,355,0,0,5613,5614,5,325,0,0,5614, + 5615,5,185,0,0,5615,5616,3,310,155,0,5616,5617,3,278,139,0,5617, + 491,1,0,0,0,5618,5619,5,138,0,0,5619,5620,5,355,0,0,5620,5621,5, + 325,0,0,5621,5622,5,163,0,0,5622,5623,3,310,155,0,5623,5624,7,73, + 0,0,5624,5625,5,257,0,0,5625,5626,5,62,0,0,5626,5627,3,788,394,0, + 5627,5628,5,105,0,0,5628,5629,3,308,154,0,5629,5660,1,0,0,0,5630, + 5631,5,138,0,0,5631,5632,5,355,0,0,5632,5633,5,325,0,0,5633,5634, + 5,163,0,0,5634,5635,3,310,155,0,5635,5636,5,138,0,0,5636,5639,5, + 257,0,0,5637,5638,5,62,0,0,5638,5640,3,788,394,0,5639,5637,1,0,0, + 0,5639,5640,1,0,0,0,5640,5641,1,0,0,0,5641,5642,5,311,0,0,5642,5643, + 3,310,155,0,5643,5644,5,105,0,0,5644,5645,3,310,155,0,5645,5660, + 1,0,0,0,5646,5647,5,138,0,0,5647,5648,5,355,0,0,5648,5649,5,325, + 0,0,5649,5650,5,163,0,0,5650,5651,3,310,155,0,5651,5652,5,191,0, + 0,5652,5654,5,257,0,0,5653,5655,3,416,208,0,5654,5653,1,0,0,0,5654, + 5655,1,0,0,0,5655,5656,1,0,0,0,5656,5657,5,62,0,0,5657,5658,3,788, + 394,0,5658,5660,1,0,0,0,5659,5618,1,0,0,0,5659,5630,1,0,0,0,5659, + 5646,1,0,0,0,5660,493,1,0,0,0,5661,5663,5,46,0,0,5662,5664,5,53, + 0,0,5663,5662,1,0,0,0,5663,5664,1,0,0,0,5664,5665,1,0,0,0,5665,5666, + 5,168,0,0,5666,5667,3,310,155,0,5667,5668,5,62,0,0,5668,5669,3,814, + 407,0,5669,5670,5,94,0,0,5670,5671,3,814,407,0,5671,5672,5,64,0, + 0,5672,5673,3,310,155,0,5673,495,1,0,0,0,5674,5676,5,158,0,0,5675, + 5677,3,508,254,0,5676,5675,1,0,0,0,5676,5677,1,0,0,0,5677,5682,1, + 0,0,0,5678,5680,3,778,389,0,5679,5681,3,164,82,0,5680,5679,1,0,0, + 0,5680,5681,1,0,0,0,5681,5683,1,0,0,0,5682,5678,1,0,0,0,5682,5683, + 1,0,0,0,5683,5700,1,0,0,0,5684,5685,5,158,0,0,5685,5686,5,2,0,0, + 5686,5691,3,508,254,0,5687,5688,5,6,0,0,5688,5690,3,508,254,0,5689, + 5687,1,0,0,0,5690,5693,1,0,0,0,5691,5689,1,0,0,0,5691,5692,1,0,0, + 0,5692,5694,1,0,0,0,5693,5691,1,0,0,0,5694,5695,5,3,0,0,5695,5697, + 3,778,389,0,5696,5698,3,164,82,0,5697,5696,1,0,0,0,5697,5698,1,0, + 0,0,5698,5700,1,0,0,0,5699,5674,1,0,0,0,5699,5684,1,0,0,0,5700,497, + 1,0,0,0,5701,5717,5,370,0,0,5702,5704,5,113,0,0,5703,5702,1,0,0, + 0,5703,5704,1,0,0,0,5704,5706,1,0,0,0,5705,5707,5,112,0,0,5706,5705, + 1,0,0,0,5706,5707,1,0,0,0,5707,5709,1,0,0,0,5708,5710,3,508,254, + 0,5709,5708,1,0,0,0,5709,5710,1,0,0,0,5710,5712,1,0,0,0,5711,5713, + 3,502,251,0,5712,5711,1,0,0,0,5712,5713,1,0,0,0,5713,5718,1,0,0, + 0,5714,5716,3,518,259,0,5715,5714,1,0,0,0,5715,5716,1,0,0,0,5716, + 5718,1,0,0,0,5717,5703,1,0,0,0,5717,5715,1,0,0,0,5718,5720,1,0,0, + 0,5719,5721,3,512,256,0,5720,5719,1,0,0,0,5720,5721,1,0,0,0,5721, + 499,1,0,0,0,5722,5737,3,502,251,0,5723,5725,3,508,254,0,5724,5723, + 1,0,0,0,5724,5725,1,0,0,0,5725,5738,1,0,0,0,5726,5727,5,2,0,0,5727, + 5732,3,506,253,0,5728,5729,5,6,0,0,5729,5731,3,506,253,0,5730,5728, + 1,0,0,0,5731,5734,1,0,0,0,5732,5730,1,0,0,0,5732,5733,1,0,0,0,5733, + 5735,1,0,0,0,5734,5732,1,0,0,0,5735,5736,5,3,0,0,5736,5738,1,0,0, + 0,5737,5724,1,0,0,0,5737,5726,1,0,0,0,5738,5740,1,0,0,0,5739,5741, + 3,512,256,0,5740,5739,1,0,0,0,5740,5741,1,0,0,0,5741,501,1,0,0,0, + 5742,5743,7,74,0,0,5743,503,1,0,0,0,5744,5747,3,828,414,0,5745,5747, + 3,502,251,0,5746,5744,1,0,0,0,5746,5745,1,0,0,0,5747,5750,1,0,0, + 0,5748,5751,3,54,27,0,5749,5751,3,196,98,0,5750,5748,1,0,0,0,5750, + 5749,1,0,0,0,5750,5751,1,0,0,0,5751,505,1,0,0,0,5752,5754,7,75,0, + 0,5753,5755,7,76,0,0,5754,5753,1,0,0,0,5754,5755,1,0,0,0,5755,5762, + 1,0,0,0,5756,5759,5,548,0,0,5757,5760,3,196,98,0,5758,5760,3,814, + 407,0,5759,5757,1,0,0,0,5759,5758,1,0,0,0,5760,5762,1,0,0,0,5761, + 5752,1,0,0,0,5761,5756,1,0,0,0,5762,507,1,0,0,0,5763,5765,5,128, + 0,0,5764,5766,7,76,0,0,5765,5764,1,0,0,0,5765,5766,1,0,0,0,5766, + 509,1,0,0,0,5767,5769,3,778,389,0,5768,5770,3,138,69,0,5769,5768, + 1,0,0,0,5769,5770,1,0,0,0,5770,511,1,0,0,0,5771,5776,3,510,255,0, + 5772,5773,5,6,0,0,5773,5775,3,510,255,0,5774,5772,1,0,0,0,5775,5778, + 1,0,0,0,5776,5774,1,0,0,0,5776,5777,1,0,0,0,5777,513,1,0,0,0,5778, + 5776,1,0,0,0,5779,5790,5,203,0,0,5780,5791,3,518,259,0,5781,5783, + 5,128,0,0,5782,5781,1,0,0,0,5782,5783,1,0,0,0,5783,5791,1,0,0,0, + 5784,5786,3,502,251,0,5785,5787,3,508,254,0,5786,5785,1,0,0,0,5786, + 5787,1,0,0,0,5787,5789,1,0,0,0,5788,5784,1,0,0,0,5788,5789,1,0,0, + 0,5789,5791,1,0,0,0,5790,5780,1,0,0,0,5790,5782,1,0,0,0,5790,5788, + 1,0,0,0,5791,5792,1,0,0,0,5792,5793,3,516,258,0,5793,515,1,0,0,0, + 5794,5804,3,554,277,0,5795,5804,3,532,266,0,5796,5804,3,546,273, + 0,5797,5804,3,542,271,0,5798,5804,3,552,276,0,5799,5804,3,180,90, + 0,5800,5804,3,186,93,0,5801,5804,3,188,94,0,5802,5804,3,526,263, + 0,5803,5794,1,0,0,0,5803,5795,1,0,0,0,5803,5796,1,0,0,0,5803,5797, + 1,0,0,0,5803,5798,1,0,0,0,5803,5799,1,0,0,0,5803,5800,1,0,0,0,5803, + 5801,1,0,0,0,5803,5802,1,0,0,0,5804,517,1,0,0,0,5805,5806,5,2,0, + 0,5806,5811,3,504,252,0,5807,5808,5,6,0,0,5808,5810,3,504,252,0, + 5809,5807,1,0,0,0,5810,5813,1,0,0,0,5811,5809,1,0,0,0,5811,5812, + 1,0,0,0,5812,5814,1,0,0,0,5813,5811,1,0,0,0,5814,5815,5,3,0,0,5815, + 519,1,0,0,0,5816,5817,5,290,0,0,5817,5819,3,824,412,0,5818,5820, + 3,522,261,0,5819,5818,1,0,0,0,5819,5820,1,0,0,0,5820,5821,1,0,0, + 0,5821,5822,5,36,0,0,5822,5823,3,524,262,0,5823,521,1,0,0,0,5824, + 5825,5,2,0,0,5825,5830,3,648,324,0,5826,5827,5,6,0,0,5827,5829,3, + 648,324,0,5828,5826,1,0,0,0,5829,5832,1,0,0,0,5830,5828,1,0,0,0, + 5830,5831,1,0,0,0,5831,5833,1,0,0,0,5832,5830,1,0,0,0,5833,5834, + 5,3,0,0,5834,523,1,0,0,0,5835,5841,3,554,277,0,5836,5841,3,532,266, + 0,5837,5841,3,546,273,0,5838,5841,3,542,271,0,5839,5841,3,906,453, + 0,5840,5835,1,0,0,0,5840,5836,1,0,0,0,5840,5837,1,0,0,0,5840,5838, + 1,0,0,0,5840,5839,1,0,0,0,5841,525,1,0,0,0,5842,5843,5,202,0,0,5843, + 5845,3,824,412,0,5844,5846,3,528,264,0,5845,5844,1,0,0,0,5845,5846, + 1,0,0,0,5846,5866,1,0,0,0,5847,5849,5,46,0,0,5848,5850,3,116,58, + 0,5849,5848,1,0,0,0,5849,5850,1,0,0,0,5850,5851,1,0,0,0,5851,5853, + 5,92,0,0,5852,5854,3,288,144,0,5853,5852,1,0,0,0,5853,5854,1,0,0, + 0,5854,5855,1,0,0,0,5855,5856,3,182,91,0,5856,5857,5,36,0,0,5857, + 5858,5,202,0,0,5858,5860,3,824,412,0,5859,5861,3,528,264,0,5860, + 5859,1,0,0,0,5860,5861,1,0,0,0,5861,5863,1,0,0,0,5862,5864,3,184, + 92,0,5863,5862,1,0,0,0,5863,5864,1,0,0,0,5864,5866,1,0,0,0,5865, + 5842,1,0,0,0,5865,5847,1,0,0,0,5866,527,1,0,0,0,5867,5868,5,2,0, + 0,5868,5869,3,728,364,0,5869,5870,5,3,0,0,5870,529,1,0,0,0,5871, + 5873,5,177,0,0,5872,5874,5,290,0,0,5873,5872,1,0,0,0,5873,5874,1, + 0,0,0,5874,5877,1,0,0,0,5875,5878,3,824,412,0,5876,5878,5,30,0,0, + 5877,5875,1,0,0,0,5877,5876,1,0,0,0,5878,531,1,0,0,0,5879,5881,3, + 566,283,0,5880,5879,1,0,0,0,5880,5881,1,0,0,0,5881,5882,1,0,0,0, + 5882,5883,5,241,0,0,5883,5884,5,71,0,0,5884,5887,3,778,389,0,5885, + 5886,5,36,0,0,5886,5888,3,824,412,0,5887,5885,1,0,0,0,5887,5888, + 1,0,0,0,5888,5889,1,0,0,0,5889,5911,3,534,267,0,5890,5891,5,80,0, + 0,5891,5899,5,464,0,0,5892,5894,3,354,177,0,5893,5895,3,634,317, + 0,5894,5893,1,0,0,0,5894,5895,1,0,0,0,5895,5900,1,0,0,0,5896,5897, + 5,80,0,0,5897,5898,5,45,0,0,5898,5900,3,824,412,0,5899,5892,1,0, + 0,0,5899,5896,1,0,0,0,5899,5900,1,0,0,0,5900,5901,1,0,0,0,5901,5909, + 5,57,0,0,5902,5903,5,369,0,0,5903,5904,5,333,0,0,5904,5906,3,548, + 274,0,5905,5907,3,634,317,0,5906,5905,1,0,0,0,5906,5907,1,0,0,0, + 5907,5910,1,0,0,0,5908,5910,5,270,0,0,5909,5902,1,0,0,0,5909,5908, + 1,0,0,0,5910,5912,1,0,0,0,5911,5890,1,0,0,0,5911,5912,1,0,0,0,5912, + 5914,1,0,0,0,5913,5915,3,540,270,0,5914,5913,1,0,0,0,5914,5915,1, + 0,0,0,5915,533,1,0,0,0,5916,5917,5,2,0,0,5917,5918,3,536,268,0,5918, + 5919,5,3,0,0,5919,5921,1,0,0,0,5920,5916,1,0,0,0,5920,5921,1,0,0, + 0,5921,5925,1,0,0,0,5922,5923,5,463,0,0,5923,5924,7,77,0,0,5924, + 5926,5,450,0,0,5925,5922,1,0,0,0,5925,5926,1,0,0,0,5926,5929,1,0, + 0,0,5927,5930,3,916,458,0,5928,5930,3,554,277,0,5929,5927,1,0,0, + 0,5929,5928,1,0,0,0,5930,535,1,0,0,0,5931,5936,3,538,269,0,5932, + 5933,5,6,0,0,5933,5935,3,538,269,0,5934,5932,1,0,0,0,5935,5938,1, + 0,0,0,5936,5934,1,0,0,0,5936,5937,1,0,0,0,5937,537,1,0,0,0,5938, + 5936,1,0,0,0,5939,5940,3,804,402,0,5940,5941,3,756,378,0,5941,539, + 1,0,0,0,5942,5943,5,87,0,0,5943,5944,3,758,379,0,5944,541,1,0,0, + 0,5945,5947,3,566,283,0,5946,5945,1,0,0,0,5946,5947,1,0,0,0,5947, + 5948,1,0,0,0,5948,5949,5,182,0,0,5949,5950,5,64,0,0,5950,5953,3, + 626,313,0,5951,5952,5,100,0,0,5952,5954,3,606,303,0,5953,5951,1, + 0,0,0,5953,5954,1,0,0,0,5954,5956,1,0,0,0,5955,5957,3,636,318,0, + 5956,5955,1,0,0,0,5956,5957,1,0,0,0,5957,5959,1,0,0,0,5958,5960, + 3,540,270,0,5959,5958,1,0,0,0,5959,5960,1,0,0,0,5960,543,1,0,0,0, + 5961,5963,5,256,0,0,5962,5964,5,92,0,0,5963,5962,1,0,0,0,5963,5964, + 1,0,0,0,5964,5965,1,0,0,0,5965,5980,3,624,312,0,5966,5977,5,68,0, + 0,5967,5968,7,78,0,0,5968,5978,7,79,0,0,5969,5974,5,334,0,0,5970, + 5971,5,369,0,0,5971,5975,5,201,0,0,5972,5973,5,414,0,0,5973,5975, + 5,201,0,0,5974,5970,1,0,0,0,5974,5972,1,0,0,0,5974,5975,1,0,0,0, + 5975,5978,1,0,0,0,5976,5978,5,201,0,0,5977,5967,1,0,0,0,5977,5969, + 1,0,0,0,5977,5976,1,0,0,0,5978,5979,1,0,0,0,5979,5981,5,263,0,0, + 5980,5966,1,0,0,0,5980,5981,1,0,0,0,5981,5983,1,0,0,0,5982,5984, + 5,272,0,0,5983,5982,1,0,0,0,5983,5984,1,0,0,0,5984,545,1,0,0,0,5985, + 5987,3,566,283,0,5986,5985,1,0,0,0,5986,5987,1,0,0,0,5987,5988,1, + 0,0,0,5988,5989,5,369,0,0,5989,5990,3,626,313,0,5990,5991,5,333, + 0,0,5991,5993,3,548,274,0,5992,5994,3,604,302,0,5993,5992,1,0,0, + 0,5993,5994,1,0,0,0,5994,5996,1,0,0,0,5995,5997,3,636,318,0,5996, + 5995,1,0,0,0,5996,5997,1,0,0,0,5997,5999,1,0,0,0,5998,6000,3,540, + 270,0,5999,5998,1,0,0,0,5999,6000,1,0,0,0,6000,547,1,0,0,0,6001, + 6006,3,550,275,0,6002,6003,5,6,0,0,6003,6005,3,550,275,0,6004,6002, + 1,0,0,0,6005,6008,1,0,0,0,6006,6004,1,0,0,0,6006,6007,1,0,0,0,6007, + 549,1,0,0,0,6008,6006,1,0,0,0,6009,6010,3,538,269,0,6010,6011,5, + 10,0,0,6011,6012,3,670,335,0,6012,6028,1,0,0,0,6013,6014,5,2,0,0, + 6014,6015,3,536,268,0,6015,6016,5,3,0,0,6016,6025,5,10,0,0,6017, + 6019,5,414,0,0,6018,6017,1,0,0,0,6018,6019,1,0,0,0,6019,6020,1,0, + 0,0,6020,6026,3,670,335,0,6021,6022,5,2,0,0,6022,6023,3,560,280, + 0,6023,6024,5,3,0,0,6024,6026,1,0,0,0,6025,6018,1,0,0,0,6025,6021, + 1,0,0,0,6026,6028,1,0,0,0,6027,6009,1,0,0,0,6027,6013,1,0,0,0,6028, + 551,1,0,0,0,6029,6030,5,178,0,0,6030,6039,3,824,412,0,6031,6033, + 5,269,0,0,6032,6031,1,0,0,0,6032,6033,1,0,0,0,6033,6034,1,0,0,0, + 6034,6038,5,324,0,0,6035,6038,5,107,0,0,6036,6038,5,240,0,0,6037, + 6032,1,0,0,0,6037,6035,1,0,0,0,6037,6036,1,0,0,0,6038,6041,1,0,0, + 0,6039,6037,1,0,0,0,6039,6040,1,0,0,0,6040,6042,1,0,0,0,6041,6039, + 1,0,0,0,6042,6045,5,172,0,0,6043,6044,7,27,0,0,6044,6046,5,217,0, + 0,6045,6043,1,0,0,0,6045,6046,1,0,0,0,6046,6047,1,0,0,0,6047,6048, + 5,62,0,0,6048,6049,3,554,277,0,6049,553,1,0,0,0,6050,6053,3,558, + 279,0,6051,6053,3,556,278,0,6052,6050,1,0,0,0,6052,6051,1,0,0,0, + 6053,555,1,0,0,0,6054,6057,5,2,0,0,6055,6058,3,558,279,0,6056,6058, + 3,556,278,0,6057,6055,1,0,0,0,6057,6056,1,0,0,0,6058,6059,1,0,0, + 0,6059,6060,5,3,0,0,6060,557,1,0,0,0,6061,6063,3,566,283,0,6062, + 6061,1,0,0,0,6062,6063,1,0,0,0,6063,6064,1,0,0,0,6064,6066,3,560, + 280,0,6065,6067,3,580,290,0,6066,6065,1,0,0,0,6066,6067,1,0,0,0, + 6067,6076,1,0,0,0,6068,6070,3,600,300,0,6069,6071,3,584,292,0,6070, + 6069,1,0,0,0,6070,6071,1,0,0,0,6071,6077,1,0,0,0,6072,6074,3,584, + 292,0,6073,6075,3,600,300,0,6074,6073,1,0,0,0,6074,6075,1,0,0,0, + 6075,6077,1,0,0,0,6076,6068,1,0,0,0,6076,6072,1,0,0,0,6076,6077, + 1,0,0,0,6077,559,1,0,0,0,6078,6081,3,562,281,0,6079,6081,3,556,278, + 0,6080,6078,1,0,0,0,6080,6079,1,0,0,0,6081,561,1,0,0,0,6082,6092, + 5,88,0,0,6083,6085,5,30,0,0,6084,6083,1,0,0,0,6084,6085,1,0,0,0, + 6085,6087,1,0,0,0,6086,6088,3,574,287,0,6087,6086,1,0,0,0,6087,6088, + 1,0,0,0,6088,6093,1,0,0,0,6089,6091,3,578,289,0,6090,6089,1,0,0, + 0,6090,6091,1,0,0,0,6091,6093,1,0,0,0,6092,6084,1,0,0,0,6092,6090, + 1,0,0,0,6093,6094,1,0,0,0,6094,6105,3,936,468,0,6095,6105,3,602, + 301,0,6096,6097,5,92,0,0,6097,6105,3,620,310,0,6098,6099,3,556,278, + 0,6099,6102,3,564,282,0,6100,6103,3,562,281,0,6101,6103,3,556,278, + 0,6102,6100,1,0,0,0,6102,6101,1,0,0,0,6103,6105,1,0,0,0,6104,6082, + 1,0,0,0,6104,6095,1,0,0,0,6104,6096,1,0,0,0,6104,6098,1,0,0,0,6105, + 6113,1,0,0,0,6106,6109,3,564,282,0,6107,6110,3,562,281,0,6108,6110, + 3,556,278,0,6109,6107,1,0,0,0,6109,6108,1,0,0,0,6110,6112,1,0,0, + 0,6111,6106,1,0,0,0,6112,6115,1,0,0,0,6113,6111,1,0,0,0,6113,6114, + 1,0,0,0,6114,563,1,0,0,0,6115,6113,1,0,0,0,6116,6118,7,80,0,0,6117, + 6119,7,81,0,0,6118,6117,1,0,0,0,6118,6119,1,0,0,0,6119,565,1,0,0, + 0,6120,6122,5,105,0,0,6121,6123,5,303,0,0,6122,6121,1,0,0,0,6122, + 6123,1,0,0,0,6123,6124,1,0,0,0,6124,6129,3,568,284,0,6125,6126,5, + 6,0,0,6126,6128,3,568,284,0,6127,6125,1,0,0,0,6128,6131,1,0,0,0, + 6129,6127,1,0,0,0,6129,6130,1,0,0,0,6130,567,1,0,0,0,6131,6129,1, + 0,0,0,6132,6134,3,824,412,0,6133,6135,3,138,69,0,6134,6133,1,0,0, + 0,6134,6135,1,0,0,0,6135,6136,1,0,0,0,6136,6141,5,36,0,0,6137,6139, + 5,77,0,0,6138,6137,1,0,0,0,6138,6139,1,0,0,0,6139,6140,1,0,0,0,6140, + 6142,5,259,0,0,6141,6138,1,0,0,0,6141,6142,1,0,0,0,6142,6143,1,0, + 0,0,6143,6144,5,2,0,0,6144,6145,3,524,262,0,6145,6147,5,3,0,0,6146, + 6148,3,570,285,0,6147,6146,1,0,0,0,6147,6148,1,0,0,0,6148,6150,1, + 0,0,0,6149,6151,3,572,286,0,6150,6149,1,0,0,0,6150,6151,1,0,0,0, + 6151,569,1,0,0,0,6152,6153,5,325,0,0,6153,6154,7,82,0,0,6154,6155, + 5,207,0,0,6155,6156,5,147,0,0,6156,6157,3,142,71,0,6157,6158,5,333, + 0,0,6158,6159,3,804,402,0,6159,571,1,0,0,0,6160,6161,5,173,0,0,6161, + 6162,3,142,71,0,6162,6163,5,333,0,0,6163,6169,3,804,402,0,6164,6165, + 5,94,0,0,6165,6166,3,824,412,0,6166,6167,5,53,0,0,6167,6168,3,824, + 412,0,6168,6170,1,0,0,0,6169,6164,1,0,0,0,6169,6170,1,0,0,0,6170, + 6171,1,0,0,0,6171,6172,5,100,0,0,6172,6173,3,804,402,0,6173,573, + 1,0,0,0,6174,6180,5,71,0,0,6175,6177,5,346,0,0,6176,6175,1,0,0,0, + 6176,6177,1,0,0,0,6177,6178,1,0,0,0,6178,6181,3,576,288,0,6179,6181, + 3,728,364,0,6180,6176,1,0,0,0,6180,6179,1,0,0,0,6181,575,1,0,0,0, + 6182,6184,7,21,0,0,6183,6182,1,0,0,0,6183,6184,1,0,0,0,6184,6185, + 1,0,0,0,6185,6187,7,22,0,0,6186,6188,5,92,0,0,6187,6186,1,0,0,0, + 6187,6188,1,0,0,0,6188,6189,1,0,0,0,6189,6198,3,776,388,0,6190,6192, + 5,367,0,0,6191,6190,1,0,0,0,6191,6192,1,0,0,0,6192,6194,1,0,0,0, + 6193,6195,5,92,0,0,6194,6193,1,0,0,0,6194,6195,1,0,0,0,6195,6196, + 1,0,0,0,6196,6198,3,776,388,0,6197,6183,1,0,0,0,6197,6191,1,0,0, + 0,6198,577,1,0,0,0,6199,6202,5,56,0,0,6200,6201,5,80,0,0,6201,6203, + 3,528,264,0,6202,6200,1,0,0,0,6202,6203,1,0,0,0,6203,579,1,0,0,0, + 6204,6205,5,83,0,0,6205,6206,5,147,0,0,6206,6211,3,582,291,0,6207, + 6208,5,6,0,0,6208,6210,3,582,291,0,6209,6207,1,0,0,0,6210,6213,1, + 0,0,0,6211,6209,1,0,0,0,6211,6212,1,0,0,0,6212,581,1,0,0,0,6213, + 6211,1,0,0,0,6214,6218,3,736,368,0,6215,6216,5,100,0,0,6216,6219, + 3,724,362,0,6217,6219,7,56,0,0,6218,6215,1,0,0,0,6218,6217,1,0,0, + 0,6218,6219,1,0,0,0,6219,6222,1,0,0,0,6220,6221,5,273,0,0,6221,6223, + 7,57,0,0,6222,6220,1,0,0,0,6222,6223,1,0,0,0,6223,583,1,0,0,0,6224, + 6226,3,590,295,0,6225,6227,3,588,294,0,6226,6225,1,0,0,0,6226,6227, + 1,0,0,0,6227,6236,1,0,0,0,6228,6231,3,586,293,0,6229,6231,3,588, + 294,0,6230,6228,1,0,0,0,6230,6229,1,0,0,0,6231,6233,1,0,0,0,6232, + 6234,3,590,295,0,6233,6232,1,0,0,0,6233,6234,1,0,0,0,6234,6236,1, + 0,0,0,6235,6224,1,0,0,0,6235,6230,1,0,0,0,6236,585,1,0,0,0,6237, + 6240,5,74,0,0,6238,6241,3,670,335,0,6239,6241,5,30,0,0,6240,6238, + 1,0,0,0,6240,6239,1,0,0,0,6241,6244,1,0,0,0,6242,6243,5,6,0,0,6243, + 6245,3,670,335,0,6244,6242,1,0,0,0,6244,6245,1,0,0,0,6245,587,1, + 0,0,0,6246,6247,5,61,0,0,6247,6249,7,83,0,0,6248,6250,3,592,296, + 0,6249,6248,1,0,0,0,6249,6250,1,0,0,0,6250,6251,1,0,0,0,6251,6255, + 7,84,0,0,6252,6256,5,81,0,0,6253,6254,5,105,0,0,6254,6256,5,467, + 0,0,6255,6252,1,0,0,0,6255,6253,1,0,0,0,6256,589,1,0,0,0,6257,6262, + 5,79,0,0,6258,6259,3,592,296,0,6259,6260,7,84,0,0,6260,6263,1,0, + 0,0,6261,6263,3,670,335,0,6262,6258,1,0,0,0,6262,6261,1,0,0,0,6263, + 591,1,0,0,0,6264,6265,7,30,0,0,6265,6268,7,85,0,0,6266,6268,3,678, + 339,0,6267,6264,1,0,0,0,6267,6266,1,0,0,0,6268,593,1,0,0,0,6269, + 6270,5,66,0,0,6270,6272,5,147,0,0,6271,6273,7,81,0,0,6272,6271,1, + 0,0,0,6272,6273,1,0,0,0,6273,6274,1,0,0,0,6274,6275,3,596,298,0, + 6275,595,1,0,0,0,6276,6281,3,598,299,0,6277,6278,5,6,0,0,6278,6280, + 3,598,299,0,6279,6277,1,0,0,0,6280,6283,1,0,0,0,6281,6279,1,0,0, + 0,6281,6282,1,0,0,0,6282,597,1,0,0,0,6283,6281,1,0,0,0,6284,6308, + 3,736,368,0,6285,6286,5,2,0,0,6286,6308,5,3,0,0,6287,6289,7,86,0, + 0,6288,6287,1,0,0,0,6288,6289,1,0,0,0,6289,6290,1,0,0,0,6290,6291, + 5,2,0,0,6291,6296,3,736,368,0,6292,6293,5,6,0,0,6293,6295,3,736, + 368,0,6294,6292,1,0,0,0,6295,6298,1,0,0,0,6296,6294,1,0,0,0,6296, + 6297,1,0,0,0,6297,6299,1,0,0,0,6298,6296,1,0,0,0,6299,6300,5,3,0, + 0,6300,6308,1,0,0,0,6301,6302,5,470,0,0,6302,6303,5,471,0,0,6303, + 6304,5,2,0,0,6304,6305,3,596,298,0,6305,6306,5,3,0,0,6306,6308,1, + 0,0,0,6307,6284,1,0,0,0,6307,6285,1,0,0,0,6307,6288,1,0,0,0,6307, + 6301,1,0,0,0,6308,599,1,0,0,0,6309,6319,5,62,0,0,6310,6311,5,269, + 0,0,6311,6313,5,245,0,0,6312,6310,1,0,0,0,6312,6313,1,0,0,0,6313, + 6314,1,0,0,0,6314,6320,5,369,0,0,6315,6317,5,245,0,0,6316,6315,1, + 0,0,0,6316,6317,1,0,0,0,6317,6318,1,0,0,0,6318,6320,5,334,0,0,6319, + 6312,1,0,0,0,6319,6316,1,0,0,0,6320,6323,1,0,0,0,6321,6322,5,275, + 0,0,6322,6324,3,764,382,0,6323,6321,1,0,0,0,6323,6324,1,0,0,0,6324, + 6328,1,0,0,0,6325,6329,5,272,0,0,6326,6327,5,465,0,0,6327,6329,5, + 466,0,0,6328,6325,1,0,0,0,6328,6326,1,0,0,0,6328,6329,1,0,0,0,6329, + 6331,1,0,0,0,6330,6309,1,0,0,0,6331,6332,1,0,0,0,6332,6330,1,0,0, + 0,6332,6333,1,0,0,0,6333,6338,1,0,0,0,6334,6335,5,62,0,0,6335,6336, + 5,300,0,0,6336,6338,5,81,0,0,6337,6330,1,0,0,0,6337,6334,1,0,0,0, + 6338,601,1,0,0,0,6339,6340,5,422,0,0,6340,6345,3,528,264,0,6341, + 6342,5,6,0,0,6342,6344,3,528,264,0,6343,6341,1,0,0,0,6344,6347,1, + 0,0,0,6345,6343,1,0,0,0,6345,6346,1,0,0,0,6346,603,1,0,0,0,6347, + 6345,1,0,0,0,6348,6349,5,64,0,0,6349,6350,3,606,303,0,6350,605,1, + 0,0,0,6351,6356,3,608,304,0,6352,6353,5,6,0,0,6353,6355,3,608,304, + 0,6354,6352,1,0,0,0,6355,6358,1,0,0,0,6356,6354,1,0,0,0,6356,6357, + 1,0,0,0,6357,607,1,0,0,0,6358,6356,1,0,0,0,6359,6374,3,620,310,0, + 6360,6362,5,81,0,0,6361,6360,1,0,0,0,6361,6362,1,0,0,0,6362,6363, + 1,0,0,0,6363,6365,3,782,391,0,6364,6366,5,9,0,0,6365,6364,1,0,0, + 0,6365,6366,1,0,0,0,6366,6368,1,0,0,0,6367,6369,3,142,71,0,6368, + 6367,1,0,0,0,6368,6369,1,0,0,0,6369,6371,1,0,0,0,6370,6372,3,634, + 317,0,6371,6370,1,0,0,0,6371,6372,1,0,0,0,6372,6374,1,0,0,0,6373, + 6359,1,0,0,0,6373,6361,1,0,0,0,6374,6376,1,0,0,0,6375,6377,3,612, + 306,0,6376,6375,1,0,0,0,6376,6377,1,0,0,0,6377,6379,1,0,0,0,6378, + 6380,3,628,314,0,6379,6378,1,0,0,0,6379,6380,1,0,0,0,6380,6410,1, + 0,0,0,6381,6383,5,72,0,0,6382,6381,1,0,0,0,6382,6383,1,0,0,0,6383, + 6384,1,0,0,0,6384,6410,3,610,305,0,6385,6386,5,2,0,0,6386,6403,3, + 608,304,0,6387,6388,5,110,0,0,6388,6389,5,118,0,0,6389,6404,3,608, + 304,0,6390,6392,5,121,0,0,6391,6393,3,616,308,0,6392,6391,1,0,0, + 0,6392,6393,1,0,0,0,6393,6394,1,0,0,0,6394,6395,5,118,0,0,6395,6404, + 3,608,304,0,6396,6398,3,616,308,0,6397,6396,1,0,0,0,6397,6398,1, + 0,0,0,6398,6399,1,0,0,0,6399,6400,5,118,0,0,6400,6401,3,608,304, + 0,6401,6402,3,618,309,0,6402,6404,1,0,0,0,6403,6387,1,0,0,0,6403, + 6390,1,0,0,0,6403,6397,1,0,0,0,6403,6404,1,0,0,0,6404,6405,1,0,0, + 0,6405,6407,5,3,0,0,6406,6408,3,612,306,0,6407,6406,1,0,0,0,6407, + 6408,1,0,0,0,6408,6410,1,0,0,0,6409,6373,1,0,0,0,6409,6382,1,0,0, + 0,6409,6385,1,0,0,0,6410,6429,1,0,0,0,6411,6412,5,110,0,0,6412,6413, + 5,118,0,0,6413,6428,3,608,304,0,6414,6416,5,121,0,0,6415,6417,3, + 616,308,0,6416,6415,1,0,0,0,6416,6417,1,0,0,0,6417,6418,1,0,0,0, + 6418,6419,5,118,0,0,6419,6428,3,608,304,0,6420,6422,3,616,308,0, + 6421,6420,1,0,0,0,6421,6422,1,0,0,0,6422,6423,1,0,0,0,6423,6424, + 5,118,0,0,6424,6425,3,608,304,0,6425,6426,3,618,309,0,6426,6428, + 1,0,0,0,6427,6411,1,0,0,0,6427,6414,1,0,0,0,6427,6421,1,0,0,0,6428, + 6431,1,0,0,0,6429,6427,1,0,0,0,6429,6430,1,0,0,0,6430,609,1,0,0, + 0,6431,6429,1,0,0,0,6432,6434,3,642,321,0,6433,6435,3,612,306,0, + 6434,6433,1,0,0,0,6434,6435,1,0,0,0,6435,6445,1,0,0,0,6436,6438, + 3,630,315,0,6437,6439,3,614,307,0,6438,6437,1,0,0,0,6438,6439,1, + 0,0,0,6439,6445,1,0,0,0,6440,6442,3,556,278,0,6441,6443,3,612,306, + 0,6442,6441,1,0,0,0,6442,6443,1,0,0,0,6443,6445,1,0,0,0,6444,6432, + 1,0,0,0,6444,6436,1,0,0,0,6444,6440,1,0,0,0,6445,611,1,0,0,0,6446, + 6448,5,36,0,0,6447,6446,1,0,0,0,6447,6448,1,0,0,0,6448,6449,1,0, + 0,0,6449,6454,3,824,412,0,6450,6451,5,2,0,0,6451,6452,3,788,394, + 0,6452,6453,5,3,0,0,6453,6455,1,0,0,0,6454,6450,1,0,0,0,6454,6455, + 1,0,0,0,6455,613,1,0,0,0,6456,6469,3,612,306,0,6457,6459,5,36,0, + 0,6458,6460,3,824,412,0,6459,6458,1,0,0,0,6459,6460,1,0,0,0,6460, + 6463,1,0,0,0,6461,6463,3,824,412,0,6462,6457,1,0,0,0,6462,6461,1, + 0,0,0,6463,6464,1,0,0,0,6464,6465,5,2,0,0,6465,6466,3,638,319,0, + 6466,6467,5,3,0,0,6467,6469,1,0,0,0,6468,6456,1,0,0,0,6468,6462, + 1,0,0,0,6469,615,1,0,0,0,6470,6472,7,87,0,0,6471,6473,5,123,0,0, + 6472,6471,1,0,0,0,6472,6473,1,0,0,0,6473,617,1,0,0,0,6474,6475,5, + 100,0,0,6475,6479,3,138,69,0,6476,6477,5,80,0,0,6477,6479,3,670, + 335,0,6478,6474,1,0,0,0,6478,6476,1,0,0,0,6479,619,1,0,0,0,6480, + 6496,3,316,158,0,6481,6487,5,81,0,0,6482,6488,3,778,389,0,6483,6484, + 5,2,0,0,6484,6485,3,778,389,0,6485,6486,5,3,0,0,6486,6488,1,0,0, + 0,6487,6482,1,0,0,0,6487,6483,1,0,0,0,6488,6496,1,0,0,0,6489,6490, + 5,68,0,0,6490,6493,5,323,0,0,6491,6494,3,794,397,0,6492,6494,5,111, + 0,0,6493,6491,1,0,0,0,6493,6492,1,0,0,0,6494,6496,1,0,0,0,6495,6480, + 1,0,0,0,6495,6481,1,0,0,0,6495,6489,1,0,0,0,6496,621,1,0,0,0,6497, + 6498,5,92,0,0,6498,6500,3,316,158,0,6499,6501,3,138,69,0,6500,6499, + 1,0,0,0,6500,6501,1,0,0,0,6501,6503,1,0,0,0,6502,6504,3,634,317, + 0,6503,6502,1,0,0,0,6503,6504,1,0,0,0,6504,6522,1,0,0,0,6505,6506, + 5,92,0,0,6506,6512,5,81,0,0,6507,6513,3,778,389,0,6508,6509,5,2, + 0,0,6509,6510,3,778,389,0,6510,6511,5,3,0,0,6511,6513,1,0,0,0,6512, + 6507,1,0,0,0,6512,6508,1,0,0,0,6513,6522,1,0,0,0,6514,6515,5,350, + 0,0,6515,6516,5,68,0,0,6516,6519,5,323,0,0,6517,6520,3,794,397,0, + 6518,6520,5,111,0,0,6519,6517,1,0,0,0,6519,6518,1,0,0,0,6520,6522, + 1,0,0,0,6521,6497,1,0,0,0,6521,6505,1,0,0,0,6521,6514,1,0,0,0,6522, + 623,1,0,0,0,6523,6528,3,620,310,0,6524,6525,5,6,0,0,6525,6527,3, + 620,310,0,6526,6524,1,0,0,0,6527,6530,1,0,0,0,6528,6526,1,0,0,0, + 6528,6529,1,0,0,0,6529,625,1,0,0,0,6530,6528,1,0,0,0,6531,6536,3, + 620,310,0,6532,6534,5,36,0,0,6533,6532,1,0,0,0,6533,6534,1,0,0,0, + 6534,6535,1,0,0,0,6535,6537,3,824,412,0,6536,6533,1,0,0,0,6536,6537, + 1,0,0,0,6537,627,1,0,0,0,6538,6539,5,472,0,0,6539,6540,3,812,406, + 0,6540,6546,3,528,264,0,6541,6542,5,310,0,0,6542,6543,5,2,0,0,6543, + 6544,3,670,335,0,6544,6545,5,3,0,0,6545,6547,1,0,0,0,6546,6541,1, + 0,0,0,6546,6547,1,0,0,0,6547,629,1,0,0,0,6548,6563,3,684,342,0,6549, + 6550,5,320,0,0,6550,6551,5,64,0,0,6551,6552,5,2,0,0,6552,6557,3, + 632,316,0,6553,6554,5,6,0,0,6554,6556,3,632,316,0,6555,6553,1,0, + 0,0,6556,6559,1,0,0,0,6557,6555,1,0,0,0,6557,6558,1,0,0,0,6558,6560, + 1,0,0,0,6559,6557,1,0,0,0,6560,6561,5,3,0,0,6561,6563,1,0,0,0,6562, + 6548,1,0,0,0,6562,6549,1,0,0,0,6563,6566,1,0,0,0,6564,6565,5,105, + 0,0,6565,6567,5,473,0,0,6566,6564,1,0,0,0,6566,6567,1,0,0,0,6567, + 631,1,0,0,0,6568,6574,3,684,342,0,6569,6570,5,36,0,0,6570,6571,5, + 2,0,0,6571,6572,3,638,319,0,6572,6573,5,3,0,0,6573,6575,1,0,0,0, + 6574,6569,1,0,0,0,6574,6575,1,0,0,0,6575,633,1,0,0,0,6576,6577,5, + 103,0,0,6577,6578,3,736,368,0,6578,635,1,0,0,0,6579,6584,5,103,0, + 0,6580,6581,5,434,0,0,6581,6582,5,275,0,0,6582,6585,3,824,412,0, + 6583,6585,3,670,335,0,6584,6580,1,0,0,0,6584,6583,1,0,0,0,6585,637, + 1,0,0,0,6586,6591,3,640,320,0,6587,6588,5,6,0,0,6588,6590,3,640, + 320,0,6589,6587,1,0,0,0,6590,6593,1,0,0,0,6591,6589,1,0,0,0,6591, + 6592,1,0,0,0,6592,639,1,0,0,0,6593,6591,1,0,0,0,6594,6595,3,824, + 412,0,6595,6597,3,648,324,0,6596,6598,3,90,45,0,6597,6596,1,0,0, + 0,6597,6598,1,0,0,0,6598,641,1,0,0,0,6599,6600,5,474,0,0,6600,6614, + 5,2,0,0,6601,6602,5,476,0,0,6602,6603,5,2,0,0,6603,6608,3,646,323, + 0,6604,6605,5,6,0,0,6605,6607,3,646,323,0,6606,6604,1,0,0,0,6607, + 6610,1,0,0,0,6608,6606,1,0,0,0,6608,6609,1,0,0,0,6609,6611,1,0,0, + 0,6610,6608,1,0,0,0,6611,6612,5,3,0,0,6612,6613,5,6,0,0,6613,6615, + 1,0,0,0,6614,6601,1,0,0,0,6614,6615,1,0,0,0,6615,6616,1,0,0,0,6616, + 6617,3,678,339,0,6617,6618,3,694,347,0,6618,6619,5,475,0,0,6619, + 6624,3,644,322,0,6620,6621,5,6,0,0,6621,6623,3,644,322,0,6622,6620, + 1,0,0,0,6623,6626,1,0,0,0,6624,6622,1,0,0,0,6624,6625,1,0,0,0,6625, + 6627,1,0,0,0,6626,6624,1,0,0,0,6627,6628,5,3,0,0,6628,643,1,0,0, + 0,6629,6648,3,824,412,0,6630,6644,3,648,324,0,6631,6634,5,53,0,0, + 6632,6634,3,832,416,0,6633,6631,1,0,0,0,6633,6632,1,0,0,0,6634,6635, + 1,0,0,0,6635,6641,3,670,335,0,6636,6638,5,77,0,0,6637,6636,1,0,0, + 0,6637,6638,1,0,0,0,6638,6639,1,0,0,0,6639,6641,5,78,0,0,6640,6633, + 1,0,0,0,6640,6637,1,0,0,0,6641,6642,1,0,0,0,6642,6640,1,0,0,0,6642, + 6643,1,0,0,0,6643,6645,1,0,0,0,6644,6640,1,0,0,0,6644,6645,1,0,0, + 0,6645,6649,1,0,0,0,6646,6647,5,62,0,0,6647,6649,5,473,0,0,6648, + 6630,1,0,0,0,6648,6646,1,0,0,0,6649,645,1,0,0,0,6650,6651,3,678, + 339,0,6651,6652,5,36,0,0,6652,6653,3,830,415,0,6653,6657,1,0,0,0, + 6654,6655,5,53,0,0,6655,6657,3,678,339,0,6656,6650,1,0,0,0,6656, + 6654,1,0,0,0,6657,647,1,0,0,0,6658,6660,5,415,0,0,6659,6658,1,0, + 0,0,6659,6660,1,0,0,0,6660,6661,1,0,0,0,6661,6678,3,650,325,0,6662, + 6664,5,4,0,0,6663,6665,5,574,0,0,6664,6663,1,0,0,0,6664,6665,1,0, + 0,0,6665,6666,1,0,0,0,6666,6668,5,5,0,0,6667,6662,1,0,0,0,6668,6671, + 1,0,0,0,6669,6667,1,0,0,0,6669,6670,1,0,0,0,6670,6679,1,0,0,0,6671, + 6669,1,0,0,0,6672,6676,5,35,0,0,6673,6674,5,4,0,0,6674,6675,5,574, + 0,0,6675,6677,5,5,0,0,6676,6673,1,0,0,0,6676,6677,1,0,0,0,6677,6679, + 1,0,0,0,6678,6669,1,0,0,0,6678,6672,1,0,0,0,6679,6685,1,0,0,0,6680, + 6681,3,784,392,0,6681,6682,5,27,0,0,6682,6683,7,88,0,0,6683,6685, + 1,0,0,0,6684,6659,1,0,0,0,6684,6680,1,0,0,0,6685,649,1,0,0,0,6686, + 6688,3,826,413,0,6687,6689,3,312,156,0,6688,6687,1,0,0,0,6688,6689, + 1,0,0,0,6689,6691,1,0,0,0,6690,6692,3,528,264,0,6691,6690,1,0,0, + 0,6691,6692,1,0,0,0,6692,6702,1,0,0,0,6693,6702,3,652,326,0,6694, + 6699,5,403,0,0,6695,6697,3,664,332,0,6696,6695,1,0,0,0,6696,6697, + 1,0,0,0,6697,6700,1,0,0,0,6698,6700,3,656,328,0,6699,6696,1,0,0, + 0,6699,6698,1,0,0,0,6700,6702,1,0,0,0,6701,6686,1,0,0,0,6701,6693, + 1,0,0,0,6701,6694,1,0,0,0,6702,651,1,0,0,0,6703,6708,3,654,327,0, + 6704,6708,3,658,329,0,6705,6708,3,660,330,0,6706,6708,3,662,331, + 0,6707,6703,1,0,0,0,6707,6704,1,0,0,0,6707,6705,1,0,0,0,6707,6706, + 1,0,0,0,6708,653,1,0,0,0,6709,6726,5,401,0,0,6710,6726,5,402,0,0, + 6711,6726,5,416,0,0,6712,6726,5,388,0,0,6713,6726,5,413,0,0,6714, + 6716,5,398,0,0,6715,6717,3,656,328,0,6716,6715,1,0,0,0,6716,6717, + 1,0,0,0,6717,6726,1,0,0,0,6718,6719,5,190,0,0,6719,6726,5,412,0, + 0,6720,6722,7,89,0,0,6721,6723,3,528,264,0,6722,6721,1,0,0,0,6722, + 6723,1,0,0,0,6723,6726,1,0,0,0,6724,6726,5,390,0,0,6725,6709,1,0, + 0,0,6725,6710,1,0,0,0,6725,6711,1,0,0,0,6725,6712,1,0,0,0,6725,6713, + 1,0,0,0,6725,6714,1,0,0,0,6725,6718,1,0,0,0,6725,6720,1,0,0,0,6725, + 6724,1,0,0,0,6726,655,1,0,0,0,6727,6728,5,2,0,0,6728,6729,5,574, + 0,0,6729,6730,5,3,0,0,6730,657,1,0,0,0,6731,6733,5,389,0,0,6732, + 6734,5,374,0,0,6733,6732,1,0,0,0,6733,6734,1,0,0,0,6734,6736,1,0, + 0,0,6735,6737,3,528,264,0,6736,6735,1,0,0,0,6736,6737,1,0,0,0,6737, + 659,1,0,0,0,6738,6740,7,90,0,0,6739,6741,5,374,0,0,6740,6739,1,0, + 0,0,6740,6741,1,0,0,0,6741,6749,1,0,0,0,6742,6749,5,423,0,0,6743, + 6744,5,405,0,0,6744,6746,7,91,0,0,6745,6747,5,374,0,0,6746,6745, + 1,0,0,0,6746,6747,1,0,0,0,6747,6749,1,0,0,0,6748,6738,1,0,0,0,6748, + 6742,1,0,0,0,6748,6743,1,0,0,0,6749,6751,1,0,0,0,6750,6752,3,656, + 328,0,6751,6750,1,0,0,0,6751,6752,1,0,0,0,6752,661,1,0,0,0,6753, + 6755,7,92,0,0,6754,6756,3,656,328,0,6755,6754,1,0,0,0,6755,6756, + 1,0,0,0,6756,6760,1,0,0,0,6757,6758,7,27,0,0,6758,6759,5,418,0,0, + 6759,6761,5,386,0,0,6760,6757,1,0,0,0,6760,6761,1,0,0,0,6761,663, + 1,0,0,0,6762,6792,5,264,0,0,6763,6792,3,666,333,0,6764,6767,5,384, + 0,0,6765,6766,5,94,0,0,6766,6768,5,264,0,0,6767,6765,1,0,0,0,6767, + 6768,1,0,0,0,6768,6792,1,0,0,0,6769,6776,5,176,0,0,6770,6774,5,94, + 0,0,6771,6775,5,218,0,0,6772,6775,5,261,0,0,6773,6775,3,666,333, + 0,6774,6771,1,0,0,0,6774,6772,1,0,0,0,6774,6773,1,0,0,0,6775,6777, + 1,0,0,0,6776,6770,1,0,0,0,6776,6777,1,0,0,0,6777,6792,1,0,0,0,6778, + 6784,5,218,0,0,6779,6782,5,94,0,0,6780,6783,5,261,0,0,6781,6783, + 3,666,333,0,6782,6780,1,0,0,0,6782,6781,1,0,0,0,6783,6785,1,0,0, + 0,6784,6779,1,0,0,0,6784,6785,1,0,0,0,6785,6792,1,0,0,0,6786,6789, + 5,261,0,0,6787,6788,5,94,0,0,6788,6790,3,666,333,0,6789,6787,1,0, + 0,0,6789,6790,1,0,0,0,6790,6792,1,0,0,0,6791,6762,1,0,0,0,6791,6763, + 1,0,0,0,6791,6764,1,0,0,0,6791,6769,1,0,0,0,6791,6778,1,0,0,0,6791, + 6786,1,0,0,0,6792,665,1,0,0,0,6793,6795,5,326,0,0,6794,6796,3,656, + 328,0,6795,6794,1,0,0,0,6795,6796,1,0,0,0,6796,667,1,0,0,0,6797, + 6798,7,93,0,0,6798,669,1,0,0,0,6799,6800,3,672,336,0,6800,671,1, + 0,0,0,6801,6802,6,336,-1,0,6802,6804,3,676,338,0,6803,6805,3,674, + 337,0,6804,6803,1,0,0,0,6804,6805,1,0,0,0,6805,6809,1,0,0,0,6806, + 6807,5,77,0,0,6807,6809,3,672,336,3,6808,6801,1,0,0,0,6808,6806, + 1,0,0,0,6809,6818,1,0,0,0,6810,6811,10,2,0,0,6811,6812,5,33,0,0, + 6812,6817,3,672,336,3,6813,6814,10,1,0,0,6814,6815,5,82,0,0,6815, + 6817,3,672,336,2,6816,6810,1,0,0,0,6816,6813,1,0,0,0,6817,6820,1, + 0,0,0,6818,6816,1,0,0,0,6818,6819,1,0,0,0,6819,673,1,0,0,0,6820, + 6818,1,0,0,0,6821,6822,3,668,334,0,6822,6823,3,676,338,0,6823,6893, + 1,0,0,0,6824,6825,3,668,334,0,6825,6826,3,726,363,0,6826,6832,3, + 716,358,0,6827,6833,3,556,278,0,6828,6829,5,2,0,0,6829,6830,3,670, + 335,0,6830,6831,5,3,0,0,6831,6833,1,0,0,0,6832,6827,1,0,0,0,6832, + 6828,1,0,0,0,6833,6893,1,0,0,0,6834,6836,5,77,0,0,6835,6834,1,0, + 0,0,6835,6836,1,0,0,0,6836,6837,1,0,0,0,6837,6838,5,387,0,0,6838, + 6839,3,676,338,0,6839,6840,5,33,0,0,6840,6841,3,676,338,0,6841,6893, + 1,0,0,0,6842,6844,5,77,0,0,6843,6842,1,0,0,0,6843,6844,1,0,0,0,6844, + 6845,1,0,0,0,6845,6846,5,68,0,0,6846,6847,5,2,0,0,6847,6852,3,670, + 335,0,6848,6849,5,6,0,0,6849,6851,3,670,335,0,6850,6848,1,0,0,0, + 6851,6854,1,0,0,0,6852,6850,1,0,0,0,6852,6853,1,0,0,0,6853,6855, + 1,0,0,0,6854,6852,1,0,0,0,6855,6856,5,3,0,0,6856,6893,1,0,0,0,6857, + 6859,5,77,0,0,6858,6857,1,0,0,0,6858,6859,1,0,0,0,6859,6860,1,0, + 0,0,6860,6861,5,68,0,0,6861,6893,3,556,278,0,6862,6864,5,77,0,0, + 6863,6862,1,0,0,0,6863,6864,1,0,0,0,6864,6873,1,0,0,0,6865,6874, + 5,120,0,0,6866,6874,5,114,0,0,6867,6868,5,127,0,0,6868,6874,5,94, + 0,0,6869,6871,5,387,0,0,6870,6872,5,91,0,0,6871,6870,1,0,0,0,6871, + 6872,1,0,0,0,6872,6874,1,0,0,0,6873,6865,1,0,0,0,6873,6866,1,0,0, + 0,6873,6867,1,0,0,0,6873,6869,1,0,0,0,6874,6875,1,0,0,0,6875,6878, + 3,676,338,0,6876,6877,5,197,0,0,6877,6879,3,676,338,0,6878,6876, + 1,0,0,0,6878,6879,1,0,0,0,6879,6893,1,0,0,0,6880,6882,5,116,0,0, + 6881,6883,5,77,0,0,6882,6881,1,0,0,0,6882,6883,1,0,0,0,6883,6884, + 1,0,0,0,6884,6893,5,78,0,0,6885,6887,5,116,0,0,6886,6888,5,77,0, + 0,6887,6886,1,0,0,0,6887,6888,1,0,0,0,6888,6889,1,0,0,0,6889,6890, + 5,56,0,0,6890,6891,5,64,0,0,6891,6893,3,676,338,0,6892,6821,1,0, + 0,0,6892,6824,1,0,0,0,6892,6835,1,0,0,0,6892,6843,1,0,0,0,6892,6858, + 1,0,0,0,6892,6863,1,0,0,0,6892,6880,1,0,0,0,6892,6885,1,0,0,0,6893, + 675,1,0,0,0,6894,6895,6,338,-1,0,6895,6899,3,678,339,0,6896,6897, + 7,30,0,0,6897,6899,3,676,338,4,6898,6894,1,0,0,0,6898,6896,1,0,0, + 0,6899,6916,1,0,0,0,6900,6901,10,3,0,0,6901,6902,7,94,0,0,6902,6915, + 3,676,338,4,6903,6904,10,2,0,0,6904,6905,7,30,0,0,6905,6915,3,676, + 338,3,6906,6907,10,1,0,0,6907,6908,5,15,0,0,6908,6915,3,676,338, + 2,6909,6910,10,5,0,0,6910,6911,5,142,0,0,6911,6912,5,418,0,0,6912, + 6913,5,386,0,0,6913,6915,3,670,335,0,6914,6900,1,0,0,0,6914,6903, + 1,0,0,0,6914,6906,1,0,0,0,6914,6909,1,0,0,0,6915,6918,1,0,0,0,6916, + 6914,1,0,0,0,6916,6917,1,0,0,0,6917,677,1,0,0,0,6918,6916,1,0,0, + 0,6919,6920,6,339,-1,0,6920,6921,7,95,0,0,6921,7008,3,556,278,0, + 6922,6925,5,35,0,0,6923,6926,3,556,278,0,6924,6926,3,742,371,0,6925, + 6923,1,0,0,0,6925,6924,1,0,0,0,6926,7008,1,0,0,0,6927,6928,5,28, + 0,0,6928,7008,3,756,378,0,6929,6930,5,470,0,0,6930,7008,3,528,264, + 0,6931,7008,5,574,0,0,6932,7008,5,576,0,0,6933,7008,5,566,0,0,6934, + 7008,5,570,0,0,6935,6945,3,812,406,0,6936,6946,3,814,407,0,6937, + 6938,5,2,0,0,6938,6940,3,738,369,0,6939,6941,3,580,290,0,6940,6939, + 1,0,0,0,6940,6941,1,0,0,0,6941,6942,1,0,0,0,6942,6943,5,3,0,0,6943, + 6944,3,814,407,0,6944,6946,1,0,0,0,6945,6936,1,0,0,0,6945,6937,1, + 0,0,0,6946,7008,1,0,0,0,6947,6949,3,652,326,0,6948,6947,1,0,0,0, + 6948,6949,1,0,0,0,6949,6950,1,0,0,0,6950,7008,3,814,407,0,6951,6959, + 5,403,0,0,6952,6954,3,814,407,0,6953,6955,3,664,332,0,6954,6953, + 1,0,0,0,6954,6955,1,0,0,0,6955,6960,1,0,0,0,6956,6957,3,656,328, + 0,6957,6958,3,814,407,0,6958,6960,1,0,0,0,6959,6952,1,0,0,0,6959, + 6956,1,0,0,0,6960,7008,1,0,0,0,6961,7008,5,96,0,0,6962,7008,5,60, + 0,0,6963,7008,5,78,0,0,6964,7008,5,577,0,0,6965,6966,5,2,0,0,6966, + 6967,3,670,335,0,6967,6968,5,3,0,0,6968,6969,3,756,378,0,6969,7008, + 1,0,0,0,6970,6972,5,40,0,0,6971,6973,3,670,335,0,6972,6971,1,0,0, + 0,6972,6973,1,0,0,0,6973,6975,1,0,0,0,6974,6976,3,750,375,0,6975, + 6974,1,0,0,0,6976,6977,1,0,0,0,6977,6975,1,0,0,0,6977,6978,1,0,0, + 0,6978,6981,1,0,0,0,6979,6980,5,58,0,0,6980,6982,3,670,335,0,6981, + 6979,1,0,0,0,6981,6982,1,0,0,0,6982,6983,1,0,0,0,6983,6984,5,454, + 0,0,6984,7008,1,0,0,0,6985,7008,3,682,341,0,6986,6988,3,556,278, + 0,6987,6989,3,754,377,0,6988,6987,1,0,0,0,6988,6989,1,0,0,0,6989, + 7008,1,0,0,0,6990,7008,3,714,357,0,6991,6992,5,2,0,0,6992,6993,3, + 670,335,0,6993,6994,5,6,0,0,6994,6995,3,728,364,0,6995,6996,5,3, + 0,0,6996,7008,1,0,0,0,6997,6998,3,712,356,0,6998,6999,5,125,0,0, + 6999,7000,3,712,356,0,7000,7008,1,0,0,0,7001,7008,3,806,403,0,7002, + 7003,7,30,0,0,7003,7008,3,678,339,5,7004,7005,3,722,361,0,7005,7006, + 3,678,339,2,7006,7008,1,0,0,0,7007,6919,1,0,0,0,7007,6922,1,0,0, + 0,7007,6927,1,0,0,0,7007,6929,1,0,0,0,7007,6931,1,0,0,0,7007,6932, + 1,0,0,0,7007,6933,1,0,0,0,7007,6934,1,0,0,0,7007,6935,1,0,0,0,7007, + 6948,1,0,0,0,7007,6951,1,0,0,0,7007,6961,1,0,0,0,7007,6962,1,0,0, + 0,7007,6963,1,0,0,0,7007,6964,1,0,0,0,7007,6965,1,0,0,0,7007,6970, + 1,0,0,0,7007,6985,1,0,0,0,7007,6986,1,0,0,0,7007,6990,1,0,0,0,7007, + 6991,1,0,0,0,7007,6997,1,0,0,0,7007,7001,1,0,0,0,7007,7002,1,0,0, + 0,7007,7004,1,0,0,0,7008,7036,1,0,0,0,7009,7010,10,3,0,0,7010,7011, + 3,720,360,0,7011,7012,3,678,339,4,7012,7035,1,0,0,0,7013,7014,10, + 6,0,0,7014,7015,5,26,0,0,7015,7035,3,648,324,0,7016,7017,10,4,0, + 0,7017,7019,3,722,361,0,7018,7020,3,678,339,0,7019,7018,1,0,0,0, + 7019,7020,1,0,0,0,7020,7035,1,0,0,0,7021,7022,10,1,0,0,7022,7024, + 5,116,0,0,7023,7025,5,77,0,0,7024,7023,1,0,0,0,7024,7025,1,0,0,0, + 7025,7032,1,0,0,0,7026,7027,5,56,0,0,7027,7028,5,64,0,0,7028,7033, + 3,678,339,0,7029,7030,5,275,0,0,7030,7033,3,522,261,0,7031,7033, + 5,188,0,0,7032,7026,1,0,0,0,7032,7029,1,0,0,0,7032,7031,1,0,0,0, + 7033,7035,1,0,0,0,7034,7009,1,0,0,0,7034,7013,1,0,0,0,7034,7016, + 1,0,0,0,7034,7021,1,0,0,0,7035,7038,1,0,0,0,7036,7034,1,0,0,0,7036, + 7037,1,0,0,0,7037,679,1,0,0,0,7038,7036,1,0,0,0,7039,7040,3,812, + 406,0,7040,7061,5,2,0,0,7041,7045,3,738,369,0,7042,7043,5,6,0,0, + 7043,7044,5,101,0,0,7044,7046,3,740,370,0,7045,7042,1,0,0,0,7045, + 7046,1,0,0,0,7046,7048,1,0,0,0,7047,7049,3,580,290,0,7048,7047,1, + 0,0,0,7048,7049,1,0,0,0,7049,7062,1,0,0,0,7050,7051,5,101,0,0,7051, + 7053,3,740,370,0,7052,7054,3,580,290,0,7053,7052,1,0,0,0,7053,7054, + 1,0,0,0,7054,7062,1,0,0,0,7055,7056,7,81,0,0,7056,7058,3,738,369, + 0,7057,7059,3,580,290,0,7058,7057,1,0,0,0,7058,7059,1,0,0,0,7059, + 7062,1,0,0,0,7060,7062,5,9,0,0,7061,7041,1,0,0,0,7061,7050,1,0,0, + 0,7061,7055,1,0,0,0,7061,7060,1,0,0,0,7061,7062,1,0,0,0,7062,7063, + 1,0,0,0,7063,7064,5,3,0,0,7064,681,1,0,0,0,7065,7072,3,680,340,0, + 7066,7067,5,479,0,0,7067,7068,5,66,0,0,7068,7069,5,2,0,0,7069,7070, + 3,580,290,0,7070,7071,5,3,0,0,7071,7073,1,0,0,0,7072,7066,1,0,0, + 0,7072,7073,1,0,0,0,7073,7080,1,0,0,0,7074,7075,5,480,0,0,7075,7076, + 5,2,0,0,7076,7077,5,103,0,0,7077,7078,3,670,335,0,7078,7079,5,3, + 0,0,7079,7081,1,0,0,0,7080,7074,1,0,0,0,7080,7081,1,0,0,0,7081,7087, + 1,0,0,0,7082,7085,5,124,0,0,7083,7086,3,706,353,0,7084,7086,3,824, + 412,0,7085,7083,1,0,0,0,7085,7084,1,0,0,0,7086,7088,1,0,0,0,7087, + 7082,1,0,0,0,7087,7088,1,0,0,0,7088,7091,1,0,0,0,7089,7091,3,686, + 343,0,7090,7065,1,0,0,0,7090,7089,1,0,0,0,7091,683,1,0,0,0,7092, + 7095,3,680,340,0,7093,7095,3,686,343,0,7094,7092,1,0,0,0,7094,7093, + 1,0,0,0,7095,685,1,0,0,0,7096,7097,5,108,0,0,7097,7098,5,62,0,0, + 7098,7099,5,2,0,0,7099,7100,3,670,335,0,7100,7101,5,3,0,0,7101,7271, + 1,0,0,0,7102,7271,5,48,0,0,7103,7105,7,96,0,0,7104,7106,3,656,328, + 0,7105,7104,1,0,0,0,7105,7106,1,0,0,0,7106,7271,1,0,0,0,7107,7271, + 5,49,0,0,7108,7271,5,52,0,0,7109,7271,5,89,0,0,7110,7271,5,99,0, + 0,7111,7271,5,47,0,0,7112,7271,5,111,0,0,7113,7114,7,97,0,0,7114, + 7115,5,2,0,0,7115,7116,3,670,335,0,7116,7117,5,36,0,0,7117,7118, + 3,648,324,0,7118,7119,5,3,0,0,7119,7271,1,0,0,0,7120,7121,5,397, + 0,0,7121,7126,5,2,0,0,7122,7123,3,744,372,0,7123,7124,5,64,0,0,7124, + 7125,3,670,335,0,7125,7127,1,0,0,0,7126,7122,1,0,0,0,7126,7127,1, + 0,0,0,7127,7128,1,0,0,0,7128,7271,5,3,0,0,7129,7130,5,489,0,0,7130, + 7131,5,2,0,0,7131,7134,3,670,335,0,7132,7133,5,6,0,0,7133,7135,3, + 746,373,0,7134,7132,1,0,0,0,7134,7135,1,0,0,0,7135,7136,1,0,0,0, + 7136,7137,5,3,0,0,7137,7271,1,0,0,0,7138,7139,5,410,0,0,7139,7140, + 5,2,0,0,7140,7141,3,670,335,0,7141,7142,5,84,0,0,7142,7143,3,670, + 335,0,7143,7144,5,64,0,0,7144,7147,3,670,335,0,7145,7146,5,62,0, + 0,7146,7148,3,670,335,0,7147,7145,1,0,0,0,7147,7148,1,0,0,0,7148, + 7149,1,0,0,0,7149,7150,5,3,0,0,7150,7271,1,0,0,0,7151,7152,5,411, + 0,0,7152,7157,5,2,0,0,7153,7154,3,678,339,0,7154,7155,5,68,0,0,7155, + 7156,3,678,339,0,7156,7158,1,0,0,0,7157,7153,1,0,0,0,7157,7158,1, + 0,0,0,7158,7159,1,0,0,0,7159,7271,5,3,0,0,7160,7161,5,417,0,0,7161, + 7163,5,2,0,0,7162,7164,3,748,374,0,7163,7162,1,0,0,0,7163,7164,1, + 0,0,0,7164,7165,1,0,0,0,7165,7271,5,3,0,0,7166,7167,5,421,0,0,7167, + 7169,5,2,0,0,7168,7170,7,98,0,0,7169,7168,1,0,0,0,7169,7170,1,0, + 0,0,7170,7175,1,0,0,0,7171,7173,3,670,335,0,7172,7171,1,0,0,0,7172, + 7173,1,0,0,0,7173,7174,1,0,0,0,7174,7176,5,64,0,0,7175,7172,1,0, + 0,0,7175,7176,1,0,0,0,7176,7177,1,0,0,0,7177,7178,3,728,364,0,7178, + 7179,1,0,0,0,7179,7180,5,3,0,0,7180,7271,1,0,0,0,7181,7182,5,408, + 0,0,7182,7183,5,2,0,0,7183,7184,3,670,335,0,7184,7185,5,6,0,0,7185, + 7186,3,670,335,0,7186,7187,5,3,0,0,7187,7271,1,0,0,0,7188,7189,7, + 99,0,0,7189,7271,3,528,264,0,7190,7191,5,426,0,0,7191,7192,5,2,0, + 0,7192,7193,5,266,0,0,7193,7203,3,830,415,0,7194,7201,5,6,0,0,7195, + 7196,5,424,0,0,7196,7197,5,2,0,0,7197,7198,3,688,344,0,7198,7199, + 5,3,0,0,7199,7202,1,0,0,0,7200,7202,3,728,364,0,7201,7195,1,0,0, + 0,7201,7200,1,0,0,0,7202,7204,1,0,0,0,7203,7194,1,0,0,0,7203,7204, + 1,0,0,0,7204,7205,1,0,0,0,7205,7206,5,3,0,0,7206,7271,1,0,0,0,7207, + 7208,5,427,0,0,7208,7209,5,2,0,0,7209,7210,3,678,339,0,7210,7211, + 3,694,347,0,7211,7212,5,3,0,0,7212,7271,1,0,0,0,7213,7214,5,428, + 0,0,7214,7215,5,2,0,0,7215,7216,3,688,344,0,7216,7217,5,3,0,0,7217, + 7271,1,0,0,0,7218,7219,5,429,0,0,7219,7220,5,2,0,0,7220,7221,3,692, + 346,0,7221,7224,3,670,335,0,7222,7223,7,100,0,0,7223,7225,5,378, + 0,0,7224,7222,1,0,0,0,7224,7225,1,0,0,0,7225,7226,1,0,0,0,7226,7227, + 5,3,0,0,7227,7271,1,0,0,0,7228,7229,5,430,0,0,7229,7230,5,2,0,0, + 7230,7231,5,266,0,0,7231,7234,3,830,415,0,7232,7233,5,6,0,0,7233, + 7235,3,670,335,0,7234,7232,1,0,0,0,7234,7235,1,0,0,0,7235,7236,1, + 0,0,0,7236,7237,5,3,0,0,7237,7271,1,0,0,0,7238,7239,5,431,0,0,7239, + 7240,5,2,0,0,7240,7241,5,383,0,0,7241,7242,3,670,335,0,7242,7243, + 5,6,0,0,7243,7247,5,375,0,0,7244,7245,5,269,0,0,7245,7248,5,450, + 0,0,7246,7248,3,670,335,0,7247,7244,1,0,0,0,7247,7246,1,0,0,0,7248, + 7258,1,0,0,0,7249,7250,5,6,0,0,7250,7256,5,339,0,0,7251,7253,5,269, + 0,0,7252,7251,1,0,0,0,7252,7253,1,0,0,0,7253,7254,1,0,0,0,7254,7257, + 5,450,0,0,7255,7257,5,385,0,0,7256,7252,1,0,0,0,7256,7255,1,0,0, + 0,7257,7259,1,0,0,0,7258,7249,1,0,0,0,7258,7259,1,0,0,0,7259,7260, + 1,0,0,0,7260,7261,5,3,0,0,7261,7271,1,0,0,0,7262,7263,5,432,0,0, + 7263,7264,5,2,0,0,7264,7265,3,692,346,0,7265,7266,3,670,335,0,7266, + 7267,5,36,0,0,7267,7268,3,650,325,0,7268,7269,5,3,0,0,7269,7271, + 1,0,0,0,7270,7096,1,0,0,0,7270,7102,1,0,0,0,7270,7103,1,0,0,0,7270, + 7107,1,0,0,0,7270,7108,1,0,0,0,7270,7109,1,0,0,0,7270,7110,1,0,0, + 0,7270,7111,1,0,0,0,7270,7112,1,0,0,0,7270,7113,1,0,0,0,7270,7120, + 1,0,0,0,7270,7129,1,0,0,0,7270,7138,1,0,0,0,7270,7151,1,0,0,0,7270, + 7160,1,0,0,0,7270,7166,1,0,0,0,7270,7181,1,0,0,0,7270,7188,1,0,0, + 0,7270,7190,1,0,0,0,7270,7207,1,0,0,0,7270,7213,1,0,0,0,7270,7218, + 1,0,0,0,7270,7228,1,0,0,0,7270,7238,1,0,0,0,7270,7262,1,0,0,0,7271, + 687,1,0,0,0,7272,7277,3,690,345,0,7273,7274,5,6,0,0,7274,7276,3, + 690,345,0,7275,7273,1,0,0,0,7276,7279,1,0,0,0,7277,7275,1,0,0,0, + 7277,7278,1,0,0,0,7278,689,1,0,0,0,7279,7277,1,0,0,0,7280,7283,3, + 670,335,0,7281,7282,5,36,0,0,7282,7284,3,830,415,0,7283,7281,1,0, + 0,0,7283,7284,1,0,0,0,7284,691,1,0,0,0,7285,7286,7,101,0,0,7286, + 693,1,0,0,0,7287,7289,5,286,0,0,7288,7290,3,696,348,0,7289,7288, + 1,0,0,0,7289,7290,1,0,0,0,7290,7291,1,0,0,0,7291,7293,3,678,339, + 0,7292,7294,3,696,348,0,7293,7292,1,0,0,0,7293,7294,1,0,0,0,7294, + 695,1,0,0,0,7295,7296,5,147,0,0,7296,7297,7,102,0,0,7297,697,1,0, + 0,0,7298,7299,5,104,0,0,7299,7304,3,702,351,0,7300,7301,5,6,0,0, + 7301,7303,3,702,351,0,7302,7300,1,0,0,0,7303,7306,1,0,0,0,7304,7302, + 1,0,0,0,7304,7305,1,0,0,0,7305,699,1,0,0,0,7306,7304,1,0,0,0,7307, + 7308,5,67,0,0,7308,7309,3,670,335,0,7309,701,1,0,0,0,7310,7311,3, + 824,412,0,7311,7312,5,36,0,0,7312,7313,3,706,353,0,7313,703,1,0, + 0,0,7314,7317,5,124,0,0,7315,7318,3,706,353,0,7316,7318,3,824,412, + 0,7317,7315,1,0,0,0,7317,7316,1,0,0,0,7318,705,1,0,0,0,7319,7321, + 5,2,0,0,7320,7322,3,824,412,0,7321,7320,1,0,0,0,7321,7322,1,0,0, + 0,7322,7326,1,0,0,0,7323,7324,5,285,0,0,7324,7325,5,147,0,0,7325, + 7327,3,728,364,0,7326,7323,1,0,0,0,7326,7327,1,0,0,0,7327,7329,1, + 0,0,0,7328,7330,3,580,290,0,7329,7328,1,0,0,0,7329,7330,1,0,0,0, + 7330,7332,1,0,0,0,7331,7333,3,708,354,0,7332,7331,1,0,0,0,7332,7333, + 1,0,0,0,7333,7334,1,0,0,0,7334,7335,5,3,0,0,7335,707,1,0,0,0,7336, + 7341,7,103,0,0,7337,7338,5,387,0,0,7338,7339,3,710,355,0,7339,7340, + 5,33,0,0,7340,7342,1,0,0,0,7341,7337,1,0,0,0,7341,7342,1,0,0,0,7342, + 7343,1,0,0,0,7343,7344,3,710,355,0,7344,7354,1,0,0,0,7345,7352,5, + 199,0,0,7346,7347,5,434,0,0,7347,7353,5,414,0,0,7348,7353,5,66,0, + 0,7349,7353,5,467,0,0,7350,7351,5,269,0,0,7351,7353,5,482,0,0,7352, + 7346,1,0,0,0,7352,7348,1,0,0,0,7352,7349,1,0,0,0,7352,7350,1,0,0, + 0,7353,7355,1,0,0,0,7354,7345,1,0,0,0,7354,7355,1,0,0,0,7355,709, + 1,0,0,0,7356,7359,5,362,0,0,7357,7359,3,670,335,0,7358,7356,1,0, + 0,0,7358,7357,1,0,0,0,7359,7360,1,0,0,0,7360,7364,7,104,0,0,7361, + 7362,5,434,0,0,7362,7364,5,414,0,0,7363,7358,1,0,0,0,7363,7361,1, + 0,0,0,7364,711,1,0,0,0,7365,7373,3,714,357,0,7366,7367,5,2,0,0,7367, + 7368,3,728,364,0,7368,7369,5,6,0,0,7369,7370,3,670,335,0,7370,7371, + 5,3,0,0,7371,7373,1,0,0,0,7372,7365,1,0,0,0,7372,7366,1,0,0,0,7373, + 713,1,0,0,0,7374,7375,5,414,0,0,7375,7377,5,2,0,0,7376,7378,3,728, + 364,0,7377,7376,1,0,0,0,7377,7378,1,0,0,0,7378,7379,1,0,0,0,7379, + 7380,5,3,0,0,7380,715,1,0,0,0,7381,7382,7,105,0,0,7382,717,1,0,0, + 0,7383,7386,5,29,0,0,7384,7386,3,720,360,0,7385,7383,1,0,0,0,7385, + 7384,1,0,0,0,7386,719,1,0,0,0,7387,7388,7,106,0,0,7388,721,1,0,0, + 0,7389,7396,5,29,0,0,7390,7391,5,278,0,0,7391,7392,5,2,0,0,7392, + 7393,3,408,204,0,7393,7394,5,3,0,0,7394,7396,1,0,0,0,7395,7389,1, + 0,0,0,7395,7390,1,0,0,0,7396,723,1,0,0,0,7397,7404,3,718,359,0,7398, + 7399,5,278,0,0,7399,7400,5,2,0,0,7400,7401,3,408,204,0,7401,7402, + 5,3,0,0,7402,7404,1,0,0,0,7403,7397,1,0,0,0,7403,7398,1,0,0,0,7404, + 725,1,0,0,0,7405,7411,3,724,362,0,7406,7408,5,77,0,0,7407,7406,1, + 0,0,0,7407,7408,1,0,0,0,7408,7409,1,0,0,0,7409,7411,7,107,0,0,7410, + 7405,1,0,0,0,7410,7407,1,0,0,0,7411,727,1,0,0,0,7412,7417,3,670, + 335,0,7413,7414,5,6,0,0,7414,7416,3,670,335,0,7415,7413,1,0,0,0, + 7416,7419,1,0,0,0,7417,7415,1,0,0,0,7417,7418,1,0,0,0,7418,729,1, + 0,0,0,7419,7417,1,0,0,0,7420,7421,3,670,335,0,7421,731,1,0,0,0,7422, + 7423,3,804,402,0,7423,733,1,0,0,0,7424,7425,5,2,0,0,7425,7426,3, + 670,335,0,7426,7427,5,3,0,0,7427,7430,1,0,0,0,7428,7430,3,804,402, + 0,7429,7424,1,0,0,0,7429,7428,1,0,0,0,7430,735,1,0,0,0,7431,7434, + 3,670,335,0,7432,7434,3,804,402,0,7433,7431,1,0,0,0,7433,7432,1, + 0,0,0,7434,737,1,0,0,0,7435,7440,3,740,370,0,7436,7437,5,6,0,0,7437, + 7439,3,740,370,0,7438,7436,1,0,0,0,7439,7442,1,0,0,0,7440,7438,1, + 0,0,0,7440,7441,1,0,0,0,7441,739,1,0,0,0,7442,7440,1,0,0,0,7443, + 7451,3,804,402,0,7444,7451,3,670,335,0,7445,7448,3,826,413,0,7446, + 7447,7,108,0,0,7447,7449,3,670,335,0,7448,7446,1,0,0,0,7448,7449, + 1,0,0,0,7449,7451,1,0,0,0,7450,7443,1,0,0,0,7450,7444,1,0,0,0,7450, + 7445,1,0,0,0,7451,741,1,0,0,0,7452,7462,5,4,0,0,7453,7463,3,728, + 364,0,7454,7459,3,742,371,0,7455,7456,5,6,0,0,7456,7458,3,742,371, + 0,7457,7455,1,0,0,0,7458,7461,1,0,0,0,7459,7457,1,0,0,0,7459,7460, + 1,0,0,0,7460,7463,1,0,0,0,7461,7459,1,0,0,0,7462,7453,1,0,0,0,7462, + 7454,1,0,0,0,7462,7463,1,0,0,0,7463,7464,1,0,0,0,7464,7465,5,5,0, + 0,7465,743,1,0,0,0,7466,7475,3,832,416,0,7467,7475,5,384,0,0,7468, + 7475,5,264,0,0,7469,7475,5,176,0,0,7470,7475,5,218,0,0,7471,7475, + 5,261,0,0,7472,7475,5,326,0,0,7473,7475,3,814,407,0,7474,7466,1, + 0,0,0,7474,7467,1,0,0,0,7474,7468,1,0,0,0,7474,7469,1,0,0,0,7474, + 7470,1,0,0,0,7474,7471,1,0,0,0,7474,7472,1,0,0,0,7474,7473,1,0,0, + 0,7475,745,1,0,0,0,7476,7477,7,109,0,0,7477,747,1,0,0,0,7478,7479, + 3,670,335,0,7479,7480,5,64,0,0,7480,7483,3,670,335,0,7481,7482,5, + 62,0,0,7482,7484,3,670,335,0,7483,7481,1,0,0,0,7483,7484,1,0,0,0, + 7484,7500,1,0,0,0,7485,7486,3,670,335,0,7486,7487,5,62,0,0,7487, + 7490,3,670,335,0,7488,7489,5,64,0,0,7489,7491,3,670,335,0,7490,7488, + 1,0,0,0,7490,7491,1,0,0,0,7491,7500,1,0,0,0,7492,7493,3,670,335, + 0,7493,7494,5,127,0,0,7494,7495,3,670,335,0,7495,7496,5,197,0,0, + 7496,7497,3,670,335,0,7497,7500,1,0,0,0,7498,7500,3,728,364,0,7499, + 7478,1,0,0,0,7499,7485,1,0,0,0,7499,7492,1,0,0,0,7499,7498,1,0,0, + 0,7500,749,1,0,0,0,7501,7502,5,102,0,0,7502,7503,3,670,335,0,7503, + 7504,5,93,0,0,7504,7505,3,670,335,0,7505,751,1,0,0,0,7506,7509,5, + 11,0,0,7507,7510,3,830,415,0,7508,7510,5,9,0,0,7509,7507,1,0,0,0, + 7509,7508,1,0,0,0,7510,7524,1,0,0,0,7511,7520,5,4,0,0,7512,7521, + 3,670,335,0,7513,7515,3,670,335,0,7514,7513,1,0,0,0,7514,7515,1, + 0,0,0,7515,7516,1,0,0,0,7516,7518,5,8,0,0,7517,7519,3,670,335,0, + 7518,7517,1,0,0,0,7518,7519,1,0,0,0,7519,7521,1,0,0,0,7520,7512, + 1,0,0,0,7520,7514,1,0,0,0,7521,7522,1,0,0,0,7522,7524,5,5,0,0,7523, + 7506,1,0,0,0,7523,7511,1,0,0,0,7524,753,1,0,0,0,7525,7527,3,752, + 376,0,7526,7525,1,0,0,0,7527,7528,1,0,0,0,7528,7526,1,0,0,0,7528, + 7529,1,0,0,0,7529,755,1,0,0,0,7530,7532,3,752,376,0,7531,7530,1, + 0,0,0,7532,7535,1,0,0,0,7533,7531,1,0,0,0,7533,7534,1,0,0,0,7534, + 757,1,0,0,0,7535,7533,1,0,0,0,7536,7541,3,760,380,0,7537,7538,5, + 6,0,0,7538,7540,3,760,380,0,7539,7537,1,0,0,0,7540,7543,1,0,0,0, + 7541,7539,1,0,0,0,7541,7542,1,0,0,0,7542,759,1,0,0,0,7543,7541,1, + 0,0,0,7544,7557,3,762,381,0,7545,7548,3,732,366,0,7546,7548,3,730, + 365,0,7547,7545,1,0,0,0,7547,7546,1,0,0,0,7548,7554,1,0,0,0,7549, + 7551,5,36,0,0,7550,7549,1,0,0,0,7550,7551,1,0,0,0,7551,7552,1,0, + 0,0,7552,7555,3,832,416,0,7553,7555,1,0,0,0,7554,7550,1,0,0,0,7554, + 7553,1,0,0,0,7555,7557,1,0,0,0,7556,7544,1,0,0,0,7556,7547,1,0,0, + 0,7557,761,1,0,0,0,7558,7559,3,824,412,0,7559,7560,5,11,0,0,7560, + 7562,1,0,0,0,7561,7558,1,0,0,0,7562,7565,1,0,0,0,7563,7561,1,0,0, + 0,7563,7564,1,0,0,0,7564,7566,1,0,0,0,7565,7563,1,0,0,0,7566,7567, + 5,9,0,0,7567,763,1,0,0,0,7568,7573,3,784,392,0,7569,7570,5,6,0,0, + 7570,7572,3,784,392,0,7571,7569,1,0,0,0,7572,7575,1,0,0,0,7573,7571, + 1,0,0,0,7573,7574,1,0,0,0,7574,765,1,0,0,0,7575,7573,1,0,0,0,7576, + 7581,3,778,389,0,7577,7578,5,6,0,0,7578,7580,3,778,389,0,7579,7577, + 1,0,0,0,7580,7583,1,0,0,0,7581,7579,1,0,0,0,7581,7582,1,0,0,0,7582, + 767,1,0,0,0,7583,7581,1,0,0,0,7584,7589,3,794,397,0,7585,7586,5, + 6,0,0,7586,7588,3,794,397,0,7587,7585,1,0,0,0,7588,7591,1,0,0,0, + 7589,7587,1,0,0,0,7589,7590,1,0,0,0,7590,769,1,0,0,0,7591,7589,1, + 0,0,0,7592,7597,3,792,396,0,7593,7594,5,6,0,0,7594,7596,3,792,396, + 0,7595,7593,1,0,0,0,7596,7599,1,0,0,0,7597,7595,1,0,0,0,7597,7598, + 1,0,0,0,7598,771,1,0,0,0,7599,7597,1,0,0,0,7600,7601,3,784,392,0, + 7601,773,1,0,0,0,7602,7603,3,784,392,0,7603,775,1,0,0,0,7604,7605, + 3,784,392,0,7605,777,1,0,0,0,7606,7607,3,784,392,0,7607,779,1,0, + 0,0,7608,7609,3,784,392,0,7609,781,1,0,0,0,7610,7611,3,310,155,0, + 7611,783,1,0,0,0,7612,7614,3,824,412,0,7613,7615,3,754,377,0,7614, + 7613,1,0,0,0,7614,7615,1,0,0,0,7615,785,1,0,0,0,7616,7621,3,774, + 387,0,7617,7618,5,6,0,0,7618,7620,3,774,387,0,7619,7617,1,0,0,0, + 7620,7623,1,0,0,0,7621,7619,1,0,0,0,7621,7622,1,0,0,0,7622,787,1, + 0,0,0,7623,7621,1,0,0,0,7624,7629,3,824,412,0,7625,7626,5,6,0,0, + 7626,7628,3,824,412,0,7627,7625,1,0,0,0,7628,7631,1,0,0,0,7629,7627, + 1,0,0,0,7629,7630,1,0,0,0,7630,789,1,0,0,0,7631,7629,1,0,0,0,7632, + 7633,3,310,155,0,7633,791,1,0,0,0,7634,7635,3,310,155,0,7635,793, + 1,0,0,0,7636,7637,3,310,155,0,7637,795,1,0,0,0,7638,7639,3,824,412, + 0,7639,797,1,0,0,0,7640,7641,3,824,412,0,7641,799,1,0,0,0,7642,7647, + 3,826,413,0,7643,7644,3,824,412,0,7644,7645,3,754,377,0,7645,7647, + 1,0,0,0,7646,7642,1,0,0,0,7646,7643,1,0,0,0,7647,801,1,0,0,0,7648, + 7653,3,826,413,0,7649,7650,3,824,412,0,7650,7651,3,754,377,0,7651, + 7653,1,0,0,0,7652,7648,1,0,0,0,7652,7649,1,0,0,0,7653,803,1,0,0, + 0,7654,7655,3,824,412,0,7655,7656,3,756,378,0,7656,7659,1,0,0,0, + 7657,7659,4,402,10,0,7658,7654,1,0,0,0,7658,7657,1,0,0,0,7659,805, + 1,0,0,0,7660,7661,3,824,412,0,7661,7662,3,756,378,0,7662,807,1,0, + 0,0,7663,7664,3,824,412,0,7664,809,1,0,0,0,7665,7670,3,826,413,0, + 7666,7667,3,824,412,0,7667,7668,3,754,377,0,7668,7670,1,0,0,0,7669, + 7665,1,0,0,0,7669,7666,1,0,0,0,7670,811,1,0,0,0,7671,7676,3,826, + 413,0,7672,7673,3,824,412,0,7673,7674,3,754,377,0,7674,7676,1,0, + 0,0,7675,7671,1,0,0,0,7675,7672,1,0,0,0,7676,813,1,0,0,0,7677,7680, + 3,816,408,0,7678,7679,5,487,0,0,7679,7681,3,816,408,0,7680,7678, + 1,0,0,0,7680,7681,1,0,0,0,7681,815,1,0,0,0,7682,7694,5,561,0,0,7683, + 7694,5,563,0,0,7684,7688,5,565,0,0,7685,7687,5,590,0,0,7686,7685, + 1,0,0,0,7687,7690,1,0,0,0,7688,7686,1,0,0,0,7688,7689,1,0,0,0,7689, + 7691,1,0,0,0,7690,7688,1,0,0,0,7691,7694,5,591,0,0,7692,7694,5,586, + 0,0,7693,7682,1,0,0,0,7693,7683,1,0,0,0,7693,7684,1,0,0,0,7693,7692, + 1,0,0,0,7694,817,1,0,0,0,7695,7697,7,30,0,0,7696,7695,1,0,0,0,7696, + 7697,1,0,0,0,7697,7698,1,0,0,0,7698,7699,5,574,0,0,7699,819,1,0, + 0,0,7700,7706,3,828,414,0,7701,7706,5,52,0,0,7702,7706,5,49,0,0, + 7703,7706,5,89,0,0,7704,7706,5,524,0,0,7705,7700,1,0,0,0,7705,7701, 1,0,0,0,7705,7702,1,0,0,0,7705,7703,1,0,0,0,7705,7704,1,0,0,0,7706, - 823,1,0,0,0,7707,7710,5,552,0,0,7708,7709,5,487,0,0,7709,7711,3, - 808,404,0,7710,7708,1,0,0,0,7710,7711,1,0,0,0,7711,7719,1,0,0,0, - 7712,7719,3,806,403,0,7713,7719,5,553,0,0,7714,7719,5,557,0,0,7715, - 7719,5,577,0,0,7716,7719,5,578,0,0,7717,7719,3,826,413,0,7718,7707, - 1,0,0,0,7718,7712,1,0,0,0,7718,7713,1,0,0,0,7718,7714,1,0,0,0,7718, - 7715,1,0,0,0,7718,7716,1,0,0,0,7718,7717,1,0,0,0,7719,825,1,0,0, - 0,7720,7721,7,110,0,0,7721,827,1,0,0,0,7722,7774,5,387,0,0,7723, - 7774,5,388,0,0,7724,7774,3,656,328,0,7725,7774,5,390,0,0,7726,7774, - 5,391,0,0,7727,7774,3,658,329,0,7728,7774,5,393,0,0,7729,7774,5, - 394,0,0,7730,7774,5,395,0,0,7731,7774,5,396,0,0,7732,7774,5,397, - 0,0,7733,7774,5,398,0,0,7734,7774,5,399,0,0,7735,7774,5,470,0,0, - 7736,7774,5,400,0,0,7737,7774,5,401,0,0,7738,7774,5,402,0,0,7739, - 7774,5,403,0,0,7740,7774,5,404,0,0,7741,7774,5,405,0,0,7742,7774, - 5,406,0,0,7743,7774,5,407,0,0,7744,7774,5,489,0,0,7745,7774,5,408, - 0,0,7746,7774,3,652,326,0,7747,7774,5,453,0,0,7748,7774,5,410,0, - 0,7749,7774,5,411,0,0,7750,7774,5,412,0,0,7751,7774,5,413,0,0,7752, - 7774,5,414,0,0,7753,7774,5,415,0,0,7754,7774,5,416,0,0,7755,7774, - 5,417,0,0,7756,7774,5,418,0,0,7757,7774,5,419,0,0,7758,7774,5,420, - 0,0,7759,7774,5,421,0,0,7760,7774,5,422,0,0,7761,7774,5,423,0,0, - 7762,7774,5,424,0,0,7763,7774,5,425,0,0,7764,7774,5,426,0,0,7765, - 7774,5,427,0,0,7766,7774,5,428,0,0,7767,7774,5,476,0,0,7768,7774, - 5,429,0,0,7769,7774,5,430,0,0,7770,7774,5,431,0,0,7771,7774,5,432, - 0,0,7772,7774,5,474,0,0,7773,7722,1,0,0,0,7773,7723,1,0,0,0,7773, - 7724,1,0,0,0,7773,7725,1,0,0,0,7773,7726,1,0,0,0,7773,7727,1,0,0, - 0,7773,7728,1,0,0,0,7773,7729,1,0,0,0,7773,7730,1,0,0,0,7773,7731, - 1,0,0,0,7773,7732,1,0,0,0,7773,7733,1,0,0,0,7773,7734,1,0,0,0,7773, - 7735,1,0,0,0,7773,7736,1,0,0,0,7773,7737,1,0,0,0,7773,7738,1,0,0, - 0,7773,7739,1,0,0,0,7773,7740,1,0,0,0,7773,7741,1,0,0,0,7773,7742, - 1,0,0,0,7773,7743,1,0,0,0,7773,7744,1,0,0,0,7773,7745,1,0,0,0,7773, - 7746,1,0,0,0,7773,7747,1,0,0,0,7773,7748,1,0,0,0,7773,7749,1,0,0, - 0,7773,7750,1,0,0,0,7773,7751,1,0,0,0,7773,7752,1,0,0,0,7773,7753, - 1,0,0,0,7773,7754,1,0,0,0,7773,7755,1,0,0,0,7773,7756,1,0,0,0,7773, - 7757,1,0,0,0,7773,7758,1,0,0,0,7773,7759,1,0,0,0,7773,7760,1,0,0, - 0,7773,7761,1,0,0,0,7773,7762,1,0,0,0,7773,7763,1,0,0,0,7773,7764, - 1,0,0,0,7773,7765,1,0,0,0,7773,7766,1,0,0,0,7773,7767,1,0,0,0,7773, - 7768,1,0,0,0,7773,7769,1,0,0,0,7773,7770,1,0,0,0,7773,7771,1,0,0, - 0,7773,7772,1,0,0,0,7774,829,1,0,0,0,7775,7776,7,111,0,0,7776,831, - 1,0,0,0,7777,7778,7,112,0,0,7778,833,1,0,0,0,7779,7781,3,836,418, - 0,7780,7779,1,0,0,0,7780,7781,1,0,0,0,7781,7792,1,0,0,0,7782,7790, - 5,178,0,0,7783,7787,3,838,419,0,7784,7787,5,178,0,0,7785,7787,3, - 836,418,0,7786,7783,1,0,0,0,7786,7784,1,0,0,0,7786,7785,1,0,0,0, - 7787,7788,1,0,0,0,7788,7786,1,0,0,0,7788,7789,1,0,0,0,7789,7791, - 1,0,0,0,7790,7786,1,0,0,0,7790,7791,1,0,0,0,7791,7793,1,0,0,0,7792, - 7782,1,0,0,0,7792,7793,1,0,0,0,7793,7794,1,0,0,0,7794,7798,5,146, - 0,0,7795,7797,3,844,422,0,7796,7795,1,0,0,0,7797,7800,1,0,0,0,7798, - 7796,1,0,0,0,7798,7799,1,0,0,0,7799,7802,1,0,0,0,7800,7798,1,0,0, - 0,7801,7803,3,922,461,0,7802,7801,1,0,0,0,7802,7803,1,0,0,0,7803, - 7804,1,0,0,0,7804,7806,5,454,0,0,7805,7807,3,926,463,0,7806,7805, - 1,0,0,0,7806,7807,1,0,0,0,7807,835,1,0,0,0,7808,7809,5,18,0,0,7809, - 7810,3,926,463,0,7810,7811,5,19,0,0,7811,837,1,0,0,0,7812,7859,3, - 926,463,0,7813,7814,5,496,0,0,7814,7817,5,62,0,0,7815,7818,5,28, - 0,0,7816,7818,3,816,408,0,7817,7815,1,0,0,0,7817,7816,1,0,0,0,7818, - 7860,1,0,0,0,7819,7821,5,497,0,0,7820,7819,1,0,0,0,7820,7821,1,0, - 0,0,7821,7822,1,0,0,0,7822,7824,3,646,323,0,7823,7825,3,90,45,0, - 7824,7823,1,0,0,0,7824,7825,1,0,0,0,7825,7828,1,0,0,0,7826,7827, - 5,77,0,0,7827,7829,5,78,0,0,7828,7826,1,0,0,0,7828,7829,1,0,0,0, - 7829,7835,1,0,0,0,7830,7833,3,842,421,0,7831,7833,5,53,0,0,7832, - 7830,1,0,0,0,7832,7831,1,0,0,0,7833,7834,1,0,0,0,7834,7836,3,928, - 464,0,7835,7832,1,0,0,0,7835,7836,1,0,0,0,7836,7860,1,0,0,0,7837, - 7839,5,269,0,0,7838,7837,1,0,0,0,7838,7839,1,0,0,0,7839,7840,1,0, - 0,0,7840,7842,5,324,0,0,7841,7838,1,0,0,0,7841,7842,1,0,0,0,7842, - 7843,1,0,0,0,7843,7855,5,172,0,0,7844,7845,5,2,0,0,7845,7850,3,840, - 420,0,7846,7847,5,6,0,0,7847,7849,3,840,420,0,7848,7846,1,0,0,0, - 7849,7852,1,0,0,0,7850,7848,1,0,0,0,7850,7851,1,0,0,0,7851,7853, - 1,0,0,0,7852,7850,1,0,0,0,7853,7854,5,3,0,0,7854,7856,1,0,0,0,7855, - 7844,1,0,0,0,7855,7856,1,0,0,0,7856,7857,1,0,0,0,7857,7858,7,113, - 0,0,7858,7860,3,554,277,0,7859,7813,1,0,0,0,7859,7820,1,0,0,0,7859, - 7841,1,0,0,0,7860,7861,1,0,0,0,7861,7862,5,7,0,0,7862,839,1,0,0, - 0,7863,7864,3,926,463,0,7864,7865,3,646,323,0,7865,841,1,0,0,0,7866, - 7867,7,114,0,0,7867,843,1,0,0,0,7868,7869,3,834,417,0,7869,7870, - 5,7,0,0,7870,7893,1,0,0,0,7871,7893,3,872,436,0,7872,7893,3,874, - 437,0,7873,7893,3,850,425,0,7874,7893,3,858,429,0,7875,7893,3,862, - 431,0,7876,7893,3,864,432,0,7877,7893,3,868,434,0,7878,7893,3,870, - 435,0,7879,7893,3,878,439,0,7880,7893,3,882,441,0,7881,7893,3,884, - 442,0,7882,7893,3,846,423,0,7883,7893,3,848,424,0,7884,7893,3,852, - 426,0,7885,7893,3,888,444,0,7886,7893,3,892,446,0,7887,7893,3,896, - 448,0,7888,7893,3,912,456,0,7889,7893,3,914,457,0,7890,7893,3,916, - 458,0,7891,7893,3,918,459,0,7892,7868,1,0,0,0,7892,7871,1,0,0,0, - 7892,7872,1,0,0,0,7892,7873,1,0,0,0,7892,7874,1,0,0,0,7892,7875, - 1,0,0,0,7892,7876,1,0,0,0,7892,7877,1,0,0,0,7892,7878,1,0,0,0,7892, - 7879,1,0,0,0,7892,7880,1,0,0,0,7892,7881,1,0,0,0,7892,7882,1,0,0, - 0,7892,7883,1,0,0,0,7892,7884,1,0,0,0,7892,7885,1,0,0,0,7892,7886, - 1,0,0,0,7892,7887,1,0,0,0,7892,7888,1,0,0,0,7892,7889,1,0,0,0,7892, - 7890,1,0,0,0,7892,7891,1,0,0,0,7893,845,1,0,0,0,7894,7895,5,498, - 0,0,7895,7896,3,928,464,0,7896,7897,5,7,0,0,7897,847,1,0,0,0,7898, - 7899,5,433,0,0,7899,7906,3,926,463,0,7900,7902,5,2,0,0,7901,7903, - 3,726,363,0,7902,7901,1,0,0,0,7902,7903,1,0,0,0,7903,7904,1,0,0, - 0,7904,7905,5,3,0,0,7905,7907,5,7,0,0,7906,7900,1,0,0,0,7906,7907, - 1,0,0,0,7907,7918,1,0,0,0,7908,7909,5,57,0,0,7909,7910,3,926,463, - 0,7910,7912,5,2,0,0,7911,7913,3,726,363,0,7912,7911,1,0,0,0,7912, - 7913,1,0,0,0,7913,7914,1,0,0,0,7914,7915,5,3,0,0,7915,7916,5,7,0, - 0,7916,7918,1,0,0,0,7917,7898,1,0,0,0,7917,7908,1,0,0,0,7918,849, - 1,0,0,0,7919,7920,3,856,428,0,7920,7921,3,842,421,0,7921,7922,3, - 928,464,0,7922,7923,5,7,0,0,7923,851,1,0,0,0,7924,7926,5,499,0,0, - 7925,7927,7,115,0,0,7926,7925,1,0,0,0,7926,7927,1,0,0,0,7927,7928, - 1,0,0,0,7928,7929,5,500,0,0,7929,7934,3,854,427,0,7930,7931,5,6, - 0,0,7931,7933,3,854,427,0,7932,7930,1,0,0,0,7933,7936,1,0,0,0,7934, - 7932,1,0,0,0,7934,7935,1,0,0,0,7935,7937,1,0,0,0,7936,7934,1,0,0, - 0,7937,7938,5,7,0,0,7938,853,1,0,0,0,7939,7940,3,856,428,0,7940, - 7941,3,842,421,0,7941,7942,3,816,408,0,7942,855,1,0,0,0,7943,7946, - 3,310,155,0,7944,7946,5,28,0,0,7945,7943,1,0,0,0,7945,7944,1,0,0, - 0,7946,7953,1,0,0,0,7947,7948,5,4,0,0,7948,7949,3,668,334,0,7949, - 7950,5,5,0,0,7950,7952,1,0,0,0,7951,7947,1,0,0,0,7952,7955,1,0,0, - 0,7953,7951,1,0,0,0,7953,7954,1,0,0,0,7954,857,1,0,0,0,7955,7953, - 1,0,0,0,7956,7957,5,220,0,0,7957,7958,3,928,464,0,7958,7962,5,93, - 0,0,7959,7961,3,844,422,0,7960,7959,1,0,0,0,7961,7964,1,0,0,0,7962, - 7960,1,0,0,0,7962,7963,1,0,0,0,7963,7976,1,0,0,0,7964,7962,1,0,0, - 0,7965,7966,5,502,0,0,7966,7967,3,668,334,0,7967,7971,5,93,0,0,7968, - 7970,3,844,422,0,7969,7968,1,0,0,0,7970,7973,1,0,0,0,7971,7969,1, - 0,0,0,7971,7972,1,0,0,0,7972,7975,1,0,0,0,7973,7971,1,0,0,0,7974, - 7965,1,0,0,0,7975,7978,1,0,0,0,7976,7974,1,0,0,0,7976,7977,1,0,0, - 0,7977,7980,1,0,0,0,7978,7976,1,0,0,0,7979,7981,3,860,430,0,7980, - 7979,1,0,0,0,7980,7981,1,0,0,0,7981,7982,1,0,0,0,7982,7983,5,454, - 0,0,7983,7984,5,220,0,0,7984,7985,5,7,0,0,7985,859,1,0,0,0,7986, - 7990,5,58,0,0,7987,7989,3,844,422,0,7988,7987,1,0,0,0,7989,7992, - 1,0,0,0,7990,7988,1,0,0,0,7990,7991,1,0,0,0,7991,861,1,0,0,0,7992, - 7990,1,0,0,0,7993,7995,5,40,0,0,7994,7996,3,928,464,0,7995,7994, - 1,0,0,0,7995,7996,1,0,0,0,7996,8006,1,0,0,0,7997,7998,5,102,0,0, - 7998,7999,3,726,363,0,7999,8003,5,93,0,0,8000,8002,3,844,422,0,8001, - 8000,1,0,0,0,8002,8005,1,0,0,0,8003,8001,1,0,0,0,8003,8004,1,0,0, - 0,8004,8007,1,0,0,0,8005,8003,1,0,0,0,8006,7997,1,0,0,0,8007,8008, - 1,0,0,0,8008,8006,1,0,0,0,8008,8009,1,0,0,0,8009,8011,1,0,0,0,8010, - 8012,3,860,430,0,8011,8010,1,0,0,0,8011,8012,1,0,0,0,8012,8013,1, - 0,0,0,8013,8014,5,454,0,0,8014,8015,5,40,0,0,8015,8016,5,7,0,0,8016, - 863,1,0,0,0,8017,8019,3,836,418,0,8018,8017,1,0,0,0,8018,8019,1, - 0,0,0,8019,8024,1,0,0,0,8020,8021,5,503,0,0,8021,8025,3,668,334, - 0,8022,8023,5,62,0,0,8023,8025,3,866,433,0,8024,8020,1,0,0,0,8024, - 8022,1,0,0,0,8024,8025,1,0,0,0,8025,8026,1,0,0,0,8026,8027,3,880, - 440,0,8027,865,1,0,0,0,8028,8029,3,308,154,0,8029,8052,5,68,0,0, - 8030,8032,3,816,408,0,8031,8033,3,528,264,0,8032,8031,1,0,0,0,8032, - 8033,1,0,0,0,8033,8053,1,0,0,0,8034,8053,3,554,277,0,8035,8053,3, - 514,257,0,8036,8037,5,202,0,0,8037,8040,3,668,334,0,8038,8039,5, - 100,0,0,8039,8041,3,726,363,0,8040,8038,1,0,0,0,8040,8041,1,0,0, - 0,8041,8053,1,0,0,0,8042,8044,5,504,0,0,8043,8042,1,0,0,0,8043,8044, - 1,0,0,0,8044,8045,1,0,0,0,8045,8046,3,668,334,0,8046,8047,5,24,0, - 0,8047,8050,3,668,334,0,8048,8049,5,147,0,0,8049,8051,3,668,334, - 0,8050,8048,1,0,0,0,8050,8051,1,0,0,0,8051,8053,1,0,0,0,8052,8030, - 1,0,0,0,8052,8034,1,0,0,0,8052,8035,1,0,0,0,8052,8036,1,0,0,0,8052, - 8043,1,0,0,0,8053,867,1,0,0,0,8054,8056,3,836,418,0,8055,8054,1, - 0,0,0,8055,8056,1,0,0,0,8056,8057,1,0,0,0,8057,8058,5,505,0,0,8058, - 8061,3,308,154,0,8059,8060,5,506,0,0,8060,8062,5,574,0,0,8061,8059, - 1,0,0,0,8061,8062,1,0,0,0,8062,8063,1,0,0,0,8063,8064,5,68,0,0,8064, - 8065,5,35,0,0,8065,8066,3,668,334,0,8066,8067,3,880,440,0,8067,869, - 1,0,0,0,8068,8070,7,116,0,0,8069,8071,3,926,463,0,8070,8069,1,0, - 0,0,8070,8071,1,0,0,0,8071,8074,1,0,0,0,8072,8073,5,102,0,0,8073, - 8075,3,928,464,0,8074,8072,1,0,0,0,8074,8075,1,0,0,0,8075,8076,1, - 0,0,0,8076,8077,5,7,0,0,8077,871,1,0,0,0,8078,8093,5,508,0,0,8079, - 8080,5,268,0,0,8080,8094,3,928,464,0,8081,8088,5,509,0,0,8082,8083, - 5,202,0,0,8083,8084,3,668,334,0,8084,8085,5,100,0,0,8085,8086,3, - 726,363,0,8086,8089,1,0,0,0,8087,8089,3,554,277,0,8088,8082,1,0, - 0,0,8088,8087,1,0,0,0,8089,8094,1,0,0,0,8090,8092,3,928,464,0,8091, - 8090,1,0,0,0,8091,8092,1,0,0,0,8092,8094,1,0,0,0,8093,8079,1,0,0, - 0,8093,8081,1,0,0,0,8093,8091,1,0,0,0,8094,8095,1,0,0,0,8095,8096, - 5,7,0,0,8096,873,1,0,0,0,8097,8127,5,510,0,0,8098,8100,7,117,0,0, - 8099,8098,1,0,0,0,8099,8100,1,0,0,0,8100,8113,1,0,0,0,8101,8114, - 3,824,412,0,8102,8103,5,511,0,0,8103,8114,3,806,403,0,8104,8111, - 3,806,403,0,8105,8106,5,6,0,0,8106,8108,3,668,334,0,8107,8105,1, - 0,0,0,8108,8109,1,0,0,0,8109,8107,1,0,0,0,8109,8110,1,0,0,0,8110, - 8112,1,0,0,0,8111,8107,1,0,0,0,8111,8112,1,0,0,0,8112,8114,1,0,0, - 0,8113,8101,1,0,0,0,8113,8102,1,0,0,0,8113,8104,1,0,0,0,8113,8114, - 1,0,0,0,8114,8124,1,0,0,0,8115,8116,5,100,0,0,8116,8121,3,876,438, - 0,8117,8118,5,6,0,0,8118,8120,3,876,438,0,8119,8117,1,0,0,0,8120, - 8123,1,0,0,0,8121,8119,1,0,0,0,8121,8122,1,0,0,0,8122,8125,1,0,0, - 0,8123,8121,1,0,0,0,8124,8115,1,0,0,0,8124,8125,1,0,0,0,8125,8126, - 1,0,0,0,8126,8128,5,7,0,0,8127,8099,1,0,0,0,8127,8128,1,0,0,0,8128, - 875,1,0,0,0,8129,8130,3,824,412,0,8130,8131,5,10,0,0,8131,8132,3, - 668,334,0,8132,877,1,0,0,0,8133,8134,5,518,0,0,8134,8137,3,928,464, - 0,8135,8136,5,6,0,0,8136,8138,3,928,464,0,8137,8135,1,0,0,0,8137, - 8138,1,0,0,0,8138,8139,1,0,0,0,8139,8140,5,7,0,0,8140,879,1,0,0, - 0,8141,8145,5,519,0,0,8142,8144,3,844,422,0,8143,8142,1,0,0,0,8144, - 8147,1,0,0,0,8145,8143,1,0,0,0,8145,8146,1,0,0,0,8146,8148,1,0,0, - 0,8147,8145,1,0,0,0,8148,8149,5,454,0,0,8149,8151,5,519,0,0,8150, - 8152,3,926,463,0,8151,8150,1,0,0,0,8151,8152,1,0,0,0,8152,8153,1, - 0,0,0,8153,8154,5,7,0,0,8154,881,1,0,0,0,8155,8157,3,4,2,0,8156, - 8158,3,886,443,0,8157,8156,1,0,0,0,8157,8158,1,0,0,0,8158,8159,1, - 0,0,0,8159,8160,5,7,0,0,8160,883,1,0,0,0,8161,8162,5,202,0,0,8162, - 8178,3,668,334,0,8163,8165,3,886,443,0,8164,8163,1,0,0,0,8164,8165, - 1,0,0,0,8165,8168,1,0,0,0,8166,8167,5,100,0,0,8167,8169,3,726,363, - 0,8168,8166,1,0,0,0,8168,8169,1,0,0,0,8169,8179,1,0,0,0,8170,8171, - 5,100,0,0,8171,8173,3,726,363,0,8172,8170,1,0,0,0,8172,8173,1,0, - 0,0,8173,8175,1,0,0,0,8174,8176,3,886,443,0,8175,8174,1,0,0,0,8175, - 8176,1,0,0,0,8176,8179,1,0,0,0,8177,8179,1,0,0,0,8178,8164,1,0,0, - 0,8178,8172,1,0,0,0,8178,8177,1,0,0,0,8179,8180,1,0,0,0,8180,8181, - 5,7,0,0,8181,885,1,0,0,0,8182,8184,5,71,0,0,8183,8185,5,346,0,0, - 8184,8183,1,0,0,0,8184,8185,1,0,0,0,8185,8186,1,0,0,0,8186,8187, - 3,726,363,0,8187,887,1,0,0,0,8188,8220,5,520,0,0,8189,8194,3,920, - 460,0,8190,8192,5,269,0,0,8191,8190,1,0,0,0,8191,8192,1,0,0,0,8192, - 8193,1,0,0,0,8193,8195,5,324,0,0,8194,8191,1,0,0,0,8194,8195,1,0, - 0,0,8195,8196,1,0,0,0,8196,8204,5,62,0,0,8197,8205,3,554,277,0,8198, - 8199,5,202,0,0,8199,8202,3,928,464,0,8200,8201,5,100,0,0,8201,8203, - 3,726,363,0,8202,8200,1,0,0,0,8202,8203,1,0,0,0,8203,8205,1,0,0, - 0,8204,8197,1,0,0,0,8204,8198,1,0,0,0,8205,8221,1,0,0,0,8206,8218, - 3,816,408,0,8207,8208,5,2,0,0,8208,8213,3,890,445,0,8209,8210,5, - 6,0,0,8210,8212,3,890,445,0,8211,8209,1,0,0,0,8212,8215,1,0,0,0, - 8213,8211,1,0,0,0,8213,8214,1,0,0,0,8214,8216,1,0,0,0,8215,8213, - 1,0,0,0,8216,8217,5,3,0,0,8217,8219,1,0,0,0,8218,8207,1,0,0,0,8218, - 8219,1,0,0,0,8219,8221,1,0,0,0,8220,8189,1,0,0,0,8220,8206,1,0,0, - 0,8221,8222,1,0,0,0,8222,8223,5,7,0,0,8223,889,1,0,0,0,8224,8225, - 3,816,408,0,8225,8226,5,20,0,0,8226,8228,1,0,0,0,8227,8224,1,0,0, - 0,8227,8228,1,0,0,0,8228,8229,1,0,0,0,8229,8230,3,668,334,0,8230, - 891,1,0,0,0,8231,8233,5,61,0,0,8232,8234,3,894,447,0,8233,8232,1, - 0,0,0,8233,8234,1,0,0,0,8234,8236,1,0,0,0,8235,8237,3,326,163,0, - 8236,8235,1,0,0,0,8236,8237,1,0,0,0,8237,8238,1,0,0,0,8238,8239, - 3,920,460,0,8239,8240,5,71,0,0,8240,8241,3,726,363,0,8241,8242,5, - 7,0,0,8242,893,1,0,0,0,8243,8258,5,268,0,0,8244,8258,5,293,0,0,8245, - 8258,5,207,0,0,8246,8258,5,249,0,0,8247,8249,7,51,0,0,8248,8247, - 1,0,0,0,8248,8249,1,0,0,0,8249,8250,1,0,0,0,8250,8258,3,668,334, - 0,8251,8258,5,30,0,0,8252,8255,7,118,0,0,8253,8256,3,668,334,0,8254, - 8256,5,30,0,0,8255,8253,1,0,0,0,8255,8254,1,0,0,0,8255,8256,1,0, - 0,0,8256,8258,1,0,0,0,8257,8243,1,0,0,0,8257,8244,1,0,0,0,8257,8245, - 1,0,0,0,8257,8246,1,0,0,0,8257,8248,1,0,0,0,8257,8251,1,0,0,0,8257, - 8252,1,0,0,0,8258,895,1,0,0,0,8259,8261,5,265,0,0,8260,8262,3,894, - 447,0,8261,8260,1,0,0,0,8261,8262,1,0,0,0,8262,8263,1,0,0,0,8263, - 8264,3,920,460,0,8264,8265,5,7,0,0,8265,897,1,0,0,0,8266,8268,3, - 566,283,0,8267,8266,1,0,0,0,8267,8268,1,0,0,0,8268,8269,1,0,0,0, - 8269,8270,5,525,0,0,8270,8272,5,71,0,0,8271,8273,5,81,0,0,8272,8271, - 1,0,0,0,8272,8273,1,0,0,0,8273,8274,1,0,0,0,8274,8276,3,770,385, - 0,8275,8277,5,9,0,0,8276,8275,1,0,0,0,8276,8277,1,0,0,0,8277,8282, - 1,0,0,0,8278,8280,5,36,0,0,8279,8278,1,0,0,0,8279,8280,1,0,0,0,8280, - 8281,1,0,0,0,8281,8283,3,816,408,0,8282,8279,1,0,0,0,8282,8283,1, - 0,0,0,8283,8284,1,0,0,0,8284,8285,5,100,0,0,8285,8286,3,900,450, - 0,8286,8287,5,80,0,0,8287,8289,3,668,334,0,8288,8290,3,902,451,0, - 8289,8288,1,0,0,0,8290,8291,1,0,0,0,8291,8289,1,0,0,0,8291,8292, - 1,0,0,0,8292,8294,1,0,0,0,8293,8295,3,540,270,0,8294,8293,1,0,0, - 0,8294,8295,1,0,0,0,8295,899,1,0,0,0,8296,8298,5,81,0,0,8297,8296, - 1,0,0,0,8297,8298,1,0,0,0,8298,8299,1,0,0,0,8299,8301,3,770,385, - 0,8300,8302,5,9,0,0,8301,8300,1,0,0,0,8301,8302,1,0,0,0,8302,8308, - 1,0,0,0,8303,8306,3,558,279,0,8304,8306,3,602,301,0,8305,8303,1, - 0,0,0,8305,8304,1,0,0,0,8306,8308,1,0,0,0,8307,8297,1,0,0,0,8307, - 8305,1,0,0,0,8308,8313,1,0,0,0,8309,8311,5,36,0,0,8310,8309,1,0, - 0,0,8310,8311,1,0,0,0,8311,8312,1,0,0,0,8312,8314,3,816,408,0,8313, - 8310,1,0,0,0,8313,8314,1,0,0,0,8314,901,1,0,0,0,8315,8316,5,102, - 0,0,8316,8319,5,526,0,0,8317,8318,5,33,0,0,8318,8320,3,668,334,0, - 8319,8317,1,0,0,0,8319,8320,1,0,0,0,8320,8321,1,0,0,0,8321,8326, - 5,93,0,0,8322,8327,3,906,453,0,8323,8327,5,182,0,0,8324,8325,5,57, - 0,0,8325,8327,5,270,0,0,8326,8322,1,0,0,0,8326,8323,1,0,0,0,8326, - 8324,1,0,0,0,8327,8342,1,0,0,0,8328,8329,5,102,0,0,8329,8330,5,77, - 0,0,8330,8333,5,526,0,0,8331,8332,5,33,0,0,8332,8334,3,668,334,0, - 8333,8331,1,0,0,0,8333,8334,1,0,0,0,8334,8335,1,0,0,0,8335,8339, - 5,93,0,0,8336,8340,3,904,452,0,8337,8338,5,57,0,0,8338,8340,5,270, - 0,0,8339,8336,1,0,0,0,8339,8337,1,0,0,0,8340,8342,1,0,0,0,8341,8315, - 1,0,0,0,8341,8328,1,0,0,0,8342,903,1,0,0,0,8343,8345,5,241,0,0,8344, - 8346,3,138,69,0,8345,8344,1,0,0,0,8345,8346,1,0,0,0,8346,8350,1, - 0,0,0,8347,8348,5,463,0,0,8348,8349,7,77,0,0,8349,8351,5,450,0,0, - 8350,8347,1,0,0,0,8350,8351,1,0,0,0,8351,8352,1,0,0,0,8352,8353, - 3,908,454,0,8353,905,1,0,0,0,8354,8355,5,369,0,0,8355,8373,5,333, - 0,0,8356,8357,3,796,398,0,8357,8358,5,10,0,0,8358,8359,3,910,455, - 0,8359,8374,1,0,0,0,8360,8361,3,138,69,0,8361,8362,5,10,0,0,8362, - 8363,5,2,0,0,8363,8368,3,910,455,0,8364,8365,5,6,0,0,8365,8367,3, - 910,455,0,8366,8364,1,0,0,0,8367,8370,1,0,0,0,8368,8366,1,0,0,0, - 8368,8369,1,0,0,0,8369,8371,1,0,0,0,8370,8368,1,0,0,0,8371,8372, - 5,3,0,0,8372,8374,1,0,0,0,8373,8356,1,0,0,0,8373,8360,1,0,0,0,8374, - 8375,1,0,0,0,8375,8373,1,0,0,0,8375,8376,1,0,0,0,8376,907,1,0,0, - 0,8377,8378,5,422,0,0,8378,8379,5,2,0,0,8379,8384,3,910,455,0,8380, - 8381,5,6,0,0,8381,8383,3,910,455,0,8382,8380,1,0,0,0,8383,8386,1, - 0,0,0,8384,8382,1,0,0,0,8384,8385,1,0,0,0,8385,8387,1,0,0,0,8386, - 8384,1,0,0,0,8387,8388,5,3,0,0,8388,8392,1,0,0,0,8389,8390,5,53, - 0,0,8390,8392,5,422,0,0,8391,8377,1,0,0,0,8391,8389,1,0,0,0,8392, - 909,1,0,0,0,8393,8396,3,582,291,0,8394,8396,5,53,0,0,8395,8393,1, - 0,0,0,8395,8394,1,0,0,0,8396,911,1,0,0,0,8397,8398,5,157,0,0,8398, - 8399,3,920,460,0,8399,8400,5,7,0,0,8400,913,1,0,0,0,8401,8402,5, - 78,0,0,8402,8403,5,7,0,0,8403,915,1,0,0,0,8404,8410,7,68,0,0,8405, - 8407,5,33,0,0,8406,8408,5,269,0,0,8407,8406,1,0,0,0,8407,8408,1, - 0,0,0,8408,8409,1,0,0,0,8409,8411,5,153,0,0,8410,8405,1,0,0,0,8410, - 8411,1,0,0,0,8411,8412,1,0,0,0,8412,8413,5,7,0,0,8413,917,1,0,0, - 0,8414,8415,5,333,0,0,8415,8416,3,310,155,0,8416,8417,5,94,0,0,8417, - 8418,5,53,0,0,8418,8419,5,7,0,0,8419,8427,1,0,0,0,8420,8423,5,313, - 0,0,8421,8424,3,310,155,0,8422,8424,5,30,0,0,8423,8421,1,0,0,0,8423, - 8422,1,0,0,0,8424,8425,1,0,0,0,8425,8427,5,7,0,0,8426,8414,1,0,0, - 0,8426,8420,1,0,0,0,8427,919,1,0,0,0,8428,8431,3,816,408,0,8429, - 8431,5,28,0,0,8430,8428,1,0,0,0,8430,8429,1,0,0,0,8431,921,1,0,0, - 0,8432,8449,5,517,0,0,8433,8434,5,102,0,0,8434,8439,3,924,462,0, - 8435,8436,5,82,0,0,8436,8438,3,924,462,0,8437,8435,1,0,0,0,8438, - 8441,1,0,0,0,8439,8437,1,0,0,0,8439,8440,1,0,0,0,8440,8442,1,0,0, - 0,8441,8439,1,0,0,0,8442,8446,5,93,0,0,8443,8445,3,844,422,0,8444, - 8443,1,0,0,0,8445,8448,1,0,0,0,8446,8444,1,0,0,0,8446,8447,1,0,0, - 0,8447,8450,1,0,0,0,8448,8446,1,0,0,0,8449,8433,1,0,0,0,8450,8451, - 1,0,0,0,8451,8449,1,0,0,0,8451,8452,1,0,0,0,8452,923,1,0,0,0,8453, - 8457,3,926,463,0,8454,8455,5,511,0,0,8455,8457,3,806,403,0,8456, - 8453,1,0,0,0,8456,8454,1,0,0,0,8457,925,1,0,0,0,8458,8461,3,816, - 408,0,8459,8461,3,826,413,0,8460,8458,1,0,0,0,8460,8459,1,0,0,0, - 8461,927,1,0,0,0,8462,8464,3,752,376,0,8463,8462,1,0,0,0,8463,8464, - 1,0,0,0,8464,8466,1,0,0,0,8465,8467,3,574,287,0,8466,8465,1,0,0, - 0,8466,8467,1,0,0,0,8467,8469,1,0,0,0,8468,8470,3,604,302,0,8469, - 8468,1,0,0,0,8469,8470,1,0,0,0,8470,8472,1,0,0,0,8471,8473,3,632, - 316,0,8472,8471,1,0,0,0,8472,8473,1,0,0,0,8473,8475,1,0,0,0,8474, - 8476,3,594,297,0,8475,8474,1,0,0,0,8475,8476,1,0,0,0,8476,8478,1, - 0,0,0,8477,8479,3,698,349,0,8478,8477,1,0,0,0,8478,8479,1,0,0,0, - 8479,8481,1,0,0,0,8480,8482,3,696,348,0,8481,8480,1,0,0,0,8481,8482, - 1,0,0,0,8482,929,1,0,0,0,1190,933,940,1060,1062,1071,1076,1082,1117, - 1127,1133,1138,1145,1150,1157,1168,1176,1180,1192,1198,1204,1208, - 1213,1217,1230,1240,1242,1248,1253,1266,1269,1274,1279,1290,1294, - 1306,1310,1313,1317,1329,1347,1354,1362,1367,1374,1382,1388,1396, - 1404,1408,1422,1427,1432,1444,1450,1462,1467,1477,1483,1488,1497, - 1504,1509,1514,1524,1529,1534,1541,1545,1559,1565,1571,1576,1583, - 1592,1601,1610,1619,1623,1635,1643,1653,1673,1678,1681,1688,1691, - 1695,1699,1702,1707,1712,1716,1725,1731,1735,1744,1747,1753,1762, - 1774,1778,1782,1787,1790,1796,1798,1800,1804,1810,1814,1819,1824, - 1828,1831,1838,1851,1864,1889,1899,1906,1911,1915,1922,1927,1930, - 1932,1937,1941,1945,1949,1954,1957,1961,1964,1968,1976,1981,1984, - 1988,1994,2003,2007,2017,2022,2026,2030,2032,2034,2041,2046,2050, - 2055,2067,2072,2076,2080,2085,2089,2092,2095,2098,2101,2104,2109, - 2112,2115,2118,2121,2124,2130,2134,2137,2140,2143,2146,2148,2155, - 2163,2173,2178,2188,2191,2196,2201,2206,2209,2214,2223,2225,2229, - 2232,2236,2241,2246,2250,2253,2257,2260,2265,2268,2273,2276,2280, - 2283,2286,2291,2294,2302,2314,2318,2325,2330,2333,2336,2339,2344, - 2355,2361,2365,2368,2371,2376,2383,2386,2390,2398,2403,2406,2409, - 2416,2421,2430,2433,2436,2441,2444,2456,2466,2483,2487,2491,2493, - 2510,2512,2528,2539,2542,2545,2554,2563,2579,2582,2585,2593,2597, - 2604,2613,2617,2623,2627,2630,2633,2636,2639,2645,2649,2654,2658, - 2661,2664,2667,2672,2678,2682,2686,2690,2696,2698,2703,2709,2715, - 2719,2734,2739,2742,2744,2747,2751,2755,2758,2761,2769,2775,2777, - 2783,2788,2793,2797,2804,2806,2817,2856,2866,2868,2871,2875,2879, - 2889,2891,2897,2899,2908,2920,2934,2939,2942,2949,2954,2962,2964, - 2970,2975,2979,2984,2990,2997,3003,3005,3014,3020,3028,3034,3039, - 3044,3052,3067,3069,3073,3077,3080,3083,3092,3095,3098,3104,3110, - 3114,3126,3132,3135,3140,3144,3151,3161,3163,3187,3199,3204,3206, - 3210,3213,3216,3226,3229,3239,3244,3249,3252,3255,3263,3269,3276, - 3284,3287,3298,3302,3308,3315,3318,3327,3341,3344,3358,3369,3372, - 3384,3389,3402,3407,3420,3429,3432,3435,3442,3445,3457,3463,3465, - 3473,3481,3489,3501,3506,3517,3528,3536,3544,3551,3558,3560,3563, - 3568,3573,3592,3601,3604,3631,3640,3643,3647,3651,3655,3662,3666, - 3670,3674,3678,3683,3687,3692,3698,3703,3710,3714,3720,3724,3729, - 3737,3743,3748,3755,3760,3764,3769,3775,3782,3787,3794,3799,3806, - 3810,3818,3822,3824,3827,3832,3842,3857,3860,3868,3875,3880,3886, - 3890,3897,3902,3905,3908,3912,3921,3939,3942,3974,3979,3985,4005, - 4010,4016,4019,4023,4027,4033,4036,4040,4044,4049,4052,4055,4058, - 4071,4077,4085,4092,4097,4100,4107,4110,4118,4121,4126,4133,4136, - 4156,4168,4171,4177,4182,4191,4199,4204,4210,4217,4225,4228,4239, - 4241,4255,4261,4269,4271,4277,4281,4284,4287,4292,4297,4301,4304, - 4307,4310,4313,4321,4332,4335,4338,4343,4346,4350,4354,4360,4368, - 4371,4384,4389,4391,4396,4403,4410,4419,4427,4435,4442,4450,4457, - 4465,4469,4473,4475,4481,4486,4490,4497,4502,4507,4512,4514,4524, - 4534,4550,4568,4580,4587,4602,4607,4610,4615,4620,4625,4628,4631, - 4636,4643,4647,4652,4659,4663,4669,4678,4687,4699,4701,4714,4720, - 4724,4726,4733,4746,4753,4755,4771,4775,4779,4784,4789,4794,4799, - 4802,4814,4867,4876,4880,4889,4893,4902,4906,4911,4914,4918,4923, - 4925,4934,4939,4950,4954,4968,4976,5014,5016,5035,5038,5065,5069, - 5073,5077,5081,5084,5099,5106,5120,5133,5158,5177,5192,5208,5215, - 5226,5229,5248,5251,5264,5268,5288,5300,5304,5326,5330,5340,5344, - 5350,5354,5358,5362,5369,5374,5385,5389,5392,5397,5403,5414,5418, - 5421,5425,5429,5432,5442,5445,5449,5454,5460,5463,5468,5471,5478, - 5480,5486,5490,5499,5504,5506,5516,5519,5524,5532,5535,5540,5542, - 5544,5550,5567,5573,5586,5592,5596,5601,5631,5646,5651,5655,5668, - 5672,5674,5683,5689,5691,5695,5698,5701,5704,5707,5709,5712,5716, - 5724,5729,5732,5738,5742,5746,5751,5753,5757,5761,5768,5774,5778, - 5780,5782,5795,5803,5811,5822,5832,5837,5841,5845,5852,5855,5857, - 5865,5869,5872,5879,5886,5891,5898,5901,5903,5906,5912,5917,5921, - 5928,5938,5945,5948,5951,5955,5966,5969,5972,5975,5978,5985,5988, - 5991,5998,6010,6017,6019,6024,6029,6031,6037,6044,6049,6054,6058, - 6062,6066,6068,6072,6076,6079,6082,6084,6094,6096,6101,6105,6110, - 6114,6121,6126,6130,6133,6139,6142,6161,6168,6172,6175,6179,6183, - 6186,6189,6194,6203,6210,6214,6218,6222,6225,6227,6232,6236,6241, - 6247,6254,6259,6264,6273,6280,6288,6299,6304,6308,6311,6315,6320, - 6324,6329,6337,6348,6353,6357,6360,6363,6365,6368,6371,6374,6378, - 6382,6386,6388,6397,6402,6408,6412,6414,6421,6426,6432,6434,6438, - 6445,6450,6453,6459,6463,6469,6478,6484,6486,6491,6494,6503,6510, - 6512,6519,6524,6527,6537,6548,6553,6557,6565,6575,6582,6588,6599, - 6605,6615,6624,6628,6631,6633,6635,6639,6647,6650,6655,6660,6667, - 6669,6675,6679,6682,6687,6690,6692,6698,6707,6713,6716,6724,6727, - 6731,6737,6739,6742,6746,6751,6758,6765,6767,6773,6775,6780,6782, - 6786,6795,6799,6807,6809,6823,6826,6834,6843,6849,6854,6862,6864, - 6869,6873,6878,6883,6889,6905,6907,6916,6931,6936,6939,6945,6950, - 6963,6968,6972,6979,6998,7010,7015,7023,7025,7027,7036,7039,7044, - 7049,7052,7063,7071,7076,7078,7081,7085,7096,7117,7125,7138,7148, - 7154,7160,7163,7166,7192,7194,7215,7225,7238,7243,7247,7249,7261, - 7268,7274,7280,7284,7295,7308,7312,7317,7320,7323,7332,7343,7345, - 7349,7354,7363,7368,7376,7386,7394,7398,7401,7408,7416,7420,7427, - 7435,7437,7446,7449,7461,7470,7477,7486,7496,7501,7505,7507,7510, - 7515,7520,7528,7536,7539,7546,7554,7562,7570,7587,7594,7602,7619, - 7625,7631,7642,7648,7653,7661,7666,7669,7678,7685,7690,7694,7699, - 7705,7710,7718,7773,7780,7786,7788,7790,7792,7798,7802,7806,7817, - 7820,7824,7828,7832,7835,7838,7841,7850,7855,7859,7892,7902,7906, - 7912,7917,7926,7934,7945,7953,7962,7971,7976,7980,7990,7995,8003, - 8008,8011,8018,8024,8032,8040,8043,8050,8052,8055,8061,8070,8074, - 8088,8091,8093,8099,8109,8111,8113,8121,8124,8127,8137,8145,8151, - 8157,8164,8168,8172,8175,8178,8184,8191,8194,8202,8204,8213,8218, - 8220,8227,8233,8236,8248,8255,8257,8261,8267,8272,8276,8279,8282, - 8291,8294,8297,8301,8305,8307,8310,8313,8319,8326,8333,8339,8341, - 8345,8350,8368,8373,8375,8384,8391,8395,8407,8410,8423,8426,8430, - 8439,8446,8451,8456,8460,8463,8466,8469,8472,8475,8478,8481 + 821,1,0,0,0,7707,7712,3,820,410,0,7708,7709,5,6,0,0,7709,7711,3, + 820,410,0,7710,7708,1,0,0,0,7711,7714,1,0,0,0,7712,7710,1,0,0,0, + 7712,7713,1,0,0,0,7713,823,1,0,0,0,7714,7712,1,0,0,0,7715,7718,3, + 832,416,0,7716,7718,3,836,418,0,7717,7715,1,0,0,0,7717,7716,1,0, + 0,0,7718,825,1,0,0,0,7719,7722,3,832,416,0,7720,7722,3,838,419,0, + 7721,7719,1,0,0,0,7721,7720,1,0,0,0,7722,827,1,0,0,0,7723,7727,3, + 832,416,0,7724,7727,3,836,418,0,7725,7727,3,838,419,0,7726,7723, + 1,0,0,0,7726,7724,1,0,0,0,7726,7725,1,0,0,0,7727,829,1,0,0,0,7728, + 7733,3,832,416,0,7729,7733,3,836,418,0,7730,7733,3,838,419,0,7731, + 7733,3,840,420,0,7732,7728,1,0,0,0,7732,7729,1,0,0,0,7732,7730,1, + 0,0,0,7732,7731,1,0,0,0,7733,831,1,0,0,0,7734,7737,5,552,0,0,7735, + 7736,5,487,0,0,7736,7738,3,816,408,0,7737,7735,1,0,0,0,7737,7738, + 1,0,0,0,7738,7746,1,0,0,0,7739,7746,3,814,407,0,7740,7746,5,553, + 0,0,7741,7746,5,557,0,0,7742,7746,5,577,0,0,7743,7746,5,578,0,0, + 7744,7746,3,834,417,0,7745,7734,1,0,0,0,7745,7739,1,0,0,0,7745,7740, + 1,0,0,0,7745,7741,1,0,0,0,7745,7742,1,0,0,0,7745,7743,1,0,0,0,7745, + 7744,1,0,0,0,7746,833,1,0,0,0,7747,7748,7,110,0,0,7748,835,1,0,0, + 0,7749,7801,5,387,0,0,7750,7801,5,388,0,0,7751,7801,3,658,329,0, + 7752,7801,5,390,0,0,7753,7801,5,391,0,0,7754,7801,3,660,330,0,7755, + 7801,5,393,0,0,7756,7801,5,394,0,0,7757,7801,5,395,0,0,7758,7801, + 5,396,0,0,7759,7801,5,397,0,0,7760,7801,5,398,0,0,7761,7801,5,399, + 0,0,7762,7801,5,470,0,0,7763,7801,5,400,0,0,7764,7801,5,401,0,0, + 7765,7801,5,402,0,0,7766,7801,5,403,0,0,7767,7801,5,404,0,0,7768, + 7801,5,405,0,0,7769,7801,5,406,0,0,7770,7801,5,407,0,0,7771,7801, + 5,489,0,0,7772,7801,5,408,0,0,7773,7801,3,654,327,0,7774,7801,5, + 453,0,0,7775,7801,5,410,0,0,7776,7801,5,411,0,0,7777,7801,5,412, + 0,0,7778,7801,5,413,0,0,7779,7801,5,414,0,0,7780,7801,5,415,0,0, + 7781,7801,5,416,0,0,7782,7801,5,417,0,0,7783,7801,5,418,0,0,7784, + 7801,5,419,0,0,7785,7801,5,420,0,0,7786,7801,5,421,0,0,7787,7801, + 5,422,0,0,7788,7801,5,423,0,0,7789,7801,5,424,0,0,7790,7801,5,425, + 0,0,7791,7801,5,426,0,0,7792,7801,5,427,0,0,7793,7801,5,428,0,0, + 7794,7801,5,476,0,0,7795,7801,5,429,0,0,7796,7801,5,430,0,0,7797, + 7801,5,431,0,0,7798,7801,5,432,0,0,7799,7801,5,474,0,0,7800,7749, + 1,0,0,0,7800,7750,1,0,0,0,7800,7751,1,0,0,0,7800,7752,1,0,0,0,7800, + 7753,1,0,0,0,7800,7754,1,0,0,0,7800,7755,1,0,0,0,7800,7756,1,0,0, + 0,7800,7757,1,0,0,0,7800,7758,1,0,0,0,7800,7759,1,0,0,0,7800,7760, + 1,0,0,0,7800,7761,1,0,0,0,7800,7762,1,0,0,0,7800,7763,1,0,0,0,7800, + 7764,1,0,0,0,7800,7765,1,0,0,0,7800,7766,1,0,0,0,7800,7767,1,0,0, + 0,7800,7768,1,0,0,0,7800,7769,1,0,0,0,7800,7770,1,0,0,0,7800,7771, + 1,0,0,0,7800,7772,1,0,0,0,7800,7773,1,0,0,0,7800,7774,1,0,0,0,7800, + 7775,1,0,0,0,7800,7776,1,0,0,0,7800,7777,1,0,0,0,7800,7778,1,0,0, + 0,7800,7779,1,0,0,0,7800,7780,1,0,0,0,7800,7781,1,0,0,0,7800,7782, + 1,0,0,0,7800,7783,1,0,0,0,7800,7784,1,0,0,0,7800,7785,1,0,0,0,7800, + 7786,1,0,0,0,7800,7787,1,0,0,0,7800,7788,1,0,0,0,7800,7789,1,0,0, + 0,7800,7790,1,0,0,0,7800,7791,1,0,0,0,7800,7792,1,0,0,0,7800,7793, + 1,0,0,0,7800,7794,1,0,0,0,7800,7795,1,0,0,0,7800,7796,1,0,0,0,7800, + 7797,1,0,0,0,7800,7798,1,0,0,0,7800,7799,1,0,0,0,7801,837,1,0,0, + 0,7802,7803,7,111,0,0,7803,839,1,0,0,0,7804,7805,7,112,0,0,7805, + 841,1,0,0,0,7806,7808,3,844,422,0,7807,7806,1,0,0,0,7807,7808,1, + 0,0,0,7808,7819,1,0,0,0,7809,7817,5,178,0,0,7810,7814,3,846,423, + 0,7811,7814,5,178,0,0,7812,7814,3,844,422,0,7813,7810,1,0,0,0,7813, + 7811,1,0,0,0,7813,7812,1,0,0,0,7814,7815,1,0,0,0,7815,7813,1,0,0, + 0,7815,7816,1,0,0,0,7816,7818,1,0,0,0,7817,7813,1,0,0,0,7817,7818, + 1,0,0,0,7818,7820,1,0,0,0,7819,7809,1,0,0,0,7819,7820,1,0,0,0,7820, + 7821,1,0,0,0,7821,7825,5,146,0,0,7822,7824,3,852,426,0,7823,7822, + 1,0,0,0,7824,7827,1,0,0,0,7825,7823,1,0,0,0,7825,7826,1,0,0,0,7826, + 7829,1,0,0,0,7827,7825,1,0,0,0,7828,7830,3,930,465,0,7829,7828,1, + 0,0,0,7829,7830,1,0,0,0,7830,7831,1,0,0,0,7831,7833,5,454,0,0,7832, + 7834,3,934,467,0,7833,7832,1,0,0,0,7833,7834,1,0,0,0,7834,843,1, + 0,0,0,7835,7836,5,18,0,0,7836,7837,3,934,467,0,7837,7838,5,19,0, + 0,7838,845,1,0,0,0,7839,7886,3,934,467,0,7840,7841,5,496,0,0,7841, + 7844,5,62,0,0,7842,7845,5,28,0,0,7843,7845,3,824,412,0,7844,7842, + 1,0,0,0,7844,7843,1,0,0,0,7845,7887,1,0,0,0,7846,7848,5,497,0,0, + 7847,7846,1,0,0,0,7847,7848,1,0,0,0,7848,7849,1,0,0,0,7849,7851, + 3,648,324,0,7850,7852,3,90,45,0,7851,7850,1,0,0,0,7851,7852,1,0, + 0,0,7852,7855,1,0,0,0,7853,7854,5,77,0,0,7854,7856,5,78,0,0,7855, + 7853,1,0,0,0,7855,7856,1,0,0,0,7856,7862,1,0,0,0,7857,7860,3,850, + 425,0,7858,7860,5,53,0,0,7859,7857,1,0,0,0,7859,7858,1,0,0,0,7860, + 7861,1,0,0,0,7861,7863,3,936,468,0,7862,7859,1,0,0,0,7862,7863,1, + 0,0,0,7863,7887,1,0,0,0,7864,7866,5,269,0,0,7865,7864,1,0,0,0,7865, + 7866,1,0,0,0,7866,7867,1,0,0,0,7867,7869,5,324,0,0,7868,7865,1,0, + 0,0,7868,7869,1,0,0,0,7869,7870,1,0,0,0,7870,7882,5,172,0,0,7871, + 7872,5,2,0,0,7872,7877,3,848,424,0,7873,7874,5,6,0,0,7874,7876,3, + 848,424,0,7875,7873,1,0,0,0,7876,7879,1,0,0,0,7877,7875,1,0,0,0, + 7877,7878,1,0,0,0,7878,7880,1,0,0,0,7879,7877,1,0,0,0,7880,7881, + 5,3,0,0,7881,7883,1,0,0,0,7882,7871,1,0,0,0,7882,7883,1,0,0,0,7883, + 7884,1,0,0,0,7884,7885,7,113,0,0,7885,7887,3,554,277,0,7886,7840, + 1,0,0,0,7886,7847,1,0,0,0,7886,7868,1,0,0,0,7887,7888,1,0,0,0,7888, + 7889,5,7,0,0,7889,847,1,0,0,0,7890,7891,3,934,467,0,7891,7892,3, + 648,324,0,7892,849,1,0,0,0,7893,7894,7,114,0,0,7894,851,1,0,0,0, + 7895,7896,3,842,421,0,7896,7897,5,7,0,0,7897,7920,1,0,0,0,7898,7920, + 3,880,440,0,7899,7920,3,882,441,0,7900,7920,3,858,429,0,7901,7920, + 3,866,433,0,7902,7920,3,870,435,0,7903,7920,3,872,436,0,7904,7920, + 3,876,438,0,7905,7920,3,878,439,0,7906,7920,3,886,443,0,7907,7920, + 3,890,445,0,7908,7920,3,892,446,0,7909,7920,3,854,427,0,7910,7920, + 3,856,428,0,7911,7920,3,860,430,0,7912,7920,3,896,448,0,7913,7920, + 3,900,450,0,7914,7920,3,904,452,0,7915,7920,3,920,460,0,7916,7920, + 3,922,461,0,7917,7920,3,924,462,0,7918,7920,3,926,463,0,7919,7895, + 1,0,0,0,7919,7898,1,0,0,0,7919,7899,1,0,0,0,7919,7900,1,0,0,0,7919, + 7901,1,0,0,0,7919,7902,1,0,0,0,7919,7903,1,0,0,0,7919,7904,1,0,0, + 0,7919,7905,1,0,0,0,7919,7906,1,0,0,0,7919,7907,1,0,0,0,7919,7908, + 1,0,0,0,7919,7909,1,0,0,0,7919,7910,1,0,0,0,7919,7911,1,0,0,0,7919, + 7912,1,0,0,0,7919,7913,1,0,0,0,7919,7914,1,0,0,0,7919,7915,1,0,0, + 0,7919,7916,1,0,0,0,7919,7917,1,0,0,0,7919,7918,1,0,0,0,7920,853, + 1,0,0,0,7921,7922,5,498,0,0,7922,7923,3,936,468,0,7923,7924,5,7, + 0,0,7924,855,1,0,0,0,7925,7926,5,433,0,0,7926,7933,3,934,467,0,7927, + 7929,5,2,0,0,7928,7930,3,728,364,0,7929,7928,1,0,0,0,7929,7930,1, + 0,0,0,7930,7931,1,0,0,0,7931,7932,5,3,0,0,7932,7934,5,7,0,0,7933, + 7927,1,0,0,0,7933,7934,1,0,0,0,7934,7945,1,0,0,0,7935,7936,5,57, + 0,0,7936,7937,3,934,467,0,7937,7939,5,2,0,0,7938,7940,3,728,364, + 0,7939,7938,1,0,0,0,7939,7940,1,0,0,0,7940,7941,1,0,0,0,7941,7942, + 5,3,0,0,7942,7943,5,7,0,0,7943,7945,1,0,0,0,7944,7925,1,0,0,0,7944, + 7935,1,0,0,0,7945,857,1,0,0,0,7946,7947,3,864,432,0,7947,7948,3, + 850,425,0,7948,7949,3,936,468,0,7949,7950,5,7,0,0,7950,859,1,0,0, + 0,7951,7953,5,499,0,0,7952,7954,7,115,0,0,7953,7952,1,0,0,0,7953, + 7954,1,0,0,0,7954,7955,1,0,0,0,7955,7956,5,500,0,0,7956,7961,3,862, + 431,0,7957,7958,5,6,0,0,7958,7960,3,862,431,0,7959,7957,1,0,0,0, + 7960,7963,1,0,0,0,7961,7959,1,0,0,0,7961,7962,1,0,0,0,7962,7964, + 1,0,0,0,7963,7961,1,0,0,0,7964,7965,5,7,0,0,7965,861,1,0,0,0,7966, + 7967,3,864,432,0,7967,7968,3,850,425,0,7968,7969,3,824,412,0,7969, + 863,1,0,0,0,7970,7973,3,310,155,0,7971,7973,5,28,0,0,7972,7970,1, + 0,0,0,7972,7971,1,0,0,0,7973,7980,1,0,0,0,7974,7975,5,4,0,0,7975, + 7976,3,670,335,0,7976,7977,5,5,0,0,7977,7979,1,0,0,0,7978,7974,1, + 0,0,0,7979,7982,1,0,0,0,7980,7978,1,0,0,0,7980,7981,1,0,0,0,7981, + 865,1,0,0,0,7982,7980,1,0,0,0,7983,7984,5,220,0,0,7984,7985,3,936, + 468,0,7985,7989,5,93,0,0,7986,7988,3,852,426,0,7987,7986,1,0,0,0, + 7988,7991,1,0,0,0,7989,7987,1,0,0,0,7989,7990,1,0,0,0,7990,8003, + 1,0,0,0,7991,7989,1,0,0,0,7992,7993,5,502,0,0,7993,7994,3,670,335, + 0,7994,7998,5,93,0,0,7995,7997,3,852,426,0,7996,7995,1,0,0,0,7997, + 8000,1,0,0,0,7998,7996,1,0,0,0,7998,7999,1,0,0,0,7999,8002,1,0,0, + 0,8000,7998,1,0,0,0,8001,7992,1,0,0,0,8002,8005,1,0,0,0,8003,8001, + 1,0,0,0,8003,8004,1,0,0,0,8004,8007,1,0,0,0,8005,8003,1,0,0,0,8006, + 8008,3,868,434,0,8007,8006,1,0,0,0,8007,8008,1,0,0,0,8008,8009,1, + 0,0,0,8009,8010,5,454,0,0,8010,8011,5,220,0,0,8011,8012,5,7,0,0, + 8012,867,1,0,0,0,8013,8017,5,58,0,0,8014,8016,3,852,426,0,8015,8014, + 1,0,0,0,8016,8019,1,0,0,0,8017,8015,1,0,0,0,8017,8018,1,0,0,0,8018, + 869,1,0,0,0,8019,8017,1,0,0,0,8020,8022,5,40,0,0,8021,8023,3,936, + 468,0,8022,8021,1,0,0,0,8022,8023,1,0,0,0,8023,8033,1,0,0,0,8024, + 8025,5,102,0,0,8025,8026,3,728,364,0,8026,8030,5,93,0,0,8027,8029, + 3,852,426,0,8028,8027,1,0,0,0,8029,8032,1,0,0,0,8030,8028,1,0,0, + 0,8030,8031,1,0,0,0,8031,8034,1,0,0,0,8032,8030,1,0,0,0,8033,8024, + 1,0,0,0,8034,8035,1,0,0,0,8035,8033,1,0,0,0,8035,8036,1,0,0,0,8036, + 8038,1,0,0,0,8037,8039,3,868,434,0,8038,8037,1,0,0,0,8038,8039,1, + 0,0,0,8039,8040,1,0,0,0,8040,8041,5,454,0,0,8041,8042,5,40,0,0,8042, + 8043,5,7,0,0,8043,871,1,0,0,0,8044,8046,3,844,422,0,8045,8044,1, + 0,0,0,8045,8046,1,0,0,0,8046,8051,1,0,0,0,8047,8048,5,503,0,0,8048, + 8052,3,670,335,0,8049,8050,5,62,0,0,8050,8052,3,874,437,0,8051,8047, + 1,0,0,0,8051,8049,1,0,0,0,8051,8052,1,0,0,0,8052,8053,1,0,0,0,8053, + 8054,3,888,444,0,8054,873,1,0,0,0,8055,8056,3,308,154,0,8056,8079, + 5,68,0,0,8057,8059,3,824,412,0,8058,8060,3,528,264,0,8059,8058,1, + 0,0,0,8059,8060,1,0,0,0,8060,8080,1,0,0,0,8061,8080,3,554,277,0, + 8062,8080,3,514,257,0,8063,8064,5,202,0,0,8064,8067,3,670,335,0, + 8065,8066,5,100,0,0,8066,8068,3,728,364,0,8067,8065,1,0,0,0,8067, + 8068,1,0,0,0,8068,8080,1,0,0,0,8069,8071,5,504,0,0,8070,8069,1,0, + 0,0,8070,8071,1,0,0,0,8071,8072,1,0,0,0,8072,8073,3,670,335,0,8073, + 8074,5,24,0,0,8074,8077,3,670,335,0,8075,8076,5,147,0,0,8076,8078, + 3,670,335,0,8077,8075,1,0,0,0,8077,8078,1,0,0,0,8078,8080,1,0,0, + 0,8079,8057,1,0,0,0,8079,8061,1,0,0,0,8079,8062,1,0,0,0,8079,8063, + 1,0,0,0,8079,8070,1,0,0,0,8080,875,1,0,0,0,8081,8083,3,844,422,0, + 8082,8081,1,0,0,0,8082,8083,1,0,0,0,8083,8084,1,0,0,0,8084,8085, + 5,505,0,0,8085,8088,3,308,154,0,8086,8087,5,506,0,0,8087,8089,5, + 574,0,0,8088,8086,1,0,0,0,8088,8089,1,0,0,0,8089,8090,1,0,0,0,8090, + 8091,5,68,0,0,8091,8092,5,35,0,0,8092,8093,3,670,335,0,8093,8094, + 3,888,444,0,8094,877,1,0,0,0,8095,8097,7,116,0,0,8096,8098,3,934, + 467,0,8097,8096,1,0,0,0,8097,8098,1,0,0,0,8098,8101,1,0,0,0,8099, + 8100,5,102,0,0,8100,8102,3,936,468,0,8101,8099,1,0,0,0,8101,8102, + 1,0,0,0,8102,8103,1,0,0,0,8103,8104,5,7,0,0,8104,879,1,0,0,0,8105, + 8120,5,508,0,0,8106,8107,5,268,0,0,8107,8121,3,936,468,0,8108,8115, + 5,509,0,0,8109,8110,5,202,0,0,8110,8111,3,670,335,0,8111,8112,5, + 100,0,0,8112,8113,3,728,364,0,8113,8116,1,0,0,0,8114,8116,3,554, + 277,0,8115,8109,1,0,0,0,8115,8114,1,0,0,0,8116,8121,1,0,0,0,8117, + 8119,3,936,468,0,8118,8117,1,0,0,0,8118,8119,1,0,0,0,8119,8121,1, + 0,0,0,8120,8106,1,0,0,0,8120,8108,1,0,0,0,8120,8118,1,0,0,0,8121, + 8122,1,0,0,0,8122,8123,5,7,0,0,8123,881,1,0,0,0,8124,8154,5,510, + 0,0,8125,8127,7,117,0,0,8126,8125,1,0,0,0,8126,8127,1,0,0,0,8127, + 8140,1,0,0,0,8128,8141,3,832,416,0,8129,8130,5,511,0,0,8130,8141, + 3,814,407,0,8131,8138,3,814,407,0,8132,8133,5,6,0,0,8133,8135,3, + 670,335,0,8134,8132,1,0,0,0,8135,8136,1,0,0,0,8136,8134,1,0,0,0, + 8136,8137,1,0,0,0,8137,8139,1,0,0,0,8138,8134,1,0,0,0,8138,8139, + 1,0,0,0,8139,8141,1,0,0,0,8140,8128,1,0,0,0,8140,8129,1,0,0,0,8140, + 8131,1,0,0,0,8140,8141,1,0,0,0,8141,8151,1,0,0,0,8142,8143,5,100, + 0,0,8143,8148,3,884,442,0,8144,8145,5,6,0,0,8145,8147,3,884,442, + 0,8146,8144,1,0,0,0,8147,8150,1,0,0,0,8148,8146,1,0,0,0,8148,8149, + 1,0,0,0,8149,8152,1,0,0,0,8150,8148,1,0,0,0,8151,8142,1,0,0,0,8151, + 8152,1,0,0,0,8152,8153,1,0,0,0,8153,8155,5,7,0,0,8154,8126,1,0,0, + 0,8154,8155,1,0,0,0,8155,883,1,0,0,0,8156,8157,3,832,416,0,8157, + 8158,5,10,0,0,8158,8159,3,670,335,0,8159,885,1,0,0,0,8160,8161,5, + 518,0,0,8161,8164,3,936,468,0,8162,8163,5,6,0,0,8163,8165,3,936, + 468,0,8164,8162,1,0,0,0,8164,8165,1,0,0,0,8165,8166,1,0,0,0,8166, + 8167,5,7,0,0,8167,887,1,0,0,0,8168,8172,5,519,0,0,8169,8171,3,852, + 426,0,8170,8169,1,0,0,0,8171,8174,1,0,0,0,8172,8170,1,0,0,0,8172, + 8173,1,0,0,0,8173,8175,1,0,0,0,8174,8172,1,0,0,0,8175,8176,5,454, + 0,0,8176,8178,5,519,0,0,8177,8179,3,934,467,0,8178,8177,1,0,0,0, + 8178,8179,1,0,0,0,8179,8180,1,0,0,0,8180,8181,5,7,0,0,8181,889,1, + 0,0,0,8182,8184,3,4,2,0,8183,8185,3,894,447,0,8184,8183,1,0,0,0, + 8184,8185,1,0,0,0,8185,8186,1,0,0,0,8186,8187,5,7,0,0,8187,891,1, + 0,0,0,8188,8189,5,202,0,0,8189,8205,3,670,335,0,8190,8192,3,894, + 447,0,8191,8190,1,0,0,0,8191,8192,1,0,0,0,8192,8195,1,0,0,0,8193, + 8194,5,100,0,0,8194,8196,3,728,364,0,8195,8193,1,0,0,0,8195,8196, + 1,0,0,0,8196,8206,1,0,0,0,8197,8198,5,100,0,0,8198,8200,3,728,364, + 0,8199,8197,1,0,0,0,8199,8200,1,0,0,0,8200,8202,1,0,0,0,8201,8203, + 3,894,447,0,8202,8201,1,0,0,0,8202,8203,1,0,0,0,8203,8206,1,0,0, + 0,8204,8206,1,0,0,0,8205,8191,1,0,0,0,8205,8199,1,0,0,0,8205,8204, + 1,0,0,0,8206,8207,1,0,0,0,8207,8208,5,7,0,0,8208,893,1,0,0,0,8209, + 8211,5,71,0,0,8210,8212,5,346,0,0,8211,8210,1,0,0,0,8211,8212,1, + 0,0,0,8212,8213,1,0,0,0,8213,8214,3,728,364,0,8214,895,1,0,0,0,8215, + 8247,5,520,0,0,8216,8221,3,928,464,0,8217,8219,5,269,0,0,8218,8217, + 1,0,0,0,8218,8219,1,0,0,0,8219,8220,1,0,0,0,8220,8222,5,324,0,0, + 8221,8218,1,0,0,0,8221,8222,1,0,0,0,8222,8223,1,0,0,0,8223,8231, + 5,62,0,0,8224,8232,3,554,277,0,8225,8226,5,202,0,0,8226,8229,3,936, + 468,0,8227,8228,5,100,0,0,8228,8230,3,728,364,0,8229,8227,1,0,0, + 0,8229,8230,1,0,0,0,8230,8232,1,0,0,0,8231,8224,1,0,0,0,8231,8225, + 1,0,0,0,8232,8248,1,0,0,0,8233,8245,3,824,412,0,8234,8235,5,2,0, + 0,8235,8240,3,898,449,0,8236,8237,5,6,0,0,8237,8239,3,898,449,0, + 8238,8236,1,0,0,0,8239,8242,1,0,0,0,8240,8238,1,0,0,0,8240,8241, + 1,0,0,0,8241,8243,1,0,0,0,8242,8240,1,0,0,0,8243,8244,5,3,0,0,8244, + 8246,1,0,0,0,8245,8234,1,0,0,0,8245,8246,1,0,0,0,8246,8248,1,0,0, + 0,8247,8216,1,0,0,0,8247,8233,1,0,0,0,8248,8249,1,0,0,0,8249,8250, + 5,7,0,0,8250,897,1,0,0,0,8251,8252,3,824,412,0,8252,8253,5,20,0, + 0,8253,8255,1,0,0,0,8254,8251,1,0,0,0,8254,8255,1,0,0,0,8255,8256, + 1,0,0,0,8256,8257,3,670,335,0,8257,899,1,0,0,0,8258,8260,5,61,0, + 0,8259,8261,3,902,451,0,8260,8259,1,0,0,0,8260,8261,1,0,0,0,8261, + 8263,1,0,0,0,8262,8264,3,326,163,0,8263,8262,1,0,0,0,8263,8264,1, + 0,0,0,8264,8265,1,0,0,0,8265,8266,3,928,464,0,8266,8267,5,71,0,0, + 8267,8268,3,728,364,0,8268,8269,5,7,0,0,8269,901,1,0,0,0,8270,8285, + 5,268,0,0,8271,8285,5,293,0,0,8272,8285,5,207,0,0,8273,8285,5,249, + 0,0,8274,8276,7,51,0,0,8275,8274,1,0,0,0,8275,8276,1,0,0,0,8276, + 8277,1,0,0,0,8277,8285,3,670,335,0,8278,8285,5,30,0,0,8279,8282, + 7,118,0,0,8280,8283,3,670,335,0,8281,8283,5,30,0,0,8282,8280,1,0, + 0,0,8282,8281,1,0,0,0,8282,8283,1,0,0,0,8283,8285,1,0,0,0,8284,8270, + 1,0,0,0,8284,8271,1,0,0,0,8284,8272,1,0,0,0,8284,8273,1,0,0,0,8284, + 8275,1,0,0,0,8284,8278,1,0,0,0,8284,8279,1,0,0,0,8285,903,1,0,0, + 0,8286,8288,5,265,0,0,8287,8289,3,902,451,0,8288,8287,1,0,0,0,8288, + 8289,1,0,0,0,8289,8290,1,0,0,0,8290,8291,3,928,464,0,8291,8292,5, + 7,0,0,8292,905,1,0,0,0,8293,8295,3,566,283,0,8294,8293,1,0,0,0,8294, + 8295,1,0,0,0,8295,8296,1,0,0,0,8296,8297,5,525,0,0,8297,8299,5,71, + 0,0,8298,8300,5,81,0,0,8299,8298,1,0,0,0,8299,8300,1,0,0,0,8300, + 8301,1,0,0,0,8301,8303,3,778,389,0,8302,8304,5,9,0,0,8303,8302,1, + 0,0,0,8303,8304,1,0,0,0,8304,8309,1,0,0,0,8305,8307,5,36,0,0,8306, + 8305,1,0,0,0,8306,8307,1,0,0,0,8307,8308,1,0,0,0,8308,8310,3,824, + 412,0,8309,8306,1,0,0,0,8309,8310,1,0,0,0,8310,8311,1,0,0,0,8311, + 8312,5,100,0,0,8312,8313,3,908,454,0,8313,8314,5,80,0,0,8314,8316, + 3,670,335,0,8315,8317,3,910,455,0,8316,8315,1,0,0,0,8317,8318,1, + 0,0,0,8318,8316,1,0,0,0,8318,8319,1,0,0,0,8319,8321,1,0,0,0,8320, + 8322,3,540,270,0,8321,8320,1,0,0,0,8321,8322,1,0,0,0,8322,907,1, + 0,0,0,8323,8325,5,81,0,0,8324,8323,1,0,0,0,8324,8325,1,0,0,0,8325, + 8326,1,0,0,0,8326,8328,3,778,389,0,8327,8329,5,9,0,0,8328,8327,1, + 0,0,0,8328,8329,1,0,0,0,8329,8335,1,0,0,0,8330,8333,3,558,279,0, + 8331,8333,3,602,301,0,8332,8330,1,0,0,0,8332,8331,1,0,0,0,8333,8335, + 1,0,0,0,8334,8324,1,0,0,0,8334,8332,1,0,0,0,8335,8340,1,0,0,0,8336, + 8338,5,36,0,0,8337,8336,1,0,0,0,8337,8338,1,0,0,0,8338,8339,1,0, + 0,0,8339,8341,3,824,412,0,8340,8337,1,0,0,0,8340,8341,1,0,0,0,8341, + 909,1,0,0,0,8342,8343,5,102,0,0,8343,8346,5,526,0,0,8344,8345,5, + 33,0,0,8345,8347,3,670,335,0,8346,8344,1,0,0,0,8346,8347,1,0,0,0, + 8347,8348,1,0,0,0,8348,8353,5,93,0,0,8349,8354,3,914,457,0,8350, + 8354,5,182,0,0,8351,8352,5,57,0,0,8352,8354,5,270,0,0,8353,8349, + 1,0,0,0,8353,8350,1,0,0,0,8353,8351,1,0,0,0,8354,8369,1,0,0,0,8355, + 8356,5,102,0,0,8356,8357,5,77,0,0,8357,8360,5,526,0,0,8358,8359, + 5,33,0,0,8359,8361,3,670,335,0,8360,8358,1,0,0,0,8360,8361,1,0,0, + 0,8361,8362,1,0,0,0,8362,8366,5,93,0,0,8363,8367,3,912,456,0,8364, + 8365,5,57,0,0,8365,8367,5,270,0,0,8366,8363,1,0,0,0,8366,8364,1, + 0,0,0,8367,8369,1,0,0,0,8368,8342,1,0,0,0,8368,8355,1,0,0,0,8369, + 911,1,0,0,0,8370,8372,5,241,0,0,8371,8373,3,138,69,0,8372,8371,1, + 0,0,0,8372,8373,1,0,0,0,8373,8377,1,0,0,0,8374,8375,5,463,0,0,8375, + 8376,7,77,0,0,8376,8378,5,450,0,0,8377,8374,1,0,0,0,8377,8378,1, + 0,0,0,8378,8379,1,0,0,0,8379,8380,3,916,458,0,8380,913,1,0,0,0,8381, + 8382,5,369,0,0,8382,8400,5,333,0,0,8383,8384,3,804,402,0,8384,8385, + 5,10,0,0,8385,8386,3,918,459,0,8386,8401,1,0,0,0,8387,8388,3,138, + 69,0,8388,8389,5,10,0,0,8389,8390,5,2,0,0,8390,8395,3,918,459,0, + 8391,8392,5,6,0,0,8392,8394,3,918,459,0,8393,8391,1,0,0,0,8394,8397, + 1,0,0,0,8395,8393,1,0,0,0,8395,8396,1,0,0,0,8396,8398,1,0,0,0,8397, + 8395,1,0,0,0,8398,8399,5,3,0,0,8399,8401,1,0,0,0,8400,8383,1,0,0, + 0,8400,8387,1,0,0,0,8401,8402,1,0,0,0,8402,8400,1,0,0,0,8402,8403, + 1,0,0,0,8403,915,1,0,0,0,8404,8405,5,422,0,0,8405,8406,5,2,0,0,8406, + 8411,3,918,459,0,8407,8408,5,6,0,0,8408,8410,3,918,459,0,8409,8407, + 1,0,0,0,8410,8413,1,0,0,0,8411,8409,1,0,0,0,8411,8412,1,0,0,0,8412, + 8414,1,0,0,0,8413,8411,1,0,0,0,8414,8415,5,3,0,0,8415,8419,1,0,0, + 0,8416,8417,5,53,0,0,8417,8419,5,422,0,0,8418,8404,1,0,0,0,8418, + 8416,1,0,0,0,8419,917,1,0,0,0,8420,8423,3,582,291,0,8421,8423,5, + 53,0,0,8422,8420,1,0,0,0,8422,8421,1,0,0,0,8423,919,1,0,0,0,8424, + 8425,5,157,0,0,8425,8426,3,928,464,0,8426,8427,5,7,0,0,8427,921, + 1,0,0,0,8428,8429,5,78,0,0,8429,8430,5,7,0,0,8430,923,1,0,0,0,8431, + 8437,7,68,0,0,8432,8434,5,33,0,0,8433,8435,5,269,0,0,8434,8433,1, + 0,0,0,8434,8435,1,0,0,0,8435,8436,1,0,0,0,8436,8438,5,153,0,0,8437, + 8432,1,0,0,0,8437,8438,1,0,0,0,8438,8439,1,0,0,0,8439,8440,5,7,0, + 0,8440,925,1,0,0,0,8441,8442,5,333,0,0,8442,8443,3,310,155,0,8443, + 8444,5,94,0,0,8444,8445,5,53,0,0,8445,8446,5,7,0,0,8446,8454,1,0, + 0,0,8447,8450,5,313,0,0,8448,8451,3,310,155,0,8449,8451,5,30,0,0, + 8450,8448,1,0,0,0,8450,8449,1,0,0,0,8451,8452,1,0,0,0,8452,8454, + 5,7,0,0,8453,8441,1,0,0,0,8453,8447,1,0,0,0,8454,927,1,0,0,0,8455, + 8458,3,824,412,0,8456,8458,5,28,0,0,8457,8455,1,0,0,0,8457,8456, + 1,0,0,0,8458,929,1,0,0,0,8459,8476,5,517,0,0,8460,8461,5,102,0,0, + 8461,8466,3,932,466,0,8462,8463,5,82,0,0,8463,8465,3,932,466,0,8464, + 8462,1,0,0,0,8465,8468,1,0,0,0,8466,8464,1,0,0,0,8466,8467,1,0,0, + 0,8467,8469,1,0,0,0,8468,8466,1,0,0,0,8469,8473,5,93,0,0,8470,8472, + 3,852,426,0,8471,8470,1,0,0,0,8472,8475,1,0,0,0,8473,8471,1,0,0, + 0,8473,8474,1,0,0,0,8474,8477,1,0,0,0,8475,8473,1,0,0,0,8476,8460, + 1,0,0,0,8477,8478,1,0,0,0,8478,8476,1,0,0,0,8478,8479,1,0,0,0,8479, + 931,1,0,0,0,8480,8484,3,934,467,0,8481,8482,5,511,0,0,8482,8484, + 3,814,407,0,8483,8480,1,0,0,0,8483,8481,1,0,0,0,8484,933,1,0,0,0, + 8485,8488,3,824,412,0,8486,8488,3,834,417,0,8487,8485,1,0,0,0,8487, + 8486,1,0,0,0,8488,935,1,0,0,0,8489,8491,3,758,379,0,8490,8489,1, + 0,0,0,8490,8491,1,0,0,0,8491,8493,1,0,0,0,8492,8494,3,574,287,0, + 8493,8492,1,0,0,0,8493,8494,1,0,0,0,8494,8496,1,0,0,0,8495,8497, + 3,604,302,0,8496,8495,1,0,0,0,8496,8497,1,0,0,0,8497,8499,1,0,0, + 0,8498,8500,3,634,317,0,8499,8498,1,0,0,0,8499,8500,1,0,0,0,8500, + 8502,1,0,0,0,8501,8503,3,594,297,0,8502,8501,1,0,0,0,8502,8503,1, + 0,0,0,8503,8505,1,0,0,0,8504,8506,3,700,350,0,8505,8504,1,0,0,0, + 8505,8506,1,0,0,0,8506,8508,1,0,0,0,8507,8509,3,698,349,0,8508,8507, + 1,0,0,0,8508,8509,1,0,0,0,8509,937,1,0,0,0,1193,941,948,1068,1070, + 1079,1084,1090,1125,1135,1141,1146,1153,1158,1165,1176,1184,1188, + 1200,1206,1212,1216,1221,1225,1238,1248,1250,1256,1261,1274,1277, + 1282,1287,1298,1302,1314,1318,1321,1325,1337,1355,1362,1370,1375, + 1382,1390,1396,1404,1412,1416,1430,1435,1440,1452,1458,1470,1475, + 1485,1491,1496,1505,1512,1517,1522,1532,1537,1542,1549,1553,1567, + 1573,1579,1584,1591,1600,1609,1618,1627,1631,1643,1651,1661,1681, + 1686,1689,1696,1699,1703,1707,1710,1715,1720,1724,1733,1739,1743, + 1752,1755,1761,1770,1782,1786,1790,1795,1798,1804,1806,1808,1812, + 1818,1822,1827,1832,1836,1839,1846,1859,1872,1897,1907,1914,1919, + 1923,1930,1935,1938,1940,1945,1949,1953,1957,1962,1965,1969,1972, + 1976,1984,1989,1992,1996,2002,2011,2015,2025,2030,2034,2038,2040, + 2042,2049,2054,2058,2063,2075,2080,2084,2088,2093,2097,2100,2103, + 2106,2109,2112,2117,2120,2123,2126,2129,2132,2138,2142,2145,2148, + 2151,2154,2156,2163,2171,2181,2186,2196,2199,2204,2209,2214,2217, + 2222,2231,2233,2237,2240,2244,2249,2254,2258,2261,2265,2268,2273, + 2276,2281,2284,2288,2291,2294,2299,2302,2310,2322,2326,2333,2338, + 2341,2344,2347,2352,2363,2369,2373,2376,2379,2384,2391,2394,2398, + 2406,2411,2414,2417,2424,2429,2438,2441,2444,2449,2452,2464,2474, + 2491,2495,2499,2501,2518,2520,2536,2547,2550,2553,2562,2571,2587, + 2590,2593,2601,2605,2612,2621,2625,2631,2635,2638,2641,2644,2647, + 2653,2657,2662,2666,2669,2672,2675,2680,2686,2690,2694,2698,2704, + 2706,2711,2717,2723,2727,2742,2747,2750,2752,2755,2759,2763,2766, + 2769,2777,2783,2785,2791,2796,2801,2805,2812,2814,2825,2864,2874, + 2876,2879,2883,2887,2897,2899,2905,2907,2916,2928,2942,2947,2950, + 2957,2962,2970,2972,2978,2983,2987,2992,2998,3005,3011,3013,3022, + 3028,3036,3042,3047,3052,3060,3075,3077,3081,3085,3088,3091,3100, + 3103,3106,3112,3118,3122,3134,3140,3143,3148,3152,3159,3169,3171, + 3195,3207,3212,3214,3218,3221,3224,3234,3237,3247,3252,3257,3260, + 3263,3271,3277,3284,3292,3295,3306,3310,3316,3323,3326,3335,3349, + 3352,3366,3377,3380,3392,3397,3410,3415,3428,3437,3440,3443,3450, + 3453,3465,3471,3473,3481,3489,3497,3509,3514,3525,3536,3544,3552, + 3559,3566,3568,3571,3576,3581,3600,3609,3612,3639,3648,3651,3655, + 3659,3663,3670,3674,3678,3682,3686,3691,3695,3700,3706,3711,3718, + 3722,3728,3732,3737,3745,3751,3756,3763,3768,3772,3777,3783,3790, + 3795,3802,3807,3814,3818,3826,3830,3832,3835,3840,3850,3865,3868, + 3876,3883,3888,3894,3898,3905,3910,3913,3916,3920,3929,3947,3950, + 3982,3987,3993,4013,4018,4024,4027,4031,4035,4041,4044,4048,4052, + 4057,4060,4063,4066,4079,4085,4093,4100,4105,4108,4115,4118,4126, + 4129,4134,4141,4144,4164,4176,4179,4185,4190,4199,4207,4212,4218, + 4225,4233,4236,4247,4249,4263,4269,4277,4279,4285,4289,4292,4295, + 4300,4305,4309,4312,4315,4318,4321,4329,4340,4343,4346,4351,4354, + 4358,4362,4368,4376,4379,4392,4397,4399,4404,4411,4418,4427,4435, + 4443,4450,4458,4465,4473,4477,4481,4483,4489,4494,4498,4505,4510, + 4515,4520,4522,4532,4542,4558,4576,4588,4595,4610,4615,4618,4623, + 4628,4633,4636,4639,4644,4651,4655,4660,4667,4671,4677,4686,4695, + 4707,4709,4722,4728,4732,4734,4741,4754,4761,4763,4779,4783,4787, + 4792,4797,4802,4807,4810,4822,4875,4884,4888,4897,4901,4910,4914, + 4919,4922,4926,4931,4933,4942,4947,4958,4962,4976,4984,5022,5024, + 5043,5046,5073,5077,5081,5085,5089,5092,5107,5114,5128,5141,5166, + 5185,5200,5216,5223,5234,5237,5256,5259,5272,5276,5296,5308,5312, + 5334,5338,5348,5352,5358,5362,5366,5370,5377,5382,5393,5397,5400, + 5405,5411,5422,5426,5429,5433,5437,5440,5450,5453,5457,5462,5468, + 5471,5476,5479,5486,5488,5494,5498,5507,5512,5514,5524,5527,5532, + 5540,5543,5548,5550,5552,5558,5575,5581,5594,5600,5604,5609,5639, + 5654,5659,5663,5676,5680,5682,5691,5697,5699,5703,5706,5709,5712, + 5715,5717,5720,5724,5732,5737,5740,5746,5750,5754,5759,5761,5765, + 5769,5776,5782,5786,5788,5790,5803,5811,5819,5830,5840,5845,5849, + 5853,5860,5863,5865,5873,5877,5880,5887,5894,5899,5906,5909,5911, + 5914,5920,5925,5929,5936,5946,5953,5956,5959,5963,5974,5977,5980, + 5983,5986,5993,5996,5999,6006,6018,6025,6027,6032,6037,6039,6045, + 6052,6057,6062,6066,6070,6074,6076,6080,6084,6087,6090,6092,6102, + 6104,6109,6113,6118,6122,6129,6134,6138,6141,6147,6150,6169,6176, + 6180,6183,6187,6191,6194,6197,6202,6211,6218,6222,6226,6230,6233, + 6235,6240,6244,6249,6255,6262,6267,6272,6281,6288,6296,6307,6312, + 6316,6319,6323,6328,6332,6337,6345,6356,6361,6365,6368,6371,6373, + 6376,6379,6382,6392,6397,6403,6407,6409,6416,6421,6427,6429,6434, + 6438,6442,6444,6447,6454,6459,6462,6468,6472,6478,6487,6493,6495, + 6500,6503,6512,6519,6521,6528,6533,6536,6546,6557,6562,6566,6574, + 6584,6591,6597,6608,6614,6624,6633,6637,6640,6642,6644,6648,6656, + 6659,6664,6669,6676,6678,6684,6688,6691,6696,6699,6701,6707,6716, + 6722,6725,6733,6736,6740,6746,6748,6751,6755,6760,6767,6774,6776, + 6782,6784,6789,6791,6795,6804,6808,6816,6818,6832,6835,6843,6852, + 6858,6863,6871,6873,6878,6882,6887,6892,6898,6914,6916,6925,6940, + 6945,6948,6954,6959,6972,6977,6981,6988,7007,7019,7024,7032,7034, + 7036,7045,7048,7053,7058,7061,7072,7080,7085,7087,7090,7094,7105, + 7126,7134,7147,7157,7163,7169,7172,7175,7201,7203,7224,7234,7247, + 7252,7256,7258,7270,7277,7283,7289,7293,7304,7317,7321,7326,7329, + 7332,7341,7352,7354,7358,7363,7372,7377,7385,7395,7403,7407,7410, + 7417,7429,7433,7440,7448,7450,7459,7462,7474,7483,7490,7499,7509, + 7514,7518,7520,7523,7528,7533,7541,7547,7550,7554,7556,7563,7573, + 7581,7589,7597,7614,7621,7629,7646,7652,7658,7669,7675,7680,7688, + 7693,7696,7705,7712,7717,7721,7726,7732,7737,7745,7800,7807,7813, + 7815,7817,7819,7825,7829,7833,7844,7847,7851,7855,7859,7862,7865, + 7868,7877,7882,7886,7919,7929,7933,7939,7944,7953,7961,7972,7980, + 7989,7998,8003,8007,8017,8022,8030,8035,8038,8045,8051,8059,8067, + 8070,8077,8079,8082,8088,8097,8101,8115,8118,8120,8126,8136,8138, + 8140,8148,8151,8154,8164,8172,8178,8184,8191,8195,8199,8202,8205, + 8211,8218,8221,8229,8231,8240,8245,8247,8254,8260,8263,8275,8282, + 8284,8288,8294,8299,8303,8306,8309,8318,8321,8324,8328,8332,8334, + 8337,8340,8346,8353,8360,8366,8368,8372,8377,8395,8400,8402,8411, + 8418,8422,8434,8437,8450,8453,8457,8466,8473,8478,8483,8487,8490, + 8493,8496,8499,8502,8505,8508 ]; private static __ATN: antlr.ATN; @@ -76218,6 +76364,9 @@ export class TableRefContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public expressionTable(): ExpressionTableContext | null { + return this.getRuleContext(0, ExpressionTableContext); + } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } @@ -76272,15 +76421,6 @@ export class TableRefContext extends antlr.ParserRuleContext { public relationExpr(): RelationExprContext | null { return this.getRuleContext(0, RelationExprContext); } - public xmlTable(): XmlTableContext | null { - return this.getRuleContext(0, XmlTableContext); - } - public funcTable(): FuncTableContext | null { - return this.getRuleContext(0, FuncTableContext); - } - public selectWithParens(): SelectWithParensContext | null { - return this.getRuleContext(0, SelectWithParensContext); - } public aliasClause(): AliasClauseContext | null { return this.getRuleContext(0, AliasClauseContext); } @@ -76302,9 +76442,6 @@ export class TableRefContext extends antlr.ParserRuleContext { return this.getRuleContext(i, JoinTypeContext); } - public funcAliasClause(): FuncAliasClauseContext | null { - return this.getRuleContext(0, FuncAliasClauseContext); - } public KW_ONLY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.KW_ONLY, 0); } @@ -76340,6 +76477,48 @@ export class TableRefContext extends antlr.ParserRuleContext { } +export class ExpressionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public xmlTable(): XmlTableContext | null { + return this.getRuleContext(0, XmlTableContext); + } + public aliasClause(): AliasClauseContext | null { + return this.getRuleContext(0, AliasClauseContext); + } + public funcTable(): FuncTableContext | null { + return this.getRuleContext(0, FuncTableContext); + } + public funcAliasClause(): FuncAliasClauseContext | null { + return this.getRuleContext(0, FuncAliasClauseContext); + } + public selectWithParens(): SelectWithParensContext | null { + return this.getRuleContext(0, SelectWithParensContext); + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_expressionTable; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterExpressionTable) { + listener.enterExpressionTable(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitExpressionTable) { + listener.exitExpressionTable(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitExpressionTable) { + return visitor.visitExpressionTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class AliasClauseContext extends antlr.ParserRuleContext { public _alias?: ColIdContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -80003,6 +80182,66 @@ export class ExprListContext extends antlr.ParserRuleContext { } +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_selectExpressionColumnName; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_selectLiteralColumnName; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnExprContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -80581,23 +80820,50 @@ export class TargetElContext extends antlr.ParserRuleContext { super.copyFrom(ctx); } } -export class Target_labelContext extends TargetElContext { +export class Target_starContext extends TargetElContext { public constructor(ctx: TargetElContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnExprNoParen(): ColumnExprNoParenContext { - return this.getRuleContext(0, ColumnExprNoParenContext)!; + public tableAllColumns(): TableAllColumnsContext { + return this.getRuleContext(0, TableAllColumnsContext)!; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.KW_AS, 0); + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterTarget_star) { + listener.enterTarget_star(this); + } } - public colLabel(): ColLabelContext | null { - return this.getRuleContext(0, ColLabelContext); + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitTarget_star) { + listener.exitTarget_star(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitTarget_star) { + return visitor.visitTarget_star(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class Target_labelContext extends TargetElContext { + public _alias?: IdentifierContext; + public constructor(ctx: TargetElContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.KW_AS, 0); + } public override enterRule(listener: PostgreSqlParserListener): void { if(listener.enterTarget_label) { listener.enterTarget_label(this); @@ -80616,27 +80882,49 @@ export class Target_labelContext extends TargetElContext { } } } -export class Target_starContext extends TargetElContext { - public constructor(ctx: TargetElContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } public STAR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.STAR, 0)!; } + public colId(): ColIdContext[]; + public colId(i: number): ColIdContext | null; + public colId(i?: number): ColIdContext[] | ColIdContext | null { + if (i === undefined) { + return this.getRuleContexts(ColIdContext); + } + + return this.getRuleContext(i, ColIdContext); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSqlParser.DOT); + } else { + return this.getToken(PostgreSqlParser.DOT, i); + } + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_tableAllColumns; + } public override enterRule(listener: PostgreSqlParserListener): void { - if(listener.enterTarget_star) { - listener.enterTarget_star(this); + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); } } public override exitRule(listener: PostgreSqlParserListener): void { - if(listener.exitTarget_star) { - listener.exitTarget_star(this); + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); } } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTarget_star) { - return visitor.visitTarget_star(this); + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); } else { return visitor.visitChildren(this); } diff --git a/src/lib/postgresql/PostgreSqlParserListener.ts b/src/lib/postgresql/PostgreSqlParserListener.ts index 56a8ea0f..d61c4877 100644 --- a/src/lib/postgresql/PostgreSqlParserListener.ts +++ b/src/lib/postgresql/PostgreSqlParserListener.ts @@ -314,6 +314,7 @@ import { ValuesClauseContext } from "./PostgreSqlParser.js"; import { FromClauseContext } from "./PostgreSqlParser.js"; import { FromListContext } from "./PostgreSqlParser.js"; import { TableRefContext } from "./PostgreSqlParser.js"; +import { ExpressionTableContext } from "./PostgreSqlParser.js"; import { AliasClauseContext } from "./PostgreSqlParser.js"; import { FuncAliasClauseContext } from "./PostgreSqlParser.js"; import { JoinTypeContext } from "./PostgreSqlParser.js"; @@ -386,6 +387,8 @@ import { QualOpContext } from "./PostgreSqlParser.js"; import { QualAllOpContext } from "./PostgreSqlParser.js"; import { SubqueryOperatorContext } from "./PostgreSqlParser.js"; import { ExprListContext } from "./PostgreSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./PostgreSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./PostgreSqlParser.js"; import { ColumnExprContext } from "./PostgreSqlParser.js"; import { ColumnExprNoParenContext } from "./PostgreSqlParser.js"; import { FuncArgListContext } from "./PostgreSqlParser.js"; @@ -399,8 +402,9 @@ import { IndirectionElContext } from "./PostgreSqlParser.js"; import { IndirectionContext } from "./PostgreSqlParser.js"; import { OptIndirectionContext } from "./PostgreSqlParser.js"; import { TargetListContext } from "./PostgreSqlParser.js"; -import { Target_labelContext } from "./PostgreSqlParser.js"; import { Target_starContext } from "./PostgreSqlParser.js"; +import { Target_labelContext } from "./PostgreSqlParser.js"; +import { TableAllColumnsContext } from "./PostgreSqlParser.js"; import { QualifiedNameListContext } from "./PostgreSqlParser.js"; import { TableNameListContext } from "./PostgreSqlParser.js"; import { SchemaNameListContext } from "./PostgreSqlParser.js"; @@ -3573,6 +3577,16 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTableRef?: (ctx: TableRefContext) => void; + /** + * Enter a parse tree produced by `PostgreSqlParser.expressionTable`. + * @param ctx the parse tree + */ + enterExpressionTable?: (ctx: ExpressionTableContext) => void; + /** + * Exit a parse tree produced by `PostgreSqlParser.expressionTable`. + * @param ctx the parse tree + */ + exitExpressionTable?: (ctx: ExpressionTableContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.aliasClause`. * @param ctx the parse tree @@ -4325,6 +4339,26 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitExprList?: (ctx: ExprListContext) => void; + /** + * Enter a parse tree produced by `PostgreSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `PostgreSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Enter a parse tree produced by `PostgreSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `PostgreSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.columnExpr`. * @param ctx the parse tree @@ -4455,6 +4489,18 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTargetList?: (ctx: TargetListContext) => void; + /** + * Enter a parse tree produced by the `target_star` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + */ + enterTarget_star?: (ctx: Target_starContext) => void; + /** + * Exit a parse tree produced by the `target_star` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + */ + exitTarget_star?: (ctx: Target_starContext) => void; /** * Enter a parse tree produced by the `target_label` * labeled alternative in `PostgreSqlParser.targetEl`. @@ -4468,17 +4514,15 @@ export class PostgreSqlParserListener implements ParseTreeListener { */ exitTarget_label?: (ctx: Target_labelContext) => void; /** - * Enter a parse tree produced by the `target_star` - * labeled alternative in `PostgreSqlParser.targetEl`. + * Enter a parse tree produced by `PostgreSqlParser.tableAllColumns`. * @param ctx the parse tree */ - enterTarget_star?: (ctx: Target_starContext) => void; + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** - * Exit a parse tree produced by the `target_star` - * labeled alternative in `PostgreSqlParser.targetEl`. + * Exit a parse tree produced by `PostgreSqlParser.tableAllColumns`. * @param ctx the parse tree */ - exitTarget_star?: (ctx: Target_starContext) => void; + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.qualifiedNameList`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParserVisitor.ts b/src/lib/postgresql/PostgreSqlParserVisitor.ts index c92fd700..2d790d2f 100644 --- a/src/lib/postgresql/PostgreSqlParserVisitor.ts +++ b/src/lib/postgresql/PostgreSqlParserVisitor.ts @@ -314,6 +314,7 @@ import { ValuesClauseContext } from "./PostgreSqlParser.js"; import { FromClauseContext } from "./PostgreSqlParser.js"; import { FromListContext } from "./PostgreSqlParser.js"; import { TableRefContext } from "./PostgreSqlParser.js"; +import { ExpressionTableContext } from "./PostgreSqlParser.js"; import { AliasClauseContext } from "./PostgreSqlParser.js"; import { FuncAliasClauseContext } from "./PostgreSqlParser.js"; import { JoinTypeContext } from "./PostgreSqlParser.js"; @@ -386,6 +387,8 @@ import { QualOpContext } from "./PostgreSqlParser.js"; import { QualAllOpContext } from "./PostgreSqlParser.js"; import { SubqueryOperatorContext } from "./PostgreSqlParser.js"; import { ExprListContext } from "./PostgreSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./PostgreSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./PostgreSqlParser.js"; import { ColumnExprContext } from "./PostgreSqlParser.js"; import { ColumnExprNoParenContext } from "./PostgreSqlParser.js"; import { FuncArgListContext } from "./PostgreSqlParser.js"; @@ -399,8 +402,9 @@ import { IndirectionElContext } from "./PostgreSqlParser.js"; import { IndirectionContext } from "./PostgreSqlParser.js"; import { OptIndirectionContext } from "./PostgreSqlParser.js"; import { TargetListContext } from "./PostgreSqlParser.js"; -import { Target_labelContext } from "./PostgreSqlParser.js"; import { Target_starContext } from "./PostgreSqlParser.js"; +import { Target_labelContext } from "./PostgreSqlParser.js"; +import { TableAllColumnsContext } from "./PostgreSqlParser.js"; import { QualifiedNameListContext } from "./PostgreSqlParser.js"; import { TableNameListContext } from "./PostgreSqlParser.js"; import { SchemaNameListContext } from "./PostgreSqlParser.js"; @@ -2343,6 +2347,12 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `PostgreSqlParser.expressionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExpressionTable?: (ctx: ExpressionTableContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.aliasClause`. * @param ctx the parse tree @@ -2791,6 +2801,18 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `PostgreSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; + /** + * Visit a parse tree produced by `PostgreSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.columnExpr`. * @param ctx the parse tree @@ -2869,6 +2891,13 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by the `target_star` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTarget_star?: (ctx: Target_starContext) => Result; /** * Visit a parse tree produced by the `target_label` * labeled alternative in `PostgreSqlParser.targetEl`. @@ -2877,12 +2906,11 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `target_star` - * labeled alternative in `PostgreSqlParser.targetEl`. + * Visit a parse tree produced by `PostgreSqlParser.tableAllColumns`. * @param ctx the parse tree * @return the visitor result */ - visitTarget_star?: (ctx: Target_starContext) => Result; + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.qualifiedNameList`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index db7ab5fa..245721e6 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -888,11 +888,15 @@ orderedIdentifier identifierCommentList identifierComment relationPrimary +atomSubQueryTableSource +inlineTable functionTableSubqueryArgument tableArgumentPartitioning functionTableNamedArgumentExpression functionTableReferenceArgument functionTableArgument +functionTable +atomFunctionTable tableAlias rowFormat multipartIdentifierList @@ -901,8 +905,12 @@ multipartIdentifierPropertyList multipartIdentifierProperty tableIdentifier viewIdentifier +selectLiteralColumnName +selectExpressionColumnName +tableAllColumns namedExpression namedExpressionSeq +selectList partitionFieldList partitionField transform @@ -969,4 +977,4 @@ nonReserved atn: -[4, 1, 393, 3760, 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, 1, 0, 5, 0, 352, 8, 0, 10, 0, 12, 0, 355, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 361, 8, 1, 1, 2, 1, 2, 3, 2, 365, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 370, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 377, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 382, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 392, 8, 2, 10, 2, 12, 2, 395, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 414, 8, 2, 1, 2, 1, 2, 3, 2, 418, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 424, 8, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 3, 2, 430, 8, 2, 1, 2, 1, 2, 3, 2, 434, 8, 2, 1, 2, 3, 2, 437, 8, 2, 1, 2, 1, 2, 3, 2, 441, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 448, 8, 2, 1, 2, 3, 2, 451, 8, 2, 1, 2, 1, 2, 3, 2, 455, 8, 2, 1, 2, 3, 2, 458, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 463, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 476, 8, 2, 10, 2, 12, 2, 479, 9, 2, 1, 2, 1, 2, 3, 2, 483, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 492, 8, 2, 1, 2, 3, 2, 495, 8, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 3, 2, 502, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 508, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 519, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 525, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 530, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 563, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 573, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 584, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 595, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 606, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 611, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 620, 8, 2, 1, 2, 1, 2, 3, 2, 624, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 630, 8, 2, 1, 2, 1, 2, 3, 2, 634, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 639, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 645, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 657, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 665, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 671, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 682, 8, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 4, 2, 689, 8, 2, 11, 2, 12, 2, 690, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 706, 8, 2, 1, 2, 1, 2, 3, 2, 710, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 715, 8, 2, 10, 2, 12, 2, 718, 9, 2, 1, 2, 3, 2, 721, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 727, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 757, 8, 2, 1, 2, 1, 2, 3, 2, 761, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 766, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 773, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 779, 8, 2, 1, 2, 3, 2, 782, 8, 2, 1, 2, 3, 2, 785, 8, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 3, 2, 793, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 802, 8, 2, 10, 2, 12, 2, 805, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 3, 2, 816, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 825, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 830, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 836, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 843, 8, 2, 1, 2, 3, 2, 846, 8, 2, 1, 2, 1, 2, 3, 2, 850, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 863, 8, 2, 10, 2, 12, 2, 866, 9, 2, 3, 2, 868, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 874, 8, 2, 1, 2, 1, 2, 3, 2, 878, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 895, 8, 2, 10, 2, 12, 2, 898, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 905, 8, 2, 1, 2, 1, 2, 3, 2, 909, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 915, 8, 2, 1, 2, 3, 2, 918, 8, 2, 1, 2, 1, 2, 3, 2, 922, 8, 2, 1, 2, 3, 2, 925, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 931, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 1, 2, 3, 2, 940, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 947, 8, 2, 1, 2, 3, 2, 950, 8, 2, 1, 2, 3, 2, 953, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 960, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 965, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 974, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 982, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 988, 8, 2, 1, 2, 3, 2, 991, 8, 2, 1, 2, 3, 2, 994, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1000, 8, 2, 1, 2, 1, 2, 3, 2, 1004, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 1, 2, 3, 2, 1016, 8, 2, 3, 2, 1018, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1026, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1034, 8, 2, 1, 2, 3, 2, 1037, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1044, 8, 2, 1, 2, 3, 2, 1047, 8, 2, 1, 2, 3, 2, 1050, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1059, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1064, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1070, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1075, 8, 2, 1, 2, 3, 2, 1078, 8, 2, 1, 2, 1, 2, 3, 2, 1082, 8, 2, 1, 2, 3, 2, 1085, 8, 2, 1, 2, 1, 2, 3, 2, 1089, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1099, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1115, 8, 2, 10, 2, 12, 2, 1118, 9, 2, 3, 2, 1120, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1128, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1134, 8, 2, 1, 2, 3, 2, 1137, 8, 2, 1, 2, 3, 2, 1140, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1145, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1153, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1164, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1170, 8, 2, 1, 2, 3, 2, 1173, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1180, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1185, 8, 2, 10, 2, 12, 2, 1188, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1193, 8, 2, 10, 2, 12, 2, 1196, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1207, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1213, 8, 2, 10, 2, 12, 2, 1216, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1240, 8, 2, 10, 2, 12, 2, 1243, 9, 2, 3, 2, 1245, 8, 2, 1, 2, 1, 2, 5, 2, 1249, 8, 2, 10, 2, 12, 2, 1252, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1258, 8, 2, 10, 2, 12, 2, 1261, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1267, 8, 2, 10, 2, 12, 2, 1270, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1275, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1280, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1285, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1292, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1297, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1302, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1309, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1315, 8, 2, 10, 2, 12, 2, 1318, 9, 2, 3, 2, 1320, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1326, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1333, 8, 3, 1, 3, 1, 3, 3, 3, 1337, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1400, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1408, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1415, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1423, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1435, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1440, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 3, 8, 1449, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 1457, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1462, 8, 9, 3, 9, 1464, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1472, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1477, 8, 9, 1, 9, 1, 9, 3, 9, 1481, 8, 9, 1, 9, 3, 9, 1484, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1492, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1497, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1506, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1511, 8, 9, 1, 9, 3, 9, 1514, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1519, 8, 9, 1, 9, 1, 9, 3, 9, 1523, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1528, 8, 9, 3, 9, 1530, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1535, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 1542, 8, 11, 10, 11, 12, 11, 1545, 9, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1552, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1558, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1567, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1572, 8, 15, 10, 15, 12, 15, 1575, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1581, 8, 16, 10, 16, 12, 16, 1584, 9, 16, 1, 17, 1, 17, 3, 17, 1588, 8, 17, 1, 17, 3, 17, 1591, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 1616, 8, 19, 10, 19, 12, 19, 1619, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 1628, 8, 21, 10, 21, 12, 21, 1631, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1637, 8, 22, 1, 22, 3, 22, 1640, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1645, 8, 23, 10, 23, 12, 23, 1648, 9, 23, 1, 23, 3, 23, 1651, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1657, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1663, 8, 25, 10, 25, 12, 25, 1666, 9, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1672, 8, 26, 1, 26, 3, 26, 1675, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1681, 8, 27, 10, 27, 12, 27, 1684, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1692, 8, 28, 10, 28, 12, 28, 1695, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1705, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1713, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1719, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 4, 32, 1728, 8, 32, 11, 32, 12, 32, 1729, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1737, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1744, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1756, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1762, 8, 32, 10, 32, 12, 32, 1765, 9, 32, 1, 32, 5, 32, 1768, 8, 32, 10, 32, 12, 32, 1771, 9, 32, 1, 32, 5, 32, 1774, 8, 32, 10, 32, 12, 32, 1777, 9, 32, 3, 32, 1779, 8, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 1795, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 1802, 8, 41, 10, 41, 12, 41, 1805, 9, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1815, 8, 43, 1, 44, 1, 44, 1, 44, 3, 44, 1820, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1825, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1830, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1835, 8, 44, 1, 44, 3, 44, 1838, 8, 44, 1, 44, 3, 44, 1841, 8, 44, 1, 44, 1, 44, 3, 44, 1845, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1850, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1855, 8, 46, 10, 46, 12, 46, 1858, 9, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1863, 8, 47, 10, 47, 12, 47, 1866, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1874, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1880, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1886, 8, 48, 1, 48, 5, 48, 1889, 8, 48, 10, 48, 12, 48, 1892, 9, 48, 1, 49, 1, 49, 1, 49, 4, 49, 1897, 8, 49, 11, 49, 12, 49, 1898, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1907, 8, 49, 10, 49, 12, 49, 1910, 9, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1918, 8, 49, 1, 50, 1, 50, 3, 50, 1922, 8, 50, 1, 50, 3, 50, 1925, 8, 50, 1, 50, 1, 50, 3, 50, 1929, 8, 50, 1, 51, 1, 51, 3, 51, 1933, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1939, 8, 51, 10, 51, 12, 51, 1942, 9, 51, 1, 51, 3, 51, 1945, 8, 51, 1, 51, 3, 51, 1948, 8, 51, 1, 51, 3, 51, 1951, 8, 51, 1, 51, 3, 51, 1954, 8, 51, 1, 51, 1, 51, 3, 51, 1958, 8, 51, 1, 52, 1, 52, 3, 52, 1962, 8, 52, 1, 52, 5, 52, 1965, 8, 52, 10, 52, 12, 52, 1968, 9, 52, 1, 52, 3, 52, 1971, 8, 52, 1, 52, 3, 52, 1974, 8, 52, 1, 52, 3, 52, 1977, 8, 52, 1, 52, 3, 52, 1980, 8, 52, 1, 52, 1, 52, 3, 52, 1984, 8, 52, 1, 52, 5, 52, 1987, 8, 52, 10, 52, 12, 52, 1990, 9, 52, 1, 52, 3, 52, 1993, 8, 52, 1, 52, 3, 52, 1996, 8, 52, 1, 52, 3, 52, 1999, 8, 52, 1, 52, 3, 52, 2002, 8, 52, 3, 52, 2004, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2010, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2017, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2022, 8, 53, 1, 53, 3, 53, 2025, 8, 53, 1, 53, 3, 53, 2028, 8, 53, 1, 53, 1, 53, 3, 53, 2032, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2042, 8, 53, 1, 53, 1, 53, 3, 53, 2046, 8, 53, 3, 53, 2048, 8, 53, 1, 53, 3, 53, 2051, 8, 53, 1, 53, 1, 53, 3, 53, 2055, 8, 53, 1, 54, 1, 54, 5, 54, 2059, 8, 54, 10, 54, 12, 54, 2062, 9, 54, 1, 54, 3, 54, 2065, 8, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2076, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2084, 8, 56, 3, 56, 2086, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2093, 8, 57, 1, 57, 1, 57, 3, 57, 2097, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2109, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2116, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2129, 8, 59, 10, 59, 12, 59, 2132, 9, 59, 1, 59, 1, 59, 3, 59, 2136, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2141, 8, 60, 10, 60, 12, 60, 2144, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 2159, 8, 64, 1, 64, 5, 64, 2162, 8, 64, 10, 64, 12, 64, 2165, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2175, 8, 65, 10, 65, 12, 65, 2178, 9, 65, 1, 65, 1, 65, 3, 65, 2182, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2188, 8, 66, 10, 66, 12, 66, 2191, 9, 66, 1, 66, 5, 66, 2194, 8, 66, 10, 66, 12, 66, 2197, 9, 66, 1, 66, 3, 66, 2200, 8, 66, 1, 66, 3, 66, 2203, 8, 66, 1, 67, 3, 67, 2206, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2213, 8, 67, 1, 67, 3, 67, 2216, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2222, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2229, 8, 68, 10, 68, 12, 68, 2232, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2239, 8, 68, 10, 68, 12, 68, 2242, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2254, 8, 68, 10, 68, 12, 68, 2257, 9, 68, 1, 68, 1, 68, 3, 68, 2261, 8, 68, 3, 68, 2263, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2268, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2275, 8, 70, 10, 70, 12, 70, 2278, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2287, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2292, 8, 70, 5, 70, 2294, 8, 70, 10, 70, 12, 70, 2297, 9, 70, 1, 70, 1, 70, 3, 70, 2301, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2308, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2313, 8, 71, 5, 71, 2315, 8, 71, 10, 71, 12, 71, 2318, 9, 71, 3, 71, 2320, 8, 71, 1, 71, 3, 71, 2323, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2335, 8, 72, 10, 72, 12, 72, 2338, 9, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2348, 8, 73, 10, 73, 12, 73, 2351, 9, 73, 1, 73, 1, 73, 3, 73, 2355, 8, 73, 1, 74, 1, 74, 3, 74, 2359, 8, 74, 1, 74, 3, 74, 2362, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2367, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2372, 8, 75, 1, 75, 1, 75, 3, 75, 2376, 8, 75, 1, 75, 3, 75, 2379, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2389, 8, 76, 10, 76, 12, 76, 2392, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2400, 8, 77, 10, 77, 12, 77, 2403, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2413, 8, 77, 10, 77, 12, 77, 2416, 9, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2424, 8, 78, 10, 78, 12, 78, 2427, 9, 78, 1, 78, 1, 78, 3, 78, 2431, 8, 78, 1, 78, 3, 78, 2434, 8, 78, 1, 79, 1, 79, 3, 79, 2438, 8, 79, 1, 79, 3, 79, 2441, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2453, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2460, 8, 82, 10, 82, 12, 82, 2463, 9, 82, 3, 82, 2465, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2470, 8, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2475, 8, 82, 10, 82, 12, 82, 2478, 9, 82, 3, 82, 2480, 8, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 2486, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2492, 8, 84, 10, 84, 12, 84, 2495, 9, 84, 3, 84, 2497, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 2502, 8, 85, 1, 85, 1, 85, 3, 85, 2506, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2512, 8, 85, 1, 85, 1, 85, 3, 85, 2516, 8, 85, 1, 86, 3, 86, 2519, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2524, 8, 86, 1, 86, 3, 86, 2527, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2532, 8, 86, 3, 86, 2534, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2540, 8, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2545, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2552, 8, 88, 1, 89, 3, 89, 2555, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2573, 8, 89, 3, 89, 2575, 8, 89, 1, 89, 3, 89, 2578, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 5, 91, 2587, 8, 91, 10, 91, 12, 91, 2590, 9, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2596, 8, 92, 10, 92, 12, 92, 2599, 9, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2605, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 2611, 8, 94, 10, 94, 12, 94, 2614, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 3, 95, 2621, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2626, 8, 96, 1, 96, 3, 96, 2629, 8, 96, 1, 96, 3, 96, 2632, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2640, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2648, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2656, 8, 96, 10, 96, 12, 96, 2659, 9, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2668, 8, 96, 10, 96, 12, 96, 2671, 9, 96, 3, 96, 2673, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2678, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2683, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2690, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2697, 8, 97, 3, 97, 2699, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 2710, 8, 98, 10, 98, 12, 98, 2713, 9, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2718, 8, 98, 3, 98, 2720, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2729, 8, 98, 3, 98, 2731, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 3, 100, 2739, 8, 100, 1, 101, 1, 101, 3, 101, 2743, 8, 101, 1, 102, 3, 102, 2746, 8, 102, 1, 102, 1, 102, 3, 102, 2750, 8, 102, 3, 102, 2752, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2761, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2773, 8, 103, 3, 103, 2775, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2782, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2789, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2795, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2801, 8, 103, 3, 103, 2803, 8, 103, 1, 104, 1, 104, 1, 104, 5, 104, 2808, 8, 104, 10, 104, 12, 104, 2811, 9, 104, 1, 105, 1, 105, 1, 105, 5, 105, 2816, 8, 105, 10, 105, 12, 105, 2819, 9, 105, 1, 106, 1, 106, 1, 106, 5, 106, 2824, 8, 106, 10, 106, 12, 106, 2827, 9, 106, 1, 107, 1, 107, 1, 107, 3, 107, 2832, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 2837, 8, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 3, 109, 2844, 8, 109, 1, 109, 1, 109, 1, 110, 1, 110, 3, 110, 2850, 8, 110, 1, 110, 3, 110, 2853, 8, 110, 1, 110, 1, 110, 3, 110, 2857, 8, 110, 3, 110, 2859, 8, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2864, 8, 111, 10, 111, 12, 111, 2867, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 2873, 8, 112, 10, 112, 12, 112, 2876, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 3, 113, 2882, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2890, 8, 114, 10, 114, 12, 114, 2893, 9, 114, 1, 114, 1, 114, 3, 114, 2897, 8, 114, 1, 115, 1, 115, 3, 115, 2901, 8, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 2911, 8, 118, 1, 119, 1, 119, 1, 119, 5, 119, 2916, 8, 119, 10, 119, 12, 119, 2919, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2931, 8, 120, 3, 120, 2933, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 2941, 8, 120, 10, 120, 12, 120, 2944, 9, 120, 1, 121, 3, 121, 2947, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2955, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 2962, 8, 121, 10, 121, 12, 121, 2965, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2970, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2978, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2983, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 2993, 8, 121, 10, 121, 12, 121, 2996, 9, 121, 1, 121, 1, 121, 3, 121, 3000, 8, 121, 1, 121, 3, 121, 3003, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3009, 8, 121, 1, 121, 1, 121, 3, 121, 3013, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3018, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3023, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3028, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3034, 8, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 3055, 8, 122, 10, 122, 12, 122, 3058, 9, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3068, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3080, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3090, 8, 124, 11, 124, 12, 124, 3091, 1, 124, 1, 124, 3, 124, 3096, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3103, 8, 124, 11, 124, 12, 124, 3104, 1, 124, 1, 124, 3, 124, 3109, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3125, 8, 124, 10, 124, 12, 124, 3128, 9, 124, 3, 124, 3130, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3138, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3147, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3156, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3177, 8, 124, 11, 124, 12, 124, 3178, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3195, 8, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3200, 8, 124, 10, 124, 12, 124, 3203, 9, 124, 3, 124, 3205, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3214, 8, 124, 1, 124, 1, 124, 3, 124, 3218, 8, 124, 1, 124, 1, 124, 3, 124, 3222, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3232, 8, 124, 11, 124, 12, 124, 3233, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3259, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3266, 8, 124, 1, 124, 3, 124, 3269, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3284, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3305, 8, 124, 1, 124, 1, 124, 3, 124, 3309, 8, 124, 3, 124, 3311, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3321, 8, 124, 10, 124, 12, 124, 3324, 9, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3333, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 4, 126, 3346, 8, 126, 11, 126, 12, 126, 3347, 3, 126, 3350, 8, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 3, 131, 3363, 8, 131, 1, 132, 1, 132, 3, 132, 3367, 8, 132, 1, 133, 1, 133, 1, 133, 4, 133, 3372, 8, 133, 11, 133, 12, 133, 3373, 1, 134, 1, 134, 1, 134, 3, 134, 3379, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 3, 136, 3387, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3392, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 3, 139, 3401, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3433, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3452, 8, 141, 10, 141, 12, 141, 3455, 9, 141, 3, 141, 3457, 8, 141, 1, 141, 1, 141, 3, 141, 3461, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3467, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3473, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3480, 8, 141, 10, 141, 12, 141, 3483, 9, 141, 1, 141, 3, 141, 3486, 8, 141, 3, 141, 3488, 8, 141, 1, 142, 1, 142, 1, 142, 5, 142, 3493, 8, 142, 10, 142, 12, 142, 3496, 9, 142, 1, 143, 1, 143, 1, 143, 5, 143, 3501, 8, 143, 10, 143, 12, 143, 3504, 9, 143, 1, 144, 1, 144, 1, 144, 5, 144, 3509, 8, 144, 10, 144, 12, 144, 3512, 9, 144, 1, 145, 1, 145, 1, 145, 5, 145, 3517, 8, 145, 10, 145, 12, 145, 3520, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3529, 8, 146, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 5, 148, 3537, 8, 148, 10, 148, 12, 148, 3540, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3546, 8, 149, 1, 149, 1, 149, 3, 149, 3550, 8, 149, 1, 150, 1, 150, 1, 150, 5, 150, 3555, 8, 150, 10, 150, 12, 150, 3558, 9, 150, 1, 151, 1, 151, 1, 151, 5, 151, 3563, 8, 151, 10, 151, 12, 151, 3566, 9, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3581, 8, 152, 1, 153, 1, 153, 3, 153, 3585, 8, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3590, 8, 153, 1, 153, 1, 153, 3, 153, 3594, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 3610, 8, 155, 10, 155, 12, 155, 3613, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3630, 8, 157, 10, 157, 12, 157, 3633, 9, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3640, 8, 157, 10, 157, 12, 157, 3643, 9, 157, 3, 157, 3645, 8, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3650, 8, 157, 3, 157, 3652, 8, 157, 1, 157, 3, 157, 3655, 8, 157, 1, 157, 3, 157, 3658, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3668, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3677, 8, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3682, 8, 160, 10, 160, 12, 160, 3685, 9, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 3696, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3703, 8, 163, 10, 163, 12, 163, 3706, 9, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 4, 165, 3713, 8, 165, 11, 165, 12, 165, 3714, 1, 165, 3, 165, 3718, 8, 165, 1, 166, 1, 166, 3, 166, 3722, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3728, 8, 167, 1, 168, 1, 168, 1, 169, 3, 169, 3733, 8, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3750, 8, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 9, 1116, 1186, 1194, 1214, 1241, 1250, 1259, 1268, 1316, 4, 96, 240, 244, 248, 175, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 0, 76, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 3, 0, 73, 73, 191, 191, 262, 262, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 3, 0, 10, 10, 290, 290, 331, 331, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 2, 0, 59, 59, 96, 96, 2, 0, 129, 129, 249, 249, 6, 0, 54, 54, 129, 129, 143, 143, 172, 172, 228, 228, 313, 313, 3, 0, 11, 11, 59, 59, 96, 96, 4, 0, 107, 107, 139, 139, 171, 171, 326, 326, 2, 0, 171, 171, 326, 326, 3, 0, 45, 45, 275, 275, 279, 279, 2, 0, 45, 45, 275, 275, 3, 0, 18, 18, 103, 103, 320, 320, 3, 0, 72, 72, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 15, 15, 264, 264, 2, 0, 124, 124, 250, 250, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 233, 233, 258, 258, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 379, 387, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4353, 0, 353, 1, 0, 0, 0, 2, 358, 1, 0, 0, 0, 4, 1319, 1, 0, 0, 0, 6, 1414, 1, 0, 0, 0, 8, 1416, 1, 0, 0, 0, 10, 1428, 1, 0, 0, 0, 12, 1441, 1, 0, 0, 0, 14, 1444, 1, 0, 0, 0, 16, 1448, 1, 0, 0, 0, 18, 1529, 1, 0, 0, 0, 20, 1531, 1, 0, 0, 0, 22, 1536, 1, 0, 0, 0, 24, 1557, 1, 0, 0, 0, 26, 1559, 1, 0, 0, 0, 28, 1566, 1, 0, 0, 0, 30, 1568, 1, 0, 0, 0, 32, 1576, 1, 0, 0, 0, 34, 1585, 1, 0, 0, 0, 36, 1596, 1, 0, 0, 0, 38, 1617, 1, 0, 0, 0, 40, 1620, 1, 0, 0, 0, 42, 1623, 1, 0, 0, 0, 44, 1634, 1, 0, 0, 0, 46, 1650, 1, 0, 0, 0, 48, 1656, 1, 0, 0, 0, 50, 1658, 1, 0, 0, 0, 52, 1669, 1, 0, 0, 0, 54, 1676, 1, 0, 0, 0, 56, 1687, 1, 0, 0, 0, 58, 1704, 1, 0, 0, 0, 60, 1712, 1, 0, 0, 0, 62, 1714, 1, 0, 0, 0, 64, 1778, 1, 0, 0, 0, 66, 1780, 1, 0, 0, 0, 68, 1782, 1, 0, 0, 0, 70, 1784, 1, 0, 0, 0, 72, 1786, 1, 0, 0, 0, 74, 1788, 1, 0, 0, 0, 76, 1790, 1, 0, 0, 0, 78, 1794, 1, 0, 0, 0, 80, 1796, 1, 0, 0, 0, 82, 1798, 1, 0, 0, 0, 84, 1806, 1, 0, 0, 0, 86, 1814, 1, 0, 0, 0, 88, 1819, 1, 0, 0, 0, 90, 1846, 1, 0, 0, 0, 92, 1851, 1, 0, 0, 0, 94, 1859, 1, 0, 0, 0, 96, 1867, 1, 0, 0, 0, 98, 1917, 1, 0, 0, 0, 100, 1921, 1, 0, 0, 0, 102, 1957, 1, 0, 0, 0, 104, 2003, 1, 0, 0, 0, 106, 2024, 1, 0, 0, 0, 108, 2056, 1, 0, 0, 0, 110, 2068, 1, 0, 0, 0, 112, 2071, 1, 0, 0, 0, 114, 2087, 1, 0, 0, 0, 116, 2101, 1, 0, 0, 0, 118, 2135, 1, 0, 0, 0, 120, 2137, 1, 0, 0, 0, 122, 2145, 1, 0, 0, 0, 124, 2149, 1, 0, 0, 0, 126, 2152, 1, 0, 0, 0, 128, 2155, 1, 0, 0, 0, 130, 2181, 1, 0, 0, 0, 132, 2183, 1, 0, 0, 0, 134, 2221, 1, 0, 0, 0, 136, 2262, 1, 0, 0, 0, 138, 2267, 1, 0, 0, 0, 140, 2300, 1, 0, 0, 0, 142, 2322, 1, 0, 0, 0, 144, 2324, 1, 0, 0, 0, 146, 2354, 1, 0, 0, 0, 148, 2356, 1, 0, 0, 0, 150, 2363, 1, 0, 0, 0, 152, 2380, 1, 0, 0, 0, 154, 2395, 1, 0, 0, 0, 156, 2419, 1, 0, 0, 0, 158, 2435, 1, 0, 0, 0, 160, 2442, 1, 0, 0, 0, 162, 2446, 1, 0, 0, 0, 164, 2449, 1, 0, 0, 0, 166, 2481, 1, 0, 0, 0, 168, 2496, 1, 0, 0, 0, 170, 2515, 1, 0, 0, 0, 172, 2533, 1, 0, 0, 0, 174, 2539, 1, 0, 0, 0, 176, 2541, 1, 0, 0, 0, 178, 2577, 1, 0, 0, 0, 180, 2579, 1, 0, 0, 0, 182, 2583, 1, 0, 0, 0, 184, 2591, 1, 0, 0, 0, 186, 2602, 1, 0, 0, 0, 188, 2606, 1, 0, 0, 0, 190, 2617, 1, 0, 0, 0, 192, 2677, 1, 0, 0, 0, 194, 2698, 1, 0, 0, 0, 196, 2719, 1, 0, 0, 0, 198, 2732, 1, 0, 0, 0, 200, 2738, 1, 0, 0, 0, 202, 2742, 1, 0, 0, 0, 204, 2751, 1, 0, 0, 0, 206, 2802, 1, 0, 0, 0, 208, 2804, 1, 0, 0, 0, 210, 2812, 1, 0, 0, 0, 212, 2820, 1, 0, 0, 0, 214, 2828, 1, 0, 0, 0, 216, 2836, 1, 0, 0, 0, 218, 2843, 1, 0, 0, 0, 220, 2849, 1, 0, 0, 0, 222, 2860, 1, 0, 0, 0, 224, 2868, 1, 0, 0, 0, 226, 2881, 1, 0, 0, 0, 228, 2896, 1, 0, 0, 0, 230, 2900, 1, 0, 0, 0, 232, 2902, 1, 0, 0, 0, 234, 2904, 1, 0, 0, 0, 236, 2910, 1, 0, 0, 0, 238, 2912, 1, 0, 0, 0, 240, 2932, 1, 0, 0, 0, 242, 3027, 1, 0, 0, 0, 244, 3033, 1, 0, 0, 0, 246, 3059, 1, 0, 0, 0, 248, 3310, 1, 0, 0, 0, 250, 3332, 1, 0, 0, 0, 252, 3349, 1, 0, 0, 0, 254, 3351, 1, 0, 0, 0, 256, 3353, 1, 0, 0, 0, 258, 3355, 1, 0, 0, 0, 260, 3357, 1, 0, 0, 0, 262, 3359, 1, 0, 0, 0, 264, 3364, 1, 0, 0, 0, 266, 3371, 1, 0, 0, 0, 268, 3375, 1, 0, 0, 0, 270, 3380, 1, 0, 0, 0, 272, 3386, 1, 0, 0, 0, 274, 3393, 1, 0, 0, 0, 276, 3395, 1, 0, 0, 0, 278, 3400, 1, 0, 0, 0, 280, 3432, 1, 0, 0, 0, 282, 3487, 1, 0, 0, 0, 284, 3489, 1, 0, 0, 0, 286, 3497, 1, 0, 0, 0, 288, 3505, 1, 0, 0, 0, 290, 3513, 1, 0, 0, 0, 292, 3528, 1, 0, 0, 0, 294, 3530, 1, 0, 0, 0, 296, 3533, 1, 0, 0, 0, 298, 3541, 1, 0, 0, 0, 300, 3551, 1, 0, 0, 0, 302, 3559, 1, 0, 0, 0, 304, 3580, 1, 0, 0, 0, 306, 3582, 1, 0, 0, 0, 308, 3595, 1, 0, 0, 0, 310, 3600, 1, 0, 0, 0, 312, 3614, 1, 0, 0, 0, 314, 3657, 1, 0, 0, 0, 316, 3667, 1, 0, 0, 0, 318, 3676, 1, 0, 0, 0, 320, 3678, 1, 0, 0, 0, 322, 3695, 1, 0, 0, 0, 324, 3697, 1, 0, 0, 0, 326, 3699, 1, 0, 0, 0, 328, 3707, 1, 0, 0, 0, 330, 3717, 1, 0, 0, 0, 332, 3721, 1, 0, 0, 0, 334, 3727, 1, 0, 0, 0, 336, 3729, 1, 0, 0, 0, 338, 3732, 1, 0, 0, 0, 340, 3749, 1, 0, 0, 0, 342, 3751, 1, 0, 0, 0, 344, 3753, 1, 0, 0, 0, 346, 3755, 1, 0, 0, 0, 348, 3757, 1, 0, 0, 0, 350, 352, 3, 2, 1, 0, 351, 350, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 356, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 356, 357, 5, 0, 0, 1, 357, 1, 1, 0, 0, 0, 358, 360, 3, 4, 2, 0, 359, 361, 5, 1, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 3, 1, 0, 0, 0, 362, 1320, 3, 16, 8, 0, 363, 365, 3, 32, 16, 0, 364, 363, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 1320, 3, 64, 32, 0, 367, 369, 5, 330, 0, 0, 368, 370, 3, 26, 13, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 1320, 3, 66, 33, 0, 372, 373, 5, 269, 0, 0, 373, 376, 5, 37, 0, 0, 374, 377, 3, 332, 166, 0, 375, 377, 3, 342, 171, 0, 376, 374, 1, 0, 0, 0, 376, 375, 1, 0, 0, 0, 377, 1320, 1, 0, 0, 0, 378, 379, 5, 59, 0, 0, 379, 381, 3, 26, 13, 0, 380, 382, 3, 160, 80, 0, 381, 380, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 393, 3, 68, 34, 0, 384, 385, 5, 51, 0, 0, 385, 392, 3, 342, 171, 0, 386, 387, 5, 170, 0, 0, 387, 392, 3, 342, 171, 0, 388, 389, 5, 346, 0, 0, 389, 390, 7, 0, 0, 0, 390, 392, 3, 42, 21, 0, 391, 384, 1, 0, 0, 0, 391, 386, 1, 0, 0, 0, 391, 388, 1, 0, 0, 0, 392, 395, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 1320, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 396, 397, 5, 11, 0, 0, 397, 398, 3, 26, 13, 0, 398, 399, 3, 66, 33, 0, 399, 400, 5, 269, 0, 0, 400, 401, 7, 0, 0, 0, 401, 402, 3, 42, 21, 0, 402, 1320, 1, 0, 0, 0, 403, 404, 5, 11, 0, 0, 404, 405, 3, 26, 13, 0, 405, 406, 3, 66, 33, 0, 406, 407, 5, 269, 0, 0, 407, 408, 5, 170, 0, 0, 408, 409, 3, 342, 171, 0, 409, 1320, 1, 0, 0, 0, 410, 411, 5, 96, 0, 0, 411, 413, 3, 26, 13, 0, 412, 414, 3, 162, 81, 0, 413, 412, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 3, 66, 33, 0, 416, 418, 7, 1, 0, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 1320, 1, 0, 0, 0, 419, 420, 5, 273, 0, 0, 420, 423, 7, 2, 0, 0, 421, 422, 7, 3, 0, 0, 422, 424, 3, 210, 105, 0, 423, 421, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 429, 1, 0, 0, 0, 425, 427, 5, 163, 0, 0, 426, 425, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 430, 3, 342, 171, 0, 429, 426, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 1320, 1, 0, 0, 0, 431, 433, 5, 59, 0, 0, 432, 434, 5, 298, 0, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 436, 1, 0, 0, 0, 435, 437, 5, 109, 0, 0, 436, 435, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 440, 5, 293, 0, 0, 439, 441, 3, 160, 80, 0, 440, 439, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 447, 3, 70, 35, 0, 443, 444, 5, 2, 0, 0, 444, 445, 3, 300, 150, 0, 445, 446, 5, 3, 0, 0, 446, 448, 1, 0, 0, 0, 447, 443, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 450, 1, 0, 0, 0, 449, 451, 3, 36, 18, 0, 450, 449, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 457, 3, 38, 19, 0, 453, 455, 5, 20, 0, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 3, 16, 8, 0, 457, 454, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 1320, 1, 0, 0, 0, 459, 460, 5, 59, 0, 0, 460, 462, 5, 293, 0, 0, 461, 463, 3, 160, 80, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 3, 70, 35, 0, 465, 466, 5, 163, 0, 0, 466, 477, 3, 72, 36, 0, 467, 476, 3, 36, 18, 0, 468, 476, 3, 206, 103, 0, 469, 476, 3, 58, 29, 0, 470, 471, 5, 170, 0, 0, 471, 476, 3, 342, 171, 0, 472, 473, 5, 297, 0, 0, 473, 476, 3, 42, 21, 0, 474, 476, 3, 40, 20, 0, 475, 467, 1, 0, 0, 0, 475, 468, 1, 0, 0, 0, 475, 469, 1, 0, 0, 0, 475, 470, 1, 0, 0, 0, 475, 472, 1, 0, 0, 0, 475, 474, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 1320, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 481, 5, 59, 0, 0, 481, 483, 5, 208, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 485, 5, 244, 0, 0, 485, 486, 5, 293, 0, 0, 486, 491, 3, 70, 35, 0, 487, 488, 5, 2, 0, 0, 488, 489, 3, 300, 150, 0, 489, 490, 5, 3, 0, 0, 490, 492, 1, 0, 0, 0, 491, 487, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 1, 0, 0, 0, 493, 495, 3, 36, 18, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 501, 3, 38, 19, 0, 497, 499, 5, 20, 0, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 502, 3, 16, 8, 0, 501, 498, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 1320, 1, 0, 0, 0, 503, 504, 5, 13, 0, 0, 504, 505, 5, 293, 0, 0, 505, 507, 3, 72, 36, 0, 506, 508, 3, 22, 11, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 5, 55, 0, 0, 510, 518, 5, 282, 0, 0, 511, 519, 5, 196, 0, 0, 512, 513, 5, 119, 0, 0, 513, 514, 5, 50, 0, 0, 514, 519, 3, 82, 41, 0, 515, 516, 5, 119, 0, 0, 516, 517, 5, 10, 0, 0, 517, 519, 5, 50, 0, 0, 518, 511, 1, 0, 0, 0, 518, 512, 1, 0, 0, 0, 518, 515, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 1320, 1, 0, 0, 0, 520, 521, 5, 13, 0, 0, 521, 524, 5, 294, 0, 0, 522, 523, 7, 3, 0, 0, 523, 525, 3, 66, 33, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 5, 55, 0, 0, 527, 529, 5, 282, 0, 0, 528, 530, 5, 196, 0, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 1320, 1, 0, 0, 0, 531, 532, 5, 11, 0, 0, 532, 533, 5, 293, 0, 0, 533, 534, 3, 72, 36, 0, 534, 535, 5, 8, 0, 0, 535, 536, 5, 49, 0, 0, 536, 537, 3, 286, 143, 0, 537, 1320, 1, 0, 0, 0, 538, 539, 5, 11, 0, 0, 539, 540, 5, 293, 0, 0, 540, 541, 3, 72, 36, 0, 541, 542, 5, 8, 0, 0, 542, 543, 5, 50, 0, 0, 543, 544, 5, 2, 0, 0, 544, 545, 3, 284, 142, 0, 545, 546, 5, 3, 0, 0, 546, 1320, 1, 0, 0, 0, 547, 548, 5, 11, 0, 0, 548, 549, 5, 293, 0, 0, 549, 550, 3, 72, 36, 0, 550, 551, 5, 241, 0, 0, 551, 552, 5, 49, 0, 0, 552, 553, 3, 78, 39, 0, 553, 554, 5, 309, 0, 0, 554, 555, 3, 84, 42, 0, 555, 1320, 1, 0, 0, 0, 556, 557, 5, 11, 0, 0, 557, 558, 5, 293, 0, 0, 558, 559, 3, 72, 36, 0, 559, 560, 5, 96, 0, 0, 560, 562, 5, 49, 0, 0, 561, 563, 3, 162, 81, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 3, 78, 39, 0, 565, 1320, 1, 0, 0, 0, 566, 567, 5, 11, 0, 0, 567, 568, 5, 293, 0, 0, 568, 569, 3, 72, 36, 0, 569, 570, 5, 96, 0, 0, 570, 572, 5, 50, 0, 0, 571, 573, 3, 162, 81, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 5, 2, 0, 0, 575, 576, 3, 82, 41, 0, 576, 577, 5, 3, 0, 0, 577, 1320, 1, 0, 0, 0, 578, 583, 5, 11, 0, 0, 579, 580, 5, 293, 0, 0, 580, 584, 3, 72, 36, 0, 581, 582, 5, 338, 0, 0, 582, 584, 3, 76, 38, 0, 583, 579, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 5, 241, 0, 0, 586, 587, 5, 309, 0, 0, 587, 588, 3, 210, 105, 0, 588, 1320, 1, 0, 0, 0, 589, 594, 5, 11, 0, 0, 590, 591, 5, 293, 0, 0, 591, 595, 3, 72, 36, 0, 592, 593, 5, 338, 0, 0, 593, 595, 3, 76, 38, 0, 594, 590, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 269, 0, 0, 597, 598, 5, 297, 0, 0, 598, 599, 3, 42, 21, 0, 599, 1320, 1, 0, 0, 0, 600, 605, 5, 11, 0, 0, 601, 602, 5, 293, 0, 0, 602, 606, 3, 72, 36, 0, 603, 604, 5, 338, 0, 0, 604, 606, 3, 76, 38, 0, 605, 601, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 328, 0, 0, 608, 610, 5, 297, 0, 0, 609, 611, 3, 162, 81, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 3, 42, 21, 0, 613, 1320, 1, 0, 0, 0, 614, 615, 5, 11, 0, 0, 615, 616, 5, 293, 0, 0, 616, 617, 3, 72, 36, 0, 617, 619, 7, 4, 0, 0, 618, 620, 5, 49, 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 3, 78, 39, 0, 622, 624, 3, 340, 170, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 1320, 1, 0, 0, 0, 625, 626, 5, 11, 0, 0, 626, 627, 5, 293, 0, 0, 627, 629, 3, 72, 36, 0, 628, 630, 3, 22, 11, 0, 629, 628, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 633, 5, 39, 0, 0, 632, 634, 5, 49, 0, 0, 633, 632, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 3, 78, 39, 0, 636, 638, 3, 298, 149, 0, 637, 639, 3, 278, 139, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 1320, 1, 0, 0, 0, 640, 641, 5, 11, 0, 0, 641, 642, 5, 293, 0, 0, 642, 644, 3, 72, 36, 0, 643, 645, 3, 22, 11, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 5, 244, 0, 0, 647, 648, 5, 50, 0, 0, 648, 649, 5, 2, 0, 0, 649, 650, 3, 288, 144, 0, 650, 651, 5, 3, 0, 0, 651, 1320, 1, 0, 0, 0, 652, 653, 5, 11, 0, 0, 653, 654, 5, 293, 0, 0, 654, 656, 3, 72, 36, 0, 655, 657, 3, 22, 11, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 5, 269, 0, 0, 659, 660, 5, 266, 0, 0, 660, 664, 3, 342, 171, 0, 661, 662, 5, 346, 0, 0, 662, 663, 5, 267, 0, 0, 663, 665, 3, 42, 21, 0, 664, 661, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 1320, 1, 0, 0, 0, 666, 667, 5, 11, 0, 0, 667, 668, 5, 293, 0, 0, 668, 670, 3, 72, 36, 0, 669, 671, 3, 22, 11, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 269, 0, 0, 673, 674, 5, 267, 0, 0, 674, 675, 3, 42, 21, 0, 675, 1320, 1, 0, 0, 0, 676, 681, 5, 11, 0, 0, 677, 678, 5, 293, 0, 0, 678, 682, 3, 72, 36, 0, 679, 680, 5, 338, 0, 0, 680, 682, 3, 76, 38, 0, 681, 677, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 685, 5, 8, 0, 0, 684, 686, 3, 160, 80, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 1, 0, 0, 0, 687, 689, 3, 20, 10, 0, 688, 687, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 1320, 1, 0, 0, 0, 692, 693, 5, 11, 0, 0, 693, 694, 5, 293, 0, 0, 694, 695, 3, 72, 36, 0, 695, 696, 3, 22, 11, 0, 696, 697, 5, 241, 0, 0, 697, 698, 5, 309, 0, 0, 698, 699, 3, 22, 11, 0, 699, 1320, 1, 0, 0, 0, 700, 705, 5, 11, 0, 0, 701, 702, 5, 293, 0, 0, 702, 706, 3, 72, 36, 0, 703, 704, 5, 338, 0, 0, 704, 706, 3, 76, 38, 0, 705, 701, 1, 0, 0, 0, 705, 703, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 709, 5, 96, 0, 0, 708, 710, 3, 162, 81, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 716, 3, 22, 11, 0, 712, 713, 5, 4, 0, 0, 713, 715, 3, 22, 11, 0, 714, 712, 1, 0, 0, 0, 715, 718, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 720, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 719, 721, 5, 230, 0, 0, 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 1320, 1, 0, 0, 0, 722, 723, 5, 11, 0, 0, 723, 724, 5, 293, 0, 0, 724, 726, 3, 72, 36, 0, 725, 727, 3, 22, 11, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 5, 269, 0, 0, 729, 730, 5, 170, 0, 0, 730, 731, 3, 342, 171, 0, 731, 1320, 1, 0, 0, 0, 732, 733, 5, 11, 0, 0, 733, 734, 5, 293, 0, 0, 734, 735, 3, 72, 36, 0, 735, 736, 5, 237, 0, 0, 736, 737, 5, 219, 0, 0, 737, 1320, 1, 0, 0, 0, 738, 739, 5, 11, 0, 0, 739, 740, 5, 176, 0, 0, 740, 741, 5, 338, 0, 0, 741, 742, 3, 76, 38, 0, 742, 743, 7, 5, 0, 0, 743, 744, 5, 248, 0, 0, 744, 1320, 1, 0, 0, 0, 745, 746, 5, 11, 0, 0, 746, 747, 5, 176, 0, 0, 747, 748, 5, 338, 0, 0, 748, 749, 3, 76, 38, 0, 749, 750, 5, 269, 0, 0, 750, 751, 5, 297, 0, 0, 751, 752, 3, 42, 21, 0, 752, 1320, 1, 0, 0, 0, 753, 754, 5, 96, 0, 0, 754, 756, 5, 293, 0, 0, 755, 757, 3, 162, 81, 0, 756, 755, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 760, 3, 72, 36, 0, 759, 761, 5, 230, 0, 0, 760, 759, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 1320, 1, 0, 0, 0, 762, 763, 5, 96, 0, 0, 763, 765, 5, 338, 0, 0, 764, 766, 3, 162, 81, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 1320, 3, 76, 38, 0, 768, 769, 5, 96, 0, 0, 769, 770, 5, 176, 0, 0, 770, 772, 5, 338, 0, 0, 771, 773, 3, 162, 81, 0, 772, 771, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 1320, 3, 76, 38, 0, 775, 778, 5, 59, 0, 0, 776, 777, 5, 208, 0, 0, 777, 779, 5, 244, 0, 0, 778, 776, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 784, 1, 0, 0, 0, 780, 782, 5, 128, 0, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 785, 5, 298, 0, 0, 784, 781, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 788, 5, 338, 0, 0, 787, 789, 3, 160, 80, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 792, 3, 74, 37, 0, 791, 793, 3, 188, 94, 0, 792, 791, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 803, 1, 0, 0, 0, 794, 795, 5, 51, 0, 0, 795, 802, 3, 342, 171, 0, 796, 797, 5, 218, 0, 0, 797, 798, 5, 203, 0, 0, 798, 802, 3, 180, 90, 0, 799, 800, 5, 297, 0, 0, 800, 802, 3, 42, 21, 0, 801, 794, 1, 0, 0, 0, 801, 796, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 805, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 803, 1, 0, 0, 0, 806, 807, 5, 20, 0, 0, 807, 808, 3, 16, 8, 0, 808, 1320, 1, 0, 0, 0, 809, 812, 5, 59, 0, 0, 810, 811, 5, 208, 0, 0, 811, 813, 5, 244, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 1, 0, 0, 0, 814, 816, 5, 128, 0, 0, 815, 814, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 5, 298, 0, 0, 818, 819, 5, 338, 0, 0, 819, 824, 3, 74, 37, 0, 820, 821, 5, 2, 0, 0, 821, 822, 3, 296, 148, 0, 822, 823, 5, 3, 0, 0, 823, 825, 1, 0, 0, 0, 824, 820, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 829, 3, 36, 18, 0, 827, 828, 5, 207, 0, 0, 828, 830, 3, 42, 21, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 1320, 1, 0, 0, 0, 831, 832, 5, 11, 0, 0, 832, 833, 5, 338, 0, 0, 833, 835, 3, 76, 38, 0, 834, 836, 5, 20, 0, 0, 835, 834, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 3, 16, 8, 0, 838, 1320, 1, 0, 0, 0, 839, 842, 5, 59, 0, 0, 840, 841, 5, 208, 0, 0, 841, 843, 5, 244, 0, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 846, 5, 298, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 849, 5, 125, 0, 0, 848, 850, 3, 160, 80, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 3, 324, 162, 0, 852, 853, 5, 20, 0, 0, 853, 867, 3, 342, 171, 0, 854, 855, 5, 332, 0, 0, 855, 856, 3, 332, 166, 0, 856, 857, 3, 342, 171, 0, 857, 864, 1, 0, 0, 0, 858, 859, 5, 4, 0, 0, 859, 860, 3, 332, 166, 0, 860, 861, 3, 342, 171, 0, 861, 863, 1, 0, 0, 0, 862, 858, 1, 0, 0, 0, 863, 866, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 868, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 867, 854, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 1320, 1, 0, 0, 0, 869, 870, 5, 59, 0, 0, 870, 871, 5, 176, 0, 0, 871, 873, 5, 338, 0, 0, 872, 874, 3, 160, 80, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 877, 3, 74, 37, 0, 876, 878, 3, 36, 18, 0, 877, 876, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 896, 1, 0, 0, 0, 879, 880, 5, 207, 0, 0, 880, 895, 3, 42, 21, 0, 881, 882, 5, 218, 0, 0, 882, 883, 5, 31, 0, 0, 883, 895, 3, 224, 112, 0, 884, 895, 3, 10, 5, 0, 885, 895, 3, 8, 4, 0, 886, 895, 3, 206, 103, 0, 887, 895, 3, 58, 29, 0, 888, 889, 5, 170, 0, 0, 889, 895, 3, 342, 171, 0, 890, 891, 5, 51, 0, 0, 891, 895, 3, 342, 171, 0, 892, 893, 5, 297, 0, 0, 893, 895, 3, 42, 21, 0, 894, 879, 1, 0, 0, 0, 894, 881, 1, 0, 0, 0, 894, 884, 1, 0, 0, 0, 894, 885, 1, 0, 0, 0, 894, 886, 1, 0, 0, 0, 894, 887, 1, 0, 0, 0, 894, 888, 1, 0, 0, 0, 894, 890, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 899, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 900, 5, 20, 0, 0, 900, 901, 3, 16, 8, 0, 901, 1320, 1, 0, 0, 0, 902, 904, 5, 96, 0, 0, 903, 905, 5, 298, 0, 0, 904, 903, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 908, 5, 125, 0, 0, 907, 909, 3, 162, 81, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 1320, 3, 322, 161, 0, 911, 914, 5, 81, 0, 0, 912, 913, 5, 208, 0, 0, 913, 915, 5, 244, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 917, 1, 0, 0, 0, 916, 918, 5, 336, 0, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 3, 322, 161, 0, 920, 922, 3, 282, 141, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 924, 1, 0, 0, 0, 923, 925, 3, 294, 147, 0, 924, 923, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 1320, 1, 0, 0, 0, 926, 927, 5, 96, 0, 0, 927, 928, 5, 298, 0, 0, 928, 930, 5, 336, 0, 0, 929, 931, 3, 162, 81, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 935, 1, 0, 0, 0, 932, 936, 3, 72, 36, 0, 933, 936, 3, 76, 38, 0, 934, 936, 3, 322, 161, 0, 935, 932, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 1320, 1, 0, 0, 0, 937, 939, 5, 106, 0, 0, 938, 940, 7, 6, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 1320, 3, 4, 2, 0, 942, 943, 5, 273, 0, 0, 943, 946, 5, 294, 0, 0, 944, 945, 7, 3, 0, 0, 945, 947, 3, 66, 33, 0, 946, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 952, 1, 0, 0, 0, 948, 950, 5, 163, 0, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 953, 3, 342, 171, 0, 952, 949, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 1320, 1, 0, 0, 0, 954, 955, 5, 273, 0, 0, 955, 956, 5, 293, 0, 0, 956, 959, 5, 108, 0, 0, 957, 958, 7, 3, 0, 0, 958, 960, 3, 66, 33, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 5, 163, 0, 0, 962, 964, 3, 342, 171, 0, 963, 965, 3, 22, 11, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 1320, 1, 0, 0, 0, 966, 967, 5, 273, 0, 0, 967, 968, 5, 297, 0, 0, 968, 973, 3, 72, 36, 0, 969, 970, 5, 2, 0, 0, 970, 971, 3, 46, 23, 0, 971, 972, 5, 3, 0, 0, 972, 974, 1, 0, 0, 0, 973, 969, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1320, 1, 0, 0, 0, 975, 976, 5, 273, 0, 0, 976, 977, 5, 50, 0, 0, 977, 978, 7, 3, 0, 0, 978, 981, 3, 72, 36, 0, 979, 980, 7, 3, 0, 0, 980, 982, 3, 66, 33, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 1320, 1, 0, 0, 0, 983, 984, 5, 273, 0, 0, 984, 987, 5, 339, 0, 0, 985, 986, 7, 3, 0, 0, 986, 988, 3, 66, 33, 0, 987, 985, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 993, 1, 0, 0, 0, 989, 991, 5, 163, 0, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 994, 3, 342, 171, 0, 993, 990, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1320, 1, 0, 0, 0, 995, 996, 5, 273, 0, 0, 996, 997, 5, 219, 0, 0, 997, 999, 3, 72, 36, 0, 998, 1000, 3, 22, 11, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1320, 1, 0, 0, 0, 1001, 1003, 5, 273, 0, 0, 1002, 1004, 7, 7, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1008, 5, 126, 0, 0, 1006, 1007, 7, 3, 0, 0, 1007, 1009, 3, 66, 33, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1017, 1, 0, 0, 0, 1010, 1012, 5, 163, 0, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1015, 1, 0, 0, 0, 1013, 1016, 3, 210, 105, 0, 1014, 1016, 3, 342, 171, 0, 1015, 1013, 1, 0, 0, 0, 1015, 1014, 1, 0, 0, 0, 1016, 1018, 1, 0, 0, 0, 1017, 1011, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1320, 1, 0, 0, 0, 1019, 1020, 5, 273, 0, 0, 1020, 1021, 5, 59, 0, 0, 1021, 1022, 5, 293, 0, 0, 1022, 1025, 3, 72, 36, 0, 1023, 1024, 5, 20, 0, 0, 1024, 1026, 5, 266, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1320, 1, 0, 0, 0, 1027, 1028, 5, 273, 0, 0, 1028, 1029, 5, 62, 0, 0, 1029, 1320, 3, 26, 13, 0, 1030, 1031, 5, 273, 0, 0, 1031, 1036, 5, 38, 0, 0, 1032, 1034, 5, 163, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 3, 342, 171, 0, 1036, 1033, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1320, 1, 0, 0, 0, 1038, 1039, 5, 273, 0, 0, 1039, 1040, 5, 176, 0, 0, 1040, 1043, 5, 339, 0, 0, 1041, 1042, 7, 3, 0, 0, 1042, 1044, 3, 66, 33, 0, 1043, 1041, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1049, 1, 0, 0, 0, 1045, 1047, 5, 163, 0, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 3, 342, 171, 0, 1049, 1046, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1320, 1, 0, 0, 0, 1051, 1052, 5, 273, 0, 0, 1052, 1053, 5, 59, 0, 0, 1053, 1054, 5, 176, 0, 0, 1054, 1055, 5, 338, 0, 0, 1055, 1058, 3, 76, 38, 0, 1056, 1057, 5, 20, 0, 0, 1057, 1059, 5, 266, 0, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1320, 1, 0, 0, 0, 1060, 1061, 7, 8, 0, 0, 1061, 1063, 5, 125, 0, 0, 1062, 1064, 5, 108, 0, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1320, 3, 28, 14, 0, 1066, 1067, 7, 8, 0, 0, 1067, 1069, 5, 72, 0, 0, 1068, 1070, 5, 108, 0, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1320, 3, 66, 33, 0, 1072, 1074, 7, 8, 0, 0, 1073, 1075, 5, 293, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 1, 0, 0, 0, 1076, 1078, 7, 9, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 3, 72, 36, 0, 1080, 1082, 3, 22, 11, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1085, 3, 30, 15, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1320, 1, 0, 0, 0, 1086, 1088, 7, 8, 0, 0, 1087, 1089, 5, 232, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1320, 3, 16, 8, 0, 1091, 1092, 5, 51, 0, 0, 1092, 1098, 5, 203, 0, 0, 1093, 1094, 3, 26, 13, 0, 1094, 1095, 3, 66, 33, 0, 1095, 1099, 1, 0, 0, 0, 1096, 1097, 5, 293, 0, 0, 1097, 1099, 3, 72, 36, 0, 1098, 1093, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1103, 5, 153, 0, 0, 1101, 1104, 3, 342, 171, 0, 1102, 1104, 5, 198, 0, 0, 1103, 1101, 1, 0, 0, 0, 1103, 1102, 1, 0, 0, 0, 1104, 1320, 1, 0, 0, 0, 1105, 1106, 5, 240, 0, 0, 1106, 1107, 5, 293, 0, 0, 1107, 1320, 3, 72, 36, 0, 1108, 1109, 5, 240, 0, 0, 1109, 1110, 5, 125, 0, 0, 1110, 1320, 3, 322, 161, 0, 1111, 1119, 5, 240, 0, 0, 1112, 1120, 3, 342, 171, 0, 1113, 1115, 9, 0, 0, 0, 1114, 1113, 1, 0, 0, 0, 1115, 1118, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1116, 1114, 1, 0, 0, 0, 1117, 1120, 1, 0, 0, 0, 1118, 1116, 1, 0, 0, 0, 1119, 1112, 1, 0, 0, 0, 1119, 1116, 1, 0, 0, 0, 1120, 1320, 1, 0, 0, 0, 1121, 1122, 5, 240, 0, 0, 1122, 1123, 5, 176, 0, 0, 1123, 1124, 5, 338, 0, 0, 1124, 1320, 3, 76, 38, 0, 1125, 1127, 5, 33, 0, 0, 1126, 1128, 5, 159, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 5, 293, 0, 0, 1130, 1133, 3, 72, 36, 0, 1131, 1132, 5, 207, 0, 0, 1132, 1134, 3, 42, 21, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1139, 1, 0, 0, 0, 1135, 1137, 5, 20, 0, 0, 1136, 1135, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1140, 3, 16, 8, 0, 1139, 1136, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1320, 1, 0, 0, 0, 1141, 1142, 5, 322, 0, 0, 1142, 1144, 5, 293, 0, 0, 1143, 1145, 3, 162, 81, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1320, 3, 72, 36, 0, 1147, 1148, 5, 43, 0, 0, 1148, 1320, 5, 33, 0, 0, 1149, 1150, 5, 168, 0, 0, 1150, 1152, 5, 70, 0, 0, 1151, 1153, 5, 169, 0, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 5, 145, 0, 0, 1155, 1157, 3, 342, 171, 0, 1156, 1158, 5, 216, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 5, 152, 0, 0, 1160, 1161, 5, 293, 0, 0, 1161, 1163, 3, 72, 36, 0, 1162, 1164, 3, 22, 11, 0, 1163, 1162, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1320, 1, 0, 0, 0, 1165, 1166, 5, 317, 0, 0, 1166, 1167, 5, 293, 0, 0, 1167, 1169, 3, 72, 36, 0, 1168, 1170, 3, 22, 11, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1320, 1, 0, 0, 0, 1171, 1173, 5, 188, 0, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 5, 242, 0, 0, 1175, 1176, 5, 293, 0, 0, 1176, 1179, 3, 72, 36, 0, 1177, 1178, 7, 10, 0, 0, 1178, 1180, 5, 219, 0, 0, 1179, 1177, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1320, 1, 0, 0, 0, 1181, 1182, 7, 11, 0, 0, 1182, 1186, 3, 332, 166, 0, 1183, 1185, 9, 0, 0, 0, 1184, 1183, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1320, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1190, 5, 269, 0, 0, 1190, 1194, 5, 253, 0, 0, 1191, 1193, 9, 0, 0, 0, 1192, 1191, 1, 0, 0, 0, 1193, 1196, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1320, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1198, 5, 269, 0, 0, 1198, 1199, 5, 301, 0, 0, 1199, 1200, 5, 350, 0, 0, 1200, 1320, 3, 262, 131, 0, 1201, 1202, 5, 269, 0, 0, 1202, 1203, 5, 301, 0, 0, 1203, 1206, 5, 350, 0, 0, 1204, 1207, 3, 342, 171, 0, 1205, 1207, 5, 169, 0, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 1320, 1, 0, 0, 0, 1208, 1209, 5, 269, 0, 0, 1209, 1210, 5, 301, 0, 0, 1210, 1214, 5, 350, 0, 0, 1211, 1213, 9, 0, 0, 0, 1212, 1211, 1, 0, 0, 0, 1213, 1216, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1320, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1217, 1218, 5, 269, 0, 0, 1218, 1219, 7, 12, 0, 0, 1219, 1320, 3, 120, 60, 0, 1220, 1221, 5, 269, 0, 0, 1221, 1222, 7, 12, 0, 0, 1222, 1223, 5, 2, 0, 0, 1223, 1224, 3, 208, 104, 0, 1224, 1225, 5, 3, 0, 0, 1225, 1226, 5, 352, 0, 0, 1226, 1227, 5, 2, 0, 0, 1227, 1228, 3, 16, 8, 0, 1228, 1229, 5, 3, 0, 0, 1229, 1320, 1, 0, 0, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 3, 336, 168, 0, 1232, 1233, 5, 352, 0, 0, 1233, 1234, 5, 389, 0, 0, 1234, 1320, 1, 0, 0, 0, 1235, 1236, 5, 269, 0, 0, 1236, 1244, 3, 336, 168, 0, 1237, 1241, 5, 352, 0, 0, 1238, 1240, 9, 0, 0, 0, 1239, 1238, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1237, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1320, 1, 0, 0, 0, 1246, 1250, 5, 269, 0, 0, 1247, 1249, 9, 0, 0, 0, 1248, 1247, 1, 0, 0, 0, 1249, 1252, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1250, 1248, 1, 0, 0, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1250, 1, 0, 0, 0, 1253, 1254, 5, 352, 0, 0, 1254, 1320, 5, 389, 0, 0, 1255, 1259, 5, 269, 0, 0, 1256, 1258, 9, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1320, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1263, 5, 245, 0, 0, 1263, 1320, 3, 336, 168, 0, 1264, 1268, 5, 245, 0, 0, 1265, 1267, 9, 0, 0, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1320, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 5, 59, 0, 0, 1272, 1274, 5, 142, 0, 0, 1273, 1275, 3, 160, 80, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 3, 332, 166, 0, 1277, 1279, 5, 203, 0, 0, 1278, 1280, 5, 293, 0, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1284, 3, 72, 36, 0, 1282, 1283, 5, 332, 0, 0, 1283, 1285, 3, 332, 166, 0, 1284, 1282, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 5, 2, 0, 0, 1287, 1288, 3, 212, 106, 0, 1288, 1291, 5, 3, 0, 0, 1289, 1290, 5, 207, 0, 0, 1290, 1292, 3, 42, 21, 0, 1291, 1289, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1320, 1, 0, 0, 0, 1293, 1294, 5, 96, 0, 0, 1294, 1296, 5, 142, 0, 0, 1295, 1297, 3, 162, 81, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 3, 332, 166, 0, 1299, 1301, 5, 203, 0, 0, 1300, 1302, 5, 293, 0, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 3, 72, 36, 0, 1304, 1320, 1, 0, 0, 0, 1305, 1306, 5, 205, 0, 0, 1306, 1308, 3, 72, 36, 0, 1307, 1309, 3, 124, 62, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 3, 312, 156, 0, 1311, 1320, 1, 0, 0, 0, 1312, 1316, 3, 6, 3, 0, 1313, 1315, 9, 0, 0, 0, 1314, 1313, 1, 0, 0, 0, 1315, 1318, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1320, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1319, 362, 1, 0, 0, 0, 1319, 364, 1, 0, 0, 0, 1319, 367, 1, 0, 0, 0, 1319, 372, 1, 0, 0, 0, 1319, 378, 1, 0, 0, 0, 1319, 396, 1, 0, 0, 0, 1319, 403, 1, 0, 0, 0, 1319, 410, 1, 0, 0, 0, 1319, 419, 1, 0, 0, 0, 1319, 431, 1, 0, 0, 0, 1319, 459, 1, 0, 0, 0, 1319, 482, 1, 0, 0, 0, 1319, 503, 1, 0, 0, 0, 1319, 520, 1, 0, 0, 0, 1319, 531, 1, 0, 0, 0, 1319, 538, 1, 0, 0, 0, 1319, 547, 1, 0, 0, 0, 1319, 556, 1, 0, 0, 0, 1319, 566, 1, 0, 0, 0, 1319, 578, 1, 0, 0, 0, 1319, 589, 1, 0, 0, 0, 1319, 600, 1, 0, 0, 0, 1319, 614, 1, 0, 0, 0, 1319, 625, 1, 0, 0, 0, 1319, 640, 1, 0, 0, 0, 1319, 652, 1, 0, 0, 0, 1319, 666, 1, 0, 0, 0, 1319, 676, 1, 0, 0, 0, 1319, 692, 1, 0, 0, 0, 1319, 700, 1, 0, 0, 0, 1319, 722, 1, 0, 0, 0, 1319, 732, 1, 0, 0, 0, 1319, 738, 1, 0, 0, 0, 1319, 745, 1, 0, 0, 0, 1319, 753, 1, 0, 0, 0, 1319, 762, 1, 0, 0, 0, 1319, 768, 1, 0, 0, 0, 1319, 775, 1, 0, 0, 0, 1319, 809, 1, 0, 0, 0, 1319, 831, 1, 0, 0, 0, 1319, 839, 1, 0, 0, 0, 1319, 869, 1, 0, 0, 0, 1319, 902, 1, 0, 0, 0, 1319, 911, 1, 0, 0, 0, 1319, 926, 1, 0, 0, 0, 1319, 937, 1, 0, 0, 0, 1319, 942, 1, 0, 0, 0, 1319, 954, 1, 0, 0, 0, 1319, 966, 1, 0, 0, 0, 1319, 975, 1, 0, 0, 0, 1319, 983, 1, 0, 0, 0, 1319, 995, 1, 0, 0, 0, 1319, 1001, 1, 0, 0, 0, 1319, 1019, 1, 0, 0, 0, 1319, 1027, 1, 0, 0, 0, 1319, 1030, 1, 0, 0, 0, 1319, 1038, 1, 0, 0, 0, 1319, 1051, 1, 0, 0, 0, 1319, 1060, 1, 0, 0, 0, 1319, 1066, 1, 0, 0, 0, 1319, 1072, 1, 0, 0, 0, 1319, 1086, 1, 0, 0, 0, 1319, 1091, 1, 0, 0, 0, 1319, 1105, 1, 0, 0, 0, 1319, 1108, 1, 0, 0, 0, 1319, 1111, 1, 0, 0, 0, 1319, 1121, 1, 0, 0, 0, 1319, 1125, 1, 0, 0, 0, 1319, 1141, 1, 0, 0, 0, 1319, 1147, 1, 0, 0, 0, 1319, 1149, 1, 0, 0, 0, 1319, 1165, 1, 0, 0, 0, 1319, 1172, 1, 0, 0, 0, 1319, 1181, 1, 0, 0, 0, 1319, 1189, 1, 0, 0, 0, 1319, 1197, 1, 0, 0, 0, 1319, 1201, 1, 0, 0, 0, 1319, 1208, 1, 0, 0, 0, 1319, 1217, 1, 0, 0, 0, 1319, 1220, 1, 0, 0, 0, 1319, 1230, 1, 0, 0, 0, 1319, 1235, 1, 0, 0, 0, 1319, 1246, 1, 0, 0, 0, 1319, 1255, 1, 0, 0, 0, 1319, 1262, 1, 0, 0, 0, 1319, 1264, 1, 0, 0, 0, 1319, 1271, 1, 0, 0, 0, 1319, 1293, 1, 0, 0, 0, 1319, 1305, 1, 0, 0, 0, 1319, 1312, 1, 0, 0, 0, 1320, 5, 1, 0, 0, 0, 1321, 1322, 7, 13, 0, 0, 1322, 1415, 5, 253, 0, 0, 1323, 1325, 7, 14, 0, 0, 1324, 1326, 5, 253, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1415, 1, 0, 0, 0, 1327, 1328, 5, 273, 0, 0, 1328, 1415, 7, 15, 0, 0, 1329, 1330, 5, 273, 0, 0, 1330, 1332, 5, 253, 0, 0, 1331, 1333, 5, 129, 0, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1415, 1, 0, 0, 0, 1334, 1336, 5, 273, 0, 0, 1335, 1337, 5, 62, 0, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1415, 5, 254, 0, 0, 1339, 1340, 5, 273, 0, 0, 1340, 1341, 5, 59, 0, 0, 1341, 1415, 5, 293, 0, 0, 1342, 1343, 7, 16, 0, 0, 1343, 1415, 5, 142, 0, 0, 1344, 1345, 7, 17, 0, 0, 1345, 1415, 5, 293, 0, 0, 1346, 1347, 7, 18, 0, 0, 1347, 1415, 5, 72, 0, 0, 1348, 1349, 7, 13, 0, 0, 1349, 1350, 5, 298, 0, 0, 1350, 1415, 5, 175, 0, 0, 1351, 1352, 5, 11, 0, 0, 1352, 1353, 5, 293, 0, 0, 1353, 1354, 3, 72, 36, 0, 1354, 1355, 5, 197, 0, 0, 1355, 1356, 7, 19, 0, 0, 1356, 1415, 1, 0, 0, 0, 1357, 1358, 5, 11, 0, 0, 1358, 1359, 5, 293, 0, 0, 1359, 1360, 3, 72, 36, 0, 1360, 1361, 7, 20, 0, 0, 1361, 1362, 5, 31, 0, 0, 1362, 1415, 1, 0, 0, 0, 1363, 1364, 5, 11, 0, 0, 1364, 1365, 5, 293, 0, 0, 1365, 1366, 3, 72, 36, 0, 1366, 1367, 5, 275, 0, 0, 1367, 1368, 5, 31, 0, 0, 1368, 1415, 1, 0, 0, 0, 1369, 1370, 5, 11, 0, 0, 1370, 1371, 5, 293, 0, 0, 1371, 1372, 3, 72, 36, 0, 1372, 1373, 5, 197, 0, 0, 1373, 1374, 5, 283, 0, 0, 1374, 1375, 5, 20, 0, 0, 1375, 1376, 5, 89, 0, 0, 1376, 1415, 1, 0, 0, 0, 1377, 1378, 5, 11, 0, 0, 1378, 1379, 5, 293, 0, 0, 1379, 1380, 3, 72, 36, 0, 1380, 1381, 5, 269, 0, 0, 1381, 1382, 5, 275, 0, 0, 1382, 1383, 5, 170, 0, 0, 1383, 1415, 1, 0, 0, 0, 1384, 1385, 5, 11, 0, 0, 1385, 1386, 5, 293, 0, 0, 1386, 1387, 3, 72, 36, 0, 1387, 1388, 7, 21, 0, 0, 1388, 1389, 5, 217, 0, 0, 1389, 1415, 1, 0, 0, 0, 1390, 1391, 5, 11, 0, 0, 1391, 1392, 5, 293, 0, 0, 1392, 1393, 3, 72, 36, 0, 1393, 1394, 5, 310, 0, 0, 1394, 1415, 1, 0, 0, 0, 1395, 1396, 5, 11, 0, 0, 1396, 1397, 5, 293, 0, 0, 1397, 1399, 3, 72, 36, 0, 1398, 1400, 3, 22, 11, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1407, 1, 0, 0, 0, 1401, 1408, 5, 53, 0, 0, 1402, 1408, 5, 56, 0, 0, 1403, 1404, 5, 269, 0, 0, 1404, 1408, 5, 115, 0, 0, 1405, 1406, 5, 244, 0, 0, 1406, 1408, 5, 50, 0, 0, 1407, 1401, 1, 0, 0, 0, 1407, 1402, 1, 0, 0, 0, 1407, 1403, 1, 0, 0, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1415, 1, 0, 0, 0, 1409, 1410, 5, 281, 0, 0, 1410, 1415, 5, 312, 0, 0, 1411, 1415, 5, 52, 0, 0, 1412, 1415, 5, 255, 0, 0, 1413, 1415, 5, 88, 0, 0, 1414, 1321, 1, 0, 0, 0, 1414, 1323, 1, 0, 0, 0, 1414, 1327, 1, 0, 0, 0, 1414, 1329, 1, 0, 0, 0, 1414, 1334, 1, 0, 0, 0, 1414, 1339, 1, 0, 0, 0, 1414, 1342, 1, 0, 0, 0, 1414, 1344, 1, 0, 0, 0, 1414, 1346, 1, 0, 0, 0, 1414, 1348, 1, 0, 0, 0, 1414, 1351, 1, 0, 0, 0, 1414, 1357, 1, 0, 0, 0, 1414, 1363, 1, 0, 0, 0, 1414, 1369, 1, 0, 0, 0, 1414, 1377, 1, 0, 0, 0, 1414, 1384, 1, 0, 0, 0, 1414, 1390, 1, 0, 0, 0, 1414, 1395, 1, 0, 0, 0, 1414, 1409, 1, 0, 0, 0, 1414, 1411, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1413, 1, 0, 0, 0, 1415, 7, 1, 0, 0, 0, 1416, 1417, 5, 45, 0, 0, 1417, 1418, 5, 31, 0, 0, 1418, 1422, 3, 180, 90, 0, 1419, 1420, 5, 279, 0, 0, 1420, 1421, 5, 31, 0, 0, 1421, 1423, 3, 184, 92, 0, 1422, 1419, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1425, 5, 152, 0, 0, 1425, 1426, 5, 382, 0, 0, 1426, 1427, 5, 30, 0, 0, 1427, 9, 1, 0, 0, 0, 1428, 1429, 5, 275, 0, 0, 1429, 1430, 5, 31, 0, 0, 1430, 1431, 3, 180, 90, 0, 1431, 1434, 5, 203, 0, 0, 1432, 1435, 3, 54, 27, 0, 1433, 1435, 3, 56, 28, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1433, 1, 0, 0, 0, 1435, 1439, 1, 0, 0, 0, 1436, 1437, 5, 283, 0, 0, 1437, 1438, 5, 20, 0, 0, 1438, 1440, 5, 89, 0, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 11, 1, 0, 0, 0, 1441, 1442, 5, 170, 0, 0, 1442, 1443, 3, 342, 171, 0, 1443, 13, 1, 0, 0, 0, 1444, 1445, 5, 51, 0, 0, 1445, 1446, 3, 342, 171, 0, 1446, 15, 1, 0, 0, 0, 1447, 1449, 3, 32, 16, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 3, 96, 48, 0, 1451, 1452, 3, 88, 44, 0, 1452, 17, 1, 0, 0, 0, 1453, 1454, 5, 147, 0, 0, 1454, 1456, 5, 216, 0, 0, 1455, 1457, 5, 293, 0, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1463, 3, 72, 36, 0, 1459, 1461, 3, 22, 11, 0, 1460, 1462, 3, 160, 80, 0, 1461, 1460, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1464, 1, 0, 0, 0, 1463, 1459, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1471, 1, 0, 0, 0, 1465, 1466, 5, 31, 0, 0, 1466, 1472, 5, 189, 0, 0, 1467, 1468, 5, 2, 0, 0, 1468, 1469, 3, 82, 41, 0, 1469, 1470, 5, 3, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1465, 1, 0, 0, 0, 1471, 1467, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1530, 1, 0, 0, 0, 1473, 1474, 5, 147, 0, 0, 1474, 1476, 5, 152, 0, 0, 1475, 1477, 5, 293, 0, 0, 1476, 1475, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 3, 72, 36, 0, 1479, 1481, 3, 22, 11, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1483, 1, 0, 0, 0, 1482, 1484, 3, 160, 80, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1491, 1, 0, 0, 0, 1485, 1486, 5, 31, 0, 0, 1486, 1492, 5, 189, 0, 0, 1487, 1488, 5, 2, 0, 0, 1488, 1489, 3, 82, 41, 0, 1489, 1490, 5, 3, 0, 0, 1490, 1492, 1, 0, 0, 0, 1491, 1485, 1, 0, 0, 0, 1491, 1487, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1530, 1, 0, 0, 0, 1493, 1494, 5, 147, 0, 0, 1494, 1496, 5, 152, 0, 0, 1495, 1497, 5, 293, 0, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 3, 72, 36, 0, 1499, 1500, 5, 244, 0, 0, 1500, 1501, 3, 124, 62, 0, 1501, 1530, 1, 0, 0, 0, 1502, 1503, 5, 147, 0, 0, 1503, 1505, 5, 216, 0, 0, 1504, 1506, 5, 169, 0, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 90, 0, 0, 1508, 1510, 3, 342, 171, 0, 1509, 1511, 3, 206, 103, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1513, 1, 0, 0, 0, 1512, 1514, 3, 58, 29, 0, 1513, 1512, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1530, 1, 0, 0, 0, 1515, 1516, 5, 147, 0, 0, 1516, 1518, 5, 216, 0, 0, 1517, 1519, 5, 169, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 5, 90, 0, 0, 1521, 1523, 3, 342, 171, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1527, 3, 36, 18, 0, 1525, 1526, 5, 207, 0, 0, 1526, 1528, 3, 42, 21, 0, 1527, 1525, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1530, 1, 0, 0, 0, 1529, 1453, 1, 0, 0, 0, 1529, 1473, 1, 0, 0, 0, 1529, 1493, 1, 0, 0, 0, 1529, 1502, 1, 0, 0, 0, 1529, 1515, 1, 0, 0, 0, 1530, 19, 1, 0, 0, 0, 1531, 1534, 3, 22, 11, 0, 1532, 1533, 5, 170, 0, 0, 1533, 1535, 3, 342, 171, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 21, 1, 0, 0, 0, 1536, 1537, 5, 217, 0, 0, 1537, 1538, 5, 2, 0, 0, 1538, 1543, 3, 24, 12, 0, 1539, 1540, 5, 4, 0, 0, 1540, 1542, 3, 24, 12, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1545, 1, 0, 0, 0, 1543, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 1, 0, 0, 0, 1545, 1543, 1, 0, 0, 0, 1546, 1547, 5, 3, 0, 0, 1547, 23, 1, 0, 0, 0, 1548, 1551, 3, 332, 166, 0, 1549, 1550, 5, 352, 0, 0, 1550, 1552, 3, 252, 126, 0, 1551, 1549, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1558, 1, 0, 0, 0, 1553, 1554, 3, 332, 166, 0, 1554, 1555, 5, 352, 0, 0, 1555, 1556, 5, 82, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1548, 1, 0, 0, 0, 1557, 1553, 1, 0, 0, 0, 1558, 25, 1, 0, 0, 0, 1559, 1560, 7, 22, 0, 0, 1560, 27, 1, 0, 0, 0, 1561, 1567, 3, 86, 43, 0, 1562, 1567, 3, 342, 171, 0, 1563, 1567, 3, 254, 127, 0, 1564, 1567, 3, 256, 128, 0, 1565, 1567, 3, 258, 129, 0, 1566, 1561, 1, 0, 0, 0, 1566, 1562, 1, 0, 0, 0, 1566, 1563, 1, 0, 0, 0, 1566, 1564, 1, 0, 0, 0, 1566, 1565, 1, 0, 0, 0, 1567, 29, 1, 0, 0, 0, 1568, 1573, 3, 332, 166, 0, 1569, 1570, 5, 5, 0, 0, 1570, 1572, 3, 332, 166, 0, 1571, 1569, 1, 0, 0, 0, 1572, 1575, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 31, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1577, 5, 346, 0, 0, 1577, 1582, 3, 34, 17, 0, 1578, 1579, 5, 4, 0, 0, 1579, 1581, 3, 34, 17, 0, 1580, 1578, 1, 0, 0, 0, 1581, 1584, 1, 0, 0, 0, 1582, 1580, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 33, 1, 0, 0, 0, 1584, 1582, 1, 0, 0, 0, 1585, 1587, 3, 328, 164, 0, 1586, 1588, 3, 180, 90, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1590, 1, 0, 0, 0, 1589, 1591, 5, 20, 0, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 5, 2, 0, 0, 1593, 1594, 3, 16, 8, 0, 1594, 1595, 5, 3, 0, 0, 1595, 35, 1, 0, 0, 0, 1596, 1597, 5, 332, 0, 0, 1597, 1598, 3, 210, 105, 0, 1598, 37, 1, 0, 0, 0, 1599, 1600, 5, 207, 0, 0, 1600, 1616, 3, 50, 25, 0, 1601, 1602, 5, 218, 0, 0, 1602, 1603, 5, 31, 0, 0, 1603, 1616, 3, 224, 112, 0, 1604, 1616, 3, 10, 5, 0, 1605, 1616, 3, 8, 4, 0, 1606, 1616, 3, 206, 103, 0, 1607, 1616, 3, 58, 29, 0, 1608, 1609, 5, 170, 0, 0, 1609, 1616, 3, 342, 171, 0, 1610, 1611, 5, 51, 0, 0, 1611, 1616, 3, 342, 171, 0, 1612, 1613, 5, 297, 0, 0, 1613, 1616, 3, 42, 21, 0, 1614, 1616, 3, 40, 20, 0, 1615, 1599, 1, 0, 0, 0, 1615, 1601, 1, 0, 0, 0, 1615, 1604, 1, 0, 0, 0, 1615, 1605, 1, 0, 0, 0, 1615, 1606, 1, 0, 0, 0, 1615, 1607, 1, 0, 0, 0, 1615, 1608, 1, 0, 0, 0, 1615, 1610, 1, 0, 0, 0, 1615, 1612, 1, 0, 0, 0, 1615, 1614, 1, 0, 0, 0, 1616, 1619, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 39, 1, 0, 0, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1621, 5, 162, 0, 0, 1621, 1622, 5, 382, 0, 0, 1622, 41, 1, 0, 0, 0, 1623, 1624, 5, 2, 0, 0, 1624, 1629, 3, 44, 22, 0, 1625, 1626, 5, 4, 0, 0, 1626, 1628, 3, 44, 22, 0, 1627, 1625, 1, 0, 0, 0, 1628, 1631, 1, 0, 0, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 1, 0, 0, 0, 1631, 1629, 1, 0, 0, 0, 1632, 1633, 5, 3, 0, 0, 1633, 43, 1, 0, 0, 0, 1634, 1639, 3, 46, 23, 0, 1635, 1637, 5, 352, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1640, 3, 48, 24, 0, 1639, 1636, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 45, 1, 0, 0, 0, 1641, 1646, 3, 332, 166, 0, 1642, 1643, 5, 5, 0, 0, 1643, 1645, 3, 332, 166, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1648, 1, 0, 0, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1651, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1649, 1651, 3, 342, 171, 0, 1650, 1641, 1, 0, 0, 0, 1650, 1649, 1, 0, 0, 0, 1651, 47, 1, 0, 0, 0, 1652, 1657, 5, 382, 0, 0, 1653, 1657, 5, 384, 0, 0, 1654, 1657, 3, 260, 130, 0, 1655, 1657, 3, 342, 171, 0, 1656, 1652, 1, 0, 0, 0, 1656, 1653, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1656, 1655, 1, 0, 0, 0, 1657, 49, 1, 0, 0, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1664, 3, 52, 26, 0, 1660, 1661, 5, 4, 0, 0, 1661, 1663, 3, 52, 26, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1668, 5, 3, 0, 0, 1668, 51, 1, 0, 0, 0, 1669, 1674, 3, 46, 23, 0, 1670, 1672, 5, 352, 0, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 3, 232, 116, 0, 1674, 1671, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 53, 1, 0, 0, 0, 1676, 1677, 5, 2, 0, 0, 1677, 1682, 3, 252, 126, 0, 1678, 1679, 5, 4, 0, 0, 1679, 1681, 3, 252, 126, 0, 1680, 1678, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1685, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1685, 1686, 5, 3, 0, 0, 1686, 55, 1, 0, 0, 0, 1687, 1688, 5, 2, 0, 0, 1688, 1693, 3, 54, 27, 0, 1689, 1690, 5, 4, 0, 0, 1690, 1692, 3, 54, 27, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1696, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1697, 5, 3, 0, 0, 1697, 57, 1, 0, 0, 0, 1698, 1699, 5, 283, 0, 0, 1699, 1700, 5, 20, 0, 0, 1700, 1705, 3, 60, 30, 0, 1701, 1702, 5, 283, 0, 0, 1702, 1703, 5, 31, 0, 0, 1703, 1705, 3, 62, 31, 0, 1704, 1698, 1, 0, 0, 0, 1704, 1701, 1, 0, 0, 0, 1705, 59, 1, 0, 0, 0, 1706, 1707, 5, 146, 0, 0, 1707, 1708, 3, 342, 171, 0, 1708, 1709, 5, 212, 0, 0, 1709, 1710, 3, 342, 171, 0, 1710, 1713, 1, 0, 0, 0, 1711, 1713, 3, 332, 166, 0, 1712, 1706, 1, 0, 0, 0, 1712, 1711, 1, 0, 0, 0, 1713, 61, 1, 0, 0, 0, 1714, 1718, 3, 342, 171, 0, 1715, 1716, 5, 346, 0, 0, 1716, 1717, 5, 267, 0, 0, 1717, 1719, 3, 42, 21, 0, 1718, 1715, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 63, 1, 0, 0, 0, 1720, 1721, 3, 18, 9, 0, 1721, 1722, 3, 16, 8, 0, 1722, 1779, 1, 0, 0, 0, 1723, 1727, 3, 132, 66, 0, 1724, 1725, 3, 18, 9, 0, 1725, 1726, 3, 102, 51, 0, 1726, 1728, 1, 0, 0, 0, 1727, 1724, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1779, 1, 0, 0, 0, 1731, 1732, 5, 84, 0, 0, 1732, 1733, 5, 123, 0, 0, 1733, 1734, 3, 72, 36, 0, 1734, 1736, 3, 204, 102, 0, 1735, 1737, 3, 124, 62, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1779, 1, 0, 0, 0, 1738, 1739, 5, 329, 0, 0, 1739, 1740, 3, 72, 36, 0, 1740, 1741, 3, 204, 102, 0, 1741, 1743, 3, 110, 55, 0, 1742, 1744, 3, 124, 62, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1779, 1, 0, 0, 0, 1745, 1746, 5, 179, 0, 0, 1746, 1747, 5, 152, 0, 0, 1747, 1748, 3, 72, 36, 0, 1748, 1749, 3, 204, 102, 0, 1749, 1755, 5, 332, 0, 0, 1750, 1756, 3, 86, 43, 0, 1751, 1752, 5, 2, 0, 0, 1752, 1753, 3, 16, 8, 0, 1753, 1754, 5, 3, 0, 0, 1754, 1756, 1, 0, 0, 0, 1755, 1750, 1, 0, 0, 0, 1755, 1751, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 3, 204, 102, 0, 1758, 1759, 5, 203, 0, 0, 1759, 1763, 3, 240, 120, 0, 1760, 1762, 3, 112, 56, 0, 1761, 1760, 1, 0, 0, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1769, 1, 0, 0, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1768, 3, 114, 57, 0, 1767, 1766, 1, 0, 0, 0, 1768, 1771, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1775, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1772, 1774, 3, 116, 58, 0, 1773, 1772, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1779, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1720, 1, 0, 0, 0, 1778, 1723, 1, 0, 0, 0, 1778, 1731, 1, 0, 0, 0, 1778, 1738, 1, 0, 0, 0, 1778, 1745, 1, 0, 0, 0, 1779, 65, 1, 0, 0, 0, 1780, 1781, 3, 86, 43, 0, 1781, 67, 1, 0, 0, 0, 1782, 1783, 3, 86, 43, 0, 1783, 69, 1, 0, 0, 0, 1784, 1785, 3, 216, 108, 0, 1785, 71, 1, 0, 0, 0, 1786, 1787, 3, 216, 108, 0, 1787, 73, 1, 0, 0, 0, 1788, 1789, 3, 218, 109, 0, 1789, 75, 1, 0, 0, 0, 1790, 1791, 3, 218, 109, 0, 1791, 77, 1, 0, 0, 0, 1792, 1795, 3, 210, 105, 0, 1793, 1795, 4, 39, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 79, 1, 0, 0, 0, 1796, 1797, 3, 210, 105, 0, 1797, 81, 1, 0, 0, 0, 1798, 1803, 3, 78, 39, 0, 1799, 1800, 5, 4, 0, 0, 1800, 1802, 3, 78, 39, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1805, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 83, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1807, 3, 328, 164, 0, 1807, 85, 1, 0, 0, 0, 1808, 1809, 5, 136, 0, 0, 1809, 1810, 5, 2, 0, 0, 1810, 1811, 3, 232, 116, 0, 1811, 1812, 5, 3, 0, 0, 1812, 1815, 1, 0, 0, 0, 1813, 1815, 3, 210, 105, 0, 1814, 1808, 1, 0, 0, 0, 1814, 1813, 1, 0, 0, 0, 1815, 87, 1, 0, 0, 0, 1816, 1817, 5, 209, 0, 0, 1817, 1818, 5, 31, 0, 0, 1818, 1820, 3, 92, 46, 0, 1819, 1816, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1824, 1, 0, 0, 0, 1821, 1822, 5, 44, 0, 0, 1822, 1823, 5, 31, 0, 0, 1823, 1825, 3, 94, 47, 0, 1824, 1821, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1829, 1, 0, 0, 0, 1826, 1827, 5, 93, 0, 0, 1827, 1828, 5, 31, 0, 0, 1828, 1830, 3, 94, 47, 0, 1829, 1826, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1834, 1, 0, 0, 0, 1831, 1832, 5, 278, 0, 0, 1832, 1833, 5, 31, 0, 0, 1833, 1835, 3, 92, 46, 0, 1834, 1831, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1837, 1, 0, 0, 0, 1836, 1838, 3, 310, 155, 0, 1837, 1836, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1840, 1, 0, 0, 0, 1839, 1841, 3, 90, 45, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1844, 1, 0, 0, 0, 1842, 1843, 5, 202, 0, 0, 1843, 1845, 3, 232, 116, 0, 1844, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 89, 1, 0, 0, 0, 1846, 1849, 5, 165, 0, 0, 1847, 1850, 5, 10, 0, 0, 1848, 1850, 3, 232, 116, 0, 1849, 1847, 1, 0, 0, 0, 1849, 1848, 1, 0, 0, 0, 1850, 91, 1, 0, 0, 0, 1851, 1856, 3, 100, 50, 0, 1852, 1853, 5, 4, 0, 0, 1853, 1855, 3, 100, 50, 0, 1854, 1852, 1, 0, 0, 0, 1855, 1858, 1, 0, 0, 0, 1856, 1854, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 93, 1, 0, 0, 0, 1858, 1856, 1, 0, 0, 0, 1859, 1864, 3, 232, 116, 0, 1860, 1861, 5, 4, 0, 0, 1861, 1863, 3, 232, 116, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1866, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 95, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1867, 1868, 6, 48, -1, 0, 1868, 1869, 3, 98, 49, 0, 1869, 1890, 1, 0, 0, 0, 1870, 1871, 10, 3, 0, 0, 1871, 1873, 7, 23, 0, 0, 1872, 1874, 3, 166, 83, 0, 1873, 1872, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1889, 3, 96, 48, 4, 1876, 1877, 10, 2, 0, 0, 1877, 1879, 5, 148, 0, 0, 1878, 1880, 3, 166, 83, 0, 1879, 1878, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1889, 3, 96, 48, 3, 1882, 1883, 10, 1, 0, 0, 1883, 1885, 7, 24, 0, 0, 1884, 1886, 3, 166, 83, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1889, 3, 96, 48, 2, 1888, 1870, 1, 0, 0, 0, 1888, 1876, 1, 0, 0, 0, 1888, 1882, 1, 0, 0, 0, 1889, 1892, 1, 0, 0, 0, 1890, 1888, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 97, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1918, 3, 104, 52, 0, 1894, 1896, 3, 132, 66, 0, 1895, 1897, 3, 102, 51, 0, 1896, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1918, 1, 0, 0, 0, 1900, 1901, 5, 293, 0, 0, 1901, 1918, 3, 72, 36, 0, 1902, 1903, 5, 333, 0, 0, 1903, 1908, 3, 232, 116, 0, 1904, 1905, 5, 4, 0, 0, 1905, 1907, 3, 232, 116, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1911, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1911, 1912, 3, 204, 102, 0, 1912, 1918, 1, 0, 0, 0, 1913, 1914, 5, 2, 0, 0, 1914, 1915, 3, 16, 8, 0, 1915, 1916, 5, 3, 0, 0, 1916, 1918, 1, 0, 0, 0, 1917, 1893, 1, 0, 0, 0, 1917, 1894, 1, 0, 0, 0, 1917, 1900, 1, 0, 0, 0, 1917, 1902, 1, 0, 0, 0, 1917, 1913, 1, 0, 0, 0, 1918, 99, 1, 0, 0, 0, 1919, 1922, 3, 78, 39, 0, 1920, 1922, 3, 232, 116, 0, 1921, 1919, 1, 0, 0, 0, 1921, 1920, 1, 0, 0, 0, 1922, 1924, 1, 0, 0, 0, 1923, 1925, 7, 25, 0, 0, 1924, 1923, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1928, 1, 0, 0, 0, 1926, 1927, 5, 199, 0, 0, 1927, 1929, 7, 26, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 101, 1, 0, 0, 0, 1930, 1932, 3, 106, 53, 0, 1931, 1933, 3, 124, 62, 0, 1932, 1931, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 3, 88, 44, 0, 1935, 1958, 1, 0, 0, 0, 1936, 1940, 3, 108, 54, 0, 1937, 1939, 3, 164, 82, 0, 1938, 1937, 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1944, 1, 0, 0, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1945, 3, 124, 62, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1947, 1, 0, 0, 0, 1946, 1948, 3, 136, 68, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1950, 1, 0, 0, 0, 1949, 1951, 3, 126, 63, 0, 1950, 1949, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1953, 1, 0, 0, 0, 1952, 1954, 3, 310, 155, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 3, 88, 44, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1930, 1, 0, 0, 0, 1957, 1936, 1, 0, 0, 0, 1958, 103, 1, 0, 0, 0, 1959, 1961, 3, 106, 53, 0, 1960, 1962, 3, 132, 66, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1966, 1, 0, 0, 0, 1963, 1965, 3, 164, 82, 0, 1964, 1963, 1, 0, 0, 0, 1965, 1968, 1, 0, 0, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1970, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1969, 1971, 3, 124, 62, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1973, 1, 0, 0, 0, 1972, 1974, 3, 136, 68, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1977, 3, 126, 63, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1979, 1, 0, 0, 0, 1978, 1980, 3, 310, 155, 0, 1979, 1978, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 2004, 1, 0, 0, 0, 1981, 1983, 3, 108, 54, 0, 1982, 1984, 3, 132, 66, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1988, 1, 0, 0, 0, 1985, 1987, 3, 164, 82, 0, 1986, 1985, 1, 0, 0, 0, 1987, 1990, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1991, 1993, 3, 124, 62, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1996, 3, 136, 68, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1998, 1, 0, 0, 0, 1997, 1999, 3, 126, 63, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2001, 1, 0, 0, 0, 2000, 2002, 3, 310, 155, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2004, 1, 0, 0, 0, 2003, 1959, 1, 0, 0, 0, 2003, 1981, 1, 0, 0, 0, 2004, 105, 1, 0, 0, 0, 2005, 2006, 5, 263, 0, 0, 2006, 2007, 5, 314, 0, 0, 2007, 2009, 5, 2, 0, 0, 2008, 2010, 3, 166, 83, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 3, 238, 119, 0, 2012, 2013, 5, 3, 0, 0, 2013, 2025, 1, 0, 0, 0, 2014, 2016, 5, 177, 0, 0, 2015, 2017, 3, 166, 83, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2025, 3, 238, 119, 0, 2019, 2021, 5, 238, 0, 0, 2020, 2022, 3, 166, 83, 0, 2021, 2020, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 3, 238, 119, 0, 2024, 2005, 1, 0, 0, 0, 2024, 2014, 1, 0, 0, 0, 2024, 2019, 1, 0, 0, 0, 2025, 2027, 1, 0, 0, 0, 2026, 2028, 3, 206, 103, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2031, 1, 0, 0, 0, 2029, 2030, 5, 236, 0, 0, 2030, 2032, 3, 342, 171, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 5, 332, 0, 0, 2034, 2047, 3, 342, 171, 0, 2035, 2045, 5, 20, 0, 0, 2036, 2046, 3, 182, 91, 0, 2037, 2046, 3, 296, 148, 0, 2038, 2041, 5, 2, 0, 0, 2039, 2042, 3, 182, 91, 0, 2040, 2042, 3, 296, 148, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 5, 3, 0, 0, 2044, 2046, 1, 0, 0, 0, 2045, 2036, 1, 0, 0, 0, 2045, 2037, 1, 0, 0, 0, 2045, 2038, 1, 0, 0, 0, 2046, 2048, 1, 0, 0, 0, 2047, 2035, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2050, 1, 0, 0, 0, 2049, 2051, 3, 206, 103, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2054, 1, 0, 0, 0, 2052, 2053, 5, 235, 0, 0, 2053, 2055, 3, 342, 171, 0, 2054, 2052, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 107, 1, 0, 0, 0, 2056, 2060, 5, 263, 0, 0, 2057, 2059, 3, 128, 64, 0, 2058, 2057, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2064, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2063, 2065, 3, 166, 83, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2067, 3, 222, 111, 0, 2067, 109, 1, 0, 0, 0, 2068, 2069, 5, 269, 0, 0, 2069, 2070, 3, 120, 60, 0, 2070, 111, 1, 0, 0, 0, 2071, 2072, 5, 343, 0, 0, 2072, 2075, 5, 178, 0, 0, 2073, 2074, 5, 14, 0, 0, 2074, 2076, 3, 240, 120, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2085, 5, 300, 0, 0, 2078, 2086, 5, 84, 0, 0, 2079, 2080, 5, 329, 0, 0, 2080, 2083, 5, 269, 0, 0, 2081, 2084, 5, 363, 0, 0, 2082, 2084, 3, 120, 60, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2082, 1, 0, 0, 0, 2084, 2086, 1, 0, 0, 0, 2085, 2078, 1, 0, 0, 0, 2085, 2079, 1, 0, 0, 0, 2086, 113, 1, 0, 0, 0, 2087, 2088, 5, 343, 0, 0, 2088, 2089, 5, 197, 0, 0, 2089, 2092, 5, 178, 0, 0, 2090, 2091, 5, 31, 0, 0, 2091, 2093, 5, 296, 0, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2096, 1, 0, 0, 0, 2094, 2095, 5, 14, 0, 0, 2095, 2097, 3, 240, 120, 0, 2096, 2094, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 5, 300, 0, 0, 2099, 2100, 3, 118, 59, 0, 2100, 115, 1, 0, 0, 0, 2101, 2102, 5, 343, 0, 0, 2102, 2103, 5, 197, 0, 0, 2103, 2104, 5, 178, 0, 0, 2104, 2105, 5, 31, 0, 0, 2105, 2108, 5, 280, 0, 0, 2106, 2107, 5, 14, 0, 0, 2107, 2109, 3, 240, 120, 0, 2108, 2106, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2115, 5, 300, 0, 0, 2111, 2116, 5, 84, 0, 0, 2112, 2113, 5, 329, 0, 0, 2113, 2114, 5, 269, 0, 0, 2114, 2116, 3, 120, 60, 0, 2115, 2111, 1, 0, 0, 0, 2115, 2112, 1, 0, 0, 0, 2116, 117, 1, 0, 0, 0, 2117, 2118, 5, 147, 0, 0, 2118, 2136, 5, 363, 0, 0, 2119, 2120, 5, 147, 0, 0, 2120, 2121, 5, 2, 0, 0, 2121, 2122, 3, 208, 104, 0, 2122, 2123, 5, 3, 0, 0, 2123, 2124, 5, 333, 0, 0, 2124, 2125, 5, 2, 0, 0, 2125, 2130, 3, 232, 116, 0, 2126, 2127, 5, 4, 0, 0, 2127, 2129, 3, 232, 116, 0, 2128, 2126, 1, 0, 0, 0, 2129, 2132, 1, 0, 0, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2133, 2134, 5, 3, 0, 0, 2134, 2136, 1, 0, 0, 0, 2135, 2117, 1, 0, 0, 0, 2135, 2119, 1, 0, 0, 0, 2136, 119, 1, 0, 0, 0, 2137, 2142, 3, 122, 61, 0, 2138, 2139, 5, 4, 0, 0, 2139, 2141, 3, 122, 61, 0, 2140, 2138, 1, 0, 0, 0, 2141, 2144, 1, 0, 0, 0, 2142, 2140, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 121, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2145, 2146, 3, 210, 105, 0, 2146, 2147, 5, 352, 0, 0, 2147, 2148, 3, 232, 116, 0, 2148, 123, 1, 0, 0, 0, 2149, 2150, 5, 344, 0, 0, 2150, 2151, 3, 240, 120, 0, 2151, 125, 1, 0, 0, 0, 2152, 2153, 5, 132, 0, 0, 2153, 2154, 3, 240, 120, 0, 2154, 127, 1, 0, 0, 0, 2155, 2156, 5, 374, 0, 0, 2156, 2163, 3, 130, 65, 0, 2157, 2159, 5, 4, 0, 0, 2158, 2157, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2162, 3, 130, 65, 0, 2161, 2158, 1, 0, 0, 0, 2162, 2165, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2167, 5, 375, 0, 0, 2167, 129, 1, 0, 0, 0, 2168, 2182, 3, 332, 166, 0, 2169, 2170, 3, 332, 166, 0, 2170, 2171, 5, 2, 0, 0, 2171, 2176, 3, 248, 124, 0, 2172, 2173, 5, 4, 0, 0, 2173, 2175, 3, 248, 124, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2180, 5, 3, 0, 0, 2180, 2182, 1, 0, 0, 0, 2181, 2168, 1, 0, 0, 0, 2181, 2169, 1, 0, 0, 0, 2182, 131, 1, 0, 0, 0, 2183, 2184, 5, 123, 0, 0, 2184, 2189, 3, 168, 84, 0, 2185, 2186, 5, 4, 0, 0, 2186, 2188, 3, 168, 84, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2191, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2195, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2194, 3, 164, 82, 0, 2193, 2192, 1, 0, 0, 0, 2194, 2197, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2199, 1, 0, 0, 0, 2197, 2195, 1, 0, 0, 0, 2198, 2200, 3, 144, 72, 0, 2199, 2198, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2202, 1, 0, 0, 0, 2201, 2203, 3, 150, 75, 0, 2202, 2201, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 133, 1, 0, 0, 0, 2204, 2206, 5, 119, 0, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 7, 27, 0, 0, 2208, 2209, 5, 20, 0, 0, 2209, 2212, 5, 201, 0, 0, 2210, 2213, 5, 382, 0, 0, 2211, 2213, 3, 342, 171, 0, 2212, 2210, 1, 0, 0, 0, 2212, 2211, 1, 0, 0, 0, 2213, 2222, 1, 0, 0, 0, 2214, 2216, 5, 119, 0, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2218, 7, 28, 0, 0, 2218, 2219, 5, 20, 0, 0, 2219, 2220, 5, 201, 0, 0, 2220, 2222, 3, 244, 122, 0, 2221, 2205, 1, 0, 0, 0, 2221, 2215, 1, 0, 0, 0, 2222, 135, 1, 0, 0, 0, 2223, 2224, 5, 130, 0, 0, 2224, 2225, 5, 31, 0, 0, 2225, 2230, 3, 138, 69, 0, 2226, 2227, 5, 4, 0, 0, 2227, 2229, 3, 138, 69, 0, 2228, 2226, 1, 0, 0, 0, 2229, 2232, 1, 0, 0, 0, 2230, 2228, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2263, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2233, 2234, 5, 130, 0, 0, 2234, 2235, 5, 31, 0, 0, 2235, 2240, 3, 232, 116, 0, 2236, 2237, 5, 4, 0, 0, 2237, 2239, 3, 232, 116, 0, 2238, 2236, 1, 0, 0, 0, 2239, 2242, 1, 0, 0, 0, 2240, 2238, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2260, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2243, 2244, 5, 346, 0, 0, 2244, 2261, 5, 256, 0, 0, 2245, 2246, 5, 346, 0, 0, 2246, 2261, 5, 61, 0, 0, 2247, 2248, 5, 131, 0, 0, 2248, 2249, 5, 271, 0, 0, 2249, 2250, 5, 2, 0, 0, 2250, 2255, 3, 142, 71, 0, 2251, 2252, 5, 4, 0, 0, 2252, 2254, 3, 142, 71, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2259, 5, 3, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2243, 1, 0, 0, 0, 2260, 2245, 1, 0, 0, 0, 2260, 2247, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2263, 1, 0, 0, 0, 2262, 2223, 1, 0, 0, 0, 2262, 2233, 1, 0, 0, 0, 2263, 137, 1, 0, 0, 0, 2264, 2268, 3, 78, 39, 0, 2265, 2268, 3, 140, 70, 0, 2266, 2268, 3, 232, 116, 0, 2267, 2264, 1, 0, 0, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2266, 1, 0, 0, 0, 2268, 139, 1, 0, 0, 0, 2269, 2270, 7, 29, 0, 0, 2270, 2271, 5, 2, 0, 0, 2271, 2276, 3, 142, 71, 0, 2272, 2273, 5, 4, 0, 0, 2273, 2275, 3, 142, 71, 0, 2274, 2272, 1, 0, 0, 0, 2275, 2278, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2279, 2280, 5, 3, 0, 0, 2280, 2301, 1, 0, 0, 0, 2281, 2282, 5, 131, 0, 0, 2282, 2283, 5, 271, 0, 0, 2283, 2286, 5, 2, 0, 0, 2284, 2287, 3, 140, 70, 0, 2285, 2287, 3, 142, 71, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2285, 1, 0, 0, 0, 2287, 2295, 1, 0, 0, 0, 2288, 2291, 5, 4, 0, 0, 2289, 2292, 3, 140, 70, 0, 2290, 2292, 3, 142, 71, 0, 2291, 2289, 1, 0, 0, 0, 2291, 2290, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2288, 1, 0, 0, 0, 2294, 2297, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 2298, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2298, 2299, 5, 3, 0, 0, 2299, 2301, 1, 0, 0, 0, 2300, 2269, 1, 0, 0, 0, 2300, 2281, 1, 0, 0, 0, 2301, 141, 1, 0, 0, 0, 2302, 2323, 3, 78, 39, 0, 2303, 2323, 3, 232, 116, 0, 2304, 2319, 5, 2, 0, 0, 2305, 2308, 3, 78, 39, 0, 2306, 2308, 3, 232, 116, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 2316, 1, 0, 0, 0, 2309, 2312, 5, 4, 0, 0, 2310, 2313, 3, 78, 39, 0, 2311, 2313, 3, 232, 116, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2311, 1, 0, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2309, 1, 0, 0, 0, 2315, 2318, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2307, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 5, 3, 0, 0, 2322, 2302, 1, 0, 0, 0, 2322, 2303, 1, 0, 0, 0, 2322, 2304, 1, 0, 0, 0, 2323, 143, 1, 0, 0, 0, 2324, 2325, 5, 223, 0, 0, 2325, 2326, 5, 2, 0, 0, 2326, 2327, 3, 222, 111, 0, 2327, 2328, 5, 119, 0, 0, 2328, 2329, 3, 146, 73, 0, 2329, 2330, 5, 140, 0, 0, 2330, 2331, 5, 2, 0, 0, 2331, 2336, 3, 148, 74, 0, 2332, 2333, 5, 4, 0, 0, 2333, 2335, 3, 148, 74, 0, 2334, 2332, 1, 0, 0, 0, 2335, 2338, 1, 0, 0, 0, 2336, 2334, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2339, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2340, 5, 3, 0, 0, 2340, 2341, 5, 3, 0, 0, 2341, 145, 1, 0, 0, 0, 2342, 2355, 3, 332, 166, 0, 2343, 2344, 5, 2, 0, 0, 2344, 2349, 3, 332, 166, 0, 2345, 2346, 5, 4, 0, 0, 2346, 2348, 3, 332, 166, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2351, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2352, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2353, 5, 3, 0, 0, 2353, 2355, 1, 0, 0, 0, 2354, 2342, 1, 0, 0, 0, 2354, 2343, 1, 0, 0, 0, 2355, 147, 1, 0, 0, 0, 2356, 2361, 3, 232, 116, 0, 2357, 2359, 5, 20, 0, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2362, 3, 332, 166, 0, 2361, 2358, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 149, 1, 0, 0, 0, 2363, 2366, 5, 327, 0, 0, 2364, 2365, 7, 30, 0, 0, 2365, 2367, 5, 199, 0, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2371, 5, 2, 0, 0, 2369, 2372, 3, 152, 76, 0, 2370, 2372, 3, 154, 77, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2370, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2378, 5, 3, 0, 0, 2374, 2376, 5, 20, 0, 0, 2375, 2374, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 3, 332, 166, 0, 2378, 2375, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 151, 1, 0, 0, 0, 2380, 2381, 3, 332, 166, 0, 2381, 2382, 5, 119, 0, 0, 2382, 2383, 3, 332, 166, 0, 2383, 2384, 5, 140, 0, 0, 2384, 2385, 5, 2, 0, 0, 2385, 2390, 3, 158, 79, 0, 2386, 2387, 5, 4, 0, 0, 2387, 2389, 3, 158, 79, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 5, 3, 0, 0, 2394, 153, 1, 0, 0, 0, 2395, 2396, 5, 2, 0, 0, 2396, 2401, 3, 332, 166, 0, 2397, 2398, 5, 4, 0, 0, 2398, 2400, 3, 332, 166, 0, 2399, 2397, 1, 0, 0, 0, 2400, 2403, 1, 0, 0, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2404, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2404, 2405, 5, 3, 0, 0, 2405, 2406, 5, 119, 0, 0, 2406, 2407, 3, 332, 166, 0, 2407, 2408, 5, 140, 0, 0, 2408, 2409, 5, 2, 0, 0, 2409, 2414, 3, 156, 78, 0, 2410, 2411, 5, 4, 0, 0, 2411, 2413, 3, 156, 78, 0, 2412, 2410, 1, 0, 0, 0, 2413, 2416, 1, 0, 0, 0, 2414, 2412, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2417, 2418, 5, 3, 0, 0, 2418, 155, 1, 0, 0, 0, 2419, 2420, 5, 2, 0, 0, 2420, 2425, 3, 210, 105, 0, 2421, 2422, 5, 4, 0, 0, 2422, 2424, 3, 210, 105, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2427, 1, 0, 0, 0, 2425, 2423, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2428, 1, 0, 0, 0, 2427, 2425, 1, 0, 0, 0, 2428, 2433, 5, 3, 0, 0, 2429, 2431, 5, 20, 0, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2434, 3, 332, 166, 0, 2433, 2430, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 157, 1, 0, 0, 0, 2435, 2440, 3, 210, 105, 0, 2436, 2438, 5, 20, 0, 0, 2437, 2436, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 3, 332, 166, 0, 2440, 2437, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 159, 1, 0, 0, 0, 2442, 2443, 5, 137, 0, 0, 2443, 2444, 5, 197, 0, 0, 2444, 2445, 5, 105, 0, 0, 2445, 161, 1, 0, 0, 0, 2446, 2447, 5, 137, 0, 0, 2447, 2448, 5, 105, 0, 0, 2448, 163, 1, 0, 0, 0, 2449, 2450, 5, 158, 0, 0, 2450, 2452, 5, 338, 0, 0, 2451, 2453, 5, 211, 0, 0, 2452, 2451, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 3, 76, 38, 0, 2455, 2464, 5, 2, 0, 0, 2456, 2461, 3, 232, 116, 0, 2457, 2458, 5, 4, 0, 0, 2458, 2460, 3, 232, 116, 0, 2459, 2457, 1, 0, 0, 0, 2460, 2463, 1, 0, 0, 0, 2461, 2459, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2465, 1, 0, 0, 0, 2463, 2461, 1, 0, 0, 0, 2464, 2456, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2467, 5, 3, 0, 0, 2467, 2479, 3, 204, 102, 0, 2468, 2470, 5, 20, 0, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2476, 3, 332, 166, 0, 2472, 2473, 5, 4, 0, 0, 2473, 2475, 3, 332, 166, 0, 2474, 2472, 1, 0, 0, 0, 2475, 2478, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2480, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2469, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 165, 1, 0, 0, 0, 2481, 2482, 7, 31, 0, 0, 2482, 167, 1, 0, 0, 0, 2483, 2497, 3, 72, 36, 0, 2484, 2486, 5, 158, 0, 0, 2485, 2484, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2493, 3, 192, 96, 0, 2488, 2492, 3, 170, 85, 0, 2489, 2492, 3, 144, 72, 0, 2490, 2492, 3, 150, 75, 0, 2491, 2488, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2490, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2497, 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2483, 1, 0, 0, 0, 2496, 2485, 1, 0, 0, 0, 2497, 169, 1, 0, 0, 0, 2498, 2499, 3, 172, 86, 0, 2499, 2501, 5, 155, 0, 0, 2500, 2502, 5, 158, 0, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2505, 3, 192, 96, 0, 2504, 2506, 3, 174, 87, 0, 2505, 2504, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2516, 1, 0, 0, 0, 2507, 2508, 5, 194, 0, 0, 2508, 2509, 3, 172, 86, 0, 2509, 2511, 5, 155, 0, 0, 2510, 2512, 5, 158, 0, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2514, 3, 192, 96, 0, 2514, 2516, 1, 0, 0, 0, 2515, 2498, 1, 0, 0, 0, 2515, 2507, 1, 0, 0, 0, 2516, 171, 1, 0, 0, 0, 2517, 2519, 5, 144, 0, 0, 2518, 2517, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2534, 1, 0, 0, 0, 2520, 2534, 5, 60, 0, 0, 2521, 2523, 5, 161, 0, 0, 2522, 2524, 5, 211, 0, 0, 2523, 2522, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2534, 1, 0, 0, 0, 2525, 2527, 5, 161, 0, 0, 2526, 2525, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2534, 7, 32, 0, 0, 2529, 2531, 7, 33, 0, 0, 2530, 2532, 5, 211, 0, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2534, 1, 0, 0, 0, 2533, 2518, 1, 0, 0, 0, 2533, 2520, 1, 0, 0, 0, 2533, 2521, 1, 0, 0, 0, 2533, 2526, 1, 0, 0, 0, 2533, 2529, 1, 0, 0, 0, 2534, 173, 1, 0, 0, 0, 2535, 2536, 5, 203, 0, 0, 2536, 2540, 3, 240, 120, 0, 2537, 2538, 5, 332, 0, 0, 2538, 2540, 3, 180, 90, 0, 2539, 2535, 1, 0, 0, 0, 2539, 2537, 1, 0, 0, 0, 2540, 175, 1, 0, 0, 0, 2541, 2542, 5, 295, 0, 0, 2542, 2544, 5, 2, 0, 0, 2543, 2545, 3, 178, 89, 0, 2544, 2543, 1, 0, 0, 0, 2544, 2545, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2551, 5, 3, 0, 0, 2547, 2548, 5, 243, 0, 0, 2548, 2549, 5, 2, 0, 0, 2549, 2550, 5, 382, 0, 0, 2550, 2552, 5, 3, 0, 0, 2551, 2547, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 177, 1, 0, 0, 0, 2553, 2555, 5, 362, 0, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2557, 7, 34, 0, 0, 2557, 2578, 5, 222, 0, 0, 2558, 2559, 3, 232, 116, 0, 2559, 2560, 5, 258, 0, 0, 2560, 2578, 1, 0, 0, 0, 2561, 2562, 5, 29, 0, 0, 2562, 2563, 5, 382, 0, 0, 2563, 2564, 5, 210, 0, 0, 2564, 2565, 5, 201, 0, 0, 2565, 2574, 5, 382, 0, 0, 2566, 2572, 5, 203, 0, 0, 2567, 2573, 3, 332, 166, 0, 2568, 2569, 3, 326, 163, 0, 2569, 2570, 5, 2, 0, 0, 2570, 2571, 5, 3, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2567, 1, 0, 0, 0, 2572, 2568, 1, 0, 0, 0, 2573, 2575, 1, 0, 0, 0, 2574, 2566, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2578, 1, 0, 0, 0, 2576, 2578, 3, 232, 116, 0, 2577, 2554, 1, 0, 0, 0, 2577, 2558, 1, 0, 0, 0, 2577, 2561, 1, 0, 0, 0, 2577, 2576, 1, 0, 0, 0, 2578, 179, 1, 0, 0, 0, 2579, 2580, 5, 2, 0, 0, 2580, 2581, 3, 182, 91, 0, 2581, 2582, 5, 3, 0, 0, 2582, 181, 1, 0, 0, 0, 2583, 2588, 3, 328, 164, 0, 2584, 2585, 5, 4, 0, 0, 2585, 2587, 3, 328, 164, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2590, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 183, 1, 0, 0, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2592, 5, 2, 0, 0, 2592, 2597, 3, 186, 93, 0, 2593, 2594, 5, 4, 0, 0, 2594, 2596, 3, 186, 93, 0, 2595, 2593, 1, 0, 0, 0, 2596, 2599, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2600, 1, 0, 0, 0, 2599, 2597, 1, 0, 0, 0, 2600, 2601, 5, 3, 0, 0, 2601, 185, 1, 0, 0, 0, 2602, 2604, 3, 328, 164, 0, 2603, 2605, 7, 25, 0, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 187, 1, 0, 0, 0, 2606, 2607, 5, 2, 0, 0, 2607, 2612, 3, 190, 95, 0, 2608, 2609, 5, 4, 0, 0, 2609, 2611, 3, 190, 95, 0, 2610, 2608, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2615, 1, 0, 0, 0, 2614, 2612, 1, 0, 0, 0, 2615, 2616, 5, 3, 0, 0, 2616, 189, 1, 0, 0, 0, 2617, 2620, 3, 84, 42, 0, 2618, 2619, 5, 51, 0, 0, 2619, 2621, 3, 342, 171, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 191, 1, 0, 0, 0, 2622, 2626, 3, 72, 36, 0, 2623, 2626, 3, 76, 38, 0, 2624, 2626, 3, 86, 43, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 2628, 1, 0, 0, 0, 2627, 2629, 3, 134, 67, 0, 2628, 2627, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2631, 1, 0, 0, 0, 2630, 2632, 3, 176, 88, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 3, 204, 102, 0, 2634, 2678, 1, 0, 0, 0, 2635, 2636, 5, 2, 0, 0, 2636, 2637, 3, 16, 8, 0, 2637, 2639, 5, 3, 0, 0, 2638, 2640, 3, 176, 88, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 3, 204, 102, 0, 2642, 2678, 1, 0, 0, 0, 2643, 2644, 5, 2, 0, 0, 2644, 2645, 3, 168, 84, 0, 2645, 2647, 5, 3, 0, 0, 2646, 2648, 3, 176, 88, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 3, 204, 102, 0, 2650, 2678, 1, 0, 0, 0, 2651, 2652, 5, 333, 0, 0, 2652, 2657, 3, 232, 116, 0, 2653, 2654, 5, 4, 0, 0, 2654, 2656, 3, 232, 116, 0, 2655, 2653, 1, 0, 0, 0, 2656, 2659, 1, 0, 0, 0, 2657, 2655, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2660, 1, 0, 0, 0, 2659, 2657, 1, 0, 0, 0, 2660, 2661, 3, 204, 102, 0, 2661, 2678, 1, 0, 0, 0, 2662, 2663, 3, 322, 161, 0, 2663, 2672, 5, 2, 0, 0, 2664, 2669, 3, 202, 101, 0, 2665, 2666, 5, 4, 0, 0, 2666, 2668, 3, 202, 101, 0, 2667, 2665, 1, 0, 0, 0, 2668, 2671, 1, 0, 0, 0, 2669, 2667, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2673, 1, 0, 0, 0, 2671, 2669, 1, 0, 0, 0, 2672, 2664, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 5, 3, 0, 0, 2675, 2676, 3, 204, 102, 0, 2676, 2678, 1, 0, 0, 0, 2677, 2625, 1, 0, 0, 0, 2677, 2635, 1, 0, 0, 0, 2677, 2643, 1, 0, 0, 0, 2677, 2651, 1, 0, 0, 0, 2677, 2662, 1, 0, 0, 0, 2678, 193, 1, 0, 0, 0, 2679, 2680, 5, 293, 0, 0, 2680, 2682, 3, 72, 36, 0, 2681, 2683, 3, 196, 98, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2699, 1, 0, 0, 0, 2684, 2685, 5, 293, 0, 0, 2685, 2686, 5, 2, 0, 0, 2686, 2687, 3, 72, 36, 0, 2687, 2689, 5, 3, 0, 0, 2688, 2690, 3, 196, 98, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2699, 1, 0, 0, 0, 2691, 2692, 5, 293, 0, 0, 2692, 2693, 5, 2, 0, 0, 2693, 2694, 3, 16, 8, 0, 2694, 2696, 5, 3, 0, 0, 2695, 2697, 3, 196, 98, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2699, 1, 0, 0, 0, 2698, 2679, 1, 0, 0, 0, 2698, 2684, 1, 0, 0, 0, 2698, 2691, 1, 0, 0, 0, 2699, 195, 1, 0, 0, 0, 2700, 2701, 5, 346, 0, 0, 2701, 2702, 5, 274, 0, 0, 2702, 2720, 5, 217, 0, 0, 2703, 2704, 7, 35, 0, 0, 2704, 2717, 5, 31, 0, 0, 2705, 2706, 5, 2, 0, 0, 2706, 2711, 3, 232, 116, 0, 2707, 2708, 5, 4, 0, 0, 2708, 2710, 3, 232, 116, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2713, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2714, 1, 0, 0, 0, 2713, 2711, 1, 0, 0, 0, 2714, 2715, 5, 3, 0, 0, 2715, 2718, 1, 0, 0, 0, 2716, 2718, 3, 232, 116, 0, 2717, 2705, 1, 0, 0, 0, 2717, 2716, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2700, 1, 0, 0, 0, 2719, 2703, 1, 0, 0, 0, 2720, 2730, 1, 0, 0, 0, 2721, 2722, 7, 36, 0, 0, 2722, 2728, 5, 31, 0, 0, 2723, 2724, 5, 2, 0, 0, 2724, 2725, 3, 92, 46, 0, 2725, 2726, 5, 3, 0, 0, 2726, 2729, 1, 0, 0, 0, 2727, 2729, 3, 100, 50, 0, 2728, 2723, 1, 0, 0, 0, 2728, 2727, 1, 0, 0, 0, 2729, 2731, 1, 0, 0, 0, 2730, 2721, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 197, 1, 0, 0, 0, 2732, 2733, 3, 332, 166, 0, 2733, 2734, 5, 373, 0, 0, 2734, 2735, 3, 194, 97, 0, 2735, 199, 1, 0, 0, 0, 2736, 2739, 3, 194, 97, 0, 2737, 2739, 3, 198, 99, 0, 2738, 2736, 1, 0, 0, 0, 2738, 2737, 1, 0, 0, 0, 2739, 201, 1, 0, 0, 0, 2740, 2743, 3, 200, 100, 0, 2741, 2743, 3, 236, 118, 0, 2742, 2740, 1, 0, 0, 0, 2742, 2741, 1, 0, 0, 0, 2743, 203, 1, 0, 0, 0, 2744, 2746, 5, 20, 0, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2749, 3, 334, 167, 0, 2748, 2750, 3, 180, 90, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2745, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 205, 1, 0, 0, 0, 2753, 2754, 5, 257, 0, 0, 2754, 2755, 5, 121, 0, 0, 2755, 2756, 5, 266, 0, 0, 2756, 2760, 3, 342, 171, 0, 2757, 2758, 5, 346, 0, 0, 2758, 2759, 5, 267, 0, 0, 2759, 2761, 3, 42, 21, 0, 2760, 2757, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2803, 1, 0, 0, 0, 2762, 2763, 5, 257, 0, 0, 2763, 2764, 5, 121, 0, 0, 2764, 2774, 5, 85, 0, 0, 2765, 2766, 5, 113, 0, 0, 2766, 2767, 5, 299, 0, 0, 2767, 2768, 5, 31, 0, 0, 2768, 2772, 3, 342, 171, 0, 2769, 2770, 5, 101, 0, 0, 2770, 2771, 5, 31, 0, 0, 2771, 2773, 3, 342, 171, 0, 2772, 2769, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2765, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2781, 1, 0, 0, 0, 2776, 2777, 5, 48, 0, 0, 2777, 2778, 5, 154, 0, 0, 2778, 2779, 5, 299, 0, 0, 2779, 2780, 5, 31, 0, 0, 2780, 2782, 3, 342, 171, 0, 2781, 2776, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2788, 1, 0, 0, 0, 2783, 2784, 5, 177, 0, 0, 2784, 2785, 5, 156, 0, 0, 2785, 2786, 5, 299, 0, 0, 2786, 2787, 5, 31, 0, 0, 2787, 2789, 3, 342, 171, 0, 2788, 2783, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2794, 1, 0, 0, 0, 2790, 2791, 5, 166, 0, 0, 2791, 2792, 5, 299, 0, 0, 2792, 2793, 5, 31, 0, 0, 2793, 2795, 3, 342, 171, 0, 2794, 2790, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2800, 1, 0, 0, 0, 2796, 2797, 5, 198, 0, 0, 2797, 2798, 5, 83, 0, 0, 2798, 2799, 5, 20, 0, 0, 2799, 2801, 3, 342, 171, 0, 2800, 2796, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 2803, 1, 0, 0, 0, 2802, 2753, 1, 0, 0, 0, 2802, 2762, 1, 0, 0, 0, 2803, 207, 1, 0, 0, 0, 2804, 2809, 3, 210, 105, 0, 2805, 2806, 5, 4, 0, 0, 2806, 2808, 3, 210, 105, 0, 2807, 2805, 1, 0, 0, 0, 2808, 2811, 1, 0, 0, 0, 2809, 2807, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 209, 1, 0, 0, 0, 2811, 2809, 1, 0, 0, 0, 2812, 2817, 3, 328, 164, 0, 2813, 2814, 5, 5, 0, 0, 2814, 2816, 3, 328, 164, 0, 2815, 2813, 1, 0, 0, 0, 2816, 2819, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 211, 1, 0, 0, 0, 2819, 2817, 1, 0, 0, 0, 2820, 2825, 3, 214, 107, 0, 2821, 2822, 5, 4, 0, 0, 2822, 2824, 3, 214, 107, 0, 2823, 2821, 1, 0, 0, 0, 2824, 2827, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 213, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2828, 2831, 3, 210, 105, 0, 2829, 2830, 5, 207, 0, 0, 2830, 2832, 3, 42, 21, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 215, 1, 0, 0, 0, 2833, 2834, 3, 328, 164, 0, 2834, 2835, 5, 5, 0, 0, 2835, 2837, 1, 0, 0, 0, 2836, 2833, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2839, 3, 328, 164, 0, 2839, 217, 1, 0, 0, 0, 2840, 2841, 3, 328, 164, 0, 2841, 2842, 5, 5, 0, 0, 2842, 2844, 1, 0, 0, 0, 2843, 2840, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 3, 328, 164, 0, 2846, 219, 1, 0, 0, 0, 2847, 2850, 3, 78, 39, 0, 2848, 2850, 3, 232, 116, 0, 2849, 2847, 1, 0, 0, 0, 2849, 2848, 1, 0, 0, 0, 2850, 2858, 1, 0, 0, 0, 2851, 2853, 5, 20, 0, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2856, 1, 0, 0, 0, 2854, 2857, 3, 328, 164, 0, 2855, 2857, 3, 180, 90, 0, 2856, 2854, 1, 0, 0, 0, 2856, 2855, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2852, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 221, 1, 0, 0, 0, 2860, 2865, 3, 220, 110, 0, 2861, 2862, 5, 4, 0, 0, 2862, 2864, 3, 220, 110, 0, 2863, 2861, 1, 0, 0, 0, 2864, 2867, 1, 0, 0, 0, 2865, 2863, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 223, 1, 0, 0, 0, 2867, 2865, 1, 0, 0, 0, 2868, 2869, 5, 2, 0, 0, 2869, 2874, 3, 226, 113, 0, 2870, 2871, 5, 4, 0, 0, 2871, 2873, 3, 226, 113, 0, 2872, 2870, 1, 0, 0, 0, 2873, 2876, 1, 0, 0, 0, 2874, 2872, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2877, 1, 0, 0, 0, 2876, 2874, 1, 0, 0, 0, 2877, 2878, 5, 3, 0, 0, 2878, 225, 1, 0, 0, 0, 2879, 2882, 3, 228, 114, 0, 2880, 2882, 3, 298, 149, 0, 2881, 2879, 1, 0, 0, 0, 2881, 2880, 1, 0, 0, 0, 2882, 227, 1, 0, 0, 0, 2883, 2897, 3, 326, 163, 0, 2884, 2885, 3, 332, 166, 0, 2885, 2886, 5, 2, 0, 0, 2886, 2891, 3, 230, 115, 0, 2887, 2888, 5, 4, 0, 0, 2888, 2890, 3, 230, 115, 0, 2889, 2887, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 1, 0, 0, 0, 2893, 2891, 1, 0, 0, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2897, 1, 0, 0, 0, 2896, 2883, 1, 0, 0, 0, 2896, 2884, 1, 0, 0, 0, 2897, 229, 1, 0, 0, 0, 2898, 2901, 3, 326, 163, 0, 2899, 2901, 3, 252, 126, 0, 2900, 2898, 1, 0, 0, 0, 2900, 2899, 1, 0, 0, 0, 2901, 231, 1, 0, 0, 0, 2902, 2903, 3, 240, 120, 0, 2903, 233, 1, 0, 0, 0, 2904, 2905, 3, 332, 166, 0, 2905, 2906, 5, 373, 0, 0, 2906, 2907, 3, 232, 116, 0, 2907, 235, 1, 0, 0, 0, 2908, 2911, 3, 232, 116, 0, 2909, 2911, 3, 234, 117, 0, 2910, 2908, 1, 0, 0, 0, 2910, 2909, 1, 0, 0, 0, 2911, 237, 1, 0, 0, 0, 2912, 2917, 3, 232, 116, 0, 2913, 2914, 5, 4, 0, 0, 2914, 2916, 3, 232, 116, 0, 2915, 2913, 1, 0, 0, 0, 2916, 2919, 1, 0, 0, 0, 2917, 2915, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 239, 1, 0, 0, 0, 2919, 2917, 1, 0, 0, 0, 2920, 2921, 6, 120, -1, 0, 2921, 2922, 7, 37, 0, 0, 2922, 2933, 3, 240, 120, 5, 2923, 2924, 5, 105, 0, 0, 2924, 2925, 5, 2, 0, 0, 2925, 2926, 3, 16, 8, 0, 2926, 2927, 5, 3, 0, 0, 2927, 2933, 1, 0, 0, 0, 2928, 2930, 3, 244, 122, 0, 2929, 2931, 3, 242, 121, 0, 2930, 2929, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2933, 1, 0, 0, 0, 2932, 2920, 1, 0, 0, 0, 2932, 2923, 1, 0, 0, 0, 2932, 2928, 1, 0, 0, 0, 2933, 2942, 1, 0, 0, 0, 2934, 2935, 10, 2, 0, 0, 2935, 2936, 5, 14, 0, 0, 2936, 2941, 3, 240, 120, 3, 2937, 2938, 10, 1, 0, 0, 2938, 2939, 5, 208, 0, 0, 2939, 2941, 3, 240, 120, 2, 2940, 2934, 1, 0, 0, 0, 2940, 2937, 1, 0, 0, 0, 2941, 2944, 1, 0, 0, 0, 2942, 2940, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 241, 1, 0, 0, 0, 2944, 2942, 1, 0, 0, 0, 2945, 2947, 5, 197, 0, 0, 2946, 2945, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2949, 5, 24, 0, 0, 2949, 2950, 3, 244, 122, 0, 2950, 2951, 5, 14, 0, 0, 2951, 2952, 3, 244, 122, 0, 2952, 3028, 1, 0, 0, 0, 2953, 2955, 5, 197, 0, 0, 2954, 2953, 1, 0, 0, 0, 2954, 2955, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 2957, 5, 140, 0, 0, 2957, 2958, 5, 2, 0, 0, 2958, 2963, 3, 232, 116, 0, 2959, 2960, 5, 4, 0, 0, 2960, 2962, 3, 232, 116, 0, 2961, 2959, 1, 0, 0, 0, 2962, 2965, 1, 0, 0, 0, 2963, 2961, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 2966, 1, 0, 0, 0, 2965, 2963, 1, 0, 0, 0, 2966, 2967, 5, 3, 0, 0, 2967, 3028, 1, 0, 0, 0, 2968, 2970, 5, 197, 0, 0, 2969, 2968, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2972, 5, 140, 0, 0, 2972, 2973, 5, 2, 0, 0, 2973, 2974, 3, 16, 8, 0, 2974, 2975, 5, 3, 0, 0, 2975, 3028, 1, 0, 0, 0, 2976, 2978, 5, 197, 0, 0, 2977, 2976, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 7, 38, 0, 0, 2980, 3028, 3, 244, 122, 0, 2981, 2983, 5, 197, 0, 0, 2982, 2981, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2985, 7, 39, 0, 0, 2985, 2999, 7, 40, 0, 0, 2986, 2987, 5, 2, 0, 0, 2987, 3000, 5, 3, 0, 0, 2988, 2989, 5, 2, 0, 0, 2989, 2994, 3, 232, 116, 0, 2990, 2991, 5, 4, 0, 0, 2991, 2993, 3, 232, 116, 0, 2992, 2990, 1, 0, 0, 0, 2993, 2996, 1, 0, 0, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2994, 1, 0, 0, 0, 2997, 2998, 5, 3, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2986, 1, 0, 0, 0, 2999, 2988, 1, 0, 0, 0, 3000, 3028, 1, 0, 0, 0, 3001, 3003, 5, 197, 0, 0, 3002, 3001, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3005, 7, 39, 0, 0, 3005, 3008, 3, 244, 122, 0, 3006, 3007, 5, 100, 0, 0, 3007, 3009, 3, 342, 171, 0, 3008, 3006, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3028, 1, 0, 0, 0, 3010, 3012, 5, 153, 0, 0, 3011, 3013, 5, 197, 0, 0, 3012, 3011, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3028, 5, 198, 0, 0, 3015, 3017, 5, 153, 0, 0, 3016, 3018, 5, 197, 0, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3028, 7, 41, 0, 0, 3020, 3022, 5, 153, 0, 0, 3021, 3023, 5, 197, 0, 0, 3022, 3021, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 5, 92, 0, 0, 3025, 3026, 5, 123, 0, 0, 3026, 3028, 3, 244, 122, 0, 3027, 2946, 1, 0, 0, 0, 3027, 2954, 1, 0, 0, 0, 3027, 2969, 1, 0, 0, 0, 3027, 2977, 1, 0, 0, 0, 3027, 2982, 1, 0, 0, 0, 3027, 3002, 1, 0, 0, 0, 3027, 3010, 1, 0, 0, 0, 3027, 3015, 1, 0, 0, 0, 3027, 3020, 1, 0, 0, 0, 3028, 243, 1, 0, 0, 0, 3029, 3030, 6, 122, -1, 0, 3030, 3034, 3, 248, 124, 0, 3031, 3032, 7, 42, 0, 0, 3032, 3034, 3, 244, 122, 7, 3033, 3029, 1, 0, 0, 0, 3033, 3031, 1, 0, 0, 0, 3034, 3056, 1, 0, 0, 0, 3035, 3036, 10, 6, 0, 0, 3036, 3037, 7, 43, 0, 0, 3037, 3055, 3, 244, 122, 7, 3038, 3039, 10, 5, 0, 0, 3039, 3040, 7, 44, 0, 0, 3040, 3055, 3, 244, 122, 6, 3041, 3042, 10, 4, 0, 0, 3042, 3043, 5, 367, 0, 0, 3043, 3055, 3, 244, 122, 5, 3044, 3045, 10, 3, 0, 0, 3045, 3046, 5, 370, 0, 0, 3046, 3055, 3, 244, 122, 4, 3047, 3048, 10, 2, 0, 0, 3048, 3049, 5, 368, 0, 0, 3049, 3055, 3, 244, 122, 3, 3050, 3051, 10, 1, 0, 0, 3051, 3052, 3, 254, 127, 0, 3052, 3053, 3, 244, 122, 2, 3053, 3055, 1, 0, 0, 0, 3054, 3035, 1, 0, 0, 0, 3054, 3038, 1, 0, 0, 0, 3054, 3041, 1, 0, 0, 0, 3054, 3044, 1, 0, 0, 0, 3054, 3047, 1, 0, 0, 0, 3054, 3050, 1, 0, 0, 0, 3055, 3058, 1, 0, 0, 0, 3056, 3054, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 245, 1, 0, 0, 0, 3058, 3056, 1, 0, 0, 0, 3059, 3060, 7, 45, 0, 0, 3060, 247, 1, 0, 0, 0, 3061, 3062, 6, 124, -1, 0, 3062, 3311, 7, 46, 0, 0, 3063, 3064, 7, 47, 0, 0, 3064, 3067, 5, 2, 0, 0, 3065, 3068, 3, 246, 123, 0, 3066, 3068, 3, 342, 171, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3066, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 5, 4, 0, 0, 3070, 3071, 3, 244, 122, 0, 3071, 3072, 5, 4, 0, 0, 3072, 3073, 3, 244, 122, 0, 3073, 3074, 5, 3, 0, 0, 3074, 3311, 1, 0, 0, 0, 3075, 3076, 7, 48, 0, 0, 3076, 3079, 5, 2, 0, 0, 3077, 3080, 3, 246, 123, 0, 3078, 3080, 3, 342, 171, 0, 3079, 3077, 1, 0, 0, 0, 3079, 3078, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, 5, 4, 0, 0, 3082, 3083, 3, 244, 122, 0, 3083, 3084, 5, 4, 0, 0, 3084, 3085, 3, 244, 122, 0, 3085, 3086, 5, 3, 0, 0, 3086, 3311, 1, 0, 0, 0, 3087, 3089, 5, 35, 0, 0, 3088, 3090, 3, 308, 154, 0, 3089, 3088, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3095, 1, 0, 0, 0, 3093, 3094, 5, 97, 0, 0, 3094, 3096, 3, 232, 116, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3097, 1, 0, 0, 0, 3097, 3098, 5, 99, 0, 0, 3098, 3311, 1, 0, 0, 0, 3099, 3100, 5, 35, 0, 0, 3100, 3102, 3, 232, 116, 0, 3101, 3103, 3, 308, 154, 0, 3102, 3101, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 3102, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3108, 1, 0, 0, 0, 3106, 3107, 5, 97, 0, 0, 3107, 3109, 3, 232, 116, 0, 3108, 3106, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3111, 5, 99, 0, 0, 3111, 3311, 1, 0, 0, 0, 3112, 3113, 7, 49, 0, 0, 3113, 3114, 5, 2, 0, 0, 3114, 3115, 3, 232, 116, 0, 3115, 3116, 5, 20, 0, 0, 3116, 3117, 3, 282, 141, 0, 3117, 3118, 5, 3, 0, 0, 3118, 3311, 1, 0, 0, 0, 3119, 3120, 5, 286, 0, 0, 3120, 3129, 5, 2, 0, 0, 3121, 3126, 3, 220, 110, 0, 3122, 3123, 5, 4, 0, 0, 3123, 3125, 3, 220, 110, 0, 3124, 3122, 1, 0, 0, 0, 3125, 3128, 1, 0, 0, 0, 3126, 3124, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3130, 1, 0, 0, 0, 3128, 3126, 1, 0, 0, 0, 3129, 3121, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3311, 5, 3, 0, 0, 3132, 3133, 5, 116, 0, 0, 3133, 3134, 5, 2, 0, 0, 3134, 3137, 3, 232, 116, 0, 3135, 3136, 5, 138, 0, 0, 3136, 3138, 5, 199, 0, 0, 3137, 3135, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3140, 5, 3, 0, 0, 3140, 3311, 1, 0, 0, 0, 3141, 3142, 5, 17, 0, 0, 3142, 3143, 5, 2, 0, 0, 3143, 3146, 3, 232, 116, 0, 3144, 3145, 5, 138, 0, 0, 3145, 3147, 5, 199, 0, 0, 3146, 3144, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 5, 3, 0, 0, 3149, 3311, 1, 0, 0, 0, 3150, 3151, 5, 157, 0, 0, 3151, 3152, 5, 2, 0, 0, 3152, 3155, 3, 232, 116, 0, 3153, 3154, 5, 138, 0, 0, 3154, 3156, 5, 199, 0, 0, 3155, 3153, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 5, 3, 0, 0, 3158, 3311, 1, 0, 0, 0, 3159, 3160, 5, 225, 0, 0, 3160, 3161, 5, 2, 0, 0, 3161, 3162, 3, 244, 122, 0, 3162, 3163, 5, 140, 0, 0, 3163, 3164, 3, 244, 122, 0, 3164, 3165, 5, 3, 0, 0, 3165, 3311, 1, 0, 0, 0, 3166, 3311, 3, 252, 126, 0, 3167, 3311, 5, 363, 0, 0, 3168, 3169, 3, 326, 163, 0, 3169, 3170, 5, 5, 0, 0, 3170, 3171, 5, 363, 0, 0, 3171, 3311, 1, 0, 0, 0, 3172, 3173, 5, 2, 0, 0, 3173, 3176, 3, 220, 110, 0, 3174, 3175, 5, 4, 0, 0, 3175, 3177, 3, 220, 110, 0, 3176, 3174, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3176, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3181, 5, 3, 0, 0, 3181, 3311, 1, 0, 0, 0, 3182, 3183, 5, 2, 0, 0, 3183, 3184, 3, 16, 8, 0, 3184, 3185, 5, 3, 0, 0, 3185, 3311, 1, 0, 0, 0, 3186, 3187, 5, 136, 0, 0, 3187, 3188, 5, 2, 0, 0, 3188, 3189, 3, 232, 116, 0, 3189, 3190, 5, 3, 0, 0, 3190, 3311, 1, 0, 0, 0, 3191, 3192, 3, 322, 161, 0, 3192, 3204, 5, 2, 0, 0, 3193, 3195, 3, 166, 83, 0, 3194, 3193, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3201, 3, 236, 118, 0, 3197, 3198, 5, 4, 0, 0, 3198, 3200, 3, 236, 118, 0, 3199, 3197, 1, 0, 0, 0, 3200, 3203, 1, 0, 0, 0, 3201, 3199, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 3205, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 3194, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3213, 5, 3, 0, 0, 3207, 3208, 5, 114, 0, 0, 3208, 3209, 5, 2, 0, 0, 3209, 3210, 5, 344, 0, 0, 3210, 3211, 3, 240, 120, 0, 3211, 3212, 5, 3, 0, 0, 3212, 3214, 1, 0, 0, 0, 3213, 3207, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3217, 1, 0, 0, 0, 3215, 3216, 7, 50, 0, 0, 3216, 3218, 5, 199, 0, 0, 3217, 3215, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3221, 1, 0, 0, 0, 3219, 3220, 5, 213, 0, 0, 3220, 3222, 3, 314, 157, 0, 3221, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3311, 1, 0, 0, 0, 3223, 3224, 3, 332, 166, 0, 3224, 3225, 5, 372, 0, 0, 3225, 3226, 3, 232, 116, 0, 3226, 3311, 1, 0, 0, 0, 3227, 3228, 5, 2, 0, 0, 3228, 3231, 3, 332, 166, 0, 3229, 3230, 5, 4, 0, 0, 3230, 3232, 3, 332, 166, 0, 3231, 3229, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3231, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3236, 5, 3, 0, 0, 3236, 3237, 5, 372, 0, 0, 3237, 3238, 3, 232, 116, 0, 3238, 3311, 1, 0, 0, 0, 3239, 3311, 3, 80, 40, 0, 3240, 3241, 5, 2, 0, 0, 3241, 3242, 3, 232, 116, 0, 3242, 3243, 5, 3, 0, 0, 3243, 3311, 1, 0, 0, 0, 3244, 3245, 5, 110, 0, 0, 3245, 3246, 5, 2, 0, 0, 3246, 3247, 3, 332, 166, 0, 3247, 3248, 5, 123, 0, 0, 3248, 3249, 3, 244, 122, 0, 3249, 3250, 5, 3, 0, 0, 3250, 3311, 1, 0, 0, 0, 3251, 3252, 7, 51, 0, 0, 3252, 3253, 5, 2, 0, 0, 3253, 3254, 3, 244, 122, 0, 3254, 3255, 7, 52, 0, 0, 3255, 3258, 3, 244, 122, 0, 3256, 3257, 7, 53, 0, 0, 3257, 3259, 3, 244, 122, 0, 3258, 3256, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3261, 5, 3, 0, 0, 3261, 3311, 1, 0, 0, 0, 3262, 3263, 5, 315, 0, 0, 3263, 3265, 5, 2, 0, 0, 3264, 3266, 7, 54, 0, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 3, 244, 122, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3271, 5, 123, 0, 0, 3271, 3272, 3, 244, 122, 0, 3272, 3273, 5, 3, 0, 0, 3273, 3311, 1, 0, 0, 0, 3274, 3275, 5, 215, 0, 0, 3275, 3276, 5, 2, 0, 0, 3276, 3277, 3, 244, 122, 0, 3277, 3278, 5, 224, 0, 0, 3278, 3279, 3, 244, 122, 0, 3279, 3280, 5, 123, 0, 0, 3280, 3283, 3, 244, 122, 0, 3281, 3282, 5, 119, 0, 0, 3282, 3284, 3, 244, 122, 0, 3283, 3281, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3286, 5, 3, 0, 0, 3286, 3311, 1, 0, 0, 0, 3287, 3288, 7, 55, 0, 0, 3288, 3289, 5, 2, 0, 0, 3289, 3290, 3, 244, 122, 0, 3290, 3291, 5, 3, 0, 0, 3291, 3292, 5, 347, 0, 0, 3292, 3293, 5, 130, 0, 0, 3293, 3294, 5, 2, 0, 0, 3294, 3295, 5, 209, 0, 0, 3295, 3296, 5, 31, 0, 0, 3296, 3297, 3, 100, 50, 0, 3297, 3304, 5, 3, 0, 0, 3298, 3299, 5, 114, 0, 0, 3299, 3300, 5, 2, 0, 0, 3300, 3301, 5, 344, 0, 0, 3301, 3302, 3, 240, 120, 0, 3302, 3303, 5, 3, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3298, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3308, 1, 0, 0, 0, 3306, 3307, 5, 213, 0, 0, 3307, 3309, 3, 314, 157, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3061, 1, 0, 0, 0, 3310, 3063, 1, 0, 0, 0, 3310, 3075, 1, 0, 0, 0, 3310, 3087, 1, 0, 0, 0, 3310, 3099, 1, 0, 0, 0, 3310, 3112, 1, 0, 0, 0, 3310, 3119, 1, 0, 0, 0, 3310, 3132, 1, 0, 0, 0, 3310, 3141, 1, 0, 0, 0, 3310, 3150, 1, 0, 0, 0, 3310, 3159, 1, 0, 0, 0, 3310, 3166, 1, 0, 0, 0, 3310, 3167, 1, 0, 0, 0, 3310, 3168, 1, 0, 0, 0, 3310, 3172, 1, 0, 0, 0, 3310, 3182, 1, 0, 0, 0, 3310, 3186, 1, 0, 0, 0, 3310, 3191, 1, 0, 0, 0, 3310, 3223, 1, 0, 0, 0, 3310, 3227, 1, 0, 0, 0, 3310, 3239, 1, 0, 0, 0, 3310, 3240, 1, 0, 0, 0, 3310, 3244, 1, 0, 0, 0, 3310, 3251, 1, 0, 0, 0, 3310, 3262, 1, 0, 0, 0, 3310, 3274, 1, 0, 0, 0, 3310, 3287, 1, 0, 0, 0, 3311, 3322, 1, 0, 0, 0, 3312, 3313, 10, 9, 0, 0, 3313, 3314, 5, 6, 0, 0, 3314, 3315, 3, 244, 122, 0, 3315, 3316, 5, 7, 0, 0, 3316, 3321, 1, 0, 0, 0, 3317, 3318, 10, 7, 0, 0, 3318, 3319, 5, 5, 0, 0, 3319, 3321, 3, 332, 166, 0, 3320, 3312, 1, 0, 0, 0, 3320, 3317, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 249, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3325, 3333, 5, 71, 0, 0, 3326, 3333, 5, 303, 0, 0, 3327, 3333, 5, 304, 0, 0, 3328, 3333, 5, 305, 0, 0, 3329, 3333, 5, 149, 0, 0, 3330, 3333, 5, 133, 0, 0, 3331, 3333, 3, 332, 166, 0, 3332, 3325, 1, 0, 0, 0, 3332, 3326, 1, 0, 0, 0, 3332, 3327, 1, 0, 0, 0, 3332, 3328, 1, 0, 0, 0, 3332, 3329, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3331, 1, 0, 0, 0, 3333, 251, 1, 0, 0, 0, 3334, 3350, 5, 198, 0, 0, 3335, 3350, 5, 376, 0, 0, 3336, 3337, 5, 371, 0, 0, 3337, 3350, 3, 332, 166, 0, 3338, 3350, 3, 262, 131, 0, 3339, 3340, 3, 250, 125, 0, 3340, 3341, 3, 342, 171, 0, 3341, 3350, 1, 0, 0, 0, 3342, 3350, 3, 338, 169, 0, 3343, 3350, 3, 260, 130, 0, 3344, 3346, 3, 342, 171, 0, 3345, 3344, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3350, 1, 0, 0, 0, 3349, 3334, 1, 0, 0, 0, 3349, 3335, 1, 0, 0, 0, 3349, 3336, 1, 0, 0, 0, 3349, 3338, 1, 0, 0, 0, 3349, 3339, 1, 0, 0, 0, 3349, 3342, 1, 0, 0, 0, 3349, 3343, 1, 0, 0, 0, 3349, 3345, 1, 0, 0, 0, 3350, 253, 1, 0, 0, 0, 3351, 3352, 7, 56, 0, 0, 3352, 255, 1, 0, 0, 0, 3353, 3354, 7, 57, 0, 0, 3354, 257, 1, 0, 0, 0, 3355, 3356, 7, 58, 0, 0, 3356, 259, 1, 0, 0, 0, 3357, 3358, 7, 59, 0, 0, 3358, 261, 1, 0, 0, 0, 3359, 3362, 5, 149, 0, 0, 3360, 3363, 3, 264, 132, 0, 3361, 3363, 3, 268, 134, 0, 3362, 3360, 1, 0, 0, 0, 3362, 3361, 1, 0, 0, 0, 3363, 263, 1, 0, 0, 0, 3364, 3366, 3, 266, 133, 0, 3365, 3367, 3, 270, 135, 0, 3366, 3365, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 265, 1, 0, 0, 0, 3368, 3369, 3, 272, 136, 0, 3369, 3370, 3, 274, 137, 0, 3370, 3372, 1, 0, 0, 0, 3371, 3368, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 267, 1, 0, 0, 0, 3375, 3378, 3, 270, 135, 0, 3376, 3379, 3, 266, 133, 0, 3377, 3379, 3, 270, 135, 0, 3378, 3376, 1, 0, 0, 0, 3378, 3377, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 269, 1, 0, 0, 0, 3380, 3381, 3, 272, 136, 0, 3381, 3382, 3, 276, 138, 0, 3382, 3383, 5, 309, 0, 0, 3383, 3384, 3, 276, 138, 0, 3384, 271, 1, 0, 0, 0, 3385, 3387, 7, 60, 0, 0, 3386, 3385, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3391, 1, 0, 0, 0, 3388, 3392, 5, 382, 0, 0, 3389, 3392, 5, 384, 0, 0, 3390, 3392, 3, 342, 171, 0, 3391, 3388, 1, 0, 0, 0, 3391, 3389, 1, 0, 0, 0, 3391, 3390, 1, 0, 0, 0, 3392, 273, 1, 0, 0, 0, 3393, 3394, 7, 61, 0, 0, 3394, 275, 1, 0, 0, 0, 3395, 3396, 7, 62, 0, 0, 3396, 277, 1, 0, 0, 0, 3397, 3401, 5, 116, 0, 0, 3398, 3399, 5, 9, 0, 0, 3399, 3401, 3, 328, 164, 0, 3400, 3397, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3401, 279, 1, 0, 0, 0, 3402, 3433, 5, 27, 0, 0, 3403, 3433, 5, 308, 0, 0, 3404, 3433, 5, 32, 0, 0, 3405, 3433, 5, 276, 0, 0, 3406, 3433, 5, 272, 0, 0, 3407, 3433, 5, 150, 0, 0, 3408, 3433, 5, 151, 0, 0, 3409, 3433, 5, 25, 0, 0, 3410, 3433, 5, 174, 0, 0, 3411, 3433, 5, 117, 0, 0, 3412, 3433, 5, 234, 0, 0, 3413, 3433, 5, 95, 0, 0, 3414, 3433, 5, 71, 0, 0, 3415, 3433, 5, 303, 0, 0, 3416, 3433, 5, 305, 0, 0, 3417, 3433, 5, 304, 0, 0, 3418, 3433, 5, 285, 0, 0, 3419, 3433, 5, 41, 0, 0, 3420, 3433, 5, 40, 0, 0, 3421, 3433, 5, 334, 0, 0, 3422, 3433, 5, 26, 0, 0, 3423, 3433, 5, 80, 0, 0, 3424, 3433, 5, 79, 0, 0, 3425, 3433, 5, 200, 0, 0, 3426, 3433, 5, 340, 0, 0, 3427, 3433, 5, 149, 0, 0, 3428, 3433, 5, 19, 0, 0, 3429, 3433, 5, 286, 0, 0, 3430, 3433, 5, 177, 0, 0, 3431, 3433, 3, 332, 166, 0, 3432, 3402, 1, 0, 0, 0, 3432, 3403, 1, 0, 0, 0, 3432, 3404, 1, 0, 0, 0, 3432, 3405, 1, 0, 0, 0, 3432, 3406, 1, 0, 0, 0, 3432, 3407, 1, 0, 0, 0, 3432, 3408, 1, 0, 0, 0, 3432, 3409, 1, 0, 0, 0, 3432, 3410, 1, 0, 0, 0, 3432, 3411, 1, 0, 0, 0, 3432, 3412, 1, 0, 0, 0, 3432, 3413, 1, 0, 0, 0, 3432, 3414, 1, 0, 0, 0, 3432, 3415, 1, 0, 0, 0, 3432, 3416, 1, 0, 0, 0, 3432, 3417, 1, 0, 0, 0, 3432, 3418, 1, 0, 0, 0, 3432, 3419, 1, 0, 0, 0, 3432, 3420, 1, 0, 0, 0, 3432, 3421, 1, 0, 0, 0, 3432, 3422, 1, 0, 0, 0, 3432, 3423, 1, 0, 0, 0, 3432, 3424, 1, 0, 0, 0, 3432, 3425, 1, 0, 0, 0, 3432, 3426, 1, 0, 0, 0, 3432, 3427, 1, 0, 0, 0, 3432, 3428, 1, 0, 0, 0, 3432, 3429, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3432, 3431, 1, 0, 0, 0, 3433, 281, 1, 0, 0, 0, 3434, 3435, 5, 19, 0, 0, 3435, 3436, 5, 356, 0, 0, 3436, 3437, 3, 282, 141, 0, 3437, 3438, 5, 358, 0, 0, 3438, 3488, 1, 0, 0, 0, 3439, 3440, 5, 177, 0, 0, 3440, 3441, 5, 356, 0, 0, 3441, 3442, 3, 282, 141, 0, 3442, 3443, 5, 4, 0, 0, 3443, 3444, 3, 282, 141, 0, 3444, 3445, 5, 358, 0, 0, 3445, 3488, 1, 0, 0, 0, 3446, 3460, 5, 286, 0, 0, 3447, 3456, 5, 356, 0, 0, 3448, 3453, 3, 306, 153, 0, 3449, 3450, 5, 4, 0, 0, 3450, 3452, 3, 306, 153, 0, 3451, 3449, 1, 0, 0, 0, 3452, 3455, 1, 0, 0, 0, 3453, 3451, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3457, 1, 0, 0, 0, 3455, 3453, 1, 0, 0, 0, 3456, 3448, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 5, 358, 0, 0, 3459, 3461, 5, 354, 0, 0, 3460, 3447, 1, 0, 0, 0, 3460, 3459, 1, 0, 0, 0, 3461, 3488, 1, 0, 0, 0, 3462, 3463, 5, 149, 0, 0, 3463, 3466, 7, 63, 0, 0, 3464, 3465, 5, 309, 0, 0, 3465, 3467, 5, 186, 0, 0, 3466, 3464, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3488, 1, 0, 0, 0, 3468, 3469, 5, 149, 0, 0, 3469, 3472, 7, 64, 0, 0, 3470, 3471, 5, 309, 0, 0, 3471, 3473, 7, 65, 0, 0, 3472, 3470, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3488, 1, 0, 0, 0, 3474, 3485, 3, 280, 140, 0, 3475, 3476, 5, 2, 0, 0, 3476, 3481, 5, 382, 0, 0, 3477, 3478, 5, 4, 0, 0, 3478, 3480, 5, 382, 0, 0, 3479, 3477, 1, 0, 0, 0, 3480, 3483, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3484, 3486, 5, 3, 0, 0, 3485, 3475, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3488, 1, 0, 0, 0, 3487, 3434, 1, 0, 0, 0, 3487, 3439, 1, 0, 0, 0, 3487, 3446, 1, 0, 0, 0, 3487, 3462, 1, 0, 0, 0, 3487, 3468, 1, 0, 0, 0, 3487, 3474, 1, 0, 0, 0, 3488, 283, 1, 0, 0, 0, 3489, 3494, 3, 286, 143, 0, 3490, 3491, 5, 4, 0, 0, 3491, 3493, 3, 286, 143, 0, 3492, 3490, 1, 0, 0, 0, 3493, 3496, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 285, 1, 0, 0, 0, 3496, 3494, 1, 0, 0, 0, 3497, 3498, 3, 84, 42, 0, 3498, 3502, 3, 282, 141, 0, 3499, 3501, 3, 292, 146, 0, 3500, 3499, 1, 0, 0, 0, 3501, 3504, 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 287, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3505, 3510, 3, 290, 145, 0, 3506, 3507, 5, 4, 0, 0, 3507, 3509, 3, 290, 145, 0, 3508, 3506, 1, 0, 0, 0, 3509, 3512, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 289, 1, 0, 0, 0, 3512, 3510, 1, 0, 0, 0, 3513, 3514, 3, 78, 39, 0, 3514, 3518, 3, 282, 141, 0, 3515, 3517, 3, 292, 146, 0, 3516, 3515, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 291, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3522, 5, 197, 0, 0, 3522, 3529, 5, 198, 0, 0, 3523, 3524, 5, 82, 0, 0, 3524, 3529, 3, 232, 116, 0, 3525, 3526, 5, 51, 0, 0, 3526, 3529, 3, 342, 171, 0, 3527, 3529, 3, 278, 139, 0, 3528, 3521, 1, 0, 0, 0, 3528, 3523, 1, 0, 0, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 293, 1, 0, 0, 0, 3530, 3531, 7, 66, 0, 0, 3531, 3532, 3, 232, 116, 0, 3532, 295, 1, 0, 0, 0, 3533, 3538, 3, 298, 149, 0, 3534, 3535, 5, 4, 0, 0, 3535, 3537, 3, 298, 149, 0, 3536, 3534, 1, 0, 0, 0, 3537, 3540, 1, 0, 0, 0, 3538, 3536, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 297, 1, 0, 0, 0, 3540, 3538, 1, 0, 0, 0, 3541, 3542, 3, 328, 164, 0, 3542, 3545, 3, 282, 141, 0, 3543, 3544, 5, 197, 0, 0, 3544, 3546, 5, 198, 0, 0, 3545, 3543, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3549, 1, 0, 0, 0, 3547, 3548, 5, 51, 0, 0, 3548, 3550, 3, 342, 171, 0, 3549, 3547, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 299, 1, 0, 0, 0, 3551, 3556, 3, 302, 151, 0, 3552, 3553, 5, 4, 0, 0, 3553, 3555, 3, 302, 151, 0, 3554, 3552, 1, 0, 0, 0, 3555, 3558, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3556, 3557, 1, 0, 0, 0, 3557, 301, 1, 0, 0, 0, 3558, 3556, 1, 0, 0, 0, 3559, 3560, 3, 84, 42, 0, 3560, 3564, 3, 282, 141, 0, 3561, 3563, 3, 304, 152, 0, 3562, 3561, 1, 0, 0, 0, 3563, 3566, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3564, 3565, 1, 0, 0, 0, 3565, 303, 1, 0, 0, 0, 3566, 3564, 1, 0, 0, 0, 3567, 3568, 5, 197, 0, 0, 3568, 3581, 5, 198, 0, 0, 3569, 3570, 5, 82, 0, 0, 3570, 3581, 3, 232, 116, 0, 3571, 3572, 5, 127, 0, 0, 3572, 3573, 5, 12, 0, 0, 3573, 3574, 5, 20, 0, 0, 3574, 3575, 5, 2, 0, 0, 3575, 3576, 3, 232, 116, 0, 3576, 3577, 5, 3, 0, 0, 3577, 3581, 1, 0, 0, 0, 3578, 3579, 5, 51, 0, 0, 3579, 3581, 3, 342, 171, 0, 3580, 3567, 1, 0, 0, 0, 3580, 3569, 1, 0, 0, 0, 3580, 3571, 1, 0, 0, 0, 3580, 3578, 1, 0, 0, 0, 3581, 305, 1, 0, 0, 0, 3582, 3584, 3, 332, 166, 0, 3583, 3585, 5, 371, 0, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3589, 3, 282, 141, 0, 3587, 3588, 5, 197, 0, 0, 3588, 3590, 5, 198, 0, 0, 3589, 3587, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3593, 1, 0, 0, 0, 3591, 3592, 5, 51, 0, 0, 3592, 3594, 3, 342, 171, 0, 3593, 3591, 1, 0, 0, 0, 3593, 3594, 1, 0, 0, 0, 3594, 307, 1, 0, 0, 0, 3595, 3596, 5, 343, 0, 0, 3596, 3597, 3, 232, 116, 0, 3597, 3598, 5, 300, 0, 0, 3598, 3599, 3, 232, 116, 0, 3599, 309, 1, 0, 0, 0, 3600, 3601, 5, 345, 0, 0, 3601, 3602, 3, 328, 164, 0, 3602, 3603, 5, 20, 0, 0, 3603, 3611, 3, 314, 157, 0, 3604, 3605, 5, 4, 0, 0, 3605, 3606, 3, 328, 164, 0, 3606, 3607, 5, 20, 0, 0, 3607, 3608, 3, 314, 157, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3604, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 311, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3615, 5, 351, 0, 0, 3615, 3616, 5, 31, 0, 0, 3616, 3617, 3, 82, 41, 0, 3617, 313, 1, 0, 0, 0, 3618, 3658, 3, 328, 164, 0, 3619, 3620, 5, 2, 0, 0, 3620, 3621, 3, 328, 164, 0, 3621, 3622, 5, 3, 0, 0, 3622, 3658, 1, 0, 0, 0, 3623, 3651, 5, 2, 0, 0, 3624, 3625, 5, 44, 0, 0, 3625, 3626, 5, 31, 0, 0, 3626, 3631, 3, 232, 116, 0, 3627, 3628, 5, 4, 0, 0, 3628, 3630, 3, 232, 116, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3633, 1, 0, 0, 0, 3631, 3629, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3652, 1, 0, 0, 0, 3633, 3631, 1, 0, 0, 0, 3634, 3635, 7, 35, 0, 0, 3635, 3636, 5, 31, 0, 0, 3636, 3641, 3, 232, 116, 0, 3637, 3638, 5, 4, 0, 0, 3638, 3640, 3, 232, 116, 0, 3639, 3637, 1, 0, 0, 0, 3640, 3643, 1, 0, 0, 0, 3641, 3639, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3645, 1, 0, 0, 0, 3643, 3641, 1, 0, 0, 0, 3644, 3634, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3649, 1, 0, 0, 0, 3646, 3647, 7, 36, 0, 0, 3647, 3648, 5, 31, 0, 0, 3648, 3650, 3, 92, 46, 0, 3649, 3646, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 3652, 1, 0, 0, 0, 3651, 3624, 1, 0, 0, 0, 3651, 3644, 1, 0, 0, 0, 3652, 3654, 1, 0, 0, 0, 3653, 3655, 3, 316, 158, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3658, 5, 3, 0, 0, 3657, 3618, 1, 0, 0, 0, 3657, 3619, 1, 0, 0, 0, 3657, 3623, 1, 0, 0, 0, 3658, 315, 1, 0, 0, 0, 3659, 3660, 7, 67, 0, 0, 3660, 3668, 3, 318, 159, 0, 3661, 3662, 7, 67, 0, 0, 3662, 3663, 5, 24, 0, 0, 3663, 3664, 3, 318, 159, 0, 3664, 3665, 5, 14, 0, 0, 3665, 3666, 3, 318, 159, 0, 3666, 3668, 1, 0, 0, 0, 3667, 3659, 1, 0, 0, 0, 3667, 3661, 1, 0, 0, 0, 3668, 317, 1, 0, 0, 0, 3669, 3670, 5, 321, 0, 0, 3670, 3677, 7, 68, 0, 0, 3671, 3672, 5, 62, 0, 0, 3672, 3677, 5, 257, 0, 0, 3673, 3674, 3, 232, 116, 0, 3674, 3675, 7, 68, 0, 0, 3675, 3677, 1, 0, 0, 0, 3676, 3669, 1, 0, 0, 0, 3676, 3671, 1, 0, 0, 0, 3676, 3673, 1, 0, 0, 0, 3677, 319, 1, 0, 0, 0, 3678, 3683, 3, 326, 163, 0, 3679, 3680, 5, 4, 0, 0, 3680, 3682, 3, 326, 163, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3685, 1, 0, 0, 0, 3683, 3681, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 321, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3687, 5, 136, 0, 0, 3687, 3688, 5, 2, 0, 0, 3688, 3689, 3, 232, 116, 0, 3689, 3690, 5, 3, 0, 0, 3690, 3696, 1, 0, 0, 0, 3691, 3696, 3, 326, 163, 0, 3692, 3696, 5, 114, 0, 0, 3693, 3696, 5, 161, 0, 0, 3694, 3696, 5, 250, 0, 0, 3695, 3686, 1, 0, 0, 0, 3695, 3691, 1, 0, 0, 0, 3695, 3692, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3695, 3694, 1, 0, 0, 0, 3696, 323, 1, 0, 0, 0, 3697, 3698, 3, 326, 163, 0, 3698, 325, 1, 0, 0, 0, 3699, 3704, 3, 332, 166, 0, 3700, 3701, 5, 5, 0, 0, 3701, 3703, 3, 332, 166, 0, 3702, 3700, 1, 0, 0, 0, 3703, 3706, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 327, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3707, 3708, 3, 332, 166, 0, 3708, 3709, 3, 330, 165, 0, 3709, 329, 1, 0, 0, 0, 3710, 3711, 5, 362, 0, 0, 3711, 3713, 3, 332, 166, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3712, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3718, 1, 0, 0, 0, 3716, 3718, 1, 0, 0, 0, 3717, 3712, 1, 0, 0, 0, 3717, 3716, 1, 0, 0, 0, 3718, 331, 1, 0, 0, 0, 3719, 3722, 3, 334, 167, 0, 3720, 3722, 3, 346, 173, 0, 3721, 3719, 1, 0, 0, 0, 3721, 3720, 1, 0, 0, 0, 3722, 333, 1, 0, 0, 0, 3723, 3728, 5, 388, 0, 0, 3724, 3728, 3, 336, 168, 0, 3725, 3728, 3, 344, 172, 0, 3726, 3728, 3, 348, 174, 0, 3727, 3723, 1, 0, 0, 0, 3727, 3724, 1, 0, 0, 0, 3727, 3725, 1, 0, 0, 0, 3727, 3726, 1, 0, 0, 0, 3728, 335, 1, 0, 0, 0, 3729, 3730, 7, 69, 0, 0, 3730, 337, 1, 0, 0, 0, 3731, 3733, 5, 362, 0, 0, 3732, 3731, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3735, 7, 70, 0, 0, 3735, 339, 1, 0, 0, 0, 3736, 3737, 5, 319, 0, 0, 3737, 3750, 3, 282, 141, 0, 3738, 3739, 5, 51, 0, 0, 3739, 3750, 3, 342, 171, 0, 3740, 3750, 3, 278, 139, 0, 3741, 3742, 7, 71, 0, 0, 3742, 3743, 5, 197, 0, 0, 3743, 3750, 5, 198, 0, 0, 3744, 3745, 5, 269, 0, 0, 3745, 3746, 5, 82, 0, 0, 3746, 3750, 3, 232, 116, 0, 3747, 3748, 5, 96, 0, 0, 3748, 3750, 5, 82, 0, 0, 3749, 3736, 1, 0, 0, 0, 3749, 3738, 1, 0, 0, 0, 3749, 3740, 1, 0, 0, 0, 3749, 3741, 1, 0, 0, 0, 3749, 3744, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3750, 341, 1, 0, 0, 0, 3751, 3752, 7, 72, 0, 0, 3752, 343, 1, 0, 0, 0, 3753, 3754, 7, 73, 0, 0, 3754, 345, 1, 0, 0, 0, 3755, 3756, 7, 74, 0, 0, 3756, 347, 1, 0, 0, 0, 3757, 3758, 7, 75, 0, 0, 3758, 349, 1, 0, 0, 0, 504, 353, 360, 364, 369, 376, 381, 391, 393, 413, 417, 423, 426, 429, 433, 436, 440, 447, 450, 454, 457, 462, 475, 477, 482, 491, 494, 498, 501, 507, 518, 524, 529, 562, 572, 583, 594, 605, 610, 619, 623, 629, 633, 638, 644, 656, 664, 670, 681, 685, 690, 705, 709, 716, 720, 726, 756, 760, 765, 772, 778, 781, 784, 788, 792, 801, 803, 812, 815, 824, 829, 835, 842, 845, 849, 864, 867, 873, 877, 894, 896, 904, 908, 914, 917, 921, 924, 930, 935, 939, 946, 949, 952, 959, 964, 973, 981, 987, 990, 993, 999, 1003, 1008, 1011, 1015, 1017, 1025, 1033, 1036, 1043, 1046, 1049, 1058, 1063, 1069, 1074, 1077, 1081, 1084, 1088, 1098, 1103, 1116, 1119, 1127, 1133, 1136, 1139, 1144, 1152, 1157, 1163, 1169, 1172, 1179, 1186, 1194, 1206, 1214, 1241, 1244, 1250, 1259, 1268, 1274, 1279, 1284, 1291, 1296, 1301, 1308, 1316, 1319, 1325, 1332, 1336, 1399, 1407, 1414, 1422, 1434, 1439, 1448, 1456, 1461, 1463, 1471, 1476, 1480, 1483, 1491, 1496, 1505, 1510, 1513, 1518, 1522, 1527, 1529, 1534, 1543, 1551, 1557, 1566, 1573, 1582, 1587, 1590, 1615, 1617, 1629, 1636, 1639, 1646, 1650, 1656, 1664, 1671, 1674, 1682, 1693, 1704, 1712, 1718, 1729, 1736, 1743, 1755, 1763, 1769, 1775, 1778, 1794, 1803, 1814, 1819, 1824, 1829, 1834, 1837, 1840, 1844, 1849, 1856, 1864, 1873, 1879, 1885, 1888, 1890, 1898, 1908, 1917, 1921, 1924, 1928, 1932, 1940, 1944, 1947, 1950, 1953, 1957, 1961, 1966, 1970, 1973, 1976, 1979, 1983, 1988, 1992, 1995, 1998, 2001, 2003, 2009, 2016, 2021, 2024, 2027, 2031, 2041, 2045, 2047, 2050, 2054, 2060, 2064, 2075, 2083, 2085, 2092, 2096, 2108, 2115, 2130, 2135, 2142, 2158, 2163, 2176, 2181, 2189, 2195, 2199, 2202, 2205, 2212, 2215, 2221, 2230, 2240, 2255, 2260, 2262, 2267, 2276, 2286, 2291, 2295, 2300, 2307, 2312, 2316, 2319, 2322, 2336, 2349, 2354, 2358, 2361, 2366, 2371, 2375, 2378, 2390, 2401, 2414, 2425, 2430, 2433, 2437, 2440, 2452, 2461, 2464, 2469, 2476, 2479, 2485, 2491, 2493, 2496, 2501, 2505, 2511, 2515, 2518, 2523, 2526, 2531, 2533, 2539, 2544, 2551, 2554, 2572, 2574, 2577, 2588, 2597, 2604, 2612, 2620, 2625, 2628, 2631, 2639, 2647, 2657, 2669, 2672, 2677, 2682, 2689, 2696, 2698, 2711, 2717, 2719, 2728, 2730, 2738, 2742, 2745, 2749, 2751, 2760, 2772, 2774, 2781, 2788, 2794, 2800, 2802, 2809, 2817, 2825, 2831, 2836, 2843, 2849, 2852, 2856, 2858, 2865, 2874, 2881, 2891, 2896, 2900, 2910, 2917, 2930, 2932, 2940, 2942, 2946, 2954, 2963, 2969, 2977, 2982, 2994, 2999, 3002, 3008, 3012, 3017, 3022, 3027, 3033, 3054, 3056, 3067, 3079, 3091, 3095, 3104, 3108, 3126, 3129, 3137, 3146, 3155, 3178, 3194, 3201, 3204, 3213, 3217, 3221, 3233, 3258, 3265, 3268, 3283, 3304, 3308, 3310, 3320, 3322, 3332, 3347, 3349, 3362, 3366, 3373, 3378, 3386, 3391, 3400, 3432, 3453, 3456, 3460, 3466, 3472, 3481, 3485, 3487, 3494, 3502, 3510, 3518, 3528, 3538, 3545, 3549, 3556, 3564, 3580, 3584, 3589, 3593, 3611, 3631, 3641, 3644, 3649, 3651, 3654, 3657, 3667, 3676, 3683, 3695, 3704, 3714, 3717, 3721, 3727, 3732, 3749] \ No newline at end of file +[4, 1, 393, 3799, 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, 1, 0, 5, 0, 368, 8, 0, 10, 0, 12, 0, 371, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 377, 8, 1, 1, 2, 1, 2, 3, 2, 381, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 386, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 393, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 398, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 408, 8, 2, 10, 2, 12, 2, 411, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 430, 8, 2, 1, 2, 1, 2, 3, 2, 434, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 440, 8, 2, 1, 2, 3, 2, 443, 8, 2, 1, 2, 3, 2, 446, 8, 2, 1, 2, 1, 2, 3, 2, 450, 8, 2, 1, 2, 3, 2, 453, 8, 2, 1, 2, 1, 2, 3, 2, 457, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 464, 8, 2, 1, 2, 3, 2, 467, 8, 2, 1, 2, 1, 2, 3, 2, 471, 8, 2, 1, 2, 3, 2, 474, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 479, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 492, 8, 2, 10, 2, 12, 2, 495, 9, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 508, 8, 2, 1, 2, 3, 2, 511, 8, 2, 1, 2, 1, 2, 3, 2, 515, 8, 2, 1, 2, 3, 2, 518, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 535, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 541, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 546, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 579, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 589, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 600, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 611, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 622, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 627, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 636, 8, 2, 1, 2, 1, 2, 3, 2, 640, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 646, 8, 2, 1, 2, 1, 2, 3, 2, 650, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 655, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 673, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 681, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 687, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 698, 8, 2, 1, 2, 1, 2, 3, 2, 702, 8, 2, 1, 2, 4, 2, 705, 8, 2, 11, 2, 12, 2, 706, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 722, 8, 2, 1, 2, 1, 2, 3, 2, 726, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 731, 8, 2, 10, 2, 12, 2, 734, 9, 2, 1, 2, 3, 2, 737, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 743, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 773, 8, 2, 1, 2, 1, 2, 3, 2, 777, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 782, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 795, 8, 2, 1, 2, 3, 2, 798, 8, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 3, 2, 805, 8, 2, 1, 2, 1, 2, 3, 2, 809, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 818, 8, 2, 10, 2, 12, 2, 821, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 829, 8, 2, 1, 2, 3, 2, 832, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 841, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 846, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 859, 8, 2, 1, 2, 3, 2, 862, 8, 2, 1, 2, 1, 2, 3, 2, 866, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 879, 8, 2, 10, 2, 12, 2, 882, 9, 2, 3, 2, 884, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 890, 8, 2, 1, 2, 1, 2, 3, 2, 894, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 911, 8, 2, 10, 2, 12, 2, 914, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 921, 8, 2, 1, 2, 1, 2, 3, 2, 925, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 931, 8, 2, 1, 2, 3, 2, 934, 8, 2, 1, 2, 1, 2, 3, 2, 938, 8, 2, 1, 2, 3, 2, 941, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 947, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 952, 8, 2, 1, 2, 1, 2, 3, 2, 956, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 963, 8, 2, 1, 2, 3, 2, 966, 8, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 976, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 981, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 990, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 998, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1004, 8, 2, 1, 2, 3, 2, 1007, 8, 2, 1, 2, 3, 2, 1010, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1016, 8, 2, 1, 2, 1, 2, 3, 2, 1020, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1025, 8, 2, 1, 2, 3, 2, 1028, 8, 2, 1, 2, 1, 2, 3, 2, 1032, 8, 2, 3, 2, 1034, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1042, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1050, 8, 2, 1, 2, 3, 2, 1053, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1060, 8, 2, 1, 2, 3, 2, 1063, 8, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1075, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1086, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1091, 8, 2, 1, 2, 3, 2, 1094, 8, 2, 1, 2, 1, 2, 3, 2, 1098, 8, 2, 1, 2, 3, 2, 1101, 8, 2, 1, 2, 1, 2, 3, 2, 1105, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1115, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1120, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1131, 8, 2, 10, 2, 12, 2, 1134, 9, 2, 3, 2, 1136, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1144, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1150, 8, 2, 1, 2, 3, 2, 1153, 8, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1169, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1174, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1180, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1186, 8, 2, 1, 2, 3, 2, 1189, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1196, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1201, 8, 2, 10, 2, 12, 2, 1204, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1209, 8, 2, 10, 2, 12, 2, 1212, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1223, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1229, 8, 2, 10, 2, 12, 2, 1232, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1256, 8, 2, 10, 2, 12, 2, 1259, 9, 2, 3, 2, 1261, 8, 2, 1, 2, 1, 2, 5, 2, 1265, 8, 2, 10, 2, 12, 2, 1268, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1274, 8, 2, 10, 2, 12, 2, 1277, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1283, 8, 2, 10, 2, 12, 2, 1286, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1291, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1296, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1301, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1308, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1313, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1318, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1325, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1331, 8, 2, 10, 2, 12, 2, 1334, 9, 2, 3, 2, 1336, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1342, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1349, 8, 3, 1, 3, 1, 3, 3, 3, 1353, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1416, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1424, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1431, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1439, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1451, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1456, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 3, 8, 1465, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 1473, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1478, 8, 9, 3, 9, 1480, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1488, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1493, 8, 9, 1, 9, 1, 9, 3, 9, 1497, 8, 9, 1, 9, 3, 9, 1500, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1508, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1513, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1522, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1527, 8, 9, 1, 9, 3, 9, 1530, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1535, 8, 9, 1, 9, 1, 9, 3, 9, 1539, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1544, 8, 9, 3, 9, 1546, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1551, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 1558, 8, 11, 10, 11, 12, 11, 1561, 9, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1568, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1574, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1583, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1588, 8, 15, 10, 15, 12, 15, 1591, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1597, 8, 16, 10, 16, 12, 16, 1600, 9, 16, 1, 17, 1, 17, 3, 17, 1604, 8, 17, 1, 17, 3, 17, 1607, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 1632, 8, 19, 10, 19, 12, 19, 1635, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 1644, 8, 21, 10, 21, 12, 21, 1647, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1653, 8, 22, 1, 22, 3, 22, 1656, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1661, 8, 23, 10, 23, 12, 23, 1664, 9, 23, 1, 23, 3, 23, 1667, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1673, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1679, 8, 25, 10, 25, 12, 25, 1682, 9, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1688, 8, 26, 1, 26, 3, 26, 1691, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1697, 8, 27, 10, 27, 12, 27, 1700, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1708, 8, 28, 10, 28, 12, 28, 1711, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1721, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1729, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1735, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 4, 32, 1744, 8, 32, 11, 32, 12, 32, 1745, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1753, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1760, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1772, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1778, 8, 32, 10, 32, 12, 32, 1781, 9, 32, 1, 32, 5, 32, 1784, 8, 32, 10, 32, 12, 32, 1787, 9, 32, 1, 32, 5, 32, 1790, 8, 32, 10, 32, 12, 32, 1793, 9, 32, 3, 32, 1795, 8, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 1811, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 1818, 8, 41, 10, 41, 12, 41, 1821, 9, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1831, 8, 43, 1, 44, 1, 44, 1, 44, 3, 44, 1836, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1841, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1846, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1851, 8, 44, 1, 44, 3, 44, 1854, 8, 44, 1, 44, 3, 44, 1857, 8, 44, 1, 44, 1, 44, 3, 44, 1861, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1866, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1871, 8, 46, 10, 46, 12, 46, 1874, 9, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1879, 8, 47, 10, 47, 12, 47, 1882, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1890, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1896, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1902, 8, 48, 1, 48, 5, 48, 1905, 8, 48, 10, 48, 12, 48, 1908, 9, 48, 1, 49, 1, 49, 1, 49, 4, 49, 1913, 8, 49, 11, 49, 12, 49, 1914, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1923, 8, 49, 10, 49, 12, 49, 1926, 9, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1934, 8, 49, 1, 50, 1, 50, 3, 50, 1938, 8, 50, 1, 50, 3, 50, 1941, 8, 50, 1, 50, 1, 50, 3, 50, 1945, 8, 50, 1, 51, 1, 51, 3, 51, 1949, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1955, 8, 51, 10, 51, 12, 51, 1958, 9, 51, 1, 51, 3, 51, 1961, 8, 51, 1, 51, 3, 51, 1964, 8, 51, 1, 51, 3, 51, 1967, 8, 51, 1, 51, 3, 51, 1970, 8, 51, 1, 51, 1, 51, 3, 51, 1974, 8, 51, 1, 52, 1, 52, 3, 52, 1978, 8, 52, 1, 52, 5, 52, 1981, 8, 52, 10, 52, 12, 52, 1984, 9, 52, 1, 52, 3, 52, 1987, 8, 52, 1, 52, 3, 52, 1990, 8, 52, 1, 52, 3, 52, 1993, 8, 52, 1, 52, 3, 52, 1996, 8, 52, 1, 52, 1, 52, 3, 52, 2000, 8, 52, 1, 52, 5, 52, 2003, 8, 52, 10, 52, 12, 52, 2006, 9, 52, 1, 52, 3, 52, 2009, 8, 52, 1, 52, 3, 52, 2012, 8, 52, 1, 52, 3, 52, 2015, 8, 52, 1, 52, 3, 52, 2018, 8, 52, 3, 52, 2020, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2026, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2033, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2038, 8, 53, 1, 53, 3, 53, 2041, 8, 53, 1, 53, 3, 53, 2044, 8, 53, 1, 53, 1, 53, 3, 53, 2048, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2058, 8, 53, 1, 53, 1, 53, 3, 53, 2062, 8, 53, 3, 53, 2064, 8, 53, 1, 53, 3, 53, 2067, 8, 53, 1, 53, 1, 53, 3, 53, 2071, 8, 53, 1, 54, 1, 54, 5, 54, 2075, 8, 54, 10, 54, 12, 54, 2078, 9, 54, 1, 54, 3, 54, 2081, 8, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2092, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2100, 8, 56, 3, 56, 2102, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 1, 57, 3, 57, 2113, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2125, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2132, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2145, 8, 59, 10, 59, 12, 59, 2148, 9, 59, 1, 59, 1, 59, 3, 59, 2152, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2157, 8, 60, 10, 60, 12, 60, 2160, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 2175, 8, 64, 1, 64, 5, 64, 2178, 8, 64, 10, 64, 12, 64, 2181, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2191, 8, 65, 10, 65, 12, 65, 2194, 9, 65, 1, 65, 1, 65, 3, 65, 2198, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2204, 8, 66, 10, 66, 12, 66, 2207, 9, 66, 1, 66, 5, 66, 2210, 8, 66, 10, 66, 12, 66, 2213, 9, 66, 1, 66, 3, 66, 2216, 8, 66, 1, 66, 3, 66, 2219, 8, 66, 1, 67, 3, 67, 2222, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2229, 8, 67, 1, 67, 3, 67, 2232, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2238, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2245, 8, 68, 10, 68, 12, 68, 2248, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2255, 8, 68, 10, 68, 12, 68, 2258, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2270, 8, 68, 10, 68, 12, 68, 2273, 9, 68, 1, 68, 1, 68, 3, 68, 2277, 8, 68, 3, 68, 2279, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2284, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2291, 8, 70, 10, 70, 12, 70, 2294, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2303, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2308, 8, 70, 5, 70, 2310, 8, 70, 10, 70, 12, 70, 2313, 9, 70, 1, 70, 1, 70, 3, 70, 2317, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2324, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2329, 8, 71, 5, 71, 2331, 8, 71, 10, 71, 12, 71, 2334, 9, 71, 3, 71, 2336, 8, 71, 1, 71, 3, 71, 2339, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2351, 8, 72, 10, 72, 12, 72, 2354, 9, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2364, 8, 73, 10, 73, 12, 73, 2367, 9, 73, 1, 73, 1, 73, 3, 73, 2371, 8, 73, 1, 74, 1, 74, 3, 74, 2375, 8, 74, 1, 74, 3, 74, 2378, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2383, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2388, 8, 75, 1, 75, 1, 75, 3, 75, 2392, 8, 75, 1, 75, 3, 75, 2395, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2405, 8, 76, 10, 76, 12, 76, 2408, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2416, 8, 77, 10, 77, 12, 77, 2419, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2429, 8, 77, 10, 77, 12, 77, 2432, 9, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2440, 8, 78, 10, 78, 12, 78, 2443, 9, 78, 1, 78, 1, 78, 3, 78, 2447, 8, 78, 1, 78, 3, 78, 2450, 8, 78, 1, 79, 1, 79, 3, 79, 2454, 8, 79, 1, 79, 3, 79, 2457, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2469, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2476, 8, 82, 10, 82, 12, 82, 2479, 9, 82, 3, 82, 2481, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2486, 8, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2491, 8, 82, 10, 82, 12, 82, 2494, 9, 82, 3, 82, 2496, 8, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 2502, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2508, 8, 84, 10, 84, 12, 84, 2511, 9, 84, 3, 84, 2513, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 2518, 8, 85, 1, 85, 1, 85, 3, 85, 2522, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2528, 8, 85, 1, 85, 1, 85, 3, 85, 2532, 8, 85, 1, 86, 3, 86, 2535, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2540, 8, 86, 1, 86, 3, 86, 2543, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2548, 8, 86, 3, 86, 2550, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2556, 8, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2561, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2568, 8, 88, 1, 89, 3, 89, 2571, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2589, 8, 89, 3, 89, 2591, 8, 89, 1, 89, 3, 89, 2594, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 5, 91, 2603, 8, 91, 10, 91, 12, 91, 2606, 9, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2612, 8, 92, 10, 92, 12, 92, 2615, 9, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2621, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 2627, 8, 94, 10, 94, 12, 94, 2630, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 3, 95, 2637, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2642, 8, 96, 1, 96, 3, 96, 2645, 8, 96, 1, 96, 3, 96, 2648, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2654, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2662, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2670, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 2680, 8, 98, 10, 98, 12, 98, 2683, 9, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2688, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2695, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2702, 8, 99, 3, 99, 2704, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 2715, 8, 100, 10, 100, 12, 100, 2718, 9, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2723, 8, 100, 3, 100, 2725, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2734, 8, 100, 3, 100, 2736, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 2744, 8, 102, 1, 103, 1, 103, 3, 103, 2748, 8, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 2758, 8, 105, 10, 105, 12, 105, 2761, 9, 105, 3, 105, 2763, 8, 105, 1, 105, 1, 105, 1, 106, 3, 106, 2768, 8, 106, 1, 106, 1, 106, 3, 106, 2772, 8, 106, 3, 106, 2774, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2783, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2795, 8, 107, 3, 107, 2797, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2804, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2811, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2817, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2823, 8, 107, 3, 107, 2825, 8, 107, 1, 108, 1, 108, 1, 108, 5, 108, 2830, 8, 108, 10, 108, 12, 108, 2833, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 2838, 8, 109, 10, 109, 12, 109, 2841, 9, 109, 1, 110, 1, 110, 1, 110, 5, 110, 2846, 8, 110, 10, 110, 12, 110, 2849, 9, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2854, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2859, 8, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2866, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2877, 8, 116, 10, 116, 12, 116, 2880, 9, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 3, 117, 2887, 8, 117, 1, 117, 3, 117, 2890, 8, 117, 1, 117, 1, 117, 3, 117, 2894, 8, 117, 3, 117, 2896, 8, 117, 1, 118, 1, 118, 1, 118, 5, 118, 2901, 8, 118, 10, 118, 12, 118, 2904, 9, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 2912, 8, 120, 10, 120, 12, 120, 2915, 9, 120, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 2921, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 2929, 8, 122, 10, 122, 12, 122, 2932, 9, 122, 1, 122, 1, 122, 3, 122, 2936, 8, 122, 1, 123, 1, 123, 3, 123, 2940, 8, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 3, 126, 2950, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2955, 8, 127, 10, 127, 12, 127, 2958, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 2970, 8, 128, 3, 128, 2972, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 2980, 8, 128, 10, 128, 12, 128, 2983, 9, 128, 1, 129, 3, 129, 2986, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 2994, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3001, 8, 129, 10, 129, 12, 129, 3004, 9, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3009, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3017, 8, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3022, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3032, 8, 129, 10, 129, 12, 129, 3035, 9, 129, 1, 129, 1, 129, 3, 129, 3039, 8, 129, 1, 129, 3, 129, 3042, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3048, 8, 129, 1, 129, 1, 129, 3, 129, 3052, 8, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3057, 8, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3062, 8, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3067, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3073, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3094, 8, 130, 10, 130, 12, 130, 3097, 9, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3107, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3119, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 4, 132, 3129, 8, 132, 11, 132, 12, 132, 3130, 1, 132, 1, 132, 3, 132, 3135, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 4, 132, 3142, 8, 132, 11, 132, 12, 132, 3143, 1, 132, 1, 132, 3, 132, 3148, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3164, 8, 132, 10, 132, 12, 132, 3167, 9, 132, 3, 132, 3169, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3177, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3186, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3195, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 4, 132, 3216, 8, 132, 11, 132, 12, 132, 3217, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3234, 8, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3239, 8, 132, 10, 132, 12, 132, 3242, 9, 132, 3, 132, 3244, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3253, 8, 132, 1, 132, 1, 132, 3, 132, 3257, 8, 132, 1, 132, 1, 132, 3, 132, 3261, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 4, 132, 3271, 8, 132, 11, 132, 12, 132, 3272, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3298, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3305, 8, 132, 1, 132, 3, 132, 3308, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3323, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3344, 8, 132, 1, 132, 1, 132, 3, 132, 3348, 8, 132, 3, 132, 3350, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3360, 8, 132, 10, 132, 12, 132, 3363, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3372, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 4, 134, 3385, 8, 134, 11, 134, 12, 134, 3386, 3, 134, 3389, 8, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 3, 139, 3402, 8, 139, 1, 140, 1, 140, 3, 140, 3406, 8, 140, 1, 141, 1, 141, 1, 141, 4, 141, 3411, 8, 141, 11, 141, 12, 141, 3412, 1, 142, 1, 142, 1, 142, 3, 142, 3418, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 3, 144, 3426, 8, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3431, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 3, 147, 3440, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3472, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 3491, 8, 149, 10, 149, 12, 149, 3494, 9, 149, 3, 149, 3496, 8, 149, 1, 149, 1, 149, 3, 149, 3500, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3506, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3512, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 3519, 8, 149, 10, 149, 12, 149, 3522, 9, 149, 1, 149, 3, 149, 3525, 8, 149, 3, 149, 3527, 8, 149, 1, 150, 1, 150, 1, 150, 5, 150, 3532, 8, 150, 10, 150, 12, 150, 3535, 9, 150, 1, 151, 1, 151, 1, 151, 5, 151, 3540, 8, 151, 10, 151, 12, 151, 3543, 9, 151, 1, 152, 1, 152, 1, 152, 5, 152, 3548, 8, 152, 10, 152, 12, 152, 3551, 9, 152, 1, 153, 1, 153, 1, 153, 5, 153, 3556, 8, 153, 10, 153, 12, 153, 3559, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3568, 8, 154, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3576, 8, 156, 10, 156, 12, 156, 3579, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3585, 8, 157, 1, 157, 1, 157, 3, 157, 3589, 8, 157, 1, 158, 1, 158, 1, 158, 5, 158, 3594, 8, 158, 10, 158, 12, 158, 3597, 9, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3602, 8, 159, 10, 159, 12, 159, 3605, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3620, 8, 160, 1, 161, 1, 161, 3, 161, 3624, 8, 161, 1, 161, 1, 161, 1, 161, 3, 161, 3629, 8, 161, 1, 161, 1, 161, 3, 161, 3633, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 5, 163, 3649, 8, 163, 10, 163, 12, 163, 3652, 9, 163, 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, 165, 5, 165, 3669, 8, 165, 10, 165, 12, 165, 3672, 9, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 3679, 8, 165, 10, 165, 12, 165, 3682, 9, 165, 3, 165, 3684, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3689, 8, 165, 3, 165, 3691, 8, 165, 1, 165, 3, 165, 3694, 8, 165, 1, 165, 3, 165, 3697, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 3707, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3716, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3721, 8, 168, 10, 168, 12, 168, 3724, 9, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3735, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 5, 171, 3742, 8, 171, 10, 171, 12, 171, 3745, 9, 171, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 4, 173, 3752, 8, 173, 11, 173, 12, 173, 3753, 1, 173, 3, 173, 3757, 8, 173, 1, 174, 1, 174, 3, 174, 3761, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 3767, 8, 175, 1, 176, 1, 176, 1, 177, 3, 177, 3772, 8, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3789, 8, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 9, 1132, 1202, 1210, 1230, 1257, 1266, 1275, 1284, 1332, 4, 96, 256, 260, 264, 183, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 0, 76, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 3, 0, 73, 73, 191, 191, 262, 262, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 3, 0, 10, 10, 290, 290, 331, 331, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 2, 0, 59, 59, 96, 96, 2, 0, 129, 129, 249, 249, 6, 0, 54, 54, 129, 129, 143, 143, 172, 172, 228, 228, 313, 313, 3, 0, 11, 11, 59, 59, 96, 96, 4, 0, 107, 107, 139, 139, 171, 171, 326, 326, 2, 0, 171, 171, 326, 326, 3, 0, 45, 45, 275, 275, 279, 279, 2, 0, 45, 45, 275, 275, 3, 0, 18, 18, 103, 103, 320, 320, 3, 0, 72, 72, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 15, 15, 264, 264, 2, 0, 124, 124, 250, 250, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 233, 233, 258, 258, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 379, 387, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4386, 0, 369, 1, 0, 0, 0, 2, 374, 1, 0, 0, 0, 4, 1335, 1, 0, 0, 0, 6, 1430, 1, 0, 0, 0, 8, 1432, 1, 0, 0, 0, 10, 1444, 1, 0, 0, 0, 12, 1457, 1, 0, 0, 0, 14, 1460, 1, 0, 0, 0, 16, 1464, 1, 0, 0, 0, 18, 1545, 1, 0, 0, 0, 20, 1547, 1, 0, 0, 0, 22, 1552, 1, 0, 0, 0, 24, 1573, 1, 0, 0, 0, 26, 1575, 1, 0, 0, 0, 28, 1582, 1, 0, 0, 0, 30, 1584, 1, 0, 0, 0, 32, 1592, 1, 0, 0, 0, 34, 1601, 1, 0, 0, 0, 36, 1612, 1, 0, 0, 0, 38, 1633, 1, 0, 0, 0, 40, 1636, 1, 0, 0, 0, 42, 1639, 1, 0, 0, 0, 44, 1650, 1, 0, 0, 0, 46, 1666, 1, 0, 0, 0, 48, 1672, 1, 0, 0, 0, 50, 1674, 1, 0, 0, 0, 52, 1685, 1, 0, 0, 0, 54, 1692, 1, 0, 0, 0, 56, 1703, 1, 0, 0, 0, 58, 1720, 1, 0, 0, 0, 60, 1728, 1, 0, 0, 0, 62, 1730, 1, 0, 0, 0, 64, 1794, 1, 0, 0, 0, 66, 1796, 1, 0, 0, 0, 68, 1798, 1, 0, 0, 0, 70, 1800, 1, 0, 0, 0, 72, 1802, 1, 0, 0, 0, 74, 1804, 1, 0, 0, 0, 76, 1806, 1, 0, 0, 0, 78, 1810, 1, 0, 0, 0, 80, 1812, 1, 0, 0, 0, 82, 1814, 1, 0, 0, 0, 84, 1822, 1, 0, 0, 0, 86, 1830, 1, 0, 0, 0, 88, 1835, 1, 0, 0, 0, 90, 1862, 1, 0, 0, 0, 92, 1867, 1, 0, 0, 0, 94, 1875, 1, 0, 0, 0, 96, 1883, 1, 0, 0, 0, 98, 1933, 1, 0, 0, 0, 100, 1937, 1, 0, 0, 0, 102, 1973, 1, 0, 0, 0, 104, 2019, 1, 0, 0, 0, 106, 2040, 1, 0, 0, 0, 108, 2072, 1, 0, 0, 0, 110, 2084, 1, 0, 0, 0, 112, 2087, 1, 0, 0, 0, 114, 2103, 1, 0, 0, 0, 116, 2117, 1, 0, 0, 0, 118, 2151, 1, 0, 0, 0, 120, 2153, 1, 0, 0, 0, 122, 2161, 1, 0, 0, 0, 124, 2165, 1, 0, 0, 0, 126, 2168, 1, 0, 0, 0, 128, 2171, 1, 0, 0, 0, 130, 2197, 1, 0, 0, 0, 132, 2199, 1, 0, 0, 0, 134, 2237, 1, 0, 0, 0, 136, 2278, 1, 0, 0, 0, 138, 2283, 1, 0, 0, 0, 140, 2316, 1, 0, 0, 0, 142, 2338, 1, 0, 0, 0, 144, 2340, 1, 0, 0, 0, 146, 2370, 1, 0, 0, 0, 148, 2372, 1, 0, 0, 0, 150, 2379, 1, 0, 0, 0, 152, 2396, 1, 0, 0, 0, 154, 2411, 1, 0, 0, 0, 156, 2435, 1, 0, 0, 0, 158, 2451, 1, 0, 0, 0, 160, 2458, 1, 0, 0, 0, 162, 2462, 1, 0, 0, 0, 164, 2465, 1, 0, 0, 0, 166, 2497, 1, 0, 0, 0, 168, 2512, 1, 0, 0, 0, 170, 2531, 1, 0, 0, 0, 172, 2549, 1, 0, 0, 0, 174, 2555, 1, 0, 0, 0, 176, 2557, 1, 0, 0, 0, 178, 2593, 1, 0, 0, 0, 180, 2595, 1, 0, 0, 0, 182, 2599, 1, 0, 0, 0, 184, 2607, 1, 0, 0, 0, 186, 2618, 1, 0, 0, 0, 188, 2622, 1, 0, 0, 0, 190, 2633, 1, 0, 0, 0, 192, 2669, 1, 0, 0, 0, 194, 2671, 1, 0, 0, 0, 196, 2675, 1, 0, 0, 0, 198, 2703, 1, 0, 0, 0, 200, 2724, 1, 0, 0, 0, 202, 2737, 1, 0, 0, 0, 204, 2743, 1, 0, 0, 0, 206, 2747, 1, 0, 0, 0, 208, 2749, 1, 0, 0, 0, 210, 2752, 1, 0, 0, 0, 212, 2773, 1, 0, 0, 0, 214, 2824, 1, 0, 0, 0, 216, 2826, 1, 0, 0, 0, 218, 2834, 1, 0, 0, 0, 220, 2842, 1, 0, 0, 0, 222, 2850, 1, 0, 0, 0, 224, 2858, 1, 0, 0, 0, 226, 2865, 1, 0, 0, 0, 228, 2869, 1, 0, 0, 0, 230, 2871, 1, 0, 0, 0, 232, 2878, 1, 0, 0, 0, 234, 2886, 1, 0, 0, 0, 236, 2897, 1, 0, 0, 0, 238, 2905, 1, 0, 0, 0, 240, 2907, 1, 0, 0, 0, 242, 2920, 1, 0, 0, 0, 244, 2935, 1, 0, 0, 0, 246, 2939, 1, 0, 0, 0, 248, 2941, 1, 0, 0, 0, 250, 2943, 1, 0, 0, 0, 252, 2949, 1, 0, 0, 0, 254, 2951, 1, 0, 0, 0, 256, 2971, 1, 0, 0, 0, 258, 3066, 1, 0, 0, 0, 260, 3072, 1, 0, 0, 0, 262, 3098, 1, 0, 0, 0, 264, 3349, 1, 0, 0, 0, 266, 3371, 1, 0, 0, 0, 268, 3388, 1, 0, 0, 0, 270, 3390, 1, 0, 0, 0, 272, 3392, 1, 0, 0, 0, 274, 3394, 1, 0, 0, 0, 276, 3396, 1, 0, 0, 0, 278, 3398, 1, 0, 0, 0, 280, 3403, 1, 0, 0, 0, 282, 3410, 1, 0, 0, 0, 284, 3414, 1, 0, 0, 0, 286, 3419, 1, 0, 0, 0, 288, 3425, 1, 0, 0, 0, 290, 3432, 1, 0, 0, 0, 292, 3434, 1, 0, 0, 0, 294, 3439, 1, 0, 0, 0, 296, 3471, 1, 0, 0, 0, 298, 3526, 1, 0, 0, 0, 300, 3528, 1, 0, 0, 0, 302, 3536, 1, 0, 0, 0, 304, 3544, 1, 0, 0, 0, 306, 3552, 1, 0, 0, 0, 308, 3567, 1, 0, 0, 0, 310, 3569, 1, 0, 0, 0, 312, 3572, 1, 0, 0, 0, 314, 3580, 1, 0, 0, 0, 316, 3590, 1, 0, 0, 0, 318, 3598, 1, 0, 0, 0, 320, 3619, 1, 0, 0, 0, 322, 3621, 1, 0, 0, 0, 324, 3634, 1, 0, 0, 0, 326, 3639, 1, 0, 0, 0, 328, 3653, 1, 0, 0, 0, 330, 3696, 1, 0, 0, 0, 332, 3706, 1, 0, 0, 0, 334, 3715, 1, 0, 0, 0, 336, 3717, 1, 0, 0, 0, 338, 3734, 1, 0, 0, 0, 340, 3736, 1, 0, 0, 0, 342, 3738, 1, 0, 0, 0, 344, 3746, 1, 0, 0, 0, 346, 3756, 1, 0, 0, 0, 348, 3760, 1, 0, 0, 0, 350, 3766, 1, 0, 0, 0, 352, 3768, 1, 0, 0, 0, 354, 3771, 1, 0, 0, 0, 356, 3788, 1, 0, 0, 0, 358, 3790, 1, 0, 0, 0, 360, 3792, 1, 0, 0, 0, 362, 3794, 1, 0, 0, 0, 364, 3796, 1, 0, 0, 0, 366, 368, 3, 2, 1, 0, 367, 366, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 372, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 372, 373, 5, 0, 0, 1, 373, 1, 1, 0, 0, 0, 374, 376, 3, 4, 2, 0, 375, 377, 5, 1, 0, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 3, 1, 0, 0, 0, 378, 1336, 3, 16, 8, 0, 379, 381, 3, 32, 16, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 1336, 3, 64, 32, 0, 383, 385, 5, 330, 0, 0, 384, 386, 3, 26, 13, 0, 385, 384, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 1336, 3, 66, 33, 0, 388, 389, 5, 269, 0, 0, 389, 392, 5, 37, 0, 0, 390, 393, 3, 348, 174, 0, 391, 393, 3, 358, 179, 0, 392, 390, 1, 0, 0, 0, 392, 391, 1, 0, 0, 0, 393, 1336, 1, 0, 0, 0, 394, 395, 5, 59, 0, 0, 395, 397, 3, 26, 13, 0, 396, 398, 3, 160, 80, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 409, 3, 68, 34, 0, 400, 401, 5, 51, 0, 0, 401, 408, 3, 358, 179, 0, 402, 403, 5, 170, 0, 0, 403, 408, 3, 358, 179, 0, 404, 405, 5, 346, 0, 0, 405, 406, 7, 0, 0, 0, 406, 408, 3, 42, 21, 0, 407, 400, 1, 0, 0, 0, 407, 402, 1, 0, 0, 0, 407, 404, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 1336, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 413, 5, 11, 0, 0, 413, 414, 3, 26, 13, 0, 414, 415, 3, 66, 33, 0, 415, 416, 5, 269, 0, 0, 416, 417, 7, 0, 0, 0, 417, 418, 3, 42, 21, 0, 418, 1336, 1, 0, 0, 0, 419, 420, 5, 11, 0, 0, 420, 421, 3, 26, 13, 0, 421, 422, 3, 66, 33, 0, 422, 423, 5, 269, 0, 0, 423, 424, 5, 170, 0, 0, 424, 425, 3, 358, 179, 0, 425, 1336, 1, 0, 0, 0, 426, 427, 5, 96, 0, 0, 427, 429, 3, 26, 13, 0, 428, 430, 3, 162, 81, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 433, 3, 66, 33, 0, 432, 434, 7, 1, 0, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 1336, 1, 0, 0, 0, 435, 436, 5, 273, 0, 0, 436, 439, 7, 2, 0, 0, 437, 438, 7, 3, 0, 0, 438, 440, 3, 218, 109, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 445, 1, 0, 0, 0, 441, 443, 5, 163, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 446, 3, 358, 179, 0, 445, 442, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 1336, 1, 0, 0, 0, 447, 449, 5, 59, 0, 0, 448, 450, 5, 298, 0, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 452, 1, 0, 0, 0, 451, 453, 5, 109, 0, 0, 452, 451, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 456, 5, 293, 0, 0, 455, 457, 3, 160, 80, 0, 456, 455, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 463, 3, 70, 35, 0, 459, 460, 5, 2, 0, 0, 460, 461, 3, 316, 158, 0, 461, 462, 5, 3, 0, 0, 462, 464, 1, 0, 0, 0, 463, 459, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 466, 1, 0, 0, 0, 465, 467, 3, 36, 18, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 473, 3, 38, 19, 0, 469, 471, 5, 20, 0, 0, 470, 469, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 474, 3, 16, 8, 0, 473, 470, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 1336, 1, 0, 0, 0, 475, 476, 5, 59, 0, 0, 476, 478, 5, 293, 0, 0, 477, 479, 3, 160, 80, 0, 478, 477, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 481, 3, 70, 35, 0, 481, 482, 5, 163, 0, 0, 482, 493, 3, 72, 36, 0, 483, 492, 3, 36, 18, 0, 484, 492, 3, 214, 107, 0, 485, 492, 3, 58, 29, 0, 486, 487, 5, 170, 0, 0, 487, 492, 3, 358, 179, 0, 488, 489, 5, 297, 0, 0, 489, 492, 3, 42, 21, 0, 490, 492, 3, 40, 20, 0, 491, 483, 1, 0, 0, 0, 491, 484, 1, 0, 0, 0, 491, 485, 1, 0, 0, 0, 491, 486, 1, 0, 0, 0, 491, 488, 1, 0, 0, 0, 491, 490, 1, 0, 0, 0, 492, 495, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 1336, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 496, 497, 5, 59, 0, 0, 497, 499, 5, 208, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 5, 244, 0, 0, 501, 502, 5, 293, 0, 0, 502, 507, 3, 70, 35, 0, 503, 504, 5, 2, 0, 0, 504, 505, 3, 316, 158, 0, 505, 506, 5, 3, 0, 0, 506, 508, 1, 0, 0, 0, 507, 503, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 510, 1, 0, 0, 0, 509, 511, 3, 36, 18, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 517, 3, 38, 19, 0, 513, 515, 5, 20, 0, 0, 514, 513, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 518, 3, 16, 8, 0, 517, 514, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 1336, 1, 0, 0, 0, 519, 520, 5, 13, 0, 0, 520, 521, 5, 293, 0, 0, 521, 523, 3, 72, 36, 0, 522, 524, 3, 22, 11, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 5, 55, 0, 0, 526, 534, 5, 282, 0, 0, 527, 535, 5, 196, 0, 0, 528, 529, 5, 119, 0, 0, 529, 530, 5, 50, 0, 0, 530, 535, 3, 82, 41, 0, 531, 532, 5, 119, 0, 0, 532, 533, 5, 10, 0, 0, 533, 535, 5, 50, 0, 0, 534, 527, 1, 0, 0, 0, 534, 528, 1, 0, 0, 0, 534, 531, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 1336, 1, 0, 0, 0, 536, 537, 5, 13, 0, 0, 537, 540, 5, 294, 0, 0, 538, 539, 7, 3, 0, 0, 539, 541, 3, 66, 33, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 5, 55, 0, 0, 543, 545, 5, 282, 0, 0, 544, 546, 5, 196, 0, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 1336, 1, 0, 0, 0, 547, 548, 5, 11, 0, 0, 548, 549, 5, 293, 0, 0, 549, 550, 3, 72, 36, 0, 550, 551, 5, 8, 0, 0, 551, 552, 5, 49, 0, 0, 552, 553, 3, 302, 151, 0, 553, 1336, 1, 0, 0, 0, 554, 555, 5, 11, 0, 0, 555, 556, 5, 293, 0, 0, 556, 557, 3, 72, 36, 0, 557, 558, 5, 8, 0, 0, 558, 559, 5, 50, 0, 0, 559, 560, 5, 2, 0, 0, 560, 561, 3, 300, 150, 0, 561, 562, 5, 3, 0, 0, 562, 1336, 1, 0, 0, 0, 563, 564, 5, 11, 0, 0, 564, 565, 5, 293, 0, 0, 565, 566, 3, 72, 36, 0, 566, 567, 5, 241, 0, 0, 567, 568, 5, 49, 0, 0, 568, 569, 3, 78, 39, 0, 569, 570, 5, 309, 0, 0, 570, 571, 3, 84, 42, 0, 571, 1336, 1, 0, 0, 0, 572, 573, 5, 11, 0, 0, 573, 574, 5, 293, 0, 0, 574, 575, 3, 72, 36, 0, 575, 576, 5, 96, 0, 0, 576, 578, 5, 49, 0, 0, 577, 579, 3, 162, 81, 0, 578, 577, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 3, 78, 39, 0, 581, 1336, 1, 0, 0, 0, 582, 583, 5, 11, 0, 0, 583, 584, 5, 293, 0, 0, 584, 585, 3, 72, 36, 0, 585, 586, 5, 96, 0, 0, 586, 588, 5, 50, 0, 0, 587, 589, 3, 162, 81, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 5, 2, 0, 0, 591, 592, 3, 82, 41, 0, 592, 593, 5, 3, 0, 0, 593, 1336, 1, 0, 0, 0, 594, 599, 5, 11, 0, 0, 595, 596, 5, 293, 0, 0, 596, 600, 3, 72, 36, 0, 597, 598, 5, 338, 0, 0, 598, 600, 3, 76, 38, 0, 599, 595, 1, 0, 0, 0, 599, 597, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 241, 0, 0, 602, 603, 5, 309, 0, 0, 603, 604, 3, 218, 109, 0, 604, 1336, 1, 0, 0, 0, 605, 610, 5, 11, 0, 0, 606, 607, 5, 293, 0, 0, 607, 611, 3, 72, 36, 0, 608, 609, 5, 338, 0, 0, 609, 611, 3, 76, 38, 0, 610, 606, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 5, 269, 0, 0, 613, 614, 5, 297, 0, 0, 614, 615, 3, 42, 21, 0, 615, 1336, 1, 0, 0, 0, 616, 621, 5, 11, 0, 0, 617, 618, 5, 293, 0, 0, 618, 622, 3, 72, 36, 0, 619, 620, 5, 338, 0, 0, 620, 622, 3, 76, 38, 0, 621, 617, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 5, 328, 0, 0, 624, 626, 5, 297, 0, 0, 625, 627, 3, 162, 81, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 3, 42, 21, 0, 629, 1336, 1, 0, 0, 0, 630, 631, 5, 11, 0, 0, 631, 632, 5, 293, 0, 0, 632, 633, 3, 72, 36, 0, 633, 635, 7, 4, 0, 0, 634, 636, 5, 49, 0, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 639, 3, 78, 39, 0, 638, 640, 3, 356, 178, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 1336, 1, 0, 0, 0, 641, 642, 5, 11, 0, 0, 642, 643, 5, 293, 0, 0, 643, 645, 3, 72, 36, 0, 644, 646, 3, 22, 11, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 649, 5, 39, 0, 0, 648, 650, 5, 49, 0, 0, 649, 648, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 3, 78, 39, 0, 652, 654, 3, 314, 157, 0, 653, 655, 3, 294, 147, 0, 654, 653, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 1336, 1, 0, 0, 0, 656, 657, 5, 11, 0, 0, 657, 658, 5, 293, 0, 0, 658, 660, 3, 72, 36, 0, 659, 661, 3, 22, 11, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 5, 244, 0, 0, 663, 664, 5, 50, 0, 0, 664, 665, 5, 2, 0, 0, 665, 666, 3, 304, 152, 0, 666, 667, 5, 3, 0, 0, 667, 1336, 1, 0, 0, 0, 668, 669, 5, 11, 0, 0, 669, 670, 5, 293, 0, 0, 670, 672, 3, 72, 36, 0, 671, 673, 3, 22, 11, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 5, 269, 0, 0, 675, 676, 5, 266, 0, 0, 676, 680, 3, 358, 179, 0, 677, 678, 5, 346, 0, 0, 678, 679, 5, 267, 0, 0, 679, 681, 3, 42, 21, 0, 680, 677, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 1336, 1, 0, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 5, 293, 0, 0, 684, 686, 3, 72, 36, 0, 685, 687, 3, 22, 11, 0, 686, 685, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 689, 5, 269, 0, 0, 689, 690, 5, 267, 0, 0, 690, 691, 3, 42, 21, 0, 691, 1336, 1, 0, 0, 0, 692, 697, 5, 11, 0, 0, 693, 694, 5, 293, 0, 0, 694, 698, 3, 72, 36, 0, 695, 696, 5, 338, 0, 0, 696, 698, 3, 76, 38, 0, 697, 693, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 701, 5, 8, 0, 0, 700, 702, 3, 160, 80, 0, 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 704, 1, 0, 0, 0, 703, 705, 3, 20, 10, 0, 704, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 1336, 1, 0, 0, 0, 708, 709, 5, 11, 0, 0, 709, 710, 5, 293, 0, 0, 710, 711, 3, 72, 36, 0, 711, 712, 3, 22, 11, 0, 712, 713, 5, 241, 0, 0, 713, 714, 5, 309, 0, 0, 714, 715, 3, 22, 11, 0, 715, 1336, 1, 0, 0, 0, 716, 721, 5, 11, 0, 0, 717, 718, 5, 293, 0, 0, 718, 722, 3, 72, 36, 0, 719, 720, 5, 338, 0, 0, 720, 722, 3, 76, 38, 0, 721, 717, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 725, 5, 96, 0, 0, 724, 726, 3, 162, 81, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 732, 3, 22, 11, 0, 728, 729, 5, 4, 0, 0, 729, 731, 3, 22, 11, 0, 730, 728, 1, 0, 0, 0, 731, 734, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 737, 5, 230, 0, 0, 736, 735, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 1336, 1, 0, 0, 0, 738, 739, 5, 11, 0, 0, 739, 740, 5, 293, 0, 0, 740, 742, 3, 72, 36, 0, 741, 743, 3, 22, 11, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 5, 269, 0, 0, 745, 746, 5, 170, 0, 0, 746, 747, 3, 358, 179, 0, 747, 1336, 1, 0, 0, 0, 748, 749, 5, 11, 0, 0, 749, 750, 5, 293, 0, 0, 750, 751, 3, 72, 36, 0, 751, 752, 5, 237, 0, 0, 752, 753, 5, 219, 0, 0, 753, 1336, 1, 0, 0, 0, 754, 755, 5, 11, 0, 0, 755, 756, 5, 176, 0, 0, 756, 757, 5, 338, 0, 0, 757, 758, 3, 76, 38, 0, 758, 759, 7, 5, 0, 0, 759, 760, 5, 248, 0, 0, 760, 1336, 1, 0, 0, 0, 761, 762, 5, 11, 0, 0, 762, 763, 5, 176, 0, 0, 763, 764, 5, 338, 0, 0, 764, 765, 3, 76, 38, 0, 765, 766, 5, 269, 0, 0, 766, 767, 5, 297, 0, 0, 767, 768, 3, 42, 21, 0, 768, 1336, 1, 0, 0, 0, 769, 770, 5, 96, 0, 0, 770, 772, 5, 293, 0, 0, 771, 773, 3, 162, 81, 0, 772, 771, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 776, 3, 72, 36, 0, 775, 777, 5, 230, 0, 0, 776, 775, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 1336, 1, 0, 0, 0, 778, 779, 5, 96, 0, 0, 779, 781, 5, 338, 0, 0, 780, 782, 3, 162, 81, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 1336, 3, 76, 38, 0, 784, 785, 5, 96, 0, 0, 785, 786, 5, 176, 0, 0, 786, 788, 5, 338, 0, 0, 787, 789, 3, 162, 81, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 1336, 3, 76, 38, 0, 791, 794, 5, 59, 0, 0, 792, 793, 5, 208, 0, 0, 793, 795, 5, 244, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 800, 1, 0, 0, 0, 796, 798, 5, 128, 0, 0, 797, 796, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 801, 5, 298, 0, 0, 800, 797, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 804, 5, 338, 0, 0, 803, 805, 3, 160, 80, 0, 804, 803, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 3, 74, 37, 0, 807, 809, 3, 188, 94, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 819, 1, 0, 0, 0, 810, 811, 5, 51, 0, 0, 811, 818, 3, 358, 179, 0, 812, 813, 5, 218, 0, 0, 813, 814, 5, 203, 0, 0, 814, 818, 3, 180, 90, 0, 815, 816, 5, 297, 0, 0, 816, 818, 3, 42, 21, 0, 817, 810, 1, 0, 0, 0, 817, 812, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 818, 821, 1, 0, 0, 0, 819, 817, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 822, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 822, 823, 5, 20, 0, 0, 823, 824, 3, 16, 8, 0, 824, 1336, 1, 0, 0, 0, 825, 828, 5, 59, 0, 0, 826, 827, 5, 208, 0, 0, 827, 829, 5, 244, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 832, 5, 128, 0, 0, 831, 830, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 834, 5, 298, 0, 0, 834, 835, 5, 338, 0, 0, 835, 840, 3, 74, 37, 0, 836, 837, 5, 2, 0, 0, 837, 838, 3, 312, 156, 0, 838, 839, 5, 3, 0, 0, 839, 841, 1, 0, 0, 0, 840, 836, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 845, 3, 36, 18, 0, 843, 844, 5, 207, 0, 0, 844, 846, 3, 42, 21, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 1336, 1, 0, 0, 0, 847, 848, 5, 11, 0, 0, 848, 849, 5, 338, 0, 0, 849, 851, 3, 76, 38, 0, 850, 852, 5, 20, 0, 0, 851, 850, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 3, 16, 8, 0, 854, 1336, 1, 0, 0, 0, 855, 858, 5, 59, 0, 0, 856, 857, 5, 208, 0, 0, 857, 859, 5, 244, 0, 0, 858, 856, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 862, 5, 298, 0, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 865, 5, 125, 0, 0, 864, 866, 3, 160, 80, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 868, 3, 340, 170, 0, 868, 869, 5, 20, 0, 0, 869, 883, 3, 358, 179, 0, 870, 871, 5, 332, 0, 0, 871, 872, 3, 348, 174, 0, 872, 873, 3, 358, 179, 0, 873, 880, 1, 0, 0, 0, 874, 875, 5, 4, 0, 0, 875, 876, 3, 348, 174, 0, 876, 877, 3, 358, 179, 0, 877, 879, 1, 0, 0, 0, 878, 874, 1, 0, 0, 0, 879, 882, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 884, 1, 0, 0, 0, 882, 880, 1, 0, 0, 0, 883, 870, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 1336, 1, 0, 0, 0, 885, 886, 5, 59, 0, 0, 886, 887, 5, 176, 0, 0, 887, 889, 5, 338, 0, 0, 888, 890, 3, 160, 80, 0, 889, 888, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 893, 3, 74, 37, 0, 892, 894, 3, 36, 18, 0, 893, 892, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 912, 1, 0, 0, 0, 895, 896, 5, 207, 0, 0, 896, 911, 3, 42, 21, 0, 897, 898, 5, 218, 0, 0, 898, 899, 5, 31, 0, 0, 899, 911, 3, 240, 120, 0, 900, 911, 3, 10, 5, 0, 901, 911, 3, 8, 4, 0, 902, 911, 3, 214, 107, 0, 903, 911, 3, 58, 29, 0, 904, 905, 5, 170, 0, 0, 905, 911, 3, 358, 179, 0, 906, 907, 5, 51, 0, 0, 907, 911, 3, 358, 179, 0, 908, 909, 5, 297, 0, 0, 909, 911, 3, 42, 21, 0, 910, 895, 1, 0, 0, 0, 910, 897, 1, 0, 0, 0, 910, 900, 1, 0, 0, 0, 910, 901, 1, 0, 0, 0, 910, 902, 1, 0, 0, 0, 910, 903, 1, 0, 0, 0, 910, 904, 1, 0, 0, 0, 910, 906, 1, 0, 0, 0, 910, 908, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 915, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 916, 5, 20, 0, 0, 916, 917, 3, 16, 8, 0, 917, 1336, 1, 0, 0, 0, 918, 920, 5, 96, 0, 0, 919, 921, 5, 298, 0, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 924, 5, 125, 0, 0, 923, 925, 3, 162, 81, 0, 924, 923, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 1336, 3, 338, 169, 0, 927, 930, 5, 81, 0, 0, 928, 929, 5, 208, 0, 0, 929, 931, 5, 244, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 1, 0, 0, 0, 932, 934, 5, 336, 0, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 3, 338, 169, 0, 936, 938, 3, 298, 149, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 940, 1, 0, 0, 0, 939, 941, 3, 310, 155, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 1336, 1, 0, 0, 0, 942, 943, 5, 96, 0, 0, 943, 944, 5, 298, 0, 0, 944, 946, 5, 336, 0, 0, 945, 947, 3, 162, 81, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 951, 1, 0, 0, 0, 948, 952, 3, 72, 36, 0, 949, 952, 3, 76, 38, 0, 950, 952, 3, 338, 169, 0, 951, 948, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 951, 950, 1, 0, 0, 0, 952, 1336, 1, 0, 0, 0, 953, 955, 5, 106, 0, 0, 954, 956, 7, 6, 0, 0, 955, 954, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 1336, 3, 4, 2, 0, 958, 959, 5, 273, 0, 0, 959, 962, 5, 294, 0, 0, 960, 961, 7, 3, 0, 0, 961, 963, 3, 66, 33, 0, 962, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 968, 1, 0, 0, 0, 964, 966, 5, 163, 0, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 358, 179, 0, 968, 965, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 1336, 1, 0, 0, 0, 970, 971, 5, 273, 0, 0, 971, 972, 5, 293, 0, 0, 972, 975, 5, 108, 0, 0, 973, 974, 7, 3, 0, 0, 974, 976, 3, 66, 33, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 5, 163, 0, 0, 978, 980, 3, 358, 179, 0, 979, 981, 3, 22, 11, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 1336, 1, 0, 0, 0, 982, 983, 5, 273, 0, 0, 983, 984, 5, 297, 0, 0, 984, 989, 3, 72, 36, 0, 985, 986, 5, 2, 0, 0, 986, 987, 3, 46, 23, 0, 987, 988, 5, 3, 0, 0, 988, 990, 1, 0, 0, 0, 989, 985, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 1336, 1, 0, 0, 0, 991, 992, 5, 273, 0, 0, 992, 993, 5, 50, 0, 0, 993, 994, 7, 3, 0, 0, 994, 997, 3, 72, 36, 0, 995, 996, 7, 3, 0, 0, 996, 998, 3, 66, 33, 0, 997, 995, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1336, 1, 0, 0, 0, 999, 1000, 5, 273, 0, 0, 1000, 1003, 5, 339, 0, 0, 1001, 1002, 7, 3, 0, 0, 1002, 1004, 3, 66, 33, 0, 1003, 1001, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1009, 1, 0, 0, 0, 1005, 1007, 5, 163, 0, 0, 1006, 1005, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1010, 3, 358, 179, 0, 1009, 1006, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1336, 1, 0, 0, 0, 1011, 1012, 5, 273, 0, 0, 1012, 1013, 5, 219, 0, 0, 1013, 1015, 3, 72, 36, 0, 1014, 1016, 3, 22, 11, 0, 1015, 1014, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1336, 1, 0, 0, 0, 1017, 1019, 5, 273, 0, 0, 1018, 1020, 7, 7, 0, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1024, 5, 126, 0, 0, 1022, 1023, 7, 3, 0, 0, 1023, 1025, 3, 66, 33, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1033, 1, 0, 0, 0, 1026, 1028, 5, 163, 0, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1031, 1, 0, 0, 0, 1029, 1032, 3, 218, 109, 0, 1030, 1032, 3, 358, 179, 0, 1031, 1029, 1, 0, 0, 0, 1031, 1030, 1, 0, 0, 0, 1032, 1034, 1, 0, 0, 0, 1033, 1027, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1336, 1, 0, 0, 0, 1035, 1036, 5, 273, 0, 0, 1036, 1037, 5, 59, 0, 0, 1037, 1038, 5, 293, 0, 0, 1038, 1041, 3, 72, 36, 0, 1039, 1040, 5, 20, 0, 0, 1040, 1042, 5, 266, 0, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1336, 1, 0, 0, 0, 1043, 1044, 5, 273, 0, 0, 1044, 1045, 5, 62, 0, 0, 1045, 1336, 3, 26, 13, 0, 1046, 1047, 5, 273, 0, 0, 1047, 1052, 5, 38, 0, 0, 1048, 1050, 5, 163, 0, 0, 1049, 1048, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 3, 358, 179, 0, 1052, 1049, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1336, 1, 0, 0, 0, 1054, 1055, 5, 273, 0, 0, 1055, 1056, 5, 176, 0, 0, 1056, 1059, 5, 339, 0, 0, 1057, 1058, 7, 3, 0, 0, 1058, 1060, 3, 66, 33, 0, 1059, 1057, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1065, 1, 0, 0, 0, 1061, 1063, 5, 163, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1066, 3, 358, 179, 0, 1065, 1062, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1336, 1, 0, 0, 0, 1067, 1068, 5, 273, 0, 0, 1068, 1069, 5, 59, 0, 0, 1069, 1070, 5, 176, 0, 0, 1070, 1071, 5, 338, 0, 0, 1071, 1074, 3, 76, 38, 0, 1072, 1073, 5, 20, 0, 0, 1073, 1075, 5, 266, 0, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1336, 1, 0, 0, 0, 1076, 1077, 7, 8, 0, 0, 1077, 1079, 5, 125, 0, 0, 1078, 1080, 5, 108, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1336, 3, 28, 14, 0, 1082, 1083, 7, 8, 0, 0, 1083, 1085, 5, 72, 0, 0, 1084, 1086, 5, 108, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1336, 3, 66, 33, 0, 1088, 1090, 7, 8, 0, 0, 1089, 1091, 5, 293, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1093, 1, 0, 0, 0, 1092, 1094, 7, 9, 0, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1097, 3, 72, 36, 0, 1096, 1098, 3, 22, 11, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1101, 3, 30, 15, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1336, 1, 0, 0, 0, 1102, 1104, 7, 8, 0, 0, 1103, 1105, 5, 232, 0, 0, 1104, 1103, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1336, 3, 16, 8, 0, 1107, 1108, 5, 51, 0, 0, 1108, 1114, 5, 203, 0, 0, 1109, 1110, 3, 26, 13, 0, 1110, 1111, 3, 66, 33, 0, 1111, 1115, 1, 0, 0, 0, 1112, 1113, 5, 293, 0, 0, 1113, 1115, 3, 72, 36, 0, 1114, 1109, 1, 0, 0, 0, 1114, 1112, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1119, 5, 153, 0, 0, 1117, 1120, 3, 358, 179, 0, 1118, 1120, 5, 198, 0, 0, 1119, 1117, 1, 0, 0, 0, 1119, 1118, 1, 0, 0, 0, 1120, 1336, 1, 0, 0, 0, 1121, 1122, 5, 240, 0, 0, 1122, 1123, 5, 293, 0, 0, 1123, 1336, 3, 72, 36, 0, 1124, 1125, 5, 240, 0, 0, 1125, 1126, 5, 125, 0, 0, 1126, 1336, 3, 338, 169, 0, 1127, 1135, 5, 240, 0, 0, 1128, 1136, 3, 358, 179, 0, 1129, 1131, 9, 0, 0, 0, 1130, 1129, 1, 0, 0, 0, 1131, 1134, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1132, 1130, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1128, 1, 0, 0, 0, 1135, 1132, 1, 0, 0, 0, 1136, 1336, 1, 0, 0, 0, 1137, 1138, 5, 240, 0, 0, 1138, 1139, 5, 176, 0, 0, 1139, 1140, 5, 338, 0, 0, 1140, 1336, 3, 76, 38, 0, 1141, 1143, 5, 33, 0, 0, 1142, 1144, 5, 159, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 5, 293, 0, 0, 1146, 1149, 3, 72, 36, 0, 1147, 1148, 5, 207, 0, 0, 1148, 1150, 3, 42, 21, 0, 1149, 1147, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1155, 1, 0, 0, 0, 1151, 1153, 5, 20, 0, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1156, 3, 16, 8, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1336, 1, 0, 0, 0, 1157, 1158, 5, 322, 0, 0, 1158, 1160, 5, 293, 0, 0, 1159, 1161, 3, 162, 81, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1336, 3, 72, 36, 0, 1163, 1164, 5, 43, 0, 0, 1164, 1336, 5, 33, 0, 0, 1165, 1166, 5, 168, 0, 0, 1166, 1168, 5, 70, 0, 0, 1167, 1169, 5, 169, 0, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 5, 145, 0, 0, 1171, 1173, 3, 358, 179, 0, 1172, 1174, 5, 216, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 5, 152, 0, 0, 1176, 1177, 5, 293, 0, 0, 1177, 1179, 3, 72, 36, 0, 1178, 1180, 3, 22, 11, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1336, 1, 0, 0, 0, 1181, 1182, 5, 317, 0, 0, 1182, 1183, 5, 293, 0, 0, 1183, 1185, 3, 72, 36, 0, 1184, 1186, 3, 22, 11, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1336, 1, 0, 0, 0, 1187, 1189, 5, 188, 0, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, 5, 242, 0, 0, 1191, 1192, 5, 293, 0, 0, 1192, 1195, 3, 72, 36, 0, 1193, 1194, 7, 10, 0, 0, 1194, 1196, 5, 219, 0, 0, 1195, 1193, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1336, 1, 0, 0, 0, 1197, 1198, 7, 11, 0, 0, 1198, 1202, 3, 348, 174, 0, 1199, 1201, 9, 0, 0, 0, 1200, 1199, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1336, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1206, 5, 269, 0, 0, 1206, 1210, 5, 253, 0, 0, 1207, 1209, 9, 0, 0, 0, 1208, 1207, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1336, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1214, 5, 269, 0, 0, 1214, 1215, 5, 301, 0, 0, 1215, 1216, 5, 350, 0, 0, 1216, 1336, 3, 278, 139, 0, 1217, 1218, 5, 269, 0, 0, 1218, 1219, 5, 301, 0, 0, 1219, 1222, 5, 350, 0, 0, 1220, 1223, 3, 358, 179, 0, 1221, 1223, 5, 169, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1221, 1, 0, 0, 0, 1223, 1336, 1, 0, 0, 0, 1224, 1225, 5, 269, 0, 0, 1225, 1226, 5, 301, 0, 0, 1226, 1230, 5, 350, 0, 0, 1227, 1229, 9, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1232, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1230, 1228, 1, 0, 0, 0, 1231, 1336, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1234, 5, 269, 0, 0, 1234, 1235, 7, 12, 0, 0, 1235, 1336, 3, 120, 60, 0, 1236, 1237, 5, 269, 0, 0, 1237, 1238, 7, 12, 0, 0, 1238, 1239, 5, 2, 0, 0, 1239, 1240, 3, 216, 108, 0, 1240, 1241, 5, 3, 0, 0, 1241, 1242, 5, 352, 0, 0, 1242, 1243, 5, 2, 0, 0, 1243, 1244, 3, 16, 8, 0, 1244, 1245, 5, 3, 0, 0, 1245, 1336, 1, 0, 0, 0, 1246, 1247, 5, 269, 0, 0, 1247, 1248, 3, 352, 176, 0, 1248, 1249, 5, 352, 0, 0, 1249, 1250, 5, 389, 0, 0, 1250, 1336, 1, 0, 0, 0, 1251, 1252, 5, 269, 0, 0, 1252, 1260, 3, 352, 176, 0, 1253, 1257, 5, 352, 0, 0, 1254, 1256, 9, 0, 0, 0, 1255, 1254, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1253, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1336, 1, 0, 0, 0, 1262, 1266, 5, 269, 0, 0, 1263, 1265, 9, 0, 0, 0, 1264, 1263, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1270, 5, 352, 0, 0, 1270, 1336, 5, 389, 0, 0, 1271, 1275, 5, 269, 0, 0, 1272, 1274, 9, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1277, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1336, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1279, 5, 245, 0, 0, 1279, 1336, 3, 352, 176, 0, 1280, 1284, 5, 245, 0, 0, 1281, 1283, 9, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1286, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1336, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1288, 5, 59, 0, 0, 1288, 1290, 5, 142, 0, 0, 1289, 1291, 3, 160, 80, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 3, 348, 174, 0, 1293, 1295, 5, 203, 0, 0, 1294, 1296, 5, 293, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1300, 3, 72, 36, 0, 1298, 1299, 5, 332, 0, 0, 1299, 1301, 3, 348, 174, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 5, 2, 0, 0, 1303, 1304, 3, 220, 110, 0, 1304, 1307, 5, 3, 0, 0, 1305, 1306, 5, 207, 0, 0, 1306, 1308, 3, 42, 21, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1336, 1, 0, 0, 0, 1309, 1310, 5, 96, 0, 0, 1310, 1312, 5, 142, 0, 0, 1311, 1313, 3, 162, 81, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 3, 348, 174, 0, 1315, 1317, 5, 203, 0, 0, 1316, 1318, 5, 293, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 3, 72, 36, 0, 1320, 1336, 1, 0, 0, 0, 1321, 1322, 5, 205, 0, 0, 1322, 1324, 3, 72, 36, 0, 1323, 1325, 3, 124, 62, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 3, 328, 164, 0, 1327, 1336, 1, 0, 0, 0, 1328, 1332, 3, 6, 3, 0, 1329, 1331, 9, 0, 0, 0, 1330, 1329, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 378, 1, 0, 0, 0, 1335, 380, 1, 0, 0, 0, 1335, 383, 1, 0, 0, 0, 1335, 388, 1, 0, 0, 0, 1335, 394, 1, 0, 0, 0, 1335, 412, 1, 0, 0, 0, 1335, 419, 1, 0, 0, 0, 1335, 426, 1, 0, 0, 0, 1335, 435, 1, 0, 0, 0, 1335, 447, 1, 0, 0, 0, 1335, 475, 1, 0, 0, 0, 1335, 498, 1, 0, 0, 0, 1335, 519, 1, 0, 0, 0, 1335, 536, 1, 0, 0, 0, 1335, 547, 1, 0, 0, 0, 1335, 554, 1, 0, 0, 0, 1335, 563, 1, 0, 0, 0, 1335, 572, 1, 0, 0, 0, 1335, 582, 1, 0, 0, 0, 1335, 594, 1, 0, 0, 0, 1335, 605, 1, 0, 0, 0, 1335, 616, 1, 0, 0, 0, 1335, 630, 1, 0, 0, 0, 1335, 641, 1, 0, 0, 0, 1335, 656, 1, 0, 0, 0, 1335, 668, 1, 0, 0, 0, 1335, 682, 1, 0, 0, 0, 1335, 692, 1, 0, 0, 0, 1335, 708, 1, 0, 0, 0, 1335, 716, 1, 0, 0, 0, 1335, 738, 1, 0, 0, 0, 1335, 748, 1, 0, 0, 0, 1335, 754, 1, 0, 0, 0, 1335, 761, 1, 0, 0, 0, 1335, 769, 1, 0, 0, 0, 1335, 778, 1, 0, 0, 0, 1335, 784, 1, 0, 0, 0, 1335, 791, 1, 0, 0, 0, 1335, 825, 1, 0, 0, 0, 1335, 847, 1, 0, 0, 0, 1335, 855, 1, 0, 0, 0, 1335, 885, 1, 0, 0, 0, 1335, 918, 1, 0, 0, 0, 1335, 927, 1, 0, 0, 0, 1335, 942, 1, 0, 0, 0, 1335, 953, 1, 0, 0, 0, 1335, 958, 1, 0, 0, 0, 1335, 970, 1, 0, 0, 0, 1335, 982, 1, 0, 0, 0, 1335, 991, 1, 0, 0, 0, 1335, 999, 1, 0, 0, 0, 1335, 1011, 1, 0, 0, 0, 1335, 1017, 1, 0, 0, 0, 1335, 1035, 1, 0, 0, 0, 1335, 1043, 1, 0, 0, 0, 1335, 1046, 1, 0, 0, 0, 1335, 1054, 1, 0, 0, 0, 1335, 1067, 1, 0, 0, 0, 1335, 1076, 1, 0, 0, 0, 1335, 1082, 1, 0, 0, 0, 1335, 1088, 1, 0, 0, 0, 1335, 1102, 1, 0, 0, 0, 1335, 1107, 1, 0, 0, 0, 1335, 1121, 1, 0, 0, 0, 1335, 1124, 1, 0, 0, 0, 1335, 1127, 1, 0, 0, 0, 1335, 1137, 1, 0, 0, 0, 1335, 1141, 1, 0, 0, 0, 1335, 1157, 1, 0, 0, 0, 1335, 1163, 1, 0, 0, 0, 1335, 1165, 1, 0, 0, 0, 1335, 1181, 1, 0, 0, 0, 1335, 1188, 1, 0, 0, 0, 1335, 1197, 1, 0, 0, 0, 1335, 1205, 1, 0, 0, 0, 1335, 1213, 1, 0, 0, 0, 1335, 1217, 1, 0, 0, 0, 1335, 1224, 1, 0, 0, 0, 1335, 1233, 1, 0, 0, 0, 1335, 1236, 1, 0, 0, 0, 1335, 1246, 1, 0, 0, 0, 1335, 1251, 1, 0, 0, 0, 1335, 1262, 1, 0, 0, 0, 1335, 1271, 1, 0, 0, 0, 1335, 1278, 1, 0, 0, 0, 1335, 1280, 1, 0, 0, 0, 1335, 1287, 1, 0, 0, 0, 1335, 1309, 1, 0, 0, 0, 1335, 1321, 1, 0, 0, 0, 1335, 1328, 1, 0, 0, 0, 1336, 5, 1, 0, 0, 0, 1337, 1338, 7, 13, 0, 0, 1338, 1431, 5, 253, 0, 0, 1339, 1341, 7, 14, 0, 0, 1340, 1342, 5, 253, 0, 0, 1341, 1340, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1431, 1, 0, 0, 0, 1343, 1344, 5, 273, 0, 0, 1344, 1431, 7, 15, 0, 0, 1345, 1346, 5, 273, 0, 0, 1346, 1348, 5, 253, 0, 0, 1347, 1349, 5, 129, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1431, 1, 0, 0, 0, 1350, 1352, 5, 273, 0, 0, 1351, 1353, 5, 62, 0, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1431, 5, 254, 0, 0, 1355, 1356, 5, 273, 0, 0, 1356, 1357, 5, 59, 0, 0, 1357, 1431, 5, 293, 0, 0, 1358, 1359, 7, 16, 0, 0, 1359, 1431, 5, 142, 0, 0, 1360, 1361, 7, 17, 0, 0, 1361, 1431, 5, 293, 0, 0, 1362, 1363, 7, 18, 0, 0, 1363, 1431, 5, 72, 0, 0, 1364, 1365, 7, 13, 0, 0, 1365, 1366, 5, 298, 0, 0, 1366, 1431, 5, 175, 0, 0, 1367, 1368, 5, 11, 0, 0, 1368, 1369, 5, 293, 0, 0, 1369, 1370, 3, 72, 36, 0, 1370, 1371, 5, 197, 0, 0, 1371, 1372, 7, 19, 0, 0, 1372, 1431, 1, 0, 0, 0, 1373, 1374, 5, 11, 0, 0, 1374, 1375, 5, 293, 0, 0, 1375, 1376, 3, 72, 36, 0, 1376, 1377, 7, 20, 0, 0, 1377, 1378, 5, 31, 0, 0, 1378, 1431, 1, 0, 0, 0, 1379, 1380, 5, 11, 0, 0, 1380, 1381, 5, 293, 0, 0, 1381, 1382, 3, 72, 36, 0, 1382, 1383, 5, 275, 0, 0, 1383, 1384, 5, 31, 0, 0, 1384, 1431, 1, 0, 0, 0, 1385, 1386, 5, 11, 0, 0, 1386, 1387, 5, 293, 0, 0, 1387, 1388, 3, 72, 36, 0, 1388, 1389, 5, 197, 0, 0, 1389, 1390, 5, 283, 0, 0, 1390, 1391, 5, 20, 0, 0, 1391, 1392, 5, 89, 0, 0, 1392, 1431, 1, 0, 0, 0, 1393, 1394, 5, 11, 0, 0, 1394, 1395, 5, 293, 0, 0, 1395, 1396, 3, 72, 36, 0, 1396, 1397, 5, 269, 0, 0, 1397, 1398, 5, 275, 0, 0, 1398, 1399, 5, 170, 0, 0, 1399, 1431, 1, 0, 0, 0, 1400, 1401, 5, 11, 0, 0, 1401, 1402, 5, 293, 0, 0, 1402, 1403, 3, 72, 36, 0, 1403, 1404, 7, 21, 0, 0, 1404, 1405, 5, 217, 0, 0, 1405, 1431, 1, 0, 0, 0, 1406, 1407, 5, 11, 0, 0, 1407, 1408, 5, 293, 0, 0, 1408, 1409, 3, 72, 36, 0, 1409, 1410, 5, 310, 0, 0, 1410, 1431, 1, 0, 0, 0, 1411, 1412, 5, 11, 0, 0, 1412, 1413, 5, 293, 0, 0, 1413, 1415, 3, 72, 36, 0, 1414, 1416, 3, 22, 11, 0, 1415, 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1423, 1, 0, 0, 0, 1417, 1424, 5, 53, 0, 0, 1418, 1424, 5, 56, 0, 0, 1419, 1420, 5, 269, 0, 0, 1420, 1424, 5, 115, 0, 0, 1421, 1422, 5, 244, 0, 0, 1422, 1424, 5, 50, 0, 0, 1423, 1417, 1, 0, 0, 0, 1423, 1418, 1, 0, 0, 0, 1423, 1419, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1424, 1431, 1, 0, 0, 0, 1425, 1426, 5, 281, 0, 0, 1426, 1431, 5, 312, 0, 0, 1427, 1431, 5, 52, 0, 0, 1428, 1431, 5, 255, 0, 0, 1429, 1431, 5, 88, 0, 0, 1430, 1337, 1, 0, 0, 0, 1430, 1339, 1, 0, 0, 0, 1430, 1343, 1, 0, 0, 0, 1430, 1345, 1, 0, 0, 0, 1430, 1350, 1, 0, 0, 0, 1430, 1355, 1, 0, 0, 0, 1430, 1358, 1, 0, 0, 0, 1430, 1360, 1, 0, 0, 0, 1430, 1362, 1, 0, 0, 0, 1430, 1364, 1, 0, 0, 0, 1430, 1367, 1, 0, 0, 0, 1430, 1373, 1, 0, 0, 0, 1430, 1379, 1, 0, 0, 0, 1430, 1385, 1, 0, 0, 0, 1430, 1393, 1, 0, 0, 0, 1430, 1400, 1, 0, 0, 0, 1430, 1406, 1, 0, 0, 0, 1430, 1411, 1, 0, 0, 0, 1430, 1425, 1, 0, 0, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 7, 1, 0, 0, 0, 1432, 1433, 5, 45, 0, 0, 1433, 1434, 5, 31, 0, 0, 1434, 1438, 3, 180, 90, 0, 1435, 1436, 5, 279, 0, 0, 1436, 1437, 5, 31, 0, 0, 1437, 1439, 3, 184, 92, 0, 1438, 1435, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 5, 152, 0, 0, 1441, 1442, 5, 382, 0, 0, 1442, 1443, 5, 30, 0, 0, 1443, 9, 1, 0, 0, 0, 1444, 1445, 5, 275, 0, 0, 1445, 1446, 5, 31, 0, 0, 1446, 1447, 3, 180, 90, 0, 1447, 1450, 5, 203, 0, 0, 1448, 1451, 3, 54, 27, 0, 1449, 1451, 3, 56, 28, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1449, 1, 0, 0, 0, 1451, 1455, 1, 0, 0, 0, 1452, 1453, 5, 283, 0, 0, 1453, 1454, 5, 20, 0, 0, 1454, 1456, 5, 89, 0, 0, 1455, 1452, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 11, 1, 0, 0, 0, 1457, 1458, 5, 170, 0, 0, 1458, 1459, 3, 358, 179, 0, 1459, 13, 1, 0, 0, 0, 1460, 1461, 5, 51, 0, 0, 1461, 1462, 3, 358, 179, 0, 1462, 15, 1, 0, 0, 0, 1463, 1465, 3, 32, 16, 0, 1464, 1463, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 3, 96, 48, 0, 1467, 1468, 3, 88, 44, 0, 1468, 17, 1, 0, 0, 0, 1469, 1470, 5, 147, 0, 0, 1470, 1472, 5, 216, 0, 0, 1471, 1473, 5, 293, 0, 0, 1472, 1471, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1479, 3, 72, 36, 0, 1475, 1477, 3, 22, 11, 0, 1476, 1478, 3, 160, 80, 0, 1477, 1476, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1475, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1487, 1, 0, 0, 0, 1481, 1482, 5, 31, 0, 0, 1482, 1488, 5, 189, 0, 0, 1483, 1484, 5, 2, 0, 0, 1484, 1485, 3, 82, 41, 0, 1485, 1486, 5, 3, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1481, 1, 0, 0, 0, 1487, 1483, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1546, 1, 0, 0, 0, 1489, 1490, 5, 147, 0, 0, 1490, 1492, 5, 152, 0, 0, 1491, 1493, 5, 293, 0, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 3, 72, 36, 0, 1495, 1497, 3, 22, 11, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1500, 3, 160, 80, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1507, 1, 0, 0, 0, 1501, 1502, 5, 31, 0, 0, 1502, 1508, 5, 189, 0, 0, 1503, 1504, 5, 2, 0, 0, 1504, 1505, 3, 82, 41, 0, 1505, 1506, 5, 3, 0, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1501, 1, 0, 0, 0, 1507, 1503, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1546, 1, 0, 0, 0, 1509, 1510, 5, 147, 0, 0, 1510, 1512, 5, 152, 0, 0, 1511, 1513, 5, 293, 0, 0, 1512, 1511, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 3, 72, 36, 0, 1515, 1516, 5, 244, 0, 0, 1516, 1517, 3, 124, 62, 0, 1517, 1546, 1, 0, 0, 0, 1518, 1519, 5, 147, 0, 0, 1519, 1521, 5, 216, 0, 0, 1520, 1522, 5, 169, 0, 0, 1521, 1520, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 5, 90, 0, 0, 1524, 1526, 3, 358, 179, 0, 1525, 1527, 3, 214, 107, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1529, 1, 0, 0, 0, 1528, 1530, 3, 58, 29, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1546, 1, 0, 0, 0, 1531, 1532, 5, 147, 0, 0, 1532, 1534, 5, 216, 0, 0, 1533, 1535, 5, 169, 0, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1538, 5, 90, 0, 0, 1537, 1539, 3, 358, 179, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1543, 3, 36, 18, 0, 1541, 1542, 5, 207, 0, 0, 1542, 1544, 3, 42, 21, 0, 1543, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 1, 0, 0, 0, 1545, 1469, 1, 0, 0, 0, 1545, 1489, 1, 0, 0, 0, 1545, 1509, 1, 0, 0, 0, 1545, 1518, 1, 0, 0, 0, 1545, 1531, 1, 0, 0, 0, 1546, 19, 1, 0, 0, 0, 1547, 1550, 3, 22, 11, 0, 1548, 1549, 5, 170, 0, 0, 1549, 1551, 3, 358, 179, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 21, 1, 0, 0, 0, 1552, 1553, 5, 217, 0, 0, 1553, 1554, 5, 2, 0, 0, 1554, 1559, 3, 24, 12, 0, 1555, 1556, 5, 4, 0, 0, 1556, 1558, 3, 24, 12, 0, 1557, 1555, 1, 0, 0, 0, 1558, 1561, 1, 0, 0, 0, 1559, 1557, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 1, 0, 0, 0, 1561, 1559, 1, 0, 0, 0, 1562, 1563, 5, 3, 0, 0, 1563, 23, 1, 0, 0, 0, 1564, 1567, 3, 348, 174, 0, 1565, 1566, 5, 352, 0, 0, 1566, 1568, 3, 268, 134, 0, 1567, 1565, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1574, 1, 0, 0, 0, 1569, 1570, 3, 348, 174, 0, 1570, 1571, 5, 352, 0, 0, 1571, 1572, 5, 82, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1564, 1, 0, 0, 0, 1573, 1569, 1, 0, 0, 0, 1574, 25, 1, 0, 0, 0, 1575, 1576, 7, 22, 0, 0, 1576, 27, 1, 0, 0, 0, 1577, 1583, 3, 86, 43, 0, 1578, 1583, 3, 358, 179, 0, 1579, 1583, 3, 270, 135, 0, 1580, 1583, 3, 272, 136, 0, 1581, 1583, 3, 274, 137, 0, 1582, 1577, 1, 0, 0, 0, 1582, 1578, 1, 0, 0, 0, 1582, 1579, 1, 0, 0, 0, 1582, 1580, 1, 0, 0, 0, 1582, 1581, 1, 0, 0, 0, 1583, 29, 1, 0, 0, 0, 1584, 1589, 3, 348, 174, 0, 1585, 1586, 5, 5, 0, 0, 1586, 1588, 3, 348, 174, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 31, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, 5, 346, 0, 0, 1593, 1598, 3, 34, 17, 0, 1594, 1595, 5, 4, 0, 0, 1595, 1597, 3, 34, 17, 0, 1596, 1594, 1, 0, 0, 0, 1597, 1600, 1, 0, 0, 0, 1598, 1596, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 33, 1, 0, 0, 0, 1600, 1598, 1, 0, 0, 0, 1601, 1603, 3, 344, 172, 0, 1602, 1604, 3, 180, 90, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1607, 5, 20, 0, 0, 1606, 1605, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 5, 2, 0, 0, 1609, 1610, 3, 16, 8, 0, 1610, 1611, 5, 3, 0, 0, 1611, 35, 1, 0, 0, 0, 1612, 1613, 5, 332, 0, 0, 1613, 1614, 3, 218, 109, 0, 1614, 37, 1, 0, 0, 0, 1615, 1616, 5, 207, 0, 0, 1616, 1632, 3, 50, 25, 0, 1617, 1618, 5, 218, 0, 0, 1618, 1619, 5, 31, 0, 0, 1619, 1632, 3, 240, 120, 0, 1620, 1632, 3, 10, 5, 0, 1621, 1632, 3, 8, 4, 0, 1622, 1632, 3, 214, 107, 0, 1623, 1632, 3, 58, 29, 0, 1624, 1625, 5, 170, 0, 0, 1625, 1632, 3, 358, 179, 0, 1626, 1627, 5, 51, 0, 0, 1627, 1632, 3, 358, 179, 0, 1628, 1629, 5, 297, 0, 0, 1629, 1632, 3, 42, 21, 0, 1630, 1632, 3, 40, 20, 0, 1631, 1615, 1, 0, 0, 0, 1631, 1617, 1, 0, 0, 0, 1631, 1620, 1, 0, 0, 0, 1631, 1621, 1, 0, 0, 0, 1631, 1622, 1, 0, 0, 0, 1631, 1623, 1, 0, 0, 0, 1631, 1624, 1, 0, 0, 0, 1631, 1626, 1, 0, 0, 0, 1631, 1628, 1, 0, 0, 0, 1631, 1630, 1, 0, 0, 0, 1632, 1635, 1, 0, 0, 0, 1633, 1631, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 39, 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1637, 5, 162, 0, 0, 1637, 1638, 5, 382, 0, 0, 1638, 41, 1, 0, 0, 0, 1639, 1640, 5, 2, 0, 0, 1640, 1645, 3, 44, 22, 0, 1641, 1642, 5, 4, 0, 0, 1642, 1644, 3, 44, 22, 0, 1643, 1641, 1, 0, 0, 0, 1644, 1647, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1648, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1648, 1649, 5, 3, 0, 0, 1649, 43, 1, 0, 0, 0, 1650, 1655, 3, 46, 23, 0, 1651, 1653, 5, 352, 0, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1656, 3, 48, 24, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 45, 1, 0, 0, 0, 1657, 1662, 3, 348, 174, 0, 1658, 1659, 5, 5, 0, 0, 1659, 1661, 3, 348, 174, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1667, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1667, 3, 358, 179, 0, 1666, 1657, 1, 0, 0, 0, 1666, 1665, 1, 0, 0, 0, 1667, 47, 1, 0, 0, 0, 1668, 1673, 5, 382, 0, 0, 1669, 1673, 5, 384, 0, 0, 1670, 1673, 3, 276, 138, 0, 1671, 1673, 3, 358, 179, 0, 1672, 1668, 1, 0, 0, 0, 1672, 1669, 1, 0, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1671, 1, 0, 0, 0, 1673, 49, 1, 0, 0, 0, 1674, 1675, 5, 2, 0, 0, 1675, 1680, 3, 52, 26, 0, 1676, 1677, 5, 4, 0, 0, 1677, 1679, 3, 52, 26, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1683, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1684, 5, 3, 0, 0, 1684, 51, 1, 0, 0, 0, 1685, 1690, 3, 46, 23, 0, 1686, 1688, 5, 352, 0, 0, 1687, 1686, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1691, 3, 248, 124, 0, 1690, 1687, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 53, 1, 0, 0, 0, 1692, 1693, 5, 2, 0, 0, 1693, 1698, 3, 268, 134, 0, 1694, 1695, 5, 4, 0, 0, 1695, 1697, 3, 268, 134, 0, 1696, 1694, 1, 0, 0, 0, 1697, 1700, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1701, 1, 0, 0, 0, 1700, 1698, 1, 0, 0, 0, 1701, 1702, 5, 3, 0, 0, 1702, 55, 1, 0, 0, 0, 1703, 1704, 5, 2, 0, 0, 1704, 1709, 3, 54, 27, 0, 1705, 1706, 5, 4, 0, 0, 1706, 1708, 3, 54, 27, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1711, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1713, 5, 3, 0, 0, 1713, 57, 1, 0, 0, 0, 1714, 1715, 5, 283, 0, 0, 1715, 1716, 5, 20, 0, 0, 1716, 1721, 3, 60, 30, 0, 1717, 1718, 5, 283, 0, 0, 1718, 1719, 5, 31, 0, 0, 1719, 1721, 3, 62, 31, 0, 1720, 1714, 1, 0, 0, 0, 1720, 1717, 1, 0, 0, 0, 1721, 59, 1, 0, 0, 0, 1722, 1723, 5, 146, 0, 0, 1723, 1724, 3, 358, 179, 0, 1724, 1725, 5, 212, 0, 0, 1725, 1726, 3, 358, 179, 0, 1726, 1729, 1, 0, 0, 0, 1727, 1729, 3, 348, 174, 0, 1728, 1722, 1, 0, 0, 0, 1728, 1727, 1, 0, 0, 0, 1729, 61, 1, 0, 0, 0, 1730, 1734, 3, 358, 179, 0, 1731, 1732, 5, 346, 0, 0, 1732, 1733, 5, 267, 0, 0, 1733, 1735, 3, 42, 21, 0, 1734, 1731, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 63, 1, 0, 0, 0, 1736, 1737, 3, 18, 9, 0, 1737, 1738, 3, 16, 8, 0, 1738, 1795, 1, 0, 0, 0, 1739, 1743, 3, 132, 66, 0, 1740, 1741, 3, 18, 9, 0, 1741, 1742, 3, 102, 51, 0, 1742, 1744, 1, 0, 0, 0, 1743, 1740, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1795, 1, 0, 0, 0, 1747, 1748, 5, 84, 0, 0, 1748, 1749, 5, 123, 0, 0, 1749, 1750, 3, 72, 36, 0, 1750, 1752, 3, 212, 106, 0, 1751, 1753, 3, 124, 62, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1795, 1, 0, 0, 0, 1754, 1755, 5, 329, 0, 0, 1755, 1756, 3, 72, 36, 0, 1756, 1757, 3, 212, 106, 0, 1757, 1759, 3, 110, 55, 0, 1758, 1760, 3, 124, 62, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1795, 1, 0, 0, 0, 1761, 1762, 5, 179, 0, 0, 1762, 1763, 5, 152, 0, 0, 1763, 1764, 3, 72, 36, 0, 1764, 1765, 3, 212, 106, 0, 1765, 1771, 5, 332, 0, 0, 1766, 1772, 3, 86, 43, 0, 1767, 1768, 5, 2, 0, 0, 1768, 1769, 3, 16, 8, 0, 1769, 1770, 5, 3, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1766, 1, 0, 0, 0, 1771, 1767, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 3, 212, 106, 0, 1774, 1775, 5, 203, 0, 0, 1775, 1779, 3, 256, 128, 0, 1776, 1778, 3, 112, 56, 0, 1777, 1776, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1785, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1784, 3, 114, 57, 0, 1783, 1782, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1791, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1790, 3, 116, 58, 0, 1789, 1788, 1, 0, 0, 0, 1790, 1793, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1794, 1736, 1, 0, 0, 0, 1794, 1739, 1, 0, 0, 0, 1794, 1747, 1, 0, 0, 0, 1794, 1754, 1, 0, 0, 0, 1794, 1761, 1, 0, 0, 0, 1795, 65, 1, 0, 0, 0, 1796, 1797, 3, 86, 43, 0, 1797, 67, 1, 0, 0, 0, 1798, 1799, 3, 86, 43, 0, 1799, 69, 1, 0, 0, 0, 1800, 1801, 3, 224, 112, 0, 1801, 71, 1, 0, 0, 0, 1802, 1803, 3, 224, 112, 0, 1803, 73, 1, 0, 0, 0, 1804, 1805, 3, 226, 113, 0, 1805, 75, 1, 0, 0, 0, 1806, 1807, 3, 226, 113, 0, 1807, 77, 1, 0, 0, 0, 1808, 1811, 3, 218, 109, 0, 1809, 1811, 4, 39, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1809, 1, 0, 0, 0, 1811, 79, 1, 0, 0, 0, 1812, 1813, 3, 218, 109, 0, 1813, 81, 1, 0, 0, 0, 1814, 1819, 3, 78, 39, 0, 1815, 1816, 5, 4, 0, 0, 1816, 1818, 3, 78, 39, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1821, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 83, 1, 0, 0, 0, 1821, 1819, 1, 0, 0, 0, 1822, 1823, 3, 344, 172, 0, 1823, 85, 1, 0, 0, 0, 1824, 1825, 5, 136, 0, 0, 1825, 1826, 5, 2, 0, 0, 1826, 1827, 3, 248, 124, 0, 1827, 1828, 5, 3, 0, 0, 1828, 1831, 1, 0, 0, 0, 1829, 1831, 3, 218, 109, 0, 1830, 1824, 1, 0, 0, 0, 1830, 1829, 1, 0, 0, 0, 1831, 87, 1, 0, 0, 0, 1832, 1833, 5, 209, 0, 0, 1833, 1834, 5, 31, 0, 0, 1834, 1836, 3, 92, 46, 0, 1835, 1832, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1840, 1, 0, 0, 0, 1837, 1838, 5, 44, 0, 0, 1838, 1839, 5, 31, 0, 0, 1839, 1841, 3, 94, 47, 0, 1840, 1837, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1845, 1, 0, 0, 0, 1842, 1843, 5, 93, 0, 0, 1843, 1844, 5, 31, 0, 0, 1844, 1846, 3, 94, 47, 0, 1845, 1842, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1850, 1, 0, 0, 0, 1847, 1848, 5, 278, 0, 0, 1848, 1849, 5, 31, 0, 0, 1849, 1851, 3, 92, 46, 0, 1850, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1854, 3, 326, 163, 0, 1853, 1852, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1857, 3, 90, 45, 0, 1856, 1855, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1860, 1, 0, 0, 0, 1858, 1859, 5, 202, 0, 0, 1859, 1861, 3, 248, 124, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 89, 1, 0, 0, 0, 1862, 1865, 5, 165, 0, 0, 1863, 1866, 5, 10, 0, 0, 1864, 1866, 3, 248, 124, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1864, 1, 0, 0, 0, 1866, 91, 1, 0, 0, 0, 1867, 1872, 3, 100, 50, 0, 1868, 1869, 5, 4, 0, 0, 1869, 1871, 3, 100, 50, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1874, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 93, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1875, 1880, 3, 248, 124, 0, 1876, 1877, 5, 4, 0, 0, 1877, 1879, 3, 248, 124, 0, 1878, 1876, 1, 0, 0, 0, 1879, 1882, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 95, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1884, 6, 48, -1, 0, 1884, 1885, 3, 98, 49, 0, 1885, 1906, 1, 0, 0, 0, 1886, 1887, 10, 3, 0, 0, 1887, 1889, 7, 23, 0, 0, 1888, 1890, 3, 166, 83, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1905, 3, 96, 48, 4, 1892, 1893, 10, 2, 0, 0, 1893, 1895, 5, 148, 0, 0, 1894, 1896, 3, 166, 83, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1905, 3, 96, 48, 3, 1898, 1899, 10, 1, 0, 0, 1899, 1901, 7, 24, 0, 0, 1900, 1902, 3, 166, 83, 0, 1901, 1900, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1905, 3, 96, 48, 2, 1904, 1886, 1, 0, 0, 0, 1904, 1892, 1, 0, 0, 0, 1904, 1898, 1, 0, 0, 0, 1905, 1908, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 97, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1934, 3, 104, 52, 0, 1910, 1912, 3, 132, 66, 0, 1911, 1913, 3, 102, 51, 0, 1912, 1911, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1934, 1, 0, 0, 0, 1916, 1917, 5, 293, 0, 0, 1917, 1934, 3, 72, 36, 0, 1918, 1919, 5, 333, 0, 0, 1919, 1924, 3, 248, 124, 0, 1920, 1921, 5, 4, 0, 0, 1921, 1923, 3, 248, 124, 0, 1922, 1920, 1, 0, 0, 0, 1923, 1926, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1924, 1, 0, 0, 0, 1927, 1928, 3, 212, 106, 0, 1928, 1934, 1, 0, 0, 0, 1929, 1930, 5, 2, 0, 0, 1930, 1931, 3, 16, 8, 0, 1931, 1932, 5, 3, 0, 0, 1932, 1934, 1, 0, 0, 0, 1933, 1909, 1, 0, 0, 0, 1933, 1910, 1, 0, 0, 0, 1933, 1916, 1, 0, 0, 0, 1933, 1918, 1, 0, 0, 0, 1933, 1929, 1, 0, 0, 0, 1934, 99, 1, 0, 0, 0, 1935, 1938, 3, 78, 39, 0, 1936, 1938, 3, 248, 124, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 1940, 1, 0, 0, 0, 1939, 1941, 7, 25, 0, 0, 1940, 1939, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1944, 1, 0, 0, 0, 1942, 1943, 5, 199, 0, 0, 1943, 1945, 7, 26, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 101, 1, 0, 0, 0, 1946, 1948, 3, 106, 53, 0, 1947, 1949, 3, 124, 62, 0, 1948, 1947, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 3, 88, 44, 0, 1951, 1974, 1, 0, 0, 0, 1952, 1956, 3, 108, 54, 0, 1953, 1955, 3, 164, 82, 0, 1954, 1953, 1, 0, 0, 0, 1955, 1958, 1, 0, 0, 0, 1956, 1954, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1961, 3, 124, 62, 0, 1960, 1959, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1963, 1, 0, 0, 0, 1962, 1964, 3, 136, 68, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1967, 3, 126, 63, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1969, 1, 0, 0, 0, 1968, 1970, 3, 326, 163, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 3, 88, 44, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1946, 1, 0, 0, 0, 1973, 1952, 1, 0, 0, 0, 1974, 103, 1, 0, 0, 0, 1975, 1977, 3, 106, 53, 0, 1976, 1978, 3, 132, 66, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1982, 1, 0, 0, 0, 1979, 1981, 3, 164, 82, 0, 1980, 1979, 1, 0, 0, 0, 1981, 1984, 1, 0, 0, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1986, 1, 0, 0, 0, 1984, 1982, 1, 0, 0, 0, 1985, 1987, 3, 124, 62, 0, 1986, 1985, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1990, 3, 136, 68, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1993, 3, 126, 63, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1996, 3, 326, 163, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2020, 1, 0, 0, 0, 1997, 1999, 3, 108, 54, 0, 1998, 2000, 3, 132, 66, 0, 1999, 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2004, 1, 0, 0, 0, 2001, 2003, 3, 164, 82, 0, 2002, 2001, 1, 0, 0, 0, 2003, 2006, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2008, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2007, 2009, 3, 124, 62, 0, 2008, 2007, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2011, 1, 0, 0, 0, 2010, 2012, 3, 136, 68, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2014, 1, 0, 0, 0, 2013, 2015, 3, 126, 63, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2017, 1, 0, 0, 0, 2016, 2018, 3, 326, 163, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2020, 1, 0, 0, 0, 2019, 1975, 1, 0, 0, 0, 2019, 1997, 1, 0, 0, 0, 2020, 105, 1, 0, 0, 0, 2021, 2022, 5, 263, 0, 0, 2022, 2023, 5, 314, 0, 0, 2023, 2025, 5, 2, 0, 0, 2024, 2026, 3, 166, 83, 0, 2025, 2024, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2028, 3, 254, 127, 0, 2028, 2029, 5, 3, 0, 0, 2029, 2041, 1, 0, 0, 0, 2030, 2032, 5, 177, 0, 0, 2031, 2033, 3, 166, 83, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2041, 3, 254, 127, 0, 2035, 2037, 5, 238, 0, 0, 2036, 2038, 3, 166, 83, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 3, 254, 127, 0, 2040, 2021, 1, 0, 0, 0, 2040, 2030, 1, 0, 0, 0, 2040, 2035, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2044, 3, 214, 107, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2046, 5, 236, 0, 0, 2046, 2048, 3, 358, 179, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 5, 332, 0, 0, 2050, 2063, 3, 358, 179, 0, 2051, 2061, 5, 20, 0, 0, 2052, 2062, 3, 182, 91, 0, 2053, 2062, 3, 312, 156, 0, 2054, 2057, 5, 2, 0, 0, 2055, 2058, 3, 182, 91, 0, 2056, 2058, 3, 312, 156, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 5, 3, 0, 0, 2060, 2062, 1, 0, 0, 0, 2061, 2052, 1, 0, 0, 0, 2061, 2053, 1, 0, 0, 0, 2061, 2054, 1, 0, 0, 0, 2062, 2064, 1, 0, 0, 0, 2063, 2051, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2067, 3, 214, 107, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2070, 1, 0, 0, 0, 2068, 2069, 5, 235, 0, 0, 2069, 2071, 3, 358, 179, 0, 2070, 2068, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 107, 1, 0, 0, 0, 2072, 2076, 5, 263, 0, 0, 2073, 2075, 3, 128, 64, 0, 2074, 2073, 1, 0, 0, 0, 2075, 2078, 1, 0, 0, 0, 2076, 2074, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2080, 1, 0, 0, 0, 2078, 2076, 1, 0, 0, 0, 2079, 2081, 3, 166, 83, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2083, 3, 238, 119, 0, 2083, 109, 1, 0, 0, 0, 2084, 2085, 5, 269, 0, 0, 2085, 2086, 3, 120, 60, 0, 2086, 111, 1, 0, 0, 0, 2087, 2088, 5, 343, 0, 0, 2088, 2091, 5, 178, 0, 0, 2089, 2090, 5, 14, 0, 0, 2090, 2092, 3, 256, 128, 0, 2091, 2089, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2101, 5, 300, 0, 0, 2094, 2102, 5, 84, 0, 0, 2095, 2096, 5, 329, 0, 0, 2096, 2099, 5, 269, 0, 0, 2097, 2100, 5, 363, 0, 0, 2098, 2100, 3, 120, 60, 0, 2099, 2097, 1, 0, 0, 0, 2099, 2098, 1, 0, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2094, 1, 0, 0, 0, 2101, 2095, 1, 0, 0, 0, 2102, 113, 1, 0, 0, 0, 2103, 2104, 5, 343, 0, 0, 2104, 2105, 5, 197, 0, 0, 2105, 2108, 5, 178, 0, 0, 2106, 2107, 5, 31, 0, 0, 2107, 2109, 5, 296, 0, 0, 2108, 2106, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2112, 1, 0, 0, 0, 2110, 2111, 5, 14, 0, 0, 2111, 2113, 3, 256, 128, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2115, 5, 300, 0, 0, 2115, 2116, 3, 118, 59, 0, 2116, 115, 1, 0, 0, 0, 2117, 2118, 5, 343, 0, 0, 2118, 2119, 5, 197, 0, 0, 2119, 2120, 5, 178, 0, 0, 2120, 2121, 5, 31, 0, 0, 2121, 2124, 5, 280, 0, 0, 2122, 2123, 5, 14, 0, 0, 2123, 2125, 3, 256, 128, 0, 2124, 2122, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2131, 5, 300, 0, 0, 2127, 2132, 5, 84, 0, 0, 2128, 2129, 5, 329, 0, 0, 2129, 2130, 5, 269, 0, 0, 2130, 2132, 3, 120, 60, 0, 2131, 2127, 1, 0, 0, 0, 2131, 2128, 1, 0, 0, 0, 2132, 117, 1, 0, 0, 0, 2133, 2134, 5, 147, 0, 0, 2134, 2152, 5, 363, 0, 0, 2135, 2136, 5, 147, 0, 0, 2136, 2137, 5, 2, 0, 0, 2137, 2138, 3, 216, 108, 0, 2138, 2139, 5, 3, 0, 0, 2139, 2140, 5, 333, 0, 0, 2140, 2141, 5, 2, 0, 0, 2141, 2146, 3, 248, 124, 0, 2142, 2143, 5, 4, 0, 0, 2143, 2145, 3, 248, 124, 0, 2144, 2142, 1, 0, 0, 0, 2145, 2148, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2149, 2150, 5, 3, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2133, 1, 0, 0, 0, 2151, 2135, 1, 0, 0, 0, 2152, 119, 1, 0, 0, 0, 2153, 2158, 3, 122, 61, 0, 2154, 2155, 5, 4, 0, 0, 2155, 2157, 3, 122, 61, 0, 2156, 2154, 1, 0, 0, 0, 2157, 2160, 1, 0, 0, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 121, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2162, 3, 218, 109, 0, 2162, 2163, 5, 352, 0, 0, 2163, 2164, 3, 248, 124, 0, 2164, 123, 1, 0, 0, 0, 2165, 2166, 5, 344, 0, 0, 2166, 2167, 3, 256, 128, 0, 2167, 125, 1, 0, 0, 0, 2168, 2169, 5, 132, 0, 0, 2169, 2170, 3, 256, 128, 0, 2170, 127, 1, 0, 0, 0, 2171, 2172, 5, 374, 0, 0, 2172, 2179, 3, 130, 65, 0, 2173, 2175, 5, 4, 0, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 3, 130, 65, 0, 2177, 2174, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2182, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2183, 5, 375, 0, 0, 2183, 129, 1, 0, 0, 0, 2184, 2198, 3, 348, 174, 0, 2185, 2186, 3, 348, 174, 0, 2186, 2187, 5, 2, 0, 0, 2187, 2192, 3, 264, 132, 0, 2188, 2189, 5, 4, 0, 0, 2189, 2191, 3, 264, 132, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2194, 1, 0, 0, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2195, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2195, 2196, 5, 3, 0, 0, 2196, 2198, 1, 0, 0, 0, 2197, 2184, 1, 0, 0, 0, 2197, 2185, 1, 0, 0, 0, 2198, 131, 1, 0, 0, 0, 2199, 2200, 5, 123, 0, 0, 2200, 2205, 3, 168, 84, 0, 2201, 2202, 5, 4, 0, 0, 2202, 2204, 3, 168, 84, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2207, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2211, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2208, 2210, 3, 164, 82, 0, 2209, 2208, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2215, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2216, 3, 144, 72, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2218, 1, 0, 0, 0, 2217, 2219, 3, 150, 75, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 133, 1, 0, 0, 0, 2220, 2222, 5, 119, 0, 0, 2221, 2220, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 7, 27, 0, 0, 2224, 2225, 5, 20, 0, 0, 2225, 2228, 5, 201, 0, 0, 2226, 2229, 5, 382, 0, 0, 2227, 2229, 3, 358, 179, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2227, 1, 0, 0, 0, 2229, 2238, 1, 0, 0, 0, 2230, 2232, 5, 119, 0, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2234, 7, 28, 0, 0, 2234, 2235, 5, 20, 0, 0, 2235, 2236, 5, 201, 0, 0, 2236, 2238, 3, 260, 130, 0, 2237, 2221, 1, 0, 0, 0, 2237, 2231, 1, 0, 0, 0, 2238, 135, 1, 0, 0, 0, 2239, 2240, 5, 130, 0, 0, 2240, 2241, 5, 31, 0, 0, 2241, 2246, 3, 138, 69, 0, 2242, 2243, 5, 4, 0, 0, 2243, 2245, 3, 138, 69, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2248, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2279, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2249, 2250, 5, 130, 0, 0, 2250, 2251, 5, 31, 0, 0, 2251, 2256, 3, 248, 124, 0, 2252, 2253, 5, 4, 0, 0, 2253, 2255, 3, 248, 124, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2258, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2276, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2260, 5, 346, 0, 0, 2260, 2277, 5, 256, 0, 0, 2261, 2262, 5, 346, 0, 0, 2262, 2277, 5, 61, 0, 0, 2263, 2264, 5, 131, 0, 0, 2264, 2265, 5, 271, 0, 0, 2265, 2266, 5, 2, 0, 0, 2266, 2271, 3, 142, 71, 0, 2267, 2268, 5, 4, 0, 0, 2268, 2270, 3, 142, 71, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2274, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 5, 3, 0, 0, 2275, 2277, 1, 0, 0, 0, 2276, 2259, 1, 0, 0, 0, 2276, 2261, 1, 0, 0, 0, 2276, 2263, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2239, 1, 0, 0, 0, 2278, 2249, 1, 0, 0, 0, 2279, 137, 1, 0, 0, 0, 2280, 2284, 3, 78, 39, 0, 2281, 2284, 3, 140, 70, 0, 2282, 2284, 3, 248, 124, 0, 2283, 2280, 1, 0, 0, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2282, 1, 0, 0, 0, 2284, 139, 1, 0, 0, 0, 2285, 2286, 7, 29, 0, 0, 2286, 2287, 5, 2, 0, 0, 2287, 2292, 3, 142, 71, 0, 2288, 2289, 5, 4, 0, 0, 2289, 2291, 3, 142, 71, 0, 2290, 2288, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2295, 2296, 5, 3, 0, 0, 2296, 2317, 1, 0, 0, 0, 2297, 2298, 5, 131, 0, 0, 2298, 2299, 5, 271, 0, 0, 2299, 2302, 5, 2, 0, 0, 2300, 2303, 3, 140, 70, 0, 2301, 2303, 3, 142, 71, 0, 2302, 2300, 1, 0, 0, 0, 2302, 2301, 1, 0, 0, 0, 2303, 2311, 1, 0, 0, 0, 2304, 2307, 5, 4, 0, 0, 2305, 2308, 3, 140, 70, 0, 2306, 2308, 3, 142, 71, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2304, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 5, 3, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2285, 1, 0, 0, 0, 2316, 2297, 1, 0, 0, 0, 2317, 141, 1, 0, 0, 0, 2318, 2339, 3, 78, 39, 0, 2319, 2339, 3, 248, 124, 0, 2320, 2335, 5, 2, 0, 0, 2321, 2324, 3, 78, 39, 0, 2322, 2324, 3, 248, 124, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2322, 1, 0, 0, 0, 2324, 2332, 1, 0, 0, 0, 2325, 2328, 5, 4, 0, 0, 2326, 2329, 3, 78, 39, 0, 2327, 2329, 3, 248, 124, 0, 2328, 2326, 1, 0, 0, 0, 2328, 2327, 1, 0, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2325, 1, 0, 0, 0, 2331, 2334, 1, 0, 0, 0, 2332, 2330, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2336, 1, 0, 0, 0, 2334, 2332, 1, 0, 0, 0, 2335, 2323, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2339, 5, 3, 0, 0, 2338, 2318, 1, 0, 0, 0, 2338, 2319, 1, 0, 0, 0, 2338, 2320, 1, 0, 0, 0, 2339, 143, 1, 0, 0, 0, 2340, 2341, 5, 223, 0, 0, 2341, 2342, 5, 2, 0, 0, 2342, 2343, 3, 236, 118, 0, 2343, 2344, 5, 119, 0, 0, 2344, 2345, 3, 146, 73, 0, 2345, 2346, 5, 140, 0, 0, 2346, 2347, 5, 2, 0, 0, 2347, 2352, 3, 148, 74, 0, 2348, 2349, 5, 4, 0, 0, 2349, 2351, 3, 148, 74, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2355, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2356, 5, 3, 0, 0, 2356, 2357, 5, 3, 0, 0, 2357, 145, 1, 0, 0, 0, 2358, 2371, 3, 348, 174, 0, 2359, 2360, 5, 2, 0, 0, 2360, 2365, 3, 348, 174, 0, 2361, 2362, 5, 4, 0, 0, 2362, 2364, 3, 348, 174, 0, 2363, 2361, 1, 0, 0, 0, 2364, 2367, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2368, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2368, 2369, 5, 3, 0, 0, 2369, 2371, 1, 0, 0, 0, 2370, 2358, 1, 0, 0, 0, 2370, 2359, 1, 0, 0, 0, 2371, 147, 1, 0, 0, 0, 2372, 2377, 3, 248, 124, 0, 2373, 2375, 5, 20, 0, 0, 2374, 2373, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2378, 3, 348, 174, 0, 2377, 2374, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 149, 1, 0, 0, 0, 2379, 2382, 5, 327, 0, 0, 2380, 2381, 7, 30, 0, 0, 2381, 2383, 5, 199, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2387, 5, 2, 0, 0, 2385, 2388, 3, 152, 76, 0, 2386, 2388, 3, 154, 77, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2386, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2394, 5, 3, 0, 0, 2390, 2392, 5, 20, 0, 0, 2391, 2390, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2395, 3, 348, 174, 0, 2394, 2391, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 151, 1, 0, 0, 0, 2396, 2397, 3, 348, 174, 0, 2397, 2398, 5, 119, 0, 0, 2398, 2399, 3, 348, 174, 0, 2399, 2400, 5, 140, 0, 0, 2400, 2401, 5, 2, 0, 0, 2401, 2406, 3, 158, 79, 0, 2402, 2403, 5, 4, 0, 0, 2403, 2405, 3, 158, 79, 0, 2404, 2402, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2410, 5, 3, 0, 0, 2410, 153, 1, 0, 0, 0, 2411, 2412, 5, 2, 0, 0, 2412, 2417, 3, 348, 174, 0, 2413, 2414, 5, 4, 0, 0, 2414, 2416, 3, 348, 174, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2419, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2420, 2421, 5, 3, 0, 0, 2421, 2422, 5, 119, 0, 0, 2422, 2423, 3, 348, 174, 0, 2423, 2424, 5, 140, 0, 0, 2424, 2425, 5, 2, 0, 0, 2425, 2430, 3, 156, 78, 0, 2426, 2427, 5, 4, 0, 0, 2427, 2429, 3, 156, 78, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2432, 1, 0, 0, 0, 2430, 2428, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2434, 5, 3, 0, 0, 2434, 155, 1, 0, 0, 0, 2435, 2436, 5, 2, 0, 0, 2436, 2441, 3, 218, 109, 0, 2437, 2438, 5, 4, 0, 0, 2438, 2440, 3, 218, 109, 0, 2439, 2437, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2444, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2449, 5, 3, 0, 0, 2445, 2447, 5, 20, 0, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2450, 3, 348, 174, 0, 2449, 2446, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 157, 1, 0, 0, 0, 2451, 2456, 3, 218, 109, 0, 2452, 2454, 5, 20, 0, 0, 2453, 2452, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 3, 348, 174, 0, 2456, 2453, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 159, 1, 0, 0, 0, 2458, 2459, 5, 137, 0, 0, 2459, 2460, 5, 197, 0, 0, 2460, 2461, 5, 105, 0, 0, 2461, 161, 1, 0, 0, 0, 2462, 2463, 5, 137, 0, 0, 2463, 2464, 5, 105, 0, 0, 2464, 163, 1, 0, 0, 0, 2465, 2466, 5, 158, 0, 0, 2466, 2468, 5, 338, 0, 0, 2467, 2469, 5, 211, 0, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 3, 76, 38, 0, 2471, 2480, 5, 2, 0, 0, 2472, 2477, 3, 248, 124, 0, 2473, 2474, 5, 4, 0, 0, 2474, 2476, 3, 248, 124, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2479, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2481, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2480, 2472, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2483, 5, 3, 0, 0, 2483, 2495, 3, 212, 106, 0, 2484, 2486, 5, 20, 0, 0, 2485, 2484, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2492, 3, 348, 174, 0, 2488, 2489, 5, 4, 0, 0, 2489, 2491, 3, 348, 174, 0, 2490, 2488, 1, 0, 0, 0, 2491, 2494, 1, 0, 0, 0, 2492, 2490, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2496, 1, 0, 0, 0, 2494, 2492, 1, 0, 0, 0, 2495, 2485, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 165, 1, 0, 0, 0, 2497, 2498, 7, 31, 0, 0, 2498, 167, 1, 0, 0, 0, 2499, 2513, 3, 72, 36, 0, 2500, 2502, 5, 158, 0, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2509, 3, 192, 96, 0, 2504, 2508, 3, 170, 85, 0, 2505, 2508, 3, 144, 72, 0, 2506, 2508, 3, 150, 75, 0, 2507, 2504, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2506, 1, 0, 0, 0, 2508, 2511, 1, 0, 0, 0, 2509, 2507, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2513, 1, 0, 0, 0, 2511, 2509, 1, 0, 0, 0, 2512, 2499, 1, 0, 0, 0, 2512, 2501, 1, 0, 0, 0, 2513, 169, 1, 0, 0, 0, 2514, 2515, 3, 172, 86, 0, 2515, 2517, 5, 155, 0, 0, 2516, 2518, 5, 158, 0, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2521, 3, 192, 96, 0, 2520, 2522, 3, 174, 87, 0, 2521, 2520, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2532, 1, 0, 0, 0, 2523, 2524, 5, 194, 0, 0, 2524, 2525, 3, 172, 86, 0, 2525, 2527, 5, 155, 0, 0, 2526, 2528, 5, 158, 0, 0, 2527, 2526, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2530, 3, 192, 96, 0, 2530, 2532, 1, 0, 0, 0, 2531, 2514, 1, 0, 0, 0, 2531, 2523, 1, 0, 0, 0, 2532, 171, 1, 0, 0, 0, 2533, 2535, 5, 144, 0, 0, 2534, 2533, 1, 0, 0, 0, 2534, 2535, 1, 0, 0, 0, 2535, 2550, 1, 0, 0, 0, 2536, 2550, 5, 60, 0, 0, 2537, 2539, 5, 161, 0, 0, 2538, 2540, 5, 211, 0, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2550, 1, 0, 0, 0, 2541, 2543, 5, 161, 0, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2550, 7, 32, 0, 0, 2545, 2547, 7, 33, 0, 0, 2546, 2548, 5, 211, 0, 0, 2547, 2546, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2550, 1, 0, 0, 0, 2549, 2534, 1, 0, 0, 0, 2549, 2536, 1, 0, 0, 0, 2549, 2537, 1, 0, 0, 0, 2549, 2542, 1, 0, 0, 0, 2549, 2545, 1, 0, 0, 0, 2550, 173, 1, 0, 0, 0, 2551, 2552, 5, 203, 0, 0, 2552, 2556, 3, 256, 128, 0, 2553, 2554, 5, 332, 0, 0, 2554, 2556, 3, 180, 90, 0, 2555, 2551, 1, 0, 0, 0, 2555, 2553, 1, 0, 0, 0, 2556, 175, 1, 0, 0, 0, 2557, 2558, 5, 295, 0, 0, 2558, 2560, 5, 2, 0, 0, 2559, 2561, 3, 178, 89, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2567, 5, 3, 0, 0, 2563, 2564, 5, 243, 0, 0, 2564, 2565, 5, 2, 0, 0, 2565, 2566, 5, 382, 0, 0, 2566, 2568, 5, 3, 0, 0, 2567, 2563, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 177, 1, 0, 0, 0, 2569, 2571, 5, 362, 0, 0, 2570, 2569, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 7, 34, 0, 0, 2573, 2594, 5, 222, 0, 0, 2574, 2575, 3, 248, 124, 0, 2575, 2576, 5, 258, 0, 0, 2576, 2594, 1, 0, 0, 0, 2577, 2578, 5, 29, 0, 0, 2578, 2579, 5, 382, 0, 0, 2579, 2580, 5, 210, 0, 0, 2580, 2581, 5, 201, 0, 0, 2581, 2590, 5, 382, 0, 0, 2582, 2588, 5, 203, 0, 0, 2583, 2589, 3, 348, 174, 0, 2584, 2585, 3, 342, 171, 0, 2585, 2586, 5, 2, 0, 0, 2586, 2587, 5, 3, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2583, 1, 0, 0, 0, 2588, 2584, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2582, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2594, 1, 0, 0, 0, 2592, 2594, 3, 248, 124, 0, 2593, 2570, 1, 0, 0, 0, 2593, 2574, 1, 0, 0, 0, 2593, 2577, 1, 0, 0, 0, 2593, 2592, 1, 0, 0, 0, 2594, 179, 1, 0, 0, 0, 2595, 2596, 5, 2, 0, 0, 2596, 2597, 3, 182, 91, 0, 2597, 2598, 5, 3, 0, 0, 2598, 181, 1, 0, 0, 0, 2599, 2604, 3, 344, 172, 0, 2600, 2601, 5, 4, 0, 0, 2601, 2603, 3, 344, 172, 0, 2602, 2600, 1, 0, 0, 0, 2603, 2606, 1, 0, 0, 0, 2604, 2602, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 183, 1, 0, 0, 0, 2606, 2604, 1, 0, 0, 0, 2607, 2608, 5, 2, 0, 0, 2608, 2613, 3, 186, 93, 0, 2609, 2610, 5, 4, 0, 0, 2610, 2612, 3, 186, 93, 0, 2611, 2609, 1, 0, 0, 0, 2612, 2615, 1, 0, 0, 0, 2613, 2611, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2613, 1, 0, 0, 0, 2616, 2617, 5, 3, 0, 0, 2617, 185, 1, 0, 0, 0, 2618, 2620, 3, 344, 172, 0, 2619, 2621, 7, 25, 0, 0, 2620, 2619, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 187, 1, 0, 0, 0, 2622, 2623, 5, 2, 0, 0, 2623, 2628, 3, 190, 95, 0, 2624, 2625, 5, 4, 0, 0, 2625, 2627, 3, 190, 95, 0, 2626, 2624, 1, 0, 0, 0, 2627, 2630, 1, 0, 0, 0, 2628, 2626, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2631, 1, 0, 0, 0, 2630, 2628, 1, 0, 0, 0, 2631, 2632, 5, 3, 0, 0, 2632, 189, 1, 0, 0, 0, 2633, 2636, 3, 84, 42, 0, 2634, 2635, 5, 51, 0, 0, 2635, 2637, 3, 358, 179, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 191, 1, 0, 0, 0, 2638, 2642, 3, 72, 36, 0, 2639, 2642, 3, 76, 38, 0, 2640, 2642, 3, 86, 43, 0, 2641, 2638, 1, 0, 0, 0, 2641, 2639, 1, 0, 0, 0, 2641, 2640, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2645, 3, 134, 67, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2648, 3, 176, 88, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 3, 212, 106, 0, 2650, 2670, 1, 0, 0, 0, 2651, 2653, 3, 194, 97, 0, 2652, 2654, 3, 176, 88, 0, 2653, 2652, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 3, 212, 106, 0, 2656, 2670, 1, 0, 0, 0, 2657, 2658, 5, 2, 0, 0, 2658, 2659, 3, 168, 84, 0, 2659, 2661, 5, 3, 0, 0, 2660, 2662, 3, 176, 88, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 3, 212, 106, 0, 2664, 2670, 1, 0, 0, 0, 2665, 2666, 3, 196, 98, 0, 2666, 2667, 3, 212, 106, 0, 2667, 2670, 1, 0, 0, 0, 2668, 2670, 3, 208, 104, 0, 2669, 2641, 1, 0, 0, 0, 2669, 2651, 1, 0, 0, 0, 2669, 2657, 1, 0, 0, 0, 2669, 2665, 1, 0, 0, 0, 2669, 2668, 1, 0, 0, 0, 2670, 193, 1, 0, 0, 0, 2671, 2672, 5, 2, 0, 0, 2672, 2673, 3, 16, 8, 0, 2673, 2674, 5, 3, 0, 0, 2674, 195, 1, 0, 0, 0, 2675, 2676, 5, 333, 0, 0, 2676, 2681, 3, 248, 124, 0, 2677, 2678, 5, 4, 0, 0, 2678, 2680, 3, 248, 124, 0, 2679, 2677, 1, 0, 0, 0, 2680, 2683, 1, 0, 0, 0, 2681, 2679, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 197, 1, 0, 0, 0, 2683, 2681, 1, 0, 0, 0, 2684, 2685, 5, 293, 0, 0, 2685, 2687, 3, 72, 36, 0, 2686, 2688, 3, 200, 100, 0, 2687, 2686, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2704, 1, 0, 0, 0, 2689, 2690, 5, 293, 0, 0, 2690, 2691, 5, 2, 0, 0, 2691, 2692, 3, 72, 36, 0, 2692, 2694, 5, 3, 0, 0, 2693, 2695, 3, 200, 100, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2704, 1, 0, 0, 0, 2696, 2697, 5, 293, 0, 0, 2697, 2698, 5, 2, 0, 0, 2698, 2699, 3, 16, 8, 0, 2699, 2701, 5, 3, 0, 0, 2700, 2702, 3, 200, 100, 0, 2701, 2700, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2704, 1, 0, 0, 0, 2703, 2684, 1, 0, 0, 0, 2703, 2689, 1, 0, 0, 0, 2703, 2696, 1, 0, 0, 0, 2704, 199, 1, 0, 0, 0, 2705, 2706, 5, 346, 0, 0, 2706, 2707, 5, 274, 0, 0, 2707, 2725, 5, 217, 0, 0, 2708, 2709, 7, 35, 0, 0, 2709, 2722, 5, 31, 0, 0, 2710, 2711, 5, 2, 0, 0, 2711, 2716, 3, 248, 124, 0, 2712, 2713, 5, 4, 0, 0, 2713, 2715, 3, 248, 124, 0, 2714, 2712, 1, 0, 0, 0, 2715, 2718, 1, 0, 0, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2719, 1, 0, 0, 0, 2718, 2716, 1, 0, 0, 0, 2719, 2720, 5, 3, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2723, 3, 248, 124, 0, 2722, 2710, 1, 0, 0, 0, 2722, 2721, 1, 0, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2705, 1, 0, 0, 0, 2724, 2708, 1, 0, 0, 0, 2725, 2735, 1, 0, 0, 0, 2726, 2727, 7, 36, 0, 0, 2727, 2733, 5, 31, 0, 0, 2728, 2729, 5, 2, 0, 0, 2729, 2730, 3, 92, 46, 0, 2730, 2731, 5, 3, 0, 0, 2731, 2734, 1, 0, 0, 0, 2732, 2734, 3, 100, 50, 0, 2733, 2728, 1, 0, 0, 0, 2733, 2732, 1, 0, 0, 0, 2734, 2736, 1, 0, 0, 0, 2735, 2726, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 201, 1, 0, 0, 0, 2737, 2738, 3, 348, 174, 0, 2738, 2739, 5, 373, 0, 0, 2739, 2740, 3, 198, 99, 0, 2740, 203, 1, 0, 0, 0, 2741, 2744, 3, 198, 99, 0, 2742, 2744, 3, 202, 101, 0, 2743, 2741, 1, 0, 0, 0, 2743, 2742, 1, 0, 0, 0, 2744, 205, 1, 0, 0, 0, 2745, 2748, 3, 204, 102, 0, 2746, 2748, 3, 252, 126, 0, 2747, 2745, 1, 0, 0, 0, 2747, 2746, 1, 0, 0, 0, 2748, 207, 1, 0, 0, 0, 2749, 2750, 3, 210, 105, 0, 2750, 2751, 3, 212, 106, 0, 2751, 209, 1, 0, 0, 0, 2752, 2753, 3, 338, 169, 0, 2753, 2762, 5, 2, 0, 0, 2754, 2759, 3, 206, 103, 0, 2755, 2756, 5, 4, 0, 0, 2756, 2758, 3, 206, 103, 0, 2757, 2755, 1, 0, 0, 0, 2758, 2761, 1, 0, 0, 0, 2759, 2757, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2763, 1, 0, 0, 0, 2761, 2759, 1, 0, 0, 0, 2762, 2754, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 5, 3, 0, 0, 2765, 211, 1, 0, 0, 0, 2766, 2768, 5, 20, 0, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2771, 3, 350, 175, 0, 2770, 2772, 3, 180, 90, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2774, 1, 0, 0, 0, 2773, 2767, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 213, 1, 0, 0, 0, 2775, 2776, 5, 257, 0, 0, 2776, 2777, 5, 121, 0, 0, 2777, 2778, 5, 266, 0, 0, 2778, 2782, 3, 358, 179, 0, 2779, 2780, 5, 346, 0, 0, 2780, 2781, 5, 267, 0, 0, 2781, 2783, 3, 42, 21, 0, 2782, 2779, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2825, 1, 0, 0, 0, 2784, 2785, 5, 257, 0, 0, 2785, 2786, 5, 121, 0, 0, 2786, 2796, 5, 85, 0, 0, 2787, 2788, 5, 113, 0, 0, 2788, 2789, 5, 299, 0, 0, 2789, 2790, 5, 31, 0, 0, 2790, 2794, 3, 358, 179, 0, 2791, 2792, 5, 101, 0, 0, 2792, 2793, 5, 31, 0, 0, 2793, 2795, 3, 358, 179, 0, 2794, 2791, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 1, 0, 0, 0, 2796, 2787, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2803, 1, 0, 0, 0, 2798, 2799, 5, 48, 0, 0, 2799, 2800, 5, 154, 0, 0, 2800, 2801, 5, 299, 0, 0, 2801, 2802, 5, 31, 0, 0, 2802, 2804, 3, 358, 179, 0, 2803, 2798, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2810, 1, 0, 0, 0, 2805, 2806, 5, 177, 0, 0, 2806, 2807, 5, 156, 0, 0, 2807, 2808, 5, 299, 0, 0, 2808, 2809, 5, 31, 0, 0, 2809, 2811, 3, 358, 179, 0, 2810, 2805, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, 0, 2811, 2816, 1, 0, 0, 0, 2812, 2813, 5, 166, 0, 0, 2813, 2814, 5, 299, 0, 0, 2814, 2815, 5, 31, 0, 0, 2815, 2817, 3, 358, 179, 0, 2816, 2812, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2822, 1, 0, 0, 0, 2818, 2819, 5, 198, 0, 0, 2819, 2820, 5, 83, 0, 0, 2820, 2821, 5, 20, 0, 0, 2821, 2823, 3, 358, 179, 0, 2822, 2818, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2825, 1, 0, 0, 0, 2824, 2775, 1, 0, 0, 0, 2824, 2784, 1, 0, 0, 0, 2825, 215, 1, 0, 0, 0, 2826, 2831, 3, 218, 109, 0, 2827, 2828, 5, 4, 0, 0, 2828, 2830, 3, 218, 109, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2833, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 217, 1, 0, 0, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2839, 3, 344, 172, 0, 2835, 2836, 5, 5, 0, 0, 2836, 2838, 3, 344, 172, 0, 2837, 2835, 1, 0, 0, 0, 2838, 2841, 1, 0, 0, 0, 2839, 2837, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 219, 1, 0, 0, 0, 2841, 2839, 1, 0, 0, 0, 2842, 2847, 3, 222, 111, 0, 2843, 2844, 5, 4, 0, 0, 2844, 2846, 3, 222, 111, 0, 2845, 2843, 1, 0, 0, 0, 2846, 2849, 1, 0, 0, 0, 2847, 2845, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 221, 1, 0, 0, 0, 2849, 2847, 1, 0, 0, 0, 2850, 2853, 3, 218, 109, 0, 2851, 2852, 5, 207, 0, 0, 2852, 2854, 3, 42, 21, 0, 2853, 2851, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 223, 1, 0, 0, 0, 2855, 2856, 3, 344, 172, 0, 2856, 2857, 5, 5, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2855, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2861, 3, 344, 172, 0, 2861, 225, 1, 0, 0, 0, 2862, 2863, 3, 344, 172, 0, 2863, 2864, 5, 5, 0, 0, 2864, 2866, 1, 0, 0, 0, 2865, 2862, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2868, 3, 344, 172, 0, 2868, 227, 1, 0, 0, 0, 2869, 2870, 3, 78, 39, 0, 2870, 229, 1, 0, 0, 0, 2871, 2872, 3, 248, 124, 0, 2872, 231, 1, 0, 0, 0, 2873, 2874, 3, 342, 171, 0, 2874, 2875, 5, 5, 0, 0, 2875, 2877, 1, 0, 0, 0, 2876, 2873, 1, 0, 0, 0, 2877, 2880, 1, 0, 0, 0, 2878, 2876, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2881, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2881, 2882, 5, 363, 0, 0, 2882, 233, 1, 0, 0, 0, 2883, 2887, 3, 232, 116, 0, 2884, 2887, 3, 228, 114, 0, 2885, 2887, 3, 230, 115, 0, 2886, 2883, 1, 0, 0, 0, 2886, 2884, 1, 0, 0, 0, 2886, 2885, 1, 0, 0, 0, 2887, 2895, 1, 0, 0, 0, 2888, 2890, 5, 20, 0, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2894, 3, 344, 172, 0, 2892, 2894, 3, 180, 90, 0, 2893, 2891, 1, 0, 0, 0, 2893, 2892, 1, 0, 0, 0, 2894, 2896, 1, 0, 0, 0, 2895, 2889, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 235, 1, 0, 0, 0, 2897, 2902, 3, 234, 117, 0, 2898, 2899, 5, 4, 0, 0, 2899, 2901, 3, 234, 117, 0, 2900, 2898, 1, 0, 0, 0, 2901, 2904, 1, 0, 0, 0, 2902, 2900, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 237, 1, 0, 0, 0, 2904, 2902, 1, 0, 0, 0, 2905, 2906, 3, 236, 118, 0, 2906, 239, 1, 0, 0, 0, 2907, 2908, 5, 2, 0, 0, 2908, 2913, 3, 242, 121, 0, 2909, 2910, 5, 4, 0, 0, 2910, 2912, 3, 242, 121, 0, 2911, 2909, 1, 0, 0, 0, 2912, 2915, 1, 0, 0, 0, 2913, 2911, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2916, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2916, 2917, 5, 3, 0, 0, 2917, 241, 1, 0, 0, 0, 2918, 2921, 3, 244, 122, 0, 2919, 2921, 3, 314, 157, 0, 2920, 2918, 1, 0, 0, 0, 2920, 2919, 1, 0, 0, 0, 2921, 243, 1, 0, 0, 0, 2922, 2936, 3, 342, 171, 0, 2923, 2924, 3, 348, 174, 0, 2924, 2925, 5, 2, 0, 0, 2925, 2930, 3, 246, 123, 0, 2926, 2927, 5, 4, 0, 0, 2927, 2929, 3, 246, 123, 0, 2928, 2926, 1, 0, 0, 0, 2929, 2932, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2933, 1, 0, 0, 0, 2932, 2930, 1, 0, 0, 0, 2933, 2934, 5, 3, 0, 0, 2934, 2936, 1, 0, 0, 0, 2935, 2922, 1, 0, 0, 0, 2935, 2923, 1, 0, 0, 0, 2936, 245, 1, 0, 0, 0, 2937, 2940, 3, 342, 171, 0, 2938, 2940, 3, 268, 134, 0, 2939, 2937, 1, 0, 0, 0, 2939, 2938, 1, 0, 0, 0, 2940, 247, 1, 0, 0, 0, 2941, 2942, 3, 256, 128, 0, 2942, 249, 1, 0, 0, 0, 2943, 2944, 3, 348, 174, 0, 2944, 2945, 5, 373, 0, 0, 2945, 2946, 3, 248, 124, 0, 2946, 251, 1, 0, 0, 0, 2947, 2950, 3, 248, 124, 0, 2948, 2950, 3, 250, 125, 0, 2949, 2947, 1, 0, 0, 0, 2949, 2948, 1, 0, 0, 0, 2950, 253, 1, 0, 0, 0, 2951, 2956, 3, 248, 124, 0, 2952, 2953, 5, 4, 0, 0, 2953, 2955, 3, 248, 124, 0, 2954, 2952, 1, 0, 0, 0, 2955, 2958, 1, 0, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 255, 1, 0, 0, 0, 2958, 2956, 1, 0, 0, 0, 2959, 2960, 6, 128, -1, 0, 2960, 2961, 7, 37, 0, 0, 2961, 2972, 3, 256, 128, 5, 2962, 2963, 5, 105, 0, 0, 2963, 2964, 5, 2, 0, 0, 2964, 2965, 3, 16, 8, 0, 2965, 2966, 5, 3, 0, 0, 2966, 2972, 1, 0, 0, 0, 2967, 2969, 3, 260, 130, 0, 2968, 2970, 3, 258, 129, 0, 2969, 2968, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 2972, 1, 0, 0, 0, 2971, 2959, 1, 0, 0, 0, 2971, 2962, 1, 0, 0, 0, 2971, 2967, 1, 0, 0, 0, 2972, 2981, 1, 0, 0, 0, 2973, 2974, 10, 2, 0, 0, 2974, 2975, 5, 14, 0, 0, 2975, 2980, 3, 256, 128, 3, 2976, 2977, 10, 1, 0, 0, 2977, 2978, 5, 208, 0, 0, 2978, 2980, 3, 256, 128, 2, 2979, 2973, 1, 0, 0, 0, 2979, 2976, 1, 0, 0, 0, 2980, 2983, 1, 0, 0, 0, 2981, 2979, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 257, 1, 0, 0, 0, 2983, 2981, 1, 0, 0, 0, 2984, 2986, 5, 197, 0, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 5, 24, 0, 0, 2988, 2989, 3, 260, 130, 0, 2989, 2990, 5, 14, 0, 0, 2990, 2991, 3, 260, 130, 0, 2991, 3067, 1, 0, 0, 0, 2992, 2994, 5, 197, 0, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2996, 5, 140, 0, 0, 2996, 2997, 5, 2, 0, 0, 2997, 3002, 3, 248, 124, 0, 2998, 2999, 5, 4, 0, 0, 2999, 3001, 3, 248, 124, 0, 3000, 2998, 1, 0, 0, 0, 3001, 3004, 1, 0, 0, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3005, 1, 0, 0, 0, 3004, 3002, 1, 0, 0, 0, 3005, 3006, 5, 3, 0, 0, 3006, 3067, 1, 0, 0, 0, 3007, 3009, 5, 197, 0, 0, 3008, 3007, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 5, 140, 0, 0, 3011, 3012, 5, 2, 0, 0, 3012, 3013, 3, 16, 8, 0, 3013, 3014, 5, 3, 0, 0, 3014, 3067, 1, 0, 0, 0, 3015, 3017, 5, 197, 0, 0, 3016, 3015, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 7, 38, 0, 0, 3019, 3067, 3, 260, 130, 0, 3020, 3022, 5, 197, 0, 0, 3021, 3020, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 7, 39, 0, 0, 3024, 3038, 7, 40, 0, 0, 3025, 3026, 5, 2, 0, 0, 3026, 3039, 5, 3, 0, 0, 3027, 3028, 5, 2, 0, 0, 3028, 3033, 3, 248, 124, 0, 3029, 3030, 5, 4, 0, 0, 3030, 3032, 3, 248, 124, 0, 3031, 3029, 1, 0, 0, 0, 3032, 3035, 1, 0, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3036, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3036, 3037, 5, 3, 0, 0, 3037, 3039, 1, 0, 0, 0, 3038, 3025, 1, 0, 0, 0, 3038, 3027, 1, 0, 0, 0, 3039, 3067, 1, 0, 0, 0, 3040, 3042, 5, 197, 0, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 7, 39, 0, 0, 3044, 3047, 3, 260, 130, 0, 3045, 3046, 5, 100, 0, 0, 3046, 3048, 3, 358, 179, 0, 3047, 3045, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3067, 1, 0, 0, 0, 3049, 3051, 5, 153, 0, 0, 3050, 3052, 5, 197, 0, 0, 3051, 3050, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3067, 5, 198, 0, 0, 3054, 3056, 5, 153, 0, 0, 3055, 3057, 5, 197, 0, 0, 3056, 3055, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3067, 7, 41, 0, 0, 3059, 3061, 5, 153, 0, 0, 3060, 3062, 5, 197, 0, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3064, 5, 92, 0, 0, 3064, 3065, 5, 123, 0, 0, 3065, 3067, 3, 260, 130, 0, 3066, 2985, 1, 0, 0, 0, 3066, 2993, 1, 0, 0, 0, 3066, 3008, 1, 0, 0, 0, 3066, 3016, 1, 0, 0, 0, 3066, 3021, 1, 0, 0, 0, 3066, 3041, 1, 0, 0, 0, 3066, 3049, 1, 0, 0, 0, 3066, 3054, 1, 0, 0, 0, 3066, 3059, 1, 0, 0, 0, 3067, 259, 1, 0, 0, 0, 3068, 3069, 6, 130, -1, 0, 3069, 3073, 3, 264, 132, 0, 3070, 3071, 7, 42, 0, 0, 3071, 3073, 3, 260, 130, 7, 3072, 3068, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3095, 1, 0, 0, 0, 3074, 3075, 10, 6, 0, 0, 3075, 3076, 7, 43, 0, 0, 3076, 3094, 3, 260, 130, 7, 3077, 3078, 10, 5, 0, 0, 3078, 3079, 7, 44, 0, 0, 3079, 3094, 3, 260, 130, 6, 3080, 3081, 10, 4, 0, 0, 3081, 3082, 5, 367, 0, 0, 3082, 3094, 3, 260, 130, 5, 3083, 3084, 10, 3, 0, 0, 3084, 3085, 5, 370, 0, 0, 3085, 3094, 3, 260, 130, 4, 3086, 3087, 10, 2, 0, 0, 3087, 3088, 5, 368, 0, 0, 3088, 3094, 3, 260, 130, 3, 3089, 3090, 10, 1, 0, 0, 3090, 3091, 3, 270, 135, 0, 3091, 3092, 3, 260, 130, 2, 3092, 3094, 1, 0, 0, 0, 3093, 3074, 1, 0, 0, 0, 3093, 3077, 1, 0, 0, 0, 3093, 3080, 1, 0, 0, 0, 3093, 3083, 1, 0, 0, 0, 3093, 3086, 1, 0, 0, 0, 3093, 3089, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 261, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3099, 7, 45, 0, 0, 3099, 263, 1, 0, 0, 0, 3100, 3101, 6, 132, -1, 0, 3101, 3350, 7, 46, 0, 0, 3102, 3103, 7, 47, 0, 0, 3103, 3106, 5, 2, 0, 0, 3104, 3107, 3, 262, 131, 0, 3105, 3107, 3, 358, 179, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3105, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 5, 4, 0, 0, 3109, 3110, 3, 260, 130, 0, 3110, 3111, 5, 4, 0, 0, 3111, 3112, 3, 260, 130, 0, 3112, 3113, 5, 3, 0, 0, 3113, 3350, 1, 0, 0, 0, 3114, 3115, 7, 48, 0, 0, 3115, 3118, 5, 2, 0, 0, 3116, 3119, 3, 262, 131, 0, 3117, 3119, 3, 358, 179, 0, 3118, 3116, 1, 0, 0, 0, 3118, 3117, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3121, 5, 4, 0, 0, 3121, 3122, 3, 260, 130, 0, 3122, 3123, 5, 4, 0, 0, 3123, 3124, 3, 260, 130, 0, 3124, 3125, 5, 3, 0, 0, 3125, 3350, 1, 0, 0, 0, 3126, 3128, 5, 35, 0, 0, 3127, 3129, 3, 324, 162, 0, 3128, 3127, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3134, 1, 0, 0, 0, 3132, 3133, 5, 97, 0, 0, 3133, 3135, 3, 248, 124, 0, 3134, 3132, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 5, 99, 0, 0, 3137, 3350, 1, 0, 0, 0, 3138, 3139, 5, 35, 0, 0, 3139, 3141, 3, 248, 124, 0, 3140, 3142, 3, 324, 162, 0, 3141, 3140, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3141, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3146, 5, 97, 0, 0, 3146, 3148, 3, 248, 124, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 99, 0, 0, 3150, 3350, 1, 0, 0, 0, 3151, 3152, 7, 49, 0, 0, 3152, 3153, 5, 2, 0, 0, 3153, 3154, 3, 248, 124, 0, 3154, 3155, 5, 20, 0, 0, 3155, 3156, 3, 298, 149, 0, 3156, 3157, 5, 3, 0, 0, 3157, 3350, 1, 0, 0, 0, 3158, 3159, 5, 286, 0, 0, 3159, 3168, 5, 2, 0, 0, 3160, 3165, 3, 234, 117, 0, 3161, 3162, 5, 4, 0, 0, 3162, 3164, 3, 234, 117, 0, 3163, 3161, 1, 0, 0, 0, 3164, 3167, 1, 0, 0, 0, 3165, 3163, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3169, 1, 0, 0, 0, 3167, 3165, 1, 0, 0, 0, 3168, 3160, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3350, 5, 3, 0, 0, 3171, 3172, 5, 116, 0, 0, 3172, 3173, 5, 2, 0, 0, 3173, 3176, 3, 248, 124, 0, 3174, 3175, 5, 138, 0, 0, 3175, 3177, 5, 199, 0, 0, 3176, 3174, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 5, 3, 0, 0, 3179, 3350, 1, 0, 0, 0, 3180, 3181, 5, 17, 0, 0, 3181, 3182, 5, 2, 0, 0, 3182, 3185, 3, 248, 124, 0, 3183, 3184, 5, 138, 0, 0, 3184, 3186, 5, 199, 0, 0, 3185, 3183, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3188, 5, 3, 0, 0, 3188, 3350, 1, 0, 0, 0, 3189, 3190, 5, 157, 0, 0, 3190, 3191, 5, 2, 0, 0, 3191, 3194, 3, 248, 124, 0, 3192, 3193, 5, 138, 0, 0, 3193, 3195, 5, 199, 0, 0, 3194, 3192, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 5, 3, 0, 0, 3197, 3350, 1, 0, 0, 0, 3198, 3199, 5, 225, 0, 0, 3199, 3200, 5, 2, 0, 0, 3200, 3201, 3, 260, 130, 0, 3201, 3202, 5, 140, 0, 0, 3202, 3203, 3, 260, 130, 0, 3203, 3204, 5, 3, 0, 0, 3204, 3350, 1, 0, 0, 0, 3205, 3350, 3, 268, 134, 0, 3206, 3350, 5, 363, 0, 0, 3207, 3208, 3, 342, 171, 0, 3208, 3209, 5, 5, 0, 0, 3209, 3210, 5, 363, 0, 0, 3210, 3350, 1, 0, 0, 0, 3211, 3212, 5, 2, 0, 0, 3212, 3215, 3, 234, 117, 0, 3213, 3214, 5, 4, 0, 0, 3214, 3216, 3, 234, 117, 0, 3215, 3213, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3215, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3220, 5, 3, 0, 0, 3220, 3350, 1, 0, 0, 0, 3221, 3222, 5, 2, 0, 0, 3222, 3223, 3, 16, 8, 0, 3223, 3224, 5, 3, 0, 0, 3224, 3350, 1, 0, 0, 0, 3225, 3226, 5, 136, 0, 0, 3226, 3227, 5, 2, 0, 0, 3227, 3228, 3, 248, 124, 0, 3228, 3229, 5, 3, 0, 0, 3229, 3350, 1, 0, 0, 0, 3230, 3231, 3, 338, 169, 0, 3231, 3243, 5, 2, 0, 0, 3232, 3234, 3, 166, 83, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3240, 3, 252, 126, 0, 3236, 3237, 5, 4, 0, 0, 3237, 3239, 3, 252, 126, 0, 3238, 3236, 1, 0, 0, 0, 3239, 3242, 1, 0, 0, 0, 3240, 3238, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3244, 1, 0, 0, 0, 3242, 3240, 1, 0, 0, 0, 3243, 3233, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3252, 5, 3, 0, 0, 3246, 3247, 5, 114, 0, 0, 3247, 3248, 5, 2, 0, 0, 3248, 3249, 5, 344, 0, 0, 3249, 3250, 3, 256, 128, 0, 3250, 3251, 5, 3, 0, 0, 3251, 3253, 1, 0, 0, 0, 3252, 3246, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3256, 1, 0, 0, 0, 3254, 3255, 7, 50, 0, 0, 3255, 3257, 5, 199, 0, 0, 3256, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3260, 1, 0, 0, 0, 3258, 3259, 5, 213, 0, 0, 3259, 3261, 3, 330, 165, 0, 3260, 3258, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3350, 1, 0, 0, 0, 3262, 3263, 3, 348, 174, 0, 3263, 3264, 5, 372, 0, 0, 3264, 3265, 3, 248, 124, 0, 3265, 3350, 1, 0, 0, 0, 3266, 3267, 5, 2, 0, 0, 3267, 3270, 3, 348, 174, 0, 3268, 3269, 5, 4, 0, 0, 3269, 3271, 3, 348, 174, 0, 3270, 3268, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3270, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3275, 5, 3, 0, 0, 3275, 3276, 5, 372, 0, 0, 3276, 3277, 3, 248, 124, 0, 3277, 3350, 1, 0, 0, 0, 3278, 3350, 3, 80, 40, 0, 3279, 3280, 5, 2, 0, 0, 3280, 3281, 3, 248, 124, 0, 3281, 3282, 5, 3, 0, 0, 3282, 3350, 1, 0, 0, 0, 3283, 3284, 5, 110, 0, 0, 3284, 3285, 5, 2, 0, 0, 3285, 3286, 3, 348, 174, 0, 3286, 3287, 5, 123, 0, 0, 3287, 3288, 3, 260, 130, 0, 3288, 3289, 5, 3, 0, 0, 3289, 3350, 1, 0, 0, 0, 3290, 3291, 7, 51, 0, 0, 3291, 3292, 5, 2, 0, 0, 3292, 3293, 3, 260, 130, 0, 3293, 3294, 7, 52, 0, 0, 3294, 3297, 3, 260, 130, 0, 3295, 3296, 7, 53, 0, 0, 3296, 3298, 3, 260, 130, 0, 3297, 3295, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3300, 5, 3, 0, 0, 3300, 3350, 1, 0, 0, 0, 3301, 3302, 5, 315, 0, 0, 3302, 3304, 5, 2, 0, 0, 3303, 3305, 7, 54, 0, 0, 3304, 3303, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3307, 1, 0, 0, 0, 3306, 3308, 3, 260, 130, 0, 3307, 3306, 1, 0, 0, 0, 3307, 3308, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 5, 123, 0, 0, 3310, 3311, 3, 260, 130, 0, 3311, 3312, 5, 3, 0, 0, 3312, 3350, 1, 0, 0, 0, 3313, 3314, 5, 215, 0, 0, 3314, 3315, 5, 2, 0, 0, 3315, 3316, 3, 260, 130, 0, 3316, 3317, 5, 224, 0, 0, 3317, 3318, 3, 260, 130, 0, 3318, 3319, 5, 123, 0, 0, 3319, 3322, 3, 260, 130, 0, 3320, 3321, 5, 119, 0, 0, 3321, 3323, 3, 260, 130, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3325, 5, 3, 0, 0, 3325, 3350, 1, 0, 0, 0, 3326, 3327, 7, 55, 0, 0, 3327, 3328, 5, 2, 0, 0, 3328, 3329, 3, 260, 130, 0, 3329, 3330, 5, 3, 0, 0, 3330, 3331, 5, 347, 0, 0, 3331, 3332, 5, 130, 0, 0, 3332, 3333, 5, 2, 0, 0, 3333, 3334, 5, 209, 0, 0, 3334, 3335, 5, 31, 0, 0, 3335, 3336, 3, 100, 50, 0, 3336, 3343, 5, 3, 0, 0, 3337, 3338, 5, 114, 0, 0, 3338, 3339, 5, 2, 0, 0, 3339, 3340, 5, 344, 0, 0, 3340, 3341, 3, 256, 128, 0, 3341, 3342, 5, 3, 0, 0, 3342, 3344, 1, 0, 0, 0, 3343, 3337, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3347, 1, 0, 0, 0, 3345, 3346, 5, 213, 0, 0, 3346, 3348, 3, 330, 165, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3350, 1, 0, 0, 0, 3349, 3100, 1, 0, 0, 0, 3349, 3102, 1, 0, 0, 0, 3349, 3114, 1, 0, 0, 0, 3349, 3126, 1, 0, 0, 0, 3349, 3138, 1, 0, 0, 0, 3349, 3151, 1, 0, 0, 0, 3349, 3158, 1, 0, 0, 0, 3349, 3171, 1, 0, 0, 0, 3349, 3180, 1, 0, 0, 0, 3349, 3189, 1, 0, 0, 0, 3349, 3198, 1, 0, 0, 0, 3349, 3205, 1, 0, 0, 0, 3349, 3206, 1, 0, 0, 0, 3349, 3207, 1, 0, 0, 0, 3349, 3211, 1, 0, 0, 0, 3349, 3221, 1, 0, 0, 0, 3349, 3225, 1, 0, 0, 0, 3349, 3230, 1, 0, 0, 0, 3349, 3262, 1, 0, 0, 0, 3349, 3266, 1, 0, 0, 0, 3349, 3278, 1, 0, 0, 0, 3349, 3279, 1, 0, 0, 0, 3349, 3283, 1, 0, 0, 0, 3349, 3290, 1, 0, 0, 0, 3349, 3301, 1, 0, 0, 0, 3349, 3313, 1, 0, 0, 0, 3349, 3326, 1, 0, 0, 0, 3350, 3361, 1, 0, 0, 0, 3351, 3352, 10, 9, 0, 0, 3352, 3353, 5, 6, 0, 0, 3353, 3354, 3, 260, 130, 0, 3354, 3355, 5, 7, 0, 0, 3355, 3360, 1, 0, 0, 0, 3356, 3357, 10, 7, 0, 0, 3357, 3358, 5, 5, 0, 0, 3358, 3360, 3, 348, 174, 0, 3359, 3351, 1, 0, 0, 0, 3359, 3356, 1, 0, 0, 0, 3360, 3363, 1, 0, 0, 0, 3361, 3359, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 265, 1, 0, 0, 0, 3363, 3361, 1, 0, 0, 0, 3364, 3372, 5, 71, 0, 0, 3365, 3372, 5, 303, 0, 0, 3366, 3372, 5, 304, 0, 0, 3367, 3372, 5, 305, 0, 0, 3368, 3372, 5, 149, 0, 0, 3369, 3372, 5, 133, 0, 0, 3370, 3372, 3, 348, 174, 0, 3371, 3364, 1, 0, 0, 0, 3371, 3365, 1, 0, 0, 0, 3371, 3366, 1, 0, 0, 0, 3371, 3367, 1, 0, 0, 0, 3371, 3368, 1, 0, 0, 0, 3371, 3369, 1, 0, 0, 0, 3371, 3370, 1, 0, 0, 0, 3372, 267, 1, 0, 0, 0, 3373, 3389, 5, 198, 0, 0, 3374, 3389, 5, 376, 0, 0, 3375, 3376, 5, 371, 0, 0, 3376, 3389, 3, 348, 174, 0, 3377, 3389, 3, 278, 139, 0, 3378, 3379, 3, 266, 133, 0, 3379, 3380, 3, 358, 179, 0, 3380, 3389, 1, 0, 0, 0, 3381, 3389, 3, 354, 177, 0, 3382, 3389, 3, 276, 138, 0, 3383, 3385, 3, 358, 179, 0, 3384, 3383, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3389, 1, 0, 0, 0, 3388, 3373, 1, 0, 0, 0, 3388, 3374, 1, 0, 0, 0, 3388, 3375, 1, 0, 0, 0, 3388, 3377, 1, 0, 0, 0, 3388, 3378, 1, 0, 0, 0, 3388, 3381, 1, 0, 0, 0, 3388, 3382, 1, 0, 0, 0, 3388, 3384, 1, 0, 0, 0, 3389, 269, 1, 0, 0, 0, 3390, 3391, 7, 56, 0, 0, 3391, 271, 1, 0, 0, 0, 3392, 3393, 7, 57, 0, 0, 3393, 273, 1, 0, 0, 0, 3394, 3395, 7, 58, 0, 0, 3395, 275, 1, 0, 0, 0, 3396, 3397, 7, 59, 0, 0, 3397, 277, 1, 0, 0, 0, 3398, 3401, 5, 149, 0, 0, 3399, 3402, 3, 280, 140, 0, 3400, 3402, 3, 284, 142, 0, 3401, 3399, 1, 0, 0, 0, 3401, 3400, 1, 0, 0, 0, 3402, 279, 1, 0, 0, 0, 3403, 3405, 3, 282, 141, 0, 3404, 3406, 3, 286, 143, 0, 3405, 3404, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 281, 1, 0, 0, 0, 3407, 3408, 3, 288, 144, 0, 3408, 3409, 3, 290, 145, 0, 3409, 3411, 1, 0, 0, 0, 3410, 3407, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3410, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 283, 1, 0, 0, 0, 3414, 3417, 3, 286, 143, 0, 3415, 3418, 3, 282, 141, 0, 3416, 3418, 3, 286, 143, 0, 3417, 3415, 1, 0, 0, 0, 3417, 3416, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 285, 1, 0, 0, 0, 3419, 3420, 3, 288, 144, 0, 3420, 3421, 3, 292, 146, 0, 3421, 3422, 5, 309, 0, 0, 3422, 3423, 3, 292, 146, 0, 3423, 287, 1, 0, 0, 0, 3424, 3426, 7, 60, 0, 0, 3425, 3424, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3430, 1, 0, 0, 0, 3427, 3431, 5, 382, 0, 0, 3428, 3431, 5, 384, 0, 0, 3429, 3431, 3, 358, 179, 0, 3430, 3427, 1, 0, 0, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3429, 1, 0, 0, 0, 3431, 289, 1, 0, 0, 0, 3432, 3433, 7, 61, 0, 0, 3433, 291, 1, 0, 0, 0, 3434, 3435, 7, 62, 0, 0, 3435, 293, 1, 0, 0, 0, 3436, 3440, 5, 116, 0, 0, 3437, 3438, 5, 9, 0, 0, 3438, 3440, 3, 344, 172, 0, 3439, 3436, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 295, 1, 0, 0, 0, 3441, 3472, 5, 27, 0, 0, 3442, 3472, 5, 308, 0, 0, 3443, 3472, 5, 32, 0, 0, 3444, 3472, 5, 276, 0, 0, 3445, 3472, 5, 272, 0, 0, 3446, 3472, 5, 150, 0, 0, 3447, 3472, 5, 151, 0, 0, 3448, 3472, 5, 25, 0, 0, 3449, 3472, 5, 174, 0, 0, 3450, 3472, 5, 117, 0, 0, 3451, 3472, 5, 234, 0, 0, 3452, 3472, 5, 95, 0, 0, 3453, 3472, 5, 71, 0, 0, 3454, 3472, 5, 303, 0, 0, 3455, 3472, 5, 305, 0, 0, 3456, 3472, 5, 304, 0, 0, 3457, 3472, 5, 285, 0, 0, 3458, 3472, 5, 41, 0, 0, 3459, 3472, 5, 40, 0, 0, 3460, 3472, 5, 334, 0, 0, 3461, 3472, 5, 26, 0, 0, 3462, 3472, 5, 80, 0, 0, 3463, 3472, 5, 79, 0, 0, 3464, 3472, 5, 200, 0, 0, 3465, 3472, 5, 340, 0, 0, 3466, 3472, 5, 149, 0, 0, 3467, 3472, 5, 19, 0, 0, 3468, 3472, 5, 286, 0, 0, 3469, 3472, 5, 177, 0, 0, 3470, 3472, 3, 348, 174, 0, 3471, 3441, 1, 0, 0, 0, 3471, 3442, 1, 0, 0, 0, 3471, 3443, 1, 0, 0, 0, 3471, 3444, 1, 0, 0, 0, 3471, 3445, 1, 0, 0, 0, 3471, 3446, 1, 0, 0, 0, 3471, 3447, 1, 0, 0, 0, 3471, 3448, 1, 0, 0, 0, 3471, 3449, 1, 0, 0, 0, 3471, 3450, 1, 0, 0, 0, 3471, 3451, 1, 0, 0, 0, 3471, 3452, 1, 0, 0, 0, 3471, 3453, 1, 0, 0, 0, 3471, 3454, 1, 0, 0, 0, 3471, 3455, 1, 0, 0, 0, 3471, 3456, 1, 0, 0, 0, 3471, 3457, 1, 0, 0, 0, 3471, 3458, 1, 0, 0, 0, 3471, 3459, 1, 0, 0, 0, 3471, 3460, 1, 0, 0, 0, 3471, 3461, 1, 0, 0, 0, 3471, 3462, 1, 0, 0, 0, 3471, 3463, 1, 0, 0, 0, 3471, 3464, 1, 0, 0, 0, 3471, 3465, 1, 0, 0, 0, 3471, 3466, 1, 0, 0, 0, 3471, 3467, 1, 0, 0, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3470, 1, 0, 0, 0, 3472, 297, 1, 0, 0, 0, 3473, 3474, 5, 19, 0, 0, 3474, 3475, 5, 356, 0, 0, 3475, 3476, 3, 298, 149, 0, 3476, 3477, 5, 358, 0, 0, 3477, 3527, 1, 0, 0, 0, 3478, 3479, 5, 177, 0, 0, 3479, 3480, 5, 356, 0, 0, 3480, 3481, 3, 298, 149, 0, 3481, 3482, 5, 4, 0, 0, 3482, 3483, 3, 298, 149, 0, 3483, 3484, 5, 358, 0, 0, 3484, 3527, 1, 0, 0, 0, 3485, 3499, 5, 286, 0, 0, 3486, 3495, 5, 356, 0, 0, 3487, 3492, 3, 322, 161, 0, 3488, 3489, 5, 4, 0, 0, 3489, 3491, 3, 322, 161, 0, 3490, 3488, 1, 0, 0, 0, 3491, 3494, 1, 0, 0, 0, 3492, 3490, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3496, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3495, 3487, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3497, 1, 0, 0, 0, 3497, 3500, 5, 358, 0, 0, 3498, 3500, 5, 354, 0, 0, 3499, 3486, 1, 0, 0, 0, 3499, 3498, 1, 0, 0, 0, 3500, 3527, 1, 0, 0, 0, 3501, 3502, 5, 149, 0, 0, 3502, 3505, 7, 63, 0, 0, 3503, 3504, 5, 309, 0, 0, 3504, 3506, 5, 186, 0, 0, 3505, 3503, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3527, 1, 0, 0, 0, 3507, 3508, 5, 149, 0, 0, 3508, 3511, 7, 64, 0, 0, 3509, 3510, 5, 309, 0, 0, 3510, 3512, 7, 65, 0, 0, 3511, 3509, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3527, 1, 0, 0, 0, 3513, 3524, 3, 296, 148, 0, 3514, 3515, 5, 2, 0, 0, 3515, 3520, 5, 382, 0, 0, 3516, 3517, 5, 4, 0, 0, 3517, 3519, 5, 382, 0, 0, 3518, 3516, 1, 0, 0, 0, 3519, 3522, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3523, 1, 0, 0, 0, 3522, 3520, 1, 0, 0, 0, 3523, 3525, 5, 3, 0, 0, 3524, 3514, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3527, 1, 0, 0, 0, 3526, 3473, 1, 0, 0, 0, 3526, 3478, 1, 0, 0, 0, 3526, 3485, 1, 0, 0, 0, 3526, 3501, 1, 0, 0, 0, 3526, 3507, 1, 0, 0, 0, 3526, 3513, 1, 0, 0, 0, 3527, 299, 1, 0, 0, 0, 3528, 3533, 3, 302, 151, 0, 3529, 3530, 5, 4, 0, 0, 3530, 3532, 3, 302, 151, 0, 3531, 3529, 1, 0, 0, 0, 3532, 3535, 1, 0, 0, 0, 3533, 3531, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 301, 1, 0, 0, 0, 3535, 3533, 1, 0, 0, 0, 3536, 3537, 3, 84, 42, 0, 3537, 3541, 3, 298, 149, 0, 3538, 3540, 3, 308, 154, 0, 3539, 3538, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 303, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3549, 3, 306, 153, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3548, 3, 306, 153, 0, 3547, 3545, 1, 0, 0, 0, 3548, 3551, 1, 0, 0, 0, 3549, 3547, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 305, 1, 0, 0, 0, 3551, 3549, 1, 0, 0, 0, 3552, 3553, 3, 78, 39, 0, 3553, 3557, 3, 298, 149, 0, 3554, 3556, 3, 308, 154, 0, 3555, 3554, 1, 0, 0, 0, 3556, 3559, 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 307, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3561, 5, 197, 0, 0, 3561, 3568, 5, 198, 0, 0, 3562, 3563, 5, 82, 0, 0, 3563, 3568, 3, 248, 124, 0, 3564, 3565, 5, 51, 0, 0, 3565, 3568, 3, 358, 179, 0, 3566, 3568, 3, 294, 147, 0, 3567, 3560, 1, 0, 0, 0, 3567, 3562, 1, 0, 0, 0, 3567, 3564, 1, 0, 0, 0, 3567, 3566, 1, 0, 0, 0, 3568, 309, 1, 0, 0, 0, 3569, 3570, 7, 66, 0, 0, 3570, 3571, 3, 248, 124, 0, 3571, 311, 1, 0, 0, 0, 3572, 3577, 3, 314, 157, 0, 3573, 3574, 5, 4, 0, 0, 3574, 3576, 3, 314, 157, 0, 3575, 3573, 1, 0, 0, 0, 3576, 3579, 1, 0, 0, 0, 3577, 3575, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 313, 1, 0, 0, 0, 3579, 3577, 1, 0, 0, 0, 3580, 3581, 3, 344, 172, 0, 3581, 3584, 3, 298, 149, 0, 3582, 3583, 5, 197, 0, 0, 3583, 3585, 5, 198, 0, 0, 3584, 3582, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3587, 5, 51, 0, 0, 3587, 3589, 3, 358, 179, 0, 3588, 3586, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 315, 1, 0, 0, 0, 3590, 3595, 3, 318, 159, 0, 3591, 3592, 5, 4, 0, 0, 3592, 3594, 3, 318, 159, 0, 3593, 3591, 1, 0, 0, 0, 3594, 3597, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 317, 1, 0, 0, 0, 3597, 3595, 1, 0, 0, 0, 3598, 3599, 3, 84, 42, 0, 3599, 3603, 3, 298, 149, 0, 3600, 3602, 3, 320, 160, 0, 3601, 3600, 1, 0, 0, 0, 3602, 3605, 1, 0, 0, 0, 3603, 3601, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 319, 1, 0, 0, 0, 3605, 3603, 1, 0, 0, 0, 3606, 3607, 5, 197, 0, 0, 3607, 3620, 5, 198, 0, 0, 3608, 3609, 5, 82, 0, 0, 3609, 3620, 3, 248, 124, 0, 3610, 3611, 5, 127, 0, 0, 3611, 3612, 5, 12, 0, 0, 3612, 3613, 5, 20, 0, 0, 3613, 3614, 5, 2, 0, 0, 3614, 3615, 3, 248, 124, 0, 3615, 3616, 5, 3, 0, 0, 3616, 3620, 1, 0, 0, 0, 3617, 3618, 5, 51, 0, 0, 3618, 3620, 3, 358, 179, 0, 3619, 3606, 1, 0, 0, 0, 3619, 3608, 1, 0, 0, 0, 3619, 3610, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3620, 321, 1, 0, 0, 0, 3621, 3623, 3, 348, 174, 0, 3622, 3624, 5, 371, 0, 0, 3623, 3622, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3628, 3, 298, 149, 0, 3626, 3627, 5, 197, 0, 0, 3627, 3629, 5, 198, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 3632, 1, 0, 0, 0, 3630, 3631, 5, 51, 0, 0, 3631, 3633, 3, 358, 179, 0, 3632, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 323, 1, 0, 0, 0, 3634, 3635, 5, 343, 0, 0, 3635, 3636, 3, 248, 124, 0, 3636, 3637, 5, 300, 0, 0, 3637, 3638, 3, 248, 124, 0, 3638, 325, 1, 0, 0, 0, 3639, 3640, 5, 345, 0, 0, 3640, 3641, 3, 344, 172, 0, 3641, 3642, 5, 20, 0, 0, 3642, 3650, 3, 330, 165, 0, 3643, 3644, 5, 4, 0, 0, 3644, 3645, 3, 344, 172, 0, 3645, 3646, 5, 20, 0, 0, 3646, 3647, 3, 330, 165, 0, 3647, 3649, 1, 0, 0, 0, 3648, 3643, 1, 0, 0, 0, 3649, 3652, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 327, 1, 0, 0, 0, 3652, 3650, 1, 0, 0, 0, 3653, 3654, 5, 351, 0, 0, 3654, 3655, 5, 31, 0, 0, 3655, 3656, 3, 82, 41, 0, 3656, 329, 1, 0, 0, 0, 3657, 3697, 3, 344, 172, 0, 3658, 3659, 5, 2, 0, 0, 3659, 3660, 3, 344, 172, 0, 3660, 3661, 5, 3, 0, 0, 3661, 3697, 1, 0, 0, 0, 3662, 3690, 5, 2, 0, 0, 3663, 3664, 5, 44, 0, 0, 3664, 3665, 5, 31, 0, 0, 3665, 3670, 3, 248, 124, 0, 3666, 3667, 5, 4, 0, 0, 3667, 3669, 3, 248, 124, 0, 3668, 3666, 1, 0, 0, 0, 3669, 3672, 1, 0, 0, 0, 3670, 3668, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3691, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3674, 7, 35, 0, 0, 3674, 3675, 5, 31, 0, 0, 3675, 3680, 3, 248, 124, 0, 3676, 3677, 5, 4, 0, 0, 3677, 3679, 3, 248, 124, 0, 3678, 3676, 1, 0, 0, 0, 3679, 3682, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3684, 1, 0, 0, 0, 3682, 3680, 1, 0, 0, 0, 3683, 3673, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3688, 1, 0, 0, 0, 3685, 3686, 7, 36, 0, 0, 3686, 3687, 5, 31, 0, 0, 3687, 3689, 3, 92, 46, 0, 3688, 3685, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3691, 1, 0, 0, 0, 3690, 3663, 1, 0, 0, 0, 3690, 3683, 1, 0, 0, 0, 3691, 3693, 1, 0, 0, 0, 3692, 3694, 3, 332, 166, 0, 3693, 3692, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 1, 0, 0, 0, 3695, 3697, 5, 3, 0, 0, 3696, 3657, 1, 0, 0, 0, 3696, 3658, 1, 0, 0, 0, 3696, 3662, 1, 0, 0, 0, 3697, 331, 1, 0, 0, 0, 3698, 3699, 7, 67, 0, 0, 3699, 3707, 3, 334, 167, 0, 3700, 3701, 7, 67, 0, 0, 3701, 3702, 5, 24, 0, 0, 3702, 3703, 3, 334, 167, 0, 3703, 3704, 5, 14, 0, 0, 3704, 3705, 3, 334, 167, 0, 3705, 3707, 1, 0, 0, 0, 3706, 3698, 1, 0, 0, 0, 3706, 3700, 1, 0, 0, 0, 3707, 333, 1, 0, 0, 0, 3708, 3709, 5, 321, 0, 0, 3709, 3716, 7, 68, 0, 0, 3710, 3711, 5, 62, 0, 0, 3711, 3716, 5, 257, 0, 0, 3712, 3713, 3, 248, 124, 0, 3713, 3714, 7, 68, 0, 0, 3714, 3716, 1, 0, 0, 0, 3715, 3708, 1, 0, 0, 0, 3715, 3710, 1, 0, 0, 0, 3715, 3712, 1, 0, 0, 0, 3716, 335, 1, 0, 0, 0, 3717, 3722, 3, 342, 171, 0, 3718, 3719, 5, 4, 0, 0, 3719, 3721, 3, 342, 171, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 337, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3725, 3726, 5, 136, 0, 0, 3726, 3727, 5, 2, 0, 0, 3727, 3728, 3, 248, 124, 0, 3728, 3729, 5, 3, 0, 0, 3729, 3735, 1, 0, 0, 0, 3730, 3735, 3, 342, 171, 0, 3731, 3735, 5, 114, 0, 0, 3732, 3735, 5, 161, 0, 0, 3733, 3735, 5, 250, 0, 0, 3734, 3725, 1, 0, 0, 0, 3734, 3730, 1, 0, 0, 0, 3734, 3731, 1, 0, 0, 0, 3734, 3732, 1, 0, 0, 0, 3734, 3733, 1, 0, 0, 0, 3735, 339, 1, 0, 0, 0, 3736, 3737, 3, 342, 171, 0, 3737, 341, 1, 0, 0, 0, 3738, 3743, 3, 348, 174, 0, 3739, 3740, 5, 5, 0, 0, 3740, 3742, 3, 348, 174, 0, 3741, 3739, 1, 0, 0, 0, 3742, 3745, 1, 0, 0, 0, 3743, 3741, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 343, 1, 0, 0, 0, 3745, 3743, 1, 0, 0, 0, 3746, 3747, 3, 348, 174, 0, 3747, 3748, 3, 346, 173, 0, 3748, 345, 1, 0, 0, 0, 3749, 3750, 5, 362, 0, 0, 3750, 3752, 3, 348, 174, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3757, 1, 0, 0, 0, 3755, 3757, 1, 0, 0, 0, 3756, 3751, 1, 0, 0, 0, 3756, 3755, 1, 0, 0, 0, 3757, 347, 1, 0, 0, 0, 3758, 3761, 3, 350, 175, 0, 3759, 3761, 3, 362, 181, 0, 3760, 3758, 1, 0, 0, 0, 3760, 3759, 1, 0, 0, 0, 3761, 349, 1, 0, 0, 0, 3762, 3767, 5, 388, 0, 0, 3763, 3767, 3, 352, 176, 0, 3764, 3767, 3, 360, 180, 0, 3765, 3767, 3, 364, 182, 0, 3766, 3762, 1, 0, 0, 0, 3766, 3763, 1, 0, 0, 0, 3766, 3764, 1, 0, 0, 0, 3766, 3765, 1, 0, 0, 0, 3767, 351, 1, 0, 0, 0, 3768, 3769, 7, 69, 0, 0, 3769, 353, 1, 0, 0, 0, 3770, 3772, 5, 362, 0, 0, 3771, 3770, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3774, 7, 70, 0, 0, 3774, 355, 1, 0, 0, 0, 3775, 3776, 5, 319, 0, 0, 3776, 3789, 3, 298, 149, 0, 3777, 3778, 5, 51, 0, 0, 3778, 3789, 3, 358, 179, 0, 3779, 3789, 3, 294, 147, 0, 3780, 3781, 7, 71, 0, 0, 3781, 3782, 5, 197, 0, 0, 3782, 3789, 5, 198, 0, 0, 3783, 3784, 5, 269, 0, 0, 3784, 3785, 5, 82, 0, 0, 3785, 3789, 3, 248, 124, 0, 3786, 3787, 5, 96, 0, 0, 3787, 3789, 5, 82, 0, 0, 3788, 3775, 1, 0, 0, 0, 3788, 3777, 1, 0, 0, 0, 3788, 3779, 1, 0, 0, 0, 3788, 3780, 1, 0, 0, 0, 3788, 3783, 1, 0, 0, 0, 3788, 3786, 1, 0, 0, 0, 3789, 357, 1, 0, 0, 0, 3790, 3791, 7, 72, 0, 0, 3791, 359, 1, 0, 0, 0, 3792, 3793, 7, 73, 0, 0, 3793, 361, 1, 0, 0, 0, 3794, 3795, 7, 74, 0, 0, 3795, 363, 1, 0, 0, 0, 3796, 3797, 7, 75, 0, 0, 3797, 365, 1, 0, 0, 0, 505, 369, 376, 380, 385, 392, 397, 407, 409, 429, 433, 439, 442, 445, 449, 452, 456, 463, 466, 470, 473, 478, 491, 493, 498, 507, 510, 514, 517, 523, 534, 540, 545, 578, 588, 599, 610, 621, 626, 635, 639, 645, 649, 654, 660, 672, 680, 686, 697, 701, 706, 721, 725, 732, 736, 742, 772, 776, 781, 788, 794, 797, 800, 804, 808, 817, 819, 828, 831, 840, 845, 851, 858, 861, 865, 880, 883, 889, 893, 910, 912, 920, 924, 930, 933, 937, 940, 946, 951, 955, 962, 965, 968, 975, 980, 989, 997, 1003, 1006, 1009, 1015, 1019, 1024, 1027, 1031, 1033, 1041, 1049, 1052, 1059, 1062, 1065, 1074, 1079, 1085, 1090, 1093, 1097, 1100, 1104, 1114, 1119, 1132, 1135, 1143, 1149, 1152, 1155, 1160, 1168, 1173, 1179, 1185, 1188, 1195, 1202, 1210, 1222, 1230, 1257, 1260, 1266, 1275, 1284, 1290, 1295, 1300, 1307, 1312, 1317, 1324, 1332, 1335, 1341, 1348, 1352, 1415, 1423, 1430, 1438, 1450, 1455, 1464, 1472, 1477, 1479, 1487, 1492, 1496, 1499, 1507, 1512, 1521, 1526, 1529, 1534, 1538, 1543, 1545, 1550, 1559, 1567, 1573, 1582, 1589, 1598, 1603, 1606, 1631, 1633, 1645, 1652, 1655, 1662, 1666, 1672, 1680, 1687, 1690, 1698, 1709, 1720, 1728, 1734, 1745, 1752, 1759, 1771, 1779, 1785, 1791, 1794, 1810, 1819, 1830, 1835, 1840, 1845, 1850, 1853, 1856, 1860, 1865, 1872, 1880, 1889, 1895, 1901, 1904, 1906, 1914, 1924, 1933, 1937, 1940, 1944, 1948, 1956, 1960, 1963, 1966, 1969, 1973, 1977, 1982, 1986, 1989, 1992, 1995, 1999, 2004, 2008, 2011, 2014, 2017, 2019, 2025, 2032, 2037, 2040, 2043, 2047, 2057, 2061, 2063, 2066, 2070, 2076, 2080, 2091, 2099, 2101, 2108, 2112, 2124, 2131, 2146, 2151, 2158, 2174, 2179, 2192, 2197, 2205, 2211, 2215, 2218, 2221, 2228, 2231, 2237, 2246, 2256, 2271, 2276, 2278, 2283, 2292, 2302, 2307, 2311, 2316, 2323, 2328, 2332, 2335, 2338, 2352, 2365, 2370, 2374, 2377, 2382, 2387, 2391, 2394, 2406, 2417, 2430, 2441, 2446, 2449, 2453, 2456, 2468, 2477, 2480, 2485, 2492, 2495, 2501, 2507, 2509, 2512, 2517, 2521, 2527, 2531, 2534, 2539, 2542, 2547, 2549, 2555, 2560, 2567, 2570, 2588, 2590, 2593, 2604, 2613, 2620, 2628, 2636, 2641, 2644, 2647, 2653, 2661, 2669, 2681, 2687, 2694, 2701, 2703, 2716, 2722, 2724, 2733, 2735, 2743, 2747, 2759, 2762, 2767, 2771, 2773, 2782, 2794, 2796, 2803, 2810, 2816, 2822, 2824, 2831, 2839, 2847, 2853, 2858, 2865, 2878, 2886, 2889, 2893, 2895, 2902, 2913, 2920, 2930, 2935, 2939, 2949, 2956, 2969, 2971, 2979, 2981, 2985, 2993, 3002, 3008, 3016, 3021, 3033, 3038, 3041, 3047, 3051, 3056, 3061, 3066, 3072, 3093, 3095, 3106, 3118, 3130, 3134, 3143, 3147, 3165, 3168, 3176, 3185, 3194, 3217, 3233, 3240, 3243, 3252, 3256, 3260, 3272, 3297, 3304, 3307, 3322, 3343, 3347, 3349, 3359, 3361, 3371, 3386, 3388, 3401, 3405, 3412, 3417, 3425, 3430, 3439, 3471, 3492, 3495, 3499, 3505, 3511, 3520, 3524, 3526, 3533, 3541, 3549, 3557, 3567, 3577, 3584, 3588, 3595, 3603, 3619, 3623, 3628, 3632, 3650, 3670, 3680, 3683, 3688, 3690, 3693, 3696, 3706, 3715, 3722, 3734, 3743, 3753, 3756, 3760, 3766, 3771, 3788] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index 19243be2..5f63187d 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -507,84 +507,92 @@ export class SparkSqlParser extends SQLParserBase { public static readonly RULE_identifierCommentList = 94; public static readonly RULE_identifierComment = 95; public static readonly RULE_relationPrimary = 96; - public static readonly RULE_functionTableSubqueryArgument = 97; - public static readonly RULE_tableArgumentPartitioning = 98; - public static readonly RULE_functionTableNamedArgumentExpression = 99; - public static readonly RULE_functionTableReferenceArgument = 100; - public static readonly RULE_functionTableArgument = 101; - public static readonly RULE_tableAlias = 102; - public static readonly RULE_rowFormat = 103; - public static readonly RULE_multipartIdentifierList = 104; - public static readonly RULE_multipartIdentifier = 105; - public static readonly RULE_multipartIdentifierPropertyList = 106; - public static readonly RULE_multipartIdentifierProperty = 107; - public static readonly RULE_tableIdentifier = 108; - public static readonly RULE_viewIdentifier = 109; - public static readonly RULE_namedExpression = 110; - public static readonly RULE_namedExpressionSeq = 111; - public static readonly RULE_partitionFieldList = 112; - public static readonly RULE_partitionField = 113; - public static readonly RULE_transform = 114; - public static readonly RULE_transformArgument = 115; - public static readonly RULE_expression = 116; - public static readonly RULE_namedArgumentExpression = 117; - public static readonly RULE_functionArgument = 118; - public static readonly RULE_expressionSeq = 119; - public static readonly RULE_booleanExpression = 120; - public static readonly RULE_predicate = 121; - public static readonly RULE_valueExpression = 122; - public static readonly RULE_datetimeUnit = 123; - public static readonly RULE_primaryExpression = 124; - public static readonly RULE_literalType = 125; - public static readonly RULE_constant = 126; - public static readonly RULE_comparisonOperator = 127; - public static readonly RULE_arithmeticOperator = 128; - public static readonly RULE_predicateOperator = 129; - public static readonly RULE_booleanValue = 130; - public static readonly RULE_interval = 131; - public static readonly RULE_errorCapturingMultiUnitsInterval = 132; - public static readonly RULE_multiUnitsInterval = 133; - public static readonly RULE_errorCapturingUnitToUnitInterval = 134; - public static readonly RULE_unitToUnitInterval = 135; - public static readonly RULE_intervalValue = 136; - public static readonly RULE_unitInMultiUnits = 137; - public static readonly RULE_unitInUnitToUnit = 138; - public static readonly RULE_colPosition = 139; - public static readonly RULE_type = 140; - public static readonly RULE_dataType = 141; - public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 142; - public static readonly RULE_qualifiedColTypeWithPositionForAdd = 143; - public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 144; - public static readonly RULE_qualifiedColTypeWithPositionForReplace = 145; - public static readonly RULE_colDefinitionDescriptorWithPosition = 146; - public static readonly RULE_variableDefaultExpression = 147; - public static readonly RULE_colTypeList = 148; - public static readonly RULE_columnType = 149; - public static readonly RULE_createOrReplaceTableColTypeList = 150; - public static readonly RULE_createOrReplaceTableColType = 151; - public static readonly RULE_colDefinitionOption = 152; - public static readonly RULE_complexColType = 153; - public static readonly RULE_whenClause = 154; - public static readonly RULE_windowClause = 155; - public static readonly RULE_zOrderClause = 156; - public static readonly RULE_windowSpec = 157; - public static readonly RULE_windowFrame = 158; - public static readonly RULE_frameBound = 159; - public static readonly RULE_qualifiedNameList = 160; - public static readonly RULE_functionName = 161; - public static readonly RULE_functionNameCreate = 162; - public static readonly RULE_qualifiedName = 163; - public static readonly RULE_errorCapturingIdentifier = 164; - public static readonly RULE_errorCapturingIdentifierExtra = 165; - public static readonly RULE_identifier = 166; - public static readonly RULE_strictIdentifier = 167; - public static readonly RULE_quotedIdentifier = 168; - public static readonly RULE_number = 169; - public static readonly RULE_alterColumnAction = 170; - public static readonly RULE_stringLit = 171; - public static readonly RULE_ansiNonReserved = 172; - public static readonly RULE_strictNonReserved = 173; - public static readonly RULE_nonReserved = 174; + public static readonly RULE_atomSubQueryTableSource = 97; + public static readonly RULE_inlineTable = 98; + public static readonly RULE_functionTableSubqueryArgument = 99; + public static readonly RULE_tableArgumentPartitioning = 100; + public static readonly RULE_functionTableNamedArgumentExpression = 101; + public static readonly RULE_functionTableReferenceArgument = 102; + public static readonly RULE_functionTableArgument = 103; + public static readonly RULE_functionTable = 104; + public static readonly RULE_atomFunctionTable = 105; + public static readonly RULE_tableAlias = 106; + public static readonly RULE_rowFormat = 107; + public static readonly RULE_multipartIdentifierList = 108; + public static readonly RULE_multipartIdentifier = 109; + public static readonly RULE_multipartIdentifierPropertyList = 110; + public static readonly RULE_multipartIdentifierProperty = 111; + public static readonly RULE_tableIdentifier = 112; + public static readonly RULE_viewIdentifier = 113; + public static readonly RULE_selectLiteralColumnName = 114; + public static readonly RULE_selectExpressionColumnName = 115; + public static readonly RULE_tableAllColumns = 116; + public static readonly RULE_namedExpression = 117; + public static readonly RULE_namedExpressionSeq = 118; + public static readonly RULE_selectList = 119; + public static readonly RULE_partitionFieldList = 120; + public static readonly RULE_partitionField = 121; + public static readonly RULE_transform = 122; + public static readonly RULE_transformArgument = 123; + public static readonly RULE_expression = 124; + public static readonly RULE_namedArgumentExpression = 125; + public static readonly RULE_functionArgument = 126; + public static readonly RULE_expressionSeq = 127; + public static readonly RULE_booleanExpression = 128; + public static readonly RULE_predicate = 129; + public static readonly RULE_valueExpression = 130; + public static readonly RULE_datetimeUnit = 131; + public static readonly RULE_primaryExpression = 132; + public static readonly RULE_literalType = 133; + public static readonly RULE_constant = 134; + public static readonly RULE_comparisonOperator = 135; + public static readonly RULE_arithmeticOperator = 136; + public static readonly RULE_predicateOperator = 137; + public static readonly RULE_booleanValue = 138; + public static readonly RULE_interval = 139; + public static readonly RULE_errorCapturingMultiUnitsInterval = 140; + public static readonly RULE_multiUnitsInterval = 141; + public static readonly RULE_errorCapturingUnitToUnitInterval = 142; + public static readonly RULE_unitToUnitInterval = 143; + public static readonly RULE_intervalValue = 144; + public static readonly RULE_unitInMultiUnits = 145; + public static readonly RULE_unitInUnitToUnit = 146; + public static readonly RULE_colPosition = 147; + public static readonly RULE_type = 148; + public static readonly RULE_dataType = 149; + public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 150; + public static readonly RULE_qualifiedColTypeWithPositionForAdd = 151; + public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 152; + public static readonly RULE_qualifiedColTypeWithPositionForReplace = 153; + public static readonly RULE_colDefinitionDescriptorWithPosition = 154; + public static readonly RULE_variableDefaultExpression = 155; + public static readonly RULE_colTypeList = 156; + public static readonly RULE_columnType = 157; + public static readonly RULE_createOrReplaceTableColTypeList = 158; + public static readonly RULE_createOrReplaceTableColType = 159; + public static readonly RULE_colDefinitionOption = 160; + public static readonly RULE_complexColType = 161; + public static readonly RULE_whenClause = 162; + public static readonly RULE_windowClause = 163; + public static readonly RULE_zOrderClause = 164; + public static readonly RULE_windowSpec = 165; + public static readonly RULE_windowFrame = 166; + public static readonly RULE_frameBound = 167; + public static readonly RULE_qualifiedNameList = 168; + public static readonly RULE_functionName = 169; + public static readonly RULE_functionNameCreate = 170; + public static readonly RULE_qualifiedName = 171; + public static readonly RULE_errorCapturingIdentifier = 172; + public static readonly RULE_errorCapturingIdentifierExtra = 173; + public static readonly RULE_identifier = 174; + public static readonly RULE_strictIdentifier = 175; + public static readonly RULE_quotedIdentifier = 176; + public static readonly RULE_number = 177; + public static readonly RULE_alterColumnAction = 178; + public static readonly RULE_stringLit = 179; + public static readonly RULE_ansiNonReserved = 180; + public static readonly RULE_strictNonReserved = 181; + public static readonly RULE_nonReserved = 182; public static readonly literalNames = [ null, "';'", "'('", "')'", "','", "'.'", "'['", "']'", "'ADD'", @@ -757,11 +765,14 @@ export class SparkSqlParser extends SQLParserBase { "joinRelation", "joinType", "joinCriteria", "sample", "sampleMethod", "identifierList", "identifierSeq", "orderedIdentifierList", "orderedIdentifier", "identifierCommentList", "identifierComment", "relationPrimary", - "functionTableSubqueryArgument", "tableArgumentPartitioning", "functionTableNamedArgumentExpression", - "functionTableReferenceArgument", "functionTableArgument", "tableAlias", - "rowFormat", "multipartIdentifierList", "multipartIdentifier", "multipartIdentifierPropertyList", - "multipartIdentifierProperty", "tableIdentifier", "viewIdentifier", - "namedExpression", "namedExpressionSeq", "partitionFieldList", "partitionField", + "atomSubQueryTableSource", "inlineTable", "functionTableSubqueryArgument", + "tableArgumentPartitioning", "functionTableNamedArgumentExpression", + "functionTableReferenceArgument", "functionTableArgument", "functionTable", + "atomFunctionTable", "tableAlias", "rowFormat", "multipartIdentifierList", + "multipartIdentifier", "multipartIdentifierPropertyList", "multipartIdentifierProperty", + "tableIdentifier", "viewIdentifier", "selectLiteralColumnName", + "selectExpressionColumnName", "tableAllColumns", "namedExpression", + "namedExpressionSeq", "selectList", "partitionFieldList", "partitionField", "transform", "transformArgument", "expression", "namedArgumentExpression", "functionArgument", "expressionSeq", "booleanExpression", "predicate", "valueExpression", "datetimeUnit", "primaryExpression", "literalType", @@ -803,21 +814,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 353; + this.state = 369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 10500) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 67896321) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & 100696297) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 16842817) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 2102291) !== 0) || _la === 205 || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 2181171413) !== 0) || ((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 1048833) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 536949281) !== 0)) { { { - this.state = 350; + this.state = 366; this.singleStatement(); } } - this.state = 355; + this.state = 371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 356; + this.state = 372; this.match(SparkSqlParser.EOF); } } @@ -842,14 +853,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 358; + this.state = 374; this.statement(); - this.state = 360; + this.state = 376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 359; + this.state = 375; this.match(SparkSqlParser.SEMICOLON); } } @@ -876,14 +887,14 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1319; + this.state = 1335; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 362; + this.state = 378; this.query(); } break; @@ -891,17 +902,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DmlStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 364; + this.state = 380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 363; + this.state = 379; this.ctes(); } } - this.state = 366; + this.state = 382; this.dmlStatementNoWith(); } break; @@ -909,19 +920,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UseNamespaceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 367; + this.state = 383; this.match(SparkSqlParser.KW_USE); - this.state = 369; + this.state = 385; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: { - this.state = 368; + this.state = 384; this.namespace(); } break; } - this.state = 371; + this.state = 387; this.namespaceName(); } break; @@ -929,22 +940,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 372; + this.state = 388; this.match(SparkSqlParser.KW_SET); - this.state = 373; + this.state = 389; this.match(SparkSqlParser.KW_CATALOG); - this.state = 376; + this.state = 392; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 374; + this.state = 390; this.identifier(); } break; case 2: { - this.state = 375; + this.state = 391; this.stringLit(); } break; @@ -955,37 +966,37 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateNamespaceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 378; + this.state = 394; this.match(SparkSqlParser.KW_CREATE); - this.state = 379; + this.state = 395; this.namespace(); - this.state = 381; + this.state = 397; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: { - this.state = 380; + this.state = 396; this.ifNotExists(); } break; } - this.state = 383; + this.state = 399; this.namespaceNameCreate(); - this.state = 393; + this.state = 409; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 391; + this.state = 407; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { { - this.state = 384; + this.state = 400; this.match(SparkSqlParser.KW_COMMENT); - this.state = 385; + this.state = 401; (localContext as CreateNamespaceContext)._comment = this.stringLit(); } } @@ -993,9 +1004,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_LOCATION: { { - this.state = 386; + this.state = 402; this.match(SparkSqlParser.KW_LOCATION); - this.state = 387; + this.state = 403; this.stringLit(); } } @@ -1003,9 +1014,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WITH: { { - this.state = 388; + this.state = 404; this.match(SparkSqlParser.KW_WITH); - this.state = 389; + this.state = 405; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1014,7 +1025,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 390; + this.state = 406; this.propertyList(); } } @@ -1024,7 +1035,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 395; + this.state = 411; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); } @@ -1034,15 +1045,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespacePropertiesContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 396; + this.state = 412; this.match(SparkSqlParser.KW_ALTER); - this.state = 397; + this.state = 413; this.namespace(); - this.state = 398; + this.state = 414; this.namespaceName(); - this.state = 399; + this.state = 415; this.match(SparkSqlParser.KW_SET); - this.state = 400; + this.state = 416; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1051,7 +1062,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 401; + this.state = 417; this.propertyList(); } break; @@ -1059,17 +1070,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespaceLocationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 403; + this.state = 419; this.match(SparkSqlParser.KW_ALTER); - this.state = 404; + this.state = 420; this.namespace(); - this.state = 405; + this.state = 421; this.namespaceName(); - this.state = 406; + this.state = 422; this.match(SparkSqlParser.KW_SET); - this.state = 407; + this.state = 423; this.match(SparkSqlParser.KW_LOCATION); - this.state = 408; + this.state = 424; this.stringLit(); } break; @@ -1077,28 +1088,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropNamespaceContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 410; + this.state = 426; this.match(SparkSqlParser.KW_DROP); - this.state = 411; + this.state = 427; this.namespace(); - this.state = 413; + this.state = 429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 412; + this.state = 428; this.ifExists(); } break; } - this.state = 415; + this.state = 431; this.namespaceName(); - this.state = 417; + this.state = 433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 247) { { - this.state = 416; + this.state = 432; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -1116,9 +1127,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowNamespacesContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 419; + this.state = 435; this.match(SparkSqlParser.KW_SHOW); - this.state = 420; + this.state = 436; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 191 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -1127,12 +1138,12 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 423; + this.state = 439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 421; + this.state = 437; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1141,27 +1152,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 422; + this.state = 438; this.multipartIdentifier(); } break; } - this.state = 429; + this.state = 445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 426; + this.state = 442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 425; + this.state = 441; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 428; + this.state = 444; (localContext as ShowNamespacesContext)._pattern = this.stringLit(); } } @@ -1172,84 +1183,84 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 431; + this.state = 447; this.match(SparkSqlParser.KW_CREATE); - this.state = 433; + this.state = 449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 432; + this.state = 448; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 436; + this.state = 452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 435; + this.state = 451; this.match(SparkSqlParser.KW_EXTERNAL); } } - this.state = 438; + this.state = 454; this.match(SparkSqlParser.KW_TABLE); - this.state = 440; + this.state = 456; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 439; + this.state = 455; this.ifNotExists(); } break; } - this.state = 442; + this.state = 458; this.tableNameCreate(); - this.state = 447; + this.state = 463; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 443; + this.state = 459; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 444; + this.state = 460; this.createOrReplaceTableColTypeList(); - this.state = 445; + this.state = 461; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 450; + this.state = 466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 449; + this.state = 465; this.tableProvider(); } } - this.state = 452; + this.state = 468; this.createTableClauses(); - this.state = 457; + this.state = 473; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 454; + this.state = 470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 453; + this.state = 469; this.match(SparkSqlParser.KW_AS); } } - this.state = 456; + this.state = 472; this.query(); } break; @@ -1260,58 +1271,58 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableLikeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 459; + this.state = 475; this.match(SparkSqlParser.KW_CREATE); - this.state = 460; + this.state = 476; this.match(SparkSqlParser.KW_TABLE); - this.state = 462; + this.state = 478; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 461; + this.state = 477; this.ifNotExists(); } break; } - this.state = 464; + this.state = 480; (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); - this.state = 465; + this.state = 481; this.match(SparkSqlParser.KW_LIKE); - this.state = 466; + this.state = 482; (localContext as CreateTableLikeContext)._source = this.tableName(); - this.state = 477; + this.state = 493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 162 || _la === 170 || _la === 257 || _la === 283 || _la === 297 || _la === 332) { { - this.state = 475; + this.state = 491; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_USING: { - this.state = 467; + this.state = 483; this.tableProvider(); } break; case SparkSqlParser.KW_ROW: { - this.state = 468; + this.state = 484; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 469; + this.state = 485; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { { - this.state = 470; + this.state = 486; this.match(SparkSqlParser.KW_LOCATION); - this.state = 471; + this.state = 487; this.stringLit(); } } @@ -1319,16 +1330,16 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 472; + this.state = 488; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 473; + this.state = 489; (localContext as CreateTableLikeContext)._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 474; + this.state = 490; this.tableLifecycle(); } break; @@ -1336,7 +1347,7 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 479; + this.state = 495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1346,66 +1357,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ReplaceTableContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 482; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 480; + this.state = 496; this.match(SparkSqlParser.KW_CREATE); - this.state = 481; + this.state = 497; this.match(SparkSqlParser.KW_OR); } } - this.state = 484; + this.state = 500; this.match(SparkSqlParser.KW_REPLACE); - this.state = 485; + this.state = 501; this.match(SparkSqlParser.KW_TABLE); - this.state = 486; + this.state = 502; this.tableNameCreate(); - this.state = 491; + this.state = 507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 487; + this.state = 503; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 488; + this.state = 504; this.createOrReplaceTableColTypeList(); - this.state = 489; + this.state = 505; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 494; + this.state = 510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 493; + this.state = 509; this.tableProvider(); } } - this.state = 496; + this.state = 512; this.createTableClauses(); - this.state = 501; + this.state = 517; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 498; + this.state = 514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 497; + this.state = 513; this.match(SparkSqlParser.KW_AS); } } - this.state = 500; + this.state = 516; this.query(); } break; @@ -1416,52 +1427,52 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 503; + this.state = 519; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 504; + this.state = 520; this.match(SparkSqlParser.KW_TABLE); - this.state = 505; + this.state = 521; this.tableName(); - this.state = 507; + this.state = 523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 506; + this.state = 522; this.partitionSpec(); } } - this.state = 509; + this.state = 525; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 510; + this.state = 526; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 518; + this.state = 534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 511; + this.state = 527; this.match(SparkSqlParser.KW_NOSCAN); } break; case 2: { - this.state = 512; + this.state = 528; this.match(SparkSqlParser.KW_FOR); - this.state = 513; + this.state = 529; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 514; + this.state = 530; this.columnNameSeq(); } break; case 3: { - this.state = 515; + this.state = 531; this.match(SparkSqlParser.KW_FOR); - this.state = 516; + this.state = 532; this.match(SparkSqlParser.KW_ALL); - this.state = 517; + this.state = 533; this.match(SparkSqlParser.KW_COLUMNS); } break; @@ -1472,16 +1483,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeTablesContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 520; + this.state = 536; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 521; + this.state = 537; this.match(SparkSqlParser.KW_TABLES); - this.state = 524; + this.state = 540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 522; + this.state = 538; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1490,21 +1501,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 523; + this.state = 539; this.namespaceName(); } } - this.state = 526; + this.state = 542; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 527; + this.state = 543; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 529; + this.state = 545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 528; + this.state = 544; this.match(SparkSqlParser.KW_NOSCAN); } } @@ -1515,17 +1526,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 531; + this.state = 547; this.match(SparkSqlParser.KW_ALTER); - this.state = 532; + this.state = 548; this.match(SparkSqlParser.KW_TABLE); - this.state = 533; + this.state = 549; this.tableName(); - this.state = 534; + this.state = 550; this.match(SparkSqlParser.KW_ADD); - this.state = 535; + this.state = 551; this.match(SparkSqlParser.KW_COLUMN); - this.state = 536; + this.state = 552; this.qualifiedColTypeWithPositionForAdd(); } break; @@ -1533,21 +1544,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnsContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 538; + this.state = 554; this.match(SparkSqlParser.KW_ALTER); - this.state = 539; + this.state = 555; this.match(SparkSqlParser.KW_TABLE); - this.state = 540; + this.state = 556; this.tableName(); - this.state = 541; + this.state = 557; this.match(SparkSqlParser.KW_ADD); - this.state = 542; + this.state = 558; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 543; + this.state = 559; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 544; + this.state = 560; this.qualifiedColTypeWithPositionSeqForAdd(); - this.state = 545; + this.state = 561; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1555,21 +1566,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 547; + this.state = 563; this.match(SparkSqlParser.KW_ALTER); - this.state = 548; + this.state = 564; this.match(SparkSqlParser.KW_TABLE); - this.state = 549; + this.state = 565; (localContext as RenameTableColumnContext)._table = this.tableName(); - this.state = 550; + this.state = 566; this.match(SparkSqlParser.KW_RENAME); - this.state = 551; + this.state = 567; this.match(SparkSqlParser.KW_COLUMN); - this.state = 552; + this.state = 568; this.columnName(); - this.state = 553; + this.state = 569; this.match(SparkSqlParser.KW_TO); - this.state = 554; + this.state = 570; this.columnNameCreate(); } break; @@ -1577,27 +1588,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableDropColumnContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 556; + this.state = 572; this.match(SparkSqlParser.KW_ALTER); - this.state = 557; + this.state = 573; this.match(SparkSqlParser.KW_TABLE); - this.state = 558; + this.state = 574; this.tableName(); - this.state = 559; + this.state = 575; this.match(SparkSqlParser.KW_DROP); - this.state = 560; + this.state = 576; this.match(SparkSqlParser.KW_COLUMN); - this.state = 562; + this.state = 578; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 561; + this.state = 577; this.ifExists(); } break; } - this.state = 564; + this.state = 580; this.columnName(); } break; @@ -1605,31 +1616,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableColumnsContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 566; + this.state = 582; this.match(SparkSqlParser.KW_ALTER); - this.state = 567; + this.state = 583; this.match(SparkSqlParser.KW_TABLE); - this.state = 568; + this.state = 584; this.tableName(); - this.state = 569; + this.state = 585; this.match(SparkSqlParser.KW_DROP); - this.state = 570; + this.state = 586; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 572; + this.state = 588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 571; + this.state = 587; this.ifExists(); } } - this.state = 574; + this.state = 590; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 575; + this.state = 591; this.columnNameSeq(); - this.state = 576; + this.state = 592; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1637,35 +1648,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 578; + this.state = 594; this.match(SparkSqlParser.KW_ALTER); - this.state = 583; + this.state = 599; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 579; + this.state = 595; this.match(SparkSqlParser.KW_TABLE); - this.state = 580; + this.state = 596; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 581; + this.state = 597; this.match(SparkSqlParser.KW_VIEW); - this.state = 582; + this.state = 598; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 585; + this.state = 601; this.match(SparkSqlParser.KW_RENAME); - this.state = 586; + this.state = 602; this.match(SparkSqlParser.KW_TO); - this.state = 587; + this.state = 603; this.multipartIdentifier(); } break; @@ -1673,35 +1684,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 589; + this.state = 605; this.match(SparkSqlParser.KW_ALTER); - this.state = 594; + this.state = 610; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 590; + this.state = 606; this.match(SparkSqlParser.KW_TABLE); - this.state = 591; + this.state = 607; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 592; + this.state = 608; this.match(SparkSqlParser.KW_VIEW); - this.state = 593; + this.state = 609; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 596; + this.state = 612; this.match(SparkSqlParser.KW_SET); - this.state = 597; + this.state = 613; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 598; + this.state = 614; this.propertyList(); } break; @@ -1709,45 +1720,45 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 600; + this.state = 616; this.match(SparkSqlParser.KW_ALTER); - this.state = 605; + this.state = 621; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 601; + this.state = 617; this.match(SparkSqlParser.KW_TABLE); - this.state = 602; + this.state = 618; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 603; + this.state = 619; this.match(SparkSqlParser.KW_VIEW); - this.state = 604; + this.state = 620; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 607; + this.state = 623; this.match(SparkSqlParser.KW_UNSET); - this.state = 608; + this.state = 624; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 610; + this.state = 626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 609; + this.state = 625; this.ifExists(); } } - this.state = 612; + this.state = 628; this.propertyList(); } break; @@ -1755,13 +1766,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAlterColumnContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 614; + this.state = 630; this.match(SparkSqlParser.KW_ALTER); - this.state = 615; + this.state = 631; this.match(SparkSqlParser.KW_TABLE); - this.state = 616; + this.state = 632; (localContext as AlterTableAlterColumnContext)._table = this.tableName(); - this.state = 617; + this.state = 633; _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 39)) { this.errorHandler.recoverInline(this); @@ -1770,24 +1781,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 619; + this.state = 635; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 618; + this.state = 634; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 621; + this.state = 637; (localContext as AlterTableAlterColumnContext)._column = this.columnName(); - this.state = 623; + this.state = 639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 622; + this.state = 638; this.alterColumnAction(); } break; @@ -1798,44 +1809,44 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveChangeColumnContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 625; + this.state = 641; this.match(SparkSqlParser.KW_ALTER); - this.state = 626; + this.state = 642; this.match(SparkSqlParser.KW_TABLE); - this.state = 627; + this.state = 643; (localContext as HiveChangeColumnContext)._table = this.tableName(); - this.state = 629; + this.state = 645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 628; + this.state = 644; this.partitionSpec(); } } - this.state = 631; + this.state = 647; this.match(SparkSqlParser.KW_CHANGE); - this.state = 633; + this.state = 649; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 632; + this.state = 648; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 635; + this.state = 651; (localContext as HiveChangeColumnContext)._colName = this.columnName(); - this.state = 636; + this.state = 652; this.columnType(); - this.state = 638; + this.state = 654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 116) { { - this.state = 637; + this.state = 653; this.colPosition(); } } @@ -1846,31 +1857,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveReplaceColumnsContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 640; + this.state = 656; this.match(SparkSqlParser.KW_ALTER); - this.state = 641; + this.state = 657; this.match(SparkSqlParser.KW_TABLE); - this.state = 642; + this.state = 658; (localContext as HiveReplaceColumnsContext)._table = this.tableName(); - this.state = 644; + this.state = 660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 643; + this.state = 659; this.partitionSpec(); } } - this.state = 646; + this.state = 662; this.match(SparkSqlParser.KW_REPLACE); - this.state = 647; + this.state = 663; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 648; + this.state = 664; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 649; + this.state = 665; this.qualifiedColTypeWithPositionSeqForReplace(); - this.state = 650; + this.state = 666; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1878,38 +1889,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDeContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 652; + this.state = 668; this.match(SparkSqlParser.KW_ALTER); - this.state = 653; + this.state = 669; this.match(SparkSqlParser.KW_TABLE); - this.state = 654; + this.state = 670; this.tableName(); - this.state = 656; + this.state = 672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 655; + this.state = 671; this.partitionSpec(); } } - this.state = 658; + this.state = 674; this.match(SparkSqlParser.KW_SET); - this.state = 659; + this.state = 675; this.match(SparkSqlParser.KW_SERDE); - this.state = 660; + this.state = 676; this.stringLit(); - this.state = 664; + this.state = 680; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: { - this.state = 661; + this.state = 677; this.match(SparkSqlParser.KW_WITH); - this.state = 662; + this.state = 678; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 663; + this.state = 679; this.propertyList(); } break; @@ -1920,27 +1931,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDePropertiesContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 666; + this.state = 682; this.match(SparkSqlParser.KW_ALTER); - this.state = 667; + this.state = 683; this.match(SparkSqlParser.KW_TABLE); - this.state = 668; + this.state = 684; this.tableName(); - this.state = 670; + this.state = 686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 669; + this.state = 685; this.partitionSpec(); } } - this.state = 672; + this.state = 688; this.match(SparkSqlParser.KW_SET); - this.state = 673; + this.state = 689; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 674; + this.state = 690; this.propertyList(); } break; @@ -1948,53 +1959,53 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AddTablePartitionContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 676; + this.state = 692; this.match(SparkSqlParser.KW_ALTER); - this.state = 681; + this.state = 697; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 677; + this.state = 693; this.match(SparkSqlParser.KW_TABLE); - this.state = 678; + this.state = 694; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 679; + this.state = 695; this.match(SparkSqlParser.KW_VIEW); - this.state = 680; + this.state = 696; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 683; + this.state = 699; this.match(SparkSqlParser.KW_ADD); - this.state = 685; + this.state = 701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 684; + this.state = 700; this.ifNotExists(); } } - this.state = 688; + this.state = 704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 687; + this.state = 703; this.partitionSpecLocation(); } } - this.state = 690; + this.state = 706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 217); @@ -2004,19 +2015,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTablePartitionContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 692; + this.state = 708; this.match(SparkSqlParser.KW_ALTER); - this.state = 693; + this.state = 709; this.match(SparkSqlParser.KW_TABLE); - this.state = 694; + this.state = 710; this.tableName(); - this.state = 695; + this.state = 711; this.partitionSpec(); - this.state = 696; + this.state = 712; this.match(SparkSqlParser.KW_RENAME); - this.state = 697; + this.state = 713; this.match(SparkSqlParser.KW_TO); - this.state = 698; + this.state = 714; this.partitionSpec(); } break; @@ -2024,66 +2035,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTablePartitionsContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 700; + this.state = 716; this.match(SparkSqlParser.KW_ALTER); - this.state = 705; + this.state = 721; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 701; + this.state = 717; this.match(SparkSqlParser.KW_TABLE); - this.state = 702; + this.state = 718; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 703; + this.state = 719; this.match(SparkSqlParser.KW_VIEW); - this.state = 704; + this.state = 720; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 707; + this.state = 723; this.match(SparkSqlParser.KW_DROP); - this.state = 709; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 708; + this.state = 724; this.ifExists(); } } - this.state = 711; + this.state = 727; this.partitionSpec(); - this.state = 716; + this.state = 732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 712; + this.state = 728; this.match(SparkSqlParser.COMMA); - this.state = 713; + this.state = 729; this.partitionSpec(); } } - this.state = 718; + this.state = 734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 720; + this.state = 736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 719; + this.state = 735; this.match(SparkSqlParser.KW_PURGE); } } @@ -2094,27 +2105,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableLocationContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 722; + this.state = 738; this.match(SparkSqlParser.KW_ALTER); - this.state = 723; + this.state = 739; this.match(SparkSqlParser.KW_TABLE); - this.state = 724; + this.state = 740; this.tableName(); - this.state = 726; + this.state = 742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 725; + this.state = 741; this.partitionSpec(); } } - this.state = 728; + this.state = 744; this.match(SparkSqlParser.KW_SET); - this.state = 729; + this.state = 745; this.match(SparkSqlParser.KW_LOCATION); - this.state = 730; + this.state = 746; this.stringLit(); } break; @@ -2122,15 +2133,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RecoverPartitionsContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 732; + this.state = 748; this.match(SparkSqlParser.KW_ALTER); - this.state = 733; + this.state = 749; this.match(SparkSqlParser.KW_TABLE); - this.state = 734; + this.state = 750; this.tableName(); - this.state = 735; + this.state = 751; this.match(SparkSqlParser.KW_RECOVER); - this.state = 736; + this.state = 752; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -2138,15 +2149,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewRewriteContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 738; + this.state = 754; this.match(SparkSqlParser.KW_ALTER); - this.state = 739; + this.state = 755; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 740; + this.state = 756; this.match(SparkSqlParser.KW_VIEW); - this.state = 741; + this.state = 757; this.viewName(); - this.state = 742; + this.state = 758; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 98)) { this.errorHandler.recoverInline(this); @@ -2155,7 +2166,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 743; + this.state = 759; this.match(SparkSqlParser.KW_REWRITE); } break; @@ -2163,19 +2174,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 745; + this.state = 761; this.match(SparkSqlParser.KW_ALTER); - this.state = 746; + this.state = 762; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 747; + this.state = 763; this.match(SparkSqlParser.KW_VIEW); - this.state = 748; + this.state = 764; this.viewName(); - this.state = 749; + this.state = 765; this.match(SparkSqlParser.KW_SET); - this.state = 750; + this.state = 766; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 751; + this.state = 767; this.propertyList(); } break; @@ -2183,28 +2194,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 753; + this.state = 769; this.match(SparkSqlParser.KW_DROP); - this.state = 754; + this.state = 770; this.match(SparkSqlParser.KW_TABLE); - this.state = 756; + this.state = 772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 755; + this.state = 771; this.ifExists(); } break; } - this.state = 758; + this.state = 774; this.tableName(); - this.state = 760; + this.state = 776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 759; + this.state = 775; this.match(SparkSqlParser.KW_PURGE); } } @@ -2215,21 +2226,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 762; + this.state = 778; this.match(SparkSqlParser.KW_DROP); - this.state = 763; + this.state = 779; this.match(SparkSqlParser.KW_VIEW); - this.state = 765; + this.state = 781; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 764; + this.state = 780; this.ifExists(); } break; } - this.state = 767; + this.state = 783; this.viewName(); } break; @@ -2237,23 +2248,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 768; + this.state = 784; this.match(SparkSqlParser.KW_DROP); - this.state = 769; + this.state = 785; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 770; + this.state = 786; this.match(SparkSqlParser.KW_VIEW); - this.state = 772; + this.state = 788; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 771; + this.state = 787; this.ifExists(); } break; } - this.state = 774; + this.state = 790; this.viewName(); } break; @@ -2261,78 +2272,78 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 775; + this.state = 791; this.match(SparkSqlParser.KW_CREATE); - this.state = 778; + this.state = 794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 776; + this.state = 792; this.match(SparkSqlParser.KW_OR); - this.state = 777; + this.state = 793; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 784; + this.state = 800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128 || _la === 298) { { - this.state = 781; + this.state = 797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 780; + this.state = 796; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 783; + this.state = 799; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 786; + this.state = 802; this.match(SparkSqlParser.KW_VIEW); - this.state = 788; + this.state = 804; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { case 1: { - this.state = 787; + this.state = 803; this.ifNotExists(); } break; } - this.state = 790; + this.state = 806; this.viewNameCreate(); - this.state = 792; + this.state = 808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 791; + this.state = 807; this.identifierCommentList(); } } - this.state = 803; + this.state = 819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 218 || _la === 297) { { - this.state = 801; + this.state = 817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { { - this.state = 794; + this.state = 810; this.match(SparkSqlParser.KW_COMMENT); - this.state = 795; + this.state = 811; (localContext as CreateViewContext)._comment = this.stringLit(); } } @@ -2340,11 +2351,11 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 796; + this.state = 812; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 797; + this.state = 813; this.match(SparkSqlParser.KW_ON); - this.state = 798; + this.state = 814; this.identifierList(); } } @@ -2352,9 +2363,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 799; + this.state = 815; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 800; + this.state = 816; this.propertyList(); } } @@ -2363,13 +2374,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 805; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 806; + this.state = 822; this.match(SparkSqlParser.KW_AS); - this.state = 807; + this.state = 823; this.query(); } break; @@ -2377,60 +2388,60 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTempViewUsingContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 809; + this.state = 825; this.match(SparkSqlParser.KW_CREATE); - this.state = 812; + this.state = 828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 810; + this.state = 826; this.match(SparkSqlParser.KW_OR); - this.state = 811; + this.state = 827; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 815; + this.state = 831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 814; + this.state = 830; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 817; + this.state = 833; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 818; + this.state = 834; this.match(SparkSqlParser.KW_VIEW); - this.state = 819; + this.state = 835; this.viewNameCreate(); - this.state = 824; + this.state = 840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 820; + this.state = 836; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 821; + this.state = 837; this.colTypeList(); - this.state = 822; + this.state = 838; this.match(SparkSqlParser.RIGHT_PAREN); } } - this.state = 826; + this.state = 842; this.tableProvider(); - this.state = 829; + this.state = 845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 827; + this.state = 843; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 828; + this.state = 844; this.propertyList(); } } @@ -2441,23 +2452,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterViewQueryContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 831; + this.state = 847; this.match(SparkSqlParser.KW_ALTER); - this.state = 832; + this.state = 848; this.match(SparkSqlParser.KW_VIEW); - this.state = 833; + this.state = 849; this.viewName(); - this.state = 835; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 834; + this.state = 850; this.match(SparkSqlParser.KW_AS); } } - this.state = 837; + this.state = 853; this.query(); } break; @@ -2465,78 +2476,78 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 839; + this.state = 855; this.match(SparkSqlParser.KW_CREATE); - this.state = 842; + this.state = 858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 840; + this.state = 856; this.match(SparkSqlParser.KW_OR); - this.state = 841; + this.state = 857; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 845; + this.state = 861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 844; + this.state = 860; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 847; + this.state = 863; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 849; + this.state = 865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 848; + this.state = 864; this.ifNotExists(); } break; } - this.state = 851; + this.state = 867; this.functionNameCreate(); - this.state = 852; + this.state = 868; this.match(SparkSqlParser.KW_AS); - this.state = 853; + this.state = 869; (localContext as CreateFunctionContext)._className = this.stringLit(); - this.state = 867; + this.state = 883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 854; + this.state = 870; this.match(SparkSqlParser.KW_USING); { - this.state = 855; + this.state = 871; this.identifier(); - this.state = 856; + this.state = 872; this.stringLit(); } - this.state = 864; + this.state = 880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 858; + this.state = 874; this.match(SparkSqlParser.COMMA); { - this.state = 859; + this.state = 875; this.identifier(); - this.state = 860; + this.state = 876; this.stringLit(); } } } - this.state = 866; + this.state = 882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2549,48 +2560,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 869; + this.state = 885; this.match(SparkSqlParser.KW_CREATE); - this.state = 870; + this.state = 886; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 871; + this.state = 887; this.match(SparkSqlParser.KW_VIEW); - this.state = 873; + this.state = 889; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 872; + this.state = 888; this.ifNotExists(); } break; } - this.state = 875; + this.state = 891; this.viewNameCreate(); - this.state = 877; + this.state = 893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 876; + this.state = 892; this.tableProvider(); } } - this.state = 896; + this.state = 912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 45 || _la === 51 || _la === 170 || _la === 207 || _la === 218 || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 67371009) !== 0) || _la === 297) { { - this.state = 894; + this.state = 910; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 879; + this.state = 895; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 880; + this.state = 896; (localContext as CreateMaterializedViewContext)._options = this.propertyList(); } } @@ -2598,45 +2609,45 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 881; + this.state = 897; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 882; + this.state = 898; this.match(SparkSqlParser.KW_BY); - this.state = 883; + this.state = 899; (localContext as CreateMaterializedViewContext)._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 884; + this.state = 900; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 885; + this.state = 901; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 886; + this.state = 902; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 887; + this.state = 903; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { { - this.state = 888; + this.state = 904; this.match(SparkSqlParser.KW_LOCATION); - this.state = 889; + this.state = 905; this.stringLit(); } } @@ -2644,9 +2655,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_COMMENT: { { - this.state = 890; + this.state = 906; this.match(SparkSqlParser.KW_COMMENT); - this.state = 891; + this.state = 907; (localContext as CreateMaterializedViewContext)._comment = this.stringLit(); } } @@ -2654,9 +2665,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 892; + this.state = 908; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 893; + this.state = 909; (localContext as CreateMaterializedViewContext)._tableProps = this.propertyList(); } } @@ -2665,13 +2676,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 898; + this.state = 914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 899; + this.state = 915; this.match(SparkSqlParser.KW_AS); - this.state = 900; + this.state = 916; this.query(); } break; @@ -2679,31 +2690,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 902; + this.state = 918; this.match(SparkSqlParser.KW_DROP); - this.state = 904; + this.state = 920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 903; + this.state = 919; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 906; + this.state = 922; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 908; + this.state = 924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { case 1: { - this.state = 907; + this.state = 923; this.ifExists(); } break; } - this.state = 910; + this.state = 926; this.functionName(); } break; @@ -2711,48 +2722,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeclareVariableContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 911; + this.state = 927; this.match(SparkSqlParser.KW_DECLARE); - this.state = 914; + this.state = 930; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 912; + this.state = 928; this.match(SparkSqlParser.KW_OR); - this.state = 913; + this.state = 929; this.match(SparkSqlParser.KW_REPLACE); } break; } - this.state = 917; + this.state = 933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 916; + this.state = 932; this.match(SparkSqlParser.KW_VARIABLE); } break; } - this.state = 919; + this.state = 935; this.functionName(); - this.state = 921; + this.state = 937; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 920; + this.state = 936; this.dataType(); } break; } - this.state = 924; + this.state = 940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 352) { { - this.state = 923; + this.state = 939; this.variableDefaultExpression(); } } @@ -2763,40 +2774,40 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropVariableContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 926; + this.state = 942; this.match(SparkSqlParser.KW_DROP); - this.state = 927; + this.state = 943; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 928; + this.state = 944; this.match(SparkSqlParser.KW_VARIABLE); - this.state = 930; + this.state = 946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 929; + this.state = 945; this.ifExists(); } break; } - this.state = 935; + this.state = 951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 932; + this.state = 948; this.tableName(); } break; case 2: { - this.state = 933; + this.state = 949; this.viewName(); } break; case 3: { - this.state = 934; + this.state = 950; this.functionName(); } break; @@ -2807,14 +2818,14 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ExplainStatementContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 937; + this.state = 953; this.match(SparkSqlParser.KW_EXPLAIN); - this.state = 939; + this.state = 955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173) { { - this.state = 938; + this.state = 954; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173)) { this.errorHandler.recoverInline(this); @@ -2826,7 +2837,7 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 941; + this.state = 957; this.statement(); } break; @@ -2834,16 +2845,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 942; + this.state = 958; this.match(SparkSqlParser.KW_SHOW); - this.state = 943; + this.state = 959; this.match(SparkSqlParser.KW_TABLES); - this.state = 946; + this.state = 962; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 944; + this.state = 960; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2852,27 +2863,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 945; + this.state = 961; this.namespaceName(); } break; } - this.state = 952; + this.state = 968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 949; + this.state = 965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 948; + this.state = 964; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 951; + this.state = 967; (localContext as ShowTablesContext)._pattern = this.stringLit(); } } @@ -2883,18 +2894,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTableExtendedContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 954; + this.state = 970; this.match(SparkSqlParser.KW_SHOW); - this.state = 955; + this.state = 971; this.match(SparkSqlParser.KW_TABLE); - this.state = 956; + this.state = 972; this.match(SparkSqlParser.KW_EXTENDED); - this.state = 959; + this.state = 975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 957; + this.state = 973; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2903,21 +2914,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 958; + this.state = 974; (localContext as ShowTableExtendedContext)._ns = this.namespaceName(); } } - this.state = 961; + this.state = 977; this.match(SparkSqlParser.KW_LIKE); - this.state = 962; + this.state = 978; (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); - this.state = 964; + this.state = 980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 963; + this.state = 979; this.partitionSpec(); } } @@ -2928,22 +2939,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTblPropertiesContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 966; + this.state = 982; this.match(SparkSqlParser.KW_SHOW); - this.state = 967; + this.state = 983; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 968; + this.state = 984; (localContext as ShowTblPropertiesContext)._table = this.tableName(); - this.state = 973; + this.state = 989; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 969; + this.state = 985; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 970; + this.state = 986; (localContext as ShowTblPropertiesContext)._key = this.propertyKey(); - this.state = 971; + this.state = 987; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -2954,11 +2965,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 975; + this.state = 991; this.match(SparkSqlParser.KW_SHOW); - this.state = 976; + this.state = 992; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 977; + this.state = 993; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2967,14 +2978,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 978; + this.state = 994; (localContext as ShowColumnsContext)._table = this.tableName(); - this.state = 981; + this.state = 997; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: { - this.state = 979; + this.state = 995; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2983,7 +2994,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 980; + this.state = 996; this.namespaceName(); } break; @@ -2994,16 +3005,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowViewsContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 983; + this.state = 999; this.match(SparkSqlParser.KW_SHOW); - this.state = 984; + this.state = 1000; this.match(SparkSqlParser.KW_VIEWS); - this.state = 987; + this.state = 1003; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 985; + this.state = 1001; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3012,27 +3023,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 986; + this.state = 1002; this.namespaceName(); } break; } - this.state = 993; + this.state = 1009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 990; + this.state = 1006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 989; + this.state = 1005; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 992; + this.state = 1008; (localContext as ShowViewsContext)._pattern = this.stringLit(); } } @@ -3043,18 +3054,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowPartitionsContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 995; + this.state = 1011; this.match(SparkSqlParser.KW_SHOW); - this.state = 996; + this.state = 1012; this.match(SparkSqlParser.KW_PARTITIONS); - this.state = 997; + this.state = 1013; this.tableName(); - this.state = 999; + this.state = 1015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 998; + this.state = 1014; this.partitionSpec(); } } @@ -3065,14 +3076,14 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1001; + this.state = 1017; this.match(SparkSqlParser.KW_SHOW); - this.state = 1003; + this.state = 1019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 290 || _la === 331) { { - this.state = 1002; + this.state = 1018; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 290 || _la === 331)) { this.errorHandler.recoverInline(this); @@ -3084,14 +3095,14 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1005; + this.state = 1021; this.match(SparkSqlParser.KW_FUNCTIONS); - this.state = 1008; + this.state = 1024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1006; + this.state = 1022; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3100,38 +3111,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1007; + this.state = 1023; (localContext as ShowFunctionsContext)._ns = this.namespaceName(); } break; } - this.state = 1017; + this.state = 1033; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1011; + this.state = 1027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1010; + this.state = 1026; this.match(SparkSqlParser.KW_LIKE); } break; } - this.state = 1015; + this.state = 1031; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1013; + this.state = 1029; (localContext as ShowFunctionsContext)._legacy = this.multipartIdentifier(); } break; case 2: { - this.state = 1014; + this.state = 1030; (localContext as ShowFunctionsContext)._pattern = this.stringLit(); } break; @@ -3145,22 +3156,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 1019; + this.state = 1035; this.match(SparkSqlParser.KW_SHOW); - this.state = 1020; + this.state = 1036; this.match(SparkSqlParser.KW_CREATE); - this.state = 1021; + this.state = 1037; this.match(SparkSqlParser.KW_TABLE); - this.state = 1022; + this.state = 1038; this.tableName(); - this.state = 1025; + this.state = 1041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1023; + this.state = 1039; this.match(SparkSqlParser.KW_AS); - this.state = 1024; + this.state = 1040; this.match(SparkSqlParser.KW_SERDE); } } @@ -3171,11 +3182,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCurrentNamespaceContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1027; + this.state = 1043; this.match(SparkSqlParser.KW_SHOW); - this.state = 1028; + this.state = 1044; this.match(SparkSqlParser.KW_CURRENT); - this.state = 1029; + this.state = 1045; this.namespace(); } break; @@ -3183,26 +3194,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1030; + this.state = 1046; this.match(SparkSqlParser.KW_SHOW); - this.state = 1031; + this.state = 1047; this.match(SparkSqlParser.KW_CATALOGS); - this.state = 1036; + this.state = 1052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1033; + this.state = 1049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1032; + this.state = 1048; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1035; + this.state = 1051; (localContext as ShowCatalogsContext)._pattern = this.stringLit(); } } @@ -3213,18 +3224,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowMaterializedViewsContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1038; + this.state = 1054; this.match(SparkSqlParser.KW_SHOW); - this.state = 1039; + this.state = 1055; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1040; + this.state = 1056; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1043; + this.state = 1059; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1041; + this.state = 1057; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3233,27 +3244,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1042; + this.state = 1058; (localContext as ShowMaterializedViewsContext)._db_name = this.namespaceName(); } break; } - this.state = 1049; + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1046; + this.state = 1062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1045; + this.state = 1061; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1048; + this.state = 1064; (localContext as ShowMaterializedViewsContext)._pattern = this.stringLit(); } } @@ -3264,24 +3275,24 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1051; + this.state = 1067; this.match(SparkSqlParser.KW_SHOW); - this.state = 1052; + this.state = 1068; this.match(SparkSqlParser.KW_CREATE); - this.state = 1053; + this.state = 1069; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1054; + this.state = 1070; this.match(SparkSqlParser.KW_VIEW); - this.state = 1055; + this.state = 1071; this.viewName(); - this.state = 1058; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1056; + this.state = 1072; this.match(SparkSqlParser.KW_AS); - this.state = 1057; + this.state = 1073; this.match(SparkSqlParser.KW_SERDE); } } @@ -3292,7 +3303,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeFunctionContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1060; + this.state = 1076; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3301,19 +3312,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1061; + this.state = 1077; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1063; + this.state = 1079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1062; + this.state = 1078; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1065; + this.state = 1081; this.describeFuncName(); } break; @@ -3321,7 +3332,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeNamespaceContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1066; + this.state = 1082; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3330,19 +3341,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1067; + this.state = 1083; this.match(SparkSqlParser.KW_DATABASE); - this.state = 1069; + this.state = 1085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1068; + this.state = 1084; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1071; + this.state = 1087; this.namespaceName(); } break; @@ -3350,7 +3361,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeRelationContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1072; + this.state = 1088; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3359,22 +3370,22 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1074; + this.state = 1090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1073; + this.state = 1089; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1077; + this.state = 1093; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1076; + this.state = 1092; (localContext as DescribeRelationContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 122)) { @@ -3387,24 +3398,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1079; + this.state = 1095; this.tableName(); - this.state = 1081; + this.state = 1097; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1080; + this.state = 1096; this.partitionSpec(); } break; } - this.state = 1084; + this.state = 1100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1083; + this.state = 1099; this.describeColName(); } break; @@ -3415,7 +3426,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeQueryContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1086; + this.state = 1102; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3424,17 +3435,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 1087; + this.state = 1103; this.match(SparkSqlParser.KW_QUERY); } } - this.state = 1090; + this.state = 1106; this.query(); } break; @@ -3442,11 +3453,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1091; + this.state = 1107; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1092; + this.state = 1108; this.match(SparkSqlParser.KW_ON); - this.state = 1098; + this.state = 1114; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DATABASE: @@ -3454,9 +3465,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SCHEMA: { { - this.state = 1093; + this.state = 1109; this.namespace(); - this.state = 1094; + this.state = 1110; this.namespaceName(); } } @@ -3464,9 +3475,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TABLE: { { - this.state = 1096; + this.state = 1112; this.match(SparkSqlParser.KW_TABLE); - this.state = 1097; + this.state = 1113; this.tableName(); } } @@ -3474,21 +3485,21 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1100; + this.state = 1116; this.match(SparkSqlParser.KW_IS); - this.state = 1103; + this.state = 1119; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 1101; + this.state = 1117; this.stringLit(); } break; case SparkSqlParser.KW_NULL: { - this.state = 1102; + this.state = 1118; this.match(SparkSqlParser.KW_NULL); } break; @@ -3501,11 +3512,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshTableContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1105; + this.state = 1121; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1106; + this.state = 1122; this.match(SparkSqlParser.KW_TABLE); - this.state = 1107; + this.state = 1123; this.tableName(); } break; @@ -3513,11 +3524,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshFunctionContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1108; + this.state = 1124; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1109; + this.state = 1125; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1110; + this.state = 1126; this.functionName(); } break; @@ -3525,32 +3536,32 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshResourceContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1111; + this.state = 1127; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1119; + this.state = 1135; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1112; + this.state = 1128; this.stringLit(); } break; case 2: { - this.state = 1116; + this.state = 1132; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1113; + this.state = 1129; this.matchWildcard(); } } } - this.state = 1118; + this.state = 1134; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); } @@ -3563,13 +3574,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1121; + this.state = 1137; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1122; + this.state = 1138; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1123; + this.state = 1139; this.match(SparkSqlParser.KW_VIEW); - this.state = 1124; + this.state = 1140; this.viewName(); } break; @@ -3577,50 +3588,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CacheTableContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1125; + this.state = 1141; this.match(SparkSqlParser.KW_CACHE); - this.state = 1127; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 1126; + this.state = 1142; this.match(SparkSqlParser.KW_LAZY); } } - this.state = 1129; + this.state = 1145; this.match(SparkSqlParser.KW_TABLE); - this.state = 1130; + this.state = 1146; this.tableName(); - this.state = 1133; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1131; + this.state = 1147; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1132; + this.state = 1148; (localContext as CacheTableContext)._options = this.propertyList(); } } - this.state = 1139; + this.state = 1155; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1136; + this.state = 1152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1135; + this.state = 1151; this.match(SparkSqlParser.KW_AS); } } - this.state = 1138; + this.state = 1154; this.query(); } break; @@ -3631,21 +3642,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnCacheTableContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1141; + this.state = 1157; this.match(SparkSqlParser.KW_UNCACHE); - this.state = 1142; + this.state = 1158; this.match(SparkSqlParser.KW_TABLE); - this.state = 1144; + this.state = 1160; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1143; + this.state = 1159; this.ifExists(); } break; } - this.state = 1146; + this.state = 1162; this.tableName(); } break; @@ -3653,9 +3664,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ClearCacheContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1147; + this.state = 1163; this.match(SparkSqlParser.KW_CLEAR); - this.state = 1148; + this.state = 1164; this.match(SparkSqlParser.KW_CACHE); } break; @@ -3663,46 +3674,46 @@ export class SparkSqlParser extends SQLParserBase { localContext = new LoadDataContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1149; + this.state = 1165; this.match(SparkSqlParser.KW_LOAD); - this.state = 1150; + this.state = 1166; this.match(SparkSqlParser.KW_DATA); - this.state = 1152; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1151; + this.state = 1167; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1154; + this.state = 1170; this.match(SparkSqlParser.KW_INPATH); - this.state = 1155; + this.state = 1171; (localContext as LoadDataContext)._path = this.stringLit(); - this.state = 1157; + this.state = 1173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1156; + this.state = 1172; this.match(SparkSqlParser.KW_OVERWRITE); } } - this.state = 1159; + this.state = 1175; this.match(SparkSqlParser.KW_INTO); - this.state = 1160; + this.state = 1176; this.match(SparkSqlParser.KW_TABLE); - this.state = 1161; + this.state = 1177; this.tableName(); - this.state = 1163; + this.state = 1179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1162; + this.state = 1178; this.partitionSpec(); } } @@ -3713,18 +3724,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1165; + this.state = 1181; this.match(SparkSqlParser.KW_TRUNCATE); - this.state = 1166; + this.state = 1182; this.match(SparkSqlParser.KW_TABLE); - this.state = 1167; + this.state = 1183; this.tableName(); - this.state = 1169; + this.state = 1185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1168; + this.state = 1184; this.partitionSpec(); } } @@ -3735,28 +3746,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RepairTableContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1172; + this.state = 1188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1171; + this.state = 1187; this.match(SparkSqlParser.KW_MSCK); } } - this.state = 1174; + this.state = 1190; this.match(SparkSqlParser.KW_REPAIR); - this.state = 1175; + this.state = 1191; this.match(SparkSqlParser.KW_TABLE); - this.state = 1176; + this.state = 1192; this.tableName(); - this.state = 1179; + this.state = 1195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1177; + this.state = 1193; (localContext as RepairTableContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 96 || _la === 289)) { @@ -3766,7 +3777,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1178; + this.state = 1194; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -3777,7 +3788,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ManageResourceContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1181; + this.state = 1197; (localContext as ManageResourceContext)._op = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 167)) { @@ -3787,21 +3798,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1182; + this.state = 1198; this.identifier(); - this.state = 1186; + this.state = 1202; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1183; + this.state = 1199; this.matchWildcard(); } } } - this.state = 1188; + this.state = 1204; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } @@ -3811,23 +3822,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new FailNativeCommandContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1189; + this.state = 1205; this.match(SparkSqlParser.KW_SET); - this.state = 1190; + this.state = 1206; this.match(SparkSqlParser.KW_ROLE); - this.state = 1194; + this.state = 1210; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1191; + this.state = 1207; this.matchWildcard(); } } } - this.state = 1196; + this.state = 1212; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } @@ -3837,13 +3848,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1197; + this.state = 1213; this.match(SparkSqlParser.KW_SET); - this.state = 1198; + this.state = 1214; this.match(SparkSqlParser.KW_TIME); - this.state = 1199; + this.state = 1215; this.match(SparkSqlParser.KW_ZONE); - this.state = 1200; + this.state = 1216; this.interval(); } break; @@ -3851,25 +3862,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1201; + this.state = 1217; this.match(SparkSqlParser.KW_SET); - this.state = 1202; + this.state = 1218; this.match(SparkSqlParser.KW_TIME); - this.state = 1203; + this.state = 1219; this.match(SparkSqlParser.KW_ZONE); - this.state = 1206; + this.state = 1222; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 1204; + this.state = 1220; this.stringLit(); } break; case SparkSqlParser.KW_LOCAL: { - this.state = 1205; + this.state = 1221; this.match(SparkSqlParser.KW_LOCAL); } break; @@ -3882,25 +3893,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneAnyContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1208; + this.state = 1224; this.match(SparkSqlParser.KW_SET); - this.state = 1209; + this.state = 1225; this.match(SparkSqlParser.KW_TIME); - this.state = 1210; + this.state = 1226; this.match(SparkSqlParser.KW_ZONE); - this.state = 1214; + this.state = 1230; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1211; + this.state = 1227; this.matchWildcard(); } } } - this.state = 1216; + this.state = 1232; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); } @@ -3910,9 +3921,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableAssignmentContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1217; + this.state = 1233; this.match(SparkSqlParser.KW_SET); - this.state = 1218; + this.state = 1234; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3921,7 +3932,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1219; + this.state = 1235; this.assignmentList(); } break; @@ -3929,9 +3940,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableMultiAssignmentContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1220; + this.state = 1236; this.match(SparkSqlParser.KW_SET); - this.state = 1221; + this.state = 1237; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3940,19 +3951,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1222; + this.state = 1238; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1223; + this.state = 1239; this.multipartIdentifierList(); - this.state = 1224; + this.state = 1240; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1225; + this.state = 1241; this.match(SparkSqlParser.EQ); - this.state = 1226; + this.state = 1242; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1227; + this.state = 1243; this.query(); - this.state = 1228; + this.state = 1244; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -3960,13 +3971,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1230; + this.state = 1246; this.match(SparkSqlParser.KW_SET); - this.state = 1231; + this.state = 1247; this.quotedIdentifier(); - this.state = 1232; + this.state = 1248; this.match(SparkSqlParser.EQ); - this.state = 1233; + this.state = 1249; this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -3974,30 +3985,30 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAndValueContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1235; + this.state = 1251; this.match(SparkSqlParser.KW_SET); - this.state = 1236; + this.state = 1252; this.quotedIdentifier(); - this.state = 1244; + this.state = 1260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1237; + this.state = 1253; this.match(SparkSqlParser.EQ); - this.state = 1241; + this.state = 1257; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 138, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1238; + this.state = 1254; this.matchWildcard(); } } } - this.state = 1243; + this.state = 1259; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 138, this.context); } @@ -4010,27 +4021,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAnyKeyContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1246; + this.state = 1262; this.match(SparkSqlParser.KW_SET); - this.state = 1250; + this.state = 1266; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1247; + this.state = 1263; this.matchWildcard(); } } } - this.state = 1252; + this.state = 1268; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); } - this.state = 1253; + this.state = 1269; this.match(SparkSqlParser.EQ); - this.state = 1254; + this.state = 1270; this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -4038,21 +4049,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetAnyContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1255; + this.state = 1271; this.match(SparkSqlParser.KW_SET); - this.state = 1259; + this.state = 1275; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1256; + this.state = 1272; this.matchWildcard(); } } } - this.state = 1261; + this.state = 1277; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); } @@ -4062,9 +4073,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetConfigContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1262; + this.state = 1278; this.match(SparkSqlParser.KW_RESET); - this.state = 1263; + this.state = 1279; this.quotedIdentifier(); } break; @@ -4072,21 +4083,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetAnyContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1264; + this.state = 1280; this.match(SparkSqlParser.KW_RESET); - this.state = 1268; + this.state = 1284; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1265; + this.state = 1281; this.matchWildcard(); } } } - this.state = 1270; + this.state = 1286; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); } @@ -4096,62 +4107,62 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateIndexContext(localContext); this.enterOuterAlt(localContext, 87); { - this.state = 1271; + this.state = 1287; this.match(SparkSqlParser.KW_CREATE); - this.state = 1272; + this.state = 1288; this.match(SparkSqlParser.KW_INDEX); - this.state = 1274; + this.state = 1290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1273; + this.state = 1289; this.ifNotExists(); } break; } - this.state = 1276; + this.state = 1292; this.identifier(); - this.state = 1277; + this.state = 1293; this.match(SparkSqlParser.KW_ON); - this.state = 1279; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1278; + this.state = 1294; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1281; + this.state = 1297; this.tableName(); - this.state = 1284; + this.state = 1300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1282; + this.state = 1298; this.match(SparkSqlParser.KW_USING); - this.state = 1283; + this.state = 1299; (localContext as CreateIndexContext)._indexType = this.identifier(); } } - this.state = 1286; + this.state = 1302; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1287; + this.state = 1303; this.multipartIdentifierPropertyList(); - this.state = 1288; + this.state = 1304; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1291; + this.state = 1307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1289; + this.state = 1305; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1290; + this.state = 1306; (localContext as CreateIndexContext)._options = this.propertyList(); } } @@ -4162,35 +4173,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropIndexContext(localContext); this.enterOuterAlt(localContext, 88); { - this.state = 1293; + this.state = 1309; this.match(SparkSqlParser.KW_DROP); - this.state = 1294; + this.state = 1310; this.match(SparkSqlParser.KW_INDEX); - this.state = 1296; + this.state = 1312; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1295; + this.state = 1311; this.ifExists(); } break; } - this.state = 1298; + this.state = 1314; this.identifier(); - this.state = 1299; + this.state = 1315; this.match(SparkSqlParser.KW_ON); - this.state = 1301; + this.state = 1317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1300; + this.state = 1316; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1303; + this.state = 1319; this.tableName(); } break; @@ -4198,21 +4209,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new OptimizeTableContext(localContext); this.enterOuterAlt(localContext, 89); { - this.state = 1305; + this.state = 1321; this.match(SparkSqlParser.KW_OPTIMIZE); - this.state = 1306; + this.state = 1322; this.tableName(); - this.state = 1308; + this.state = 1324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1307; + this.state = 1323; this.whereClause(); } } - this.state = 1310; + this.state = 1326; this.zOrderClause(); } break; @@ -4220,21 +4231,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsupportHiveCommandsContext(localContext); this.enterOuterAlt(localContext, 90); { - this.state = 1312; + this.state = 1328; this.unsupportedHiveNativeCommands(); - this.state = 1316; + this.state = 1332; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1313; + this.state = 1329; this.matchWildcard(); } } } - this.state = 1318; + this.state = 1334; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } @@ -4261,13 +4272,13 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 6, SparkSqlParser.RULE_unsupportedHiveNativeCommands); let _la: number; try { - this.state = 1414; + this.state = 1430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1321; + this.state = 1337; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 96)) { @@ -4277,14 +4288,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1322; + this.state = 1338; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1323; + this.state = 1339; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 129 || _la === 249)) { @@ -4294,12 +4305,12 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1325; + this.state = 1341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1324; + this.state = 1340; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4309,9 +4320,9 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1327; + this.state = 1343; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1328; + this.state = 1344; localContext._kw2 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 129 || _la === 143 || _la === 172 || _la === 228 || _la === 313)) { @@ -4326,16 +4337,16 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1329; + this.state = 1345; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1330; + this.state = 1346; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); - this.state = 1332; + this.state = 1348; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1331; + this.state = 1347; localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); } break; @@ -4345,37 +4356,37 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1334; + this.state = 1350; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1336; + this.state = 1352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 1335; + this.state = 1351; this.match(SparkSqlParser.KW_CURRENT); } } - this.state = 1338; + this.state = 1354; this.match(SparkSqlParser.KW_ROLES); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1339; + this.state = 1355; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1340; + this.state = 1356; localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1341; + this.state = 1357; localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1342; + this.state = 1358; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 59 || _la === 96)) { @@ -4385,14 +4396,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1343; + this.state = 1359; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1344; + this.state = 1360; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 139 || _la === 171 || _la === 326)) { @@ -4402,14 +4413,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1345; + this.state = 1361; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1346; + this.state = 1362; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 171 || _la === 326)) { @@ -4419,14 +4430,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1347; + this.state = 1363; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1348; + this.state = 1364; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 96)) { @@ -4436,24 +4447,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1349; + this.state = 1365; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1350; + this.state = 1366; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1351; + this.state = 1367; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1352; + this.state = 1368; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1353; + this.state = 1369; this.tableName(); - this.state = 1354; + this.state = 1370; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1355; + this.state = 1371; localContext._kw4 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 275 || _la === 279)) { @@ -4468,13 +4479,13 @@ export class SparkSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1357; + this.state = 1373; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1358; + this.state = 1374; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1359; + this.state = 1375; this.tableName(); - this.state = 1360; + this.state = 1376; localContext._kw3 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 275)) { @@ -4484,71 +4495,71 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1361; + this.state = 1377; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1363; + this.state = 1379; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1364; + this.state = 1380; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1365; + this.state = 1381; this.tableName(); - this.state = 1366; + this.state = 1382; localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1367; + this.state = 1383; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1369; + this.state = 1385; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1370; + this.state = 1386; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1371; + this.state = 1387; this.tableName(); - this.state = 1372; + this.state = 1388; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1373; + this.state = 1389; localContext._kw4 = this.match(SparkSqlParser.KW_STORED); - this.state = 1374; + this.state = 1390; localContext._kw5 = this.match(SparkSqlParser.KW_AS); - this.state = 1375; + this.state = 1391; localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1377; + this.state = 1393; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1378; + this.state = 1394; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1379; + this.state = 1395; this.tableName(); - this.state = 1380; + this.state = 1396; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1381; + this.state = 1397; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1382; + this.state = 1398; localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1384; + this.state = 1400; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1385; + this.state = 1401; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1386; + this.state = 1402; this.tableName(); - this.state = 1387; + this.state = 1403; localContext._kw3 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 103 || _la === 320)) { @@ -4558,63 +4569,63 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1388; + this.state = 1404; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1390; + this.state = 1406; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1391; + this.state = 1407; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1392; + this.state = 1408; this.tableName(); - this.state = 1393; + this.state = 1409; localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1395; + this.state = 1411; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1396; + this.state = 1412; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1397; + this.state = 1413; this.tableName(); - this.state = 1399; + this.state = 1415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1398; + this.state = 1414; this.partitionSpec(); } } - this.state = 1407; + this.state = 1423; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMPACT: { - this.state = 1401; + this.state = 1417; this.match(SparkSqlParser.KW_COMPACT); } break; case SparkSqlParser.KW_CONCATENATE: { - this.state = 1402; + this.state = 1418; this.match(SparkSqlParser.KW_CONCATENATE); } break; case SparkSqlParser.KW_SET: { { - this.state = 1403; + this.state = 1419; this.match(SparkSqlParser.KW_SET); - this.state = 1404; + this.state = 1420; this.match(SparkSqlParser.KW_FILEFORMAT); } } @@ -4622,9 +4633,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_REPLACE: { { - this.state = 1405; + this.state = 1421; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1406; + this.state = 1422; this.match(SparkSqlParser.KW_COLUMNS); } } @@ -4637,30 +4648,30 @@ export class SparkSqlParser extends SQLParserBase { case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1409; + this.state = 1425; localContext._kw1 = this.match(SparkSqlParser.KW_START); - this.state = 1410; + this.state = 1426; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1411; + this.state = 1427; localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1412; + this.state = 1428; localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1413; + this.state = 1429; localContext._kw1 = this.match(SparkSqlParser.KW_DFS); } break; @@ -4687,31 +4698,31 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1416; + this.state = 1432; this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1417; + this.state = 1433; this.match(SparkSqlParser.KW_BY); - this.state = 1418; + this.state = 1434; this.identifierList(); - this.state = 1422; + this.state = 1438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 279) { { - this.state = 1419; + this.state = 1435; this.match(SparkSqlParser.KW_SORTED); - this.state = 1420; + this.state = 1436; this.match(SparkSqlParser.KW_BY); - this.state = 1421; + this.state = 1437; this.orderedIdentifierList(); } } - this.state = 1424; + this.state = 1440; this.match(SparkSqlParser.KW_INTO); - this.state = 1425; + this.state = 1441; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 1426; + this.state = 1442; this.match(SparkSqlParser.KW_BUCKETS); } } @@ -4735,40 +4746,40 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1428; + this.state = 1444; this.match(SparkSqlParser.KW_SKEWED); - this.state = 1429; + this.state = 1445; this.match(SparkSqlParser.KW_BY); - this.state = 1430; + this.state = 1446; this.identifierList(); - this.state = 1431; + this.state = 1447; this.match(SparkSqlParser.KW_ON); - this.state = 1434; + this.state = 1450; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1432; + this.state = 1448; this.constantList(); } break; case 2: { - this.state = 1433; + this.state = 1449; this.nestedConstantList(); } break; } - this.state = 1439; + this.state = 1455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1436; + this.state = 1452; this.match(SparkSqlParser.KW_STORED); - this.state = 1437; + this.state = 1453; this.match(SparkSqlParser.KW_AS); - this.state = 1438; + this.state = 1454; this.match(SparkSqlParser.KW_DIRECTORIES); } break; @@ -4795,9 +4806,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1441; + this.state = 1457; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1442; + this.state = 1458; this.stringLit(); } } @@ -4821,9 +4832,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1444; + this.state = 1460; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1445; + this.state = 1461; localContext._comment = this.stringLit(); } } @@ -4849,19 +4860,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 1447; + this.state = 1463; this.ctes(); } } - this.state = 1450; + this.state = 1466; this.queryTerm(0); - this.state = 1451; + this.state = 1467; this.queryOrganization(); } } @@ -4884,41 +4895,41 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 18, SparkSqlParser.RULE_insertInto); let _la: number; try { - this.state = 1529; + this.state = 1545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1453; + this.state = 1469; this.match(SparkSqlParser.KW_INSERT); - this.state = 1454; + this.state = 1470; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1456; + this.state = 1472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1455; + this.state = 1471; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1458; + this.state = 1474; this.tableName(); - this.state = 1463; + this.state = 1479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1459; + this.state = 1475; this.partitionSpec(); - this.state = 1461; + this.state = 1477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1460; + this.state = 1476; this.ifNotExists(); } } @@ -4926,15 +4937,15 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1471; + this.state = 1487; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { { - this.state = 1465; + this.state = 1481; this.match(SparkSqlParser.KW_BY); - this.state = 1466; + this.state = 1482; this.match(SparkSqlParser.KW_NAME); } } @@ -4942,11 +4953,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1467; + this.state = 1483; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1468; + this.state = 1484; this.columnNameSeq(); - this.state = 1469; + this.state = 1485; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -4957,51 +4968,51 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1473; + this.state = 1489; this.match(SparkSqlParser.KW_INSERT); - this.state = 1474; + this.state = 1490; this.match(SparkSqlParser.KW_INTO); - this.state = 1476; + this.state = 1492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1475; + this.state = 1491; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1478; + this.state = 1494; this.tableName(); - this.state = 1480; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1479; + this.state = 1495; this.partitionSpec(); } } - this.state = 1483; + this.state = 1499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1482; + this.state = 1498; this.ifNotExists(); } } - this.state = 1491; + this.state = 1507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { { - this.state = 1485; + this.state = 1501; this.match(SparkSqlParser.KW_BY); - this.state = 1486; + this.state = 1502; this.match(SparkSqlParser.KW_NAME); } } @@ -5009,11 +5020,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1487; + this.state = 1503; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1488; + this.state = 1504; this.columnNameSeq(); - this.state = 1489; + this.state = 1505; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5024,65 +5035,65 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1493; + this.state = 1509; this.match(SparkSqlParser.KW_INSERT); - this.state = 1494; + this.state = 1510; this.match(SparkSqlParser.KW_INTO); - this.state = 1496; + this.state = 1512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1495; + this.state = 1511; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1498; + this.state = 1514; this.tableName(); - this.state = 1499; + this.state = 1515; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1500; + this.state = 1516; this.whereClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1502; + this.state = 1518; this.match(SparkSqlParser.KW_INSERT); - this.state = 1503; + this.state = 1519; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1505; + this.state = 1521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1504; + this.state = 1520; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1507; + this.state = 1523; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1508; + this.state = 1524; localContext._path = this.stringLit(); - this.state = 1510; + this.state = 1526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1509; + this.state = 1525; this.rowFormat(); } } - this.state = 1513; + this.state = 1529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 283) { { - this.state = 1512; + this.state = 1528; this.createFileFormat(); } } @@ -5092,42 +5103,42 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1515; + this.state = 1531; this.match(SparkSqlParser.KW_INSERT); - this.state = 1516; + this.state = 1532; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1518; + this.state = 1534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1517; + this.state = 1533; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1520; + this.state = 1536; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1522; + this.state = 1538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 377 || _la === 378) { { - this.state = 1521; + this.state = 1537; localContext._path = this.stringLit(); } } - this.state = 1524; + this.state = 1540; this.tableProvider(); - this.state = 1527; + this.state = 1543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1525; + this.state = 1541; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1526; + this.state = 1542; localContext._options = this.propertyList(); } } @@ -5157,16 +5168,16 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1531; + this.state = 1547; this.partitionSpec(); - this.state = 1534; + this.state = 1550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 170) { { - this.state = 1532; + this.state = 1548; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1533; + this.state = 1549; this.stringLit(); } } @@ -5194,29 +5205,29 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1536; + this.state = 1552; this.match(SparkSqlParser.KW_PARTITION); - this.state = 1537; + this.state = 1553; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1538; + this.state = 1554; this.partitionVal(); - this.state = 1543; + this.state = 1559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1539; + this.state = 1555; this.match(SparkSqlParser.COMMA); - this.state = 1540; + this.state = 1556; this.partitionVal(); } } - this.state = 1545; + this.state = 1561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1546; + this.state = 1562; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5239,22 +5250,22 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, SparkSqlParser.RULE_partitionVal); let _la: number; try { - this.state = 1557; + this.state = 1573; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1548; + this.state = 1564; this.identifier(); - this.state = 1551; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1549; + this.state = 1565; this.match(SparkSqlParser.EQ); - this.state = 1550; + this.state = 1566; this.constant(); } } @@ -5264,11 +5275,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1553; + this.state = 1569; this.identifier(); - this.state = 1554; + this.state = 1570; this.match(SparkSqlParser.EQ); - this.state = 1555; + this.state = 1571; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -5295,7 +5306,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1559; + this.state = 1575; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 190 || _la === 261)) { this.errorHandler.recoverInline(this); @@ -5324,41 +5335,41 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new DescribeFuncNameContext(this.context, this.state); this.enterRule(localContext, 28, SparkSqlParser.RULE_describeFuncName); try { - this.state = 1566; + this.state = 1582; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1561; + this.state = 1577; this.identifierReference(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1562; + this.state = 1578; this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1563; + this.state = 1579; this.comparisonOperator(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1564; + this.state = 1580; this.arithmeticOperator(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1565; + this.state = 1581; this.predicateOperator(); } break; @@ -5385,23 +5396,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1568; + this.state = 1584; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); - this.state = 1573; + this.state = 1589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1569; + this.state = 1585; this.match(SparkSqlParser.DOT); - this.state = 1570; + this.state = 1586; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); } } - this.state = 1575; + this.state = 1591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5428,23 +5439,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1576; + this.state = 1592; this.match(SparkSqlParser.KW_WITH); - this.state = 1577; + this.state = 1593; this.namedQuery(); - this.state = 1582; + this.state = 1598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1578; + this.state = 1594; this.match(SparkSqlParser.COMMA); - this.state = 1579; + this.state = 1595; this.namedQuery(); } } - this.state = 1584; + this.state = 1600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5471,33 +5482,33 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1585; + this.state = 1601; localContext._name = this.errorCapturingIdentifier(); - this.state = 1587; + this.state = 1603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1586; + this.state = 1602; localContext._columnAliases = this.identifierList(); } break; } - this.state = 1590; + this.state = 1606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1589; + this.state = 1605; this.match(SparkSqlParser.KW_AS); } } - this.state = 1592; + this.state = 1608; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1593; + this.state = 1609; this.query(); - this.state = 1594; + this.state = 1610; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5521,9 +5532,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1612; this.match(SparkSqlParser.KW_USING); - this.state = 1597; + this.state = 1613; this.multipartIdentifier(); } } @@ -5548,21 +5559,21 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1617; + this.state = 1633; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1615; + this.state = 1631; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 1599; + this.state = 1615; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1600; + this.state = 1616; localContext._options = this.expressionPropertyList(); } } @@ -5570,68 +5581,68 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 1601; + this.state = 1617; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 1602; + this.state = 1618; this.match(SparkSqlParser.KW_BY); - this.state = 1603; + this.state = 1619; localContext._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 1604; + this.state = 1620; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 1605; + this.state = 1621; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 1606; + this.state = 1622; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 1607; + this.state = 1623; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 1608; + this.state = 1624; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1609; + this.state = 1625; this.stringLit(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 1610; + this.state = 1626; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1611; + this.state = 1627; localContext._comment = this.stringLit(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 1612; + this.state = 1628; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 1613; + this.state = 1629; localContext._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 1614; + this.state = 1630; this.tableLifecycle(); } break; @@ -5640,7 +5651,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 1619; + this.state = 1635; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); } @@ -5666,9 +5677,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1620; + this.state = 1636; this.match(SparkSqlParser.KW_LIFECYCLE); - this.state = 1621; + this.state = 1637; this.match(SparkSqlParser.INTEGER_VALUE); } } @@ -5693,27 +5704,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1623; + this.state = 1639; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1624; + this.state = 1640; this.property(); - this.state = 1629; + this.state = 1645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1625; + this.state = 1641; this.match(SparkSqlParser.COMMA); - this.state = 1626; + this.state = 1642; this.property(); } } - this.state = 1631; + this.state = 1647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1632; + this.state = 1648; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5738,24 +5749,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1634; + this.state = 1650; localContext._key = this.propertyKey(); - this.state = 1639; + this.state = 1655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111 || _la === 316 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 1174405121) !== 0) || _la === 384) { { - this.state = 1636; + this.state = 1652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1635; + this.state = 1651; this.match(SparkSqlParser.EQ); } } - this.state = 1638; + this.state = 1654; localContext._value = this.propertyValue(); } } @@ -5781,27 +5792,27 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 46, SparkSqlParser.RULE_propertyKey); let _la: number; try { - this.state = 1650; + this.state = 1666; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1641; + this.state = 1657; this.identifier(); - this.state = 1646; + this.state = 1662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1642; + this.state = 1658; this.match(SparkSqlParser.DOT); - this.state = 1643; + this.state = 1659; this.identifier(); } } - this.state = 1648; + this.state = 1664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5810,7 +5821,7 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1649; + this.state = 1665; this.stringLit(); } break; @@ -5834,20 +5845,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 48, SparkSqlParser.RULE_propertyValue); try { - this.state = 1656; + this.state = 1672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1652; + this.state = 1668; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1653; + this.state = 1669; this.match(SparkSqlParser.DECIMAL_VALUE); } break; @@ -5855,7 +5866,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 1654; + this.state = 1670; this.booleanValue(); } break; @@ -5863,7 +5874,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 4); { - this.state = 1655; + this.state = 1671; this.stringLit(); } break; @@ -5892,27 +5903,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1658; + this.state = 1674; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1659; + this.state = 1675; this.expressionProperty(); - this.state = 1664; + this.state = 1680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1660; + this.state = 1676; this.match(SparkSqlParser.COMMA); - this.state = 1661; + this.state = 1677; this.expressionProperty(); } } - this.state = 1666; + this.state = 1682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1667; + this.state = 1683; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5937,24 +5948,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1669; + this.state = 1685; localContext._key = this.propertyKey(); - this.state = 1674; + this.state = 1690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & 4294967233) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 4294967295) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 4294967295) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 4261412863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4294967295) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4294967295) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4294967291) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4294967295) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4294967263) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 4294967287) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 1671; + this.state = 1687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1670; + this.state = 1686; this.match(SparkSqlParser.EQ); } } - this.state = 1673; + this.state = 1689; localContext._value = this.expression(); } } @@ -5982,27 +5993,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1676; + this.state = 1692; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1677; + this.state = 1693; this.constant(); - this.state = 1682; + this.state = 1698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1678; + this.state = 1694; this.match(SparkSqlParser.COMMA); - this.state = 1679; + this.state = 1695; this.constant(); } } - this.state = 1684; + this.state = 1700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1685; + this.state = 1701; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6027,27 +6038,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1687; + this.state = 1703; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1688; + this.state = 1704; this.constantList(); - this.state = 1693; + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1689; + this.state = 1705; this.match(SparkSqlParser.COMMA); - this.state = 1690; + this.state = 1706; this.constantList(); } } - this.state = 1695; + this.state = 1711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1696; + this.state = 1712; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6069,28 +6080,28 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new CreateFileFormatContext(this.context, this.state); this.enterRule(localContext, 58, SparkSqlParser.RULE_createFileFormat); try { - this.state = 1704; + this.state = 1720; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1698; + this.state = 1714; this.match(SparkSqlParser.KW_STORED); - this.state = 1699; + this.state = 1715; this.match(SparkSqlParser.KW_AS); - this.state = 1700; + this.state = 1716; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1701; + this.state = 1717; this.match(SparkSqlParser.KW_STORED); - this.state = 1702; + this.state = 1718; this.match(SparkSqlParser.KW_BY); - this.state = 1703; + this.state = 1719; this.storageHandler(); } break; @@ -6114,26 +6125,26 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new FileFormatContext(this.context, this.state); this.enterRule(localContext, 60, SparkSqlParser.RULE_fileFormat); try { - this.state = 1712; + this.state = 1728; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1706; + this.state = 1722; this.match(SparkSqlParser.KW_INPUTFORMAT); - this.state = 1707; + this.state = 1723; localContext._inFmt = this.stringLit(); - this.state = 1708; + this.state = 1724; this.match(SparkSqlParser.KW_OUTPUTFORMAT); - this.state = 1709; + this.state = 1725; localContext._outFmt = this.stringLit(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1711; + this.state = 1727; this.identifier(); } break; @@ -6159,18 +6170,18 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1714; + this.state = 1730; this.stringLit(); - this.state = 1718; + this.state = 1734; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1715; + this.state = 1731; this.match(SparkSqlParser.KW_WITH); - this.state = 1716; + this.state = 1732; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 1717; + this.state = 1733; this.propertyList(); } break; @@ -6197,16 +6208,16 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1778; + this.state = 1794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_INSERT: localContext = new InsertFromQueryContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1720; + this.state = 1736; this.insertInto(); - this.state = 1721; + this.state = 1737; this.query(); } break; @@ -6214,9 +6225,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MultipleInsertContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1723; + this.state = 1739; this.fromClause(); - this.state = 1727; + this.state = 1743; this.errorHandler.sync(this); alternative = 1; do { @@ -6224,9 +6235,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1724; + this.state = 1740; this.insertInto(); - this.state = 1725; + this.state = 1741; this.fromStatementBody(); } } @@ -6234,7 +6245,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1729; + this.state = 1745; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -6244,20 +6255,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeleteFromTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1731; + this.state = 1747; this.match(SparkSqlParser.KW_DELETE); - this.state = 1732; + this.state = 1748; this.match(SparkSqlParser.KW_FROM); - this.state = 1733; + this.state = 1749; this.tableName(); - this.state = 1734; + this.state = 1750; this.tableAlias(); - this.state = 1736; + this.state = 1752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1735; + this.state = 1751; this.whereClause(); } } @@ -6268,20 +6279,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UpdateTableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1738; + this.state = 1754; this.match(SparkSqlParser.KW_UPDATE); - this.state = 1739; + this.state = 1755; this.tableName(); - this.state = 1740; + this.state = 1756; this.tableAlias(); - this.state = 1741; + this.state = 1757; this.setClause(); - this.state = 1743; + this.state = 1759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1742; + this.state = 1758; this.whereClause(); } } @@ -6292,17 +6303,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MergeIntoTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1745; + this.state = 1761; this.match(SparkSqlParser.KW_MERGE); - this.state = 1746; + this.state = 1762; this.match(SparkSqlParser.KW_INTO); - this.state = 1747; + this.state = 1763; (localContext as MergeIntoTableContext)._target = this.tableName(); - this.state = 1748; + this.state = 1764; (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); - this.state = 1749; + this.state = 1765; this.match(SparkSqlParser.KW_USING); - this.state = 1755; + this.state = 1771; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -6649,72 +6660,72 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1750; + this.state = 1766; (localContext as MergeIntoTableContext)._source = this.identifierReference(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 1751; + this.state = 1767; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1752; + this.state = 1768; (localContext as MergeIntoTableContext)._sourceQuery = this.query(); - this.state = 1753; + this.state = 1769; this.match(SparkSqlParser.RIGHT_PAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1757; + this.state = 1773; (localContext as MergeIntoTableContext)._sourceAlias = this.tableAlias(); - this.state = 1758; + this.state = 1774; this.match(SparkSqlParser.KW_ON); - this.state = 1759; + this.state = 1775; (localContext as MergeIntoTableContext)._mergeCondition = this.booleanExpression(0); - this.state = 1763; + this.state = 1779; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1760; + this.state = 1776; this.matchedClause(); } } } - this.state = 1765; + this.state = 1781; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); } - this.state = 1769; + this.state = 1785; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1766; + this.state = 1782; this.notMatchedClause(); } } } - this.state = 1771; + this.state = 1787; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); } - this.state = 1775; + this.state = 1791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 343) { { { - this.state = 1772; + this.state = 1788; this.notMatchedBySourceClause(); } } - this.state = 1777; + this.state = 1793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6744,7 +6755,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1780; + this.state = 1796; this.identifierReference(); } } @@ -6768,7 +6779,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1782; + this.state = 1798; this.identifierReference(); } } @@ -6792,7 +6803,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1784; + this.state = 1800; this.tableIdentifier(); } } @@ -6816,7 +6827,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1786; + this.state = 1802; this.tableIdentifier(); } } @@ -6840,7 +6851,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1788; + this.state = 1804; this.viewIdentifier(); } } @@ -6864,7 +6875,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1790; + this.state = 1806; this.viewIdentifier(); } } @@ -6886,20 +6897,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 78, SparkSqlParser.RULE_columnName); try { - this.state = 1794; + this.state = 1810; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1792; + this.state = 1808; this.multipartIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1793; + this.state = 1809; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -6927,7 +6938,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1812; this.multipartIdentifier(); } } @@ -6952,21 +6963,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1798; + this.state = 1814; this.columnName(); - this.state = 1803; + this.state = 1819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1799; + this.state = 1815; this.match(SparkSqlParser.COMMA); - this.state = 1800; + this.state = 1816; this.columnName(); } } - this.state = 1805; + this.state = 1821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6992,7 +7003,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1806; + this.state = 1822; this.errorCapturingIdentifier(); } } @@ -7014,26 +7025,26 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new IdentifierReferenceContext(this.context, this.state); this.enterRule(localContext, 86, SparkSqlParser.RULE_identifierReference); try { - this.state = 1814; + this.state = 1830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1824; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 1809; + this.state = 1825; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1810; + this.state = 1826; this.expression(); - this.state = 1811; + this.state = 1827; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1813; + this.state = 1829; this.multipartIdentifier(); } break; @@ -7059,90 +7070,90 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1835; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1816; + this.state = 1832; this.match(SparkSqlParser.KW_ORDER); - this.state = 1817; + this.state = 1833; this.match(SparkSqlParser.KW_BY); - this.state = 1818; + this.state = 1834; this.orderOrSortByClause(); } break; } - this.state = 1824; + this.state = 1840; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1821; + this.state = 1837; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 1822; + this.state = 1838; this.match(SparkSqlParser.KW_BY); - this.state = 1823; + this.state = 1839; this.clusterOrDistributeBy(); } break; } - this.state = 1829; + this.state = 1845; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1826; + this.state = 1842; this.match(SparkSqlParser.KW_DISTRIBUTE); - this.state = 1827; + this.state = 1843; this.match(SparkSqlParser.KW_BY); - this.state = 1828; + this.state = 1844; this.clusterOrDistributeBy(); } break; } - this.state = 1834; + this.state = 1850; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1831; + this.state = 1847; this.match(SparkSqlParser.KW_SORT); - this.state = 1832; + this.state = 1848; this.match(SparkSqlParser.KW_BY); - this.state = 1833; + this.state = 1849; this.orderOrSortByClause(); } break; } - this.state = 1837; + this.state = 1853; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 1836; + this.state = 1852; this.windowClause(); } break; } - this.state = 1840; + this.state = 1856; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 1839; + this.state = 1855; this.limitClause(); } break; } - this.state = 1844; + this.state = 1860; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 1842; + this.state = 1858; this.match(SparkSqlParser.KW_OFFSET); - this.state = 1843; + this.state = 1859; localContext._offset = this.expression(); } break; @@ -7169,20 +7180,20 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1846; + this.state = 1862; this.match(SparkSqlParser.KW_LIMIT); - this.state = 1849; + this.state = 1865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1847; + this.state = 1863; this.match(SparkSqlParser.KW_ALL); } break; case 2: { - this.state = 1848; + this.state = 1864; localContext._limit = this.expression(); } break; @@ -7210,23 +7221,23 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1851; + this.state = 1867; this.sortItem(); - this.state = 1856; + this.state = 1872; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1852; + this.state = 1868; this.match(SparkSqlParser.COMMA); - this.state = 1853; + this.state = 1869; this.sortItem(); } } } - this.state = 1858; + this.state = 1874; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); } @@ -7253,23 +7264,23 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1859; + this.state = 1875; this.expression(); - this.state = 1864; + this.state = 1880; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1860; + this.state = 1876; this.match(SparkSqlParser.COMMA); - this.state = 1861; + this.state = 1877; this.expression(); } } } - this.state = 1866; + this.state = 1882; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); } @@ -7309,11 +7320,11 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 1868; + this.state = 1884; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1890; + this.state = 1906; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -7323,7 +7334,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1888; + this.state = 1904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: @@ -7331,11 +7342,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 1870; + this.state = 1886; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1871; + this.state = 1887; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 148 || _la === 270 || _la === 323)) { @@ -7345,17 +7356,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1873; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 1872; + this.state = 1888; this.setQuantifier(); } } - this.state = 1875; + this.state = 1891; localContext._right = this.queryTerm(4); } break; @@ -7364,23 +7375,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 1876; + this.state = 1892; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1877; + this.state = 1893; localContext._operator = this.match(SparkSqlParser.KW_INTERSECT); - this.state = 1879; + this.state = 1895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 1878; + this.state = 1894; this.setQuantifier(); } } - this.state = 1881; + this.state = 1897; localContext._right = this.queryTerm(3); } break; @@ -7389,11 +7400,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 1882; + this.state = 1898; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1883; + this.state = 1899; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 270 || _la === 323)) { @@ -7403,24 +7414,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1885; + this.state = 1901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 1884; + this.state = 1900; this.setQuantifier(); } } - this.state = 1887; + this.state = 1903; localContext._right = this.queryTerm(2); } break; } } } - this.state = 1892; + this.state = 1908; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); } @@ -7445,7 +7456,7 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 98, SparkSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1917; + this.state = 1933; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_MAP: @@ -7453,16 +7464,16 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 1893; + this.state = 1909; this.querySpecification(); } break; case SparkSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 1894; + this.state = 1910; this.fromClause(); - this.state = 1896; + this.state = 1912; this.errorHandler.sync(this); alternative = 1; do { @@ -7470,7 +7481,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1895; + this.state = 1911; this.fromStatementBody(); } } @@ -7478,7 +7489,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1898; + this.state = 1914; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -7487,49 +7498,49 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 3); { - this.state = 1900; + this.state = 1916; this.match(SparkSqlParser.KW_TABLE); - this.state = 1901; + this.state = 1917; this.tableName(); } break; case SparkSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 4); { - this.state = 1902; + this.state = 1918; this.match(SparkSqlParser.KW_VALUES); - this.state = 1903; + this.state = 1919; this.expression(); - this.state = 1908; + this.state = 1924; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1904; + this.state = 1920; this.match(SparkSqlParser.COMMA); - this.state = 1905; + this.state = 1921; this.expression(); } } } - this.state = 1910; + this.state = 1926; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } - this.state = 1911; + this.state = 1927; this.tableAlias(); } break; case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 5); { - this.state = 1913; + this.state = 1929; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1914; + this.state = 1930; this.query(); - this.state = 1915; + this.state = 1931; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -7558,28 +7569,28 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1921; + this.state = 1937; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 1919; + this.state = 1935; this.columnName(); } break; case 2: { - this.state = 1920; + this.state = 1936; this.expression(); } break; } - this.state = 1924; + this.state = 1940; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 1923; + this.state = 1939; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -7592,14 +7603,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1928; + this.state = 1944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 1926; + this.state = 1942; this.match(SparkSqlParser.KW_NULLS); - this.state = 1927; + this.state = 1943; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 157)) { @@ -7633,90 +7644,90 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 102, SparkSqlParser.RULE_fromStatementBody); try { let alternative: number; - this.state = 1957; + this.state = 1973; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1930; + this.state = 1946; this.transformClause(); - this.state = 1932; + this.state = 1948; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 1931; + this.state = 1947; this.whereClause(); } break; } - this.state = 1934; + this.state = 1950; this.queryOrganization(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1936; + this.state = 1952; this.selectClause(); - this.state = 1940; + this.state = 1956; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1937; + this.state = 1953; this.lateralView(); } } } - this.state = 1942; + this.state = 1958; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); } - this.state = 1944; + this.state = 1960; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 1943; + this.state = 1959; this.whereClause(); } break; } - this.state = 1947; + this.state = 1963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1946; + this.state = 1962; this.aggregationClause(); } break; } - this.state = 1950; + this.state = 1966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 1949; + this.state = 1965; this.havingClause(); } break; } - this.state = 1953; + this.state = 1969; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 1952; + this.state = 1968; this.windowClause(); } break; } - this.state = 1955; + this.state = 1971; this.queryOrganization(); } break; @@ -7741,76 +7752,76 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 104, SparkSqlParser.RULE_querySpecification); try { let alternative: number; - this.state = 2003; + this.state = 2019; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1959; + this.state = 1975; this.transformClause(); - this.state = 1961; + this.state = 1977; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1960; + this.state = 1976; this.fromClause(); } break; } - this.state = 1966; + this.state = 1982; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1963; + this.state = 1979; this.lateralView(); } } } - this.state = 1968; + this.state = 1984; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); } - this.state = 1970; + this.state = 1986; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 1969; + this.state = 1985; this.whereClause(); } break; } - this.state = 1973; + this.state = 1989; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 1972; + this.state = 1988; this.aggregationClause(); } break; } - this.state = 1976; + this.state = 1992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 1975; + this.state = 1991; this.havingClause(); } break; } - this.state = 1979; + this.state = 1995; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 1978; + this.state = 1994; this.windowClause(); } break; @@ -7820,70 +7831,70 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1981; + this.state = 1997; this.selectClause(); - this.state = 1983; + this.state = 1999; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1982; + this.state = 1998; this.fromClause(); } break; } - this.state = 1988; + this.state = 2004; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1985; + this.state = 2001; this.lateralView(); } } } - this.state = 1990; + this.state = 2006; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); } - this.state = 1992; + this.state = 2008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 1991; + this.state = 2007; this.whereClause(); } break; } - this.state = 1995; + this.state = 2011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 1994; + this.state = 2010; this.aggregationClause(); } break; } - this.state = 1998; + this.state = 2014; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 1997; + this.state = 2013; this.havingClause(); } break; } - this.state = 2001; + this.state = 2017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2000; + this.state = 2016; this.windowClause(); } break; @@ -7913,142 +7924,142 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2024; + this.state = 2040; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_SELECT: { - this.state = 2005; + this.state = 2021; this.match(SparkSqlParser.KW_SELECT); - this.state = 2006; + this.state = 2022; localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); - this.state = 2007; + this.state = 2023; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2009; + this.state = 2025; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2008; + this.state = 2024; this.setQuantifier(); } break; } - this.state = 2011; + this.state = 2027; this.expressionSeq(); - this.state = 2012; + this.state = 2028; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_MAP: { - this.state = 2014; + this.state = 2030; localContext._kind = this.match(SparkSqlParser.KW_MAP); - this.state = 2016; + this.state = 2032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2015; + this.state = 2031; this.setQuantifier(); } break; } - this.state = 2018; + this.state = 2034; this.expressionSeq(); } break; case SparkSqlParser.KW_REDUCE: { - this.state = 2019; + this.state = 2035; localContext._kind = this.match(SparkSqlParser.KW_REDUCE); - this.state = 2021; + this.state = 2037; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2020; + this.state = 2036; this.setQuantifier(); } break; } - this.state = 2023; + this.state = 2039; this.expressionSeq(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2027; + this.state = 2043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 2026; + this.state = 2042; localContext._inRowFormat = this.rowFormat(); } } - this.state = 2031; + this.state = 2047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 2029; + this.state = 2045; this.match(SparkSqlParser.KW_RECORDWRITER); - this.state = 2030; + this.state = 2046; localContext._recordWriter = this.stringLit(); } } - this.state = 2033; + this.state = 2049; this.match(SparkSqlParser.KW_USING); - this.state = 2034; + this.state = 2050; localContext._script = this.stringLit(); - this.state = 2047; + this.state = 2063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2035; + this.state = 2051; this.match(SparkSqlParser.KW_AS); - this.state = 2045; + this.state = 2061; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2036; + this.state = 2052; this.identifierSeq(); } break; case 2: { - this.state = 2037; + this.state = 2053; this.colTypeList(); } break; case 3: { { - this.state = 2038; + this.state = 2054; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2041; + this.state = 2057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2039; + this.state = 2055; this.identifierSeq(); } break; case 2: { - this.state = 2040; + this.state = 2056; this.colTypeList(); } break; } - this.state = 2043; + this.state = 2059; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -8057,24 +8068,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2050; + this.state = 2066; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2049; + this.state = 2065; localContext._outRowFormat = this.rowFormat(); } break; } - this.state = 2054; + this.state = 2070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2052; + this.state = 2068; this.match(SparkSqlParser.KW_RECORDREADER); - this.state = 2053; + this.state = 2069; localContext._recordReader = this.stringLit(); } break; @@ -8102,37 +8113,37 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2056; + this.state = 2072; this.match(SparkSqlParser.KW_SELECT); - this.state = 2060; + this.state = 2076; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 266, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2057; + this.state = 2073; localContext._hint = this.hint(); localContext._hints.push(localContext._hint); } } } - this.state = 2062; + this.state = 2078; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 266, this.context); } - this.state = 2064; + this.state = 2080; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: { - this.state = 2063; + this.state = 2079; this.setQuantifier(); } break; } - this.state = 2066; - this.namedExpressionSeq(); + this.state = 2082; + this.selectList(); } } catch (re) { @@ -8155,9 +8166,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2068; + this.state = 2084; this.match(SparkSqlParser.KW_SET); - this.state = 2069; + this.state = 2085; this.assignmentList(); } } @@ -8182,45 +8193,45 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2071; + this.state = 2087; this.match(SparkSqlParser.KW_WHEN); - this.state = 2072; + this.state = 2088; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2075; + this.state = 2091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2073; + this.state = 2089; this.match(SparkSqlParser.KW_AND); - this.state = 2074; + this.state = 2090; localContext._matchedCond = this.booleanExpression(0); } } - this.state = 2077; + this.state = 2093; this.match(SparkSqlParser.KW_THEN); - this.state = 2085; + this.state = 2101; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DELETE: { - this.state = 2078; + this.state = 2094; this.match(SparkSqlParser.KW_DELETE); } break; case SparkSqlParser.KW_UPDATE: { - this.state = 2079; + this.state = 2095; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2080; + this.state = 2096; this.match(SparkSqlParser.KW_SET); - this.state = 2083; + this.state = 2099; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.ASTERISK: { - this.state = 2081; + this.state = 2097; this.match(SparkSqlParser.ASTERISK); } break; @@ -8568,7 +8579,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2082; + this.state = 2098; this.assignmentList(); } break; @@ -8603,39 +8614,39 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2087; + this.state = 2103; this.match(SparkSqlParser.KW_WHEN); - this.state = 2088; + this.state = 2104; this.match(SparkSqlParser.KW_NOT); - this.state = 2089; + this.state = 2105; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2092; + this.state = 2108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2090; + this.state = 2106; this.match(SparkSqlParser.KW_BY); - this.state = 2091; + this.state = 2107; this.match(SparkSqlParser.KW_TARGET); } } - this.state = 2096; + this.state = 2112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2094; + this.state = 2110; this.match(SparkSqlParser.KW_AND); - this.state = 2095; + this.state = 2111; localContext._notMatchedCond = this.booleanExpression(0); } } - this.state = 2098; + this.state = 2114; this.match(SparkSqlParser.KW_THEN); - this.state = 2099; + this.state = 2115; this.notMatchedAction(); } } @@ -8660,46 +8671,46 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2101; + this.state = 2117; this.match(SparkSqlParser.KW_WHEN); - this.state = 2102; + this.state = 2118; this.match(SparkSqlParser.KW_NOT); - this.state = 2103; + this.state = 2119; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2104; + this.state = 2120; this.match(SparkSqlParser.KW_BY); - this.state = 2105; + this.state = 2121; this.match(SparkSqlParser.KW_SOURCE); - this.state = 2108; + this.state = 2124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2106; + this.state = 2122; this.match(SparkSqlParser.KW_AND); - this.state = 2107; + this.state = 2123; localContext._notMatchedBySourceCond = this.booleanExpression(0); } } - this.state = 2110; + this.state = 2126; this.match(SparkSqlParser.KW_THEN); - this.state = 2115; + this.state = 2131; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DELETE: { - this.state = 2111; + this.state = 2127; this.match(SparkSqlParser.KW_DELETE); } break; case SparkSqlParser.KW_UPDATE: { - this.state = 2112; + this.state = 2128; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2113; + this.state = 2129; this.match(SparkSqlParser.KW_SET); - this.state = 2114; + this.state = 2130; this.assignmentList(); } break; @@ -8727,52 +8738,52 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 118, SparkSqlParser.RULE_notMatchedAction); let _la: number; try { - this.state = 2135; + this.state = 2151; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 2133; this.match(SparkSqlParser.KW_INSERT); - this.state = 2118; + this.state = 2134; this.match(SparkSqlParser.ASTERISK); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2119; + this.state = 2135; this.match(SparkSqlParser.KW_INSERT); - this.state = 2120; + this.state = 2136; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2121; + this.state = 2137; this.multipartIdentifierList(); - this.state = 2122; + this.state = 2138; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2123; + this.state = 2139; this.match(SparkSqlParser.KW_VALUES); - this.state = 2124; + this.state = 2140; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2125; + this.state = 2141; this.expression(); - this.state = 2130; + this.state = 2146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2126; + this.state = 2142; this.match(SparkSqlParser.COMMA); - this.state = 2127; + this.state = 2143; this.expression(); } } - this.state = 2132; + this.state = 2148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2133; + this.state = 2149; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8799,21 +8810,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2137; + this.state = 2153; this.assignment(); - this.state = 2142; + this.state = 2158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2138; + this.state = 2154; this.match(SparkSqlParser.COMMA); - this.state = 2139; + this.state = 2155; this.assignment(); } } - this.state = 2144; + this.state = 2160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8839,11 +8850,11 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2161; localContext._key = this.multipartIdentifier(); - this.state = 2146; + this.state = 2162; this.match(SparkSqlParser.EQ); - this.state = 2147; + this.state = 2163; localContext._value = this.expression(); } } @@ -8867,9 +8878,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2149; + this.state = 2165; this.match(SparkSqlParser.KW_WHERE); - this.state = 2150; + this.state = 2166; this.booleanExpression(0); } } @@ -8893,9 +8904,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2152; + this.state = 2168; this.match(SparkSqlParser.KW_HAVING); - this.state = 2153; + this.state = 2169; this.booleanExpression(0); } } @@ -8920,37 +8931,37 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2155; + this.state = 2171; this.match(SparkSqlParser.HENT_START); - this.state = 2156; + this.state = 2172; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); - this.state = 2163; + this.state = 2179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { { - this.state = 2158; + this.state = 2174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4) { { - this.state = 2157; + this.state = 2173; this.match(SparkSqlParser.COMMA); } } - this.state = 2160; + this.state = 2176; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); } } - this.state = 2165; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2166; + this.state = 2182; this.match(SparkSqlParser.HENT_END); } } @@ -8973,44 +8984,44 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 130, SparkSqlParser.RULE_hintStatement); let _la: number; try { - this.state = 2181; + this.state = 2197; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2168; + this.state = 2184; localContext._hintName = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2169; + this.state = 2185; localContext._hintName = this.identifier(); - this.state = 2170; + this.state = 2186; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2171; + this.state = 2187; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); - this.state = 2176; + this.state = 2192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2172; + this.state = 2188; this.match(SparkSqlParser.COMMA); - this.state = 2173; + this.state = 2189; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); } } - this.state = 2178; + this.state = 2194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2179; + this.state = 2195; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9037,60 +9048,60 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2183; + this.state = 2199; this.match(SparkSqlParser.KW_FROM); - this.state = 2184; + this.state = 2200; this.relation(); - this.state = 2189; + this.state = 2205; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2185; + this.state = 2201; this.match(SparkSqlParser.COMMA); - this.state = 2186; + this.state = 2202; this.relation(); } } } - this.state = 2191; + this.state = 2207; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); } - this.state = 2195; + this.state = 2211; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2192; + this.state = 2208; this.lateralView(); } } } - this.state = 2197; + this.state = 2213; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); } - this.state = 2199; + this.state = 2215; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: { - this.state = 2198; + this.state = 2214; this.pivotClause(); } break; } - this.state = 2202; + this.state = 2218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2201; + this.state = 2217; this.unPivotClause(); } break; @@ -9116,23 +9127,23 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 134, SparkSqlParser.RULE_temporalClause); let _la: number; try { - this.state = 2221; + this.state = 2237; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2204; + this.state = 2220; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2207; + this.state = 2223; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -9141,23 +9152,23 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2208; + this.state = 2224; this.match(SparkSqlParser.KW_AS); - this.state = 2209; + this.state = 2225; this.match(SparkSqlParser.KW_OF); - this.state = 2212; + this.state = 2228; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 2210; + this.state = 2226; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 2211; + this.state = 2227; this.stringLit(); } break; @@ -9169,17 +9180,17 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2215; + this.state = 2231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2214; + this.state = 2230; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2217; + this.state = 2233; _la = this.tokenStream.LA(1); if(!(_la === 291 || _la === 303)) { this.errorHandler.recoverInline(this); @@ -9188,11 +9199,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2218; + this.state = 2234; this.match(SparkSqlParser.KW_AS); - this.state = 2219; + this.state = 2235; this.match(SparkSqlParser.KW_OF); - this.state = 2220; + this.state = 2236; localContext._timestamp = this.valueExpression(0); } break; @@ -9218,35 +9229,35 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2262; + this.state = 2278; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2239; this.match(SparkSqlParser.KW_GROUP); - this.state = 2224; + this.state = 2240; this.match(SparkSqlParser.KW_BY); - this.state = 2225; + this.state = 2241; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); - this.state = 2230; + this.state = 2246; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2226; + this.state = 2242; this.match(SparkSqlParser.COMMA); - this.state = 2227; + this.state = 2243; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); } } } - this.state = 2232; + this.state = 2248; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); } @@ -9255,78 +9266,78 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2233; + this.state = 2249; this.match(SparkSqlParser.KW_GROUP); - this.state = 2234; + this.state = 2250; this.match(SparkSqlParser.KW_BY); - this.state = 2235; + this.state = 2251; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); - this.state = 2240; + this.state = 2256; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2236; + this.state = 2252; this.match(SparkSqlParser.COMMA); - this.state = 2237; + this.state = 2253; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); } } } - this.state = 2242; + this.state = 2258; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } - this.state = 2260; + this.state = 2276; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2243; + this.state = 2259; this.match(SparkSqlParser.KW_WITH); - this.state = 2244; + this.state = 2260; localContext._kind = this.match(SparkSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 2245; + this.state = 2261; this.match(SparkSqlParser.KW_WITH); - this.state = 2246; + this.state = 2262; localContext._kind = this.match(SparkSqlParser.KW_CUBE); } break; case 3: { - this.state = 2247; + this.state = 2263; localContext._kind = this.match(SparkSqlParser.KW_GROUPING); - this.state = 2248; + this.state = 2264; this.match(SparkSqlParser.KW_SETS); - this.state = 2249; + this.state = 2265; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2250; + this.state = 2266; this.groupingSet(); - this.state = 2255; + this.state = 2271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2251; + this.state = 2267; this.match(SparkSqlParser.COMMA); - this.state = 2252; + this.state = 2268; this.groupingSet(); } } - this.state = 2257; + this.state = 2273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2258; + this.state = 2274; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9353,27 +9364,27 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new GroupByClauseContext(this.context, this.state); this.enterRule(localContext, 138, SparkSqlParser.RULE_groupByClause); try { - this.state = 2267; + this.state = 2283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2264; + this.state = 2280; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2265; + this.state = 2281; this.groupingAnalytics(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2266; + this.state = 2282; this.expression(); } break; @@ -9398,14 +9409,14 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 140, SparkSqlParser.RULE_groupingAnalytics); let _la: number; try { - this.state = 2300; + this.state = 2316; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CUBE: case SparkSqlParser.KW_ROLLUP: this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2285; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 256)) { this.errorHandler.recoverInline(this); @@ -9414,86 +9425,86 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2270; + this.state = 2286; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2271; + this.state = 2287; this.groupingSet(); - this.state = 2276; + this.state = 2292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2272; + this.state = 2288; this.match(SparkSqlParser.COMMA); - this.state = 2273; + this.state = 2289; this.groupingSet(); } } - this.state = 2278; + this.state = 2294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2279; + this.state = 2295; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 2); { - this.state = 2281; + this.state = 2297; this.match(SparkSqlParser.KW_GROUPING); - this.state = 2282; + this.state = 2298; this.match(SparkSqlParser.KW_SETS); - this.state = 2283; + this.state = 2299; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2286; + this.state = 2302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2284; + this.state = 2300; this.groupingAnalytics(); } break; case 2: { - this.state = 2285; + this.state = 2301; this.groupingSet(); } break; } - this.state = 2295; + this.state = 2311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2288; + this.state = 2304; this.match(SparkSqlParser.COMMA); - this.state = 2291; + this.state = 2307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { case 1: { - this.state = 2289; + this.state = 2305; this.groupingAnalytics(); } break; case 2: { - this.state = 2290; + this.state = 2306; this.groupingSet(); } break; } } } - this.state = 2297; + this.state = 2313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2298; + this.state = 2314; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9520,83 +9531,83 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 142, SparkSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2322; + this.state = 2338; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2318; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2303; + this.state = 2319; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2304; + this.state = 2320; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2319; + this.state = 2335; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2307; + this.state = 2323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2305; + this.state = 2321; this.columnName(); } break; case 2: { - this.state = 2306; + this.state = 2322; this.expression(); } break; } - this.state = 2316; + this.state = 2332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2309; + this.state = 2325; this.match(SparkSqlParser.COMMA); - this.state = 2312; + this.state = 2328; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2310; + this.state = 2326; this.columnName(); } break; case 2: { - this.state = 2311; + this.state = 2327; this.expression(); } break; } } } - this.state = 2318; + this.state = 2334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2321; + this.state = 2337; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9623,43 +9634,43 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2324; + this.state = 2340; this.match(SparkSqlParser.KW_PIVOT); - this.state = 2325; + this.state = 2341; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2326; + this.state = 2342; localContext._aggregates = this.namedExpressionSeq(); - this.state = 2327; + this.state = 2343; this.match(SparkSqlParser.KW_FOR); - this.state = 2328; + this.state = 2344; this.pivotColumn(); - this.state = 2329; + this.state = 2345; this.match(SparkSqlParser.KW_IN); - this.state = 2330; + this.state = 2346; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2331; + this.state = 2347; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); - this.state = 2336; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2332; + this.state = 2348; this.match(SparkSqlParser.COMMA); - this.state = 2333; + this.state = 2349; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); } } - this.state = 2338; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2339; + this.state = 2355; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2340; + this.state = 2356; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -9682,7 +9693,7 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 146, SparkSqlParser.RULE_pivotColumn); let _la: number; try { - this.state = 2354; + this.state = 2370; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10030,7 +10041,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2342; + this.state = 2358; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } @@ -10038,29 +10049,29 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2343; + this.state = 2359; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2344; + this.state = 2360; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); - this.state = 2349; + this.state = 2365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2345; + this.state = 2361; this.match(SparkSqlParser.COMMA); - this.state = 2346; + this.state = 2362; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } } - this.state = 2351; + this.state = 2367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2352; + this.state = 2368; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -10089,24 +10100,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2356; + this.state = 2372; this.expression(); - this.state = 2361; + this.state = 2377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2358; + this.state = 2374; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2357; + this.state = 2373; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2360; + this.state = 2376; this.identifier(); } } @@ -10134,14 +10145,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2363; + this.state = 2379; this.match(SparkSqlParser.KW_UNPIVOT); - this.state = 2366; + this.state = 2382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104 || _la === 141) { { - this.state = 2364; + this.state = 2380; _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 141)) { this.errorHandler.recoverInline(this); @@ -10150,14 +10161,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2365; + this.state = 2381; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 2368; + this.state = 2384; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2371; + this.state = 2387; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10504,37 +10515,37 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2369; + this.state = 2385; this.unPivotSingleValueColumnClause(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2370; + this.state = 2386; this.unPivotMultiValueColumnClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2373; + this.state = 2389; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2378; + this.state = 2394; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2375; + this.state = 2391; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2374; + this.state = 2390; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2377; + this.state = 2393; this.identifier(); } break; @@ -10562,37 +10573,37 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2380; + this.state = 2396; this.identifier(); - this.state = 2381; + this.state = 2397; this.match(SparkSqlParser.KW_FOR); - this.state = 2382; + this.state = 2398; this.identifier(); - this.state = 2383; + this.state = 2399; this.match(SparkSqlParser.KW_IN); - this.state = 2384; + this.state = 2400; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2385; + this.state = 2401; localContext._unPivotColumnAndAlias = this.unPivotColumnAndAlias(); localContext._unPivotColumns.push(localContext._unPivotColumnAndAlias); - this.state = 2390; + this.state = 2406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2386; + this.state = 2402; this.match(SparkSqlParser.COMMA); - this.state = 2387; + this.state = 2403; localContext._unPivotColumnAndAlias = this.unPivotColumnAndAlias(); localContext._unPivotColumns.push(localContext._unPivotColumnAndAlias); } } - this.state = 2392; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2393; + this.state = 2409; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10617,59 +10628,59 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2395; + this.state = 2411; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2396; + this.state = 2412; localContext._identifier = this.identifier(); localContext._unPivotValueColumns.push(localContext._identifier); - this.state = 2401; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2397; + this.state = 2413; this.match(SparkSqlParser.COMMA); - this.state = 2398; + this.state = 2414; localContext._identifier = this.identifier(); localContext._unPivotValueColumns.push(localContext._identifier); } } - this.state = 2403; + this.state = 2419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2404; + this.state = 2420; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2405; + this.state = 2421; this.match(SparkSqlParser.KW_FOR); - this.state = 2406; + this.state = 2422; this.identifier(); - this.state = 2407; + this.state = 2423; this.match(SparkSqlParser.KW_IN); - this.state = 2408; + this.state = 2424; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2409; + this.state = 2425; localContext._unPivotColumnSet = this.unPivotColumnSet(); localContext._unPivotColumnSets.push(localContext._unPivotColumnSet); - this.state = 2414; + this.state = 2430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2410; + this.state = 2426; this.match(SparkSqlParser.COMMA); - this.state = 2411; + this.state = 2427; localContext._unPivotColumnSet = this.unPivotColumnSet(); localContext._unPivotColumnSets.push(localContext._unPivotColumnSet); } } - this.state = 2416; + this.state = 2432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2417; + this.state = 2433; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10694,46 +10705,46 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2419; + this.state = 2435; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2420; + this.state = 2436; localContext._multipartIdentifier = this.multipartIdentifier(); localContext._unPivotColumns.push(localContext._multipartIdentifier); - this.state = 2425; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2421; + this.state = 2437; this.match(SparkSqlParser.COMMA); - this.state = 2422; + this.state = 2438; localContext._multipartIdentifier = this.multipartIdentifier(); localContext._unPivotColumns.push(localContext._multipartIdentifier); } } - this.state = 2427; + this.state = 2443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2428; + this.state = 2444; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2433; + this.state = 2449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2430; + this.state = 2446; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { case 1: { - this.state = 2429; + this.state = 2445; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2432; + this.state = 2448; this.identifier(); } } @@ -10761,24 +10772,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2435; + this.state = 2451; this.multipartIdentifier(); - this.state = 2440; + this.state = 2456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2437; + this.state = 2453; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { - this.state = 2436; + this.state = 2452; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2439; + this.state = 2455; this.identifier(); } } @@ -10805,11 +10816,11 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2442; + this.state = 2458; this.match(SparkSqlParser.KW_IF); - this.state = 2443; + this.state = 2459; this.match(SparkSqlParser.KW_NOT); - this.state = 2444; + this.state = 2460; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10833,9 +10844,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2446; + this.state = 2462; this.match(SparkSqlParser.KW_IF); - this.state = 2447; + this.state = 2463; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10861,88 +10872,88 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2449; + this.state = 2465; this.match(SparkSqlParser.KW_LATERAL); - this.state = 2450; + this.state = 2466; this.match(SparkSqlParser.KW_VIEW); - this.state = 2452; + this.state = 2468; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2451; + this.state = 2467; this.match(SparkSqlParser.KW_OUTER); } break; } - this.state = 2454; + this.state = 2470; this.viewName(); - this.state = 2455; + this.state = 2471; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2464; + this.state = 2480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2456; + this.state = 2472; this.expression(); - this.state = 2461; + this.state = 2477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2457; + this.state = 2473; this.match(SparkSqlParser.COMMA); - this.state = 2458; + this.state = 2474; this.expression(); } } - this.state = 2463; + this.state = 2479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2466; + this.state = 2482; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2467; + this.state = 2483; this.tableAlias(); - this.state = 2479; + this.state = 2495; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2469; + this.state = 2485; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2468; + this.state = 2484; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2471; + this.state = 2487; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); - this.state = 2476; + this.state = 2492; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2472; + this.state = 2488; this.match(SparkSqlParser.COMMA); - this.state = 2473; + this.state = 2489; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); } } } - this.state = 2478; + this.state = 2494; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); } @@ -10972,7 +10983,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2481; + this.state = 2497; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11002,38 +11013,38 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 168, SparkSqlParser.RULE_relation); try { let alternative: number; - this.state = 2496; + this.state = 2512; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2483; + this.state = 2499; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2485; + this.state = 2501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2484; + this.state = 2500; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2487; + this.state = 2503; this.relationPrimary(); - this.state = 2493; + this.state = 2509; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2491; + this.state = 2507; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11046,19 +11057,19 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_RIGHT: case SparkSqlParser.KW_SEMI: { - this.state = 2488; + this.state = 2504; this.joinRelation(); } break; case SparkSqlParser.KW_PIVOT: { - this.state = 2489; + this.state = 2505; this.pivotClause(); } break; case SparkSqlParser.KW_UNPIVOT: { - this.state = 2490; + this.state = 2506; this.unPivotClause(); } break; @@ -11067,7 +11078,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 2495; + this.state = 2511; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); } @@ -11093,7 +11104,7 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new JoinRelationContext(this.context, this.state); this.enterRule(localContext, 170, SparkSqlParser.RULE_joinRelation); try { - this.state = 2515; + this.state = 2531; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11107,29 +11118,29 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 2498; + this.state = 2514; this.joinType(); } - this.state = 2499; + this.state = 2515; this.match(SparkSqlParser.KW_JOIN); - this.state = 2501; + this.state = 2517; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 2500; + this.state = 2516; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2503; + this.state = 2519; localContext._right = this.relationPrimary(); - this.state = 2505; + this.state = 2521; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 2504; + this.state = 2520; this.joinCriteria(); } break; @@ -11139,23 +11150,23 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_NATURAL: this.enterOuterAlt(localContext, 2); { - this.state = 2507; + this.state = 2523; this.match(SparkSqlParser.KW_NATURAL); - this.state = 2508; + this.state = 2524; this.joinType(); - this.state = 2509; + this.state = 2525; this.match(SparkSqlParser.KW_JOIN); - this.state = 2511; + this.state = 2527; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: { - this.state = 2510; + this.state = 2526; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2513; + this.state = 2529; localContext._right = this.relationPrimary(); } break; @@ -11182,18 +11193,18 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 172, SparkSqlParser.RULE_joinType); let _la: number; try { - this.state = 2533; + this.state = 2549; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2518; + this.state = 2534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2517; + this.state = 2533; this.match(SparkSqlParser.KW_INNER); } } @@ -11203,21 +11214,21 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2520; + this.state = 2536; this.match(SparkSqlParser.KW_CROSS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2521; + this.state = 2537; this.match(SparkSqlParser.KW_LEFT); - this.state = 2523; + this.state = 2539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2522; + this.state = 2538; this.match(SparkSqlParser.KW_OUTER); } } @@ -11227,17 +11238,17 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2526; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2525; + this.state = 2541; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2528; + this.state = 2544; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 264)) { this.errorHandler.recoverInline(this); @@ -11251,7 +11262,7 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2529; + this.state = 2545; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 250)) { this.errorHandler.recoverInline(this); @@ -11260,12 +11271,12 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2531; + this.state = 2547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2530; + this.state = 2546; this.match(SparkSqlParser.KW_OUTER); } } @@ -11292,24 +11303,24 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new JoinCriteriaContext(this.context, this.state); this.enterRule(localContext, 174, SparkSqlParser.RULE_joinCriteria); try { - this.state = 2539; + this.state = 2555; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2535; + this.state = 2551; this.match(SparkSqlParser.KW_ON); - this.state = 2536; + this.state = 2552; this.booleanExpression(0); } break; case SparkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2537; + this.state = 2553; this.match(SparkSqlParser.KW_USING); - this.state = 2538; + this.state = 2554; this.identifierList(); } break; @@ -11338,34 +11349,34 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2541; + this.state = 2557; this.match(SparkSqlParser.KW_TABLESAMPLE); - this.state = 2542; + this.state = 2558; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2544; + this.state = 2560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2543; + this.state = 2559; this.sampleMethod(); } } - this.state = 2546; + this.state = 2562; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2551; + this.state = 2567; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2547; + this.state = 2563; this.match(SparkSqlParser.KW_REPEATABLE); - this.state = 2548; + this.state = 2564; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2549; + this.state = 2565; localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2550; + this.state = 2566; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11391,23 +11402,23 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 178, SparkSqlParser.RULE_sampleMethod); let _la: number; try { - this.state = 2577; + this.state = 2593; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2554; + this.state = 2570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 2553; + this.state = 2569; localContext._negativeSign = this.match(SparkSqlParser.MINUS); } } - this.state = 2556; + this.state = 2572; localContext._percentage = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 382 || _la === 384)) { @@ -11417,55 +11428,55 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2557; + this.state = 2573; this.match(SparkSqlParser.KW_PERCENTLIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2558; + this.state = 2574; this.expression(); - this.state = 2559; + this.state = 2575; this.match(SparkSqlParser.KW_ROWS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2561; + this.state = 2577; localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); - this.state = 2562; + this.state = 2578; localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2563; + this.state = 2579; this.match(SparkSqlParser.KW_OUT); - this.state = 2564; + this.state = 2580; this.match(SparkSqlParser.KW_OF); - this.state = 2565; + this.state = 2581; localContext._denominator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2574; + this.state = 2590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2566; + this.state = 2582; this.match(SparkSqlParser.KW_ON); - this.state = 2572; + this.state = 2588; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2567; + this.state = 2583; this.identifier(); } break; case 2: { - this.state = 2568; + this.state = 2584; this.qualifiedName(); - this.state = 2569; + this.state = 2585; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2570; + this.state = 2586; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11478,7 +11489,7 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2576; + this.state = 2592; localContext._bytes = this.expression(); } break; @@ -11504,11 +11515,11 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2579; + this.state = 2595; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2580; + this.state = 2596; this.identifierSeq(); - this.state = 2581; + this.state = 2597; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11533,25 +11544,25 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2583; + this.state = 2599; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); - this.state = 2588; + this.state = 2604; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2584; + this.state = 2600; this.match(SparkSqlParser.COMMA); - this.state = 2585; + this.state = 2601; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); } } } - this.state = 2590; + this.state = 2606; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); } @@ -11578,27 +11589,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2591; + this.state = 2607; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2592; + this.state = 2608; this.orderedIdentifier(); - this.state = 2597; + this.state = 2613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2593; + this.state = 2609; this.match(SparkSqlParser.COMMA); - this.state = 2594; + this.state = 2610; this.orderedIdentifier(); } } - this.state = 2599; + this.state = 2615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2600; + this.state = 2616; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11623,14 +11634,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2602; + this.state = 2618; localContext._ident = this.errorCapturingIdentifier(); - this.state = 2604; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 86) { { - this.state = 2603; + this.state = 2619; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -11666,27 +11677,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2606; + this.state = 2622; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2607; + this.state = 2623; this.identifierComment(); - this.state = 2612; + this.state = 2628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2608; + this.state = 2624; this.match(SparkSqlParser.COMMA); - this.state = 2609; + this.state = 2625; this.identifierComment(); } } - this.state = 2614; + this.state = 2630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2615; + this.state = 2631; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11711,16 +11722,16 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2633; this.columnNameCreate(); - this.state = 2620; + this.state = 2636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 2618; + this.state = 2634; this.match(SparkSqlParser.KW_COMMENT); - this.state = 2619; + this.state = 2635; localContext._comment = this.stringLit(); } } @@ -11744,175 +11755,195 @@ export class SparkSqlParser extends SQLParserBase { public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); this.enterRule(localContext, 192, SparkSqlParser.RULE_relationPrimary); - let _la: number; try { - let alternative: number; - this.state = 2677; + this.state = 2669; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: + localContext = new TableSourceContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2625; + this.state = 2641; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2622; + this.state = 2638; this.tableName(); } break; case 2: { - this.state = 2623; + this.state = 2639; this.viewName(); } break; case 3: { - this.state = 2624; + this.state = 2640; this.identifierReference(); } break; } - this.state = 2628; + this.state = 2644; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2627; + this.state = 2643; this.temporalClause(); } break; } - this.state = 2631; + this.state = 2647; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: { - this.state = 2630; + this.state = 2646; this.sample(); } break; } - this.state = 2633; + this.state = 2649; this.tableAlias(); } break; case 2: + localContext = new SubQueryTableSourceContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2635; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2636; - this.query(); - this.state = 2637; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2639; + this.state = 2651; + this.atomSubQueryTableSource(); + this.state = 2653; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2638; + this.state = 2652; this.sample(); } break; } - this.state = 2641; + this.state = 2655; this.tableAlias(); } break; case 3: + localContext = new JoinTableSourceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2643; + this.state = 2657; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2644; + this.state = 2658; this.relation(); - this.state = 2645; + this.state = 2659; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2647; + this.state = 2661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { - this.state = 2646; + this.state = 2660; this.sample(); } break; } - this.state = 2649; + this.state = 2663; this.tableAlias(); } break; case 4: + localContext = new InlineTableSourceContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2651; - this.match(SparkSqlParser.KW_VALUES); - this.state = 2652; - this.expression(); - this.state = 2657; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 2653; - this.match(SparkSqlParser.COMMA); - this.state = 2654; - this.expression(); - } - } - } - this.state = 2659; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); - } - this.state = 2660; + this.state = 2665; + this.inlineTable(); + this.state = 2666; this.tableAlias(); } break; case 5: + localContext = new FunctionTableSourceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2662; - this.functionName(); - this.state = 2663; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2672; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { + this.state = 2668; + this.functionTable(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); + this.enterRule(localContext, 194, SparkSqlParser.RULE_atomSubQueryTableSource); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2671; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2672; + this.query(); + this.state = 2673; + this.match(SparkSqlParser.RIGHT_PAREN); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public inlineTable(): InlineTableContext { + let localContext = new InlineTableContext(this.context, this.state); + this.enterRule(localContext, 196, SparkSqlParser.RULE_inlineTable); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 2675; + this.match(SparkSqlParser.KW_VALUES); + this.state = 2676; + this.expression(); + this.state = 2681; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 360, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { { - this.state = 2664; - this.functionTableArgument(); - this.state = 2669; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 2665; - this.match(SparkSqlParser.COMMA); - this.state = 2666; - this.functionTableArgument(); - } - } - this.state = 2671; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + { + this.state = 2677; + this.match(SparkSqlParser.COMMA); + this.state = 2678; + this.expression(); } } } - - this.state = 2674; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2675; - this.tableAlias(); - } - break; + this.state = 2683; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 360, this.context); + } } } catch (re) { @@ -11931,25 +11962,25 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableSubqueryArgument(): FunctionTableSubqueryArgumentContext { let localContext = new FunctionTableSubqueryArgumentContext(this.context, this.state); - this.enterRule(localContext, 194, SparkSqlParser.RULE_functionTableSubqueryArgument); + this.enterRule(localContext, 198, SparkSqlParser.RULE_functionTableSubqueryArgument); let _la: number; try { - this.state = 2698; + this.state = 2703; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 366, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2679; + this.state = 2684; this.match(SparkSqlParser.KW_TABLE); - this.state = 2680; + this.state = 2685; this.tableName(); - this.state = 2682; + this.state = 2687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2681; + this.state = 2686; this.tableArgumentPartitioning(); } } @@ -11959,20 +11990,20 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2684; + this.state = 2689; this.match(SparkSqlParser.KW_TABLE); - this.state = 2685; + this.state = 2690; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2686; + this.state = 2691; this.tableName(); - this.state = 2687; + this.state = 2692; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2689; + this.state = 2694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2688; + this.state = 2693; this.tableArgumentPartitioning(); } } @@ -11982,20 +12013,20 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2691; + this.state = 2696; this.match(SparkSqlParser.KW_TABLE); - this.state = 2692; + this.state = 2697; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2693; + this.state = 2698; this.query(); - this.state = 2694; + this.state = 2699; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2696; + this.state = 2701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2695; + this.state = 2700; this.tableArgumentPartitioning(); } } @@ -12020,22 +12051,22 @@ export class SparkSqlParser extends SQLParserBase { } public tableArgumentPartitioning(): TableArgumentPartitioningContext { let localContext = new TableArgumentPartitioningContext(this.context, this.state); - this.enterRule(localContext, 196, SparkSqlParser.RULE_tableArgumentPartitioning); + this.enterRule(localContext, 200, SparkSqlParser.RULE_tableArgumentPartitioning); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2719; + this.state = 2724; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_WITH: { { - this.state = 2700; + this.state = 2705; this.match(SparkSqlParser.KW_WITH); - this.state = 2701; + this.state = 2706; this.match(SparkSqlParser.KW_SINGLE); - this.state = 2702; + this.state = 2707; this.match(SparkSqlParser.KW_PARTITION); } } @@ -12044,7 +12075,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITION: { { - this.state = 2703; + this.state = 2708; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -12053,38 +12084,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2704; + this.state = 2709; this.match(SparkSqlParser.KW_BY); - this.state = 2717; + this.state = 2722; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 366, this.context) ) { case 1: { { { - this.state = 2705; + this.state = 2710; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2706; + this.state = 2711; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2711; + this.state = 2716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2707; + this.state = 2712; this.match(SparkSqlParser.COMMA); - this.state = 2708; + this.state = 2713; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2713; + this.state = 2718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2714; + this.state = 2719; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12092,7 +12123,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 2716; + this.state = 2721; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } @@ -12104,12 +12135,12 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2730; + this.state = 2735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 2721; + this.state = 2726; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -12118,27 +12149,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2722; + this.state = 2727; this.match(SparkSqlParser.KW_BY); { - this.state = 2728; + this.state = 2733; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { case 1: { { - this.state = 2723; + this.state = 2728; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2724; + this.state = 2729; this.orderOrSortByClause(); - this.state = 2725; + this.state = 2730; this.match(SparkSqlParser.RIGHT_PAREN); } } break; case 2: { - this.state = 2727; + this.state = 2732; this.sortItem(); } break; @@ -12165,15 +12196,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableNamedArgumentExpression(): FunctionTableNamedArgumentExpressionContext { let localContext = new FunctionTableNamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 198, SparkSqlParser.RULE_functionTableNamedArgumentExpression); + this.enterRule(localContext, 202, SparkSqlParser.RULE_functionTableNamedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2732; + this.state = 2737; localContext._key = this.identifier(); - this.state = 2733; + this.state = 2738; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2734; + this.state = 2739; localContext._table = this.functionTableSubqueryArgument(); } } @@ -12193,15 +12224,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableReferenceArgument(): FunctionTableReferenceArgumentContext { let localContext = new FunctionTableReferenceArgumentContext(this.context, this.state); - this.enterRule(localContext, 200, SparkSqlParser.RULE_functionTableReferenceArgument); + this.enterRule(localContext, 204, SparkSqlParser.RULE_functionTableReferenceArgument); try { - this.state = 2738; + this.state = 2743; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2736; + this.state = 2741; this.functionTableSubqueryArgument(); } break; @@ -12550,7 +12581,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2737; + this.state = 2742; this.functionTableNamedArgumentExpression(); } break; @@ -12574,22 +12605,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableArgument(): FunctionTableArgumentContext { let localContext = new FunctionTableArgumentContext(this.context, this.state); - this.enterRule(localContext, 202, SparkSqlParser.RULE_functionTableArgument); + this.enterRule(localContext, 206, SparkSqlParser.RULE_functionTableArgument); try { - this.state = 2742; + this.state = 2747; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2740; + this.state = 2745; this.functionTableReferenceArgument(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2741; + this.state = 2746; this.functionArgument(); } break; @@ -12609,35 +12640,116 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public functionTable(): FunctionTableContext { + let localContext = new FunctionTableContext(this.context, this.state); + this.enterRule(localContext, 208, SparkSqlParser.RULE_functionTable); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2749; + this.atomFunctionTable(); + this.state = 2750; + this.tableAlias(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public atomFunctionTable(): AtomFunctionTableContext { + let localContext = new AtomFunctionTableContext(this.context, this.state); + this.enterRule(localContext, 210, SparkSqlParser.RULE_atomFunctionTable); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2752; + this.functionName(); + this.state = 2753; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2762; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { + { + this.state = 2754; + this.functionTableArgument(); + this.state = 2759; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 4) { + { + { + this.state = 2755; + this.match(SparkSqlParser.COMMA); + this.state = 2756; + this.functionTableArgument(); + } + } + this.state = 2761; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + + this.state = 2764; + this.match(SparkSqlParser.RIGHT_PAREN); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 204, SparkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 212, SparkSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2751; + this.state = 2773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: { - this.state = 2745; + this.state = 2767; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 2744; + this.state = 2766; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2747; + this.state = 2769; localContext._alias = this.strictIdentifier(); - this.state = 2749; + this.state = 2771; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: { - this.state = 2748; + this.state = 2770; this.identifierList(); } break; @@ -12663,32 +12775,32 @@ export class SparkSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 206, SparkSqlParser.RULE_rowFormat); + this.enterRule(localContext, 214, SparkSqlParser.RULE_rowFormat); try { - this.state = 2802; + this.state = 2824; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2753; + this.state = 2775; this.match(SparkSqlParser.KW_ROW); - this.state = 2754; + this.state = 2776; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2755; + this.state = 2777; this.match(SparkSqlParser.KW_SERDE); - this.state = 2756; + this.state = 2778; localContext._name = this.stringLit(); - this.state = 2760; + this.state = 2782; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2757; + this.state = 2779; this.match(SparkSqlParser.KW_WITH); - this.state = 2758; + this.state = 2780; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 2759; + this.state = 2781; localContext._props = this.propertyList(); } break; @@ -12698,35 +12810,35 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2762; + this.state = 2784; this.match(SparkSqlParser.KW_ROW); - this.state = 2763; + this.state = 2785; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2764; + this.state = 2786; this.match(SparkSqlParser.KW_DELIMITED); - this.state = 2774; + this.state = 2796; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2765; + this.state = 2787; this.match(SparkSqlParser.KW_FIELDS); - this.state = 2766; + this.state = 2788; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2767; + this.state = 2789; this.match(SparkSqlParser.KW_BY); - this.state = 2768; + this.state = 2790; localContext._fieldsTerminatedBy = this.stringLit(); - this.state = 2772; + this.state = 2794; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2769; + this.state = 2791; this.match(SparkSqlParser.KW_ESCAPED); - this.state = 2770; + this.state = 2792; this.match(SparkSqlParser.KW_BY); - this.state = 2771; + this.state = 2793; localContext._escapedBy = this.stringLit(); } break; @@ -12734,70 +12846,70 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2781; + this.state = 2803; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2776; + this.state = 2798; this.match(SparkSqlParser.KW_COLLECTION); - this.state = 2777; + this.state = 2799; this.match(SparkSqlParser.KW_ITEMS); - this.state = 2778; + this.state = 2800; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2779; + this.state = 2801; this.match(SparkSqlParser.KW_BY); - this.state = 2780; + this.state = 2802; localContext._collectionItemsTerminatedBy = this.stringLit(); } break; } - this.state = 2788; + this.state = 2810; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2783; + this.state = 2805; this.match(SparkSqlParser.KW_MAP); - this.state = 2784; + this.state = 2806; this.match(SparkSqlParser.KW_KEYS); - this.state = 2785; + this.state = 2807; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2786; + this.state = 2808; this.match(SparkSqlParser.KW_BY); - this.state = 2787; + this.state = 2809; localContext._keysTerminatedBy = this.stringLit(); } break; } - this.state = 2794; + this.state = 2816; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2790; + this.state = 2812; this.match(SparkSqlParser.KW_LINES); - this.state = 2791; + this.state = 2813; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2792; + this.state = 2814; this.match(SparkSqlParser.KW_BY); - this.state = 2793; + this.state = 2815; localContext._linesSeparatedBy = this.stringLit(); } break; } - this.state = 2800; + this.state = 2822; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2796; + this.state = 2818; this.match(SparkSqlParser.KW_NULL); - this.state = 2797; + this.state = 2819; this.match(SparkSqlParser.KW_DEFINED); - this.state = 2798; + this.state = 2820; this.match(SparkSqlParser.KW_AS); - this.state = 2799; + this.state = 2821; localContext._nullDefinedAs = this.stringLit(); } break; @@ -12822,26 +12934,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierList(): MultipartIdentifierListContext { let localContext = new MultipartIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 208, SparkSqlParser.RULE_multipartIdentifierList); + this.enterRule(localContext, 216, SparkSqlParser.RULE_multipartIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2804; + this.state = 2826; this.multipartIdentifier(); - this.state = 2809; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2805; + this.state = 2827; this.match(SparkSqlParser.COMMA); - this.state = 2806; + this.state = 2828; this.multipartIdentifier(); } } - this.state = 2811; + this.state = 2833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12863,30 +12975,30 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifier(): MultipartIdentifierContext { let localContext = new MultipartIdentifierContext(this.context, this.state); - this.enterRule(localContext, 210, SparkSqlParser.RULE_multipartIdentifier); + this.enterRule(localContext, 218, SparkSqlParser.RULE_multipartIdentifier); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2812; + this.state = 2834; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); - this.state = 2817; + this.state = 2839; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2813; + this.state = 2835; this.match(SparkSqlParser.DOT); - this.state = 2814; + this.state = 2836; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); } } } - this.state = 2819; + this.state = 2841; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); } @@ -12908,26 +13020,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext { let localContext = new MultipartIdentifierPropertyListContext(this.context, this.state); - this.enterRule(localContext, 212, SparkSqlParser.RULE_multipartIdentifierPropertyList); + this.enterRule(localContext, 220, SparkSqlParser.RULE_multipartIdentifierPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2820; + this.state = 2842; this.multipartIdentifierProperty(); - this.state = 2825; + this.state = 2847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2821; + this.state = 2843; this.match(SparkSqlParser.COMMA); - this.state = 2822; + this.state = 2844; this.multipartIdentifierProperty(); } } - this.state = 2827; + this.state = 2849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12949,21 +13061,21 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierProperty(): MultipartIdentifierPropertyContext { let localContext = new MultipartIdentifierPropertyContext(this.context, this.state); - this.enterRule(localContext, 214, SparkSqlParser.RULE_multipartIdentifierProperty); + this.enterRule(localContext, 222, SparkSqlParser.RULE_multipartIdentifierProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2828; + this.state = 2850; this.multipartIdentifier(); - this.state = 2831; + this.state = 2853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 2829; + this.state = 2851; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 2830; + this.state = 2852; localContext._options = this.propertyList(); } } @@ -12986,23 +13098,23 @@ export class SparkSqlParser extends SQLParserBase { } public tableIdentifier(): TableIdentifierContext { let localContext = new TableIdentifierContext(this.context, this.state); - this.enterRule(localContext, 216, SparkSqlParser.RULE_tableIdentifier); + this.enterRule(localContext, 224, SparkSqlParser.RULE_tableIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2836; + this.state = 2858; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 2833; + this.state = 2855; localContext._db = this.errorCapturingIdentifier(); - this.state = 2834; + this.state = 2856; this.match(SparkSqlParser.DOT); } break; } - this.state = 2838; + this.state = 2860; localContext._table = this.errorCapturingIdentifier(); } } @@ -13022,23 +13134,23 @@ export class SparkSqlParser extends SQLParserBase { } public viewIdentifier(): ViewIdentifierContext { let localContext = new ViewIdentifierContext(this.context, this.state); - this.enterRule(localContext, 218, SparkSqlParser.RULE_viewIdentifier); + this.enterRule(localContext, 226, SparkSqlParser.RULE_viewIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2843; + this.state = 2865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 2840; + this.state = 2862; localContext._db = this.errorCapturingIdentifier(); - this.state = 2841; + this.state = 2863; this.match(SparkSqlParser.DOT); } break; } - this.state = 2845; + this.state = 2867; localContext._view = this.errorCapturingIdentifier(); } } @@ -13056,44 +13168,139 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 228, SparkSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2869; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 230, SparkSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2871; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 232, SparkSqlParser.RULE_tableAllColumns); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2878; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { + { + { + this.state = 2873; + this.qualifiedName(); + this.state = 2874; + this.match(SparkSqlParser.DOT); + } + } + this.state = 2880; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 2881; + this.match(SparkSqlParser.ASTERISK); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public namedExpression(): NamedExpressionContext { let localContext = new NamedExpressionContext(this.context, this.state); - this.enterRule(localContext, 220, SparkSqlParser.RULE_namedExpression); + this.enterRule(localContext, 234, SparkSqlParser.RULE_namedExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2849; + this.state = 2886; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 2847; - this.columnName(); + this.state = 2883; + this.tableAllColumns(); } break; case 2: { - this.state = 2848; - this.expression(); + this.state = 2884; + this.selectLiteralColumnName(); + } + break; + case 3: + { + this.state = 2885; + this.selectExpressionColumnName(); } break; } - this.state = 2858; + this.state = 2895; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 395, this.context) ) { case 1: { - this.state = 2852; + this.state = 2889; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 2851; + this.state = 2888; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2856; + this.state = 2893; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -13440,13 +13647,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2854; - localContext._name = this.errorCapturingIdentifier(); + this.state = 2891; + localContext._alias = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2855; + this.state = 2892; this.identifierList(); } break; @@ -13474,31 +13681,55 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpressionSeq(): NamedExpressionSeqContext { let localContext = new NamedExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 222, SparkSqlParser.RULE_namedExpressionSeq); + this.enterRule(localContext, 236, SparkSqlParser.RULE_namedExpressionSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2860; + this.state = 2897; this.namedExpression(); - this.state = 2865; + this.state = 2902; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 396, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2861; + this.state = 2898; this.match(SparkSqlParser.COMMA); - this.state = 2862; + this.state = 2899; this.namedExpression(); } } } - this.state = 2867; + this.state = 2904; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 396, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 238, SparkSqlParser.RULE_selectList); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2905; + this.namedExpressionSeq(); } } catch (re) { @@ -13517,34 +13748,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionFieldList(): PartitionFieldListContext { let localContext = new PartitionFieldListContext(this.context, this.state); - this.enterRule(localContext, 224, SparkSqlParser.RULE_partitionFieldList); + this.enterRule(localContext, 240, SparkSqlParser.RULE_partitionFieldList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2868; + this.state = 2907; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2869; + this.state = 2908; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 2874; + this.state = 2913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2870; + this.state = 2909; this.match(SparkSqlParser.COMMA); - this.state = 2871; + this.state = 2910; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 2876; + this.state = 2915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2877; + this.state = 2916; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13564,22 +13795,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionField(): PartitionFieldContext { let localContext = new PartitionFieldContext(this.context, this.state); - this.enterRule(localContext, 226, SparkSqlParser.RULE_partitionField); + this.enterRule(localContext, 242, SparkSqlParser.RULE_partitionField); try { - this.state = 2881; + this.state = 2920; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2879; + this.state = 2918; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2880; + this.state = 2919; this.columnType(); } break; @@ -13601,45 +13832,45 @@ export class SparkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 228, SparkSqlParser.RULE_transform); + this.enterRule(localContext, 244, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 2896; + this.state = 2935; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2883; + this.state = 2922; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2884; + this.state = 2923; localContext._transformName = this.identifier(); - this.state = 2885; + this.state = 2924; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2886; + this.state = 2925; this.transformArgument(); - this.state = 2891; + this.state = 2930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2887; + this.state = 2926; this.match(SparkSqlParser.COMMA); - this.state = 2888; + this.state = 2927; this.transformArgument(); } } - this.state = 2893; + this.state = 2932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2894; + this.state = 2933; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -13661,22 +13892,22 @@ export class SparkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 230, SparkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 246, SparkSqlParser.RULE_transformArgument); try { - this.state = 2900; + this.state = 2939; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2898; + this.state = 2937; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2899; + this.state = 2938; this.constant(); } break; @@ -13698,11 +13929,11 @@ export class SparkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 232, SparkSqlParser.RULE_expression); + this.enterRule(localContext, 248, SparkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2902; + this.state = 2941; this.booleanExpression(0); } } @@ -13722,15 +13953,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedArgumentExpression(): NamedArgumentExpressionContext { let localContext = new NamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 234, SparkSqlParser.RULE_namedArgumentExpression); + this.enterRule(localContext, 250, SparkSqlParser.RULE_namedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2904; + this.state = 2943; localContext._key = this.identifier(); - this.state = 2905; + this.state = 2944; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2906; + this.state = 2945; localContext._value = this.expression(); } } @@ -13750,22 +13981,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionArgument(): FunctionArgumentContext { let localContext = new FunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 236, SparkSqlParser.RULE_functionArgument); + this.enterRule(localContext, 252, SparkSqlParser.RULE_functionArgument); try { - this.state = 2910; + this.state = 2949; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2908; + this.state = 2947; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2909; + this.state = 2948; this.namedArgumentExpression(); } break; @@ -13787,26 +14018,26 @@ export class SparkSqlParser extends SQLParserBase { } public expressionSeq(): ExpressionSeqContext { let localContext = new ExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 238, SparkSqlParser.RULE_expressionSeq); + this.enterRule(localContext, 254, SparkSqlParser.RULE_expressionSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2912; + this.state = 2951; this.expression(); - this.state = 2917; + this.state = 2956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2913; + this.state = 2952; this.match(SparkSqlParser.COMMA); - this.state = 2914; + this.state = 2953; this.expression(); } } - this.state = 2919; + this.state = 2958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13838,19 +14069,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 240; - this.enterRecursionRule(localContext, 240, SparkSqlParser.RULE_booleanExpression, _p); + let _startState = 256; + this.enterRecursionRule(localContext, 256, SparkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2932; + this.state = 2971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: { - this.state = 2921; + this.state = 2960; _la = this.tokenStream.LA(1); if(!(_la === 197 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -13859,32 +14090,32 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2922; + this.state = 2961; this.booleanExpression(5); } break; case 2: { - this.state = 2923; + this.state = 2962; this.match(SparkSqlParser.KW_EXISTS); - this.state = 2924; + this.state = 2963; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2925; + this.state = 2964; this.query(); - this.state = 2926; + this.state = 2965; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 2928; + this.state = 2967; this.valueExpression(0); - this.state = 2930; + this.state = 2969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: { - this.state = 2929; + this.state = 2968; this.predicate(); } break; @@ -13893,9 +14124,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2942; + this.state = 2981; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 407, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -13903,21 +14134,21 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2940; + this.state = 2979; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { case 1: { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 2934; + this.state = 2973; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2935; + this.state = 2974; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 2936; + this.state = 2975; localContext._right = this.booleanExpression(3); } break; @@ -13926,22 +14157,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 2937; + this.state = 2976; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2938; + this.state = 2977; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 2939; + this.state = 2978; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 2944; + this.state = 2983; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 407, this.context); } } } @@ -13961,111 +14192,111 @@ export class SparkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 242, SparkSqlParser.RULE_predicate); + this.enterRule(localContext, 258, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3027; + this.state = 3066; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2946; + this.state = 2985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 2945; + this.state = 2984; this.match(SparkSqlParser.KW_NOT); } } - this.state = 2948; + this.state = 2987; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 2949; + this.state = 2988; localContext._lower = this.valueExpression(0); - this.state = 2950; + this.state = 2989; this.match(SparkSqlParser.KW_AND); - this.state = 2951; + this.state = 2990; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2954; + this.state = 2993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 2953; + this.state = 2992; this.match(SparkSqlParser.KW_NOT); } } - this.state = 2956; + this.state = 2995; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 2957; + this.state = 2996; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2958; + this.state = 2997; this.expression(); - this.state = 2963; + this.state = 3002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2959; + this.state = 2998; this.match(SparkSqlParser.COMMA); - this.state = 2960; + this.state = 2999; this.expression(); } } - this.state = 2965; + this.state = 3004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2966; + this.state = 3005; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2969; + this.state = 3008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 2968; + this.state = 3007; this.match(SparkSqlParser.KW_NOT); } } - this.state = 2971; + this.state = 3010; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 2972; + this.state = 3011; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2973; + this.state = 3012; this.query(); - this.state = 2974; + this.state = 3013; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2977; + this.state = 3016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 2976; + this.state = 3015; this.match(SparkSqlParser.KW_NOT); } } - this.state = 2979; + this.state = 3018; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 252)) { @@ -14075,24 +14306,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2980; + this.state = 3019; localContext._pattern = this.valueExpression(0); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2982; + this.state = 3021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 2981; + this.state = 3020; this.match(SparkSqlParser.KW_NOT); } } - this.state = 2984; + this.state = 3023; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14102,7 +14333,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2985; + this.state = 3024; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 16 || _la === 277)) { @@ -14112,40 +14343,40 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2999; + this.state = 3038; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { - this.state = 2986; + this.state = 3025; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2987; + this.state = 3026; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: { - this.state = 2988; + this.state = 3027; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2989; + this.state = 3028; this.expression(); - this.state = 2994; + this.state = 3033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2990; + this.state = 3029; this.match(SparkSqlParser.COMMA); - this.state = 2991; + this.state = 3030; this.expression(); } } - this.state = 2996; + this.state = 3035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2997; + this.state = 3036; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14155,17 +14386,17 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3002; + this.state = 3041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3001; + this.state = 3040; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3004; + this.state = 3043; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14175,16 +14406,16 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3005; + this.state = 3044; localContext._pattern = this.valueExpression(0); - this.state = 3008; + this.state = 3047; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: { - this.state = 3006; + this.state = 3045; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3007; + this.state = 3046; localContext._escapeChar = this.stringLit(); } break; @@ -14194,38 +14425,38 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3010; + this.state = 3049; this.match(SparkSqlParser.KW_IS); - this.state = 3012; + this.state = 3051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3011; + this.state = 3050; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3014; + this.state = 3053; localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3015; + this.state = 3054; this.match(SparkSqlParser.KW_IS); - this.state = 3017; + this.state = 3056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3016; + this.state = 3055; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3019; + this.state = 3058; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316 || _la === 325)) { @@ -14240,23 +14471,23 @@ export class SparkSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3020; + this.state = 3059; this.match(SparkSqlParser.KW_IS); - this.state = 3022; + this.state = 3061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3021; + this.state = 3060; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3024; + this.state = 3063; localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); - this.state = 3025; + this.state = 3064; this.match(SparkSqlParser.KW_FROM); - this.state = 3026; + this.state = 3065; localContext._right = this.valueExpression(0); } break; @@ -14288,25 +14519,25 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 244; - this.enterRecursionRule(localContext, 244, SparkSqlParser.RULE_valueExpression, _p); + let _startState = 260; + this.enterRecursionRule(localContext, 260, SparkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3033; + this.state = 3072; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 3030; + this.state = 3069; this.primaryExpression(0); } break; case 2: { - this.state = 3031; + this.state = 3070; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 35) !== 0))) { @@ -14316,15 +14547,15 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3032; + this.state = 3071; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3056; + this.state = 3095; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 424, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14332,19 +14563,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3054; + this.state = 3093; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3035; + this.state = 3074; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3036; + this.state = 3075; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 7) !== 0))) { @@ -14354,7 +14585,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3037; + this.state = 3076; localContext._right = this.valueExpression(7); } break; @@ -14363,11 +14594,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3038; + this.state = 3077; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3039; + this.state = 3078; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 259) !== 0))) { @@ -14377,7 +14608,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3040; + this.state = 3079; localContext._right = this.valueExpression(6); } break; @@ -14386,13 +14617,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3041; + this.state = 3080; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3042; + this.state = 3081; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3043; + this.state = 3082; localContext._right = this.valueExpression(5); } break; @@ -14401,13 +14632,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3044; + this.state = 3083; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3045; + this.state = 3084; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3046; + this.state = 3085; localContext._right = this.valueExpression(4); } break; @@ -14416,13 +14647,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3047; + this.state = 3086; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3048; + this.state = 3087; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3049; + this.state = 3088; localContext._right = this.valueExpression(3); } break; @@ -14431,22 +14662,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3050; + this.state = 3089; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3051; + this.state = 3090; this.comparisonOperator(); - this.state = 3052; + this.state = 3091; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3058; + this.state = 3097; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 424, this.context); } } } @@ -14466,12 +14697,12 @@ export class SparkSqlParser extends SQLParserBase { } public datetimeUnit(): DatetimeUnitContext { let localContext = new DatetimeUnitContext(this.context, this.state); - this.enterRule(localContext, 246, SparkSqlParser.RULE_datetimeUnit); + this.enterRule(localContext, 262, SparkSqlParser.RULE_datetimeUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3059; + this.state = 3098; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 85) !== 0) || _la === 231 || _la === 259 || _la === 341 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -14508,19 +14739,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 248; - this.enterRecursionRule(localContext, 248, SparkSqlParser.RULE_primaryExpression, _p); + let _startState = 264; + this.enterRecursionRule(localContext, 264, SparkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3310; + this.state = 3349; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3062; + this.state = 3101; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 268 || _la === 331)) { @@ -14534,7 +14765,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 3063; + this.state = 3102; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 75 || _la === 306)) { @@ -14544,9 +14775,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3064; + this.state = 3103; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3067; + this.state = 3106; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14561,35 +14792,35 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3065; + this.state = 3104; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3066; + this.state = 3105; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3069; + this.state = 3108; this.match(SparkSqlParser.COMMA); - this.state = 3070; + this.state = 3109; localContext._unitsAmount = this.valueExpression(0); - this.state = 3071; + this.state = 3110; this.match(SparkSqlParser.COMMA); - this.state = 3072; + this.state = 3111; localContext._timestamp = this.valueExpression(0); - this.state = 3073; + this.state = 3112; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3075; + this.state = 3114; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 76 || _la === 77 || _la === 302 || _la === 307)) { @@ -14599,9 +14830,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3076; + this.state = 3115; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3079; + this.state = 3118; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14616,105 +14847,105 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3077; + this.state = 3116; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3078; + this.state = 3117; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3081; + this.state = 3120; this.match(SparkSqlParser.COMMA); - this.state = 3082; + this.state = 3121; localContext._startTimestamp = this.valueExpression(0); - this.state = 3083; + this.state = 3122; this.match(SparkSqlParser.COMMA); - this.state = 3084; + this.state = 3123; localContext._endTimestamp = this.valueExpression(0); - this.state = 3085; + this.state = 3124; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3087; + this.state = 3126; this.match(SparkSqlParser.KW_CASE); - this.state = 3089; + this.state = 3128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3088; + this.state = 3127; this.whenClause(); } } - this.state = 3091; + this.state = 3130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3095; + this.state = 3134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3093; + this.state = 3132; this.match(SparkSqlParser.KW_ELSE); - this.state = 3094; + this.state = 3133; localContext._elseExpression = this.expression(); } } - this.state = 3097; + this.state = 3136; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3099; + this.state = 3138; this.match(SparkSqlParser.KW_CASE); - this.state = 3100; + this.state = 3139; this.expression(); - this.state = 3102; + this.state = 3141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3101; + this.state = 3140; this.whenClause(); } } - this.state = 3104; + this.state = 3143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3108; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3106; + this.state = 3145; this.match(SparkSqlParser.KW_ELSE); - this.state = 3107; + this.state = 3146; localContext._elseExpression = this.expression(); } } - this.state = 3110; + this.state = 3149; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3112; + this.state = 3151; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 318)) { @@ -14724,280 +14955,280 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3113; + this.state = 3152; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3114; + this.state = 3153; this.expression(); - this.state = 3115; + this.state = 3154; this.match(SparkSqlParser.KW_AS); - this.state = 3116; + this.state = 3155; this.dataType(); - this.state = 3117; + this.state = 3156; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3119; + this.state = 3158; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3120; + this.state = 3159; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3129; + this.state = 3168; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: { - this.state = 3121; + this.state = 3160; this.namedExpression(); - this.state = 3126; + this.state = 3165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3122; + this.state = 3161; this.match(SparkSqlParser.COMMA); - this.state = 3123; + this.state = 3162; this.namedExpression(); } } - this.state = 3128; + this.state = 3167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3131; + this.state = 3170; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3132; + this.state = 3171; this.match(SparkSqlParser.KW_FIRST); - this.state = 3133; + this.state = 3172; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3134; + this.state = 3173; this.expression(); - this.state = 3137; + this.state = 3176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3135; + this.state = 3174; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3136; + this.state = 3175; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3139; + this.state = 3178; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3141; + this.state = 3180; this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3142; + this.state = 3181; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3143; + this.state = 3182; this.expression(); - this.state = 3146; + this.state = 3185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3144; + this.state = 3183; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3145; + this.state = 3184; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3148; + this.state = 3187; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3150; + this.state = 3189; this.match(SparkSqlParser.KW_LAST); - this.state = 3151; + this.state = 3190; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3152; + this.state = 3191; this.expression(); - this.state = 3155; + this.state = 3194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3153; + this.state = 3192; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3154; + this.state = 3193; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3157; + this.state = 3196; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3159; + this.state = 3198; this.match(SparkSqlParser.KW_POSITION); - this.state = 3160; + this.state = 3199; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3161; + this.state = 3200; localContext._substr = this.valueExpression(0); - this.state = 3162; + this.state = 3201; this.match(SparkSqlParser.KW_IN); - this.state = 3163; + this.state = 3202; localContext._str = this.valueExpression(0); - this.state = 3164; + this.state = 3203; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3166; + this.state = 3205; this.constant(); } break; case 13: { - this.state = 3167; + this.state = 3206; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3168; + this.state = 3207; this.qualifiedName(); - this.state = 3169; + this.state = 3208; this.match(SparkSqlParser.DOT); - this.state = 3170; + this.state = 3209; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3172; + this.state = 3211; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3173; + this.state = 3212; this.namedExpression(); - this.state = 3176; + this.state = 3215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3174; + this.state = 3213; this.match(SparkSqlParser.COMMA); - this.state = 3175; + this.state = 3214; this.namedExpression(); } } - this.state = 3178; + this.state = 3217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3180; + this.state = 3219; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3182; + this.state = 3221; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3183; + this.state = 3222; this.query(); - this.state = 3184; + this.state = 3223; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3186; + this.state = 3225; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3187; + this.state = 3226; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3188; + this.state = 3227; this.expression(); - this.state = 3189; + this.state = 3228; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3191; + this.state = 3230; this.functionName(); - this.state = 3192; + this.state = 3231; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3204; + this.state = 3243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 3194; + this.state = 3233; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3193; + this.state = 3232; this.setQuantifier(); } break; } - this.state = 3196; + this.state = 3235; this.functionArgument(); - this.state = 3201; + this.state = 3240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3197; + this.state = 3236; this.match(SparkSqlParser.COMMA); - this.state = 3198; + this.state = 3237; this.functionArgument(); } } - this.state = 3203; + this.state = 3242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3206; + this.state = 3245; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3213; + this.state = 3252; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3207; + this.state = 3246; this.match(SparkSqlParser.KW_FILTER); - this.state = 3208; + this.state = 3247; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3209; + this.state = 3248; this.match(SparkSqlParser.KW_WHERE); - this.state = 3210; + this.state = 3249; localContext._where = this.booleanExpression(0); - this.state = 3211; + this.state = 3250; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3217; + this.state = 3256; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3215; + this.state = 3254; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 138 || _la === 246)) { @@ -15007,19 +15238,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3216; + this.state = 3255; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3221; + this.state = 3260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3219; + this.state = 3258; this.match(SparkSqlParser.KW_OVER); - this.state = 3220; + this.state = 3259; this.windowSpec(); } break; @@ -15028,79 +15259,79 @@ export class SparkSqlParser extends SQLParserBase { break; case 19: { - this.state = 3223; + this.state = 3262; this.identifier(); - this.state = 3224; + this.state = 3263; this.match(SparkSqlParser.ARROW); - this.state = 3225; + this.state = 3264; this.expression(); } break; case 20: { - this.state = 3227; + this.state = 3266; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3228; + this.state = 3267; this.identifier(); - this.state = 3231; + this.state = 3270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3229; + this.state = 3268; this.match(SparkSqlParser.COMMA); - this.state = 3230; + this.state = 3269; this.identifier(); } } - this.state = 3233; + this.state = 3272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3235; + this.state = 3274; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3236; + this.state = 3275; this.match(SparkSqlParser.ARROW); - this.state = 3237; + this.state = 3276; this.expression(); } break; case 21: { - this.state = 3239; + this.state = 3278; this.columnNamePath(); } break; case 22: { - this.state = 3240; + this.state = 3279; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3241; + this.state = 3280; this.expression(); - this.state = 3242; + this.state = 3281; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3244; + this.state = 3283; this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3245; + this.state = 3284; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3246; + this.state = 3285; localContext._field = this.identifier(); - this.state = 3247; + this.state = 3286; this.match(SparkSqlParser.KW_FROM); - this.state = 3248; + this.state = 3287; localContext._source = this.valueExpression(0); - this.state = 3249; + this.state = 3288; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3251; + this.state = 3290; _la = this.tokenStream.LA(1); if(!(_la === 287 || _la === 288)) { this.errorHandler.recoverInline(this); @@ -15109,11 +15340,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3252; + this.state = 3291; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3253; + this.state = 3292; localContext._str = this.valueExpression(0); - this.state = 3254; + this.state = 3293; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -15122,14 +15353,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3255; + this.state = 3294; localContext._pos = this.valueExpression(0); - this.state = 3258; + this.state = 3297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3256; + this.state = 3295; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -15138,27 +15369,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3257; + this.state = 3296; localContext._len = this.valueExpression(0); } } - this.state = 3260; + this.state = 3299; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3262; + this.state = 3301; this.match(SparkSqlParser.KW_TRIM); - this.state = 3263; + this.state = 3302; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3265; + this.state = 3304; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3264; + this.state = 3303; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 28 || _la === 160 || _la === 311)) { @@ -15171,59 +15402,59 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 3268; + this.state = 3307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 536839207) !== 0)) { { - this.state = 3267; + this.state = 3306; localContext._trimStr = this.valueExpression(0); } } - this.state = 3270; + this.state = 3309; this.match(SparkSqlParser.KW_FROM); - this.state = 3271; + this.state = 3310; localContext._srcStr = this.valueExpression(0); - this.state = 3272; + this.state = 3311; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3274; + this.state = 3313; this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3275; + this.state = 3314; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3276; + this.state = 3315; localContext._input = this.valueExpression(0); - this.state = 3277; + this.state = 3316; this.match(SparkSqlParser.KW_PLACING); - this.state = 3278; + this.state = 3317; localContext._replace = this.valueExpression(0); - this.state = 3279; + this.state = 3318; this.match(SparkSqlParser.KW_FROM); - this.state = 3280; + this.state = 3319; localContext._position = this.valueExpression(0); - this.state = 3283; + this.state = 3322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3281; + this.state = 3320; this.match(SparkSqlParser.KW_FOR); - this.state = 3282; + this.state = 3321; localContext._length = this.valueExpression(0); } } - this.state = 3285; + this.state = 3324; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3287; + this.state = 3326; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 220 || _la === 221)) { @@ -15233,52 +15464,52 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3288; + this.state = 3327; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3289; + this.state = 3328; localContext._percentage = this.valueExpression(0); - this.state = 3290; + this.state = 3329; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3291; + this.state = 3330; this.match(SparkSqlParser.KW_WITHIN); - this.state = 3292; + this.state = 3331; this.match(SparkSqlParser.KW_GROUP); - this.state = 3293; + this.state = 3332; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3294; + this.state = 3333; this.match(SparkSqlParser.KW_ORDER); - this.state = 3295; + this.state = 3334; this.match(SparkSqlParser.KW_BY); - this.state = 3296; + this.state = 3335; this.sortItem(); - this.state = 3297; + this.state = 3336; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3304; + this.state = 3343; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { case 1: { - this.state = 3298; + this.state = 3337; this.match(SparkSqlParser.KW_FILTER); - this.state = 3299; + this.state = 3338; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3300; + this.state = 3339; this.match(SparkSqlParser.KW_WHERE); - this.state = 3301; + this.state = 3340; localContext._where = this.booleanExpression(0); - this.state = 3302; + this.state = 3341; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3308; + this.state = 3347; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3306; + this.state = 3345; this.match(SparkSqlParser.KW_OVER); - this.state = 3307; + this.state = 3346; this.windowSpec(); } break; @@ -15287,9 +15518,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3322; + this.state = 3361; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 452, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -15297,23 +15528,23 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3320; + this.state = 3359; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3312; + this.state = 3351; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3313; + this.state = 3352; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3314; + this.state = 3353; localContext._index = this.valueExpression(0); - this.state = 3315; + this.state = 3354; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15322,22 +15553,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3317; + this.state = 3356; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3318; + this.state = 3357; this.match(SparkSqlParser.DOT); - this.state = 3319; + this.state = 3358; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3324; + this.state = 3363; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 452, this.context); } } } @@ -15357,57 +15588,57 @@ export class SparkSqlParser extends SQLParserBase { } public literalType(): LiteralTypeContext { let localContext = new LiteralTypeContext(this.context, this.state); - this.enterRule(localContext, 250, SparkSqlParser.RULE_literalType); + this.enterRule(localContext, 266, SparkSqlParser.RULE_literalType); try { - this.state = 3332; + this.state = 3371; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3325; + this.state = 3364; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3326; + this.state = 3365; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3327; + this.state = 3366; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3328; + this.state = 3367; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3329; + this.state = 3368; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3330; + this.state = 3369; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3331; + this.state = 3370; localContext._unsupportedType = this.identifier(); } break; @@ -15429,69 +15660,69 @@ export class SparkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 252, SparkSqlParser.RULE_constant); + this.enterRule(localContext, 268, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3349; + this.state = 3388; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3334; + this.state = 3373; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3335; + this.state = 3374; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3336; + this.state = 3375; this.match(SparkSqlParser.COLON); - this.state = 3337; + this.state = 3376; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3338; + this.state = 3377; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3339; + this.state = 3378; this.literalType(); - this.state = 3340; + this.state = 3379; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3342; + this.state = 3381; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3343; + this.state = 3382; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3345; + this.state = 3384; this.errorHandler.sync(this); alternative = 1; do { @@ -15499,7 +15730,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3344; + this.state = 3383; this.stringLit(); } } @@ -15507,9 +15738,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3347; + this.state = 3386; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -15531,12 +15762,12 @@ export class SparkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 254, SparkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 270, SparkSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3351; + this.state = 3390; _la = this.tokenStream.LA(1); if(!(((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -15563,12 +15794,12 @@ export class SparkSqlParser extends SQLParserBase { } public arithmeticOperator(): ArithmeticOperatorContext { let localContext = new ArithmeticOperatorContext(this.context, this.state); - this.enterRule(localContext, 256, SparkSqlParser.RULE_arithmeticOperator); + this.enterRule(localContext, 272, SparkSqlParser.RULE_arithmeticOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3353; + this.state = 3392; _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -15595,12 +15826,12 @@ export class SparkSqlParser extends SQLParserBase { } public predicateOperator(): PredicateOperatorContext { let localContext = new PredicateOperatorContext(this.context, this.state); - this.enterRule(localContext, 258, SparkSqlParser.RULE_predicateOperator); + this.enterRule(localContext, 274, SparkSqlParser.RULE_predicateOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3355; + this.state = 3394; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 140 || _la === 197 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -15627,12 +15858,12 @@ export class SparkSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 260, SparkSqlParser.RULE_booleanValue); + this.enterRule(localContext, 276, SparkSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3357; + this.state = 3396; _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316)) { this.errorHandler.recoverInline(this); @@ -15659,24 +15890,24 @@ export class SparkSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 262, SparkSqlParser.RULE_interval); + this.enterRule(localContext, 278, SparkSqlParser.RULE_interval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3359; + this.state = 3398; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3362; + this.state = 3401; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { - this.state = 3360; + this.state = 3399; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3361; + this.state = 3400; this.errorCapturingUnitToUnitInterval(); } break; @@ -15699,18 +15930,18 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 264, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 280, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3364; + this.state = 3403; localContext._body = this.multiUnitsInterval(); - this.state = 3366; + this.state = 3405; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: { - this.state = 3365; + this.state = 3404; this.unitToUnitInterval(); } break; @@ -15733,12 +15964,12 @@ export class SparkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 266, SparkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 282, SparkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3371; + this.state = 3410; this.errorHandler.sync(this); alternative = 1; do { @@ -15746,9 +15977,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3368; + this.state = 3407; this.intervalValue(); - this.state = 3369; + this.state = 3408; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -15757,9 +15988,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3373; + this.state = 3412; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 458, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -15779,24 +16010,24 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 268, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 284, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3375; + this.state = 3414; localContext._body = this.unitToUnitInterval(); - this.state = 3378; + this.state = 3417; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: { - this.state = 3376; + this.state = 3415; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3377; + this.state = 3416; localContext._error2 = this.unitToUnitInterval(); } break; @@ -15819,17 +16050,17 @@ export class SparkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 270, SparkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 286, SparkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3380; + this.state = 3419; localContext._value = this.intervalValue(); - this.state = 3381; + this.state = 3420; this.unitInUnitToUnit(); - this.state = 3382; + this.state = 3421; this.match(SparkSqlParser.KW_TO); - this.state = 3383; + this.state = 3422; this.unitInUnitToUnit(); } } @@ -15849,17 +16080,17 @@ export class SparkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 272, SparkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 288, SparkSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3386; + this.state = 3425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361 || _la === 362) { { - this.state = 3385; + this.state = 3424; _la = this.tokenStream.LA(1); if(!(_la === 361 || _la === 362)) { this.errorHandler.recoverInline(this); @@ -15871,25 +16102,25 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 3391; + this.state = 3430; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3388; + this.state = 3427; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3389; + this.state = 3428; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3390; + this.state = 3429; this.stringLit(); } break; @@ -15914,12 +16145,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInMultiUnits(): UnitInMultiUnitsContext { let localContext = new UnitInMultiUnitsContext(this.context, this.state); - this.enterRule(localContext, 274, SparkSqlParser.RULE_unitInMultiUnits); + this.enterRule(localContext, 290, SparkSqlParser.RULE_unitInMultiUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3393; + this.state = 3432; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 12543) !== 0) || _la === 259 || _la === 260 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -15946,12 +16177,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInUnitToUnit(): UnitInUnitToUnitContext { let localContext = new UnitInUnitToUnitContext(this.context, this.state); - this.enterRule(localContext, 276, SparkSqlParser.RULE_unitInUnitToUnit); + this.enterRule(localContext, 292, SparkSqlParser.RULE_unitInUnitToUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3395; + this.state = 3434; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 186 || _la === 259 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -15978,24 +16209,24 @@ export class SparkSqlParser extends SQLParserBase { } public colPosition(): ColPositionContext { let localContext = new ColPositionContext(this.context, this.state); - this.enterRule(localContext, 278, SparkSqlParser.RULE_colPosition); + this.enterRule(localContext, 294, SparkSqlParser.RULE_colPosition); try { - this.state = 3400; + this.state = 3439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3397; + this.state = 3436; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3398; + this.state = 3437; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3399; + this.state = 3438; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -16019,218 +16250,218 @@ export class SparkSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 280, SparkSqlParser.RULE_type); + this.enterRule(localContext, 296, SparkSqlParser.RULE_type); try { - this.state = 3432; + this.state = 3471; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3402; + this.state = 3441; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3403; + this.state = 3442; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3404; + this.state = 3443; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3405; + this.state = 3444; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3406; + this.state = 3445; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3407; + this.state = 3446; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3408; + this.state = 3447; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3409; + this.state = 3448; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3410; + this.state = 3449; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3411; + this.state = 3450; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3412; + this.state = 3451; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3413; + this.state = 3452; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3414; + this.state = 3453; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3415; + this.state = 3454; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3416; + this.state = 3455; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3417; + this.state = 3456; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3418; + this.state = 3457; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3419; + this.state = 3458; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3420; + this.state = 3459; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3421; + this.state = 3460; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3422; + this.state = 3461; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3423; + this.state = 3462; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3424; + this.state = 3463; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3425; + this.state = 3464; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3426; + this.state = 3465; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3427; + this.state = 3466; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3428; + this.state = 3467; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3429; + this.state = 3468; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3430; + this.state = 3469; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3431; + this.state = 3470; localContext._unsupportedType = this.identifier(); } break; @@ -16252,87 +16483,87 @@ export class SparkSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 282, SparkSqlParser.RULE_dataType); + this.enterRule(localContext, 298, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3487; + this.state = 3526; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3434; + this.state = 3473; localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3435; + this.state = 3474; this.match(SparkSqlParser.LT); - this.state = 3436; + this.state = 3475; this.dataType(); - this.state = 3437; + this.state = 3476; this.match(SparkSqlParser.GT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3439; + this.state = 3478; localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3440; + this.state = 3479; this.match(SparkSqlParser.LT); - this.state = 3441; + this.state = 3480; this.dataType(); - this.state = 3442; + this.state = 3481; this.match(SparkSqlParser.COMMA); - this.state = 3443; + this.state = 3482; this.dataType(); - this.state = 3444; + this.state = 3483; this.match(SparkSqlParser.GT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3446; + this.state = 3485; localContext._complex = this.match(SparkSqlParser.KW_STRUCT); - this.state = 3460; + this.state = 3499; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3447; + this.state = 3486; this.match(SparkSqlParser.LT); - this.state = 3456; + this.state = 3495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 3448; + this.state = 3487; this.complexColType(); - this.state = 3453; + this.state = 3492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3449; + this.state = 3488; this.match(SparkSqlParser.COMMA); - this.state = 3450; + this.state = 3489; this.complexColType(); } } - this.state = 3455; + this.state = 3494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3458; + this.state = 3497; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3459; + this.state = 3498; this.match(SparkSqlParser.NEQ); } break; @@ -16344,9 +16575,9 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3462; + this.state = 3501; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3463; + this.state = 3502; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16355,14 +16586,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3466; + this.state = 3505; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: { - this.state = 3464; + this.state = 3503; this.match(SparkSqlParser.KW_TO); - this.state = 3465; + this.state = 3504; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16372,9 +16603,9 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3468; + this.state = 3507; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3469; + this.state = 3508; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16383,14 +16614,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3472; + this.state = 3511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3470; + this.state = 3509; this.match(SparkSqlParser.KW_TO); - this.state = 3471; + this.state = 3510; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16407,34 +16638,34 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3474; + this.state = 3513; this.type_(); - this.state = 3485; + this.state = 3524; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3475; + this.state = 3514; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3476; + this.state = 3515; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 3481; + this.state = 3520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3477; + this.state = 3516; this.match(SparkSqlParser.COMMA); - this.state = 3478; + this.state = 3517; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3483; + this.state = 3522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3484; + this.state = 3523; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16459,26 +16690,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext { let localContext = new QualifiedColTypeWithPositionSeqForAddContext(this.context, this.state); - this.enterRule(localContext, 284, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); + this.enterRule(localContext, 300, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3489; + this.state = 3528; this.qualifiedColTypeWithPositionForAdd(); - this.state = 3494; + this.state = 3533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3490; + this.state = 3529; this.match(SparkSqlParser.COMMA); - this.state = 3491; + this.state = 3530; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3496; + this.state = 3535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16500,30 +16731,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext { let localContext = new QualifiedColTypeWithPositionForAddContext(this.context, this.state); - this.enterRule(localContext, 286, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); + this.enterRule(localContext, 302, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3497; + this.state = 3536; localContext._name = this.columnNameCreate(); - this.state = 3498; + this.state = 3537; this.dataType(); - this.state = 3502; + this.state = 3541; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3499; + this.state = 3538; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3504; + this.state = 3543; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, this.context); } } } @@ -16543,26 +16774,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext { let localContext = new QualifiedColTypeWithPositionSeqForReplaceContext(this.context, this.state); - this.enterRule(localContext, 288, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); + this.enterRule(localContext, 304, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3505; + this.state = 3544; this.qualifiedColTypeWithPositionForReplace(); - this.state = 3510; + this.state = 3549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3506; + this.state = 3545; this.match(SparkSqlParser.COMMA); - this.state = 3507; + this.state = 3546; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3512; + this.state = 3551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16584,26 +16815,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForReplace(): QualifiedColTypeWithPositionForReplaceContext { let localContext = new QualifiedColTypeWithPositionForReplaceContext(this.context, this.state); - this.enterRule(localContext, 290, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); + this.enterRule(localContext, 306, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3513; + this.state = 3552; localContext._name = this.columnName(); - this.state = 3514; + this.state = 3553; this.dataType(); - this.state = 3518; + this.state = 3557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 197) { { { - this.state = 3515; + this.state = 3554; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3520; + this.state = 3559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16625,35 +16856,35 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionDescriptorWithPosition(): ColDefinitionDescriptorWithPositionContext { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); - this.enterRule(localContext, 292, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); + this.enterRule(localContext, 308, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3528; + this.state = 3567; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3521; + this.state = 3560; this.match(SparkSqlParser.KW_NOT); - this.state = 3522; + this.state = 3561; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3523; + this.state = 3562; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3524; + this.state = 3563; this.expression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3525; + this.state = 3564; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3526; + this.state = 3565; localContext._comment = this.stringLit(); } break; @@ -16661,7 +16892,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3527; + this.state = 3566; this.colPosition(); } break; @@ -16685,12 +16916,12 @@ export class SparkSqlParser extends SQLParserBase { } public variableDefaultExpression(): VariableDefaultExpressionContext { let localContext = new VariableDefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 294, SparkSqlParser.RULE_variableDefaultExpression); + this.enterRule(localContext, 310, SparkSqlParser.RULE_variableDefaultExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3530; + this.state = 3569; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 352)) { this.errorHandler.recoverInline(this); @@ -16699,7 +16930,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3531; + this.state = 3570; this.expression(); } } @@ -16719,30 +16950,30 @@ export class SparkSqlParser extends SQLParserBase { } public colTypeList(): ColTypeListContext { let localContext = new ColTypeListContext(this.context, this.state); - this.enterRule(localContext, 296, SparkSqlParser.RULE_colTypeList); + this.enterRule(localContext, 312, SparkSqlParser.RULE_colTypeList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3572; this.columnType(); - this.state = 3538; + this.state = 3577; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 476, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3534; + this.state = 3573; this.match(SparkSqlParser.COMMA); - this.state = 3535; + this.state = 3574; this.columnType(); } } } - this.state = 3540; + this.state = 3579; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 476, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); } } } @@ -16762,34 +16993,34 @@ export class SparkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 298, SparkSqlParser.RULE_columnType); + this.enterRule(localContext, 314, SparkSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3541; + this.state = 3580; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3542; + this.state = 3581; this.dataType(); - this.state = 3545; + this.state = 3584; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: { - this.state = 3543; + this.state = 3582; this.match(SparkSqlParser.KW_NOT); - this.state = 3544; + this.state = 3583; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3549; + this.state = 3588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { - this.state = 3547; + this.state = 3586; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3548; + this.state = 3587; localContext._comment = this.stringLit(); } break; @@ -16812,26 +17043,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext { let localContext = new CreateOrReplaceTableColTypeListContext(this.context, this.state); - this.enterRule(localContext, 300, SparkSqlParser.RULE_createOrReplaceTableColTypeList); + this.enterRule(localContext, 316, SparkSqlParser.RULE_createOrReplaceTableColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3551; + this.state = 3590; this.createOrReplaceTableColType(); - this.state = 3556; + this.state = 3595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3552; + this.state = 3591; this.match(SparkSqlParser.COMMA); - this.state = 3553; + this.state = 3592; this.createOrReplaceTableColType(); } } - this.state = 3558; + this.state = 3597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16853,26 +17084,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColType(): CreateOrReplaceTableColTypeContext { let localContext = new CreateOrReplaceTableColTypeContext(this.context, this.state); - this.enterRule(localContext, 302, SparkSqlParser.RULE_createOrReplaceTableColType); + this.enterRule(localContext, 318, SparkSqlParser.RULE_createOrReplaceTableColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3559; + this.state = 3598; localContext._colName = this.columnNameCreate(); - this.state = 3560; + this.state = 3599; localContext._colType = this.dataType(); - this.state = 3564; + this.state = 3603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 82 || _la === 127 || _la === 197) { { { - this.state = 3561; + this.state = 3600; this.colDefinitionOption(); } } - this.state = 3566; + this.state = 3605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16894,52 +17125,52 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionOption(): ColDefinitionOptionContext { let localContext = new ColDefinitionOptionContext(this.context, this.state); - this.enterRule(localContext, 304, SparkSqlParser.RULE_colDefinitionOption); + this.enterRule(localContext, 320, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3580; + this.state = 3619; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3567; + this.state = 3606; this.match(SparkSqlParser.KW_NOT); - this.state = 3568; + this.state = 3607; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3569; + this.state = 3608; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3570; + this.state = 3609; this.expression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3571; + this.state = 3610; this.match(SparkSqlParser.KW_GENERATED); - this.state = 3572; + this.state = 3611; this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3573; + this.state = 3612; this.match(SparkSqlParser.KW_AS); - this.state = 3574; + this.state = 3613; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3575; + this.state = 3614; this.expression(); - this.state = 3576; + this.state = 3615; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3578; + this.state = 3617; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3579; + this.state = 3618; localContext._comment = this.stringLit(); } break; @@ -16963,45 +17194,45 @@ export class SparkSqlParser extends SQLParserBase { } public complexColType(): ComplexColTypeContext { let localContext = new ComplexColTypeContext(this.context, this.state); - this.enterRule(localContext, 306, SparkSqlParser.RULE_complexColType); + this.enterRule(localContext, 322, SparkSqlParser.RULE_complexColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3582; + this.state = 3621; this.identifier(); - this.state = 3584; + this.state = 3623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 371) { { - this.state = 3583; + this.state = 3622; this.match(SparkSqlParser.COLON); } } - this.state = 3586; + this.state = 3625; this.dataType(); - this.state = 3589; + this.state = 3628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3587; + this.state = 3626; this.match(SparkSqlParser.KW_NOT); - this.state = 3588; + this.state = 3627; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3593; + this.state = 3632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3591; + this.state = 3630; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3592; + this.state = 3631; localContext._comment = this.stringLit(); } } @@ -17024,17 +17255,17 @@ export class SparkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 308, SparkSqlParser.RULE_whenClause); + this.enterRule(localContext, 324, SparkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3634; this.match(SparkSqlParser.KW_WHEN); - this.state = 3596; + this.state = 3635; localContext._condition = this.expression(); - this.state = 3597; + this.state = 3636; this.match(SparkSqlParser.KW_THEN); - this.state = 3598; + this.state = 3637; localContext._result = this.expression(); } } @@ -17054,40 +17285,40 @@ export class SparkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 310, SparkSqlParser.RULE_windowClause); + this.enterRule(localContext, 326, SparkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3600; + this.state = 3639; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3601; + this.state = 3640; localContext._name = this.errorCapturingIdentifier(); - this.state = 3602; + this.state = 3641; this.match(SparkSqlParser.KW_AS); - this.state = 3603; + this.state = 3642; this.windowSpec(); - this.state = 3611; + this.state = 3650; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 486, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3604; + this.state = 3643; this.match(SparkSqlParser.COMMA); - this.state = 3605; + this.state = 3644; localContext._name = this.errorCapturingIdentifier(); - this.state = 3606; + this.state = 3645; this.match(SparkSqlParser.KW_AS); - this.state = 3607; + this.state = 3646; this.windowSpec(); } } } - this.state = 3613; + this.state = 3652; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 486, this.context); } } } @@ -17107,15 +17338,15 @@ export class SparkSqlParser extends SQLParserBase { } public zOrderClause(): ZOrderClauseContext { let localContext = new ZOrderClauseContext(this.context, this.state); - this.enterRule(localContext, 312, SparkSqlParser.RULE_zOrderClause); + this.enterRule(localContext, 328, SparkSqlParser.RULE_zOrderClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3614; + this.state = 3653; this.match(SparkSqlParser.KW_ZORDER); - this.state = 3615; + this.state = 3654; this.match(SparkSqlParser.KW_BY); - this.state = 3616; + this.state = 3655; this.columnNameSeq(); } } @@ -17135,61 +17366,61 @@ export class SparkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 314, SparkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 330, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3657; + this.state = 3696; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3618; + this.state = 3657; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3619; + this.state = 3658; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3620; + this.state = 3659; localContext._name = this.errorCapturingIdentifier(); - this.state = 3621; + this.state = 3660; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3623; + this.state = 3662; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3651; + this.state = 3690; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3624; + this.state = 3663; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3625; + this.state = 3664; this.match(SparkSqlParser.KW_BY); - this.state = 3626; + this.state = 3665; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3631; + this.state = 3670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3627; + this.state = 3666; this.match(SparkSqlParser.COMMA); - this.state = 3628; + this.state = 3667; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3633; + this.state = 3672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17203,12 +17434,12 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3644; + this.state = 3683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217) { { - this.state = 3634; + this.state = 3673; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -17217,37 +17448,37 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3635; + this.state = 3674; this.match(SparkSqlParser.KW_BY); - this.state = 3636; + this.state = 3675; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3641; + this.state = 3680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3637; + this.state = 3676; this.match(SparkSqlParser.COMMA); - this.state = 3638; + this.state = 3677; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3643; + this.state = 3682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3649; + this.state = 3688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 3646; + this.state = 3685; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -17256,9 +17487,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3647; + this.state = 3686; this.match(SparkSqlParser.KW_BY); - this.state = 3648; + this.state = 3687; this.orderOrSortByClause(); } } @@ -17268,17 +17499,17 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3654; + this.state = 3693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233 || _la === 258) { { - this.state = 3653; + this.state = 3692; this.windowFrame(); } } - this.state = 3656; + this.state = 3695; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17300,16 +17531,16 @@ export class SparkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 316, SparkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 332, SparkSqlParser.RULE_windowFrame); let _la: number; try { - this.state = 3667; + this.state = 3706; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3659; + this.state = 3698; localContext._frameType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 233 || _la === 258)) { @@ -17319,14 +17550,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3660; + this.state = 3699; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3661; + this.state = 3700; localContext._frameType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 233 || _la === 258)) { @@ -17336,13 +17567,13 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3662; + this.state = 3701; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3663; + this.state = 3702; localContext._start_ = this.frameBound(); - this.state = 3664; + this.state = 3703; this.match(SparkSqlParser.KW_AND); - this.state = 3665; + this.state = 3704; localContext._end = this.frameBound(); } break; @@ -17364,18 +17595,18 @@ export class SparkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 318, SparkSqlParser.RULE_frameBound); + this.enterRule(localContext, 334, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3676; + this.state = 3715; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3669; + this.state = 3708; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3670; + this.state = 3709; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17390,18 +17621,18 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3671; + this.state = 3710; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3672; + this.state = 3711; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3673; + this.state = 3712; this.expression(); - this.state = 3674; + this.state = 3713; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17431,26 +17662,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 320, SparkSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 336, SparkSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3678; + this.state = 3717; this.qualifiedName(); - this.state = 3683; + this.state = 3722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3679; + this.state = 3718; this.match(SparkSqlParser.COMMA); - this.state = 3680; + this.state = 3719; this.qualifiedName(); } } - this.state = 3685; + this.state = 3724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17472,49 +17703,49 @@ export class SparkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 322, SparkSqlParser.RULE_functionName); + this.enterRule(localContext, 338, SparkSqlParser.RULE_functionName); try { - this.state = 3695; + this.state = 3734; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3686; + this.state = 3725; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3687; + this.state = 3726; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3688; + this.state = 3727; this.expression(); - this.state = 3689; + this.state = 3728; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3691; + this.state = 3730; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3692; + this.state = 3731; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3693; + this.state = 3732; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3694; + this.state = 3733; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17536,11 +17767,11 @@ export class SparkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 324, SparkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 340, SparkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3697; + this.state = 3736; this.qualifiedName(); } } @@ -17560,30 +17791,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 326, SparkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 342, SparkSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3699; + this.state = 3738; this.identifier(); - this.state = 3704; + this.state = 3743; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 497, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3700; + this.state = 3739; this.match(SparkSqlParser.DOT); - this.state = 3701; + this.state = 3740; this.identifier(); } } } - this.state = 3706; + this.state = 3745; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 497, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); } } } @@ -17603,13 +17834,13 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 328, SparkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 344, SparkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3707; + this.state = 3746; this.identifier(); - this.state = 3708; + this.state = 3747; this.errorCapturingIdentifierExtra(); } } @@ -17629,16 +17860,16 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 330, SparkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 346, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3717; + this.state = 3756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3712; + this.state = 3751; this.errorHandler.sync(this); alternative = 1; do { @@ -17646,9 +17877,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3710; + this.state = 3749; this.match(SparkSqlParser.MINUS); - this.state = 3711; + this.state = 3750; this.identifier(); } } @@ -17656,9 +17887,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3714; + this.state = 3753; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -17686,22 +17917,22 @@ export class SparkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 332, SparkSqlParser.RULE_identifier); + this.enterRule(localContext, 348, SparkSqlParser.RULE_identifier); try { - this.state = 3721; + this.state = 3760; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3719; + this.state = 3758; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3720; + this.state = 3759; this.strictNonReserved(); } break; @@ -17723,36 +17954,36 @@ export class SparkSqlParser extends SQLParserBase { } public strictIdentifier(): StrictIdentifierContext { let localContext = new StrictIdentifierContext(this.context, this.state); - this.enterRule(localContext, 334, SparkSqlParser.RULE_strictIdentifier); + this.enterRule(localContext, 350, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3727; + this.state = 3766; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3723; + this.state = 3762; this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3724; + this.state = 3763; this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3725; + this.state = 3764; this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3726; + this.state = 3765; this.nonReserved(); } break; @@ -17774,12 +18005,12 @@ export class SparkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 336, SparkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 352, SparkSqlParser.RULE_quotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3729; + this.state = 3768; _la = this.tokenStream.LA(1); if(!(_la === 378 || _la === 389)) { this.errorHandler.recoverInline(this); @@ -17806,22 +18037,22 @@ export class SparkSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 338, SparkSqlParser.RULE_number); + this.enterRule(localContext, 354, SparkSqlParser.RULE_number); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3732; + this.state = 3771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3731; + this.state = 3770; this.match(SparkSqlParser.MINUS); } } - this.state = 3734; + this.state = 3773; _la = this.tokenStream.LA(1); if(!(((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -17848,41 +18079,41 @@ export class SparkSqlParser extends SQLParserBase { } public alterColumnAction(): AlterColumnActionContext { let localContext = new AlterColumnActionContext(this.context, this.state); - this.enterRule(localContext, 340, SparkSqlParser.RULE_alterColumnAction); + this.enterRule(localContext, 356, SparkSqlParser.RULE_alterColumnAction); let _la: number; try { - this.state = 3749; + this.state = 3788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3736; + this.state = 3775; this.match(SparkSqlParser.KW_TYPE); - this.state = 3737; + this.state = 3776; this.dataType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3738; + this.state = 3777; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3739; + this.state = 3778; localContext._comment = this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3740; + this.state = 3779; this.colPosition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3741; + this.state = 3780; localContext._setOrDrop = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 96 || _la === 269)) { @@ -17892,29 +18123,29 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3742; + this.state = 3781; this.match(SparkSqlParser.KW_NOT); - this.state = 3743; + this.state = 3782; this.match(SparkSqlParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3744; + this.state = 3783; this.match(SparkSqlParser.KW_SET); - this.state = 3745; + this.state = 3784; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3746; + this.state = 3785; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3747; + this.state = 3786; localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3748; + this.state = 3787; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -17936,12 +18167,12 @@ export class SparkSqlParser extends SQLParserBase { } public stringLit(): StringLitContext { let localContext = new StringLitContext(this.context, this.state); - this.enterRule(localContext, 342, SparkSqlParser.RULE_stringLit); + this.enterRule(localContext, 358, SparkSqlParser.RULE_stringLit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3751; + this.state = 3790; _la = this.tokenStream.LA(1); if(!(_la === 377 || _la === 378)) { this.errorHandler.recoverInline(this); @@ -17968,12 +18199,12 @@ export class SparkSqlParser extends SQLParserBase { } public ansiNonReserved(): AnsiNonReservedContext { let localContext = new AnsiNonReservedContext(this.context, this.state); - this.enterRule(localContext, 344, SparkSqlParser.RULE_ansiNonReserved); + this.enterRule(localContext, 360, SparkSqlParser.RULE_ansiNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3753; + this.state = 3792; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3316086655) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 1610612735) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 4020201927) !== 0) || ((((_la - 231)) & ~0x1F) === 0 && ((1 << (_la - 231)) & 4294442751) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 3758088175) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3355402191) !== 0) || ((((_la - 328)) & ~0x1F) === 0 && ((1 << (_la - 328)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); @@ -18000,12 +18231,12 @@ export class SparkSqlParser extends SQLParserBase { } public strictNonReserved(): StrictNonReservedContext { let localContext = new StrictNonReservedContext(this.context, this.state); - this.enterRule(localContext, 346, SparkSqlParser.RULE_strictNonReserved); + this.enterRule(localContext, 362, SparkSqlParser.RULE_strictNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3755; + this.state = 3794; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 194 || _la === 203 || ((((_la - 250)) & ~0x1F) === 0 && ((1 << (_la - 250)) & 1064961) !== 0) || _la === 323 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -18032,12 +18263,12 @@ export class SparkSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 348, SparkSqlParser.RULE_nonReserved); + this.enterRule(localContext, 364, SparkSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3757; + this.state = 3796; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294965227) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4227858431) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294950527) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294963191) !== 0))) { this.errorHandler.recoverInline(this); @@ -18069,11 +18300,11 @@ export class SparkSqlParser extends SQLParserBase { return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 48: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 120: + case 128: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 122: + case 130: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 124: + case 132: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -18133,7 +18364,7 @@ export class SparkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,393,3760,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,393,3799,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, @@ -18161,1627 +18392,1643 @@ export class SparkSqlParser extends SQLParserBase { 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,1,0, - 5,0,352,8,0,10,0,12,0,355,9,0,1,0,1,0,1,1,1,1,3,1,361,8,1,1,2,1, - 2,3,2,365,8,2,1,2,1,2,1,2,3,2,370,8,2,1,2,1,2,1,2,1,2,1,2,3,2,377, - 8,2,1,2,1,2,1,2,3,2,382,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2, - 392,8,2,10,2,12,2,395,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,414,8,2,1,2,1,2,3,2,418,8,2,1, - 2,1,2,1,2,1,2,3,2,424,8,2,1,2,3,2,427,8,2,1,2,3,2,430,8,2,1,2,1, - 2,3,2,434,8,2,1,2,3,2,437,8,2,1,2,1,2,3,2,441,8,2,1,2,1,2,1,2,1, - 2,1,2,3,2,448,8,2,1,2,3,2,451,8,2,1,2,1,2,3,2,455,8,2,1,2,3,2,458, - 8,2,1,2,1,2,1,2,3,2,463,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,5,2,476,8,2,10,2,12,2,479,9,2,1,2,1,2,3,2,483,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,3,2,492,8,2,1,2,3,2,495,8,2,1,2,1,2,3,2,499, - 8,2,1,2,3,2,502,8,2,1,2,1,2,1,2,1,2,3,2,508,8,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,3,2,519,8,2,1,2,1,2,1,2,1,2,3,2,525,8,2,1,2, - 1,2,1,2,3,2,530,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 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,1,0,5,0,368,8,0,10,0,12,0,371,9,0,1,0,1, + 0,1,1,1,1,3,1,377,8,1,1,2,1,2,3,2,381,8,2,1,2,1,2,1,2,3,2,386,8, + 2,1,2,1,2,1,2,1,2,1,2,3,2,393,8,2,1,2,1,2,1,2,3,2,398,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,408,8,2,10,2,12,2,411,9,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 430,8,2,1,2,1,2,3,2,434,8,2,1,2,1,2,1,2,1,2,3,2,440,8,2,1,2,3,2, + 443,8,2,1,2,3,2,446,8,2,1,2,1,2,3,2,450,8,2,1,2,3,2,453,8,2,1,2, + 1,2,3,2,457,8,2,1,2,1,2,1,2,1,2,1,2,3,2,464,8,2,1,2,3,2,467,8,2, + 1,2,1,2,3,2,471,8,2,1,2,3,2,474,8,2,1,2,1,2,1,2,3,2,479,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,492,8,2,10,2,12,2,495, + 9,2,1,2,1,2,3,2,499,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,508,8,2, + 1,2,3,2,511,8,2,1,2,1,2,3,2,515,8,2,1,2,3,2,518,8,2,1,2,1,2,1,2, + 1,2,3,2,524,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,535,8,2, + 1,2,1,2,1,2,1,2,3,2,541,8,2,1,2,1,2,1,2,3,2,546,8,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,563,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 573,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,584,8,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,595,8,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,606,8,2,1,2,1,2,1,2,3,2,611,8,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,620,8,2,1,2,1,2,3,2,624,8,2,1,2,1,2,1,2,1,2,3,2, - 630,8,2,1,2,1,2,3,2,634,8,2,1,2,1,2,1,2,3,2,639,8,2,1,2,1,2,1,2, - 1,2,3,2,645,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,657, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,665,8,2,1,2,1,2,1,2,1,2,3,2,671, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,682,8,2,1,2,1,2,3,2, - 686,8,2,1,2,4,2,689,8,2,11,2,12,2,690,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,706,8,2,1,2,1,2,3,2,710,8,2,1,2,1, - 2,1,2,5,2,715,8,2,10,2,12,2,718,9,2,1,2,3,2,721,8,2,1,2,1,2,1,2, - 1,2,3,2,727,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,757,8,2,1,2,1,2,3,2,761,8,2,1,2,1,2,1,2,3,2,766,8,2,1,2,1,2, - 1,2,1,2,1,2,3,2,773,8,2,1,2,1,2,1,2,1,2,3,2,779,8,2,1,2,3,2,782, - 8,2,1,2,3,2,785,8,2,1,2,1,2,3,2,789,8,2,1,2,1,2,3,2,793,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,5,2,802,8,2,10,2,12,2,805,9,2,1,2,1,2,1, - 2,1,2,1,2,1,2,3,2,813,8,2,1,2,3,2,816,8,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,3,2,825,8,2,1,2,1,2,1,2,3,2,830,8,2,1,2,1,2,1,2,1,2,3,2,836, - 8,2,1,2,1,2,1,2,1,2,1,2,3,2,843,8,2,1,2,3,2,846,8,2,1,2,1,2,3,2, - 850,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,863,8,2, - 10,2,12,2,866,9,2,3,2,868,8,2,1,2,1,2,1,2,1,2,3,2,874,8,2,1,2,1, - 2,3,2,878,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,5,2,895,8,2,10,2,12,2,898,9,2,1,2,1,2,1,2,1,2,1,2,3,2, - 905,8,2,1,2,1,2,3,2,909,8,2,1,2,1,2,1,2,1,2,3,2,915,8,2,1,2,3,2, - 918,8,2,1,2,1,2,3,2,922,8,2,1,2,3,2,925,8,2,1,2,1,2,1,2,1,2,3,2, - 931,8,2,1,2,1,2,1,2,3,2,936,8,2,1,2,1,2,3,2,940,8,2,1,2,1,2,1,2, - 1,2,1,2,3,2,947,8,2,1,2,3,2,950,8,2,1,2,3,2,953,8,2,1,2,1,2,1,2, - 1,2,1,2,3,2,960,8,2,1,2,1,2,1,2,3,2,965,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,974,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,982,8,2,1,2,1,2, - 1,2,1,2,3,2,988,8,2,1,2,3,2,991,8,2,1,2,3,2,994,8,2,1,2,1,2,1,2, - 1,2,3,2,1000,8,2,1,2,1,2,3,2,1004,8,2,1,2,1,2,1,2,3,2,1009,8,2,1, - 2,3,2,1012,8,2,1,2,1,2,3,2,1016,8,2,3,2,1018,8,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,1026,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1034,8,2,1,2,3, - 2,1037,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1044,8,2,1,2,3,2,1047,8,2,1,2, - 3,2,1050,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1059,8,2,1,2,1,2,1, - 2,3,2,1064,8,2,1,2,1,2,1,2,1,2,3,2,1070,8,2,1,2,1,2,1,2,3,2,1075, - 8,2,1,2,3,2,1078,8,2,1,2,1,2,3,2,1082,8,2,1,2,3,2,1085,8,2,1,2,1, - 2,3,2,1089,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1099,8,2,1,2, - 1,2,1,2,3,2,1104,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1115, - 8,2,10,2,12,2,1118,9,2,3,2,1120,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 1128,8,2,1,2,1,2,1,2,1,2,3,2,1134,8,2,1,2,3,2,1137,8,2,1,2,3,2,1140, - 8,2,1,2,1,2,1,2,3,2,1145,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1153,8, - 2,1,2,1,2,1,2,3,2,1158,8,2,1,2,1,2,1,2,1,2,3,2,1164,8,2,1,2,1,2, - 1,2,1,2,3,2,1170,8,2,1,2,3,2,1173,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1180, - 8,2,1,2,1,2,1,2,5,2,1185,8,2,10,2,12,2,1188,9,2,1,2,1,2,1,2,5,2, - 1193,8,2,10,2,12,2,1196,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,1207,8,2,1,2,1,2,1,2,1,2,5,2,1213,8,2,10,2,12,2,1216,9,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,5,2,1240,8,2,10,2,12,2,1243,9,2,3,2,1245,8,2, - 1,2,1,2,5,2,1249,8,2,10,2,12,2,1252,9,2,1,2,1,2,1,2,1,2,5,2,1258, - 8,2,10,2,12,2,1261,9,2,1,2,1,2,1,2,1,2,5,2,1267,8,2,10,2,12,2,1270, - 9,2,1,2,1,2,1,2,3,2,1275,8,2,1,2,1,2,1,2,3,2,1280,8,2,1,2,1,2,1, - 2,3,2,1285,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1292,8,2,1,2,1,2,1,2,3,2, - 1297,8,2,1,2,1,2,1,2,3,2,1302,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1309,8, - 2,1,2,1,2,1,2,1,2,5,2,1315,8,2,10,2,12,2,1318,9,2,3,2,1320,8,2,1, - 3,1,3,1,3,1,3,3,3,1326,8,3,1,3,1,3,1,3,1,3,1,3,3,3,1333,8,3,1,3, - 1,3,3,3,1337,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,579,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,589,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,600,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 611,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,622,8,2,1,2,1,2, + 1,2,3,2,627,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,636,8,2,1,2,1,2, + 3,2,640,8,2,1,2,1,2,1,2,1,2,3,2,646,8,2,1,2,1,2,3,2,650,8,2,1,2, + 1,2,1,2,3,2,655,8,2,1,2,1,2,1,2,1,2,3,2,661,8,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,673,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 681,8,2,1,2,1,2,1,2,1,2,3,2,687,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,3,2,698,8,2,1,2,1,2,3,2,702,8,2,1,2,4,2,705,8,2,11,2,12, + 2,706,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,722, + 8,2,1,2,1,2,3,2,726,8,2,1,2,1,2,1,2,5,2,731,8,2,10,2,12,2,734,9, + 2,1,2,3,2,737,8,2,1,2,1,2,1,2,1,2,3,2,743,8,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,773,8,2,1,2,1,2,3,2,777,8,2,1, + 2,1,2,1,2,3,2,782,8,2,1,2,1,2,1,2,1,2,1,2,3,2,789,8,2,1,2,1,2,1, + 2,1,2,3,2,795,8,2,1,2,3,2,798,8,2,1,2,3,2,801,8,2,1,2,1,2,3,2,805, + 8,2,1,2,1,2,3,2,809,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,818,8,2, + 10,2,12,2,821,9,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,829,8,2,1,2,3,2,832, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,841,8,2,1,2,1,2,1,2,3,2,846, + 8,2,1,2,1,2,1,2,1,2,3,2,852,8,2,1,2,1,2,1,2,1,2,1,2,3,2,859,8,2, + 1,2,3,2,862,8,2,1,2,1,2,3,2,866,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,5,2,879,8,2,10,2,12,2,882,9,2,3,2,884,8,2,1,2,1, + 2,1,2,1,2,3,2,890,8,2,1,2,1,2,3,2,894,8,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,911,8,2,10,2,12,2,914, + 9,2,1,2,1,2,1,2,1,2,1,2,3,2,921,8,2,1,2,1,2,3,2,925,8,2,1,2,1,2, + 1,2,1,2,3,2,931,8,2,1,2,3,2,934,8,2,1,2,1,2,3,2,938,8,2,1,2,3,2, + 941,8,2,1,2,1,2,1,2,1,2,3,2,947,8,2,1,2,1,2,1,2,3,2,952,8,2,1,2, + 1,2,3,2,956,8,2,1,2,1,2,1,2,1,2,1,2,3,2,963,8,2,1,2,3,2,966,8,2, + 1,2,3,2,969,8,2,1,2,1,2,1,2,1,2,1,2,3,2,976,8,2,1,2,1,2,1,2,3,2, + 981,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,990,8,2,1,2,1,2,1,2,1,2, + 1,2,1,2,3,2,998,8,2,1,2,1,2,1,2,1,2,3,2,1004,8,2,1,2,3,2,1007,8, + 2,1,2,3,2,1010,8,2,1,2,1,2,1,2,1,2,3,2,1016,8,2,1,2,1,2,3,2,1020, + 8,2,1,2,1,2,1,2,3,2,1025,8,2,1,2,3,2,1028,8,2,1,2,1,2,3,2,1032,8, + 2,3,2,1034,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1042,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,1050,8,2,1,2,3,2,1053,8,2,1,2,1,2,1,2,1,2,1,2,3, + 2,1060,8,2,1,2,3,2,1063,8,2,1,2,3,2,1066,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,3,2,1075,8,2,1,2,1,2,1,2,3,2,1080,8,2,1,2,1,2,1,2,1,2,3, + 2,1086,8,2,1,2,1,2,1,2,3,2,1091,8,2,1,2,3,2,1094,8,2,1,2,1,2,3,2, + 1098,8,2,1,2,3,2,1101,8,2,1,2,1,2,3,2,1105,8,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,3,2,1115,8,2,1,2,1,2,1,2,3,2,1120,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,5,2,1131,8,2,10,2,12,2,1134,9,2,3,2,1136, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1144,8,2,1,2,1,2,1,2,1,2,3,2,1150, + 8,2,1,2,3,2,1153,8,2,1,2,3,2,1156,8,2,1,2,1,2,1,2,3,2,1161,8,2,1, + 2,1,2,1,2,1,2,1,2,1,2,3,2,1169,8,2,1,2,1,2,1,2,3,2,1174,8,2,1,2, + 1,2,1,2,1,2,3,2,1180,8,2,1,2,1,2,1,2,1,2,3,2,1186,8,2,1,2,3,2,1189, + 8,2,1,2,1,2,1,2,1,2,1,2,3,2,1196,8,2,1,2,1,2,1,2,5,2,1201,8,2,10, + 2,12,2,1204,9,2,1,2,1,2,1,2,5,2,1209,8,2,10,2,12,2,1212,9,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1223,8,2,1,2,1,2,1,2,1,2,5,2, + 1229,8,2,10,2,12,2,1232,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1256,8,2, + 10,2,12,2,1259,9,2,3,2,1261,8,2,1,2,1,2,5,2,1265,8,2,10,2,12,2,1268, + 9,2,1,2,1,2,1,2,1,2,5,2,1274,8,2,10,2,12,2,1277,9,2,1,2,1,2,1,2, + 1,2,5,2,1283,8,2,10,2,12,2,1286,9,2,1,2,1,2,1,2,3,2,1291,8,2,1,2, + 1,2,1,2,3,2,1296,8,2,1,2,1,2,1,2,3,2,1301,8,2,1,2,1,2,1,2,1,2,1, + 2,3,2,1308,8,2,1,2,1,2,1,2,3,2,1313,8,2,1,2,1,2,1,2,3,2,1318,8,2, + 1,2,1,2,1,2,1,2,1,2,3,2,1325,8,2,1,2,1,2,1,2,1,2,5,2,1331,8,2,10, + 2,12,2,1334,9,2,3,2,1336,8,2,1,3,1,3,1,3,1,3,3,3,1342,8,3,1,3,1, + 3,1,3,1,3,1,3,3,3,1349,8,3,1,3,1,3,3,3,1353,8,3,1,3,1,3,1,3,1,3, 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, - 1,3,3,3,1400,8,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1408,8,3,1,3,1,3,1, - 3,1,3,1,3,3,3,1415,8,3,1,4,1,4,1,4,1,4,1,4,1,4,3,4,1423,8,4,1,4, - 1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,3,5,1435,8,5,1,5,1,5,1,5,3,5, - 1440,8,5,1,6,1,6,1,6,1,7,1,7,1,7,1,8,3,8,1449,8,8,1,8,1,8,1,8,1, - 9,1,9,1,9,3,9,1457,8,9,1,9,1,9,1,9,3,9,1462,8,9,3,9,1464,8,9,1,9, - 1,9,1,9,1,9,1,9,1,9,3,9,1472,8,9,1,9,1,9,1,9,3,9,1477,8,9,1,9,1, - 9,3,9,1481,8,9,1,9,3,9,1484,8,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1492, - 8,9,1,9,1,9,1,9,3,9,1497,8,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1506, - 8,9,1,9,1,9,1,9,3,9,1511,8,9,1,9,3,9,1514,8,9,1,9,1,9,1,9,3,9,1519, - 8,9,1,9,1,9,3,9,1523,8,9,1,9,1,9,1,9,3,9,1528,8,9,3,9,1530,8,9,1, - 10,1,10,1,10,3,10,1535,8,10,1,11,1,11,1,11,1,11,1,11,5,11,1542,8, - 11,10,11,12,11,1545,9,11,1,11,1,11,1,12,1,12,1,12,3,12,1552,8,12, - 1,12,1,12,1,12,1,12,3,12,1558,8,12,1,13,1,13,1,14,1,14,1,14,1,14, - 1,14,3,14,1567,8,14,1,15,1,15,1,15,5,15,1572,8,15,10,15,12,15,1575, - 9,15,1,16,1,16,1,16,1,16,5,16,1581,8,16,10,16,12,16,1584,9,16,1, - 17,1,17,3,17,1588,8,17,1,17,3,17,1591,8,17,1,17,1,17,1,17,1,17,1, - 18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, - 19,1,19,1,19,1,19,1,19,1,19,5,19,1616,8,19,10,19,12,19,1619,9,19, - 1,20,1,20,1,20,1,21,1,21,1,21,1,21,5,21,1628,8,21,10,21,12,21,1631, - 9,21,1,21,1,21,1,22,1,22,3,22,1637,8,22,1,22,3,22,1640,8,22,1,23, - 1,23,1,23,5,23,1645,8,23,10,23,12,23,1648,9,23,1,23,3,23,1651,8, - 23,1,24,1,24,1,24,1,24,3,24,1657,8,24,1,25,1,25,1,25,1,25,5,25,1663, - 8,25,10,25,12,25,1666,9,25,1,25,1,25,1,26,1,26,3,26,1672,8,26,1, - 26,3,26,1675,8,26,1,27,1,27,1,27,1,27,5,27,1681,8,27,10,27,12,27, - 1684,9,27,1,27,1,27,1,28,1,28,1,28,1,28,5,28,1692,8,28,10,28,12, - 28,1695,9,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,3,29,1705,8, - 29,1,30,1,30,1,30,1,30,1,30,1,30,3,30,1713,8,30,1,31,1,31,1,31,1, - 31,3,31,1719,8,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,4,32,1728,8, - 32,11,32,12,32,1729,1,32,1,32,1,32,1,32,1,32,3,32,1737,8,32,1,32, - 1,32,1,32,1,32,1,32,3,32,1744,8,32,1,32,1,32,1,32,1,32,1,32,1,32, - 1,32,1,32,1,32,1,32,3,32,1756,8,32,1,32,1,32,1,32,1,32,5,32,1762, - 8,32,10,32,12,32,1765,9,32,1,32,5,32,1768,8,32,10,32,12,32,1771, - 9,32,1,32,5,32,1774,8,32,10,32,12,32,1777,9,32,3,32,1779,8,32,1, - 33,1,33,1,34,1,34,1,35,1,35,1,36,1,36,1,37,1,37,1,38,1,38,1,39,1, - 39,3,39,1795,8,39,1,40,1,40,1,41,1,41,1,41,5,41,1802,8,41,10,41, - 12,41,1805,9,41,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,3,43,1815, - 8,43,1,44,1,44,1,44,3,44,1820,8,44,1,44,1,44,1,44,3,44,1825,8,44, - 1,44,1,44,1,44,3,44,1830,8,44,1,44,1,44,1,44,3,44,1835,8,44,1,44, - 3,44,1838,8,44,1,44,3,44,1841,8,44,1,44,1,44,3,44,1845,8,44,1,45, - 1,45,1,45,3,45,1850,8,45,1,46,1,46,1,46,5,46,1855,8,46,10,46,12, - 46,1858,9,46,1,47,1,47,1,47,5,47,1863,8,47,10,47,12,47,1866,9,47, - 1,48,1,48,1,48,1,48,1,48,1,48,3,48,1874,8,48,1,48,1,48,1,48,1,48, - 3,48,1880,8,48,1,48,1,48,1,48,1,48,3,48,1886,8,48,1,48,5,48,1889, - 8,48,10,48,12,48,1892,9,48,1,49,1,49,1,49,4,49,1897,8,49,11,49,12, - 49,1898,1,49,1,49,1,49,1,49,1,49,1,49,5,49,1907,8,49,10,49,12,49, - 1910,9,49,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1918,8,49,1,50,1,50, - 3,50,1922,8,50,1,50,3,50,1925,8,50,1,50,1,50,3,50,1929,8,50,1,51, - 1,51,3,51,1933,8,51,1,51,1,51,1,51,1,51,5,51,1939,8,51,10,51,12, - 51,1942,9,51,1,51,3,51,1945,8,51,1,51,3,51,1948,8,51,1,51,3,51,1951, - 8,51,1,51,3,51,1954,8,51,1,51,1,51,3,51,1958,8,51,1,52,1,52,3,52, - 1962,8,52,1,52,5,52,1965,8,52,10,52,12,52,1968,9,52,1,52,3,52,1971, - 8,52,1,52,3,52,1974,8,52,1,52,3,52,1977,8,52,1,52,3,52,1980,8,52, - 1,52,1,52,3,52,1984,8,52,1,52,5,52,1987,8,52,10,52,12,52,1990,9, - 52,1,52,3,52,1993,8,52,1,52,3,52,1996,8,52,1,52,3,52,1999,8,52,1, - 52,3,52,2002,8,52,3,52,2004,8,52,1,53,1,53,1,53,1,53,3,53,2010,8, - 53,1,53,1,53,1,53,1,53,1,53,3,53,2017,8,53,1,53,1,53,1,53,3,53,2022, - 8,53,1,53,3,53,2025,8,53,1,53,3,53,2028,8,53,1,53,1,53,3,53,2032, - 8,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,2042,8,53,1,53, - 1,53,3,53,2046,8,53,3,53,2048,8,53,1,53,3,53,2051,8,53,1,53,1,53, - 3,53,2055,8,53,1,54,1,54,5,54,2059,8,54,10,54,12,54,2062,9,54,1, - 54,3,54,2065,8,54,1,54,1,54,1,55,1,55,1,55,1,56,1,56,1,56,1,56,3, - 56,2076,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2084,8,56,3,56,2086, - 8,56,1,57,1,57,1,57,1,57,1,57,3,57,2093,8,57,1,57,1,57,3,57,2097, - 8,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2109, - 8,58,1,58,1,58,1,58,1,58,1,58,3,58,2116,8,58,1,59,1,59,1,59,1,59, - 1,59,1,59,1,59,1,59,1,59,1,59,1,59,5,59,2129,8,59,10,59,12,59,2132, - 9,59,1,59,1,59,3,59,2136,8,59,1,60,1,60,1,60,5,60,2141,8,60,10,60, - 12,60,2144,9,60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,63,1,63,1,63, - 1,64,1,64,1,64,3,64,2159,8,64,1,64,5,64,2162,8,64,10,64,12,64,2165, - 9,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2175,8,65,10,65, - 12,65,2178,9,65,1,65,1,65,3,65,2182,8,65,1,66,1,66,1,66,1,66,5,66, - 2188,8,66,10,66,12,66,2191,9,66,1,66,5,66,2194,8,66,10,66,12,66, - 2197,9,66,1,66,3,66,2200,8,66,1,66,3,66,2203,8,66,1,67,3,67,2206, - 8,67,1,67,1,67,1,67,1,67,1,67,3,67,2213,8,67,1,67,3,67,2216,8,67, - 1,67,1,67,1,67,1,67,3,67,2222,8,67,1,68,1,68,1,68,1,68,1,68,5,68, - 2229,8,68,10,68,12,68,2232,9,68,1,68,1,68,1,68,1,68,1,68,5,68,2239, - 8,68,10,68,12,68,2242,9,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1, - 68,1,68,1,68,5,68,2254,8,68,10,68,12,68,2257,9,68,1,68,1,68,3,68, - 2261,8,68,3,68,2263,8,68,1,69,1,69,1,69,3,69,2268,8,69,1,70,1,70, - 1,70,1,70,1,70,5,70,2275,8,70,10,70,12,70,2278,9,70,1,70,1,70,1, - 70,1,70,1,70,1,70,1,70,3,70,2287,8,70,1,70,1,70,1,70,3,70,2292,8, - 70,5,70,2294,8,70,10,70,12,70,2297,9,70,1,70,1,70,3,70,2301,8,70, - 1,71,1,71,1,71,1,71,1,71,3,71,2308,8,71,1,71,1,71,1,71,3,71,2313, - 8,71,5,71,2315,8,71,10,71,12,71,2318,9,71,3,71,2320,8,71,1,71,3, - 71,2323,8,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5, - 72,2335,8,72,10,72,12,72,2338,9,72,1,72,1,72,1,72,1,73,1,73,1,73, - 1,73,1,73,5,73,2348,8,73,10,73,12,73,2351,9,73,1,73,1,73,3,73,2355, - 8,73,1,74,1,74,3,74,2359,8,74,1,74,3,74,2362,8,74,1,75,1,75,1,75, - 3,75,2367,8,75,1,75,1,75,1,75,3,75,2372,8,75,1,75,1,75,3,75,2376, - 8,75,1,75,3,75,2379,8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, - 5,76,2389,8,76,10,76,12,76,2392,9,76,1,76,1,76,1,77,1,77,1,77,1, - 77,5,77,2400,8,77,10,77,12,77,2403,9,77,1,77,1,77,1,77,1,77,1,77, - 1,77,1,77,1,77,5,77,2413,8,77,10,77,12,77,2416,9,77,1,77,1,77,1, - 78,1,78,1,78,1,78,5,78,2424,8,78,10,78,12,78,2427,9,78,1,78,1,78, - 3,78,2431,8,78,1,78,3,78,2434,8,78,1,79,1,79,3,79,2438,8,79,1,79, - 3,79,2441,8,79,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,82,1,82,1,82, - 3,82,2453,8,82,1,82,1,82,1,82,1,82,1,82,5,82,2460,8,82,10,82,12, - 82,2463,9,82,3,82,2465,8,82,1,82,1,82,1,82,3,82,2470,8,82,1,82,1, - 82,1,82,5,82,2475,8,82,10,82,12,82,2478,9,82,3,82,2480,8,82,1,83, - 1,83,1,84,1,84,3,84,2486,8,84,1,84,1,84,1,84,1,84,5,84,2492,8,84, - 10,84,12,84,2495,9,84,3,84,2497,8,84,1,85,1,85,1,85,3,85,2502,8, - 85,1,85,1,85,3,85,2506,8,85,1,85,1,85,1,85,1,85,3,85,2512,8,85,1, - 85,1,85,3,85,2516,8,85,1,86,3,86,2519,8,86,1,86,1,86,1,86,3,86,2524, - 8,86,1,86,3,86,2527,8,86,1,86,1,86,1,86,3,86,2532,8,86,3,86,2534, - 8,86,1,87,1,87,1,87,1,87,3,87,2540,8,87,1,88,1,88,1,88,3,88,2545, - 8,88,1,88,1,88,1,88,1,88,1,88,3,88,2552,8,88,1,89,3,89,2555,8,89, + 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1416,8,3,1,3,1,3,1,3,1,3, + 1,3,1,3,3,3,1424,8,3,1,3,1,3,1,3,1,3,1,3,3,3,1431,8,3,1,4,1,4,1, + 4,1,4,1,4,1,4,3,4,1439,8,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1, + 5,3,5,1451,8,5,1,5,1,5,1,5,3,5,1456,8,5,1,6,1,6,1,6,1,7,1,7,1,7, + 1,8,3,8,1465,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,1473,8,9,1,9,1,9,1, + 9,3,9,1478,8,9,3,9,1480,8,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1488,8,9, + 1,9,1,9,1,9,3,9,1493,8,9,1,9,1,9,3,9,1497,8,9,1,9,3,9,1500,8,9,1, + 9,1,9,1,9,1,9,1,9,1,9,3,9,1508,8,9,1,9,1,9,1,9,3,9,1513,8,9,1,9, + 1,9,1,9,1,9,1,9,1,9,1,9,3,9,1522,8,9,1,9,1,9,1,9,3,9,1527,8,9,1, + 9,3,9,1530,8,9,1,9,1,9,1,9,3,9,1535,8,9,1,9,1,9,3,9,1539,8,9,1,9, + 1,9,1,9,3,9,1544,8,9,3,9,1546,8,9,1,10,1,10,1,10,3,10,1551,8,10, + 1,11,1,11,1,11,1,11,1,11,5,11,1558,8,11,10,11,12,11,1561,9,11,1, + 11,1,11,1,12,1,12,1,12,3,12,1568,8,12,1,12,1,12,1,12,1,12,3,12,1574, + 8,12,1,13,1,13,1,14,1,14,1,14,1,14,1,14,3,14,1583,8,14,1,15,1,15, + 1,15,5,15,1588,8,15,10,15,12,15,1591,9,15,1,16,1,16,1,16,1,16,5, + 16,1597,8,16,10,16,12,16,1600,9,16,1,17,1,17,3,17,1604,8,17,1,17, + 3,17,1607,8,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,19,1,19,1,19, + 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19, + 5,19,1632,8,19,10,19,12,19,1635,9,19,1,20,1,20,1,20,1,21,1,21,1, + 21,1,21,5,21,1644,8,21,10,21,12,21,1647,9,21,1,21,1,21,1,22,1,22, + 3,22,1653,8,22,1,22,3,22,1656,8,22,1,23,1,23,1,23,5,23,1661,8,23, + 10,23,12,23,1664,9,23,1,23,3,23,1667,8,23,1,24,1,24,1,24,1,24,3, + 24,1673,8,24,1,25,1,25,1,25,1,25,5,25,1679,8,25,10,25,12,25,1682, + 9,25,1,25,1,25,1,26,1,26,3,26,1688,8,26,1,26,3,26,1691,8,26,1,27, + 1,27,1,27,1,27,5,27,1697,8,27,10,27,12,27,1700,9,27,1,27,1,27,1, + 28,1,28,1,28,1,28,5,28,1708,8,28,10,28,12,28,1711,9,28,1,28,1,28, + 1,29,1,29,1,29,1,29,1,29,1,29,3,29,1721,8,29,1,30,1,30,1,30,1,30, + 1,30,1,30,3,30,1729,8,30,1,31,1,31,1,31,1,31,3,31,1735,8,31,1,32, + 1,32,1,32,1,32,1,32,1,32,1,32,4,32,1744,8,32,11,32,12,32,1745,1, + 32,1,32,1,32,1,32,1,32,3,32,1753,8,32,1,32,1,32,1,32,1,32,1,32,3, + 32,1760,8,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,3, + 32,1772,8,32,1,32,1,32,1,32,1,32,5,32,1778,8,32,10,32,12,32,1781, + 9,32,1,32,5,32,1784,8,32,10,32,12,32,1787,9,32,1,32,5,32,1790,8, + 32,10,32,12,32,1793,9,32,3,32,1795,8,32,1,33,1,33,1,34,1,34,1,35, + 1,35,1,36,1,36,1,37,1,37,1,38,1,38,1,39,1,39,3,39,1811,8,39,1,40, + 1,40,1,41,1,41,1,41,5,41,1818,8,41,10,41,12,41,1821,9,41,1,42,1, + 42,1,43,1,43,1,43,1,43,1,43,1,43,3,43,1831,8,43,1,44,1,44,1,44,3, + 44,1836,8,44,1,44,1,44,1,44,3,44,1841,8,44,1,44,1,44,1,44,3,44,1846, + 8,44,1,44,1,44,1,44,3,44,1851,8,44,1,44,3,44,1854,8,44,1,44,3,44, + 1857,8,44,1,44,1,44,3,44,1861,8,44,1,45,1,45,1,45,3,45,1866,8,45, + 1,46,1,46,1,46,5,46,1871,8,46,10,46,12,46,1874,9,46,1,47,1,47,1, + 47,5,47,1879,8,47,10,47,12,47,1882,9,47,1,48,1,48,1,48,1,48,1,48, + 1,48,3,48,1890,8,48,1,48,1,48,1,48,1,48,3,48,1896,8,48,1,48,1,48, + 1,48,1,48,3,48,1902,8,48,1,48,5,48,1905,8,48,10,48,12,48,1908,9, + 48,1,49,1,49,1,49,4,49,1913,8,49,11,49,12,49,1914,1,49,1,49,1,49, + 1,49,1,49,1,49,5,49,1923,8,49,10,49,12,49,1926,9,49,1,49,1,49,1, + 49,1,49,1,49,1,49,3,49,1934,8,49,1,50,1,50,3,50,1938,8,50,1,50,3, + 50,1941,8,50,1,50,1,50,3,50,1945,8,50,1,51,1,51,3,51,1949,8,51,1, + 51,1,51,1,51,1,51,5,51,1955,8,51,10,51,12,51,1958,9,51,1,51,3,51, + 1961,8,51,1,51,3,51,1964,8,51,1,51,3,51,1967,8,51,1,51,3,51,1970, + 8,51,1,51,1,51,3,51,1974,8,51,1,52,1,52,3,52,1978,8,52,1,52,5,52, + 1981,8,52,10,52,12,52,1984,9,52,1,52,3,52,1987,8,52,1,52,3,52,1990, + 8,52,1,52,3,52,1993,8,52,1,52,3,52,1996,8,52,1,52,1,52,3,52,2000, + 8,52,1,52,5,52,2003,8,52,10,52,12,52,2006,9,52,1,52,3,52,2009,8, + 52,1,52,3,52,2012,8,52,1,52,3,52,2015,8,52,1,52,3,52,2018,8,52,3, + 52,2020,8,52,1,53,1,53,1,53,1,53,3,53,2026,8,53,1,53,1,53,1,53,1, + 53,1,53,3,53,2033,8,53,1,53,1,53,1,53,3,53,2038,8,53,1,53,3,53,2041, + 8,53,1,53,3,53,2044,8,53,1,53,1,53,3,53,2048,8,53,1,53,1,53,1,53, + 1,53,1,53,1,53,1,53,1,53,3,53,2058,8,53,1,53,1,53,3,53,2062,8,53, + 3,53,2064,8,53,1,53,3,53,2067,8,53,1,53,1,53,3,53,2071,8,53,1,54, + 1,54,5,54,2075,8,54,10,54,12,54,2078,9,54,1,54,3,54,2081,8,54,1, + 54,1,54,1,55,1,55,1,55,1,56,1,56,1,56,1,56,3,56,2092,8,56,1,56,1, + 56,1,56,1,56,1,56,1,56,3,56,2100,8,56,3,56,2102,8,56,1,57,1,57,1, + 57,1,57,1,57,3,57,2109,8,57,1,57,1,57,3,57,2113,8,57,1,57,1,57,1, + 57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2125,8,58,1,58,1,58,1, + 58,1,58,1,58,3,58,2132,8,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1, + 59,1,59,1,59,1,59,5,59,2145,8,59,10,59,12,59,2148,9,59,1,59,1,59, + 3,59,2152,8,59,1,60,1,60,1,60,5,60,2157,8,60,10,60,12,60,2160,9, + 60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1, + 64,3,64,2175,8,64,1,64,5,64,2178,8,64,10,64,12,64,2181,9,64,1,64, + 1,64,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2191,8,65,10,65,12,65,2194, + 9,65,1,65,1,65,3,65,2198,8,65,1,66,1,66,1,66,1,66,5,66,2204,8,66, + 10,66,12,66,2207,9,66,1,66,5,66,2210,8,66,10,66,12,66,2213,9,66, + 1,66,3,66,2216,8,66,1,66,3,66,2219,8,66,1,67,3,67,2222,8,67,1,67, + 1,67,1,67,1,67,1,67,3,67,2229,8,67,1,67,3,67,2232,8,67,1,67,1,67, + 1,67,1,67,3,67,2238,8,67,1,68,1,68,1,68,1,68,1,68,5,68,2245,8,68, + 10,68,12,68,2248,9,68,1,68,1,68,1,68,1,68,1,68,5,68,2255,8,68,10, + 68,12,68,2258,9,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68, + 1,68,5,68,2270,8,68,10,68,12,68,2273,9,68,1,68,1,68,3,68,2277,8, + 68,3,68,2279,8,68,1,69,1,69,1,69,3,69,2284,8,69,1,70,1,70,1,70,1, + 70,1,70,5,70,2291,8,70,10,70,12,70,2294,9,70,1,70,1,70,1,70,1,70, + 1,70,1,70,1,70,3,70,2303,8,70,1,70,1,70,1,70,3,70,2308,8,70,5,70, + 2310,8,70,10,70,12,70,2313,9,70,1,70,1,70,3,70,2317,8,70,1,71,1, + 71,1,71,1,71,1,71,3,71,2324,8,71,1,71,1,71,1,71,3,71,2329,8,71,5, + 71,2331,8,71,10,71,12,71,2334,9,71,3,71,2336,8,71,1,71,3,71,2339, + 8,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2351, + 8,72,10,72,12,72,2354,9,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1, + 73,5,73,2364,8,73,10,73,12,73,2367,9,73,1,73,1,73,3,73,2371,8,73, + 1,74,1,74,3,74,2375,8,74,1,74,3,74,2378,8,74,1,75,1,75,1,75,3,75, + 2383,8,75,1,75,1,75,1,75,3,75,2388,8,75,1,75,1,75,3,75,2392,8,75, + 1,75,3,75,2395,8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,5,76, + 2405,8,76,10,76,12,76,2408,9,76,1,76,1,76,1,77,1,77,1,77,1,77,5, + 77,2416,8,77,10,77,12,77,2419,9,77,1,77,1,77,1,77,1,77,1,77,1,77, + 1,77,1,77,5,77,2429,8,77,10,77,12,77,2432,9,77,1,77,1,77,1,78,1, + 78,1,78,1,78,5,78,2440,8,78,10,78,12,78,2443,9,78,1,78,1,78,3,78, + 2447,8,78,1,78,3,78,2450,8,78,1,79,1,79,3,79,2454,8,79,1,79,3,79, + 2457,8,79,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,82,1,82,1,82,3,82, + 2469,8,82,1,82,1,82,1,82,1,82,1,82,5,82,2476,8,82,10,82,12,82,2479, + 9,82,3,82,2481,8,82,1,82,1,82,1,82,3,82,2486,8,82,1,82,1,82,1,82, + 5,82,2491,8,82,10,82,12,82,2494,9,82,3,82,2496,8,82,1,83,1,83,1, + 84,1,84,3,84,2502,8,84,1,84,1,84,1,84,1,84,5,84,2508,8,84,10,84, + 12,84,2511,9,84,3,84,2513,8,84,1,85,1,85,1,85,3,85,2518,8,85,1,85, + 1,85,3,85,2522,8,85,1,85,1,85,1,85,1,85,3,85,2528,8,85,1,85,1,85, + 3,85,2532,8,85,1,86,3,86,2535,8,86,1,86,1,86,1,86,3,86,2540,8,86, + 1,86,3,86,2543,8,86,1,86,1,86,1,86,3,86,2548,8,86,3,86,2550,8,86, + 1,87,1,87,1,87,1,87,3,87,2556,8,87,1,88,1,88,1,88,3,88,2561,8,88, + 1,88,1,88,1,88,1,88,1,88,3,88,2568,8,88,1,89,3,89,2571,8,89,1,89, 1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89, - 1,89,1,89,1,89,3,89,2573,8,89,3,89,2575,8,89,1,89,3,89,2578,8,89, - 1,90,1,90,1,90,1,90,1,91,1,91,1,91,5,91,2587,8,91,10,91,12,91,2590, - 9,91,1,92,1,92,1,92,1,92,5,92,2596,8,92,10,92,12,92,2599,9,92,1, - 92,1,92,1,93,1,93,3,93,2605,8,93,1,94,1,94,1,94,1,94,5,94,2611,8, - 94,10,94,12,94,2614,9,94,1,94,1,94,1,95,1,95,1,95,3,95,2621,8,95, - 1,96,1,96,1,96,3,96,2626,8,96,1,96,3,96,2629,8,96,1,96,3,96,2632, - 8,96,1,96,1,96,1,96,1,96,1,96,1,96,3,96,2640,8,96,1,96,1,96,1,96, - 1,96,1,96,1,96,3,96,2648,8,96,1,96,1,96,1,96,1,96,1,96,1,96,5,96, - 2656,8,96,10,96,12,96,2659,9,96,1,96,1,96,1,96,1,96,1,96,1,96,1, - 96,5,96,2668,8,96,10,96,12,96,2671,9,96,3,96,2673,8,96,1,96,1,96, - 1,96,3,96,2678,8,96,1,97,1,97,1,97,3,97,2683,8,97,1,97,1,97,1,97, - 1,97,1,97,3,97,2690,8,97,1,97,1,97,1,97,1,97,1,97,3,97,2697,8,97, - 3,97,2699,8,97,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,5,98, - 2710,8,98,10,98,12,98,2713,9,98,1,98,1,98,1,98,3,98,2718,8,98,3, - 98,2720,8,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,2729,8,98,3, - 98,2731,8,98,1,99,1,99,1,99,1,99,1,100,1,100,3,100,2739,8,100,1, - 101,1,101,3,101,2743,8,101,1,102,3,102,2746,8,102,1,102,1,102,3, - 102,2750,8,102,3,102,2752,8,102,1,103,1,103,1,103,1,103,1,103,1, - 103,1,103,3,103,2761,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1, - 103,1,103,1,103,1,103,3,103,2773,8,103,3,103,2775,8,103,1,103,1, - 103,1,103,1,103,1,103,3,103,2782,8,103,1,103,1,103,1,103,1,103,1, - 103,3,103,2789,8,103,1,103,1,103,1,103,1,103,3,103,2795,8,103,1, - 103,1,103,1,103,1,103,3,103,2801,8,103,3,103,2803,8,103,1,104,1, - 104,1,104,5,104,2808,8,104,10,104,12,104,2811,9,104,1,105,1,105, - 1,105,5,105,2816,8,105,10,105,12,105,2819,9,105,1,106,1,106,1,106, - 5,106,2824,8,106,10,106,12,106,2827,9,106,1,107,1,107,1,107,3,107, - 2832,8,107,1,108,1,108,1,108,3,108,2837,8,108,1,108,1,108,1,109, - 1,109,1,109,3,109,2844,8,109,1,109,1,109,1,110,1,110,3,110,2850, - 8,110,1,110,3,110,2853,8,110,1,110,1,110,3,110,2857,8,110,3,110, - 2859,8,110,1,111,1,111,1,111,5,111,2864,8,111,10,111,12,111,2867, - 9,111,1,112,1,112,1,112,1,112,5,112,2873,8,112,10,112,12,112,2876, - 9,112,1,112,1,112,1,113,1,113,3,113,2882,8,113,1,114,1,114,1,114, - 1,114,1,114,1,114,5,114,2890,8,114,10,114,12,114,2893,9,114,1,114, - 1,114,3,114,2897,8,114,1,115,1,115,3,115,2901,8,115,1,116,1,116, - 1,117,1,117,1,117,1,117,1,118,1,118,3,118,2911,8,118,1,119,1,119, - 1,119,5,119,2916,8,119,10,119,12,119,2919,9,119,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,2931,8,120,3,120, - 2933,8,120,1,120,1,120,1,120,1,120,1,120,1,120,5,120,2941,8,120, - 10,120,12,120,2944,9,120,1,121,3,121,2947,8,121,1,121,1,121,1,121, - 1,121,1,121,1,121,3,121,2955,8,121,1,121,1,121,1,121,1,121,1,121, - 5,121,2962,8,121,10,121,12,121,2965,9,121,1,121,1,121,1,121,3,121, - 2970,8,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,2978,8,121, - 1,121,1,121,1,121,3,121,2983,8,121,1,121,1,121,1,121,1,121,1,121, - 1,121,1,121,1,121,5,121,2993,8,121,10,121,12,121,2996,9,121,1,121, - 1,121,3,121,3000,8,121,1,121,3,121,3003,8,121,1,121,1,121,1,121, - 1,121,3,121,3009,8,121,1,121,1,121,3,121,3013,8,121,1,121,1,121, - 1,121,3,121,3018,8,121,1,121,1,121,1,121,3,121,3023,8,121,1,121, - 1,121,1,121,3,121,3028,8,121,1,122,1,122,1,122,1,122,3,122,3034, - 8,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122, - 1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,5,122,3055, - 8,122,10,122,12,122,3058,9,122,1,123,1,123,1,124,1,124,1,124,1,124, - 1,124,1,124,3,124,3068,8,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,3,124,3080,8,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,4,124,3090,8,124,11,124,12,124,3091,1,124, - 1,124,3,124,3096,8,124,1,124,1,124,1,124,1,124,1,124,4,124,3103, - 8,124,11,124,12,124,3104,1,124,1,124,3,124,3109,8,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,5,124,3125,8,124,10,124,12,124,3128,9,124,3,124,3130,8,124, - 1,124,1,124,1,124,1,124,1,124,1,124,3,124,3138,8,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,3,124,3147,8,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,3,124,3156,8,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,4,124,3177,8,124,11,124,12,124,3178,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,3,124,3195,8,124,1,124,1,124,1,124,5,124,3200,8,124, - 10,124,12,124,3203,9,124,3,124,3205,8,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,3,124,3214,8,124,1,124,1,124,3,124,3218,8,124, - 1,124,1,124,3,124,3222,8,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,4,124,3232,8,124,11,124,12,124,3233,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124,3259, - 8,124,1,124,1,124,1,124,1,124,1,124,3,124,3266,8,124,1,124,3,124, - 3269,8,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,3,124,3284,8,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,3,124,3305,8,124,1,124,1,124,3,124,3309, - 8,124,3,124,3311,8,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,5,124,3321,8,124,10,124,12,124,3324,9,124,1,125,1,125,1,125, - 1,125,1,125,1,125,1,125,3,125,3333,8,125,1,126,1,126,1,126,1,126, - 1,126,1,126,1,126,1,126,1,126,1,126,1,126,4,126,3346,8,126,11,126, - 12,126,3347,3,126,3350,8,126,1,127,1,127,1,128,1,128,1,129,1,129, - 1,130,1,130,1,131,1,131,1,131,3,131,3363,8,131,1,132,1,132,3,132, - 3367,8,132,1,133,1,133,1,133,4,133,3372,8,133,11,133,12,133,3373, - 1,134,1,134,1,134,3,134,3379,8,134,1,135,1,135,1,135,1,135,1,135, - 1,136,3,136,3387,8,136,1,136,1,136,1,136,3,136,3392,8,136,1,137, - 1,137,1,138,1,138,1,139,1,139,1,139,3,139,3401,8,139,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,1,140,3,140,3433,8,140,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,5,141,3452,8,141,10,141,12,141,3455,9,141, - 3,141,3457,8,141,1,141,1,141,3,141,3461,8,141,1,141,1,141,1,141, - 1,141,3,141,3467,8,141,1,141,1,141,1,141,1,141,3,141,3473,8,141, - 1,141,1,141,1,141,1,141,1,141,5,141,3480,8,141,10,141,12,141,3483, - 9,141,1,141,3,141,3486,8,141,3,141,3488,8,141,1,142,1,142,1,142, - 5,142,3493,8,142,10,142,12,142,3496,9,142,1,143,1,143,1,143,5,143, - 3501,8,143,10,143,12,143,3504,9,143,1,144,1,144,1,144,5,144,3509, - 8,144,10,144,12,144,3512,9,144,1,145,1,145,1,145,5,145,3517,8,145, - 10,145,12,145,3520,9,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146, - 3,146,3529,8,146,1,147,1,147,1,147,1,148,1,148,1,148,5,148,3537, - 8,148,10,148,12,148,3540,9,148,1,149,1,149,1,149,1,149,3,149,3546, - 8,149,1,149,1,149,3,149,3550,8,149,1,150,1,150,1,150,5,150,3555, - 8,150,10,150,12,150,3558,9,150,1,151,1,151,1,151,5,151,3563,8,151, - 10,151,12,151,3566,9,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152, - 1,152,1,152,1,152,1,152,1,152,1,152,3,152,3581,8,152,1,153,1,153, - 3,153,3585,8,153,1,153,1,153,1,153,3,153,3590,8,153,1,153,1,153, - 3,153,3594,8,153,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155, - 1,155,1,155,1,155,1,155,1,155,1,155,5,155,3610,8,155,10,155,12,155, - 3613,9,155,1,156,1,156,1,156,1,156,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,157,5,157,3630,8,157,10,157,12,157, - 3633,9,157,1,157,1,157,1,157,1,157,1,157,5,157,3640,8,157,10,157, - 12,157,3643,9,157,3,157,3645,8,157,1,157,1,157,1,157,3,157,3650, - 8,157,3,157,3652,8,157,1,157,3,157,3655,8,157,1,157,3,157,3658,8, - 157,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158,3668,8, - 158,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3677,8,159,1, - 160,1,160,1,160,5,160,3682,8,160,10,160,12,160,3685,9,160,1,161, - 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,3,161,3696,8,161, - 1,162,1,162,1,163,1,163,1,163,5,163,3703,8,163,10,163,12,163,3706, - 9,163,1,164,1,164,1,164,1,165,1,165,4,165,3713,8,165,11,165,12,165, - 3714,1,165,3,165,3718,8,165,1,166,1,166,3,166,3722,8,166,1,167,1, - 167,1,167,1,167,3,167,3728,8,167,1,168,1,168,1,169,3,169,3733,8, - 169,1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,1,170,1,170,3,170,3750,8,170,1,171,1,171,1,172, - 1,172,1,173,1,173,1,174,1,174,1,174,9,1116,1186,1194,1214,1241,1250, - 1259,1268,1316,4,96,240,244,248,175,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,120,122,124,126,128,130,132,134,136,138, - 140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170, - 172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202, - 204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234, - 236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266, - 268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298, - 300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330, - 332,334,336,338,340,342,344,346,348,0,76,2,0,78,78,229,229,2,0,34, - 34,247,247,3,0,73,73,191,191,262,262,2,0,123,123,140,140,2,0,11, - 11,39,39,2,0,91,91,98,98,5,0,46,46,58,58,108,108,122,122,173,173, - 3,0,10,10,290,290,331,331,1,0,86,87,2,0,108,108,122,122,3,0,8,8, - 96,96,289,289,2,0,8,8,167,167,1,0,335,336,2,0,59,59,96,96,2,0,129, - 129,249,249,6,0,54,54,129,129,143,143,172,172,228,228,313,313,3, - 0,11,11,59,59,96,96,4,0,107,107,139,139,171,171,326,326,2,0,171, - 171,326,326,3,0,45,45,275,275,279,279,2,0,45,45,275,275,3,0,18,18, - 103,103,320,320,3,0,72,72,190,190,261,261,4,0,102,102,148,148,270, - 270,323,323,3,0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116, - 116,157,157,2,0,292,292,337,337,2,0,291,291,303,303,2,0,61,61,256, - 256,2,0,104,104,141,141,2,0,10,10,92,92,2,0,15,15,264,264,2,0,124, - 124,250,250,2,0,382,382,384,384,2,0,93,93,217,217,2,0,209,209,278, - 278,2,0,197,197,360,360,1,0,251,252,1,0,163,164,3,0,10,10,16,16, - 277,277,3,0,111,111,316,316,325,325,2,0,361,362,366,366,2,0,94,94, - 363,365,2,0,361,362,369,369,11,0,67,67,69,69,134,134,180,180,182, - 182,184,184,186,186,231,231,259,259,341,341,348,348,4,0,63,63,65, - 66,268,268,331,331,2,0,74,75,306,306,3,0,76,77,302,302,307,307,2, - 0,36,36,318,318,2,0,138,138,246,246,1,0,287,288,2,0,4,4,123,123, - 2,0,4,4,119,119,3,0,28,28,160,160,311,311,1,0,220,221,1,0,352,359, - 2,0,94,94,361,370,4,0,14,14,140,140,197,197,208,208,2,0,111,111, - 316,316,1,0,361,362,7,0,67,68,134,135,180,187,192,193,259,260,341, - 342,348,349,6,0,67,67,134,134,184,184,186,186,259,259,348,348,2, - 0,186,186,348,348,4,0,67,67,134,134,184,184,259,259,3,0,134,134, - 184,184,259,259,2,0,82,82,352,352,2,0,233,233,258,258,2,0,118,118, - 226,226,2,0,378,378,389,389,1,0,379,387,2,0,96,96,269,269,1,0,377, - 378,52,0,8,9,11,13,15,15,17,19,21,22,24,27,29,34,37,41,43,46,48, - 48,50,56,58,58,61,62,67,91,93,96,98,98,101,101,103,110,113,113,115, - 118,121,122,125,128,131,131,133,139,141,143,145,147,149,151,154, - 154,156,157,159,159,163,193,195,195,199,201,205,207,210,210,212, - 213,215,219,222,226,228,238,240,249,251,262,264,267,269,276,278, - 292,294,299,302,308,310,310,312,322,326,330,333,342,345,345,348, - 351,16,0,15,15,60,60,102,102,124,124,144,144,148,148,155,155,158, - 158,161,161,194,194,203,203,250,250,264,264,270,270,323,323,332, - 332,19,0,8,14,16,59,61,101,103,122,125,143,145,147,149,154,156,157, - 159,160,162,193,195,195,197,202,204,249,251,262,265,269,271,292, - 294,322,324,331,333,351,4353,0,353,1,0,0,0,2,358,1,0,0,0,4,1319, - 1,0,0,0,6,1414,1,0,0,0,8,1416,1,0,0,0,10,1428,1,0,0,0,12,1441,1, - 0,0,0,14,1444,1,0,0,0,16,1448,1,0,0,0,18,1529,1,0,0,0,20,1531,1, - 0,0,0,22,1536,1,0,0,0,24,1557,1,0,0,0,26,1559,1,0,0,0,28,1566,1, - 0,0,0,30,1568,1,0,0,0,32,1576,1,0,0,0,34,1585,1,0,0,0,36,1596,1, - 0,0,0,38,1617,1,0,0,0,40,1620,1,0,0,0,42,1623,1,0,0,0,44,1634,1, - 0,0,0,46,1650,1,0,0,0,48,1656,1,0,0,0,50,1658,1,0,0,0,52,1669,1, - 0,0,0,54,1676,1,0,0,0,56,1687,1,0,0,0,58,1704,1,0,0,0,60,1712,1, - 0,0,0,62,1714,1,0,0,0,64,1778,1,0,0,0,66,1780,1,0,0,0,68,1782,1, - 0,0,0,70,1784,1,0,0,0,72,1786,1,0,0,0,74,1788,1,0,0,0,76,1790,1, - 0,0,0,78,1794,1,0,0,0,80,1796,1,0,0,0,82,1798,1,0,0,0,84,1806,1, - 0,0,0,86,1814,1,0,0,0,88,1819,1,0,0,0,90,1846,1,0,0,0,92,1851,1, - 0,0,0,94,1859,1,0,0,0,96,1867,1,0,0,0,98,1917,1,0,0,0,100,1921,1, - 0,0,0,102,1957,1,0,0,0,104,2003,1,0,0,0,106,2024,1,0,0,0,108,2056, - 1,0,0,0,110,2068,1,0,0,0,112,2071,1,0,0,0,114,2087,1,0,0,0,116,2101, - 1,0,0,0,118,2135,1,0,0,0,120,2137,1,0,0,0,122,2145,1,0,0,0,124,2149, - 1,0,0,0,126,2152,1,0,0,0,128,2155,1,0,0,0,130,2181,1,0,0,0,132,2183, - 1,0,0,0,134,2221,1,0,0,0,136,2262,1,0,0,0,138,2267,1,0,0,0,140,2300, - 1,0,0,0,142,2322,1,0,0,0,144,2324,1,0,0,0,146,2354,1,0,0,0,148,2356, - 1,0,0,0,150,2363,1,0,0,0,152,2380,1,0,0,0,154,2395,1,0,0,0,156,2419, - 1,0,0,0,158,2435,1,0,0,0,160,2442,1,0,0,0,162,2446,1,0,0,0,164,2449, - 1,0,0,0,166,2481,1,0,0,0,168,2496,1,0,0,0,170,2515,1,0,0,0,172,2533, - 1,0,0,0,174,2539,1,0,0,0,176,2541,1,0,0,0,178,2577,1,0,0,0,180,2579, - 1,0,0,0,182,2583,1,0,0,0,184,2591,1,0,0,0,186,2602,1,0,0,0,188,2606, - 1,0,0,0,190,2617,1,0,0,0,192,2677,1,0,0,0,194,2698,1,0,0,0,196,2719, - 1,0,0,0,198,2732,1,0,0,0,200,2738,1,0,0,0,202,2742,1,0,0,0,204,2751, - 1,0,0,0,206,2802,1,0,0,0,208,2804,1,0,0,0,210,2812,1,0,0,0,212,2820, - 1,0,0,0,214,2828,1,0,0,0,216,2836,1,0,0,0,218,2843,1,0,0,0,220,2849, - 1,0,0,0,222,2860,1,0,0,0,224,2868,1,0,0,0,226,2881,1,0,0,0,228,2896, - 1,0,0,0,230,2900,1,0,0,0,232,2902,1,0,0,0,234,2904,1,0,0,0,236,2910, - 1,0,0,0,238,2912,1,0,0,0,240,2932,1,0,0,0,242,3027,1,0,0,0,244,3033, - 1,0,0,0,246,3059,1,0,0,0,248,3310,1,0,0,0,250,3332,1,0,0,0,252,3349, - 1,0,0,0,254,3351,1,0,0,0,256,3353,1,0,0,0,258,3355,1,0,0,0,260,3357, - 1,0,0,0,262,3359,1,0,0,0,264,3364,1,0,0,0,266,3371,1,0,0,0,268,3375, - 1,0,0,0,270,3380,1,0,0,0,272,3386,1,0,0,0,274,3393,1,0,0,0,276,3395, - 1,0,0,0,278,3400,1,0,0,0,280,3432,1,0,0,0,282,3487,1,0,0,0,284,3489, - 1,0,0,0,286,3497,1,0,0,0,288,3505,1,0,0,0,290,3513,1,0,0,0,292,3528, - 1,0,0,0,294,3530,1,0,0,0,296,3533,1,0,0,0,298,3541,1,0,0,0,300,3551, - 1,0,0,0,302,3559,1,0,0,0,304,3580,1,0,0,0,306,3582,1,0,0,0,308,3595, - 1,0,0,0,310,3600,1,0,0,0,312,3614,1,0,0,0,314,3657,1,0,0,0,316,3667, - 1,0,0,0,318,3676,1,0,0,0,320,3678,1,0,0,0,322,3695,1,0,0,0,324,3697, - 1,0,0,0,326,3699,1,0,0,0,328,3707,1,0,0,0,330,3717,1,0,0,0,332,3721, - 1,0,0,0,334,3727,1,0,0,0,336,3729,1,0,0,0,338,3732,1,0,0,0,340,3749, - 1,0,0,0,342,3751,1,0,0,0,344,3753,1,0,0,0,346,3755,1,0,0,0,348,3757, - 1,0,0,0,350,352,3,2,1,0,351,350,1,0,0,0,352,355,1,0,0,0,353,351, - 1,0,0,0,353,354,1,0,0,0,354,356,1,0,0,0,355,353,1,0,0,0,356,357, - 5,0,0,1,357,1,1,0,0,0,358,360,3,4,2,0,359,361,5,1,0,0,360,359,1, - 0,0,0,360,361,1,0,0,0,361,3,1,0,0,0,362,1320,3,16,8,0,363,365,3, - 32,16,0,364,363,1,0,0,0,364,365,1,0,0,0,365,366,1,0,0,0,366,1320, - 3,64,32,0,367,369,5,330,0,0,368,370,3,26,13,0,369,368,1,0,0,0,369, - 370,1,0,0,0,370,371,1,0,0,0,371,1320,3,66,33,0,372,373,5,269,0,0, - 373,376,5,37,0,0,374,377,3,332,166,0,375,377,3,342,171,0,376,374, - 1,0,0,0,376,375,1,0,0,0,377,1320,1,0,0,0,378,379,5,59,0,0,379,381, - 3,26,13,0,380,382,3,160,80,0,381,380,1,0,0,0,381,382,1,0,0,0,382, - 383,1,0,0,0,383,393,3,68,34,0,384,385,5,51,0,0,385,392,3,342,171, - 0,386,387,5,170,0,0,387,392,3,342,171,0,388,389,5,346,0,0,389,390, - 7,0,0,0,390,392,3,42,21,0,391,384,1,0,0,0,391,386,1,0,0,0,391,388, - 1,0,0,0,392,395,1,0,0,0,393,391,1,0,0,0,393,394,1,0,0,0,394,1320, - 1,0,0,0,395,393,1,0,0,0,396,397,5,11,0,0,397,398,3,26,13,0,398,399, - 3,66,33,0,399,400,5,269,0,0,400,401,7,0,0,0,401,402,3,42,21,0,402, - 1320,1,0,0,0,403,404,5,11,0,0,404,405,3,26,13,0,405,406,3,66,33, - 0,406,407,5,269,0,0,407,408,5,170,0,0,408,409,3,342,171,0,409,1320, - 1,0,0,0,410,411,5,96,0,0,411,413,3,26,13,0,412,414,3,162,81,0,413, - 412,1,0,0,0,413,414,1,0,0,0,414,415,1,0,0,0,415,417,3,66,33,0,416, - 418,7,1,0,0,417,416,1,0,0,0,417,418,1,0,0,0,418,1320,1,0,0,0,419, - 420,5,273,0,0,420,423,7,2,0,0,421,422,7,3,0,0,422,424,3,210,105, - 0,423,421,1,0,0,0,423,424,1,0,0,0,424,429,1,0,0,0,425,427,5,163, - 0,0,426,425,1,0,0,0,426,427,1,0,0,0,427,428,1,0,0,0,428,430,3,342, - 171,0,429,426,1,0,0,0,429,430,1,0,0,0,430,1320,1,0,0,0,431,433,5, - 59,0,0,432,434,5,298,0,0,433,432,1,0,0,0,433,434,1,0,0,0,434,436, - 1,0,0,0,435,437,5,109,0,0,436,435,1,0,0,0,436,437,1,0,0,0,437,438, - 1,0,0,0,438,440,5,293,0,0,439,441,3,160,80,0,440,439,1,0,0,0,440, - 441,1,0,0,0,441,442,1,0,0,0,442,447,3,70,35,0,443,444,5,2,0,0,444, - 445,3,300,150,0,445,446,5,3,0,0,446,448,1,0,0,0,447,443,1,0,0,0, - 447,448,1,0,0,0,448,450,1,0,0,0,449,451,3,36,18,0,450,449,1,0,0, - 0,450,451,1,0,0,0,451,452,1,0,0,0,452,457,3,38,19,0,453,455,5,20, - 0,0,454,453,1,0,0,0,454,455,1,0,0,0,455,456,1,0,0,0,456,458,3,16, - 8,0,457,454,1,0,0,0,457,458,1,0,0,0,458,1320,1,0,0,0,459,460,5,59, - 0,0,460,462,5,293,0,0,461,463,3,160,80,0,462,461,1,0,0,0,462,463, - 1,0,0,0,463,464,1,0,0,0,464,465,3,70,35,0,465,466,5,163,0,0,466, - 477,3,72,36,0,467,476,3,36,18,0,468,476,3,206,103,0,469,476,3,58, - 29,0,470,471,5,170,0,0,471,476,3,342,171,0,472,473,5,297,0,0,473, - 476,3,42,21,0,474,476,3,40,20,0,475,467,1,0,0,0,475,468,1,0,0,0, - 475,469,1,0,0,0,475,470,1,0,0,0,475,472,1,0,0,0,475,474,1,0,0,0, - 476,479,1,0,0,0,477,475,1,0,0,0,477,478,1,0,0,0,478,1320,1,0,0,0, - 479,477,1,0,0,0,480,481,5,59,0,0,481,483,5,208,0,0,482,480,1,0,0, - 0,482,483,1,0,0,0,483,484,1,0,0,0,484,485,5,244,0,0,485,486,5,293, - 0,0,486,491,3,70,35,0,487,488,5,2,0,0,488,489,3,300,150,0,489,490, - 5,3,0,0,490,492,1,0,0,0,491,487,1,0,0,0,491,492,1,0,0,0,492,494, - 1,0,0,0,493,495,3,36,18,0,494,493,1,0,0,0,494,495,1,0,0,0,495,496, - 1,0,0,0,496,501,3,38,19,0,497,499,5,20,0,0,498,497,1,0,0,0,498,499, - 1,0,0,0,499,500,1,0,0,0,500,502,3,16,8,0,501,498,1,0,0,0,501,502, - 1,0,0,0,502,1320,1,0,0,0,503,504,5,13,0,0,504,505,5,293,0,0,505, - 507,3,72,36,0,506,508,3,22,11,0,507,506,1,0,0,0,507,508,1,0,0,0, - 508,509,1,0,0,0,509,510,5,55,0,0,510,518,5,282,0,0,511,519,5,196, - 0,0,512,513,5,119,0,0,513,514,5,50,0,0,514,519,3,82,41,0,515,516, - 5,119,0,0,516,517,5,10,0,0,517,519,5,50,0,0,518,511,1,0,0,0,518, - 512,1,0,0,0,518,515,1,0,0,0,518,519,1,0,0,0,519,1320,1,0,0,0,520, - 521,5,13,0,0,521,524,5,294,0,0,522,523,7,3,0,0,523,525,3,66,33,0, - 524,522,1,0,0,0,524,525,1,0,0,0,525,526,1,0,0,0,526,527,5,55,0,0, - 527,529,5,282,0,0,528,530,5,196,0,0,529,528,1,0,0,0,529,530,1,0, - 0,0,530,1320,1,0,0,0,531,532,5,11,0,0,532,533,5,293,0,0,533,534, - 3,72,36,0,534,535,5,8,0,0,535,536,5,49,0,0,536,537,3,286,143,0,537, - 1320,1,0,0,0,538,539,5,11,0,0,539,540,5,293,0,0,540,541,3,72,36, - 0,541,542,5,8,0,0,542,543,5,50,0,0,543,544,5,2,0,0,544,545,3,284, - 142,0,545,546,5,3,0,0,546,1320,1,0,0,0,547,548,5,11,0,0,548,549, - 5,293,0,0,549,550,3,72,36,0,550,551,5,241,0,0,551,552,5,49,0,0,552, - 553,3,78,39,0,553,554,5,309,0,0,554,555,3,84,42,0,555,1320,1,0,0, - 0,556,557,5,11,0,0,557,558,5,293,0,0,558,559,3,72,36,0,559,560,5, - 96,0,0,560,562,5,49,0,0,561,563,3,162,81,0,562,561,1,0,0,0,562,563, - 1,0,0,0,563,564,1,0,0,0,564,565,3,78,39,0,565,1320,1,0,0,0,566,567, - 5,11,0,0,567,568,5,293,0,0,568,569,3,72,36,0,569,570,5,96,0,0,570, - 572,5,50,0,0,571,573,3,162,81,0,572,571,1,0,0,0,572,573,1,0,0,0, - 573,574,1,0,0,0,574,575,5,2,0,0,575,576,3,82,41,0,576,577,5,3,0, - 0,577,1320,1,0,0,0,578,583,5,11,0,0,579,580,5,293,0,0,580,584,3, - 72,36,0,581,582,5,338,0,0,582,584,3,76,38,0,583,579,1,0,0,0,583, - 581,1,0,0,0,584,585,1,0,0,0,585,586,5,241,0,0,586,587,5,309,0,0, - 587,588,3,210,105,0,588,1320,1,0,0,0,589,594,5,11,0,0,590,591,5, - 293,0,0,591,595,3,72,36,0,592,593,5,338,0,0,593,595,3,76,38,0,594, - 590,1,0,0,0,594,592,1,0,0,0,595,596,1,0,0,0,596,597,5,269,0,0,597, - 598,5,297,0,0,598,599,3,42,21,0,599,1320,1,0,0,0,600,605,5,11,0, - 0,601,602,5,293,0,0,602,606,3,72,36,0,603,604,5,338,0,0,604,606, - 3,76,38,0,605,601,1,0,0,0,605,603,1,0,0,0,606,607,1,0,0,0,607,608, - 5,328,0,0,608,610,5,297,0,0,609,611,3,162,81,0,610,609,1,0,0,0,610, - 611,1,0,0,0,611,612,1,0,0,0,612,613,3,42,21,0,613,1320,1,0,0,0,614, - 615,5,11,0,0,615,616,5,293,0,0,616,617,3,72,36,0,617,619,7,4,0,0, - 618,620,5,49,0,0,619,618,1,0,0,0,619,620,1,0,0,0,620,621,1,0,0,0, - 621,623,3,78,39,0,622,624,3,340,170,0,623,622,1,0,0,0,623,624,1, - 0,0,0,624,1320,1,0,0,0,625,626,5,11,0,0,626,627,5,293,0,0,627,629, - 3,72,36,0,628,630,3,22,11,0,629,628,1,0,0,0,629,630,1,0,0,0,630, - 631,1,0,0,0,631,633,5,39,0,0,632,634,5,49,0,0,633,632,1,0,0,0,633, - 634,1,0,0,0,634,635,1,0,0,0,635,636,3,78,39,0,636,638,3,298,149, - 0,637,639,3,278,139,0,638,637,1,0,0,0,638,639,1,0,0,0,639,1320,1, - 0,0,0,640,641,5,11,0,0,641,642,5,293,0,0,642,644,3,72,36,0,643,645, - 3,22,11,0,644,643,1,0,0,0,644,645,1,0,0,0,645,646,1,0,0,0,646,647, - 5,244,0,0,647,648,5,50,0,0,648,649,5,2,0,0,649,650,3,288,144,0,650, - 651,5,3,0,0,651,1320,1,0,0,0,652,653,5,11,0,0,653,654,5,293,0,0, - 654,656,3,72,36,0,655,657,3,22,11,0,656,655,1,0,0,0,656,657,1,0, - 0,0,657,658,1,0,0,0,658,659,5,269,0,0,659,660,5,266,0,0,660,664, - 3,342,171,0,661,662,5,346,0,0,662,663,5,267,0,0,663,665,3,42,21, - 0,664,661,1,0,0,0,664,665,1,0,0,0,665,1320,1,0,0,0,666,667,5,11, - 0,0,667,668,5,293,0,0,668,670,3,72,36,0,669,671,3,22,11,0,670,669, - 1,0,0,0,670,671,1,0,0,0,671,672,1,0,0,0,672,673,5,269,0,0,673,674, - 5,267,0,0,674,675,3,42,21,0,675,1320,1,0,0,0,676,681,5,11,0,0,677, - 678,5,293,0,0,678,682,3,72,36,0,679,680,5,338,0,0,680,682,3,76,38, - 0,681,677,1,0,0,0,681,679,1,0,0,0,682,683,1,0,0,0,683,685,5,8,0, - 0,684,686,3,160,80,0,685,684,1,0,0,0,685,686,1,0,0,0,686,688,1,0, - 0,0,687,689,3,20,10,0,688,687,1,0,0,0,689,690,1,0,0,0,690,688,1, - 0,0,0,690,691,1,0,0,0,691,1320,1,0,0,0,692,693,5,11,0,0,693,694, - 5,293,0,0,694,695,3,72,36,0,695,696,3,22,11,0,696,697,5,241,0,0, - 697,698,5,309,0,0,698,699,3,22,11,0,699,1320,1,0,0,0,700,705,5,11, - 0,0,701,702,5,293,0,0,702,706,3,72,36,0,703,704,5,338,0,0,704,706, - 3,76,38,0,705,701,1,0,0,0,705,703,1,0,0,0,706,707,1,0,0,0,707,709, - 5,96,0,0,708,710,3,162,81,0,709,708,1,0,0,0,709,710,1,0,0,0,710, - 711,1,0,0,0,711,716,3,22,11,0,712,713,5,4,0,0,713,715,3,22,11,0, - 714,712,1,0,0,0,715,718,1,0,0,0,716,714,1,0,0,0,716,717,1,0,0,0, - 717,720,1,0,0,0,718,716,1,0,0,0,719,721,5,230,0,0,720,719,1,0,0, - 0,720,721,1,0,0,0,721,1320,1,0,0,0,722,723,5,11,0,0,723,724,5,293, - 0,0,724,726,3,72,36,0,725,727,3,22,11,0,726,725,1,0,0,0,726,727, - 1,0,0,0,727,728,1,0,0,0,728,729,5,269,0,0,729,730,5,170,0,0,730, - 731,3,342,171,0,731,1320,1,0,0,0,732,733,5,11,0,0,733,734,5,293, - 0,0,734,735,3,72,36,0,735,736,5,237,0,0,736,737,5,219,0,0,737,1320, - 1,0,0,0,738,739,5,11,0,0,739,740,5,176,0,0,740,741,5,338,0,0,741, - 742,3,76,38,0,742,743,7,5,0,0,743,744,5,248,0,0,744,1320,1,0,0,0, - 745,746,5,11,0,0,746,747,5,176,0,0,747,748,5,338,0,0,748,749,3,76, - 38,0,749,750,5,269,0,0,750,751,5,297,0,0,751,752,3,42,21,0,752,1320, - 1,0,0,0,753,754,5,96,0,0,754,756,5,293,0,0,755,757,3,162,81,0,756, - 755,1,0,0,0,756,757,1,0,0,0,757,758,1,0,0,0,758,760,3,72,36,0,759, - 761,5,230,0,0,760,759,1,0,0,0,760,761,1,0,0,0,761,1320,1,0,0,0,762, - 763,5,96,0,0,763,765,5,338,0,0,764,766,3,162,81,0,765,764,1,0,0, - 0,765,766,1,0,0,0,766,767,1,0,0,0,767,1320,3,76,38,0,768,769,5,96, - 0,0,769,770,5,176,0,0,770,772,5,338,0,0,771,773,3,162,81,0,772,771, - 1,0,0,0,772,773,1,0,0,0,773,774,1,0,0,0,774,1320,3,76,38,0,775,778, - 5,59,0,0,776,777,5,208,0,0,777,779,5,244,0,0,778,776,1,0,0,0,778, - 779,1,0,0,0,779,784,1,0,0,0,780,782,5,128,0,0,781,780,1,0,0,0,781, - 782,1,0,0,0,782,783,1,0,0,0,783,785,5,298,0,0,784,781,1,0,0,0,784, - 785,1,0,0,0,785,786,1,0,0,0,786,788,5,338,0,0,787,789,3,160,80,0, - 788,787,1,0,0,0,788,789,1,0,0,0,789,790,1,0,0,0,790,792,3,74,37, - 0,791,793,3,188,94,0,792,791,1,0,0,0,792,793,1,0,0,0,793,803,1,0, - 0,0,794,795,5,51,0,0,795,802,3,342,171,0,796,797,5,218,0,0,797,798, - 5,203,0,0,798,802,3,180,90,0,799,800,5,297,0,0,800,802,3,42,21,0, - 801,794,1,0,0,0,801,796,1,0,0,0,801,799,1,0,0,0,802,805,1,0,0,0, - 803,801,1,0,0,0,803,804,1,0,0,0,804,806,1,0,0,0,805,803,1,0,0,0, - 806,807,5,20,0,0,807,808,3,16,8,0,808,1320,1,0,0,0,809,812,5,59, - 0,0,810,811,5,208,0,0,811,813,5,244,0,0,812,810,1,0,0,0,812,813, - 1,0,0,0,813,815,1,0,0,0,814,816,5,128,0,0,815,814,1,0,0,0,815,816, - 1,0,0,0,816,817,1,0,0,0,817,818,5,298,0,0,818,819,5,338,0,0,819, - 824,3,74,37,0,820,821,5,2,0,0,821,822,3,296,148,0,822,823,5,3,0, - 0,823,825,1,0,0,0,824,820,1,0,0,0,824,825,1,0,0,0,825,826,1,0,0, - 0,826,829,3,36,18,0,827,828,5,207,0,0,828,830,3,42,21,0,829,827, - 1,0,0,0,829,830,1,0,0,0,830,1320,1,0,0,0,831,832,5,11,0,0,832,833, - 5,338,0,0,833,835,3,76,38,0,834,836,5,20,0,0,835,834,1,0,0,0,835, - 836,1,0,0,0,836,837,1,0,0,0,837,838,3,16,8,0,838,1320,1,0,0,0,839, - 842,5,59,0,0,840,841,5,208,0,0,841,843,5,244,0,0,842,840,1,0,0,0, - 842,843,1,0,0,0,843,845,1,0,0,0,844,846,5,298,0,0,845,844,1,0,0, - 0,845,846,1,0,0,0,846,847,1,0,0,0,847,849,5,125,0,0,848,850,3,160, - 80,0,849,848,1,0,0,0,849,850,1,0,0,0,850,851,1,0,0,0,851,852,3,324, - 162,0,852,853,5,20,0,0,853,867,3,342,171,0,854,855,5,332,0,0,855, - 856,3,332,166,0,856,857,3,342,171,0,857,864,1,0,0,0,858,859,5,4, - 0,0,859,860,3,332,166,0,860,861,3,342,171,0,861,863,1,0,0,0,862, - 858,1,0,0,0,863,866,1,0,0,0,864,862,1,0,0,0,864,865,1,0,0,0,865, - 868,1,0,0,0,866,864,1,0,0,0,867,854,1,0,0,0,867,868,1,0,0,0,868, - 1320,1,0,0,0,869,870,5,59,0,0,870,871,5,176,0,0,871,873,5,338,0, - 0,872,874,3,160,80,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875,1,0, - 0,0,875,877,3,74,37,0,876,878,3,36,18,0,877,876,1,0,0,0,877,878, - 1,0,0,0,878,896,1,0,0,0,879,880,5,207,0,0,880,895,3,42,21,0,881, - 882,5,218,0,0,882,883,5,31,0,0,883,895,3,224,112,0,884,895,3,10, - 5,0,885,895,3,8,4,0,886,895,3,206,103,0,887,895,3,58,29,0,888,889, - 5,170,0,0,889,895,3,342,171,0,890,891,5,51,0,0,891,895,3,342,171, - 0,892,893,5,297,0,0,893,895,3,42,21,0,894,879,1,0,0,0,894,881,1, - 0,0,0,894,884,1,0,0,0,894,885,1,0,0,0,894,886,1,0,0,0,894,887,1, - 0,0,0,894,888,1,0,0,0,894,890,1,0,0,0,894,892,1,0,0,0,895,898,1, - 0,0,0,896,894,1,0,0,0,896,897,1,0,0,0,897,899,1,0,0,0,898,896,1, - 0,0,0,899,900,5,20,0,0,900,901,3,16,8,0,901,1320,1,0,0,0,902,904, - 5,96,0,0,903,905,5,298,0,0,904,903,1,0,0,0,904,905,1,0,0,0,905,906, - 1,0,0,0,906,908,5,125,0,0,907,909,3,162,81,0,908,907,1,0,0,0,908, - 909,1,0,0,0,909,910,1,0,0,0,910,1320,3,322,161,0,911,914,5,81,0, - 0,912,913,5,208,0,0,913,915,5,244,0,0,914,912,1,0,0,0,914,915,1, - 0,0,0,915,917,1,0,0,0,916,918,5,336,0,0,917,916,1,0,0,0,917,918, - 1,0,0,0,918,919,1,0,0,0,919,921,3,322,161,0,920,922,3,282,141,0, - 921,920,1,0,0,0,921,922,1,0,0,0,922,924,1,0,0,0,923,925,3,294,147, - 0,924,923,1,0,0,0,924,925,1,0,0,0,925,1320,1,0,0,0,926,927,5,96, - 0,0,927,928,5,298,0,0,928,930,5,336,0,0,929,931,3,162,81,0,930,929, - 1,0,0,0,930,931,1,0,0,0,931,935,1,0,0,0,932,936,3,72,36,0,933,936, - 3,76,38,0,934,936,3,322,161,0,935,932,1,0,0,0,935,933,1,0,0,0,935, - 934,1,0,0,0,936,1320,1,0,0,0,937,939,5,106,0,0,938,940,7,6,0,0,939, - 938,1,0,0,0,939,940,1,0,0,0,940,941,1,0,0,0,941,1320,3,4,2,0,942, - 943,5,273,0,0,943,946,5,294,0,0,944,945,7,3,0,0,945,947,3,66,33, - 0,946,944,1,0,0,0,946,947,1,0,0,0,947,952,1,0,0,0,948,950,5,163, - 0,0,949,948,1,0,0,0,949,950,1,0,0,0,950,951,1,0,0,0,951,953,3,342, - 171,0,952,949,1,0,0,0,952,953,1,0,0,0,953,1320,1,0,0,0,954,955,5, - 273,0,0,955,956,5,293,0,0,956,959,5,108,0,0,957,958,7,3,0,0,958, - 960,3,66,33,0,959,957,1,0,0,0,959,960,1,0,0,0,960,961,1,0,0,0,961, - 962,5,163,0,0,962,964,3,342,171,0,963,965,3,22,11,0,964,963,1,0, - 0,0,964,965,1,0,0,0,965,1320,1,0,0,0,966,967,5,273,0,0,967,968,5, - 297,0,0,968,973,3,72,36,0,969,970,5,2,0,0,970,971,3,46,23,0,971, - 972,5,3,0,0,972,974,1,0,0,0,973,969,1,0,0,0,973,974,1,0,0,0,974, - 1320,1,0,0,0,975,976,5,273,0,0,976,977,5,50,0,0,977,978,7,3,0,0, - 978,981,3,72,36,0,979,980,7,3,0,0,980,982,3,66,33,0,981,979,1,0, - 0,0,981,982,1,0,0,0,982,1320,1,0,0,0,983,984,5,273,0,0,984,987,5, - 339,0,0,985,986,7,3,0,0,986,988,3,66,33,0,987,985,1,0,0,0,987,988, - 1,0,0,0,988,993,1,0,0,0,989,991,5,163,0,0,990,989,1,0,0,0,990,991, - 1,0,0,0,991,992,1,0,0,0,992,994,3,342,171,0,993,990,1,0,0,0,993, - 994,1,0,0,0,994,1320,1,0,0,0,995,996,5,273,0,0,996,997,5,219,0,0, - 997,999,3,72,36,0,998,1000,3,22,11,0,999,998,1,0,0,0,999,1000,1, - 0,0,0,1000,1320,1,0,0,0,1001,1003,5,273,0,0,1002,1004,7,7,0,0,1003, - 1002,1,0,0,0,1003,1004,1,0,0,0,1004,1005,1,0,0,0,1005,1008,5,126, - 0,0,1006,1007,7,3,0,0,1007,1009,3,66,33,0,1008,1006,1,0,0,0,1008, - 1009,1,0,0,0,1009,1017,1,0,0,0,1010,1012,5,163,0,0,1011,1010,1,0, - 0,0,1011,1012,1,0,0,0,1012,1015,1,0,0,0,1013,1016,3,210,105,0,1014, - 1016,3,342,171,0,1015,1013,1,0,0,0,1015,1014,1,0,0,0,1016,1018,1, - 0,0,0,1017,1011,1,0,0,0,1017,1018,1,0,0,0,1018,1320,1,0,0,0,1019, - 1020,5,273,0,0,1020,1021,5,59,0,0,1021,1022,5,293,0,0,1022,1025, - 3,72,36,0,1023,1024,5,20,0,0,1024,1026,5,266,0,0,1025,1023,1,0,0, - 0,1025,1026,1,0,0,0,1026,1320,1,0,0,0,1027,1028,5,273,0,0,1028,1029, - 5,62,0,0,1029,1320,3,26,13,0,1030,1031,5,273,0,0,1031,1036,5,38, - 0,0,1032,1034,5,163,0,0,1033,1032,1,0,0,0,1033,1034,1,0,0,0,1034, - 1035,1,0,0,0,1035,1037,3,342,171,0,1036,1033,1,0,0,0,1036,1037,1, - 0,0,0,1037,1320,1,0,0,0,1038,1039,5,273,0,0,1039,1040,5,176,0,0, - 1040,1043,5,339,0,0,1041,1042,7,3,0,0,1042,1044,3,66,33,0,1043,1041, - 1,0,0,0,1043,1044,1,0,0,0,1044,1049,1,0,0,0,1045,1047,5,163,0,0, - 1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0,0,0,1048,1050, - 3,342,171,0,1049,1046,1,0,0,0,1049,1050,1,0,0,0,1050,1320,1,0,0, - 0,1051,1052,5,273,0,0,1052,1053,5,59,0,0,1053,1054,5,176,0,0,1054, - 1055,5,338,0,0,1055,1058,3,76,38,0,1056,1057,5,20,0,0,1057,1059, - 5,266,0,0,1058,1056,1,0,0,0,1058,1059,1,0,0,0,1059,1320,1,0,0,0, - 1060,1061,7,8,0,0,1061,1063,5,125,0,0,1062,1064,5,108,0,0,1063,1062, - 1,0,0,0,1063,1064,1,0,0,0,1064,1065,1,0,0,0,1065,1320,3,28,14,0, - 1066,1067,7,8,0,0,1067,1069,5,72,0,0,1068,1070,5,108,0,0,1069,1068, - 1,0,0,0,1069,1070,1,0,0,0,1070,1071,1,0,0,0,1071,1320,3,66,33,0, - 1072,1074,7,8,0,0,1073,1075,5,293,0,0,1074,1073,1,0,0,0,1074,1075, - 1,0,0,0,1075,1077,1,0,0,0,1076,1078,7,9,0,0,1077,1076,1,0,0,0,1077, - 1078,1,0,0,0,1078,1079,1,0,0,0,1079,1081,3,72,36,0,1080,1082,3,22, - 11,0,1081,1080,1,0,0,0,1081,1082,1,0,0,0,1082,1084,1,0,0,0,1083, - 1085,3,30,15,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085,1320,1,0, - 0,0,1086,1088,7,8,0,0,1087,1089,5,232,0,0,1088,1087,1,0,0,0,1088, - 1089,1,0,0,0,1089,1090,1,0,0,0,1090,1320,3,16,8,0,1091,1092,5,51, - 0,0,1092,1098,5,203,0,0,1093,1094,3,26,13,0,1094,1095,3,66,33,0, - 1095,1099,1,0,0,0,1096,1097,5,293,0,0,1097,1099,3,72,36,0,1098,1093, - 1,0,0,0,1098,1096,1,0,0,0,1099,1100,1,0,0,0,1100,1103,5,153,0,0, - 1101,1104,3,342,171,0,1102,1104,5,198,0,0,1103,1101,1,0,0,0,1103, - 1102,1,0,0,0,1104,1320,1,0,0,0,1105,1106,5,240,0,0,1106,1107,5,293, - 0,0,1107,1320,3,72,36,0,1108,1109,5,240,0,0,1109,1110,5,125,0,0, - 1110,1320,3,322,161,0,1111,1119,5,240,0,0,1112,1120,3,342,171,0, - 1113,1115,9,0,0,0,1114,1113,1,0,0,0,1115,1118,1,0,0,0,1116,1117, - 1,0,0,0,1116,1114,1,0,0,0,1117,1120,1,0,0,0,1118,1116,1,0,0,0,1119, - 1112,1,0,0,0,1119,1116,1,0,0,0,1120,1320,1,0,0,0,1121,1122,5,240, - 0,0,1122,1123,5,176,0,0,1123,1124,5,338,0,0,1124,1320,3,76,38,0, - 1125,1127,5,33,0,0,1126,1128,5,159,0,0,1127,1126,1,0,0,0,1127,1128, - 1,0,0,0,1128,1129,1,0,0,0,1129,1130,5,293,0,0,1130,1133,3,72,36, - 0,1131,1132,5,207,0,0,1132,1134,3,42,21,0,1133,1131,1,0,0,0,1133, - 1134,1,0,0,0,1134,1139,1,0,0,0,1135,1137,5,20,0,0,1136,1135,1,0, - 0,0,1136,1137,1,0,0,0,1137,1138,1,0,0,0,1138,1140,3,16,8,0,1139, - 1136,1,0,0,0,1139,1140,1,0,0,0,1140,1320,1,0,0,0,1141,1142,5,322, - 0,0,1142,1144,5,293,0,0,1143,1145,3,162,81,0,1144,1143,1,0,0,0,1144, - 1145,1,0,0,0,1145,1146,1,0,0,0,1146,1320,3,72,36,0,1147,1148,5,43, - 0,0,1148,1320,5,33,0,0,1149,1150,5,168,0,0,1150,1152,5,70,0,0,1151, - 1153,5,169,0,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1154,1,0, - 0,0,1154,1155,5,145,0,0,1155,1157,3,342,171,0,1156,1158,5,216,0, - 0,1157,1156,1,0,0,0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1160, - 5,152,0,0,1160,1161,5,293,0,0,1161,1163,3,72,36,0,1162,1164,3,22, - 11,0,1163,1162,1,0,0,0,1163,1164,1,0,0,0,1164,1320,1,0,0,0,1165, - 1166,5,317,0,0,1166,1167,5,293,0,0,1167,1169,3,72,36,0,1168,1170, - 3,22,11,0,1169,1168,1,0,0,0,1169,1170,1,0,0,0,1170,1320,1,0,0,0, - 1171,1173,5,188,0,0,1172,1171,1,0,0,0,1172,1173,1,0,0,0,1173,1174, - 1,0,0,0,1174,1175,5,242,0,0,1175,1176,5,293,0,0,1176,1179,3,72,36, - 0,1177,1178,7,10,0,0,1178,1180,5,219,0,0,1179,1177,1,0,0,0,1179, - 1180,1,0,0,0,1180,1320,1,0,0,0,1181,1182,7,11,0,0,1182,1186,3,332, - 166,0,1183,1185,9,0,0,0,1184,1183,1,0,0,0,1185,1188,1,0,0,0,1186, - 1187,1,0,0,0,1186,1184,1,0,0,0,1187,1320,1,0,0,0,1188,1186,1,0,0, - 0,1189,1190,5,269,0,0,1190,1194,5,253,0,0,1191,1193,9,0,0,0,1192, - 1191,1,0,0,0,1193,1196,1,0,0,0,1194,1195,1,0,0,0,1194,1192,1,0,0, - 0,1195,1320,1,0,0,0,1196,1194,1,0,0,0,1197,1198,5,269,0,0,1198,1199, - 5,301,0,0,1199,1200,5,350,0,0,1200,1320,3,262,131,0,1201,1202,5, - 269,0,0,1202,1203,5,301,0,0,1203,1206,5,350,0,0,1204,1207,3,342, - 171,0,1205,1207,5,169,0,0,1206,1204,1,0,0,0,1206,1205,1,0,0,0,1207, - 1320,1,0,0,0,1208,1209,5,269,0,0,1209,1210,5,301,0,0,1210,1214,5, - 350,0,0,1211,1213,9,0,0,0,1212,1211,1,0,0,0,1213,1216,1,0,0,0,1214, - 1215,1,0,0,0,1214,1212,1,0,0,0,1215,1320,1,0,0,0,1216,1214,1,0,0, - 0,1217,1218,5,269,0,0,1218,1219,7,12,0,0,1219,1320,3,120,60,0,1220, - 1221,5,269,0,0,1221,1222,7,12,0,0,1222,1223,5,2,0,0,1223,1224,3, - 208,104,0,1224,1225,5,3,0,0,1225,1226,5,352,0,0,1226,1227,5,2,0, - 0,1227,1228,3,16,8,0,1228,1229,5,3,0,0,1229,1320,1,0,0,0,1230,1231, - 5,269,0,0,1231,1232,3,336,168,0,1232,1233,5,352,0,0,1233,1234,5, - 389,0,0,1234,1320,1,0,0,0,1235,1236,5,269,0,0,1236,1244,3,336,168, - 0,1237,1241,5,352,0,0,1238,1240,9,0,0,0,1239,1238,1,0,0,0,1240,1243, - 1,0,0,0,1241,1242,1,0,0,0,1241,1239,1,0,0,0,1242,1245,1,0,0,0,1243, - 1241,1,0,0,0,1244,1237,1,0,0,0,1244,1245,1,0,0,0,1245,1320,1,0,0, - 0,1246,1250,5,269,0,0,1247,1249,9,0,0,0,1248,1247,1,0,0,0,1249,1252, - 1,0,0,0,1250,1251,1,0,0,0,1250,1248,1,0,0,0,1251,1253,1,0,0,0,1252, - 1250,1,0,0,0,1253,1254,5,352,0,0,1254,1320,5,389,0,0,1255,1259,5, - 269,0,0,1256,1258,9,0,0,0,1257,1256,1,0,0,0,1258,1261,1,0,0,0,1259, - 1260,1,0,0,0,1259,1257,1,0,0,0,1260,1320,1,0,0,0,1261,1259,1,0,0, - 0,1262,1263,5,245,0,0,1263,1320,3,336,168,0,1264,1268,5,245,0,0, - 1265,1267,9,0,0,0,1266,1265,1,0,0,0,1267,1270,1,0,0,0,1268,1269, - 1,0,0,0,1268,1266,1,0,0,0,1269,1320,1,0,0,0,1270,1268,1,0,0,0,1271, - 1272,5,59,0,0,1272,1274,5,142,0,0,1273,1275,3,160,80,0,1274,1273, - 1,0,0,0,1274,1275,1,0,0,0,1275,1276,1,0,0,0,1276,1277,3,332,166, - 0,1277,1279,5,203,0,0,1278,1280,5,293,0,0,1279,1278,1,0,0,0,1279, - 1280,1,0,0,0,1280,1281,1,0,0,0,1281,1284,3,72,36,0,1282,1283,5,332, - 0,0,1283,1285,3,332,166,0,1284,1282,1,0,0,0,1284,1285,1,0,0,0,1285, - 1286,1,0,0,0,1286,1287,5,2,0,0,1287,1288,3,212,106,0,1288,1291,5, - 3,0,0,1289,1290,5,207,0,0,1290,1292,3,42,21,0,1291,1289,1,0,0,0, - 1291,1292,1,0,0,0,1292,1320,1,0,0,0,1293,1294,5,96,0,0,1294,1296, - 5,142,0,0,1295,1297,3,162,81,0,1296,1295,1,0,0,0,1296,1297,1,0,0, - 0,1297,1298,1,0,0,0,1298,1299,3,332,166,0,1299,1301,5,203,0,0,1300, - 1302,5,293,0,0,1301,1300,1,0,0,0,1301,1302,1,0,0,0,1302,1303,1,0, - 0,0,1303,1304,3,72,36,0,1304,1320,1,0,0,0,1305,1306,5,205,0,0,1306, - 1308,3,72,36,0,1307,1309,3,124,62,0,1308,1307,1,0,0,0,1308,1309, - 1,0,0,0,1309,1310,1,0,0,0,1310,1311,3,312,156,0,1311,1320,1,0,0, - 0,1312,1316,3,6,3,0,1313,1315,9,0,0,0,1314,1313,1,0,0,0,1315,1318, - 1,0,0,0,1316,1317,1,0,0,0,1316,1314,1,0,0,0,1317,1320,1,0,0,0,1318, - 1316,1,0,0,0,1319,362,1,0,0,0,1319,364,1,0,0,0,1319,367,1,0,0,0, - 1319,372,1,0,0,0,1319,378,1,0,0,0,1319,396,1,0,0,0,1319,403,1,0, - 0,0,1319,410,1,0,0,0,1319,419,1,0,0,0,1319,431,1,0,0,0,1319,459, - 1,0,0,0,1319,482,1,0,0,0,1319,503,1,0,0,0,1319,520,1,0,0,0,1319, - 531,1,0,0,0,1319,538,1,0,0,0,1319,547,1,0,0,0,1319,556,1,0,0,0,1319, - 566,1,0,0,0,1319,578,1,0,0,0,1319,589,1,0,0,0,1319,600,1,0,0,0,1319, - 614,1,0,0,0,1319,625,1,0,0,0,1319,640,1,0,0,0,1319,652,1,0,0,0,1319, - 666,1,0,0,0,1319,676,1,0,0,0,1319,692,1,0,0,0,1319,700,1,0,0,0,1319, - 722,1,0,0,0,1319,732,1,0,0,0,1319,738,1,0,0,0,1319,745,1,0,0,0,1319, - 753,1,0,0,0,1319,762,1,0,0,0,1319,768,1,0,0,0,1319,775,1,0,0,0,1319, - 809,1,0,0,0,1319,831,1,0,0,0,1319,839,1,0,0,0,1319,869,1,0,0,0,1319, - 902,1,0,0,0,1319,911,1,0,0,0,1319,926,1,0,0,0,1319,937,1,0,0,0,1319, - 942,1,0,0,0,1319,954,1,0,0,0,1319,966,1,0,0,0,1319,975,1,0,0,0,1319, - 983,1,0,0,0,1319,995,1,0,0,0,1319,1001,1,0,0,0,1319,1019,1,0,0,0, - 1319,1027,1,0,0,0,1319,1030,1,0,0,0,1319,1038,1,0,0,0,1319,1051, - 1,0,0,0,1319,1060,1,0,0,0,1319,1066,1,0,0,0,1319,1072,1,0,0,0,1319, - 1086,1,0,0,0,1319,1091,1,0,0,0,1319,1105,1,0,0,0,1319,1108,1,0,0, - 0,1319,1111,1,0,0,0,1319,1121,1,0,0,0,1319,1125,1,0,0,0,1319,1141, - 1,0,0,0,1319,1147,1,0,0,0,1319,1149,1,0,0,0,1319,1165,1,0,0,0,1319, - 1172,1,0,0,0,1319,1181,1,0,0,0,1319,1189,1,0,0,0,1319,1197,1,0,0, - 0,1319,1201,1,0,0,0,1319,1208,1,0,0,0,1319,1217,1,0,0,0,1319,1220, - 1,0,0,0,1319,1230,1,0,0,0,1319,1235,1,0,0,0,1319,1246,1,0,0,0,1319, - 1255,1,0,0,0,1319,1262,1,0,0,0,1319,1264,1,0,0,0,1319,1271,1,0,0, - 0,1319,1293,1,0,0,0,1319,1305,1,0,0,0,1319,1312,1,0,0,0,1320,5,1, - 0,0,0,1321,1322,7,13,0,0,1322,1415,5,253,0,0,1323,1325,7,14,0,0, - 1324,1326,5,253,0,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326,1415, - 1,0,0,0,1327,1328,5,273,0,0,1328,1415,7,15,0,0,1329,1330,5,273,0, - 0,1330,1332,5,253,0,0,1331,1333,5,129,0,0,1332,1331,1,0,0,0,1332, - 1333,1,0,0,0,1333,1415,1,0,0,0,1334,1336,5,273,0,0,1335,1337,5,62, - 0,0,1336,1335,1,0,0,0,1336,1337,1,0,0,0,1337,1338,1,0,0,0,1338,1415, - 5,254,0,0,1339,1340,5,273,0,0,1340,1341,5,59,0,0,1341,1415,5,293, - 0,0,1342,1343,7,16,0,0,1343,1415,5,142,0,0,1344,1345,7,17,0,0,1345, - 1415,5,293,0,0,1346,1347,7,18,0,0,1347,1415,5,72,0,0,1348,1349,7, - 13,0,0,1349,1350,5,298,0,0,1350,1415,5,175,0,0,1351,1352,5,11,0, - 0,1352,1353,5,293,0,0,1353,1354,3,72,36,0,1354,1355,5,197,0,0,1355, - 1356,7,19,0,0,1356,1415,1,0,0,0,1357,1358,5,11,0,0,1358,1359,5,293, - 0,0,1359,1360,3,72,36,0,1360,1361,7,20,0,0,1361,1362,5,31,0,0,1362, - 1415,1,0,0,0,1363,1364,5,11,0,0,1364,1365,5,293,0,0,1365,1366,3, - 72,36,0,1366,1367,5,275,0,0,1367,1368,5,31,0,0,1368,1415,1,0,0,0, - 1369,1370,5,11,0,0,1370,1371,5,293,0,0,1371,1372,3,72,36,0,1372, - 1373,5,197,0,0,1373,1374,5,283,0,0,1374,1375,5,20,0,0,1375,1376, - 5,89,0,0,1376,1415,1,0,0,0,1377,1378,5,11,0,0,1378,1379,5,293,0, - 0,1379,1380,3,72,36,0,1380,1381,5,269,0,0,1381,1382,5,275,0,0,1382, - 1383,5,170,0,0,1383,1415,1,0,0,0,1384,1385,5,11,0,0,1385,1386,5, - 293,0,0,1386,1387,3,72,36,0,1387,1388,7,21,0,0,1388,1389,5,217,0, - 0,1389,1415,1,0,0,0,1390,1391,5,11,0,0,1391,1392,5,293,0,0,1392, - 1393,3,72,36,0,1393,1394,5,310,0,0,1394,1415,1,0,0,0,1395,1396,5, - 11,0,0,1396,1397,5,293,0,0,1397,1399,3,72,36,0,1398,1400,3,22,11, - 0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1407,1,0,0,0,1401,1408, - 5,53,0,0,1402,1408,5,56,0,0,1403,1404,5,269,0,0,1404,1408,5,115, - 0,0,1405,1406,5,244,0,0,1406,1408,5,50,0,0,1407,1401,1,0,0,0,1407, - 1402,1,0,0,0,1407,1403,1,0,0,0,1407,1405,1,0,0,0,1408,1415,1,0,0, - 0,1409,1410,5,281,0,0,1410,1415,5,312,0,0,1411,1415,5,52,0,0,1412, - 1415,5,255,0,0,1413,1415,5,88,0,0,1414,1321,1,0,0,0,1414,1323,1, - 0,0,0,1414,1327,1,0,0,0,1414,1329,1,0,0,0,1414,1334,1,0,0,0,1414, - 1339,1,0,0,0,1414,1342,1,0,0,0,1414,1344,1,0,0,0,1414,1346,1,0,0, - 0,1414,1348,1,0,0,0,1414,1351,1,0,0,0,1414,1357,1,0,0,0,1414,1363, - 1,0,0,0,1414,1369,1,0,0,0,1414,1377,1,0,0,0,1414,1384,1,0,0,0,1414, - 1390,1,0,0,0,1414,1395,1,0,0,0,1414,1409,1,0,0,0,1414,1411,1,0,0, - 0,1414,1412,1,0,0,0,1414,1413,1,0,0,0,1415,7,1,0,0,0,1416,1417,5, - 45,0,0,1417,1418,5,31,0,0,1418,1422,3,180,90,0,1419,1420,5,279,0, - 0,1420,1421,5,31,0,0,1421,1423,3,184,92,0,1422,1419,1,0,0,0,1422, - 1423,1,0,0,0,1423,1424,1,0,0,0,1424,1425,5,152,0,0,1425,1426,5,382, - 0,0,1426,1427,5,30,0,0,1427,9,1,0,0,0,1428,1429,5,275,0,0,1429,1430, - 5,31,0,0,1430,1431,3,180,90,0,1431,1434,5,203,0,0,1432,1435,3,54, - 27,0,1433,1435,3,56,28,0,1434,1432,1,0,0,0,1434,1433,1,0,0,0,1435, - 1439,1,0,0,0,1436,1437,5,283,0,0,1437,1438,5,20,0,0,1438,1440,5, - 89,0,0,1439,1436,1,0,0,0,1439,1440,1,0,0,0,1440,11,1,0,0,0,1441, - 1442,5,170,0,0,1442,1443,3,342,171,0,1443,13,1,0,0,0,1444,1445,5, - 51,0,0,1445,1446,3,342,171,0,1446,15,1,0,0,0,1447,1449,3,32,16,0, - 1448,1447,1,0,0,0,1448,1449,1,0,0,0,1449,1450,1,0,0,0,1450,1451, - 3,96,48,0,1451,1452,3,88,44,0,1452,17,1,0,0,0,1453,1454,5,147,0, - 0,1454,1456,5,216,0,0,1455,1457,5,293,0,0,1456,1455,1,0,0,0,1456, - 1457,1,0,0,0,1457,1458,1,0,0,0,1458,1463,3,72,36,0,1459,1461,3,22, - 11,0,1460,1462,3,160,80,0,1461,1460,1,0,0,0,1461,1462,1,0,0,0,1462, - 1464,1,0,0,0,1463,1459,1,0,0,0,1463,1464,1,0,0,0,1464,1471,1,0,0, - 0,1465,1466,5,31,0,0,1466,1472,5,189,0,0,1467,1468,5,2,0,0,1468, - 1469,3,82,41,0,1469,1470,5,3,0,0,1470,1472,1,0,0,0,1471,1465,1,0, - 0,0,1471,1467,1,0,0,0,1471,1472,1,0,0,0,1472,1530,1,0,0,0,1473,1474, - 5,147,0,0,1474,1476,5,152,0,0,1475,1477,5,293,0,0,1476,1475,1,0, - 0,0,1476,1477,1,0,0,0,1477,1478,1,0,0,0,1478,1480,3,72,36,0,1479, - 1481,3,22,11,0,1480,1479,1,0,0,0,1480,1481,1,0,0,0,1481,1483,1,0, - 0,0,1482,1484,3,160,80,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484, - 1491,1,0,0,0,1485,1486,5,31,0,0,1486,1492,5,189,0,0,1487,1488,5, - 2,0,0,1488,1489,3,82,41,0,1489,1490,5,3,0,0,1490,1492,1,0,0,0,1491, - 1485,1,0,0,0,1491,1487,1,0,0,0,1491,1492,1,0,0,0,1492,1530,1,0,0, - 0,1493,1494,5,147,0,0,1494,1496,5,152,0,0,1495,1497,5,293,0,0,1496, - 1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0,1498,1499,3,72, - 36,0,1499,1500,5,244,0,0,1500,1501,3,124,62,0,1501,1530,1,0,0,0, - 1502,1503,5,147,0,0,1503,1505,5,216,0,0,1504,1506,5,169,0,0,1505, - 1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507,1508,5,90, - 0,0,1508,1510,3,342,171,0,1509,1511,3,206,103,0,1510,1509,1,0,0, - 0,1510,1511,1,0,0,0,1511,1513,1,0,0,0,1512,1514,3,58,29,0,1513,1512, - 1,0,0,0,1513,1514,1,0,0,0,1514,1530,1,0,0,0,1515,1516,5,147,0,0, - 1516,1518,5,216,0,0,1517,1519,5,169,0,0,1518,1517,1,0,0,0,1518,1519, - 1,0,0,0,1519,1520,1,0,0,0,1520,1522,5,90,0,0,1521,1523,3,342,171, - 0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523,1524,1,0,0,0,1524,1527, - 3,36,18,0,1525,1526,5,207,0,0,1526,1528,3,42,21,0,1527,1525,1,0, - 0,0,1527,1528,1,0,0,0,1528,1530,1,0,0,0,1529,1453,1,0,0,0,1529,1473, - 1,0,0,0,1529,1493,1,0,0,0,1529,1502,1,0,0,0,1529,1515,1,0,0,0,1530, - 19,1,0,0,0,1531,1534,3,22,11,0,1532,1533,5,170,0,0,1533,1535,3,342, - 171,0,1534,1532,1,0,0,0,1534,1535,1,0,0,0,1535,21,1,0,0,0,1536,1537, - 5,217,0,0,1537,1538,5,2,0,0,1538,1543,3,24,12,0,1539,1540,5,4,0, - 0,1540,1542,3,24,12,0,1541,1539,1,0,0,0,1542,1545,1,0,0,0,1543,1541, - 1,0,0,0,1543,1544,1,0,0,0,1544,1546,1,0,0,0,1545,1543,1,0,0,0,1546, - 1547,5,3,0,0,1547,23,1,0,0,0,1548,1551,3,332,166,0,1549,1550,5,352, - 0,0,1550,1552,3,252,126,0,1551,1549,1,0,0,0,1551,1552,1,0,0,0,1552, - 1558,1,0,0,0,1553,1554,3,332,166,0,1554,1555,5,352,0,0,1555,1556, - 5,82,0,0,1556,1558,1,0,0,0,1557,1548,1,0,0,0,1557,1553,1,0,0,0,1558, - 25,1,0,0,0,1559,1560,7,22,0,0,1560,27,1,0,0,0,1561,1567,3,86,43, - 0,1562,1567,3,342,171,0,1563,1567,3,254,127,0,1564,1567,3,256,128, - 0,1565,1567,3,258,129,0,1566,1561,1,0,0,0,1566,1562,1,0,0,0,1566, - 1563,1,0,0,0,1566,1564,1,0,0,0,1566,1565,1,0,0,0,1567,29,1,0,0,0, - 1568,1573,3,332,166,0,1569,1570,5,5,0,0,1570,1572,3,332,166,0,1571, - 1569,1,0,0,0,1572,1575,1,0,0,0,1573,1571,1,0,0,0,1573,1574,1,0,0, - 0,1574,31,1,0,0,0,1575,1573,1,0,0,0,1576,1577,5,346,0,0,1577,1582, - 3,34,17,0,1578,1579,5,4,0,0,1579,1581,3,34,17,0,1580,1578,1,0,0, - 0,1581,1584,1,0,0,0,1582,1580,1,0,0,0,1582,1583,1,0,0,0,1583,33, - 1,0,0,0,1584,1582,1,0,0,0,1585,1587,3,328,164,0,1586,1588,3,180, - 90,0,1587,1586,1,0,0,0,1587,1588,1,0,0,0,1588,1590,1,0,0,0,1589, - 1591,5,20,0,0,1590,1589,1,0,0,0,1590,1591,1,0,0,0,1591,1592,1,0, - 0,0,1592,1593,5,2,0,0,1593,1594,3,16,8,0,1594,1595,5,3,0,0,1595, - 35,1,0,0,0,1596,1597,5,332,0,0,1597,1598,3,210,105,0,1598,37,1,0, - 0,0,1599,1600,5,207,0,0,1600,1616,3,50,25,0,1601,1602,5,218,0,0, - 1602,1603,5,31,0,0,1603,1616,3,224,112,0,1604,1616,3,10,5,0,1605, - 1616,3,8,4,0,1606,1616,3,206,103,0,1607,1616,3,58,29,0,1608,1609, - 5,170,0,0,1609,1616,3,342,171,0,1610,1611,5,51,0,0,1611,1616,3,342, - 171,0,1612,1613,5,297,0,0,1613,1616,3,42,21,0,1614,1616,3,40,20, - 0,1615,1599,1,0,0,0,1615,1601,1,0,0,0,1615,1604,1,0,0,0,1615,1605, - 1,0,0,0,1615,1606,1,0,0,0,1615,1607,1,0,0,0,1615,1608,1,0,0,0,1615, - 1610,1,0,0,0,1615,1612,1,0,0,0,1615,1614,1,0,0,0,1616,1619,1,0,0, - 0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,39,1,0,0,0,1619,1617, - 1,0,0,0,1620,1621,5,162,0,0,1621,1622,5,382,0,0,1622,41,1,0,0,0, - 1623,1624,5,2,0,0,1624,1629,3,44,22,0,1625,1626,5,4,0,0,1626,1628, - 3,44,22,0,1627,1625,1,0,0,0,1628,1631,1,0,0,0,1629,1627,1,0,0,0, - 1629,1630,1,0,0,0,1630,1632,1,0,0,0,1631,1629,1,0,0,0,1632,1633, - 5,3,0,0,1633,43,1,0,0,0,1634,1639,3,46,23,0,1635,1637,5,352,0,0, - 1636,1635,1,0,0,0,1636,1637,1,0,0,0,1637,1638,1,0,0,0,1638,1640, - 3,48,24,0,1639,1636,1,0,0,0,1639,1640,1,0,0,0,1640,45,1,0,0,0,1641, - 1646,3,332,166,0,1642,1643,5,5,0,0,1643,1645,3,332,166,0,1644,1642, - 1,0,0,0,1645,1648,1,0,0,0,1646,1644,1,0,0,0,1646,1647,1,0,0,0,1647, - 1651,1,0,0,0,1648,1646,1,0,0,0,1649,1651,3,342,171,0,1650,1641,1, - 0,0,0,1650,1649,1,0,0,0,1651,47,1,0,0,0,1652,1657,5,382,0,0,1653, - 1657,5,384,0,0,1654,1657,3,260,130,0,1655,1657,3,342,171,0,1656, - 1652,1,0,0,0,1656,1653,1,0,0,0,1656,1654,1,0,0,0,1656,1655,1,0,0, - 0,1657,49,1,0,0,0,1658,1659,5,2,0,0,1659,1664,3,52,26,0,1660,1661, - 5,4,0,0,1661,1663,3,52,26,0,1662,1660,1,0,0,0,1663,1666,1,0,0,0, - 1664,1662,1,0,0,0,1664,1665,1,0,0,0,1665,1667,1,0,0,0,1666,1664, - 1,0,0,0,1667,1668,5,3,0,0,1668,51,1,0,0,0,1669,1674,3,46,23,0,1670, - 1672,5,352,0,0,1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672,1673,1,0, - 0,0,1673,1675,3,232,116,0,1674,1671,1,0,0,0,1674,1675,1,0,0,0,1675, - 53,1,0,0,0,1676,1677,5,2,0,0,1677,1682,3,252,126,0,1678,1679,5,4, - 0,0,1679,1681,3,252,126,0,1680,1678,1,0,0,0,1681,1684,1,0,0,0,1682, - 1680,1,0,0,0,1682,1683,1,0,0,0,1683,1685,1,0,0,0,1684,1682,1,0,0, - 0,1685,1686,5,3,0,0,1686,55,1,0,0,0,1687,1688,5,2,0,0,1688,1693, - 3,54,27,0,1689,1690,5,4,0,0,1690,1692,3,54,27,0,1691,1689,1,0,0, - 0,1692,1695,1,0,0,0,1693,1691,1,0,0,0,1693,1694,1,0,0,0,1694,1696, - 1,0,0,0,1695,1693,1,0,0,0,1696,1697,5,3,0,0,1697,57,1,0,0,0,1698, - 1699,5,283,0,0,1699,1700,5,20,0,0,1700,1705,3,60,30,0,1701,1702, - 5,283,0,0,1702,1703,5,31,0,0,1703,1705,3,62,31,0,1704,1698,1,0,0, - 0,1704,1701,1,0,0,0,1705,59,1,0,0,0,1706,1707,5,146,0,0,1707,1708, - 3,342,171,0,1708,1709,5,212,0,0,1709,1710,3,342,171,0,1710,1713, - 1,0,0,0,1711,1713,3,332,166,0,1712,1706,1,0,0,0,1712,1711,1,0,0, - 0,1713,61,1,0,0,0,1714,1718,3,342,171,0,1715,1716,5,346,0,0,1716, - 1717,5,267,0,0,1717,1719,3,42,21,0,1718,1715,1,0,0,0,1718,1719,1, - 0,0,0,1719,63,1,0,0,0,1720,1721,3,18,9,0,1721,1722,3,16,8,0,1722, - 1779,1,0,0,0,1723,1727,3,132,66,0,1724,1725,3,18,9,0,1725,1726,3, - 102,51,0,1726,1728,1,0,0,0,1727,1724,1,0,0,0,1728,1729,1,0,0,0,1729, - 1727,1,0,0,0,1729,1730,1,0,0,0,1730,1779,1,0,0,0,1731,1732,5,84, - 0,0,1732,1733,5,123,0,0,1733,1734,3,72,36,0,1734,1736,3,204,102, - 0,1735,1737,3,124,62,0,1736,1735,1,0,0,0,1736,1737,1,0,0,0,1737, - 1779,1,0,0,0,1738,1739,5,329,0,0,1739,1740,3,72,36,0,1740,1741,3, - 204,102,0,1741,1743,3,110,55,0,1742,1744,3,124,62,0,1743,1742,1, - 0,0,0,1743,1744,1,0,0,0,1744,1779,1,0,0,0,1745,1746,5,179,0,0,1746, - 1747,5,152,0,0,1747,1748,3,72,36,0,1748,1749,3,204,102,0,1749,1755, - 5,332,0,0,1750,1756,3,86,43,0,1751,1752,5,2,0,0,1752,1753,3,16,8, - 0,1753,1754,5,3,0,0,1754,1756,1,0,0,0,1755,1750,1,0,0,0,1755,1751, - 1,0,0,0,1756,1757,1,0,0,0,1757,1758,3,204,102,0,1758,1759,5,203, - 0,0,1759,1763,3,240,120,0,1760,1762,3,112,56,0,1761,1760,1,0,0,0, - 1762,1765,1,0,0,0,1763,1761,1,0,0,0,1763,1764,1,0,0,0,1764,1769, - 1,0,0,0,1765,1763,1,0,0,0,1766,1768,3,114,57,0,1767,1766,1,0,0,0, - 1768,1771,1,0,0,0,1769,1767,1,0,0,0,1769,1770,1,0,0,0,1770,1775, - 1,0,0,0,1771,1769,1,0,0,0,1772,1774,3,116,58,0,1773,1772,1,0,0,0, - 1774,1777,1,0,0,0,1775,1773,1,0,0,0,1775,1776,1,0,0,0,1776,1779, - 1,0,0,0,1777,1775,1,0,0,0,1778,1720,1,0,0,0,1778,1723,1,0,0,0,1778, - 1731,1,0,0,0,1778,1738,1,0,0,0,1778,1745,1,0,0,0,1779,65,1,0,0,0, - 1780,1781,3,86,43,0,1781,67,1,0,0,0,1782,1783,3,86,43,0,1783,69, - 1,0,0,0,1784,1785,3,216,108,0,1785,71,1,0,0,0,1786,1787,3,216,108, - 0,1787,73,1,0,0,0,1788,1789,3,218,109,0,1789,75,1,0,0,0,1790,1791, - 3,218,109,0,1791,77,1,0,0,0,1792,1795,3,210,105,0,1793,1795,4,39, - 0,0,1794,1792,1,0,0,0,1794,1793,1,0,0,0,1795,79,1,0,0,0,1796,1797, - 3,210,105,0,1797,81,1,0,0,0,1798,1803,3,78,39,0,1799,1800,5,4,0, - 0,1800,1802,3,78,39,0,1801,1799,1,0,0,0,1802,1805,1,0,0,0,1803,1801, - 1,0,0,0,1803,1804,1,0,0,0,1804,83,1,0,0,0,1805,1803,1,0,0,0,1806, - 1807,3,328,164,0,1807,85,1,0,0,0,1808,1809,5,136,0,0,1809,1810,5, - 2,0,0,1810,1811,3,232,116,0,1811,1812,5,3,0,0,1812,1815,1,0,0,0, - 1813,1815,3,210,105,0,1814,1808,1,0,0,0,1814,1813,1,0,0,0,1815,87, - 1,0,0,0,1816,1817,5,209,0,0,1817,1818,5,31,0,0,1818,1820,3,92,46, - 0,1819,1816,1,0,0,0,1819,1820,1,0,0,0,1820,1824,1,0,0,0,1821,1822, - 5,44,0,0,1822,1823,5,31,0,0,1823,1825,3,94,47,0,1824,1821,1,0,0, - 0,1824,1825,1,0,0,0,1825,1829,1,0,0,0,1826,1827,5,93,0,0,1827,1828, - 5,31,0,0,1828,1830,3,94,47,0,1829,1826,1,0,0,0,1829,1830,1,0,0,0, - 1830,1834,1,0,0,0,1831,1832,5,278,0,0,1832,1833,5,31,0,0,1833,1835, - 3,92,46,0,1834,1831,1,0,0,0,1834,1835,1,0,0,0,1835,1837,1,0,0,0, - 1836,1838,3,310,155,0,1837,1836,1,0,0,0,1837,1838,1,0,0,0,1838,1840, - 1,0,0,0,1839,1841,3,90,45,0,1840,1839,1,0,0,0,1840,1841,1,0,0,0, - 1841,1844,1,0,0,0,1842,1843,5,202,0,0,1843,1845,3,232,116,0,1844, - 1842,1,0,0,0,1844,1845,1,0,0,0,1845,89,1,0,0,0,1846,1849,5,165,0, - 0,1847,1850,5,10,0,0,1848,1850,3,232,116,0,1849,1847,1,0,0,0,1849, - 1848,1,0,0,0,1850,91,1,0,0,0,1851,1856,3,100,50,0,1852,1853,5,4, - 0,0,1853,1855,3,100,50,0,1854,1852,1,0,0,0,1855,1858,1,0,0,0,1856, - 1854,1,0,0,0,1856,1857,1,0,0,0,1857,93,1,0,0,0,1858,1856,1,0,0,0, - 1859,1864,3,232,116,0,1860,1861,5,4,0,0,1861,1863,3,232,116,0,1862, - 1860,1,0,0,0,1863,1866,1,0,0,0,1864,1862,1,0,0,0,1864,1865,1,0,0, - 0,1865,95,1,0,0,0,1866,1864,1,0,0,0,1867,1868,6,48,-1,0,1868,1869, - 3,98,49,0,1869,1890,1,0,0,0,1870,1871,10,3,0,0,1871,1873,7,23,0, - 0,1872,1874,3,166,83,0,1873,1872,1,0,0,0,1873,1874,1,0,0,0,1874, - 1875,1,0,0,0,1875,1889,3,96,48,4,1876,1877,10,2,0,0,1877,1879,5, - 148,0,0,1878,1880,3,166,83,0,1879,1878,1,0,0,0,1879,1880,1,0,0,0, - 1880,1881,1,0,0,0,1881,1889,3,96,48,3,1882,1883,10,1,0,0,1883,1885, - 7,24,0,0,1884,1886,3,166,83,0,1885,1884,1,0,0,0,1885,1886,1,0,0, - 0,1886,1887,1,0,0,0,1887,1889,3,96,48,2,1888,1870,1,0,0,0,1888,1876, - 1,0,0,0,1888,1882,1,0,0,0,1889,1892,1,0,0,0,1890,1888,1,0,0,0,1890, - 1891,1,0,0,0,1891,97,1,0,0,0,1892,1890,1,0,0,0,1893,1918,3,104,52, - 0,1894,1896,3,132,66,0,1895,1897,3,102,51,0,1896,1895,1,0,0,0,1897, - 1898,1,0,0,0,1898,1896,1,0,0,0,1898,1899,1,0,0,0,1899,1918,1,0,0, - 0,1900,1901,5,293,0,0,1901,1918,3,72,36,0,1902,1903,5,333,0,0,1903, - 1908,3,232,116,0,1904,1905,5,4,0,0,1905,1907,3,232,116,0,1906,1904, - 1,0,0,0,1907,1910,1,0,0,0,1908,1906,1,0,0,0,1908,1909,1,0,0,0,1909, - 1911,1,0,0,0,1910,1908,1,0,0,0,1911,1912,3,204,102,0,1912,1918,1, - 0,0,0,1913,1914,5,2,0,0,1914,1915,3,16,8,0,1915,1916,5,3,0,0,1916, - 1918,1,0,0,0,1917,1893,1,0,0,0,1917,1894,1,0,0,0,1917,1900,1,0,0, - 0,1917,1902,1,0,0,0,1917,1913,1,0,0,0,1918,99,1,0,0,0,1919,1922, - 3,78,39,0,1920,1922,3,232,116,0,1921,1919,1,0,0,0,1921,1920,1,0, - 0,0,1922,1924,1,0,0,0,1923,1925,7,25,0,0,1924,1923,1,0,0,0,1924, - 1925,1,0,0,0,1925,1928,1,0,0,0,1926,1927,5,199,0,0,1927,1929,7,26, - 0,0,1928,1926,1,0,0,0,1928,1929,1,0,0,0,1929,101,1,0,0,0,1930,1932, - 3,106,53,0,1931,1933,3,124,62,0,1932,1931,1,0,0,0,1932,1933,1,0, - 0,0,1933,1934,1,0,0,0,1934,1935,3,88,44,0,1935,1958,1,0,0,0,1936, - 1940,3,108,54,0,1937,1939,3,164,82,0,1938,1937,1,0,0,0,1939,1942, - 1,0,0,0,1940,1938,1,0,0,0,1940,1941,1,0,0,0,1941,1944,1,0,0,0,1942, - 1940,1,0,0,0,1943,1945,3,124,62,0,1944,1943,1,0,0,0,1944,1945,1, - 0,0,0,1945,1947,1,0,0,0,1946,1948,3,136,68,0,1947,1946,1,0,0,0,1947, - 1948,1,0,0,0,1948,1950,1,0,0,0,1949,1951,3,126,63,0,1950,1949,1, - 0,0,0,1950,1951,1,0,0,0,1951,1953,1,0,0,0,1952,1954,3,310,155,0, - 1953,1952,1,0,0,0,1953,1954,1,0,0,0,1954,1955,1,0,0,0,1955,1956, - 3,88,44,0,1956,1958,1,0,0,0,1957,1930,1,0,0,0,1957,1936,1,0,0,0, - 1958,103,1,0,0,0,1959,1961,3,106,53,0,1960,1962,3,132,66,0,1961, - 1960,1,0,0,0,1961,1962,1,0,0,0,1962,1966,1,0,0,0,1963,1965,3,164, - 82,0,1964,1963,1,0,0,0,1965,1968,1,0,0,0,1966,1964,1,0,0,0,1966, - 1967,1,0,0,0,1967,1970,1,0,0,0,1968,1966,1,0,0,0,1969,1971,3,124, - 62,0,1970,1969,1,0,0,0,1970,1971,1,0,0,0,1971,1973,1,0,0,0,1972, - 1974,3,136,68,0,1973,1972,1,0,0,0,1973,1974,1,0,0,0,1974,1976,1, - 0,0,0,1975,1977,3,126,63,0,1976,1975,1,0,0,0,1976,1977,1,0,0,0,1977, - 1979,1,0,0,0,1978,1980,3,310,155,0,1979,1978,1,0,0,0,1979,1980,1, - 0,0,0,1980,2004,1,0,0,0,1981,1983,3,108,54,0,1982,1984,3,132,66, - 0,1983,1982,1,0,0,0,1983,1984,1,0,0,0,1984,1988,1,0,0,0,1985,1987, - 3,164,82,0,1986,1985,1,0,0,0,1987,1990,1,0,0,0,1988,1986,1,0,0,0, - 1988,1989,1,0,0,0,1989,1992,1,0,0,0,1990,1988,1,0,0,0,1991,1993, - 3,124,62,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0,1993,1995,1,0,0,0, - 1994,1996,3,136,68,0,1995,1994,1,0,0,0,1995,1996,1,0,0,0,1996,1998, - 1,0,0,0,1997,1999,3,126,63,0,1998,1997,1,0,0,0,1998,1999,1,0,0,0, - 1999,2001,1,0,0,0,2000,2002,3,310,155,0,2001,2000,1,0,0,0,2001,2002, - 1,0,0,0,2002,2004,1,0,0,0,2003,1959,1,0,0,0,2003,1981,1,0,0,0,2004, - 105,1,0,0,0,2005,2006,5,263,0,0,2006,2007,5,314,0,0,2007,2009,5, - 2,0,0,2008,2010,3,166,83,0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010, - 2011,1,0,0,0,2011,2012,3,238,119,0,2012,2013,5,3,0,0,2013,2025,1, - 0,0,0,2014,2016,5,177,0,0,2015,2017,3,166,83,0,2016,2015,1,0,0,0, - 2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018,2025,3,238,119,0,2019,2021, - 5,238,0,0,2020,2022,3,166,83,0,2021,2020,1,0,0,0,2021,2022,1,0,0, - 0,2022,2023,1,0,0,0,2023,2025,3,238,119,0,2024,2005,1,0,0,0,2024, - 2014,1,0,0,0,2024,2019,1,0,0,0,2025,2027,1,0,0,0,2026,2028,3,206, - 103,0,2027,2026,1,0,0,0,2027,2028,1,0,0,0,2028,2031,1,0,0,0,2029, - 2030,5,236,0,0,2030,2032,3,342,171,0,2031,2029,1,0,0,0,2031,2032, - 1,0,0,0,2032,2033,1,0,0,0,2033,2034,5,332,0,0,2034,2047,3,342,171, - 0,2035,2045,5,20,0,0,2036,2046,3,182,91,0,2037,2046,3,296,148,0, - 2038,2041,5,2,0,0,2039,2042,3,182,91,0,2040,2042,3,296,148,0,2041, - 2039,1,0,0,0,2041,2040,1,0,0,0,2042,2043,1,0,0,0,2043,2044,5,3,0, - 0,2044,2046,1,0,0,0,2045,2036,1,0,0,0,2045,2037,1,0,0,0,2045,2038, - 1,0,0,0,2046,2048,1,0,0,0,2047,2035,1,0,0,0,2047,2048,1,0,0,0,2048, - 2050,1,0,0,0,2049,2051,3,206,103,0,2050,2049,1,0,0,0,2050,2051,1, - 0,0,0,2051,2054,1,0,0,0,2052,2053,5,235,0,0,2053,2055,3,342,171, - 0,2054,2052,1,0,0,0,2054,2055,1,0,0,0,2055,107,1,0,0,0,2056,2060, - 5,263,0,0,2057,2059,3,128,64,0,2058,2057,1,0,0,0,2059,2062,1,0,0, - 0,2060,2058,1,0,0,0,2060,2061,1,0,0,0,2061,2064,1,0,0,0,2062,2060, - 1,0,0,0,2063,2065,3,166,83,0,2064,2063,1,0,0,0,2064,2065,1,0,0,0, - 2065,2066,1,0,0,0,2066,2067,3,222,111,0,2067,109,1,0,0,0,2068,2069, - 5,269,0,0,2069,2070,3,120,60,0,2070,111,1,0,0,0,2071,2072,5,343, - 0,0,2072,2075,5,178,0,0,2073,2074,5,14,0,0,2074,2076,3,240,120,0, - 2075,2073,1,0,0,0,2075,2076,1,0,0,0,2076,2077,1,0,0,0,2077,2085, - 5,300,0,0,2078,2086,5,84,0,0,2079,2080,5,329,0,0,2080,2083,5,269, - 0,0,2081,2084,5,363,0,0,2082,2084,3,120,60,0,2083,2081,1,0,0,0,2083, - 2082,1,0,0,0,2084,2086,1,0,0,0,2085,2078,1,0,0,0,2085,2079,1,0,0, - 0,2086,113,1,0,0,0,2087,2088,5,343,0,0,2088,2089,5,197,0,0,2089, - 2092,5,178,0,0,2090,2091,5,31,0,0,2091,2093,5,296,0,0,2092,2090, - 1,0,0,0,2092,2093,1,0,0,0,2093,2096,1,0,0,0,2094,2095,5,14,0,0,2095, - 2097,3,240,120,0,2096,2094,1,0,0,0,2096,2097,1,0,0,0,2097,2098,1, - 0,0,0,2098,2099,5,300,0,0,2099,2100,3,118,59,0,2100,115,1,0,0,0, - 2101,2102,5,343,0,0,2102,2103,5,197,0,0,2103,2104,5,178,0,0,2104, - 2105,5,31,0,0,2105,2108,5,280,0,0,2106,2107,5,14,0,0,2107,2109,3, - 240,120,0,2108,2106,1,0,0,0,2108,2109,1,0,0,0,2109,2110,1,0,0,0, - 2110,2115,5,300,0,0,2111,2116,5,84,0,0,2112,2113,5,329,0,0,2113, - 2114,5,269,0,0,2114,2116,3,120,60,0,2115,2111,1,0,0,0,2115,2112, - 1,0,0,0,2116,117,1,0,0,0,2117,2118,5,147,0,0,2118,2136,5,363,0,0, - 2119,2120,5,147,0,0,2120,2121,5,2,0,0,2121,2122,3,208,104,0,2122, - 2123,5,3,0,0,2123,2124,5,333,0,0,2124,2125,5,2,0,0,2125,2130,3,232, - 116,0,2126,2127,5,4,0,0,2127,2129,3,232,116,0,2128,2126,1,0,0,0, - 2129,2132,1,0,0,0,2130,2128,1,0,0,0,2130,2131,1,0,0,0,2131,2133, - 1,0,0,0,2132,2130,1,0,0,0,2133,2134,5,3,0,0,2134,2136,1,0,0,0,2135, - 2117,1,0,0,0,2135,2119,1,0,0,0,2136,119,1,0,0,0,2137,2142,3,122, - 61,0,2138,2139,5,4,0,0,2139,2141,3,122,61,0,2140,2138,1,0,0,0,2141, - 2144,1,0,0,0,2142,2140,1,0,0,0,2142,2143,1,0,0,0,2143,121,1,0,0, - 0,2144,2142,1,0,0,0,2145,2146,3,210,105,0,2146,2147,5,352,0,0,2147, - 2148,3,232,116,0,2148,123,1,0,0,0,2149,2150,5,344,0,0,2150,2151, - 3,240,120,0,2151,125,1,0,0,0,2152,2153,5,132,0,0,2153,2154,3,240, - 120,0,2154,127,1,0,0,0,2155,2156,5,374,0,0,2156,2163,3,130,65,0, - 2157,2159,5,4,0,0,2158,2157,1,0,0,0,2158,2159,1,0,0,0,2159,2160, - 1,0,0,0,2160,2162,3,130,65,0,2161,2158,1,0,0,0,2162,2165,1,0,0,0, - 2163,2161,1,0,0,0,2163,2164,1,0,0,0,2164,2166,1,0,0,0,2165,2163, - 1,0,0,0,2166,2167,5,375,0,0,2167,129,1,0,0,0,2168,2182,3,332,166, - 0,2169,2170,3,332,166,0,2170,2171,5,2,0,0,2171,2176,3,248,124,0, - 2172,2173,5,4,0,0,2173,2175,3,248,124,0,2174,2172,1,0,0,0,2175,2178, - 1,0,0,0,2176,2174,1,0,0,0,2176,2177,1,0,0,0,2177,2179,1,0,0,0,2178, - 2176,1,0,0,0,2179,2180,5,3,0,0,2180,2182,1,0,0,0,2181,2168,1,0,0, - 0,2181,2169,1,0,0,0,2182,131,1,0,0,0,2183,2184,5,123,0,0,2184,2189, - 3,168,84,0,2185,2186,5,4,0,0,2186,2188,3,168,84,0,2187,2185,1,0, - 0,0,2188,2191,1,0,0,0,2189,2187,1,0,0,0,2189,2190,1,0,0,0,2190,2195, - 1,0,0,0,2191,2189,1,0,0,0,2192,2194,3,164,82,0,2193,2192,1,0,0,0, - 2194,2197,1,0,0,0,2195,2193,1,0,0,0,2195,2196,1,0,0,0,2196,2199, - 1,0,0,0,2197,2195,1,0,0,0,2198,2200,3,144,72,0,2199,2198,1,0,0,0, - 2199,2200,1,0,0,0,2200,2202,1,0,0,0,2201,2203,3,150,75,0,2202,2201, - 1,0,0,0,2202,2203,1,0,0,0,2203,133,1,0,0,0,2204,2206,5,119,0,0,2205, - 2204,1,0,0,0,2205,2206,1,0,0,0,2206,2207,1,0,0,0,2207,2208,7,27, - 0,0,2208,2209,5,20,0,0,2209,2212,5,201,0,0,2210,2213,5,382,0,0,2211, - 2213,3,342,171,0,2212,2210,1,0,0,0,2212,2211,1,0,0,0,2213,2222,1, - 0,0,0,2214,2216,5,119,0,0,2215,2214,1,0,0,0,2215,2216,1,0,0,0,2216, - 2217,1,0,0,0,2217,2218,7,28,0,0,2218,2219,5,20,0,0,2219,2220,5,201, - 0,0,2220,2222,3,244,122,0,2221,2205,1,0,0,0,2221,2215,1,0,0,0,2222, - 135,1,0,0,0,2223,2224,5,130,0,0,2224,2225,5,31,0,0,2225,2230,3,138, - 69,0,2226,2227,5,4,0,0,2227,2229,3,138,69,0,2228,2226,1,0,0,0,2229, - 2232,1,0,0,0,2230,2228,1,0,0,0,2230,2231,1,0,0,0,2231,2263,1,0,0, - 0,2232,2230,1,0,0,0,2233,2234,5,130,0,0,2234,2235,5,31,0,0,2235, - 2240,3,232,116,0,2236,2237,5,4,0,0,2237,2239,3,232,116,0,2238,2236, - 1,0,0,0,2239,2242,1,0,0,0,2240,2238,1,0,0,0,2240,2241,1,0,0,0,2241, - 2260,1,0,0,0,2242,2240,1,0,0,0,2243,2244,5,346,0,0,2244,2261,5,256, - 0,0,2245,2246,5,346,0,0,2246,2261,5,61,0,0,2247,2248,5,131,0,0,2248, - 2249,5,271,0,0,2249,2250,5,2,0,0,2250,2255,3,142,71,0,2251,2252, - 5,4,0,0,2252,2254,3,142,71,0,2253,2251,1,0,0,0,2254,2257,1,0,0,0, - 2255,2253,1,0,0,0,2255,2256,1,0,0,0,2256,2258,1,0,0,0,2257,2255, - 1,0,0,0,2258,2259,5,3,0,0,2259,2261,1,0,0,0,2260,2243,1,0,0,0,2260, - 2245,1,0,0,0,2260,2247,1,0,0,0,2260,2261,1,0,0,0,2261,2263,1,0,0, - 0,2262,2223,1,0,0,0,2262,2233,1,0,0,0,2263,137,1,0,0,0,2264,2268, - 3,78,39,0,2265,2268,3,140,70,0,2266,2268,3,232,116,0,2267,2264,1, - 0,0,0,2267,2265,1,0,0,0,2267,2266,1,0,0,0,2268,139,1,0,0,0,2269, - 2270,7,29,0,0,2270,2271,5,2,0,0,2271,2276,3,142,71,0,2272,2273,5, - 4,0,0,2273,2275,3,142,71,0,2274,2272,1,0,0,0,2275,2278,1,0,0,0,2276, - 2274,1,0,0,0,2276,2277,1,0,0,0,2277,2279,1,0,0,0,2278,2276,1,0,0, - 0,2279,2280,5,3,0,0,2280,2301,1,0,0,0,2281,2282,5,131,0,0,2282,2283, - 5,271,0,0,2283,2286,5,2,0,0,2284,2287,3,140,70,0,2285,2287,3,142, - 71,0,2286,2284,1,0,0,0,2286,2285,1,0,0,0,2287,2295,1,0,0,0,2288, - 2291,5,4,0,0,2289,2292,3,140,70,0,2290,2292,3,142,71,0,2291,2289, - 1,0,0,0,2291,2290,1,0,0,0,2292,2294,1,0,0,0,2293,2288,1,0,0,0,2294, - 2297,1,0,0,0,2295,2293,1,0,0,0,2295,2296,1,0,0,0,2296,2298,1,0,0, - 0,2297,2295,1,0,0,0,2298,2299,5,3,0,0,2299,2301,1,0,0,0,2300,2269, - 1,0,0,0,2300,2281,1,0,0,0,2301,141,1,0,0,0,2302,2323,3,78,39,0,2303, - 2323,3,232,116,0,2304,2319,5,2,0,0,2305,2308,3,78,39,0,2306,2308, - 3,232,116,0,2307,2305,1,0,0,0,2307,2306,1,0,0,0,2308,2316,1,0,0, - 0,2309,2312,5,4,0,0,2310,2313,3,78,39,0,2311,2313,3,232,116,0,2312, - 2310,1,0,0,0,2312,2311,1,0,0,0,2313,2315,1,0,0,0,2314,2309,1,0,0, - 0,2315,2318,1,0,0,0,2316,2314,1,0,0,0,2316,2317,1,0,0,0,2317,2320, - 1,0,0,0,2318,2316,1,0,0,0,2319,2307,1,0,0,0,2319,2320,1,0,0,0,2320, - 2321,1,0,0,0,2321,2323,5,3,0,0,2322,2302,1,0,0,0,2322,2303,1,0,0, - 0,2322,2304,1,0,0,0,2323,143,1,0,0,0,2324,2325,5,223,0,0,2325,2326, - 5,2,0,0,2326,2327,3,222,111,0,2327,2328,5,119,0,0,2328,2329,3,146, - 73,0,2329,2330,5,140,0,0,2330,2331,5,2,0,0,2331,2336,3,148,74,0, - 2332,2333,5,4,0,0,2333,2335,3,148,74,0,2334,2332,1,0,0,0,2335,2338, - 1,0,0,0,2336,2334,1,0,0,0,2336,2337,1,0,0,0,2337,2339,1,0,0,0,2338, - 2336,1,0,0,0,2339,2340,5,3,0,0,2340,2341,5,3,0,0,2341,145,1,0,0, - 0,2342,2355,3,332,166,0,2343,2344,5,2,0,0,2344,2349,3,332,166,0, - 2345,2346,5,4,0,0,2346,2348,3,332,166,0,2347,2345,1,0,0,0,2348,2351, - 1,0,0,0,2349,2347,1,0,0,0,2349,2350,1,0,0,0,2350,2352,1,0,0,0,2351, - 2349,1,0,0,0,2352,2353,5,3,0,0,2353,2355,1,0,0,0,2354,2342,1,0,0, - 0,2354,2343,1,0,0,0,2355,147,1,0,0,0,2356,2361,3,232,116,0,2357, - 2359,5,20,0,0,2358,2357,1,0,0,0,2358,2359,1,0,0,0,2359,2360,1,0, - 0,0,2360,2362,3,332,166,0,2361,2358,1,0,0,0,2361,2362,1,0,0,0,2362, - 149,1,0,0,0,2363,2366,5,327,0,0,2364,2365,7,30,0,0,2365,2367,5,199, - 0,0,2366,2364,1,0,0,0,2366,2367,1,0,0,0,2367,2368,1,0,0,0,2368,2371, - 5,2,0,0,2369,2372,3,152,76,0,2370,2372,3,154,77,0,2371,2369,1,0, - 0,0,2371,2370,1,0,0,0,2372,2373,1,0,0,0,2373,2378,5,3,0,0,2374,2376, - 5,20,0,0,2375,2374,1,0,0,0,2375,2376,1,0,0,0,2376,2377,1,0,0,0,2377, - 2379,3,332,166,0,2378,2375,1,0,0,0,2378,2379,1,0,0,0,2379,151,1, - 0,0,0,2380,2381,3,332,166,0,2381,2382,5,119,0,0,2382,2383,3,332, - 166,0,2383,2384,5,140,0,0,2384,2385,5,2,0,0,2385,2390,3,158,79,0, - 2386,2387,5,4,0,0,2387,2389,3,158,79,0,2388,2386,1,0,0,0,2389,2392, - 1,0,0,0,2390,2388,1,0,0,0,2390,2391,1,0,0,0,2391,2393,1,0,0,0,2392, - 2390,1,0,0,0,2393,2394,5,3,0,0,2394,153,1,0,0,0,2395,2396,5,2,0, - 0,2396,2401,3,332,166,0,2397,2398,5,4,0,0,2398,2400,3,332,166,0, - 2399,2397,1,0,0,0,2400,2403,1,0,0,0,2401,2399,1,0,0,0,2401,2402, - 1,0,0,0,2402,2404,1,0,0,0,2403,2401,1,0,0,0,2404,2405,5,3,0,0,2405, - 2406,5,119,0,0,2406,2407,3,332,166,0,2407,2408,5,140,0,0,2408,2409, - 5,2,0,0,2409,2414,3,156,78,0,2410,2411,5,4,0,0,2411,2413,3,156,78, - 0,2412,2410,1,0,0,0,2413,2416,1,0,0,0,2414,2412,1,0,0,0,2414,2415, - 1,0,0,0,2415,2417,1,0,0,0,2416,2414,1,0,0,0,2417,2418,5,3,0,0,2418, - 155,1,0,0,0,2419,2420,5,2,0,0,2420,2425,3,210,105,0,2421,2422,5, - 4,0,0,2422,2424,3,210,105,0,2423,2421,1,0,0,0,2424,2427,1,0,0,0, - 2425,2423,1,0,0,0,2425,2426,1,0,0,0,2426,2428,1,0,0,0,2427,2425, - 1,0,0,0,2428,2433,5,3,0,0,2429,2431,5,20,0,0,2430,2429,1,0,0,0,2430, - 2431,1,0,0,0,2431,2432,1,0,0,0,2432,2434,3,332,166,0,2433,2430,1, - 0,0,0,2433,2434,1,0,0,0,2434,157,1,0,0,0,2435,2440,3,210,105,0,2436, - 2438,5,20,0,0,2437,2436,1,0,0,0,2437,2438,1,0,0,0,2438,2439,1,0, - 0,0,2439,2441,3,332,166,0,2440,2437,1,0,0,0,2440,2441,1,0,0,0,2441, - 159,1,0,0,0,2442,2443,5,137,0,0,2443,2444,5,197,0,0,2444,2445,5, - 105,0,0,2445,161,1,0,0,0,2446,2447,5,137,0,0,2447,2448,5,105,0,0, - 2448,163,1,0,0,0,2449,2450,5,158,0,0,2450,2452,5,338,0,0,2451,2453, - 5,211,0,0,2452,2451,1,0,0,0,2452,2453,1,0,0,0,2453,2454,1,0,0,0, - 2454,2455,3,76,38,0,2455,2464,5,2,0,0,2456,2461,3,232,116,0,2457, - 2458,5,4,0,0,2458,2460,3,232,116,0,2459,2457,1,0,0,0,2460,2463,1, - 0,0,0,2461,2459,1,0,0,0,2461,2462,1,0,0,0,2462,2465,1,0,0,0,2463, - 2461,1,0,0,0,2464,2456,1,0,0,0,2464,2465,1,0,0,0,2465,2466,1,0,0, - 0,2466,2467,5,3,0,0,2467,2479,3,204,102,0,2468,2470,5,20,0,0,2469, - 2468,1,0,0,0,2469,2470,1,0,0,0,2470,2471,1,0,0,0,2471,2476,3,332, - 166,0,2472,2473,5,4,0,0,2473,2475,3,332,166,0,2474,2472,1,0,0,0, - 2475,2478,1,0,0,0,2476,2474,1,0,0,0,2476,2477,1,0,0,0,2477,2480, - 1,0,0,0,2478,2476,1,0,0,0,2479,2469,1,0,0,0,2479,2480,1,0,0,0,2480, - 165,1,0,0,0,2481,2482,7,31,0,0,2482,167,1,0,0,0,2483,2497,3,72,36, - 0,2484,2486,5,158,0,0,2485,2484,1,0,0,0,2485,2486,1,0,0,0,2486,2487, - 1,0,0,0,2487,2493,3,192,96,0,2488,2492,3,170,85,0,2489,2492,3,144, - 72,0,2490,2492,3,150,75,0,2491,2488,1,0,0,0,2491,2489,1,0,0,0,2491, - 2490,1,0,0,0,2492,2495,1,0,0,0,2493,2491,1,0,0,0,2493,2494,1,0,0, - 0,2494,2497,1,0,0,0,2495,2493,1,0,0,0,2496,2483,1,0,0,0,2496,2485, - 1,0,0,0,2497,169,1,0,0,0,2498,2499,3,172,86,0,2499,2501,5,155,0, + 1,89,1,89,3,89,2589,8,89,3,89,2591,8,89,1,89,3,89,2594,8,89,1,90, + 1,90,1,90,1,90,1,91,1,91,1,91,5,91,2603,8,91,10,91,12,91,2606,9, + 91,1,92,1,92,1,92,1,92,5,92,2612,8,92,10,92,12,92,2615,9,92,1,92, + 1,92,1,93,1,93,3,93,2621,8,93,1,94,1,94,1,94,1,94,5,94,2627,8,94, + 10,94,12,94,2630,9,94,1,94,1,94,1,95,1,95,1,95,3,95,2637,8,95,1, + 96,1,96,1,96,3,96,2642,8,96,1,96,3,96,2645,8,96,1,96,3,96,2648,8, + 96,1,96,1,96,1,96,1,96,3,96,2654,8,96,1,96,1,96,1,96,1,96,1,96,1, + 96,3,96,2662,8,96,1,96,1,96,1,96,1,96,1,96,1,96,3,96,2670,8,96,1, + 97,1,97,1,97,1,97,1,98,1,98,1,98,1,98,5,98,2680,8,98,10,98,12,98, + 2683,9,98,1,99,1,99,1,99,3,99,2688,8,99,1,99,1,99,1,99,1,99,1,99, + 3,99,2695,8,99,1,99,1,99,1,99,1,99,1,99,3,99,2702,8,99,3,99,2704, + 8,99,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,5,100, + 2715,8,100,10,100,12,100,2718,9,100,1,100,1,100,1,100,3,100,2723, + 8,100,3,100,2725,8,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, + 3,100,2734,8,100,3,100,2736,8,100,1,101,1,101,1,101,1,101,1,102, + 1,102,3,102,2744,8,102,1,103,1,103,3,103,2748,8,103,1,104,1,104, + 1,104,1,105,1,105,1,105,1,105,1,105,5,105,2758,8,105,10,105,12,105, + 2761,9,105,3,105,2763,8,105,1,105,1,105,1,106,3,106,2768,8,106,1, + 106,1,106,3,106,2772,8,106,3,106,2774,8,106,1,107,1,107,1,107,1, + 107,1,107,1,107,1,107,3,107,2783,8,107,1,107,1,107,1,107,1,107,1, + 107,1,107,1,107,1,107,1,107,1,107,3,107,2795,8,107,3,107,2797,8, + 107,1,107,1,107,1,107,1,107,1,107,3,107,2804,8,107,1,107,1,107,1, + 107,1,107,1,107,3,107,2811,8,107,1,107,1,107,1,107,1,107,3,107,2817, + 8,107,1,107,1,107,1,107,1,107,3,107,2823,8,107,3,107,2825,8,107, + 1,108,1,108,1,108,5,108,2830,8,108,10,108,12,108,2833,9,108,1,109, + 1,109,1,109,5,109,2838,8,109,10,109,12,109,2841,9,109,1,110,1,110, + 1,110,5,110,2846,8,110,10,110,12,110,2849,9,110,1,111,1,111,1,111, + 3,111,2854,8,111,1,112,1,112,1,112,3,112,2859,8,112,1,112,1,112, + 1,113,1,113,1,113,3,113,2866,8,113,1,113,1,113,1,114,1,114,1,115, + 1,115,1,116,1,116,1,116,5,116,2877,8,116,10,116,12,116,2880,9,116, + 1,116,1,116,1,117,1,117,1,117,3,117,2887,8,117,1,117,3,117,2890, + 8,117,1,117,1,117,3,117,2894,8,117,3,117,2896,8,117,1,118,1,118, + 1,118,5,118,2901,8,118,10,118,12,118,2904,9,118,1,119,1,119,1,120, + 1,120,1,120,1,120,5,120,2912,8,120,10,120,12,120,2915,9,120,1,120, + 1,120,1,121,1,121,3,121,2921,8,121,1,122,1,122,1,122,1,122,1,122, + 1,122,5,122,2929,8,122,10,122,12,122,2932,9,122,1,122,1,122,3,122, + 2936,8,122,1,123,1,123,3,123,2940,8,123,1,124,1,124,1,125,1,125, + 1,125,1,125,1,126,1,126,3,126,2950,8,126,1,127,1,127,1,127,5,127, + 2955,8,127,10,127,12,127,2958,9,127,1,128,1,128,1,128,1,128,1,128, + 1,128,1,128,1,128,1,128,1,128,3,128,2970,8,128,3,128,2972,8,128, + 1,128,1,128,1,128,1,128,1,128,1,128,5,128,2980,8,128,10,128,12,128, + 2983,9,128,1,129,3,129,2986,8,129,1,129,1,129,1,129,1,129,1,129, + 1,129,3,129,2994,8,129,1,129,1,129,1,129,1,129,1,129,5,129,3001, + 8,129,10,129,12,129,3004,9,129,1,129,1,129,1,129,3,129,3009,8,129, + 1,129,1,129,1,129,1,129,1,129,1,129,3,129,3017,8,129,1,129,1,129, + 1,129,3,129,3022,8,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,5,129,3032,8,129,10,129,12,129,3035,9,129,1,129,1,129,3,129, + 3039,8,129,1,129,3,129,3042,8,129,1,129,1,129,1,129,1,129,3,129, + 3048,8,129,1,129,1,129,3,129,3052,8,129,1,129,1,129,1,129,3,129, + 3057,8,129,1,129,1,129,1,129,3,129,3062,8,129,1,129,1,129,1,129, + 3,129,3067,8,129,1,130,1,130,1,130,1,130,3,130,3073,8,130,1,130, + 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, + 1,130,1,130,1,130,1,130,1,130,1,130,1,130,5,130,3094,8,130,10,130, + 12,130,3097,9,130,1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,132, + 3,132,3107,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,3,132,3119,8,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,4,132,3129,8,132,11,132,12,132,3130,1,132,1,132,3,132, + 3135,8,132,1,132,1,132,1,132,1,132,1,132,4,132,3142,8,132,11,132, + 12,132,3143,1,132,1,132,3,132,3148,8,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,5,132, + 3164,8,132,10,132,12,132,3167,9,132,3,132,3169,8,132,1,132,1,132, + 1,132,1,132,1,132,1,132,3,132,3177,8,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,3,132,3186,8,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,3,132,3195,8,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,4,132,3216,8,132,11,132,12,132,3217,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 3,132,3234,8,132,1,132,1,132,1,132,5,132,3239,8,132,10,132,12,132, + 3242,9,132,3,132,3244,8,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,3,132,3253,8,132,1,132,1,132,3,132,3257,8,132,1,132,1,132, + 3,132,3261,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 4,132,3271,8,132,11,132,12,132,3272,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,3298,8,132,1,132, + 1,132,1,132,1,132,1,132,3,132,3305,8,132,1,132,3,132,3308,8,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,3,132,3323,8,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,1,132,3,132,3344,8,132,1,132,1,132,3,132,3348,8,132,3,132, + 3350,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,5,132, + 3360,8,132,10,132,12,132,3363,9,132,1,133,1,133,1,133,1,133,1,133, + 1,133,1,133,3,133,3372,8,133,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,4,134,3385,8,134,11,134,12,134,3386, + 3,134,3389,8,134,1,135,1,135,1,136,1,136,1,137,1,137,1,138,1,138, + 1,139,1,139,1,139,3,139,3402,8,139,1,140,1,140,3,140,3406,8,140, + 1,141,1,141,1,141,4,141,3411,8,141,11,141,12,141,3412,1,142,1,142, + 1,142,3,142,3418,8,142,1,143,1,143,1,143,1,143,1,143,1,144,3,144, + 3426,8,144,1,144,1,144,1,144,3,144,3431,8,144,1,145,1,145,1,146, + 1,146,1,147,1,147,1,147,3,147,3440,8,147,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,3,148,3472,8,148,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,5,149,3491,8,149,10,149,12,149,3494,9,149,3,149,3496, + 8,149,1,149,1,149,3,149,3500,8,149,1,149,1,149,1,149,1,149,3,149, + 3506,8,149,1,149,1,149,1,149,1,149,3,149,3512,8,149,1,149,1,149, + 1,149,1,149,1,149,5,149,3519,8,149,10,149,12,149,3522,9,149,1,149, + 3,149,3525,8,149,3,149,3527,8,149,1,150,1,150,1,150,5,150,3532,8, + 150,10,150,12,150,3535,9,150,1,151,1,151,1,151,5,151,3540,8,151, + 10,151,12,151,3543,9,151,1,152,1,152,1,152,5,152,3548,8,152,10,152, + 12,152,3551,9,152,1,153,1,153,1,153,5,153,3556,8,153,10,153,12,153, + 3559,9,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154,3,154,3568, + 8,154,1,155,1,155,1,155,1,156,1,156,1,156,5,156,3576,8,156,10,156, + 12,156,3579,9,156,1,157,1,157,1,157,1,157,3,157,3585,8,157,1,157, + 1,157,3,157,3589,8,157,1,158,1,158,1,158,5,158,3594,8,158,10,158, + 12,158,3597,9,158,1,159,1,159,1,159,5,159,3602,8,159,10,159,12,159, + 3605,9,159,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, + 1,160,1,160,1,160,1,160,3,160,3620,8,160,1,161,1,161,3,161,3624, + 8,161,1,161,1,161,1,161,3,161,3629,8,161,1,161,1,161,3,161,3633, + 8,161,1,162,1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163, + 1,163,1,163,1,163,1,163,5,163,3649,8,163,10,163,12,163,3652,9,163, + 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,165,5,165,3669,8,165,10,165,12,165,3672,9,165, + 1,165,1,165,1,165,1,165,1,165,5,165,3679,8,165,10,165,12,165,3682, + 9,165,3,165,3684,8,165,1,165,1,165,1,165,3,165,3689,8,165,3,165, + 3691,8,165,1,165,3,165,3694,8,165,1,165,3,165,3697,8,165,1,166,1, + 166,1,166,1,166,1,166,1,166,1,166,1,166,3,166,3707,8,166,1,167,1, + 167,1,167,1,167,1,167,1,167,1,167,3,167,3716,8,167,1,168,1,168,1, + 168,5,168,3721,8,168,10,168,12,168,3724,9,168,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,3,169,3735,8,169,1,170,1,170, + 1,171,1,171,1,171,5,171,3742,8,171,10,171,12,171,3745,9,171,1,172, + 1,172,1,172,1,173,1,173,4,173,3752,8,173,11,173,12,173,3753,1,173, + 3,173,3757,8,173,1,174,1,174,3,174,3761,8,174,1,175,1,175,1,175, + 1,175,3,175,3767,8,175,1,176,1,176,1,177,3,177,3772,8,177,1,177, + 1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,3,178,3789,8,178,1,179,1,179,1,180,1,180,1,181, + 1,181,1,182,1,182,1,182,9,1132,1202,1210,1230,1257,1266,1275,1284, + 1332,4,96,256,260,264,183,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,120,122,124,126,128,130,132,134,136,138,140,142,144, + 146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176, + 178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208, + 210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240, + 242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272, + 274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304, + 306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336, + 338,340,342,344,346,348,350,352,354,356,358,360,362,364,0,76,2,0, + 78,78,229,229,2,0,34,34,247,247,3,0,73,73,191,191,262,262,2,0,123, + 123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5,0,46,46,58,58,108, + 108,122,122,173,173,3,0,10,10,290,290,331,331,1,0,86,87,2,0,108, + 108,122,122,3,0,8,8,96,96,289,289,2,0,8,8,167,167,1,0,335,336,2, + 0,59,59,96,96,2,0,129,129,249,249,6,0,54,54,129,129,143,143,172, + 172,228,228,313,313,3,0,11,11,59,59,96,96,4,0,107,107,139,139,171, + 171,326,326,2,0,171,171,326,326,3,0,45,45,275,275,279,279,2,0,45, + 45,275,275,3,0,18,18,103,103,320,320,3,0,72,72,190,190,261,261,4, + 0,102,102,148,148,270,270,323,323,3,0,102,102,270,270,323,323,2, + 0,21,21,86,86,2,0,116,116,157,157,2,0,292,292,337,337,2,0,291,291, + 303,303,2,0,61,61,256,256,2,0,104,104,141,141,2,0,10,10,92,92,2, + 0,15,15,264,264,2,0,124,124,250,250,2,0,382,382,384,384,2,0,93,93, + 217,217,2,0,209,209,278,278,2,0,197,197,360,360,1,0,251,252,1,0, + 163,164,3,0,10,10,16,16,277,277,3,0,111,111,316,316,325,325,2,0, + 361,362,366,366,2,0,94,94,363,365,2,0,361,362,369,369,11,0,67,67, + 69,69,134,134,180,180,182,182,184,184,186,186,231,231,259,259,341, + 341,348,348,4,0,63,63,65,66,268,268,331,331,2,0,74,75,306,306,3, + 0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138,138,246,246,1, + 0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28,160,160,311, + 311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14,14,140,140, + 197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67,68,134,135, + 180,187,192,193,259,260,341,342,348,349,6,0,67,67,134,134,184,184, + 186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67,134,134,184, + 184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352,352,2,0,233, + 233,258,258,2,0,118,118,226,226,2,0,378,378,389,389,1,0,379,387, + 2,0,96,96,269,269,1,0,377,378,52,0,8,9,11,13,15,15,17,19,21,22,24, + 27,29,34,37,41,43,46,48,48,50,56,58,58,61,62,67,91,93,96,98,98,101, + 101,103,110,113,113,115,118,121,122,125,128,131,131,133,139,141, + 143,145,147,149,151,154,154,156,157,159,159,163,193,195,195,199, + 201,205,207,210,210,212,213,215,219,222,226,228,238,240,249,251, + 262,264,267,269,276,278,292,294,299,302,308,310,310,312,322,326, + 330,333,342,345,345,348,351,16,0,15,15,60,60,102,102,124,124,144, + 144,148,148,155,155,158,158,161,161,194,194,203,203,250,250,264, + 264,270,270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125,143, + 145,147,149,154,156,157,159,160,162,193,195,195,197,202,204,249, + 251,262,265,269,271,292,294,322,324,331,333,351,4386,0,369,1,0,0, + 0,2,374,1,0,0,0,4,1335,1,0,0,0,6,1430,1,0,0,0,8,1432,1,0,0,0,10, + 1444,1,0,0,0,12,1457,1,0,0,0,14,1460,1,0,0,0,16,1464,1,0,0,0,18, + 1545,1,0,0,0,20,1547,1,0,0,0,22,1552,1,0,0,0,24,1573,1,0,0,0,26, + 1575,1,0,0,0,28,1582,1,0,0,0,30,1584,1,0,0,0,32,1592,1,0,0,0,34, + 1601,1,0,0,0,36,1612,1,0,0,0,38,1633,1,0,0,0,40,1636,1,0,0,0,42, + 1639,1,0,0,0,44,1650,1,0,0,0,46,1666,1,0,0,0,48,1672,1,0,0,0,50, + 1674,1,0,0,0,52,1685,1,0,0,0,54,1692,1,0,0,0,56,1703,1,0,0,0,58, + 1720,1,0,0,0,60,1728,1,0,0,0,62,1730,1,0,0,0,64,1794,1,0,0,0,66, + 1796,1,0,0,0,68,1798,1,0,0,0,70,1800,1,0,0,0,72,1802,1,0,0,0,74, + 1804,1,0,0,0,76,1806,1,0,0,0,78,1810,1,0,0,0,80,1812,1,0,0,0,82, + 1814,1,0,0,0,84,1822,1,0,0,0,86,1830,1,0,0,0,88,1835,1,0,0,0,90, + 1862,1,0,0,0,92,1867,1,0,0,0,94,1875,1,0,0,0,96,1883,1,0,0,0,98, + 1933,1,0,0,0,100,1937,1,0,0,0,102,1973,1,0,0,0,104,2019,1,0,0,0, + 106,2040,1,0,0,0,108,2072,1,0,0,0,110,2084,1,0,0,0,112,2087,1,0, + 0,0,114,2103,1,0,0,0,116,2117,1,0,0,0,118,2151,1,0,0,0,120,2153, + 1,0,0,0,122,2161,1,0,0,0,124,2165,1,0,0,0,126,2168,1,0,0,0,128,2171, + 1,0,0,0,130,2197,1,0,0,0,132,2199,1,0,0,0,134,2237,1,0,0,0,136,2278, + 1,0,0,0,138,2283,1,0,0,0,140,2316,1,0,0,0,142,2338,1,0,0,0,144,2340, + 1,0,0,0,146,2370,1,0,0,0,148,2372,1,0,0,0,150,2379,1,0,0,0,152,2396, + 1,0,0,0,154,2411,1,0,0,0,156,2435,1,0,0,0,158,2451,1,0,0,0,160,2458, + 1,0,0,0,162,2462,1,0,0,0,164,2465,1,0,0,0,166,2497,1,0,0,0,168,2512, + 1,0,0,0,170,2531,1,0,0,0,172,2549,1,0,0,0,174,2555,1,0,0,0,176,2557, + 1,0,0,0,178,2593,1,0,0,0,180,2595,1,0,0,0,182,2599,1,0,0,0,184,2607, + 1,0,0,0,186,2618,1,0,0,0,188,2622,1,0,0,0,190,2633,1,0,0,0,192,2669, + 1,0,0,0,194,2671,1,0,0,0,196,2675,1,0,0,0,198,2703,1,0,0,0,200,2724, + 1,0,0,0,202,2737,1,0,0,0,204,2743,1,0,0,0,206,2747,1,0,0,0,208,2749, + 1,0,0,0,210,2752,1,0,0,0,212,2773,1,0,0,0,214,2824,1,0,0,0,216,2826, + 1,0,0,0,218,2834,1,0,0,0,220,2842,1,0,0,0,222,2850,1,0,0,0,224,2858, + 1,0,0,0,226,2865,1,0,0,0,228,2869,1,0,0,0,230,2871,1,0,0,0,232,2878, + 1,0,0,0,234,2886,1,0,0,0,236,2897,1,0,0,0,238,2905,1,0,0,0,240,2907, + 1,0,0,0,242,2920,1,0,0,0,244,2935,1,0,0,0,246,2939,1,0,0,0,248,2941, + 1,0,0,0,250,2943,1,0,0,0,252,2949,1,0,0,0,254,2951,1,0,0,0,256,2971, + 1,0,0,0,258,3066,1,0,0,0,260,3072,1,0,0,0,262,3098,1,0,0,0,264,3349, + 1,0,0,0,266,3371,1,0,0,0,268,3388,1,0,0,0,270,3390,1,0,0,0,272,3392, + 1,0,0,0,274,3394,1,0,0,0,276,3396,1,0,0,0,278,3398,1,0,0,0,280,3403, + 1,0,0,0,282,3410,1,0,0,0,284,3414,1,0,0,0,286,3419,1,0,0,0,288,3425, + 1,0,0,0,290,3432,1,0,0,0,292,3434,1,0,0,0,294,3439,1,0,0,0,296,3471, + 1,0,0,0,298,3526,1,0,0,0,300,3528,1,0,0,0,302,3536,1,0,0,0,304,3544, + 1,0,0,0,306,3552,1,0,0,0,308,3567,1,0,0,0,310,3569,1,0,0,0,312,3572, + 1,0,0,0,314,3580,1,0,0,0,316,3590,1,0,0,0,318,3598,1,0,0,0,320,3619, + 1,0,0,0,322,3621,1,0,0,0,324,3634,1,0,0,0,326,3639,1,0,0,0,328,3653, + 1,0,0,0,330,3696,1,0,0,0,332,3706,1,0,0,0,334,3715,1,0,0,0,336,3717, + 1,0,0,0,338,3734,1,0,0,0,340,3736,1,0,0,0,342,3738,1,0,0,0,344,3746, + 1,0,0,0,346,3756,1,0,0,0,348,3760,1,0,0,0,350,3766,1,0,0,0,352,3768, + 1,0,0,0,354,3771,1,0,0,0,356,3788,1,0,0,0,358,3790,1,0,0,0,360,3792, + 1,0,0,0,362,3794,1,0,0,0,364,3796,1,0,0,0,366,368,3,2,1,0,367,366, + 1,0,0,0,368,371,1,0,0,0,369,367,1,0,0,0,369,370,1,0,0,0,370,372, + 1,0,0,0,371,369,1,0,0,0,372,373,5,0,0,1,373,1,1,0,0,0,374,376,3, + 4,2,0,375,377,5,1,0,0,376,375,1,0,0,0,376,377,1,0,0,0,377,3,1,0, + 0,0,378,1336,3,16,8,0,379,381,3,32,16,0,380,379,1,0,0,0,380,381, + 1,0,0,0,381,382,1,0,0,0,382,1336,3,64,32,0,383,385,5,330,0,0,384, + 386,3,26,13,0,385,384,1,0,0,0,385,386,1,0,0,0,386,387,1,0,0,0,387, + 1336,3,66,33,0,388,389,5,269,0,0,389,392,5,37,0,0,390,393,3,348, + 174,0,391,393,3,358,179,0,392,390,1,0,0,0,392,391,1,0,0,0,393,1336, + 1,0,0,0,394,395,5,59,0,0,395,397,3,26,13,0,396,398,3,160,80,0,397, + 396,1,0,0,0,397,398,1,0,0,0,398,399,1,0,0,0,399,409,3,68,34,0,400, + 401,5,51,0,0,401,408,3,358,179,0,402,403,5,170,0,0,403,408,3,358, + 179,0,404,405,5,346,0,0,405,406,7,0,0,0,406,408,3,42,21,0,407,400, + 1,0,0,0,407,402,1,0,0,0,407,404,1,0,0,0,408,411,1,0,0,0,409,407, + 1,0,0,0,409,410,1,0,0,0,410,1336,1,0,0,0,411,409,1,0,0,0,412,413, + 5,11,0,0,413,414,3,26,13,0,414,415,3,66,33,0,415,416,5,269,0,0,416, + 417,7,0,0,0,417,418,3,42,21,0,418,1336,1,0,0,0,419,420,5,11,0,0, + 420,421,3,26,13,0,421,422,3,66,33,0,422,423,5,269,0,0,423,424,5, + 170,0,0,424,425,3,358,179,0,425,1336,1,0,0,0,426,427,5,96,0,0,427, + 429,3,26,13,0,428,430,3,162,81,0,429,428,1,0,0,0,429,430,1,0,0,0, + 430,431,1,0,0,0,431,433,3,66,33,0,432,434,7,1,0,0,433,432,1,0,0, + 0,433,434,1,0,0,0,434,1336,1,0,0,0,435,436,5,273,0,0,436,439,7,2, + 0,0,437,438,7,3,0,0,438,440,3,218,109,0,439,437,1,0,0,0,439,440, + 1,0,0,0,440,445,1,0,0,0,441,443,5,163,0,0,442,441,1,0,0,0,442,443, + 1,0,0,0,443,444,1,0,0,0,444,446,3,358,179,0,445,442,1,0,0,0,445, + 446,1,0,0,0,446,1336,1,0,0,0,447,449,5,59,0,0,448,450,5,298,0,0, + 449,448,1,0,0,0,449,450,1,0,0,0,450,452,1,0,0,0,451,453,5,109,0, + 0,452,451,1,0,0,0,452,453,1,0,0,0,453,454,1,0,0,0,454,456,5,293, + 0,0,455,457,3,160,80,0,456,455,1,0,0,0,456,457,1,0,0,0,457,458,1, + 0,0,0,458,463,3,70,35,0,459,460,5,2,0,0,460,461,3,316,158,0,461, + 462,5,3,0,0,462,464,1,0,0,0,463,459,1,0,0,0,463,464,1,0,0,0,464, + 466,1,0,0,0,465,467,3,36,18,0,466,465,1,0,0,0,466,467,1,0,0,0,467, + 468,1,0,0,0,468,473,3,38,19,0,469,471,5,20,0,0,470,469,1,0,0,0,470, + 471,1,0,0,0,471,472,1,0,0,0,472,474,3,16,8,0,473,470,1,0,0,0,473, + 474,1,0,0,0,474,1336,1,0,0,0,475,476,5,59,0,0,476,478,5,293,0,0, + 477,479,3,160,80,0,478,477,1,0,0,0,478,479,1,0,0,0,479,480,1,0,0, + 0,480,481,3,70,35,0,481,482,5,163,0,0,482,493,3,72,36,0,483,492, + 3,36,18,0,484,492,3,214,107,0,485,492,3,58,29,0,486,487,5,170,0, + 0,487,492,3,358,179,0,488,489,5,297,0,0,489,492,3,42,21,0,490,492, + 3,40,20,0,491,483,1,0,0,0,491,484,1,0,0,0,491,485,1,0,0,0,491,486, + 1,0,0,0,491,488,1,0,0,0,491,490,1,0,0,0,492,495,1,0,0,0,493,491, + 1,0,0,0,493,494,1,0,0,0,494,1336,1,0,0,0,495,493,1,0,0,0,496,497, + 5,59,0,0,497,499,5,208,0,0,498,496,1,0,0,0,498,499,1,0,0,0,499,500, + 1,0,0,0,500,501,5,244,0,0,501,502,5,293,0,0,502,507,3,70,35,0,503, + 504,5,2,0,0,504,505,3,316,158,0,505,506,5,3,0,0,506,508,1,0,0,0, + 507,503,1,0,0,0,507,508,1,0,0,0,508,510,1,0,0,0,509,511,3,36,18, + 0,510,509,1,0,0,0,510,511,1,0,0,0,511,512,1,0,0,0,512,517,3,38,19, + 0,513,515,5,20,0,0,514,513,1,0,0,0,514,515,1,0,0,0,515,516,1,0,0, + 0,516,518,3,16,8,0,517,514,1,0,0,0,517,518,1,0,0,0,518,1336,1,0, + 0,0,519,520,5,13,0,0,520,521,5,293,0,0,521,523,3,72,36,0,522,524, + 3,22,11,0,523,522,1,0,0,0,523,524,1,0,0,0,524,525,1,0,0,0,525,526, + 5,55,0,0,526,534,5,282,0,0,527,535,5,196,0,0,528,529,5,119,0,0,529, + 530,5,50,0,0,530,535,3,82,41,0,531,532,5,119,0,0,532,533,5,10,0, + 0,533,535,5,50,0,0,534,527,1,0,0,0,534,528,1,0,0,0,534,531,1,0,0, + 0,534,535,1,0,0,0,535,1336,1,0,0,0,536,537,5,13,0,0,537,540,5,294, + 0,0,538,539,7,3,0,0,539,541,3,66,33,0,540,538,1,0,0,0,540,541,1, + 0,0,0,541,542,1,0,0,0,542,543,5,55,0,0,543,545,5,282,0,0,544,546, + 5,196,0,0,545,544,1,0,0,0,545,546,1,0,0,0,546,1336,1,0,0,0,547,548, + 5,11,0,0,548,549,5,293,0,0,549,550,3,72,36,0,550,551,5,8,0,0,551, + 552,5,49,0,0,552,553,3,302,151,0,553,1336,1,0,0,0,554,555,5,11,0, + 0,555,556,5,293,0,0,556,557,3,72,36,0,557,558,5,8,0,0,558,559,5, + 50,0,0,559,560,5,2,0,0,560,561,3,300,150,0,561,562,5,3,0,0,562,1336, + 1,0,0,0,563,564,5,11,0,0,564,565,5,293,0,0,565,566,3,72,36,0,566, + 567,5,241,0,0,567,568,5,49,0,0,568,569,3,78,39,0,569,570,5,309,0, + 0,570,571,3,84,42,0,571,1336,1,0,0,0,572,573,5,11,0,0,573,574,5, + 293,0,0,574,575,3,72,36,0,575,576,5,96,0,0,576,578,5,49,0,0,577, + 579,3,162,81,0,578,577,1,0,0,0,578,579,1,0,0,0,579,580,1,0,0,0,580, + 581,3,78,39,0,581,1336,1,0,0,0,582,583,5,11,0,0,583,584,5,293,0, + 0,584,585,3,72,36,0,585,586,5,96,0,0,586,588,5,50,0,0,587,589,3, + 162,81,0,588,587,1,0,0,0,588,589,1,0,0,0,589,590,1,0,0,0,590,591, + 5,2,0,0,591,592,3,82,41,0,592,593,5,3,0,0,593,1336,1,0,0,0,594,599, + 5,11,0,0,595,596,5,293,0,0,596,600,3,72,36,0,597,598,5,338,0,0,598, + 600,3,76,38,0,599,595,1,0,0,0,599,597,1,0,0,0,600,601,1,0,0,0,601, + 602,5,241,0,0,602,603,5,309,0,0,603,604,3,218,109,0,604,1336,1,0, + 0,0,605,610,5,11,0,0,606,607,5,293,0,0,607,611,3,72,36,0,608,609, + 5,338,0,0,609,611,3,76,38,0,610,606,1,0,0,0,610,608,1,0,0,0,611, + 612,1,0,0,0,612,613,5,269,0,0,613,614,5,297,0,0,614,615,3,42,21, + 0,615,1336,1,0,0,0,616,621,5,11,0,0,617,618,5,293,0,0,618,622,3, + 72,36,0,619,620,5,338,0,0,620,622,3,76,38,0,621,617,1,0,0,0,621, + 619,1,0,0,0,622,623,1,0,0,0,623,624,5,328,0,0,624,626,5,297,0,0, + 625,627,3,162,81,0,626,625,1,0,0,0,626,627,1,0,0,0,627,628,1,0,0, + 0,628,629,3,42,21,0,629,1336,1,0,0,0,630,631,5,11,0,0,631,632,5, + 293,0,0,632,633,3,72,36,0,633,635,7,4,0,0,634,636,5,49,0,0,635,634, + 1,0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,639,3,78,39,0,638,640, + 3,356,178,0,639,638,1,0,0,0,639,640,1,0,0,0,640,1336,1,0,0,0,641, + 642,5,11,0,0,642,643,5,293,0,0,643,645,3,72,36,0,644,646,3,22,11, + 0,645,644,1,0,0,0,645,646,1,0,0,0,646,647,1,0,0,0,647,649,5,39,0, + 0,648,650,5,49,0,0,649,648,1,0,0,0,649,650,1,0,0,0,650,651,1,0,0, + 0,651,652,3,78,39,0,652,654,3,314,157,0,653,655,3,294,147,0,654, + 653,1,0,0,0,654,655,1,0,0,0,655,1336,1,0,0,0,656,657,5,11,0,0,657, + 658,5,293,0,0,658,660,3,72,36,0,659,661,3,22,11,0,660,659,1,0,0, + 0,660,661,1,0,0,0,661,662,1,0,0,0,662,663,5,244,0,0,663,664,5,50, + 0,0,664,665,5,2,0,0,665,666,3,304,152,0,666,667,5,3,0,0,667,1336, + 1,0,0,0,668,669,5,11,0,0,669,670,5,293,0,0,670,672,3,72,36,0,671, + 673,3,22,11,0,672,671,1,0,0,0,672,673,1,0,0,0,673,674,1,0,0,0,674, + 675,5,269,0,0,675,676,5,266,0,0,676,680,3,358,179,0,677,678,5,346, + 0,0,678,679,5,267,0,0,679,681,3,42,21,0,680,677,1,0,0,0,680,681, + 1,0,0,0,681,1336,1,0,0,0,682,683,5,11,0,0,683,684,5,293,0,0,684, + 686,3,72,36,0,685,687,3,22,11,0,686,685,1,0,0,0,686,687,1,0,0,0, + 687,688,1,0,0,0,688,689,5,269,0,0,689,690,5,267,0,0,690,691,3,42, + 21,0,691,1336,1,0,0,0,692,697,5,11,0,0,693,694,5,293,0,0,694,698, + 3,72,36,0,695,696,5,338,0,0,696,698,3,76,38,0,697,693,1,0,0,0,697, + 695,1,0,0,0,698,699,1,0,0,0,699,701,5,8,0,0,700,702,3,160,80,0,701, + 700,1,0,0,0,701,702,1,0,0,0,702,704,1,0,0,0,703,705,3,20,10,0,704, + 703,1,0,0,0,705,706,1,0,0,0,706,704,1,0,0,0,706,707,1,0,0,0,707, + 1336,1,0,0,0,708,709,5,11,0,0,709,710,5,293,0,0,710,711,3,72,36, + 0,711,712,3,22,11,0,712,713,5,241,0,0,713,714,5,309,0,0,714,715, + 3,22,11,0,715,1336,1,0,0,0,716,721,5,11,0,0,717,718,5,293,0,0,718, + 722,3,72,36,0,719,720,5,338,0,0,720,722,3,76,38,0,721,717,1,0,0, + 0,721,719,1,0,0,0,722,723,1,0,0,0,723,725,5,96,0,0,724,726,3,162, + 81,0,725,724,1,0,0,0,725,726,1,0,0,0,726,727,1,0,0,0,727,732,3,22, + 11,0,728,729,5,4,0,0,729,731,3,22,11,0,730,728,1,0,0,0,731,734,1, + 0,0,0,732,730,1,0,0,0,732,733,1,0,0,0,733,736,1,0,0,0,734,732,1, + 0,0,0,735,737,5,230,0,0,736,735,1,0,0,0,736,737,1,0,0,0,737,1336, + 1,0,0,0,738,739,5,11,0,0,739,740,5,293,0,0,740,742,3,72,36,0,741, + 743,3,22,11,0,742,741,1,0,0,0,742,743,1,0,0,0,743,744,1,0,0,0,744, + 745,5,269,0,0,745,746,5,170,0,0,746,747,3,358,179,0,747,1336,1,0, + 0,0,748,749,5,11,0,0,749,750,5,293,0,0,750,751,3,72,36,0,751,752, + 5,237,0,0,752,753,5,219,0,0,753,1336,1,0,0,0,754,755,5,11,0,0,755, + 756,5,176,0,0,756,757,5,338,0,0,757,758,3,76,38,0,758,759,7,5,0, + 0,759,760,5,248,0,0,760,1336,1,0,0,0,761,762,5,11,0,0,762,763,5, + 176,0,0,763,764,5,338,0,0,764,765,3,76,38,0,765,766,5,269,0,0,766, + 767,5,297,0,0,767,768,3,42,21,0,768,1336,1,0,0,0,769,770,5,96,0, + 0,770,772,5,293,0,0,771,773,3,162,81,0,772,771,1,0,0,0,772,773,1, + 0,0,0,773,774,1,0,0,0,774,776,3,72,36,0,775,777,5,230,0,0,776,775, + 1,0,0,0,776,777,1,0,0,0,777,1336,1,0,0,0,778,779,5,96,0,0,779,781, + 5,338,0,0,780,782,3,162,81,0,781,780,1,0,0,0,781,782,1,0,0,0,782, + 783,1,0,0,0,783,1336,3,76,38,0,784,785,5,96,0,0,785,786,5,176,0, + 0,786,788,5,338,0,0,787,789,3,162,81,0,788,787,1,0,0,0,788,789,1, + 0,0,0,789,790,1,0,0,0,790,1336,3,76,38,0,791,794,5,59,0,0,792,793, + 5,208,0,0,793,795,5,244,0,0,794,792,1,0,0,0,794,795,1,0,0,0,795, + 800,1,0,0,0,796,798,5,128,0,0,797,796,1,0,0,0,797,798,1,0,0,0,798, + 799,1,0,0,0,799,801,5,298,0,0,800,797,1,0,0,0,800,801,1,0,0,0,801, + 802,1,0,0,0,802,804,5,338,0,0,803,805,3,160,80,0,804,803,1,0,0,0, + 804,805,1,0,0,0,805,806,1,0,0,0,806,808,3,74,37,0,807,809,3,188, + 94,0,808,807,1,0,0,0,808,809,1,0,0,0,809,819,1,0,0,0,810,811,5,51, + 0,0,811,818,3,358,179,0,812,813,5,218,0,0,813,814,5,203,0,0,814, + 818,3,180,90,0,815,816,5,297,0,0,816,818,3,42,21,0,817,810,1,0,0, + 0,817,812,1,0,0,0,817,815,1,0,0,0,818,821,1,0,0,0,819,817,1,0,0, + 0,819,820,1,0,0,0,820,822,1,0,0,0,821,819,1,0,0,0,822,823,5,20,0, + 0,823,824,3,16,8,0,824,1336,1,0,0,0,825,828,5,59,0,0,826,827,5,208, + 0,0,827,829,5,244,0,0,828,826,1,0,0,0,828,829,1,0,0,0,829,831,1, + 0,0,0,830,832,5,128,0,0,831,830,1,0,0,0,831,832,1,0,0,0,832,833, + 1,0,0,0,833,834,5,298,0,0,834,835,5,338,0,0,835,840,3,74,37,0,836, + 837,5,2,0,0,837,838,3,312,156,0,838,839,5,3,0,0,839,841,1,0,0,0, + 840,836,1,0,0,0,840,841,1,0,0,0,841,842,1,0,0,0,842,845,3,36,18, + 0,843,844,5,207,0,0,844,846,3,42,21,0,845,843,1,0,0,0,845,846,1, + 0,0,0,846,1336,1,0,0,0,847,848,5,11,0,0,848,849,5,338,0,0,849,851, + 3,76,38,0,850,852,5,20,0,0,851,850,1,0,0,0,851,852,1,0,0,0,852,853, + 1,0,0,0,853,854,3,16,8,0,854,1336,1,0,0,0,855,858,5,59,0,0,856,857, + 5,208,0,0,857,859,5,244,0,0,858,856,1,0,0,0,858,859,1,0,0,0,859, + 861,1,0,0,0,860,862,5,298,0,0,861,860,1,0,0,0,861,862,1,0,0,0,862, + 863,1,0,0,0,863,865,5,125,0,0,864,866,3,160,80,0,865,864,1,0,0,0, + 865,866,1,0,0,0,866,867,1,0,0,0,867,868,3,340,170,0,868,869,5,20, + 0,0,869,883,3,358,179,0,870,871,5,332,0,0,871,872,3,348,174,0,872, + 873,3,358,179,0,873,880,1,0,0,0,874,875,5,4,0,0,875,876,3,348,174, + 0,876,877,3,358,179,0,877,879,1,0,0,0,878,874,1,0,0,0,879,882,1, + 0,0,0,880,878,1,0,0,0,880,881,1,0,0,0,881,884,1,0,0,0,882,880,1, + 0,0,0,883,870,1,0,0,0,883,884,1,0,0,0,884,1336,1,0,0,0,885,886,5, + 59,0,0,886,887,5,176,0,0,887,889,5,338,0,0,888,890,3,160,80,0,889, + 888,1,0,0,0,889,890,1,0,0,0,890,891,1,0,0,0,891,893,3,74,37,0,892, + 894,3,36,18,0,893,892,1,0,0,0,893,894,1,0,0,0,894,912,1,0,0,0,895, + 896,5,207,0,0,896,911,3,42,21,0,897,898,5,218,0,0,898,899,5,31,0, + 0,899,911,3,240,120,0,900,911,3,10,5,0,901,911,3,8,4,0,902,911,3, + 214,107,0,903,911,3,58,29,0,904,905,5,170,0,0,905,911,3,358,179, + 0,906,907,5,51,0,0,907,911,3,358,179,0,908,909,5,297,0,0,909,911, + 3,42,21,0,910,895,1,0,0,0,910,897,1,0,0,0,910,900,1,0,0,0,910,901, + 1,0,0,0,910,902,1,0,0,0,910,903,1,0,0,0,910,904,1,0,0,0,910,906, + 1,0,0,0,910,908,1,0,0,0,911,914,1,0,0,0,912,910,1,0,0,0,912,913, + 1,0,0,0,913,915,1,0,0,0,914,912,1,0,0,0,915,916,5,20,0,0,916,917, + 3,16,8,0,917,1336,1,0,0,0,918,920,5,96,0,0,919,921,5,298,0,0,920, + 919,1,0,0,0,920,921,1,0,0,0,921,922,1,0,0,0,922,924,5,125,0,0,923, + 925,3,162,81,0,924,923,1,0,0,0,924,925,1,0,0,0,925,926,1,0,0,0,926, + 1336,3,338,169,0,927,930,5,81,0,0,928,929,5,208,0,0,929,931,5,244, + 0,0,930,928,1,0,0,0,930,931,1,0,0,0,931,933,1,0,0,0,932,934,5,336, + 0,0,933,932,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935,937,3,338, + 169,0,936,938,3,298,149,0,937,936,1,0,0,0,937,938,1,0,0,0,938,940, + 1,0,0,0,939,941,3,310,155,0,940,939,1,0,0,0,940,941,1,0,0,0,941, + 1336,1,0,0,0,942,943,5,96,0,0,943,944,5,298,0,0,944,946,5,336,0, + 0,945,947,3,162,81,0,946,945,1,0,0,0,946,947,1,0,0,0,947,951,1,0, + 0,0,948,952,3,72,36,0,949,952,3,76,38,0,950,952,3,338,169,0,951, + 948,1,0,0,0,951,949,1,0,0,0,951,950,1,0,0,0,952,1336,1,0,0,0,953, + 955,5,106,0,0,954,956,7,6,0,0,955,954,1,0,0,0,955,956,1,0,0,0,956, + 957,1,0,0,0,957,1336,3,4,2,0,958,959,5,273,0,0,959,962,5,294,0,0, + 960,961,7,3,0,0,961,963,3,66,33,0,962,960,1,0,0,0,962,963,1,0,0, + 0,963,968,1,0,0,0,964,966,5,163,0,0,965,964,1,0,0,0,965,966,1,0, + 0,0,966,967,1,0,0,0,967,969,3,358,179,0,968,965,1,0,0,0,968,969, + 1,0,0,0,969,1336,1,0,0,0,970,971,5,273,0,0,971,972,5,293,0,0,972, + 975,5,108,0,0,973,974,7,3,0,0,974,976,3,66,33,0,975,973,1,0,0,0, + 975,976,1,0,0,0,976,977,1,0,0,0,977,978,5,163,0,0,978,980,3,358, + 179,0,979,981,3,22,11,0,980,979,1,0,0,0,980,981,1,0,0,0,981,1336, + 1,0,0,0,982,983,5,273,0,0,983,984,5,297,0,0,984,989,3,72,36,0,985, + 986,5,2,0,0,986,987,3,46,23,0,987,988,5,3,0,0,988,990,1,0,0,0,989, + 985,1,0,0,0,989,990,1,0,0,0,990,1336,1,0,0,0,991,992,5,273,0,0,992, + 993,5,50,0,0,993,994,7,3,0,0,994,997,3,72,36,0,995,996,7,3,0,0,996, + 998,3,66,33,0,997,995,1,0,0,0,997,998,1,0,0,0,998,1336,1,0,0,0,999, + 1000,5,273,0,0,1000,1003,5,339,0,0,1001,1002,7,3,0,0,1002,1004,3, + 66,33,0,1003,1001,1,0,0,0,1003,1004,1,0,0,0,1004,1009,1,0,0,0,1005, + 1007,5,163,0,0,1006,1005,1,0,0,0,1006,1007,1,0,0,0,1007,1008,1,0, + 0,0,1008,1010,3,358,179,0,1009,1006,1,0,0,0,1009,1010,1,0,0,0,1010, + 1336,1,0,0,0,1011,1012,5,273,0,0,1012,1013,5,219,0,0,1013,1015,3, + 72,36,0,1014,1016,3,22,11,0,1015,1014,1,0,0,0,1015,1016,1,0,0,0, + 1016,1336,1,0,0,0,1017,1019,5,273,0,0,1018,1020,7,7,0,0,1019,1018, + 1,0,0,0,1019,1020,1,0,0,0,1020,1021,1,0,0,0,1021,1024,5,126,0,0, + 1022,1023,7,3,0,0,1023,1025,3,66,33,0,1024,1022,1,0,0,0,1024,1025, + 1,0,0,0,1025,1033,1,0,0,0,1026,1028,5,163,0,0,1027,1026,1,0,0,0, + 1027,1028,1,0,0,0,1028,1031,1,0,0,0,1029,1032,3,218,109,0,1030,1032, + 3,358,179,0,1031,1029,1,0,0,0,1031,1030,1,0,0,0,1032,1034,1,0,0, + 0,1033,1027,1,0,0,0,1033,1034,1,0,0,0,1034,1336,1,0,0,0,1035,1036, + 5,273,0,0,1036,1037,5,59,0,0,1037,1038,5,293,0,0,1038,1041,3,72, + 36,0,1039,1040,5,20,0,0,1040,1042,5,266,0,0,1041,1039,1,0,0,0,1041, + 1042,1,0,0,0,1042,1336,1,0,0,0,1043,1044,5,273,0,0,1044,1045,5,62, + 0,0,1045,1336,3,26,13,0,1046,1047,5,273,0,0,1047,1052,5,38,0,0,1048, + 1050,5,163,0,0,1049,1048,1,0,0,0,1049,1050,1,0,0,0,1050,1051,1,0, + 0,0,1051,1053,3,358,179,0,1052,1049,1,0,0,0,1052,1053,1,0,0,0,1053, + 1336,1,0,0,0,1054,1055,5,273,0,0,1055,1056,5,176,0,0,1056,1059,5, + 339,0,0,1057,1058,7,3,0,0,1058,1060,3,66,33,0,1059,1057,1,0,0,0, + 1059,1060,1,0,0,0,1060,1065,1,0,0,0,1061,1063,5,163,0,0,1062,1061, + 1,0,0,0,1062,1063,1,0,0,0,1063,1064,1,0,0,0,1064,1066,3,358,179, + 0,1065,1062,1,0,0,0,1065,1066,1,0,0,0,1066,1336,1,0,0,0,1067,1068, + 5,273,0,0,1068,1069,5,59,0,0,1069,1070,5,176,0,0,1070,1071,5,338, + 0,0,1071,1074,3,76,38,0,1072,1073,5,20,0,0,1073,1075,5,266,0,0,1074, + 1072,1,0,0,0,1074,1075,1,0,0,0,1075,1336,1,0,0,0,1076,1077,7,8,0, + 0,1077,1079,5,125,0,0,1078,1080,5,108,0,0,1079,1078,1,0,0,0,1079, + 1080,1,0,0,0,1080,1081,1,0,0,0,1081,1336,3,28,14,0,1082,1083,7,8, + 0,0,1083,1085,5,72,0,0,1084,1086,5,108,0,0,1085,1084,1,0,0,0,1085, + 1086,1,0,0,0,1086,1087,1,0,0,0,1087,1336,3,66,33,0,1088,1090,7,8, + 0,0,1089,1091,5,293,0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0,1091, + 1093,1,0,0,0,1092,1094,7,9,0,0,1093,1092,1,0,0,0,1093,1094,1,0,0, + 0,1094,1095,1,0,0,0,1095,1097,3,72,36,0,1096,1098,3,22,11,0,1097, + 1096,1,0,0,0,1097,1098,1,0,0,0,1098,1100,1,0,0,0,1099,1101,3,30, + 15,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1336,1,0,0,0,1102, + 1104,7,8,0,0,1103,1105,5,232,0,0,1104,1103,1,0,0,0,1104,1105,1,0, + 0,0,1105,1106,1,0,0,0,1106,1336,3,16,8,0,1107,1108,5,51,0,0,1108, + 1114,5,203,0,0,1109,1110,3,26,13,0,1110,1111,3,66,33,0,1111,1115, + 1,0,0,0,1112,1113,5,293,0,0,1113,1115,3,72,36,0,1114,1109,1,0,0, + 0,1114,1112,1,0,0,0,1115,1116,1,0,0,0,1116,1119,5,153,0,0,1117,1120, + 3,358,179,0,1118,1120,5,198,0,0,1119,1117,1,0,0,0,1119,1118,1,0, + 0,0,1120,1336,1,0,0,0,1121,1122,5,240,0,0,1122,1123,5,293,0,0,1123, + 1336,3,72,36,0,1124,1125,5,240,0,0,1125,1126,5,125,0,0,1126,1336, + 3,338,169,0,1127,1135,5,240,0,0,1128,1136,3,358,179,0,1129,1131, + 9,0,0,0,1130,1129,1,0,0,0,1131,1134,1,0,0,0,1132,1133,1,0,0,0,1132, + 1130,1,0,0,0,1133,1136,1,0,0,0,1134,1132,1,0,0,0,1135,1128,1,0,0, + 0,1135,1132,1,0,0,0,1136,1336,1,0,0,0,1137,1138,5,240,0,0,1138,1139, + 5,176,0,0,1139,1140,5,338,0,0,1140,1336,3,76,38,0,1141,1143,5,33, + 0,0,1142,1144,5,159,0,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144, + 1145,1,0,0,0,1145,1146,5,293,0,0,1146,1149,3,72,36,0,1147,1148,5, + 207,0,0,1148,1150,3,42,21,0,1149,1147,1,0,0,0,1149,1150,1,0,0,0, + 1150,1155,1,0,0,0,1151,1153,5,20,0,0,1152,1151,1,0,0,0,1152,1153, + 1,0,0,0,1153,1154,1,0,0,0,1154,1156,3,16,8,0,1155,1152,1,0,0,0,1155, + 1156,1,0,0,0,1156,1336,1,0,0,0,1157,1158,5,322,0,0,1158,1160,5,293, + 0,0,1159,1161,3,162,81,0,1160,1159,1,0,0,0,1160,1161,1,0,0,0,1161, + 1162,1,0,0,0,1162,1336,3,72,36,0,1163,1164,5,43,0,0,1164,1336,5, + 33,0,0,1165,1166,5,168,0,0,1166,1168,5,70,0,0,1167,1169,5,169,0, + 0,1168,1167,1,0,0,0,1168,1169,1,0,0,0,1169,1170,1,0,0,0,1170,1171, + 5,145,0,0,1171,1173,3,358,179,0,1172,1174,5,216,0,0,1173,1172,1, + 0,0,0,1173,1174,1,0,0,0,1174,1175,1,0,0,0,1175,1176,5,152,0,0,1176, + 1177,5,293,0,0,1177,1179,3,72,36,0,1178,1180,3,22,11,0,1179,1178, + 1,0,0,0,1179,1180,1,0,0,0,1180,1336,1,0,0,0,1181,1182,5,317,0,0, + 1182,1183,5,293,0,0,1183,1185,3,72,36,0,1184,1186,3,22,11,0,1185, + 1184,1,0,0,0,1185,1186,1,0,0,0,1186,1336,1,0,0,0,1187,1189,5,188, + 0,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1190,1,0,0,0,1190,1191, + 5,242,0,0,1191,1192,5,293,0,0,1192,1195,3,72,36,0,1193,1194,7,10, + 0,0,1194,1196,5,219,0,0,1195,1193,1,0,0,0,1195,1196,1,0,0,0,1196, + 1336,1,0,0,0,1197,1198,7,11,0,0,1198,1202,3,348,174,0,1199,1201, + 9,0,0,0,1200,1199,1,0,0,0,1201,1204,1,0,0,0,1202,1203,1,0,0,0,1202, + 1200,1,0,0,0,1203,1336,1,0,0,0,1204,1202,1,0,0,0,1205,1206,5,269, + 0,0,1206,1210,5,253,0,0,1207,1209,9,0,0,0,1208,1207,1,0,0,0,1209, + 1212,1,0,0,0,1210,1211,1,0,0,0,1210,1208,1,0,0,0,1211,1336,1,0,0, + 0,1212,1210,1,0,0,0,1213,1214,5,269,0,0,1214,1215,5,301,0,0,1215, + 1216,5,350,0,0,1216,1336,3,278,139,0,1217,1218,5,269,0,0,1218,1219, + 5,301,0,0,1219,1222,5,350,0,0,1220,1223,3,358,179,0,1221,1223,5, + 169,0,0,1222,1220,1,0,0,0,1222,1221,1,0,0,0,1223,1336,1,0,0,0,1224, + 1225,5,269,0,0,1225,1226,5,301,0,0,1226,1230,5,350,0,0,1227,1229, + 9,0,0,0,1228,1227,1,0,0,0,1229,1232,1,0,0,0,1230,1231,1,0,0,0,1230, + 1228,1,0,0,0,1231,1336,1,0,0,0,1232,1230,1,0,0,0,1233,1234,5,269, + 0,0,1234,1235,7,12,0,0,1235,1336,3,120,60,0,1236,1237,5,269,0,0, + 1237,1238,7,12,0,0,1238,1239,5,2,0,0,1239,1240,3,216,108,0,1240, + 1241,5,3,0,0,1241,1242,5,352,0,0,1242,1243,5,2,0,0,1243,1244,3,16, + 8,0,1244,1245,5,3,0,0,1245,1336,1,0,0,0,1246,1247,5,269,0,0,1247, + 1248,3,352,176,0,1248,1249,5,352,0,0,1249,1250,5,389,0,0,1250,1336, + 1,0,0,0,1251,1252,5,269,0,0,1252,1260,3,352,176,0,1253,1257,5,352, + 0,0,1254,1256,9,0,0,0,1255,1254,1,0,0,0,1256,1259,1,0,0,0,1257,1258, + 1,0,0,0,1257,1255,1,0,0,0,1258,1261,1,0,0,0,1259,1257,1,0,0,0,1260, + 1253,1,0,0,0,1260,1261,1,0,0,0,1261,1336,1,0,0,0,1262,1266,5,269, + 0,0,1263,1265,9,0,0,0,1264,1263,1,0,0,0,1265,1268,1,0,0,0,1266,1267, + 1,0,0,0,1266,1264,1,0,0,0,1267,1269,1,0,0,0,1268,1266,1,0,0,0,1269, + 1270,5,352,0,0,1270,1336,5,389,0,0,1271,1275,5,269,0,0,1272,1274, + 9,0,0,0,1273,1272,1,0,0,0,1274,1277,1,0,0,0,1275,1276,1,0,0,0,1275, + 1273,1,0,0,0,1276,1336,1,0,0,0,1277,1275,1,0,0,0,1278,1279,5,245, + 0,0,1279,1336,3,352,176,0,1280,1284,5,245,0,0,1281,1283,9,0,0,0, + 1282,1281,1,0,0,0,1283,1286,1,0,0,0,1284,1285,1,0,0,0,1284,1282, + 1,0,0,0,1285,1336,1,0,0,0,1286,1284,1,0,0,0,1287,1288,5,59,0,0,1288, + 1290,5,142,0,0,1289,1291,3,160,80,0,1290,1289,1,0,0,0,1290,1291, + 1,0,0,0,1291,1292,1,0,0,0,1292,1293,3,348,174,0,1293,1295,5,203, + 0,0,1294,1296,5,293,0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296, + 1297,1,0,0,0,1297,1300,3,72,36,0,1298,1299,5,332,0,0,1299,1301,3, + 348,174,0,1300,1298,1,0,0,0,1300,1301,1,0,0,0,1301,1302,1,0,0,0, + 1302,1303,5,2,0,0,1303,1304,3,220,110,0,1304,1307,5,3,0,0,1305,1306, + 5,207,0,0,1306,1308,3,42,21,0,1307,1305,1,0,0,0,1307,1308,1,0,0, + 0,1308,1336,1,0,0,0,1309,1310,5,96,0,0,1310,1312,5,142,0,0,1311, + 1313,3,162,81,0,1312,1311,1,0,0,0,1312,1313,1,0,0,0,1313,1314,1, + 0,0,0,1314,1315,3,348,174,0,1315,1317,5,203,0,0,1316,1318,5,293, + 0,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1319,1,0,0,0,1319,1320, + 3,72,36,0,1320,1336,1,0,0,0,1321,1322,5,205,0,0,1322,1324,3,72,36, + 0,1323,1325,3,124,62,0,1324,1323,1,0,0,0,1324,1325,1,0,0,0,1325, + 1326,1,0,0,0,1326,1327,3,328,164,0,1327,1336,1,0,0,0,1328,1332,3, + 6,3,0,1329,1331,9,0,0,0,1330,1329,1,0,0,0,1331,1334,1,0,0,0,1332, + 1333,1,0,0,0,1332,1330,1,0,0,0,1333,1336,1,0,0,0,1334,1332,1,0,0, + 0,1335,378,1,0,0,0,1335,380,1,0,0,0,1335,383,1,0,0,0,1335,388,1, + 0,0,0,1335,394,1,0,0,0,1335,412,1,0,0,0,1335,419,1,0,0,0,1335,426, + 1,0,0,0,1335,435,1,0,0,0,1335,447,1,0,0,0,1335,475,1,0,0,0,1335, + 498,1,0,0,0,1335,519,1,0,0,0,1335,536,1,0,0,0,1335,547,1,0,0,0,1335, + 554,1,0,0,0,1335,563,1,0,0,0,1335,572,1,0,0,0,1335,582,1,0,0,0,1335, + 594,1,0,0,0,1335,605,1,0,0,0,1335,616,1,0,0,0,1335,630,1,0,0,0,1335, + 641,1,0,0,0,1335,656,1,0,0,0,1335,668,1,0,0,0,1335,682,1,0,0,0,1335, + 692,1,0,0,0,1335,708,1,0,0,0,1335,716,1,0,0,0,1335,738,1,0,0,0,1335, + 748,1,0,0,0,1335,754,1,0,0,0,1335,761,1,0,0,0,1335,769,1,0,0,0,1335, + 778,1,0,0,0,1335,784,1,0,0,0,1335,791,1,0,0,0,1335,825,1,0,0,0,1335, + 847,1,0,0,0,1335,855,1,0,0,0,1335,885,1,0,0,0,1335,918,1,0,0,0,1335, + 927,1,0,0,0,1335,942,1,0,0,0,1335,953,1,0,0,0,1335,958,1,0,0,0,1335, + 970,1,0,0,0,1335,982,1,0,0,0,1335,991,1,0,0,0,1335,999,1,0,0,0,1335, + 1011,1,0,0,0,1335,1017,1,0,0,0,1335,1035,1,0,0,0,1335,1043,1,0,0, + 0,1335,1046,1,0,0,0,1335,1054,1,0,0,0,1335,1067,1,0,0,0,1335,1076, + 1,0,0,0,1335,1082,1,0,0,0,1335,1088,1,0,0,0,1335,1102,1,0,0,0,1335, + 1107,1,0,0,0,1335,1121,1,0,0,0,1335,1124,1,0,0,0,1335,1127,1,0,0, + 0,1335,1137,1,0,0,0,1335,1141,1,0,0,0,1335,1157,1,0,0,0,1335,1163, + 1,0,0,0,1335,1165,1,0,0,0,1335,1181,1,0,0,0,1335,1188,1,0,0,0,1335, + 1197,1,0,0,0,1335,1205,1,0,0,0,1335,1213,1,0,0,0,1335,1217,1,0,0, + 0,1335,1224,1,0,0,0,1335,1233,1,0,0,0,1335,1236,1,0,0,0,1335,1246, + 1,0,0,0,1335,1251,1,0,0,0,1335,1262,1,0,0,0,1335,1271,1,0,0,0,1335, + 1278,1,0,0,0,1335,1280,1,0,0,0,1335,1287,1,0,0,0,1335,1309,1,0,0, + 0,1335,1321,1,0,0,0,1335,1328,1,0,0,0,1336,5,1,0,0,0,1337,1338,7, + 13,0,0,1338,1431,5,253,0,0,1339,1341,7,14,0,0,1340,1342,5,253,0, + 0,1341,1340,1,0,0,0,1341,1342,1,0,0,0,1342,1431,1,0,0,0,1343,1344, + 5,273,0,0,1344,1431,7,15,0,0,1345,1346,5,273,0,0,1346,1348,5,253, + 0,0,1347,1349,5,129,0,0,1348,1347,1,0,0,0,1348,1349,1,0,0,0,1349, + 1431,1,0,0,0,1350,1352,5,273,0,0,1351,1353,5,62,0,0,1352,1351,1, + 0,0,0,1352,1353,1,0,0,0,1353,1354,1,0,0,0,1354,1431,5,254,0,0,1355, + 1356,5,273,0,0,1356,1357,5,59,0,0,1357,1431,5,293,0,0,1358,1359, + 7,16,0,0,1359,1431,5,142,0,0,1360,1361,7,17,0,0,1361,1431,5,293, + 0,0,1362,1363,7,18,0,0,1363,1431,5,72,0,0,1364,1365,7,13,0,0,1365, + 1366,5,298,0,0,1366,1431,5,175,0,0,1367,1368,5,11,0,0,1368,1369, + 5,293,0,0,1369,1370,3,72,36,0,1370,1371,5,197,0,0,1371,1372,7,19, + 0,0,1372,1431,1,0,0,0,1373,1374,5,11,0,0,1374,1375,5,293,0,0,1375, + 1376,3,72,36,0,1376,1377,7,20,0,0,1377,1378,5,31,0,0,1378,1431,1, + 0,0,0,1379,1380,5,11,0,0,1380,1381,5,293,0,0,1381,1382,3,72,36,0, + 1382,1383,5,275,0,0,1383,1384,5,31,0,0,1384,1431,1,0,0,0,1385,1386, + 5,11,0,0,1386,1387,5,293,0,0,1387,1388,3,72,36,0,1388,1389,5,197, + 0,0,1389,1390,5,283,0,0,1390,1391,5,20,0,0,1391,1392,5,89,0,0,1392, + 1431,1,0,0,0,1393,1394,5,11,0,0,1394,1395,5,293,0,0,1395,1396,3, + 72,36,0,1396,1397,5,269,0,0,1397,1398,5,275,0,0,1398,1399,5,170, + 0,0,1399,1431,1,0,0,0,1400,1401,5,11,0,0,1401,1402,5,293,0,0,1402, + 1403,3,72,36,0,1403,1404,7,21,0,0,1404,1405,5,217,0,0,1405,1431, + 1,0,0,0,1406,1407,5,11,0,0,1407,1408,5,293,0,0,1408,1409,3,72,36, + 0,1409,1410,5,310,0,0,1410,1431,1,0,0,0,1411,1412,5,11,0,0,1412, + 1413,5,293,0,0,1413,1415,3,72,36,0,1414,1416,3,22,11,0,1415,1414, + 1,0,0,0,1415,1416,1,0,0,0,1416,1423,1,0,0,0,1417,1424,5,53,0,0,1418, + 1424,5,56,0,0,1419,1420,5,269,0,0,1420,1424,5,115,0,0,1421,1422, + 5,244,0,0,1422,1424,5,50,0,0,1423,1417,1,0,0,0,1423,1418,1,0,0,0, + 1423,1419,1,0,0,0,1423,1421,1,0,0,0,1424,1431,1,0,0,0,1425,1426, + 5,281,0,0,1426,1431,5,312,0,0,1427,1431,5,52,0,0,1428,1431,5,255, + 0,0,1429,1431,5,88,0,0,1430,1337,1,0,0,0,1430,1339,1,0,0,0,1430, + 1343,1,0,0,0,1430,1345,1,0,0,0,1430,1350,1,0,0,0,1430,1355,1,0,0, + 0,1430,1358,1,0,0,0,1430,1360,1,0,0,0,1430,1362,1,0,0,0,1430,1364, + 1,0,0,0,1430,1367,1,0,0,0,1430,1373,1,0,0,0,1430,1379,1,0,0,0,1430, + 1385,1,0,0,0,1430,1393,1,0,0,0,1430,1400,1,0,0,0,1430,1406,1,0,0, + 0,1430,1411,1,0,0,0,1430,1425,1,0,0,0,1430,1427,1,0,0,0,1430,1428, + 1,0,0,0,1430,1429,1,0,0,0,1431,7,1,0,0,0,1432,1433,5,45,0,0,1433, + 1434,5,31,0,0,1434,1438,3,180,90,0,1435,1436,5,279,0,0,1436,1437, + 5,31,0,0,1437,1439,3,184,92,0,1438,1435,1,0,0,0,1438,1439,1,0,0, + 0,1439,1440,1,0,0,0,1440,1441,5,152,0,0,1441,1442,5,382,0,0,1442, + 1443,5,30,0,0,1443,9,1,0,0,0,1444,1445,5,275,0,0,1445,1446,5,31, + 0,0,1446,1447,3,180,90,0,1447,1450,5,203,0,0,1448,1451,3,54,27,0, + 1449,1451,3,56,28,0,1450,1448,1,0,0,0,1450,1449,1,0,0,0,1451,1455, + 1,0,0,0,1452,1453,5,283,0,0,1453,1454,5,20,0,0,1454,1456,5,89,0, + 0,1455,1452,1,0,0,0,1455,1456,1,0,0,0,1456,11,1,0,0,0,1457,1458, + 5,170,0,0,1458,1459,3,358,179,0,1459,13,1,0,0,0,1460,1461,5,51,0, + 0,1461,1462,3,358,179,0,1462,15,1,0,0,0,1463,1465,3,32,16,0,1464, + 1463,1,0,0,0,1464,1465,1,0,0,0,1465,1466,1,0,0,0,1466,1467,3,96, + 48,0,1467,1468,3,88,44,0,1468,17,1,0,0,0,1469,1470,5,147,0,0,1470, + 1472,5,216,0,0,1471,1473,5,293,0,0,1472,1471,1,0,0,0,1472,1473,1, + 0,0,0,1473,1474,1,0,0,0,1474,1479,3,72,36,0,1475,1477,3,22,11,0, + 1476,1478,3,160,80,0,1477,1476,1,0,0,0,1477,1478,1,0,0,0,1478,1480, + 1,0,0,0,1479,1475,1,0,0,0,1479,1480,1,0,0,0,1480,1487,1,0,0,0,1481, + 1482,5,31,0,0,1482,1488,5,189,0,0,1483,1484,5,2,0,0,1484,1485,3, + 82,41,0,1485,1486,5,3,0,0,1486,1488,1,0,0,0,1487,1481,1,0,0,0,1487, + 1483,1,0,0,0,1487,1488,1,0,0,0,1488,1546,1,0,0,0,1489,1490,5,147, + 0,0,1490,1492,5,152,0,0,1491,1493,5,293,0,0,1492,1491,1,0,0,0,1492, + 1493,1,0,0,0,1493,1494,1,0,0,0,1494,1496,3,72,36,0,1495,1497,3,22, + 11,0,1496,1495,1,0,0,0,1496,1497,1,0,0,0,1497,1499,1,0,0,0,1498, + 1500,3,160,80,0,1499,1498,1,0,0,0,1499,1500,1,0,0,0,1500,1507,1, + 0,0,0,1501,1502,5,31,0,0,1502,1508,5,189,0,0,1503,1504,5,2,0,0,1504, + 1505,3,82,41,0,1505,1506,5,3,0,0,1506,1508,1,0,0,0,1507,1501,1,0, + 0,0,1507,1503,1,0,0,0,1507,1508,1,0,0,0,1508,1546,1,0,0,0,1509,1510, + 5,147,0,0,1510,1512,5,152,0,0,1511,1513,5,293,0,0,1512,1511,1,0, + 0,0,1512,1513,1,0,0,0,1513,1514,1,0,0,0,1514,1515,3,72,36,0,1515, + 1516,5,244,0,0,1516,1517,3,124,62,0,1517,1546,1,0,0,0,1518,1519, + 5,147,0,0,1519,1521,5,216,0,0,1520,1522,5,169,0,0,1521,1520,1,0, + 0,0,1521,1522,1,0,0,0,1522,1523,1,0,0,0,1523,1524,5,90,0,0,1524, + 1526,3,358,179,0,1525,1527,3,214,107,0,1526,1525,1,0,0,0,1526,1527, + 1,0,0,0,1527,1529,1,0,0,0,1528,1530,3,58,29,0,1529,1528,1,0,0,0, + 1529,1530,1,0,0,0,1530,1546,1,0,0,0,1531,1532,5,147,0,0,1532,1534, + 5,216,0,0,1533,1535,5,169,0,0,1534,1533,1,0,0,0,1534,1535,1,0,0, + 0,1535,1536,1,0,0,0,1536,1538,5,90,0,0,1537,1539,3,358,179,0,1538, + 1537,1,0,0,0,1538,1539,1,0,0,0,1539,1540,1,0,0,0,1540,1543,3,36, + 18,0,1541,1542,5,207,0,0,1542,1544,3,42,21,0,1543,1541,1,0,0,0,1543, + 1544,1,0,0,0,1544,1546,1,0,0,0,1545,1469,1,0,0,0,1545,1489,1,0,0, + 0,1545,1509,1,0,0,0,1545,1518,1,0,0,0,1545,1531,1,0,0,0,1546,19, + 1,0,0,0,1547,1550,3,22,11,0,1548,1549,5,170,0,0,1549,1551,3,358, + 179,0,1550,1548,1,0,0,0,1550,1551,1,0,0,0,1551,21,1,0,0,0,1552,1553, + 5,217,0,0,1553,1554,5,2,0,0,1554,1559,3,24,12,0,1555,1556,5,4,0, + 0,1556,1558,3,24,12,0,1557,1555,1,0,0,0,1558,1561,1,0,0,0,1559,1557, + 1,0,0,0,1559,1560,1,0,0,0,1560,1562,1,0,0,0,1561,1559,1,0,0,0,1562, + 1563,5,3,0,0,1563,23,1,0,0,0,1564,1567,3,348,174,0,1565,1566,5,352, + 0,0,1566,1568,3,268,134,0,1567,1565,1,0,0,0,1567,1568,1,0,0,0,1568, + 1574,1,0,0,0,1569,1570,3,348,174,0,1570,1571,5,352,0,0,1571,1572, + 5,82,0,0,1572,1574,1,0,0,0,1573,1564,1,0,0,0,1573,1569,1,0,0,0,1574, + 25,1,0,0,0,1575,1576,7,22,0,0,1576,27,1,0,0,0,1577,1583,3,86,43, + 0,1578,1583,3,358,179,0,1579,1583,3,270,135,0,1580,1583,3,272,136, + 0,1581,1583,3,274,137,0,1582,1577,1,0,0,0,1582,1578,1,0,0,0,1582, + 1579,1,0,0,0,1582,1580,1,0,0,0,1582,1581,1,0,0,0,1583,29,1,0,0,0, + 1584,1589,3,348,174,0,1585,1586,5,5,0,0,1586,1588,3,348,174,0,1587, + 1585,1,0,0,0,1588,1591,1,0,0,0,1589,1587,1,0,0,0,1589,1590,1,0,0, + 0,1590,31,1,0,0,0,1591,1589,1,0,0,0,1592,1593,5,346,0,0,1593,1598, + 3,34,17,0,1594,1595,5,4,0,0,1595,1597,3,34,17,0,1596,1594,1,0,0, + 0,1597,1600,1,0,0,0,1598,1596,1,0,0,0,1598,1599,1,0,0,0,1599,33, + 1,0,0,0,1600,1598,1,0,0,0,1601,1603,3,344,172,0,1602,1604,3,180, + 90,0,1603,1602,1,0,0,0,1603,1604,1,0,0,0,1604,1606,1,0,0,0,1605, + 1607,5,20,0,0,1606,1605,1,0,0,0,1606,1607,1,0,0,0,1607,1608,1,0, + 0,0,1608,1609,5,2,0,0,1609,1610,3,16,8,0,1610,1611,5,3,0,0,1611, + 35,1,0,0,0,1612,1613,5,332,0,0,1613,1614,3,218,109,0,1614,37,1,0, + 0,0,1615,1616,5,207,0,0,1616,1632,3,50,25,0,1617,1618,5,218,0,0, + 1618,1619,5,31,0,0,1619,1632,3,240,120,0,1620,1632,3,10,5,0,1621, + 1632,3,8,4,0,1622,1632,3,214,107,0,1623,1632,3,58,29,0,1624,1625, + 5,170,0,0,1625,1632,3,358,179,0,1626,1627,5,51,0,0,1627,1632,3,358, + 179,0,1628,1629,5,297,0,0,1629,1632,3,42,21,0,1630,1632,3,40,20, + 0,1631,1615,1,0,0,0,1631,1617,1,0,0,0,1631,1620,1,0,0,0,1631,1621, + 1,0,0,0,1631,1622,1,0,0,0,1631,1623,1,0,0,0,1631,1624,1,0,0,0,1631, + 1626,1,0,0,0,1631,1628,1,0,0,0,1631,1630,1,0,0,0,1632,1635,1,0,0, + 0,1633,1631,1,0,0,0,1633,1634,1,0,0,0,1634,39,1,0,0,0,1635,1633, + 1,0,0,0,1636,1637,5,162,0,0,1637,1638,5,382,0,0,1638,41,1,0,0,0, + 1639,1640,5,2,0,0,1640,1645,3,44,22,0,1641,1642,5,4,0,0,1642,1644, + 3,44,22,0,1643,1641,1,0,0,0,1644,1647,1,0,0,0,1645,1643,1,0,0,0, + 1645,1646,1,0,0,0,1646,1648,1,0,0,0,1647,1645,1,0,0,0,1648,1649, + 5,3,0,0,1649,43,1,0,0,0,1650,1655,3,46,23,0,1651,1653,5,352,0,0, + 1652,1651,1,0,0,0,1652,1653,1,0,0,0,1653,1654,1,0,0,0,1654,1656, + 3,48,24,0,1655,1652,1,0,0,0,1655,1656,1,0,0,0,1656,45,1,0,0,0,1657, + 1662,3,348,174,0,1658,1659,5,5,0,0,1659,1661,3,348,174,0,1660,1658, + 1,0,0,0,1661,1664,1,0,0,0,1662,1660,1,0,0,0,1662,1663,1,0,0,0,1663, + 1667,1,0,0,0,1664,1662,1,0,0,0,1665,1667,3,358,179,0,1666,1657,1, + 0,0,0,1666,1665,1,0,0,0,1667,47,1,0,0,0,1668,1673,5,382,0,0,1669, + 1673,5,384,0,0,1670,1673,3,276,138,0,1671,1673,3,358,179,0,1672, + 1668,1,0,0,0,1672,1669,1,0,0,0,1672,1670,1,0,0,0,1672,1671,1,0,0, + 0,1673,49,1,0,0,0,1674,1675,5,2,0,0,1675,1680,3,52,26,0,1676,1677, + 5,4,0,0,1677,1679,3,52,26,0,1678,1676,1,0,0,0,1679,1682,1,0,0,0, + 1680,1678,1,0,0,0,1680,1681,1,0,0,0,1681,1683,1,0,0,0,1682,1680, + 1,0,0,0,1683,1684,5,3,0,0,1684,51,1,0,0,0,1685,1690,3,46,23,0,1686, + 1688,5,352,0,0,1687,1686,1,0,0,0,1687,1688,1,0,0,0,1688,1689,1,0, + 0,0,1689,1691,3,248,124,0,1690,1687,1,0,0,0,1690,1691,1,0,0,0,1691, + 53,1,0,0,0,1692,1693,5,2,0,0,1693,1698,3,268,134,0,1694,1695,5,4, + 0,0,1695,1697,3,268,134,0,1696,1694,1,0,0,0,1697,1700,1,0,0,0,1698, + 1696,1,0,0,0,1698,1699,1,0,0,0,1699,1701,1,0,0,0,1700,1698,1,0,0, + 0,1701,1702,5,3,0,0,1702,55,1,0,0,0,1703,1704,5,2,0,0,1704,1709, + 3,54,27,0,1705,1706,5,4,0,0,1706,1708,3,54,27,0,1707,1705,1,0,0, + 0,1708,1711,1,0,0,0,1709,1707,1,0,0,0,1709,1710,1,0,0,0,1710,1712, + 1,0,0,0,1711,1709,1,0,0,0,1712,1713,5,3,0,0,1713,57,1,0,0,0,1714, + 1715,5,283,0,0,1715,1716,5,20,0,0,1716,1721,3,60,30,0,1717,1718, + 5,283,0,0,1718,1719,5,31,0,0,1719,1721,3,62,31,0,1720,1714,1,0,0, + 0,1720,1717,1,0,0,0,1721,59,1,0,0,0,1722,1723,5,146,0,0,1723,1724, + 3,358,179,0,1724,1725,5,212,0,0,1725,1726,3,358,179,0,1726,1729, + 1,0,0,0,1727,1729,3,348,174,0,1728,1722,1,0,0,0,1728,1727,1,0,0, + 0,1729,61,1,0,0,0,1730,1734,3,358,179,0,1731,1732,5,346,0,0,1732, + 1733,5,267,0,0,1733,1735,3,42,21,0,1734,1731,1,0,0,0,1734,1735,1, + 0,0,0,1735,63,1,0,0,0,1736,1737,3,18,9,0,1737,1738,3,16,8,0,1738, + 1795,1,0,0,0,1739,1743,3,132,66,0,1740,1741,3,18,9,0,1741,1742,3, + 102,51,0,1742,1744,1,0,0,0,1743,1740,1,0,0,0,1744,1745,1,0,0,0,1745, + 1743,1,0,0,0,1745,1746,1,0,0,0,1746,1795,1,0,0,0,1747,1748,5,84, + 0,0,1748,1749,5,123,0,0,1749,1750,3,72,36,0,1750,1752,3,212,106, + 0,1751,1753,3,124,62,0,1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753, + 1795,1,0,0,0,1754,1755,5,329,0,0,1755,1756,3,72,36,0,1756,1757,3, + 212,106,0,1757,1759,3,110,55,0,1758,1760,3,124,62,0,1759,1758,1, + 0,0,0,1759,1760,1,0,0,0,1760,1795,1,0,0,0,1761,1762,5,179,0,0,1762, + 1763,5,152,0,0,1763,1764,3,72,36,0,1764,1765,3,212,106,0,1765,1771, + 5,332,0,0,1766,1772,3,86,43,0,1767,1768,5,2,0,0,1768,1769,3,16,8, + 0,1769,1770,5,3,0,0,1770,1772,1,0,0,0,1771,1766,1,0,0,0,1771,1767, + 1,0,0,0,1772,1773,1,0,0,0,1773,1774,3,212,106,0,1774,1775,5,203, + 0,0,1775,1779,3,256,128,0,1776,1778,3,112,56,0,1777,1776,1,0,0,0, + 1778,1781,1,0,0,0,1779,1777,1,0,0,0,1779,1780,1,0,0,0,1780,1785, + 1,0,0,0,1781,1779,1,0,0,0,1782,1784,3,114,57,0,1783,1782,1,0,0,0, + 1784,1787,1,0,0,0,1785,1783,1,0,0,0,1785,1786,1,0,0,0,1786,1791, + 1,0,0,0,1787,1785,1,0,0,0,1788,1790,3,116,58,0,1789,1788,1,0,0,0, + 1790,1793,1,0,0,0,1791,1789,1,0,0,0,1791,1792,1,0,0,0,1792,1795, + 1,0,0,0,1793,1791,1,0,0,0,1794,1736,1,0,0,0,1794,1739,1,0,0,0,1794, + 1747,1,0,0,0,1794,1754,1,0,0,0,1794,1761,1,0,0,0,1795,65,1,0,0,0, + 1796,1797,3,86,43,0,1797,67,1,0,0,0,1798,1799,3,86,43,0,1799,69, + 1,0,0,0,1800,1801,3,224,112,0,1801,71,1,0,0,0,1802,1803,3,224,112, + 0,1803,73,1,0,0,0,1804,1805,3,226,113,0,1805,75,1,0,0,0,1806,1807, + 3,226,113,0,1807,77,1,0,0,0,1808,1811,3,218,109,0,1809,1811,4,39, + 0,0,1810,1808,1,0,0,0,1810,1809,1,0,0,0,1811,79,1,0,0,0,1812,1813, + 3,218,109,0,1813,81,1,0,0,0,1814,1819,3,78,39,0,1815,1816,5,4,0, + 0,1816,1818,3,78,39,0,1817,1815,1,0,0,0,1818,1821,1,0,0,0,1819,1817, + 1,0,0,0,1819,1820,1,0,0,0,1820,83,1,0,0,0,1821,1819,1,0,0,0,1822, + 1823,3,344,172,0,1823,85,1,0,0,0,1824,1825,5,136,0,0,1825,1826,5, + 2,0,0,1826,1827,3,248,124,0,1827,1828,5,3,0,0,1828,1831,1,0,0,0, + 1829,1831,3,218,109,0,1830,1824,1,0,0,0,1830,1829,1,0,0,0,1831,87, + 1,0,0,0,1832,1833,5,209,0,0,1833,1834,5,31,0,0,1834,1836,3,92,46, + 0,1835,1832,1,0,0,0,1835,1836,1,0,0,0,1836,1840,1,0,0,0,1837,1838, + 5,44,0,0,1838,1839,5,31,0,0,1839,1841,3,94,47,0,1840,1837,1,0,0, + 0,1840,1841,1,0,0,0,1841,1845,1,0,0,0,1842,1843,5,93,0,0,1843,1844, + 5,31,0,0,1844,1846,3,94,47,0,1845,1842,1,0,0,0,1845,1846,1,0,0,0, + 1846,1850,1,0,0,0,1847,1848,5,278,0,0,1848,1849,5,31,0,0,1849,1851, + 3,92,46,0,1850,1847,1,0,0,0,1850,1851,1,0,0,0,1851,1853,1,0,0,0, + 1852,1854,3,326,163,0,1853,1852,1,0,0,0,1853,1854,1,0,0,0,1854,1856, + 1,0,0,0,1855,1857,3,90,45,0,1856,1855,1,0,0,0,1856,1857,1,0,0,0, + 1857,1860,1,0,0,0,1858,1859,5,202,0,0,1859,1861,3,248,124,0,1860, + 1858,1,0,0,0,1860,1861,1,0,0,0,1861,89,1,0,0,0,1862,1865,5,165,0, + 0,1863,1866,5,10,0,0,1864,1866,3,248,124,0,1865,1863,1,0,0,0,1865, + 1864,1,0,0,0,1866,91,1,0,0,0,1867,1872,3,100,50,0,1868,1869,5,4, + 0,0,1869,1871,3,100,50,0,1870,1868,1,0,0,0,1871,1874,1,0,0,0,1872, + 1870,1,0,0,0,1872,1873,1,0,0,0,1873,93,1,0,0,0,1874,1872,1,0,0,0, + 1875,1880,3,248,124,0,1876,1877,5,4,0,0,1877,1879,3,248,124,0,1878, + 1876,1,0,0,0,1879,1882,1,0,0,0,1880,1878,1,0,0,0,1880,1881,1,0,0, + 0,1881,95,1,0,0,0,1882,1880,1,0,0,0,1883,1884,6,48,-1,0,1884,1885, + 3,98,49,0,1885,1906,1,0,0,0,1886,1887,10,3,0,0,1887,1889,7,23,0, + 0,1888,1890,3,166,83,0,1889,1888,1,0,0,0,1889,1890,1,0,0,0,1890, + 1891,1,0,0,0,1891,1905,3,96,48,4,1892,1893,10,2,0,0,1893,1895,5, + 148,0,0,1894,1896,3,166,83,0,1895,1894,1,0,0,0,1895,1896,1,0,0,0, + 1896,1897,1,0,0,0,1897,1905,3,96,48,3,1898,1899,10,1,0,0,1899,1901, + 7,24,0,0,1900,1902,3,166,83,0,1901,1900,1,0,0,0,1901,1902,1,0,0, + 0,1902,1903,1,0,0,0,1903,1905,3,96,48,2,1904,1886,1,0,0,0,1904,1892, + 1,0,0,0,1904,1898,1,0,0,0,1905,1908,1,0,0,0,1906,1904,1,0,0,0,1906, + 1907,1,0,0,0,1907,97,1,0,0,0,1908,1906,1,0,0,0,1909,1934,3,104,52, + 0,1910,1912,3,132,66,0,1911,1913,3,102,51,0,1912,1911,1,0,0,0,1913, + 1914,1,0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915,1934,1,0,0, + 0,1916,1917,5,293,0,0,1917,1934,3,72,36,0,1918,1919,5,333,0,0,1919, + 1924,3,248,124,0,1920,1921,5,4,0,0,1921,1923,3,248,124,0,1922,1920, + 1,0,0,0,1923,1926,1,0,0,0,1924,1922,1,0,0,0,1924,1925,1,0,0,0,1925, + 1927,1,0,0,0,1926,1924,1,0,0,0,1927,1928,3,212,106,0,1928,1934,1, + 0,0,0,1929,1930,5,2,0,0,1930,1931,3,16,8,0,1931,1932,5,3,0,0,1932, + 1934,1,0,0,0,1933,1909,1,0,0,0,1933,1910,1,0,0,0,1933,1916,1,0,0, + 0,1933,1918,1,0,0,0,1933,1929,1,0,0,0,1934,99,1,0,0,0,1935,1938, + 3,78,39,0,1936,1938,3,248,124,0,1937,1935,1,0,0,0,1937,1936,1,0, + 0,0,1938,1940,1,0,0,0,1939,1941,7,25,0,0,1940,1939,1,0,0,0,1940, + 1941,1,0,0,0,1941,1944,1,0,0,0,1942,1943,5,199,0,0,1943,1945,7,26, + 0,0,1944,1942,1,0,0,0,1944,1945,1,0,0,0,1945,101,1,0,0,0,1946,1948, + 3,106,53,0,1947,1949,3,124,62,0,1948,1947,1,0,0,0,1948,1949,1,0, + 0,0,1949,1950,1,0,0,0,1950,1951,3,88,44,0,1951,1974,1,0,0,0,1952, + 1956,3,108,54,0,1953,1955,3,164,82,0,1954,1953,1,0,0,0,1955,1958, + 1,0,0,0,1956,1954,1,0,0,0,1956,1957,1,0,0,0,1957,1960,1,0,0,0,1958, + 1956,1,0,0,0,1959,1961,3,124,62,0,1960,1959,1,0,0,0,1960,1961,1, + 0,0,0,1961,1963,1,0,0,0,1962,1964,3,136,68,0,1963,1962,1,0,0,0,1963, + 1964,1,0,0,0,1964,1966,1,0,0,0,1965,1967,3,126,63,0,1966,1965,1, + 0,0,0,1966,1967,1,0,0,0,1967,1969,1,0,0,0,1968,1970,3,326,163,0, + 1969,1968,1,0,0,0,1969,1970,1,0,0,0,1970,1971,1,0,0,0,1971,1972, + 3,88,44,0,1972,1974,1,0,0,0,1973,1946,1,0,0,0,1973,1952,1,0,0,0, + 1974,103,1,0,0,0,1975,1977,3,106,53,0,1976,1978,3,132,66,0,1977, + 1976,1,0,0,0,1977,1978,1,0,0,0,1978,1982,1,0,0,0,1979,1981,3,164, + 82,0,1980,1979,1,0,0,0,1981,1984,1,0,0,0,1982,1980,1,0,0,0,1982, + 1983,1,0,0,0,1983,1986,1,0,0,0,1984,1982,1,0,0,0,1985,1987,3,124, + 62,0,1986,1985,1,0,0,0,1986,1987,1,0,0,0,1987,1989,1,0,0,0,1988, + 1990,3,136,68,0,1989,1988,1,0,0,0,1989,1990,1,0,0,0,1990,1992,1, + 0,0,0,1991,1993,3,126,63,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0,1993, + 1995,1,0,0,0,1994,1996,3,326,163,0,1995,1994,1,0,0,0,1995,1996,1, + 0,0,0,1996,2020,1,0,0,0,1997,1999,3,108,54,0,1998,2000,3,132,66, + 0,1999,1998,1,0,0,0,1999,2000,1,0,0,0,2000,2004,1,0,0,0,2001,2003, + 3,164,82,0,2002,2001,1,0,0,0,2003,2006,1,0,0,0,2004,2002,1,0,0,0, + 2004,2005,1,0,0,0,2005,2008,1,0,0,0,2006,2004,1,0,0,0,2007,2009, + 3,124,62,0,2008,2007,1,0,0,0,2008,2009,1,0,0,0,2009,2011,1,0,0,0, + 2010,2012,3,136,68,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012,2014, + 1,0,0,0,2013,2015,3,126,63,0,2014,2013,1,0,0,0,2014,2015,1,0,0,0, + 2015,2017,1,0,0,0,2016,2018,3,326,163,0,2017,2016,1,0,0,0,2017,2018, + 1,0,0,0,2018,2020,1,0,0,0,2019,1975,1,0,0,0,2019,1997,1,0,0,0,2020, + 105,1,0,0,0,2021,2022,5,263,0,0,2022,2023,5,314,0,0,2023,2025,5, + 2,0,0,2024,2026,3,166,83,0,2025,2024,1,0,0,0,2025,2026,1,0,0,0,2026, + 2027,1,0,0,0,2027,2028,3,254,127,0,2028,2029,5,3,0,0,2029,2041,1, + 0,0,0,2030,2032,5,177,0,0,2031,2033,3,166,83,0,2032,2031,1,0,0,0, + 2032,2033,1,0,0,0,2033,2034,1,0,0,0,2034,2041,3,254,127,0,2035,2037, + 5,238,0,0,2036,2038,3,166,83,0,2037,2036,1,0,0,0,2037,2038,1,0,0, + 0,2038,2039,1,0,0,0,2039,2041,3,254,127,0,2040,2021,1,0,0,0,2040, + 2030,1,0,0,0,2040,2035,1,0,0,0,2041,2043,1,0,0,0,2042,2044,3,214, + 107,0,2043,2042,1,0,0,0,2043,2044,1,0,0,0,2044,2047,1,0,0,0,2045, + 2046,5,236,0,0,2046,2048,3,358,179,0,2047,2045,1,0,0,0,2047,2048, + 1,0,0,0,2048,2049,1,0,0,0,2049,2050,5,332,0,0,2050,2063,3,358,179, + 0,2051,2061,5,20,0,0,2052,2062,3,182,91,0,2053,2062,3,312,156,0, + 2054,2057,5,2,0,0,2055,2058,3,182,91,0,2056,2058,3,312,156,0,2057, + 2055,1,0,0,0,2057,2056,1,0,0,0,2058,2059,1,0,0,0,2059,2060,5,3,0, + 0,2060,2062,1,0,0,0,2061,2052,1,0,0,0,2061,2053,1,0,0,0,2061,2054, + 1,0,0,0,2062,2064,1,0,0,0,2063,2051,1,0,0,0,2063,2064,1,0,0,0,2064, + 2066,1,0,0,0,2065,2067,3,214,107,0,2066,2065,1,0,0,0,2066,2067,1, + 0,0,0,2067,2070,1,0,0,0,2068,2069,5,235,0,0,2069,2071,3,358,179, + 0,2070,2068,1,0,0,0,2070,2071,1,0,0,0,2071,107,1,0,0,0,2072,2076, + 5,263,0,0,2073,2075,3,128,64,0,2074,2073,1,0,0,0,2075,2078,1,0,0, + 0,2076,2074,1,0,0,0,2076,2077,1,0,0,0,2077,2080,1,0,0,0,2078,2076, + 1,0,0,0,2079,2081,3,166,83,0,2080,2079,1,0,0,0,2080,2081,1,0,0,0, + 2081,2082,1,0,0,0,2082,2083,3,238,119,0,2083,109,1,0,0,0,2084,2085, + 5,269,0,0,2085,2086,3,120,60,0,2086,111,1,0,0,0,2087,2088,5,343, + 0,0,2088,2091,5,178,0,0,2089,2090,5,14,0,0,2090,2092,3,256,128,0, + 2091,2089,1,0,0,0,2091,2092,1,0,0,0,2092,2093,1,0,0,0,2093,2101, + 5,300,0,0,2094,2102,5,84,0,0,2095,2096,5,329,0,0,2096,2099,5,269, + 0,0,2097,2100,5,363,0,0,2098,2100,3,120,60,0,2099,2097,1,0,0,0,2099, + 2098,1,0,0,0,2100,2102,1,0,0,0,2101,2094,1,0,0,0,2101,2095,1,0,0, + 0,2102,113,1,0,0,0,2103,2104,5,343,0,0,2104,2105,5,197,0,0,2105, + 2108,5,178,0,0,2106,2107,5,31,0,0,2107,2109,5,296,0,0,2108,2106, + 1,0,0,0,2108,2109,1,0,0,0,2109,2112,1,0,0,0,2110,2111,5,14,0,0,2111, + 2113,3,256,128,0,2112,2110,1,0,0,0,2112,2113,1,0,0,0,2113,2114,1, + 0,0,0,2114,2115,5,300,0,0,2115,2116,3,118,59,0,2116,115,1,0,0,0, + 2117,2118,5,343,0,0,2118,2119,5,197,0,0,2119,2120,5,178,0,0,2120, + 2121,5,31,0,0,2121,2124,5,280,0,0,2122,2123,5,14,0,0,2123,2125,3, + 256,128,0,2124,2122,1,0,0,0,2124,2125,1,0,0,0,2125,2126,1,0,0,0, + 2126,2131,5,300,0,0,2127,2132,5,84,0,0,2128,2129,5,329,0,0,2129, + 2130,5,269,0,0,2130,2132,3,120,60,0,2131,2127,1,0,0,0,2131,2128, + 1,0,0,0,2132,117,1,0,0,0,2133,2134,5,147,0,0,2134,2152,5,363,0,0, + 2135,2136,5,147,0,0,2136,2137,5,2,0,0,2137,2138,3,216,108,0,2138, + 2139,5,3,0,0,2139,2140,5,333,0,0,2140,2141,5,2,0,0,2141,2146,3,248, + 124,0,2142,2143,5,4,0,0,2143,2145,3,248,124,0,2144,2142,1,0,0,0, + 2145,2148,1,0,0,0,2146,2144,1,0,0,0,2146,2147,1,0,0,0,2147,2149, + 1,0,0,0,2148,2146,1,0,0,0,2149,2150,5,3,0,0,2150,2152,1,0,0,0,2151, + 2133,1,0,0,0,2151,2135,1,0,0,0,2152,119,1,0,0,0,2153,2158,3,122, + 61,0,2154,2155,5,4,0,0,2155,2157,3,122,61,0,2156,2154,1,0,0,0,2157, + 2160,1,0,0,0,2158,2156,1,0,0,0,2158,2159,1,0,0,0,2159,121,1,0,0, + 0,2160,2158,1,0,0,0,2161,2162,3,218,109,0,2162,2163,5,352,0,0,2163, + 2164,3,248,124,0,2164,123,1,0,0,0,2165,2166,5,344,0,0,2166,2167, + 3,256,128,0,2167,125,1,0,0,0,2168,2169,5,132,0,0,2169,2170,3,256, + 128,0,2170,127,1,0,0,0,2171,2172,5,374,0,0,2172,2179,3,130,65,0, + 2173,2175,5,4,0,0,2174,2173,1,0,0,0,2174,2175,1,0,0,0,2175,2176, + 1,0,0,0,2176,2178,3,130,65,0,2177,2174,1,0,0,0,2178,2181,1,0,0,0, + 2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,2182,1,0,0,0,2181,2179, + 1,0,0,0,2182,2183,5,375,0,0,2183,129,1,0,0,0,2184,2198,3,348,174, + 0,2185,2186,3,348,174,0,2186,2187,5,2,0,0,2187,2192,3,264,132,0, + 2188,2189,5,4,0,0,2189,2191,3,264,132,0,2190,2188,1,0,0,0,2191,2194, + 1,0,0,0,2192,2190,1,0,0,0,2192,2193,1,0,0,0,2193,2195,1,0,0,0,2194, + 2192,1,0,0,0,2195,2196,5,3,0,0,2196,2198,1,0,0,0,2197,2184,1,0,0, + 0,2197,2185,1,0,0,0,2198,131,1,0,0,0,2199,2200,5,123,0,0,2200,2205, + 3,168,84,0,2201,2202,5,4,0,0,2202,2204,3,168,84,0,2203,2201,1,0, + 0,0,2204,2207,1,0,0,0,2205,2203,1,0,0,0,2205,2206,1,0,0,0,2206,2211, + 1,0,0,0,2207,2205,1,0,0,0,2208,2210,3,164,82,0,2209,2208,1,0,0,0, + 2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212,1,0,0,0,2212,2215, + 1,0,0,0,2213,2211,1,0,0,0,2214,2216,3,144,72,0,2215,2214,1,0,0,0, + 2215,2216,1,0,0,0,2216,2218,1,0,0,0,2217,2219,3,150,75,0,2218,2217, + 1,0,0,0,2218,2219,1,0,0,0,2219,133,1,0,0,0,2220,2222,5,119,0,0,2221, + 2220,1,0,0,0,2221,2222,1,0,0,0,2222,2223,1,0,0,0,2223,2224,7,27, + 0,0,2224,2225,5,20,0,0,2225,2228,5,201,0,0,2226,2229,5,382,0,0,2227, + 2229,3,358,179,0,2228,2226,1,0,0,0,2228,2227,1,0,0,0,2229,2238,1, + 0,0,0,2230,2232,5,119,0,0,2231,2230,1,0,0,0,2231,2232,1,0,0,0,2232, + 2233,1,0,0,0,2233,2234,7,28,0,0,2234,2235,5,20,0,0,2235,2236,5,201, + 0,0,2236,2238,3,260,130,0,2237,2221,1,0,0,0,2237,2231,1,0,0,0,2238, + 135,1,0,0,0,2239,2240,5,130,0,0,2240,2241,5,31,0,0,2241,2246,3,138, + 69,0,2242,2243,5,4,0,0,2243,2245,3,138,69,0,2244,2242,1,0,0,0,2245, + 2248,1,0,0,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2279,1,0,0, + 0,2248,2246,1,0,0,0,2249,2250,5,130,0,0,2250,2251,5,31,0,0,2251, + 2256,3,248,124,0,2252,2253,5,4,0,0,2253,2255,3,248,124,0,2254,2252, + 1,0,0,0,2255,2258,1,0,0,0,2256,2254,1,0,0,0,2256,2257,1,0,0,0,2257, + 2276,1,0,0,0,2258,2256,1,0,0,0,2259,2260,5,346,0,0,2260,2277,5,256, + 0,0,2261,2262,5,346,0,0,2262,2277,5,61,0,0,2263,2264,5,131,0,0,2264, + 2265,5,271,0,0,2265,2266,5,2,0,0,2266,2271,3,142,71,0,2267,2268, + 5,4,0,0,2268,2270,3,142,71,0,2269,2267,1,0,0,0,2270,2273,1,0,0,0, + 2271,2269,1,0,0,0,2271,2272,1,0,0,0,2272,2274,1,0,0,0,2273,2271, + 1,0,0,0,2274,2275,5,3,0,0,2275,2277,1,0,0,0,2276,2259,1,0,0,0,2276, + 2261,1,0,0,0,2276,2263,1,0,0,0,2276,2277,1,0,0,0,2277,2279,1,0,0, + 0,2278,2239,1,0,0,0,2278,2249,1,0,0,0,2279,137,1,0,0,0,2280,2284, + 3,78,39,0,2281,2284,3,140,70,0,2282,2284,3,248,124,0,2283,2280,1, + 0,0,0,2283,2281,1,0,0,0,2283,2282,1,0,0,0,2284,139,1,0,0,0,2285, + 2286,7,29,0,0,2286,2287,5,2,0,0,2287,2292,3,142,71,0,2288,2289,5, + 4,0,0,2289,2291,3,142,71,0,2290,2288,1,0,0,0,2291,2294,1,0,0,0,2292, + 2290,1,0,0,0,2292,2293,1,0,0,0,2293,2295,1,0,0,0,2294,2292,1,0,0, + 0,2295,2296,5,3,0,0,2296,2317,1,0,0,0,2297,2298,5,131,0,0,2298,2299, + 5,271,0,0,2299,2302,5,2,0,0,2300,2303,3,140,70,0,2301,2303,3,142, + 71,0,2302,2300,1,0,0,0,2302,2301,1,0,0,0,2303,2311,1,0,0,0,2304, + 2307,5,4,0,0,2305,2308,3,140,70,0,2306,2308,3,142,71,0,2307,2305, + 1,0,0,0,2307,2306,1,0,0,0,2308,2310,1,0,0,0,2309,2304,1,0,0,0,2310, + 2313,1,0,0,0,2311,2309,1,0,0,0,2311,2312,1,0,0,0,2312,2314,1,0,0, + 0,2313,2311,1,0,0,0,2314,2315,5,3,0,0,2315,2317,1,0,0,0,2316,2285, + 1,0,0,0,2316,2297,1,0,0,0,2317,141,1,0,0,0,2318,2339,3,78,39,0,2319, + 2339,3,248,124,0,2320,2335,5,2,0,0,2321,2324,3,78,39,0,2322,2324, + 3,248,124,0,2323,2321,1,0,0,0,2323,2322,1,0,0,0,2324,2332,1,0,0, + 0,2325,2328,5,4,0,0,2326,2329,3,78,39,0,2327,2329,3,248,124,0,2328, + 2326,1,0,0,0,2328,2327,1,0,0,0,2329,2331,1,0,0,0,2330,2325,1,0,0, + 0,2331,2334,1,0,0,0,2332,2330,1,0,0,0,2332,2333,1,0,0,0,2333,2336, + 1,0,0,0,2334,2332,1,0,0,0,2335,2323,1,0,0,0,2335,2336,1,0,0,0,2336, + 2337,1,0,0,0,2337,2339,5,3,0,0,2338,2318,1,0,0,0,2338,2319,1,0,0, + 0,2338,2320,1,0,0,0,2339,143,1,0,0,0,2340,2341,5,223,0,0,2341,2342, + 5,2,0,0,2342,2343,3,236,118,0,2343,2344,5,119,0,0,2344,2345,3,146, + 73,0,2345,2346,5,140,0,0,2346,2347,5,2,0,0,2347,2352,3,148,74,0, + 2348,2349,5,4,0,0,2349,2351,3,148,74,0,2350,2348,1,0,0,0,2351,2354, + 1,0,0,0,2352,2350,1,0,0,0,2352,2353,1,0,0,0,2353,2355,1,0,0,0,2354, + 2352,1,0,0,0,2355,2356,5,3,0,0,2356,2357,5,3,0,0,2357,145,1,0,0, + 0,2358,2371,3,348,174,0,2359,2360,5,2,0,0,2360,2365,3,348,174,0, + 2361,2362,5,4,0,0,2362,2364,3,348,174,0,2363,2361,1,0,0,0,2364,2367, + 1,0,0,0,2365,2363,1,0,0,0,2365,2366,1,0,0,0,2366,2368,1,0,0,0,2367, + 2365,1,0,0,0,2368,2369,5,3,0,0,2369,2371,1,0,0,0,2370,2358,1,0,0, + 0,2370,2359,1,0,0,0,2371,147,1,0,0,0,2372,2377,3,248,124,0,2373, + 2375,5,20,0,0,2374,2373,1,0,0,0,2374,2375,1,0,0,0,2375,2376,1,0, + 0,0,2376,2378,3,348,174,0,2377,2374,1,0,0,0,2377,2378,1,0,0,0,2378, + 149,1,0,0,0,2379,2382,5,327,0,0,2380,2381,7,30,0,0,2381,2383,5,199, + 0,0,2382,2380,1,0,0,0,2382,2383,1,0,0,0,2383,2384,1,0,0,0,2384,2387, + 5,2,0,0,2385,2388,3,152,76,0,2386,2388,3,154,77,0,2387,2385,1,0, + 0,0,2387,2386,1,0,0,0,2388,2389,1,0,0,0,2389,2394,5,3,0,0,2390,2392, + 5,20,0,0,2391,2390,1,0,0,0,2391,2392,1,0,0,0,2392,2393,1,0,0,0,2393, + 2395,3,348,174,0,2394,2391,1,0,0,0,2394,2395,1,0,0,0,2395,151,1, + 0,0,0,2396,2397,3,348,174,0,2397,2398,5,119,0,0,2398,2399,3,348, + 174,0,2399,2400,5,140,0,0,2400,2401,5,2,0,0,2401,2406,3,158,79,0, + 2402,2403,5,4,0,0,2403,2405,3,158,79,0,2404,2402,1,0,0,0,2405,2408, + 1,0,0,0,2406,2404,1,0,0,0,2406,2407,1,0,0,0,2407,2409,1,0,0,0,2408, + 2406,1,0,0,0,2409,2410,5,3,0,0,2410,153,1,0,0,0,2411,2412,5,2,0, + 0,2412,2417,3,348,174,0,2413,2414,5,4,0,0,2414,2416,3,348,174,0, + 2415,2413,1,0,0,0,2416,2419,1,0,0,0,2417,2415,1,0,0,0,2417,2418, + 1,0,0,0,2418,2420,1,0,0,0,2419,2417,1,0,0,0,2420,2421,5,3,0,0,2421, + 2422,5,119,0,0,2422,2423,3,348,174,0,2423,2424,5,140,0,0,2424,2425, + 5,2,0,0,2425,2430,3,156,78,0,2426,2427,5,4,0,0,2427,2429,3,156,78, + 0,2428,2426,1,0,0,0,2429,2432,1,0,0,0,2430,2428,1,0,0,0,2430,2431, + 1,0,0,0,2431,2433,1,0,0,0,2432,2430,1,0,0,0,2433,2434,5,3,0,0,2434, + 155,1,0,0,0,2435,2436,5,2,0,0,2436,2441,3,218,109,0,2437,2438,5, + 4,0,0,2438,2440,3,218,109,0,2439,2437,1,0,0,0,2440,2443,1,0,0,0, + 2441,2439,1,0,0,0,2441,2442,1,0,0,0,2442,2444,1,0,0,0,2443,2441, + 1,0,0,0,2444,2449,5,3,0,0,2445,2447,5,20,0,0,2446,2445,1,0,0,0,2446, + 2447,1,0,0,0,2447,2448,1,0,0,0,2448,2450,3,348,174,0,2449,2446,1, + 0,0,0,2449,2450,1,0,0,0,2450,157,1,0,0,0,2451,2456,3,218,109,0,2452, + 2454,5,20,0,0,2453,2452,1,0,0,0,2453,2454,1,0,0,0,2454,2455,1,0, + 0,0,2455,2457,3,348,174,0,2456,2453,1,0,0,0,2456,2457,1,0,0,0,2457, + 159,1,0,0,0,2458,2459,5,137,0,0,2459,2460,5,197,0,0,2460,2461,5, + 105,0,0,2461,161,1,0,0,0,2462,2463,5,137,0,0,2463,2464,5,105,0,0, + 2464,163,1,0,0,0,2465,2466,5,158,0,0,2466,2468,5,338,0,0,2467,2469, + 5,211,0,0,2468,2467,1,0,0,0,2468,2469,1,0,0,0,2469,2470,1,0,0,0, + 2470,2471,3,76,38,0,2471,2480,5,2,0,0,2472,2477,3,248,124,0,2473, + 2474,5,4,0,0,2474,2476,3,248,124,0,2475,2473,1,0,0,0,2476,2479,1, + 0,0,0,2477,2475,1,0,0,0,2477,2478,1,0,0,0,2478,2481,1,0,0,0,2479, + 2477,1,0,0,0,2480,2472,1,0,0,0,2480,2481,1,0,0,0,2481,2482,1,0,0, + 0,2482,2483,5,3,0,0,2483,2495,3,212,106,0,2484,2486,5,20,0,0,2485, + 2484,1,0,0,0,2485,2486,1,0,0,0,2486,2487,1,0,0,0,2487,2492,3,348, + 174,0,2488,2489,5,4,0,0,2489,2491,3,348,174,0,2490,2488,1,0,0,0, + 2491,2494,1,0,0,0,2492,2490,1,0,0,0,2492,2493,1,0,0,0,2493,2496, + 1,0,0,0,2494,2492,1,0,0,0,2495,2485,1,0,0,0,2495,2496,1,0,0,0,2496, + 165,1,0,0,0,2497,2498,7,31,0,0,2498,167,1,0,0,0,2499,2513,3,72,36, 0,2500,2502,5,158,0,0,2501,2500,1,0,0,0,2501,2502,1,0,0,0,2502,2503, - 1,0,0,0,2503,2505,3,192,96,0,2504,2506,3,174,87,0,2505,2504,1,0, - 0,0,2505,2506,1,0,0,0,2506,2516,1,0,0,0,2507,2508,5,194,0,0,2508, - 2509,3,172,86,0,2509,2511,5,155,0,0,2510,2512,5,158,0,0,2511,2510, - 1,0,0,0,2511,2512,1,0,0,0,2512,2513,1,0,0,0,2513,2514,3,192,96,0, - 2514,2516,1,0,0,0,2515,2498,1,0,0,0,2515,2507,1,0,0,0,2516,171,1, - 0,0,0,2517,2519,5,144,0,0,2518,2517,1,0,0,0,2518,2519,1,0,0,0,2519, - 2534,1,0,0,0,2520,2534,5,60,0,0,2521,2523,5,161,0,0,2522,2524,5, - 211,0,0,2523,2522,1,0,0,0,2523,2524,1,0,0,0,2524,2534,1,0,0,0,2525, - 2527,5,161,0,0,2526,2525,1,0,0,0,2526,2527,1,0,0,0,2527,2528,1,0, - 0,0,2528,2534,7,32,0,0,2529,2531,7,33,0,0,2530,2532,5,211,0,0,2531, - 2530,1,0,0,0,2531,2532,1,0,0,0,2532,2534,1,0,0,0,2533,2518,1,0,0, - 0,2533,2520,1,0,0,0,2533,2521,1,0,0,0,2533,2526,1,0,0,0,2533,2529, - 1,0,0,0,2534,173,1,0,0,0,2535,2536,5,203,0,0,2536,2540,3,240,120, - 0,2537,2538,5,332,0,0,2538,2540,3,180,90,0,2539,2535,1,0,0,0,2539, - 2537,1,0,0,0,2540,175,1,0,0,0,2541,2542,5,295,0,0,2542,2544,5,2, - 0,0,2543,2545,3,178,89,0,2544,2543,1,0,0,0,2544,2545,1,0,0,0,2545, - 2546,1,0,0,0,2546,2551,5,3,0,0,2547,2548,5,243,0,0,2548,2549,5,2, - 0,0,2549,2550,5,382,0,0,2550,2552,5,3,0,0,2551,2547,1,0,0,0,2551, - 2552,1,0,0,0,2552,177,1,0,0,0,2553,2555,5,362,0,0,2554,2553,1,0, - 0,0,2554,2555,1,0,0,0,2555,2556,1,0,0,0,2556,2557,7,34,0,0,2557, - 2578,5,222,0,0,2558,2559,3,232,116,0,2559,2560,5,258,0,0,2560,2578, - 1,0,0,0,2561,2562,5,29,0,0,2562,2563,5,382,0,0,2563,2564,5,210,0, - 0,2564,2565,5,201,0,0,2565,2574,5,382,0,0,2566,2572,5,203,0,0,2567, - 2573,3,332,166,0,2568,2569,3,326,163,0,2569,2570,5,2,0,0,2570,2571, - 5,3,0,0,2571,2573,1,0,0,0,2572,2567,1,0,0,0,2572,2568,1,0,0,0,2573, - 2575,1,0,0,0,2574,2566,1,0,0,0,2574,2575,1,0,0,0,2575,2578,1,0,0, - 0,2576,2578,3,232,116,0,2577,2554,1,0,0,0,2577,2558,1,0,0,0,2577, - 2561,1,0,0,0,2577,2576,1,0,0,0,2578,179,1,0,0,0,2579,2580,5,2,0, - 0,2580,2581,3,182,91,0,2581,2582,5,3,0,0,2582,181,1,0,0,0,2583,2588, - 3,328,164,0,2584,2585,5,4,0,0,2585,2587,3,328,164,0,2586,2584,1, - 0,0,0,2587,2590,1,0,0,0,2588,2586,1,0,0,0,2588,2589,1,0,0,0,2589, - 183,1,0,0,0,2590,2588,1,0,0,0,2591,2592,5,2,0,0,2592,2597,3,186, - 93,0,2593,2594,5,4,0,0,2594,2596,3,186,93,0,2595,2593,1,0,0,0,2596, - 2599,1,0,0,0,2597,2595,1,0,0,0,2597,2598,1,0,0,0,2598,2600,1,0,0, - 0,2599,2597,1,0,0,0,2600,2601,5,3,0,0,2601,185,1,0,0,0,2602,2604, - 3,328,164,0,2603,2605,7,25,0,0,2604,2603,1,0,0,0,2604,2605,1,0,0, - 0,2605,187,1,0,0,0,2606,2607,5,2,0,0,2607,2612,3,190,95,0,2608,2609, - 5,4,0,0,2609,2611,3,190,95,0,2610,2608,1,0,0,0,2611,2614,1,0,0,0, - 2612,2610,1,0,0,0,2612,2613,1,0,0,0,2613,2615,1,0,0,0,2614,2612, - 1,0,0,0,2615,2616,5,3,0,0,2616,189,1,0,0,0,2617,2620,3,84,42,0,2618, - 2619,5,51,0,0,2619,2621,3,342,171,0,2620,2618,1,0,0,0,2620,2621, - 1,0,0,0,2621,191,1,0,0,0,2622,2626,3,72,36,0,2623,2626,3,76,38,0, - 2624,2626,3,86,43,0,2625,2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624, - 1,0,0,0,2626,2628,1,0,0,0,2627,2629,3,134,67,0,2628,2627,1,0,0,0, - 2628,2629,1,0,0,0,2629,2631,1,0,0,0,2630,2632,3,176,88,0,2631,2630, - 1,0,0,0,2631,2632,1,0,0,0,2632,2633,1,0,0,0,2633,2634,3,204,102, - 0,2634,2678,1,0,0,0,2635,2636,5,2,0,0,2636,2637,3,16,8,0,2637,2639, - 5,3,0,0,2638,2640,3,176,88,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0, - 2640,2641,1,0,0,0,2641,2642,3,204,102,0,2642,2678,1,0,0,0,2643,2644, - 5,2,0,0,2644,2645,3,168,84,0,2645,2647,5,3,0,0,2646,2648,3,176,88, - 0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,2649,1,0,0,0,2649,2650, - 3,204,102,0,2650,2678,1,0,0,0,2651,2652,5,333,0,0,2652,2657,3,232, - 116,0,2653,2654,5,4,0,0,2654,2656,3,232,116,0,2655,2653,1,0,0,0, - 2656,2659,1,0,0,0,2657,2655,1,0,0,0,2657,2658,1,0,0,0,2658,2660, - 1,0,0,0,2659,2657,1,0,0,0,2660,2661,3,204,102,0,2661,2678,1,0,0, - 0,2662,2663,3,322,161,0,2663,2672,5,2,0,0,2664,2669,3,202,101,0, - 2665,2666,5,4,0,0,2666,2668,3,202,101,0,2667,2665,1,0,0,0,2668,2671, - 1,0,0,0,2669,2667,1,0,0,0,2669,2670,1,0,0,0,2670,2673,1,0,0,0,2671, - 2669,1,0,0,0,2672,2664,1,0,0,0,2672,2673,1,0,0,0,2673,2674,1,0,0, - 0,2674,2675,5,3,0,0,2675,2676,3,204,102,0,2676,2678,1,0,0,0,2677, - 2625,1,0,0,0,2677,2635,1,0,0,0,2677,2643,1,0,0,0,2677,2651,1,0,0, - 0,2677,2662,1,0,0,0,2678,193,1,0,0,0,2679,2680,5,293,0,0,2680,2682, - 3,72,36,0,2681,2683,3,196,98,0,2682,2681,1,0,0,0,2682,2683,1,0,0, - 0,2683,2699,1,0,0,0,2684,2685,5,293,0,0,2685,2686,5,2,0,0,2686,2687, - 3,72,36,0,2687,2689,5,3,0,0,2688,2690,3,196,98,0,2689,2688,1,0,0, - 0,2689,2690,1,0,0,0,2690,2699,1,0,0,0,2691,2692,5,293,0,0,2692,2693, - 5,2,0,0,2693,2694,3,16,8,0,2694,2696,5,3,0,0,2695,2697,3,196,98, - 0,2696,2695,1,0,0,0,2696,2697,1,0,0,0,2697,2699,1,0,0,0,2698,2679, - 1,0,0,0,2698,2684,1,0,0,0,2698,2691,1,0,0,0,2699,195,1,0,0,0,2700, - 2701,5,346,0,0,2701,2702,5,274,0,0,2702,2720,5,217,0,0,2703,2704, - 7,35,0,0,2704,2717,5,31,0,0,2705,2706,5,2,0,0,2706,2711,3,232,116, - 0,2707,2708,5,4,0,0,2708,2710,3,232,116,0,2709,2707,1,0,0,0,2710, - 2713,1,0,0,0,2711,2709,1,0,0,0,2711,2712,1,0,0,0,2712,2714,1,0,0, - 0,2713,2711,1,0,0,0,2714,2715,5,3,0,0,2715,2718,1,0,0,0,2716,2718, - 3,232,116,0,2717,2705,1,0,0,0,2717,2716,1,0,0,0,2718,2720,1,0,0, - 0,2719,2700,1,0,0,0,2719,2703,1,0,0,0,2720,2730,1,0,0,0,2721,2722, - 7,36,0,0,2722,2728,5,31,0,0,2723,2724,5,2,0,0,2724,2725,3,92,46, - 0,2725,2726,5,3,0,0,2726,2729,1,0,0,0,2727,2729,3,100,50,0,2728, - 2723,1,0,0,0,2728,2727,1,0,0,0,2729,2731,1,0,0,0,2730,2721,1,0,0, - 0,2730,2731,1,0,0,0,2731,197,1,0,0,0,2732,2733,3,332,166,0,2733, - 2734,5,373,0,0,2734,2735,3,194,97,0,2735,199,1,0,0,0,2736,2739,3, - 194,97,0,2737,2739,3,198,99,0,2738,2736,1,0,0,0,2738,2737,1,0,0, - 0,2739,201,1,0,0,0,2740,2743,3,200,100,0,2741,2743,3,236,118,0,2742, - 2740,1,0,0,0,2742,2741,1,0,0,0,2743,203,1,0,0,0,2744,2746,5,20,0, - 0,2745,2744,1,0,0,0,2745,2746,1,0,0,0,2746,2747,1,0,0,0,2747,2749, - 3,334,167,0,2748,2750,3,180,90,0,2749,2748,1,0,0,0,2749,2750,1,0, - 0,0,2750,2752,1,0,0,0,2751,2745,1,0,0,0,2751,2752,1,0,0,0,2752,205, - 1,0,0,0,2753,2754,5,257,0,0,2754,2755,5,121,0,0,2755,2756,5,266, - 0,0,2756,2760,3,342,171,0,2757,2758,5,346,0,0,2758,2759,5,267,0, - 0,2759,2761,3,42,21,0,2760,2757,1,0,0,0,2760,2761,1,0,0,0,2761,2803, - 1,0,0,0,2762,2763,5,257,0,0,2763,2764,5,121,0,0,2764,2774,5,85,0, - 0,2765,2766,5,113,0,0,2766,2767,5,299,0,0,2767,2768,5,31,0,0,2768, - 2772,3,342,171,0,2769,2770,5,101,0,0,2770,2771,5,31,0,0,2771,2773, - 3,342,171,0,2772,2769,1,0,0,0,2772,2773,1,0,0,0,2773,2775,1,0,0, - 0,2774,2765,1,0,0,0,2774,2775,1,0,0,0,2775,2781,1,0,0,0,2776,2777, - 5,48,0,0,2777,2778,5,154,0,0,2778,2779,5,299,0,0,2779,2780,5,31, - 0,0,2780,2782,3,342,171,0,2781,2776,1,0,0,0,2781,2782,1,0,0,0,2782, - 2788,1,0,0,0,2783,2784,5,177,0,0,2784,2785,5,156,0,0,2785,2786,5, - 299,0,0,2786,2787,5,31,0,0,2787,2789,3,342,171,0,2788,2783,1,0,0, - 0,2788,2789,1,0,0,0,2789,2794,1,0,0,0,2790,2791,5,166,0,0,2791,2792, - 5,299,0,0,2792,2793,5,31,0,0,2793,2795,3,342,171,0,2794,2790,1,0, - 0,0,2794,2795,1,0,0,0,2795,2800,1,0,0,0,2796,2797,5,198,0,0,2797, - 2798,5,83,0,0,2798,2799,5,20,0,0,2799,2801,3,342,171,0,2800,2796, - 1,0,0,0,2800,2801,1,0,0,0,2801,2803,1,0,0,0,2802,2753,1,0,0,0,2802, - 2762,1,0,0,0,2803,207,1,0,0,0,2804,2809,3,210,105,0,2805,2806,5, - 4,0,0,2806,2808,3,210,105,0,2807,2805,1,0,0,0,2808,2811,1,0,0,0, - 2809,2807,1,0,0,0,2809,2810,1,0,0,0,2810,209,1,0,0,0,2811,2809,1, - 0,0,0,2812,2817,3,328,164,0,2813,2814,5,5,0,0,2814,2816,3,328,164, - 0,2815,2813,1,0,0,0,2816,2819,1,0,0,0,2817,2815,1,0,0,0,2817,2818, - 1,0,0,0,2818,211,1,0,0,0,2819,2817,1,0,0,0,2820,2825,3,214,107,0, - 2821,2822,5,4,0,0,2822,2824,3,214,107,0,2823,2821,1,0,0,0,2824,2827, - 1,0,0,0,2825,2823,1,0,0,0,2825,2826,1,0,0,0,2826,213,1,0,0,0,2827, - 2825,1,0,0,0,2828,2831,3,210,105,0,2829,2830,5,207,0,0,2830,2832, - 3,42,21,0,2831,2829,1,0,0,0,2831,2832,1,0,0,0,2832,215,1,0,0,0,2833, - 2834,3,328,164,0,2834,2835,5,5,0,0,2835,2837,1,0,0,0,2836,2833,1, - 0,0,0,2836,2837,1,0,0,0,2837,2838,1,0,0,0,2838,2839,3,328,164,0, - 2839,217,1,0,0,0,2840,2841,3,328,164,0,2841,2842,5,5,0,0,2842,2844, - 1,0,0,0,2843,2840,1,0,0,0,2843,2844,1,0,0,0,2844,2845,1,0,0,0,2845, - 2846,3,328,164,0,2846,219,1,0,0,0,2847,2850,3,78,39,0,2848,2850, - 3,232,116,0,2849,2847,1,0,0,0,2849,2848,1,0,0,0,2850,2858,1,0,0, - 0,2851,2853,5,20,0,0,2852,2851,1,0,0,0,2852,2853,1,0,0,0,2853,2856, - 1,0,0,0,2854,2857,3,328,164,0,2855,2857,3,180,90,0,2856,2854,1,0, - 0,0,2856,2855,1,0,0,0,2857,2859,1,0,0,0,2858,2852,1,0,0,0,2858,2859, - 1,0,0,0,2859,221,1,0,0,0,2860,2865,3,220,110,0,2861,2862,5,4,0,0, - 2862,2864,3,220,110,0,2863,2861,1,0,0,0,2864,2867,1,0,0,0,2865,2863, - 1,0,0,0,2865,2866,1,0,0,0,2866,223,1,0,0,0,2867,2865,1,0,0,0,2868, - 2869,5,2,0,0,2869,2874,3,226,113,0,2870,2871,5,4,0,0,2871,2873,3, - 226,113,0,2872,2870,1,0,0,0,2873,2876,1,0,0,0,2874,2872,1,0,0,0, - 2874,2875,1,0,0,0,2875,2877,1,0,0,0,2876,2874,1,0,0,0,2877,2878, - 5,3,0,0,2878,225,1,0,0,0,2879,2882,3,228,114,0,2880,2882,3,298,149, - 0,2881,2879,1,0,0,0,2881,2880,1,0,0,0,2882,227,1,0,0,0,2883,2897, - 3,326,163,0,2884,2885,3,332,166,0,2885,2886,5,2,0,0,2886,2891,3, - 230,115,0,2887,2888,5,4,0,0,2888,2890,3,230,115,0,2889,2887,1,0, - 0,0,2890,2893,1,0,0,0,2891,2889,1,0,0,0,2891,2892,1,0,0,0,2892,2894, - 1,0,0,0,2893,2891,1,0,0,0,2894,2895,5,3,0,0,2895,2897,1,0,0,0,2896, - 2883,1,0,0,0,2896,2884,1,0,0,0,2897,229,1,0,0,0,2898,2901,3,326, - 163,0,2899,2901,3,252,126,0,2900,2898,1,0,0,0,2900,2899,1,0,0,0, - 2901,231,1,0,0,0,2902,2903,3,240,120,0,2903,233,1,0,0,0,2904,2905, - 3,332,166,0,2905,2906,5,373,0,0,2906,2907,3,232,116,0,2907,235,1, - 0,0,0,2908,2911,3,232,116,0,2909,2911,3,234,117,0,2910,2908,1,0, - 0,0,2910,2909,1,0,0,0,2911,237,1,0,0,0,2912,2917,3,232,116,0,2913, - 2914,5,4,0,0,2914,2916,3,232,116,0,2915,2913,1,0,0,0,2916,2919,1, - 0,0,0,2917,2915,1,0,0,0,2917,2918,1,0,0,0,2918,239,1,0,0,0,2919, - 2917,1,0,0,0,2920,2921,6,120,-1,0,2921,2922,7,37,0,0,2922,2933,3, - 240,120,5,2923,2924,5,105,0,0,2924,2925,5,2,0,0,2925,2926,3,16,8, - 0,2926,2927,5,3,0,0,2927,2933,1,0,0,0,2928,2930,3,244,122,0,2929, - 2931,3,242,121,0,2930,2929,1,0,0,0,2930,2931,1,0,0,0,2931,2933,1, - 0,0,0,2932,2920,1,0,0,0,2932,2923,1,0,0,0,2932,2928,1,0,0,0,2933, - 2942,1,0,0,0,2934,2935,10,2,0,0,2935,2936,5,14,0,0,2936,2941,3,240, - 120,3,2937,2938,10,1,0,0,2938,2939,5,208,0,0,2939,2941,3,240,120, - 2,2940,2934,1,0,0,0,2940,2937,1,0,0,0,2941,2944,1,0,0,0,2942,2940, - 1,0,0,0,2942,2943,1,0,0,0,2943,241,1,0,0,0,2944,2942,1,0,0,0,2945, - 2947,5,197,0,0,2946,2945,1,0,0,0,2946,2947,1,0,0,0,2947,2948,1,0, - 0,0,2948,2949,5,24,0,0,2949,2950,3,244,122,0,2950,2951,5,14,0,0, - 2951,2952,3,244,122,0,2952,3028,1,0,0,0,2953,2955,5,197,0,0,2954, - 2953,1,0,0,0,2954,2955,1,0,0,0,2955,2956,1,0,0,0,2956,2957,5,140, - 0,0,2957,2958,5,2,0,0,2958,2963,3,232,116,0,2959,2960,5,4,0,0,2960, - 2962,3,232,116,0,2961,2959,1,0,0,0,2962,2965,1,0,0,0,2963,2961,1, - 0,0,0,2963,2964,1,0,0,0,2964,2966,1,0,0,0,2965,2963,1,0,0,0,2966, - 2967,5,3,0,0,2967,3028,1,0,0,0,2968,2970,5,197,0,0,2969,2968,1,0, - 0,0,2969,2970,1,0,0,0,2970,2971,1,0,0,0,2971,2972,5,140,0,0,2972, - 2973,5,2,0,0,2973,2974,3,16,8,0,2974,2975,5,3,0,0,2975,3028,1,0, - 0,0,2976,2978,5,197,0,0,2977,2976,1,0,0,0,2977,2978,1,0,0,0,2978, - 2979,1,0,0,0,2979,2980,7,38,0,0,2980,3028,3,244,122,0,2981,2983, - 5,197,0,0,2982,2981,1,0,0,0,2982,2983,1,0,0,0,2983,2984,1,0,0,0, - 2984,2985,7,39,0,0,2985,2999,7,40,0,0,2986,2987,5,2,0,0,2987,3000, - 5,3,0,0,2988,2989,5,2,0,0,2989,2994,3,232,116,0,2990,2991,5,4,0, - 0,2991,2993,3,232,116,0,2992,2990,1,0,0,0,2993,2996,1,0,0,0,2994, - 2992,1,0,0,0,2994,2995,1,0,0,0,2995,2997,1,0,0,0,2996,2994,1,0,0, - 0,2997,2998,5,3,0,0,2998,3000,1,0,0,0,2999,2986,1,0,0,0,2999,2988, - 1,0,0,0,3000,3028,1,0,0,0,3001,3003,5,197,0,0,3002,3001,1,0,0,0, - 3002,3003,1,0,0,0,3003,3004,1,0,0,0,3004,3005,7,39,0,0,3005,3008, - 3,244,122,0,3006,3007,5,100,0,0,3007,3009,3,342,171,0,3008,3006, - 1,0,0,0,3008,3009,1,0,0,0,3009,3028,1,0,0,0,3010,3012,5,153,0,0, - 3011,3013,5,197,0,0,3012,3011,1,0,0,0,3012,3013,1,0,0,0,3013,3014, - 1,0,0,0,3014,3028,5,198,0,0,3015,3017,5,153,0,0,3016,3018,5,197, - 0,0,3017,3016,1,0,0,0,3017,3018,1,0,0,0,3018,3019,1,0,0,0,3019,3028, - 7,41,0,0,3020,3022,5,153,0,0,3021,3023,5,197,0,0,3022,3021,1,0,0, - 0,3022,3023,1,0,0,0,3023,3024,1,0,0,0,3024,3025,5,92,0,0,3025,3026, - 5,123,0,0,3026,3028,3,244,122,0,3027,2946,1,0,0,0,3027,2954,1,0, - 0,0,3027,2969,1,0,0,0,3027,2977,1,0,0,0,3027,2982,1,0,0,0,3027,3002, - 1,0,0,0,3027,3010,1,0,0,0,3027,3015,1,0,0,0,3027,3020,1,0,0,0,3028, - 243,1,0,0,0,3029,3030,6,122,-1,0,3030,3034,3,248,124,0,3031,3032, - 7,42,0,0,3032,3034,3,244,122,7,3033,3029,1,0,0,0,3033,3031,1,0,0, - 0,3034,3056,1,0,0,0,3035,3036,10,6,0,0,3036,3037,7,43,0,0,3037,3055, - 3,244,122,7,3038,3039,10,5,0,0,3039,3040,7,44,0,0,3040,3055,3,244, - 122,6,3041,3042,10,4,0,0,3042,3043,5,367,0,0,3043,3055,3,244,122, - 5,3044,3045,10,3,0,0,3045,3046,5,370,0,0,3046,3055,3,244,122,4,3047, - 3048,10,2,0,0,3048,3049,5,368,0,0,3049,3055,3,244,122,3,3050,3051, - 10,1,0,0,3051,3052,3,254,127,0,3052,3053,3,244,122,2,3053,3055,1, - 0,0,0,3054,3035,1,0,0,0,3054,3038,1,0,0,0,3054,3041,1,0,0,0,3054, - 3044,1,0,0,0,3054,3047,1,0,0,0,3054,3050,1,0,0,0,3055,3058,1,0,0, - 0,3056,3054,1,0,0,0,3056,3057,1,0,0,0,3057,245,1,0,0,0,3058,3056, - 1,0,0,0,3059,3060,7,45,0,0,3060,247,1,0,0,0,3061,3062,6,124,-1,0, - 3062,3311,7,46,0,0,3063,3064,7,47,0,0,3064,3067,5,2,0,0,3065,3068, - 3,246,123,0,3066,3068,3,342,171,0,3067,3065,1,0,0,0,3067,3066,1, - 0,0,0,3068,3069,1,0,0,0,3069,3070,5,4,0,0,3070,3071,3,244,122,0, - 3071,3072,5,4,0,0,3072,3073,3,244,122,0,3073,3074,5,3,0,0,3074,3311, - 1,0,0,0,3075,3076,7,48,0,0,3076,3079,5,2,0,0,3077,3080,3,246,123, - 0,3078,3080,3,342,171,0,3079,3077,1,0,0,0,3079,3078,1,0,0,0,3080, - 3081,1,0,0,0,3081,3082,5,4,0,0,3082,3083,3,244,122,0,3083,3084,5, - 4,0,0,3084,3085,3,244,122,0,3085,3086,5,3,0,0,3086,3311,1,0,0,0, - 3087,3089,5,35,0,0,3088,3090,3,308,154,0,3089,3088,1,0,0,0,3090, - 3091,1,0,0,0,3091,3089,1,0,0,0,3091,3092,1,0,0,0,3092,3095,1,0,0, - 0,3093,3094,5,97,0,0,3094,3096,3,232,116,0,3095,3093,1,0,0,0,3095, - 3096,1,0,0,0,3096,3097,1,0,0,0,3097,3098,5,99,0,0,3098,3311,1,0, - 0,0,3099,3100,5,35,0,0,3100,3102,3,232,116,0,3101,3103,3,308,154, - 0,3102,3101,1,0,0,0,3103,3104,1,0,0,0,3104,3102,1,0,0,0,3104,3105, - 1,0,0,0,3105,3108,1,0,0,0,3106,3107,5,97,0,0,3107,3109,3,232,116, - 0,3108,3106,1,0,0,0,3108,3109,1,0,0,0,3109,3110,1,0,0,0,3110,3111, - 5,99,0,0,3111,3311,1,0,0,0,3112,3113,7,49,0,0,3113,3114,5,2,0,0, - 3114,3115,3,232,116,0,3115,3116,5,20,0,0,3116,3117,3,282,141,0,3117, - 3118,5,3,0,0,3118,3311,1,0,0,0,3119,3120,5,286,0,0,3120,3129,5,2, - 0,0,3121,3126,3,220,110,0,3122,3123,5,4,0,0,3123,3125,3,220,110, - 0,3124,3122,1,0,0,0,3125,3128,1,0,0,0,3126,3124,1,0,0,0,3126,3127, - 1,0,0,0,3127,3130,1,0,0,0,3128,3126,1,0,0,0,3129,3121,1,0,0,0,3129, - 3130,1,0,0,0,3130,3131,1,0,0,0,3131,3311,5,3,0,0,3132,3133,5,116, - 0,0,3133,3134,5,2,0,0,3134,3137,3,232,116,0,3135,3136,5,138,0,0, - 3136,3138,5,199,0,0,3137,3135,1,0,0,0,3137,3138,1,0,0,0,3138,3139, - 1,0,0,0,3139,3140,5,3,0,0,3140,3311,1,0,0,0,3141,3142,5,17,0,0,3142, - 3143,5,2,0,0,3143,3146,3,232,116,0,3144,3145,5,138,0,0,3145,3147, - 5,199,0,0,3146,3144,1,0,0,0,3146,3147,1,0,0,0,3147,3148,1,0,0,0, - 3148,3149,5,3,0,0,3149,3311,1,0,0,0,3150,3151,5,157,0,0,3151,3152, - 5,2,0,0,3152,3155,3,232,116,0,3153,3154,5,138,0,0,3154,3156,5,199, - 0,0,3155,3153,1,0,0,0,3155,3156,1,0,0,0,3156,3157,1,0,0,0,3157,3158, - 5,3,0,0,3158,3311,1,0,0,0,3159,3160,5,225,0,0,3160,3161,5,2,0,0, - 3161,3162,3,244,122,0,3162,3163,5,140,0,0,3163,3164,3,244,122,0, - 3164,3165,5,3,0,0,3165,3311,1,0,0,0,3166,3311,3,252,126,0,3167,3311, - 5,363,0,0,3168,3169,3,326,163,0,3169,3170,5,5,0,0,3170,3171,5,363, - 0,0,3171,3311,1,0,0,0,3172,3173,5,2,0,0,3173,3176,3,220,110,0,3174, - 3175,5,4,0,0,3175,3177,3,220,110,0,3176,3174,1,0,0,0,3177,3178,1, - 0,0,0,3178,3176,1,0,0,0,3178,3179,1,0,0,0,3179,3180,1,0,0,0,3180, - 3181,5,3,0,0,3181,3311,1,0,0,0,3182,3183,5,2,0,0,3183,3184,3,16, - 8,0,3184,3185,5,3,0,0,3185,3311,1,0,0,0,3186,3187,5,136,0,0,3187, - 3188,5,2,0,0,3188,3189,3,232,116,0,3189,3190,5,3,0,0,3190,3311,1, - 0,0,0,3191,3192,3,322,161,0,3192,3204,5,2,0,0,3193,3195,3,166,83, - 0,3194,3193,1,0,0,0,3194,3195,1,0,0,0,3195,3196,1,0,0,0,3196,3201, - 3,236,118,0,3197,3198,5,4,0,0,3198,3200,3,236,118,0,3199,3197,1, - 0,0,0,3200,3203,1,0,0,0,3201,3199,1,0,0,0,3201,3202,1,0,0,0,3202, - 3205,1,0,0,0,3203,3201,1,0,0,0,3204,3194,1,0,0,0,3204,3205,1,0,0, - 0,3205,3206,1,0,0,0,3206,3213,5,3,0,0,3207,3208,5,114,0,0,3208,3209, - 5,2,0,0,3209,3210,5,344,0,0,3210,3211,3,240,120,0,3211,3212,5,3, - 0,0,3212,3214,1,0,0,0,3213,3207,1,0,0,0,3213,3214,1,0,0,0,3214,3217, - 1,0,0,0,3215,3216,7,50,0,0,3216,3218,5,199,0,0,3217,3215,1,0,0,0, - 3217,3218,1,0,0,0,3218,3221,1,0,0,0,3219,3220,5,213,0,0,3220,3222, - 3,314,157,0,3221,3219,1,0,0,0,3221,3222,1,0,0,0,3222,3311,1,0,0, - 0,3223,3224,3,332,166,0,3224,3225,5,372,0,0,3225,3226,3,232,116, - 0,3226,3311,1,0,0,0,3227,3228,5,2,0,0,3228,3231,3,332,166,0,3229, - 3230,5,4,0,0,3230,3232,3,332,166,0,3231,3229,1,0,0,0,3232,3233,1, - 0,0,0,3233,3231,1,0,0,0,3233,3234,1,0,0,0,3234,3235,1,0,0,0,3235, - 3236,5,3,0,0,3236,3237,5,372,0,0,3237,3238,3,232,116,0,3238,3311, - 1,0,0,0,3239,3311,3,80,40,0,3240,3241,5,2,0,0,3241,3242,3,232,116, - 0,3242,3243,5,3,0,0,3243,3311,1,0,0,0,3244,3245,5,110,0,0,3245,3246, - 5,2,0,0,3246,3247,3,332,166,0,3247,3248,5,123,0,0,3248,3249,3,244, - 122,0,3249,3250,5,3,0,0,3250,3311,1,0,0,0,3251,3252,7,51,0,0,3252, - 3253,5,2,0,0,3253,3254,3,244,122,0,3254,3255,7,52,0,0,3255,3258, - 3,244,122,0,3256,3257,7,53,0,0,3257,3259,3,244,122,0,3258,3256,1, - 0,0,0,3258,3259,1,0,0,0,3259,3260,1,0,0,0,3260,3261,5,3,0,0,3261, - 3311,1,0,0,0,3262,3263,5,315,0,0,3263,3265,5,2,0,0,3264,3266,7,54, - 0,0,3265,3264,1,0,0,0,3265,3266,1,0,0,0,3266,3268,1,0,0,0,3267,3269, - 3,244,122,0,3268,3267,1,0,0,0,3268,3269,1,0,0,0,3269,3270,1,0,0, - 0,3270,3271,5,123,0,0,3271,3272,3,244,122,0,3272,3273,5,3,0,0,3273, - 3311,1,0,0,0,3274,3275,5,215,0,0,3275,3276,5,2,0,0,3276,3277,3,244, - 122,0,3277,3278,5,224,0,0,3278,3279,3,244,122,0,3279,3280,5,123, - 0,0,3280,3283,3,244,122,0,3281,3282,5,119,0,0,3282,3284,3,244,122, - 0,3283,3281,1,0,0,0,3283,3284,1,0,0,0,3284,3285,1,0,0,0,3285,3286, - 5,3,0,0,3286,3311,1,0,0,0,3287,3288,7,55,0,0,3288,3289,5,2,0,0,3289, - 3290,3,244,122,0,3290,3291,5,3,0,0,3291,3292,5,347,0,0,3292,3293, - 5,130,0,0,3293,3294,5,2,0,0,3294,3295,5,209,0,0,3295,3296,5,31,0, - 0,3296,3297,3,100,50,0,3297,3304,5,3,0,0,3298,3299,5,114,0,0,3299, - 3300,5,2,0,0,3300,3301,5,344,0,0,3301,3302,3,240,120,0,3302,3303, - 5,3,0,0,3303,3305,1,0,0,0,3304,3298,1,0,0,0,3304,3305,1,0,0,0,3305, - 3308,1,0,0,0,3306,3307,5,213,0,0,3307,3309,3,314,157,0,3308,3306, - 1,0,0,0,3308,3309,1,0,0,0,3309,3311,1,0,0,0,3310,3061,1,0,0,0,3310, - 3063,1,0,0,0,3310,3075,1,0,0,0,3310,3087,1,0,0,0,3310,3099,1,0,0, - 0,3310,3112,1,0,0,0,3310,3119,1,0,0,0,3310,3132,1,0,0,0,3310,3141, - 1,0,0,0,3310,3150,1,0,0,0,3310,3159,1,0,0,0,3310,3166,1,0,0,0,3310, - 3167,1,0,0,0,3310,3168,1,0,0,0,3310,3172,1,0,0,0,3310,3182,1,0,0, - 0,3310,3186,1,0,0,0,3310,3191,1,0,0,0,3310,3223,1,0,0,0,3310,3227, - 1,0,0,0,3310,3239,1,0,0,0,3310,3240,1,0,0,0,3310,3244,1,0,0,0,3310, - 3251,1,0,0,0,3310,3262,1,0,0,0,3310,3274,1,0,0,0,3310,3287,1,0,0, - 0,3311,3322,1,0,0,0,3312,3313,10,9,0,0,3313,3314,5,6,0,0,3314,3315, - 3,244,122,0,3315,3316,5,7,0,0,3316,3321,1,0,0,0,3317,3318,10,7,0, - 0,3318,3319,5,5,0,0,3319,3321,3,332,166,0,3320,3312,1,0,0,0,3320, - 3317,1,0,0,0,3321,3324,1,0,0,0,3322,3320,1,0,0,0,3322,3323,1,0,0, - 0,3323,249,1,0,0,0,3324,3322,1,0,0,0,3325,3333,5,71,0,0,3326,3333, - 5,303,0,0,3327,3333,5,304,0,0,3328,3333,5,305,0,0,3329,3333,5,149, - 0,0,3330,3333,5,133,0,0,3331,3333,3,332,166,0,3332,3325,1,0,0,0, - 3332,3326,1,0,0,0,3332,3327,1,0,0,0,3332,3328,1,0,0,0,3332,3329, - 1,0,0,0,3332,3330,1,0,0,0,3332,3331,1,0,0,0,3333,251,1,0,0,0,3334, - 3350,5,198,0,0,3335,3350,5,376,0,0,3336,3337,5,371,0,0,3337,3350, - 3,332,166,0,3338,3350,3,262,131,0,3339,3340,3,250,125,0,3340,3341, - 3,342,171,0,3341,3350,1,0,0,0,3342,3350,3,338,169,0,3343,3350,3, - 260,130,0,3344,3346,3,342,171,0,3345,3344,1,0,0,0,3346,3347,1,0, - 0,0,3347,3345,1,0,0,0,3347,3348,1,0,0,0,3348,3350,1,0,0,0,3349,3334, - 1,0,0,0,3349,3335,1,0,0,0,3349,3336,1,0,0,0,3349,3338,1,0,0,0,3349, - 3339,1,0,0,0,3349,3342,1,0,0,0,3349,3343,1,0,0,0,3349,3345,1,0,0, - 0,3350,253,1,0,0,0,3351,3352,7,56,0,0,3352,255,1,0,0,0,3353,3354, - 7,57,0,0,3354,257,1,0,0,0,3355,3356,7,58,0,0,3356,259,1,0,0,0,3357, - 3358,7,59,0,0,3358,261,1,0,0,0,3359,3362,5,149,0,0,3360,3363,3,264, - 132,0,3361,3363,3,268,134,0,3362,3360,1,0,0,0,3362,3361,1,0,0,0, - 3363,263,1,0,0,0,3364,3366,3,266,133,0,3365,3367,3,270,135,0,3366, - 3365,1,0,0,0,3366,3367,1,0,0,0,3367,265,1,0,0,0,3368,3369,3,272, - 136,0,3369,3370,3,274,137,0,3370,3372,1,0,0,0,3371,3368,1,0,0,0, - 3372,3373,1,0,0,0,3373,3371,1,0,0,0,3373,3374,1,0,0,0,3374,267,1, - 0,0,0,3375,3378,3,270,135,0,3376,3379,3,266,133,0,3377,3379,3,270, - 135,0,3378,3376,1,0,0,0,3378,3377,1,0,0,0,3378,3379,1,0,0,0,3379, - 269,1,0,0,0,3380,3381,3,272,136,0,3381,3382,3,276,138,0,3382,3383, - 5,309,0,0,3383,3384,3,276,138,0,3384,271,1,0,0,0,3385,3387,7,60, - 0,0,3386,3385,1,0,0,0,3386,3387,1,0,0,0,3387,3391,1,0,0,0,3388,3392, - 5,382,0,0,3389,3392,5,384,0,0,3390,3392,3,342,171,0,3391,3388,1, - 0,0,0,3391,3389,1,0,0,0,3391,3390,1,0,0,0,3392,273,1,0,0,0,3393, - 3394,7,61,0,0,3394,275,1,0,0,0,3395,3396,7,62,0,0,3396,277,1,0,0, - 0,3397,3401,5,116,0,0,3398,3399,5,9,0,0,3399,3401,3,328,164,0,3400, - 3397,1,0,0,0,3400,3398,1,0,0,0,3401,279,1,0,0,0,3402,3433,5,27,0, - 0,3403,3433,5,308,0,0,3404,3433,5,32,0,0,3405,3433,5,276,0,0,3406, - 3433,5,272,0,0,3407,3433,5,150,0,0,3408,3433,5,151,0,0,3409,3433, - 5,25,0,0,3410,3433,5,174,0,0,3411,3433,5,117,0,0,3412,3433,5,234, - 0,0,3413,3433,5,95,0,0,3414,3433,5,71,0,0,3415,3433,5,303,0,0,3416, - 3433,5,305,0,0,3417,3433,5,304,0,0,3418,3433,5,285,0,0,3419,3433, - 5,41,0,0,3420,3433,5,40,0,0,3421,3433,5,334,0,0,3422,3433,5,26,0, - 0,3423,3433,5,80,0,0,3424,3433,5,79,0,0,3425,3433,5,200,0,0,3426, - 3433,5,340,0,0,3427,3433,5,149,0,0,3428,3433,5,19,0,0,3429,3433, - 5,286,0,0,3430,3433,5,177,0,0,3431,3433,3,332,166,0,3432,3402,1, - 0,0,0,3432,3403,1,0,0,0,3432,3404,1,0,0,0,3432,3405,1,0,0,0,3432, - 3406,1,0,0,0,3432,3407,1,0,0,0,3432,3408,1,0,0,0,3432,3409,1,0,0, - 0,3432,3410,1,0,0,0,3432,3411,1,0,0,0,3432,3412,1,0,0,0,3432,3413, - 1,0,0,0,3432,3414,1,0,0,0,3432,3415,1,0,0,0,3432,3416,1,0,0,0,3432, - 3417,1,0,0,0,3432,3418,1,0,0,0,3432,3419,1,0,0,0,3432,3420,1,0,0, - 0,3432,3421,1,0,0,0,3432,3422,1,0,0,0,3432,3423,1,0,0,0,3432,3424, - 1,0,0,0,3432,3425,1,0,0,0,3432,3426,1,0,0,0,3432,3427,1,0,0,0,3432, - 3428,1,0,0,0,3432,3429,1,0,0,0,3432,3430,1,0,0,0,3432,3431,1,0,0, - 0,3433,281,1,0,0,0,3434,3435,5,19,0,0,3435,3436,5,356,0,0,3436,3437, - 3,282,141,0,3437,3438,5,358,0,0,3438,3488,1,0,0,0,3439,3440,5,177, - 0,0,3440,3441,5,356,0,0,3441,3442,3,282,141,0,3442,3443,5,4,0,0, - 3443,3444,3,282,141,0,3444,3445,5,358,0,0,3445,3488,1,0,0,0,3446, - 3460,5,286,0,0,3447,3456,5,356,0,0,3448,3453,3,306,153,0,3449,3450, - 5,4,0,0,3450,3452,3,306,153,0,3451,3449,1,0,0,0,3452,3455,1,0,0, - 0,3453,3451,1,0,0,0,3453,3454,1,0,0,0,3454,3457,1,0,0,0,3455,3453, - 1,0,0,0,3456,3448,1,0,0,0,3456,3457,1,0,0,0,3457,3458,1,0,0,0,3458, - 3461,5,358,0,0,3459,3461,5,354,0,0,3460,3447,1,0,0,0,3460,3459,1, - 0,0,0,3461,3488,1,0,0,0,3462,3463,5,149,0,0,3463,3466,7,63,0,0,3464, - 3465,5,309,0,0,3465,3467,5,186,0,0,3466,3464,1,0,0,0,3466,3467,1, - 0,0,0,3467,3488,1,0,0,0,3468,3469,5,149,0,0,3469,3472,7,64,0,0,3470, - 3471,5,309,0,0,3471,3473,7,65,0,0,3472,3470,1,0,0,0,3472,3473,1, - 0,0,0,3473,3488,1,0,0,0,3474,3485,3,280,140,0,3475,3476,5,2,0,0, - 3476,3481,5,382,0,0,3477,3478,5,4,0,0,3478,3480,5,382,0,0,3479,3477, - 1,0,0,0,3480,3483,1,0,0,0,3481,3479,1,0,0,0,3481,3482,1,0,0,0,3482, - 3484,1,0,0,0,3483,3481,1,0,0,0,3484,3486,5,3,0,0,3485,3475,1,0,0, - 0,3485,3486,1,0,0,0,3486,3488,1,0,0,0,3487,3434,1,0,0,0,3487,3439, - 1,0,0,0,3487,3446,1,0,0,0,3487,3462,1,0,0,0,3487,3468,1,0,0,0,3487, - 3474,1,0,0,0,3488,283,1,0,0,0,3489,3494,3,286,143,0,3490,3491,5, - 4,0,0,3491,3493,3,286,143,0,3492,3490,1,0,0,0,3493,3496,1,0,0,0, - 3494,3492,1,0,0,0,3494,3495,1,0,0,0,3495,285,1,0,0,0,3496,3494,1, - 0,0,0,3497,3498,3,84,42,0,3498,3502,3,282,141,0,3499,3501,3,292, - 146,0,3500,3499,1,0,0,0,3501,3504,1,0,0,0,3502,3500,1,0,0,0,3502, - 3503,1,0,0,0,3503,287,1,0,0,0,3504,3502,1,0,0,0,3505,3510,3,290, - 145,0,3506,3507,5,4,0,0,3507,3509,3,290,145,0,3508,3506,1,0,0,0, - 3509,3512,1,0,0,0,3510,3508,1,0,0,0,3510,3511,1,0,0,0,3511,289,1, - 0,0,0,3512,3510,1,0,0,0,3513,3514,3,78,39,0,3514,3518,3,282,141, - 0,3515,3517,3,292,146,0,3516,3515,1,0,0,0,3517,3520,1,0,0,0,3518, - 3516,1,0,0,0,3518,3519,1,0,0,0,3519,291,1,0,0,0,3520,3518,1,0,0, - 0,3521,3522,5,197,0,0,3522,3529,5,198,0,0,3523,3524,5,82,0,0,3524, - 3529,3,232,116,0,3525,3526,5,51,0,0,3526,3529,3,342,171,0,3527,3529, - 3,278,139,0,3528,3521,1,0,0,0,3528,3523,1,0,0,0,3528,3525,1,0,0, - 0,3528,3527,1,0,0,0,3529,293,1,0,0,0,3530,3531,7,66,0,0,3531,3532, - 3,232,116,0,3532,295,1,0,0,0,3533,3538,3,298,149,0,3534,3535,5,4, - 0,0,3535,3537,3,298,149,0,3536,3534,1,0,0,0,3537,3540,1,0,0,0,3538, - 3536,1,0,0,0,3538,3539,1,0,0,0,3539,297,1,0,0,0,3540,3538,1,0,0, - 0,3541,3542,3,328,164,0,3542,3545,3,282,141,0,3543,3544,5,197,0, - 0,3544,3546,5,198,0,0,3545,3543,1,0,0,0,3545,3546,1,0,0,0,3546,3549, - 1,0,0,0,3547,3548,5,51,0,0,3548,3550,3,342,171,0,3549,3547,1,0,0, - 0,3549,3550,1,0,0,0,3550,299,1,0,0,0,3551,3556,3,302,151,0,3552, - 3553,5,4,0,0,3553,3555,3,302,151,0,3554,3552,1,0,0,0,3555,3558,1, - 0,0,0,3556,3554,1,0,0,0,3556,3557,1,0,0,0,3557,301,1,0,0,0,3558, - 3556,1,0,0,0,3559,3560,3,84,42,0,3560,3564,3,282,141,0,3561,3563, - 3,304,152,0,3562,3561,1,0,0,0,3563,3566,1,0,0,0,3564,3562,1,0,0, - 0,3564,3565,1,0,0,0,3565,303,1,0,0,0,3566,3564,1,0,0,0,3567,3568, - 5,197,0,0,3568,3581,5,198,0,0,3569,3570,5,82,0,0,3570,3581,3,232, - 116,0,3571,3572,5,127,0,0,3572,3573,5,12,0,0,3573,3574,5,20,0,0, - 3574,3575,5,2,0,0,3575,3576,3,232,116,0,3576,3577,5,3,0,0,3577,3581, - 1,0,0,0,3578,3579,5,51,0,0,3579,3581,3,342,171,0,3580,3567,1,0,0, - 0,3580,3569,1,0,0,0,3580,3571,1,0,0,0,3580,3578,1,0,0,0,3581,305, - 1,0,0,0,3582,3584,3,332,166,0,3583,3585,5,371,0,0,3584,3583,1,0, - 0,0,3584,3585,1,0,0,0,3585,3586,1,0,0,0,3586,3589,3,282,141,0,3587, - 3588,5,197,0,0,3588,3590,5,198,0,0,3589,3587,1,0,0,0,3589,3590,1, - 0,0,0,3590,3593,1,0,0,0,3591,3592,5,51,0,0,3592,3594,3,342,171,0, - 3593,3591,1,0,0,0,3593,3594,1,0,0,0,3594,307,1,0,0,0,3595,3596,5, - 343,0,0,3596,3597,3,232,116,0,3597,3598,5,300,0,0,3598,3599,3,232, - 116,0,3599,309,1,0,0,0,3600,3601,5,345,0,0,3601,3602,3,328,164,0, - 3602,3603,5,20,0,0,3603,3611,3,314,157,0,3604,3605,5,4,0,0,3605, - 3606,3,328,164,0,3606,3607,5,20,0,0,3607,3608,3,314,157,0,3608,3610, - 1,0,0,0,3609,3604,1,0,0,0,3610,3613,1,0,0,0,3611,3609,1,0,0,0,3611, - 3612,1,0,0,0,3612,311,1,0,0,0,3613,3611,1,0,0,0,3614,3615,5,351, - 0,0,3615,3616,5,31,0,0,3616,3617,3,82,41,0,3617,313,1,0,0,0,3618, - 3658,3,328,164,0,3619,3620,5,2,0,0,3620,3621,3,328,164,0,3621,3622, - 5,3,0,0,3622,3658,1,0,0,0,3623,3651,5,2,0,0,3624,3625,5,44,0,0,3625, - 3626,5,31,0,0,3626,3631,3,232,116,0,3627,3628,5,4,0,0,3628,3630, - 3,232,116,0,3629,3627,1,0,0,0,3630,3633,1,0,0,0,3631,3629,1,0,0, - 0,3631,3632,1,0,0,0,3632,3652,1,0,0,0,3633,3631,1,0,0,0,3634,3635, - 7,35,0,0,3635,3636,5,31,0,0,3636,3641,3,232,116,0,3637,3638,5,4, - 0,0,3638,3640,3,232,116,0,3639,3637,1,0,0,0,3640,3643,1,0,0,0,3641, - 3639,1,0,0,0,3641,3642,1,0,0,0,3642,3645,1,0,0,0,3643,3641,1,0,0, - 0,3644,3634,1,0,0,0,3644,3645,1,0,0,0,3645,3649,1,0,0,0,3646,3647, - 7,36,0,0,3647,3648,5,31,0,0,3648,3650,3,92,46,0,3649,3646,1,0,0, - 0,3649,3650,1,0,0,0,3650,3652,1,0,0,0,3651,3624,1,0,0,0,3651,3644, - 1,0,0,0,3652,3654,1,0,0,0,3653,3655,3,316,158,0,3654,3653,1,0,0, - 0,3654,3655,1,0,0,0,3655,3656,1,0,0,0,3656,3658,5,3,0,0,3657,3618, - 1,0,0,0,3657,3619,1,0,0,0,3657,3623,1,0,0,0,3658,315,1,0,0,0,3659, - 3660,7,67,0,0,3660,3668,3,318,159,0,3661,3662,7,67,0,0,3662,3663, - 5,24,0,0,3663,3664,3,318,159,0,3664,3665,5,14,0,0,3665,3666,3,318, - 159,0,3666,3668,1,0,0,0,3667,3659,1,0,0,0,3667,3661,1,0,0,0,3668, - 317,1,0,0,0,3669,3670,5,321,0,0,3670,3677,7,68,0,0,3671,3672,5,62, - 0,0,3672,3677,5,257,0,0,3673,3674,3,232,116,0,3674,3675,7,68,0,0, - 3675,3677,1,0,0,0,3676,3669,1,0,0,0,3676,3671,1,0,0,0,3676,3673, - 1,0,0,0,3677,319,1,0,0,0,3678,3683,3,326,163,0,3679,3680,5,4,0,0, - 3680,3682,3,326,163,0,3681,3679,1,0,0,0,3682,3685,1,0,0,0,3683,3681, - 1,0,0,0,3683,3684,1,0,0,0,3684,321,1,0,0,0,3685,3683,1,0,0,0,3686, - 3687,5,136,0,0,3687,3688,5,2,0,0,3688,3689,3,232,116,0,3689,3690, - 5,3,0,0,3690,3696,1,0,0,0,3691,3696,3,326,163,0,3692,3696,5,114, - 0,0,3693,3696,5,161,0,0,3694,3696,5,250,0,0,3695,3686,1,0,0,0,3695, - 3691,1,0,0,0,3695,3692,1,0,0,0,3695,3693,1,0,0,0,3695,3694,1,0,0, - 0,3696,323,1,0,0,0,3697,3698,3,326,163,0,3698,325,1,0,0,0,3699,3704, - 3,332,166,0,3700,3701,5,5,0,0,3701,3703,3,332,166,0,3702,3700,1, - 0,0,0,3703,3706,1,0,0,0,3704,3702,1,0,0,0,3704,3705,1,0,0,0,3705, - 327,1,0,0,0,3706,3704,1,0,0,0,3707,3708,3,332,166,0,3708,3709,3, - 330,165,0,3709,329,1,0,0,0,3710,3711,5,362,0,0,3711,3713,3,332,166, - 0,3712,3710,1,0,0,0,3713,3714,1,0,0,0,3714,3712,1,0,0,0,3714,3715, - 1,0,0,0,3715,3718,1,0,0,0,3716,3718,1,0,0,0,3717,3712,1,0,0,0,3717, - 3716,1,0,0,0,3718,331,1,0,0,0,3719,3722,3,334,167,0,3720,3722,3, - 346,173,0,3721,3719,1,0,0,0,3721,3720,1,0,0,0,3722,333,1,0,0,0,3723, - 3728,5,388,0,0,3724,3728,3,336,168,0,3725,3728,3,344,172,0,3726, - 3728,3,348,174,0,3727,3723,1,0,0,0,3727,3724,1,0,0,0,3727,3725,1, - 0,0,0,3727,3726,1,0,0,0,3728,335,1,0,0,0,3729,3730,7,69,0,0,3730, - 337,1,0,0,0,3731,3733,5,362,0,0,3732,3731,1,0,0,0,3732,3733,1,0, - 0,0,3733,3734,1,0,0,0,3734,3735,7,70,0,0,3735,339,1,0,0,0,3736,3737, - 5,319,0,0,3737,3750,3,282,141,0,3738,3739,5,51,0,0,3739,3750,3,342, - 171,0,3740,3750,3,278,139,0,3741,3742,7,71,0,0,3742,3743,5,197,0, - 0,3743,3750,5,198,0,0,3744,3745,5,269,0,0,3745,3746,5,82,0,0,3746, - 3750,3,232,116,0,3747,3748,5,96,0,0,3748,3750,5,82,0,0,3749,3736, - 1,0,0,0,3749,3738,1,0,0,0,3749,3740,1,0,0,0,3749,3741,1,0,0,0,3749, - 3744,1,0,0,0,3749,3747,1,0,0,0,3750,341,1,0,0,0,3751,3752,7,72,0, - 0,3752,343,1,0,0,0,3753,3754,7,73,0,0,3754,345,1,0,0,0,3755,3756, - 7,74,0,0,3756,347,1,0,0,0,3757,3758,7,75,0,0,3758,349,1,0,0,0,504, - 353,360,364,369,376,381,391,393,413,417,423,426,429,433,436,440, - 447,450,454,457,462,475,477,482,491,494,498,501,507,518,524,529, - 562,572,583,594,605,610,619,623,629,633,638,644,656,664,670,681, - 685,690,705,709,716,720,726,756,760,765,772,778,781,784,788,792, - 801,803,812,815,824,829,835,842,845,849,864,867,873,877,894,896, - 904,908,914,917,921,924,930,935,939,946,949,952,959,964,973,981, - 987,990,993,999,1003,1008,1011,1015,1017,1025,1033,1036,1043,1046, - 1049,1058,1063,1069,1074,1077,1081,1084,1088,1098,1103,1116,1119, - 1127,1133,1136,1139,1144,1152,1157,1163,1169,1172,1179,1186,1194, - 1206,1214,1241,1244,1250,1259,1268,1274,1279,1284,1291,1296,1301, - 1308,1316,1319,1325,1332,1336,1399,1407,1414,1422,1434,1439,1448, - 1456,1461,1463,1471,1476,1480,1483,1491,1496,1505,1510,1513,1518, - 1522,1527,1529,1534,1543,1551,1557,1566,1573,1582,1587,1590,1615, - 1617,1629,1636,1639,1646,1650,1656,1664,1671,1674,1682,1693,1704, - 1712,1718,1729,1736,1743,1755,1763,1769,1775,1778,1794,1803,1814, - 1819,1824,1829,1834,1837,1840,1844,1849,1856,1864,1873,1879,1885, - 1888,1890,1898,1908,1917,1921,1924,1928,1932,1940,1944,1947,1950, - 1953,1957,1961,1966,1970,1973,1976,1979,1983,1988,1992,1995,1998, - 2001,2003,2009,2016,2021,2024,2027,2031,2041,2045,2047,2050,2054, - 2060,2064,2075,2083,2085,2092,2096,2108,2115,2130,2135,2142,2158, - 2163,2176,2181,2189,2195,2199,2202,2205,2212,2215,2221,2230,2240, - 2255,2260,2262,2267,2276,2286,2291,2295,2300,2307,2312,2316,2319, - 2322,2336,2349,2354,2358,2361,2366,2371,2375,2378,2390,2401,2414, - 2425,2430,2433,2437,2440,2452,2461,2464,2469,2476,2479,2485,2491, - 2493,2496,2501,2505,2511,2515,2518,2523,2526,2531,2533,2539,2544, - 2551,2554,2572,2574,2577,2588,2597,2604,2612,2620,2625,2628,2631, - 2639,2647,2657,2669,2672,2677,2682,2689,2696,2698,2711,2717,2719, - 2728,2730,2738,2742,2745,2749,2751,2760,2772,2774,2781,2788,2794, - 2800,2802,2809,2817,2825,2831,2836,2843,2849,2852,2856,2858,2865, - 2874,2881,2891,2896,2900,2910,2917,2930,2932,2940,2942,2946,2954, - 2963,2969,2977,2982,2994,2999,3002,3008,3012,3017,3022,3027,3033, - 3054,3056,3067,3079,3091,3095,3104,3108,3126,3129,3137,3146,3155, - 3178,3194,3201,3204,3213,3217,3221,3233,3258,3265,3268,3283,3304, - 3308,3310,3320,3322,3332,3347,3349,3362,3366,3373,3378,3386,3391, - 3400,3432,3453,3456,3460,3466,3472,3481,3485,3487,3494,3502,3510, - 3518,3528,3538,3545,3549,3556,3564,3580,3584,3589,3593,3611,3631, - 3641,3644,3649,3651,3654,3657,3667,3676,3683,3695,3704,3714,3717, - 3721,3727,3732,3749 + 1,0,0,0,2503,2509,3,192,96,0,2504,2508,3,170,85,0,2505,2508,3,144, + 72,0,2506,2508,3,150,75,0,2507,2504,1,0,0,0,2507,2505,1,0,0,0,2507, + 2506,1,0,0,0,2508,2511,1,0,0,0,2509,2507,1,0,0,0,2509,2510,1,0,0, + 0,2510,2513,1,0,0,0,2511,2509,1,0,0,0,2512,2499,1,0,0,0,2512,2501, + 1,0,0,0,2513,169,1,0,0,0,2514,2515,3,172,86,0,2515,2517,5,155,0, + 0,2516,2518,5,158,0,0,2517,2516,1,0,0,0,2517,2518,1,0,0,0,2518,2519, + 1,0,0,0,2519,2521,3,192,96,0,2520,2522,3,174,87,0,2521,2520,1,0, + 0,0,2521,2522,1,0,0,0,2522,2532,1,0,0,0,2523,2524,5,194,0,0,2524, + 2525,3,172,86,0,2525,2527,5,155,0,0,2526,2528,5,158,0,0,2527,2526, + 1,0,0,0,2527,2528,1,0,0,0,2528,2529,1,0,0,0,2529,2530,3,192,96,0, + 2530,2532,1,0,0,0,2531,2514,1,0,0,0,2531,2523,1,0,0,0,2532,171,1, + 0,0,0,2533,2535,5,144,0,0,2534,2533,1,0,0,0,2534,2535,1,0,0,0,2535, + 2550,1,0,0,0,2536,2550,5,60,0,0,2537,2539,5,161,0,0,2538,2540,5, + 211,0,0,2539,2538,1,0,0,0,2539,2540,1,0,0,0,2540,2550,1,0,0,0,2541, + 2543,5,161,0,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2544,1,0, + 0,0,2544,2550,7,32,0,0,2545,2547,7,33,0,0,2546,2548,5,211,0,0,2547, + 2546,1,0,0,0,2547,2548,1,0,0,0,2548,2550,1,0,0,0,2549,2534,1,0,0, + 0,2549,2536,1,0,0,0,2549,2537,1,0,0,0,2549,2542,1,0,0,0,2549,2545, + 1,0,0,0,2550,173,1,0,0,0,2551,2552,5,203,0,0,2552,2556,3,256,128, + 0,2553,2554,5,332,0,0,2554,2556,3,180,90,0,2555,2551,1,0,0,0,2555, + 2553,1,0,0,0,2556,175,1,0,0,0,2557,2558,5,295,0,0,2558,2560,5,2, + 0,0,2559,2561,3,178,89,0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561, + 2562,1,0,0,0,2562,2567,5,3,0,0,2563,2564,5,243,0,0,2564,2565,5,2, + 0,0,2565,2566,5,382,0,0,2566,2568,5,3,0,0,2567,2563,1,0,0,0,2567, + 2568,1,0,0,0,2568,177,1,0,0,0,2569,2571,5,362,0,0,2570,2569,1,0, + 0,0,2570,2571,1,0,0,0,2571,2572,1,0,0,0,2572,2573,7,34,0,0,2573, + 2594,5,222,0,0,2574,2575,3,248,124,0,2575,2576,5,258,0,0,2576,2594, + 1,0,0,0,2577,2578,5,29,0,0,2578,2579,5,382,0,0,2579,2580,5,210,0, + 0,2580,2581,5,201,0,0,2581,2590,5,382,0,0,2582,2588,5,203,0,0,2583, + 2589,3,348,174,0,2584,2585,3,342,171,0,2585,2586,5,2,0,0,2586,2587, + 5,3,0,0,2587,2589,1,0,0,0,2588,2583,1,0,0,0,2588,2584,1,0,0,0,2589, + 2591,1,0,0,0,2590,2582,1,0,0,0,2590,2591,1,0,0,0,2591,2594,1,0,0, + 0,2592,2594,3,248,124,0,2593,2570,1,0,0,0,2593,2574,1,0,0,0,2593, + 2577,1,0,0,0,2593,2592,1,0,0,0,2594,179,1,0,0,0,2595,2596,5,2,0, + 0,2596,2597,3,182,91,0,2597,2598,5,3,0,0,2598,181,1,0,0,0,2599,2604, + 3,344,172,0,2600,2601,5,4,0,0,2601,2603,3,344,172,0,2602,2600,1, + 0,0,0,2603,2606,1,0,0,0,2604,2602,1,0,0,0,2604,2605,1,0,0,0,2605, + 183,1,0,0,0,2606,2604,1,0,0,0,2607,2608,5,2,0,0,2608,2613,3,186, + 93,0,2609,2610,5,4,0,0,2610,2612,3,186,93,0,2611,2609,1,0,0,0,2612, + 2615,1,0,0,0,2613,2611,1,0,0,0,2613,2614,1,0,0,0,2614,2616,1,0,0, + 0,2615,2613,1,0,0,0,2616,2617,5,3,0,0,2617,185,1,0,0,0,2618,2620, + 3,344,172,0,2619,2621,7,25,0,0,2620,2619,1,0,0,0,2620,2621,1,0,0, + 0,2621,187,1,0,0,0,2622,2623,5,2,0,0,2623,2628,3,190,95,0,2624,2625, + 5,4,0,0,2625,2627,3,190,95,0,2626,2624,1,0,0,0,2627,2630,1,0,0,0, + 2628,2626,1,0,0,0,2628,2629,1,0,0,0,2629,2631,1,0,0,0,2630,2628, + 1,0,0,0,2631,2632,5,3,0,0,2632,189,1,0,0,0,2633,2636,3,84,42,0,2634, + 2635,5,51,0,0,2635,2637,3,358,179,0,2636,2634,1,0,0,0,2636,2637, + 1,0,0,0,2637,191,1,0,0,0,2638,2642,3,72,36,0,2639,2642,3,76,38,0, + 2640,2642,3,86,43,0,2641,2638,1,0,0,0,2641,2639,1,0,0,0,2641,2640, + 1,0,0,0,2642,2644,1,0,0,0,2643,2645,3,134,67,0,2644,2643,1,0,0,0, + 2644,2645,1,0,0,0,2645,2647,1,0,0,0,2646,2648,3,176,88,0,2647,2646, + 1,0,0,0,2647,2648,1,0,0,0,2648,2649,1,0,0,0,2649,2650,3,212,106, + 0,2650,2670,1,0,0,0,2651,2653,3,194,97,0,2652,2654,3,176,88,0,2653, + 2652,1,0,0,0,2653,2654,1,0,0,0,2654,2655,1,0,0,0,2655,2656,3,212, + 106,0,2656,2670,1,0,0,0,2657,2658,5,2,0,0,2658,2659,3,168,84,0,2659, + 2661,5,3,0,0,2660,2662,3,176,88,0,2661,2660,1,0,0,0,2661,2662,1, + 0,0,0,2662,2663,1,0,0,0,2663,2664,3,212,106,0,2664,2670,1,0,0,0, + 2665,2666,3,196,98,0,2666,2667,3,212,106,0,2667,2670,1,0,0,0,2668, + 2670,3,208,104,0,2669,2641,1,0,0,0,2669,2651,1,0,0,0,2669,2657,1, + 0,0,0,2669,2665,1,0,0,0,2669,2668,1,0,0,0,2670,193,1,0,0,0,2671, + 2672,5,2,0,0,2672,2673,3,16,8,0,2673,2674,5,3,0,0,2674,195,1,0,0, + 0,2675,2676,5,333,0,0,2676,2681,3,248,124,0,2677,2678,5,4,0,0,2678, + 2680,3,248,124,0,2679,2677,1,0,0,0,2680,2683,1,0,0,0,2681,2679,1, + 0,0,0,2681,2682,1,0,0,0,2682,197,1,0,0,0,2683,2681,1,0,0,0,2684, + 2685,5,293,0,0,2685,2687,3,72,36,0,2686,2688,3,200,100,0,2687,2686, + 1,0,0,0,2687,2688,1,0,0,0,2688,2704,1,0,0,0,2689,2690,5,293,0,0, + 2690,2691,5,2,0,0,2691,2692,3,72,36,0,2692,2694,5,3,0,0,2693,2695, + 3,200,100,0,2694,2693,1,0,0,0,2694,2695,1,0,0,0,2695,2704,1,0,0, + 0,2696,2697,5,293,0,0,2697,2698,5,2,0,0,2698,2699,3,16,8,0,2699, + 2701,5,3,0,0,2700,2702,3,200,100,0,2701,2700,1,0,0,0,2701,2702,1, + 0,0,0,2702,2704,1,0,0,0,2703,2684,1,0,0,0,2703,2689,1,0,0,0,2703, + 2696,1,0,0,0,2704,199,1,0,0,0,2705,2706,5,346,0,0,2706,2707,5,274, + 0,0,2707,2725,5,217,0,0,2708,2709,7,35,0,0,2709,2722,5,31,0,0,2710, + 2711,5,2,0,0,2711,2716,3,248,124,0,2712,2713,5,4,0,0,2713,2715,3, + 248,124,0,2714,2712,1,0,0,0,2715,2718,1,0,0,0,2716,2714,1,0,0,0, + 2716,2717,1,0,0,0,2717,2719,1,0,0,0,2718,2716,1,0,0,0,2719,2720, + 5,3,0,0,2720,2723,1,0,0,0,2721,2723,3,248,124,0,2722,2710,1,0,0, + 0,2722,2721,1,0,0,0,2723,2725,1,0,0,0,2724,2705,1,0,0,0,2724,2708, + 1,0,0,0,2725,2735,1,0,0,0,2726,2727,7,36,0,0,2727,2733,5,31,0,0, + 2728,2729,5,2,0,0,2729,2730,3,92,46,0,2730,2731,5,3,0,0,2731,2734, + 1,0,0,0,2732,2734,3,100,50,0,2733,2728,1,0,0,0,2733,2732,1,0,0,0, + 2734,2736,1,0,0,0,2735,2726,1,0,0,0,2735,2736,1,0,0,0,2736,201,1, + 0,0,0,2737,2738,3,348,174,0,2738,2739,5,373,0,0,2739,2740,3,198, + 99,0,2740,203,1,0,0,0,2741,2744,3,198,99,0,2742,2744,3,202,101,0, + 2743,2741,1,0,0,0,2743,2742,1,0,0,0,2744,205,1,0,0,0,2745,2748,3, + 204,102,0,2746,2748,3,252,126,0,2747,2745,1,0,0,0,2747,2746,1,0, + 0,0,2748,207,1,0,0,0,2749,2750,3,210,105,0,2750,2751,3,212,106,0, + 2751,209,1,0,0,0,2752,2753,3,338,169,0,2753,2762,5,2,0,0,2754,2759, + 3,206,103,0,2755,2756,5,4,0,0,2756,2758,3,206,103,0,2757,2755,1, + 0,0,0,2758,2761,1,0,0,0,2759,2757,1,0,0,0,2759,2760,1,0,0,0,2760, + 2763,1,0,0,0,2761,2759,1,0,0,0,2762,2754,1,0,0,0,2762,2763,1,0,0, + 0,2763,2764,1,0,0,0,2764,2765,5,3,0,0,2765,211,1,0,0,0,2766,2768, + 5,20,0,0,2767,2766,1,0,0,0,2767,2768,1,0,0,0,2768,2769,1,0,0,0,2769, + 2771,3,350,175,0,2770,2772,3,180,90,0,2771,2770,1,0,0,0,2771,2772, + 1,0,0,0,2772,2774,1,0,0,0,2773,2767,1,0,0,0,2773,2774,1,0,0,0,2774, + 213,1,0,0,0,2775,2776,5,257,0,0,2776,2777,5,121,0,0,2777,2778,5, + 266,0,0,2778,2782,3,358,179,0,2779,2780,5,346,0,0,2780,2781,5,267, + 0,0,2781,2783,3,42,21,0,2782,2779,1,0,0,0,2782,2783,1,0,0,0,2783, + 2825,1,0,0,0,2784,2785,5,257,0,0,2785,2786,5,121,0,0,2786,2796,5, + 85,0,0,2787,2788,5,113,0,0,2788,2789,5,299,0,0,2789,2790,5,31,0, + 0,2790,2794,3,358,179,0,2791,2792,5,101,0,0,2792,2793,5,31,0,0,2793, + 2795,3,358,179,0,2794,2791,1,0,0,0,2794,2795,1,0,0,0,2795,2797,1, + 0,0,0,2796,2787,1,0,0,0,2796,2797,1,0,0,0,2797,2803,1,0,0,0,2798, + 2799,5,48,0,0,2799,2800,5,154,0,0,2800,2801,5,299,0,0,2801,2802, + 5,31,0,0,2802,2804,3,358,179,0,2803,2798,1,0,0,0,2803,2804,1,0,0, + 0,2804,2810,1,0,0,0,2805,2806,5,177,0,0,2806,2807,5,156,0,0,2807, + 2808,5,299,0,0,2808,2809,5,31,0,0,2809,2811,3,358,179,0,2810,2805, + 1,0,0,0,2810,2811,1,0,0,0,2811,2816,1,0,0,0,2812,2813,5,166,0,0, + 2813,2814,5,299,0,0,2814,2815,5,31,0,0,2815,2817,3,358,179,0,2816, + 2812,1,0,0,0,2816,2817,1,0,0,0,2817,2822,1,0,0,0,2818,2819,5,198, + 0,0,2819,2820,5,83,0,0,2820,2821,5,20,0,0,2821,2823,3,358,179,0, + 2822,2818,1,0,0,0,2822,2823,1,0,0,0,2823,2825,1,0,0,0,2824,2775, + 1,0,0,0,2824,2784,1,0,0,0,2825,215,1,0,0,0,2826,2831,3,218,109,0, + 2827,2828,5,4,0,0,2828,2830,3,218,109,0,2829,2827,1,0,0,0,2830,2833, + 1,0,0,0,2831,2829,1,0,0,0,2831,2832,1,0,0,0,2832,217,1,0,0,0,2833, + 2831,1,0,0,0,2834,2839,3,344,172,0,2835,2836,5,5,0,0,2836,2838,3, + 344,172,0,2837,2835,1,0,0,0,2838,2841,1,0,0,0,2839,2837,1,0,0,0, + 2839,2840,1,0,0,0,2840,219,1,0,0,0,2841,2839,1,0,0,0,2842,2847,3, + 222,111,0,2843,2844,5,4,0,0,2844,2846,3,222,111,0,2845,2843,1,0, + 0,0,2846,2849,1,0,0,0,2847,2845,1,0,0,0,2847,2848,1,0,0,0,2848,221, + 1,0,0,0,2849,2847,1,0,0,0,2850,2853,3,218,109,0,2851,2852,5,207, + 0,0,2852,2854,3,42,21,0,2853,2851,1,0,0,0,2853,2854,1,0,0,0,2854, + 223,1,0,0,0,2855,2856,3,344,172,0,2856,2857,5,5,0,0,2857,2859,1, + 0,0,0,2858,2855,1,0,0,0,2858,2859,1,0,0,0,2859,2860,1,0,0,0,2860, + 2861,3,344,172,0,2861,225,1,0,0,0,2862,2863,3,344,172,0,2863,2864, + 5,5,0,0,2864,2866,1,0,0,0,2865,2862,1,0,0,0,2865,2866,1,0,0,0,2866, + 2867,1,0,0,0,2867,2868,3,344,172,0,2868,227,1,0,0,0,2869,2870,3, + 78,39,0,2870,229,1,0,0,0,2871,2872,3,248,124,0,2872,231,1,0,0,0, + 2873,2874,3,342,171,0,2874,2875,5,5,0,0,2875,2877,1,0,0,0,2876,2873, + 1,0,0,0,2877,2880,1,0,0,0,2878,2876,1,0,0,0,2878,2879,1,0,0,0,2879, + 2881,1,0,0,0,2880,2878,1,0,0,0,2881,2882,5,363,0,0,2882,233,1,0, + 0,0,2883,2887,3,232,116,0,2884,2887,3,228,114,0,2885,2887,3,230, + 115,0,2886,2883,1,0,0,0,2886,2884,1,0,0,0,2886,2885,1,0,0,0,2887, + 2895,1,0,0,0,2888,2890,5,20,0,0,2889,2888,1,0,0,0,2889,2890,1,0, + 0,0,2890,2893,1,0,0,0,2891,2894,3,344,172,0,2892,2894,3,180,90,0, + 2893,2891,1,0,0,0,2893,2892,1,0,0,0,2894,2896,1,0,0,0,2895,2889, + 1,0,0,0,2895,2896,1,0,0,0,2896,235,1,0,0,0,2897,2902,3,234,117,0, + 2898,2899,5,4,0,0,2899,2901,3,234,117,0,2900,2898,1,0,0,0,2901,2904, + 1,0,0,0,2902,2900,1,0,0,0,2902,2903,1,0,0,0,2903,237,1,0,0,0,2904, + 2902,1,0,0,0,2905,2906,3,236,118,0,2906,239,1,0,0,0,2907,2908,5, + 2,0,0,2908,2913,3,242,121,0,2909,2910,5,4,0,0,2910,2912,3,242,121, + 0,2911,2909,1,0,0,0,2912,2915,1,0,0,0,2913,2911,1,0,0,0,2913,2914, + 1,0,0,0,2914,2916,1,0,0,0,2915,2913,1,0,0,0,2916,2917,5,3,0,0,2917, + 241,1,0,0,0,2918,2921,3,244,122,0,2919,2921,3,314,157,0,2920,2918, + 1,0,0,0,2920,2919,1,0,0,0,2921,243,1,0,0,0,2922,2936,3,342,171,0, + 2923,2924,3,348,174,0,2924,2925,5,2,0,0,2925,2930,3,246,123,0,2926, + 2927,5,4,0,0,2927,2929,3,246,123,0,2928,2926,1,0,0,0,2929,2932,1, + 0,0,0,2930,2928,1,0,0,0,2930,2931,1,0,0,0,2931,2933,1,0,0,0,2932, + 2930,1,0,0,0,2933,2934,5,3,0,0,2934,2936,1,0,0,0,2935,2922,1,0,0, + 0,2935,2923,1,0,0,0,2936,245,1,0,0,0,2937,2940,3,342,171,0,2938, + 2940,3,268,134,0,2939,2937,1,0,0,0,2939,2938,1,0,0,0,2940,247,1, + 0,0,0,2941,2942,3,256,128,0,2942,249,1,0,0,0,2943,2944,3,348,174, + 0,2944,2945,5,373,0,0,2945,2946,3,248,124,0,2946,251,1,0,0,0,2947, + 2950,3,248,124,0,2948,2950,3,250,125,0,2949,2947,1,0,0,0,2949,2948, + 1,0,0,0,2950,253,1,0,0,0,2951,2956,3,248,124,0,2952,2953,5,4,0,0, + 2953,2955,3,248,124,0,2954,2952,1,0,0,0,2955,2958,1,0,0,0,2956,2954, + 1,0,0,0,2956,2957,1,0,0,0,2957,255,1,0,0,0,2958,2956,1,0,0,0,2959, + 2960,6,128,-1,0,2960,2961,7,37,0,0,2961,2972,3,256,128,5,2962,2963, + 5,105,0,0,2963,2964,5,2,0,0,2964,2965,3,16,8,0,2965,2966,5,3,0,0, + 2966,2972,1,0,0,0,2967,2969,3,260,130,0,2968,2970,3,258,129,0,2969, + 2968,1,0,0,0,2969,2970,1,0,0,0,2970,2972,1,0,0,0,2971,2959,1,0,0, + 0,2971,2962,1,0,0,0,2971,2967,1,0,0,0,2972,2981,1,0,0,0,2973,2974, + 10,2,0,0,2974,2975,5,14,0,0,2975,2980,3,256,128,3,2976,2977,10,1, + 0,0,2977,2978,5,208,0,0,2978,2980,3,256,128,2,2979,2973,1,0,0,0, + 2979,2976,1,0,0,0,2980,2983,1,0,0,0,2981,2979,1,0,0,0,2981,2982, + 1,0,0,0,2982,257,1,0,0,0,2983,2981,1,0,0,0,2984,2986,5,197,0,0,2985, + 2984,1,0,0,0,2985,2986,1,0,0,0,2986,2987,1,0,0,0,2987,2988,5,24, + 0,0,2988,2989,3,260,130,0,2989,2990,5,14,0,0,2990,2991,3,260,130, + 0,2991,3067,1,0,0,0,2992,2994,5,197,0,0,2993,2992,1,0,0,0,2993,2994, + 1,0,0,0,2994,2995,1,0,0,0,2995,2996,5,140,0,0,2996,2997,5,2,0,0, + 2997,3002,3,248,124,0,2998,2999,5,4,0,0,2999,3001,3,248,124,0,3000, + 2998,1,0,0,0,3001,3004,1,0,0,0,3002,3000,1,0,0,0,3002,3003,1,0,0, + 0,3003,3005,1,0,0,0,3004,3002,1,0,0,0,3005,3006,5,3,0,0,3006,3067, + 1,0,0,0,3007,3009,5,197,0,0,3008,3007,1,0,0,0,3008,3009,1,0,0,0, + 3009,3010,1,0,0,0,3010,3011,5,140,0,0,3011,3012,5,2,0,0,3012,3013, + 3,16,8,0,3013,3014,5,3,0,0,3014,3067,1,0,0,0,3015,3017,5,197,0,0, + 3016,3015,1,0,0,0,3016,3017,1,0,0,0,3017,3018,1,0,0,0,3018,3019, + 7,38,0,0,3019,3067,3,260,130,0,3020,3022,5,197,0,0,3021,3020,1,0, + 0,0,3021,3022,1,0,0,0,3022,3023,1,0,0,0,3023,3024,7,39,0,0,3024, + 3038,7,40,0,0,3025,3026,5,2,0,0,3026,3039,5,3,0,0,3027,3028,5,2, + 0,0,3028,3033,3,248,124,0,3029,3030,5,4,0,0,3030,3032,3,248,124, + 0,3031,3029,1,0,0,0,3032,3035,1,0,0,0,3033,3031,1,0,0,0,3033,3034, + 1,0,0,0,3034,3036,1,0,0,0,3035,3033,1,0,0,0,3036,3037,5,3,0,0,3037, + 3039,1,0,0,0,3038,3025,1,0,0,0,3038,3027,1,0,0,0,3039,3067,1,0,0, + 0,3040,3042,5,197,0,0,3041,3040,1,0,0,0,3041,3042,1,0,0,0,3042,3043, + 1,0,0,0,3043,3044,7,39,0,0,3044,3047,3,260,130,0,3045,3046,5,100, + 0,0,3046,3048,3,358,179,0,3047,3045,1,0,0,0,3047,3048,1,0,0,0,3048, + 3067,1,0,0,0,3049,3051,5,153,0,0,3050,3052,5,197,0,0,3051,3050,1, + 0,0,0,3051,3052,1,0,0,0,3052,3053,1,0,0,0,3053,3067,5,198,0,0,3054, + 3056,5,153,0,0,3055,3057,5,197,0,0,3056,3055,1,0,0,0,3056,3057,1, + 0,0,0,3057,3058,1,0,0,0,3058,3067,7,41,0,0,3059,3061,5,153,0,0,3060, + 3062,5,197,0,0,3061,3060,1,0,0,0,3061,3062,1,0,0,0,3062,3063,1,0, + 0,0,3063,3064,5,92,0,0,3064,3065,5,123,0,0,3065,3067,3,260,130,0, + 3066,2985,1,0,0,0,3066,2993,1,0,0,0,3066,3008,1,0,0,0,3066,3016, + 1,0,0,0,3066,3021,1,0,0,0,3066,3041,1,0,0,0,3066,3049,1,0,0,0,3066, + 3054,1,0,0,0,3066,3059,1,0,0,0,3067,259,1,0,0,0,3068,3069,6,130, + -1,0,3069,3073,3,264,132,0,3070,3071,7,42,0,0,3071,3073,3,260,130, + 7,3072,3068,1,0,0,0,3072,3070,1,0,0,0,3073,3095,1,0,0,0,3074,3075, + 10,6,0,0,3075,3076,7,43,0,0,3076,3094,3,260,130,7,3077,3078,10,5, + 0,0,3078,3079,7,44,0,0,3079,3094,3,260,130,6,3080,3081,10,4,0,0, + 3081,3082,5,367,0,0,3082,3094,3,260,130,5,3083,3084,10,3,0,0,3084, + 3085,5,370,0,0,3085,3094,3,260,130,4,3086,3087,10,2,0,0,3087,3088, + 5,368,0,0,3088,3094,3,260,130,3,3089,3090,10,1,0,0,3090,3091,3,270, + 135,0,3091,3092,3,260,130,2,3092,3094,1,0,0,0,3093,3074,1,0,0,0, + 3093,3077,1,0,0,0,3093,3080,1,0,0,0,3093,3083,1,0,0,0,3093,3086, + 1,0,0,0,3093,3089,1,0,0,0,3094,3097,1,0,0,0,3095,3093,1,0,0,0,3095, + 3096,1,0,0,0,3096,261,1,0,0,0,3097,3095,1,0,0,0,3098,3099,7,45,0, + 0,3099,263,1,0,0,0,3100,3101,6,132,-1,0,3101,3350,7,46,0,0,3102, + 3103,7,47,0,0,3103,3106,5,2,0,0,3104,3107,3,262,131,0,3105,3107, + 3,358,179,0,3106,3104,1,0,0,0,3106,3105,1,0,0,0,3107,3108,1,0,0, + 0,3108,3109,5,4,0,0,3109,3110,3,260,130,0,3110,3111,5,4,0,0,3111, + 3112,3,260,130,0,3112,3113,5,3,0,0,3113,3350,1,0,0,0,3114,3115,7, + 48,0,0,3115,3118,5,2,0,0,3116,3119,3,262,131,0,3117,3119,3,358,179, + 0,3118,3116,1,0,0,0,3118,3117,1,0,0,0,3119,3120,1,0,0,0,3120,3121, + 5,4,0,0,3121,3122,3,260,130,0,3122,3123,5,4,0,0,3123,3124,3,260, + 130,0,3124,3125,5,3,0,0,3125,3350,1,0,0,0,3126,3128,5,35,0,0,3127, + 3129,3,324,162,0,3128,3127,1,0,0,0,3129,3130,1,0,0,0,3130,3128,1, + 0,0,0,3130,3131,1,0,0,0,3131,3134,1,0,0,0,3132,3133,5,97,0,0,3133, + 3135,3,248,124,0,3134,3132,1,0,0,0,3134,3135,1,0,0,0,3135,3136,1, + 0,0,0,3136,3137,5,99,0,0,3137,3350,1,0,0,0,3138,3139,5,35,0,0,3139, + 3141,3,248,124,0,3140,3142,3,324,162,0,3141,3140,1,0,0,0,3142,3143, + 1,0,0,0,3143,3141,1,0,0,0,3143,3144,1,0,0,0,3144,3147,1,0,0,0,3145, + 3146,5,97,0,0,3146,3148,3,248,124,0,3147,3145,1,0,0,0,3147,3148, + 1,0,0,0,3148,3149,1,0,0,0,3149,3150,5,99,0,0,3150,3350,1,0,0,0,3151, + 3152,7,49,0,0,3152,3153,5,2,0,0,3153,3154,3,248,124,0,3154,3155, + 5,20,0,0,3155,3156,3,298,149,0,3156,3157,5,3,0,0,3157,3350,1,0,0, + 0,3158,3159,5,286,0,0,3159,3168,5,2,0,0,3160,3165,3,234,117,0,3161, + 3162,5,4,0,0,3162,3164,3,234,117,0,3163,3161,1,0,0,0,3164,3167,1, + 0,0,0,3165,3163,1,0,0,0,3165,3166,1,0,0,0,3166,3169,1,0,0,0,3167, + 3165,1,0,0,0,3168,3160,1,0,0,0,3168,3169,1,0,0,0,3169,3170,1,0,0, + 0,3170,3350,5,3,0,0,3171,3172,5,116,0,0,3172,3173,5,2,0,0,3173,3176, + 3,248,124,0,3174,3175,5,138,0,0,3175,3177,5,199,0,0,3176,3174,1, + 0,0,0,3176,3177,1,0,0,0,3177,3178,1,0,0,0,3178,3179,5,3,0,0,3179, + 3350,1,0,0,0,3180,3181,5,17,0,0,3181,3182,5,2,0,0,3182,3185,3,248, + 124,0,3183,3184,5,138,0,0,3184,3186,5,199,0,0,3185,3183,1,0,0,0, + 3185,3186,1,0,0,0,3186,3187,1,0,0,0,3187,3188,5,3,0,0,3188,3350, + 1,0,0,0,3189,3190,5,157,0,0,3190,3191,5,2,0,0,3191,3194,3,248,124, + 0,3192,3193,5,138,0,0,3193,3195,5,199,0,0,3194,3192,1,0,0,0,3194, + 3195,1,0,0,0,3195,3196,1,0,0,0,3196,3197,5,3,0,0,3197,3350,1,0,0, + 0,3198,3199,5,225,0,0,3199,3200,5,2,0,0,3200,3201,3,260,130,0,3201, + 3202,5,140,0,0,3202,3203,3,260,130,0,3203,3204,5,3,0,0,3204,3350, + 1,0,0,0,3205,3350,3,268,134,0,3206,3350,5,363,0,0,3207,3208,3,342, + 171,0,3208,3209,5,5,0,0,3209,3210,5,363,0,0,3210,3350,1,0,0,0,3211, + 3212,5,2,0,0,3212,3215,3,234,117,0,3213,3214,5,4,0,0,3214,3216,3, + 234,117,0,3215,3213,1,0,0,0,3216,3217,1,0,0,0,3217,3215,1,0,0,0, + 3217,3218,1,0,0,0,3218,3219,1,0,0,0,3219,3220,5,3,0,0,3220,3350, + 1,0,0,0,3221,3222,5,2,0,0,3222,3223,3,16,8,0,3223,3224,5,3,0,0,3224, + 3350,1,0,0,0,3225,3226,5,136,0,0,3226,3227,5,2,0,0,3227,3228,3,248, + 124,0,3228,3229,5,3,0,0,3229,3350,1,0,0,0,3230,3231,3,338,169,0, + 3231,3243,5,2,0,0,3232,3234,3,166,83,0,3233,3232,1,0,0,0,3233,3234, + 1,0,0,0,3234,3235,1,0,0,0,3235,3240,3,252,126,0,3236,3237,5,4,0, + 0,3237,3239,3,252,126,0,3238,3236,1,0,0,0,3239,3242,1,0,0,0,3240, + 3238,1,0,0,0,3240,3241,1,0,0,0,3241,3244,1,0,0,0,3242,3240,1,0,0, + 0,3243,3233,1,0,0,0,3243,3244,1,0,0,0,3244,3245,1,0,0,0,3245,3252, + 5,3,0,0,3246,3247,5,114,0,0,3247,3248,5,2,0,0,3248,3249,5,344,0, + 0,3249,3250,3,256,128,0,3250,3251,5,3,0,0,3251,3253,1,0,0,0,3252, + 3246,1,0,0,0,3252,3253,1,0,0,0,3253,3256,1,0,0,0,3254,3255,7,50, + 0,0,3255,3257,5,199,0,0,3256,3254,1,0,0,0,3256,3257,1,0,0,0,3257, + 3260,1,0,0,0,3258,3259,5,213,0,0,3259,3261,3,330,165,0,3260,3258, + 1,0,0,0,3260,3261,1,0,0,0,3261,3350,1,0,0,0,3262,3263,3,348,174, + 0,3263,3264,5,372,0,0,3264,3265,3,248,124,0,3265,3350,1,0,0,0,3266, + 3267,5,2,0,0,3267,3270,3,348,174,0,3268,3269,5,4,0,0,3269,3271,3, + 348,174,0,3270,3268,1,0,0,0,3271,3272,1,0,0,0,3272,3270,1,0,0,0, + 3272,3273,1,0,0,0,3273,3274,1,0,0,0,3274,3275,5,3,0,0,3275,3276, + 5,372,0,0,3276,3277,3,248,124,0,3277,3350,1,0,0,0,3278,3350,3,80, + 40,0,3279,3280,5,2,0,0,3280,3281,3,248,124,0,3281,3282,5,3,0,0,3282, + 3350,1,0,0,0,3283,3284,5,110,0,0,3284,3285,5,2,0,0,3285,3286,3,348, + 174,0,3286,3287,5,123,0,0,3287,3288,3,260,130,0,3288,3289,5,3,0, + 0,3289,3350,1,0,0,0,3290,3291,7,51,0,0,3291,3292,5,2,0,0,3292,3293, + 3,260,130,0,3293,3294,7,52,0,0,3294,3297,3,260,130,0,3295,3296,7, + 53,0,0,3296,3298,3,260,130,0,3297,3295,1,0,0,0,3297,3298,1,0,0,0, + 3298,3299,1,0,0,0,3299,3300,5,3,0,0,3300,3350,1,0,0,0,3301,3302, + 5,315,0,0,3302,3304,5,2,0,0,3303,3305,7,54,0,0,3304,3303,1,0,0,0, + 3304,3305,1,0,0,0,3305,3307,1,0,0,0,3306,3308,3,260,130,0,3307,3306, + 1,0,0,0,3307,3308,1,0,0,0,3308,3309,1,0,0,0,3309,3310,5,123,0,0, + 3310,3311,3,260,130,0,3311,3312,5,3,0,0,3312,3350,1,0,0,0,3313,3314, + 5,215,0,0,3314,3315,5,2,0,0,3315,3316,3,260,130,0,3316,3317,5,224, + 0,0,3317,3318,3,260,130,0,3318,3319,5,123,0,0,3319,3322,3,260,130, + 0,3320,3321,5,119,0,0,3321,3323,3,260,130,0,3322,3320,1,0,0,0,3322, + 3323,1,0,0,0,3323,3324,1,0,0,0,3324,3325,5,3,0,0,3325,3350,1,0,0, + 0,3326,3327,7,55,0,0,3327,3328,5,2,0,0,3328,3329,3,260,130,0,3329, + 3330,5,3,0,0,3330,3331,5,347,0,0,3331,3332,5,130,0,0,3332,3333,5, + 2,0,0,3333,3334,5,209,0,0,3334,3335,5,31,0,0,3335,3336,3,100,50, + 0,3336,3343,5,3,0,0,3337,3338,5,114,0,0,3338,3339,5,2,0,0,3339,3340, + 5,344,0,0,3340,3341,3,256,128,0,3341,3342,5,3,0,0,3342,3344,1,0, + 0,0,3343,3337,1,0,0,0,3343,3344,1,0,0,0,3344,3347,1,0,0,0,3345,3346, + 5,213,0,0,3346,3348,3,330,165,0,3347,3345,1,0,0,0,3347,3348,1,0, + 0,0,3348,3350,1,0,0,0,3349,3100,1,0,0,0,3349,3102,1,0,0,0,3349,3114, + 1,0,0,0,3349,3126,1,0,0,0,3349,3138,1,0,0,0,3349,3151,1,0,0,0,3349, + 3158,1,0,0,0,3349,3171,1,0,0,0,3349,3180,1,0,0,0,3349,3189,1,0,0, + 0,3349,3198,1,0,0,0,3349,3205,1,0,0,0,3349,3206,1,0,0,0,3349,3207, + 1,0,0,0,3349,3211,1,0,0,0,3349,3221,1,0,0,0,3349,3225,1,0,0,0,3349, + 3230,1,0,0,0,3349,3262,1,0,0,0,3349,3266,1,0,0,0,3349,3278,1,0,0, + 0,3349,3279,1,0,0,0,3349,3283,1,0,0,0,3349,3290,1,0,0,0,3349,3301, + 1,0,0,0,3349,3313,1,0,0,0,3349,3326,1,0,0,0,3350,3361,1,0,0,0,3351, + 3352,10,9,0,0,3352,3353,5,6,0,0,3353,3354,3,260,130,0,3354,3355, + 5,7,0,0,3355,3360,1,0,0,0,3356,3357,10,7,0,0,3357,3358,5,5,0,0,3358, + 3360,3,348,174,0,3359,3351,1,0,0,0,3359,3356,1,0,0,0,3360,3363,1, + 0,0,0,3361,3359,1,0,0,0,3361,3362,1,0,0,0,3362,265,1,0,0,0,3363, + 3361,1,0,0,0,3364,3372,5,71,0,0,3365,3372,5,303,0,0,3366,3372,5, + 304,0,0,3367,3372,5,305,0,0,3368,3372,5,149,0,0,3369,3372,5,133, + 0,0,3370,3372,3,348,174,0,3371,3364,1,0,0,0,3371,3365,1,0,0,0,3371, + 3366,1,0,0,0,3371,3367,1,0,0,0,3371,3368,1,0,0,0,3371,3369,1,0,0, + 0,3371,3370,1,0,0,0,3372,267,1,0,0,0,3373,3389,5,198,0,0,3374,3389, + 5,376,0,0,3375,3376,5,371,0,0,3376,3389,3,348,174,0,3377,3389,3, + 278,139,0,3378,3379,3,266,133,0,3379,3380,3,358,179,0,3380,3389, + 1,0,0,0,3381,3389,3,354,177,0,3382,3389,3,276,138,0,3383,3385,3, + 358,179,0,3384,3383,1,0,0,0,3385,3386,1,0,0,0,3386,3384,1,0,0,0, + 3386,3387,1,0,0,0,3387,3389,1,0,0,0,3388,3373,1,0,0,0,3388,3374, + 1,0,0,0,3388,3375,1,0,0,0,3388,3377,1,0,0,0,3388,3378,1,0,0,0,3388, + 3381,1,0,0,0,3388,3382,1,0,0,0,3388,3384,1,0,0,0,3389,269,1,0,0, + 0,3390,3391,7,56,0,0,3391,271,1,0,0,0,3392,3393,7,57,0,0,3393,273, + 1,0,0,0,3394,3395,7,58,0,0,3395,275,1,0,0,0,3396,3397,7,59,0,0,3397, + 277,1,0,0,0,3398,3401,5,149,0,0,3399,3402,3,280,140,0,3400,3402, + 3,284,142,0,3401,3399,1,0,0,0,3401,3400,1,0,0,0,3402,279,1,0,0,0, + 3403,3405,3,282,141,0,3404,3406,3,286,143,0,3405,3404,1,0,0,0,3405, + 3406,1,0,0,0,3406,281,1,0,0,0,3407,3408,3,288,144,0,3408,3409,3, + 290,145,0,3409,3411,1,0,0,0,3410,3407,1,0,0,0,3411,3412,1,0,0,0, + 3412,3410,1,0,0,0,3412,3413,1,0,0,0,3413,283,1,0,0,0,3414,3417,3, + 286,143,0,3415,3418,3,282,141,0,3416,3418,3,286,143,0,3417,3415, + 1,0,0,0,3417,3416,1,0,0,0,3417,3418,1,0,0,0,3418,285,1,0,0,0,3419, + 3420,3,288,144,0,3420,3421,3,292,146,0,3421,3422,5,309,0,0,3422, + 3423,3,292,146,0,3423,287,1,0,0,0,3424,3426,7,60,0,0,3425,3424,1, + 0,0,0,3425,3426,1,0,0,0,3426,3430,1,0,0,0,3427,3431,5,382,0,0,3428, + 3431,5,384,0,0,3429,3431,3,358,179,0,3430,3427,1,0,0,0,3430,3428, + 1,0,0,0,3430,3429,1,0,0,0,3431,289,1,0,0,0,3432,3433,7,61,0,0,3433, + 291,1,0,0,0,3434,3435,7,62,0,0,3435,293,1,0,0,0,3436,3440,5,116, + 0,0,3437,3438,5,9,0,0,3438,3440,3,344,172,0,3439,3436,1,0,0,0,3439, + 3437,1,0,0,0,3440,295,1,0,0,0,3441,3472,5,27,0,0,3442,3472,5,308, + 0,0,3443,3472,5,32,0,0,3444,3472,5,276,0,0,3445,3472,5,272,0,0,3446, + 3472,5,150,0,0,3447,3472,5,151,0,0,3448,3472,5,25,0,0,3449,3472, + 5,174,0,0,3450,3472,5,117,0,0,3451,3472,5,234,0,0,3452,3472,5,95, + 0,0,3453,3472,5,71,0,0,3454,3472,5,303,0,0,3455,3472,5,305,0,0,3456, + 3472,5,304,0,0,3457,3472,5,285,0,0,3458,3472,5,41,0,0,3459,3472, + 5,40,0,0,3460,3472,5,334,0,0,3461,3472,5,26,0,0,3462,3472,5,80,0, + 0,3463,3472,5,79,0,0,3464,3472,5,200,0,0,3465,3472,5,340,0,0,3466, + 3472,5,149,0,0,3467,3472,5,19,0,0,3468,3472,5,286,0,0,3469,3472, + 5,177,0,0,3470,3472,3,348,174,0,3471,3441,1,0,0,0,3471,3442,1,0, + 0,0,3471,3443,1,0,0,0,3471,3444,1,0,0,0,3471,3445,1,0,0,0,3471,3446, + 1,0,0,0,3471,3447,1,0,0,0,3471,3448,1,0,0,0,3471,3449,1,0,0,0,3471, + 3450,1,0,0,0,3471,3451,1,0,0,0,3471,3452,1,0,0,0,3471,3453,1,0,0, + 0,3471,3454,1,0,0,0,3471,3455,1,0,0,0,3471,3456,1,0,0,0,3471,3457, + 1,0,0,0,3471,3458,1,0,0,0,3471,3459,1,0,0,0,3471,3460,1,0,0,0,3471, + 3461,1,0,0,0,3471,3462,1,0,0,0,3471,3463,1,0,0,0,3471,3464,1,0,0, + 0,3471,3465,1,0,0,0,3471,3466,1,0,0,0,3471,3467,1,0,0,0,3471,3468, + 1,0,0,0,3471,3469,1,0,0,0,3471,3470,1,0,0,0,3472,297,1,0,0,0,3473, + 3474,5,19,0,0,3474,3475,5,356,0,0,3475,3476,3,298,149,0,3476,3477, + 5,358,0,0,3477,3527,1,0,0,0,3478,3479,5,177,0,0,3479,3480,5,356, + 0,0,3480,3481,3,298,149,0,3481,3482,5,4,0,0,3482,3483,3,298,149, + 0,3483,3484,5,358,0,0,3484,3527,1,0,0,0,3485,3499,5,286,0,0,3486, + 3495,5,356,0,0,3487,3492,3,322,161,0,3488,3489,5,4,0,0,3489,3491, + 3,322,161,0,3490,3488,1,0,0,0,3491,3494,1,0,0,0,3492,3490,1,0,0, + 0,3492,3493,1,0,0,0,3493,3496,1,0,0,0,3494,3492,1,0,0,0,3495,3487, + 1,0,0,0,3495,3496,1,0,0,0,3496,3497,1,0,0,0,3497,3500,5,358,0,0, + 3498,3500,5,354,0,0,3499,3486,1,0,0,0,3499,3498,1,0,0,0,3500,3527, + 1,0,0,0,3501,3502,5,149,0,0,3502,3505,7,63,0,0,3503,3504,5,309,0, + 0,3504,3506,5,186,0,0,3505,3503,1,0,0,0,3505,3506,1,0,0,0,3506,3527, + 1,0,0,0,3507,3508,5,149,0,0,3508,3511,7,64,0,0,3509,3510,5,309,0, + 0,3510,3512,7,65,0,0,3511,3509,1,0,0,0,3511,3512,1,0,0,0,3512,3527, + 1,0,0,0,3513,3524,3,296,148,0,3514,3515,5,2,0,0,3515,3520,5,382, + 0,0,3516,3517,5,4,0,0,3517,3519,5,382,0,0,3518,3516,1,0,0,0,3519, + 3522,1,0,0,0,3520,3518,1,0,0,0,3520,3521,1,0,0,0,3521,3523,1,0,0, + 0,3522,3520,1,0,0,0,3523,3525,5,3,0,0,3524,3514,1,0,0,0,3524,3525, + 1,0,0,0,3525,3527,1,0,0,0,3526,3473,1,0,0,0,3526,3478,1,0,0,0,3526, + 3485,1,0,0,0,3526,3501,1,0,0,0,3526,3507,1,0,0,0,3526,3513,1,0,0, + 0,3527,299,1,0,0,0,3528,3533,3,302,151,0,3529,3530,5,4,0,0,3530, + 3532,3,302,151,0,3531,3529,1,0,0,0,3532,3535,1,0,0,0,3533,3531,1, + 0,0,0,3533,3534,1,0,0,0,3534,301,1,0,0,0,3535,3533,1,0,0,0,3536, + 3537,3,84,42,0,3537,3541,3,298,149,0,3538,3540,3,308,154,0,3539, + 3538,1,0,0,0,3540,3543,1,0,0,0,3541,3539,1,0,0,0,3541,3542,1,0,0, + 0,3542,303,1,0,0,0,3543,3541,1,0,0,0,3544,3549,3,306,153,0,3545, + 3546,5,4,0,0,3546,3548,3,306,153,0,3547,3545,1,0,0,0,3548,3551,1, + 0,0,0,3549,3547,1,0,0,0,3549,3550,1,0,0,0,3550,305,1,0,0,0,3551, + 3549,1,0,0,0,3552,3553,3,78,39,0,3553,3557,3,298,149,0,3554,3556, + 3,308,154,0,3555,3554,1,0,0,0,3556,3559,1,0,0,0,3557,3555,1,0,0, + 0,3557,3558,1,0,0,0,3558,307,1,0,0,0,3559,3557,1,0,0,0,3560,3561, + 5,197,0,0,3561,3568,5,198,0,0,3562,3563,5,82,0,0,3563,3568,3,248, + 124,0,3564,3565,5,51,0,0,3565,3568,3,358,179,0,3566,3568,3,294,147, + 0,3567,3560,1,0,0,0,3567,3562,1,0,0,0,3567,3564,1,0,0,0,3567,3566, + 1,0,0,0,3568,309,1,0,0,0,3569,3570,7,66,0,0,3570,3571,3,248,124, + 0,3571,311,1,0,0,0,3572,3577,3,314,157,0,3573,3574,5,4,0,0,3574, + 3576,3,314,157,0,3575,3573,1,0,0,0,3576,3579,1,0,0,0,3577,3575,1, + 0,0,0,3577,3578,1,0,0,0,3578,313,1,0,0,0,3579,3577,1,0,0,0,3580, + 3581,3,344,172,0,3581,3584,3,298,149,0,3582,3583,5,197,0,0,3583, + 3585,5,198,0,0,3584,3582,1,0,0,0,3584,3585,1,0,0,0,3585,3588,1,0, + 0,0,3586,3587,5,51,0,0,3587,3589,3,358,179,0,3588,3586,1,0,0,0,3588, + 3589,1,0,0,0,3589,315,1,0,0,0,3590,3595,3,318,159,0,3591,3592,5, + 4,0,0,3592,3594,3,318,159,0,3593,3591,1,0,0,0,3594,3597,1,0,0,0, + 3595,3593,1,0,0,0,3595,3596,1,0,0,0,3596,317,1,0,0,0,3597,3595,1, + 0,0,0,3598,3599,3,84,42,0,3599,3603,3,298,149,0,3600,3602,3,320, + 160,0,3601,3600,1,0,0,0,3602,3605,1,0,0,0,3603,3601,1,0,0,0,3603, + 3604,1,0,0,0,3604,319,1,0,0,0,3605,3603,1,0,0,0,3606,3607,5,197, + 0,0,3607,3620,5,198,0,0,3608,3609,5,82,0,0,3609,3620,3,248,124,0, + 3610,3611,5,127,0,0,3611,3612,5,12,0,0,3612,3613,5,20,0,0,3613,3614, + 5,2,0,0,3614,3615,3,248,124,0,3615,3616,5,3,0,0,3616,3620,1,0,0, + 0,3617,3618,5,51,0,0,3618,3620,3,358,179,0,3619,3606,1,0,0,0,3619, + 3608,1,0,0,0,3619,3610,1,0,0,0,3619,3617,1,0,0,0,3620,321,1,0,0, + 0,3621,3623,3,348,174,0,3622,3624,5,371,0,0,3623,3622,1,0,0,0,3623, + 3624,1,0,0,0,3624,3625,1,0,0,0,3625,3628,3,298,149,0,3626,3627,5, + 197,0,0,3627,3629,5,198,0,0,3628,3626,1,0,0,0,3628,3629,1,0,0,0, + 3629,3632,1,0,0,0,3630,3631,5,51,0,0,3631,3633,3,358,179,0,3632, + 3630,1,0,0,0,3632,3633,1,0,0,0,3633,323,1,0,0,0,3634,3635,5,343, + 0,0,3635,3636,3,248,124,0,3636,3637,5,300,0,0,3637,3638,3,248,124, + 0,3638,325,1,0,0,0,3639,3640,5,345,0,0,3640,3641,3,344,172,0,3641, + 3642,5,20,0,0,3642,3650,3,330,165,0,3643,3644,5,4,0,0,3644,3645, + 3,344,172,0,3645,3646,5,20,0,0,3646,3647,3,330,165,0,3647,3649,1, + 0,0,0,3648,3643,1,0,0,0,3649,3652,1,0,0,0,3650,3648,1,0,0,0,3650, + 3651,1,0,0,0,3651,327,1,0,0,0,3652,3650,1,0,0,0,3653,3654,5,351, + 0,0,3654,3655,5,31,0,0,3655,3656,3,82,41,0,3656,329,1,0,0,0,3657, + 3697,3,344,172,0,3658,3659,5,2,0,0,3659,3660,3,344,172,0,3660,3661, + 5,3,0,0,3661,3697,1,0,0,0,3662,3690,5,2,0,0,3663,3664,5,44,0,0,3664, + 3665,5,31,0,0,3665,3670,3,248,124,0,3666,3667,5,4,0,0,3667,3669, + 3,248,124,0,3668,3666,1,0,0,0,3669,3672,1,0,0,0,3670,3668,1,0,0, + 0,3670,3671,1,0,0,0,3671,3691,1,0,0,0,3672,3670,1,0,0,0,3673,3674, + 7,35,0,0,3674,3675,5,31,0,0,3675,3680,3,248,124,0,3676,3677,5,4, + 0,0,3677,3679,3,248,124,0,3678,3676,1,0,0,0,3679,3682,1,0,0,0,3680, + 3678,1,0,0,0,3680,3681,1,0,0,0,3681,3684,1,0,0,0,3682,3680,1,0,0, + 0,3683,3673,1,0,0,0,3683,3684,1,0,0,0,3684,3688,1,0,0,0,3685,3686, + 7,36,0,0,3686,3687,5,31,0,0,3687,3689,3,92,46,0,3688,3685,1,0,0, + 0,3688,3689,1,0,0,0,3689,3691,1,0,0,0,3690,3663,1,0,0,0,3690,3683, + 1,0,0,0,3691,3693,1,0,0,0,3692,3694,3,332,166,0,3693,3692,1,0,0, + 0,3693,3694,1,0,0,0,3694,3695,1,0,0,0,3695,3697,5,3,0,0,3696,3657, + 1,0,0,0,3696,3658,1,0,0,0,3696,3662,1,0,0,0,3697,331,1,0,0,0,3698, + 3699,7,67,0,0,3699,3707,3,334,167,0,3700,3701,7,67,0,0,3701,3702, + 5,24,0,0,3702,3703,3,334,167,0,3703,3704,5,14,0,0,3704,3705,3,334, + 167,0,3705,3707,1,0,0,0,3706,3698,1,0,0,0,3706,3700,1,0,0,0,3707, + 333,1,0,0,0,3708,3709,5,321,0,0,3709,3716,7,68,0,0,3710,3711,5,62, + 0,0,3711,3716,5,257,0,0,3712,3713,3,248,124,0,3713,3714,7,68,0,0, + 3714,3716,1,0,0,0,3715,3708,1,0,0,0,3715,3710,1,0,0,0,3715,3712, + 1,0,0,0,3716,335,1,0,0,0,3717,3722,3,342,171,0,3718,3719,5,4,0,0, + 3719,3721,3,342,171,0,3720,3718,1,0,0,0,3721,3724,1,0,0,0,3722,3720, + 1,0,0,0,3722,3723,1,0,0,0,3723,337,1,0,0,0,3724,3722,1,0,0,0,3725, + 3726,5,136,0,0,3726,3727,5,2,0,0,3727,3728,3,248,124,0,3728,3729, + 5,3,0,0,3729,3735,1,0,0,0,3730,3735,3,342,171,0,3731,3735,5,114, + 0,0,3732,3735,5,161,0,0,3733,3735,5,250,0,0,3734,3725,1,0,0,0,3734, + 3730,1,0,0,0,3734,3731,1,0,0,0,3734,3732,1,0,0,0,3734,3733,1,0,0, + 0,3735,339,1,0,0,0,3736,3737,3,342,171,0,3737,341,1,0,0,0,3738,3743, + 3,348,174,0,3739,3740,5,5,0,0,3740,3742,3,348,174,0,3741,3739,1, + 0,0,0,3742,3745,1,0,0,0,3743,3741,1,0,0,0,3743,3744,1,0,0,0,3744, + 343,1,0,0,0,3745,3743,1,0,0,0,3746,3747,3,348,174,0,3747,3748,3, + 346,173,0,3748,345,1,0,0,0,3749,3750,5,362,0,0,3750,3752,3,348,174, + 0,3751,3749,1,0,0,0,3752,3753,1,0,0,0,3753,3751,1,0,0,0,3753,3754, + 1,0,0,0,3754,3757,1,0,0,0,3755,3757,1,0,0,0,3756,3751,1,0,0,0,3756, + 3755,1,0,0,0,3757,347,1,0,0,0,3758,3761,3,350,175,0,3759,3761,3, + 362,181,0,3760,3758,1,0,0,0,3760,3759,1,0,0,0,3761,349,1,0,0,0,3762, + 3767,5,388,0,0,3763,3767,3,352,176,0,3764,3767,3,360,180,0,3765, + 3767,3,364,182,0,3766,3762,1,0,0,0,3766,3763,1,0,0,0,3766,3764,1, + 0,0,0,3766,3765,1,0,0,0,3767,351,1,0,0,0,3768,3769,7,69,0,0,3769, + 353,1,0,0,0,3770,3772,5,362,0,0,3771,3770,1,0,0,0,3771,3772,1,0, + 0,0,3772,3773,1,0,0,0,3773,3774,7,70,0,0,3774,355,1,0,0,0,3775,3776, + 5,319,0,0,3776,3789,3,298,149,0,3777,3778,5,51,0,0,3778,3789,3,358, + 179,0,3779,3789,3,294,147,0,3780,3781,7,71,0,0,3781,3782,5,197,0, + 0,3782,3789,5,198,0,0,3783,3784,5,269,0,0,3784,3785,5,82,0,0,3785, + 3789,3,248,124,0,3786,3787,5,96,0,0,3787,3789,5,82,0,0,3788,3775, + 1,0,0,0,3788,3777,1,0,0,0,3788,3779,1,0,0,0,3788,3780,1,0,0,0,3788, + 3783,1,0,0,0,3788,3786,1,0,0,0,3789,357,1,0,0,0,3790,3791,7,72,0, + 0,3791,359,1,0,0,0,3792,3793,7,73,0,0,3793,361,1,0,0,0,3794,3795, + 7,74,0,0,3795,363,1,0,0,0,3796,3797,7,75,0,0,3797,365,1,0,0,0,505, + 369,376,380,385,392,397,407,409,429,433,439,442,445,449,452,456, + 463,466,470,473,478,491,493,498,507,510,514,517,523,534,540,545, + 578,588,599,610,621,626,635,639,645,649,654,660,672,680,686,697, + 701,706,721,725,732,736,742,772,776,781,788,794,797,800,804,808, + 817,819,828,831,840,845,851,858,861,865,880,883,889,893,910,912, + 920,924,930,933,937,940,946,951,955,962,965,968,975,980,989,997, + 1003,1006,1009,1015,1019,1024,1027,1031,1033,1041,1049,1052,1059, + 1062,1065,1074,1079,1085,1090,1093,1097,1100,1104,1114,1119,1132, + 1135,1143,1149,1152,1155,1160,1168,1173,1179,1185,1188,1195,1202, + 1210,1222,1230,1257,1260,1266,1275,1284,1290,1295,1300,1307,1312, + 1317,1324,1332,1335,1341,1348,1352,1415,1423,1430,1438,1450,1455, + 1464,1472,1477,1479,1487,1492,1496,1499,1507,1512,1521,1526,1529, + 1534,1538,1543,1545,1550,1559,1567,1573,1582,1589,1598,1603,1606, + 1631,1633,1645,1652,1655,1662,1666,1672,1680,1687,1690,1698,1709, + 1720,1728,1734,1745,1752,1759,1771,1779,1785,1791,1794,1810,1819, + 1830,1835,1840,1845,1850,1853,1856,1860,1865,1872,1880,1889,1895, + 1901,1904,1906,1914,1924,1933,1937,1940,1944,1948,1956,1960,1963, + 1966,1969,1973,1977,1982,1986,1989,1992,1995,1999,2004,2008,2011, + 2014,2017,2019,2025,2032,2037,2040,2043,2047,2057,2061,2063,2066, + 2070,2076,2080,2091,2099,2101,2108,2112,2124,2131,2146,2151,2158, + 2174,2179,2192,2197,2205,2211,2215,2218,2221,2228,2231,2237,2246, + 2256,2271,2276,2278,2283,2292,2302,2307,2311,2316,2323,2328,2332, + 2335,2338,2352,2365,2370,2374,2377,2382,2387,2391,2394,2406,2417, + 2430,2441,2446,2449,2453,2456,2468,2477,2480,2485,2492,2495,2501, + 2507,2509,2512,2517,2521,2527,2531,2534,2539,2542,2547,2549,2555, + 2560,2567,2570,2588,2590,2593,2604,2613,2620,2628,2636,2641,2644, + 2647,2653,2661,2669,2681,2687,2694,2701,2703,2716,2722,2724,2733, + 2735,2743,2747,2759,2762,2767,2771,2773,2782,2794,2796,2803,2810, + 2816,2822,2824,2831,2839,2847,2853,2858,2865,2878,2886,2889,2893, + 2895,2902,2913,2920,2930,2935,2939,2949,2956,2969,2971,2979,2981, + 2985,2993,3002,3008,3016,3021,3033,3038,3041,3047,3051,3056,3061, + 3066,3072,3093,3095,3106,3118,3130,3134,3143,3147,3165,3168,3176, + 3185,3194,3217,3233,3240,3243,3252,3256,3260,3272,3297,3304,3307, + 3322,3343,3347,3349,3359,3361,3371,3386,3388,3401,3405,3412,3417, + 3425,3430,3439,3471,3492,3495,3499,3505,3511,3520,3524,3526,3533, + 3541,3549,3557,3567,3577,3584,3588,3595,3603,3619,3623,3628,3632, + 3650,3670,3680,3683,3688,3690,3693,3696,3706,3715,3722,3734,3743, + 3753,3756,3760,3766,3771,3788 ]; private static __ATN: antlr.ATN; @@ -26884,8 +27131,8 @@ export class SelectClauseContext extends antlr.ParserRuleContext { public KW_SELECT(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SELECT, 0)!; } - public namedExpressionSeq(): NamedExpressionSeqContext { - return this.getRuleContext(0, NamedExpressionSeqContext)!; + public selectList(): SelectListContext { + return this.getRuleContext(0, SelectListContext)!; } public setQuantifier(): SetQuantifierContext | null { return this.getRuleContext(0, SetQuantifierContext); @@ -29106,6 +29353,50 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_relationPrimary; + } + public override copyFrom(ctx: RelationPrimaryContext): void { + super.copyFrom(ctx); + } +} +export class SubQueryTableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + return this.getRuleContext(0, AtomSubQueryTableSourceContext)!; + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public sample(): SampleContext | null { + return this.getRuleContext(0, SampleContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSubQueryTableSource) { + listener.enterSubQueryTableSource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSubQueryTableSource) { + listener.exitSubQueryTableSource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSubQueryTableSource) { + return visitor.visitSubQueryTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class TableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public tableAlias(): TableAliasContext { return this.getRuleContext(0, TableAliasContext)!; } @@ -29124,20 +29415,161 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public sample(): SampleContext | null { return this.getRuleContext(0, SampleContext); } - public LEFT_PAREN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.LEFT_PAREN, 0); + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterTableSource) { + listener.enterTableSource(this); + } } - public query(): QueryContext | null { - return this.getRuleContext(0, QueryContext); + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitTableSource) { + listener.exitTableSource(this); + } } - public RIGHT_PAREN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitTableSource) { + return visitor.visitTableSource(this); + } else { + return visitor.visitChildren(this); + } } - public relation(): RelationContext | null { - return this.getRuleContext(0, RelationContext); +} +export class FunctionTableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public KW_VALUES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_VALUES, 0); + public functionTable(): FunctionTableContext { + return this.getRuleContext(0, FunctionTableContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterFunctionTableSource) { + listener.enterFunctionTableSource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitFunctionTableSource) { + listener.exitFunctionTableSource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitFunctionTableSource) { + return visitor.visitFunctionTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class JoinTableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } + public relation(): RelationContext { + return this.getRuleContext(0, RelationContext)!; + } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public sample(): SampleContext | null { + return this.getRuleContext(0, SampleContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterJoinTableSource) { + listener.enterJoinTableSource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitJoinTableSource) { + listener.exitJoinTableSource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitJoinTableSource) { + return visitor.visitJoinTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class InlineTableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public inlineTable(): InlineTableContext { + return this.getRuleContext(0, InlineTableContext)!; + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterInlineTableSource) { + listener.enterInlineTableSource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitInlineTableSource) { + listener.exitInlineTableSource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitInlineTableSource) { + return visitor.visitInlineTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomSubQueryTableSourceContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; + } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_atomSubQueryTableSource; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAtomSubQueryTableSource) { + listener.enterAtomSubQueryTableSource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAtomSubQueryTableSource) { + listener.exitAtomSubQueryTableSource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAtomSubQueryTableSource) { + return visitor.visitAtomSubQueryTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class InlineTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_VALUES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_VALUES, 0)!; } public expression(): ExpressionContext[]; public expression(i: number): ExpressionContext | null; @@ -29157,34 +29589,22 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.COMMA, i); } } - public functionName(): FunctionNameContext | null { - return this.getRuleContext(0, FunctionNameContext); - } - public functionTableArgument(): FunctionTableArgumentContext[]; - public functionTableArgument(i: number): FunctionTableArgumentContext | null; - public functionTableArgument(i?: number): FunctionTableArgumentContext[] | FunctionTableArgumentContext | null { - if (i === undefined) { - return this.getRuleContexts(FunctionTableArgumentContext); - } - - return this.getRuleContext(i, FunctionTableArgumentContext); - } public override get ruleIndex(): number { - return SparkSqlParser.RULE_relationPrimary; + return SparkSqlParser.RULE_inlineTable; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterRelationPrimary) { - listener.enterRelationPrimary(this); + if(listener.enterInlineTable) { + listener.enterInlineTable(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitRelationPrimary) { - listener.exitRelationPrimary(this); + if(listener.exitInlineTable) { + listener.exitInlineTable(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitRelationPrimary) { - return visitor.visitRelationPrimary(this); + if (visitor.visitInlineTable) { + return visitor.visitInlineTable(this); } else { return visitor.visitChildren(this); } @@ -29439,6 +29859,93 @@ export class FunctionTableArgumentContext extends antlr.ParserRuleContext { } +export class FunctionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public atomFunctionTable(): AtomFunctionTableContext { + return this.getRuleContext(0, AtomFunctionTableContext)!; + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_functionTable; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterFunctionTable) { + listener.enterFunctionTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitFunctionTable) { + listener.exitFunctionTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitFunctionTable) { + return visitor.visitFunctionTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomFunctionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; + } + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + } + public functionTableArgument(): FunctionTableArgumentContext[]; + public functionTableArgument(i: number): FunctionTableArgumentContext | null; + public functionTableArgument(i?: number): FunctionTableArgumentContext[] | FunctionTableArgumentContext | null { + if (i === undefined) { + return this.getRuleContexts(FunctionTableArgumentContext); + } + + return this.getRuleContext(i, FunctionTableArgumentContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.COMMA); + } else { + return this.getToken(SparkSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_atomFunctionTable; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterAtomFunctionTable) { + listener.enterAtomFunctionTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitAtomFunctionTable) { + listener.exitAtomFunctionTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitAtomFunctionTable) { + return visitor.visitAtomFunctionTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TableAliasContext extends antlr.ParserRuleContext { public _alias?: StrictIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -29845,16 +30352,127 @@ export class ViewIdentifierContext extends antlr.ParserRuleContext { } +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_selectLiteralColumnName; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_selectExpressionColumnName; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public ASTERISK(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.ASTERISK, 0)!; + } + public qualifiedName(): QualifiedNameContext[]; + public qualifiedName(i: number): QualifiedNameContext | null; + public qualifiedName(i?: number): QualifiedNameContext[] | QualifiedNameContext | null { + if (i === undefined) { + return this.getRuleContexts(QualifiedNameContext); + } + + return this.getRuleContext(i, QualifiedNameContext); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.DOT); + } else { + return this.getToken(SparkSqlParser.DOT, i); + } + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_tableAllColumns; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class NamedExpressionContext extends antlr.ParserRuleContext { - public _name?: ErrorCapturingIdentifierContext; + public _alias?: ErrorCapturingIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnName(): ColumnNameContext | null { - return this.getRuleContext(0, ColumnNameContext); + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); } public identifierList(): IdentifierListContext | null { return this.getRuleContext(0, IdentifierListContext); @@ -29933,6 +30551,36 @@ export class NamedExpressionSeqContext extends antlr.ParserRuleContext { } +export class SelectListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public namedExpressionSeq(): NamedExpressionSeqContext { + return this.getRuleContext(0, NamedExpressionSeqContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_selectList; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSelectList) { + listener.enterSelectList(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSelectList) { + listener.exitSelectList(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PartitionFieldListContext extends antlr.ParserRuleContext { public _partitionField?: PartitionFieldContext; public _fields: PartitionFieldContext[] = []; diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index a5eb8976..b72a5cdb 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -197,12 +197,20 @@ import { OrderedIdentifierListContext } from "./SparkSqlParser.js"; import { OrderedIdentifierContext } from "./SparkSqlParser.js"; import { IdentifierCommentListContext } from "./SparkSqlParser.js"; import { IdentifierCommentContext } from "./SparkSqlParser.js"; -import { RelationPrimaryContext } from "./SparkSqlParser.js"; +import { TableSourceContext } from "./SparkSqlParser.js"; +import { SubQueryTableSourceContext } from "./SparkSqlParser.js"; +import { JoinTableSourceContext } from "./SparkSqlParser.js"; +import { InlineTableSourceContext } from "./SparkSqlParser.js"; +import { FunctionTableSourceContext } from "./SparkSqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./SparkSqlParser.js"; +import { InlineTableContext } from "./SparkSqlParser.js"; import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser.js"; import { TableArgumentPartitioningContext } from "./SparkSqlParser.js"; import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser.js"; import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableArgumentContext } from "./SparkSqlParser.js"; +import { FunctionTableContext } from "./SparkSqlParser.js"; +import { AtomFunctionTableContext } from "./SparkSqlParser.js"; import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; @@ -211,8 +219,12 @@ import { MultipartIdentifierPropertyListContext } from "./SparkSqlParser.js"; import { MultipartIdentifierPropertyContext } from "./SparkSqlParser.js"; import { TableIdentifierContext } from "./SparkSqlParser.js"; import { ViewIdentifierContext } from "./SparkSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./SparkSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./SparkSqlParser.js"; +import { TableAllColumnsContext } from "./SparkSqlParser.js"; import { NamedExpressionContext } from "./SparkSqlParser.js"; import { NamedExpressionSeqContext } from "./SparkSqlParser.js"; +import { SelectListContext } from "./SparkSqlParser.js"; import { PartitionFieldListContext } from "./SparkSqlParser.js"; import { PartitionFieldContext } from "./SparkSqlParser.js"; import { TransformContext } from "./SparkSqlParser.js"; @@ -2366,15 +2378,85 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitIdentifierComment?: (ctx: IdentifierCommentContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.relationPrimary`. + * Enter a parse tree produced by the `tableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. * @param ctx the parse tree */ - enterRelationPrimary?: (ctx: RelationPrimaryContext) => void; + enterTableSource?: (ctx: TableSourceContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.relationPrimary`. + * Exit a parse tree produced by the `tableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. * @param ctx the parse tree */ - exitRelationPrimary?: (ctx: RelationPrimaryContext) => void; + exitTableSource?: (ctx: TableSourceContext) => void; + /** + * Enter a parse tree produced by the `subQueryTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterSubQueryTableSource?: (ctx: SubQueryTableSourceContext) => void; + /** + * Exit a parse tree produced by the `subQueryTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitSubQueryTableSource?: (ctx: SubQueryTableSourceContext) => void; + /** + * Enter a parse tree produced by the `joinTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterJoinTableSource?: (ctx: JoinTableSourceContext) => void; + /** + * Exit a parse tree produced by the `joinTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitJoinTableSource?: (ctx: JoinTableSourceContext) => void; + /** + * Enter a parse tree produced by the `inlineTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterInlineTableSource?: (ctx: InlineTableSourceContext) => void; + /** + * Exit a parse tree produced by the `inlineTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitInlineTableSource?: (ctx: InlineTableSourceContext) => void; + /** + * Enter a parse tree produced by the `functionTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterFunctionTableSource?: (ctx: FunctionTableSourceContext) => void; + /** + * Exit a parse tree produced by the `functionTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitFunctionTableSource?: (ctx: FunctionTableSourceContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + enterAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + exitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.inlineTable`. + * @param ctx the parse tree + */ + enterInlineTable?: (ctx: InlineTableContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.inlineTable`. + * @param ctx the parse tree + */ + exitInlineTable?: (ctx: InlineTableContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.functionTableSubqueryArgument`. * @param ctx the parse tree @@ -2425,6 +2507,26 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunctionTableArgument?: (ctx: FunctionTableArgumentContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.functionTable`. + * @param ctx the parse tree + */ + enterFunctionTable?: (ctx: FunctionTableContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.functionTable`. + * @param ctx the parse tree + */ + exitFunctionTable?: (ctx: FunctionTableContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + */ + enterAtomFunctionTable?: (ctx: AtomFunctionTableContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + */ + exitAtomFunctionTable?: (ctx: AtomFunctionTableContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.tableAlias`. * @param ctx the parse tree @@ -2505,6 +2607,36 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitViewIdentifier?: (ctx: ViewIdentifierContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.namedExpression`. * @param ctx the parse tree @@ -2525,6 +2657,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitNamedExpressionSeq?: (ctx: NamedExpressionSeqContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.partitionFieldList`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index 9c860638..d227e2f4 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -197,12 +197,20 @@ import { OrderedIdentifierListContext } from "./SparkSqlParser.js"; import { OrderedIdentifierContext } from "./SparkSqlParser.js"; import { IdentifierCommentListContext } from "./SparkSqlParser.js"; import { IdentifierCommentContext } from "./SparkSqlParser.js"; -import { RelationPrimaryContext } from "./SparkSqlParser.js"; +import { TableSourceContext } from "./SparkSqlParser.js"; +import { SubQueryTableSourceContext } from "./SparkSqlParser.js"; +import { JoinTableSourceContext } from "./SparkSqlParser.js"; +import { InlineTableSourceContext } from "./SparkSqlParser.js"; +import { FunctionTableSourceContext } from "./SparkSqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./SparkSqlParser.js"; +import { InlineTableContext } from "./SparkSqlParser.js"; import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser.js"; import { TableArgumentPartitioningContext } from "./SparkSqlParser.js"; import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser.js"; import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableArgumentContext } from "./SparkSqlParser.js"; +import { FunctionTableContext } from "./SparkSqlParser.js"; +import { AtomFunctionTableContext } from "./SparkSqlParser.js"; import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; @@ -211,8 +219,12 @@ import { MultipartIdentifierPropertyListContext } from "./SparkSqlParser.js"; import { MultipartIdentifierPropertyContext } from "./SparkSqlParser.js"; import { TableIdentifierContext } from "./SparkSqlParser.js"; import { ViewIdentifierContext } from "./SparkSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./SparkSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./SparkSqlParser.js"; +import { TableAllColumnsContext } from "./SparkSqlParser.js"; import { NamedExpressionContext } from "./SparkSqlParser.js"; import { NamedExpressionSeqContext } from "./SparkSqlParser.js"; +import { SelectListContext } from "./SparkSqlParser.js"; import { PartitionFieldListContext } from "./SparkSqlParser.js"; import { PartitionFieldContext } from "./SparkSqlParser.js"; import { TransformContext } from "./SparkSqlParser.js"; @@ -1517,11 +1529,52 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.relationPrimary`. + * Visit a parse tree produced by the `tableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. * @param ctx the parse tree * @return the visitor result */ - visitRelationPrimary?: (ctx: RelationPrimaryContext) => Result; + visitTableSource?: (ctx: TableSourceContext) => Result; + /** + * Visit a parse tree produced by the `subQueryTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSubQueryTableSource?: (ctx: SubQueryTableSourceContext) => Result; + /** + * Visit a parse tree produced by the `joinTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJoinTableSource?: (ctx: JoinTableSourceContext) => Result; + /** + * Visit a parse tree produced by the `inlineTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitInlineTableSource?: (ctx: InlineTableSourceContext) => Result; + /** + * Visit a parse tree produced by the `functionTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionTableSource?: (ctx: FunctionTableSourceContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.inlineTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitInlineTable?: (ctx: InlineTableContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.functionTableSubqueryArgument`. * @param ctx the parse tree @@ -1552,6 +1605,18 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.functionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionTable?: (ctx: FunctionTableContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomFunctionTable?: (ctx: AtomFunctionTableContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.tableAlias`. * @param ctx the parse tree @@ -1600,6 +1665,24 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.tableAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.namedExpression`. * @param ctx the parse tree @@ -1612,6 +1695,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.partitionFieldList`. * @param ctx the parse tree diff --git a/src/lib/trino/TrinoSql.interp b/src/lib/trino/TrinoSql.interp index ae5ef5ec..124f89d1 100644 --- a/src/lib/trino/TrinoSql.interp +++ b/src/lib/trino/TrinoSql.interp @@ -714,6 +714,7 @@ sortItem querySpecification whereClause havingClause +selectList groupBy partitionBy groupingElement @@ -724,6 +725,10 @@ windowSpecification namedQuery setQuantifier selectItem +selectAllWithoutTable +tableAllColumns +selectLiteralColumnName +selectExpressionColumnName relation joinType joinCriteria @@ -744,6 +749,7 @@ columnListCreate columnList columnAliases relationPrimary +relationSourceTable jsonTableColumn jsonTableSpecificPlan jsonTablePathName @@ -843,4 +849,4 @@ nonReserved atn: -[4, 1, 340, 3667, 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, 1, 0, 5, 0, 312, 8, 0, 10, 0, 12, 0, 315, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 323, 8, 2, 1, 3, 1, 3, 3, 3, 327, 8, 3, 1, 4, 1, 4, 3, 4, 331, 8, 4, 1, 5, 1, 5, 3, 5, 335, 8, 5, 1, 6, 1, 6, 3, 6, 339, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 352, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 359, 8, 8, 1, 8, 1, 8, 3, 8, 363, 8, 8, 1, 8, 1, 8, 3, 8, 367, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 373, 8, 8, 1, 8, 1, 8, 3, 8, 377, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 384, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 389, 8, 8, 1, 8, 1, 8, 3, 8, 393, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 399, 8, 8, 1, 8, 1, 8, 3, 8, 403, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 422, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 428, 8, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 3, 8, 436, 8, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 448, 8, 8, 1, 8, 1, 8, 3, 8, 452, 8, 8, 1, 8, 3, 8, 455, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 460, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 466, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 473, 8, 8, 10, 8, 12, 8, 476, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 481, 8, 8, 1, 8, 1, 8, 3, 8, 485, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 491, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 498, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 506, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 518, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 527, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 536, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 542, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 553, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 561, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 569, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 576, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 586, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 593, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 601, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 616, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 649, 8, 8, 10, 8, 12, 8, 652, 9, 8, 3, 8, 654, 8, 8, 1, 8, 3, 8, 657, 8, 8, 1, 8, 3, 8, 660, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 666, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 671, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 684, 8, 8, 1, 8, 1, 8, 3, 8, 688, 8, 8, 1, 8, 1, 8, 3, 8, 692, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 706, 8, 8, 1, 8, 1, 8, 3, 8, 710, 8, 8, 1, 8, 1, 8, 3, 8, 714, 8, 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, 3, 8, 728, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 736, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 755, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 778, 8, 8, 10, 8, 12, 8, 781, 9, 8, 3, 8, 783, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 790, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 797, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 806, 8, 8, 1, 8, 1, 8, 3, 8, 810, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 817, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 823, 8, 8, 10, 8, 12, 8, 826, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 832, 8, 8, 10, 8, 12, 8, 835, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 840, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 845, 8, 8, 1, 8, 1, 8, 3, 8, 849, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 855, 8, 8, 10, 8, 12, 8, 858, 9, 8, 1, 8, 1, 8, 3, 8, 862, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 871, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 877, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 882, 8, 8, 10, 8, 12, 8, 885, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 891, 8, 8, 10, 8, 12, 8, 894, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 899, 8, 8, 1, 8, 1, 8, 3, 8, 903, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 909, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 914, 8, 8, 10, 8, 12, 8, 917, 9, 8, 1, 8, 1, 8, 3, 8, 921, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 932, 8, 8, 10, 8, 12, 8, 935, 9, 8, 1, 8, 1, 8, 3, 8, 939, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 8, 1, 8, 3, 8, 955, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 961, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 968, 8, 8, 10, 8, 12, 8, 971, 9, 8, 1, 8, 1, 8, 3, 8, 975, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 981, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1009, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1015, 8, 8, 3, 8, 1017, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1023, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1029, 8, 8, 3, 8, 1031, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1039, 8, 8, 3, 8, 1041, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1051, 8, 8, 3, 8, 1053, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1068, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1073, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1080, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1090, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1096, 8, 8, 3, 8, 1098, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1106, 8, 8, 3, 8, 1108, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1131, 8, 8, 10, 8, 12, 8, 1134, 9, 8, 3, 8, 1136, 8, 8, 1, 8, 1, 8, 3, 8, 1140, 8, 8, 1, 8, 1, 8, 3, 8, 1144, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1160, 8, 8, 10, 8, 12, 8, 1163, 9, 8, 3, 8, 1165, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1174, 8, 8, 10, 8, 12, 8, 1177, 9, 8, 3, 8, 1179, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1195, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1203, 8, 8, 10, 8, 12, 8, 1206, 9, 8, 1, 8, 3, 8, 1209, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1215, 8, 8, 1, 8, 3, 8, 1218, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1225, 8, 8, 11, 8, 12, 8, 1226, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1239, 8, 8, 1, 9, 3, 9, 1242, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1250, 8, 10, 10, 10, 12, 10, 1253, 9, 10, 1, 11, 3, 11, 1256, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1262, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1267, 8, 12, 10, 12, 12, 12, 1270, 9, 12, 1, 13, 1, 13, 3, 13, 1274, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1280, 8, 14, 1, 14, 1, 14, 3, 14, 1284, 8, 14, 1, 14, 1, 14, 3, 14, 1288, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1294, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1303, 8, 17, 10, 17, 12, 17, 1306, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1314, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1322, 8, 20, 10, 20, 12, 20, 1325, 9, 20, 3, 20, 1327, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1332, 8, 20, 3, 20, 1334, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1341, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1347, 8, 20, 3, 20, 1349, 8, 20, 1, 21, 1, 21, 3, 21, 1353, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1363, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1369, 8, 23, 1, 23, 5, 23, 1372, 8, 23, 10, 23, 12, 23, 1375, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1384, 8, 24, 10, 24, 12, 24, 1387, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1393, 8, 24, 1, 25, 1, 25, 3, 25, 1397, 8, 25, 1, 25, 3, 25, 1400, 8, 25, 1, 25, 1, 25, 3, 25, 1404, 8, 25, 1, 26, 1, 26, 3, 26, 1408, 8, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1413, 8, 26, 10, 26, 12, 26, 1416, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1422, 8, 26, 10, 26, 12, 26, 1425, 9, 26, 3, 26, 1427, 8, 26, 1, 26, 3, 26, 1430, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 3, 26, 1438, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1444, 8, 26, 10, 26, 12, 26, 1447, 9, 26, 3, 26, 1449, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 29, 3, 29, 1458, 8, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1463, 8, 29, 10, 29, 12, 29, 1466, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 1471, 8, 30, 10, 30, 12, 30, 1474, 9, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1482, 8, 31, 10, 31, 12, 31, 1485, 9, 31, 3, 31, 1487, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1495, 8, 31, 10, 31, 12, 31, 1498, 9, 31, 3, 31, 1500, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1509, 8, 31, 10, 31, 12, 31, 1512, 9, 31, 1, 31, 1, 31, 3, 31, 1516, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1522, 8, 32, 10, 32, 12, 32, 1525, 9, 32, 3, 32, 1527, 8, 32, 1, 32, 1, 32, 3, 32, 1531, 8, 32, 1, 33, 1, 33, 3, 33, 1535, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 3, 35, 1544, 8, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1549, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 1556, 8, 35, 10, 35, 12, 35, 1559, 9, 35, 3, 35, 1561, 8, 35, 1, 35, 3, 35, 1564, 8, 35, 1, 36, 1, 36, 3, 36, 1568, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1579, 8, 38, 1, 38, 3, 38, 1582, 8, 38, 1, 38, 3, 38, 1585, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1592, 8, 38, 1, 38, 3, 38, 1595, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1614, 8, 39, 5, 39, 1616, 8, 39, 10, 39, 12, 39, 1619, 9, 39, 1, 40, 3, 40, 1622, 8, 40, 1, 40, 1, 40, 3, 40, 1626, 8, 40, 1, 40, 1, 40, 3, 40, 1630, 8, 40, 1, 40, 1, 40, 3, 40, 1634, 8, 40, 3, 40, 1636, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1645, 8, 41, 10, 41, 12, 41, 1648, 9, 41, 1, 41, 1, 41, 3, 41, 1652, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1661, 8, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1670, 8, 45, 1, 45, 3, 45, 1673, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1679, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1687, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1694, 8, 47, 10, 47, 12, 47, 1697, 9, 47, 3, 47, 1699, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1705, 8, 47, 10, 47, 12, 47, 1708, 9, 47, 3, 47, 1710, 8, 47, 1, 47, 3, 47, 1713, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1718, 8, 47, 1, 47, 3, 47, 1721, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1731, 8, 47, 10, 47, 12, 47, 1734, 9, 47, 3, 47, 1736, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1742, 8, 47, 10, 47, 12, 47, 1745, 9, 47, 1, 47, 1, 47, 3, 47, 1749, 8, 47, 1, 47, 1, 47, 3, 47, 1753, 8, 47, 3, 47, 1755, 8, 47, 3, 47, 1757, 8, 47, 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, 3, 49, 1772, 8, 49, 3, 49, 1774, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1785, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1806, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1814, 8, 52, 10, 52, 12, 52, 1817, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 1827, 8, 54, 1, 54, 1, 54, 3, 54, 1831, 8, 54, 3, 54, 1833, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1839, 8, 55, 10, 55, 12, 55, 1842, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 1850, 8, 56, 10, 56, 12, 56, 1853, 9, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1861, 8, 57, 10, 57, 12, 57, 1864, 9, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1870, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1881, 8, 58, 10, 58, 12, 58, 1884, 9, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1889, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1913, 8, 58, 10, 58, 12, 58, 1916, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1930, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1935, 8, 58, 1, 58, 1, 58, 3, 58, 1939, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1949, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1955, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1961, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1969, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1974, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1981, 8, 59, 3, 59, 1983, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1989, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1995, 8, 59, 1, 59, 1, 59, 3, 59, 1999, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2004, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2011, 8, 59, 10, 59, 12, 59, 2014, 9, 59, 1, 59, 1, 59, 3, 59, 2018, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 2030, 8, 60, 10, 60, 12, 60, 2033, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 2040, 8, 60, 10, 60, 12, 60, 2043, 9, 60, 3, 60, 2045, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2054, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2059, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2064, 8, 63, 3, 63, 2066, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2073, 8, 64, 10, 64, 12, 64, 2076, 9, 64, 3, 64, 2078, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2084, 8, 64, 10, 64, 12, 64, 2087, 9, 64, 3, 64, 2089, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 3, 65, 2096, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2101, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2108, 8, 66, 1, 66, 1, 66, 3, 66, 2112, 8, 66, 3, 66, 2114, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2122, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2130, 8, 66, 10, 66, 12, 66, 2133, 9, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2138, 8, 66, 3, 66, 2140, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2147, 8, 67, 1, 67, 1, 67, 3, 67, 2151, 8, 67, 3, 67, 2153, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2160, 8, 67, 1, 67, 1, 67, 3, 67, 2164, 8, 67, 3, 67, 2166, 8, 67, 3, 67, 2168, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2175, 8, 68, 10, 68, 12, 68, 2178, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2188, 8, 68, 1, 69, 1, 69, 3, 69, 2192, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2200, 8, 70, 10, 70, 12, 70, 2203, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 3, 72, 2212, 8, 72, 1, 72, 1, 72, 3, 72, 2216, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2224, 8, 72, 10, 72, 12, 72, 2227, 9, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2239, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2247, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2254, 8, 73, 10, 73, 12, 73, 2257, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2262, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2270, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2276, 8, 73, 1, 73, 1, 73, 3, 73, 2280, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2285, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2290, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2296, 8, 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, 5, 74, 2310, 8, 74, 10, 74, 12, 74, 2313, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2340, 8, 75, 11, 75, 12, 75, 2341, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2351, 8, 75, 10, 75, 12, 75, 2354, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2361, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2366, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2371, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2382, 8, 75, 10, 75, 12, 75, 2385, 9, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2390, 8, 75, 1, 75, 3, 75, 2393, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2400, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2405, 8, 75, 1, 75, 3, 75, 2408, 8, 75, 1, 75, 3, 75, 2411, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2416, 8, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2421, 8, 75, 10, 75, 12, 75, 2424, 9, 75, 3, 75, 2426, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2433, 8, 75, 10, 75, 12, 75, 2436, 9, 75, 3, 75, 2438, 8, 75, 1, 75, 1, 75, 3, 75, 2442, 8, 75, 1, 75, 3, 75, 2445, 8, 75, 1, 75, 3, 75, 2448, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2461, 8, 75, 10, 75, 12, 75, 2464, 9, 75, 3, 75, 2466, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2483, 8, 75, 11, 75, 12, 75, 2484, 1, 75, 1, 75, 3, 75, 2489, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 4, 75, 2495, 8, 75, 11, 75, 12, 75, 2496, 1, 75, 1, 75, 3, 75, 2501, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2524, 8, 75, 10, 75, 12, 75, 2527, 9, 75, 3, 75, 2529, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2538, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2544, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2550, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2556, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2565, 8, 75, 1, 75, 3, 75, 2568, 8, 75, 1, 75, 3, 75, 2571, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2590, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2599, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2619, 8, 75, 10, 75, 12, 75, 2622, 9, 75, 3, 75, 2624, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2634, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2643, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2649, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2655, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2666, 8, 75, 3, 75, 2668, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2673, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2680, 8, 75, 3, 75, 2682, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2688, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2694, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2703, 8, 75, 10, 75, 12, 75, 2706, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2714, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2719, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2724, 8, 75, 3, 75, 2726, 8, 75, 3, 75, 2728, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2734, 8, 75, 3, 75, 2736, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2744, 8, 75, 10, 75, 12, 75, 2747, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2755, 8, 75, 3, 75, 2757, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2763, 8, 75, 3, 75, 2765, 8, 75, 1, 75, 3, 75, 2768, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2778, 8, 75, 10, 75, 12, 75, 2781, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2788, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2794, 8, 76, 10, 76, 12, 76, 2797, 9, 76, 3, 76, 2799, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2804, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2809, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2821, 8, 81, 1, 82, 1, 82, 3, 82, 2825, 8, 82, 1, 82, 1, 82, 3, 82, 2829, 8, 82, 1, 82, 3, 82, 2832, 8, 82, 3, 82, 2834, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2842, 8, 83, 1, 84, 3, 84, 2845, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2855, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2863, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2869, 8, 87, 3, 87, 2871, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2879, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2889, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2895, 8, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 2907, 8, 95, 10, 95, 12, 95, 2910, 9, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2918, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2925, 8, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2930, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2937, 8, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2942, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 2963, 8, 95, 10, 95, 12, 95, 2966, 9, 95, 1, 95, 1, 95, 3, 95, 2970, 8, 95, 3, 95, 2972, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2979, 8, 95, 5, 95, 2981, 8, 95, 10, 95, 12, 95, 2984, 9, 95, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2990, 8, 96, 1, 97, 1, 97, 3, 97, 2994, 8, 97, 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, 3, 100, 3010, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3023, 8, 100, 10, 100, 12, 100, 3026, 9, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3032, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3041, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3049, 8, 100, 10, 100, 12, 100, 3052, 9, 100, 1, 100, 1, 100, 3, 100, 3056, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 3063, 8, 100, 10, 100, 12, 100, 3066, 9, 100, 1, 100, 1, 100, 3, 100, 3070, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3078, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3084, 8, 102, 10, 102, 12, 102, 3087, 9, 102, 3, 102, 3089, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3095, 8, 102, 1, 102, 3, 102, 3098, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3105, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3111, 8, 102, 10, 102, 12, 102, 3114, 9, 102, 3, 102, 3116, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3122, 8, 102, 10, 102, 12, 102, 3125, 9, 102, 3, 102, 3127, 8, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3153, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3164, 8, 104, 1, 105, 1, 105, 1, 105, 3, 105, 3169, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 3176, 8, 105, 10, 105, 12, 105, 3179, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3189, 8, 106, 10, 106, 12, 106, 3192, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3206, 8, 106, 1, 107, 1, 107, 3, 107, 3210, 8, 107, 1, 107, 1, 107, 3, 107, 3214, 8, 107, 1, 107, 1, 107, 3, 107, 3218, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3224, 8, 107, 1, 107, 1, 107, 3, 107, 3228, 8, 107, 1, 107, 1, 107, 3, 107, 3232, 8, 107, 1, 107, 1, 107, 3, 107, 3236, 8, 107, 3, 107, 3238, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3248, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3255, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3264, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 3271, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 3278, 8, 113, 1, 114, 1, 114, 1, 114, 5, 114, 3283, 8, 114, 10, 114, 12, 114, 3286, 9, 114, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3292, 8, 115, 10, 115, 12, 115, 3295, 9, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3304, 8, 116, 10, 116, 12, 116, 3307, 9, 116, 3, 116, 3309, 8, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 5, 117, 3318, 8, 117, 10, 117, 12, 117, 3321, 9, 117, 3, 117, 3323, 8, 117, 1, 117, 1, 117, 1, 118, 3, 118, 3328, 8, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 3, 120, 3338, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3354, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 4, 121, 3366, 8, 121, 11, 121, 12, 121, 3367, 1, 121, 3, 121, 3371, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 4, 121, 3378, 8, 121, 11, 121, 12, 121, 3379, 1, 121, 3, 121, 3383, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3393, 8, 121, 10, 121, 12, 121, 3396, 9, 121, 1, 121, 3, 121, 3399, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3412, 8, 121, 10, 121, 12, 121, 3415, 9, 121, 1, 121, 3, 121, 3418, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3424, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3434, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3446, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3455, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 3474, 8, 125, 10, 125, 12, 125, 3477, 9, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3482, 8, 125, 1, 126, 1, 126, 1, 126, 4, 126, 3487, 8, 126, 11, 126, 12, 126, 3488, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3497, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 3502, 8, 128, 1, 129, 3, 129, 3505, 8, 129, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 3511, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3524, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3537, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3550, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3563, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3570, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3577, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 3589, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 5, 144, 3598, 8, 144, 10, 144, 12, 144, 3601, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 3, 147, 3614, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3621, 8, 148, 1, 149, 1, 149, 1, 149, 5, 149, 3626, 8, 149, 10, 149, 12, 149, 3629, 9, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 3638, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3645, 8, 151, 1, 152, 3, 152, 3648, 8, 152, 1, 152, 1, 152, 3, 152, 3652, 8, 152, 1, 152, 1, 152, 3, 152, 3656, 8, 152, 1, 152, 3, 152, 3659, 8, 152, 1, 153, 1, 153, 3, 153, 3663, 8, 153, 1, 154, 1, 154, 1, 154, 0, 7, 46, 78, 144, 148, 150, 190, 210, 155, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 0, 36, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 304, 304, 306, 306, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4212, 0, 313, 1, 0, 0, 0, 2, 318, 1, 0, 0, 0, 4, 320, 1, 0, 0, 0, 6, 324, 1, 0, 0, 0, 8, 328, 1, 0, 0, 0, 10, 332, 1, 0, 0, 0, 12, 336, 1, 0, 0, 0, 14, 340, 1, 0, 0, 0, 16, 1238, 1, 0, 0, 0, 18, 1241, 1, 0, 0, 0, 20, 1245, 1, 0, 0, 0, 22, 1255, 1, 0, 0, 0, 24, 1259, 1, 0, 0, 0, 26, 1273, 1, 0, 0, 0, 28, 1275, 1, 0, 0, 0, 30, 1289, 1, 0, 0, 0, 32, 1295, 1, 0, 0, 0, 34, 1299, 1, 0, 0, 0, 36, 1307, 1, 0, 0, 0, 38, 1313, 1, 0, 0, 0, 40, 1315, 1, 0, 0, 0, 42, 1352, 1, 0, 0, 0, 44, 1354, 1, 0, 0, 0, 46, 1356, 1, 0, 0, 0, 48, 1392, 1, 0, 0, 0, 50, 1396, 1, 0, 0, 0, 52, 1405, 1, 0, 0, 0, 54, 1450, 1, 0, 0, 0, 56, 1453, 1, 0, 0, 0, 58, 1457, 1, 0, 0, 0, 60, 1467, 1, 0, 0, 0, 62, 1515, 1, 0, 0, 0, 64, 1530, 1, 0, 0, 0, 66, 1534, 1, 0, 0, 0, 68, 1536, 1, 0, 0, 0, 70, 1543, 1, 0, 0, 0, 72, 1565, 1, 0, 0, 0, 74, 1574, 1, 0, 0, 0, 76, 1594, 1, 0, 0, 0, 78, 1596, 1, 0, 0, 0, 80, 1635, 1, 0, 0, 0, 82, 1651, 1, 0, 0, 0, 84, 1653, 1, 0, 0, 0, 86, 1662, 1, 0, 0, 0, 88, 1664, 1, 0, 0, 0, 90, 1672, 1, 0, 0, 0, 92, 1678, 1, 0, 0, 0, 94, 1680, 1, 0, 0, 0, 96, 1758, 1, 0, 0, 0, 98, 1773, 1, 0, 0, 0, 100, 1784, 1, 0, 0, 0, 102, 1805, 1, 0, 0, 0, 104, 1807, 1, 0, 0, 0, 106, 1820, 1, 0, 0, 0, 108, 1824, 1, 0, 0, 0, 110, 1834, 1, 0, 0, 0, 112, 1845, 1, 0, 0, 0, 114, 1856, 1, 0, 0, 0, 116, 1938, 1, 0, 0, 0, 118, 2017, 1, 0, 0, 0, 120, 2044, 1, 0, 0, 0, 122, 2046, 1, 0, 0, 0, 124, 2053, 1, 0, 0, 0, 126, 2065, 1, 0, 0, 0, 128, 2067, 1, 0, 0, 0, 130, 2095, 1, 0, 0, 0, 132, 2102, 1, 0, 0, 0, 134, 2167, 1, 0, 0, 0, 136, 2187, 1, 0, 0, 0, 138, 2189, 1, 0, 0, 0, 140, 2193, 1, 0, 0, 0, 142, 2206, 1, 0, 0, 0, 144, 2215, 1, 0, 0, 0, 146, 2289, 1, 0, 0, 0, 148, 2295, 1, 0, 0, 0, 150, 2767, 1, 0, 0, 0, 152, 2782, 1, 0, 0, 0, 154, 2800, 1, 0, 0, 0, 156, 2805, 1, 0, 0, 0, 158, 2810, 1, 0, 0, 0, 160, 2814, 1, 0, 0, 0, 162, 2820, 1, 0, 0, 0, 164, 2833, 1, 0, 0, 0, 166, 2841, 1, 0, 0, 0, 168, 2854, 1, 0, 0, 0, 170, 2856, 1, 0, 0, 0, 172, 2862, 1, 0, 0, 0, 174, 2870, 1, 0, 0, 0, 176, 2878, 1, 0, 0, 0, 178, 2880, 1, 0, 0, 0, 180, 2882, 1, 0, 0, 0, 182, 2884, 1, 0, 0, 0, 184, 2886, 1, 0, 0, 0, 186, 2896, 1, 0, 0, 0, 188, 2898, 1, 0, 0, 0, 190, 2971, 1, 0, 0, 0, 192, 2989, 1, 0, 0, 0, 194, 2993, 1, 0, 0, 0, 196, 2995, 1, 0, 0, 0, 198, 3000, 1, 0, 0, 0, 200, 3069, 1, 0, 0, 0, 202, 3071, 1, 0, 0, 0, 204, 3088, 1, 0, 0, 0, 206, 3152, 1, 0, 0, 0, 208, 3163, 1, 0, 0, 0, 210, 3165, 1, 0, 0, 0, 212, 3205, 1, 0, 0, 0, 214, 3237, 1, 0, 0, 0, 216, 3239, 1, 0, 0, 0, 218, 3247, 1, 0, 0, 0, 220, 3254, 1, 0, 0, 0, 222, 3263, 1, 0, 0, 0, 224, 3270, 1, 0, 0, 0, 226, 3277, 1, 0, 0, 0, 228, 3279, 1, 0, 0, 0, 230, 3287, 1, 0, 0, 0, 232, 3298, 1, 0, 0, 0, 234, 3312, 1, 0, 0, 0, 236, 3327, 1, 0, 0, 0, 238, 3331, 1, 0, 0, 0, 240, 3353, 1, 0, 0, 0, 242, 3454, 1, 0, 0, 0, 244, 3456, 1, 0, 0, 0, 246, 3461, 1, 0, 0, 0, 248, 3466, 1, 0, 0, 0, 250, 3469, 1, 0, 0, 0, 252, 3486, 1, 0, 0, 0, 254, 3496, 1, 0, 0, 0, 256, 3501, 1, 0, 0, 0, 258, 3504, 1, 0, 0, 0, 260, 3510, 1, 0, 0, 0, 262, 3523, 1, 0, 0, 0, 264, 3536, 1, 0, 0, 0, 266, 3549, 1, 0, 0, 0, 268, 3562, 1, 0, 0, 0, 270, 3569, 1, 0, 0, 0, 272, 3576, 1, 0, 0, 0, 274, 3578, 1, 0, 0, 0, 276, 3580, 1, 0, 0, 0, 278, 3582, 1, 0, 0, 0, 280, 3584, 1, 0, 0, 0, 282, 3588, 1, 0, 0, 0, 284, 3590, 1, 0, 0, 0, 286, 3592, 1, 0, 0, 0, 288, 3594, 1, 0, 0, 0, 290, 3602, 1, 0, 0, 0, 292, 3608, 1, 0, 0, 0, 294, 3613, 1, 0, 0, 0, 296, 3620, 1, 0, 0, 0, 298, 3622, 1, 0, 0, 0, 300, 3637, 1, 0, 0, 0, 302, 3644, 1, 0, 0, 0, 304, 3658, 1, 0, 0, 0, 306, 3662, 1, 0, 0, 0, 308, 3664, 1, 0, 0, 0, 310, 312, 3, 2, 1, 0, 311, 310, 1, 0, 0, 0, 312, 315, 1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 316, 1, 0, 0, 0, 315, 313, 1, 0, 0, 0, 316, 317, 5, 0, 0, 1, 317, 1, 1, 0, 0, 0, 318, 319, 3, 4, 2, 0, 319, 3, 1, 0, 0, 0, 320, 322, 3, 16, 8, 0, 321, 323, 5, 325, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 5, 1, 0, 0, 0, 324, 326, 3, 142, 71, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 7, 1, 0, 0, 0, 328, 330, 3, 228, 114, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 9, 1, 0, 0, 0, 332, 334, 3, 190, 95, 0, 333, 335, 5, 325, 0, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 11, 1, 0, 0, 0, 336, 338, 3, 210, 105, 0, 337, 339, 5, 325, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 13, 1, 0, 0, 0, 340, 341, 3, 230, 115, 0, 341, 342, 5, 0, 0, 1, 342, 15, 1, 0, 0, 0, 343, 1239, 3, 18, 9, 0, 344, 345, 5, 288, 0, 0, 345, 1239, 3, 270, 135, 0, 346, 347, 5, 53, 0, 0, 347, 351, 5, 42, 0, 0, 348, 349, 5, 119, 0, 0, 349, 350, 5, 182, 0, 0, 350, 352, 5, 94, 0, 0, 351, 348, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 3, 276, 138, 0, 354, 355, 5, 290, 0, 0, 355, 358, 3, 302, 151, 0, 356, 357, 5, 46, 0, 0, 357, 359, 3, 174, 87, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 31, 0, 0, 361, 363, 3, 296, 148, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 366, 1, 0, 0, 0, 364, 365, 5, 304, 0, 0, 365, 367, 3, 32, 16, 0, 366, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 1239, 1, 0, 0, 0, 368, 369, 5, 83, 0, 0, 369, 372, 5, 42, 0, 0, 370, 371, 5, 119, 0, 0, 371, 373, 5, 94, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 376, 3, 274, 137, 0, 375, 377, 7, 0, 0, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 1239, 1, 0, 0, 0, 378, 379, 5, 53, 0, 0, 379, 383, 5, 243, 0, 0, 380, 381, 5, 119, 0, 0, 381, 382, 5, 182, 0, 0, 382, 384, 5, 94, 0, 0, 383, 380, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 3, 272, 136, 0, 386, 387, 5, 31, 0, 0, 387, 389, 3, 296, 148, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 392, 1, 0, 0, 0, 390, 391, 5, 304, 0, 0, 391, 393, 3, 32, 16, 0, 392, 390, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 1239, 1, 0, 0, 0, 394, 395, 5, 83, 0, 0, 395, 398, 5, 243, 0, 0, 396, 397, 5, 119, 0, 0, 397, 399, 5, 94, 0, 0, 398, 396, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 402, 3, 270, 135, 0, 401, 403, 7, 0, 0, 0, 402, 401, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 1239, 1, 0, 0, 0, 404, 405, 5, 23, 0, 0, 405, 406, 5, 243, 0, 0, 406, 407, 3, 270, 135, 0, 407, 408, 5, 223, 0, 0, 408, 409, 5, 269, 0, 0, 409, 410, 3, 272, 136, 0, 410, 1239, 1, 0, 0, 0, 411, 412, 5, 23, 0, 0, 412, 413, 5, 243, 0, 0, 413, 414, 3, 270, 135, 0, 414, 415, 5, 251, 0, 0, 415, 416, 5, 31, 0, 0, 416, 417, 3, 296, 148, 0, 417, 1239, 1, 0, 0, 0, 418, 421, 5, 53, 0, 0, 419, 420, 5, 194, 0, 0, 420, 422, 5, 226, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 427, 5, 260, 0, 0, 424, 425, 5, 119, 0, 0, 425, 426, 5, 182, 0, 0, 426, 428, 5, 94, 0, 0, 427, 424, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 431, 3, 264, 132, 0, 430, 432, 3, 110, 55, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433, 434, 5, 46, 0, 0, 434, 436, 3, 174, 87, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 438, 5, 304, 0, 0, 438, 440, 3, 32, 16, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 447, 5, 28, 0, 0, 442, 448, 3, 18, 9, 0, 443, 444, 5, 1, 0, 0, 444, 445, 3, 18, 9, 0, 445, 446, 5, 2, 0, 0, 446, 448, 1, 0, 0, 0, 447, 442, 1, 0, 0, 0, 447, 443, 1, 0, 0, 0, 448, 454, 1, 0, 0, 0, 449, 451, 5, 304, 0, 0, 450, 452, 5, 179, 0, 0, 451, 450, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 455, 5, 65, 0, 0, 454, 449, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 1239, 1, 0, 0, 0, 456, 459, 5, 53, 0, 0, 457, 458, 5, 194, 0, 0, 458, 460, 5, 226, 0, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 465, 5, 260, 0, 0, 462, 463, 5, 119, 0, 0, 463, 464, 5, 182, 0, 0, 464, 466, 5, 94, 0, 0, 465, 462, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 468, 3, 264, 132, 0, 468, 469, 5, 1, 0, 0, 469, 474, 3, 26, 13, 0, 470, 471, 5, 3, 0, 0, 471, 473, 3, 26, 13, 0, 472, 470, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 477, 480, 5, 2, 0, 0, 478, 479, 5, 46, 0, 0, 479, 481, 3, 174, 87, 0, 480, 478, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 483, 5, 304, 0, 0, 483, 485, 3, 32, 16, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 1239, 1, 0, 0, 0, 486, 487, 5, 83, 0, 0, 487, 490, 5, 260, 0, 0, 488, 489, 5, 119, 0, 0, 489, 491, 5, 94, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 1239, 3, 262, 131, 0, 493, 494, 5, 127, 0, 0, 494, 495, 5, 130, 0, 0, 495, 497, 3, 262, 131, 0, 496, 498, 3, 112, 56, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 3, 18, 9, 0, 500, 1239, 1, 0, 0, 0, 501, 502, 5, 73, 0, 0, 502, 503, 5, 105, 0, 0, 503, 505, 3, 262, 131, 0, 504, 506, 3, 54, 27, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 1239, 1, 0, 0, 0, 507, 508, 5, 274, 0, 0, 508, 509, 5, 260, 0, 0, 509, 1239, 3, 262, 131, 0, 510, 511, 5, 46, 0, 0, 511, 512, 5, 190, 0, 0, 512, 513, 5, 260, 0, 0, 513, 514, 3, 262, 131, 0, 514, 517, 5, 133, 0, 0, 515, 518, 3, 174, 87, 0, 516, 518, 5, 183, 0, 0, 517, 515, 1, 0, 0, 0, 517, 516, 1, 0, 0, 0, 518, 1239, 1, 0, 0, 0, 519, 520, 5, 46, 0, 0, 520, 521, 5, 190, 0, 0, 521, 522, 5, 299, 0, 0, 522, 523, 3, 266, 133, 0, 523, 526, 5, 133, 0, 0, 524, 527, 3, 174, 87, 0, 525, 527, 5, 183, 0, 0, 526, 524, 1, 0, 0, 0, 526, 525, 1, 0, 0, 0, 527, 1239, 1, 0, 0, 0, 528, 529, 5, 46, 0, 0, 529, 530, 5, 190, 0, 0, 530, 531, 5, 44, 0, 0, 531, 532, 3, 282, 141, 0, 532, 535, 5, 133, 0, 0, 533, 536, 3, 174, 87, 0, 534, 536, 5, 183, 0, 0, 535, 533, 1, 0, 0, 0, 535, 534, 1, 0, 0, 0, 536, 1239, 1, 0, 0, 0, 537, 538, 5, 23, 0, 0, 538, 541, 5, 260, 0, 0, 539, 540, 5, 119, 0, 0, 540, 542, 5, 94, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 3, 262, 131, 0, 544, 545, 5, 223, 0, 0, 545, 546, 5, 269, 0, 0, 546, 547, 3, 264, 132, 0, 547, 1239, 1, 0, 0, 0, 548, 549, 5, 23, 0, 0, 549, 552, 5, 260, 0, 0, 550, 551, 5, 119, 0, 0, 551, 553, 5, 94, 0, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 3, 262, 131, 0, 555, 556, 5, 19, 0, 0, 556, 560, 5, 44, 0, 0, 557, 558, 5, 119, 0, 0, 558, 559, 5, 182, 0, 0, 559, 561, 5, 94, 0, 0, 560, 557, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 3, 28, 14, 0, 563, 1239, 1, 0, 0, 0, 564, 565, 5, 23, 0, 0, 565, 568, 5, 260, 0, 0, 566, 567, 5, 119, 0, 0, 567, 569, 5, 94, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 3, 262, 131, 0, 571, 572, 5, 223, 0, 0, 572, 575, 5, 44, 0, 0, 573, 574, 5, 119, 0, 0, 574, 576, 5, 94, 0, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 3, 282, 141, 0, 578, 579, 5, 269, 0, 0, 579, 580, 3, 286, 143, 0, 580, 1239, 1, 0, 0, 0, 581, 582, 5, 23, 0, 0, 582, 585, 5, 260, 0, 0, 583, 584, 5, 119, 0, 0, 584, 586, 5, 94, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 3, 262, 131, 0, 588, 589, 5, 83, 0, 0, 589, 592, 5, 44, 0, 0, 590, 591, 5, 119, 0, 0, 591, 593, 5, 94, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 3, 282, 141, 0, 595, 1239, 1, 0, 0, 0, 596, 597, 5, 23, 0, 0, 597, 600, 5, 260, 0, 0, 598, 599, 5, 119, 0, 0, 599, 601, 5, 94, 0, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 3, 262, 131, 0, 603, 604, 5, 23, 0, 0, 604, 605, 5, 44, 0, 0, 605, 606, 3, 282, 141, 0, 606, 607, 5, 251, 0, 0, 607, 608, 5, 65, 0, 0, 608, 609, 5, 276, 0, 0, 609, 610, 3, 190, 95, 0, 610, 1239, 1, 0, 0, 0, 611, 612, 5, 23, 0, 0, 612, 615, 5, 260, 0, 0, 613, 614, 5, 119, 0, 0, 614, 616, 5, 94, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 3, 262, 131, 0, 618, 619, 5, 23, 0, 0, 619, 620, 5, 44, 0, 0, 620, 621, 3, 282, 141, 0, 621, 622, 5, 83, 0, 0, 622, 623, 5, 182, 0, 0, 623, 624, 5, 183, 0, 0, 624, 1239, 1, 0, 0, 0, 625, 626, 5, 23, 0, 0, 626, 627, 5, 260, 0, 0, 627, 628, 3, 262, 131, 0, 628, 629, 5, 251, 0, 0, 629, 630, 5, 31, 0, 0, 630, 631, 3, 296, 148, 0, 631, 1239, 1, 0, 0, 0, 632, 633, 5, 23, 0, 0, 633, 634, 5, 260, 0, 0, 634, 635, 3, 262, 131, 0, 635, 636, 5, 251, 0, 0, 636, 637, 5, 216, 0, 0, 637, 638, 3, 34, 17, 0, 638, 1239, 1, 0, 0, 0, 639, 640, 5, 23, 0, 0, 640, 641, 5, 260, 0, 0, 641, 642, 3, 262, 131, 0, 642, 643, 5, 93, 0, 0, 643, 656, 3, 278, 139, 0, 644, 653, 5, 1, 0, 0, 645, 650, 3, 224, 112, 0, 646, 647, 5, 3, 0, 0, 647, 649, 3, 224, 112, 0, 648, 646, 1, 0, 0, 0, 649, 652, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 653, 645, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 657, 5, 2, 0, 0, 656, 644, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 1, 0, 0, 0, 658, 660, 3, 54, 27, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 1239, 1, 0, 0, 0, 661, 662, 5, 24, 0, 0, 662, 665, 3, 262, 131, 0, 663, 664, 5, 304, 0, 0, 664, 666, 3, 32, 16, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 1239, 1, 0, 0, 0, 667, 670, 5, 53, 0, 0, 668, 669, 5, 194, 0, 0, 669, 671, 5, 226, 0, 0, 670, 668, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 167, 0, 0, 673, 677, 5, 299, 0, 0, 674, 675, 5, 119, 0, 0, 675, 676, 5, 182, 0, 0, 676, 678, 5, 94, 0, 0, 677, 674, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 683, 3, 268, 134, 0, 680, 681, 5, 109, 0, 0, 681, 682, 5, 208, 0, 0, 682, 684, 3, 184, 92, 0, 683, 680, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 686, 5, 46, 0, 0, 686, 688, 3, 174, 87, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 690, 5, 304, 0, 0, 690, 692, 3, 32, 16, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 5, 28, 0, 0, 694, 695, 3, 18, 9, 0, 695, 1239, 1, 0, 0, 0, 696, 699, 5, 53, 0, 0, 697, 698, 5, 194, 0, 0, 698, 700, 5, 226, 0, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 299, 0, 0, 702, 705, 3, 268, 134, 0, 703, 704, 5, 46, 0, 0, 704, 706, 3, 174, 87, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 708, 5, 246, 0, 0, 708, 710, 7, 1, 0, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 713, 1, 0, 0, 0, 711, 712, 5, 304, 0, 0, 712, 714, 3, 32, 16, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 5, 28, 0, 0, 716, 717, 3, 18, 9, 0, 717, 1239, 1, 0, 0, 0, 718, 719, 5, 222, 0, 0, 719, 720, 5, 167, 0, 0, 720, 721, 5, 299, 0, 0, 721, 1239, 3, 266, 133, 0, 722, 723, 5, 83, 0, 0, 723, 724, 5, 167, 0, 0, 724, 727, 5, 299, 0, 0, 725, 726, 5, 119, 0, 0, 726, 728, 5, 94, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 1239, 3, 266, 133, 0, 730, 731, 5, 23, 0, 0, 731, 732, 5, 167, 0, 0, 732, 735, 5, 299, 0, 0, 733, 734, 5, 119, 0, 0, 734, 736, 5, 94, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 3, 266, 133, 0, 738, 739, 5, 223, 0, 0, 739, 740, 5, 269, 0, 0, 740, 741, 3, 268, 134, 0, 741, 1239, 1, 0, 0, 0, 742, 743, 5, 23, 0, 0, 743, 744, 5, 167, 0, 0, 744, 745, 5, 299, 0, 0, 745, 746, 3, 266, 133, 0, 746, 747, 5, 251, 0, 0, 747, 748, 5, 216, 0, 0, 748, 749, 3, 34, 17, 0, 749, 1239, 1, 0, 0, 0, 750, 751, 5, 83, 0, 0, 751, 754, 5, 299, 0, 0, 752, 753, 5, 119, 0, 0, 753, 755, 5, 94, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 1239, 3, 266, 133, 0, 757, 758, 5, 23, 0, 0, 758, 759, 5, 299, 0, 0, 759, 760, 3, 266, 133, 0, 760, 761, 5, 223, 0, 0, 761, 762, 5, 269, 0, 0, 762, 763, 3, 268, 134, 0, 763, 1239, 1, 0, 0, 0, 764, 765, 5, 23, 0, 0, 765, 766, 5, 299, 0, 0, 766, 767, 3, 266, 133, 0, 767, 768, 5, 251, 0, 0, 768, 769, 5, 31, 0, 0, 769, 770, 3, 296, 148, 0, 770, 1239, 1, 0, 0, 0, 771, 772, 5, 37, 0, 0, 772, 773, 3, 278, 139, 0, 773, 782, 5, 1, 0, 0, 774, 779, 3, 224, 112, 0, 775, 776, 5, 3, 0, 0, 776, 778, 3, 224, 112, 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, 774, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 5, 2, 0, 0, 785, 1239, 1, 0, 0, 0, 786, 789, 5, 53, 0, 0, 787, 788, 5, 194, 0, 0, 788, 790, 5, 226, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 1239, 3, 230, 115, 0, 792, 793, 5, 83, 0, 0, 793, 796, 5, 107, 0, 0, 794, 795, 5, 119, 0, 0, 795, 797, 5, 94, 0, 0, 796, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 1239, 3, 234, 117, 0, 799, 800, 5, 53, 0, 0, 800, 801, 5, 235, 0, 0, 801, 805, 3, 302, 151, 0, 802, 803, 5, 304, 0, 0, 803, 804, 5, 20, 0, 0, 804, 806, 3, 294, 147, 0, 805, 802, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 809, 1, 0, 0, 0, 807, 808, 5, 122, 0, 0, 808, 810, 3, 274, 137, 0, 809, 807, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 1239, 1, 0, 0, 0, 811, 812, 5, 83, 0, 0, 812, 813, 5, 235, 0, 0, 813, 816, 3, 302, 151, 0, 814, 815, 5, 122, 0, 0, 815, 817, 3, 274, 137, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 1239, 1, 0, 0, 0, 818, 819, 5, 110, 0, 0, 819, 824, 3, 300, 150, 0, 820, 821, 5, 3, 0, 0, 821, 823, 3, 300, 150, 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, 827, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 828, 5, 269, 0, 0, 828, 833, 3, 296, 148, 0, 829, 830, 5, 3, 0, 0, 830, 832, 3, 296, 148, 0, 831, 829, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 839, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 837, 5, 304, 0, 0, 837, 838, 5, 20, 0, 0, 838, 840, 5, 193, 0, 0, 839, 836, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 844, 1, 0, 0, 0, 841, 842, 5, 111, 0, 0, 842, 843, 5, 36, 0, 0, 843, 845, 3, 294, 147, 0, 844, 841, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 847, 5, 122, 0, 0, 847, 849, 3, 274, 137, 0, 848, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 1239, 1, 0, 0, 0, 850, 861, 5, 110, 0, 0, 851, 856, 3, 300, 150, 0, 852, 853, 5, 3, 0, 0, 853, 855, 3, 300, 150, 0, 854, 852, 1, 0, 0, 0, 855, 858, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 862, 1, 0, 0, 0, 858, 856, 1, 0, 0, 0, 859, 860, 5, 22, 0, 0, 860, 862, 5, 215, 0, 0, 861, 851, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 190, 0, 0, 864, 865, 3, 258, 129, 0, 865, 866, 5, 269, 0, 0, 866, 870, 3, 296, 148, 0, 867, 868, 5, 304, 0, 0, 868, 869, 5, 110, 0, 0, 869, 871, 5, 193, 0, 0, 870, 867, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 1239, 1, 0, 0, 0, 872, 876, 5, 233, 0, 0, 873, 874, 5, 20, 0, 0, 874, 875, 5, 193, 0, 0, 875, 877, 5, 103, 0, 0, 876, 873, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 883, 3, 300, 150, 0, 879, 880, 5, 3, 0, 0, 880, 882, 3, 300, 150, 0, 881, 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 886, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 887, 5, 105, 0, 0, 887, 892, 3, 296, 148, 0, 888, 889, 5, 3, 0, 0, 889, 891, 3, 296, 148, 0, 890, 888, 1, 0, 0, 0, 891, 894, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 898, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 896, 5, 111, 0, 0, 896, 897, 5, 36, 0, 0, 897, 899, 3, 294, 147, 0, 898, 895, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 902, 1, 0, 0, 0, 900, 901, 5, 122, 0, 0, 901, 903, 3, 274, 137, 0, 902, 900, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 1239, 1, 0, 0, 0, 904, 908, 5, 233, 0, 0, 905, 906, 5, 110, 0, 0, 906, 907, 5, 193, 0, 0, 907, 909, 5, 103, 0, 0, 908, 905, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 920, 1, 0, 0, 0, 910, 915, 3, 300, 150, 0, 911, 912, 5, 3, 0, 0, 912, 914, 3, 300, 150, 0, 913, 911, 1, 0, 0, 0, 914, 917, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 921, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 918, 919, 5, 22, 0, 0, 919, 921, 5, 215, 0, 0, 920, 910, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 5, 190, 0, 0, 923, 924, 3, 258, 129, 0, 924, 925, 5, 105, 0, 0, 925, 926, 3, 296, 148, 0, 926, 1239, 1, 0, 0, 0, 927, 938, 5, 74, 0, 0, 928, 933, 3, 254, 127, 0, 929, 930, 5, 3, 0, 0, 930, 932, 3, 254, 127, 0, 931, 929, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 939, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 22, 0, 0, 937, 939, 5, 215, 0, 0, 938, 928, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 5, 190, 0, 0, 941, 942, 3, 258, 129, 0, 942, 943, 5, 269, 0, 0, 943, 944, 3, 296, 148, 0, 944, 1239, 1, 0, 0, 0, 945, 946, 5, 251, 0, 0, 946, 950, 5, 235, 0, 0, 947, 951, 5, 22, 0, 0, 948, 951, 5, 180, 0, 0, 949, 951, 3, 302, 151, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 954, 1, 0, 0, 0, 952, 953, 5, 122, 0, 0, 953, 955, 3, 274, 137, 0, 954, 952, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 1239, 1, 0, 0, 0, 956, 957, 5, 253, 0, 0, 957, 960, 5, 112, 0, 0, 958, 959, 5, 190, 0, 0, 959, 961, 3, 258, 129, 0, 960, 958, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 1239, 1, 0, 0, 0, 962, 974, 5, 95, 0, 0, 963, 964, 5, 1, 0, 0, 964, 969, 3, 218, 109, 0, 965, 966, 5, 3, 0, 0, 966, 968, 3, 218, 109, 0, 967, 965, 1, 0, 0, 0, 968, 971, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 972, 973, 5, 2, 0, 0, 973, 975, 1, 0, 0, 0, 974, 963, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 1239, 3, 16, 8, 0, 977, 978, 5, 95, 0, 0, 978, 980, 5, 24, 0, 0, 979, 981, 5, 297, 0, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 1239, 3, 16, 8, 0, 983, 984, 5, 253, 0, 0, 984, 985, 5, 53, 0, 0, 985, 986, 5, 260, 0, 0, 986, 1239, 3, 262, 131, 0, 987, 988, 5, 253, 0, 0, 988, 989, 5, 53, 0, 0, 989, 990, 5, 243, 0, 0, 990, 1239, 3, 270, 135, 0, 991, 992, 5, 253, 0, 0, 992, 993, 5, 53, 0, 0, 993, 994, 5, 299, 0, 0, 994, 1239, 3, 266, 133, 0, 995, 996, 5, 253, 0, 0, 996, 997, 5, 53, 0, 0, 997, 998, 5, 167, 0, 0, 998, 999, 5, 299, 0, 0, 999, 1239, 3, 266, 133, 0, 1000, 1001, 5, 253, 0, 0, 1001, 1002, 5, 53, 0, 0, 1002, 1003, 5, 107, 0, 0, 1003, 1239, 3, 278, 139, 0, 1004, 1005, 5, 253, 0, 0, 1005, 1008, 5, 261, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1009, 3, 270, 135, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1016, 1, 0, 0, 0, 1010, 1011, 5, 154, 0, 0, 1011, 1014, 3, 174, 87, 0, 1012, 1013, 5, 90, 0, 0, 1013, 1015, 3, 174, 87, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1017, 1, 0, 0, 0, 1016, 1010, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1239, 1, 0, 0, 0, 1018, 1019, 5, 253, 0, 0, 1019, 1022, 5, 244, 0, 0, 1020, 1021, 7, 2, 0, 0, 1021, 1023, 3, 274, 137, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1030, 1, 0, 0, 0, 1024, 1025, 5, 154, 0, 0, 1025, 1028, 3, 174, 87, 0, 1026, 1027, 5, 90, 0, 0, 1027, 1029, 3, 174, 87, 0, 1028, 1026, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1031, 1, 0, 0, 0, 1030, 1024, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1239, 1, 0, 0, 0, 1032, 1033, 5, 253, 0, 0, 1033, 1040, 5, 43, 0, 0, 1034, 1035, 5, 154, 0, 0, 1035, 1038, 3, 174, 87, 0, 1036, 1037, 5, 90, 0, 0, 1037, 1039, 3, 174, 87, 0, 1038, 1036, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1041, 1, 0, 0, 0, 1040, 1034, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1239, 1, 0, 0, 0, 1042, 1043, 5, 253, 0, 0, 1043, 1044, 5, 45, 0, 0, 1044, 1045, 7, 2, 0, 0, 1045, 1052, 3, 260, 130, 0, 1046, 1047, 5, 154, 0, 0, 1047, 1050, 3, 174, 87, 0, 1048, 1049, 5, 90, 0, 0, 1049, 1051, 3, 174, 87, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1046, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1239, 1, 0, 0, 0, 1054, 1055, 5, 253, 0, 0, 1055, 1056, 5, 256, 0, 0, 1056, 1057, 5, 103, 0, 0, 1057, 1239, 3, 260, 130, 0, 1058, 1059, 5, 253, 0, 0, 1059, 1060, 5, 256, 0, 0, 1060, 1061, 5, 103, 0, 0, 1061, 1062, 5, 1, 0, 0, 1062, 1063, 3, 18, 9, 0, 1063, 1064, 5, 2, 0, 0, 1064, 1239, 1, 0, 0, 0, 1065, 1067, 5, 253, 0, 0, 1066, 1068, 5, 56, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1072, 5, 236, 0, 0, 1070, 1071, 7, 2, 0, 0, 1071, 1073, 3, 274, 137, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1239, 1, 0, 0, 0, 1074, 1075, 5, 253, 0, 0, 1075, 1076, 5, 235, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1078, 7, 2, 0, 0, 1078, 1080, 3, 274, 137, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1239, 1, 0, 0, 0, 1081, 1082, 5, 76, 0, 0, 1082, 1239, 3, 260, 130, 0, 1083, 1084, 5, 75, 0, 0, 1084, 1239, 3, 260, 130, 0, 1085, 1086, 5, 253, 0, 0, 1086, 1089, 5, 108, 0, 0, 1087, 1088, 7, 2, 0, 0, 1088, 1090, 3, 270, 135, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1097, 1, 0, 0, 0, 1091, 1092, 5, 154, 0, 0, 1092, 1095, 3, 174, 87, 0, 1093, 1094, 5, 90, 0, 0, 1094, 1096, 3, 174, 87, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1091, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1239, 1, 0, 0, 0, 1099, 1100, 5, 253, 0, 0, 1100, 1107, 5, 250, 0, 0, 1101, 1102, 5, 154, 0, 0, 1102, 1105, 3, 174, 87, 0, 1103, 1104, 5, 90, 0, 0, 1104, 1106, 3, 174, 87, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1108, 1, 0, 0, 0, 1107, 1101, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1239, 1, 0, 0, 0, 1109, 1110, 5, 251, 0, 0, 1110, 1111, 5, 250, 0, 0, 1111, 1112, 5, 31, 0, 0, 1112, 1239, 3, 306, 153, 0, 1113, 1114, 5, 227, 0, 0, 1114, 1115, 5, 250, 0, 0, 1115, 1239, 5, 31, 0, 0, 1116, 1117, 5, 251, 0, 0, 1117, 1118, 5, 250, 0, 0, 1118, 1119, 3, 288, 144, 0, 1119, 1120, 5, 312, 0, 0, 1120, 1121, 3, 142, 71, 0, 1121, 1239, 1, 0, 0, 0, 1122, 1123, 5, 227, 0, 0, 1123, 1124, 5, 250, 0, 0, 1124, 1239, 3, 288, 144, 0, 1125, 1126, 5, 255, 0, 0, 1126, 1135, 5, 271, 0, 0, 1127, 1132, 3, 220, 110, 0, 1128, 1129, 5, 3, 0, 0, 1129, 1131, 3, 220, 110, 0, 1130, 1128, 1, 0, 0, 0, 1131, 1134, 1, 0, 0, 0, 1132, 1130, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1127, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1239, 1, 0, 0, 0, 1137, 1139, 5, 47, 0, 0, 1138, 1140, 5, 307, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1239, 1, 0, 0, 0, 1141, 1143, 5, 237, 0, 0, 1142, 1144, 5, 307, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1239, 1, 0, 0, 0, 1145, 1146, 5, 214, 0, 0, 1146, 1147, 3, 302, 151, 0, 1147, 1148, 5, 105, 0, 0, 1148, 1149, 3, 16, 8, 0, 1149, 1239, 1, 0, 0, 0, 1150, 1151, 5, 68, 0, 0, 1151, 1152, 5, 214, 0, 0, 1152, 1239, 3, 302, 151, 0, 1153, 1154, 5, 93, 0, 0, 1154, 1164, 3, 302, 151, 0, 1155, 1156, 5, 290, 0, 0, 1156, 1161, 3, 142, 71, 0, 1157, 1158, 5, 3, 0, 0, 1158, 1160, 3, 142, 71, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1163, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1165, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1155, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1239, 1, 0, 0, 0, 1166, 1167, 5, 93, 0, 0, 1167, 1168, 5, 121, 0, 0, 1168, 1178, 3, 174, 87, 0, 1169, 1170, 5, 290, 0, 0, 1170, 1175, 3, 142, 71, 0, 1171, 1172, 5, 3, 0, 0, 1172, 1174, 3, 142, 71, 0, 1173, 1171, 1, 0, 0, 0, 1174, 1177, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1239, 1, 0, 0, 0, 1180, 1181, 5, 76, 0, 0, 1181, 1182, 5, 126, 0, 0, 1182, 1239, 3, 302, 151, 0, 1183, 1184, 5, 76, 0, 0, 1184, 1185, 5, 198, 0, 0, 1185, 1239, 3, 302, 151, 0, 1186, 1187, 5, 251, 0, 0, 1187, 1188, 5, 205, 0, 0, 1188, 1239, 3, 228, 114, 0, 1189, 1190, 5, 251, 0, 0, 1190, 1191, 5, 267, 0, 0, 1191, 1194, 5, 311, 0, 0, 1192, 1195, 5, 157, 0, 0, 1193, 1195, 3, 142, 71, 0, 1194, 1192, 1, 0, 0, 0, 1194, 1193, 1, 0, 0, 0, 1195, 1239, 1, 0, 0, 0, 1196, 1197, 5, 287, 0, 0, 1197, 1198, 3, 262, 131, 0, 1198, 1199, 5, 251, 0, 0, 1199, 1204, 3, 216, 108, 0, 1200, 1201, 5, 3, 0, 0, 1201, 1203, 3, 216, 108, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1206, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1208, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1209, 3, 54, 27, 0, 1208, 1207, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1239, 1, 0, 0, 0, 1210, 1211, 5, 169, 0, 0, 1211, 1212, 5, 130, 0, 0, 1212, 1217, 3, 262, 131, 0, 1213, 1215, 5, 28, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1218, 3, 302, 151, 0, 1217, 1214, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 5, 290, 0, 0, 1220, 1221, 3, 78, 39, 0, 1221, 1222, 5, 190, 0, 0, 1222, 1224, 3, 142, 71, 0, 1223, 1225, 3, 200, 100, 0, 1224, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1224, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1239, 1, 0, 0, 0, 1228, 1229, 5, 253, 0, 0, 1229, 1230, 5, 46, 0, 0, 1230, 1231, 5, 190, 0, 0, 1231, 1232, 5, 260, 0, 0, 1232, 1239, 3, 262, 131, 0, 1233, 1234, 5, 253, 0, 0, 1234, 1235, 5, 46, 0, 0, 1235, 1236, 5, 190, 0, 0, 1236, 1237, 5, 44, 0, 0, 1237, 1239, 3, 282, 141, 0, 1238, 343, 1, 0, 0, 0, 1238, 344, 1, 0, 0, 0, 1238, 346, 1, 0, 0, 0, 1238, 368, 1, 0, 0, 0, 1238, 378, 1, 0, 0, 0, 1238, 394, 1, 0, 0, 0, 1238, 404, 1, 0, 0, 0, 1238, 411, 1, 0, 0, 0, 1238, 418, 1, 0, 0, 0, 1238, 456, 1, 0, 0, 0, 1238, 486, 1, 0, 0, 0, 1238, 493, 1, 0, 0, 0, 1238, 501, 1, 0, 0, 0, 1238, 507, 1, 0, 0, 0, 1238, 510, 1, 0, 0, 0, 1238, 519, 1, 0, 0, 0, 1238, 528, 1, 0, 0, 0, 1238, 537, 1, 0, 0, 0, 1238, 548, 1, 0, 0, 0, 1238, 564, 1, 0, 0, 0, 1238, 581, 1, 0, 0, 0, 1238, 596, 1, 0, 0, 0, 1238, 611, 1, 0, 0, 0, 1238, 625, 1, 0, 0, 0, 1238, 632, 1, 0, 0, 0, 1238, 639, 1, 0, 0, 0, 1238, 661, 1, 0, 0, 0, 1238, 667, 1, 0, 0, 0, 1238, 696, 1, 0, 0, 0, 1238, 718, 1, 0, 0, 0, 1238, 722, 1, 0, 0, 0, 1238, 730, 1, 0, 0, 0, 1238, 742, 1, 0, 0, 0, 1238, 750, 1, 0, 0, 0, 1238, 757, 1, 0, 0, 0, 1238, 764, 1, 0, 0, 0, 1238, 771, 1, 0, 0, 0, 1238, 786, 1, 0, 0, 0, 1238, 792, 1, 0, 0, 0, 1238, 799, 1, 0, 0, 0, 1238, 811, 1, 0, 0, 0, 1238, 818, 1, 0, 0, 0, 1238, 850, 1, 0, 0, 0, 1238, 872, 1, 0, 0, 0, 1238, 904, 1, 0, 0, 0, 1238, 927, 1, 0, 0, 0, 1238, 945, 1, 0, 0, 0, 1238, 956, 1, 0, 0, 0, 1238, 962, 1, 0, 0, 0, 1238, 977, 1, 0, 0, 0, 1238, 983, 1, 0, 0, 0, 1238, 987, 1, 0, 0, 0, 1238, 991, 1, 0, 0, 0, 1238, 995, 1, 0, 0, 0, 1238, 1000, 1, 0, 0, 0, 1238, 1004, 1, 0, 0, 0, 1238, 1018, 1, 0, 0, 0, 1238, 1032, 1, 0, 0, 0, 1238, 1042, 1, 0, 0, 0, 1238, 1054, 1, 0, 0, 0, 1238, 1058, 1, 0, 0, 0, 1238, 1065, 1, 0, 0, 0, 1238, 1074, 1, 0, 0, 0, 1238, 1081, 1, 0, 0, 0, 1238, 1083, 1, 0, 0, 0, 1238, 1085, 1, 0, 0, 0, 1238, 1099, 1, 0, 0, 0, 1238, 1109, 1, 0, 0, 0, 1238, 1113, 1, 0, 0, 0, 1238, 1116, 1, 0, 0, 0, 1238, 1122, 1, 0, 0, 0, 1238, 1125, 1, 0, 0, 0, 1238, 1137, 1, 0, 0, 0, 1238, 1141, 1, 0, 0, 0, 1238, 1145, 1, 0, 0, 0, 1238, 1150, 1, 0, 0, 0, 1238, 1153, 1, 0, 0, 0, 1238, 1166, 1, 0, 0, 0, 1238, 1180, 1, 0, 0, 0, 1238, 1183, 1, 0, 0, 0, 1238, 1186, 1, 0, 0, 0, 1238, 1189, 1, 0, 0, 0, 1238, 1196, 1, 0, 0, 0, 1238, 1210, 1, 0, 0, 0, 1238, 1228, 1, 0, 0, 0, 1238, 1233, 1, 0, 0, 0, 1239, 17, 1, 0, 0, 0, 1240, 1242, 3, 20, 10, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1244, 3, 22, 11, 0, 1244, 19, 1, 0, 0, 0, 1245, 1246, 5, 304, 0, 0, 1246, 1251, 3, 230, 115, 0, 1247, 1248, 5, 3, 0, 0, 1248, 1250, 3, 230, 115, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1253, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 21, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1256, 3, 24, 12, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 3, 40, 20, 0, 1258, 23, 1, 0, 0, 0, 1259, 1261, 5, 304, 0, 0, 1260, 1262, 5, 221, 0, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1268, 3, 72, 36, 0, 1264, 1265, 5, 3, 0, 0, 1265, 1267, 3, 72, 36, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 25, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1274, 3, 28, 14, 0, 1272, 1274, 3, 30, 15, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 27, 1, 0, 0, 0, 1275, 1276, 3, 286, 143, 0, 1276, 1279, 3, 190, 95, 0, 1277, 1278, 5, 182, 0, 0, 1278, 1280, 5, 183, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1282, 5, 46, 0, 0, 1282, 1284, 3, 174, 87, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1286, 5, 304, 0, 0, 1286, 1288, 3, 32, 16, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 29, 1, 0, 0, 0, 1289, 1290, 5, 154, 0, 0, 1290, 1293, 3, 262, 131, 0, 1291, 1292, 7, 3, 0, 0, 1292, 1294, 5, 216, 0, 0, 1293, 1291, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 31, 1, 0, 0, 0, 1295, 1296, 5, 1, 0, 0, 1296, 1297, 3, 34, 17, 0, 1297, 1298, 5, 2, 0, 0, 1298, 33, 1, 0, 0, 0, 1299, 1304, 3, 36, 18, 0, 1300, 1301, 5, 3, 0, 0, 1301, 1303, 3, 36, 18, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1306, 1, 0, 0, 0, 1304, 1302, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 35, 1, 0, 0, 0, 1306, 1304, 1, 0, 0, 0, 1307, 1308, 3, 302, 151, 0, 1308, 1309, 5, 312, 0, 0, 1309, 1310, 3, 38, 19, 0, 1310, 37, 1, 0, 0, 0, 1311, 1314, 5, 70, 0, 0, 1312, 1314, 3, 142, 71, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1312, 1, 0, 0, 0, 1314, 39, 1, 0, 0, 0, 1315, 1326, 3, 46, 23, 0, 1316, 1317, 5, 195, 0, 0, 1317, 1318, 5, 36, 0, 0, 1318, 1323, 3, 50, 25, 0, 1319, 1320, 5, 3, 0, 0, 1320, 1322, 3, 50, 25, 0, 1321, 1319, 1, 0, 0, 0, 1322, 1325, 1, 0, 0, 0, 1323, 1321, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1327, 1, 0, 0, 0, 1325, 1323, 1, 0, 0, 0, 1326, 1316, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1333, 1, 0, 0, 0, 1328, 1329, 5, 188, 0, 0, 1329, 1331, 3, 44, 22, 0, 1330, 1332, 7, 4, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1328, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1348, 1, 0, 0, 0, 1335, 1336, 5, 155, 0, 0, 1336, 1349, 3, 42, 21, 0, 1337, 1338, 5, 98, 0, 0, 1338, 1340, 7, 5, 0, 0, 1339, 1341, 3, 44, 22, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1346, 7, 4, 0, 0, 1343, 1347, 5, 192, 0, 0, 1344, 1345, 5, 304, 0, 0, 1345, 1347, 5, 266, 0, 0, 1346, 1343, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1349, 1, 0, 0, 0, 1348, 1335, 1, 0, 0, 0, 1348, 1337, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 41, 1, 0, 0, 0, 1350, 1353, 5, 22, 0, 0, 1351, 1353, 3, 44, 22, 0, 1352, 1350, 1, 0, 0, 0, 1352, 1351, 1, 0, 0, 0, 1353, 43, 1, 0, 0, 0, 1354, 1355, 7, 6, 0, 0, 1355, 45, 1, 0, 0, 0, 1356, 1357, 6, 23, -1, 0, 1357, 1358, 3, 48, 24, 0, 1358, 1373, 1, 0, 0, 0, 1359, 1360, 10, 2, 0, 0, 1360, 1362, 5, 128, 0, 0, 1361, 1363, 3, 74, 37, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1372, 3, 46, 23, 3, 1365, 1366, 10, 1, 0, 0, 1366, 1368, 7, 7, 0, 0, 1367, 1369, 3, 74, 37, 0, 1368, 1367, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1372, 3, 46, 23, 2, 1371, 1359, 1, 0, 0, 0, 1371, 1365, 1, 0, 0, 0, 1372, 1375, 1, 0, 0, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 47, 1, 0, 0, 0, 1375, 1373, 1, 0, 0, 0, 1376, 1393, 3, 52, 26, 0, 1377, 1378, 5, 260, 0, 0, 1378, 1393, 3, 262, 131, 0, 1379, 1380, 5, 296, 0, 0, 1380, 1385, 3, 142, 71, 0, 1381, 1382, 5, 3, 0, 0, 1382, 1384, 3, 142, 71, 0, 1383, 1381, 1, 0, 0, 0, 1384, 1387, 1, 0, 0, 0, 1385, 1383, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1393, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 1389, 5, 1, 0, 0, 1389, 1390, 3, 40, 20, 0, 1390, 1391, 5, 2, 0, 0, 1391, 1393, 1, 0, 0, 0, 1392, 1376, 1, 0, 0, 0, 1392, 1377, 1, 0, 0, 0, 1392, 1379, 1, 0, 0, 0, 1392, 1388, 1, 0, 0, 0, 1393, 49, 1, 0, 0, 0, 1394, 1397, 3, 282, 141, 0, 1395, 1397, 3, 142, 71, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1395, 1, 0, 0, 0, 1397, 1399, 1, 0, 0, 0, 1398, 1400, 7, 8, 0, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1403, 1, 0, 0, 0, 1401, 1402, 5, 185, 0, 0, 1402, 1404, 7, 9, 0, 0, 1403, 1401, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 51, 1, 0, 0, 0, 1405, 1407, 5, 248, 0, 0, 1406, 1408, 3, 74, 37, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1414, 3, 76, 38, 0, 1410, 1411, 5, 3, 0, 0, 1411, 1413, 3, 76, 38, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1416, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1426, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1418, 5, 105, 0, 0, 1418, 1423, 3, 78, 39, 0, 1419, 1420, 5, 3, 0, 0, 1420, 1422, 3, 78, 39, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1417, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1429, 1, 0, 0, 0, 1428, 1430, 3, 54, 27, 0, 1429, 1428, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1434, 1, 0, 0, 0, 1431, 1432, 5, 114, 0, 0, 1432, 1433, 5, 36, 0, 0, 1433, 1435, 3, 58, 29, 0, 1434, 1431, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1437, 1, 0, 0, 0, 1436, 1438, 3, 56, 28, 0, 1437, 1436, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1448, 1, 0, 0, 0, 1439, 1440, 5, 303, 0, 0, 1440, 1445, 3, 68, 34, 0, 1441, 1442, 5, 3, 0, 0, 1442, 1444, 3, 68, 34, 0, 1443, 1441, 1, 0, 0, 0, 1444, 1447, 1, 0, 0, 0, 1445, 1443, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1439, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 53, 1, 0, 0, 0, 1450, 1451, 5, 301, 0, 0, 1451, 1452, 3, 144, 72, 0, 1452, 55, 1, 0, 0, 0, 1453, 1454, 5, 117, 0, 0, 1454, 1455, 3, 144, 72, 0, 1455, 57, 1, 0, 0, 0, 1456, 1458, 3, 74, 37, 0, 1457, 1456, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1464, 3, 62, 31, 0, 1460, 1461, 5, 3, 0, 0, 1461, 1463, 3, 62, 31, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1466, 1, 0, 0, 0, 1464, 1462, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 59, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1472, 3, 142, 71, 0, 1468, 1469, 5, 3, 0, 0, 1469, 1471, 3, 142, 71, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 61, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1516, 3, 64, 32, 0, 1476, 1477, 5, 238, 0, 0, 1477, 1486, 5, 1, 0, 0, 1478, 1483, 3, 64, 32, 0, 1479, 1480, 5, 3, 0, 0, 1480, 1482, 3, 64, 32, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1485, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1478, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1516, 5, 2, 0, 0, 1489, 1490, 5, 55, 0, 0, 1490, 1499, 5, 1, 0, 0, 1491, 1496, 3, 64, 32, 0, 1492, 1493, 5, 3, 0, 0, 1493, 1495, 3, 64, 32, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1499, 1491, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1516, 5, 2, 0, 0, 1502, 1503, 5, 115, 0, 0, 1503, 1504, 5, 252, 0, 0, 1504, 1505, 5, 1, 0, 0, 1505, 1510, 3, 64, 32, 0, 1506, 1507, 5, 3, 0, 0, 1507, 1509, 3, 64, 32, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1512, 1, 0, 0, 0, 1510, 1508, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1513, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1513, 1514, 5, 2, 0, 0, 1514, 1516, 1, 0, 0, 0, 1515, 1475, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1489, 1, 0, 0, 0, 1515, 1502, 1, 0, 0, 0, 1516, 63, 1, 0, 0, 0, 1517, 1526, 5, 1, 0, 0, 1518, 1523, 3, 66, 33, 0, 1519, 1520, 5, 3, 0, 0, 1520, 1522, 3, 66, 33, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1525, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1527, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1518, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1531, 5, 2, 0, 0, 1529, 1531, 3, 66, 33, 0, 1530, 1517, 1, 0, 0, 0, 1530, 1529, 1, 0, 0, 0, 1531, 65, 1, 0, 0, 0, 1532, 1535, 3, 282, 141, 0, 1533, 1535, 3, 142, 71, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1533, 1, 0, 0, 0, 1535, 67, 1, 0, 0, 0, 1536, 1537, 3, 302, 151, 0, 1537, 1538, 5, 28, 0, 0, 1538, 1539, 5, 1, 0, 0, 1539, 1540, 3, 70, 35, 0, 1540, 1541, 5, 2, 0, 0, 1541, 69, 1, 0, 0, 0, 1542, 1544, 3, 302, 151, 0, 1543, 1542, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1548, 1, 0, 0, 0, 1545, 1546, 5, 201, 0, 0, 1546, 1547, 5, 36, 0, 0, 1547, 1549, 3, 60, 30, 0, 1548, 1545, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1560, 1, 0, 0, 0, 1550, 1551, 5, 195, 0, 0, 1551, 1552, 5, 36, 0, 0, 1552, 1557, 3, 50, 25, 0, 1553, 1554, 5, 3, 0, 0, 1554, 1556, 3, 50, 25, 0, 1555, 1553, 1, 0, 0, 0, 1556, 1559, 1, 0, 0, 0, 1557, 1555, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1561, 1, 0, 0, 0, 1559, 1557, 1, 0, 0, 0, 1560, 1550, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1563, 1, 0, 0, 0, 1562, 1564, 3, 204, 102, 0, 1563, 1562, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 71, 1, 0, 0, 0, 1565, 1567, 3, 302, 151, 0, 1566, 1568, 3, 114, 57, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 5, 28, 0, 0, 1570, 1571, 5, 1, 0, 0, 1571, 1572, 3, 22, 11, 0, 1572, 1573, 5, 2, 0, 0, 1573, 73, 1, 0, 0, 0, 1574, 1575, 7, 10, 0, 0, 1575, 75, 1, 0, 0, 0, 1576, 1579, 3, 282, 141, 0, 1577, 1579, 3, 142, 71, 0, 1578, 1576, 1, 0, 0, 0, 1578, 1577, 1, 0, 0, 0, 1579, 1584, 1, 0, 0, 0, 1580, 1582, 5, 28, 0, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 3, 302, 151, 0, 1584, 1581, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1595, 1, 0, 0, 0, 1586, 1587, 3, 150, 75, 0, 1587, 1588, 5, 4, 0, 0, 1588, 1591, 5, 320, 0, 0, 1589, 1590, 5, 28, 0, 0, 1590, 1592, 3, 114, 57, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1595, 5, 320, 0, 0, 1594, 1578, 1, 0, 0, 0, 1594, 1586, 1, 0, 0, 0, 1594, 1593, 1, 0, 0, 0, 1595, 77, 1, 0, 0, 0, 1596, 1597, 6, 39, -1, 0, 1597, 1598, 3, 84, 42, 0, 1598, 1617, 1, 0, 0, 0, 1599, 1613, 10, 2, 0, 0, 1600, 1601, 5, 54, 0, 0, 1601, 1602, 5, 136, 0, 0, 1602, 1614, 3, 84, 42, 0, 1603, 1604, 3, 80, 40, 0, 1604, 1605, 5, 136, 0, 0, 1605, 1606, 3, 78, 39, 0, 1606, 1607, 3, 82, 41, 0, 1607, 1614, 1, 0, 0, 0, 1608, 1609, 5, 172, 0, 0, 1609, 1610, 3, 80, 40, 0, 1610, 1611, 5, 136, 0, 0, 1611, 1612, 3, 84, 42, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1600, 1, 0, 0, 0, 1613, 1603, 1, 0, 0, 0, 1613, 1608, 1, 0, 0, 0, 1614, 1616, 1, 0, 0, 0, 1615, 1599, 1, 0, 0, 0, 1616, 1619, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 79, 1, 0, 0, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1622, 5, 125, 0, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1636, 1, 0, 0, 0, 1623, 1625, 5, 152, 0, 0, 1624, 1626, 5, 197, 0, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1636, 1, 0, 0, 0, 1627, 1629, 5, 234, 0, 0, 1628, 1630, 5, 197, 0, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1636, 1, 0, 0, 0, 1631, 1633, 5, 106, 0, 0, 1632, 1634, 5, 197, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1621, 1, 0, 0, 0, 1635, 1623, 1, 0, 0, 0, 1635, 1627, 1, 0, 0, 0, 1635, 1631, 1, 0, 0, 0, 1636, 81, 1, 0, 0, 0, 1637, 1638, 5, 190, 0, 0, 1638, 1652, 3, 144, 72, 0, 1639, 1640, 5, 290, 0, 0, 1640, 1641, 5, 1, 0, 0, 1641, 1646, 3, 302, 151, 0, 1642, 1643, 5, 3, 0, 0, 1643, 1645, 3, 302, 151, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1648, 1, 0, 0, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1649, 1650, 5, 2, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1637, 1, 0, 0, 0, 1651, 1639, 1, 0, 0, 0, 1652, 83, 1, 0, 0, 0, 1653, 1660, 3, 94, 47, 0, 1654, 1655, 5, 262, 0, 0, 1655, 1656, 3, 86, 43, 0, 1656, 1657, 5, 1, 0, 0, 1657, 1658, 3, 142, 71, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1661, 1, 0, 0, 0, 1660, 1654, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 85, 1, 0, 0, 0, 1662, 1663, 7, 11, 0, 0, 1663, 87, 1, 0, 0, 0, 1664, 1665, 7, 12, 0, 0, 1665, 89, 1, 0, 0, 0, 1666, 1673, 5, 89, 0, 0, 1667, 1669, 5, 274, 0, 0, 1668, 1670, 3, 174, 87, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 3, 92, 46, 0, 1672, 1666, 1, 0, 0, 0, 1672, 1667, 1, 0, 0, 0, 1673, 91, 1, 0, 0, 0, 1674, 1675, 5, 304, 0, 0, 1675, 1679, 5, 51, 0, 0, 1676, 1677, 5, 306, 0, 0, 1677, 1679, 5, 51, 0, 0, 1678, 1674, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 93, 1, 0, 0, 0, 1680, 1756, 3, 108, 54, 0, 1681, 1682, 5, 166, 0, 0, 1682, 1686, 5, 1, 0, 0, 1683, 1684, 5, 201, 0, 0, 1684, 1685, 5, 36, 0, 0, 1685, 1687, 3, 60, 30, 0, 1686, 1683, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1698, 1, 0, 0, 0, 1688, 1689, 5, 195, 0, 0, 1689, 1690, 5, 36, 0, 0, 1690, 1695, 3, 50, 25, 0, 1691, 1692, 5, 3, 0, 0, 1692, 1694, 3, 50, 25, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1688, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1709, 1, 0, 0, 0, 1700, 1701, 5, 168, 0, 0, 1701, 1706, 3, 96, 48, 0, 1702, 1703, 5, 3, 0, 0, 1703, 1705, 3, 96, 48, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1709, 1700, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 98, 49, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1717, 1, 0, 0, 0, 1714, 1715, 5, 21, 0, 0, 1715, 1716, 5, 163, 0, 0, 1716, 1718, 3, 102, 51, 0, 1717, 1714, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1721, 7, 13, 0, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 5, 206, 0, 0, 1723, 1724, 5, 1, 0, 0, 1724, 1725, 3, 210, 105, 0, 1725, 1735, 5, 2, 0, 0, 1726, 1727, 5, 257, 0, 0, 1727, 1732, 3, 104, 52, 0, 1728, 1729, 5, 3, 0, 0, 1729, 1731, 3, 104, 52, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1736, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1735, 1726, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 5, 71, 0, 0, 1738, 1743, 3, 106, 53, 0, 1739, 1740, 5, 3, 0, 0, 1740, 1742, 3, 106, 53, 0, 1741, 1739, 1, 0, 0, 0, 1742, 1745, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1754, 5, 2, 0, 0, 1747, 1749, 5, 28, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1752, 3, 302, 151, 0, 1751, 1753, 3, 114, 57, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 1, 0, 0, 0, 1754, 1748, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1681, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 95, 1, 0, 0, 0, 1758, 1759, 3, 142, 71, 0, 1759, 1760, 5, 28, 0, 0, 1760, 1761, 3, 302, 151, 0, 1761, 97, 1, 0, 0, 0, 1762, 1763, 5, 191, 0, 0, 1763, 1764, 5, 239, 0, 0, 1764, 1765, 5, 207, 0, 0, 1765, 1774, 5, 163, 0, 0, 1766, 1767, 5, 22, 0, 0, 1767, 1768, 5, 240, 0, 0, 1768, 1769, 5, 207, 0, 0, 1769, 1771, 5, 163, 0, 0, 1770, 1772, 3, 100, 50, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1762, 1, 0, 0, 0, 1773, 1766, 1, 0, 0, 0, 1774, 99, 1, 0, 0, 0, 1775, 1776, 5, 253, 0, 0, 1776, 1777, 5, 85, 0, 0, 1777, 1785, 5, 165, 0, 0, 1778, 1779, 5, 189, 0, 0, 1779, 1780, 5, 85, 0, 0, 1780, 1785, 5, 165, 0, 0, 1781, 1782, 5, 304, 0, 0, 1782, 1783, 5, 284, 0, 0, 1783, 1785, 5, 240, 0, 0, 1784, 1775, 1, 0, 0, 0, 1784, 1778, 1, 0, 0, 0, 1784, 1781, 1, 0, 0, 0, 1785, 101, 1, 0, 0, 0, 1786, 1787, 5, 5, 0, 0, 1787, 1788, 5, 269, 0, 0, 1788, 1789, 5, 174, 0, 0, 1789, 1806, 5, 239, 0, 0, 1790, 1791, 5, 5, 0, 0, 1791, 1792, 5, 204, 0, 0, 1792, 1793, 5, 148, 0, 0, 1793, 1806, 5, 239, 0, 0, 1794, 1795, 5, 5, 0, 0, 1795, 1796, 5, 269, 0, 0, 1796, 1797, 5, 101, 0, 0, 1797, 1806, 3, 302, 151, 0, 1798, 1799, 5, 5, 0, 0, 1799, 1800, 5, 269, 0, 0, 1800, 1801, 5, 148, 0, 0, 1801, 1806, 3, 302, 151, 0, 1802, 1803, 5, 5, 0, 0, 1803, 1804, 5, 269, 0, 0, 1804, 1806, 3, 302, 151, 0, 1805, 1786, 1, 0, 0, 0, 1805, 1790, 1, 0, 0, 0, 1805, 1794, 1, 0, 0, 0, 1805, 1798, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1806, 103, 1, 0, 0, 0, 1807, 1808, 3, 302, 151, 0, 1808, 1809, 5, 312, 0, 0, 1809, 1810, 5, 1, 0, 0, 1810, 1815, 3, 302, 151, 0, 1811, 1812, 5, 3, 0, 0, 1812, 1814, 3, 302, 151, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 2, 0, 0, 1819, 105, 1, 0, 0, 0, 1820, 1821, 3, 302, 151, 0, 1821, 1822, 5, 28, 0, 0, 1822, 1823, 3, 142, 71, 0, 1823, 107, 1, 0, 0, 0, 1824, 1832, 3, 116, 58, 0, 1825, 1827, 5, 28, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 3, 302, 151, 0, 1829, 1831, 3, 114, 57, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 109, 1, 0, 0, 0, 1834, 1835, 5, 1, 0, 0, 1835, 1840, 3, 286, 143, 0, 1836, 1837, 5, 3, 0, 0, 1837, 1839, 3, 286, 143, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1844, 5, 2, 0, 0, 1844, 111, 1, 0, 0, 0, 1845, 1846, 5, 1, 0, 0, 1846, 1851, 3, 282, 141, 0, 1847, 1848, 5, 3, 0, 0, 1848, 1850, 3, 282, 141, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 2, 0, 0, 1855, 113, 1, 0, 0, 0, 1856, 1857, 5, 1, 0, 0, 1857, 1862, 3, 302, 151, 0, 1858, 1859, 5, 3, 0, 0, 1859, 1861, 3, 302, 151, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1864, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1865, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1866, 5, 2, 0, 0, 1866, 115, 1, 0, 0, 0, 1867, 1869, 3, 260, 130, 0, 1868, 1870, 3, 290, 145, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1939, 1, 0, 0, 0, 1871, 1872, 5, 1, 0, 0, 1872, 1873, 3, 22, 11, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1939, 1, 0, 0, 0, 1875, 1876, 5, 285, 0, 0, 1876, 1877, 5, 1, 0, 0, 1877, 1882, 3, 142, 71, 0, 1878, 1879, 5, 3, 0, 0, 1879, 1881, 3, 142, 71, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1888, 5, 2, 0, 0, 1886, 1887, 5, 304, 0, 0, 1887, 1889, 5, 196, 0, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1939, 1, 0, 0, 0, 1890, 1891, 5, 149, 0, 0, 1891, 1892, 5, 1, 0, 0, 1892, 1893, 3, 22, 11, 0, 1893, 1894, 5, 2, 0, 0, 1894, 1939, 1, 0, 0, 0, 1895, 1896, 5, 260, 0, 0, 1896, 1897, 5, 1, 0, 0, 1897, 1898, 3, 128, 64, 0, 1898, 1899, 5, 2, 0, 0, 1899, 1939, 1, 0, 0, 0, 1900, 1901, 5, 1, 0, 0, 1901, 1902, 3, 78, 39, 0, 1902, 1903, 5, 2, 0, 0, 1903, 1939, 1, 0, 0, 0, 1904, 1905, 5, 142, 0, 0, 1905, 1906, 5, 1, 0, 0, 1906, 1907, 3, 152, 76, 0, 1907, 1908, 5, 45, 0, 0, 1908, 1909, 5, 1, 0, 0, 1909, 1914, 3, 118, 59, 0, 1910, 1911, 5, 3, 0, 0, 1911, 1913, 3, 118, 59, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1916, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1917, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1917, 1929, 5, 2, 0, 0, 1918, 1919, 5, 210, 0, 0, 1919, 1920, 5, 1, 0, 0, 1920, 1921, 3, 120, 60, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1930, 1, 0, 0, 0, 1923, 1924, 5, 210, 0, 0, 1924, 1925, 5, 70, 0, 0, 1925, 1926, 5, 1, 0, 0, 1926, 1927, 3, 126, 63, 0, 1927, 1928, 5, 2, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1918, 1, 0, 0, 0, 1929, 1923, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1934, 1, 0, 0, 0, 1931, 1932, 7, 14, 0, 0, 1932, 1933, 5, 190, 0, 0, 1933, 1935, 5, 89, 0, 0, 1934, 1931, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 2, 0, 0, 1937, 1939, 1, 0, 0, 0, 1938, 1867, 1, 0, 0, 0, 1938, 1871, 1, 0, 0, 0, 1938, 1875, 1, 0, 0, 0, 1938, 1890, 1, 0, 0, 0, 1938, 1895, 1, 0, 0, 0, 1938, 1900, 1, 0, 0, 0, 1938, 1904, 1, 0, 0, 0, 1939, 117, 1, 0, 0, 0, 1940, 1941, 3, 302, 151, 0, 1941, 1942, 5, 103, 0, 0, 1942, 1943, 5, 196, 0, 0, 1943, 2018, 1, 0, 0, 0, 1944, 1945, 3, 302, 151, 0, 1945, 1948, 3, 190, 95, 0, 1946, 1947, 5, 205, 0, 0, 1947, 1949, 3, 174, 87, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1954, 1, 0, 0, 0, 1950, 1951, 3, 162, 81, 0, 1951, 1952, 5, 190, 0, 0, 1952, 1953, 5, 85, 0, 0, 1953, 1955, 1, 0, 0, 0, 1954, 1950, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1960, 1, 0, 0, 0, 1956, 1957, 3, 162, 81, 0, 1957, 1958, 5, 190, 0, 0, 1958, 1959, 5, 89, 0, 0, 1959, 1961, 1, 0, 0, 0, 1960, 1956, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 2018, 1, 0, 0, 0, 1962, 1963, 3, 302, 151, 0, 1963, 1964, 3, 190, 95, 0, 1964, 1965, 5, 104, 0, 0, 1965, 1968, 3, 156, 78, 0, 1966, 1967, 5, 205, 0, 0, 1967, 1969, 3, 174, 87, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1973, 1, 0, 0, 0, 1970, 1971, 3, 164, 82, 0, 1971, 1972, 5, 308, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1970, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1982, 1, 0, 0, 0, 1975, 1976, 7, 15, 0, 0, 1976, 1980, 5, 218, 0, 0, 1977, 1978, 5, 190, 0, 0, 1978, 1979, 5, 242, 0, 0, 1979, 1981, 5, 264, 0, 0, 1980, 1977, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1975, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1988, 1, 0, 0, 0, 1984, 1985, 3, 166, 83, 0, 1985, 1986, 5, 190, 0, 0, 1986, 1987, 5, 85, 0, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1984, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1994, 1, 0, 0, 0, 1990, 1991, 3, 166, 83, 0, 1991, 1992, 5, 190, 0, 0, 1992, 1993, 5, 89, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1990, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2018, 1, 0, 0, 0, 1996, 1998, 5, 173, 0, 0, 1997, 1999, 5, 205, 0, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2003, 3, 174, 87, 0, 2001, 2002, 5, 28, 0, 0, 2002, 2004, 3, 302, 151, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 5, 45, 0, 0, 2006, 2007, 5, 1, 0, 0, 2007, 2012, 3, 118, 59, 0, 2008, 2009, 5, 3, 0, 0, 2009, 2011, 3, 118, 59, 0, 2010, 2008, 1, 0, 0, 0, 2011, 2014, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2016, 5, 2, 0, 0, 2016, 2018, 1, 0, 0, 0, 2017, 1940, 1, 0, 0, 0, 2017, 1944, 1, 0, 0, 0, 2017, 1962, 1, 0, 0, 0, 2017, 1996, 1, 0, 0, 0, 2018, 119, 1, 0, 0, 0, 2019, 2045, 3, 122, 61, 0, 2020, 2021, 3, 122, 61, 0, 2021, 2022, 7, 16, 0, 0, 2022, 2023, 3, 124, 62, 0, 2023, 2045, 1, 0, 0, 0, 2024, 2025, 3, 124, 62, 0, 2025, 2026, 5, 281, 0, 0, 2026, 2031, 3, 124, 62, 0, 2027, 2028, 5, 281, 0, 0, 2028, 2030, 3, 124, 62, 0, 2029, 2027, 1, 0, 0, 0, 2030, 2033, 1, 0, 0, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2045, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2034, 2035, 3, 124, 62, 0, 2035, 2036, 5, 54, 0, 0, 2036, 2041, 3, 124, 62, 0, 2037, 2038, 5, 54, 0, 0, 2038, 2040, 3, 124, 62, 0, 2039, 2037, 1, 0, 0, 0, 2040, 2043, 1, 0, 0, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2045, 1, 0, 0, 0, 2043, 2041, 1, 0, 0, 0, 2044, 2019, 1, 0, 0, 0, 2044, 2020, 1, 0, 0, 0, 2044, 2024, 1, 0, 0, 0, 2044, 2034, 1, 0, 0, 0, 2045, 121, 1, 0, 0, 0, 2046, 2047, 3, 302, 151, 0, 2047, 123, 1, 0, 0, 0, 2048, 2054, 3, 122, 61, 0, 2049, 2050, 5, 1, 0, 0, 2050, 2051, 3, 120, 60, 0, 2051, 2052, 5, 2, 0, 0, 2052, 2054, 1, 0, 0, 0, 2053, 2048, 1, 0, 0, 0, 2053, 2049, 1, 0, 0, 0, 2054, 125, 1, 0, 0, 0, 2055, 2058, 7, 16, 0, 0, 2056, 2057, 5, 3, 0, 0, 2057, 2059, 7, 17, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2066, 1, 0, 0, 0, 2060, 2063, 7, 17, 0, 0, 2061, 2062, 5, 3, 0, 0, 2062, 2064, 7, 16, 0, 0, 2063, 2061, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2055, 1, 0, 0, 0, 2065, 2060, 1, 0, 0, 0, 2066, 127, 1, 0, 0, 0, 2067, 2068, 3, 278, 139, 0, 2068, 2077, 5, 1, 0, 0, 2069, 2074, 3, 130, 65, 0, 2070, 2071, 5, 3, 0, 0, 2071, 2073, 3, 130, 65, 0, 2072, 2070, 1, 0, 0, 0, 2073, 2076, 1, 0, 0, 0, 2074, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2078, 1, 0, 0, 0, 2076, 2074, 1, 0, 0, 0, 2077, 2069, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2088, 1, 0, 0, 0, 2079, 2080, 5, 52, 0, 0, 2080, 2085, 3, 140, 70, 0, 2081, 2082, 5, 3, 0, 0, 2082, 2084, 3, 140, 70, 0, 2083, 2081, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2079, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 5, 2, 0, 0, 2091, 129, 1, 0, 0, 0, 2092, 2093, 3, 302, 151, 0, 2093, 2094, 5, 6, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2092, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2100, 1, 0, 0, 0, 2097, 2101, 3, 132, 66, 0, 2098, 2101, 3, 136, 68, 0, 2099, 2101, 3, 142, 71, 0, 2100, 2097, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2099, 1, 0, 0, 0, 2101, 131, 1, 0, 0, 0, 2102, 2113, 3, 134, 67, 0, 2103, 2104, 5, 201, 0, 0, 2104, 2111, 5, 36, 0, 0, 2105, 2107, 5, 1, 0, 0, 2106, 2108, 3, 60, 30, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2112, 5, 2, 0, 0, 2110, 2112, 3, 142, 71, 0, 2111, 2105, 1, 0, 0, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2114, 1, 0, 0, 0, 2113, 2103, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2121, 1, 0, 0, 0, 2115, 2116, 5, 217, 0, 0, 2116, 2117, 5, 300, 0, 0, 2117, 2122, 5, 85, 0, 0, 2118, 2119, 5, 144, 0, 0, 2119, 2120, 5, 300, 0, 0, 2120, 2122, 5, 85, 0, 0, 2121, 2115, 1, 0, 0, 0, 2121, 2118, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2139, 1, 0, 0, 0, 2123, 2124, 5, 195, 0, 0, 2124, 2137, 5, 36, 0, 0, 2125, 2126, 5, 1, 0, 0, 2126, 2131, 3, 50, 25, 0, 2127, 2128, 5, 3, 0, 0, 2128, 2130, 3, 50, 25, 0, 2129, 2127, 1, 0, 0, 0, 2130, 2133, 1, 0, 0, 0, 2131, 2129, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2134, 2135, 5, 2, 0, 0, 2135, 2138, 1, 0, 0, 0, 2136, 2138, 3, 50, 25, 0, 2137, 2125, 1, 0, 0, 0, 2137, 2136, 1, 0, 0, 0, 2138, 2140, 1, 0, 0, 0, 2139, 2123, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 133, 1, 0, 0, 0, 2141, 2142, 5, 260, 0, 0, 2142, 2143, 5, 1, 0, 0, 2143, 2144, 3, 262, 131, 0, 2144, 2152, 5, 2, 0, 0, 2145, 2147, 5, 28, 0, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 3, 302, 151, 0, 2149, 2151, 3, 114, 57, 0, 2150, 2149, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2153, 1, 0, 0, 0, 2152, 2146, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2168, 1, 0, 0, 0, 2154, 2155, 5, 260, 0, 0, 2155, 2156, 5, 1, 0, 0, 2156, 2157, 3, 22, 11, 0, 2157, 2165, 5, 2, 0, 0, 2158, 2160, 5, 28, 0, 0, 2159, 2158, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2163, 3, 302, 151, 0, 2162, 2164, 3, 114, 57, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2159, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2141, 1, 0, 0, 0, 2167, 2154, 1, 0, 0, 0, 2168, 135, 1, 0, 0, 0, 2169, 2170, 5, 77, 0, 0, 2170, 2171, 5, 1, 0, 0, 2171, 2176, 3, 138, 69, 0, 2172, 2173, 5, 3, 0, 0, 2173, 2175, 3, 138, 69, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2180, 5, 2, 0, 0, 2180, 2188, 1, 0, 0, 0, 2181, 2182, 5, 41, 0, 0, 2182, 2183, 5, 1, 0, 0, 2183, 2184, 5, 183, 0, 0, 2184, 2185, 5, 28, 0, 0, 2185, 2186, 5, 77, 0, 0, 2186, 2188, 5, 2, 0, 0, 2187, 2169, 1, 0, 0, 0, 2187, 2181, 1, 0, 0, 0, 2188, 137, 1, 0, 0, 0, 2189, 2191, 3, 302, 151, 0, 2190, 2192, 3, 190, 95, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 139, 1, 0, 0, 0, 2193, 2194, 5, 1, 0, 0, 2194, 2195, 3, 288, 144, 0, 2195, 2196, 5, 3, 0, 0, 2196, 2201, 3, 288, 144, 0, 2197, 2198, 5, 3, 0, 0, 2198, 2200, 3, 288, 144, 0, 2199, 2197, 1, 0, 0, 0, 2200, 2203, 1, 0, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2204, 1, 0, 0, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2205, 5, 2, 0, 0, 2205, 141, 1, 0, 0, 0, 2206, 2207, 3, 144, 72, 0, 2207, 143, 1, 0, 0, 0, 2208, 2209, 6, 72, -1, 0, 2209, 2211, 3, 148, 74, 0, 2210, 2212, 3, 146, 73, 0, 2211, 2210, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2216, 1, 0, 0, 0, 2213, 2214, 5, 182, 0, 0, 2214, 2216, 3, 144, 72, 3, 2215, 2208, 1, 0, 0, 0, 2215, 2213, 1, 0, 0, 0, 2216, 2225, 1, 0, 0, 0, 2217, 2218, 10, 2, 0, 0, 2218, 2219, 5, 25, 0, 0, 2219, 2224, 3, 144, 72, 3, 2220, 2221, 10, 1, 0, 0, 2221, 2222, 5, 194, 0, 0, 2222, 2224, 3, 144, 72, 2, 2223, 2217, 1, 0, 0, 0, 2223, 2220, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 145, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2229, 3, 178, 89, 0, 2229, 2230, 3, 148, 74, 0, 2230, 2290, 1, 0, 0, 0, 2231, 2232, 3, 178, 89, 0, 2232, 2233, 3, 180, 90, 0, 2233, 2234, 5, 1, 0, 0, 2234, 2235, 3, 22, 11, 0, 2235, 2236, 5, 2, 0, 0, 2236, 2290, 1, 0, 0, 0, 2237, 2239, 5, 182, 0, 0, 2238, 2237, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 5, 34, 0, 0, 2241, 2242, 3, 148, 74, 0, 2242, 2243, 5, 25, 0, 0, 2243, 2244, 3, 148, 74, 0, 2244, 2290, 1, 0, 0, 0, 2245, 2247, 5, 182, 0, 0, 2246, 2245, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2249, 5, 122, 0, 0, 2249, 2250, 5, 1, 0, 0, 2250, 2255, 3, 142, 71, 0, 2251, 2252, 5, 3, 0, 0, 2252, 2254, 3, 142, 71, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2259, 5, 2, 0, 0, 2259, 2290, 1, 0, 0, 0, 2260, 2262, 5, 182, 0, 0, 2261, 2260, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2264, 5, 122, 0, 0, 2264, 2265, 5, 1, 0, 0, 2265, 2266, 3, 22, 11, 0, 2266, 2267, 5, 2, 0, 0, 2267, 2290, 1, 0, 0, 0, 2268, 2270, 5, 182, 0, 0, 2269, 2268, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 5, 154, 0, 0, 2272, 2275, 3, 148, 74, 0, 2273, 2274, 5, 90, 0, 0, 2274, 2276, 3, 148, 74, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2290, 1, 0, 0, 0, 2277, 2279, 5, 133, 0, 0, 2278, 2280, 5, 182, 0, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2290, 5, 183, 0, 0, 2282, 2284, 5, 133, 0, 0, 2283, 2285, 5, 182, 0, 0, 2284, 2283, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 5, 79, 0, 0, 2287, 2288, 5, 105, 0, 0, 2288, 2290, 3, 148, 74, 0, 2289, 2228, 1, 0, 0, 0, 2289, 2231, 1, 0, 0, 0, 2289, 2238, 1, 0, 0, 0, 2289, 2246, 1, 0, 0, 0, 2289, 2261, 1, 0, 0, 0, 2289, 2269, 1, 0, 0, 0, 2289, 2277, 1, 0, 0, 0, 2289, 2282, 1, 0, 0, 0, 2290, 147, 1, 0, 0, 0, 2291, 2292, 6, 74, -1, 0, 2292, 2296, 3, 150, 75, 0, 2293, 2294, 7, 18, 0, 0, 2294, 2296, 3, 148, 74, 4, 2295, 2291, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2311, 1, 0, 0, 0, 2297, 2298, 10, 3, 0, 0, 2298, 2299, 7, 19, 0, 0, 2299, 2310, 3, 148, 74, 4, 2300, 2301, 10, 2, 0, 0, 2301, 2302, 7, 18, 0, 0, 2302, 2310, 3, 148, 74, 3, 2303, 2304, 10, 1, 0, 0, 2304, 2305, 5, 323, 0, 0, 2305, 2310, 3, 148, 74, 2, 2306, 2307, 10, 5, 0, 0, 2307, 2308, 5, 30, 0, 0, 2308, 2310, 3, 176, 88, 0, 2309, 2297, 1, 0, 0, 0, 2309, 2300, 1, 0, 0, 0, 2309, 2303, 1, 0, 0, 0, 2309, 2306, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 149, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 6, 75, -1, 0, 2315, 2768, 5, 183, 0, 0, 2316, 2768, 3, 184, 92, 0, 2317, 2318, 3, 302, 151, 0, 2318, 2319, 3, 174, 87, 0, 2319, 2768, 1, 0, 0, 0, 2320, 2321, 5, 82, 0, 0, 2321, 2322, 5, 213, 0, 0, 2322, 2768, 3, 174, 87, 0, 2323, 2768, 3, 304, 152, 0, 2324, 2768, 3, 182, 91, 0, 2325, 2768, 3, 174, 87, 0, 2326, 2768, 5, 328, 0, 0, 2327, 2768, 5, 324, 0, 0, 2328, 2329, 5, 211, 0, 0, 2329, 2330, 5, 1, 0, 0, 2330, 2331, 3, 148, 74, 0, 2331, 2332, 5, 122, 0, 0, 2332, 2333, 3, 148, 74, 0, 2333, 2334, 5, 2, 0, 0, 2334, 2768, 1, 0, 0, 0, 2335, 2336, 5, 1, 0, 0, 2336, 2339, 3, 142, 71, 0, 2337, 2338, 5, 3, 0, 0, 2338, 2340, 3, 142, 71, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 5, 2, 0, 0, 2344, 2768, 1, 0, 0, 0, 2345, 2346, 5, 239, 0, 0, 2346, 2347, 5, 1, 0, 0, 2347, 2352, 3, 142, 71, 0, 2348, 2349, 5, 3, 0, 0, 2349, 2351, 3, 142, 71, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2355, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2356, 5, 2, 0, 0, 2356, 2768, 1, 0, 0, 0, 2357, 2358, 5, 156, 0, 0, 2358, 2360, 5, 1, 0, 0, 2359, 2361, 3, 74, 37, 0, 2360, 2359, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2365, 3, 142, 71, 0, 2363, 2364, 5, 3, 0, 0, 2364, 2366, 3, 174, 87, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2370, 1, 0, 0, 0, 2367, 2368, 5, 190, 0, 0, 2368, 2369, 5, 200, 0, 0, 2369, 2371, 3, 90, 45, 0, 2370, 2367, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2373, 5, 2, 0, 0, 2373, 2374, 5, 305, 0, 0, 2374, 2375, 5, 114, 0, 0, 2375, 2376, 5, 1, 0, 0, 2376, 2377, 5, 195, 0, 0, 2377, 2378, 5, 36, 0, 0, 2378, 2383, 3, 50, 25, 0, 2379, 2380, 5, 3, 0, 0, 2380, 2382, 3, 50, 25, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 2, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2390, 3, 198, 99, 0, 2389, 2388, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2768, 1, 0, 0, 0, 2391, 2393, 3, 170, 85, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2395, 3, 278, 139, 0, 2395, 2399, 5, 1, 0, 0, 2396, 2397, 3, 302, 151, 0, 2397, 2398, 5, 4, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2396, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 5, 320, 0, 0, 2402, 2404, 5, 2, 0, 0, 2403, 2405, 3, 198, 99, 0, 2404, 2403, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2408, 3, 202, 101, 0, 2407, 2406, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2768, 1, 0, 0, 0, 2409, 2411, 3, 170, 85, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 3, 278, 139, 0, 2413, 2425, 5, 1, 0, 0, 2414, 2416, 3, 74, 37, 0, 2415, 2414, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2422, 3, 142, 71, 0, 2418, 2419, 5, 3, 0, 0, 2419, 2421, 3, 142, 71, 0, 2420, 2418, 1, 0, 0, 0, 2421, 2424, 1, 0, 0, 0, 2422, 2420, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2426, 1, 0, 0, 0, 2424, 2422, 1, 0, 0, 0, 2425, 2415, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2437, 1, 0, 0, 0, 2427, 2428, 5, 195, 0, 0, 2428, 2429, 5, 36, 0, 0, 2429, 2434, 3, 50, 25, 0, 2430, 2431, 5, 3, 0, 0, 2431, 2433, 3, 50, 25, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2436, 1, 0, 0, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2427, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 5, 2, 0, 0, 2440, 2442, 3, 198, 99, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2447, 1, 0, 0, 0, 2443, 2445, 3, 172, 86, 0, 2444, 2443, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2448, 3, 202, 101, 0, 2447, 2444, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2768, 1, 0, 0, 0, 2449, 2450, 3, 302, 151, 0, 2450, 2451, 3, 202, 101, 0, 2451, 2768, 1, 0, 0, 0, 2452, 2453, 3, 302, 151, 0, 2453, 2454, 5, 7, 0, 0, 2454, 2455, 3, 142, 71, 0, 2455, 2768, 1, 0, 0, 0, 2456, 2465, 5, 1, 0, 0, 2457, 2462, 3, 302, 151, 0, 2458, 2459, 5, 3, 0, 0, 2459, 2461, 3, 302, 151, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2457, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2468, 5, 2, 0, 0, 2468, 2469, 5, 7, 0, 0, 2469, 2768, 3, 142, 71, 0, 2470, 2471, 5, 1, 0, 0, 2471, 2472, 3, 22, 11, 0, 2472, 2473, 5, 2, 0, 0, 2473, 2768, 1, 0, 0, 0, 2474, 2475, 5, 94, 0, 0, 2475, 2476, 5, 1, 0, 0, 2476, 2477, 3, 22, 11, 0, 2477, 2478, 5, 2, 0, 0, 2478, 2768, 1, 0, 0, 0, 2479, 2480, 5, 40, 0, 0, 2480, 2482, 3, 142, 71, 0, 2481, 2483, 3, 196, 98, 0, 2482, 2481, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2488, 1, 0, 0, 0, 2486, 2487, 5, 84, 0, 0, 2487, 2489, 3, 142, 71, 0, 2488, 2486, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 5, 88, 0, 0, 2491, 2768, 1, 0, 0, 0, 2492, 2494, 5, 40, 0, 0, 2493, 2495, 3, 196, 98, 0, 2494, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2494, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2500, 1, 0, 0, 0, 2498, 2499, 5, 84, 0, 0, 2499, 2501, 3, 142, 71, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 5, 88, 0, 0, 2503, 2768, 1, 0, 0, 0, 2504, 2505, 5, 41, 0, 0, 2505, 2506, 5, 1, 0, 0, 2506, 2507, 3, 142, 71, 0, 2507, 2508, 5, 28, 0, 0, 2508, 2509, 3, 190, 95, 0, 2509, 2510, 5, 2, 0, 0, 2510, 2768, 1, 0, 0, 0, 2511, 2512, 5, 275, 0, 0, 2512, 2513, 5, 1, 0, 0, 2513, 2514, 3, 142, 71, 0, 2514, 2515, 5, 28, 0, 0, 2515, 2516, 3, 190, 95, 0, 2516, 2517, 5, 2, 0, 0, 2517, 2768, 1, 0, 0, 0, 2518, 2519, 5, 27, 0, 0, 2519, 2528, 5, 8, 0, 0, 2520, 2525, 3, 142, 71, 0, 2521, 2522, 5, 3, 0, 0, 2522, 2524, 3, 142, 71, 0, 2523, 2521, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2525, 2526, 1, 0, 0, 0, 2526, 2529, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2528, 2520, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2768, 5, 9, 0, 0, 2531, 2768, 3, 284, 142, 0, 2532, 2768, 5, 58, 0, 0, 2533, 2537, 5, 62, 0, 0, 2534, 2535, 5, 1, 0, 0, 2535, 2536, 5, 329, 0, 0, 2536, 2538, 5, 2, 0, 0, 2537, 2534, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2768, 1, 0, 0, 0, 2539, 2543, 5, 63, 0, 0, 2540, 2541, 5, 1, 0, 0, 2541, 2542, 5, 329, 0, 0, 2542, 2544, 5, 2, 0, 0, 2543, 2540, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2768, 1, 0, 0, 0, 2545, 2549, 5, 158, 0, 0, 2546, 2547, 5, 1, 0, 0, 2547, 2548, 5, 329, 0, 0, 2548, 2550, 5, 2, 0, 0, 2549, 2546, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2768, 1, 0, 0, 0, 2551, 2555, 5, 159, 0, 0, 2552, 2553, 5, 1, 0, 0, 2553, 2554, 5, 329, 0, 0, 2554, 2556, 5, 2, 0, 0, 2555, 2552, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2768, 1, 0, 0, 0, 2557, 2768, 5, 64, 0, 0, 2558, 2768, 5, 57, 0, 0, 2559, 2768, 5, 61, 0, 0, 2560, 2768, 5, 59, 0, 0, 2561, 2562, 5, 272, 0, 0, 2562, 2570, 5, 1, 0, 0, 2563, 2565, 3, 88, 44, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2567, 1, 0, 0, 0, 2566, 2568, 3, 148, 74, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 5, 105, 0, 0, 2570, 2564, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 3, 148, 74, 0, 2573, 2574, 5, 2, 0, 0, 2574, 2768, 1, 0, 0, 0, 2575, 2576, 5, 272, 0, 0, 2576, 2577, 5, 1, 0, 0, 2577, 2578, 3, 148, 74, 0, 2578, 2579, 5, 3, 0, 0, 2579, 2580, 3, 148, 74, 0, 2580, 2581, 5, 2, 0, 0, 2581, 2768, 1, 0, 0, 0, 2582, 2583, 5, 258, 0, 0, 2583, 2584, 5, 1, 0, 0, 2584, 2585, 3, 148, 74, 0, 2585, 2586, 5, 105, 0, 0, 2586, 2589, 3, 148, 74, 0, 2587, 2588, 5, 103, 0, 0, 2588, 2590, 3, 148, 74, 0, 2589, 2587, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2592, 5, 2, 0, 0, 2592, 2768, 1, 0, 0, 0, 2593, 2594, 5, 181, 0, 0, 2594, 2595, 5, 1, 0, 0, 2595, 2598, 3, 148, 74, 0, 2596, 2597, 5, 3, 0, 0, 2597, 2599, 3, 188, 94, 0, 2598, 2596, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 2, 0, 0, 2601, 2768, 1, 0, 0, 0, 2602, 2603, 5, 96, 0, 0, 2603, 2604, 5, 1, 0, 0, 2604, 2605, 3, 302, 151, 0, 2605, 2606, 5, 105, 0, 0, 2606, 2607, 3, 148, 74, 0, 2607, 2608, 5, 2, 0, 0, 2608, 2768, 1, 0, 0, 0, 2609, 2610, 5, 1, 0, 0, 2610, 2611, 3, 142, 71, 0, 2611, 2612, 5, 2, 0, 0, 2612, 2768, 1, 0, 0, 0, 2613, 2614, 5, 115, 0, 0, 2614, 2623, 5, 1, 0, 0, 2615, 2620, 3, 288, 144, 0, 2616, 2617, 5, 3, 0, 0, 2617, 2619, 3, 288, 144, 0, 2618, 2616, 1, 0, 0, 0, 2619, 2622, 1, 0, 0, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2624, 1, 0, 0, 0, 2622, 2620, 1, 0, 0, 0, 2623, 2615, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2768, 5, 2, 0, 0, 2626, 2627, 5, 139, 0, 0, 2627, 2628, 5, 1, 0, 0, 2628, 2633, 3, 152, 76, 0, 2629, 2630, 3, 160, 80, 0, 2630, 2631, 5, 190, 0, 0, 2631, 2632, 5, 89, 0, 0, 2632, 2634, 1, 0, 0, 0, 2633, 2629, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 5, 2, 0, 0, 2636, 2768, 1, 0, 0, 0, 2637, 2638, 5, 143, 0, 0, 2638, 2639, 5, 1, 0, 0, 2639, 2642, 3, 152, 76, 0, 2640, 2641, 5, 231, 0, 0, 2641, 2643, 3, 190, 95, 0, 2642, 2640, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2648, 1, 0, 0, 0, 2644, 2645, 3, 162, 81, 0, 2645, 2646, 5, 190, 0, 0, 2646, 2647, 5, 85, 0, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2644, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2654, 1, 0, 0, 0, 2650, 2651, 3, 162, 81, 0, 2651, 2652, 5, 190, 0, 0, 2652, 2653, 5, 89, 0, 0, 2653, 2655, 1, 0, 0, 0, 2654, 2650, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2657, 5, 2, 0, 0, 2657, 2768, 1, 0, 0, 0, 2658, 2659, 5, 141, 0, 0, 2659, 2660, 5, 1, 0, 0, 2660, 2667, 3, 152, 76, 0, 2661, 2662, 5, 231, 0, 0, 2662, 2665, 3, 190, 95, 0, 2663, 2664, 5, 104, 0, 0, 2664, 2666, 3, 156, 78, 0, 2665, 2663, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2661, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2672, 1, 0, 0, 0, 2669, 2670, 3, 164, 82, 0, 2670, 2671, 5, 308, 0, 0, 2671, 2673, 1, 0, 0, 0, 2672, 2669, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2681, 1, 0, 0, 0, 2674, 2675, 7, 15, 0, 0, 2675, 2679, 5, 218, 0, 0, 2676, 2677, 5, 190, 0, 0, 2677, 2678, 5, 242, 0, 0, 2678, 2680, 5, 264, 0, 0, 2679, 2676, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 1, 0, 0, 0, 2681, 2674, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2687, 1, 0, 0, 0, 2683, 2684, 3, 166, 83, 0, 2684, 2685, 5, 190, 0, 0, 2685, 2686, 5, 85, 0, 0, 2686, 2688, 1, 0, 0, 0, 2687, 2683, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2693, 1, 0, 0, 0, 2689, 2690, 3, 166, 83, 0, 2690, 2691, 5, 190, 0, 0, 2691, 2692, 5, 89, 0, 0, 2692, 2694, 1, 0, 0, 0, 2693, 2689, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2696, 5, 2, 0, 0, 2696, 2768, 1, 0, 0, 0, 2697, 2698, 5, 140, 0, 0, 2698, 2727, 5, 1, 0, 0, 2699, 2704, 3, 168, 84, 0, 2700, 2701, 5, 3, 0, 0, 2701, 2703, 3, 168, 84, 0, 2702, 2700, 1, 0, 0, 0, 2703, 2706, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2713, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2707, 2708, 5, 183, 0, 0, 2708, 2709, 5, 190, 0, 0, 2709, 2714, 5, 183, 0, 0, 2710, 2711, 5, 18, 0, 0, 2711, 2712, 5, 190, 0, 0, 2712, 2714, 5, 183, 0, 0, 2713, 2707, 1, 0, 0, 0, 2713, 2710, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2725, 1, 0, 0, 0, 2715, 2716, 5, 304, 0, 0, 2716, 2718, 5, 282, 0, 0, 2717, 2719, 5, 146, 0, 0, 2718, 2717, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2726, 1, 0, 0, 0, 2720, 2721, 5, 306, 0, 0, 2721, 2723, 5, 282, 0, 0, 2722, 2724, 5, 146, 0, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, 2715, 1, 0, 0, 0, 2725, 2720, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2699, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2735, 1, 0, 0, 0, 2729, 2730, 5, 231, 0, 0, 2730, 2733, 3, 190, 95, 0, 2731, 2732, 5, 104, 0, 0, 2732, 2734, 3, 156, 78, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2736, 1, 0, 0, 0, 2735, 2729, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2768, 5, 2, 0, 0, 2738, 2739, 5, 138, 0, 0, 2739, 2756, 5, 1, 0, 0, 2740, 2745, 3, 154, 77, 0, 2741, 2742, 5, 3, 0, 0, 2742, 2744, 3, 154, 77, 0, 2743, 2741, 1, 0, 0, 0, 2744, 2747, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2754, 1, 0, 0, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2749, 5, 183, 0, 0, 2749, 2750, 5, 190, 0, 0, 2750, 2755, 5, 183, 0, 0, 2751, 2752, 5, 18, 0, 0, 2752, 2753, 5, 190, 0, 0, 2753, 2755, 5, 183, 0, 0, 2754, 2748, 1, 0, 0, 0, 2754, 2751, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2740, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2764, 1, 0, 0, 0, 2758, 2759, 5, 231, 0, 0, 2759, 2762, 3, 190, 95, 0, 2760, 2761, 5, 104, 0, 0, 2761, 2763, 3, 156, 78, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2765, 1, 0, 0, 0, 2764, 2758, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2768, 5, 2, 0, 0, 2767, 2314, 1, 0, 0, 0, 2767, 2316, 1, 0, 0, 0, 2767, 2317, 1, 0, 0, 0, 2767, 2320, 1, 0, 0, 0, 2767, 2323, 1, 0, 0, 0, 2767, 2324, 1, 0, 0, 0, 2767, 2325, 1, 0, 0, 0, 2767, 2326, 1, 0, 0, 0, 2767, 2327, 1, 0, 0, 0, 2767, 2328, 1, 0, 0, 0, 2767, 2335, 1, 0, 0, 0, 2767, 2345, 1, 0, 0, 0, 2767, 2357, 1, 0, 0, 0, 2767, 2392, 1, 0, 0, 0, 2767, 2410, 1, 0, 0, 0, 2767, 2449, 1, 0, 0, 0, 2767, 2452, 1, 0, 0, 0, 2767, 2456, 1, 0, 0, 0, 2767, 2470, 1, 0, 0, 0, 2767, 2474, 1, 0, 0, 0, 2767, 2479, 1, 0, 0, 0, 2767, 2492, 1, 0, 0, 0, 2767, 2504, 1, 0, 0, 0, 2767, 2511, 1, 0, 0, 0, 2767, 2518, 1, 0, 0, 0, 2767, 2531, 1, 0, 0, 0, 2767, 2532, 1, 0, 0, 0, 2767, 2533, 1, 0, 0, 0, 2767, 2539, 1, 0, 0, 0, 2767, 2545, 1, 0, 0, 0, 2767, 2551, 1, 0, 0, 0, 2767, 2557, 1, 0, 0, 0, 2767, 2558, 1, 0, 0, 0, 2767, 2559, 1, 0, 0, 0, 2767, 2560, 1, 0, 0, 0, 2767, 2561, 1, 0, 0, 0, 2767, 2575, 1, 0, 0, 0, 2767, 2582, 1, 0, 0, 0, 2767, 2593, 1, 0, 0, 0, 2767, 2602, 1, 0, 0, 0, 2767, 2609, 1, 0, 0, 0, 2767, 2613, 1, 0, 0, 0, 2767, 2626, 1, 0, 0, 0, 2767, 2637, 1, 0, 0, 0, 2767, 2658, 1, 0, 0, 0, 2767, 2697, 1, 0, 0, 0, 2767, 2738, 1, 0, 0, 0, 2768, 2779, 1, 0, 0, 0, 2769, 2770, 10, 24, 0, 0, 2770, 2771, 5, 8, 0, 0, 2771, 2772, 3, 148, 74, 0, 2772, 2773, 5, 9, 0, 0, 2773, 2778, 1, 0, 0, 0, 2774, 2775, 10, 22, 0, 0, 2775, 2776, 5, 4, 0, 0, 2776, 2778, 3, 302, 151, 0, 2777, 2769, 1, 0, 0, 0, 2777, 2774, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 151, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2783, 3, 154, 77, 0, 2783, 2784, 5, 3, 0, 0, 2784, 2787, 3, 174, 87, 0, 2785, 2786, 5, 28, 0, 0, 2786, 2788, 3, 302, 151, 0, 2787, 2785, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2798, 1, 0, 0, 0, 2789, 2790, 5, 203, 0, 0, 2790, 2795, 3, 158, 79, 0, 2791, 2792, 5, 3, 0, 0, 2792, 2794, 3, 158, 79, 0, 2793, 2791, 1, 0, 0, 0, 2794, 2797, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 2799, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2798, 2789, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 153, 1, 0, 0, 0, 2800, 2803, 3, 142, 71, 0, 2801, 2802, 5, 104, 0, 0, 2802, 2804, 3, 156, 78, 0, 2803, 2801, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 155, 1, 0, 0, 0, 2805, 2808, 5, 137, 0, 0, 2806, 2807, 5, 87, 0, 0, 2807, 2809, 7, 20, 0, 0, 2808, 2806, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 157, 1, 0, 0, 0, 2810, 2811, 3, 154, 77, 0, 2811, 2812, 5, 28, 0, 0, 2812, 2813, 3, 302, 151, 0, 2813, 159, 1, 0, 0, 0, 2814, 2815, 7, 21, 0, 0, 2815, 161, 1, 0, 0, 0, 2816, 2821, 5, 89, 0, 0, 2817, 2821, 5, 183, 0, 0, 2818, 2819, 5, 70, 0, 0, 2819, 2821, 3, 142, 71, 0, 2820, 2816, 1, 0, 0, 0, 2820, 2817, 1, 0, 0, 0, 2820, 2818, 1, 0, 0, 0, 2821, 163, 1, 0, 0, 0, 2822, 2824, 5, 306, 0, 0, 2823, 2825, 5, 27, 0, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2834, 1, 0, 0, 0, 2826, 2828, 5, 304, 0, 0, 2827, 2829, 7, 22, 0, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2831, 1, 0, 0, 0, 2830, 2832, 5, 27, 0, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2834, 1, 0, 0, 0, 2833, 2822, 1, 0, 0, 0, 2833, 2826, 1, 0, 0, 0, 2834, 165, 1, 0, 0, 0, 2835, 2842, 5, 89, 0, 0, 2836, 2842, 5, 183, 0, 0, 2837, 2838, 5, 85, 0, 0, 2838, 2842, 5, 27, 0, 0, 2839, 2840, 5, 85, 0, 0, 2840, 2842, 5, 186, 0, 0, 2841, 2835, 1, 0, 0, 0, 2841, 2836, 1, 0, 0, 0, 2841, 2837, 1, 0, 0, 0, 2841, 2839, 1, 0, 0, 0, 2842, 167, 1, 0, 0, 0, 2843, 2845, 5, 145, 0, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2847, 3, 142, 71, 0, 2847, 2848, 5, 295, 0, 0, 2848, 2849, 3, 154, 77, 0, 2849, 2855, 1, 0, 0, 0, 2850, 2851, 3, 142, 71, 0, 2851, 2852, 5, 10, 0, 0, 2852, 2853, 3, 154, 77, 0, 2853, 2855, 1, 0, 0, 0, 2854, 2844, 1, 0, 0, 0, 2854, 2850, 1, 0, 0, 0, 2855, 169, 1, 0, 0, 0, 2856, 2857, 7, 23, 0, 0, 2857, 171, 1, 0, 0, 0, 2858, 2859, 5, 120, 0, 0, 2859, 2863, 5, 185, 0, 0, 2860, 2861, 5, 228, 0, 0, 2861, 2863, 5, 185, 0, 0, 2862, 2858, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 173, 1, 0, 0, 0, 2864, 2871, 5, 326, 0, 0, 2865, 2868, 5, 327, 0, 0, 2866, 2867, 5, 277, 0, 0, 2867, 2869, 5, 326, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2871, 1, 0, 0, 0, 2870, 2864, 1, 0, 0, 0, 2870, 2865, 1, 0, 0, 0, 2871, 175, 1, 0, 0, 0, 2872, 2873, 5, 267, 0, 0, 2873, 2874, 5, 311, 0, 0, 2874, 2879, 3, 184, 92, 0, 2875, 2876, 5, 267, 0, 0, 2876, 2877, 5, 311, 0, 0, 2877, 2879, 3, 174, 87, 0, 2878, 2872, 1, 0, 0, 0, 2878, 2875, 1, 0, 0, 0, 2879, 177, 1, 0, 0, 0, 2880, 2881, 7, 24, 0, 0, 2881, 179, 1, 0, 0, 0, 2882, 2883, 7, 25, 0, 0, 2883, 181, 1, 0, 0, 0, 2884, 2885, 7, 26, 0, 0, 2885, 183, 1, 0, 0, 0, 2886, 2888, 5, 129, 0, 0, 2887, 2889, 7, 18, 0, 0, 2888, 2887, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 3, 174, 87, 0, 2891, 2894, 3, 186, 93, 0, 2892, 2893, 5, 269, 0, 0, 2893, 2895, 3, 186, 93, 0, 2894, 2892, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 185, 1, 0, 0, 0, 2896, 2897, 7, 27, 0, 0, 2897, 187, 1, 0, 0, 0, 2898, 2899, 7, 28, 0, 0, 2899, 189, 1, 0, 0, 0, 2900, 2901, 6, 95, -1, 0, 2901, 2902, 5, 239, 0, 0, 2902, 2903, 5, 1, 0, 0, 2903, 2908, 3, 192, 96, 0, 2904, 2905, 5, 3, 0, 0, 2905, 2907, 3, 192, 96, 0, 2906, 2904, 1, 0, 0, 0, 2907, 2910, 1, 0, 0, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2912, 5, 2, 0, 0, 2912, 2972, 1, 0, 0, 0, 2913, 2914, 5, 129, 0, 0, 2914, 2917, 3, 186, 93, 0, 2915, 2916, 5, 269, 0, 0, 2916, 2918, 3, 186, 93, 0, 2917, 2915, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2972, 1, 0, 0, 0, 2919, 2924, 5, 268, 0, 0, 2920, 2921, 5, 1, 0, 0, 2921, 2922, 3, 194, 97, 0, 2922, 2923, 5, 2, 0, 0, 2923, 2925, 1, 0, 0, 0, 2924, 2920, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2929, 1, 0, 0, 0, 2926, 2927, 7, 29, 0, 0, 2927, 2928, 5, 267, 0, 0, 2928, 2930, 5, 311, 0, 0, 2929, 2926, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2972, 1, 0, 0, 0, 2931, 2936, 5, 267, 0, 0, 2932, 2933, 5, 1, 0, 0, 2933, 2934, 3, 194, 97, 0, 2934, 2935, 5, 2, 0, 0, 2935, 2937, 1, 0, 0, 0, 2936, 2932, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2941, 1, 0, 0, 0, 2938, 2939, 7, 29, 0, 0, 2939, 2940, 5, 267, 0, 0, 2940, 2942, 5, 311, 0, 0, 2941, 2938, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2972, 1, 0, 0, 0, 2943, 2944, 5, 82, 0, 0, 2944, 2972, 5, 213, 0, 0, 2945, 2946, 5, 27, 0, 0, 2946, 2947, 5, 314, 0, 0, 2947, 2948, 3, 190, 95, 0, 2948, 2949, 5, 316, 0, 0, 2949, 2972, 1, 0, 0, 0, 2950, 2951, 5, 162, 0, 0, 2951, 2952, 5, 314, 0, 0, 2952, 2953, 3, 190, 95, 0, 2953, 2954, 5, 3, 0, 0, 2954, 2955, 3, 190, 95, 0, 2955, 2956, 5, 316, 0, 0, 2956, 2972, 1, 0, 0, 0, 2957, 2969, 3, 302, 151, 0, 2958, 2959, 5, 1, 0, 0, 2959, 2964, 3, 194, 97, 0, 2960, 2961, 5, 3, 0, 0, 2961, 2963, 3, 194, 97, 0, 2962, 2960, 1, 0, 0, 0, 2963, 2966, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2967, 1, 0, 0, 0, 2966, 2964, 1, 0, 0, 0, 2967, 2968, 5, 2, 0, 0, 2968, 2970, 1, 0, 0, 0, 2969, 2958, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 2972, 1, 0, 0, 0, 2971, 2900, 1, 0, 0, 0, 2971, 2913, 1, 0, 0, 0, 2971, 2919, 1, 0, 0, 0, 2971, 2931, 1, 0, 0, 0, 2971, 2943, 1, 0, 0, 0, 2971, 2945, 1, 0, 0, 0, 2971, 2950, 1, 0, 0, 0, 2971, 2957, 1, 0, 0, 0, 2972, 2982, 1, 0, 0, 0, 2973, 2974, 10, 2, 0, 0, 2974, 2978, 5, 27, 0, 0, 2975, 2976, 5, 8, 0, 0, 2976, 2977, 5, 329, 0, 0, 2977, 2979, 5, 9, 0, 0, 2978, 2975, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2981, 1, 0, 0, 0, 2980, 2973, 1, 0, 0, 0, 2981, 2984, 1, 0, 0, 0, 2982, 2980, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 191, 1, 0, 0, 0, 2984, 2982, 1, 0, 0, 0, 2985, 2990, 3, 190, 95, 0, 2986, 2987, 3, 302, 151, 0, 2987, 2988, 3, 190, 95, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2985, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2990, 193, 1, 0, 0, 0, 2991, 2994, 5, 329, 0, 0, 2992, 2994, 3, 190, 95, 0, 2993, 2991, 1, 0, 0, 0, 2993, 2992, 1, 0, 0, 0, 2994, 195, 1, 0, 0, 0, 2995, 2996, 5, 300, 0, 0, 2996, 2997, 3, 142, 71, 0, 2997, 2998, 5, 265, 0, 0, 2998, 2999, 3, 142, 71, 0, 2999, 197, 1, 0, 0, 0, 3000, 3001, 5, 99, 0, 0, 3001, 3002, 5, 1, 0, 0, 3002, 3003, 3, 54, 27, 0, 3003, 3004, 5, 2, 0, 0, 3004, 199, 1, 0, 0, 0, 3005, 3006, 5, 300, 0, 0, 3006, 3009, 5, 164, 0, 0, 3007, 3008, 5, 25, 0, 0, 3008, 3010, 3, 142, 71, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3012, 5, 265, 0, 0, 3012, 3013, 5, 287, 0, 0, 3013, 3014, 5, 251, 0, 0, 3014, 3015, 3, 302, 151, 0, 3015, 3016, 5, 312, 0, 0, 3016, 3024, 3, 142, 71, 0, 3017, 3018, 5, 3, 0, 0, 3018, 3019, 3, 302, 151, 0, 3019, 3020, 5, 312, 0, 0, 3020, 3021, 3, 142, 71, 0, 3021, 3023, 1, 0, 0, 0, 3022, 3017, 1, 0, 0, 0, 3023, 3026, 1, 0, 0, 0, 3024, 3022, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3070, 1, 0, 0, 0, 3026, 3024, 1, 0, 0, 0, 3027, 3028, 5, 300, 0, 0, 3028, 3031, 5, 164, 0, 0, 3029, 3030, 5, 25, 0, 0, 3030, 3032, 3, 142, 71, 0, 3031, 3029, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3034, 5, 265, 0, 0, 3034, 3070, 5, 73, 0, 0, 3035, 3036, 5, 300, 0, 0, 3036, 3037, 5, 182, 0, 0, 3037, 3040, 5, 164, 0, 0, 3038, 3039, 5, 25, 0, 0, 3039, 3041, 3, 142, 71, 0, 3040, 3038, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3043, 5, 265, 0, 0, 3043, 3055, 5, 127, 0, 0, 3044, 3045, 5, 1, 0, 0, 3045, 3050, 3, 302, 151, 0, 3046, 3047, 5, 3, 0, 0, 3047, 3049, 3, 302, 151, 0, 3048, 3046, 1, 0, 0, 0, 3049, 3052, 1, 0, 0, 0, 3050, 3048, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3053, 1, 0, 0, 0, 3052, 3050, 1, 0, 0, 0, 3053, 3054, 5, 2, 0, 0, 3054, 3056, 1, 0, 0, 0, 3055, 3044, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3058, 5, 296, 0, 0, 3058, 3059, 5, 1, 0, 0, 3059, 3064, 3, 142, 71, 0, 3060, 3061, 5, 3, 0, 0, 3061, 3063, 3, 142, 71, 0, 3062, 3060, 1, 0, 0, 0, 3063, 3066, 1, 0, 0, 0, 3064, 3062, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3067, 1, 0, 0, 0, 3066, 3064, 1, 0, 0, 0, 3067, 3068, 5, 2, 0, 0, 3068, 3070, 1, 0, 0, 0, 3069, 3005, 1, 0, 0, 0, 3069, 3027, 1, 0, 0, 0, 3069, 3035, 1, 0, 0, 0, 3070, 201, 1, 0, 0, 0, 3071, 3077, 5, 199, 0, 0, 3072, 3078, 3, 302, 151, 0, 3073, 3074, 5, 1, 0, 0, 3074, 3075, 3, 70, 35, 0, 3075, 3076, 5, 2, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3072, 1, 0, 0, 0, 3077, 3073, 1, 0, 0, 0, 3078, 203, 1, 0, 0, 0, 3079, 3080, 5, 168, 0, 0, 3080, 3085, 3, 96, 48, 0, 3081, 3082, 5, 3, 0, 0, 3082, 3084, 3, 96, 48, 0, 3083, 3081, 1, 0, 0, 0, 3084, 3087, 1, 0, 0, 0, 3085, 3083, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3089, 1, 0, 0, 0, 3087, 3085, 1, 0, 0, 0, 3088, 3079, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3094, 3, 206, 103, 0, 3091, 3092, 5, 21, 0, 0, 3092, 3093, 5, 163, 0, 0, 3093, 3095, 3, 102, 51, 0, 3094, 3091, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3097, 1, 0, 0, 0, 3096, 3098, 7, 13, 0, 0, 3097, 3096, 1, 0, 0, 0, 3097, 3098, 1, 0, 0, 0, 3098, 3104, 1, 0, 0, 0, 3099, 3100, 5, 206, 0, 0, 3100, 3101, 5, 1, 0, 0, 3101, 3102, 3, 210, 105, 0, 3102, 3103, 5, 2, 0, 0, 3103, 3105, 1, 0, 0, 0, 3104, 3099, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3115, 1, 0, 0, 0, 3106, 3107, 5, 257, 0, 0, 3107, 3112, 3, 104, 52, 0, 3108, 3109, 5, 3, 0, 0, 3109, 3111, 3, 104, 52, 0, 3110, 3108, 1, 0, 0, 0, 3111, 3114, 1, 0, 0, 0, 3112, 3110, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3116, 1, 0, 0, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3106, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3126, 1, 0, 0, 0, 3117, 3118, 5, 71, 0, 0, 3118, 3123, 3, 106, 53, 0, 3119, 3120, 5, 3, 0, 0, 3120, 3122, 3, 106, 53, 0, 3121, 3119, 1, 0, 0, 0, 3122, 3125, 1, 0, 0, 0, 3123, 3121, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3127, 1, 0, 0, 0, 3125, 3123, 1, 0, 0, 0, 3126, 3117, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 205, 1, 0, 0, 0, 3128, 3129, 5, 219, 0, 0, 3129, 3153, 3, 208, 104, 0, 3130, 3131, 5, 240, 0, 0, 3131, 3153, 3, 208, 104, 0, 3132, 3133, 5, 116, 0, 0, 3133, 3153, 3, 208, 104, 0, 3134, 3135, 5, 219, 0, 0, 3135, 3136, 5, 34, 0, 0, 3136, 3137, 3, 208, 104, 0, 3137, 3138, 5, 25, 0, 0, 3138, 3139, 3, 208, 104, 0, 3139, 3153, 1, 0, 0, 0, 3140, 3141, 5, 240, 0, 0, 3141, 3142, 5, 34, 0, 0, 3142, 3143, 3, 208, 104, 0, 3143, 3144, 5, 25, 0, 0, 3144, 3145, 3, 208, 104, 0, 3145, 3153, 1, 0, 0, 0, 3146, 3147, 5, 116, 0, 0, 3147, 3148, 5, 34, 0, 0, 3148, 3149, 3, 208, 104, 0, 3149, 3150, 5, 25, 0, 0, 3150, 3151, 3, 208, 104, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3128, 1, 0, 0, 0, 3152, 3130, 1, 0, 0, 0, 3152, 3132, 1, 0, 0, 0, 3152, 3134, 1, 0, 0, 0, 3152, 3140, 1, 0, 0, 0, 3152, 3146, 1, 0, 0, 0, 3153, 207, 1, 0, 0, 0, 3154, 3155, 5, 278, 0, 0, 3155, 3164, 5, 212, 0, 0, 3156, 3157, 5, 278, 0, 0, 3157, 3164, 5, 102, 0, 0, 3158, 3159, 5, 56, 0, 0, 3159, 3164, 5, 239, 0, 0, 3160, 3161, 3, 142, 71, 0, 3161, 3162, 7, 30, 0, 0, 3162, 3164, 1, 0, 0, 0, 3163, 3154, 1, 0, 0, 0, 3163, 3156, 1, 0, 0, 0, 3163, 3158, 1, 0, 0, 0, 3163, 3160, 1, 0, 0, 0, 3164, 209, 1, 0, 0, 0, 3165, 3166, 6, 105, -1, 0, 3166, 3168, 3, 212, 106, 0, 3167, 3169, 3, 214, 107, 0, 3168, 3167, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3177, 1, 0, 0, 0, 3170, 3171, 10, 2, 0, 0, 3171, 3176, 3, 210, 105, 3, 3172, 3173, 10, 1, 0, 0, 3173, 3174, 5, 11, 0, 0, 3174, 3176, 3, 210, 105, 2, 3175, 3170, 1, 0, 0, 0, 3175, 3172, 1, 0, 0, 0, 3176, 3179, 1, 0, 0, 0, 3177, 3175, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 211, 1, 0, 0, 0, 3179, 3177, 1, 0, 0, 0, 3180, 3206, 3, 302, 151, 0, 3181, 3182, 5, 1, 0, 0, 3182, 3206, 5, 2, 0, 0, 3183, 3184, 5, 209, 0, 0, 3184, 3185, 5, 1, 0, 0, 3185, 3190, 3, 210, 105, 0, 3186, 3187, 5, 3, 0, 0, 3187, 3189, 3, 210, 105, 0, 3188, 3186, 1, 0, 0, 0, 3189, 3192, 1, 0, 0, 0, 3190, 3188, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3193, 1, 0, 0, 0, 3192, 3190, 1, 0, 0, 0, 3193, 3194, 5, 2, 0, 0, 3194, 3206, 1, 0, 0, 0, 3195, 3196, 5, 1, 0, 0, 3196, 3197, 3, 210, 105, 0, 3197, 3198, 5, 2, 0, 0, 3198, 3206, 1, 0, 0, 0, 3199, 3206, 5, 12, 0, 0, 3200, 3206, 5, 13, 0, 0, 3201, 3202, 5, 14, 0, 0, 3202, 3203, 3, 210, 105, 0, 3203, 3204, 5, 15, 0, 0, 3204, 3206, 1, 0, 0, 0, 3205, 3180, 1, 0, 0, 0, 3205, 3181, 1, 0, 0, 0, 3205, 3183, 1, 0, 0, 0, 3205, 3195, 1, 0, 0, 0, 3205, 3199, 1, 0, 0, 0, 3205, 3200, 1, 0, 0, 0, 3205, 3201, 1, 0, 0, 0, 3206, 213, 1, 0, 0, 0, 3207, 3209, 5, 320, 0, 0, 3208, 3210, 5, 324, 0, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3238, 1, 0, 0, 0, 3211, 3213, 5, 318, 0, 0, 3212, 3214, 5, 324, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3238, 1, 0, 0, 0, 3215, 3217, 5, 324, 0, 0, 3216, 3218, 5, 324, 0, 0, 3217, 3216, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3238, 1, 0, 0, 0, 3219, 3220, 5, 16, 0, 0, 3220, 3221, 5, 329, 0, 0, 3221, 3223, 5, 17, 0, 0, 3222, 3224, 5, 324, 0, 0, 3223, 3222, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3238, 1, 0, 0, 0, 3225, 3227, 5, 16, 0, 0, 3226, 3228, 5, 329, 0, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 5, 3, 0, 0, 3230, 3232, 5, 329, 0, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3235, 5, 17, 0, 0, 3234, 3236, 5, 324, 0, 0, 3235, 3234, 1, 0, 0, 0, 3235, 3236, 1, 0, 0, 0, 3236, 3238, 1, 0, 0, 0, 3237, 3207, 1, 0, 0, 0, 3237, 3211, 1, 0, 0, 0, 3237, 3215, 1, 0, 0, 0, 3237, 3219, 1, 0, 0, 0, 3237, 3225, 1, 0, 0, 0, 3238, 215, 1, 0, 0, 0, 3239, 3240, 3, 302, 151, 0, 3240, 3241, 5, 312, 0, 0, 3241, 3242, 3, 142, 71, 0, 3242, 217, 1, 0, 0, 0, 3243, 3244, 5, 104, 0, 0, 3244, 3248, 7, 31, 0, 0, 3245, 3246, 5, 276, 0, 0, 3246, 3248, 7, 32, 0, 0, 3247, 3243, 1, 0, 0, 0, 3247, 3245, 1, 0, 0, 0, 3248, 219, 1, 0, 0, 0, 3249, 3250, 5, 134, 0, 0, 3250, 3251, 5, 153, 0, 0, 3251, 3255, 3, 222, 111, 0, 3252, 3253, 5, 220, 0, 0, 3253, 3255, 7, 33, 0, 0, 3254, 3249, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3255, 221, 1, 0, 0, 0, 3256, 3257, 5, 220, 0, 0, 3257, 3264, 5, 279, 0, 0, 3258, 3259, 5, 220, 0, 0, 3259, 3264, 5, 48, 0, 0, 3260, 3261, 5, 225, 0, 0, 3261, 3264, 5, 220, 0, 0, 3262, 3264, 5, 249, 0, 0, 3263, 3256, 1, 0, 0, 0, 3263, 3258, 1, 0, 0, 0, 3263, 3260, 1, 0, 0, 0, 3263, 3262, 1, 0, 0, 0, 3264, 223, 1, 0, 0, 0, 3265, 3271, 3, 142, 71, 0, 3266, 3267, 3, 302, 151, 0, 3267, 3268, 5, 6, 0, 0, 3268, 3269, 3, 142, 71, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3265, 1, 0, 0, 0, 3270, 3266, 1, 0, 0, 0, 3271, 225, 1, 0, 0, 0, 3272, 3273, 3, 302, 151, 0, 3273, 3274, 5, 4, 0, 0, 3274, 3275, 3, 302, 151, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3278, 3, 302, 151, 0, 3277, 3272, 1, 0, 0, 0, 3277, 3276, 1, 0, 0, 0, 3278, 227, 1, 0, 0, 0, 3279, 3284, 3, 226, 113, 0, 3280, 3281, 5, 3, 0, 0, 3281, 3283, 3, 226, 113, 0, 3282, 3280, 1, 0, 0, 0, 3283, 3286, 1, 0, 0, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 229, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3287, 3288, 5, 107, 0, 0, 3288, 3289, 3, 232, 116, 0, 3289, 3293, 3, 238, 119, 0, 3290, 3292, 3, 240, 120, 0, 3291, 3290, 1, 0, 0, 0, 3292, 3295, 1, 0, 0, 0, 3293, 3291, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3293, 1, 0, 0, 0, 3296, 3297, 3, 242, 121, 0, 3297, 231, 1, 0, 0, 0, 3298, 3299, 3, 280, 140, 0, 3299, 3308, 5, 1, 0, 0, 3300, 3305, 3, 236, 118, 0, 3301, 3302, 5, 3, 0, 0, 3302, 3304, 3, 236, 118, 0, 3303, 3301, 1, 0, 0, 0, 3304, 3307, 1, 0, 0, 0, 3305, 3303, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3309, 1, 0, 0, 0, 3307, 3305, 1, 0, 0, 0, 3308, 3300, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3311, 5, 2, 0, 0, 3311, 233, 1, 0, 0, 0, 3312, 3313, 3, 278, 139, 0, 3313, 3322, 5, 1, 0, 0, 3314, 3319, 3, 236, 118, 0, 3315, 3316, 5, 3, 0, 0, 3316, 3318, 3, 236, 118, 0, 3317, 3315, 1, 0, 0, 0, 3318, 3321, 1, 0, 0, 0, 3319, 3317, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3323, 1, 0, 0, 0, 3321, 3319, 1, 0, 0, 0, 3322, 3314, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3325, 5, 2, 0, 0, 3325, 235, 1, 0, 0, 0, 3326, 3328, 3, 302, 151, 0, 3327, 3326, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 3, 190, 95, 0, 3330, 237, 1, 0, 0, 0, 3331, 3332, 5, 232, 0, 0, 3332, 3333, 3, 190, 95, 0, 3333, 239, 1, 0, 0, 0, 3334, 3335, 5, 147, 0, 0, 3335, 3354, 3, 302, 151, 0, 3336, 3338, 5, 182, 0, 0, 3337, 3336, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3339, 1, 0, 0, 0, 3339, 3354, 5, 78, 0, 0, 3340, 3341, 5, 232, 0, 0, 3341, 3342, 5, 183, 0, 0, 3342, 3343, 5, 190, 0, 0, 3343, 3344, 5, 183, 0, 0, 3344, 3354, 5, 126, 0, 0, 3345, 3346, 5, 38, 0, 0, 3346, 3347, 5, 190, 0, 0, 3347, 3348, 5, 183, 0, 0, 3348, 3354, 5, 126, 0, 0, 3349, 3350, 5, 246, 0, 0, 3350, 3354, 7, 1, 0, 0, 3351, 3352, 5, 46, 0, 0, 3352, 3354, 3, 174, 87, 0, 3353, 3334, 1, 0, 0, 0, 3353, 3337, 1, 0, 0, 0, 3353, 3340, 1, 0, 0, 0, 3353, 3345, 1, 0, 0, 0, 3353, 3349, 1, 0, 0, 0, 3353, 3351, 1, 0, 0, 0, 3354, 241, 1, 0, 0, 0, 3355, 3356, 5, 230, 0, 0, 3356, 3455, 3, 148, 74, 0, 3357, 3358, 5, 251, 0, 0, 3358, 3359, 3, 302, 151, 0, 3359, 3360, 5, 312, 0, 0, 3360, 3361, 3, 142, 71, 0, 3361, 3455, 1, 0, 0, 0, 3362, 3363, 5, 40, 0, 0, 3363, 3365, 3, 142, 71, 0, 3364, 3366, 3, 244, 122, 0, 3365, 3364, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3370, 1, 0, 0, 0, 3369, 3371, 3, 248, 124, 0, 3370, 3369, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3372, 1, 0, 0, 0, 3372, 3373, 5, 88, 0, 0, 3373, 3374, 5, 40, 0, 0, 3374, 3455, 1, 0, 0, 0, 3375, 3377, 5, 40, 0, 0, 3376, 3378, 3, 244, 122, 0, 3377, 3376, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3382, 1, 0, 0, 0, 3381, 3383, 3, 248, 124, 0, 3382, 3381, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 3385, 5, 88, 0, 0, 3385, 3386, 5, 40, 0, 0, 3386, 3455, 1, 0, 0, 0, 3387, 3388, 5, 119, 0, 0, 3388, 3389, 3, 142, 71, 0, 3389, 3390, 5, 265, 0, 0, 3390, 3394, 3, 252, 126, 0, 3391, 3393, 3, 246, 123, 0, 3392, 3391, 1, 0, 0, 0, 3393, 3396, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3398, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3399, 3, 248, 124, 0, 3398, 3397, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 5, 88, 0, 0, 3401, 3402, 5, 119, 0, 0, 3402, 3455, 1, 0, 0, 0, 3403, 3404, 5, 135, 0, 0, 3404, 3455, 3, 302, 151, 0, 3405, 3406, 5, 151, 0, 0, 3406, 3455, 3, 302, 151, 0, 3407, 3413, 5, 32, 0, 0, 3408, 3409, 3, 250, 125, 0, 3409, 3410, 5, 325, 0, 0, 3410, 3412, 1, 0, 0, 0, 3411, 3408, 1, 0, 0, 0, 3412, 3415, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3416, 3418, 3, 252, 126, 0, 3417, 3416, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3455, 5, 88, 0, 0, 3420, 3421, 3, 302, 151, 0, 3421, 3422, 5, 10, 0, 0, 3422, 3424, 1, 0, 0, 0, 3423, 3420, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3426, 5, 161, 0, 0, 3426, 3427, 3, 252, 126, 0, 3427, 3428, 5, 88, 0, 0, 3428, 3429, 5, 161, 0, 0, 3429, 3455, 1, 0, 0, 0, 3430, 3431, 3, 302, 151, 0, 3431, 3432, 5, 10, 0, 0, 3432, 3434, 1, 0, 0, 0, 3433, 3430, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3436, 5, 302, 0, 0, 3436, 3437, 3, 142, 71, 0, 3437, 3438, 5, 81, 0, 0, 3438, 3439, 3, 252, 126, 0, 3439, 3440, 5, 88, 0, 0, 3440, 3441, 5, 302, 0, 0, 3441, 3455, 1, 0, 0, 0, 3442, 3443, 3, 302, 151, 0, 3443, 3444, 5, 10, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3442, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 3448, 5, 224, 0, 0, 3448, 3449, 3, 252, 126, 0, 3449, 3450, 5, 286, 0, 0, 3450, 3451, 3, 142, 71, 0, 3451, 3452, 5, 88, 0, 0, 3452, 3453, 5, 224, 0, 0, 3453, 3455, 1, 0, 0, 0, 3454, 3355, 1, 0, 0, 0, 3454, 3357, 1, 0, 0, 0, 3454, 3362, 1, 0, 0, 0, 3454, 3375, 1, 0, 0, 0, 3454, 3387, 1, 0, 0, 0, 3454, 3403, 1, 0, 0, 0, 3454, 3405, 1, 0, 0, 0, 3454, 3407, 1, 0, 0, 0, 3454, 3423, 1, 0, 0, 0, 3454, 3433, 1, 0, 0, 0, 3454, 3445, 1, 0, 0, 0, 3455, 243, 1, 0, 0, 0, 3456, 3457, 5, 300, 0, 0, 3457, 3458, 3, 142, 71, 0, 3458, 3459, 5, 265, 0, 0, 3459, 3460, 3, 252, 126, 0, 3460, 245, 1, 0, 0, 0, 3461, 3462, 5, 86, 0, 0, 3462, 3463, 3, 142, 71, 0, 3463, 3464, 5, 265, 0, 0, 3464, 3465, 3, 252, 126, 0, 3465, 247, 1, 0, 0, 0, 3466, 3467, 5, 84, 0, 0, 3467, 3468, 3, 252, 126, 0, 3468, 249, 1, 0, 0, 0, 3469, 3470, 5, 69, 0, 0, 3470, 3475, 3, 302, 151, 0, 3471, 3472, 5, 3, 0, 0, 3472, 3474, 3, 302, 151, 0, 3473, 3471, 1, 0, 0, 0, 3474, 3477, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 3478, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3481, 3, 190, 95, 0, 3479, 3480, 5, 70, 0, 0, 3480, 3482, 3, 148, 74, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 251, 1, 0, 0, 0, 3483, 3484, 3, 242, 121, 0, 3484, 3485, 5, 325, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3483, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3486, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 253, 1, 0, 0, 0, 3490, 3497, 5, 53, 0, 0, 3491, 3497, 5, 248, 0, 0, 3492, 3497, 5, 73, 0, 0, 3493, 3497, 5, 127, 0, 0, 3494, 3497, 5, 287, 0, 0, 3495, 3497, 3, 302, 151, 0, 3496, 3490, 1, 0, 0, 0, 3496, 3491, 1, 0, 0, 0, 3496, 3492, 1, 0, 0, 0, 3496, 3493, 1, 0, 0, 0, 3496, 3494, 1, 0, 0, 0, 3496, 3495, 1, 0, 0, 0, 3497, 255, 1, 0, 0, 0, 3498, 3502, 5, 260, 0, 0, 3499, 3502, 5, 243, 0, 0, 3500, 3502, 3, 302, 151, 0, 3501, 3498, 1, 0, 0, 0, 3501, 3499, 1, 0, 0, 0, 3501, 3500, 1, 0, 0, 0, 3502, 257, 1, 0, 0, 0, 3503, 3505, 3, 256, 128, 0, 3504, 3503, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3507, 3, 288, 144, 0, 3507, 259, 1, 0, 0, 0, 3508, 3511, 3, 262, 131, 0, 3509, 3511, 3, 266, 133, 0, 3510, 3508, 1, 0, 0, 0, 3510, 3509, 1, 0, 0, 0, 3511, 261, 1, 0, 0, 0, 3512, 3524, 3, 302, 151, 0, 3513, 3514, 3, 302, 151, 0, 3514, 3515, 5, 4, 0, 0, 3515, 3516, 3, 302, 151, 0, 3516, 3524, 1, 0, 0, 0, 3517, 3518, 3, 302, 151, 0, 3518, 3519, 5, 4, 0, 0, 3519, 3520, 3, 302, 151, 0, 3520, 3521, 5, 4, 0, 0, 3521, 3522, 3, 302, 151, 0, 3522, 3524, 1, 0, 0, 0, 3523, 3512, 1, 0, 0, 0, 3523, 3513, 1, 0, 0, 0, 3523, 3517, 1, 0, 0, 0, 3524, 263, 1, 0, 0, 0, 3525, 3537, 3, 302, 151, 0, 3526, 3527, 3, 302, 151, 0, 3527, 3528, 5, 4, 0, 0, 3528, 3529, 3, 302, 151, 0, 3529, 3537, 1, 0, 0, 0, 3530, 3531, 3, 302, 151, 0, 3531, 3532, 5, 4, 0, 0, 3532, 3533, 3, 302, 151, 0, 3533, 3534, 5, 4, 0, 0, 3534, 3535, 3, 302, 151, 0, 3535, 3537, 1, 0, 0, 0, 3536, 3525, 1, 0, 0, 0, 3536, 3526, 1, 0, 0, 0, 3536, 3530, 1, 0, 0, 0, 3537, 265, 1, 0, 0, 0, 3538, 3550, 3, 302, 151, 0, 3539, 3540, 3, 302, 151, 0, 3540, 3541, 5, 4, 0, 0, 3541, 3542, 3, 302, 151, 0, 3542, 3550, 1, 0, 0, 0, 3543, 3544, 3, 302, 151, 0, 3544, 3545, 5, 4, 0, 0, 3545, 3546, 3, 302, 151, 0, 3546, 3547, 5, 4, 0, 0, 3547, 3548, 3, 302, 151, 0, 3548, 3550, 1, 0, 0, 0, 3549, 3538, 1, 0, 0, 0, 3549, 3539, 1, 0, 0, 0, 3549, 3543, 1, 0, 0, 0, 3550, 267, 1, 0, 0, 0, 3551, 3563, 3, 302, 151, 0, 3552, 3553, 3, 302, 151, 0, 3553, 3554, 5, 4, 0, 0, 3554, 3555, 3, 302, 151, 0, 3555, 3563, 1, 0, 0, 0, 3556, 3557, 3, 302, 151, 0, 3557, 3558, 5, 4, 0, 0, 3558, 3559, 3, 302, 151, 0, 3559, 3560, 5, 4, 0, 0, 3560, 3561, 3, 302, 151, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3551, 1, 0, 0, 0, 3562, 3552, 1, 0, 0, 0, 3562, 3556, 1, 0, 0, 0, 3563, 269, 1, 0, 0, 0, 3564, 3570, 3, 302, 151, 0, 3565, 3566, 3, 302, 151, 0, 3566, 3567, 5, 4, 0, 0, 3567, 3568, 3, 302, 151, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3564, 1, 0, 0, 0, 3569, 3565, 1, 0, 0, 0, 3570, 271, 1, 0, 0, 0, 3571, 3577, 3, 302, 151, 0, 3572, 3573, 3, 302, 151, 0, 3573, 3574, 5, 4, 0, 0, 3574, 3575, 3, 302, 151, 0, 3575, 3577, 1, 0, 0, 0, 3576, 3571, 1, 0, 0, 0, 3576, 3572, 1, 0, 0, 0, 3577, 273, 1, 0, 0, 0, 3578, 3579, 3, 302, 151, 0, 3579, 275, 1, 0, 0, 0, 3580, 3581, 3, 302, 151, 0, 3581, 277, 1, 0, 0, 0, 3582, 3583, 3, 288, 144, 0, 3583, 279, 1, 0, 0, 0, 3584, 3585, 3, 288, 144, 0, 3585, 281, 1, 0, 0, 0, 3586, 3589, 3, 288, 144, 0, 3587, 3589, 4, 141, 14, 0, 3588, 3586, 1, 0, 0, 0, 3588, 3587, 1, 0, 0, 0, 3589, 283, 1, 0, 0, 0, 3590, 3591, 3, 288, 144, 0, 3591, 285, 1, 0, 0, 0, 3592, 3593, 3, 302, 151, 0, 3593, 287, 1, 0, 0, 0, 3594, 3599, 3, 302, 151, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3598, 3, 302, 151, 0, 3597, 3595, 1, 0, 0, 0, 3598, 3601, 1, 0, 0, 0, 3599, 3597, 1, 0, 0, 0, 3599, 3600, 1, 0, 0, 0, 3600, 289, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3602, 3603, 5, 103, 0, 0, 3603, 3604, 3, 292, 146, 0, 3604, 3605, 5, 28, 0, 0, 3605, 3606, 5, 187, 0, 0, 3606, 3607, 3, 148, 74, 0, 3607, 291, 1, 0, 0, 0, 3608, 3609, 7, 34, 0, 0, 3609, 293, 1, 0, 0, 0, 3610, 3614, 3, 296, 148, 0, 3611, 3614, 5, 64, 0, 0, 3612, 3614, 5, 60, 0, 0, 3613, 3610, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3612, 1, 0, 0, 0, 3614, 295, 1, 0, 0, 0, 3615, 3621, 3, 302, 151, 0, 3616, 3617, 5, 289, 0, 0, 3617, 3621, 3, 302, 151, 0, 3618, 3619, 5, 235, 0, 0, 3619, 3621, 3, 302, 151, 0, 3620, 3615, 1, 0, 0, 0, 3620, 3616, 1, 0, 0, 0, 3620, 3618, 1, 0, 0, 0, 3621, 297, 1, 0, 0, 0, 3622, 3627, 3, 302, 151, 0, 3623, 3624, 5, 3, 0, 0, 3624, 3626, 3, 302, 151, 0, 3625, 3623, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 299, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3638, 5, 53, 0, 0, 3631, 3638, 5, 248, 0, 0, 3632, 3638, 5, 73, 0, 0, 3633, 3638, 5, 127, 0, 0, 3634, 3638, 5, 287, 0, 0, 3635, 3638, 5, 93, 0, 0, 3636, 3638, 3, 302, 151, 0, 3637, 3630, 1, 0, 0, 0, 3637, 3631, 1, 0, 0, 0, 3637, 3632, 1, 0, 0, 0, 3637, 3633, 1, 0, 0, 0, 3637, 3634, 1, 0, 0, 0, 3637, 3635, 1, 0, 0, 0, 3637, 3636, 1, 0, 0, 0, 3638, 301, 1, 0, 0, 0, 3639, 3645, 5, 332, 0, 0, 3640, 3645, 5, 334, 0, 0, 3641, 3645, 3, 308, 154, 0, 3642, 3645, 5, 335, 0, 0, 3643, 3645, 5, 333, 0, 0, 3644, 3639, 1, 0, 0, 0, 3644, 3640, 1, 0, 0, 0, 3644, 3641, 1, 0, 0, 0, 3644, 3642, 1, 0, 0, 0, 3644, 3643, 1, 0, 0, 0, 3645, 303, 1, 0, 0, 0, 3646, 3648, 5, 319, 0, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3659, 5, 330, 0, 0, 3650, 3652, 5, 319, 0, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3659, 5, 331, 0, 0, 3654, 3656, 5, 319, 0, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3659, 5, 329, 0, 0, 3658, 3647, 1, 0, 0, 0, 3658, 3651, 1, 0, 0, 0, 3658, 3655, 1, 0, 0, 0, 3659, 305, 1, 0, 0, 0, 3660, 3663, 3, 302, 151, 0, 3661, 3663, 3, 174, 87, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3661, 1, 0, 0, 0, 3663, 307, 1, 0, 0, 0, 3664, 3665, 7, 35, 0, 0, 3665, 309, 1, 0, 0, 0, 476, 313, 322, 326, 330, 334, 338, 351, 358, 362, 366, 372, 376, 383, 388, 392, 398, 402, 421, 427, 431, 435, 439, 447, 451, 454, 459, 465, 474, 480, 484, 490, 497, 505, 517, 526, 535, 541, 552, 560, 568, 575, 585, 592, 600, 615, 650, 653, 656, 659, 665, 670, 677, 683, 687, 691, 699, 705, 709, 713, 727, 735, 754, 779, 782, 789, 796, 805, 809, 816, 824, 833, 839, 844, 848, 856, 861, 870, 876, 883, 892, 898, 902, 908, 915, 920, 933, 938, 950, 954, 960, 969, 974, 980, 1008, 1014, 1016, 1022, 1028, 1030, 1038, 1040, 1050, 1052, 1067, 1072, 1079, 1089, 1095, 1097, 1105, 1107, 1132, 1135, 1139, 1143, 1161, 1164, 1175, 1178, 1194, 1204, 1208, 1214, 1217, 1226, 1238, 1241, 1251, 1255, 1261, 1268, 1273, 1279, 1283, 1287, 1293, 1304, 1313, 1323, 1326, 1331, 1333, 1340, 1346, 1348, 1352, 1362, 1368, 1371, 1373, 1385, 1392, 1396, 1399, 1403, 1407, 1414, 1423, 1426, 1429, 1434, 1437, 1445, 1448, 1457, 1464, 1472, 1483, 1486, 1496, 1499, 1510, 1515, 1523, 1526, 1530, 1534, 1543, 1548, 1557, 1560, 1563, 1567, 1578, 1581, 1584, 1591, 1594, 1613, 1617, 1621, 1625, 1629, 1633, 1635, 1646, 1651, 1660, 1669, 1672, 1678, 1686, 1695, 1698, 1706, 1709, 1712, 1717, 1720, 1732, 1735, 1743, 1748, 1752, 1754, 1756, 1771, 1773, 1784, 1805, 1815, 1826, 1830, 1832, 1840, 1851, 1862, 1869, 1882, 1888, 1914, 1929, 1934, 1938, 1948, 1954, 1960, 1968, 1973, 1980, 1982, 1988, 1994, 1998, 2003, 2012, 2017, 2031, 2041, 2044, 2053, 2058, 2063, 2065, 2074, 2077, 2085, 2088, 2095, 2100, 2107, 2111, 2113, 2121, 2131, 2137, 2139, 2146, 2150, 2152, 2159, 2163, 2165, 2167, 2176, 2187, 2191, 2201, 2211, 2215, 2223, 2225, 2238, 2246, 2255, 2261, 2269, 2275, 2279, 2284, 2289, 2295, 2309, 2311, 2341, 2352, 2360, 2365, 2370, 2383, 2389, 2392, 2399, 2404, 2407, 2410, 2415, 2422, 2425, 2434, 2437, 2441, 2444, 2447, 2462, 2465, 2484, 2488, 2496, 2500, 2525, 2528, 2537, 2543, 2549, 2555, 2564, 2567, 2570, 2589, 2598, 2620, 2623, 2633, 2642, 2648, 2654, 2665, 2667, 2672, 2679, 2681, 2687, 2693, 2704, 2713, 2718, 2723, 2725, 2727, 2733, 2735, 2745, 2754, 2756, 2762, 2764, 2767, 2777, 2779, 2787, 2795, 2798, 2803, 2808, 2820, 2824, 2828, 2831, 2833, 2841, 2844, 2854, 2862, 2868, 2870, 2878, 2888, 2894, 2908, 2917, 2924, 2929, 2936, 2941, 2964, 2969, 2971, 2978, 2982, 2989, 2993, 3009, 3024, 3031, 3040, 3050, 3055, 3064, 3069, 3077, 3085, 3088, 3094, 3097, 3104, 3112, 3115, 3123, 3126, 3152, 3163, 3168, 3175, 3177, 3190, 3205, 3209, 3213, 3217, 3223, 3227, 3231, 3235, 3237, 3247, 3254, 3263, 3270, 3277, 3284, 3293, 3305, 3308, 3319, 3322, 3327, 3337, 3353, 3367, 3370, 3379, 3382, 3394, 3398, 3413, 3417, 3423, 3433, 3445, 3454, 3475, 3481, 3488, 3496, 3501, 3504, 3510, 3523, 3536, 3549, 3562, 3569, 3576, 3588, 3599, 3613, 3620, 3627, 3637, 3644, 3647, 3651, 3655, 3658, 3662] \ No newline at end of file +[4, 1, 340, 3691, 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, 1, 0, 5, 0, 324, 8, 0, 10, 0, 12, 0, 327, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 335, 8, 2, 1, 3, 1, 3, 3, 3, 339, 8, 3, 1, 4, 1, 4, 3, 4, 343, 8, 4, 1, 5, 1, 5, 3, 5, 347, 8, 5, 1, 6, 1, 6, 3, 6, 351, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 364, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 371, 8, 8, 1, 8, 1, 8, 3, 8, 375, 8, 8, 1, 8, 1, 8, 3, 8, 379, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 385, 8, 8, 1, 8, 1, 8, 3, 8, 389, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 396, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 401, 8, 8, 1, 8, 1, 8, 3, 8, 405, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 411, 8, 8, 1, 8, 1, 8, 3, 8, 415, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 434, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 3, 8, 444, 8, 8, 1, 8, 1, 8, 3, 8, 448, 8, 8, 1, 8, 1, 8, 3, 8, 452, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 460, 8, 8, 1, 8, 1, 8, 3, 8, 464, 8, 8, 1, 8, 3, 8, 467, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 472, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 478, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 485, 8, 8, 10, 8, 12, 8, 488, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 493, 8, 8, 1, 8, 1, 8, 3, 8, 497, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 503, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 510, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 518, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 530, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 539, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 548, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 554, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 565, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 573, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 581, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 588, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 598, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 605, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 613, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 628, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 661, 8, 8, 10, 8, 12, 8, 664, 9, 8, 3, 8, 666, 8, 8, 1, 8, 3, 8, 669, 8, 8, 1, 8, 3, 8, 672, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 683, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 690, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 696, 8, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 3, 8, 704, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 712, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 718, 8, 8, 1, 8, 1, 8, 3, 8, 722, 8, 8, 1, 8, 1, 8, 3, 8, 726, 8, 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, 3, 8, 740, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 748, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 767, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 790, 8, 8, 10, 8, 12, 8, 793, 9, 8, 3, 8, 795, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 802, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 809, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 818, 8, 8, 1, 8, 1, 8, 3, 8, 822, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 829, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 835, 8, 8, 10, 8, 12, 8, 838, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 844, 8, 8, 10, 8, 12, 8, 847, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 852, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 857, 8, 8, 1, 8, 1, 8, 3, 8, 861, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 867, 8, 8, 10, 8, 12, 8, 870, 9, 8, 1, 8, 1, 8, 3, 8, 874, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 883, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 889, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 894, 8, 8, 10, 8, 12, 8, 897, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 903, 8, 8, 10, 8, 12, 8, 906, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 911, 8, 8, 1, 8, 1, 8, 3, 8, 915, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 921, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 926, 8, 8, 10, 8, 12, 8, 929, 9, 8, 1, 8, 1, 8, 3, 8, 933, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 944, 8, 8, 10, 8, 12, 8, 947, 9, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 963, 8, 8, 1, 8, 1, 8, 3, 8, 967, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 973, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 980, 8, 8, 10, 8, 12, 8, 983, 9, 8, 1, 8, 1, 8, 3, 8, 987, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 993, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1021, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1027, 8, 8, 3, 8, 1029, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1035, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1041, 8, 8, 3, 8, 1043, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1051, 8, 8, 3, 8, 1053, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1063, 8, 8, 3, 8, 1065, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1080, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1085, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1092, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1102, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1108, 8, 8, 3, 8, 1110, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1118, 8, 8, 3, 8, 1120, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1143, 8, 8, 10, 8, 12, 8, 1146, 9, 8, 3, 8, 1148, 8, 8, 1, 8, 1, 8, 3, 8, 1152, 8, 8, 1, 8, 1, 8, 3, 8, 1156, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1172, 8, 8, 10, 8, 12, 8, 1175, 9, 8, 3, 8, 1177, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1186, 8, 8, 10, 8, 12, 8, 1189, 9, 8, 3, 8, 1191, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1207, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1215, 8, 8, 10, 8, 12, 8, 1218, 9, 8, 1, 8, 3, 8, 1221, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1227, 8, 8, 1, 8, 3, 8, 1230, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1237, 8, 8, 11, 8, 12, 8, 1238, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1251, 8, 8, 1, 9, 3, 9, 1254, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1262, 8, 10, 10, 10, 12, 10, 1265, 9, 10, 1, 11, 3, 11, 1268, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1274, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1279, 8, 12, 10, 12, 12, 12, 1282, 9, 12, 1, 13, 1, 13, 3, 13, 1286, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1292, 8, 14, 1, 14, 1, 14, 3, 14, 1296, 8, 14, 1, 14, 1, 14, 3, 14, 1300, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1306, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1315, 8, 17, 10, 17, 12, 17, 1318, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1326, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1334, 8, 20, 10, 20, 12, 20, 1337, 9, 20, 3, 20, 1339, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1344, 8, 20, 3, 20, 1346, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1353, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1359, 8, 20, 3, 20, 1361, 8, 20, 1, 21, 1, 21, 3, 21, 1365, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1375, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1381, 8, 23, 1, 23, 5, 23, 1384, 8, 23, 10, 23, 12, 23, 1387, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1396, 8, 24, 10, 24, 12, 24, 1399, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1405, 8, 24, 1, 25, 1, 25, 3, 25, 1409, 8, 25, 1, 25, 3, 25, 1412, 8, 25, 1, 25, 1, 25, 3, 25, 1416, 8, 25, 1, 26, 1, 26, 3, 26, 1420, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1427, 8, 26, 10, 26, 12, 26, 1430, 9, 26, 3, 26, 1432, 8, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1440, 8, 26, 1, 26, 3, 26, 1443, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1449, 8, 26, 10, 26, 12, 26, 1452, 9, 26, 3, 26, 1454, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1465, 8, 29, 10, 29, 12, 29, 1468, 9, 29, 1, 30, 3, 30, 1471, 8, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1476, 8, 30, 10, 30, 12, 30, 1479, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 1484, 8, 31, 10, 31, 12, 31, 1487, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1495, 8, 32, 10, 32, 12, 32, 1498, 9, 32, 3, 32, 1500, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1508, 8, 32, 10, 32, 12, 32, 1511, 9, 32, 3, 32, 1513, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1522, 8, 32, 10, 32, 12, 32, 1525, 9, 32, 1, 32, 1, 32, 3, 32, 1529, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1535, 8, 33, 10, 33, 12, 33, 1538, 9, 33, 3, 33, 1540, 8, 33, 1, 33, 1, 33, 3, 33, 1544, 8, 33, 1, 34, 1, 34, 3, 34, 1548, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 3, 36, 1557, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1562, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1569, 8, 36, 10, 36, 12, 36, 1572, 9, 36, 3, 36, 1574, 8, 36, 1, 36, 3, 36, 1577, 8, 36, 1, 37, 1, 37, 3, 37, 1581, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 1592, 8, 39, 1, 39, 3, 39, 1595, 8, 39, 1, 39, 3, 39, 1598, 8, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1603, 8, 39, 1, 39, 3, 39, 1606, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1635, 8, 44, 5, 44, 1637, 8, 44, 10, 44, 12, 44, 1640, 9, 44, 1, 45, 3, 45, 1643, 8, 45, 1, 45, 1, 45, 3, 45, 1647, 8, 45, 1, 45, 1, 45, 3, 45, 1651, 8, 45, 1, 45, 1, 45, 3, 45, 1655, 8, 45, 3, 45, 1657, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1666, 8, 46, 10, 46, 12, 46, 1669, 9, 46, 1, 46, 1, 46, 3, 46, 1673, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1682, 8, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 3, 50, 1691, 8, 50, 1, 50, 3, 50, 1694, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1700, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1708, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1715, 8, 52, 10, 52, 12, 52, 1718, 9, 52, 3, 52, 1720, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1726, 8, 52, 10, 52, 12, 52, 1729, 9, 52, 3, 52, 1731, 8, 52, 1, 52, 3, 52, 1734, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1739, 8, 52, 1, 52, 3, 52, 1742, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1752, 8, 52, 10, 52, 12, 52, 1755, 9, 52, 3, 52, 1757, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1763, 8, 52, 10, 52, 12, 52, 1766, 9, 52, 1, 52, 1, 52, 3, 52, 1770, 8, 52, 1, 52, 1, 52, 3, 52, 1774, 8, 52, 3, 52, 1776, 8, 52, 3, 52, 1778, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1793, 8, 54, 3, 54, 1795, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1806, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1827, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1835, 8, 57, 10, 57, 12, 57, 1838, 9, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 3, 59, 1848, 8, 59, 1, 59, 1, 59, 3, 59, 1852, 8, 59, 3, 59, 1854, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1860, 8, 60, 10, 60, 12, 60, 1863, 9, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 1871, 8, 61, 10, 61, 12, 61, 1874, 9, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 1882, 8, 62, 10, 62, 12, 62, 1885, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 3, 63, 1891, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1898, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1909, 8, 64, 10, 64, 12, 64, 1912, 9, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1917, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1937, 8, 64, 10, 64, 12, 64, 1940, 9, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1954, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1959, 8, 64, 1, 64, 1, 64, 3, 64, 1963, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1973, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1979, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1985, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1993, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1998, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2005, 8, 65, 3, 65, 2007, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2013, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2019, 8, 65, 1, 65, 1, 65, 3, 65, 2023, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2028, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2035, 8, 65, 10, 65, 12, 65, 2038, 9, 65, 1, 65, 1, 65, 3, 65, 2042, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2054, 8, 66, 10, 66, 12, 66, 2057, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2064, 8, 66, 10, 66, 12, 66, 2067, 9, 66, 3, 66, 2069, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2078, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2083, 8, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2088, 8, 69, 3, 69, 2090, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2097, 8, 70, 10, 70, 12, 70, 2100, 9, 70, 3, 70, 2102, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2108, 8, 70, 10, 70, 12, 70, 2111, 9, 70, 3, 70, 2113, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2120, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2125, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2132, 8, 72, 1, 72, 1, 72, 3, 72, 2136, 8, 72, 3, 72, 2138, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2146, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2154, 8, 72, 10, 72, 12, 72, 2157, 9, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2162, 8, 72, 3, 72, 2164, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2171, 8, 73, 1, 73, 1, 73, 3, 73, 2175, 8, 73, 3, 73, 2177, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2184, 8, 73, 1, 73, 1, 73, 3, 73, 2188, 8, 73, 3, 73, 2190, 8, 73, 3, 73, 2192, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2199, 8, 74, 10, 74, 12, 74, 2202, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2212, 8, 74, 1, 75, 1, 75, 3, 75, 2216, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2224, 8, 76, 10, 76, 12, 76, 2227, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2236, 8, 78, 1, 78, 1, 78, 3, 78, 2240, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2248, 8, 78, 10, 78, 12, 78, 2251, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2263, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2271, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2278, 8, 79, 10, 79, 12, 79, 2281, 9, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2286, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2294, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2300, 8, 79, 1, 79, 1, 79, 3, 79, 2304, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2309, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2314, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2320, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2334, 8, 80, 10, 80, 12, 80, 2337, 9, 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, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 2364, 8, 81, 11, 81, 12, 81, 2365, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2375, 8, 81, 10, 81, 12, 81, 2378, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2385, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2390, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2395, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2406, 8, 81, 10, 81, 12, 81, 2409, 9, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2414, 8, 81, 1, 81, 3, 81, 2417, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2424, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2429, 8, 81, 1, 81, 3, 81, 2432, 8, 81, 1, 81, 3, 81, 2435, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2440, 8, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2445, 8, 81, 10, 81, 12, 81, 2448, 9, 81, 3, 81, 2450, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2457, 8, 81, 10, 81, 12, 81, 2460, 9, 81, 3, 81, 2462, 8, 81, 1, 81, 1, 81, 3, 81, 2466, 8, 81, 1, 81, 3, 81, 2469, 8, 81, 1, 81, 3, 81, 2472, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2485, 8, 81, 10, 81, 12, 81, 2488, 9, 81, 3, 81, 2490, 8, 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, 1, 81, 1, 81, 1, 81, 4, 81, 2507, 8, 81, 11, 81, 12, 81, 2508, 1, 81, 1, 81, 3, 81, 2513, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 2519, 8, 81, 11, 81, 12, 81, 2520, 1, 81, 1, 81, 3, 81, 2525, 8, 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, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2548, 8, 81, 10, 81, 12, 81, 2551, 9, 81, 3, 81, 2553, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2562, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2568, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2574, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2580, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2589, 8, 81, 1, 81, 3, 81, 2592, 8, 81, 1, 81, 3, 81, 2595, 8, 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, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2614, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2623, 8, 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, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2643, 8, 81, 10, 81, 12, 81, 2646, 9, 81, 3, 81, 2648, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2658, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2667, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2673, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2679, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2690, 8, 81, 3, 81, 2692, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2697, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2704, 8, 81, 3, 81, 2706, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2712, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2718, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2727, 8, 81, 10, 81, 12, 81, 2730, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2738, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2743, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2748, 8, 81, 3, 81, 2750, 8, 81, 3, 81, 2752, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2758, 8, 81, 3, 81, 2760, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2768, 8, 81, 10, 81, 12, 81, 2771, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2779, 8, 81, 3, 81, 2781, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2787, 8, 81, 3, 81, 2789, 8, 81, 1, 81, 3, 81, 2792, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2802, 8, 81, 10, 81, 12, 81, 2805, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2812, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2818, 8, 82, 10, 82, 12, 82, 2821, 9, 82, 3, 82, 2823, 8, 82, 1, 83, 1, 83, 1, 83, 3, 83, 2828, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 2833, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2845, 8, 87, 1, 88, 1, 88, 3, 88, 2849, 8, 88, 1, 88, 1, 88, 3, 88, 2853, 8, 88, 1, 88, 3, 88, 2856, 8, 88, 3, 88, 2858, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2866, 8, 89, 1, 90, 3, 90, 2869, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2879, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2887, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2893, 8, 93, 3, 93, 2895, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2903, 8, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 2913, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2919, 8, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2931, 8, 101, 10, 101, 12, 101, 2934, 9, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2942, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2949, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2954, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2961, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2966, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2987, 8, 101, 10, 101, 12, 101, 2990, 9, 101, 1, 101, 1, 101, 3, 101, 2994, 8, 101, 3, 101, 2996, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3003, 8, 101, 5, 101, 3005, 8, 101, 10, 101, 12, 101, 3008, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3014, 8, 102, 1, 103, 1, 103, 3, 103, 3018, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3034, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3047, 8, 106, 10, 106, 12, 106, 3050, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3056, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3065, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3073, 8, 106, 10, 106, 12, 106, 3076, 9, 106, 1, 106, 1, 106, 3, 106, 3080, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3087, 8, 106, 10, 106, 12, 106, 3090, 9, 106, 1, 106, 1, 106, 3, 106, 3094, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3102, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3108, 8, 108, 10, 108, 12, 108, 3111, 9, 108, 3, 108, 3113, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3119, 8, 108, 1, 108, 3, 108, 3122, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3129, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3135, 8, 108, 10, 108, 12, 108, 3138, 9, 108, 3, 108, 3140, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3146, 8, 108, 10, 108, 12, 108, 3149, 9, 108, 3, 108, 3151, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3177, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3188, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 3193, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 3200, 8, 111, 10, 111, 12, 111, 3203, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3213, 8, 112, 10, 112, 12, 112, 3216, 9, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 3230, 8, 112, 1, 113, 1, 113, 3, 113, 3234, 8, 113, 1, 113, 1, 113, 3, 113, 3238, 8, 113, 1, 113, 1, 113, 3, 113, 3242, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 3248, 8, 113, 1, 113, 1, 113, 3, 113, 3252, 8, 113, 1, 113, 1, 113, 3, 113, 3256, 8, 113, 1, 113, 1, 113, 3, 113, 3260, 8, 113, 3, 113, 3262, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3272, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3279, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3288, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3295, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3302, 8, 119, 1, 120, 1, 120, 1, 120, 5, 120, 3307, 8, 120, 10, 120, 12, 120, 3310, 9, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3316, 8, 121, 10, 121, 12, 121, 3319, 9, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 3328, 8, 122, 10, 122, 12, 122, 3331, 9, 122, 3, 122, 3333, 8, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3342, 8, 123, 10, 123, 12, 123, 3345, 9, 123, 3, 123, 3347, 8, 123, 1, 123, 1, 123, 1, 124, 3, 124, 3352, 8, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 3362, 8, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3378, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 4, 127, 3390, 8, 127, 11, 127, 12, 127, 3391, 1, 127, 3, 127, 3395, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 4, 127, 3402, 8, 127, 11, 127, 12, 127, 3403, 1, 127, 3, 127, 3407, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3417, 8, 127, 10, 127, 12, 127, 3420, 9, 127, 1, 127, 3, 127, 3423, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3436, 8, 127, 10, 127, 12, 127, 3439, 9, 127, 1, 127, 3, 127, 3442, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3448, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3458, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3470, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3479, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3498, 8, 131, 10, 131, 12, 131, 3501, 9, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3506, 8, 131, 1, 132, 1, 132, 1, 132, 4, 132, 3511, 8, 132, 11, 132, 12, 132, 3512, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3521, 8, 133, 1, 134, 1, 134, 1, 134, 3, 134, 3526, 8, 134, 1, 135, 3, 135, 3529, 8, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 3535, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3548, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3561, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3574, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3587, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3594, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3601, 8, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 3613, 8, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 3622, 8, 150, 10, 150, 12, 150, 3625, 9, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 3, 153, 3638, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3645, 8, 154, 1, 155, 1, 155, 1, 155, 5, 155, 3650, 8, 155, 10, 155, 12, 155, 3653, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3662, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3669, 8, 157, 1, 158, 3, 158, 3672, 8, 158, 1, 158, 1, 158, 3, 158, 3676, 8, 158, 1, 158, 1, 158, 3, 158, 3680, 8, 158, 1, 158, 3, 158, 3683, 8, 158, 1, 159, 1, 159, 3, 159, 3687, 8, 159, 1, 160, 1, 160, 1, 160, 0, 7, 46, 88, 156, 160, 162, 202, 222, 161, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 0, 36, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 304, 304, 306, 306, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4230, 0, 325, 1, 0, 0, 0, 2, 330, 1, 0, 0, 0, 4, 332, 1, 0, 0, 0, 6, 336, 1, 0, 0, 0, 8, 340, 1, 0, 0, 0, 10, 344, 1, 0, 0, 0, 12, 348, 1, 0, 0, 0, 14, 352, 1, 0, 0, 0, 16, 1250, 1, 0, 0, 0, 18, 1253, 1, 0, 0, 0, 20, 1257, 1, 0, 0, 0, 22, 1267, 1, 0, 0, 0, 24, 1271, 1, 0, 0, 0, 26, 1285, 1, 0, 0, 0, 28, 1287, 1, 0, 0, 0, 30, 1301, 1, 0, 0, 0, 32, 1307, 1, 0, 0, 0, 34, 1311, 1, 0, 0, 0, 36, 1319, 1, 0, 0, 0, 38, 1325, 1, 0, 0, 0, 40, 1327, 1, 0, 0, 0, 42, 1364, 1, 0, 0, 0, 44, 1366, 1, 0, 0, 0, 46, 1368, 1, 0, 0, 0, 48, 1404, 1, 0, 0, 0, 50, 1408, 1, 0, 0, 0, 52, 1417, 1, 0, 0, 0, 54, 1455, 1, 0, 0, 0, 56, 1458, 1, 0, 0, 0, 58, 1461, 1, 0, 0, 0, 60, 1470, 1, 0, 0, 0, 62, 1480, 1, 0, 0, 0, 64, 1528, 1, 0, 0, 0, 66, 1543, 1, 0, 0, 0, 68, 1547, 1, 0, 0, 0, 70, 1549, 1, 0, 0, 0, 72, 1556, 1, 0, 0, 0, 74, 1578, 1, 0, 0, 0, 76, 1587, 1, 0, 0, 0, 78, 1605, 1, 0, 0, 0, 80, 1607, 1, 0, 0, 0, 82, 1609, 1, 0, 0, 0, 84, 1613, 1, 0, 0, 0, 86, 1615, 1, 0, 0, 0, 88, 1617, 1, 0, 0, 0, 90, 1656, 1, 0, 0, 0, 92, 1672, 1, 0, 0, 0, 94, 1674, 1, 0, 0, 0, 96, 1683, 1, 0, 0, 0, 98, 1685, 1, 0, 0, 0, 100, 1693, 1, 0, 0, 0, 102, 1699, 1, 0, 0, 0, 104, 1701, 1, 0, 0, 0, 106, 1779, 1, 0, 0, 0, 108, 1794, 1, 0, 0, 0, 110, 1805, 1, 0, 0, 0, 112, 1826, 1, 0, 0, 0, 114, 1828, 1, 0, 0, 0, 116, 1841, 1, 0, 0, 0, 118, 1845, 1, 0, 0, 0, 120, 1855, 1, 0, 0, 0, 122, 1866, 1, 0, 0, 0, 124, 1877, 1, 0, 0, 0, 126, 1897, 1, 0, 0, 0, 128, 1962, 1, 0, 0, 0, 130, 2041, 1, 0, 0, 0, 132, 2068, 1, 0, 0, 0, 134, 2070, 1, 0, 0, 0, 136, 2077, 1, 0, 0, 0, 138, 2089, 1, 0, 0, 0, 140, 2091, 1, 0, 0, 0, 142, 2119, 1, 0, 0, 0, 144, 2126, 1, 0, 0, 0, 146, 2191, 1, 0, 0, 0, 148, 2211, 1, 0, 0, 0, 150, 2213, 1, 0, 0, 0, 152, 2217, 1, 0, 0, 0, 154, 2230, 1, 0, 0, 0, 156, 2239, 1, 0, 0, 0, 158, 2313, 1, 0, 0, 0, 160, 2319, 1, 0, 0, 0, 162, 2791, 1, 0, 0, 0, 164, 2806, 1, 0, 0, 0, 166, 2824, 1, 0, 0, 0, 168, 2829, 1, 0, 0, 0, 170, 2834, 1, 0, 0, 0, 172, 2838, 1, 0, 0, 0, 174, 2844, 1, 0, 0, 0, 176, 2857, 1, 0, 0, 0, 178, 2865, 1, 0, 0, 0, 180, 2878, 1, 0, 0, 0, 182, 2880, 1, 0, 0, 0, 184, 2886, 1, 0, 0, 0, 186, 2894, 1, 0, 0, 0, 188, 2902, 1, 0, 0, 0, 190, 2904, 1, 0, 0, 0, 192, 2906, 1, 0, 0, 0, 194, 2908, 1, 0, 0, 0, 196, 2910, 1, 0, 0, 0, 198, 2920, 1, 0, 0, 0, 200, 2922, 1, 0, 0, 0, 202, 2995, 1, 0, 0, 0, 204, 3013, 1, 0, 0, 0, 206, 3017, 1, 0, 0, 0, 208, 3019, 1, 0, 0, 0, 210, 3024, 1, 0, 0, 0, 212, 3093, 1, 0, 0, 0, 214, 3095, 1, 0, 0, 0, 216, 3112, 1, 0, 0, 0, 218, 3176, 1, 0, 0, 0, 220, 3187, 1, 0, 0, 0, 222, 3189, 1, 0, 0, 0, 224, 3229, 1, 0, 0, 0, 226, 3261, 1, 0, 0, 0, 228, 3263, 1, 0, 0, 0, 230, 3271, 1, 0, 0, 0, 232, 3278, 1, 0, 0, 0, 234, 3287, 1, 0, 0, 0, 236, 3294, 1, 0, 0, 0, 238, 3301, 1, 0, 0, 0, 240, 3303, 1, 0, 0, 0, 242, 3311, 1, 0, 0, 0, 244, 3322, 1, 0, 0, 0, 246, 3336, 1, 0, 0, 0, 248, 3351, 1, 0, 0, 0, 250, 3355, 1, 0, 0, 0, 252, 3377, 1, 0, 0, 0, 254, 3478, 1, 0, 0, 0, 256, 3480, 1, 0, 0, 0, 258, 3485, 1, 0, 0, 0, 260, 3490, 1, 0, 0, 0, 262, 3493, 1, 0, 0, 0, 264, 3510, 1, 0, 0, 0, 266, 3520, 1, 0, 0, 0, 268, 3525, 1, 0, 0, 0, 270, 3528, 1, 0, 0, 0, 272, 3534, 1, 0, 0, 0, 274, 3547, 1, 0, 0, 0, 276, 3560, 1, 0, 0, 0, 278, 3573, 1, 0, 0, 0, 280, 3586, 1, 0, 0, 0, 282, 3593, 1, 0, 0, 0, 284, 3600, 1, 0, 0, 0, 286, 3602, 1, 0, 0, 0, 288, 3604, 1, 0, 0, 0, 290, 3606, 1, 0, 0, 0, 292, 3608, 1, 0, 0, 0, 294, 3612, 1, 0, 0, 0, 296, 3614, 1, 0, 0, 0, 298, 3616, 1, 0, 0, 0, 300, 3618, 1, 0, 0, 0, 302, 3626, 1, 0, 0, 0, 304, 3632, 1, 0, 0, 0, 306, 3637, 1, 0, 0, 0, 308, 3644, 1, 0, 0, 0, 310, 3646, 1, 0, 0, 0, 312, 3661, 1, 0, 0, 0, 314, 3668, 1, 0, 0, 0, 316, 3682, 1, 0, 0, 0, 318, 3686, 1, 0, 0, 0, 320, 3688, 1, 0, 0, 0, 322, 324, 3, 2, 1, 0, 323, 322, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 328, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 329, 5, 0, 0, 1, 329, 1, 1, 0, 0, 0, 330, 331, 3, 4, 2, 0, 331, 3, 1, 0, 0, 0, 332, 334, 3, 16, 8, 0, 333, 335, 5, 325, 0, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 5, 1, 0, 0, 0, 336, 338, 3, 154, 77, 0, 337, 339, 5, 325, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 7, 1, 0, 0, 0, 340, 342, 3, 240, 120, 0, 341, 343, 5, 325, 0, 0, 342, 341, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 9, 1, 0, 0, 0, 344, 346, 3, 202, 101, 0, 345, 347, 5, 325, 0, 0, 346, 345, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 11, 1, 0, 0, 0, 348, 350, 3, 222, 111, 0, 349, 351, 5, 325, 0, 0, 350, 349, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 13, 1, 0, 0, 0, 352, 353, 3, 242, 121, 0, 353, 354, 5, 0, 0, 1, 354, 15, 1, 0, 0, 0, 355, 1251, 3, 18, 9, 0, 356, 357, 5, 288, 0, 0, 357, 1251, 3, 282, 141, 0, 358, 359, 5, 53, 0, 0, 359, 363, 5, 42, 0, 0, 360, 361, 5, 119, 0, 0, 361, 362, 5, 182, 0, 0, 362, 364, 5, 94, 0, 0, 363, 360, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 366, 3, 288, 144, 0, 366, 367, 5, 290, 0, 0, 367, 370, 3, 314, 157, 0, 368, 369, 5, 46, 0, 0, 369, 371, 3, 186, 93, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 373, 5, 31, 0, 0, 373, 375, 3, 308, 154, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 378, 1, 0, 0, 0, 376, 377, 5, 304, 0, 0, 377, 379, 3, 32, 16, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 1251, 1, 0, 0, 0, 380, 381, 5, 83, 0, 0, 381, 384, 5, 42, 0, 0, 382, 383, 5, 119, 0, 0, 383, 385, 5, 94, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 388, 3, 286, 143, 0, 387, 389, 7, 0, 0, 0, 388, 387, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 1251, 1, 0, 0, 0, 390, 391, 5, 53, 0, 0, 391, 395, 5, 243, 0, 0, 392, 393, 5, 119, 0, 0, 393, 394, 5, 182, 0, 0, 394, 396, 5, 94, 0, 0, 395, 392, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 400, 3, 284, 142, 0, 398, 399, 5, 31, 0, 0, 399, 401, 3, 308, 154, 0, 400, 398, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 404, 1, 0, 0, 0, 402, 403, 5, 304, 0, 0, 403, 405, 3, 32, 16, 0, 404, 402, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 1251, 1, 0, 0, 0, 406, 407, 5, 83, 0, 0, 407, 410, 5, 243, 0, 0, 408, 409, 5, 119, 0, 0, 409, 411, 5, 94, 0, 0, 410, 408, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 3, 282, 141, 0, 413, 415, 7, 0, 0, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 1251, 1, 0, 0, 0, 416, 417, 5, 23, 0, 0, 417, 418, 5, 243, 0, 0, 418, 419, 3, 282, 141, 0, 419, 420, 5, 223, 0, 0, 420, 421, 5, 269, 0, 0, 421, 422, 3, 284, 142, 0, 422, 1251, 1, 0, 0, 0, 423, 424, 5, 23, 0, 0, 424, 425, 5, 243, 0, 0, 425, 426, 3, 282, 141, 0, 426, 427, 5, 251, 0, 0, 427, 428, 5, 31, 0, 0, 428, 429, 3, 308, 154, 0, 429, 1251, 1, 0, 0, 0, 430, 433, 5, 53, 0, 0, 431, 432, 5, 194, 0, 0, 432, 434, 5, 226, 0, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 5, 260, 0, 0, 436, 437, 5, 119, 0, 0, 437, 438, 5, 182, 0, 0, 438, 440, 5, 94, 0, 0, 439, 436, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 443, 3, 276, 138, 0, 442, 444, 3, 120, 60, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 446, 5, 46, 0, 0, 446, 448, 3, 186, 93, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 451, 1, 0, 0, 0, 449, 450, 5, 304, 0, 0, 450, 452, 3, 32, 16, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 459, 5, 28, 0, 0, 454, 460, 3, 18, 9, 0, 455, 456, 5, 1, 0, 0, 456, 457, 3, 18, 9, 0, 457, 458, 5, 2, 0, 0, 458, 460, 1, 0, 0, 0, 459, 454, 1, 0, 0, 0, 459, 455, 1, 0, 0, 0, 460, 466, 1, 0, 0, 0, 461, 463, 5, 304, 0, 0, 462, 464, 5, 179, 0, 0, 463, 462, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 467, 5, 65, 0, 0, 466, 461, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 1251, 1, 0, 0, 0, 468, 471, 5, 53, 0, 0, 469, 470, 5, 194, 0, 0, 470, 472, 5, 226, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 477, 5, 260, 0, 0, 474, 475, 5, 119, 0, 0, 475, 476, 5, 182, 0, 0, 476, 478, 5, 94, 0, 0, 477, 474, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 480, 3, 276, 138, 0, 480, 481, 5, 1, 0, 0, 481, 486, 3, 26, 13, 0, 482, 483, 5, 3, 0, 0, 483, 485, 3, 26, 13, 0, 484, 482, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 489, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 489, 492, 5, 2, 0, 0, 490, 491, 5, 46, 0, 0, 491, 493, 3, 186, 93, 0, 492, 490, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 495, 5, 304, 0, 0, 495, 497, 3, 32, 16, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 1251, 1, 0, 0, 0, 498, 499, 5, 83, 0, 0, 499, 502, 5, 260, 0, 0, 500, 501, 5, 119, 0, 0, 501, 503, 5, 94, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 1251, 3, 274, 137, 0, 505, 506, 5, 127, 0, 0, 506, 507, 5, 130, 0, 0, 507, 509, 3, 274, 137, 0, 508, 510, 3, 122, 61, 0, 509, 508, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 3, 18, 9, 0, 512, 1251, 1, 0, 0, 0, 513, 514, 5, 73, 0, 0, 514, 515, 5, 105, 0, 0, 515, 517, 3, 274, 137, 0, 516, 518, 3, 54, 27, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 1251, 1, 0, 0, 0, 519, 520, 5, 274, 0, 0, 520, 521, 5, 260, 0, 0, 521, 1251, 3, 274, 137, 0, 522, 523, 5, 46, 0, 0, 523, 524, 5, 190, 0, 0, 524, 525, 5, 260, 0, 0, 525, 526, 3, 274, 137, 0, 526, 529, 5, 133, 0, 0, 527, 530, 3, 186, 93, 0, 528, 530, 5, 183, 0, 0, 529, 527, 1, 0, 0, 0, 529, 528, 1, 0, 0, 0, 530, 1251, 1, 0, 0, 0, 531, 532, 5, 46, 0, 0, 532, 533, 5, 190, 0, 0, 533, 534, 5, 299, 0, 0, 534, 535, 3, 278, 139, 0, 535, 538, 5, 133, 0, 0, 536, 539, 3, 186, 93, 0, 537, 539, 5, 183, 0, 0, 538, 536, 1, 0, 0, 0, 538, 537, 1, 0, 0, 0, 539, 1251, 1, 0, 0, 0, 540, 541, 5, 46, 0, 0, 541, 542, 5, 190, 0, 0, 542, 543, 5, 44, 0, 0, 543, 544, 3, 294, 147, 0, 544, 547, 5, 133, 0, 0, 545, 548, 3, 186, 93, 0, 546, 548, 5, 183, 0, 0, 547, 545, 1, 0, 0, 0, 547, 546, 1, 0, 0, 0, 548, 1251, 1, 0, 0, 0, 549, 550, 5, 23, 0, 0, 550, 553, 5, 260, 0, 0, 551, 552, 5, 119, 0, 0, 552, 554, 5, 94, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 3, 274, 137, 0, 556, 557, 5, 223, 0, 0, 557, 558, 5, 269, 0, 0, 558, 559, 3, 276, 138, 0, 559, 1251, 1, 0, 0, 0, 560, 561, 5, 23, 0, 0, 561, 564, 5, 260, 0, 0, 562, 563, 5, 119, 0, 0, 563, 565, 5, 94, 0, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 3, 274, 137, 0, 567, 568, 5, 19, 0, 0, 568, 572, 5, 44, 0, 0, 569, 570, 5, 119, 0, 0, 570, 571, 5, 182, 0, 0, 571, 573, 5, 94, 0, 0, 572, 569, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 3, 28, 14, 0, 575, 1251, 1, 0, 0, 0, 576, 577, 5, 23, 0, 0, 577, 580, 5, 260, 0, 0, 578, 579, 5, 119, 0, 0, 579, 581, 5, 94, 0, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 3, 274, 137, 0, 583, 584, 5, 223, 0, 0, 584, 587, 5, 44, 0, 0, 585, 586, 5, 119, 0, 0, 586, 588, 5, 94, 0, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 3, 294, 147, 0, 590, 591, 5, 269, 0, 0, 591, 592, 3, 298, 149, 0, 592, 1251, 1, 0, 0, 0, 593, 594, 5, 23, 0, 0, 594, 597, 5, 260, 0, 0, 595, 596, 5, 119, 0, 0, 596, 598, 5, 94, 0, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 3, 274, 137, 0, 600, 601, 5, 83, 0, 0, 601, 604, 5, 44, 0, 0, 602, 603, 5, 119, 0, 0, 603, 605, 5, 94, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 3, 294, 147, 0, 607, 1251, 1, 0, 0, 0, 608, 609, 5, 23, 0, 0, 609, 612, 5, 260, 0, 0, 610, 611, 5, 119, 0, 0, 611, 613, 5, 94, 0, 0, 612, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 3, 274, 137, 0, 615, 616, 5, 23, 0, 0, 616, 617, 5, 44, 0, 0, 617, 618, 3, 294, 147, 0, 618, 619, 5, 251, 0, 0, 619, 620, 5, 65, 0, 0, 620, 621, 5, 276, 0, 0, 621, 622, 3, 202, 101, 0, 622, 1251, 1, 0, 0, 0, 623, 624, 5, 23, 0, 0, 624, 627, 5, 260, 0, 0, 625, 626, 5, 119, 0, 0, 626, 628, 5, 94, 0, 0, 627, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 3, 274, 137, 0, 630, 631, 5, 23, 0, 0, 631, 632, 5, 44, 0, 0, 632, 633, 3, 294, 147, 0, 633, 634, 5, 83, 0, 0, 634, 635, 5, 182, 0, 0, 635, 636, 5, 183, 0, 0, 636, 1251, 1, 0, 0, 0, 637, 638, 5, 23, 0, 0, 638, 639, 5, 260, 0, 0, 639, 640, 3, 274, 137, 0, 640, 641, 5, 251, 0, 0, 641, 642, 5, 31, 0, 0, 642, 643, 3, 308, 154, 0, 643, 1251, 1, 0, 0, 0, 644, 645, 5, 23, 0, 0, 645, 646, 5, 260, 0, 0, 646, 647, 3, 274, 137, 0, 647, 648, 5, 251, 0, 0, 648, 649, 5, 216, 0, 0, 649, 650, 3, 34, 17, 0, 650, 1251, 1, 0, 0, 0, 651, 652, 5, 23, 0, 0, 652, 653, 5, 260, 0, 0, 653, 654, 3, 274, 137, 0, 654, 655, 5, 93, 0, 0, 655, 668, 3, 290, 145, 0, 656, 665, 5, 1, 0, 0, 657, 662, 3, 236, 118, 0, 658, 659, 5, 3, 0, 0, 659, 661, 3, 236, 118, 0, 660, 658, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 657, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 669, 5, 2, 0, 0, 668, 656, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 672, 3, 54, 27, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 1251, 1, 0, 0, 0, 673, 674, 5, 24, 0, 0, 674, 677, 3, 274, 137, 0, 675, 676, 5, 304, 0, 0, 676, 678, 3, 32, 16, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 1251, 1, 0, 0, 0, 679, 682, 5, 53, 0, 0, 680, 681, 5, 194, 0, 0, 681, 683, 5, 226, 0, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 167, 0, 0, 685, 689, 5, 299, 0, 0, 686, 687, 5, 119, 0, 0, 687, 688, 5, 182, 0, 0, 688, 690, 5, 94, 0, 0, 689, 686, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 695, 3, 280, 140, 0, 692, 693, 5, 109, 0, 0, 693, 694, 5, 208, 0, 0, 694, 696, 3, 196, 98, 0, 695, 692, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 699, 1, 0, 0, 0, 697, 698, 5, 46, 0, 0, 698, 700, 3, 186, 93, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 703, 1, 0, 0, 0, 701, 702, 5, 304, 0, 0, 702, 704, 3, 32, 16, 0, 703, 701, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 28, 0, 0, 706, 707, 3, 18, 9, 0, 707, 1251, 1, 0, 0, 0, 708, 711, 5, 53, 0, 0, 709, 710, 5, 194, 0, 0, 710, 712, 5, 226, 0, 0, 711, 709, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 299, 0, 0, 714, 717, 3, 280, 140, 0, 715, 716, 5, 46, 0, 0, 716, 718, 3, 186, 93, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 720, 5, 246, 0, 0, 720, 722, 7, 1, 0, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 725, 1, 0, 0, 0, 723, 724, 5, 304, 0, 0, 724, 726, 3, 32, 16, 0, 725, 723, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 5, 28, 0, 0, 728, 729, 3, 18, 9, 0, 729, 1251, 1, 0, 0, 0, 730, 731, 5, 222, 0, 0, 731, 732, 5, 167, 0, 0, 732, 733, 5, 299, 0, 0, 733, 1251, 3, 278, 139, 0, 734, 735, 5, 83, 0, 0, 735, 736, 5, 167, 0, 0, 736, 739, 5, 299, 0, 0, 737, 738, 5, 119, 0, 0, 738, 740, 5, 94, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 1251, 3, 278, 139, 0, 742, 743, 5, 23, 0, 0, 743, 744, 5, 167, 0, 0, 744, 747, 5, 299, 0, 0, 745, 746, 5, 119, 0, 0, 746, 748, 5, 94, 0, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 3, 278, 139, 0, 750, 751, 5, 223, 0, 0, 751, 752, 5, 269, 0, 0, 752, 753, 3, 280, 140, 0, 753, 1251, 1, 0, 0, 0, 754, 755, 5, 23, 0, 0, 755, 756, 5, 167, 0, 0, 756, 757, 5, 299, 0, 0, 757, 758, 3, 278, 139, 0, 758, 759, 5, 251, 0, 0, 759, 760, 5, 216, 0, 0, 760, 761, 3, 34, 17, 0, 761, 1251, 1, 0, 0, 0, 762, 763, 5, 83, 0, 0, 763, 766, 5, 299, 0, 0, 764, 765, 5, 119, 0, 0, 765, 767, 5, 94, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 1251, 3, 278, 139, 0, 769, 770, 5, 23, 0, 0, 770, 771, 5, 299, 0, 0, 771, 772, 3, 278, 139, 0, 772, 773, 5, 223, 0, 0, 773, 774, 5, 269, 0, 0, 774, 775, 3, 280, 140, 0, 775, 1251, 1, 0, 0, 0, 776, 777, 5, 23, 0, 0, 777, 778, 5, 299, 0, 0, 778, 779, 3, 278, 139, 0, 779, 780, 5, 251, 0, 0, 780, 781, 5, 31, 0, 0, 781, 782, 3, 308, 154, 0, 782, 1251, 1, 0, 0, 0, 783, 784, 5, 37, 0, 0, 784, 785, 3, 290, 145, 0, 785, 794, 5, 1, 0, 0, 786, 791, 3, 236, 118, 0, 787, 788, 5, 3, 0, 0, 788, 790, 3, 236, 118, 0, 789, 787, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 786, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 2, 0, 0, 797, 1251, 1, 0, 0, 0, 798, 801, 5, 53, 0, 0, 799, 800, 5, 194, 0, 0, 800, 802, 5, 226, 0, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 1251, 3, 242, 121, 0, 804, 805, 5, 83, 0, 0, 805, 808, 5, 107, 0, 0, 806, 807, 5, 119, 0, 0, 807, 809, 5, 94, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 1251, 3, 246, 123, 0, 811, 812, 5, 53, 0, 0, 812, 813, 5, 235, 0, 0, 813, 817, 3, 314, 157, 0, 814, 815, 5, 304, 0, 0, 815, 816, 5, 20, 0, 0, 816, 818, 3, 306, 153, 0, 817, 814, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 821, 1, 0, 0, 0, 819, 820, 5, 122, 0, 0, 820, 822, 3, 286, 143, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 1251, 1, 0, 0, 0, 823, 824, 5, 83, 0, 0, 824, 825, 5, 235, 0, 0, 825, 828, 3, 314, 157, 0, 826, 827, 5, 122, 0, 0, 827, 829, 3, 286, 143, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 1251, 1, 0, 0, 0, 830, 831, 5, 110, 0, 0, 831, 836, 3, 312, 156, 0, 832, 833, 5, 3, 0, 0, 833, 835, 3, 312, 156, 0, 834, 832, 1, 0, 0, 0, 835, 838, 1, 0, 0, 0, 836, 834, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 839, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 839, 840, 5, 269, 0, 0, 840, 845, 3, 308, 154, 0, 841, 842, 5, 3, 0, 0, 842, 844, 3, 308, 154, 0, 843, 841, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 851, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 848, 849, 5, 304, 0, 0, 849, 850, 5, 20, 0, 0, 850, 852, 5, 193, 0, 0, 851, 848, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 856, 1, 0, 0, 0, 853, 854, 5, 111, 0, 0, 854, 855, 5, 36, 0, 0, 855, 857, 3, 306, 153, 0, 856, 853, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 860, 1, 0, 0, 0, 858, 859, 5, 122, 0, 0, 859, 861, 3, 286, 143, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 1251, 1, 0, 0, 0, 862, 873, 5, 110, 0, 0, 863, 868, 3, 312, 156, 0, 864, 865, 5, 3, 0, 0, 865, 867, 3, 312, 156, 0, 866, 864, 1, 0, 0, 0, 867, 870, 1, 0, 0, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 874, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 871, 872, 5, 22, 0, 0, 872, 874, 5, 215, 0, 0, 873, 863, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 190, 0, 0, 876, 877, 3, 270, 135, 0, 877, 878, 5, 269, 0, 0, 878, 882, 3, 308, 154, 0, 879, 880, 5, 304, 0, 0, 880, 881, 5, 110, 0, 0, 881, 883, 5, 193, 0, 0, 882, 879, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 1251, 1, 0, 0, 0, 884, 888, 5, 233, 0, 0, 885, 886, 5, 20, 0, 0, 886, 887, 5, 193, 0, 0, 887, 889, 5, 103, 0, 0, 888, 885, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 895, 3, 312, 156, 0, 891, 892, 5, 3, 0, 0, 892, 894, 3, 312, 156, 0, 893, 891, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 899, 5, 105, 0, 0, 899, 904, 3, 308, 154, 0, 900, 901, 5, 3, 0, 0, 901, 903, 3, 308, 154, 0, 902, 900, 1, 0, 0, 0, 903, 906, 1, 0, 0, 0, 904, 902, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 910, 1, 0, 0, 0, 906, 904, 1, 0, 0, 0, 907, 908, 5, 111, 0, 0, 908, 909, 5, 36, 0, 0, 909, 911, 3, 306, 153, 0, 910, 907, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 913, 5, 122, 0, 0, 913, 915, 3, 286, 143, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 1251, 1, 0, 0, 0, 916, 920, 5, 233, 0, 0, 917, 918, 5, 110, 0, 0, 918, 919, 5, 193, 0, 0, 919, 921, 5, 103, 0, 0, 920, 917, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 932, 1, 0, 0, 0, 922, 927, 3, 312, 156, 0, 923, 924, 5, 3, 0, 0, 924, 926, 3, 312, 156, 0, 925, 923, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 933, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 931, 5, 22, 0, 0, 931, 933, 5, 215, 0, 0, 932, 922, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 190, 0, 0, 935, 936, 3, 270, 135, 0, 936, 937, 5, 105, 0, 0, 937, 938, 3, 308, 154, 0, 938, 1251, 1, 0, 0, 0, 939, 950, 5, 74, 0, 0, 940, 945, 3, 266, 133, 0, 941, 942, 5, 3, 0, 0, 942, 944, 3, 266, 133, 0, 943, 941, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 951, 1, 0, 0, 0, 947, 945, 1, 0, 0, 0, 948, 949, 5, 22, 0, 0, 949, 951, 5, 215, 0, 0, 950, 940, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 5, 190, 0, 0, 953, 954, 3, 270, 135, 0, 954, 955, 5, 269, 0, 0, 955, 956, 3, 308, 154, 0, 956, 1251, 1, 0, 0, 0, 957, 958, 5, 251, 0, 0, 958, 962, 5, 235, 0, 0, 959, 963, 5, 22, 0, 0, 960, 963, 5, 180, 0, 0, 961, 963, 3, 314, 157, 0, 962, 959, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 961, 1, 0, 0, 0, 963, 966, 1, 0, 0, 0, 964, 965, 5, 122, 0, 0, 965, 967, 3, 286, 143, 0, 966, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 1251, 1, 0, 0, 0, 968, 969, 5, 253, 0, 0, 969, 972, 5, 112, 0, 0, 970, 971, 5, 190, 0, 0, 971, 973, 3, 270, 135, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 1251, 1, 0, 0, 0, 974, 986, 5, 95, 0, 0, 975, 976, 5, 1, 0, 0, 976, 981, 3, 230, 115, 0, 977, 978, 5, 3, 0, 0, 978, 980, 3, 230, 115, 0, 979, 977, 1, 0, 0, 0, 980, 983, 1, 0, 0, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 984, 1, 0, 0, 0, 983, 981, 1, 0, 0, 0, 984, 985, 5, 2, 0, 0, 985, 987, 1, 0, 0, 0, 986, 975, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 1251, 3, 16, 8, 0, 989, 990, 5, 95, 0, 0, 990, 992, 5, 24, 0, 0, 991, 993, 5, 297, 0, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1251, 3, 16, 8, 0, 995, 996, 5, 253, 0, 0, 996, 997, 5, 53, 0, 0, 997, 998, 5, 260, 0, 0, 998, 1251, 3, 274, 137, 0, 999, 1000, 5, 253, 0, 0, 1000, 1001, 5, 53, 0, 0, 1001, 1002, 5, 243, 0, 0, 1002, 1251, 3, 282, 141, 0, 1003, 1004, 5, 253, 0, 0, 1004, 1005, 5, 53, 0, 0, 1005, 1006, 5, 299, 0, 0, 1006, 1251, 3, 278, 139, 0, 1007, 1008, 5, 253, 0, 0, 1008, 1009, 5, 53, 0, 0, 1009, 1010, 5, 167, 0, 0, 1010, 1011, 5, 299, 0, 0, 1011, 1251, 3, 278, 139, 0, 1012, 1013, 5, 253, 0, 0, 1013, 1014, 5, 53, 0, 0, 1014, 1015, 5, 107, 0, 0, 1015, 1251, 3, 290, 145, 0, 1016, 1017, 5, 253, 0, 0, 1017, 1020, 5, 261, 0, 0, 1018, 1019, 7, 2, 0, 0, 1019, 1021, 3, 282, 141, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1028, 1, 0, 0, 0, 1022, 1023, 5, 154, 0, 0, 1023, 1026, 3, 186, 93, 0, 1024, 1025, 5, 90, 0, 0, 1025, 1027, 3, 186, 93, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1029, 1, 0, 0, 0, 1028, 1022, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1251, 1, 0, 0, 0, 1030, 1031, 5, 253, 0, 0, 1031, 1034, 5, 244, 0, 0, 1032, 1033, 7, 2, 0, 0, 1033, 1035, 3, 286, 143, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1042, 1, 0, 0, 0, 1036, 1037, 5, 154, 0, 0, 1037, 1040, 3, 186, 93, 0, 1038, 1039, 5, 90, 0, 0, 1039, 1041, 3, 186, 93, 0, 1040, 1038, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 1036, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1251, 1, 0, 0, 0, 1044, 1045, 5, 253, 0, 0, 1045, 1052, 5, 43, 0, 0, 1046, 1047, 5, 154, 0, 0, 1047, 1050, 3, 186, 93, 0, 1048, 1049, 5, 90, 0, 0, 1049, 1051, 3, 186, 93, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1046, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1251, 1, 0, 0, 0, 1054, 1055, 5, 253, 0, 0, 1055, 1056, 5, 45, 0, 0, 1056, 1057, 7, 2, 0, 0, 1057, 1064, 3, 272, 136, 0, 1058, 1059, 5, 154, 0, 0, 1059, 1062, 3, 186, 93, 0, 1060, 1061, 5, 90, 0, 0, 1061, 1063, 3, 186, 93, 0, 1062, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 1058, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1251, 1, 0, 0, 0, 1066, 1067, 5, 253, 0, 0, 1067, 1068, 5, 256, 0, 0, 1068, 1069, 5, 103, 0, 0, 1069, 1251, 3, 272, 136, 0, 1070, 1071, 5, 253, 0, 0, 1071, 1072, 5, 256, 0, 0, 1072, 1073, 5, 103, 0, 0, 1073, 1074, 5, 1, 0, 0, 1074, 1075, 3, 18, 9, 0, 1075, 1076, 5, 2, 0, 0, 1076, 1251, 1, 0, 0, 0, 1077, 1079, 5, 253, 0, 0, 1078, 1080, 5, 56, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1084, 5, 236, 0, 0, 1082, 1083, 7, 2, 0, 0, 1083, 1085, 3, 286, 143, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1251, 1, 0, 0, 0, 1086, 1087, 5, 253, 0, 0, 1087, 1088, 5, 235, 0, 0, 1088, 1091, 5, 112, 0, 0, 1089, 1090, 7, 2, 0, 0, 1090, 1092, 3, 286, 143, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1251, 1, 0, 0, 0, 1093, 1094, 5, 76, 0, 0, 1094, 1251, 3, 272, 136, 0, 1095, 1096, 5, 75, 0, 0, 1096, 1251, 3, 272, 136, 0, 1097, 1098, 5, 253, 0, 0, 1098, 1101, 5, 108, 0, 0, 1099, 1100, 7, 2, 0, 0, 1100, 1102, 3, 282, 141, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1109, 1, 0, 0, 0, 1103, 1104, 5, 154, 0, 0, 1104, 1107, 3, 186, 93, 0, 1105, 1106, 5, 90, 0, 0, 1106, 1108, 3, 186, 93, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1103, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1251, 1, 0, 0, 0, 1111, 1112, 5, 253, 0, 0, 1112, 1119, 5, 250, 0, 0, 1113, 1114, 5, 154, 0, 0, 1114, 1117, 3, 186, 93, 0, 1115, 1116, 5, 90, 0, 0, 1116, 1118, 3, 186, 93, 0, 1117, 1115, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1120, 1, 0, 0, 0, 1119, 1113, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1251, 1, 0, 0, 0, 1121, 1122, 5, 251, 0, 0, 1122, 1123, 5, 250, 0, 0, 1123, 1124, 5, 31, 0, 0, 1124, 1251, 3, 318, 159, 0, 1125, 1126, 5, 227, 0, 0, 1126, 1127, 5, 250, 0, 0, 1127, 1251, 5, 31, 0, 0, 1128, 1129, 5, 251, 0, 0, 1129, 1130, 5, 250, 0, 0, 1130, 1131, 3, 300, 150, 0, 1131, 1132, 5, 312, 0, 0, 1132, 1133, 3, 154, 77, 0, 1133, 1251, 1, 0, 0, 0, 1134, 1135, 5, 227, 0, 0, 1135, 1136, 5, 250, 0, 0, 1136, 1251, 3, 300, 150, 0, 1137, 1138, 5, 255, 0, 0, 1138, 1147, 5, 271, 0, 0, 1139, 1144, 3, 232, 116, 0, 1140, 1141, 5, 3, 0, 0, 1141, 1143, 3, 232, 116, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1139, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1251, 1, 0, 0, 0, 1149, 1151, 5, 47, 0, 0, 1150, 1152, 5, 307, 0, 0, 1151, 1150, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1251, 1, 0, 0, 0, 1153, 1155, 5, 237, 0, 0, 1154, 1156, 5, 307, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1251, 1, 0, 0, 0, 1157, 1158, 5, 214, 0, 0, 1158, 1159, 3, 314, 157, 0, 1159, 1160, 5, 105, 0, 0, 1160, 1161, 3, 16, 8, 0, 1161, 1251, 1, 0, 0, 0, 1162, 1163, 5, 68, 0, 0, 1163, 1164, 5, 214, 0, 0, 1164, 1251, 3, 314, 157, 0, 1165, 1166, 5, 93, 0, 0, 1166, 1176, 3, 314, 157, 0, 1167, 1168, 5, 290, 0, 0, 1168, 1173, 3, 154, 77, 0, 1169, 1170, 5, 3, 0, 0, 1170, 1172, 3, 154, 77, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1175, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1177, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1176, 1167, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1251, 1, 0, 0, 0, 1178, 1179, 5, 93, 0, 0, 1179, 1180, 5, 121, 0, 0, 1180, 1190, 3, 186, 93, 0, 1181, 1182, 5, 290, 0, 0, 1182, 1187, 3, 154, 77, 0, 1183, 1184, 5, 3, 0, 0, 1184, 1186, 3, 154, 77, 0, 1185, 1183, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1191, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1181, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1251, 1, 0, 0, 0, 1192, 1193, 5, 76, 0, 0, 1193, 1194, 5, 126, 0, 0, 1194, 1251, 3, 314, 157, 0, 1195, 1196, 5, 76, 0, 0, 1196, 1197, 5, 198, 0, 0, 1197, 1251, 3, 314, 157, 0, 1198, 1199, 5, 251, 0, 0, 1199, 1200, 5, 205, 0, 0, 1200, 1251, 3, 240, 120, 0, 1201, 1202, 5, 251, 0, 0, 1202, 1203, 5, 267, 0, 0, 1203, 1206, 5, 311, 0, 0, 1204, 1207, 5, 157, 0, 0, 1205, 1207, 3, 154, 77, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 1251, 1, 0, 0, 0, 1208, 1209, 5, 287, 0, 0, 1209, 1210, 3, 274, 137, 0, 1210, 1211, 5, 251, 0, 0, 1211, 1216, 3, 228, 114, 0, 1212, 1213, 5, 3, 0, 0, 1213, 1215, 3, 228, 114, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1220, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1221, 3, 54, 27, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1251, 1, 0, 0, 0, 1222, 1223, 5, 169, 0, 0, 1223, 1224, 5, 130, 0, 0, 1224, 1229, 3, 274, 137, 0, 1225, 1227, 5, 28, 0, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 3, 314, 157, 0, 1229, 1226, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232, 5, 290, 0, 0, 1232, 1233, 3, 88, 44, 0, 1233, 1234, 5, 190, 0, 0, 1234, 1236, 3, 154, 77, 0, 1235, 1237, 3, 212, 106, 0, 1236, 1235, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1251, 1, 0, 0, 0, 1240, 1241, 5, 253, 0, 0, 1241, 1242, 5, 46, 0, 0, 1242, 1243, 5, 190, 0, 0, 1243, 1244, 5, 260, 0, 0, 1244, 1251, 3, 274, 137, 0, 1245, 1246, 5, 253, 0, 0, 1246, 1247, 5, 46, 0, 0, 1247, 1248, 5, 190, 0, 0, 1248, 1249, 5, 44, 0, 0, 1249, 1251, 3, 294, 147, 0, 1250, 355, 1, 0, 0, 0, 1250, 356, 1, 0, 0, 0, 1250, 358, 1, 0, 0, 0, 1250, 380, 1, 0, 0, 0, 1250, 390, 1, 0, 0, 0, 1250, 406, 1, 0, 0, 0, 1250, 416, 1, 0, 0, 0, 1250, 423, 1, 0, 0, 0, 1250, 430, 1, 0, 0, 0, 1250, 468, 1, 0, 0, 0, 1250, 498, 1, 0, 0, 0, 1250, 505, 1, 0, 0, 0, 1250, 513, 1, 0, 0, 0, 1250, 519, 1, 0, 0, 0, 1250, 522, 1, 0, 0, 0, 1250, 531, 1, 0, 0, 0, 1250, 540, 1, 0, 0, 0, 1250, 549, 1, 0, 0, 0, 1250, 560, 1, 0, 0, 0, 1250, 576, 1, 0, 0, 0, 1250, 593, 1, 0, 0, 0, 1250, 608, 1, 0, 0, 0, 1250, 623, 1, 0, 0, 0, 1250, 637, 1, 0, 0, 0, 1250, 644, 1, 0, 0, 0, 1250, 651, 1, 0, 0, 0, 1250, 673, 1, 0, 0, 0, 1250, 679, 1, 0, 0, 0, 1250, 708, 1, 0, 0, 0, 1250, 730, 1, 0, 0, 0, 1250, 734, 1, 0, 0, 0, 1250, 742, 1, 0, 0, 0, 1250, 754, 1, 0, 0, 0, 1250, 762, 1, 0, 0, 0, 1250, 769, 1, 0, 0, 0, 1250, 776, 1, 0, 0, 0, 1250, 783, 1, 0, 0, 0, 1250, 798, 1, 0, 0, 0, 1250, 804, 1, 0, 0, 0, 1250, 811, 1, 0, 0, 0, 1250, 823, 1, 0, 0, 0, 1250, 830, 1, 0, 0, 0, 1250, 862, 1, 0, 0, 0, 1250, 884, 1, 0, 0, 0, 1250, 916, 1, 0, 0, 0, 1250, 939, 1, 0, 0, 0, 1250, 957, 1, 0, 0, 0, 1250, 968, 1, 0, 0, 0, 1250, 974, 1, 0, 0, 0, 1250, 989, 1, 0, 0, 0, 1250, 995, 1, 0, 0, 0, 1250, 999, 1, 0, 0, 0, 1250, 1003, 1, 0, 0, 0, 1250, 1007, 1, 0, 0, 0, 1250, 1012, 1, 0, 0, 0, 1250, 1016, 1, 0, 0, 0, 1250, 1030, 1, 0, 0, 0, 1250, 1044, 1, 0, 0, 0, 1250, 1054, 1, 0, 0, 0, 1250, 1066, 1, 0, 0, 0, 1250, 1070, 1, 0, 0, 0, 1250, 1077, 1, 0, 0, 0, 1250, 1086, 1, 0, 0, 0, 1250, 1093, 1, 0, 0, 0, 1250, 1095, 1, 0, 0, 0, 1250, 1097, 1, 0, 0, 0, 1250, 1111, 1, 0, 0, 0, 1250, 1121, 1, 0, 0, 0, 1250, 1125, 1, 0, 0, 0, 1250, 1128, 1, 0, 0, 0, 1250, 1134, 1, 0, 0, 0, 1250, 1137, 1, 0, 0, 0, 1250, 1149, 1, 0, 0, 0, 1250, 1153, 1, 0, 0, 0, 1250, 1157, 1, 0, 0, 0, 1250, 1162, 1, 0, 0, 0, 1250, 1165, 1, 0, 0, 0, 1250, 1178, 1, 0, 0, 0, 1250, 1192, 1, 0, 0, 0, 1250, 1195, 1, 0, 0, 0, 1250, 1198, 1, 0, 0, 0, 1250, 1201, 1, 0, 0, 0, 1250, 1208, 1, 0, 0, 0, 1250, 1222, 1, 0, 0, 0, 1250, 1240, 1, 0, 0, 0, 1250, 1245, 1, 0, 0, 0, 1251, 17, 1, 0, 0, 0, 1252, 1254, 3, 20, 10, 0, 1253, 1252, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1256, 3, 22, 11, 0, 1256, 19, 1, 0, 0, 0, 1257, 1258, 5, 304, 0, 0, 1258, 1263, 3, 242, 121, 0, 1259, 1260, 5, 3, 0, 0, 1260, 1262, 3, 242, 121, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 21, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1268, 3, 24, 12, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 3, 40, 20, 0, 1270, 23, 1, 0, 0, 0, 1271, 1273, 5, 304, 0, 0, 1272, 1274, 5, 221, 0, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1280, 3, 74, 37, 0, 1276, 1277, 5, 3, 0, 0, 1277, 1279, 3, 74, 37, 0, 1278, 1276, 1, 0, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1278, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 25, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1283, 1286, 3, 28, 14, 0, 1284, 1286, 3, 30, 15, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1284, 1, 0, 0, 0, 1286, 27, 1, 0, 0, 0, 1287, 1288, 3, 298, 149, 0, 1288, 1291, 3, 202, 101, 0, 1289, 1290, 5, 182, 0, 0, 1290, 1292, 5, 183, 0, 0, 1291, 1289, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1295, 1, 0, 0, 0, 1293, 1294, 5, 46, 0, 0, 1294, 1296, 3, 186, 93, 0, 1295, 1293, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1299, 1, 0, 0, 0, 1297, 1298, 5, 304, 0, 0, 1298, 1300, 3, 32, 16, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 29, 1, 0, 0, 0, 1301, 1302, 5, 154, 0, 0, 1302, 1305, 3, 274, 137, 0, 1303, 1304, 7, 3, 0, 0, 1304, 1306, 5, 216, 0, 0, 1305, 1303, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 31, 1, 0, 0, 0, 1307, 1308, 5, 1, 0, 0, 1308, 1309, 3, 34, 17, 0, 1309, 1310, 5, 2, 0, 0, 1310, 33, 1, 0, 0, 0, 1311, 1316, 3, 36, 18, 0, 1312, 1313, 5, 3, 0, 0, 1313, 1315, 3, 36, 18, 0, 1314, 1312, 1, 0, 0, 0, 1315, 1318, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 35, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1319, 1320, 3, 314, 157, 0, 1320, 1321, 5, 312, 0, 0, 1321, 1322, 3, 38, 19, 0, 1322, 37, 1, 0, 0, 0, 1323, 1326, 5, 70, 0, 0, 1324, 1326, 3, 154, 77, 0, 1325, 1323, 1, 0, 0, 0, 1325, 1324, 1, 0, 0, 0, 1326, 39, 1, 0, 0, 0, 1327, 1338, 3, 46, 23, 0, 1328, 1329, 5, 195, 0, 0, 1329, 1330, 5, 36, 0, 0, 1330, 1335, 3, 50, 25, 0, 1331, 1332, 5, 3, 0, 0, 1332, 1334, 3, 50, 25, 0, 1333, 1331, 1, 0, 0, 0, 1334, 1337, 1, 0, 0, 0, 1335, 1333, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1339, 1, 0, 0, 0, 1337, 1335, 1, 0, 0, 0, 1338, 1328, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1345, 1, 0, 0, 0, 1340, 1341, 5, 188, 0, 0, 1341, 1343, 3, 44, 22, 0, 1342, 1344, 7, 4, 0, 0, 1343, 1342, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1346, 1, 0, 0, 0, 1345, 1340, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1360, 1, 0, 0, 0, 1347, 1348, 5, 155, 0, 0, 1348, 1361, 3, 42, 21, 0, 1349, 1350, 5, 98, 0, 0, 1350, 1352, 7, 5, 0, 0, 1351, 1353, 3, 44, 22, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1358, 7, 4, 0, 0, 1355, 1359, 5, 192, 0, 0, 1356, 1357, 5, 304, 0, 0, 1357, 1359, 5, 266, 0, 0, 1358, 1355, 1, 0, 0, 0, 1358, 1356, 1, 0, 0, 0, 1359, 1361, 1, 0, 0, 0, 1360, 1347, 1, 0, 0, 0, 1360, 1349, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 41, 1, 0, 0, 0, 1362, 1365, 5, 22, 0, 0, 1363, 1365, 3, 44, 22, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1363, 1, 0, 0, 0, 1365, 43, 1, 0, 0, 0, 1366, 1367, 7, 6, 0, 0, 1367, 45, 1, 0, 0, 0, 1368, 1369, 6, 23, -1, 0, 1369, 1370, 3, 48, 24, 0, 1370, 1385, 1, 0, 0, 0, 1371, 1372, 10, 2, 0, 0, 1372, 1374, 5, 128, 0, 0, 1373, 1375, 3, 76, 38, 0, 1374, 1373, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1384, 3, 46, 23, 3, 1377, 1378, 10, 1, 0, 0, 1378, 1380, 7, 7, 0, 0, 1379, 1381, 3, 76, 38, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1384, 3, 46, 23, 2, 1383, 1371, 1, 0, 0, 0, 1383, 1377, 1, 0, 0, 0, 1384, 1387, 1, 0, 0, 0, 1385, 1383, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 47, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 1405, 3, 52, 26, 0, 1389, 1390, 5, 260, 0, 0, 1390, 1405, 3, 274, 137, 0, 1391, 1392, 5, 296, 0, 0, 1392, 1397, 3, 154, 77, 0, 1393, 1394, 5, 3, 0, 0, 1394, 1396, 3, 154, 77, 0, 1395, 1393, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1405, 1, 0, 0, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1401, 5, 1, 0, 0, 1401, 1402, 3, 40, 20, 0, 1402, 1403, 5, 2, 0, 0, 1403, 1405, 1, 0, 0, 0, 1404, 1388, 1, 0, 0, 0, 1404, 1389, 1, 0, 0, 0, 1404, 1391, 1, 0, 0, 0, 1404, 1400, 1, 0, 0, 0, 1405, 49, 1, 0, 0, 0, 1406, 1409, 3, 294, 147, 0, 1407, 1409, 3, 154, 77, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1407, 1, 0, 0, 0, 1409, 1411, 1, 0, 0, 0, 1410, 1412, 7, 8, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1415, 1, 0, 0, 0, 1413, 1414, 5, 185, 0, 0, 1414, 1416, 7, 9, 0, 0, 1415, 1413, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 51, 1, 0, 0, 0, 1417, 1419, 5, 248, 0, 0, 1418, 1420, 3, 76, 38, 0, 1419, 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1431, 3, 58, 29, 0, 1422, 1423, 5, 105, 0, 0, 1423, 1428, 3, 88, 44, 0, 1424, 1425, 5, 3, 0, 0, 1425, 1427, 3, 88, 44, 0, 1426, 1424, 1, 0, 0, 0, 1427, 1430, 1, 0, 0, 0, 1428, 1426, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1432, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1431, 1422, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1435, 3, 54, 27, 0, 1434, 1433, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1439, 1, 0, 0, 0, 1436, 1437, 5, 114, 0, 0, 1437, 1438, 5, 36, 0, 0, 1438, 1440, 3, 60, 30, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1442, 1, 0, 0, 0, 1441, 1443, 3, 56, 28, 0, 1442, 1441, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1453, 1, 0, 0, 0, 1444, 1445, 5, 303, 0, 0, 1445, 1450, 3, 70, 35, 0, 1446, 1447, 5, 3, 0, 0, 1447, 1449, 3, 70, 35, 0, 1448, 1446, 1, 0, 0, 0, 1449, 1452, 1, 0, 0, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1454, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 1444, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 53, 1, 0, 0, 0, 1455, 1456, 5, 301, 0, 0, 1456, 1457, 3, 156, 78, 0, 1457, 55, 1, 0, 0, 0, 1458, 1459, 5, 117, 0, 0, 1459, 1460, 3, 156, 78, 0, 1460, 57, 1, 0, 0, 0, 1461, 1466, 3, 78, 39, 0, 1462, 1463, 5, 3, 0, 0, 1463, 1465, 3, 78, 39, 0, 1464, 1462, 1, 0, 0, 0, 1465, 1468, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 59, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1471, 3, 76, 38, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1477, 3, 64, 32, 0, 1473, 1474, 5, 3, 0, 0, 1474, 1476, 3, 64, 32, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1479, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 61, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1485, 3, 154, 77, 0, 1481, 1482, 5, 3, 0, 0, 1482, 1484, 3, 154, 77, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 63, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1529, 3, 66, 33, 0, 1489, 1490, 5, 238, 0, 0, 1490, 1499, 5, 1, 0, 0, 1491, 1496, 3, 66, 33, 0, 1492, 1493, 5, 3, 0, 0, 1493, 1495, 3, 66, 33, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1499, 1491, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1529, 5, 2, 0, 0, 1502, 1503, 5, 55, 0, 0, 1503, 1512, 5, 1, 0, 0, 1504, 1509, 3, 66, 33, 0, 1505, 1506, 5, 3, 0, 0, 1506, 1508, 3, 66, 33, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1511, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1513, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1504, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1529, 5, 2, 0, 0, 1515, 1516, 5, 115, 0, 0, 1516, 1517, 5, 252, 0, 0, 1517, 1518, 5, 1, 0, 0, 1518, 1523, 3, 66, 33, 0, 1519, 1520, 5, 3, 0, 0, 1520, 1522, 3, 66, 33, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1525, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1527, 5, 2, 0, 0, 1527, 1529, 1, 0, 0, 0, 1528, 1488, 1, 0, 0, 0, 1528, 1489, 1, 0, 0, 0, 1528, 1502, 1, 0, 0, 0, 1528, 1515, 1, 0, 0, 0, 1529, 65, 1, 0, 0, 0, 1530, 1539, 5, 1, 0, 0, 1531, 1536, 3, 68, 34, 0, 1532, 1533, 5, 3, 0, 0, 1533, 1535, 3, 68, 34, 0, 1534, 1532, 1, 0, 0, 0, 1535, 1538, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1540, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1531, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1544, 5, 2, 0, 0, 1542, 1544, 3, 68, 34, 0, 1543, 1530, 1, 0, 0, 0, 1543, 1542, 1, 0, 0, 0, 1544, 67, 1, 0, 0, 0, 1545, 1548, 3, 294, 147, 0, 1546, 1548, 3, 154, 77, 0, 1547, 1545, 1, 0, 0, 0, 1547, 1546, 1, 0, 0, 0, 1548, 69, 1, 0, 0, 0, 1549, 1550, 3, 314, 157, 0, 1550, 1551, 5, 28, 0, 0, 1551, 1552, 5, 1, 0, 0, 1552, 1553, 3, 72, 36, 0, 1553, 1554, 5, 2, 0, 0, 1554, 71, 1, 0, 0, 0, 1555, 1557, 3, 314, 157, 0, 1556, 1555, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1561, 1, 0, 0, 0, 1558, 1559, 5, 201, 0, 0, 1559, 1560, 5, 36, 0, 0, 1560, 1562, 3, 62, 31, 0, 1561, 1558, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1573, 1, 0, 0, 0, 1563, 1564, 5, 195, 0, 0, 1564, 1565, 5, 36, 0, 0, 1565, 1570, 3, 50, 25, 0, 1566, 1567, 5, 3, 0, 0, 1567, 1569, 3, 50, 25, 0, 1568, 1566, 1, 0, 0, 0, 1569, 1572, 1, 0, 0, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1574, 1, 0, 0, 0, 1572, 1570, 1, 0, 0, 0, 1573, 1563, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1577, 3, 216, 108, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 73, 1, 0, 0, 0, 1578, 1580, 3, 314, 157, 0, 1579, 1581, 3, 124, 62, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 5, 28, 0, 0, 1583, 1584, 5, 1, 0, 0, 1584, 1585, 3, 22, 11, 0, 1585, 1586, 5, 2, 0, 0, 1586, 75, 1, 0, 0, 0, 1587, 1588, 7, 10, 0, 0, 1588, 77, 1, 0, 0, 0, 1589, 1592, 3, 84, 42, 0, 1590, 1592, 3, 86, 43, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1590, 1, 0, 0, 0, 1592, 1597, 1, 0, 0, 0, 1593, 1595, 5, 28, 0, 0, 1594, 1593, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1598, 3, 314, 157, 0, 1597, 1594, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1606, 1, 0, 0, 0, 1599, 1602, 3, 82, 41, 0, 1600, 1601, 5, 28, 0, 0, 1601, 1603, 3, 124, 62, 0, 1602, 1600, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1606, 3, 80, 40, 0, 1605, 1591, 1, 0, 0, 0, 1605, 1599, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 79, 1, 0, 0, 0, 1607, 1608, 5, 320, 0, 0, 1608, 81, 1, 0, 0, 0, 1609, 1610, 3, 162, 81, 0, 1610, 1611, 5, 4, 0, 0, 1611, 1612, 5, 320, 0, 0, 1612, 83, 1, 0, 0, 0, 1613, 1614, 3, 294, 147, 0, 1614, 85, 1, 0, 0, 0, 1615, 1616, 3, 154, 77, 0, 1616, 87, 1, 0, 0, 0, 1617, 1618, 6, 44, -1, 0, 1618, 1619, 3, 94, 47, 0, 1619, 1638, 1, 0, 0, 0, 1620, 1634, 10, 2, 0, 0, 1621, 1622, 5, 54, 0, 0, 1622, 1623, 5, 136, 0, 0, 1623, 1635, 3, 94, 47, 0, 1624, 1625, 3, 90, 45, 0, 1625, 1626, 5, 136, 0, 0, 1626, 1627, 3, 88, 44, 0, 1627, 1628, 3, 92, 46, 0, 1628, 1635, 1, 0, 0, 0, 1629, 1630, 5, 172, 0, 0, 1630, 1631, 3, 90, 45, 0, 1631, 1632, 5, 136, 0, 0, 1632, 1633, 3, 94, 47, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1621, 1, 0, 0, 0, 1634, 1624, 1, 0, 0, 0, 1634, 1629, 1, 0, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1620, 1, 0, 0, 0, 1637, 1640, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 89, 1, 0, 0, 0, 1640, 1638, 1, 0, 0, 0, 1641, 1643, 5, 125, 0, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1657, 1, 0, 0, 0, 1644, 1646, 5, 152, 0, 0, 1645, 1647, 5, 197, 0, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1657, 1, 0, 0, 0, 1648, 1650, 5, 234, 0, 0, 1649, 1651, 5, 197, 0, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1657, 1, 0, 0, 0, 1652, 1654, 5, 106, 0, 0, 1653, 1655, 5, 197, 0, 0, 1654, 1653, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1657, 1, 0, 0, 0, 1656, 1642, 1, 0, 0, 0, 1656, 1644, 1, 0, 0, 0, 1656, 1648, 1, 0, 0, 0, 1656, 1652, 1, 0, 0, 0, 1657, 91, 1, 0, 0, 0, 1658, 1659, 5, 190, 0, 0, 1659, 1673, 3, 156, 78, 0, 1660, 1661, 5, 290, 0, 0, 1661, 1662, 5, 1, 0, 0, 1662, 1667, 3, 314, 157, 0, 1663, 1664, 5, 3, 0, 0, 1664, 1666, 3, 314, 157, 0, 1665, 1663, 1, 0, 0, 0, 1666, 1669, 1, 0, 0, 0, 1667, 1665, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1670, 1, 0, 0, 0, 1669, 1667, 1, 0, 0, 0, 1670, 1671, 5, 2, 0, 0, 1671, 1673, 1, 0, 0, 0, 1672, 1658, 1, 0, 0, 0, 1672, 1660, 1, 0, 0, 0, 1673, 93, 1, 0, 0, 0, 1674, 1681, 3, 104, 52, 0, 1675, 1676, 5, 262, 0, 0, 1676, 1677, 3, 96, 48, 0, 1677, 1678, 5, 1, 0, 0, 1678, 1679, 3, 154, 77, 0, 1679, 1680, 5, 2, 0, 0, 1680, 1682, 1, 0, 0, 0, 1681, 1675, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 95, 1, 0, 0, 0, 1683, 1684, 7, 11, 0, 0, 1684, 97, 1, 0, 0, 0, 1685, 1686, 7, 12, 0, 0, 1686, 99, 1, 0, 0, 0, 1687, 1694, 5, 89, 0, 0, 1688, 1690, 5, 274, 0, 0, 1689, 1691, 3, 186, 93, 0, 1690, 1689, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1694, 3, 102, 51, 0, 1693, 1687, 1, 0, 0, 0, 1693, 1688, 1, 0, 0, 0, 1694, 101, 1, 0, 0, 0, 1695, 1696, 5, 304, 0, 0, 1696, 1700, 5, 51, 0, 0, 1697, 1698, 5, 306, 0, 0, 1698, 1700, 5, 51, 0, 0, 1699, 1695, 1, 0, 0, 0, 1699, 1697, 1, 0, 0, 0, 1700, 103, 1, 0, 0, 0, 1701, 1777, 3, 118, 59, 0, 1702, 1703, 5, 166, 0, 0, 1703, 1707, 5, 1, 0, 0, 1704, 1705, 5, 201, 0, 0, 1705, 1706, 5, 36, 0, 0, 1706, 1708, 3, 62, 31, 0, 1707, 1704, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1719, 1, 0, 0, 0, 1709, 1710, 5, 195, 0, 0, 1710, 1711, 5, 36, 0, 0, 1711, 1716, 3, 50, 25, 0, 1712, 1713, 5, 3, 0, 0, 1713, 1715, 3, 50, 25, 0, 1714, 1712, 1, 0, 0, 0, 1715, 1718, 1, 0, 0, 0, 1716, 1714, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1720, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1719, 1709, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1730, 1, 0, 0, 0, 1721, 1722, 5, 168, 0, 0, 1722, 1727, 3, 106, 53, 0, 1723, 1724, 5, 3, 0, 0, 1724, 1726, 3, 106, 53, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1729, 1, 0, 0, 0, 1727, 1725, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1730, 1721, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1733, 1, 0, 0, 0, 1732, 1734, 3, 108, 54, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1738, 1, 0, 0, 0, 1735, 1736, 5, 21, 0, 0, 1736, 1737, 5, 163, 0, 0, 1737, 1739, 3, 112, 56, 0, 1738, 1735, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1741, 1, 0, 0, 0, 1740, 1742, 7, 13, 0, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 5, 206, 0, 0, 1744, 1745, 5, 1, 0, 0, 1745, 1746, 3, 222, 111, 0, 1746, 1756, 5, 2, 0, 0, 1747, 1748, 5, 257, 0, 0, 1748, 1753, 3, 114, 57, 0, 1749, 1750, 5, 3, 0, 0, 1750, 1752, 3, 114, 57, 0, 1751, 1749, 1, 0, 0, 0, 1752, 1755, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1747, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 5, 71, 0, 0, 1759, 1764, 3, 116, 58, 0, 1760, 1761, 5, 3, 0, 0, 1761, 1763, 3, 116, 58, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1766, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1764, 1, 0, 0, 0, 1767, 1775, 5, 2, 0, 0, 1768, 1770, 5, 28, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 3, 314, 157, 0, 1772, 1774, 3, 124, 62, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1769, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1778, 1, 0, 0, 0, 1777, 1702, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 105, 1, 0, 0, 0, 1779, 1780, 3, 154, 77, 0, 1780, 1781, 5, 28, 0, 0, 1781, 1782, 3, 314, 157, 0, 1782, 107, 1, 0, 0, 0, 1783, 1784, 5, 191, 0, 0, 1784, 1785, 5, 239, 0, 0, 1785, 1786, 5, 207, 0, 0, 1786, 1795, 5, 163, 0, 0, 1787, 1788, 5, 22, 0, 0, 1788, 1789, 5, 240, 0, 0, 1789, 1790, 5, 207, 0, 0, 1790, 1792, 5, 163, 0, 0, 1791, 1793, 3, 110, 55, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1783, 1, 0, 0, 0, 1794, 1787, 1, 0, 0, 0, 1795, 109, 1, 0, 0, 0, 1796, 1797, 5, 253, 0, 0, 1797, 1798, 5, 85, 0, 0, 1798, 1806, 5, 165, 0, 0, 1799, 1800, 5, 189, 0, 0, 1800, 1801, 5, 85, 0, 0, 1801, 1806, 5, 165, 0, 0, 1802, 1803, 5, 304, 0, 0, 1803, 1804, 5, 284, 0, 0, 1804, 1806, 5, 240, 0, 0, 1805, 1796, 1, 0, 0, 0, 1805, 1799, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1806, 111, 1, 0, 0, 0, 1807, 1808, 5, 5, 0, 0, 1808, 1809, 5, 269, 0, 0, 1809, 1810, 5, 174, 0, 0, 1810, 1827, 5, 239, 0, 0, 1811, 1812, 5, 5, 0, 0, 1812, 1813, 5, 204, 0, 0, 1813, 1814, 5, 148, 0, 0, 1814, 1827, 5, 239, 0, 0, 1815, 1816, 5, 5, 0, 0, 1816, 1817, 5, 269, 0, 0, 1817, 1818, 5, 101, 0, 0, 1818, 1827, 3, 314, 157, 0, 1819, 1820, 5, 5, 0, 0, 1820, 1821, 5, 269, 0, 0, 1821, 1822, 5, 148, 0, 0, 1822, 1827, 3, 314, 157, 0, 1823, 1824, 5, 5, 0, 0, 1824, 1825, 5, 269, 0, 0, 1825, 1827, 3, 314, 157, 0, 1826, 1807, 1, 0, 0, 0, 1826, 1811, 1, 0, 0, 0, 1826, 1815, 1, 0, 0, 0, 1826, 1819, 1, 0, 0, 0, 1826, 1823, 1, 0, 0, 0, 1827, 113, 1, 0, 0, 0, 1828, 1829, 3, 314, 157, 0, 1829, 1830, 5, 312, 0, 0, 1830, 1831, 5, 1, 0, 0, 1831, 1836, 3, 314, 157, 0, 1832, 1833, 5, 3, 0, 0, 1833, 1835, 3, 314, 157, 0, 1834, 1832, 1, 0, 0, 0, 1835, 1838, 1, 0, 0, 0, 1836, 1834, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1839, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1840, 5, 2, 0, 0, 1840, 115, 1, 0, 0, 0, 1841, 1842, 3, 314, 157, 0, 1842, 1843, 5, 28, 0, 0, 1843, 1844, 3, 154, 77, 0, 1844, 117, 1, 0, 0, 0, 1845, 1853, 3, 126, 63, 0, 1846, 1848, 5, 28, 0, 0, 1847, 1846, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1851, 3, 314, 157, 0, 1850, 1852, 3, 124, 62, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1847, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 119, 1, 0, 0, 0, 1855, 1856, 5, 1, 0, 0, 1856, 1861, 3, 298, 149, 0, 1857, 1858, 5, 3, 0, 0, 1858, 1860, 3, 298, 149, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1863, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1864, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1864, 1865, 5, 2, 0, 0, 1865, 121, 1, 0, 0, 0, 1866, 1867, 5, 1, 0, 0, 1867, 1872, 3, 294, 147, 0, 1868, 1869, 5, 3, 0, 0, 1869, 1871, 3, 294, 147, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1874, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1875, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1875, 1876, 5, 2, 0, 0, 1876, 123, 1, 0, 0, 0, 1877, 1878, 5, 1, 0, 0, 1878, 1883, 3, 314, 157, 0, 1879, 1880, 5, 3, 0, 0, 1880, 1882, 3, 314, 157, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1885, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1886, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1886, 1887, 5, 2, 0, 0, 1887, 125, 1, 0, 0, 0, 1888, 1890, 3, 272, 136, 0, 1889, 1891, 3, 302, 151, 0, 1890, 1889, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1898, 1, 0, 0, 0, 1892, 1898, 3, 128, 64, 0, 1893, 1894, 5, 1, 0, 0, 1894, 1895, 3, 88, 44, 0, 1895, 1896, 5, 2, 0, 0, 1896, 1898, 1, 0, 0, 0, 1897, 1888, 1, 0, 0, 0, 1897, 1892, 1, 0, 0, 0, 1897, 1893, 1, 0, 0, 0, 1898, 127, 1, 0, 0, 0, 1899, 1900, 5, 1, 0, 0, 1900, 1901, 3, 22, 11, 0, 1901, 1902, 5, 2, 0, 0, 1902, 1963, 1, 0, 0, 0, 1903, 1904, 5, 285, 0, 0, 1904, 1905, 5, 1, 0, 0, 1905, 1910, 3, 154, 77, 0, 1906, 1907, 5, 3, 0, 0, 1907, 1909, 3, 154, 77, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1913, 1, 0, 0, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1916, 5, 2, 0, 0, 1914, 1915, 5, 304, 0, 0, 1915, 1917, 5, 196, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1963, 1, 0, 0, 0, 1918, 1919, 5, 149, 0, 0, 1919, 1920, 5, 1, 0, 0, 1920, 1921, 3, 22, 11, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1963, 1, 0, 0, 0, 1923, 1924, 5, 260, 0, 0, 1924, 1925, 5, 1, 0, 0, 1925, 1926, 3, 140, 70, 0, 1926, 1927, 5, 2, 0, 0, 1927, 1963, 1, 0, 0, 0, 1928, 1929, 5, 142, 0, 0, 1929, 1930, 5, 1, 0, 0, 1930, 1931, 3, 164, 82, 0, 1931, 1932, 5, 45, 0, 0, 1932, 1933, 5, 1, 0, 0, 1933, 1938, 3, 130, 65, 0, 1934, 1935, 5, 3, 0, 0, 1935, 1937, 3, 130, 65, 0, 1936, 1934, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1941, 1953, 5, 2, 0, 0, 1942, 1943, 5, 210, 0, 0, 1943, 1944, 5, 1, 0, 0, 1944, 1945, 3, 132, 66, 0, 1945, 1946, 5, 2, 0, 0, 1946, 1954, 1, 0, 0, 0, 1947, 1948, 5, 210, 0, 0, 1948, 1949, 5, 70, 0, 0, 1949, 1950, 5, 1, 0, 0, 1950, 1951, 3, 138, 69, 0, 1951, 1952, 5, 2, 0, 0, 1952, 1954, 1, 0, 0, 0, 1953, 1942, 1, 0, 0, 0, 1953, 1947, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1958, 1, 0, 0, 0, 1955, 1956, 7, 14, 0, 0, 1956, 1957, 5, 190, 0, 0, 1957, 1959, 5, 89, 0, 0, 1958, 1955, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 5, 2, 0, 0, 1961, 1963, 1, 0, 0, 0, 1962, 1899, 1, 0, 0, 0, 1962, 1903, 1, 0, 0, 0, 1962, 1918, 1, 0, 0, 0, 1962, 1923, 1, 0, 0, 0, 1962, 1928, 1, 0, 0, 0, 1963, 129, 1, 0, 0, 0, 1964, 1965, 3, 314, 157, 0, 1965, 1966, 5, 103, 0, 0, 1966, 1967, 5, 196, 0, 0, 1967, 2042, 1, 0, 0, 0, 1968, 1969, 3, 314, 157, 0, 1969, 1972, 3, 202, 101, 0, 1970, 1971, 5, 205, 0, 0, 1971, 1973, 3, 186, 93, 0, 1972, 1970, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1978, 1, 0, 0, 0, 1974, 1975, 3, 174, 87, 0, 1975, 1976, 5, 190, 0, 0, 1976, 1977, 5, 85, 0, 0, 1977, 1979, 1, 0, 0, 0, 1978, 1974, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1984, 1, 0, 0, 0, 1980, 1981, 3, 174, 87, 0, 1981, 1982, 5, 190, 0, 0, 1982, 1983, 5, 89, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1980, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 2042, 1, 0, 0, 0, 1986, 1987, 3, 314, 157, 0, 1987, 1988, 3, 202, 101, 0, 1988, 1989, 5, 104, 0, 0, 1989, 1992, 3, 168, 84, 0, 1990, 1991, 5, 205, 0, 0, 1991, 1993, 3, 186, 93, 0, 1992, 1990, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1997, 1, 0, 0, 0, 1994, 1995, 3, 176, 88, 0, 1995, 1996, 5, 308, 0, 0, 1996, 1998, 1, 0, 0, 0, 1997, 1994, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2006, 1, 0, 0, 0, 1999, 2000, 7, 15, 0, 0, 2000, 2004, 5, 218, 0, 0, 2001, 2002, 5, 190, 0, 0, 2002, 2003, 5, 242, 0, 0, 2003, 2005, 5, 264, 0, 0, 2004, 2001, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2007, 1, 0, 0, 0, 2006, 1999, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2012, 1, 0, 0, 0, 2008, 2009, 3, 178, 89, 0, 2009, 2010, 5, 190, 0, 0, 2010, 2011, 5, 85, 0, 0, 2011, 2013, 1, 0, 0, 0, 2012, 2008, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2018, 1, 0, 0, 0, 2014, 2015, 3, 178, 89, 0, 2015, 2016, 5, 190, 0, 0, 2016, 2017, 5, 89, 0, 0, 2017, 2019, 1, 0, 0, 0, 2018, 2014, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2042, 1, 0, 0, 0, 2020, 2022, 5, 173, 0, 0, 2021, 2023, 5, 205, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2027, 3, 186, 93, 0, 2025, 2026, 5, 28, 0, 0, 2026, 2028, 3, 314, 157, 0, 2027, 2025, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 5, 45, 0, 0, 2030, 2031, 5, 1, 0, 0, 2031, 2036, 3, 130, 65, 0, 2032, 2033, 5, 3, 0, 0, 2033, 2035, 3, 130, 65, 0, 2034, 2032, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2039, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2039, 2040, 5, 2, 0, 0, 2040, 2042, 1, 0, 0, 0, 2041, 1964, 1, 0, 0, 0, 2041, 1968, 1, 0, 0, 0, 2041, 1986, 1, 0, 0, 0, 2041, 2020, 1, 0, 0, 0, 2042, 131, 1, 0, 0, 0, 2043, 2069, 3, 134, 67, 0, 2044, 2045, 3, 134, 67, 0, 2045, 2046, 7, 16, 0, 0, 2046, 2047, 3, 136, 68, 0, 2047, 2069, 1, 0, 0, 0, 2048, 2049, 3, 136, 68, 0, 2049, 2050, 5, 281, 0, 0, 2050, 2055, 3, 136, 68, 0, 2051, 2052, 5, 281, 0, 0, 2052, 2054, 3, 136, 68, 0, 2053, 2051, 1, 0, 0, 0, 2054, 2057, 1, 0, 0, 0, 2055, 2053, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2069, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2058, 2059, 3, 136, 68, 0, 2059, 2060, 5, 54, 0, 0, 2060, 2065, 3, 136, 68, 0, 2061, 2062, 5, 54, 0, 0, 2062, 2064, 3, 136, 68, 0, 2063, 2061, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2068, 2043, 1, 0, 0, 0, 2068, 2044, 1, 0, 0, 0, 2068, 2048, 1, 0, 0, 0, 2068, 2058, 1, 0, 0, 0, 2069, 133, 1, 0, 0, 0, 2070, 2071, 3, 314, 157, 0, 2071, 135, 1, 0, 0, 0, 2072, 2078, 3, 134, 67, 0, 2073, 2074, 5, 1, 0, 0, 2074, 2075, 3, 132, 66, 0, 2075, 2076, 5, 2, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2072, 1, 0, 0, 0, 2077, 2073, 1, 0, 0, 0, 2078, 137, 1, 0, 0, 0, 2079, 2082, 7, 16, 0, 0, 2080, 2081, 5, 3, 0, 0, 2081, 2083, 7, 17, 0, 0, 2082, 2080, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2090, 1, 0, 0, 0, 2084, 2087, 7, 17, 0, 0, 2085, 2086, 5, 3, 0, 0, 2086, 2088, 7, 16, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2079, 1, 0, 0, 0, 2089, 2084, 1, 0, 0, 0, 2090, 139, 1, 0, 0, 0, 2091, 2092, 3, 290, 145, 0, 2092, 2101, 5, 1, 0, 0, 2093, 2098, 3, 142, 71, 0, 2094, 2095, 5, 3, 0, 0, 2095, 2097, 3, 142, 71, 0, 2096, 2094, 1, 0, 0, 0, 2097, 2100, 1, 0, 0, 0, 2098, 2096, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2102, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2101, 2093, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2112, 1, 0, 0, 0, 2103, 2104, 5, 52, 0, 0, 2104, 2109, 3, 152, 76, 0, 2105, 2106, 5, 3, 0, 0, 2106, 2108, 3, 152, 76, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2113, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2103, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2115, 5, 2, 0, 0, 2115, 141, 1, 0, 0, 0, 2116, 2117, 3, 314, 157, 0, 2117, 2118, 5, 6, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2116, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2124, 1, 0, 0, 0, 2121, 2125, 3, 144, 72, 0, 2122, 2125, 3, 148, 74, 0, 2123, 2125, 3, 154, 77, 0, 2124, 2121, 1, 0, 0, 0, 2124, 2122, 1, 0, 0, 0, 2124, 2123, 1, 0, 0, 0, 2125, 143, 1, 0, 0, 0, 2126, 2137, 3, 146, 73, 0, 2127, 2128, 5, 201, 0, 0, 2128, 2135, 5, 36, 0, 0, 2129, 2131, 5, 1, 0, 0, 2130, 2132, 3, 62, 31, 0, 2131, 2130, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2136, 5, 2, 0, 0, 2134, 2136, 3, 154, 77, 0, 2135, 2129, 1, 0, 0, 0, 2135, 2134, 1, 0, 0, 0, 2136, 2138, 1, 0, 0, 0, 2137, 2127, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2145, 1, 0, 0, 0, 2139, 2140, 5, 217, 0, 0, 2140, 2141, 5, 300, 0, 0, 2141, 2146, 5, 85, 0, 0, 2142, 2143, 5, 144, 0, 0, 2143, 2144, 5, 300, 0, 0, 2144, 2146, 5, 85, 0, 0, 2145, 2139, 1, 0, 0, 0, 2145, 2142, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2163, 1, 0, 0, 0, 2147, 2148, 5, 195, 0, 0, 2148, 2161, 5, 36, 0, 0, 2149, 2150, 5, 1, 0, 0, 2150, 2155, 3, 50, 25, 0, 2151, 2152, 5, 3, 0, 0, 2152, 2154, 3, 50, 25, 0, 2153, 2151, 1, 0, 0, 0, 2154, 2157, 1, 0, 0, 0, 2155, 2153, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2158, 1, 0, 0, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2159, 5, 2, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2162, 3, 50, 25, 0, 2161, 2149, 1, 0, 0, 0, 2161, 2160, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2147, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 145, 1, 0, 0, 0, 2165, 2166, 5, 260, 0, 0, 2166, 2167, 5, 1, 0, 0, 2167, 2168, 3, 274, 137, 0, 2168, 2176, 5, 2, 0, 0, 2169, 2171, 5, 28, 0, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2174, 3, 314, 157, 0, 2173, 2175, 3, 124, 62, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 1, 0, 0, 0, 2176, 2170, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2192, 1, 0, 0, 0, 2178, 2179, 5, 260, 0, 0, 2179, 2180, 5, 1, 0, 0, 2180, 2181, 3, 22, 11, 0, 2181, 2189, 5, 2, 0, 0, 2182, 2184, 5, 28, 0, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2187, 3, 314, 157, 0, 2186, 2188, 3, 124, 62, 0, 2187, 2186, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2190, 1, 0, 0, 0, 2189, 2183, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 1, 0, 0, 0, 2191, 2165, 1, 0, 0, 0, 2191, 2178, 1, 0, 0, 0, 2192, 147, 1, 0, 0, 0, 2193, 2194, 5, 77, 0, 0, 2194, 2195, 5, 1, 0, 0, 2195, 2200, 3, 150, 75, 0, 2196, 2197, 5, 3, 0, 0, 2197, 2199, 3, 150, 75, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2202, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2203, 1, 0, 0, 0, 2202, 2200, 1, 0, 0, 0, 2203, 2204, 5, 2, 0, 0, 2204, 2212, 1, 0, 0, 0, 2205, 2206, 5, 41, 0, 0, 2206, 2207, 5, 1, 0, 0, 2207, 2208, 5, 183, 0, 0, 2208, 2209, 5, 28, 0, 0, 2209, 2210, 5, 77, 0, 0, 2210, 2212, 5, 2, 0, 0, 2211, 2193, 1, 0, 0, 0, 2211, 2205, 1, 0, 0, 0, 2212, 149, 1, 0, 0, 0, 2213, 2215, 3, 314, 157, 0, 2214, 2216, 3, 202, 101, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 151, 1, 0, 0, 0, 2217, 2218, 5, 1, 0, 0, 2218, 2219, 3, 300, 150, 0, 2219, 2220, 5, 3, 0, 0, 2220, 2225, 3, 300, 150, 0, 2221, 2222, 5, 3, 0, 0, 2222, 2224, 3, 300, 150, 0, 2223, 2221, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2229, 5, 2, 0, 0, 2229, 153, 1, 0, 0, 0, 2230, 2231, 3, 156, 78, 0, 2231, 155, 1, 0, 0, 0, 2232, 2233, 6, 78, -1, 0, 2233, 2235, 3, 160, 80, 0, 2234, 2236, 3, 158, 79, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2240, 1, 0, 0, 0, 2237, 2238, 5, 182, 0, 0, 2238, 2240, 3, 156, 78, 3, 2239, 2232, 1, 0, 0, 0, 2239, 2237, 1, 0, 0, 0, 2240, 2249, 1, 0, 0, 0, 2241, 2242, 10, 2, 0, 0, 2242, 2243, 5, 25, 0, 0, 2243, 2248, 3, 156, 78, 3, 2244, 2245, 10, 1, 0, 0, 2245, 2246, 5, 194, 0, 0, 2246, 2248, 3, 156, 78, 2, 2247, 2241, 1, 0, 0, 0, 2247, 2244, 1, 0, 0, 0, 2248, 2251, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 157, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2253, 3, 190, 95, 0, 2253, 2254, 3, 160, 80, 0, 2254, 2314, 1, 0, 0, 0, 2255, 2256, 3, 190, 95, 0, 2256, 2257, 3, 192, 96, 0, 2257, 2258, 5, 1, 0, 0, 2258, 2259, 3, 22, 11, 0, 2259, 2260, 5, 2, 0, 0, 2260, 2314, 1, 0, 0, 0, 2261, 2263, 5, 182, 0, 0, 2262, 2261, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2265, 5, 34, 0, 0, 2265, 2266, 3, 160, 80, 0, 2266, 2267, 5, 25, 0, 0, 2267, 2268, 3, 160, 80, 0, 2268, 2314, 1, 0, 0, 0, 2269, 2271, 5, 182, 0, 0, 2270, 2269, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 5, 122, 0, 0, 2273, 2274, 5, 1, 0, 0, 2274, 2279, 3, 154, 77, 0, 2275, 2276, 5, 3, 0, 0, 2276, 2278, 3, 154, 77, 0, 2277, 2275, 1, 0, 0, 0, 2278, 2281, 1, 0, 0, 0, 2279, 2277, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2282, 1, 0, 0, 0, 2281, 2279, 1, 0, 0, 0, 2282, 2283, 5, 2, 0, 0, 2283, 2314, 1, 0, 0, 0, 2284, 2286, 5, 182, 0, 0, 2285, 2284, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2288, 5, 122, 0, 0, 2288, 2289, 5, 1, 0, 0, 2289, 2290, 3, 22, 11, 0, 2290, 2291, 5, 2, 0, 0, 2291, 2314, 1, 0, 0, 0, 2292, 2294, 5, 182, 0, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2296, 5, 154, 0, 0, 2296, 2299, 3, 160, 80, 0, 2297, 2298, 5, 90, 0, 0, 2298, 2300, 3, 160, 80, 0, 2299, 2297, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2314, 1, 0, 0, 0, 2301, 2303, 5, 133, 0, 0, 2302, 2304, 5, 182, 0, 0, 2303, 2302, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2314, 5, 183, 0, 0, 2306, 2308, 5, 133, 0, 0, 2307, 2309, 5, 182, 0, 0, 2308, 2307, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2311, 5, 79, 0, 0, 2311, 2312, 5, 105, 0, 0, 2312, 2314, 3, 160, 80, 0, 2313, 2252, 1, 0, 0, 0, 2313, 2255, 1, 0, 0, 0, 2313, 2262, 1, 0, 0, 0, 2313, 2270, 1, 0, 0, 0, 2313, 2285, 1, 0, 0, 0, 2313, 2293, 1, 0, 0, 0, 2313, 2301, 1, 0, 0, 0, 2313, 2306, 1, 0, 0, 0, 2314, 159, 1, 0, 0, 0, 2315, 2316, 6, 80, -1, 0, 2316, 2320, 3, 162, 81, 0, 2317, 2318, 7, 18, 0, 0, 2318, 2320, 3, 160, 80, 4, 2319, 2315, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2335, 1, 0, 0, 0, 2321, 2322, 10, 3, 0, 0, 2322, 2323, 7, 19, 0, 0, 2323, 2334, 3, 160, 80, 4, 2324, 2325, 10, 2, 0, 0, 2325, 2326, 7, 18, 0, 0, 2326, 2334, 3, 160, 80, 3, 2327, 2328, 10, 1, 0, 0, 2328, 2329, 5, 323, 0, 0, 2329, 2334, 3, 160, 80, 2, 2330, 2331, 10, 5, 0, 0, 2331, 2332, 5, 30, 0, 0, 2332, 2334, 3, 188, 94, 0, 2333, 2321, 1, 0, 0, 0, 2333, 2324, 1, 0, 0, 0, 2333, 2327, 1, 0, 0, 0, 2333, 2330, 1, 0, 0, 0, 2334, 2337, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 161, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2338, 2339, 6, 81, -1, 0, 2339, 2792, 5, 183, 0, 0, 2340, 2792, 3, 196, 98, 0, 2341, 2342, 3, 314, 157, 0, 2342, 2343, 3, 186, 93, 0, 2343, 2792, 1, 0, 0, 0, 2344, 2345, 5, 82, 0, 0, 2345, 2346, 5, 213, 0, 0, 2346, 2792, 3, 186, 93, 0, 2347, 2792, 3, 316, 158, 0, 2348, 2792, 3, 194, 97, 0, 2349, 2792, 3, 186, 93, 0, 2350, 2792, 5, 328, 0, 0, 2351, 2792, 5, 324, 0, 0, 2352, 2353, 5, 211, 0, 0, 2353, 2354, 5, 1, 0, 0, 2354, 2355, 3, 160, 80, 0, 2355, 2356, 5, 122, 0, 0, 2356, 2357, 3, 160, 80, 0, 2357, 2358, 5, 2, 0, 0, 2358, 2792, 1, 0, 0, 0, 2359, 2360, 5, 1, 0, 0, 2360, 2363, 3, 154, 77, 0, 2361, 2362, 5, 3, 0, 0, 2362, 2364, 3, 154, 77, 0, 2363, 2361, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 5, 2, 0, 0, 2368, 2792, 1, 0, 0, 0, 2369, 2370, 5, 239, 0, 0, 2370, 2371, 5, 1, 0, 0, 2371, 2376, 3, 154, 77, 0, 2372, 2373, 5, 3, 0, 0, 2373, 2375, 3, 154, 77, 0, 2374, 2372, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2380, 5, 2, 0, 0, 2380, 2792, 1, 0, 0, 0, 2381, 2382, 5, 156, 0, 0, 2382, 2384, 5, 1, 0, 0, 2383, 2385, 3, 76, 38, 0, 2384, 2383, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2389, 3, 154, 77, 0, 2387, 2388, 5, 3, 0, 0, 2388, 2390, 3, 186, 93, 0, 2389, 2387, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2394, 1, 0, 0, 0, 2391, 2392, 5, 190, 0, 0, 2392, 2393, 5, 200, 0, 0, 2393, 2395, 3, 100, 50, 0, 2394, 2391, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2397, 5, 2, 0, 0, 2397, 2398, 5, 305, 0, 0, 2398, 2399, 5, 114, 0, 0, 2399, 2400, 5, 1, 0, 0, 2400, 2401, 5, 195, 0, 0, 2401, 2402, 5, 36, 0, 0, 2402, 2407, 3, 50, 25, 0, 2403, 2404, 5, 3, 0, 0, 2404, 2406, 3, 50, 25, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2409, 1, 0, 0, 0, 2407, 2405, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2410, 1, 0, 0, 0, 2409, 2407, 1, 0, 0, 0, 2410, 2411, 5, 2, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2414, 3, 210, 105, 0, 2413, 2412, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2792, 1, 0, 0, 0, 2415, 2417, 3, 182, 91, 0, 2416, 2415, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 3, 290, 145, 0, 2419, 2423, 5, 1, 0, 0, 2420, 2421, 3, 314, 157, 0, 2421, 2422, 5, 4, 0, 0, 2422, 2424, 1, 0, 0, 0, 2423, 2420, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2426, 5, 320, 0, 0, 2426, 2428, 5, 2, 0, 0, 2427, 2429, 3, 210, 105, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2431, 1, 0, 0, 0, 2430, 2432, 3, 214, 107, 0, 2431, 2430, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2792, 1, 0, 0, 0, 2433, 2435, 3, 182, 91, 0, 2434, 2433, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2437, 3, 290, 145, 0, 2437, 2449, 5, 1, 0, 0, 2438, 2440, 3, 76, 38, 0, 2439, 2438, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2446, 3, 154, 77, 0, 2442, 2443, 5, 3, 0, 0, 2443, 2445, 3, 154, 77, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2448, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2450, 1, 0, 0, 0, 2448, 2446, 1, 0, 0, 0, 2449, 2439, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2461, 1, 0, 0, 0, 2451, 2452, 5, 195, 0, 0, 2452, 2453, 5, 36, 0, 0, 2453, 2458, 3, 50, 25, 0, 2454, 2455, 5, 3, 0, 0, 2455, 2457, 3, 50, 25, 0, 2456, 2454, 1, 0, 0, 0, 2457, 2460, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2462, 1, 0, 0, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2451, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 5, 2, 0, 0, 2464, 2466, 3, 210, 105, 0, 2465, 2464, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2471, 1, 0, 0, 0, 2467, 2469, 3, 184, 92, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 3, 214, 107, 0, 2471, 2468, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2792, 1, 0, 0, 0, 2473, 2474, 3, 314, 157, 0, 2474, 2475, 3, 214, 107, 0, 2475, 2792, 1, 0, 0, 0, 2476, 2477, 3, 314, 157, 0, 2477, 2478, 5, 7, 0, 0, 2478, 2479, 3, 154, 77, 0, 2479, 2792, 1, 0, 0, 0, 2480, 2489, 5, 1, 0, 0, 2481, 2486, 3, 314, 157, 0, 2482, 2483, 5, 3, 0, 0, 2483, 2485, 3, 314, 157, 0, 2484, 2482, 1, 0, 0, 0, 2485, 2488, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2490, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2489, 2481, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 5, 2, 0, 0, 2492, 2493, 5, 7, 0, 0, 2493, 2792, 3, 154, 77, 0, 2494, 2495, 5, 1, 0, 0, 2495, 2496, 3, 22, 11, 0, 2496, 2497, 5, 2, 0, 0, 2497, 2792, 1, 0, 0, 0, 2498, 2499, 5, 94, 0, 0, 2499, 2500, 5, 1, 0, 0, 2500, 2501, 3, 22, 11, 0, 2501, 2502, 5, 2, 0, 0, 2502, 2792, 1, 0, 0, 0, 2503, 2504, 5, 40, 0, 0, 2504, 2506, 3, 154, 77, 0, 2505, 2507, 3, 208, 104, 0, 2506, 2505, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2512, 1, 0, 0, 0, 2510, 2511, 5, 84, 0, 0, 2511, 2513, 3, 154, 77, 0, 2512, 2510, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 5, 88, 0, 0, 2515, 2792, 1, 0, 0, 0, 2516, 2518, 5, 40, 0, 0, 2517, 2519, 3, 208, 104, 0, 2518, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2518, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2524, 1, 0, 0, 0, 2522, 2523, 5, 84, 0, 0, 2523, 2525, 3, 154, 77, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2526, 1, 0, 0, 0, 2526, 2527, 5, 88, 0, 0, 2527, 2792, 1, 0, 0, 0, 2528, 2529, 5, 41, 0, 0, 2529, 2530, 5, 1, 0, 0, 2530, 2531, 3, 154, 77, 0, 2531, 2532, 5, 28, 0, 0, 2532, 2533, 3, 202, 101, 0, 2533, 2534, 5, 2, 0, 0, 2534, 2792, 1, 0, 0, 0, 2535, 2536, 5, 275, 0, 0, 2536, 2537, 5, 1, 0, 0, 2537, 2538, 3, 154, 77, 0, 2538, 2539, 5, 28, 0, 0, 2539, 2540, 3, 202, 101, 0, 2540, 2541, 5, 2, 0, 0, 2541, 2792, 1, 0, 0, 0, 2542, 2543, 5, 27, 0, 0, 2543, 2552, 5, 8, 0, 0, 2544, 2549, 3, 154, 77, 0, 2545, 2546, 5, 3, 0, 0, 2546, 2548, 3, 154, 77, 0, 2547, 2545, 1, 0, 0, 0, 2548, 2551, 1, 0, 0, 0, 2549, 2547, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2553, 1, 0, 0, 0, 2551, 2549, 1, 0, 0, 0, 2552, 2544, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2792, 5, 9, 0, 0, 2555, 2792, 3, 296, 148, 0, 2556, 2792, 5, 58, 0, 0, 2557, 2561, 5, 62, 0, 0, 2558, 2559, 5, 1, 0, 0, 2559, 2560, 5, 329, 0, 0, 2560, 2562, 5, 2, 0, 0, 2561, 2558, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2792, 1, 0, 0, 0, 2563, 2567, 5, 63, 0, 0, 2564, 2565, 5, 1, 0, 0, 2565, 2566, 5, 329, 0, 0, 2566, 2568, 5, 2, 0, 0, 2567, 2564, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2792, 1, 0, 0, 0, 2569, 2573, 5, 158, 0, 0, 2570, 2571, 5, 1, 0, 0, 2571, 2572, 5, 329, 0, 0, 2572, 2574, 5, 2, 0, 0, 2573, 2570, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2792, 1, 0, 0, 0, 2575, 2579, 5, 159, 0, 0, 2576, 2577, 5, 1, 0, 0, 2577, 2578, 5, 329, 0, 0, 2578, 2580, 5, 2, 0, 0, 2579, 2576, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2792, 1, 0, 0, 0, 2581, 2792, 5, 64, 0, 0, 2582, 2792, 5, 57, 0, 0, 2583, 2792, 5, 61, 0, 0, 2584, 2792, 5, 59, 0, 0, 2585, 2586, 5, 272, 0, 0, 2586, 2594, 5, 1, 0, 0, 2587, 2589, 3, 98, 49, 0, 2588, 2587, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 160, 80, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 5, 105, 0, 0, 2594, 2588, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 3, 160, 80, 0, 2597, 2598, 5, 2, 0, 0, 2598, 2792, 1, 0, 0, 0, 2599, 2600, 5, 272, 0, 0, 2600, 2601, 5, 1, 0, 0, 2601, 2602, 3, 160, 80, 0, 2602, 2603, 5, 3, 0, 0, 2603, 2604, 3, 160, 80, 0, 2604, 2605, 5, 2, 0, 0, 2605, 2792, 1, 0, 0, 0, 2606, 2607, 5, 258, 0, 0, 2607, 2608, 5, 1, 0, 0, 2608, 2609, 3, 160, 80, 0, 2609, 2610, 5, 105, 0, 0, 2610, 2613, 3, 160, 80, 0, 2611, 2612, 5, 103, 0, 0, 2612, 2614, 3, 160, 80, 0, 2613, 2611, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2616, 5, 2, 0, 0, 2616, 2792, 1, 0, 0, 0, 2617, 2618, 5, 181, 0, 0, 2618, 2619, 5, 1, 0, 0, 2619, 2622, 3, 160, 80, 0, 2620, 2621, 5, 3, 0, 0, 2621, 2623, 3, 200, 100, 0, 2622, 2620, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 5, 2, 0, 0, 2625, 2792, 1, 0, 0, 0, 2626, 2627, 5, 96, 0, 0, 2627, 2628, 5, 1, 0, 0, 2628, 2629, 3, 314, 157, 0, 2629, 2630, 5, 105, 0, 0, 2630, 2631, 3, 160, 80, 0, 2631, 2632, 5, 2, 0, 0, 2632, 2792, 1, 0, 0, 0, 2633, 2634, 5, 1, 0, 0, 2634, 2635, 3, 154, 77, 0, 2635, 2636, 5, 2, 0, 0, 2636, 2792, 1, 0, 0, 0, 2637, 2638, 5, 115, 0, 0, 2638, 2647, 5, 1, 0, 0, 2639, 2644, 3, 300, 150, 0, 2640, 2641, 5, 3, 0, 0, 2641, 2643, 3, 300, 150, 0, 2642, 2640, 1, 0, 0, 0, 2643, 2646, 1, 0, 0, 0, 2644, 2642, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2648, 1, 0, 0, 0, 2646, 2644, 1, 0, 0, 0, 2647, 2639, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2792, 5, 2, 0, 0, 2650, 2651, 5, 139, 0, 0, 2651, 2652, 5, 1, 0, 0, 2652, 2657, 3, 164, 82, 0, 2653, 2654, 3, 172, 86, 0, 2654, 2655, 5, 190, 0, 0, 2655, 2656, 5, 89, 0, 0, 2656, 2658, 1, 0, 0, 0, 2657, 2653, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 5, 2, 0, 0, 2660, 2792, 1, 0, 0, 0, 2661, 2662, 5, 143, 0, 0, 2662, 2663, 5, 1, 0, 0, 2663, 2666, 3, 164, 82, 0, 2664, 2665, 5, 231, 0, 0, 2665, 2667, 3, 202, 101, 0, 2666, 2664, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2672, 1, 0, 0, 0, 2668, 2669, 3, 174, 87, 0, 2669, 2670, 5, 190, 0, 0, 2670, 2671, 5, 85, 0, 0, 2671, 2673, 1, 0, 0, 0, 2672, 2668, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2678, 1, 0, 0, 0, 2674, 2675, 3, 174, 87, 0, 2675, 2676, 5, 190, 0, 0, 2676, 2677, 5, 89, 0, 0, 2677, 2679, 1, 0, 0, 0, 2678, 2674, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2681, 5, 2, 0, 0, 2681, 2792, 1, 0, 0, 0, 2682, 2683, 5, 141, 0, 0, 2683, 2684, 5, 1, 0, 0, 2684, 2691, 3, 164, 82, 0, 2685, 2686, 5, 231, 0, 0, 2686, 2689, 3, 202, 101, 0, 2687, 2688, 5, 104, 0, 0, 2688, 2690, 3, 168, 84, 0, 2689, 2687, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2692, 1, 0, 0, 0, 2691, 2685, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2696, 1, 0, 0, 0, 2693, 2694, 3, 176, 88, 0, 2694, 2695, 5, 308, 0, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2693, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2705, 1, 0, 0, 0, 2698, 2699, 7, 15, 0, 0, 2699, 2703, 5, 218, 0, 0, 2700, 2701, 5, 190, 0, 0, 2701, 2702, 5, 242, 0, 0, 2702, 2704, 5, 264, 0, 0, 2703, 2700, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2706, 1, 0, 0, 0, 2705, 2698, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2711, 1, 0, 0, 0, 2707, 2708, 3, 178, 89, 0, 2708, 2709, 5, 190, 0, 0, 2709, 2710, 5, 85, 0, 0, 2710, 2712, 1, 0, 0, 0, 2711, 2707, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2717, 1, 0, 0, 0, 2713, 2714, 3, 178, 89, 0, 2714, 2715, 5, 190, 0, 0, 2715, 2716, 5, 89, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2713, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2720, 5, 2, 0, 0, 2720, 2792, 1, 0, 0, 0, 2721, 2722, 5, 140, 0, 0, 2722, 2751, 5, 1, 0, 0, 2723, 2728, 3, 180, 90, 0, 2724, 2725, 5, 3, 0, 0, 2725, 2727, 3, 180, 90, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2730, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 2737, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2731, 2732, 5, 183, 0, 0, 2732, 2733, 5, 190, 0, 0, 2733, 2738, 5, 183, 0, 0, 2734, 2735, 5, 18, 0, 0, 2735, 2736, 5, 190, 0, 0, 2736, 2738, 5, 183, 0, 0, 2737, 2731, 1, 0, 0, 0, 2737, 2734, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2749, 1, 0, 0, 0, 2739, 2740, 5, 304, 0, 0, 2740, 2742, 5, 282, 0, 0, 2741, 2743, 5, 146, 0, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2750, 1, 0, 0, 0, 2744, 2745, 5, 306, 0, 0, 2745, 2747, 5, 282, 0, 0, 2746, 2748, 5, 146, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2750, 1, 0, 0, 0, 2749, 2739, 1, 0, 0, 0, 2749, 2744, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2723, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2759, 1, 0, 0, 0, 2753, 2754, 5, 231, 0, 0, 2754, 2757, 3, 202, 101, 0, 2755, 2756, 5, 104, 0, 0, 2756, 2758, 3, 168, 84, 0, 2757, 2755, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2753, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2792, 5, 2, 0, 0, 2762, 2763, 5, 138, 0, 0, 2763, 2780, 5, 1, 0, 0, 2764, 2769, 3, 166, 83, 0, 2765, 2766, 5, 3, 0, 0, 2766, 2768, 3, 166, 83, 0, 2767, 2765, 1, 0, 0, 0, 2768, 2771, 1, 0, 0, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2778, 1, 0, 0, 0, 2771, 2769, 1, 0, 0, 0, 2772, 2773, 5, 183, 0, 0, 2773, 2774, 5, 190, 0, 0, 2774, 2779, 5, 183, 0, 0, 2775, 2776, 5, 18, 0, 0, 2776, 2777, 5, 190, 0, 0, 2777, 2779, 5, 183, 0, 0, 2778, 2772, 1, 0, 0, 0, 2778, 2775, 1, 0, 0, 0, 2778, 2779, 1, 0, 0, 0, 2779, 2781, 1, 0, 0, 0, 2780, 2764, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2788, 1, 0, 0, 0, 2782, 2783, 5, 231, 0, 0, 2783, 2786, 3, 202, 101, 0, 2784, 2785, 5, 104, 0, 0, 2785, 2787, 3, 168, 84, 0, 2786, 2784, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 2789, 1, 0, 0, 0, 2788, 2782, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 2792, 5, 2, 0, 0, 2791, 2338, 1, 0, 0, 0, 2791, 2340, 1, 0, 0, 0, 2791, 2341, 1, 0, 0, 0, 2791, 2344, 1, 0, 0, 0, 2791, 2347, 1, 0, 0, 0, 2791, 2348, 1, 0, 0, 0, 2791, 2349, 1, 0, 0, 0, 2791, 2350, 1, 0, 0, 0, 2791, 2351, 1, 0, 0, 0, 2791, 2352, 1, 0, 0, 0, 2791, 2359, 1, 0, 0, 0, 2791, 2369, 1, 0, 0, 0, 2791, 2381, 1, 0, 0, 0, 2791, 2416, 1, 0, 0, 0, 2791, 2434, 1, 0, 0, 0, 2791, 2473, 1, 0, 0, 0, 2791, 2476, 1, 0, 0, 0, 2791, 2480, 1, 0, 0, 0, 2791, 2494, 1, 0, 0, 0, 2791, 2498, 1, 0, 0, 0, 2791, 2503, 1, 0, 0, 0, 2791, 2516, 1, 0, 0, 0, 2791, 2528, 1, 0, 0, 0, 2791, 2535, 1, 0, 0, 0, 2791, 2542, 1, 0, 0, 0, 2791, 2555, 1, 0, 0, 0, 2791, 2556, 1, 0, 0, 0, 2791, 2557, 1, 0, 0, 0, 2791, 2563, 1, 0, 0, 0, 2791, 2569, 1, 0, 0, 0, 2791, 2575, 1, 0, 0, 0, 2791, 2581, 1, 0, 0, 0, 2791, 2582, 1, 0, 0, 0, 2791, 2583, 1, 0, 0, 0, 2791, 2584, 1, 0, 0, 0, 2791, 2585, 1, 0, 0, 0, 2791, 2599, 1, 0, 0, 0, 2791, 2606, 1, 0, 0, 0, 2791, 2617, 1, 0, 0, 0, 2791, 2626, 1, 0, 0, 0, 2791, 2633, 1, 0, 0, 0, 2791, 2637, 1, 0, 0, 0, 2791, 2650, 1, 0, 0, 0, 2791, 2661, 1, 0, 0, 0, 2791, 2682, 1, 0, 0, 0, 2791, 2721, 1, 0, 0, 0, 2791, 2762, 1, 0, 0, 0, 2792, 2803, 1, 0, 0, 0, 2793, 2794, 10, 24, 0, 0, 2794, 2795, 5, 8, 0, 0, 2795, 2796, 3, 160, 80, 0, 2796, 2797, 5, 9, 0, 0, 2797, 2802, 1, 0, 0, 0, 2798, 2799, 10, 22, 0, 0, 2799, 2800, 5, 4, 0, 0, 2800, 2802, 3, 314, 157, 0, 2801, 2793, 1, 0, 0, 0, 2801, 2798, 1, 0, 0, 0, 2802, 2805, 1, 0, 0, 0, 2803, 2801, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 163, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2806, 2807, 3, 166, 83, 0, 2807, 2808, 5, 3, 0, 0, 2808, 2811, 3, 186, 93, 0, 2809, 2810, 5, 28, 0, 0, 2810, 2812, 3, 314, 157, 0, 2811, 2809, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2822, 1, 0, 0, 0, 2813, 2814, 5, 203, 0, 0, 2814, 2819, 3, 170, 85, 0, 2815, 2816, 5, 3, 0, 0, 2816, 2818, 3, 170, 85, 0, 2817, 2815, 1, 0, 0, 0, 2818, 2821, 1, 0, 0, 0, 2819, 2817, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2823, 1, 0, 0, 0, 2821, 2819, 1, 0, 0, 0, 2822, 2813, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 165, 1, 0, 0, 0, 2824, 2827, 3, 154, 77, 0, 2825, 2826, 5, 104, 0, 0, 2826, 2828, 3, 168, 84, 0, 2827, 2825, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 167, 1, 0, 0, 0, 2829, 2832, 5, 137, 0, 0, 2830, 2831, 5, 87, 0, 0, 2831, 2833, 7, 20, 0, 0, 2832, 2830, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 169, 1, 0, 0, 0, 2834, 2835, 3, 166, 83, 0, 2835, 2836, 5, 28, 0, 0, 2836, 2837, 3, 314, 157, 0, 2837, 171, 1, 0, 0, 0, 2838, 2839, 7, 21, 0, 0, 2839, 173, 1, 0, 0, 0, 2840, 2845, 5, 89, 0, 0, 2841, 2845, 5, 183, 0, 0, 2842, 2843, 5, 70, 0, 0, 2843, 2845, 3, 154, 77, 0, 2844, 2840, 1, 0, 0, 0, 2844, 2841, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2845, 175, 1, 0, 0, 0, 2846, 2848, 5, 306, 0, 0, 2847, 2849, 5, 27, 0, 0, 2848, 2847, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2858, 1, 0, 0, 0, 2850, 2852, 5, 304, 0, 0, 2851, 2853, 7, 22, 0, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2855, 1, 0, 0, 0, 2854, 2856, 5, 27, 0, 0, 2855, 2854, 1, 0, 0, 0, 2855, 2856, 1, 0, 0, 0, 2856, 2858, 1, 0, 0, 0, 2857, 2846, 1, 0, 0, 0, 2857, 2850, 1, 0, 0, 0, 2858, 177, 1, 0, 0, 0, 2859, 2866, 5, 89, 0, 0, 2860, 2866, 5, 183, 0, 0, 2861, 2862, 5, 85, 0, 0, 2862, 2866, 5, 27, 0, 0, 2863, 2864, 5, 85, 0, 0, 2864, 2866, 5, 186, 0, 0, 2865, 2859, 1, 0, 0, 0, 2865, 2860, 1, 0, 0, 0, 2865, 2861, 1, 0, 0, 0, 2865, 2863, 1, 0, 0, 0, 2866, 179, 1, 0, 0, 0, 2867, 2869, 5, 145, 0, 0, 2868, 2867, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2870, 1, 0, 0, 0, 2870, 2871, 3, 154, 77, 0, 2871, 2872, 5, 295, 0, 0, 2872, 2873, 3, 166, 83, 0, 2873, 2879, 1, 0, 0, 0, 2874, 2875, 3, 154, 77, 0, 2875, 2876, 5, 10, 0, 0, 2876, 2877, 3, 166, 83, 0, 2877, 2879, 1, 0, 0, 0, 2878, 2868, 1, 0, 0, 0, 2878, 2874, 1, 0, 0, 0, 2879, 181, 1, 0, 0, 0, 2880, 2881, 7, 23, 0, 0, 2881, 183, 1, 0, 0, 0, 2882, 2883, 5, 120, 0, 0, 2883, 2887, 5, 185, 0, 0, 2884, 2885, 5, 228, 0, 0, 2885, 2887, 5, 185, 0, 0, 2886, 2882, 1, 0, 0, 0, 2886, 2884, 1, 0, 0, 0, 2887, 185, 1, 0, 0, 0, 2888, 2895, 5, 326, 0, 0, 2889, 2892, 5, 327, 0, 0, 2890, 2891, 5, 277, 0, 0, 2891, 2893, 5, 326, 0, 0, 2892, 2890, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2895, 1, 0, 0, 0, 2894, 2888, 1, 0, 0, 0, 2894, 2889, 1, 0, 0, 0, 2895, 187, 1, 0, 0, 0, 2896, 2897, 5, 267, 0, 0, 2897, 2898, 5, 311, 0, 0, 2898, 2903, 3, 196, 98, 0, 2899, 2900, 5, 267, 0, 0, 2900, 2901, 5, 311, 0, 0, 2901, 2903, 3, 186, 93, 0, 2902, 2896, 1, 0, 0, 0, 2902, 2899, 1, 0, 0, 0, 2903, 189, 1, 0, 0, 0, 2904, 2905, 7, 24, 0, 0, 2905, 191, 1, 0, 0, 0, 2906, 2907, 7, 25, 0, 0, 2907, 193, 1, 0, 0, 0, 2908, 2909, 7, 26, 0, 0, 2909, 195, 1, 0, 0, 0, 2910, 2912, 5, 129, 0, 0, 2911, 2913, 7, 18, 0, 0, 2912, 2911, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2915, 3, 186, 93, 0, 2915, 2918, 3, 198, 99, 0, 2916, 2917, 5, 269, 0, 0, 2917, 2919, 3, 198, 99, 0, 2918, 2916, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 197, 1, 0, 0, 0, 2920, 2921, 7, 27, 0, 0, 2921, 199, 1, 0, 0, 0, 2922, 2923, 7, 28, 0, 0, 2923, 201, 1, 0, 0, 0, 2924, 2925, 6, 101, -1, 0, 2925, 2926, 5, 239, 0, 0, 2926, 2927, 5, 1, 0, 0, 2927, 2932, 3, 204, 102, 0, 2928, 2929, 5, 3, 0, 0, 2929, 2931, 3, 204, 102, 0, 2930, 2928, 1, 0, 0, 0, 2931, 2934, 1, 0, 0, 0, 2932, 2930, 1, 0, 0, 0, 2932, 2933, 1, 0, 0, 0, 2933, 2935, 1, 0, 0, 0, 2934, 2932, 1, 0, 0, 0, 2935, 2936, 5, 2, 0, 0, 2936, 2996, 1, 0, 0, 0, 2937, 2938, 5, 129, 0, 0, 2938, 2941, 3, 198, 99, 0, 2939, 2940, 5, 269, 0, 0, 2940, 2942, 3, 198, 99, 0, 2941, 2939, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2996, 1, 0, 0, 0, 2943, 2948, 5, 268, 0, 0, 2944, 2945, 5, 1, 0, 0, 2945, 2946, 3, 206, 103, 0, 2946, 2947, 5, 2, 0, 0, 2947, 2949, 1, 0, 0, 0, 2948, 2944, 1, 0, 0, 0, 2948, 2949, 1, 0, 0, 0, 2949, 2953, 1, 0, 0, 0, 2950, 2951, 7, 29, 0, 0, 2951, 2952, 5, 267, 0, 0, 2952, 2954, 5, 311, 0, 0, 2953, 2950, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2996, 1, 0, 0, 0, 2955, 2960, 5, 267, 0, 0, 2956, 2957, 5, 1, 0, 0, 2957, 2958, 3, 206, 103, 0, 2958, 2959, 5, 2, 0, 0, 2959, 2961, 1, 0, 0, 0, 2960, 2956, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2965, 1, 0, 0, 0, 2962, 2963, 7, 29, 0, 0, 2963, 2964, 5, 267, 0, 0, 2964, 2966, 5, 311, 0, 0, 2965, 2962, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2996, 1, 0, 0, 0, 2967, 2968, 5, 82, 0, 0, 2968, 2996, 5, 213, 0, 0, 2969, 2970, 5, 27, 0, 0, 2970, 2971, 5, 314, 0, 0, 2971, 2972, 3, 202, 101, 0, 2972, 2973, 5, 316, 0, 0, 2973, 2996, 1, 0, 0, 0, 2974, 2975, 5, 162, 0, 0, 2975, 2976, 5, 314, 0, 0, 2976, 2977, 3, 202, 101, 0, 2977, 2978, 5, 3, 0, 0, 2978, 2979, 3, 202, 101, 0, 2979, 2980, 5, 316, 0, 0, 2980, 2996, 1, 0, 0, 0, 2981, 2993, 3, 314, 157, 0, 2982, 2983, 5, 1, 0, 0, 2983, 2988, 3, 206, 103, 0, 2984, 2985, 5, 3, 0, 0, 2985, 2987, 3, 206, 103, 0, 2986, 2984, 1, 0, 0, 0, 2987, 2990, 1, 0, 0, 0, 2988, 2986, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2991, 1, 0, 0, 0, 2990, 2988, 1, 0, 0, 0, 2991, 2992, 5, 2, 0, 0, 2992, 2994, 1, 0, 0, 0, 2993, 2982, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2996, 1, 0, 0, 0, 2995, 2924, 1, 0, 0, 0, 2995, 2937, 1, 0, 0, 0, 2995, 2943, 1, 0, 0, 0, 2995, 2955, 1, 0, 0, 0, 2995, 2967, 1, 0, 0, 0, 2995, 2969, 1, 0, 0, 0, 2995, 2974, 1, 0, 0, 0, 2995, 2981, 1, 0, 0, 0, 2996, 3006, 1, 0, 0, 0, 2997, 2998, 10, 2, 0, 0, 2998, 3002, 5, 27, 0, 0, 2999, 3000, 5, 8, 0, 0, 3000, 3001, 5, 329, 0, 0, 3001, 3003, 5, 9, 0, 0, 3002, 2999, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3005, 1, 0, 0, 0, 3004, 2997, 1, 0, 0, 0, 3005, 3008, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 203, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3014, 3, 202, 101, 0, 3010, 3011, 3, 314, 157, 0, 3011, 3012, 3, 202, 101, 0, 3012, 3014, 1, 0, 0, 0, 3013, 3009, 1, 0, 0, 0, 3013, 3010, 1, 0, 0, 0, 3014, 205, 1, 0, 0, 0, 3015, 3018, 5, 329, 0, 0, 3016, 3018, 3, 202, 101, 0, 3017, 3015, 1, 0, 0, 0, 3017, 3016, 1, 0, 0, 0, 3018, 207, 1, 0, 0, 0, 3019, 3020, 5, 300, 0, 0, 3020, 3021, 3, 154, 77, 0, 3021, 3022, 5, 265, 0, 0, 3022, 3023, 3, 154, 77, 0, 3023, 209, 1, 0, 0, 0, 3024, 3025, 5, 99, 0, 0, 3025, 3026, 5, 1, 0, 0, 3026, 3027, 3, 54, 27, 0, 3027, 3028, 5, 2, 0, 0, 3028, 211, 1, 0, 0, 0, 3029, 3030, 5, 300, 0, 0, 3030, 3033, 5, 164, 0, 0, 3031, 3032, 5, 25, 0, 0, 3032, 3034, 3, 154, 77, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 5, 265, 0, 0, 3036, 3037, 5, 287, 0, 0, 3037, 3038, 5, 251, 0, 0, 3038, 3039, 3, 314, 157, 0, 3039, 3040, 5, 312, 0, 0, 3040, 3048, 3, 154, 77, 0, 3041, 3042, 5, 3, 0, 0, 3042, 3043, 3, 314, 157, 0, 3043, 3044, 5, 312, 0, 0, 3044, 3045, 3, 154, 77, 0, 3045, 3047, 1, 0, 0, 0, 3046, 3041, 1, 0, 0, 0, 3047, 3050, 1, 0, 0, 0, 3048, 3046, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3094, 1, 0, 0, 0, 3050, 3048, 1, 0, 0, 0, 3051, 3052, 5, 300, 0, 0, 3052, 3055, 5, 164, 0, 0, 3053, 3054, 5, 25, 0, 0, 3054, 3056, 3, 154, 77, 0, 3055, 3053, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3058, 5, 265, 0, 0, 3058, 3094, 5, 73, 0, 0, 3059, 3060, 5, 300, 0, 0, 3060, 3061, 5, 182, 0, 0, 3061, 3064, 5, 164, 0, 0, 3062, 3063, 5, 25, 0, 0, 3063, 3065, 3, 154, 77, 0, 3064, 3062, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3067, 5, 265, 0, 0, 3067, 3079, 5, 127, 0, 0, 3068, 3069, 5, 1, 0, 0, 3069, 3074, 3, 314, 157, 0, 3070, 3071, 5, 3, 0, 0, 3071, 3073, 3, 314, 157, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3076, 1, 0, 0, 0, 3074, 3072, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3077, 1, 0, 0, 0, 3076, 3074, 1, 0, 0, 0, 3077, 3078, 5, 2, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3068, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, 5, 296, 0, 0, 3082, 3083, 5, 1, 0, 0, 3083, 3088, 3, 154, 77, 0, 3084, 3085, 5, 3, 0, 0, 3085, 3087, 3, 154, 77, 0, 3086, 3084, 1, 0, 0, 0, 3087, 3090, 1, 0, 0, 0, 3088, 3086, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3088, 1, 0, 0, 0, 3091, 3092, 5, 2, 0, 0, 3092, 3094, 1, 0, 0, 0, 3093, 3029, 1, 0, 0, 0, 3093, 3051, 1, 0, 0, 0, 3093, 3059, 1, 0, 0, 0, 3094, 213, 1, 0, 0, 0, 3095, 3101, 5, 199, 0, 0, 3096, 3102, 3, 314, 157, 0, 3097, 3098, 5, 1, 0, 0, 3098, 3099, 3, 72, 36, 0, 3099, 3100, 5, 2, 0, 0, 3100, 3102, 1, 0, 0, 0, 3101, 3096, 1, 0, 0, 0, 3101, 3097, 1, 0, 0, 0, 3102, 215, 1, 0, 0, 0, 3103, 3104, 5, 168, 0, 0, 3104, 3109, 3, 106, 53, 0, 3105, 3106, 5, 3, 0, 0, 3106, 3108, 3, 106, 53, 0, 3107, 3105, 1, 0, 0, 0, 3108, 3111, 1, 0, 0, 0, 3109, 3107, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3113, 1, 0, 0, 0, 3111, 3109, 1, 0, 0, 0, 3112, 3103, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3118, 3, 218, 109, 0, 3115, 3116, 5, 21, 0, 0, 3116, 3117, 5, 163, 0, 0, 3117, 3119, 3, 112, 56, 0, 3118, 3115, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3121, 1, 0, 0, 0, 3120, 3122, 7, 13, 0, 0, 3121, 3120, 1, 0, 0, 0, 3121, 3122, 1, 0, 0, 0, 3122, 3128, 1, 0, 0, 0, 3123, 3124, 5, 206, 0, 0, 3124, 3125, 5, 1, 0, 0, 3125, 3126, 3, 222, 111, 0, 3126, 3127, 5, 2, 0, 0, 3127, 3129, 1, 0, 0, 0, 3128, 3123, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3139, 1, 0, 0, 0, 3130, 3131, 5, 257, 0, 0, 3131, 3136, 3, 114, 57, 0, 3132, 3133, 5, 3, 0, 0, 3133, 3135, 3, 114, 57, 0, 3134, 3132, 1, 0, 0, 0, 3135, 3138, 1, 0, 0, 0, 3136, 3134, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3140, 1, 0, 0, 0, 3138, 3136, 1, 0, 0, 0, 3139, 3130, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3150, 1, 0, 0, 0, 3141, 3142, 5, 71, 0, 0, 3142, 3147, 3, 116, 58, 0, 3143, 3144, 5, 3, 0, 0, 3144, 3146, 3, 116, 58, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3149, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3151, 1, 0, 0, 0, 3149, 3147, 1, 0, 0, 0, 3150, 3141, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 217, 1, 0, 0, 0, 3152, 3153, 5, 219, 0, 0, 3153, 3177, 3, 220, 110, 0, 3154, 3155, 5, 240, 0, 0, 3155, 3177, 3, 220, 110, 0, 3156, 3157, 5, 116, 0, 0, 3157, 3177, 3, 220, 110, 0, 3158, 3159, 5, 219, 0, 0, 3159, 3160, 5, 34, 0, 0, 3160, 3161, 3, 220, 110, 0, 3161, 3162, 5, 25, 0, 0, 3162, 3163, 3, 220, 110, 0, 3163, 3177, 1, 0, 0, 0, 3164, 3165, 5, 240, 0, 0, 3165, 3166, 5, 34, 0, 0, 3166, 3167, 3, 220, 110, 0, 3167, 3168, 5, 25, 0, 0, 3168, 3169, 3, 220, 110, 0, 3169, 3177, 1, 0, 0, 0, 3170, 3171, 5, 116, 0, 0, 3171, 3172, 5, 34, 0, 0, 3172, 3173, 3, 220, 110, 0, 3173, 3174, 5, 25, 0, 0, 3174, 3175, 3, 220, 110, 0, 3175, 3177, 1, 0, 0, 0, 3176, 3152, 1, 0, 0, 0, 3176, 3154, 1, 0, 0, 0, 3176, 3156, 1, 0, 0, 0, 3176, 3158, 1, 0, 0, 0, 3176, 3164, 1, 0, 0, 0, 3176, 3170, 1, 0, 0, 0, 3177, 219, 1, 0, 0, 0, 3178, 3179, 5, 278, 0, 0, 3179, 3188, 5, 212, 0, 0, 3180, 3181, 5, 278, 0, 0, 3181, 3188, 5, 102, 0, 0, 3182, 3183, 5, 56, 0, 0, 3183, 3188, 5, 239, 0, 0, 3184, 3185, 3, 154, 77, 0, 3185, 3186, 7, 30, 0, 0, 3186, 3188, 1, 0, 0, 0, 3187, 3178, 1, 0, 0, 0, 3187, 3180, 1, 0, 0, 0, 3187, 3182, 1, 0, 0, 0, 3187, 3184, 1, 0, 0, 0, 3188, 221, 1, 0, 0, 0, 3189, 3190, 6, 111, -1, 0, 3190, 3192, 3, 224, 112, 0, 3191, 3193, 3, 226, 113, 0, 3192, 3191, 1, 0, 0, 0, 3192, 3193, 1, 0, 0, 0, 3193, 3201, 1, 0, 0, 0, 3194, 3195, 10, 2, 0, 0, 3195, 3200, 3, 222, 111, 3, 3196, 3197, 10, 1, 0, 0, 3197, 3198, 5, 11, 0, 0, 3198, 3200, 3, 222, 111, 2, 3199, 3194, 1, 0, 0, 0, 3199, 3196, 1, 0, 0, 0, 3200, 3203, 1, 0, 0, 0, 3201, 3199, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 223, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 3230, 3, 314, 157, 0, 3205, 3206, 5, 1, 0, 0, 3206, 3230, 5, 2, 0, 0, 3207, 3208, 5, 209, 0, 0, 3208, 3209, 5, 1, 0, 0, 3209, 3214, 3, 222, 111, 0, 3210, 3211, 5, 3, 0, 0, 3211, 3213, 3, 222, 111, 0, 3212, 3210, 1, 0, 0, 0, 3213, 3216, 1, 0, 0, 0, 3214, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 1, 0, 0, 0, 3216, 3214, 1, 0, 0, 0, 3217, 3218, 5, 2, 0, 0, 3218, 3230, 1, 0, 0, 0, 3219, 3220, 5, 1, 0, 0, 3220, 3221, 3, 222, 111, 0, 3221, 3222, 5, 2, 0, 0, 3222, 3230, 1, 0, 0, 0, 3223, 3230, 5, 12, 0, 0, 3224, 3230, 5, 13, 0, 0, 3225, 3226, 5, 14, 0, 0, 3226, 3227, 3, 222, 111, 0, 3227, 3228, 5, 15, 0, 0, 3228, 3230, 1, 0, 0, 0, 3229, 3204, 1, 0, 0, 0, 3229, 3205, 1, 0, 0, 0, 3229, 3207, 1, 0, 0, 0, 3229, 3219, 1, 0, 0, 0, 3229, 3223, 1, 0, 0, 0, 3229, 3224, 1, 0, 0, 0, 3229, 3225, 1, 0, 0, 0, 3230, 225, 1, 0, 0, 0, 3231, 3233, 5, 320, 0, 0, 3232, 3234, 5, 324, 0, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3262, 1, 0, 0, 0, 3235, 3237, 5, 318, 0, 0, 3236, 3238, 5, 324, 0, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3262, 1, 0, 0, 0, 3239, 3241, 5, 324, 0, 0, 3240, 3242, 5, 324, 0, 0, 3241, 3240, 1, 0, 0, 0, 3241, 3242, 1, 0, 0, 0, 3242, 3262, 1, 0, 0, 0, 3243, 3244, 5, 16, 0, 0, 3244, 3245, 5, 329, 0, 0, 3245, 3247, 5, 17, 0, 0, 3246, 3248, 5, 324, 0, 0, 3247, 3246, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3262, 1, 0, 0, 0, 3249, 3251, 5, 16, 0, 0, 3250, 3252, 5, 329, 0, 0, 3251, 3250, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 5, 3, 0, 0, 3254, 3256, 5, 329, 0, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3259, 5, 17, 0, 0, 3258, 3260, 5, 324, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 1, 0, 0, 0, 3261, 3231, 1, 0, 0, 0, 3261, 3235, 1, 0, 0, 0, 3261, 3239, 1, 0, 0, 0, 3261, 3243, 1, 0, 0, 0, 3261, 3249, 1, 0, 0, 0, 3262, 227, 1, 0, 0, 0, 3263, 3264, 3, 314, 157, 0, 3264, 3265, 5, 312, 0, 0, 3265, 3266, 3, 154, 77, 0, 3266, 229, 1, 0, 0, 0, 3267, 3268, 5, 104, 0, 0, 3268, 3272, 7, 31, 0, 0, 3269, 3270, 5, 276, 0, 0, 3270, 3272, 7, 32, 0, 0, 3271, 3267, 1, 0, 0, 0, 3271, 3269, 1, 0, 0, 0, 3272, 231, 1, 0, 0, 0, 3273, 3274, 5, 134, 0, 0, 3274, 3275, 5, 153, 0, 0, 3275, 3279, 3, 234, 117, 0, 3276, 3277, 5, 220, 0, 0, 3277, 3279, 7, 33, 0, 0, 3278, 3273, 1, 0, 0, 0, 3278, 3276, 1, 0, 0, 0, 3279, 233, 1, 0, 0, 0, 3280, 3281, 5, 220, 0, 0, 3281, 3288, 5, 279, 0, 0, 3282, 3283, 5, 220, 0, 0, 3283, 3288, 5, 48, 0, 0, 3284, 3285, 5, 225, 0, 0, 3285, 3288, 5, 220, 0, 0, 3286, 3288, 5, 249, 0, 0, 3287, 3280, 1, 0, 0, 0, 3287, 3282, 1, 0, 0, 0, 3287, 3284, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3288, 235, 1, 0, 0, 0, 3289, 3295, 3, 154, 77, 0, 3290, 3291, 3, 314, 157, 0, 3291, 3292, 5, 6, 0, 0, 3292, 3293, 3, 154, 77, 0, 3293, 3295, 1, 0, 0, 0, 3294, 3289, 1, 0, 0, 0, 3294, 3290, 1, 0, 0, 0, 3295, 237, 1, 0, 0, 0, 3296, 3297, 3, 314, 157, 0, 3297, 3298, 5, 4, 0, 0, 3298, 3299, 3, 314, 157, 0, 3299, 3302, 1, 0, 0, 0, 3300, 3302, 3, 314, 157, 0, 3301, 3296, 1, 0, 0, 0, 3301, 3300, 1, 0, 0, 0, 3302, 239, 1, 0, 0, 0, 3303, 3308, 3, 238, 119, 0, 3304, 3305, 5, 3, 0, 0, 3305, 3307, 3, 238, 119, 0, 3306, 3304, 1, 0, 0, 0, 3307, 3310, 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 241, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3311, 3312, 5, 107, 0, 0, 3312, 3313, 3, 244, 122, 0, 3313, 3317, 3, 250, 125, 0, 3314, 3316, 3, 252, 126, 0, 3315, 3314, 1, 0, 0, 0, 3316, 3319, 1, 0, 0, 0, 3317, 3315, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3317, 1, 0, 0, 0, 3320, 3321, 3, 254, 127, 0, 3321, 243, 1, 0, 0, 0, 3322, 3323, 3, 292, 146, 0, 3323, 3332, 5, 1, 0, 0, 3324, 3329, 3, 248, 124, 0, 3325, 3326, 5, 3, 0, 0, 3326, 3328, 3, 248, 124, 0, 3327, 3325, 1, 0, 0, 0, 3328, 3331, 1, 0, 0, 0, 3329, 3327, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3333, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3332, 3324, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 5, 2, 0, 0, 3335, 245, 1, 0, 0, 0, 3336, 3337, 3, 290, 145, 0, 3337, 3346, 5, 1, 0, 0, 3338, 3343, 3, 248, 124, 0, 3339, 3340, 5, 3, 0, 0, 3340, 3342, 3, 248, 124, 0, 3341, 3339, 1, 0, 0, 0, 3342, 3345, 1, 0, 0, 0, 3343, 3341, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3347, 1, 0, 0, 0, 3345, 3343, 1, 0, 0, 0, 3346, 3338, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 5, 2, 0, 0, 3349, 247, 1, 0, 0, 0, 3350, 3352, 3, 314, 157, 0, 3351, 3350, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 3, 202, 101, 0, 3354, 249, 1, 0, 0, 0, 3355, 3356, 5, 232, 0, 0, 3356, 3357, 3, 202, 101, 0, 3357, 251, 1, 0, 0, 0, 3358, 3359, 5, 147, 0, 0, 3359, 3378, 3, 314, 157, 0, 3360, 3362, 5, 182, 0, 0, 3361, 3360, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3378, 5, 78, 0, 0, 3364, 3365, 5, 232, 0, 0, 3365, 3366, 5, 183, 0, 0, 3366, 3367, 5, 190, 0, 0, 3367, 3368, 5, 183, 0, 0, 3368, 3378, 5, 126, 0, 0, 3369, 3370, 5, 38, 0, 0, 3370, 3371, 5, 190, 0, 0, 3371, 3372, 5, 183, 0, 0, 3372, 3378, 5, 126, 0, 0, 3373, 3374, 5, 246, 0, 0, 3374, 3378, 7, 1, 0, 0, 3375, 3376, 5, 46, 0, 0, 3376, 3378, 3, 186, 93, 0, 3377, 3358, 1, 0, 0, 0, 3377, 3361, 1, 0, 0, 0, 3377, 3364, 1, 0, 0, 0, 3377, 3369, 1, 0, 0, 0, 3377, 3373, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3378, 253, 1, 0, 0, 0, 3379, 3380, 5, 230, 0, 0, 3380, 3479, 3, 160, 80, 0, 3381, 3382, 5, 251, 0, 0, 3382, 3383, 3, 314, 157, 0, 3383, 3384, 5, 312, 0, 0, 3384, 3385, 3, 154, 77, 0, 3385, 3479, 1, 0, 0, 0, 3386, 3387, 5, 40, 0, 0, 3387, 3389, 3, 154, 77, 0, 3388, 3390, 3, 256, 128, 0, 3389, 3388, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3389, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3394, 1, 0, 0, 0, 3393, 3395, 3, 260, 130, 0, 3394, 3393, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3397, 5, 88, 0, 0, 3397, 3398, 5, 40, 0, 0, 3398, 3479, 1, 0, 0, 0, 3399, 3401, 5, 40, 0, 0, 3400, 3402, 3, 256, 128, 0, 3401, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3406, 1, 0, 0, 0, 3405, 3407, 3, 260, 130, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3409, 5, 88, 0, 0, 3409, 3410, 5, 40, 0, 0, 3410, 3479, 1, 0, 0, 0, 3411, 3412, 5, 119, 0, 0, 3412, 3413, 3, 154, 77, 0, 3413, 3414, 5, 265, 0, 0, 3414, 3418, 3, 264, 132, 0, 3415, 3417, 3, 258, 129, 0, 3416, 3415, 1, 0, 0, 0, 3417, 3420, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3422, 1, 0, 0, 0, 3420, 3418, 1, 0, 0, 0, 3421, 3423, 3, 260, 130, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 5, 88, 0, 0, 3425, 3426, 5, 119, 0, 0, 3426, 3479, 1, 0, 0, 0, 3427, 3428, 5, 135, 0, 0, 3428, 3479, 3, 314, 157, 0, 3429, 3430, 5, 151, 0, 0, 3430, 3479, 3, 314, 157, 0, 3431, 3437, 5, 32, 0, 0, 3432, 3433, 3, 262, 131, 0, 3433, 3434, 5, 325, 0, 0, 3434, 3436, 1, 0, 0, 0, 3435, 3432, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3441, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3442, 3, 264, 132, 0, 3441, 3440, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3479, 5, 88, 0, 0, 3444, 3445, 3, 314, 157, 0, 3445, 3446, 5, 10, 0, 0, 3446, 3448, 1, 0, 0, 0, 3447, 3444, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 3449, 1, 0, 0, 0, 3449, 3450, 5, 161, 0, 0, 3450, 3451, 3, 264, 132, 0, 3451, 3452, 5, 88, 0, 0, 3452, 3453, 5, 161, 0, 0, 3453, 3479, 1, 0, 0, 0, 3454, 3455, 3, 314, 157, 0, 3455, 3456, 5, 10, 0, 0, 3456, 3458, 1, 0, 0, 0, 3457, 3454, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3460, 5, 302, 0, 0, 3460, 3461, 3, 154, 77, 0, 3461, 3462, 5, 81, 0, 0, 3462, 3463, 3, 264, 132, 0, 3463, 3464, 5, 88, 0, 0, 3464, 3465, 5, 302, 0, 0, 3465, 3479, 1, 0, 0, 0, 3466, 3467, 3, 314, 157, 0, 3467, 3468, 5, 10, 0, 0, 3468, 3470, 1, 0, 0, 0, 3469, 3466, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3472, 5, 224, 0, 0, 3472, 3473, 3, 264, 132, 0, 3473, 3474, 5, 286, 0, 0, 3474, 3475, 3, 154, 77, 0, 3475, 3476, 5, 88, 0, 0, 3476, 3477, 5, 224, 0, 0, 3477, 3479, 1, 0, 0, 0, 3478, 3379, 1, 0, 0, 0, 3478, 3381, 1, 0, 0, 0, 3478, 3386, 1, 0, 0, 0, 3478, 3399, 1, 0, 0, 0, 3478, 3411, 1, 0, 0, 0, 3478, 3427, 1, 0, 0, 0, 3478, 3429, 1, 0, 0, 0, 3478, 3431, 1, 0, 0, 0, 3478, 3447, 1, 0, 0, 0, 3478, 3457, 1, 0, 0, 0, 3478, 3469, 1, 0, 0, 0, 3479, 255, 1, 0, 0, 0, 3480, 3481, 5, 300, 0, 0, 3481, 3482, 3, 154, 77, 0, 3482, 3483, 5, 265, 0, 0, 3483, 3484, 3, 264, 132, 0, 3484, 257, 1, 0, 0, 0, 3485, 3486, 5, 86, 0, 0, 3486, 3487, 3, 154, 77, 0, 3487, 3488, 5, 265, 0, 0, 3488, 3489, 3, 264, 132, 0, 3489, 259, 1, 0, 0, 0, 3490, 3491, 5, 84, 0, 0, 3491, 3492, 3, 264, 132, 0, 3492, 261, 1, 0, 0, 0, 3493, 3494, 5, 69, 0, 0, 3494, 3499, 3, 314, 157, 0, 3495, 3496, 5, 3, 0, 0, 3496, 3498, 3, 314, 157, 0, 3497, 3495, 1, 0, 0, 0, 3498, 3501, 1, 0, 0, 0, 3499, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 1, 0, 0, 0, 3501, 3499, 1, 0, 0, 0, 3502, 3505, 3, 202, 101, 0, 3503, 3504, 5, 70, 0, 0, 3504, 3506, 3, 160, 80, 0, 3505, 3503, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 263, 1, 0, 0, 0, 3507, 3508, 3, 254, 127, 0, 3508, 3509, 5, 325, 0, 0, 3509, 3511, 1, 0, 0, 0, 3510, 3507, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3510, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 265, 1, 0, 0, 0, 3514, 3521, 5, 53, 0, 0, 3515, 3521, 5, 248, 0, 0, 3516, 3521, 5, 73, 0, 0, 3517, 3521, 5, 127, 0, 0, 3518, 3521, 5, 287, 0, 0, 3519, 3521, 3, 314, 157, 0, 3520, 3514, 1, 0, 0, 0, 3520, 3515, 1, 0, 0, 0, 3520, 3516, 1, 0, 0, 0, 3520, 3517, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3520, 3519, 1, 0, 0, 0, 3521, 267, 1, 0, 0, 0, 3522, 3526, 5, 260, 0, 0, 3523, 3526, 5, 243, 0, 0, 3524, 3526, 3, 314, 157, 0, 3525, 3522, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3525, 3524, 1, 0, 0, 0, 3526, 269, 1, 0, 0, 0, 3527, 3529, 3, 268, 134, 0, 3528, 3527, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 3, 300, 150, 0, 3531, 271, 1, 0, 0, 0, 3532, 3535, 3, 274, 137, 0, 3533, 3535, 3, 278, 139, 0, 3534, 3532, 1, 0, 0, 0, 3534, 3533, 1, 0, 0, 0, 3535, 273, 1, 0, 0, 0, 3536, 3548, 3, 314, 157, 0, 3537, 3538, 3, 314, 157, 0, 3538, 3539, 5, 4, 0, 0, 3539, 3540, 3, 314, 157, 0, 3540, 3548, 1, 0, 0, 0, 3541, 3542, 3, 314, 157, 0, 3542, 3543, 5, 4, 0, 0, 3543, 3544, 3, 314, 157, 0, 3544, 3545, 5, 4, 0, 0, 3545, 3546, 3, 314, 157, 0, 3546, 3548, 1, 0, 0, 0, 3547, 3536, 1, 0, 0, 0, 3547, 3537, 1, 0, 0, 0, 3547, 3541, 1, 0, 0, 0, 3548, 275, 1, 0, 0, 0, 3549, 3561, 3, 314, 157, 0, 3550, 3551, 3, 314, 157, 0, 3551, 3552, 5, 4, 0, 0, 3552, 3553, 3, 314, 157, 0, 3553, 3561, 1, 0, 0, 0, 3554, 3555, 3, 314, 157, 0, 3555, 3556, 5, 4, 0, 0, 3556, 3557, 3, 314, 157, 0, 3557, 3558, 5, 4, 0, 0, 3558, 3559, 3, 314, 157, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3549, 1, 0, 0, 0, 3560, 3550, 1, 0, 0, 0, 3560, 3554, 1, 0, 0, 0, 3561, 277, 1, 0, 0, 0, 3562, 3574, 3, 314, 157, 0, 3563, 3564, 3, 314, 157, 0, 3564, 3565, 5, 4, 0, 0, 3565, 3566, 3, 314, 157, 0, 3566, 3574, 1, 0, 0, 0, 3567, 3568, 3, 314, 157, 0, 3568, 3569, 5, 4, 0, 0, 3569, 3570, 3, 314, 157, 0, 3570, 3571, 5, 4, 0, 0, 3571, 3572, 3, 314, 157, 0, 3572, 3574, 1, 0, 0, 0, 3573, 3562, 1, 0, 0, 0, 3573, 3563, 1, 0, 0, 0, 3573, 3567, 1, 0, 0, 0, 3574, 279, 1, 0, 0, 0, 3575, 3587, 3, 314, 157, 0, 3576, 3577, 3, 314, 157, 0, 3577, 3578, 5, 4, 0, 0, 3578, 3579, 3, 314, 157, 0, 3579, 3587, 1, 0, 0, 0, 3580, 3581, 3, 314, 157, 0, 3581, 3582, 5, 4, 0, 0, 3582, 3583, 3, 314, 157, 0, 3583, 3584, 5, 4, 0, 0, 3584, 3585, 3, 314, 157, 0, 3585, 3587, 1, 0, 0, 0, 3586, 3575, 1, 0, 0, 0, 3586, 3576, 1, 0, 0, 0, 3586, 3580, 1, 0, 0, 0, 3587, 281, 1, 0, 0, 0, 3588, 3594, 3, 314, 157, 0, 3589, 3590, 3, 314, 157, 0, 3590, 3591, 5, 4, 0, 0, 3591, 3592, 3, 314, 157, 0, 3592, 3594, 1, 0, 0, 0, 3593, 3588, 1, 0, 0, 0, 3593, 3589, 1, 0, 0, 0, 3594, 283, 1, 0, 0, 0, 3595, 3601, 3, 314, 157, 0, 3596, 3597, 3, 314, 157, 0, 3597, 3598, 5, 4, 0, 0, 3598, 3599, 3, 314, 157, 0, 3599, 3601, 1, 0, 0, 0, 3600, 3595, 1, 0, 0, 0, 3600, 3596, 1, 0, 0, 0, 3601, 285, 1, 0, 0, 0, 3602, 3603, 3, 314, 157, 0, 3603, 287, 1, 0, 0, 0, 3604, 3605, 3, 314, 157, 0, 3605, 289, 1, 0, 0, 0, 3606, 3607, 3, 300, 150, 0, 3607, 291, 1, 0, 0, 0, 3608, 3609, 3, 300, 150, 0, 3609, 293, 1, 0, 0, 0, 3610, 3613, 3, 300, 150, 0, 3611, 3613, 4, 147, 14, 0, 3612, 3610, 1, 0, 0, 0, 3612, 3611, 1, 0, 0, 0, 3613, 295, 1, 0, 0, 0, 3614, 3615, 3, 300, 150, 0, 3615, 297, 1, 0, 0, 0, 3616, 3617, 3, 314, 157, 0, 3617, 299, 1, 0, 0, 0, 3618, 3623, 3, 314, 157, 0, 3619, 3620, 5, 4, 0, 0, 3620, 3622, 3, 314, 157, 0, 3621, 3619, 1, 0, 0, 0, 3622, 3625, 1, 0, 0, 0, 3623, 3621, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 301, 1, 0, 0, 0, 3625, 3623, 1, 0, 0, 0, 3626, 3627, 5, 103, 0, 0, 3627, 3628, 3, 304, 152, 0, 3628, 3629, 5, 28, 0, 0, 3629, 3630, 5, 187, 0, 0, 3630, 3631, 3, 160, 80, 0, 3631, 303, 1, 0, 0, 0, 3632, 3633, 7, 34, 0, 0, 3633, 305, 1, 0, 0, 0, 3634, 3638, 3, 308, 154, 0, 3635, 3638, 5, 64, 0, 0, 3636, 3638, 5, 60, 0, 0, 3637, 3634, 1, 0, 0, 0, 3637, 3635, 1, 0, 0, 0, 3637, 3636, 1, 0, 0, 0, 3638, 307, 1, 0, 0, 0, 3639, 3645, 3, 314, 157, 0, 3640, 3641, 5, 289, 0, 0, 3641, 3645, 3, 314, 157, 0, 3642, 3643, 5, 235, 0, 0, 3643, 3645, 3, 314, 157, 0, 3644, 3639, 1, 0, 0, 0, 3644, 3640, 1, 0, 0, 0, 3644, 3642, 1, 0, 0, 0, 3645, 309, 1, 0, 0, 0, 3646, 3651, 3, 314, 157, 0, 3647, 3648, 5, 3, 0, 0, 3648, 3650, 3, 314, 157, 0, 3649, 3647, 1, 0, 0, 0, 3650, 3653, 1, 0, 0, 0, 3651, 3649, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 311, 1, 0, 0, 0, 3653, 3651, 1, 0, 0, 0, 3654, 3662, 5, 53, 0, 0, 3655, 3662, 5, 248, 0, 0, 3656, 3662, 5, 73, 0, 0, 3657, 3662, 5, 127, 0, 0, 3658, 3662, 5, 287, 0, 0, 3659, 3662, 5, 93, 0, 0, 3660, 3662, 3, 314, 157, 0, 3661, 3654, 1, 0, 0, 0, 3661, 3655, 1, 0, 0, 0, 3661, 3656, 1, 0, 0, 0, 3661, 3657, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3661, 3659, 1, 0, 0, 0, 3661, 3660, 1, 0, 0, 0, 3662, 313, 1, 0, 0, 0, 3663, 3669, 5, 332, 0, 0, 3664, 3669, 5, 334, 0, 0, 3665, 3669, 3, 320, 160, 0, 3666, 3669, 5, 335, 0, 0, 3667, 3669, 5, 333, 0, 0, 3668, 3663, 1, 0, 0, 0, 3668, 3664, 1, 0, 0, 0, 3668, 3665, 1, 0, 0, 0, 3668, 3666, 1, 0, 0, 0, 3668, 3667, 1, 0, 0, 0, 3669, 315, 1, 0, 0, 0, 3670, 3672, 5, 319, 0, 0, 3671, 3670, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3683, 5, 330, 0, 0, 3674, 3676, 5, 319, 0, 0, 3675, 3674, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3683, 5, 331, 0, 0, 3678, 3680, 5, 319, 0, 0, 3679, 3678, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3683, 5, 329, 0, 0, 3682, 3671, 1, 0, 0, 0, 3682, 3675, 1, 0, 0, 0, 3682, 3679, 1, 0, 0, 0, 3683, 317, 1, 0, 0, 0, 3684, 3687, 3, 314, 157, 0, 3685, 3687, 3, 186, 93, 0, 3686, 3684, 1, 0, 0, 0, 3686, 3685, 1, 0, 0, 0, 3687, 319, 1, 0, 0, 0, 3688, 3689, 7, 35, 0, 0, 3689, 321, 1, 0, 0, 0, 477, 325, 334, 338, 342, 346, 350, 363, 370, 374, 378, 384, 388, 395, 400, 404, 410, 414, 433, 439, 443, 447, 451, 459, 463, 466, 471, 477, 486, 492, 496, 502, 509, 517, 529, 538, 547, 553, 564, 572, 580, 587, 597, 604, 612, 627, 662, 665, 668, 671, 677, 682, 689, 695, 699, 703, 711, 717, 721, 725, 739, 747, 766, 791, 794, 801, 808, 817, 821, 828, 836, 845, 851, 856, 860, 868, 873, 882, 888, 895, 904, 910, 914, 920, 927, 932, 945, 950, 962, 966, 972, 981, 986, 992, 1020, 1026, 1028, 1034, 1040, 1042, 1050, 1052, 1062, 1064, 1079, 1084, 1091, 1101, 1107, 1109, 1117, 1119, 1144, 1147, 1151, 1155, 1173, 1176, 1187, 1190, 1206, 1216, 1220, 1226, 1229, 1238, 1250, 1253, 1263, 1267, 1273, 1280, 1285, 1291, 1295, 1299, 1305, 1316, 1325, 1335, 1338, 1343, 1345, 1352, 1358, 1360, 1364, 1374, 1380, 1383, 1385, 1397, 1404, 1408, 1411, 1415, 1419, 1428, 1431, 1434, 1439, 1442, 1450, 1453, 1466, 1470, 1477, 1485, 1496, 1499, 1509, 1512, 1523, 1528, 1536, 1539, 1543, 1547, 1556, 1561, 1570, 1573, 1576, 1580, 1591, 1594, 1597, 1602, 1605, 1634, 1638, 1642, 1646, 1650, 1654, 1656, 1667, 1672, 1681, 1690, 1693, 1699, 1707, 1716, 1719, 1727, 1730, 1733, 1738, 1741, 1753, 1756, 1764, 1769, 1773, 1775, 1777, 1792, 1794, 1805, 1826, 1836, 1847, 1851, 1853, 1861, 1872, 1883, 1890, 1897, 1910, 1916, 1938, 1953, 1958, 1962, 1972, 1978, 1984, 1992, 1997, 2004, 2006, 2012, 2018, 2022, 2027, 2036, 2041, 2055, 2065, 2068, 2077, 2082, 2087, 2089, 2098, 2101, 2109, 2112, 2119, 2124, 2131, 2135, 2137, 2145, 2155, 2161, 2163, 2170, 2174, 2176, 2183, 2187, 2189, 2191, 2200, 2211, 2215, 2225, 2235, 2239, 2247, 2249, 2262, 2270, 2279, 2285, 2293, 2299, 2303, 2308, 2313, 2319, 2333, 2335, 2365, 2376, 2384, 2389, 2394, 2407, 2413, 2416, 2423, 2428, 2431, 2434, 2439, 2446, 2449, 2458, 2461, 2465, 2468, 2471, 2486, 2489, 2508, 2512, 2520, 2524, 2549, 2552, 2561, 2567, 2573, 2579, 2588, 2591, 2594, 2613, 2622, 2644, 2647, 2657, 2666, 2672, 2678, 2689, 2691, 2696, 2703, 2705, 2711, 2717, 2728, 2737, 2742, 2747, 2749, 2751, 2757, 2759, 2769, 2778, 2780, 2786, 2788, 2791, 2801, 2803, 2811, 2819, 2822, 2827, 2832, 2844, 2848, 2852, 2855, 2857, 2865, 2868, 2878, 2886, 2892, 2894, 2902, 2912, 2918, 2932, 2941, 2948, 2953, 2960, 2965, 2988, 2993, 2995, 3002, 3006, 3013, 3017, 3033, 3048, 3055, 3064, 3074, 3079, 3088, 3093, 3101, 3109, 3112, 3118, 3121, 3128, 3136, 3139, 3147, 3150, 3176, 3187, 3192, 3199, 3201, 3214, 3229, 3233, 3237, 3241, 3247, 3251, 3255, 3259, 3261, 3271, 3278, 3287, 3294, 3301, 3308, 3317, 3329, 3332, 3343, 3346, 3351, 3361, 3377, 3391, 3394, 3403, 3406, 3418, 3422, 3437, 3441, 3447, 3457, 3469, 3478, 3499, 3505, 3512, 3520, 3525, 3528, 3534, 3547, 3560, 3573, 3586, 3593, 3600, 3612, 3623, 3637, 3644, 3651, 3661, 3668, 3671, 3675, 3679, 3682, 3686] \ No newline at end of file diff --git a/src/lib/trino/TrinoSqlListener.ts b/src/lib/trino/TrinoSqlListener.ts index a81240f0..1ec7fe81 100644 --- a/src/lib/trino/TrinoSqlListener.ts +++ b/src/lib/trino/TrinoSqlListener.ts @@ -125,6 +125,7 @@ import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; import { WhereClauseContext } from "./TrinoSqlParser.js"; import { HavingClauseContext } from "./TrinoSqlParser.js"; +import { SelectListContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; import { PartitionByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; @@ -137,8 +138,11 @@ import { WindowDefinitionContext } from "./TrinoSqlParser.js"; import { WindowSpecificationContext } from "./TrinoSqlParser.js"; import { NamedQueryContext } from "./TrinoSqlParser.js"; import { SetQuantifierContext } from "./TrinoSqlParser.js"; -import { SelectSingleContext } from "./TrinoSqlParser.js"; -import { SelectAllContext } from "./TrinoSqlParser.js"; +import { SelectItemContext } from "./TrinoSqlParser.js"; +import { SelectAllWithoutTableContext } from "./TrinoSqlParser.js"; +import { TableAllColumnsContext } from "./TrinoSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./TrinoSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./TrinoSqlParser.js"; import { RelationDefaultContext } from "./TrinoSqlParser.js"; import { JoinRelationContext } from "./TrinoSqlParser.js"; import { JoinTypeContext } from "./TrinoSqlParser.js"; @@ -160,11 +164,12 @@ import { ColumnListCreateContext } from "./TrinoSqlParser.js"; import { ColumnListContext } from "./TrinoSqlParser.js"; import { ColumnAliasesContext } from "./TrinoSqlParser.js"; import { TableNameContext } from "./TrinoSqlParser.js"; +import { ExpressionSourceTableContext } from "./TrinoSqlParser.js"; +import { ParenthesizedRelationContext } from "./TrinoSqlParser.js"; import { SubqueryRelationContext } from "./TrinoSqlParser.js"; import { UnnestContext } from "./TrinoSqlParser.js"; import { LateralContext } from "./TrinoSqlParser.js"; import { TableFunctionInvocationContext } from "./TrinoSqlParser.js"; -import { ParenthesizedRelationContext } from "./TrinoSqlParser.js"; import { JsonTableContext } from "./TrinoSqlParser.js"; import { OrdinalityColumnContext } from "./TrinoSqlParser.js"; import { ValueColumnContext } from "./TrinoSqlParser.js"; @@ -1745,6 +1750,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitHavingClause?: (ctx: HavingClauseContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree @@ -1874,29 +1889,55 @@ export class TrinoSqlListener implements ParseTreeListener { */ exitSetQuantifier?: (ctx: SetQuantifierContext) => void; /** - * Enter a parse tree produced by the `selectSingle` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Enter a parse tree produced by `TrinoSqlParser.selectItem`. + * @param ctx the parse tree + */ + enterSelectItem?: (ctx: SelectItemContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectItem`. + * @param ctx the parse tree + */ + exitSelectItem?: (ctx: SelectItemContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.selectAllWithoutTable`. + * @param ctx the parse tree + */ + enterSelectAllWithoutTable?: (ctx: SelectAllWithoutTableContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectAllWithoutTable`. * @param ctx the parse tree */ - enterSelectSingle?: (ctx: SelectSingleContext) => void; + exitSelectAllWithoutTable?: (ctx: SelectAllWithoutTableContext) => void; /** - * Exit a parse tree produced by the `selectSingle` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Enter a parse tree produced by `TrinoSqlParser.tableAllColumns`. * @param ctx the parse tree */ - exitSelectSingle?: (ctx: SelectSingleContext) => void; + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** - * Enter a parse tree produced by the `selectAll` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Exit a parse tree produced by `TrinoSqlParser.tableAllColumns`. * @param ctx the parse tree */ - enterSelectAll?: (ctx: SelectAllContext) => void; + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** - * Exit a parse tree produced by the `selectAll` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Enter a parse tree produced by `TrinoSqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - exitSelectAll?: (ctx: SelectAllContext) => void; + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; /** * Enter a parse tree produced by the `relationDefault` * labeled alternative in `TrinoSqlParser.relation`. @@ -2114,74 +2155,86 @@ export class TrinoSqlListener implements ParseTreeListener { */ exitTableName?: (ctx: TableNameContext) => void; /** - * Enter a parse tree produced by the `subqueryRelation` + * Enter a parse tree produced by the `expressionSourceTable` + * labeled alternative in `TrinoSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterExpressionSourceTable?: (ctx: ExpressionSourceTableContext) => void; + /** + * Exit a parse tree produced by the `expressionSourceTable` + * labeled alternative in `TrinoSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitExpressionSourceTable?: (ctx: ExpressionSourceTableContext) => void; + /** + * Enter a parse tree produced by the `parenthesizedRelation` * labeled alternative in `TrinoSqlParser.relationPrimary`. * @param ctx the parse tree */ + enterParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => void; + /** + * Exit a parse tree produced by the `parenthesizedRelation` + * labeled alternative in `TrinoSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => void; + /** + * Enter a parse tree produced by the `subqueryRelation` + * labeled alternative in `TrinoSqlParser.relationSourceTable`. + * @param ctx the parse tree + */ enterSubqueryRelation?: (ctx: SubqueryRelationContext) => void; /** * Exit a parse tree produced by the `subqueryRelation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitSubqueryRelation?: (ctx: SubqueryRelationContext) => void; /** * Enter a parse tree produced by the `unnest` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ enterUnnest?: (ctx: UnnestContext) => void; /** * Exit a parse tree produced by the `unnest` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitUnnest?: (ctx: UnnestContext) => void; /** * Enter a parse tree produced by the `lateral` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ enterLateral?: (ctx: LateralContext) => void; /** * Exit a parse tree produced by the `lateral` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitLateral?: (ctx: LateralContext) => void; /** * Enter a parse tree produced by the `tableFunctionInvocation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ enterTableFunctionInvocation?: (ctx: TableFunctionInvocationContext) => void; /** * Exit a parse tree produced by the `tableFunctionInvocation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitTableFunctionInvocation?: (ctx: TableFunctionInvocationContext) => void; - /** - * Enter a parse tree produced by the `parenthesizedRelation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. - * @param ctx the parse tree - */ - enterParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => void; - /** - * Exit a parse tree produced by the `parenthesizedRelation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. - * @param ctx the parse tree - */ - exitParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => void; /** * Enter a parse tree produced by the `jsonTable` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ enterJsonTable?: (ctx: JsonTableContext) => void; /** * Exit a parse tree produced by the `jsonTable` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitJsonTable?: (ctx: JsonTableContext) => void; diff --git a/src/lib/trino/TrinoSqlParser.ts b/src/lib/trino/TrinoSqlParser.ts index f83c1af0..1c9e2c57 100644 --- a/src/lib/trino/TrinoSqlParser.ts +++ b/src/lib/trino/TrinoSqlParser.ts @@ -386,132 +386,138 @@ export class TrinoSqlParser extends SQLParserBase { public static readonly RULE_querySpecification = 26; public static readonly RULE_whereClause = 27; public static readonly RULE_havingClause = 28; - public static readonly RULE_groupBy = 29; - public static readonly RULE_partitionBy = 30; - public static readonly RULE_groupingElement = 31; - public static readonly RULE_groupingSet = 32; - public static readonly RULE_groupingTerm = 33; - public static readonly RULE_windowDefinition = 34; - public static readonly RULE_windowSpecification = 35; - public static readonly RULE_namedQuery = 36; - public static readonly RULE_setQuantifier = 37; - public static readonly RULE_selectItem = 38; - public static readonly RULE_relation = 39; - public static readonly RULE_joinType = 40; - public static readonly RULE_joinCriteria = 41; - public static readonly RULE_sampledRelation = 42; - public static readonly RULE_sampleType = 43; - public static readonly RULE_trimsSpecification = 44; - public static readonly RULE_listAggOverflowBehavior = 45; - public static readonly RULE_listAggCountIndication = 46; - public static readonly RULE_patternRecognition = 47; - public static readonly RULE_measureDefinition = 48; - public static readonly RULE_rowsPerMatch = 49; - public static readonly RULE_emptyMatchHandling = 50; - public static readonly RULE_skipTo = 51; - public static readonly RULE_subsetDefinition = 52; - public static readonly RULE_variableDefinition = 53; - public static readonly RULE_aliasedRelation = 54; - public static readonly RULE_columnListCreate = 55; - public static readonly RULE_columnList = 56; - public static readonly RULE_columnAliases = 57; - public static readonly RULE_relationPrimary = 58; - public static readonly RULE_jsonTableColumn = 59; - public static readonly RULE_jsonTableSpecificPlan = 60; - public static readonly RULE_jsonTablePathName = 61; - public static readonly RULE_planPrimary = 62; - public static readonly RULE_jsonTableDefaultPlan = 63; - public static readonly RULE_tableFunctionCall = 64; - public static readonly RULE_tableFunctionArgument = 65; - public static readonly RULE_tableArgument = 66; - public static readonly RULE_tableArgumentRelation = 67; - public static readonly RULE_descriptorArgument = 68; - public static readonly RULE_descriptorField = 69; - public static readonly RULE_coPartitionTables = 70; - public static readonly RULE_expression = 71; - public static readonly RULE_booleanExpression = 72; - public static readonly RULE_predicate = 73; - public static readonly RULE_valueExpression = 74; - public static readonly RULE_primaryExpression = 75; - public static readonly RULE_jsonPathInvocation = 76; - public static readonly RULE_jsonValueExpression = 77; - public static readonly RULE_jsonRepresentation = 78; - public static readonly RULE_jsonArgument = 79; - public static readonly RULE_jsonExistsErrorBehavior = 80; - public static readonly RULE_jsonValueBehavior = 81; - public static readonly RULE_jsonQueryWrapperBehavior = 82; - public static readonly RULE_jsonQueryBehavior = 83; - public static readonly RULE_jsonObjectMember = 84; - public static readonly RULE_processingMode = 85; - public static readonly RULE_nullTreatment = 86; - public static readonly RULE_string = 87; - public static readonly RULE_timeZoneSpecifier = 88; - public static readonly RULE_comparisonOperator = 89; - public static readonly RULE_comparisonQuantifier = 90; - public static readonly RULE_booleanValue = 91; - public static readonly RULE_interval = 92; - public static readonly RULE_intervalField = 93; - public static readonly RULE_normalForm = 94; - public static readonly RULE_type = 95; - public static readonly RULE_rowField = 96; - public static readonly RULE_typeParameter = 97; - public static readonly RULE_whenClause = 98; - public static readonly RULE_filter = 99; - public static readonly RULE_mergeCase = 100; - public static readonly RULE_over = 101; - public static readonly RULE_windowFrame = 102; - public static readonly RULE_frameExtent = 103; - public static readonly RULE_frameBound = 104; - public static readonly RULE_rowPattern = 105; - public static readonly RULE_patternPrimary = 106; - public static readonly RULE_patternQuantifier = 107; - public static readonly RULE_updateAssignment = 108; - public static readonly RULE_explainOption = 109; - public static readonly RULE_transactionMode = 110; - public static readonly RULE_levelOfIsolation = 111; - public static readonly RULE_callArgument = 112; - public static readonly RULE_pathElement = 113; - public static readonly RULE_pathSpecification = 114; - public static readonly RULE_functionSpecification = 115; - public static readonly RULE_functionDeclaration = 116; - public static readonly RULE_functionSignature = 117; - public static readonly RULE_parameterDeclaration = 118; - public static readonly RULE_returnsClause = 119; - public static readonly RULE_routineCharacteristic = 120; - public static readonly RULE_controlStatement = 121; - public static readonly RULE_caseStatementWhenClause = 122; - public static readonly RULE_elseIfClause = 123; - public static readonly RULE_elseClause = 124; - public static readonly RULE_variableDeclaration = 125; - public static readonly RULE_sqlStatementList = 126; - public static readonly RULE_privilege = 127; - public static readonly RULE_entityKind = 128; - public static readonly RULE_grantObject = 129; - public static readonly RULE_tableOrViewName = 130; - public static readonly RULE_tableRef = 131; - public static readonly RULE_tableNameCreate = 132; - public static readonly RULE_viewRef = 133; - public static readonly RULE_viewNameCreate = 134; - public static readonly RULE_schemaRef = 135; - public static readonly RULE_schemaNameCreate = 136; - public static readonly RULE_catalogRef = 137; - public static readonly RULE_catalogNameCreate = 138; - public static readonly RULE_functionName = 139; - public static readonly RULE_functionNameCreate = 140; - public static readonly RULE_columnRef = 141; - public static readonly RULE_columnName = 142; - public static readonly RULE_columnNameCreate = 143; - public static readonly RULE_qualifiedName = 144; - public static readonly RULE_queryPeriod = 145; - public static readonly RULE_rangeType = 146; - public static readonly RULE_grantor = 147; - public static readonly RULE_principal = 148; - public static readonly RULE_roles = 149; - public static readonly RULE_privilegeOrRole = 150; - public static readonly RULE_identifier = 151; - public static readonly RULE_number = 152; - public static readonly RULE_authorizationUser = 153; - public static readonly RULE_nonReserved = 154; + public static readonly RULE_selectList = 29; + public static readonly RULE_groupBy = 30; + public static readonly RULE_partitionBy = 31; + public static readonly RULE_groupingElement = 32; + public static readonly RULE_groupingSet = 33; + public static readonly RULE_groupingTerm = 34; + public static readonly RULE_windowDefinition = 35; + public static readonly RULE_windowSpecification = 36; + public static readonly RULE_namedQuery = 37; + public static readonly RULE_setQuantifier = 38; + public static readonly RULE_selectItem = 39; + public static readonly RULE_selectAllWithoutTable = 40; + public static readonly RULE_tableAllColumns = 41; + public static readonly RULE_selectLiteralColumnName = 42; + public static readonly RULE_selectExpressionColumnName = 43; + public static readonly RULE_relation = 44; + public static readonly RULE_joinType = 45; + public static readonly RULE_joinCriteria = 46; + public static readonly RULE_sampledRelation = 47; + public static readonly RULE_sampleType = 48; + public static readonly RULE_trimsSpecification = 49; + public static readonly RULE_listAggOverflowBehavior = 50; + public static readonly RULE_listAggCountIndication = 51; + public static readonly RULE_patternRecognition = 52; + public static readonly RULE_measureDefinition = 53; + public static readonly RULE_rowsPerMatch = 54; + public static readonly RULE_emptyMatchHandling = 55; + public static readonly RULE_skipTo = 56; + public static readonly RULE_subsetDefinition = 57; + public static readonly RULE_variableDefinition = 58; + public static readonly RULE_aliasedRelation = 59; + public static readonly RULE_columnListCreate = 60; + public static readonly RULE_columnList = 61; + public static readonly RULE_columnAliases = 62; + public static readonly RULE_relationPrimary = 63; + public static readonly RULE_relationSourceTable = 64; + public static readonly RULE_jsonTableColumn = 65; + public static readonly RULE_jsonTableSpecificPlan = 66; + public static readonly RULE_jsonTablePathName = 67; + public static readonly RULE_planPrimary = 68; + public static readonly RULE_jsonTableDefaultPlan = 69; + public static readonly RULE_tableFunctionCall = 70; + public static readonly RULE_tableFunctionArgument = 71; + public static readonly RULE_tableArgument = 72; + public static readonly RULE_tableArgumentRelation = 73; + public static readonly RULE_descriptorArgument = 74; + public static readonly RULE_descriptorField = 75; + public static readonly RULE_coPartitionTables = 76; + public static readonly RULE_expression = 77; + public static readonly RULE_booleanExpression = 78; + public static readonly RULE_predicate = 79; + public static readonly RULE_valueExpression = 80; + public static readonly RULE_primaryExpression = 81; + public static readonly RULE_jsonPathInvocation = 82; + public static readonly RULE_jsonValueExpression = 83; + public static readonly RULE_jsonRepresentation = 84; + public static readonly RULE_jsonArgument = 85; + public static readonly RULE_jsonExistsErrorBehavior = 86; + public static readonly RULE_jsonValueBehavior = 87; + public static readonly RULE_jsonQueryWrapperBehavior = 88; + public static readonly RULE_jsonQueryBehavior = 89; + public static readonly RULE_jsonObjectMember = 90; + public static readonly RULE_processingMode = 91; + public static readonly RULE_nullTreatment = 92; + public static readonly RULE_string = 93; + public static readonly RULE_timeZoneSpecifier = 94; + public static readonly RULE_comparisonOperator = 95; + public static readonly RULE_comparisonQuantifier = 96; + public static readonly RULE_booleanValue = 97; + public static readonly RULE_interval = 98; + public static readonly RULE_intervalField = 99; + public static readonly RULE_normalForm = 100; + public static readonly RULE_type = 101; + public static readonly RULE_rowField = 102; + public static readonly RULE_typeParameter = 103; + public static readonly RULE_whenClause = 104; + public static readonly RULE_filter = 105; + public static readonly RULE_mergeCase = 106; + public static readonly RULE_over = 107; + public static readonly RULE_windowFrame = 108; + public static readonly RULE_frameExtent = 109; + public static readonly RULE_frameBound = 110; + public static readonly RULE_rowPattern = 111; + public static readonly RULE_patternPrimary = 112; + public static readonly RULE_patternQuantifier = 113; + public static readonly RULE_updateAssignment = 114; + public static readonly RULE_explainOption = 115; + public static readonly RULE_transactionMode = 116; + public static readonly RULE_levelOfIsolation = 117; + public static readonly RULE_callArgument = 118; + public static readonly RULE_pathElement = 119; + public static readonly RULE_pathSpecification = 120; + public static readonly RULE_functionSpecification = 121; + public static readonly RULE_functionDeclaration = 122; + public static readonly RULE_functionSignature = 123; + public static readonly RULE_parameterDeclaration = 124; + public static readonly RULE_returnsClause = 125; + public static readonly RULE_routineCharacteristic = 126; + public static readonly RULE_controlStatement = 127; + public static readonly RULE_caseStatementWhenClause = 128; + public static readonly RULE_elseIfClause = 129; + public static readonly RULE_elseClause = 130; + public static readonly RULE_variableDeclaration = 131; + public static readonly RULE_sqlStatementList = 132; + public static readonly RULE_privilege = 133; + public static readonly RULE_entityKind = 134; + public static readonly RULE_grantObject = 135; + public static readonly RULE_tableOrViewName = 136; + public static readonly RULE_tableRef = 137; + public static readonly RULE_tableNameCreate = 138; + public static readonly RULE_viewRef = 139; + public static readonly RULE_viewNameCreate = 140; + public static readonly RULE_schemaRef = 141; + public static readonly RULE_schemaNameCreate = 142; + public static readonly RULE_catalogRef = 143; + public static readonly RULE_catalogNameCreate = 144; + public static readonly RULE_functionName = 145; + public static readonly RULE_functionNameCreate = 146; + public static readonly RULE_columnRef = 147; + public static readonly RULE_columnName = 148; + public static readonly RULE_columnNameCreate = 149; + public static readonly RULE_qualifiedName = 150; + public static readonly RULE_queryPeriod = 151; + public static readonly RULE_rangeType = 152; + public static readonly RULE_grantor = 153; + public static readonly RULE_principal = 154; + public static readonly RULE_roles = 155; + public static readonly RULE_privilegeOrRole = 156; + public static readonly RULE_identifier = 157; + public static readonly RULE_number = 158; + public static readonly RULE_authorizationUser = 159; + public static readonly RULE_nonReserved = 160; public static readonly literalNames = [ null, "'('", "')'", "','", "'.'", "'SKIP'", "'=>'", "'->'", "'['", @@ -644,13 +650,15 @@ export class TrinoSqlParser extends SQLParserBase { "properties", "propertyAssignments", "property", "propertyValue", "queryNoWith", "limitRowCount", "rowCount", "queryTerm", "queryPrimary", "sortItem", "querySpecification", "whereClause", "havingClause", - "groupBy", "partitionBy", "groupingElement", "groupingSet", "groupingTerm", - "windowDefinition", "windowSpecification", "namedQuery", "setQuantifier", - "selectItem", "relation", "joinType", "joinCriteria", "sampledRelation", - "sampleType", "trimsSpecification", "listAggOverflowBehavior", "listAggCountIndication", - "patternRecognition", "measureDefinition", "rowsPerMatch", "emptyMatchHandling", - "skipTo", "subsetDefinition", "variableDefinition", "aliasedRelation", - "columnListCreate", "columnList", "columnAliases", "relationPrimary", + "selectList", "groupBy", "partitionBy", "groupingElement", "groupingSet", + "groupingTerm", "windowDefinition", "windowSpecification", "namedQuery", + "setQuantifier", "selectItem", "selectAllWithoutTable", "tableAllColumns", + "selectLiteralColumnName", "selectExpressionColumnName", "relation", + "joinType", "joinCriteria", "sampledRelation", "sampleType", "trimsSpecification", + "listAggOverflowBehavior", "listAggCountIndication", "patternRecognition", + "measureDefinition", "rowsPerMatch", "emptyMatchHandling", "skipTo", + "subsetDefinition", "variableDefinition", "aliasedRelation", "columnListCreate", + "columnList", "columnAliases", "relationPrimary", "relationSourceTable", "jsonTableColumn", "jsonTableSpecificPlan", "jsonTablePathName", "planPrimary", "jsonTableDefaultPlan", "tableFunctionCall", "tableFunctionArgument", "tableArgument", "tableArgumentRelation", "descriptorArgument", @@ -698,21 +706,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 313; + this.state = 325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 25165826) !== 0) || ((((_la - 37)) & ~0x1F) === 0 && ((1 << (_la - 37)) & 2147550721) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 5243919) !== 0) || _la === 110 || _la === 127 || _la === 169 || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 8921345) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 67113129) !== 0) || ((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131587) !== 0)) { { { - this.state = 310; + this.state = 322; this.statements(); } } - this.state = 315; + this.state = 327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 316; + this.state = 328; this.match(TrinoSqlParser.EOF); } } @@ -736,7 +744,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 318; + this.state = 330; this.singleStatement(); } } @@ -761,14 +769,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 320; + this.state = 332; this.statement(); - this.state = 322; + this.state = 334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 321; + this.state = 333; this.match(TrinoSqlParser.SEMICOLON); } } @@ -796,14 +804,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 324; + this.state = 336; this.expression(); - this.state = 326; + this.state = 338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 325; + this.state = 337; this.match(TrinoSqlParser.SEMICOLON); } } @@ -831,14 +839,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 328; + this.state = 340; this.pathSpecification(); - this.state = 330; + this.state = 342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 329; + this.state = 341; this.match(TrinoSqlParser.SEMICOLON); } } @@ -866,14 +874,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 332; + this.state = 344; this.type_(0); - this.state = 334; + this.state = 346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 333; + this.state = 345; this.match(TrinoSqlParser.SEMICOLON); } } @@ -901,14 +909,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 336; + this.state = 348; this.rowPattern(0); - this.state = 338; + this.state = 350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 337; + this.state = 349; this.match(TrinoSqlParser.SEMICOLON); } } @@ -935,9 +943,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 340; + this.state = 352; this.functionSpecification(); - this.state = 341; + this.state = 353; this.match(TrinoSqlParser.EOF); } } @@ -960,14 +968,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 16, TrinoSqlParser.RULE_statement); let _la: number; try { - this.state = 1238; + this.state = 1250; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 343; + this.state = 355; this.rootQuery(); } break; @@ -975,9 +983,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UseContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 344; + this.state = 356; this.match(TrinoSqlParser.KW_USE); - this.state = 345; + this.state = 357; this.schemaRef(); } break; @@ -985,62 +993,62 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateCatalogContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 346; + this.state = 358; this.match(TrinoSqlParser.KW_CREATE); - this.state = 347; + this.state = 359; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 351; + this.state = 363; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: { - this.state = 348; + this.state = 360; this.match(TrinoSqlParser.KW_IF); - this.state = 349; + this.state = 361; this.match(TrinoSqlParser.KW_NOT); - this.state = 350; + this.state = 362; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 353; + this.state = 365; (localContext as CreateCatalogContext)._catalog = this.catalogNameCreate(); - this.state = 354; + this.state = 366; this.match(TrinoSqlParser.KW_USING); - this.state = 355; + this.state = 367; (localContext as CreateCatalogContext)._connectorName = this.identifier(); - this.state = 358; + this.state = 370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 356; + this.state = 368; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 357; + this.state = 369; this.string_(); } break; } - this.state = 362; + this.state = 374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 360; + this.state = 372; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 361; + this.state = 373; this.principal(); } } - this.state = 366; + this.state = 378; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 364; + this.state = 376; this.match(TrinoSqlParser.KW_WITH); - this.state = 365; + this.state = 377; this.properties(); } break; @@ -1051,30 +1059,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 368; + this.state = 380; this.match(TrinoSqlParser.KW_DROP); - this.state = 369; + this.state = 381; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 372; + this.state = 384; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 370; + this.state = 382; this.match(TrinoSqlParser.KW_IF); - this.state = 371; + this.state = 383; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 374; + this.state = 386; (localContext as DropCatalogContext)._catalog = this.catalogRef(); - this.state = 376; + this.state = 388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 375; + this.state = 387; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1092,46 +1100,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateSchemaContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 378; + this.state = 390; this.match(TrinoSqlParser.KW_CREATE); - this.state = 379; + this.state = 391; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 383; + this.state = 395; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 380; + this.state = 392; this.match(TrinoSqlParser.KW_IF); - this.state = 381; + this.state = 393; this.match(TrinoSqlParser.KW_NOT); - this.state = 382; + this.state = 394; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 385; + this.state = 397; this.schemaNameCreate(); - this.state = 388; + this.state = 400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 386; + this.state = 398; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 387; + this.state = 399; this.principal(); } } - this.state = 392; + this.state = 404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 14, this.context) ) { case 1: { - this.state = 390; + this.state = 402; this.match(TrinoSqlParser.KW_WITH); - this.state = 391; + this.state = 403; this.properties(); } break; @@ -1142,30 +1150,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropSchemaContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 394; + this.state = 406; this.match(TrinoSqlParser.KW_DROP); - this.state = 395; + this.state = 407; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 398; + this.state = 410; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 396; + this.state = 408; this.match(TrinoSqlParser.KW_IF); - this.state = 397; + this.state = 409; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 400; + this.state = 412; this.schemaRef(); - this.state = 402; + this.state = 414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 401; + this.state = 413; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1183,17 +1191,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameSchemaContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 404; + this.state = 416; this.match(TrinoSqlParser.KW_ALTER); - this.state = 405; + this.state = 417; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 406; + this.state = 418; this.schemaRef(); - this.state = 407; + this.state = 419; this.match(TrinoSqlParser.KW_RENAME); - this.state = 408; + this.state = 420; this.match(TrinoSqlParser.KW_TO); - this.state = 409; + this.state = 421; this.schemaNameCreate(); } break; @@ -1201,17 +1209,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSchemaAuthorizationContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 411; + this.state = 423; this.match(TrinoSqlParser.KW_ALTER); - this.state = 412; + this.state = 424; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 413; + this.state = 425; this.schemaRef(); - this.state = 414; + this.state = 426; this.match(TrinoSqlParser.KW_SET); - this.state = 415; + this.state = 427; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 416; + this.state = 428; this.principal(); } break; @@ -1219,112 +1227,112 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableAsSelectContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 418; + this.state = 430; this.match(TrinoSqlParser.KW_CREATE); - this.state = 421; + this.state = 433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 419; + this.state = 431; this.match(TrinoSqlParser.KW_OR); - this.state = 420; + this.state = 432; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 423; + this.state = 435; this.match(TrinoSqlParser.KW_TABLE); - this.state = 427; + this.state = 439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: { - this.state = 424; + this.state = 436; this.match(TrinoSqlParser.KW_IF); - this.state = 425; + this.state = 437; this.match(TrinoSqlParser.KW_NOT); - this.state = 426; + this.state = 438; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 429; + this.state = 441; this.tableNameCreate(); - this.state = 431; + this.state = 443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 430; + this.state = 442; this.columnListCreate(); } } - this.state = 435; + this.state = 447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 433; + this.state = 445; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 434; + this.state = 446; (localContext as CreateTableAsSelectContext)._comment = this.string_(); } } - this.state = 439; + this.state = 451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 437; + this.state = 449; this.match(TrinoSqlParser.KW_WITH); - this.state = 438; + this.state = 450; this.properties(); } } - this.state = 441; + this.state = 453; this.match(TrinoSqlParser.KW_AS); - this.state = 447; + this.state = 459; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 442; + this.state = 454; this.rootQuery(); } break; case 2: { - this.state = 443; + this.state = 455; this.match(TrinoSqlParser.T__0); - this.state = 444; + this.state = 456; this.rootQuery(); - this.state = 445; + this.state = 457; this.match(TrinoSqlParser.T__1); } break; } - this.state = 454; + this.state = 466; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 449; + this.state = 461; this.match(TrinoSqlParser.KW_WITH); - this.state = 451; + this.state = 463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 179) { { - this.state = 450; + this.state = 462; this.match(TrinoSqlParser.KW_NO); } } - this.state = 453; + this.state = 465; this.match(TrinoSqlParser.KW_DATA); } break; @@ -1335,80 +1343,80 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 456; + this.state = 468; this.match(TrinoSqlParser.KW_CREATE); - this.state = 459; + this.state = 471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 457; + this.state = 469; this.match(TrinoSqlParser.KW_OR); - this.state = 458; + this.state = 470; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 461; + this.state = 473; this.match(TrinoSqlParser.KW_TABLE); - this.state = 465; + this.state = 477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 462; + this.state = 474; this.match(TrinoSqlParser.KW_IF); - this.state = 463; + this.state = 475; this.match(TrinoSqlParser.KW_NOT); - this.state = 464; + this.state = 476; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 467; + this.state = 479; this.tableNameCreate(); - this.state = 468; + this.state = 480; this.match(TrinoSqlParser.T__0); - this.state = 469; + this.state = 481; this.tableElement(); - this.state = 474; + this.state = 486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 470; + this.state = 482; this.match(TrinoSqlParser.T__2); - this.state = 471; + this.state = 483; this.tableElement(); } } - this.state = 476; + this.state = 488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 477; + this.state = 489; this.match(TrinoSqlParser.T__1); - this.state = 480; + this.state = 492; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 478; + this.state = 490; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 479; + this.state = 491; (localContext as CreateTableContext)._comment = this.string_(); } break; } - this.state = 484; + this.state = 496; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 482; + this.state = 494; this.match(TrinoSqlParser.KW_WITH); - this.state = 483; + this.state = 495; this.properties(); } break; @@ -1419,23 +1427,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 486; + this.state = 498; this.match(TrinoSqlParser.KW_DROP); - this.state = 487; + this.state = 499; this.match(TrinoSqlParser.KW_TABLE); - this.state = 490; + this.state = 502; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 488; + this.state = 500; this.match(TrinoSqlParser.KW_IF); - this.state = 489; + this.state = 501; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 492; + this.state = 504; this.tableRef(); } break; @@ -1443,23 +1451,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InsertIntoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 493; + this.state = 505; this.match(TrinoSqlParser.KW_INSERT); - this.state = 494; + this.state = 506; this.match(TrinoSqlParser.KW_INTO); - this.state = 495; + this.state = 507; this.tableRef(); - this.state = 497; + this.state = 509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: { - this.state = 496; + this.state = 508; this.columnList(); } break; } - this.state = 499; + this.state = 511; this.rootQuery(); } break; @@ -1467,18 +1475,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeleteContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 501; + this.state = 513; this.match(TrinoSqlParser.KW_DELETE); - this.state = 502; + this.state = 514; this.match(TrinoSqlParser.KW_FROM); - this.state = 503; + this.state = 515; this.tableRef(); - this.state = 505; + this.state = 517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 504; + this.state = 516; this.whereClause(); } } @@ -1489,11 +1497,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 507; + this.state = 519; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 508; + this.state = 520; this.match(TrinoSqlParser.KW_TABLE); - this.state = 509; + this.state = 521; this.tableRef(); } break; @@ -1501,29 +1509,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 510; + this.state = 522; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 511; + this.state = 523; this.match(TrinoSqlParser.KW_ON); - this.state = 512; + this.state = 524; this.match(TrinoSqlParser.KW_TABLE); - this.state = 513; + this.state = 525; this.tableRef(); - this.state = 514; + this.state = 526; this.match(TrinoSqlParser.KW_IS); - this.state = 517; + this.state = 529; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 515; + this.state = 527; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 516; + this.state = 528; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1536,29 +1544,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentViewContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 519; + this.state = 531; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 520; + this.state = 532; this.match(TrinoSqlParser.KW_ON); - this.state = 521; + this.state = 533; this.match(TrinoSqlParser.KW_VIEW); - this.state = 522; + this.state = 534; this.viewRef(); - this.state = 523; + this.state = 535; this.match(TrinoSqlParser.KW_IS); - this.state = 526; + this.state = 538; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 524; + this.state = 536; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 525; + this.state = 537; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1571,29 +1579,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 528; + this.state = 540; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 529; + this.state = 541; this.match(TrinoSqlParser.KW_ON); - this.state = 530; + this.state = 542; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 531; + this.state = 543; this.columnRef(); - this.state = 532; + this.state = 544; this.match(TrinoSqlParser.KW_IS); - this.state = 535; + this.state = 547; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 533; + this.state = 545; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 534; + this.state = 546; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1606,29 +1614,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 537; + this.state = 549; this.match(TrinoSqlParser.KW_ALTER); - this.state = 538; + this.state = 550; this.match(TrinoSqlParser.KW_TABLE); - this.state = 541; + this.state = 553; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 539; + this.state = 551; this.match(TrinoSqlParser.KW_IF); - this.state = 540; + this.state = 552; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 543; + this.state = 555; (localContext as RenameTableContext)._from_ = this.tableRef(); - this.state = 544; + this.state = 556; this.match(TrinoSqlParser.KW_RENAME); - this.state = 545; + this.state = 557; this.match(TrinoSqlParser.KW_TO); - this.state = 546; + this.state = 558; (localContext as RenameTableContext)._to = this.tableNameCreate(); } break; @@ -1636,43 +1644,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AddColumnContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 548; + this.state = 560; this.match(TrinoSqlParser.KW_ALTER); - this.state = 549; + this.state = 561; this.match(TrinoSqlParser.KW_TABLE); - this.state = 552; + this.state = 564; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 550; + this.state = 562; this.match(TrinoSqlParser.KW_IF); - this.state = 551; + this.state = 563; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 554; + this.state = 566; (localContext as AddColumnContext)._tableName = this.tableRef(); - this.state = 555; + this.state = 567; this.match(TrinoSqlParser.KW_ADD); - this.state = 556; + this.state = 568; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 560; + this.state = 572; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 557; + this.state = 569; this.match(TrinoSqlParser.KW_IF); - this.state = 558; + this.state = 570; this.match(TrinoSqlParser.KW_NOT); - this.state = 559; + this.state = 571; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 562; + this.state = 574; (localContext as AddColumnContext)._column = this.columnDefinition(); } break; @@ -1680,45 +1688,45 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 564; + this.state = 576; this.match(TrinoSqlParser.KW_ALTER); - this.state = 565; + this.state = 577; this.match(TrinoSqlParser.KW_TABLE); - this.state = 568; + this.state = 580; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 566; + this.state = 578; this.match(TrinoSqlParser.KW_IF); - this.state = 567; + this.state = 579; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 570; + this.state = 582; (localContext as RenameColumnContext)._tableName = this.tableRef(); - this.state = 571; + this.state = 583; this.match(TrinoSqlParser.KW_RENAME); - this.state = 572; + this.state = 584; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 575; + this.state = 587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 573; + this.state = 585; this.match(TrinoSqlParser.KW_IF); - this.state = 574; + this.state = 586; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 577; + this.state = 589; (localContext as RenameColumnContext)._from_ = this.columnRef(); - this.state = 578; + this.state = 590; this.match(TrinoSqlParser.KW_TO); - this.state = 579; + this.state = 591; (localContext as RenameColumnContext)._to = this.columnNameCreate(); } break; @@ -1726,41 +1734,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropColumnContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 581; + this.state = 593; this.match(TrinoSqlParser.KW_ALTER); - this.state = 582; + this.state = 594; this.match(TrinoSqlParser.KW_TABLE); - this.state = 585; + this.state = 597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 583; + this.state = 595; this.match(TrinoSqlParser.KW_IF); - this.state = 584; + this.state = 596; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 587; + this.state = 599; (localContext as DropColumnContext)._tableName = this.tableRef(); - this.state = 588; + this.state = 600; this.match(TrinoSqlParser.KW_DROP); - this.state = 589; + this.state = 601; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 592; + this.state = 604; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 590; + this.state = 602; this.match(TrinoSqlParser.KW_IF); - this.state = 591; + this.state = 603; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 594; + this.state = 606; (localContext as DropColumnContext)._column = this.columnRef(); } break; @@ -1768,37 +1776,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetColumnTypeContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 596; + this.state = 608; this.match(TrinoSqlParser.KW_ALTER); - this.state = 597; + this.state = 609; this.match(TrinoSqlParser.KW_TABLE); - this.state = 600; + this.state = 612; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 598; + this.state = 610; this.match(TrinoSqlParser.KW_IF); - this.state = 599; + this.state = 611; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 602; + this.state = 614; (localContext as SetColumnTypeContext)._tableName = this.tableRef(); - this.state = 603; + this.state = 615; this.match(TrinoSqlParser.KW_ALTER); - this.state = 604; + this.state = 616; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 605; + this.state = 617; (localContext as SetColumnTypeContext)._column = this.columnRef(); - this.state = 606; + this.state = 618; this.match(TrinoSqlParser.KW_SET); - this.state = 607; + this.state = 619; this.match(TrinoSqlParser.KW_DATA); - this.state = 608; + this.state = 620; this.match(TrinoSqlParser.KW_TYPE); - this.state = 609; + this.state = 621; this.type_(0); } break; @@ -1806,35 +1814,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropNotNullConstraintContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 611; + this.state = 623; this.match(TrinoSqlParser.KW_ALTER); - this.state = 612; + this.state = 624; this.match(TrinoSqlParser.KW_TABLE); - this.state = 615; + this.state = 627; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { - this.state = 613; + this.state = 625; this.match(TrinoSqlParser.KW_IF); - this.state = 614; + this.state = 626; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 617; + this.state = 629; (localContext as DropNotNullConstraintContext)._tableName = this.tableRef(); - this.state = 618; + this.state = 630; this.match(TrinoSqlParser.KW_ALTER); - this.state = 619; + this.state = 631; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 620; + this.state = 632; (localContext as DropNotNullConstraintContext)._column = this.columnRef(); - this.state = 621; + this.state = 633; this.match(TrinoSqlParser.KW_DROP); - this.state = 622; + this.state = 634; this.match(TrinoSqlParser.KW_NOT); - this.state = 623; + this.state = 635; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1842,17 +1850,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTableAuthorizationContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 625; + this.state = 637; this.match(TrinoSqlParser.KW_ALTER); - this.state = 626; + this.state = 638; this.match(TrinoSqlParser.KW_TABLE); - this.state = 627; + this.state = 639; (localContext as SetTableAuthorizationContext)._tableName = this.tableRef(); - this.state = 628; + this.state = 640; this.match(TrinoSqlParser.KW_SET); - this.state = 629; + this.state = 641; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 630; + this.state = 642; this.principal(); } break; @@ -1860,17 +1868,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 632; + this.state = 644; this.match(TrinoSqlParser.KW_ALTER); - this.state = 633; + this.state = 645; this.match(TrinoSqlParser.KW_TABLE); - this.state = 634; + this.state = 646; (localContext as SetTablePropertiesContext)._tableName = this.tableRef(); - this.state = 635; + this.state = 647; this.match(TrinoSqlParser.KW_SET); - this.state = 636; + this.state = 648; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 637; + this.state = 649; this.propertyAssignments(); } break; @@ -1878,60 +1886,60 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableExecuteContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 639; + this.state = 651; this.match(TrinoSqlParser.KW_ALTER); - this.state = 640; + this.state = 652; this.match(TrinoSqlParser.KW_TABLE); - this.state = 641; + this.state = 653; (localContext as TableExecuteContext)._tableName = this.tableRef(); - this.state = 642; + this.state = 654; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 643; + this.state = 655; (localContext as TableExecuteContext)._procedureName = this.functionName(); - this.state = 656; + this.state = 668; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 644; + this.state = 656; this.match(TrinoSqlParser.T__0); - this.state = 653; + this.state = 665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 645; + this.state = 657; this.callArgument(); - this.state = 650; + this.state = 662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 646; + this.state = 658; this.match(TrinoSqlParser.T__2); - this.state = 647; + this.state = 659; this.callArgument(); } } - this.state = 652; + this.state = 664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 655; + this.state = 667; this.match(TrinoSqlParser.T__1); } break; } - this.state = 659; + this.state = 671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 658; + this.state = 670; this.whereClause(); } } @@ -1942,18 +1950,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 661; + this.state = 673; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 662; + this.state = 674; this.tableRef(); - this.state = 665; + this.state = 677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 663; + this.state = 675; this.match(TrinoSqlParser.KW_WITH); - this.state = 664; + this.state = 676; this.properties(); } break; @@ -1964,81 +1972,81 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 667; + this.state = 679; this.match(TrinoSqlParser.KW_CREATE); - this.state = 670; + this.state = 682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 668; + this.state = 680; this.match(TrinoSqlParser.KW_OR); - this.state = 669; + this.state = 681; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 672; + this.state = 684; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 673; + this.state = 685; this.match(TrinoSqlParser.KW_VIEW); - this.state = 677; + this.state = 689; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 674; + this.state = 686; this.match(TrinoSqlParser.KW_IF); - this.state = 675; + this.state = 687; this.match(TrinoSqlParser.KW_NOT); - this.state = 676; + this.state = 688; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 679; + this.state = 691; this.viewNameCreate(); - this.state = 683; + this.state = 695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 680; + this.state = 692; this.match(TrinoSqlParser.KW_GRACE); - this.state = 681; + this.state = 693; this.match(TrinoSqlParser.KW_PERIOD); - this.state = 682; + this.state = 694; this.interval(); } } - this.state = 687; + this.state = 699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 685; + this.state = 697; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 686; + this.state = 698; (localContext as CreateMaterializedViewContext)._comment = this.string_(); } } - this.state = 691; + this.state = 703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 689; + this.state = 701; this.match(TrinoSqlParser.KW_WITH); - this.state = 690; + this.state = 702; this.properties(); } } - this.state = 693; + this.state = 705; this.match(TrinoSqlParser.KW_AS); - this.state = 694; + this.state = 706; this.rootQuery(); } break; @@ -2046,44 +2054,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 696; + this.state = 708; this.match(TrinoSqlParser.KW_CREATE); - this.state = 699; + this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 697; + this.state = 709; this.match(TrinoSqlParser.KW_OR); - this.state = 698; + this.state = 710; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 701; + this.state = 713; this.match(TrinoSqlParser.KW_VIEW); - this.state = 702; + this.state = 714; this.viewNameCreate(); - this.state = 705; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 703; + this.state = 715; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 704; + this.state = 716; (localContext as CreateViewContext)._comment = this.string_(); } } - this.state = 709; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 707; + this.state = 719; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 708; + this.state = 720; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -2095,21 +2103,21 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 713; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 711; + this.state = 723; this.match(TrinoSqlParser.KW_WITH); - this.state = 712; + this.state = 724; this.properties(); } } - this.state = 715; + this.state = 727; this.match(TrinoSqlParser.KW_AS); - this.state = 716; + this.state = 728; this.rootQuery(); } break; @@ -2117,13 +2125,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 718; + this.state = 730; this.match(TrinoSqlParser.KW_REFRESH); - this.state = 719; + this.state = 731; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 720; + this.state = 732; this.match(TrinoSqlParser.KW_VIEW); - this.state = 721; + this.state = 733; this.viewRef(); } break; @@ -2131,25 +2139,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 722; + this.state = 734; this.match(TrinoSqlParser.KW_DROP); - this.state = 723; + this.state = 735; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 724; + this.state = 736; this.match(TrinoSqlParser.KW_VIEW); - this.state = 727; + this.state = 739; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 725; + this.state = 737; this.match(TrinoSqlParser.KW_IF); - this.state = 726; + this.state = 738; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 729; + this.state = 741; this.viewRef(); } break; @@ -2157,31 +2165,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 730; + this.state = 742; this.match(TrinoSqlParser.KW_ALTER); - this.state = 731; + this.state = 743; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 732; + this.state = 744; this.match(TrinoSqlParser.KW_VIEW); - this.state = 735; + this.state = 747; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 733; + this.state = 745; this.match(TrinoSqlParser.KW_IF); - this.state = 734; + this.state = 746; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 737; + this.state = 749; (localContext as RenameMaterializedViewContext)._from_ = this.viewRef(); - this.state = 738; + this.state = 750; this.match(TrinoSqlParser.KW_RENAME); - this.state = 739; + this.state = 751; this.match(TrinoSqlParser.KW_TO); - this.state = 740; + this.state = 752; (localContext as RenameMaterializedViewContext)._to = this.viewNameCreate(); } break; @@ -2189,19 +2197,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 742; + this.state = 754; this.match(TrinoSqlParser.KW_ALTER); - this.state = 743; + this.state = 755; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 744; + this.state = 756; this.match(TrinoSqlParser.KW_VIEW); - this.state = 745; + this.state = 757; this.viewRef(); - this.state = 746; + this.state = 758; this.match(TrinoSqlParser.KW_SET); - this.state = 747; + this.state = 759; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 748; + this.state = 760; this.propertyAssignments(); } break; @@ -2209,23 +2217,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 750; + this.state = 762; this.match(TrinoSqlParser.KW_DROP); - this.state = 751; + this.state = 763; this.match(TrinoSqlParser.KW_VIEW); - this.state = 754; + this.state = 766; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 752; + this.state = 764; this.match(TrinoSqlParser.KW_IF); - this.state = 753; + this.state = 765; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 756; + this.state = 768; this.viewRef(); } break; @@ -2233,17 +2241,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameViewContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 757; + this.state = 769; this.match(TrinoSqlParser.KW_ALTER); - this.state = 758; + this.state = 770; this.match(TrinoSqlParser.KW_VIEW); - this.state = 759; + this.state = 771; (localContext as RenameViewContext)._from_ = this.viewRef(); - this.state = 760; + this.state = 772; this.match(TrinoSqlParser.KW_RENAME); - this.state = 761; + this.state = 773; this.match(TrinoSqlParser.KW_TO); - this.state = 762; + this.state = 774; (localContext as RenameViewContext)._to = this.viewNameCreate(); } break; @@ -2251,17 +2259,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetViewAuthorizationContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 764; + this.state = 776; this.match(TrinoSqlParser.KW_ALTER); - this.state = 765; + this.state = 777; this.match(TrinoSqlParser.KW_VIEW); - this.state = 766; + this.state = 778; (localContext as SetViewAuthorizationContext)._from_ = this.viewRef(); - this.state = 767; + this.state = 779; this.match(TrinoSqlParser.KW_SET); - this.state = 768; + this.state = 780; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 769; + this.state = 781; this.principal(); } break; @@ -2269,39 +2277,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CallContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 771; + this.state = 783; this.match(TrinoSqlParser.KW_CALL); - this.state = 772; + this.state = 784; this.functionName(); - this.state = 773; + this.state = 785; this.match(TrinoSqlParser.T__0); - this.state = 782; + this.state = 794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 774; + this.state = 786; this.callArgument(); - this.state = 779; + this.state = 791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 775; + this.state = 787; this.match(TrinoSqlParser.T__2); - this.state = 776; + this.state = 788; this.callArgument(); } } - this.state = 781; + this.state = 793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 784; + this.state = 796; this.match(TrinoSqlParser.T__1); } break; @@ -2309,21 +2317,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 786; + this.state = 798; this.match(TrinoSqlParser.KW_CREATE); - this.state = 789; + this.state = 801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 787; + this.state = 799; this.match(TrinoSqlParser.KW_OR); - this.state = 788; + this.state = 800; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 791; + this.state = 803; this.functionSpecification(); } break; @@ -2331,23 +2339,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 792; + this.state = 804; this.match(TrinoSqlParser.KW_DROP); - this.state = 793; + this.state = 805; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 796; + this.state = 808; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 794; + this.state = 806; this.match(TrinoSqlParser.KW_IF); - this.state = 795; + this.state = 807; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 798; + this.state = 810; this.functionSignature(); } break; @@ -2355,34 +2363,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateRoleContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 799; + this.state = 811; this.match(TrinoSqlParser.KW_CREATE); - this.state = 800; + this.state = 812; this.match(TrinoSqlParser.KW_ROLE); - this.state = 801; + this.state = 813; (localContext as CreateRoleContext)._name = this.identifier(); - this.state = 805; + this.state = 817; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 802; + this.state = 814; this.match(TrinoSqlParser.KW_WITH); - this.state = 803; + this.state = 815; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 804; + this.state = 816; this.grantor(); } break; } - this.state = 809; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 807; + this.state = 819; this.match(TrinoSqlParser.KW_IN); - this.state = 808; + this.state = 820; (localContext as CreateRoleContext)._catalog = this.catalogRef(); } } @@ -2393,20 +2401,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropRoleContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 811; + this.state = 823; this.match(TrinoSqlParser.KW_DROP); - this.state = 812; + this.state = 824; this.match(TrinoSqlParser.KW_ROLE); - this.state = 813; + this.state = 825; (localContext as DropRoleContext)._name = this.identifier(); - this.state = 816; + this.state = 828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 814; + this.state = 826; this.match(TrinoSqlParser.KW_IN); - this.state = 815; + this.state = 827; (localContext as DropRoleContext)._catalog = this.catalogRef(); } } @@ -2417,82 +2425,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantRolesContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 818; + this.state = 830; this.match(TrinoSqlParser.KW_GRANT); - this.state = 819; + this.state = 831; this.privilegeOrRole(); - this.state = 824; + this.state = 836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 820; + this.state = 832; this.match(TrinoSqlParser.T__2); - this.state = 821; + this.state = 833; this.privilegeOrRole(); } } - this.state = 826; + this.state = 838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 827; + this.state = 839; this.match(TrinoSqlParser.KW_TO); - this.state = 828; + this.state = 840; this.principal(); - this.state = 833; + this.state = 845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 829; + this.state = 841; this.match(TrinoSqlParser.T__2); - this.state = 830; + this.state = 842; this.principal(); } } - this.state = 835; + this.state = 847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 839; + this.state = 851; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 836; + this.state = 848; this.match(TrinoSqlParser.KW_WITH); - this.state = 837; + this.state = 849; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 838; + this.state = 850; this.match(TrinoSqlParser.KW_OPTION); } break; } - this.state = 844; + this.state = 856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 841; + this.state = 853; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 842; + this.state = 854; this.match(TrinoSqlParser.KW_BY); - this.state = 843; + this.state = 855; this.grantor(); } } - this.state = 848; + this.state = 860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 846; + this.state = 858; this.match(TrinoSqlParser.KW_IN); - this.state = 847; + this.state = 859; (localContext as GrantRolesContext)._catalog = this.catalogRef(); } } @@ -2503,29 +2511,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantPrivilegesContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 850; + this.state = 862; this.match(TrinoSqlParser.KW_GRANT); - this.state = 861; + this.state = 873; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { { - this.state = 851; + this.state = 863; this.privilegeOrRole(); - this.state = 856; + this.state = 868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 852; + this.state = 864; this.match(TrinoSqlParser.T__2); - this.state = 853; + this.state = 865; this.privilegeOrRole(); } } - this.state = 858; + this.state = 870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2534,31 +2542,31 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 859; + this.state = 871; this.match(TrinoSqlParser.KW_ALL); - this.state = 860; + this.state = 872; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 863; + this.state = 875; this.match(TrinoSqlParser.KW_ON); - this.state = 864; + this.state = 876; this.grantObject(); - this.state = 865; + this.state = 877; this.match(TrinoSqlParser.KW_TO); - this.state = 866; + this.state = 878; this.principal(); - this.state = 870; + this.state = 882; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 867; + this.state = 879; this.match(TrinoSqlParser.KW_WITH); - this.state = 868; + this.state = 880; this.match(TrinoSqlParser.KW_GRANT); - this.state = 869; + this.state = 881; this.match(TrinoSqlParser.KW_OPTION); } break; @@ -2569,82 +2577,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokeRolesContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 872; + this.state = 884; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 876; + this.state = 888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 873; + this.state = 885; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 874; + this.state = 886; this.match(TrinoSqlParser.KW_OPTION); - this.state = 875; + this.state = 887; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 878; + this.state = 890; this.privilegeOrRole(); - this.state = 883; + this.state = 895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 879; + this.state = 891; this.match(TrinoSqlParser.T__2); - this.state = 880; + this.state = 892; this.privilegeOrRole(); } } - this.state = 885; + this.state = 897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 886; + this.state = 898; this.match(TrinoSqlParser.KW_FROM); - this.state = 887; + this.state = 899; this.principal(); - this.state = 892; + this.state = 904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 888; + this.state = 900; this.match(TrinoSqlParser.T__2); - this.state = 889; + this.state = 901; this.principal(); } } - this.state = 894; + this.state = 906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 898; + this.state = 910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 895; + this.state = 907; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 896; + this.state = 908; this.match(TrinoSqlParser.KW_BY); - this.state = 897; + this.state = 909; this.grantor(); } } - this.state = 902; + this.state = 914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 900; + this.state = 912; this.match(TrinoSqlParser.KW_IN); - this.state = 901; + this.state = 913; (localContext as RevokeRolesContext)._catalog = this.catalogRef(); } } @@ -2655,43 +2663,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokePrivilegesContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 904; + this.state = 916; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 908; + this.state = 920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 905; + this.state = 917; this.match(TrinoSqlParser.KW_GRANT); - this.state = 906; + this.state = 918; this.match(TrinoSqlParser.KW_OPTION); - this.state = 907; + this.state = 919; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 920; + this.state = 932; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { { - this.state = 910; + this.state = 922; this.privilegeOrRole(); - this.state = 915; + this.state = 927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 911; + this.state = 923; this.match(TrinoSqlParser.T__2); - this.state = 912; + this.state = 924; this.privilegeOrRole(); } } - this.state = 917; + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2700,20 +2708,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 918; + this.state = 930; this.match(TrinoSqlParser.KW_ALL); - this.state = 919; + this.state = 931; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 922; + this.state = 934; this.match(TrinoSqlParser.KW_ON); - this.state = 923; + this.state = 935; this.grantObject(); - this.state = 924; + this.state = 936; this.match(TrinoSqlParser.KW_FROM); - this.state = 925; + this.state = 937; (localContext as RevokePrivilegesContext)._grantee = this.principal(); } break; @@ -2721,28 +2729,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DenyContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 927; + this.state = 939; this.match(TrinoSqlParser.KW_DENY); - this.state = 938; + this.state = 950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 928; + this.state = 940; this.privilege(); - this.state = 933; + this.state = 945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 929; + this.state = 941; this.match(TrinoSqlParser.T__2); - this.state = 930; + this.state = 942; this.privilege(); } } - this.state = 935; + this.state = 947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2750,20 +2758,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 936; + this.state = 948; this.match(TrinoSqlParser.KW_ALL); - this.state = 937; + this.state = 949; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 940; + this.state = 952; this.match(TrinoSqlParser.KW_ON); - this.state = 941; + this.state = 953; this.grantObject(); - this.state = 942; + this.state = 954; this.match(TrinoSqlParser.KW_TO); - this.state = 943; + this.state = 955; (localContext as DenyContext)._grantee = this.principal(); } break; @@ -2771,40 +2779,40 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetRoleContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 945; + this.state = 957; this.match(TrinoSqlParser.KW_SET); - this.state = 946; + this.state = 958; this.match(TrinoSqlParser.KW_ROLE); - this.state = 950; + this.state = 962; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 947; + this.state = 959; this.match(TrinoSqlParser.KW_ALL); } break; case 2: { - this.state = 948; + this.state = 960; this.match(TrinoSqlParser.KW_NONE); } break; case 3: { - this.state = 949; + this.state = 961; (localContext as SetRoleContext)._role = this.identifier(); } break; } - this.state = 954; + this.state = 966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 952; + this.state = 964; this.match(TrinoSqlParser.KW_IN); - this.state = 953; + this.state = 965; (localContext as SetRoleContext)._catalog = this.catalogRef(); } } @@ -2815,18 +2823,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 956; + this.state = 968; this.match(TrinoSqlParser.KW_SHOW); - this.state = 957; + this.state = 969; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 960; + this.state = 972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 958; + this.state = 970; this.match(TrinoSqlParser.KW_ON); - this.state = 959; + this.state = 971; this.grantObject(); } } @@ -2837,39 +2845,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 962; - this.match(TrinoSqlParser.KW_EXPLAIN); this.state = 974; + this.match(TrinoSqlParser.KW_EXPLAIN); + this.state = 986; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 963; + this.state = 975; this.match(TrinoSqlParser.T__0); - this.state = 964; + this.state = 976; this.explainOption(); - this.state = 969; + this.state = 981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 965; + this.state = 977; this.match(TrinoSqlParser.T__2); - this.state = 966; + this.state = 978; this.explainOption(); } } - this.state = 971; + this.state = 983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 972; + this.state = 984; this.match(TrinoSqlParser.T__1); } break; } - this.state = 976; + this.state = 988; this.statement(); } break; @@ -2877,21 +2885,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainAnalyzeContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 977; + this.state = 989; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 978; + this.state = 990; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 980; + this.state = 992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 979; + this.state = 991; this.match(TrinoSqlParser.KW_VERBOSE); } } - this.state = 982; + this.state = 994; this.statement(); } break; @@ -2899,13 +2907,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 983; + this.state = 995; this.match(TrinoSqlParser.KW_SHOW); - this.state = 984; + this.state = 996; this.match(TrinoSqlParser.KW_CREATE); - this.state = 985; + this.state = 997; this.match(TrinoSqlParser.KW_TABLE); - this.state = 986; + this.state = 998; this.tableRef(); } break; @@ -2913,13 +2921,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateSchemaContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 987; + this.state = 999; this.match(TrinoSqlParser.KW_SHOW); - this.state = 988; + this.state = 1000; this.match(TrinoSqlParser.KW_CREATE); - this.state = 989; + this.state = 1001; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 990; + this.state = 1002; this.schemaRef(); } break; @@ -2927,13 +2935,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 991; + this.state = 1003; this.match(TrinoSqlParser.KW_SHOW); - this.state = 992; + this.state = 1004; this.match(TrinoSqlParser.KW_CREATE); - this.state = 993; + this.state = 1005; this.match(TrinoSqlParser.KW_VIEW); - this.state = 994; + this.state = 1006; this.viewRef(); } break; @@ -2941,15 +2949,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 995; + this.state = 1007; this.match(TrinoSqlParser.KW_SHOW); - this.state = 996; + this.state = 1008; this.match(TrinoSqlParser.KW_CREATE); - this.state = 997; + this.state = 1009; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 998; + this.state = 1010; this.match(TrinoSqlParser.KW_VIEW); - this.state = 999; + this.state = 1011; this.viewRef(); } break; @@ -2957,13 +2965,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1000; + this.state = 1012; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1001; + this.state = 1013; this.match(TrinoSqlParser.KW_CREATE); - this.state = 1002; + this.state = 1014; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 1003; + this.state = 1015; this.functionName(); } break; @@ -2971,16 +2979,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1004; + this.state = 1016; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1005; + this.state = 1017; this.match(TrinoSqlParser.KW_TABLES); - this.state = 1008; + this.state = 1020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1006; + this.state = 1018; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -2989,28 +2997,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1007; + this.state = 1019; this.schemaRef(); } } - this.state = 1016; + this.state = 1028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1010; + this.state = 1022; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1011; + this.state = 1023; (localContext as ShowTablesContext)._pattern = this.string_(); - this.state = 1014; + this.state = 1026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1012; + this.state = 1024; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1013; + this.state = 1025; (localContext as ShowTablesContext)._escape = this.string_(); } } @@ -3024,16 +3032,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSchemasContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1018; + this.state = 1030; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1019; + this.state = 1031; this.match(TrinoSqlParser.KW_SCHEMAS); - this.state = 1022; + this.state = 1034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1020; + this.state = 1032; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3042,28 +3050,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1021; + this.state = 1033; this.catalogRef(); } } - this.state = 1030; + this.state = 1042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1024; + this.state = 1036; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1025; + this.state = 1037; (localContext as ShowSchemasContext)._pattern = this.string_(); - this.state = 1028; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1026; + this.state = 1038; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1027; + this.state = 1039; (localContext as ShowSchemasContext)._escape = this.string_(); } } @@ -3077,27 +3085,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1032; + this.state = 1044; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1033; + this.state = 1045; this.match(TrinoSqlParser.KW_CATALOGS); - this.state = 1040; + this.state = 1052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1034; + this.state = 1046; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1035; + this.state = 1047; (localContext as ShowCatalogsContext)._pattern = this.string_(); - this.state = 1038; + this.state = 1050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1036; + this.state = 1048; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1037; + this.state = 1049; (localContext as ShowCatalogsContext)._escape = this.string_(); } } @@ -3111,11 +3119,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1042; + this.state = 1054; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1043; + this.state = 1055; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1044; + this.state = 1056; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3124,25 +3132,25 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1045; + this.state = 1057; this.tableOrViewName(); - this.state = 1052; + this.state = 1064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1046; + this.state = 1058; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1047; + this.state = 1059; (localContext as ShowColumnsContext)._pattern = this.string_(); - this.state = 1050; + this.state = 1062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1048; + this.state = 1060; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1049; + this.state = 1061; (localContext as ShowColumnsContext)._escape = this.string_(); } } @@ -3156,13 +3164,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1054; + this.state = 1066; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1055; + this.state = 1067; this.match(TrinoSqlParser.KW_STATS); - this.state = 1056; + this.state = 1068; this.match(TrinoSqlParser.KW_FOR); - this.state = 1057; + this.state = 1069; this.tableOrViewName(); } break; @@ -3170,17 +3178,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsForQueryContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1058; + this.state = 1070; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1059; + this.state = 1071; this.match(TrinoSqlParser.KW_STATS); - this.state = 1060; + this.state = 1072; this.match(TrinoSqlParser.KW_FOR); - this.state = 1061; + this.state = 1073; this.match(TrinoSqlParser.T__0); - this.state = 1062; + this.state = 1074; this.rootQuery(); - this.state = 1063; + this.state = 1075; this.match(TrinoSqlParser.T__1); } break; @@ -3188,26 +3196,26 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRolesContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1065; + this.state = 1077; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1067; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 56) { { - this.state = 1066; + this.state = 1078; this.match(TrinoSqlParser.KW_CURRENT); } } - this.state = 1069; + this.state = 1081; this.match(TrinoSqlParser.KW_ROLES); - this.state = 1072; + this.state = 1084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1070; + this.state = 1082; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3216,7 +3224,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1071; + this.state = 1083; this.catalogRef(); } } @@ -3227,18 +3235,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRoleGrantsContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1074; + this.state = 1086; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1075; + this.state = 1087; this.match(TrinoSqlParser.KW_ROLE); - this.state = 1076; + this.state = 1088; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 1079; + this.state = 1091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1077; + this.state = 1089; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3247,7 +3255,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1078; + this.state = 1090; this.catalogRef(); } } @@ -3258,9 +3266,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1081; + this.state = 1093; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1082; + this.state = 1094; this.tableOrViewName(); } break; @@ -3268,9 +3276,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1083; + this.state = 1095; this.match(TrinoSqlParser.KW_DESC); - this.state = 1084; + this.state = 1096; this.tableOrViewName(); } break; @@ -3278,16 +3286,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1085; + this.state = 1097; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1086; + this.state = 1098; this.match(TrinoSqlParser.KW_FUNCTIONS); - this.state = 1089; + this.state = 1101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1087; + this.state = 1099; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3296,28 +3304,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1100; this.schemaRef(); } } - this.state = 1097; + this.state = 1109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1091; + this.state = 1103; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1092; + this.state = 1104; (localContext as ShowFunctionsContext)._pattern = this.string_(); - this.state = 1095; + this.state = 1107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1093; + this.state = 1105; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1094; + this.state = 1106; (localContext as ShowFunctionsContext)._escape = this.string_(); } } @@ -3331,27 +3339,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSessionContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1099; + this.state = 1111; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1100; + this.state = 1112; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1107; + this.state = 1119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1101; + this.state = 1113; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1102; + this.state = 1114; (localContext as ShowSessionContext)._pattern = this.string_(); - this.state = 1105; + this.state = 1117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1103; + this.state = 1115; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1104; + this.state = 1116; (localContext as ShowSessionContext)._escape = this.string_(); } } @@ -3365,13 +3373,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1109; + this.state = 1121; this.match(TrinoSqlParser.KW_SET); - this.state = 1110; + this.state = 1122; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1111; + this.state = 1123; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 1112; + this.state = 1124; this.authorizationUser(); } break; @@ -3379,11 +3387,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1113; + this.state = 1125; this.match(TrinoSqlParser.KW_RESET); - this.state = 1114; + this.state = 1126; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1115; + this.state = 1127; this.match(TrinoSqlParser.KW_AUTHORIZATION); } break; @@ -3391,15 +3399,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1116; + this.state = 1128; this.match(TrinoSqlParser.KW_SET); - this.state = 1117; + this.state = 1129; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1118; + this.state = 1130; this.qualifiedName(); - this.state = 1119; + this.state = 1131; this.match(TrinoSqlParser.EQ); - this.state = 1120; + this.state = 1132; this.expression(); } break; @@ -3407,11 +3415,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1122; + this.state = 1134; this.match(TrinoSqlParser.KW_RESET); - this.state = 1123; + this.state = 1135; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1124; + this.state = 1136; this.qualifiedName(); } break; @@ -3419,30 +3427,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StartTransactionContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1125; + this.state = 1137; this.match(TrinoSqlParser.KW_START); - this.state = 1126; + this.state = 1138; this.match(TrinoSqlParser.KW_TRANSACTION); - this.state = 1135; + this.state = 1147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 220) { { - this.state = 1127; + this.state = 1139; this.transactionMode(); - this.state = 1132; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1128; + this.state = 1140; this.match(TrinoSqlParser.T__2); - this.state = 1129; + this.state = 1141; this.transactionMode(); } } - this.state = 1134; + this.state = 1146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3455,14 +3463,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommitContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1137; + this.state = 1149; this.match(TrinoSqlParser.KW_COMMIT); - this.state = 1139; + this.state = 1151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1138; + this.state = 1150; this.match(TrinoSqlParser.KW_WORK); } } @@ -3473,14 +3481,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollbackContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1141; + this.state = 1153; this.match(TrinoSqlParser.KW_ROLLBACK); - this.state = 1143; + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1142; + this.state = 1154; this.match(TrinoSqlParser.KW_WORK); } } @@ -3491,13 +3499,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PrepareContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1145; + this.state = 1157; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1146; + this.state = 1158; this.identifier(); - this.state = 1147; + this.state = 1159; this.match(TrinoSqlParser.KW_FROM); - this.state = 1148; + this.state = 1160; this.statement(); } break; @@ -3505,11 +3513,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeallocateContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1150; + this.state = 1162; this.match(TrinoSqlParser.KW_DEALLOCATE); - this.state = 1151; + this.state = 1163; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1152; + this.state = 1164; this.identifier(); } break; @@ -3517,32 +3525,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1153; + this.state = 1165; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1154; + this.state = 1166; this.identifier(); - this.state = 1164; + this.state = 1176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1155; + this.state = 1167; this.match(TrinoSqlParser.KW_USING); - this.state = 1156; + this.state = 1168; this.expression(); - this.state = 1161; + this.state = 1173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1157; + this.state = 1169; this.match(TrinoSqlParser.T__2); - this.state = 1158; + this.state = 1170; this.expression(); } } - this.state = 1163; + this.state = 1175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3555,34 +3563,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteImmediateContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1166; + this.state = 1178; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1167; + this.state = 1179; this.match(TrinoSqlParser.KW_IMMEDIATE); - this.state = 1168; + this.state = 1180; this.string_(); - this.state = 1178; + this.state = 1190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1169; + this.state = 1181; this.match(TrinoSqlParser.KW_USING); - this.state = 1170; + this.state = 1182; this.expression(); - this.state = 1175; + this.state = 1187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1171; + this.state = 1183; this.match(TrinoSqlParser.T__2); - this.state = 1172; + this.state = 1184; this.expression(); } } - this.state = 1177; + this.state = 1189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3595,11 +3603,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeInputContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1180; + this.state = 1192; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1181; + this.state = 1193; this.match(TrinoSqlParser.KW_INPUT); - this.state = 1182; + this.state = 1194; this.identifier(); } break; @@ -3607,11 +3615,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeOutputContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1183; + this.state = 1195; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1184; + this.state = 1196; this.match(TrinoSqlParser.KW_OUTPUT); - this.state = 1185; + this.state = 1197; this.identifier(); } break; @@ -3619,11 +3627,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetPathContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1186; + this.state = 1198; this.match(TrinoSqlParser.KW_SET); - this.state = 1187; + this.state = 1199; this.match(TrinoSqlParser.KW_PATH); - this.state = 1188; + this.state = 1200; this.pathSpecification(); } break; @@ -3631,24 +3639,24 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1189; + this.state = 1201; this.match(TrinoSqlParser.KW_SET); - this.state = 1190; + this.state = 1202; this.match(TrinoSqlParser.KW_TIME); - this.state = 1191; + this.state = 1203; this.match(TrinoSqlParser.KW_ZONE); - this.state = 1194; + this.state = 1206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1192; + this.state = 1204; this.match(TrinoSqlParser.KW_LOCAL); } break; case 2: { - this.state = 1193; + this.state = 1205; this.expression(); } break; @@ -3659,36 +3667,36 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UpdateContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1196; + this.state = 1208; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 1197; + this.state = 1209; this.tableRef(); - this.state = 1198; + this.state = 1210; this.match(TrinoSqlParser.KW_SET); - this.state = 1199; + this.state = 1211; this.updateAssignment(); - this.state = 1204; + this.state = 1216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1200; + this.state = 1212; this.match(TrinoSqlParser.T__2); - this.state = 1201; + this.state = 1213; this.updateAssignment(); } } - this.state = 1206; + this.state = 1218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1208; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 1207; + this.state = 1219; this.whereClause(); } } @@ -3699,51 +3707,51 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1210; + this.state = 1222; this.match(TrinoSqlParser.KW_MERGE); - this.state = 1211; + this.state = 1223; this.match(TrinoSqlParser.KW_INTO); - this.state = 1212; + this.state = 1224; this.tableRef(); - this.state = 1217; + this.state = 1229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282056543) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 1214; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1213; + this.state = 1225; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1216; + this.state = 1228; this.identifier(); } } - this.state = 1219; + this.state = 1231; this.match(TrinoSqlParser.KW_USING); - this.state = 1220; + this.state = 1232; this.relation(0); - this.state = 1221; + this.state = 1233; this.match(TrinoSqlParser.KW_ON); - this.state = 1222; + this.state = 1234; this.expression(); - this.state = 1224; + this.state = 1236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1223; + this.state = 1235; this.mergeCase(); } } - this.state = 1226; + this.state = 1238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); @@ -3753,15 +3761,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTableCommentContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1228; + this.state = 1240; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1229; + this.state = 1241; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1230; + this.state = 1242; this.match(TrinoSqlParser.KW_ON); - this.state = 1231; + this.state = 1243; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1232; + this.state = 1244; this.tableRef(); } break; @@ -3769,15 +3777,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnCommentContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1233; + this.state = 1245; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1234; + this.state = 1246; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1235; + this.state = 1247; this.match(TrinoSqlParser.KW_ON); - this.state = 1236; + this.state = 1248; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 1237; + this.state = 1249; this.columnRef(); } break; @@ -3803,17 +3811,17 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1241; + this.state = 1253; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1240; + this.state = 1252; this.withFunction(); } break; } - this.state = 1243; + this.state = 1255; this.query(); } } @@ -3838,23 +3846,23 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1245; + this.state = 1257; this.match(TrinoSqlParser.KW_WITH); - this.state = 1246; + this.state = 1258; this.functionSpecification(); - this.state = 1251; + this.state = 1263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1247; + this.state = 1259; this.match(TrinoSqlParser.T__2); - this.state = 1248; + this.state = 1260; this.functionSpecification(); } } - this.state = 1253; + this.state = 1265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3882,17 +3890,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1255; + this.state = 1267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 1254; + this.state = 1266; this.with_(); } } - this.state = 1257; + this.state = 1269; this.queryNoWith(); } } @@ -3917,33 +3925,33 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1259; + this.state = 1271; this.match(TrinoSqlParser.KW_WITH); - this.state = 1261; + this.state = 1273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 221) { { - this.state = 1260; + this.state = 1272; this.match(TrinoSqlParser.KW_RECURSIVE); } } - this.state = 1263; + this.state = 1275; this.namedQuery(); - this.state = 1268; + this.state = 1280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1264; + this.state = 1276; this.match(TrinoSqlParser.T__2); - this.state = 1265; + this.state = 1277; this.namedQuery(); } } - this.state = 1270; + this.state = 1282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3967,7 +3975,7 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new TableElementContext(this.context, this.state); this.enterRule(localContext, 26, TrinoSqlParser.RULE_tableElement); try { - this.state = 1273; + this.state = 1285; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -4189,14 +4197,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1283; this.columnDefinition(); } break; case TrinoSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1272; + this.state = 1284; this.likeClause(); } break; @@ -4225,42 +4233,42 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1275; + this.state = 1287; this.columnNameCreate(); - this.state = 1276; + this.state = 1288; localContext._colType = this.type_(0); - this.state = 1279; + this.state = 1291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 1277; + this.state = 1289; this.match(TrinoSqlParser.KW_NOT); - this.state = 1278; + this.state = 1290; this.match(TrinoSqlParser.KW_NULL); } } - this.state = 1283; + this.state = 1295; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1281; + this.state = 1293; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1282; + this.state = 1294; localContext._comment = this.string_(); } break; } - this.state = 1287; + this.state = 1299; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1285; + this.state = 1297; this.match(TrinoSqlParser.KW_WITH); - this.state = 1286; + this.state = 1298; this.properties(); } break; @@ -4288,16 +4296,16 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1289; + this.state = 1301; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1290; + this.state = 1302; this.tableRef(); - this.state = 1293; + this.state = 1305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92 || _la === 123) { { - this.state = 1291; + this.state = 1303; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 123)) { @@ -4307,7 +4315,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1292; + this.state = 1304; this.match(TrinoSqlParser.KW_PROPERTIES); } } @@ -4334,11 +4342,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1295; + this.state = 1307; this.match(TrinoSqlParser.T__0); - this.state = 1296; + this.state = 1308; this.propertyAssignments(); - this.state = 1297; + this.state = 1309; this.match(TrinoSqlParser.T__1); } } @@ -4363,21 +4371,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1299; + this.state = 1311; this.property(); - this.state = 1304; + this.state = 1316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1300; + this.state = 1312; this.match(TrinoSqlParser.T__2); - this.state = 1301; + this.state = 1313; this.property(); } } - this.state = 1306; + this.state = 1318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4403,11 +4411,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1307; + this.state = 1319; this.identifier(); - this.state = 1308; + this.state = 1320; this.match(TrinoSqlParser.EQ); - this.state = 1309; + this.state = 1321; this.propertyValue(); } } @@ -4429,14 +4437,14 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 38, TrinoSqlParser.RULE_propertyValue); try { - this.state = 1313; + this.state = 1325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: localContext = new DefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1311; + this.state = 1323; this.match(TrinoSqlParser.KW_DEFAULT); } break; @@ -4444,7 +4452,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NonDefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1312; + this.state = 1324; this.expression(); } break; @@ -4471,53 +4479,53 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1315; + this.state = 1327; this.queryTerm(0); - this.state = 1326; + this.state = 1338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1316; + this.state = 1328; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1317; + this.state = 1329; this.match(TrinoSqlParser.KW_BY); - this.state = 1318; + this.state = 1330; this.sortItem(); - this.state = 1323; + this.state = 1335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1319; + this.state = 1331; this.match(TrinoSqlParser.T__2); - this.state = 1320; + this.state = 1332; this.sortItem(); } } - this.state = 1325; + this.state = 1337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1333; + this.state = 1345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1328; + this.state = 1340; this.match(TrinoSqlParser.KW_OFFSET); - this.state = 1329; + this.state = 1341; localContext._offset = this.rowCount(); - this.state = 1331; + this.state = 1343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 239 || _la === 240) { { - this.state = 1330; + this.state = 1342; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4532,15 +4540,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1348; + this.state = 1360; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LIMIT: { { - this.state = 1335; + this.state = 1347; this.match(TrinoSqlParser.KW_LIMIT); - this.state = 1336; + this.state = 1348; localContext._limit = this.limitRowCount(); } } @@ -4548,9 +4556,9 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FETCH: { { - this.state = 1337; + this.state = 1349; this.match(TrinoSqlParser.KW_FETCH); - this.state = 1338; + this.state = 1350; _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 174)) { this.errorHandler.recoverInline(this); @@ -4559,17 +4567,17 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1340; + this.state = 1352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 324 || _la === 329) { { - this.state = 1339; + this.state = 1351; localContext._fetchFirst = this.rowCount(); } } - this.state = 1342; + this.state = 1354; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4578,20 +4586,20 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1346; + this.state = 1358; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONLY: { - this.state = 1343; + this.state = 1355; this.match(TrinoSqlParser.KW_ONLY); } break; case TrinoSqlParser.KW_WITH: { - this.state = 1344; + this.state = 1356; this.match(TrinoSqlParser.KW_WITH); - this.state = 1345; + this.state = 1357; this.match(TrinoSqlParser.KW_TIES); } break; @@ -4661,13 +4669,13 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new LimitRowCountContext(this.context, this.state); this.enterRule(localContext, 42, TrinoSqlParser.RULE_limitRowCount); try { - this.state = 1352; + this.state = 1364; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1350; + this.state = 1362; this.match(TrinoSqlParser.KW_ALL); } break; @@ -4675,7 +4683,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1351; + this.state = 1363; this.rowCount(); } break; @@ -4704,7 +4712,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1354; + this.state = 1366; _la = this.tokenStream.LA(1); if(!(_la === 324 || _la === 329)) { this.errorHandler.recoverInline(this); @@ -4753,11 +4761,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1357; + this.state = 1369; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1373; + this.state = 1385; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -4767,7 +4775,7 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1371; + this.state = 1383; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: @@ -4775,23 +4783,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1359; + this.state = 1371; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1360; + this.state = 1372; (localContext as SetOperationContext)._operator = this.match(TrinoSqlParser.KW_INTERSECT); - this.state = 1362; + this.state = 1374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1361; + this.state = 1373; this.setQuantifier(); } } - this.state = 1364; + this.state = 1376; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -4800,11 +4808,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1365; + this.state = 1377; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1366; + this.state = 1378; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 281)) { @@ -4814,24 +4822,24 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1368; + this.state = 1380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1367; + this.state = 1379; this.setQuantifier(); } } - this.state = 1370; + this.state = 1382; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1375; + this.state = 1387; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } @@ -4856,14 +4864,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 48, TrinoSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1392; + this.state = 1404; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1376; + this.state = 1388; this.querySpecification(); } break; @@ -4871,9 +4879,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1377; + this.state = 1389; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1378; + this.state = 1390; this.tableRef(); } break; @@ -4881,25 +4889,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1379; + this.state = 1391; this.match(TrinoSqlParser.KW_VALUES); - this.state = 1380; + this.state = 1392; this.expression(); - this.state = 1385; + this.state = 1397; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1381; + this.state = 1393; this.match(TrinoSqlParser.T__2); - this.state = 1382; + this.state = 1394; this.expression(); } } } - this.state = 1387; + this.state = 1399; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } @@ -4909,11 +4917,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1388; + this.state = 1400; this.match(TrinoSqlParser.T__0); - this.state = 1389; + this.state = 1401; this.queryNoWith(); - this.state = 1390; + this.state = 1402; this.match(TrinoSqlParser.T__1); } break; @@ -4942,28 +4950,28 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1396; + this.state = 1408; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1394; + this.state = 1406; this.columnRef(); } break; case 2: { - this.state = 1395; + this.state = 1407; this.expression(); } break; } - this.state = 1399; + this.state = 1411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1398; + this.state = 1410; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 29 || _la === 75)) { @@ -4976,14 +4984,14 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 1403; + this.state = 1415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1401; + this.state = 1413; this.match(TrinoSqlParser.KW_NULLS); - this.state = 1402; + this.state = 1414; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 148)) { @@ -5019,128 +5027,110 @@ export class TrinoSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1405; + this.state = 1417; this.match(TrinoSqlParser.KW_SELECT); - this.state = 1407; + this.state = 1419; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 1406; + this.state = 1418; this.setQuantifier(); } break; } - this.state = 1409; - this.selectItem(); - this.state = 1414; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1410; - this.match(TrinoSqlParser.T__2); - this.state = 1411; - this.selectItem(); - } - } - } - this.state = 1416; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); - } - this.state = 1426; + this.state = 1421; + this.selectList(); + this.state = 1431; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { - this.state = 1417; + this.state = 1422; this.match(TrinoSqlParser.KW_FROM); - this.state = 1418; - this.relation(0); this.state = 1423; + this.relation(0); + this.state = 1428; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1419; + this.state = 1424; this.match(TrinoSqlParser.T__2); - this.state = 1420; + this.state = 1425; this.relation(0); } } } - this.state = 1425; + this.state = 1430; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); } } break; } - this.state = 1429; + this.state = 1434; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 1428; + this.state = 1433; this.whereClause(); } break; } - this.state = 1434; + this.state = 1439; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1431; + this.state = 1436; this.match(TrinoSqlParser.KW_GROUP); - this.state = 1432; + this.state = 1437; this.match(TrinoSqlParser.KW_BY); - this.state = 1433; + this.state = 1438; this.groupBy(); } break; } - this.state = 1437; + this.state = 1442; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1436; + this.state = 1441; this.havingClause(); } break; } - this.state = 1448; + this.state = 1453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 1439; + this.state = 1444; this.match(TrinoSqlParser.KW_WINDOW); - this.state = 1440; - this.windowDefinition(); this.state = 1445; + this.windowDefinition(); + this.state = 1450; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1441; + this.state = 1446; this.match(TrinoSqlParser.T__2); - this.state = 1442; + this.state = 1447; this.windowDefinition(); } } } - this.state = 1447; + this.state = 1452; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } } break; @@ -5161,16 +5151,42 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } - public whereClause(): WhereClauseContext { - let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 54, TrinoSqlParser.RULE_whereClause); + public whereClause(): WhereClauseContext { + let localContext = new WhereClauseContext(this.context, this.state); + this.enterRule(localContext, 54, TrinoSqlParser.RULE_whereClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1455; + this.match(TrinoSqlParser.KW_WHERE); + this.state = 1456; + localContext._where = this.booleanExpression(0); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public havingClause(): HavingClauseContext { + let localContext = new HavingClauseContext(this.context, this.state); + this.enterRule(localContext, 56, TrinoSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1450; - this.match(TrinoSqlParser.KW_WHERE); - this.state = 1451; - localContext._where = this.booleanExpression(0); + this.state = 1458; + this.match(TrinoSqlParser.KW_HAVING); + this.state = 1459; + localContext._having = this.booleanExpression(0); } } catch (re) { @@ -5187,16 +5203,33 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } - public havingClause(): HavingClauseContext { - let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 56, TrinoSqlParser.RULE_havingClause); + public selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 58, TrinoSqlParser.RULE_selectList); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1453; - this.match(TrinoSqlParser.KW_HAVING); - this.state = 1454; - localContext._having = this.booleanExpression(0); + this.state = 1461; + this.selectItem(); + this.state = 1466; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1462; + this.match(TrinoSqlParser.T__2); + this.state = 1463; + this.selectItem(); + } + } + } + this.state = 1468; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); + } } } catch (re) { @@ -5215,38 +5248,38 @@ export class TrinoSqlParser extends SQLParserBase { } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupBy); + this.enterRule(localContext, 60, TrinoSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1470; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 1456; + this.state = 1469; this.setQuantifier(); } break; } - this.state = 1459; + this.state = 1472; this.groupingElement(); - this.state = 1464; + this.state = 1477; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1460; + this.state = 1473; this.match(TrinoSqlParser.T__2); - this.state = 1461; + this.state = 1474; this.groupingElement(); } } } - this.state = 1466; + this.state = 1479; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); } @@ -5268,26 +5301,26 @@ export class TrinoSqlParser extends SQLParserBase { } public partitionBy(): PartitionByContext { let localContext = new PartitionByContext(this.context, this.state); - this.enterRule(localContext, 60, TrinoSqlParser.RULE_partitionBy); + this.enterRule(localContext, 62, TrinoSqlParser.RULE_partitionBy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1467; + this.state = 1480; this.expression(); - this.state = 1472; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1468; + this.state = 1481; this.match(TrinoSqlParser.T__2); - this.state = 1469; + this.state = 1482; this.expression(); } } - this.state = 1474; + this.state = 1487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5309,17 +5342,17 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 62, TrinoSqlParser.RULE_groupingElement); + this.enterRule(localContext, 64, TrinoSqlParser.RULE_groupingElement); let _la: number; try { - this.state = 1515; + this.state = 1528; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1475; + this.state = 1488; this.groupingSet(); } break; @@ -5327,37 +5360,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollupContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1476; + this.state = 1489; this.match(TrinoSqlParser.KW_ROLLUP); - this.state = 1477; + this.state = 1490; this.match(TrinoSqlParser.T__0); - this.state = 1486; + this.state = 1499; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1478; + this.state = 1491; this.groupingSet(); - this.state = 1483; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1479; + this.state = 1492; this.match(TrinoSqlParser.T__2); - this.state = 1480; + this.state = 1493; this.groupingSet(); } } - this.state = 1485; + this.state = 1498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1488; + this.state = 1501; this.match(TrinoSqlParser.T__1); } break; @@ -5365,37 +5398,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CubeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1489; + this.state = 1502; this.match(TrinoSqlParser.KW_CUBE); - this.state = 1490; + this.state = 1503; this.match(TrinoSqlParser.T__0); - this.state = 1499; + this.state = 1512; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1491; + this.state = 1504; this.groupingSet(); - this.state = 1496; + this.state = 1509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1492; + this.state = 1505; this.match(TrinoSqlParser.T__2); - this.state = 1493; + this.state = 1506; this.groupingSet(); } } - this.state = 1498; + this.state = 1511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1501; + this.state = 1514; this.match(TrinoSqlParser.T__1); } break; @@ -5403,31 +5436,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MultipleGroupingSetsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1502; + this.state = 1515; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 1503; + this.state = 1516; this.match(TrinoSqlParser.KW_SETS); - this.state = 1504; + this.state = 1517; this.match(TrinoSqlParser.T__0); - this.state = 1505; + this.state = 1518; this.groupingSet(); - this.state = 1510; + this.state = 1523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1506; + this.state = 1519; this.match(TrinoSqlParser.T__2); - this.state = 1507; + this.state = 1520; this.groupingSet(); } } - this.state = 1512; + this.state = 1525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1513; + this.state = 1526; this.match(TrinoSqlParser.T__1); } break; @@ -5449,51 +5482,51 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 64, TrinoSqlParser.RULE_groupingSet); + this.enterRule(localContext, 66, TrinoSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1530; + this.state = 1543; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1517; + this.state = 1530; this.match(TrinoSqlParser.T__0); - this.state = 1526; + this.state = 1539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 1518; + this.state = 1531; this.groupingTerm(); - this.state = 1523; + this.state = 1536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1519; + this.state = 1532; this.match(TrinoSqlParser.T__2); - this.state = 1520; + this.state = 1533; this.groupingTerm(); } } - this.state = 1525; + this.state = 1538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1528; + this.state = 1541; this.match(TrinoSqlParser.T__1); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1529; + this.state = 1542; this.groupingTerm(); } break; @@ -5515,22 +5548,22 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingTerm(): GroupingTermContext { let localContext = new GroupingTermContext(this.context, this.state); - this.enterRule(localContext, 66, TrinoSqlParser.RULE_groupingTerm); + this.enterRule(localContext, 68, TrinoSqlParser.RULE_groupingTerm); try { - this.state = 1534; + this.state = 1547; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1532; + this.state = 1545; this.columnRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1533; + this.state = 1546; this.expression(); } break; @@ -5552,19 +5585,19 @@ export class TrinoSqlParser extends SQLParserBase { } public windowDefinition(): WindowDefinitionContext { let localContext = new WindowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 68, TrinoSqlParser.RULE_windowDefinition); + this.enterRule(localContext, 70, TrinoSqlParser.RULE_windowDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1536; + this.state = 1549; localContext._name = this.identifier(); - this.state = 1537; + this.state = 1550; this.match(TrinoSqlParser.KW_AS); - this.state = 1538; + this.state = 1551; this.match(TrinoSqlParser.T__0); - this.state = 1539; + this.state = 1552; this.windowSpecification(); - this.state = 1540; + this.state = 1553; this.match(TrinoSqlParser.T__1); } } @@ -5584,71 +5617,71 @@ export class TrinoSqlParser extends SQLParserBase { } public windowSpecification(): WindowSpecificationContext { let localContext = new WindowSpecificationContext(this.context, this.state); - this.enterRule(localContext, 70, TrinoSqlParser.RULE_windowSpecification); + this.enterRule(localContext, 72, TrinoSqlParser.RULE_windowSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1543; + this.state = 1556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: { - this.state = 1542; + this.state = 1555; localContext._existingWindowName = this.identifier(); } break; } - this.state = 1548; + this.state = 1561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1545; + this.state = 1558; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1546; + this.state = 1559; this.match(TrinoSqlParser.KW_BY); - this.state = 1547; + this.state = 1560; this.partitionBy(); } } - this.state = 1560; + this.state = 1573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1550; + this.state = 1563; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1551; + this.state = 1564; this.match(TrinoSqlParser.KW_BY); - this.state = 1552; + this.state = 1565; this.sortItem(); - this.state = 1557; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1553; + this.state = 1566; this.match(TrinoSqlParser.T__2); - this.state = 1554; + this.state = 1567; this.sortItem(); } } - this.state = 1559; + this.state = 1572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1563; + this.state = 1576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116 || _la === 168 || _la === 219 || _la === 240) { { - this.state = 1562; + this.state = 1575; this.windowFrame(); } } @@ -5671,30 +5704,30 @@ export class TrinoSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 72, TrinoSqlParser.RULE_namedQuery); + this.enterRule(localContext, 74, TrinoSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1565; + this.state = 1578; localContext._name = this.identifier(); - this.state = 1567; + this.state = 1580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 1566; + this.state = 1579; this.columnAliases(); } } - this.state = 1569; + this.state = 1582; this.match(TrinoSqlParser.KW_AS); - this.state = 1570; + this.state = 1583; this.match(TrinoSqlParser.T__0); - this.state = 1571; + this.state = 1584; this.query(); - this.state = 1572; + this.state = 1585; this.match(TrinoSqlParser.T__1); } } @@ -5714,12 +5747,12 @@ export class TrinoSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 74, TrinoSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 76, TrinoSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1574; + this.state = 1587; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 79)) { this.errorHandler.recoverInline(this); @@ -5746,72 +5779,66 @@ export class TrinoSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 76, TrinoSqlParser.RULE_selectItem); + this.enterRule(localContext, 78, TrinoSqlParser.RULE_selectItem); let _la: number; try { - this.state = 1594; + this.state = 1605; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: - localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1576; - this.columnRef(); + this.state = 1589; + this.selectLiteralColumnName(); } break; case 2: { - this.state = 1577; - this.expression(); + this.state = 1590; + this.selectExpressionColumnName(); } break; } - this.state = 1584; + this.state = 1597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1581; + this.state = 1594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1580; + this.state = 1593; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1583; - (localContext as SelectSingleContext)._alias = this.identifier(); + this.state = 1596; + localContext._alias = this.identifier(); } break; } } break; case 2: - localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1586; - this.primaryExpression(0); - this.state = 1587; - this.match(TrinoSqlParser.T__3); - this.state = 1588; - this.match(TrinoSqlParser.ASTERISK); - this.state = 1591; + this.state = 1599; + this.tableAllColumns(); + this.state = 1602; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1589; + this.state = 1600; this.match(TrinoSqlParser.KW_AS); - this.state = 1590; + this.state = 1601; this.columnAliases(); } break; @@ -5819,11 +5846,10 @@ export class TrinoSqlParser extends SQLParserBase { } break; case 3: - localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1593; - this.match(TrinoSqlParser.ASTERISK); + this.state = 1604; + this.selectAllWithoutTable(); } break; } @@ -5842,6 +5868,106 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public selectAllWithoutTable(): SelectAllWithoutTableContext { + let localContext = new SelectAllWithoutTableContext(this.context, this.state); + this.enterRule(localContext, 80, TrinoSqlParser.RULE_selectAllWithoutTable); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1607; + this.match(TrinoSqlParser.ASTERISK); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 82, TrinoSqlParser.RULE_tableAllColumns); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1609; + this.primaryExpression(0); + this.state = 1610; + this.match(TrinoSqlParser.T__3); + this.state = 1611; + this.match(TrinoSqlParser.ASTERISK); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 84, TrinoSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1613; + this.columnRef(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 86, TrinoSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1615; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public relation(): RelationContext; public relation(_p: number): RelationContext; @@ -5854,8 +5980,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 78; - this.enterRecursionRule(localContext, 78, TrinoSqlParser.RULE_relation, _p); + let _startState = 88; + this.enterRecursionRule(localContext, 88, TrinoSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -5865,11 +5991,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1597; + this.state = 1618; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1617; + this.state = 1638; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5883,20 +6009,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_relation); - this.state = 1599; + this.state = 1620; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1613; + this.state = 1634; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_CROSS: { - this.state = 1600; + this.state = 1621; this.match(TrinoSqlParser.KW_CROSS); - this.state = 1601; + this.state = 1622; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1602; + this.state = 1623; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5906,25 +6032,25 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: case TrinoSqlParser.KW_RIGHT: { - this.state = 1603; + this.state = 1624; this.joinType(); - this.state = 1604; + this.state = 1625; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1605; + this.state = 1626; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 1606; + this.state = 1627; this.joinCriteria(); } break; case TrinoSqlParser.KW_NATURAL: { - this.state = 1608; + this.state = 1629; this.match(TrinoSqlParser.KW_NATURAL); - this.state = 1609; + this.state = 1630; this.joinType(); - this.state = 1610; + this.state = 1631; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1611; + this.state = 1632; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5934,7 +6060,7 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 1619; + this.state = 1640; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); } @@ -5956,22 +6082,22 @@ export class TrinoSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 80, TrinoSqlParser.RULE_joinType); + this.enterRule(localContext, 90, TrinoSqlParser.RULE_joinType); let _la: number; try { - this.state = 1635; + this.state = 1656; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 1621; + this.state = 1642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 1620; + this.state = 1641; this.match(TrinoSqlParser.KW_INNER); } } @@ -5981,14 +6107,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: this.enterOuterAlt(localContext, 2); { - this.state = 1623; + this.state = 1644; this.match(TrinoSqlParser.KW_LEFT); - this.state = 1625; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1624; + this.state = 1645; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5998,14 +6124,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 3); { - this.state = 1627; + this.state = 1648; this.match(TrinoSqlParser.KW_RIGHT); - this.state = 1629; + this.state = 1650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1628; + this.state = 1649; this.match(TrinoSqlParser.KW_OUTER); } } @@ -6015,14 +6141,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FULL: this.enterOuterAlt(localContext, 4); { - this.state = 1631; + this.state = 1652; this.match(TrinoSqlParser.KW_FULL); - this.state = 1633; + this.state = 1654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1632; + this.state = 1653; this.match(TrinoSqlParser.KW_OUTER); } } @@ -6049,47 +6175,47 @@ export class TrinoSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 82, TrinoSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 92, TrinoSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 1651; + this.state = 1672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1637; + this.state = 1658; this.match(TrinoSqlParser.KW_ON); - this.state = 1638; + this.state = 1659; this.booleanExpression(0); } break; case TrinoSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1639; + this.state = 1660; this.match(TrinoSqlParser.KW_USING); - this.state = 1640; + this.state = 1661; this.match(TrinoSqlParser.T__0); - this.state = 1641; + this.state = 1662; this.identifier(); - this.state = 1646; + this.state = 1667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1642; + this.state = 1663; this.match(TrinoSqlParser.T__2); - this.state = 1643; + this.state = 1664; this.identifier(); } } - this.state = 1648; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1649; + this.state = 1670; this.match(TrinoSqlParser.T__1); } break; @@ -6113,26 +6239,26 @@ export class TrinoSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 84, TrinoSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 94, TrinoSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 1653; + this.state = 1674; this.patternRecognition(); - this.state = 1660; + this.state = 1681; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: { - this.state = 1654; + this.state = 1675; this.match(TrinoSqlParser.KW_TABLESAMPLE); - this.state = 1655; + this.state = 1676; this.sampleType(); - this.state = 1656; + this.state = 1677; this.match(TrinoSqlParser.T__0); - this.state = 1657; + this.state = 1678; localContext._percentage = this.expression(); - this.state = 1658; + this.state = 1679; this.match(TrinoSqlParser.T__1); } break; @@ -6155,12 +6281,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 86, TrinoSqlParser.RULE_sampleType); + this.enterRule(localContext, 96, TrinoSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1662; + this.state = 1683; _la = this.tokenStream.LA(1); if(!(_la === 33 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -6187,12 +6313,12 @@ export class TrinoSqlParser extends SQLParserBase { } public trimsSpecification(): TrimsSpecificationContext { let localContext = new TrimsSpecificationContext(this.context, this.state); - this.enterRule(localContext, 88, TrinoSqlParser.RULE_trimsSpecification); + this.enterRule(localContext, 98, TrinoSqlParser.RULE_trimsSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1664; + this.state = 1685; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 150 || _la === 270)) { this.errorHandler.recoverInline(this); @@ -6219,35 +6345,35 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggOverflowBehavior(): ListAggOverflowBehaviorContext { let localContext = new ListAggOverflowBehaviorContext(this.context, this.state); - this.enterRule(localContext, 90, TrinoSqlParser.RULE_listAggOverflowBehavior); + this.enterRule(localContext, 100, TrinoSqlParser.RULE_listAggOverflowBehavior); let _la: number; try { - this.state = 1672; + this.state = 1693; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 1666; + this.state = 1687; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 2); { - this.state = 1667; + this.state = 1688; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 1669; + this.state = 1690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326 || _la === 327) { { - this.state = 1668; + this.state = 1689; this.string_(); } } - this.state = 1671; + this.state = 1692; this.listAggCountIndication(); } break; @@ -6271,26 +6397,26 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggCountIndication(): ListAggCountIndicationContext { let localContext = new ListAggCountIndicationContext(this.context, this.state); - this.enterRule(localContext, 92, TrinoSqlParser.RULE_listAggCountIndication); + this.enterRule(localContext, 102, TrinoSqlParser.RULE_listAggCountIndication); try { - this.state = 1678; + this.state = 1699; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 1674; + this.state = 1695; this.match(TrinoSqlParser.KW_WITH); - this.state = 1675; + this.state = 1696; this.match(TrinoSqlParser.KW_COUNT); } break; case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 2); { - this.state = 1676; + this.state = 1697; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 1677; + this.state = 1698; this.match(TrinoSqlParser.KW_COUNT); } break; @@ -6314,124 +6440,124 @@ export class TrinoSqlParser extends SQLParserBase { } public patternRecognition(): PatternRecognitionContext { let localContext = new PatternRecognitionContext(this.context, this.state); - this.enterRule(localContext, 94, TrinoSqlParser.RULE_patternRecognition); + this.enterRule(localContext, 104, TrinoSqlParser.RULE_patternRecognition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1680; + this.state = 1701; this.aliasedRelation(); - this.state = 1756; + this.state = 1777; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1681; + this.state = 1702; this.match(TrinoSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1682; + this.state = 1703; this.match(TrinoSqlParser.T__0); - this.state = 1686; + this.state = 1707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1683; + this.state = 1704; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1684; + this.state = 1705; this.match(TrinoSqlParser.KW_BY); - this.state = 1685; + this.state = 1706; this.partitionBy(); } } - this.state = 1698; + this.state = 1719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1688; + this.state = 1709; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1689; + this.state = 1710; this.match(TrinoSqlParser.KW_BY); - this.state = 1690; + this.state = 1711; this.sortItem(); - this.state = 1695; + this.state = 1716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1691; + this.state = 1712; this.match(TrinoSqlParser.T__2); - this.state = 1692; + this.state = 1713; this.sortItem(); } } - this.state = 1697; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1709; + this.state = 1730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1700; + this.state = 1721; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 1701; + this.state = 1722; this.measureDefinition(); - this.state = 1706; + this.state = 1727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1702; + this.state = 1723; this.match(TrinoSqlParser.T__2); - this.state = 1703; + this.state = 1724; this.measureDefinition(); } } - this.state = 1708; + this.state = 1729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1712; + this.state = 1733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 191) { { - this.state = 1711; + this.state = 1732; this.rowsPerMatch(); } } - this.state = 1717; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1714; + this.state = 1735; this.match(TrinoSqlParser.KW_AFTER); - this.state = 1715; + this.state = 1736; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1716; + this.state = 1737; this.skipTo(); } } - this.state = 1720; + this.state = 1741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 1719; + this.state = 1740; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -6443,87 +6569,87 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1722; + this.state = 1743; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 1723; + this.state = 1744; this.match(TrinoSqlParser.T__0); - this.state = 1724; + this.state = 1745; this.rowPattern(0); - this.state = 1725; + this.state = 1746; this.match(TrinoSqlParser.T__1); - this.state = 1735; + this.state = 1756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1726; + this.state = 1747; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 1727; + this.state = 1748; this.subsetDefinition(); - this.state = 1732; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1728; + this.state = 1749; this.match(TrinoSqlParser.T__2); - this.state = 1729; + this.state = 1750; this.subsetDefinition(); } } - this.state = 1734; + this.state = 1755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1737; + this.state = 1758; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 1738; + this.state = 1759; this.variableDefinition(); - this.state = 1743; + this.state = 1764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1739; + this.state = 1760; this.match(TrinoSqlParser.T__2); - this.state = 1740; + this.state = 1761; this.variableDefinition(); } } - this.state = 1745; + this.state = 1766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1746; + this.state = 1767; this.match(TrinoSqlParser.T__1); - this.state = 1754; + this.state = 1775; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1748; + this.state = 1769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1747; + this.state = 1768; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1750; + this.state = 1771; this.identifier(); - this.state = 1752; + this.state = 1773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1751; + this.state = 1772; this.columnAliases(); } break; @@ -6552,15 +6678,15 @@ export class TrinoSqlParser extends SQLParserBase { } public measureDefinition(): MeasureDefinitionContext { let localContext = new MeasureDefinitionContext(this.context, this.state); - this.enterRule(localContext, 96, TrinoSqlParser.RULE_measureDefinition); + this.enterRule(localContext, 106, TrinoSqlParser.RULE_measureDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1758; + this.state = 1779; this.expression(); - this.state = 1759; + this.state = 1780; this.match(TrinoSqlParser.KW_AS); - this.state = 1760; + this.state = 1781; this.identifier(); } } @@ -6580,42 +6706,42 @@ export class TrinoSqlParser extends SQLParserBase { } public rowsPerMatch(): RowsPerMatchContext { let localContext = new RowsPerMatchContext(this.context, this.state); - this.enterRule(localContext, 98, TrinoSqlParser.RULE_rowsPerMatch); + this.enterRule(localContext, 108, TrinoSqlParser.RULE_rowsPerMatch); let _la: number; try { - this.state = 1773; + this.state = 1794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONE: this.enterOuterAlt(localContext, 1); { - this.state = 1762; + this.state = 1783; this.match(TrinoSqlParser.KW_ONE); - this.state = 1763; + this.state = 1784; this.match(TrinoSqlParser.KW_ROW); - this.state = 1764; + this.state = 1785; this.match(TrinoSqlParser.KW_PER); - this.state = 1765; + this.state = 1786; this.match(TrinoSqlParser.KW_MATCH); } break; case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 2); { - this.state = 1766; + this.state = 1787; this.match(TrinoSqlParser.KW_ALL); - this.state = 1767; + this.state = 1788; this.match(TrinoSqlParser.KW_ROWS); - this.state = 1768; + this.state = 1789; this.match(TrinoSqlParser.KW_PER); - this.state = 1769; + this.state = 1790; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1771; + this.state = 1792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189 || _la === 253 || _la === 304) { { - this.state = 1770; + this.state = 1791; this.emptyMatchHandling(); } } @@ -6642,41 +6768,41 @@ export class TrinoSqlParser extends SQLParserBase { } public emptyMatchHandling(): EmptyMatchHandlingContext { let localContext = new EmptyMatchHandlingContext(this.context, this.state); - this.enterRule(localContext, 100, TrinoSqlParser.RULE_emptyMatchHandling); + this.enterRule(localContext, 110, TrinoSqlParser.RULE_emptyMatchHandling); try { - this.state = 1784; + this.state = 1805; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SHOW: this.enterOuterAlt(localContext, 1); { - this.state = 1775; + this.state = 1796; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1776; + this.state = 1797; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1777; + this.state = 1798; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_OMIT: this.enterOuterAlt(localContext, 2); { - this.state = 1778; + this.state = 1799; this.match(TrinoSqlParser.KW_OMIT); - this.state = 1779; + this.state = 1800; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1780; + this.state = 1801; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1781; + this.state = 1802; this.match(TrinoSqlParser.KW_WITH); - this.state = 1782; + this.state = 1803; this.match(TrinoSqlParser.KW_UNMATCHED); - this.state = 1783; + this.state = 1804; this.match(TrinoSqlParser.KW_ROWS); } break; @@ -6700,71 +6826,71 @@ export class TrinoSqlParser extends SQLParserBase { } public skipTo(): SkipToContext { let localContext = new SkipToContext(this.context, this.state); - this.enterRule(localContext, 102, TrinoSqlParser.RULE_skipTo); + this.enterRule(localContext, 112, TrinoSqlParser.RULE_skipTo); try { - this.state = 1805; + this.state = 1826; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1786; + this.state = 1807; this.match(TrinoSqlParser.T__4); - this.state = 1787; + this.state = 1808; this.match(TrinoSqlParser.KW_TO); - this.state = 1788; + this.state = 1809; this.match(TrinoSqlParser.KW_NEXT); - this.state = 1789; + this.state = 1810; this.match(TrinoSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1790; + this.state = 1811; this.match(TrinoSqlParser.T__4); - this.state = 1791; + this.state = 1812; this.match(TrinoSqlParser.KW_PAST); - this.state = 1792; + this.state = 1813; this.match(TrinoSqlParser.KW_LAST); - this.state = 1793; + this.state = 1814; this.match(TrinoSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1794; + this.state = 1815; this.match(TrinoSqlParser.T__4); - this.state = 1795; + this.state = 1816; this.match(TrinoSqlParser.KW_TO); - this.state = 1796; + this.state = 1817; this.match(TrinoSqlParser.KW_FIRST); - this.state = 1797; + this.state = 1818; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1798; + this.state = 1819; this.match(TrinoSqlParser.T__4); - this.state = 1799; + this.state = 1820; this.match(TrinoSqlParser.KW_TO); - this.state = 1800; + this.state = 1821; this.match(TrinoSqlParser.KW_LAST); - this.state = 1801; + this.state = 1822; this.identifier(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1802; + this.state = 1823; this.match(TrinoSqlParser.T__4); - this.state = 1803; + this.state = 1824; this.match(TrinoSqlParser.KW_TO); - this.state = 1804; + this.state = 1825; this.identifier(); } break; @@ -6786,38 +6912,38 @@ export class TrinoSqlParser extends SQLParserBase { } public subsetDefinition(): SubsetDefinitionContext { let localContext = new SubsetDefinitionContext(this.context, this.state); - this.enterRule(localContext, 104, TrinoSqlParser.RULE_subsetDefinition); + this.enterRule(localContext, 114, TrinoSqlParser.RULE_subsetDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1807; + this.state = 1828; localContext._name = this.identifier(); - this.state = 1808; + this.state = 1829; this.match(TrinoSqlParser.EQ); - this.state = 1809; + this.state = 1830; this.match(TrinoSqlParser.T__0); - this.state = 1810; + this.state = 1831; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); - this.state = 1815; + this.state = 1836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1811; + this.state = 1832; this.match(TrinoSqlParser.T__2); - this.state = 1812; + this.state = 1833; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); } } - this.state = 1817; + this.state = 1838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1818; + this.state = 1839; this.match(TrinoSqlParser.T__1); } } @@ -6837,15 +6963,15 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDefinition(): VariableDefinitionContext { let localContext = new VariableDefinitionContext(this.context, this.state); - this.enterRule(localContext, 106, TrinoSqlParser.RULE_variableDefinition); + this.enterRule(localContext, 116, TrinoSqlParser.RULE_variableDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1820; + this.state = 1841; this.identifier(); - this.state = 1821; + this.state = 1842; this.match(TrinoSqlParser.KW_AS); - this.state = 1822; + this.state = 1843; this.expression(); } } @@ -6865,36 +6991,36 @@ export class TrinoSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 108, TrinoSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 118, TrinoSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1824; + this.state = 1845; this.relationPrimary(); - this.state = 1832; + this.state = 1853; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1826; + this.state = 1847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1825; + this.state = 1846; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1828; + this.state = 1849; localContext._alias = this.identifier(); - this.state = 1830; + this.state = 1851; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 1829; + this.state = 1850; this.columnAliases(); } break; @@ -6920,32 +7046,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnListCreate(): ColumnListCreateContext { let localContext = new ColumnListCreateContext(this.context, this.state); - this.enterRule(localContext, 110, TrinoSqlParser.RULE_columnListCreate); + this.enterRule(localContext, 120, TrinoSqlParser.RULE_columnListCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1834; + this.state = 1855; this.match(TrinoSqlParser.T__0); - this.state = 1835; + this.state = 1856; this.columnNameCreate(); - this.state = 1840; + this.state = 1861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1836; + this.state = 1857; this.match(TrinoSqlParser.T__2); - this.state = 1837; + this.state = 1858; this.columnNameCreate(); } } - this.state = 1842; + this.state = 1863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1843; + this.state = 1864; this.match(TrinoSqlParser.T__1); } } @@ -6965,32 +7091,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnList(): ColumnListContext { let localContext = new ColumnListContext(this.context, this.state); - this.enterRule(localContext, 112, TrinoSqlParser.RULE_columnList); + this.enterRule(localContext, 122, TrinoSqlParser.RULE_columnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1866; this.match(TrinoSqlParser.T__0); - this.state = 1846; + this.state = 1867; this.columnRef(); - this.state = 1851; + this.state = 1872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1847; + this.state = 1868; this.match(TrinoSqlParser.T__2); - this.state = 1848; + this.state = 1869; this.columnRef(); } } - this.state = 1853; + this.state = 1874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1854; + this.state = 1875; this.match(TrinoSqlParser.T__1); } } @@ -7010,32 +7136,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 114, TrinoSqlParser.RULE_columnAliases); + this.enterRule(localContext, 124, TrinoSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1877; this.match(TrinoSqlParser.T__0); - this.state = 1857; + this.state = 1878; this.identifier(); - this.state = 1862; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1858; + this.state = 1879; this.match(TrinoSqlParser.T__2); - this.state = 1859; + this.state = 1880; this.identifier(); } } - this.state = 1864; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1865; + this.state = 1886; this.match(TrinoSqlParser.T__1); } } @@ -7055,24 +7181,23 @@ export class TrinoSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 116, TrinoSqlParser.RULE_relationPrimary); - let _la: number; + this.enterRule(localContext, 126, TrinoSqlParser.RULE_relationPrimary); try { - this.state = 1938; + this.state = 1897; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1867; + this.state = 1888; this.tableOrViewName(); - this.state = 1869; + this.state = 1890; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 1868; + this.state = 1889; this.queryPeriod(); } break; @@ -7080,169 +7205,201 @@ export class TrinoSqlParser extends SQLParserBase { } break; case 2: - localContext = new SubqueryRelationContext(localContext); + localContext = new ExpressionSourceTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1871; + this.state = 1892; + this.relationSourceTable(); + } + break; + case 3: + localContext = new ParenthesizedRelationContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 1893; + this.match(TrinoSqlParser.T__0); + this.state = 1894; + this.relation(0); + this.state = 1895; + this.match(TrinoSqlParser.T__1); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public relationSourceTable(): RelationSourceTableContext { + let localContext = new RelationSourceTableContext(this.context, this.state); + this.enterRule(localContext, 128, TrinoSqlParser.RULE_relationSourceTable); + let _la: number; + try { + this.state = 1962; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case TrinoSqlParser.T__0: + localContext = new SubqueryRelationContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 1899; this.match(TrinoSqlParser.T__0); - this.state = 1872; + this.state = 1900; this.query(); - this.state = 1873; + this.state = 1901; this.match(TrinoSqlParser.T__1); } break; - case 3: + case TrinoSqlParser.KW_UNNEST: localContext = new UnnestContext(localContext); - this.enterOuterAlt(localContext, 3); + this.enterOuterAlt(localContext, 2); { - this.state = 1875; + this.state = 1903; this.match(TrinoSqlParser.KW_UNNEST); - this.state = 1876; + this.state = 1904; this.match(TrinoSqlParser.T__0); - this.state = 1877; + this.state = 1905; this.expression(); - this.state = 1882; + this.state = 1910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1878; + this.state = 1906; this.match(TrinoSqlParser.T__2); - this.state = 1879; + this.state = 1907; this.expression(); } } - this.state = 1884; + this.state = 1912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1885; + this.state = 1913; this.match(TrinoSqlParser.T__1); - this.state = 1888; + this.state = 1916; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 1886; + this.state = 1914; this.match(TrinoSqlParser.KW_WITH); - this.state = 1887; + this.state = 1915; this.match(TrinoSqlParser.KW_ORDINALITY); } break; } } break; - case 4: + case TrinoSqlParser.KW_LATERAL: localContext = new LateralContext(localContext); - this.enterOuterAlt(localContext, 4); + this.enterOuterAlt(localContext, 3); { - this.state = 1890; + this.state = 1918; this.match(TrinoSqlParser.KW_LATERAL); - this.state = 1891; + this.state = 1919; this.match(TrinoSqlParser.T__0); - this.state = 1892; + this.state = 1920; this.query(); - this.state = 1893; + this.state = 1921; this.match(TrinoSqlParser.T__1); } break; - case 5: + case TrinoSqlParser.KW_TABLE: localContext = new TableFunctionInvocationContext(localContext); - this.enterOuterAlt(localContext, 5); + this.enterOuterAlt(localContext, 4); { - this.state = 1895; + this.state = 1923; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1896; + this.state = 1924; this.match(TrinoSqlParser.T__0); - this.state = 1897; + this.state = 1925; this.tableFunctionCall(); - this.state = 1898; - this.match(TrinoSqlParser.T__1); - } - break; - case 6: - localContext = new ParenthesizedRelationContext(localContext); - this.enterOuterAlt(localContext, 6); - { - this.state = 1900; - this.match(TrinoSqlParser.T__0); - this.state = 1901; - this.relation(0); - this.state = 1902; + this.state = 1926; this.match(TrinoSqlParser.T__1); } break; - case 7: + case TrinoSqlParser.KW_JSON_TABLE: localContext = new JsonTableContext(localContext); - this.enterOuterAlt(localContext, 7); + this.enterOuterAlt(localContext, 5); { - this.state = 1904; + this.state = 1928; this.match(TrinoSqlParser.KW_JSON_TABLE); - this.state = 1905; + this.state = 1929; this.match(TrinoSqlParser.T__0); - this.state = 1906; + this.state = 1930; this.jsonPathInvocation(); - this.state = 1907; + this.state = 1931; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1908; + this.state = 1932; this.match(TrinoSqlParser.T__0); - this.state = 1909; + this.state = 1933; this.jsonTableColumn(); - this.state = 1914; + this.state = 1938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1910; + this.state = 1934; this.match(TrinoSqlParser.T__2); - this.state = 1911; + this.state = 1935; this.jsonTableColumn(); } } - this.state = 1916; + this.state = 1940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1917; + this.state = 1941; this.match(TrinoSqlParser.T__1); - this.state = 1929; + this.state = 1953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 1918; + this.state = 1942; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1919; + this.state = 1943; this.match(TrinoSqlParser.T__0); - this.state = 1920; + this.state = 1944; this.jsonTableSpecificPlan(); - this.state = 1921; + this.state = 1945; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 1923; + this.state = 1947; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1924; + this.state = 1948; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 1925; + this.state = 1949; this.match(TrinoSqlParser.T__0); - this.state = 1926; + this.state = 1950; this.jsonTableDefaultPlan(); - this.state = 1927; + this.state = 1951; this.match(TrinoSqlParser.T__1); } break; } - this.state = 1934; + this.state = 1958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89) { { - this.state = 1931; + this.state = 1955; _la = this.tokenStream.LA(1); if(!(_la === 85 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -7251,17 +7408,19 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1932; + this.state = 1956; this.match(TrinoSqlParser.KW_ON); - this.state = 1933; + this.state = 1957; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 1936; + this.state = 1960; this.match(TrinoSqlParser.T__1); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -7280,21 +7439,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableColumn(): JsonTableColumnContext { let localContext = new JsonTableColumnContext(this.context, this.state); - this.enterRule(localContext, 118, TrinoSqlParser.RULE_jsonTableColumn); + this.enterRule(localContext, 130, TrinoSqlParser.RULE_jsonTableColumn); let _la: number; try { - this.state = 2017; + this.state = 2041; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: localContext = new OrdinalityColumnContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1940; + this.state = 1964; this.identifier(); - this.state = 1941; + this.state = 1965; this.match(TrinoSqlParser.KW_FOR); - this.state = 1942; + this.state = 1966; this.match(TrinoSqlParser.KW_ORDINALITY); } break; @@ -7302,46 +7461,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ValueColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1944; + this.state = 1968; this.identifier(); - this.state = 1945; + this.state = 1969; this.type_(0); - this.state = 1948; + this.state = 1972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1946; + this.state = 1970; this.match(TrinoSqlParser.KW_PATH); - this.state = 1947; + this.state = 1971; this.string_(); } } - this.state = 1954; + this.state = 1978; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 1950; + this.state = 1974; (localContext as ValueColumnContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 1951; + this.state = 1975; this.match(TrinoSqlParser.KW_ON); - this.state = 1952; + this.state = 1976; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1960; + this.state = 1984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 1956; + this.state = 1980; (localContext as ValueColumnContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 1957; + this.state = 1981; this.match(TrinoSqlParser.KW_ON); - this.state = 1958; + this.state = 1982; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7352,44 +7511,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryColumnContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1962; + this.state = 1986; this.identifier(); - this.state = 1963; + this.state = 1987; this.type_(0); - this.state = 1964; + this.state = 1988; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 1965; + this.state = 1989; this.jsonRepresentation(); - this.state = 1968; + this.state = 1992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1966; + this.state = 1990; this.match(TrinoSqlParser.KW_PATH); - this.state = 1967; + this.state = 1991; this.string_(); } } - this.state = 1973; + this.state = 1997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 1970; + this.state = 1994; this.jsonQueryWrapperBehavior(); - this.state = 1971; + this.state = 1995; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 1982; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 1975; + this.state = 1999; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -7398,18 +7557,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1976; + this.state = 2000; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 1980; + this.state = 2004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 1977; + this.state = 2001; this.match(TrinoSqlParser.KW_ON); - this.state = 1978; + this.state = 2002; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 1979; + this.state = 2003; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -7417,30 +7576,30 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1988; + this.state = 2012; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1984; + this.state = 2008; (localContext as QueryColumnContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 1985; + this.state = 2009; this.match(TrinoSqlParser.KW_ON); - this.state = 1986; + this.state = 2010; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1994; + this.state = 2018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 1990; + this.state = 2014; (localContext as QueryColumnContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 1991; + this.state = 2015; this.match(TrinoSqlParser.KW_ON); - this.state = 1992; + this.state = 2016; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7451,55 +7610,55 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NestedColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1996; + this.state = 2020; this.match(TrinoSqlParser.KW_NESTED); - this.state = 1998; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1997; + this.state = 2021; this.match(TrinoSqlParser.KW_PATH); } } - this.state = 2000; + this.state = 2024; this.string_(); - this.state = 2003; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2001; + this.state = 2025; this.match(TrinoSqlParser.KW_AS); - this.state = 2002; + this.state = 2026; this.identifier(); } } - this.state = 2005; + this.state = 2029; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 2006; + this.state = 2030; this.match(TrinoSqlParser.T__0); - this.state = 2007; + this.state = 2031; this.jsonTableColumn(); - this.state = 2012; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2008; + this.state = 2032; this.match(TrinoSqlParser.T__2); - this.state = 2009; + this.state = 2033; this.jsonTableColumn(); } } - this.state = 2014; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2015; + this.state = 2039; this.match(TrinoSqlParser.T__1); } break; @@ -7521,17 +7680,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableSpecificPlan(): JsonTableSpecificPlanContext { let localContext = new JsonTableSpecificPlanContext(this.context, this.state); - this.enterRule(localContext, 120, TrinoSqlParser.RULE_jsonTableSpecificPlan); + this.enterRule(localContext, 132, TrinoSqlParser.RULE_jsonTableSpecificPlan); let _la: number; try { - this.state = 2044; + this.state = 2068; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: localContext = new LeafPlanContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2019; + this.state = 2043; this.jsonTablePathName(); } break; @@ -7539,9 +7698,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinPlanContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2020; + this.state = 2044; this.jsonTablePathName(); - this.state = 2021; + this.state = 2045; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7550,7 +7709,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2022; + this.state = 2046; this.planPrimary(); } break; @@ -7558,25 +7717,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnionPlanContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2024; + this.state = 2048; this.planPrimary(); - this.state = 2025; + this.state = 2049; this.match(TrinoSqlParser.KW_UNION); - this.state = 2026; + this.state = 2050; this.planPrimary(); - this.state = 2031; + this.state = 2055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 281) { { { - this.state = 2027; + this.state = 2051; this.match(TrinoSqlParser.KW_UNION); - this.state = 2028; + this.state = 2052; this.planPrimary(); } } - this.state = 2033; + this.state = 2057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7586,25 +7745,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CrossPlanContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2034; + this.state = 2058; this.planPrimary(); - this.state = 2035; + this.state = 2059; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2036; + this.state = 2060; this.planPrimary(); - this.state = 2041; + this.state = 2065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 2037; + this.state = 2061; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2038; + this.state = 2062; this.planPrimary(); } } - this.state = 2043; + this.state = 2067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7628,11 +7787,11 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTablePathName(): JsonTablePathNameContext { let localContext = new JsonTablePathNameContext(this.context, this.state); - this.enterRule(localContext, 122, TrinoSqlParser.RULE_jsonTablePathName); + this.enterRule(localContext, 134, TrinoSqlParser.RULE_jsonTablePathName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2046; + this.state = 2070; this.identifier(); } } @@ -7652,9 +7811,9 @@ export class TrinoSqlParser extends SQLParserBase { } public planPrimary(): PlanPrimaryContext { let localContext = new PlanPrimaryContext(this.context, this.state); - this.enterRule(localContext, 124, TrinoSqlParser.RULE_planPrimary); + this.enterRule(localContext, 136, TrinoSqlParser.RULE_planPrimary); try { - this.state = 2053; + this.state = 2077; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -7876,18 +8035,18 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2048; + this.state = 2072; this.jsonTablePathName(); } break; case TrinoSqlParser.T__0: this.enterOuterAlt(localContext, 2); { - this.state = 2049; + this.state = 2073; this.match(TrinoSqlParser.T__0); - this.state = 2050; + this.state = 2074; this.jsonTableSpecificPlan(); - this.state = 2051; + this.state = 2075; this.match(TrinoSqlParser.T__1); } break; @@ -7911,17 +8070,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableDefaultPlan(): JsonTableDefaultPlanContext { let localContext = new JsonTableDefaultPlanContext(this.context, this.state); - this.enterRule(localContext, 126, TrinoSqlParser.RULE_jsonTableDefaultPlan); + this.enterRule(localContext, 138, TrinoSqlParser.RULE_jsonTableDefaultPlan); let _la: number; try { - this.state = 2065; + this.state = 2089; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_OUTER: this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 2079; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7930,14 +8089,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2058; + this.state = 2082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2056; + this.state = 2080; this.match(TrinoSqlParser.T__2); - this.state = 2057; + this.state = 2081; _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -7955,7 +8114,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_UNION: this.enterOuterAlt(localContext, 2); { - this.state = 2060; + this.state = 2084; _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -7964,14 +8123,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2063; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2061; + this.state = 2085; this.match(TrinoSqlParser.T__2); - this.state = 2062; + this.state = 2086; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -8005,70 +8164,70 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionCall(): TableFunctionCallContext { let localContext = new TableFunctionCallContext(this.context, this.state); - this.enterRule(localContext, 128, TrinoSqlParser.RULE_tableFunctionCall); + this.enterRule(localContext, 140, TrinoSqlParser.RULE_tableFunctionCall); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2067; + this.state = 2091; this.functionName(); - this.state = 2068; + this.state = 2092; this.match(TrinoSqlParser.T__0); - this.state = 2077; + this.state = 2101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2069; + this.state = 2093; this.tableFunctionArgument(); - this.state = 2074; + this.state = 2098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2070; + this.state = 2094; this.match(TrinoSqlParser.T__2); - this.state = 2071; + this.state = 2095; this.tableFunctionArgument(); } } - this.state = 2076; + this.state = 2100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2088; + this.state = 2112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 52) { { - this.state = 2079; + this.state = 2103; this.match(TrinoSqlParser.KW_COPARTITION); - this.state = 2080; + this.state = 2104; this.coPartitionTables(); - this.state = 2085; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2081; + this.state = 2105; this.match(TrinoSqlParser.T__2); - this.state = 2082; + this.state = 2106; this.coPartitionTables(); } } - this.state = 2087; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2090; + this.state = 2114; this.match(TrinoSqlParser.T__1); } } @@ -8088,40 +8247,40 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionArgument(): TableFunctionArgumentContext { let localContext = new TableFunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 130, TrinoSqlParser.RULE_tableFunctionArgument); + this.enterRule(localContext, 142, TrinoSqlParser.RULE_tableFunctionArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2095; + this.state = 2119; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2092; + this.state = 2116; this.identifier(); - this.state = 2093; + this.state = 2117; this.match(TrinoSqlParser.T__5); } break; } - this.state = 2100; + this.state = 2124; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { case 1: { - this.state = 2097; + this.state = 2121; this.tableArgument(); } break; case 2: { - this.state = 2098; + this.state = 2122; this.descriptorArgument(); } break; case 3: { - this.state = 2099; + this.state = 2123; this.expression(); } break; @@ -8144,46 +8303,46 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgument(): TableArgumentContext { let localContext = new TableArgumentContext(this.context, this.state); - this.enterRule(localContext, 132, TrinoSqlParser.RULE_tableArgument); + this.enterRule(localContext, 144, TrinoSqlParser.RULE_tableArgument); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2102; + this.state = 2126; this.tableArgumentRelation(); - this.state = 2113; + this.state = 2137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 2103; + this.state = 2127; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 2104; + this.state = 2128; this.match(TrinoSqlParser.KW_BY); - this.state = 2111; + this.state = 2135; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2105; + this.state = 2129; this.match(TrinoSqlParser.T__0); - this.state = 2107; + this.state = 2131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2106; + this.state = 2130; this.partitionBy(); } } - this.state = 2109; + this.state = 2133; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2110; + this.state = 2134; this.expression(); } break; @@ -8191,26 +8350,26 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2121; + this.state = 2145; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_PRUNE: { - this.state = 2115; + this.state = 2139; this.match(TrinoSqlParser.KW_PRUNE); - this.state = 2116; + this.state = 2140; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2117; + this.state = 2141; this.match(TrinoSqlParser.KW_EMPTY); } break; case TrinoSqlParser.KW_KEEP: { - this.state = 2118; + this.state = 2142; this.match(TrinoSqlParser.KW_KEEP); - this.state = 2119; + this.state = 2143; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2120; + this.state = 2144; this.match(TrinoSqlParser.KW_EMPTY); } break; @@ -8222,47 +8381,47 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2139; + this.state = 2163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2123; + this.state = 2147; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2124; + this.state = 2148; this.match(TrinoSqlParser.KW_BY); - this.state = 2137; + this.state = 2161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2125; + this.state = 2149; this.match(TrinoSqlParser.T__0); - this.state = 2126; + this.state = 2150; this.sortItem(); - this.state = 2131; + this.state = 2155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2127; + this.state = 2151; this.match(TrinoSqlParser.T__2); - this.state = 2128; + this.state = 2152; this.sortItem(); } } - this.state = 2133; + this.state = 2157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2134; + this.state = 2158; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2136; + this.state = 2160; this.sortItem(); } break; @@ -8288,47 +8447,47 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgumentRelation(): TableArgumentRelationContext { let localContext = new TableArgumentRelationContext(this.context, this.state); - this.enterRule(localContext, 134, TrinoSqlParser.RULE_tableArgumentRelation); + this.enterRule(localContext, 146, TrinoSqlParser.RULE_tableArgumentRelation); let _la: number; try { - this.state = 2167; + this.state = 2191; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: localContext = new TableArgumentTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2165; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2142; + this.state = 2166; this.match(TrinoSqlParser.T__0); - this.state = 2143; + this.state = 2167; this.tableRef(); - this.state = 2144; + this.state = 2168; this.match(TrinoSqlParser.T__1); - this.state = 2152; + this.state = 2176; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { case 1: { - this.state = 2146; + this.state = 2170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2145; + this.state = 2169; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2148; + this.state = 2172; this.identifier(); - this.state = 2150; + this.state = 2174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2149; + this.state = 2173; this.columnAliases(); } } @@ -8342,37 +8501,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableArgumentQueryContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2154; + this.state = 2178; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2155; + this.state = 2179; this.match(TrinoSqlParser.T__0); - this.state = 2156; + this.state = 2180; this.query(); - this.state = 2157; + this.state = 2181; this.match(TrinoSqlParser.T__1); - this.state = 2165; + this.state = 2189; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2159; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2158; + this.state = 2182; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2161; + this.state = 2185; this.identifier(); - this.state = 2163; + this.state = 2187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2162; + this.state = 2186; this.columnAliases(); } } @@ -8400,55 +8559,55 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorArgument(): DescriptorArgumentContext { let localContext = new DescriptorArgumentContext(this.context, this.state); - this.enterRule(localContext, 136, TrinoSqlParser.RULE_descriptorArgument); + this.enterRule(localContext, 148, TrinoSqlParser.RULE_descriptorArgument); let _la: number; try { - this.state = 2187; + this.state = 2211; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_DESCRIPTOR: this.enterOuterAlt(localContext, 1); { - this.state = 2169; + this.state = 2193; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2170; + this.state = 2194; this.match(TrinoSqlParser.T__0); - this.state = 2171; + this.state = 2195; this.descriptorField(); - this.state = 2176; + this.state = 2200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2172; + this.state = 2196; this.match(TrinoSqlParser.T__2); - this.state = 2173; + this.state = 2197; this.descriptorField(); } } - this.state = 2178; + this.state = 2202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2179; + this.state = 2203; this.match(TrinoSqlParser.T__1); } break; case TrinoSqlParser.KW_CAST: this.enterOuterAlt(localContext, 2); { - this.state = 2181; + this.state = 2205; this.match(TrinoSqlParser.KW_CAST); - this.state = 2182; + this.state = 2206; this.match(TrinoSqlParser.T__0); - this.state = 2183; + this.state = 2207; this.match(TrinoSqlParser.KW_NULL); - this.state = 2184; + this.state = 2208; this.match(TrinoSqlParser.KW_AS); - this.state = 2185; + this.state = 2209; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2186; + this.state = 2210; this.match(TrinoSqlParser.T__1); } break; @@ -8472,19 +8631,19 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorField(): DescriptorFieldContext { let localContext = new DescriptorFieldContext(this.context, this.state); - this.enterRule(localContext, 138, TrinoSqlParser.RULE_descriptorField); + this.enterRule(localContext, 150, TrinoSqlParser.RULE_descriptorField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2189; + this.state = 2213; this.identifier(); - this.state = 2191; + this.state = 2215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2190; + this.state = 2214; this.type_(0); } } @@ -8507,36 +8666,36 @@ export class TrinoSqlParser extends SQLParserBase { } public coPartitionTables(): CoPartitionTablesContext { let localContext = new CoPartitionTablesContext(this.context, this.state); - this.enterRule(localContext, 140, TrinoSqlParser.RULE_coPartitionTables); + this.enterRule(localContext, 152, TrinoSqlParser.RULE_coPartitionTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2217; this.match(TrinoSqlParser.T__0); - this.state = 2194; + this.state = 2218; this.qualifiedName(); - this.state = 2195; + this.state = 2219; this.match(TrinoSqlParser.T__2); - this.state = 2196; + this.state = 2220; this.qualifiedName(); - this.state = 2201; + this.state = 2225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2197; + this.state = 2221; this.match(TrinoSqlParser.T__2); - this.state = 2198; + this.state = 2222; this.qualifiedName(); } } - this.state = 2203; + this.state = 2227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2204; + this.state = 2228; this.match(TrinoSqlParser.T__1); } } @@ -8556,11 +8715,11 @@ export class TrinoSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 142, TrinoSqlParser.RULE_expression); + this.enterRule(localContext, 154, TrinoSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2206; + this.state = 2230; this.booleanExpression(0); } } @@ -8590,13 +8749,13 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 144; - this.enterRecursionRule(localContext, 144, TrinoSqlParser.RULE_booleanExpression, _p); + let _startState = 156; + this.enterRecursionRule(localContext, 156, TrinoSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2215; + this.state = 2239; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.T__0: @@ -8856,14 +9015,14 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2209; + this.state = 2233; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2211; + this.state = 2235; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 279, this.context) ) { case 1: { - this.state = 2210; + this.state = 2234; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -8875,9 +9034,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2213; + this.state = 2237; this.match(TrinoSqlParser.KW_NOT); - this.state = 2214; + this.state = 2238; this.booleanExpression(3); } break; @@ -8885,9 +9044,9 @@ export class TrinoSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2225; + this.state = 2249; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8895,20 +9054,20 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2223; + this.state = 2247; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { localContext = new AndContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2217; + this.state = 2241; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2218; + this.state = 2242; this.match(TrinoSqlParser.KW_AND); - this.state = 2219; + this.state = 2243; this.booleanExpression(3); } break; @@ -8916,22 +9075,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new OrContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2220; + this.state = 2244; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2221; + this.state = 2245; this.match(TrinoSqlParser.KW_OR); - this.state = 2222; + this.state = 2246; this.booleanExpression(2); } break; } } } - this.state = 2227; + this.state = 2251; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); } } } @@ -8951,19 +9110,19 @@ export class TrinoSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 146, TrinoSqlParser.RULE_predicate); + this.enterRule(localContext, 158, TrinoSqlParser.RULE_predicate); let _la: number; try { - this.state = 2289; + this.state = 2313; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2228; + this.state = 2252; this.comparisonOperator(); - this.state = 2229; + this.state = 2253; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -8971,15 +9130,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2231; + this.state = 2255; this.comparisonOperator(); - this.state = 2232; + this.state = 2256; this.comparisonQuantifier(); - this.state = 2233; + this.state = 2257; this.match(TrinoSqlParser.T__0); - this.state = 2234; + this.state = 2258; this.query(); - this.state = 2235; + this.state = 2259; this.match(TrinoSqlParser.T__1); } break; @@ -8987,23 +9146,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2238; + this.state = 2262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2237; + this.state = 2261; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2240; + this.state = 2264; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 2241; + this.state = 2265; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2242; + this.state = 2266; this.match(TrinoSqlParser.KW_AND); - this.state = 2243; + this.state = 2267; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -9011,39 +9170,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2246; + this.state = 2270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2245; + this.state = 2269; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2248; + this.state = 2272; this.match(TrinoSqlParser.KW_IN); - this.state = 2249; + this.state = 2273; this.match(TrinoSqlParser.T__0); - this.state = 2250; + this.state = 2274; this.expression(); - this.state = 2255; + this.state = 2279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2251; + this.state = 2275; this.match(TrinoSqlParser.T__2); - this.state = 2252; + this.state = 2276; this.expression(); } } - this.state = 2257; + this.state = 2281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2258; + this.state = 2282; this.match(TrinoSqlParser.T__1); } break; @@ -9051,23 +9210,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2261; + this.state = 2285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2260; + this.state = 2284; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2263; + this.state = 2287; this.match(TrinoSqlParser.KW_IN); - this.state = 2264; + this.state = 2288; this.match(TrinoSqlParser.T__0); - this.state = 2265; + this.state = 2289; this.query(); - this.state = 2266; + this.state = 2290; this.match(TrinoSqlParser.T__1); } break; @@ -9075,28 +9234,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2269; + this.state = 2293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2268; + this.state = 2292; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2271; + this.state = 2295; this.match(TrinoSqlParser.KW_LIKE); - this.state = 2272; + this.state = 2296; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2275; + this.state = 2299; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: { - this.state = 2273; + this.state = 2297; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 2274; + this.state = 2298; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -9107,19 +9266,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2277; + this.state = 2301; this.match(TrinoSqlParser.KW_IS); - this.state = 2279; + this.state = 2303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2278; + this.state = 2302; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2281; + this.state = 2305; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9127,23 +9286,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2282; + this.state = 2306; this.match(TrinoSqlParser.KW_IS); - this.state = 2284; + this.state = 2308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2283; + this.state = 2307; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2286; + this.state = 2310; this.match(TrinoSqlParser.KW_DISTINCT); - this.state = 2287; + this.state = 2311; this.match(TrinoSqlParser.KW_FROM); - this.state = 2288; + this.state = 2312; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -9175,23 +9334,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 148; - this.enterRecursionRule(localContext, 148, TrinoSqlParser.RULE_valueExpression, _p); + let _startState = 160; + this.enterRecursionRule(localContext, 160, TrinoSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2295; + this.state = 2319; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2292; + this.state = 2316; this.primaryExpression(0); } break; @@ -9200,7 +9359,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2293; + this.state = 2317; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9210,15 +9369,15 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2294; + this.state = 2318; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2311; + this.state = 2335; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9226,19 +9385,19 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2309; + this.state = 2333; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2297; + this.state = 2321; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2298; + this.state = 2322; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 7) !== 0))) { @@ -9248,7 +9407,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2299; + this.state = 2323; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9257,11 +9416,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2300; + this.state = 2324; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2301; + this.state = 2325; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9271,7 +9430,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2302; + this.state = 2326; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9280,13 +9439,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2303; + this.state = 2327; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2304; + this.state = 2328; this.match(TrinoSqlParser.CONCAT); - this.state = 2305; + this.state = 2329; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -9294,22 +9453,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2306; + this.state = 2330; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2307; + this.state = 2331; this.match(TrinoSqlParser.KW_AT); - this.state = 2308; + this.state = 2332; this.timeZoneSpecifier(); } break; } } } - this.state = 2313; + this.state = 2337; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); } } } @@ -9339,23 +9498,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 150; - this.enterRecursionRule(localContext, 150, TrinoSqlParser.RULE_primaryExpression, _p); + let _startState = 162; + this.enterRecursionRule(localContext, 162, TrinoSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2767; + this.state = 2791; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2315; + this.state = 2339; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9364,7 +9523,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2316; + this.state = 2340; this.interval(); } break; @@ -9373,9 +9532,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2317; + this.state = 2341; this.identifier(); - this.state = 2318; + this.state = 2342; this.string_(); } break; @@ -9384,11 +9543,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2320; + this.state = 2344; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2321; + this.state = 2345; this.match(TrinoSqlParser.KW_PRECISION); - this.state = 2322; + this.state = 2346; this.string_(); } break; @@ -9397,7 +9556,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2323; + this.state = 2347; this.number_(); } break; @@ -9406,7 +9565,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2324; + this.state = 2348; this.booleanValue(); } break; @@ -9415,7 +9574,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2325; + this.state = 2349; this.string_(); } break; @@ -9424,7 +9583,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2326; + this.state = 2350; this.match(TrinoSqlParser.BINARY_LITERAL); } break; @@ -9433,7 +9592,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2327; + this.state = 2351; this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -9442,17 +9601,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2328; + this.state = 2352; this.match(TrinoSqlParser.KW_POSITION); - this.state = 2329; + this.state = 2353; this.match(TrinoSqlParser.T__0); - this.state = 2330; + this.state = 2354; this.valueExpression(0); - this.state = 2331; + this.state = 2355; this.match(TrinoSqlParser.KW_IN); - this.state = 2332; + this.state = 2356; this.valueExpression(0); - this.state = 2333; + this.state = 2357; this.match(TrinoSqlParser.T__1); } break; @@ -9461,27 +9620,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2335; + this.state = 2359; this.match(TrinoSqlParser.T__0); - this.state = 2336; + this.state = 2360; this.expression(); - this.state = 2339; + this.state = 2363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2337; + this.state = 2361; this.match(TrinoSqlParser.T__2); - this.state = 2338; + this.state = 2362; this.expression(); } } - this.state = 2341; + this.state = 2365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 3); - this.state = 2343; + this.state = 2367; this.match(TrinoSqlParser.T__1); } break; @@ -9490,29 +9649,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2345; + this.state = 2369; this.match(TrinoSqlParser.KW_ROW); - this.state = 2346; + this.state = 2370; this.match(TrinoSqlParser.T__0); - this.state = 2347; + this.state = 2371; this.expression(); - this.state = 2352; + this.state = 2376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2348; + this.state = 2372; this.match(TrinoSqlParser.T__2); - this.state = 2349; + this.state = 2373; this.expression(); } } - this.state = 2354; + this.state = 2378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2355; + this.state = 2379; this.match(TrinoSqlParser.T__1); } break; @@ -9521,88 +9680,88 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ListAggContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2357; + this.state = 2381; (localContext as ListAggContext)._name = this.match(TrinoSqlParser.KW_LISTAGG); - this.state = 2358; + this.state = 2382; this.match(TrinoSqlParser.T__0); - this.state = 2360; + this.state = 2384; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2359; + this.state = 2383; this.setQuantifier(); } break; } - this.state = 2362; + this.state = 2386; this.expression(); - this.state = 2365; + this.state = 2389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2363; + this.state = 2387; this.match(TrinoSqlParser.T__2); - this.state = 2364; + this.state = 2388; this.string_(); } } - this.state = 2370; + this.state = 2394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2367; + this.state = 2391; this.match(TrinoSqlParser.KW_ON); - this.state = 2368; + this.state = 2392; this.match(TrinoSqlParser.KW_OVERFLOW); - this.state = 2369; + this.state = 2393; this.listAggOverflowBehavior(); } } - this.state = 2372; + this.state = 2396; this.match(TrinoSqlParser.T__1); { - this.state = 2373; + this.state = 2397; this.match(TrinoSqlParser.KW_WITHIN); - this.state = 2374; + this.state = 2398; this.match(TrinoSqlParser.KW_GROUP); - this.state = 2375; + this.state = 2399; this.match(TrinoSqlParser.T__0); - this.state = 2376; + this.state = 2400; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2377; + this.state = 2401; this.match(TrinoSqlParser.KW_BY); - this.state = 2378; + this.state = 2402; this.sortItem(); - this.state = 2383; + this.state = 2407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2379; + this.state = 2403; this.match(TrinoSqlParser.T__2); - this.state = 2380; + this.state = 2404; this.sortItem(); } } - this.state = 2385; + this.state = 2409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2386; + this.state = 2410; this.match(TrinoSqlParser.T__1); } - this.state = 2389; + this.state = 2413; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2388; + this.state = 2412; this.filter(); } break; @@ -9614,52 +9773,52 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2392; + this.state = 2416; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2391; + this.state = 2415; this.processingMode(); } break; } - this.state = 2394; + this.state = 2418; this.functionName(); - this.state = 2395; + this.state = 2419; this.match(TrinoSqlParser.T__0); - this.state = 2399; + this.state = 2423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2396; + this.state = 2420; (localContext as FunctionCallContext)._label = this.identifier(); - this.state = 2397; + this.state = 2421; this.match(TrinoSqlParser.T__3); } } - this.state = 2401; + this.state = 2425; this.match(TrinoSqlParser.ASTERISK); - this.state = 2402; + this.state = 2426; this.match(TrinoSqlParser.T__1); - this.state = 2404; + this.state = 2428; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2403; + this.state = 2427; this.filter(); } break; } - this.state = 2407; + this.state = 2431; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2406; + this.state = 2430; this.over(); } break; @@ -9671,114 +9830,114 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2410; + this.state = 2434; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2409; + this.state = 2433; this.processingMode(); } break; } - this.state = 2412; + this.state = 2436; this.functionName(); - this.state = 2413; + this.state = 2437; this.match(TrinoSqlParser.T__0); - this.state = 2425; + this.state = 2449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538415087) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2415; + this.state = 2439; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2414; + this.state = 2438; this.setQuantifier(); } break; } - this.state = 2417; + this.state = 2441; this.expression(); - this.state = 2422; + this.state = 2446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2418; + this.state = 2442; this.match(TrinoSqlParser.T__2); - this.state = 2419; + this.state = 2443; this.expression(); } } - this.state = 2424; + this.state = 2448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2437; + this.state = 2461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2427; + this.state = 2451; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2428; + this.state = 2452; this.match(TrinoSqlParser.KW_BY); - this.state = 2429; + this.state = 2453; this.sortItem(); - this.state = 2434; + this.state = 2458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2430; + this.state = 2454; this.match(TrinoSqlParser.T__2); - this.state = 2431; + this.state = 2455; this.sortItem(); } } - this.state = 2436; + this.state = 2460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2439; + this.state = 2463; this.match(TrinoSqlParser.T__1); - this.state = 2441; + this.state = 2465; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 312, this.context) ) { case 1: { - this.state = 2440; + this.state = 2464; this.filter(); } break; } - this.state = 2447; + this.state = 2471; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2444; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120 || _la === 228) { { - this.state = 2443; + this.state = 2467; this.nullTreatment(); } } - this.state = 2446; + this.state = 2470; this.over(); } break; @@ -9790,9 +9949,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MeasureContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2449; + this.state = 2473; this.identifier(); - this.state = 2450; + this.state = 2474; this.over(); } break; @@ -9801,11 +9960,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2452; + this.state = 2476; this.identifier(); - this.state = 2453; + this.state = 2477; this.match(TrinoSqlParser.T__6); - this.state = 2454; + this.state = 2478; this.expression(); } break; @@ -9814,39 +9973,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2456; + this.state = 2480; this.match(TrinoSqlParser.T__0); - this.state = 2465; + this.state = 2489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2457; + this.state = 2481; this.identifier(); - this.state = 2462; + this.state = 2486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2458; + this.state = 2482; this.match(TrinoSqlParser.T__2); - this.state = 2459; + this.state = 2483; this.identifier(); } } - this.state = 2464; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2467; + this.state = 2491; this.match(TrinoSqlParser.T__1); - this.state = 2468; + this.state = 2492; this.match(TrinoSqlParser.T__6); - this.state = 2469; + this.state = 2493; this.expression(); } break; @@ -9855,11 +10014,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2470; + this.state = 2494; this.match(TrinoSqlParser.T__0); - this.state = 2471; + this.state = 2495; this.query(); - this.state = 2472; + this.state = 2496; this.match(TrinoSqlParser.T__1); } break; @@ -9868,13 +10027,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2474; + this.state = 2498; this.match(TrinoSqlParser.KW_EXISTS); - this.state = 2475; + this.state = 2499; this.match(TrinoSqlParser.T__0); - this.state = 2476; + this.state = 2500; this.query(); - this.state = 2477; + this.state = 2501; this.match(TrinoSqlParser.T__1); } break; @@ -9883,37 +10042,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2479; + this.state = 2503; this.match(TrinoSqlParser.KW_CASE); - this.state = 2480; + this.state = 2504; (localContext as SimpleCaseContext)._operand = this.expression(); - this.state = 2482; + this.state = 2506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2481; + this.state = 2505; this.whenClause(); } } - this.state = 2484; + this.state = 2508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2488; + this.state = 2512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2486; + this.state = 2510; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2487; + this.state = 2511; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2490; + this.state = 2514; this.match(TrinoSqlParser.KW_END); } break; @@ -9922,35 +10081,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2492; + this.state = 2516; this.match(TrinoSqlParser.KW_CASE); - this.state = 2494; + this.state = 2518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2493; + this.state = 2517; this.whenClause(); } } - this.state = 2496; + this.state = 2520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2500; + this.state = 2524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2498; + this.state = 2522; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2499; + this.state = 2523; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2502; + this.state = 2526; this.match(TrinoSqlParser.KW_END); } break; @@ -9959,17 +10118,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2504; + this.state = 2528; this.match(TrinoSqlParser.KW_CAST); - this.state = 2505; + this.state = 2529; this.match(TrinoSqlParser.T__0); - this.state = 2506; + this.state = 2530; this.expression(); - this.state = 2507; + this.state = 2531; this.match(TrinoSqlParser.KW_AS); - this.state = 2508; + this.state = 2532; this.type_(0); - this.state = 2509; + this.state = 2533; this.match(TrinoSqlParser.T__1); } break; @@ -9978,17 +10137,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2511; + this.state = 2535; this.match(TrinoSqlParser.KW_TRY_CAST); - this.state = 2512; + this.state = 2536; this.match(TrinoSqlParser.T__0); - this.state = 2513; + this.state = 2537; this.expression(); - this.state = 2514; + this.state = 2538; this.match(TrinoSqlParser.KW_AS); - this.state = 2515; + this.state = 2539; this.type_(0); - this.state = 2516; + this.state = 2540; this.match(TrinoSqlParser.T__1); } break; @@ -9997,37 +10156,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2518; + this.state = 2542; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2519; + this.state = 2543; this.match(TrinoSqlParser.T__7); - this.state = 2528; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2520; + this.state = 2544; this.expression(); - this.state = 2525; + this.state = 2549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2521; + this.state = 2545; this.match(TrinoSqlParser.T__2); - this.state = 2522; + this.state = 2546; this.expression(); } } - this.state = 2527; + this.state = 2551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2530; + this.state = 2554; this.match(TrinoSqlParser.T__8); } break; @@ -10036,7 +10195,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2531; + this.state = 2555; this.columnName(); } break; @@ -10045,7 +10204,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentDateContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2532; + this.state = 2556; (localContext as CurrentDateContext)._name = this.match(TrinoSqlParser.KW_CURRENT_DATE); } break; @@ -10054,18 +10213,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2533; + this.state = 2557; (localContext as CurrentTimeContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIME); - this.state = 2537; + this.state = 2561; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2534; + this.state = 2558; this.match(TrinoSqlParser.T__0); - this.state = 2535; + this.state = 2559; (localContext as CurrentTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2536; + this.state = 2560; this.match(TrinoSqlParser.T__1); } break; @@ -10077,18 +10236,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2539; + this.state = 2563; (localContext as CurrentTimestampContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2543; + this.state = 2567; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2540; + this.state = 2564; this.match(TrinoSqlParser.T__0); - this.state = 2541; + this.state = 2565; (localContext as CurrentTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2542; + this.state = 2566; this.match(TrinoSqlParser.T__1); } break; @@ -10100,18 +10259,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2545; + this.state = 2569; (localContext as LocalTimeContext)._name = this.match(TrinoSqlParser.KW_LOCALTIME); - this.state = 2549; + this.state = 2573; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2546; + this.state = 2570; this.match(TrinoSqlParser.T__0); - this.state = 2547; + this.state = 2571; (localContext as LocalTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2548; + this.state = 2572; this.match(TrinoSqlParser.T__1); } break; @@ -10123,18 +10282,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2551; + this.state = 2575; (localContext as LocalTimestampContext)._name = this.match(TrinoSqlParser.KW_LOCALTIMESTAMP); - this.state = 2555; + this.state = 2579; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2552; + this.state = 2576; this.match(TrinoSqlParser.T__0); - this.state = 2553; + this.state = 2577; (localContext as LocalTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2554; + this.state = 2578; this.match(TrinoSqlParser.T__1); } break; @@ -10146,7 +10305,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2557; + this.state = 2581; (localContext as CurrentUserContext)._name = this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -10155,7 +10314,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentCatalogContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2558; + this.state = 2582; (localContext as CurrentCatalogContext)._name = this.match(TrinoSqlParser.KW_CURRENT_CATALOG); } break; @@ -10164,7 +10323,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentSchemaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2559; + this.state = 2583; (localContext as CurrentSchemaContext)._name = this.match(TrinoSqlParser.KW_CURRENT_SCHEMA); } break; @@ -10173,7 +10332,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2560; + this.state = 2584; (localContext as CurrentPathContext)._name = this.match(TrinoSqlParser.KW_CURRENT_PATH); } break; @@ -10182,43 +10341,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2561; + this.state = 2585; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2562; + this.state = 2586; this.match(TrinoSqlParser.T__0); - this.state = 2570; + this.state = 2594; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2564; + this.state = 2588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2563; + this.state = 2587; this.trimsSpecification(); } break; } - this.state = 2567; + this.state = 2591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3755997183) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2566; + this.state = 2590; (localContext as TrimContext)._trimChar = this.valueExpression(0); } } - this.state = 2569; + this.state = 2593; this.match(TrinoSqlParser.KW_FROM); } break; } - this.state = 2572; + this.state = 2596; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2573; + this.state = 2597; this.match(TrinoSqlParser.T__1); } break; @@ -10227,17 +10386,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2575; + this.state = 2599; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2576; + this.state = 2600; this.match(TrinoSqlParser.T__0); - this.state = 2577; + this.state = 2601; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2578; + this.state = 2602; this.match(TrinoSqlParser.T__2); - this.state = 2579; + this.state = 2603; (localContext as TrimContext)._trimChar = this.valueExpression(0); - this.state = 2580; + this.state = 2604; this.match(TrinoSqlParser.T__1); } break; @@ -10246,29 +10405,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2582; + this.state = 2606; this.match(TrinoSqlParser.KW_SUBSTRING); - this.state = 2583; + this.state = 2607; this.match(TrinoSqlParser.T__0); - this.state = 2584; + this.state = 2608; this.valueExpression(0); - this.state = 2585; + this.state = 2609; this.match(TrinoSqlParser.KW_FROM); - this.state = 2586; + this.state = 2610; this.valueExpression(0); - this.state = 2589; + this.state = 2613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2587; + this.state = 2611; this.match(TrinoSqlParser.KW_FOR); - this.state = 2588; + this.state = 2612; this.valueExpression(0); } } - this.state = 2591; + this.state = 2615; this.match(TrinoSqlParser.T__1); } break; @@ -10277,25 +10436,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2593; + this.state = 2617; this.match(TrinoSqlParser.KW_NORMALIZE); - this.state = 2594; + this.state = 2618; this.match(TrinoSqlParser.T__0); - this.state = 2595; + this.state = 2619; this.valueExpression(0); - this.state = 2598; + this.state = 2622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2596; + this.state = 2620; this.match(TrinoSqlParser.T__2); - this.state = 2597; + this.state = 2621; this.normalForm(); } } - this.state = 2600; + this.state = 2624; this.match(TrinoSqlParser.T__1); } break; @@ -10304,17 +10463,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2602; + this.state = 2626; this.match(TrinoSqlParser.KW_EXTRACT); - this.state = 2603; + this.state = 2627; this.match(TrinoSqlParser.T__0); - this.state = 2604; + this.state = 2628; this.identifier(); - this.state = 2605; + this.state = 2629; this.match(TrinoSqlParser.KW_FROM); - this.state = 2606; + this.state = 2630; this.valueExpression(0); - this.state = 2607; + this.state = 2631; this.match(TrinoSqlParser.T__1); } break; @@ -10323,11 +10482,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2609; + this.state = 2633; this.match(TrinoSqlParser.T__0); - this.state = 2610; + this.state = 2634; this.expression(); - this.state = 2611; + this.state = 2635; this.match(TrinoSqlParser.T__1); } break; @@ -10336,37 +10495,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2613; + this.state = 2637; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 2614; + this.state = 2638; this.match(TrinoSqlParser.T__0); - this.state = 2623; + this.state = 2647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2615; + this.state = 2639; this.qualifiedName(); - this.state = 2620; + this.state = 2644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2616; + this.state = 2640; this.match(TrinoSqlParser.T__2); - this.state = 2617; + this.state = 2641; this.qualifiedName(); } } - this.state = 2622; + this.state = 2646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2625; + this.state = 2649; this.match(TrinoSqlParser.T__1); } break; @@ -10375,27 +10534,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2626; + this.state = 2650; this.match(TrinoSqlParser.KW_JSON_EXISTS); - this.state = 2627; + this.state = 2651; this.match(TrinoSqlParser.T__0); - this.state = 2628; + this.state = 2652; this.jsonPathInvocation(); - this.state = 2633; + this.state = 2657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 89 || _la === 97 || _la === 273 || _la === 283) { { - this.state = 2629; + this.state = 2653; this.jsonExistsErrorBehavior(); - this.state = 2630; + this.state = 2654; this.match(TrinoSqlParser.KW_ON); - this.state = 2631; + this.state = 2655; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2635; + this.state = 2659; this.match(TrinoSqlParser.T__1); } break; @@ -10404,53 +10563,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonValueContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2637; + this.state = 2661; this.match(TrinoSqlParser.KW_JSON_VALUE); - this.state = 2638; + this.state = 2662; this.match(TrinoSqlParser.T__0); - this.state = 2639; + this.state = 2663; this.jsonPathInvocation(); - this.state = 2642; + this.state = 2666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2640; + this.state = 2664; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2641; + this.state = 2665; this.type_(0); } } - this.state = 2648; + this.state = 2672; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 2644; + this.state = 2668; (localContext as JsonValueContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 2645; + this.state = 2669; this.match(TrinoSqlParser.KW_ON); - this.state = 2646; + this.state = 2670; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2654; + this.state = 2678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 2650; + this.state = 2674; (localContext as JsonValueContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 2651; + this.state = 2675; this.match(TrinoSqlParser.KW_ON); - this.state = 2652; + this.state = 2676; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2656; + this.state = 2680; this.match(TrinoSqlParser.T__1); } break; @@ -10459,29 +10618,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonQueryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2658; + this.state = 2682; this.match(TrinoSqlParser.KW_JSON_QUERY); - this.state = 2659; + this.state = 2683; this.match(TrinoSqlParser.T__0); - this.state = 2660; + this.state = 2684; this.jsonPathInvocation(); - this.state = 2667; + this.state = 2691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2661; + this.state = 2685; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2662; + this.state = 2686; this.type_(0); - this.state = 2665; + this.state = 2689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2663; + this.state = 2687; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2664; + this.state = 2688; this.jsonRepresentation(); } } @@ -10489,24 +10648,24 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2672; + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 2669; + this.state = 2693; this.jsonQueryWrapperBehavior(); - this.state = 2670; + this.state = 2694; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 2681; + this.state = 2705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 2674; + this.state = 2698; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -10515,18 +10674,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2675; + this.state = 2699; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 2679; + this.state = 2703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2676; + this.state = 2700; this.match(TrinoSqlParser.KW_ON); - this.state = 2677; + this.state = 2701; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 2678; + this.state = 2702; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -10534,35 +10693,35 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2687; + this.state = 2711; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 2683; + this.state = 2707; (localContext as JsonQueryContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 2684; + this.state = 2708; this.match(TrinoSqlParser.KW_ON); - this.state = 2685; + this.state = 2709; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2693; + this.state = 2717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 2689; + this.state = 2713; (localContext as JsonQueryContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 2690; + this.state = 2714; this.match(TrinoSqlParser.KW_ON); - this.state = 2691; + this.state = 2715; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2695; + this.state = 2719; this.match(TrinoSqlParser.T__1); } break; @@ -10571,53 +10730,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonObjectContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2697; + this.state = 2721; this.match(TrinoSqlParser.KW_JSON_OBJECT); - this.state = 2698; + this.state = 2722; this.match(TrinoSqlParser.T__0); - this.state = 2727; + this.state = 2751; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 350, this.context) ) { case 1: { - this.state = 2699; + this.state = 2723; this.jsonObjectMember(); - this.state = 2704; + this.state = 2728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2700; + this.state = 2724; this.match(TrinoSqlParser.T__2); - this.state = 2701; + this.state = 2725; this.jsonObjectMember(); } } - this.state = 2706; + this.state = 2730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2713; + this.state = 2737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2707; + this.state = 2731; this.match(TrinoSqlParser.KW_NULL); - this.state = 2708; + this.state = 2732; this.match(TrinoSqlParser.KW_ON); - this.state = 2709; + this.state = 2733; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2710; + this.state = 2734; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2711; + this.state = 2735; this.match(TrinoSqlParser.KW_ON); - this.state = 2712; + this.state = 2736; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10629,21 +10788,21 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2725; + this.state = 2749; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: { - this.state = 2715; + this.state = 2739; this.match(TrinoSqlParser.KW_WITH); - this.state = 2716; + this.state = 2740; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2718; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2717; + this.state = 2741; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10652,16 +10811,16 @@ export class TrinoSqlParser extends SQLParserBase { break; case TrinoSqlParser.KW_WITHOUT: { - this.state = 2720; + this.state = 2744; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2721; + this.state = 2745; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2723; + this.state = 2747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2722; + this.state = 2746; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10677,23 +10836,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2735; + this.state = 2759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2729; + this.state = 2753; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2730; + this.state = 2754; this.type_(0); - this.state = 2733; + this.state = 2757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2731; + this.state = 2755; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2732; + this.state = 2756; this.jsonRepresentation(); } } @@ -10701,7 +10860,7 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2737; + this.state = 2761; this.match(TrinoSqlParser.T__1); } break; @@ -10710,53 +10869,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonArrayContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2738; + this.state = 2762; this.match(TrinoSqlParser.KW_JSON_ARRAY); - this.state = 2739; + this.state = 2763; this.match(TrinoSqlParser.T__0); - this.state = 2756; + this.state = 2780; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2740; + this.state = 2764; this.jsonValueExpression(); - this.state = 2745; + this.state = 2769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2741; + this.state = 2765; this.match(TrinoSqlParser.T__2); - this.state = 2742; + this.state = 2766; this.jsonValueExpression(); } } - this.state = 2747; + this.state = 2771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2754; + this.state = 2778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2748; + this.state = 2772; this.match(TrinoSqlParser.KW_NULL); - this.state = 2749; + this.state = 2773; this.match(TrinoSqlParser.KW_ON); - this.state = 2750; + this.state = 2774; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2751; + this.state = 2775; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2752; + this.state = 2776; this.match(TrinoSqlParser.KW_ON); - this.state = 2753; + this.state = 2777; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10769,23 +10928,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2764; + this.state = 2788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2758; + this.state = 2782; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2759; + this.state = 2783; this.type_(0); - this.state = 2762; + this.state = 2786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2760; + this.state = 2784; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2761; + this.state = 2785; this.jsonRepresentation(); } } @@ -10793,15 +10952,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2766; + this.state = 2790; this.match(TrinoSqlParser.T__1); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2779; + this.state = 2803; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 360, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10809,23 +10968,23 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2777; + this.state = 2801; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2769; + this.state = 2793; if (!(this.precpred(this.context, 24))) { throw this.createFailedPredicateException("this.precpred(this.context, 24)"); } - this.state = 2770; + this.state = 2794; this.match(TrinoSqlParser.T__7); - this.state = 2771; + this.state = 2795; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2772; + this.state = 2796; this.match(TrinoSqlParser.T__8); } break; @@ -10834,22 +10993,22 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2774; + this.state = 2798; if (!(this.precpred(this.context, 22))) { throw this.createFailedPredicateException("this.precpred(this.context, 22)"); } - this.state = 2775; + this.state = 2799; this.match(TrinoSqlParser.T__3); - this.state = 2776; + this.state = 2800; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2781; + this.state = 2805; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 360, this.context); } } } @@ -10869,51 +11028,51 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonPathInvocation(): JsonPathInvocationContext { let localContext = new JsonPathInvocationContext(this.context, this.state); - this.enterRule(localContext, 152, TrinoSqlParser.RULE_jsonPathInvocation); + this.enterRule(localContext, 164, TrinoSqlParser.RULE_jsonPathInvocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2782; + this.state = 2806; this.jsonValueExpression(); - this.state = 2783; + this.state = 2807; this.match(TrinoSqlParser.T__2); - this.state = 2784; + this.state = 2808; localContext._path = this.string_(); - this.state = 2787; + this.state = 2811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2785; + this.state = 2809; this.match(TrinoSqlParser.KW_AS); - this.state = 2786; + this.state = 2810; localContext._pathName = this.identifier(); } } - this.state = 2798; + this.state = 2822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2789; + this.state = 2813; this.match(TrinoSqlParser.KW_PASSING); - this.state = 2790; + this.state = 2814; this.jsonArgument(); - this.state = 2795; + this.state = 2819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2791; + this.state = 2815; this.match(TrinoSqlParser.T__2); - this.state = 2792; + this.state = 2816; this.jsonArgument(); } } - this.state = 2797; + this.state = 2821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10938,21 +11097,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueExpression(): JsonValueExpressionContext { let localContext = new JsonValueExpressionContext(this.context, this.state); - this.enterRule(localContext, 154, TrinoSqlParser.RULE_jsonValueExpression); + this.enterRule(localContext, 166, TrinoSqlParser.RULE_jsonValueExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2800; + this.state = 2824; this.expression(); - this.state = 2803; + this.state = 2827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2801; + this.state = 2825; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2802; + this.state = 2826; this.jsonRepresentation(); } } @@ -10975,21 +11134,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonRepresentation(): JsonRepresentationContext { let localContext = new JsonRepresentationContext(this.context, this.state); - this.enterRule(localContext, 156, TrinoSqlParser.RULE_jsonRepresentation); + this.enterRule(localContext, 168, TrinoSqlParser.RULE_jsonRepresentation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2805; + this.state = 2829; this.match(TrinoSqlParser.KW_JSON); - this.state = 2808; + this.state = 2832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 2806; + this.state = 2830; this.match(TrinoSqlParser.KW_ENCODING); - this.state = 2807; + this.state = 2831; _la = this.tokenStream.LA(1); if(!(((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -11019,15 +11178,15 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonArgument(): JsonArgumentContext { let localContext = new JsonArgumentContext(this.context, this.state); - this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonArgument); + this.enterRule(localContext, 170, TrinoSqlParser.RULE_jsonArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2810; + this.state = 2834; this.jsonValueExpression(); - this.state = 2811; + this.state = 2835; this.match(TrinoSqlParser.KW_AS); - this.state = 2812; + this.state = 2836; this.identifier(); } } @@ -11047,12 +11206,12 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonExistsErrorBehavior(): JsonExistsErrorBehaviorContext { let localContext = new JsonExistsErrorBehaviorContext(this.context, this.state); - this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonExistsErrorBehavior); + this.enterRule(localContext, 172, TrinoSqlParser.RULE_jsonExistsErrorBehavior); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2814; + this.state = 2838; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 97 || _la === 273 || _la === 283)) { this.errorHandler.recoverInline(this); @@ -11079,31 +11238,31 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueBehavior(): JsonValueBehaviorContext { let localContext = new JsonValueBehaviorContext(this.context, this.state); - this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonValueBehavior); + this.enterRule(localContext, 174, TrinoSqlParser.RULE_jsonValueBehavior); try { - this.state = 2820; + this.state = 2844; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 2816; + this.state = 2840; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 2817; + this.state = 2841; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2818; + this.state = 2842; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 2819; + this.state = 2843; this.expression(); } break; @@ -11127,23 +11286,23 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryWrapperBehavior(): JsonQueryWrapperBehaviorContext { let localContext = new JsonQueryWrapperBehaviorContext(this.context, this.state); - this.enterRule(localContext, 164, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); + this.enterRule(localContext, 176, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); let _la: number; try { - this.state = 2833; + this.state = 2857; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 1); { - this.state = 2822; + this.state = 2846; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2824; + this.state = 2848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2823; + this.state = 2847; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11153,14 +11312,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 2826; + this.state = 2850; this.match(TrinoSqlParser.KW_WITH); - this.state = 2828; + this.state = 2852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 49 || _la === 280) { { - this.state = 2827; + this.state = 2851; _la = this.tokenStream.LA(1); if(!(_la === 49 || _la === 280)) { this.errorHandler.recoverInline(this); @@ -11172,12 +11331,12 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2831; + this.state = 2855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2830; + this.state = 2854; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11204,40 +11363,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryBehavior(): JsonQueryBehaviorContext { let localContext = new JsonQueryBehaviorContext(this.context, this.state); - this.enterRule(localContext, 166, TrinoSqlParser.RULE_jsonQueryBehavior); + this.enterRule(localContext, 178, TrinoSqlParser.RULE_jsonQueryBehavior); try { - this.state = 2841; + this.state = 2865; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2835; + this.state = 2859; this.match(TrinoSqlParser.KW_ERROR); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2836; + this.state = 2860; this.match(TrinoSqlParser.KW_NULL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2837; + this.state = 2861; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2838; + this.state = 2862; this.match(TrinoSqlParser.KW_ARRAY); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2839; + this.state = 2863; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2840; + this.state = 2864; this.match(TrinoSqlParser.KW_OBJECT); } break; @@ -11259,40 +11418,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonObjectMember(): JsonObjectMemberContext { let localContext = new JsonObjectMemberContext(this.context, this.state); - this.enterRule(localContext, 168, TrinoSqlParser.RULE_jsonObjectMember); + this.enterRule(localContext, 180, TrinoSqlParser.RULE_jsonObjectMember); try { - this.state = 2854; + this.state = 2878; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2844; + this.state = 2868; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: { - this.state = 2843; + this.state = 2867; this.match(TrinoSqlParser.KW_KEY); } break; } - this.state = 2846; + this.state = 2870; this.expression(); - this.state = 2847; + this.state = 2871; this.match(TrinoSqlParser.KW_VALUE); - this.state = 2848; + this.state = 2872; this.jsonValueExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2850; + this.state = 2874; this.expression(); - this.state = 2851; + this.state = 2875; this.match(TrinoSqlParser.T__9); - this.state = 2852; + this.state = 2876; this.jsonValueExpression(); } break; @@ -11314,12 +11473,12 @@ export class TrinoSqlParser extends SQLParserBase { } public processingMode(): ProcessingModeContext { let localContext = new ProcessingModeContext(this.context, this.state); - this.enterRule(localContext, 170, TrinoSqlParser.RULE_processingMode); + this.enterRule(localContext, 182, TrinoSqlParser.RULE_processingMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2856; + this.state = 2880; _la = this.tokenStream.LA(1); if(!(_la === 100 || _la === 241)) { this.errorHandler.recoverInline(this); @@ -11346,26 +11505,26 @@ export class TrinoSqlParser extends SQLParserBase { } public nullTreatment(): NullTreatmentContext { let localContext = new NullTreatmentContext(this.context, this.state); - this.enterRule(localContext, 172, TrinoSqlParser.RULE_nullTreatment); + this.enterRule(localContext, 184, TrinoSqlParser.RULE_nullTreatment); try { - this.state = 2862; + this.state = 2886; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_IGNORE: this.enterOuterAlt(localContext, 1); { - this.state = 2858; + this.state = 2882; this.match(TrinoSqlParser.KW_IGNORE); - this.state = 2859; + this.state = 2883; this.match(TrinoSqlParser.KW_NULLS); } break; case TrinoSqlParser.KW_RESPECT: this.enterOuterAlt(localContext, 2); { - this.state = 2860; + this.state = 2884; this.match(TrinoSqlParser.KW_RESPECT); - this.state = 2861; + this.state = 2885; this.match(TrinoSqlParser.KW_NULLS); } break; @@ -11389,16 +11548,16 @@ export class TrinoSqlParser extends SQLParserBase { } public string_(): StringContext { let localContext = new StringContext(this.context, this.state); - this.enterRule(localContext, 174, TrinoSqlParser.RULE_string); + this.enterRule(localContext, 186, TrinoSqlParser.RULE_string); try { - this.state = 2870; + this.state = 2894; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2864; + this.state = 2888; this.match(TrinoSqlParser.STRING); } break; @@ -11406,16 +11565,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2865; + this.state = 2889; this.match(TrinoSqlParser.UNICODE_STRING); - this.state = 2868; + this.state = 2892; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: { - this.state = 2866; + this.state = 2890; this.match(TrinoSqlParser.KW_UESCAPE); - this.state = 2867; + this.state = 2891; this.match(TrinoSqlParser.STRING); } break; @@ -11442,20 +11601,20 @@ export class TrinoSqlParser extends SQLParserBase { } public timeZoneSpecifier(): TimeZoneSpecifierContext { let localContext = new TimeZoneSpecifierContext(this.context, this.state); - this.enterRule(localContext, 176, TrinoSqlParser.RULE_timeZoneSpecifier); + this.enterRule(localContext, 188, TrinoSqlParser.RULE_timeZoneSpecifier); try { - this.state = 2878; + this.state = 2902; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: localContext = new TimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2872; + this.state = 2896; this.match(TrinoSqlParser.KW_TIME); - this.state = 2873; + this.state = 2897; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2874; + this.state = 2898; this.interval(); } break; @@ -11463,11 +11622,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeZoneStringContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2875; + this.state = 2899; this.match(TrinoSqlParser.KW_TIME); - this.state = 2876; + this.state = 2900; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2877; + this.state = 2901; this.string_(); } break; @@ -11489,12 +11648,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 178, TrinoSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 190, TrinoSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2880; + this.state = 2904; _la = this.tokenStream.LA(1); if(!(((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11521,12 +11680,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 180, TrinoSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 192, TrinoSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2882; + this.state = 2906; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 26 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11553,12 +11712,12 @@ export class TrinoSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 182, TrinoSqlParser.RULE_booleanValue); + this.enterRule(localContext, 194, TrinoSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2884; + this.state = 2908; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 273)) { this.errorHandler.recoverInline(this); @@ -11585,19 +11744,19 @@ export class TrinoSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 184, TrinoSqlParser.RULE_interval); + this.enterRule(localContext, 196, TrinoSqlParser.RULE_interval); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2886; + this.state = 2910; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2888; + this.state = 2912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 318 || _la === 319) { { - this.state = 2887; + this.state = 2911; localContext._sign = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -11610,18 +11769,18 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2890; + this.state = 2914; this.string_(); - this.state = 2891; + this.state = 2915; localContext._from_ = this.intervalField(); - this.state = 2894; + this.state = 2918; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2892; + this.state = 2916; this.match(TrinoSqlParser.KW_TO); - this.state = 2893; + this.state = 2917; localContext._to = this.intervalField(); } break; @@ -11644,12 +11803,12 @@ export class TrinoSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 186, TrinoSqlParser.RULE_intervalField); + this.enterRule(localContext, 198, TrinoSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2896; + this.state = 2920; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 118 || _la === 170 || _la === 171 || _la === 245 || _la === 310)) { this.errorHandler.recoverInline(this); @@ -11676,12 +11835,12 @@ export class TrinoSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 188, TrinoSqlParser.RULE_normalForm); + this.enterRule(localContext, 200, TrinoSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2898; + this.state = 2922; _la = this.tokenStream.LA(1); if(!(((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11718,45 +11877,45 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 190; - this.enterRecursionRule(localContext, 190, TrinoSqlParser.RULE_type, _p); + let _startState = 202; + this.enterRecursionRule(localContext, 202, TrinoSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2971; + this.state = 2995; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { localContext = new RowTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2901; + this.state = 2925; this.match(TrinoSqlParser.KW_ROW); - this.state = 2902; + this.state = 2926; this.match(TrinoSqlParser.T__0); - this.state = 2903; + this.state = 2927; this.rowField(); - this.state = 2908; + this.state = 2932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2904; + this.state = 2928; this.match(TrinoSqlParser.T__2); - this.state = 2905; + this.state = 2929; this.rowField(); } } - this.state = 2910; + this.state = 2934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2911; + this.state = 2935; this.match(TrinoSqlParser.T__1); } break; @@ -11765,18 +11924,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2913; + this.state = 2937; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2914; + this.state = 2938; (localContext as IntervalTypeContext)._from_ = this.intervalField(); - this.state = 2917; + this.state = 2941; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2915; + this.state = 2939; this.match(TrinoSqlParser.KW_TO); - this.state = 2916; + this.state = 2940; (localContext as IntervalTypeContext)._to = this.intervalField(); } break; @@ -11788,28 +11947,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2919; + this.state = 2943; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIMESTAMP); - this.state = 2924; + this.state = 2948; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2920; + this.state = 2944; this.match(TrinoSqlParser.T__0); - this.state = 2921; + this.state = 2945; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2922; + this.state = 2946; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2929; + this.state = 2953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2926; + this.state = 2950; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 306)) { this.errorHandler.recoverInline(this); @@ -11818,9 +11977,9 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2927; + this.state = 2951; this.match(TrinoSqlParser.KW_TIME); - this.state = 2928; + this.state = 2952; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11832,28 +11991,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2931; + this.state = 2955; (localContext as TimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIME); - this.state = 2936; + this.state = 2960; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2932; + this.state = 2956; this.match(TrinoSqlParser.T__0); - this.state = 2933; + this.state = 2957; (localContext as TimeTypeContext)._precision = this.typeParameter(); - this.state = 2934; + this.state = 2958; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2941; + this.state = 2965; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: { - this.state = 2938; + this.state = 2962; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 306)) { this.errorHandler.recoverInline(this); @@ -11862,9 +12021,9 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2939; + this.state = 2963; this.match(TrinoSqlParser.KW_TIME); - this.state = 2940; + this.state = 2964; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11876,9 +12035,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoublePrecisionTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2943; + this.state = 2967; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2944; + this.state = 2968; this.match(TrinoSqlParser.KW_PRECISION); } break; @@ -11887,13 +12046,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyArrayTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2945; + this.state = 2969; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2946; + this.state = 2970; this.match(TrinoSqlParser.LT); - this.state = 2947; + this.state = 2971; this.type_(0); - this.state = 2948; + this.state = 2972; this.match(TrinoSqlParser.GT); } break; @@ -11902,17 +12061,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyMapTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2950; + this.state = 2974; this.match(TrinoSqlParser.KW_MAP); - this.state = 2951; + this.state = 2975; this.match(TrinoSqlParser.LT); - this.state = 2952; + this.state = 2976; (localContext as LegacyMapTypeContext)._keyType = this.type_(0); - this.state = 2953; + this.state = 2977; this.match(TrinoSqlParser.T__2); - this.state = 2954; + this.state = 2978; (localContext as LegacyMapTypeContext)._valueType = this.type_(0); - this.state = 2955; + this.state = 2979; this.match(TrinoSqlParser.GT); } break; @@ -11921,34 +12080,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GenericTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2957; + this.state = 2981; this.identifier(); - this.state = 2969; + this.state = 2993; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: { - this.state = 2958; + this.state = 2982; this.match(TrinoSqlParser.T__0); - this.state = 2959; + this.state = 2983; this.typeParameter(); - this.state = 2964; + this.state = 2988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2960; + this.state = 2984; this.match(TrinoSqlParser.T__2); - this.state = 2961; + this.state = 2985; this.typeParameter(); } } - this.state = 2966; + this.state = 2990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2967; + this.state = 2991; this.match(TrinoSqlParser.T__1); } break; @@ -11957,9 +12116,9 @@ export class TrinoSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2982; + this.state = 3006; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 389, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 390, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11970,22 +12129,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new ArrayTypeContext(new TypeContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_type); - this.state = 2973; + this.state = 2997; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2974; + this.state = 2998; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2978; + this.state = 3002; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 2975; + this.state = 2999; this.match(TrinoSqlParser.T__7); - this.state = 2976; + this.state = 3000; this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2977; + this.state = 3001; this.match(TrinoSqlParser.T__8); } break; @@ -11993,9 +12152,9 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 2984; + this.state = 3008; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 389, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 390, this.context); } } } @@ -12015,24 +12174,24 @@ export class TrinoSqlParser extends SQLParserBase { } public rowField(): RowFieldContext { let localContext = new RowFieldContext(this.context, this.state); - this.enterRule(localContext, 192, TrinoSqlParser.RULE_rowField); + this.enterRule(localContext, 204, TrinoSqlParser.RULE_rowField); try { - this.state = 2989; + this.state = 3013; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2985; + this.state = 3009; this.type_(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2986; + this.state = 3010; this.identifier(); - this.state = 2987; + this.state = 3011; this.type_(0); } break; @@ -12054,15 +12213,15 @@ export class TrinoSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 194, TrinoSqlParser.RULE_typeParameter); + this.enterRule(localContext, 206, TrinoSqlParser.RULE_typeParameter); try { - this.state = 2993; + this.state = 3017; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2991; + this.state = 3015; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -12285,7 +12444,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2992; + this.state = 3016; this.type_(0); } break; @@ -12309,17 +12468,17 @@ export class TrinoSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 196, TrinoSqlParser.RULE_whenClause); + this.enterRule(localContext, 208, TrinoSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2995; + this.state = 3019; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2996; + this.state = 3020; localContext._condition = this.expression(); - this.state = 2997; + this.state = 3021; this.match(TrinoSqlParser.KW_THEN); - this.state = 2998; + this.state = 3022; localContext._result = this.expression(); } } @@ -12339,17 +12498,17 @@ export class TrinoSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 198, TrinoSqlParser.RULE_filter); + this.enterRule(localContext, 210, TrinoSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 3000; + this.state = 3024; this.match(TrinoSqlParser.KW_FILTER); - this.state = 3001; + this.state = 3025; this.match(TrinoSqlParser.T__0); - this.state = 3002; + this.state = 3026; this.whereClause(); - this.state = 3003; + this.state = 3027; this.match(TrinoSqlParser.T__1); } } @@ -12369,65 +12528,65 @@ export class TrinoSqlParser extends SQLParserBase { } public mergeCase(): MergeCaseContext { let localContext = new MergeCaseContext(this.context, this.state); - this.enterRule(localContext, 200, TrinoSqlParser.RULE_mergeCase); + this.enterRule(localContext, 212, TrinoSqlParser.RULE_mergeCase); let _la: number; try { - this.state = 3069; + this.state = 3093; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: localContext = new MergeUpdateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3005; + this.state = 3029; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3006; + this.state = 3030; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3009; + this.state = 3033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3007; + this.state = 3031; this.match(TrinoSqlParser.KW_AND); - this.state = 3008; + this.state = 3032; (localContext as MergeUpdateContext)._condition = this.expression(); } } - this.state = 3011; + this.state = 3035; this.match(TrinoSqlParser.KW_THEN); - this.state = 3012; + this.state = 3036; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 3013; + this.state = 3037; this.match(TrinoSqlParser.KW_SET); - this.state = 3014; + this.state = 3038; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3015; + this.state = 3039; this.match(TrinoSqlParser.EQ); - this.state = 3016; + this.state = 3040; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); - this.state = 3024; + this.state = 3048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3017; + this.state = 3041; this.match(TrinoSqlParser.T__2); - this.state = 3018; + this.state = 3042; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3019; + this.state = 3043; this.match(TrinoSqlParser.EQ); - this.state = 3020; + this.state = 3044; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); } } - this.state = 3026; + this.state = 3050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12437,25 +12596,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeDeleteContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3027; + this.state = 3051; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3028; + this.state = 3052; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3031; + this.state = 3055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3029; + this.state = 3053; this.match(TrinoSqlParser.KW_AND); - this.state = 3030; + this.state = 3054; (localContext as MergeDeleteContext)._condition = this.expression(); } } - this.state = 3033; + this.state = 3057; this.match(TrinoSqlParser.KW_THEN); - this.state = 3034; + this.state = 3058; this.match(TrinoSqlParser.KW_DELETE); } break; @@ -12463,85 +12622,85 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeInsertContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3035; + this.state = 3059; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3036; + this.state = 3060; this.match(TrinoSqlParser.KW_NOT); - this.state = 3037; + this.state = 3061; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3040; + this.state = 3064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3038; + this.state = 3062; this.match(TrinoSqlParser.KW_AND); - this.state = 3039; + this.state = 3063; (localContext as MergeInsertContext)._condition = this.expression(); } } - this.state = 3042; + this.state = 3066; this.match(TrinoSqlParser.KW_THEN); - this.state = 3043; + this.state = 3067; this.match(TrinoSqlParser.KW_INSERT); - this.state = 3055; + this.state = 3079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 3044; + this.state = 3068; this.match(TrinoSqlParser.T__0); - this.state = 3045; + this.state = 3069; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); - this.state = 3050; + this.state = 3074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3046; + this.state = 3070; this.match(TrinoSqlParser.T__2); - this.state = 3047; + this.state = 3071; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); } } - this.state = 3052; + this.state = 3076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3053; + this.state = 3077; this.match(TrinoSqlParser.T__1); } } - this.state = 3057; + this.state = 3081; this.match(TrinoSqlParser.KW_VALUES); - this.state = 3058; + this.state = 3082; this.match(TrinoSqlParser.T__0); - this.state = 3059; + this.state = 3083; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); - this.state = 3064; + this.state = 3088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3060; + this.state = 3084; this.match(TrinoSqlParser.T__2); - this.state = 3061; + this.state = 3085; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); } } - this.state = 3066; + this.state = 3090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3067; + this.state = 3091; this.match(TrinoSqlParser.T__1); } break; @@ -12563,13 +12722,13 @@ export class TrinoSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 202, TrinoSqlParser.RULE_over); + this.enterRule(localContext, 214, TrinoSqlParser.RULE_over); try { this.enterOuterAlt(localContext, 1); { - this.state = 3071; + this.state = 3095; this.match(TrinoSqlParser.KW_OVER); - this.state = 3077; + this.state = 3101; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -12790,17 +12949,17 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.QUOTED_IDENTIFIER: case TrinoSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3072; + this.state = 3096; localContext._windowName = this.identifier(); } break; case TrinoSqlParser.T__0: { - this.state = 3073; + this.state = 3097; this.match(TrinoSqlParser.T__0); - this.state = 3074; + this.state = 3098; this.windowSpecification(); - this.state = 3075; + this.state = 3099; this.match(TrinoSqlParser.T__1); } break; @@ -12825,61 +12984,61 @@ export class TrinoSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 204, TrinoSqlParser.RULE_windowFrame); + this.enterRule(localContext, 216, TrinoSqlParser.RULE_windowFrame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3088; + this.state = 3112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 3079; + this.state = 3103; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 3080; + this.state = 3104; this.measureDefinition(); - this.state = 3085; + this.state = 3109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3081; + this.state = 3105; this.match(TrinoSqlParser.T__2); - this.state = 3082; + this.state = 3106; this.measureDefinition(); } } - this.state = 3087; + this.state = 3111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3090; + this.state = 3114; this.frameExtent(); - this.state = 3094; + this.state = 3118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 3091; + this.state = 3115; this.match(TrinoSqlParser.KW_AFTER); - this.state = 3092; + this.state = 3116; this.match(TrinoSqlParser.KW_MATCH); - this.state = 3093; + this.state = 3117; this.skipTo(); } } - this.state = 3097; + this.state = 3121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 3096; + this.state = 3120; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -12891,72 +13050,72 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 3104; + this.state = 3128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3099; + this.state = 3123; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 3100; + this.state = 3124; this.match(TrinoSqlParser.T__0); - this.state = 3101; + this.state = 3125; this.rowPattern(0); - this.state = 3102; + this.state = 3126; this.match(TrinoSqlParser.T__1); } } - this.state = 3115; + this.state = 3139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 3106; + this.state = 3130; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 3107; + this.state = 3131; this.subsetDefinition(); - this.state = 3112; + this.state = 3136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3108; + this.state = 3132; this.match(TrinoSqlParser.T__2); - this.state = 3109; + this.state = 3133; this.subsetDefinition(); } } - this.state = 3114; + this.state = 3138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3126; + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 3117; + this.state = 3141; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 3118; + this.state = 3142; this.variableDefinition(); - this.state = 3123; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3119; + this.state = 3143; this.match(TrinoSqlParser.T__2); - this.state = 3120; + this.state = 3144; this.variableDefinition(); } } - this.state = 3125; + this.state = 3149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12981,80 +13140,80 @@ export class TrinoSqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 206, TrinoSqlParser.RULE_frameExtent); + this.enterRule(localContext, 218, TrinoSqlParser.RULE_frameExtent); try { - this.state = 3152; + this.state = 3176; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3128; + this.state = 3152; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3129; + this.state = 3153; localContext._start = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3130; + this.state = 3154; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3131; + this.state = 3155; localContext._start = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3132; + this.state = 3156; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3133; + this.state = 3157; localContext._start = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3134; + this.state = 3158; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3135; + this.state = 3159; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3136; + this.state = 3160; localContext._start = this.frameBound(); - this.state = 3137; + this.state = 3161; this.match(TrinoSqlParser.KW_AND); - this.state = 3138; + this.state = 3162; localContext._end = this.frameBound(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3140; + this.state = 3164; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3141; + this.state = 3165; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3142; + this.state = 3166; localContext._start = this.frameBound(); - this.state = 3143; + this.state = 3167; this.match(TrinoSqlParser.KW_AND); - this.state = 3144; + this.state = 3168; localContext._end = this.frameBound(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3146; + this.state = 3170; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3147; + this.state = 3171; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3148; + this.state = 3172; localContext._start = this.frameBound(); - this.state = 3149; + this.state = 3173; this.match(TrinoSqlParser.KW_AND); - this.state = 3150; + this.state = 3174; localContext._end = this.frameBound(); } break; @@ -13076,19 +13235,19 @@ export class TrinoSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 208, TrinoSqlParser.RULE_frameBound); + this.enterRule(localContext, 220, TrinoSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3163; + this.state = 3187; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3154; + this.state = 3178; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3155; + this.state = 3179; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_PRECEDING); } break; @@ -13096,9 +13255,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3156; + this.state = 3180; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3157; + this.state = 3181; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_FOLLOWING); } break; @@ -13106,9 +13265,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3158; + this.state = 3182; this.match(TrinoSqlParser.KW_CURRENT); - this.state = 3159; + this.state = 3183; this.match(TrinoSqlParser.KW_ROW); } break; @@ -13116,9 +13275,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3160; + this.state = 3184; this.expression(); - this.state = 3161; + this.state = 3185; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 212)) { @@ -13158,8 +13317,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RowPatternContext(this.context, parentState); let previousContext = localContext; - let _startState = 210; - this.enterRecursionRule(localContext, 210, TrinoSqlParser.RULE_rowPattern, _p); + let _startState = 222; + this.enterRecursionRule(localContext, 222, TrinoSqlParser.RULE_rowPattern, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -13169,23 +13328,23 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 3166; + this.state = 3190; this.patternPrimary(); - this.state = 3168; + this.state = 3192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { case 1: { - this.state = 3167; + this.state = 3191; this.patternQuantifier(); } break; } } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3177; + this.state = 3201; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 414, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 415, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -13193,18 +13352,18 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3175; + this.state = 3199; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: { localContext = new PatternConcatenationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3170; + this.state = 3194; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3171; + this.state = 3195; this.rowPattern(3); } break; @@ -13212,22 +13371,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new PatternAlternationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3172; + this.state = 3196; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3173; + this.state = 3197; this.match(TrinoSqlParser.T__10); - this.state = 3174; + this.state = 3198; this.rowPattern(2); } break; } } } - this.state = 3179; + this.state = 3203; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 414, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 415, this.context); } } } @@ -13247,17 +13406,17 @@ export class TrinoSqlParser extends SQLParserBase { } public patternPrimary(): PatternPrimaryContext { let localContext = new PatternPrimaryContext(this.context, this.state); - this.enterRule(localContext, 212, TrinoSqlParser.RULE_patternPrimary); + this.enterRule(localContext, 224, TrinoSqlParser.RULE_patternPrimary); let _la: number; try { - this.state = 3205; + this.state = 3229; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: localContext = new PatternVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3180; + this.state = 3204; this.identifier(); } break; @@ -13265,9 +13424,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new EmptyPatternContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3181; + this.state = 3205; this.match(TrinoSqlParser.T__0); - this.state = 3182; + this.state = 3206; this.match(TrinoSqlParser.T__1); } break; @@ -13275,29 +13434,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PatternPermutationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3183; + this.state = 3207; this.match(TrinoSqlParser.KW_PERMUTE); - this.state = 3184; + this.state = 3208; this.match(TrinoSqlParser.T__0); - this.state = 3185; + this.state = 3209; this.rowPattern(0); - this.state = 3190; + this.state = 3214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3186; + this.state = 3210; this.match(TrinoSqlParser.T__2); - this.state = 3187; + this.state = 3211; this.rowPattern(0); } } - this.state = 3192; + this.state = 3216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3193; + this.state = 3217; this.match(TrinoSqlParser.T__1); } break; @@ -13305,11 +13464,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupedPatternContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3195; + this.state = 3219; this.match(TrinoSqlParser.T__0); - this.state = 3196; + this.state = 3220; this.rowPattern(0); - this.state = 3197; + this.state = 3221; this.match(TrinoSqlParser.T__1); } break; @@ -13317,7 +13476,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionStartAnchorContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3199; + this.state = 3223; this.match(TrinoSqlParser.T__11); } break; @@ -13325,7 +13484,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionEndAnchorContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3200; + this.state = 3224; this.match(TrinoSqlParser.T__12); } break; @@ -13333,11 +13492,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExcludedPatternContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3201; + this.state = 3225; this.match(TrinoSqlParser.T__13); - this.state = 3202; + this.state = 3226; this.rowPattern(0); - this.state = 3203; + this.state = 3227; this.match(TrinoSqlParser.T__14); } break; @@ -13359,24 +13518,24 @@ export class TrinoSqlParser extends SQLParserBase { } public patternQuantifier(): PatternQuantifierContext { let localContext = new PatternQuantifierContext(this.context, this.state); - this.enterRule(localContext, 214, TrinoSqlParser.RULE_patternQuantifier); + this.enterRule(localContext, 226, TrinoSqlParser.RULE_patternQuantifier); let _la: number; try { - this.state = 3237; + this.state = 3261; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: localContext = new ZeroOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3207; + this.state = 3231; this.match(TrinoSqlParser.ASTERISK); - this.state = 3209; + this.state = 3233; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 3208; + this.state = 3232; (localContext as ZeroOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13387,14 +13546,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new OneOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3211; + this.state = 3235; this.match(TrinoSqlParser.PLUS); - this.state = 3213; + this.state = 3237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3212; + this.state = 3236; (localContext as OneOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13405,14 +13564,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ZeroOrOneQuantifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3215; + this.state = 3239; this.match(TrinoSqlParser.QUESTION_MARK); - this.state = 3217; + this.state = 3241; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3216; + this.state = 3240; (localContext as ZeroOrOneQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13423,18 +13582,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3219; + this.state = 3243; this.match(TrinoSqlParser.T__15); - this.state = 3220; + this.state = 3244; (localContext as RangeQuantifierContext)._exactly = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3221; + this.state = 3245; this.match(TrinoSqlParser.T__16); - this.state = 3223; + this.state = 3247; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3222; + this.state = 3246; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13445,38 +13604,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3225; + this.state = 3249; this.match(TrinoSqlParser.T__15); - this.state = 3227; + this.state = 3251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3226; + this.state = 3250; (localContext as RangeQuantifierContext)._atLeast = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3229; + this.state = 3253; this.match(TrinoSqlParser.T__2); - this.state = 3231; + this.state = 3255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3230; + this.state = 3254; (localContext as RangeQuantifierContext)._atMost = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3233; + this.state = 3257; this.match(TrinoSqlParser.T__16); - this.state = 3235; + this.state = 3259; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 3234; + this.state = 3258; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13501,15 +13660,15 @@ export class TrinoSqlParser extends SQLParserBase { } public updateAssignment(): UpdateAssignmentContext { let localContext = new UpdateAssignmentContext(this.context, this.state); - this.enterRule(localContext, 216, TrinoSqlParser.RULE_updateAssignment); + this.enterRule(localContext, 228, TrinoSqlParser.RULE_updateAssignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 3239; + this.state = 3263; this.identifier(); - this.state = 3240; + this.state = 3264; this.match(TrinoSqlParser.EQ); - this.state = 3241; + this.state = 3265; this.expression(); } } @@ -13529,19 +13688,19 @@ export class TrinoSqlParser extends SQLParserBase { } public explainOption(): ExplainOptionContext { let localContext = new ExplainOptionContext(this.context, this.state); - this.enterRule(localContext, 218, TrinoSqlParser.RULE_explainOption); + this.enterRule(localContext, 230, TrinoSqlParser.RULE_explainOption); let _la: number; try { - this.state = 3247; + this.state = 3271; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_FORMAT: localContext = new ExplainFormatContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3243; + this.state = 3267; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 3244; + this.state = 3268; (localContext as ExplainFormatContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 137 || _la === 263)) { @@ -13557,9 +13716,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3245; + this.state = 3269; this.match(TrinoSqlParser.KW_TYPE); - this.state = 3246; + this.state = 3270; (localContext as ExplainTypeContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 132 || _la === 160 || _la === 294)) { @@ -13591,21 +13750,21 @@ export class TrinoSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 220, TrinoSqlParser.RULE_transactionMode); + this.enterRule(localContext, 232, TrinoSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 3254; + this.state = 3278; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ISOLATION: localContext = new IsolationLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3249; + this.state = 3273; this.match(TrinoSqlParser.KW_ISOLATION); - this.state = 3250; + this.state = 3274; this.match(TrinoSqlParser.KW_LEVEL); - this.state = 3251; + this.state = 3275; this.levelOfIsolation(); } break; @@ -13613,9 +13772,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TransactionAccessModeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3252; + this.state = 3276; this.match(TrinoSqlParser.KW_READ); - this.state = 3253; + this.state = 3277; (localContext as TransactionAccessModeContext)._accessMode = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 192 || _la === 309)) { @@ -13647,18 +13806,18 @@ export class TrinoSqlParser extends SQLParserBase { } public levelOfIsolation(): LevelOfIsolationContext { let localContext = new LevelOfIsolationContext(this.context, this.state); - this.enterRule(localContext, 222, TrinoSqlParser.RULE_levelOfIsolation); + this.enterRule(localContext, 234, TrinoSqlParser.RULE_levelOfIsolation); try { - this.state = 3263; + this.state = 3287; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: localContext = new ReadUncommittedContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3256; + this.state = 3280; this.match(TrinoSqlParser.KW_READ); - this.state = 3257; + this.state = 3281; this.match(TrinoSqlParser.KW_UNCOMMITTED); } break; @@ -13666,9 +13825,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReadCommittedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3258; + this.state = 3282; this.match(TrinoSqlParser.KW_READ); - this.state = 3259; + this.state = 3283; this.match(TrinoSqlParser.KW_COMMITTED); } break; @@ -13676,9 +13835,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatableReadContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3260; + this.state = 3284; this.match(TrinoSqlParser.KW_REPEATABLE); - this.state = 3261; + this.state = 3285; this.match(TrinoSqlParser.KW_READ); } break; @@ -13686,7 +13845,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SerializableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3262; + this.state = 3286; this.match(TrinoSqlParser.KW_SERIALIZABLE); } break; @@ -13708,16 +13867,16 @@ export class TrinoSqlParser extends SQLParserBase { } public callArgument(): CallArgumentContext { let localContext = new CallArgumentContext(this.context, this.state); - this.enterRule(localContext, 224, TrinoSqlParser.RULE_callArgument); + this.enterRule(localContext, 236, TrinoSqlParser.RULE_callArgument); try { - this.state = 3270; + this.state = 3294; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: localContext = new PositionalArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3265; + this.state = 3289; this.expression(); } break; @@ -13725,11 +13884,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NamedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3266; + this.state = 3290; this.identifier(); - this.state = 3267; + this.state = 3291; this.match(TrinoSqlParser.T__5); - this.state = 3268; + this.state = 3292; this.expression(); } break; @@ -13751,20 +13910,20 @@ export class TrinoSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 226, TrinoSqlParser.RULE_pathElement); + this.enterRule(localContext, 238, TrinoSqlParser.RULE_pathElement); try { - this.state = 3277; + this.state = 3301; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3272; + this.state = 3296; this.identifier(); - this.state = 3273; + this.state = 3297; this.match(TrinoSqlParser.T__3); - this.state = 3274; + this.state = 3298; this.identifier(); } break; @@ -13772,7 +13931,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3276; + this.state = 3300; this.identifier(); } break; @@ -13794,26 +13953,26 @@ export class TrinoSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 228, TrinoSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 240, TrinoSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3279; + this.state = 3303; this.pathElement(); - this.state = 3284; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3280; + this.state = 3304; this.match(TrinoSqlParser.T__2); - this.state = 3281; + this.state = 3305; this.pathElement(); } } - this.state = 3286; + this.state = 3310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13835,34 +13994,34 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSpecification(): FunctionSpecificationContext { let localContext = new FunctionSpecificationContext(this.context, this.state); - this.enterRule(localContext, 230, TrinoSqlParser.RULE_functionSpecification); + this.enterRule(localContext, 242, TrinoSqlParser.RULE_functionSpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3287; + this.state = 3311; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 3288; + this.state = 3312; this.functionDeclaration(); - this.state = 3289; + this.state = 3313; this.returnsClause(); - this.state = 3293; + this.state = 3317; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 431, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 432, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3290; + this.state = 3314; this.routineCharacteristic(); } } } - this.state = 3295; + this.state = 3319; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 431, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 432, this.context); } - this.state = 3296; + this.state = 3320; this.controlStatement(); } } @@ -13882,42 +14041,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionDeclaration(): FunctionDeclarationContext { let localContext = new FunctionDeclarationContext(this.context, this.state); - this.enterRule(localContext, 232, TrinoSqlParser.RULE_functionDeclaration); + this.enterRule(localContext, 244, TrinoSqlParser.RULE_functionDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3298; + this.state = 3322; this.functionNameCreate(); - this.state = 3299; + this.state = 3323; this.match(TrinoSqlParser.T__0); - this.state = 3308; + this.state = 3332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3300; + this.state = 3324; this.parameterDeclaration(); - this.state = 3305; + this.state = 3329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3301; + this.state = 3325; this.match(TrinoSqlParser.T__2); - this.state = 3302; + this.state = 3326; this.parameterDeclaration(); } } - this.state = 3307; + this.state = 3331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3310; + this.state = 3334; this.match(TrinoSqlParser.T__1); } } @@ -13937,42 +14096,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSignature(): FunctionSignatureContext { let localContext = new FunctionSignatureContext(this.context, this.state); - this.enterRule(localContext, 234, TrinoSqlParser.RULE_functionSignature); + this.enterRule(localContext, 246, TrinoSqlParser.RULE_functionSignature); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3312; + this.state = 3336; this.functionName(); - this.state = 3313; + this.state = 3337; this.match(TrinoSqlParser.T__0); - this.state = 3322; + this.state = 3346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3314; + this.state = 3338; this.parameterDeclaration(); - this.state = 3319; + this.state = 3343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3315; + this.state = 3339; this.match(TrinoSqlParser.T__2); - this.state = 3316; + this.state = 3340; this.parameterDeclaration(); } } - this.state = 3321; + this.state = 3345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3324; + this.state = 3348; this.match(TrinoSqlParser.T__1); } } @@ -13992,21 +14151,21 @@ export class TrinoSqlParser extends SQLParserBase { } public parameterDeclaration(): ParameterDeclarationContext { let localContext = new ParameterDeclarationContext(this.context, this.state); - this.enterRule(localContext, 236, TrinoSqlParser.RULE_parameterDeclaration); + this.enterRule(localContext, 248, TrinoSqlParser.RULE_parameterDeclaration); try { this.enterOuterAlt(localContext, 1); { - this.state = 3327; + this.state = 3351; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3326; + this.state = 3350; this.identifier(); } break; } - this.state = 3329; + this.state = 3353; this.type_(0); } } @@ -14026,13 +14185,13 @@ export class TrinoSqlParser extends SQLParserBase { } public returnsClause(): ReturnsClauseContext { let localContext = new ReturnsClauseContext(this.context, this.state); - this.enterRule(localContext, 238, TrinoSqlParser.RULE_returnsClause); + this.enterRule(localContext, 250, TrinoSqlParser.RULE_returnsClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3331; + this.state = 3355; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3332; + this.state = 3356; this.type_(0); } } @@ -14052,19 +14211,19 @@ export class TrinoSqlParser extends SQLParserBase { } public routineCharacteristic(): RoutineCharacteristicContext { let localContext = new RoutineCharacteristicContext(this.context, this.state); - this.enterRule(localContext, 240, TrinoSqlParser.RULE_routineCharacteristic); + this.enterRule(localContext, 252, TrinoSqlParser.RULE_routineCharacteristic); let _la: number; try { - this.state = 3353; + this.state = 3377; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LANGUAGE: localContext = new LanguageCharacteristicContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3334; + this.state = 3358; this.match(TrinoSqlParser.KW_LANGUAGE); - this.state = 3335; + this.state = 3359; this.identifier(); } break; @@ -14073,17 +14232,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeterministicCharacteristicContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3337; + this.state = 3361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 3336; + this.state = 3360; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 3339; + this.state = 3363; this.match(TrinoSqlParser.KW_DETERMINISTIC); } break; @@ -14091,15 +14250,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReturnsNullOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3340; + this.state = 3364; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3341; + this.state = 3365; this.match(TrinoSqlParser.KW_NULL); - this.state = 3342; + this.state = 3366; this.match(TrinoSqlParser.KW_ON); - this.state = 3343; + this.state = 3367; this.match(TrinoSqlParser.KW_NULL); - this.state = 3344; + this.state = 3368; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14107,13 +14266,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CalledOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3345; + this.state = 3369; this.match(TrinoSqlParser.KW_CALLED); - this.state = 3346; + this.state = 3370; this.match(TrinoSqlParser.KW_ON); - this.state = 3347; + this.state = 3371; this.match(TrinoSqlParser.KW_NULL); - this.state = 3348; + this.state = 3372; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14121,9 +14280,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SecurityCharacteristicContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3349; + this.state = 3373; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 3350; + this.state = 3374; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -14138,9 +14297,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentCharacteristicContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3351; + this.state = 3375; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 3352; + this.state = 3376; this.string_(); } break; @@ -14164,20 +14323,20 @@ export class TrinoSqlParser extends SQLParserBase { } public controlStatement(): ControlStatementContext { let localContext = new ControlStatementContext(this.context, this.state); - this.enterRule(localContext, 242, TrinoSqlParser.RULE_controlStatement); + this.enterRule(localContext, 254, TrinoSqlParser.RULE_controlStatement); let _la: number; try { let alternative: number; - this.state = 3454; + this.state = 3478; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: localContext = new ReturnStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3355; + this.state = 3379; this.match(TrinoSqlParser.KW_RETURN); - this.state = 3356; + this.state = 3380; this.valueExpression(0); } break; @@ -14185,13 +14344,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AssignmentStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3357; + this.state = 3381; this.match(TrinoSqlParser.KW_SET); - this.state = 3358; + this.state = 3382; this.identifier(); - this.state = 3359; + this.state = 3383; this.match(TrinoSqlParser.EQ); - this.state = 3360; + this.state = 3384; this.expression(); } break; @@ -14199,37 +14358,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseStatementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3362; + this.state = 3386; this.match(TrinoSqlParser.KW_CASE); - this.state = 3363; + this.state = 3387; this.expression(); - this.state = 3365; + this.state = 3389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3364; + this.state = 3388; this.caseStatementWhenClause(); } } - this.state = 3367; + this.state = 3391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3370; + this.state = 3394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3369; + this.state = 3393; this.elseClause(); } } - this.state = 3372; + this.state = 3396; this.match(TrinoSqlParser.KW_END); - this.state = 3373; + this.state = 3397; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14237,35 +14396,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseStatementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3375; + this.state = 3399; this.match(TrinoSqlParser.KW_CASE); - this.state = 3377; + this.state = 3401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3376; + this.state = 3400; this.caseStatementWhenClause(); } } - this.state = 3379; + this.state = 3403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3382; + this.state = 3406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3381; + this.state = 3405; this.elseClause(); } } - this.state = 3384; + this.state = 3408; this.match(TrinoSqlParser.KW_END); - this.state = 3385; + this.state = 3409; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14273,41 +14432,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IfStatementContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3387; + this.state = 3411; this.match(TrinoSqlParser.KW_IF); - this.state = 3388; + this.state = 3412; this.expression(); - this.state = 3389; + this.state = 3413; this.match(TrinoSqlParser.KW_THEN); - this.state = 3390; + this.state = 3414; this.sqlStatementList(); - this.state = 3394; + this.state = 3418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 86) { { { - this.state = 3391; + this.state = 3415; this.elseIfClause(); } } - this.state = 3396; + this.state = 3420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3398; + this.state = 3422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3397; + this.state = 3421; this.elseClause(); } } - this.state = 3400; + this.state = 3424; this.match(TrinoSqlParser.KW_END); - this.state = 3401; + this.state = 3425; this.match(TrinoSqlParser.KW_IF); } break; @@ -14315,9 +14474,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IterateStatementContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3403; + this.state = 3427; this.match(TrinoSqlParser.KW_ITERATE); - this.state = 3404; + this.state = 3428; this.identifier(); } break; @@ -14325,9 +14484,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LeaveStatementContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3405; + this.state = 3429; this.match(TrinoSqlParser.KW_LEAVE); - this.state = 3406; + this.state = 3430; this.identifier(); } break; @@ -14335,37 +14494,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CompoundStatementContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3407; + this.state = 3431; this.match(TrinoSqlParser.KW_BEGIN); - this.state = 3413; + this.state = 3437; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 446, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3408; + this.state = 3432; this.variableDeclaration(); - this.state = 3409; + this.state = 3433; this.match(TrinoSqlParser.SEMICOLON); } } } - this.state = 3415; + this.state = 3439; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 446, this.context); } - this.state = 3417; + this.state = 3441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4286249823) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3416; + this.state = 3440; this.sqlStatementList(); } } - this.state = 3419; + this.state = 3443; this.match(TrinoSqlParser.KW_END); } break; @@ -14373,25 +14532,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LoopStatementContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3423; + this.state = 3447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { case 1: { - this.state = 3420; + this.state = 3444; (localContext as LoopStatementContext)._label = this.identifier(); - this.state = 3421; + this.state = 3445; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3425; + this.state = 3449; this.match(TrinoSqlParser.KW_LOOP); - this.state = 3426; + this.state = 3450; this.sqlStatementList(); - this.state = 3427; + this.state = 3451; this.match(TrinoSqlParser.KW_END); - this.state = 3428; + this.state = 3452; this.match(TrinoSqlParser.KW_LOOP); } break; @@ -14399,29 +14558,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new WhileStatementContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3433; + this.state = 3457; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3430; + this.state = 3454; (localContext as WhileStatementContext)._label = this.identifier(); - this.state = 3431; + this.state = 3455; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3435; + this.state = 3459; this.match(TrinoSqlParser.KW_WHILE); - this.state = 3436; + this.state = 3460; this.expression(); - this.state = 3437; + this.state = 3461; this.match(TrinoSqlParser.KW_DO); - this.state = 3438; + this.state = 3462; this.sqlStatementList(); - this.state = 3439; + this.state = 3463; this.match(TrinoSqlParser.KW_END); - this.state = 3440; + this.state = 3464; this.match(TrinoSqlParser.KW_WHILE); } break; @@ -14429,29 +14588,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatStatementContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3445; + this.state = 3469; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3442; + this.state = 3466; (localContext as RepeatStatementContext)._label = this.identifier(); - this.state = 3443; + this.state = 3467; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3447; + this.state = 3471; this.match(TrinoSqlParser.KW_REPEAT); - this.state = 3448; + this.state = 3472; this.sqlStatementList(); - this.state = 3449; + this.state = 3473; this.match(TrinoSqlParser.KW_UNTIL); - this.state = 3450; + this.state = 3474; this.expression(); - this.state = 3451; + this.state = 3475; this.match(TrinoSqlParser.KW_END); - this.state = 3452; + this.state = 3476; this.match(TrinoSqlParser.KW_REPEAT); } break; @@ -14473,17 +14632,17 @@ export class TrinoSqlParser extends SQLParserBase { } public caseStatementWhenClause(): CaseStatementWhenClauseContext { let localContext = new CaseStatementWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 244, TrinoSqlParser.RULE_caseStatementWhenClause); + this.enterRule(localContext, 256, TrinoSqlParser.RULE_caseStatementWhenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3456; + this.state = 3480; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3457; + this.state = 3481; this.expression(); - this.state = 3458; + this.state = 3482; this.match(TrinoSqlParser.KW_THEN); - this.state = 3459; + this.state = 3483; this.sqlStatementList(); } } @@ -14503,17 +14662,17 @@ export class TrinoSqlParser extends SQLParserBase { } public elseIfClause(): ElseIfClauseContext { let localContext = new ElseIfClauseContext(this.context, this.state); - this.enterRule(localContext, 246, TrinoSqlParser.RULE_elseIfClause); + this.enterRule(localContext, 258, TrinoSqlParser.RULE_elseIfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3485; this.match(TrinoSqlParser.KW_ELSEIF); - this.state = 3462; + this.state = 3486; this.expression(); - this.state = 3463; + this.state = 3487; this.match(TrinoSqlParser.KW_THEN); - this.state = 3464; + this.state = 3488; this.sqlStatementList(); } } @@ -14533,13 +14692,13 @@ export class TrinoSqlParser extends SQLParserBase { } public elseClause(): ElseClauseContext { let localContext = new ElseClauseContext(this.context, this.state); - this.enterRule(localContext, 248, TrinoSqlParser.RULE_elseClause); + this.enterRule(localContext, 260, TrinoSqlParser.RULE_elseClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3466; + this.state = 3490; this.match(TrinoSqlParser.KW_ELSE); - this.state = 3467; + this.state = 3491; this.sqlStatementList(); } } @@ -14559,41 +14718,41 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDeclaration(): VariableDeclarationContext { let localContext = new VariableDeclarationContext(this.context, this.state); - this.enterRule(localContext, 250, TrinoSqlParser.RULE_variableDeclaration); + this.enterRule(localContext, 262, TrinoSqlParser.RULE_variableDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3469; + this.state = 3493; this.match(TrinoSqlParser.KW_DECLARE); - this.state = 3470; + this.state = 3494; this.identifier(); - this.state = 3475; + this.state = 3499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3471; + this.state = 3495; this.match(TrinoSqlParser.T__2); - this.state = 3472; + this.state = 3496; this.identifier(); } } - this.state = 3477; + this.state = 3501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3478; + this.state = 3502; this.type_(0); - this.state = 3481; + this.state = 3505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70) { { - this.state = 3479; + this.state = 3503; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 3480; + this.state = 3504; this.valueExpression(0); } } @@ -14616,12 +14775,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sqlStatementList(): SqlStatementListContext { let localContext = new SqlStatementListContext(this.context, this.state); - this.enterRule(localContext, 252, TrinoSqlParser.RULE_sqlStatementList); + this.enterRule(localContext, 264, TrinoSqlParser.RULE_sqlStatementList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3486; + this.state = 3510; this.errorHandler.sync(this); alternative = 1; do { @@ -14629,9 +14788,9 @@ export class TrinoSqlParser extends SQLParserBase { case 1: { { - this.state = 3483; + this.state = 3507; this.controlStatement(); - this.state = 3484; + this.state = 3508; this.match(TrinoSqlParser.SEMICOLON); } } @@ -14639,9 +14798,9 @@ export class TrinoSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3488; + this.state = 3512; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -14661,50 +14820,50 @@ export class TrinoSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 254, TrinoSqlParser.RULE_privilege); + this.enterRule(localContext, 266, TrinoSqlParser.RULE_privilege); try { - this.state = 3496; + this.state = 3520; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3490; + this.state = 3514; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3491; + this.state = 3515; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3492; + this.state = 3516; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3493; + this.state = 3517; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3494; + this.state = 3518; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3495; + this.state = 3519; this.identifier(); } break; @@ -14726,29 +14885,29 @@ export class TrinoSqlParser extends SQLParserBase { } public entityKind(): EntityKindContext { let localContext = new EntityKindContext(this.context, this.state); - this.enterRule(localContext, 256, TrinoSqlParser.RULE_entityKind); + this.enterRule(localContext, 268, TrinoSqlParser.RULE_entityKind); try { - this.state = 3501; + this.state = 3525; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3498; + this.state = 3522; this.match(TrinoSqlParser.KW_TABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3499; + this.state = 3523; this.match(TrinoSqlParser.KW_SCHEMA); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3500; + this.state = 3524; this.identifier(); } break; @@ -14770,21 +14929,21 @@ export class TrinoSqlParser extends SQLParserBase { } public grantObject(): GrantObjectContext { let localContext = new GrantObjectContext(this.context, this.state); - this.enterRule(localContext, 258, TrinoSqlParser.RULE_grantObject); + this.enterRule(localContext, 270, TrinoSqlParser.RULE_grantObject); try { this.enterOuterAlt(localContext, 1); { - this.state = 3504; + this.state = 3528; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: { - this.state = 3503; + this.state = 3527; this.entityKind(); } break; } - this.state = 3506; + this.state = 3530; this.qualifiedName(); } } @@ -14804,22 +14963,22 @@ export class TrinoSqlParser extends SQLParserBase { } public tableOrViewName(): TableOrViewNameContext { let localContext = new TableOrViewNameContext(this.context, this.state); - this.enterRule(localContext, 260, TrinoSqlParser.RULE_tableOrViewName); + this.enterRule(localContext, 272, TrinoSqlParser.RULE_tableOrViewName); try { - this.state = 3510; + this.state = 3534; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3508; + this.state = 3532; this.tableRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3509; + this.state = 3533; this.viewRef(); } break; @@ -14841,41 +15000,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableRef(): TableRefContext { let localContext = new TableRefContext(this.context, this.state); - this.enterRule(localContext, 262, TrinoSqlParser.RULE_tableRef); + this.enterRule(localContext, 274, TrinoSqlParser.RULE_tableRef); try { - this.state = 3523; + this.state = 3547; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3536; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3513; + this.state = 3537; localContext._schema = this.identifier(); - this.state = 3514; + this.state = 3538; this.match(TrinoSqlParser.T__3); - this.state = 3515; + this.state = 3539; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3517; + this.state = 3541; localContext._catalog = this.identifier(); - this.state = 3518; + this.state = 3542; this.match(TrinoSqlParser.T__3); - this.state = 3519; + this.state = 3543; localContext._schema = this.identifier(); - this.state = 3520; + this.state = 3544; this.match(TrinoSqlParser.T__3); - this.state = 3521; + this.state = 3545; localContext._table = this.identifier(); } break; @@ -14897,41 +15056,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 264, TrinoSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 276, TrinoSqlParser.RULE_tableNameCreate); try { - this.state = 3536; + this.state = 3560; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3525; + this.state = 3549; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3526; + this.state = 3550; localContext._schema = this.identifier(); - this.state = 3527; + this.state = 3551; this.match(TrinoSqlParser.T__3); - this.state = 3528; + this.state = 3552; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3530; + this.state = 3554; localContext._catalog = this.identifier(); - this.state = 3531; + this.state = 3555; this.match(TrinoSqlParser.T__3); - this.state = 3532; + this.state = 3556; localContext._schema = this.identifier(); - this.state = 3533; + this.state = 3557; this.match(TrinoSqlParser.T__3); - this.state = 3534; + this.state = 3558; localContext._table = this.identifier(); } break; @@ -14953,41 +15112,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewRef(): ViewRefContext { let localContext = new ViewRefContext(this.context, this.state); - this.enterRule(localContext, 266, TrinoSqlParser.RULE_viewRef); + this.enterRule(localContext, 278, TrinoSqlParser.RULE_viewRef); try { - this.state = 3549; + this.state = 3573; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3538; + this.state = 3562; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3539; + this.state = 3563; localContext._schema = this.identifier(); - this.state = 3540; + this.state = 3564; this.match(TrinoSqlParser.T__3); - this.state = 3541; + this.state = 3565; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3543; + this.state = 3567; localContext._catalog = this.identifier(); - this.state = 3544; + this.state = 3568; this.match(TrinoSqlParser.T__3); - this.state = 3545; + this.state = 3569; localContext._schema = this.identifier(); - this.state = 3546; + this.state = 3570; this.match(TrinoSqlParser.T__3); - this.state = 3547; + this.state = 3571; localContext._view = this.identifier(); } break; @@ -15009,41 +15168,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 268, TrinoSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 280, TrinoSqlParser.RULE_viewNameCreate); try { - this.state = 3562; + this.state = 3586; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3551; + this.state = 3575; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3552; + this.state = 3576; localContext._schema = this.identifier(); - this.state = 3553; + this.state = 3577; this.match(TrinoSqlParser.T__3); - this.state = 3554; + this.state = 3578; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3556; + this.state = 3580; localContext._catalog = this.identifier(); - this.state = 3557; + this.state = 3581; this.match(TrinoSqlParser.T__3); - this.state = 3558; + this.state = 3582; localContext._schema = this.identifier(); - this.state = 3559; + this.state = 3583; this.match(TrinoSqlParser.T__3); - this.state = 3560; + this.state = 3584; localContext._view = this.identifier(); } break; @@ -15065,26 +15224,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaRef(): SchemaRefContext { let localContext = new SchemaRefContext(this.context, this.state); - this.enterRule(localContext, 270, TrinoSqlParser.RULE_schemaRef); + this.enterRule(localContext, 282, TrinoSqlParser.RULE_schemaRef); try { - this.state = 3569; + this.state = 3593; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3564; + this.state = 3588; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3565; + this.state = 3589; localContext._catalog = this.identifier(); - this.state = 3566; + this.state = 3590; this.match(TrinoSqlParser.T__3); - this.state = 3567; + this.state = 3591; localContext._schema = this.identifier(); } break; @@ -15106,26 +15265,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaNameCreate(): SchemaNameCreateContext { let localContext = new SchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 272, TrinoSqlParser.RULE_schemaNameCreate); + this.enterRule(localContext, 284, TrinoSqlParser.RULE_schemaNameCreate); try { - this.state = 3576; + this.state = 3600; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3571; + this.state = 3595; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3572; + this.state = 3596; localContext._catalog = this.identifier(); - this.state = 3573; + this.state = 3597; this.match(TrinoSqlParser.T__3); - this.state = 3574; + this.state = 3598; localContext._schema = this.identifier(); } break; @@ -15147,11 +15306,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogRef(): CatalogRefContext { let localContext = new CatalogRefContext(this.context, this.state); - this.enterRule(localContext, 274, TrinoSqlParser.RULE_catalogRef); + this.enterRule(localContext, 286, TrinoSqlParser.RULE_catalogRef); try { this.enterOuterAlt(localContext, 1); { - this.state = 3578; + this.state = 3602; localContext._catalog = this.identifier(); } } @@ -15171,11 +15330,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogNameCreate(): CatalogNameCreateContext { let localContext = new CatalogNameCreateContext(this.context, this.state); - this.enterRule(localContext, 276, TrinoSqlParser.RULE_catalogNameCreate); + this.enterRule(localContext, 288, TrinoSqlParser.RULE_catalogNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3580; + this.state = 3604; localContext._catalog = this.identifier(); } } @@ -15195,11 +15354,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 278, TrinoSqlParser.RULE_functionName); + this.enterRule(localContext, 290, TrinoSqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3582; + this.state = 3606; this.qualifiedName(); } } @@ -15219,11 +15378,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 280, TrinoSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 292, TrinoSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3584; + this.state = 3608; this.qualifiedName(); } } @@ -15243,22 +15402,22 @@ export class TrinoSqlParser extends SQLParserBase { } public columnRef(): ColumnRefContext { let localContext = new ColumnRefContext(this.context, this.state); - this.enterRule(localContext, 282, TrinoSqlParser.RULE_columnRef); + this.enterRule(localContext, 294, TrinoSqlParser.RULE_columnRef); try { - this.state = 3588; + this.state = 3612; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3586; + this.state = 3610; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3587; + this.state = 3611; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -15282,11 +15441,11 @@ export class TrinoSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 284, TrinoSqlParser.RULE_columnName); + this.enterRule(localContext, 296, TrinoSqlParser.RULE_columnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3590; + this.state = 3614; this.qualifiedName(); } } @@ -15306,11 +15465,11 @@ export class TrinoSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 286, TrinoSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 298, TrinoSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3592; + this.state = 3616; this.identifier(); } } @@ -15330,30 +15489,30 @@ export class TrinoSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 288, TrinoSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 300, TrinoSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3594; + this.state = 3618; this.identifier(); - this.state = 3599; + this.state = 3623; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 465, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3595; + this.state = 3619; this.match(TrinoSqlParser.T__3); - this.state = 3596; + this.state = 3620; this.identifier(); } } } - this.state = 3601; + this.state = 3625; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 465, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); } } } @@ -15373,19 +15532,19 @@ export class TrinoSqlParser extends SQLParserBase { } public queryPeriod(): QueryPeriodContext { let localContext = new QueryPeriodContext(this.context, this.state); - this.enterRule(localContext, 290, TrinoSqlParser.RULE_queryPeriod); + this.enterRule(localContext, 302, TrinoSqlParser.RULE_queryPeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 3602; + this.state = 3626; this.match(TrinoSqlParser.KW_FOR); - this.state = 3603; + this.state = 3627; this.rangeType(); - this.state = 3604; + this.state = 3628; this.match(TrinoSqlParser.KW_AS); - this.state = 3605; + this.state = 3629; this.match(TrinoSqlParser.KW_OF); - this.state = 3606; + this.state = 3630; localContext._end = this.valueExpression(0); } } @@ -15405,12 +15564,12 @@ export class TrinoSqlParser extends SQLParserBase { } public rangeType(): RangeTypeContext { let localContext = new RangeTypeContext(this.context, this.state); - this.enterRule(localContext, 292, TrinoSqlParser.RULE_rangeType); + this.enterRule(localContext, 304, TrinoSqlParser.RULE_rangeType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3608; + this.state = 3632; _la = this.tokenStream.LA(1); if(!(_la === 268 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -15437,9 +15596,9 @@ export class TrinoSqlParser extends SQLParserBase { } public grantor(): GrantorContext { let localContext = new GrantorContext(this.context, this.state); - this.enterRule(localContext, 294, TrinoSqlParser.RULE_grantor); + this.enterRule(localContext, 306, TrinoSqlParser.RULE_grantor); try { - this.state = 3613; + this.state = 3637; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -15662,7 +15821,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SpecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3610; + this.state = 3634; this.principal(); } break; @@ -15670,7 +15829,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserGrantorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3611; + this.state = 3635; this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -15678,7 +15837,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRoleGrantorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3612; + this.state = 3636; this.match(TrinoSqlParser.KW_CURRENT_ROLE); } break; @@ -15702,16 +15861,16 @@ export class TrinoSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 296, TrinoSqlParser.RULE_principal); + this.enterRule(localContext, 308, TrinoSqlParser.RULE_principal); try { - this.state = 3620; + this.state = 3644; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: localContext = new UnspecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3615; + this.state = 3639; this.identifier(); } break; @@ -15719,9 +15878,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3616; + this.state = 3640; this.match(TrinoSqlParser.KW_USER); - this.state = 3617; + this.state = 3641; this.identifier(); } break; @@ -15729,9 +15888,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3618; + this.state = 3642; this.match(TrinoSqlParser.KW_ROLE); - this.state = 3619; + this.state = 3643; this.identifier(); } break; @@ -15753,26 +15912,26 @@ export class TrinoSqlParser extends SQLParserBase { } public roles(): RolesContext { let localContext = new RolesContext(this.context, this.state); - this.enterRule(localContext, 298, TrinoSqlParser.RULE_roles); + this.enterRule(localContext, 310, TrinoSqlParser.RULE_roles); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3622; + this.state = 3646; this.identifier(); - this.state = 3627; + this.state = 3651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3623; + this.state = 3647; this.match(TrinoSqlParser.T__2); - this.state = 3624; + this.state = 3648; this.identifier(); } } - this.state = 3629; + this.state = 3653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15794,57 +15953,57 @@ export class TrinoSqlParser extends SQLParserBase { } public privilegeOrRole(): PrivilegeOrRoleContext { let localContext = new PrivilegeOrRoleContext(this.context, this.state); - this.enterRule(localContext, 300, TrinoSqlParser.RULE_privilegeOrRole); + this.enterRule(localContext, 312, TrinoSqlParser.RULE_privilegeOrRole); try { - this.state = 3637; + this.state = 3661; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3630; + this.state = 3654; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3631; + this.state = 3655; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3632; + this.state = 3656; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3633; + this.state = 3657; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3634; + this.state = 3658; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3635; + this.state = 3659; this.match(TrinoSqlParser.KW_EXECUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3636; + this.state = 3660; this.identifier(); } break; @@ -15866,16 +16025,16 @@ export class TrinoSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 302, TrinoSqlParser.RULE_identifier); + this.enterRule(localContext, 314, TrinoSqlParser.RULE_identifier); try { - this.state = 3644; + this.state = 3668; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3639; + this.state = 3663; this.match(TrinoSqlParser.IDENTIFIER); } break; @@ -15883,7 +16042,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3640; + this.state = 3664; this.match(TrinoSqlParser.QUOTED_IDENTIFIER); } break; @@ -16103,7 +16262,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3641; + this.state = 3665; this.nonReserved(); } break; @@ -16111,7 +16270,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3642; + this.state = 3666; this.match(TrinoSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -16119,7 +16278,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3643; + this.state = 3667; this.match(TrinoSqlParser.DIGIT_IDENTIFIER); } break; @@ -16143,27 +16302,27 @@ export class TrinoSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 304, TrinoSqlParser.RULE_number); + this.enterRule(localContext, 316, TrinoSqlParser.RULE_number); let _la: number; try { - this.state = 3658; + this.state = 3682; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3647; + this.state = 3671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3646; + this.state = 3670; this.match(TrinoSqlParser.MINUS); } } - this.state = 3649; + this.state = 3673; this.match(TrinoSqlParser.DECIMAL_VALUE); } break; @@ -16171,17 +16330,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3651; + this.state = 3675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3650; + this.state = 3674; this.match(TrinoSqlParser.MINUS); } } - this.state = 3653; + this.state = 3677; this.match(TrinoSqlParser.DOUBLE_VALUE); } break; @@ -16189,17 +16348,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3655; + this.state = 3679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3654; + this.state = 3678; this.match(TrinoSqlParser.MINUS); } } - this.state = 3657; + this.state = 3681; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -16221,9 +16380,9 @@ export class TrinoSqlParser extends SQLParserBase { } public authorizationUser(): AuthorizationUserContext { let localContext = new AuthorizationUserContext(this.context, this.state); - this.enterRule(localContext, 306, TrinoSqlParser.RULE_authorizationUser); + this.enterRule(localContext, 318, TrinoSqlParser.RULE_authorizationUser); try { - this.state = 3662; + this.state = 3686; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -16446,7 +16605,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IdentifierUserContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3660; + this.state = 3684; this.identifier(); } break; @@ -16455,7 +16614,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3661; + this.state = 3685; this.string_(); } break; @@ -16479,12 +16638,12 @@ export class TrinoSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 308, TrinoSqlParser.RULE_nonReserved); + this.enterRule(localContext, 320, TrinoSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3664; + this.state = 3688; _la = this.tokenStream.LA(1); if(!(((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0))) { this.errorHandler.recoverInline(this); @@ -16514,19 +16673,19 @@ export class TrinoSqlParser extends SQLParserBase { switch (ruleIndex) { case 23: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 39: + case 44: return this.relation_sempred(localContext as RelationContext, predIndex); - case 72: + case 78: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 74: + case 80: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 75: + case 81: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 95: + case 101: return this.type_sempred(localContext as TypeContext, predIndex); - case 105: + case 111: return this.rowPattern_sempred(localContext as RowPatternContext, predIndex); - case 141: + case 147: return this.columnRef_sempred(localContext as ColumnRefContext, predIndex); } return true; @@ -16603,7 +16762,7 @@ export class TrinoSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,340,3667,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,340,3691,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, @@ -16628,1554 +16787,1566 @@ export class TrinoSqlParser extends SQLParserBase { 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,1,0,5,0,312,8,0,10,0,12,0,315,9,0,1,0,1,0,1,1, - 1,1,1,2,1,2,3,2,323,8,2,1,3,1,3,3,3,327,8,3,1,4,1,4,3,4,331,8,4, - 1,5,1,5,3,5,335,8,5,1,6,1,6,3,6,339,8,6,1,7,1,7,1,7,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,3,8,352,8,8,1,8,1,8,1,8,1,8,1,8,3,8,359,8,8, - 1,8,1,8,3,8,363,8,8,1,8,1,8,3,8,367,8,8,1,8,1,8,1,8,1,8,3,8,373, - 8,8,1,8,1,8,3,8,377,8,8,1,8,1,8,1,8,1,8,1,8,3,8,384,8,8,1,8,1,8, - 1,8,3,8,389,8,8,1,8,1,8,3,8,393,8,8,1,8,1,8,1,8,1,8,3,8,399,8,8, - 1,8,1,8,3,8,403,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,3,8,422,8,8,1,8,1,8,1,8,1,8,3,8,428,8,8, - 1,8,1,8,3,8,432,8,8,1,8,1,8,3,8,436,8,8,1,8,1,8,3,8,440,8,8,1,8, - 1,8,1,8,1,8,1,8,1,8,3,8,448,8,8,1,8,1,8,3,8,452,8,8,1,8,3,8,455, - 8,8,1,8,1,8,1,8,3,8,460,8,8,1,8,1,8,1,8,1,8,3,8,466,8,8,1,8,1,8, - 1,8,1,8,1,8,5,8,473,8,8,10,8,12,8,476,9,8,1,8,1,8,1,8,3,8,481,8, - 8,1,8,1,8,3,8,485,8,8,1,8,1,8,1,8,1,8,3,8,491,8,8,1,8,1,8,1,8,1, - 8,1,8,3,8,498,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,506,8,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,518,8,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,527,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,536,8,8,1,8,1, - 8,1,8,1,8,3,8,542,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,553, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,561,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 3,8,569,8,8,1,8,1,8,1,8,1,8,1,8,3,8,576,8,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,3,8,586,8,8,1,8,1,8,1,8,1,8,1,8,3,8,593,8,8,1,8,1,8, - 1,8,1,8,1,8,1,8,3,8,601,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,3,8,616,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 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,1,0,5,0,324,8,0,10,0,12,0,327,9,0,1,0,1, + 0,1,1,1,1,1,2,1,2,3,2,335,8,2,1,3,1,3,3,3,339,8,3,1,4,1,4,3,4,343, + 8,4,1,5,1,5,3,5,347,8,5,1,6,1,6,3,6,351,8,6,1,7,1,7,1,7,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,3,8,364,8,8,1,8,1,8,1,8,1,8,1,8,3,8,371, + 8,8,1,8,1,8,3,8,375,8,8,1,8,1,8,3,8,379,8,8,1,8,1,8,1,8,1,8,3,8, + 385,8,8,1,8,1,8,3,8,389,8,8,1,8,1,8,1,8,1,8,1,8,3,8,396,8,8,1,8, + 1,8,1,8,3,8,401,8,8,1,8,1,8,3,8,405,8,8,1,8,1,8,1,8,1,8,3,8,411, + 8,8,1,8,1,8,3,8,415,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,434,8,8,1,8,1,8,1,8,1,8,3,8,440, + 8,8,1,8,1,8,3,8,444,8,8,1,8,1,8,3,8,448,8,8,1,8,1,8,3,8,452,8,8, + 1,8,1,8,1,8,1,8,1,8,1,8,3,8,460,8,8,1,8,1,8,3,8,464,8,8,1,8,3,8, + 467,8,8,1,8,1,8,1,8,3,8,472,8,8,1,8,1,8,1,8,1,8,3,8,478,8,8,1,8, + 1,8,1,8,1,8,1,8,5,8,485,8,8,10,8,12,8,488,9,8,1,8,1,8,1,8,3,8,493, + 8,8,1,8,1,8,3,8,497,8,8,1,8,1,8,1,8,1,8,3,8,503,8,8,1,8,1,8,1,8, + 1,8,1,8,3,8,510,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,518,8,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,530,8,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,3,8,539,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,548,8,8,1,8, + 1,8,1,8,1,8,3,8,554,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8, + 565,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,573,8,8,1,8,1,8,1,8,1,8,1,8, + 1,8,3,8,581,8,8,1,8,1,8,1,8,1,8,1,8,3,8,588,8,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,3,8,598,8,8,1,8,1,8,1,8,1,8,1,8,3,8,605,8,8,1,8, + 1,8,1,8,1,8,1,8,1,8,3,8,613,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,3,8,628,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,5,8,649,8,8,10,8,12,8,652,9,8,3,8,654,8, - 8,1,8,3,8,657,8,8,1,8,3,8,660,8,8,1,8,1,8,1,8,1,8,3,8,666,8,8,1, - 8,1,8,1,8,3,8,671,8,8,1,8,1,8,1,8,1,8,1,8,3,8,678,8,8,1,8,1,8,1, - 8,1,8,3,8,684,8,8,1,8,1,8,3,8,688,8,8,1,8,1,8,3,8,692,8,8,1,8,1, - 8,1,8,1,8,1,8,1,8,3,8,700,8,8,1,8,1,8,1,8,1,8,3,8,706,8,8,1,8,1, - 8,3,8,710,8,8,1,8,1,8,3,8,714,8,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,3,8,728,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,736,8, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,755,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,778,8,8,10,8,12,8,781, - 9,8,3,8,783,8,8,1,8,1,8,1,8,1,8,1,8,3,8,790,8,8,1,8,1,8,1,8,1,8, - 1,8,3,8,797,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,806,8,8,1,8,1,8, - 3,8,810,8,8,1,8,1,8,1,8,1,8,1,8,3,8,817,8,8,1,8,1,8,1,8,1,8,5,8, - 823,8,8,10,8,12,8,826,9,8,1,8,1,8,1,8,1,8,5,8,832,8,8,10,8,12,8, - 835,9,8,1,8,1,8,1,8,3,8,840,8,8,1,8,1,8,1,8,3,8,845,8,8,1,8,1,8, - 3,8,849,8,8,1,8,1,8,1,8,1,8,5,8,855,8,8,10,8,12,8,858,9,8,1,8,1, - 8,3,8,862,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,871,8,8,1,8,1,8,1, - 8,1,8,3,8,877,8,8,1,8,1,8,1,8,5,8,882,8,8,10,8,12,8,885,9,8,1,8, - 1,8,1,8,1,8,5,8,891,8,8,10,8,12,8,894,9,8,1,8,1,8,1,8,3,8,899,8, - 8,1,8,1,8,3,8,903,8,8,1,8,1,8,1,8,1,8,3,8,909,8,8,1,8,1,8,1,8,5, - 8,914,8,8,10,8,12,8,917,9,8,1,8,1,8,3,8,921,8,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,5,8,932,8,8,10,8,12,8,935,9,8,1,8,1,8,3,8,939, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,951,8,8,1,8,1,8, - 3,8,955,8,8,1,8,1,8,1,8,1,8,3,8,961,8,8,1,8,1,8,1,8,1,8,1,8,5,8, - 968,8,8,10,8,12,8,971,9,8,1,8,1,8,3,8,975,8,8,1,8,1,8,1,8,1,8,3, - 8,981,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1009,8,8,1, - 8,1,8,1,8,1,8,3,8,1015,8,8,3,8,1017,8,8,1,8,1,8,1,8,1,8,3,8,1023, - 8,8,1,8,1,8,1,8,1,8,3,8,1029,8,8,3,8,1031,8,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,1039,8,8,3,8,1041,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 3,8,1051,8,8,3,8,1053,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,1068,8,8,1,8,1,8,1,8,3,8,1073,8,8,1,8,1,8,1,8, - 1,8,1,8,3,8,1080,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1090,8, - 8,1,8,1,8,1,8,1,8,3,8,1096,8,8,3,8,1098,8,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,1106,8,8,3,8,1108,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1131,8,8,10, - 8,12,8,1134,9,8,3,8,1136,8,8,1,8,1,8,3,8,1140,8,8,1,8,1,8,3,8,1144, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,661,8,8,10,8,12,8,664,9,8,3,8,666, + 8,8,1,8,3,8,669,8,8,1,8,3,8,672,8,8,1,8,1,8,1,8,1,8,3,8,678,8,8, + 1,8,1,8,1,8,3,8,683,8,8,1,8,1,8,1,8,1,8,1,8,3,8,690,8,8,1,8,1,8, + 1,8,1,8,3,8,696,8,8,1,8,1,8,3,8,700,8,8,1,8,1,8,3,8,704,8,8,1,8, + 1,8,1,8,1,8,1,8,1,8,3,8,712,8,8,1,8,1,8,1,8,1,8,3,8,718,8,8,1,8, + 1,8,3,8,722,8,8,1,8,1,8,3,8,726,8,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,3,8,740,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,748, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,3,8,767,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,790,8,8,10,8,12,8,793, + 9,8,3,8,795,8,8,1,8,1,8,1,8,1,8,1,8,3,8,802,8,8,1,8,1,8,1,8,1,8, + 1,8,3,8,809,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,818,8,8,1,8,1,8, + 3,8,822,8,8,1,8,1,8,1,8,1,8,1,8,3,8,829,8,8,1,8,1,8,1,8,1,8,5,8, + 835,8,8,10,8,12,8,838,9,8,1,8,1,8,1,8,1,8,5,8,844,8,8,10,8,12,8, + 847,9,8,1,8,1,8,1,8,3,8,852,8,8,1,8,1,8,1,8,3,8,857,8,8,1,8,1,8, + 3,8,861,8,8,1,8,1,8,1,8,1,8,5,8,867,8,8,10,8,12,8,870,9,8,1,8,1, + 8,3,8,874,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,883,8,8,1,8,1,8,1, + 8,1,8,3,8,889,8,8,1,8,1,8,1,8,5,8,894,8,8,10,8,12,8,897,9,8,1,8, + 1,8,1,8,1,8,5,8,903,8,8,10,8,12,8,906,9,8,1,8,1,8,1,8,3,8,911,8, + 8,1,8,1,8,3,8,915,8,8,1,8,1,8,1,8,1,8,3,8,921,8,8,1,8,1,8,1,8,5, + 8,926,8,8,10,8,12,8,929,9,8,1,8,1,8,3,8,933,8,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,5,8,944,8,8,10,8,12,8,947,9,8,1,8,1,8,3,8,951, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,963,8,8,1,8,1,8, + 3,8,967,8,8,1,8,1,8,1,8,1,8,3,8,973,8,8,1,8,1,8,1,8,1,8,1,8,5,8, + 980,8,8,10,8,12,8,983,9,8,1,8,1,8,3,8,987,8,8,1,8,1,8,1,8,1,8,3, + 8,993,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1021,8,8,1, + 8,1,8,1,8,1,8,3,8,1027,8,8,3,8,1029,8,8,1,8,1,8,1,8,1,8,3,8,1035, + 8,8,1,8,1,8,1,8,1,8,3,8,1041,8,8,3,8,1043,8,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,1051,8,8,3,8,1053,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 3,8,1063,8,8,3,8,1065,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,3,8,1080,8,8,1,8,1,8,1,8,3,8,1085,8,8,1,8,1,8,1,8, + 1,8,1,8,3,8,1092,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1102,8, + 8,1,8,1,8,1,8,1,8,3,8,1108,8,8,3,8,1110,8,8,1,8,1,8,1,8,1,8,1,8, + 1,8,3,8,1118,8,8,3,8,1120,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1143,8,8,10, + 8,12,8,1146,9,8,3,8,1148,8,8,1,8,1,8,3,8,1152,8,8,1,8,1,8,3,8,1156, 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8, - 1160,8,8,10,8,12,8,1163,9,8,3,8,1165,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,5,8,1174,8,8,10,8,12,8,1177,9,8,3,8,1179,8,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1195,8,8,1,8,1,8,1,8, - 1,8,1,8,1,8,5,8,1203,8,8,10,8,12,8,1206,9,8,1,8,3,8,1209,8,8,1,8, - 1,8,1,8,1,8,3,8,1215,8,8,1,8,3,8,1218,8,8,1,8,1,8,1,8,1,8,1,8,4, - 8,1225,8,8,11,8,12,8,1226,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,1239,8,8,1,9,3,9,1242,8,9,1,9,1,9,1,10,1,10,1,10,1,10,5,10, - 1250,8,10,10,10,12,10,1253,9,10,1,11,3,11,1256,8,11,1,11,1,11,1, - 12,1,12,3,12,1262,8,12,1,12,1,12,1,12,5,12,1267,8,12,10,12,12,12, - 1270,9,12,1,13,1,13,3,13,1274,8,13,1,14,1,14,1,14,1,14,3,14,1280, - 8,14,1,14,1,14,3,14,1284,8,14,1,14,1,14,3,14,1288,8,14,1,15,1,15, - 1,15,1,15,3,15,1294,8,15,1,16,1,16,1,16,1,16,1,17,1,17,1,17,5,17, - 1303,8,17,10,17,12,17,1306,9,17,1,18,1,18,1,18,1,18,1,19,1,19,3, - 19,1314,8,19,1,20,1,20,1,20,1,20,1,20,1,20,5,20,1322,8,20,10,20, - 12,20,1325,9,20,3,20,1327,8,20,1,20,1,20,1,20,3,20,1332,8,20,3,20, - 1334,8,20,1,20,1,20,1,20,1,20,1,20,3,20,1341,8,20,1,20,1,20,1,20, - 1,20,3,20,1347,8,20,3,20,1349,8,20,1,21,1,21,3,21,1353,8,21,1,22, - 1,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,1363,8,23,1,23,1,23,1,23, - 1,23,3,23,1369,8,23,1,23,5,23,1372,8,23,10,23,12,23,1375,9,23,1, - 24,1,24,1,24,1,24,1,24,1,24,1,24,5,24,1384,8,24,10,24,12,24,1387, - 9,24,1,24,1,24,1,24,1,24,3,24,1393,8,24,1,25,1,25,3,25,1397,8,25, - 1,25,3,25,1400,8,25,1,25,1,25,3,25,1404,8,25,1,26,1,26,3,26,1408, - 8,26,1,26,1,26,1,26,5,26,1413,8,26,10,26,12,26,1416,9,26,1,26,1, - 26,1,26,1,26,5,26,1422,8,26,10,26,12,26,1425,9,26,3,26,1427,8,26, - 1,26,3,26,1430,8,26,1,26,1,26,1,26,3,26,1435,8,26,1,26,3,26,1438, - 8,26,1,26,1,26,1,26,1,26,5,26,1444,8,26,10,26,12,26,1447,9,26,3, - 26,1449,8,26,1,27,1,27,1,27,1,28,1,28,1,28,1,29,3,29,1458,8,29,1, - 29,1,29,1,29,5,29,1463,8,29,10,29,12,29,1466,9,29,1,30,1,30,1,30, - 5,30,1471,8,30,10,30,12,30,1474,9,30,1,31,1,31,1,31,1,31,1,31,1, - 31,5,31,1482,8,31,10,31,12,31,1485,9,31,3,31,1487,8,31,1,31,1,31, - 1,31,1,31,1,31,1,31,5,31,1495,8,31,10,31,12,31,1498,9,31,3,31,1500, - 8,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,5,31,1509,8,31,10,31,12, - 31,1512,9,31,1,31,1,31,3,31,1516,8,31,1,32,1,32,1,32,1,32,5,32,1522, - 8,32,10,32,12,32,1525,9,32,3,32,1527,8,32,1,32,1,32,3,32,1531,8, - 32,1,33,1,33,3,33,1535,8,33,1,34,1,34,1,34,1,34,1,34,1,34,1,35,3, - 35,1544,8,35,1,35,1,35,1,35,3,35,1549,8,35,1,35,1,35,1,35,1,35,1, - 35,5,35,1556,8,35,10,35,12,35,1559,9,35,3,35,1561,8,35,1,35,3,35, - 1564,8,35,1,36,1,36,3,36,1568,8,36,1,36,1,36,1,36,1,36,1,36,1,37, - 1,37,1,38,1,38,3,38,1579,8,38,1,38,3,38,1582,8,38,1,38,3,38,1585, - 8,38,1,38,1,38,1,38,1,38,1,38,3,38,1592,8,38,1,38,3,38,1595,8,38, - 1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, - 1,39,1,39,1,39,1,39,3,39,1614,8,39,5,39,1616,8,39,10,39,12,39,1619, - 9,39,1,40,3,40,1622,8,40,1,40,1,40,3,40,1626,8,40,1,40,1,40,3,40, - 1630,8,40,1,40,1,40,3,40,1634,8,40,3,40,1636,8,40,1,41,1,41,1,41, - 1,41,1,41,1,41,1,41,5,41,1645,8,41,10,41,12,41,1648,9,41,1,41,1, - 41,3,41,1652,8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1661,8, - 42,1,43,1,43,1,44,1,44,1,45,1,45,1,45,3,45,1670,8,45,1,45,3,45,1673, - 8,45,1,46,1,46,1,46,1,46,3,46,1679,8,46,1,47,1,47,1,47,1,47,1,47, - 1,47,3,47,1687,8,47,1,47,1,47,1,47,1,47,1,47,5,47,1694,8,47,10,47, - 12,47,1697,9,47,3,47,1699,8,47,1,47,1,47,1,47,1,47,5,47,1705,8,47, - 10,47,12,47,1708,9,47,3,47,1710,8,47,1,47,3,47,1713,8,47,1,47,1, - 47,1,47,3,47,1718,8,47,1,47,3,47,1721,8,47,1,47,1,47,1,47,1,47,1, - 47,1,47,1,47,1,47,5,47,1731,8,47,10,47,12,47,1734,9,47,3,47,1736, - 8,47,1,47,1,47,1,47,1,47,5,47,1742,8,47,10,47,12,47,1745,9,47,1, - 47,1,47,3,47,1749,8,47,1,47,1,47,3,47,1753,8,47,3,47,1755,8,47,3, - 47,1757,8,47,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,3,49,1772,8,49,3,49,1774,8,49,1,50,1,50,1,50,1,50,1, - 50,1,50,1,50,1,50,1,50,3,50,1785,8,50,1,51,1,51,1,51,1,51,1,51,1, - 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, - 51,3,51,1806,8,51,1,52,1,52,1,52,1,52,1,52,1,52,5,52,1814,8,52,10, - 52,12,52,1817,9,52,1,52,1,52,1,53,1,53,1,53,1,53,1,54,1,54,3,54, - 1827,8,54,1,54,1,54,3,54,1831,8,54,3,54,1833,8,54,1,55,1,55,1,55, - 1,55,5,55,1839,8,55,10,55,12,55,1842,9,55,1,55,1,55,1,56,1,56,1, - 56,1,56,5,56,1850,8,56,10,56,12,56,1853,9,56,1,56,1,56,1,57,1,57, - 1,57,1,57,5,57,1861,8,57,10,57,12,57,1864,9,57,1,57,1,57,1,58,1, - 58,3,58,1870,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5, - 58,1881,8,58,10,58,12,58,1884,9,58,1,58,1,58,1,58,3,58,1889,8,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,1913,8,58,10,58, - 12,58,1916,9,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,3,58,1930,8,58,1,58,1,58,1,58,3,58,1935,8,58,1,58,1,58, - 3,58,1939,8,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,1949, - 8,59,1,59,1,59,1,59,1,59,3,59,1955,8,59,1,59,1,59,1,59,1,59,3,59, - 1961,8,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,1969,8,59,1,59,1,59, - 1,59,3,59,1974,8,59,1,59,1,59,1,59,1,59,1,59,3,59,1981,8,59,3,59, - 1983,8,59,1,59,1,59,1,59,1,59,3,59,1989,8,59,1,59,1,59,1,59,1,59, - 3,59,1995,8,59,1,59,1,59,3,59,1999,8,59,1,59,1,59,1,59,3,59,2004, - 8,59,1,59,1,59,1,59,1,59,1,59,5,59,2011,8,59,10,59,12,59,2014,9, - 59,1,59,1,59,3,59,2018,8,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1, - 60,1,60,1,60,5,60,2030,8,60,10,60,12,60,2033,9,60,1,60,1,60,1,60, - 1,60,1,60,5,60,2040,8,60,10,60,12,60,2043,9,60,3,60,2045,8,60,1, - 61,1,61,1,62,1,62,1,62,1,62,1,62,3,62,2054,8,62,1,63,1,63,1,63,3, - 63,2059,8,63,1,63,1,63,1,63,3,63,2064,8,63,3,63,2066,8,63,1,64,1, - 64,1,64,1,64,1,64,5,64,2073,8,64,10,64,12,64,2076,9,64,3,64,2078, - 8,64,1,64,1,64,1,64,1,64,5,64,2084,8,64,10,64,12,64,2087,9,64,3, - 64,2089,8,64,1,64,1,64,1,65,1,65,1,65,3,65,2096,8,65,1,65,1,65,1, - 65,3,65,2101,8,65,1,66,1,66,1,66,1,66,1,66,3,66,2108,8,66,1,66,1, - 66,3,66,2112,8,66,3,66,2114,8,66,1,66,1,66,1,66,1,66,1,66,1,66,3, - 66,2122,8,66,1,66,1,66,1,66,1,66,1,66,1,66,5,66,2130,8,66,10,66, - 12,66,2133,9,66,1,66,1,66,1,66,3,66,2138,8,66,3,66,2140,8,66,1,67, - 1,67,1,67,1,67,1,67,3,67,2147,8,67,1,67,1,67,3,67,2151,8,67,3,67, - 2153,8,67,1,67,1,67,1,67,1,67,1,67,3,67,2160,8,67,1,67,1,67,3,67, - 2164,8,67,3,67,2166,8,67,3,67,2168,8,67,1,68,1,68,1,68,1,68,1,68, - 5,68,2175,8,68,10,68,12,68,2178,9,68,1,68,1,68,1,68,1,68,1,68,1, - 68,1,68,1,68,3,68,2188,8,68,1,69,1,69,3,69,2192,8,69,1,70,1,70,1, - 70,1,70,1,70,1,70,5,70,2200,8,70,10,70,12,70,2203,9,70,1,70,1,70, - 1,71,1,71,1,72,1,72,1,72,3,72,2212,8,72,1,72,1,72,3,72,2216,8,72, - 1,72,1,72,1,72,1,72,1,72,1,72,5,72,2224,8,72,10,72,12,72,2227,9, - 72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2239,8, - 73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2247,8,73,1,73,1,73,1,73,1, - 73,1,73,5,73,2254,8,73,10,73,12,73,2257,9,73,1,73,1,73,1,73,3,73, - 2262,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2270,8,73,1,73,1,73, - 1,73,1,73,3,73,2276,8,73,1,73,1,73,3,73,2280,8,73,1,73,1,73,1,73, - 3,73,2285,8,73,1,73,1,73,1,73,3,73,2290,8,73,1,74,1,74,1,74,1,74, - 3,74,2296,8,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,5,74,2310,8,74,10,74,12,74,2313,9,74,1,75,1,75,1,75,1, - 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, - 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,4,75,2340,8,75,11,75, - 12,75,2341,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2351,8,75,10, - 75,12,75,2354,9,75,1,75,1,75,1,75,1,75,1,75,3,75,2361,8,75,1,75, - 1,75,1,75,3,75,2366,8,75,1,75,1,75,1,75,3,75,2371,8,75,1,75,1,75, - 1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2382,8,75,10,75,12,75,2385, - 9,75,1,75,1,75,1,75,3,75,2390,8,75,1,75,3,75,2393,8,75,1,75,1,75, - 1,75,1,75,1,75,3,75,2400,8,75,1,75,1,75,1,75,3,75,2405,8,75,1,75, - 3,75,2408,8,75,1,75,3,75,2411,8,75,1,75,1,75,1,75,3,75,2416,8,75, - 1,75,1,75,1,75,5,75,2421,8,75,10,75,12,75,2424,9,75,3,75,2426,8, - 75,1,75,1,75,1,75,1,75,1,75,5,75,2433,8,75,10,75,12,75,2436,9,75, - 3,75,2438,8,75,1,75,1,75,3,75,2442,8,75,1,75,3,75,2445,8,75,1,75, - 3,75,2448,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, - 1,75,5,75,2461,8,75,10,75,12,75,2464,9,75,3,75,2466,8,75,1,75,1, - 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, - 75,4,75,2483,8,75,11,75,12,75,2484,1,75,1,75,3,75,2489,8,75,1,75, - 1,75,1,75,1,75,4,75,2495,8,75,11,75,12,75,2496,1,75,1,75,3,75,2501, - 8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, - 1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2524,8,75,10,75, - 12,75,2527,9,75,3,75,2529,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, - 3,75,2538,8,75,1,75,1,75,1,75,1,75,3,75,2544,8,75,1,75,1,75,1,75, - 1,75,3,75,2550,8,75,1,75,1,75,1,75,1,75,3,75,2556,8,75,1,75,1,75, - 1,75,1,75,1,75,1,75,1,75,3,75,2565,8,75,1,75,3,75,2568,8,75,1,75, - 3,75,2571,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75, - 1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,2590,8,75,1,75,1,75,1,75, - 1,75,1,75,1,75,1,75,3,75,2599,8,75,1,75,1,75,1,75,1,75,1,75,1,75, - 1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75, - 2619,8,75,10,75,12,75,2622,9,75,3,75,2624,8,75,1,75,1,75,1,75,1, - 75,1,75,1,75,1,75,1,75,3,75,2634,8,75,1,75,1,75,1,75,1,75,1,75,1, - 75,1,75,3,75,2643,8,75,1,75,1,75,1,75,1,75,3,75,2649,8,75,1,75,1, - 75,1,75,1,75,3,75,2655,8,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, - 75,1,75,3,75,2666,8,75,3,75,2668,8,75,1,75,1,75,1,75,3,75,2673,8, - 75,1,75,1,75,1,75,1,75,1,75,3,75,2680,8,75,3,75,2682,8,75,1,75,1, - 75,1,75,1,75,3,75,2688,8,75,1,75,1,75,1,75,1,75,3,75,2694,8,75,1, - 75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2703,8,75,10,75,12,75,2706, - 9,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,2714,8,75,1,75,1,75,1,75, - 3,75,2719,8,75,1,75,1,75,1,75,3,75,2724,8,75,3,75,2726,8,75,3,75, - 2728,8,75,1,75,1,75,1,75,1,75,3,75,2734,8,75,3,75,2736,8,75,1,75, - 1,75,1,75,1,75,1,75,1,75,5,75,2744,8,75,10,75,12,75,2747,9,75,1, - 75,1,75,1,75,1,75,1,75,1,75,3,75,2755,8,75,3,75,2757,8,75,1,75,1, - 75,1,75,1,75,3,75,2763,8,75,3,75,2765,8,75,1,75,3,75,2768,8,75,1, - 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75,2778,8,75,10,75,12,75, - 2781,9,75,1,76,1,76,1,76,1,76,1,76,3,76,2788,8,76,1,76,1,76,1,76, - 1,76,5,76,2794,8,76,10,76,12,76,2797,9,76,3,76,2799,8,76,1,77,1, - 77,1,77,3,77,2804,8,77,1,78,1,78,1,78,3,78,2809,8,78,1,79,1,79,1, - 79,1,79,1,80,1,80,1,81,1,81,1,81,1,81,3,81,2821,8,81,1,82,1,82,3, - 82,2825,8,82,1,82,1,82,3,82,2829,8,82,1,82,3,82,2832,8,82,3,82,2834, - 8,82,1,83,1,83,1,83,1,83,1,83,1,83,3,83,2842,8,83,1,84,3,84,2845, - 8,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,3,84,2855,8,84,1,85, - 1,85,1,86,1,86,1,86,1,86,3,86,2863,8,86,1,87,1,87,1,87,1,87,3,87, - 2869,8,87,3,87,2871,8,87,1,88,1,88,1,88,1,88,1,88,1,88,3,88,2879, - 8,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,3,92,2889,8,92,1,92, - 1,92,1,92,1,92,3,92,2895,8,92,1,93,1,93,1,94,1,94,1,95,1,95,1,95, - 1,95,1,95,1,95,5,95,2907,8,95,10,95,12,95,2910,9,95,1,95,1,95,1, - 95,1,95,1,95,1,95,3,95,2918,8,95,1,95,1,95,1,95,1,95,1,95,3,95,2925, - 8,95,1,95,1,95,1,95,3,95,2930,8,95,1,95,1,95,1,95,1,95,1,95,3,95, - 2937,8,95,1,95,1,95,1,95,3,95,2942,8,95,1,95,1,95,1,95,1,95,1,95, - 1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95, - 1,95,5,95,2963,8,95,10,95,12,95,2966,9,95,1,95,1,95,3,95,2970,8, - 95,3,95,2972,8,95,1,95,1,95,1,95,1,95,1,95,3,95,2979,8,95,5,95,2981, - 8,95,10,95,12,95,2984,9,95,1,96,1,96,1,96,1,96,3,96,2990,8,96,1, - 97,1,97,3,97,2994,8,97,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,3,100,3010,8,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,5,100,3023,8,100, - 10,100,12,100,3026,9,100,1,100,1,100,1,100,1,100,3,100,3032,8,100, - 1,100,1,100,1,100,1,100,1,100,1,100,1,100,3,100,3041,8,100,1,100, - 1,100,1,100,1,100,1,100,1,100,5,100,3049,8,100,10,100,12,100,3052, - 9,100,1,100,1,100,3,100,3056,8,100,1,100,1,100,1,100,1,100,1,100, - 5,100,3063,8,100,10,100,12,100,3066,9,100,1,100,1,100,3,100,3070, - 8,100,1,101,1,101,1,101,1,101,1,101,1,101,3,101,3078,8,101,1,102, - 1,102,1,102,1,102,5,102,3084,8,102,10,102,12,102,3087,9,102,3,102, - 3089,8,102,1,102,1,102,1,102,1,102,3,102,3095,8,102,1,102,3,102, - 3098,8,102,1,102,1,102,1,102,1,102,1,102,3,102,3105,8,102,1,102, - 1,102,1,102,1,102,5,102,3111,8,102,10,102,12,102,3114,9,102,3,102, - 3116,8,102,1,102,1,102,1,102,1,102,5,102,3122,8,102,10,102,12,102, - 3125,9,102,3,102,3127,8,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,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103,3153,8,103,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,3164,8,104, - 1,105,1,105,1,105,3,105,3169,8,105,1,105,1,105,1,105,1,105,1,105, - 5,105,3176,8,105,10,105,12,105,3179,9,105,1,106,1,106,1,106,1,106, - 1,106,1,106,1,106,1,106,5,106,3189,8,106,10,106,12,106,3192,9,106, - 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, - 1,106,3,106,3206,8,106,1,107,1,107,3,107,3210,8,107,1,107,1,107, - 3,107,3214,8,107,1,107,1,107,3,107,3218,8,107,1,107,1,107,1,107, - 1,107,3,107,3224,8,107,1,107,1,107,3,107,3228,8,107,1,107,1,107, - 3,107,3232,8,107,1,107,1,107,3,107,3236,8,107,3,107,3238,8,107,1, - 108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,3,109,3248,8,109,1, - 110,1,110,1,110,1,110,1,110,3,110,3255,8,110,1,111,1,111,1,111,1, - 111,1,111,1,111,1,111,3,111,3264,8,111,1,112,1,112,1,112,1,112,1, - 112,3,112,3271,8,112,1,113,1,113,1,113,1,113,1,113,3,113,3278,8, - 113,1,114,1,114,1,114,5,114,3283,8,114,10,114,12,114,3286,9,114, - 1,115,1,115,1,115,1,115,5,115,3292,8,115,10,115,12,115,3295,9,115, - 1,115,1,115,1,116,1,116,1,116,1,116,1,116,5,116,3304,8,116,10,116, - 12,116,3307,9,116,3,116,3309,8,116,1,116,1,116,1,117,1,117,1,117, - 1,117,1,117,5,117,3318,8,117,10,117,12,117,3321,9,117,3,117,3323, - 8,117,1,117,1,117,1,118,3,118,3328,8,118,1,118,1,118,1,119,1,119, - 1,119,1,120,1,120,1,120,3,120,3338,8,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120, - 3354,8,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 1,121,4,121,3366,8,121,11,121,12,121,3367,1,121,3,121,3371,8,121, - 1,121,1,121,1,121,1,121,1,121,4,121,3378,8,121,11,121,12,121,3379, - 1,121,3,121,3383,8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 1,121,5,121,3393,8,121,10,121,12,121,3396,9,121,1,121,3,121,3399, - 8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 1,121,5,121,3412,8,121,10,121,12,121,3415,9,121,1,121,3,121,3418, - 8,121,1,121,1,121,1,121,1,121,3,121,3424,8,121,1,121,1,121,1,121, - 1,121,1,121,1,121,1,121,1,121,3,121,3434,8,121,1,121,1,121,1,121, - 1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,3446,8,121,1,121, - 1,121,1,121,1,121,1,121,1,121,1,121,3,121,3455,8,121,1,122,1,122, - 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124, - 1,125,1,125,1,125,1,125,5,125,3474,8,125,10,125,12,125,3477,9,125, - 1,125,1,125,1,125,3,125,3482,8,125,1,126,1,126,1,126,4,126,3487, - 8,126,11,126,12,126,3488,1,127,1,127,1,127,1,127,1,127,1,127,3,127, - 3497,8,127,1,128,1,128,1,128,3,128,3502,8,128,1,129,3,129,3505,8, - 129,1,129,1,129,1,130,1,130,3,130,3511,8,130,1,131,1,131,1,131,1, - 131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,3524,8,131,1, - 132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 3,132,3537,8,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,3,133,3550,8,133,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,3,134,3563,8,134,1,135,1,135, - 1,135,1,135,1,135,3,135,3570,8,135,1,136,1,136,1,136,1,136,1,136, - 3,136,3577,8,136,1,137,1,137,1,138,1,138,1,139,1,139,1,140,1,140, - 1,141,1,141,3,141,3589,8,141,1,142,1,142,1,143,1,143,1,144,1,144, - 1,144,5,144,3598,8,144,10,144,12,144,3601,9,144,1,145,1,145,1,145, - 1,145,1,145,1,145,1,146,1,146,1,147,1,147,1,147,3,147,3614,8,147, - 1,148,1,148,1,148,1,148,1,148,3,148,3621,8,148,1,149,1,149,1,149, - 5,149,3626,8,149,10,149,12,149,3629,9,149,1,150,1,150,1,150,1,150, - 1,150,1,150,1,150,3,150,3638,8,150,1,151,1,151,1,151,1,151,1,151, - 3,151,3645,8,151,1,152,3,152,3648,8,152,1,152,1,152,3,152,3652,8, - 152,1,152,1,152,3,152,3656,8,152,1,152,3,152,3659,8,152,1,153,1, - 153,3,153,3663,8,153,1,154,1,154,1,154,0,7,46,78,144,148,150,190, - 210,155,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,120, - 122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152, - 154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184, - 186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216, - 218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248, - 250,252,254,256,258,260,262,264,266,268,270,272,274,276,278,280, - 282,284,286,288,290,292,294,296,298,300,302,304,306,308,0,36,2,0, - 39,39,229,229,2,0,72,72,131,131,2,0,105,105,122,122,2,0,92,92,123, - 123,1,0,239,240,2,0,101,101,174,174,2,0,324,324,329,329,2,0,91,91, - 281,281,2,0,29,29,75,75,2,0,101,101,148,148,2,0,22,22,79,79,2,0, - 33,33,259,259,3,0,35,35,150,150,270,270,2,0,124,124,247,247,2,0, - 85,85,89,89,2,0,144,144,189,189,2,0,125,125,197,197,2,0,54,54,281, - 281,1,0,318,319,1,0,320,322,1,0,291,293,4,0,89,89,97,97,273,273, - 283,283,2,0,49,49,280,280,2,0,100,100,241,241,1,0,312,317,3,0,22, - 22,26,26,254,254,2,0,97,97,273,273,5,0,67,67,118,118,170,171,245, - 245,310,310,1,0,175,178,2,0,304,304,306,306,2,0,102,102,212,212, - 3,0,113,113,137,137,263,263,4,0,80,80,132,132,160,160,294,294,2, - 0,192,192,309,309,2,0,268,268,298,298,54,0,18,22,24,24,26,27,29, - 33,35,35,37,39,42,49,51,52,56,56,65,67,69,72,74,75,77,78,80,82,85, - 87,89,89,92,92,95,95,98,102,104,104,107,113,116,116,118,121,123, - 124,126,126,129,129,131,132,134,135,137,137,144,151,153,153,155, - 155,157,157,160,171,173,180,184,189,191,193,196,196,198,213,215, - 220,222,233,235,237,239,247,249,259,261,264,266,271,274,276,278, - 280,282,284,286,289,291,295,297,299,302,303,305,311,4212,0,313,1, - 0,0,0,2,318,1,0,0,0,4,320,1,0,0,0,6,324,1,0,0,0,8,328,1,0,0,0,10, - 332,1,0,0,0,12,336,1,0,0,0,14,340,1,0,0,0,16,1238,1,0,0,0,18,1241, - 1,0,0,0,20,1245,1,0,0,0,22,1255,1,0,0,0,24,1259,1,0,0,0,26,1273, - 1,0,0,0,28,1275,1,0,0,0,30,1289,1,0,0,0,32,1295,1,0,0,0,34,1299, - 1,0,0,0,36,1307,1,0,0,0,38,1313,1,0,0,0,40,1315,1,0,0,0,42,1352, - 1,0,0,0,44,1354,1,0,0,0,46,1356,1,0,0,0,48,1392,1,0,0,0,50,1396, - 1,0,0,0,52,1405,1,0,0,0,54,1450,1,0,0,0,56,1453,1,0,0,0,58,1457, - 1,0,0,0,60,1467,1,0,0,0,62,1515,1,0,0,0,64,1530,1,0,0,0,66,1534, - 1,0,0,0,68,1536,1,0,0,0,70,1543,1,0,0,0,72,1565,1,0,0,0,74,1574, - 1,0,0,0,76,1594,1,0,0,0,78,1596,1,0,0,0,80,1635,1,0,0,0,82,1651, - 1,0,0,0,84,1653,1,0,0,0,86,1662,1,0,0,0,88,1664,1,0,0,0,90,1672, - 1,0,0,0,92,1678,1,0,0,0,94,1680,1,0,0,0,96,1758,1,0,0,0,98,1773, - 1,0,0,0,100,1784,1,0,0,0,102,1805,1,0,0,0,104,1807,1,0,0,0,106,1820, - 1,0,0,0,108,1824,1,0,0,0,110,1834,1,0,0,0,112,1845,1,0,0,0,114,1856, - 1,0,0,0,116,1938,1,0,0,0,118,2017,1,0,0,0,120,2044,1,0,0,0,122,2046, - 1,0,0,0,124,2053,1,0,0,0,126,2065,1,0,0,0,128,2067,1,0,0,0,130,2095, - 1,0,0,0,132,2102,1,0,0,0,134,2167,1,0,0,0,136,2187,1,0,0,0,138,2189, - 1,0,0,0,140,2193,1,0,0,0,142,2206,1,0,0,0,144,2215,1,0,0,0,146,2289, - 1,0,0,0,148,2295,1,0,0,0,150,2767,1,0,0,0,152,2782,1,0,0,0,154,2800, - 1,0,0,0,156,2805,1,0,0,0,158,2810,1,0,0,0,160,2814,1,0,0,0,162,2820, - 1,0,0,0,164,2833,1,0,0,0,166,2841,1,0,0,0,168,2854,1,0,0,0,170,2856, - 1,0,0,0,172,2862,1,0,0,0,174,2870,1,0,0,0,176,2878,1,0,0,0,178,2880, - 1,0,0,0,180,2882,1,0,0,0,182,2884,1,0,0,0,184,2886,1,0,0,0,186,2896, - 1,0,0,0,188,2898,1,0,0,0,190,2971,1,0,0,0,192,2989,1,0,0,0,194,2993, - 1,0,0,0,196,2995,1,0,0,0,198,3000,1,0,0,0,200,3069,1,0,0,0,202,3071, - 1,0,0,0,204,3088,1,0,0,0,206,3152,1,0,0,0,208,3163,1,0,0,0,210,3165, - 1,0,0,0,212,3205,1,0,0,0,214,3237,1,0,0,0,216,3239,1,0,0,0,218,3247, - 1,0,0,0,220,3254,1,0,0,0,222,3263,1,0,0,0,224,3270,1,0,0,0,226,3277, - 1,0,0,0,228,3279,1,0,0,0,230,3287,1,0,0,0,232,3298,1,0,0,0,234,3312, - 1,0,0,0,236,3327,1,0,0,0,238,3331,1,0,0,0,240,3353,1,0,0,0,242,3454, - 1,0,0,0,244,3456,1,0,0,0,246,3461,1,0,0,0,248,3466,1,0,0,0,250,3469, - 1,0,0,0,252,3486,1,0,0,0,254,3496,1,0,0,0,256,3501,1,0,0,0,258,3504, - 1,0,0,0,260,3510,1,0,0,0,262,3523,1,0,0,0,264,3536,1,0,0,0,266,3549, - 1,0,0,0,268,3562,1,0,0,0,270,3569,1,0,0,0,272,3576,1,0,0,0,274,3578, - 1,0,0,0,276,3580,1,0,0,0,278,3582,1,0,0,0,280,3584,1,0,0,0,282,3588, - 1,0,0,0,284,3590,1,0,0,0,286,3592,1,0,0,0,288,3594,1,0,0,0,290,3602, - 1,0,0,0,292,3608,1,0,0,0,294,3613,1,0,0,0,296,3620,1,0,0,0,298,3622, - 1,0,0,0,300,3637,1,0,0,0,302,3644,1,0,0,0,304,3658,1,0,0,0,306,3662, - 1,0,0,0,308,3664,1,0,0,0,310,312,3,2,1,0,311,310,1,0,0,0,312,315, - 1,0,0,0,313,311,1,0,0,0,313,314,1,0,0,0,314,316,1,0,0,0,315,313, - 1,0,0,0,316,317,5,0,0,1,317,1,1,0,0,0,318,319,3,4,2,0,319,3,1,0, - 0,0,320,322,3,16,8,0,321,323,5,325,0,0,322,321,1,0,0,0,322,323,1, - 0,0,0,323,5,1,0,0,0,324,326,3,142,71,0,325,327,5,325,0,0,326,325, - 1,0,0,0,326,327,1,0,0,0,327,7,1,0,0,0,328,330,3,228,114,0,329,331, - 5,325,0,0,330,329,1,0,0,0,330,331,1,0,0,0,331,9,1,0,0,0,332,334, - 3,190,95,0,333,335,5,325,0,0,334,333,1,0,0,0,334,335,1,0,0,0,335, - 11,1,0,0,0,336,338,3,210,105,0,337,339,5,325,0,0,338,337,1,0,0,0, - 338,339,1,0,0,0,339,13,1,0,0,0,340,341,3,230,115,0,341,342,5,0,0, - 1,342,15,1,0,0,0,343,1239,3,18,9,0,344,345,5,288,0,0,345,1239,3, - 270,135,0,346,347,5,53,0,0,347,351,5,42,0,0,348,349,5,119,0,0,349, - 350,5,182,0,0,350,352,5,94,0,0,351,348,1,0,0,0,351,352,1,0,0,0,352, - 353,1,0,0,0,353,354,3,276,138,0,354,355,5,290,0,0,355,358,3,302, - 151,0,356,357,5,46,0,0,357,359,3,174,87,0,358,356,1,0,0,0,358,359, - 1,0,0,0,359,362,1,0,0,0,360,361,5,31,0,0,361,363,3,296,148,0,362, - 360,1,0,0,0,362,363,1,0,0,0,363,366,1,0,0,0,364,365,5,304,0,0,365, - 367,3,32,16,0,366,364,1,0,0,0,366,367,1,0,0,0,367,1239,1,0,0,0,368, - 369,5,83,0,0,369,372,5,42,0,0,370,371,5,119,0,0,371,373,5,94,0,0, - 372,370,1,0,0,0,372,373,1,0,0,0,373,374,1,0,0,0,374,376,3,274,137, - 0,375,377,7,0,0,0,376,375,1,0,0,0,376,377,1,0,0,0,377,1239,1,0,0, - 0,378,379,5,53,0,0,379,383,5,243,0,0,380,381,5,119,0,0,381,382,5, - 182,0,0,382,384,5,94,0,0,383,380,1,0,0,0,383,384,1,0,0,0,384,385, - 1,0,0,0,385,388,3,272,136,0,386,387,5,31,0,0,387,389,3,296,148,0, - 388,386,1,0,0,0,388,389,1,0,0,0,389,392,1,0,0,0,390,391,5,304,0, - 0,391,393,3,32,16,0,392,390,1,0,0,0,392,393,1,0,0,0,393,1239,1,0, - 0,0,394,395,5,83,0,0,395,398,5,243,0,0,396,397,5,119,0,0,397,399, - 5,94,0,0,398,396,1,0,0,0,398,399,1,0,0,0,399,400,1,0,0,0,400,402, - 3,270,135,0,401,403,7,0,0,0,402,401,1,0,0,0,402,403,1,0,0,0,403, - 1239,1,0,0,0,404,405,5,23,0,0,405,406,5,243,0,0,406,407,3,270,135, - 0,407,408,5,223,0,0,408,409,5,269,0,0,409,410,3,272,136,0,410,1239, - 1,0,0,0,411,412,5,23,0,0,412,413,5,243,0,0,413,414,3,270,135,0,414, - 415,5,251,0,0,415,416,5,31,0,0,416,417,3,296,148,0,417,1239,1,0, - 0,0,418,421,5,53,0,0,419,420,5,194,0,0,420,422,5,226,0,0,421,419, - 1,0,0,0,421,422,1,0,0,0,422,423,1,0,0,0,423,427,5,260,0,0,424,425, - 5,119,0,0,425,426,5,182,0,0,426,428,5,94,0,0,427,424,1,0,0,0,427, - 428,1,0,0,0,428,429,1,0,0,0,429,431,3,264,132,0,430,432,3,110,55, - 0,431,430,1,0,0,0,431,432,1,0,0,0,432,435,1,0,0,0,433,434,5,46,0, - 0,434,436,3,174,87,0,435,433,1,0,0,0,435,436,1,0,0,0,436,439,1,0, - 0,0,437,438,5,304,0,0,438,440,3,32,16,0,439,437,1,0,0,0,439,440, - 1,0,0,0,440,441,1,0,0,0,441,447,5,28,0,0,442,448,3,18,9,0,443,444, - 5,1,0,0,444,445,3,18,9,0,445,446,5,2,0,0,446,448,1,0,0,0,447,442, - 1,0,0,0,447,443,1,0,0,0,448,454,1,0,0,0,449,451,5,304,0,0,450,452, - 5,179,0,0,451,450,1,0,0,0,451,452,1,0,0,0,452,453,1,0,0,0,453,455, - 5,65,0,0,454,449,1,0,0,0,454,455,1,0,0,0,455,1239,1,0,0,0,456,459, - 5,53,0,0,457,458,5,194,0,0,458,460,5,226,0,0,459,457,1,0,0,0,459, - 460,1,0,0,0,460,461,1,0,0,0,461,465,5,260,0,0,462,463,5,119,0,0, - 463,464,5,182,0,0,464,466,5,94,0,0,465,462,1,0,0,0,465,466,1,0,0, - 0,466,467,1,0,0,0,467,468,3,264,132,0,468,469,5,1,0,0,469,474,3, - 26,13,0,470,471,5,3,0,0,471,473,3,26,13,0,472,470,1,0,0,0,473,476, - 1,0,0,0,474,472,1,0,0,0,474,475,1,0,0,0,475,477,1,0,0,0,476,474, - 1,0,0,0,477,480,5,2,0,0,478,479,5,46,0,0,479,481,3,174,87,0,480, - 478,1,0,0,0,480,481,1,0,0,0,481,484,1,0,0,0,482,483,5,304,0,0,483, - 485,3,32,16,0,484,482,1,0,0,0,484,485,1,0,0,0,485,1239,1,0,0,0,486, - 487,5,83,0,0,487,490,5,260,0,0,488,489,5,119,0,0,489,491,5,94,0, - 0,490,488,1,0,0,0,490,491,1,0,0,0,491,492,1,0,0,0,492,1239,3,262, - 131,0,493,494,5,127,0,0,494,495,5,130,0,0,495,497,3,262,131,0,496, - 498,3,112,56,0,497,496,1,0,0,0,497,498,1,0,0,0,498,499,1,0,0,0,499, - 500,3,18,9,0,500,1239,1,0,0,0,501,502,5,73,0,0,502,503,5,105,0,0, - 503,505,3,262,131,0,504,506,3,54,27,0,505,504,1,0,0,0,505,506,1, - 0,0,0,506,1239,1,0,0,0,507,508,5,274,0,0,508,509,5,260,0,0,509,1239, - 3,262,131,0,510,511,5,46,0,0,511,512,5,190,0,0,512,513,5,260,0,0, - 513,514,3,262,131,0,514,517,5,133,0,0,515,518,3,174,87,0,516,518, - 5,183,0,0,517,515,1,0,0,0,517,516,1,0,0,0,518,1239,1,0,0,0,519,520, - 5,46,0,0,520,521,5,190,0,0,521,522,5,299,0,0,522,523,3,266,133,0, - 523,526,5,133,0,0,524,527,3,174,87,0,525,527,5,183,0,0,526,524,1, - 0,0,0,526,525,1,0,0,0,527,1239,1,0,0,0,528,529,5,46,0,0,529,530, - 5,190,0,0,530,531,5,44,0,0,531,532,3,282,141,0,532,535,5,133,0,0, - 533,536,3,174,87,0,534,536,5,183,0,0,535,533,1,0,0,0,535,534,1,0, - 0,0,536,1239,1,0,0,0,537,538,5,23,0,0,538,541,5,260,0,0,539,540, - 5,119,0,0,540,542,5,94,0,0,541,539,1,0,0,0,541,542,1,0,0,0,542,543, - 1,0,0,0,543,544,3,262,131,0,544,545,5,223,0,0,545,546,5,269,0,0, - 546,547,3,264,132,0,547,1239,1,0,0,0,548,549,5,23,0,0,549,552,5, - 260,0,0,550,551,5,119,0,0,551,553,5,94,0,0,552,550,1,0,0,0,552,553, - 1,0,0,0,553,554,1,0,0,0,554,555,3,262,131,0,555,556,5,19,0,0,556, - 560,5,44,0,0,557,558,5,119,0,0,558,559,5,182,0,0,559,561,5,94,0, - 0,560,557,1,0,0,0,560,561,1,0,0,0,561,562,1,0,0,0,562,563,3,28,14, - 0,563,1239,1,0,0,0,564,565,5,23,0,0,565,568,5,260,0,0,566,567,5, - 119,0,0,567,569,5,94,0,0,568,566,1,0,0,0,568,569,1,0,0,0,569,570, - 1,0,0,0,570,571,3,262,131,0,571,572,5,223,0,0,572,575,5,44,0,0,573, - 574,5,119,0,0,574,576,5,94,0,0,575,573,1,0,0,0,575,576,1,0,0,0,576, - 577,1,0,0,0,577,578,3,282,141,0,578,579,5,269,0,0,579,580,3,286, - 143,0,580,1239,1,0,0,0,581,582,5,23,0,0,582,585,5,260,0,0,583,584, - 5,119,0,0,584,586,5,94,0,0,585,583,1,0,0,0,585,586,1,0,0,0,586,587, - 1,0,0,0,587,588,3,262,131,0,588,589,5,83,0,0,589,592,5,44,0,0,590, - 591,5,119,0,0,591,593,5,94,0,0,592,590,1,0,0,0,592,593,1,0,0,0,593, - 594,1,0,0,0,594,595,3,282,141,0,595,1239,1,0,0,0,596,597,5,23,0, - 0,597,600,5,260,0,0,598,599,5,119,0,0,599,601,5,94,0,0,600,598,1, - 0,0,0,600,601,1,0,0,0,601,602,1,0,0,0,602,603,3,262,131,0,603,604, - 5,23,0,0,604,605,5,44,0,0,605,606,3,282,141,0,606,607,5,251,0,0, - 607,608,5,65,0,0,608,609,5,276,0,0,609,610,3,190,95,0,610,1239,1, - 0,0,0,611,612,5,23,0,0,612,615,5,260,0,0,613,614,5,119,0,0,614,616, - 5,94,0,0,615,613,1,0,0,0,615,616,1,0,0,0,616,617,1,0,0,0,617,618, - 3,262,131,0,618,619,5,23,0,0,619,620,5,44,0,0,620,621,3,282,141, - 0,621,622,5,83,0,0,622,623,5,182,0,0,623,624,5,183,0,0,624,1239, - 1,0,0,0,625,626,5,23,0,0,626,627,5,260,0,0,627,628,3,262,131,0,628, - 629,5,251,0,0,629,630,5,31,0,0,630,631,3,296,148,0,631,1239,1,0, - 0,0,632,633,5,23,0,0,633,634,5,260,0,0,634,635,3,262,131,0,635,636, - 5,251,0,0,636,637,5,216,0,0,637,638,3,34,17,0,638,1239,1,0,0,0,639, - 640,5,23,0,0,640,641,5,260,0,0,641,642,3,262,131,0,642,643,5,93, - 0,0,643,656,3,278,139,0,644,653,5,1,0,0,645,650,3,224,112,0,646, - 647,5,3,0,0,647,649,3,224,112,0,648,646,1,0,0,0,649,652,1,0,0,0, - 650,648,1,0,0,0,650,651,1,0,0,0,651,654,1,0,0,0,652,650,1,0,0,0, - 653,645,1,0,0,0,653,654,1,0,0,0,654,655,1,0,0,0,655,657,5,2,0,0, - 656,644,1,0,0,0,656,657,1,0,0,0,657,659,1,0,0,0,658,660,3,54,27, - 0,659,658,1,0,0,0,659,660,1,0,0,0,660,1239,1,0,0,0,661,662,5,24, - 0,0,662,665,3,262,131,0,663,664,5,304,0,0,664,666,3,32,16,0,665, - 663,1,0,0,0,665,666,1,0,0,0,666,1239,1,0,0,0,667,670,5,53,0,0,668, - 669,5,194,0,0,669,671,5,226,0,0,670,668,1,0,0,0,670,671,1,0,0,0, - 671,672,1,0,0,0,672,673,5,167,0,0,673,677,5,299,0,0,674,675,5,119, - 0,0,675,676,5,182,0,0,676,678,5,94,0,0,677,674,1,0,0,0,677,678,1, - 0,0,0,678,679,1,0,0,0,679,683,3,268,134,0,680,681,5,109,0,0,681, - 682,5,208,0,0,682,684,3,184,92,0,683,680,1,0,0,0,683,684,1,0,0,0, - 684,687,1,0,0,0,685,686,5,46,0,0,686,688,3,174,87,0,687,685,1,0, - 0,0,687,688,1,0,0,0,688,691,1,0,0,0,689,690,5,304,0,0,690,692,3, - 32,16,0,691,689,1,0,0,0,691,692,1,0,0,0,692,693,1,0,0,0,693,694, - 5,28,0,0,694,695,3,18,9,0,695,1239,1,0,0,0,696,699,5,53,0,0,697, - 698,5,194,0,0,698,700,5,226,0,0,699,697,1,0,0,0,699,700,1,0,0,0, - 700,701,1,0,0,0,701,702,5,299,0,0,702,705,3,268,134,0,703,704,5, - 46,0,0,704,706,3,174,87,0,705,703,1,0,0,0,705,706,1,0,0,0,706,709, - 1,0,0,0,707,708,5,246,0,0,708,710,7,1,0,0,709,707,1,0,0,0,709,710, - 1,0,0,0,710,713,1,0,0,0,711,712,5,304,0,0,712,714,3,32,16,0,713, - 711,1,0,0,0,713,714,1,0,0,0,714,715,1,0,0,0,715,716,5,28,0,0,716, - 717,3,18,9,0,717,1239,1,0,0,0,718,719,5,222,0,0,719,720,5,167,0, - 0,720,721,5,299,0,0,721,1239,3,266,133,0,722,723,5,83,0,0,723,724, - 5,167,0,0,724,727,5,299,0,0,725,726,5,119,0,0,726,728,5,94,0,0,727, - 725,1,0,0,0,727,728,1,0,0,0,728,729,1,0,0,0,729,1239,3,266,133,0, - 730,731,5,23,0,0,731,732,5,167,0,0,732,735,5,299,0,0,733,734,5,119, - 0,0,734,736,5,94,0,0,735,733,1,0,0,0,735,736,1,0,0,0,736,737,1,0, - 0,0,737,738,3,266,133,0,738,739,5,223,0,0,739,740,5,269,0,0,740, - 741,3,268,134,0,741,1239,1,0,0,0,742,743,5,23,0,0,743,744,5,167, - 0,0,744,745,5,299,0,0,745,746,3,266,133,0,746,747,5,251,0,0,747, - 748,5,216,0,0,748,749,3,34,17,0,749,1239,1,0,0,0,750,751,5,83,0, - 0,751,754,5,299,0,0,752,753,5,119,0,0,753,755,5,94,0,0,754,752,1, - 0,0,0,754,755,1,0,0,0,755,756,1,0,0,0,756,1239,3,266,133,0,757,758, - 5,23,0,0,758,759,5,299,0,0,759,760,3,266,133,0,760,761,5,223,0,0, - 761,762,5,269,0,0,762,763,3,268,134,0,763,1239,1,0,0,0,764,765,5, - 23,0,0,765,766,5,299,0,0,766,767,3,266,133,0,767,768,5,251,0,0,768, - 769,5,31,0,0,769,770,3,296,148,0,770,1239,1,0,0,0,771,772,5,37,0, - 0,772,773,3,278,139,0,773,782,5,1,0,0,774,779,3,224,112,0,775,776, - 5,3,0,0,776,778,3,224,112,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, - 774,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0,784,785,5,2,0,0,785, - 1239,1,0,0,0,786,789,5,53,0,0,787,788,5,194,0,0,788,790,5,226,0, - 0,789,787,1,0,0,0,789,790,1,0,0,0,790,791,1,0,0,0,791,1239,3,230, - 115,0,792,793,5,83,0,0,793,796,5,107,0,0,794,795,5,119,0,0,795,797, - 5,94,0,0,796,794,1,0,0,0,796,797,1,0,0,0,797,798,1,0,0,0,798,1239, - 3,234,117,0,799,800,5,53,0,0,800,801,5,235,0,0,801,805,3,302,151, - 0,802,803,5,304,0,0,803,804,5,20,0,0,804,806,3,294,147,0,805,802, - 1,0,0,0,805,806,1,0,0,0,806,809,1,0,0,0,807,808,5,122,0,0,808,810, - 3,274,137,0,809,807,1,0,0,0,809,810,1,0,0,0,810,1239,1,0,0,0,811, - 812,5,83,0,0,812,813,5,235,0,0,813,816,3,302,151,0,814,815,5,122, - 0,0,815,817,3,274,137,0,816,814,1,0,0,0,816,817,1,0,0,0,817,1239, - 1,0,0,0,818,819,5,110,0,0,819,824,3,300,150,0,820,821,5,3,0,0,821, - 823,3,300,150,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,827,1,0,0,0,826,824,1,0,0,0,827,828,5,269,0, - 0,828,833,3,296,148,0,829,830,5,3,0,0,830,832,3,296,148,0,831,829, - 1,0,0,0,832,835,1,0,0,0,833,831,1,0,0,0,833,834,1,0,0,0,834,839, - 1,0,0,0,835,833,1,0,0,0,836,837,5,304,0,0,837,838,5,20,0,0,838,840, - 5,193,0,0,839,836,1,0,0,0,839,840,1,0,0,0,840,844,1,0,0,0,841,842, - 5,111,0,0,842,843,5,36,0,0,843,845,3,294,147,0,844,841,1,0,0,0,844, - 845,1,0,0,0,845,848,1,0,0,0,846,847,5,122,0,0,847,849,3,274,137, - 0,848,846,1,0,0,0,848,849,1,0,0,0,849,1239,1,0,0,0,850,861,5,110, - 0,0,851,856,3,300,150,0,852,853,5,3,0,0,853,855,3,300,150,0,854, - 852,1,0,0,0,855,858,1,0,0,0,856,854,1,0,0,0,856,857,1,0,0,0,857, - 862,1,0,0,0,858,856,1,0,0,0,859,860,5,22,0,0,860,862,5,215,0,0,861, - 851,1,0,0,0,861,859,1,0,0,0,862,863,1,0,0,0,863,864,5,190,0,0,864, - 865,3,258,129,0,865,866,5,269,0,0,866,870,3,296,148,0,867,868,5, - 304,0,0,868,869,5,110,0,0,869,871,5,193,0,0,870,867,1,0,0,0,870, - 871,1,0,0,0,871,1239,1,0,0,0,872,876,5,233,0,0,873,874,5,20,0,0, - 874,875,5,193,0,0,875,877,5,103,0,0,876,873,1,0,0,0,876,877,1,0, - 0,0,877,878,1,0,0,0,878,883,3,300,150,0,879,880,5,3,0,0,880,882, - 3,300,150,0,881,879,1,0,0,0,882,885,1,0,0,0,883,881,1,0,0,0,883, - 884,1,0,0,0,884,886,1,0,0,0,885,883,1,0,0,0,886,887,5,105,0,0,887, - 892,3,296,148,0,888,889,5,3,0,0,889,891,3,296,148,0,890,888,1,0, - 0,0,891,894,1,0,0,0,892,890,1,0,0,0,892,893,1,0,0,0,893,898,1,0, - 0,0,894,892,1,0,0,0,895,896,5,111,0,0,896,897,5,36,0,0,897,899,3, - 294,147,0,898,895,1,0,0,0,898,899,1,0,0,0,899,902,1,0,0,0,900,901, - 5,122,0,0,901,903,3,274,137,0,902,900,1,0,0,0,902,903,1,0,0,0,903, - 1239,1,0,0,0,904,908,5,233,0,0,905,906,5,110,0,0,906,907,5,193,0, - 0,907,909,5,103,0,0,908,905,1,0,0,0,908,909,1,0,0,0,909,920,1,0, - 0,0,910,915,3,300,150,0,911,912,5,3,0,0,912,914,3,300,150,0,913, - 911,1,0,0,0,914,917,1,0,0,0,915,913,1,0,0,0,915,916,1,0,0,0,916, - 921,1,0,0,0,917,915,1,0,0,0,918,919,5,22,0,0,919,921,5,215,0,0,920, - 910,1,0,0,0,920,918,1,0,0,0,921,922,1,0,0,0,922,923,5,190,0,0,923, - 924,3,258,129,0,924,925,5,105,0,0,925,926,3,296,148,0,926,1239,1, - 0,0,0,927,938,5,74,0,0,928,933,3,254,127,0,929,930,5,3,0,0,930,932, - 3,254,127,0,931,929,1,0,0,0,932,935,1,0,0,0,933,931,1,0,0,0,933, - 934,1,0,0,0,934,939,1,0,0,0,935,933,1,0,0,0,936,937,5,22,0,0,937, - 939,5,215,0,0,938,928,1,0,0,0,938,936,1,0,0,0,939,940,1,0,0,0,940, - 941,5,190,0,0,941,942,3,258,129,0,942,943,5,269,0,0,943,944,3,296, - 148,0,944,1239,1,0,0,0,945,946,5,251,0,0,946,950,5,235,0,0,947,951, - 5,22,0,0,948,951,5,180,0,0,949,951,3,302,151,0,950,947,1,0,0,0,950, - 948,1,0,0,0,950,949,1,0,0,0,951,954,1,0,0,0,952,953,5,122,0,0,953, - 955,3,274,137,0,954,952,1,0,0,0,954,955,1,0,0,0,955,1239,1,0,0,0, - 956,957,5,253,0,0,957,960,5,112,0,0,958,959,5,190,0,0,959,961,3, - 258,129,0,960,958,1,0,0,0,960,961,1,0,0,0,961,1239,1,0,0,0,962,974, - 5,95,0,0,963,964,5,1,0,0,964,969,3,218,109,0,965,966,5,3,0,0,966, - 968,3,218,109,0,967,965,1,0,0,0,968,971,1,0,0,0,969,967,1,0,0,0, - 969,970,1,0,0,0,970,972,1,0,0,0,971,969,1,0,0,0,972,973,5,2,0,0, - 973,975,1,0,0,0,974,963,1,0,0,0,974,975,1,0,0,0,975,976,1,0,0,0, - 976,1239,3,16,8,0,977,978,5,95,0,0,978,980,5,24,0,0,979,981,5,297, - 0,0,980,979,1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,1239,3,16, - 8,0,983,984,5,253,0,0,984,985,5,53,0,0,985,986,5,260,0,0,986,1239, - 3,262,131,0,987,988,5,253,0,0,988,989,5,53,0,0,989,990,5,243,0,0, - 990,1239,3,270,135,0,991,992,5,253,0,0,992,993,5,53,0,0,993,994, - 5,299,0,0,994,1239,3,266,133,0,995,996,5,253,0,0,996,997,5,53,0, - 0,997,998,5,167,0,0,998,999,5,299,0,0,999,1239,3,266,133,0,1000, - 1001,5,253,0,0,1001,1002,5,53,0,0,1002,1003,5,107,0,0,1003,1239, - 3,278,139,0,1004,1005,5,253,0,0,1005,1008,5,261,0,0,1006,1007,7, - 2,0,0,1007,1009,3,270,135,0,1008,1006,1,0,0,0,1008,1009,1,0,0,0, - 1009,1016,1,0,0,0,1010,1011,5,154,0,0,1011,1014,3,174,87,0,1012, - 1013,5,90,0,0,1013,1015,3,174,87,0,1014,1012,1,0,0,0,1014,1015,1, - 0,0,0,1015,1017,1,0,0,0,1016,1010,1,0,0,0,1016,1017,1,0,0,0,1017, - 1239,1,0,0,0,1018,1019,5,253,0,0,1019,1022,5,244,0,0,1020,1021,7, - 2,0,0,1021,1023,3,274,137,0,1022,1020,1,0,0,0,1022,1023,1,0,0,0, - 1023,1030,1,0,0,0,1024,1025,5,154,0,0,1025,1028,3,174,87,0,1026, - 1027,5,90,0,0,1027,1029,3,174,87,0,1028,1026,1,0,0,0,1028,1029,1, - 0,0,0,1029,1031,1,0,0,0,1030,1024,1,0,0,0,1030,1031,1,0,0,0,1031, - 1239,1,0,0,0,1032,1033,5,253,0,0,1033,1040,5,43,0,0,1034,1035,5, - 154,0,0,1035,1038,3,174,87,0,1036,1037,5,90,0,0,1037,1039,3,174, - 87,0,1038,1036,1,0,0,0,1038,1039,1,0,0,0,1039,1041,1,0,0,0,1040, - 1034,1,0,0,0,1040,1041,1,0,0,0,1041,1239,1,0,0,0,1042,1043,5,253, - 0,0,1043,1044,5,45,0,0,1044,1045,7,2,0,0,1045,1052,3,260,130,0,1046, - 1047,5,154,0,0,1047,1050,3,174,87,0,1048,1049,5,90,0,0,1049,1051, - 3,174,87,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,1053,1,0,0,0, - 1052,1046,1,0,0,0,1052,1053,1,0,0,0,1053,1239,1,0,0,0,1054,1055, - 5,253,0,0,1055,1056,5,256,0,0,1056,1057,5,103,0,0,1057,1239,3,260, - 130,0,1058,1059,5,253,0,0,1059,1060,5,256,0,0,1060,1061,5,103,0, - 0,1061,1062,5,1,0,0,1062,1063,3,18,9,0,1063,1064,5,2,0,0,1064,1239, - 1,0,0,0,1065,1067,5,253,0,0,1066,1068,5,56,0,0,1067,1066,1,0,0,0, - 1067,1068,1,0,0,0,1068,1069,1,0,0,0,1069,1072,5,236,0,0,1070,1071, - 7,2,0,0,1071,1073,3,274,137,0,1072,1070,1,0,0,0,1072,1073,1,0,0, - 0,1073,1239,1,0,0,0,1074,1075,5,253,0,0,1075,1076,5,235,0,0,1076, - 1079,5,112,0,0,1077,1078,7,2,0,0,1078,1080,3,274,137,0,1079,1077, - 1,0,0,0,1079,1080,1,0,0,0,1080,1239,1,0,0,0,1081,1082,5,76,0,0,1082, - 1239,3,260,130,0,1083,1084,5,75,0,0,1084,1239,3,260,130,0,1085,1086, - 5,253,0,0,1086,1089,5,108,0,0,1087,1088,7,2,0,0,1088,1090,3,270, - 135,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,1097,1,0,0,0,1091, - 1092,5,154,0,0,1092,1095,3,174,87,0,1093,1094,5,90,0,0,1094,1096, - 3,174,87,0,1095,1093,1,0,0,0,1095,1096,1,0,0,0,1096,1098,1,0,0,0, - 1097,1091,1,0,0,0,1097,1098,1,0,0,0,1098,1239,1,0,0,0,1099,1100, - 5,253,0,0,1100,1107,5,250,0,0,1101,1102,5,154,0,0,1102,1105,3,174, - 87,0,1103,1104,5,90,0,0,1104,1106,3,174,87,0,1105,1103,1,0,0,0,1105, - 1106,1,0,0,0,1106,1108,1,0,0,0,1107,1101,1,0,0,0,1107,1108,1,0,0, - 0,1108,1239,1,0,0,0,1109,1110,5,251,0,0,1110,1111,5,250,0,0,1111, - 1112,5,31,0,0,1112,1239,3,306,153,0,1113,1114,5,227,0,0,1114,1115, - 5,250,0,0,1115,1239,5,31,0,0,1116,1117,5,251,0,0,1117,1118,5,250, - 0,0,1118,1119,3,288,144,0,1119,1120,5,312,0,0,1120,1121,3,142,71, - 0,1121,1239,1,0,0,0,1122,1123,5,227,0,0,1123,1124,5,250,0,0,1124, - 1239,3,288,144,0,1125,1126,5,255,0,0,1126,1135,5,271,0,0,1127,1132, - 3,220,110,0,1128,1129,5,3,0,0,1129,1131,3,220,110,0,1130,1128,1, - 0,0,0,1131,1134,1,0,0,0,1132,1130,1,0,0,0,1132,1133,1,0,0,0,1133, - 1136,1,0,0,0,1134,1132,1,0,0,0,1135,1127,1,0,0,0,1135,1136,1,0,0, - 0,1136,1239,1,0,0,0,1137,1139,5,47,0,0,1138,1140,5,307,0,0,1139, - 1138,1,0,0,0,1139,1140,1,0,0,0,1140,1239,1,0,0,0,1141,1143,5,237, - 0,0,1142,1144,5,307,0,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144, - 1239,1,0,0,0,1145,1146,5,214,0,0,1146,1147,3,302,151,0,1147,1148, - 5,105,0,0,1148,1149,3,16,8,0,1149,1239,1,0,0,0,1150,1151,5,68,0, - 0,1151,1152,5,214,0,0,1152,1239,3,302,151,0,1153,1154,5,93,0,0,1154, - 1164,3,302,151,0,1155,1156,5,290,0,0,1156,1161,3,142,71,0,1157,1158, - 5,3,0,0,1158,1160,3,142,71,0,1159,1157,1,0,0,0,1160,1163,1,0,0,0, - 1161,1159,1,0,0,0,1161,1162,1,0,0,0,1162,1165,1,0,0,0,1163,1161, - 1,0,0,0,1164,1155,1,0,0,0,1164,1165,1,0,0,0,1165,1239,1,0,0,0,1166, - 1167,5,93,0,0,1167,1168,5,121,0,0,1168,1178,3,174,87,0,1169,1170, - 5,290,0,0,1170,1175,3,142,71,0,1171,1172,5,3,0,0,1172,1174,3,142, - 71,0,1173,1171,1,0,0,0,1174,1177,1,0,0,0,1175,1173,1,0,0,0,1175, - 1176,1,0,0,0,1176,1179,1,0,0,0,1177,1175,1,0,0,0,1178,1169,1,0,0, - 0,1178,1179,1,0,0,0,1179,1239,1,0,0,0,1180,1181,5,76,0,0,1181,1182, - 5,126,0,0,1182,1239,3,302,151,0,1183,1184,5,76,0,0,1184,1185,5,198, - 0,0,1185,1239,3,302,151,0,1186,1187,5,251,0,0,1187,1188,5,205,0, - 0,1188,1239,3,228,114,0,1189,1190,5,251,0,0,1190,1191,5,267,0,0, - 1191,1194,5,311,0,0,1192,1195,5,157,0,0,1193,1195,3,142,71,0,1194, - 1192,1,0,0,0,1194,1193,1,0,0,0,1195,1239,1,0,0,0,1196,1197,5,287, - 0,0,1197,1198,3,262,131,0,1198,1199,5,251,0,0,1199,1204,3,216,108, - 0,1200,1201,5,3,0,0,1201,1203,3,216,108,0,1202,1200,1,0,0,0,1203, - 1206,1,0,0,0,1204,1202,1,0,0,0,1204,1205,1,0,0,0,1205,1208,1,0,0, - 0,1206,1204,1,0,0,0,1207,1209,3,54,27,0,1208,1207,1,0,0,0,1208,1209, - 1,0,0,0,1209,1239,1,0,0,0,1210,1211,5,169,0,0,1211,1212,5,130,0, - 0,1212,1217,3,262,131,0,1213,1215,5,28,0,0,1214,1213,1,0,0,0,1214, - 1215,1,0,0,0,1215,1216,1,0,0,0,1216,1218,3,302,151,0,1217,1214,1, - 0,0,0,1217,1218,1,0,0,0,1218,1219,1,0,0,0,1219,1220,5,290,0,0,1220, - 1221,3,78,39,0,1221,1222,5,190,0,0,1222,1224,3,142,71,0,1223,1225, - 3,200,100,0,1224,1223,1,0,0,0,1225,1226,1,0,0,0,1226,1224,1,0,0, - 0,1226,1227,1,0,0,0,1227,1239,1,0,0,0,1228,1229,5,253,0,0,1229,1230, - 5,46,0,0,1230,1231,5,190,0,0,1231,1232,5,260,0,0,1232,1239,3,262, - 131,0,1233,1234,5,253,0,0,1234,1235,5,46,0,0,1235,1236,5,190,0,0, - 1236,1237,5,44,0,0,1237,1239,3,282,141,0,1238,343,1,0,0,0,1238,344, - 1,0,0,0,1238,346,1,0,0,0,1238,368,1,0,0,0,1238,378,1,0,0,0,1238, - 394,1,0,0,0,1238,404,1,0,0,0,1238,411,1,0,0,0,1238,418,1,0,0,0,1238, - 456,1,0,0,0,1238,486,1,0,0,0,1238,493,1,0,0,0,1238,501,1,0,0,0,1238, - 507,1,0,0,0,1238,510,1,0,0,0,1238,519,1,0,0,0,1238,528,1,0,0,0,1238, - 537,1,0,0,0,1238,548,1,0,0,0,1238,564,1,0,0,0,1238,581,1,0,0,0,1238, - 596,1,0,0,0,1238,611,1,0,0,0,1238,625,1,0,0,0,1238,632,1,0,0,0,1238, - 639,1,0,0,0,1238,661,1,0,0,0,1238,667,1,0,0,0,1238,696,1,0,0,0,1238, - 718,1,0,0,0,1238,722,1,0,0,0,1238,730,1,0,0,0,1238,742,1,0,0,0,1238, - 750,1,0,0,0,1238,757,1,0,0,0,1238,764,1,0,0,0,1238,771,1,0,0,0,1238, - 786,1,0,0,0,1238,792,1,0,0,0,1238,799,1,0,0,0,1238,811,1,0,0,0,1238, - 818,1,0,0,0,1238,850,1,0,0,0,1238,872,1,0,0,0,1238,904,1,0,0,0,1238, - 927,1,0,0,0,1238,945,1,0,0,0,1238,956,1,0,0,0,1238,962,1,0,0,0,1238, - 977,1,0,0,0,1238,983,1,0,0,0,1238,987,1,0,0,0,1238,991,1,0,0,0,1238, - 995,1,0,0,0,1238,1000,1,0,0,0,1238,1004,1,0,0,0,1238,1018,1,0,0, - 0,1238,1032,1,0,0,0,1238,1042,1,0,0,0,1238,1054,1,0,0,0,1238,1058, - 1,0,0,0,1238,1065,1,0,0,0,1238,1074,1,0,0,0,1238,1081,1,0,0,0,1238, - 1083,1,0,0,0,1238,1085,1,0,0,0,1238,1099,1,0,0,0,1238,1109,1,0,0, - 0,1238,1113,1,0,0,0,1238,1116,1,0,0,0,1238,1122,1,0,0,0,1238,1125, - 1,0,0,0,1238,1137,1,0,0,0,1238,1141,1,0,0,0,1238,1145,1,0,0,0,1238, - 1150,1,0,0,0,1238,1153,1,0,0,0,1238,1166,1,0,0,0,1238,1180,1,0,0, - 0,1238,1183,1,0,0,0,1238,1186,1,0,0,0,1238,1189,1,0,0,0,1238,1196, - 1,0,0,0,1238,1210,1,0,0,0,1238,1228,1,0,0,0,1238,1233,1,0,0,0,1239, - 17,1,0,0,0,1240,1242,3,20,10,0,1241,1240,1,0,0,0,1241,1242,1,0,0, - 0,1242,1243,1,0,0,0,1243,1244,3,22,11,0,1244,19,1,0,0,0,1245,1246, - 5,304,0,0,1246,1251,3,230,115,0,1247,1248,5,3,0,0,1248,1250,3,230, - 115,0,1249,1247,1,0,0,0,1250,1253,1,0,0,0,1251,1249,1,0,0,0,1251, - 1252,1,0,0,0,1252,21,1,0,0,0,1253,1251,1,0,0,0,1254,1256,3,24,12, - 0,1255,1254,1,0,0,0,1255,1256,1,0,0,0,1256,1257,1,0,0,0,1257,1258, - 3,40,20,0,1258,23,1,0,0,0,1259,1261,5,304,0,0,1260,1262,5,221,0, - 0,1261,1260,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1268, - 3,72,36,0,1264,1265,5,3,0,0,1265,1267,3,72,36,0,1266,1264,1,0,0, - 0,1267,1270,1,0,0,0,1268,1266,1,0,0,0,1268,1269,1,0,0,0,1269,25, - 1,0,0,0,1270,1268,1,0,0,0,1271,1274,3,28,14,0,1272,1274,3,30,15, - 0,1273,1271,1,0,0,0,1273,1272,1,0,0,0,1274,27,1,0,0,0,1275,1276, - 3,286,143,0,1276,1279,3,190,95,0,1277,1278,5,182,0,0,1278,1280,5, - 183,0,0,1279,1277,1,0,0,0,1279,1280,1,0,0,0,1280,1283,1,0,0,0,1281, - 1282,5,46,0,0,1282,1284,3,174,87,0,1283,1281,1,0,0,0,1283,1284,1, - 0,0,0,1284,1287,1,0,0,0,1285,1286,5,304,0,0,1286,1288,3,32,16,0, - 1287,1285,1,0,0,0,1287,1288,1,0,0,0,1288,29,1,0,0,0,1289,1290,5, - 154,0,0,1290,1293,3,262,131,0,1291,1292,7,3,0,0,1292,1294,5,216, - 0,0,1293,1291,1,0,0,0,1293,1294,1,0,0,0,1294,31,1,0,0,0,1295,1296, - 5,1,0,0,1296,1297,3,34,17,0,1297,1298,5,2,0,0,1298,33,1,0,0,0,1299, - 1304,3,36,18,0,1300,1301,5,3,0,0,1301,1303,3,36,18,0,1302,1300,1, - 0,0,0,1303,1306,1,0,0,0,1304,1302,1,0,0,0,1304,1305,1,0,0,0,1305, - 35,1,0,0,0,1306,1304,1,0,0,0,1307,1308,3,302,151,0,1308,1309,5,312, - 0,0,1309,1310,3,38,19,0,1310,37,1,0,0,0,1311,1314,5,70,0,0,1312, - 1314,3,142,71,0,1313,1311,1,0,0,0,1313,1312,1,0,0,0,1314,39,1,0, - 0,0,1315,1326,3,46,23,0,1316,1317,5,195,0,0,1317,1318,5,36,0,0,1318, - 1323,3,50,25,0,1319,1320,5,3,0,0,1320,1322,3,50,25,0,1321,1319,1, - 0,0,0,1322,1325,1,0,0,0,1323,1321,1,0,0,0,1323,1324,1,0,0,0,1324, - 1327,1,0,0,0,1325,1323,1,0,0,0,1326,1316,1,0,0,0,1326,1327,1,0,0, - 0,1327,1333,1,0,0,0,1328,1329,5,188,0,0,1329,1331,3,44,22,0,1330, - 1332,7,4,0,0,1331,1330,1,0,0,0,1331,1332,1,0,0,0,1332,1334,1,0,0, - 0,1333,1328,1,0,0,0,1333,1334,1,0,0,0,1334,1348,1,0,0,0,1335,1336, - 5,155,0,0,1336,1349,3,42,21,0,1337,1338,5,98,0,0,1338,1340,7,5,0, - 0,1339,1341,3,44,22,0,1340,1339,1,0,0,0,1340,1341,1,0,0,0,1341,1342, - 1,0,0,0,1342,1346,7,4,0,0,1343,1347,5,192,0,0,1344,1345,5,304,0, - 0,1345,1347,5,266,0,0,1346,1343,1,0,0,0,1346,1344,1,0,0,0,1347,1349, - 1,0,0,0,1348,1335,1,0,0,0,1348,1337,1,0,0,0,1348,1349,1,0,0,0,1349, - 41,1,0,0,0,1350,1353,5,22,0,0,1351,1353,3,44,22,0,1352,1350,1,0, - 0,0,1352,1351,1,0,0,0,1353,43,1,0,0,0,1354,1355,7,6,0,0,1355,45, - 1,0,0,0,1356,1357,6,23,-1,0,1357,1358,3,48,24,0,1358,1373,1,0,0, - 0,1359,1360,10,2,0,0,1360,1362,5,128,0,0,1361,1363,3,74,37,0,1362, - 1361,1,0,0,0,1362,1363,1,0,0,0,1363,1364,1,0,0,0,1364,1372,3,46, - 23,3,1365,1366,10,1,0,0,1366,1368,7,7,0,0,1367,1369,3,74,37,0,1368, - 1367,1,0,0,0,1368,1369,1,0,0,0,1369,1370,1,0,0,0,1370,1372,3,46, - 23,2,1371,1359,1,0,0,0,1371,1365,1,0,0,0,1372,1375,1,0,0,0,1373, - 1371,1,0,0,0,1373,1374,1,0,0,0,1374,47,1,0,0,0,1375,1373,1,0,0,0, - 1376,1393,3,52,26,0,1377,1378,5,260,0,0,1378,1393,3,262,131,0,1379, - 1380,5,296,0,0,1380,1385,3,142,71,0,1381,1382,5,3,0,0,1382,1384, - 3,142,71,0,1383,1381,1,0,0,0,1384,1387,1,0,0,0,1385,1383,1,0,0,0, - 1385,1386,1,0,0,0,1386,1393,1,0,0,0,1387,1385,1,0,0,0,1388,1389, - 5,1,0,0,1389,1390,3,40,20,0,1390,1391,5,2,0,0,1391,1393,1,0,0,0, - 1392,1376,1,0,0,0,1392,1377,1,0,0,0,1392,1379,1,0,0,0,1392,1388, - 1,0,0,0,1393,49,1,0,0,0,1394,1397,3,282,141,0,1395,1397,3,142,71, - 0,1396,1394,1,0,0,0,1396,1395,1,0,0,0,1397,1399,1,0,0,0,1398,1400, - 7,8,0,0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1403,1,0,0,0,1401, - 1402,5,185,0,0,1402,1404,7,9,0,0,1403,1401,1,0,0,0,1403,1404,1,0, - 0,0,1404,51,1,0,0,0,1405,1407,5,248,0,0,1406,1408,3,74,37,0,1407, - 1406,1,0,0,0,1407,1408,1,0,0,0,1408,1409,1,0,0,0,1409,1414,3,76, - 38,0,1410,1411,5,3,0,0,1411,1413,3,76,38,0,1412,1410,1,0,0,0,1413, - 1416,1,0,0,0,1414,1412,1,0,0,0,1414,1415,1,0,0,0,1415,1426,1,0,0, - 0,1416,1414,1,0,0,0,1417,1418,5,105,0,0,1418,1423,3,78,39,0,1419, - 1420,5,3,0,0,1420,1422,3,78,39,0,1421,1419,1,0,0,0,1422,1425,1,0, - 0,0,1423,1421,1,0,0,0,1423,1424,1,0,0,0,1424,1427,1,0,0,0,1425,1423, - 1,0,0,0,1426,1417,1,0,0,0,1426,1427,1,0,0,0,1427,1429,1,0,0,0,1428, - 1430,3,54,27,0,1429,1428,1,0,0,0,1429,1430,1,0,0,0,1430,1434,1,0, - 0,0,1431,1432,5,114,0,0,1432,1433,5,36,0,0,1433,1435,3,58,29,0,1434, - 1431,1,0,0,0,1434,1435,1,0,0,0,1435,1437,1,0,0,0,1436,1438,3,56, - 28,0,1437,1436,1,0,0,0,1437,1438,1,0,0,0,1438,1448,1,0,0,0,1439, - 1440,5,303,0,0,1440,1445,3,68,34,0,1441,1442,5,3,0,0,1442,1444,3, - 68,34,0,1443,1441,1,0,0,0,1444,1447,1,0,0,0,1445,1443,1,0,0,0,1445, - 1446,1,0,0,0,1446,1449,1,0,0,0,1447,1445,1,0,0,0,1448,1439,1,0,0, - 0,1448,1449,1,0,0,0,1449,53,1,0,0,0,1450,1451,5,301,0,0,1451,1452, - 3,144,72,0,1452,55,1,0,0,0,1453,1454,5,117,0,0,1454,1455,3,144,72, - 0,1455,57,1,0,0,0,1456,1458,3,74,37,0,1457,1456,1,0,0,0,1457,1458, - 1,0,0,0,1458,1459,1,0,0,0,1459,1464,3,62,31,0,1460,1461,5,3,0,0, - 1461,1463,3,62,31,0,1462,1460,1,0,0,0,1463,1466,1,0,0,0,1464,1462, - 1,0,0,0,1464,1465,1,0,0,0,1465,59,1,0,0,0,1466,1464,1,0,0,0,1467, - 1472,3,142,71,0,1468,1469,5,3,0,0,1469,1471,3,142,71,0,1470,1468, - 1,0,0,0,1471,1474,1,0,0,0,1472,1470,1,0,0,0,1472,1473,1,0,0,0,1473, - 61,1,0,0,0,1474,1472,1,0,0,0,1475,1516,3,64,32,0,1476,1477,5,238, - 0,0,1477,1486,5,1,0,0,1478,1483,3,64,32,0,1479,1480,5,3,0,0,1480, - 1482,3,64,32,0,1481,1479,1,0,0,0,1482,1485,1,0,0,0,1483,1481,1,0, - 0,0,1483,1484,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1486,1478, - 1,0,0,0,1486,1487,1,0,0,0,1487,1488,1,0,0,0,1488,1516,5,2,0,0,1489, - 1490,5,55,0,0,1490,1499,5,1,0,0,1491,1496,3,64,32,0,1492,1493,5, - 3,0,0,1493,1495,3,64,32,0,1494,1492,1,0,0,0,1495,1498,1,0,0,0,1496, - 1494,1,0,0,0,1496,1497,1,0,0,0,1497,1500,1,0,0,0,1498,1496,1,0,0, - 0,1499,1491,1,0,0,0,1499,1500,1,0,0,0,1500,1501,1,0,0,0,1501,1516, - 5,2,0,0,1502,1503,5,115,0,0,1503,1504,5,252,0,0,1504,1505,5,1,0, - 0,1505,1510,3,64,32,0,1506,1507,5,3,0,0,1507,1509,3,64,32,0,1508, - 1506,1,0,0,0,1509,1512,1,0,0,0,1510,1508,1,0,0,0,1510,1511,1,0,0, - 0,1511,1513,1,0,0,0,1512,1510,1,0,0,0,1513,1514,5,2,0,0,1514,1516, - 1,0,0,0,1515,1475,1,0,0,0,1515,1476,1,0,0,0,1515,1489,1,0,0,0,1515, - 1502,1,0,0,0,1516,63,1,0,0,0,1517,1526,5,1,0,0,1518,1523,3,66,33, - 0,1519,1520,5,3,0,0,1520,1522,3,66,33,0,1521,1519,1,0,0,0,1522,1525, - 1,0,0,0,1523,1521,1,0,0,0,1523,1524,1,0,0,0,1524,1527,1,0,0,0,1525, - 1523,1,0,0,0,1526,1518,1,0,0,0,1526,1527,1,0,0,0,1527,1528,1,0,0, - 0,1528,1531,5,2,0,0,1529,1531,3,66,33,0,1530,1517,1,0,0,0,1530,1529, - 1,0,0,0,1531,65,1,0,0,0,1532,1535,3,282,141,0,1533,1535,3,142,71, - 0,1534,1532,1,0,0,0,1534,1533,1,0,0,0,1535,67,1,0,0,0,1536,1537, - 3,302,151,0,1537,1538,5,28,0,0,1538,1539,5,1,0,0,1539,1540,3,70, - 35,0,1540,1541,5,2,0,0,1541,69,1,0,0,0,1542,1544,3,302,151,0,1543, - 1542,1,0,0,0,1543,1544,1,0,0,0,1544,1548,1,0,0,0,1545,1546,5,201, - 0,0,1546,1547,5,36,0,0,1547,1549,3,60,30,0,1548,1545,1,0,0,0,1548, - 1549,1,0,0,0,1549,1560,1,0,0,0,1550,1551,5,195,0,0,1551,1552,5,36, - 0,0,1552,1557,3,50,25,0,1553,1554,5,3,0,0,1554,1556,3,50,25,0,1555, - 1553,1,0,0,0,1556,1559,1,0,0,0,1557,1555,1,0,0,0,1557,1558,1,0,0, - 0,1558,1561,1,0,0,0,1559,1557,1,0,0,0,1560,1550,1,0,0,0,1560,1561, - 1,0,0,0,1561,1563,1,0,0,0,1562,1564,3,204,102,0,1563,1562,1,0,0, - 0,1563,1564,1,0,0,0,1564,71,1,0,0,0,1565,1567,3,302,151,0,1566,1568, - 3,114,57,0,1567,1566,1,0,0,0,1567,1568,1,0,0,0,1568,1569,1,0,0,0, - 1569,1570,5,28,0,0,1570,1571,5,1,0,0,1571,1572,3,22,11,0,1572,1573, - 5,2,0,0,1573,73,1,0,0,0,1574,1575,7,10,0,0,1575,75,1,0,0,0,1576, - 1579,3,282,141,0,1577,1579,3,142,71,0,1578,1576,1,0,0,0,1578,1577, - 1,0,0,0,1579,1584,1,0,0,0,1580,1582,5,28,0,0,1581,1580,1,0,0,0,1581, - 1582,1,0,0,0,1582,1583,1,0,0,0,1583,1585,3,302,151,0,1584,1581,1, - 0,0,0,1584,1585,1,0,0,0,1585,1595,1,0,0,0,1586,1587,3,150,75,0,1587, - 1588,5,4,0,0,1588,1591,5,320,0,0,1589,1590,5,28,0,0,1590,1592,3, - 114,57,0,1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592,1595,1,0,0,0,1593, - 1595,5,320,0,0,1594,1578,1,0,0,0,1594,1586,1,0,0,0,1594,1593,1,0, - 0,0,1595,77,1,0,0,0,1596,1597,6,39,-1,0,1597,1598,3,84,42,0,1598, - 1617,1,0,0,0,1599,1613,10,2,0,0,1600,1601,5,54,0,0,1601,1602,5,136, - 0,0,1602,1614,3,84,42,0,1603,1604,3,80,40,0,1604,1605,5,136,0,0, - 1605,1606,3,78,39,0,1606,1607,3,82,41,0,1607,1614,1,0,0,0,1608,1609, - 5,172,0,0,1609,1610,3,80,40,0,1610,1611,5,136,0,0,1611,1612,3,84, - 42,0,1612,1614,1,0,0,0,1613,1600,1,0,0,0,1613,1603,1,0,0,0,1613, - 1608,1,0,0,0,1614,1616,1,0,0,0,1615,1599,1,0,0,0,1616,1619,1,0,0, - 0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,79,1,0,0,0,1619,1617, - 1,0,0,0,1620,1622,5,125,0,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0, - 1622,1636,1,0,0,0,1623,1625,5,152,0,0,1624,1626,5,197,0,0,1625,1624, - 1,0,0,0,1625,1626,1,0,0,0,1626,1636,1,0,0,0,1627,1629,5,234,0,0, - 1628,1630,5,197,0,0,1629,1628,1,0,0,0,1629,1630,1,0,0,0,1630,1636, - 1,0,0,0,1631,1633,5,106,0,0,1632,1634,5,197,0,0,1633,1632,1,0,0, - 0,1633,1634,1,0,0,0,1634,1636,1,0,0,0,1635,1621,1,0,0,0,1635,1623, - 1,0,0,0,1635,1627,1,0,0,0,1635,1631,1,0,0,0,1636,81,1,0,0,0,1637, - 1638,5,190,0,0,1638,1652,3,144,72,0,1639,1640,5,290,0,0,1640,1641, - 5,1,0,0,1641,1646,3,302,151,0,1642,1643,5,3,0,0,1643,1645,3,302, - 151,0,1644,1642,1,0,0,0,1645,1648,1,0,0,0,1646,1644,1,0,0,0,1646, - 1647,1,0,0,0,1647,1649,1,0,0,0,1648,1646,1,0,0,0,1649,1650,5,2,0, - 0,1650,1652,1,0,0,0,1651,1637,1,0,0,0,1651,1639,1,0,0,0,1652,83, - 1,0,0,0,1653,1660,3,94,47,0,1654,1655,5,262,0,0,1655,1656,3,86,43, - 0,1656,1657,5,1,0,0,1657,1658,3,142,71,0,1658,1659,5,2,0,0,1659, - 1661,1,0,0,0,1660,1654,1,0,0,0,1660,1661,1,0,0,0,1661,85,1,0,0,0, - 1662,1663,7,11,0,0,1663,87,1,0,0,0,1664,1665,7,12,0,0,1665,89,1, - 0,0,0,1666,1673,5,89,0,0,1667,1669,5,274,0,0,1668,1670,3,174,87, - 0,1669,1668,1,0,0,0,1669,1670,1,0,0,0,1670,1671,1,0,0,0,1671,1673, - 3,92,46,0,1672,1666,1,0,0,0,1672,1667,1,0,0,0,1673,91,1,0,0,0,1674, - 1675,5,304,0,0,1675,1679,5,51,0,0,1676,1677,5,306,0,0,1677,1679, - 5,51,0,0,1678,1674,1,0,0,0,1678,1676,1,0,0,0,1679,93,1,0,0,0,1680, - 1756,3,108,54,0,1681,1682,5,166,0,0,1682,1686,5,1,0,0,1683,1684, - 5,201,0,0,1684,1685,5,36,0,0,1685,1687,3,60,30,0,1686,1683,1,0,0, - 0,1686,1687,1,0,0,0,1687,1698,1,0,0,0,1688,1689,5,195,0,0,1689,1690, - 5,36,0,0,1690,1695,3,50,25,0,1691,1692,5,3,0,0,1692,1694,3,50,25, - 0,1693,1691,1,0,0,0,1694,1697,1,0,0,0,1695,1693,1,0,0,0,1695,1696, - 1,0,0,0,1696,1699,1,0,0,0,1697,1695,1,0,0,0,1698,1688,1,0,0,0,1698, - 1699,1,0,0,0,1699,1709,1,0,0,0,1700,1701,5,168,0,0,1701,1706,3,96, - 48,0,1702,1703,5,3,0,0,1703,1705,3,96,48,0,1704,1702,1,0,0,0,1705, - 1708,1,0,0,0,1706,1704,1,0,0,0,1706,1707,1,0,0,0,1707,1710,1,0,0, - 0,1708,1706,1,0,0,0,1709,1700,1,0,0,0,1709,1710,1,0,0,0,1710,1712, - 1,0,0,0,1711,1713,3,98,49,0,1712,1711,1,0,0,0,1712,1713,1,0,0,0, - 1713,1717,1,0,0,0,1714,1715,5,21,0,0,1715,1716,5,163,0,0,1716,1718, - 3,102,51,0,1717,1714,1,0,0,0,1717,1718,1,0,0,0,1718,1720,1,0,0,0, - 1719,1721,7,13,0,0,1720,1719,1,0,0,0,1720,1721,1,0,0,0,1721,1722, - 1,0,0,0,1722,1723,5,206,0,0,1723,1724,5,1,0,0,1724,1725,3,210,105, - 0,1725,1735,5,2,0,0,1726,1727,5,257,0,0,1727,1732,3,104,52,0,1728, - 1729,5,3,0,0,1729,1731,3,104,52,0,1730,1728,1,0,0,0,1731,1734,1, - 0,0,0,1732,1730,1,0,0,0,1732,1733,1,0,0,0,1733,1736,1,0,0,0,1734, - 1732,1,0,0,0,1735,1726,1,0,0,0,1735,1736,1,0,0,0,1736,1737,1,0,0, - 0,1737,1738,5,71,0,0,1738,1743,3,106,53,0,1739,1740,5,3,0,0,1740, - 1742,3,106,53,0,1741,1739,1,0,0,0,1742,1745,1,0,0,0,1743,1741,1, - 0,0,0,1743,1744,1,0,0,0,1744,1746,1,0,0,0,1745,1743,1,0,0,0,1746, - 1754,5,2,0,0,1747,1749,5,28,0,0,1748,1747,1,0,0,0,1748,1749,1,0, - 0,0,1749,1750,1,0,0,0,1750,1752,3,302,151,0,1751,1753,3,114,57,0, - 1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753,1755,1,0,0,0,1754,1748, - 1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0,0,0,1756,1681,1,0,0,0,1756, - 1757,1,0,0,0,1757,95,1,0,0,0,1758,1759,3,142,71,0,1759,1760,5,28, - 0,0,1760,1761,3,302,151,0,1761,97,1,0,0,0,1762,1763,5,191,0,0,1763, - 1764,5,239,0,0,1764,1765,5,207,0,0,1765,1774,5,163,0,0,1766,1767, - 5,22,0,0,1767,1768,5,240,0,0,1768,1769,5,207,0,0,1769,1771,5,163, - 0,0,1770,1772,3,100,50,0,1771,1770,1,0,0,0,1771,1772,1,0,0,0,1772, - 1774,1,0,0,0,1773,1762,1,0,0,0,1773,1766,1,0,0,0,1774,99,1,0,0,0, - 1775,1776,5,253,0,0,1776,1777,5,85,0,0,1777,1785,5,165,0,0,1778, - 1779,5,189,0,0,1779,1780,5,85,0,0,1780,1785,5,165,0,0,1781,1782, - 5,304,0,0,1782,1783,5,284,0,0,1783,1785,5,240,0,0,1784,1775,1,0, - 0,0,1784,1778,1,0,0,0,1784,1781,1,0,0,0,1785,101,1,0,0,0,1786,1787, - 5,5,0,0,1787,1788,5,269,0,0,1788,1789,5,174,0,0,1789,1806,5,239, - 0,0,1790,1791,5,5,0,0,1791,1792,5,204,0,0,1792,1793,5,148,0,0,1793, - 1806,5,239,0,0,1794,1795,5,5,0,0,1795,1796,5,269,0,0,1796,1797,5, - 101,0,0,1797,1806,3,302,151,0,1798,1799,5,5,0,0,1799,1800,5,269, - 0,0,1800,1801,5,148,0,0,1801,1806,3,302,151,0,1802,1803,5,5,0,0, - 1803,1804,5,269,0,0,1804,1806,3,302,151,0,1805,1786,1,0,0,0,1805, - 1790,1,0,0,0,1805,1794,1,0,0,0,1805,1798,1,0,0,0,1805,1802,1,0,0, - 0,1806,103,1,0,0,0,1807,1808,3,302,151,0,1808,1809,5,312,0,0,1809, - 1810,5,1,0,0,1810,1815,3,302,151,0,1811,1812,5,3,0,0,1812,1814,3, - 302,151,0,1813,1811,1,0,0,0,1814,1817,1,0,0,0,1815,1813,1,0,0,0, - 1815,1816,1,0,0,0,1816,1818,1,0,0,0,1817,1815,1,0,0,0,1818,1819, - 5,2,0,0,1819,105,1,0,0,0,1820,1821,3,302,151,0,1821,1822,5,28,0, - 0,1822,1823,3,142,71,0,1823,107,1,0,0,0,1824,1832,3,116,58,0,1825, - 1827,5,28,0,0,1826,1825,1,0,0,0,1826,1827,1,0,0,0,1827,1828,1,0, - 0,0,1828,1830,3,302,151,0,1829,1831,3,114,57,0,1830,1829,1,0,0,0, - 1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1826,1,0,0,0,1832,1833, - 1,0,0,0,1833,109,1,0,0,0,1834,1835,5,1,0,0,1835,1840,3,286,143,0, - 1836,1837,5,3,0,0,1837,1839,3,286,143,0,1838,1836,1,0,0,0,1839,1842, - 1,0,0,0,1840,1838,1,0,0,0,1840,1841,1,0,0,0,1841,1843,1,0,0,0,1842, - 1840,1,0,0,0,1843,1844,5,2,0,0,1844,111,1,0,0,0,1845,1846,5,1,0, - 0,1846,1851,3,282,141,0,1847,1848,5,3,0,0,1848,1850,3,282,141,0, - 1849,1847,1,0,0,0,1850,1853,1,0,0,0,1851,1849,1,0,0,0,1851,1852, - 1,0,0,0,1852,1854,1,0,0,0,1853,1851,1,0,0,0,1854,1855,5,2,0,0,1855, - 113,1,0,0,0,1856,1857,5,1,0,0,1857,1862,3,302,151,0,1858,1859,5, - 3,0,0,1859,1861,3,302,151,0,1860,1858,1,0,0,0,1861,1864,1,0,0,0, - 1862,1860,1,0,0,0,1862,1863,1,0,0,0,1863,1865,1,0,0,0,1864,1862, - 1,0,0,0,1865,1866,5,2,0,0,1866,115,1,0,0,0,1867,1869,3,260,130,0, - 1868,1870,3,290,145,0,1869,1868,1,0,0,0,1869,1870,1,0,0,0,1870,1939, - 1,0,0,0,1871,1872,5,1,0,0,1872,1873,3,22,11,0,1873,1874,5,2,0,0, - 1874,1939,1,0,0,0,1875,1876,5,285,0,0,1876,1877,5,1,0,0,1877,1882, - 3,142,71,0,1878,1879,5,3,0,0,1879,1881,3,142,71,0,1880,1878,1,0, - 0,0,1881,1884,1,0,0,0,1882,1880,1,0,0,0,1882,1883,1,0,0,0,1883,1885, - 1,0,0,0,1884,1882,1,0,0,0,1885,1888,5,2,0,0,1886,1887,5,304,0,0, - 1887,1889,5,196,0,0,1888,1886,1,0,0,0,1888,1889,1,0,0,0,1889,1939, - 1,0,0,0,1890,1891,5,149,0,0,1891,1892,5,1,0,0,1892,1893,3,22,11, - 0,1893,1894,5,2,0,0,1894,1939,1,0,0,0,1895,1896,5,260,0,0,1896,1897, - 5,1,0,0,1897,1898,3,128,64,0,1898,1899,5,2,0,0,1899,1939,1,0,0,0, - 1900,1901,5,1,0,0,1901,1902,3,78,39,0,1902,1903,5,2,0,0,1903,1939, - 1,0,0,0,1904,1905,5,142,0,0,1905,1906,5,1,0,0,1906,1907,3,152,76, - 0,1907,1908,5,45,0,0,1908,1909,5,1,0,0,1909,1914,3,118,59,0,1910, - 1911,5,3,0,0,1911,1913,3,118,59,0,1912,1910,1,0,0,0,1913,1916,1, - 0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915,1917,1,0,0,0,1916, - 1914,1,0,0,0,1917,1929,5,2,0,0,1918,1919,5,210,0,0,1919,1920,5,1, - 0,0,1920,1921,3,120,60,0,1921,1922,5,2,0,0,1922,1930,1,0,0,0,1923, - 1924,5,210,0,0,1924,1925,5,70,0,0,1925,1926,5,1,0,0,1926,1927,3, - 126,63,0,1927,1928,5,2,0,0,1928,1930,1,0,0,0,1929,1918,1,0,0,0,1929, - 1923,1,0,0,0,1929,1930,1,0,0,0,1930,1934,1,0,0,0,1931,1932,7,14, - 0,0,1932,1933,5,190,0,0,1933,1935,5,89,0,0,1934,1931,1,0,0,0,1934, - 1935,1,0,0,0,1935,1936,1,0,0,0,1936,1937,5,2,0,0,1937,1939,1,0,0, - 0,1938,1867,1,0,0,0,1938,1871,1,0,0,0,1938,1875,1,0,0,0,1938,1890, - 1,0,0,0,1938,1895,1,0,0,0,1938,1900,1,0,0,0,1938,1904,1,0,0,0,1939, - 117,1,0,0,0,1940,1941,3,302,151,0,1941,1942,5,103,0,0,1942,1943, - 5,196,0,0,1943,2018,1,0,0,0,1944,1945,3,302,151,0,1945,1948,3,190, - 95,0,1946,1947,5,205,0,0,1947,1949,3,174,87,0,1948,1946,1,0,0,0, - 1948,1949,1,0,0,0,1949,1954,1,0,0,0,1950,1951,3,162,81,0,1951,1952, - 5,190,0,0,1952,1953,5,85,0,0,1953,1955,1,0,0,0,1954,1950,1,0,0,0, - 1954,1955,1,0,0,0,1955,1960,1,0,0,0,1956,1957,3,162,81,0,1957,1958, - 5,190,0,0,1958,1959,5,89,0,0,1959,1961,1,0,0,0,1960,1956,1,0,0,0, - 1960,1961,1,0,0,0,1961,2018,1,0,0,0,1962,1963,3,302,151,0,1963,1964, - 3,190,95,0,1964,1965,5,104,0,0,1965,1968,3,156,78,0,1966,1967,5, - 205,0,0,1967,1969,3,174,87,0,1968,1966,1,0,0,0,1968,1969,1,0,0,0, - 1969,1973,1,0,0,0,1970,1971,3,164,82,0,1971,1972,5,308,0,0,1972, - 1974,1,0,0,0,1973,1970,1,0,0,0,1973,1974,1,0,0,0,1974,1982,1,0,0, - 0,1975,1976,7,15,0,0,1976,1980,5,218,0,0,1977,1978,5,190,0,0,1978, - 1979,5,242,0,0,1979,1981,5,264,0,0,1980,1977,1,0,0,0,1980,1981,1, - 0,0,0,1981,1983,1,0,0,0,1982,1975,1,0,0,0,1982,1983,1,0,0,0,1983, - 1988,1,0,0,0,1984,1985,3,166,83,0,1985,1986,5,190,0,0,1986,1987, - 5,85,0,0,1987,1989,1,0,0,0,1988,1984,1,0,0,0,1988,1989,1,0,0,0,1989, - 1994,1,0,0,0,1990,1991,3,166,83,0,1991,1992,5,190,0,0,1992,1993, - 5,89,0,0,1993,1995,1,0,0,0,1994,1990,1,0,0,0,1994,1995,1,0,0,0,1995, - 2018,1,0,0,0,1996,1998,5,173,0,0,1997,1999,5,205,0,0,1998,1997,1, - 0,0,0,1998,1999,1,0,0,0,1999,2000,1,0,0,0,2000,2003,3,174,87,0,2001, - 2002,5,28,0,0,2002,2004,3,302,151,0,2003,2001,1,0,0,0,2003,2004, - 1,0,0,0,2004,2005,1,0,0,0,2005,2006,5,45,0,0,2006,2007,5,1,0,0,2007, - 2012,3,118,59,0,2008,2009,5,3,0,0,2009,2011,3,118,59,0,2010,2008, - 1,0,0,0,2011,2014,1,0,0,0,2012,2010,1,0,0,0,2012,2013,1,0,0,0,2013, - 2015,1,0,0,0,2014,2012,1,0,0,0,2015,2016,5,2,0,0,2016,2018,1,0,0, - 0,2017,1940,1,0,0,0,2017,1944,1,0,0,0,2017,1962,1,0,0,0,2017,1996, - 1,0,0,0,2018,119,1,0,0,0,2019,2045,3,122,61,0,2020,2021,3,122,61, - 0,2021,2022,7,16,0,0,2022,2023,3,124,62,0,2023,2045,1,0,0,0,2024, - 2025,3,124,62,0,2025,2026,5,281,0,0,2026,2031,3,124,62,0,2027,2028, - 5,281,0,0,2028,2030,3,124,62,0,2029,2027,1,0,0,0,2030,2033,1,0,0, - 0,2031,2029,1,0,0,0,2031,2032,1,0,0,0,2032,2045,1,0,0,0,2033,2031, - 1,0,0,0,2034,2035,3,124,62,0,2035,2036,5,54,0,0,2036,2041,3,124, - 62,0,2037,2038,5,54,0,0,2038,2040,3,124,62,0,2039,2037,1,0,0,0,2040, - 2043,1,0,0,0,2041,2039,1,0,0,0,2041,2042,1,0,0,0,2042,2045,1,0,0, - 0,2043,2041,1,0,0,0,2044,2019,1,0,0,0,2044,2020,1,0,0,0,2044,2024, - 1,0,0,0,2044,2034,1,0,0,0,2045,121,1,0,0,0,2046,2047,3,302,151,0, - 2047,123,1,0,0,0,2048,2054,3,122,61,0,2049,2050,5,1,0,0,2050,2051, - 3,120,60,0,2051,2052,5,2,0,0,2052,2054,1,0,0,0,2053,2048,1,0,0,0, - 2053,2049,1,0,0,0,2054,125,1,0,0,0,2055,2058,7,16,0,0,2056,2057, - 5,3,0,0,2057,2059,7,17,0,0,2058,2056,1,0,0,0,2058,2059,1,0,0,0,2059, - 2066,1,0,0,0,2060,2063,7,17,0,0,2061,2062,5,3,0,0,2062,2064,7,16, - 0,0,2063,2061,1,0,0,0,2063,2064,1,0,0,0,2064,2066,1,0,0,0,2065,2055, - 1,0,0,0,2065,2060,1,0,0,0,2066,127,1,0,0,0,2067,2068,3,278,139,0, - 2068,2077,5,1,0,0,2069,2074,3,130,65,0,2070,2071,5,3,0,0,2071,2073, - 3,130,65,0,2072,2070,1,0,0,0,2073,2076,1,0,0,0,2074,2072,1,0,0,0, - 2074,2075,1,0,0,0,2075,2078,1,0,0,0,2076,2074,1,0,0,0,2077,2069, - 1,0,0,0,2077,2078,1,0,0,0,2078,2088,1,0,0,0,2079,2080,5,52,0,0,2080, - 2085,3,140,70,0,2081,2082,5,3,0,0,2082,2084,3,140,70,0,2083,2081, - 1,0,0,0,2084,2087,1,0,0,0,2085,2083,1,0,0,0,2085,2086,1,0,0,0,2086, - 2089,1,0,0,0,2087,2085,1,0,0,0,2088,2079,1,0,0,0,2088,2089,1,0,0, - 0,2089,2090,1,0,0,0,2090,2091,5,2,0,0,2091,129,1,0,0,0,2092,2093, - 3,302,151,0,2093,2094,5,6,0,0,2094,2096,1,0,0,0,2095,2092,1,0,0, - 0,2095,2096,1,0,0,0,2096,2100,1,0,0,0,2097,2101,3,132,66,0,2098, - 2101,3,136,68,0,2099,2101,3,142,71,0,2100,2097,1,0,0,0,2100,2098, - 1,0,0,0,2100,2099,1,0,0,0,2101,131,1,0,0,0,2102,2113,3,134,67,0, - 2103,2104,5,201,0,0,2104,2111,5,36,0,0,2105,2107,5,1,0,0,2106,2108, - 3,60,30,0,2107,2106,1,0,0,0,2107,2108,1,0,0,0,2108,2109,1,0,0,0, - 2109,2112,5,2,0,0,2110,2112,3,142,71,0,2111,2105,1,0,0,0,2111,2110, - 1,0,0,0,2112,2114,1,0,0,0,2113,2103,1,0,0,0,2113,2114,1,0,0,0,2114, - 2121,1,0,0,0,2115,2116,5,217,0,0,2116,2117,5,300,0,0,2117,2122,5, - 85,0,0,2118,2119,5,144,0,0,2119,2120,5,300,0,0,2120,2122,5,85,0, - 0,2121,2115,1,0,0,0,2121,2118,1,0,0,0,2121,2122,1,0,0,0,2122,2139, - 1,0,0,0,2123,2124,5,195,0,0,2124,2137,5,36,0,0,2125,2126,5,1,0,0, - 2126,2131,3,50,25,0,2127,2128,5,3,0,0,2128,2130,3,50,25,0,2129,2127, - 1,0,0,0,2130,2133,1,0,0,0,2131,2129,1,0,0,0,2131,2132,1,0,0,0,2132, - 2134,1,0,0,0,2133,2131,1,0,0,0,2134,2135,5,2,0,0,2135,2138,1,0,0, - 0,2136,2138,3,50,25,0,2137,2125,1,0,0,0,2137,2136,1,0,0,0,2138,2140, - 1,0,0,0,2139,2123,1,0,0,0,2139,2140,1,0,0,0,2140,133,1,0,0,0,2141, - 2142,5,260,0,0,2142,2143,5,1,0,0,2143,2144,3,262,131,0,2144,2152, - 5,2,0,0,2145,2147,5,28,0,0,2146,2145,1,0,0,0,2146,2147,1,0,0,0,2147, - 2148,1,0,0,0,2148,2150,3,302,151,0,2149,2151,3,114,57,0,2150,2149, - 1,0,0,0,2150,2151,1,0,0,0,2151,2153,1,0,0,0,2152,2146,1,0,0,0,2152, - 2153,1,0,0,0,2153,2168,1,0,0,0,2154,2155,5,260,0,0,2155,2156,5,1, - 0,0,2156,2157,3,22,11,0,2157,2165,5,2,0,0,2158,2160,5,28,0,0,2159, - 2158,1,0,0,0,2159,2160,1,0,0,0,2160,2161,1,0,0,0,2161,2163,3,302, - 151,0,2162,2164,3,114,57,0,2163,2162,1,0,0,0,2163,2164,1,0,0,0,2164, - 2166,1,0,0,0,2165,2159,1,0,0,0,2165,2166,1,0,0,0,2166,2168,1,0,0, - 0,2167,2141,1,0,0,0,2167,2154,1,0,0,0,2168,135,1,0,0,0,2169,2170, - 5,77,0,0,2170,2171,5,1,0,0,2171,2176,3,138,69,0,2172,2173,5,3,0, - 0,2173,2175,3,138,69,0,2174,2172,1,0,0,0,2175,2178,1,0,0,0,2176, - 2174,1,0,0,0,2176,2177,1,0,0,0,2177,2179,1,0,0,0,2178,2176,1,0,0, - 0,2179,2180,5,2,0,0,2180,2188,1,0,0,0,2181,2182,5,41,0,0,2182,2183, - 5,1,0,0,2183,2184,5,183,0,0,2184,2185,5,28,0,0,2185,2186,5,77,0, - 0,2186,2188,5,2,0,0,2187,2169,1,0,0,0,2187,2181,1,0,0,0,2188,137, - 1,0,0,0,2189,2191,3,302,151,0,2190,2192,3,190,95,0,2191,2190,1,0, - 0,0,2191,2192,1,0,0,0,2192,139,1,0,0,0,2193,2194,5,1,0,0,2194,2195, - 3,288,144,0,2195,2196,5,3,0,0,2196,2201,3,288,144,0,2197,2198,5, - 3,0,0,2198,2200,3,288,144,0,2199,2197,1,0,0,0,2200,2203,1,0,0,0, - 2201,2199,1,0,0,0,2201,2202,1,0,0,0,2202,2204,1,0,0,0,2203,2201, - 1,0,0,0,2204,2205,5,2,0,0,2205,141,1,0,0,0,2206,2207,3,144,72,0, - 2207,143,1,0,0,0,2208,2209,6,72,-1,0,2209,2211,3,148,74,0,2210,2212, - 3,146,73,0,2211,2210,1,0,0,0,2211,2212,1,0,0,0,2212,2216,1,0,0,0, - 2213,2214,5,182,0,0,2214,2216,3,144,72,3,2215,2208,1,0,0,0,2215, - 2213,1,0,0,0,2216,2225,1,0,0,0,2217,2218,10,2,0,0,2218,2219,5,25, - 0,0,2219,2224,3,144,72,3,2220,2221,10,1,0,0,2221,2222,5,194,0,0, - 2222,2224,3,144,72,2,2223,2217,1,0,0,0,2223,2220,1,0,0,0,2224,2227, - 1,0,0,0,2225,2223,1,0,0,0,2225,2226,1,0,0,0,2226,145,1,0,0,0,2227, - 2225,1,0,0,0,2228,2229,3,178,89,0,2229,2230,3,148,74,0,2230,2290, - 1,0,0,0,2231,2232,3,178,89,0,2232,2233,3,180,90,0,2233,2234,5,1, - 0,0,2234,2235,3,22,11,0,2235,2236,5,2,0,0,2236,2290,1,0,0,0,2237, - 2239,5,182,0,0,2238,2237,1,0,0,0,2238,2239,1,0,0,0,2239,2240,1,0, - 0,0,2240,2241,5,34,0,0,2241,2242,3,148,74,0,2242,2243,5,25,0,0,2243, - 2244,3,148,74,0,2244,2290,1,0,0,0,2245,2247,5,182,0,0,2246,2245, - 1,0,0,0,2246,2247,1,0,0,0,2247,2248,1,0,0,0,2248,2249,5,122,0,0, - 2249,2250,5,1,0,0,2250,2255,3,142,71,0,2251,2252,5,3,0,0,2252,2254, - 3,142,71,0,2253,2251,1,0,0,0,2254,2257,1,0,0,0,2255,2253,1,0,0,0, - 2255,2256,1,0,0,0,2256,2258,1,0,0,0,2257,2255,1,0,0,0,2258,2259, - 5,2,0,0,2259,2290,1,0,0,0,2260,2262,5,182,0,0,2261,2260,1,0,0,0, - 2261,2262,1,0,0,0,2262,2263,1,0,0,0,2263,2264,5,122,0,0,2264,2265, - 5,1,0,0,2265,2266,3,22,11,0,2266,2267,5,2,0,0,2267,2290,1,0,0,0, - 2268,2270,5,182,0,0,2269,2268,1,0,0,0,2269,2270,1,0,0,0,2270,2271, - 1,0,0,0,2271,2272,5,154,0,0,2272,2275,3,148,74,0,2273,2274,5,90, - 0,0,2274,2276,3,148,74,0,2275,2273,1,0,0,0,2275,2276,1,0,0,0,2276, - 2290,1,0,0,0,2277,2279,5,133,0,0,2278,2280,5,182,0,0,2279,2278,1, - 0,0,0,2279,2280,1,0,0,0,2280,2281,1,0,0,0,2281,2290,5,183,0,0,2282, - 2284,5,133,0,0,2283,2285,5,182,0,0,2284,2283,1,0,0,0,2284,2285,1, - 0,0,0,2285,2286,1,0,0,0,2286,2287,5,79,0,0,2287,2288,5,105,0,0,2288, - 2290,3,148,74,0,2289,2228,1,0,0,0,2289,2231,1,0,0,0,2289,2238,1, - 0,0,0,2289,2246,1,0,0,0,2289,2261,1,0,0,0,2289,2269,1,0,0,0,2289, - 2277,1,0,0,0,2289,2282,1,0,0,0,2290,147,1,0,0,0,2291,2292,6,74,-1, - 0,2292,2296,3,150,75,0,2293,2294,7,18,0,0,2294,2296,3,148,74,4,2295, - 2291,1,0,0,0,2295,2293,1,0,0,0,2296,2311,1,0,0,0,2297,2298,10,3, - 0,0,2298,2299,7,19,0,0,2299,2310,3,148,74,4,2300,2301,10,2,0,0,2301, - 2302,7,18,0,0,2302,2310,3,148,74,3,2303,2304,10,1,0,0,2304,2305, - 5,323,0,0,2305,2310,3,148,74,2,2306,2307,10,5,0,0,2307,2308,5,30, - 0,0,2308,2310,3,176,88,0,2309,2297,1,0,0,0,2309,2300,1,0,0,0,2309, - 2303,1,0,0,0,2309,2306,1,0,0,0,2310,2313,1,0,0,0,2311,2309,1,0,0, - 0,2311,2312,1,0,0,0,2312,149,1,0,0,0,2313,2311,1,0,0,0,2314,2315, - 6,75,-1,0,2315,2768,5,183,0,0,2316,2768,3,184,92,0,2317,2318,3,302, - 151,0,2318,2319,3,174,87,0,2319,2768,1,0,0,0,2320,2321,5,82,0,0, - 2321,2322,5,213,0,0,2322,2768,3,174,87,0,2323,2768,3,304,152,0,2324, - 2768,3,182,91,0,2325,2768,3,174,87,0,2326,2768,5,328,0,0,2327,2768, - 5,324,0,0,2328,2329,5,211,0,0,2329,2330,5,1,0,0,2330,2331,3,148, - 74,0,2331,2332,5,122,0,0,2332,2333,3,148,74,0,2333,2334,5,2,0,0, - 2334,2768,1,0,0,0,2335,2336,5,1,0,0,2336,2339,3,142,71,0,2337,2338, - 5,3,0,0,2338,2340,3,142,71,0,2339,2337,1,0,0,0,2340,2341,1,0,0,0, - 2341,2339,1,0,0,0,2341,2342,1,0,0,0,2342,2343,1,0,0,0,2343,2344, - 5,2,0,0,2344,2768,1,0,0,0,2345,2346,5,239,0,0,2346,2347,5,1,0,0, - 2347,2352,3,142,71,0,2348,2349,5,3,0,0,2349,2351,3,142,71,0,2350, - 2348,1,0,0,0,2351,2354,1,0,0,0,2352,2350,1,0,0,0,2352,2353,1,0,0, - 0,2353,2355,1,0,0,0,2354,2352,1,0,0,0,2355,2356,5,2,0,0,2356,2768, - 1,0,0,0,2357,2358,5,156,0,0,2358,2360,5,1,0,0,2359,2361,3,74,37, - 0,2360,2359,1,0,0,0,2360,2361,1,0,0,0,2361,2362,1,0,0,0,2362,2365, - 3,142,71,0,2363,2364,5,3,0,0,2364,2366,3,174,87,0,2365,2363,1,0, - 0,0,2365,2366,1,0,0,0,2366,2370,1,0,0,0,2367,2368,5,190,0,0,2368, - 2369,5,200,0,0,2369,2371,3,90,45,0,2370,2367,1,0,0,0,2370,2371,1, - 0,0,0,2371,2372,1,0,0,0,2372,2373,5,2,0,0,2373,2374,5,305,0,0,2374, - 2375,5,114,0,0,2375,2376,5,1,0,0,2376,2377,5,195,0,0,2377,2378,5, - 36,0,0,2378,2383,3,50,25,0,2379,2380,5,3,0,0,2380,2382,3,50,25,0, - 2381,2379,1,0,0,0,2382,2385,1,0,0,0,2383,2381,1,0,0,0,2383,2384, - 1,0,0,0,2384,2386,1,0,0,0,2385,2383,1,0,0,0,2386,2387,5,2,0,0,2387, - 2389,1,0,0,0,2388,2390,3,198,99,0,2389,2388,1,0,0,0,2389,2390,1, - 0,0,0,2390,2768,1,0,0,0,2391,2393,3,170,85,0,2392,2391,1,0,0,0,2392, - 2393,1,0,0,0,2393,2394,1,0,0,0,2394,2395,3,278,139,0,2395,2399,5, - 1,0,0,2396,2397,3,302,151,0,2397,2398,5,4,0,0,2398,2400,1,0,0,0, - 2399,2396,1,0,0,0,2399,2400,1,0,0,0,2400,2401,1,0,0,0,2401,2402, - 5,320,0,0,2402,2404,5,2,0,0,2403,2405,3,198,99,0,2404,2403,1,0,0, - 0,2404,2405,1,0,0,0,2405,2407,1,0,0,0,2406,2408,3,202,101,0,2407, - 2406,1,0,0,0,2407,2408,1,0,0,0,2408,2768,1,0,0,0,2409,2411,3,170, - 85,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0,2411,2412,1,0,0,0,2412, - 2413,3,278,139,0,2413,2425,5,1,0,0,2414,2416,3,74,37,0,2415,2414, - 1,0,0,0,2415,2416,1,0,0,0,2416,2417,1,0,0,0,2417,2422,3,142,71,0, - 2418,2419,5,3,0,0,2419,2421,3,142,71,0,2420,2418,1,0,0,0,2421,2424, - 1,0,0,0,2422,2420,1,0,0,0,2422,2423,1,0,0,0,2423,2426,1,0,0,0,2424, - 2422,1,0,0,0,2425,2415,1,0,0,0,2425,2426,1,0,0,0,2426,2437,1,0,0, - 0,2427,2428,5,195,0,0,2428,2429,5,36,0,0,2429,2434,3,50,25,0,2430, - 2431,5,3,0,0,2431,2433,3,50,25,0,2432,2430,1,0,0,0,2433,2436,1,0, - 0,0,2434,2432,1,0,0,0,2434,2435,1,0,0,0,2435,2438,1,0,0,0,2436,2434, - 1,0,0,0,2437,2427,1,0,0,0,2437,2438,1,0,0,0,2438,2439,1,0,0,0,2439, - 2441,5,2,0,0,2440,2442,3,198,99,0,2441,2440,1,0,0,0,2441,2442,1, - 0,0,0,2442,2447,1,0,0,0,2443,2445,3,172,86,0,2444,2443,1,0,0,0,2444, - 2445,1,0,0,0,2445,2446,1,0,0,0,2446,2448,3,202,101,0,2447,2444,1, - 0,0,0,2447,2448,1,0,0,0,2448,2768,1,0,0,0,2449,2450,3,302,151,0, - 2450,2451,3,202,101,0,2451,2768,1,0,0,0,2452,2453,3,302,151,0,2453, - 2454,5,7,0,0,2454,2455,3,142,71,0,2455,2768,1,0,0,0,2456,2465,5, - 1,0,0,2457,2462,3,302,151,0,2458,2459,5,3,0,0,2459,2461,3,302,151, - 0,2460,2458,1,0,0,0,2461,2464,1,0,0,0,2462,2460,1,0,0,0,2462,2463, - 1,0,0,0,2463,2466,1,0,0,0,2464,2462,1,0,0,0,2465,2457,1,0,0,0,2465, - 2466,1,0,0,0,2466,2467,1,0,0,0,2467,2468,5,2,0,0,2468,2469,5,7,0, - 0,2469,2768,3,142,71,0,2470,2471,5,1,0,0,2471,2472,3,22,11,0,2472, - 2473,5,2,0,0,2473,2768,1,0,0,0,2474,2475,5,94,0,0,2475,2476,5,1, - 0,0,2476,2477,3,22,11,0,2477,2478,5,2,0,0,2478,2768,1,0,0,0,2479, - 2480,5,40,0,0,2480,2482,3,142,71,0,2481,2483,3,196,98,0,2482,2481, - 1,0,0,0,2483,2484,1,0,0,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485, - 2488,1,0,0,0,2486,2487,5,84,0,0,2487,2489,3,142,71,0,2488,2486,1, - 0,0,0,2488,2489,1,0,0,0,2489,2490,1,0,0,0,2490,2491,5,88,0,0,2491, - 2768,1,0,0,0,2492,2494,5,40,0,0,2493,2495,3,196,98,0,2494,2493,1, - 0,0,0,2495,2496,1,0,0,0,2496,2494,1,0,0,0,2496,2497,1,0,0,0,2497, - 2500,1,0,0,0,2498,2499,5,84,0,0,2499,2501,3,142,71,0,2500,2498,1, - 0,0,0,2500,2501,1,0,0,0,2501,2502,1,0,0,0,2502,2503,5,88,0,0,2503, - 2768,1,0,0,0,2504,2505,5,41,0,0,2505,2506,5,1,0,0,2506,2507,3,142, - 71,0,2507,2508,5,28,0,0,2508,2509,3,190,95,0,2509,2510,5,2,0,0,2510, - 2768,1,0,0,0,2511,2512,5,275,0,0,2512,2513,5,1,0,0,2513,2514,3,142, - 71,0,2514,2515,5,28,0,0,2515,2516,3,190,95,0,2516,2517,5,2,0,0,2517, - 2768,1,0,0,0,2518,2519,5,27,0,0,2519,2528,5,8,0,0,2520,2525,3,142, - 71,0,2521,2522,5,3,0,0,2522,2524,3,142,71,0,2523,2521,1,0,0,0,2524, - 2527,1,0,0,0,2525,2523,1,0,0,0,2525,2526,1,0,0,0,2526,2529,1,0,0, - 0,2527,2525,1,0,0,0,2528,2520,1,0,0,0,2528,2529,1,0,0,0,2529,2530, - 1,0,0,0,2530,2768,5,9,0,0,2531,2768,3,284,142,0,2532,2768,5,58,0, - 0,2533,2537,5,62,0,0,2534,2535,5,1,0,0,2535,2536,5,329,0,0,2536, - 2538,5,2,0,0,2537,2534,1,0,0,0,2537,2538,1,0,0,0,2538,2768,1,0,0, - 0,2539,2543,5,63,0,0,2540,2541,5,1,0,0,2541,2542,5,329,0,0,2542, - 2544,5,2,0,0,2543,2540,1,0,0,0,2543,2544,1,0,0,0,2544,2768,1,0,0, - 0,2545,2549,5,158,0,0,2546,2547,5,1,0,0,2547,2548,5,329,0,0,2548, - 2550,5,2,0,0,2549,2546,1,0,0,0,2549,2550,1,0,0,0,2550,2768,1,0,0, - 0,2551,2555,5,159,0,0,2552,2553,5,1,0,0,2553,2554,5,329,0,0,2554, - 2556,5,2,0,0,2555,2552,1,0,0,0,2555,2556,1,0,0,0,2556,2768,1,0,0, - 0,2557,2768,5,64,0,0,2558,2768,5,57,0,0,2559,2768,5,61,0,0,2560, - 2768,5,59,0,0,2561,2562,5,272,0,0,2562,2570,5,1,0,0,2563,2565,3, - 88,44,0,2564,2563,1,0,0,0,2564,2565,1,0,0,0,2565,2567,1,0,0,0,2566, - 2568,3,148,74,0,2567,2566,1,0,0,0,2567,2568,1,0,0,0,2568,2569,1, - 0,0,0,2569,2571,5,105,0,0,2570,2564,1,0,0,0,2570,2571,1,0,0,0,2571, - 2572,1,0,0,0,2572,2573,3,148,74,0,2573,2574,5,2,0,0,2574,2768,1, - 0,0,0,2575,2576,5,272,0,0,2576,2577,5,1,0,0,2577,2578,3,148,74,0, - 2578,2579,5,3,0,0,2579,2580,3,148,74,0,2580,2581,5,2,0,0,2581,2768, - 1,0,0,0,2582,2583,5,258,0,0,2583,2584,5,1,0,0,2584,2585,3,148,74, - 0,2585,2586,5,105,0,0,2586,2589,3,148,74,0,2587,2588,5,103,0,0,2588, - 2590,3,148,74,0,2589,2587,1,0,0,0,2589,2590,1,0,0,0,2590,2591,1, - 0,0,0,2591,2592,5,2,0,0,2592,2768,1,0,0,0,2593,2594,5,181,0,0,2594, - 2595,5,1,0,0,2595,2598,3,148,74,0,2596,2597,5,3,0,0,2597,2599,3, - 188,94,0,2598,2596,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600, - 2601,5,2,0,0,2601,2768,1,0,0,0,2602,2603,5,96,0,0,2603,2604,5,1, - 0,0,2604,2605,3,302,151,0,2605,2606,5,105,0,0,2606,2607,3,148,74, - 0,2607,2608,5,2,0,0,2608,2768,1,0,0,0,2609,2610,5,1,0,0,2610,2611, - 3,142,71,0,2611,2612,5,2,0,0,2612,2768,1,0,0,0,2613,2614,5,115,0, - 0,2614,2623,5,1,0,0,2615,2620,3,288,144,0,2616,2617,5,3,0,0,2617, - 2619,3,288,144,0,2618,2616,1,0,0,0,2619,2622,1,0,0,0,2620,2618,1, - 0,0,0,2620,2621,1,0,0,0,2621,2624,1,0,0,0,2622,2620,1,0,0,0,2623, - 2615,1,0,0,0,2623,2624,1,0,0,0,2624,2625,1,0,0,0,2625,2768,5,2,0, - 0,2626,2627,5,139,0,0,2627,2628,5,1,0,0,2628,2633,3,152,76,0,2629, - 2630,3,160,80,0,2630,2631,5,190,0,0,2631,2632,5,89,0,0,2632,2634, - 1,0,0,0,2633,2629,1,0,0,0,2633,2634,1,0,0,0,2634,2635,1,0,0,0,2635, - 2636,5,2,0,0,2636,2768,1,0,0,0,2637,2638,5,143,0,0,2638,2639,5,1, - 0,0,2639,2642,3,152,76,0,2640,2641,5,231,0,0,2641,2643,3,190,95, - 0,2642,2640,1,0,0,0,2642,2643,1,0,0,0,2643,2648,1,0,0,0,2644,2645, - 3,162,81,0,2645,2646,5,190,0,0,2646,2647,5,85,0,0,2647,2649,1,0, - 0,0,2648,2644,1,0,0,0,2648,2649,1,0,0,0,2649,2654,1,0,0,0,2650,2651, - 3,162,81,0,2651,2652,5,190,0,0,2652,2653,5,89,0,0,2653,2655,1,0, - 0,0,2654,2650,1,0,0,0,2654,2655,1,0,0,0,2655,2656,1,0,0,0,2656,2657, - 5,2,0,0,2657,2768,1,0,0,0,2658,2659,5,141,0,0,2659,2660,5,1,0,0, - 2660,2667,3,152,76,0,2661,2662,5,231,0,0,2662,2665,3,190,95,0,2663, - 2664,5,104,0,0,2664,2666,3,156,78,0,2665,2663,1,0,0,0,2665,2666, - 1,0,0,0,2666,2668,1,0,0,0,2667,2661,1,0,0,0,2667,2668,1,0,0,0,2668, - 2672,1,0,0,0,2669,2670,3,164,82,0,2670,2671,5,308,0,0,2671,2673, - 1,0,0,0,2672,2669,1,0,0,0,2672,2673,1,0,0,0,2673,2681,1,0,0,0,2674, - 2675,7,15,0,0,2675,2679,5,218,0,0,2676,2677,5,190,0,0,2677,2678, - 5,242,0,0,2678,2680,5,264,0,0,2679,2676,1,0,0,0,2679,2680,1,0,0, - 0,2680,2682,1,0,0,0,2681,2674,1,0,0,0,2681,2682,1,0,0,0,2682,2687, - 1,0,0,0,2683,2684,3,166,83,0,2684,2685,5,190,0,0,2685,2686,5,85, - 0,0,2686,2688,1,0,0,0,2687,2683,1,0,0,0,2687,2688,1,0,0,0,2688,2693, - 1,0,0,0,2689,2690,3,166,83,0,2690,2691,5,190,0,0,2691,2692,5,89, - 0,0,2692,2694,1,0,0,0,2693,2689,1,0,0,0,2693,2694,1,0,0,0,2694,2695, - 1,0,0,0,2695,2696,5,2,0,0,2696,2768,1,0,0,0,2697,2698,5,140,0,0, - 2698,2727,5,1,0,0,2699,2704,3,168,84,0,2700,2701,5,3,0,0,2701,2703, - 3,168,84,0,2702,2700,1,0,0,0,2703,2706,1,0,0,0,2704,2702,1,0,0,0, - 2704,2705,1,0,0,0,2705,2713,1,0,0,0,2706,2704,1,0,0,0,2707,2708, - 5,183,0,0,2708,2709,5,190,0,0,2709,2714,5,183,0,0,2710,2711,5,18, - 0,0,2711,2712,5,190,0,0,2712,2714,5,183,0,0,2713,2707,1,0,0,0,2713, - 2710,1,0,0,0,2713,2714,1,0,0,0,2714,2725,1,0,0,0,2715,2716,5,304, - 0,0,2716,2718,5,282,0,0,2717,2719,5,146,0,0,2718,2717,1,0,0,0,2718, - 2719,1,0,0,0,2719,2726,1,0,0,0,2720,2721,5,306,0,0,2721,2723,5,282, - 0,0,2722,2724,5,146,0,0,2723,2722,1,0,0,0,2723,2724,1,0,0,0,2724, - 2726,1,0,0,0,2725,2715,1,0,0,0,2725,2720,1,0,0,0,2725,2726,1,0,0, - 0,2726,2728,1,0,0,0,2727,2699,1,0,0,0,2727,2728,1,0,0,0,2728,2735, - 1,0,0,0,2729,2730,5,231,0,0,2730,2733,3,190,95,0,2731,2732,5,104, - 0,0,2732,2734,3,156,78,0,2733,2731,1,0,0,0,2733,2734,1,0,0,0,2734, - 2736,1,0,0,0,2735,2729,1,0,0,0,2735,2736,1,0,0,0,2736,2737,1,0,0, - 0,2737,2768,5,2,0,0,2738,2739,5,138,0,0,2739,2756,5,1,0,0,2740,2745, - 3,154,77,0,2741,2742,5,3,0,0,2742,2744,3,154,77,0,2743,2741,1,0, - 0,0,2744,2747,1,0,0,0,2745,2743,1,0,0,0,2745,2746,1,0,0,0,2746,2754, - 1,0,0,0,2747,2745,1,0,0,0,2748,2749,5,183,0,0,2749,2750,5,190,0, - 0,2750,2755,5,183,0,0,2751,2752,5,18,0,0,2752,2753,5,190,0,0,2753, - 2755,5,183,0,0,2754,2748,1,0,0,0,2754,2751,1,0,0,0,2754,2755,1,0, - 0,0,2755,2757,1,0,0,0,2756,2740,1,0,0,0,2756,2757,1,0,0,0,2757,2764, - 1,0,0,0,2758,2759,5,231,0,0,2759,2762,3,190,95,0,2760,2761,5,104, - 0,0,2761,2763,3,156,78,0,2762,2760,1,0,0,0,2762,2763,1,0,0,0,2763, - 2765,1,0,0,0,2764,2758,1,0,0,0,2764,2765,1,0,0,0,2765,2766,1,0,0, - 0,2766,2768,5,2,0,0,2767,2314,1,0,0,0,2767,2316,1,0,0,0,2767,2317, - 1,0,0,0,2767,2320,1,0,0,0,2767,2323,1,0,0,0,2767,2324,1,0,0,0,2767, - 2325,1,0,0,0,2767,2326,1,0,0,0,2767,2327,1,0,0,0,2767,2328,1,0,0, - 0,2767,2335,1,0,0,0,2767,2345,1,0,0,0,2767,2357,1,0,0,0,2767,2392, - 1,0,0,0,2767,2410,1,0,0,0,2767,2449,1,0,0,0,2767,2452,1,0,0,0,2767, - 2456,1,0,0,0,2767,2470,1,0,0,0,2767,2474,1,0,0,0,2767,2479,1,0,0, - 0,2767,2492,1,0,0,0,2767,2504,1,0,0,0,2767,2511,1,0,0,0,2767,2518, - 1,0,0,0,2767,2531,1,0,0,0,2767,2532,1,0,0,0,2767,2533,1,0,0,0,2767, - 2539,1,0,0,0,2767,2545,1,0,0,0,2767,2551,1,0,0,0,2767,2557,1,0,0, - 0,2767,2558,1,0,0,0,2767,2559,1,0,0,0,2767,2560,1,0,0,0,2767,2561, - 1,0,0,0,2767,2575,1,0,0,0,2767,2582,1,0,0,0,2767,2593,1,0,0,0,2767, - 2602,1,0,0,0,2767,2609,1,0,0,0,2767,2613,1,0,0,0,2767,2626,1,0,0, - 0,2767,2637,1,0,0,0,2767,2658,1,0,0,0,2767,2697,1,0,0,0,2767,2738, - 1,0,0,0,2768,2779,1,0,0,0,2769,2770,10,24,0,0,2770,2771,5,8,0,0, - 2771,2772,3,148,74,0,2772,2773,5,9,0,0,2773,2778,1,0,0,0,2774,2775, - 10,22,0,0,2775,2776,5,4,0,0,2776,2778,3,302,151,0,2777,2769,1,0, - 0,0,2777,2774,1,0,0,0,2778,2781,1,0,0,0,2779,2777,1,0,0,0,2779,2780, - 1,0,0,0,2780,151,1,0,0,0,2781,2779,1,0,0,0,2782,2783,3,154,77,0, - 2783,2784,5,3,0,0,2784,2787,3,174,87,0,2785,2786,5,28,0,0,2786,2788, - 3,302,151,0,2787,2785,1,0,0,0,2787,2788,1,0,0,0,2788,2798,1,0,0, - 0,2789,2790,5,203,0,0,2790,2795,3,158,79,0,2791,2792,5,3,0,0,2792, - 2794,3,158,79,0,2793,2791,1,0,0,0,2794,2797,1,0,0,0,2795,2793,1, - 0,0,0,2795,2796,1,0,0,0,2796,2799,1,0,0,0,2797,2795,1,0,0,0,2798, - 2789,1,0,0,0,2798,2799,1,0,0,0,2799,153,1,0,0,0,2800,2803,3,142, - 71,0,2801,2802,5,104,0,0,2802,2804,3,156,78,0,2803,2801,1,0,0,0, - 2803,2804,1,0,0,0,2804,155,1,0,0,0,2805,2808,5,137,0,0,2806,2807, - 5,87,0,0,2807,2809,7,20,0,0,2808,2806,1,0,0,0,2808,2809,1,0,0,0, - 2809,157,1,0,0,0,2810,2811,3,154,77,0,2811,2812,5,28,0,0,2812,2813, - 3,302,151,0,2813,159,1,0,0,0,2814,2815,7,21,0,0,2815,161,1,0,0,0, - 2816,2821,5,89,0,0,2817,2821,5,183,0,0,2818,2819,5,70,0,0,2819,2821, - 3,142,71,0,2820,2816,1,0,0,0,2820,2817,1,0,0,0,2820,2818,1,0,0,0, - 2821,163,1,0,0,0,2822,2824,5,306,0,0,2823,2825,5,27,0,0,2824,2823, - 1,0,0,0,2824,2825,1,0,0,0,2825,2834,1,0,0,0,2826,2828,5,304,0,0, - 2827,2829,7,22,0,0,2828,2827,1,0,0,0,2828,2829,1,0,0,0,2829,2831, - 1,0,0,0,2830,2832,5,27,0,0,2831,2830,1,0,0,0,2831,2832,1,0,0,0,2832, - 2834,1,0,0,0,2833,2822,1,0,0,0,2833,2826,1,0,0,0,2834,165,1,0,0, - 0,2835,2842,5,89,0,0,2836,2842,5,183,0,0,2837,2838,5,85,0,0,2838, - 2842,5,27,0,0,2839,2840,5,85,0,0,2840,2842,5,186,0,0,2841,2835,1, - 0,0,0,2841,2836,1,0,0,0,2841,2837,1,0,0,0,2841,2839,1,0,0,0,2842, - 167,1,0,0,0,2843,2845,5,145,0,0,2844,2843,1,0,0,0,2844,2845,1,0, - 0,0,2845,2846,1,0,0,0,2846,2847,3,142,71,0,2847,2848,5,295,0,0,2848, - 2849,3,154,77,0,2849,2855,1,0,0,0,2850,2851,3,142,71,0,2851,2852, - 5,10,0,0,2852,2853,3,154,77,0,2853,2855,1,0,0,0,2854,2844,1,0,0, - 0,2854,2850,1,0,0,0,2855,169,1,0,0,0,2856,2857,7,23,0,0,2857,171, - 1,0,0,0,2858,2859,5,120,0,0,2859,2863,5,185,0,0,2860,2861,5,228, - 0,0,2861,2863,5,185,0,0,2862,2858,1,0,0,0,2862,2860,1,0,0,0,2863, - 173,1,0,0,0,2864,2871,5,326,0,0,2865,2868,5,327,0,0,2866,2867,5, - 277,0,0,2867,2869,5,326,0,0,2868,2866,1,0,0,0,2868,2869,1,0,0,0, - 2869,2871,1,0,0,0,2870,2864,1,0,0,0,2870,2865,1,0,0,0,2871,175,1, - 0,0,0,2872,2873,5,267,0,0,2873,2874,5,311,0,0,2874,2879,3,184,92, - 0,2875,2876,5,267,0,0,2876,2877,5,311,0,0,2877,2879,3,174,87,0,2878, - 2872,1,0,0,0,2878,2875,1,0,0,0,2879,177,1,0,0,0,2880,2881,7,24,0, - 0,2881,179,1,0,0,0,2882,2883,7,25,0,0,2883,181,1,0,0,0,2884,2885, - 7,26,0,0,2885,183,1,0,0,0,2886,2888,5,129,0,0,2887,2889,7,18,0,0, - 2888,2887,1,0,0,0,2888,2889,1,0,0,0,2889,2890,1,0,0,0,2890,2891, - 3,174,87,0,2891,2894,3,186,93,0,2892,2893,5,269,0,0,2893,2895,3, - 186,93,0,2894,2892,1,0,0,0,2894,2895,1,0,0,0,2895,185,1,0,0,0,2896, - 2897,7,27,0,0,2897,187,1,0,0,0,2898,2899,7,28,0,0,2899,189,1,0,0, - 0,2900,2901,6,95,-1,0,2901,2902,5,239,0,0,2902,2903,5,1,0,0,2903, - 2908,3,192,96,0,2904,2905,5,3,0,0,2905,2907,3,192,96,0,2906,2904, - 1,0,0,0,2907,2910,1,0,0,0,2908,2906,1,0,0,0,2908,2909,1,0,0,0,2909, - 2911,1,0,0,0,2910,2908,1,0,0,0,2911,2912,5,2,0,0,2912,2972,1,0,0, - 0,2913,2914,5,129,0,0,2914,2917,3,186,93,0,2915,2916,5,269,0,0,2916, - 2918,3,186,93,0,2917,2915,1,0,0,0,2917,2918,1,0,0,0,2918,2972,1, - 0,0,0,2919,2924,5,268,0,0,2920,2921,5,1,0,0,2921,2922,3,194,97,0, - 2922,2923,5,2,0,0,2923,2925,1,0,0,0,2924,2920,1,0,0,0,2924,2925, - 1,0,0,0,2925,2929,1,0,0,0,2926,2927,7,29,0,0,2927,2928,5,267,0,0, - 2928,2930,5,311,0,0,2929,2926,1,0,0,0,2929,2930,1,0,0,0,2930,2972, - 1,0,0,0,2931,2936,5,267,0,0,2932,2933,5,1,0,0,2933,2934,3,194,97, - 0,2934,2935,5,2,0,0,2935,2937,1,0,0,0,2936,2932,1,0,0,0,2936,2937, - 1,0,0,0,2937,2941,1,0,0,0,2938,2939,7,29,0,0,2939,2940,5,267,0,0, - 2940,2942,5,311,0,0,2941,2938,1,0,0,0,2941,2942,1,0,0,0,2942,2972, - 1,0,0,0,2943,2944,5,82,0,0,2944,2972,5,213,0,0,2945,2946,5,27,0, - 0,2946,2947,5,314,0,0,2947,2948,3,190,95,0,2948,2949,5,316,0,0,2949, - 2972,1,0,0,0,2950,2951,5,162,0,0,2951,2952,5,314,0,0,2952,2953,3, - 190,95,0,2953,2954,5,3,0,0,2954,2955,3,190,95,0,2955,2956,5,316, - 0,0,2956,2972,1,0,0,0,2957,2969,3,302,151,0,2958,2959,5,1,0,0,2959, - 2964,3,194,97,0,2960,2961,5,3,0,0,2961,2963,3,194,97,0,2962,2960, - 1,0,0,0,2963,2966,1,0,0,0,2964,2962,1,0,0,0,2964,2965,1,0,0,0,2965, - 2967,1,0,0,0,2966,2964,1,0,0,0,2967,2968,5,2,0,0,2968,2970,1,0,0, - 0,2969,2958,1,0,0,0,2969,2970,1,0,0,0,2970,2972,1,0,0,0,2971,2900, - 1,0,0,0,2971,2913,1,0,0,0,2971,2919,1,0,0,0,2971,2931,1,0,0,0,2971, - 2943,1,0,0,0,2971,2945,1,0,0,0,2971,2950,1,0,0,0,2971,2957,1,0,0, - 0,2972,2982,1,0,0,0,2973,2974,10,2,0,0,2974,2978,5,27,0,0,2975,2976, - 5,8,0,0,2976,2977,5,329,0,0,2977,2979,5,9,0,0,2978,2975,1,0,0,0, - 2978,2979,1,0,0,0,2979,2981,1,0,0,0,2980,2973,1,0,0,0,2981,2984, - 1,0,0,0,2982,2980,1,0,0,0,2982,2983,1,0,0,0,2983,191,1,0,0,0,2984, - 2982,1,0,0,0,2985,2990,3,190,95,0,2986,2987,3,302,151,0,2987,2988, - 3,190,95,0,2988,2990,1,0,0,0,2989,2985,1,0,0,0,2989,2986,1,0,0,0, - 2990,193,1,0,0,0,2991,2994,5,329,0,0,2992,2994,3,190,95,0,2993,2991, - 1,0,0,0,2993,2992,1,0,0,0,2994,195,1,0,0,0,2995,2996,5,300,0,0,2996, - 2997,3,142,71,0,2997,2998,5,265,0,0,2998,2999,3,142,71,0,2999,197, - 1,0,0,0,3000,3001,5,99,0,0,3001,3002,5,1,0,0,3002,3003,3,54,27,0, - 3003,3004,5,2,0,0,3004,199,1,0,0,0,3005,3006,5,300,0,0,3006,3009, - 5,164,0,0,3007,3008,5,25,0,0,3008,3010,3,142,71,0,3009,3007,1,0, - 0,0,3009,3010,1,0,0,0,3010,3011,1,0,0,0,3011,3012,5,265,0,0,3012, - 3013,5,287,0,0,3013,3014,5,251,0,0,3014,3015,3,302,151,0,3015,3016, - 5,312,0,0,3016,3024,3,142,71,0,3017,3018,5,3,0,0,3018,3019,3,302, - 151,0,3019,3020,5,312,0,0,3020,3021,3,142,71,0,3021,3023,1,0,0,0, - 3022,3017,1,0,0,0,3023,3026,1,0,0,0,3024,3022,1,0,0,0,3024,3025, - 1,0,0,0,3025,3070,1,0,0,0,3026,3024,1,0,0,0,3027,3028,5,300,0,0, - 3028,3031,5,164,0,0,3029,3030,5,25,0,0,3030,3032,3,142,71,0,3031, - 3029,1,0,0,0,3031,3032,1,0,0,0,3032,3033,1,0,0,0,3033,3034,5,265, - 0,0,3034,3070,5,73,0,0,3035,3036,5,300,0,0,3036,3037,5,182,0,0,3037, - 3040,5,164,0,0,3038,3039,5,25,0,0,3039,3041,3,142,71,0,3040,3038, - 1,0,0,0,3040,3041,1,0,0,0,3041,3042,1,0,0,0,3042,3043,5,265,0,0, - 3043,3055,5,127,0,0,3044,3045,5,1,0,0,3045,3050,3,302,151,0,3046, - 3047,5,3,0,0,3047,3049,3,302,151,0,3048,3046,1,0,0,0,3049,3052,1, - 0,0,0,3050,3048,1,0,0,0,3050,3051,1,0,0,0,3051,3053,1,0,0,0,3052, - 3050,1,0,0,0,3053,3054,5,2,0,0,3054,3056,1,0,0,0,3055,3044,1,0,0, - 0,3055,3056,1,0,0,0,3056,3057,1,0,0,0,3057,3058,5,296,0,0,3058,3059, - 5,1,0,0,3059,3064,3,142,71,0,3060,3061,5,3,0,0,3061,3063,3,142,71, - 0,3062,3060,1,0,0,0,3063,3066,1,0,0,0,3064,3062,1,0,0,0,3064,3065, - 1,0,0,0,3065,3067,1,0,0,0,3066,3064,1,0,0,0,3067,3068,5,2,0,0,3068, - 3070,1,0,0,0,3069,3005,1,0,0,0,3069,3027,1,0,0,0,3069,3035,1,0,0, - 0,3070,201,1,0,0,0,3071,3077,5,199,0,0,3072,3078,3,302,151,0,3073, - 3074,5,1,0,0,3074,3075,3,70,35,0,3075,3076,5,2,0,0,3076,3078,1,0, - 0,0,3077,3072,1,0,0,0,3077,3073,1,0,0,0,3078,203,1,0,0,0,3079,3080, - 5,168,0,0,3080,3085,3,96,48,0,3081,3082,5,3,0,0,3082,3084,3,96,48, - 0,3083,3081,1,0,0,0,3084,3087,1,0,0,0,3085,3083,1,0,0,0,3085,3086, - 1,0,0,0,3086,3089,1,0,0,0,3087,3085,1,0,0,0,3088,3079,1,0,0,0,3088, - 3089,1,0,0,0,3089,3090,1,0,0,0,3090,3094,3,206,103,0,3091,3092,5, - 21,0,0,3092,3093,5,163,0,0,3093,3095,3,102,51,0,3094,3091,1,0,0, - 0,3094,3095,1,0,0,0,3095,3097,1,0,0,0,3096,3098,7,13,0,0,3097,3096, - 1,0,0,0,3097,3098,1,0,0,0,3098,3104,1,0,0,0,3099,3100,5,206,0,0, - 3100,3101,5,1,0,0,3101,3102,3,210,105,0,3102,3103,5,2,0,0,3103,3105, - 1,0,0,0,3104,3099,1,0,0,0,3104,3105,1,0,0,0,3105,3115,1,0,0,0,3106, - 3107,5,257,0,0,3107,3112,3,104,52,0,3108,3109,5,3,0,0,3109,3111, - 3,104,52,0,3110,3108,1,0,0,0,3111,3114,1,0,0,0,3112,3110,1,0,0,0, - 3112,3113,1,0,0,0,3113,3116,1,0,0,0,3114,3112,1,0,0,0,3115,3106, - 1,0,0,0,3115,3116,1,0,0,0,3116,3126,1,0,0,0,3117,3118,5,71,0,0,3118, - 3123,3,106,53,0,3119,3120,5,3,0,0,3120,3122,3,106,53,0,3121,3119, - 1,0,0,0,3122,3125,1,0,0,0,3123,3121,1,0,0,0,3123,3124,1,0,0,0,3124, - 3127,1,0,0,0,3125,3123,1,0,0,0,3126,3117,1,0,0,0,3126,3127,1,0,0, - 0,3127,205,1,0,0,0,3128,3129,5,219,0,0,3129,3153,3,208,104,0,3130, - 3131,5,240,0,0,3131,3153,3,208,104,0,3132,3133,5,116,0,0,3133,3153, - 3,208,104,0,3134,3135,5,219,0,0,3135,3136,5,34,0,0,3136,3137,3,208, - 104,0,3137,3138,5,25,0,0,3138,3139,3,208,104,0,3139,3153,1,0,0,0, - 3140,3141,5,240,0,0,3141,3142,5,34,0,0,3142,3143,3,208,104,0,3143, - 3144,5,25,0,0,3144,3145,3,208,104,0,3145,3153,1,0,0,0,3146,3147, - 5,116,0,0,3147,3148,5,34,0,0,3148,3149,3,208,104,0,3149,3150,5,25, - 0,0,3150,3151,3,208,104,0,3151,3153,1,0,0,0,3152,3128,1,0,0,0,3152, - 3130,1,0,0,0,3152,3132,1,0,0,0,3152,3134,1,0,0,0,3152,3140,1,0,0, - 0,3152,3146,1,0,0,0,3153,207,1,0,0,0,3154,3155,5,278,0,0,3155,3164, - 5,212,0,0,3156,3157,5,278,0,0,3157,3164,5,102,0,0,3158,3159,5,56, - 0,0,3159,3164,5,239,0,0,3160,3161,3,142,71,0,3161,3162,7,30,0,0, - 3162,3164,1,0,0,0,3163,3154,1,0,0,0,3163,3156,1,0,0,0,3163,3158, - 1,0,0,0,3163,3160,1,0,0,0,3164,209,1,0,0,0,3165,3166,6,105,-1,0, - 3166,3168,3,212,106,0,3167,3169,3,214,107,0,3168,3167,1,0,0,0,3168, - 3169,1,0,0,0,3169,3177,1,0,0,0,3170,3171,10,2,0,0,3171,3176,3,210, - 105,3,3172,3173,10,1,0,0,3173,3174,5,11,0,0,3174,3176,3,210,105, - 2,3175,3170,1,0,0,0,3175,3172,1,0,0,0,3176,3179,1,0,0,0,3177,3175, - 1,0,0,0,3177,3178,1,0,0,0,3178,211,1,0,0,0,3179,3177,1,0,0,0,3180, - 3206,3,302,151,0,3181,3182,5,1,0,0,3182,3206,5,2,0,0,3183,3184,5, - 209,0,0,3184,3185,5,1,0,0,3185,3190,3,210,105,0,3186,3187,5,3,0, - 0,3187,3189,3,210,105,0,3188,3186,1,0,0,0,3189,3192,1,0,0,0,3190, - 3188,1,0,0,0,3190,3191,1,0,0,0,3191,3193,1,0,0,0,3192,3190,1,0,0, - 0,3193,3194,5,2,0,0,3194,3206,1,0,0,0,3195,3196,5,1,0,0,3196,3197, - 3,210,105,0,3197,3198,5,2,0,0,3198,3206,1,0,0,0,3199,3206,5,12,0, - 0,3200,3206,5,13,0,0,3201,3202,5,14,0,0,3202,3203,3,210,105,0,3203, - 3204,5,15,0,0,3204,3206,1,0,0,0,3205,3180,1,0,0,0,3205,3181,1,0, - 0,0,3205,3183,1,0,0,0,3205,3195,1,0,0,0,3205,3199,1,0,0,0,3205,3200, - 1,0,0,0,3205,3201,1,0,0,0,3206,213,1,0,0,0,3207,3209,5,320,0,0,3208, - 3210,5,324,0,0,3209,3208,1,0,0,0,3209,3210,1,0,0,0,3210,3238,1,0, - 0,0,3211,3213,5,318,0,0,3212,3214,5,324,0,0,3213,3212,1,0,0,0,3213, - 3214,1,0,0,0,3214,3238,1,0,0,0,3215,3217,5,324,0,0,3216,3218,5,324, - 0,0,3217,3216,1,0,0,0,3217,3218,1,0,0,0,3218,3238,1,0,0,0,3219,3220, - 5,16,0,0,3220,3221,5,329,0,0,3221,3223,5,17,0,0,3222,3224,5,324, - 0,0,3223,3222,1,0,0,0,3223,3224,1,0,0,0,3224,3238,1,0,0,0,3225,3227, - 5,16,0,0,3226,3228,5,329,0,0,3227,3226,1,0,0,0,3227,3228,1,0,0,0, - 3228,3229,1,0,0,0,3229,3231,5,3,0,0,3230,3232,5,329,0,0,3231,3230, - 1,0,0,0,3231,3232,1,0,0,0,3232,3233,1,0,0,0,3233,3235,5,17,0,0,3234, - 3236,5,324,0,0,3235,3234,1,0,0,0,3235,3236,1,0,0,0,3236,3238,1,0, - 0,0,3237,3207,1,0,0,0,3237,3211,1,0,0,0,3237,3215,1,0,0,0,3237,3219, - 1,0,0,0,3237,3225,1,0,0,0,3238,215,1,0,0,0,3239,3240,3,302,151,0, - 3240,3241,5,312,0,0,3241,3242,3,142,71,0,3242,217,1,0,0,0,3243,3244, - 5,104,0,0,3244,3248,7,31,0,0,3245,3246,5,276,0,0,3246,3248,7,32, - 0,0,3247,3243,1,0,0,0,3247,3245,1,0,0,0,3248,219,1,0,0,0,3249,3250, - 5,134,0,0,3250,3251,5,153,0,0,3251,3255,3,222,111,0,3252,3253,5, - 220,0,0,3253,3255,7,33,0,0,3254,3249,1,0,0,0,3254,3252,1,0,0,0,3255, - 221,1,0,0,0,3256,3257,5,220,0,0,3257,3264,5,279,0,0,3258,3259,5, - 220,0,0,3259,3264,5,48,0,0,3260,3261,5,225,0,0,3261,3264,5,220,0, - 0,3262,3264,5,249,0,0,3263,3256,1,0,0,0,3263,3258,1,0,0,0,3263,3260, - 1,0,0,0,3263,3262,1,0,0,0,3264,223,1,0,0,0,3265,3271,3,142,71,0, - 3266,3267,3,302,151,0,3267,3268,5,6,0,0,3268,3269,3,142,71,0,3269, - 3271,1,0,0,0,3270,3265,1,0,0,0,3270,3266,1,0,0,0,3271,225,1,0,0, - 0,3272,3273,3,302,151,0,3273,3274,5,4,0,0,3274,3275,3,302,151,0, - 3275,3278,1,0,0,0,3276,3278,3,302,151,0,3277,3272,1,0,0,0,3277,3276, - 1,0,0,0,3278,227,1,0,0,0,3279,3284,3,226,113,0,3280,3281,5,3,0,0, - 3281,3283,3,226,113,0,3282,3280,1,0,0,0,3283,3286,1,0,0,0,3284,3282, - 1,0,0,0,3284,3285,1,0,0,0,3285,229,1,0,0,0,3286,3284,1,0,0,0,3287, - 3288,5,107,0,0,3288,3289,3,232,116,0,3289,3293,3,238,119,0,3290, - 3292,3,240,120,0,3291,3290,1,0,0,0,3292,3295,1,0,0,0,3293,3291,1, - 0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0,0,3295,3293,1,0,0,0,3296, - 3297,3,242,121,0,3297,231,1,0,0,0,3298,3299,3,280,140,0,3299,3308, - 5,1,0,0,3300,3305,3,236,118,0,3301,3302,5,3,0,0,3302,3304,3,236, - 118,0,3303,3301,1,0,0,0,3304,3307,1,0,0,0,3305,3303,1,0,0,0,3305, - 3306,1,0,0,0,3306,3309,1,0,0,0,3307,3305,1,0,0,0,3308,3300,1,0,0, - 0,3308,3309,1,0,0,0,3309,3310,1,0,0,0,3310,3311,5,2,0,0,3311,233, - 1,0,0,0,3312,3313,3,278,139,0,3313,3322,5,1,0,0,3314,3319,3,236, - 118,0,3315,3316,5,3,0,0,3316,3318,3,236,118,0,3317,3315,1,0,0,0, - 3318,3321,1,0,0,0,3319,3317,1,0,0,0,3319,3320,1,0,0,0,3320,3323, - 1,0,0,0,3321,3319,1,0,0,0,3322,3314,1,0,0,0,3322,3323,1,0,0,0,3323, - 3324,1,0,0,0,3324,3325,5,2,0,0,3325,235,1,0,0,0,3326,3328,3,302, - 151,0,3327,3326,1,0,0,0,3327,3328,1,0,0,0,3328,3329,1,0,0,0,3329, - 3330,3,190,95,0,3330,237,1,0,0,0,3331,3332,5,232,0,0,3332,3333,3, - 190,95,0,3333,239,1,0,0,0,3334,3335,5,147,0,0,3335,3354,3,302,151, - 0,3336,3338,5,182,0,0,3337,3336,1,0,0,0,3337,3338,1,0,0,0,3338,3339, - 1,0,0,0,3339,3354,5,78,0,0,3340,3341,5,232,0,0,3341,3342,5,183,0, - 0,3342,3343,5,190,0,0,3343,3344,5,183,0,0,3344,3354,5,126,0,0,3345, - 3346,5,38,0,0,3346,3347,5,190,0,0,3347,3348,5,183,0,0,3348,3354, - 5,126,0,0,3349,3350,5,246,0,0,3350,3354,7,1,0,0,3351,3352,5,46,0, - 0,3352,3354,3,174,87,0,3353,3334,1,0,0,0,3353,3337,1,0,0,0,3353, - 3340,1,0,0,0,3353,3345,1,0,0,0,3353,3349,1,0,0,0,3353,3351,1,0,0, - 0,3354,241,1,0,0,0,3355,3356,5,230,0,0,3356,3455,3,148,74,0,3357, - 3358,5,251,0,0,3358,3359,3,302,151,0,3359,3360,5,312,0,0,3360,3361, - 3,142,71,0,3361,3455,1,0,0,0,3362,3363,5,40,0,0,3363,3365,3,142, - 71,0,3364,3366,3,244,122,0,3365,3364,1,0,0,0,3366,3367,1,0,0,0,3367, - 3365,1,0,0,0,3367,3368,1,0,0,0,3368,3370,1,0,0,0,3369,3371,3,248, - 124,0,3370,3369,1,0,0,0,3370,3371,1,0,0,0,3371,3372,1,0,0,0,3372, - 3373,5,88,0,0,3373,3374,5,40,0,0,3374,3455,1,0,0,0,3375,3377,5,40, - 0,0,3376,3378,3,244,122,0,3377,3376,1,0,0,0,3378,3379,1,0,0,0,3379, - 3377,1,0,0,0,3379,3380,1,0,0,0,3380,3382,1,0,0,0,3381,3383,3,248, - 124,0,3382,3381,1,0,0,0,3382,3383,1,0,0,0,3383,3384,1,0,0,0,3384, - 3385,5,88,0,0,3385,3386,5,40,0,0,3386,3455,1,0,0,0,3387,3388,5,119, - 0,0,3388,3389,3,142,71,0,3389,3390,5,265,0,0,3390,3394,3,252,126, - 0,3391,3393,3,246,123,0,3392,3391,1,0,0,0,3393,3396,1,0,0,0,3394, - 3392,1,0,0,0,3394,3395,1,0,0,0,3395,3398,1,0,0,0,3396,3394,1,0,0, - 0,3397,3399,3,248,124,0,3398,3397,1,0,0,0,3398,3399,1,0,0,0,3399, - 3400,1,0,0,0,3400,3401,5,88,0,0,3401,3402,5,119,0,0,3402,3455,1, - 0,0,0,3403,3404,5,135,0,0,3404,3455,3,302,151,0,3405,3406,5,151, - 0,0,3406,3455,3,302,151,0,3407,3413,5,32,0,0,3408,3409,3,250,125, - 0,3409,3410,5,325,0,0,3410,3412,1,0,0,0,3411,3408,1,0,0,0,3412,3415, - 1,0,0,0,3413,3411,1,0,0,0,3413,3414,1,0,0,0,3414,3417,1,0,0,0,3415, - 3413,1,0,0,0,3416,3418,3,252,126,0,3417,3416,1,0,0,0,3417,3418,1, - 0,0,0,3418,3419,1,0,0,0,3419,3455,5,88,0,0,3420,3421,3,302,151,0, - 3421,3422,5,10,0,0,3422,3424,1,0,0,0,3423,3420,1,0,0,0,3423,3424, - 1,0,0,0,3424,3425,1,0,0,0,3425,3426,5,161,0,0,3426,3427,3,252,126, - 0,3427,3428,5,88,0,0,3428,3429,5,161,0,0,3429,3455,1,0,0,0,3430, - 3431,3,302,151,0,3431,3432,5,10,0,0,3432,3434,1,0,0,0,3433,3430, - 1,0,0,0,3433,3434,1,0,0,0,3434,3435,1,0,0,0,3435,3436,5,302,0,0, - 3436,3437,3,142,71,0,3437,3438,5,81,0,0,3438,3439,3,252,126,0,3439, - 3440,5,88,0,0,3440,3441,5,302,0,0,3441,3455,1,0,0,0,3442,3443,3, - 302,151,0,3443,3444,5,10,0,0,3444,3446,1,0,0,0,3445,3442,1,0,0,0, - 3445,3446,1,0,0,0,3446,3447,1,0,0,0,3447,3448,5,224,0,0,3448,3449, - 3,252,126,0,3449,3450,5,286,0,0,3450,3451,3,142,71,0,3451,3452,5, - 88,0,0,3452,3453,5,224,0,0,3453,3455,1,0,0,0,3454,3355,1,0,0,0,3454, - 3357,1,0,0,0,3454,3362,1,0,0,0,3454,3375,1,0,0,0,3454,3387,1,0,0, - 0,3454,3403,1,0,0,0,3454,3405,1,0,0,0,3454,3407,1,0,0,0,3454,3423, - 1,0,0,0,3454,3433,1,0,0,0,3454,3445,1,0,0,0,3455,243,1,0,0,0,3456, - 3457,5,300,0,0,3457,3458,3,142,71,0,3458,3459,5,265,0,0,3459,3460, - 3,252,126,0,3460,245,1,0,0,0,3461,3462,5,86,0,0,3462,3463,3,142, - 71,0,3463,3464,5,265,0,0,3464,3465,3,252,126,0,3465,247,1,0,0,0, - 3466,3467,5,84,0,0,3467,3468,3,252,126,0,3468,249,1,0,0,0,3469,3470, - 5,69,0,0,3470,3475,3,302,151,0,3471,3472,5,3,0,0,3472,3474,3,302, - 151,0,3473,3471,1,0,0,0,3474,3477,1,0,0,0,3475,3473,1,0,0,0,3475, - 3476,1,0,0,0,3476,3478,1,0,0,0,3477,3475,1,0,0,0,3478,3481,3,190, - 95,0,3479,3480,5,70,0,0,3480,3482,3,148,74,0,3481,3479,1,0,0,0,3481, - 3482,1,0,0,0,3482,251,1,0,0,0,3483,3484,3,242,121,0,3484,3485,5, - 325,0,0,3485,3487,1,0,0,0,3486,3483,1,0,0,0,3487,3488,1,0,0,0,3488, - 3486,1,0,0,0,3488,3489,1,0,0,0,3489,253,1,0,0,0,3490,3497,5,53,0, - 0,3491,3497,5,248,0,0,3492,3497,5,73,0,0,3493,3497,5,127,0,0,3494, - 3497,5,287,0,0,3495,3497,3,302,151,0,3496,3490,1,0,0,0,3496,3491, - 1,0,0,0,3496,3492,1,0,0,0,3496,3493,1,0,0,0,3496,3494,1,0,0,0,3496, - 3495,1,0,0,0,3497,255,1,0,0,0,3498,3502,5,260,0,0,3499,3502,5,243, - 0,0,3500,3502,3,302,151,0,3501,3498,1,0,0,0,3501,3499,1,0,0,0,3501, - 3500,1,0,0,0,3502,257,1,0,0,0,3503,3505,3,256,128,0,3504,3503,1, - 0,0,0,3504,3505,1,0,0,0,3505,3506,1,0,0,0,3506,3507,3,288,144,0, - 3507,259,1,0,0,0,3508,3511,3,262,131,0,3509,3511,3,266,133,0,3510, - 3508,1,0,0,0,3510,3509,1,0,0,0,3511,261,1,0,0,0,3512,3524,3,302, - 151,0,3513,3514,3,302,151,0,3514,3515,5,4,0,0,3515,3516,3,302,151, - 0,3516,3524,1,0,0,0,3517,3518,3,302,151,0,3518,3519,5,4,0,0,3519, - 3520,3,302,151,0,3520,3521,5,4,0,0,3521,3522,3,302,151,0,3522,3524, - 1,0,0,0,3523,3512,1,0,0,0,3523,3513,1,0,0,0,3523,3517,1,0,0,0,3524, - 263,1,0,0,0,3525,3537,3,302,151,0,3526,3527,3,302,151,0,3527,3528, - 5,4,0,0,3528,3529,3,302,151,0,3529,3537,1,0,0,0,3530,3531,3,302, - 151,0,3531,3532,5,4,0,0,3532,3533,3,302,151,0,3533,3534,5,4,0,0, - 3534,3535,3,302,151,0,3535,3537,1,0,0,0,3536,3525,1,0,0,0,3536,3526, - 1,0,0,0,3536,3530,1,0,0,0,3537,265,1,0,0,0,3538,3550,3,302,151,0, - 3539,3540,3,302,151,0,3540,3541,5,4,0,0,3541,3542,3,302,151,0,3542, - 3550,1,0,0,0,3543,3544,3,302,151,0,3544,3545,5,4,0,0,3545,3546,3, - 302,151,0,3546,3547,5,4,0,0,3547,3548,3,302,151,0,3548,3550,1,0, - 0,0,3549,3538,1,0,0,0,3549,3539,1,0,0,0,3549,3543,1,0,0,0,3550,267, - 1,0,0,0,3551,3563,3,302,151,0,3552,3553,3,302,151,0,3553,3554,5, - 4,0,0,3554,3555,3,302,151,0,3555,3563,1,0,0,0,3556,3557,3,302,151, - 0,3557,3558,5,4,0,0,3558,3559,3,302,151,0,3559,3560,5,4,0,0,3560, - 3561,3,302,151,0,3561,3563,1,0,0,0,3562,3551,1,0,0,0,3562,3552,1, - 0,0,0,3562,3556,1,0,0,0,3563,269,1,0,0,0,3564,3570,3,302,151,0,3565, - 3566,3,302,151,0,3566,3567,5,4,0,0,3567,3568,3,302,151,0,3568,3570, - 1,0,0,0,3569,3564,1,0,0,0,3569,3565,1,0,0,0,3570,271,1,0,0,0,3571, - 3577,3,302,151,0,3572,3573,3,302,151,0,3573,3574,5,4,0,0,3574,3575, - 3,302,151,0,3575,3577,1,0,0,0,3576,3571,1,0,0,0,3576,3572,1,0,0, - 0,3577,273,1,0,0,0,3578,3579,3,302,151,0,3579,275,1,0,0,0,3580,3581, - 3,302,151,0,3581,277,1,0,0,0,3582,3583,3,288,144,0,3583,279,1,0, - 0,0,3584,3585,3,288,144,0,3585,281,1,0,0,0,3586,3589,3,288,144,0, - 3587,3589,4,141,14,0,3588,3586,1,0,0,0,3588,3587,1,0,0,0,3589,283, - 1,0,0,0,3590,3591,3,288,144,0,3591,285,1,0,0,0,3592,3593,3,302,151, - 0,3593,287,1,0,0,0,3594,3599,3,302,151,0,3595,3596,5,4,0,0,3596, - 3598,3,302,151,0,3597,3595,1,0,0,0,3598,3601,1,0,0,0,3599,3597,1, - 0,0,0,3599,3600,1,0,0,0,3600,289,1,0,0,0,3601,3599,1,0,0,0,3602, - 3603,5,103,0,0,3603,3604,3,292,146,0,3604,3605,5,28,0,0,3605,3606, - 5,187,0,0,3606,3607,3,148,74,0,3607,291,1,0,0,0,3608,3609,7,34,0, - 0,3609,293,1,0,0,0,3610,3614,3,296,148,0,3611,3614,5,64,0,0,3612, - 3614,5,60,0,0,3613,3610,1,0,0,0,3613,3611,1,0,0,0,3613,3612,1,0, - 0,0,3614,295,1,0,0,0,3615,3621,3,302,151,0,3616,3617,5,289,0,0,3617, - 3621,3,302,151,0,3618,3619,5,235,0,0,3619,3621,3,302,151,0,3620, - 3615,1,0,0,0,3620,3616,1,0,0,0,3620,3618,1,0,0,0,3621,297,1,0,0, - 0,3622,3627,3,302,151,0,3623,3624,5,3,0,0,3624,3626,3,302,151,0, - 3625,3623,1,0,0,0,3626,3629,1,0,0,0,3627,3625,1,0,0,0,3627,3628, - 1,0,0,0,3628,299,1,0,0,0,3629,3627,1,0,0,0,3630,3638,5,53,0,0,3631, - 3638,5,248,0,0,3632,3638,5,73,0,0,3633,3638,5,127,0,0,3634,3638, - 5,287,0,0,3635,3638,5,93,0,0,3636,3638,3,302,151,0,3637,3630,1,0, - 0,0,3637,3631,1,0,0,0,3637,3632,1,0,0,0,3637,3633,1,0,0,0,3637,3634, - 1,0,0,0,3637,3635,1,0,0,0,3637,3636,1,0,0,0,3638,301,1,0,0,0,3639, - 3645,5,332,0,0,3640,3645,5,334,0,0,3641,3645,3,308,154,0,3642,3645, - 5,335,0,0,3643,3645,5,333,0,0,3644,3639,1,0,0,0,3644,3640,1,0,0, - 0,3644,3641,1,0,0,0,3644,3642,1,0,0,0,3644,3643,1,0,0,0,3645,303, - 1,0,0,0,3646,3648,5,319,0,0,3647,3646,1,0,0,0,3647,3648,1,0,0,0, - 3648,3649,1,0,0,0,3649,3659,5,330,0,0,3650,3652,5,319,0,0,3651,3650, - 1,0,0,0,3651,3652,1,0,0,0,3652,3653,1,0,0,0,3653,3659,5,331,0,0, - 3654,3656,5,319,0,0,3655,3654,1,0,0,0,3655,3656,1,0,0,0,3656,3657, - 1,0,0,0,3657,3659,5,329,0,0,3658,3647,1,0,0,0,3658,3651,1,0,0,0, - 3658,3655,1,0,0,0,3659,305,1,0,0,0,3660,3663,3,302,151,0,3661,3663, - 3,174,87,0,3662,3660,1,0,0,0,3662,3661,1,0,0,0,3663,307,1,0,0,0, - 3664,3665,7,35,0,0,3665,309,1,0,0,0,476,313,322,326,330,334,338, - 351,358,362,366,372,376,383,388,392,398,402,421,427,431,435,439, - 447,451,454,459,465,474,480,484,490,497,505,517,526,535,541,552, - 560,568,575,585,592,600,615,650,653,656,659,665,670,677,683,687, - 691,699,705,709,713,727,735,754,779,782,789,796,805,809,816,824, - 833,839,844,848,856,861,870,876,883,892,898,902,908,915,920,933, - 938,950,954,960,969,974,980,1008,1014,1016,1022,1028,1030,1038,1040, - 1050,1052,1067,1072,1079,1089,1095,1097,1105,1107,1132,1135,1139, - 1143,1161,1164,1175,1178,1194,1204,1208,1214,1217,1226,1238,1241, - 1251,1255,1261,1268,1273,1279,1283,1287,1293,1304,1313,1323,1326, - 1331,1333,1340,1346,1348,1352,1362,1368,1371,1373,1385,1392,1396, - 1399,1403,1407,1414,1423,1426,1429,1434,1437,1445,1448,1457,1464, - 1472,1483,1486,1496,1499,1510,1515,1523,1526,1530,1534,1543,1548, - 1557,1560,1563,1567,1578,1581,1584,1591,1594,1613,1617,1621,1625, - 1629,1633,1635,1646,1651,1660,1669,1672,1678,1686,1695,1698,1706, - 1709,1712,1717,1720,1732,1735,1743,1748,1752,1754,1756,1771,1773, - 1784,1805,1815,1826,1830,1832,1840,1851,1862,1869,1882,1888,1914, - 1929,1934,1938,1948,1954,1960,1968,1973,1980,1982,1988,1994,1998, - 2003,2012,2017,2031,2041,2044,2053,2058,2063,2065,2074,2077,2085, - 2088,2095,2100,2107,2111,2113,2121,2131,2137,2139,2146,2150,2152, - 2159,2163,2165,2167,2176,2187,2191,2201,2211,2215,2223,2225,2238, - 2246,2255,2261,2269,2275,2279,2284,2289,2295,2309,2311,2341,2352, - 2360,2365,2370,2383,2389,2392,2399,2404,2407,2410,2415,2422,2425, - 2434,2437,2441,2444,2447,2462,2465,2484,2488,2496,2500,2525,2528, - 2537,2543,2549,2555,2564,2567,2570,2589,2598,2620,2623,2633,2642, - 2648,2654,2665,2667,2672,2679,2681,2687,2693,2704,2713,2718,2723, - 2725,2727,2733,2735,2745,2754,2756,2762,2764,2767,2777,2779,2787, - 2795,2798,2803,2808,2820,2824,2828,2831,2833,2841,2844,2854,2862, - 2868,2870,2878,2888,2894,2908,2917,2924,2929,2936,2941,2964,2969, - 2971,2978,2982,2989,2993,3009,3024,3031,3040,3050,3055,3064,3069, - 3077,3085,3088,3094,3097,3104,3112,3115,3123,3126,3152,3163,3168, - 3175,3177,3190,3205,3209,3213,3217,3223,3227,3231,3235,3237,3247, - 3254,3263,3270,3277,3284,3293,3305,3308,3319,3322,3327,3337,3353, - 3367,3370,3379,3382,3394,3398,3413,3417,3423,3433,3445,3454,3475, - 3481,3488,3496,3501,3504,3510,3523,3536,3549,3562,3569,3576,3588, - 3599,3613,3620,3627,3637,3644,3647,3651,3655,3658,3662 + 1172,8,8,10,8,12,8,1175,9,8,3,8,1177,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,5,8,1186,8,8,10,8,12,8,1189,9,8,3,8,1191,8,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1207,8,8,1,8,1,8,1,8, + 1,8,1,8,1,8,5,8,1215,8,8,10,8,12,8,1218,9,8,1,8,3,8,1221,8,8,1,8, + 1,8,1,8,1,8,3,8,1227,8,8,1,8,3,8,1230,8,8,1,8,1,8,1,8,1,8,1,8,4, + 8,1237,8,8,11,8,12,8,1238,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,3,8,1251,8,8,1,9,3,9,1254,8,9,1,9,1,9,1,10,1,10,1,10,1,10,5,10, + 1262,8,10,10,10,12,10,1265,9,10,1,11,3,11,1268,8,11,1,11,1,11,1, + 12,1,12,3,12,1274,8,12,1,12,1,12,1,12,5,12,1279,8,12,10,12,12,12, + 1282,9,12,1,13,1,13,3,13,1286,8,13,1,14,1,14,1,14,1,14,3,14,1292, + 8,14,1,14,1,14,3,14,1296,8,14,1,14,1,14,3,14,1300,8,14,1,15,1,15, + 1,15,1,15,3,15,1306,8,15,1,16,1,16,1,16,1,16,1,17,1,17,1,17,5,17, + 1315,8,17,10,17,12,17,1318,9,17,1,18,1,18,1,18,1,18,1,19,1,19,3, + 19,1326,8,19,1,20,1,20,1,20,1,20,1,20,1,20,5,20,1334,8,20,10,20, + 12,20,1337,9,20,3,20,1339,8,20,1,20,1,20,1,20,3,20,1344,8,20,3,20, + 1346,8,20,1,20,1,20,1,20,1,20,1,20,3,20,1353,8,20,1,20,1,20,1,20, + 1,20,3,20,1359,8,20,3,20,1361,8,20,1,21,1,21,3,21,1365,8,21,1,22, + 1,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,1375,8,23,1,23,1,23,1,23, + 1,23,3,23,1381,8,23,1,23,5,23,1384,8,23,10,23,12,23,1387,9,23,1, + 24,1,24,1,24,1,24,1,24,1,24,1,24,5,24,1396,8,24,10,24,12,24,1399, + 9,24,1,24,1,24,1,24,1,24,3,24,1405,8,24,1,25,1,25,3,25,1409,8,25, + 1,25,3,25,1412,8,25,1,25,1,25,3,25,1416,8,25,1,26,1,26,3,26,1420, + 8,26,1,26,1,26,1,26,1,26,1,26,5,26,1427,8,26,10,26,12,26,1430,9, + 26,3,26,1432,8,26,1,26,3,26,1435,8,26,1,26,1,26,1,26,3,26,1440,8, + 26,1,26,3,26,1443,8,26,1,26,1,26,1,26,1,26,5,26,1449,8,26,10,26, + 12,26,1452,9,26,3,26,1454,8,26,1,27,1,27,1,27,1,28,1,28,1,28,1,29, + 1,29,1,29,5,29,1465,8,29,10,29,12,29,1468,9,29,1,30,3,30,1471,8, + 30,1,30,1,30,1,30,5,30,1476,8,30,10,30,12,30,1479,9,30,1,31,1,31, + 1,31,5,31,1484,8,31,10,31,12,31,1487,9,31,1,32,1,32,1,32,1,32,1, + 32,1,32,5,32,1495,8,32,10,32,12,32,1498,9,32,3,32,1500,8,32,1,32, + 1,32,1,32,1,32,1,32,1,32,5,32,1508,8,32,10,32,12,32,1511,9,32,3, + 32,1513,8,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,5,32,1522,8,32,10, + 32,12,32,1525,9,32,1,32,1,32,3,32,1529,8,32,1,33,1,33,1,33,1,33, + 5,33,1535,8,33,10,33,12,33,1538,9,33,3,33,1540,8,33,1,33,1,33,3, + 33,1544,8,33,1,34,1,34,3,34,1548,8,34,1,35,1,35,1,35,1,35,1,35,1, + 35,1,36,3,36,1557,8,36,1,36,1,36,1,36,3,36,1562,8,36,1,36,1,36,1, + 36,1,36,1,36,5,36,1569,8,36,10,36,12,36,1572,9,36,3,36,1574,8,36, + 1,36,3,36,1577,8,36,1,37,1,37,3,37,1581,8,37,1,37,1,37,1,37,1,37, + 1,37,1,38,1,38,1,39,1,39,3,39,1592,8,39,1,39,3,39,1595,8,39,1,39, + 3,39,1598,8,39,1,39,1,39,1,39,3,39,1603,8,39,1,39,3,39,1606,8,39, + 1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,44, + 1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44, + 1,44,3,44,1635,8,44,5,44,1637,8,44,10,44,12,44,1640,9,44,1,45,3, + 45,1643,8,45,1,45,1,45,3,45,1647,8,45,1,45,1,45,3,45,1651,8,45,1, + 45,1,45,3,45,1655,8,45,3,45,1657,8,45,1,46,1,46,1,46,1,46,1,46,1, + 46,1,46,5,46,1666,8,46,10,46,12,46,1669,9,46,1,46,1,46,3,46,1673, + 8,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1682,8,47,1,48,1,48, + 1,49,1,49,1,50,1,50,1,50,3,50,1691,8,50,1,50,3,50,1694,8,50,1,51, + 1,51,1,51,1,51,3,51,1700,8,51,1,52,1,52,1,52,1,52,1,52,1,52,3,52, + 1708,8,52,1,52,1,52,1,52,1,52,1,52,5,52,1715,8,52,10,52,12,52,1718, + 9,52,3,52,1720,8,52,1,52,1,52,1,52,1,52,5,52,1726,8,52,10,52,12, + 52,1729,9,52,3,52,1731,8,52,1,52,3,52,1734,8,52,1,52,1,52,1,52,3, + 52,1739,8,52,1,52,3,52,1742,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1, + 52,1,52,5,52,1752,8,52,10,52,12,52,1755,9,52,3,52,1757,8,52,1,52, + 1,52,1,52,1,52,5,52,1763,8,52,10,52,12,52,1766,9,52,1,52,1,52,3, + 52,1770,8,52,1,52,1,52,3,52,1774,8,52,3,52,1776,8,52,3,52,1778,8, + 52,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1, + 54,3,54,1793,8,54,3,54,1795,8,54,1,55,1,55,1,55,1,55,1,55,1,55,1, + 55,1,55,1,55,3,55,1806,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1827, + 8,56,1,57,1,57,1,57,1,57,1,57,1,57,5,57,1835,8,57,10,57,12,57,1838, + 9,57,1,57,1,57,1,58,1,58,1,58,1,58,1,59,1,59,3,59,1848,8,59,1,59, + 1,59,3,59,1852,8,59,3,59,1854,8,59,1,60,1,60,1,60,1,60,5,60,1860, + 8,60,10,60,12,60,1863,9,60,1,60,1,60,1,61,1,61,1,61,1,61,5,61,1871, + 8,61,10,61,12,61,1874,9,61,1,61,1,61,1,62,1,62,1,62,1,62,5,62,1882, + 8,62,10,62,12,62,1885,9,62,1,62,1,62,1,63,1,63,3,63,1891,8,63,1, + 63,1,63,1,63,1,63,1,63,3,63,1898,8,63,1,64,1,64,1,64,1,64,1,64,1, + 64,1,64,1,64,1,64,5,64,1909,8,64,10,64,12,64,1912,9,64,1,64,1,64, + 1,64,3,64,1917,8,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64, + 1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,5,64,1937,8,64,10,64, + 12,64,1940,9,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64, + 1,64,1,64,3,64,1954,8,64,1,64,1,64,1,64,3,64,1959,8,64,1,64,1,64, + 3,64,1963,8,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1973, + 8,65,1,65,1,65,1,65,1,65,3,65,1979,8,65,1,65,1,65,1,65,1,65,3,65, + 1985,8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1993,8,65,1,65,1,65, + 1,65,3,65,1998,8,65,1,65,1,65,1,65,1,65,1,65,3,65,2005,8,65,3,65, + 2007,8,65,1,65,1,65,1,65,1,65,3,65,2013,8,65,1,65,1,65,1,65,1,65, + 3,65,2019,8,65,1,65,1,65,3,65,2023,8,65,1,65,1,65,1,65,3,65,2028, + 8,65,1,65,1,65,1,65,1,65,1,65,5,65,2035,8,65,10,65,12,65,2038,9, + 65,1,65,1,65,3,65,2042,8,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1, + 66,1,66,1,66,5,66,2054,8,66,10,66,12,66,2057,9,66,1,66,1,66,1,66, + 1,66,1,66,5,66,2064,8,66,10,66,12,66,2067,9,66,3,66,2069,8,66,1, + 67,1,67,1,68,1,68,1,68,1,68,1,68,3,68,2078,8,68,1,69,1,69,1,69,3, + 69,2083,8,69,1,69,1,69,1,69,3,69,2088,8,69,3,69,2090,8,69,1,70,1, + 70,1,70,1,70,1,70,5,70,2097,8,70,10,70,12,70,2100,9,70,3,70,2102, + 8,70,1,70,1,70,1,70,1,70,5,70,2108,8,70,10,70,12,70,2111,9,70,3, + 70,2113,8,70,1,70,1,70,1,71,1,71,1,71,3,71,2120,8,71,1,71,1,71,1, + 71,3,71,2125,8,71,1,72,1,72,1,72,1,72,1,72,3,72,2132,8,72,1,72,1, + 72,3,72,2136,8,72,3,72,2138,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3, + 72,2146,8,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2154,8,72,10,72, + 12,72,2157,9,72,1,72,1,72,1,72,3,72,2162,8,72,3,72,2164,8,72,1,73, + 1,73,1,73,1,73,1,73,3,73,2171,8,73,1,73,1,73,3,73,2175,8,73,3,73, + 2177,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2184,8,73,1,73,1,73,3,73, + 2188,8,73,3,73,2190,8,73,3,73,2192,8,73,1,74,1,74,1,74,1,74,1,74, + 5,74,2199,8,74,10,74,12,74,2202,9,74,1,74,1,74,1,74,1,74,1,74,1, + 74,1,74,1,74,3,74,2212,8,74,1,75,1,75,3,75,2216,8,75,1,76,1,76,1, + 76,1,76,1,76,1,76,5,76,2224,8,76,10,76,12,76,2227,9,76,1,76,1,76, + 1,77,1,77,1,78,1,78,1,78,3,78,2236,8,78,1,78,1,78,3,78,2240,8,78, + 1,78,1,78,1,78,1,78,1,78,1,78,5,78,2248,8,78,10,78,12,78,2251,9, + 78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,3,79,2263,8, + 79,1,79,1,79,1,79,1,79,1,79,1,79,3,79,2271,8,79,1,79,1,79,1,79,1, + 79,1,79,5,79,2278,8,79,10,79,12,79,2281,9,79,1,79,1,79,1,79,3,79, + 2286,8,79,1,79,1,79,1,79,1,79,1,79,1,79,3,79,2294,8,79,1,79,1,79, + 1,79,1,79,3,79,2300,8,79,1,79,1,79,3,79,2304,8,79,1,79,1,79,1,79, + 3,79,2309,8,79,1,79,1,79,1,79,3,79,2314,8,79,1,80,1,80,1,80,1,80, + 3,80,2320,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, + 1,80,1,80,5,80,2334,8,80,10,80,12,80,2337,9,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,1,81,1,81,1,81,1, + 81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,4,81,2364,8,81,11,81, + 12,81,2365,1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2375,8,81,10, + 81,12,81,2378,9,81,1,81,1,81,1,81,1,81,1,81,3,81,2385,8,81,1,81, + 1,81,1,81,3,81,2390,8,81,1,81,1,81,1,81,3,81,2395,8,81,1,81,1,81, + 1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2406,8,81,10,81,12,81,2409, + 9,81,1,81,1,81,1,81,3,81,2414,8,81,1,81,3,81,2417,8,81,1,81,1,81, + 1,81,1,81,1,81,3,81,2424,8,81,1,81,1,81,1,81,3,81,2429,8,81,1,81, + 3,81,2432,8,81,1,81,3,81,2435,8,81,1,81,1,81,1,81,3,81,2440,8,81, + 1,81,1,81,1,81,5,81,2445,8,81,10,81,12,81,2448,9,81,3,81,2450,8, + 81,1,81,1,81,1,81,1,81,1,81,5,81,2457,8,81,10,81,12,81,2460,9,81, + 3,81,2462,8,81,1,81,1,81,3,81,2466,8,81,1,81,3,81,2469,8,81,1,81, + 3,81,2472,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, + 1,81,5,81,2485,8,81,10,81,12,81,2488,9,81,3,81,2490,8,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,1,81,1,81,1, + 81,4,81,2507,8,81,11,81,12,81,2508,1,81,1,81,3,81,2513,8,81,1,81, + 1,81,1,81,1,81,4,81,2519,8,81,11,81,12,81,2520,1,81,1,81,3,81,2525, + 8,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, + 1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2548,8,81,10,81, + 12,81,2551,9,81,3,81,2553,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, + 3,81,2562,8,81,1,81,1,81,1,81,1,81,3,81,2568,8,81,1,81,1,81,1,81, + 1,81,3,81,2574,8,81,1,81,1,81,1,81,1,81,3,81,2580,8,81,1,81,1,81, + 1,81,1,81,1,81,1,81,1,81,3,81,2589,8,81,1,81,3,81,2592,8,81,1,81, + 3,81,2595,8,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,1,81,1,81,1,81,1,81,1,81,3,81,2614,8,81,1,81,1,81,1,81, + 1,81,1,81,1,81,1,81,3,81,2623,8,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,1,81,1,81,1,81,1,81,1,81,1,81,5,81, + 2643,8,81,10,81,12,81,2646,9,81,3,81,2648,8,81,1,81,1,81,1,81,1, + 81,1,81,1,81,1,81,1,81,3,81,2658,8,81,1,81,1,81,1,81,1,81,1,81,1, + 81,1,81,3,81,2667,8,81,1,81,1,81,1,81,1,81,3,81,2673,8,81,1,81,1, + 81,1,81,1,81,3,81,2679,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1, + 81,1,81,3,81,2690,8,81,3,81,2692,8,81,1,81,1,81,1,81,3,81,2697,8, + 81,1,81,1,81,1,81,1,81,1,81,3,81,2704,8,81,3,81,2706,8,81,1,81,1, + 81,1,81,1,81,3,81,2712,8,81,1,81,1,81,1,81,1,81,3,81,2718,8,81,1, + 81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2727,8,81,10,81,12,81,2730, + 9,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2738,8,81,1,81,1,81,1,81, + 3,81,2743,8,81,1,81,1,81,1,81,3,81,2748,8,81,3,81,2750,8,81,3,81, + 2752,8,81,1,81,1,81,1,81,1,81,3,81,2758,8,81,3,81,2760,8,81,1,81, + 1,81,1,81,1,81,1,81,1,81,5,81,2768,8,81,10,81,12,81,2771,9,81,1, + 81,1,81,1,81,1,81,1,81,1,81,3,81,2779,8,81,3,81,2781,8,81,1,81,1, + 81,1,81,1,81,3,81,2787,8,81,3,81,2789,8,81,1,81,3,81,2792,8,81,1, + 81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2802,8,81,10,81,12,81, + 2805,9,81,1,82,1,82,1,82,1,82,1,82,3,82,2812,8,82,1,82,1,82,1,82, + 1,82,5,82,2818,8,82,10,82,12,82,2821,9,82,3,82,2823,8,82,1,83,1, + 83,1,83,3,83,2828,8,83,1,84,1,84,1,84,3,84,2833,8,84,1,85,1,85,1, + 85,1,85,1,86,1,86,1,87,1,87,1,87,1,87,3,87,2845,8,87,1,88,1,88,3, + 88,2849,8,88,1,88,1,88,3,88,2853,8,88,1,88,3,88,2856,8,88,3,88,2858, + 8,88,1,89,1,89,1,89,1,89,1,89,1,89,3,89,2866,8,89,1,90,3,90,2869, + 8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,2879,8,90,1,91, + 1,91,1,92,1,92,1,92,1,92,3,92,2887,8,92,1,93,1,93,1,93,1,93,3,93, + 2893,8,93,3,93,2895,8,93,1,94,1,94,1,94,1,94,1,94,1,94,3,94,2903, + 8,94,1,95,1,95,1,96,1,96,1,97,1,97,1,98,1,98,3,98,2913,8,98,1,98, + 1,98,1,98,1,98,3,98,2919,8,98,1,99,1,99,1,100,1,100,1,101,1,101, + 1,101,1,101,1,101,1,101,5,101,2931,8,101,10,101,12,101,2934,9,101, + 1,101,1,101,1,101,1,101,1,101,1,101,3,101,2942,8,101,1,101,1,101, + 1,101,1,101,1,101,3,101,2949,8,101,1,101,1,101,1,101,3,101,2954, + 8,101,1,101,1,101,1,101,1,101,1,101,3,101,2961,8,101,1,101,1,101, + 1,101,3,101,2966,8,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, + 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, + 1,101,5,101,2987,8,101,10,101,12,101,2990,9,101,1,101,1,101,3,101, + 2994,8,101,3,101,2996,8,101,1,101,1,101,1,101,1,101,1,101,3,101, + 3003,8,101,5,101,3005,8,101,10,101,12,101,3008,9,101,1,102,1,102, + 1,102,1,102,3,102,3014,8,102,1,103,1,103,3,103,3018,8,103,1,104, + 1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,106,1,106, + 1,106,1,106,3,106,3034,8,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,5,106,3047,8,106,10,106,12,106,3050, + 9,106,1,106,1,106,1,106,1,106,3,106,3056,8,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,3,106,3065,8,106,1,106,1,106,1,106,1,106, + 1,106,1,106,5,106,3073,8,106,10,106,12,106,3076,9,106,1,106,1,106, + 3,106,3080,8,106,1,106,1,106,1,106,1,106,1,106,5,106,3087,8,106, + 10,106,12,106,3090,9,106,1,106,1,106,3,106,3094,8,106,1,107,1,107, + 1,107,1,107,1,107,1,107,3,107,3102,8,107,1,108,1,108,1,108,1,108, + 5,108,3108,8,108,10,108,12,108,3111,9,108,3,108,3113,8,108,1,108, + 1,108,1,108,1,108,3,108,3119,8,108,1,108,3,108,3122,8,108,1,108, + 1,108,1,108,1,108,1,108,3,108,3129,8,108,1,108,1,108,1,108,1,108, + 5,108,3135,8,108,10,108,12,108,3138,9,108,3,108,3140,8,108,1,108, + 1,108,1,108,1,108,5,108,3146,8,108,10,108,12,108,3149,9,108,3,108, + 3151,8,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109, + 1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109, + 1,109,1,109,1,109,1,109,3,109,3177,8,109,1,110,1,110,1,110,1,110, + 1,110,1,110,1,110,1,110,1,110,3,110,3188,8,110,1,111,1,111,1,111, + 3,111,3193,8,111,1,111,1,111,1,111,1,111,1,111,5,111,3200,8,111, + 10,111,12,111,3203,9,111,1,112,1,112,1,112,1,112,1,112,1,112,1,112, + 1,112,5,112,3213,8,112,10,112,12,112,3216,9,112,1,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,3230, + 8,112,1,113,1,113,3,113,3234,8,113,1,113,1,113,3,113,3238,8,113, + 1,113,1,113,3,113,3242,8,113,1,113,1,113,1,113,1,113,3,113,3248, + 8,113,1,113,1,113,3,113,3252,8,113,1,113,1,113,3,113,3256,8,113, + 1,113,1,113,3,113,3260,8,113,3,113,3262,8,113,1,114,1,114,1,114, + 1,114,1,115,1,115,1,115,1,115,3,115,3272,8,115,1,116,1,116,1,116, + 1,116,1,116,3,116,3279,8,116,1,117,1,117,1,117,1,117,1,117,1,117, + 1,117,3,117,3288,8,117,1,118,1,118,1,118,1,118,1,118,3,118,3295, + 8,118,1,119,1,119,1,119,1,119,1,119,3,119,3302,8,119,1,120,1,120, + 1,120,5,120,3307,8,120,10,120,12,120,3310,9,120,1,121,1,121,1,121, + 1,121,5,121,3316,8,121,10,121,12,121,3319,9,121,1,121,1,121,1,122, + 1,122,1,122,1,122,1,122,5,122,3328,8,122,10,122,12,122,3331,9,122, + 3,122,3333,8,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,5,123, + 3342,8,123,10,123,12,123,3345,9,123,3,123,3347,8,123,1,123,1,123, + 1,124,3,124,3352,8,124,1,124,1,124,1,125,1,125,1,125,1,126,1,126, + 1,126,3,126,3362,8,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,1,126,1,126,3,126,3378,8,126,1,127, + 1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,4,127,3390, + 8,127,11,127,12,127,3391,1,127,3,127,3395,8,127,1,127,1,127,1,127, + 1,127,1,127,4,127,3402,8,127,11,127,12,127,3403,1,127,3,127,3407, + 8,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,5,127,3417, + 8,127,10,127,12,127,3420,9,127,1,127,3,127,3423,8,127,1,127,1,127, + 1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,5,127,3436, + 8,127,10,127,12,127,3439,9,127,1,127,3,127,3442,8,127,1,127,1,127, + 1,127,1,127,3,127,3448,8,127,1,127,1,127,1,127,1,127,1,127,1,127, + 1,127,1,127,3,127,3458,8,127,1,127,1,127,1,127,1,127,1,127,1,127, + 1,127,1,127,1,127,1,127,3,127,3470,8,127,1,127,1,127,1,127,1,127, + 1,127,1,127,1,127,3,127,3479,8,127,1,128,1,128,1,128,1,128,1,128, + 1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,131,1,131,1,131, + 1,131,5,131,3498,8,131,10,131,12,131,3501,9,131,1,131,1,131,1,131, + 3,131,3506,8,131,1,132,1,132,1,132,4,132,3511,8,132,11,132,12,132, + 3512,1,133,1,133,1,133,1,133,1,133,1,133,3,133,3521,8,133,1,134, + 1,134,1,134,3,134,3526,8,134,1,135,3,135,3529,8,135,1,135,1,135, + 1,136,1,136,3,136,3535,8,136,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,3,137,3548,8,137,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3561,8,138, + 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, + 3,139,3574,8,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, + 1,140,1,140,1,140,3,140,3587,8,140,1,141,1,141,1,141,1,141,1,141, + 3,141,3594,8,141,1,142,1,142,1,142,1,142,1,142,3,142,3601,8,142, + 1,143,1,143,1,144,1,144,1,145,1,145,1,146,1,146,1,147,1,147,3,147, + 3613,8,147,1,148,1,148,1,149,1,149,1,150,1,150,1,150,5,150,3622, + 8,150,10,150,12,150,3625,9,150,1,151,1,151,1,151,1,151,1,151,1,151, + 1,152,1,152,1,153,1,153,1,153,3,153,3638,8,153,1,154,1,154,1,154, + 1,154,1,154,3,154,3645,8,154,1,155,1,155,1,155,5,155,3650,8,155, + 10,155,12,155,3653,9,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 3,156,3662,8,156,1,157,1,157,1,157,1,157,1,157,3,157,3669,8,157, + 1,158,3,158,3672,8,158,1,158,1,158,3,158,3676,8,158,1,158,1,158, + 3,158,3680,8,158,1,158,3,158,3683,8,158,1,159,1,159,3,159,3687,8, + 159,1,160,1,160,1,160,0,7,46,88,156,160,162,202,222,161,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,120,122,124,126,128, + 130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160, + 162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192, + 194,196,198,200,202,204,206,208,210,212,214,216,218,220,222,224, + 226,228,230,232,234,236,238,240,242,244,246,248,250,252,254,256, + 258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288, + 290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320, + 0,36,2,0,39,39,229,229,2,0,72,72,131,131,2,0,105,105,122,122,2,0, + 92,92,123,123,1,0,239,240,2,0,101,101,174,174,2,0,324,324,329,329, + 2,0,91,91,281,281,2,0,29,29,75,75,2,0,101,101,148,148,2,0,22,22, + 79,79,2,0,33,33,259,259,3,0,35,35,150,150,270,270,2,0,124,124,247, + 247,2,0,85,85,89,89,2,0,144,144,189,189,2,0,125,125,197,197,2,0, + 54,54,281,281,1,0,318,319,1,0,320,322,1,0,291,293,4,0,89,89,97,97, + 273,273,283,283,2,0,49,49,280,280,2,0,100,100,241,241,1,0,312,317, + 3,0,22,22,26,26,254,254,2,0,97,97,273,273,5,0,67,67,118,118,170, + 171,245,245,310,310,1,0,175,178,2,0,304,304,306,306,2,0,102,102, + 212,212,3,0,113,113,137,137,263,263,4,0,80,80,132,132,160,160,294, + 294,2,0,192,192,309,309,2,0,268,268,298,298,54,0,18,22,24,24,26, + 27,29,33,35,35,37,39,42,49,51,52,56,56,65,67,69,72,74,75,77,78,80, + 82,85,87,89,89,92,92,95,95,98,102,104,104,107,113,116,116,118,121, + 123,124,126,126,129,129,131,132,134,135,137,137,144,151,153,153, + 155,155,157,157,160,171,173,180,184,189,191,193,196,196,198,213, + 215,220,222,233,235,237,239,247,249,259,261,264,266,271,274,276, + 278,280,282,284,286,289,291,295,297,299,302,303,305,311,4230,0,325, + 1,0,0,0,2,330,1,0,0,0,4,332,1,0,0,0,6,336,1,0,0,0,8,340,1,0,0,0, + 10,344,1,0,0,0,12,348,1,0,0,0,14,352,1,0,0,0,16,1250,1,0,0,0,18, + 1253,1,0,0,0,20,1257,1,0,0,0,22,1267,1,0,0,0,24,1271,1,0,0,0,26, + 1285,1,0,0,0,28,1287,1,0,0,0,30,1301,1,0,0,0,32,1307,1,0,0,0,34, + 1311,1,0,0,0,36,1319,1,0,0,0,38,1325,1,0,0,0,40,1327,1,0,0,0,42, + 1364,1,0,0,0,44,1366,1,0,0,0,46,1368,1,0,0,0,48,1404,1,0,0,0,50, + 1408,1,0,0,0,52,1417,1,0,0,0,54,1455,1,0,0,0,56,1458,1,0,0,0,58, + 1461,1,0,0,0,60,1470,1,0,0,0,62,1480,1,0,0,0,64,1528,1,0,0,0,66, + 1543,1,0,0,0,68,1547,1,0,0,0,70,1549,1,0,0,0,72,1556,1,0,0,0,74, + 1578,1,0,0,0,76,1587,1,0,0,0,78,1605,1,0,0,0,80,1607,1,0,0,0,82, + 1609,1,0,0,0,84,1613,1,0,0,0,86,1615,1,0,0,0,88,1617,1,0,0,0,90, + 1656,1,0,0,0,92,1672,1,0,0,0,94,1674,1,0,0,0,96,1683,1,0,0,0,98, + 1685,1,0,0,0,100,1693,1,0,0,0,102,1699,1,0,0,0,104,1701,1,0,0,0, + 106,1779,1,0,0,0,108,1794,1,0,0,0,110,1805,1,0,0,0,112,1826,1,0, + 0,0,114,1828,1,0,0,0,116,1841,1,0,0,0,118,1845,1,0,0,0,120,1855, + 1,0,0,0,122,1866,1,0,0,0,124,1877,1,0,0,0,126,1897,1,0,0,0,128,1962, + 1,0,0,0,130,2041,1,0,0,0,132,2068,1,0,0,0,134,2070,1,0,0,0,136,2077, + 1,0,0,0,138,2089,1,0,0,0,140,2091,1,0,0,0,142,2119,1,0,0,0,144,2126, + 1,0,0,0,146,2191,1,0,0,0,148,2211,1,0,0,0,150,2213,1,0,0,0,152,2217, + 1,0,0,0,154,2230,1,0,0,0,156,2239,1,0,0,0,158,2313,1,0,0,0,160,2319, + 1,0,0,0,162,2791,1,0,0,0,164,2806,1,0,0,0,166,2824,1,0,0,0,168,2829, + 1,0,0,0,170,2834,1,0,0,0,172,2838,1,0,0,0,174,2844,1,0,0,0,176,2857, + 1,0,0,0,178,2865,1,0,0,0,180,2878,1,0,0,0,182,2880,1,0,0,0,184,2886, + 1,0,0,0,186,2894,1,0,0,0,188,2902,1,0,0,0,190,2904,1,0,0,0,192,2906, + 1,0,0,0,194,2908,1,0,0,0,196,2910,1,0,0,0,198,2920,1,0,0,0,200,2922, + 1,0,0,0,202,2995,1,0,0,0,204,3013,1,0,0,0,206,3017,1,0,0,0,208,3019, + 1,0,0,0,210,3024,1,0,0,0,212,3093,1,0,0,0,214,3095,1,0,0,0,216,3112, + 1,0,0,0,218,3176,1,0,0,0,220,3187,1,0,0,0,222,3189,1,0,0,0,224,3229, + 1,0,0,0,226,3261,1,0,0,0,228,3263,1,0,0,0,230,3271,1,0,0,0,232,3278, + 1,0,0,0,234,3287,1,0,0,0,236,3294,1,0,0,0,238,3301,1,0,0,0,240,3303, + 1,0,0,0,242,3311,1,0,0,0,244,3322,1,0,0,0,246,3336,1,0,0,0,248,3351, + 1,0,0,0,250,3355,1,0,0,0,252,3377,1,0,0,0,254,3478,1,0,0,0,256,3480, + 1,0,0,0,258,3485,1,0,0,0,260,3490,1,0,0,0,262,3493,1,0,0,0,264,3510, + 1,0,0,0,266,3520,1,0,0,0,268,3525,1,0,0,0,270,3528,1,0,0,0,272,3534, + 1,0,0,0,274,3547,1,0,0,0,276,3560,1,0,0,0,278,3573,1,0,0,0,280,3586, + 1,0,0,0,282,3593,1,0,0,0,284,3600,1,0,0,0,286,3602,1,0,0,0,288,3604, + 1,0,0,0,290,3606,1,0,0,0,292,3608,1,0,0,0,294,3612,1,0,0,0,296,3614, + 1,0,0,0,298,3616,1,0,0,0,300,3618,1,0,0,0,302,3626,1,0,0,0,304,3632, + 1,0,0,0,306,3637,1,0,0,0,308,3644,1,0,0,0,310,3646,1,0,0,0,312,3661, + 1,0,0,0,314,3668,1,0,0,0,316,3682,1,0,0,0,318,3686,1,0,0,0,320,3688, + 1,0,0,0,322,324,3,2,1,0,323,322,1,0,0,0,324,327,1,0,0,0,325,323, + 1,0,0,0,325,326,1,0,0,0,326,328,1,0,0,0,327,325,1,0,0,0,328,329, + 5,0,0,1,329,1,1,0,0,0,330,331,3,4,2,0,331,3,1,0,0,0,332,334,3,16, + 8,0,333,335,5,325,0,0,334,333,1,0,0,0,334,335,1,0,0,0,335,5,1,0, + 0,0,336,338,3,154,77,0,337,339,5,325,0,0,338,337,1,0,0,0,338,339, + 1,0,0,0,339,7,1,0,0,0,340,342,3,240,120,0,341,343,5,325,0,0,342, + 341,1,0,0,0,342,343,1,0,0,0,343,9,1,0,0,0,344,346,3,202,101,0,345, + 347,5,325,0,0,346,345,1,0,0,0,346,347,1,0,0,0,347,11,1,0,0,0,348, + 350,3,222,111,0,349,351,5,325,0,0,350,349,1,0,0,0,350,351,1,0,0, + 0,351,13,1,0,0,0,352,353,3,242,121,0,353,354,5,0,0,1,354,15,1,0, + 0,0,355,1251,3,18,9,0,356,357,5,288,0,0,357,1251,3,282,141,0,358, + 359,5,53,0,0,359,363,5,42,0,0,360,361,5,119,0,0,361,362,5,182,0, + 0,362,364,5,94,0,0,363,360,1,0,0,0,363,364,1,0,0,0,364,365,1,0,0, + 0,365,366,3,288,144,0,366,367,5,290,0,0,367,370,3,314,157,0,368, + 369,5,46,0,0,369,371,3,186,93,0,370,368,1,0,0,0,370,371,1,0,0,0, + 371,374,1,0,0,0,372,373,5,31,0,0,373,375,3,308,154,0,374,372,1,0, + 0,0,374,375,1,0,0,0,375,378,1,0,0,0,376,377,5,304,0,0,377,379,3, + 32,16,0,378,376,1,0,0,0,378,379,1,0,0,0,379,1251,1,0,0,0,380,381, + 5,83,0,0,381,384,5,42,0,0,382,383,5,119,0,0,383,385,5,94,0,0,384, + 382,1,0,0,0,384,385,1,0,0,0,385,386,1,0,0,0,386,388,3,286,143,0, + 387,389,7,0,0,0,388,387,1,0,0,0,388,389,1,0,0,0,389,1251,1,0,0,0, + 390,391,5,53,0,0,391,395,5,243,0,0,392,393,5,119,0,0,393,394,5,182, + 0,0,394,396,5,94,0,0,395,392,1,0,0,0,395,396,1,0,0,0,396,397,1,0, + 0,0,397,400,3,284,142,0,398,399,5,31,0,0,399,401,3,308,154,0,400, + 398,1,0,0,0,400,401,1,0,0,0,401,404,1,0,0,0,402,403,5,304,0,0,403, + 405,3,32,16,0,404,402,1,0,0,0,404,405,1,0,0,0,405,1251,1,0,0,0,406, + 407,5,83,0,0,407,410,5,243,0,0,408,409,5,119,0,0,409,411,5,94,0, + 0,410,408,1,0,0,0,410,411,1,0,0,0,411,412,1,0,0,0,412,414,3,282, + 141,0,413,415,7,0,0,0,414,413,1,0,0,0,414,415,1,0,0,0,415,1251,1, + 0,0,0,416,417,5,23,0,0,417,418,5,243,0,0,418,419,3,282,141,0,419, + 420,5,223,0,0,420,421,5,269,0,0,421,422,3,284,142,0,422,1251,1,0, + 0,0,423,424,5,23,0,0,424,425,5,243,0,0,425,426,3,282,141,0,426,427, + 5,251,0,0,427,428,5,31,0,0,428,429,3,308,154,0,429,1251,1,0,0,0, + 430,433,5,53,0,0,431,432,5,194,0,0,432,434,5,226,0,0,433,431,1,0, + 0,0,433,434,1,0,0,0,434,435,1,0,0,0,435,439,5,260,0,0,436,437,5, + 119,0,0,437,438,5,182,0,0,438,440,5,94,0,0,439,436,1,0,0,0,439,440, + 1,0,0,0,440,441,1,0,0,0,441,443,3,276,138,0,442,444,3,120,60,0,443, + 442,1,0,0,0,443,444,1,0,0,0,444,447,1,0,0,0,445,446,5,46,0,0,446, + 448,3,186,93,0,447,445,1,0,0,0,447,448,1,0,0,0,448,451,1,0,0,0,449, + 450,5,304,0,0,450,452,3,32,16,0,451,449,1,0,0,0,451,452,1,0,0,0, + 452,453,1,0,0,0,453,459,5,28,0,0,454,460,3,18,9,0,455,456,5,1,0, + 0,456,457,3,18,9,0,457,458,5,2,0,0,458,460,1,0,0,0,459,454,1,0,0, + 0,459,455,1,0,0,0,460,466,1,0,0,0,461,463,5,304,0,0,462,464,5,179, + 0,0,463,462,1,0,0,0,463,464,1,0,0,0,464,465,1,0,0,0,465,467,5,65, + 0,0,466,461,1,0,0,0,466,467,1,0,0,0,467,1251,1,0,0,0,468,471,5,53, + 0,0,469,470,5,194,0,0,470,472,5,226,0,0,471,469,1,0,0,0,471,472, + 1,0,0,0,472,473,1,0,0,0,473,477,5,260,0,0,474,475,5,119,0,0,475, + 476,5,182,0,0,476,478,5,94,0,0,477,474,1,0,0,0,477,478,1,0,0,0,478, + 479,1,0,0,0,479,480,3,276,138,0,480,481,5,1,0,0,481,486,3,26,13, + 0,482,483,5,3,0,0,483,485,3,26,13,0,484,482,1,0,0,0,485,488,1,0, + 0,0,486,484,1,0,0,0,486,487,1,0,0,0,487,489,1,0,0,0,488,486,1,0, + 0,0,489,492,5,2,0,0,490,491,5,46,0,0,491,493,3,186,93,0,492,490, + 1,0,0,0,492,493,1,0,0,0,493,496,1,0,0,0,494,495,5,304,0,0,495,497, + 3,32,16,0,496,494,1,0,0,0,496,497,1,0,0,0,497,1251,1,0,0,0,498,499, + 5,83,0,0,499,502,5,260,0,0,500,501,5,119,0,0,501,503,5,94,0,0,502, + 500,1,0,0,0,502,503,1,0,0,0,503,504,1,0,0,0,504,1251,3,274,137,0, + 505,506,5,127,0,0,506,507,5,130,0,0,507,509,3,274,137,0,508,510, + 3,122,61,0,509,508,1,0,0,0,509,510,1,0,0,0,510,511,1,0,0,0,511,512, + 3,18,9,0,512,1251,1,0,0,0,513,514,5,73,0,0,514,515,5,105,0,0,515, + 517,3,274,137,0,516,518,3,54,27,0,517,516,1,0,0,0,517,518,1,0,0, + 0,518,1251,1,0,0,0,519,520,5,274,0,0,520,521,5,260,0,0,521,1251, + 3,274,137,0,522,523,5,46,0,0,523,524,5,190,0,0,524,525,5,260,0,0, + 525,526,3,274,137,0,526,529,5,133,0,0,527,530,3,186,93,0,528,530, + 5,183,0,0,529,527,1,0,0,0,529,528,1,0,0,0,530,1251,1,0,0,0,531,532, + 5,46,0,0,532,533,5,190,0,0,533,534,5,299,0,0,534,535,3,278,139,0, + 535,538,5,133,0,0,536,539,3,186,93,0,537,539,5,183,0,0,538,536,1, + 0,0,0,538,537,1,0,0,0,539,1251,1,0,0,0,540,541,5,46,0,0,541,542, + 5,190,0,0,542,543,5,44,0,0,543,544,3,294,147,0,544,547,5,133,0,0, + 545,548,3,186,93,0,546,548,5,183,0,0,547,545,1,0,0,0,547,546,1,0, + 0,0,548,1251,1,0,0,0,549,550,5,23,0,0,550,553,5,260,0,0,551,552, + 5,119,0,0,552,554,5,94,0,0,553,551,1,0,0,0,553,554,1,0,0,0,554,555, + 1,0,0,0,555,556,3,274,137,0,556,557,5,223,0,0,557,558,5,269,0,0, + 558,559,3,276,138,0,559,1251,1,0,0,0,560,561,5,23,0,0,561,564,5, + 260,0,0,562,563,5,119,0,0,563,565,5,94,0,0,564,562,1,0,0,0,564,565, + 1,0,0,0,565,566,1,0,0,0,566,567,3,274,137,0,567,568,5,19,0,0,568, + 572,5,44,0,0,569,570,5,119,0,0,570,571,5,182,0,0,571,573,5,94,0, + 0,572,569,1,0,0,0,572,573,1,0,0,0,573,574,1,0,0,0,574,575,3,28,14, + 0,575,1251,1,0,0,0,576,577,5,23,0,0,577,580,5,260,0,0,578,579,5, + 119,0,0,579,581,5,94,0,0,580,578,1,0,0,0,580,581,1,0,0,0,581,582, + 1,0,0,0,582,583,3,274,137,0,583,584,5,223,0,0,584,587,5,44,0,0,585, + 586,5,119,0,0,586,588,5,94,0,0,587,585,1,0,0,0,587,588,1,0,0,0,588, + 589,1,0,0,0,589,590,3,294,147,0,590,591,5,269,0,0,591,592,3,298, + 149,0,592,1251,1,0,0,0,593,594,5,23,0,0,594,597,5,260,0,0,595,596, + 5,119,0,0,596,598,5,94,0,0,597,595,1,0,0,0,597,598,1,0,0,0,598,599, + 1,0,0,0,599,600,3,274,137,0,600,601,5,83,0,0,601,604,5,44,0,0,602, + 603,5,119,0,0,603,605,5,94,0,0,604,602,1,0,0,0,604,605,1,0,0,0,605, + 606,1,0,0,0,606,607,3,294,147,0,607,1251,1,0,0,0,608,609,5,23,0, + 0,609,612,5,260,0,0,610,611,5,119,0,0,611,613,5,94,0,0,612,610,1, + 0,0,0,612,613,1,0,0,0,613,614,1,0,0,0,614,615,3,274,137,0,615,616, + 5,23,0,0,616,617,5,44,0,0,617,618,3,294,147,0,618,619,5,251,0,0, + 619,620,5,65,0,0,620,621,5,276,0,0,621,622,3,202,101,0,622,1251, + 1,0,0,0,623,624,5,23,0,0,624,627,5,260,0,0,625,626,5,119,0,0,626, + 628,5,94,0,0,627,625,1,0,0,0,627,628,1,0,0,0,628,629,1,0,0,0,629, + 630,3,274,137,0,630,631,5,23,0,0,631,632,5,44,0,0,632,633,3,294, + 147,0,633,634,5,83,0,0,634,635,5,182,0,0,635,636,5,183,0,0,636,1251, + 1,0,0,0,637,638,5,23,0,0,638,639,5,260,0,0,639,640,3,274,137,0,640, + 641,5,251,0,0,641,642,5,31,0,0,642,643,3,308,154,0,643,1251,1,0, + 0,0,644,645,5,23,0,0,645,646,5,260,0,0,646,647,3,274,137,0,647,648, + 5,251,0,0,648,649,5,216,0,0,649,650,3,34,17,0,650,1251,1,0,0,0,651, + 652,5,23,0,0,652,653,5,260,0,0,653,654,3,274,137,0,654,655,5,93, + 0,0,655,668,3,290,145,0,656,665,5,1,0,0,657,662,3,236,118,0,658, + 659,5,3,0,0,659,661,3,236,118,0,660,658,1,0,0,0,661,664,1,0,0,0, + 662,660,1,0,0,0,662,663,1,0,0,0,663,666,1,0,0,0,664,662,1,0,0,0, + 665,657,1,0,0,0,665,666,1,0,0,0,666,667,1,0,0,0,667,669,5,2,0,0, + 668,656,1,0,0,0,668,669,1,0,0,0,669,671,1,0,0,0,670,672,3,54,27, + 0,671,670,1,0,0,0,671,672,1,0,0,0,672,1251,1,0,0,0,673,674,5,24, + 0,0,674,677,3,274,137,0,675,676,5,304,0,0,676,678,3,32,16,0,677, + 675,1,0,0,0,677,678,1,0,0,0,678,1251,1,0,0,0,679,682,5,53,0,0,680, + 681,5,194,0,0,681,683,5,226,0,0,682,680,1,0,0,0,682,683,1,0,0,0, + 683,684,1,0,0,0,684,685,5,167,0,0,685,689,5,299,0,0,686,687,5,119, + 0,0,687,688,5,182,0,0,688,690,5,94,0,0,689,686,1,0,0,0,689,690,1, + 0,0,0,690,691,1,0,0,0,691,695,3,280,140,0,692,693,5,109,0,0,693, + 694,5,208,0,0,694,696,3,196,98,0,695,692,1,0,0,0,695,696,1,0,0,0, + 696,699,1,0,0,0,697,698,5,46,0,0,698,700,3,186,93,0,699,697,1,0, + 0,0,699,700,1,0,0,0,700,703,1,0,0,0,701,702,5,304,0,0,702,704,3, + 32,16,0,703,701,1,0,0,0,703,704,1,0,0,0,704,705,1,0,0,0,705,706, + 5,28,0,0,706,707,3,18,9,0,707,1251,1,0,0,0,708,711,5,53,0,0,709, + 710,5,194,0,0,710,712,5,226,0,0,711,709,1,0,0,0,711,712,1,0,0,0, + 712,713,1,0,0,0,713,714,5,299,0,0,714,717,3,280,140,0,715,716,5, + 46,0,0,716,718,3,186,93,0,717,715,1,0,0,0,717,718,1,0,0,0,718,721, + 1,0,0,0,719,720,5,246,0,0,720,722,7,1,0,0,721,719,1,0,0,0,721,722, + 1,0,0,0,722,725,1,0,0,0,723,724,5,304,0,0,724,726,3,32,16,0,725, + 723,1,0,0,0,725,726,1,0,0,0,726,727,1,0,0,0,727,728,5,28,0,0,728, + 729,3,18,9,0,729,1251,1,0,0,0,730,731,5,222,0,0,731,732,5,167,0, + 0,732,733,5,299,0,0,733,1251,3,278,139,0,734,735,5,83,0,0,735,736, + 5,167,0,0,736,739,5,299,0,0,737,738,5,119,0,0,738,740,5,94,0,0,739, + 737,1,0,0,0,739,740,1,0,0,0,740,741,1,0,0,0,741,1251,3,278,139,0, + 742,743,5,23,0,0,743,744,5,167,0,0,744,747,5,299,0,0,745,746,5,119, + 0,0,746,748,5,94,0,0,747,745,1,0,0,0,747,748,1,0,0,0,748,749,1,0, + 0,0,749,750,3,278,139,0,750,751,5,223,0,0,751,752,5,269,0,0,752, + 753,3,280,140,0,753,1251,1,0,0,0,754,755,5,23,0,0,755,756,5,167, + 0,0,756,757,5,299,0,0,757,758,3,278,139,0,758,759,5,251,0,0,759, + 760,5,216,0,0,760,761,3,34,17,0,761,1251,1,0,0,0,762,763,5,83,0, + 0,763,766,5,299,0,0,764,765,5,119,0,0,765,767,5,94,0,0,766,764,1, + 0,0,0,766,767,1,0,0,0,767,768,1,0,0,0,768,1251,3,278,139,0,769,770, + 5,23,0,0,770,771,5,299,0,0,771,772,3,278,139,0,772,773,5,223,0,0, + 773,774,5,269,0,0,774,775,3,280,140,0,775,1251,1,0,0,0,776,777,5, + 23,0,0,777,778,5,299,0,0,778,779,3,278,139,0,779,780,5,251,0,0,780, + 781,5,31,0,0,781,782,3,308,154,0,782,1251,1,0,0,0,783,784,5,37,0, + 0,784,785,3,290,145,0,785,794,5,1,0,0,786,791,3,236,118,0,787,788, + 5,3,0,0,788,790,3,236,118,0,789,787,1,0,0,0,790,793,1,0,0,0,791, + 789,1,0,0,0,791,792,1,0,0,0,792,795,1,0,0,0,793,791,1,0,0,0,794, + 786,1,0,0,0,794,795,1,0,0,0,795,796,1,0,0,0,796,797,5,2,0,0,797, + 1251,1,0,0,0,798,801,5,53,0,0,799,800,5,194,0,0,800,802,5,226,0, + 0,801,799,1,0,0,0,801,802,1,0,0,0,802,803,1,0,0,0,803,1251,3,242, + 121,0,804,805,5,83,0,0,805,808,5,107,0,0,806,807,5,119,0,0,807,809, + 5,94,0,0,808,806,1,0,0,0,808,809,1,0,0,0,809,810,1,0,0,0,810,1251, + 3,246,123,0,811,812,5,53,0,0,812,813,5,235,0,0,813,817,3,314,157, + 0,814,815,5,304,0,0,815,816,5,20,0,0,816,818,3,306,153,0,817,814, + 1,0,0,0,817,818,1,0,0,0,818,821,1,0,0,0,819,820,5,122,0,0,820,822, + 3,286,143,0,821,819,1,0,0,0,821,822,1,0,0,0,822,1251,1,0,0,0,823, + 824,5,83,0,0,824,825,5,235,0,0,825,828,3,314,157,0,826,827,5,122, + 0,0,827,829,3,286,143,0,828,826,1,0,0,0,828,829,1,0,0,0,829,1251, + 1,0,0,0,830,831,5,110,0,0,831,836,3,312,156,0,832,833,5,3,0,0,833, + 835,3,312,156,0,834,832,1,0,0,0,835,838,1,0,0,0,836,834,1,0,0,0, + 836,837,1,0,0,0,837,839,1,0,0,0,838,836,1,0,0,0,839,840,5,269,0, + 0,840,845,3,308,154,0,841,842,5,3,0,0,842,844,3,308,154,0,843,841, + 1,0,0,0,844,847,1,0,0,0,845,843,1,0,0,0,845,846,1,0,0,0,846,851, + 1,0,0,0,847,845,1,0,0,0,848,849,5,304,0,0,849,850,5,20,0,0,850,852, + 5,193,0,0,851,848,1,0,0,0,851,852,1,0,0,0,852,856,1,0,0,0,853,854, + 5,111,0,0,854,855,5,36,0,0,855,857,3,306,153,0,856,853,1,0,0,0,856, + 857,1,0,0,0,857,860,1,0,0,0,858,859,5,122,0,0,859,861,3,286,143, + 0,860,858,1,0,0,0,860,861,1,0,0,0,861,1251,1,0,0,0,862,873,5,110, + 0,0,863,868,3,312,156,0,864,865,5,3,0,0,865,867,3,312,156,0,866, + 864,1,0,0,0,867,870,1,0,0,0,868,866,1,0,0,0,868,869,1,0,0,0,869, + 874,1,0,0,0,870,868,1,0,0,0,871,872,5,22,0,0,872,874,5,215,0,0,873, + 863,1,0,0,0,873,871,1,0,0,0,874,875,1,0,0,0,875,876,5,190,0,0,876, + 877,3,270,135,0,877,878,5,269,0,0,878,882,3,308,154,0,879,880,5, + 304,0,0,880,881,5,110,0,0,881,883,5,193,0,0,882,879,1,0,0,0,882, + 883,1,0,0,0,883,1251,1,0,0,0,884,888,5,233,0,0,885,886,5,20,0,0, + 886,887,5,193,0,0,887,889,5,103,0,0,888,885,1,0,0,0,888,889,1,0, + 0,0,889,890,1,0,0,0,890,895,3,312,156,0,891,892,5,3,0,0,892,894, + 3,312,156,0,893,891,1,0,0,0,894,897,1,0,0,0,895,893,1,0,0,0,895, + 896,1,0,0,0,896,898,1,0,0,0,897,895,1,0,0,0,898,899,5,105,0,0,899, + 904,3,308,154,0,900,901,5,3,0,0,901,903,3,308,154,0,902,900,1,0, + 0,0,903,906,1,0,0,0,904,902,1,0,0,0,904,905,1,0,0,0,905,910,1,0, + 0,0,906,904,1,0,0,0,907,908,5,111,0,0,908,909,5,36,0,0,909,911,3, + 306,153,0,910,907,1,0,0,0,910,911,1,0,0,0,911,914,1,0,0,0,912,913, + 5,122,0,0,913,915,3,286,143,0,914,912,1,0,0,0,914,915,1,0,0,0,915, + 1251,1,0,0,0,916,920,5,233,0,0,917,918,5,110,0,0,918,919,5,193,0, + 0,919,921,5,103,0,0,920,917,1,0,0,0,920,921,1,0,0,0,921,932,1,0, + 0,0,922,927,3,312,156,0,923,924,5,3,0,0,924,926,3,312,156,0,925, + 923,1,0,0,0,926,929,1,0,0,0,927,925,1,0,0,0,927,928,1,0,0,0,928, + 933,1,0,0,0,929,927,1,0,0,0,930,931,5,22,0,0,931,933,5,215,0,0,932, + 922,1,0,0,0,932,930,1,0,0,0,933,934,1,0,0,0,934,935,5,190,0,0,935, + 936,3,270,135,0,936,937,5,105,0,0,937,938,3,308,154,0,938,1251,1, + 0,0,0,939,950,5,74,0,0,940,945,3,266,133,0,941,942,5,3,0,0,942,944, + 3,266,133,0,943,941,1,0,0,0,944,947,1,0,0,0,945,943,1,0,0,0,945, + 946,1,0,0,0,946,951,1,0,0,0,947,945,1,0,0,0,948,949,5,22,0,0,949, + 951,5,215,0,0,950,940,1,0,0,0,950,948,1,0,0,0,951,952,1,0,0,0,952, + 953,5,190,0,0,953,954,3,270,135,0,954,955,5,269,0,0,955,956,3,308, + 154,0,956,1251,1,0,0,0,957,958,5,251,0,0,958,962,5,235,0,0,959,963, + 5,22,0,0,960,963,5,180,0,0,961,963,3,314,157,0,962,959,1,0,0,0,962, + 960,1,0,0,0,962,961,1,0,0,0,963,966,1,0,0,0,964,965,5,122,0,0,965, + 967,3,286,143,0,966,964,1,0,0,0,966,967,1,0,0,0,967,1251,1,0,0,0, + 968,969,5,253,0,0,969,972,5,112,0,0,970,971,5,190,0,0,971,973,3, + 270,135,0,972,970,1,0,0,0,972,973,1,0,0,0,973,1251,1,0,0,0,974,986, + 5,95,0,0,975,976,5,1,0,0,976,981,3,230,115,0,977,978,5,3,0,0,978, + 980,3,230,115,0,979,977,1,0,0,0,980,983,1,0,0,0,981,979,1,0,0,0, + 981,982,1,0,0,0,982,984,1,0,0,0,983,981,1,0,0,0,984,985,5,2,0,0, + 985,987,1,0,0,0,986,975,1,0,0,0,986,987,1,0,0,0,987,988,1,0,0,0, + 988,1251,3,16,8,0,989,990,5,95,0,0,990,992,5,24,0,0,991,993,5,297, + 0,0,992,991,1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0,994,1251,3,16, + 8,0,995,996,5,253,0,0,996,997,5,53,0,0,997,998,5,260,0,0,998,1251, + 3,274,137,0,999,1000,5,253,0,0,1000,1001,5,53,0,0,1001,1002,5,243, + 0,0,1002,1251,3,282,141,0,1003,1004,5,253,0,0,1004,1005,5,53,0,0, + 1005,1006,5,299,0,0,1006,1251,3,278,139,0,1007,1008,5,253,0,0,1008, + 1009,5,53,0,0,1009,1010,5,167,0,0,1010,1011,5,299,0,0,1011,1251, + 3,278,139,0,1012,1013,5,253,0,0,1013,1014,5,53,0,0,1014,1015,5,107, + 0,0,1015,1251,3,290,145,0,1016,1017,5,253,0,0,1017,1020,5,261,0, + 0,1018,1019,7,2,0,0,1019,1021,3,282,141,0,1020,1018,1,0,0,0,1020, + 1021,1,0,0,0,1021,1028,1,0,0,0,1022,1023,5,154,0,0,1023,1026,3,186, + 93,0,1024,1025,5,90,0,0,1025,1027,3,186,93,0,1026,1024,1,0,0,0,1026, + 1027,1,0,0,0,1027,1029,1,0,0,0,1028,1022,1,0,0,0,1028,1029,1,0,0, + 0,1029,1251,1,0,0,0,1030,1031,5,253,0,0,1031,1034,5,244,0,0,1032, + 1033,7,2,0,0,1033,1035,3,286,143,0,1034,1032,1,0,0,0,1034,1035,1, + 0,0,0,1035,1042,1,0,0,0,1036,1037,5,154,0,0,1037,1040,3,186,93,0, + 1038,1039,5,90,0,0,1039,1041,3,186,93,0,1040,1038,1,0,0,0,1040,1041, + 1,0,0,0,1041,1043,1,0,0,0,1042,1036,1,0,0,0,1042,1043,1,0,0,0,1043, + 1251,1,0,0,0,1044,1045,5,253,0,0,1045,1052,5,43,0,0,1046,1047,5, + 154,0,0,1047,1050,3,186,93,0,1048,1049,5,90,0,0,1049,1051,3,186, + 93,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,1053,1,0,0,0,1052, + 1046,1,0,0,0,1052,1053,1,0,0,0,1053,1251,1,0,0,0,1054,1055,5,253, + 0,0,1055,1056,5,45,0,0,1056,1057,7,2,0,0,1057,1064,3,272,136,0,1058, + 1059,5,154,0,0,1059,1062,3,186,93,0,1060,1061,5,90,0,0,1061,1063, + 3,186,93,0,1062,1060,1,0,0,0,1062,1063,1,0,0,0,1063,1065,1,0,0,0, + 1064,1058,1,0,0,0,1064,1065,1,0,0,0,1065,1251,1,0,0,0,1066,1067, + 5,253,0,0,1067,1068,5,256,0,0,1068,1069,5,103,0,0,1069,1251,3,272, + 136,0,1070,1071,5,253,0,0,1071,1072,5,256,0,0,1072,1073,5,103,0, + 0,1073,1074,5,1,0,0,1074,1075,3,18,9,0,1075,1076,5,2,0,0,1076,1251, + 1,0,0,0,1077,1079,5,253,0,0,1078,1080,5,56,0,0,1079,1078,1,0,0,0, + 1079,1080,1,0,0,0,1080,1081,1,0,0,0,1081,1084,5,236,0,0,1082,1083, + 7,2,0,0,1083,1085,3,286,143,0,1084,1082,1,0,0,0,1084,1085,1,0,0, + 0,1085,1251,1,0,0,0,1086,1087,5,253,0,0,1087,1088,5,235,0,0,1088, + 1091,5,112,0,0,1089,1090,7,2,0,0,1090,1092,3,286,143,0,1091,1089, + 1,0,0,0,1091,1092,1,0,0,0,1092,1251,1,0,0,0,1093,1094,5,76,0,0,1094, + 1251,3,272,136,0,1095,1096,5,75,0,0,1096,1251,3,272,136,0,1097,1098, + 5,253,0,0,1098,1101,5,108,0,0,1099,1100,7,2,0,0,1100,1102,3,282, + 141,0,1101,1099,1,0,0,0,1101,1102,1,0,0,0,1102,1109,1,0,0,0,1103, + 1104,5,154,0,0,1104,1107,3,186,93,0,1105,1106,5,90,0,0,1106,1108, + 3,186,93,0,1107,1105,1,0,0,0,1107,1108,1,0,0,0,1108,1110,1,0,0,0, + 1109,1103,1,0,0,0,1109,1110,1,0,0,0,1110,1251,1,0,0,0,1111,1112, + 5,253,0,0,1112,1119,5,250,0,0,1113,1114,5,154,0,0,1114,1117,3,186, + 93,0,1115,1116,5,90,0,0,1116,1118,3,186,93,0,1117,1115,1,0,0,0,1117, + 1118,1,0,0,0,1118,1120,1,0,0,0,1119,1113,1,0,0,0,1119,1120,1,0,0, + 0,1120,1251,1,0,0,0,1121,1122,5,251,0,0,1122,1123,5,250,0,0,1123, + 1124,5,31,0,0,1124,1251,3,318,159,0,1125,1126,5,227,0,0,1126,1127, + 5,250,0,0,1127,1251,5,31,0,0,1128,1129,5,251,0,0,1129,1130,5,250, + 0,0,1130,1131,3,300,150,0,1131,1132,5,312,0,0,1132,1133,3,154,77, + 0,1133,1251,1,0,0,0,1134,1135,5,227,0,0,1135,1136,5,250,0,0,1136, + 1251,3,300,150,0,1137,1138,5,255,0,0,1138,1147,5,271,0,0,1139,1144, + 3,232,116,0,1140,1141,5,3,0,0,1141,1143,3,232,116,0,1142,1140,1, + 0,0,0,1143,1146,1,0,0,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145, + 1148,1,0,0,0,1146,1144,1,0,0,0,1147,1139,1,0,0,0,1147,1148,1,0,0, + 0,1148,1251,1,0,0,0,1149,1151,5,47,0,0,1150,1152,5,307,0,0,1151, + 1150,1,0,0,0,1151,1152,1,0,0,0,1152,1251,1,0,0,0,1153,1155,5,237, + 0,0,1154,1156,5,307,0,0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156, + 1251,1,0,0,0,1157,1158,5,214,0,0,1158,1159,3,314,157,0,1159,1160, + 5,105,0,0,1160,1161,3,16,8,0,1161,1251,1,0,0,0,1162,1163,5,68,0, + 0,1163,1164,5,214,0,0,1164,1251,3,314,157,0,1165,1166,5,93,0,0,1166, + 1176,3,314,157,0,1167,1168,5,290,0,0,1168,1173,3,154,77,0,1169,1170, + 5,3,0,0,1170,1172,3,154,77,0,1171,1169,1,0,0,0,1172,1175,1,0,0,0, + 1173,1171,1,0,0,0,1173,1174,1,0,0,0,1174,1177,1,0,0,0,1175,1173, + 1,0,0,0,1176,1167,1,0,0,0,1176,1177,1,0,0,0,1177,1251,1,0,0,0,1178, + 1179,5,93,0,0,1179,1180,5,121,0,0,1180,1190,3,186,93,0,1181,1182, + 5,290,0,0,1182,1187,3,154,77,0,1183,1184,5,3,0,0,1184,1186,3,154, + 77,0,1185,1183,1,0,0,0,1186,1189,1,0,0,0,1187,1185,1,0,0,0,1187, + 1188,1,0,0,0,1188,1191,1,0,0,0,1189,1187,1,0,0,0,1190,1181,1,0,0, + 0,1190,1191,1,0,0,0,1191,1251,1,0,0,0,1192,1193,5,76,0,0,1193,1194, + 5,126,0,0,1194,1251,3,314,157,0,1195,1196,5,76,0,0,1196,1197,5,198, + 0,0,1197,1251,3,314,157,0,1198,1199,5,251,0,0,1199,1200,5,205,0, + 0,1200,1251,3,240,120,0,1201,1202,5,251,0,0,1202,1203,5,267,0,0, + 1203,1206,5,311,0,0,1204,1207,5,157,0,0,1205,1207,3,154,77,0,1206, + 1204,1,0,0,0,1206,1205,1,0,0,0,1207,1251,1,0,0,0,1208,1209,5,287, + 0,0,1209,1210,3,274,137,0,1210,1211,5,251,0,0,1211,1216,3,228,114, + 0,1212,1213,5,3,0,0,1213,1215,3,228,114,0,1214,1212,1,0,0,0,1215, + 1218,1,0,0,0,1216,1214,1,0,0,0,1216,1217,1,0,0,0,1217,1220,1,0,0, + 0,1218,1216,1,0,0,0,1219,1221,3,54,27,0,1220,1219,1,0,0,0,1220,1221, + 1,0,0,0,1221,1251,1,0,0,0,1222,1223,5,169,0,0,1223,1224,5,130,0, + 0,1224,1229,3,274,137,0,1225,1227,5,28,0,0,1226,1225,1,0,0,0,1226, + 1227,1,0,0,0,1227,1228,1,0,0,0,1228,1230,3,314,157,0,1229,1226,1, + 0,0,0,1229,1230,1,0,0,0,1230,1231,1,0,0,0,1231,1232,5,290,0,0,1232, + 1233,3,88,44,0,1233,1234,5,190,0,0,1234,1236,3,154,77,0,1235,1237, + 3,212,106,0,1236,1235,1,0,0,0,1237,1238,1,0,0,0,1238,1236,1,0,0, + 0,1238,1239,1,0,0,0,1239,1251,1,0,0,0,1240,1241,5,253,0,0,1241,1242, + 5,46,0,0,1242,1243,5,190,0,0,1243,1244,5,260,0,0,1244,1251,3,274, + 137,0,1245,1246,5,253,0,0,1246,1247,5,46,0,0,1247,1248,5,190,0,0, + 1248,1249,5,44,0,0,1249,1251,3,294,147,0,1250,355,1,0,0,0,1250,356, + 1,0,0,0,1250,358,1,0,0,0,1250,380,1,0,0,0,1250,390,1,0,0,0,1250, + 406,1,0,0,0,1250,416,1,0,0,0,1250,423,1,0,0,0,1250,430,1,0,0,0,1250, + 468,1,0,0,0,1250,498,1,0,0,0,1250,505,1,0,0,0,1250,513,1,0,0,0,1250, + 519,1,0,0,0,1250,522,1,0,0,0,1250,531,1,0,0,0,1250,540,1,0,0,0,1250, + 549,1,0,0,0,1250,560,1,0,0,0,1250,576,1,0,0,0,1250,593,1,0,0,0,1250, + 608,1,0,0,0,1250,623,1,0,0,0,1250,637,1,0,0,0,1250,644,1,0,0,0,1250, + 651,1,0,0,0,1250,673,1,0,0,0,1250,679,1,0,0,0,1250,708,1,0,0,0,1250, + 730,1,0,0,0,1250,734,1,0,0,0,1250,742,1,0,0,0,1250,754,1,0,0,0,1250, + 762,1,0,0,0,1250,769,1,0,0,0,1250,776,1,0,0,0,1250,783,1,0,0,0,1250, + 798,1,0,0,0,1250,804,1,0,0,0,1250,811,1,0,0,0,1250,823,1,0,0,0,1250, + 830,1,0,0,0,1250,862,1,0,0,0,1250,884,1,0,0,0,1250,916,1,0,0,0,1250, + 939,1,0,0,0,1250,957,1,0,0,0,1250,968,1,0,0,0,1250,974,1,0,0,0,1250, + 989,1,0,0,0,1250,995,1,0,0,0,1250,999,1,0,0,0,1250,1003,1,0,0,0, + 1250,1007,1,0,0,0,1250,1012,1,0,0,0,1250,1016,1,0,0,0,1250,1030, + 1,0,0,0,1250,1044,1,0,0,0,1250,1054,1,0,0,0,1250,1066,1,0,0,0,1250, + 1070,1,0,0,0,1250,1077,1,0,0,0,1250,1086,1,0,0,0,1250,1093,1,0,0, + 0,1250,1095,1,0,0,0,1250,1097,1,0,0,0,1250,1111,1,0,0,0,1250,1121, + 1,0,0,0,1250,1125,1,0,0,0,1250,1128,1,0,0,0,1250,1134,1,0,0,0,1250, + 1137,1,0,0,0,1250,1149,1,0,0,0,1250,1153,1,0,0,0,1250,1157,1,0,0, + 0,1250,1162,1,0,0,0,1250,1165,1,0,0,0,1250,1178,1,0,0,0,1250,1192, + 1,0,0,0,1250,1195,1,0,0,0,1250,1198,1,0,0,0,1250,1201,1,0,0,0,1250, + 1208,1,0,0,0,1250,1222,1,0,0,0,1250,1240,1,0,0,0,1250,1245,1,0,0, + 0,1251,17,1,0,0,0,1252,1254,3,20,10,0,1253,1252,1,0,0,0,1253,1254, + 1,0,0,0,1254,1255,1,0,0,0,1255,1256,3,22,11,0,1256,19,1,0,0,0,1257, + 1258,5,304,0,0,1258,1263,3,242,121,0,1259,1260,5,3,0,0,1260,1262, + 3,242,121,0,1261,1259,1,0,0,0,1262,1265,1,0,0,0,1263,1261,1,0,0, + 0,1263,1264,1,0,0,0,1264,21,1,0,0,0,1265,1263,1,0,0,0,1266,1268, + 3,24,12,0,1267,1266,1,0,0,0,1267,1268,1,0,0,0,1268,1269,1,0,0,0, + 1269,1270,3,40,20,0,1270,23,1,0,0,0,1271,1273,5,304,0,0,1272,1274, + 5,221,0,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0,1274,1275,1,0,0,0, + 1275,1280,3,74,37,0,1276,1277,5,3,0,0,1277,1279,3,74,37,0,1278,1276, + 1,0,0,0,1279,1282,1,0,0,0,1280,1278,1,0,0,0,1280,1281,1,0,0,0,1281, + 25,1,0,0,0,1282,1280,1,0,0,0,1283,1286,3,28,14,0,1284,1286,3,30, + 15,0,1285,1283,1,0,0,0,1285,1284,1,0,0,0,1286,27,1,0,0,0,1287,1288, + 3,298,149,0,1288,1291,3,202,101,0,1289,1290,5,182,0,0,1290,1292, + 5,183,0,0,1291,1289,1,0,0,0,1291,1292,1,0,0,0,1292,1295,1,0,0,0, + 1293,1294,5,46,0,0,1294,1296,3,186,93,0,1295,1293,1,0,0,0,1295,1296, + 1,0,0,0,1296,1299,1,0,0,0,1297,1298,5,304,0,0,1298,1300,3,32,16, + 0,1299,1297,1,0,0,0,1299,1300,1,0,0,0,1300,29,1,0,0,0,1301,1302, + 5,154,0,0,1302,1305,3,274,137,0,1303,1304,7,3,0,0,1304,1306,5,216, + 0,0,1305,1303,1,0,0,0,1305,1306,1,0,0,0,1306,31,1,0,0,0,1307,1308, + 5,1,0,0,1308,1309,3,34,17,0,1309,1310,5,2,0,0,1310,33,1,0,0,0,1311, + 1316,3,36,18,0,1312,1313,5,3,0,0,1313,1315,3,36,18,0,1314,1312,1, + 0,0,0,1315,1318,1,0,0,0,1316,1314,1,0,0,0,1316,1317,1,0,0,0,1317, + 35,1,0,0,0,1318,1316,1,0,0,0,1319,1320,3,314,157,0,1320,1321,5,312, + 0,0,1321,1322,3,38,19,0,1322,37,1,0,0,0,1323,1326,5,70,0,0,1324, + 1326,3,154,77,0,1325,1323,1,0,0,0,1325,1324,1,0,0,0,1326,39,1,0, + 0,0,1327,1338,3,46,23,0,1328,1329,5,195,0,0,1329,1330,5,36,0,0,1330, + 1335,3,50,25,0,1331,1332,5,3,0,0,1332,1334,3,50,25,0,1333,1331,1, + 0,0,0,1334,1337,1,0,0,0,1335,1333,1,0,0,0,1335,1336,1,0,0,0,1336, + 1339,1,0,0,0,1337,1335,1,0,0,0,1338,1328,1,0,0,0,1338,1339,1,0,0, + 0,1339,1345,1,0,0,0,1340,1341,5,188,0,0,1341,1343,3,44,22,0,1342, + 1344,7,4,0,0,1343,1342,1,0,0,0,1343,1344,1,0,0,0,1344,1346,1,0,0, + 0,1345,1340,1,0,0,0,1345,1346,1,0,0,0,1346,1360,1,0,0,0,1347,1348, + 5,155,0,0,1348,1361,3,42,21,0,1349,1350,5,98,0,0,1350,1352,7,5,0, + 0,1351,1353,3,44,22,0,1352,1351,1,0,0,0,1352,1353,1,0,0,0,1353,1354, + 1,0,0,0,1354,1358,7,4,0,0,1355,1359,5,192,0,0,1356,1357,5,304,0, + 0,1357,1359,5,266,0,0,1358,1355,1,0,0,0,1358,1356,1,0,0,0,1359,1361, + 1,0,0,0,1360,1347,1,0,0,0,1360,1349,1,0,0,0,1360,1361,1,0,0,0,1361, + 41,1,0,0,0,1362,1365,5,22,0,0,1363,1365,3,44,22,0,1364,1362,1,0, + 0,0,1364,1363,1,0,0,0,1365,43,1,0,0,0,1366,1367,7,6,0,0,1367,45, + 1,0,0,0,1368,1369,6,23,-1,0,1369,1370,3,48,24,0,1370,1385,1,0,0, + 0,1371,1372,10,2,0,0,1372,1374,5,128,0,0,1373,1375,3,76,38,0,1374, + 1373,1,0,0,0,1374,1375,1,0,0,0,1375,1376,1,0,0,0,1376,1384,3,46, + 23,3,1377,1378,10,1,0,0,1378,1380,7,7,0,0,1379,1381,3,76,38,0,1380, + 1379,1,0,0,0,1380,1381,1,0,0,0,1381,1382,1,0,0,0,1382,1384,3,46, + 23,2,1383,1371,1,0,0,0,1383,1377,1,0,0,0,1384,1387,1,0,0,0,1385, + 1383,1,0,0,0,1385,1386,1,0,0,0,1386,47,1,0,0,0,1387,1385,1,0,0,0, + 1388,1405,3,52,26,0,1389,1390,5,260,0,0,1390,1405,3,274,137,0,1391, + 1392,5,296,0,0,1392,1397,3,154,77,0,1393,1394,5,3,0,0,1394,1396, + 3,154,77,0,1395,1393,1,0,0,0,1396,1399,1,0,0,0,1397,1395,1,0,0,0, + 1397,1398,1,0,0,0,1398,1405,1,0,0,0,1399,1397,1,0,0,0,1400,1401, + 5,1,0,0,1401,1402,3,40,20,0,1402,1403,5,2,0,0,1403,1405,1,0,0,0, + 1404,1388,1,0,0,0,1404,1389,1,0,0,0,1404,1391,1,0,0,0,1404,1400, + 1,0,0,0,1405,49,1,0,0,0,1406,1409,3,294,147,0,1407,1409,3,154,77, + 0,1408,1406,1,0,0,0,1408,1407,1,0,0,0,1409,1411,1,0,0,0,1410,1412, + 7,8,0,0,1411,1410,1,0,0,0,1411,1412,1,0,0,0,1412,1415,1,0,0,0,1413, + 1414,5,185,0,0,1414,1416,7,9,0,0,1415,1413,1,0,0,0,1415,1416,1,0, + 0,0,1416,51,1,0,0,0,1417,1419,5,248,0,0,1418,1420,3,76,38,0,1419, + 1418,1,0,0,0,1419,1420,1,0,0,0,1420,1421,1,0,0,0,1421,1431,3,58, + 29,0,1422,1423,5,105,0,0,1423,1428,3,88,44,0,1424,1425,5,3,0,0,1425, + 1427,3,88,44,0,1426,1424,1,0,0,0,1427,1430,1,0,0,0,1428,1426,1,0, + 0,0,1428,1429,1,0,0,0,1429,1432,1,0,0,0,1430,1428,1,0,0,0,1431,1422, + 1,0,0,0,1431,1432,1,0,0,0,1432,1434,1,0,0,0,1433,1435,3,54,27,0, + 1434,1433,1,0,0,0,1434,1435,1,0,0,0,1435,1439,1,0,0,0,1436,1437, + 5,114,0,0,1437,1438,5,36,0,0,1438,1440,3,60,30,0,1439,1436,1,0,0, + 0,1439,1440,1,0,0,0,1440,1442,1,0,0,0,1441,1443,3,56,28,0,1442,1441, + 1,0,0,0,1442,1443,1,0,0,0,1443,1453,1,0,0,0,1444,1445,5,303,0,0, + 1445,1450,3,70,35,0,1446,1447,5,3,0,0,1447,1449,3,70,35,0,1448,1446, + 1,0,0,0,1449,1452,1,0,0,0,1450,1448,1,0,0,0,1450,1451,1,0,0,0,1451, + 1454,1,0,0,0,1452,1450,1,0,0,0,1453,1444,1,0,0,0,1453,1454,1,0,0, + 0,1454,53,1,0,0,0,1455,1456,5,301,0,0,1456,1457,3,156,78,0,1457, + 55,1,0,0,0,1458,1459,5,117,0,0,1459,1460,3,156,78,0,1460,57,1,0, + 0,0,1461,1466,3,78,39,0,1462,1463,5,3,0,0,1463,1465,3,78,39,0,1464, + 1462,1,0,0,0,1465,1468,1,0,0,0,1466,1464,1,0,0,0,1466,1467,1,0,0, + 0,1467,59,1,0,0,0,1468,1466,1,0,0,0,1469,1471,3,76,38,0,1470,1469, + 1,0,0,0,1470,1471,1,0,0,0,1471,1472,1,0,0,0,1472,1477,3,64,32,0, + 1473,1474,5,3,0,0,1474,1476,3,64,32,0,1475,1473,1,0,0,0,1476,1479, + 1,0,0,0,1477,1475,1,0,0,0,1477,1478,1,0,0,0,1478,61,1,0,0,0,1479, + 1477,1,0,0,0,1480,1485,3,154,77,0,1481,1482,5,3,0,0,1482,1484,3, + 154,77,0,1483,1481,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1485, + 1486,1,0,0,0,1486,63,1,0,0,0,1487,1485,1,0,0,0,1488,1529,3,66,33, + 0,1489,1490,5,238,0,0,1490,1499,5,1,0,0,1491,1496,3,66,33,0,1492, + 1493,5,3,0,0,1493,1495,3,66,33,0,1494,1492,1,0,0,0,1495,1498,1,0, + 0,0,1496,1494,1,0,0,0,1496,1497,1,0,0,0,1497,1500,1,0,0,0,1498,1496, + 1,0,0,0,1499,1491,1,0,0,0,1499,1500,1,0,0,0,1500,1501,1,0,0,0,1501, + 1529,5,2,0,0,1502,1503,5,55,0,0,1503,1512,5,1,0,0,1504,1509,3,66, + 33,0,1505,1506,5,3,0,0,1506,1508,3,66,33,0,1507,1505,1,0,0,0,1508, + 1511,1,0,0,0,1509,1507,1,0,0,0,1509,1510,1,0,0,0,1510,1513,1,0,0, + 0,1511,1509,1,0,0,0,1512,1504,1,0,0,0,1512,1513,1,0,0,0,1513,1514, + 1,0,0,0,1514,1529,5,2,0,0,1515,1516,5,115,0,0,1516,1517,5,252,0, + 0,1517,1518,5,1,0,0,1518,1523,3,66,33,0,1519,1520,5,3,0,0,1520,1522, + 3,66,33,0,1521,1519,1,0,0,0,1522,1525,1,0,0,0,1523,1521,1,0,0,0, + 1523,1524,1,0,0,0,1524,1526,1,0,0,0,1525,1523,1,0,0,0,1526,1527, + 5,2,0,0,1527,1529,1,0,0,0,1528,1488,1,0,0,0,1528,1489,1,0,0,0,1528, + 1502,1,0,0,0,1528,1515,1,0,0,0,1529,65,1,0,0,0,1530,1539,5,1,0,0, + 1531,1536,3,68,34,0,1532,1533,5,3,0,0,1533,1535,3,68,34,0,1534,1532, + 1,0,0,0,1535,1538,1,0,0,0,1536,1534,1,0,0,0,1536,1537,1,0,0,0,1537, + 1540,1,0,0,0,1538,1536,1,0,0,0,1539,1531,1,0,0,0,1539,1540,1,0,0, + 0,1540,1541,1,0,0,0,1541,1544,5,2,0,0,1542,1544,3,68,34,0,1543,1530, + 1,0,0,0,1543,1542,1,0,0,0,1544,67,1,0,0,0,1545,1548,3,294,147,0, + 1546,1548,3,154,77,0,1547,1545,1,0,0,0,1547,1546,1,0,0,0,1548,69, + 1,0,0,0,1549,1550,3,314,157,0,1550,1551,5,28,0,0,1551,1552,5,1,0, + 0,1552,1553,3,72,36,0,1553,1554,5,2,0,0,1554,71,1,0,0,0,1555,1557, + 3,314,157,0,1556,1555,1,0,0,0,1556,1557,1,0,0,0,1557,1561,1,0,0, + 0,1558,1559,5,201,0,0,1559,1560,5,36,0,0,1560,1562,3,62,31,0,1561, + 1558,1,0,0,0,1561,1562,1,0,0,0,1562,1573,1,0,0,0,1563,1564,5,195, + 0,0,1564,1565,5,36,0,0,1565,1570,3,50,25,0,1566,1567,5,3,0,0,1567, + 1569,3,50,25,0,1568,1566,1,0,0,0,1569,1572,1,0,0,0,1570,1568,1,0, + 0,0,1570,1571,1,0,0,0,1571,1574,1,0,0,0,1572,1570,1,0,0,0,1573,1563, + 1,0,0,0,1573,1574,1,0,0,0,1574,1576,1,0,0,0,1575,1577,3,216,108, + 0,1576,1575,1,0,0,0,1576,1577,1,0,0,0,1577,73,1,0,0,0,1578,1580, + 3,314,157,0,1579,1581,3,124,62,0,1580,1579,1,0,0,0,1580,1581,1,0, + 0,0,1581,1582,1,0,0,0,1582,1583,5,28,0,0,1583,1584,5,1,0,0,1584, + 1585,3,22,11,0,1585,1586,5,2,0,0,1586,75,1,0,0,0,1587,1588,7,10, + 0,0,1588,77,1,0,0,0,1589,1592,3,84,42,0,1590,1592,3,86,43,0,1591, + 1589,1,0,0,0,1591,1590,1,0,0,0,1592,1597,1,0,0,0,1593,1595,5,28, + 0,0,1594,1593,1,0,0,0,1594,1595,1,0,0,0,1595,1596,1,0,0,0,1596,1598, + 3,314,157,0,1597,1594,1,0,0,0,1597,1598,1,0,0,0,1598,1606,1,0,0, + 0,1599,1602,3,82,41,0,1600,1601,5,28,0,0,1601,1603,3,124,62,0,1602, + 1600,1,0,0,0,1602,1603,1,0,0,0,1603,1606,1,0,0,0,1604,1606,3,80, + 40,0,1605,1591,1,0,0,0,1605,1599,1,0,0,0,1605,1604,1,0,0,0,1606, + 79,1,0,0,0,1607,1608,5,320,0,0,1608,81,1,0,0,0,1609,1610,3,162,81, + 0,1610,1611,5,4,0,0,1611,1612,5,320,0,0,1612,83,1,0,0,0,1613,1614, + 3,294,147,0,1614,85,1,0,0,0,1615,1616,3,154,77,0,1616,87,1,0,0,0, + 1617,1618,6,44,-1,0,1618,1619,3,94,47,0,1619,1638,1,0,0,0,1620,1634, + 10,2,0,0,1621,1622,5,54,0,0,1622,1623,5,136,0,0,1623,1635,3,94,47, + 0,1624,1625,3,90,45,0,1625,1626,5,136,0,0,1626,1627,3,88,44,0,1627, + 1628,3,92,46,0,1628,1635,1,0,0,0,1629,1630,5,172,0,0,1630,1631,3, + 90,45,0,1631,1632,5,136,0,0,1632,1633,3,94,47,0,1633,1635,1,0,0, + 0,1634,1621,1,0,0,0,1634,1624,1,0,0,0,1634,1629,1,0,0,0,1635,1637, + 1,0,0,0,1636,1620,1,0,0,0,1637,1640,1,0,0,0,1638,1636,1,0,0,0,1638, + 1639,1,0,0,0,1639,89,1,0,0,0,1640,1638,1,0,0,0,1641,1643,5,125,0, + 0,1642,1641,1,0,0,0,1642,1643,1,0,0,0,1643,1657,1,0,0,0,1644,1646, + 5,152,0,0,1645,1647,5,197,0,0,1646,1645,1,0,0,0,1646,1647,1,0,0, + 0,1647,1657,1,0,0,0,1648,1650,5,234,0,0,1649,1651,5,197,0,0,1650, + 1649,1,0,0,0,1650,1651,1,0,0,0,1651,1657,1,0,0,0,1652,1654,5,106, + 0,0,1653,1655,5,197,0,0,1654,1653,1,0,0,0,1654,1655,1,0,0,0,1655, + 1657,1,0,0,0,1656,1642,1,0,0,0,1656,1644,1,0,0,0,1656,1648,1,0,0, + 0,1656,1652,1,0,0,0,1657,91,1,0,0,0,1658,1659,5,190,0,0,1659,1673, + 3,156,78,0,1660,1661,5,290,0,0,1661,1662,5,1,0,0,1662,1667,3,314, + 157,0,1663,1664,5,3,0,0,1664,1666,3,314,157,0,1665,1663,1,0,0,0, + 1666,1669,1,0,0,0,1667,1665,1,0,0,0,1667,1668,1,0,0,0,1668,1670, + 1,0,0,0,1669,1667,1,0,0,0,1670,1671,5,2,0,0,1671,1673,1,0,0,0,1672, + 1658,1,0,0,0,1672,1660,1,0,0,0,1673,93,1,0,0,0,1674,1681,3,104,52, + 0,1675,1676,5,262,0,0,1676,1677,3,96,48,0,1677,1678,5,1,0,0,1678, + 1679,3,154,77,0,1679,1680,5,2,0,0,1680,1682,1,0,0,0,1681,1675,1, + 0,0,0,1681,1682,1,0,0,0,1682,95,1,0,0,0,1683,1684,7,11,0,0,1684, + 97,1,0,0,0,1685,1686,7,12,0,0,1686,99,1,0,0,0,1687,1694,5,89,0,0, + 1688,1690,5,274,0,0,1689,1691,3,186,93,0,1690,1689,1,0,0,0,1690, + 1691,1,0,0,0,1691,1692,1,0,0,0,1692,1694,3,102,51,0,1693,1687,1, + 0,0,0,1693,1688,1,0,0,0,1694,101,1,0,0,0,1695,1696,5,304,0,0,1696, + 1700,5,51,0,0,1697,1698,5,306,0,0,1698,1700,5,51,0,0,1699,1695,1, + 0,0,0,1699,1697,1,0,0,0,1700,103,1,0,0,0,1701,1777,3,118,59,0,1702, + 1703,5,166,0,0,1703,1707,5,1,0,0,1704,1705,5,201,0,0,1705,1706,5, + 36,0,0,1706,1708,3,62,31,0,1707,1704,1,0,0,0,1707,1708,1,0,0,0,1708, + 1719,1,0,0,0,1709,1710,5,195,0,0,1710,1711,5,36,0,0,1711,1716,3, + 50,25,0,1712,1713,5,3,0,0,1713,1715,3,50,25,0,1714,1712,1,0,0,0, + 1715,1718,1,0,0,0,1716,1714,1,0,0,0,1716,1717,1,0,0,0,1717,1720, + 1,0,0,0,1718,1716,1,0,0,0,1719,1709,1,0,0,0,1719,1720,1,0,0,0,1720, + 1730,1,0,0,0,1721,1722,5,168,0,0,1722,1727,3,106,53,0,1723,1724, + 5,3,0,0,1724,1726,3,106,53,0,1725,1723,1,0,0,0,1726,1729,1,0,0,0, + 1727,1725,1,0,0,0,1727,1728,1,0,0,0,1728,1731,1,0,0,0,1729,1727, + 1,0,0,0,1730,1721,1,0,0,0,1730,1731,1,0,0,0,1731,1733,1,0,0,0,1732, + 1734,3,108,54,0,1733,1732,1,0,0,0,1733,1734,1,0,0,0,1734,1738,1, + 0,0,0,1735,1736,5,21,0,0,1736,1737,5,163,0,0,1737,1739,3,112,56, + 0,1738,1735,1,0,0,0,1738,1739,1,0,0,0,1739,1741,1,0,0,0,1740,1742, + 7,13,0,0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742,1743,1,0,0,0,1743, + 1744,5,206,0,0,1744,1745,5,1,0,0,1745,1746,3,222,111,0,1746,1756, + 5,2,0,0,1747,1748,5,257,0,0,1748,1753,3,114,57,0,1749,1750,5,3,0, + 0,1750,1752,3,114,57,0,1751,1749,1,0,0,0,1752,1755,1,0,0,0,1753, + 1751,1,0,0,0,1753,1754,1,0,0,0,1754,1757,1,0,0,0,1755,1753,1,0,0, + 0,1756,1747,1,0,0,0,1756,1757,1,0,0,0,1757,1758,1,0,0,0,1758,1759, + 5,71,0,0,1759,1764,3,116,58,0,1760,1761,5,3,0,0,1761,1763,3,116, + 58,0,1762,1760,1,0,0,0,1763,1766,1,0,0,0,1764,1762,1,0,0,0,1764, + 1765,1,0,0,0,1765,1767,1,0,0,0,1766,1764,1,0,0,0,1767,1775,5,2,0, + 0,1768,1770,5,28,0,0,1769,1768,1,0,0,0,1769,1770,1,0,0,0,1770,1771, + 1,0,0,0,1771,1773,3,314,157,0,1772,1774,3,124,62,0,1773,1772,1,0, + 0,0,1773,1774,1,0,0,0,1774,1776,1,0,0,0,1775,1769,1,0,0,0,1775,1776, + 1,0,0,0,1776,1778,1,0,0,0,1777,1702,1,0,0,0,1777,1778,1,0,0,0,1778, + 105,1,0,0,0,1779,1780,3,154,77,0,1780,1781,5,28,0,0,1781,1782,3, + 314,157,0,1782,107,1,0,0,0,1783,1784,5,191,0,0,1784,1785,5,239,0, + 0,1785,1786,5,207,0,0,1786,1795,5,163,0,0,1787,1788,5,22,0,0,1788, + 1789,5,240,0,0,1789,1790,5,207,0,0,1790,1792,5,163,0,0,1791,1793, + 3,110,55,0,1792,1791,1,0,0,0,1792,1793,1,0,0,0,1793,1795,1,0,0,0, + 1794,1783,1,0,0,0,1794,1787,1,0,0,0,1795,109,1,0,0,0,1796,1797,5, + 253,0,0,1797,1798,5,85,0,0,1798,1806,5,165,0,0,1799,1800,5,189,0, + 0,1800,1801,5,85,0,0,1801,1806,5,165,0,0,1802,1803,5,304,0,0,1803, + 1804,5,284,0,0,1804,1806,5,240,0,0,1805,1796,1,0,0,0,1805,1799,1, + 0,0,0,1805,1802,1,0,0,0,1806,111,1,0,0,0,1807,1808,5,5,0,0,1808, + 1809,5,269,0,0,1809,1810,5,174,0,0,1810,1827,5,239,0,0,1811,1812, + 5,5,0,0,1812,1813,5,204,0,0,1813,1814,5,148,0,0,1814,1827,5,239, + 0,0,1815,1816,5,5,0,0,1816,1817,5,269,0,0,1817,1818,5,101,0,0,1818, + 1827,3,314,157,0,1819,1820,5,5,0,0,1820,1821,5,269,0,0,1821,1822, + 5,148,0,0,1822,1827,3,314,157,0,1823,1824,5,5,0,0,1824,1825,5,269, + 0,0,1825,1827,3,314,157,0,1826,1807,1,0,0,0,1826,1811,1,0,0,0,1826, + 1815,1,0,0,0,1826,1819,1,0,0,0,1826,1823,1,0,0,0,1827,113,1,0,0, + 0,1828,1829,3,314,157,0,1829,1830,5,312,0,0,1830,1831,5,1,0,0,1831, + 1836,3,314,157,0,1832,1833,5,3,0,0,1833,1835,3,314,157,0,1834,1832, + 1,0,0,0,1835,1838,1,0,0,0,1836,1834,1,0,0,0,1836,1837,1,0,0,0,1837, + 1839,1,0,0,0,1838,1836,1,0,0,0,1839,1840,5,2,0,0,1840,115,1,0,0, + 0,1841,1842,3,314,157,0,1842,1843,5,28,0,0,1843,1844,3,154,77,0, + 1844,117,1,0,0,0,1845,1853,3,126,63,0,1846,1848,5,28,0,0,1847,1846, + 1,0,0,0,1847,1848,1,0,0,0,1848,1849,1,0,0,0,1849,1851,3,314,157, + 0,1850,1852,3,124,62,0,1851,1850,1,0,0,0,1851,1852,1,0,0,0,1852, + 1854,1,0,0,0,1853,1847,1,0,0,0,1853,1854,1,0,0,0,1854,119,1,0,0, + 0,1855,1856,5,1,0,0,1856,1861,3,298,149,0,1857,1858,5,3,0,0,1858, + 1860,3,298,149,0,1859,1857,1,0,0,0,1860,1863,1,0,0,0,1861,1859,1, + 0,0,0,1861,1862,1,0,0,0,1862,1864,1,0,0,0,1863,1861,1,0,0,0,1864, + 1865,5,2,0,0,1865,121,1,0,0,0,1866,1867,5,1,0,0,1867,1872,3,294, + 147,0,1868,1869,5,3,0,0,1869,1871,3,294,147,0,1870,1868,1,0,0,0, + 1871,1874,1,0,0,0,1872,1870,1,0,0,0,1872,1873,1,0,0,0,1873,1875, + 1,0,0,0,1874,1872,1,0,0,0,1875,1876,5,2,0,0,1876,123,1,0,0,0,1877, + 1878,5,1,0,0,1878,1883,3,314,157,0,1879,1880,5,3,0,0,1880,1882,3, + 314,157,0,1881,1879,1,0,0,0,1882,1885,1,0,0,0,1883,1881,1,0,0,0, + 1883,1884,1,0,0,0,1884,1886,1,0,0,0,1885,1883,1,0,0,0,1886,1887, + 5,2,0,0,1887,125,1,0,0,0,1888,1890,3,272,136,0,1889,1891,3,302,151, + 0,1890,1889,1,0,0,0,1890,1891,1,0,0,0,1891,1898,1,0,0,0,1892,1898, + 3,128,64,0,1893,1894,5,1,0,0,1894,1895,3,88,44,0,1895,1896,5,2,0, + 0,1896,1898,1,0,0,0,1897,1888,1,0,0,0,1897,1892,1,0,0,0,1897,1893, + 1,0,0,0,1898,127,1,0,0,0,1899,1900,5,1,0,0,1900,1901,3,22,11,0,1901, + 1902,5,2,0,0,1902,1963,1,0,0,0,1903,1904,5,285,0,0,1904,1905,5,1, + 0,0,1905,1910,3,154,77,0,1906,1907,5,3,0,0,1907,1909,3,154,77,0, + 1908,1906,1,0,0,0,1909,1912,1,0,0,0,1910,1908,1,0,0,0,1910,1911, + 1,0,0,0,1911,1913,1,0,0,0,1912,1910,1,0,0,0,1913,1916,5,2,0,0,1914, + 1915,5,304,0,0,1915,1917,5,196,0,0,1916,1914,1,0,0,0,1916,1917,1, + 0,0,0,1917,1963,1,0,0,0,1918,1919,5,149,0,0,1919,1920,5,1,0,0,1920, + 1921,3,22,11,0,1921,1922,5,2,0,0,1922,1963,1,0,0,0,1923,1924,5,260, + 0,0,1924,1925,5,1,0,0,1925,1926,3,140,70,0,1926,1927,5,2,0,0,1927, + 1963,1,0,0,0,1928,1929,5,142,0,0,1929,1930,5,1,0,0,1930,1931,3,164, + 82,0,1931,1932,5,45,0,0,1932,1933,5,1,0,0,1933,1938,3,130,65,0,1934, + 1935,5,3,0,0,1935,1937,3,130,65,0,1936,1934,1,0,0,0,1937,1940,1, + 0,0,0,1938,1936,1,0,0,0,1938,1939,1,0,0,0,1939,1941,1,0,0,0,1940, + 1938,1,0,0,0,1941,1953,5,2,0,0,1942,1943,5,210,0,0,1943,1944,5,1, + 0,0,1944,1945,3,132,66,0,1945,1946,5,2,0,0,1946,1954,1,0,0,0,1947, + 1948,5,210,0,0,1948,1949,5,70,0,0,1949,1950,5,1,0,0,1950,1951,3, + 138,69,0,1951,1952,5,2,0,0,1952,1954,1,0,0,0,1953,1942,1,0,0,0,1953, + 1947,1,0,0,0,1953,1954,1,0,0,0,1954,1958,1,0,0,0,1955,1956,7,14, + 0,0,1956,1957,5,190,0,0,1957,1959,5,89,0,0,1958,1955,1,0,0,0,1958, + 1959,1,0,0,0,1959,1960,1,0,0,0,1960,1961,5,2,0,0,1961,1963,1,0,0, + 0,1962,1899,1,0,0,0,1962,1903,1,0,0,0,1962,1918,1,0,0,0,1962,1923, + 1,0,0,0,1962,1928,1,0,0,0,1963,129,1,0,0,0,1964,1965,3,314,157,0, + 1965,1966,5,103,0,0,1966,1967,5,196,0,0,1967,2042,1,0,0,0,1968,1969, + 3,314,157,0,1969,1972,3,202,101,0,1970,1971,5,205,0,0,1971,1973, + 3,186,93,0,1972,1970,1,0,0,0,1972,1973,1,0,0,0,1973,1978,1,0,0,0, + 1974,1975,3,174,87,0,1975,1976,5,190,0,0,1976,1977,5,85,0,0,1977, + 1979,1,0,0,0,1978,1974,1,0,0,0,1978,1979,1,0,0,0,1979,1984,1,0,0, + 0,1980,1981,3,174,87,0,1981,1982,5,190,0,0,1982,1983,5,89,0,0,1983, + 1985,1,0,0,0,1984,1980,1,0,0,0,1984,1985,1,0,0,0,1985,2042,1,0,0, + 0,1986,1987,3,314,157,0,1987,1988,3,202,101,0,1988,1989,5,104,0, + 0,1989,1992,3,168,84,0,1990,1991,5,205,0,0,1991,1993,3,186,93,0, + 1992,1990,1,0,0,0,1992,1993,1,0,0,0,1993,1997,1,0,0,0,1994,1995, + 3,176,88,0,1995,1996,5,308,0,0,1996,1998,1,0,0,0,1997,1994,1,0,0, + 0,1997,1998,1,0,0,0,1998,2006,1,0,0,0,1999,2000,7,15,0,0,2000,2004, + 5,218,0,0,2001,2002,5,190,0,0,2002,2003,5,242,0,0,2003,2005,5,264, + 0,0,2004,2001,1,0,0,0,2004,2005,1,0,0,0,2005,2007,1,0,0,0,2006,1999, + 1,0,0,0,2006,2007,1,0,0,0,2007,2012,1,0,0,0,2008,2009,3,178,89,0, + 2009,2010,5,190,0,0,2010,2011,5,85,0,0,2011,2013,1,0,0,0,2012,2008, + 1,0,0,0,2012,2013,1,0,0,0,2013,2018,1,0,0,0,2014,2015,3,178,89,0, + 2015,2016,5,190,0,0,2016,2017,5,89,0,0,2017,2019,1,0,0,0,2018,2014, + 1,0,0,0,2018,2019,1,0,0,0,2019,2042,1,0,0,0,2020,2022,5,173,0,0, + 2021,2023,5,205,0,0,2022,2021,1,0,0,0,2022,2023,1,0,0,0,2023,2024, + 1,0,0,0,2024,2027,3,186,93,0,2025,2026,5,28,0,0,2026,2028,3,314, + 157,0,2027,2025,1,0,0,0,2027,2028,1,0,0,0,2028,2029,1,0,0,0,2029, + 2030,5,45,0,0,2030,2031,5,1,0,0,2031,2036,3,130,65,0,2032,2033,5, + 3,0,0,2033,2035,3,130,65,0,2034,2032,1,0,0,0,2035,2038,1,0,0,0,2036, + 2034,1,0,0,0,2036,2037,1,0,0,0,2037,2039,1,0,0,0,2038,2036,1,0,0, + 0,2039,2040,5,2,0,0,2040,2042,1,0,0,0,2041,1964,1,0,0,0,2041,1968, + 1,0,0,0,2041,1986,1,0,0,0,2041,2020,1,0,0,0,2042,131,1,0,0,0,2043, + 2069,3,134,67,0,2044,2045,3,134,67,0,2045,2046,7,16,0,0,2046,2047, + 3,136,68,0,2047,2069,1,0,0,0,2048,2049,3,136,68,0,2049,2050,5,281, + 0,0,2050,2055,3,136,68,0,2051,2052,5,281,0,0,2052,2054,3,136,68, + 0,2053,2051,1,0,0,0,2054,2057,1,0,0,0,2055,2053,1,0,0,0,2055,2056, + 1,0,0,0,2056,2069,1,0,0,0,2057,2055,1,0,0,0,2058,2059,3,136,68,0, + 2059,2060,5,54,0,0,2060,2065,3,136,68,0,2061,2062,5,54,0,0,2062, + 2064,3,136,68,0,2063,2061,1,0,0,0,2064,2067,1,0,0,0,2065,2063,1, + 0,0,0,2065,2066,1,0,0,0,2066,2069,1,0,0,0,2067,2065,1,0,0,0,2068, + 2043,1,0,0,0,2068,2044,1,0,0,0,2068,2048,1,0,0,0,2068,2058,1,0,0, + 0,2069,133,1,0,0,0,2070,2071,3,314,157,0,2071,135,1,0,0,0,2072,2078, + 3,134,67,0,2073,2074,5,1,0,0,2074,2075,3,132,66,0,2075,2076,5,2, + 0,0,2076,2078,1,0,0,0,2077,2072,1,0,0,0,2077,2073,1,0,0,0,2078,137, + 1,0,0,0,2079,2082,7,16,0,0,2080,2081,5,3,0,0,2081,2083,7,17,0,0, + 2082,2080,1,0,0,0,2082,2083,1,0,0,0,2083,2090,1,0,0,0,2084,2087, + 7,17,0,0,2085,2086,5,3,0,0,2086,2088,7,16,0,0,2087,2085,1,0,0,0, + 2087,2088,1,0,0,0,2088,2090,1,0,0,0,2089,2079,1,0,0,0,2089,2084, + 1,0,0,0,2090,139,1,0,0,0,2091,2092,3,290,145,0,2092,2101,5,1,0,0, + 2093,2098,3,142,71,0,2094,2095,5,3,0,0,2095,2097,3,142,71,0,2096, + 2094,1,0,0,0,2097,2100,1,0,0,0,2098,2096,1,0,0,0,2098,2099,1,0,0, + 0,2099,2102,1,0,0,0,2100,2098,1,0,0,0,2101,2093,1,0,0,0,2101,2102, + 1,0,0,0,2102,2112,1,0,0,0,2103,2104,5,52,0,0,2104,2109,3,152,76, + 0,2105,2106,5,3,0,0,2106,2108,3,152,76,0,2107,2105,1,0,0,0,2108, + 2111,1,0,0,0,2109,2107,1,0,0,0,2109,2110,1,0,0,0,2110,2113,1,0,0, + 0,2111,2109,1,0,0,0,2112,2103,1,0,0,0,2112,2113,1,0,0,0,2113,2114, + 1,0,0,0,2114,2115,5,2,0,0,2115,141,1,0,0,0,2116,2117,3,314,157,0, + 2117,2118,5,6,0,0,2118,2120,1,0,0,0,2119,2116,1,0,0,0,2119,2120, + 1,0,0,0,2120,2124,1,0,0,0,2121,2125,3,144,72,0,2122,2125,3,148,74, + 0,2123,2125,3,154,77,0,2124,2121,1,0,0,0,2124,2122,1,0,0,0,2124, + 2123,1,0,0,0,2125,143,1,0,0,0,2126,2137,3,146,73,0,2127,2128,5,201, + 0,0,2128,2135,5,36,0,0,2129,2131,5,1,0,0,2130,2132,3,62,31,0,2131, + 2130,1,0,0,0,2131,2132,1,0,0,0,2132,2133,1,0,0,0,2133,2136,5,2,0, + 0,2134,2136,3,154,77,0,2135,2129,1,0,0,0,2135,2134,1,0,0,0,2136, + 2138,1,0,0,0,2137,2127,1,0,0,0,2137,2138,1,0,0,0,2138,2145,1,0,0, + 0,2139,2140,5,217,0,0,2140,2141,5,300,0,0,2141,2146,5,85,0,0,2142, + 2143,5,144,0,0,2143,2144,5,300,0,0,2144,2146,5,85,0,0,2145,2139, + 1,0,0,0,2145,2142,1,0,0,0,2145,2146,1,0,0,0,2146,2163,1,0,0,0,2147, + 2148,5,195,0,0,2148,2161,5,36,0,0,2149,2150,5,1,0,0,2150,2155,3, + 50,25,0,2151,2152,5,3,0,0,2152,2154,3,50,25,0,2153,2151,1,0,0,0, + 2154,2157,1,0,0,0,2155,2153,1,0,0,0,2155,2156,1,0,0,0,2156,2158, + 1,0,0,0,2157,2155,1,0,0,0,2158,2159,5,2,0,0,2159,2162,1,0,0,0,2160, + 2162,3,50,25,0,2161,2149,1,0,0,0,2161,2160,1,0,0,0,2162,2164,1,0, + 0,0,2163,2147,1,0,0,0,2163,2164,1,0,0,0,2164,145,1,0,0,0,2165,2166, + 5,260,0,0,2166,2167,5,1,0,0,2167,2168,3,274,137,0,2168,2176,5,2, + 0,0,2169,2171,5,28,0,0,2170,2169,1,0,0,0,2170,2171,1,0,0,0,2171, + 2172,1,0,0,0,2172,2174,3,314,157,0,2173,2175,3,124,62,0,2174,2173, + 1,0,0,0,2174,2175,1,0,0,0,2175,2177,1,0,0,0,2176,2170,1,0,0,0,2176, + 2177,1,0,0,0,2177,2192,1,0,0,0,2178,2179,5,260,0,0,2179,2180,5,1, + 0,0,2180,2181,3,22,11,0,2181,2189,5,2,0,0,2182,2184,5,28,0,0,2183, + 2182,1,0,0,0,2183,2184,1,0,0,0,2184,2185,1,0,0,0,2185,2187,3,314, + 157,0,2186,2188,3,124,62,0,2187,2186,1,0,0,0,2187,2188,1,0,0,0,2188, + 2190,1,0,0,0,2189,2183,1,0,0,0,2189,2190,1,0,0,0,2190,2192,1,0,0, + 0,2191,2165,1,0,0,0,2191,2178,1,0,0,0,2192,147,1,0,0,0,2193,2194, + 5,77,0,0,2194,2195,5,1,0,0,2195,2200,3,150,75,0,2196,2197,5,3,0, + 0,2197,2199,3,150,75,0,2198,2196,1,0,0,0,2199,2202,1,0,0,0,2200, + 2198,1,0,0,0,2200,2201,1,0,0,0,2201,2203,1,0,0,0,2202,2200,1,0,0, + 0,2203,2204,5,2,0,0,2204,2212,1,0,0,0,2205,2206,5,41,0,0,2206,2207, + 5,1,0,0,2207,2208,5,183,0,0,2208,2209,5,28,0,0,2209,2210,5,77,0, + 0,2210,2212,5,2,0,0,2211,2193,1,0,0,0,2211,2205,1,0,0,0,2212,149, + 1,0,0,0,2213,2215,3,314,157,0,2214,2216,3,202,101,0,2215,2214,1, + 0,0,0,2215,2216,1,0,0,0,2216,151,1,0,0,0,2217,2218,5,1,0,0,2218, + 2219,3,300,150,0,2219,2220,5,3,0,0,2220,2225,3,300,150,0,2221,2222, + 5,3,0,0,2222,2224,3,300,150,0,2223,2221,1,0,0,0,2224,2227,1,0,0, + 0,2225,2223,1,0,0,0,2225,2226,1,0,0,0,2226,2228,1,0,0,0,2227,2225, + 1,0,0,0,2228,2229,5,2,0,0,2229,153,1,0,0,0,2230,2231,3,156,78,0, + 2231,155,1,0,0,0,2232,2233,6,78,-1,0,2233,2235,3,160,80,0,2234,2236, + 3,158,79,0,2235,2234,1,0,0,0,2235,2236,1,0,0,0,2236,2240,1,0,0,0, + 2237,2238,5,182,0,0,2238,2240,3,156,78,3,2239,2232,1,0,0,0,2239, + 2237,1,0,0,0,2240,2249,1,0,0,0,2241,2242,10,2,0,0,2242,2243,5,25, + 0,0,2243,2248,3,156,78,3,2244,2245,10,1,0,0,2245,2246,5,194,0,0, + 2246,2248,3,156,78,2,2247,2241,1,0,0,0,2247,2244,1,0,0,0,2248,2251, + 1,0,0,0,2249,2247,1,0,0,0,2249,2250,1,0,0,0,2250,157,1,0,0,0,2251, + 2249,1,0,0,0,2252,2253,3,190,95,0,2253,2254,3,160,80,0,2254,2314, + 1,0,0,0,2255,2256,3,190,95,0,2256,2257,3,192,96,0,2257,2258,5,1, + 0,0,2258,2259,3,22,11,0,2259,2260,5,2,0,0,2260,2314,1,0,0,0,2261, + 2263,5,182,0,0,2262,2261,1,0,0,0,2262,2263,1,0,0,0,2263,2264,1,0, + 0,0,2264,2265,5,34,0,0,2265,2266,3,160,80,0,2266,2267,5,25,0,0,2267, + 2268,3,160,80,0,2268,2314,1,0,0,0,2269,2271,5,182,0,0,2270,2269, + 1,0,0,0,2270,2271,1,0,0,0,2271,2272,1,0,0,0,2272,2273,5,122,0,0, + 2273,2274,5,1,0,0,2274,2279,3,154,77,0,2275,2276,5,3,0,0,2276,2278, + 3,154,77,0,2277,2275,1,0,0,0,2278,2281,1,0,0,0,2279,2277,1,0,0,0, + 2279,2280,1,0,0,0,2280,2282,1,0,0,0,2281,2279,1,0,0,0,2282,2283, + 5,2,0,0,2283,2314,1,0,0,0,2284,2286,5,182,0,0,2285,2284,1,0,0,0, + 2285,2286,1,0,0,0,2286,2287,1,0,0,0,2287,2288,5,122,0,0,2288,2289, + 5,1,0,0,2289,2290,3,22,11,0,2290,2291,5,2,0,0,2291,2314,1,0,0,0, + 2292,2294,5,182,0,0,2293,2292,1,0,0,0,2293,2294,1,0,0,0,2294,2295, + 1,0,0,0,2295,2296,5,154,0,0,2296,2299,3,160,80,0,2297,2298,5,90, + 0,0,2298,2300,3,160,80,0,2299,2297,1,0,0,0,2299,2300,1,0,0,0,2300, + 2314,1,0,0,0,2301,2303,5,133,0,0,2302,2304,5,182,0,0,2303,2302,1, + 0,0,0,2303,2304,1,0,0,0,2304,2305,1,0,0,0,2305,2314,5,183,0,0,2306, + 2308,5,133,0,0,2307,2309,5,182,0,0,2308,2307,1,0,0,0,2308,2309,1, + 0,0,0,2309,2310,1,0,0,0,2310,2311,5,79,0,0,2311,2312,5,105,0,0,2312, + 2314,3,160,80,0,2313,2252,1,0,0,0,2313,2255,1,0,0,0,2313,2262,1, + 0,0,0,2313,2270,1,0,0,0,2313,2285,1,0,0,0,2313,2293,1,0,0,0,2313, + 2301,1,0,0,0,2313,2306,1,0,0,0,2314,159,1,0,0,0,2315,2316,6,80,-1, + 0,2316,2320,3,162,81,0,2317,2318,7,18,0,0,2318,2320,3,160,80,4,2319, + 2315,1,0,0,0,2319,2317,1,0,0,0,2320,2335,1,0,0,0,2321,2322,10,3, + 0,0,2322,2323,7,19,0,0,2323,2334,3,160,80,4,2324,2325,10,2,0,0,2325, + 2326,7,18,0,0,2326,2334,3,160,80,3,2327,2328,10,1,0,0,2328,2329, + 5,323,0,0,2329,2334,3,160,80,2,2330,2331,10,5,0,0,2331,2332,5,30, + 0,0,2332,2334,3,188,94,0,2333,2321,1,0,0,0,2333,2324,1,0,0,0,2333, + 2327,1,0,0,0,2333,2330,1,0,0,0,2334,2337,1,0,0,0,2335,2333,1,0,0, + 0,2335,2336,1,0,0,0,2336,161,1,0,0,0,2337,2335,1,0,0,0,2338,2339, + 6,81,-1,0,2339,2792,5,183,0,0,2340,2792,3,196,98,0,2341,2342,3,314, + 157,0,2342,2343,3,186,93,0,2343,2792,1,0,0,0,2344,2345,5,82,0,0, + 2345,2346,5,213,0,0,2346,2792,3,186,93,0,2347,2792,3,316,158,0,2348, + 2792,3,194,97,0,2349,2792,3,186,93,0,2350,2792,5,328,0,0,2351,2792, + 5,324,0,0,2352,2353,5,211,0,0,2353,2354,5,1,0,0,2354,2355,3,160, + 80,0,2355,2356,5,122,0,0,2356,2357,3,160,80,0,2357,2358,5,2,0,0, + 2358,2792,1,0,0,0,2359,2360,5,1,0,0,2360,2363,3,154,77,0,2361,2362, + 5,3,0,0,2362,2364,3,154,77,0,2363,2361,1,0,0,0,2364,2365,1,0,0,0, + 2365,2363,1,0,0,0,2365,2366,1,0,0,0,2366,2367,1,0,0,0,2367,2368, + 5,2,0,0,2368,2792,1,0,0,0,2369,2370,5,239,0,0,2370,2371,5,1,0,0, + 2371,2376,3,154,77,0,2372,2373,5,3,0,0,2373,2375,3,154,77,0,2374, + 2372,1,0,0,0,2375,2378,1,0,0,0,2376,2374,1,0,0,0,2376,2377,1,0,0, + 0,2377,2379,1,0,0,0,2378,2376,1,0,0,0,2379,2380,5,2,0,0,2380,2792, + 1,0,0,0,2381,2382,5,156,0,0,2382,2384,5,1,0,0,2383,2385,3,76,38, + 0,2384,2383,1,0,0,0,2384,2385,1,0,0,0,2385,2386,1,0,0,0,2386,2389, + 3,154,77,0,2387,2388,5,3,0,0,2388,2390,3,186,93,0,2389,2387,1,0, + 0,0,2389,2390,1,0,0,0,2390,2394,1,0,0,0,2391,2392,5,190,0,0,2392, + 2393,5,200,0,0,2393,2395,3,100,50,0,2394,2391,1,0,0,0,2394,2395, + 1,0,0,0,2395,2396,1,0,0,0,2396,2397,5,2,0,0,2397,2398,5,305,0,0, + 2398,2399,5,114,0,0,2399,2400,5,1,0,0,2400,2401,5,195,0,0,2401,2402, + 5,36,0,0,2402,2407,3,50,25,0,2403,2404,5,3,0,0,2404,2406,3,50,25, + 0,2405,2403,1,0,0,0,2406,2409,1,0,0,0,2407,2405,1,0,0,0,2407,2408, + 1,0,0,0,2408,2410,1,0,0,0,2409,2407,1,0,0,0,2410,2411,5,2,0,0,2411, + 2413,1,0,0,0,2412,2414,3,210,105,0,2413,2412,1,0,0,0,2413,2414,1, + 0,0,0,2414,2792,1,0,0,0,2415,2417,3,182,91,0,2416,2415,1,0,0,0,2416, + 2417,1,0,0,0,2417,2418,1,0,0,0,2418,2419,3,290,145,0,2419,2423,5, + 1,0,0,2420,2421,3,314,157,0,2421,2422,5,4,0,0,2422,2424,1,0,0,0, + 2423,2420,1,0,0,0,2423,2424,1,0,0,0,2424,2425,1,0,0,0,2425,2426, + 5,320,0,0,2426,2428,5,2,0,0,2427,2429,3,210,105,0,2428,2427,1,0, + 0,0,2428,2429,1,0,0,0,2429,2431,1,0,0,0,2430,2432,3,214,107,0,2431, + 2430,1,0,0,0,2431,2432,1,0,0,0,2432,2792,1,0,0,0,2433,2435,3,182, + 91,0,2434,2433,1,0,0,0,2434,2435,1,0,0,0,2435,2436,1,0,0,0,2436, + 2437,3,290,145,0,2437,2449,5,1,0,0,2438,2440,3,76,38,0,2439,2438, + 1,0,0,0,2439,2440,1,0,0,0,2440,2441,1,0,0,0,2441,2446,3,154,77,0, + 2442,2443,5,3,0,0,2443,2445,3,154,77,0,2444,2442,1,0,0,0,2445,2448, + 1,0,0,0,2446,2444,1,0,0,0,2446,2447,1,0,0,0,2447,2450,1,0,0,0,2448, + 2446,1,0,0,0,2449,2439,1,0,0,0,2449,2450,1,0,0,0,2450,2461,1,0,0, + 0,2451,2452,5,195,0,0,2452,2453,5,36,0,0,2453,2458,3,50,25,0,2454, + 2455,5,3,0,0,2455,2457,3,50,25,0,2456,2454,1,0,0,0,2457,2460,1,0, + 0,0,2458,2456,1,0,0,0,2458,2459,1,0,0,0,2459,2462,1,0,0,0,2460,2458, + 1,0,0,0,2461,2451,1,0,0,0,2461,2462,1,0,0,0,2462,2463,1,0,0,0,2463, + 2465,5,2,0,0,2464,2466,3,210,105,0,2465,2464,1,0,0,0,2465,2466,1, + 0,0,0,2466,2471,1,0,0,0,2467,2469,3,184,92,0,2468,2467,1,0,0,0,2468, + 2469,1,0,0,0,2469,2470,1,0,0,0,2470,2472,3,214,107,0,2471,2468,1, + 0,0,0,2471,2472,1,0,0,0,2472,2792,1,0,0,0,2473,2474,3,314,157,0, + 2474,2475,3,214,107,0,2475,2792,1,0,0,0,2476,2477,3,314,157,0,2477, + 2478,5,7,0,0,2478,2479,3,154,77,0,2479,2792,1,0,0,0,2480,2489,5, + 1,0,0,2481,2486,3,314,157,0,2482,2483,5,3,0,0,2483,2485,3,314,157, + 0,2484,2482,1,0,0,0,2485,2488,1,0,0,0,2486,2484,1,0,0,0,2486,2487, + 1,0,0,0,2487,2490,1,0,0,0,2488,2486,1,0,0,0,2489,2481,1,0,0,0,2489, + 2490,1,0,0,0,2490,2491,1,0,0,0,2491,2492,5,2,0,0,2492,2493,5,7,0, + 0,2493,2792,3,154,77,0,2494,2495,5,1,0,0,2495,2496,3,22,11,0,2496, + 2497,5,2,0,0,2497,2792,1,0,0,0,2498,2499,5,94,0,0,2499,2500,5,1, + 0,0,2500,2501,3,22,11,0,2501,2502,5,2,0,0,2502,2792,1,0,0,0,2503, + 2504,5,40,0,0,2504,2506,3,154,77,0,2505,2507,3,208,104,0,2506,2505, + 1,0,0,0,2507,2508,1,0,0,0,2508,2506,1,0,0,0,2508,2509,1,0,0,0,2509, + 2512,1,0,0,0,2510,2511,5,84,0,0,2511,2513,3,154,77,0,2512,2510,1, + 0,0,0,2512,2513,1,0,0,0,2513,2514,1,0,0,0,2514,2515,5,88,0,0,2515, + 2792,1,0,0,0,2516,2518,5,40,0,0,2517,2519,3,208,104,0,2518,2517, + 1,0,0,0,2519,2520,1,0,0,0,2520,2518,1,0,0,0,2520,2521,1,0,0,0,2521, + 2524,1,0,0,0,2522,2523,5,84,0,0,2523,2525,3,154,77,0,2524,2522,1, + 0,0,0,2524,2525,1,0,0,0,2525,2526,1,0,0,0,2526,2527,5,88,0,0,2527, + 2792,1,0,0,0,2528,2529,5,41,0,0,2529,2530,5,1,0,0,2530,2531,3,154, + 77,0,2531,2532,5,28,0,0,2532,2533,3,202,101,0,2533,2534,5,2,0,0, + 2534,2792,1,0,0,0,2535,2536,5,275,0,0,2536,2537,5,1,0,0,2537,2538, + 3,154,77,0,2538,2539,5,28,0,0,2539,2540,3,202,101,0,2540,2541,5, + 2,0,0,2541,2792,1,0,0,0,2542,2543,5,27,0,0,2543,2552,5,8,0,0,2544, + 2549,3,154,77,0,2545,2546,5,3,0,0,2546,2548,3,154,77,0,2547,2545, + 1,0,0,0,2548,2551,1,0,0,0,2549,2547,1,0,0,0,2549,2550,1,0,0,0,2550, + 2553,1,0,0,0,2551,2549,1,0,0,0,2552,2544,1,0,0,0,2552,2553,1,0,0, + 0,2553,2554,1,0,0,0,2554,2792,5,9,0,0,2555,2792,3,296,148,0,2556, + 2792,5,58,0,0,2557,2561,5,62,0,0,2558,2559,5,1,0,0,2559,2560,5,329, + 0,0,2560,2562,5,2,0,0,2561,2558,1,0,0,0,2561,2562,1,0,0,0,2562,2792, + 1,0,0,0,2563,2567,5,63,0,0,2564,2565,5,1,0,0,2565,2566,5,329,0,0, + 2566,2568,5,2,0,0,2567,2564,1,0,0,0,2567,2568,1,0,0,0,2568,2792, + 1,0,0,0,2569,2573,5,158,0,0,2570,2571,5,1,0,0,2571,2572,5,329,0, + 0,2572,2574,5,2,0,0,2573,2570,1,0,0,0,2573,2574,1,0,0,0,2574,2792, + 1,0,0,0,2575,2579,5,159,0,0,2576,2577,5,1,0,0,2577,2578,5,329,0, + 0,2578,2580,5,2,0,0,2579,2576,1,0,0,0,2579,2580,1,0,0,0,2580,2792, + 1,0,0,0,2581,2792,5,64,0,0,2582,2792,5,57,0,0,2583,2792,5,61,0,0, + 2584,2792,5,59,0,0,2585,2586,5,272,0,0,2586,2594,5,1,0,0,2587,2589, + 3,98,49,0,2588,2587,1,0,0,0,2588,2589,1,0,0,0,2589,2591,1,0,0,0, + 2590,2592,3,160,80,0,2591,2590,1,0,0,0,2591,2592,1,0,0,0,2592,2593, + 1,0,0,0,2593,2595,5,105,0,0,2594,2588,1,0,0,0,2594,2595,1,0,0,0, + 2595,2596,1,0,0,0,2596,2597,3,160,80,0,2597,2598,5,2,0,0,2598,2792, + 1,0,0,0,2599,2600,5,272,0,0,2600,2601,5,1,0,0,2601,2602,3,160,80, + 0,2602,2603,5,3,0,0,2603,2604,3,160,80,0,2604,2605,5,2,0,0,2605, + 2792,1,0,0,0,2606,2607,5,258,0,0,2607,2608,5,1,0,0,2608,2609,3,160, + 80,0,2609,2610,5,105,0,0,2610,2613,3,160,80,0,2611,2612,5,103,0, + 0,2612,2614,3,160,80,0,2613,2611,1,0,0,0,2613,2614,1,0,0,0,2614, + 2615,1,0,0,0,2615,2616,5,2,0,0,2616,2792,1,0,0,0,2617,2618,5,181, + 0,0,2618,2619,5,1,0,0,2619,2622,3,160,80,0,2620,2621,5,3,0,0,2621, + 2623,3,200,100,0,2622,2620,1,0,0,0,2622,2623,1,0,0,0,2623,2624,1, + 0,0,0,2624,2625,5,2,0,0,2625,2792,1,0,0,0,2626,2627,5,96,0,0,2627, + 2628,5,1,0,0,2628,2629,3,314,157,0,2629,2630,5,105,0,0,2630,2631, + 3,160,80,0,2631,2632,5,2,0,0,2632,2792,1,0,0,0,2633,2634,5,1,0,0, + 2634,2635,3,154,77,0,2635,2636,5,2,0,0,2636,2792,1,0,0,0,2637,2638, + 5,115,0,0,2638,2647,5,1,0,0,2639,2644,3,300,150,0,2640,2641,5,3, + 0,0,2641,2643,3,300,150,0,2642,2640,1,0,0,0,2643,2646,1,0,0,0,2644, + 2642,1,0,0,0,2644,2645,1,0,0,0,2645,2648,1,0,0,0,2646,2644,1,0,0, + 0,2647,2639,1,0,0,0,2647,2648,1,0,0,0,2648,2649,1,0,0,0,2649,2792, + 5,2,0,0,2650,2651,5,139,0,0,2651,2652,5,1,0,0,2652,2657,3,164,82, + 0,2653,2654,3,172,86,0,2654,2655,5,190,0,0,2655,2656,5,89,0,0,2656, + 2658,1,0,0,0,2657,2653,1,0,0,0,2657,2658,1,0,0,0,2658,2659,1,0,0, + 0,2659,2660,5,2,0,0,2660,2792,1,0,0,0,2661,2662,5,143,0,0,2662,2663, + 5,1,0,0,2663,2666,3,164,82,0,2664,2665,5,231,0,0,2665,2667,3,202, + 101,0,2666,2664,1,0,0,0,2666,2667,1,0,0,0,2667,2672,1,0,0,0,2668, + 2669,3,174,87,0,2669,2670,5,190,0,0,2670,2671,5,85,0,0,2671,2673, + 1,0,0,0,2672,2668,1,0,0,0,2672,2673,1,0,0,0,2673,2678,1,0,0,0,2674, + 2675,3,174,87,0,2675,2676,5,190,0,0,2676,2677,5,89,0,0,2677,2679, + 1,0,0,0,2678,2674,1,0,0,0,2678,2679,1,0,0,0,2679,2680,1,0,0,0,2680, + 2681,5,2,0,0,2681,2792,1,0,0,0,2682,2683,5,141,0,0,2683,2684,5,1, + 0,0,2684,2691,3,164,82,0,2685,2686,5,231,0,0,2686,2689,3,202,101, + 0,2687,2688,5,104,0,0,2688,2690,3,168,84,0,2689,2687,1,0,0,0,2689, + 2690,1,0,0,0,2690,2692,1,0,0,0,2691,2685,1,0,0,0,2691,2692,1,0,0, + 0,2692,2696,1,0,0,0,2693,2694,3,176,88,0,2694,2695,5,308,0,0,2695, + 2697,1,0,0,0,2696,2693,1,0,0,0,2696,2697,1,0,0,0,2697,2705,1,0,0, + 0,2698,2699,7,15,0,0,2699,2703,5,218,0,0,2700,2701,5,190,0,0,2701, + 2702,5,242,0,0,2702,2704,5,264,0,0,2703,2700,1,0,0,0,2703,2704,1, + 0,0,0,2704,2706,1,0,0,0,2705,2698,1,0,0,0,2705,2706,1,0,0,0,2706, + 2711,1,0,0,0,2707,2708,3,178,89,0,2708,2709,5,190,0,0,2709,2710, + 5,85,0,0,2710,2712,1,0,0,0,2711,2707,1,0,0,0,2711,2712,1,0,0,0,2712, + 2717,1,0,0,0,2713,2714,3,178,89,0,2714,2715,5,190,0,0,2715,2716, + 5,89,0,0,2716,2718,1,0,0,0,2717,2713,1,0,0,0,2717,2718,1,0,0,0,2718, + 2719,1,0,0,0,2719,2720,5,2,0,0,2720,2792,1,0,0,0,2721,2722,5,140, + 0,0,2722,2751,5,1,0,0,2723,2728,3,180,90,0,2724,2725,5,3,0,0,2725, + 2727,3,180,90,0,2726,2724,1,0,0,0,2727,2730,1,0,0,0,2728,2726,1, + 0,0,0,2728,2729,1,0,0,0,2729,2737,1,0,0,0,2730,2728,1,0,0,0,2731, + 2732,5,183,0,0,2732,2733,5,190,0,0,2733,2738,5,183,0,0,2734,2735, + 5,18,0,0,2735,2736,5,190,0,0,2736,2738,5,183,0,0,2737,2731,1,0,0, + 0,2737,2734,1,0,0,0,2737,2738,1,0,0,0,2738,2749,1,0,0,0,2739,2740, + 5,304,0,0,2740,2742,5,282,0,0,2741,2743,5,146,0,0,2742,2741,1,0, + 0,0,2742,2743,1,0,0,0,2743,2750,1,0,0,0,2744,2745,5,306,0,0,2745, + 2747,5,282,0,0,2746,2748,5,146,0,0,2747,2746,1,0,0,0,2747,2748,1, + 0,0,0,2748,2750,1,0,0,0,2749,2739,1,0,0,0,2749,2744,1,0,0,0,2749, + 2750,1,0,0,0,2750,2752,1,0,0,0,2751,2723,1,0,0,0,2751,2752,1,0,0, + 0,2752,2759,1,0,0,0,2753,2754,5,231,0,0,2754,2757,3,202,101,0,2755, + 2756,5,104,0,0,2756,2758,3,168,84,0,2757,2755,1,0,0,0,2757,2758, + 1,0,0,0,2758,2760,1,0,0,0,2759,2753,1,0,0,0,2759,2760,1,0,0,0,2760, + 2761,1,0,0,0,2761,2792,5,2,0,0,2762,2763,5,138,0,0,2763,2780,5,1, + 0,0,2764,2769,3,166,83,0,2765,2766,5,3,0,0,2766,2768,3,166,83,0, + 2767,2765,1,0,0,0,2768,2771,1,0,0,0,2769,2767,1,0,0,0,2769,2770, + 1,0,0,0,2770,2778,1,0,0,0,2771,2769,1,0,0,0,2772,2773,5,183,0,0, + 2773,2774,5,190,0,0,2774,2779,5,183,0,0,2775,2776,5,18,0,0,2776, + 2777,5,190,0,0,2777,2779,5,183,0,0,2778,2772,1,0,0,0,2778,2775,1, + 0,0,0,2778,2779,1,0,0,0,2779,2781,1,0,0,0,2780,2764,1,0,0,0,2780, + 2781,1,0,0,0,2781,2788,1,0,0,0,2782,2783,5,231,0,0,2783,2786,3,202, + 101,0,2784,2785,5,104,0,0,2785,2787,3,168,84,0,2786,2784,1,0,0,0, + 2786,2787,1,0,0,0,2787,2789,1,0,0,0,2788,2782,1,0,0,0,2788,2789, + 1,0,0,0,2789,2790,1,0,0,0,2790,2792,5,2,0,0,2791,2338,1,0,0,0,2791, + 2340,1,0,0,0,2791,2341,1,0,0,0,2791,2344,1,0,0,0,2791,2347,1,0,0, + 0,2791,2348,1,0,0,0,2791,2349,1,0,0,0,2791,2350,1,0,0,0,2791,2351, + 1,0,0,0,2791,2352,1,0,0,0,2791,2359,1,0,0,0,2791,2369,1,0,0,0,2791, + 2381,1,0,0,0,2791,2416,1,0,0,0,2791,2434,1,0,0,0,2791,2473,1,0,0, + 0,2791,2476,1,0,0,0,2791,2480,1,0,0,0,2791,2494,1,0,0,0,2791,2498, + 1,0,0,0,2791,2503,1,0,0,0,2791,2516,1,0,0,0,2791,2528,1,0,0,0,2791, + 2535,1,0,0,0,2791,2542,1,0,0,0,2791,2555,1,0,0,0,2791,2556,1,0,0, + 0,2791,2557,1,0,0,0,2791,2563,1,0,0,0,2791,2569,1,0,0,0,2791,2575, + 1,0,0,0,2791,2581,1,0,0,0,2791,2582,1,0,0,0,2791,2583,1,0,0,0,2791, + 2584,1,0,0,0,2791,2585,1,0,0,0,2791,2599,1,0,0,0,2791,2606,1,0,0, + 0,2791,2617,1,0,0,0,2791,2626,1,0,0,0,2791,2633,1,0,0,0,2791,2637, + 1,0,0,0,2791,2650,1,0,0,0,2791,2661,1,0,0,0,2791,2682,1,0,0,0,2791, + 2721,1,0,0,0,2791,2762,1,0,0,0,2792,2803,1,0,0,0,2793,2794,10,24, + 0,0,2794,2795,5,8,0,0,2795,2796,3,160,80,0,2796,2797,5,9,0,0,2797, + 2802,1,0,0,0,2798,2799,10,22,0,0,2799,2800,5,4,0,0,2800,2802,3,314, + 157,0,2801,2793,1,0,0,0,2801,2798,1,0,0,0,2802,2805,1,0,0,0,2803, + 2801,1,0,0,0,2803,2804,1,0,0,0,2804,163,1,0,0,0,2805,2803,1,0,0, + 0,2806,2807,3,166,83,0,2807,2808,5,3,0,0,2808,2811,3,186,93,0,2809, + 2810,5,28,0,0,2810,2812,3,314,157,0,2811,2809,1,0,0,0,2811,2812, + 1,0,0,0,2812,2822,1,0,0,0,2813,2814,5,203,0,0,2814,2819,3,170,85, + 0,2815,2816,5,3,0,0,2816,2818,3,170,85,0,2817,2815,1,0,0,0,2818, + 2821,1,0,0,0,2819,2817,1,0,0,0,2819,2820,1,0,0,0,2820,2823,1,0,0, + 0,2821,2819,1,0,0,0,2822,2813,1,0,0,0,2822,2823,1,0,0,0,2823,165, + 1,0,0,0,2824,2827,3,154,77,0,2825,2826,5,104,0,0,2826,2828,3,168, + 84,0,2827,2825,1,0,0,0,2827,2828,1,0,0,0,2828,167,1,0,0,0,2829,2832, + 5,137,0,0,2830,2831,5,87,0,0,2831,2833,7,20,0,0,2832,2830,1,0,0, + 0,2832,2833,1,0,0,0,2833,169,1,0,0,0,2834,2835,3,166,83,0,2835,2836, + 5,28,0,0,2836,2837,3,314,157,0,2837,171,1,0,0,0,2838,2839,7,21,0, + 0,2839,173,1,0,0,0,2840,2845,5,89,0,0,2841,2845,5,183,0,0,2842,2843, + 5,70,0,0,2843,2845,3,154,77,0,2844,2840,1,0,0,0,2844,2841,1,0,0, + 0,2844,2842,1,0,0,0,2845,175,1,0,0,0,2846,2848,5,306,0,0,2847,2849, + 5,27,0,0,2848,2847,1,0,0,0,2848,2849,1,0,0,0,2849,2858,1,0,0,0,2850, + 2852,5,304,0,0,2851,2853,7,22,0,0,2852,2851,1,0,0,0,2852,2853,1, + 0,0,0,2853,2855,1,0,0,0,2854,2856,5,27,0,0,2855,2854,1,0,0,0,2855, + 2856,1,0,0,0,2856,2858,1,0,0,0,2857,2846,1,0,0,0,2857,2850,1,0,0, + 0,2858,177,1,0,0,0,2859,2866,5,89,0,0,2860,2866,5,183,0,0,2861,2862, + 5,85,0,0,2862,2866,5,27,0,0,2863,2864,5,85,0,0,2864,2866,5,186,0, + 0,2865,2859,1,0,0,0,2865,2860,1,0,0,0,2865,2861,1,0,0,0,2865,2863, + 1,0,0,0,2866,179,1,0,0,0,2867,2869,5,145,0,0,2868,2867,1,0,0,0,2868, + 2869,1,0,0,0,2869,2870,1,0,0,0,2870,2871,3,154,77,0,2871,2872,5, + 295,0,0,2872,2873,3,166,83,0,2873,2879,1,0,0,0,2874,2875,3,154,77, + 0,2875,2876,5,10,0,0,2876,2877,3,166,83,0,2877,2879,1,0,0,0,2878, + 2868,1,0,0,0,2878,2874,1,0,0,0,2879,181,1,0,0,0,2880,2881,7,23,0, + 0,2881,183,1,0,0,0,2882,2883,5,120,0,0,2883,2887,5,185,0,0,2884, + 2885,5,228,0,0,2885,2887,5,185,0,0,2886,2882,1,0,0,0,2886,2884,1, + 0,0,0,2887,185,1,0,0,0,2888,2895,5,326,0,0,2889,2892,5,327,0,0,2890, + 2891,5,277,0,0,2891,2893,5,326,0,0,2892,2890,1,0,0,0,2892,2893,1, + 0,0,0,2893,2895,1,0,0,0,2894,2888,1,0,0,0,2894,2889,1,0,0,0,2895, + 187,1,0,0,0,2896,2897,5,267,0,0,2897,2898,5,311,0,0,2898,2903,3, + 196,98,0,2899,2900,5,267,0,0,2900,2901,5,311,0,0,2901,2903,3,186, + 93,0,2902,2896,1,0,0,0,2902,2899,1,0,0,0,2903,189,1,0,0,0,2904,2905, + 7,24,0,0,2905,191,1,0,0,0,2906,2907,7,25,0,0,2907,193,1,0,0,0,2908, + 2909,7,26,0,0,2909,195,1,0,0,0,2910,2912,5,129,0,0,2911,2913,7,18, + 0,0,2912,2911,1,0,0,0,2912,2913,1,0,0,0,2913,2914,1,0,0,0,2914,2915, + 3,186,93,0,2915,2918,3,198,99,0,2916,2917,5,269,0,0,2917,2919,3, + 198,99,0,2918,2916,1,0,0,0,2918,2919,1,0,0,0,2919,197,1,0,0,0,2920, + 2921,7,27,0,0,2921,199,1,0,0,0,2922,2923,7,28,0,0,2923,201,1,0,0, + 0,2924,2925,6,101,-1,0,2925,2926,5,239,0,0,2926,2927,5,1,0,0,2927, + 2932,3,204,102,0,2928,2929,5,3,0,0,2929,2931,3,204,102,0,2930,2928, + 1,0,0,0,2931,2934,1,0,0,0,2932,2930,1,0,0,0,2932,2933,1,0,0,0,2933, + 2935,1,0,0,0,2934,2932,1,0,0,0,2935,2936,5,2,0,0,2936,2996,1,0,0, + 0,2937,2938,5,129,0,0,2938,2941,3,198,99,0,2939,2940,5,269,0,0,2940, + 2942,3,198,99,0,2941,2939,1,0,0,0,2941,2942,1,0,0,0,2942,2996,1, + 0,0,0,2943,2948,5,268,0,0,2944,2945,5,1,0,0,2945,2946,3,206,103, + 0,2946,2947,5,2,0,0,2947,2949,1,0,0,0,2948,2944,1,0,0,0,2948,2949, + 1,0,0,0,2949,2953,1,0,0,0,2950,2951,7,29,0,0,2951,2952,5,267,0,0, + 2952,2954,5,311,0,0,2953,2950,1,0,0,0,2953,2954,1,0,0,0,2954,2996, + 1,0,0,0,2955,2960,5,267,0,0,2956,2957,5,1,0,0,2957,2958,3,206,103, + 0,2958,2959,5,2,0,0,2959,2961,1,0,0,0,2960,2956,1,0,0,0,2960,2961, + 1,0,0,0,2961,2965,1,0,0,0,2962,2963,7,29,0,0,2963,2964,5,267,0,0, + 2964,2966,5,311,0,0,2965,2962,1,0,0,0,2965,2966,1,0,0,0,2966,2996, + 1,0,0,0,2967,2968,5,82,0,0,2968,2996,5,213,0,0,2969,2970,5,27,0, + 0,2970,2971,5,314,0,0,2971,2972,3,202,101,0,2972,2973,5,316,0,0, + 2973,2996,1,0,0,0,2974,2975,5,162,0,0,2975,2976,5,314,0,0,2976,2977, + 3,202,101,0,2977,2978,5,3,0,0,2978,2979,3,202,101,0,2979,2980,5, + 316,0,0,2980,2996,1,0,0,0,2981,2993,3,314,157,0,2982,2983,5,1,0, + 0,2983,2988,3,206,103,0,2984,2985,5,3,0,0,2985,2987,3,206,103,0, + 2986,2984,1,0,0,0,2987,2990,1,0,0,0,2988,2986,1,0,0,0,2988,2989, + 1,0,0,0,2989,2991,1,0,0,0,2990,2988,1,0,0,0,2991,2992,5,2,0,0,2992, + 2994,1,0,0,0,2993,2982,1,0,0,0,2993,2994,1,0,0,0,2994,2996,1,0,0, + 0,2995,2924,1,0,0,0,2995,2937,1,0,0,0,2995,2943,1,0,0,0,2995,2955, + 1,0,0,0,2995,2967,1,0,0,0,2995,2969,1,0,0,0,2995,2974,1,0,0,0,2995, + 2981,1,0,0,0,2996,3006,1,0,0,0,2997,2998,10,2,0,0,2998,3002,5,27, + 0,0,2999,3000,5,8,0,0,3000,3001,5,329,0,0,3001,3003,5,9,0,0,3002, + 2999,1,0,0,0,3002,3003,1,0,0,0,3003,3005,1,0,0,0,3004,2997,1,0,0, + 0,3005,3008,1,0,0,0,3006,3004,1,0,0,0,3006,3007,1,0,0,0,3007,203, + 1,0,0,0,3008,3006,1,0,0,0,3009,3014,3,202,101,0,3010,3011,3,314, + 157,0,3011,3012,3,202,101,0,3012,3014,1,0,0,0,3013,3009,1,0,0,0, + 3013,3010,1,0,0,0,3014,205,1,0,0,0,3015,3018,5,329,0,0,3016,3018, + 3,202,101,0,3017,3015,1,0,0,0,3017,3016,1,0,0,0,3018,207,1,0,0,0, + 3019,3020,5,300,0,0,3020,3021,3,154,77,0,3021,3022,5,265,0,0,3022, + 3023,3,154,77,0,3023,209,1,0,0,0,3024,3025,5,99,0,0,3025,3026,5, + 1,0,0,3026,3027,3,54,27,0,3027,3028,5,2,0,0,3028,211,1,0,0,0,3029, + 3030,5,300,0,0,3030,3033,5,164,0,0,3031,3032,5,25,0,0,3032,3034, + 3,154,77,0,3033,3031,1,0,0,0,3033,3034,1,0,0,0,3034,3035,1,0,0,0, + 3035,3036,5,265,0,0,3036,3037,5,287,0,0,3037,3038,5,251,0,0,3038, + 3039,3,314,157,0,3039,3040,5,312,0,0,3040,3048,3,154,77,0,3041,3042, + 5,3,0,0,3042,3043,3,314,157,0,3043,3044,5,312,0,0,3044,3045,3,154, + 77,0,3045,3047,1,0,0,0,3046,3041,1,0,0,0,3047,3050,1,0,0,0,3048, + 3046,1,0,0,0,3048,3049,1,0,0,0,3049,3094,1,0,0,0,3050,3048,1,0,0, + 0,3051,3052,5,300,0,0,3052,3055,5,164,0,0,3053,3054,5,25,0,0,3054, + 3056,3,154,77,0,3055,3053,1,0,0,0,3055,3056,1,0,0,0,3056,3057,1, + 0,0,0,3057,3058,5,265,0,0,3058,3094,5,73,0,0,3059,3060,5,300,0,0, + 3060,3061,5,182,0,0,3061,3064,5,164,0,0,3062,3063,5,25,0,0,3063, + 3065,3,154,77,0,3064,3062,1,0,0,0,3064,3065,1,0,0,0,3065,3066,1, + 0,0,0,3066,3067,5,265,0,0,3067,3079,5,127,0,0,3068,3069,5,1,0,0, + 3069,3074,3,314,157,0,3070,3071,5,3,0,0,3071,3073,3,314,157,0,3072, + 3070,1,0,0,0,3073,3076,1,0,0,0,3074,3072,1,0,0,0,3074,3075,1,0,0, + 0,3075,3077,1,0,0,0,3076,3074,1,0,0,0,3077,3078,5,2,0,0,3078,3080, + 1,0,0,0,3079,3068,1,0,0,0,3079,3080,1,0,0,0,3080,3081,1,0,0,0,3081, + 3082,5,296,0,0,3082,3083,5,1,0,0,3083,3088,3,154,77,0,3084,3085, + 5,3,0,0,3085,3087,3,154,77,0,3086,3084,1,0,0,0,3087,3090,1,0,0,0, + 3088,3086,1,0,0,0,3088,3089,1,0,0,0,3089,3091,1,0,0,0,3090,3088, + 1,0,0,0,3091,3092,5,2,0,0,3092,3094,1,0,0,0,3093,3029,1,0,0,0,3093, + 3051,1,0,0,0,3093,3059,1,0,0,0,3094,213,1,0,0,0,3095,3101,5,199, + 0,0,3096,3102,3,314,157,0,3097,3098,5,1,0,0,3098,3099,3,72,36,0, + 3099,3100,5,2,0,0,3100,3102,1,0,0,0,3101,3096,1,0,0,0,3101,3097, + 1,0,0,0,3102,215,1,0,0,0,3103,3104,5,168,0,0,3104,3109,3,106,53, + 0,3105,3106,5,3,0,0,3106,3108,3,106,53,0,3107,3105,1,0,0,0,3108, + 3111,1,0,0,0,3109,3107,1,0,0,0,3109,3110,1,0,0,0,3110,3113,1,0,0, + 0,3111,3109,1,0,0,0,3112,3103,1,0,0,0,3112,3113,1,0,0,0,3113,3114, + 1,0,0,0,3114,3118,3,218,109,0,3115,3116,5,21,0,0,3116,3117,5,163, + 0,0,3117,3119,3,112,56,0,3118,3115,1,0,0,0,3118,3119,1,0,0,0,3119, + 3121,1,0,0,0,3120,3122,7,13,0,0,3121,3120,1,0,0,0,3121,3122,1,0, + 0,0,3122,3128,1,0,0,0,3123,3124,5,206,0,0,3124,3125,5,1,0,0,3125, + 3126,3,222,111,0,3126,3127,5,2,0,0,3127,3129,1,0,0,0,3128,3123,1, + 0,0,0,3128,3129,1,0,0,0,3129,3139,1,0,0,0,3130,3131,5,257,0,0,3131, + 3136,3,114,57,0,3132,3133,5,3,0,0,3133,3135,3,114,57,0,3134,3132, + 1,0,0,0,3135,3138,1,0,0,0,3136,3134,1,0,0,0,3136,3137,1,0,0,0,3137, + 3140,1,0,0,0,3138,3136,1,0,0,0,3139,3130,1,0,0,0,3139,3140,1,0,0, + 0,3140,3150,1,0,0,0,3141,3142,5,71,0,0,3142,3147,3,116,58,0,3143, + 3144,5,3,0,0,3144,3146,3,116,58,0,3145,3143,1,0,0,0,3146,3149,1, + 0,0,0,3147,3145,1,0,0,0,3147,3148,1,0,0,0,3148,3151,1,0,0,0,3149, + 3147,1,0,0,0,3150,3141,1,0,0,0,3150,3151,1,0,0,0,3151,217,1,0,0, + 0,3152,3153,5,219,0,0,3153,3177,3,220,110,0,3154,3155,5,240,0,0, + 3155,3177,3,220,110,0,3156,3157,5,116,0,0,3157,3177,3,220,110,0, + 3158,3159,5,219,0,0,3159,3160,5,34,0,0,3160,3161,3,220,110,0,3161, + 3162,5,25,0,0,3162,3163,3,220,110,0,3163,3177,1,0,0,0,3164,3165, + 5,240,0,0,3165,3166,5,34,0,0,3166,3167,3,220,110,0,3167,3168,5,25, + 0,0,3168,3169,3,220,110,0,3169,3177,1,0,0,0,3170,3171,5,116,0,0, + 3171,3172,5,34,0,0,3172,3173,3,220,110,0,3173,3174,5,25,0,0,3174, + 3175,3,220,110,0,3175,3177,1,0,0,0,3176,3152,1,0,0,0,3176,3154,1, + 0,0,0,3176,3156,1,0,0,0,3176,3158,1,0,0,0,3176,3164,1,0,0,0,3176, + 3170,1,0,0,0,3177,219,1,0,0,0,3178,3179,5,278,0,0,3179,3188,5,212, + 0,0,3180,3181,5,278,0,0,3181,3188,5,102,0,0,3182,3183,5,56,0,0,3183, + 3188,5,239,0,0,3184,3185,3,154,77,0,3185,3186,7,30,0,0,3186,3188, + 1,0,0,0,3187,3178,1,0,0,0,3187,3180,1,0,0,0,3187,3182,1,0,0,0,3187, + 3184,1,0,0,0,3188,221,1,0,0,0,3189,3190,6,111,-1,0,3190,3192,3,224, + 112,0,3191,3193,3,226,113,0,3192,3191,1,0,0,0,3192,3193,1,0,0,0, + 3193,3201,1,0,0,0,3194,3195,10,2,0,0,3195,3200,3,222,111,3,3196, + 3197,10,1,0,0,3197,3198,5,11,0,0,3198,3200,3,222,111,2,3199,3194, + 1,0,0,0,3199,3196,1,0,0,0,3200,3203,1,0,0,0,3201,3199,1,0,0,0,3201, + 3202,1,0,0,0,3202,223,1,0,0,0,3203,3201,1,0,0,0,3204,3230,3,314, + 157,0,3205,3206,5,1,0,0,3206,3230,5,2,0,0,3207,3208,5,209,0,0,3208, + 3209,5,1,0,0,3209,3214,3,222,111,0,3210,3211,5,3,0,0,3211,3213,3, + 222,111,0,3212,3210,1,0,0,0,3213,3216,1,0,0,0,3214,3212,1,0,0,0, + 3214,3215,1,0,0,0,3215,3217,1,0,0,0,3216,3214,1,0,0,0,3217,3218, + 5,2,0,0,3218,3230,1,0,0,0,3219,3220,5,1,0,0,3220,3221,3,222,111, + 0,3221,3222,5,2,0,0,3222,3230,1,0,0,0,3223,3230,5,12,0,0,3224,3230, + 5,13,0,0,3225,3226,5,14,0,0,3226,3227,3,222,111,0,3227,3228,5,15, + 0,0,3228,3230,1,0,0,0,3229,3204,1,0,0,0,3229,3205,1,0,0,0,3229,3207, + 1,0,0,0,3229,3219,1,0,0,0,3229,3223,1,0,0,0,3229,3224,1,0,0,0,3229, + 3225,1,0,0,0,3230,225,1,0,0,0,3231,3233,5,320,0,0,3232,3234,5,324, + 0,0,3233,3232,1,0,0,0,3233,3234,1,0,0,0,3234,3262,1,0,0,0,3235,3237, + 5,318,0,0,3236,3238,5,324,0,0,3237,3236,1,0,0,0,3237,3238,1,0,0, + 0,3238,3262,1,0,0,0,3239,3241,5,324,0,0,3240,3242,5,324,0,0,3241, + 3240,1,0,0,0,3241,3242,1,0,0,0,3242,3262,1,0,0,0,3243,3244,5,16, + 0,0,3244,3245,5,329,0,0,3245,3247,5,17,0,0,3246,3248,5,324,0,0,3247, + 3246,1,0,0,0,3247,3248,1,0,0,0,3248,3262,1,0,0,0,3249,3251,5,16, + 0,0,3250,3252,5,329,0,0,3251,3250,1,0,0,0,3251,3252,1,0,0,0,3252, + 3253,1,0,0,0,3253,3255,5,3,0,0,3254,3256,5,329,0,0,3255,3254,1,0, + 0,0,3255,3256,1,0,0,0,3256,3257,1,0,0,0,3257,3259,5,17,0,0,3258, + 3260,5,324,0,0,3259,3258,1,0,0,0,3259,3260,1,0,0,0,3260,3262,1,0, + 0,0,3261,3231,1,0,0,0,3261,3235,1,0,0,0,3261,3239,1,0,0,0,3261,3243, + 1,0,0,0,3261,3249,1,0,0,0,3262,227,1,0,0,0,3263,3264,3,314,157,0, + 3264,3265,5,312,0,0,3265,3266,3,154,77,0,3266,229,1,0,0,0,3267,3268, + 5,104,0,0,3268,3272,7,31,0,0,3269,3270,5,276,0,0,3270,3272,7,32, + 0,0,3271,3267,1,0,0,0,3271,3269,1,0,0,0,3272,231,1,0,0,0,3273,3274, + 5,134,0,0,3274,3275,5,153,0,0,3275,3279,3,234,117,0,3276,3277,5, + 220,0,0,3277,3279,7,33,0,0,3278,3273,1,0,0,0,3278,3276,1,0,0,0,3279, + 233,1,0,0,0,3280,3281,5,220,0,0,3281,3288,5,279,0,0,3282,3283,5, + 220,0,0,3283,3288,5,48,0,0,3284,3285,5,225,0,0,3285,3288,5,220,0, + 0,3286,3288,5,249,0,0,3287,3280,1,0,0,0,3287,3282,1,0,0,0,3287,3284, + 1,0,0,0,3287,3286,1,0,0,0,3288,235,1,0,0,0,3289,3295,3,154,77,0, + 3290,3291,3,314,157,0,3291,3292,5,6,0,0,3292,3293,3,154,77,0,3293, + 3295,1,0,0,0,3294,3289,1,0,0,0,3294,3290,1,0,0,0,3295,237,1,0,0, + 0,3296,3297,3,314,157,0,3297,3298,5,4,0,0,3298,3299,3,314,157,0, + 3299,3302,1,0,0,0,3300,3302,3,314,157,0,3301,3296,1,0,0,0,3301,3300, + 1,0,0,0,3302,239,1,0,0,0,3303,3308,3,238,119,0,3304,3305,5,3,0,0, + 3305,3307,3,238,119,0,3306,3304,1,0,0,0,3307,3310,1,0,0,0,3308,3306, + 1,0,0,0,3308,3309,1,0,0,0,3309,241,1,0,0,0,3310,3308,1,0,0,0,3311, + 3312,5,107,0,0,3312,3313,3,244,122,0,3313,3317,3,250,125,0,3314, + 3316,3,252,126,0,3315,3314,1,0,0,0,3316,3319,1,0,0,0,3317,3315,1, + 0,0,0,3317,3318,1,0,0,0,3318,3320,1,0,0,0,3319,3317,1,0,0,0,3320, + 3321,3,254,127,0,3321,243,1,0,0,0,3322,3323,3,292,146,0,3323,3332, + 5,1,0,0,3324,3329,3,248,124,0,3325,3326,5,3,0,0,3326,3328,3,248, + 124,0,3327,3325,1,0,0,0,3328,3331,1,0,0,0,3329,3327,1,0,0,0,3329, + 3330,1,0,0,0,3330,3333,1,0,0,0,3331,3329,1,0,0,0,3332,3324,1,0,0, + 0,3332,3333,1,0,0,0,3333,3334,1,0,0,0,3334,3335,5,2,0,0,3335,245, + 1,0,0,0,3336,3337,3,290,145,0,3337,3346,5,1,0,0,3338,3343,3,248, + 124,0,3339,3340,5,3,0,0,3340,3342,3,248,124,0,3341,3339,1,0,0,0, + 3342,3345,1,0,0,0,3343,3341,1,0,0,0,3343,3344,1,0,0,0,3344,3347, + 1,0,0,0,3345,3343,1,0,0,0,3346,3338,1,0,0,0,3346,3347,1,0,0,0,3347, + 3348,1,0,0,0,3348,3349,5,2,0,0,3349,247,1,0,0,0,3350,3352,3,314, + 157,0,3351,3350,1,0,0,0,3351,3352,1,0,0,0,3352,3353,1,0,0,0,3353, + 3354,3,202,101,0,3354,249,1,0,0,0,3355,3356,5,232,0,0,3356,3357, + 3,202,101,0,3357,251,1,0,0,0,3358,3359,5,147,0,0,3359,3378,3,314, + 157,0,3360,3362,5,182,0,0,3361,3360,1,0,0,0,3361,3362,1,0,0,0,3362, + 3363,1,0,0,0,3363,3378,5,78,0,0,3364,3365,5,232,0,0,3365,3366,5, + 183,0,0,3366,3367,5,190,0,0,3367,3368,5,183,0,0,3368,3378,5,126, + 0,0,3369,3370,5,38,0,0,3370,3371,5,190,0,0,3371,3372,5,183,0,0,3372, + 3378,5,126,0,0,3373,3374,5,246,0,0,3374,3378,7,1,0,0,3375,3376,5, + 46,0,0,3376,3378,3,186,93,0,3377,3358,1,0,0,0,3377,3361,1,0,0,0, + 3377,3364,1,0,0,0,3377,3369,1,0,0,0,3377,3373,1,0,0,0,3377,3375, + 1,0,0,0,3378,253,1,0,0,0,3379,3380,5,230,0,0,3380,3479,3,160,80, + 0,3381,3382,5,251,0,0,3382,3383,3,314,157,0,3383,3384,5,312,0,0, + 3384,3385,3,154,77,0,3385,3479,1,0,0,0,3386,3387,5,40,0,0,3387,3389, + 3,154,77,0,3388,3390,3,256,128,0,3389,3388,1,0,0,0,3390,3391,1,0, + 0,0,3391,3389,1,0,0,0,3391,3392,1,0,0,0,3392,3394,1,0,0,0,3393,3395, + 3,260,130,0,3394,3393,1,0,0,0,3394,3395,1,0,0,0,3395,3396,1,0,0, + 0,3396,3397,5,88,0,0,3397,3398,5,40,0,0,3398,3479,1,0,0,0,3399,3401, + 5,40,0,0,3400,3402,3,256,128,0,3401,3400,1,0,0,0,3402,3403,1,0,0, + 0,3403,3401,1,0,0,0,3403,3404,1,0,0,0,3404,3406,1,0,0,0,3405,3407, + 3,260,130,0,3406,3405,1,0,0,0,3406,3407,1,0,0,0,3407,3408,1,0,0, + 0,3408,3409,5,88,0,0,3409,3410,5,40,0,0,3410,3479,1,0,0,0,3411,3412, + 5,119,0,0,3412,3413,3,154,77,0,3413,3414,5,265,0,0,3414,3418,3,264, + 132,0,3415,3417,3,258,129,0,3416,3415,1,0,0,0,3417,3420,1,0,0,0, + 3418,3416,1,0,0,0,3418,3419,1,0,0,0,3419,3422,1,0,0,0,3420,3418, + 1,0,0,0,3421,3423,3,260,130,0,3422,3421,1,0,0,0,3422,3423,1,0,0, + 0,3423,3424,1,0,0,0,3424,3425,5,88,0,0,3425,3426,5,119,0,0,3426, + 3479,1,0,0,0,3427,3428,5,135,0,0,3428,3479,3,314,157,0,3429,3430, + 5,151,0,0,3430,3479,3,314,157,0,3431,3437,5,32,0,0,3432,3433,3,262, + 131,0,3433,3434,5,325,0,0,3434,3436,1,0,0,0,3435,3432,1,0,0,0,3436, + 3439,1,0,0,0,3437,3435,1,0,0,0,3437,3438,1,0,0,0,3438,3441,1,0,0, + 0,3439,3437,1,0,0,0,3440,3442,3,264,132,0,3441,3440,1,0,0,0,3441, + 3442,1,0,0,0,3442,3443,1,0,0,0,3443,3479,5,88,0,0,3444,3445,3,314, + 157,0,3445,3446,5,10,0,0,3446,3448,1,0,0,0,3447,3444,1,0,0,0,3447, + 3448,1,0,0,0,3448,3449,1,0,0,0,3449,3450,5,161,0,0,3450,3451,3,264, + 132,0,3451,3452,5,88,0,0,3452,3453,5,161,0,0,3453,3479,1,0,0,0,3454, + 3455,3,314,157,0,3455,3456,5,10,0,0,3456,3458,1,0,0,0,3457,3454, + 1,0,0,0,3457,3458,1,0,0,0,3458,3459,1,0,0,0,3459,3460,5,302,0,0, + 3460,3461,3,154,77,0,3461,3462,5,81,0,0,3462,3463,3,264,132,0,3463, + 3464,5,88,0,0,3464,3465,5,302,0,0,3465,3479,1,0,0,0,3466,3467,3, + 314,157,0,3467,3468,5,10,0,0,3468,3470,1,0,0,0,3469,3466,1,0,0,0, + 3469,3470,1,0,0,0,3470,3471,1,0,0,0,3471,3472,5,224,0,0,3472,3473, + 3,264,132,0,3473,3474,5,286,0,0,3474,3475,3,154,77,0,3475,3476,5, + 88,0,0,3476,3477,5,224,0,0,3477,3479,1,0,0,0,3478,3379,1,0,0,0,3478, + 3381,1,0,0,0,3478,3386,1,0,0,0,3478,3399,1,0,0,0,3478,3411,1,0,0, + 0,3478,3427,1,0,0,0,3478,3429,1,0,0,0,3478,3431,1,0,0,0,3478,3447, + 1,0,0,0,3478,3457,1,0,0,0,3478,3469,1,0,0,0,3479,255,1,0,0,0,3480, + 3481,5,300,0,0,3481,3482,3,154,77,0,3482,3483,5,265,0,0,3483,3484, + 3,264,132,0,3484,257,1,0,0,0,3485,3486,5,86,0,0,3486,3487,3,154, + 77,0,3487,3488,5,265,0,0,3488,3489,3,264,132,0,3489,259,1,0,0,0, + 3490,3491,5,84,0,0,3491,3492,3,264,132,0,3492,261,1,0,0,0,3493,3494, + 5,69,0,0,3494,3499,3,314,157,0,3495,3496,5,3,0,0,3496,3498,3,314, + 157,0,3497,3495,1,0,0,0,3498,3501,1,0,0,0,3499,3497,1,0,0,0,3499, + 3500,1,0,0,0,3500,3502,1,0,0,0,3501,3499,1,0,0,0,3502,3505,3,202, + 101,0,3503,3504,5,70,0,0,3504,3506,3,160,80,0,3505,3503,1,0,0,0, + 3505,3506,1,0,0,0,3506,263,1,0,0,0,3507,3508,3,254,127,0,3508,3509, + 5,325,0,0,3509,3511,1,0,0,0,3510,3507,1,0,0,0,3511,3512,1,0,0,0, + 3512,3510,1,0,0,0,3512,3513,1,0,0,0,3513,265,1,0,0,0,3514,3521,5, + 53,0,0,3515,3521,5,248,0,0,3516,3521,5,73,0,0,3517,3521,5,127,0, + 0,3518,3521,5,287,0,0,3519,3521,3,314,157,0,3520,3514,1,0,0,0,3520, + 3515,1,0,0,0,3520,3516,1,0,0,0,3520,3517,1,0,0,0,3520,3518,1,0,0, + 0,3520,3519,1,0,0,0,3521,267,1,0,0,0,3522,3526,5,260,0,0,3523,3526, + 5,243,0,0,3524,3526,3,314,157,0,3525,3522,1,0,0,0,3525,3523,1,0, + 0,0,3525,3524,1,0,0,0,3526,269,1,0,0,0,3527,3529,3,268,134,0,3528, + 3527,1,0,0,0,3528,3529,1,0,0,0,3529,3530,1,0,0,0,3530,3531,3,300, + 150,0,3531,271,1,0,0,0,3532,3535,3,274,137,0,3533,3535,3,278,139, + 0,3534,3532,1,0,0,0,3534,3533,1,0,0,0,3535,273,1,0,0,0,3536,3548, + 3,314,157,0,3537,3538,3,314,157,0,3538,3539,5,4,0,0,3539,3540,3, + 314,157,0,3540,3548,1,0,0,0,3541,3542,3,314,157,0,3542,3543,5,4, + 0,0,3543,3544,3,314,157,0,3544,3545,5,4,0,0,3545,3546,3,314,157, + 0,3546,3548,1,0,0,0,3547,3536,1,0,0,0,3547,3537,1,0,0,0,3547,3541, + 1,0,0,0,3548,275,1,0,0,0,3549,3561,3,314,157,0,3550,3551,3,314,157, + 0,3551,3552,5,4,0,0,3552,3553,3,314,157,0,3553,3561,1,0,0,0,3554, + 3555,3,314,157,0,3555,3556,5,4,0,0,3556,3557,3,314,157,0,3557,3558, + 5,4,0,0,3558,3559,3,314,157,0,3559,3561,1,0,0,0,3560,3549,1,0,0, + 0,3560,3550,1,0,0,0,3560,3554,1,0,0,0,3561,277,1,0,0,0,3562,3574, + 3,314,157,0,3563,3564,3,314,157,0,3564,3565,5,4,0,0,3565,3566,3, + 314,157,0,3566,3574,1,0,0,0,3567,3568,3,314,157,0,3568,3569,5,4, + 0,0,3569,3570,3,314,157,0,3570,3571,5,4,0,0,3571,3572,3,314,157, + 0,3572,3574,1,0,0,0,3573,3562,1,0,0,0,3573,3563,1,0,0,0,3573,3567, + 1,0,0,0,3574,279,1,0,0,0,3575,3587,3,314,157,0,3576,3577,3,314,157, + 0,3577,3578,5,4,0,0,3578,3579,3,314,157,0,3579,3587,1,0,0,0,3580, + 3581,3,314,157,0,3581,3582,5,4,0,0,3582,3583,3,314,157,0,3583,3584, + 5,4,0,0,3584,3585,3,314,157,0,3585,3587,1,0,0,0,3586,3575,1,0,0, + 0,3586,3576,1,0,0,0,3586,3580,1,0,0,0,3587,281,1,0,0,0,3588,3594, + 3,314,157,0,3589,3590,3,314,157,0,3590,3591,5,4,0,0,3591,3592,3, + 314,157,0,3592,3594,1,0,0,0,3593,3588,1,0,0,0,3593,3589,1,0,0,0, + 3594,283,1,0,0,0,3595,3601,3,314,157,0,3596,3597,3,314,157,0,3597, + 3598,5,4,0,0,3598,3599,3,314,157,0,3599,3601,1,0,0,0,3600,3595,1, + 0,0,0,3600,3596,1,0,0,0,3601,285,1,0,0,0,3602,3603,3,314,157,0,3603, + 287,1,0,0,0,3604,3605,3,314,157,0,3605,289,1,0,0,0,3606,3607,3,300, + 150,0,3607,291,1,0,0,0,3608,3609,3,300,150,0,3609,293,1,0,0,0,3610, + 3613,3,300,150,0,3611,3613,4,147,14,0,3612,3610,1,0,0,0,3612,3611, + 1,0,0,0,3613,295,1,0,0,0,3614,3615,3,300,150,0,3615,297,1,0,0,0, + 3616,3617,3,314,157,0,3617,299,1,0,0,0,3618,3623,3,314,157,0,3619, + 3620,5,4,0,0,3620,3622,3,314,157,0,3621,3619,1,0,0,0,3622,3625,1, + 0,0,0,3623,3621,1,0,0,0,3623,3624,1,0,0,0,3624,301,1,0,0,0,3625, + 3623,1,0,0,0,3626,3627,5,103,0,0,3627,3628,3,304,152,0,3628,3629, + 5,28,0,0,3629,3630,5,187,0,0,3630,3631,3,160,80,0,3631,303,1,0,0, + 0,3632,3633,7,34,0,0,3633,305,1,0,0,0,3634,3638,3,308,154,0,3635, + 3638,5,64,0,0,3636,3638,5,60,0,0,3637,3634,1,0,0,0,3637,3635,1,0, + 0,0,3637,3636,1,0,0,0,3638,307,1,0,0,0,3639,3645,3,314,157,0,3640, + 3641,5,289,0,0,3641,3645,3,314,157,0,3642,3643,5,235,0,0,3643,3645, + 3,314,157,0,3644,3639,1,0,0,0,3644,3640,1,0,0,0,3644,3642,1,0,0, + 0,3645,309,1,0,0,0,3646,3651,3,314,157,0,3647,3648,5,3,0,0,3648, + 3650,3,314,157,0,3649,3647,1,0,0,0,3650,3653,1,0,0,0,3651,3649,1, + 0,0,0,3651,3652,1,0,0,0,3652,311,1,0,0,0,3653,3651,1,0,0,0,3654, + 3662,5,53,0,0,3655,3662,5,248,0,0,3656,3662,5,73,0,0,3657,3662,5, + 127,0,0,3658,3662,5,287,0,0,3659,3662,5,93,0,0,3660,3662,3,314,157, + 0,3661,3654,1,0,0,0,3661,3655,1,0,0,0,3661,3656,1,0,0,0,3661,3657, + 1,0,0,0,3661,3658,1,0,0,0,3661,3659,1,0,0,0,3661,3660,1,0,0,0,3662, + 313,1,0,0,0,3663,3669,5,332,0,0,3664,3669,5,334,0,0,3665,3669,3, + 320,160,0,3666,3669,5,335,0,0,3667,3669,5,333,0,0,3668,3663,1,0, + 0,0,3668,3664,1,0,0,0,3668,3665,1,0,0,0,3668,3666,1,0,0,0,3668,3667, + 1,0,0,0,3669,315,1,0,0,0,3670,3672,5,319,0,0,3671,3670,1,0,0,0,3671, + 3672,1,0,0,0,3672,3673,1,0,0,0,3673,3683,5,330,0,0,3674,3676,5,319, + 0,0,3675,3674,1,0,0,0,3675,3676,1,0,0,0,3676,3677,1,0,0,0,3677,3683, + 5,331,0,0,3678,3680,5,319,0,0,3679,3678,1,0,0,0,3679,3680,1,0,0, + 0,3680,3681,1,0,0,0,3681,3683,5,329,0,0,3682,3671,1,0,0,0,3682,3675, + 1,0,0,0,3682,3679,1,0,0,0,3683,317,1,0,0,0,3684,3687,3,314,157,0, + 3685,3687,3,186,93,0,3686,3684,1,0,0,0,3686,3685,1,0,0,0,3687,319, + 1,0,0,0,3688,3689,7,35,0,0,3689,321,1,0,0,0,477,325,334,338,342, + 346,350,363,370,374,378,384,388,395,400,404,410,414,433,439,443, + 447,451,459,463,466,471,477,486,492,496,502,509,517,529,538,547, + 553,564,572,580,587,597,604,612,627,662,665,668,671,677,682,689, + 695,699,703,711,717,721,725,739,747,766,791,794,801,808,817,821, + 828,836,845,851,856,860,868,873,882,888,895,904,910,914,920,927, + 932,945,950,962,966,972,981,986,992,1020,1026,1028,1034,1040,1042, + 1050,1052,1062,1064,1079,1084,1091,1101,1107,1109,1117,1119,1144, + 1147,1151,1155,1173,1176,1187,1190,1206,1216,1220,1226,1229,1238, + 1250,1253,1263,1267,1273,1280,1285,1291,1295,1299,1305,1316,1325, + 1335,1338,1343,1345,1352,1358,1360,1364,1374,1380,1383,1385,1397, + 1404,1408,1411,1415,1419,1428,1431,1434,1439,1442,1450,1453,1466, + 1470,1477,1485,1496,1499,1509,1512,1523,1528,1536,1539,1543,1547, + 1556,1561,1570,1573,1576,1580,1591,1594,1597,1602,1605,1634,1638, + 1642,1646,1650,1654,1656,1667,1672,1681,1690,1693,1699,1707,1716, + 1719,1727,1730,1733,1738,1741,1753,1756,1764,1769,1773,1775,1777, + 1792,1794,1805,1826,1836,1847,1851,1853,1861,1872,1883,1890,1897, + 1910,1916,1938,1953,1958,1962,1972,1978,1984,1992,1997,2004,2006, + 2012,2018,2022,2027,2036,2041,2055,2065,2068,2077,2082,2087,2089, + 2098,2101,2109,2112,2119,2124,2131,2135,2137,2145,2155,2161,2163, + 2170,2174,2176,2183,2187,2189,2191,2200,2211,2215,2225,2235,2239, + 2247,2249,2262,2270,2279,2285,2293,2299,2303,2308,2313,2319,2333, + 2335,2365,2376,2384,2389,2394,2407,2413,2416,2423,2428,2431,2434, + 2439,2446,2449,2458,2461,2465,2468,2471,2486,2489,2508,2512,2520, + 2524,2549,2552,2561,2567,2573,2579,2588,2591,2594,2613,2622,2644, + 2647,2657,2666,2672,2678,2689,2691,2696,2703,2705,2711,2717,2728, + 2737,2742,2747,2749,2751,2757,2759,2769,2778,2780,2786,2788,2791, + 2801,2803,2811,2819,2822,2827,2832,2844,2848,2852,2855,2857,2865, + 2868,2878,2886,2892,2894,2902,2912,2918,2932,2941,2948,2953,2960, + 2965,2988,2993,2995,3002,3006,3013,3017,3033,3048,3055,3064,3074, + 3079,3088,3093,3101,3109,3112,3118,3121,3128,3136,3139,3147,3150, + 3176,3187,3192,3199,3201,3214,3229,3233,3237,3241,3247,3251,3255, + 3259,3261,3271,3278,3287,3294,3301,3308,3317,3329,3332,3343,3346, + 3351,3361,3377,3391,3394,3403,3406,3418,3422,3437,3441,3447,3457, + 3469,3478,3499,3505,3512,3520,3525,3528,3534,3547,3560,3573,3586, + 3593,3600,3612,3623,3637,3644,3651,3661,3668,3671,3675,3679,3682, + 3686 ]; private static __ATN: antlr.ATN; @@ -23143,14 +23314,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public KW_SELECT(): antlr.TerminalNode { return this.getToken(TrinoSqlParser.KW_SELECT, 0)!; } - public selectItem(): SelectItemContext[]; - public selectItem(i: number): SelectItemContext | null; - public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SelectItemContext); - } - - return this.getRuleContext(i, SelectItemContext); + public selectList(): SelectListContext { + return this.getRuleContext(0, SelectListContext)!; } public setQuantifier(): SetQuantifierContext | null { return this.getRuleContext(0, SetQuantifierContext); @@ -23259,25 +23424,61 @@ export class HavingClauseContext extends antlr.ParserRuleContext { public KW_HAVING(): antlr.TerminalNode { return this.getToken(TrinoSqlParser.KW_HAVING, 0)!; } - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext)!; + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_havingClause; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterHavingClause) { + listener.enterHavingClause(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitHavingClause) { + listener.exitHavingClause(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitHavingClause) { + return visitor.visitHavingClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public selectItem(): SelectItemContext[]; + public selectItem(i: number): SelectItemContext | null; + public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { + if (i === undefined) { + return this.getRuleContexts(SelectItemContext); + } + + return this.getRuleContext(i, SelectItemContext); } public override get ruleIndex(): number { - return TrinoSqlParser.RULE_havingClause; + return TrinoSqlParser.RULE_selectList; } public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterHavingClause) { - listener.enterHavingClause(this); + if(listener.enterSelectList) { + listener.enterSelectList(this); } } public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitHavingClause) { - listener.exitHavingClause(this); + if(listener.exitSelectList) { + listener.exitSelectList(this); } } public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitHavingClause) { - return visitor.visitHavingClause(this); + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); } else { return visitor.visitChildren(this); } @@ -23748,82 +23949,170 @@ export class SetQuantifierContext extends antlr.ParserRuleContext { export class SelectItemContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); + } + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(TrinoSqlParser.KW_AS, 0); + } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } + public columnAliases(): ColumnAliasesContext | null { + return this.getRuleContext(0, ColumnAliasesContext); + } + public selectAllWithoutTable(): SelectAllWithoutTableContext | null { + return this.getRuleContext(0, SelectAllWithoutTableContext); + } public override get ruleIndex(): number { return TrinoSqlParser.RULE_selectItem; } - public override copyFrom(ctx: SelectItemContext): void { - super.copyFrom(ctx); + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterSelectItem) { + listener.enterSelectItem(this); + } } -} -export class SelectAllContext extends SelectItemContext { - public constructor(ctx: SelectItemContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitSelectItem) { + listener.exitSelectItem(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitSelectItem) { + return visitor.visitSelectItem(this); + } else { + return visitor.visitChildren(this); + } } - public primaryExpression(): PrimaryExpressionContext | null { - return this.getRuleContext(0, PrimaryExpressionContext); +} + + +export class SelectAllWithoutTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } public ASTERISK(): antlr.TerminalNode { return this.getToken(TrinoSqlParser.ASTERISK, 0)!; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_AS, 0); + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_selectAllWithoutTable; } - public columnAliases(): ColumnAliasesContext | null { - return this.getRuleContext(0, ColumnAliasesContext); + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterSelectAllWithoutTable) { + listener.enterSelectAllWithoutTable(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitSelectAllWithoutTable) { + listener.exitSelectAllWithoutTable(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitSelectAllWithoutTable) { + return visitor.visitSelectAllWithoutTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public primaryExpression(): PrimaryExpressionContext { + return this.getRuleContext(0, PrimaryExpressionContext)!; + } + public ASTERISK(): antlr.TerminalNode { + return this.getToken(TrinoSqlParser.ASTERISK, 0)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_tableAllColumns; } public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterSelectAll) { - listener.enterSelectAll(this); + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); } } public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitSelectAll) { - listener.exitSelectAll(this); + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); } } public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitSelectAll) { - return visitor.visitSelectAll(this); + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); } else { return visitor.visitChildren(this); } } } -export class SelectSingleContext extends SelectItemContext { - public _alias?: IdentifierContext; - public constructor(ctx: SelectItemContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public columnRef(): ColumnRefContext | null { - return this.getRuleContext(0, ColumnRefContext); + public columnRef(): ColumnRefContext { + return this.getRuleContext(0, ColumnRefContext)!; } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_selectLiteralColumnName; } - public identifier(): IdentifierContext | null { - return this.getRuleContext(0, IdentifierContext); + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_AS, 0); + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_selectExpressionColumnName; } public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterSelectSingle) { - listener.enterSelectSingle(this); + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); } } public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitSelectSingle) { - listener.exitSelectSingle(this); + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); } } public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitSelectSingle) { - return visitor.visitSelectSingle(this); + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); } else { return visitor.visitChildren(this); } @@ -24740,11 +25029,105 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { super.copyFrom(ctx); } } -export class SubqueryRelationContext extends RelationPrimaryContext { +export class ExpressionSourceTableContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public relationSourceTable(): RelationSourceTableContext { + return this.getRuleContext(0, RelationSourceTableContext)!; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterExpressionSourceTable) { + listener.enterExpressionSourceTable(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitExpressionSourceTable) { + listener.exitExpressionSourceTable(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitExpressionSourceTable) { + return visitor.visitExpressionSourceTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ParenthesizedRelationContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public relation(): RelationContext { + return this.getRuleContext(0, RelationContext)!; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterParenthesizedRelation) { + listener.enterParenthesizedRelation(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitParenthesizedRelation) { + listener.exitParenthesizedRelation(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitParenthesizedRelation) { + return visitor.visitParenthesizedRelation(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class TableNameContext extends RelationPrimaryContext { public constructor(ctx: RelationPrimaryContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } + public tableOrViewName(): TableOrViewNameContext { + return this.getRuleContext(0, TableOrViewNameContext)!; + } + public queryPeriod(): QueryPeriodContext | null { + return this.getRuleContext(0, QueryPeriodContext); + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterTableName) { + listener.enterTableName(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitTableName) { + listener.exitTableName(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitTableName) { + return visitor.visitTableName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelationSourceTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_relationSourceTable; + } + public override copyFrom(ctx: RelationSourceTableContext): void { + super.copyFrom(ctx); + } +} +export class SubqueryRelationContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public query(): QueryContext { return this.getRuleContext(0, QueryContext)!; } @@ -24766,8 +25149,8 @@ export class SubqueryRelationContext extends RelationPrimaryContext { } } } -export class JsonTableContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { +export class JsonTableContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -24834,34 +25217,8 @@ export class JsonTableContext extends RelationPrimaryContext { } } } -export class ParenthesizedRelationContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public relation(): RelationContext { - return this.getRuleContext(0, RelationContext)!; - } - public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterParenthesizedRelation) { - listener.enterParenthesizedRelation(this); - } - } - public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitParenthesizedRelation) { - listener.exitParenthesizedRelation(this); - } - } - public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitParenthesizedRelation) { - return visitor.visitParenthesizedRelation(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class UnnestContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { +export class UnnestContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -24901,8 +25258,8 @@ export class UnnestContext extends RelationPrimaryContext { } } } -export class TableFunctionInvocationContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { +export class TableFunctionInvocationContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -24930,8 +25287,8 @@ export class TableFunctionInvocationContext extends RelationPrimaryContext { } } } -export class LateralContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { +export class LateralContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -24959,35 +25316,6 @@ export class LateralContext extends RelationPrimaryContext { } } } -export class TableNameContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public tableOrViewName(): TableOrViewNameContext { - return this.getRuleContext(0, TableOrViewNameContext)!; - } - public queryPeriod(): QueryPeriodContext | null { - return this.getRuleContext(0, QueryPeriodContext); - } - public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterTableName) { - listener.enterTableName(this); - } - } - public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitTableName) { - listener.exitTableName(this); - } - } - public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitTableName) { - return visitor.visitTableName(this); - } else { - return visitor.visitChildren(this); - } - } -} export class JsonTableColumnContext extends antlr.ParserRuleContext { diff --git a/src/lib/trino/TrinoSqlVisitor.ts b/src/lib/trino/TrinoSqlVisitor.ts index 466197c9..078d2a59 100644 --- a/src/lib/trino/TrinoSqlVisitor.ts +++ b/src/lib/trino/TrinoSqlVisitor.ts @@ -125,6 +125,7 @@ import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; import { WhereClauseContext } from "./TrinoSqlParser.js"; import { HavingClauseContext } from "./TrinoSqlParser.js"; +import { SelectListContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; import { PartitionByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; @@ -137,8 +138,11 @@ import { WindowDefinitionContext } from "./TrinoSqlParser.js"; import { WindowSpecificationContext } from "./TrinoSqlParser.js"; import { NamedQueryContext } from "./TrinoSqlParser.js"; import { SetQuantifierContext } from "./TrinoSqlParser.js"; -import { SelectSingleContext } from "./TrinoSqlParser.js"; -import { SelectAllContext } from "./TrinoSqlParser.js"; +import { SelectItemContext } from "./TrinoSqlParser.js"; +import { SelectAllWithoutTableContext } from "./TrinoSqlParser.js"; +import { TableAllColumnsContext } from "./TrinoSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./TrinoSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./TrinoSqlParser.js"; import { RelationDefaultContext } from "./TrinoSqlParser.js"; import { JoinRelationContext } from "./TrinoSqlParser.js"; import { JoinTypeContext } from "./TrinoSqlParser.js"; @@ -160,11 +164,12 @@ import { ColumnListCreateContext } from "./TrinoSqlParser.js"; import { ColumnListContext } from "./TrinoSqlParser.js"; import { ColumnAliasesContext } from "./TrinoSqlParser.js"; import { TableNameContext } from "./TrinoSqlParser.js"; +import { ExpressionSourceTableContext } from "./TrinoSqlParser.js"; +import { ParenthesizedRelationContext } from "./TrinoSqlParser.js"; import { SubqueryRelationContext } from "./TrinoSqlParser.js"; import { UnnestContext } from "./TrinoSqlParser.js"; import { LateralContext } from "./TrinoSqlParser.js"; import { TableFunctionInvocationContext } from "./TrinoSqlParser.js"; -import { ParenthesizedRelationContext } from "./TrinoSqlParser.js"; import { JsonTableContext } from "./TrinoSqlParser.js"; import { OrdinalityColumnContext } from "./TrinoSqlParser.js"; import { ValueColumnContext } from "./TrinoSqlParser.js"; @@ -1187,6 +1192,12 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitHavingClause?: (ctx: HavingClauseContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree @@ -1264,19 +1275,35 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { */ visitSetQuantifier?: (ctx: SetQuantifierContext) => Result; /** - * Visit a parse tree produced by the `selectSingle` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Visit a parse tree produced by `TrinoSqlParser.selectItem`. * @param ctx the parse tree * @return the visitor result */ - visitSelectSingle?: (ctx: SelectSingleContext) => Result; + visitSelectItem?: (ctx: SelectItemContext) => Result; /** - * Visit a parse tree produced by the `selectAll` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Visit a parse tree produced by `TrinoSqlParser.selectAllWithoutTable`. * @param ctx the parse tree * @return the visitor result */ - visitSelectAll?: (ctx: SelectAllContext) => Result; + visitSelectAllWithoutTable?: (ctx: SelectAllWithoutTableContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.tableAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; /** * Visit a parse tree produced by the `relationDefault` * labeled alternative in `TrinoSqlParser.relation`. @@ -1407,43 +1434,50 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { */ visitTableName?: (ctx: TableNameContext) => Result; /** - * Visit a parse tree produced by the `subqueryRelation` + * Visit a parse tree produced by the `expressionSourceTable` + * labeled alternative in `TrinoSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExpressionSourceTable?: (ctx: ExpressionSourceTableContext) => Result; + /** + * Visit a parse tree produced by the `parenthesizedRelation` * labeled alternative in `TrinoSqlParser.relationPrimary`. * @param ctx the parse tree * @return the visitor result */ + visitParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => Result; + /** + * Visit a parse tree produced by the `subqueryRelation` + * labeled alternative in `TrinoSqlParser.relationSourceTable`. + * @param ctx the parse tree + * @return the visitor result + */ visitSubqueryRelation?: (ctx: SubqueryRelationContext) => Result; /** * Visit a parse tree produced by the `unnest` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree * @return the visitor result */ visitUnnest?: (ctx: UnnestContext) => Result; /** * Visit a parse tree produced by the `lateral` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree * @return the visitor result */ visitLateral?: (ctx: LateralContext) => Result; /** * Visit a parse tree produced by the `tableFunctionInvocation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree * @return the visitor result */ visitTableFunctionInvocation?: (ctx: TableFunctionInvocationContext) => Result; - /** - * Visit a parse tree produced by the `parenthesizedRelation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. - * @param ctx the parse tree - * @return the visitor result - */ - visitParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => Result; /** * Visit a parse tree produced by the `jsonTable` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree * @return the visitor result */ diff --git a/src/parser/common/basicSQL.ts b/src/parser/common/basicSQL.ts index cb708546..cf96267b 100644 --- a/src/parser/common/basicSQL.ts +++ b/src/parser/common/basicSQL.ts @@ -537,6 +537,8 @@ export abstract class BasicSQL< const core = new CodeCompletionCore(sqlParserIns); core.preferredRules = this.preferredRules; + // core.showRuleStack = true; + // core.showResult = true; const candidates = core.collectCandidates(caretTokenIndex, parseTree); const originalSuggestions = this.processCandidates(candidates, allTokens, caretTokenIndex); diff --git a/src/parser/common/entityCollector.ts b/src/parser/common/entityCollector.ts index 6fb28820..efc63472 100644 --- a/src/parser/common/entityCollector.ts +++ b/src/parser/common/entityCollector.ts @@ -34,6 +34,8 @@ export interface StmtContext { readonly rootStmt: StmtContext | null; readonly parentStmt: StmtContext | null; readonly isContainCaret?: boolean; + readonly scopeDepth: number; + readonly text: string; } export function toStmtContext( @@ -46,13 +48,15 @@ export function toStmtContext( ): StmtContext | null { const text = ctxToText(ctx, input); if (!text) return null; - const { text: _, ...position } = text; + const { text: stmtText, ...position } = text; return { stmtContextType: type, position, rootStmt: rootStmt ?? null, parentStmt: parentStmt ?? null, isContainCaret, + text: stmtText, + scopeDepth: type === StmtContextType.COMMON_STMT ? 0 : (parentStmt?.scopeDepth ?? 0) + 1, }; } @@ -82,46 +86,106 @@ export interface Argument { argName?: WordRange; argType: WordRange; } +/** + * Base interface for all entity contexts in SQL parsing + */ export interface BaseEntityContext { + /** The type of entity context */ readonly entityContextType: EntityContextType; + /** The text representation of this entity */ readonly text: string; + /** The position information for this entity */ readonly position: WordPosition; + /** The statement this entity belongs to */ readonly belongStmt: StmtContext; - reference?: string | EntityContext; // reference entity + /** Reference to another entity or string */ + reference?: string | EntityContext; + /** Whether the entity is accessible from the caret position, **ONLY** applicable to table entity */ + isAccessible: boolean | null; + /** Entities related to this entity */ + relatedEntities: EntityContext[] | null; + /** Comment attribute for this entity */ [AttrName.comment]: WordRange | null; - [AttrName.alias]?: WordRange | null; // alias token + /** Alias attribute for this entity */ + [AttrName.alias]?: WordRange | null; +} + +/** + * Types of column declarations + */ +export enum ColumnDeclareType { + /** Literal column name */ + LITERAL, + /** Using asterisk syntax (tableName.*) */ + ALL, + /** Complex expressions like subqueries, case statements, function calls */ + EXPRESSION, +} + +/** + * Types of table declarations + */ +export enum TableDeclareType { + /** Regular table reference */ + LITERAL, + /** Table defined by expression (e.g., subquery) */ + EXPRESSION, } export interface CommonEntityContext extends BaseEntityContext { - relatedEntities: CommonEntityContext[] | null; + /** Columns associated with this entity */ columns?: ColumnEntityContext[]; + /** Type of table declaration */ + declareType?: TableDeclareType; } export interface ColumnEntityContext extends BaseEntityContext { + /** Type of column declaration */ + declareType?: ColumnDeclareType; + /** Column type information */ [AttrName.colType]: WordRange | null; + /** Column alias */ + [AttrName.alias]?: WordRange | null; } export interface FuncEntityContext extends BaseEntityContext { - relatedEntities: CommonEntityContext[] | null; - arguments: Argument[] | null; // function arguments - returns?: Argument; // function return value + /** Function arguments */ + arguments: Argument[] | null; + /** Function return value */ + returns?: Argument; } export type EntityContext = CommonEntityContext | FuncEntityContext | ColumnEntityContext; export function isCommonEntityContext(entity: EntityContext): entity is CommonEntityContext { if (!entity) return false; - return 'relatedEntities' in entity && !('arguments' in entity); + return !isFuncEntityContext(entity) && !isColumnEntityContext(entity); } export function isFuncEntityContext(entity: EntityContext): entity is FuncEntityContext { if (!entity) return false; - return 'arguments' in entity; + return [EntityContextType.FUNCTION, EntityContextType.FUNCTION_CREATE].includes( + entity.entityContextType + ); } export function isColumnEntityContext(entity: EntityContext): entity is ColumnEntityContext { if (!entity) return false; - return AttrName.colType in entity; + return [EntityContextType.COLUMN, EntityContextType.COLUMN_CREATE].includes( + entity.entityContextType + ); +} + +/** + * Check if ctx is a child node of a specific rule type + */ +export function isChildContextOf(ctx: ParserRuleContext, parentRuleIndex: number): boolean { + let parentCtx = ctx.parent; + while (parentCtx) { + if (parentCtx.ruleIndex === parentRuleIndex) return true; + parentCtx = parentCtx.parent; + } + return false; } /** @@ -132,12 +196,17 @@ interface AttrInfo { endContextList: string[]; } +interface MetaInfo { + declareType: TableDeclareType | ColumnDeclareType; +} + export function toEntityContext( ctx: ParserRuleContext, type: EntityContextType, input: string, belongStmt: StmtContext, - attrInfo?: AttrInfo[] + attrInfo?: AttrInfo[], + metaInfo?: MetaInfo ): EntityContext | null { const word = ctxToText(ctx, input); if (!word) return null; @@ -151,6 +220,7 @@ export function toEntityContext( text, position, belongStmt, + declareType: metaInfo?.declareType, [AttrName.comment]: null, }; switch (entityInfo.entityContextType) { @@ -216,6 +286,7 @@ export function findAttribute( if (parent?.constructor?.name && !endContextNameList.includes(parent?.constructor?.name)) { attrVal = findAttribute(parent, keyName, endContextNameList); } + if (!attrVal) { if (parent?.children) { attrVal = findAttributeChildren(parent, keyName); @@ -244,6 +315,29 @@ function findAttributeChildren( } return attrVal; } + +/** + * Check if an entity is contained within the range entity's context + * @param entity - The entity to check if it's contained + * @param rangeEntity - The entity that defines the containing range + * @returns true if entity is contained within rangeEntity's range + */ +function isEntityInScope(entity: EntityContext, rangeEntity: EntityContext): boolean { + const entityStart = entity.position.startTokenIndex; + const entityStop = entity.position.endTokenIndex; + const rangeStart = rangeEntity.position.startTokenIndex; + const rangeStop = rangeEntity.position.endTokenIndex; + + return ( + entityStart != null && + entityStop != null && + rangeStart != null && + rangeStop != null && + rangeStart <= entityStart && + rangeStop >= entityStop + ); +} + /** * @todo: Handle alias, includes column alias, table alias, query as alias and so on. * @todo: [may be need] Combine the entities in each clause. @@ -257,6 +351,8 @@ export abstract class EntityCollector { this._stmtStack = new SimpleStack(); this._entityStack = new SimpleStack(); this._rootStmt = null; + this._caretStmtScopeDepth = 0; + this._caretStmt = null; } private readonly _input: string; private readonly _allTokens: Token[]; @@ -266,6 +362,20 @@ export abstract class EntityCollector { private readonly _stmtStack: SimpleStack; /** Staging entities inside a single statement or clause. */ private readonly _entityStack: SimpleStack; + + /** + * The scope depth of the statement containing the caret. + * This is used to determine the accessibility of entities. + */ + private _caretStmtScopeDepth: number; + + /** + * The nearest statement containing the caret, + * Not used for now. + */ + // @ts-ignore + private _caretStmt: StmtContext | null; + /** * Always point to the first non-commonStmt at the bottom of the _stmtStack, * unless there are only commonStmts in the _stmtStack. @@ -295,6 +405,105 @@ export abstract class EntityCollector { this._rootStmt = null; } + exitProgram() { + const entities = Array.from(this._entitiesSet); + if (this._caretTokenIndex !== -1) { + this.attachAccessibleToEntities(entities); + } + this._entityStack.clear(); + } + + /** + * Adds accessibility markers to entities + * @param entities The list of entities to process + */ + protected attachAccessibleToEntities(entities: EntityContext[]): void { + if (!entities.length) { + return; + } + + for (const entity of entities) { + if (entity.isAccessible !== undefined) { + continue; + } + + const entityScopeDepth = entity.belongStmt.scopeDepth ?? 0; + + if (entity.entityContextType === EntityContextType.TABLE) { + entity.isAccessible = + !!entity.belongStmt.isContainCaret && + entityScopeDepth === this._caretStmtScopeDepth; + } else { + entity.isAccessible = null; + } + + // Recursively process related entities + if (entity.relatedEntities) { + this.attachAccessibleToEntities(entity.relatedEntities); + } + + // Process columns of the table + if ((entity as CommonEntityContext).columns) { + const columnEntities = (entity as CommonEntityContext).columns || []; + this.attachAccessibleToEntities(columnEntities); + } + } + } + + /** + * Attach query result to column if the column is derived from expression. + */ + protected attachQueryResultToColumn( + column: ColumnEntityContext, + queryResults: CommonEntityContext[] + ): void { + const relatedEntities = queryResults.filter((queryResult) => + isEntityInScope(queryResult, column) + ); + column.relatedEntities = relatedEntities; + } + + /** + * Attach related columns to query result + */ + protected attachColumnsToQueryResult( + queryResult: CommonEntityContext, + columns: ColumnEntityContext[] + ): void { + const relatedColumns = columns.filter( + (column) => column.belongStmt === queryResult.belongStmt + ); + queryResult.columns = relatedColumns; + } + + /** + * Attach query result to table if the table is derived from expression. + */ + protected attachQueryResultToTable( + table: CommonEntityContext, + queryResults: CommonEntityContext[] + ): void { + const relatedQueryResults = queryResults.filter((queryResult) => + isEntityInScope(queryResult, table) + ); + table.relatedEntities = relatedQueryResults; + } + + /** + * Gets query result entities inside a statement + * @param stmt The statement to search within + * @returns Array of query result entity contexts + */ + protected getQueryResultEntitiesInsideStmt(stmt: StmtContext): CommonEntityContext[] { + return this.getEntities() + .filter( + (entity) => + entity.entityContextType === EntityContextType.QUERY_RESULT && + entity.belongStmt.parentStmt === stmt + ) + .filter(isCommonEntityContext); + } + /** * The antlr4 will ignore hidden tokens, if we type whitespace at the end of a statement, * the whitespace token will not as stop token, so we consider the whitespace token as a part of the nonhidden token in front of it @@ -302,6 +511,7 @@ export abstract class EntityCollector { protected getPrevNonHiddenTokenIndex(caretTokenIndex: number) { if (this._allTokens[caretTokenIndex].channel !== Token.HIDDEN_CHANNEL) return caretTokenIndex; + for (let i = caretTokenIndex - 1; i >= 0; i--) { const token = this._allTokens[i]; if (token.channel !== Token.HIDDEN_CHANNEL) { @@ -309,18 +519,24 @@ export abstract class EntityCollector { return token.text === ';' ? Infinity : token.tokenIndex; } } + return Infinity; } protected pushStmt(ctx: ParserRuleContext, type: StmtContextType) { let isContainCaret: boolean | undefined; + if (this._caretTokenIndex >= 0) { isContainCaret = !!ctx.start && !!ctx.stop && ctx.start.tokenIndex <= this._caretTokenIndex && ctx.stop.tokenIndex >= this.getPrevNonHiddenTokenIndex(this._caretTokenIndex); + if (isContainCaret && type !== StmtContextType.COMMON_STMT) { + this._caretStmtScopeDepth++; + } } + const stmtContext = toStmtContext( ctx, type, @@ -329,6 +545,7 @@ export abstract class EntityCollector { this._stmtStack.peek(), isContainCaret ); + if (stmtContext) { if ( this._stmtStack.isEmpty() || @@ -344,22 +561,38 @@ export abstract class EntityCollector { protected popStmt() { const stmtContext = this._stmtStack.pop(); - if (stmtContext && this._rootStmt === stmtContext) { - this._rootStmt = this._stmtStack.peek(); + if (stmtContext) { + if (stmtContext.stmtContextType === StmtContextType.COMMON_STMT) { + this._rootStmt = this._stmtStack.peek(); + } if (!this._entityStack.isEmpty()) { this.combineEntitiesAndAdd(stmtContext); } + // If the current statement contains the caret and its scope depth equals the caret statement's scope depth + // then set it as the nearest statement containing the caret + if ( + stmtContext.isContainCaret && + stmtContext.scopeDepth === this._caretStmtScopeDepth + ) { + this._caretStmt = stmtContext; + } } return stmtContext; } - protected pushEntity(ctx: ParserRuleContext, type: EntityContextType, attrInfo?: AttrInfo[]) { + protected pushEntity( + ctx: ParserRuleContext, + type: EntityContextType, + attrInfo?: AttrInfo[], + metaInfo?: MetaInfo + ) { const entityContext = toEntityContext( ctx, type, this._input, this._stmtStack.peek(), - attrInfo + attrInfo, + metaInfo ); if (entityContext) { if (this._stmtStack.isEmpty()) { @@ -407,8 +640,107 @@ export abstract class EntityCollector { stmtContext.stmtContextType === StmtContextType.CREATE_TABLE_STMT ) { return this.combineCreateTableOrViewStmtEntities(stmtContext, entitiesInsideStmt); + } else if (stmtContext.stmtContextType === StmtContextType.SELECT_STMT) { + const tableSourceEntities = this.combineFromTableSource( + stmtContext, + entitiesInsideStmt + ); + const queryResultEntities = this.combineQueryResultStmtEntities( + stmtContext, + entitiesInsideStmt + ); + const otherEntities = entitiesInsideStmt.filter( + (entity) => + ![ + EntityContextType.QUERY_RESULT, + EntityContextType.TABLE, + EntityContextType.COLUMN, + ].includes(entity.entityContextType) + ); + return Array.from( + new Set([...tableSourceEntities, ...queryResultEntities, ...otherEntities]) + ); + } else { + // Do not collect column and queryResult entities if they are not inside a select statement + return entitiesInsideStmt.filter( + (entity) => + entity.entityContextType !== EntityContextType.COLUMN && + entity.entityContextType !== EntityContextType.QUERY_RESULT + ); } - return entitiesInsideStmt; + } + + protected combineQueryResultStmtEntities( + stmtContext: StmtContext, + entitiesInsideStmt: EntityContext[] + ): EntityContext[] { + if (!stmtContext || !entitiesInsideStmt?.length) { + return []; + } + + const columnEntities: ColumnEntityContext[] = []; + const relatedTableEntities: CommonEntityContext[] = []; + const finalEntities: EntityContext[] = []; + const queryResultEntitiesInsideStmt: CommonEntityContext[] = + this.getQueryResultEntitiesInsideStmt(stmtContext); + + // Categorize and process entities + entitiesInsideStmt.forEach((entity) => { + if (entity.belongStmt !== stmtContext) return; + if ( + entity.entityContextType === EntityContextType.QUERY_RESULT && + isCommonEntityContext(entity) + ) { + finalEntities.push(entity); + } else if ( + entity.entityContextType === EntityContextType.COLUMN && + isColumnEntityContext(entity) + ) { + if (entity.declareType === ColumnDeclareType.EXPRESSION) { + this.attachQueryResultToColumn(entity, queryResultEntitiesInsideStmt); + } + columnEntities.push(entity); + } else if ( + entity.entityContextType === EntityContextType.TABLE && + isCommonEntityContext(entity) + ) { + relatedTableEntities.push(entity); + } + }); + + // combine collected entities to query result entity + finalEntities.forEach((queryResultEntity) => { + this.attachColumnsToQueryResult( + queryResultEntity as CommonEntityContext, + columnEntities + ); + queryResultEntity.relatedEntities = relatedTableEntities; + }); + + return finalEntities; + } + + protected combineFromTableSource( + stmtContext: StmtContext, + entitiesInsideStmt: EntityContext[] + ): EntityContext[] { + const finalEntities: EntityContext[] = []; + const queryResultEntitiesInsideStmt = this.getQueryResultEntitiesInsideStmt(stmtContext); + const tableEntities = ( + entitiesInsideStmt.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) + ); + + tableEntities.forEach((table) => { + // If it's an EXPRESSION type (subquery), need to associate with QUERY_RESULT entities + if (table.declareType === TableDeclareType.EXPRESSION) { + this.attachQueryResultToTable(table, queryResultEntitiesInsideStmt); + } + finalEntities.push(table); + }); + + return finalEntities; } protected combineCreateTableOrViewStmtEntities( @@ -417,34 +749,39 @@ export abstract class EntityCollector { ): EntityContext[] { const columns: EntityContext[] = []; const relatedEntities: EntityContext[] = []; + const queryResultEntitiesInsideStmt: EntityContext[] = + this.getQueryResultEntitiesInsideStmt(stmtContext); let mainEntity: EntityContext | null = null; - const finalEntities = entitiesInsideStmt.reduce((result, entity) => { - if (entity.belongStmt !== stmtContext) { - if ( - entity.entityContextType !== EntityContextType.COLUMN && - entity.entityContextType !== EntityContextType.COLUMN_CREATE + const finalEntities = [...entitiesInsideStmt, ...queryResultEntitiesInsideStmt].reduce( + (result, entity) => { + if (entity.belongStmt !== stmtContext) { + if ( + entity.entityContextType !== EntityContextType.COLUMN && + entity.entityContextType !== EntityContextType.COLUMN_CREATE + ) { + relatedEntities.push(entity); + result.push(entity); + } + return result; + } + + if (entity.entityContextType === EntityContextType.COLUMN_CREATE) { + columns.push(entity); + } else if ( + entity.entityContextType === EntityContextType.TABLE_CREATE || + entity.entityContextType === EntityContextType.VIEW_CREATE ) { + mainEntity = entity; + result.push(entity); + return result; + } else if (entity.entityContextType !== EntityContextType.COLUMN) { relatedEntities.push(entity); result.push(entity); } return result; - } - - if (entity.entityContextType === EntityContextType.COLUMN_CREATE) { - columns.push(entity); - } else if ( - entity.entityContextType === EntityContextType.TABLE_CREATE || - entity.entityContextType === EntityContextType.VIEW_CREATE - ) { - mainEntity = entity; - result.push(entity); - return result; - } else if (entity.entityContextType !== EntityContextType.COLUMN) { - relatedEntities.push(entity); - result.push(entity); - } - return result; - }, [] as EntityContext[]); + }, + [] as EntityContext[] + ); if (mainEntity && columns.length) { if (isCommonEntityContext(mainEntity)) { mainEntity = Object.assign(mainEntity, { diff --git a/src/parser/common/textAndWord.ts b/src/parser/common/textAndWord.ts index a7217adc..6eec7e5d 100644 --- a/src/parser/common/textAndWord.ts +++ b/src/parser/common/textAndWord.ts @@ -11,9 +11,13 @@ export interface WordPosition { readonly startColumn: number; /** end at ..n + 1 */ readonly endColumn: number; + /** start at 0 */ + readonly startTokenIndex: number; + /** end at ..n-1 */ + readonly endTokenIndex: number; } -export interface WordRange extends WordPosition { +export interface WordRange extends Omit { /** content of word */ readonly text: string; } @@ -31,6 +35,10 @@ export interface TextPosition { readonly startColumn: number; /** end at ..n + 1 */ readonly endColumn: number; + /** start at 0 */ + readonly startTokenIndex: number; + /** end at ..n-1 */ + readonly endTokenIndex: number; } export interface TextSlice extends TextPosition { @@ -75,6 +83,8 @@ export function ctxToText( endIndex, startColumn: ctx.start.column + 1, endColumn: ctx.stop.column + 1 + (ctx.stop.text?.length ?? 0), + startTokenIndex: ctx.start.tokenIndex, + endTokenIndex: ctx.stop.tokenIndex, }; } diff --git a/src/parser/common/types.ts b/src/parser/common/types.ts index a248abf4..63bf1cf8 100644 --- a/src/parser/common/types.ts +++ b/src/parser/common/types.ts @@ -44,6 +44,8 @@ export enum EntityContextType { COLUMN = 'column', /** column name that will be created */ COLUMN_CREATE = 'columnCreate', + /** query result */ + QUERY_RESULT = 'queryResult', /** table property key when creating table*/ TABLE_PROPERTY_KEY = 'tablePropertyKey', /** table property value when creating table*/ diff --git a/src/parser/flink/flinkEntityCollector.ts b/src/parser/flink/flinkEntityCollector.ts index 7c0d7faf..a0f6658a 100644 --- a/src/parser/flink/flinkEntityCollector.ts +++ b/src/parser/flink/flinkEntityCollector.ts @@ -1,7 +1,10 @@ import { + AtomExpressionTableContext, + AtomFunctionTableContext, CatalogPathContext, CatalogPathCreateContext, ColumnNameCreateContext, + ColumnProjectItemContext, CreateCatalogContext, CreateDatabaseContext, CreateFunctionContext, @@ -11,9 +14,15 @@ import { DatabasePathCreateContext, FunctionNameCreateContext, InsertStatementContext, + OverWindowItemContext, PhysicalColumnDefinitionContext, QueryStatementContext, + SelectExpressionColumnNameContext, + SelectListContext, + SelectLiteralColumnNameContext, + SelectWindowItemColumnNameContext, SqlStatementContext, + TableAllColumnsContext, TablePathContext, TablePathCreateContext, TableReferenceContext, @@ -21,7 +30,13 @@ import { ViewPathCreateContext, } from '../../lib/flink/FlinkSqlParser'; import { FlinkSqlParserListener } from '../../lib/flink/FlinkSqlParserListener'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class FlinkEntityCollector extends EntityCollector implements FlinkSqlParserListener { @@ -48,18 +63,50 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar } exitTablePath(ctx: TablePathContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [TableReferenceContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [TableReferenceContext.name], + }, + ], + { + declareType: TableDeclareType.LITERAL, + } + ); + } + + exitAtomFunctionTable(ctx: AtomFunctionTableContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [TableReferenceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + exitAtomExpressionTable(ctx: AtomExpressionTableContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [TableReferenceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } @@ -85,6 +132,15 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar ]); } + exitFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + } + + exitSelectList(ctx: SelectListContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + + /** Column entity rules */ exitColumnNameCreate(ctx: ColumnNameCreateContext) { this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ { @@ -98,8 +154,68 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar ]); } - exitFunctionNameCreate(ctx: FunctionNameCreateContext) { - this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [ColumnProjectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.LITERAL, + } + ); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [ColumnProjectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitSelectWindowItemColumnName(ctx: SelectWindowItemColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [ColumnProjectItemContext.name, OverWindowItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [ColumnProjectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.ALL, + } + ); } /** ===== Statement begin */ diff --git a/src/parser/hive/hiveEntityCollector.ts b/src/parser/hive/hiveEntityCollector.ts index 1088defa..b1f6b586 100644 --- a/src/parser/hive/hiveEntityCollector.ts +++ b/src/parser/hive/hiveEntityCollector.ts @@ -1,5 +1,7 @@ import { HiveSqlParserListener } from '../../lib'; import { + AtomPartitionedTableFunctionContext, + AtomValuesClauseContext, ColumnNameCommentContext, ColumnNameCreateContext, ColumnNameTypeConstraintContext, @@ -13,17 +15,34 @@ import { FromInsertStmtContext, FromSelectStmtContext, FunctionNameCreateContext, + HiveSqlParser, InsertStmtContext, + PartitionedTableFunctionContext, + QueryStatementExpressionContext, + SelectExpressionColumnNameContext, + SelectItemContext, + SelectListContext, + SelectLiteralColumnNameContext, SelectStatementContext, StatementContext, + SubQuerySourceContext, + TableAllColumnsContext, TableNameContext, TableNameCreateContext, TableSourceContext, UniqueJoinSourceContext, ViewNameContext, ViewNameCreateContext, + VirtualTableSourceContext, } from '../../lib/hive/HiveSqlParser'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + isChildContextOf, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class HiveEntityCollector extends EntityCollector implements HiveSqlParserListener { @@ -37,22 +56,78 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse ]); } + /** Table Entity Rules */ exitTableName(ctx: TableNameContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [TableSourceContext.name, UniqueJoinSourceContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [TableSourceContext.name, UniqueJoinSourceContext.name], + }, + ], + { + declareType: TableDeclareType.LITERAL, + } + ); + } + + /** Virtual Table Entity Rules */ + exitAtomValuesClause(ctx: AtomValuesClauseContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [VirtualTableSourceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + /** SubQuery Table Entity Rules */ + exitQueryStatementExpression(ctx: QueryStatementExpressionContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [SubQuerySourceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } + /** Partitioned Table Entity Rules */ + exitAtomPartitionedTableFunction(ctx: AtomPartitionedTableFunctionContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [PartitionedTableFunctionContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + /** Column Entity Rules */ exitColumnNameCreate(ctx: ColumnNameCreateContext) { this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ { @@ -66,6 +141,47 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse ]); } + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_selectItem)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.LITERAL, + } + ); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_selectItem)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_selectItem)) return; + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.ALL, + }); + } + exitViewNameCreate(ctx: ViewNameCreateContext) { this.pushEntity(ctx, EntityContextType.VIEW_CREATE, [ { @@ -75,6 +191,10 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse ]); } + exitSelectList(ctx: SelectListContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + exitViewName(ctx: ViewNameContext) { this.pushEntity(ctx, EntityContextType.VIEW); } diff --git a/src/parser/impala/impalaEntityCollector.ts b/src/parser/impala/impalaEntityCollector.ts index 0bf4cd0b..0a06bb93 100644 --- a/src/parser/impala/impalaEntityCollector.ts +++ b/src/parser/impala/impalaEntityCollector.ts @@ -1,5 +1,7 @@ import { ImpalaSqlParserListener } from '../../lib'; import { + AliasedRelationContext, + AtomSubQueryTableSourceContext, ColumnDefinitionContext, ColumnNamePathCreateContext, CreateAggregateFunctionContext, @@ -15,15 +17,26 @@ import { InsertStatementContext, KuduTableElementContext, QueryStatementContext, - SampledRelationContext, + SelectExpressionColumnNameContext, + SelectItemContext, + SelectListContext, + SelectLiteralColumnNameContext, SingleStatementContext, + TableAllColumnsContext, TableNameCreateContext, TableNamePathContext, + UnnestContext, ViewColumnItemContext, ViewNameCreateContext, ViewNamePathContext, } from '../../lib/impala/ImpalaSqlParser'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class ImpalaEntityCollector extends EntityCollector implements ImpalaSqlParserListener { @@ -41,18 +54,50 @@ export class ImpalaEntityCollector extends EntityCollector implements ImpalaSqlP } exitTableNamePath(ctx: TableNamePathContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [SampledRelationContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ], + { + declareType: TableDeclareType.LITERAL, + } + ); + } + + exitAtomSubQueryTableSource(ctx: AtomSubQueryTableSourceContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + exitUnnest(ctx: UnnestContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } @@ -107,6 +152,58 @@ export class ImpalaEntityCollector extends EntityCollector implements ImpalaSqlP this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); } + exitSelectList(ctx: SelectListContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.LITERAL, + } + ); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.ALL, + } + ); + } + /** ===== Statement begin */ enterSingleStatement(ctx: SingleStatementContext) { this.pushStmt(ctx, StmtContextType.COMMON_STMT); diff --git a/src/parser/impala/index.ts b/src/parser/impala/index.ts index 39dbbd18..9d112987 100644 --- a/src/parser/impala/index.ts +++ b/src/parser/impala/index.ts @@ -129,7 +129,8 @@ export class ImpalaSQL extends BasicSQL { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(12); + expect(splitListener.statementsContext.length).toBe(18); }); test('create table by columns', () => { @@ -41,25 +44,29 @@ describe('Flink entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('MyTable'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 13, - endIndex: 19, - line: 1, - startColumn: 14, - endColumn: 21, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 13, + endIndex: 19, + line: 1, + startColumn: 14, + endColumn: 21, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 0, - endIndex: 180, - startLine: 1, - endLine: 1, - startColumn: 1, - endColumn: 182, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 0, + endIndex: 180, + startLine: 1, + endLine: 1, + startColumn: 1, + endColumn: 182, + }) + ); expect(tableCreateEntity[AttrName.comment]).toEqual({ text: "'test table comment ABC.'", @@ -118,48 +125,54 @@ describe('Flink entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('my_ctas_table'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 197, - endIndex: 209, - line: 3, - startColumn: 14, - endColumn: 27, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 197, + endIndex: 209, + line: 3, + startColumn: 14, + endColumn: 27, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 184, - endIndex: 323, - startLine: 3, - endLine: 11, - startColumn: 1, - endColumn: 20, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 184, + endIndex: 323, + startLine: 3, + endLine: 11, + startColumn: 1, + endColumn: 20, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities.length).toBe(1); tableCreateEntity.relatedEntities.forEach((relatedEntity) => { - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(relatedEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); }); } - expect(allEntities[1].text).toBe('source_table'); - expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); - expect(allEntities[1].position).toEqual({ - startIndex: 286, - endIndex: 297, - line: 9, - startColumn: 5, - endColumn: 17, - }); + expect(allEntities[0].text).toBe('source_table'); + expect(allEntities[0].belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + expect(allEntities[0].position).toEqual( + expect.objectContaining({ + startIndex: 286, + endIndex: 297, + line: 9, + startColumn: 5, + endColumn: 17, + }) + ); }); test('create table like', () => { @@ -202,7 +215,7 @@ describe('Flink entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const tableEntity = allEntities[0]; const tableEntity1 = allEntities[1]; @@ -246,7 +259,7 @@ describe('Flink entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const tableEntity1 = allEntities[0]; const tableEntity2 = allEntities[1]; @@ -277,10 +290,10 @@ describe('Flink entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(4); - const tableEntity1 = allEntities[0]; - const tableEntity2 = allEntities[1]; + const tableEntity1 = allEntities[0]; // t1 + const tableEntity2 = allEntities[2]; // t2 expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('t1'); @@ -327,10 +340,11 @@ describe('Flink entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const insertTableEntity = allEntities[0]; - const fromTableEntity1 = allEntities[1]; + const fromTableEntity1 = allEntities[0]; // page_view_source + const queryResultEntity = allEntities[1]; // queryResult + const insertTableEntity = allEntities[2]; // catalog1.db1.country_page_view expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(insertTableEntity.text).toBe('catalog1.db1.country_page_view'); @@ -342,6 +356,8 @@ describe('Flink entity collector tests', () => { expect(fromTableEntity1.belongStmt.parentStmt).toBe(insertTableEntity.belongStmt); expect(fromTableEntity1.belongStmt.rootStmt).toBe(insertTableEntity.belongStmt); + + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); }); test('multiple insert', () => { @@ -378,11 +394,15 @@ describe('Flink entity collector tests', () => { flink.listen(collectListener as ParseTreeListener, insertTableContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE); - expect(allEntities[0].text).toBe('view1'); - expect(allEntities[0][AttrName.comment]).toEqual({ + const fromTableEntity = allEntities[0]; // from_tb (TABLE) + const queryResultEntity = allEntities[1]; // queryResult + const viewCreateEntity = allEntities[2]; // view1 (VIEW_CREATE) + + expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(viewCreateEntity.text).toBe('view1'); + expect(viewCreateEntity[AttrName.comment]).toEqual({ text: "'this is a view'", startIndex: 1254, endIndex: 1269, @@ -390,11 +410,13 @@ describe('Flink entity collector tests', () => { startColumn: 39, endColumn: 55, }); - expect(allEntities[0].belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + + expect(fromTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(fromTableEntity.text).toBe('tbl'); + expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(allEntities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(allEntities[1].text).toBe('tbl'); - expect(allEntities[1].belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); }); test('create database', () => { @@ -419,23 +441,27 @@ describe('Flink entity collector tests', () => { startColumn: 43, endColumn: 71, }); - expect(dbEntity.position).toEqual({ - endColumn: 34, - endIndex: 1335, - line: 44, - startColumn: 31, - startIndex: 1333, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 34, + endIndex: 1335, + line: 44, + startColumn: 31, + startIndex: 1333, + }) + ); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 119, - endIndex: 1420, - endLine: 44, - startColumn: 1, - startIndex: 1303, - startLine: 44, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 119, + endIndex: 1420, + endLine: 44, + startColumn: 1, + startIndex: 1303, + startLine: 44, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); expect(dbEntity.relatedEntities).toBeNull(); @@ -456,28 +482,231 @@ describe('Flink entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('tempFunction'); - expect(functionEntity.position).toEqual({ - endColumn: 43, - endIndex: 1465, - line: 46, - startColumn: 31, - startIndex: 1454, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 43, + endIndex: 1465, + line: 46, + startColumn: 31, + startIndex: 1454, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 58, - endIndex: 1480, - endLine: 46, - startColumn: 1, - startIndex: 1424, - startLine: 46, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 58, + endIndex: 1480, + endLine: 46, + startColumn: 1, + startIndex: 1424, + startLine: 46, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity?.arguments)?.toBeNull(); expect(functionEntity.relatedEntities).toBeNull(); } }); + + test('should collect query result and columns', () => { + const flink = new FlinkSQL(); + const context = splitListener.statementsContext[12]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const flink = new FlinkSQL(); + const context = splitListener.statementsContext[13]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const flink = new FlinkSQL(); + const context = splitListener.statementsContext[14]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect LATERAL TABLE function', () => { + const flink = new FlinkSQL(); + const context = splitListener.statementsContext[15]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + + const tableEntities = allEntities.find( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext; + expect(tableEntities).toBeDefined(); + expect(tableEntities?.text).toBe('LATERAL TABLE(generate_series(1, 10))'); + expect(tableEntities?.declareType).toBe(TableDeclareType.EXPRESSION); + }); + + test('should collect aggregate function and table', () => { + const flink = new FlinkSQL(); + const context = splitListener.statementsContext[16]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(1); + expect(queryResults[0].text).toBe('COUNT(*)'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('COUNT(*)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + expect(tableEntities.length).toBe(1); + expect(tableEntities[0].text).toBe('t1'); + }); + + test('should collect query with where condition', () => { + const flink = new FlinkSQL(); + const context = splitListener.statementsContext[17]; + + const collectListener = new FlinkEntityCollector(commonSql); + flink.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(1); + expect(queryResults[0].text).toBe('id'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('id'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + expect(tableEntities.length).toBe(1); + expect(tableEntities[0].text).toBe('t1'); + }); + + test('table entities are accessible when caret is in outer query', () => { + const flink = new FlinkSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = flink.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const flink = new FlinkSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = flink.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); }); diff --git a/test/parser/flink/contextCollect/fixtures/common.sql b/test/parser/flink/contextCollect/fixtures/common.sql index 3dc20d59..210a31f4 100644 --- a/test/parser/flink/contextCollect/fixtures/common.sql +++ b/test/parser/flink/contextCollect/fixtures/common.sql @@ -43,4 +43,16 @@ CREATE VIEW view1(col1, col2) COMMENT 'this is a view' AS SELECT col3, col4 FROM CREATE DATABASE IF NOT EXISTS db1 COMMENT 'this is a created database' WITH ('key1' = 'value1', 'key2.a' = 'value2.a'); -CREATE FUNCTION IF NOT EXISTS tempFunction AS 'SimpleUdf'; \ No newline at end of file +CREATE FUNCTION IF NOT EXISTS tempFunction AS 'SimpleUdf'; + +SELECT id, age as new_age, count(*) as total FROM t1; + +SELECT t1.*, t2.* FROM t1, t2; + +SELECT * FROM t1; + +SELECT * FROM LATERAL TABLE(generate_series(1, 10)); + +SELECT COUNT(*) FROM t1; + +SELECT id FROM t1 WHERE id > 0; \ No newline at end of file diff --git a/test/parser/flink/suggestion/suggestionWithEntity.test.ts b/test/parser/flink/suggestion/suggestionWithEntity.test.ts index 63cfae00..ce108ee1 100644 --- a/test/parser/flink/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/flink/suggestion/suggestionWithEntity.test.ts @@ -3,6 +3,7 @@ import path from 'path'; import { FlinkSQL } from 'src/parser/flink'; import { CaretPosition, EntityContextType } from 'src/parser/common/types'; import { commentOtherLine } from 'test/helper'; +import { CommonEntityContext, TableDeclareType } from 'src/parser/common/entityCollector'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), @@ -31,10 +32,14 @@ describe('Flink SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = flink.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('tb1'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('select with columns with columns and trailing comma', () => { @@ -52,10 +57,12 @@ describe('Flink SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = flink.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); }); test('insert into from nested query with no column', () => { @@ -73,14 +80,31 @@ describe('Flink SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = flink.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + expect(entities.length).toBe(5); - expect(entities[1].text).toBe('inside_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + const insertTableEntity = entities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'insert_tb' + ); + const insideTableEntity = entities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'inside_tb' + ); + const derivedTableEntity = entities.find( + (e: CommonEntityContext) => + e.entityContextType === EntityContextType.TABLE && + e.declareType === TableDeclareType.EXPRESSION + ); + const queryResultEntity = entities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ); + + expect(insideTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(insertTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(derivedTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(queryResultEntity[0].belongStmt.isContainCaret).toBeTruthy(); + expect(queryResultEntity[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(queryResultEntity[0].text).toBe(''); + expect(queryResultEntity[1].text).toBe('col1, col2, country, state'); }); test('insert into from nested query with columns and trailing comma', () => { @@ -98,14 +122,24 @@ describe('Flink SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = flink.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('inside_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities.length).toBe(5); + + const insertTableEntity = entities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'insert_tb' + ); + const insideTableEntity = entities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'inside_tb' + ); + const derivedTableEntity = entities.find( + (e: CommonEntityContext) => + e.entityContextType === EntityContextType.TABLE && + e.declareType === TableDeclareType.EXPRESSION + ); + + expect(insertTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(insideTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(derivedTableEntity.belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with no column', () => { @@ -123,14 +157,19 @@ describe('Flink SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = flink.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('derived_table'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('origin_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('origin_table'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('derived_table'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with columns and trailing comma', () => { @@ -148,14 +187,22 @@ describe('Flink SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = flink.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('derived_table'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); - expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + expect(entities.length).toBe(3); - expect(entities[1].text).toBe('origin_table'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + const derivedTableEntity = entities.find( + (e) => + e.entityContextType === EntityContextType.TABLE_CREATE && e.text === 'derived_table' + ); + const originTableEntity = entities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'origin_table' + ); + const queryResultEntity = entities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ); + + expect(derivedTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(originTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(queryResultEntity.text).toBe('id,'); }); test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => { diff --git a/test/parser/hive/contextCollect/entityCollector.test.ts b/test/parser/hive/contextCollect/entityCollector.test.ts index 726dd5ec..831c27bf 100644 --- a/test/parser/hive/contextCollect/entityCollector.test.ts +++ b/test/parser/hive/contextCollect/entityCollector.test.ts @@ -4,9 +4,12 @@ import path from 'path'; import { HiveSqlParserListener } from 'src/lib/hive/HiveSqlParserListener'; import { AttrName, + ColumnDeclareType, + CommonEntityContext, isCommonEntityContext, isFuncEntityContext, StmtContextType, + TableDeclareType, } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { HiveEntityCollector, HiveSQL } from 'src/parser/hive'; @@ -25,7 +28,7 @@ describe('Hive entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(21); + expect(splitListener.statementsContext.length).toBe(26); }); test('create table by like', () => { @@ -43,25 +46,29 @@ describe('Hive entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('copy_table'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 48, - endIndex: 46, - line: 1, - startColumn: 38, - startIndex: 37, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 48, + endIndex: 46, + line: 1, + startColumn: 38, + startIndex: 37, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 66, - endIndex: 64, - startLine: 1, - endLine: 1, - startIndex: 0, - startColumn: 1, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 66, + endIndex: 64, + startLine: 1, + endLine: 1, + startIndex: 0, + startColumn: 1, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).not.toBeNull(); @@ -88,25 +95,29 @@ describe('Hive entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('list_bucket_multiple'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 67, - endIndex: 133, - line: 3, - startColumn: 47, - startIndex: 114, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 67, + endIndex: 133, + line: 3, + startColumn: 47, + startIndex: 114, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 132, - endIndex: 198, - endLine: 3, - startColumn: 1, - startIndex: 68, - startLine: 3, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 132, + endIndex: 198, + endLine: 3, + startColumn: 1, + startIndex: 68, + startLine: 3, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).toBeNull(); expect(tableCreateEntity.columns).not.toBeNull(); @@ -131,36 +142,42 @@ describe('Hive entity collector tests', () => { hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(3); - expect(allEntities.length).toBe(2); + debugger; - const tableCreateEntity = allEntities[0]; - const tableFromEntity = allEntities[1]; + const tableFromEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('derived_table'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 41, - endIndex: 241, - line: 5, - startColumn: 28, - startIndex: 229, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 41, + endIndex: 241, + line: 5, + startColumn: 28, + startIndex: 229, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 17, - endIndex: 279, - endLine: 9, - startColumn: 1, - startIndex: 202, - startLine: 5, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 17, + endIndex: 279, + endLine: 9, + startColumn: 1, + startIndex: 202, + startLine: 5, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).not.toBeNull(); - expect(tableCreateEntity.relatedEntities[0]).toBe(tableFromEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(tableCreateEntity.columns).toBeUndefined(); } expect(tableFromEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -176,33 +193,38 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewCreateEntity = allEntities[0]; - const viewSelectEntity = allEntities[1]; + const viewSelectEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const viewCreateEntity = allEntities[2]; expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewCreateEntity.text).toBe('mydb.bro_view'); - expect(viewCreateEntity.position).toEqual({ - endColumn: 26, - endIndex: 307, - line: 11, - startColumn: 13, - startIndex: 295, - }); + expect(viewCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 26, + endIndex: 307, + line: 11, + startColumn: 13, + startIndex: 295, + }) + ); expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - expect(viewCreateEntity.belongStmt.position).toEqual({ - endColumn: 31, - endIndex: 338, - endLine: 12, - startColumn: 1, - startIndex: 283, - startLine: 11, - }); + expect(viewCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 31, + endIndex: 338, + endLine: 12, + startColumn: 1, + startIndex: 283, + startLine: 11, + }) + ); if (isCommonEntityContext(viewCreateEntity)) { expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(viewCreateEntity.columns).toBeUndefined(); } expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -218,30 +240,35 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewCreateEntity = allEntities[0]; - const viewSelectEntity = allEntities[1]; + const viewSelectEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const viewCreateEntity = allEntities[2]; expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewCreateEntity.text).toBe('mydb.task_view'); - expect(viewCreateEntity.position).toEqual({ - endColumn: 27, - endIndex: 367, - line: 14, - startColumn: 13, - startIndex: 354, - }); + expect(viewCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 27, + endIndex: 367, + line: 14, + startColumn: 13, + startIndex: 354, + }) + ); expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - expect(viewCreateEntity.belongStmt.position).toEqual({ - endColumn: 21, - endIndex: 596, - endLine: 25, - startColumn: 1, - startIndex: 342, - startLine: 14, - }); + expect(viewCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 21, + endIndex: 596, + endLine: 25, + startColumn: 1, + startIndex: 342, + startLine: 14, + }) + ); expect(viewCreateEntity[AttrName.comment]).toEqual({ text: "'一个任务信息视图'", @@ -253,7 +280,7 @@ describe('Hive entity collector tests', () => { }); if (isCommonEntityContext(viewCreateEntity)) { expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(viewCreateEntity.columns).not.toBeNull(); expect(viewCreateEntity.columns.length).toBe(3); viewCreateEntity.columns.forEach((columEntity) => { @@ -305,30 +332,35 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewCreateEntity = allEntities[0]; - const viewSelectEntity = allEntities[1]; + const viewSelectEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const viewCreateEntity = allEntities[2]; expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewCreateEntity.text).toBe('mydb.bro_view'); - expect(viewCreateEntity.position).toEqual({ - endColumn: 53, - endIndex: 651, - line: 27, - startColumn: 40, - startIndex: 639, - }); + expect(viewCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 53, + endIndex: 651, + line: 27, + startColumn: 40, + startIndex: 639, + }) + ); expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - expect(viewCreateEntity.belongStmt.position).toEqual({ - endColumn: 31, - endIndex: 715, - endLine: 30, - startColumn: 1, - startIndex: 600, - startLine: 27, - }); + expect(viewCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 31, + endIndex: 715, + endLine: 30, + startColumn: 1, + startIndex: 600, + startLine: 27, + }) + ); expect(viewCreateEntity[AttrName.comment]).toEqual({ text: "'一个测试视图'", endColumn: 17, @@ -339,7 +371,7 @@ describe('Hive entity collector tests', () => { }); if (isCommonEntityContext(viewCreateEntity)) { expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(viewCreateEntity.columns).toBeUndefined(); } expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -355,29 +387,33 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const selectTableEntity = allEntities[0]; expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(selectTableEntity.text).toBe('table_name_1'); - expect(selectTableEntity.position).toEqual({ - endColumn: 36, - endIndex: 753, - line: 32, - startColumn: 24, - startIndex: 742, - }); + expect(selectTableEntity.position).toEqual( + expect.objectContaining({ + endColumn: 36, + endIndex: 753, + line: 32, + startColumn: 24, + startIndex: 742, + }) + ); expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(selectTableEntity.belongStmt.position).toEqual({ - endColumn: 36, - endIndex: 753, - endLine: 32, - startColumn: 1, - startIndex: 719, - startLine: 32, - }); + expect(selectTableEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 36, + endIndex: 753, + endLine: 32, + startColumn: 1, + startIndex: 719, + startLine: 32, + }) + ); if (isCommonEntityContext(selectTableEntity)) { expect(selectTableEntity.columns).toBeUndefined(); expect(selectTableEntity.relatedEntities).toBeNull(); @@ -392,30 +428,34 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const selectTableEntity = allEntities[0]; const joinTableEntity = allEntities[1]; expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(selectTableEntity.text).toBe('a'); - expect(selectTableEntity.position).toEqual({ - endColumn: 18, - endIndex: 773, - line: 34, - startColumn: 17, - startIndex: 773, - }); + expect(selectTableEntity.position).toEqual( + expect.objectContaining({ + endColumn: 18, + endIndex: 773, + line: 34, + startColumn: 17, + startIndex: 773, + }) + ); expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(selectTableEntity.belongStmt.position).toEqual({ - endColumn: 74, - endIndex: 829, - endLine: 34, - startColumn: 1, - startIndex: 757, - startLine: 34, - }); + expect(selectTableEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 74, + endIndex: 829, + endLine: 34, + startColumn: 1, + startIndex: 757, + startLine: 34, + }) + ); if (isCommonEntityContext(selectTableEntity)) { expect(selectTableEntity.columns).toBeUndefined(); expect(selectTableEntity.relatedEntities).toBeNull(); @@ -437,29 +477,33 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const selectTableEntity = allEntities[0]; expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(selectTableEntity.text).toBe('table_name_1'); - expect(selectTableEntity.position).toEqual({ - endColumn: 18, - endIndex: 849, - line: 36, - startColumn: 6, - startIndex: 838, - }); + expect(selectTableEntity.position).toEqual( + expect.objectContaining({ + endColumn: 18, + endIndex: 849, + line: 36, + startColumn: 6, + startIndex: 838, + }) + ); expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(selectTableEntity.belongStmt.position).toEqual({ - endColumn: 36, - endIndex: 867, - endLine: 36, - startColumn: 1, - startIndex: 833, - startLine: 36, - }); + expect(selectTableEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 36, + endIndex: 867, + endLine: 36, + startColumn: 1, + startIndex: 833, + startLine: 36, + }) + ); if (isCommonEntityContext(selectTableEntity)) { expect(selectTableEntity?.columns)?.toBeUndefined(); expect(selectTableEntity.relatedEntities).toBeNull(); @@ -474,30 +518,34 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const selectTableEntity = allEntities[0]; const joinTableEntity = allEntities[1]; expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(selectTableEntity.text).toBe('a'); - expect(selectTableEntity.position).toEqual({ - endColumn: 7, - endIndex: 876, - line: 38, - startColumn: 6, - startIndex: 876, - }); + expect(selectTableEntity.position).toEqual( + expect.objectContaining({ + endColumn: 7, + endIndex: 876, + line: 38, + startColumn: 6, + startIndex: 876, + }) + ); expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(selectTableEntity.belongStmt.position).toEqual({ - endColumn: 74, - endIndex: 943, - endLine: 38, - startColumn: 1, - startIndex: 871, - startLine: 38, - }); + expect(selectTableEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 74, + endIndex: 943, + endLine: 38, + startColumn: 1, + startIndex: 871, + startLine: 38, + }) + ); if (isCommonEntityContext(selectTableEntity)) { expect(selectTableEntity.columns).toBeUndefined(); expect(selectTableEntity.relatedEntities).toBeNull(); @@ -524,23 +572,27 @@ describe('Hive entity collector tests', () => { expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(insertTableEntity.text).toBe('students'); - expect(insertTableEntity.position).toEqual({ - endColumn: 27, - endIndex: 972, - line: 40, - startColumn: 19, - startIndex: 965, - }); + expect(insertTableEntity.position).toEqual( + expect.objectContaining({ + endColumn: 27, + endIndex: 972, + line: 40, + startColumn: 19, + startIndex: 965, + }) + ); expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); - expect(insertTableEntity.belongStmt.position).toEqual({ - endColumn: 66, - endIndex: 1045, - endLine: 41, - startColumn: 1, - startIndex: 947, - startLine: 40, - }); + expect(insertTableEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 66, + endIndex: 1045, + endLine: 41, + startColumn: 1, + startIndex: 947, + startLine: 40, + }) + ); if (isCommonEntityContext(insertTableEntity)) { expect(insertTableEntity.columns).toBeUndefined(); expect(insertTableEntity.relatedEntities).toBeNull(); @@ -555,30 +607,34 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const insertTableEntity = allEntities[0]; - const fromTableEntity = allEntities[1]; + const fromTableEntity = allEntities[0]; + const insertTableEntity = allEntities[2]; expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(insertTableEntity.text).toBe('table_name'); - expect(insertTableEntity.position).toEqual({ - endColumn: 23, - endIndex: 1070, - line: 43, - startColumn: 13, - startIndex: 1061, - }); + expect(insertTableEntity.position).toEqual( + expect.objectContaining({ + endColumn: 23, + endIndex: 1070, + line: 43, + startColumn: 13, + startIndex: 1061, + }) + ); expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); - expect(insertTableEntity.belongStmt.position).toEqual({ - endColumn: 18, - endIndex: 1183, - endLine: 46, - startColumn: 1, - startIndex: 1049, - startLine: 43, - }); + expect(insertTableEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 18, + endIndex: 1183, + endLine: 46, + startColumn: 1, + startIndex: 1049, + startLine: 43, + }) + ); if (isCommonEntityContext(insertTableEntity)) { expect(insertTableEntity.columns).toBeUndefined(); expect(insertTableEntity.relatedEntities).toBeNull(); @@ -605,23 +661,27 @@ describe('Hive entity collector tests', () => { expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(insertTableEntity.text).toBe('page_view'); - expect(insertTableEntity.position).toEqual({ - endColumn: 33, - endIndex: 1241, - line: 49, - startColumn: 24, - startIndex: 1233, - }); + expect(insertTableEntity.position).toEqual( + expect.objectContaining({ + endColumn: 33, + endIndex: 1241, + line: 49, + startColumn: 24, + startIndex: 1233, + }) + ); expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); - expect(insertTableEntity.belongStmt.position).toEqual({ - endColumn: 93, - endIndex: 1370, - endLine: 50, - startColumn: 1, - startIndex: 1187, - startLine: 48, - }); + expect(insertTableEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 93, + endIndex: 1370, + endLine: 50, + startColumn: 1, + startIndex: 1187, + startLine: 48, + }) + ); if (isCommonEntityContext(insertTableEntity)) { expect(insertTableEntity.columns).toBeUndefined(); expect(insertTableEntity.relatedEntities).toBeNull(); @@ -646,23 +706,27 @@ describe('Hive entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); expect(dbEntity.text).toBe('mydb'); - expect(dbEntity.position).toEqual({ - endColumn: 21, - endIndex: 1393, - line: 52, - startColumn: 17, - startIndex: 1390, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 21, + endIndex: 1393, + line: 52, + startColumn: 17, + startIndex: 1390, + }) + ); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 21, - endIndex: 1393, - endLine: 52, - startColumn: 1, - startIndex: 1374, - startLine: 52, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 21, + endIndex: 1393, + endLine: 52, + startColumn: 1, + startIndex: 1374, + startLine: 52, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); expect(dbEntity.relatedEntities).toBeNull(); @@ -683,23 +747,27 @@ describe('Hive entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); expect(dbEntity.text).toBe('mydb'); - expect(dbEntity.position).toEqual({ - endColumn: 28, - endIndex: 1423, - line: 54, - startColumn: 24, - startIndex: 1420, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 28, + endIndex: 1423, + line: 54, + startColumn: 24, + startIndex: 1420, + }) + ); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 28, - endIndex: 1423, - endLine: 54, - startColumn: 1, - startIndex: 1397, - startLine: 54, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 28, + endIndex: 1423, + endLine: 54, + startColumn: 1, + startIndex: 1397, + startLine: 54, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); @@ -721,23 +789,27 @@ describe('Hive entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE); expect(dbEntity.text).toBe('db1'); - expect(dbEntity.position).toEqual({ - endColumn: 24, - endIndex: 1449, - line: 56, - startColumn: 21, - startIndex: 1447, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 24, + endIndex: 1449, + line: 56, + startColumn: 21, + startIndex: 1447, + }) + ); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 25, - endIndex: 1450, - endLine: 56, - startColumn: 1, - startIndex: 1427, - startLine: 56, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 25, + endIndex: 1450, + endLine: 56, + startColumn: 1, + startIndex: 1427, + startLine: 56, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); @@ -759,25 +831,29 @@ describe('Hive entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('base_analizer'); - expect(functionEntity.position).toEqual({ - endColumn: 30, - endIndex: 1481, - line: 58, - startColumn: 17, - startIndex: 1469, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 30, + endIndex: 1481, + line: 58, + startColumn: 17, + startIndex: 1469, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 30, - endIndex: 1481, - endLine: 58, - startColumn: 17, - startIndex: 1469, - startLine: 58, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 30, + endIndex: 1481, + endLine: 58, + startColumn: 17, + startIndex: 1469, + startLine: 58, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); @@ -799,25 +875,29 @@ describe('Hive entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('flat_analizer'); - expect(functionEntity.position).toEqual({ - endColumn: 40, - endIndex: 1549, - line: 60, - startColumn: 27, - startIndex: 1537, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 40, + endIndex: 1549, + line: 60, + startColumn: 27, + startIndex: 1537, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 40, - endIndex: 1549, - endLine: 60, - startColumn: 27, - startIndex: 1537, - startLine: 60, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 40, + endIndex: 1549, + endLine: 60, + startColumn: 27, + startIndex: 1537, + startLine: 60, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); expect(functionEntity.relatedEntities).toBeNull(); @@ -837,25 +917,29 @@ describe('Hive entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('test_change'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 25, - endIndex: 1604, - line: 62, - startColumn: 14, - startIndex: 1594, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 25, + endIndex: 1604, + line: 62, + startColumn: 14, + startIndex: 1594, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 104, - endIndex: 1683, - endLine: 62, - startColumn: 1, - startIndex: 1581, - startLine: 62, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 104, + endIndex: 1683, + endLine: 62, + startColumn: 1, + startIndex: 1581, + startLine: 62, + }) + ); expect(tableCreateEntity[AttrName.comment]).toEqual({ text: "'table test comment'", endColumn: 104, @@ -929,23 +1013,27 @@ describe('Hive entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); expect(dbEntity.text).toBe('testdb'); - expect(dbEntity.position).toEqual({ - endColumn: 23, - endIndex: 1708, - line: 64, - startColumn: 17, - startIndex: 1703, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 23, + endIndex: 1708, + line: 64, + startColumn: 17, + startIndex: 1703, + }) + ); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 69, - endIndex: 1754, - endLine: 64, - startColumn: 1, - startIndex: 1687, - startLine: 64, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 69, + endIndex: 1754, + endLine: 64, + startColumn: 1, + startIndex: 1687, + startLine: 64, + }) + ); expect(dbEntity[AttrName.comment]).toEqual({ text: "'test database'", endColumn: 47, @@ -967,30 +1055,34 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const selectTableEntity = allEntities[0]; const joinTableEntity = allEntities[1]; expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(selectTableEntity.text).toBe('table_busi'); - expect(selectTableEntity.position).toEqual({ - endColumn: 27, - endIndex: 1783, - line: 66, - startColumn: 17, - startIndex: 1774, - }); + expect(selectTableEntity.position).toEqual( + expect.objectContaining({ + endColumn: 27, + endIndex: 1783, + line: 66, + startColumn: 17, + startIndex: 1774, + }) + ); expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(selectTableEntity.belongStmt.position).toEqual({ - endColumn: 97, - endIndex: 1853, - endLine: 66, - startColumn: 1, - startIndex: 1758, - startLine: 66, - }); + expect(selectTableEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 97, + endIndex: 1853, + endLine: 66, + startColumn: 1, + startIndex: 1758, + startLine: 66, + }) + ); expect(selectTableEntity[AttrName.alias]).toEqual({ text: 'a', endColumn: 29, @@ -1019,4 +1111,193 @@ describe('Hive entity collector tests', () => { expect(joinTableEntity.relatedEntities).toBeNull(); } }); + + test('table entities are accessible when caret is in outer query', () => { + const hiveSql = new HiveSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = hiveSql.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const hiveSql = new HiveSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = hiveSql.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); + + test('should collect query result and columns', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[21]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[22]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[23]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect derived table and derived column', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[24]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + + expect(tableEntities.length).toBe(4); + expect(tableEntities[0].text).toBe('t3'); + expect(tableEntities[0].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[0][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[1].text).toBe('t1'); + expect(tableEntities[1].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[1][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[2].text).toBe('select id, name from t1'); + expect(tableEntities[2].declareType).toBe(TableDeclareType.EXPRESSION); + expect(tableEntities[2][AttrName.alias]?.text).toBe('derived_table'); + + expect(tableEntities[3].text).toBe('t2'); + expect(tableEntities[3].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[3][AttrName.alias]).toBeFalsy(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(3); + expect(queryResults[0].text).toBe('max(age)'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('max(age)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[0].columns[0][AttrName.alias]).toBeFalsy(); + + expect(queryResults[2].text).toBe('id, (select max(age) from t3) as max_age'); + expect(queryResults[2].columns?.length).toBe(2); + expect(queryResults[2].columns[0].text).toBe('id'); + expect(queryResults[2].columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(queryResults[2].columns[1].text).toBe('(select max(age) from t3)'); + expect(queryResults[2].columns[1].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[2].columns[1][AttrName.alias]?.text).toBe('max_age'); + }); + + test('should collect query result in where clause', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[25]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + + expect(queryResults.length).toBe(2); + expect(queryResults[0].text).toBe('name'); + expect(queryResults[0].columns?.[0].text).toBe('name'); + expect(queryResults[1].text).toBe('id'); + }); }); diff --git a/test/parser/hive/contextCollect/fixtures/common.sql b/test/parser/hive/contextCollect/fixtures/common.sql index 2f779521..def002b4 100644 --- a/test/parser/hive/contextCollect/fixtures/common.sql +++ b/test/parser/hive/contextCollect/fixtures/common.sql @@ -63,4 +63,14 @@ CREATE TABLE test_change (a int, b varchar(255) COMMENT 'column 2', c int) COMME CREATE DATABASE testdb COMMENT 'test database' LOCATION '/test/path'; -SELECT a.* FROM table_busi a JOIN table_issue b ON (a.id = b.id AND a.department = b.department); \ No newline at end of file +SELECT a.* FROM table_busi a JOIN table_issue b ON (a.id = b.id AND a.department = b.department); + +select id, age as new_age, count(*) as total from t1; + +select t1.*, t2.* from t1, t2; + +select * from t1; + +select id, (select max(age) from t3) as max_age from (select id, name from t1) as derived_table, t2; + +select id from a1 where name in (select name from b1); \ No newline at end of file diff --git a/test/parser/hive/suggestion/suggestionWithEntity.test.ts b/test/parser/hive/suggestion/suggestionWithEntity.test.ts index 3e7a4b61..43688976 100644 --- a/test/parser/hive/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/hive/suggestion/suggestionWithEntity.test.ts @@ -3,6 +3,7 @@ import path from 'path'; import { HiveSQL } from 'src/parser/hive'; import { CaretPosition, EntityContextType } from 'src/parser/common/types'; import { commentOtherLine } from 'test/helper'; +import { AttrName } from 'src/parser/common/entityCollector'; const syntaxSql = fs.readFileSync( path.join(__dirname, 'fixtures', 'suggestionWithEntity.sql'), @@ -31,10 +32,14 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('tb1'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('select with columns with columns and trailing comma', () => { @@ -52,7 +57,7 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -73,10 +78,14 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('table_name_1'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('from table select with with columns and trailing comma', () => { @@ -94,7 +103,7 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('table_name_1'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); @@ -115,7 +124,7 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); + expect(entities.length).toBe(3); expect(entities[0].text).toBe('a'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -125,6 +134,10 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); expect(entities[1].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe(''); + expect(entities[2].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('from joined table select with columns and trailing comma', () => { @@ -142,7 +155,7 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); + expect(entities.length).toBe(3); expect(entities[0].text).toBe('a'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -196,6 +209,7 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('page_view_stg'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); @@ -223,14 +237,28 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(5); + + expect(entities[0].text).toBe('inside_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('inside_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].text).toBe(''); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].text).toBe('SELECT FROM inside_tb'); + expect(entities[2][AttrName.alias].text).toBe('subquery'); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[3].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[3].text).toBe('col1, col2, country, state'); + expect(entities[3].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[4].text).toBe('insert_tb'); + expect(entities[4].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[4].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into from nested query with columns and trailing comma', () => { @@ -248,14 +276,18 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + const tableEntities = entities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ); + expect(tableEntities.length).toBe(3); - expect(entities[1].text).toBe('inside_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(tableEntities[0].text).toBe('inside_tb'); + expect(tableEntities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(tableEntities[2].text).toBe('insert_tb'); + expect(tableEntities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with no column', () => { @@ -273,14 +305,19 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('derived_table'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('origin_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('origin_table'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('derived_table'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with columns and trailing comma', () => { @@ -298,14 +335,16 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('derived_table'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('origin_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('origin_table'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[2].text).toBe('derived_table'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => { diff --git a/test/parser/impala/contextCollect/entityCollector.test.ts b/test/parser/impala/contextCollect/entityCollector.test.ts index 711aa76a..72c33938 100644 --- a/test/parser/impala/contextCollect/entityCollector.test.ts +++ b/test/parser/impala/contextCollect/entityCollector.test.ts @@ -4,9 +4,12 @@ import path from 'path'; import { ImpalaSqlParserListener } from 'src/lib/impala/ImpalaSqlParserListener'; import { AttrName, + ColumnDeclareType, + CommonEntityContext, isCommonEntityContext, isFuncEntityContext, StmtContextType, + TableDeclareType, } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { ImpalaEntityCollector, ImpalaSQL, ImpalaSqlSplitListener } from 'src/parser/impala'; @@ -24,7 +27,7 @@ describe('ImpalaSQL entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(14); + expect(splitListener.statementsContext.length).toBe(19); }); test('create table by like', () => { @@ -42,25 +45,29 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('new_Table'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 23, - endIndex: 21, - line: 1, - startColumn: 14, - startIndex: 13, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 23, + endIndex: 21, + line: 1, + startColumn: 14, + startIndex: 13, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 38, - endIndex: 36, - endLine: 1, - startColumn: 1, - startIndex: 0, - startLine: 1, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 38, + endIndex: 36, + endLine: 1, + startColumn: 1, + startIndex: 0, + startLine: 1, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities.length).toBe(1); expect(tableCreateEntity.columns).toBeUndefined(); @@ -85,25 +92,29 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('census'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 20, - endIndex: 58, - line: 3, - startColumn: 14, - startIndex: 53, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 20, + endIndex: 58, + line: 3, + startColumn: 14, + startIndex: 53, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 138, - endIndex: 176, - endLine: 3, - startColumn: 1, - startIndex: 40, - startLine: 3, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 138, + endIndex: 176, + endLine: 3, + startColumn: 1, + startIndex: 40, + startLine: 3, + }) + ); expect(tableCreateEntity[AttrName.comment]).toEqual({ text: "'common census table comment'", endColumn: 138, @@ -161,32 +172,37 @@ describe('ImpalaSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; - const fromCreateEntity = allEntities[1]; + const fromCreateEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('sorted_census_data'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 32, - endIndex: 210, - line: 5, - startColumn: 14, - startIndex: 193, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 32, + endIndex: 210, + line: 5, + startColumn: 14, + startIndex: 193, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 30, - endIndex: 339, - endLine: 9, - startColumn: 1, - startIndex: 180, - startLine: 5, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 30, + endIndex: 339, + endLine: 9, + startColumn: 1, + startIndex: 180, + startLine: 5, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities.length).toBe(1); @@ -194,7 +210,7 @@ describe('ImpalaSQL entity collector tests', () => { expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(fromCreateEntity.text).toBe('unsorted_census_data'); - expect(tableCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); } }); @@ -206,32 +222,37 @@ describe('ImpalaSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; - const fromCreateEntity = allEntities[1]; + const fromCreateEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('ctas_t1'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 21, - endIndex: 362, - line: 11, - startColumn: 14, - startIndex: 356, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 21, + endIndex: 362, + line: 11, + startColumn: 14, + startIndex: 356, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 31, - endIndex: 466, - endLine: 14, - startColumn: 1, - startIndex: 343, - startLine: 11, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 31, + endIndex: 466, + endLine: 14, + startColumn: 1, + startIndex: 343, + startLine: 11, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities.length).toBe(1); @@ -239,7 +260,7 @@ describe('ImpalaSQL entity collector tests', () => { expect(fromCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(fromCreateEntity.text).toBe('kudu_t1'); - expect(tableCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); } }); @@ -257,13 +278,15 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('kudu_t3'); - expect(tableCreateEntity.position).toEqual({ - endColumn: 21, - endIndex: 489, - line: 16, - startColumn: 14, - startIndex: 483, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 21, + endIndex: 489, + line: 16, + startColumn: 14, + startIndex: 483, + }) + ); expect(tableCreateEntity[AttrName.comment]).toEqual({ text: "'kudu table comment'", endColumn: 31, @@ -276,14 +299,16 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 17, - endIndex: 857, - endLine: 24, - startColumn: 1, - startIndex: 470, - startLine: 16, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 17, + endIndex: 857, + endLine: 24, + startColumn: 1, + startIndex: 470, + startLine: 16, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).toBeNull(); @@ -349,20 +374,23 @@ describe('ImpalaSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewCreateEntity = allEntities[0]; - const fromCreateEntity = allEntities[1]; + const queryResultEntity = allEntities[1]; + const fromCreateEntity = allEntities[0]; + const viewCreateEntity = allEntities[2]; expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewCreateEntity.text).toBe('my_view'); - expect(viewCreateEntity.position).toEqual({ - endColumn: 20, - endIndex: 879, - line: 26, - startColumn: 13, - startIndex: 873, - }); + expect(viewCreateEntity.position).toEqual( + expect.objectContaining({ + endColumn: 20, + endIndex: 879, + line: 26, + startColumn: 13, + startIndex: 873, + }) + ); expect(viewCreateEntity[AttrName.comment]).toEqual({ text: "'view comment'", @@ -374,17 +402,19 @@ describe('ImpalaSQL entity collector tests', () => { }); expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - expect(viewCreateEntity.belongStmt.position).toEqual({ - endColumn: 169, - endIndex: 1028, - endLine: 26, - startColumn: 1, - startIndex: 861, - startLine: 26, - }); + expect(viewCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 169, + endIndex: 1028, + endLine: 26, + startColumn: 1, + startIndex: 861, + startLine: 26, + }) + ); if (isCommonEntityContext(viewCreateEntity)) { - expect(viewCreateEntity.relatedEntities[0]).toBe(fromCreateEntity); + expect(viewCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(viewCreateEntity.columns.length).toBe(2); viewCreateEntity.columns.forEach((columEntity) => { expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); @@ -427,30 +457,34 @@ describe('ImpalaSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableInsertEntity = allEntities[0]; - const fromTableEntity = allEntities[1]; + const fromTableEntity = allEntities[0]; + const tableInsertEntity = allEntities[2]; expect(tableInsertEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableInsertEntity.text).toBe('t2'); - expect(tableInsertEntity.position).toEqual({ - endColumn: 15, - endIndex: 1045, - line: 28, - startColumn: 13, - startIndex: 1044, - }); + expect(tableInsertEntity.position).toEqual( + expect.objectContaining({ + endColumn: 15, + endIndex: 1045, + line: 28, + startColumn: 13, + startIndex: 1044, + }) + ); expect(tableInsertEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); - expect(tableInsertEntity.belongStmt.position).toEqual({ - endColumn: 40, - endIndex: 1070, - endLine: 28, - startColumn: 1, - startIndex: 1032, - startLine: 28, - }); + expect(tableInsertEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 40, + endIndex: 1070, + endLine: 28, + startColumn: 1, + startIndex: 1032, + startLine: 28, + }) + ); if (isCommonEntityContext(tableInsertEntity)) { expect(tableInsertEntity.columns).toBeUndefined(); } @@ -469,29 +503,33 @@ describe('ImpalaSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const tableEntity1 = allEntities[0]; expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('a'); - expect(tableEntity1.position).toEqual({ - endColumn: 16, - endIndex: 1088, - line: 30, - startColumn: 15, - startIndex: 1088, - }); + expect(tableEntity1.position).toEqual( + expect.objectContaining({ + endColumn: 16, + endIndex: 1088, + line: 30, + startColumn: 15, + startIndex: 1088, + }) + ); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableEntity1.belongStmt.position).toEqual({ - endColumn: 16, - endIndex: 1088, - endLine: 30, - startColumn: 1, - startIndex: 1074, - startLine: 30, - }); + expect(tableEntity1.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 16, + endIndex: 1088, + endLine: 30, + startColumn: 1, + startIndex: 1074, + startLine: 30, + }) + ); if (isCommonEntityContext(tableEntity1)) { expect(tableEntity1.columns).toBeUndefined(); expect(tableEntity1.relatedEntities).toBeNull(); @@ -506,20 +544,22 @@ describe('ImpalaSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const tableEntity1 = allEntities[0]; const tableEntity2 = allEntities[1]; expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('table1'); - expect(tableEntity1.position).toEqual({ - endColumn: 32, - endIndex: 1122, - line: 32, - startColumn: 26, - startIndex: 1117, - }); + expect(tableEntity1.position).toEqual( + expect.objectContaining({ + endColumn: 32, + endIndex: 1122, + line: 32, + startColumn: 26, + startIndex: 1117, + }) + ); expect(tableEntity1[AttrName.alias]).toEqual({ text: 't1', endColumn: 38, @@ -530,14 +570,16 @@ describe('ImpalaSQL entity collector tests', () => { }); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableEntity1.belongStmt.position).toEqual({ - endColumn: 20, - endIndex: 1217, - endLine: 34, - startColumn: 1, - startIndex: 1092, - startLine: 32, - }); + expect(tableEntity1.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 20, + endIndex: 1217, + endLine: 34, + startColumn: 1, + startIndex: 1092, + startLine: 32, + }) + ); if (isCommonEntityContext(tableEntity1)) { expect(tableEntity1.columns).toBeUndefined(); expect(tableEntity1.relatedEntities).toBeNull(); @@ -576,13 +618,15 @@ describe('ImpalaSQL entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); expect(dbEntity.text).toBe('my_db'); - expect(dbEntity.position).toEqual({ - endColumn: 22, - endIndex: 1241, - line: 36, - startColumn: 17, - startIndex: 1237, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 22, + endIndex: 1241, + line: 36, + startColumn: 17, + startIndex: 1237, + }) + ); expect(dbEntity[AttrName.comment]).toEqual({ text: "'my first db'", @@ -594,14 +638,16 @@ describe('ImpalaSQL entity collector tests', () => { }); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 74, - endIndex: 1293, - endLine: 36, - startColumn: 1, - startIndex: 1221, - startLine: 36, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 74, + endIndex: 1293, + endLine: 36, + startColumn: 1, + startIndex: 1221, + startLine: 36, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); @@ -623,13 +669,15 @@ describe('ImpalaSQL entity collector tests', () => { expect(schemaEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); expect(schemaEntity.text).toBe('my_schema'); - expect(schemaEntity.position).toEqual({ - endColumn: 38, - endIndex: 1333, - line: 38, - startColumn: 29, - startIndex: 1325, - }); + expect(schemaEntity.position).toEqual( + expect.objectContaining({ + endColumn: 38, + endIndex: 1333, + line: 38, + startColumn: 29, + startIndex: 1325, + }) + ); expect(schemaEntity[AttrName.comment]).toEqual({ text: "'my first schema'", endColumn: 64, @@ -640,14 +688,16 @@ describe('ImpalaSQL entity collector tests', () => { }); expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); - expect(schemaEntity.belongStmt.position).toEqual({ - endColumn: 94, - endIndex: 1389, - endLine: 38, - startColumn: 1, - startIndex: 1297, - startLine: 38, - }); + expect(schemaEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 94, + endIndex: 1389, + endLine: 38, + startColumn: 1, + startIndex: 1297, + startLine: 38, + }) + ); if (isCommonEntityContext(schemaEntity)) { expect(schemaEntity.columns).toBeUndefined(); expect(schemaEntity.relatedEntities).toBeNull(); @@ -668,24 +718,28 @@ describe('ImpalaSQL entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE); expect(dbEntity.text).toBe('my_database'); - expect(dbEntity.position).toEqual({ - endColumn: 32, - endIndex: 1423, - line: 40, - startColumn: 21, - startIndex: 1413, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 32, + endIndex: 1423, + line: 40, + startColumn: 21, + startIndex: 1413, + }) + ); // 由于没有处理 comment 语句,所以当前是处于 COMMON_STMT expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 59, - endIndex: 1450, - endLine: 40, - startColumn: 1, - startIndex: 1393, - startLine: 40, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 59, + endIndex: 1450, + endLine: 40, + startColumn: 1, + startIndex: 1393, + startLine: 40, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); @@ -707,25 +761,29 @@ describe('ImpalaSQL entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('function_name'); - expect(functionEntity.position).toEqual({ - endColumn: 40, - endIndex: 1491, - line: 42, - startColumn: 27, - startIndex: 1479, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 40, + endIndex: 1491, + line: 42, + startColumn: 27, + startIndex: 1479, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 26, - endIndex: 1608, - endLine: 46, - startColumn: 1, - startIndex: 1453, - startLine: 42, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 26, + endIndex: 1608, + endLine: 46, + startColumn: 1, + startIndex: 1453, + startLine: 42, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); @@ -747,28 +805,222 @@ describe('ImpalaSQL entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('function_name'); - expect(functionEntity.position).toEqual({ - endColumn: 30, - endIndex: 1640, - line: 48, - startColumn: 17, - startIndex: 1628, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 30, + endIndex: 1640, + line: 48, + startColumn: 17, + startIndex: 1628, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 21, - endIndex: 1734, - endLine: 51, - startColumn: 1, - startIndex: 1612, - startLine: 48, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 21, + endIndex: 1734, + endLine: 51, + startColumn: 1, + startIndex: 1612, + startLine: 48, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); expect(functionEntity.relatedEntities).toBeNull(); } }); + + test('should collect query result and columns', () => { + const impalaSql = new ImpalaSQL(); + const context = splitListener.statementsContext[14]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const impalaSql = new ImpalaSQL(); + const context = splitListener.statementsContext[15]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const impalaSql = new ImpalaSQL(); + const context = splitListener.statementsContext[16]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect derived table and derived column', () => { + const impalaSql = new ImpalaSQL(); + const context = splitListener.statementsContext[17]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + + expect(tableEntities.length).toBe(4); + expect(tableEntities[0].text).toBe('t3'); + expect(tableEntities[0].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[0][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[1].text).toBe('t1'); + expect(tableEntities[1].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[1][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[2].text).toBe('(select id, name from t1)'); + expect(tableEntities[2].declareType).toBe(TableDeclareType.EXPRESSION); + expect(tableEntities[2][AttrName.alias]?.text).toBe('derived_table'); + + expect(tableEntities[3].text).toBe('t2'); + expect(tableEntities[3].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[3][AttrName.alias]).toBeFalsy(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(3); + expect(queryResults[0].text).toBe('max(age)'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('max(age)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[0].columns[0][AttrName.alias]).toBeFalsy(); + + expect(queryResults[2].text).toBe('id, (select max(age) from t3) as max_age'); + expect(queryResults[2].columns?.length).toBe(2); + expect(queryResults[2].columns[0].text).toBe('id'); + expect(queryResults[2].columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(queryResults[2].columns[1].text).toBe('(select max(age) from t3)'); + expect(queryResults[2].columns[1].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[2].columns[1][AttrName.alias]?.text).toBe('max_age'); + }); + + test('should collect query result in where clause', () => { + const impalaSql = new ImpalaSQL(); + const context = splitListener.statementsContext[18]; + + const collectListener = new ImpalaEntityCollector(commonSql); + impalaSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + + expect(queryResults.length).toBe(2); + expect(queryResults[0].text).toBe('name'); + expect(queryResults[0].columns?.[0].text).toBe('name'); + expect(queryResults[1].text).toBe('id'); + }); + + test('table entities are accessible when caret is in outer query', () => { + const impalaSql = new ImpalaSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = impalaSql.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const impalaSql = new ImpalaSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = impalaSql.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); }); diff --git a/test/parser/impala/contextCollect/fixtures/common.sql b/test/parser/impala/contextCollect/fixtures/common.sql index be084789..e5467995 100644 --- a/test/parser/impala/contextCollect/fixtures/common.sql +++ b/test/parser/impala/contextCollect/fixtures/common.sql @@ -49,3 +49,13 @@ CREATE FUNCTION function_name(arg_type1, arg_type2) RETURNS return_type LOCATION 'hdfs_path_to_dot_so' SYMBOL='symbol_name'; + +select id, age as new_age, count(*) as total from t1; + +select t1.*, t2.* from t1, t2; + +select * from t1; + +select id, (select max(age) from t3) as max_age from (select id, name from t1) as derived_table, t2; + +select id from a1 where name in (select name from b1); diff --git a/test/parser/impala/suggestion/suggestionWithEntity.test.ts b/test/parser/impala/suggestion/suggestionWithEntity.test.ts index aeb69878..d0c7df85 100644 --- a/test/parser/impala/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/impala/suggestion/suggestionWithEntity.test.ts @@ -49,10 +49,14 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = impala.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('students'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('name, calculate_age(birthdate) AS age,'); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with no column', () => { @@ -70,14 +74,18 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = impala.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with trailing comma', () => { @@ -95,14 +103,26 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = impala.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities.length).toBe(3); + + const insertTableEntity = entities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'insert_tb' + ); + const fromTableEntity = entities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'from_tb' + ); + const queryResultEntity = entities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ); + + expect(insertTableEntity).toBeDefined(); + expect(fromTableEntity).toBeDefined(); + expect(queryResultEntity).toBeDefined(); + + expect(insertTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(fromTableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(queryResultEntity.text).toBe('id,'); }); test('create table as select with no column', () => { @@ -120,14 +140,18 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = impala.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with trailing comma', () => { @@ -145,14 +169,28 @@ describe('Impala SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = impala.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); - expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + expect(entities.length).toBe(3); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + const tableCreateEntity = entities.find( + (e) => + e.entityContextType === EntityContextType.TABLE_CREATE && + e.text === 'sorted_census_data' + ); + const tableEntity = entities.find( + (e) => + e.entityContextType === EntityContextType.TABLE && e.text === 'unsorted_census_data' + ); + const queryResultEntity = entities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ); + + expect(tableCreateEntity).toBeDefined(); + expect(tableEntity).toBeDefined(); + expect(queryResultEntity).toBeDefined(); + + expect(tableCreateEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(tableEntity.belongStmt.isContainCaret).toBeTruthy(); + expect(queryResultEntity.text).toBe('id,'); }); test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => { diff --git a/test/parser/mysql/contextCollect/entityCollector.test.ts b/test/parser/mysql/contextCollect/entityCollector.test.ts index 4d6c5e57..558c8959 100644 --- a/test/parser/mysql/contextCollect/entityCollector.test.ts +++ b/test/parser/mysql/contextCollect/entityCollector.test.ts @@ -4,9 +4,12 @@ import path from 'path'; import { MySqlParserListener } from 'src/lib/mysql/MySqlParserListener'; import { AttrName, + ColumnDeclareType, + CommonEntityContext, isCommonEntityContext, isFuncEntityContext, StmtContextType, + TableDeclareType, } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { MySQL, MySqlEntityCollector, MysqlSplitListener } from 'src/parser/mysql'; @@ -24,7 +27,7 @@ describe('MySQL entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(16); + expect(splitListener.statementsContext.length).toBe(21); }); test('create table by columns', () => { @@ -41,13 +44,15 @@ describe('MySQL entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('new_tb_with_col'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 13, - endIndex: 27, - line: 1, - startColumn: 14, - endColumn: 29, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 13, + endIndex: 27, + line: 1, + startColumn: 14, + endColumn: 29, + }) + ); expect(tableCreateEntity[AttrName.comment]).toEqual({ text: "'new_tb_with_col comment'", startIndex: 77, @@ -60,14 +65,16 @@ describe('MySQL entity collector tests', () => { expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 0, - endIndex: 101, - startLine: 1, - endLine: 1, - startColumn: 1, - endColumn: 103, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 0, + endIndex: 101, + startLine: 1, + endLine: 1, + startColumn: 1, + endColumn: 103, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).toBeNull(); @@ -119,59 +126,74 @@ describe('MySQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(3); + expect(allEntities.length).toBe(4); - const tableCreateEntity = allEntities[0]; + const old_tb1_entity = allEntities[0]; + const old_tb2_entity = allEntities[1]; + const queryResultEntity = allEntities[2]; + const tableCreateEntity = allEntities[3]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('new_tb_from_old'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 118, - endIndex: 132, - line: 3, - startColumn: 14, - endColumn: 29, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 118, + endIndex: 132, + line: 3, + startColumn: 14, + endColumn: 29, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 105, - endIndex: 321, - startLine: 3, - endLine: 12, - startColumn: 1, - endColumn: 34, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 105, + endIndex: 321, + startLine: 3, + endLine: 12, + startColumn: 1, + endColumn: 34, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); - expect(tableCreateEntity.relatedEntities.length).toBe(2); + expect(tableCreateEntity.relatedEntities.length).toBe(1); tableCreateEntity.relatedEntities.forEach((relatedEntity) => { - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(relatedEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); }); } - expect(allEntities[1].text).toBe('old_tb1'); - expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); - expect(allEntities[1].position).toEqual({ - startIndex: 217, - endIndex: 223, - line: 8, - startColumn: 9, - endColumn: 16, - }); - expect(allEntities[2].text).toBe('old_tb2'); - expect(allEntities[2].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); - expect(allEntities[2].position).toEqual({ - startIndex: 243, - endIndex: 249, - line: 10, - startColumn: 9, - endColumn: 16, - }); + expect(old_tb1_entity.text).toBe('old_tb1'); + expect(old_tb1_entity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + expect(old_tb1_entity.position).toEqual( + expect.objectContaining({ + startIndex: 217, + endIndex: 223, + line: 8, + startColumn: 9, + endColumn: 16, + }) + ); + + expect(old_tb2_entity.text).toBe('old_tb2'); + expect(old_tb2_entity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + expect(old_tb2_entity.position).toEqual( + expect.objectContaining({ + startIndex: 243, + endIndex: 249, + line: 10, + startColumn: 9, + endColumn: 16, + }) + ); + + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(queryResultEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); }); test('create table like', () => { @@ -209,9 +231,10 @@ describe('MySQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const tableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.text).toBe('select_tb'); @@ -220,6 +243,10 @@ describe('MySQL entity collector tests', () => { expect(tableEntity.columns).toBeUndefined(); expect(tableEntity.relatedEntities).toBeNull(); } + + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(queryResultEntity.text).toBe('*'); + expect(queryResultEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); }); test('select into from table', () => { @@ -229,9 +256,10 @@ describe('MySQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const tableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.text).toBe('into_select_tb'); @@ -240,6 +268,10 @@ describe('MySQL entity collector tests', () => { expect(tableEntity.columns).toBeUndefined(); expect(tableEntity.relatedEntities).toBeNull(); } + + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(queryResultEntity.text).toBe('*'); + expect(queryResultEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); }); test('select from table join', () => { @@ -249,10 +281,11 @@ describe('MySQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const tableEntity1 = allEntities[0]; const tableEntity2 = allEntities[1]; + const queryResultEntity = allEntities[2]; expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('from_tb'); @@ -278,6 +311,10 @@ describe('MySQL entity collector tests', () => { expect(tableEntity2.relatedEntities).toBeNull(); } + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(queryResultEntity.text).toBe('*'); + expect(queryResultEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity1.belongStmt).toBe(tableEntity2.belongStmt); }); @@ -308,11 +345,19 @@ describe('MySQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(3); - - const insertTableEntity = allEntities[0]; - const fromTableEntity1 = allEntities[1]; - const fromTableEntity2 = allEntities[2]; + expect(allEntities.length).toBe(5); + const insertTableEntity = allEntities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'insert_from_tb' + ); + const fromTableEntity1 = allEntities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'from_tb1' + ); + const fromTableEntity2 = allEntities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'from_tb2' + ); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ); expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(insertTableEntity.text).toBe('insert_from_tb'); @@ -326,6 +371,11 @@ describe('MySQL entity collector tests', () => { expect(fromTableEntity2.text).toBe('from_tb2'); expect(fromTableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(queryResults.length).toBe(2); + queryResults.forEach((qr) => { + expect(qr.entityContextType).toBe(EntityContextType.QUERY_RESULT); + }); + expect(fromTableEntity1.belongStmt.parentStmt).toBe(insertTableEntity.belongStmt); expect(fromTableEntity2.belongStmt.parentStmt).toBe(insertTableEntity.belongStmt); expect(fromTableEntity1.belongStmt.rootStmt).toBe(insertTableEntity.belongStmt); @@ -339,20 +389,29 @@ describe('MySQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); + + const viewCreateEntity = allEntities.find( + (e) => e.entityContextType === EntityContextType.VIEW_CREATE + ); + const queryResultEntity = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ); - expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE); - expect(allEntities[0].text).toBe('new_view'); - expect(allEntities[0].belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - if (isCommonEntityContext(allEntities[0])) { - expect(allEntities[0].columns.length).toBe(2); - expect(allEntities[0].columns[0].text).toBe('col1'); - expect(allEntities[0].columns[1].text).toBe('col2'); - expect(allEntities[0].columns[0].entityContextType).toBe( + expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(viewCreateEntity.text).toBe('new_view'); + expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + if (isCommonEntityContext(viewCreateEntity)) { + expect(viewCreateEntity.columns.length).toBe(2); + expect(viewCreateEntity.columns[0].text).toBe('col1'); + expect(viewCreateEntity.columns[1].text).toBe('col2'); + expect(viewCreateEntity.columns[0].entityContextType).toBe( EntityContextType.COLUMN_CREATE ); - expect(allEntities[0].columns[0].belongStmt).toBe(allEntities[0].belongStmt); + expect(viewCreateEntity.columns[0].belongStmt).toBe(viewCreateEntity.belongStmt); } + + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); }); test('create view as select table', () => { @@ -362,11 +421,26 @@ describe('MySQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE); - expect(allEntities[0].text).toBe('db.new_view'); - expect(allEntities[0].belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + const viewCreateEntity = allEntities.find( + (e) => e.entityContextType === EntityContextType.VIEW_CREATE + ); + const tableEntity = allEntities.find( + (e) => e.entityContextType === EntityContextType.TABLE + ); + const queryResultEntity = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ); + + expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); + expect(viewCreateEntity.text).toBe('db.new_view'); + expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.text).toBe('from_tb'); + + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); }); test('create database', () => { @@ -383,23 +457,27 @@ describe('MySQL entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); expect(dbEntity.text).toBe('db_name'); - expect(dbEntity.position).toEqual({ - endColumn: 24, - endIndex: 841, - line: 31, - startColumn: 17, - startIndex: 835, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 24, + endIndex: 841, + line: 31, + startColumn: 17, + startIndex: 835, + }) + ); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 47, - endIndex: 864, - endLine: 31, - startColumn: 1, - startIndex: 819, - startLine: 31, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 47, + endIndex: 864, + endLine: 31, + startColumn: 1, + startIndex: 819, + startLine: 31, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); expect(dbEntity.relatedEntities).toBeNull(); @@ -420,23 +498,27 @@ describe('MySQL entity collector tests', () => { expect(schemaEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); expect(schemaEntity.text).toBe('db_name'); - expect(schemaEntity.position).toEqual({ - endColumn: 36, - endIndex: 902, - line: 33, - startColumn: 29, - startIndex: 896, - }); + expect(schemaEntity.position).toEqual( + expect.objectContaining({ + endColumn: 36, + endIndex: 902, + line: 33, + startColumn: 29, + startIndex: 896, + }) + ); expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); - expect(schemaEntity.belongStmt.position).toEqual({ - endColumn: 59, - endIndex: 925, - endLine: 33, - startColumn: 1, - startIndex: 868, - startLine: 33, - }); + expect(schemaEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 59, + endIndex: 925, + endLine: 33, + startColumn: 1, + startIndex: 868, + startLine: 33, + }) + ); if (isCommonEntityContext(schemaEntity)) { expect(schemaEntity.columns).toBeUndefined(); expect(schemaEntity.relatedEntities).toBeNull(); @@ -457,23 +539,27 @@ describe('MySQL entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE); expect(dbEntity.text).toBe('db_name'); - expect(dbEntity.position).toEqual({ - endColumn: 41, - endIndex: 968, - line: 35, - startColumn: 34, - startIndex: 962, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 41, + endIndex: 968, + line: 35, + startColumn: 34, + startIndex: 962, + }) + ); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 42, - endIndex: 969, - endLine: 35, - startColumn: 1, - startIndex: 929, - startLine: 35, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 42, + endIndex: 969, + endLine: 35, + startColumn: 1, + startIndex: 929, + startLine: 35, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); expect(dbEntity.relatedEntities).toBeNull(); @@ -494,23 +580,27 @@ describe('MySQL entity collector tests', () => { expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE); expect(dbEntity.text).toBe('db_name'); - expect(dbEntity.position).toEqual({ - endColumn: 30, - endIndex: 1000, - line: 37, - startColumn: 23, - startIndex: 994, - }); + expect(dbEntity.position).toEqual( + expect.objectContaining({ + endColumn: 30, + endIndex: 1000, + line: 37, + startColumn: 23, + startIndex: 994, + }) + ); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); - expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 31, - endIndex: 1001, - endLine: 37, - startColumn: 1, - startIndex: 972, - startLine: 37, - }); + expect(dbEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 31, + endIndex: 1001, + endLine: 37, + startColumn: 1, + startIndex: 972, + startLine: 37, + }) + ); if (isCommonEntityContext(dbEntity)) { expect(dbEntity.columns).toBeUndefined(); expect(dbEntity.relatedEntities).toBeNull(); @@ -531,13 +621,15 @@ describe('MySQL entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('hello'); - expect(functionEntity.position).toEqual({ - endColumn: 39, - endIndex: 1041, - line: 39, - startColumn: 34, - startIndex: 1037, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 39, + endIndex: 1041, + line: 39, + startColumn: 34, + startIndex: 1037, + }) + ); expect(functionEntity[AttrName.comment]).toEqual({ text: "'this is a defuner user function'", @@ -551,14 +643,16 @@ describe('MySQL entity collector tests', () => { expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 156, - endIndex: 1158, - endLine: 39, - startColumn: 1, - startIndex: 1004, - startLine: 39, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 156, + endIndex: 1158, + endLine: 39, + startColumn: 1, + startIndex: 1004, + startLine: 39, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); expect(functionEntity.relatedEntities).toBeNull(); @@ -579,27 +673,220 @@ describe('MySQL entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('my_concat_ws'); - expect(functionEntity.position).toEqual({ - endColumn: 43, - endIndex: 1203, - line: 41, - startColumn: 31, - startIndex: 1192, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 43, + endIndex: 1203, + line: 41, + startColumn: 31, + startIndex: 1192, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 87, - endIndex: 1247, - endLine: 41, - startColumn: 1, - startIndex: 1162, - startLine: 41, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 87, + endIndex: 1247, + endLine: 41, + startColumn: 1, + startIndex: 1162, + startLine: 41, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.relatedEntities).toBeNull(); } }); + + test('should collect query result and columns', () => { + const mysql = new MySQL(); + const context = splitListener.statementsContext[16]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const mysql = new MySQL(); + const context = splitListener.statementsContext[17]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const mysql = new MySQL(); + const context = splitListener.statementsContext[18]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect derived table and derived column', () => { + const mysql = new MySQL(); + const context = splitListener.statementsContext[19]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + + expect(tableEntities.length).toBe(4); + expect(tableEntities[0].text).toBe('t3'); + expect(tableEntities[0].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[0][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[1].text).toBe('t1'); + expect(tableEntities[1].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[1][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[2].text).toBe('(select id, name from t1)'); + expect(tableEntities[2].declareType).toBe(TableDeclareType.EXPRESSION); + expect(tableEntities[2][AttrName.alias]?.text).toBe('derived_table'); + + expect(tableEntities[3].text).toBe('t2'); + expect(tableEntities[3].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[3][AttrName.alias]).toBeFalsy(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(3); + expect(queryResults[0].text).toBe('max(age)'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('max(age)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[0].columns[0][AttrName.alias]).toBeFalsy(); + + expect(queryResults[2].text).toBe('id, (select max(age) from t3) as max_age'); + expect(queryResults[2].columns?.length).toBe(2); + expect(queryResults[2].columns[0].text).toBe('id'); + expect(queryResults[2].columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(queryResults[2].columns[1].text).toBe('(select max(age) from t3)'); + expect(queryResults[2].columns[1].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[2].columns[1][AttrName.alias]?.text).toBe('max_age'); + }); + + test('should collect query result in where clause', () => { + const mysql = new MySQL(); + const context = splitListener.statementsContext[20]; + + const collectListener = new MySqlEntityCollector(commonSql); + mysql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + + expect(queryResults.length).toBe(2); + expect(queryResults[0].text).toBe('name'); + expect(queryResults[0].columns?.[0].text).toBe('name'); + expect(queryResults[1].text).toBe('id'); + }); + + test('table entities are accessible when caret is in outer query', () => { + const mysql = new MySQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = mysql.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const mysql = new MySQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = mysql.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); }); diff --git a/test/parser/mysql/contextCollect/fixtures/common.sql b/test/parser/mysql/contextCollect/fixtures/common.sql index 8ab93448..d90e59cf 100644 --- a/test/parser/mysql/contextCollect/fixtures/common.sql +++ b/test/parser/mysql/contextCollect/fixtures/common.sql @@ -39,3 +39,13 @@ DROP SCHEMA IF EXISTS db_name; CREATE DEFINER = 'user' FUNCTION hello (s CHAR(20)) RETURNS CHAR(50) DETERMINISTIC COMMENT 'this is a defuner user function' RETURN CONCAT('Hello, ',s,'!'); CREATE FUNCTION IF NOT EXISTS my_concat_ws RETURNS STRING SONAME 'udf_my_concat_ws.so'; + +select id, age as new_age, count(*) as total from t1; + +select t1.*, t2.* from t1, t2; + +select * from t1; + +select id, (select max(age) from t3) as max_age from (select id, name from t1) as derived_table, t2; + +select id from a1 where name in (select name from b1); diff --git a/test/parser/mysql/suggestion/suggestionWithEntity.test.ts b/test/parser/mysql/suggestion/suggestionWithEntity.test.ts index 14f4c91c..ef98fa92 100644 --- a/test/parser/mysql/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/mysql/suggestion/suggestionWithEntity.test.ts @@ -27,10 +27,11 @@ describe('MySQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = mysql.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('my_db.tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); }); test('select with columns with trailing comma', () => { @@ -48,10 +49,11 @@ describe('MySQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = mysql.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('students'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); }); test('insert into table as select with no column', () => { @@ -69,14 +71,17 @@ describe('MySQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = mysql.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with trailing comma', () => { @@ -94,14 +99,17 @@ describe('MySQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = mysql.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with no column', () => { @@ -119,14 +127,17 @@ describe('MySQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = mysql.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with trailing comma', () => { @@ -144,14 +155,17 @@ describe('MySQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = mysql.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => { diff --git a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts index 56dbd245..a76f0695 100644 --- a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts @@ -653,7 +653,7 @@ describe('MySQL Syntax Suggestion', () => { const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); expect(syntaxContextTypes).not.toBeUndefined(); - expect(syntaxContextTypes).toEqual([EntityContextType.FUNCTION, EntityContextType.COLUMN]); + expect(syntaxContextTypes).toEqual([EntityContextType.COLUMN, EntityContextType.FUNCTION]); }); test('Select function or column', () => { diff --git a/test/parser/postgresql/contextCollect/entityCollector.test.ts b/test/parser/postgresql/contextCollect/entityCollector.test.ts index 43ced566..355beefd 100644 --- a/test/parser/postgresql/contextCollect/entityCollector.test.ts +++ b/test/parser/postgresql/contextCollect/entityCollector.test.ts @@ -4,9 +4,12 @@ import path from 'path'; import { PostgreSqlParserListener } from 'src/lib/postgresql/PostgreSqlParserListener'; import { AttrName, + ColumnDeclareType, + CommonEntityContext, isCommonEntityContext, isFuncEntityContext, StmtContextType, + TableDeclareType, } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { @@ -28,7 +31,7 @@ describe('PostgreSql entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(11); + expect(splitListener.statementsContext.length).toBe(16); }); test('create database', () => { @@ -56,60 +59,69 @@ describe('PostgreSql entity collector tests', () => { postgreSql.listen(collectListener as ParseTreeListener, testingContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; + expect(allEntities.length).toBe(4); + + const tableEntity1 = allEntities[0]; + const tableEntity2 = allEntities[1]; + // const queryResultEntity = allEntities[2]; + const tableCreateEntity = allEntities[3]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('films_recent'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 110, - endIndex: 121, - line: 6, - startColumn: 14, - endColumn: 26, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 110, + endIndex: 121, + line: 6, + startColumn: 14, + endColumn: 26, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 97, - endIndex: 246, - startLine: 6, - endLine: 7, - startColumn: 1, - endColumn: 122, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 97, + endIndex: 246, + startLine: 6, + endLine: 7, + startColumn: 1, + endColumn: 122, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); - - expect(tableCreateEntity.relatedEntities.length).toBe(2); - tableCreateEntity.relatedEntities.forEach((relatedEntity) => { - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); - }); + // TODO fix, pgsql CTAS statement should relate to selectStmt + // expect(tableCreateEntity.relatedEntities.length).toBe(1); + // expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); } - expect(allEntities[1].text).toBe('films'); - expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); - expect(allEntities[1].position).toEqual({ - startIndex: 168, - endIndex: 172, - line: 7, - startColumn: 43, - endColumn: 48, - }); + expect(tableEntity1.text).toBe('films'); + expect(tableEntity1.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + expect(tableEntity1.position).toEqual( + expect.objectContaining({ + startIndex: 168, + endIndex: 172, + line: 7, + startColumn: 43, + endColumn: 48, + }) + ); - expect(allEntities[2].text).toBe('films2'); - expect(allEntities[2].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); - expect(allEntities[2].position).toEqual({ - startIndex: 179, - endIndex: 184, - line: 7, - startColumn: 54, - endColumn: 60, - }); + expect(tableEntity2.text).toBe('films2'); + expect(tableEntity2.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); + expect(tableEntity2.position).toEqual( + expect.objectContaining({ + startIndex: 179, + endIndex: 184, + line: 7, + startColumn: 54, + endColumn: 60, + }) + ); }); test('create table of columns', () => { @@ -125,25 +137,29 @@ describe('PostgreSql entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('distributors'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 263, - endIndex: 274, - line: 9, - startColumn: 14, - endColumn: 26, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 263, + endIndex: 274, + line: 9, + startColumn: 14, + endColumn: 26, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 250, - endIndex: 377, - startLine: 9, - endLine: 13, - startColumn: 1, - endColumn: 2, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 250, + endIndex: 377, + startLine: 9, + endLine: 13, + startColumn: 1, + endColumn: 2, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns.length).toBe(2); tableCreateEntity.columns.forEach((columEntity) => { @@ -188,25 +204,29 @@ describe('PostgreSql entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('films'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 402, - endIndex: 406, - line: 15, - startColumn: 22, - endColumn: 27, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 402, + endIndex: 406, + line: 15, + startColumn: 22, + endColumn: 27, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 381, - endIndex: 626, - startLine: 15, - endLine: 23, - startColumn: 1, - endColumn: 19, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 381, + endIndex: 626, + startLine: 15, + endLine: 23, + startColumn: 1, + endColumn: 19, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns.length).toBe(6); tableCreateEntity.columns.forEach((columEntity) => { @@ -259,25 +279,29 @@ describe('PostgreSql entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('measurement_y2016m07'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 651, - endIndex: 670, - line: 25, - startColumn: 22, - endColumn: 42, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 651, + endIndex: 670, + line: 25, + startColumn: 22, + endColumn: 42, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 630, - endIndex: 769, - startLine: 25, - endLine: 27, - startColumn: 1, - endColumn: 21, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 630, + endIndex: 769, + startLine: 25, + endLine: 27, + startColumn: 1, + endColumn: 21, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); @@ -297,39 +321,46 @@ describe('PostgreSql entity collector tests', () => { postgreSql.listen(collectListener as ParseTreeListener, testingContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); - const tableCreateEntity = allEntities[0]; + expect(allEntities.length).toBe(3); + + const tableFromEntity = allEntities[0]; + // const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(tableCreateEntity.text).toBe('comedies'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 785, - endIndex: 792, - line: 29, - startColumn: 13, - endColumn: 21, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 785, + endIndex: 792, + line: 29, + startColumn: 13, + endColumn: 21, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 773, - endIndex: 849, - startLine: 29, - endLine: 32, - startColumn: 1, - endColumn: 26, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 773, + endIndex: 849, + startLine: 29, + endLine: 32, + startColumn: 1, + endColumn: 26, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); - - expect(tableCreateEntity.relatedEntities.length).toBe(1); - - const relatedEntity = tableCreateEntity.relatedEntities[0]; - expect(relatedEntity.entityContextType).toBe(EntityContextType.TABLE); - expect(allEntities.some((en) => relatedEntity === en)).toBeTruthy(); - expect(relatedEntity.text).toBe('films'); + // TODO fix, pgsql CTAS statement should relate to selectStmt + // expect(tableCreateEntity.relatedEntities.length).toBe(1); + // expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); } + + expect(tableFromEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableFromEntity.text).toBe('films'); + expect(tableFromEntity.belongStmt.rootStmt).toBe(tableCreateEntity.belongStmt); }); test('create materialized view by columns', () => { @@ -339,29 +370,33 @@ describe('PostgreSql entity collector tests', () => { postgreSql.listen(collectListener as ParseTreeListener, testingContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(tableCreateEntity.text).toBe('comedies_mate'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 878, - endIndex: 890, - line: 34, - startColumn: 26, - endColumn: 39, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 878, + endIndex: 890, + line: 34, + startColumn: 26, + endColumn: 39, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 853, - endIndex: 1055, - startLine: 34, - endLine: 39, - startColumn: 1, - endColumn: 17, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 853, + endIndex: 1055, + startLine: 34, + endLine: 39, + startColumn: 1, + endColumn: 17, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns.length).toBe(2); @@ -385,52 +420,60 @@ describe('PostgreSql entity collector tests', () => { postgreSql.listen(collectListener as ParseTreeListener, testingContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(4); const tableEntity1 = allEntities[0]; - const tableEntity2 = allEntities[1]; + const tableEntity2 = allEntities[2]; expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('table_expression'); - expect(tableEntity1.position).toEqual({ - startIndex: 1109, - endIndex: 1124, - line: 41, - startColumn: 51, - endColumn: 67, - }); + expect(tableEntity1.position).toEqual( + expect.objectContaining({ + startIndex: 1109, + endIndex: 1124, + line: 41, + startColumn: 51, + endColumn: 67, + }) + ); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableEntity1.belongStmt.position).toEqual({ - startIndex: 1094, - endIndex: 1124, - startLine: 41, - endLine: 41, - startColumn: 36, - endColumn: 67, - }); + expect(tableEntity1.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 1094, + endIndex: 1124, + startLine: 41, + endLine: 41, + startColumn: 36, + endColumn: 67, + }) + ); if (isCommonEntityContext(tableEntity1)) { expect(tableEntity1.columns).toBeUndefined(); expect(tableEntity1.relatedEntities).toBeNull(); } expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity2.text).toBe('table_expression1'); - expect(tableEntity2.position).toEqual({ - startIndex: 1182, - endIndex: 1198, - line: 42, - startColumn: 55, - endColumn: 72, - }); + expect(tableEntity2.position).toEqual( + expect.objectContaining({ + startIndex: 1182, + endIndex: 1198, + line: 42, + startColumn: 55, + endColumn: 72, + }) + ); expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableEntity2.belongStmt.position).toEqual({ - startIndex: 1059, - endIndex: 1237, - startLine: 41, - endLine: 42, - startColumn: 1, - endColumn: 111, - }); + expect(tableEntity2.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 1059, + endIndex: 1237, + startLine: 41, + endLine: 42, + startColumn: 1, + endColumn: 111, + }) + ); if (isCommonEntityContext(tableEntity2)) { expect(tableEntity2.columns).toBeUndefined(); expect(tableEntity2.relatedEntities).toBeNull(); @@ -450,23 +493,27 @@ describe('PostgreSql entity collector tests', () => { expect(tableInsertEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableInsertEntity.text).toBe('insert_films'); - expect(tableInsertEntity.position).toEqual({ - startIndex: 1253, - endIndex: 1264, - line: 44, - startColumn: 13, - endColumn: 25, - }); + expect(tableInsertEntity.position).toEqual( + expect.objectContaining({ + startIndex: 1253, + endIndex: 1264, + line: 44, + startColumn: 13, + endColumn: 25, + }) + ); expect(tableInsertEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); - expect(tableInsertEntity.belongStmt.position).toEqual({ - startIndex: 1241, - endIndex: 1355, - startLine: 44, - endLine: 45, - startColumn: 1, - endColumn: 55, - }); + expect(tableInsertEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 1241, + endIndex: 1355, + startLine: 44, + endLine: 45, + startColumn: 1, + endColumn: 55, + }) + ); if (isCommonEntityContext(tableInsertEntity)) { expect(tableInsertEntity.columns).toBeUndefined(); expect(tableInsertEntity.relatedEntities).toBeNull(); @@ -486,25 +533,29 @@ describe('PostgreSql entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('get_color_note'); - expect(functionEntity.position).toEqual({ - endColumn: 31, - endIndex: 1388, - line: 47, - startColumn: 17, - startIndex: 1375, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 31, + endIndex: 1388, + line: 47, + startColumn: 17, + startIndex: 1375, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 15, - endIndex: 1477, - endLine: 49, - startColumn: 1, - startIndex: 1359, - startLine: 47, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 15, + endIndex: 1477, + endLine: 49, + startColumn: 1, + startIndex: 1359, + startLine: 47, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); expect(functionEntity.relatedEntities).toBeNull(); @@ -518,52 +569,65 @@ describe('PostgreSql entity collector tests', () => { postgreSql.listen(collectListener as ParseTreeListener, testingContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(4); - const tableEntity1 = allEntities[0]; - const tableEntity2 = allEntities[1]; - expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); - expect(tableEntity1.text).toBe('table_expression'); - expect(tableEntity1.position).toEqual({ - startIndex: 1531, - endIndex: 1546, - line: 51, - startColumn: 51, - endColumn: 67, - }); + const tableEntity1 = allEntities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'table_expression' + ); + const tableEntity2 = allEntities.find( + (e) => e.entityContextType === EntityContextType.TABLE && e.text === 'table_expression1' + ); + + expect(tableEntity1).toBeDefined(); + expect(tableEntity2).toBeDefined(); + + expect(tableEntity1.position).toEqual( + expect.objectContaining({ + startIndex: 1531, + endIndex: 1546, + line: 51, + startColumn: 51, + endColumn: 67, + }) + ); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableEntity1.belongStmt.position).toEqual({ - startIndex: 1516, - endIndex: 1546, - startLine: 51, - endLine: 51, - startColumn: 36, - endColumn: 67, - }); + expect(tableEntity1.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 1516, + endIndex: 1546, + startLine: 51, + endLine: 51, + startColumn: 36, + endColumn: 67, + }) + ); if (isCommonEntityContext(tableEntity1)) { expect(tableEntity1.columns).toBeUndefined(); expect(tableEntity1.relatedEntities).toBeNull(); } - expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); - expect(tableEntity2.text).toBe('table_expression1'); - expect(tableEntity2.position).toEqual({ - startIndex: 1604, - endIndex: 1620, - line: 52, - startColumn: 55, - endColumn: 72, - }); + + expect(tableEntity2.position).toEqual( + expect.objectContaining({ + startIndex: 1604, + endIndex: 1620, + line: 52, + startColumn: 55, + endColumn: 72, + }) + ); expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableEntity2.belongStmt.position).toEqual({ - startIndex: 1481, - endIndex: 1667, - startLine: 51, - endLine: 52, - startColumn: 1, - endColumn: 119, - }); + expect(tableEntity2.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 1481, + endIndex: 1667, + startLine: 51, + endLine: 52, + startColumn: 1, + endColumn: 119, + }) + ); expect(tableEntity2[AttrName.alias]).toEqual({ text: 'tb_1', startIndex: 1625, @@ -577,4 +641,193 @@ describe('PostgreSql entity collector tests', () => { expect(tableEntity2.relatedEntities).toBeNull(); } }); + + test('should collect query result and columns', () => { + const postgreSql = new PostgreSQL(); + const context = splitListener.statementsContext[11]; + + const collectListener = new PostgreSqlEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const postgreSql = new PostgreSQL(); + const context = splitListener.statementsContext[12]; + + const collectListener = new PostgreSqlEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const postgreSql = new PostgreSQL(); + const context = splitListener.statementsContext[13]; + + const collectListener = new PostgreSqlEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect derived table and derived column', () => { + const postgreSql = new PostgreSQL(); + const context = splitListener.statementsContext[14]; + + const collectListener = new PostgreSqlEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + + expect(tableEntities.length).toBe(4); + expect(tableEntities[0].text).toBe('t3'); + expect(tableEntities[0].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[0][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[1].text).toBe('t1'); + expect(tableEntities[1].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[1][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[2].text).toBe('(select id, name from t1)'); + expect(tableEntities[2].declareType).toBe(TableDeclareType.EXPRESSION); + expect(tableEntities[2][AttrName.alias]?.text).toBe('derived_table'); + + expect(tableEntities[3].text).toBe('t2'); + expect(tableEntities[3].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[3][AttrName.alias]).toBeFalsy(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(3); + expect(queryResults[0].text).toBe('max(age)'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('max(age)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[0].columns[0][AttrName.alias]).toBeFalsy(); + + expect(queryResults[2].text).toBe('id, (select max(age) from t3) as max_age'); + expect(queryResults[2].columns?.length).toBe(2); + expect(queryResults[2].columns[0].text).toBe('id'); + expect(queryResults[2].columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(queryResults[2].columns[1].text).toBe('(select max(age) from t3)'); + expect(queryResults[2].columns[1].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[2].columns[1][AttrName.alias]?.text).toBe('max_age'); + }); + + test('should collect query result in where clause', () => { + const postgreSql = new PostgreSQL(); + const context = splitListener.statementsContext[15]; + + const collectListener = new PostgreSqlEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + + expect(queryResults.length).toBe(2); + expect(queryResults[0].text).toBe('name'); + expect(queryResults[0].columns?.[0].text).toBe('name'); + expect(queryResults[1].text).toBe('id'); + }); + + test('table entities are accessible when caret is in outer query', () => { + const postgreSql = new PostgreSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = postgreSql.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const postgreSql = new PostgreSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = postgreSql.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); }); diff --git a/test/parser/postgresql/contextCollect/fixtures/common.sql b/test/parser/postgresql/contextCollect/fixtures/common.sql index bffb7fa5..400b1c4e 100644 --- a/test/parser/postgresql/contextCollect/fixtures/common.sql +++ b/test/parser/postgresql/contextCollect/fixtures/common.sql @@ -50,3 +50,13 @@ CREATE FUNCTION get_color_note (rainbow) RETURNS text AS WITH RECURSIVE query_name (id) AS (SELECT id FROM table_expression) SELECT DISTINCT ON (col1,col2) random() AS name1 FROM table_expression1 AS tb_1 WHERE name1=name1 GROUP BY DISTINCT id; + +select id, age as new_age, count(*) as total from t1; + +select t1.*, t2.* from t1, t2; + +select * from t1; + +select id, (select max(age) from t3) as max_age from (select id, name from t1) as derived_table, t2; + +select id from a1 where name in (select name from b1); diff --git a/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts b/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts index a80adff3..aabff965 100644 --- a/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts @@ -27,10 +27,14 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = postgre.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('my_db.tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('select with columns with trailing comma', () => { @@ -48,10 +52,14 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = postgre.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('students'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe('name, calculate_age(birthdate) AS age,'); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with no column', () => { @@ -65,18 +73,24 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { const suggestion = syntaxes?.find( (syn) => syn.syntaxContextType === EntityContextType.COLUMN ); + expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = postgre.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with trailing comma', () => { @@ -94,14 +108,19 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = postgre.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].text).toBe('id, age,'); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with no column', () => { @@ -119,14 +138,19 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = postgre.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with trailing comma', () => { @@ -144,14 +168,19 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = postgre.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe('id, age,'); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('alter table drop column', () => { diff --git a/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts b/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts index a0cb5f25..f3aa9118 100644 --- a/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/postgresql/suggestion/syntaxSuggestion.test.ts @@ -1155,7 +1155,7 @@ describe('Postgre SQL Syntax Suggestion', () => { const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); expect(syntaxContextTypes).not.toBeUndefined(); - expect(syntaxContextTypes).toEqual([EntityContextType.FUNCTION, EntityContextType.COLUMN]); + expect(syntaxContextTypes).toEqual([EntityContextType.COLUMN, EntityContextType.FUNCTION]); }); test('Select function or column', () => { diff --git a/test/parser/spark/contextCollect/entityCollector.test.ts b/test/parser/spark/contextCollect/entityCollector.test.ts index eabb9095..5e7d682a 100644 --- a/test/parser/spark/contextCollect/entityCollector.test.ts +++ b/test/parser/spark/contextCollect/entityCollector.test.ts @@ -4,9 +4,12 @@ import path from 'path'; import { SparkSqlParserListener } from 'src/lib/spark/SparkSqlParserListener'; import { AttrName, + ColumnDeclareType, + CommonEntityContext, isCommonEntityContext, isFuncEntityContext, StmtContextType, + TableDeclareType, } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { SparkEntityCollector, SparkSQL, SparkSqlSplitListener } from 'src/parser/spark'; @@ -24,7 +27,7 @@ describe('SparkSQL entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(12); + expect(splitListener.statementsContext.length).toBe(17); }); test('create table like', () => { @@ -41,25 +44,29 @@ describe('SparkSQL entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('new_tb1'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 27, - endIndex: 33, - line: 1, - startColumn: 28, - endColumn: 35, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 27, + endIndex: 33, + line: 1, + startColumn: 28, + endColumn: 35, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 0, - endIndex: 50, - startLine: 1, - endLine: 1, - startColumn: 1, - endColumn: 52, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 0, + endIndex: 50, + startLine: 1, + endLine: 1, + startColumn: 1, + endColumn: 52, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities.length).toBe(1); @@ -86,13 +93,15 @@ describe('SparkSQL entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('new_tb2'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 67, - endIndex: 73, - line: 3, - startColumn: 14, - endColumn: 21, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 67, + endIndex: 73, + line: 3, + startColumn: 14, + endColumn: 21, + }) + ); expect(tableCreateEntity[AttrName.comment]).toEqual({ text: "'this is new_tb2 comment'", startIndex: 283, @@ -105,14 +114,16 @@ describe('SparkSQL entity collector tests', () => { expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 54, - endIndex: 307, - startLine: 3, - endLine: 9, - startColumn: 1, - endColumn: 38, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 54, + endIndex: 307, + startLine: 3, + endLine: 9, + startColumn: 1, + endColumn: 38, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).toBeNull(); expect(tableCreateEntity.columns.length).toBe(2); @@ -162,10 +173,11 @@ describe('SparkSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; - const originTableEntity = allEntities[1]; + const originTableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('student_copy'); @@ -175,7 +187,7 @@ describe('SparkSQL entity collector tests', () => { if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(originTableEntity.text).toBe('student'); @@ -190,10 +202,11 @@ describe('SparkSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewEntity = allEntities[0]; - const tableEntity = allEntities[1]; + const tableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const viewEntity = allEntities[2]; expect(viewEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); @@ -226,6 +239,8 @@ describe('SparkSQL entity collector tests', () => { startColumn: 35, endColumn: 65, }); + expect(viewEntity.relatedEntities).not.toBeNull(); + expect(viewEntity.relatedEntities[0]).toBe(queryResultEntity); } expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); @@ -241,7 +256,7 @@ describe('SparkSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const tableEntity1 = allEntities[0]; const tableEntity2 = allEntities[1]; @@ -298,8 +313,8 @@ describe('SparkSQL entity collector tests', () => { expect(allEntities.length).toBe(2); - const targetTableEntity = allEntities[0]; - const sourceTableEntity = allEntities[1]; + const sourceTableEntity = allEntities[0]; + const targetTableEntity = allEntities[1]; expect(targetTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(targetTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); @@ -318,7 +333,7 @@ describe('SparkSQL entity collector tests', () => { spark.listen(collectListener as ParseTreeListener, testingContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const sourceTableEntity = allEntities[0]; @@ -383,25 +398,29 @@ describe('SparkSQL entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('simple_udf'); - expect(functionEntity.position).toEqual({ - endColumn: 38, - endIndex: 1013, - line: 29, - startColumn: 28, - startIndex: 1004, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 38, + endIndex: 1013, + line: 29, + startColumn: 28, + startIndex: 1004, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 54, - endIndex: 1029, - endLine: 29, - startColumn: 1, - startIndex: 977, - startLine: 29, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 54, + endIndex: 1029, + endLine: 29, + startColumn: 1, + startIndex: 977, + startLine: 29, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); @@ -423,28 +442,222 @@ describe('SparkSQL entity collector tests', () => { expect(functionEntity.entityContextType).toBe(EntityContextType.FUNCTION_CREATE); expect(functionEntity.text).toBe('simple_udf'); - expect(functionEntity.position).toEqual({ - endColumn: 27, - endIndex: 1058, - line: 31, - startColumn: 17, - startIndex: 1049, - }); + expect(functionEntity.position).toEqual( + expect.objectContaining({ + endColumn: 27, + endIndex: 1058, + line: 31, + startColumn: 17, + startIndex: 1049, + }) + ); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); - expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 43, - endIndex: 1074, - endLine: 31, - startColumn: 1, - startIndex: 1033, - startLine: 31, - }); + expect(functionEntity.belongStmt.position).toEqual( + expect.objectContaining({ + endColumn: 43, + endIndex: 1074, + endLine: 31, + startColumn: 1, + startIndex: 1033, + startLine: 31, + }) + ); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); expect(functionEntity.relatedEntities).toBeNull(); } }); + + test('table entities are accessible when caret is in outer query', () => { + const spark = new SparkSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = spark.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const spark = new SparkSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = spark.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); + + test('should collect query result and columns', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[12]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[13]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[14]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect derived table and derived column', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[15]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + + expect(tableEntities.length).toBe(4); + expect(tableEntities[0].text).toBe('t3'); + expect(tableEntities[0].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[0][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[1].text).toBe('t1'); + expect(tableEntities[1].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[1][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[2].text).toBe('(select id, name from t1)'); + expect(tableEntities[2].declareType).toBe(TableDeclareType.EXPRESSION); + expect(tableEntities[2][AttrName.alias]?.text).toBe('derived_table'); + + expect(tableEntities[3].text).toBe('t2'); + expect(tableEntities[3].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[3][AttrName.alias]).toBeFalsy(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(3); + expect(queryResults[0].text).toBe('max(age) as max_age'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('max(age)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[0].columns[0][AttrName.alias]?.text).toBe('max_age'); + + expect(queryResults[2].text).toBe('id, (select max(age) as max_age from t3) as max_age'); + expect(queryResults[2].columns?.length).toBe(2); + expect(queryResults[2].columns[0].text).toBe('id'); + expect(queryResults[2].columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(queryResults[2].columns[1].text).toBe('(select max(age) as max_age from t3)'); + expect(queryResults[2].columns[1].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[2].columns[1][AttrName.alias]?.text).toBe('max_age'); + }); + + test('should collect query result in where clause', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[16]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + + expect(queryResults.length).toBe(2); + expect(queryResults[0].text).toBe('name'); + expect(queryResults[0].columns?.[0].text).toBe('name'); + expect(queryResults[1].text).toBe('id'); + }); }); diff --git a/test/parser/spark/contextCollect/fixtures/common.sql b/test/parser/spark/contextCollect/fixtures/common.sql index e3bbd97b..8f72916e 100644 --- a/test/parser/spark/contextCollect/fixtures/common.sql +++ b/test/parser/spark/contextCollect/fixtures/common.sql @@ -28,4 +28,14 @@ USE NAMESPACE ns1; CREATE OR REPLACE FUNCTION simple_udf AS 'SimpleUdfR'; -CREATE FUNCTION simple_udf AS 'SimpleUdfR'; \ No newline at end of file +CREATE FUNCTION simple_udf AS 'SimpleUdfR'; + +select id, age as new_age, count(*) as total from t1; + +select t1.*, t2.* from t1, t2; + +select * from t1; + +select id, (select max(age) as max_age from t3) as max_age from (select id, name from t1) as derived_table, t2; + +select id from a1 where name in (select name from b1); \ No newline at end of file diff --git a/test/parser/spark/suggestion/suggestionWithEntity.test.ts b/test/parser/spark/suggestion/suggestionWithEntity.test.ts index dc968a07..9aaf9558 100644 --- a/test/parser/spark/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/spark/suggestion/suggestionWithEntity.test.ts @@ -27,10 +27,14 @@ describe('Spark SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('my_db.tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); test('select with columns with trailing comma', () => { @@ -48,7 +52,7 @@ describe('Spark SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('students'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -69,14 +73,19 @@ describe('Spark SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with trailing comma', () => { @@ -94,14 +103,15 @@ describe('Spark SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with no column', () => { @@ -119,14 +129,19 @@ describe('Spark SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with trailing comma', () => { @@ -144,14 +159,15 @@ describe('Spark SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => { diff --git a/test/parser/trino/contextCollect/entityCollector.test.ts b/test/parser/trino/contextCollect/entityCollector.test.ts index 61a3defc..5146dafd 100644 --- a/test/parser/trino/contextCollect/entityCollector.test.ts +++ b/test/parser/trino/contextCollect/entityCollector.test.ts @@ -4,8 +4,11 @@ import path from 'path'; import { TrinoSqlListener } from 'src/lib/trino/TrinoSqlListener'; import { AttrName, + ColumnDeclareType, + CommonEntityContext, isCommonEntityContext, StmtContextType, + TableDeclareType, } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { TrinoEntityCollector, TrinoSQL, TrinoSqlSplitListener } from 'src/parser/trino'; @@ -23,7 +26,7 @@ describe('Trino entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(11); + expect(splitListener.statementsContext.length).toBe(16); }); test('create table like', () => { @@ -40,25 +43,29 @@ describe('Trino entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('bar'); - expect(tableCreateEntity.position).toEqual({ - startIndex: 27, - endIndex: 29, - line: 1, - startColumn: 28, - endColumn: 31, - }); + expect(tableCreateEntity.position).toEqual( + expect.objectContaining({ + startIndex: 27, + endIndex: 29, + line: 1, + startColumn: 28, + endColumn: 31, + }) + ); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); - expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 0, - endIndex: 68, - startLine: 1, - endLine: 1, - startColumn: 1, - endColumn: 70, - }); + expect(tableCreateEntity.belongStmt.position).toEqual( + expect.objectContaining({ + startIndex: 0, + endIndex: 68, + startLine: 1, + endLine: 1, + startColumn: 1, + endColumn: 70, + }) + ); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities.length).toBe(1); @@ -79,10 +86,11 @@ describe('Trino entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; - const originTableEntity = allEntities[1]; + const originTableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('foo'); @@ -102,7 +110,7 @@ describe('Trino entity collector tests', () => { ); }); expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(originTableEntity.text).toBe('t'); @@ -118,10 +126,11 @@ describe('Trino entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; - const originTableEntity = allEntities[1]; + const originTableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(tableCreateEntity.text).toBe('a'); @@ -137,7 +146,7 @@ describe('Trino entity collector tests', () => { if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -153,10 +162,11 @@ describe('Trino entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; - const originTableEntity = allEntities[1]; + const originTableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(tableCreateEntity.text).toBe('a'); @@ -173,7 +183,7 @@ describe('Trino entity collector tests', () => { if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -189,7 +199,7 @@ describe('Trino entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const tableCreateEntity = allEntities[0]; @@ -211,15 +221,19 @@ describe('Trino entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const insertTableEntity = allEntities[0]; - const fromTableEntity = allEntities[1]; + const fromTableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const insertTableEntity = allEntities[2]; expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(insertTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); expect(insertTableEntity.text).toBe('orders'); + expect(queryResultEntity.entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(queryResultEntity.text).toBe('*'); + expect(fromTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(fromTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(fromTableEntity.text).toBe('new_orders'); @@ -285,7 +299,7 @@ describe('Trino entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const tableEntity = allEntities[0]; @@ -364,4 +378,193 @@ describe('Trino entity collector tests', () => { }); } }); + + test('should collect query result and columns', () => { + const trino = new TrinoSQL(); + const context = splitListener.statementsContext[11]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.LITERAL); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const trino = new TrinoSQL(); + const context = splitListener.statementsContext[12]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const trino = new TrinoSQL(); + const context = splitListener.statementsContext[13]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect derived table and derived column', () => { + const trino = new TrinoSQL(); + const context = splitListener.statementsContext[14]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + + expect(tableEntities.length).toBe(4); + expect(tableEntities[0].text).toBe('t3'); + expect(tableEntities[0].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[0][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[1].text).toBe('t1'); + expect(tableEntities[1].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[1][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[2].text).toBe('(select id, name from t1)'); + expect(tableEntities[2].declareType).toBe(TableDeclareType.EXPRESSION); + expect(tableEntities[2][AttrName.alias]?.text).toBe('derived_table'); + + expect(tableEntities[3].text).toBe('t2'); + expect(tableEntities[3].declareType).toBe(TableDeclareType.LITERAL); + expect(tableEntities[3][AttrName.alias]).toBeFalsy(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(3); + expect(queryResults[0].text).toBe('max(age)'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('max(age)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[0].columns[0][AttrName.alias]).toBeFalsy(); + + expect(queryResults[2].text).toBe('id, (select max(age) from t3) as max_age'); + expect(queryResults[2].columns?.length).toBe(2); + expect(queryResults[2].columns[0].text).toBe('id'); + expect(queryResults[2].columns[0].declareType).toBe(ColumnDeclareType.LITERAL); + expect(queryResults[2].columns[1].text).toBe('(select max(age) from t3)'); + expect(queryResults[2].columns[1].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[2].columns[1][AttrName.alias]?.text).toBe('max_age'); + }); + + test('should collect query result in where clause', () => { + const trino = new TrinoSQL(); + const context = splitListener.statementsContext[15]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + + expect(queryResults.length).toBe(2); + expect(queryResults[0].text).toBe('name'); + expect(queryResults[0].columns?.[0].text).toBe('name'); + expect(queryResults[1].text).toBe('id'); + }); + + test('table entities are accessible when caret is in outer query', () => { + const trino = new TrinoSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = trino.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const trino = new TrinoSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = trino.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); }); diff --git a/test/parser/trino/contextCollect/fixtures/common.sql b/test/parser/trino/contextCollect/fixtures/common.sql index 1da9a96e..5107133d 100644 --- a/test/parser/trino/contextCollect/fixtures/common.sql +++ b/test/parser/trino/contextCollect/fixtures/common.sql @@ -24,3 +24,13 @@ CREATE TABLE orders ( ) COMMENT 'This is the orders table' WITH (format = 'ORC'); + +select id, age as new_age, count(*) as total from t1; + +select t1.*, t2.* from t1, t2; + +select * from t1; + +select id, (select max(age) from t3) as max_age from (select id, name from t1) as derived_table, t2; + +select id from a1 where name in (select name from b1); diff --git a/test/parser/trino/suggestion/suggestionWithEntity.test.ts b/test/parser/trino/suggestion/suggestionWithEntity.test.ts index 2c546eea..9bf99d08 100644 --- a/test/parser/trino/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/trino/suggestion/suggestionWithEntity.test.ts @@ -49,7 +49,7 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = trino.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('students'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -70,14 +70,18 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = trino.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into table as select with trailing comma', () => { @@ -95,14 +99,19 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = trino.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].text).toBe('id, age,'); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with no column', () => { @@ -120,14 +129,18 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = trino.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe(''); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with trailing comma', () => { @@ -145,14 +158,19 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = trino.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + expect(entities[1].text).toBe('id, age,'); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => { From 3101b0e6a85cab9431808e1f97ae5f796b030bc5 Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Wed, 17 Dec 2025 17:31:30 +0800 Subject: [PATCH 15/15] feat: match empty column when in entityCollecting context --- src/grammar/flink/FlinkSqlParser.g4 | 22 +- src/grammar/hive/HiveSqlParser.g4 | 27 +- src/grammar/impala/ImpalaSqlParser.g4 | 24 +- src/grammar/mysql/MySqlParser.g4 | 28 +- src/grammar/postgresql/PostgreSqlParser.g4 | 7 +- src/grammar/spark/SparkSqlParser.g4 | 20 +- src/lib/flink/FlinkSqlParser.interp | 5 +- src/lib/flink/FlinkSqlParser.ts | 6236 ++--- src/lib/flink/FlinkSqlParserListener.ts | 33 + src/lib/flink/FlinkSqlParserVisitor.ts | 21 + src/lib/hive/HiveSqlParser.interp | 5 +- src/lib/hive/HiveSqlParser.ts | 11996 +++++---- src/lib/hive/HiveSqlParserListener.ts | 33 + src/lib/hive/HiveSqlParserVisitor.ts | 21 + src/lib/impala/ImpalaSqlParser.interp | 5 +- src/lib/impala/ImpalaSqlParser.ts | 7029 ++--- src/lib/impala/ImpalaSqlParserListener.ts | 33 + src/lib/impala/ImpalaSqlParserVisitor.ts | 21 + src/lib/mysql/MySqlParser.interp | 6 +- src/lib/mysql/MySqlParser.ts | 19466 +++++++------- src/lib/mysql/MySqlParserListener.ts | 44 + src/lib/mysql/MySqlParserVisitor.ts | 28 + src/lib/postgresql/PostgreSqlParser.interp | 3 +- src/lib/postgresql/PostgreSqlParser.ts | 21924 ++++++++-------- .../postgresql/PostgreSqlParserListener.ts | 11 + src/lib/postgresql/PostgreSqlParserVisitor.ts | 7 + src/lib/spark/SparkSqlParser.interp | 5 +- src/lib/spark/SparkSqlParser.ts | 9733 +++---- src/lib/spark/SparkSqlParserListener.ts | 33 + src/lib/spark/SparkSqlParserVisitor.ts | 21 + src/parser/common/basicSQL.ts | 2 +- src/parser/flink/index.ts | 7 +- src/parser/mysql/index.ts | 4 +- src/parser/mysql/mysqlErrorListener.ts | 2 + src/parser/spark/index.ts | 4 +- 35 files changed, 38944 insertions(+), 37922 deletions(-) diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 3184a47f..8c8fad7c 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -184,15 +184,24 @@ columnNameCreate | expression ; +emptyColumn + : + ; + columnName - : uid - | {this.shouldMatchEmpty()}? + : uidAllowEmpty + | {this.shouldMatchEmpty()}? emptyColumn ; columnNamePath : uid ; +columnNamePathAllowEmpty + : uidAllowEmpty + | {this.shouldMatchEmpty()}? emptyColumn + ; + columnNameList : LR_BRACKET columnName (COMMA columnName)* RR_BRACKET ; @@ -614,12 +623,12 @@ columnDescriptor ; joinCondition - : KW_ON booleanExpression + : KW_ON (booleanExpression | columnNamePathAllowEmpty (EQUAL_SYMBOL columnNamePathAllowEmpty)?) | KW_USING columnNameList ; whereClause - : KW_WHERE booleanExpression + : KW_WHERE (booleanExpression | columnNamePathAllowEmpty) ; groupByClause @@ -983,6 +992,11 @@ uid : identifier (DOT identifier)* ; +uidAllowEmpty + : identifier (DOT identifier)* + | {this.shouldMatchEmpty()}? identifier DOT emptyColumn + ; + withOption : KW_WITH tablePropertyList ; diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index f68798a0..84b36203 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -754,14 +754,19 @@ columnNameList ; columnName - : poolPath - | {this.shouldMatchEmpty()}? + : poolPathAllowEmpty + | {this.shouldMatchEmpty()}? emptyColumn ; columnNamePath : poolPath ; +columnNamePathAllowEmpty + : poolPathAllowEmpty + | {this.shouldMatchEmpty()}? emptyColumn + ; + columnNameCreate : id_ ; @@ -1346,7 +1351,10 @@ atomjoinSource joinSource : atomjoinSource ( - joinToken joinSourcePart (KW_ON expression | KW_USING columnParenthesesList)? + joinToken joinSourcePart ( + KW_ON (expression | columnNamePathAllowEmpty (EQUAL columnNamePathAllowEmpty)?) + | KW_USING columnParenthesesList + )? )* ; @@ -1469,7 +1477,7 @@ Rules for parsing whereClause where a=b and ... */ whereClause - : KW_WHERE expression + : KW_WHERE (expression | columnNamePathAllowEmpty) ; /** @@ -1600,7 +1608,7 @@ groupingSetExpression ; havingClause - : KW_HAVING expression + : KW_HAVING (expression | columnNamePathAllowEmpty) ; qualifyClause @@ -2425,10 +2433,19 @@ decimal | KW_NUMERIC ; +emptyColumn + : + ; + poolPath : id_ (DOT id_)* ; +poolPathAllowEmpty + : id_ (DOT id_)* + | {this.shouldMatchEmpty()}? id_ (DOT emptyColumn)* + ; + triggerAtomExpression : id_ GREATERTHAN (Number | StringLiteral) ; diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index 5cbf8838..ae0647e7 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -558,15 +558,24 @@ functionNamePath | qualifiedName ; +emptyColumn + : + ; + columnNamePath - : qualifiedName - | {this.shouldMatchEmpty()}? + : {this.shouldMatchEmpty()}? emptyColumn + | qualifiedNameAllowEmpty ; columnName : qualifiedName ; +columnNameAllowEmpty + : {this.shouldMatchEmpty()}? emptyColumn + | qualifiedNameAllowEmpty + ; + tableOrViewPath : tableNamePath | viewNamePath @@ -781,11 +790,11 @@ selectList ; whereClause - : KW_WHERE where=booleanExpression + : KW_WHERE (where=booleanExpression | columnNameAllowEmpty) ; havingClause - : KW_HAVING having=booleanExpression + : KW_HAVING (having=booleanExpression | columnNameAllowEmpty) ; groupBy @@ -854,7 +863,7 @@ joinType ; joinCriteria - : KW_ON booleanExpression + : KW_ON (booleanExpression | columnNameAllowEmpty) | KW_USING LPAREN identifier (COMMA identifier)* RPAREN ; @@ -1149,6 +1158,11 @@ qualifiedName : identifier (DOT identifier)* ; +qualifiedNameAllowEmpty + : {this.shouldMatchEmpty()}? (identifier DOT emptyColumn | emptyColumn) + | identifier (DOT identifier)* + ; + principal : KW_ROLE identifier # rolePrincipal | KW_USER identifier # userPrincipal diff --git a/src/grammar/mysql/MySqlParser.g4 b/src/grammar/mysql/MySqlParser.g4 index 8484c29c..29eea4e0 100644 --- a/src/grammar/mysql/MySqlParser.g4 +++ b/src/grammar/mysql/MySqlParser.g4 @@ -1122,7 +1122,7 @@ joinPart ; joinSpec - : (KW_ON expression) + : (KW_ON (expression | columnNamePathAllowEmpty)) | KW_USING '(' columnNames ')' ; @@ -1249,7 +1249,7 @@ selectLinesInto ; fromClause - : (KW_FROM tableSources)? (KW_WHERE whereExpr=expression)? + : (KW_FROM tableSources)? (KW_WHERE (whereExpr=expression | columnNamePathAllowEmpty))? ; groupByClause @@ -2419,10 +2419,24 @@ columnNames : columnName (',' columnName)* ; +emptyColumn + : + ; + columnName + : uid (dottedIdAllowEmpty dottedIdAllowEmpty?)? + | .? dottedId dottedId? + | {this.shouldMatchEmpty()}? emptyColumn + ; + +columnNamePath : uid (dottedId dottedId?)? | .? dottedId dottedId? - | {this.shouldMatchEmpty()}? + ; + +columnNamePathAllowEmpty + : {this.shouldMatchEmpty()}? emptyColumn + | uid (dottedIdAllowEmpty dottedIdAllowEmpty?)? ; tableSpaceNameCreate @@ -2560,6 +2574,12 @@ dottedId | '.' uid ; +dottedIdAllowEmpty + : DOT ID + | '.' uid + | {this.shouldMatchEmpty()}? DOT emptyColumn + ; + decimalLiteral : DECIMAL_LITERAL | ZERO_DECIMAL @@ -2998,7 +3018,7 @@ expressionAtom | left=expressionAtom jsonOperator right=expressionAtom # jsonExpressionAtom | left=expressionAtom bitOperator right=expressionAtom # bitExpressionAtom | left=expressionAtom mathOperator right=expressionAtom # mathExpressionAtom - | columnName # columnNameExpressionAtom + | columnNamePath # columnNameExpressionAtom ; unaryOperator diff --git a/src/grammar/postgresql/PostgreSqlParser.g4 b/src/grammar/postgresql/PostgreSqlParser.g4 index eb43cbe8..409cee41 100644 --- a/src/grammar/postgresql/PostgreSqlParser.g4 +++ b/src/grammar/postgresql/PostgreSqlParser.g4 @@ -2722,13 +2722,18 @@ procedureNameCreate | colId indirection ; +emptyColumn + : + ; + columnName : colId optIndirection - | {this.shouldMatchEmpty()}? + | {this.shouldMatchEmpty()}? (colId DOT emptyColumn | emptyColumn) ; columnNamePath : colId optIndirection + | {this.shouldMatchEmpty()}? (colId DOT emptyColumn | emptyColumn) ; columnNameCreate diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index 8c4b2f40..018f8a57 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -413,15 +413,24 @@ viewName : viewIdentifier ; +emptyColumn + : + ; + columnName - : multipartIdentifier - | {this.shouldMatchEmpty()}? + : multipartIdentifierAllowEmpty + | {this.shouldMatchEmpty()}? emptyColumn ; columnNamePath : multipartIdentifier ; +columnNamePathAllowEmpty + : multipartIdentifierAllowEmpty + | {this.shouldMatchEmpty()}? emptyColumn + ; + columnNameSeq : columnName (COMMA columnName)* ; @@ -680,7 +689,7 @@ joinType ; joinCriteria - : KW_ON booleanExpression + : KW_ON (booleanExpression | columnNamePathAllowEmpty (EQ columnNamePathAllowEmpty)?) | KW_USING identifierList ; @@ -804,6 +813,11 @@ multipartIdentifier : parts+=errorCapturingIdentifier (DOT parts+=errorCapturingIdentifier)* ; +multipartIdentifierAllowEmpty + : multipartIdentifier + | {this.shouldMatchEmpty()}? multipartIdentifier DOT emptyColumn + ; + multipartIdentifierPropertyList : multipartIdentifierProperty (COMMA multipartIdentifierProperty)* ; diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 7709f890..54b643a7 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1115,8 +1115,10 @@ createTableAsSelect columnOptionDefinition physicalColumnDefinition columnNameCreate +emptyColumn columnName columnNamePath +columnNamePathAllowEmpty columnNameList columnType lengthOneDimension @@ -1267,6 +1269,7 @@ tablePath viewPath viewPathCreate uid +uidAllowEmpty withOption ifNotExists ifExists @@ -1295,4 +1298,4 @@ nonReservedKeywords atn: -[4, 1, 542, 2388, 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, 1, 0, 5, 0, 408, 8, 0, 10, 0, 12, 0, 411, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 417, 8, 1, 1, 1, 3, 1, 420, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 434, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 452, 8, 4, 1, 5, 1, 5, 3, 5, 456, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 465, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 470, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 475, 8, 8, 10, 8, 12, 8, 478, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 488, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 495, 8, 11, 10, 11, 12, 11, 498, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 509, 8, 12, 1, 12, 3, 12, 512, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 519, 8, 12, 1, 12, 3, 12, 522, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 530, 8, 12, 1, 12, 1, 12, 3, 12, 534, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 539, 8, 12, 1, 12, 3, 12, 542, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 549, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 557, 8, 15, 1, 16, 1, 16, 3, 16, 561, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 573, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 581, 8, 18, 1, 18, 1, 18, 3, 18, 585, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 617, 8, 18, 1, 19, 3, 19, 620, 8, 19, 1, 19, 4, 19, 623, 8, 19, 11, 19, 12, 19, 624, 1, 20, 1, 20, 3, 20, 629, 8, 20, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 644, 8, 21, 10, 21, 12, 21, 647, 9, 21, 1, 21, 1, 21, 3, 21, 651, 8, 21, 1, 21, 1, 21, 3, 21, 655, 8, 21, 1, 21, 1, 21, 3, 21, 659, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 664, 8, 21, 1, 21, 3, 21, 667, 8, 21, 1, 21, 1, 21, 3, 21, 671, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 676, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 682, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 687, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 692, 8, 24, 1, 24, 1, 24, 3, 24, 696, 8, 24, 1, 25, 1, 25, 3, 25, 700, 8, 25, 1, 26, 1, 26, 3, 26, 704, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 712, 8, 28, 10, 28, 12, 28, 715, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 722, 8, 29, 1, 29, 1, 29, 3, 29, 726, 8, 29, 1, 29, 1, 29, 3, 29, 730, 8, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 1, 29, 1, 29, 3, 29, 738, 8, 29, 1, 29, 1, 29, 3, 29, 742, 8, 29, 1, 29, 1, 29, 3, 29, 746, 8, 29, 1, 29, 1, 29, 3, 29, 750, 8, 29, 1, 29, 1, 29, 3, 29, 754, 8, 29, 3, 29, 756, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 766, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 774, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 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, 35, 1, 35, 5, 35, 796, 8, 35, 10, 35, 12, 35, 799, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 810, 8, 35, 10, 35, 12, 35, 813, 9, 35, 1, 35, 1, 35, 3, 35, 817, 8, 35, 1, 36, 1, 36, 3, 36, 821, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 827, 8, 36, 1, 36, 3, 36, 830, 8, 36, 1, 36, 3, 36, 833, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 840, 8, 37, 1, 37, 3, 37, 843, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 852, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 864, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 886, 8, 46, 10, 46, 12, 46, 889, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 898, 8, 47, 10, 47, 12, 47, 901, 9, 47, 1, 47, 1, 47, 3, 47, 905, 8, 47, 1, 48, 1, 48, 3, 48, 909, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 915, 8, 49, 10, 49, 12, 49, 918, 9, 49, 1, 49, 3, 49, 921, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 927, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 937, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 942, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 948, 8, 53, 1, 53, 1, 53, 3, 53, 952, 8, 53, 1, 53, 1, 53, 3, 53, 956, 8, 53, 1, 53, 1, 53, 3, 53, 960, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 969, 8, 54, 1, 54, 1, 54, 3, 54, 973, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 980, 8, 54, 1, 54, 3, 54, 983, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 991, 8, 55, 10, 55, 12, 55, 994, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1001, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1009, 8, 57, 1, 58, 1, 58, 3, 58, 1013, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1028, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1047, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1058, 8, 66, 1, 66, 1, 66, 3, 66, 1062, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1069, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1074, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1080, 8, 68, 1, 68, 1, 68, 3, 68, 1084, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1091, 8, 69, 1, 69, 1, 69, 3, 69, 1095, 8, 69, 1, 70, 1, 70, 3, 70, 1099, 8, 70, 1, 70, 1, 70, 3, 70, 1103, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1111, 8, 71, 1, 71, 1, 71, 3, 71, 1115, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1120, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1126, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1132, 8, 73, 1, 73, 3, 73, 1135, 8, 73, 1, 73, 1, 73, 3, 73, 1139, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1148, 8, 75, 10, 75, 12, 75, 1151, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1157, 8, 76, 10, 76, 12, 76, 1160, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1166, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1175, 8, 78, 11, 78, 12, 78, 1176, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1187, 8, 79, 11, 79, 12, 79, 1188, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1204, 8, 80, 1, 80, 3, 80, 1207, 8, 80, 1, 80, 1, 80, 3, 80, 1211, 8, 80, 1, 80, 3, 80, 1214, 8, 80, 3, 80, 1216, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1221, 8, 80, 1, 80, 1, 80, 3, 80, 1225, 8, 80, 1, 80, 3, 80, 1228, 8, 80, 5, 80, 1230, 8, 80, 10, 80, 12, 80, 1233, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1239, 8, 81, 10, 81, 12, 81, 1242, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1248, 8, 82, 10, 82, 12, 82, 1251, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1258, 8, 83, 10, 83, 12, 83, 1261, 9, 83, 1, 83, 1, 83, 3, 83, 1265, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 1276, 8, 85, 1, 85, 3, 85, 1279, 8, 85, 1, 85, 3, 85, 1282, 8, 85, 1, 85, 3, 85, 1285, 8, 85, 1, 85, 3, 85, 1288, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1294, 8, 85, 1, 86, 1, 86, 3, 86, 1298, 8, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 5, 87, 1305, 8, 87, 10, 87, 12, 87, 1308, 9, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1314, 8, 88, 1, 88, 3, 88, 1317, 8, 88, 1, 88, 1, 88, 3, 88, 1321, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1326, 8, 88, 1, 88, 3, 88, 1329, 8, 88, 3, 88, 1331, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 3, 92, 1340, 8, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 3, 93, 1347, 8, 93, 1, 93, 3, 93, 1350, 8, 93, 1, 93, 1, 93, 3, 93, 1354, 8, 93, 1, 93, 3, 93, 1357, 8, 93, 3, 93, 1359, 8, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1364, 8, 94, 10, 94, 12, 94, 1367, 9, 94, 1, 94, 1, 94, 3, 94, 1371, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 1387, 8, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1396, 8, 97, 10, 97, 12, 97, 1399, 9, 97, 1, 97, 1, 97, 3, 97, 1403, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1411, 8, 97, 1, 97, 3, 97, 1414, 8, 97, 1, 97, 3, 97, 1417, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1422, 8, 97, 5, 97, 1424, 8, 97, 10, 97, 12, 97, 1427, 9, 97, 1, 98, 1, 98, 3, 98, 1431, 8, 98, 1, 99, 3, 99, 1434, 8, 99, 1, 99, 1, 99, 3, 99, 1438, 8, 99, 1, 99, 1, 99, 3, 99, 1442, 8, 99, 1, 99, 1, 99, 3, 99, 1446, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 3, 101, 1455, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1466, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1491, 8, 106, 10, 106, 12, 106, 1494, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1515, 8, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1528, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 1538, 8, 113, 10, 113, 12, 113, 1541, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1551, 8, 114, 10, 114, 12, 114, 1554, 9, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1563, 8, 114, 10, 114, 12, 114, 1566, 9, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1575, 8, 114, 10, 114, 12, 114, 1578, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1583, 8, 114, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1608, 8, 121, 10, 121, 12, 121, 1611, 9, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 3, 123, 1618, 8, 123, 1, 123, 1, 123, 3, 123, 1622, 8, 123, 1, 123, 3, 123, 1625, 8, 123, 1, 123, 3, 123, 1628, 8, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 3, 124, 1635, 8, 124, 1, 124, 3, 124, 1638, 8, 124, 1, 124, 3, 124, 1641, 8, 124, 1, 124, 3, 124, 1644, 8, 124, 1, 124, 3, 124, 1647, 8, 124, 1, 124, 3, 124, 1650, 8, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1655, 8, 124, 1, 124, 3, 124, 1658, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1665, 8, 125, 10, 125, 12, 125, 1668, 9, 125, 1, 126, 1, 126, 3, 126, 1672, 8, 126, 1, 126, 1, 126, 3, 126, 1676, 8, 126, 1, 127, 1, 127, 1, 127, 3, 127, 1681, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1687, 8, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1692, 8, 128, 5, 128, 1694, 8, 128, 10, 128, 12, 128, 1697, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1715, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1721, 8, 130, 10, 130, 12, 130, 1724, 9, 130, 1, 131, 1, 131, 1, 131, 4, 131, 1729, 8, 131, 11, 131, 12, 131, 1730, 1, 131, 1, 131, 3, 131, 1735, 8, 131, 1, 132, 1, 132, 3, 132, 1739, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1749, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1775, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1781, 8, 135, 10, 135, 12, 135, 1784, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1795, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 1817, 8, 140, 3, 140, 1819, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 1830, 8, 140, 1, 140, 5, 140, 1833, 8, 140, 10, 140, 12, 140, 1836, 9, 140, 1, 141, 3, 141, 1839, 8, 141, 1, 141, 1, 141, 3, 141, 1843, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1850, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 1857, 8, 141, 10, 141, 12, 141, 1860, 9, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1865, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1878, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1885, 8, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1890, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1896, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1903, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1910, 8, 141, 3, 141, 1912, 8, 141, 1, 142, 3, 142, 1915, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 1925, 8, 142, 10, 142, 12, 142, 1928, 9, 142, 1, 142, 1, 142, 3, 142, 1932, 8, 142, 1, 142, 3, 142, 1935, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1941, 8, 142, 3, 142, 1943, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1949, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 5, 143, 1970, 8, 143, 10, 143, 12, 143, 1973, 9, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 1980, 8, 144, 1, 144, 1, 144, 1, 144, 5, 144, 1985, 8, 144, 10, 144, 12, 144, 1988, 9, 144, 3, 144, 1990, 8, 144, 1, 144, 1, 144, 3, 144, 1994, 8, 144, 1, 145, 1, 145, 1, 145, 4, 145, 1999, 8, 145, 11, 145, 12, 145, 2000, 1, 145, 1, 145, 3, 145, 2005, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 4, 145, 2012, 8, 145, 11, 145, 12, 145, 2013, 1, 145, 1, 145, 3, 145, 2018, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2034, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2043, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2071, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 2078, 8, 145, 10, 145, 12, 145, 2081, 9, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2089, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2095, 8, 148, 1, 149, 1, 149, 3, 149, 2099, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2105, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2113, 8, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2118, 8, 154, 1, 155, 1, 155, 3, 155, 2122, 8, 155, 1, 156, 1, 156, 1, 156, 4, 156, 2127, 8, 156, 11, 156, 12, 156, 2128, 1, 157, 1, 157, 1, 157, 3, 157, 2134, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 3, 159, 2142, 8, 159, 1, 159, 1, 159, 3, 159, 2146, 8, 159, 1, 160, 3, 160, 2149, 8, 160, 1, 160, 1, 160, 3, 160, 2153, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 4, 162, 2160, 8, 162, 11, 162, 12, 162, 2161, 1, 162, 3, 162, 2165, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 5, 164, 2174, 8, 164, 10, 164, 12, 164, 2177, 9, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2182, 8, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 3, 171, 2200, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 2205, 8, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2210, 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2217, 8, 173, 3, 173, 2219, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2224, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2231, 8, 174, 3, 174, 2233, 8, 174, 1, 175, 1, 175, 1, 175, 3, 175, 2238, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2245, 8, 175, 3, 175, 2247, 8, 175, 1, 176, 1, 176, 1, 176, 3, 176, 2252, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2259, 8, 176, 3, 176, 2261, 8, 176, 1, 177, 1, 177, 1, 177, 5, 177, 2266, 8, 177, 10, 177, 12, 177, 2269, 9, 177, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 5, 181, 2285, 8, 181, 10, 181, 12, 181, 2288, 9, 181, 1, 181, 1, 181, 1, 182, 1, 182, 3, 182, 2294, 8, 182, 1, 182, 3, 182, 2297, 8, 182, 1, 183, 1, 183, 1, 183, 3, 183, 2302, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2308, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2316, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2332, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2341, 8, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2351, 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2358, 8, 190, 1, 190, 3, 190, 2361, 8, 190, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 0, 5, 160, 194, 280, 286, 290, 203, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2597, 0, 409, 1, 0, 0, 0, 2, 419, 1, 0, 0, 0, 4, 433, 1, 0, 0, 0, 6, 435, 1, 0, 0, 0, 8, 451, 1, 0, 0, 0, 10, 455, 1, 0, 0, 0, 12, 457, 1, 0, 0, 0, 14, 460, 1, 0, 0, 0, 16, 471, 1, 0, 0, 0, 18, 479, 1, 0, 0, 0, 20, 487, 1, 0, 0, 0, 22, 489, 1, 0, 0, 0, 24, 541, 1, 0, 0, 0, 26, 543, 1, 0, 0, 0, 28, 550, 1, 0, 0, 0, 30, 554, 1, 0, 0, 0, 32, 558, 1, 0, 0, 0, 34, 562, 1, 0, 0, 0, 36, 616, 1, 0, 0, 0, 38, 622, 1, 0, 0, 0, 40, 628, 1, 0, 0, 0, 42, 630, 1, 0, 0, 0, 44, 672, 1, 0, 0, 0, 46, 686, 1, 0, 0, 0, 48, 688, 1, 0, 0, 0, 50, 699, 1, 0, 0, 0, 52, 703, 1, 0, 0, 0, 54, 705, 1, 0, 0, 0, 56, 707, 1, 0, 0, 0, 58, 755, 1, 0, 0, 0, 60, 757, 1, 0, 0, 0, 62, 761, 1, 0, 0, 0, 64, 769, 1, 0, 0, 0, 66, 777, 1, 0, 0, 0, 68, 781, 1, 0, 0, 0, 70, 816, 1, 0, 0, 0, 72, 832, 1, 0, 0, 0, 74, 834, 1, 0, 0, 0, 76, 844, 1, 0, 0, 0, 78, 846, 1, 0, 0, 0, 80, 853, 1, 0, 0, 0, 82, 855, 1, 0, 0, 0, 84, 863, 1, 0, 0, 0, 86, 871, 1, 0, 0, 0, 88, 873, 1, 0, 0, 0, 90, 877, 1, 0, 0, 0, 92, 881, 1, 0, 0, 0, 94, 904, 1, 0, 0, 0, 96, 908, 1, 0, 0, 0, 98, 910, 1, 0, 0, 0, 100, 926, 1, 0, 0, 0, 102, 928, 1, 0, 0, 0, 104, 933, 1, 0, 0, 0, 106, 945, 1, 0, 0, 0, 108, 964, 1, 0, 0, 0, 110, 984, 1, 0, 0, 0, 112, 995, 1, 0, 0, 0, 114, 997, 1, 0, 0, 0, 116, 1010, 1, 0, 0, 0, 118, 1017, 1, 0, 0, 0, 120, 1020, 1, 0, 0, 0, 122, 1029, 1, 0, 0, 0, 124, 1033, 1, 0, 0, 0, 126, 1037, 1, 0, 0, 0, 128, 1040, 1, 0, 0, 0, 130, 1048, 1, 0, 0, 0, 132, 1053, 1, 0, 0, 0, 134, 1070, 1, 0, 0, 0, 136, 1077, 1, 0, 0, 0, 138, 1087, 1, 0, 0, 0, 140, 1096, 1, 0, 0, 0, 142, 1106, 1, 0, 0, 0, 144, 1125, 1, 0, 0, 0, 146, 1127, 1, 0, 0, 0, 148, 1140, 1, 0, 0, 0, 150, 1143, 1, 0, 0, 0, 152, 1152, 1, 0, 0, 0, 154, 1165, 1, 0, 0, 0, 156, 1167, 1, 0, 0, 0, 158, 1180, 1, 0, 0, 0, 160, 1215, 1, 0, 0, 0, 162, 1234, 1, 0, 0, 0, 164, 1243, 1, 0, 0, 0, 166, 1252, 1, 0, 0, 0, 168, 1271, 1, 0, 0, 0, 170, 1293, 1, 0, 0, 0, 172, 1295, 1, 0, 0, 0, 174, 1301, 1, 0, 0, 0, 176, 1330, 1, 0, 0, 0, 178, 1332, 1, 0, 0, 0, 180, 1334, 1, 0, 0, 0, 182, 1336, 1, 0, 0, 0, 184, 1339, 1, 0, 0, 0, 186, 1358, 1, 0, 0, 0, 188, 1370, 1, 0, 0, 0, 190, 1386, 1, 0, 0, 0, 192, 1388, 1, 0, 0, 0, 194, 1402, 1, 0, 0, 0, 196, 1428, 1, 0, 0, 0, 198, 1445, 1, 0, 0, 0, 200, 1447, 1, 0, 0, 0, 202, 1465, 1, 0, 0, 0, 204, 1467, 1, 0, 0, 0, 206, 1473, 1, 0, 0, 0, 208, 1475, 1, 0, 0, 0, 210, 1480, 1, 0, 0, 0, 212, 1485, 1, 0, 0, 0, 214, 1497, 1, 0, 0, 0, 216, 1514, 1, 0, 0, 0, 218, 1516, 1, 0, 0, 0, 220, 1518, 1, 0, 0, 0, 222, 1527, 1, 0, 0, 0, 224, 1529, 1, 0, 0, 0, 226, 1532, 1, 0, 0, 0, 228, 1582, 1, 0, 0, 0, 230, 1584, 1, 0, 0, 0, 232, 1587, 1, 0, 0, 0, 234, 1589, 1, 0, 0, 0, 236, 1596, 1, 0, 0, 0, 238, 1598, 1, 0, 0, 0, 240, 1600, 1, 0, 0, 0, 242, 1603, 1, 0, 0, 0, 244, 1612, 1, 0, 0, 0, 246, 1617, 1, 0, 0, 0, 248, 1631, 1, 0, 0, 0, 250, 1659, 1, 0, 0, 0, 252, 1669, 1, 0, 0, 0, 254, 1677, 1, 0, 0, 0, 256, 1682, 1, 0, 0, 0, 258, 1714, 1, 0, 0, 0, 260, 1716, 1, 0, 0, 0, 262, 1725, 1, 0, 0, 0, 264, 1736, 1, 0, 0, 0, 266, 1748, 1, 0, 0, 0, 268, 1774, 1, 0, 0, 0, 270, 1776, 1, 0, 0, 0, 272, 1794, 1, 0, 0, 0, 274, 1796, 1, 0, 0, 0, 276, 1801, 1, 0, 0, 0, 278, 1804, 1, 0, 0, 0, 280, 1818, 1, 0, 0, 0, 282, 1911, 1, 0, 0, 0, 284, 1942, 1, 0, 0, 0, 286, 1948, 1, 0, 0, 0, 288, 1993, 1, 0, 0, 0, 290, 2070, 1, 0, 0, 0, 292, 2082, 1, 0, 0, 0, 294, 2088, 1, 0, 0, 0, 296, 2094, 1, 0, 0, 0, 298, 2098, 1, 0, 0, 0, 300, 2104, 1, 0, 0, 0, 302, 2106, 1, 0, 0, 0, 304, 2108, 1, 0, 0, 0, 306, 2112, 1, 0, 0, 0, 308, 2114, 1, 0, 0, 0, 310, 2119, 1, 0, 0, 0, 312, 2126, 1, 0, 0, 0, 314, 2130, 1, 0, 0, 0, 316, 2135, 1, 0, 0, 0, 318, 2145, 1, 0, 0, 0, 320, 2148, 1, 0, 0, 0, 322, 2154, 1, 0, 0, 0, 324, 2164, 1, 0, 0, 0, 326, 2166, 1, 0, 0, 0, 328, 2170, 1, 0, 0, 0, 330, 2181, 1, 0, 0, 0, 332, 2183, 1, 0, 0, 0, 334, 2185, 1, 0, 0, 0, 336, 2187, 1, 0, 0, 0, 338, 2192, 1, 0, 0, 0, 340, 2194, 1, 0, 0, 0, 342, 2196, 1, 0, 0, 0, 344, 2201, 1, 0, 0, 0, 346, 2218, 1, 0, 0, 0, 348, 2232, 1, 0, 0, 0, 350, 2246, 1, 0, 0, 0, 352, 2260, 1, 0, 0, 0, 354, 2262, 1, 0, 0, 0, 356, 2270, 1, 0, 0, 0, 358, 2273, 1, 0, 0, 0, 360, 2277, 1, 0, 0, 0, 362, 2280, 1, 0, 0, 0, 364, 2291, 1, 0, 0, 0, 366, 2301, 1, 0, 0, 0, 368, 2307, 1, 0, 0, 0, 370, 2315, 1, 0, 0, 0, 372, 2331, 1, 0, 0, 0, 374, 2340, 1, 0, 0, 0, 376, 2342, 1, 0, 0, 0, 378, 2344, 1, 0, 0, 0, 380, 2360, 1, 0, 0, 0, 382, 2362, 1, 0, 0, 0, 384, 2365, 1, 0, 0, 0, 386, 2367, 1, 0, 0, 0, 388, 2369, 1, 0, 0, 0, 390, 2371, 1, 0, 0, 0, 392, 2373, 1, 0, 0, 0, 394, 2375, 1, 0, 0, 0, 396, 2377, 1, 0, 0, 0, 398, 2379, 1, 0, 0, 0, 400, 2381, 1, 0, 0, 0, 402, 2383, 1, 0, 0, 0, 404, 2385, 1, 0, 0, 0, 406, 408, 3, 2, 1, 0, 407, 406, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 413, 5, 0, 0, 1, 413, 1, 1, 0, 0, 0, 414, 416, 3, 4, 2, 0, 415, 417, 5, 522, 0, 0, 416, 415, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 420, 1, 0, 0, 0, 418, 420, 3, 6, 3, 0, 419, 414, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 3, 1, 0, 0, 0, 421, 434, 3, 8, 4, 0, 422, 434, 3, 10, 5, 0, 423, 434, 3, 12, 6, 0, 424, 434, 3, 14, 7, 0, 425, 434, 3, 20, 10, 0, 426, 434, 3, 24, 12, 0, 427, 434, 3, 26, 13, 0, 428, 434, 3, 28, 14, 0, 429, 434, 3, 30, 15, 0, 430, 434, 3, 32, 16, 0, 431, 434, 3, 34, 17, 0, 432, 434, 3, 36, 18, 0, 433, 421, 1, 0, 0, 0, 433, 422, 1, 0, 0, 0, 433, 423, 1, 0, 0, 0, 433, 424, 1, 0, 0, 0, 433, 425, 1, 0, 0, 0, 433, 426, 1, 0, 0, 0, 433, 427, 1, 0, 0, 0, 433, 428, 1, 0, 0, 0, 433, 429, 1, 0, 0, 0, 433, 430, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 432, 1, 0, 0, 0, 434, 5, 1, 0, 0, 0, 435, 436, 5, 522, 0, 0, 436, 7, 1, 0, 0, 0, 437, 452, 3, 40, 20, 0, 438, 452, 3, 104, 52, 0, 439, 452, 3, 106, 53, 0, 440, 452, 3, 108, 54, 0, 441, 452, 3, 102, 51, 0, 442, 452, 3, 114, 57, 0, 443, 452, 3, 128, 64, 0, 444, 452, 3, 130, 65, 0, 445, 452, 3, 132, 66, 0, 446, 452, 3, 134, 67, 0, 447, 452, 3, 136, 68, 0, 448, 452, 3, 138, 69, 0, 449, 452, 3, 140, 70, 0, 450, 452, 3, 142, 71, 0, 451, 437, 1, 0, 0, 0, 451, 438, 1, 0, 0, 0, 451, 439, 1, 0, 0, 0, 451, 440, 1, 0, 0, 0, 451, 441, 1, 0, 0, 0, 451, 442, 1, 0, 0, 0, 451, 443, 1, 0, 0, 0, 451, 444, 1, 0, 0, 0, 451, 445, 1, 0, 0, 0, 451, 446, 1, 0, 0, 0, 451, 447, 1, 0, 0, 0, 451, 448, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 450, 1, 0, 0, 0, 452, 9, 1, 0, 0, 0, 453, 456, 3, 160, 80, 0, 454, 456, 3, 144, 72, 0, 455, 453, 1, 0, 0, 0, 455, 454, 1, 0, 0, 0, 456, 11, 1, 0, 0, 0, 457, 458, 7, 0, 0, 0, 458, 459, 3, 348, 174, 0, 459, 13, 1, 0, 0, 0, 460, 464, 5, 135, 0, 0, 461, 465, 3, 16, 8, 0, 462, 463, 5, 480, 0, 0, 463, 465, 5, 146, 0, 0, 464, 461, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 469, 1, 0, 0, 0, 466, 470, 3, 10, 5, 0, 467, 470, 3, 146, 73, 0, 468, 470, 3, 158, 79, 0, 469, 466, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 468, 1, 0, 0, 0, 470, 15, 1, 0, 0, 0, 471, 476, 3, 18, 9, 0, 472, 473, 5, 521, 0, 0, 473, 475, 3, 18, 9, 0, 474, 472, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 17, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, 480, 7, 1, 0, 0, 480, 19, 1, 0, 0, 0, 481, 482, 5, 411, 0, 0, 482, 483, 5, 442, 0, 0, 483, 488, 3, 338, 169, 0, 484, 485, 5, 411, 0, 0, 485, 488, 3, 342, 171, 0, 486, 488, 3, 22, 11, 0, 487, 481, 1, 0, 0, 0, 487, 484, 1, 0, 0, 0, 487, 486, 1, 0, 0, 0, 488, 21, 1, 0, 0, 0, 489, 490, 5, 411, 0, 0, 490, 491, 5, 228, 0, 0, 491, 496, 3, 354, 177, 0, 492, 493, 5, 521, 0, 0, 493, 495, 3, 354, 177, 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, 23, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 342, 0, 0, 500, 542, 7, 2, 0, 0, 501, 502, 5, 342, 0, 0, 502, 503, 5, 76, 0, 0, 503, 542, 7, 3, 0, 0, 504, 505, 5, 342, 0, 0, 505, 508, 5, 375, 0, 0, 506, 507, 7, 4, 0, 0, 507, 509, 3, 342, 171, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 512, 3, 284, 142, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 542, 1, 0, 0, 0, 513, 514, 5, 342, 0, 0, 514, 515, 5, 58, 0, 0, 515, 518, 7, 4, 0, 0, 516, 519, 3, 350, 175, 0, 517, 519, 3, 348, 174, 0, 518, 516, 1, 0, 0, 0, 518, 517, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 284, 142, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 542, 1, 0, 0, 0, 523, 524, 5, 342, 0, 0, 524, 529, 5, 72, 0, 0, 525, 526, 5, 374, 0, 0, 526, 530, 3, 348, 174, 0, 527, 528, 5, 502, 0, 0, 528, 530, 3, 350, 175, 0, 529, 525, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 542, 1, 0, 0, 0, 531, 533, 5, 342, 0, 0, 532, 534, 5, 412, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 542, 5, 154, 0, 0, 536, 538, 5, 342, 0, 0, 537, 539, 5, 152, 0, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 542, 5, 228, 0, 0, 541, 499, 1, 0, 0, 0, 541, 501, 1, 0, 0, 0, 541, 504, 1, 0, 0, 0, 541, 513, 1, 0, 0, 0, 541, 523, 1, 0, 0, 0, 541, 531, 1, 0, 0, 0, 541, 536, 1, 0, 0, 0, 542, 25, 1, 0, 0, 0, 543, 544, 5, 469, 0, 0, 544, 545, 5, 227, 0, 0, 545, 548, 3, 354, 177, 0, 546, 547, 5, 434, 0, 0, 547, 549, 3, 362, 181, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 27, 1, 0, 0, 0, 550, 551, 5, 501, 0, 0, 551, 552, 5, 227, 0, 0, 552, 553, 3, 354, 177, 0, 553, 29, 1, 0, 0, 0, 554, 556, 5, 341, 0, 0, 555, 557, 3, 364, 182, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 31, 1, 0, 0, 0, 558, 560, 5, 313, 0, 0, 559, 561, 3, 366, 183, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 33, 1, 0, 0, 0, 562, 563, 7, 5, 0, 0, 563, 564, 5, 464, 0, 0, 564, 565, 3, 112, 56, 0, 565, 35, 1, 0, 0, 0, 566, 567, 5, 438, 0, 0, 567, 568, 5, 464, 0, 0, 568, 569, 5, 434, 0, 0, 569, 572, 3, 38, 19, 0, 570, 571, 5, 17, 0, 0, 571, 573, 3, 354, 177, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 617, 1, 0, 0, 0, 574, 575, 5, 438, 0, 0, 575, 576, 5, 457, 0, 0, 576, 577, 5, 434, 0, 0, 577, 580, 3, 38, 19, 0, 578, 579, 5, 17, 0, 0, 579, 581, 3, 354, 177, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 583, 5, 312, 0, 0, 583, 585, 3, 354, 177, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 617, 1, 0, 0, 0, 586, 587, 5, 438, 0, 0, 587, 588, 7, 6, 0, 0, 588, 589, 5, 434, 0, 0, 589, 590, 3, 38, 19, 0, 590, 591, 5, 312, 0, 0, 591, 592, 3, 354, 177, 0, 592, 617, 1, 0, 0, 0, 593, 594, 5, 438, 0, 0, 594, 595, 5, 487, 0, 0, 595, 617, 3, 38, 19, 0, 596, 597, 5, 438, 0, 0, 597, 598, 5, 454, 0, 0, 598, 599, 5, 457, 0, 0, 599, 600, 5, 434, 0, 0, 600, 601, 3, 38, 19, 0, 601, 602, 5, 312, 0, 0, 602, 603, 3, 354, 177, 0, 603, 604, 5, 467, 0, 0, 604, 605, 3, 354, 177, 0, 605, 617, 1, 0, 0, 0, 606, 607, 5, 438, 0, 0, 607, 608, 5, 444, 0, 0, 608, 609, 5, 457, 0, 0, 609, 610, 5, 434, 0, 0, 610, 611, 3, 38, 19, 0, 611, 612, 5, 146, 0, 0, 612, 613, 3, 354, 177, 0, 613, 614, 5, 17, 0, 0, 614, 615, 3, 354, 177, 0, 615, 617, 1, 0, 0, 0, 616, 566, 1, 0, 0, 0, 616, 574, 1, 0, 0, 0, 616, 586, 1, 0, 0, 0, 616, 593, 1, 0, 0, 0, 616, 596, 1, 0, 0, 0, 616, 606, 1, 0, 0, 0, 617, 37, 1, 0, 0, 0, 618, 620, 5, 535, 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 3, 354, 177, 0, 622, 619, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 39, 1, 0, 0, 0, 626, 629, 3, 42, 21, 0, 627, 629, 3, 44, 22, 0, 628, 626, 1, 0, 0, 0, 628, 627, 1, 0, 0, 0, 629, 41, 1, 0, 0, 0, 630, 632, 5, 72, 0, 0, 631, 633, 5, 498, 0, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 636, 5, 374, 0, 0, 635, 637, 3, 358, 179, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 3, 346, 173, 0, 639, 640, 5, 517, 0, 0, 640, 645, 3, 46, 23, 0, 641, 642, 5, 521, 0, 0, 642, 644, 3, 46, 23, 0, 643, 641, 1, 0, 0, 0, 644, 647, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 650, 1, 0, 0, 0, 647, 645, 1, 0, 0, 0, 648, 649, 5, 521, 0, 0, 649, 651, 3, 82, 41, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 653, 5, 521, 0, 0, 653, 655, 3, 84, 42, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 658, 1, 0, 0, 0, 656, 657, 5, 521, 0, 0, 657, 659, 3, 88, 44, 0, 658, 656, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 663, 5, 518, 0, 0, 661, 662, 5, 59, 0, 0, 662, 664, 5, 538, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 666, 1, 0, 0, 0, 665, 667, 3, 90, 45, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 3, 356, 178, 0, 669, 671, 3, 98, 49, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 43, 1, 0, 0, 0, 672, 673, 5, 72, 0, 0, 673, 675, 5, 374, 0, 0, 674, 676, 3, 358, 179, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 3, 346, 173, 0, 678, 681, 3, 356, 178, 0, 679, 680, 5, 17, 0, 0, 680, 682, 3, 160, 80, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 45, 1, 0, 0, 0, 683, 687, 3, 48, 24, 0, 684, 687, 3, 74, 37, 0, 685, 687, 3, 78, 39, 0, 686, 683, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 686, 685, 1, 0, 0, 0, 687, 47, 1, 0, 0, 0, 688, 689, 3, 50, 25, 0, 689, 691, 3, 58, 29, 0, 690, 692, 3, 72, 36, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 695, 1, 0, 0, 0, 693, 694, 5, 59, 0, 0, 694, 696, 5, 538, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 49, 1, 0, 0, 0, 697, 700, 3, 354, 177, 0, 698, 700, 3, 278, 139, 0, 699, 697, 1, 0, 0, 0, 699, 698, 1, 0, 0, 0, 700, 51, 1, 0, 0, 0, 701, 704, 3, 354, 177, 0, 702, 704, 4, 26, 0, 0, 703, 701, 1, 0, 0, 0, 703, 702, 1, 0, 0, 0, 704, 53, 1, 0, 0, 0, 705, 706, 3, 354, 177, 0, 706, 55, 1, 0, 0, 0, 707, 708, 5, 517, 0, 0, 708, 713, 3, 52, 26, 0, 709, 710, 5, 521, 0, 0, 710, 712, 3, 52, 26, 0, 711, 709, 1, 0, 0, 0, 712, 715, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 716, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 716, 717, 5, 518, 0, 0, 717, 57, 1, 0, 0, 0, 718, 756, 7, 7, 0, 0, 719, 721, 7, 8, 0, 0, 720, 722, 3, 60, 30, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 756, 1, 0, 0, 0, 723, 725, 5, 380, 0, 0, 724, 726, 3, 60, 30, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 733, 1, 0, 0, 0, 727, 729, 7, 9, 0, 0, 728, 730, 5, 207, 0, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 5, 379, 0, 0, 732, 734, 5, 505, 0, 0, 733, 727, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 756, 1, 0, 0, 0, 735, 737, 7, 10, 0, 0, 736, 738, 3, 62, 31, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 756, 1, 0, 0, 0, 739, 741, 7, 11, 0, 0, 740, 742, 3, 66, 33, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 756, 1, 0, 0, 0, 743, 745, 5, 470, 0, 0, 744, 746, 3, 68, 34, 0, 745, 744, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 756, 1, 0, 0, 0, 747, 749, 5, 322, 0, 0, 748, 750, 3, 70, 35, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 756, 1, 0, 0, 0, 751, 753, 5, 295, 0, 0, 752, 754, 3, 64, 32, 0, 753, 752, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 756, 1, 0, 0, 0, 755, 718, 1, 0, 0, 0, 755, 719, 1, 0, 0, 0, 755, 723, 1, 0, 0, 0, 755, 735, 1, 0, 0, 0, 755, 739, 1, 0, 0, 0, 755, 743, 1, 0, 0, 0, 755, 747, 1, 0, 0, 0, 755, 751, 1, 0, 0, 0, 756, 59, 1, 0, 0, 0, 757, 758, 5, 517, 0, 0, 758, 759, 3, 386, 193, 0, 759, 760, 5, 518, 0, 0, 760, 61, 1, 0, 0, 0, 761, 762, 5, 517, 0, 0, 762, 765, 3, 386, 193, 0, 763, 764, 5, 521, 0, 0, 764, 766, 3, 386, 193, 0, 765, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 518, 0, 0, 768, 63, 1, 0, 0, 0, 769, 770, 5, 517, 0, 0, 770, 773, 3, 384, 192, 0, 771, 772, 5, 521, 0, 0, 772, 774, 3, 384, 192, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 5, 518, 0, 0, 776, 65, 1, 0, 0, 0, 777, 778, 5, 508, 0, 0, 778, 779, 3, 58, 29, 0, 779, 780, 5, 507, 0, 0, 780, 67, 1, 0, 0, 0, 781, 782, 5, 508, 0, 0, 782, 783, 3, 58, 29, 0, 783, 784, 5, 521, 0, 0, 784, 785, 3, 58, 29, 0, 785, 786, 1, 0, 0, 0, 786, 787, 5, 507, 0, 0, 787, 69, 1, 0, 0, 0, 788, 789, 5, 508, 0, 0, 789, 790, 3, 52, 26, 0, 790, 797, 3, 58, 29, 0, 791, 792, 5, 521, 0, 0, 792, 793, 3, 52, 26, 0, 793, 794, 3, 58, 29, 0, 794, 796, 1, 0, 0, 0, 795, 791, 1, 0, 0, 0, 796, 799, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 800, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 801, 5, 507, 0, 0, 801, 817, 1, 0, 0, 0, 802, 803, 5, 517, 0, 0, 803, 804, 3, 52, 26, 0, 804, 811, 3, 58, 29, 0, 805, 806, 5, 521, 0, 0, 806, 807, 3, 52, 26, 0, 807, 808, 3, 58, 29, 0, 808, 810, 1, 0, 0, 0, 809, 805, 1, 0, 0, 0, 810, 813, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 815, 5, 518, 0, 0, 815, 817, 1, 0, 0, 0, 816, 788, 1, 0, 0, 0, 816, 802, 1, 0, 0, 0, 817, 71, 1, 0, 0, 0, 818, 819, 5, 64, 0, 0, 819, 821, 3, 86, 43, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 5, 289, 0, 0, 823, 826, 5, 467, 0, 0, 824, 825, 5, 242, 0, 0, 825, 827, 5, 125, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 833, 1, 0, 0, 0, 828, 830, 5, 242, 0, 0, 829, 828, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 5, 245, 0, 0, 832, 820, 1, 0, 0, 0, 832, 829, 1, 0, 0, 0, 833, 73, 1, 0, 0, 0, 834, 835, 3, 50, 25, 0, 835, 836, 3, 58, 29, 0, 836, 839, 5, 219, 0, 0, 837, 838, 5, 151, 0, 0, 838, 840, 3, 76, 38, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 424, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 75, 1, 0, 0, 0, 844, 845, 5, 538, 0, 0, 845, 77, 1, 0, 0, 0, 846, 847, 3, 50, 25, 0, 847, 848, 5, 17, 0, 0, 848, 851, 3, 80, 40, 0, 849, 850, 5, 59, 0, 0, 850, 852, 5, 538, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 79, 1, 0, 0, 0, 853, 854, 3, 278, 139, 0, 854, 81, 1, 0, 0, 0, 855, 856, 5, 425, 0, 0, 856, 857, 5, 146, 0, 0, 857, 858, 3, 52, 26, 0, 858, 859, 5, 17, 0, 0, 859, 860, 3, 278, 139, 0, 860, 83, 1, 0, 0, 0, 861, 862, 5, 64, 0, 0, 862, 864, 3, 86, 43, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 5, 289, 0, 0, 866, 867, 5, 467, 0, 0, 867, 868, 3, 56, 28, 0, 868, 869, 5, 242, 0, 0, 869, 870, 5, 125, 0, 0, 870, 85, 1, 0, 0, 0, 871, 872, 3, 330, 165, 0, 872, 87, 1, 0, 0, 0, 873, 874, 5, 278, 0, 0, 874, 875, 5, 146, 0, 0, 875, 876, 5, 372, 0, 0, 876, 89, 1, 0, 0, 0, 877, 878, 5, 270, 0, 0, 878, 879, 5, 34, 0, 0, 879, 880, 3, 92, 46, 0, 880, 91, 1, 0, 0, 0, 881, 882, 5, 517, 0, 0, 882, 887, 3, 94, 47, 0, 883, 884, 5, 521, 0, 0, 884, 886, 3, 94, 47, 0, 885, 883, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 890, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 890, 891, 5, 518, 0, 0, 891, 93, 1, 0, 0, 0, 892, 905, 3, 52, 26, 0, 893, 894, 5, 517, 0, 0, 894, 899, 3, 96, 48, 0, 895, 896, 5, 521, 0, 0, 896, 898, 3, 96, 48, 0, 897, 895, 1, 0, 0, 0, 898, 901, 1, 0, 0, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 902, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 902, 903, 5, 518, 0, 0, 903, 905, 1, 0, 0, 0, 904, 892, 1, 0, 0, 0, 904, 893, 1, 0, 0, 0, 905, 95, 1, 0, 0, 0, 906, 909, 3, 306, 153, 0, 907, 909, 3, 380, 190, 0, 908, 906, 1, 0, 0, 0, 908, 907, 1, 0, 0, 0, 909, 97, 1, 0, 0, 0, 910, 911, 5, 203, 0, 0, 911, 920, 3, 348, 174, 0, 912, 916, 5, 517, 0, 0, 913, 915, 3, 100, 50, 0, 914, 913, 1, 0, 0, 0, 915, 918, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 919, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 919, 921, 5, 518, 0, 0, 920, 912, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 99, 1, 0, 0, 0, 922, 923, 7, 12, 0, 0, 923, 927, 7, 13, 0, 0, 924, 925, 7, 14, 0, 0, 925, 927, 7, 15, 0, 0, 926, 922, 1, 0, 0, 0, 926, 924, 1, 0, 0, 0, 927, 101, 1, 0, 0, 0, 928, 929, 5, 72, 0, 0, 929, 930, 5, 442, 0, 0, 930, 931, 3, 340, 170, 0, 931, 932, 3, 356, 178, 0, 932, 103, 1, 0, 0, 0, 933, 934, 5, 72, 0, 0, 934, 936, 5, 448, 0, 0, 935, 937, 3, 358, 179, 0, 936, 935, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 941, 3, 344, 172, 0, 939, 940, 5, 59, 0, 0, 940, 942, 5, 538, 0, 0, 941, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 944, 3, 356, 178, 0, 944, 105, 1, 0, 0, 0, 945, 947, 5, 72, 0, 0, 946, 948, 5, 498, 0, 0, 947, 946, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 951, 5, 502, 0, 0, 950, 952, 3, 358, 179, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 955, 3, 352, 176, 0, 954, 956, 3, 56, 28, 0, 955, 954, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 959, 1, 0, 0, 0, 957, 958, 5, 59, 0, 0, 958, 960, 5, 538, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 5, 17, 0, 0, 962, 963, 3, 160, 80, 0, 963, 107, 1, 0, 0, 0, 964, 968, 5, 72, 0, 0, 965, 969, 5, 498, 0, 0, 966, 967, 5, 498, 0, 0, 967, 969, 5, 371, 0, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 5, 153, 0, 0, 971, 973, 3, 358, 179, 0, 972, 971, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 3, 292, 146, 0, 975, 976, 5, 17, 0, 0, 976, 979, 3, 330, 165, 0, 977, 978, 5, 196, 0, 0, 978, 980, 7, 16, 0, 0, 979, 977, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 982, 1, 0, 0, 0, 981, 983, 3, 110, 55, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 109, 1, 0, 0, 0, 984, 985, 5, 413, 0, 0, 985, 986, 5, 464, 0, 0, 986, 992, 3, 112, 56, 0, 987, 988, 5, 521, 0, 0, 988, 989, 5, 464, 0, 0, 989, 991, 3, 112, 56, 0, 990, 987, 1, 0, 0, 0, 991, 994, 1, 0, 0, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 111, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 995, 996, 5, 538, 0, 0, 996, 113, 1, 0, 0, 0, 997, 998, 5, 8, 0, 0, 998, 1000, 5, 374, 0, 0, 999, 1001, 3, 360, 180, 0, 1000, 999, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1008, 3, 348, 174, 0, 1003, 1009, 3, 116, 58, 0, 1004, 1009, 3, 118, 59, 0, 1005, 1009, 3, 120, 60, 0, 1006, 1009, 3, 122, 61, 0, 1007, 1009, 3, 124, 62, 0, 1008, 1003, 1, 0, 0, 0, 1008, 1004, 1, 0, 0, 0, 1008, 1005, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1007, 1, 0, 0, 0, 1009, 115, 1, 0, 0, 0, 1010, 1012, 5, 312, 0, 0, 1011, 1013, 3, 354, 177, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 5, 389, 0, 0, 1015, 1016, 3, 354, 177, 0, 1016, 117, 1, 0, 0, 0, 1017, 1018, 5, 341, 0, 0, 1018, 1019, 3, 362, 181, 0, 1019, 119, 1, 0, 0, 0, 1020, 1021, 5, 438, 0, 0, 1021, 1022, 5, 64, 0, 0, 1022, 1023, 3, 86, 43, 0, 1023, 1024, 5, 289, 0, 0, 1024, 1025, 5, 467, 0, 0, 1025, 1027, 3, 56, 28, 0, 1026, 1028, 3, 126, 63, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 121, 1, 0, 0, 0, 1029, 1030, 5, 116, 0, 0, 1030, 1031, 5, 64, 0, 0, 1031, 1032, 3, 86, 43, 0, 1032, 123, 1, 0, 0, 0, 1033, 1034, 5, 438, 0, 0, 1034, 1035, 5, 404, 0, 0, 1035, 1036, 3, 56, 28, 0, 1036, 125, 1, 0, 0, 0, 1037, 1038, 5, 242, 0, 0, 1038, 1039, 5, 125, 0, 0, 1039, 127, 1, 0, 0, 0, 1040, 1041, 5, 8, 0, 0, 1041, 1042, 5, 502, 0, 0, 1042, 1046, 3, 350, 175, 0, 1043, 1047, 3, 116, 58, 0, 1044, 1045, 5, 17, 0, 0, 1045, 1047, 3, 160, 80, 0, 1046, 1043, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 129, 1, 0, 0, 0, 1048, 1049, 5, 8, 0, 0, 1049, 1050, 5, 448, 0, 0, 1050, 1051, 3, 342, 171, 0, 1051, 1052, 3, 118, 59, 0, 1052, 131, 1, 0, 0, 0, 1053, 1057, 5, 8, 0, 0, 1054, 1058, 5, 498, 0, 0, 1055, 1056, 5, 498, 0, 0, 1056, 1058, 5, 371, 0, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1055, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 5, 153, 0, 0, 1060, 1062, 3, 360, 180, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 3, 294, 147, 0, 1064, 1065, 5, 17, 0, 0, 1065, 1068, 3, 330, 165, 0, 1066, 1067, 5, 196, 0, 0, 1067, 1069, 7, 16, 0, 0, 1068, 1066, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 133, 1, 0, 0, 0, 1070, 1071, 5, 116, 0, 0, 1071, 1073, 5, 442, 0, 0, 1072, 1074, 3, 360, 180, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 3, 338, 169, 0, 1076, 135, 1, 0, 0, 0, 1077, 1079, 5, 116, 0, 0, 1078, 1080, 5, 498, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 5, 374, 0, 0, 1082, 1084, 3, 360, 180, 0, 1083, 1082, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 3, 348, 174, 0, 1086, 137, 1, 0, 0, 0, 1087, 1088, 5, 116, 0, 0, 1088, 1090, 5, 448, 0, 0, 1089, 1091, 3, 360, 180, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 3, 342, 171, 0, 1093, 1095, 7, 17, 0, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 139, 1, 0, 0, 0, 1096, 1098, 5, 116, 0, 0, 1097, 1099, 5, 498, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 5, 502, 0, 0, 1101, 1103, 3, 360, 180, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1105, 3, 350, 175, 0, 1105, 141, 1, 0, 0, 0, 1106, 1110, 5, 116, 0, 0, 1107, 1111, 5, 498, 0, 0, 1108, 1109, 5, 498, 0, 0, 1109, 1111, 5, 371, 0, 0, 1110, 1107, 1, 0, 0, 0, 1110, 1108, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 5, 153, 0, 0, 1113, 1115, 3, 360, 180, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 3, 294, 147, 0, 1117, 143, 1, 0, 0, 0, 1118, 1120, 5, 132, 0, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1126, 3, 146, 73, 0, 1122, 1126, 3, 156, 78, 0, 1123, 1124, 5, 132, 0, 0, 1124, 1126, 3, 158, 79, 0, 1125, 1119, 1, 0, 0, 0, 1125, 1122, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1126, 145, 1, 0, 0, 0, 1127, 1128, 5, 177, 0, 0, 1128, 1129, 7, 18, 0, 0, 1129, 1138, 3, 348, 174, 0, 1130, 1132, 3, 148, 74, 0, 1131, 1130, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1134, 1, 0, 0, 0, 1133, 1135, 3, 56, 28, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1139, 3, 160, 80, 0, 1137, 1139, 3, 150, 75, 0, 1138, 1131, 1, 0, 0, 0, 1138, 1137, 1, 0, 0, 0, 1139, 147, 1, 0, 0, 0, 1140, 1141, 5, 269, 0, 0, 1141, 1142, 3, 362, 181, 0, 1142, 149, 1, 0, 0, 0, 1143, 1144, 5, 415, 0, 0, 1144, 1149, 3, 152, 76, 0, 1145, 1146, 5, 521, 0, 0, 1146, 1148, 3, 152, 76, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1151, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 151, 1, 0, 0, 0, 1151, 1149, 1, 0, 0, 0, 1152, 1153, 5, 517, 0, 0, 1153, 1158, 3, 154, 77, 0, 1154, 1155, 5, 521, 0, 0, 1155, 1157, 3, 154, 77, 0, 1156, 1154, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1162, 5, 518, 0, 0, 1162, 153, 1, 0, 0, 0, 1163, 1166, 3, 380, 190, 0, 1164, 1166, 3, 288, 144, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1164, 1, 0, 0, 0, 1166, 155, 1, 0, 0, 0, 1167, 1168, 5, 24, 0, 0, 1168, 1169, 5, 355, 0, 0, 1169, 1170, 5, 341, 0, 0, 1170, 1174, 5, 522, 0, 0, 1171, 1172, 3, 146, 73, 0, 1172, 1173, 5, 522, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1171, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 5, 122, 0, 0, 1179, 157, 1, 0, 0, 0, 1180, 1181, 5, 355, 0, 0, 1181, 1182, 5, 341, 0, 0, 1182, 1186, 5, 24, 0, 0, 1183, 1184, 3, 146, 73, 0, 1184, 1185, 5, 522, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1183, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, 5, 122, 0, 0, 1191, 159, 1, 0, 0, 0, 1192, 1193, 6, 80, -1, 0, 1193, 1216, 3, 162, 81, 0, 1194, 1195, 3, 164, 82, 0, 1195, 1196, 3, 160, 80, 5, 1196, 1216, 1, 0, 0, 0, 1197, 1198, 5, 517, 0, 0, 1198, 1199, 3, 160, 80, 0, 1199, 1200, 5, 518, 0, 0, 1200, 1216, 1, 0, 0, 0, 1201, 1203, 3, 172, 86, 0, 1202, 1204, 3, 250, 125, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 1, 0, 0, 0, 1205, 1207, 3, 254, 127, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1216, 1, 0, 0, 0, 1208, 1210, 3, 170, 85, 0, 1209, 1211, 3, 250, 125, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1214, 3, 254, 127, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1216, 1, 0, 0, 0, 1215, 1192, 1, 0, 0, 0, 1215, 1194, 1, 0, 0, 0, 1215, 1197, 1, 0, 0, 0, 1215, 1201, 1, 0, 0, 0, 1215, 1208, 1, 0, 0, 0, 1216, 1231, 1, 0, 0, 0, 1217, 1218, 10, 3, 0, 0, 1218, 1220, 7, 19, 0, 0, 1219, 1221, 5, 5, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 3, 160, 80, 0, 1223, 1225, 3, 250, 125, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1228, 3, 254, 127, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1217, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 161, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1235, 5, 415, 0, 0, 1235, 1240, 3, 278, 139, 0, 1236, 1237, 5, 521, 0, 0, 1237, 1239, 3, 278, 139, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1242, 1, 0, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 163, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1244, 5, 434, 0, 0, 1244, 1249, 3, 166, 83, 0, 1245, 1246, 5, 521, 0, 0, 1246, 1248, 3, 166, 83, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1251, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 165, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1264, 3, 168, 84, 0, 1253, 1254, 5, 517, 0, 0, 1254, 1259, 3, 52, 26, 0, 1255, 1256, 5, 521, 0, 0, 1256, 1258, 3, 52, 26, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1262, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1263, 5, 518, 0, 0, 1263, 1265, 1, 0, 0, 0, 1264, 1253, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1267, 5, 17, 0, 0, 1267, 1268, 5, 517, 0, 0, 1268, 1269, 3, 160, 80, 0, 1269, 1270, 5, 518, 0, 0, 1270, 167, 1, 0, 0, 0, 1271, 1272, 3, 330, 165, 0, 1272, 169, 1, 0, 0, 0, 1273, 1275, 3, 172, 86, 0, 1274, 1276, 3, 192, 96, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1278, 1, 0, 0, 0, 1277, 1279, 3, 224, 112, 0, 1278, 1277, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1282, 3, 226, 113, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1285, 3, 240, 120, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1288, 3, 242, 121, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1294, 1, 0, 0, 0, 1289, 1290, 3, 172, 86, 0, 1290, 1291, 3, 192, 96, 0, 1291, 1292, 3, 248, 124, 0, 1292, 1294, 1, 0, 0, 0, 1293, 1273, 1, 0, 0, 0, 1293, 1289, 1, 0, 0, 0, 1294, 171, 1, 0, 0, 0, 1295, 1297, 5, 337, 0, 0, 1296, 1298, 3, 390, 195, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 3, 174, 87, 0, 1300, 173, 1, 0, 0, 0, 1301, 1306, 3, 176, 88, 0, 1302, 1303, 5, 521, 0, 0, 1303, 1305, 3, 176, 88, 0, 1304, 1302, 1, 0, 0, 0, 1305, 1308, 1, 0, 0, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 175, 1, 0, 0, 0, 1308, 1306, 1, 0, 0, 0, 1309, 1331, 3, 178, 89, 0, 1310, 1316, 3, 182, 91, 0, 1311, 1317, 3, 184, 92, 0, 1312, 1314, 5, 17, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 3, 278, 139, 0, 1316, 1311, 1, 0, 0, 0, 1316, 1313, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1331, 1, 0, 0, 0, 1318, 1320, 3, 188, 94, 0, 1319, 1321, 3, 184, 92, 0, 1320, 1319, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1331, 1, 0, 0, 0, 1322, 1328, 3, 180, 90, 0, 1323, 1329, 3, 184, 92, 0, 1324, 1326, 5, 17, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 3, 52, 26, 0, 1328, 1323, 1, 0, 0, 0, 1328, 1325, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1309, 1, 0, 0, 0, 1330, 1310, 1, 0, 0, 0, 1330, 1318, 1, 0, 0, 0, 1330, 1322, 1, 0, 0, 0, 1331, 177, 1, 0, 0, 0, 1332, 1333, 3, 190, 95, 0, 1333, 179, 1, 0, 0, 0, 1334, 1335, 3, 278, 139, 0, 1335, 181, 1, 0, 0, 0, 1336, 1337, 3, 52, 26, 0, 1337, 183, 1, 0, 0, 0, 1338, 1340, 5, 17, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 3, 330, 165, 0, 1342, 185, 1, 0, 0, 0, 1343, 1359, 3, 190, 95, 0, 1344, 1349, 3, 278, 139, 0, 1345, 1347, 5, 17, 0, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1350, 3, 52, 26, 0, 1349, 1346, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1359, 1, 0, 0, 0, 1351, 1356, 3, 52, 26, 0, 1352, 1354, 5, 17, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 3, 278, 139, 0, 1356, 1353, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1359, 1, 0, 0, 0, 1358, 1343, 1, 0, 0, 0, 1358, 1344, 1, 0, 0, 0, 1358, 1351, 1, 0, 0, 0, 1359, 187, 1, 0, 0, 0, 1360, 1365, 3, 330, 165, 0, 1361, 1362, 5, 514, 0, 0, 1362, 1364, 3, 330, 165, 0, 1363, 1361, 1, 0, 0, 0, 1364, 1367, 1, 0, 0, 0, 1365, 1363, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1368, 1, 0, 0, 0, 1367, 1365, 1, 0, 0, 0, 1368, 1369, 5, 514, 0, 0, 1369, 1371, 1, 0, 0, 0, 1370, 1360, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 5, 528, 0, 0, 1373, 189, 1, 0, 0, 0, 1374, 1375, 3, 290, 145, 0, 1375, 1376, 5, 263, 0, 0, 1376, 1377, 3, 246, 123, 0, 1377, 1378, 5, 17, 0, 0, 1378, 1379, 3, 330, 165, 0, 1379, 1387, 1, 0, 0, 0, 1380, 1381, 3, 290, 145, 0, 1381, 1382, 5, 263, 0, 0, 1382, 1383, 3, 322, 161, 0, 1383, 1384, 5, 17, 0, 0, 1384, 1385, 3, 330, 165, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1374, 1, 0, 0, 0, 1386, 1380, 1, 0, 0, 0, 1387, 191, 1, 0, 0, 0, 1388, 1389, 5, 151, 0, 0, 1389, 1390, 3, 194, 97, 0, 1390, 193, 1, 0, 0, 0, 1391, 1392, 6, 97, -1, 0, 1392, 1397, 3, 196, 98, 0, 1393, 1394, 5, 521, 0, 0, 1394, 1396, 3, 196, 98, 0, 1395, 1393, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1403, 1, 0, 0, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1403, 3, 208, 104, 0, 1401, 1403, 3, 210, 105, 0, 1402, 1391, 1, 0, 0, 0, 1402, 1400, 1, 0, 0, 0, 1402, 1401, 1, 0, 0, 0, 1403, 1425, 1, 0, 0, 0, 1404, 1405, 10, 3, 0, 0, 1405, 1406, 5, 73, 0, 0, 1406, 1407, 5, 185, 0, 0, 1407, 1424, 3, 194, 97, 4, 1408, 1410, 10, 4, 0, 0, 1409, 1411, 5, 234, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1413, 1, 0, 0, 0, 1412, 1414, 7, 20, 0, 0, 1413, 1412, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1417, 5, 262, 0, 0, 1416, 1415, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 5, 185, 0, 0, 1419, 1421, 3, 194, 97, 0, 1420, 1422, 3, 222, 111, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1404, 1, 0, 0, 0, 1423, 1408, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 195, 1, 0, 0, 0, 1427, 1425, 1, 0, 0, 0, 1428, 1430, 3, 198, 99, 0, 1429, 1431, 3, 320, 160, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 197, 1, 0, 0, 0, 1432, 1434, 5, 374, 0, 0, 1433, 1432, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1437, 3, 348, 174, 0, 1436, 1438, 3, 204, 102, 0, 1437, 1436, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1446, 1, 0, 0, 0, 1439, 1441, 3, 350, 175, 0, 1440, 1442, 3, 204, 102, 0, 1441, 1440, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1446, 1, 0, 0, 0, 1443, 1446, 3, 200, 100, 0, 1444, 1446, 3, 202, 101, 0, 1445, 1433, 1, 0, 0, 0, 1445, 1439, 1, 0, 0, 0, 1445, 1443, 1, 0, 0, 0, 1445, 1444, 1, 0, 0, 0, 1446, 199, 1, 0, 0, 0, 1447, 1448, 5, 199, 0, 0, 1448, 1449, 5, 374, 0, 0, 1449, 1450, 5, 517, 0, 0, 1450, 1451, 3, 288, 144, 0, 1451, 1452, 5, 518, 0, 0, 1452, 201, 1, 0, 0, 0, 1453, 1455, 5, 199, 0, 0, 1454, 1453, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1457, 5, 517, 0, 0, 1457, 1458, 3, 160, 80, 0, 1458, 1459, 5, 518, 0, 0, 1459, 1466, 1, 0, 0, 0, 1460, 1461, 5, 406, 0, 0, 1461, 1462, 5, 517, 0, 0, 1462, 1463, 3, 278, 139, 0, 1463, 1464, 5, 518, 0, 0, 1464, 1466, 1, 0, 0, 0, 1465, 1454, 1, 0, 0, 0, 1465, 1460, 1, 0, 0, 0, 1466, 203, 1, 0, 0, 0, 1467, 1468, 5, 146, 0, 0, 1468, 1469, 5, 372, 0, 0, 1469, 1470, 5, 17, 0, 0, 1470, 1471, 5, 250, 0, 0, 1471, 1472, 3, 206, 103, 0, 1472, 205, 1, 0, 0, 0, 1473, 1474, 3, 278, 139, 0, 1474, 207, 1, 0, 0, 0, 1475, 1476, 5, 517, 0, 0, 1476, 1477, 3, 150, 75, 0, 1477, 1478, 5, 518, 0, 0, 1478, 1479, 3, 320, 160, 0, 1479, 209, 1, 0, 0, 0, 1480, 1481, 5, 374, 0, 0, 1481, 1482, 5, 517, 0, 0, 1482, 1483, 3, 212, 106, 0, 1483, 1484, 5, 518, 0, 0, 1484, 211, 1, 0, 0, 0, 1485, 1486, 3, 214, 107, 0, 1486, 1487, 5, 517, 0, 0, 1487, 1492, 3, 216, 108, 0, 1488, 1489, 5, 521, 0, 0, 1489, 1491, 3, 216, 108, 0, 1490, 1488, 1, 0, 0, 0, 1491, 1494, 1, 0, 0, 0, 1492, 1490, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1495, 1, 0, 0, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1496, 5, 518, 0, 0, 1496, 213, 1, 0, 0, 0, 1497, 1498, 7, 21, 0, 0, 1498, 215, 1, 0, 0, 0, 1499, 1500, 5, 374, 0, 0, 1500, 1515, 3, 238, 119, 0, 1501, 1515, 3, 220, 110, 0, 1502, 1515, 3, 308, 154, 0, 1503, 1504, 5, 447, 0, 0, 1504, 1505, 5, 537, 0, 0, 1505, 1506, 5, 374, 0, 0, 1506, 1515, 3, 238, 119, 0, 1507, 1508, 5, 499, 0, 0, 1508, 1509, 5, 537, 0, 0, 1509, 1515, 3, 220, 110, 0, 1510, 1511, 3, 218, 109, 0, 1511, 1512, 5, 537, 0, 0, 1512, 1513, 3, 308, 154, 0, 1513, 1515, 1, 0, 0, 0, 1514, 1499, 1, 0, 0, 0, 1514, 1501, 1, 0, 0, 0, 1514, 1502, 1, 0, 0, 0, 1514, 1503, 1, 0, 0, 0, 1514, 1507, 1, 0, 0, 0, 1514, 1510, 1, 0, 0, 0, 1515, 217, 1, 0, 0, 0, 1516, 1517, 7, 22, 0, 0, 1517, 219, 1, 0, 0, 0, 1518, 1519, 5, 452, 0, 0, 1519, 1520, 5, 517, 0, 0, 1520, 1521, 3, 52, 26, 0, 1521, 1522, 5, 518, 0, 0, 1522, 221, 1, 0, 0, 0, 1523, 1524, 5, 254, 0, 0, 1524, 1528, 3, 280, 140, 0, 1525, 1526, 5, 413, 0, 0, 1526, 1528, 3, 56, 28, 0, 1527, 1523, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1528, 223, 1, 0, 0, 0, 1529, 1530, 5, 431, 0, 0, 1530, 1531, 3, 280, 140, 0, 1531, 225, 1, 0, 0, 0, 1532, 1533, 5, 159, 0, 0, 1533, 1534, 5, 34, 0, 0, 1534, 1539, 3, 228, 114, 0, 1535, 1536, 5, 521, 0, 0, 1536, 1538, 3, 228, 114, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 227, 1, 0, 0, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1583, 3, 52, 26, 0, 1543, 1583, 3, 234, 117, 0, 1544, 1545, 5, 517, 0, 0, 1545, 1583, 5, 518, 0, 0, 1546, 1547, 5, 517, 0, 0, 1547, 1552, 3, 278, 139, 0, 1548, 1549, 5, 521, 0, 0, 1549, 1551, 3, 278, 139, 0, 1550, 1548, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 1, 0, 0, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1556, 5, 518, 0, 0, 1556, 1583, 1, 0, 0, 0, 1557, 1558, 3, 232, 116, 0, 1558, 1559, 5, 517, 0, 0, 1559, 1564, 3, 278, 139, 0, 1560, 1561, 5, 521, 0, 0, 1561, 1563, 3, 278, 139, 0, 1562, 1560, 1, 0, 0, 0, 1563, 1566, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1567, 1, 0, 0, 0, 1566, 1564, 1, 0, 0, 0, 1567, 1568, 5, 518, 0, 0, 1568, 1583, 1, 0, 0, 0, 1569, 1570, 3, 230, 115, 0, 1570, 1571, 5, 517, 0, 0, 1571, 1576, 3, 228, 114, 0, 1572, 1573, 5, 521, 0, 0, 1573, 1575, 3, 228, 114, 0, 1574, 1572, 1, 0, 0, 0, 1575, 1578, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 1, 0, 0, 0, 1578, 1576, 1, 0, 0, 0, 1579, 1580, 5, 518, 0, 0, 1580, 1583, 1, 0, 0, 0, 1581, 1583, 3, 278, 139, 0, 1582, 1542, 1, 0, 0, 0, 1582, 1543, 1, 0, 0, 0, 1582, 1544, 1, 0, 0, 0, 1582, 1546, 1, 0, 0, 0, 1582, 1557, 1, 0, 0, 0, 1582, 1569, 1, 0, 0, 0, 1582, 1581, 1, 0, 0, 0, 1583, 229, 1, 0, 0, 0, 1584, 1585, 5, 160, 0, 0, 1585, 1586, 5, 494, 0, 0, 1586, 231, 1, 0, 0, 0, 1587, 1588, 7, 23, 0, 0, 1588, 233, 1, 0, 0, 0, 1589, 1590, 3, 236, 118, 0, 1590, 1591, 5, 517, 0, 0, 1591, 1592, 3, 238, 119, 0, 1592, 1593, 5, 521, 0, 0, 1593, 1594, 3, 308, 154, 0, 1594, 1595, 5, 518, 0, 0, 1595, 235, 1, 0, 0, 0, 1596, 1597, 7, 24, 0, 0, 1597, 237, 1, 0, 0, 0, 1598, 1599, 3, 354, 177, 0, 1599, 239, 1, 0, 0, 0, 1600, 1601, 5, 163, 0, 0, 1601, 1602, 3, 280, 140, 0, 1602, 241, 1, 0, 0, 0, 1603, 1604, 5, 433, 0, 0, 1604, 1609, 3, 244, 122, 0, 1605, 1606, 5, 521, 0, 0, 1606, 1608, 3, 244, 122, 0, 1607, 1605, 1, 0, 0, 0, 1608, 1611, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 243, 1, 0, 0, 0, 1611, 1609, 1, 0, 0, 0, 1612, 1613, 3, 322, 161, 0, 1613, 1614, 5, 17, 0, 0, 1614, 1615, 3, 246, 123, 0, 1615, 245, 1, 0, 0, 0, 1616, 1618, 3, 322, 161, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1621, 5, 517, 0, 0, 1620, 1622, 3, 256, 128, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1625, 3, 250, 125, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1627, 1, 0, 0, 0, 1626, 1628, 3, 272, 136, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 518, 0, 0, 1630, 247, 1, 0, 0, 0, 1631, 1632, 5, 214, 0, 0, 1632, 1634, 5, 517, 0, 0, 1633, 1635, 3, 256, 128, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1638, 3, 250, 125, 0, 1637, 1636, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1640, 1, 0, 0, 0, 1639, 1641, 3, 260, 130, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1644, 3, 266, 133, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1646, 1, 0, 0, 0, 1645, 1647, 3, 268, 134, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1650, 3, 262, 131, 0, 1649, 1648, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 3, 270, 135, 0, 1652, 1657, 5, 518, 0, 0, 1653, 1655, 5, 17, 0, 0, 1654, 1653, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1658, 3, 330, 165, 0, 1657, 1654, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 249, 1, 0, 0, 0, 1659, 1660, 5, 259, 0, 0, 1660, 1661, 5, 34, 0, 0, 1661, 1666, 3, 252, 126, 0, 1662, 1663, 5, 521, 0, 0, 1663, 1665, 3, 252, 126, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1668, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 251, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 1671, 3, 52, 26, 0, 1670, 1672, 7, 25, 0, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1675, 1, 0, 0, 0, 1673, 1674, 5, 477, 0, 0, 1674, 1676, 7, 26, 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 253, 1, 0, 0, 0, 1677, 1680, 5, 205, 0, 0, 1678, 1681, 5, 5, 0, 0, 1679, 1681, 3, 278, 139, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1679, 1, 0, 0, 0, 1681, 255, 1, 0, 0, 0, 1682, 1683, 5, 269, 0, 0, 1683, 1686, 5, 34, 0, 0, 1684, 1687, 3, 52, 26, 0, 1685, 1687, 3, 290, 145, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1685, 1, 0, 0, 0, 1687, 1695, 1, 0, 0, 0, 1688, 1691, 5, 521, 0, 0, 1689, 1692, 3, 52, 26, 0, 1690, 1692, 3, 290, 145, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1690, 1, 0, 0, 0, 1692, 1694, 1, 0, 0, 0, 1693, 1688, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 257, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1715, 5, 528, 0, 0, 1699, 1715, 5, 531, 0, 0, 1700, 1715, 5, 536, 0, 0, 1701, 1702, 5, 519, 0, 0, 1702, 1703, 5, 539, 0, 0, 1703, 1704, 5, 521, 0, 0, 1704, 1705, 5, 539, 0, 0, 1705, 1715, 5, 520, 0, 0, 1706, 1707, 5, 519, 0, 0, 1707, 1708, 5, 539, 0, 0, 1708, 1709, 5, 521, 0, 0, 1709, 1715, 5, 520, 0, 0, 1710, 1711, 5, 519, 0, 0, 1711, 1712, 5, 521, 0, 0, 1712, 1713, 5, 539, 0, 0, 1713, 1715, 5, 520, 0, 0, 1714, 1698, 1, 0, 0, 0, 1714, 1699, 1, 0, 0, 0, 1714, 1700, 1, 0, 0, 0, 1714, 1701, 1, 0, 0, 0, 1714, 1706, 1, 0, 0, 0, 1714, 1710, 1, 0, 0, 0, 1715, 259, 1, 0, 0, 0, 1716, 1717, 5, 216, 0, 0, 1717, 1722, 3, 186, 93, 0, 1718, 1719, 5, 521, 0, 0, 1719, 1721, 3, 186, 93, 0, 1720, 1718, 1, 0, 0, 0, 1721, 1724, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 261, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1725, 1726, 5, 272, 0, 0, 1726, 1728, 5, 517, 0, 0, 1727, 1729, 3, 264, 132, 0, 1728, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1728, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1734, 5, 518, 0, 0, 1733, 1735, 3, 276, 138, 0, 1734, 1733, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 263, 1, 0, 0, 0, 1736, 1738, 3, 332, 166, 0, 1737, 1739, 3, 258, 129, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 265, 1, 0, 0, 0, 1740, 1741, 5, 5, 0, 0, 1741, 1742, 5, 323, 0, 0, 1742, 1743, 5, 273, 0, 0, 1743, 1749, 5, 211, 0, 0, 1744, 1745, 5, 255, 0, 0, 1745, 1746, 5, 322, 0, 0, 1746, 1747, 5, 273, 0, 0, 1747, 1749, 5, 211, 0, 0, 1748, 1740, 1, 0, 0, 0, 1748, 1744, 1, 0, 0, 0, 1749, 267, 1, 0, 0, 0, 1750, 1751, 5, 439, 0, 0, 1751, 1752, 5, 211, 0, 0, 1752, 1753, 5, 344, 0, 0, 1753, 1754, 5, 479, 0, 0, 1754, 1755, 5, 468, 0, 0, 1755, 1775, 5, 322, 0, 0, 1756, 1757, 5, 439, 0, 0, 1757, 1758, 5, 211, 0, 0, 1758, 1759, 5, 344, 0, 0, 1759, 1760, 5, 389, 0, 0, 1760, 1761, 5, 238, 0, 0, 1761, 1775, 5, 322, 0, 0, 1762, 1763, 5, 439, 0, 0, 1763, 1764, 5, 211, 0, 0, 1764, 1765, 5, 344, 0, 0, 1765, 1766, 5, 389, 0, 0, 1766, 1767, 5, 468, 0, 0, 1767, 1775, 3, 332, 166, 0, 1768, 1769, 5, 439, 0, 0, 1769, 1770, 5, 211, 0, 0, 1770, 1771, 5, 344, 0, 0, 1771, 1772, 5, 389, 0, 0, 1772, 1773, 5, 458, 0, 0, 1773, 1775, 3, 332, 166, 0, 1774, 1750, 1, 0, 0, 0, 1774, 1756, 1, 0, 0, 0, 1774, 1762, 1, 0, 0, 0, 1774, 1768, 1, 0, 0, 0, 1775, 269, 1, 0, 0, 0, 1776, 1777, 5, 105, 0, 0, 1777, 1782, 3, 186, 93, 0, 1778, 1779, 5, 521, 0, 0, 1779, 1781, 3, 186, 93, 0, 1780, 1778, 1, 0, 0, 0, 1781, 1784, 1, 0, 0, 0, 1782, 1780, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 271, 1, 0, 0, 0, 1784, 1782, 1, 0, 0, 0, 1785, 1786, 5, 293, 0, 0, 1786, 1787, 5, 27, 0, 0, 1787, 1788, 3, 308, 154, 0, 1788, 1789, 3, 274, 137, 0, 1789, 1795, 1, 0, 0, 0, 1790, 1791, 5, 323, 0, 0, 1791, 1792, 5, 27, 0, 0, 1792, 1793, 5, 539, 0, 0, 1793, 1795, 3, 274, 137, 0, 1794, 1785, 1, 0, 0, 0, 1794, 1790, 1, 0, 0, 0, 1795, 273, 1, 0, 0, 0, 1796, 1797, 5, 481, 0, 0, 1797, 1798, 5, 10, 0, 0, 1798, 1799, 5, 76, 0, 0, 1799, 1800, 5, 322, 0, 0, 1800, 275, 1, 0, 0, 0, 1801, 1802, 5, 435, 0, 0, 1802, 1803, 3, 308, 154, 0, 1803, 277, 1, 0, 0, 0, 1804, 1805, 3, 280, 140, 0, 1805, 279, 1, 0, 0, 0, 1806, 1807, 6, 140, -1, 0, 1807, 1808, 5, 242, 0, 0, 1808, 1819, 3, 280, 140, 6, 1809, 1810, 5, 133, 0, 0, 1810, 1811, 5, 517, 0, 0, 1811, 1812, 3, 160, 80, 0, 1812, 1813, 5, 518, 0, 0, 1813, 1819, 1, 0, 0, 0, 1814, 1816, 3, 286, 143, 0, 1815, 1817, 3, 282, 141, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1819, 1, 0, 0, 0, 1818, 1806, 1, 0, 0, 0, 1818, 1809, 1, 0, 0, 0, 1818, 1814, 1, 0, 0, 0, 1819, 1834, 1, 0, 0, 0, 1820, 1821, 10, 3, 0, 0, 1821, 1822, 5, 10, 0, 0, 1822, 1833, 3, 280, 140, 4, 1823, 1824, 10, 2, 0, 0, 1824, 1825, 5, 258, 0, 0, 1825, 1833, 3, 280, 140, 3, 1826, 1827, 10, 1, 0, 0, 1827, 1829, 5, 184, 0, 0, 1828, 1830, 5, 242, 0, 0, 1829, 1828, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 7, 27, 0, 0, 1832, 1820, 1, 0, 0, 0, 1832, 1823, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1833, 1836, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 281, 1, 0, 0, 0, 1836, 1834, 1, 0, 0, 0, 1837, 1839, 5, 242, 0, 0, 1838, 1837, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1842, 5, 27, 0, 0, 1841, 1843, 7, 28, 0, 0, 1842, 1841, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1845, 3, 286, 143, 0, 1845, 1846, 5, 10, 0, 0, 1846, 1847, 3, 286, 143, 0, 1847, 1912, 1, 0, 0, 0, 1848, 1850, 5, 242, 0, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1852, 5, 170, 0, 0, 1852, 1853, 5, 517, 0, 0, 1853, 1858, 3, 278, 139, 0, 1854, 1855, 5, 521, 0, 0, 1855, 1857, 3, 278, 139, 0, 1856, 1854, 1, 0, 0, 0, 1857, 1860, 1, 0, 0, 0, 1858, 1856, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1861, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1862, 5, 518, 0, 0, 1862, 1912, 1, 0, 0, 0, 1863, 1865, 5, 242, 0, 0, 1864, 1863, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 5, 170, 0, 0, 1867, 1868, 5, 517, 0, 0, 1868, 1869, 3, 160, 80, 0, 1869, 1870, 5, 518, 0, 0, 1870, 1912, 1, 0, 0, 0, 1871, 1872, 5, 133, 0, 0, 1872, 1873, 5, 517, 0, 0, 1873, 1874, 3, 160, 80, 0, 1874, 1875, 5, 518, 0, 0, 1875, 1912, 1, 0, 0, 0, 1876, 1878, 5, 242, 0, 0, 1877, 1876, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 5, 319, 0, 0, 1880, 1912, 3, 286, 143, 0, 1881, 1912, 3, 284, 142, 0, 1882, 1884, 5, 184, 0, 0, 1883, 1885, 5, 242, 0, 0, 1884, 1883, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1912, 7, 27, 0, 0, 1887, 1889, 5, 184, 0, 0, 1888, 1890, 5, 242, 0, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 5, 113, 0, 0, 1892, 1893, 5, 151, 0, 0, 1893, 1912, 3, 286, 143, 0, 1894, 1896, 5, 242, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1898, 5, 343, 0, 0, 1898, 1899, 5, 389, 0, 0, 1899, 1902, 3, 286, 143, 0, 1900, 1901, 5, 127, 0, 0, 1901, 1903, 3, 384, 192, 0, 1902, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1912, 1, 0, 0, 0, 1904, 1905, 5, 184, 0, 0, 1905, 1909, 5, 186, 0, 0, 1906, 1910, 5, 414, 0, 0, 1907, 1910, 5, 13, 0, 0, 1908, 1910, 3, 330, 165, 0, 1909, 1906, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1912, 1, 0, 0, 0, 1911, 1838, 1, 0, 0, 0, 1911, 1849, 1, 0, 0, 0, 1911, 1864, 1, 0, 0, 0, 1911, 1871, 1, 0, 0, 0, 1911, 1877, 1, 0, 0, 0, 1911, 1881, 1, 0, 0, 0, 1911, 1882, 1, 0, 0, 0, 1911, 1887, 1, 0, 0, 0, 1911, 1895, 1, 0, 0, 0, 1911, 1904, 1, 0, 0, 0, 1912, 283, 1, 0, 0, 0, 1913, 1915, 5, 242, 0, 0, 1914, 1913, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 5, 203, 0, 0, 1917, 1931, 7, 29, 0, 0, 1918, 1919, 5, 517, 0, 0, 1919, 1932, 5, 518, 0, 0, 1920, 1921, 5, 517, 0, 0, 1921, 1926, 3, 278, 139, 0, 1922, 1923, 5, 521, 0, 0, 1923, 1925, 3, 278, 139, 0, 1924, 1922, 1, 0, 0, 0, 1925, 1928, 1, 0, 0, 0, 1926, 1924, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1929, 1, 0, 0, 0, 1928, 1926, 1, 0, 0, 0, 1929, 1930, 5, 518, 0, 0, 1930, 1932, 1, 0, 0, 0, 1931, 1918, 1, 0, 0, 0, 1931, 1920, 1, 0, 0, 0, 1932, 1943, 1, 0, 0, 0, 1933, 1935, 5, 242, 0, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 203, 0, 0, 1937, 1940, 3, 286, 143, 0, 1938, 1939, 5, 127, 0, 0, 1939, 1941, 3, 384, 192, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1943, 1, 0, 0, 0, 1942, 1914, 1, 0, 0, 0, 1942, 1934, 1, 0, 0, 0, 1943, 285, 1, 0, 0, 0, 1944, 1945, 6, 143, -1, 0, 1945, 1949, 3, 290, 145, 0, 1946, 1947, 7, 30, 0, 0, 1947, 1949, 3, 286, 143, 7, 1948, 1944, 1, 0, 0, 0, 1948, 1946, 1, 0, 0, 0, 1949, 1971, 1, 0, 0, 0, 1950, 1951, 10, 6, 0, 0, 1951, 1952, 7, 31, 0, 0, 1952, 1970, 3, 286, 143, 7, 1953, 1954, 10, 5, 0, 0, 1954, 1955, 7, 32, 0, 0, 1955, 1970, 3, 286, 143, 6, 1956, 1957, 10, 4, 0, 0, 1957, 1958, 5, 512, 0, 0, 1958, 1970, 3, 286, 143, 5, 1959, 1960, 10, 3, 0, 0, 1960, 1961, 5, 513, 0, 0, 1961, 1970, 3, 286, 143, 4, 1962, 1963, 10, 2, 0, 0, 1963, 1964, 5, 511, 0, 0, 1964, 1970, 3, 286, 143, 3, 1965, 1966, 10, 1, 0, 0, 1966, 1967, 3, 372, 186, 0, 1967, 1968, 3, 286, 143, 2, 1968, 1970, 1, 0, 0, 0, 1969, 1950, 1, 0, 0, 0, 1969, 1953, 1, 0, 0, 0, 1969, 1956, 1, 0, 0, 0, 1969, 1959, 1, 0, 0, 0, 1969, 1962, 1, 0, 0, 0, 1969, 1965, 1, 0, 0, 0, 1970, 1973, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 287, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1994, 3, 398, 199, 0, 1975, 1994, 3, 296, 148, 0, 1976, 1977, 3, 298, 149, 0, 1977, 1989, 5, 517, 0, 0, 1978, 1980, 3, 390, 195, 0, 1979, 1978, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1986, 3, 300, 150, 0, 1982, 1983, 5, 521, 0, 0, 1983, 1985, 3, 300, 150, 0, 1984, 1982, 1, 0, 0, 0, 1985, 1988, 1, 0, 0, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1990, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1979, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1992, 5, 518, 0, 0, 1992, 1994, 1, 0, 0, 0, 1993, 1974, 1, 0, 0, 0, 1993, 1975, 1, 0, 0, 0, 1993, 1976, 1, 0, 0, 0, 1994, 289, 1, 0, 0, 0, 1995, 1996, 6, 145, -1, 0, 1996, 1998, 5, 40, 0, 0, 1997, 1999, 3, 336, 168, 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, 2004, 1, 0, 0, 0, 2002, 2003, 5, 120, 0, 0, 2003, 2005, 3, 278, 139, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 5, 122, 0, 0, 2007, 2071, 1, 0, 0, 0, 2008, 2009, 5, 40, 0, 0, 2009, 2011, 3, 278, 139, 0, 2010, 2012, 3, 336, 168, 0, 2011, 2010, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2017, 1, 0, 0, 0, 2015, 2016, 5, 120, 0, 0, 2016, 2018, 3, 278, 139, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2020, 5, 122, 0, 0, 2020, 2071, 1, 0, 0, 0, 2021, 2022, 5, 41, 0, 0, 2022, 2023, 5, 517, 0, 0, 2023, 2024, 3, 278, 139, 0, 2024, 2025, 5, 17, 0, 0, 2025, 2026, 3, 58, 29, 0, 2026, 2027, 5, 518, 0, 0, 2027, 2071, 1, 0, 0, 0, 2028, 2029, 5, 458, 0, 0, 2029, 2030, 5, 517, 0, 0, 2030, 2033, 3, 278, 139, 0, 2031, 2032, 5, 462, 0, 0, 2032, 2034, 5, 477, 0, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2036, 5, 518, 0, 0, 2036, 2071, 1, 0, 0, 0, 2037, 2038, 5, 468, 0, 0, 2038, 2039, 5, 517, 0, 0, 2039, 2042, 3, 278, 139, 0, 2040, 2041, 5, 462, 0, 0, 2041, 2043, 5, 477, 0, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 5, 518, 0, 0, 2045, 2071, 1, 0, 0, 0, 2046, 2047, 5, 282, 0, 0, 2047, 2048, 5, 517, 0, 0, 2048, 2049, 3, 286, 143, 0, 2049, 2050, 5, 170, 0, 0, 2050, 2051, 3, 286, 143, 0, 2051, 2052, 5, 518, 0, 0, 2052, 2071, 1, 0, 0, 0, 2053, 2071, 3, 380, 190, 0, 2054, 2071, 5, 528, 0, 0, 2055, 2056, 3, 354, 177, 0, 2056, 2057, 5, 514, 0, 0, 2057, 2058, 5, 528, 0, 0, 2058, 2071, 1, 0, 0, 0, 2059, 2060, 5, 517, 0, 0, 2060, 2061, 3, 160, 80, 0, 2061, 2062, 5, 518, 0, 0, 2062, 2071, 1, 0, 0, 0, 2063, 2071, 3, 288, 144, 0, 2064, 2071, 3, 54, 27, 0, 2065, 2071, 3, 302, 151, 0, 2066, 2067, 5, 517, 0, 0, 2067, 2068, 3, 278, 139, 0, 2068, 2069, 5, 518, 0, 0, 2069, 2071, 1, 0, 0, 0, 2070, 1995, 1, 0, 0, 0, 2070, 2008, 1, 0, 0, 0, 2070, 2021, 1, 0, 0, 0, 2070, 2028, 1, 0, 0, 0, 2070, 2037, 1, 0, 0, 0, 2070, 2046, 1, 0, 0, 0, 2070, 2053, 1, 0, 0, 0, 2070, 2054, 1, 0, 0, 0, 2070, 2055, 1, 0, 0, 0, 2070, 2059, 1, 0, 0, 0, 2070, 2063, 1, 0, 0, 0, 2070, 2064, 1, 0, 0, 0, 2070, 2065, 1, 0, 0, 0, 2070, 2066, 1, 0, 0, 0, 2071, 2079, 1, 0, 0, 0, 2072, 2073, 10, 4, 0, 0, 2073, 2074, 5, 515, 0, 0, 2074, 2075, 3, 286, 143, 0, 2075, 2076, 5, 516, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2072, 1, 0, 0, 0, 2078, 2081, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 291, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2083, 3, 354, 177, 0, 2083, 293, 1, 0, 0, 0, 2084, 2089, 3, 402, 201, 0, 2085, 2089, 3, 398, 199, 0, 2086, 2089, 3, 400, 200, 0, 2087, 2089, 3, 354, 177, 0, 2088, 2084, 1, 0, 0, 0, 2088, 2085, 1, 0, 0, 0, 2088, 2086, 1, 0, 0, 0, 2088, 2087, 1, 0, 0, 0, 2089, 295, 1, 0, 0, 0, 2090, 2091, 3, 400, 200, 0, 2091, 2092, 5, 538, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2095, 3, 308, 154, 0, 2094, 2090, 1, 0, 0, 0, 2094, 2093, 1, 0, 0, 0, 2095, 297, 1, 0, 0, 0, 2096, 2099, 3, 402, 201, 0, 2097, 2099, 3, 354, 177, 0, 2098, 2096, 1, 0, 0, 0, 2098, 2097, 1, 0, 0, 0, 2099, 299, 1, 0, 0, 0, 2100, 2105, 3, 396, 198, 0, 2101, 2105, 3, 394, 197, 0, 2102, 2105, 3, 392, 196, 0, 2103, 2105, 3, 278, 139, 0, 2104, 2100, 1, 0, 0, 0, 2104, 2101, 1, 0, 0, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2103, 1, 0, 0, 0, 2105, 301, 1, 0, 0, 0, 2106, 2107, 3, 354, 177, 0, 2107, 303, 1, 0, 0, 0, 2108, 2109, 3, 330, 165, 0, 2109, 305, 1, 0, 0, 0, 2110, 2113, 3, 330, 165, 0, 2111, 2113, 3, 302, 151, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2111, 1, 0, 0, 0, 2113, 307, 1, 0, 0, 0, 2114, 2117, 5, 182, 0, 0, 2115, 2118, 3, 310, 155, 0, 2116, 2118, 3, 314, 157, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 309, 1, 0, 0, 0, 2119, 2121, 3, 312, 156, 0, 2120, 2122, 3, 316, 158, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 311, 1, 0, 0, 0, 2123, 2124, 3, 318, 159, 0, 2124, 2125, 3, 394, 197, 0, 2125, 2127, 1, 0, 0, 0, 2126, 2123, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2126, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 313, 1, 0, 0, 0, 2130, 2133, 3, 316, 158, 0, 2131, 2134, 3, 312, 156, 0, 2132, 2134, 3, 316, 158, 0, 2133, 2131, 1, 0, 0, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 315, 1, 0, 0, 0, 2135, 2136, 3, 318, 159, 0, 2136, 2137, 3, 394, 197, 0, 2137, 2138, 5, 389, 0, 0, 2138, 2139, 3, 394, 197, 0, 2139, 317, 1, 0, 0, 0, 2140, 2142, 7, 33, 0, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2146, 7, 34, 0, 0, 2144, 2146, 5, 538, 0, 0, 2145, 2141, 1, 0, 0, 0, 2145, 2144, 1, 0, 0, 0, 2146, 319, 1, 0, 0, 0, 2147, 2149, 5, 17, 0, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2152, 3, 330, 165, 0, 2151, 2153, 3, 326, 163, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 321, 1, 0, 0, 0, 2154, 2155, 3, 330, 165, 0, 2155, 2156, 3, 324, 162, 0, 2156, 323, 1, 0, 0, 0, 2157, 2158, 5, 222, 0, 0, 2158, 2160, 3, 330, 165, 0, 2159, 2157, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2165, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2159, 1, 0, 0, 0, 2164, 2163, 1, 0, 0, 0, 2165, 325, 1, 0, 0, 0, 2166, 2167, 5, 517, 0, 0, 2167, 2168, 3, 328, 164, 0, 2168, 2169, 5, 518, 0, 0, 2169, 327, 1, 0, 0, 0, 2170, 2175, 3, 330, 165, 0, 2171, 2172, 5, 521, 0, 0, 2172, 2174, 3, 330, 165, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2177, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 329, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2178, 2182, 3, 332, 166, 0, 2179, 2182, 3, 334, 167, 0, 2180, 2182, 3, 404, 202, 0, 2181, 2178, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2180, 1, 0, 0, 0, 2182, 331, 1, 0, 0, 0, 2183, 2184, 7, 35, 0, 0, 2184, 333, 1, 0, 0, 0, 2185, 2186, 5, 538, 0, 0, 2186, 335, 1, 0, 0, 0, 2187, 2188, 5, 429, 0, 0, 2188, 2189, 3, 278, 139, 0, 2189, 2190, 5, 377, 0, 0, 2190, 2191, 3, 278, 139, 0, 2191, 337, 1, 0, 0, 0, 2192, 2193, 3, 330, 165, 0, 2193, 339, 1, 0, 0, 0, 2194, 2195, 3, 330, 165, 0, 2195, 341, 1, 0, 0, 0, 2196, 2199, 3, 330, 165, 0, 2197, 2198, 5, 514, 0, 0, 2198, 2200, 3, 330, 165, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 343, 1, 0, 0, 0, 2201, 2204, 3, 330, 165, 0, 2202, 2203, 5, 514, 0, 0, 2203, 2205, 3, 330, 165, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 345, 1, 0, 0, 0, 2206, 2209, 3, 330, 165, 0, 2207, 2208, 5, 514, 0, 0, 2208, 2210, 3, 330, 165, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2219, 1, 0, 0, 0, 2211, 2212, 3, 330, 165, 0, 2212, 2213, 5, 514, 0, 0, 2213, 2216, 3, 330, 165, 0, 2214, 2215, 5, 514, 0, 0, 2215, 2217, 3, 330, 165, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2219, 1, 0, 0, 0, 2218, 2206, 1, 0, 0, 0, 2218, 2211, 1, 0, 0, 0, 2219, 347, 1, 0, 0, 0, 2220, 2223, 3, 330, 165, 0, 2221, 2222, 5, 514, 0, 0, 2222, 2224, 3, 330, 165, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2233, 1, 0, 0, 0, 2225, 2226, 3, 330, 165, 0, 2226, 2227, 5, 514, 0, 0, 2227, 2230, 3, 330, 165, 0, 2228, 2229, 5, 514, 0, 0, 2229, 2231, 3, 330, 165, 0, 2230, 2228, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2233, 1, 0, 0, 0, 2232, 2220, 1, 0, 0, 0, 2232, 2225, 1, 0, 0, 0, 2233, 349, 1, 0, 0, 0, 2234, 2237, 3, 330, 165, 0, 2235, 2236, 5, 514, 0, 0, 2236, 2238, 3, 330, 165, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2247, 1, 0, 0, 0, 2239, 2240, 3, 330, 165, 0, 2240, 2241, 5, 514, 0, 0, 2241, 2244, 3, 330, 165, 0, 2242, 2243, 5, 514, 0, 0, 2243, 2245, 3, 330, 165, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2247, 1, 0, 0, 0, 2246, 2234, 1, 0, 0, 0, 2246, 2239, 1, 0, 0, 0, 2247, 351, 1, 0, 0, 0, 2248, 2251, 3, 330, 165, 0, 2249, 2250, 5, 514, 0, 0, 2250, 2252, 3, 330, 165, 0, 2251, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2261, 1, 0, 0, 0, 2253, 2254, 3, 330, 165, 0, 2254, 2255, 5, 514, 0, 0, 2255, 2258, 3, 330, 165, 0, 2256, 2257, 5, 514, 0, 0, 2257, 2259, 3, 330, 165, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2248, 1, 0, 0, 0, 2260, 2253, 1, 0, 0, 0, 2261, 353, 1, 0, 0, 0, 2262, 2267, 3, 330, 165, 0, 2263, 2264, 5, 514, 0, 0, 2264, 2266, 3, 330, 165, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2269, 1, 0, 0, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 355, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2271, 5, 434, 0, 0, 2271, 2272, 3, 362, 181, 0, 2272, 357, 1, 0, 0, 0, 2273, 2274, 5, 167, 0, 0, 2274, 2275, 5, 242, 0, 0, 2275, 2276, 5, 133, 0, 0, 2276, 359, 1, 0, 0, 0, 2277, 2278, 5, 167, 0, 0, 2278, 2279, 5, 133, 0, 0, 2279, 361, 1, 0, 0, 0, 2280, 2281, 5, 517, 0, 0, 2281, 2286, 3, 364, 182, 0, 2282, 2283, 5, 521, 0, 0, 2283, 2285, 3, 364, 182, 0, 2284, 2282, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2289, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2290, 5, 518, 0, 0, 2290, 363, 1, 0, 0, 0, 2291, 2296, 3, 366, 183, 0, 2292, 2294, 5, 506, 0, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2297, 3, 368, 184, 0, 2296, 2293, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 365, 1, 0, 0, 0, 2298, 2302, 3, 330, 165, 0, 2299, 2302, 3, 302, 151, 0, 2300, 2302, 5, 538, 0, 0, 2301, 2298, 1, 0, 0, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2300, 1, 0, 0, 0, 2302, 367, 1, 0, 0, 0, 2303, 2308, 5, 539, 0, 0, 2304, 2308, 5, 540, 0, 0, 2305, 2308, 3, 388, 194, 0, 2306, 2308, 5, 538, 0, 0, 2307, 2303, 1, 0, 0, 0, 2307, 2304, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 369, 1, 0, 0, 0, 2309, 2316, 5, 10, 0, 0, 2310, 2311, 5, 512, 0, 0, 2311, 2316, 5, 512, 0, 0, 2312, 2316, 5, 258, 0, 0, 2313, 2314, 5, 511, 0, 0, 2314, 2316, 5, 511, 0, 0, 2315, 2309, 1, 0, 0, 0, 2315, 2310, 1, 0, 0, 0, 2315, 2312, 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2316, 371, 1, 0, 0, 0, 2317, 2332, 5, 506, 0, 0, 2318, 2332, 5, 507, 0, 0, 2319, 2332, 5, 508, 0, 0, 2320, 2321, 5, 508, 0, 0, 2321, 2332, 5, 506, 0, 0, 2322, 2323, 5, 507, 0, 0, 2323, 2332, 5, 506, 0, 0, 2324, 2325, 5, 508, 0, 0, 2325, 2332, 5, 507, 0, 0, 2326, 2327, 5, 509, 0, 0, 2327, 2332, 5, 506, 0, 0, 2328, 2329, 5, 508, 0, 0, 2329, 2330, 5, 506, 0, 0, 2330, 2332, 5, 507, 0, 0, 2331, 2317, 1, 0, 0, 0, 2331, 2318, 1, 0, 0, 0, 2331, 2319, 1, 0, 0, 0, 2331, 2320, 1, 0, 0, 0, 2331, 2322, 1, 0, 0, 0, 2331, 2324, 1, 0, 0, 0, 2331, 2326, 1, 0, 0, 0, 2331, 2328, 1, 0, 0, 0, 2332, 373, 1, 0, 0, 0, 2333, 2334, 5, 508, 0, 0, 2334, 2341, 5, 508, 0, 0, 2335, 2336, 5, 507, 0, 0, 2336, 2341, 5, 507, 0, 0, 2337, 2341, 5, 512, 0, 0, 2338, 2341, 5, 513, 0, 0, 2339, 2341, 5, 511, 0, 0, 2340, 2333, 1, 0, 0, 0, 2340, 2335, 1, 0, 0, 0, 2340, 2337, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2340, 2339, 1, 0, 0, 0, 2341, 375, 1, 0, 0, 0, 2342, 2343, 7, 36, 0, 0, 2343, 377, 1, 0, 0, 0, 2344, 2345, 7, 37, 0, 0, 2345, 379, 1, 0, 0, 0, 2346, 2361, 3, 308, 154, 0, 2347, 2361, 3, 382, 191, 0, 2348, 2361, 3, 384, 192, 0, 2349, 2351, 5, 530, 0, 0, 2350, 2349, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2361, 3, 386, 193, 0, 2353, 2361, 3, 388, 194, 0, 2354, 2361, 5, 540, 0, 0, 2355, 2361, 5, 541, 0, 0, 2356, 2358, 5, 242, 0, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2361, 5, 245, 0, 0, 2360, 2346, 1, 0, 0, 0, 2360, 2347, 1, 0, 0, 0, 2360, 2348, 1, 0, 0, 0, 2360, 2350, 1, 0, 0, 0, 2360, 2353, 1, 0, 0, 0, 2360, 2354, 1, 0, 0, 0, 2360, 2355, 1, 0, 0, 0, 2360, 2357, 1, 0, 0, 0, 2361, 381, 1, 0, 0, 0, 2362, 2363, 3, 392, 196, 0, 2363, 2364, 3, 384, 192, 0, 2364, 383, 1, 0, 0, 0, 2365, 2366, 5, 538, 0, 0, 2366, 385, 1, 0, 0, 0, 2367, 2368, 5, 539, 0, 0, 2368, 387, 1, 0, 0, 0, 2369, 2370, 7, 38, 0, 0, 2370, 389, 1, 0, 0, 0, 2371, 2372, 7, 39, 0, 0, 2372, 391, 1, 0, 0, 0, 2373, 2374, 7, 40, 0, 0, 2374, 393, 1, 0, 0, 0, 2375, 2376, 7, 41, 0, 0, 2376, 395, 1, 0, 0, 0, 2377, 2378, 7, 42, 0, 0, 2378, 397, 1, 0, 0, 0, 2379, 2380, 7, 43, 0, 0, 2380, 399, 1, 0, 0, 0, 2381, 2382, 7, 44, 0, 0, 2382, 401, 1, 0, 0, 0, 2383, 2384, 7, 45, 0, 0, 2384, 403, 1, 0, 0, 0, 2385, 2386, 7, 46, 0, 0, 2386, 405, 1, 0, 0, 0, 283, 409, 416, 419, 433, 451, 455, 464, 469, 476, 487, 496, 508, 511, 518, 521, 529, 533, 538, 541, 548, 556, 560, 572, 580, 584, 616, 619, 624, 628, 632, 636, 645, 650, 654, 658, 663, 666, 670, 675, 681, 686, 691, 695, 699, 703, 713, 721, 725, 729, 733, 737, 741, 745, 749, 753, 755, 765, 773, 797, 811, 816, 820, 826, 829, 832, 839, 842, 851, 863, 887, 899, 904, 908, 916, 920, 926, 936, 941, 947, 951, 955, 959, 968, 972, 979, 982, 992, 1000, 1008, 1012, 1027, 1046, 1057, 1061, 1068, 1073, 1079, 1083, 1090, 1094, 1098, 1102, 1110, 1114, 1119, 1125, 1131, 1134, 1138, 1149, 1158, 1165, 1176, 1188, 1203, 1206, 1210, 1213, 1215, 1220, 1224, 1227, 1231, 1240, 1249, 1259, 1264, 1275, 1278, 1281, 1284, 1287, 1293, 1297, 1306, 1313, 1316, 1320, 1325, 1328, 1330, 1339, 1346, 1349, 1353, 1356, 1358, 1365, 1370, 1386, 1397, 1402, 1410, 1413, 1416, 1421, 1423, 1425, 1430, 1433, 1437, 1441, 1445, 1454, 1465, 1492, 1514, 1527, 1539, 1552, 1564, 1576, 1582, 1609, 1617, 1621, 1624, 1627, 1634, 1637, 1640, 1643, 1646, 1649, 1654, 1657, 1666, 1671, 1675, 1680, 1686, 1691, 1695, 1714, 1722, 1730, 1734, 1738, 1748, 1774, 1782, 1794, 1816, 1818, 1829, 1832, 1834, 1838, 1842, 1849, 1858, 1864, 1877, 1884, 1889, 1895, 1902, 1909, 1911, 1914, 1926, 1931, 1934, 1940, 1942, 1948, 1969, 1971, 1979, 1986, 1989, 1993, 2000, 2004, 2013, 2017, 2033, 2042, 2070, 2079, 2088, 2094, 2098, 2104, 2112, 2117, 2121, 2128, 2133, 2141, 2145, 2148, 2152, 2161, 2164, 2175, 2181, 2199, 2204, 2209, 2216, 2218, 2223, 2230, 2232, 2237, 2244, 2246, 2251, 2258, 2260, 2267, 2286, 2293, 2296, 2301, 2307, 2315, 2331, 2340, 2350, 2357, 2360] \ No newline at end of file +[4, 1, 542, 2426, 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, 1, 0, 5, 0, 414, 8, 0, 10, 0, 12, 0, 417, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 423, 8, 1, 1, 1, 3, 1, 426, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 440, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 458, 8, 4, 1, 5, 1, 5, 3, 5, 462, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 471, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 476, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 481, 8, 8, 10, 8, 12, 8, 484, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 494, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 501, 8, 11, 10, 11, 12, 11, 504, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 515, 8, 12, 1, 12, 3, 12, 518, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 525, 8, 12, 1, 12, 3, 12, 528, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 536, 8, 12, 1, 12, 1, 12, 3, 12, 540, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 545, 8, 12, 1, 12, 3, 12, 548, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 555, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 563, 8, 15, 1, 16, 1, 16, 3, 16, 567, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 579, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 587, 8, 18, 1, 18, 1, 18, 3, 18, 591, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 623, 8, 18, 1, 19, 3, 19, 626, 8, 19, 1, 19, 4, 19, 629, 8, 19, 11, 19, 12, 19, 630, 1, 20, 1, 20, 3, 20, 635, 8, 20, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 21, 1, 21, 3, 21, 643, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 650, 8, 21, 10, 21, 12, 21, 653, 9, 21, 1, 21, 1, 21, 3, 21, 657, 8, 21, 1, 21, 1, 21, 3, 21, 661, 8, 21, 1, 21, 1, 21, 3, 21, 665, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 670, 8, 21, 1, 21, 3, 21, 673, 8, 21, 1, 21, 1, 21, 3, 21, 677, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 682, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 688, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 693, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 698, 8, 24, 1, 24, 1, 24, 3, 24, 702, 8, 24, 1, 25, 1, 25, 3, 25, 706, 8, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 713, 8, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 720, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 726, 8, 30, 10, 30, 12, 30, 729, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 3, 31, 736, 8, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 3, 31, 744, 8, 31, 1, 31, 1, 31, 3, 31, 748, 8, 31, 1, 31, 1, 31, 3, 31, 752, 8, 31, 1, 31, 1, 31, 3, 31, 756, 8, 31, 1, 31, 1, 31, 3, 31, 760, 8, 31, 1, 31, 1, 31, 3, 31, 764, 8, 31, 1, 31, 1, 31, 3, 31, 768, 8, 31, 3, 31, 770, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 780, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 788, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 810, 8, 37, 10, 37, 12, 37, 813, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 824, 8, 37, 10, 37, 12, 37, 827, 9, 37, 1, 37, 1, 37, 3, 37, 831, 8, 37, 1, 38, 1, 38, 3, 38, 835, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 841, 8, 38, 1, 38, 3, 38, 844, 8, 38, 1, 38, 3, 38, 847, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 854, 8, 39, 1, 39, 3, 39, 857, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 866, 8, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 878, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 900, 8, 48, 10, 48, 12, 48, 903, 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 912, 8, 49, 10, 49, 12, 49, 915, 9, 49, 1, 49, 1, 49, 3, 49, 919, 8, 49, 1, 50, 1, 50, 3, 50, 923, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 929, 8, 51, 10, 51, 12, 51, 932, 9, 51, 1, 51, 3, 51, 935, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 941, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 3, 54, 951, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 956, 8, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 962, 8, 55, 1, 55, 1, 55, 3, 55, 966, 8, 55, 1, 55, 1, 55, 3, 55, 970, 8, 55, 1, 55, 1, 55, 3, 55, 974, 8, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 983, 8, 56, 1, 56, 1, 56, 3, 56, 987, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 994, 8, 56, 1, 56, 3, 56, 997, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1005, 8, 57, 10, 57, 12, 57, 1008, 9, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 3, 59, 1015, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1023, 8, 59, 1, 60, 1, 60, 3, 60, 1027, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1042, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1061, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1072, 8, 68, 1, 68, 1, 68, 3, 68, 1076, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1083, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1088, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 1094, 8, 70, 1, 70, 1, 70, 3, 70, 1098, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 1105, 8, 71, 1, 71, 1, 71, 3, 71, 1109, 8, 71, 1, 72, 1, 72, 3, 72, 1113, 8, 72, 1, 72, 1, 72, 3, 72, 1117, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1125, 8, 73, 1, 73, 1, 73, 3, 73, 1129, 8, 73, 1, 73, 1, 73, 1, 74, 3, 74, 1134, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1140, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1146, 8, 75, 1, 75, 3, 75, 1149, 8, 75, 1, 75, 1, 75, 3, 75, 1153, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 1162, 8, 77, 10, 77, 12, 77, 1165, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 1171, 8, 78, 10, 78, 12, 78, 1174, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 1180, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 4, 80, 1189, 8, 80, 11, 80, 12, 80, 1190, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 1201, 8, 81, 11, 81, 12, 81, 1202, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1218, 8, 82, 1, 82, 3, 82, 1221, 8, 82, 1, 82, 1, 82, 3, 82, 1225, 8, 82, 1, 82, 3, 82, 1228, 8, 82, 3, 82, 1230, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1235, 8, 82, 1, 82, 1, 82, 3, 82, 1239, 8, 82, 1, 82, 3, 82, 1242, 8, 82, 5, 82, 1244, 8, 82, 10, 82, 12, 82, 1247, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1253, 8, 83, 10, 83, 12, 83, 1256, 9, 83, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1262, 8, 84, 10, 84, 12, 84, 1265, 9, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1272, 8, 85, 10, 85, 12, 85, 1275, 9, 85, 1, 85, 1, 85, 3, 85, 1279, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 1290, 8, 87, 1, 87, 3, 87, 1293, 8, 87, 1, 87, 3, 87, 1296, 8, 87, 1, 87, 3, 87, 1299, 8, 87, 1, 87, 3, 87, 1302, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1308, 8, 87, 1, 88, 1, 88, 3, 88, 1312, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 5, 89, 1319, 8, 89, 10, 89, 12, 89, 1322, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1328, 8, 90, 1, 90, 3, 90, 1331, 8, 90, 1, 90, 1, 90, 3, 90, 1335, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1340, 8, 90, 1, 90, 3, 90, 1343, 8, 90, 3, 90, 1345, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 3, 94, 1354, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 3, 95, 1361, 8, 95, 1, 95, 3, 95, 1364, 8, 95, 1, 95, 1, 95, 3, 95, 1368, 8, 95, 1, 95, 3, 95, 1371, 8, 95, 3, 95, 1373, 8, 95, 1, 96, 1, 96, 1, 96, 5, 96, 1378, 8, 96, 10, 96, 12, 96, 1381, 9, 96, 1, 96, 1, 96, 3, 96, 1385, 8, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1401, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 1410, 8, 99, 10, 99, 12, 99, 1413, 9, 99, 1, 99, 1, 99, 3, 99, 1417, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1425, 8, 99, 1, 99, 3, 99, 1428, 8, 99, 1, 99, 3, 99, 1431, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1436, 8, 99, 5, 99, 1438, 8, 99, 10, 99, 12, 99, 1441, 9, 99, 1, 100, 1, 100, 3, 100, 1445, 8, 100, 1, 101, 3, 101, 1448, 8, 101, 1, 101, 1, 101, 3, 101, 1452, 8, 101, 1, 101, 1, 101, 3, 101, 1456, 8, 101, 1, 101, 1, 101, 3, 101, 1460, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 3, 103, 1469, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1480, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 1505, 8, 108, 10, 108, 12, 108, 1508, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1529, 8, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1543, 8, 113, 3, 113, 1545, 8, 113, 1, 113, 1, 113, 3, 113, 1549, 8, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1554, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1561, 8, 115, 10, 115, 12, 115, 1564, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1574, 8, 116, 10, 116, 12, 116, 1577, 9, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1586, 8, 116, 10, 116, 12, 116, 1589, 9, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1598, 8, 116, 10, 116, 12, 116, 1601, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1606, 8, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1631, 8, 123, 10, 123, 12, 123, 1634, 9, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 3, 125, 1641, 8, 125, 1, 125, 1, 125, 3, 125, 1645, 8, 125, 1, 125, 3, 125, 1648, 8, 125, 1, 125, 3, 125, 1651, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 1658, 8, 126, 1, 126, 3, 126, 1661, 8, 126, 1, 126, 3, 126, 1664, 8, 126, 1, 126, 3, 126, 1667, 8, 126, 1, 126, 3, 126, 1670, 8, 126, 1, 126, 3, 126, 1673, 8, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1678, 8, 126, 1, 126, 3, 126, 1681, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1688, 8, 127, 10, 127, 12, 127, 1691, 9, 127, 1, 128, 1, 128, 3, 128, 1695, 8, 128, 1, 128, 1, 128, 3, 128, 1699, 8, 128, 1, 129, 1, 129, 1, 129, 3, 129, 1704, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1710, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1715, 8, 130, 5, 130, 1717, 8, 130, 10, 130, 12, 130, 1720, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1738, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1744, 8, 132, 10, 132, 12, 132, 1747, 9, 132, 1, 133, 1, 133, 1, 133, 4, 133, 1752, 8, 133, 11, 133, 12, 133, 1753, 1, 133, 1, 133, 3, 133, 1758, 8, 133, 1, 134, 1, 134, 3, 134, 1762, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1772, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1798, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 1804, 8, 137, 10, 137, 12, 137, 1807, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1818, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1840, 8, 142, 3, 142, 1842, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1853, 8, 142, 1, 142, 5, 142, 1856, 8, 142, 10, 142, 12, 142, 1859, 9, 142, 1, 143, 3, 143, 1862, 8, 143, 1, 143, 1, 143, 3, 143, 1866, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1873, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 5, 143, 1880, 8, 143, 10, 143, 12, 143, 1883, 9, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1888, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1901, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1908, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1913, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1919, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1926, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1933, 8, 143, 3, 143, 1935, 8, 143, 1, 144, 3, 144, 1938, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 1948, 8, 144, 10, 144, 12, 144, 1951, 9, 144, 1, 144, 1, 144, 3, 144, 1955, 8, 144, 1, 144, 3, 144, 1958, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 1964, 8, 144, 3, 144, 1966, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1972, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 1993, 8, 145, 10, 145, 12, 145, 1996, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2003, 8, 146, 1, 146, 1, 146, 1, 146, 5, 146, 2008, 8, 146, 10, 146, 12, 146, 2011, 9, 146, 3, 146, 2013, 8, 146, 1, 146, 1, 146, 3, 146, 2017, 8, 146, 1, 147, 1, 147, 1, 147, 4, 147, 2022, 8, 147, 11, 147, 12, 147, 2023, 1, 147, 1, 147, 3, 147, 2028, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 4, 147, 2035, 8, 147, 11, 147, 12, 147, 2036, 1, 147, 1, 147, 3, 147, 2041, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2057, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2066, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2094, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 2101, 8, 147, 10, 147, 12, 147, 2104, 9, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2112, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2118, 8, 150, 1, 151, 1, 151, 3, 151, 2122, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2128, 8, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 2136, 8, 155, 1, 156, 1, 156, 1, 156, 3, 156, 2141, 8, 156, 1, 157, 1, 157, 3, 157, 2145, 8, 157, 1, 158, 1, 158, 1, 158, 4, 158, 2150, 8, 158, 11, 158, 12, 158, 2151, 1, 159, 1, 159, 1, 159, 3, 159, 2157, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 3, 161, 2165, 8, 161, 1, 161, 1, 161, 3, 161, 2169, 8, 161, 1, 162, 3, 162, 2172, 8, 162, 1, 162, 1, 162, 3, 162, 2176, 8, 162, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 4, 164, 2183, 8, 164, 11, 164, 12, 164, 2184, 1, 164, 3, 164, 2188, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 5, 166, 2197, 8, 166, 10, 166, 12, 166, 2200, 9, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2205, 8, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2223, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2228, 8, 174, 1, 175, 1, 175, 1, 175, 3, 175, 2233, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2240, 8, 175, 3, 175, 2242, 8, 175, 1, 176, 1, 176, 1, 176, 3, 176, 2247, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2254, 8, 176, 3, 176, 2256, 8, 176, 1, 177, 1, 177, 1, 177, 3, 177, 2261, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2268, 8, 177, 3, 177, 2270, 8, 177, 1, 178, 1, 178, 1, 178, 3, 178, 2275, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2282, 8, 178, 3, 178, 2284, 8, 178, 1, 179, 1, 179, 1, 179, 5, 179, 2289, 8, 179, 10, 179, 12, 179, 2292, 9, 179, 1, 180, 1, 180, 1, 180, 5, 180, 2297, 8, 180, 10, 180, 12, 180, 2300, 9, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2307, 8, 180, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2323, 8, 184, 10, 184, 12, 184, 2326, 9, 184, 1, 184, 1, 184, 1, 185, 1, 185, 3, 185, 2332, 8, 185, 1, 185, 3, 185, 2335, 8, 185, 1, 186, 1, 186, 1, 186, 3, 186, 2340, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2346, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2354, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2370, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2379, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2389, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2396, 8, 193, 1, 193, 3, 193, 2399, 8, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 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, 205, 0, 5, 164, 198, 284, 290, 294, 206, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2638, 0, 415, 1, 0, 0, 0, 2, 425, 1, 0, 0, 0, 4, 439, 1, 0, 0, 0, 6, 441, 1, 0, 0, 0, 8, 457, 1, 0, 0, 0, 10, 461, 1, 0, 0, 0, 12, 463, 1, 0, 0, 0, 14, 466, 1, 0, 0, 0, 16, 477, 1, 0, 0, 0, 18, 485, 1, 0, 0, 0, 20, 493, 1, 0, 0, 0, 22, 495, 1, 0, 0, 0, 24, 547, 1, 0, 0, 0, 26, 549, 1, 0, 0, 0, 28, 556, 1, 0, 0, 0, 30, 560, 1, 0, 0, 0, 32, 564, 1, 0, 0, 0, 34, 568, 1, 0, 0, 0, 36, 622, 1, 0, 0, 0, 38, 628, 1, 0, 0, 0, 40, 634, 1, 0, 0, 0, 42, 636, 1, 0, 0, 0, 44, 678, 1, 0, 0, 0, 46, 692, 1, 0, 0, 0, 48, 694, 1, 0, 0, 0, 50, 705, 1, 0, 0, 0, 52, 707, 1, 0, 0, 0, 54, 712, 1, 0, 0, 0, 56, 714, 1, 0, 0, 0, 58, 719, 1, 0, 0, 0, 60, 721, 1, 0, 0, 0, 62, 769, 1, 0, 0, 0, 64, 771, 1, 0, 0, 0, 66, 775, 1, 0, 0, 0, 68, 783, 1, 0, 0, 0, 70, 791, 1, 0, 0, 0, 72, 795, 1, 0, 0, 0, 74, 830, 1, 0, 0, 0, 76, 846, 1, 0, 0, 0, 78, 848, 1, 0, 0, 0, 80, 858, 1, 0, 0, 0, 82, 860, 1, 0, 0, 0, 84, 867, 1, 0, 0, 0, 86, 869, 1, 0, 0, 0, 88, 877, 1, 0, 0, 0, 90, 885, 1, 0, 0, 0, 92, 887, 1, 0, 0, 0, 94, 891, 1, 0, 0, 0, 96, 895, 1, 0, 0, 0, 98, 918, 1, 0, 0, 0, 100, 922, 1, 0, 0, 0, 102, 924, 1, 0, 0, 0, 104, 940, 1, 0, 0, 0, 106, 942, 1, 0, 0, 0, 108, 947, 1, 0, 0, 0, 110, 959, 1, 0, 0, 0, 112, 978, 1, 0, 0, 0, 114, 998, 1, 0, 0, 0, 116, 1009, 1, 0, 0, 0, 118, 1011, 1, 0, 0, 0, 120, 1024, 1, 0, 0, 0, 122, 1031, 1, 0, 0, 0, 124, 1034, 1, 0, 0, 0, 126, 1043, 1, 0, 0, 0, 128, 1047, 1, 0, 0, 0, 130, 1051, 1, 0, 0, 0, 132, 1054, 1, 0, 0, 0, 134, 1062, 1, 0, 0, 0, 136, 1067, 1, 0, 0, 0, 138, 1084, 1, 0, 0, 0, 140, 1091, 1, 0, 0, 0, 142, 1101, 1, 0, 0, 0, 144, 1110, 1, 0, 0, 0, 146, 1120, 1, 0, 0, 0, 148, 1139, 1, 0, 0, 0, 150, 1141, 1, 0, 0, 0, 152, 1154, 1, 0, 0, 0, 154, 1157, 1, 0, 0, 0, 156, 1166, 1, 0, 0, 0, 158, 1179, 1, 0, 0, 0, 160, 1181, 1, 0, 0, 0, 162, 1194, 1, 0, 0, 0, 164, 1229, 1, 0, 0, 0, 166, 1248, 1, 0, 0, 0, 168, 1257, 1, 0, 0, 0, 170, 1266, 1, 0, 0, 0, 172, 1285, 1, 0, 0, 0, 174, 1307, 1, 0, 0, 0, 176, 1309, 1, 0, 0, 0, 178, 1315, 1, 0, 0, 0, 180, 1344, 1, 0, 0, 0, 182, 1346, 1, 0, 0, 0, 184, 1348, 1, 0, 0, 0, 186, 1350, 1, 0, 0, 0, 188, 1353, 1, 0, 0, 0, 190, 1372, 1, 0, 0, 0, 192, 1384, 1, 0, 0, 0, 194, 1400, 1, 0, 0, 0, 196, 1402, 1, 0, 0, 0, 198, 1416, 1, 0, 0, 0, 200, 1442, 1, 0, 0, 0, 202, 1459, 1, 0, 0, 0, 204, 1461, 1, 0, 0, 0, 206, 1479, 1, 0, 0, 0, 208, 1481, 1, 0, 0, 0, 210, 1487, 1, 0, 0, 0, 212, 1489, 1, 0, 0, 0, 214, 1494, 1, 0, 0, 0, 216, 1499, 1, 0, 0, 0, 218, 1511, 1, 0, 0, 0, 220, 1528, 1, 0, 0, 0, 222, 1530, 1, 0, 0, 0, 224, 1532, 1, 0, 0, 0, 226, 1548, 1, 0, 0, 0, 228, 1550, 1, 0, 0, 0, 230, 1555, 1, 0, 0, 0, 232, 1605, 1, 0, 0, 0, 234, 1607, 1, 0, 0, 0, 236, 1610, 1, 0, 0, 0, 238, 1612, 1, 0, 0, 0, 240, 1619, 1, 0, 0, 0, 242, 1621, 1, 0, 0, 0, 244, 1623, 1, 0, 0, 0, 246, 1626, 1, 0, 0, 0, 248, 1635, 1, 0, 0, 0, 250, 1640, 1, 0, 0, 0, 252, 1654, 1, 0, 0, 0, 254, 1682, 1, 0, 0, 0, 256, 1692, 1, 0, 0, 0, 258, 1700, 1, 0, 0, 0, 260, 1705, 1, 0, 0, 0, 262, 1737, 1, 0, 0, 0, 264, 1739, 1, 0, 0, 0, 266, 1748, 1, 0, 0, 0, 268, 1759, 1, 0, 0, 0, 270, 1771, 1, 0, 0, 0, 272, 1797, 1, 0, 0, 0, 274, 1799, 1, 0, 0, 0, 276, 1817, 1, 0, 0, 0, 278, 1819, 1, 0, 0, 0, 280, 1824, 1, 0, 0, 0, 282, 1827, 1, 0, 0, 0, 284, 1841, 1, 0, 0, 0, 286, 1934, 1, 0, 0, 0, 288, 1965, 1, 0, 0, 0, 290, 1971, 1, 0, 0, 0, 292, 2016, 1, 0, 0, 0, 294, 2093, 1, 0, 0, 0, 296, 2105, 1, 0, 0, 0, 298, 2111, 1, 0, 0, 0, 300, 2117, 1, 0, 0, 0, 302, 2121, 1, 0, 0, 0, 304, 2127, 1, 0, 0, 0, 306, 2129, 1, 0, 0, 0, 308, 2131, 1, 0, 0, 0, 310, 2135, 1, 0, 0, 0, 312, 2137, 1, 0, 0, 0, 314, 2142, 1, 0, 0, 0, 316, 2149, 1, 0, 0, 0, 318, 2153, 1, 0, 0, 0, 320, 2158, 1, 0, 0, 0, 322, 2168, 1, 0, 0, 0, 324, 2171, 1, 0, 0, 0, 326, 2177, 1, 0, 0, 0, 328, 2187, 1, 0, 0, 0, 330, 2189, 1, 0, 0, 0, 332, 2193, 1, 0, 0, 0, 334, 2204, 1, 0, 0, 0, 336, 2206, 1, 0, 0, 0, 338, 2208, 1, 0, 0, 0, 340, 2210, 1, 0, 0, 0, 342, 2215, 1, 0, 0, 0, 344, 2217, 1, 0, 0, 0, 346, 2219, 1, 0, 0, 0, 348, 2224, 1, 0, 0, 0, 350, 2241, 1, 0, 0, 0, 352, 2255, 1, 0, 0, 0, 354, 2269, 1, 0, 0, 0, 356, 2283, 1, 0, 0, 0, 358, 2285, 1, 0, 0, 0, 360, 2306, 1, 0, 0, 0, 362, 2308, 1, 0, 0, 0, 364, 2311, 1, 0, 0, 0, 366, 2315, 1, 0, 0, 0, 368, 2318, 1, 0, 0, 0, 370, 2329, 1, 0, 0, 0, 372, 2339, 1, 0, 0, 0, 374, 2345, 1, 0, 0, 0, 376, 2353, 1, 0, 0, 0, 378, 2369, 1, 0, 0, 0, 380, 2378, 1, 0, 0, 0, 382, 2380, 1, 0, 0, 0, 384, 2382, 1, 0, 0, 0, 386, 2398, 1, 0, 0, 0, 388, 2400, 1, 0, 0, 0, 390, 2403, 1, 0, 0, 0, 392, 2405, 1, 0, 0, 0, 394, 2407, 1, 0, 0, 0, 396, 2409, 1, 0, 0, 0, 398, 2411, 1, 0, 0, 0, 400, 2413, 1, 0, 0, 0, 402, 2415, 1, 0, 0, 0, 404, 2417, 1, 0, 0, 0, 406, 2419, 1, 0, 0, 0, 408, 2421, 1, 0, 0, 0, 410, 2423, 1, 0, 0, 0, 412, 414, 3, 2, 1, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 0, 0, 1, 419, 1, 1, 0, 0, 0, 420, 422, 3, 4, 2, 0, 421, 423, 5, 522, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 426, 1, 0, 0, 0, 424, 426, 3, 6, 3, 0, 425, 420, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 3, 1, 0, 0, 0, 427, 440, 3, 8, 4, 0, 428, 440, 3, 10, 5, 0, 429, 440, 3, 12, 6, 0, 430, 440, 3, 14, 7, 0, 431, 440, 3, 20, 10, 0, 432, 440, 3, 24, 12, 0, 433, 440, 3, 26, 13, 0, 434, 440, 3, 28, 14, 0, 435, 440, 3, 30, 15, 0, 436, 440, 3, 32, 16, 0, 437, 440, 3, 34, 17, 0, 438, 440, 3, 36, 18, 0, 439, 427, 1, 0, 0, 0, 439, 428, 1, 0, 0, 0, 439, 429, 1, 0, 0, 0, 439, 430, 1, 0, 0, 0, 439, 431, 1, 0, 0, 0, 439, 432, 1, 0, 0, 0, 439, 433, 1, 0, 0, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 5, 1, 0, 0, 0, 441, 442, 5, 522, 0, 0, 442, 7, 1, 0, 0, 0, 443, 458, 3, 40, 20, 0, 444, 458, 3, 108, 54, 0, 445, 458, 3, 110, 55, 0, 446, 458, 3, 112, 56, 0, 447, 458, 3, 106, 53, 0, 448, 458, 3, 118, 59, 0, 449, 458, 3, 132, 66, 0, 450, 458, 3, 134, 67, 0, 451, 458, 3, 136, 68, 0, 452, 458, 3, 138, 69, 0, 453, 458, 3, 140, 70, 0, 454, 458, 3, 142, 71, 0, 455, 458, 3, 144, 72, 0, 456, 458, 3, 146, 73, 0, 457, 443, 1, 0, 0, 0, 457, 444, 1, 0, 0, 0, 457, 445, 1, 0, 0, 0, 457, 446, 1, 0, 0, 0, 457, 447, 1, 0, 0, 0, 457, 448, 1, 0, 0, 0, 457, 449, 1, 0, 0, 0, 457, 450, 1, 0, 0, 0, 457, 451, 1, 0, 0, 0, 457, 452, 1, 0, 0, 0, 457, 453, 1, 0, 0, 0, 457, 454, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 9, 1, 0, 0, 0, 459, 462, 3, 164, 82, 0, 460, 462, 3, 148, 74, 0, 461, 459, 1, 0, 0, 0, 461, 460, 1, 0, 0, 0, 462, 11, 1, 0, 0, 0, 463, 464, 7, 0, 0, 0, 464, 465, 3, 352, 176, 0, 465, 13, 1, 0, 0, 0, 466, 470, 5, 135, 0, 0, 467, 471, 3, 16, 8, 0, 468, 469, 5, 480, 0, 0, 469, 471, 5, 146, 0, 0, 470, 467, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 475, 1, 0, 0, 0, 472, 476, 3, 10, 5, 0, 473, 476, 3, 150, 75, 0, 474, 476, 3, 162, 81, 0, 475, 472, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 475, 474, 1, 0, 0, 0, 476, 15, 1, 0, 0, 0, 477, 482, 3, 18, 9, 0, 478, 479, 5, 521, 0, 0, 479, 481, 3, 18, 9, 0, 480, 478, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 17, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 485, 486, 7, 1, 0, 0, 486, 19, 1, 0, 0, 0, 487, 488, 5, 411, 0, 0, 488, 489, 5, 442, 0, 0, 489, 494, 3, 342, 171, 0, 490, 491, 5, 411, 0, 0, 491, 494, 3, 346, 173, 0, 492, 494, 3, 22, 11, 0, 493, 487, 1, 0, 0, 0, 493, 490, 1, 0, 0, 0, 493, 492, 1, 0, 0, 0, 494, 21, 1, 0, 0, 0, 495, 496, 5, 411, 0, 0, 496, 497, 5, 228, 0, 0, 497, 502, 3, 358, 179, 0, 498, 499, 5, 521, 0, 0, 499, 501, 3, 358, 179, 0, 500, 498, 1, 0, 0, 0, 501, 504, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 23, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 505, 506, 5, 342, 0, 0, 506, 548, 7, 2, 0, 0, 507, 508, 5, 342, 0, 0, 508, 509, 5, 76, 0, 0, 509, 548, 7, 3, 0, 0, 510, 511, 5, 342, 0, 0, 511, 514, 5, 375, 0, 0, 512, 513, 7, 4, 0, 0, 513, 515, 3, 346, 173, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 517, 1, 0, 0, 0, 516, 518, 3, 288, 144, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 548, 1, 0, 0, 0, 519, 520, 5, 342, 0, 0, 520, 521, 5, 58, 0, 0, 521, 524, 7, 4, 0, 0, 522, 525, 3, 354, 177, 0, 523, 525, 3, 352, 176, 0, 524, 522, 1, 0, 0, 0, 524, 523, 1, 0, 0, 0, 525, 527, 1, 0, 0, 0, 526, 528, 3, 288, 144, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 548, 1, 0, 0, 0, 529, 530, 5, 342, 0, 0, 530, 535, 5, 72, 0, 0, 531, 532, 5, 374, 0, 0, 532, 536, 3, 352, 176, 0, 533, 534, 5, 502, 0, 0, 534, 536, 3, 354, 177, 0, 535, 531, 1, 0, 0, 0, 535, 533, 1, 0, 0, 0, 536, 548, 1, 0, 0, 0, 537, 539, 5, 342, 0, 0, 538, 540, 5, 412, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 548, 5, 154, 0, 0, 542, 544, 5, 342, 0, 0, 543, 545, 5, 152, 0, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 548, 5, 228, 0, 0, 547, 505, 1, 0, 0, 0, 547, 507, 1, 0, 0, 0, 547, 510, 1, 0, 0, 0, 547, 519, 1, 0, 0, 0, 547, 529, 1, 0, 0, 0, 547, 537, 1, 0, 0, 0, 547, 542, 1, 0, 0, 0, 548, 25, 1, 0, 0, 0, 549, 550, 5, 469, 0, 0, 550, 551, 5, 227, 0, 0, 551, 554, 3, 358, 179, 0, 552, 553, 5, 434, 0, 0, 553, 555, 3, 368, 184, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 27, 1, 0, 0, 0, 556, 557, 5, 501, 0, 0, 557, 558, 5, 227, 0, 0, 558, 559, 3, 358, 179, 0, 559, 29, 1, 0, 0, 0, 560, 562, 5, 341, 0, 0, 561, 563, 3, 370, 185, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 31, 1, 0, 0, 0, 564, 566, 5, 313, 0, 0, 565, 567, 3, 372, 186, 0, 566, 565, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 33, 1, 0, 0, 0, 568, 569, 7, 5, 0, 0, 569, 570, 5, 464, 0, 0, 570, 571, 3, 116, 58, 0, 571, 35, 1, 0, 0, 0, 572, 573, 5, 438, 0, 0, 573, 574, 5, 464, 0, 0, 574, 575, 5, 434, 0, 0, 575, 578, 3, 38, 19, 0, 576, 577, 5, 17, 0, 0, 577, 579, 3, 358, 179, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 623, 1, 0, 0, 0, 580, 581, 5, 438, 0, 0, 581, 582, 5, 457, 0, 0, 582, 583, 5, 434, 0, 0, 583, 586, 3, 38, 19, 0, 584, 585, 5, 17, 0, 0, 585, 587, 3, 358, 179, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 589, 5, 312, 0, 0, 589, 591, 3, 358, 179, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 623, 1, 0, 0, 0, 592, 593, 5, 438, 0, 0, 593, 594, 7, 6, 0, 0, 594, 595, 5, 434, 0, 0, 595, 596, 3, 38, 19, 0, 596, 597, 5, 312, 0, 0, 597, 598, 3, 358, 179, 0, 598, 623, 1, 0, 0, 0, 599, 600, 5, 438, 0, 0, 600, 601, 5, 487, 0, 0, 601, 623, 3, 38, 19, 0, 602, 603, 5, 438, 0, 0, 603, 604, 5, 454, 0, 0, 604, 605, 5, 457, 0, 0, 605, 606, 5, 434, 0, 0, 606, 607, 3, 38, 19, 0, 607, 608, 5, 312, 0, 0, 608, 609, 3, 358, 179, 0, 609, 610, 5, 467, 0, 0, 610, 611, 3, 358, 179, 0, 611, 623, 1, 0, 0, 0, 612, 613, 5, 438, 0, 0, 613, 614, 5, 444, 0, 0, 614, 615, 5, 457, 0, 0, 615, 616, 5, 434, 0, 0, 616, 617, 3, 38, 19, 0, 617, 618, 5, 146, 0, 0, 618, 619, 3, 358, 179, 0, 619, 620, 5, 17, 0, 0, 620, 621, 3, 358, 179, 0, 621, 623, 1, 0, 0, 0, 622, 572, 1, 0, 0, 0, 622, 580, 1, 0, 0, 0, 622, 592, 1, 0, 0, 0, 622, 599, 1, 0, 0, 0, 622, 602, 1, 0, 0, 0, 622, 612, 1, 0, 0, 0, 623, 37, 1, 0, 0, 0, 624, 626, 5, 535, 0, 0, 625, 624, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 629, 3, 358, 179, 0, 628, 625, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 39, 1, 0, 0, 0, 632, 635, 3, 42, 21, 0, 633, 635, 3, 44, 22, 0, 634, 632, 1, 0, 0, 0, 634, 633, 1, 0, 0, 0, 635, 41, 1, 0, 0, 0, 636, 638, 5, 72, 0, 0, 637, 639, 5, 498, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 642, 5, 374, 0, 0, 641, 643, 3, 364, 182, 0, 642, 641, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 3, 350, 175, 0, 645, 646, 5, 517, 0, 0, 646, 651, 3, 46, 23, 0, 647, 648, 5, 521, 0, 0, 648, 650, 3, 46, 23, 0, 649, 647, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 656, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 654, 655, 5, 521, 0, 0, 655, 657, 3, 86, 43, 0, 656, 654, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 1, 0, 0, 0, 658, 659, 5, 521, 0, 0, 659, 661, 3, 88, 44, 0, 660, 658, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 663, 5, 521, 0, 0, 663, 665, 3, 92, 46, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 669, 5, 518, 0, 0, 667, 668, 5, 59, 0, 0, 668, 670, 5, 538, 0, 0, 669, 667, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 94, 47, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 3, 362, 181, 0, 675, 677, 3, 102, 51, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 43, 1, 0, 0, 0, 678, 679, 5, 72, 0, 0, 679, 681, 5, 374, 0, 0, 680, 682, 3, 364, 182, 0, 681, 680, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 3, 350, 175, 0, 684, 687, 3, 362, 181, 0, 685, 686, 5, 17, 0, 0, 686, 688, 3, 164, 82, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 45, 1, 0, 0, 0, 689, 693, 3, 48, 24, 0, 690, 693, 3, 78, 39, 0, 691, 693, 3, 82, 41, 0, 692, 689, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 692, 691, 1, 0, 0, 0, 693, 47, 1, 0, 0, 0, 694, 695, 3, 50, 25, 0, 695, 697, 3, 62, 31, 0, 696, 698, 3, 76, 38, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 701, 1, 0, 0, 0, 699, 700, 5, 59, 0, 0, 700, 702, 5, 538, 0, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 49, 1, 0, 0, 0, 703, 706, 3, 358, 179, 0, 704, 706, 3, 282, 141, 0, 705, 703, 1, 0, 0, 0, 705, 704, 1, 0, 0, 0, 706, 51, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 53, 1, 0, 0, 0, 709, 713, 3, 360, 180, 0, 710, 711, 4, 27, 0, 0, 711, 713, 3, 52, 26, 0, 712, 709, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 713, 55, 1, 0, 0, 0, 714, 715, 3, 358, 179, 0, 715, 57, 1, 0, 0, 0, 716, 720, 3, 360, 180, 0, 717, 718, 4, 29, 1, 0, 718, 720, 3, 52, 26, 0, 719, 716, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 720, 59, 1, 0, 0, 0, 721, 722, 5, 517, 0, 0, 722, 727, 3, 54, 27, 0, 723, 724, 5, 521, 0, 0, 724, 726, 3, 54, 27, 0, 725, 723, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 730, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 731, 5, 518, 0, 0, 731, 61, 1, 0, 0, 0, 732, 770, 7, 7, 0, 0, 733, 735, 7, 8, 0, 0, 734, 736, 3, 64, 32, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 770, 1, 0, 0, 0, 737, 739, 5, 380, 0, 0, 738, 740, 3, 64, 32, 0, 739, 738, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 747, 1, 0, 0, 0, 741, 743, 7, 9, 0, 0, 742, 744, 5, 207, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 379, 0, 0, 746, 748, 5, 505, 0, 0, 747, 741, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 770, 1, 0, 0, 0, 749, 751, 7, 10, 0, 0, 750, 752, 3, 66, 33, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 770, 1, 0, 0, 0, 753, 755, 7, 11, 0, 0, 754, 756, 3, 70, 35, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 770, 1, 0, 0, 0, 757, 759, 5, 470, 0, 0, 758, 760, 3, 72, 36, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 770, 1, 0, 0, 0, 761, 763, 5, 322, 0, 0, 762, 764, 3, 74, 37, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 770, 1, 0, 0, 0, 765, 767, 5, 295, 0, 0, 766, 768, 3, 68, 34, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 770, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 733, 1, 0, 0, 0, 769, 737, 1, 0, 0, 0, 769, 749, 1, 0, 0, 0, 769, 753, 1, 0, 0, 0, 769, 757, 1, 0, 0, 0, 769, 761, 1, 0, 0, 0, 769, 765, 1, 0, 0, 0, 770, 63, 1, 0, 0, 0, 771, 772, 5, 517, 0, 0, 772, 773, 3, 392, 196, 0, 773, 774, 5, 518, 0, 0, 774, 65, 1, 0, 0, 0, 775, 776, 5, 517, 0, 0, 776, 779, 3, 392, 196, 0, 777, 778, 5, 521, 0, 0, 778, 780, 3, 392, 196, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 5, 518, 0, 0, 782, 67, 1, 0, 0, 0, 783, 784, 5, 517, 0, 0, 784, 787, 3, 390, 195, 0, 785, 786, 5, 521, 0, 0, 786, 788, 3, 390, 195, 0, 787, 785, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 5, 518, 0, 0, 790, 69, 1, 0, 0, 0, 791, 792, 5, 508, 0, 0, 792, 793, 3, 62, 31, 0, 793, 794, 5, 507, 0, 0, 794, 71, 1, 0, 0, 0, 795, 796, 5, 508, 0, 0, 796, 797, 3, 62, 31, 0, 797, 798, 5, 521, 0, 0, 798, 799, 3, 62, 31, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 507, 0, 0, 801, 73, 1, 0, 0, 0, 802, 803, 5, 508, 0, 0, 803, 804, 3, 54, 27, 0, 804, 811, 3, 62, 31, 0, 805, 806, 5, 521, 0, 0, 806, 807, 3, 54, 27, 0, 807, 808, 3, 62, 31, 0, 808, 810, 1, 0, 0, 0, 809, 805, 1, 0, 0, 0, 810, 813, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 815, 5, 507, 0, 0, 815, 831, 1, 0, 0, 0, 816, 817, 5, 517, 0, 0, 817, 818, 3, 54, 27, 0, 818, 825, 3, 62, 31, 0, 819, 820, 5, 521, 0, 0, 820, 821, 3, 54, 27, 0, 821, 822, 3, 62, 31, 0, 822, 824, 1, 0, 0, 0, 823, 819, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 829, 5, 518, 0, 0, 829, 831, 1, 0, 0, 0, 830, 802, 1, 0, 0, 0, 830, 816, 1, 0, 0, 0, 831, 75, 1, 0, 0, 0, 832, 833, 5, 64, 0, 0, 833, 835, 3, 90, 45, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 5, 289, 0, 0, 837, 840, 5, 467, 0, 0, 838, 839, 5, 242, 0, 0, 839, 841, 5, 125, 0, 0, 840, 838, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 847, 1, 0, 0, 0, 842, 844, 5, 242, 0, 0, 843, 842, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 847, 5, 245, 0, 0, 846, 834, 1, 0, 0, 0, 846, 843, 1, 0, 0, 0, 847, 77, 1, 0, 0, 0, 848, 849, 3, 50, 25, 0, 849, 850, 3, 62, 31, 0, 850, 853, 5, 219, 0, 0, 851, 852, 5, 151, 0, 0, 852, 854, 3, 80, 40, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 1, 0, 0, 0, 855, 857, 5, 424, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 79, 1, 0, 0, 0, 858, 859, 5, 538, 0, 0, 859, 81, 1, 0, 0, 0, 860, 861, 3, 50, 25, 0, 861, 862, 5, 17, 0, 0, 862, 865, 3, 84, 42, 0, 863, 864, 5, 59, 0, 0, 864, 866, 5, 538, 0, 0, 865, 863, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 83, 1, 0, 0, 0, 867, 868, 3, 282, 141, 0, 868, 85, 1, 0, 0, 0, 869, 870, 5, 425, 0, 0, 870, 871, 5, 146, 0, 0, 871, 872, 3, 54, 27, 0, 872, 873, 5, 17, 0, 0, 873, 874, 3, 282, 141, 0, 874, 87, 1, 0, 0, 0, 875, 876, 5, 64, 0, 0, 876, 878, 3, 90, 45, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 289, 0, 0, 880, 881, 5, 467, 0, 0, 881, 882, 3, 60, 30, 0, 882, 883, 5, 242, 0, 0, 883, 884, 5, 125, 0, 0, 884, 89, 1, 0, 0, 0, 885, 886, 3, 334, 167, 0, 886, 91, 1, 0, 0, 0, 887, 888, 5, 278, 0, 0, 888, 889, 5, 146, 0, 0, 889, 890, 5, 372, 0, 0, 890, 93, 1, 0, 0, 0, 891, 892, 5, 270, 0, 0, 892, 893, 5, 34, 0, 0, 893, 894, 3, 96, 48, 0, 894, 95, 1, 0, 0, 0, 895, 896, 5, 517, 0, 0, 896, 901, 3, 98, 49, 0, 897, 898, 5, 521, 0, 0, 898, 900, 3, 98, 49, 0, 899, 897, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 904, 1, 0, 0, 0, 903, 901, 1, 0, 0, 0, 904, 905, 5, 518, 0, 0, 905, 97, 1, 0, 0, 0, 906, 919, 3, 54, 27, 0, 907, 908, 5, 517, 0, 0, 908, 913, 3, 100, 50, 0, 909, 910, 5, 521, 0, 0, 910, 912, 3, 100, 50, 0, 911, 909, 1, 0, 0, 0, 912, 915, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 916, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 917, 5, 518, 0, 0, 917, 919, 1, 0, 0, 0, 918, 906, 1, 0, 0, 0, 918, 907, 1, 0, 0, 0, 919, 99, 1, 0, 0, 0, 920, 923, 3, 310, 155, 0, 921, 923, 3, 386, 193, 0, 922, 920, 1, 0, 0, 0, 922, 921, 1, 0, 0, 0, 923, 101, 1, 0, 0, 0, 924, 925, 5, 203, 0, 0, 925, 934, 3, 352, 176, 0, 926, 930, 5, 517, 0, 0, 927, 929, 3, 104, 52, 0, 928, 927, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 935, 5, 518, 0, 0, 934, 926, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 103, 1, 0, 0, 0, 936, 937, 7, 12, 0, 0, 937, 941, 7, 13, 0, 0, 938, 939, 7, 14, 0, 0, 939, 941, 7, 15, 0, 0, 940, 936, 1, 0, 0, 0, 940, 938, 1, 0, 0, 0, 941, 105, 1, 0, 0, 0, 942, 943, 5, 72, 0, 0, 943, 944, 5, 442, 0, 0, 944, 945, 3, 344, 172, 0, 945, 946, 3, 362, 181, 0, 946, 107, 1, 0, 0, 0, 947, 948, 5, 72, 0, 0, 948, 950, 5, 448, 0, 0, 949, 951, 3, 364, 182, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 955, 3, 348, 174, 0, 953, 954, 5, 59, 0, 0, 954, 956, 5, 538, 0, 0, 955, 953, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 3, 362, 181, 0, 958, 109, 1, 0, 0, 0, 959, 961, 5, 72, 0, 0, 960, 962, 5, 498, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 965, 5, 502, 0, 0, 964, 966, 3, 364, 182, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 356, 178, 0, 968, 970, 3, 60, 30, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 973, 1, 0, 0, 0, 971, 972, 5, 59, 0, 0, 972, 974, 5, 538, 0, 0, 973, 971, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 5, 17, 0, 0, 976, 977, 3, 164, 82, 0, 977, 111, 1, 0, 0, 0, 978, 982, 5, 72, 0, 0, 979, 983, 5, 498, 0, 0, 980, 981, 5, 498, 0, 0, 981, 983, 5, 371, 0, 0, 982, 979, 1, 0, 0, 0, 982, 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 986, 5, 153, 0, 0, 985, 987, 3, 364, 182, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 3, 296, 148, 0, 989, 990, 5, 17, 0, 0, 990, 993, 3, 334, 167, 0, 991, 992, 5, 196, 0, 0, 992, 994, 7, 16, 0, 0, 993, 991, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 996, 1, 0, 0, 0, 995, 997, 3, 114, 57, 0, 996, 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 113, 1, 0, 0, 0, 998, 999, 5, 413, 0, 0, 999, 1000, 5, 464, 0, 0, 1000, 1006, 3, 116, 58, 0, 1001, 1002, 5, 521, 0, 0, 1002, 1003, 5, 464, 0, 0, 1003, 1005, 3, 116, 58, 0, 1004, 1001, 1, 0, 0, 0, 1005, 1008, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 115, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1009, 1010, 5, 538, 0, 0, 1010, 117, 1, 0, 0, 0, 1011, 1012, 5, 8, 0, 0, 1012, 1014, 5, 374, 0, 0, 1013, 1015, 3, 366, 183, 0, 1014, 1013, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1022, 3, 352, 176, 0, 1017, 1023, 3, 120, 60, 0, 1018, 1023, 3, 122, 61, 0, 1019, 1023, 3, 124, 62, 0, 1020, 1023, 3, 126, 63, 0, 1021, 1023, 3, 128, 64, 0, 1022, 1017, 1, 0, 0, 0, 1022, 1018, 1, 0, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1021, 1, 0, 0, 0, 1023, 119, 1, 0, 0, 0, 1024, 1026, 5, 312, 0, 0, 1025, 1027, 3, 358, 179, 0, 1026, 1025, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 5, 389, 0, 0, 1029, 1030, 3, 358, 179, 0, 1030, 121, 1, 0, 0, 0, 1031, 1032, 5, 341, 0, 0, 1032, 1033, 3, 368, 184, 0, 1033, 123, 1, 0, 0, 0, 1034, 1035, 5, 438, 0, 0, 1035, 1036, 5, 64, 0, 0, 1036, 1037, 3, 90, 45, 0, 1037, 1038, 5, 289, 0, 0, 1038, 1039, 5, 467, 0, 0, 1039, 1041, 3, 60, 30, 0, 1040, 1042, 3, 130, 65, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 125, 1, 0, 0, 0, 1043, 1044, 5, 116, 0, 0, 1044, 1045, 5, 64, 0, 0, 1045, 1046, 3, 90, 45, 0, 1046, 127, 1, 0, 0, 0, 1047, 1048, 5, 438, 0, 0, 1048, 1049, 5, 404, 0, 0, 1049, 1050, 3, 60, 30, 0, 1050, 129, 1, 0, 0, 0, 1051, 1052, 5, 242, 0, 0, 1052, 1053, 5, 125, 0, 0, 1053, 131, 1, 0, 0, 0, 1054, 1055, 5, 8, 0, 0, 1055, 1056, 5, 502, 0, 0, 1056, 1060, 3, 354, 177, 0, 1057, 1061, 3, 120, 60, 0, 1058, 1059, 5, 17, 0, 0, 1059, 1061, 3, 164, 82, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1061, 133, 1, 0, 0, 0, 1062, 1063, 5, 8, 0, 0, 1063, 1064, 5, 448, 0, 0, 1064, 1065, 3, 346, 173, 0, 1065, 1066, 3, 122, 61, 0, 1066, 135, 1, 0, 0, 0, 1067, 1071, 5, 8, 0, 0, 1068, 1072, 5, 498, 0, 0, 1069, 1070, 5, 498, 0, 0, 1070, 1072, 5, 371, 0, 0, 1071, 1068, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 5, 153, 0, 0, 1074, 1076, 3, 366, 183, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 3, 298, 149, 0, 1078, 1079, 5, 17, 0, 0, 1079, 1082, 3, 334, 167, 0, 1080, 1081, 5, 196, 0, 0, 1081, 1083, 7, 16, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 137, 1, 0, 0, 0, 1084, 1085, 5, 116, 0, 0, 1085, 1087, 5, 442, 0, 0, 1086, 1088, 3, 366, 183, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 3, 342, 171, 0, 1090, 139, 1, 0, 0, 0, 1091, 1093, 5, 116, 0, 0, 1092, 1094, 5, 498, 0, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1097, 5, 374, 0, 0, 1096, 1098, 3, 366, 183, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 3, 352, 176, 0, 1100, 141, 1, 0, 0, 0, 1101, 1102, 5, 116, 0, 0, 1102, 1104, 5, 448, 0, 0, 1103, 1105, 3, 366, 183, 0, 1104, 1103, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1108, 3, 346, 173, 0, 1107, 1109, 7, 17, 0, 0, 1108, 1107, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 143, 1, 0, 0, 0, 1110, 1112, 5, 116, 0, 0, 1111, 1113, 5, 498, 0, 0, 1112, 1111, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 5, 502, 0, 0, 1115, 1117, 3, 366, 183, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 3, 354, 177, 0, 1119, 145, 1, 0, 0, 0, 1120, 1124, 5, 116, 0, 0, 1121, 1125, 5, 498, 0, 0, 1122, 1123, 5, 498, 0, 0, 1123, 1125, 5, 371, 0, 0, 1124, 1121, 1, 0, 0, 0, 1124, 1122, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 5, 153, 0, 0, 1127, 1129, 3, 366, 183, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 3, 298, 149, 0, 1131, 147, 1, 0, 0, 0, 1132, 1134, 5, 132, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1140, 3, 150, 75, 0, 1136, 1140, 3, 160, 80, 0, 1137, 1138, 5, 132, 0, 0, 1138, 1140, 3, 162, 81, 0, 1139, 1133, 1, 0, 0, 0, 1139, 1136, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 149, 1, 0, 0, 0, 1141, 1142, 5, 177, 0, 0, 1142, 1143, 7, 18, 0, 0, 1143, 1152, 3, 352, 176, 0, 1144, 1146, 3, 152, 76, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, 1149, 3, 60, 30, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1153, 3, 164, 82, 0, 1151, 1153, 3, 154, 77, 0, 1152, 1145, 1, 0, 0, 0, 1152, 1151, 1, 0, 0, 0, 1153, 151, 1, 0, 0, 0, 1154, 1155, 5, 269, 0, 0, 1155, 1156, 3, 368, 184, 0, 1156, 153, 1, 0, 0, 0, 1157, 1158, 5, 415, 0, 0, 1158, 1163, 3, 156, 78, 0, 1159, 1160, 5, 521, 0, 0, 1160, 1162, 3, 156, 78, 0, 1161, 1159, 1, 0, 0, 0, 1162, 1165, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 155, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1166, 1167, 5, 517, 0, 0, 1167, 1172, 3, 158, 79, 0, 1168, 1169, 5, 521, 0, 0, 1169, 1171, 3, 158, 79, 0, 1170, 1168, 1, 0, 0, 0, 1171, 1174, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1172, 1, 0, 0, 0, 1175, 1176, 5, 518, 0, 0, 1176, 157, 1, 0, 0, 0, 1177, 1180, 3, 386, 193, 0, 1178, 1180, 3, 292, 146, 0, 1179, 1177, 1, 0, 0, 0, 1179, 1178, 1, 0, 0, 0, 1180, 159, 1, 0, 0, 0, 1181, 1182, 5, 24, 0, 0, 1182, 1183, 5, 355, 0, 0, 1183, 1184, 5, 341, 0, 0, 1184, 1188, 5, 522, 0, 0, 1185, 1186, 3, 150, 75, 0, 1186, 1187, 5, 522, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 122, 0, 0, 1193, 161, 1, 0, 0, 0, 1194, 1195, 5, 355, 0, 0, 1195, 1196, 5, 341, 0, 0, 1196, 1200, 5, 24, 0, 0, 1197, 1198, 3, 150, 75, 0, 1198, 1199, 5, 522, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 5, 122, 0, 0, 1205, 163, 1, 0, 0, 0, 1206, 1207, 6, 82, -1, 0, 1207, 1230, 3, 166, 83, 0, 1208, 1209, 3, 168, 84, 0, 1209, 1210, 3, 164, 82, 5, 1210, 1230, 1, 0, 0, 0, 1211, 1212, 5, 517, 0, 0, 1212, 1213, 3, 164, 82, 0, 1213, 1214, 5, 518, 0, 0, 1214, 1230, 1, 0, 0, 0, 1215, 1217, 3, 176, 88, 0, 1216, 1218, 3, 254, 127, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1220, 1, 0, 0, 0, 1219, 1221, 3, 258, 129, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1230, 1, 0, 0, 0, 1222, 1224, 3, 174, 87, 0, 1223, 1225, 3, 254, 127, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1228, 3, 258, 129, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1206, 1, 0, 0, 0, 1229, 1208, 1, 0, 0, 0, 1229, 1211, 1, 0, 0, 0, 1229, 1215, 1, 0, 0, 0, 1229, 1222, 1, 0, 0, 0, 1230, 1245, 1, 0, 0, 0, 1231, 1232, 10, 3, 0, 0, 1232, 1234, 7, 19, 0, 0, 1233, 1235, 5, 5, 0, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 3, 164, 82, 0, 1237, 1239, 3, 254, 127, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 258, 129, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1231, 1, 0, 0, 0, 1244, 1247, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 165, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1249, 5, 415, 0, 0, 1249, 1254, 3, 282, 141, 0, 1250, 1251, 5, 521, 0, 0, 1251, 1253, 3, 282, 141, 0, 1252, 1250, 1, 0, 0, 0, 1253, 1256, 1, 0, 0, 0, 1254, 1252, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 167, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1257, 1258, 5, 434, 0, 0, 1258, 1263, 3, 170, 85, 0, 1259, 1260, 5, 521, 0, 0, 1260, 1262, 3, 170, 85, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 169, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1278, 3, 172, 86, 0, 1267, 1268, 5, 517, 0, 0, 1268, 1273, 3, 54, 27, 0, 1269, 1270, 5, 521, 0, 0, 1270, 1272, 3, 54, 27, 0, 1271, 1269, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1277, 5, 518, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1267, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 5, 17, 0, 0, 1281, 1282, 5, 517, 0, 0, 1282, 1283, 3, 164, 82, 0, 1283, 1284, 5, 518, 0, 0, 1284, 171, 1, 0, 0, 0, 1285, 1286, 3, 334, 167, 0, 1286, 173, 1, 0, 0, 0, 1287, 1289, 3, 176, 88, 0, 1288, 1290, 3, 196, 98, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, 3, 228, 114, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1296, 3, 230, 115, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1299, 3, 244, 122, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1301, 1, 0, 0, 0, 1300, 1302, 3, 246, 123, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1308, 1, 0, 0, 0, 1303, 1304, 3, 176, 88, 0, 1304, 1305, 3, 196, 98, 0, 1305, 1306, 3, 252, 126, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1287, 1, 0, 0, 0, 1307, 1303, 1, 0, 0, 0, 1308, 175, 1, 0, 0, 0, 1309, 1311, 5, 337, 0, 0, 1310, 1312, 3, 396, 198, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 3, 178, 89, 0, 1314, 177, 1, 0, 0, 0, 1315, 1320, 3, 180, 90, 0, 1316, 1317, 5, 521, 0, 0, 1317, 1319, 3, 180, 90, 0, 1318, 1316, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 179, 1, 0, 0, 0, 1322, 1320, 1, 0, 0, 0, 1323, 1345, 3, 182, 91, 0, 1324, 1330, 3, 186, 93, 0, 1325, 1331, 3, 188, 94, 0, 1326, 1328, 5, 17, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 3, 282, 141, 0, 1330, 1325, 1, 0, 0, 0, 1330, 1327, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1345, 1, 0, 0, 0, 1332, 1334, 3, 192, 96, 0, 1333, 1335, 3, 188, 94, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1345, 1, 0, 0, 0, 1336, 1342, 3, 184, 92, 0, 1337, 1343, 3, 188, 94, 0, 1338, 1340, 5, 17, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 3, 54, 27, 0, 1342, 1337, 1, 0, 0, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1323, 1, 0, 0, 0, 1344, 1324, 1, 0, 0, 0, 1344, 1332, 1, 0, 0, 0, 1344, 1336, 1, 0, 0, 0, 1345, 181, 1, 0, 0, 0, 1346, 1347, 3, 194, 97, 0, 1347, 183, 1, 0, 0, 0, 1348, 1349, 3, 282, 141, 0, 1349, 185, 1, 0, 0, 0, 1350, 1351, 3, 54, 27, 0, 1351, 187, 1, 0, 0, 0, 1352, 1354, 5, 17, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 3, 334, 167, 0, 1356, 189, 1, 0, 0, 0, 1357, 1373, 3, 194, 97, 0, 1358, 1363, 3, 282, 141, 0, 1359, 1361, 5, 17, 0, 0, 1360, 1359, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1364, 3, 54, 27, 0, 1363, 1360, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1373, 1, 0, 0, 0, 1365, 1370, 3, 54, 27, 0, 1366, 1368, 5, 17, 0, 0, 1367, 1366, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1371, 3, 282, 141, 0, 1370, 1367, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1357, 1, 0, 0, 0, 1372, 1358, 1, 0, 0, 0, 1372, 1365, 1, 0, 0, 0, 1373, 191, 1, 0, 0, 0, 1374, 1379, 3, 334, 167, 0, 1375, 1376, 5, 514, 0, 0, 1376, 1378, 3, 334, 167, 0, 1377, 1375, 1, 0, 0, 0, 1378, 1381, 1, 0, 0, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1382, 1383, 5, 514, 0, 0, 1383, 1385, 1, 0, 0, 0, 1384, 1374, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 5, 528, 0, 0, 1387, 193, 1, 0, 0, 0, 1388, 1389, 3, 294, 147, 0, 1389, 1390, 5, 263, 0, 0, 1390, 1391, 3, 250, 125, 0, 1391, 1392, 5, 17, 0, 0, 1392, 1393, 3, 334, 167, 0, 1393, 1401, 1, 0, 0, 0, 1394, 1395, 3, 294, 147, 0, 1395, 1396, 5, 263, 0, 0, 1396, 1397, 3, 326, 163, 0, 1397, 1398, 5, 17, 0, 0, 1398, 1399, 3, 334, 167, 0, 1399, 1401, 1, 0, 0, 0, 1400, 1388, 1, 0, 0, 0, 1400, 1394, 1, 0, 0, 0, 1401, 195, 1, 0, 0, 0, 1402, 1403, 5, 151, 0, 0, 1403, 1404, 3, 198, 99, 0, 1404, 197, 1, 0, 0, 0, 1405, 1406, 6, 99, -1, 0, 1406, 1411, 3, 200, 100, 0, 1407, 1408, 5, 521, 0, 0, 1408, 1410, 3, 200, 100, 0, 1409, 1407, 1, 0, 0, 0, 1410, 1413, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1414, 1417, 3, 212, 106, 0, 1415, 1417, 3, 214, 107, 0, 1416, 1405, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 1439, 1, 0, 0, 0, 1418, 1419, 10, 3, 0, 0, 1419, 1420, 5, 73, 0, 0, 1420, 1421, 5, 185, 0, 0, 1421, 1438, 3, 198, 99, 4, 1422, 1424, 10, 4, 0, 0, 1423, 1425, 5, 234, 0, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, 1428, 7, 20, 0, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 5, 262, 0, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 5, 185, 0, 0, 1433, 1435, 3, 198, 99, 0, 1434, 1436, 3, 226, 113, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1438, 1, 0, 0, 0, 1437, 1418, 1, 0, 0, 0, 1437, 1422, 1, 0, 0, 0, 1438, 1441, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 199, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1442, 1444, 3, 202, 101, 0, 1443, 1445, 3, 324, 162, 0, 1444, 1443, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 201, 1, 0, 0, 0, 1446, 1448, 5, 374, 0, 0, 1447, 1446, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1451, 3, 352, 176, 0, 1450, 1452, 3, 208, 104, 0, 1451, 1450, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1460, 1, 0, 0, 0, 1453, 1455, 3, 354, 177, 0, 1454, 1456, 3, 208, 104, 0, 1455, 1454, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1460, 1, 0, 0, 0, 1457, 1460, 3, 204, 102, 0, 1458, 1460, 3, 206, 103, 0, 1459, 1447, 1, 0, 0, 0, 1459, 1453, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1458, 1, 0, 0, 0, 1460, 203, 1, 0, 0, 0, 1461, 1462, 5, 199, 0, 0, 1462, 1463, 5, 374, 0, 0, 1463, 1464, 5, 517, 0, 0, 1464, 1465, 3, 292, 146, 0, 1465, 1466, 5, 518, 0, 0, 1466, 205, 1, 0, 0, 0, 1467, 1469, 5, 199, 0, 0, 1468, 1467, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 5, 517, 0, 0, 1471, 1472, 3, 164, 82, 0, 1472, 1473, 5, 518, 0, 0, 1473, 1480, 1, 0, 0, 0, 1474, 1475, 5, 406, 0, 0, 1475, 1476, 5, 517, 0, 0, 1476, 1477, 3, 282, 141, 0, 1477, 1478, 5, 518, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1468, 1, 0, 0, 0, 1479, 1474, 1, 0, 0, 0, 1480, 207, 1, 0, 0, 0, 1481, 1482, 5, 146, 0, 0, 1482, 1483, 5, 372, 0, 0, 1483, 1484, 5, 17, 0, 0, 1484, 1485, 5, 250, 0, 0, 1485, 1486, 3, 210, 105, 0, 1486, 209, 1, 0, 0, 0, 1487, 1488, 3, 282, 141, 0, 1488, 211, 1, 0, 0, 0, 1489, 1490, 5, 517, 0, 0, 1490, 1491, 3, 154, 77, 0, 1491, 1492, 5, 518, 0, 0, 1492, 1493, 3, 324, 162, 0, 1493, 213, 1, 0, 0, 0, 1494, 1495, 5, 374, 0, 0, 1495, 1496, 5, 517, 0, 0, 1496, 1497, 3, 216, 108, 0, 1497, 1498, 5, 518, 0, 0, 1498, 215, 1, 0, 0, 0, 1499, 1500, 3, 218, 109, 0, 1500, 1501, 5, 517, 0, 0, 1501, 1506, 3, 220, 110, 0, 1502, 1503, 5, 521, 0, 0, 1503, 1505, 3, 220, 110, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1510, 5, 518, 0, 0, 1510, 217, 1, 0, 0, 0, 1511, 1512, 7, 21, 0, 0, 1512, 219, 1, 0, 0, 0, 1513, 1514, 5, 374, 0, 0, 1514, 1529, 3, 242, 121, 0, 1515, 1529, 3, 224, 112, 0, 1516, 1529, 3, 312, 156, 0, 1517, 1518, 5, 447, 0, 0, 1518, 1519, 5, 537, 0, 0, 1519, 1520, 5, 374, 0, 0, 1520, 1529, 3, 242, 121, 0, 1521, 1522, 5, 499, 0, 0, 1522, 1523, 5, 537, 0, 0, 1523, 1529, 3, 224, 112, 0, 1524, 1525, 3, 222, 111, 0, 1525, 1526, 5, 537, 0, 0, 1526, 1527, 3, 312, 156, 0, 1527, 1529, 1, 0, 0, 0, 1528, 1513, 1, 0, 0, 0, 1528, 1515, 1, 0, 0, 0, 1528, 1516, 1, 0, 0, 0, 1528, 1517, 1, 0, 0, 0, 1528, 1521, 1, 0, 0, 0, 1528, 1524, 1, 0, 0, 0, 1529, 221, 1, 0, 0, 0, 1530, 1531, 7, 22, 0, 0, 1531, 223, 1, 0, 0, 0, 1532, 1533, 5, 452, 0, 0, 1533, 1534, 5, 517, 0, 0, 1534, 1535, 3, 54, 27, 0, 1535, 1536, 5, 518, 0, 0, 1536, 225, 1, 0, 0, 0, 1537, 1544, 5, 254, 0, 0, 1538, 1545, 3, 284, 142, 0, 1539, 1542, 3, 58, 29, 0, 1540, 1541, 5, 506, 0, 0, 1541, 1543, 3, 58, 29, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1538, 1, 0, 0, 0, 1544, 1539, 1, 0, 0, 0, 1545, 1549, 1, 0, 0, 0, 1546, 1547, 5, 413, 0, 0, 1547, 1549, 3, 60, 30, 0, 1548, 1537, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1549, 227, 1, 0, 0, 0, 1550, 1553, 5, 431, 0, 0, 1551, 1554, 3, 284, 142, 0, 1552, 1554, 3, 58, 29, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1552, 1, 0, 0, 0, 1554, 229, 1, 0, 0, 0, 1555, 1556, 5, 159, 0, 0, 1556, 1557, 5, 34, 0, 0, 1557, 1562, 3, 232, 116, 0, 1558, 1559, 5, 521, 0, 0, 1559, 1561, 3, 232, 116, 0, 1560, 1558, 1, 0, 0, 0, 1561, 1564, 1, 0, 0, 0, 1562, 1560, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 231, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1565, 1606, 3, 54, 27, 0, 1566, 1606, 3, 238, 119, 0, 1567, 1568, 5, 517, 0, 0, 1568, 1606, 5, 518, 0, 0, 1569, 1570, 5, 517, 0, 0, 1570, 1575, 3, 282, 141, 0, 1571, 1572, 5, 521, 0, 0, 1572, 1574, 3, 282, 141, 0, 1573, 1571, 1, 0, 0, 0, 1574, 1577, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1578, 1579, 5, 518, 0, 0, 1579, 1606, 1, 0, 0, 0, 1580, 1581, 3, 236, 118, 0, 1581, 1582, 5, 517, 0, 0, 1582, 1587, 3, 282, 141, 0, 1583, 1584, 5, 521, 0, 0, 1584, 1586, 3, 282, 141, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1589, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1590, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1591, 5, 518, 0, 0, 1591, 1606, 1, 0, 0, 0, 1592, 1593, 3, 234, 117, 0, 1593, 1594, 5, 517, 0, 0, 1594, 1599, 3, 232, 116, 0, 1595, 1596, 5, 521, 0, 0, 1596, 1598, 3, 232, 116, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1601, 1, 0, 0, 0, 1599, 1597, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 1603, 5, 518, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1606, 3, 282, 141, 0, 1605, 1565, 1, 0, 0, 0, 1605, 1566, 1, 0, 0, 0, 1605, 1567, 1, 0, 0, 0, 1605, 1569, 1, 0, 0, 0, 1605, 1580, 1, 0, 0, 0, 1605, 1592, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 233, 1, 0, 0, 0, 1607, 1608, 5, 160, 0, 0, 1608, 1609, 5, 494, 0, 0, 1609, 235, 1, 0, 0, 0, 1610, 1611, 7, 23, 0, 0, 1611, 237, 1, 0, 0, 0, 1612, 1613, 3, 240, 120, 0, 1613, 1614, 5, 517, 0, 0, 1614, 1615, 3, 242, 121, 0, 1615, 1616, 5, 521, 0, 0, 1616, 1617, 3, 312, 156, 0, 1617, 1618, 5, 518, 0, 0, 1618, 239, 1, 0, 0, 0, 1619, 1620, 7, 24, 0, 0, 1620, 241, 1, 0, 0, 0, 1621, 1622, 3, 358, 179, 0, 1622, 243, 1, 0, 0, 0, 1623, 1624, 5, 163, 0, 0, 1624, 1625, 3, 284, 142, 0, 1625, 245, 1, 0, 0, 0, 1626, 1627, 5, 433, 0, 0, 1627, 1632, 3, 248, 124, 0, 1628, 1629, 5, 521, 0, 0, 1629, 1631, 3, 248, 124, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1634, 1, 0, 0, 0, 1632, 1630, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 247, 1, 0, 0, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1636, 3, 326, 163, 0, 1636, 1637, 5, 17, 0, 0, 1637, 1638, 3, 250, 125, 0, 1638, 249, 1, 0, 0, 0, 1639, 1641, 3, 326, 163, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1644, 5, 517, 0, 0, 1643, 1645, 3, 260, 130, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1647, 1, 0, 0, 0, 1646, 1648, 3, 254, 127, 0, 1647, 1646, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1650, 1, 0, 0, 0, 1649, 1651, 3, 276, 138, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 5, 518, 0, 0, 1653, 251, 1, 0, 0, 0, 1654, 1655, 5, 214, 0, 0, 1655, 1657, 5, 517, 0, 0, 1656, 1658, 3, 260, 130, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1661, 3, 254, 127, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1663, 1, 0, 0, 0, 1662, 1664, 3, 264, 132, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1667, 3, 270, 135, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1669, 1, 0, 0, 0, 1668, 1670, 3, 272, 136, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1672, 1, 0, 0, 0, 1671, 1673, 3, 266, 133, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1675, 3, 274, 137, 0, 1675, 1680, 5, 518, 0, 0, 1676, 1678, 5, 17, 0, 0, 1677, 1676, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 3, 334, 167, 0, 1680, 1677, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 253, 1, 0, 0, 0, 1682, 1683, 5, 259, 0, 0, 1683, 1684, 5, 34, 0, 0, 1684, 1689, 3, 256, 128, 0, 1685, 1686, 5, 521, 0, 0, 1686, 1688, 3, 256, 128, 0, 1687, 1685, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 255, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1694, 3, 54, 27, 0, 1693, 1695, 7, 25, 0, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1697, 5, 477, 0, 0, 1697, 1699, 7, 26, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 257, 1, 0, 0, 0, 1700, 1703, 5, 205, 0, 0, 1701, 1704, 5, 5, 0, 0, 1702, 1704, 3, 282, 141, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1702, 1, 0, 0, 0, 1704, 259, 1, 0, 0, 0, 1705, 1706, 5, 269, 0, 0, 1706, 1709, 5, 34, 0, 0, 1707, 1710, 3, 54, 27, 0, 1708, 1710, 3, 294, 147, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1708, 1, 0, 0, 0, 1710, 1718, 1, 0, 0, 0, 1711, 1714, 5, 521, 0, 0, 1712, 1715, 3, 54, 27, 0, 1713, 1715, 3, 294, 147, 0, 1714, 1712, 1, 0, 0, 0, 1714, 1713, 1, 0, 0, 0, 1715, 1717, 1, 0, 0, 0, 1716, 1711, 1, 0, 0, 0, 1717, 1720, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 261, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1721, 1738, 5, 528, 0, 0, 1722, 1738, 5, 531, 0, 0, 1723, 1738, 5, 536, 0, 0, 1724, 1725, 5, 519, 0, 0, 1725, 1726, 5, 539, 0, 0, 1726, 1727, 5, 521, 0, 0, 1727, 1728, 5, 539, 0, 0, 1728, 1738, 5, 520, 0, 0, 1729, 1730, 5, 519, 0, 0, 1730, 1731, 5, 539, 0, 0, 1731, 1732, 5, 521, 0, 0, 1732, 1738, 5, 520, 0, 0, 1733, 1734, 5, 519, 0, 0, 1734, 1735, 5, 521, 0, 0, 1735, 1736, 5, 539, 0, 0, 1736, 1738, 5, 520, 0, 0, 1737, 1721, 1, 0, 0, 0, 1737, 1722, 1, 0, 0, 0, 1737, 1723, 1, 0, 0, 0, 1737, 1724, 1, 0, 0, 0, 1737, 1729, 1, 0, 0, 0, 1737, 1733, 1, 0, 0, 0, 1738, 263, 1, 0, 0, 0, 1739, 1740, 5, 216, 0, 0, 1740, 1745, 3, 190, 95, 0, 1741, 1742, 5, 521, 0, 0, 1742, 1744, 3, 190, 95, 0, 1743, 1741, 1, 0, 0, 0, 1744, 1747, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 265, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1749, 5, 272, 0, 0, 1749, 1751, 5, 517, 0, 0, 1750, 1752, 3, 268, 134, 0, 1751, 1750, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 5, 518, 0, 0, 1756, 1758, 3, 280, 140, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 267, 1, 0, 0, 0, 1759, 1761, 3, 336, 168, 0, 1760, 1762, 3, 262, 131, 0, 1761, 1760, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 269, 1, 0, 0, 0, 1763, 1764, 5, 5, 0, 0, 1764, 1765, 5, 323, 0, 0, 1765, 1766, 5, 273, 0, 0, 1766, 1772, 5, 211, 0, 0, 1767, 1768, 5, 255, 0, 0, 1768, 1769, 5, 322, 0, 0, 1769, 1770, 5, 273, 0, 0, 1770, 1772, 5, 211, 0, 0, 1771, 1763, 1, 0, 0, 0, 1771, 1767, 1, 0, 0, 0, 1772, 271, 1, 0, 0, 0, 1773, 1774, 5, 439, 0, 0, 1774, 1775, 5, 211, 0, 0, 1775, 1776, 5, 344, 0, 0, 1776, 1777, 5, 479, 0, 0, 1777, 1778, 5, 468, 0, 0, 1778, 1798, 5, 322, 0, 0, 1779, 1780, 5, 439, 0, 0, 1780, 1781, 5, 211, 0, 0, 1781, 1782, 5, 344, 0, 0, 1782, 1783, 5, 389, 0, 0, 1783, 1784, 5, 238, 0, 0, 1784, 1798, 5, 322, 0, 0, 1785, 1786, 5, 439, 0, 0, 1786, 1787, 5, 211, 0, 0, 1787, 1788, 5, 344, 0, 0, 1788, 1789, 5, 389, 0, 0, 1789, 1790, 5, 468, 0, 0, 1790, 1798, 3, 336, 168, 0, 1791, 1792, 5, 439, 0, 0, 1792, 1793, 5, 211, 0, 0, 1793, 1794, 5, 344, 0, 0, 1794, 1795, 5, 389, 0, 0, 1795, 1796, 5, 458, 0, 0, 1796, 1798, 3, 336, 168, 0, 1797, 1773, 1, 0, 0, 0, 1797, 1779, 1, 0, 0, 0, 1797, 1785, 1, 0, 0, 0, 1797, 1791, 1, 0, 0, 0, 1798, 273, 1, 0, 0, 0, 1799, 1800, 5, 105, 0, 0, 1800, 1805, 3, 190, 95, 0, 1801, 1802, 5, 521, 0, 0, 1802, 1804, 3, 190, 95, 0, 1803, 1801, 1, 0, 0, 0, 1804, 1807, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 275, 1, 0, 0, 0, 1807, 1805, 1, 0, 0, 0, 1808, 1809, 5, 293, 0, 0, 1809, 1810, 5, 27, 0, 0, 1810, 1811, 3, 312, 156, 0, 1811, 1812, 3, 278, 139, 0, 1812, 1818, 1, 0, 0, 0, 1813, 1814, 5, 323, 0, 0, 1814, 1815, 5, 27, 0, 0, 1815, 1816, 5, 539, 0, 0, 1816, 1818, 3, 278, 139, 0, 1817, 1808, 1, 0, 0, 0, 1817, 1813, 1, 0, 0, 0, 1818, 277, 1, 0, 0, 0, 1819, 1820, 5, 481, 0, 0, 1820, 1821, 5, 10, 0, 0, 1821, 1822, 5, 76, 0, 0, 1822, 1823, 5, 322, 0, 0, 1823, 279, 1, 0, 0, 0, 1824, 1825, 5, 435, 0, 0, 1825, 1826, 3, 312, 156, 0, 1826, 281, 1, 0, 0, 0, 1827, 1828, 3, 284, 142, 0, 1828, 283, 1, 0, 0, 0, 1829, 1830, 6, 142, -1, 0, 1830, 1831, 5, 242, 0, 0, 1831, 1842, 3, 284, 142, 6, 1832, 1833, 5, 133, 0, 0, 1833, 1834, 5, 517, 0, 0, 1834, 1835, 3, 164, 82, 0, 1835, 1836, 5, 518, 0, 0, 1836, 1842, 1, 0, 0, 0, 1837, 1839, 3, 290, 145, 0, 1838, 1840, 3, 286, 143, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1842, 1, 0, 0, 0, 1841, 1829, 1, 0, 0, 0, 1841, 1832, 1, 0, 0, 0, 1841, 1837, 1, 0, 0, 0, 1842, 1857, 1, 0, 0, 0, 1843, 1844, 10, 3, 0, 0, 1844, 1845, 5, 10, 0, 0, 1845, 1856, 3, 284, 142, 4, 1846, 1847, 10, 2, 0, 0, 1847, 1848, 5, 258, 0, 0, 1848, 1856, 3, 284, 142, 3, 1849, 1850, 10, 1, 0, 0, 1850, 1852, 5, 184, 0, 0, 1851, 1853, 5, 242, 0, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 7, 27, 0, 0, 1855, 1843, 1, 0, 0, 0, 1855, 1846, 1, 0, 0, 0, 1855, 1849, 1, 0, 0, 0, 1856, 1859, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 285, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1862, 5, 242, 0, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1865, 5, 27, 0, 0, 1864, 1866, 7, 28, 0, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 3, 290, 145, 0, 1868, 1869, 5, 10, 0, 0, 1869, 1870, 3, 290, 145, 0, 1870, 1935, 1, 0, 0, 0, 1871, 1873, 5, 242, 0, 0, 1872, 1871, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1875, 5, 170, 0, 0, 1875, 1876, 5, 517, 0, 0, 1876, 1881, 3, 282, 141, 0, 1877, 1878, 5, 521, 0, 0, 1878, 1880, 3, 282, 141, 0, 1879, 1877, 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, 5, 518, 0, 0, 1885, 1935, 1, 0, 0, 0, 1886, 1888, 5, 242, 0, 0, 1887, 1886, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 5, 170, 0, 0, 1890, 1891, 5, 517, 0, 0, 1891, 1892, 3, 164, 82, 0, 1892, 1893, 5, 518, 0, 0, 1893, 1935, 1, 0, 0, 0, 1894, 1895, 5, 133, 0, 0, 1895, 1896, 5, 517, 0, 0, 1896, 1897, 3, 164, 82, 0, 1897, 1898, 5, 518, 0, 0, 1898, 1935, 1, 0, 0, 0, 1899, 1901, 5, 242, 0, 0, 1900, 1899, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 5, 319, 0, 0, 1903, 1935, 3, 290, 145, 0, 1904, 1935, 3, 288, 144, 0, 1905, 1907, 5, 184, 0, 0, 1906, 1908, 5, 242, 0, 0, 1907, 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1935, 7, 27, 0, 0, 1910, 1912, 5, 184, 0, 0, 1911, 1913, 5, 242, 0, 0, 1912, 1911, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 5, 113, 0, 0, 1915, 1916, 5, 151, 0, 0, 1916, 1935, 3, 290, 145, 0, 1917, 1919, 5, 242, 0, 0, 1918, 1917, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 5, 343, 0, 0, 1921, 1922, 5, 389, 0, 0, 1922, 1925, 3, 290, 145, 0, 1923, 1924, 5, 127, 0, 0, 1924, 1926, 3, 390, 195, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1935, 1, 0, 0, 0, 1927, 1928, 5, 184, 0, 0, 1928, 1932, 5, 186, 0, 0, 1929, 1933, 5, 414, 0, 0, 1930, 1933, 5, 13, 0, 0, 1931, 1933, 3, 334, 167, 0, 1932, 1929, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1931, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1935, 1, 0, 0, 0, 1934, 1861, 1, 0, 0, 0, 1934, 1872, 1, 0, 0, 0, 1934, 1887, 1, 0, 0, 0, 1934, 1894, 1, 0, 0, 0, 1934, 1900, 1, 0, 0, 0, 1934, 1904, 1, 0, 0, 0, 1934, 1905, 1, 0, 0, 0, 1934, 1910, 1, 0, 0, 0, 1934, 1918, 1, 0, 0, 0, 1934, 1927, 1, 0, 0, 0, 1935, 287, 1, 0, 0, 0, 1936, 1938, 5, 242, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 5, 203, 0, 0, 1940, 1954, 7, 29, 0, 0, 1941, 1942, 5, 517, 0, 0, 1942, 1955, 5, 518, 0, 0, 1943, 1944, 5, 517, 0, 0, 1944, 1949, 3, 282, 141, 0, 1945, 1946, 5, 521, 0, 0, 1946, 1948, 3, 282, 141, 0, 1947, 1945, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1952, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1953, 5, 518, 0, 0, 1953, 1955, 1, 0, 0, 0, 1954, 1941, 1, 0, 0, 0, 1954, 1943, 1, 0, 0, 0, 1955, 1966, 1, 0, 0, 0, 1956, 1958, 5, 242, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 5, 203, 0, 0, 1960, 1963, 3, 290, 145, 0, 1961, 1962, 5, 127, 0, 0, 1962, 1964, 3, 390, 195, 0, 1963, 1961, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1937, 1, 0, 0, 0, 1965, 1957, 1, 0, 0, 0, 1966, 289, 1, 0, 0, 0, 1967, 1968, 6, 145, -1, 0, 1968, 1972, 3, 294, 147, 0, 1969, 1970, 7, 30, 0, 0, 1970, 1972, 3, 290, 145, 7, 1971, 1967, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1972, 1994, 1, 0, 0, 0, 1973, 1974, 10, 6, 0, 0, 1974, 1975, 7, 31, 0, 0, 1975, 1993, 3, 290, 145, 7, 1976, 1977, 10, 5, 0, 0, 1977, 1978, 7, 32, 0, 0, 1978, 1993, 3, 290, 145, 6, 1979, 1980, 10, 4, 0, 0, 1980, 1981, 5, 512, 0, 0, 1981, 1993, 3, 290, 145, 5, 1982, 1983, 10, 3, 0, 0, 1983, 1984, 5, 513, 0, 0, 1984, 1993, 3, 290, 145, 4, 1985, 1986, 10, 2, 0, 0, 1986, 1987, 5, 511, 0, 0, 1987, 1993, 3, 290, 145, 3, 1988, 1989, 10, 1, 0, 0, 1989, 1990, 3, 378, 189, 0, 1990, 1991, 3, 290, 145, 2, 1991, 1993, 1, 0, 0, 0, 1992, 1973, 1, 0, 0, 0, 1992, 1976, 1, 0, 0, 0, 1992, 1979, 1, 0, 0, 0, 1992, 1982, 1, 0, 0, 0, 1992, 1985, 1, 0, 0, 0, 1992, 1988, 1, 0, 0, 0, 1993, 1996, 1, 0, 0, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 291, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1997, 2017, 3, 404, 202, 0, 1998, 2017, 3, 300, 150, 0, 1999, 2000, 3, 302, 151, 0, 2000, 2012, 5, 517, 0, 0, 2001, 2003, 3, 396, 198, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2009, 3, 304, 152, 0, 2005, 2006, 5, 521, 0, 0, 2006, 2008, 3, 304, 152, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2013, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2002, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 5, 518, 0, 0, 2015, 2017, 1, 0, 0, 0, 2016, 1997, 1, 0, 0, 0, 2016, 1998, 1, 0, 0, 0, 2016, 1999, 1, 0, 0, 0, 2017, 293, 1, 0, 0, 0, 2018, 2019, 6, 147, -1, 0, 2019, 2021, 5, 40, 0, 0, 2020, 2022, 3, 340, 170, 0, 2021, 2020, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2027, 1, 0, 0, 0, 2025, 2026, 5, 120, 0, 0, 2026, 2028, 3, 282, 141, 0, 2027, 2025, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 5, 122, 0, 0, 2030, 2094, 1, 0, 0, 0, 2031, 2032, 5, 40, 0, 0, 2032, 2034, 3, 282, 141, 0, 2033, 2035, 3, 340, 170, 0, 2034, 2033, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2039, 5, 120, 0, 0, 2039, 2041, 3, 282, 141, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2043, 5, 122, 0, 0, 2043, 2094, 1, 0, 0, 0, 2044, 2045, 5, 41, 0, 0, 2045, 2046, 5, 517, 0, 0, 2046, 2047, 3, 282, 141, 0, 2047, 2048, 5, 17, 0, 0, 2048, 2049, 3, 62, 31, 0, 2049, 2050, 5, 518, 0, 0, 2050, 2094, 1, 0, 0, 0, 2051, 2052, 5, 458, 0, 0, 2052, 2053, 5, 517, 0, 0, 2053, 2056, 3, 282, 141, 0, 2054, 2055, 5, 462, 0, 0, 2055, 2057, 5, 477, 0, 0, 2056, 2054, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 5, 518, 0, 0, 2059, 2094, 1, 0, 0, 0, 2060, 2061, 5, 468, 0, 0, 2061, 2062, 5, 517, 0, 0, 2062, 2065, 3, 282, 141, 0, 2063, 2064, 5, 462, 0, 0, 2064, 2066, 5, 477, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 5, 518, 0, 0, 2068, 2094, 1, 0, 0, 0, 2069, 2070, 5, 282, 0, 0, 2070, 2071, 5, 517, 0, 0, 2071, 2072, 3, 290, 145, 0, 2072, 2073, 5, 170, 0, 0, 2073, 2074, 3, 290, 145, 0, 2074, 2075, 5, 518, 0, 0, 2075, 2094, 1, 0, 0, 0, 2076, 2094, 3, 386, 193, 0, 2077, 2094, 5, 528, 0, 0, 2078, 2079, 3, 358, 179, 0, 2079, 2080, 5, 514, 0, 0, 2080, 2081, 5, 528, 0, 0, 2081, 2094, 1, 0, 0, 0, 2082, 2083, 5, 517, 0, 0, 2083, 2084, 3, 164, 82, 0, 2084, 2085, 5, 518, 0, 0, 2085, 2094, 1, 0, 0, 0, 2086, 2094, 3, 292, 146, 0, 2087, 2094, 3, 56, 28, 0, 2088, 2094, 3, 306, 153, 0, 2089, 2090, 5, 517, 0, 0, 2090, 2091, 3, 282, 141, 0, 2091, 2092, 5, 518, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2018, 1, 0, 0, 0, 2093, 2031, 1, 0, 0, 0, 2093, 2044, 1, 0, 0, 0, 2093, 2051, 1, 0, 0, 0, 2093, 2060, 1, 0, 0, 0, 2093, 2069, 1, 0, 0, 0, 2093, 2076, 1, 0, 0, 0, 2093, 2077, 1, 0, 0, 0, 2093, 2078, 1, 0, 0, 0, 2093, 2082, 1, 0, 0, 0, 2093, 2086, 1, 0, 0, 0, 2093, 2087, 1, 0, 0, 0, 2093, 2088, 1, 0, 0, 0, 2093, 2089, 1, 0, 0, 0, 2094, 2102, 1, 0, 0, 0, 2095, 2096, 10, 4, 0, 0, 2096, 2097, 5, 515, 0, 0, 2097, 2098, 3, 290, 145, 0, 2098, 2099, 5, 516, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2095, 1, 0, 0, 0, 2101, 2104, 1, 0, 0, 0, 2102, 2100, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 295, 1, 0, 0, 0, 2104, 2102, 1, 0, 0, 0, 2105, 2106, 3, 358, 179, 0, 2106, 297, 1, 0, 0, 0, 2107, 2112, 3, 408, 204, 0, 2108, 2112, 3, 404, 202, 0, 2109, 2112, 3, 406, 203, 0, 2110, 2112, 3, 358, 179, 0, 2111, 2107, 1, 0, 0, 0, 2111, 2108, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2110, 1, 0, 0, 0, 2112, 299, 1, 0, 0, 0, 2113, 2114, 3, 406, 203, 0, 2114, 2115, 5, 538, 0, 0, 2115, 2118, 1, 0, 0, 0, 2116, 2118, 3, 312, 156, 0, 2117, 2113, 1, 0, 0, 0, 2117, 2116, 1, 0, 0, 0, 2118, 301, 1, 0, 0, 0, 2119, 2122, 3, 408, 204, 0, 2120, 2122, 3, 358, 179, 0, 2121, 2119, 1, 0, 0, 0, 2121, 2120, 1, 0, 0, 0, 2122, 303, 1, 0, 0, 0, 2123, 2128, 3, 402, 201, 0, 2124, 2128, 3, 400, 200, 0, 2125, 2128, 3, 398, 199, 0, 2126, 2128, 3, 282, 141, 0, 2127, 2123, 1, 0, 0, 0, 2127, 2124, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2127, 2126, 1, 0, 0, 0, 2128, 305, 1, 0, 0, 0, 2129, 2130, 3, 358, 179, 0, 2130, 307, 1, 0, 0, 0, 2131, 2132, 3, 334, 167, 0, 2132, 309, 1, 0, 0, 0, 2133, 2136, 3, 334, 167, 0, 2134, 2136, 3, 306, 153, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2134, 1, 0, 0, 0, 2136, 311, 1, 0, 0, 0, 2137, 2140, 5, 182, 0, 0, 2138, 2141, 3, 314, 157, 0, 2139, 2141, 3, 318, 159, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 313, 1, 0, 0, 0, 2142, 2144, 3, 316, 158, 0, 2143, 2145, 3, 320, 160, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 315, 1, 0, 0, 0, 2146, 2147, 3, 322, 161, 0, 2147, 2148, 3, 400, 200, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2146, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2149, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 317, 1, 0, 0, 0, 2153, 2156, 3, 320, 160, 0, 2154, 2157, 3, 316, 158, 0, 2155, 2157, 3, 320, 160, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 319, 1, 0, 0, 0, 2158, 2159, 3, 322, 161, 0, 2159, 2160, 3, 400, 200, 0, 2160, 2161, 5, 389, 0, 0, 2161, 2162, 3, 400, 200, 0, 2162, 321, 1, 0, 0, 0, 2163, 2165, 7, 33, 0, 0, 2164, 2163, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2169, 7, 34, 0, 0, 2167, 2169, 5, 538, 0, 0, 2168, 2164, 1, 0, 0, 0, 2168, 2167, 1, 0, 0, 0, 2169, 323, 1, 0, 0, 0, 2170, 2172, 5, 17, 0, 0, 2171, 2170, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 3, 334, 167, 0, 2174, 2176, 3, 330, 165, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 325, 1, 0, 0, 0, 2177, 2178, 3, 334, 167, 0, 2178, 2179, 3, 328, 164, 0, 2179, 327, 1, 0, 0, 0, 2180, 2181, 5, 222, 0, 0, 2181, 2183, 3, 334, 167, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2188, 1, 0, 0, 0, 2186, 2188, 1, 0, 0, 0, 2187, 2182, 1, 0, 0, 0, 2187, 2186, 1, 0, 0, 0, 2188, 329, 1, 0, 0, 0, 2189, 2190, 5, 517, 0, 0, 2190, 2191, 3, 332, 166, 0, 2191, 2192, 5, 518, 0, 0, 2192, 331, 1, 0, 0, 0, 2193, 2198, 3, 334, 167, 0, 2194, 2195, 5, 521, 0, 0, 2195, 2197, 3, 334, 167, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 333, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2201, 2205, 3, 336, 168, 0, 2202, 2205, 3, 338, 169, 0, 2203, 2205, 3, 410, 205, 0, 2204, 2201, 1, 0, 0, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2203, 1, 0, 0, 0, 2205, 335, 1, 0, 0, 0, 2206, 2207, 7, 35, 0, 0, 2207, 337, 1, 0, 0, 0, 2208, 2209, 5, 538, 0, 0, 2209, 339, 1, 0, 0, 0, 2210, 2211, 5, 429, 0, 0, 2211, 2212, 3, 282, 141, 0, 2212, 2213, 5, 377, 0, 0, 2213, 2214, 3, 282, 141, 0, 2214, 341, 1, 0, 0, 0, 2215, 2216, 3, 334, 167, 0, 2216, 343, 1, 0, 0, 0, 2217, 2218, 3, 334, 167, 0, 2218, 345, 1, 0, 0, 0, 2219, 2222, 3, 334, 167, 0, 2220, 2221, 5, 514, 0, 0, 2221, 2223, 3, 334, 167, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 347, 1, 0, 0, 0, 2224, 2227, 3, 334, 167, 0, 2225, 2226, 5, 514, 0, 0, 2226, 2228, 3, 334, 167, 0, 2227, 2225, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 349, 1, 0, 0, 0, 2229, 2232, 3, 334, 167, 0, 2230, 2231, 5, 514, 0, 0, 2231, 2233, 3, 334, 167, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2242, 1, 0, 0, 0, 2234, 2235, 3, 334, 167, 0, 2235, 2236, 5, 514, 0, 0, 2236, 2239, 3, 334, 167, 0, 2237, 2238, 5, 514, 0, 0, 2238, 2240, 3, 334, 167, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2242, 1, 0, 0, 0, 2241, 2229, 1, 0, 0, 0, 2241, 2234, 1, 0, 0, 0, 2242, 351, 1, 0, 0, 0, 2243, 2246, 3, 334, 167, 0, 2244, 2245, 5, 514, 0, 0, 2245, 2247, 3, 334, 167, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2256, 1, 0, 0, 0, 2248, 2249, 3, 334, 167, 0, 2249, 2250, 5, 514, 0, 0, 2250, 2253, 3, 334, 167, 0, 2251, 2252, 5, 514, 0, 0, 2252, 2254, 3, 334, 167, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2243, 1, 0, 0, 0, 2255, 2248, 1, 0, 0, 0, 2256, 353, 1, 0, 0, 0, 2257, 2260, 3, 334, 167, 0, 2258, 2259, 5, 514, 0, 0, 2259, 2261, 3, 334, 167, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2270, 1, 0, 0, 0, 2262, 2263, 3, 334, 167, 0, 2263, 2264, 5, 514, 0, 0, 2264, 2267, 3, 334, 167, 0, 2265, 2266, 5, 514, 0, 0, 2266, 2268, 3, 334, 167, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2270, 1, 0, 0, 0, 2269, 2257, 1, 0, 0, 0, 2269, 2262, 1, 0, 0, 0, 2270, 355, 1, 0, 0, 0, 2271, 2274, 3, 334, 167, 0, 2272, 2273, 5, 514, 0, 0, 2273, 2275, 3, 334, 167, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2284, 1, 0, 0, 0, 2276, 2277, 3, 334, 167, 0, 2277, 2278, 5, 514, 0, 0, 2278, 2281, 3, 334, 167, 0, 2279, 2280, 5, 514, 0, 0, 2280, 2282, 3, 334, 167, 0, 2281, 2279, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2284, 1, 0, 0, 0, 2283, 2271, 1, 0, 0, 0, 2283, 2276, 1, 0, 0, 0, 2284, 357, 1, 0, 0, 0, 2285, 2290, 3, 334, 167, 0, 2286, 2287, 5, 514, 0, 0, 2287, 2289, 3, 334, 167, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 1, 0, 0, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 359, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2293, 2298, 3, 334, 167, 0, 2294, 2295, 5, 514, 0, 0, 2295, 2297, 3, 334, 167, 0, 2296, 2294, 1, 0, 0, 0, 2297, 2300, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2307, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2301, 2302, 4, 180, 15, 0, 2302, 2303, 3, 334, 167, 0, 2303, 2304, 5, 514, 0, 0, 2304, 2305, 3, 52, 26, 0, 2305, 2307, 1, 0, 0, 0, 2306, 2293, 1, 0, 0, 0, 2306, 2301, 1, 0, 0, 0, 2307, 361, 1, 0, 0, 0, 2308, 2309, 5, 434, 0, 0, 2309, 2310, 3, 368, 184, 0, 2310, 363, 1, 0, 0, 0, 2311, 2312, 5, 167, 0, 0, 2312, 2313, 5, 242, 0, 0, 2313, 2314, 5, 133, 0, 0, 2314, 365, 1, 0, 0, 0, 2315, 2316, 5, 167, 0, 0, 2316, 2317, 5, 133, 0, 0, 2317, 367, 1, 0, 0, 0, 2318, 2319, 5, 517, 0, 0, 2319, 2324, 3, 370, 185, 0, 2320, 2321, 5, 521, 0, 0, 2321, 2323, 3, 370, 185, 0, 2322, 2320, 1, 0, 0, 0, 2323, 2326, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2327, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2328, 5, 518, 0, 0, 2328, 369, 1, 0, 0, 0, 2329, 2334, 3, 372, 186, 0, 2330, 2332, 5, 506, 0, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2335, 3, 374, 187, 0, 2334, 2331, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 371, 1, 0, 0, 0, 2336, 2340, 3, 334, 167, 0, 2337, 2340, 3, 306, 153, 0, 2338, 2340, 5, 538, 0, 0, 2339, 2336, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2339, 2338, 1, 0, 0, 0, 2340, 373, 1, 0, 0, 0, 2341, 2346, 5, 539, 0, 0, 2342, 2346, 5, 540, 0, 0, 2343, 2346, 3, 394, 197, 0, 2344, 2346, 5, 538, 0, 0, 2345, 2341, 1, 0, 0, 0, 2345, 2342, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2344, 1, 0, 0, 0, 2346, 375, 1, 0, 0, 0, 2347, 2354, 5, 10, 0, 0, 2348, 2349, 5, 512, 0, 0, 2349, 2354, 5, 512, 0, 0, 2350, 2354, 5, 258, 0, 0, 2351, 2352, 5, 511, 0, 0, 2352, 2354, 5, 511, 0, 0, 2353, 2347, 1, 0, 0, 0, 2353, 2348, 1, 0, 0, 0, 2353, 2350, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2354, 377, 1, 0, 0, 0, 2355, 2370, 5, 506, 0, 0, 2356, 2370, 5, 507, 0, 0, 2357, 2370, 5, 508, 0, 0, 2358, 2359, 5, 508, 0, 0, 2359, 2370, 5, 506, 0, 0, 2360, 2361, 5, 507, 0, 0, 2361, 2370, 5, 506, 0, 0, 2362, 2363, 5, 508, 0, 0, 2363, 2370, 5, 507, 0, 0, 2364, 2365, 5, 509, 0, 0, 2365, 2370, 5, 506, 0, 0, 2366, 2367, 5, 508, 0, 0, 2367, 2368, 5, 506, 0, 0, 2368, 2370, 5, 507, 0, 0, 2369, 2355, 1, 0, 0, 0, 2369, 2356, 1, 0, 0, 0, 2369, 2357, 1, 0, 0, 0, 2369, 2358, 1, 0, 0, 0, 2369, 2360, 1, 0, 0, 0, 2369, 2362, 1, 0, 0, 0, 2369, 2364, 1, 0, 0, 0, 2369, 2366, 1, 0, 0, 0, 2370, 379, 1, 0, 0, 0, 2371, 2372, 5, 508, 0, 0, 2372, 2379, 5, 508, 0, 0, 2373, 2374, 5, 507, 0, 0, 2374, 2379, 5, 507, 0, 0, 2375, 2379, 5, 512, 0, 0, 2376, 2379, 5, 513, 0, 0, 2377, 2379, 5, 511, 0, 0, 2378, 2371, 1, 0, 0, 0, 2378, 2373, 1, 0, 0, 0, 2378, 2375, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2378, 2377, 1, 0, 0, 0, 2379, 381, 1, 0, 0, 0, 2380, 2381, 7, 36, 0, 0, 2381, 383, 1, 0, 0, 0, 2382, 2383, 7, 37, 0, 0, 2383, 385, 1, 0, 0, 0, 2384, 2399, 3, 312, 156, 0, 2385, 2399, 3, 388, 194, 0, 2386, 2399, 3, 390, 195, 0, 2387, 2389, 5, 530, 0, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2399, 3, 392, 196, 0, 2391, 2399, 3, 394, 197, 0, 2392, 2399, 5, 540, 0, 0, 2393, 2399, 5, 541, 0, 0, 2394, 2396, 5, 242, 0, 0, 2395, 2394, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2399, 5, 245, 0, 0, 2398, 2384, 1, 0, 0, 0, 2398, 2385, 1, 0, 0, 0, 2398, 2386, 1, 0, 0, 0, 2398, 2388, 1, 0, 0, 0, 2398, 2391, 1, 0, 0, 0, 2398, 2392, 1, 0, 0, 0, 2398, 2393, 1, 0, 0, 0, 2398, 2395, 1, 0, 0, 0, 2399, 387, 1, 0, 0, 0, 2400, 2401, 3, 398, 199, 0, 2401, 2402, 3, 390, 195, 0, 2402, 389, 1, 0, 0, 0, 2403, 2404, 5, 538, 0, 0, 2404, 391, 1, 0, 0, 0, 2405, 2406, 5, 539, 0, 0, 2406, 393, 1, 0, 0, 0, 2407, 2408, 7, 38, 0, 0, 2408, 395, 1, 0, 0, 0, 2409, 2410, 7, 39, 0, 0, 2410, 397, 1, 0, 0, 0, 2411, 2412, 7, 40, 0, 0, 2412, 399, 1, 0, 0, 0, 2413, 2414, 7, 41, 0, 0, 2414, 401, 1, 0, 0, 0, 2415, 2416, 7, 42, 0, 0, 2416, 403, 1, 0, 0, 0, 2417, 2418, 7, 43, 0, 0, 2418, 405, 1, 0, 0, 0, 2419, 2420, 7, 44, 0, 0, 2420, 407, 1, 0, 0, 0, 2421, 2422, 7, 45, 0, 0, 2422, 409, 1, 0, 0, 0, 2423, 2424, 7, 46, 0, 0, 2424, 411, 1, 0, 0, 0, 289, 415, 422, 425, 439, 457, 461, 470, 475, 482, 493, 502, 514, 517, 524, 527, 535, 539, 544, 547, 554, 562, 566, 578, 586, 590, 622, 625, 630, 634, 638, 642, 651, 656, 660, 664, 669, 672, 676, 681, 687, 692, 697, 701, 705, 712, 719, 727, 735, 739, 743, 747, 751, 755, 759, 763, 767, 769, 779, 787, 811, 825, 830, 834, 840, 843, 846, 853, 856, 865, 877, 901, 913, 918, 922, 930, 934, 940, 950, 955, 961, 965, 969, 973, 982, 986, 993, 996, 1006, 1014, 1022, 1026, 1041, 1060, 1071, 1075, 1082, 1087, 1093, 1097, 1104, 1108, 1112, 1116, 1124, 1128, 1133, 1139, 1145, 1148, 1152, 1163, 1172, 1179, 1190, 1202, 1217, 1220, 1224, 1227, 1229, 1234, 1238, 1241, 1245, 1254, 1263, 1273, 1278, 1289, 1292, 1295, 1298, 1301, 1307, 1311, 1320, 1327, 1330, 1334, 1339, 1342, 1344, 1353, 1360, 1363, 1367, 1370, 1372, 1379, 1384, 1400, 1411, 1416, 1424, 1427, 1430, 1435, 1437, 1439, 1444, 1447, 1451, 1455, 1459, 1468, 1479, 1506, 1528, 1542, 1544, 1548, 1553, 1562, 1575, 1587, 1599, 1605, 1632, 1640, 1644, 1647, 1650, 1657, 1660, 1663, 1666, 1669, 1672, 1677, 1680, 1689, 1694, 1698, 1703, 1709, 1714, 1718, 1737, 1745, 1753, 1757, 1761, 1771, 1797, 1805, 1817, 1839, 1841, 1852, 1855, 1857, 1861, 1865, 1872, 1881, 1887, 1900, 1907, 1912, 1918, 1925, 1932, 1934, 1937, 1949, 1954, 1957, 1963, 1965, 1971, 1992, 1994, 2002, 2009, 2012, 2016, 2023, 2027, 2036, 2040, 2056, 2065, 2093, 2102, 2111, 2117, 2121, 2127, 2135, 2140, 2144, 2151, 2156, 2164, 2168, 2171, 2175, 2184, 2187, 2198, 2204, 2222, 2227, 2232, 2239, 2241, 2246, 2253, 2255, 2260, 2267, 2269, 2274, 2281, 2283, 2290, 2298, 2306, 2324, 2331, 2334, 2339, 2345, 2353, 2369, 2378, 2388, 2395, 2398] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 624da819..293f1b2c 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -585,183 +585,186 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_columnOptionDefinition = 23; public static readonly RULE_physicalColumnDefinition = 24; public static readonly RULE_columnNameCreate = 25; - public static readonly RULE_columnName = 26; - public static readonly RULE_columnNamePath = 27; - public static readonly RULE_columnNameList = 28; - public static readonly RULE_columnType = 29; - public static readonly RULE_lengthOneDimension = 30; - public static readonly RULE_lengthTwoOptionalDimension = 31; - public static readonly RULE_lengthTwoStringDimension = 32; - public static readonly RULE_lengthOneTypeDimension = 33; - public static readonly RULE_mapTypeDimension = 34; - public static readonly RULE_rowTypeDimension = 35; - public static readonly RULE_columnConstraint = 36; - public static readonly RULE_metadataColumnDefinition = 37; - public static readonly RULE_metadataKey = 38; - public static readonly RULE_computedColumnDefinition = 39; - public static readonly RULE_computedColumnExpression = 40; - public static readonly RULE_watermarkDefinition = 41; - public static readonly RULE_tableConstraint = 42; - public static readonly RULE_constraintName = 43; - public static readonly RULE_selfDefinitionClause = 44; - public static readonly RULE_partitionDefinition = 45; - public static readonly RULE_transformList = 46; - public static readonly RULE_transform = 47; - public static readonly RULE_transformArgument = 48; - public static readonly RULE_likeDefinition = 49; - public static readonly RULE_likeOption = 50; - public static readonly RULE_createCatalog = 51; - public static readonly RULE_createDatabase = 52; - public static readonly RULE_createView = 53; - public static readonly RULE_createFunction = 54; - public static readonly RULE_usingClause = 55; - public static readonly RULE_jarFileName = 56; - public static readonly RULE_alterTable = 57; - public static readonly RULE_renameDefinition = 58; - public static readonly RULE_setKeyValueDefinition = 59; - public static readonly RULE_addConstraint = 60; - public static readonly RULE_dropConstraint = 61; - public static readonly RULE_addUnique = 62; - public static readonly RULE_notForced = 63; - public static readonly RULE_alterView = 64; - public static readonly RULE_alterDatabase = 65; - public static readonly RULE_alterFunction = 66; - public static readonly RULE_dropCatalog = 67; - public static readonly RULE_dropTable = 68; - public static readonly RULE_dropDatabase = 69; - public static readonly RULE_dropView = 70; - public static readonly RULE_dropFunction = 71; - public static readonly RULE_insertStatement = 72; - public static readonly RULE_insertSimpleStatement = 73; - public static readonly RULE_insertPartitionDefinition = 74; - public static readonly RULE_valuesDefinition = 75; - public static readonly RULE_valuesRowDefinition = 76; - public static readonly RULE_valueDefinition = 77; - public static readonly RULE_insertMulStatementCompatibility = 78; - public static readonly RULE_insertMulStatement = 79; - public static readonly RULE_queryStatement = 80; - public static readonly RULE_valuesClause = 81; - public static readonly RULE_withClause = 82; - public static readonly RULE_withItem = 83; - public static readonly RULE_withItemName = 84; - public static readonly RULE_selectStatement = 85; - public static readonly RULE_selectClause = 86; - public static readonly RULE_selectList = 87; - public static readonly RULE_columnProjectItem = 88; - public static readonly RULE_selectWindowItemColumnName = 89; - public static readonly RULE_selectExpressionColumnName = 90; - public static readonly RULE_selectLiteralColumnName = 91; - public static readonly RULE_columnAlias = 92; - public static readonly RULE_projectItemDefinition = 93; - public static readonly RULE_tableAllColumns = 94; - public static readonly RULE_overWindowItem = 95; - public static readonly RULE_fromClause = 96; - public static readonly RULE_tableExpression = 97; - public static readonly RULE_tableReference = 98; - public static readonly RULE_tablePrimary = 99; - public static readonly RULE_atomFunctionTable = 100; - public static readonly RULE_atomExpressionTable = 101; - public static readonly RULE_systemTimePeriod = 102; - public static readonly RULE_dateTimeExpression = 103; - public static readonly RULE_inlineDataValueClause = 104; - public static readonly RULE_windowTVFClause = 105; - public static readonly RULE_windowTVFExpression = 106; - public static readonly RULE_windowTVFName = 107; - public static readonly RULE_windowTVFParam = 108; - public static readonly RULE_timeIntervalParamName = 109; - public static readonly RULE_columnDescriptor = 110; - public static readonly RULE_joinCondition = 111; - public static readonly RULE_whereClause = 112; - public static readonly RULE_groupByClause = 113; - public static readonly RULE_groupItemDefinition = 114; - public static readonly RULE_groupingSets = 115; - public static readonly RULE_groupingSetsNotationName = 116; - public static readonly RULE_groupWindowFunction = 117; - public static readonly RULE_groupWindowFunctionName = 118; - public static readonly RULE_timeAttrColumn = 119; - public static readonly RULE_havingClause = 120; - public static readonly RULE_windowClause = 121; - public static readonly RULE_namedWindow = 122; - public static readonly RULE_windowSpec = 123; - public static readonly RULE_matchRecognizeClause = 124; - public static readonly RULE_orderByClause = 125; - public static readonly RULE_orderItemDefinition = 126; - public static readonly RULE_limitClause = 127; - public static readonly RULE_partitionByClause = 128; - public static readonly RULE_quantifiers = 129; - public static readonly RULE_measuresClause = 130; - public static readonly RULE_patternDefinition = 131; - public static readonly RULE_patternVariable = 132; - public static readonly RULE_outputMode = 133; - public static readonly RULE_afterMatchStrategy = 134; - public static readonly RULE_patternVariablesDefinition = 135; - public static readonly RULE_windowFrame = 136; - public static readonly RULE_frameBound = 137; - public static readonly RULE_withinClause = 138; - public static readonly RULE_expression = 139; - public static readonly RULE_booleanExpression = 140; - public static readonly RULE_predicate = 141; - public static readonly RULE_likePredicate = 142; - public static readonly RULE_valueExpression = 143; - public static readonly RULE_functionCallExpression = 144; - public static readonly RULE_primaryExpression = 145; - public static readonly RULE_functionNameCreate = 146; - public static readonly RULE_functionName = 147; - public static readonly RULE_functionNameAndParams = 148; - public static readonly RULE_functionNameWithParams = 149; - public static readonly RULE_functionParam = 150; - public static readonly RULE_dereferenceDefinition = 151; - public static readonly RULE_correlationName = 152; - public static readonly RULE_qualifiedName = 153; - public static readonly RULE_timeIntervalExpression = 154; - public static readonly RULE_errorCapturingMultiUnitsInterval = 155; - public static readonly RULE_multiUnitsInterval = 156; - public static readonly RULE_errorCapturingUnitToUnitInterval = 157; - public static readonly RULE_unitToUnitInterval = 158; - public static readonly RULE_intervalValue = 159; - public static readonly RULE_tableAlias = 160; - public static readonly RULE_errorCapturingIdentifier = 161; - public static readonly RULE_errorCapturingIdentifierExtra = 162; - public static readonly RULE_identifierList = 163; - public static readonly RULE_identifierSeq = 164; - public static readonly RULE_identifier = 165; - public static readonly RULE_unquotedIdentifier = 166; - public static readonly RULE_quotedIdentifier = 167; - public static readonly RULE_whenClause = 168; - public static readonly RULE_catalogPath = 169; - public static readonly RULE_catalogPathCreate = 170; - public static readonly RULE_databasePath = 171; - public static readonly RULE_databasePathCreate = 172; - public static readonly RULE_tablePathCreate = 173; - public static readonly RULE_tablePath = 174; - public static readonly RULE_viewPath = 175; - public static readonly RULE_viewPathCreate = 176; - public static readonly RULE_uid = 177; - public static readonly RULE_withOption = 178; - public static readonly RULE_ifNotExists = 179; - public static readonly RULE_ifExists = 180; - public static readonly RULE_tablePropertyList = 181; - public static readonly RULE_tableProperty = 182; - public static readonly RULE_tablePropertyKey = 183; - public static readonly RULE_tablePropertyValue = 184; - public static readonly RULE_logicalOperator = 185; - public static readonly RULE_comparisonOperator = 186; - public static readonly RULE_bitOperator = 187; - public static readonly RULE_mathOperator = 188; - public static readonly RULE_unaryOperator = 189; - public static readonly RULE_constant = 190; - public static readonly RULE_timePointLiteral = 191; - public static readonly RULE_stringLiteral = 192; - public static readonly RULE_decimalLiteral = 193; - public static readonly RULE_booleanLiteral = 194; - public static readonly RULE_setQuantifier = 195; - public static readonly RULE_timePointUnit = 196; - public static readonly RULE_timeIntervalUnit = 197; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 198; - public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 199; - public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 200; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 201; - public static readonly RULE_nonReservedKeywords = 202; + public static readonly RULE_emptyColumn = 26; + public static readonly RULE_columnName = 27; + public static readonly RULE_columnNamePath = 28; + public static readonly RULE_columnNamePathAllowEmpty = 29; + public static readonly RULE_columnNameList = 30; + public static readonly RULE_columnType = 31; + public static readonly RULE_lengthOneDimension = 32; + public static readonly RULE_lengthTwoOptionalDimension = 33; + public static readonly RULE_lengthTwoStringDimension = 34; + public static readonly RULE_lengthOneTypeDimension = 35; + public static readonly RULE_mapTypeDimension = 36; + public static readonly RULE_rowTypeDimension = 37; + public static readonly RULE_columnConstraint = 38; + public static readonly RULE_metadataColumnDefinition = 39; + public static readonly RULE_metadataKey = 40; + public static readonly RULE_computedColumnDefinition = 41; + public static readonly RULE_computedColumnExpression = 42; + public static readonly RULE_watermarkDefinition = 43; + public static readonly RULE_tableConstraint = 44; + public static readonly RULE_constraintName = 45; + public static readonly RULE_selfDefinitionClause = 46; + public static readonly RULE_partitionDefinition = 47; + public static readonly RULE_transformList = 48; + public static readonly RULE_transform = 49; + public static readonly RULE_transformArgument = 50; + public static readonly RULE_likeDefinition = 51; + public static readonly RULE_likeOption = 52; + public static readonly RULE_createCatalog = 53; + public static readonly RULE_createDatabase = 54; + public static readonly RULE_createView = 55; + public static readonly RULE_createFunction = 56; + public static readonly RULE_usingClause = 57; + public static readonly RULE_jarFileName = 58; + public static readonly RULE_alterTable = 59; + public static readonly RULE_renameDefinition = 60; + public static readonly RULE_setKeyValueDefinition = 61; + public static readonly RULE_addConstraint = 62; + public static readonly RULE_dropConstraint = 63; + public static readonly RULE_addUnique = 64; + public static readonly RULE_notForced = 65; + public static readonly RULE_alterView = 66; + public static readonly RULE_alterDatabase = 67; + public static readonly RULE_alterFunction = 68; + public static readonly RULE_dropCatalog = 69; + public static readonly RULE_dropTable = 70; + public static readonly RULE_dropDatabase = 71; + public static readonly RULE_dropView = 72; + public static readonly RULE_dropFunction = 73; + public static readonly RULE_insertStatement = 74; + public static readonly RULE_insertSimpleStatement = 75; + public static readonly RULE_insertPartitionDefinition = 76; + public static readonly RULE_valuesDefinition = 77; + public static readonly RULE_valuesRowDefinition = 78; + public static readonly RULE_valueDefinition = 79; + public static readonly RULE_insertMulStatementCompatibility = 80; + public static readonly RULE_insertMulStatement = 81; + public static readonly RULE_queryStatement = 82; + public static readonly RULE_valuesClause = 83; + public static readonly RULE_withClause = 84; + public static readonly RULE_withItem = 85; + public static readonly RULE_withItemName = 86; + public static readonly RULE_selectStatement = 87; + public static readonly RULE_selectClause = 88; + public static readonly RULE_selectList = 89; + public static readonly RULE_columnProjectItem = 90; + public static readonly RULE_selectWindowItemColumnName = 91; + public static readonly RULE_selectExpressionColumnName = 92; + public static readonly RULE_selectLiteralColumnName = 93; + public static readonly RULE_columnAlias = 94; + public static readonly RULE_projectItemDefinition = 95; + public static readonly RULE_tableAllColumns = 96; + public static readonly RULE_overWindowItem = 97; + public static readonly RULE_fromClause = 98; + public static readonly RULE_tableExpression = 99; + public static readonly RULE_tableReference = 100; + public static readonly RULE_tablePrimary = 101; + public static readonly RULE_atomFunctionTable = 102; + public static readonly RULE_atomExpressionTable = 103; + public static readonly RULE_systemTimePeriod = 104; + public static readonly RULE_dateTimeExpression = 105; + public static readonly RULE_inlineDataValueClause = 106; + public static readonly RULE_windowTVFClause = 107; + public static readonly RULE_windowTVFExpression = 108; + public static readonly RULE_windowTVFName = 109; + public static readonly RULE_windowTVFParam = 110; + public static readonly RULE_timeIntervalParamName = 111; + public static readonly RULE_columnDescriptor = 112; + public static readonly RULE_joinCondition = 113; + public static readonly RULE_whereClause = 114; + public static readonly RULE_groupByClause = 115; + public static readonly RULE_groupItemDefinition = 116; + public static readonly RULE_groupingSets = 117; + public static readonly RULE_groupingSetsNotationName = 118; + public static readonly RULE_groupWindowFunction = 119; + public static readonly RULE_groupWindowFunctionName = 120; + public static readonly RULE_timeAttrColumn = 121; + public static readonly RULE_havingClause = 122; + public static readonly RULE_windowClause = 123; + public static readonly RULE_namedWindow = 124; + public static readonly RULE_windowSpec = 125; + public static readonly RULE_matchRecognizeClause = 126; + public static readonly RULE_orderByClause = 127; + public static readonly RULE_orderItemDefinition = 128; + public static readonly RULE_limitClause = 129; + public static readonly RULE_partitionByClause = 130; + public static readonly RULE_quantifiers = 131; + public static readonly RULE_measuresClause = 132; + public static readonly RULE_patternDefinition = 133; + public static readonly RULE_patternVariable = 134; + public static readonly RULE_outputMode = 135; + public static readonly RULE_afterMatchStrategy = 136; + public static readonly RULE_patternVariablesDefinition = 137; + public static readonly RULE_windowFrame = 138; + public static readonly RULE_frameBound = 139; + public static readonly RULE_withinClause = 140; + public static readonly RULE_expression = 141; + public static readonly RULE_booleanExpression = 142; + public static readonly RULE_predicate = 143; + public static readonly RULE_likePredicate = 144; + public static readonly RULE_valueExpression = 145; + public static readonly RULE_functionCallExpression = 146; + public static readonly RULE_primaryExpression = 147; + public static readonly RULE_functionNameCreate = 148; + public static readonly RULE_functionName = 149; + public static readonly RULE_functionNameAndParams = 150; + public static readonly RULE_functionNameWithParams = 151; + public static readonly RULE_functionParam = 152; + public static readonly RULE_dereferenceDefinition = 153; + public static readonly RULE_correlationName = 154; + public static readonly RULE_qualifiedName = 155; + public static readonly RULE_timeIntervalExpression = 156; + public static readonly RULE_errorCapturingMultiUnitsInterval = 157; + public static readonly RULE_multiUnitsInterval = 158; + public static readonly RULE_errorCapturingUnitToUnitInterval = 159; + public static readonly RULE_unitToUnitInterval = 160; + public static readonly RULE_intervalValue = 161; + public static readonly RULE_tableAlias = 162; + public static readonly RULE_errorCapturingIdentifier = 163; + public static readonly RULE_errorCapturingIdentifierExtra = 164; + public static readonly RULE_identifierList = 165; + public static readonly RULE_identifierSeq = 166; + public static readonly RULE_identifier = 167; + public static readonly RULE_unquotedIdentifier = 168; + public static readonly RULE_quotedIdentifier = 169; + public static readonly RULE_whenClause = 170; + public static readonly RULE_catalogPath = 171; + public static readonly RULE_catalogPathCreate = 172; + public static readonly RULE_databasePath = 173; + public static readonly RULE_databasePathCreate = 174; + public static readonly RULE_tablePathCreate = 175; + public static readonly RULE_tablePath = 176; + public static readonly RULE_viewPath = 177; + public static readonly RULE_viewPathCreate = 178; + public static readonly RULE_uid = 179; + public static readonly RULE_uidAllowEmpty = 180; + public static readonly RULE_withOption = 181; + public static readonly RULE_ifNotExists = 182; + public static readonly RULE_ifExists = 183; + public static readonly RULE_tablePropertyList = 184; + public static readonly RULE_tableProperty = 185; + public static readonly RULE_tablePropertyKey = 186; + public static readonly RULE_tablePropertyValue = 187; + public static readonly RULE_logicalOperator = 188; + public static readonly RULE_comparisonOperator = 189; + public static readonly RULE_bitOperator = 190; + public static readonly RULE_mathOperator = 191; + public static readonly RULE_unaryOperator = 192; + public static readonly RULE_constant = 193; + public static readonly RULE_timePointLiteral = 194; + public static readonly RULE_stringLiteral = 195; + public static readonly RULE_decimalLiteral = 196; + public static readonly RULE_booleanLiteral = 197; + public static readonly RULE_setQuantifier = 198; + public static readonly RULE_timePointUnit = 199; + public static readonly RULE_timeIntervalUnit = 200; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 201; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 202; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 203; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 204; + public static readonly RULE_nonReservedKeywords = 205; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -982,8 +985,9 @@ export class FlinkSqlParser extends SQLParserBase { "showStatement", "loadStatement", "unloadStatement", "setStatement", "resetStatement", "jarStatement", "dtAddStatement", "dtFilePath", "createTable", "simpleCreateTable", "createTableAsSelect", "columnOptionDefinition", - "physicalColumnDefinition", "columnNameCreate", "columnName", "columnNamePath", - "columnNameList", "columnType", "lengthOneDimension", "lengthTwoOptionalDimension", + "physicalColumnDefinition", "columnNameCreate", "emptyColumn", "columnName", + "columnNamePath", "columnNamePathAllowEmpty", "columnNameList", + "columnType", "lengthOneDimension", "lengthTwoOptionalDimension", "lengthTwoStringDimension", "lengthOneTypeDimension", "mapTypeDimension", "rowTypeDimension", "columnConstraint", "metadataColumnDefinition", "metadataKey", "computedColumnDefinition", "computedColumnExpression", @@ -1021,10 +1025,10 @@ export class FlinkSqlParser extends SQLParserBase { "identifierList", "identifierSeq", "identifier", "unquotedIdentifier", "quotedIdentifier", "whenClause", "catalogPath", "catalogPathCreate", "databasePath", "databasePathCreate", "tablePathCreate", "tablePath", - "viewPath", "viewPathCreate", "uid", "withOption", "ifNotExists", - "ifExists", "tablePropertyList", "tableProperty", "tablePropertyKey", - "tablePropertyValue", "logicalOperator", "comparisonOperator", "bitOperator", - "mathOperator", "unaryOperator", "constant", "timePointLiteral", + "viewPath", "viewPathCreate", "uid", "uidAllowEmpty", "withOption", + "ifNotExists", "ifExists", "tablePropertyList", "tableProperty", + "tablePropertyKey", "tablePropertyValue", "logicalOperator", "comparisonOperator", + "bitOperator", "mathOperator", "unaryOperator", "constant", "timePointLiteral", "stringLiteral", "decimalLiteral", "booleanLiteral", "setQuantifier", "timePointUnit", "timeIntervalUnit", "reservedKeywordsUsedAsFuncParam", "reservedKeywordsNoParamsUsedAsFuncName", "reservedKeywordsFollowParamsUsedAsFuncName", @@ -1052,21 +1056,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 409; + this.state = 415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 177 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 822083585) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 142606353) !== 0) || _la === 451 || _la === 469 || ((((_la - 490)) & ~0x1F) === 0 && ((1 << (_la - 490)) & 134219777) !== 0) || _la === 522) { { { - this.state = 406; + this.state = 412; this.singleStatement(); } } - this.state = 411; + this.state = 417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 412; + this.state = 418; this.match(FlinkSqlParser.EOF); } } @@ -1088,7 +1092,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 419; + this.state = 425; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1114,14 +1118,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 414; + this.state = 420; this.sqlStatement(); - this.state = 416; + this.state = 422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 415; + this.state = 421; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1131,7 +1135,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 418; + this.state = 424; this.emptyStatement(); } break; @@ -1157,90 +1161,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 433; + this.state = 439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 421; + this.state = 427; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 422; + this.state = 428; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 423; + this.state = 429; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 424; + this.state = 430; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 425; + this.state = 431; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 426; + this.state = 432; this.showStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 427; + this.state = 433; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 428; + this.state = 434; this.unloadStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 429; + this.state = 435; this.setStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 430; + this.state = 436; this.resetStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 431; + this.state = 437; this.jarStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 432; + this.state = 438; this.dtAddStatement(); } break; @@ -1266,7 +1270,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 435; + this.state = 441; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1288,104 +1292,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 451; + this.state = 457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 437; + this.state = 443; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 438; + this.state = 444; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 439; + this.state = 445; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 440; + this.state = 446; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 441; + this.state = 447; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 442; + this.state = 448; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 443; + this.state = 449; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 444; + this.state = 450; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 445; + this.state = 451; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 446; + this.state = 452; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 447; + this.state = 453; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 448; + this.state = 454; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 449; + this.state = 455; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 450; + this.state = 456; this.dropFunction(); } break; @@ -1409,7 +1413,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 455; + this.state = 461; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1418,7 +1422,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 453; + this.state = 459; this.queryStatement(0); } break; @@ -1427,7 +1431,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 454; + this.state = 460; this.insertStatement(); } break; @@ -1456,7 +1460,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 457; + this.state = 463; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 451)) { this.errorHandler.recoverInline(this); @@ -1465,7 +1469,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 458; + this.state = 464; this.tablePath(); } } @@ -1489,24 +1493,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 460; + this.state = 466; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 464; + this.state = 470; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CHANGELOG_MODE: case FlinkSqlParser.KW_ESTIMATED_COST: case FlinkSqlParser.KW_JSON_EXECUTION_PLAN: { - this.state = 461; + this.state = 467; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 462; + this.state = 468; this.match(FlinkSqlParser.KW_PLAN); - this.state = 463; + this.state = 469; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1522,24 +1526,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 469; + this.state = 475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 466; + this.state = 472; this.dmlStatement(); } break; case 2: { - this.state = 467; + this.state = 473; this.insertSimpleStatement(); } break; case 3: { - this.state = 468; + this.state = 474; this.insertMulStatement(); } break; @@ -1567,21 +1571,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 471; + this.state = 477; this.explainDetail(); - this.state = 476; + this.state = 482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 472; + this.state = 478; this.match(FlinkSqlParser.COMMA); - this.state = 473; + this.state = 479; this.explainDetail(); } } - this.state = 478; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1608,7 +1612,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 479; + this.state = 485; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -1637,33 +1641,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 487; + this.state = 493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 481; + this.state = 487; this.match(FlinkSqlParser.KW_USE); - this.state = 482; + this.state = 488; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 483; + this.state = 489; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 484; + this.state = 490; this.match(FlinkSqlParser.KW_USE); - this.state = 485; + this.state = 491; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 486; + this.state = 492; this.useModuleStatement(); } break; @@ -1690,25 +1694,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 489; + this.state = 495; this.match(FlinkSqlParser.KW_USE); - this.state = 490; + this.state = 496; this.match(FlinkSqlParser.KW_MODULES); - this.state = 491; + this.state = 497; this.uid(); - this.state = 496; + this.state = 502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 492; + this.state = 498; this.match(FlinkSqlParser.COMMA); - this.state = 493; + this.state = 499; this.uid(); } } - this.state = 498; + this.state = 504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1733,15 +1737,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatement); let _la: number; try { - this.state = 541; + this.state = 547; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 499; + this.state = 505; this.match(FlinkSqlParser.KW_SHOW); - this.state = 500; + this.state = 506; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 423 || _la === 465)) { this.errorHandler.recoverInline(this); @@ -1755,11 +1759,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 501; + this.state = 507; this.match(FlinkSqlParser.KW_SHOW); - this.state = 502; + this.state = 508; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 503; + this.state = 509; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 448)) { this.errorHandler.recoverInline(this); @@ -1773,16 +1777,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 504; + this.state = 510; this.match(FlinkSqlParser.KW_SHOW); - this.state = 505; + this.state = 511; this.match(FlinkSqlParser.KW_TABLES); - this.state = 508; + this.state = 514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 170) { { - this.state = 506; + this.state = 512; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1791,17 +1795,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 507; + this.state = 513; this.databasePath(); } } - this.state = 511; + this.state = 517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 510; + this.state = 516; this.likePredicate(); } } @@ -1811,11 +1815,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 513; + this.state = 519; this.match(FlinkSqlParser.KW_SHOW); - this.state = 514; + this.state = 520; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 515; + this.state = 521; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1824,28 +1828,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 518; + this.state = 524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 516; + this.state = 522; this.viewPath(); } break; case 2: { - this.state = 517; + this.state = 523; this.tablePath(); } break; } - this.state = 521; + this.state = 527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 520; + this.state = 526; this.likePredicate(); } } @@ -1855,26 +1859,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 523; + this.state = 529; this.match(FlinkSqlParser.KW_SHOW); - this.state = 524; + this.state = 530; this.match(FlinkSqlParser.KW_CREATE); - this.state = 529; + this.state = 535; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 525; + this.state = 531; this.match(FlinkSqlParser.KW_TABLE); - this.state = 526; + this.state = 532; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 527; + this.state = 533; this.match(FlinkSqlParser.KW_VIEW); - this.state = 528; + this.state = 534; this.viewPath(); } break; @@ -1886,38 +1890,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 531; + this.state = 537; this.match(FlinkSqlParser.KW_SHOW); - this.state = 533; + this.state = 539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 412) { { - this.state = 532; + this.state = 538; this.match(FlinkSqlParser.KW_USER); } } - this.state = 535; + this.state = 541; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 536; + this.state = 542; this.match(FlinkSqlParser.KW_SHOW); - this.state = 538; + this.state = 544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 537; + this.state = 543; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 540; + this.state = 546; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1943,20 +1947,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 543; + this.state = 549; this.match(FlinkSqlParser.KW_LOAD); - this.state = 544; + this.state = 550; this.match(FlinkSqlParser.KW_MODULE); - this.state = 545; + this.state = 551; this.uid(); - this.state = 548; + this.state = 554; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 546; + this.state = 552; this.match(FlinkSqlParser.KW_WITH); - this.state = 547; + this.state = 553; this.tablePropertyList(); } break; @@ -1983,11 +1987,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 550; + this.state = 556; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 551; + this.state = 557; this.match(FlinkSqlParser.KW_MODULE); - this.state = 552; + this.state = 558; this.uid(); } } @@ -2011,14 +2015,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 554; + this.state = 560; this.match(FlinkSqlParser.KW_SET); - this.state = 556; + this.state = 562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 555; + this.state = 561; this.tableProperty(); } break; @@ -2045,14 +2049,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 558; + this.state = 564; this.match(FlinkSqlParser.KW_RESET); - this.state = 560; + this.state = 566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 559; + this.state = 565; this.tablePropertyKey(); } break; @@ -2080,7 +2084,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 562; + this.state = 568; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 490)) { this.errorHandler.recoverInline(this); @@ -2089,9 +2093,9 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 563; + this.state = 569; this.match(FlinkSqlParser.KW_JAR); - this.state = 564; + this.state = 570; this.jarFileName(); } } @@ -2114,28 +2118,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 616; + this.state = 622; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 566; + this.state = 572; this.match(FlinkSqlParser.KW_ADD); - this.state = 567; + this.state = 573; this.match(FlinkSqlParser.KW_JAR); - this.state = 568; + this.state = 574; this.match(FlinkSqlParser.KW_WITH); - this.state = 569; + this.state = 575; this.dtFilePath(); - this.state = 572; + this.state = 578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 570; + this.state = 576; this.match(FlinkSqlParser.KW_AS); - this.state = 571; + this.state = 577; this.uid(); } } @@ -2145,34 +2149,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 574; + this.state = 580; this.match(FlinkSqlParser.KW_ADD); - this.state = 575; + this.state = 581; this.match(FlinkSqlParser.KW_FILE); - this.state = 576; + this.state = 582; this.match(FlinkSqlParser.KW_WITH); - this.state = 577; + this.state = 583; this.dtFilePath(); - this.state = 580; + this.state = 586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 578; + this.state = 584; this.match(FlinkSqlParser.KW_AS); - this.state = 579; + this.state = 585; this.uid(); } } - this.state = 584; + this.state = 590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 312) { { - this.state = 582; + this.state = 588; this.match(FlinkSqlParser.KW_RENAME); - this.state = 583; + this.state = 589; this.uid(); } } @@ -2182,9 +2186,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 586; + this.state = 592; this.match(FlinkSqlParser.KW_ADD); - this.state = 587; + this.state = 593; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2193,70 +2197,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 588; + this.state = 594; this.match(FlinkSqlParser.KW_WITH); - this.state = 589; + this.state = 595; this.dtFilePath(); - this.state = 590; + this.state = 596; this.match(FlinkSqlParser.KW_RENAME); - this.state = 591; + this.state = 597; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 593; + this.state = 599; this.match(FlinkSqlParser.KW_ADD); - this.state = 594; + this.state = 600; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 595; + this.state = 601; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 596; + this.state = 602; this.match(FlinkSqlParser.KW_ADD); - this.state = 597; + this.state = 603; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 598; + this.state = 604; this.match(FlinkSqlParser.KW_FILE); - this.state = 599; + this.state = 605; this.match(FlinkSqlParser.KW_WITH); - this.state = 600; + this.state = 606; this.dtFilePath(); - this.state = 601; + this.state = 607; this.match(FlinkSqlParser.KW_RENAME); - this.state = 602; + this.state = 608; this.uid(); - this.state = 603; + this.state = 609; this.match(FlinkSqlParser.KW_KEY); - this.state = 604; + this.state = 610; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 606; + this.state = 612; this.match(FlinkSqlParser.KW_ADD); - this.state = 607; + this.state = 613; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 608; + this.state = 614; this.match(FlinkSqlParser.KW_FILE); - this.state = 609; + this.state = 615; this.match(FlinkSqlParser.KW_WITH); - this.state = 610; + this.state = 616; this.dtFilePath(); - this.state = 611; + this.state = 617; this.match(FlinkSqlParser.KW_FOR); - this.state = 612; + this.state = 618; this.uid(); - this.state = 613; + this.state = 619; this.match(FlinkSqlParser.KW_AS); - this.state = 614; + this.state = 620; this.uid(); } break; @@ -2284,7 +2288,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 622; + this.state = 628; this.errorHandler.sync(this); alternative = 1; do { @@ -2292,17 +2296,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 619; + this.state = 625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 535) { { - this.state = 618; + this.state = 624; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 621; + this.state = 627; this.uid(); } } @@ -2310,7 +2314,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 624; + this.state = 630; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2336,18 +2340,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 628; + this.state = 634; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 626; + this.state = 632; this.simpleCreateTable(); } break; case 2: { - this.state = 627; + this.state = 633; this.createTableAsSelect(); } break; @@ -2376,122 +2380,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 630; + this.state = 636; this.match(FlinkSqlParser.KW_CREATE); - this.state = 632; + this.state = 638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 631; + this.state = 637; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 634; + this.state = 640; this.match(FlinkSqlParser.KW_TABLE); - this.state = 636; + this.state = 642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 635; + this.state = 641; this.ifNotExists(); } } - this.state = 638; + this.state = 644; this.tablePathCreate(); - this.state = 639; + this.state = 645; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 640; + this.state = 646; this.columnOptionDefinition(); - this.state = 645; + this.state = 651; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 641; + this.state = 647; this.match(FlinkSqlParser.COMMA); - this.state = 642; + this.state = 648; this.columnOptionDefinition(); } } } - this.state = 647; + this.state = 653; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 650; + this.state = 656; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 648; + this.state = 654; this.match(FlinkSqlParser.COMMA); - this.state = 649; + this.state = 655; this.watermarkDefinition(); } break; } - this.state = 654; + this.state = 660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 652; + this.state = 658; this.match(FlinkSqlParser.COMMA); - this.state = 653; + this.state = 659; this.tableConstraint(); } break; } - this.state = 658; + this.state = 664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 656; + this.state = 662; this.match(FlinkSqlParser.COMMA); - this.state = 657; + this.state = 663; this.selfDefinitionClause(); } } - this.state = 660; + this.state = 666; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 663; + this.state = 669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 661; + this.state = 667; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 662; + this.state = 668; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 666; + this.state = 672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 270) { { - this.state = 665; + this.state = 671; this.partitionDefinition(); } } - this.state = 668; + this.state = 674; this.withOption(); - this.state = 670; + this.state = 676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 669; + this.state = 675; this.likeDefinition(); } } @@ -2519,32 +2523,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 672; + this.state = 678; this.match(FlinkSqlParser.KW_CREATE); - this.state = 673; + this.state = 679; this.match(FlinkSqlParser.KW_TABLE); - this.state = 675; + this.state = 681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 674; + this.state = 680; this.ifNotExists(); } } - this.state = 677; + this.state = 683; this.tablePathCreate(); - this.state = 678; + this.state = 684; this.withOption(); - this.state = 681; + this.state = 687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 679; + this.state = 685; this.match(FlinkSqlParser.KW_AS); - this.state = 680; + this.state = 686; this.queryStatement(0); } } @@ -2569,27 +2573,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 686; + this.state = 692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 683; + this.state = 689; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 684; + this.state = 690; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 685; + this.state = 691; this.computedColumnDefinition(); } break; @@ -2616,28 +2620,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 688; + this.state = 694; this.columnNameCreate(); - this.state = 689; + this.state = 695; this.columnType(); - this.state = 691; + this.state = 697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 242 || _la === 245 || _la === 289) { { - this.state = 690; + this.state = 696; this.columnConstraint(); } } - this.state = 695; + this.state = 701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 693; + this.state = 699; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 694; + this.state = 700; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2662,20 +2666,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 699; + this.state = 705; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 697; + this.state = 703; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 698; + this.state = 704; this.expression(); } break; @@ -2695,27 +2699,52 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public emptyColumn(): EmptyColumnContext { + let localContext = new EmptyColumnContext(this.context, this.state); + this.enterRule(localContext, 52, FlinkSqlParser.RULE_emptyColumn); + try { + this.enterOuterAlt(localContext, 1); + // tslint:disable-next-line:no-empty + { + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); + this.enterRule(localContext, 54, FlinkSqlParser.RULE_columnName); try { - this.state = 703; + this.state = 712; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 701; - this.uid(); + this.state = 709; + this.uidAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 702; + this.state = 710; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } + this.state = 711; + this.emptyColumn(); } break; } @@ -2736,11 +2765,11 @@ export class FlinkSqlParser extends SQLParserBase { } public columnNamePath(): ColumnNamePathContext { let localContext = new ColumnNamePathContext(this.context, this.state); - this.enterRule(localContext, 54, FlinkSqlParser.RULE_columnNamePath); + this.enterRule(localContext, 56, FlinkSqlParser.RULE_columnNamePath); try { this.enterOuterAlt(localContext, 1); { - this.state = 705; + this.state = 714; this.uid(); } } @@ -2758,34 +2787,75 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext { + let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnNamePathAllowEmpty); + try { + this.state = 719; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 716; + this.uidAllowEmpty(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 717; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 718; + this.emptyColumn(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnNameList(): ColumnNameListContext { let localContext = new ColumnNameListContext(this.context, this.state); - this.enterRule(localContext, 56, FlinkSqlParser.RULE_columnNameList); + this.enterRule(localContext, 60, FlinkSqlParser.RULE_columnNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 707; + this.state = 721; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 708; + this.state = 722; this.columnName(); - this.state = 713; + this.state = 727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 709; + this.state = 723; this.match(FlinkSqlParser.COMMA); - this.state = 710; + this.state = 724; this.columnName(); } } - this.state = 715; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 716; + this.state = 730; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2805,10 +2875,10 @@ export class FlinkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnType); + this.enterRule(localContext, 62, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 755; + this.state = 769; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2816,7 +2886,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 718; + this.state = 732; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 245)) { @@ -2844,7 +2914,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 719; + this.state = 733; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 178 || _la === 179 || _la === 345 || _la === 361 || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 521) !== 0) || _la === 417 || _la === 418)) { @@ -2854,12 +2924,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 721; + this.state = 735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 720; + this.state = 734; this.lengthOneDimension(); } } @@ -2869,24 +2939,24 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 723; + this.state = 737; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 725; + this.state = 739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 724; + this.state = 738; this.lengthOneDimension(); } } - this.state = 733; + this.state = 747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 436) { { - this.state = 727; + this.state = 741; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 436)) { this.errorHandler.recoverInline(this); @@ -2895,19 +2965,19 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 729; + this.state = 743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 728; + this.state = 742; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 731; + this.state = 745; this.match(FlinkSqlParser.KW_TIME); - this.state = 732; + this.state = 746; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2921,7 +2991,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 735; + this.state = 749; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 247)) { @@ -2931,12 +3001,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 737; + this.state = 751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 736; + this.state = 750; this.lengthTwoOptionalDimension(); } } @@ -2947,7 +3017,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 739; + this.state = 753; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 232)) { @@ -2957,12 +3027,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 741; + this.state = 755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 740; + this.state = 754; this.lengthOneTypeDimension(); } } @@ -2972,14 +3042,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 743; + this.state = 757; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 745; + this.state = 759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 744; + this.state = 758; this.mapTypeDimension(); } } @@ -2989,14 +3059,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 747; + this.state = 761; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 749; + this.state = 763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 517) { { - this.state = 748; + this.state = 762; this.rowTypeDimension(); } } @@ -3006,14 +3076,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 751; + this.state = 765; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 753; + this.state = 767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 752; + this.state = 766; this.lengthTwoStringDimension(); } } @@ -3040,15 +3110,15 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthOneDimension(): LengthOneDimensionContext { let localContext = new LengthOneDimensionContext(this.context, this.state); - this.enterRule(localContext, 60, FlinkSqlParser.RULE_lengthOneDimension); + this.enterRule(localContext, 64, FlinkSqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 757; + this.state = 771; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 758; + this.state = 772; this.decimalLiteral(); - this.state = 759; + this.state = 773; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3068,28 +3138,28 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localContext = new LengthTwoOptionalDimensionContext(this.context, this.state); - this.enterRule(localContext, 62, FlinkSqlParser.RULE_lengthTwoOptionalDimension); + this.enterRule(localContext, 66, FlinkSqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 761; + this.state = 775; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 762; + this.state = 776; this.decimalLiteral(); - this.state = 765; + this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 763; + this.state = 777; this.match(FlinkSqlParser.COMMA); - this.state = 764; + this.state = 778; this.decimalLiteral(); } } - this.state = 767; + this.state = 781; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3109,28 +3179,28 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthTwoStringDimension(): LengthTwoStringDimensionContext { let localContext = new LengthTwoStringDimensionContext(this.context, this.state); - this.enterRule(localContext, 64, FlinkSqlParser.RULE_lengthTwoStringDimension); + this.enterRule(localContext, 68, FlinkSqlParser.RULE_lengthTwoStringDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 769; + this.state = 783; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 770; + this.state = 784; this.stringLiteral(); - this.state = 773; + this.state = 787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 771; + this.state = 785; this.match(FlinkSqlParser.COMMA); - this.state = 772; + this.state = 786; this.stringLiteral(); } } - this.state = 775; + this.state = 789; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3150,15 +3220,15 @@ export class FlinkSqlParser extends SQLParserBase { } public lengthOneTypeDimension(): LengthOneTypeDimensionContext { let localContext = new LengthOneTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 66, FlinkSqlParser.RULE_lengthOneTypeDimension); + this.enterRule(localContext, 70, FlinkSqlParser.RULE_lengthOneTypeDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 777; + this.state = 791; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 778; + this.state = 792; this.columnType(); - this.state = 779; + this.state = 793; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3178,21 +3248,21 @@ export class FlinkSqlParser extends SQLParserBase { } public mapTypeDimension(): MapTypeDimensionContext { let localContext = new MapTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 68, FlinkSqlParser.RULE_mapTypeDimension); + this.enterRule(localContext, 72, FlinkSqlParser.RULE_mapTypeDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 781; + this.state = 795; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 782; + this.state = 796; this.columnType(); { - this.state = 783; + this.state = 797; this.match(FlinkSqlParser.COMMA); - this.state = 784; + this.state = 798; this.columnType(); } - this.state = 786; + this.state = 800; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3212,71 +3282,71 @@ export class FlinkSqlParser extends SQLParserBase { } public rowTypeDimension(): RowTypeDimensionContext { let localContext = new RowTypeDimensionContext(this.context, this.state); - this.enterRule(localContext, 70, FlinkSqlParser.RULE_rowTypeDimension); + this.enterRule(localContext, 74, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 816; + this.state = 830; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 788; + this.state = 802; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 789; + this.state = 803; this.columnName(); - this.state = 790; + this.state = 804; this.columnType(); - this.state = 797; + this.state = 811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 791; + this.state = 805; this.match(FlinkSqlParser.COMMA); - this.state = 792; + this.state = 806; this.columnName(); - this.state = 793; + this.state = 807; this.columnType(); } } - this.state = 799; + this.state = 813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 800; + this.state = 814; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 802; + this.state = 816; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 803; + this.state = 817; this.columnName(); - this.state = 804; + this.state = 818; this.columnType(); - this.state = 811; + this.state = 825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 805; + this.state = 819; this.match(FlinkSqlParser.COMMA); - this.state = 806; + this.state = 820; this.columnName(); - this.state = 807; + this.state = 821; this.columnType(); } } - this.state = 813; + this.state = 827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 814; + this.state = 828; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3300,40 +3370,40 @@ export class FlinkSqlParser extends SQLParserBase { } public columnConstraint(): ColumnConstraintContext { let localContext = new ColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 72, FlinkSqlParser.RULE_columnConstraint); + this.enterRule(localContext, 76, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 832; + this.state = 846; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 820; + this.state = 834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 818; + this.state = 832; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 819; + this.state = 833; this.constraintName(); } } - this.state = 822; + this.state = 836; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 823; + this.state = 837; this.match(FlinkSqlParser.KW_KEY); - this.state = 826; + this.state = 840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 824; + this.state = 838; this.match(FlinkSqlParser.KW_NOT); - this.state = 825; + this.state = 839; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3344,17 +3414,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 829; + this.state = 843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 828; + this.state = 842; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 831; + this.state = 845; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3378,35 +3448,35 @@ export class FlinkSqlParser extends SQLParserBase { } public metadataColumnDefinition(): MetadataColumnDefinitionContext { let localContext = new MetadataColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 74, FlinkSqlParser.RULE_metadataColumnDefinition); + this.enterRule(localContext, 78, FlinkSqlParser.RULE_metadataColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 834; + this.state = 848; this.columnNameCreate(); - this.state = 835; + this.state = 849; this.columnType(); - this.state = 836; + this.state = 850; this.match(FlinkSqlParser.KW_METADATA); - this.state = 839; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 837; + this.state = 851; this.match(FlinkSqlParser.KW_FROM); - this.state = 838; + this.state = 852; this.metadataKey(); } } - this.state = 842; + this.state = 856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 424) { { - this.state = 841; + this.state = 855; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3429,11 +3499,11 @@ export class FlinkSqlParser extends SQLParserBase { } public metadataKey(): MetadataKeyContext { let localContext = new MetadataKeyContext(this.context, this.state); - this.enterRule(localContext, 76, FlinkSqlParser.RULE_metadataKey); + this.enterRule(localContext, 80, FlinkSqlParser.RULE_metadataKey); try { this.enterOuterAlt(localContext, 1); { - this.state = 844; + this.state = 858; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3453,25 +3523,25 @@ export class FlinkSqlParser extends SQLParserBase { } public computedColumnDefinition(): ComputedColumnDefinitionContext { let localContext = new ComputedColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 78, FlinkSqlParser.RULE_computedColumnDefinition); + this.enterRule(localContext, 82, FlinkSqlParser.RULE_computedColumnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 846; + this.state = 860; this.columnNameCreate(); - this.state = 847; + this.state = 861; this.match(FlinkSqlParser.KW_AS); - this.state = 848; + this.state = 862; this.computedColumnExpression(); - this.state = 851; + this.state = 865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 849; + this.state = 863; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 850; + this.state = 864; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3494,11 +3564,11 @@ export class FlinkSqlParser extends SQLParserBase { } public computedColumnExpression(): ComputedColumnExpressionContext { let localContext = new ComputedColumnExpressionContext(this.context, this.state); - this.enterRule(localContext, 80, FlinkSqlParser.RULE_computedColumnExpression); + this.enterRule(localContext, 84, FlinkSqlParser.RULE_computedColumnExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 853; + this.state = 867; this.expression(); } } @@ -3518,19 +3588,19 @@ export class FlinkSqlParser extends SQLParserBase { } public watermarkDefinition(): WatermarkDefinitionContext { let localContext = new WatermarkDefinitionContext(this.context, this.state); - this.enterRule(localContext, 82, FlinkSqlParser.RULE_watermarkDefinition); + this.enterRule(localContext, 86, FlinkSqlParser.RULE_watermarkDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 855; + this.state = 869; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 856; + this.state = 870; this.match(FlinkSqlParser.KW_FOR); - this.state = 857; + this.state = 871; this.columnName(); - this.state = 858; + this.state = 872; this.match(FlinkSqlParser.KW_AS); - this.state = 859; + this.state = 873; this.expression(); } } @@ -3550,32 +3620,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tableConstraint(): TableConstraintContext { let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 84, FlinkSqlParser.RULE_tableConstraint); + this.enterRule(localContext, 88, FlinkSqlParser.RULE_tableConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 863; + this.state = 877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 861; + this.state = 875; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 862; + this.state = 876; this.constraintName(); } } - this.state = 865; + this.state = 879; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 866; + this.state = 880; this.match(FlinkSqlParser.KW_KEY); - this.state = 867; + this.state = 881; this.columnNameList(); - this.state = 868; + this.state = 882; this.match(FlinkSqlParser.KW_NOT); - this.state = 869; + this.state = 883; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3595,11 +3665,11 @@ export class FlinkSqlParser extends SQLParserBase { } public constraintName(): ConstraintNameContext { let localContext = new ConstraintNameContext(this.context, this.state); - this.enterRule(localContext, 86, FlinkSqlParser.RULE_constraintName); + this.enterRule(localContext, 90, FlinkSqlParser.RULE_constraintName); try { this.enterOuterAlt(localContext, 1); { - this.state = 871; + this.state = 885; this.identifier(); } } @@ -3619,15 +3689,15 @@ export class FlinkSqlParser extends SQLParserBase { } public selfDefinitionClause(): SelfDefinitionClauseContext { let localContext = new SelfDefinitionClauseContext(this.context, this.state); - this.enterRule(localContext, 88, FlinkSqlParser.RULE_selfDefinitionClause); + this.enterRule(localContext, 92, FlinkSqlParser.RULE_selfDefinitionClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 873; + this.state = 887; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 874; + this.state = 888; this.match(FlinkSqlParser.KW_FOR); - this.state = 875; + this.state = 889; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3647,15 +3717,15 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionDefinition(): PartitionDefinitionContext { let localContext = new PartitionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 90, FlinkSqlParser.RULE_partitionDefinition); + this.enterRule(localContext, 94, FlinkSqlParser.RULE_partitionDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 877; + this.state = 891; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 878; + this.state = 892; this.match(FlinkSqlParser.KW_BY); - this.state = 879; + this.state = 893; this.transformList(); } } @@ -3675,32 +3745,32 @@ export class FlinkSqlParser extends SQLParserBase { } public transformList(): TransformListContext { let localContext = new TransformListContext(this.context, this.state); - this.enterRule(localContext, 92, FlinkSqlParser.RULE_transformList); + this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 881; + this.state = 895; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 882; + this.state = 896; this.transform(); - this.state = 887; + this.state = 901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 883; + this.state = 897; this.match(FlinkSqlParser.COMMA); - this.state = 884; + this.state = 898; this.transform(); } } - this.state = 889; + this.state = 903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 890; + this.state = 904; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3720,17 +3790,17 @@ export class FlinkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); + this.enterRule(localContext, 98, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 904; + this.state = 918; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 892; + this.state = 906; this.columnName(); } break; @@ -3738,27 +3808,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 893; + this.state = 907; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 894; + this.state = 908; this.transformArgument(); - this.state = 899; + this.state = 913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 895; + this.state = 909; this.match(FlinkSqlParser.COMMA); - this.state = 896; + this.state = 910; this.transformArgument(); } } - this.state = 901; + this.state = 915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 902; + this.state = 916; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3780,22 +3850,22 @@ export class FlinkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 100, FlinkSqlParser.RULE_transformArgument); try { - this.state = 908; + this.state = 922; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 906; + this.state = 920; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 907; + this.state = 921; this.constant(); } break; @@ -3817,37 +3887,37 @@ export class FlinkSqlParser extends SQLParserBase { } public likeDefinition(): LikeDefinitionContext { let localContext = new LikeDefinitionContext(this.context, this.state); - this.enterRule(localContext, 98, FlinkSqlParser.RULE_likeDefinition); + this.enterRule(localContext, 102, FlinkSqlParser.RULE_likeDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 910; + this.state = 924; this.match(FlinkSqlParser.KW_LIKE); - this.state = 911; + this.state = 925; this.tablePath(); - this.state = 920; + this.state = 934; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { - this.state = 912; + this.state = 926; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 916; + this.state = 930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 267 || _la === 456 || _la === 463) { { { - this.state = 913; + this.state = 927; this.likeOption(); } } - this.state = 918; + this.state = 932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 919; + this.state = 933; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3870,17 +3940,17 @@ export class FlinkSqlParser extends SQLParserBase { } public likeOption(): LikeOptionContext { let localContext = new LikeOptionContext(this.context, this.state); - this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); + this.enterRule(localContext, 104, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 926; + this.state = 940; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 922; + this.state = 936; _la = this.tokenStream.LA(1); if(!(_la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3889,7 +3959,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 923; + this.state = 937; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 271 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -3905,7 +3975,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 924; + this.state = 938; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3914,7 +3984,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 925; + this.state = 939; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 459 || _la === 478)) { this.errorHandler.recoverInline(this); @@ -3944,17 +4014,17 @@ export class FlinkSqlParser extends SQLParserBase { } public createCatalog(): CreateCatalogContext { let localContext = new CreateCatalogContext(this.context, this.state); - this.enterRule(localContext, 102, FlinkSqlParser.RULE_createCatalog); + this.enterRule(localContext, 106, FlinkSqlParser.RULE_createCatalog); try { this.enterOuterAlt(localContext, 1); { - this.state = 928; + this.state = 942; this.match(FlinkSqlParser.KW_CREATE); - this.state = 929; + this.state = 943; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 930; + this.state = 944; this.catalogPathCreate(); - this.state = 931; + this.state = 945; this.withOption(); } } @@ -3974,40 +4044,40 @@ export class FlinkSqlParser extends SQLParserBase { } public createDatabase(): CreateDatabaseContext { let localContext = new CreateDatabaseContext(this.context, this.state); - this.enterRule(localContext, 104, FlinkSqlParser.RULE_createDatabase); + this.enterRule(localContext, 108, FlinkSqlParser.RULE_createDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 933; + this.state = 947; this.match(FlinkSqlParser.KW_CREATE); - this.state = 934; + this.state = 948; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 936; + this.state = 950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 935; + this.state = 949; this.ifNotExists(); } } - this.state = 938; + this.state = 952; this.databasePathCreate(); - this.state = 941; + this.state = 955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 939; + this.state = 953; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 940; + this.state = 954; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 943; + this.state = 957; this.withOption(); } } @@ -4027,62 +4097,62 @@ export class FlinkSqlParser extends SQLParserBase { } public createView(): CreateViewContext { let localContext = new CreateViewContext(this.context, this.state); - this.enterRule(localContext, 106, FlinkSqlParser.RULE_createView); + this.enterRule(localContext, 110, FlinkSqlParser.RULE_createView); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 945; + this.state = 959; this.match(FlinkSqlParser.KW_CREATE); - this.state = 947; + this.state = 961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 946; + this.state = 960; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 949; + this.state = 963; this.match(FlinkSqlParser.KW_VIEW); - this.state = 951; + this.state = 965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 950; + this.state = 964; this.ifNotExists(); } } - this.state = 953; + this.state = 967; this.viewPathCreate(); - this.state = 955; + this.state = 969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 954; + this.state = 968; this.columnNameList(); } } - this.state = 959; + this.state = 973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 957; + this.state = 971; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 958; + this.state = 972; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 961; + this.state = 975; this.match(FlinkSqlParser.KW_AS); - this.state = 962; + this.state = 976; this.queryStatement(0); } } @@ -4102,57 +4172,57 @@ export class FlinkSqlParser extends SQLParserBase { } public createFunction(): CreateFunctionContext { let localContext = new CreateFunctionContext(this.context, this.state); - this.enterRule(localContext, 108, FlinkSqlParser.RULE_createFunction); + this.enterRule(localContext, 112, FlinkSqlParser.RULE_createFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 964; + this.state = 978; this.match(FlinkSqlParser.KW_CREATE); - this.state = 968; + this.state = 982; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 965; + this.state = 979; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 966; + this.state = 980; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 967; + this.state = 981; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 970; + this.state = 984; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 972; + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 971; + this.state = 985; this.ifNotExists(); } } - this.state = 974; + this.state = 988; this.functionNameCreate(); - this.state = 975; + this.state = 989; this.match(FlinkSqlParser.KW_AS); - this.state = 976; + this.state = 990; this.identifier(); - this.state = 979; + this.state = 993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 977; + this.state = 991; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 978; + this.state = 992; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4164,12 +4234,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 982; + this.state = 996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413) { { - this.state = 981; + this.state = 995; this.usingClause(); } } @@ -4192,32 +4262,32 @@ export class FlinkSqlParser extends SQLParserBase { } public usingClause(): UsingClauseContext { let localContext = new UsingClauseContext(this.context, this.state); - this.enterRule(localContext, 110, FlinkSqlParser.RULE_usingClause); + this.enterRule(localContext, 114, FlinkSqlParser.RULE_usingClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 984; + this.state = 998; this.match(FlinkSqlParser.KW_USING); - this.state = 985; + this.state = 999; this.match(FlinkSqlParser.KW_JAR); - this.state = 986; + this.state = 1000; this.jarFileName(); - this.state = 992; + this.state = 1006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 987; + this.state = 1001; this.match(FlinkSqlParser.COMMA); - this.state = 988; + this.state = 1002; this.match(FlinkSqlParser.KW_JAR); - this.state = 989; + this.state = 1003; this.jarFileName(); } } - this.state = 994; + this.state = 1008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4239,11 +4309,11 @@ export class FlinkSqlParser extends SQLParserBase { } public jarFileName(): JarFileNameContext { let localContext = new JarFileNameContext(this.context, this.state); - this.enterRule(localContext, 112, FlinkSqlParser.RULE_jarFileName); + this.enterRule(localContext, 116, FlinkSqlParser.RULE_jarFileName); try { this.enterOuterAlt(localContext, 1); { - this.state = 995; + this.state = 1009; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4263,57 +4333,57 @@ export class FlinkSqlParser extends SQLParserBase { } public alterTable(): AlterTableContext { let localContext = new AlterTableContext(this.context, this.state); - this.enterRule(localContext, 114, FlinkSqlParser.RULE_alterTable); + this.enterRule(localContext, 118, FlinkSqlParser.RULE_alterTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 997; + this.state = 1011; this.match(FlinkSqlParser.KW_ALTER); - this.state = 998; + this.state = 1012; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1000; + this.state = 1014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 999; + this.state = 1013; this.ifExists(); } } - this.state = 1002; + this.state = 1016; this.tablePath(); - this.state = 1008; + this.state = 1022; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1003; + this.state = 1017; this.renameDefinition(); } break; case 2: { - this.state = 1004; + this.state = 1018; this.setKeyValueDefinition(); } break; case 3: { - this.state = 1005; + this.state = 1019; this.addConstraint(); } break; case 4: { - this.state = 1006; + this.state = 1020; this.dropConstraint(); } break; case 5: { - this.state = 1007; + this.state = 1021; this.addUnique(); } break; @@ -4336,26 +4406,26 @@ export class FlinkSqlParser extends SQLParserBase { } public renameDefinition(): RenameDefinitionContext { let localContext = new RenameDefinitionContext(this.context, this.state); - this.enterRule(localContext, 116, FlinkSqlParser.RULE_renameDefinition); + this.enterRule(localContext, 120, FlinkSqlParser.RULE_renameDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1010; + this.state = 1024; this.match(FlinkSqlParser.KW_RENAME); - this.state = 1012; + this.state = 1026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1011; + this.state = 1025; this.uid(); } } - this.state = 1014; + this.state = 1028; this.match(FlinkSqlParser.KW_TO); - this.state = 1015; + this.state = 1029; this.uid(); } } @@ -4375,13 +4445,13 @@ export class FlinkSqlParser extends SQLParserBase { } public setKeyValueDefinition(): SetKeyValueDefinitionContext { let localContext = new SetKeyValueDefinitionContext(this.context, this.state); - this.enterRule(localContext, 118, FlinkSqlParser.RULE_setKeyValueDefinition); + this.enterRule(localContext, 122, FlinkSqlParser.RULE_setKeyValueDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1017; + this.state = 1031; this.match(FlinkSqlParser.KW_SET); - this.state = 1018; + this.state = 1032; this.tablePropertyList(); } } @@ -4401,29 +4471,29 @@ export class FlinkSqlParser extends SQLParserBase { } public addConstraint(): AddConstraintContext { let localContext = new AddConstraintContext(this.context, this.state); - this.enterRule(localContext, 120, FlinkSqlParser.RULE_addConstraint); + this.enterRule(localContext, 124, FlinkSqlParser.RULE_addConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1020; + this.state = 1034; this.match(FlinkSqlParser.KW_ADD); - this.state = 1021; + this.state = 1035; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1022; + this.state = 1036; this.constraintName(); - this.state = 1023; + this.state = 1037; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 1024; + this.state = 1038; this.match(FlinkSqlParser.KW_KEY); - this.state = 1025; + this.state = 1039; this.columnNameList(); - this.state = 1027; + this.state = 1041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1026; + this.state = 1040; this.notForced(); } } @@ -4446,15 +4516,15 @@ export class FlinkSqlParser extends SQLParserBase { } public dropConstraint(): DropConstraintContext { let localContext = new DropConstraintContext(this.context, this.state); - this.enterRule(localContext, 122, FlinkSqlParser.RULE_dropConstraint); + this.enterRule(localContext, 126, FlinkSqlParser.RULE_dropConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 1029; + this.state = 1043; this.match(FlinkSqlParser.KW_DROP); - this.state = 1030; + this.state = 1044; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1031; + this.state = 1045; this.constraintName(); } } @@ -4474,15 +4544,15 @@ export class FlinkSqlParser extends SQLParserBase { } public addUnique(): AddUniqueContext { let localContext = new AddUniqueContext(this.context, this.state); - this.enterRule(localContext, 124, FlinkSqlParser.RULE_addUnique); + this.enterRule(localContext, 128, FlinkSqlParser.RULE_addUnique); try { this.enterOuterAlt(localContext, 1); { - this.state = 1033; + this.state = 1047; this.match(FlinkSqlParser.KW_ADD); - this.state = 1034; + this.state = 1048; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1035; + this.state = 1049; this.columnNameList(); } } @@ -4502,13 +4572,13 @@ export class FlinkSqlParser extends SQLParserBase { } public notForced(): NotForcedContext { let localContext = new NotForcedContext(this.context, this.state); - this.enterRule(localContext, 126, FlinkSqlParser.RULE_notForced); + this.enterRule(localContext, 130, FlinkSqlParser.RULE_notForced); try { this.enterOuterAlt(localContext, 1); { - this.state = 1037; + this.state = 1051; this.match(FlinkSqlParser.KW_NOT); - this.state = 1038; + this.state = 1052; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4528,30 +4598,30 @@ export class FlinkSqlParser extends SQLParserBase { } public alterView(): AlterViewContext { let localContext = new AlterViewContext(this.context, this.state); - this.enterRule(localContext, 128, FlinkSqlParser.RULE_alterView); + this.enterRule(localContext, 132, FlinkSqlParser.RULE_alterView); try { this.enterOuterAlt(localContext, 1); { - this.state = 1040; + this.state = 1054; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1041; + this.state = 1055; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1042; + this.state = 1056; this.viewPath(); - this.state = 1046; + this.state = 1060; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1043; + this.state = 1057; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1044; + this.state = 1058; this.match(FlinkSqlParser.KW_AS); - this.state = 1045; + this.state = 1059; this.queryStatement(0); } break; @@ -4576,17 +4646,17 @@ export class FlinkSqlParser extends SQLParserBase { } public alterDatabase(): AlterDatabaseContext { let localContext = new AlterDatabaseContext(this.context, this.state); - this.enterRule(localContext, 130, FlinkSqlParser.RULE_alterDatabase); + this.enterRule(localContext, 134, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localContext, 1); { - this.state = 1048; + this.state = 1062; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1049; + this.state = 1063; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1050; + this.state = 1064; this.databasePath(); - this.state = 1051; + this.state = 1065; this.setKeyValueDefinition(); } } @@ -4606,57 +4676,57 @@ export class FlinkSqlParser extends SQLParserBase { } public alterFunction(): AlterFunctionContext { let localContext = new AlterFunctionContext(this.context, this.state); - this.enterRule(localContext, 132, FlinkSqlParser.RULE_alterFunction); + this.enterRule(localContext, 136, FlinkSqlParser.RULE_alterFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1053; + this.state = 1067; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1057; + this.state = 1071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1054; + this.state = 1068; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1055; + this.state = 1069; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1056; + this.state = 1070; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1059; + this.state = 1073; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1061; + this.state = 1075; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1060; + this.state = 1074; this.ifExists(); } break; } - this.state = 1063; + this.state = 1077; this.functionName(); - this.state = 1064; + this.state = 1078; this.match(FlinkSqlParser.KW_AS); - this.state = 1065; + this.state = 1079; this.identifier(); - this.state = 1068; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1066; + this.state = 1080; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1067; + this.state = 1081; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4686,26 +4756,26 @@ export class FlinkSqlParser extends SQLParserBase { } public dropCatalog(): DropCatalogContext { let localContext = new DropCatalogContext(this.context, this.state); - this.enterRule(localContext, 134, FlinkSqlParser.RULE_dropCatalog); + this.enterRule(localContext, 138, FlinkSqlParser.RULE_dropCatalog); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1070; + this.state = 1084; this.match(FlinkSqlParser.KW_DROP); - this.state = 1071; + this.state = 1085; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1073; + this.state = 1087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1072; + this.state = 1086; this.ifExists(); } } - this.state = 1075; + this.state = 1089; this.catalogPath(); } } @@ -4725,36 +4795,36 @@ export class FlinkSqlParser extends SQLParserBase { } public dropTable(): DropTableContext { let localContext = new DropTableContext(this.context, this.state); - this.enterRule(localContext, 136, FlinkSqlParser.RULE_dropTable); + this.enterRule(localContext, 140, FlinkSqlParser.RULE_dropTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1077; + this.state = 1091; this.match(FlinkSqlParser.KW_DROP); - this.state = 1079; + this.state = 1093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1078; + this.state = 1092; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1081; + this.state = 1095; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1083; + this.state = 1097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1082; + this.state = 1096; this.ifExists(); } } - this.state = 1085; + this.state = 1099; this.tablePath(); } } @@ -4774,33 +4844,33 @@ export class FlinkSqlParser extends SQLParserBase { } public dropDatabase(): DropDatabaseContext { let localContext = new DropDatabaseContext(this.context, this.state); - this.enterRule(localContext, 138, FlinkSqlParser.RULE_dropDatabase); + this.enterRule(localContext, 142, FlinkSqlParser.RULE_dropDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1087; + this.state = 1101; this.match(FlinkSqlParser.KW_DROP); - this.state = 1088; + this.state = 1102; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1090; + this.state = 1104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1089; + this.state = 1103; this.ifExists(); } } - this.state = 1092; + this.state = 1106; this.databasePath(); - this.state = 1094; + this.state = 1108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 441 || _la === 491) { { - this.state = 1093; + this.state = 1107; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 441 || _la === 491)) { @@ -4831,36 +4901,36 @@ export class FlinkSqlParser extends SQLParserBase { } public dropView(): DropViewContext { let localContext = new DropViewContext(this.context, this.state); - this.enterRule(localContext, 140, FlinkSqlParser.RULE_dropView); + this.enterRule(localContext, 144, FlinkSqlParser.RULE_dropView); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1096; + this.state = 1110; this.match(FlinkSqlParser.KW_DROP); - this.state = 1098; + this.state = 1112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1097; + this.state = 1111; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1100; + this.state = 1114; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1102; + this.state = 1116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1101; + this.state = 1115; this.ifExists(); } } - this.state = 1104; + this.state = 1118; this.viewPath(); } } @@ -4880,43 +4950,43 @@ export class FlinkSqlParser extends SQLParserBase { } public dropFunction(): DropFunctionContext { let localContext = new DropFunctionContext(this.context, this.state); - this.enterRule(localContext, 142, FlinkSqlParser.RULE_dropFunction); + this.enterRule(localContext, 146, FlinkSqlParser.RULE_dropFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1106; + this.state = 1120; this.match(FlinkSqlParser.KW_DROP); - this.state = 1110; + this.state = 1124; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1107; + this.state = 1121; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1108; + this.state = 1122; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1109; + this.state = 1123; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1112; + this.state = 1126; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1114; + this.state = 1128; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1113; + this.state = 1127; this.ifExists(); } break; } - this.state = 1116; + this.state = 1130; this.functionName(); } } @@ -4936,27 +5006,27 @@ export class FlinkSqlParser extends SQLParserBase { } public insertStatement(): InsertStatementContext { let localContext = new InsertStatementContext(this.context, this.state); - this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localContext, 148, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1125; + this.state = 1139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1119; + this.state = 1133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1118; + this.state = 1132; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1121; + this.state = 1135; this.insertSimpleStatement(); } } @@ -4964,7 +5034,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1122; + this.state = 1136; this.insertMulStatementCompatibility(); } break; @@ -4972,9 +5042,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1123; + this.state = 1137; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1124; + this.state = 1138; this.insertMulStatement(); } } @@ -4997,14 +5067,14 @@ export class FlinkSqlParser extends SQLParserBase { } public insertSimpleStatement(): InsertSimpleStatementContext { let localContext = new InsertSimpleStatementContext(this.context, this.state); - this.enterRule(localContext, 146, FlinkSqlParser.RULE_insertSimpleStatement); + this.enterRule(localContext, 150, FlinkSqlParser.RULE_insertSimpleStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1127; + this.state = 1141; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1128; + this.state = 1142; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 266)) { this.errorHandler.recoverInline(this); @@ -5013,40 +5083,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1129; + this.state = 1143; this.tablePath(); - this.state = 1138; + this.state = 1152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1131; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1130; + this.state = 1144; this.insertPartitionDefinition(); } } - this.state = 1134; + this.state = 1148; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1133; + this.state = 1147; this.columnNameList(); } break; } - this.state = 1136; + this.state = 1150; this.queryStatement(0); } break; case 2: { - this.state = 1137; + this.state = 1151; this.valuesDefinition(); } break; @@ -5069,13 +5139,13 @@ export class FlinkSqlParser extends SQLParserBase { } public insertPartitionDefinition(): InsertPartitionDefinitionContext { let localContext = new InsertPartitionDefinitionContext(this.context, this.state); - this.enterRule(localContext, 148, FlinkSqlParser.RULE_insertPartitionDefinition); + this.enterRule(localContext, 152, FlinkSqlParser.RULE_insertPartitionDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1140; + this.state = 1154; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1141; + this.state = 1155; this.tablePropertyList(); } } @@ -5095,28 +5165,28 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesDefinition(): ValuesDefinitionContext { let localContext = new ValuesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 150, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localContext, 154, FlinkSqlParser.RULE_valuesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1143; + this.state = 1157; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1144; + this.state = 1158; this.valuesRowDefinition(); - this.state = 1149; + this.state = 1163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1145; + this.state = 1159; this.match(FlinkSqlParser.COMMA); - this.state = 1146; + this.state = 1160; this.valuesRowDefinition(); } } - this.state = 1151; + this.state = 1165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5138,32 +5208,32 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesRowDefinition(): ValuesRowDefinitionContext { let localContext = new ValuesRowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 152, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localContext, 156, FlinkSqlParser.RULE_valuesRowDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1152; + this.state = 1166; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1153; + this.state = 1167; this.valueDefinition(); - this.state = 1158; + this.state = 1172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1154; + this.state = 1168; this.match(FlinkSqlParser.COMMA); - this.state = 1155; + this.state = 1169; this.valueDefinition(); } } - this.state = 1160; + this.state = 1174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1161; + this.state = 1175; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5183,22 +5253,22 @@ export class FlinkSqlParser extends SQLParserBase { } public valueDefinition(): ValueDefinitionContext { let localContext = new ValueDefinitionContext(this.context, this.state); - this.enterRule(localContext, 154, FlinkSqlParser.RULE_valueDefinition); + this.enterRule(localContext, 158, FlinkSqlParser.RULE_valueDefinition); try { - this.state = 1165; + this.state = 1179; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1163; + this.state = 1177; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1164; + this.state = 1178; this.functionCallExpression(); } break; @@ -5220,36 +5290,36 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatementCompatibility(): InsertMulStatementCompatibilityContext { let localContext = new InsertMulStatementCompatibilityContext(this.context, this.state); - this.enterRule(localContext, 156, FlinkSqlParser.RULE_insertMulStatementCompatibility); + this.enterRule(localContext, 160, FlinkSqlParser.RULE_insertMulStatementCompatibility); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1167; + this.state = 1181; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1168; + this.state = 1182; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1169; + this.state = 1183; this.match(FlinkSqlParser.KW_SET); - this.state = 1170; + this.state = 1184; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1174; + this.state = 1188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1171; + this.state = 1185; this.insertSimpleStatement(); - this.state = 1172; + this.state = 1186; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1176; + this.state = 1190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1178; + this.state = 1192; this.match(FlinkSqlParser.KW_END); } } @@ -5269,34 +5339,34 @@ export class FlinkSqlParser extends SQLParserBase { } public insertMulStatement(): InsertMulStatementContext { let localContext = new InsertMulStatementContext(this.context, this.state); - this.enterRule(localContext, 158, FlinkSqlParser.RULE_insertMulStatement); + this.enterRule(localContext, 162, FlinkSqlParser.RULE_insertMulStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1180; + this.state = 1194; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1181; + this.state = 1195; this.match(FlinkSqlParser.KW_SET); - this.state = 1182; + this.state = 1196; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1186; + this.state = 1200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1183; + this.state = 1197; this.insertSimpleStatement(); - this.state = 1184; + this.state = 1198; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1188; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1190; + this.state = 1204; this.match(FlinkSqlParser.KW_END); } } @@ -5326,60 +5396,60 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryStatementContext(this.context, parentState); let previousContext = localContext; - let _startState = 160; - this.enterRecursionRule(localContext, 160, FlinkSqlParser.RULE_queryStatement, _p); + let _startState = 164; + this.enterRecursionRule(localContext, 164, FlinkSqlParser.RULE_queryStatement, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1215; + this.state = 1229; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1193; + this.state = 1207; this.valuesClause(); } break; case 2: { - this.state = 1194; + this.state = 1208; this.withClause(); - this.state = 1195; + this.state = 1209; this.queryStatement(5); } break; case 3: { - this.state = 1197; + this.state = 1211; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1198; + this.state = 1212; this.queryStatement(0); - this.state = 1199; + this.state = 1213; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1201; + this.state = 1215; this.selectClause(); - this.state = 1203; + this.state = 1217; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1202; + this.state = 1216; this.orderByClause(); } break; } - this.state = 1206; + this.state = 1220; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1205; + this.state = 1219; this.limitClause(); } break; @@ -5388,24 +5458,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1208; + this.state = 1222; this.selectStatement(); - this.state = 1210; + this.state = 1224; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1209; + this.state = 1223; this.orderByClause(); } break; } - this.state = 1213; + this.state = 1227; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1212; + this.state = 1226; this.limitClause(); } break; @@ -5414,9 +5484,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1231; + this.state = 1245; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -5428,11 +5498,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1217; + this.state = 1231; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1218; + this.state = 1232; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 180 || _la === 403)) { @@ -5442,34 +5512,34 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1220; + this.state = 1234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1219; + this.state = 1233; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1222; + this.state = 1236; localContext._right = this.queryStatement(0); - this.state = 1224; + this.state = 1238; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1223; + this.state = 1237; this.orderByClause(); } break; } - this.state = 1227; + this.state = 1241; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1226; + this.state = 1240; this.limitClause(); } break; @@ -5477,9 +5547,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1233; + this.state = 1247; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); } } } @@ -5499,32 +5569,32 @@ export class FlinkSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 162, FlinkSqlParser.RULE_valuesClause); + this.enterRule(localContext, 166, FlinkSqlParser.RULE_valuesClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1234; + this.state = 1248; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1235; + this.state = 1249; this.expression(); - this.state = 1240; + this.state = 1254; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 124, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1236; + this.state = 1250; this.match(FlinkSqlParser.COMMA); - this.state = 1237; + this.state = 1251; this.expression(); } } } - this.state = 1242; + this.state = 1256; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 124, this.context); } } } @@ -5544,28 +5614,28 @@ export class FlinkSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 164, FlinkSqlParser.RULE_withClause); + this.enterRule(localContext, 168, FlinkSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1243; + this.state = 1257; this.match(FlinkSqlParser.KW_WITH); - this.state = 1244; + this.state = 1258; this.withItem(); - this.state = 1249; + this.state = 1263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1245; + this.state = 1259; this.match(FlinkSqlParser.COMMA); - this.state = 1246; + this.state = 1260; this.withItem(); } } - this.state = 1251; + this.state = 1265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5587,50 +5657,50 @@ export class FlinkSqlParser extends SQLParserBase { } public withItem(): WithItemContext { let localContext = new WithItemContext(this.context, this.state); - this.enterRule(localContext, 166, FlinkSqlParser.RULE_withItem); + this.enterRule(localContext, 170, FlinkSqlParser.RULE_withItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1252; + this.state = 1266; this.withItemName(); - this.state = 1264; + this.state = 1278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 1253; + this.state = 1267; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1254; + this.state = 1268; this.columnName(); - this.state = 1259; + this.state = 1273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1255; + this.state = 1269; this.match(FlinkSqlParser.COMMA); - this.state = 1256; + this.state = 1270; this.columnName(); } } - this.state = 1261; + this.state = 1275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1262; + this.state = 1276; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1266; + this.state = 1280; this.match(FlinkSqlParser.KW_AS); - this.state = 1267; + this.state = 1281; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1268; + this.state = 1282; this.queryStatement(0); - this.state = 1269; + this.state = 1283; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5650,11 +5720,11 @@ export class FlinkSqlParser extends SQLParserBase { } public withItemName(): WithItemNameContext { let localContext = new WithItemNameContext(this.context, this.state); - this.enterRule(localContext, 168, FlinkSqlParser.RULE_withItemName); + this.enterRule(localContext, 172, FlinkSqlParser.RULE_withItemName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1285; this.identifier(); } } @@ -5674,62 +5744,62 @@ export class FlinkSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localContext, 174, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1293; + this.state = 1307; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1273; + this.state = 1287; this.selectClause(); - this.state = 1275; + this.state = 1289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1274; + this.state = 1288; this.fromClause(); } break; } - this.state = 1278; + this.state = 1292; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1277; + this.state = 1291; this.whereClause(); } break; } - this.state = 1281; + this.state = 1295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1280; + this.state = 1294; this.groupByClause(); } break; } - this.state = 1284; + this.state = 1298; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1283; + this.state = 1297; this.havingClause(); } break; } - this.state = 1287; + this.state = 1301; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1286; + this.state = 1300; this.windowClause(); } break; @@ -5739,11 +5809,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1289; + this.state = 1303; this.selectClause(); - this.state = 1290; + this.state = 1304; this.fromClause(); - this.state = 1291; + this.state = 1305; this.matchRecognizeClause(); } break; @@ -5765,23 +5835,23 @@ export class FlinkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 172, FlinkSqlParser.RULE_selectClause); + this.enterRule(localContext, 176, FlinkSqlParser.RULE_selectClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1295; + this.state = 1309; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1297; + this.state = 1311; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1296; + this.state = 1310; this.setQuantifier(); } break; } - this.state = 1299; + this.state = 1313; this.selectList(); } } @@ -5801,30 +5871,30 @@ export class FlinkSqlParser extends SQLParserBase { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 174, FlinkSqlParser.RULE_selectList); + this.enterRule(localContext, 178, FlinkSqlParser.RULE_selectList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1301; + this.state = 1315; this.columnProjectItem(); - this.state = 1306; + this.state = 1320; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1302; + this.state = 1316; this.match(FlinkSqlParser.COMMA); - this.state = 1303; + this.state = 1317; this.columnProjectItem(); } } } - this.state = 1308; + this.state = 1322; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } } } @@ -5844,46 +5914,46 @@ export class FlinkSqlParser extends SQLParserBase { } public columnProjectItem(): ColumnProjectItemContext { let localContext = new ColumnProjectItemContext(this.context, this.state); - this.enterRule(localContext, 176, FlinkSqlParser.RULE_columnProjectItem); + this.enterRule(localContext, 180, FlinkSqlParser.RULE_columnProjectItem); let _la: number; try { - this.state = 1330; + this.state = 1344; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1309; + this.state = 1323; this.selectWindowItemColumnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1310; + this.state = 1324; this.selectLiteralColumnName(); - this.state = 1316; + this.state = 1330; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1311; + this.state = 1325; this.columnAlias(); } break; case 2: { - this.state = 1313; + this.state = 1327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1312; + this.state = 1326; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1315; + this.state = 1329; this.expression(); } break; @@ -5893,14 +5963,14 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1318; + this.state = 1332; this.tableAllColumns(); - this.state = 1320; + this.state = 1334; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1319; + this.state = 1333; this.columnAlias(); } break; @@ -5910,30 +5980,30 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1322; + this.state = 1336; this.selectExpressionColumnName(); - this.state = 1328; + this.state = 1342; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1323; + this.state = 1337; this.columnAlias(); } break; case 2: { - this.state = 1325; + this.state = 1339; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: { - this.state = 1324; + this.state = 1338; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1327; + this.state = 1341; this.columnName(); } break; @@ -5958,11 +6028,11 @@ export class FlinkSqlParser extends SQLParserBase { } public selectWindowItemColumnName(): SelectWindowItemColumnNameContext { let localContext = new SelectWindowItemColumnNameContext(this.context, this.state); - this.enterRule(localContext, 178, FlinkSqlParser.RULE_selectWindowItemColumnName); + this.enterRule(localContext, 182, FlinkSqlParser.RULE_selectWindowItemColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1332; + this.state = 1346; this.overWindowItem(); } } @@ -5982,11 +6052,11 @@ export class FlinkSqlParser extends SQLParserBase { } public selectExpressionColumnName(): SelectExpressionColumnNameContext { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); - this.enterRule(localContext, 180, FlinkSqlParser.RULE_selectExpressionColumnName); + this.enterRule(localContext, 184, FlinkSqlParser.RULE_selectExpressionColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1334; + this.state = 1348; this.expression(); } } @@ -6006,11 +6076,11 @@ export class FlinkSqlParser extends SQLParserBase { } public selectLiteralColumnName(): SelectLiteralColumnNameContext { let localContext = new SelectLiteralColumnNameContext(this.context, this.state); - this.enterRule(localContext, 182, FlinkSqlParser.RULE_selectLiteralColumnName); + this.enterRule(localContext, 186, FlinkSqlParser.RULE_selectLiteralColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1336; + this.state = 1350; this.columnName(); } } @@ -6030,22 +6100,22 @@ export class FlinkSqlParser extends SQLParserBase { } public columnAlias(): ColumnAliasContext { let localContext = new ColumnAliasContext(this.context, this.state); - this.enterRule(localContext, 184, FlinkSqlParser.RULE_columnAlias); + this.enterRule(localContext, 188, FlinkSqlParser.RULE_columnAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1339; + this.state = 1353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1338; + this.state = 1352; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1341; + this.state = 1355; localContext._alias = this.identifier(); } } @@ -6065,40 +6135,40 @@ export class FlinkSqlParser extends SQLParserBase { } public projectItemDefinition(): ProjectItemDefinitionContext { let localContext = new ProjectItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 186, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localContext, 190, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1358; + this.state = 1372; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1357; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1344; + this.state = 1358; this.expression(); - this.state = 1349; + this.state = 1363; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1346; + this.state = 1360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1345; + this.state = 1359; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1348; + this.state = 1362; this.columnName(); } break; @@ -6108,24 +6178,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1351; + this.state = 1365; this.columnName(); - this.state = 1356; + this.state = 1370; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1353; + this.state = 1367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1352; + this.state = 1366; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1355; + this.state = 1369; this.expression(); } break; @@ -6150,43 +6220,43 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 188, FlinkSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 192, FlinkSqlParser.RULE_tableAllColumns); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1370; + this.state = 1384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1360; + this.state = 1374; this.identifier(); - this.state = 1365; + this.state = 1379; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1361; + this.state = 1375; this.match(FlinkSqlParser.DOT); - this.state = 1362; + this.state = 1376; this.identifier(); } } } - this.state = 1367; + this.state = 1381; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); } - this.state = 1368; + this.state = 1382; this.match(FlinkSqlParser.DOT); } } - this.state = 1372; + this.state = 1386; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -6206,38 +6276,38 @@ export class FlinkSqlParser extends SQLParserBase { } public overWindowItem(): OverWindowItemContext { let localContext = new OverWindowItemContext(this.context, this.state); - this.enterRule(localContext, 190, FlinkSqlParser.RULE_overWindowItem); + this.enterRule(localContext, 194, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1386; + this.state = 1400; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1374; + this.state = 1388; this.primaryExpression(0); - this.state = 1375; + this.state = 1389; this.match(FlinkSqlParser.KW_OVER); - this.state = 1376; + this.state = 1390; this.windowSpec(); - this.state = 1377; + this.state = 1391; this.match(FlinkSqlParser.KW_AS); - this.state = 1378; + this.state = 1392; localContext._alias = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1380; + this.state = 1394; this.primaryExpression(0); - this.state = 1381; + this.state = 1395; this.match(FlinkSqlParser.KW_OVER); - this.state = 1382; + this.state = 1396; this.errorCapturingIdentifier(); - this.state = 1383; + this.state = 1397; this.match(FlinkSqlParser.KW_AS); - this.state = 1384; + this.state = 1398; localContext._alias = this.identifier(); } break; @@ -6259,13 +6329,13 @@ export class FlinkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 192, FlinkSqlParser.RULE_fromClause); + this.enterRule(localContext, 196, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1388; + this.state = 1402; this.match(FlinkSqlParser.KW_FROM); - this.state = 1389; + this.state = 1403; this.tableExpression(0); } } @@ -6295,57 +6365,57 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TableExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 194; - this.enterRecursionRule(localContext, 194, FlinkSqlParser.RULE_tableExpression, _p); + let _startState = 198; + this.enterRecursionRule(localContext, 198, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1402; + this.state = 1416; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1392; + this.state = 1406; this.tableReference(); - this.state = 1397; + this.state = 1411; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 151, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1393; + this.state = 1407; this.match(FlinkSqlParser.COMMA); - this.state = 1394; + this.state = 1408; this.tableReference(); } } } - this.state = 1399; + this.state = 1413; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 151, this.context); } } break; case 2: { - this.state = 1400; + this.state = 1414; this.inlineDataValueClause(); } break; case 3: { - this.state = 1401; + this.state = 1415; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1425; + this.state = 1439; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -6353,22 +6423,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1423; + this.state = 1437; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1404; + this.state = 1418; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1405; + this.state = 1419; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1406; + this.state = 1420; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1407; + this.state = 1421; this.tableExpression(4); } break; @@ -6376,26 +6446,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1408; + this.state = 1422; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1410; + this.state = 1424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 234) { { - this.state = 1409; + this.state = 1423; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1413; + this.state = 1427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 202 || _la === 318) { { - this.state = 1412; + this.state = 1426; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 202 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -6407,26 +6477,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1416; + this.state = 1430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 1415; + this.state = 1429; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1418; + this.state = 1432; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1419; + this.state = 1433; this.tableExpression(0); - this.state = 1421; + this.state = 1435; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 1420; + this.state = 1434; this.joinCondition(); } break; @@ -6436,9 +6506,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1427; + this.state = 1441; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } } } @@ -6458,18 +6528,18 @@ export class FlinkSqlParser extends SQLParserBase { } public tableReference(): TableReferenceContext { let localContext = new TableReferenceContext(this.context, this.state); - this.enterRule(localContext, 196, FlinkSqlParser.RULE_tableReference); + this.enterRule(localContext, 200, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localContext, 1); { - this.state = 1428; + this.state = 1442; this.tablePrimary(); - this.state = 1430; + this.state = 1444; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1429; + this.state = 1443; this.tableAlias(); } break; @@ -6492,33 +6562,33 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePrimary(): TablePrimaryContext { let localContext = new TablePrimaryContext(this.context, this.state); - this.enterRule(localContext, 198, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localContext, 202, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1445; + this.state = 1459; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1433; + this.state = 1447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 374) { { - this.state = 1432; + this.state = 1446; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1435; + this.state = 1449; this.tablePath(); - this.state = 1437; + this.state = 1451; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 1436; + this.state = 1450; this.systemTimePeriod(); } break; @@ -6528,14 +6598,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1439; + this.state = 1453; this.viewPath(); - this.state = 1441; + this.state = 1455; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 1440; + this.state = 1454; this.systemTimePeriod(); } break; @@ -6545,14 +6615,14 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1443; + this.state = 1457; this.atomFunctionTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1444; + this.state = 1458; this.atomExpressionTable(); } break; @@ -6574,19 +6644,19 @@ export class FlinkSqlParser extends SQLParserBase { } public atomFunctionTable(): AtomFunctionTableContext { let localContext = new AtomFunctionTableContext(this.context, this.state); - this.enterRule(localContext, 200, FlinkSqlParser.RULE_atomFunctionTable); + this.enterRule(localContext, 204, FlinkSqlParser.RULE_atomFunctionTable); try { this.enterOuterAlt(localContext, 1); { - this.state = 1447; + this.state = 1461; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1448; + this.state = 1462; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1449; + this.state = 1463; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1450; + this.state = 1464; this.functionCallExpression(); - this.state = 1451; + this.state = 1465; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6606,44 +6676,44 @@ export class FlinkSqlParser extends SQLParserBase { } public atomExpressionTable(): AtomExpressionTableContext { let localContext = new AtomExpressionTableContext(this.context, this.state); - this.enterRule(localContext, 202, FlinkSqlParser.RULE_atomExpressionTable); + this.enterRule(localContext, 206, FlinkSqlParser.RULE_atomExpressionTable); let _la: number; try { - this.state = 1465; + this.state = 1479; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_LATERAL: case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 1453; + this.state = 1467; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1456; + this.state = 1470; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1457; + this.state = 1471; this.queryStatement(0); - this.state = 1458; + this.state = 1472; this.match(FlinkSqlParser.RR_BRACKET); } break; case FlinkSqlParser.KW_UNNEST: this.enterOuterAlt(localContext, 2); { - this.state = 1460; + this.state = 1474; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1461; + this.state = 1475; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1462; + this.state = 1476; this.expression(); - this.state = 1463; + this.state = 1477; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6667,19 +6737,19 @@ export class FlinkSqlParser extends SQLParserBase { } public systemTimePeriod(): SystemTimePeriodContext { let localContext = new SystemTimePeriodContext(this.context, this.state); - this.enterRule(localContext, 204, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localContext, 208, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 1467; + this.state = 1481; this.match(FlinkSqlParser.KW_FOR); - this.state = 1468; + this.state = 1482; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1469; + this.state = 1483; this.match(FlinkSqlParser.KW_AS); - this.state = 1470; + this.state = 1484; this.match(FlinkSqlParser.KW_OF); - this.state = 1471; + this.state = 1485; this.dateTimeExpression(); } } @@ -6699,11 +6769,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dateTimeExpression(): DateTimeExpressionContext { let localContext = new DateTimeExpressionContext(this.context, this.state); - this.enterRule(localContext, 206, FlinkSqlParser.RULE_dateTimeExpression); + this.enterRule(localContext, 210, FlinkSqlParser.RULE_dateTimeExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1473; + this.state = 1487; this.expression(); } } @@ -6723,17 +6793,17 @@ export class FlinkSqlParser extends SQLParserBase { } public inlineDataValueClause(): InlineDataValueClauseContext { let localContext = new InlineDataValueClauseContext(this.context, this.state); - this.enterRule(localContext, 208, FlinkSqlParser.RULE_inlineDataValueClause); + this.enterRule(localContext, 212, FlinkSqlParser.RULE_inlineDataValueClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1475; + this.state = 1489; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1476; + this.state = 1490; this.valuesDefinition(); - this.state = 1477; + this.state = 1491; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1478; + this.state = 1492; this.tableAlias(); } } @@ -6753,17 +6823,17 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFClause(): WindowTVFClauseContext { let localContext = new WindowTVFClauseContext(this.context, this.state); - this.enterRule(localContext, 210, FlinkSqlParser.RULE_windowTVFClause); + this.enterRule(localContext, 214, FlinkSqlParser.RULE_windowTVFClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1480; + this.state = 1494; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1481; + this.state = 1495; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1482; + this.state = 1496; this.windowTVFExpression(); - this.state = 1483; + this.state = 1497; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6783,34 +6853,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFExpression(): WindowTVFExpressionContext { let localContext = new WindowTVFExpressionContext(this.context, this.state); - this.enterRule(localContext, 212, FlinkSqlParser.RULE_windowTVFExpression); + this.enterRule(localContext, 216, FlinkSqlParser.RULE_windowTVFExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1485; + this.state = 1499; this.windowTVFName(); - this.state = 1486; + this.state = 1500; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1487; + this.state = 1501; this.windowTVFParam(); - this.state = 1492; + this.state = 1506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1488; + this.state = 1502; this.match(FlinkSqlParser.COMMA); - this.state = 1489; + this.state = 1503; this.windowTVFParam(); } } - this.state = 1494; + this.state = 1508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1495; + this.state = 1509; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6830,12 +6900,12 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFName(): WindowTVFNameContext { let localContext = new WindowTVFNameContext(this.context, this.state); - this.enterRule(localContext, 214, FlinkSqlParser.RULE_windowTVFName); + this.enterRule(localContext, 218, FlinkSqlParser.RULE_windowTVFName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1497; + this.state = 1511; _la = this.tokenStream.LA(1); if(!(_la === 446 || _la === 460 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -6862,66 +6932,66 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFParam(): WindowTVFParamContext { let localContext = new WindowTVFParamContext(this.context, this.state); - this.enterRule(localContext, 216, FlinkSqlParser.RULE_windowTVFParam); + this.enterRule(localContext, 220, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1514; + this.state = 1528; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1499; + this.state = 1513; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1500; + this.state = 1514; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1501; + this.state = 1515; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1502; + this.state = 1516; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1503; + this.state = 1517; this.match(FlinkSqlParser.KW_DATA); - this.state = 1504; + this.state = 1518; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1505; + this.state = 1519; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1506; + this.state = 1520; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1507; + this.state = 1521; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1508; + this.state = 1522; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1509; + this.state = 1523; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1510; + this.state = 1524; this.timeIntervalParamName(); - this.state = 1511; + this.state = 1525; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1512; + this.state = 1526; this.timeIntervalExpression(); } break; @@ -6943,12 +7013,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalParamName(): TimeIntervalParamNameContext { let localContext = new TimeIntervalParamNameContext(this.context, this.state); - this.enterRule(localContext, 218, FlinkSqlParser.RULE_timeIntervalParamName); + this.enterRule(localContext, 222, FlinkSqlParser.RULE_timeIntervalParamName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1516; + this.state = 1530; _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 447 || ((((_la - 495)) & ~0x1F) === 0 && ((1 << (_la - 495)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -6975,17 +7045,17 @@ export class FlinkSqlParser extends SQLParserBase { } public columnDescriptor(): ColumnDescriptorContext { let localContext = new ColumnDescriptorContext(this.context, this.state); - this.enterRule(localContext, 220, FlinkSqlParser.RULE_columnDescriptor); + this.enterRule(localContext, 224, FlinkSqlParser.RULE_columnDescriptor); try { this.enterOuterAlt(localContext, 1); { - this.state = 1518; + this.state = 1532; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1519; + this.state = 1533; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1520; + this.state = 1534; this.columnName(); - this.state = 1521; + this.state = 1535; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7005,26 +7075,52 @@ export class FlinkSqlParser extends SQLParserBase { } public joinCondition(): JoinConditionContext { let localContext = new JoinConditionContext(this.context, this.state); - this.enterRule(localContext, 222, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localContext, 226, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1527; + this.state = 1548; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1523; + this.state = 1537; this.match(FlinkSqlParser.KW_ON); - this.state = 1524; - this.booleanExpression(0); + this.state = 1544; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { + case 1: + { + this.state = 1538; + this.booleanExpression(0); + } + break; + case 2: + { + this.state = 1539; + this.columnNamePathAllowEmpty(); + this.state = 1542; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { + case 1: + { + this.state = 1540; + this.match(FlinkSqlParser.EQUAL_SYMBOL); + this.state = 1541; + this.columnNamePathAllowEmpty(); + } + break; + } + } + break; + } } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1525; + this.state = 1546; this.match(FlinkSqlParser.KW_USING); - this.state = 1526; + this.state = 1547; this.columnNameList(); } break; @@ -7048,14 +7144,28 @@ export class FlinkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 224, FlinkSqlParser.RULE_whereClause); + this.enterRule(localContext, 228, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1529; + this.state = 1550; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1530; - this.booleanExpression(0); + this.state = 1553; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { + case 1: + { + this.state = 1551; + this.booleanExpression(0); + } + break; + case 2: + { + this.state = 1552; + this.columnNamePathAllowEmpty(); + } + break; + } } } catch (re) { @@ -7074,34 +7184,34 @@ export class FlinkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 226, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 230, FlinkSqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1532; + this.state = 1555; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1533; + this.state = 1556; this.match(FlinkSqlParser.KW_BY); - this.state = 1534; + this.state = 1557; this.groupItemDefinition(); - this.state = 1539; + this.state = 1562; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 168, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1535; + this.state = 1558; this.match(FlinkSqlParser.COMMA); - this.state = 1536; + this.state = 1559; this.groupItemDefinition(); } } } - this.state = 1541; + this.state = 1564; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 168, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); } } } @@ -7121,124 +7231,124 @@ export class FlinkSqlParser extends SQLParserBase { } public groupItemDefinition(): GroupItemDefinitionContext { let localContext = new GroupItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 228, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localContext, 232, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1582; + this.state = 1605; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1542; + this.state = 1565; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1543; + this.state = 1566; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1544; + this.state = 1567; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1545; + this.state = 1568; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1546; + this.state = 1569; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1547; + this.state = 1570; this.expression(); - this.state = 1552; + this.state = 1575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1548; + this.state = 1571; this.match(FlinkSqlParser.COMMA); - this.state = 1549; + this.state = 1572; this.expression(); } } - this.state = 1554; + this.state = 1577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1555; + this.state = 1578; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1557; + this.state = 1580; this.groupingSetsNotationName(); - this.state = 1558; + this.state = 1581; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1559; + this.state = 1582; this.expression(); - this.state = 1564; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1560; + this.state = 1583; this.match(FlinkSqlParser.COMMA); - this.state = 1561; + this.state = 1584; this.expression(); } } - this.state = 1566; + this.state = 1589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1567; + this.state = 1590; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1569; + this.state = 1592; this.groupingSets(); - this.state = 1570; + this.state = 1593; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1571; + this.state = 1594; this.groupItemDefinition(); - this.state = 1576; + this.state = 1599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1572; + this.state = 1595; this.match(FlinkSqlParser.COMMA); - this.state = 1573; + this.state = 1596; this.groupItemDefinition(); } } - this.state = 1578; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1579; + this.state = 1602; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1581; + this.state = 1604; this.expression(); } break; @@ -7260,13 +7370,13 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSets(): GroupingSetsContext { let localContext = new GroupingSetsContext(this.context, this.state); - this.enterRule(localContext, 230, FlinkSqlParser.RULE_groupingSets); + this.enterRule(localContext, 234, FlinkSqlParser.RULE_groupingSets); try { this.enterOuterAlt(localContext, 1); { - this.state = 1584; + this.state = 1607; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1585; + this.state = 1608; this.match(FlinkSqlParser.KW_SETS); } } @@ -7286,12 +7396,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSetsNotationName(): GroupingSetsNotationNameContext { let localContext = new GroupingSetsNotationNameContext(this.context, this.state); - this.enterRule(localContext, 232, FlinkSqlParser.RULE_groupingSetsNotationName); + this.enterRule(localContext, 236, FlinkSqlParser.RULE_groupingSetsNotationName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1587; + this.state = 1610; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 321)) { this.errorHandler.recoverInline(this); @@ -7318,21 +7428,21 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunction(): GroupWindowFunctionContext { let localContext = new GroupWindowFunctionContext(this.context, this.state); - this.enterRule(localContext, 234, FlinkSqlParser.RULE_groupWindowFunction); + this.enterRule(localContext, 238, FlinkSqlParser.RULE_groupWindowFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1589; + this.state = 1612; this.groupWindowFunctionName(); - this.state = 1590; + this.state = 1613; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1591; + this.state = 1614; this.timeAttrColumn(); - this.state = 1592; + this.state = 1615; this.match(FlinkSqlParser.COMMA); - this.state = 1593; + this.state = 1616; this.timeIntervalExpression(); - this.state = 1594; + this.state = 1617; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7352,12 +7462,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunctionName(): GroupWindowFunctionNameContext { let localContext = new GroupWindowFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 236, FlinkSqlParser.RULE_groupWindowFunctionName); + this.enterRule(localContext, 240, FlinkSqlParser.RULE_groupWindowFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1619; _la = this.tokenStream.LA(1); if(!(_la === 460 || _la === 493 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -7384,11 +7494,11 @@ export class FlinkSqlParser extends SQLParserBase { } public timeAttrColumn(): TimeAttrColumnContext { let localContext = new TimeAttrColumnContext(this.context, this.state); - this.enterRule(localContext, 238, FlinkSqlParser.RULE_timeAttrColumn); + this.enterRule(localContext, 242, FlinkSqlParser.RULE_timeAttrColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 1598; + this.state = 1621; this.uid(); } } @@ -7408,13 +7518,13 @@ export class FlinkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 240, FlinkSqlParser.RULE_havingClause); + this.enterRule(localContext, 244, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1600; + this.state = 1623; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1601; + this.state = 1624; this.booleanExpression(0); } } @@ -7434,32 +7544,32 @@ export class FlinkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 242, FlinkSqlParser.RULE_windowClause); + this.enterRule(localContext, 246, FlinkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1603; + this.state = 1626; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1604; + this.state = 1627; this.namedWindow(); - this.state = 1609; + this.state = 1632; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 173, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1605; + this.state = 1628; this.match(FlinkSqlParser.COMMA); - this.state = 1606; + this.state = 1629; this.namedWindow(); } } } - this.state = 1611; + this.state = 1634; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 173, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); } } } @@ -7479,15 +7589,15 @@ export class FlinkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 244, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 248, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 1612; + this.state = 1635; localContext._name = this.errorCapturingIdentifier(); - this.state = 1613; + this.state = 1636; this.match(FlinkSqlParser.KW_AS); - this.state = 1614; + this.state = 1637; this.windowSpec(); } } @@ -7507,54 +7617,54 @@ export class FlinkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 246, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 250, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1617; + this.state = 1640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1616; + this.state = 1639; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1619; + this.state = 1642; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1621; + this.state = 1644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1620; + this.state = 1643; this.partitionByClause(); } } - this.state = 1624; + this.state = 1647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1623; + this.state = 1646; this.orderByClause(); } } - this.state = 1627; + this.state = 1650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293 || _la === 323) { { - this.state = 1626; + this.state = 1649; this.windowFrame(); } } - this.state = 1629; + this.state = 1652; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7574,95 +7684,95 @@ export class FlinkSqlParser extends SQLParserBase { } public matchRecognizeClause(): MatchRecognizeClauseContext { let localContext = new MatchRecognizeClauseContext(this.context, this.state); - this.enterRule(localContext, 248, FlinkSqlParser.RULE_matchRecognizeClause); + this.enterRule(localContext, 252, FlinkSqlParser.RULE_matchRecognizeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1631; + this.state = 1654; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1632; + this.state = 1655; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1634; + this.state = 1657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1633; + this.state = 1656; this.partitionByClause(); } } - this.state = 1637; + this.state = 1660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1636; + this.state = 1659; this.orderByClause(); } } - this.state = 1640; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1639; + this.state = 1662; this.measuresClause(); } } - this.state = 1643; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 255) { { - this.state = 1642; + this.state = 1665; this.outputMode(); } } - this.state = 1646; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 439) { { - this.state = 1645; + this.state = 1668; this.afterMatchStrategy(); } } - this.state = 1649; + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 272) { { - this.state = 1648; + this.state = 1671; this.patternDefinition(); } } - this.state = 1651; + this.state = 1674; this.patternVariablesDefinition(); - this.state = 1652; + this.state = 1675; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1657; + this.state = 1680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: { - this.state = 1654; + this.state = 1677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1653; + this.state = 1676; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1656; + this.state = 1679; this.identifier(); } break; @@ -7685,34 +7795,34 @@ export class FlinkSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 250, FlinkSqlParser.RULE_orderByClause); + this.enterRule(localContext, 254, FlinkSqlParser.RULE_orderByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1659; + this.state = 1682; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1660; + this.state = 1683; this.match(FlinkSqlParser.KW_BY); - this.state = 1661; + this.state = 1684; this.orderItemDefinition(); - this.state = 1666; + this.state = 1689; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1662; + this.state = 1685; this.match(FlinkSqlParser.COMMA); - this.state = 1663; + this.state = 1686; this.orderItemDefinition(); } } } - this.state = 1668; + this.state = 1691; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); } } } @@ -7732,19 +7842,19 @@ export class FlinkSqlParser extends SQLParserBase { } public orderItemDefinition(): OrderItemDefinitionContext { let localContext = new OrderItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 252, FlinkSqlParser.RULE_orderItemDefinition); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_orderItemDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1669; + this.state = 1692; this.columnName(); - this.state = 1671; + this.state = 1694; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 1670; + this.state = 1693; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 451)) { @@ -7757,14 +7867,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1675; + this.state = 1698; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: { - this.state = 1673; + this.state = 1696; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1674; + this.state = 1697; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 458 || _la === 468)) { @@ -7795,18 +7905,18 @@ export class FlinkSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 254, FlinkSqlParser.RULE_limitClause); + this.enterRule(localContext, 258, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1677; + this.state = 1700; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1680; + this.state = 1703; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1678; + this.state = 1701; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7969,7 +8079,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1679; + this.state = 1702; localContext._limit = this.expression(); } break; @@ -7994,58 +8104,58 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 260, FlinkSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1682; + this.state = 1705; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1683; + this.state = 1706; this.match(FlinkSqlParser.KW_BY); - this.state = 1686; + this.state = 1709; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { case 1: { - this.state = 1684; + this.state = 1707; this.columnName(); } break; case 2: { - this.state = 1685; + this.state = 1708; this.primaryExpression(0); } break; } - this.state = 1695; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1688; + this.state = 1711; this.match(FlinkSqlParser.COMMA); - this.state = 1691; + this.state = 1714; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 1689; + this.state = 1712; this.columnName(); } break; case 2: { - this.state = 1690; + this.state = 1713; this.primaryExpression(0); } break; } } } - this.state = 1697; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8067,16 +8177,16 @@ export class FlinkSqlParser extends SQLParserBase { } public quantifiers(): QuantifiersContext { let localContext = new QuantifiersContext(this.context, this.state); - this.enterRule(localContext, 258, FlinkSqlParser.RULE_quantifiers); + this.enterRule(localContext, 262, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1714; + this.state = 1737; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1698; + this.state = 1721; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -8085,7 +8195,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1699; + this.state = 1722; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -8094,7 +8204,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1700; + this.state = 1723; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -8103,15 +8213,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1701; + this.state = 1724; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1702; + this.state = 1725; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1703; + this.state = 1726; this.match(FlinkSqlParser.COMMA); - this.state = 1704; + this.state = 1727; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1705; + this.state = 1728; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8120,13 +8230,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1706; + this.state = 1729; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1707; + this.state = 1730; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1708; + this.state = 1731; this.match(FlinkSqlParser.COMMA); - this.state = 1709; + this.state = 1732; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8135,13 +8245,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1710; + this.state = 1733; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1711; + this.state = 1734; this.match(FlinkSqlParser.COMMA); - this.state = 1712; + this.state = 1735; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1713; + this.state = 1736; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8164,28 +8274,28 @@ export class FlinkSqlParser extends SQLParserBase { } public measuresClause(): MeasuresClauseContext { let localContext = new MeasuresClauseContext(this.context, this.state); - this.enterRule(localContext, 260, FlinkSqlParser.RULE_measuresClause); + this.enterRule(localContext, 264, FlinkSqlParser.RULE_measuresClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1716; + this.state = 1739; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1717; + this.state = 1740; this.projectItemDefinition(); - this.state = 1722; + this.state = 1745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1718; + this.state = 1741; this.match(FlinkSqlParser.COMMA); - this.state = 1719; + this.state = 1742; this.projectItemDefinition(); } } - this.state = 1724; + this.state = 1747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8207,37 +8317,37 @@ export class FlinkSqlParser extends SQLParserBase { } public patternDefinition(): PatternDefinitionContext { let localContext = new PatternDefinitionContext(this.context, this.state); - this.enterRule(localContext, 262, FlinkSqlParser.RULE_patternDefinition); + this.enterRule(localContext, 266, FlinkSqlParser.RULE_patternDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1725; + this.state = 1748; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1726; + this.state = 1749; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1728; + this.state = 1751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1727; + this.state = 1750; this.patternVariable(); } } - this.state = 1730; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 539 || _la === 542); - this.state = 1732; + this.state = 1755; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1734; + this.state = 1757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 435) { { - this.state = 1733; + this.state = 1756; this.withinClause(); } } @@ -8260,19 +8370,19 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariable(): PatternVariableContext { let localContext = new PatternVariableContext(this.context, this.state); - this.enterRule(localContext, 264, FlinkSqlParser.RULE_patternVariable); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_patternVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1736; + this.state = 1759; this.unquotedIdentifier(); - this.state = 1738; + this.state = 1761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 519)) & ~0x1F) === 0 && ((1 << (_la - 519)) & 135681) !== 0)) { { - this.state = 1737; + this.state = 1760; this.quantifiers(); } } @@ -8295,34 +8405,34 @@ export class FlinkSqlParser extends SQLParserBase { } public outputMode(): OutputModeContext { let localContext = new OutputModeContext(this.context, this.state); - this.enterRule(localContext, 266, FlinkSqlParser.RULE_outputMode); + this.enterRule(localContext, 270, FlinkSqlParser.RULE_outputMode); try { - this.state = 1748; + this.state = 1771; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1740; + this.state = 1763; this.match(FlinkSqlParser.KW_ALL); - this.state = 1741; + this.state = 1764; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1742; + this.state = 1765; this.match(FlinkSqlParser.KW_PER); - this.state = 1743; + this.state = 1766; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1744; + this.state = 1767; this.match(FlinkSqlParser.KW_ONE); - this.state = 1745; + this.state = 1768; this.match(FlinkSqlParser.KW_ROW); - this.state = 1746; + this.state = 1769; this.match(FlinkSqlParser.KW_PER); - this.state = 1747; + this.state = 1770; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -8346,76 +8456,76 @@ export class FlinkSqlParser extends SQLParserBase { } public afterMatchStrategy(): AfterMatchStrategyContext { let localContext = new AfterMatchStrategyContext(this.context, this.state); - this.enterRule(localContext, 268, FlinkSqlParser.RULE_afterMatchStrategy); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1774; + this.state = 1797; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1750; + this.state = 1773; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1751; + this.state = 1774; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1752; + this.state = 1775; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1753; + this.state = 1776; this.match(FlinkSqlParser.KW_PAST); - this.state = 1754; + this.state = 1777; this.match(FlinkSqlParser.KW_LAST); - this.state = 1755; + this.state = 1778; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1756; + this.state = 1779; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1757; + this.state = 1780; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1758; + this.state = 1781; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1759; + this.state = 1782; this.match(FlinkSqlParser.KW_TO); - this.state = 1760; + this.state = 1783; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1761; + this.state = 1784; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1762; + this.state = 1785; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1763; + this.state = 1786; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1764; + this.state = 1787; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1765; + this.state = 1788; this.match(FlinkSqlParser.KW_TO); - this.state = 1766; + this.state = 1789; this.match(FlinkSqlParser.KW_LAST); - this.state = 1767; + this.state = 1790; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1768; + this.state = 1791; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1769; + this.state = 1792; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1770; + this.state = 1793; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1771; + this.state = 1794; this.match(FlinkSqlParser.KW_TO); - this.state = 1772; + this.state = 1795; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1773; + this.state = 1796; this.unquotedIdentifier(); } break; @@ -8437,28 +8547,28 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariablesDefinition(): PatternVariablesDefinitionContext { let localContext = new PatternVariablesDefinitionContext(this.context, this.state); - this.enterRule(localContext, 270, FlinkSqlParser.RULE_patternVariablesDefinition); + this.enterRule(localContext, 274, FlinkSqlParser.RULE_patternVariablesDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1776; + this.state = 1799; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1777; + this.state = 1800; this.projectItemDefinition(); - this.state = 1782; + this.state = 1805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1778; + this.state = 1801; this.match(FlinkSqlParser.COMMA); - this.state = 1779; + this.state = 1802; this.projectItemDefinition(); } } - this.state = 1784; + this.state = 1807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8480,34 +8590,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1794; + this.state = 1817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1785; + this.state = 1808; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1786; + this.state = 1809; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1787; + this.state = 1810; this.timeIntervalExpression(); - this.state = 1788; + this.state = 1811; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1790; + this.state = 1813; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1791; + this.state = 1814; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1792; + this.state = 1815; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1793; + this.state = 1816; this.frameBound(); } break; @@ -8531,17 +8641,17 @@ export class FlinkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_frameBound); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1819; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1797; + this.state = 1820; this.match(FlinkSqlParser.KW_AND); - this.state = 1798; + this.state = 1821; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1799; + this.state = 1822; this.match(FlinkSqlParser.KW_ROW); } } @@ -8561,13 +8671,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1801; + this.state = 1824; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1802; + this.state = 1825; this.timeIntervalExpression(); } } @@ -8587,11 +8697,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1804; + this.state = 1827; this.booleanExpression(0); } } @@ -8621,25 +8731,25 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 280; - this.enterRecursionRule(localContext, 280, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 284; + this.enterRecursionRule(localContext, 284, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1818; + this.state = 1841; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1807; + this.state = 1830; this.match(FlinkSqlParser.KW_NOT); - this.state = 1808; + this.state = 1831; this.booleanExpression(6); } break; @@ -8648,13 +8758,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1809; + this.state = 1832; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1810; + this.state = 1833; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1811; + this.state = 1834; this.queryStatement(0); - this.state = 1812; + this.state = 1835; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8663,14 +8773,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1814; + this.state = 1837; this.valueExpression(0); - this.state = 1816; + this.state = 1839; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { case 1: { - this.state = 1815; + this.state = 1838; this.predicate(); } break; @@ -8679,9 +8789,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1834; + this.state = 1857; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 206, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 210, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8689,21 +8799,21 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1832; + this.state = 1855; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1820; + this.state = 1843; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1821; + this.state = 1844; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1822; + this.state = 1845; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8712,13 +8822,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1823; + this.state = 1846; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1824; + this.state = 1847; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1825; + this.state = 1848; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8726,23 +8836,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1826; + this.state = 1849; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1827; + this.state = 1850; this.match(FlinkSqlParser.KW_IS); - this.state = 1829; + this.state = 1852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1828; + this.state = 1851; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1831; + this.state = 1854; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8757,9 +8867,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1836; + this.state = 1859; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 206, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 210, this.context); } } } @@ -8779,33 +8889,33 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1911; + this.state = 1934; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1838; + this.state = 1861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1837; + this.state = 1860; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1840; + this.state = 1863; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1842; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 370) { { - this.state = 1841; + this.state = 1864; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 370)) { this.errorHandler.recoverInline(this); @@ -8817,131 +8927,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1844; + this.state = 1867; localContext._lower = this.valueExpression(0); - this.state = 1845; + this.state = 1868; this.match(FlinkSqlParser.KW_AND); - this.state = 1846; + this.state = 1869; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1849; + this.state = 1872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1848; + this.state = 1871; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1851; + this.state = 1874; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1852; + this.state = 1875; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1853; + this.state = 1876; this.expression(); - this.state = 1858; + this.state = 1881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1854; + this.state = 1877; this.match(FlinkSqlParser.COMMA); - this.state = 1855; + this.state = 1878; this.expression(); } } - this.state = 1860; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1861; + this.state = 1884; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1864; + this.state = 1887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1863; + this.state = 1886; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1866; + this.state = 1889; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1867; + this.state = 1890; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1868; + this.state = 1891; this.queryStatement(0); - this.state = 1869; + this.state = 1892; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1871; + this.state = 1894; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1872; + this.state = 1895; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1873; + this.state = 1896; this.queryStatement(0); - this.state = 1874; + this.state = 1897; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1877; + this.state = 1900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1876; + this.state = 1899; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1879; + this.state = 1902; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1880; + this.state = 1903; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1881; + this.state = 1904; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1882; + this.state = 1905; this.match(FlinkSqlParser.KW_IS); - this.state = 1884; + this.state = 1907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1883; + this.state = 1906; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1886; + this.state = 1909; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8956,53 +9066,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1887; + this.state = 1910; this.match(FlinkSqlParser.KW_IS); - this.state = 1889; + this.state = 1912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1888; + this.state = 1911; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1891; + this.state = 1914; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1892; + this.state = 1915; this.match(FlinkSqlParser.KW_FROM); - this.state = 1893; + this.state = 1916; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1895; + this.state = 1918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1894; + this.state = 1917; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1897; + this.state = 1920; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1898; + this.state = 1921; this.match(FlinkSqlParser.KW_TO); - this.state = 1899; + this.state = 1922; localContext._right = this.valueExpression(0); - this.state = 1902; + this.state = 1925; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 1900; + this.state = 1923; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1901; + this.state = 1924; this.stringLiteral(); } break; @@ -9012,28 +9122,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1904; + this.state = 1927; this.match(FlinkSqlParser.KW_IS); - this.state = 1905; + this.state = 1928; this.match(FlinkSqlParser.KW_JSON); - this.state = 1909; + this.state = 1932; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1906; + this.state = 1929; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1907; + this.state = 1930; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1908; + this.state = 1931; this.identifier(); } break; @@ -9058,28 +9168,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1942; + this.state = 1965; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1914; + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1913; + this.state = 1936; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1916; + this.state = 1939; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1917; + this.state = 1940; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -9089,40 +9199,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1931; + this.state = 1954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 1918; + this.state = 1941; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1919; + this.state = 1942; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1920; + this.state = 1943; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1921; + this.state = 1944; this.expression(); - this.state = 1926; + this.state = 1949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1922; + this.state = 1945; this.match(FlinkSqlParser.COMMA); - this.state = 1923; + this.state = 1946; this.expression(); } } - this.state = 1928; + this.state = 1951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1929; + this.state = 1952; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9132,28 +9242,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1934; + this.state = 1957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1933; + this.state = 1956; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1936; + this.state = 1959; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1937; + this.state = 1960; localContext._pattern = this.valueExpression(0); - this.state = 1940; + this.state = 1963; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 1938; + this.state = 1961; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1939; + this.state = 1962; this.stringLiteral(); } break; @@ -9188,23 +9298,23 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 286; - this.enterRecursionRule(localContext, 286, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 290; + this.enterRecursionRule(localContext, 290, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1948; + this.state = 1971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1945; + this.state = 1968; this.primaryExpression(0); } break; @@ -9213,7 +9323,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1946; + this.state = 1969; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3145729) !== 0))) { @@ -9223,15 +9333,15 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1947; + this.state = 1970; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1971; + this.state = 1994; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 227, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9239,19 +9349,19 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1969; + this.state = 1992; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 226, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1950; + this.state = 1973; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1951; + this.state = 1974; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 145) !== 0))) { @@ -9261,7 +9371,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1952; + this.state = 1975; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -9270,11 +9380,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1953; + this.state = 1976; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1954; + this.state = 1977; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 11) !== 0))) { @@ -9284,7 +9394,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1955; + this.state = 1978; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -9293,13 +9403,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1956; + this.state = 1979; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1957; + this.state = 1980; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1958; + this.state = 1981; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -9308,13 +9418,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1959; + this.state = 1982; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1960; + this.state = 1983; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1961; + this.state = 1984; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9323,13 +9433,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1962; + this.state = 1985; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1963; + this.state = 1986; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1964; + this.state = 1987; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9338,22 +9448,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1965; + this.state = 1988; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1966; + this.state = 1989; this.comparisonOperator(); - this.state = 1967; + this.state = 1990; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1973; + this.state = 1996; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 227, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); } } } @@ -9373,10 +9483,10 @@ export class FlinkSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 1993; + this.state = 2016; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -9386,7 +9496,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 1974; + this.state = 1997; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -9396,7 +9506,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 1975; + this.state = 1998; this.functionNameAndParams(); } break; @@ -9537,47 +9647,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 1976; + this.state = 1999; this.functionNameWithParams(); - this.state = 1977; + this.state = 2000; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1989; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396848) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 10489249) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 1883341377) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 201330753) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 488456033) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 390)) & ~0x1F) === 0 && ((1 << (_la - 390)) & 3238528833) !== 0) || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 4294966785) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 4294967295) !== 0) || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 33832959) !== 0) || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 31757) !== 0)) { { - this.state = 1979; + this.state = 2002; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 1978; + this.state = 2001; this.setQuantifier(); } break; } - this.state = 1981; + this.state = 2004; this.functionParam(); - this.state = 1986; + this.state = 2009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1982; + this.state = 2005; this.match(FlinkSqlParser.COMMA); - this.state = 1983; + this.state = 2006; this.functionParam(); } } - this.state = 1988; + this.state = 2011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1991; + this.state = 2014; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9611,51 +9721,51 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 290; - this.enterRecursionRule(localContext, 290, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 294; + this.enterRecursionRule(localContext, 294, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2070; + this.state = 2093; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1996; + this.state = 2019; this.match(FlinkSqlParser.KW_CASE); - this.state = 1998; + this.state = 2021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1997; + this.state = 2020; this.whenClause(); } } - this.state = 2000; + this.state = 2023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 2004; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 2002; + this.state = 2025; this.match(FlinkSqlParser.KW_ELSE); - this.state = 2003; + this.state = 2026; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2006; + this.state = 2029; this.match(FlinkSqlParser.KW_END); } break; @@ -9664,37 +9774,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2008; + this.state = 2031; this.match(FlinkSqlParser.KW_CASE); - this.state = 2009; + this.state = 2032; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 2011; + this.state = 2034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2010; + this.state = 2033; this.whenClause(); } } - this.state = 2013; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 2017; + this.state = 2040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 2015; + this.state = 2038; this.match(FlinkSqlParser.KW_ELSE); - this.state = 2016; + this.state = 2039; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2019; + this.state = 2042; this.match(FlinkSqlParser.KW_END); } break; @@ -9703,17 +9813,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2021; + this.state = 2044; this.match(FlinkSqlParser.KW_CAST); - this.state = 2022; + this.state = 2045; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2023; + this.state = 2046; this.expression(); - this.state = 2024; + this.state = 2047; this.match(FlinkSqlParser.KW_AS); - this.state = 2025; + this.state = 2048; this.columnType(); - this.state = 2026; + this.state = 2049; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9722,25 +9832,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2028; + this.state = 2051; this.match(FlinkSqlParser.KW_FIRST); - this.state = 2029; + this.state = 2052; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2030; + this.state = 2053; this.expression(); - this.state = 2033; + this.state = 2056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 2031; + this.state = 2054; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 2032; + this.state = 2055; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 2035; + this.state = 2058; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9749,25 +9859,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2037; + this.state = 2060; this.match(FlinkSqlParser.KW_LAST); - this.state = 2038; + this.state = 2061; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2039; + this.state = 2062; this.expression(); - this.state = 2042; + this.state = 2065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 2040; + this.state = 2063; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 2041; + this.state = 2064; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 2044; + this.state = 2067; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9776,17 +9886,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2046; + this.state = 2069; this.match(FlinkSqlParser.KW_POSITION); - this.state = 2047; + this.state = 2070; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2048; + this.state = 2071; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 2049; + this.state = 2072; this.match(FlinkSqlParser.KW_IN); - this.state = 2050; + this.state = 2073; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 2051; + this.state = 2074; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9795,7 +9905,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2053; + this.state = 2076; this.constant(); } break; @@ -9804,7 +9914,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2054; + this.state = 2077; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9813,11 +9923,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2055; + this.state = 2078; this.uid(); - this.state = 2056; + this.state = 2079; this.match(FlinkSqlParser.DOT); - this.state = 2057; + this.state = 2080; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9826,11 +9936,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2059; + this.state = 2082; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2060; + this.state = 2083; this.queryStatement(0); - this.state = 2061; + this.state = 2084; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9839,7 +9949,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2063; + this.state = 2086; this.functionCallExpression(); } break; @@ -9848,7 +9958,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2064; + this.state = 2087; this.columnNamePath(); } break; @@ -9857,7 +9967,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2065; + this.state = 2088; this.dereferenceDefinition(); } break; @@ -9866,19 +9976,19 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2066; + this.state = 2089; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2067; + this.state = 2090; this.expression(); - this.state = 2068; + this.state = 2091; this.match(FlinkSqlParser.RR_BRACKET); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2079; + this.state = 2102; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9890,22 +10000,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 2072; + this.state = 2095; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 2073; + this.state = 2096; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 2074; + this.state = 2097; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2075; + this.state = 2098; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2081; + this.state = 2104; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); } } } @@ -9925,11 +10035,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2082; + this.state = 2105; this.uid(); } } @@ -9949,36 +10059,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_functionName); try { - this.state = 2088; + this.state = 2111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2107; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2085; + this.state = 2108; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2086; + this.state = 2109; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2087; + this.state = 2110; this.uid(); } break; @@ -10000,9 +10110,9 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameAndParams(): FunctionNameAndParamsContext { let localContext = new FunctionNameAndParamsContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_functionNameAndParams); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_functionNameAndParams); try { - this.state = 2094; + this.state = 2117; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_DATE: @@ -10010,16 +10120,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2090; + this.state = 2113; this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2091; + this.state = 2114; this.match(FlinkSqlParser.STRING_LITERAL); } break; case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 2093; + this.state = 2116; this.timeIntervalExpression(); } break; @@ -10043,22 +10153,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameWithParams(): FunctionNameWithParamsContext { let localContext = new FunctionNameWithParamsContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_functionNameWithParams); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 2098; + this.state = 2121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2096; + this.state = 2119; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2097; + this.state = 2120; this.uid(); } break; @@ -10080,36 +10190,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_functionParam); try { - this.state = 2104; + this.state = 2127; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2100; + this.state = 2123; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2101; + this.state = 2124; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2102; + this.state = 2125; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2103; + this.state = 2126; this.expression(); } break; @@ -10131,11 +10241,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2106; + this.state = 2129; this.uid(); } } @@ -10155,11 +10265,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2108; + this.state = 2131; this.identifier(); } } @@ -10179,22 +10289,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2112; + this.state = 2135; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2110; + this.state = 2133; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2111; + this.state = 2134; this.dereferenceDefinition(); } break; @@ -10216,24 +10326,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2114; + this.state = 2137; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2117; + this.state = 2140; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2115; + this.state = 2138; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2116; + this.state = 2139; this.errorCapturingUnitToUnitInterval(); } break; @@ -10256,18 +10366,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2119; + this.state = 2142; this.multiUnitsInterval(); - this.state = 2121; + this.state = 2144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2120; + this.state = 2143; this.unitToUnitInterval(); } break; @@ -10290,12 +10400,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2126; + this.state = 2149; this.errorHandler.sync(this); alternative = 1; do { @@ -10303,9 +10413,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2123; + this.state = 2146; this.intervalValue(); - this.state = 2124; + this.state = 2147; this.timeIntervalUnit(); } } @@ -10313,9 +10423,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2128; + this.state = 2151; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 247, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -10335,24 +10445,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2130; + this.state = 2153; localContext._body = this.unitToUnitInterval(); - this.state = 2133; + this.state = 2156; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2131; + this.state = 2154; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2132; + this.state = 2155; localContext._error2 = this.unitToUnitInterval(); } break; @@ -10375,17 +10485,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2135; + this.state = 2158; localContext._value = this.intervalValue(); - this.state = 2136; + this.state = 2159; localContext._from_ = this.timeIntervalUnit(); - this.state = 2137; + this.state = 2160; this.match(FlinkSqlParser.KW_TO); - this.state = 2138; + this.state = 2161; localContext._to = this.timeIntervalUnit(); } } @@ -10405,10 +10515,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2145; + this.state = 2168; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -10417,12 +10527,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530 || _la === 531) { { - this.state = 2140; + this.state = 2163; _la = this.tokenStream.LA(1); if(!(_la === 530 || _la === 531)) { this.errorHandler.recoverInline(this); @@ -10434,7 +10544,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2143; + this.state = 2166; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 540)) { this.errorHandler.recoverInline(this); @@ -10448,7 +10558,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2144; + this.state = 2167; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10472,29 +10582,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2148; + this.state = 2171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2147; + this.state = 2170; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2150; + this.state = 2173; localContext._alias = this.identifier(); - this.state = 2152; + this.state = 2175; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2151; + this.state = 2174; this.identifierList(); } break; @@ -10517,13 +10627,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2154; + this.state = 2177; this.identifier(); - this.state = 2155; + this.state = 2178; this.errorCapturingIdentifierExtra(); } } @@ -10543,29 +10653,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2164; + this.state = 2187; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2159; + this.state = 2182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2157; + this.state = 2180; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2158; + this.state = 2181; this.identifier(); } } - this.state = 2161; + this.state = 2184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 222); @@ -10599,15 +10709,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2166; + this.state = 2189; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2167; + this.state = 2190; this.identifierSeq(); - this.state = 2168; + this.state = 2191; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10627,26 +10737,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2170; + this.state = 2193; this.identifier(); - this.state = 2175; + this.state = 2198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2171; + this.state = 2194; this.match(FlinkSqlParser.COMMA); - this.state = 2172; + this.state = 2195; this.identifier(); } } - this.state = 2177; + this.state = 2200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10668,9 +10778,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_identifier); try { - this.state = 2181; + this.state = 2204; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -10678,7 +10788,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2178; + this.state = 2201; this.unquotedIdentifier(); } break; @@ -10686,7 +10796,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2179; + this.state = 2202; this.quotedIdentifier(); } break; @@ -10761,7 +10871,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2180; + this.state = 2203; this.nonReservedKeywords(); } break; @@ -10785,12 +10895,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2183; + this.state = 2206; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 542)) { this.errorHandler.recoverInline(this); @@ -10817,11 +10927,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2185; + this.state = 2208; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10841,17 +10951,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2187; + this.state = 2210; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2188; + this.state = 2211; localContext._condition = this.expression(); - this.state = 2189; + this.state = 2212; this.match(FlinkSqlParser.KW_THEN); - this.state = 2190; + this.state = 2213; localContext._result = this.expression(); } } @@ -10871,11 +10981,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2192; + this.state = 2215; this.identifier(); } } @@ -10895,11 +11005,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2194; + this.state = 2217; this.identifier(); } } @@ -10919,21 +11029,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2219; this.identifier(); - this.state = 2199; + this.state = 2222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2197; + this.state = 2220; this.match(FlinkSqlParser.DOT); - this.state = 2198; + this.state = 2221; this.identifier(); } } @@ -10956,21 +11066,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2224; this.identifier(); - this.state = 2204; + this.state = 2227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2202; + this.state = 2225; this.match(FlinkSqlParser.DOT); - this.state = 2203; + this.state = 2226; this.identifier(); } } @@ -10993,25 +11103,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2218; + this.state = 2241; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2206; + this.state = 2229; this.identifier(); - this.state = 2209; + this.state = 2232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2207; + this.state = 2230; this.match(FlinkSqlParser.DOT); - this.state = 2208; + this.state = 2231; this.identifier(); } } @@ -11021,20 +11131,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2211; + this.state = 2234; this.identifier(); - this.state = 2212; + this.state = 2235; this.match(FlinkSqlParser.DOT); - this.state = 2213; + this.state = 2236; this.identifier(); - this.state = 2216; + this.state = 2239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2214; + this.state = 2237; this.match(FlinkSqlParser.DOT); - this.state = 2215; + this.state = 2238; this.identifier(); } } @@ -11059,24 +11169,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_tablePath); try { - this.state = 2232; + this.state = 2255; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2220; + this.state = 2243; this.identifier(); - this.state = 2223; + this.state = 2246; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2221; + this.state = 2244; this.match(FlinkSqlParser.DOT); - this.state = 2222; + this.state = 2245; this.identifier(); } break; @@ -11086,20 +11196,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2225; + this.state = 2248; this.identifier(); - this.state = 2226; + this.state = 2249; this.match(FlinkSqlParser.DOT); - this.state = 2227; + this.state = 2250; this.identifier(); - this.state = 2230; + this.state = 2253; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: { - this.state = 2228; + this.state = 2251; this.match(FlinkSqlParser.DOT); - this.state = 2229; + this.state = 2252; this.identifier(); } break; @@ -11124,24 +11234,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_viewPath); try { - this.state = 2246; + this.state = 2269; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2234; + this.state = 2257; this.identifier(); - this.state = 2237; + this.state = 2260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2235; + this.state = 2258; this.match(FlinkSqlParser.DOT); - this.state = 2236; + this.state = 2259; this.identifier(); } break; @@ -11151,20 +11261,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2239; + this.state = 2262; this.identifier(); - this.state = 2240; + this.state = 2263; this.match(FlinkSqlParser.DOT); - this.state = 2241; + this.state = 2264; this.identifier(); - this.state = 2244; + this.state = 2267; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { case 1: { - this.state = 2242; + this.state = 2265; this.match(FlinkSqlParser.DOT); - this.state = 2243; + this.state = 2266; this.identifier(); } break; @@ -11189,25 +11299,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2260; + this.state = 2283; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2248; + this.state = 2271; this.identifier(); - this.state = 2251; + this.state = 2274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2249; + this.state = 2272; this.match(FlinkSqlParser.DOT); - this.state = 2250; + this.state = 2273; this.identifier(); } } @@ -11217,20 +11327,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2253; + this.state = 2276; this.identifier(); - this.state = 2254; + this.state = 2277; this.match(FlinkSqlParser.DOT); - this.state = 2255; + this.state = 2278; this.identifier(); - this.state = 2258; + this.state = 2281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2256; + this.state = 2279; this.match(FlinkSqlParser.DOT); - this.state = 2257; + this.state = 2280; this.identifier(); } } @@ -11255,31 +11365,95 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2262; + this.state = 2285; this.identifier(); - this.state = 2267; + this.state = 2290; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 271, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 275, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2263; + this.state = 2286; this.match(FlinkSqlParser.DOT); - this.state = 2264; + this.state = 2287; this.identifier(); } } } - this.state = 2269; + this.state = 2292; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 271, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 275, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; } + } + finally { + this.exitRule(); + } + return localContext; + } + public uidAllowEmpty(): UidAllowEmptyContext { + let localContext = new UidAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_uidAllowEmpty); + try { + let alternative: number; + this.state = 2306; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2293; + this.identifier(); + this.state = 2298; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2294; + this.match(FlinkSqlParser.DOT); + this.state = 2295; + this.identifier(); + } + } + } + this.state = 2300; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); + } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2301; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 2302; + this.identifier(); + this.state = 2303; + this.match(FlinkSqlParser.DOT); + this.state = 2304; + this.emptyColumn(); + } + break; } } catch (re) { @@ -11298,13 +11472,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2270; + this.state = 2308; this.match(FlinkSqlParser.KW_WITH); - this.state = 2271; + this.state = 2309; this.tablePropertyList(); } } @@ -11324,15 +11498,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2273; + this.state = 2311; this.match(FlinkSqlParser.KW_IF); - this.state = 2274; + this.state = 2312; this.match(FlinkSqlParser.KW_NOT); - this.state = 2275; + this.state = 2313; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -11352,13 +11526,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2277; + this.state = 2315; this.match(FlinkSqlParser.KW_IF); - this.state = 2278; + this.state = 2316; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -11378,32 +11552,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2280; + this.state = 2318; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2281; + this.state = 2319; this.tableProperty(); - this.state = 2286; + this.state = 2324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2282; + this.state = 2320; this.match(FlinkSqlParser.COMMA); - this.state = 2283; + this.state = 2321; this.tableProperty(); } } - this.state = 2288; + this.state = 2326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2289; + this.state = 2327; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11423,29 +11597,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2291; + this.state = 2329; localContext._key = this.tablePropertyKey(); - this.state = 2296; + this.state = 2334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 398 || _la === 506 || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 7) !== 0)) { { - this.state = 2293; + this.state = 2331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 2292; + this.state = 2330; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2295; + this.state = 2333; localContext._value = this.tablePropertyValue(); } } @@ -11468,29 +11642,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2301; + this.state = 2339; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2298; + this.state = 2336; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2299; + this.state = 2337; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2300; + this.state = 2338; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11512,22 +11686,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2307; + this.state = 2345; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2303; + this.state = 2341; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2304; + this.state = 2342; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -11535,14 +11709,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2305; + this.state = 2343; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2306; + this.state = 2344; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11566,40 +11740,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2315; + this.state = 2353; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2309; + this.state = 2347; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2310; + this.state = 2348; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2311; + this.state = 2349; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2312; + this.state = 2350; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2313; + this.state = 2351; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2314; + this.state = 2352; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11623,76 +11797,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2331; + this.state = 2369; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2317; + this.state = 2355; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2318; + this.state = 2356; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2319; + this.state = 2357; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2320; + this.state = 2358; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2321; + this.state = 2359; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2322; + this.state = 2360; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2323; + this.state = 2361; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2324; + this.state = 2362; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2325; + this.state = 2363; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2326; + this.state = 2364; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2327; + this.state = 2365; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2328; + this.state = 2366; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2329; + this.state = 2367; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2330; + this.state = 2368; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11714,47 +11888,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2340; + this.state = 2378; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2333; + this.state = 2371; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2334; + this.state = 2372; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2335; + this.state = 2373; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2336; + this.state = 2374; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2337; + this.state = 2375; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2338; + this.state = 2376; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2339; + this.state = 2377; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11778,12 +11952,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 376, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2342; + this.state = 2380; _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11810,12 +11984,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 378, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2344; + this.state = 2382; _la = this.tokenStream.LA(1); if(!(_la === 242 || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11842,16 +12016,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 380, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 386, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2360; + this.state = 2398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2346; + this.state = 2384; this.timeIntervalExpression(); } break; @@ -11867,14 +12041,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2347; + this.state = 2385; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2348; + this.state = 2386; this.stringLiteral(); } break; @@ -11882,17 +12056,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2350; + this.state = 2388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530) { { - this.state = 2349; + this.state = 2387; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2352; + this.state = 2390; this.decimalLiteral(); } break; @@ -11900,21 +12074,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2353; + this.state = 2391; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2354; + this.state = 2392; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2355; + this.state = 2393; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11922,17 +12096,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2357; + this.state = 2395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 2356; + this.state = 2394; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2359; + this.state = 2397; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11956,13 +12130,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 382, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 388, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2362; + this.state = 2400; this.timePointUnit(); - this.state = 2363; + this.state = 2401; this.stringLiteral(); } } @@ -11982,11 +12156,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 384, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 390, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2365; + this.state = 2403; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -12006,11 +12180,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 386, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 392, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2367; + this.state = 2405; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -12030,12 +12204,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 388, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 394, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2369; + this.state = 2407; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 398)) { this.errorHandler.recoverInline(this); @@ -12062,12 +12236,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 390, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 396, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2371; + this.state = 2409; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -12094,12 +12268,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 392, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 398, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2373; + this.state = 2411; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || _la === 437 || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 262149) !== 0) || _la === 503)) { this.errorHandler.recoverInline(this); @@ -12126,12 +12300,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 394, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 400, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2375; + this.state = 2413; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 140542465) !== 0) || ((((_la - 461)) & ~0x1F) === 0 && ((1 << (_la - 461)) & 2415983617) !== 0) || _la === 503 || _la === 504)) { this.errorHandler.recoverInline(this); @@ -12158,12 +12332,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 396, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 402, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2377; + this.state = 2415; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 201)) & ~0x1F) === 0 && ((1 << (_la - 201)) & 385) !== 0) || _la === 390 || _la === 414 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -12190,12 +12364,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 398, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + this.enterRule(localContext, 404, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2379; + this.state = 2417; _la = this.tokenStream.LA(1); if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -12222,12 +12396,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 400, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + this.enterRule(localContext, 406, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2381; + this.state = 2419; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 379 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -12254,12 +12428,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 402, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 408, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2383; + this.state = 2421; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 277391867) !== 0) || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 41943565) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 8389763) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339865) !== 0) || _la === 437 || _la === 470 || _la === 489 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -12286,12 +12460,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 404, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 410, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2385; + this.state = 2423; _la = this.tokenStream.LA(1); if(!(((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -12319,18 +12493,22 @@ export class FlinkSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 26: + case 27: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 80: + case 29: + return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); + case 82: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); - case 97: + case 99: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 140: + case 142: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 143: - return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 145: + return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); + case 147: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); + case 180: + return this.uidAllowEmpty_sempred(localContext as UidAllowEmptyContext, predIndex); } return true; } @@ -12341,60 +12519,74 @@ export class FlinkSqlParser extends SQLParserBase { } return true; } - private queryStatement_sempred(localContext: QueryStatementContext | null, predIndex: number): boolean { + private columnNamePathAllowEmpty_sempred(localContext: ColumnNamePathAllowEmptyContext | null, predIndex: number): boolean { switch (predIndex) { case 1: - return this.precpred(this.context, 3); + return this.shouldMatchEmpty(); } return true; } - private tableExpression_sempred(localContext: TableExpressionContext | null, predIndex: number): boolean { + private queryStatement_sempred(localContext: QueryStatementContext | null, predIndex: number): boolean { switch (predIndex) { case 2: return this.precpred(this.context, 3); + } + return true; + } + private tableExpression_sempred(localContext: TableExpressionContext | null, predIndex: number): boolean { + switch (predIndex) { case 3: + return this.precpred(this.context, 3); + case 4: return this.precpred(this.context, 4); } return true; } private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 4: - return this.precpred(this.context, 3); case 5: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 6: + return this.precpred(this.context, 2); + case 7: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 7: - return this.precpred(this.context, 6); case 8: - return this.precpred(this.context, 5); + return this.precpred(this.context, 6); case 9: - return this.precpred(this.context, 4); + return this.precpred(this.context, 5); case 10: - return this.precpred(this.context, 3); + return this.precpred(this.context, 4); case 11: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 12: + return this.precpred(this.context, 2); + case 13: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 13: + case 14: return this.precpred(this.context, 4); } return true; } + private uidAllowEmpty_sempred(localContext: UidAllowEmptyContext | null, predIndex: number): boolean { + switch (predIndex) { + case 15: + return this.shouldMatchEmpty(); + } + return true; + } public static readonly _serializedATN: number[] = [ - 4,1,542,2388,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,542,2426,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, @@ -12428,987 +12620,1003 @@ export class FlinkSqlParser extends SQLParserBase { 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, - 1,0,5,0,408,8,0,10,0,12,0,411,9,0,1,0,1,0,1,1,1,1,3,1,417,8,1,1, - 1,3,1,420,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3, - 2,434,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, - 4,1,4,1,4,3,4,452,8,4,1,5,1,5,3,5,456,8,5,1,6,1,6,1,6,1,7,1,7,1, - 7,1,7,3,7,465,8,7,1,7,1,7,1,7,3,7,470,8,7,1,8,1,8,1,8,5,8,475,8, - 8,10,8,12,8,478,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,488, - 8,10,1,11,1,11,1,11,1,11,1,11,5,11,495,8,11,10,11,12,11,498,9,11, - 1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,509,8,12,1,12, - 3,12,512,8,12,1,12,1,12,1,12,1,12,1,12,3,12,519,8,12,1,12,3,12,522, - 8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,530,8,12,1,12,1,12,3,12, - 534,8,12,1,12,1,12,1,12,3,12,539,8,12,1,12,3,12,542,8,12,1,13,1, - 13,1,13,1,13,1,13,3,13,549,8,13,1,14,1,14,1,14,1,14,1,15,1,15,3, - 15,557,8,15,1,16,1,16,3,16,561,8,16,1,17,1,17,1,17,1,17,1,18,1,18, - 1,18,1,18,1,18,1,18,3,18,573,8,18,1,18,1,18,1,18,1,18,1,18,1,18, - 3,18,581,8,18,1,18,1,18,3,18,585,8,18,1,18,1,18,1,18,1,18,1,18,1, - 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, - 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,617, - 8,18,1,19,3,19,620,8,19,1,19,4,19,623,8,19,11,19,12,19,624,1,20, - 1,20,3,20,629,8,20,1,21,1,21,3,21,633,8,21,1,21,1,21,3,21,637,8, - 21,1,21,1,21,1,21,1,21,1,21,5,21,644,8,21,10,21,12,21,647,9,21,1, - 21,1,21,3,21,651,8,21,1,21,1,21,3,21,655,8,21,1,21,1,21,3,21,659, - 8,21,1,21,1,21,1,21,3,21,664,8,21,1,21,3,21,667,8,21,1,21,1,21,3, - 21,671,8,21,1,22,1,22,1,22,3,22,676,8,22,1,22,1,22,1,22,1,22,3,22, - 682,8,22,1,23,1,23,1,23,3,23,687,8,23,1,24,1,24,1,24,3,24,692,8, - 24,1,24,1,24,3,24,696,8,24,1,25,1,25,3,25,700,8,25,1,26,1,26,3,26, - 704,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5,28,712,8,28,10,28,12,28, - 715,9,28,1,28,1,28,1,29,1,29,1,29,3,29,722,8,29,1,29,1,29,3,29,726, - 8,29,1,29,1,29,3,29,730,8,29,1,29,1,29,3,29,734,8,29,1,29,1,29,3, - 29,738,8,29,1,29,1,29,3,29,742,8,29,1,29,1,29,3,29,746,8,29,1,29, - 1,29,3,29,750,8,29,1,29,1,29,3,29,754,8,29,3,29,756,8,29,1,30,1, - 30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,766,8,31,1,31,1,31,1,32,1, - 32,1,32,1,32,3,32,774,8,32,1,32,1,32,1,33,1,33,1,33,1,33,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,35,1,35,5, - 35,796,8,35,10,35,12,35,799,9,35,1,35,1,35,1,35,1,35,1,35,1,35,1, - 35,1,35,1,35,5,35,810,8,35,10,35,12,35,813,9,35,1,35,1,35,3,35,817, - 8,35,1,36,1,36,3,36,821,8,36,1,36,1,36,1,36,1,36,3,36,827,8,36,1, - 36,3,36,830,8,36,1,36,3,36,833,8,36,1,37,1,37,1,37,1,37,1,37,3,37, - 840,8,37,1,37,3,37,843,8,37,1,38,1,38,1,39,1,39,1,39,1,39,1,39,3, - 39,852,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,3, - 42,864,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,44,1,44,1, - 44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46,886,8,46,10, - 46,12,46,889,9,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,5,47,898,8, - 47,10,47,12,47,901,9,47,1,47,1,47,3,47,905,8,47,1,48,1,48,3,48,909, - 8,48,1,49,1,49,1,49,1,49,5,49,915,8,49,10,49,12,49,918,9,49,1,49, - 3,49,921,8,49,1,50,1,50,1,50,1,50,3,50,927,8,50,1,51,1,51,1,51,1, - 51,1,51,1,52,1,52,1,52,3,52,937,8,52,1,52,1,52,1,52,3,52,942,8,52, - 1,52,1,52,1,53,1,53,3,53,948,8,53,1,53,1,53,3,53,952,8,53,1,53,1, - 53,3,53,956,8,53,1,53,1,53,3,53,960,8,53,1,53,1,53,1,53,1,54,1,54, - 1,54,1,54,3,54,969,8,54,1,54,1,54,3,54,973,8,54,1,54,1,54,1,54,1, - 54,1,54,3,54,980,8,54,1,54,3,54,983,8,54,1,55,1,55,1,55,1,55,1,55, - 1,55,5,55,991,8,55,10,55,12,55,994,9,55,1,56,1,56,1,57,1,57,1,57, - 3,57,1001,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,1009,8,57,1,58, - 1,58,3,58,1013,8,58,1,58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,3,60,1028,8,60,1,61,1,61,1,61,1,61,1,62,1,62, - 1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64,3,64,1047, - 8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,3,66,1058,8,66, - 1,66,1,66,3,66,1062,8,66,1,66,1,66,1,66,1,66,1,66,3,66,1069,8,66, - 1,67,1,67,1,67,3,67,1074,8,67,1,67,1,67,1,68,1,68,3,68,1080,8,68, - 1,68,1,68,3,68,1084,8,68,1,68,1,68,1,69,1,69,1,69,3,69,1091,8,69, - 1,69,1,69,3,69,1095,8,69,1,70,1,70,3,70,1099,8,70,1,70,1,70,3,70, - 1103,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71,1111,8,71,1,71,1,71, - 3,71,1115,8,71,1,71,1,71,1,72,3,72,1120,8,72,1,72,1,72,1,72,1,72, - 3,72,1126,8,72,1,73,1,73,1,73,1,73,3,73,1132,8,73,1,73,3,73,1135, - 8,73,1,73,1,73,3,73,1139,8,73,1,74,1,74,1,74,1,75,1,75,1,75,1,75, - 5,75,1148,8,75,10,75,12,75,1151,9,75,1,76,1,76,1,76,1,76,5,76,1157, - 8,76,10,76,12,76,1160,9,76,1,76,1,76,1,77,1,77,3,77,1166,8,77,1, - 78,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1175,8,78,11,78,12,78,1176, - 1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,4,79,1187,8,79,11,79,12, - 79,1188,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1, - 80,1,80,3,80,1204,8,80,1,80,3,80,1207,8,80,1,80,1,80,3,80,1211,8, - 80,1,80,3,80,1214,8,80,3,80,1216,8,80,1,80,1,80,1,80,3,80,1221,8, - 80,1,80,1,80,3,80,1225,8,80,1,80,3,80,1228,8,80,5,80,1230,8,80,10, - 80,12,80,1233,9,80,1,81,1,81,1,81,1,81,5,81,1239,8,81,10,81,12,81, - 1242,9,81,1,82,1,82,1,82,1,82,5,82,1248,8,82,10,82,12,82,1251,9, - 82,1,83,1,83,1,83,1,83,1,83,5,83,1258,8,83,10,83,12,83,1261,9,83, - 1,83,1,83,3,83,1265,8,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,85, - 1,85,3,85,1276,8,85,1,85,3,85,1279,8,85,1,85,3,85,1282,8,85,1,85, - 3,85,1285,8,85,1,85,3,85,1288,8,85,1,85,1,85,1,85,1,85,3,85,1294, - 8,85,1,86,1,86,3,86,1298,8,86,1,86,1,86,1,87,1,87,1,87,5,87,1305, - 8,87,10,87,12,87,1308,9,87,1,88,1,88,1,88,1,88,3,88,1314,8,88,1, - 88,3,88,1317,8,88,1,88,1,88,3,88,1321,8,88,1,88,1,88,1,88,3,88,1326, - 8,88,1,88,3,88,1329,8,88,3,88,1331,8,88,1,89,1,89,1,90,1,90,1,91, - 1,91,1,92,3,92,1340,8,92,1,92,1,92,1,93,1,93,1,93,3,93,1347,8,93, - 1,93,3,93,1350,8,93,1,93,1,93,3,93,1354,8,93,1,93,3,93,1357,8,93, - 3,93,1359,8,93,1,94,1,94,1,94,5,94,1364,8,94,10,94,12,94,1367,9, - 94,1,94,1,94,3,94,1371,8,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1, - 95,1,95,1,95,1,95,1,95,1,95,1,95,3,95,1387,8,95,1,96,1,96,1,96,1, - 97,1,97,1,97,1,97,5,97,1396,8,97,10,97,12,97,1399,9,97,1,97,1,97, - 3,97,1403,8,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,1411,8,97,1,97, - 3,97,1414,8,97,1,97,3,97,1417,8,97,1,97,1,97,1,97,3,97,1422,8,97, - 5,97,1424,8,97,10,97,12,97,1427,9,97,1,98,1,98,3,98,1431,8,98,1, - 99,3,99,1434,8,99,1,99,1,99,3,99,1438,8,99,1,99,1,99,3,99,1442,8, - 99,1,99,1,99,3,99,1446,8,99,1,100,1,100,1,100,1,100,1,100,1,100, - 1,101,3,101,1455,8,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,101,1,101,3,101,1466,8,101,1,102,1,102,1,102,1,102,1,102,1,102, - 1,103,1,103,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105, - 1,105,1,106,1,106,1,106,1,106,1,106,5,106,1491,8,106,10,106,12,106, - 1494,9,106,1,106,1,106,1,107,1,107,1,108,1,108,1,108,1,108,1,108, - 1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,3,108, - 1515,8,108,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,111,1,111, - 1,111,1,111,3,111,1528,8,111,1,112,1,112,1,112,1,113,1,113,1,113, - 1,113,1,113,5,113,1538,8,113,10,113,12,113,1541,9,113,1,114,1,114, - 1,114,1,114,1,114,1,114,1,114,1,114,5,114,1551,8,114,10,114,12,114, - 1554,9,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,5,114,1563, - 8,114,10,114,12,114,1566,9,114,1,114,1,114,1,114,1,114,1,114,1,114, - 1,114,5,114,1575,8,114,10,114,12,114,1578,9,114,1,114,1,114,1,114, - 3,114,1583,8,114,1,115,1,115,1,115,1,116,1,116,1,117,1,117,1,117, - 1,117,1,117,1,117,1,117,1,118,1,118,1,119,1,119,1,120,1,120,1,120, - 1,121,1,121,1,121,1,121,5,121,1608,8,121,10,121,12,121,1611,9,121, - 1,122,1,122,1,122,1,122,1,123,3,123,1618,8,123,1,123,1,123,3,123, - 1622,8,123,1,123,3,123,1625,8,123,1,123,3,123,1628,8,123,1,123,1, - 123,1,124,1,124,1,124,3,124,1635,8,124,1,124,3,124,1638,8,124,1, - 124,3,124,1641,8,124,1,124,3,124,1644,8,124,1,124,3,124,1647,8,124, - 1,124,3,124,1650,8,124,1,124,1,124,1,124,3,124,1655,8,124,1,124, - 3,124,1658,8,124,1,125,1,125,1,125,1,125,1,125,5,125,1665,8,125, - 10,125,12,125,1668,9,125,1,126,1,126,3,126,1672,8,126,1,126,1,126, - 3,126,1676,8,126,1,127,1,127,1,127,3,127,1681,8,127,1,128,1,128, - 1,128,1,128,3,128,1687,8,128,1,128,1,128,1,128,3,128,1692,8,128, - 5,128,1694,8,128,10,128,12,128,1697,9,128,1,129,1,129,1,129,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, - 1,129,3,129,1715,8,129,1,130,1,130,1,130,1,130,5,130,1721,8,130, - 10,130,12,130,1724,9,130,1,131,1,131,1,131,4,131,1729,8,131,11,131, - 12,131,1730,1,131,1,131,3,131,1735,8,131,1,132,1,132,3,132,1739, - 8,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,1749, - 8,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,3,134,1775,8,134,1,135,1,135,1,135,1,135,5,135, - 1781,8,135,10,135,12,135,1784,9,135,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,3,136,1795,8,136,1,137,1,137,1,137,1,137, - 1,137,1,138,1,138,1,138,1,139,1,139,1,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,3,140,1817,8,140,3,140,1819,8,140, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,3,140,1830, - 8,140,1,140,5,140,1833,8,140,10,140,12,140,1836,9,140,1,141,3,141, - 1839,8,141,1,141,1,141,3,141,1843,8,141,1,141,1,141,1,141,1,141, - 1,141,3,141,1850,8,141,1,141,1,141,1,141,1,141,1,141,5,141,1857, - 8,141,10,141,12,141,1860,9,141,1,141,1,141,1,141,3,141,1865,8,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 3,141,1878,8,141,1,141,1,141,1,141,1,141,1,141,3,141,1885,8,141, - 1,141,1,141,1,141,3,141,1890,8,141,1,141,1,141,1,141,1,141,3,141, - 1896,8,141,1,141,1,141,1,141,1,141,1,141,3,141,1903,8,141,1,141, - 1,141,1,141,1,141,1,141,3,141,1910,8,141,3,141,1912,8,141,1,142, - 3,142,1915,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 5,142,1925,8,142,10,142,12,142,1928,9,142,1,142,1,142,3,142,1932, - 8,142,1,142,3,142,1935,8,142,1,142,1,142,1,142,1,142,3,142,1941, - 8,142,3,142,1943,8,142,1,143,1,143,1,143,1,143,3,143,1949,8,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,5,143,1970,8,143, - 10,143,12,143,1973,9,143,1,144,1,144,1,144,1,144,1,144,3,144,1980, - 8,144,1,144,1,144,1,144,5,144,1985,8,144,10,144,12,144,1988,9,144, - 3,144,1990,8,144,1,144,1,144,3,144,1994,8,144,1,145,1,145,1,145, - 4,145,1999,8,145,11,145,12,145,2000,1,145,1,145,3,145,2005,8,145, - 1,145,1,145,1,145,1,145,1,145,4,145,2012,8,145,11,145,12,145,2013, - 1,145,1,145,3,145,2018,8,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,2034,8,145, - 1,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,2043,8,145,1,145, + 2,203,7,203,2,204,7,204,2,205,7,205,1,0,5,0,414,8,0,10,0,12,0,417, + 9,0,1,0,1,0,1,1,1,1,3,1,423,8,1,1,1,3,1,426,8,1,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,440,8,2,1,3,1,3,1,4,1,4,1,4, + 1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,458,8,4,1,5,1,5, + 3,5,462,8,5,1,6,1,6,1,6,1,7,1,7,1,7,1,7,3,7,471,8,7,1,7,1,7,1,7, + 3,7,476,8,7,1,8,1,8,1,8,5,8,481,8,8,10,8,12,8,484,9,8,1,9,1,9,1, + 10,1,10,1,10,1,10,1,10,1,10,3,10,494,8,10,1,11,1,11,1,11,1,11,1, + 11,5,11,501,8,11,10,11,12,11,504,9,11,1,12,1,12,1,12,1,12,1,12,1, + 12,1,12,1,12,1,12,3,12,515,8,12,1,12,3,12,518,8,12,1,12,1,12,1,12, + 1,12,1,12,3,12,525,8,12,1,12,3,12,528,8,12,1,12,1,12,1,12,1,12,1, + 12,1,12,3,12,536,8,12,1,12,1,12,3,12,540,8,12,1,12,1,12,1,12,3,12, + 545,8,12,1,12,3,12,548,8,12,1,13,1,13,1,13,1,13,1,13,3,13,555,8, + 13,1,14,1,14,1,14,1,14,1,15,1,15,3,15,563,8,15,1,16,1,16,3,16,567, + 8,16,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,579, + 8,18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,587,8,18,1,18,1,18,3,18, + 591,8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, + 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, + 1,18,1,18,1,18,1,18,1,18,1,18,3,18,623,8,18,1,19,3,19,626,8,19,1, + 19,4,19,629,8,19,11,19,12,19,630,1,20,1,20,3,20,635,8,20,1,21,1, + 21,3,21,639,8,21,1,21,1,21,3,21,643,8,21,1,21,1,21,1,21,1,21,1,21, + 5,21,650,8,21,10,21,12,21,653,9,21,1,21,1,21,3,21,657,8,21,1,21, + 1,21,3,21,661,8,21,1,21,1,21,3,21,665,8,21,1,21,1,21,1,21,3,21,670, + 8,21,1,21,3,21,673,8,21,1,21,1,21,3,21,677,8,21,1,22,1,22,1,22,3, + 22,682,8,22,1,22,1,22,1,22,1,22,3,22,688,8,22,1,23,1,23,1,23,3,23, + 693,8,23,1,24,1,24,1,24,3,24,698,8,24,1,24,1,24,3,24,702,8,24,1, + 25,1,25,3,25,706,8,25,1,26,1,26,1,27,1,27,1,27,3,27,713,8,27,1,28, + 1,28,1,29,1,29,1,29,3,29,720,8,29,1,30,1,30,1,30,1,30,5,30,726,8, + 30,10,30,12,30,729,9,30,1,30,1,30,1,31,1,31,1,31,3,31,736,8,31,1, + 31,1,31,3,31,740,8,31,1,31,1,31,3,31,744,8,31,1,31,1,31,3,31,748, + 8,31,1,31,1,31,3,31,752,8,31,1,31,1,31,3,31,756,8,31,1,31,1,31,3, + 31,760,8,31,1,31,1,31,3,31,764,8,31,1,31,1,31,3,31,768,8,31,3,31, + 770,8,31,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33,3,33,780,8,33,1, + 33,1,33,1,34,1,34,1,34,1,34,3,34,788,8,34,1,34,1,34,1,35,1,35,1, + 35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1, + 37,1,37,1,37,5,37,810,8,37,10,37,12,37,813,9,37,1,37,1,37,1,37,1, + 37,1,37,1,37,1,37,1,37,1,37,5,37,824,8,37,10,37,12,37,827,9,37,1, + 37,1,37,3,37,831,8,37,1,38,1,38,3,38,835,8,38,1,38,1,38,1,38,1,38, + 3,38,841,8,38,1,38,3,38,844,8,38,1,38,3,38,847,8,38,1,39,1,39,1, + 39,1,39,1,39,3,39,854,8,39,1,39,3,39,857,8,39,1,40,1,40,1,41,1,41, + 1,41,1,41,1,41,3,41,866,8,41,1,42,1,42,1,43,1,43,1,43,1,43,1,43, + 1,43,1,44,1,44,3,44,878,8,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45, + 1,45,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,48,1,48,1,48,1,48, + 5,48,900,8,48,10,48,12,48,903,9,48,1,48,1,48,1,49,1,49,1,49,1,49, + 1,49,5,49,912,8,49,10,49,12,49,915,9,49,1,49,1,49,3,49,919,8,49, + 1,50,1,50,3,50,923,8,50,1,51,1,51,1,51,1,51,5,51,929,8,51,10,51, + 12,51,932,9,51,1,51,3,51,935,8,51,1,52,1,52,1,52,1,52,3,52,941,8, + 52,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,3,54,951,8,54,1,54,1, + 54,1,54,3,54,956,8,54,1,54,1,54,1,55,1,55,3,55,962,8,55,1,55,1,55, + 3,55,966,8,55,1,55,1,55,3,55,970,8,55,1,55,1,55,3,55,974,8,55,1, + 55,1,55,1,55,1,56,1,56,1,56,1,56,3,56,983,8,56,1,56,1,56,3,56,987, + 8,56,1,56,1,56,1,56,1,56,1,56,3,56,994,8,56,1,56,3,56,997,8,56,1, + 57,1,57,1,57,1,57,1,57,1,57,5,57,1005,8,57,10,57,12,57,1008,9,57, + 1,58,1,58,1,59,1,59,1,59,3,59,1015,8,59,1,59,1,59,1,59,1,59,1,59, + 1,59,3,59,1023,8,59,1,60,1,60,3,60,1027,8,60,1,60,1,60,1,60,1,61, + 1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62,3,62,1042,8,62,1,63, + 1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,66,1,66,1,66, + 1,66,1,66,1,66,3,66,1061,8,66,1,67,1,67,1,67,1,67,1,67,1,68,1,68, + 1,68,1,68,3,68,1072,8,68,1,68,1,68,3,68,1076,8,68,1,68,1,68,1,68, + 1,68,1,68,3,68,1083,8,68,1,69,1,69,1,69,3,69,1088,8,69,1,69,1,69, + 1,70,1,70,3,70,1094,8,70,1,70,1,70,3,70,1098,8,70,1,70,1,70,1,71, + 1,71,1,71,3,71,1105,8,71,1,71,1,71,3,71,1109,8,71,1,72,1,72,3,72, + 1113,8,72,1,72,1,72,3,72,1117,8,72,1,72,1,72,1,73,1,73,1,73,1,73, + 3,73,1125,8,73,1,73,1,73,3,73,1129,8,73,1,73,1,73,1,74,3,74,1134, + 8,74,1,74,1,74,1,74,1,74,3,74,1140,8,74,1,75,1,75,1,75,1,75,3,75, + 1146,8,75,1,75,3,75,1149,8,75,1,75,1,75,3,75,1153,8,75,1,76,1,76, + 1,76,1,77,1,77,1,77,1,77,5,77,1162,8,77,10,77,12,77,1165,9,77,1, + 78,1,78,1,78,1,78,5,78,1171,8,78,10,78,12,78,1174,9,78,1,78,1,78, + 1,79,1,79,3,79,1180,8,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,4,80, + 1189,8,80,11,80,12,80,1190,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1, + 81,4,81,1201,8,81,11,81,12,81,1202,1,81,1,81,1,82,1,82,1,82,1,82, + 1,82,1,82,1,82,1,82,1,82,1,82,1,82,3,82,1218,8,82,1,82,3,82,1221, + 8,82,1,82,1,82,3,82,1225,8,82,1,82,3,82,1228,8,82,3,82,1230,8,82, + 1,82,1,82,1,82,3,82,1235,8,82,1,82,1,82,3,82,1239,8,82,1,82,3,82, + 1242,8,82,5,82,1244,8,82,10,82,12,82,1247,9,82,1,83,1,83,1,83,1, + 83,5,83,1253,8,83,10,83,12,83,1256,9,83,1,84,1,84,1,84,1,84,5,84, + 1262,8,84,10,84,12,84,1265,9,84,1,85,1,85,1,85,1,85,1,85,5,85,1272, + 8,85,10,85,12,85,1275,9,85,1,85,1,85,3,85,1279,8,85,1,85,1,85,1, + 85,1,85,1,85,1,86,1,86,1,87,1,87,3,87,1290,8,87,1,87,3,87,1293,8, + 87,1,87,3,87,1296,8,87,1,87,3,87,1299,8,87,1,87,3,87,1302,8,87,1, + 87,1,87,1,87,1,87,3,87,1308,8,87,1,88,1,88,3,88,1312,8,88,1,88,1, + 88,1,89,1,89,1,89,5,89,1319,8,89,10,89,12,89,1322,9,89,1,90,1,90, + 1,90,1,90,3,90,1328,8,90,1,90,3,90,1331,8,90,1,90,1,90,3,90,1335, + 8,90,1,90,1,90,1,90,3,90,1340,8,90,1,90,3,90,1343,8,90,3,90,1345, + 8,90,1,91,1,91,1,92,1,92,1,93,1,93,1,94,3,94,1354,8,94,1,94,1,94, + 1,95,1,95,1,95,3,95,1361,8,95,1,95,3,95,1364,8,95,1,95,1,95,3,95, + 1368,8,95,1,95,3,95,1371,8,95,3,95,1373,8,95,1,96,1,96,1,96,5,96, + 1378,8,96,10,96,12,96,1381,9,96,1,96,1,96,3,96,1385,8,96,1,96,1, + 96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3, + 97,1401,8,97,1,98,1,98,1,98,1,99,1,99,1,99,1,99,5,99,1410,8,99,10, + 99,12,99,1413,9,99,1,99,1,99,3,99,1417,8,99,1,99,1,99,1,99,1,99, + 1,99,1,99,3,99,1425,8,99,1,99,3,99,1428,8,99,1,99,3,99,1431,8,99, + 1,99,1,99,1,99,3,99,1436,8,99,5,99,1438,8,99,10,99,12,99,1441,9, + 99,1,100,1,100,3,100,1445,8,100,1,101,3,101,1448,8,101,1,101,1,101, + 3,101,1452,8,101,1,101,1,101,3,101,1456,8,101,1,101,1,101,3,101, + 1460,8,101,1,102,1,102,1,102,1,102,1,102,1,102,1,103,3,103,1469, + 8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103, + 1480,8,103,1,104,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,106, + 1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,108,1,108, + 1,108,1,108,1,108,5,108,1505,8,108,10,108,12,108,1508,9,108,1,108, + 1,108,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110, + 1,110,1,110,1,110,1,110,1,110,1,110,1,110,3,110,1529,8,110,1,111, + 1,111,1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,113, + 3,113,1543,8,113,3,113,1545,8,113,1,113,1,113,3,113,1549,8,113,1, + 114,1,114,1,114,3,114,1554,8,114,1,115,1,115,1,115,1,115,1,115,5, + 115,1561,8,115,10,115,12,115,1564,9,115,1,116,1,116,1,116,1,116, + 1,116,1,116,1,116,1,116,5,116,1574,8,116,10,116,12,116,1577,9,116, + 1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116,1586,8,116,10,116, + 12,116,1589,9,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116, + 1598,8,116,10,116,12,116,1601,9,116,1,116,1,116,1,116,3,116,1606, + 8,116,1,117,1,117,1,117,1,118,1,118,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,120,1,120,1,121,1,121,1,122,1,122,1,122,1,123,1,123, + 1,123,1,123,5,123,1631,8,123,10,123,12,123,1634,9,123,1,124,1,124, + 1,124,1,124,1,125,3,125,1641,8,125,1,125,1,125,3,125,1645,8,125, + 1,125,3,125,1648,8,125,1,125,3,125,1651,8,125,1,125,1,125,1,126, + 1,126,1,126,3,126,1658,8,126,1,126,3,126,1661,8,126,1,126,3,126, + 1664,8,126,1,126,3,126,1667,8,126,1,126,3,126,1670,8,126,1,126,3, + 126,1673,8,126,1,126,1,126,1,126,3,126,1678,8,126,1,126,3,126,1681, + 8,126,1,127,1,127,1,127,1,127,1,127,5,127,1688,8,127,10,127,12,127, + 1691,9,127,1,128,1,128,3,128,1695,8,128,1,128,1,128,3,128,1699,8, + 128,1,129,1,129,1,129,3,129,1704,8,129,1,130,1,130,1,130,1,130,3, + 130,1710,8,130,1,130,1,130,1,130,3,130,1715,8,130,5,130,1717,8,130, + 10,130,12,130,1720,9,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,1738, + 8,131,1,132,1,132,1,132,1,132,5,132,1744,8,132,10,132,12,132,1747, + 9,132,1,133,1,133,1,133,4,133,1752,8,133,11,133,12,133,1753,1,133, + 1,133,3,133,1758,8,133,1,134,1,134,3,134,1762,8,134,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,3,135,1772,8,135,1,136,1,136, + 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 3,136,1798,8,136,1,137,1,137,1,137,1,137,5,137,1804,8,137,10,137, + 12,137,1807,9,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,138,3,138,1818,8,138,1,139,1,139,1,139,1,139,1,139,1,140,1,140, + 1,140,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,3,142,1840,8,142,3,142,1842,8,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,3,142,1853,8,142,1,142,5,142, + 1856,8,142,10,142,12,142,1859,9,142,1,143,3,143,1862,8,143,1,143, + 1,143,3,143,1866,8,143,1,143,1,143,1,143,1,143,1,143,3,143,1873, + 8,143,1,143,1,143,1,143,1,143,1,143,5,143,1880,8,143,10,143,12,143, + 1883,9,143,1,143,1,143,1,143,3,143,1888,8,143,1,143,1,143,1,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,1901,8,143, + 1,143,1,143,1,143,1,143,1,143,3,143,1908,8,143,1,143,1,143,1,143, + 3,143,1913,8,143,1,143,1,143,1,143,1,143,3,143,1919,8,143,1,143, + 1,143,1,143,1,143,1,143,3,143,1926,8,143,1,143,1,143,1,143,1,143, + 1,143,3,143,1933,8,143,3,143,1935,8,143,1,144,3,144,1938,8,144,1, + 144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,5,144,1948,8,144,10, + 144,12,144,1951,9,144,1,144,1,144,3,144,1955,8,144,1,144,3,144,1958, + 8,144,1,144,1,144,1,144,1,144,3,144,1964,8,144,3,144,1966,8,144, + 1,145,1,145,1,145,1,145,3,145,1972,8,145,1,145,1,145,1,145,1,145, 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,3,145,2071,8,145,1,145,1,145,1,145,1,145,1,145, - 5,145,2078,8,145,10,145,12,145,2081,9,145,1,146,1,146,1,147,1,147, - 1,147,1,147,3,147,2089,8,147,1,148,1,148,1,148,1,148,3,148,2095, - 8,148,1,149,1,149,3,149,2099,8,149,1,150,1,150,1,150,1,150,3,150, - 2105,8,150,1,151,1,151,1,152,1,152,1,153,1,153,3,153,2113,8,153, - 1,154,1,154,1,154,3,154,2118,8,154,1,155,1,155,3,155,2122,8,155, - 1,156,1,156,1,156,4,156,2127,8,156,11,156,12,156,2128,1,157,1,157, - 1,157,3,157,2134,8,157,1,158,1,158,1,158,1,158,1,158,1,159,3,159, - 2142,8,159,1,159,1,159,3,159,2146,8,159,1,160,3,160,2149,8,160,1, - 160,1,160,3,160,2153,8,160,1,161,1,161,1,161,1,162,1,162,4,162,2160, - 8,162,11,162,12,162,2161,1,162,3,162,2165,8,162,1,163,1,163,1,163, - 1,163,1,164,1,164,1,164,5,164,2174,8,164,10,164,12,164,2177,9,164, - 1,165,1,165,1,165,3,165,2182,8,165,1,166,1,166,1,167,1,167,1,168, - 1,168,1,168,1,168,1,168,1,169,1,169,1,170,1,170,1,171,1,171,1,171, - 3,171,2200,8,171,1,172,1,172,1,172,3,172,2205,8,172,1,173,1,173, - 1,173,3,173,2210,8,173,1,173,1,173,1,173,1,173,1,173,3,173,2217, - 8,173,3,173,2219,8,173,1,174,1,174,1,174,3,174,2224,8,174,1,174, - 1,174,1,174,1,174,1,174,3,174,2231,8,174,3,174,2233,8,174,1,175, - 1,175,1,175,3,175,2238,8,175,1,175,1,175,1,175,1,175,1,175,3,175, - 2245,8,175,3,175,2247,8,175,1,176,1,176,1,176,3,176,2252,8,176,1, - 176,1,176,1,176,1,176,1,176,3,176,2259,8,176,3,176,2261,8,176,1, - 177,1,177,1,177,5,177,2266,8,177,10,177,12,177,2269,9,177,1,178, - 1,178,1,178,1,179,1,179,1,179,1,179,1,180,1,180,1,180,1,181,1,181, - 1,181,1,181,5,181,2285,8,181,10,181,12,181,2288,9,181,1,181,1,181, - 1,182,1,182,3,182,2294,8,182,1,182,3,182,2297,8,182,1,183,1,183, - 1,183,3,183,2302,8,183,1,184,1,184,1,184,1,184,3,184,2308,8,184, - 1,185,1,185,1,185,1,185,1,185,1,185,3,185,2316,8,185,1,186,1,186, - 1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186, - 1,186,3,186,2332,8,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187, - 3,187,2341,8,187,1,188,1,188,1,189,1,189,1,190,1,190,1,190,1,190, - 3,190,2351,8,190,1,190,1,190,1,190,1,190,1,190,3,190,2358,8,190, - 1,190,3,190,2361,8,190,1,191,1,191,1,191,1,192,1,192,1,193,1,193, - 1,194,1,194,1,195,1,195,1,196,1,196,1,197,1,197,1,198,1,198,1,199, - 1,199,1,200,1,200,1,201,1,201,1,202,1,202,1,202,0,5,160,194,280, - 286,290,203,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, - 120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150, - 152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182, - 184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214, - 216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246, - 248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278, - 280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310, - 312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342, - 344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374, - 376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,0,47, - 2,0,109,109,451,451,3,0,45,45,128,128,189,189,4,0,42,42,90,90,423, - 423,465,465,2,0,442,442,448,448,2,0,151,151,170,170,2,0,438,438, - 490,490,2,0,483,486,488,488,3,0,32,32,91,91,245,245,11,0,28,29,35, - 35,46,46,92,92,178,179,345,345,361,361,379,379,382,382,388,388,417, - 418,2,0,434,434,436,436,4,0,101,102,115,115,144,144,247,247,2,0, - 13,13,232,232,2,0,456,456,463,463,3,0,5,5,271,271,445,445,3,0,267, - 267,456,456,463,463,3,0,426,426,459,459,478,478,3,0,331,331,466, - 466,482,482,2,0,441,441,491,491,2,0,183,183,266,266,3,0,130,130, - 180,180,403,403,4,0,152,152,174,174,202,202,318,318,3,0,446,446, - 460,460,500,500,4,0,251,251,447,447,495,497,499,499,2,0,74,74,321, - 321,3,0,460,460,493,493,500,500,2,0,440,440,451,451,2,0,458,458, - 468,468,4,0,140,140,245,245,398,398,405,405,2,0,19,19,370,370,2, - 0,5,5,11,11,2,0,510,510,530,531,4,0,453,453,528,528,532,532,535, - 535,2,0,530,531,533,533,1,0,530,531,1,0,539,540,2,0,539,539,542, - 542,4,0,453,453,528,528,530,532,534,535,3,0,242,242,509,510,530, - 531,2,0,140,140,398,398,2,0,5,5,113,113,10,0,97,97,165,165,223,223, - 230,230,335,335,437,437,471,471,473,473,489,489,503,503,15,0,97, - 97,165,165,223,223,230,230,335,335,428,428,437,437,443,443,449,450, - 455,455,461,461,471,476,489,489,492,492,503,504,11,0,5,5,13,13,33, - 33,78,78,84,85,113,113,201,201,208,209,390,390,414,414,528,528,3, - 0,78,78,84,85,208,209,2,0,91,91,379,380,53,0,4,4,13,13,23,23,38, - 38,41,41,43,44,54,54,56,56,69,69,75,75,98,99,107,107,119,119,134, - 134,139,139,143,143,145,145,160,160,165,165,167,167,187,188,190, - 195,198,198,200,200,202,202,206,206,210,210,215,215,221,221,223, - 224,230,230,244,244,246,246,265,265,277,277,282,282,284,284,294, - 294,318,318,322,324,335,335,358,359,365,365,368,368,381,381,396, - 396,399,400,409,409,420,421,437,437,470,470,489,489,503,503,1,0, - 438,505,2597,0,409,1,0,0,0,2,419,1,0,0,0,4,433,1,0,0,0,6,435,1,0, - 0,0,8,451,1,0,0,0,10,455,1,0,0,0,12,457,1,0,0,0,14,460,1,0,0,0,16, - 471,1,0,0,0,18,479,1,0,0,0,20,487,1,0,0,0,22,489,1,0,0,0,24,541, - 1,0,0,0,26,543,1,0,0,0,28,550,1,0,0,0,30,554,1,0,0,0,32,558,1,0, - 0,0,34,562,1,0,0,0,36,616,1,0,0,0,38,622,1,0,0,0,40,628,1,0,0,0, - 42,630,1,0,0,0,44,672,1,0,0,0,46,686,1,0,0,0,48,688,1,0,0,0,50,699, - 1,0,0,0,52,703,1,0,0,0,54,705,1,0,0,0,56,707,1,0,0,0,58,755,1,0, - 0,0,60,757,1,0,0,0,62,761,1,0,0,0,64,769,1,0,0,0,66,777,1,0,0,0, - 68,781,1,0,0,0,70,816,1,0,0,0,72,832,1,0,0,0,74,834,1,0,0,0,76,844, - 1,0,0,0,78,846,1,0,0,0,80,853,1,0,0,0,82,855,1,0,0,0,84,863,1,0, - 0,0,86,871,1,0,0,0,88,873,1,0,0,0,90,877,1,0,0,0,92,881,1,0,0,0, - 94,904,1,0,0,0,96,908,1,0,0,0,98,910,1,0,0,0,100,926,1,0,0,0,102, - 928,1,0,0,0,104,933,1,0,0,0,106,945,1,0,0,0,108,964,1,0,0,0,110, - 984,1,0,0,0,112,995,1,0,0,0,114,997,1,0,0,0,116,1010,1,0,0,0,118, - 1017,1,0,0,0,120,1020,1,0,0,0,122,1029,1,0,0,0,124,1033,1,0,0,0, - 126,1037,1,0,0,0,128,1040,1,0,0,0,130,1048,1,0,0,0,132,1053,1,0, - 0,0,134,1070,1,0,0,0,136,1077,1,0,0,0,138,1087,1,0,0,0,140,1096, - 1,0,0,0,142,1106,1,0,0,0,144,1125,1,0,0,0,146,1127,1,0,0,0,148,1140, - 1,0,0,0,150,1143,1,0,0,0,152,1152,1,0,0,0,154,1165,1,0,0,0,156,1167, - 1,0,0,0,158,1180,1,0,0,0,160,1215,1,0,0,0,162,1234,1,0,0,0,164,1243, - 1,0,0,0,166,1252,1,0,0,0,168,1271,1,0,0,0,170,1293,1,0,0,0,172,1295, - 1,0,0,0,174,1301,1,0,0,0,176,1330,1,0,0,0,178,1332,1,0,0,0,180,1334, - 1,0,0,0,182,1336,1,0,0,0,184,1339,1,0,0,0,186,1358,1,0,0,0,188,1370, - 1,0,0,0,190,1386,1,0,0,0,192,1388,1,0,0,0,194,1402,1,0,0,0,196,1428, - 1,0,0,0,198,1445,1,0,0,0,200,1447,1,0,0,0,202,1465,1,0,0,0,204,1467, - 1,0,0,0,206,1473,1,0,0,0,208,1475,1,0,0,0,210,1480,1,0,0,0,212,1485, - 1,0,0,0,214,1497,1,0,0,0,216,1514,1,0,0,0,218,1516,1,0,0,0,220,1518, - 1,0,0,0,222,1527,1,0,0,0,224,1529,1,0,0,0,226,1532,1,0,0,0,228,1582, - 1,0,0,0,230,1584,1,0,0,0,232,1587,1,0,0,0,234,1589,1,0,0,0,236,1596, - 1,0,0,0,238,1598,1,0,0,0,240,1600,1,0,0,0,242,1603,1,0,0,0,244,1612, - 1,0,0,0,246,1617,1,0,0,0,248,1631,1,0,0,0,250,1659,1,0,0,0,252,1669, - 1,0,0,0,254,1677,1,0,0,0,256,1682,1,0,0,0,258,1714,1,0,0,0,260,1716, - 1,0,0,0,262,1725,1,0,0,0,264,1736,1,0,0,0,266,1748,1,0,0,0,268,1774, - 1,0,0,0,270,1776,1,0,0,0,272,1794,1,0,0,0,274,1796,1,0,0,0,276,1801, - 1,0,0,0,278,1804,1,0,0,0,280,1818,1,0,0,0,282,1911,1,0,0,0,284,1942, - 1,0,0,0,286,1948,1,0,0,0,288,1993,1,0,0,0,290,2070,1,0,0,0,292,2082, - 1,0,0,0,294,2088,1,0,0,0,296,2094,1,0,0,0,298,2098,1,0,0,0,300,2104, - 1,0,0,0,302,2106,1,0,0,0,304,2108,1,0,0,0,306,2112,1,0,0,0,308,2114, - 1,0,0,0,310,2119,1,0,0,0,312,2126,1,0,0,0,314,2130,1,0,0,0,316,2135, - 1,0,0,0,318,2145,1,0,0,0,320,2148,1,0,0,0,322,2154,1,0,0,0,324,2164, - 1,0,0,0,326,2166,1,0,0,0,328,2170,1,0,0,0,330,2181,1,0,0,0,332,2183, - 1,0,0,0,334,2185,1,0,0,0,336,2187,1,0,0,0,338,2192,1,0,0,0,340,2194, - 1,0,0,0,342,2196,1,0,0,0,344,2201,1,0,0,0,346,2218,1,0,0,0,348,2232, - 1,0,0,0,350,2246,1,0,0,0,352,2260,1,0,0,0,354,2262,1,0,0,0,356,2270, - 1,0,0,0,358,2273,1,0,0,0,360,2277,1,0,0,0,362,2280,1,0,0,0,364,2291, - 1,0,0,0,366,2301,1,0,0,0,368,2307,1,0,0,0,370,2315,1,0,0,0,372,2331, - 1,0,0,0,374,2340,1,0,0,0,376,2342,1,0,0,0,378,2344,1,0,0,0,380,2360, - 1,0,0,0,382,2362,1,0,0,0,384,2365,1,0,0,0,386,2367,1,0,0,0,388,2369, - 1,0,0,0,390,2371,1,0,0,0,392,2373,1,0,0,0,394,2375,1,0,0,0,396,2377, - 1,0,0,0,398,2379,1,0,0,0,400,2381,1,0,0,0,402,2383,1,0,0,0,404,2385, - 1,0,0,0,406,408,3,2,1,0,407,406,1,0,0,0,408,411,1,0,0,0,409,407, - 1,0,0,0,409,410,1,0,0,0,410,412,1,0,0,0,411,409,1,0,0,0,412,413, - 5,0,0,1,413,1,1,0,0,0,414,416,3,4,2,0,415,417,5,522,0,0,416,415, - 1,0,0,0,416,417,1,0,0,0,417,420,1,0,0,0,418,420,3,6,3,0,419,414, - 1,0,0,0,419,418,1,0,0,0,420,3,1,0,0,0,421,434,3,8,4,0,422,434,3, - 10,5,0,423,434,3,12,6,0,424,434,3,14,7,0,425,434,3,20,10,0,426,434, - 3,24,12,0,427,434,3,26,13,0,428,434,3,28,14,0,429,434,3,30,15,0, - 430,434,3,32,16,0,431,434,3,34,17,0,432,434,3,36,18,0,433,421,1, - 0,0,0,433,422,1,0,0,0,433,423,1,0,0,0,433,424,1,0,0,0,433,425,1, - 0,0,0,433,426,1,0,0,0,433,427,1,0,0,0,433,428,1,0,0,0,433,429,1, - 0,0,0,433,430,1,0,0,0,433,431,1,0,0,0,433,432,1,0,0,0,434,5,1,0, - 0,0,435,436,5,522,0,0,436,7,1,0,0,0,437,452,3,40,20,0,438,452,3, - 104,52,0,439,452,3,106,53,0,440,452,3,108,54,0,441,452,3,102,51, - 0,442,452,3,114,57,0,443,452,3,128,64,0,444,452,3,130,65,0,445,452, - 3,132,66,0,446,452,3,134,67,0,447,452,3,136,68,0,448,452,3,138,69, - 0,449,452,3,140,70,0,450,452,3,142,71,0,451,437,1,0,0,0,451,438, - 1,0,0,0,451,439,1,0,0,0,451,440,1,0,0,0,451,441,1,0,0,0,451,442, - 1,0,0,0,451,443,1,0,0,0,451,444,1,0,0,0,451,445,1,0,0,0,451,446, - 1,0,0,0,451,447,1,0,0,0,451,448,1,0,0,0,451,449,1,0,0,0,451,450, - 1,0,0,0,452,9,1,0,0,0,453,456,3,160,80,0,454,456,3,144,72,0,455, - 453,1,0,0,0,455,454,1,0,0,0,456,11,1,0,0,0,457,458,7,0,0,0,458,459, - 3,348,174,0,459,13,1,0,0,0,460,464,5,135,0,0,461,465,3,16,8,0,462, - 463,5,480,0,0,463,465,5,146,0,0,464,461,1,0,0,0,464,462,1,0,0,0, - 464,465,1,0,0,0,465,469,1,0,0,0,466,470,3,10,5,0,467,470,3,146,73, - 0,468,470,3,158,79,0,469,466,1,0,0,0,469,467,1,0,0,0,469,468,1,0, - 0,0,470,15,1,0,0,0,471,476,3,18,9,0,472,473,5,521,0,0,473,475,3, - 18,9,0,474,472,1,0,0,0,475,478,1,0,0,0,476,474,1,0,0,0,476,477,1, - 0,0,0,477,17,1,0,0,0,478,476,1,0,0,0,479,480,7,1,0,0,480,19,1,0, - 0,0,481,482,5,411,0,0,482,483,5,442,0,0,483,488,3,338,169,0,484, - 485,5,411,0,0,485,488,3,342,171,0,486,488,3,22,11,0,487,481,1,0, - 0,0,487,484,1,0,0,0,487,486,1,0,0,0,488,21,1,0,0,0,489,490,5,411, - 0,0,490,491,5,228,0,0,491,496,3,354,177,0,492,493,5,521,0,0,493, - 495,3,354,177,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,23,1,0,0,0,498,496,1,0,0,0,499,500,5,342,0,0, - 500,542,7,2,0,0,501,502,5,342,0,0,502,503,5,76,0,0,503,542,7,3,0, - 0,504,505,5,342,0,0,505,508,5,375,0,0,506,507,7,4,0,0,507,509,3, - 342,171,0,508,506,1,0,0,0,508,509,1,0,0,0,509,511,1,0,0,0,510,512, - 3,284,142,0,511,510,1,0,0,0,511,512,1,0,0,0,512,542,1,0,0,0,513, - 514,5,342,0,0,514,515,5,58,0,0,515,518,7,4,0,0,516,519,3,350,175, - 0,517,519,3,348,174,0,518,516,1,0,0,0,518,517,1,0,0,0,519,521,1, - 0,0,0,520,522,3,284,142,0,521,520,1,0,0,0,521,522,1,0,0,0,522,542, - 1,0,0,0,523,524,5,342,0,0,524,529,5,72,0,0,525,526,5,374,0,0,526, - 530,3,348,174,0,527,528,5,502,0,0,528,530,3,350,175,0,529,525,1, - 0,0,0,529,527,1,0,0,0,530,542,1,0,0,0,531,533,5,342,0,0,532,534, - 5,412,0,0,533,532,1,0,0,0,533,534,1,0,0,0,534,535,1,0,0,0,535,542, - 5,154,0,0,536,538,5,342,0,0,537,539,5,152,0,0,538,537,1,0,0,0,538, - 539,1,0,0,0,539,540,1,0,0,0,540,542,5,228,0,0,541,499,1,0,0,0,541, - 501,1,0,0,0,541,504,1,0,0,0,541,513,1,0,0,0,541,523,1,0,0,0,541, - 531,1,0,0,0,541,536,1,0,0,0,542,25,1,0,0,0,543,544,5,469,0,0,544, - 545,5,227,0,0,545,548,3,354,177,0,546,547,5,434,0,0,547,549,3,362, - 181,0,548,546,1,0,0,0,548,549,1,0,0,0,549,27,1,0,0,0,550,551,5,501, - 0,0,551,552,5,227,0,0,552,553,3,354,177,0,553,29,1,0,0,0,554,556, - 5,341,0,0,555,557,3,364,182,0,556,555,1,0,0,0,556,557,1,0,0,0,557, - 31,1,0,0,0,558,560,5,313,0,0,559,561,3,366,183,0,560,559,1,0,0,0, - 560,561,1,0,0,0,561,33,1,0,0,0,562,563,7,5,0,0,563,564,5,464,0,0, - 564,565,3,112,56,0,565,35,1,0,0,0,566,567,5,438,0,0,567,568,5,464, - 0,0,568,569,5,434,0,0,569,572,3,38,19,0,570,571,5,17,0,0,571,573, - 3,354,177,0,572,570,1,0,0,0,572,573,1,0,0,0,573,617,1,0,0,0,574, - 575,5,438,0,0,575,576,5,457,0,0,576,577,5,434,0,0,577,580,3,38,19, - 0,578,579,5,17,0,0,579,581,3,354,177,0,580,578,1,0,0,0,580,581,1, - 0,0,0,581,584,1,0,0,0,582,583,5,312,0,0,583,585,3,354,177,0,584, - 582,1,0,0,0,584,585,1,0,0,0,585,617,1,0,0,0,586,587,5,438,0,0,587, - 588,7,6,0,0,588,589,5,434,0,0,589,590,3,38,19,0,590,591,5,312,0, - 0,591,592,3,354,177,0,592,617,1,0,0,0,593,594,5,438,0,0,594,595, - 5,487,0,0,595,617,3,38,19,0,596,597,5,438,0,0,597,598,5,454,0,0, - 598,599,5,457,0,0,599,600,5,434,0,0,600,601,3,38,19,0,601,602,5, - 312,0,0,602,603,3,354,177,0,603,604,5,467,0,0,604,605,3,354,177, - 0,605,617,1,0,0,0,606,607,5,438,0,0,607,608,5,444,0,0,608,609,5, - 457,0,0,609,610,5,434,0,0,610,611,3,38,19,0,611,612,5,146,0,0,612, - 613,3,354,177,0,613,614,5,17,0,0,614,615,3,354,177,0,615,617,1,0, - 0,0,616,566,1,0,0,0,616,574,1,0,0,0,616,586,1,0,0,0,616,593,1,0, - 0,0,616,596,1,0,0,0,616,606,1,0,0,0,617,37,1,0,0,0,618,620,5,535, - 0,0,619,618,1,0,0,0,619,620,1,0,0,0,620,621,1,0,0,0,621,623,3,354, - 177,0,622,619,1,0,0,0,623,624,1,0,0,0,624,622,1,0,0,0,624,625,1, - 0,0,0,625,39,1,0,0,0,626,629,3,42,21,0,627,629,3,44,22,0,628,626, - 1,0,0,0,628,627,1,0,0,0,629,41,1,0,0,0,630,632,5,72,0,0,631,633, - 5,498,0,0,632,631,1,0,0,0,632,633,1,0,0,0,633,634,1,0,0,0,634,636, - 5,374,0,0,635,637,3,358,179,0,636,635,1,0,0,0,636,637,1,0,0,0,637, - 638,1,0,0,0,638,639,3,346,173,0,639,640,5,517,0,0,640,645,3,46,23, - 0,641,642,5,521,0,0,642,644,3,46,23,0,643,641,1,0,0,0,644,647,1, - 0,0,0,645,643,1,0,0,0,645,646,1,0,0,0,646,650,1,0,0,0,647,645,1, - 0,0,0,648,649,5,521,0,0,649,651,3,82,41,0,650,648,1,0,0,0,650,651, - 1,0,0,0,651,654,1,0,0,0,652,653,5,521,0,0,653,655,3,84,42,0,654, - 652,1,0,0,0,654,655,1,0,0,0,655,658,1,0,0,0,656,657,5,521,0,0,657, - 659,3,88,44,0,658,656,1,0,0,0,658,659,1,0,0,0,659,660,1,0,0,0,660, - 663,5,518,0,0,661,662,5,59,0,0,662,664,5,538,0,0,663,661,1,0,0,0, - 663,664,1,0,0,0,664,666,1,0,0,0,665,667,3,90,45,0,666,665,1,0,0, - 0,666,667,1,0,0,0,667,668,1,0,0,0,668,670,3,356,178,0,669,671,3, - 98,49,0,670,669,1,0,0,0,670,671,1,0,0,0,671,43,1,0,0,0,672,673,5, - 72,0,0,673,675,5,374,0,0,674,676,3,358,179,0,675,674,1,0,0,0,675, - 676,1,0,0,0,676,677,1,0,0,0,677,678,3,346,173,0,678,681,3,356,178, - 0,679,680,5,17,0,0,680,682,3,160,80,0,681,679,1,0,0,0,681,682,1, - 0,0,0,682,45,1,0,0,0,683,687,3,48,24,0,684,687,3,74,37,0,685,687, - 3,78,39,0,686,683,1,0,0,0,686,684,1,0,0,0,686,685,1,0,0,0,687,47, - 1,0,0,0,688,689,3,50,25,0,689,691,3,58,29,0,690,692,3,72,36,0,691, - 690,1,0,0,0,691,692,1,0,0,0,692,695,1,0,0,0,693,694,5,59,0,0,694, - 696,5,538,0,0,695,693,1,0,0,0,695,696,1,0,0,0,696,49,1,0,0,0,697, - 700,3,354,177,0,698,700,3,278,139,0,699,697,1,0,0,0,699,698,1,0, - 0,0,700,51,1,0,0,0,701,704,3,354,177,0,702,704,4,26,0,0,703,701, - 1,0,0,0,703,702,1,0,0,0,704,53,1,0,0,0,705,706,3,354,177,0,706,55, - 1,0,0,0,707,708,5,517,0,0,708,713,3,52,26,0,709,710,5,521,0,0,710, - 712,3,52,26,0,711,709,1,0,0,0,712,715,1,0,0,0,713,711,1,0,0,0,713, - 714,1,0,0,0,714,716,1,0,0,0,715,713,1,0,0,0,716,717,5,518,0,0,717, - 57,1,0,0,0,718,756,7,7,0,0,719,721,7,8,0,0,720,722,3,60,30,0,721, - 720,1,0,0,0,721,722,1,0,0,0,722,756,1,0,0,0,723,725,5,380,0,0,724, - 726,3,60,30,0,725,724,1,0,0,0,725,726,1,0,0,0,726,733,1,0,0,0,727, - 729,7,9,0,0,728,730,5,207,0,0,729,728,1,0,0,0,729,730,1,0,0,0,730, - 731,1,0,0,0,731,732,5,379,0,0,732,734,5,505,0,0,733,727,1,0,0,0, - 733,734,1,0,0,0,734,756,1,0,0,0,735,737,7,10,0,0,736,738,3,62,31, - 0,737,736,1,0,0,0,737,738,1,0,0,0,738,756,1,0,0,0,739,741,7,11,0, - 0,740,742,3,66,33,0,741,740,1,0,0,0,741,742,1,0,0,0,742,756,1,0, - 0,0,743,745,5,470,0,0,744,746,3,68,34,0,745,744,1,0,0,0,745,746, - 1,0,0,0,746,756,1,0,0,0,747,749,5,322,0,0,748,750,3,70,35,0,749, - 748,1,0,0,0,749,750,1,0,0,0,750,756,1,0,0,0,751,753,5,295,0,0,752, - 754,3,64,32,0,753,752,1,0,0,0,753,754,1,0,0,0,754,756,1,0,0,0,755, - 718,1,0,0,0,755,719,1,0,0,0,755,723,1,0,0,0,755,735,1,0,0,0,755, - 739,1,0,0,0,755,743,1,0,0,0,755,747,1,0,0,0,755,751,1,0,0,0,756, - 59,1,0,0,0,757,758,5,517,0,0,758,759,3,386,193,0,759,760,5,518,0, - 0,760,61,1,0,0,0,761,762,5,517,0,0,762,765,3,386,193,0,763,764,5, - 521,0,0,764,766,3,386,193,0,765,763,1,0,0,0,765,766,1,0,0,0,766, - 767,1,0,0,0,767,768,5,518,0,0,768,63,1,0,0,0,769,770,5,517,0,0,770, - 773,3,384,192,0,771,772,5,521,0,0,772,774,3,384,192,0,773,771,1, - 0,0,0,773,774,1,0,0,0,774,775,1,0,0,0,775,776,5,518,0,0,776,65,1, - 0,0,0,777,778,5,508,0,0,778,779,3,58,29,0,779,780,5,507,0,0,780, - 67,1,0,0,0,781,782,5,508,0,0,782,783,3,58,29,0,783,784,5,521,0,0, - 784,785,3,58,29,0,785,786,1,0,0,0,786,787,5,507,0,0,787,69,1,0,0, - 0,788,789,5,508,0,0,789,790,3,52,26,0,790,797,3,58,29,0,791,792, - 5,521,0,0,792,793,3,52,26,0,793,794,3,58,29,0,794,796,1,0,0,0,795, - 791,1,0,0,0,796,799,1,0,0,0,797,795,1,0,0,0,797,798,1,0,0,0,798, - 800,1,0,0,0,799,797,1,0,0,0,800,801,5,507,0,0,801,817,1,0,0,0,802, - 803,5,517,0,0,803,804,3,52,26,0,804,811,3,58,29,0,805,806,5,521, - 0,0,806,807,3,52,26,0,807,808,3,58,29,0,808,810,1,0,0,0,809,805, - 1,0,0,0,810,813,1,0,0,0,811,809,1,0,0,0,811,812,1,0,0,0,812,814, - 1,0,0,0,813,811,1,0,0,0,814,815,5,518,0,0,815,817,1,0,0,0,816,788, - 1,0,0,0,816,802,1,0,0,0,817,71,1,0,0,0,818,819,5,64,0,0,819,821, - 3,86,43,0,820,818,1,0,0,0,820,821,1,0,0,0,821,822,1,0,0,0,822,823, - 5,289,0,0,823,826,5,467,0,0,824,825,5,242,0,0,825,827,5,125,0,0, - 826,824,1,0,0,0,826,827,1,0,0,0,827,833,1,0,0,0,828,830,5,242,0, - 0,829,828,1,0,0,0,829,830,1,0,0,0,830,831,1,0,0,0,831,833,5,245, - 0,0,832,820,1,0,0,0,832,829,1,0,0,0,833,73,1,0,0,0,834,835,3,50, - 25,0,835,836,3,58,29,0,836,839,5,219,0,0,837,838,5,151,0,0,838,840, - 3,76,38,0,839,837,1,0,0,0,839,840,1,0,0,0,840,842,1,0,0,0,841,843, - 5,424,0,0,842,841,1,0,0,0,842,843,1,0,0,0,843,75,1,0,0,0,844,845, - 5,538,0,0,845,77,1,0,0,0,846,847,3,50,25,0,847,848,5,17,0,0,848, - 851,3,80,40,0,849,850,5,59,0,0,850,852,5,538,0,0,851,849,1,0,0,0, - 851,852,1,0,0,0,852,79,1,0,0,0,853,854,3,278,139,0,854,81,1,0,0, - 0,855,856,5,425,0,0,856,857,5,146,0,0,857,858,3,52,26,0,858,859, - 5,17,0,0,859,860,3,278,139,0,860,83,1,0,0,0,861,862,5,64,0,0,862, - 864,3,86,43,0,863,861,1,0,0,0,863,864,1,0,0,0,864,865,1,0,0,0,865, - 866,5,289,0,0,866,867,5,467,0,0,867,868,3,56,28,0,868,869,5,242, - 0,0,869,870,5,125,0,0,870,85,1,0,0,0,871,872,3,330,165,0,872,87, - 1,0,0,0,873,874,5,278,0,0,874,875,5,146,0,0,875,876,5,372,0,0,876, - 89,1,0,0,0,877,878,5,270,0,0,878,879,5,34,0,0,879,880,3,92,46,0, - 880,91,1,0,0,0,881,882,5,517,0,0,882,887,3,94,47,0,883,884,5,521, - 0,0,884,886,3,94,47,0,885,883,1,0,0,0,886,889,1,0,0,0,887,885,1, - 0,0,0,887,888,1,0,0,0,888,890,1,0,0,0,889,887,1,0,0,0,890,891,5, - 518,0,0,891,93,1,0,0,0,892,905,3,52,26,0,893,894,5,517,0,0,894,899, - 3,96,48,0,895,896,5,521,0,0,896,898,3,96,48,0,897,895,1,0,0,0,898, - 901,1,0,0,0,899,897,1,0,0,0,899,900,1,0,0,0,900,902,1,0,0,0,901, - 899,1,0,0,0,902,903,5,518,0,0,903,905,1,0,0,0,904,892,1,0,0,0,904, - 893,1,0,0,0,905,95,1,0,0,0,906,909,3,306,153,0,907,909,3,380,190, - 0,908,906,1,0,0,0,908,907,1,0,0,0,909,97,1,0,0,0,910,911,5,203,0, - 0,911,920,3,348,174,0,912,916,5,517,0,0,913,915,3,100,50,0,914,913, - 1,0,0,0,915,918,1,0,0,0,916,914,1,0,0,0,916,917,1,0,0,0,917,919, - 1,0,0,0,918,916,1,0,0,0,919,921,5,518,0,0,920,912,1,0,0,0,920,921, - 1,0,0,0,921,99,1,0,0,0,922,923,7,12,0,0,923,927,7,13,0,0,924,925, - 7,14,0,0,925,927,7,15,0,0,926,922,1,0,0,0,926,924,1,0,0,0,927,101, - 1,0,0,0,928,929,5,72,0,0,929,930,5,442,0,0,930,931,3,340,170,0,931, - 932,3,356,178,0,932,103,1,0,0,0,933,934,5,72,0,0,934,936,5,448,0, - 0,935,937,3,358,179,0,936,935,1,0,0,0,936,937,1,0,0,0,937,938,1, - 0,0,0,938,941,3,344,172,0,939,940,5,59,0,0,940,942,5,538,0,0,941, - 939,1,0,0,0,941,942,1,0,0,0,942,943,1,0,0,0,943,944,3,356,178,0, - 944,105,1,0,0,0,945,947,5,72,0,0,946,948,5,498,0,0,947,946,1,0,0, - 0,947,948,1,0,0,0,948,949,1,0,0,0,949,951,5,502,0,0,950,952,3,358, - 179,0,951,950,1,0,0,0,951,952,1,0,0,0,952,953,1,0,0,0,953,955,3, - 352,176,0,954,956,3,56,28,0,955,954,1,0,0,0,955,956,1,0,0,0,956, - 959,1,0,0,0,957,958,5,59,0,0,958,960,5,538,0,0,959,957,1,0,0,0,959, - 960,1,0,0,0,960,961,1,0,0,0,961,962,5,17,0,0,962,963,3,160,80,0, - 963,107,1,0,0,0,964,968,5,72,0,0,965,969,5,498,0,0,966,967,5,498, - 0,0,967,969,5,371,0,0,968,965,1,0,0,0,968,966,1,0,0,0,968,969,1, - 0,0,0,969,970,1,0,0,0,970,972,5,153,0,0,971,973,3,358,179,0,972, - 971,1,0,0,0,972,973,1,0,0,0,973,974,1,0,0,0,974,975,3,292,146,0, - 975,976,5,17,0,0,976,979,3,330,165,0,977,978,5,196,0,0,978,980,7, - 16,0,0,979,977,1,0,0,0,979,980,1,0,0,0,980,982,1,0,0,0,981,983,3, - 110,55,0,982,981,1,0,0,0,982,983,1,0,0,0,983,109,1,0,0,0,984,985, - 5,413,0,0,985,986,5,464,0,0,986,992,3,112,56,0,987,988,5,521,0,0, - 988,989,5,464,0,0,989,991,3,112,56,0,990,987,1,0,0,0,991,994,1,0, - 0,0,992,990,1,0,0,0,992,993,1,0,0,0,993,111,1,0,0,0,994,992,1,0, - 0,0,995,996,5,538,0,0,996,113,1,0,0,0,997,998,5,8,0,0,998,1000,5, - 374,0,0,999,1001,3,360,180,0,1000,999,1,0,0,0,1000,1001,1,0,0,0, - 1001,1002,1,0,0,0,1002,1008,3,348,174,0,1003,1009,3,116,58,0,1004, - 1009,3,118,59,0,1005,1009,3,120,60,0,1006,1009,3,122,61,0,1007,1009, - 3,124,62,0,1008,1003,1,0,0,0,1008,1004,1,0,0,0,1008,1005,1,0,0,0, - 1008,1006,1,0,0,0,1008,1007,1,0,0,0,1009,115,1,0,0,0,1010,1012,5, - 312,0,0,1011,1013,3,354,177,0,1012,1011,1,0,0,0,1012,1013,1,0,0, - 0,1013,1014,1,0,0,0,1014,1015,5,389,0,0,1015,1016,3,354,177,0,1016, - 117,1,0,0,0,1017,1018,5,341,0,0,1018,1019,3,362,181,0,1019,119,1, - 0,0,0,1020,1021,5,438,0,0,1021,1022,5,64,0,0,1022,1023,3,86,43,0, - 1023,1024,5,289,0,0,1024,1025,5,467,0,0,1025,1027,3,56,28,0,1026, - 1028,3,126,63,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,121,1,0, - 0,0,1029,1030,5,116,0,0,1030,1031,5,64,0,0,1031,1032,3,86,43,0,1032, - 123,1,0,0,0,1033,1034,5,438,0,0,1034,1035,5,404,0,0,1035,1036,3, - 56,28,0,1036,125,1,0,0,0,1037,1038,5,242,0,0,1038,1039,5,125,0,0, - 1039,127,1,0,0,0,1040,1041,5,8,0,0,1041,1042,5,502,0,0,1042,1046, - 3,350,175,0,1043,1047,3,116,58,0,1044,1045,5,17,0,0,1045,1047,3, - 160,80,0,1046,1043,1,0,0,0,1046,1044,1,0,0,0,1047,129,1,0,0,0,1048, - 1049,5,8,0,0,1049,1050,5,448,0,0,1050,1051,3,342,171,0,1051,1052, - 3,118,59,0,1052,131,1,0,0,0,1053,1057,5,8,0,0,1054,1058,5,498,0, - 0,1055,1056,5,498,0,0,1056,1058,5,371,0,0,1057,1054,1,0,0,0,1057, - 1055,1,0,0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1061,5,153, - 0,0,1060,1062,3,360,180,0,1061,1060,1,0,0,0,1061,1062,1,0,0,0,1062, - 1063,1,0,0,0,1063,1064,3,294,147,0,1064,1065,5,17,0,0,1065,1068, - 3,330,165,0,1066,1067,5,196,0,0,1067,1069,7,16,0,0,1068,1066,1,0, - 0,0,1068,1069,1,0,0,0,1069,133,1,0,0,0,1070,1071,5,116,0,0,1071, - 1073,5,442,0,0,1072,1074,3,360,180,0,1073,1072,1,0,0,0,1073,1074, - 1,0,0,0,1074,1075,1,0,0,0,1075,1076,3,338,169,0,1076,135,1,0,0,0, - 1077,1079,5,116,0,0,1078,1080,5,498,0,0,1079,1078,1,0,0,0,1079,1080, - 1,0,0,0,1080,1081,1,0,0,0,1081,1083,5,374,0,0,1082,1084,3,360,180, - 0,1083,1082,1,0,0,0,1083,1084,1,0,0,0,1084,1085,1,0,0,0,1085,1086, - 3,348,174,0,1086,137,1,0,0,0,1087,1088,5,116,0,0,1088,1090,5,448, - 0,0,1089,1091,3,360,180,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0,1091, - 1092,1,0,0,0,1092,1094,3,342,171,0,1093,1095,7,17,0,0,1094,1093, - 1,0,0,0,1094,1095,1,0,0,0,1095,139,1,0,0,0,1096,1098,5,116,0,0,1097, - 1099,5,498,0,0,1098,1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100,1,0, - 0,0,1100,1102,5,502,0,0,1101,1103,3,360,180,0,1102,1101,1,0,0,0, - 1102,1103,1,0,0,0,1103,1104,1,0,0,0,1104,1105,3,350,175,0,1105,141, - 1,0,0,0,1106,1110,5,116,0,0,1107,1111,5,498,0,0,1108,1109,5,498, - 0,0,1109,1111,5,371,0,0,1110,1107,1,0,0,0,1110,1108,1,0,0,0,1110, - 1111,1,0,0,0,1111,1112,1,0,0,0,1112,1114,5,153,0,0,1113,1115,3,360, - 180,0,1114,1113,1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116, - 1117,3,294,147,0,1117,143,1,0,0,0,1118,1120,5,132,0,0,1119,1118, - 1,0,0,0,1119,1120,1,0,0,0,1120,1121,1,0,0,0,1121,1126,3,146,73,0, - 1122,1126,3,156,78,0,1123,1124,5,132,0,0,1124,1126,3,158,79,0,1125, - 1119,1,0,0,0,1125,1122,1,0,0,0,1125,1123,1,0,0,0,1126,145,1,0,0, - 0,1127,1128,5,177,0,0,1128,1129,7,18,0,0,1129,1138,3,348,174,0,1130, - 1132,3,148,74,0,1131,1130,1,0,0,0,1131,1132,1,0,0,0,1132,1134,1, - 0,0,0,1133,1135,3,56,28,0,1134,1133,1,0,0,0,1134,1135,1,0,0,0,1135, - 1136,1,0,0,0,1136,1139,3,160,80,0,1137,1139,3,150,75,0,1138,1131, - 1,0,0,0,1138,1137,1,0,0,0,1139,147,1,0,0,0,1140,1141,5,269,0,0,1141, - 1142,3,362,181,0,1142,149,1,0,0,0,1143,1144,5,415,0,0,1144,1149, - 3,152,76,0,1145,1146,5,521,0,0,1146,1148,3,152,76,0,1147,1145,1, - 0,0,0,1148,1151,1,0,0,0,1149,1147,1,0,0,0,1149,1150,1,0,0,0,1150, - 151,1,0,0,0,1151,1149,1,0,0,0,1152,1153,5,517,0,0,1153,1158,3,154, - 77,0,1154,1155,5,521,0,0,1155,1157,3,154,77,0,1156,1154,1,0,0,0, - 1157,1160,1,0,0,0,1158,1156,1,0,0,0,1158,1159,1,0,0,0,1159,1161, - 1,0,0,0,1160,1158,1,0,0,0,1161,1162,5,518,0,0,1162,153,1,0,0,0,1163, - 1166,3,380,190,0,1164,1166,3,288,144,0,1165,1163,1,0,0,0,1165,1164, - 1,0,0,0,1166,155,1,0,0,0,1167,1168,5,24,0,0,1168,1169,5,355,0,0, - 1169,1170,5,341,0,0,1170,1174,5,522,0,0,1171,1172,3,146,73,0,1172, - 1173,5,522,0,0,1173,1175,1,0,0,0,1174,1171,1,0,0,0,1175,1176,1,0, - 0,0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1178,1,0,0,0,1178,1179, - 5,122,0,0,1179,157,1,0,0,0,1180,1181,5,355,0,0,1181,1182,5,341,0, - 0,1182,1186,5,24,0,0,1183,1184,3,146,73,0,1184,1185,5,522,0,0,1185, - 1187,1,0,0,0,1186,1183,1,0,0,0,1187,1188,1,0,0,0,1188,1186,1,0,0, - 0,1188,1189,1,0,0,0,1189,1190,1,0,0,0,1190,1191,5,122,0,0,1191,159, - 1,0,0,0,1192,1193,6,80,-1,0,1193,1216,3,162,81,0,1194,1195,3,164, - 82,0,1195,1196,3,160,80,5,1196,1216,1,0,0,0,1197,1198,5,517,0,0, - 1198,1199,3,160,80,0,1199,1200,5,518,0,0,1200,1216,1,0,0,0,1201, - 1203,3,172,86,0,1202,1204,3,250,125,0,1203,1202,1,0,0,0,1203,1204, - 1,0,0,0,1204,1206,1,0,0,0,1205,1207,3,254,127,0,1206,1205,1,0,0, - 0,1206,1207,1,0,0,0,1207,1216,1,0,0,0,1208,1210,3,170,85,0,1209, - 1211,3,250,125,0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1213,1, - 0,0,0,1212,1214,3,254,127,0,1213,1212,1,0,0,0,1213,1214,1,0,0,0, - 1214,1216,1,0,0,0,1215,1192,1,0,0,0,1215,1194,1,0,0,0,1215,1197, - 1,0,0,0,1215,1201,1,0,0,0,1215,1208,1,0,0,0,1216,1231,1,0,0,0,1217, - 1218,10,3,0,0,1218,1220,7,19,0,0,1219,1221,5,5,0,0,1220,1219,1,0, - 0,0,1220,1221,1,0,0,0,1221,1222,1,0,0,0,1222,1224,3,160,80,0,1223, - 1225,3,250,125,0,1224,1223,1,0,0,0,1224,1225,1,0,0,0,1225,1227,1, - 0,0,0,1226,1228,3,254,127,0,1227,1226,1,0,0,0,1227,1228,1,0,0,0, - 1228,1230,1,0,0,0,1229,1217,1,0,0,0,1230,1233,1,0,0,0,1231,1229, - 1,0,0,0,1231,1232,1,0,0,0,1232,161,1,0,0,0,1233,1231,1,0,0,0,1234, - 1235,5,415,0,0,1235,1240,3,278,139,0,1236,1237,5,521,0,0,1237,1239, - 3,278,139,0,1238,1236,1,0,0,0,1239,1242,1,0,0,0,1240,1238,1,0,0, - 0,1240,1241,1,0,0,0,1241,163,1,0,0,0,1242,1240,1,0,0,0,1243,1244, - 5,434,0,0,1244,1249,3,166,83,0,1245,1246,5,521,0,0,1246,1248,3,166, - 83,0,1247,1245,1,0,0,0,1248,1251,1,0,0,0,1249,1247,1,0,0,0,1249, - 1250,1,0,0,0,1250,165,1,0,0,0,1251,1249,1,0,0,0,1252,1264,3,168, - 84,0,1253,1254,5,517,0,0,1254,1259,3,52,26,0,1255,1256,5,521,0,0, - 1256,1258,3,52,26,0,1257,1255,1,0,0,0,1258,1261,1,0,0,0,1259,1257, - 1,0,0,0,1259,1260,1,0,0,0,1260,1262,1,0,0,0,1261,1259,1,0,0,0,1262, - 1263,5,518,0,0,1263,1265,1,0,0,0,1264,1253,1,0,0,0,1264,1265,1,0, - 0,0,1265,1266,1,0,0,0,1266,1267,5,17,0,0,1267,1268,5,517,0,0,1268, - 1269,3,160,80,0,1269,1270,5,518,0,0,1270,167,1,0,0,0,1271,1272,3, - 330,165,0,1272,169,1,0,0,0,1273,1275,3,172,86,0,1274,1276,3,192, - 96,0,1275,1274,1,0,0,0,1275,1276,1,0,0,0,1276,1278,1,0,0,0,1277, - 1279,3,224,112,0,1278,1277,1,0,0,0,1278,1279,1,0,0,0,1279,1281,1, - 0,0,0,1280,1282,3,226,113,0,1281,1280,1,0,0,0,1281,1282,1,0,0,0, - 1282,1284,1,0,0,0,1283,1285,3,240,120,0,1284,1283,1,0,0,0,1284,1285, - 1,0,0,0,1285,1287,1,0,0,0,1286,1288,3,242,121,0,1287,1286,1,0,0, - 0,1287,1288,1,0,0,0,1288,1294,1,0,0,0,1289,1290,3,172,86,0,1290, - 1291,3,192,96,0,1291,1292,3,248,124,0,1292,1294,1,0,0,0,1293,1273, - 1,0,0,0,1293,1289,1,0,0,0,1294,171,1,0,0,0,1295,1297,5,337,0,0,1296, - 1298,3,390,195,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1, - 0,0,0,1299,1300,3,174,87,0,1300,173,1,0,0,0,1301,1306,3,176,88,0, - 1302,1303,5,521,0,0,1303,1305,3,176,88,0,1304,1302,1,0,0,0,1305, - 1308,1,0,0,0,1306,1304,1,0,0,0,1306,1307,1,0,0,0,1307,175,1,0,0, - 0,1308,1306,1,0,0,0,1309,1331,3,178,89,0,1310,1316,3,182,91,0,1311, - 1317,3,184,92,0,1312,1314,5,17,0,0,1313,1312,1,0,0,0,1313,1314,1, - 0,0,0,1314,1315,1,0,0,0,1315,1317,3,278,139,0,1316,1311,1,0,0,0, - 1316,1313,1,0,0,0,1316,1317,1,0,0,0,1317,1331,1,0,0,0,1318,1320, - 3,188,94,0,1319,1321,3,184,92,0,1320,1319,1,0,0,0,1320,1321,1,0, - 0,0,1321,1331,1,0,0,0,1322,1328,3,180,90,0,1323,1329,3,184,92,0, - 1324,1326,5,17,0,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326,1327, - 1,0,0,0,1327,1329,3,52,26,0,1328,1323,1,0,0,0,1328,1325,1,0,0,0, - 1328,1329,1,0,0,0,1329,1331,1,0,0,0,1330,1309,1,0,0,0,1330,1310, - 1,0,0,0,1330,1318,1,0,0,0,1330,1322,1,0,0,0,1331,177,1,0,0,0,1332, - 1333,3,190,95,0,1333,179,1,0,0,0,1334,1335,3,278,139,0,1335,181, - 1,0,0,0,1336,1337,3,52,26,0,1337,183,1,0,0,0,1338,1340,5,17,0,0, - 1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1341,1,0,0,0,1341,1342, - 3,330,165,0,1342,185,1,0,0,0,1343,1359,3,190,95,0,1344,1349,3,278, - 139,0,1345,1347,5,17,0,0,1346,1345,1,0,0,0,1346,1347,1,0,0,0,1347, - 1348,1,0,0,0,1348,1350,3,52,26,0,1349,1346,1,0,0,0,1349,1350,1,0, - 0,0,1350,1359,1,0,0,0,1351,1356,3,52,26,0,1352,1354,5,17,0,0,1353, - 1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355,1,0,0,0,1355,1357,3,278, - 139,0,1356,1353,1,0,0,0,1356,1357,1,0,0,0,1357,1359,1,0,0,0,1358, - 1343,1,0,0,0,1358,1344,1,0,0,0,1358,1351,1,0,0,0,1359,187,1,0,0, - 0,1360,1365,3,330,165,0,1361,1362,5,514,0,0,1362,1364,3,330,165, - 0,1363,1361,1,0,0,0,1364,1367,1,0,0,0,1365,1363,1,0,0,0,1365,1366, - 1,0,0,0,1366,1368,1,0,0,0,1367,1365,1,0,0,0,1368,1369,5,514,0,0, - 1369,1371,1,0,0,0,1370,1360,1,0,0,0,1370,1371,1,0,0,0,1371,1372, - 1,0,0,0,1372,1373,5,528,0,0,1373,189,1,0,0,0,1374,1375,3,290,145, - 0,1375,1376,5,263,0,0,1376,1377,3,246,123,0,1377,1378,5,17,0,0,1378, - 1379,3,330,165,0,1379,1387,1,0,0,0,1380,1381,3,290,145,0,1381,1382, - 5,263,0,0,1382,1383,3,322,161,0,1383,1384,5,17,0,0,1384,1385,3,330, - 165,0,1385,1387,1,0,0,0,1386,1374,1,0,0,0,1386,1380,1,0,0,0,1387, - 191,1,0,0,0,1388,1389,5,151,0,0,1389,1390,3,194,97,0,1390,193,1, - 0,0,0,1391,1392,6,97,-1,0,1392,1397,3,196,98,0,1393,1394,5,521,0, - 0,1394,1396,3,196,98,0,1395,1393,1,0,0,0,1396,1399,1,0,0,0,1397, - 1395,1,0,0,0,1397,1398,1,0,0,0,1398,1403,1,0,0,0,1399,1397,1,0,0, - 0,1400,1403,3,208,104,0,1401,1403,3,210,105,0,1402,1391,1,0,0,0, - 1402,1400,1,0,0,0,1402,1401,1,0,0,0,1403,1425,1,0,0,0,1404,1405, - 10,3,0,0,1405,1406,5,73,0,0,1406,1407,5,185,0,0,1407,1424,3,194, - 97,4,1408,1410,10,4,0,0,1409,1411,5,234,0,0,1410,1409,1,0,0,0,1410, - 1411,1,0,0,0,1411,1413,1,0,0,0,1412,1414,7,20,0,0,1413,1412,1,0, - 0,0,1413,1414,1,0,0,0,1414,1416,1,0,0,0,1415,1417,5,262,0,0,1416, - 1415,1,0,0,0,1416,1417,1,0,0,0,1417,1418,1,0,0,0,1418,1419,5,185, - 0,0,1419,1421,3,194,97,0,1420,1422,3,222,111,0,1421,1420,1,0,0,0, - 1421,1422,1,0,0,0,1422,1424,1,0,0,0,1423,1404,1,0,0,0,1423,1408, - 1,0,0,0,1424,1427,1,0,0,0,1425,1423,1,0,0,0,1425,1426,1,0,0,0,1426, - 195,1,0,0,0,1427,1425,1,0,0,0,1428,1430,3,198,99,0,1429,1431,3,320, - 160,0,1430,1429,1,0,0,0,1430,1431,1,0,0,0,1431,197,1,0,0,0,1432, - 1434,5,374,0,0,1433,1432,1,0,0,0,1433,1434,1,0,0,0,1434,1435,1,0, - 0,0,1435,1437,3,348,174,0,1436,1438,3,204,102,0,1437,1436,1,0,0, - 0,1437,1438,1,0,0,0,1438,1446,1,0,0,0,1439,1441,3,350,175,0,1440, - 1442,3,204,102,0,1441,1440,1,0,0,0,1441,1442,1,0,0,0,1442,1446,1, - 0,0,0,1443,1446,3,200,100,0,1444,1446,3,202,101,0,1445,1433,1,0, - 0,0,1445,1439,1,0,0,0,1445,1443,1,0,0,0,1445,1444,1,0,0,0,1446,199, - 1,0,0,0,1447,1448,5,199,0,0,1448,1449,5,374,0,0,1449,1450,5,517, - 0,0,1450,1451,3,288,144,0,1451,1452,5,518,0,0,1452,201,1,0,0,0,1453, - 1455,5,199,0,0,1454,1453,1,0,0,0,1454,1455,1,0,0,0,1455,1456,1,0, - 0,0,1456,1457,5,517,0,0,1457,1458,3,160,80,0,1458,1459,5,518,0,0, - 1459,1466,1,0,0,0,1460,1461,5,406,0,0,1461,1462,5,517,0,0,1462,1463, - 3,278,139,0,1463,1464,5,518,0,0,1464,1466,1,0,0,0,1465,1454,1,0, - 0,0,1465,1460,1,0,0,0,1466,203,1,0,0,0,1467,1468,5,146,0,0,1468, - 1469,5,372,0,0,1469,1470,5,17,0,0,1470,1471,5,250,0,0,1471,1472, - 3,206,103,0,1472,205,1,0,0,0,1473,1474,3,278,139,0,1474,207,1,0, - 0,0,1475,1476,5,517,0,0,1476,1477,3,150,75,0,1477,1478,5,518,0,0, - 1478,1479,3,320,160,0,1479,209,1,0,0,0,1480,1481,5,374,0,0,1481, - 1482,5,517,0,0,1482,1483,3,212,106,0,1483,1484,5,518,0,0,1484,211, - 1,0,0,0,1485,1486,3,214,107,0,1486,1487,5,517,0,0,1487,1492,3,216, - 108,0,1488,1489,5,521,0,0,1489,1491,3,216,108,0,1490,1488,1,0,0, - 0,1491,1494,1,0,0,0,1492,1490,1,0,0,0,1492,1493,1,0,0,0,1493,1495, - 1,0,0,0,1494,1492,1,0,0,0,1495,1496,5,518,0,0,1496,213,1,0,0,0,1497, - 1498,7,21,0,0,1498,215,1,0,0,0,1499,1500,5,374,0,0,1500,1515,3,238, - 119,0,1501,1515,3,220,110,0,1502,1515,3,308,154,0,1503,1504,5,447, - 0,0,1504,1505,5,537,0,0,1505,1506,5,374,0,0,1506,1515,3,238,119, - 0,1507,1508,5,499,0,0,1508,1509,5,537,0,0,1509,1515,3,220,110,0, - 1510,1511,3,218,109,0,1511,1512,5,537,0,0,1512,1513,3,308,154,0, - 1513,1515,1,0,0,0,1514,1499,1,0,0,0,1514,1501,1,0,0,0,1514,1502, - 1,0,0,0,1514,1503,1,0,0,0,1514,1507,1,0,0,0,1514,1510,1,0,0,0,1515, - 217,1,0,0,0,1516,1517,7,22,0,0,1517,219,1,0,0,0,1518,1519,5,452, - 0,0,1519,1520,5,517,0,0,1520,1521,3,52,26,0,1521,1522,5,518,0,0, - 1522,221,1,0,0,0,1523,1524,5,254,0,0,1524,1528,3,280,140,0,1525, - 1526,5,413,0,0,1526,1528,3,56,28,0,1527,1523,1,0,0,0,1527,1525,1, - 0,0,0,1528,223,1,0,0,0,1529,1530,5,431,0,0,1530,1531,3,280,140,0, - 1531,225,1,0,0,0,1532,1533,5,159,0,0,1533,1534,5,34,0,0,1534,1539, - 3,228,114,0,1535,1536,5,521,0,0,1536,1538,3,228,114,0,1537,1535, - 1,0,0,0,1538,1541,1,0,0,0,1539,1537,1,0,0,0,1539,1540,1,0,0,0,1540, - 227,1,0,0,0,1541,1539,1,0,0,0,1542,1583,3,52,26,0,1543,1583,3,234, - 117,0,1544,1545,5,517,0,0,1545,1583,5,518,0,0,1546,1547,5,517,0, - 0,1547,1552,3,278,139,0,1548,1549,5,521,0,0,1549,1551,3,278,139, - 0,1550,1548,1,0,0,0,1551,1554,1,0,0,0,1552,1550,1,0,0,0,1552,1553, - 1,0,0,0,1553,1555,1,0,0,0,1554,1552,1,0,0,0,1555,1556,5,518,0,0, - 1556,1583,1,0,0,0,1557,1558,3,232,116,0,1558,1559,5,517,0,0,1559, - 1564,3,278,139,0,1560,1561,5,521,0,0,1561,1563,3,278,139,0,1562, - 1560,1,0,0,0,1563,1566,1,0,0,0,1564,1562,1,0,0,0,1564,1565,1,0,0, - 0,1565,1567,1,0,0,0,1566,1564,1,0,0,0,1567,1568,5,518,0,0,1568,1583, - 1,0,0,0,1569,1570,3,230,115,0,1570,1571,5,517,0,0,1571,1576,3,228, - 114,0,1572,1573,5,521,0,0,1573,1575,3,228,114,0,1574,1572,1,0,0, - 0,1575,1578,1,0,0,0,1576,1574,1,0,0,0,1576,1577,1,0,0,0,1577,1579, - 1,0,0,0,1578,1576,1,0,0,0,1579,1580,5,518,0,0,1580,1583,1,0,0,0, - 1581,1583,3,278,139,0,1582,1542,1,0,0,0,1582,1543,1,0,0,0,1582,1544, - 1,0,0,0,1582,1546,1,0,0,0,1582,1557,1,0,0,0,1582,1569,1,0,0,0,1582, - 1581,1,0,0,0,1583,229,1,0,0,0,1584,1585,5,160,0,0,1585,1586,5,494, - 0,0,1586,231,1,0,0,0,1587,1588,7,23,0,0,1588,233,1,0,0,0,1589,1590, - 3,236,118,0,1590,1591,5,517,0,0,1591,1592,3,238,119,0,1592,1593, - 5,521,0,0,1593,1594,3,308,154,0,1594,1595,5,518,0,0,1595,235,1,0, - 0,0,1596,1597,7,24,0,0,1597,237,1,0,0,0,1598,1599,3,354,177,0,1599, - 239,1,0,0,0,1600,1601,5,163,0,0,1601,1602,3,280,140,0,1602,241,1, - 0,0,0,1603,1604,5,433,0,0,1604,1609,3,244,122,0,1605,1606,5,521, - 0,0,1606,1608,3,244,122,0,1607,1605,1,0,0,0,1608,1611,1,0,0,0,1609, - 1607,1,0,0,0,1609,1610,1,0,0,0,1610,243,1,0,0,0,1611,1609,1,0,0, - 0,1612,1613,3,322,161,0,1613,1614,5,17,0,0,1614,1615,3,246,123,0, - 1615,245,1,0,0,0,1616,1618,3,322,161,0,1617,1616,1,0,0,0,1617,1618, - 1,0,0,0,1618,1619,1,0,0,0,1619,1621,5,517,0,0,1620,1622,3,256,128, - 0,1621,1620,1,0,0,0,1621,1622,1,0,0,0,1622,1624,1,0,0,0,1623,1625, - 3,250,125,0,1624,1623,1,0,0,0,1624,1625,1,0,0,0,1625,1627,1,0,0, - 0,1626,1628,3,272,136,0,1627,1626,1,0,0,0,1627,1628,1,0,0,0,1628, - 1629,1,0,0,0,1629,1630,5,518,0,0,1630,247,1,0,0,0,1631,1632,5,214, - 0,0,1632,1634,5,517,0,0,1633,1635,3,256,128,0,1634,1633,1,0,0,0, - 1634,1635,1,0,0,0,1635,1637,1,0,0,0,1636,1638,3,250,125,0,1637,1636, - 1,0,0,0,1637,1638,1,0,0,0,1638,1640,1,0,0,0,1639,1641,3,260,130, - 0,1640,1639,1,0,0,0,1640,1641,1,0,0,0,1641,1643,1,0,0,0,1642,1644, - 3,266,133,0,1643,1642,1,0,0,0,1643,1644,1,0,0,0,1644,1646,1,0,0, - 0,1645,1647,3,268,134,0,1646,1645,1,0,0,0,1646,1647,1,0,0,0,1647, - 1649,1,0,0,0,1648,1650,3,262,131,0,1649,1648,1,0,0,0,1649,1650,1, - 0,0,0,1650,1651,1,0,0,0,1651,1652,3,270,135,0,1652,1657,5,518,0, - 0,1653,1655,5,17,0,0,1654,1653,1,0,0,0,1654,1655,1,0,0,0,1655,1656, - 1,0,0,0,1656,1658,3,330,165,0,1657,1654,1,0,0,0,1657,1658,1,0,0, - 0,1658,249,1,0,0,0,1659,1660,5,259,0,0,1660,1661,5,34,0,0,1661,1666, - 3,252,126,0,1662,1663,5,521,0,0,1663,1665,3,252,126,0,1664,1662, - 1,0,0,0,1665,1668,1,0,0,0,1666,1664,1,0,0,0,1666,1667,1,0,0,0,1667, - 251,1,0,0,0,1668,1666,1,0,0,0,1669,1671,3,52,26,0,1670,1672,7,25, - 0,0,1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672,1675,1,0,0,0,1673,1674, - 5,477,0,0,1674,1676,7,26,0,0,1675,1673,1,0,0,0,1675,1676,1,0,0,0, - 1676,253,1,0,0,0,1677,1680,5,205,0,0,1678,1681,5,5,0,0,1679,1681, - 3,278,139,0,1680,1678,1,0,0,0,1680,1679,1,0,0,0,1681,255,1,0,0,0, - 1682,1683,5,269,0,0,1683,1686,5,34,0,0,1684,1687,3,52,26,0,1685, - 1687,3,290,145,0,1686,1684,1,0,0,0,1686,1685,1,0,0,0,1687,1695,1, - 0,0,0,1688,1691,5,521,0,0,1689,1692,3,52,26,0,1690,1692,3,290,145, - 0,1691,1689,1,0,0,0,1691,1690,1,0,0,0,1692,1694,1,0,0,0,1693,1688, - 1,0,0,0,1694,1697,1,0,0,0,1695,1693,1,0,0,0,1695,1696,1,0,0,0,1696, - 257,1,0,0,0,1697,1695,1,0,0,0,1698,1715,5,528,0,0,1699,1715,5,531, - 0,0,1700,1715,5,536,0,0,1701,1702,5,519,0,0,1702,1703,5,539,0,0, - 1703,1704,5,521,0,0,1704,1705,5,539,0,0,1705,1715,5,520,0,0,1706, - 1707,5,519,0,0,1707,1708,5,539,0,0,1708,1709,5,521,0,0,1709,1715, - 5,520,0,0,1710,1711,5,519,0,0,1711,1712,5,521,0,0,1712,1713,5,539, - 0,0,1713,1715,5,520,0,0,1714,1698,1,0,0,0,1714,1699,1,0,0,0,1714, - 1700,1,0,0,0,1714,1701,1,0,0,0,1714,1706,1,0,0,0,1714,1710,1,0,0, - 0,1715,259,1,0,0,0,1716,1717,5,216,0,0,1717,1722,3,186,93,0,1718, - 1719,5,521,0,0,1719,1721,3,186,93,0,1720,1718,1,0,0,0,1721,1724, - 1,0,0,0,1722,1720,1,0,0,0,1722,1723,1,0,0,0,1723,261,1,0,0,0,1724, - 1722,1,0,0,0,1725,1726,5,272,0,0,1726,1728,5,517,0,0,1727,1729,3, - 264,132,0,1728,1727,1,0,0,0,1729,1730,1,0,0,0,1730,1728,1,0,0,0, - 1730,1731,1,0,0,0,1731,1732,1,0,0,0,1732,1734,5,518,0,0,1733,1735, - 3,276,138,0,1734,1733,1,0,0,0,1734,1735,1,0,0,0,1735,263,1,0,0,0, - 1736,1738,3,332,166,0,1737,1739,3,258,129,0,1738,1737,1,0,0,0,1738, - 1739,1,0,0,0,1739,265,1,0,0,0,1740,1741,5,5,0,0,1741,1742,5,323, - 0,0,1742,1743,5,273,0,0,1743,1749,5,211,0,0,1744,1745,5,255,0,0, - 1745,1746,5,322,0,0,1746,1747,5,273,0,0,1747,1749,5,211,0,0,1748, - 1740,1,0,0,0,1748,1744,1,0,0,0,1749,267,1,0,0,0,1750,1751,5,439, - 0,0,1751,1752,5,211,0,0,1752,1753,5,344,0,0,1753,1754,5,479,0,0, - 1754,1755,5,468,0,0,1755,1775,5,322,0,0,1756,1757,5,439,0,0,1757, - 1758,5,211,0,0,1758,1759,5,344,0,0,1759,1760,5,389,0,0,1760,1761, - 5,238,0,0,1761,1775,5,322,0,0,1762,1763,5,439,0,0,1763,1764,5,211, - 0,0,1764,1765,5,344,0,0,1765,1766,5,389,0,0,1766,1767,5,468,0,0, - 1767,1775,3,332,166,0,1768,1769,5,439,0,0,1769,1770,5,211,0,0,1770, - 1771,5,344,0,0,1771,1772,5,389,0,0,1772,1773,5,458,0,0,1773,1775, - 3,332,166,0,1774,1750,1,0,0,0,1774,1756,1,0,0,0,1774,1762,1,0,0, - 0,1774,1768,1,0,0,0,1775,269,1,0,0,0,1776,1777,5,105,0,0,1777,1782, - 3,186,93,0,1778,1779,5,521,0,0,1779,1781,3,186,93,0,1780,1778,1, - 0,0,0,1781,1784,1,0,0,0,1782,1780,1,0,0,0,1782,1783,1,0,0,0,1783, - 271,1,0,0,0,1784,1782,1,0,0,0,1785,1786,5,293,0,0,1786,1787,5,27, - 0,0,1787,1788,3,308,154,0,1788,1789,3,274,137,0,1789,1795,1,0,0, - 0,1790,1791,5,323,0,0,1791,1792,5,27,0,0,1792,1793,5,539,0,0,1793, - 1795,3,274,137,0,1794,1785,1,0,0,0,1794,1790,1,0,0,0,1795,273,1, - 0,0,0,1796,1797,5,481,0,0,1797,1798,5,10,0,0,1798,1799,5,76,0,0, - 1799,1800,5,322,0,0,1800,275,1,0,0,0,1801,1802,5,435,0,0,1802,1803, - 3,308,154,0,1803,277,1,0,0,0,1804,1805,3,280,140,0,1805,279,1,0, - 0,0,1806,1807,6,140,-1,0,1807,1808,5,242,0,0,1808,1819,3,280,140, - 6,1809,1810,5,133,0,0,1810,1811,5,517,0,0,1811,1812,3,160,80,0,1812, - 1813,5,518,0,0,1813,1819,1,0,0,0,1814,1816,3,286,143,0,1815,1817, - 3,282,141,0,1816,1815,1,0,0,0,1816,1817,1,0,0,0,1817,1819,1,0,0, - 0,1818,1806,1,0,0,0,1818,1809,1,0,0,0,1818,1814,1,0,0,0,1819,1834, - 1,0,0,0,1820,1821,10,3,0,0,1821,1822,5,10,0,0,1822,1833,3,280,140, - 4,1823,1824,10,2,0,0,1824,1825,5,258,0,0,1825,1833,3,280,140,3,1826, - 1827,10,1,0,0,1827,1829,5,184,0,0,1828,1830,5,242,0,0,1829,1828, - 1,0,0,0,1829,1830,1,0,0,0,1830,1831,1,0,0,0,1831,1833,7,27,0,0,1832, - 1820,1,0,0,0,1832,1823,1,0,0,0,1832,1826,1,0,0,0,1833,1836,1,0,0, - 0,1834,1832,1,0,0,0,1834,1835,1,0,0,0,1835,281,1,0,0,0,1836,1834, - 1,0,0,0,1837,1839,5,242,0,0,1838,1837,1,0,0,0,1838,1839,1,0,0,0, - 1839,1840,1,0,0,0,1840,1842,5,27,0,0,1841,1843,7,28,0,0,1842,1841, - 1,0,0,0,1842,1843,1,0,0,0,1843,1844,1,0,0,0,1844,1845,3,286,143, - 0,1845,1846,5,10,0,0,1846,1847,3,286,143,0,1847,1912,1,0,0,0,1848, - 1850,5,242,0,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0,1850,1851,1,0, - 0,0,1851,1852,5,170,0,0,1852,1853,5,517,0,0,1853,1858,3,278,139, - 0,1854,1855,5,521,0,0,1855,1857,3,278,139,0,1856,1854,1,0,0,0,1857, - 1860,1,0,0,0,1858,1856,1,0,0,0,1858,1859,1,0,0,0,1859,1861,1,0,0, - 0,1860,1858,1,0,0,0,1861,1862,5,518,0,0,1862,1912,1,0,0,0,1863,1865, - 5,242,0,0,1864,1863,1,0,0,0,1864,1865,1,0,0,0,1865,1866,1,0,0,0, - 1866,1867,5,170,0,0,1867,1868,5,517,0,0,1868,1869,3,160,80,0,1869, - 1870,5,518,0,0,1870,1912,1,0,0,0,1871,1872,5,133,0,0,1872,1873,5, - 517,0,0,1873,1874,3,160,80,0,1874,1875,5,518,0,0,1875,1912,1,0,0, - 0,1876,1878,5,242,0,0,1877,1876,1,0,0,0,1877,1878,1,0,0,0,1878,1879, - 1,0,0,0,1879,1880,5,319,0,0,1880,1912,3,286,143,0,1881,1912,3,284, - 142,0,1882,1884,5,184,0,0,1883,1885,5,242,0,0,1884,1883,1,0,0,0, - 1884,1885,1,0,0,0,1885,1886,1,0,0,0,1886,1912,7,27,0,0,1887,1889, - 5,184,0,0,1888,1890,5,242,0,0,1889,1888,1,0,0,0,1889,1890,1,0,0, - 0,1890,1891,1,0,0,0,1891,1892,5,113,0,0,1892,1893,5,151,0,0,1893, - 1912,3,286,143,0,1894,1896,5,242,0,0,1895,1894,1,0,0,0,1895,1896, - 1,0,0,0,1896,1897,1,0,0,0,1897,1898,5,343,0,0,1898,1899,5,389,0, - 0,1899,1902,3,286,143,0,1900,1901,5,127,0,0,1901,1903,3,384,192, - 0,1902,1900,1,0,0,0,1902,1903,1,0,0,0,1903,1912,1,0,0,0,1904,1905, - 5,184,0,0,1905,1909,5,186,0,0,1906,1910,5,414,0,0,1907,1910,5,13, - 0,0,1908,1910,3,330,165,0,1909,1906,1,0,0,0,1909,1907,1,0,0,0,1909, - 1908,1,0,0,0,1909,1910,1,0,0,0,1910,1912,1,0,0,0,1911,1838,1,0,0, - 0,1911,1849,1,0,0,0,1911,1864,1,0,0,0,1911,1871,1,0,0,0,1911,1877, - 1,0,0,0,1911,1881,1,0,0,0,1911,1882,1,0,0,0,1911,1887,1,0,0,0,1911, - 1895,1,0,0,0,1911,1904,1,0,0,0,1912,283,1,0,0,0,1913,1915,5,242, - 0,0,1914,1913,1,0,0,0,1914,1915,1,0,0,0,1915,1916,1,0,0,0,1916,1917, - 5,203,0,0,1917,1931,7,29,0,0,1918,1919,5,517,0,0,1919,1932,5,518, - 0,0,1920,1921,5,517,0,0,1921,1926,3,278,139,0,1922,1923,5,521,0, - 0,1923,1925,3,278,139,0,1924,1922,1,0,0,0,1925,1928,1,0,0,0,1926, - 1924,1,0,0,0,1926,1927,1,0,0,0,1927,1929,1,0,0,0,1928,1926,1,0,0, - 0,1929,1930,5,518,0,0,1930,1932,1,0,0,0,1931,1918,1,0,0,0,1931,1920, - 1,0,0,0,1932,1943,1,0,0,0,1933,1935,5,242,0,0,1934,1933,1,0,0,0, - 1934,1935,1,0,0,0,1935,1936,1,0,0,0,1936,1937,5,203,0,0,1937,1940, - 3,286,143,0,1938,1939,5,127,0,0,1939,1941,3,384,192,0,1940,1938, - 1,0,0,0,1940,1941,1,0,0,0,1941,1943,1,0,0,0,1942,1914,1,0,0,0,1942, - 1934,1,0,0,0,1943,285,1,0,0,0,1944,1945,6,143,-1,0,1945,1949,3,290, - 145,0,1946,1947,7,30,0,0,1947,1949,3,286,143,7,1948,1944,1,0,0,0, - 1948,1946,1,0,0,0,1949,1971,1,0,0,0,1950,1951,10,6,0,0,1951,1952, - 7,31,0,0,1952,1970,3,286,143,7,1953,1954,10,5,0,0,1954,1955,7,32, - 0,0,1955,1970,3,286,143,6,1956,1957,10,4,0,0,1957,1958,5,512,0,0, - 1958,1970,3,286,143,5,1959,1960,10,3,0,0,1960,1961,5,513,0,0,1961, - 1970,3,286,143,4,1962,1963,10,2,0,0,1963,1964,5,511,0,0,1964,1970, - 3,286,143,3,1965,1966,10,1,0,0,1966,1967,3,372,186,0,1967,1968,3, - 286,143,2,1968,1970,1,0,0,0,1969,1950,1,0,0,0,1969,1953,1,0,0,0, - 1969,1956,1,0,0,0,1969,1959,1,0,0,0,1969,1962,1,0,0,0,1969,1965, - 1,0,0,0,1970,1973,1,0,0,0,1971,1969,1,0,0,0,1971,1972,1,0,0,0,1972, - 287,1,0,0,0,1973,1971,1,0,0,0,1974,1994,3,398,199,0,1975,1994,3, - 296,148,0,1976,1977,3,298,149,0,1977,1989,5,517,0,0,1978,1980,3, - 390,195,0,1979,1978,1,0,0,0,1979,1980,1,0,0,0,1980,1981,1,0,0,0, - 1981,1986,3,300,150,0,1982,1983,5,521,0,0,1983,1985,3,300,150,0, - 1984,1982,1,0,0,0,1985,1988,1,0,0,0,1986,1984,1,0,0,0,1986,1987, - 1,0,0,0,1987,1990,1,0,0,0,1988,1986,1,0,0,0,1989,1979,1,0,0,0,1989, - 1990,1,0,0,0,1990,1991,1,0,0,0,1991,1992,5,518,0,0,1992,1994,1,0, - 0,0,1993,1974,1,0,0,0,1993,1975,1,0,0,0,1993,1976,1,0,0,0,1994,289, - 1,0,0,0,1995,1996,6,145,-1,0,1996,1998,5,40,0,0,1997,1999,3,336, - 168,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,2004,1,0,0,0,2002,2003,5,120,0,0,2003,2005,3,278, - 139,0,2004,2002,1,0,0,0,2004,2005,1,0,0,0,2005,2006,1,0,0,0,2006, - 2007,5,122,0,0,2007,2071,1,0,0,0,2008,2009,5,40,0,0,2009,2011,3, - 278,139,0,2010,2012,3,336,168,0,2011,2010,1,0,0,0,2012,2013,1,0, - 0,0,2013,2011,1,0,0,0,2013,2014,1,0,0,0,2014,2017,1,0,0,0,2015,2016, - 5,120,0,0,2016,2018,3,278,139,0,2017,2015,1,0,0,0,2017,2018,1,0, - 0,0,2018,2019,1,0,0,0,2019,2020,5,122,0,0,2020,2071,1,0,0,0,2021, - 2022,5,41,0,0,2022,2023,5,517,0,0,2023,2024,3,278,139,0,2024,2025, - 5,17,0,0,2025,2026,3,58,29,0,2026,2027,5,518,0,0,2027,2071,1,0,0, - 0,2028,2029,5,458,0,0,2029,2030,5,517,0,0,2030,2033,3,278,139,0, - 2031,2032,5,462,0,0,2032,2034,5,477,0,0,2033,2031,1,0,0,0,2033,2034, - 1,0,0,0,2034,2035,1,0,0,0,2035,2036,5,518,0,0,2036,2071,1,0,0,0, - 2037,2038,5,468,0,0,2038,2039,5,517,0,0,2039,2042,3,278,139,0,2040, - 2041,5,462,0,0,2041,2043,5,477,0,0,2042,2040,1,0,0,0,2042,2043,1, - 0,0,0,2043,2044,1,0,0,0,2044,2045,5,518,0,0,2045,2071,1,0,0,0,2046, - 2047,5,282,0,0,2047,2048,5,517,0,0,2048,2049,3,286,143,0,2049,2050, - 5,170,0,0,2050,2051,3,286,143,0,2051,2052,5,518,0,0,2052,2071,1, - 0,0,0,2053,2071,3,380,190,0,2054,2071,5,528,0,0,2055,2056,3,354, - 177,0,2056,2057,5,514,0,0,2057,2058,5,528,0,0,2058,2071,1,0,0,0, - 2059,2060,5,517,0,0,2060,2061,3,160,80,0,2061,2062,5,518,0,0,2062, - 2071,1,0,0,0,2063,2071,3,288,144,0,2064,2071,3,54,27,0,2065,2071, - 3,302,151,0,2066,2067,5,517,0,0,2067,2068,3,278,139,0,2068,2069, - 5,518,0,0,2069,2071,1,0,0,0,2070,1995,1,0,0,0,2070,2008,1,0,0,0, - 2070,2021,1,0,0,0,2070,2028,1,0,0,0,2070,2037,1,0,0,0,2070,2046, - 1,0,0,0,2070,2053,1,0,0,0,2070,2054,1,0,0,0,2070,2055,1,0,0,0,2070, - 2059,1,0,0,0,2070,2063,1,0,0,0,2070,2064,1,0,0,0,2070,2065,1,0,0, - 0,2070,2066,1,0,0,0,2071,2079,1,0,0,0,2072,2073,10,4,0,0,2073,2074, - 5,515,0,0,2074,2075,3,286,143,0,2075,2076,5,516,0,0,2076,2078,1, - 0,0,0,2077,2072,1,0,0,0,2078,2081,1,0,0,0,2079,2077,1,0,0,0,2079, - 2080,1,0,0,0,2080,291,1,0,0,0,2081,2079,1,0,0,0,2082,2083,3,354, - 177,0,2083,293,1,0,0,0,2084,2089,3,402,201,0,2085,2089,3,398,199, - 0,2086,2089,3,400,200,0,2087,2089,3,354,177,0,2088,2084,1,0,0,0, - 2088,2085,1,0,0,0,2088,2086,1,0,0,0,2088,2087,1,0,0,0,2089,295,1, - 0,0,0,2090,2091,3,400,200,0,2091,2092,5,538,0,0,2092,2095,1,0,0, - 0,2093,2095,3,308,154,0,2094,2090,1,0,0,0,2094,2093,1,0,0,0,2095, - 297,1,0,0,0,2096,2099,3,402,201,0,2097,2099,3,354,177,0,2098,2096, - 1,0,0,0,2098,2097,1,0,0,0,2099,299,1,0,0,0,2100,2105,3,396,198,0, - 2101,2105,3,394,197,0,2102,2105,3,392,196,0,2103,2105,3,278,139, - 0,2104,2100,1,0,0,0,2104,2101,1,0,0,0,2104,2102,1,0,0,0,2104,2103, - 1,0,0,0,2105,301,1,0,0,0,2106,2107,3,354,177,0,2107,303,1,0,0,0, - 2108,2109,3,330,165,0,2109,305,1,0,0,0,2110,2113,3,330,165,0,2111, - 2113,3,302,151,0,2112,2110,1,0,0,0,2112,2111,1,0,0,0,2113,307,1, - 0,0,0,2114,2117,5,182,0,0,2115,2118,3,310,155,0,2116,2118,3,314, - 157,0,2117,2115,1,0,0,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118, - 309,1,0,0,0,2119,2121,3,312,156,0,2120,2122,3,316,158,0,2121,2120, - 1,0,0,0,2121,2122,1,0,0,0,2122,311,1,0,0,0,2123,2124,3,318,159,0, - 2124,2125,3,394,197,0,2125,2127,1,0,0,0,2126,2123,1,0,0,0,2127,2128, - 1,0,0,0,2128,2126,1,0,0,0,2128,2129,1,0,0,0,2129,313,1,0,0,0,2130, - 2133,3,316,158,0,2131,2134,3,312,156,0,2132,2134,3,316,158,0,2133, - 2131,1,0,0,0,2133,2132,1,0,0,0,2133,2134,1,0,0,0,2134,315,1,0,0, - 0,2135,2136,3,318,159,0,2136,2137,3,394,197,0,2137,2138,5,389,0, - 0,2138,2139,3,394,197,0,2139,317,1,0,0,0,2140,2142,7,33,0,0,2141, - 2140,1,0,0,0,2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2146,7,34, - 0,0,2144,2146,5,538,0,0,2145,2141,1,0,0,0,2145,2144,1,0,0,0,2146, - 319,1,0,0,0,2147,2149,5,17,0,0,2148,2147,1,0,0,0,2148,2149,1,0,0, - 0,2149,2150,1,0,0,0,2150,2152,3,330,165,0,2151,2153,3,326,163,0, - 2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,321,1,0,0,0,2154,2155,3, - 330,165,0,2155,2156,3,324,162,0,2156,323,1,0,0,0,2157,2158,5,222, - 0,0,2158,2160,3,330,165,0,2159,2157,1,0,0,0,2160,2161,1,0,0,0,2161, - 2159,1,0,0,0,2161,2162,1,0,0,0,2162,2165,1,0,0,0,2163,2165,1,0,0, - 0,2164,2159,1,0,0,0,2164,2163,1,0,0,0,2165,325,1,0,0,0,2166,2167, - 5,517,0,0,2167,2168,3,328,164,0,2168,2169,5,518,0,0,2169,327,1,0, - 0,0,2170,2175,3,330,165,0,2171,2172,5,521,0,0,2172,2174,3,330,165, - 0,2173,2171,1,0,0,0,2174,2177,1,0,0,0,2175,2173,1,0,0,0,2175,2176, - 1,0,0,0,2176,329,1,0,0,0,2177,2175,1,0,0,0,2178,2182,3,332,166,0, - 2179,2182,3,334,167,0,2180,2182,3,404,202,0,2181,2178,1,0,0,0,2181, - 2179,1,0,0,0,2181,2180,1,0,0,0,2182,331,1,0,0,0,2183,2184,7,35,0, - 0,2184,333,1,0,0,0,2185,2186,5,538,0,0,2186,335,1,0,0,0,2187,2188, - 5,429,0,0,2188,2189,3,278,139,0,2189,2190,5,377,0,0,2190,2191,3, - 278,139,0,2191,337,1,0,0,0,2192,2193,3,330,165,0,2193,339,1,0,0, - 0,2194,2195,3,330,165,0,2195,341,1,0,0,0,2196,2199,3,330,165,0,2197, - 2198,5,514,0,0,2198,2200,3,330,165,0,2199,2197,1,0,0,0,2199,2200, - 1,0,0,0,2200,343,1,0,0,0,2201,2204,3,330,165,0,2202,2203,5,514,0, - 0,2203,2205,3,330,165,0,2204,2202,1,0,0,0,2204,2205,1,0,0,0,2205, - 345,1,0,0,0,2206,2209,3,330,165,0,2207,2208,5,514,0,0,2208,2210, - 3,330,165,0,2209,2207,1,0,0,0,2209,2210,1,0,0,0,2210,2219,1,0,0, - 0,2211,2212,3,330,165,0,2212,2213,5,514,0,0,2213,2216,3,330,165, - 0,2214,2215,5,514,0,0,2215,2217,3,330,165,0,2216,2214,1,0,0,0,2216, - 2217,1,0,0,0,2217,2219,1,0,0,0,2218,2206,1,0,0,0,2218,2211,1,0,0, - 0,2219,347,1,0,0,0,2220,2223,3,330,165,0,2221,2222,5,514,0,0,2222, - 2224,3,330,165,0,2223,2221,1,0,0,0,2223,2224,1,0,0,0,2224,2233,1, - 0,0,0,2225,2226,3,330,165,0,2226,2227,5,514,0,0,2227,2230,3,330, - 165,0,2228,2229,5,514,0,0,2229,2231,3,330,165,0,2230,2228,1,0,0, - 0,2230,2231,1,0,0,0,2231,2233,1,0,0,0,2232,2220,1,0,0,0,2232,2225, - 1,0,0,0,2233,349,1,0,0,0,2234,2237,3,330,165,0,2235,2236,5,514,0, - 0,2236,2238,3,330,165,0,2237,2235,1,0,0,0,2237,2238,1,0,0,0,2238, - 2247,1,0,0,0,2239,2240,3,330,165,0,2240,2241,5,514,0,0,2241,2244, - 3,330,165,0,2242,2243,5,514,0,0,2243,2245,3,330,165,0,2244,2242, - 1,0,0,0,2244,2245,1,0,0,0,2245,2247,1,0,0,0,2246,2234,1,0,0,0,2246, - 2239,1,0,0,0,2247,351,1,0,0,0,2248,2251,3,330,165,0,2249,2250,5, - 514,0,0,2250,2252,3,330,165,0,2251,2249,1,0,0,0,2251,2252,1,0,0, - 0,2252,2261,1,0,0,0,2253,2254,3,330,165,0,2254,2255,5,514,0,0,2255, - 2258,3,330,165,0,2256,2257,5,514,0,0,2257,2259,3,330,165,0,2258, - 2256,1,0,0,0,2258,2259,1,0,0,0,2259,2261,1,0,0,0,2260,2248,1,0,0, - 0,2260,2253,1,0,0,0,2261,353,1,0,0,0,2262,2267,3,330,165,0,2263, - 2264,5,514,0,0,2264,2266,3,330,165,0,2265,2263,1,0,0,0,2266,2269, - 1,0,0,0,2267,2265,1,0,0,0,2267,2268,1,0,0,0,2268,355,1,0,0,0,2269, - 2267,1,0,0,0,2270,2271,5,434,0,0,2271,2272,3,362,181,0,2272,357, - 1,0,0,0,2273,2274,5,167,0,0,2274,2275,5,242,0,0,2275,2276,5,133, - 0,0,2276,359,1,0,0,0,2277,2278,5,167,0,0,2278,2279,5,133,0,0,2279, - 361,1,0,0,0,2280,2281,5,517,0,0,2281,2286,3,364,182,0,2282,2283, - 5,521,0,0,2283,2285,3,364,182,0,2284,2282,1,0,0,0,2285,2288,1,0, - 0,0,2286,2284,1,0,0,0,2286,2287,1,0,0,0,2287,2289,1,0,0,0,2288,2286, - 1,0,0,0,2289,2290,5,518,0,0,2290,363,1,0,0,0,2291,2296,3,366,183, - 0,2292,2294,5,506,0,0,2293,2292,1,0,0,0,2293,2294,1,0,0,0,2294,2295, - 1,0,0,0,2295,2297,3,368,184,0,2296,2293,1,0,0,0,2296,2297,1,0,0, - 0,2297,365,1,0,0,0,2298,2302,3,330,165,0,2299,2302,3,302,151,0,2300, - 2302,5,538,0,0,2301,2298,1,0,0,0,2301,2299,1,0,0,0,2301,2300,1,0, - 0,0,2302,367,1,0,0,0,2303,2308,5,539,0,0,2304,2308,5,540,0,0,2305, - 2308,3,388,194,0,2306,2308,5,538,0,0,2307,2303,1,0,0,0,2307,2304, - 1,0,0,0,2307,2305,1,0,0,0,2307,2306,1,0,0,0,2308,369,1,0,0,0,2309, - 2316,5,10,0,0,2310,2311,5,512,0,0,2311,2316,5,512,0,0,2312,2316, - 5,258,0,0,2313,2314,5,511,0,0,2314,2316,5,511,0,0,2315,2309,1,0, - 0,0,2315,2310,1,0,0,0,2315,2312,1,0,0,0,2315,2313,1,0,0,0,2316,371, - 1,0,0,0,2317,2332,5,506,0,0,2318,2332,5,507,0,0,2319,2332,5,508, - 0,0,2320,2321,5,508,0,0,2321,2332,5,506,0,0,2322,2323,5,507,0,0, - 2323,2332,5,506,0,0,2324,2325,5,508,0,0,2325,2332,5,507,0,0,2326, - 2327,5,509,0,0,2327,2332,5,506,0,0,2328,2329,5,508,0,0,2329,2330, - 5,506,0,0,2330,2332,5,507,0,0,2331,2317,1,0,0,0,2331,2318,1,0,0, - 0,2331,2319,1,0,0,0,2331,2320,1,0,0,0,2331,2322,1,0,0,0,2331,2324, - 1,0,0,0,2331,2326,1,0,0,0,2331,2328,1,0,0,0,2332,373,1,0,0,0,2333, - 2334,5,508,0,0,2334,2341,5,508,0,0,2335,2336,5,507,0,0,2336,2341, - 5,507,0,0,2337,2341,5,512,0,0,2338,2341,5,513,0,0,2339,2341,5,511, - 0,0,2340,2333,1,0,0,0,2340,2335,1,0,0,0,2340,2337,1,0,0,0,2340,2338, - 1,0,0,0,2340,2339,1,0,0,0,2341,375,1,0,0,0,2342,2343,7,36,0,0,2343, - 377,1,0,0,0,2344,2345,7,37,0,0,2345,379,1,0,0,0,2346,2361,3,308, - 154,0,2347,2361,3,382,191,0,2348,2361,3,384,192,0,2349,2351,5,530, - 0,0,2350,2349,1,0,0,0,2350,2351,1,0,0,0,2351,2352,1,0,0,0,2352,2361, - 3,386,193,0,2353,2361,3,388,194,0,2354,2361,5,540,0,0,2355,2361, - 5,541,0,0,2356,2358,5,242,0,0,2357,2356,1,0,0,0,2357,2358,1,0,0, - 0,2358,2359,1,0,0,0,2359,2361,5,245,0,0,2360,2346,1,0,0,0,2360,2347, - 1,0,0,0,2360,2348,1,0,0,0,2360,2350,1,0,0,0,2360,2353,1,0,0,0,2360, - 2354,1,0,0,0,2360,2355,1,0,0,0,2360,2357,1,0,0,0,2361,381,1,0,0, - 0,2362,2363,3,392,196,0,2363,2364,3,384,192,0,2364,383,1,0,0,0,2365, - 2366,5,538,0,0,2366,385,1,0,0,0,2367,2368,5,539,0,0,2368,387,1,0, - 0,0,2369,2370,7,38,0,0,2370,389,1,0,0,0,2371,2372,7,39,0,0,2372, - 391,1,0,0,0,2373,2374,7,40,0,0,2374,393,1,0,0,0,2375,2376,7,41,0, - 0,2376,395,1,0,0,0,2377,2378,7,42,0,0,2378,397,1,0,0,0,2379,2380, - 7,43,0,0,2380,399,1,0,0,0,2381,2382,7,44,0,0,2382,401,1,0,0,0,2383, - 2384,7,45,0,0,2384,403,1,0,0,0,2385,2386,7,46,0,0,2386,405,1,0,0, - 0,283,409,416,419,433,451,455,464,469,476,487,496,508,511,518,521, - 529,533,538,541,548,556,560,572,580,584,616,619,624,628,632,636, - 645,650,654,658,663,666,670,675,681,686,691,695,699,703,713,721, - 725,729,733,737,741,745,749,753,755,765,773,797,811,816,820,826, - 829,832,839,842,851,863,887,899,904,908,916,920,926,936,941,947, - 951,955,959,968,972,979,982,992,1000,1008,1012,1027,1046,1057,1061, - 1068,1073,1079,1083,1090,1094,1098,1102,1110,1114,1119,1125,1131, - 1134,1138,1149,1158,1165,1176,1188,1203,1206,1210,1213,1215,1220, - 1224,1227,1231,1240,1249,1259,1264,1275,1278,1281,1284,1287,1293, - 1297,1306,1313,1316,1320,1325,1328,1330,1339,1346,1349,1353,1356, - 1358,1365,1370,1386,1397,1402,1410,1413,1416,1421,1423,1425,1430, - 1433,1437,1441,1445,1454,1465,1492,1514,1527,1539,1552,1564,1576, - 1582,1609,1617,1621,1624,1627,1634,1637,1640,1643,1646,1649,1654, - 1657,1666,1671,1675,1680,1686,1691,1695,1714,1722,1730,1734,1738, - 1748,1774,1782,1794,1816,1818,1829,1832,1834,1838,1842,1849,1858, - 1864,1877,1884,1889,1895,1902,1909,1911,1914,1926,1931,1934,1940, - 1942,1948,1969,1971,1979,1986,1989,1993,2000,2004,2013,2017,2033, - 2042,2070,2079,2088,2094,2098,2104,2112,2117,2121,2128,2133,2141, - 2145,2148,2152,2161,2164,2175,2181,2199,2204,2209,2216,2218,2223, - 2230,2232,2237,2244,2246,2251,2258,2260,2267,2286,2293,2296,2301, - 2307,2315,2331,2340,2350,2357,2360 + 1,145,1,145,1,145,1,145,5,145,1993,8,145,10,145,12,145,1996,9,145, + 1,146,1,146,1,146,1,146,1,146,3,146,2003,8,146,1,146,1,146,1,146, + 5,146,2008,8,146,10,146,12,146,2011,9,146,3,146,2013,8,146,1,146, + 1,146,3,146,2017,8,146,1,147,1,147,1,147,4,147,2022,8,147,11,147, + 12,147,2023,1,147,1,147,3,147,2028,8,147,1,147,1,147,1,147,1,147, + 1,147,4,147,2035,8,147,11,147,12,147,2036,1,147,1,147,3,147,2041, + 8,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147, + 1,147,1,147,1,147,1,147,3,147,2057,8,147,1,147,1,147,1,147,1,147, + 1,147,1,147,1,147,3,147,2066,8,147,1,147,1,147,1,147,1,147,1,147, + 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147, + 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,3,147, + 2094,8,147,1,147,1,147,1,147,1,147,1,147,5,147,2101,8,147,10,147, + 12,147,2104,9,147,1,148,1,148,1,149,1,149,1,149,1,149,3,149,2112, + 8,149,1,150,1,150,1,150,1,150,3,150,2118,8,150,1,151,1,151,3,151, + 2122,8,151,1,152,1,152,1,152,1,152,3,152,2128,8,152,1,153,1,153, + 1,154,1,154,1,155,1,155,3,155,2136,8,155,1,156,1,156,1,156,3,156, + 2141,8,156,1,157,1,157,3,157,2145,8,157,1,158,1,158,1,158,4,158, + 2150,8,158,11,158,12,158,2151,1,159,1,159,1,159,3,159,2157,8,159, + 1,160,1,160,1,160,1,160,1,160,1,161,3,161,2165,8,161,1,161,1,161, + 3,161,2169,8,161,1,162,3,162,2172,8,162,1,162,1,162,3,162,2176,8, + 162,1,163,1,163,1,163,1,164,1,164,4,164,2183,8,164,11,164,12,164, + 2184,1,164,3,164,2188,8,164,1,165,1,165,1,165,1,165,1,166,1,166, + 1,166,5,166,2197,8,166,10,166,12,166,2200,9,166,1,167,1,167,1,167, + 3,167,2205,8,167,1,168,1,168,1,169,1,169,1,170,1,170,1,170,1,170, + 1,170,1,171,1,171,1,172,1,172,1,173,1,173,1,173,3,173,2223,8,173, + 1,174,1,174,1,174,3,174,2228,8,174,1,175,1,175,1,175,3,175,2233, + 8,175,1,175,1,175,1,175,1,175,1,175,3,175,2240,8,175,3,175,2242, + 8,175,1,176,1,176,1,176,3,176,2247,8,176,1,176,1,176,1,176,1,176, + 1,176,3,176,2254,8,176,3,176,2256,8,176,1,177,1,177,1,177,3,177, + 2261,8,177,1,177,1,177,1,177,1,177,1,177,3,177,2268,8,177,3,177, + 2270,8,177,1,178,1,178,1,178,3,178,2275,8,178,1,178,1,178,1,178, + 1,178,1,178,3,178,2282,8,178,3,178,2284,8,178,1,179,1,179,1,179, + 5,179,2289,8,179,10,179,12,179,2292,9,179,1,180,1,180,1,180,5,180, + 2297,8,180,10,180,12,180,2300,9,180,1,180,1,180,1,180,1,180,1,180, + 3,180,2307,8,180,1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,183, + 1,183,1,183,1,184,1,184,1,184,1,184,5,184,2323,8,184,10,184,12,184, + 2326,9,184,1,184,1,184,1,185,1,185,3,185,2332,8,185,1,185,3,185, + 2335,8,185,1,186,1,186,1,186,3,186,2340,8,186,1,187,1,187,1,187, + 1,187,3,187,2346,8,187,1,188,1,188,1,188,1,188,1,188,1,188,3,188, + 2354,8,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, + 1,189,1,189,1,189,1,189,1,189,3,189,2370,8,189,1,190,1,190,1,190, + 1,190,1,190,1,190,1,190,3,190,2379,8,190,1,191,1,191,1,192,1,192, + 1,193,1,193,1,193,1,193,3,193,2389,8,193,1,193,1,193,1,193,1,193, + 1,193,3,193,2396,8,193,1,193,3,193,2399,8,193,1,194,1,194,1,194, + 1,195,1,195,1,196,1,196,1,197,1,197,1,198,1,198,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,205,0,5,164,198,284,290,294,206,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,120,122,124,126,128,130,132,134,136,138, + 140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170, + 172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202, + 204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234, + 236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266, + 268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298, + 300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330, + 332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362, + 364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394, + 396,398,400,402,404,406,408,410,0,47,2,0,109,109,451,451,3,0,45, + 45,128,128,189,189,4,0,42,42,90,90,423,423,465,465,2,0,442,442,448, + 448,2,0,151,151,170,170,2,0,438,438,490,490,2,0,483,486,488,488, + 3,0,32,32,91,91,245,245,11,0,28,29,35,35,46,46,92,92,178,179,345, + 345,361,361,379,379,382,382,388,388,417,418,2,0,434,434,436,436, + 4,0,101,102,115,115,144,144,247,247,2,0,13,13,232,232,2,0,456,456, + 463,463,3,0,5,5,271,271,445,445,3,0,267,267,456,456,463,463,3,0, + 426,426,459,459,478,478,3,0,331,331,466,466,482,482,2,0,441,441, + 491,491,2,0,183,183,266,266,3,0,130,130,180,180,403,403,4,0,152, + 152,174,174,202,202,318,318,3,0,446,446,460,460,500,500,4,0,251, + 251,447,447,495,497,499,499,2,0,74,74,321,321,3,0,460,460,493,493, + 500,500,2,0,440,440,451,451,2,0,458,458,468,468,4,0,140,140,245, + 245,398,398,405,405,2,0,19,19,370,370,2,0,5,5,11,11,2,0,510,510, + 530,531,4,0,453,453,528,528,532,532,535,535,2,0,530,531,533,533, + 1,0,530,531,1,0,539,540,2,0,539,539,542,542,4,0,453,453,528,528, + 530,532,534,535,3,0,242,242,509,510,530,531,2,0,140,140,398,398, + 2,0,5,5,113,113,10,0,97,97,165,165,223,223,230,230,335,335,437,437, + 471,471,473,473,489,489,503,503,15,0,97,97,165,165,223,223,230,230, + 335,335,428,428,437,437,443,443,449,450,455,455,461,461,471,476, + 489,489,492,492,503,504,11,0,5,5,13,13,33,33,78,78,84,85,113,113, + 201,201,208,209,390,390,414,414,528,528,3,0,78,78,84,85,208,209, + 2,0,91,91,379,380,53,0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56, + 56,69,69,75,75,98,99,107,107,119,119,134,134,139,139,143,143,145, + 145,160,160,165,165,167,167,187,188,190,195,198,198,200,200,202, + 202,206,206,210,210,215,215,221,221,223,224,230,230,244,244,246, + 246,265,265,277,277,282,282,284,284,294,294,318,318,322,324,335, + 335,358,359,365,365,368,368,381,381,396,396,399,400,409,409,420, + 421,437,437,470,470,489,489,503,503,1,0,438,505,2638,0,415,1,0,0, + 0,2,425,1,0,0,0,4,439,1,0,0,0,6,441,1,0,0,0,8,457,1,0,0,0,10,461, + 1,0,0,0,12,463,1,0,0,0,14,466,1,0,0,0,16,477,1,0,0,0,18,485,1,0, + 0,0,20,493,1,0,0,0,22,495,1,0,0,0,24,547,1,0,0,0,26,549,1,0,0,0, + 28,556,1,0,0,0,30,560,1,0,0,0,32,564,1,0,0,0,34,568,1,0,0,0,36,622, + 1,0,0,0,38,628,1,0,0,0,40,634,1,0,0,0,42,636,1,0,0,0,44,678,1,0, + 0,0,46,692,1,0,0,0,48,694,1,0,0,0,50,705,1,0,0,0,52,707,1,0,0,0, + 54,712,1,0,0,0,56,714,1,0,0,0,58,719,1,0,0,0,60,721,1,0,0,0,62,769, + 1,0,0,0,64,771,1,0,0,0,66,775,1,0,0,0,68,783,1,0,0,0,70,791,1,0, + 0,0,72,795,1,0,0,0,74,830,1,0,0,0,76,846,1,0,0,0,78,848,1,0,0,0, + 80,858,1,0,0,0,82,860,1,0,0,0,84,867,1,0,0,0,86,869,1,0,0,0,88,877, + 1,0,0,0,90,885,1,0,0,0,92,887,1,0,0,0,94,891,1,0,0,0,96,895,1,0, + 0,0,98,918,1,0,0,0,100,922,1,0,0,0,102,924,1,0,0,0,104,940,1,0,0, + 0,106,942,1,0,0,0,108,947,1,0,0,0,110,959,1,0,0,0,112,978,1,0,0, + 0,114,998,1,0,0,0,116,1009,1,0,0,0,118,1011,1,0,0,0,120,1024,1,0, + 0,0,122,1031,1,0,0,0,124,1034,1,0,0,0,126,1043,1,0,0,0,128,1047, + 1,0,0,0,130,1051,1,0,0,0,132,1054,1,0,0,0,134,1062,1,0,0,0,136,1067, + 1,0,0,0,138,1084,1,0,0,0,140,1091,1,0,0,0,142,1101,1,0,0,0,144,1110, + 1,0,0,0,146,1120,1,0,0,0,148,1139,1,0,0,0,150,1141,1,0,0,0,152,1154, + 1,0,0,0,154,1157,1,0,0,0,156,1166,1,0,0,0,158,1179,1,0,0,0,160,1181, + 1,0,0,0,162,1194,1,0,0,0,164,1229,1,0,0,0,166,1248,1,0,0,0,168,1257, + 1,0,0,0,170,1266,1,0,0,0,172,1285,1,0,0,0,174,1307,1,0,0,0,176,1309, + 1,0,0,0,178,1315,1,0,0,0,180,1344,1,0,0,0,182,1346,1,0,0,0,184,1348, + 1,0,0,0,186,1350,1,0,0,0,188,1353,1,0,0,0,190,1372,1,0,0,0,192,1384, + 1,0,0,0,194,1400,1,0,0,0,196,1402,1,0,0,0,198,1416,1,0,0,0,200,1442, + 1,0,0,0,202,1459,1,0,0,0,204,1461,1,0,0,0,206,1479,1,0,0,0,208,1481, + 1,0,0,0,210,1487,1,0,0,0,212,1489,1,0,0,0,214,1494,1,0,0,0,216,1499, + 1,0,0,0,218,1511,1,0,0,0,220,1528,1,0,0,0,222,1530,1,0,0,0,224,1532, + 1,0,0,0,226,1548,1,0,0,0,228,1550,1,0,0,0,230,1555,1,0,0,0,232,1605, + 1,0,0,0,234,1607,1,0,0,0,236,1610,1,0,0,0,238,1612,1,0,0,0,240,1619, + 1,0,0,0,242,1621,1,0,0,0,244,1623,1,0,0,0,246,1626,1,0,0,0,248,1635, + 1,0,0,0,250,1640,1,0,0,0,252,1654,1,0,0,0,254,1682,1,0,0,0,256,1692, + 1,0,0,0,258,1700,1,0,0,0,260,1705,1,0,0,0,262,1737,1,0,0,0,264,1739, + 1,0,0,0,266,1748,1,0,0,0,268,1759,1,0,0,0,270,1771,1,0,0,0,272,1797, + 1,0,0,0,274,1799,1,0,0,0,276,1817,1,0,0,0,278,1819,1,0,0,0,280,1824, + 1,0,0,0,282,1827,1,0,0,0,284,1841,1,0,0,0,286,1934,1,0,0,0,288,1965, + 1,0,0,0,290,1971,1,0,0,0,292,2016,1,0,0,0,294,2093,1,0,0,0,296,2105, + 1,0,0,0,298,2111,1,0,0,0,300,2117,1,0,0,0,302,2121,1,0,0,0,304,2127, + 1,0,0,0,306,2129,1,0,0,0,308,2131,1,0,0,0,310,2135,1,0,0,0,312,2137, + 1,0,0,0,314,2142,1,0,0,0,316,2149,1,0,0,0,318,2153,1,0,0,0,320,2158, + 1,0,0,0,322,2168,1,0,0,0,324,2171,1,0,0,0,326,2177,1,0,0,0,328,2187, + 1,0,0,0,330,2189,1,0,0,0,332,2193,1,0,0,0,334,2204,1,0,0,0,336,2206, + 1,0,0,0,338,2208,1,0,0,0,340,2210,1,0,0,0,342,2215,1,0,0,0,344,2217, + 1,0,0,0,346,2219,1,0,0,0,348,2224,1,0,0,0,350,2241,1,0,0,0,352,2255, + 1,0,0,0,354,2269,1,0,0,0,356,2283,1,0,0,0,358,2285,1,0,0,0,360,2306, + 1,0,0,0,362,2308,1,0,0,0,364,2311,1,0,0,0,366,2315,1,0,0,0,368,2318, + 1,0,0,0,370,2329,1,0,0,0,372,2339,1,0,0,0,374,2345,1,0,0,0,376,2353, + 1,0,0,0,378,2369,1,0,0,0,380,2378,1,0,0,0,382,2380,1,0,0,0,384,2382, + 1,0,0,0,386,2398,1,0,0,0,388,2400,1,0,0,0,390,2403,1,0,0,0,392,2405, + 1,0,0,0,394,2407,1,0,0,0,396,2409,1,0,0,0,398,2411,1,0,0,0,400,2413, + 1,0,0,0,402,2415,1,0,0,0,404,2417,1,0,0,0,406,2419,1,0,0,0,408,2421, + 1,0,0,0,410,2423,1,0,0,0,412,414,3,2,1,0,413,412,1,0,0,0,414,417, + 1,0,0,0,415,413,1,0,0,0,415,416,1,0,0,0,416,418,1,0,0,0,417,415, + 1,0,0,0,418,419,5,0,0,1,419,1,1,0,0,0,420,422,3,4,2,0,421,423,5, + 522,0,0,422,421,1,0,0,0,422,423,1,0,0,0,423,426,1,0,0,0,424,426, + 3,6,3,0,425,420,1,0,0,0,425,424,1,0,0,0,426,3,1,0,0,0,427,440,3, + 8,4,0,428,440,3,10,5,0,429,440,3,12,6,0,430,440,3,14,7,0,431,440, + 3,20,10,0,432,440,3,24,12,0,433,440,3,26,13,0,434,440,3,28,14,0, + 435,440,3,30,15,0,436,440,3,32,16,0,437,440,3,34,17,0,438,440,3, + 36,18,0,439,427,1,0,0,0,439,428,1,0,0,0,439,429,1,0,0,0,439,430, + 1,0,0,0,439,431,1,0,0,0,439,432,1,0,0,0,439,433,1,0,0,0,439,434, + 1,0,0,0,439,435,1,0,0,0,439,436,1,0,0,0,439,437,1,0,0,0,439,438, + 1,0,0,0,440,5,1,0,0,0,441,442,5,522,0,0,442,7,1,0,0,0,443,458,3, + 40,20,0,444,458,3,108,54,0,445,458,3,110,55,0,446,458,3,112,56,0, + 447,458,3,106,53,0,448,458,3,118,59,0,449,458,3,132,66,0,450,458, + 3,134,67,0,451,458,3,136,68,0,452,458,3,138,69,0,453,458,3,140,70, + 0,454,458,3,142,71,0,455,458,3,144,72,0,456,458,3,146,73,0,457,443, + 1,0,0,0,457,444,1,0,0,0,457,445,1,0,0,0,457,446,1,0,0,0,457,447, + 1,0,0,0,457,448,1,0,0,0,457,449,1,0,0,0,457,450,1,0,0,0,457,451, + 1,0,0,0,457,452,1,0,0,0,457,453,1,0,0,0,457,454,1,0,0,0,457,455, + 1,0,0,0,457,456,1,0,0,0,458,9,1,0,0,0,459,462,3,164,82,0,460,462, + 3,148,74,0,461,459,1,0,0,0,461,460,1,0,0,0,462,11,1,0,0,0,463,464, + 7,0,0,0,464,465,3,352,176,0,465,13,1,0,0,0,466,470,5,135,0,0,467, + 471,3,16,8,0,468,469,5,480,0,0,469,471,5,146,0,0,470,467,1,0,0,0, + 470,468,1,0,0,0,470,471,1,0,0,0,471,475,1,0,0,0,472,476,3,10,5,0, + 473,476,3,150,75,0,474,476,3,162,81,0,475,472,1,0,0,0,475,473,1, + 0,0,0,475,474,1,0,0,0,476,15,1,0,0,0,477,482,3,18,9,0,478,479,5, + 521,0,0,479,481,3,18,9,0,480,478,1,0,0,0,481,484,1,0,0,0,482,480, + 1,0,0,0,482,483,1,0,0,0,483,17,1,0,0,0,484,482,1,0,0,0,485,486,7, + 1,0,0,486,19,1,0,0,0,487,488,5,411,0,0,488,489,5,442,0,0,489,494, + 3,342,171,0,490,491,5,411,0,0,491,494,3,346,173,0,492,494,3,22,11, + 0,493,487,1,0,0,0,493,490,1,0,0,0,493,492,1,0,0,0,494,21,1,0,0,0, + 495,496,5,411,0,0,496,497,5,228,0,0,497,502,3,358,179,0,498,499, + 5,521,0,0,499,501,3,358,179,0,500,498,1,0,0,0,501,504,1,0,0,0,502, + 500,1,0,0,0,502,503,1,0,0,0,503,23,1,0,0,0,504,502,1,0,0,0,505,506, + 5,342,0,0,506,548,7,2,0,0,507,508,5,342,0,0,508,509,5,76,0,0,509, + 548,7,3,0,0,510,511,5,342,0,0,511,514,5,375,0,0,512,513,7,4,0,0, + 513,515,3,346,173,0,514,512,1,0,0,0,514,515,1,0,0,0,515,517,1,0, + 0,0,516,518,3,288,144,0,517,516,1,0,0,0,517,518,1,0,0,0,518,548, + 1,0,0,0,519,520,5,342,0,0,520,521,5,58,0,0,521,524,7,4,0,0,522,525, + 3,354,177,0,523,525,3,352,176,0,524,522,1,0,0,0,524,523,1,0,0,0, + 525,527,1,0,0,0,526,528,3,288,144,0,527,526,1,0,0,0,527,528,1,0, + 0,0,528,548,1,0,0,0,529,530,5,342,0,0,530,535,5,72,0,0,531,532,5, + 374,0,0,532,536,3,352,176,0,533,534,5,502,0,0,534,536,3,354,177, + 0,535,531,1,0,0,0,535,533,1,0,0,0,536,548,1,0,0,0,537,539,5,342, + 0,0,538,540,5,412,0,0,539,538,1,0,0,0,539,540,1,0,0,0,540,541,1, + 0,0,0,541,548,5,154,0,0,542,544,5,342,0,0,543,545,5,152,0,0,544, + 543,1,0,0,0,544,545,1,0,0,0,545,546,1,0,0,0,546,548,5,228,0,0,547, + 505,1,0,0,0,547,507,1,0,0,0,547,510,1,0,0,0,547,519,1,0,0,0,547, + 529,1,0,0,0,547,537,1,0,0,0,547,542,1,0,0,0,548,25,1,0,0,0,549,550, + 5,469,0,0,550,551,5,227,0,0,551,554,3,358,179,0,552,553,5,434,0, + 0,553,555,3,368,184,0,554,552,1,0,0,0,554,555,1,0,0,0,555,27,1,0, + 0,0,556,557,5,501,0,0,557,558,5,227,0,0,558,559,3,358,179,0,559, + 29,1,0,0,0,560,562,5,341,0,0,561,563,3,370,185,0,562,561,1,0,0,0, + 562,563,1,0,0,0,563,31,1,0,0,0,564,566,5,313,0,0,565,567,3,372,186, + 0,566,565,1,0,0,0,566,567,1,0,0,0,567,33,1,0,0,0,568,569,7,5,0,0, + 569,570,5,464,0,0,570,571,3,116,58,0,571,35,1,0,0,0,572,573,5,438, + 0,0,573,574,5,464,0,0,574,575,5,434,0,0,575,578,3,38,19,0,576,577, + 5,17,0,0,577,579,3,358,179,0,578,576,1,0,0,0,578,579,1,0,0,0,579, + 623,1,0,0,0,580,581,5,438,0,0,581,582,5,457,0,0,582,583,5,434,0, + 0,583,586,3,38,19,0,584,585,5,17,0,0,585,587,3,358,179,0,586,584, + 1,0,0,0,586,587,1,0,0,0,587,590,1,0,0,0,588,589,5,312,0,0,589,591, + 3,358,179,0,590,588,1,0,0,0,590,591,1,0,0,0,591,623,1,0,0,0,592, + 593,5,438,0,0,593,594,7,6,0,0,594,595,5,434,0,0,595,596,3,38,19, + 0,596,597,5,312,0,0,597,598,3,358,179,0,598,623,1,0,0,0,599,600, + 5,438,0,0,600,601,5,487,0,0,601,623,3,38,19,0,602,603,5,438,0,0, + 603,604,5,454,0,0,604,605,5,457,0,0,605,606,5,434,0,0,606,607,3, + 38,19,0,607,608,5,312,0,0,608,609,3,358,179,0,609,610,5,467,0,0, + 610,611,3,358,179,0,611,623,1,0,0,0,612,613,5,438,0,0,613,614,5, + 444,0,0,614,615,5,457,0,0,615,616,5,434,0,0,616,617,3,38,19,0,617, + 618,5,146,0,0,618,619,3,358,179,0,619,620,5,17,0,0,620,621,3,358, + 179,0,621,623,1,0,0,0,622,572,1,0,0,0,622,580,1,0,0,0,622,592,1, + 0,0,0,622,599,1,0,0,0,622,602,1,0,0,0,622,612,1,0,0,0,623,37,1,0, + 0,0,624,626,5,535,0,0,625,624,1,0,0,0,625,626,1,0,0,0,626,627,1, + 0,0,0,627,629,3,358,179,0,628,625,1,0,0,0,629,630,1,0,0,0,630,628, + 1,0,0,0,630,631,1,0,0,0,631,39,1,0,0,0,632,635,3,42,21,0,633,635, + 3,44,22,0,634,632,1,0,0,0,634,633,1,0,0,0,635,41,1,0,0,0,636,638, + 5,72,0,0,637,639,5,498,0,0,638,637,1,0,0,0,638,639,1,0,0,0,639,640, + 1,0,0,0,640,642,5,374,0,0,641,643,3,364,182,0,642,641,1,0,0,0,642, + 643,1,0,0,0,643,644,1,0,0,0,644,645,3,350,175,0,645,646,5,517,0, + 0,646,651,3,46,23,0,647,648,5,521,0,0,648,650,3,46,23,0,649,647, + 1,0,0,0,650,653,1,0,0,0,651,649,1,0,0,0,651,652,1,0,0,0,652,656, + 1,0,0,0,653,651,1,0,0,0,654,655,5,521,0,0,655,657,3,86,43,0,656, + 654,1,0,0,0,656,657,1,0,0,0,657,660,1,0,0,0,658,659,5,521,0,0,659, + 661,3,88,44,0,660,658,1,0,0,0,660,661,1,0,0,0,661,664,1,0,0,0,662, + 663,5,521,0,0,663,665,3,92,46,0,664,662,1,0,0,0,664,665,1,0,0,0, + 665,666,1,0,0,0,666,669,5,518,0,0,667,668,5,59,0,0,668,670,5,538, + 0,0,669,667,1,0,0,0,669,670,1,0,0,0,670,672,1,0,0,0,671,673,3,94, + 47,0,672,671,1,0,0,0,672,673,1,0,0,0,673,674,1,0,0,0,674,676,3,362, + 181,0,675,677,3,102,51,0,676,675,1,0,0,0,676,677,1,0,0,0,677,43, + 1,0,0,0,678,679,5,72,0,0,679,681,5,374,0,0,680,682,3,364,182,0,681, + 680,1,0,0,0,681,682,1,0,0,0,682,683,1,0,0,0,683,684,3,350,175,0, + 684,687,3,362,181,0,685,686,5,17,0,0,686,688,3,164,82,0,687,685, + 1,0,0,0,687,688,1,0,0,0,688,45,1,0,0,0,689,693,3,48,24,0,690,693, + 3,78,39,0,691,693,3,82,41,0,692,689,1,0,0,0,692,690,1,0,0,0,692, + 691,1,0,0,0,693,47,1,0,0,0,694,695,3,50,25,0,695,697,3,62,31,0,696, + 698,3,76,38,0,697,696,1,0,0,0,697,698,1,0,0,0,698,701,1,0,0,0,699, + 700,5,59,0,0,700,702,5,538,0,0,701,699,1,0,0,0,701,702,1,0,0,0,702, + 49,1,0,0,0,703,706,3,358,179,0,704,706,3,282,141,0,705,703,1,0,0, + 0,705,704,1,0,0,0,706,51,1,0,0,0,707,708,1,0,0,0,708,53,1,0,0,0, + 709,713,3,360,180,0,710,711,4,27,0,0,711,713,3,52,26,0,712,709,1, + 0,0,0,712,710,1,0,0,0,713,55,1,0,0,0,714,715,3,358,179,0,715,57, + 1,0,0,0,716,720,3,360,180,0,717,718,4,29,1,0,718,720,3,52,26,0,719, + 716,1,0,0,0,719,717,1,0,0,0,720,59,1,0,0,0,721,722,5,517,0,0,722, + 727,3,54,27,0,723,724,5,521,0,0,724,726,3,54,27,0,725,723,1,0,0, + 0,726,729,1,0,0,0,727,725,1,0,0,0,727,728,1,0,0,0,728,730,1,0,0, + 0,729,727,1,0,0,0,730,731,5,518,0,0,731,61,1,0,0,0,732,770,7,7,0, + 0,733,735,7,8,0,0,734,736,3,64,32,0,735,734,1,0,0,0,735,736,1,0, + 0,0,736,770,1,0,0,0,737,739,5,380,0,0,738,740,3,64,32,0,739,738, + 1,0,0,0,739,740,1,0,0,0,740,747,1,0,0,0,741,743,7,9,0,0,742,744, + 5,207,0,0,743,742,1,0,0,0,743,744,1,0,0,0,744,745,1,0,0,0,745,746, + 5,379,0,0,746,748,5,505,0,0,747,741,1,0,0,0,747,748,1,0,0,0,748, + 770,1,0,0,0,749,751,7,10,0,0,750,752,3,66,33,0,751,750,1,0,0,0,751, + 752,1,0,0,0,752,770,1,0,0,0,753,755,7,11,0,0,754,756,3,70,35,0,755, + 754,1,0,0,0,755,756,1,0,0,0,756,770,1,0,0,0,757,759,5,470,0,0,758, + 760,3,72,36,0,759,758,1,0,0,0,759,760,1,0,0,0,760,770,1,0,0,0,761, + 763,5,322,0,0,762,764,3,74,37,0,763,762,1,0,0,0,763,764,1,0,0,0, + 764,770,1,0,0,0,765,767,5,295,0,0,766,768,3,68,34,0,767,766,1,0, + 0,0,767,768,1,0,0,0,768,770,1,0,0,0,769,732,1,0,0,0,769,733,1,0, + 0,0,769,737,1,0,0,0,769,749,1,0,0,0,769,753,1,0,0,0,769,757,1,0, + 0,0,769,761,1,0,0,0,769,765,1,0,0,0,770,63,1,0,0,0,771,772,5,517, + 0,0,772,773,3,392,196,0,773,774,5,518,0,0,774,65,1,0,0,0,775,776, + 5,517,0,0,776,779,3,392,196,0,777,778,5,521,0,0,778,780,3,392,196, + 0,779,777,1,0,0,0,779,780,1,0,0,0,780,781,1,0,0,0,781,782,5,518, + 0,0,782,67,1,0,0,0,783,784,5,517,0,0,784,787,3,390,195,0,785,786, + 5,521,0,0,786,788,3,390,195,0,787,785,1,0,0,0,787,788,1,0,0,0,788, + 789,1,0,0,0,789,790,5,518,0,0,790,69,1,0,0,0,791,792,5,508,0,0,792, + 793,3,62,31,0,793,794,5,507,0,0,794,71,1,0,0,0,795,796,5,508,0,0, + 796,797,3,62,31,0,797,798,5,521,0,0,798,799,3,62,31,0,799,800,1, + 0,0,0,800,801,5,507,0,0,801,73,1,0,0,0,802,803,5,508,0,0,803,804, + 3,54,27,0,804,811,3,62,31,0,805,806,5,521,0,0,806,807,3,54,27,0, + 807,808,3,62,31,0,808,810,1,0,0,0,809,805,1,0,0,0,810,813,1,0,0, + 0,811,809,1,0,0,0,811,812,1,0,0,0,812,814,1,0,0,0,813,811,1,0,0, + 0,814,815,5,507,0,0,815,831,1,0,0,0,816,817,5,517,0,0,817,818,3, + 54,27,0,818,825,3,62,31,0,819,820,5,521,0,0,820,821,3,54,27,0,821, + 822,3,62,31,0,822,824,1,0,0,0,823,819,1,0,0,0,824,827,1,0,0,0,825, + 823,1,0,0,0,825,826,1,0,0,0,826,828,1,0,0,0,827,825,1,0,0,0,828, + 829,5,518,0,0,829,831,1,0,0,0,830,802,1,0,0,0,830,816,1,0,0,0,831, + 75,1,0,0,0,832,833,5,64,0,0,833,835,3,90,45,0,834,832,1,0,0,0,834, + 835,1,0,0,0,835,836,1,0,0,0,836,837,5,289,0,0,837,840,5,467,0,0, + 838,839,5,242,0,0,839,841,5,125,0,0,840,838,1,0,0,0,840,841,1,0, + 0,0,841,847,1,0,0,0,842,844,5,242,0,0,843,842,1,0,0,0,843,844,1, + 0,0,0,844,845,1,0,0,0,845,847,5,245,0,0,846,834,1,0,0,0,846,843, + 1,0,0,0,847,77,1,0,0,0,848,849,3,50,25,0,849,850,3,62,31,0,850,853, + 5,219,0,0,851,852,5,151,0,0,852,854,3,80,40,0,853,851,1,0,0,0,853, + 854,1,0,0,0,854,856,1,0,0,0,855,857,5,424,0,0,856,855,1,0,0,0,856, + 857,1,0,0,0,857,79,1,0,0,0,858,859,5,538,0,0,859,81,1,0,0,0,860, + 861,3,50,25,0,861,862,5,17,0,0,862,865,3,84,42,0,863,864,5,59,0, + 0,864,866,5,538,0,0,865,863,1,0,0,0,865,866,1,0,0,0,866,83,1,0,0, + 0,867,868,3,282,141,0,868,85,1,0,0,0,869,870,5,425,0,0,870,871,5, + 146,0,0,871,872,3,54,27,0,872,873,5,17,0,0,873,874,3,282,141,0,874, + 87,1,0,0,0,875,876,5,64,0,0,876,878,3,90,45,0,877,875,1,0,0,0,877, + 878,1,0,0,0,878,879,1,0,0,0,879,880,5,289,0,0,880,881,5,467,0,0, + 881,882,3,60,30,0,882,883,5,242,0,0,883,884,5,125,0,0,884,89,1,0, + 0,0,885,886,3,334,167,0,886,91,1,0,0,0,887,888,5,278,0,0,888,889, + 5,146,0,0,889,890,5,372,0,0,890,93,1,0,0,0,891,892,5,270,0,0,892, + 893,5,34,0,0,893,894,3,96,48,0,894,95,1,0,0,0,895,896,5,517,0,0, + 896,901,3,98,49,0,897,898,5,521,0,0,898,900,3,98,49,0,899,897,1, + 0,0,0,900,903,1,0,0,0,901,899,1,0,0,0,901,902,1,0,0,0,902,904,1, + 0,0,0,903,901,1,0,0,0,904,905,5,518,0,0,905,97,1,0,0,0,906,919,3, + 54,27,0,907,908,5,517,0,0,908,913,3,100,50,0,909,910,5,521,0,0,910, + 912,3,100,50,0,911,909,1,0,0,0,912,915,1,0,0,0,913,911,1,0,0,0,913, + 914,1,0,0,0,914,916,1,0,0,0,915,913,1,0,0,0,916,917,5,518,0,0,917, + 919,1,0,0,0,918,906,1,0,0,0,918,907,1,0,0,0,919,99,1,0,0,0,920,923, + 3,310,155,0,921,923,3,386,193,0,922,920,1,0,0,0,922,921,1,0,0,0, + 923,101,1,0,0,0,924,925,5,203,0,0,925,934,3,352,176,0,926,930,5, + 517,0,0,927,929,3,104,52,0,928,927,1,0,0,0,929,932,1,0,0,0,930,928, + 1,0,0,0,930,931,1,0,0,0,931,933,1,0,0,0,932,930,1,0,0,0,933,935, + 5,518,0,0,934,926,1,0,0,0,934,935,1,0,0,0,935,103,1,0,0,0,936,937, + 7,12,0,0,937,941,7,13,0,0,938,939,7,14,0,0,939,941,7,15,0,0,940, + 936,1,0,0,0,940,938,1,0,0,0,941,105,1,0,0,0,942,943,5,72,0,0,943, + 944,5,442,0,0,944,945,3,344,172,0,945,946,3,362,181,0,946,107,1, + 0,0,0,947,948,5,72,0,0,948,950,5,448,0,0,949,951,3,364,182,0,950, + 949,1,0,0,0,950,951,1,0,0,0,951,952,1,0,0,0,952,955,3,348,174,0, + 953,954,5,59,0,0,954,956,5,538,0,0,955,953,1,0,0,0,955,956,1,0,0, + 0,956,957,1,0,0,0,957,958,3,362,181,0,958,109,1,0,0,0,959,961,5, + 72,0,0,960,962,5,498,0,0,961,960,1,0,0,0,961,962,1,0,0,0,962,963, + 1,0,0,0,963,965,5,502,0,0,964,966,3,364,182,0,965,964,1,0,0,0,965, + 966,1,0,0,0,966,967,1,0,0,0,967,969,3,356,178,0,968,970,3,60,30, + 0,969,968,1,0,0,0,969,970,1,0,0,0,970,973,1,0,0,0,971,972,5,59,0, + 0,972,974,5,538,0,0,973,971,1,0,0,0,973,974,1,0,0,0,974,975,1,0, + 0,0,975,976,5,17,0,0,976,977,3,164,82,0,977,111,1,0,0,0,978,982, + 5,72,0,0,979,983,5,498,0,0,980,981,5,498,0,0,981,983,5,371,0,0,982, + 979,1,0,0,0,982,980,1,0,0,0,982,983,1,0,0,0,983,984,1,0,0,0,984, + 986,5,153,0,0,985,987,3,364,182,0,986,985,1,0,0,0,986,987,1,0,0, + 0,987,988,1,0,0,0,988,989,3,296,148,0,989,990,5,17,0,0,990,993,3, + 334,167,0,991,992,5,196,0,0,992,994,7,16,0,0,993,991,1,0,0,0,993, + 994,1,0,0,0,994,996,1,0,0,0,995,997,3,114,57,0,996,995,1,0,0,0,996, + 997,1,0,0,0,997,113,1,0,0,0,998,999,5,413,0,0,999,1000,5,464,0,0, + 1000,1006,3,116,58,0,1001,1002,5,521,0,0,1002,1003,5,464,0,0,1003, + 1005,3,116,58,0,1004,1001,1,0,0,0,1005,1008,1,0,0,0,1006,1004,1, + 0,0,0,1006,1007,1,0,0,0,1007,115,1,0,0,0,1008,1006,1,0,0,0,1009, + 1010,5,538,0,0,1010,117,1,0,0,0,1011,1012,5,8,0,0,1012,1014,5,374, + 0,0,1013,1015,3,366,183,0,1014,1013,1,0,0,0,1014,1015,1,0,0,0,1015, + 1016,1,0,0,0,1016,1022,3,352,176,0,1017,1023,3,120,60,0,1018,1023, + 3,122,61,0,1019,1023,3,124,62,0,1020,1023,3,126,63,0,1021,1023,3, + 128,64,0,1022,1017,1,0,0,0,1022,1018,1,0,0,0,1022,1019,1,0,0,0,1022, + 1020,1,0,0,0,1022,1021,1,0,0,0,1023,119,1,0,0,0,1024,1026,5,312, + 0,0,1025,1027,3,358,179,0,1026,1025,1,0,0,0,1026,1027,1,0,0,0,1027, + 1028,1,0,0,0,1028,1029,5,389,0,0,1029,1030,3,358,179,0,1030,121, + 1,0,0,0,1031,1032,5,341,0,0,1032,1033,3,368,184,0,1033,123,1,0,0, + 0,1034,1035,5,438,0,0,1035,1036,5,64,0,0,1036,1037,3,90,45,0,1037, + 1038,5,289,0,0,1038,1039,5,467,0,0,1039,1041,3,60,30,0,1040,1042, + 3,130,65,0,1041,1040,1,0,0,0,1041,1042,1,0,0,0,1042,125,1,0,0,0, + 1043,1044,5,116,0,0,1044,1045,5,64,0,0,1045,1046,3,90,45,0,1046, + 127,1,0,0,0,1047,1048,5,438,0,0,1048,1049,5,404,0,0,1049,1050,3, + 60,30,0,1050,129,1,0,0,0,1051,1052,5,242,0,0,1052,1053,5,125,0,0, + 1053,131,1,0,0,0,1054,1055,5,8,0,0,1055,1056,5,502,0,0,1056,1060, + 3,354,177,0,1057,1061,3,120,60,0,1058,1059,5,17,0,0,1059,1061,3, + 164,82,0,1060,1057,1,0,0,0,1060,1058,1,0,0,0,1061,133,1,0,0,0,1062, + 1063,5,8,0,0,1063,1064,5,448,0,0,1064,1065,3,346,173,0,1065,1066, + 3,122,61,0,1066,135,1,0,0,0,1067,1071,5,8,0,0,1068,1072,5,498,0, + 0,1069,1070,5,498,0,0,1070,1072,5,371,0,0,1071,1068,1,0,0,0,1071, + 1069,1,0,0,0,1071,1072,1,0,0,0,1072,1073,1,0,0,0,1073,1075,5,153, + 0,0,1074,1076,3,366,183,0,1075,1074,1,0,0,0,1075,1076,1,0,0,0,1076, + 1077,1,0,0,0,1077,1078,3,298,149,0,1078,1079,5,17,0,0,1079,1082, + 3,334,167,0,1080,1081,5,196,0,0,1081,1083,7,16,0,0,1082,1080,1,0, + 0,0,1082,1083,1,0,0,0,1083,137,1,0,0,0,1084,1085,5,116,0,0,1085, + 1087,5,442,0,0,1086,1088,3,366,183,0,1087,1086,1,0,0,0,1087,1088, + 1,0,0,0,1088,1089,1,0,0,0,1089,1090,3,342,171,0,1090,139,1,0,0,0, + 1091,1093,5,116,0,0,1092,1094,5,498,0,0,1093,1092,1,0,0,0,1093,1094, + 1,0,0,0,1094,1095,1,0,0,0,1095,1097,5,374,0,0,1096,1098,3,366,183, + 0,1097,1096,1,0,0,0,1097,1098,1,0,0,0,1098,1099,1,0,0,0,1099,1100, + 3,352,176,0,1100,141,1,0,0,0,1101,1102,5,116,0,0,1102,1104,5,448, + 0,0,1103,1105,3,366,183,0,1104,1103,1,0,0,0,1104,1105,1,0,0,0,1105, + 1106,1,0,0,0,1106,1108,3,346,173,0,1107,1109,7,17,0,0,1108,1107, + 1,0,0,0,1108,1109,1,0,0,0,1109,143,1,0,0,0,1110,1112,5,116,0,0,1111, + 1113,5,498,0,0,1112,1111,1,0,0,0,1112,1113,1,0,0,0,1113,1114,1,0, + 0,0,1114,1116,5,502,0,0,1115,1117,3,366,183,0,1116,1115,1,0,0,0, + 1116,1117,1,0,0,0,1117,1118,1,0,0,0,1118,1119,3,354,177,0,1119,145, + 1,0,0,0,1120,1124,5,116,0,0,1121,1125,5,498,0,0,1122,1123,5,498, + 0,0,1123,1125,5,371,0,0,1124,1121,1,0,0,0,1124,1122,1,0,0,0,1124, + 1125,1,0,0,0,1125,1126,1,0,0,0,1126,1128,5,153,0,0,1127,1129,3,366, + 183,0,1128,1127,1,0,0,0,1128,1129,1,0,0,0,1129,1130,1,0,0,0,1130, + 1131,3,298,149,0,1131,147,1,0,0,0,1132,1134,5,132,0,0,1133,1132, + 1,0,0,0,1133,1134,1,0,0,0,1134,1135,1,0,0,0,1135,1140,3,150,75,0, + 1136,1140,3,160,80,0,1137,1138,5,132,0,0,1138,1140,3,162,81,0,1139, + 1133,1,0,0,0,1139,1136,1,0,0,0,1139,1137,1,0,0,0,1140,149,1,0,0, + 0,1141,1142,5,177,0,0,1142,1143,7,18,0,0,1143,1152,3,352,176,0,1144, + 1146,3,152,76,0,1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,1148,1, + 0,0,0,1147,1149,3,60,30,0,1148,1147,1,0,0,0,1148,1149,1,0,0,0,1149, + 1150,1,0,0,0,1150,1153,3,164,82,0,1151,1153,3,154,77,0,1152,1145, + 1,0,0,0,1152,1151,1,0,0,0,1153,151,1,0,0,0,1154,1155,5,269,0,0,1155, + 1156,3,368,184,0,1156,153,1,0,0,0,1157,1158,5,415,0,0,1158,1163, + 3,156,78,0,1159,1160,5,521,0,0,1160,1162,3,156,78,0,1161,1159,1, + 0,0,0,1162,1165,1,0,0,0,1163,1161,1,0,0,0,1163,1164,1,0,0,0,1164, + 155,1,0,0,0,1165,1163,1,0,0,0,1166,1167,5,517,0,0,1167,1172,3,158, + 79,0,1168,1169,5,521,0,0,1169,1171,3,158,79,0,1170,1168,1,0,0,0, + 1171,1174,1,0,0,0,1172,1170,1,0,0,0,1172,1173,1,0,0,0,1173,1175, + 1,0,0,0,1174,1172,1,0,0,0,1175,1176,5,518,0,0,1176,157,1,0,0,0,1177, + 1180,3,386,193,0,1178,1180,3,292,146,0,1179,1177,1,0,0,0,1179,1178, + 1,0,0,0,1180,159,1,0,0,0,1181,1182,5,24,0,0,1182,1183,5,355,0,0, + 1183,1184,5,341,0,0,1184,1188,5,522,0,0,1185,1186,3,150,75,0,1186, + 1187,5,522,0,0,1187,1189,1,0,0,0,1188,1185,1,0,0,0,1189,1190,1,0, + 0,0,1190,1188,1,0,0,0,1190,1191,1,0,0,0,1191,1192,1,0,0,0,1192,1193, + 5,122,0,0,1193,161,1,0,0,0,1194,1195,5,355,0,0,1195,1196,5,341,0, + 0,1196,1200,5,24,0,0,1197,1198,3,150,75,0,1198,1199,5,522,0,0,1199, + 1201,1,0,0,0,1200,1197,1,0,0,0,1201,1202,1,0,0,0,1202,1200,1,0,0, + 0,1202,1203,1,0,0,0,1203,1204,1,0,0,0,1204,1205,5,122,0,0,1205,163, + 1,0,0,0,1206,1207,6,82,-1,0,1207,1230,3,166,83,0,1208,1209,3,168, + 84,0,1209,1210,3,164,82,5,1210,1230,1,0,0,0,1211,1212,5,517,0,0, + 1212,1213,3,164,82,0,1213,1214,5,518,0,0,1214,1230,1,0,0,0,1215, + 1217,3,176,88,0,1216,1218,3,254,127,0,1217,1216,1,0,0,0,1217,1218, + 1,0,0,0,1218,1220,1,0,0,0,1219,1221,3,258,129,0,1220,1219,1,0,0, + 0,1220,1221,1,0,0,0,1221,1230,1,0,0,0,1222,1224,3,174,87,0,1223, + 1225,3,254,127,0,1224,1223,1,0,0,0,1224,1225,1,0,0,0,1225,1227,1, + 0,0,0,1226,1228,3,258,129,0,1227,1226,1,0,0,0,1227,1228,1,0,0,0, + 1228,1230,1,0,0,0,1229,1206,1,0,0,0,1229,1208,1,0,0,0,1229,1211, + 1,0,0,0,1229,1215,1,0,0,0,1229,1222,1,0,0,0,1230,1245,1,0,0,0,1231, + 1232,10,3,0,0,1232,1234,7,19,0,0,1233,1235,5,5,0,0,1234,1233,1,0, + 0,0,1234,1235,1,0,0,0,1235,1236,1,0,0,0,1236,1238,3,164,82,0,1237, + 1239,3,254,127,0,1238,1237,1,0,0,0,1238,1239,1,0,0,0,1239,1241,1, + 0,0,0,1240,1242,3,258,129,0,1241,1240,1,0,0,0,1241,1242,1,0,0,0, + 1242,1244,1,0,0,0,1243,1231,1,0,0,0,1244,1247,1,0,0,0,1245,1243, + 1,0,0,0,1245,1246,1,0,0,0,1246,165,1,0,0,0,1247,1245,1,0,0,0,1248, + 1249,5,415,0,0,1249,1254,3,282,141,0,1250,1251,5,521,0,0,1251,1253, + 3,282,141,0,1252,1250,1,0,0,0,1253,1256,1,0,0,0,1254,1252,1,0,0, + 0,1254,1255,1,0,0,0,1255,167,1,0,0,0,1256,1254,1,0,0,0,1257,1258, + 5,434,0,0,1258,1263,3,170,85,0,1259,1260,5,521,0,0,1260,1262,3,170, + 85,0,1261,1259,1,0,0,0,1262,1265,1,0,0,0,1263,1261,1,0,0,0,1263, + 1264,1,0,0,0,1264,169,1,0,0,0,1265,1263,1,0,0,0,1266,1278,3,172, + 86,0,1267,1268,5,517,0,0,1268,1273,3,54,27,0,1269,1270,5,521,0,0, + 1270,1272,3,54,27,0,1271,1269,1,0,0,0,1272,1275,1,0,0,0,1273,1271, + 1,0,0,0,1273,1274,1,0,0,0,1274,1276,1,0,0,0,1275,1273,1,0,0,0,1276, + 1277,5,518,0,0,1277,1279,1,0,0,0,1278,1267,1,0,0,0,1278,1279,1,0, + 0,0,1279,1280,1,0,0,0,1280,1281,5,17,0,0,1281,1282,5,517,0,0,1282, + 1283,3,164,82,0,1283,1284,5,518,0,0,1284,171,1,0,0,0,1285,1286,3, + 334,167,0,1286,173,1,0,0,0,1287,1289,3,176,88,0,1288,1290,3,196, + 98,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1292,1,0,0,0,1291, + 1293,3,228,114,0,1292,1291,1,0,0,0,1292,1293,1,0,0,0,1293,1295,1, + 0,0,0,1294,1296,3,230,115,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0, + 1296,1298,1,0,0,0,1297,1299,3,244,122,0,1298,1297,1,0,0,0,1298,1299, + 1,0,0,0,1299,1301,1,0,0,0,1300,1302,3,246,123,0,1301,1300,1,0,0, + 0,1301,1302,1,0,0,0,1302,1308,1,0,0,0,1303,1304,3,176,88,0,1304, + 1305,3,196,98,0,1305,1306,3,252,126,0,1306,1308,1,0,0,0,1307,1287, + 1,0,0,0,1307,1303,1,0,0,0,1308,175,1,0,0,0,1309,1311,5,337,0,0,1310, + 1312,3,396,198,0,1311,1310,1,0,0,0,1311,1312,1,0,0,0,1312,1313,1, + 0,0,0,1313,1314,3,178,89,0,1314,177,1,0,0,0,1315,1320,3,180,90,0, + 1316,1317,5,521,0,0,1317,1319,3,180,90,0,1318,1316,1,0,0,0,1319, + 1322,1,0,0,0,1320,1318,1,0,0,0,1320,1321,1,0,0,0,1321,179,1,0,0, + 0,1322,1320,1,0,0,0,1323,1345,3,182,91,0,1324,1330,3,186,93,0,1325, + 1331,3,188,94,0,1326,1328,5,17,0,0,1327,1326,1,0,0,0,1327,1328,1, + 0,0,0,1328,1329,1,0,0,0,1329,1331,3,282,141,0,1330,1325,1,0,0,0, + 1330,1327,1,0,0,0,1330,1331,1,0,0,0,1331,1345,1,0,0,0,1332,1334, + 3,192,96,0,1333,1335,3,188,94,0,1334,1333,1,0,0,0,1334,1335,1,0, + 0,0,1335,1345,1,0,0,0,1336,1342,3,184,92,0,1337,1343,3,188,94,0, + 1338,1340,5,17,0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1341, + 1,0,0,0,1341,1343,3,54,27,0,1342,1337,1,0,0,0,1342,1339,1,0,0,0, + 1342,1343,1,0,0,0,1343,1345,1,0,0,0,1344,1323,1,0,0,0,1344,1324, + 1,0,0,0,1344,1332,1,0,0,0,1344,1336,1,0,0,0,1345,181,1,0,0,0,1346, + 1347,3,194,97,0,1347,183,1,0,0,0,1348,1349,3,282,141,0,1349,185, + 1,0,0,0,1350,1351,3,54,27,0,1351,187,1,0,0,0,1352,1354,5,17,0,0, + 1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355,1,0,0,0,1355,1356, + 3,334,167,0,1356,189,1,0,0,0,1357,1373,3,194,97,0,1358,1363,3,282, + 141,0,1359,1361,5,17,0,0,1360,1359,1,0,0,0,1360,1361,1,0,0,0,1361, + 1362,1,0,0,0,1362,1364,3,54,27,0,1363,1360,1,0,0,0,1363,1364,1,0, + 0,0,1364,1373,1,0,0,0,1365,1370,3,54,27,0,1366,1368,5,17,0,0,1367, + 1366,1,0,0,0,1367,1368,1,0,0,0,1368,1369,1,0,0,0,1369,1371,3,282, + 141,0,1370,1367,1,0,0,0,1370,1371,1,0,0,0,1371,1373,1,0,0,0,1372, + 1357,1,0,0,0,1372,1358,1,0,0,0,1372,1365,1,0,0,0,1373,191,1,0,0, + 0,1374,1379,3,334,167,0,1375,1376,5,514,0,0,1376,1378,3,334,167, + 0,1377,1375,1,0,0,0,1378,1381,1,0,0,0,1379,1377,1,0,0,0,1379,1380, + 1,0,0,0,1380,1382,1,0,0,0,1381,1379,1,0,0,0,1382,1383,5,514,0,0, + 1383,1385,1,0,0,0,1384,1374,1,0,0,0,1384,1385,1,0,0,0,1385,1386, + 1,0,0,0,1386,1387,5,528,0,0,1387,193,1,0,0,0,1388,1389,3,294,147, + 0,1389,1390,5,263,0,0,1390,1391,3,250,125,0,1391,1392,5,17,0,0,1392, + 1393,3,334,167,0,1393,1401,1,0,0,0,1394,1395,3,294,147,0,1395,1396, + 5,263,0,0,1396,1397,3,326,163,0,1397,1398,5,17,0,0,1398,1399,3,334, + 167,0,1399,1401,1,0,0,0,1400,1388,1,0,0,0,1400,1394,1,0,0,0,1401, + 195,1,0,0,0,1402,1403,5,151,0,0,1403,1404,3,198,99,0,1404,197,1, + 0,0,0,1405,1406,6,99,-1,0,1406,1411,3,200,100,0,1407,1408,5,521, + 0,0,1408,1410,3,200,100,0,1409,1407,1,0,0,0,1410,1413,1,0,0,0,1411, + 1409,1,0,0,0,1411,1412,1,0,0,0,1412,1417,1,0,0,0,1413,1411,1,0,0, + 0,1414,1417,3,212,106,0,1415,1417,3,214,107,0,1416,1405,1,0,0,0, + 1416,1414,1,0,0,0,1416,1415,1,0,0,0,1417,1439,1,0,0,0,1418,1419, + 10,3,0,0,1419,1420,5,73,0,0,1420,1421,5,185,0,0,1421,1438,3,198, + 99,4,1422,1424,10,4,0,0,1423,1425,5,234,0,0,1424,1423,1,0,0,0,1424, + 1425,1,0,0,0,1425,1427,1,0,0,0,1426,1428,7,20,0,0,1427,1426,1,0, + 0,0,1427,1428,1,0,0,0,1428,1430,1,0,0,0,1429,1431,5,262,0,0,1430, + 1429,1,0,0,0,1430,1431,1,0,0,0,1431,1432,1,0,0,0,1432,1433,5,185, + 0,0,1433,1435,3,198,99,0,1434,1436,3,226,113,0,1435,1434,1,0,0,0, + 1435,1436,1,0,0,0,1436,1438,1,0,0,0,1437,1418,1,0,0,0,1437,1422, + 1,0,0,0,1438,1441,1,0,0,0,1439,1437,1,0,0,0,1439,1440,1,0,0,0,1440, + 199,1,0,0,0,1441,1439,1,0,0,0,1442,1444,3,202,101,0,1443,1445,3, + 324,162,0,1444,1443,1,0,0,0,1444,1445,1,0,0,0,1445,201,1,0,0,0,1446, + 1448,5,374,0,0,1447,1446,1,0,0,0,1447,1448,1,0,0,0,1448,1449,1,0, + 0,0,1449,1451,3,352,176,0,1450,1452,3,208,104,0,1451,1450,1,0,0, + 0,1451,1452,1,0,0,0,1452,1460,1,0,0,0,1453,1455,3,354,177,0,1454, + 1456,3,208,104,0,1455,1454,1,0,0,0,1455,1456,1,0,0,0,1456,1460,1, + 0,0,0,1457,1460,3,204,102,0,1458,1460,3,206,103,0,1459,1447,1,0, + 0,0,1459,1453,1,0,0,0,1459,1457,1,0,0,0,1459,1458,1,0,0,0,1460,203, + 1,0,0,0,1461,1462,5,199,0,0,1462,1463,5,374,0,0,1463,1464,5,517, + 0,0,1464,1465,3,292,146,0,1465,1466,5,518,0,0,1466,205,1,0,0,0,1467, + 1469,5,199,0,0,1468,1467,1,0,0,0,1468,1469,1,0,0,0,1469,1470,1,0, + 0,0,1470,1471,5,517,0,0,1471,1472,3,164,82,0,1472,1473,5,518,0,0, + 1473,1480,1,0,0,0,1474,1475,5,406,0,0,1475,1476,5,517,0,0,1476,1477, + 3,282,141,0,1477,1478,5,518,0,0,1478,1480,1,0,0,0,1479,1468,1,0, + 0,0,1479,1474,1,0,0,0,1480,207,1,0,0,0,1481,1482,5,146,0,0,1482, + 1483,5,372,0,0,1483,1484,5,17,0,0,1484,1485,5,250,0,0,1485,1486, + 3,210,105,0,1486,209,1,0,0,0,1487,1488,3,282,141,0,1488,211,1,0, + 0,0,1489,1490,5,517,0,0,1490,1491,3,154,77,0,1491,1492,5,518,0,0, + 1492,1493,3,324,162,0,1493,213,1,0,0,0,1494,1495,5,374,0,0,1495, + 1496,5,517,0,0,1496,1497,3,216,108,0,1497,1498,5,518,0,0,1498,215, + 1,0,0,0,1499,1500,3,218,109,0,1500,1501,5,517,0,0,1501,1506,3,220, + 110,0,1502,1503,5,521,0,0,1503,1505,3,220,110,0,1504,1502,1,0,0, + 0,1505,1508,1,0,0,0,1506,1504,1,0,0,0,1506,1507,1,0,0,0,1507,1509, + 1,0,0,0,1508,1506,1,0,0,0,1509,1510,5,518,0,0,1510,217,1,0,0,0,1511, + 1512,7,21,0,0,1512,219,1,0,0,0,1513,1514,5,374,0,0,1514,1529,3,242, + 121,0,1515,1529,3,224,112,0,1516,1529,3,312,156,0,1517,1518,5,447, + 0,0,1518,1519,5,537,0,0,1519,1520,5,374,0,0,1520,1529,3,242,121, + 0,1521,1522,5,499,0,0,1522,1523,5,537,0,0,1523,1529,3,224,112,0, + 1524,1525,3,222,111,0,1525,1526,5,537,0,0,1526,1527,3,312,156,0, + 1527,1529,1,0,0,0,1528,1513,1,0,0,0,1528,1515,1,0,0,0,1528,1516, + 1,0,0,0,1528,1517,1,0,0,0,1528,1521,1,0,0,0,1528,1524,1,0,0,0,1529, + 221,1,0,0,0,1530,1531,7,22,0,0,1531,223,1,0,0,0,1532,1533,5,452, + 0,0,1533,1534,5,517,0,0,1534,1535,3,54,27,0,1535,1536,5,518,0,0, + 1536,225,1,0,0,0,1537,1544,5,254,0,0,1538,1545,3,284,142,0,1539, + 1542,3,58,29,0,1540,1541,5,506,0,0,1541,1543,3,58,29,0,1542,1540, + 1,0,0,0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1538,1,0,0,0,1544, + 1539,1,0,0,0,1545,1549,1,0,0,0,1546,1547,5,413,0,0,1547,1549,3,60, + 30,0,1548,1537,1,0,0,0,1548,1546,1,0,0,0,1549,227,1,0,0,0,1550,1553, + 5,431,0,0,1551,1554,3,284,142,0,1552,1554,3,58,29,0,1553,1551,1, + 0,0,0,1553,1552,1,0,0,0,1554,229,1,0,0,0,1555,1556,5,159,0,0,1556, + 1557,5,34,0,0,1557,1562,3,232,116,0,1558,1559,5,521,0,0,1559,1561, + 3,232,116,0,1560,1558,1,0,0,0,1561,1564,1,0,0,0,1562,1560,1,0,0, + 0,1562,1563,1,0,0,0,1563,231,1,0,0,0,1564,1562,1,0,0,0,1565,1606, + 3,54,27,0,1566,1606,3,238,119,0,1567,1568,5,517,0,0,1568,1606,5, + 518,0,0,1569,1570,5,517,0,0,1570,1575,3,282,141,0,1571,1572,5,521, + 0,0,1572,1574,3,282,141,0,1573,1571,1,0,0,0,1574,1577,1,0,0,0,1575, + 1573,1,0,0,0,1575,1576,1,0,0,0,1576,1578,1,0,0,0,1577,1575,1,0,0, + 0,1578,1579,5,518,0,0,1579,1606,1,0,0,0,1580,1581,3,236,118,0,1581, + 1582,5,517,0,0,1582,1587,3,282,141,0,1583,1584,5,521,0,0,1584,1586, + 3,282,141,0,1585,1583,1,0,0,0,1586,1589,1,0,0,0,1587,1585,1,0,0, + 0,1587,1588,1,0,0,0,1588,1590,1,0,0,0,1589,1587,1,0,0,0,1590,1591, + 5,518,0,0,1591,1606,1,0,0,0,1592,1593,3,234,117,0,1593,1594,5,517, + 0,0,1594,1599,3,232,116,0,1595,1596,5,521,0,0,1596,1598,3,232,116, + 0,1597,1595,1,0,0,0,1598,1601,1,0,0,0,1599,1597,1,0,0,0,1599,1600, + 1,0,0,0,1600,1602,1,0,0,0,1601,1599,1,0,0,0,1602,1603,5,518,0,0, + 1603,1606,1,0,0,0,1604,1606,3,282,141,0,1605,1565,1,0,0,0,1605,1566, + 1,0,0,0,1605,1567,1,0,0,0,1605,1569,1,0,0,0,1605,1580,1,0,0,0,1605, + 1592,1,0,0,0,1605,1604,1,0,0,0,1606,233,1,0,0,0,1607,1608,5,160, + 0,0,1608,1609,5,494,0,0,1609,235,1,0,0,0,1610,1611,7,23,0,0,1611, + 237,1,0,0,0,1612,1613,3,240,120,0,1613,1614,5,517,0,0,1614,1615, + 3,242,121,0,1615,1616,5,521,0,0,1616,1617,3,312,156,0,1617,1618, + 5,518,0,0,1618,239,1,0,0,0,1619,1620,7,24,0,0,1620,241,1,0,0,0,1621, + 1622,3,358,179,0,1622,243,1,0,0,0,1623,1624,5,163,0,0,1624,1625, + 3,284,142,0,1625,245,1,0,0,0,1626,1627,5,433,0,0,1627,1632,3,248, + 124,0,1628,1629,5,521,0,0,1629,1631,3,248,124,0,1630,1628,1,0,0, + 0,1631,1634,1,0,0,0,1632,1630,1,0,0,0,1632,1633,1,0,0,0,1633,247, + 1,0,0,0,1634,1632,1,0,0,0,1635,1636,3,326,163,0,1636,1637,5,17,0, + 0,1637,1638,3,250,125,0,1638,249,1,0,0,0,1639,1641,3,326,163,0,1640, + 1639,1,0,0,0,1640,1641,1,0,0,0,1641,1642,1,0,0,0,1642,1644,5,517, + 0,0,1643,1645,3,260,130,0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645, + 1647,1,0,0,0,1646,1648,3,254,127,0,1647,1646,1,0,0,0,1647,1648,1, + 0,0,0,1648,1650,1,0,0,0,1649,1651,3,276,138,0,1650,1649,1,0,0,0, + 1650,1651,1,0,0,0,1651,1652,1,0,0,0,1652,1653,5,518,0,0,1653,251, + 1,0,0,0,1654,1655,5,214,0,0,1655,1657,5,517,0,0,1656,1658,3,260, + 130,0,1657,1656,1,0,0,0,1657,1658,1,0,0,0,1658,1660,1,0,0,0,1659, + 1661,3,254,127,0,1660,1659,1,0,0,0,1660,1661,1,0,0,0,1661,1663,1, + 0,0,0,1662,1664,3,264,132,0,1663,1662,1,0,0,0,1663,1664,1,0,0,0, + 1664,1666,1,0,0,0,1665,1667,3,270,135,0,1666,1665,1,0,0,0,1666,1667, + 1,0,0,0,1667,1669,1,0,0,0,1668,1670,3,272,136,0,1669,1668,1,0,0, + 0,1669,1670,1,0,0,0,1670,1672,1,0,0,0,1671,1673,3,266,133,0,1672, + 1671,1,0,0,0,1672,1673,1,0,0,0,1673,1674,1,0,0,0,1674,1675,3,274, + 137,0,1675,1680,5,518,0,0,1676,1678,5,17,0,0,1677,1676,1,0,0,0,1677, + 1678,1,0,0,0,1678,1679,1,0,0,0,1679,1681,3,334,167,0,1680,1677,1, + 0,0,0,1680,1681,1,0,0,0,1681,253,1,0,0,0,1682,1683,5,259,0,0,1683, + 1684,5,34,0,0,1684,1689,3,256,128,0,1685,1686,5,521,0,0,1686,1688, + 3,256,128,0,1687,1685,1,0,0,0,1688,1691,1,0,0,0,1689,1687,1,0,0, + 0,1689,1690,1,0,0,0,1690,255,1,0,0,0,1691,1689,1,0,0,0,1692,1694, + 3,54,27,0,1693,1695,7,25,0,0,1694,1693,1,0,0,0,1694,1695,1,0,0,0, + 1695,1698,1,0,0,0,1696,1697,5,477,0,0,1697,1699,7,26,0,0,1698,1696, + 1,0,0,0,1698,1699,1,0,0,0,1699,257,1,0,0,0,1700,1703,5,205,0,0,1701, + 1704,5,5,0,0,1702,1704,3,282,141,0,1703,1701,1,0,0,0,1703,1702,1, + 0,0,0,1704,259,1,0,0,0,1705,1706,5,269,0,0,1706,1709,5,34,0,0,1707, + 1710,3,54,27,0,1708,1710,3,294,147,0,1709,1707,1,0,0,0,1709,1708, + 1,0,0,0,1710,1718,1,0,0,0,1711,1714,5,521,0,0,1712,1715,3,54,27, + 0,1713,1715,3,294,147,0,1714,1712,1,0,0,0,1714,1713,1,0,0,0,1715, + 1717,1,0,0,0,1716,1711,1,0,0,0,1717,1720,1,0,0,0,1718,1716,1,0,0, + 0,1718,1719,1,0,0,0,1719,261,1,0,0,0,1720,1718,1,0,0,0,1721,1738, + 5,528,0,0,1722,1738,5,531,0,0,1723,1738,5,536,0,0,1724,1725,5,519, + 0,0,1725,1726,5,539,0,0,1726,1727,5,521,0,0,1727,1728,5,539,0,0, + 1728,1738,5,520,0,0,1729,1730,5,519,0,0,1730,1731,5,539,0,0,1731, + 1732,5,521,0,0,1732,1738,5,520,0,0,1733,1734,5,519,0,0,1734,1735, + 5,521,0,0,1735,1736,5,539,0,0,1736,1738,5,520,0,0,1737,1721,1,0, + 0,0,1737,1722,1,0,0,0,1737,1723,1,0,0,0,1737,1724,1,0,0,0,1737,1729, + 1,0,0,0,1737,1733,1,0,0,0,1738,263,1,0,0,0,1739,1740,5,216,0,0,1740, + 1745,3,190,95,0,1741,1742,5,521,0,0,1742,1744,3,190,95,0,1743,1741, + 1,0,0,0,1744,1747,1,0,0,0,1745,1743,1,0,0,0,1745,1746,1,0,0,0,1746, + 265,1,0,0,0,1747,1745,1,0,0,0,1748,1749,5,272,0,0,1749,1751,5,517, + 0,0,1750,1752,3,268,134,0,1751,1750,1,0,0,0,1752,1753,1,0,0,0,1753, + 1751,1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0,0,0,1755,1757,5,518, + 0,0,1756,1758,3,280,140,0,1757,1756,1,0,0,0,1757,1758,1,0,0,0,1758, + 267,1,0,0,0,1759,1761,3,336,168,0,1760,1762,3,262,131,0,1761,1760, + 1,0,0,0,1761,1762,1,0,0,0,1762,269,1,0,0,0,1763,1764,5,5,0,0,1764, + 1765,5,323,0,0,1765,1766,5,273,0,0,1766,1772,5,211,0,0,1767,1768, + 5,255,0,0,1768,1769,5,322,0,0,1769,1770,5,273,0,0,1770,1772,5,211, + 0,0,1771,1763,1,0,0,0,1771,1767,1,0,0,0,1772,271,1,0,0,0,1773,1774, + 5,439,0,0,1774,1775,5,211,0,0,1775,1776,5,344,0,0,1776,1777,5,479, + 0,0,1777,1778,5,468,0,0,1778,1798,5,322,0,0,1779,1780,5,439,0,0, + 1780,1781,5,211,0,0,1781,1782,5,344,0,0,1782,1783,5,389,0,0,1783, + 1784,5,238,0,0,1784,1798,5,322,0,0,1785,1786,5,439,0,0,1786,1787, + 5,211,0,0,1787,1788,5,344,0,0,1788,1789,5,389,0,0,1789,1790,5,468, + 0,0,1790,1798,3,336,168,0,1791,1792,5,439,0,0,1792,1793,5,211,0, + 0,1793,1794,5,344,0,0,1794,1795,5,389,0,0,1795,1796,5,458,0,0,1796, + 1798,3,336,168,0,1797,1773,1,0,0,0,1797,1779,1,0,0,0,1797,1785,1, + 0,0,0,1797,1791,1,0,0,0,1798,273,1,0,0,0,1799,1800,5,105,0,0,1800, + 1805,3,190,95,0,1801,1802,5,521,0,0,1802,1804,3,190,95,0,1803,1801, + 1,0,0,0,1804,1807,1,0,0,0,1805,1803,1,0,0,0,1805,1806,1,0,0,0,1806, + 275,1,0,0,0,1807,1805,1,0,0,0,1808,1809,5,293,0,0,1809,1810,5,27, + 0,0,1810,1811,3,312,156,0,1811,1812,3,278,139,0,1812,1818,1,0,0, + 0,1813,1814,5,323,0,0,1814,1815,5,27,0,0,1815,1816,5,539,0,0,1816, + 1818,3,278,139,0,1817,1808,1,0,0,0,1817,1813,1,0,0,0,1818,277,1, + 0,0,0,1819,1820,5,481,0,0,1820,1821,5,10,0,0,1821,1822,5,76,0,0, + 1822,1823,5,322,0,0,1823,279,1,0,0,0,1824,1825,5,435,0,0,1825,1826, + 3,312,156,0,1826,281,1,0,0,0,1827,1828,3,284,142,0,1828,283,1,0, + 0,0,1829,1830,6,142,-1,0,1830,1831,5,242,0,0,1831,1842,3,284,142, + 6,1832,1833,5,133,0,0,1833,1834,5,517,0,0,1834,1835,3,164,82,0,1835, + 1836,5,518,0,0,1836,1842,1,0,0,0,1837,1839,3,290,145,0,1838,1840, + 3,286,143,0,1839,1838,1,0,0,0,1839,1840,1,0,0,0,1840,1842,1,0,0, + 0,1841,1829,1,0,0,0,1841,1832,1,0,0,0,1841,1837,1,0,0,0,1842,1857, + 1,0,0,0,1843,1844,10,3,0,0,1844,1845,5,10,0,0,1845,1856,3,284,142, + 4,1846,1847,10,2,0,0,1847,1848,5,258,0,0,1848,1856,3,284,142,3,1849, + 1850,10,1,0,0,1850,1852,5,184,0,0,1851,1853,5,242,0,0,1852,1851, + 1,0,0,0,1852,1853,1,0,0,0,1853,1854,1,0,0,0,1854,1856,7,27,0,0,1855, + 1843,1,0,0,0,1855,1846,1,0,0,0,1855,1849,1,0,0,0,1856,1859,1,0,0, + 0,1857,1855,1,0,0,0,1857,1858,1,0,0,0,1858,285,1,0,0,0,1859,1857, + 1,0,0,0,1860,1862,5,242,0,0,1861,1860,1,0,0,0,1861,1862,1,0,0,0, + 1862,1863,1,0,0,0,1863,1865,5,27,0,0,1864,1866,7,28,0,0,1865,1864, + 1,0,0,0,1865,1866,1,0,0,0,1866,1867,1,0,0,0,1867,1868,3,290,145, + 0,1868,1869,5,10,0,0,1869,1870,3,290,145,0,1870,1935,1,0,0,0,1871, + 1873,5,242,0,0,1872,1871,1,0,0,0,1872,1873,1,0,0,0,1873,1874,1,0, + 0,0,1874,1875,5,170,0,0,1875,1876,5,517,0,0,1876,1881,3,282,141, + 0,1877,1878,5,521,0,0,1878,1880,3,282,141,0,1879,1877,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,5,518,0,0,1885,1935,1,0,0,0,1886,1888, + 5,242,0,0,1887,1886,1,0,0,0,1887,1888,1,0,0,0,1888,1889,1,0,0,0, + 1889,1890,5,170,0,0,1890,1891,5,517,0,0,1891,1892,3,164,82,0,1892, + 1893,5,518,0,0,1893,1935,1,0,0,0,1894,1895,5,133,0,0,1895,1896,5, + 517,0,0,1896,1897,3,164,82,0,1897,1898,5,518,0,0,1898,1935,1,0,0, + 0,1899,1901,5,242,0,0,1900,1899,1,0,0,0,1900,1901,1,0,0,0,1901,1902, + 1,0,0,0,1902,1903,5,319,0,0,1903,1935,3,290,145,0,1904,1935,3,288, + 144,0,1905,1907,5,184,0,0,1906,1908,5,242,0,0,1907,1906,1,0,0,0, + 1907,1908,1,0,0,0,1908,1909,1,0,0,0,1909,1935,7,27,0,0,1910,1912, + 5,184,0,0,1911,1913,5,242,0,0,1912,1911,1,0,0,0,1912,1913,1,0,0, + 0,1913,1914,1,0,0,0,1914,1915,5,113,0,0,1915,1916,5,151,0,0,1916, + 1935,3,290,145,0,1917,1919,5,242,0,0,1918,1917,1,0,0,0,1918,1919, + 1,0,0,0,1919,1920,1,0,0,0,1920,1921,5,343,0,0,1921,1922,5,389,0, + 0,1922,1925,3,290,145,0,1923,1924,5,127,0,0,1924,1926,3,390,195, + 0,1925,1923,1,0,0,0,1925,1926,1,0,0,0,1926,1935,1,0,0,0,1927,1928, + 5,184,0,0,1928,1932,5,186,0,0,1929,1933,5,414,0,0,1930,1933,5,13, + 0,0,1931,1933,3,334,167,0,1932,1929,1,0,0,0,1932,1930,1,0,0,0,1932, + 1931,1,0,0,0,1932,1933,1,0,0,0,1933,1935,1,0,0,0,1934,1861,1,0,0, + 0,1934,1872,1,0,0,0,1934,1887,1,0,0,0,1934,1894,1,0,0,0,1934,1900, + 1,0,0,0,1934,1904,1,0,0,0,1934,1905,1,0,0,0,1934,1910,1,0,0,0,1934, + 1918,1,0,0,0,1934,1927,1,0,0,0,1935,287,1,0,0,0,1936,1938,5,242, + 0,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939,1,0,0,0,1939,1940, + 5,203,0,0,1940,1954,7,29,0,0,1941,1942,5,517,0,0,1942,1955,5,518, + 0,0,1943,1944,5,517,0,0,1944,1949,3,282,141,0,1945,1946,5,521,0, + 0,1946,1948,3,282,141,0,1947,1945,1,0,0,0,1948,1951,1,0,0,0,1949, + 1947,1,0,0,0,1949,1950,1,0,0,0,1950,1952,1,0,0,0,1951,1949,1,0,0, + 0,1952,1953,5,518,0,0,1953,1955,1,0,0,0,1954,1941,1,0,0,0,1954,1943, + 1,0,0,0,1955,1966,1,0,0,0,1956,1958,5,242,0,0,1957,1956,1,0,0,0, + 1957,1958,1,0,0,0,1958,1959,1,0,0,0,1959,1960,5,203,0,0,1960,1963, + 3,290,145,0,1961,1962,5,127,0,0,1962,1964,3,390,195,0,1963,1961, + 1,0,0,0,1963,1964,1,0,0,0,1964,1966,1,0,0,0,1965,1937,1,0,0,0,1965, + 1957,1,0,0,0,1966,289,1,0,0,0,1967,1968,6,145,-1,0,1968,1972,3,294, + 147,0,1969,1970,7,30,0,0,1970,1972,3,290,145,7,1971,1967,1,0,0,0, + 1971,1969,1,0,0,0,1972,1994,1,0,0,0,1973,1974,10,6,0,0,1974,1975, + 7,31,0,0,1975,1993,3,290,145,7,1976,1977,10,5,0,0,1977,1978,7,32, + 0,0,1978,1993,3,290,145,6,1979,1980,10,4,0,0,1980,1981,5,512,0,0, + 1981,1993,3,290,145,5,1982,1983,10,3,0,0,1983,1984,5,513,0,0,1984, + 1993,3,290,145,4,1985,1986,10,2,0,0,1986,1987,5,511,0,0,1987,1993, + 3,290,145,3,1988,1989,10,1,0,0,1989,1990,3,378,189,0,1990,1991,3, + 290,145,2,1991,1993,1,0,0,0,1992,1973,1,0,0,0,1992,1976,1,0,0,0, + 1992,1979,1,0,0,0,1992,1982,1,0,0,0,1992,1985,1,0,0,0,1992,1988, + 1,0,0,0,1993,1996,1,0,0,0,1994,1992,1,0,0,0,1994,1995,1,0,0,0,1995, + 291,1,0,0,0,1996,1994,1,0,0,0,1997,2017,3,404,202,0,1998,2017,3, + 300,150,0,1999,2000,3,302,151,0,2000,2012,5,517,0,0,2001,2003,3, + 396,198,0,2002,2001,1,0,0,0,2002,2003,1,0,0,0,2003,2004,1,0,0,0, + 2004,2009,3,304,152,0,2005,2006,5,521,0,0,2006,2008,3,304,152,0, + 2007,2005,1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2009,2010, + 1,0,0,0,2010,2013,1,0,0,0,2011,2009,1,0,0,0,2012,2002,1,0,0,0,2012, + 2013,1,0,0,0,2013,2014,1,0,0,0,2014,2015,5,518,0,0,2015,2017,1,0, + 0,0,2016,1997,1,0,0,0,2016,1998,1,0,0,0,2016,1999,1,0,0,0,2017,293, + 1,0,0,0,2018,2019,6,147,-1,0,2019,2021,5,40,0,0,2020,2022,3,340, + 170,0,2021,2020,1,0,0,0,2022,2023,1,0,0,0,2023,2021,1,0,0,0,2023, + 2024,1,0,0,0,2024,2027,1,0,0,0,2025,2026,5,120,0,0,2026,2028,3,282, + 141,0,2027,2025,1,0,0,0,2027,2028,1,0,0,0,2028,2029,1,0,0,0,2029, + 2030,5,122,0,0,2030,2094,1,0,0,0,2031,2032,5,40,0,0,2032,2034,3, + 282,141,0,2033,2035,3,340,170,0,2034,2033,1,0,0,0,2035,2036,1,0, + 0,0,2036,2034,1,0,0,0,2036,2037,1,0,0,0,2037,2040,1,0,0,0,2038,2039, + 5,120,0,0,2039,2041,3,282,141,0,2040,2038,1,0,0,0,2040,2041,1,0, + 0,0,2041,2042,1,0,0,0,2042,2043,5,122,0,0,2043,2094,1,0,0,0,2044, + 2045,5,41,0,0,2045,2046,5,517,0,0,2046,2047,3,282,141,0,2047,2048, + 5,17,0,0,2048,2049,3,62,31,0,2049,2050,5,518,0,0,2050,2094,1,0,0, + 0,2051,2052,5,458,0,0,2052,2053,5,517,0,0,2053,2056,3,282,141,0, + 2054,2055,5,462,0,0,2055,2057,5,477,0,0,2056,2054,1,0,0,0,2056,2057, + 1,0,0,0,2057,2058,1,0,0,0,2058,2059,5,518,0,0,2059,2094,1,0,0,0, + 2060,2061,5,468,0,0,2061,2062,5,517,0,0,2062,2065,3,282,141,0,2063, + 2064,5,462,0,0,2064,2066,5,477,0,0,2065,2063,1,0,0,0,2065,2066,1, + 0,0,0,2066,2067,1,0,0,0,2067,2068,5,518,0,0,2068,2094,1,0,0,0,2069, + 2070,5,282,0,0,2070,2071,5,517,0,0,2071,2072,3,290,145,0,2072,2073, + 5,170,0,0,2073,2074,3,290,145,0,2074,2075,5,518,0,0,2075,2094,1, + 0,0,0,2076,2094,3,386,193,0,2077,2094,5,528,0,0,2078,2079,3,358, + 179,0,2079,2080,5,514,0,0,2080,2081,5,528,0,0,2081,2094,1,0,0,0, + 2082,2083,5,517,0,0,2083,2084,3,164,82,0,2084,2085,5,518,0,0,2085, + 2094,1,0,0,0,2086,2094,3,292,146,0,2087,2094,3,56,28,0,2088,2094, + 3,306,153,0,2089,2090,5,517,0,0,2090,2091,3,282,141,0,2091,2092, + 5,518,0,0,2092,2094,1,0,0,0,2093,2018,1,0,0,0,2093,2031,1,0,0,0, + 2093,2044,1,0,0,0,2093,2051,1,0,0,0,2093,2060,1,0,0,0,2093,2069, + 1,0,0,0,2093,2076,1,0,0,0,2093,2077,1,0,0,0,2093,2078,1,0,0,0,2093, + 2082,1,0,0,0,2093,2086,1,0,0,0,2093,2087,1,0,0,0,2093,2088,1,0,0, + 0,2093,2089,1,0,0,0,2094,2102,1,0,0,0,2095,2096,10,4,0,0,2096,2097, + 5,515,0,0,2097,2098,3,290,145,0,2098,2099,5,516,0,0,2099,2101,1, + 0,0,0,2100,2095,1,0,0,0,2101,2104,1,0,0,0,2102,2100,1,0,0,0,2102, + 2103,1,0,0,0,2103,295,1,0,0,0,2104,2102,1,0,0,0,2105,2106,3,358, + 179,0,2106,297,1,0,0,0,2107,2112,3,408,204,0,2108,2112,3,404,202, + 0,2109,2112,3,406,203,0,2110,2112,3,358,179,0,2111,2107,1,0,0,0, + 2111,2108,1,0,0,0,2111,2109,1,0,0,0,2111,2110,1,0,0,0,2112,299,1, + 0,0,0,2113,2114,3,406,203,0,2114,2115,5,538,0,0,2115,2118,1,0,0, + 0,2116,2118,3,312,156,0,2117,2113,1,0,0,0,2117,2116,1,0,0,0,2118, + 301,1,0,0,0,2119,2122,3,408,204,0,2120,2122,3,358,179,0,2121,2119, + 1,0,0,0,2121,2120,1,0,0,0,2122,303,1,0,0,0,2123,2128,3,402,201,0, + 2124,2128,3,400,200,0,2125,2128,3,398,199,0,2126,2128,3,282,141, + 0,2127,2123,1,0,0,0,2127,2124,1,0,0,0,2127,2125,1,0,0,0,2127,2126, + 1,0,0,0,2128,305,1,0,0,0,2129,2130,3,358,179,0,2130,307,1,0,0,0, + 2131,2132,3,334,167,0,2132,309,1,0,0,0,2133,2136,3,334,167,0,2134, + 2136,3,306,153,0,2135,2133,1,0,0,0,2135,2134,1,0,0,0,2136,311,1, + 0,0,0,2137,2140,5,182,0,0,2138,2141,3,314,157,0,2139,2141,3,318, + 159,0,2140,2138,1,0,0,0,2140,2139,1,0,0,0,2140,2141,1,0,0,0,2141, + 313,1,0,0,0,2142,2144,3,316,158,0,2143,2145,3,320,160,0,2144,2143, + 1,0,0,0,2144,2145,1,0,0,0,2145,315,1,0,0,0,2146,2147,3,322,161,0, + 2147,2148,3,400,200,0,2148,2150,1,0,0,0,2149,2146,1,0,0,0,2150,2151, + 1,0,0,0,2151,2149,1,0,0,0,2151,2152,1,0,0,0,2152,317,1,0,0,0,2153, + 2156,3,320,160,0,2154,2157,3,316,158,0,2155,2157,3,320,160,0,2156, + 2154,1,0,0,0,2156,2155,1,0,0,0,2156,2157,1,0,0,0,2157,319,1,0,0, + 0,2158,2159,3,322,161,0,2159,2160,3,400,200,0,2160,2161,5,389,0, + 0,2161,2162,3,400,200,0,2162,321,1,0,0,0,2163,2165,7,33,0,0,2164, + 2163,1,0,0,0,2164,2165,1,0,0,0,2165,2166,1,0,0,0,2166,2169,7,34, + 0,0,2167,2169,5,538,0,0,2168,2164,1,0,0,0,2168,2167,1,0,0,0,2169, + 323,1,0,0,0,2170,2172,5,17,0,0,2171,2170,1,0,0,0,2171,2172,1,0,0, + 0,2172,2173,1,0,0,0,2173,2175,3,334,167,0,2174,2176,3,330,165,0, + 2175,2174,1,0,0,0,2175,2176,1,0,0,0,2176,325,1,0,0,0,2177,2178,3, + 334,167,0,2178,2179,3,328,164,0,2179,327,1,0,0,0,2180,2181,5,222, + 0,0,2181,2183,3,334,167,0,2182,2180,1,0,0,0,2183,2184,1,0,0,0,2184, + 2182,1,0,0,0,2184,2185,1,0,0,0,2185,2188,1,0,0,0,2186,2188,1,0,0, + 0,2187,2182,1,0,0,0,2187,2186,1,0,0,0,2188,329,1,0,0,0,2189,2190, + 5,517,0,0,2190,2191,3,332,166,0,2191,2192,5,518,0,0,2192,331,1,0, + 0,0,2193,2198,3,334,167,0,2194,2195,5,521,0,0,2195,2197,3,334,167, + 0,2196,2194,1,0,0,0,2197,2200,1,0,0,0,2198,2196,1,0,0,0,2198,2199, + 1,0,0,0,2199,333,1,0,0,0,2200,2198,1,0,0,0,2201,2205,3,336,168,0, + 2202,2205,3,338,169,0,2203,2205,3,410,205,0,2204,2201,1,0,0,0,2204, + 2202,1,0,0,0,2204,2203,1,0,0,0,2205,335,1,0,0,0,2206,2207,7,35,0, + 0,2207,337,1,0,0,0,2208,2209,5,538,0,0,2209,339,1,0,0,0,2210,2211, + 5,429,0,0,2211,2212,3,282,141,0,2212,2213,5,377,0,0,2213,2214,3, + 282,141,0,2214,341,1,0,0,0,2215,2216,3,334,167,0,2216,343,1,0,0, + 0,2217,2218,3,334,167,0,2218,345,1,0,0,0,2219,2222,3,334,167,0,2220, + 2221,5,514,0,0,2221,2223,3,334,167,0,2222,2220,1,0,0,0,2222,2223, + 1,0,0,0,2223,347,1,0,0,0,2224,2227,3,334,167,0,2225,2226,5,514,0, + 0,2226,2228,3,334,167,0,2227,2225,1,0,0,0,2227,2228,1,0,0,0,2228, + 349,1,0,0,0,2229,2232,3,334,167,0,2230,2231,5,514,0,0,2231,2233, + 3,334,167,0,2232,2230,1,0,0,0,2232,2233,1,0,0,0,2233,2242,1,0,0, + 0,2234,2235,3,334,167,0,2235,2236,5,514,0,0,2236,2239,3,334,167, + 0,2237,2238,5,514,0,0,2238,2240,3,334,167,0,2239,2237,1,0,0,0,2239, + 2240,1,0,0,0,2240,2242,1,0,0,0,2241,2229,1,0,0,0,2241,2234,1,0,0, + 0,2242,351,1,0,0,0,2243,2246,3,334,167,0,2244,2245,5,514,0,0,2245, + 2247,3,334,167,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2256,1, + 0,0,0,2248,2249,3,334,167,0,2249,2250,5,514,0,0,2250,2253,3,334, + 167,0,2251,2252,5,514,0,0,2252,2254,3,334,167,0,2253,2251,1,0,0, + 0,2253,2254,1,0,0,0,2254,2256,1,0,0,0,2255,2243,1,0,0,0,2255,2248, + 1,0,0,0,2256,353,1,0,0,0,2257,2260,3,334,167,0,2258,2259,5,514,0, + 0,2259,2261,3,334,167,0,2260,2258,1,0,0,0,2260,2261,1,0,0,0,2261, + 2270,1,0,0,0,2262,2263,3,334,167,0,2263,2264,5,514,0,0,2264,2267, + 3,334,167,0,2265,2266,5,514,0,0,2266,2268,3,334,167,0,2267,2265, + 1,0,0,0,2267,2268,1,0,0,0,2268,2270,1,0,0,0,2269,2257,1,0,0,0,2269, + 2262,1,0,0,0,2270,355,1,0,0,0,2271,2274,3,334,167,0,2272,2273,5, + 514,0,0,2273,2275,3,334,167,0,2274,2272,1,0,0,0,2274,2275,1,0,0, + 0,2275,2284,1,0,0,0,2276,2277,3,334,167,0,2277,2278,5,514,0,0,2278, + 2281,3,334,167,0,2279,2280,5,514,0,0,2280,2282,3,334,167,0,2281, + 2279,1,0,0,0,2281,2282,1,0,0,0,2282,2284,1,0,0,0,2283,2271,1,0,0, + 0,2283,2276,1,0,0,0,2284,357,1,0,0,0,2285,2290,3,334,167,0,2286, + 2287,5,514,0,0,2287,2289,3,334,167,0,2288,2286,1,0,0,0,2289,2292, + 1,0,0,0,2290,2288,1,0,0,0,2290,2291,1,0,0,0,2291,359,1,0,0,0,2292, + 2290,1,0,0,0,2293,2298,3,334,167,0,2294,2295,5,514,0,0,2295,2297, + 3,334,167,0,2296,2294,1,0,0,0,2297,2300,1,0,0,0,2298,2296,1,0,0, + 0,2298,2299,1,0,0,0,2299,2307,1,0,0,0,2300,2298,1,0,0,0,2301,2302, + 4,180,15,0,2302,2303,3,334,167,0,2303,2304,5,514,0,0,2304,2305,3, + 52,26,0,2305,2307,1,0,0,0,2306,2293,1,0,0,0,2306,2301,1,0,0,0,2307, + 361,1,0,0,0,2308,2309,5,434,0,0,2309,2310,3,368,184,0,2310,363,1, + 0,0,0,2311,2312,5,167,0,0,2312,2313,5,242,0,0,2313,2314,5,133,0, + 0,2314,365,1,0,0,0,2315,2316,5,167,0,0,2316,2317,5,133,0,0,2317, + 367,1,0,0,0,2318,2319,5,517,0,0,2319,2324,3,370,185,0,2320,2321, + 5,521,0,0,2321,2323,3,370,185,0,2322,2320,1,0,0,0,2323,2326,1,0, + 0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2327,1,0,0,0,2326,2324, + 1,0,0,0,2327,2328,5,518,0,0,2328,369,1,0,0,0,2329,2334,3,372,186, + 0,2330,2332,5,506,0,0,2331,2330,1,0,0,0,2331,2332,1,0,0,0,2332,2333, + 1,0,0,0,2333,2335,3,374,187,0,2334,2331,1,0,0,0,2334,2335,1,0,0, + 0,2335,371,1,0,0,0,2336,2340,3,334,167,0,2337,2340,3,306,153,0,2338, + 2340,5,538,0,0,2339,2336,1,0,0,0,2339,2337,1,0,0,0,2339,2338,1,0, + 0,0,2340,373,1,0,0,0,2341,2346,5,539,0,0,2342,2346,5,540,0,0,2343, + 2346,3,394,197,0,2344,2346,5,538,0,0,2345,2341,1,0,0,0,2345,2342, + 1,0,0,0,2345,2343,1,0,0,0,2345,2344,1,0,0,0,2346,375,1,0,0,0,2347, + 2354,5,10,0,0,2348,2349,5,512,0,0,2349,2354,5,512,0,0,2350,2354, + 5,258,0,0,2351,2352,5,511,0,0,2352,2354,5,511,0,0,2353,2347,1,0, + 0,0,2353,2348,1,0,0,0,2353,2350,1,0,0,0,2353,2351,1,0,0,0,2354,377, + 1,0,0,0,2355,2370,5,506,0,0,2356,2370,5,507,0,0,2357,2370,5,508, + 0,0,2358,2359,5,508,0,0,2359,2370,5,506,0,0,2360,2361,5,507,0,0, + 2361,2370,5,506,0,0,2362,2363,5,508,0,0,2363,2370,5,507,0,0,2364, + 2365,5,509,0,0,2365,2370,5,506,0,0,2366,2367,5,508,0,0,2367,2368, + 5,506,0,0,2368,2370,5,507,0,0,2369,2355,1,0,0,0,2369,2356,1,0,0, + 0,2369,2357,1,0,0,0,2369,2358,1,0,0,0,2369,2360,1,0,0,0,2369,2362, + 1,0,0,0,2369,2364,1,0,0,0,2369,2366,1,0,0,0,2370,379,1,0,0,0,2371, + 2372,5,508,0,0,2372,2379,5,508,0,0,2373,2374,5,507,0,0,2374,2379, + 5,507,0,0,2375,2379,5,512,0,0,2376,2379,5,513,0,0,2377,2379,5,511, + 0,0,2378,2371,1,0,0,0,2378,2373,1,0,0,0,2378,2375,1,0,0,0,2378,2376, + 1,0,0,0,2378,2377,1,0,0,0,2379,381,1,0,0,0,2380,2381,7,36,0,0,2381, + 383,1,0,0,0,2382,2383,7,37,0,0,2383,385,1,0,0,0,2384,2399,3,312, + 156,0,2385,2399,3,388,194,0,2386,2399,3,390,195,0,2387,2389,5,530, + 0,0,2388,2387,1,0,0,0,2388,2389,1,0,0,0,2389,2390,1,0,0,0,2390,2399, + 3,392,196,0,2391,2399,3,394,197,0,2392,2399,5,540,0,0,2393,2399, + 5,541,0,0,2394,2396,5,242,0,0,2395,2394,1,0,0,0,2395,2396,1,0,0, + 0,2396,2397,1,0,0,0,2397,2399,5,245,0,0,2398,2384,1,0,0,0,2398,2385, + 1,0,0,0,2398,2386,1,0,0,0,2398,2388,1,0,0,0,2398,2391,1,0,0,0,2398, + 2392,1,0,0,0,2398,2393,1,0,0,0,2398,2395,1,0,0,0,2399,387,1,0,0, + 0,2400,2401,3,398,199,0,2401,2402,3,390,195,0,2402,389,1,0,0,0,2403, + 2404,5,538,0,0,2404,391,1,0,0,0,2405,2406,5,539,0,0,2406,393,1,0, + 0,0,2407,2408,7,38,0,0,2408,395,1,0,0,0,2409,2410,7,39,0,0,2410, + 397,1,0,0,0,2411,2412,7,40,0,0,2412,399,1,0,0,0,2413,2414,7,41,0, + 0,2414,401,1,0,0,0,2415,2416,7,42,0,0,2416,403,1,0,0,0,2417,2418, + 7,43,0,0,2418,405,1,0,0,0,2419,2420,7,44,0,0,2420,407,1,0,0,0,2421, + 2422,7,45,0,0,2422,409,1,0,0,0,2423,2424,7,46,0,0,2424,411,1,0,0, + 0,289,415,422,425,439,457,461,470,475,482,493,502,514,517,524,527, + 535,539,544,547,554,562,566,578,586,590,622,625,630,634,638,642, + 651,656,660,664,669,672,676,681,687,692,697,701,705,712,719,727, + 735,739,743,747,751,755,759,763,767,769,779,787,811,825,830,834, + 840,843,846,853,856,865,877,901,913,918,922,930,934,940,950,955, + 961,965,969,973,982,986,993,996,1006,1014,1022,1026,1041,1060,1071, + 1075,1082,1087,1093,1097,1104,1108,1112,1116,1124,1128,1133,1139, + 1145,1148,1152,1163,1172,1179,1190,1202,1217,1220,1224,1227,1229, + 1234,1238,1241,1245,1254,1263,1273,1278,1289,1292,1295,1298,1301, + 1307,1311,1320,1327,1330,1334,1339,1342,1344,1353,1360,1363,1367, + 1370,1372,1379,1384,1400,1411,1416,1424,1427,1430,1435,1437,1439, + 1444,1447,1451,1455,1459,1468,1479,1506,1528,1542,1544,1548,1553, + 1562,1575,1587,1599,1605,1632,1640,1644,1647,1650,1657,1660,1663, + 1666,1669,1672,1677,1680,1689,1694,1698,1703,1709,1714,1718,1737, + 1745,1753,1757,1761,1771,1797,1805,1817,1839,1841,1852,1855,1857, + 1861,1865,1872,1881,1887,1900,1907,1912,1918,1925,1932,1934,1937, + 1949,1954,1957,1963,1965,1971,1992,1994,2002,2009,2012,2016,2023, + 2027,2036,2040,2056,2065,2093,2102,2111,2117,2121,2127,2135,2140, + 2144,2151,2156,2164,2168,2171,2175,2184,2187,2198,2204,2222,2227, + 2232,2239,2241,2246,2253,2255,2260,2267,2269,2274,2281,2283,2290, + 2298,2306,2324,2331,2334,2339,2345,2353,2369,2378,2388,2395,2398 ]; private static __ATN: antlr.ATN; @@ -14653,12 +14861,42 @@ export class ColumnNameCreateContext extends antlr.ParserRuleContext { } +export class EmptyColumnContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_emptyColumn; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterEmptyColumn) { + listener.enterEmptyColumn(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitEmptyColumn) { + listener.exitEmptyColumn(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitEmptyColumn) { + return visitor.visitEmptyColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); + public uidAllowEmpty(): UidAllowEmptyContext | null { + return this.getRuleContext(0, UidAllowEmptyContext); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); } public override get ruleIndex(): number { return FlinkSqlParser.RULE_columnName; @@ -14713,6 +14951,39 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { } +export class ColumnNamePathAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public uidAllowEmpty(): UidAllowEmptyContext | null { + return this.getRuleContext(0, UidAllowEmptyContext); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_columnNamePathAllowEmpty; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterColumnNamePathAllowEmpty) { + listener.enterColumnNamePathAllowEmpty(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitColumnNamePathAllowEmpty) { + listener.exitColumnNamePathAllowEmpty(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePathAllowEmpty) { + return visitor.visitColumnNamePathAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -18530,6 +18801,18 @@ export class JoinConditionContext extends antlr.ParserRuleContext { public booleanExpression(): BooleanExpressionContext | null { return this.getRuleContext(0, BooleanExpressionContext); } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext[]; + public columnNamePathAllowEmpty(i: number): ColumnNamePathAllowEmptyContext | null; + public columnNamePathAllowEmpty(i?: number): ColumnNamePathAllowEmptyContext[] | ColumnNamePathAllowEmptyContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnNamePathAllowEmptyContext); + } + + return this.getRuleContext(i, ColumnNamePathAllowEmptyContext); + } + public EQUAL_SYMBOL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.EQUAL_SYMBOL, 0); + } public KW_USING(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_USING, 0); } @@ -18566,8 +18849,11 @@ export class WhereClauseContext extends antlr.ParserRuleContext { public KW_WHERE(): antlr.TerminalNode { return this.getToken(FlinkSqlParser.KW_WHERE, 0)!; } - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext)!; + public booleanExpression(): BooleanExpressionContext | null { + return this.getRuleContext(0, BooleanExpressionContext); + } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNamePathAllowEmptyContext); } public override get ruleIndex(): number { return FlinkSqlParser.RULE_whereClause; @@ -22259,6 +22545,54 @@ export class UidContext extends antlr.ParserRuleContext { } +export class UidAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { + if (i === undefined) { + return this.getRuleContexts(IdentifierContext); + } + + return this.getRuleContext(i, IdentifierContext); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.DOT); + } else { + return this.getToken(FlinkSqlParser.DOT, i); + } + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_uidAllowEmpty; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterUidAllowEmpty) { + listener.enterUidAllowEmpty(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitUidAllowEmpty) { + listener.exitUidAllowEmpty(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitUidAllowEmpty) { + return visitor.visitUidAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class WithOptionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index 4b2a7b47..7e855f7c 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -34,8 +34,10 @@ import { CreateTableAsSelectContext } from "./FlinkSqlParser.js"; import { ColumnOptionDefinitionContext } from "./FlinkSqlParser.js"; import { PhysicalColumnDefinitionContext } from "./FlinkSqlParser.js"; import { ColumnNameCreateContext } from "./FlinkSqlParser.js"; +import { EmptyColumnContext } from "./FlinkSqlParser.js"; import { ColumnNameContext } from "./FlinkSqlParser.js"; import { ColumnNamePathContext } from "./FlinkSqlParser.js"; +import { ColumnNamePathAllowEmptyContext } from "./FlinkSqlParser.js"; import { ColumnNameListContext } from "./FlinkSqlParser.js"; import { ColumnTypeContext } from "./FlinkSqlParser.js"; import { LengthOneDimensionContext } from "./FlinkSqlParser.js"; @@ -210,6 +212,7 @@ import { TablePathContext } from "./FlinkSqlParser.js"; import { ViewPathContext } from "./FlinkSqlParser.js"; import { ViewPathCreateContext } from "./FlinkSqlParser.js"; import { UidContext } from "./FlinkSqlParser.js"; +import { UidAllowEmptyContext } from "./FlinkSqlParser.js"; import { WithOptionContext } from "./FlinkSqlParser.js"; import { IfNotExistsContext } from "./FlinkSqlParser.js"; import { IfExistsContext } from "./FlinkSqlParser.js"; @@ -502,6 +505,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnNameCreate?: (ctx: ColumnNameCreateContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + enterEmptyColumn?: (ctx: EmptyColumnContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + exitEmptyColumn?: (ctx: EmptyColumnContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.columnName`. * @param ctx the parse tree @@ -522,6 +535,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + */ + enterColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + */ + exitColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.columnNameList`. * @param ctx the parse tree @@ -2322,6 +2345,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUid?: (ctx: UidContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.uidAllowEmpty`. + * @param ctx the parse tree + */ + enterUidAllowEmpty?: (ctx: UidAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.uidAllowEmpty`. + * @param ctx the parse tree + */ + exitUidAllowEmpty?: (ctx: UidAllowEmptyContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.withOption`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 4d7096c2..7e9eeced 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -34,8 +34,10 @@ import { CreateTableAsSelectContext } from "./FlinkSqlParser.js"; import { ColumnOptionDefinitionContext } from "./FlinkSqlParser.js"; import { PhysicalColumnDefinitionContext } from "./FlinkSqlParser.js"; import { ColumnNameCreateContext } from "./FlinkSqlParser.js"; +import { EmptyColumnContext } from "./FlinkSqlParser.js"; import { ColumnNameContext } from "./FlinkSqlParser.js"; import { ColumnNamePathContext } from "./FlinkSqlParser.js"; +import { ColumnNamePathAllowEmptyContext } from "./FlinkSqlParser.js"; import { ColumnNameListContext } from "./FlinkSqlParser.js"; import { ColumnTypeContext } from "./FlinkSqlParser.js"; import { LengthOneDimensionContext } from "./FlinkSqlParser.js"; @@ -210,6 +212,7 @@ import { TablePathContext } from "./FlinkSqlParser.js"; import { ViewPathContext } from "./FlinkSqlParser.js"; import { ViewPathCreateContext } from "./FlinkSqlParser.js"; import { UidContext } from "./FlinkSqlParser.js"; +import { UidAllowEmptyContext } from "./FlinkSqlParser.js"; import { WithOptionContext } from "./FlinkSqlParser.js"; import { IfNotExistsContext } from "./FlinkSqlParser.js"; import { IfExistsContext } from "./FlinkSqlParser.js"; @@ -401,6 +404,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.emptyColumn`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEmptyColumn?: (ctx: EmptyColumnContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.columnName`. * @param ctx the parse tree @@ -413,6 +422,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.columnNameList`. * @param ctx the parse tree @@ -1487,6 +1502,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.uidAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitUidAllowEmpty?: (ctx: UidAllowEmptyContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.withOption`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index 4af4a85c..ec8e3238 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -1011,6 +1011,7 @@ columnNameColonTypeList columnNameList columnName columnNamePath +columnNamePathAllowEmpty columnNameCreate extColumnName columnNameOrderList @@ -1229,7 +1230,9 @@ hour minute second decimal +emptyColumn poolPath +poolPathAllowEmpty triggerAtomExpression triggerActionExpression poolAssign @@ -1237,4 +1240,4 @@ poolAssignList atn: -[4, 1, 438, 4828, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 1, 0, 5, 0, 708, 8, 0, 10, 0, 12, 0, 711, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 717, 8, 1, 1, 1, 3, 1, 720, 8, 1, 1, 2, 1, 2, 5, 2, 724, 8, 2, 10, 2, 12, 2, 727, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 732, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 739, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 749, 8, 3, 1, 3, 3, 3, 752, 8, 3, 1, 3, 1, 3, 3, 3, 756, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 771, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 778, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 789, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 794, 8, 5, 1, 5, 3, 5, 797, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 819, 8, 5, 10, 5, 12, 5, 822, 9, 5, 1, 5, 1, 5, 5, 5, 826, 8, 5, 10, 5, 12, 5, 829, 9, 5, 3, 5, 831, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 836, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 841, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 847, 8, 6, 1, 7, 1, 7, 3, 7, 851, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 864, 8, 8, 1, 9, 1, 9, 3, 9, 868, 8, 9, 1, 9, 1, 9, 3, 9, 872, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 877, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 884, 8, 10, 1, 10, 1, 10, 3, 10, 888, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 893, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 900, 8, 12, 1, 12, 1, 12, 3, 12, 904, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 909, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 955, 8, 14, 11, 14, 12, 14, 956, 1, 14, 1, 14, 1, 14, 4, 14, 962, 8, 14, 11, 14, 12, 14, 963, 1, 14, 1, 14, 1, 14, 3, 14, 969, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 992, 8, 21, 1, 21, 1, 21, 3, 21, 996, 8, 21, 1, 21, 1, 21, 3, 21, 1000, 8, 21, 1, 21, 3, 21, 1003, 8, 21, 1, 21, 1, 21, 3, 21, 1007, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1012, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 1, 21, 1, 21, 3, 21, 1022, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1028, 8, 21, 3, 21, 1030, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1041, 8, 24, 1, 24, 1, 24, 3, 24, 1045, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1052, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1060, 8, 26, 1, 26, 3, 26, 1063, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1068, 8, 27, 1, 27, 1, 27, 3, 27, 1072, 8, 27, 1, 27, 3, 27, 1075, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1085, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1093, 8, 29, 5, 29, 1095, 8, 29, 10, 29, 12, 29, 1098, 9, 29, 3, 29, 1100, 8, 29, 1, 30, 1, 30, 3, 30, 1104, 8, 30, 1, 31, 1, 31, 3, 31, 1108, 8, 31, 1, 31, 3, 31, 1111, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1116, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1127, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1132, 8, 32, 1, 32, 1, 32, 3, 32, 1136, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1147, 8, 33, 3, 33, 1149, 8, 33, 1, 33, 1, 33, 3, 33, 1153, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1163, 8, 36, 1, 36, 1, 36, 3, 36, 1167, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 3, 36, 1176, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1183, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1188, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1196, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1201, 8, 36, 1, 36, 1, 36, 3, 36, 1205, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1213, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1218, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1224, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1230, 8, 36, 1, 36, 3, 36, 1233, 8, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1248, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1256, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1261, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1269, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1276, 8, 36, 1, 36, 3, 36, 1279, 8, 36, 1, 36, 3, 36, 1282, 8, 36, 3, 36, 1284, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1295, 8, 36, 3, 36, 1297, 8, 36, 1, 36, 3, 36, 1300, 8, 36, 1, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 3, 36, 1314, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1326, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1332, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1340, 8, 36, 3, 36, 1342, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1352, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1385, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1390, 8, 45, 1, 46, 1, 46, 3, 46, 1394, 8, 46, 1, 46, 1, 46, 3, 46, 1398, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1405, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1410, 8, 47, 10, 47, 12, 47, 1413, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1418, 8, 47, 1, 48, 1, 48, 3, 48, 1422, 8, 48, 1, 48, 3, 48, 1425, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1430, 8, 48, 10, 48, 12, 48, 1433, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1455, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1460, 8, 53, 1, 53, 1, 53, 3, 53, 1464, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1472, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1481, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1488, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1494, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1501, 8, 58, 1, 58, 3, 58, 1504, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1510, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1515, 8, 59, 10, 59, 12, 59, 1518, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1525, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1532, 8, 62, 10, 62, 12, 62, 1535, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1543, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1550, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1570, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1577, 8, 69, 3, 69, 1579, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1584, 8, 70, 10, 70, 12, 70, 1587, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1596, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1604, 8, 73, 1, 74, 1, 74, 3, 74, 1608, 8, 74, 1, 74, 1, 74, 3, 74, 1612, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1625, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1634, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1650, 8, 78, 1, 78, 1, 78, 3, 78, 1654, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1659, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1664, 8, 78, 1, 78, 3, 78, 1667, 8, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1684, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1693, 8, 80, 1, 80, 1, 80, 3, 80, 1697, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1704, 8, 80, 1, 80, 3, 80, 1707, 8, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1725, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1731, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1757, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1765, 8, 88, 1, 88, 1, 88, 3, 88, 1769, 8, 88, 1, 88, 3, 88, 1772, 8, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1799, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1809, 8, 90, 1, 90, 3, 90, 1812, 8, 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, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1832, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1838, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1844, 8, 94, 1, 94, 3, 94, 1847, 8, 94, 3, 94, 1849, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1856, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1863, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1876, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1881, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1888, 8, 101, 10, 101, 12, 101, 1891, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1896, 8, 102, 10, 102, 12, 102, 1899, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1906, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1919, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1932, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1948, 8, 105, 1, 106, 1, 106, 3, 106, 1952, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1967, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1973, 8, 110, 1, 110, 3, 110, 1976, 8, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 111, 1, 111, 3, 111, 1989, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2002, 8, 114, 10, 114, 12, 114, 2005, 9, 114, 3, 114, 2007, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2016, 8, 116, 10, 116, 12, 116, 2019, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2032, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 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, 123, 1, 123, 3, 123, 2066, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2074, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2079, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2087, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2092, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2097, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2102, 8, 124, 10, 124, 12, 124, 2105, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2110, 8, 125, 10, 125, 12, 125, 2113, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2118, 8, 126, 10, 126, 12, 126, 2121, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2126, 8, 127, 10, 127, 12, 127, 2129, 9, 127, 1, 128, 1, 128, 3, 128, 2133, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2145, 8, 131, 5, 131, 2147, 8, 131, 10, 131, 12, 131, 2150, 9, 131, 1, 132, 1, 132, 1, 132, 5, 132, 2155, 8, 132, 10, 132, 12, 132, 2158, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 3, 134, 2166, 8, 134, 1, 134, 3, 134, 2169, 8, 134, 1, 135, 1, 135, 3, 135, 2173, 8, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 3, 137, 2180, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2186, 8, 139, 1, 139, 1, 139, 3, 139, 2190, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2196, 8, 140, 1, 141, 1, 141, 3, 141, 2200, 8, 141, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2212, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2221, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2232, 8, 145, 1, 146, 1, 146, 3, 146, 2236, 8, 146, 1, 147, 1, 147, 1, 147, 5, 147, 2241, 8, 147, 10, 147, 12, 147, 2244, 9, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 5, 149, 2253, 8, 149, 10, 149, 12, 149, 2256, 9, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2265, 8, 152, 1, 152, 3, 152, 2268, 8, 152, 1, 153, 1, 153, 1, 153, 5, 153, 2273, 8, 153, 10, 153, 12, 153, 2276, 9, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2281, 8, 154, 1, 155, 1, 155, 3, 155, 2285, 8, 155, 1, 155, 3, 155, 2288, 8, 155, 1, 155, 3, 155, 2291, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 157, 1, 157, 3, 157, 2301, 8, 157, 1, 158, 1, 158, 3, 158, 2305, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2310, 8, 159, 1, 159, 1, 159, 3, 159, 2314, 8, 159, 1, 160, 1, 160, 3, 160, 2318, 8, 160, 1, 161, 1, 161, 3, 161, 2322, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2330, 8, 161, 1, 162, 1, 162, 3, 162, 2334, 8, 162, 1, 162, 1, 162, 3, 162, 2338, 8, 162, 1, 163, 1, 163, 3, 163, 2342, 8, 163, 1, 164, 1, 164, 3, 164, 2346, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2354, 8, 164, 1, 165, 1, 165, 3, 165, 2358, 8, 165, 1, 165, 1, 165, 3, 165, 2362, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2370, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2375, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2380, 8, 168, 1, 169, 1, 169, 3, 169, 2384, 8, 169, 1, 170, 1, 170, 3, 170, 2388, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2395, 8, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2402, 8, 173, 10, 173, 12, 173, 2405, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2412, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2424, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2442, 8, 175, 1, 175, 3, 175, 2445, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2451, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 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, 3, 180, 2477, 8, 180, 1, 181, 3, 181, 2480, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 3, 182, 2486, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 2492, 8, 183, 10, 183, 12, 183, 2495, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2502, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 2513, 8, 185, 10, 185, 12, 185, 2516, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2522, 8, 186, 1, 186, 3, 186, 2525, 8, 186, 1, 186, 3, 186, 2528, 8, 186, 1, 186, 3, 186, 2531, 8, 186, 1, 186, 3, 186, 2534, 8, 186, 1, 186, 3, 186, 2537, 8, 186, 1, 186, 3, 186, 2540, 8, 186, 1, 186, 3, 186, 2543, 8, 186, 1, 186, 3, 186, 2546, 8, 186, 1, 186, 3, 186, 2549, 8, 186, 1, 186, 3, 186, 2552, 8, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2557, 8, 186, 1, 186, 3, 186, 2560, 8, 186, 1, 186, 3, 186, 2563, 8, 186, 1, 186, 3, 186, 2566, 8, 186, 1, 186, 3, 186, 2569, 8, 186, 1, 186, 3, 186, 2572, 8, 186, 1, 186, 3, 186, 2575, 8, 186, 1, 186, 3, 186, 2578, 8, 186, 1, 186, 3, 186, 2581, 8, 186, 1, 186, 3, 186, 2584, 8, 186, 1, 186, 3, 186, 2587, 8, 186, 3, 186, 2589, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2595, 8, 187, 1, 188, 1, 188, 3, 188, 2599, 8, 188, 1, 188, 3, 188, 2602, 8, 188, 1, 188, 3, 188, 2605, 8, 188, 1, 188, 3, 188, 2608, 8, 188, 1, 188, 3, 188, 2611, 8, 188, 1, 188, 3, 188, 2614, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2621, 8, 188, 1, 189, 1, 189, 3, 189, 2625, 8, 189, 1, 189, 3, 189, 2628, 8, 189, 1, 189, 3, 189, 2631, 8, 189, 1, 189, 3, 189, 2634, 8, 189, 1, 189, 3, 189, 2637, 8, 189, 1, 189, 3, 189, 2640, 8, 189, 1, 190, 1, 190, 1, 190, 4, 190, 2645, 8, 190, 11, 190, 12, 190, 2646, 1, 191, 3, 191, 2650, 8, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2658, 8, 192, 1, 192, 1, 192, 3, 192, 2662, 8, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2669, 8, 192, 3, 192, 2671, 8, 192, 1, 193, 3, 193, 2674, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2679, 8, 193, 1, 193, 3, 193, 2682, 8, 193, 1, 193, 1, 193, 3, 193, 2686, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2697, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 3, 196, 2705, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 5, 197, 2711, 8, 197, 10, 197, 12, 197, 2714, 9, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2721, 8, 198, 10, 198, 12, 198, 2724, 9, 198, 3, 198, 2726, 8, 198, 1, 198, 1, 198, 3, 198, 2730, 8, 198, 1, 198, 1, 198, 3, 198, 2734, 8, 198, 1, 198, 1, 198, 1, 198, 3, 198, 2739, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2746, 8, 199, 1, 200, 1, 200, 5, 200, 2750, 8, 200, 10, 200, 12, 200, 2753, 9, 200, 1, 200, 3, 200, 2756, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2763, 8, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2768, 8, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2781, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2789, 8, 203, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2808, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2818, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2831, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2841, 8, 208, 1, 208, 1, 208, 3, 208, 2845, 8, 208, 4, 208, 2847, 8, 208, 11, 208, 12, 208, 2848, 1, 208, 1, 208, 5, 208, 2853, 8, 208, 10, 208, 12, 208, 2856, 9, 208, 1, 208, 1, 208, 5, 208, 2860, 8, 208, 10, 208, 12, 208, 2863, 9, 208, 1, 208, 1, 208, 5, 208, 2867, 8, 208, 10, 208, 12, 208, 2870, 9, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2878, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2885, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2905, 8, 208, 1, 208, 3, 208, 2908, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2922, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2937, 8, 209, 1, 209, 1, 209, 3, 209, 2941, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 5, 209, 2959, 8, 209, 10, 209, 12, 209, 2962, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2973, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2979, 8, 209, 1, 209, 3, 209, 2982, 8, 209, 1, 209, 3, 209, 2985, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2991, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2997, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3004, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3012, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3018, 8, 209, 1, 209, 1, 209, 3, 209, 3022, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3027, 8, 209, 1, 209, 3, 209, 3030, 8, 209, 1, 209, 1, 209, 3, 209, 3034, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3041, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3046, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3051, 8, 209, 1, 209, 3, 209, 3054, 8, 209, 3, 209, 3056, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3064, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3072, 8, 210, 1, 210, 1, 210, 3, 210, 3076, 8, 210, 4, 210, 3078, 8, 210, 11, 210, 12, 210, 3079, 1, 210, 1, 210, 3, 210, 3084, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3101, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3118, 8, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 3, 214, 3125, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 3132, 8, 214, 10, 214, 12, 214, 3135, 9, 214, 1, 214, 1, 214, 3, 214, 3139, 8, 214, 1, 214, 3, 214, 3142, 8, 214, 1, 214, 3, 214, 3145, 8, 214, 1, 215, 1, 215, 3, 215, 3149, 8, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3164, 8, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3178, 8, 217, 1, 217, 3, 217, 3181, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3192, 8, 218, 1, 219, 1, 219, 3, 219, 3196, 8, 219, 1, 219, 3, 219, 3199, 8, 219, 1, 219, 3, 219, 3202, 8, 219, 1, 219, 1, 219, 3, 219, 3206, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3211, 8, 219, 1, 219, 3, 219, 3214, 8, 219, 1, 219, 3, 219, 3217, 8, 219, 1, 219, 3, 219, 3220, 8, 219, 1, 219, 3, 219, 3223, 8, 219, 1, 219, 3, 219, 3226, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3232, 8, 219, 1, 219, 3, 219, 3235, 8, 219, 1, 219, 3, 219, 3238, 8, 219, 1, 219, 3, 219, 3241, 8, 219, 1, 219, 3, 219, 3244, 8, 219, 1, 219, 3, 219, 3247, 8, 219, 1, 219, 3, 219, 3250, 8, 219, 1, 219, 3, 219, 3253, 8, 219, 1, 219, 3, 219, 3256, 8, 219, 1, 219, 3, 219, 3259, 8, 219, 1, 219, 1, 219, 3, 219, 3263, 8, 219, 3, 219, 3265, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3271, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3276, 8, 219, 1, 219, 3, 219, 3279, 8, 219, 1, 219, 3, 219, 3282, 8, 219, 1, 219, 3, 219, 3285, 8, 219, 1, 219, 3, 219, 3288, 8, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3294, 8, 219, 1, 219, 3, 219, 3297, 8, 219, 1, 219, 3, 219, 3300, 8, 219, 1, 219, 3, 219, 3303, 8, 219, 1, 219, 3, 219, 3306, 8, 219, 1, 219, 3, 219, 3309, 8, 219, 1, 219, 3, 219, 3312, 8, 219, 1, 219, 3, 219, 3315, 8, 219, 1, 219, 3, 219, 3318, 8, 219, 1, 219, 3, 219, 3321, 8, 219, 1, 219, 1, 219, 3, 219, 3325, 8, 219, 3, 219, 3327, 8, 219, 3, 219, 3329, 8, 219, 1, 220, 1, 220, 1, 220, 3, 220, 3334, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3339, 8, 220, 1, 220, 1, 220, 3, 220, 3343, 8, 220, 1, 220, 1, 220, 3, 220, 3347, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3352, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3357, 8, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 5, 222, 3364, 8, 222, 10, 222, 12, 222, 3367, 9, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3374, 8, 223, 10, 223, 12, 223, 3377, 9, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3382, 8, 224, 10, 224, 12, 224, 3385, 9, 224, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 4, 226, 3394, 8, 226, 11, 226, 12, 226, 3395, 1, 226, 3, 226, 3399, 8, 226, 1, 227, 1, 227, 5, 227, 3403, 8, 227, 10, 227, 12, 227, 3406, 9, 227, 1, 227, 1, 227, 5, 227, 3410, 8, 227, 10, 227, 12, 227, 3413, 9, 227, 1, 227, 1, 227, 5, 227, 3417, 8, 227, 10, 227, 12, 227, 3420, 9, 227, 1, 227, 1, 227, 5, 227, 3424, 8, 227, 10, 227, 12, 227, 3427, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3433, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3442, 8, 228, 5, 228, 3444, 8, 228, 10, 228, 12, 228, 3447, 9, 228, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3453, 8, 229, 1, 229, 5, 229, 3456, 8, 229, 10, 229, 12, 229, 3459, 9, 229, 1, 230, 3, 230, 3462, 8, 230, 1, 230, 1, 230, 3, 230, 3466, 8, 230, 1, 230, 3, 230, 3469, 8, 230, 1, 230, 3, 230, 3472, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 3483, 8, 231, 1, 231, 1, 231, 3, 231, 3487, 8, 231, 3, 231, 3489, 8, 231, 1, 231, 3, 231, 3492, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3503, 8, 232, 10, 232, 12, 232, 3506, 9, 232, 3, 232, 3508, 8, 232, 1, 232, 3, 232, 3511, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3521, 8, 232, 10, 232, 12, 232, 3524, 9, 232, 3, 232, 3526, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3533, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3540, 8, 232, 10, 232, 12, 232, 3543, 9, 232, 1, 232, 1, 232, 3, 232, 3547, 8, 232, 3, 232, 3549, 8, 232, 3, 232, 3551, 8, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 5, 234, 3566, 8, 234, 10, 234, 12, 234, 3569, 9, 234, 3, 234, 3571, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 3579, 8, 234, 1, 234, 3, 234, 3582, 8, 234, 1, 235, 1, 235, 3, 235, 3586, 8, 235, 1, 235, 3, 235, 3589, 8, 235, 1, 235, 3, 235, 3592, 8, 235, 1, 235, 3, 235, 3595, 8, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 3610, 8, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 3, 239, 3618, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3625, 8, 240, 1, 240, 3, 240, 3628, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3635, 8, 241, 1, 241, 3, 241, 3638, 8, 241, 1, 242, 1, 242, 1, 242, 3, 242, 3643, 8, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3650, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3658, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 3, 245, 3664, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3669, 8, 245, 1, 245, 1, 245, 3, 245, 3673, 8, 245, 1, 246, 1, 246, 1, 246, 3, 246, 3678, 8, 246, 1, 247, 1, 247, 3, 247, 3682, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 3689, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 3701, 8, 248, 10, 248, 12, 248, 3704, 9, 248, 3, 248, 3706, 8, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 3717, 8, 250, 10, 250, 12, 250, 3720, 9, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 3727, 8, 250, 10, 250, 12, 250, 3730, 9, 250, 3, 250, 3732, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 3741, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 5, 252, 3748, 8, 252, 10, 252, 12, 252, 3751, 9, 252, 3, 252, 3753, 8, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3759, 8, 253, 1, 253, 3, 253, 3762, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 3767, 8, 253, 1, 253, 3, 253, 3770, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3783, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3789, 8, 254, 3, 254, 3791, 8, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 5, 255, 3799, 8, 255, 10, 255, 12, 255, 3802, 9, 255, 1, 256, 1, 256, 1, 256, 3, 256, 3807, 8, 256, 1, 256, 3, 256, 3810, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 5, 256, 3818, 8, 256, 10, 256, 12, 256, 3821, 9, 256, 1, 256, 1, 256, 3, 256, 3825, 8, 256, 3, 256, 3827, 8, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3843, 8, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3849, 8, 259, 3, 259, 3851, 8, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 3, 260, 3858, 8, 260, 1, 261, 1, 261, 1, 261, 5, 261, 3863, 8, 261, 10, 261, 12, 261, 3866, 9, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 3877, 8, 262, 10, 262, 12, 262, 3880, 9, 262, 1, 263, 1, 263, 1, 263, 3, 263, 3885, 8, 263, 1, 263, 3, 263, 3888, 8, 263, 1, 263, 3, 263, 3891, 8, 263, 1, 263, 3, 263, 3894, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 3903, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 3910, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3916, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3925, 8, 266, 1, 267, 1, 267, 3, 267, 3929, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 3935, 8, 267, 10, 267, 12, 267, 3938, 9, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 3947, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3955, 8, 268, 10, 268, 12, 268, 3958, 9, 268, 1, 268, 1, 268, 3, 268, 3962, 8, 268, 1, 269, 1, 269, 3, 269, 3966, 8, 269, 1, 269, 1, 269, 5, 269, 3970, 8, 269, 10, 269, 12, 269, 3973, 9, 269, 1, 269, 1, 269, 3, 269, 3977, 8, 269, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 3, 272, 3987, 8, 272, 1, 273, 1, 273, 3, 273, 3991, 8, 273, 1, 273, 3, 273, 3994, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 3999, 8, 273, 1, 273, 3, 273, 4002, 8, 273, 5, 273, 4004, 8, 273, 10, 273, 12, 273, 4007, 9, 273, 1, 274, 1, 274, 3, 274, 4011, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 4, 276, 4020, 8, 276, 11, 276, 12, 276, 4021, 3, 276, 4024, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 5, 277, 4031, 8, 277, 10, 277, 12, 277, 4034, 9, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 5, 281, 4054, 8, 281, 10, 281, 12, 281, 4057, 9, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 5, 281, 4064, 8, 281, 10, 281, 12, 281, 4067, 9, 281, 3, 281, 4069, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4076, 8, 282, 1, 282, 3, 282, 4079, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4089, 8, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4094, 8, 282, 10, 282, 12, 282, 4097, 9, 282, 3, 282, 4099, 8, 282, 3, 282, 4101, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4112, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4122, 8, 282, 3, 282, 4124, 8, 282, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 285, 1, 285, 3, 285, 4133, 8, 285, 1, 286, 1, 286, 1, 286, 3, 286, 4138, 8, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 4147, 8, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 4, 288, 4158, 8, 288, 11, 288, 12, 288, 4159, 1, 288, 1, 288, 3, 288, 4164, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4174, 8, 289, 11, 289, 12, 289, 4175, 1, 289, 1, 289, 3, 289, 4180, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 4189, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 4208, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 5, 293, 4224, 8, 293, 10, 293, 12, 293, 4227, 9, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4238, 8, 293, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 4253, 8, 295, 1, 295, 1, 295, 3, 295, 4257, 8, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4273, 8, 296, 1, 297, 1, 297, 1, 297, 5, 297, 4278, 8, 297, 10, 297, 12, 297, 4281, 9, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 4294, 8, 298, 1, 299, 5, 299, 4297, 8, 299, 10, 299, 12, 299, 4300, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 4309, 8, 299, 10, 299, 12, 299, 4312, 9, 299, 1, 300, 1, 300, 1, 300, 5, 300, 4317, 8, 300, 10, 300, 12, 300, 4320, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4325, 8, 301, 10, 301, 12, 301, 4328, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4333, 8, 302, 10, 302, 12, 302, 4336, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4341, 8, 303, 10, 303, 12, 303, 4344, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4349, 8, 304, 10, 304, 12, 304, 4352, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4357, 8, 305, 10, 305, 12, 305, 4360, 9, 305, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 3, 308, 4370, 8, 308, 1, 308, 1, 308, 3, 308, 4374, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 4382, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4398, 8, 310, 1, 311, 1, 311, 3, 311, 4402, 8, 311, 1, 312, 1, 312, 1, 312, 3, 312, 4407, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 4420, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 4429, 8, 315, 10, 315, 12, 315, 4432, 9, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 4440, 8, 316, 1, 317, 5, 317, 4443, 8, 317, 10, 317, 12, 317, 4446, 9, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4451, 8, 317, 1, 318, 1, 318, 1, 318, 5, 318, 4456, 8, 318, 10, 318, 12, 318, 4459, 9, 318, 1, 319, 1, 319, 3, 319, 4463, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 4470, 8, 320, 10, 320, 12, 320, 4473, 9, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 3, 321, 4480, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 5, 322, 4486, 8, 322, 10, 322, 12, 322, 4489, 9, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 3, 323, 4496, 8, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 3, 326, 4506, 8, 326, 1, 327, 1, 327, 1, 327, 3, 327, 4511, 8, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 4570, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4576, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4585, 8, 332, 3, 332, 4587, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 5, 332, 4601, 8, 332, 10, 332, 12, 332, 4604, 9, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4611, 8, 332, 1, 332, 1, 332, 3, 332, 4615, 8, 332, 3, 332, 4617, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4623, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4628, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4645, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4671, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4676, 8, 332, 3, 332, 4678, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4706, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4723, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4728, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4737, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 4748, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 4753, 8, 335, 10, 335, 12, 335, 4756, 9, 335, 1, 336, 1, 336, 1, 336, 3, 336, 4761, 8, 336, 1, 337, 1, 337, 1, 337, 3, 337, 4766, 8, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 5, 348, 4791, 8, 348, 10, 348, 12, 348, 4794, 9, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 4804, 8, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 4818, 8, 351, 1, 352, 1, 352, 1, 352, 5, 352, 4823, 8, 352, 10, 352, 12, 352, 4826, 9, 352, 1, 352, 1, 827, 0, 353, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5412, 0, 709, 1, 0, 0, 0, 2, 716, 1, 0, 0, 0, 4, 721, 1, 0, 0, 0, 6, 755, 1, 0, 0, 0, 8, 757, 1, 0, 0, 0, 10, 830, 1, 0, 0, 0, 12, 832, 1, 0, 0, 0, 14, 848, 1, 0, 0, 0, 16, 857, 1, 0, 0, 0, 18, 865, 1, 0, 0, 0, 20, 878, 1, 0, 0, 0, 22, 889, 1, 0, 0, 0, 24, 894, 1, 0, 0, 0, 26, 905, 1, 0, 0, 0, 28, 968, 1, 0, 0, 0, 30, 970, 1, 0, 0, 0, 32, 973, 1, 0, 0, 0, 34, 977, 1, 0, 0, 0, 36, 979, 1, 0, 0, 0, 38, 982, 1, 0, 0, 0, 40, 985, 1, 0, 0, 0, 42, 1029, 1, 0, 0, 0, 44, 1031, 1, 0, 0, 0, 46, 1034, 1, 0, 0, 0, 48, 1037, 1, 0, 0, 0, 50, 1046, 1, 0, 0, 0, 52, 1049, 1, 0, 0, 0, 54, 1064, 1, 0, 0, 0, 56, 1076, 1, 0, 0, 0, 58, 1081, 1, 0, 0, 0, 60, 1101, 1, 0, 0, 0, 62, 1105, 1, 0, 0, 0, 64, 1112, 1, 0, 0, 0, 66, 1137, 1, 0, 0, 0, 68, 1154, 1, 0, 0, 0, 70, 1156, 1, 0, 0, 0, 72, 1341, 1, 0, 0, 0, 74, 1351, 1, 0, 0, 0, 76, 1353, 1, 0, 0, 0, 78, 1358, 1, 0, 0, 0, 80, 1363, 1, 0, 0, 0, 82, 1365, 1, 0, 0, 0, 84, 1369, 1, 0, 0, 0, 86, 1373, 1, 0, 0, 0, 88, 1377, 1, 0, 0, 0, 90, 1381, 1, 0, 0, 0, 92, 1391, 1, 0, 0, 0, 94, 1402, 1, 0, 0, 0, 96, 1419, 1, 0, 0, 0, 98, 1437, 1, 0, 0, 0, 100, 1442, 1, 0, 0, 0, 102, 1445, 1, 0, 0, 0, 104, 1449, 1, 0, 0, 0, 106, 1456, 1, 0, 0, 0, 108, 1465, 1, 0, 0, 0, 110, 1471, 1, 0, 0, 0, 112, 1473, 1, 0, 0, 0, 114, 1487, 1, 0, 0, 0, 116, 1509, 1, 0, 0, 0, 118, 1511, 1, 0, 0, 0, 120, 1519, 1, 0, 0, 0, 122, 1526, 1, 0, 0, 0, 124, 1528, 1, 0, 0, 0, 126, 1542, 1, 0, 0, 0, 128, 1549, 1, 0, 0, 0, 130, 1551, 1, 0, 0, 0, 132, 1555, 1, 0, 0, 0, 134, 1559, 1, 0, 0, 0, 136, 1563, 1, 0, 0, 0, 138, 1567, 1, 0, 0, 0, 140, 1580, 1, 0, 0, 0, 142, 1588, 1, 0, 0, 0, 144, 1591, 1, 0, 0, 0, 146, 1593, 1, 0, 0, 0, 148, 1605, 1, 0, 0, 0, 150, 1615, 1, 0, 0, 0, 152, 1618, 1, 0, 0, 0, 154, 1629, 1, 0, 0, 0, 156, 1637, 1, 0, 0, 0, 158, 1680, 1, 0, 0, 0, 160, 1689, 1, 0, 0, 0, 162, 1717, 1, 0, 0, 0, 164, 1730, 1, 0, 0, 0, 166, 1732, 1, 0, 0, 0, 168, 1738, 1, 0, 0, 0, 170, 1741, 1, 0, 0, 0, 172, 1747, 1, 0, 0, 0, 174, 1753, 1, 0, 0, 0, 176, 1760, 1, 0, 0, 0, 178, 1794, 1, 0, 0, 0, 180, 1802, 1, 0, 0, 0, 182, 1815, 1, 0, 0, 0, 184, 1820, 1, 0, 0, 0, 186, 1831, 1, 0, 0, 0, 188, 1848, 1, 0, 0, 0, 190, 1850, 1, 0, 0, 0, 192, 1855, 1, 0, 0, 0, 194, 1862, 1, 0, 0, 0, 196, 1864, 1, 0, 0, 0, 198, 1867, 1, 0, 0, 0, 200, 1870, 1, 0, 0, 0, 202, 1884, 1, 0, 0, 0, 204, 1892, 1, 0, 0, 0, 206, 1918, 1, 0, 0, 0, 208, 1920, 1, 0, 0, 0, 210, 1937, 1, 0, 0, 0, 212, 1951, 1, 0, 0, 0, 214, 1953, 1, 0, 0, 0, 216, 1956, 1, 0, 0, 0, 218, 1959, 1, 0, 0, 0, 220, 1968, 1, 0, 0, 0, 222, 1988, 1, 0, 0, 0, 224, 1990, 1, 0, 0, 0, 226, 1993, 1, 0, 0, 0, 228, 2006, 1, 0, 0, 0, 230, 2008, 1, 0, 0, 0, 232, 2012, 1, 0, 0, 0, 234, 2020, 1, 0, 0, 0, 236, 2024, 1, 0, 0, 0, 238, 2033, 1, 0, 0, 0, 240, 2039, 1, 0, 0, 0, 242, 2045, 1, 0, 0, 0, 244, 2050, 1, 0, 0, 0, 246, 2096, 1, 0, 0, 0, 248, 2098, 1, 0, 0, 0, 250, 2106, 1, 0, 0, 0, 252, 2114, 1, 0, 0, 0, 254, 2122, 1, 0, 0, 0, 256, 2132, 1, 0, 0, 0, 258, 2134, 1, 0, 0, 0, 260, 2136, 1, 0, 0, 0, 262, 2138, 1, 0, 0, 0, 264, 2151, 1, 0, 0, 0, 266, 2159, 1, 0, 0, 0, 268, 2168, 1, 0, 0, 0, 270, 2172, 1, 0, 0, 0, 272, 2174, 1, 0, 0, 0, 274, 2179, 1, 0, 0, 0, 276, 2181, 1, 0, 0, 0, 278, 2185, 1, 0, 0, 0, 280, 2191, 1, 0, 0, 0, 282, 2199, 1, 0, 0, 0, 284, 2201, 1, 0, 0, 0, 286, 2204, 1, 0, 0, 0, 288, 2211, 1, 0, 0, 0, 290, 2222, 1, 0, 0, 0, 292, 2235, 1, 0, 0, 0, 294, 2237, 1, 0, 0, 0, 296, 2245, 1, 0, 0, 0, 298, 2249, 1, 0, 0, 0, 300, 2257, 1, 0, 0, 0, 302, 2259, 1, 0, 0, 0, 304, 2262, 1, 0, 0, 0, 306, 2269, 1, 0, 0, 0, 308, 2277, 1, 0, 0, 0, 310, 2284, 1, 0, 0, 0, 312, 2292, 1, 0, 0, 0, 314, 2300, 1, 0, 0, 0, 316, 2304, 1, 0, 0, 0, 318, 2306, 1, 0, 0, 0, 320, 2317, 1, 0, 0, 0, 322, 2321, 1, 0, 0, 0, 324, 2333, 1, 0, 0, 0, 326, 2341, 1, 0, 0, 0, 328, 2345, 1, 0, 0, 0, 330, 2357, 1, 0, 0, 0, 332, 2369, 1, 0, 0, 0, 334, 2374, 1, 0, 0, 0, 336, 2379, 1, 0, 0, 0, 338, 2381, 1, 0, 0, 0, 340, 2385, 1, 0, 0, 0, 342, 2389, 1, 0, 0, 0, 344, 2396, 1, 0, 0, 0, 346, 2398, 1, 0, 0, 0, 348, 2411, 1, 0, 0, 0, 350, 2450, 1, 0, 0, 0, 352, 2452, 1, 0, 0, 0, 354, 2457, 1, 0, 0, 0, 356, 2462, 1, 0, 0, 0, 358, 2469, 1, 0, 0, 0, 360, 2474, 1, 0, 0, 0, 362, 2479, 1, 0, 0, 0, 364, 2485, 1, 0, 0, 0, 366, 2487, 1, 0, 0, 0, 368, 2496, 1, 0, 0, 0, 370, 2508, 1, 0, 0, 0, 372, 2588, 1, 0, 0, 0, 374, 2594, 1, 0, 0, 0, 376, 2620, 1, 0, 0, 0, 378, 2622, 1, 0, 0, 0, 380, 2644, 1, 0, 0, 0, 382, 2649, 1, 0, 0, 0, 384, 2653, 1, 0, 0, 0, 386, 2685, 1, 0, 0, 0, 388, 2687, 1, 0, 0, 0, 390, 2698, 1, 0, 0, 0, 392, 2704, 1, 0, 0, 0, 394, 2706, 1, 0, 0, 0, 396, 2738, 1, 0, 0, 0, 398, 2745, 1, 0, 0, 0, 400, 2751, 1, 0, 0, 0, 402, 2757, 1, 0, 0, 0, 404, 2772, 1, 0, 0, 0, 406, 2782, 1, 0, 0, 0, 408, 2790, 1, 0, 0, 0, 410, 2793, 1, 0, 0, 0, 412, 2796, 1, 0, 0, 0, 414, 2799, 1, 0, 0, 0, 416, 2921, 1, 0, 0, 0, 418, 3055, 1, 0, 0, 0, 420, 3083, 1, 0, 0, 0, 422, 3100, 1, 0, 0, 0, 424, 3117, 1, 0, 0, 0, 426, 3119, 1, 0, 0, 0, 428, 3122, 1, 0, 0, 0, 430, 3148, 1, 0, 0, 0, 432, 3153, 1, 0, 0, 0, 434, 3180, 1, 0, 0, 0, 436, 3191, 1, 0, 0, 0, 438, 3328, 1, 0, 0, 0, 440, 3330, 1, 0, 0, 0, 442, 3353, 1, 0, 0, 0, 444, 3365, 1, 0, 0, 0, 446, 3370, 1, 0, 0, 0, 448, 3378, 1, 0, 0, 0, 450, 3386, 1, 0, 0, 0, 452, 3398, 1, 0, 0, 0, 454, 3432, 1, 0, 0, 0, 456, 3434, 1, 0, 0, 0, 458, 3452, 1, 0, 0, 0, 460, 3461, 1, 0, 0, 0, 462, 3491, 1, 0, 0, 0, 464, 3550, 1, 0, 0, 0, 466, 3552, 1, 0, 0, 0, 468, 3581, 1, 0, 0, 0, 470, 3583, 1, 0, 0, 0, 472, 3599, 1, 0, 0, 0, 474, 3611, 1, 0, 0, 0, 476, 3613, 1, 0, 0, 0, 478, 3617, 1, 0, 0, 0, 480, 3627, 1, 0, 0, 0, 482, 3637, 1, 0, 0, 0, 484, 3642, 1, 0, 0, 0, 486, 3649, 1, 0, 0, 0, 488, 3653, 1, 0, 0, 0, 490, 3672, 1, 0, 0, 0, 492, 3677, 1, 0, 0, 0, 494, 3679, 1, 0, 0, 0, 496, 3683, 1, 0, 0, 0, 498, 3709, 1, 0, 0, 0, 500, 3712, 1, 0, 0, 0, 502, 3733, 1, 0, 0, 0, 504, 3738, 1, 0, 0, 0, 506, 3769, 1, 0, 0, 0, 508, 3771, 1, 0, 0, 0, 510, 3795, 1, 0, 0, 0, 512, 3826, 1, 0, 0, 0, 514, 3828, 1, 0, 0, 0, 516, 3830, 1, 0, 0, 0, 518, 3832, 1, 0, 0, 0, 520, 3857, 1, 0, 0, 0, 522, 3859, 1, 0, 0, 0, 524, 3867, 1, 0, 0, 0, 526, 3893, 1, 0, 0, 0, 528, 3895, 1, 0, 0, 0, 530, 3915, 1, 0, 0, 0, 532, 3917, 1, 0, 0, 0, 534, 3928, 1, 0, 0, 0, 536, 3941, 1, 0, 0, 0, 538, 3976, 1, 0, 0, 0, 540, 3978, 1, 0, 0, 0, 542, 3981, 1, 0, 0, 0, 544, 3986, 1, 0, 0, 0, 546, 3988, 1, 0, 0, 0, 548, 4010, 1, 0, 0, 0, 550, 4012, 1, 0, 0, 0, 552, 4016, 1, 0, 0, 0, 554, 4025, 1, 0, 0, 0, 556, 4035, 1, 0, 0, 0, 558, 4039, 1, 0, 0, 0, 560, 4043, 1, 0, 0, 0, 562, 4047, 1, 0, 0, 0, 564, 4123, 1, 0, 0, 0, 566, 4125, 1, 0, 0, 0, 568, 4128, 1, 0, 0, 0, 570, 4132, 1, 0, 0, 0, 572, 4137, 1, 0, 0, 0, 574, 4139, 1, 0, 0, 0, 576, 4150, 1, 0, 0, 0, 578, 4167, 1, 0, 0, 0, 580, 4183, 1, 0, 0, 0, 582, 4192, 1, 0, 0, 0, 584, 4207, 1, 0, 0, 0, 586, 4237, 1, 0, 0, 0, 588, 4239, 1, 0, 0, 0, 590, 4256, 1, 0, 0, 0, 592, 4272, 1, 0, 0, 0, 594, 4274, 1, 0, 0, 0, 596, 4293, 1, 0, 0, 0, 598, 4298, 1, 0, 0, 0, 600, 4313, 1, 0, 0, 0, 602, 4321, 1, 0, 0, 0, 604, 4329, 1, 0, 0, 0, 606, 4337, 1, 0, 0, 0, 608, 4345, 1, 0, 0, 0, 610, 4353, 1, 0, 0, 0, 612, 4361, 1, 0, 0, 0, 614, 4363, 1, 0, 0, 0, 616, 4373, 1, 0, 0, 0, 618, 4381, 1, 0, 0, 0, 620, 4397, 1, 0, 0, 0, 622, 4401, 1, 0, 0, 0, 624, 4406, 1, 0, 0, 0, 626, 4408, 1, 0, 0, 0, 628, 4419, 1, 0, 0, 0, 630, 4421, 1, 0, 0, 0, 632, 4439, 1, 0, 0, 0, 634, 4444, 1, 0, 0, 0, 636, 4452, 1, 0, 0, 0, 638, 4460, 1, 0, 0, 0, 640, 4464, 1, 0, 0, 0, 642, 4476, 1, 0, 0, 0, 644, 4481, 1, 0, 0, 0, 646, 4492, 1, 0, 0, 0, 648, 4499, 1, 0, 0, 0, 650, 4501, 1, 0, 0, 0, 652, 4505, 1, 0, 0, 0, 654, 4507, 1, 0, 0, 0, 656, 4512, 1, 0, 0, 0, 658, 4514, 1, 0, 0, 0, 660, 4516, 1, 0, 0, 0, 662, 4569, 1, 0, 0, 0, 664, 4736, 1, 0, 0, 0, 666, 4738, 1, 0, 0, 0, 668, 4747, 1, 0, 0, 0, 670, 4749, 1, 0, 0, 0, 672, 4760, 1, 0, 0, 0, 674, 4762, 1, 0, 0, 0, 676, 4767, 1, 0, 0, 0, 678, 4769, 1, 0, 0, 0, 680, 4771, 1, 0, 0, 0, 682, 4773, 1, 0, 0, 0, 684, 4775, 1, 0, 0, 0, 686, 4777, 1, 0, 0, 0, 688, 4779, 1, 0, 0, 0, 690, 4781, 1, 0, 0, 0, 692, 4783, 1, 0, 0, 0, 694, 4785, 1, 0, 0, 0, 696, 4787, 1, 0, 0, 0, 698, 4795, 1, 0, 0, 0, 700, 4803, 1, 0, 0, 0, 702, 4817, 1, 0, 0, 0, 704, 4819, 1, 0, 0, 0, 706, 708, 3, 2, 1, 0, 707, 706, 1, 0, 0, 0, 708, 711, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 712, 1, 0, 0, 0, 711, 709, 1, 0, 0, 0, 712, 713, 5, 0, 0, 1, 713, 1, 1, 0, 0, 0, 714, 717, 3, 4, 2, 0, 715, 717, 3, 10, 5, 0, 716, 714, 1, 0, 0, 0, 716, 715, 1, 0, 0, 0, 717, 719, 1, 0, 0, 0, 718, 720, 5, 398, 0, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 3, 1, 0, 0, 0, 721, 731, 5, 119, 0, 0, 722, 724, 3, 6, 3, 0, 723, 722, 1, 0, 0, 0, 724, 727, 1, 0, 0, 0, 725, 723, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 728, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 728, 732, 3, 10, 5, 0, 729, 730, 5, 284, 0, 0, 730, 732, 3, 362, 181, 0, 731, 725, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 5, 1, 0, 0, 0, 733, 756, 5, 122, 0, 0, 734, 756, 5, 138, 0, 0, 735, 756, 5, 88, 0, 0, 736, 738, 5, 37, 0, 0, 737, 739, 7, 0, 0, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 756, 1, 0, 0, 0, 740, 756, 5, 192, 0, 0, 741, 756, 5, 21, 0, 0, 742, 756, 5, 10, 0, 0, 743, 756, 5, 275, 0, 0, 744, 756, 5, 191, 0, 0, 745, 756, 5, 19, 0, 0, 746, 748, 5, 377, 0, 0, 747, 749, 5, 225, 0, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 751, 1, 0, 0, 0, 750, 752, 3, 8, 4, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 756, 1, 0, 0, 0, 753, 756, 5, 79, 0, 0, 754, 756, 5, 78, 0, 0, 755, 733, 1, 0, 0, 0, 755, 734, 1, 0, 0, 0, 755, 735, 1, 0, 0, 0, 755, 736, 1, 0, 0, 0, 755, 740, 1, 0, 0, 0, 755, 741, 1, 0, 0, 0, 755, 742, 1, 0, 0, 0, 755, 743, 1, 0, 0, 0, 755, 744, 1, 0, 0, 0, 755, 745, 1, 0, 0, 0, 755, 746, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 755, 754, 1, 0, 0, 0, 756, 7, 1, 0, 0, 0, 757, 758, 7, 1, 0, 0, 758, 9, 1, 0, 0, 0, 759, 831, 3, 362, 181, 0, 760, 831, 3, 12, 6, 0, 761, 831, 3, 16, 8, 0, 762, 831, 3, 18, 9, 0, 763, 831, 3, 20, 10, 0, 764, 831, 3, 24, 12, 0, 765, 766, 5, 277, 0, 0, 766, 767, 5, 320, 0, 0, 767, 770, 3, 474, 237, 0, 768, 769, 5, 387, 0, 0, 769, 771, 3, 230, 115, 0, 770, 768, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 831, 1, 0, 0, 0, 772, 831, 3, 28, 14, 0, 773, 774, 5, 86, 0, 0, 774, 775, 5, 139, 0, 0, 775, 777, 3, 480, 240, 0, 776, 778, 3, 498, 249, 0, 777, 776, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 831, 1, 0, 0, 0, 779, 780, 5, 365, 0, 0, 780, 781, 3, 480, 240, 0, 781, 783, 3, 394, 197, 0, 782, 784, 3, 498, 249, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 831, 1, 0, 0, 0, 785, 831, 3, 396, 198, 0, 786, 788, 5, 203, 0, 0, 787, 789, 5, 436, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 5, 166, 0, 0, 791, 796, 3, 480, 240, 0, 792, 794, 5, 17, 0, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 797, 3, 652, 326, 0, 796, 793, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 5, 370, 0, 0, 799, 800, 3, 458, 229, 0, 800, 801, 5, 224, 0, 0, 801, 802, 3, 594, 297, 0, 802, 803, 3, 400, 200, 0, 803, 831, 1, 0, 0, 0, 804, 805, 5, 249, 0, 0, 805, 806, 3, 652, 326, 0, 806, 807, 5, 139, 0, 0, 807, 808, 3, 362, 181, 0, 808, 831, 1, 0, 0, 0, 809, 810, 5, 115, 0, 0, 810, 811, 3, 652, 326, 0, 811, 812, 5, 370, 0, 0, 812, 813, 3, 298, 149, 0, 813, 831, 1, 0, 0, 0, 814, 815, 5, 304, 0, 0, 815, 820, 3, 662, 331, 0, 816, 817, 7, 2, 0, 0, 817, 819, 3, 662, 331, 0, 818, 816, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 827, 5, 405, 0, 0, 824, 826, 9, 0, 0, 0, 825, 824, 1, 0, 0, 0, 826, 829, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 831, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 830, 759, 1, 0, 0, 0, 830, 760, 1, 0, 0, 0, 830, 761, 1, 0, 0, 0, 830, 762, 1, 0, 0, 0, 830, 763, 1, 0, 0, 0, 830, 764, 1, 0, 0, 0, 830, 765, 1, 0, 0, 0, 830, 772, 1, 0, 0, 0, 830, 773, 1, 0, 0, 0, 830, 779, 1, 0, 0, 0, 830, 785, 1, 0, 0, 0, 830, 786, 1, 0, 0, 0, 830, 804, 1, 0, 0, 0, 830, 809, 1, 0, 0, 0, 830, 814, 1, 0, 0, 0, 831, 11, 1, 0, 0, 0, 832, 833, 5, 187, 0, 0, 833, 835, 5, 66, 0, 0, 834, 836, 5, 188, 0, 0, 835, 834, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 5, 158, 0, 0, 838, 840, 5, 426, 0, 0, 839, 841, 5, 235, 0, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 5, 166, 0, 0, 843, 844, 5, 329, 0, 0, 844, 846, 3, 638, 319, 0, 845, 847, 3, 56, 28, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 13, 1, 0, 0, 0, 848, 850, 5, 134, 0, 0, 849, 851, 5, 204, 0, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 5, 279, 0, 0, 853, 854, 5, 399, 0, 0, 854, 855, 5, 426, 0, 0, 855, 856, 5, 400, 0, 0, 856, 15, 1, 0, 0, 0, 857, 858, 5, 120, 0, 0, 858, 859, 5, 329, 0, 0, 859, 860, 3, 638, 319, 0, 860, 861, 5, 341, 0, 0, 861, 863, 5, 426, 0, 0, 862, 864, 3, 14, 7, 0, 863, 862, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 17, 1, 0, 0, 0, 865, 871, 5, 153, 0, 0, 866, 868, 5, 123, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 5, 329, 0, 0, 870, 872, 3, 638, 319, 0, 871, 867, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 5, 139, 0, 0, 874, 876, 5, 426, 0, 0, 875, 877, 3, 426, 213, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 19, 1, 0, 0, 0, 878, 879, 5, 277, 0, 0, 879, 880, 5, 103, 0, 0, 880, 883, 3, 22, 11, 0, 881, 882, 5, 278, 0, 0, 882, 884, 3, 22, 11, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 887, 1, 0, 0, 0, 885, 886, 5, 387, 0, 0, 886, 888, 3, 230, 115, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 21, 1, 0, 0, 0, 889, 892, 3, 474, 237, 0, 890, 891, 5, 395, 0, 0, 891, 893, 3, 26, 13, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 23, 1, 0, 0, 0, 894, 895, 5, 277, 0, 0, 895, 896, 5, 187, 0, 0, 896, 899, 3, 22, 11, 0, 897, 898, 5, 166, 0, 0, 898, 900, 3, 474, 237, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 902, 5, 387, 0, 0, 902, 904, 3, 230, 115, 0, 903, 901, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 25, 1, 0, 0, 0, 905, 908, 5, 426, 0, 0, 906, 907, 5, 395, 0, 0, 907, 909, 5, 426, 0, 0, 908, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 27, 1, 0, 0, 0, 910, 969, 3, 42, 21, 0, 911, 969, 3, 46, 23, 0, 912, 969, 3, 48, 24, 0, 913, 969, 3, 438, 219, 0, 914, 969, 3, 54, 27, 0, 915, 969, 3, 52, 26, 0, 916, 969, 3, 414, 207, 0, 917, 969, 3, 64, 32, 0, 918, 969, 3, 72, 36, 0, 919, 969, 3, 138, 69, 0, 920, 969, 3, 160, 80, 0, 921, 969, 3, 176, 88, 0, 922, 969, 3, 180, 90, 0, 923, 969, 3, 184, 92, 0, 924, 969, 3, 182, 91, 0, 925, 969, 3, 174, 87, 0, 926, 969, 3, 178, 89, 0, 927, 969, 3, 146, 73, 0, 928, 969, 3, 152, 76, 0, 929, 969, 3, 148, 74, 0, 930, 969, 3, 150, 75, 0, 931, 969, 3, 154, 77, 0, 932, 969, 3, 156, 78, 0, 933, 969, 3, 158, 79, 0, 934, 969, 3, 66, 33, 0, 935, 969, 3, 76, 38, 0, 936, 969, 3, 82, 41, 0, 937, 969, 3, 78, 39, 0, 938, 969, 3, 84, 42, 0, 939, 969, 3, 86, 43, 0, 940, 969, 3, 88, 44, 0, 941, 969, 3, 90, 45, 0, 942, 969, 3, 92, 46, 0, 943, 969, 3, 106, 53, 0, 944, 969, 3, 98, 49, 0, 945, 969, 3, 108, 54, 0, 946, 969, 3, 100, 50, 0, 947, 969, 3, 94, 47, 0, 948, 969, 3, 96, 48, 0, 949, 969, 3, 104, 52, 0, 950, 969, 3, 102, 51, 0, 951, 952, 5, 1, 0, 0, 952, 954, 7, 3, 0, 0, 953, 955, 5, 431, 0, 0, 954, 953, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 969, 1, 0, 0, 0, 958, 959, 5, 176, 0, 0, 959, 961, 5, 258, 0, 0, 960, 962, 5, 426, 0, 0, 961, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 969, 1, 0, 0, 0, 965, 969, 3, 664, 332, 0, 966, 969, 3, 440, 220, 0, 967, 969, 3, 442, 221, 0, 968, 910, 1, 0, 0, 0, 968, 911, 1, 0, 0, 0, 968, 912, 1, 0, 0, 0, 968, 913, 1, 0, 0, 0, 968, 914, 1, 0, 0, 0, 968, 915, 1, 0, 0, 0, 968, 916, 1, 0, 0, 0, 968, 917, 1, 0, 0, 0, 968, 918, 1, 0, 0, 0, 968, 919, 1, 0, 0, 0, 968, 920, 1, 0, 0, 0, 968, 921, 1, 0, 0, 0, 968, 922, 1, 0, 0, 0, 968, 923, 1, 0, 0, 0, 968, 924, 1, 0, 0, 0, 968, 925, 1, 0, 0, 0, 968, 926, 1, 0, 0, 0, 968, 927, 1, 0, 0, 0, 968, 928, 1, 0, 0, 0, 968, 929, 1, 0, 0, 0, 968, 930, 1, 0, 0, 0, 968, 931, 1, 0, 0, 0, 968, 932, 1, 0, 0, 0, 968, 933, 1, 0, 0, 0, 968, 934, 1, 0, 0, 0, 968, 935, 1, 0, 0, 0, 968, 936, 1, 0, 0, 0, 968, 937, 1, 0, 0, 0, 968, 938, 1, 0, 0, 0, 968, 939, 1, 0, 0, 0, 968, 940, 1, 0, 0, 0, 968, 941, 1, 0, 0, 0, 968, 942, 1, 0, 0, 0, 968, 943, 1, 0, 0, 0, 968, 944, 1, 0, 0, 0, 968, 945, 1, 0, 0, 0, 968, 946, 1, 0, 0, 0, 968, 947, 1, 0, 0, 0, 968, 948, 1, 0, 0, 0, 968, 949, 1, 0, 0, 0, 968, 950, 1, 0, 0, 0, 968, 951, 1, 0, 0, 0, 968, 958, 1, 0, 0, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 29, 1, 0, 0, 0, 970, 971, 5, 151, 0, 0, 971, 972, 5, 117, 0, 0, 972, 31, 1, 0, 0, 0, 973, 974, 5, 151, 0, 0, 974, 975, 5, 216, 0, 0, 975, 976, 5, 117, 0, 0, 976, 33, 1, 0, 0, 0, 977, 978, 7, 4, 0, 0, 978, 35, 1, 0, 0, 0, 979, 980, 3, 676, 338, 0, 980, 981, 5, 284, 0, 0, 981, 37, 1, 0, 0, 0, 982, 983, 3, 678, 339, 0, 983, 984, 5, 284, 0, 0, 984, 39, 1, 0, 0, 0, 985, 986, 5, 321, 0, 0, 986, 987, 5, 17, 0, 0, 987, 988, 5, 92, 0, 0, 988, 41, 1, 0, 0, 0, 989, 991, 5, 58, 0, 0, 990, 992, 5, 273, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 995, 3, 70, 35, 0, 994, 996, 3, 32, 16, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 999, 3, 476, 238, 0, 998, 1000, 3, 50, 25, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1002, 1, 0, 0, 0, 1001, 1003, 3, 426, 213, 0, 1002, 1001, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1006, 1, 0, 0, 0, 1004, 1005, 5, 196, 0, 0, 1005, 1007, 5, 426, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1011, 1, 0, 0, 0, 1008, 1009, 5, 387, 0, 0, 1009, 1010, 5, 76, 0, 0, 1010, 1012, 3, 230, 115, 0, 1011, 1008, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1030, 1, 0, 0, 0, 1013, 1014, 5, 58, 0, 0, 1014, 1015, 5, 273, 0, 0, 1015, 1017, 3, 70, 35, 0, 1016, 1018, 3, 32, 16, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1021, 3, 476, 238, 0, 1020, 1022, 3, 50, 25, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1027, 3, 44, 22, 0, 1024, 1025, 5, 387, 0, 0, 1025, 1026, 5, 76, 0, 0, 1026, 1028, 3, 230, 115, 0, 1027, 1024, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1030, 1, 0, 0, 0, 1029, 989, 1, 0, 0, 0, 1029, 1013, 1, 0, 0, 0, 1030, 43, 1, 0, 0, 0, 1031, 1032, 5, 370, 0, 0, 1032, 1033, 3, 474, 237, 0, 1033, 45, 1, 0, 0, 0, 1034, 1035, 5, 368, 0, 0, 1035, 1036, 3, 474, 237, 0, 1036, 47, 1, 0, 0, 0, 1037, 1038, 5, 101, 0, 0, 1038, 1040, 3, 70, 35, 0, 1039, 1041, 3, 30, 15, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1044, 3, 474, 237, 0, 1043, 1045, 3, 34, 17, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 49, 1, 0, 0, 0, 1046, 1047, 5, 47, 0, 0, 1047, 1048, 5, 426, 0, 0, 1048, 51, 1, 0, 0, 0, 1049, 1051, 5, 351, 0, 0, 1050, 1052, 5, 329, 0, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1059, 3, 638, 319, 0, 1054, 1055, 5, 46, 0, 0, 1055, 1056, 5, 399, 0, 0, 1056, 1057, 3, 254, 127, 0, 1057, 1058, 5, 400, 0, 0, 1058, 1060, 1, 0, 0, 0, 1059, 1054, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1062, 1, 0, 0, 0, 1061, 1063, 5, 135, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 53, 1, 0, 0, 0, 1064, 1065, 5, 101, 0, 0, 1065, 1067, 5, 329, 0, 0, 1066, 1068, 3, 30, 15, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 3, 480, 240, 0, 1070, 1072, 5, 255, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1074, 1, 0, 0, 0, 1073, 1075, 3, 14, 7, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 55, 1, 0, 0, 0, 1076, 1077, 5, 160, 0, 0, 1077, 1078, 5, 426, 0, 0, 1078, 1079, 5, 301, 0, 0, 1079, 1080, 5, 426, 0, 0, 1080, 57, 1, 0, 0, 0, 1081, 1084, 3, 652, 326, 0, 1082, 1083, 5, 395, 0, 0, 1083, 1085, 3, 652, 326, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1099, 1, 0, 0, 0, 1086, 1096, 3, 652, 326, 0, 1087, 1092, 5, 395, 0, 0, 1088, 1093, 5, 104, 0, 0, 1089, 1093, 5, 175, 0, 0, 1090, 1093, 5, 375, 0, 0, 1091, 1093, 3, 652, 326, 0, 1092, 1088, 1, 0, 0, 0, 1092, 1089, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1091, 1, 0, 0, 0, 1093, 1095, 1, 0, 0, 0, 1094, 1087, 1, 0, 0, 0, 1095, 1098, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1100, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1086, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 59, 1, 0, 0, 0, 1101, 1103, 3, 58, 29, 0, 1102, 1104, 3, 640, 320, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 61, 1, 0, 0, 0, 1105, 1107, 3, 478, 239, 0, 1106, 1108, 3, 640, 320, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1111, 3, 262, 131, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 63, 1, 0, 0, 0, 1112, 1135, 7, 5, 0, 0, 1113, 1115, 3, 70, 35, 0, 1114, 1116, 5, 122, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 3, 474, 237, 0, 1118, 1136, 1, 0, 0, 0, 1119, 1121, 5, 69, 0, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1136, 3, 474, 237, 0, 1124, 1126, 5, 141, 0, 0, 1125, 1127, 5, 122, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1136, 3, 570, 285, 0, 1129, 1132, 5, 138, 0, 0, 1130, 1132, 5, 122, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1130, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1136, 3, 62, 31, 0, 1134, 1136, 3, 62, 31, 0, 1135, 1113, 1, 0, 0, 0, 1135, 1119, 1, 0, 0, 0, 1135, 1124, 1, 0, 0, 0, 1135, 1131, 1, 0, 0, 0, 1135, 1134, 1, 0, 0, 0, 1136, 65, 1, 0, 0, 0, 1137, 1138, 5, 10, 0, 0, 1138, 1139, 5, 329, 0, 0, 1139, 1152, 3, 638, 319, 0, 1140, 1141, 5, 52, 0, 0, 1141, 1148, 5, 319, 0, 0, 1142, 1149, 5, 215, 0, 0, 1143, 1144, 5, 134, 0, 0, 1144, 1146, 5, 46, 0, 0, 1145, 1147, 3, 254, 127, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 1, 0, 0, 0, 1148, 1142, 1, 0, 0, 0, 1148, 1143, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1153, 1, 0, 0, 0, 1150, 1151, 5, 33, 0, 0, 1151, 1153, 5, 204, 0, 0, 1152, 1140, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 67, 1, 0, 0, 0, 1154, 1155, 7, 6, 0, 0, 1155, 69, 1, 0, 0, 0, 1156, 1157, 7, 7, 0, 0, 1157, 71, 1, 0, 0, 0, 1158, 1159, 5, 308, 0, 0, 1159, 1162, 7, 8, 0, 0, 1160, 1161, 5, 184, 0, 0, 1161, 1163, 3, 194, 97, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1342, 1, 0, 0, 0, 1164, 1166, 5, 308, 0, 0, 1165, 1167, 5, 122, 0, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1172, 5, 330, 0, 0, 1169, 1170, 3, 68, 34, 0, 1170, 1171, 3, 474, 237, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1169, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1176, 3, 74, 37, 0, 1175, 1174, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1342, 1, 0, 0, 0, 1177, 1178, 5, 308, 0, 0, 1178, 1182, 5, 379, 0, 0, 1179, 1180, 3, 68, 34, 0, 1180, 1181, 3, 474, 237, 0, 1181, 1183, 1, 0, 0, 0, 1182, 1179, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1187, 1, 0, 0, 0, 1184, 1185, 5, 184, 0, 0, 1185, 1188, 3, 194, 97, 0, 1186, 1188, 3, 194, 97, 0, 1187, 1184, 1, 0, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1342, 1, 0, 0, 0, 1189, 1190, 5, 308, 0, 0, 1190, 1191, 5, 202, 0, 0, 1191, 1195, 5, 379, 0, 0, 1192, 1193, 3, 68, 34, 0, 1193, 1194, 3, 474, 237, 0, 1194, 1196, 1, 0, 0, 0, 1195, 1192, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1200, 1, 0, 0, 0, 1197, 1198, 5, 184, 0, 0, 1198, 1201, 3, 194, 97, 0, 1199, 1201, 3, 194, 97, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1342, 1, 0, 0, 0, 1202, 1204, 5, 308, 0, 0, 1203, 1205, 5, 315, 0, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 5, 46, 0, 0, 1207, 1208, 3, 68, 34, 0, 1208, 1212, 3, 478, 239, 0, 1209, 1210, 3, 68, 34, 0, 1210, 1211, 3, 474, 237, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1209, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1217, 1, 0, 0, 0, 1214, 1215, 5, 184, 0, 0, 1215, 1218, 3, 194, 97, 0, 1216, 1218, 3, 194, 97, 0, 1217, 1214, 1, 0, 0, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1342, 1, 0, 0, 0, 1219, 1220, 5, 308, 0, 0, 1220, 1223, 5, 142, 0, 0, 1221, 1222, 5, 184, 0, 0, 1222, 1224, 3, 570, 285, 0, 1223, 1221, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1342, 1, 0, 0, 0, 1225, 1226, 5, 308, 0, 0, 1226, 1227, 5, 239, 0, 0, 1227, 1229, 3, 478, 239, 0, 1228, 1230, 3, 640, 320, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1232, 1, 0, 0, 0, 1231, 1233, 3, 498, 249, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1235, 1, 0, 0, 0, 1234, 1236, 3, 554, 277, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 388, 194, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1342, 1, 0, 0, 0, 1240, 1241, 5, 308, 0, 0, 1241, 1247, 5, 58, 0, 0, 1242, 1243, 3, 70, 35, 0, 1243, 1244, 3, 474, 237, 0, 1244, 1248, 1, 0, 0, 0, 1245, 1246, 5, 329, 0, 0, 1246, 1248, 3, 480, 240, 0, 1247, 1242, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1342, 1, 0, 0, 0, 1249, 1250, 5, 308, 0, 0, 1250, 1251, 5, 329, 0, 0, 1251, 1255, 5, 122, 0, 0, 1252, 1253, 3, 68, 34, 0, 1253, 1254, 3, 474, 237, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1252, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 5, 184, 0, 0, 1258, 1260, 3, 194, 97, 0, 1259, 1261, 3, 640, 320, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1342, 1, 0, 0, 0, 1262, 1263, 5, 308, 0, 0, 1263, 1264, 5, 332, 0, 0, 1264, 1268, 3, 480, 240, 0, 1265, 1266, 5, 399, 0, 0, 1266, 1267, 5, 426, 0, 0, 1267, 1269, 5, 400, 0, 0, 1268, 1265, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1342, 1, 0, 0, 0, 1270, 1271, 5, 308, 0, 0, 1271, 1283, 5, 191, 0, 0, 1272, 1273, 3, 70, 35, 0, 1273, 1275, 3, 474, 237, 0, 1274, 1276, 5, 122, 0, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1284, 1, 0, 0, 0, 1277, 1279, 3, 60, 30, 0, 1278, 1277, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1282, 5, 122, 0, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1272, 1, 0, 0, 0, 1283, 1278, 1, 0, 0, 0, 1284, 1342, 1, 0, 0, 0, 1285, 1286, 5, 308, 0, 0, 1286, 1313, 5, 50, 0, 0, 1287, 1288, 5, 51, 0, 0, 1288, 1289, 5, 405, 0, 0, 1289, 1314, 5, 431, 0, 0, 1290, 1291, 3, 70, 35, 0, 1291, 1292, 3, 474, 237, 0, 1292, 1297, 1, 0, 0, 0, 1293, 1295, 3, 60, 30, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1290, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1297, 1299, 1, 0, 0, 0, 1298, 1300, 3, 408, 204, 0, 1299, 1298, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1303, 3, 410, 205, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 412, 206, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 554, 277, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 388, 194, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1287, 1, 0, 0, 0, 1313, 1296, 1, 0, 0, 0, 1314, 1342, 1, 0, 0, 0, 1315, 1316, 5, 308, 0, 0, 1316, 1342, 5, 346, 0, 0, 1317, 1318, 5, 308, 0, 0, 1318, 1319, 5, 54, 0, 0, 1319, 1342, 5, 426, 0, 0, 1320, 1321, 5, 308, 0, 0, 1321, 1325, 5, 280, 0, 0, 1322, 1323, 5, 243, 0, 0, 1323, 1326, 3, 652, 326, 0, 1324, 1326, 5, 244, 0, 0, 1325, 1322, 1, 0, 0, 0, 1325, 1324, 1, 0, 0, 0, 1326, 1342, 1, 0, 0, 0, 1327, 1328, 5, 308, 0, 0, 1328, 1342, 5, 70, 0, 0, 1329, 1331, 5, 308, 0, 0, 1330, 1332, 5, 138, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 7, 9, 0, 0, 1334, 1335, 5, 224, 0, 0, 1335, 1339, 3, 480, 240, 0, 1336, 1337, 3, 68, 34, 0, 1337, 1338, 3, 474, 237, 0, 1338, 1340, 1, 0, 0, 0, 1339, 1336, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1158, 1, 0, 0, 0, 1341, 1164, 1, 0, 0, 0, 1341, 1177, 1, 0, 0, 0, 1341, 1189, 1, 0, 0, 0, 1341, 1202, 1, 0, 0, 0, 1341, 1219, 1, 0, 0, 0, 1341, 1225, 1, 0, 0, 0, 1341, 1240, 1, 0, 0, 0, 1341, 1249, 1, 0, 0, 0, 1341, 1262, 1, 0, 0, 0, 1341, 1270, 1, 0, 0, 0, 1341, 1285, 1, 0, 0, 0, 1341, 1315, 1, 0, 0, 0, 1341, 1317, 1, 0, 0, 0, 1341, 1320, 1, 0, 0, 0, 1341, 1327, 1, 0, 0, 0, 1341, 1329, 1, 0, 0, 0, 1342, 73, 1, 0, 0, 0, 1343, 1344, 5, 384, 0, 0, 1344, 1345, 3, 652, 326, 0, 1345, 1346, 5, 405, 0, 0, 1346, 1347, 5, 426, 0, 0, 1347, 1352, 1, 0, 0, 0, 1348, 1349, 5, 184, 0, 0, 1349, 1352, 3, 194, 97, 0, 1350, 1352, 3, 194, 97, 0, 1351, 1343, 1, 0, 0, 0, 1351, 1348, 1, 0, 0, 0, 1351, 1350, 1, 0, 0, 0, 1352, 75, 1, 0, 0, 0, 1353, 1354, 5, 190, 0, 0, 1354, 1355, 5, 329, 0, 0, 1355, 1356, 3, 638, 319, 0, 1356, 1357, 3, 80, 40, 0, 1357, 77, 1, 0, 0, 0, 1358, 1359, 5, 190, 0, 0, 1359, 1360, 3, 70, 35, 0, 1360, 1361, 3, 474, 237, 0, 1361, 1362, 3, 80, 40, 0, 1362, 79, 1, 0, 0, 0, 1363, 1364, 7, 10, 0, 0, 1364, 81, 1, 0, 0, 0, 1365, 1366, 5, 361, 0, 0, 1366, 1367, 5, 329, 0, 0, 1367, 1368, 3, 638, 319, 0, 1368, 83, 1, 0, 0, 0, 1369, 1370, 5, 361, 0, 0, 1370, 1371, 3, 70, 35, 0, 1371, 1372, 3, 474, 237, 0, 1372, 85, 1, 0, 0, 0, 1373, 1374, 5, 58, 0, 0, 1374, 1375, 5, 287, 0, 0, 1375, 1376, 3, 652, 326, 0, 1376, 87, 1, 0, 0, 0, 1377, 1378, 5, 101, 0, 0, 1378, 1379, 5, 287, 0, 0, 1379, 1380, 3, 652, 326, 0, 1380, 89, 1, 0, 0, 0, 1381, 1382, 5, 143, 0, 0, 1382, 1384, 3, 118, 59, 0, 1383, 1385, 3, 112, 56, 0, 1384, 1383, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 5, 341, 0, 0, 1387, 1389, 3, 124, 62, 0, 1388, 1390, 3, 130, 65, 0, 1389, 1388, 1, 0, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 91, 1, 0, 0, 0, 1391, 1393, 5, 283, 0, 0, 1392, 1394, 3, 132, 66, 0, 1393, 1392, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1397, 3, 118, 59, 0, 1396, 1398, 3, 112, 56, 0, 1397, 1396, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 5, 139, 0, 0, 1400, 1401, 3, 124, 62, 0, 1401, 93, 1, 0, 0, 0, 1402, 1404, 5, 143, 0, 0, 1403, 1405, 5, 287, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1411, 3, 652, 326, 0, 1407, 1408, 5, 397, 0, 0, 1408, 1410, 3, 652, 326, 0, 1409, 1407, 1, 0, 0, 0, 1410, 1413, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1414, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1414, 1415, 5, 341, 0, 0, 1415, 1417, 3, 124, 62, 0, 1416, 1418, 3, 136, 68, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 95, 1, 0, 0, 0, 1419, 1421, 5, 283, 0, 0, 1420, 1422, 3, 134, 67, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 5, 287, 0, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1431, 3, 652, 326, 0, 1427, 1428, 5, 397, 0, 0, 1428, 1430, 3, 652, 326, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1433, 1, 0, 0, 0, 1431, 1429, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1431, 1, 0, 0, 0, 1434, 1435, 5, 139, 0, 0, 1435, 1436, 3, 124, 62, 0, 1436, 97, 1, 0, 0, 0, 1437, 1438, 5, 308, 0, 0, 1438, 1439, 5, 287, 0, 0, 1439, 1440, 5, 143, 0, 0, 1440, 1441, 3, 126, 63, 0, 1441, 99, 1, 0, 0, 0, 1442, 1443, 5, 308, 0, 0, 1443, 1444, 5, 288, 0, 0, 1444, 101, 1, 0, 0, 0, 1445, 1446, 5, 308, 0, 0, 1446, 1447, 5, 62, 0, 0, 1447, 1448, 5, 288, 0, 0, 1448, 103, 1, 0, 0, 0, 1449, 1450, 5, 304, 0, 0, 1450, 1454, 5, 287, 0, 0, 1451, 1455, 5, 7, 0, 0, 1452, 1455, 5, 213, 0, 0, 1453, 1455, 3, 652, 326, 0, 1454, 1451, 1, 0, 0, 0, 1454, 1452, 1, 0, 0, 0, 1454, 1453, 1, 0, 0, 0, 1455, 105, 1, 0, 0, 0, 1456, 1457, 5, 308, 0, 0, 1457, 1459, 5, 143, 0, 0, 1458, 1460, 3, 126, 63, 0, 1459, 1458, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1463, 1, 0, 0, 0, 1461, 1462, 5, 224, 0, 0, 1462, 1464, 3, 110, 55, 0, 1463, 1461, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 107, 1, 0, 0, 0, 1465, 1466, 5, 308, 0, 0, 1466, 1467, 5, 252, 0, 0, 1467, 1468, 3, 652, 326, 0, 1468, 109, 1, 0, 0, 0, 1469, 1472, 5, 7, 0, 0, 1470, 1472, 3, 116, 58, 0, 1471, 1469, 1, 0, 0, 0, 1471, 1470, 1, 0, 0, 0, 1472, 111, 1, 0, 0, 0, 1473, 1474, 5, 224, 0, 0, 1474, 1475, 3, 114, 57, 0, 1475, 113, 1, 0, 0, 0, 1476, 1477, 3, 70, 35, 0, 1477, 1478, 3, 474, 237, 0, 1478, 1488, 1, 0, 0, 0, 1479, 1481, 5, 329, 0, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1488, 3, 638, 319, 0, 1483, 1484, 5, 366, 0, 0, 1484, 1488, 5, 426, 0, 0, 1485, 1486, 5, 303, 0, 0, 1486, 1488, 3, 652, 326, 0, 1487, 1476, 1, 0, 0, 0, 1487, 1480, 1, 0, 0, 0, 1487, 1483, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 115, 1, 0, 0, 0, 1489, 1490, 3, 70, 35, 0, 1490, 1491, 3, 474, 237, 0, 1491, 1510, 1, 0, 0, 0, 1492, 1494, 5, 329, 0, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1500, 3, 480, 240, 0, 1496, 1497, 5, 399, 0, 0, 1497, 1498, 3, 254, 127, 0, 1498, 1499, 5, 400, 0, 0, 1499, 1501, 1, 0, 0, 0, 1500, 1496, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1503, 1, 0, 0, 0, 1502, 1504, 3, 640, 320, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1510, 1, 0, 0, 0, 1505, 1506, 5, 366, 0, 0, 1506, 1510, 5, 426, 0, 0, 1507, 1508, 5, 303, 0, 0, 1508, 1510, 3, 652, 326, 0, 1509, 1489, 1, 0, 0, 0, 1509, 1493, 1, 0, 0, 0, 1509, 1505, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1510, 117, 1, 0, 0, 0, 1511, 1516, 3, 120, 60, 0, 1512, 1513, 5, 397, 0, 0, 1513, 1515, 3, 120, 60, 0, 1514, 1512, 1, 0, 0, 0, 1515, 1518, 1, 0, 0, 0, 1516, 1514, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 119, 1, 0, 0, 0, 1518, 1516, 1, 0, 0, 0, 1519, 1524, 3, 122, 61, 0, 1520, 1521, 5, 399, 0, 0, 1521, 1522, 3, 254, 127, 0, 1522, 1523, 5, 400, 0, 0, 1523, 1525, 1, 0, 0, 0, 1524, 1520, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 121, 1, 0, 0, 0, 1526, 1527, 7, 11, 0, 0, 1527, 123, 1, 0, 0, 0, 1528, 1533, 3, 126, 63, 0, 1529, 1530, 5, 397, 0, 0, 1530, 1532, 3, 126, 63, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1535, 1, 0, 0, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 125, 1, 0, 0, 0, 1535, 1533, 1, 0, 0, 0, 1536, 1537, 5, 369, 0, 0, 1537, 1543, 3, 656, 328, 0, 1538, 1539, 5, 144, 0, 0, 1539, 1543, 3, 656, 328, 0, 1540, 1541, 5, 287, 0, 0, 1541, 1543, 3, 652, 326, 0, 1542, 1536, 1, 0, 0, 0, 1542, 1538, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1543, 127, 1, 0, 0, 0, 1544, 1545, 5, 369, 0, 0, 1545, 1550, 3, 656, 328, 0, 1546, 1547, 5, 287, 0, 0, 1547, 1550, 3, 652, 326, 0, 1548, 1550, 3, 652, 326, 0, 1549, 1544, 1, 0, 0, 0, 1549, 1546, 1, 0, 0, 0, 1549, 1548, 1, 0, 0, 0, 1550, 129, 1, 0, 0, 0, 1551, 1552, 5, 387, 0, 0, 1552, 1553, 5, 143, 0, 0, 1553, 1554, 5, 227, 0, 0, 1554, 131, 1, 0, 0, 0, 1555, 1556, 5, 143, 0, 0, 1556, 1557, 5, 227, 0, 0, 1557, 1558, 5, 134, 0, 0, 1558, 133, 1, 0, 0, 0, 1559, 1560, 5, 5, 0, 0, 1560, 1561, 5, 227, 0, 0, 1561, 1562, 5, 134, 0, 0, 1562, 135, 1, 0, 0, 0, 1563, 1564, 5, 387, 0, 0, 1564, 1565, 5, 5, 0, 0, 1565, 1566, 5, 227, 0, 0, 1566, 137, 1, 0, 0, 0, 1567, 1569, 5, 212, 0, 0, 1568, 1570, 5, 276, 0, 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 5, 329, 0, 0, 1572, 1578, 3, 480, 240, 0, 1573, 1574, 7, 12, 0, 0, 1574, 1576, 5, 239, 0, 0, 1575, 1577, 3, 644, 322, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 1, 0, 0, 0, 1578, 1573, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 139, 1, 0, 0, 0, 1580, 1585, 3, 142, 71, 0, 1581, 1582, 5, 397, 0, 0, 1582, 1584, 3, 142, 71, 0, 1583, 1581, 1, 0, 0, 0, 1584, 1587, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 141, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1589, 3, 144, 72, 0, 1589, 1590, 5, 426, 0, 0, 1590, 143, 1, 0, 0, 0, 1591, 1592, 7, 13, 0, 0, 1592, 145, 1, 0, 0, 0, 1593, 1595, 5, 58, 0, 0, 1594, 1596, 5, 333, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 5, 141, 0, 0, 1598, 1599, 3, 568, 284, 0, 1599, 1600, 5, 17, 0, 0, 1600, 1603, 5, 426, 0, 0, 1601, 1602, 5, 370, 0, 0, 1602, 1604, 3, 140, 70, 0, 1603, 1601, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 147, 1, 0, 0, 0, 1605, 1607, 5, 101, 0, 0, 1606, 1608, 5, 333, 0, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1611, 5, 141, 0, 0, 1610, 1612, 3, 30, 15, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 3, 570, 285, 0, 1614, 149, 1, 0, 0, 0, 1615, 1616, 5, 271, 0, 0, 1616, 1617, 7, 14, 0, 0, 1617, 151, 1, 0, 0, 0, 1618, 1619, 5, 58, 0, 0, 1619, 1620, 5, 333, 0, 0, 1620, 1621, 5, 194, 0, 0, 1621, 1622, 5, 432, 0, 0, 1622, 1624, 5, 399, 0, 0, 1623, 1625, 3, 248, 124, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 5, 400, 0, 0, 1627, 1628, 3, 594, 297, 0, 1628, 153, 1, 0, 0, 0, 1629, 1630, 5, 101, 0, 0, 1630, 1631, 5, 333, 0, 0, 1631, 1633, 5, 194, 0, 0, 1632, 1634, 3, 30, 15, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1636, 5, 432, 0, 0, 1636, 155, 1, 0, 0, 0, 1637, 1638, 5, 58, 0, 0, 1638, 1639, 5, 155, 0, 0, 1639, 1640, 3, 652, 326, 0, 1640, 1641, 5, 224, 0, 0, 1641, 1642, 5, 329, 0, 0, 1642, 1643, 3, 480, 240, 0, 1643, 1644, 3, 266, 133, 0, 1644, 1645, 5, 17, 0, 0, 1645, 1649, 5, 426, 0, 0, 1646, 1647, 5, 387, 0, 0, 1647, 1648, 5, 84, 0, 0, 1648, 1650, 5, 265, 0, 0, 1649, 1646, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1653, 1, 0, 0, 0, 1651, 1652, 5, 150, 0, 0, 1652, 1654, 3, 226, 113, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1658, 1, 0, 0, 0, 1655, 1656, 5, 154, 0, 0, 1656, 1657, 5, 329, 0, 0, 1657, 1659, 3, 480, 240, 0, 1658, 1655, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1663, 1, 0, 0, 0, 1660, 1661, 5, 238, 0, 0, 1661, 1662, 5, 32, 0, 0, 1662, 1664, 3, 266, 133, 0, 1663, 1660, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1669, 1, 0, 0, 0, 1665, 1667, 3, 222, 111, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1670, 3, 246, 123, 0, 1669, 1666, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1672, 1, 0, 0, 0, 1671, 1673, 3, 426, 213, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1676, 3, 224, 112, 0, 1675, 1674, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 196, 98, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 157, 1, 0, 0, 0, 1680, 1681, 5, 101, 0, 0, 1681, 1683, 5, 155, 0, 0, 1682, 1684, 3, 30, 15, 0, 1683, 1682, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 3, 652, 326, 0, 1686, 1687, 5, 224, 0, 0, 1687, 1688, 3, 480, 240, 0, 1688, 159, 1, 0, 0, 0, 1689, 1692, 5, 58, 0, 0, 1690, 1691, 5, 228, 0, 0, 1691, 1693, 5, 278, 0, 0, 1692, 1690, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1696, 5, 378, 0, 0, 1695, 1697, 3, 32, 16, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1703, 3, 486, 243, 0, 1699, 1700, 5, 399, 0, 0, 1700, 1701, 3, 306, 153, 0, 1701, 1702, 5, 400, 0, 0, 1702, 1704, 1, 0, 0, 0, 1703, 1699, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1706, 1, 0, 0, 0, 1705, 1707, 3, 196, 98, 0, 1706, 1705, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1710, 3, 162, 81, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 224, 112, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 5, 17, 0, 0, 1715, 1716, 3, 382, 191, 0, 1716, 161, 1, 0, 0, 0, 1717, 1718, 5, 238, 0, 0, 1718, 1724, 5, 224, 0, 0, 1719, 1720, 5, 399, 0, 0, 1720, 1725, 3, 254, 127, 0, 1721, 1722, 5, 316, 0, 0, 1722, 1723, 5, 399, 0, 0, 1723, 1725, 3, 204, 102, 0, 1724, 1719, 1, 0, 0, 0, 1724, 1721, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 5, 400, 0, 0, 1727, 163, 1, 0, 0, 0, 1728, 1731, 3, 166, 83, 0, 1729, 1731, 3, 168, 84, 0, 1730, 1728, 1, 0, 0, 0, 1730, 1729, 1, 0, 0, 0, 1731, 165, 1, 0, 0, 0, 1732, 1733, 5, 42, 0, 0, 1733, 1734, 5, 224, 0, 0, 1734, 1735, 5, 399, 0, 0, 1735, 1736, 3, 254, 127, 0, 1736, 1737, 5, 400, 0, 0, 1737, 167, 1, 0, 0, 0, 1738, 1739, 3, 170, 85, 0, 1739, 1740, 3, 172, 86, 0, 1740, 169, 1, 0, 0, 0, 1741, 1742, 5, 98, 0, 0, 1742, 1743, 5, 224, 0, 0, 1743, 1744, 5, 399, 0, 0, 1744, 1745, 3, 254, 127, 0, 1745, 1746, 5, 400, 0, 0, 1746, 171, 1, 0, 0, 0, 1747, 1748, 5, 315, 0, 0, 1748, 1749, 5, 224, 0, 0, 1749, 1750, 5, 399, 0, 0, 1750, 1751, 3, 254, 127, 0, 1751, 1752, 5, 400, 0, 0, 1752, 173, 1, 0, 0, 0, 1753, 1754, 5, 101, 0, 0, 1754, 1756, 5, 378, 0, 0, 1755, 1757, 3, 30, 15, 0, 1756, 1755, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 3, 484, 242, 0, 1759, 175, 1, 0, 0, 0, 1760, 1761, 5, 58, 0, 0, 1761, 1762, 5, 202, 0, 0, 1762, 1764, 5, 378, 0, 0, 1763, 1765, 3, 32, 16, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1768, 3, 486, 243, 0, 1767, 1769, 3, 38, 19, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 1, 0, 0, 0, 1770, 1772, 3, 196, 98, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1775, 3, 162, 81, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 164, 82, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 222, 111, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 246, 123, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 426, 213, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 224, 112, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 5, 17, 0, 0, 1792, 1793, 3, 382, 191, 0, 1793, 177, 1, 0, 0, 0, 1794, 1795, 5, 101, 0, 0, 1795, 1796, 5, 202, 0, 0, 1796, 1798, 5, 378, 0, 0, 1797, 1799, 3, 30, 15, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 3, 484, 242, 0, 1801, 179, 1, 0, 0, 0, 1802, 1803, 5, 58, 0, 0, 1803, 1804, 5, 293, 0, 0, 1804, 1805, 5, 258, 0, 0, 1805, 1806, 3, 652, 326, 0, 1806, 1808, 3, 188, 94, 0, 1807, 1809, 3, 190, 95, 0, 1808, 1807, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1812, 3, 270, 135, 0, 1811, 1810, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 3, 192, 96, 0, 1814, 181, 1, 0, 0, 0, 1815, 1816, 5, 101, 0, 0, 1816, 1817, 5, 293, 0, 0, 1817, 1818, 5, 258, 0, 0, 1818, 1819, 3, 652, 326, 0, 1819, 183, 1, 0, 0, 0, 1820, 1821, 5, 9, 0, 0, 1821, 1822, 5, 293, 0, 0, 1822, 1823, 5, 258, 0, 0, 1823, 1824, 3, 652, 326, 0, 1824, 1825, 3, 186, 93, 0, 1825, 185, 1, 0, 0, 0, 1826, 1832, 3, 188, 94, 0, 1827, 1832, 3, 190, 95, 0, 1828, 1832, 3, 270, 135, 0, 1829, 1832, 3, 192, 96, 0, 1830, 1832, 5, 115, 0, 0, 1831, 1826, 1, 0, 0, 0, 1831, 1827, 1, 0, 0, 0, 1831, 1828, 1, 0, 0, 0, 1831, 1829, 1, 0, 0, 0, 1831, 1830, 1, 0, 0, 0, 1832, 187, 1, 0, 0, 0, 1833, 1834, 5, 59, 0, 0, 1834, 1849, 5, 426, 0, 0, 1835, 1837, 5, 111, 0, 0, 1836, 1838, 5, 431, 0, 0, 1837, 1836, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1846, 3, 592, 296, 0, 1840, 1844, 5, 20, 0, 0, 1841, 1842, 5, 223, 0, 0, 1842, 1844, 5, 32, 0, 0, 1843, 1840, 1, 0, 0, 0, 1843, 1841, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1847, 5, 426, 0, 0, 1846, 1843, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1849, 1, 0, 0, 0, 1848, 1833, 1, 0, 0, 0, 1848, 1835, 1, 0, 0, 0, 1849, 189, 1, 0, 0, 0, 1850, 1851, 5, 116, 0, 0, 1851, 1852, 5, 17, 0, 0, 1852, 1853, 5, 426, 0, 0, 1853, 191, 1, 0, 0, 0, 1854, 1856, 5, 85, 0, 0, 1855, 1854, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1858, 5, 17, 0, 0, 1858, 1859, 3, 2, 1, 0, 1859, 193, 1, 0, 0, 0, 1860, 1863, 3, 652, 326, 0, 1861, 1863, 5, 426, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1861, 1, 0, 0, 0, 1863, 195, 1, 0, 0, 0, 1864, 1865, 5, 47, 0, 0, 1865, 1866, 5, 426, 0, 0, 1866, 197, 1, 0, 0, 0, 1867, 1868, 5, 183, 0, 0, 1868, 1869, 5, 431, 0, 0, 1869, 199, 1, 0, 0, 0, 1870, 1871, 5, 238, 0, 0, 1871, 1880, 5, 32, 0, 0, 1872, 1875, 5, 399, 0, 0, 1873, 1876, 3, 202, 101, 0, 1874, 1876, 3, 254, 127, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1874, 1, 0, 0, 0, 1876, 1881, 1, 0, 0, 0, 1877, 1878, 5, 316, 0, 0, 1878, 1879, 5, 399, 0, 0, 1879, 1881, 3, 204, 102, 0, 1880, 1872, 1, 0, 0, 0, 1880, 1877, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1883, 5, 400, 0, 0, 1883, 201, 1, 0, 0, 0, 1884, 1889, 3, 318, 159, 0, 1885, 1886, 5, 397, 0, 0, 1886, 1888, 3, 318, 159, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1891, 1, 0, 0, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 203, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1892, 1897, 3, 206, 103, 0, 1893, 1894, 5, 397, 0, 0, 1894, 1896, 3, 206, 103, 0, 1895, 1893, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 205, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1919, 3, 256, 128, 0, 1901, 1906, 3, 680, 340, 0, 1902, 1906, 3, 682, 341, 0, 1903, 1906, 3, 686, 343, 0, 1904, 1906, 3, 688, 344, 0, 1905, 1901, 1, 0, 0, 0, 1905, 1902, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 5, 399, 0, 0, 1908, 1909, 3, 256, 128, 0, 1909, 1910, 5, 400, 0, 0, 1910, 1919, 1, 0, 0, 0, 1911, 1912, 7, 15, 0, 0, 1912, 1913, 5, 399, 0, 0, 1913, 1914, 5, 431, 0, 0, 1914, 1915, 5, 397, 0, 0, 1915, 1916, 3, 256, 128, 0, 1916, 1917, 5, 400, 0, 0, 1917, 1919, 1, 0, 0, 0, 1918, 1900, 1, 0, 0, 0, 1918, 1905, 1, 0, 0, 0, 1918, 1911, 1, 0, 0, 0, 1919, 207, 1, 0, 0, 0, 1920, 1921, 5, 42, 0, 0, 1921, 1922, 5, 32, 0, 0, 1922, 1923, 5, 399, 0, 0, 1923, 1924, 3, 254, 127, 0, 1924, 1931, 5, 400, 0, 0, 1925, 1926, 5, 315, 0, 0, 1926, 1927, 5, 32, 0, 0, 1927, 1928, 5, 399, 0, 0, 1928, 1929, 3, 264, 132, 0, 1929, 1930, 5, 400, 0, 0, 1930, 1932, 1, 0, 0, 0, 1931, 1925, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 5, 166, 0, 0, 1934, 1935, 5, 431, 0, 0, 1935, 1936, 5, 31, 0, 0, 1936, 209, 1, 0, 0, 0, 1937, 1938, 5, 310, 0, 0, 1938, 1939, 5, 32, 0, 0, 1939, 1940, 5, 399, 0, 0, 1940, 1941, 3, 254, 127, 0, 1941, 1942, 5, 400, 0, 0, 1942, 1943, 5, 224, 0, 0, 1943, 1944, 5, 399, 0, 0, 1944, 1945, 3, 292, 146, 0, 1945, 1947, 5, 400, 0, 0, 1946, 1948, 3, 40, 20, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 211, 1, 0, 0, 0, 1949, 1952, 3, 218, 109, 0, 1950, 1952, 3, 220, 110, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1950, 1, 0, 0, 0, 1952, 213, 1, 0, 0, 0, 1953, 1954, 5, 266, 0, 0, 1954, 1955, 5, 426, 0, 0, 1955, 215, 1, 0, 0, 0, 1956, 1957, 5, 267, 0, 0, 1957, 1958, 5, 426, 0, 0, 1958, 217, 1, 0, 0, 0, 1959, 1960, 5, 291, 0, 0, 1960, 1961, 5, 137, 0, 0, 1961, 1962, 5, 301, 0, 0, 1962, 1966, 5, 426, 0, 0, 1963, 1964, 5, 387, 0, 0, 1964, 1965, 5, 302, 0, 0, 1965, 1967, 3, 226, 113, 0, 1966, 1963, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 219, 1, 0, 0, 0, 1968, 1969, 5, 291, 0, 0, 1969, 1970, 5, 137, 0, 0, 1970, 1972, 5, 87, 0, 0, 1971, 1973, 3, 236, 118, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1975, 1, 0, 0, 0, 1974, 1976, 3, 238, 119, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1979, 3, 240, 120, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 242, 121, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 244, 122, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 221, 1, 0, 0, 0, 1986, 1989, 3, 220, 110, 0, 1987, 1989, 3, 218, 109, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1987, 1, 0, 0, 0, 1989, 223, 1, 0, 0, 0, 1990, 1991, 5, 332, 0, 0, 1991, 1992, 3, 226, 113, 0, 1992, 225, 1, 0, 0, 0, 1993, 1994, 5, 399, 0, 0, 1994, 1995, 3, 228, 114, 0, 1995, 1996, 5, 400, 0, 0, 1996, 227, 1, 0, 0, 0, 1997, 2007, 3, 232, 116, 0, 1998, 2003, 5, 426, 0, 0, 1999, 2000, 5, 397, 0, 0, 2000, 2002, 5, 426, 0, 0, 2001, 1999, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2007, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2006, 1997, 1, 0, 0, 0, 2006, 1998, 1, 0, 0, 0, 2007, 229, 1, 0, 0, 0, 2008, 2009, 5, 399, 0, 0, 2009, 2010, 3, 232, 116, 0, 2010, 2011, 5, 400, 0, 0, 2011, 231, 1, 0, 0, 0, 2012, 2017, 3, 234, 117, 0, 2013, 2014, 5, 397, 0, 0, 2014, 2016, 3, 234, 117, 0, 2015, 2013, 1, 0, 0, 0, 2016, 2019, 1, 0, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 233, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2020, 2021, 5, 426, 0, 0, 2021, 2022, 5, 405, 0, 0, 2022, 2023, 5, 426, 0, 0, 2023, 235, 1, 0, 0, 0, 2024, 2025, 5, 127, 0, 0, 2025, 2026, 5, 334, 0, 0, 2026, 2027, 5, 32, 0, 0, 2027, 2031, 5, 426, 0, 0, 2028, 2029, 5, 110, 0, 0, 2029, 2030, 5, 32, 0, 0, 2030, 2032, 5, 426, 0, 0, 2031, 2028, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 237, 1, 0, 0, 0, 2033, 2034, 5, 44, 0, 0, 2034, 2035, 5, 169, 0, 0, 2035, 2036, 5, 334, 0, 0, 2036, 2037, 5, 32, 0, 0, 2037, 2038, 5, 426, 0, 0, 2038, 239, 1, 0, 0, 0, 2039, 2040, 5, 198, 0, 0, 2040, 2041, 5, 174, 0, 0, 2041, 2042, 5, 334, 0, 0, 2042, 2043, 5, 32, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 241, 1, 0, 0, 0, 2045, 2046, 5, 186, 0, 0, 2046, 2047, 5, 334, 0, 0, 2047, 2048, 5, 32, 0, 0, 2048, 2049, 5, 426, 0, 0, 2049, 243, 1, 0, 0, 0, 2050, 2051, 5, 219, 0, 0, 2051, 2052, 5, 85, 0, 0, 2052, 2053, 5, 17, 0, 0, 2053, 2054, 5, 426, 0, 0, 2054, 245, 1, 0, 0, 0, 2055, 2056, 5, 321, 0, 0, 2056, 2057, 5, 17, 0, 0, 2057, 2058, 5, 160, 0, 0, 2058, 2059, 5, 426, 0, 0, 2059, 2060, 5, 233, 0, 0, 2060, 2065, 5, 426, 0, 0, 2061, 2062, 5, 159, 0, 0, 2062, 2063, 5, 426, 0, 0, 2063, 2064, 5, 232, 0, 0, 2064, 2066, 5, 426, 0, 0, 2065, 2061, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2097, 1, 0, 0, 0, 2067, 2068, 5, 321, 0, 0, 2068, 2069, 5, 32, 0, 0, 2069, 2073, 5, 426, 0, 0, 2070, 2071, 5, 387, 0, 0, 2071, 2072, 5, 302, 0, 0, 2072, 2074, 3, 226, 113, 0, 2073, 2070, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2078, 1, 0, 0, 0, 2075, 2076, 5, 321, 0, 0, 2076, 2077, 5, 17, 0, 0, 2077, 2079, 3, 652, 326, 0, 2078, 2075, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2097, 1, 0, 0, 0, 2080, 2081, 5, 321, 0, 0, 2081, 2082, 5, 32, 0, 0, 2082, 2086, 3, 652, 326, 0, 2083, 2084, 5, 387, 0, 0, 2084, 2085, 5, 302, 0, 0, 2085, 2087, 3, 226, 113, 0, 2086, 2083, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2091, 1, 0, 0, 0, 2088, 2089, 5, 321, 0, 0, 2089, 2090, 5, 17, 0, 0, 2090, 2092, 3, 652, 326, 0, 2091, 2088, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2097, 1, 0, 0, 0, 2093, 2094, 5, 321, 0, 0, 2094, 2095, 5, 17, 0, 0, 2095, 2097, 3, 652, 326, 0, 2096, 2055, 1, 0, 0, 0, 2096, 2067, 1, 0, 0, 0, 2096, 2080, 1, 0, 0, 0, 2096, 2093, 1, 0, 0, 0, 2097, 247, 1, 0, 0, 0, 2098, 2103, 3, 312, 156, 0, 2099, 2100, 5, 397, 0, 0, 2100, 2102, 3, 312, 156, 0, 2101, 2099, 1, 0, 0, 0, 2102, 2105, 1, 0, 0, 0, 2103, 2101, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 249, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2106, 2111, 3, 314, 157, 0, 2107, 2108, 5, 397, 0, 0, 2108, 2110, 3, 314, 157, 0, 2109, 2107, 1, 0, 0, 0, 2110, 2113, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 251, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2114, 2119, 3, 342, 171, 0, 2115, 2116, 5, 397, 0, 0, 2116, 2118, 3, 342, 171, 0, 2117, 2115, 1, 0, 0, 0, 2118, 2121, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 253, 1, 0, 0, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2127, 3, 256, 128, 0, 2123, 2124, 5, 397, 0, 0, 2124, 2126, 3, 256, 128, 0, 2125, 2123, 1, 0, 0, 0, 2126, 2129, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 255, 1, 0, 0, 0, 2129, 2127, 1, 0, 0, 0, 2130, 2133, 3, 696, 348, 0, 2131, 2133, 4, 128, 0, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2131, 1, 0, 0, 0, 2133, 257, 1, 0, 0, 0, 2134, 2135, 3, 696, 348, 0, 2135, 259, 1, 0, 0, 0, 2136, 2137, 3, 652, 326, 0, 2137, 261, 1, 0, 0, 0, 2138, 2148, 3, 256, 128, 0, 2139, 2144, 5, 395, 0, 0, 2140, 2145, 5, 104, 0, 0, 2141, 2145, 5, 175, 0, 0, 2142, 2145, 5, 375, 0, 0, 2143, 2145, 3, 652, 326, 0, 2144, 2140, 1, 0, 0, 0, 2144, 2141, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2144, 2143, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2139, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 263, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2156, 3, 304, 152, 0, 2152, 2153, 5, 397, 0, 0, 2153, 2155, 3, 304, 152, 0, 2154, 2152, 1, 0, 0, 0, 2155, 2158, 1, 0, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 265, 1, 0, 0, 0, 2158, 2156, 1, 0, 0, 0, 2159, 2160, 5, 399, 0, 0, 2160, 2161, 3, 254, 127, 0, 2161, 2162, 5, 400, 0, 0, 2162, 267, 1, 0, 0, 0, 2163, 2165, 3, 270, 135, 0, 2164, 2166, 3, 272, 136, 0, 2165, 2164, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2169, 1, 0, 0, 0, 2167, 2169, 3, 274, 137, 0, 2168, 2163, 1, 0, 0, 0, 2168, 2167, 1, 0, 0, 0, 2169, 269, 1, 0, 0, 0, 2170, 2173, 3, 676, 338, 0, 2171, 2173, 3, 678, 339, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2171, 1, 0, 0, 0, 2173, 271, 1, 0, 0, 0, 2174, 2175, 7, 16, 0, 0, 2175, 273, 1, 0, 0, 0, 2176, 2180, 5, 109, 0, 0, 2177, 2178, 5, 216, 0, 0, 2178, 2180, 5, 109, 0, 0, 2179, 2176, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2180, 275, 1, 0, 0, 0, 2181, 2182, 7, 17, 0, 0, 2182, 277, 1, 0, 0, 0, 2183, 2184, 5, 55, 0, 0, 2184, 2186, 3, 652, 326, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2189, 3, 282, 141, 0, 2188, 2190, 3, 338, 169, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 279, 1, 0, 0, 0, 2191, 2192, 5, 55, 0, 0, 2192, 2193, 3, 652, 326, 0, 2193, 2195, 3, 282, 141, 0, 2194, 2196, 3, 340, 170, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 281, 1, 0, 0, 0, 2197, 2200, 3, 284, 142, 0, 2198, 2200, 3, 286, 143, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2198, 1, 0, 0, 0, 2200, 283, 1, 0, 0, 0, 2201, 2202, 3, 336, 168, 0, 2202, 2203, 3, 266, 133, 0, 2203, 285, 1, 0, 0, 0, 2204, 2205, 5, 40, 0, 0, 2205, 2206, 5, 399, 0, 0, 2206, 2207, 3, 594, 297, 0, 2207, 2208, 5, 400, 0, 0, 2208, 287, 1, 0, 0, 0, 2209, 2210, 5, 55, 0, 0, 2210, 2212, 3, 652, 326, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 2214, 5, 136, 0, 0, 2214, 2215, 5, 173, 0, 0, 2215, 2216, 3, 266, 133, 0, 2216, 2217, 5, 269, 0, 0, 2217, 2218, 3, 480, 240, 0, 2218, 2220, 3, 266, 133, 0, 2219, 2221, 3, 338, 169, 0, 2220, 2219, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 289, 1, 0, 0, 0, 2222, 2223, 5, 55, 0, 0, 2223, 2224, 3, 652, 326, 0, 2224, 2225, 5, 136, 0, 0, 2225, 2226, 5, 173, 0, 0, 2226, 2227, 3, 266, 133, 0, 2227, 2228, 5, 269, 0, 0, 2228, 2229, 3, 480, 240, 0, 2229, 2231, 3, 266, 133, 0, 2230, 2232, 3, 340, 170, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 291, 1, 0, 0, 0, 2233, 2236, 3, 298, 149, 0, 2234, 2236, 3, 294, 147, 0, 2235, 2233, 1, 0, 0, 0, 2235, 2234, 1, 0, 0, 0, 2236, 293, 1, 0, 0, 0, 2237, 2242, 3, 296, 148, 0, 2238, 2239, 5, 397, 0, 0, 2239, 2241, 3, 296, 148, 0, 2240, 2238, 1, 0, 0, 0, 2241, 2244, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 295, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2246, 5, 399, 0, 0, 2246, 2247, 3, 298, 149, 0, 2247, 2248, 5, 400, 0, 0, 2248, 297, 1, 0, 0, 0, 2249, 2254, 3, 586, 293, 0, 2250, 2251, 5, 397, 0, 0, 2251, 2253, 3, 586, 293, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2256, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 299, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2258, 7, 18, 0, 0, 2258, 301, 1, 0, 0, 0, 2259, 2260, 5, 220, 0, 0, 2260, 2261, 7, 19, 0, 0, 2261, 303, 1, 0, 0, 0, 2262, 2264, 3, 256, 128, 0, 2263, 2265, 3, 300, 150, 0, 2264, 2263, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2267, 1, 0, 0, 0, 2266, 2268, 3, 302, 151, 0, 2267, 2266, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 305, 1, 0, 0, 0, 2269, 2274, 3, 308, 154, 0, 2270, 2271, 5, 397, 0, 0, 2271, 2273, 3, 308, 154, 0, 2272, 2270, 1, 0, 0, 0, 2273, 2276, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 307, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2277, 2280, 3, 260, 130, 0, 2278, 2279, 5, 47, 0, 0, 2279, 2281, 5, 426, 0, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 309, 1, 0, 0, 0, 2282, 2285, 3, 256, 128, 0, 2283, 2285, 3, 594, 297, 0, 2284, 2282, 1, 0, 0, 0, 2284, 2283, 1, 0, 0, 0, 2285, 2287, 1, 0, 0, 0, 2286, 2288, 3, 300, 150, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2290, 1, 0, 0, 0, 2289, 2291, 3, 302, 151, 0, 2290, 2289, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 311, 1, 0, 0, 0, 2292, 2293, 3, 260, 130, 0, 2293, 2296, 3, 344, 172, 0, 2294, 2295, 5, 47, 0, 0, 2295, 2297, 5, 426, 0, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 313, 1, 0, 0, 0, 2298, 2301, 3, 316, 158, 0, 2299, 2301, 3, 318, 159, 0, 2300, 2298, 1, 0, 0, 0, 2300, 2299, 1, 0, 0, 0, 2301, 315, 1, 0, 0, 0, 2302, 2305, 3, 288, 144, 0, 2303, 2305, 3, 278, 139, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2303, 1, 0, 0, 0, 2305, 317, 1, 0, 0, 0, 2306, 2307, 3, 260, 130, 0, 2307, 2309, 3, 344, 172, 0, 2308, 2310, 3, 320, 160, 0, 2309, 2308, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2312, 5, 47, 0, 0, 2312, 2314, 5, 426, 0, 0, 2313, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 319, 1, 0, 0, 0, 2315, 2318, 3, 322, 161, 0, 2316, 2318, 3, 324, 162, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2316, 1, 0, 0, 0, 2318, 321, 1, 0, 0, 0, 2319, 2320, 5, 55, 0, 0, 2320, 2322, 3, 652, 326, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2324, 5, 269, 0, 0, 2324, 2325, 3, 480, 240, 0, 2325, 2326, 5, 399, 0, 0, 2326, 2327, 3, 256, 128, 0, 2327, 2329, 5, 400, 0, 0, 2328, 2330, 3, 338, 169, 0, 2329, 2328, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 323, 1, 0, 0, 0, 2331, 2332, 5, 55, 0, 0, 2332, 2334, 3, 652, 326, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2337, 3, 332, 166, 0, 2336, 2338, 3, 338, 169, 0, 2337, 2336, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 325, 1, 0, 0, 0, 2339, 2342, 3, 328, 164, 0, 2340, 2342, 3, 330, 165, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2340, 1, 0, 0, 0, 2342, 327, 1, 0, 0, 0, 2343, 2344, 5, 55, 0, 0, 2344, 2346, 3, 652, 326, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 5, 269, 0, 0, 2348, 2349, 3, 480, 240, 0, 2349, 2350, 5, 399, 0, 0, 2350, 2351, 3, 256, 128, 0, 2351, 2353, 5, 400, 0, 0, 2352, 2354, 3, 340, 170, 0, 2353, 2352, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 329, 1, 0, 0, 0, 2355, 2356, 5, 55, 0, 0, 2356, 2358, 3, 652, 326, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2361, 3, 332, 166, 0, 2360, 2362, 3, 340, 170, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 331, 1, 0, 0, 0, 2363, 2364, 5, 216, 0, 0, 2364, 2370, 5, 219, 0, 0, 2365, 2366, 5, 83, 0, 0, 2366, 2370, 3, 334, 167, 0, 2367, 2370, 3, 286, 143, 0, 2368, 2370, 3, 336, 168, 0, 2369, 2363, 1, 0, 0, 0, 2369, 2365, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2368, 1, 0, 0, 0, 2370, 333, 1, 0, 0, 0, 2371, 2375, 3, 586, 293, 0, 2372, 2375, 3, 564, 282, 0, 2373, 2375, 3, 574, 287, 0, 2374, 2371, 1, 0, 0, 0, 2374, 2372, 1, 0, 0, 0, 2374, 2373, 1, 0, 0, 0, 2375, 335, 1, 0, 0, 0, 2376, 2377, 5, 251, 0, 0, 2377, 2380, 5, 173, 0, 0, 2378, 2380, 5, 358, 0, 0, 2379, 2376, 1, 0, 0, 0, 2379, 2378, 1, 0, 0, 0, 2380, 337, 1, 0, 0, 0, 2381, 2383, 3, 268, 134, 0, 2382, 2384, 3, 276, 138, 0, 2383, 2382, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 339, 1, 0, 0, 0, 2385, 2387, 3, 268, 134, 0, 2386, 2388, 3, 276, 138, 0, 2387, 2386, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 341, 1, 0, 0, 0, 2389, 2390, 3, 260, 130, 0, 2390, 2391, 5, 396, 0, 0, 2391, 2394, 3, 344, 172, 0, 2392, 2393, 5, 47, 0, 0, 2393, 2395, 5, 426, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 343, 1, 0, 0, 0, 2396, 2397, 3, 348, 174, 0, 2397, 345, 1, 0, 0, 0, 2398, 2403, 3, 344, 172, 0, 2399, 2400, 5, 397, 0, 0, 2400, 2402, 3, 344, 172, 0, 2401, 2399, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 347, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2412, 3, 350, 175, 0, 2407, 2412, 3, 352, 176, 0, 2408, 2412, 3, 354, 177, 0, 2409, 2412, 3, 356, 178, 0, 2410, 2412, 3, 358, 179, 0, 2411, 2406, 1, 0, 0, 0, 2411, 2407, 1, 0, 0, 0, 2411, 2408, 1, 0, 0, 0, 2411, 2409, 1, 0, 0, 0, 2411, 2410, 1, 0, 0, 0, 2412, 349, 1, 0, 0, 0, 2413, 2451, 5, 340, 0, 0, 2414, 2451, 5, 311, 0, 0, 2415, 2451, 5, 162, 0, 0, 2416, 2451, 5, 163, 0, 0, 2417, 2451, 5, 26, 0, 0, 2418, 2451, 5, 28, 0, 0, 2419, 2451, 5, 131, 0, 0, 2420, 2451, 5, 264, 0, 0, 2421, 2423, 5, 100, 0, 0, 2422, 2424, 5, 248, 0, 0, 2423, 2422, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2451, 1, 0, 0, 0, 2425, 2451, 5, 71, 0, 0, 2426, 2451, 5, 72, 0, 0, 2427, 2451, 5, 337, 0, 0, 2428, 2451, 5, 338, 0, 0, 2429, 2430, 5, 337, 0, 0, 2430, 2431, 5, 387, 0, 0, 2431, 2432, 5, 188, 0, 0, 2432, 2433, 5, 336, 0, 0, 2433, 2451, 5, 394, 0, 0, 2434, 2451, 5, 323, 0, 0, 2435, 2451, 5, 27, 0, 0, 2436, 2444, 3, 694, 347, 0, 2437, 2438, 5, 399, 0, 0, 2438, 2441, 5, 431, 0, 0, 2439, 2440, 5, 397, 0, 0, 2440, 2442, 5, 431, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2445, 5, 400, 0, 0, 2444, 2437, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2451, 1, 0, 0, 0, 2446, 2447, 7, 20, 0, 0, 2447, 2448, 5, 399, 0, 0, 2448, 2449, 5, 431, 0, 0, 2449, 2451, 5, 400, 0, 0, 2450, 2413, 1, 0, 0, 0, 2450, 2414, 1, 0, 0, 0, 2450, 2415, 1, 0, 0, 0, 2450, 2416, 1, 0, 0, 0, 2450, 2417, 1, 0, 0, 0, 2450, 2418, 1, 0, 0, 0, 2450, 2419, 1, 0, 0, 0, 2450, 2420, 1, 0, 0, 0, 2450, 2421, 1, 0, 0, 0, 2450, 2425, 1, 0, 0, 0, 2450, 2426, 1, 0, 0, 0, 2450, 2427, 1, 0, 0, 0, 2450, 2428, 1, 0, 0, 0, 2450, 2429, 1, 0, 0, 0, 2450, 2434, 1, 0, 0, 0, 2450, 2435, 1, 0, 0, 0, 2450, 2436, 1, 0, 0, 0, 2450, 2446, 1, 0, 0, 0, 2451, 351, 1, 0, 0, 0, 2452, 2453, 5, 16, 0, 0, 2453, 2454, 5, 409, 0, 0, 2454, 2455, 3, 348, 174, 0, 2455, 2456, 5, 411, 0, 0, 2456, 353, 1, 0, 0, 0, 2457, 2458, 5, 324, 0, 0, 2458, 2459, 5, 409, 0, 0, 2459, 2460, 3, 252, 126, 0, 2460, 2461, 5, 411, 0, 0, 2461, 355, 1, 0, 0, 0, 2462, 2463, 5, 198, 0, 0, 2463, 2464, 5, 409, 0, 0, 2464, 2465, 3, 350, 175, 0, 2465, 2466, 5, 397, 0, 0, 2466, 2467, 3, 348, 174, 0, 2467, 2468, 5, 411, 0, 0, 2468, 357, 1, 0, 0, 0, 2469, 2470, 5, 357, 0, 0, 2470, 2471, 5, 409, 0, 0, 2471, 2472, 3, 346, 173, 0, 2472, 2473, 5, 411, 0, 0, 2473, 359, 1, 0, 0, 0, 2474, 2476, 7, 21, 0, 0, 2475, 2477, 7, 22, 0, 0, 2476, 2475, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 361, 1, 0, 0, 0, 2478, 2480, 3, 366, 183, 0, 2479, 2478, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2482, 3, 364, 182, 0, 2482, 363, 1, 0, 0, 0, 2483, 2486, 3, 370, 185, 0, 2484, 2486, 3, 374, 187, 0, 2485, 2483, 1, 0, 0, 0, 2485, 2484, 1, 0, 0, 0, 2486, 365, 1, 0, 0, 0, 2487, 2488, 5, 387, 0, 0, 2488, 2493, 3, 368, 184, 0, 2489, 2490, 5, 397, 0, 0, 2490, 2492, 3, 368, 184, 0, 2491, 2489, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 367, 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2501, 3, 652, 326, 0, 2497, 2498, 5, 399, 0, 0, 2498, 2499, 3, 254, 127, 0, 2499, 2500, 5, 400, 0, 0, 2500, 2502, 1, 0, 0, 0, 2501, 2497, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2504, 5, 17, 0, 0, 2504, 2505, 5, 399, 0, 0, 2505, 2506, 3, 362, 181, 0, 2506, 2507, 5, 400, 0, 0, 2507, 369, 1, 0, 0, 0, 2508, 2514, 3, 372, 186, 0, 2509, 2510, 3, 360, 180, 0, 2510, 2511, 3, 372, 186, 0, 2511, 2513, 1, 0, 0, 0, 2512, 2509, 1, 0, 0, 0, 2513, 2516, 1, 0, 0, 0, 2514, 2512, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 371, 1, 0, 0, 0, 2516, 2514, 1, 0, 0, 0, 2517, 2518, 3, 450, 225, 0, 2518, 2519, 3, 384, 192, 0, 2519, 2521, 3, 506, 253, 0, 2520, 2522, 3, 464, 232, 0, 2521, 2520, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2524, 1, 0, 0, 0, 2523, 2525, 3, 498, 249, 0, 2524, 2523, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2527, 1, 0, 0, 0, 2526, 2528, 3, 532, 266, 0, 2527, 2526, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2530, 1, 0, 0, 0, 2529, 2531, 3, 540, 270, 0, 2530, 2529, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2534, 3, 524, 262, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 542, 271, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 554, 277, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 558, 279, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 560, 280, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 562, 281, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 388, 194, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2589, 1, 0, 0, 0, 2553, 2554, 3, 450, 225, 0, 2554, 2556, 3, 506, 253, 0, 2555, 2557, 3, 464, 232, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2559, 1, 0, 0, 0, 2558, 2560, 3, 498, 249, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2562, 1, 0, 0, 0, 2561, 2563, 3, 532, 266, 0, 2562, 2561, 1, 0, 0, 0, 2562, 2563, 1, 0, 0, 0, 2563, 2565, 1, 0, 0, 0, 2564, 2566, 3, 540, 270, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2569, 3, 524, 262, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 542, 271, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 554, 277, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 558, 279, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 560, 280, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 562, 281, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 388, 194, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2517, 1, 0, 0, 0, 2588, 2553, 1, 0, 0, 0, 2589, 373, 1, 0, 0, 0, 2590, 2591, 3, 384, 192, 0, 2591, 2592, 3, 378, 189, 0, 2592, 2595, 1, 0, 0, 0, 2593, 2595, 3, 378, 189, 0, 2594, 2590, 1, 0, 0, 0, 2594, 2593, 1, 0, 0, 0, 2595, 375, 1, 0, 0, 0, 2596, 2598, 3, 506, 253, 0, 2597, 2599, 3, 450, 225, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2602, 3, 498, 249, 0, 2601, 2600, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2604, 1, 0, 0, 0, 2603, 2605, 3, 532, 266, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2607, 1, 0, 0, 0, 2606, 2608, 3, 540, 270, 0, 2607, 2606, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2610, 1, 0, 0, 0, 2609, 2611, 3, 524, 262, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 542, 271, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2621, 1, 0, 0, 0, 2615, 2616, 5, 399, 0, 0, 2616, 2617, 3, 378, 189, 0, 2617, 2618, 5, 400, 0, 0, 2618, 2621, 1, 0, 0, 0, 2619, 2621, 3, 500, 250, 0, 2620, 2596, 1, 0, 0, 0, 2620, 2615, 1, 0, 0, 0, 2620, 2619, 1, 0, 0, 0, 2621, 377, 1, 0, 0, 0, 2622, 2624, 3, 376, 188, 0, 2623, 2625, 3, 380, 190, 0, 2624, 2623, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2627, 1, 0, 0, 0, 2626, 2628, 3, 554, 277, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2630, 1, 0, 0, 0, 2629, 2631, 3, 558, 279, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2633, 1, 0, 0, 0, 2632, 2634, 3, 560, 280, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2637, 3, 562, 281, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 388, 194, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 379, 1, 0, 0, 0, 2641, 2642, 3, 360, 180, 0, 2642, 2643, 3, 376, 188, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2641, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2644, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 381, 1, 0, 0, 0, 2648, 2650, 3, 366, 183, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 3, 378, 189, 0, 2652, 383, 1, 0, 0, 0, 2653, 2670, 5, 161, 0, 0, 2654, 2655, 5, 235, 0, 0, 2655, 2657, 3, 386, 193, 0, 2656, 2658, 3, 32, 16, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2671, 1, 0, 0, 0, 2659, 2661, 5, 166, 0, 0, 2660, 2662, 5, 329, 0, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2668, 3, 638, 319, 0, 2664, 2665, 5, 399, 0, 0, 2665, 2666, 3, 254, 127, 0, 2666, 2667, 5, 400, 0, 0, 2667, 2669, 1, 0, 0, 0, 2668, 2664, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 1, 0, 0, 0, 2670, 2654, 1, 0, 0, 0, 2670, 2659, 1, 0, 0, 0, 2671, 385, 1, 0, 0, 0, 2672, 2674, 5, 188, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 5, 93, 0, 0, 2676, 2678, 5, 426, 0, 0, 2677, 2679, 3, 222, 111, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2682, 3, 246, 123, 0, 2681, 2680, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2686, 1, 0, 0, 0, 2683, 2684, 5, 329, 0, 0, 2684, 2686, 3, 638, 319, 0, 2685, 2673, 1, 0, 0, 0, 2685, 2683, 1, 0, 0, 0, 2686, 387, 1, 0, 0, 0, 2687, 2696, 5, 185, 0, 0, 2688, 2689, 5, 431, 0, 0, 2689, 2691, 5, 397, 0, 0, 2690, 2688, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2697, 5, 431, 0, 0, 2693, 2694, 5, 431, 0, 0, 2694, 2695, 5, 223, 0, 0, 2695, 2697, 5, 431, 0, 0, 2696, 2690, 1, 0, 0, 0, 2696, 2693, 1, 0, 0, 0, 2697, 389, 1, 0, 0, 0, 2698, 2699, 3, 256, 128, 0, 2699, 2700, 5, 405, 0, 0, 2700, 2701, 3, 392, 196, 0, 2701, 391, 1, 0, 0, 0, 2702, 2705, 5, 83, 0, 0, 2703, 2705, 3, 604, 302, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2703, 1, 0, 0, 0, 2705, 393, 1, 0, 0, 0, 2706, 2707, 5, 304, 0, 0, 2707, 2712, 3, 390, 195, 0, 2708, 2709, 5, 397, 0, 0, 2709, 2711, 3, 390, 195, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2714, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 395, 1, 0, 0, 0, 2714, 2712, 1, 0, 0, 0, 2715, 2716, 5, 318, 0, 0, 2716, 2725, 5, 344, 0, 0, 2717, 2722, 3, 398, 199, 0, 2718, 2719, 5, 397, 0, 0, 2719, 2721, 3, 398, 199, 0, 2720, 2718, 1, 0, 0, 0, 2721, 2724, 1, 0, 0, 0, 2722, 2720, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2725, 2717, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2739, 1, 0, 0, 0, 2727, 2729, 5, 48, 0, 0, 2728, 2730, 5, 389, 0, 0, 2729, 2728, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2739, 1, 0, 0, 0, 2731, 2733, 5, 289, 0, 0, 2732, 2734, 5, 389, 0, 0, 2733, 2732, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2739, 1, 0, 0, 0, 2735, 2736, 5, 304, 0, 0, 2736, 2737, 5, 22, 0, 0, 2737, 2739, 7, 23, 0, 0, 2738, 2715, 1, 0, 0, 0, 2738, 2727, 1, 0, 0, 0, 2738, 2731, 1, 0, 0, 0, 2738, 2735, 1, 0, 0, 0, 2739, 397, 1, 0, 0, 0, 2740, 2741, 5, 168, 0, 0, 2741, 2742, 5, 182, 0, 0, 2742, 2746, 5, 312, 0, 0, 2743, 2744, 5, 261, 0, 0, 2744, 2746, 7, 24, 0, 0, 2745, 2740, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2746, 399, 1, 0, 0, 0, 2747, 2750, 3, 404, 202, 0, 2748, 2750, 3, 406, 203, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2748, 1, 0, 0, 0, 2750, 2753, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2755, 1, 0, 0, 0, 2753, 2751, 1, 0, 0, 0, 2754, 2756, 3, 402, 201, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 401, 1, 0, 0, 0, 2757, 2758, 5, 383, 0, 0, 2758, 2759, 5, 216, 0, 0, 2759, 2762, 5, 201, 0, 0, 2760, 2761, 5, 11, 0, 0, 2761, 2763, 3, 594, 297, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 5, 335, 0, 0, 2765, 2767, 5, 161, 0, 0, 2766, 2768, 3, 266, 133, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 5, 374, 0, 0, 2770, 2771, 3, 550, 275, 0, 2771, 403, 1, 0, 0, 0, 2772, 2773, 5, 383, 0, 0, 2773, 2774, 5, 201, 0, 0, 2774, 2775, 5, 11, 0, 0, 2775, 2776, 3, 594, 297, 0, 2776, 2780, 5, 335, 0, 0, 2777, 2778, 5, 365, 0, 0, 2778, 2781, 3, 394, 197, 0, 2779, 2781, 5, 86, 0, 0, 2780, 2777, 1, 0, 0, 0, 2780, 2779, 1, 0, 0, 0, 2781, 405, 1, 0, 0, 0, 2782, 2783, 5, 383, 0, 0, 2783, 2784, 5, 201, 0, 0, 2784, 2788, 5, 335, 0, 0, 2785, 2786, 5, 365, 0, 0, 2786, 2789, 3, 394, 197, 0, 2787, 2789, 5, 86, 0, 0, 2788, 2785, 1, 0, 0, 0, 2788, 2787, 1, 0, 0, 0, 2789, 407, 1, 0, 0, 0, 2790, 2791, 5, 246, 0, 0, 2791, 2792, 5, 426, 0, 0, 2792, 409, 1, 0, 0, 0, 2793, 2794, 5, 352, 0, 0, 2794, 2795, 5, 426, 0, 0, 2795, 411, 1, 0, 0, 0, 2796, 2797, 5, 320, 0, 0, 2797, 2798, 5, 426, 0, 0, 2798, 413, 1, 0, 0, 0, 2799, 2830, 5, 9, 0, 0, 2800, 2801, 5, 329, 0, 0, 2801, 2802, 3, 480, 240, 0, 2802, 2803, 3, 416, 208, 0, 2803, 2831, 1, 0, 0, 0, 2804, 2805, 5, 378, 0, 0, 2805, 2807, 3, 484, 242, 0, 2806, 2808, 5, 17, 0, 0, 2807, 2806, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 2810, 3, 420, 210, 0, 2810, 2831, 1, 0, 0, 0, 2811, 2812, 5, 202, 0, 0, 2812, 2813, 5, 378, 0, 0, 2813, 2817, 3, 484, 242, 0, 2814, 2818, 3, 36, 18, 0, 2815, 2818, 3, 38, 19, 0, 2816, 2818, 5, 265, 0, 0, 2817, 2814, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2816, 1, 0, 0, 0, 2818, 2831, 1, 0, 0, 0, 2819, 2820, 3, 70, 35, 0, 2820, 2821, 3, 422, 211, 0, 2821, 2831, 1, 0, 0, 0, 2822, 2823, 5, 69, 0, 0, 2823, 2831, 3, 424, 212, 0, 2824, 2825, 5, 155, 0, 0, 2825, 2826, 3, 652, 326, 0, 2826, 2827, 5, 224, 0, 0, 2827, 2828, 3, 638, 319, 0, 2828, 2829, 5, 265, 0, 0, 2829, 2831, 1, 0, 0, 0, 2830, 2800, 1, 0, 0, 0, 2830, 2804, 1, 0, 0, 0, 2830, 2811, 1, 0, 0, 0, 2830, 2819, 1, 0, 0, 0, 2830, 2822, 1, 0, 0, 0, 2830, 2824, 1, 0, 0, 0, 2831, 415, 1, 0, 0, 0, 2832, 2833, 5, 274, 0, 0, 2833, 2834, 5, 341, 0, 0, 2834, 2922, 3, 482, 241, 0, 2835, 2836, 5, 102, 0, 0, 2836, 2922, 5, 239, 0, 0, 2837, 2922, 3, 428, 214, 0, 2838, 2840, 5, 4, 0, 0, 2839, 2841, 3, 32, 16, 0, 2840, 2839, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2846, 1, 0, 0, 0, 2842, 2844, 3, 640, 320, 0, 2843, 2845, 3, 426, 213, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2847, 1, 0, 0, 0, 2846, 2842, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2922, 1, 0, 0, 0, 2850, 2854, 5, 342, 0, 0, 2851, 2853, 3, 640, 320, 0, 2852, 2851, 1, 0, 0, 0, 2853, 2856, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2922, 1, 0, 0, 0, 2856, 2854, 1, 0, 0, 0, 2857, 2861, 5, 15, 0, 0, 2858, 2860, 3, 640, 320, 0, 2859, 2858, 1, 0, 0, 0, 2860, 2863, 1, 0, 0, 0, 2861, 2859, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2922, 1, 0, 0, 0, 2863, 2861, 1, 0, 0, 0, 2864, 2868, 5, 353, 0, 0, 2865, 2867, 3, 640, 320, 0, 2866, 2865, 1, 0, 0, 0, 2867, 2870, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 2922, 1, 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2871, 2872, 5, 304, 0, 0, 2872, 2873, 5, 332, 0, 0, 2873, 2922, 3, 226, 113, 0, 2874, 2875, 5, 363, 0, 0, 2875, 2877, 5, 332, 0, 0, 2876, 2878, 3, 30, 15, 0, 2877, 2876, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2922, 3, 226, 113, 0, 2880, 2922, 3, 210, 105, 0, 2881, 2884, 5, 216, 0, 0, 2882, 2885, 5, 310, 0, 0, 2883, 2885, 3, 40, 20, 0, 2884, 2882, 1, 0, 0, 0, 2884, 2883, 1, 0, 0, 0, 2885, 2922, 1, 0, 0, 0, 2886, 2887, 5, 113, 0, 0, 2887, 2888, 3, 640, 320, 0, 2888, 2889, 5, 387, 0, 0, 2889, 2890, 5, 329, 0, 0, 2890, 2891, 3, 480, 240, 0, 2891, 2922, 1, 0, 0, 0, 2892, 2893, 5, 237, 0, 0, 2893, 2894, 5, 45, 0, 0, 2894, 2895, 5, 399, 0, 0, 2895, 2896, 3, 312, 156, 0, 2896, 2897, 5, 400, 0, 0, 2897, 2922, 1, 0, 0, 0, 2898, 2899, 5, 101, 0, 0, 2899, 2900, 5, 55, 0, 0, 2900, 2922, 3, 652, 326, 0, 2901, 2904, 5, 4, 0, 0, 2902, 2905, 3, 290, 145, 0, 2903, 2905, 3, 280, 140, 0, 2904, 2902, 1, 0, 0, 0, 2904, 2903, 1, 0, 0, 0, 2905, 2922, 1, 0, 0, 0, 2906, 2908, 3, 640, 320, 0, 2907, 2906, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2922, 3, 418, 209, 0, 2910, 2911, 5, 304, 0, 0, 2911, 2912, 5, 236, 0, 0, 2912, 2922, 3, 126, 63, 0, 2913, 2914, 5, 304, 0, 0, 2914, 2915, 5, 237, 0, 0, 2915, 2916, 5, 316, 0, 0, 2916, 2917, 5, 399, 0, 0, 2917, 2918, 3, 204, 102, 0, 2918, 2919, 5, 400, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2922, 3, 432, 216, 0, 2921, 2832, 1, 0, 0, 0, 2921, 2835, 1, 0, 0, 0, 2921, 2837, 1, 0, 0, 0, 2921, 2838, 1, 0, 0, 0, 2921, 2850, 1, 0, 0, 0, 2921, 2857, 1, 0, 0, 0, 2921, 2864, 1, 0, 0, 0, 2921, 2871, 1, 0, 0, 0, 2921, 2874, 1, 0, 0, 0, 2921, 2880, 1, 0, 0, 0, 2921, 2881, 1, 0, 0, 0, 2921, 2886, 1, 0, 0, 0, 2921, 2892, 1, 0, 0, 0, 2921, 2898, 1, 0, 0, 0, 2921, 2901, 1, 0, 0, 0, 2921, 2907, 1, 0, 0, 0, 2921, 2910, 1, 0, 0, 0, 2921, 2913, 1, 0, 0, 0, 2921, 2920, 1, 0, 0, 0, 2922, 417, 1, 0, 0, 0, 2923, 2924, 5, 304, 0, 0, 2924, 2925, 5, 129, 0, 0, 2925, 3056, 3, 434, 217, 0, 2926, 2927, 5, 304, 0, 0, 2927, 2928, 5, 189, 0, 0, 2928, 3056, 5, 426, 0, 0, 2929, 3056, 5, 53, 0, 0, 2930, 2940, 5, 304, 0, 0, 2931, 2932, 5, 301, 0, 0, 2932, 2936, 5, 426, 0, 0, 2933, 2934, 5, 387, 0, 0, 2934, 2935, 5, 302, 0, 0, 2935, 2937, 3, 226, 113, 0, 2936, 2933, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2941, 1, 0, 0, 0, 2938, 2939, 5, 302, 0, 0, 2939, 2941, 3, 226, 113, 0, 2940, 2931, 1, 0, 0, 0, 2940, 2938, 1, 0, 0, 0, 2941, 3056, 1, 0, 0, 0, 2942, 2943, 5, 363, 0, 0, 2943, 2944, 5, 302, 0, 0, 2944, 3056, 3, 226, 113, 0, 2945, 2946, 5, 274, 0, 0, 2946, 2947, 5, 341, 0, 0, 2947, 3056, 3, 640, 320, 0, 2948, 2949, 5, 166, 0, 0, 2949, 2950, 5, 431, 0, 0, 2950, 3056, 5, 31, 0, 0, 2951, 2952, 5, 304, 0, 0, 2952, 2953, 5, 310, 0, 0, 2953, 2954, 5, 189, 0, 0, 2954, 2955, 5, 399, 0, 0, 2955, 2960, 3, 430, 215, 0, 2956, 2957, 5, 397, 0, 0, 2957, 2959, 3, 430, 215, 0, 2958, 2956, 1, 0, 0, 0, 2959, 2962, 1, 0, 0, 0, 2960, 2958, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2963, 1, 0, 0, 0, 2962, 2960, 1, 0, 0, 0, 2963, 2964, 5, 400, 0, 0, 2964, 3056, 1, 0, 0, 0, 2965, 2966, 5, 216, 0, 0, 2966, 3056, 7, 25, 0, 0, 2967, 3056, 3, 208, 104, 0, 2968, 2969, 5, 49, 0, 0, 2969, 2972, 5, 426, 0, 0, 2970, 2971, 5, 11, 0, 0, 2971, 2973, 5, 380, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2978, 1, 0, 0, 0, 2974, 2975, 5, 42, 0, 0, 2975, 2976, 5, 166, 0, 0, 2976, 2977, 5, 431, 0, 0, 2977, 2979, 5, 31, 0, 0, 2978, 2974, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2981, 1, 0, 0, 0, 2980, 2982, 3, 554, 277, 0, 2981, 2980, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2984, 1, 0, 0, 0, 2983, 2985, 3, 408, 204, 0, 2984, 2983, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2990, 1, 0, 0, 0, 2986, 2987, 5, 387, 0, 0, 2987, 2988, 5, 235, 0, 0, 2988, 2989, 5, 332, 0, 0, 2989, 2991, 3, 226, 113, 0, 2990, 2986, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 3056, 1, 0, 0, 0, 2992, 2993, 5, 365, 0, 0, 2993, 2994, 5, 319, 0, 0, 2994, 2996, 5, 134, 0, 0, 2995, 2997, 5, 45, 0, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 3, 256, 128, 0, 2999, 3000, 5, 304, 0, 0, 3000, 3003, 3, 226, 113, 0, 3001, 3002, 5, 47, 0, 0, 3002, 3004, 5, 426, 0, 0, 3003, 3001, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3056, 1, 0, 0, 0, 3005, 3006, 5, 365, 0, 0, 3006, 3007, 5, 319, 0, 0, 3007, 3008, 5, 304, 0, 0, 3008, 3056, 3, 226, 113, 0, 3009, 3011, 5, 38, 0, 0, 3010, 3012, 5, 45, 0, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3014, 3, 256, 128, 0, 3014, 3015, 3, 260, 130, 0, 3015, 3017, 3, 344, 172, 0, 3016, 3018, 3, 326, 163, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3021, 1, 0, 0, 0, 3019, 3020, 5, 47, 0, 0, 3020, 3022, 5, 426, 0, 0, 3021, 3019, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3026, 1, 0, 0, 0, 3023, 3027, 5, 130, 0, 0, 3024, 3025, 5, 6, 0, 0, 3025, 3027, 3, 652, 326, 0, 3026, 3023, 1, 0, 0, 0, 3026, 3024, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3030, 3, 34, 17, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3056, 1, 0, 0, 0, 3031, 3034, 5, 4, 0, 0, 3032, 3034, 5, 278, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3032, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 5, 46, 0, 0, 3036, 3037, 5, 399, 0, 0, 3037, 3038, 3, 248, 124, 0, 3038, 3040, 5, 400, 0, 0, 3039, 3041, 3, 34, 17, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3056, 1, 0, 0, 0, 3042, 3043, 5, 365, 0, 0, 3043, 3045, 5, 46, 0, 0, 3044, 3046, 3, 34, 17, 0, 3045, 3044, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3056, 1, 0, 0, 0, 3047, 3053, 3, 270, 135, 0, 3048, 3050, 5, 218, 0, 0, 3049, 3051, 5, 34, 0, 0, 3050, 3049, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3054, 1, 0, 0, 0, 3052, 3054, 5, 222, 0, 0, 3053, 3048, 1, 0, 0, 0, 3053, 3052, 1, 0, 0, 0, 3054, 3056, 1, 0, 0, 0, 3055, 2923, 1, 0, 0, 0, 3055, 2926, 1, 0, 0, 0, 3055, 2929, 1, 0, 0, 0, 3055, 2930, 1, 0, 0, 0, 3055, 2942, 1, 0, 0, 0, 3055, 2945, 1, 0, 0, 0, 3055, 2948, 1, 0, 0, 0, 3055, 2951, 1, 0, 0, 0, 3055, 2965, 1, 0, 0, 0, 3055, 2967, 1, 0, 0, 0, 3055, 2968, 1, 0, 0, 0, 3055, 2992, 1, 0, 0, 0, 3055, 3005, 1, 0, 0, 0, 3055, 3009, 1, 0, 0, 0, 3055, 3033, 1, 0, 0, 0, 3055, 3042, 1, 0, 0, 0, 3055, 3047, 1, 0, 0, 0, 3056, 419, 1, 0, 0, 0, 3057, 3058, 5, 304, 0, 0, 3058, 3059, 5, 332, 0, 0, 3059, 3084, 3, 226, 113, 0, 3060, 3061, 5, 363, 0, 0, 3061, 3063, 5, 332, 0, 0, 3062, 3064, 3, 30, 15, 0, 3063, 3062, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3084, 3, 226, 113, 0, 3066, 3067, 5, 274, 0, 0, 3067, 3068, 5, 341, 0, 0, 3068, 3084, 3, 482, 241, 0, 3069, 3071, 5, 4, 0, 0, 3070, 3072, 3, 32, 16, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3077, 1, 0, 0, 0, 3073, 3075, 3, 640, 320, 0, 3074, 3076, 3, 426, 213, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3073, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3077, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3084, 1, 0, 0, 0, 3081, 3084, 3, 428, 214, 0, 3082, 3084, 3, 382, 191, 0, 3083, 3057, 1, 0, 0, 0, 3083, 3060, 1, 0, 0, 0, 3083, 3066, 1, 0, 0, 0, 3083, 3069, 1, 0, 0, 0, 3083, 3081, 1, 0, 0, 0, 3083, 3082, 1, 0, 0, 0, 3084, 421, 1, 0, 0, 0, 3085, 3086, 3, 474, 237, 0, 3086, 3087, 5, 304, 0, 0, 3087, 3088, 5, 76, 0, 0, 3088, 3089, 3, 230, 115, 0, 3089, 3101, 1, 0, 0, 0, 3090, 3091, 3, 474, 237, 0, 3091, 3092, 5, 304, 0, 0, 3092, 3093, 5, 236, 0, 0, 3093, 3094, 3, 128, 64, 0, 3094, 3101, 1, 0, 0, 0, 3095, 3096, 3, 474, 237, 0, 3096, 3097, 5, 304, 0, 0, 3097, 3098, 7, 26, 0, 0, 3098, 3099, 5, 426, 0, 0, 3099, 3101, 1, 0, 0, 0, 3100, 3085, 1, 0, 0, 0, 3100, 3090, 1, 0, 0, 0, 3100, 3095, 1, 0, 0, 0, 3101, 423, 1, 0, 0, 0, 3102, 3103, 3, 474, 237, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 77, 0, 0, 3105, 3106, 3, 230, 115, 0, 3106, 3118, 1, 0, 0, 0, 3107, 3108, 3, 474, 237, 0, 3108, 3109, 5, 304, 0, 0, 3109, 3110, 5, 236, 0, 0, 3110, 3111, 3, 128, 64, 0, 3111, 3118, 1, 0, 0, 0, 3112, 3113, 3, 474, 237, 0, 3113, 3114, 5, 304, 0, 0, 3114, 3115, 5, 367, 0, 0, 3115, 3116, 5, 426, 0, 0, 3116, 3118, 1, 0, 0, 0, 3117, 3102, 1, 0, 0, 0, 3117, 3107, 1, 0, 0, 0, 3117, 3112, 1, 0, 0, 0, 3118, 425, 1, 0, 0, 0, 3119, 3120, 5, 189, 0, 0, 3120, 3121, 5, 426, 0, 0, 3121, 427, 1, 0, 0, 0, 3122, 3124, 5, 101, 0, 0, 3123, 3125, 3, 30, 15, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3127, 5, 237, 0, 0, 3127, 3133, 3, 644, 322, 0, 3128, 3129, 5, 397, 0, 0, 3129, 3130, 5, 237, 0, 0, 3130, 3132, 3, 644, 322, 0, 3131, 3128, 1, 0, 0, 0, 3132, 3135, 1, 0, 0, 0, 3133, 3131, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3138, 1, 0, 0, 0, 3135, 3133, 1, 0, 0, 0, 3136, 3137, 5, 152, 0, 0, 3137, 3139, 5, 254, 0, 0, 3138, 3136, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3141, 1, 0, 0, 0, 3140, 3142, 5, 255, 0, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3144, 1, 0, 0, 0, 3143, 3145, 3, 14, 7, 0, 3144, 3143, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 429, 1, 0, 0, 0, 3146, 3149, 3, 586, 293, 0, 3147, 3149, 3, 296, 148, 0, 3148, 3146, 1, 0, 0, 0, 3148, 3147, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 5, 405, 0, 0, 3151, 3152, 5, 426, 0, 0, 3152, 431, 1, 0, 0, 0, 3153, 3163, 5, 115, 0, 0, 3154, 3155, 5, 289, 0, 0, 3155, 3156, 5, 399, 0, 0, 3156, 3164, 7, 27, 0, 0, 3157, 3158, 5, 118, 0, 0, 3158, 3159, 5, 399, 0, 0, 3159, 3164, 5, 426, 0, 0, 3160, 3161, 5, 306, 0, 0, 3161, 3162, 5, 399, 0, 0, 3162, 3164, 5, 431, 0, 0, 3163, 3154, 1, 0, 0, 0, 3163, 3157, 1, 0, 0, 0, 3163, 3160, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3166, 5, 400, 0, 0, 3166, 433, 1, 0, 0, 0, 3167, 3168, 5, 160, 0, 0, 3168, 3169, 5, 426, 0, 0, 3169, 3170, 5, 233, 0, 0, 3170, 3171, 5, 426, 0, 0, 3171, 3172, 5, 301, 0, 0, 3172, 3177, 5, 426, 0, 0, 3173, 3174, 5, 159, 0, 0, 3174, 3175, 5, 426, 0, 0, 3175, 3176, 5, 232, 0, 0, 3176, 3178, 5, 426, 0, 0, 3177, 3173, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3181, 1, 0, 0, 0, 3179, 3181, 3, 652, 326, 0, 3180, 3167, 1, 0, 0, 0, 3180, 3179, 1, 0, 0, 0, 3181, 435, 1, 0, 0, 0, 3182, 3183, 5, 184, 0, 0, 3183, 3192, 5, 128, 0, 0, 3184, 3185, 5, 184, 0, 0, 3185, 3186, 5, 128, 0, 0, 3186, 3187, 3, 652, 326, 0, 3187, 3188, 5, 426, 0, 0, 3188, 3192, 1, 0, 0, 0, 3189, 3190, 5, 184, 0, 0, 3190, 3192, 3, 480, 240, 0, 3191, 3182, 1, 0, 0, 0, 3191, 3184, 1, 0, 0, 0, 3191, 3189, 1, 0, 0, 0, 3192, 437, 1, 0, 0, 0, 3193, 3195, 5, 58, 0, 0, 3194, 3196, 5, 333, 0, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3198, 1, 0, 0, 0, 3197, 3199, 5, 345, 0, 0, 3198, 3197, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3201, 1, 0, 0, 0, 3200, 3202, 5, 123, 0, 0, 3201, 3200, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3205, 5, 329, 0, 0, 3204, 3206, 3, 32, 16, 0, 3205, 3204, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3264, 3, 482, 241, 0, 3208, 3210, 3, 436, 218, 0, 3209, 3211, 3, 200, 100, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 3, 222, 111, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3217, 3, 246, 123, 0, 3216, 3215, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3219, 1, 0, 0, 0, 3218, 3220, 3, 426, 213, 0, 3219, 3218, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3222, 1, 0, 0, 0, 3221, 3223, 3, 224, 112, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 198, 99, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3265, 1, 0, 0, 0, 3227, 3228, 5, 399, 0, 0, 3228, 3229, 3, 250, 125, 0, 3229, 3230, 5, 400, 0, 0, 3230, 3232, 1, 0, 0, 0, 3231, 3227, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 196, 98, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 200, 100, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3240, 1, 0, 0, 0, 3239, 3241, 3, 208, 104, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3244, 3, 210, 105, 0, 3243, 3242, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 222, 111, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 246, 123, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 426, 213, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 224, 112, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 198, 99, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3262, 1, 0, 0, 0, 3260, 3261, 5, 17, 0, 0, 3261, 3263, 3, 382, 191, 0, 3262, 3260, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3208, 1, 0, 0, 0, 3264, 3231, 1, 0, 0, 0, 3265, 3329, 1, 0, 0, 0, 3266, 3267, 5, 58, 0, 0, 3267, 3268, 5, 195, 0, 0, 3268, 3270, 5, 329, 0, 0, 3269, 3271, 3, 32, 16, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3326, 3, 482, 241, 0, 3273, 3275, 3, 436, 218, 0, 3274, 3276, 3, 222, 111, 0, 3275, 3274, 1, 0, 0, 0, 3275, 3276, 1, 0, 0, 0, 3276, 3278, 1, 0, 0, 0, 3277, 3279, 3, 246, 123, 0, 3278, 3277, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3281, 1, 0, 0, 0, 3280, 3282, 3, 426, 213, 0, 3281, 3280, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3285, 3, 224, 112, 0, 3284, 3283, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3287, 1, 0, 0, 0, 3286, 3288, 3, 198, 99, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3327, 1, 0, 0, 0, 3289, 3290, 5, 399, 0, 0, 3290, 3291, 3, 250, 125, 0, 3291, 3292, 5, 400, 0, 0, 3292, 3294, 1, 0, 0, 0, 3293, 3289, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 196, 98, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3300, 3, 200, 100, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3302, 1, 0, 0, 0, 3301, 3303, 3, 208, 104, 0, 3302, 3301, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3306, 3, 210, 105, 0, 3305, 3304, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 222, 111, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 246, 123, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 426, 213, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 224, 112, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 198, 99, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3323, 5, 17, 0, 0, 3323, 3325, 3, 382, 191, 0, 3324, 3322, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3327, 1, 0, 0, 0, 3326, 3273, 1, 0, 0, 0, 3326, 3293, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3193, 1, 0, 0, 0, 3328, 3266, 1, 0, 0, 0, 3329, 439, 1, 0, 0, 0, 3330, 3331, 5, 58, 0, 0, 3331, 3333, 5, 69, 0, 0, 3332, 3334, 3, 32, 16, 0, 3333, 3332, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3338, 3, 652, 326, 0, 3336, 3337, 5, 352, 0, 0, 3337, 3339, 5, 426, 0, 0, 3338, 3336, 1, 0, 0, 0, 3338, 3339, 1, 0, 0, 0, 3339, 3342, 1, 0, 0, 0, 3340, 3341, 5, 367, 0, 0, 3341, 3343, 5, 426, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3346, 1, 0, 0, 0, 3344, 3345, 5, 47, 0, 0, 3345, 3347, 5, 426, 0, 0, 3346, 3344, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3351, 1, 0, 0, 0, 3348, 3349, 5, 387, 0, 0, 3349, 3350, 5, 77, 0, 0, 3350, 3352, 3, 230, 115, 0, 3351, 3348, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 441, 1, 0, 0, 0, 3353, 3354, 5, 101, 0, 0, 3354, 3356, 5, 69, 0, 0, 3355, 3357, 3, 30, 15, 0, 3356, 3355, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 3, 652, 326, 0, 3359, 443, 1, 0, 0, 0, 3360, 3361, 3, 652, 326, 0, 3361, 3362, 5, 395, 0, 0, 3362, 3364, 1, 0, 0, 0, 3363, 3360, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3368, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3368, 3369, 5, 415, 0, 0, 3369, 445, 1, 0, 0, 0, 3370, 3375, 3, 594, 297, 0, 3371, 3372, 5, 397, 0, 0, 3372, 3374, 3, 594, 297, 0, 3373, 3371, 1, 0, 0, 0, 3374, 3377, 1, 0, 0, 0, 3375, 3373, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 447, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3378, 3383, 3, 652, 326, 0, 3379, 3380, 5, 397, 0, 0, 3380, 3382, 3, 652, 326, 0, 3381, 3379, 1, 0, 0, 0, 3382, 3385, 1, 0, 0, 0, 3383, 3381, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 449, 1, 0, 0, 0, 3385, 3383, 1, 0, 0, 0, 3386, 3387, 5, 139, 0, 0, 3387, 3388, 3, 452, 226, 0, 3388, 451, 1, 0, 0, 0, 3389, 3390, 5, 359, 0, 0, 3390, 3393, 3, 460, 230, 0, 3391, 3392, 5, 397, 0, 0, 3392, 3394, 3, 460, 230, 0, 3393, 3391, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3399, 1, 0, 0, 0, 3397, 3399, 3, 456, 228, 0, 3398, 3389, 1, 0, 0, 0, 3398, 3397, 1, 0, 0, 0, 3399, 453, 1, 0, 0, 0, 3400, 3404, 3, 470, 235, 0, 3401, 3403, 3, 464, 232, 0, 3402, 3401, 1, 0, 0, 0, 3403, 3406, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3433, 1, 0, 0, 0, 3406, 3404, 1, 0, 0, 0, 3407, 3411, 3, 504, 252, 0, 3408, 3410, 3, 464, 232, 0, 3409, 3408, 1, 0, 0, 0, 3410, 3413, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3433, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3414, 3418, 3, 488, 244, 0, 3415, 3417, 3, 464, 232, 0, 3416, 3415, 1, 0, 0, 0, 3417, 3420, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3433, 1, 0, 0, 0, 3420, 3418, 1, 0, 0, 0, 3421, 3425, 3, 494, 247, 0, 3422, 3424, 3, 464, 232, 0, 3423, 3422, 1, 0, 0, 0, 3424, 3427, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3433, 1, 0, 0, 0, 3427, 3425, 1, 0, 0, 0, 3428, 3429, 5, 399, 0, 0, 3429, 3430, 3, 456, 228, 0, 3430, 3431, 5, 400, 0, 0, 3431, 3433, 1, 0, 0, 0, 3432, 3400, 1, 0, 0, 0, 3432, 3407, 1, 0, 0, 0, 3432, 3414, 1, 0, 0, 0, 3432, 3421, 1, 0, 0, 0, 3432, 3428, 1, 0, 0, 0, 3433, 455, 1, 0, 0, 0, 3434, 3445, 3, 454, 227, 0, 3435, 3436, 3, 462, 231, 0, 3436, 3441, 3, 458, 229, 0, 3437, 3438, 5, 224, 0, 0, 3438, 3442, 3, 594, 297, 0, 3439, 3440, 5, 370, 0, 0, 3440, 3442, 3, 266, 133, 0, 3441, 3437, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3444, 1, 0, 0, 0, 3443, 3435, 1, 0, 0, 0, 3444, 3447, 1, 0, 0, 0, 3445, 3443, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 457, 1, 0, 0, 0, 3447, 3445, 1, 0, 0, 0, 3448, 3453, 3, 470, 235, 0, 3449, 3453, 3, 504, 252, 0, 3450, 3453, 3, 488, 244, 0, 3451, 3453, 3, 494, 247, 0, 3452, 3448, 1, 0, 0, 0, 3452, 3449, 1, 0, 0, 0, 3452, 3450, 1, 0, 0, 0, 3452, 3451, 1, 0, 0, 0, 3453, 3457, 1, 0, 0, 0, 3454, 3456, 3, 464, 232, 0, 3455, 3454, 1, 0, 0, 0, 3456, 3459, 1, 0, 0, 0, 3457, 3455, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 459, 1, 0, 0, 0, 3459, 3457, 1, 0, 0, 0, 3460, 3462, 5, 250, 0, 0, 3461, 3460, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3465, 3, 478, 239, 0, 3464, 3466, 3, 468, 234, 0, 3465, 3464, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3471, 1, 0, 0, 0, 3467, 3469, 5, 17, 0, 0, 3468, 3467, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 3472, 3, 652, 326, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3474, 5, 399, 0, 0, 3474, 3475, 3, 446, 223, 0, 3475, 3476, 5, 400, 0, 0, 3476, 461, 1, 0, 0, 0, 3477, 3492, 5, 397, 0, 0, 3478, 3489, 5, 157, 0, 0, 3479, 3489, 5, 60, 0, 0, 3480, 3482, 7, 28, 0, 0, 3481, 3483, 5, 231, 0, 0, 3482, 3481, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3489, 1, 0, 0, 0, 3484, 3486, 5, 180, 0, 0, 3485, 3487, 7, 29, 0, 0, 3486, 3485, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3489, 1, 0, 0, 0, 3488, 3478, 1, 0, 0, 0, 3488, 3479, 1, 0, 0, 0, 3488, 3480, 1, 0, 0, 0, 3488, 3484, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 3492, 5, 171, 0, 0, 3491, 3477, 1, 0, 0, 0, 3491, 3488, 1, 0, 0, 0, 3492, 463, 1, 0, 0, 0, 3493, 3494, 5, 178, 0, 0, 3494, 3495, 5, 378, 0, 0, 3495, 3496, 5, 231, 0, 0, 3496, 3497, 3, 564, 282, 0, 3497, 3507, 3, 466, 233, 0, 3498, 3499, 5, 17, 0, 0, 3499, 3504, 3, 652, 326, 0, 3500, 3501, 5, 397, 0, 0, 3501, 3503, 3, 652, 326, 0, 3502, 3500, 1, 0, 0, 0, 3503, 3506, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3508, 1, 0, 0, 0, 3506, 3504, 1, 0, 0, 0, 3507, 3498, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3551, 1, 0, 0, 0, 3509, 3511, 5, 397, 0, 0, 3510, 3509, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3548, 5, 178, 0, 0, 3513, 3514, 5, 378, 0, 0, 3514, 3515, 3, 564, 282, 0, 3515, 3525, 3, 466, 233, 0, 3516, 3517, 5, 17, 0, 0, 3517, 3522, 3, 652, 326, 0, 3518, 3519, 5, 397, 0, 0, 3519, 3521, 3, 652, 326, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3524, 1, 0, 0, 0, 3522, 3520, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3526, 1, 0, 0, 0, 3524, 3522, 1, 0, 0, 0, 3525, 3516, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3549, 1, 0, 0, 0, 3527, 3528, 5, 329, 0, 0, 3528, 3529, 5, 399, 0, 0, 3529, 3530, 3, 500, 250, 0, 3530, 3532, 5, 400, 0, 0, 3531, 3533, 5, 17, 0, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 3546, 3, 466, 233, 0, 3535, 3536, 5, 399, 0, 0, 3536, 3541, 3, 652, 326, 0, 3537, 3538, 5, 397, 0, 0, 3538, 3540, 3, 652, 326, 0, 3539, 3537, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3544, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3545, 5, 400, 0, 0, 3545, 3547, 1, 0, 0, 0, 3546, 3535, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 3549, 1, 0, 0, 0, 3548, 3513, 1, 0, 0, 0, 3548, 3527, 1, 0, 0, 0, 3549, 3551, 1, 0, 0, 0, 3550, 3493, 1, 0, 0, 0, 3550, 3510, 1, 0, 0, 0, 3551, 465, 1, 0, 0, 0, 3552, 3553, 3, 652, 326, 0, 3553, 467, 1, 0, 0, 0, 3554, 3555, 5, 331, 0, 0, 3555, 3556, 5, 399, 0, 0, 3556, 3557, 5, 30, 0, 0, 3557, 3558, 5, 431, 0, 0, 3558, 3559, 5, 230, 0, 0, 3559, 3560, 5, 221, 0, 0, 3560, 3570, 5, 431, 0, 0, 3561, 3562, 5, 224, 0, 0, 3562, 3567, 3, 594, 297, 0, 3563, 3564, 5, 397, 0, 0, 3564, 3566, 3, 594, 297, 0, 3565, 3563, 1, 0, 0, 0, 3566, 3569, 1, 0, 0, 0, 3567, 3565, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3571, 1, 0, 0, 0, 3569, 3567, 1, 0, 0, 0, 3570, 3561, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3582, 5, 400, 0, 0, 3573, 3574, 5, 331, 0, 0, 3574, 3578, 5, 399, 0, 0, 3575, 3576, 5, 431, 0, 0, 3576, 3579, 7, 30, 0, 0, 3577, 3579, 5, 430, 0, 0, 3578, 3575, 1, 0, 0, 0, 3578, 3577, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3582, 5, 400, 0, 0, 3581, 3554, 1, 0, 0, 0, 3581, 3573, 1, 0, 0, 0, 3582, 469, 1, 0, 0, 0, 3583, 3585, 3, 478, 239, 0, 3584, 3586, 3, 226, 113, 0, 3585, 3584, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3588, 1, 0, 0, 0, 3587, 3589, 3, 468, 234, 0, 3588, 3587, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3591, 1, 0, 0, 0, 3590, 3592, 3, 472, 236, 0, 3591, 3590, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3597, 1, 0, 0, 0, 3593, 3595, 5, 17, 0, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3598, 3, 652, 326, 0, 3597, 3594, 1, 0, 0, 0, 3597, 3598, 1, 0, 0, 0, 3598, 471, 1, 0, 0, 0, 3599, 3609, 5, 134, 0, 0, 3600, 3601, 5, 327, 0, 0, 3601, 3602, 5, 17, 0, 0, 3602, 3603, 5, 221, 0, 0, 3603, 3610, 3, 594, 297, 0, 3604, 3605, 5, 134, 0, 0, 3605, 3606, 5, 328, 0, 0, 3606, 3607, 5, 17, 0, 0, 3607, 3608, 5, 221, 0, 0, 3608, 3610, 5, 431, 0, 0, 3609, 3600, 1, 0, 0, 0, 3609, 3604, 1, 0, 0, 0, 3610, 473, 1, 0, 0, 0, 3611, 3612, 3, 652, 326, 0, 3612, 475, 1, 0, 0, 0, 3613, 3614, 3, 652, 326, 0, 3614, 477, 1, 0, 0, 0, 3615, 3618, 3, 480, 240, 0, 3616, 3618, 3, 484, 242, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3616, 1, 0, 0, 0, 3618, 479, 1, 0, 0, 0, 3619, 3620, 3, 652, 326, 0, 3620, 3621, 5, 395, 0, 0, 3621, 3624, 3, 652, 326, 0, 3622, 3623, 5, 395, 0, 0, 3623, 3625, 3, 652, 326, 0, 3624, 3622, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3628, 3, 652, 326, 0, 3627, 3619, 1, 0, 0, 0, 3627, 3626, 1, 0, 0, 0, 3628, 481, 1, 0, 0, 0, 3629, 3630, 3, 652, 326, 0, 3630, 3631, 5, 395, 0, 0, 3631, 3634, 3, 652, 326, 0, 3632, 3633, 5, 395, 0, 0, 3633, 3635, 3, 652, 326, 0, 3634, 3632, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3638, 1, 0, 0, 0, 3636, 3638, 3, 652, 326, 0, 3637, 3629, 1, 0, 0, 0, 3637, 3636, 1, 0, 0, 0, 3638, 483, 1, 0, 0, 0, 3639, 3640, 3, 652, 326, 0, 3640, 3641, 5, 395, 0, 0, 3641, 3643, 1, 0, 0, 0, 3642, 3639, 1, 0, 0, 0, 3642, 3643, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 3, 652, 326, 0, 3645, 485, 1, 0, 0, 0, 3646, 3647, 3, 652, 326, 0, 3647, 3648, 5, 395, 0, 0, 3648, 3650, 1, 0, 0, 0, 3649, 3646, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3652, 3, 652, 326, 0, 3652, 487, 1, 0, 0, 0, 3653, 3654, 5, 399, 0, 0, 3654, 3655, 3, 362, 181, 0, 3655, 3657, 5, 400, 0, 0, 3656, 3658, 5, 17, 0, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3660, 3, 652, 326, 0, 3660, 489, 1, 0, 0, 0, 3661, 3663, 3, 556, 278, 0, 3662, 3664, 3, 554, 277, 0, 3663, 3662, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3673, 1, 0, 0, 0, 3665, 3673, 3, 554, 277, 0, 3666, 3668, 3, 560, 280, 0, 3667, 3669, 3, 562, 281, 0, 3668, 3667, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3673, 1, 0, 0, 0, 3670, 3673, 3, 562, 281, 0, 3671, 3673, 3, 558, 279, 0, 3672, 3661, 1, 0, 0, 0, 3672, 3665, 1, 0, 0, 0, 3672, 3666, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 491, 1, 0, 0, 0, 3674, 3678, 3, 488, 244, 0, 3675, 3678, 3, 470, 235, 0, 3676, 3678, 3, 494, 247, 0, 3677, 3674, 1, 0, 0, 0, 3677, 3675, 1, 0, 0, 0, 3677, 3676, 1, 0, 0, 0, 3678, 493, 1, 0, 0, 0, 3679, 3681, 3, 496, 248, 0, 3680, 3682, 3, 652, 326, 0, 3681, 3680, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 495, 1, 0, 0, 0, 3683, 3684, 3, 652, 326, 0, 3684, 3685, 5, 399, 0, 0, 3685, 3686, 5, 224, 0, 0, 3686, 3688, 3, 492, 246, 0, 3687, 3689, 3, 490, 245, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3705, 1, 0, 0, 0, 3690, 3691, 5, 432, 0, 0, 3691, 3692, 5, 399, 0, 0, 3692, 3693, 3, 594, 297, 0, 3693, 3702, 5, 400, 0, 0, 3694, 3695, 5, 397, 0, 0, 3695, 3696, 5, 432, 0, 0, 3696, 3697, 5, 399, 0, 0, 3697, 3698, 3, 594, 297, 0, 3698, 3699, 5, 400, 0, 0, 3699, 3701, 1, 0, 0, 0, 3700, 3694, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3706, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3690, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3708, 5, 400, 0, 0, 3708, 497, 1, 0, 0, 0, 3709, 3710, 5, 384, 0, 0, 3710, 3711, 3, 594, 297, 0, 3711, 499, 1, 0, 0, 0, 3712, 3731, 5, 374, 0, 0, 3713, 3718, 3, 550, 275, 0, 3714, 3715, 5, 397, 0, 0, 3715, 3717, 3, 550, 275, 0, 3716, 3714, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3719, 3732, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3722, 5, 399, 0, 0, 3722, 3723, 3, 546, 273, 0, 3723, 3728, 5, 400, 0, 0, 3724, 3725, 5, 397, 0, 0, 3725, 3727, 3, 550, 275, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3730, 1, 0, 0, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3732, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3713, 1, 0, 0, 0, 3731, 3721, 1, 0, 0, 0, 3732, 501, 1, 0, 0, 0, 3733, 3734, 5, 329, 0, 0, 3734, 3735, 5, 399, 0, 0, 3735, 3736, 3, 500, 250, 0, 3736, 3737, 5, 400, 0, 0, 3737, 503, 1, 0, 0, 0, 3738, 3740, 3, 502, 251, 0, 3739, 3741, 5, 17, 0, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3752, 3, 466, 233, 0, 3743, 3744, 5, 399, 0, 0, 3744, 3749, 3, 652, 326, 0, 3745, 3746, 5, 397, 0, 0, 3746, 3748, 3, 652, 326, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3751, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3743, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3755, 5, 400, 0, 0, 3755, 505, 1, 0, 0, 0, 3756, 3758, 5, 299, 0, 0, 3757, 3759, 5, 436, 0, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3766, 1, 0, 0, 0, 3760, 3762, 7, 22, 0, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3767, 3, 510, 255, 0, 3764, 3765, 5, 347, 0, 0, 3765, 3767, 3, 508, 254, 0, 3766, 3761, 1, 0, 0, 0, 3766, 3764, 1, 0, 0, 0, 3767, 3770, 1, 0, 0, 0, 3768, 3770, 3, 518, 259, 0, 3769, 3756, 1, 0, 0, 0, 3769, 3768, 1, 0, 0, 0, 3770, 507, 1, 0, 0, 0, 3771, 3772, 5, 399, 0, 0, 3772, 3773, 3, 522, 261, 0, 3773, 3774, 5, 400, 0, 0, 3774, 3775, 3, 212, 106, 0, 3775, 3776, 3, 216, 108, 0, 3776, 3777, 5, 370, 0, 0, 3777, 3790, 5, 426, 0, 0, 3778, 3788, 5, 17, 0, 0, 3779, 3782, 5, 399, 0, 0, 3780, 3783, 3, 448, 224, 0, 3781, 3783, 3, 248, 124, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3781, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3785, 5, 400, 0, 0, 3785, 3789, 1, 0, 0, 0, 3786, 3789, 3, 448, 224, 0, 3787, 3789, 3, 248, 124, 0, 3788, 3779, 1, 0, 0, 0, 3788, 3786, 1, 0, 0, 0, 3788, 3787, 1, 0, 0, 0, 3789, 3791, 1, 0, 0, 0, 3790, 3778, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3793, 3, 212, 106, 0, 3793, 3794, 3, 214, 107, 0, 3794, 509, 1, 0, 0, 0, 3795, 3800, 3, 512, 256, 0, 3796, 3797, 5, 397, 0, 0, 3797, 3799, 3, 512, 256, 0, 3798, 3796, 1, 0, 0, 0, 3799, 3802, 1, 0, 0, 0, 3800, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 511, 1, 0, 0, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3827, 3, 444, 222, 0, 3804, 3807, 3, 514, 257, 0, 3805, 3807, 3, 516, 258, 0, 3806, 3804, 1, 0, 0, 0, 3806, 3805, 1, 0, 0, 0, 3807, 3824, 1, 0, 0, 0, 3808, 3810, 5, 17, 0, 0, 3809, 3808, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3825, 3, 652, 326, 0, 3812, 3813, 5, 17, 0, 0, 3813, 3814, 5, 399, 0, 0, 3814, 3819, 3, 652, 326, 0, 3815, 3816, 5, 397, 0, 0, 3816, 3818, 3, 652, 326, 0, 3817, 3815, 1, 0, 0, 0, 3818, 3821, 1, 0, 0, 0, 3819, 3817, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3822, 3823, 5, 400, 0, 0, 3823, 3825, 1, 0, 0, 0, 3824, 3809, 1, 0, 0, 0, 3824, 3812, 1, 0, 0, 0, 3824, 3825, 1, 0, 0, 0, 3825, 3827, 1, 0, 0, 0, 3826, 3803, 1, 0, 0, 0, 3826, 3806, 1, 0, 0, 0, 3827, 513, 1, 0, 0, 0, 3828, 3829, 3, 256, 128, 0, 3829, 515, 1, 0, 0, 0, 3830, 3831, 3, 594, 297, 0, 3831, 517, 1, 0, 0, 0, 3832, 3833, 7, 31, 0, 0, 3833, 3834, 3, 522, 261, 0, 3834, 3835, 3, 212, 106, 0, 3835, 3836, 3, 216, 108, 0, 3836, 3837, 5, 370, 0, 0, 3837, 3850, 5, 426, 0, 0, 3838, 3848, 5, 17, 0, 0, 3839, 3842, 5, 399, 0, 0, 3840, 3843, 3, 448, 224, 0, 3841, 3843, 3, 248, 124, 0, 3842, 3840, 1, 0, 0, 0, 3842, 3841, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3845, 5, 400, 0, 0, 3845, 3849, 1, 0, 0, 0, 3846, 3849, 3, 448, 224, 0, 3847, 3849, 3, 248, 124, 0, 3848, 3839, 1, 0, 0, 0, 3848, 3846, 1, 0, 0, 0, 3848, 3847, 1, 0, 0, 0, 3849, 3851, 1, 0, 0, 0, 3850, 3838, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 3852, 1, 0, 0, 0, 3852, 3853, 3, 212, 106, 0, 3853, 3854, 3, 214, 107, 0, 3854, 519, 1, 0, 0, 0, 3855, 3858, 3, 444, 222, 0, 3856, 3858, 3, 594, 297, 0, 3857, 3855, 1, 0, 0, 0, 3857, 3856, 1, 0, 0, 0, 3858, 521, 1, 0, 0, 0, 3859, 3864, 3, 520, 260, 0, 3860, 3861, 5, 397, 0, 0, 3861, 3863, 3, 520, 260, 0, 3862, 3860, 1, 0, 0, 0, 3863, 3866, 1, 0, 0, 0, 3864, 3862, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 523, 1, 0, 0, 0, 3866, 3864, 1, 0, 0, 0, 3867, 3868, 5, 386, 0, 0, 3868, 3869, 3, 652, 326, 0, 3869, 3870, 5, 17, 0, 0, 3870, 3878, 3, 526, 263, 0, 3871, 3872, 5, 397, 0, 0, 3872, 3873, 3, 652, 326, 0, 3873, 3874, 5, 17, 0, 0, 3874, 3875, 3, 526, 263, 0, 3875, 3877, 1, 0, 0, 0, 3876, 3871, 1, 0, 0, 0, 3877, 3880, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 525, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3881, 3894, 3, 652, 326, 0, 3882, 3884, 5, 399, 0, 0, 3883, 3885, 3, 652, 326, 0, 3884, 3883, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 3887, 1, 0, 0, 0, 3886, 3888, 3, 490, 245, 0, 3887, 3886, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 3890, 1, 0, 0, 0, 3889, 3891, 3, 528, 264, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3894, 5, 400, 0, 0, 3893, 3881, 1, 0, 0, 0, 3893, 3882, 1, 0, 0, 0, 3894, 527, 1, 0, 0, 0, 3895, 3909, 7, 32, 0, 0, 3896, 3897, 5, 354, 0, 0, 3897, 3903, 5, 247, 0, 0, 3898, 3899, 5, 62, 0, 0, 3899, 3903, 5, 291, 0, 0, 3900, 3901, 5, 431, 0, 0, 3901, 3903, 5, 247, 0, 0, 3902, 3896, 1, 0, 0, 0, 3902, 3898, 1, 0, 0, 0, 3902, 3900, 1, 0, 0, 0, 3903, 3910, 1, 0, 0, 0, 3904, 3905, 5, 25, 0, 0, 3905, 3906, 3, 530, 265, 0, 3906, 3907, 5, 11, 0, 0, 3907, 3908, 3, 530, 265, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3902, 1, 0, 0, 0, 3909, 3904, 1, 0, 0, 0, 3910, 529, 1, 0, 0, 0, 3911, 3912, 7, 33, 0, 0, 3912, 3916, 7, 34, 0, 0, 3913, 3914, 5, 62, 0, 0, 3914, 3916, 5, 291, 0, 0, 3915, 3911, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3916, 531, 1, 0, 0, 0, 3917, 3918, 5, 144, 0, 0, 3918, 3924, 5, 32, 0, 0, 3919, 3925, 3, 256, 128, 0, 3920, 3925, 3, 534, 267, 0, 3921, 3925, 3, 536, 268, 0, 3922, 3923, 5, 399, 0, 0, 3923, 3925, 5, 400, 0, 0, 3924, 3919, 1, 0, 0, 0, 3924, 3920, 1, 0, 0, 0, 3924, 3921, 1, 0, 0, 0, 3924, 3922, 1, 0, 0, 0, 3925, 533, 1, 0, 0, 0, 3926, 3929, 5, 290, 0, 0, 3927, 3929, 5, 61, 0, 0, 3928, 3926, 1, 0, 0, 0, 3928, 3927, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 5, 399, 0, 0, 3931, 3936, 3, 594, 297, 0, 3932, 3933, 5, 397, 0, 0, 3933, 3935, 3, 594, 297, 0, 3934, 3932, 1, 0, 0, 0, 3935, 3938, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3939, 1, 0, 0, 0, 3938, 3936, 1, 0, 0, 0, 3939, 3940, 5, 400, 0, 0, 3940, 535, 1, 0, 0, 0, 3941, 3946, 3, 552, 276, 0, 3942, 3943, 5, 387, 0, 0, 3943, 3947, 5, 290, 0, 0, 3944, 3945, 5, 387, 0, 0, 3945, 3947, 5, 61, 0, 0, 3946, 3942, 1, 0, 0, 0, 3946, 3944, 1, 0, 0, 0, 3946, 3947, 1, 0, 0, 0, 3947, 3961, 1, 0, 0, 0, 3948, 3949, 5, 145, 0, 0, 3949, 3950, 5, 305, 0, 0, 3950, 3951, 5, 399, 0, 0, 3951, 3956, 3, 538, 269, 0, 3952, 3953, 5, 397, 0, 0, 3953, 3955, 3, 538, 269, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3958, 1, 0, 0, 0, 3956, 3954, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3959, 1, 0, 0, 0, 3958, 3956, 1, 0, 0, 0, 3959, 3960, 5, 400, 0, 0, 3960, 3962, 1, 0, 0, 0, 3961, 3948, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 537, 1, 0, 0, 0, 3963, 3965, 5, 399, 0, 0, 3964, 3966, 3, 594, 297, 0, 3965, 3964, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 3971, 1, 0, 0, 0, 3967, 3968, 5, 397, 0, 0, 3968, 3970, 3, 594, 297, 0, 3969, 3967, 1, 0, 0, 0, 3970, 3973, 1, 0, 0, 0, 3971, 3969, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3974, 1, 0, 0, 0, 3973, 3971, 1, 0, 0, 0, 3974, 3977, 5, 400, 0, 0, 3975, 3977, 3, 594, 297, 0, 3976, 3963, 1, 0, 0, 0, 3976, 3975, 1, 0, 0, 0, 3977, 539, 1, 0, 0, 0, 3978, 3979, 5, 146, 0, 0, 3979, 3980, 3, 594, 297, 0, 3980, 541, 1, 0, 0, 0, 3981, 3982, 5, 256, 0, 0, 3982, 3983, 3, 594, 297, 0, 3983, 543, 1, 0, 0, 0, 3984, 3987, 5, 83, 0, 0, 3985, 3987, 3, 594, 297, 0, 3986, 3984, 1, 0, 0, 0, 3986, 3985, 1, 0, 0, 0, 3987, 545, 1, 0, 0, 0, 3988, 3990, 3, 594, 297, 0, 3989, 3991, 5, 17, 0, 0, 3990, 3989, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3993, 1, 0, 0, 0, 3992, 3994, 3, 652, 326, 0, 3993, 3992, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 4005, 1, 0, 0, 0, 3995, 3996, 5, 397, 0, 0, 3996, 3998, 3, 594, 297, 0, 3997, 3999, 5, 17, 0, 0, 3998, 3997, 1, 0, 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4001, 1, 0, 0, 0, 4000, 4002, 3, 652, 326, 0, 4001, 4000, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4004, 1, 0, 0, 0, 4003, 3995, 1, 0, 0, 0, 4004, 4007, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 547, 1, 0, 0, 0, 4007, 4005, 1, 0, 0, 0, 4008, 4011, 3, 550, 275, 0, 4009, 4011, 3, 552, 276, 0, 4010, 4008, 1, 0, 0, 0, 4010, 4009, 1, 0, 0, 0, 4011, 549, 1, 0, 0, 0, 4012, 4013, 5, 399, 0, 0, 4013, 4014, 3, 552, 276, 0, 4014, 4015, 5, 400, 0, 0, 4015, 551, 1, 0, 0, 0, 4016, 4023, 3, 544, 272, 0, 4017, 4018, 5, 397, 0, 0, 4018, 4020, 3, 544, 272, 0, 4019, 4017, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4019, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4024, 1, 0, 0, 0, 4023, 4019, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 553, 1, 0, 0, 0, 4025, 4026, 5, 229, 0, 0, 4026, 4027, 5, 32, 0, 0, 4027, 4032, 3, 310, 155, 0, 4028, 4029, 5, 397, 0, 0, 4029, 4031, 3, 310, 155, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4034, 1, 0, 0, 0, 4032, 4030, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 555, 1, 0, 0, 0, 4034, 4032, 1, 0, 0, 0, 4035, 4036, 5, 237, 0, 0, 4036, 4037, 5, 32, 0, 0, 4037, 4038, 3, 548, 274, 0, 4038, 557, 1, 0, 0, 0, 4039, 4040, 5, 41, 0, 0, 4040, 4041, 5, 32, 0, 0, 4041, 4042, 3, 548, 274, 0, 4042, 559, 1, 0, 0, 0, 4043, 4044, 5, 97, 0, 0, 4044, 4045, 5, 32, 0, 0, 4045, 4046, 3, 548, 274, 0, 4046, 561, 1, 0, 0, 0, 4047, 4048, 5, 314, 0, 0, 4048, 4068, 5, 32, 0, 0, 4049, 4050, 5, 399, 0, 0, 4050, 4055, 3, 310, 155, 0, 4051, 4052, 5, 397, 0, 0, 4052, 4054, 3, 310, 155, 0, 4053, 4051, 1, 0, 0, 0, 4054, 4057, 1, 0, 0, 0, 4055, 4053, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4058, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4058, 4059, 5, 400, 0, 0, 4059, 4069, 1, 0, 0, 0, 4060, 4065, 3, 310, 155, 0, 4061, 4062, 5, 397, 0, 0, 4062, 4064, 3, 310, 155, 0, 4063, 4061, 1, 0, 0, 0, 4064, 4067, 1, 0, 0, 0, 4065, 4063, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4069, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4068, 4049, 1, 0, 0, 0, 4068, 4060, 1, 0, 0, 0, 4069, 563, 1, 0, 0, 0, 4070, 4071, 5, 349, 0, 0, 4071, 4075, 5, 399, 0, 0, 4072, 4076, 5, 179, 0, 0, 4073, 4076, 5, 343, 0, 0, 4074, 4076, 5, 29, 0, 0, 4075, 4072, 1, 0, 0, 0, 4075, 4073, 1, 0, 0, 0, 4075, 4074, 1, 0, 0, 0, 4075, 4076, 1, 0, 0, 0, 4076, 4078, 1, 0, 0, 0, 4077, 4079, 3, 520, 260, 0, 4078, 4077, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4081, 5, 139, 0, 0, 4081, 4082, 3, 520, 260, 0, 4082, 4083, 5, 400, 0, 0, 4083, 4124, 1, 0, 0, 0, 4084, 4085, 3, 572, 286, 0, 4085, 4100, 5, 399, 0, 0, 4086, 4101, 5, 415, 0, 0, 4087, 4089, 7, 22, 0, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4098, 1, 0, 0, 0, 4090, 4095, 3, 520, 260, 0, 4091, 4092, 5, 397, 0, 0, 4092, 4094, 3, 520, 260, 0, 4093, 4091, 1, 0, 0, 0, 4094, 4097, 1, 0, 0, 0, 4095, 4093, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 4099, 1, 0, 0, 0, 4097, 4095, 1, 0, 0, 0, 4098, 4090, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 1, 0, 0, 0, 4100, 4086, 1, 0, 0, 0, 4100, 4088, 1, 0, 0, 0, 4101, 4121, 1, 0, 0, 0, 4102, 4103, 5, 400, 0, 0, 4103, 4104, 5, 388, 0, 0, 4104, 4105, 5, 144, 0, 0, 4105, 4106, 5, 399, 0, 0, 4106, 4107, 3, 554, 277, 0, 4107, 4108, 5, 400, 0, 0, 4108, 4122, 1, 0, 0, 0, 4109, 4111, 5, 400, 0, 0, 4110, 4112, 3, 566, 283, 0, 4111, 4110, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 4113, 1, 0, 0, 0, 4113, 4114, 5, 234, 0, 0, 4114, 4122, 3, 526, 263, 0, 4115, 4116, 3, 566, 283, 0, 4116, 4117, 5, 400, 0, 0, 4117, 4118, 5, 234, 0, 0, 4118, 4119, 3, 526, 263, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4122, 5, 400, 0, 0, 4121, 4102, 1, 0, 0, 0, 4121, 4109, 1, 0, 0, 0, 4121, 4115, 1, 0, 0, 0, 4121, 4120, 1, 0, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4070, 1, 0, 0, 0, 4123, 4084, 1, 0, 0, 0, 4124, 565, 1, 0, 0, 0, 4125, 4126, 7, 35, 0, 0, 4126, 4127, 5, 220, 0, 0, 4127, 567, 1, 0, 0, 0, 4128, 4129, 3, 654, 327, 0, 4129, 569, 1, 0, 0, 0, 4130, 4133, 3, 654, 327, 0, 4131, 4133, 5, 426, 0, 0, 4132, 4130, 1, 0, 0, 0, 4132, 4131, 1, 0, 0, 0, 4133, 571, 1, 0, 0, 0, 4134, 4138, 3, 654, 327, 0, 4135, 4138, 3, 660, 330, 0, 4136, 4138, 3, 650, 325, 0, 4137, 4134, 1, 0, 0, 0, 4137, 4135, 1, 0, 0, 0, 4137, 4136, 1, 0, 0, 0, 4138, 573, 1, 0, 0, 0, 4139, 4140, 5, 36, 0, 0, 4140, 4141, 5, 399, 0, 0, 4141, 4142, 3, 594, 297, 0, 4142, 4143, 5, 17, 0, 0, 4143, 4146, 3, 350, 175, 0, 4144, 4145, 5, 137, 0, 0, 4145, 4147, 5, 426, 0, 0, 4146, 4144, 1, 0, 0, 0, 4146, 4147, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4149, 5, 400, 0, 0, 4149, 575, 1, 0, 0, 0, 4150, 4151, 5, 35, 0, 0, 4151, 4157, 3, 594, 297, 0, 4152, 4153, 5, 383, 0, 0, 4153, 4154, 3, 594, 297, 0, 4154, 4155, 5, 335, 0, 0, 4155, 4156, 3, 594, 297, 0, 4156, 4158, 1, 0, 0, 0, 4157, 4152, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 4157, 1, 0, 0, 0, 4159, 4160, 1, 0, 0, 0, 4160, 4163, 1, 0, 0, 0, 4161, 4162, 5, 105, 0, 0, 4162, 4164, 3, 594, 297, 0, 4163, 4161, 1, 0, 0, 0, 4163, 4164, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4166, 5, 108, 0, 0, 4166, 577, 1, 0, 0, 0, 4167, 4173, 5, 35, 0, 0, 4168, 4169, 5, 383, 0, 0, 4169, 4170, 3, 594, 297, 0, 4170, 4171, 5, 335, 0, 0, 4171, 4172, 3, 594, 297, 0, 4172, 4174, 1, 0, 0, 0, 4173, 4168, 1, 0, 0, 0, 4174, 4175, 1, 0, 0, 0, 4175, 4173, 1, 0, 0, 0, 4175, 4176, 1, 0, 0, 0, 4176, 4179, 1, 0, 0, 0, 4177, 4178, 5, 105, 0, 0, 4178, 4180, 3, 594, 297, 0, 4179, 4177, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4182, 5, 108, 0, 0, 4182, 579, 1, 0, 0, 0, 4183, 4184, 5, 132, 0, 0, 4184, 4185, 5, 399, 0, 0, 4185, 4188, 3, 594, 297, 0, 4186, 4187, 5, 341, 0, 0, 4187, 4189, 3, 584, 292, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4191, 5, 400, 0, 0, 4191, 581, 1, 0, 0, 0, 4192, 4193, 5, 124, 0, 0, 4193, 4194, 5, 399, 0, 0, 4194, 4195, 3, 584, 292, 0, 4195, 4196, 5, 139, 0, 0, 4196, 4197, 3, 594, 297, 0, 4197, 4198, 5, 400, 0, 0, 4198, 583, 1, 0, 0, 0, 4199, 4208, 3, 680, 340, 0, 4200, 4208, 5, 257, 0, 0, 4201, 4208, 3, 682, 341, 0, 4202, 4208, 3, 684, 342, 0, 4203, 4208, 3, 686, 343, 0, 4204, 4208, 3, 688, 344, 0, 4205, 4208, 3, 690, 345, 0, 4206, 4208, 3, 692, 346, 0, 4207, 4199, 1, 0, 0, 0, 4207, 4200, 1, 0, 0, 0, 4207, 4201, 1, 0, 0, 0, 4207, 4202, 1, 0, 0, 0, 4207, 4203, 1, 0, 0, 0, 4207, 4204, 1, 0, 0, 0, 4207, 4205, 1, 0, 0, 0, 4207, 4206, 1, 0, 0, 0, 4208, 585, 1, 0, 0, 0, 4209, 4210, 3, 588, 294, 0, 4210, 4211, 3, 592, 296, 0, 4211, 4238, 1, 0, 0, 0, 4212, 4238, 5, 431, 0, 0, 4213, 4214, 5, 71, 0, 0, 4214, 4238, 5, 426, 0, 0, 4215, 4238, 5, 63, 0, 0, 4216, 4217, 5, 337, 0, 0, 4217, 4238, 5, 426, 0, 0, 4218, 4238, 5, 64, 0, 0, 4219, 4220, 5, 338, 0, 0, 4220, 4238, 5, 426, 0, 0, 4221, 4225, 5, 426, 0, 0, 4222, 4224, 5, 426, 0, 0, 4223, 4222, 1, 0, 0, 0, 4224, 4227, 1, 0, 0, 0, 4225, 4223, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4238, 1, 0, 0, 0, 4227, 4225, 1, 0, 0, 0, 4228, 4238, 5, 428, 0, 0, 4229, 4238, 5, 429, 0, 0, 4230, 4231, 5, 433, 0, 0, 4231, 4238, 5, 427, 0, 0, 4232, 4238, 5, 350, 0, 0, 4233, 4238, 5, 125, 0, 0, 4234, 4238, 5, 219, 0, 0, 4235, 4238, 5, 424, 0, 0, 4236, 4238, 3, 258, 129, 0, 4237, 4209, 1, 0, 0, 0, 4237, 4212, 1, 0, 0, 0, 4237, 4213, 1, 0, 0, 0, 4237, 4215, 1, 0, 0, 0, 4237, 4216, 1, 0, 0, 0, 4237, 4218, 1, 0, 0, 0, 4237, 4219, 1, 0, 0, 0, 4237, 4221, 1, 0, 0, 0, 4237, 4228, 1, 0, 0, 0, 4237, 4229, 1, 0, 0, 0, 4237, 4230, 1, 0, 0, 0, 4237, 4232, 1, 0, 0, 0, 4237, 4233, 1, 0, 0, 0, 4237, 4234, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4237, 4236, 1, 0, 0, 0, 4238, 587, 1, 0, 0, 0, 4239, 4240, 7, 27, 0, 0, 4240, 589, 1, 0, 0, 0, 4241, 4242, 5, 399, 0, 0, 4242, 4243, 3, 588, 294, 0, 4243, 4244, 5, 400, 0, 0, 4244, 4245, 3, 592, 296, 0, 4245, 4257, 1, 0, 0, 0, 4246, 4252, 5, 165, 0, 0, 4247, 4253, 3, 588, 294, 0, 4248, 4249, 5, 399, 0, 0, 4249, 4250, 3, 594, 297, 0, 4250, 4251, 5, 400, 0, 0, 4251, 4253, 1, 0, 0, 0, 4252, 4247, 1, 0, 0, 0, 4252, 4248, 1, 0, 0, 0, 4253, 4254, 1, 0, 0, 0, 4254, 4255, 3, 592, 296, 0, 4255, 4257, 1, 0, 0, 0, 4256, 4241, 1, 0, 0, 0, 4256, 4246, 1, 0, 0, 0, 4257, 591, 1, 0, 0, 0, 4258, 4259, 3, 680, 340, 0, 4259, 4260, 5, 341, 0, 0, 4260, 4261, 3, 682, 341, 0, 4261, 4273, 1, 0, 0, 0, 4262, 4263, 3, 686, 343, 0, 4263, 4264, 5, 341, 0, 0, 4264, 4265, 3, 692, 346, 0, 4265, 4273, 1, 0, 0, 0, 4266, 4273, 3, 680, 340, 0, 4267, 4273, 3, 682, 341, 0, 4268, 4273, 3, 686, 343, 0, 4269, 4273, 3, 688, 344, 0, 4270, 4273, 3, 690, 345, 0, 4271, 4273, 3, 692, 346, 0, 4272, 4258, 1, 0, 0, 0, 4272, 4262, 1, 0, 0, 0, 4272, 4266, 1, 0, 0, 0, 4272, 4267, 1, 0, 0, 0, 4272, 4268, 1, 0, 0, 0, 4272, 4269, 1, 0, 0, 0, 4272, 4270, 1, 0, 0, 0, 4272, 4271, 1, 0, 0, 0, 4273, 593, 1, 0, 0, 0, 4274, 4279, 3, 636, 318, 0, 4275, 4276, 5, 228, 0, 0, 4276, 4278, 3, 636, 318, 0, 4277, 4275, 1, 0, 0, 0, 4278, 4281, 1, 0, 0, 0, 4279, 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 595, 1, 0, 0, 0, 4281, 4279, 1, 0, 0, 0, 4282, 4294, 3, 586, 293, 0, 4283, 4294, 3, 590, 295, 0, 4284, 4294, 3, 574, 287, 0, 4285, 4294, 3, 582, 291, 0, 4286, 4294, 3, 580, 290, 0, 4287, 4294, 3, 576, 288, 0, 4288, 4294, 3, 578, 289, 0, 4289, 4294, 3, 614, 307, 0, 4290, 4294, 3, 564, 282, 0, 4291, 4294, 3, 550, 275, 0, 4292, 4294, 3, 652, 326, 0, 4293, 4282, 1, 0, 0, 0, 4293, 4283, 1, 0, 0, 0, 4293, 4284, 1, 0, 0, 0, 4293, 4285, 1, 0, 0, 0, 4293, 4286, 1, 0, 0, 0, 4293, 4287, 1, 0, 0, 0, 4293, 4288, 1, 0, 0, 0, 4293, 4289, 1, 0, 0, 0, 4293, 4290, 1, 0, 0, 0, 4293, 4291, 1, 0, 0, 0, 4293, 4292, 1, 0, 0, 0, 4294, 597, 1, 0, 0, 0, 4295, 4297, 7, 36, 0, 0, 4296, 4295, 1, 0, 0, 0, 4297, 4300, 1, 0, 0, 0, 4298, 4296, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4301, 1, 0, 0, 0, 4300, 4298, 1, 0, 0, 0, 4301, 4310, 3, 596, 298, 0, 4302, 4303, 5, 401, 0, 0, 4303, 4304, 3, 594, 297, 0, 4304, 4305, 5, 402, 0, 0, 4305, 4309, 1, 0, 0, 0, 4306, 4307, 5, 395, 0, 0, 4307, 4309, 3, 652, 326, 0, 4308, 4302, 1, 0, 0, 0, 4308, 4306, 1, 0, 0, 0, 4309, 4312, 1, 0, 0, 0, 4310, 4308, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 599, 1, 0, 0, 0, 4312, 4310, 1, 0, 0, 0, 4313, 4318, 3, 598, 299, 0, 4314, 4315, 5, 423, 0, 0, 4315, 4317, 3, 598, 299, 0, 4316, 4314, 1, 0, 0, 0, 4317, 4320, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 601, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4321, 4326, 3, 600, 300, 0, 4322, 4323, 7, 37, 0, 0, 4323, 4325, 3, 600, 300, 0, 4324, 4322, 1, 0, 0, 0, 4325, 4328, 1, 0, 0, 0, 4326, 4324, 1, 0, 0, 0, 4326, 4327, 1, 0, 0, 0, 4327, 603, 1, 0, 0, 0, 4328, 4326, 1, 0, 0, 0, 4329, 4334, 3, 602, 301, 0, 4330, 4331, 7, 38, 0, 0, 4331, 4333, 3, 602, 301, 0, 4332, 4330, 1, 0, 0, 0, 4333, 4336, 1, 0, 0, 0, 4334, 4332, 1, 0, 0, 0, 4334, 4335, 1, 0, 0, 0, 4335, 605, 1, 0, 0, 0, 4336, 4334, 1, 0, 0, 0, 4337, 4342, 3, 604, 302, 0, 4338, 4339, 5, 422, 0, 0, 4339, 4341, 3, 604, 302, 0, 4340, 4338, 1, 0, 0, 0, 4341, 4344, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 607, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4345, 4350, 3, 606, 303, 0, 4346, 4347, 5, 419, 0, 0, 4347, 4349, 3, 606, 303, 0, 4348, 4346, 1, 0, 0, 0, 4349, 4352, 1, 0, 0, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 609, 1, 0, 0, 0, 4352, 4350, 1, 0, 0, 0, 4353, 4358, 3, 608, 304, 0, 4354, 4355, 5, 421, 0, 0, 4355, 4357, 3, 608, 304, 0, 4356, 4354, 1, 0, 0, 0, 4357, 4360, 1, 0, 0, 0, 4358, 4356, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 611, 1, 0, 0, 0, 4360, 4358, 1, 0, 0, 0, 4361, 4362, 7, 39, 0, 0, 4362, 613, 1, 0, 0, 0, 4363, 4364, 5, 399, 0, 0, 4364, 4365, 3, 378, 189, 0, 4365, 4366, 5, 400, 0, 0, 4366, 615, 1, 0, 0, 0, 4367, 4369, 3, 610, 305, 0, 4368, 4370, 3, 618, 309, 0, 4369, 4368, 1, 0, 0, 0, 4369, 4370, 1, 0, 0, 0, 4370, 4374, 1, 0, 0, 0, 4371, 4372, 5, 117, 0, 0, 4372, 4374, 3, 614, 307, 0, 4373, 4367, 1, 0, 0, 0, 4373, 4371, 1, 0, 0, 0, 4374, 617, 1, 0, 0, 0, 4375, 4376, 3, 612, 306, 0, 4376, 4377, 3, 610, 305, 0, 4377, 4382, 1, 0, 0, 0, 4378, 4382, 3, 620, 310, 0, 4379, 4380, 5, 216, 0, 0, 4380, 4382, 3, 624, 312, 0, 4381, 4375, 1, 0, 0, 0, 4381, 4378, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4382, 619, 1, 0, 0, 0, 4383, 4384, 5, 154, 0, 0, 4384, 4398, 3, 622, 311, 0, 4385, 4386, 5, 25, 0, 0, 4386, 4387, 3, 610, 305, 0, 4387, 4388, 5, 11, 0, 0, 4388, 4389, 3, 610, 305, 0, 4389, 4398, 1, 0, 0, 0, 4390, 4391, 5, 184, 0, 0, 4391, 4392, 7, 40, 0, 0, 4392, 4398, 3, 550, 275, 0, 4393, 4394, 3, 648, 324, 0, 4394, 4395, 7, 41, 0, 0, 4395, 4396, 3, 614, 307, 0, 4396, 4398, 1, 0, 0, 0, 4397, 4383, 1, 0, 0, 0, 4397, 4385, 1, 0, 0, 0, 4397, 4390, 1, 0, 0, 0, 4397, 4393, 1, 0, 0, 0, 4398, 621, 1, 0, 0, 0, 4399, 4402, 3, 614, 307, 0, 4400, 4402, 3, 550, 275, 0, 4401, 4399, 1, 0, 0, 0, 4401, 4400, 1, 0, 0, 0, 4402, 623, 1, 0, 0, 0, 4403, 4404, 7, 42, 0, 0, 4404, 4407, 3, 610, 305, 0, 4405, 4407, 3, 620, 310, 0, 4406, 4403, 1, 0, 0, 0, 4406, 4405, 1, 0, 0, 0, 4407, 625, 1, 0, 0, 0, 4408, 4409, 5, 167, 0, 0, 4409, 4410, 5, 96, 0, 0, 4410, 4411, 5, 139, 0, 0, 4411, 627, 1, 0, 0, 0, 4412, 4420, 5, 405, 0, 0, 4413, 4420, 5, 406, 0, 0, 4414, 4420, 5, 407, 0, 0, 4415, 4416, 5, 167, 0, 0, 4416, 4417, 5, 216, 0, 0, 4417, 4418, 5, 96, 0, 0, 4418, 4420, 5, 139, 0, 0, 4419, 4412, 1, 0, 0, 0, 4419, 4413, 1, 0, 0, 0, 4419, 4414, 1, 0, 0, 0, 4419, 4415, 1, 0, 0, 0, 4420, 629, 1, 0, 0, 0, 4421, 4430, 3, 616, 308, 0, 4422, 4423, 3, 628, 314, 0, 4423, 4424, 3, 616, 308, 0, 4424, 4429, 1, 0, 0, 0, 4425, 4426, 3, 626, 313, 0, 4426, 4427, 3, 616, 308, 0, 4427, 4429, 1, 0, 0, 0, 4428, 4422, 1, 0, 0, 0, 4428, 4425, 1, 0, 0, 0, 4429, 4432, 1, 0, 0, 0, 4430, 4428, 1, 0, 0, 0, 4430, 4431, 1, 0, 0, 0, 4431, 631, 1, 0, 0, 0, 4432, 4430, 1, 0, 0, 0, 4433, 4440, 5, 219, 0, 0, 4434, 4440, 5, 350, 0, 0, 4435, 4440, 5, 125, 0, 0, 4436, 4440, 5, 360, 0, 0, 4437, 4438, 5, 216, 0, 0, 4438, 4440, 7, 43, 0, 0, 4439, 4433, 1, 0, 0, 0, 4439, 4434, 1, 0, 0, 0, 4439, 4435, 1, 0, 0, 0, 4439, 4436, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 633, 1, 0, 0, 0, 4441, 4443, 5, 216, 0, 0, 4442, 4441, 1, 0, 0, 0, 4443, 4446, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 4447, 1, 0, 0, 0, 4446, 4444, 1, 0, 0, 0, 4447, 4450, 3, 630, 315, 0, 4448, 4449, 5, 167, 0, 0, 4449, 4451, 3, 632, 316, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4451, 1, 0, 0, 0, 4451, 635, 1, 0, 0, 0, 4452, 4457, 3, 634, 317, 0, 4453, 4454, 5, 11, 0, 0, 4454, 4456, 3, 634, 317, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4459, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 637, 1, 0, 0, 0, 4459, 4457, 1, 0, 0, 0, 4460, 4462, 3, 480, 240, 0, 4461, 4463, 3, 640, 320, 0, 4462, 4461, 1, 0, 0, 0, 4462, 4463, 1, 0, 0, 0, 4463, 639, 1, 0, 0, 0, 4464, 4465, 5, 237, 0, 0, 4465, 4466, 5, 399, 0, 0, 4466, 4471, 3, 642, 321, 0, 4467, 4468, 5, 397, 0, 0, 4468, 4470, 3, 642, 321, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4473, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4474, 1, 0, 0, 0, 4473, 4471, 1, 0, 0, 0, 4474, 4475, 5, 400, 0, 0, 4475, 641, 1, 0, 0, 0, 4476, 4479, 3, 652, 326, 0, 4477, 4478, 5, 405, 0, 0, 4478, 4480, 3, 586, 293, 0, 4479, 4477, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 643, 1, 0, 0, 0, 4481, 4482, 5, 399, 0, 0, 4482, 4487, 3, 646, 323, 0, 4483, 4484, 5, 397, 0, 0, 4484, 4486, 3, 646, 323, 0, 4485, 4483, 1, 0, 0, 0, 4486, 4489, 1, 0, 0, 0, 4487, 4485, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 4490, 1, 0, 0, 0, 4489, 4487, 1, 0, 0, 0, 4490, 4491, 5, 400, 0, 0, 4491, 645, 1, 0, 0, 0, 4492, 4495, 3, 652, 326, 0, 4493, 4496, 5, 184, 0, 0, 4494, 4496, 3, 648, 324, 0, 4495, 4493, 1, 0, 0, 0, 4495, 4494, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4498, 3, 586, 293, 0, 4498, 647, 1, 0, 0, 0, 4499, 4500, 7, 44, 0, 0, 4500, 649, 1, 0, 0, 0, 4501, 4502, 7, 45, 0, 0, 4502, 651, 1, 0, 0, 0, 4503, 4506, 5, 432, 0, 0, 4504, 4506, 3, 658, 329, 0, 4505, 4503, 1, 0, 0, 0, 4505, 4504, 1, 0, 0, 0, 4506, 653, 1, 0, 0, 0, 4507, 4510, 3, 652, 326, 0, 4508, 4509, 5, 395, 0, 0, 4509, 4511, 3, 652, 326, 0, 4510, 4508, 1, 0, 0, 0, 4510, 4511, 1, 0, 0, 0, 4511, 655, 1, 0, 0, 0, 4512, 4513, 3, 652, 326, 0, 4513, 657, 1, 0, 0, 0, 4514, 4515, 7, 46, 0, 0, 4515, 659, 1, 0, 0, 0, 4516, 4517, 7, 47, 0, 0, 4517, 661, 1, 0, 0, 0, 4518, 4570, 3, 652, 326, 0, 4519, 4570, 5, 299, 0, 0, 4520, 4570, 5, 171, 0, 0, 4521, 4570, 5, 237, 0, 0, 4522, 4570, 5, 198, 0, 0, 4523, 4570, 5, 268, 0, 0, 4524, 4570, 5, 369, 0, 0, 4525, 4570, 5, 241, 0, 0, 4526, 4570, 5, 165, 0, 0, 4527, 4570, 5, 292, 0, 0, 4528, 4570, 5, 356, 0, 0, 4529, 4570, 5, 144, 0, 0, 4530, 4570, 5, 203, 0, 0, 4531, 4570, 5, 219, 0, 0, 4532, 4570, 5, 126, 0, 0, 4533, 4570, 5, 188, 0, 0, 4534, 4570, 5, 101, 0, 0, 4535, 4570, 5, 329, 0, 0, 4536, 4570, 5, 224, 0, 0, 4537, 4570, 5, 291, 0, 0, 4538, 4570, 5, 145, 0, 0, 4539, 4570, 5, 304, 0, 0, 4540, 4570, 5, 135, 0, 0, 4541, 4570, 5, 318, 0, 0, 4542, 4570, 5, 161, 0, 0, 4543, 4570, 5, 54, 0, 0, 4544, 4570, 5, 166, 0, 0, 4545, 4570, 5, 358, 0, 0, 4546, 4570, 5, 45, 0, 0, 4547, 4570, 5, 347, 0, 0, 4548, 4570, 5, 96, 0, 0, 4549, 4570, 5, 154, 0, 0, 4550, 4570, 5, 269, 0, 0, 4551, 4570, 5, 337, 0, 0, 4552, 4570, 5, 225, 0, 0, 4553, 4570, 5, 108, 0, 0, 4554, 4570, 5, 141, 0, 0, 4555, 4570, 5, 365, 0, 0, 4556, 4570, 5, 21, 0, 0, 4557, 4570, 5, 78, 0, 0, 4558, 4570, 5, 374, 0, 0, 4559, 4570, 5, 336, 0, 0, 4560, 4570, 5, 167, 0, 0, 4561, 4570, 5, 134, 0, 0, 4562, 4570, 5, 216, 0, 0, 4563, 4570, 5, 27, 0, 0, 4564, 4570, 5, 370, 0, 0, 4565, 4570, 5, 263, 0, 0, 4566, 4570, 5, 25, 0, 0, 4567, 4570, 5, 62, 0, 0, 4568, 4570, 5, 17, 0, 0, 4569, 4518, 1, 0, 0, 0, 4569, 4519, 1, 0, 0, 0, 4569, 4520, 1, 0, 0, 0, 4569, 4521, 1, 0, 0, 0, 4569, 4522, 1, 0, 0, 0, 4569, 4523, 1, 0, 0, 0, 4569, 4524, 1, 0, 0, 0, 4569, 4525, 1, 0, 0, 0, 4569, 4526, 1, 0, 0, 0, 4569, 4527, 1, 0, 0, 0, 4569, 4528, 1, 0, 0, 0, 4569, 4529, 1, 0, 0, 0, 4569, 4530, 1, 0, 0, 0, 4569, 4531, 1, 0, 0, 0, 4569, 4532, 1, 0, 0, 0, 4569, 4533, 1, 0, 0, 0, 4569, 4534, 1, 0, 0, 0, 4569, 4535, 1, 0, 0, 0, 4569, 4536, 1, 0, 0, 0, 4569, 4537, 1, 0, 0, 0, 4569, 4538, 1, 0, 0, 0, 4569, 4539, 1, 0, 0, 0, 4569, 4540, 1, 0, 0, 0, 4569, 4541, 1, 0, 0, 0, 4569, 4542, 1, 0, 0, 0, 4569, 4543, 1, 0, 0, 0, 4569, 4544, 1, 0, 0, 0, 4569, 4545, 1, 0, 0, 0, 4569, 4546, 1, 0, 0, 0, 4569, 4547, 1, 0, 0, 0, 4569, 4548, 1, 0, 0, 0, 4569, 4549, 1, 0, 0, 0, 4569, 4550, 1, 0, 0, 0, 4569, 4551, 1, 0, 0, 0, 4569, 4552, 1, 0, 0, 0, 4569, 4553, 1, 0, 0, 0, 4569, 4554, 1, 0, 0, 0, 4569, 4555, 1, 0, 0, 0, 4569, 4556, 1, 0, 0, 0, 4569, 4557, 1, 0, 0, 0, 4569, 4558, 1, 0, 0, 0, 4569, 4559, 1, 0, 0, 0, 4569, 4560, 1, 0, 0, 0, 4569, 4561, 1, 0, 0, 0, 4569, 4562, 1, 0, 0, 0, 4569, 4563, 1, 0, 0, 0, 4569, 4564, 1, 0, 0, 0, 4569, 4565, 1, 0, 0, 0, 4569, 4566, 1, 0, 0, 0, 4569, 4567, 1, 0, 0, 0, 4569, 4568, 1, 0, 0, 0, 4570, 663, 1, 0, 0, 0, 4571, 4572, 5, 58, 0, 0, 4572, 4573, 5, 280, 0, 0, 4573, 4575, 5, 243, 0, 0, 4574, 4576, 3, 32, 16, 0, 4575, 4574, 1, 0, 0, 0, 4575, 4576, 1, 0, 0, 0, 4576, 4586, 1, 0, 0, 0, 4577, 4578, 3, 652, 326, 0, 4578, 4579, 5, 184, 0, 0, 4579, 4580, 3, 652, 326, 0, 4580, 4587, 1, 0, 0, 0, 4581, 4584, 3, 652, 326, 0, 4582, 4583, 5, 387, 0, 0, 4583, 4585, 3, 670, 335, 0, 4584, 4582, 1, 0, 0, 0, 4584, 4585, 1, 0, 0, 0, 4585, 4587, 1, 0, 0, 0, 4586, 4577, 1, 0, 0, 0, 4586, 4581, 1, 0, 0, 0, 4587, 4737, 1, 0, 0, 0, 4588, 4589, 5, 9, 0, 0, 4589, 4590, 5, 280, 0, 0, 4590, 4591, 5, 243, 0, 0, 4591, 4616, 3, 652, 326, 0, 4592, 4617, 5, 373, 0, 0, 4593, 4617, 3, 678, 339, 0, 4594, 4595, 5, 304, 0, 0, 4595, 4617, 3, 670, 335, 0, 4596, 4597, 5, 363, 0, 0, 4597, 4602, 3, 672, 336, 0, 4598, 4599, 5, 397, 0, 0, 4599, 4601, 3, 672, 336, 0, 4600, 4598, 1, 0, 0, 0, 4601, 4604, 1, 0, 0, 0, 4602, 4600, 1, 0, 0, 0, 4602, 4603, 1, 0, 0, 0, 4603, 4617, 1, 0, 0, 0, 4604, 4602, 1, 0, 0, 0, 4605, 4606, 5, 274, 0, 0, 4606, 4607, 5, 341, 0, 0, 4607, 4617, 3, 652, 326, 0, 4608, 4610, 3, 674, 337, 0, 4609, 4611, 3, 676, 338, 0, 4610, 4609, 1, 0, 0, 0, 4610, 4611, 1, 0, 0, 0, 4611, 4617, 1, 0, 0, 0, 4612, 4614, 3, 676, 338, 0, 4613, 4615, 3, 674, 337, 0, 4614, 4613, 1, 0, 0, 0, 4614, 4615, 1, 0, 0, 0, 4615, 4617, 1, 0, 0, 0, 4616, 4592, 1, 0, 0, 0, 4616, 4593, 1, 0, 0, 0, 4616, 4594, 1, 0, 0, 0, 4616, 4596, 1, 0, 0, 0, 4616, 4605, 1, 0, 0, 0, 4616, 4608, 1, 0, 0, 0, 4616, 4612, 1, 0, 0, 0, 4617, 4737, 1, 0, 0, 0, 4618, 4619, 5, 101, 0, 0, 4619, 4620, 5, 280, 0, 0, 4620, 4622, 5, 243, 0, 0, 4621, 4623, 3, 30, 15, 0, 4622, 4621, 1, 0, 0, 0, 4622, 4623, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4737, 3, 652, 326, 0, 4625, 4628, 3, 676, 338, 0, 4626, 4628, 3, 678, 339, 0, 4627, 4625, 1, 0, 0, 0, 4627, 4626, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4630, 5, 390, 0, 0, 4630, 4631, 5, 197, 0, 0, 4631, 4737, 1, 0, 0, 0, 4632, 4644, 5, 278, 0, 0, 4633, 4634, 5, 3, 0, 0, 4634, 4635, 5, 280, 0, 0, 4635, 4636, 5, 243, 0, 0, 4636, 4637, 5, 387, 0, 0, 4637, 4645, 3, 652, 326, 0, 4638, 4639, 5, 280, 0, 0, 4639, 4640, 5, 243, 0, 0, 4640, 4641, 3, 652, 326, 0, 4641, 4642, 5, 387, 0, 0, 4642, 4643, 3, 652, 326, 0, 4643, 4645, 1, 0, 0, 0, 4644, 4633, 1, 0, 0, 0, 4644, 4638, 1, 0, 0, 0, 4645, 4737, 1, 0, 0, 0, 4646, 4647, 5, 58, 0, 0, 4647, 4648, 5, 348, 0, 0, 4648, 4649, 3, 652, 326, 0, 4649, 4650, 5, 395, 0, 0, 4650, 4651, 3, 652, 326, 0, 4651, 4652, 5, 383, 0, 0, 4652, 4653, 3, 698, 349, 0, 4653, 4654, 5, 99, 0, 0, 4654, 4655, 3, 700, 350, 0, 4655, 4737, 1, 0, 0, 0, 4656, 4657, 5, 9, 0, 0, 4657, 4658, 5, 348, 0, 0, 4658, 4659, 3, 652, 326, 0, 4659, 4660, 5, 395, 0, 0, 4660, 4677, 3, 652, 326, 0, 4661, 4662, 5, 383, 0, 0, 4662, 4663, 3, 698, 349, 0, 4663, 4664, 5, 99, 0, 0, 4664, 4665, 3, 700, 350, 0, 4665, 4678, 1, 0, 0, 0, 4666, 4667, 5, 4, 0, 0, 4667, 4671, 5, 341, 0, 0, 4668, 4669, 5, 101, 0, 0, 4669, 4671, 5, 139, 0, 0, 4670, 4666, 1, 0, 0, 0, 4670, 4668, 1, 0, 0, 0, 4671, 4675, 1, 0, 0, 0, 4672, 4673, 5, 246, 0, 0, 4673, 4676, 3, 696, 348, 0, 4674, 4676, 5, 362, 0, 0, 4675, 4672, 1, 0, 0, 0, 4675, 4674, 1, 0, 0, 0, 4676, 4678, 1, 0, 0, 0, 4677, 4661, 1, 0, 0, 0, 4677, 4670, 1, 0, 0, 0, 4678, 4737, 1, 0, 0, 0, 4679, 4680, 5, 101, 0, 0, 4680, 4681, 5, 348, 0, 0, 4681, 4682, 3, 652, 326, 0, 4682, 4683, 5, 395, 0, 0, 4683, 4684, 3, 652, 326, 0, 4684, 4737, 1, 0, 0, 0, 4685, 4686, 5, 58, 0, 0, 4686, 4687, 5, 246, 0, 0, 4687, 4688, 3, 652, 326, 0, 4688, 4689, 5, 395, 0, 0, 4689, 4690, 3, 696, 348, 0, 4690, 4691, 5, 387, 0, 0, 4691, 4692, 3, 704, 352, 0, 4692, 4737, 1, 0, 0, 0, 4693, 4694, 5, 9, 0, 0, 4694, 4695, 5, 246, 0, 0, 4695, 4696, 3, 652, 326, 0, 4696, 4697, 5, 395, 0, 0, 4697, 4705, 3, 696, 348, 0, 4698, 4699, 5, 304, 0, 0, 4699, 4706, 3, 704, 352, 0, 4700, 4701, 5, 363, 0, 0, 4701, 4706, 5, 294, 0, 0, 4702, 4703, 7, 48, 0, 0, 4703, 4704, 5, 348, 0, 0, 4704, 4706, 3, 652, 326, 0, 4705, 4698, 1, 0, 0, 0, 4705, 4700, 1, 0, 0, 0, 4705, 4702, 1, 0, 0, 0, 4706, 4737, 1, 0, 0, 0, 4707, 4708, 5, 101, 0, 0, 4708, 4709, 5, 246, 0, 0, 4709, 4710, 3, 652, 326, 0, 4710, 4711, 5, 395, 0, 0, 4711, 4712, 3, 696, 348, 0, 4712, 4737, 1, 0, 0, 0, 4713, 4714, 7, 49, 0, 0, 4714, 4715, 3, 666, 333, 0, 4715, 4716, 5, 200, 0, 0, 4716, 4717, 5, 426, 0, 0, 4717, 4718, 5, 154, 0, 0, 4718, 4722, 3, 652, 326, 0, 4719, 4720, 5, 341, 0, 0, 4720, 4723, 3, 696, 348, 0, 4721, 4723, 5, 362, 0, 0, 4722, 4719, 1, 0, 0, 0, 4722, 4721, 1, 0, 0, 0, 4723, 4727, 1, 0, 0, 0, 4724, 4725, 5, 387, 0, 0, 4725, 4726, 5, 229, 0, 0, 4726, 4728, 5, 431, 0, 0, 4727, 4724, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 4737, 1, 0, 0, 0, 4729, 4730, 5, 101, 0, 0, 4730, 4731, 3, 666, 333, 0, 4731, 4732, 5, 200, 0, 0, 4732, 4733, 5, 426, 0, 0, 4733, 4734, 5, 154, 0, 0, 4734, 4735, 3, 652, 326, 0, 4735, 4737, 1, 0, 0, 0, 4736, 4571, 1, 0, 0, 0, 4736, 4588, 1, 0, 0, 0, 4736, 4618, 1, 0, 0, 0, 4736, 4627, 1, 0, 0, 0, 4736, 4632, 1, 0, 0, 0, 4736, 4646, 1, 0, 0, 0, 4736, 4656, 1, 0, 0, 0, 4736, 4679, 1, 0, 0, 0, 4736, 4685, 1, 0, 0, 0, 4736, 4693, 1, 0, 0, 0, 4736, 4707, 1, 0, 0, 0, 4736, 4713, 1, 0, 0, 0, 4736, 4729, 1, 0, 0, 0, 4737, 665, 1, 0, 0, 0, 4738, 4739, 7, 50, 0, 0, 4739, 667, 1, 0, 0, 0, 4740, 4741, 5, 259, 0, 0, 4741, 4742, 5, 405, 0, 0, 4742, 4748, 5, 431, 0, 0, 4743, 4744, 5, 83, 0, 0, 4744, 4745, 5, 246, 0, 0, 4745, 4746, 5, 405, 0, 0, 4746, 4748, 3, 696, 348, 0, 4747, 4740, 1, 0, 0, 0, 4747, 4743, 1, 0, 0, 0, 4748, 669, 1, 0, 0, 0, 4749, 4754, 3, 668, 334, 0, 4750, 4751, 5, 397, 0, 0, 4751, 4753, 3, 668, 334, 0, 4752, 4750, 1, 0, 0, 0, 4753, 4756, 1, 0, 0, 0, 4754, 4752, 1, 0, 0, 0, 4754, 4755, 1, 0, 0, 0, 4755, 671, 1, 0, 0, 0, 4756, 4754, 1, 0, 0, 0, 4757, 4761, 5, 259, 0, 0, 4758, 4759, 5, 83, 0, 0, 4759, 4761, 5, 246, 0, 0, 4760, 4757, 1, 0, 0, 0, 4760, 4758, 1, 0, 0, 0, 4761, 673, 1, 0, 0, 0, 4762, 4765, 5, 2, 0, 0, 4763, 4764, 5, 387, 0, 0, 4764, 4766, 5, 278, 0, 0, 4765, 4763, 1, 0, 0, 0, 4765, 4766, 1, 0, 0, 0, 4766, 675, 1, 0, 0, 0, 4767, 4768, 7, 51, 0, 0, 4768, 677, 1, 0, 0, 0, 4769, 4770, 7, 52, 0, 0, 4770, 679, 1, 0, 0, 0, 4771, 4772, 7, 53, 0, 0, 4772, 681, 1, 0, 0, 0, 4773, 4774, 7, 54, 0, 0, 4774, 683, 1, 0, 0, 0, 4775, 4776, 7, 55, 0, 0, 4776, 685, 1, 0, 0, 0, 4777, 4778, 7, 56, 0, 0, 4778, 687, 1, 0, 0, 0, 4779, 4780, 7, 57, 0, 0, 4780, 689, 1, 0, 0, 0, 4781, 4782, 7, 58, 0, 0, 4782, 691, 1, 0, 0, 0, 4783, 4784, 7, 59, 0, 0, 4784, 693, 1, 0, 0, 0, 4785, 4786, 7, 60, 0, 0, 4786, 695, 1, 0, 0, 0, 4787, 4792, 3, 652, 326, 0, 4788, 4789, 5, 395, 0, 0, 4789, 4791, 3, 652, 326, 0, 4790, 4788, 1, 0, 0, 0, 4791, 4794, 1, 0, 0, 0, 4792, 4790, 1, 0, 0, 0, 4792, 4793, 1, 0, 0, 0, 4793, 697, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4796, 3, 652, 326, 0, 4796, 4797, 5, 411, 0, 0, 4797, 4798, 7, 27, 0, 0, 4798, 699, 1, 0, 0, 0, 4799, 4804, 5, 176, 0, 0, 4800, 4801, 5, 211, 0, 0, 4801, 4802, 5, 341, 0, 0, 4802, 4804, 3, 696, 348, 0, 4803, 4799, 1, 0, 0, 0, 4803, 4800, 1, 0, 0, 0, 4804, 701, 1, 0, 0, 0, 4805, 4806, 5, 8, 0, 0, 4806, 4807, 5, 405, 0, 0, 4807, 4818, 5, 431, 0, 0, 4808, 4809, 5, 259, 0, 0, 4809, 4810, 5, 405, 0, 0, 4810, 4818, 5, 431, 0, 0, 4811, 4812, 5, 294, 0, 0, 4812, 4813, 5, 405, 0, 0, 4813, 4818, 5, 426, 0, 0, 4814, 4815, 5, 240, 0, 0, 4815, 4816, 5, 405, 0, 0, 4816, 4818, 3, 696, 348, 0, 4817, 4805, 1, 0, 0, 0, 4817, 4808, 1, 0, 0, 0, 4817, 4811, 1, 0, 0, 0, 4817, 4814, 1, 0, 0, 0, 4818, 703, 1, 0, 0, 0, 4819, 4824, 3, 702, 351, 0, 4820, 4821, 5, 397, 0, 0, 4821, 4823, 3, 702, 351, 0, 4822, 4820, 1, 0, 0, 0, 4823, 4826, 1, 0, 0, 0, 4824, 4822, 1, 0, 0, 0, 4824, 4825, 1, 0, 0, 0, 4825, 705, 1, 0, 0, 0, 4826, 4824, 1, 0, 0, 0, 621, 709, 716, 719, 725, 731, 738, 748, 751, 755, 770, 777, 783, 788, 793, 796, 820, 827, 830, 835, 840, 846, 850, 863, 867, 871, 876, 883, 887, 892, 899, 903, 908, 956, 963, 968, 991, 995, 999, 1002, 1006, 1011, 1017, 1021, 1027, 1029, 1040, 1044, 1051, 1059, 1062, 1067, 1071, 1074, 1084, 1092, 1096, 1099, 1103, 1107, 1110, 1115, 1121, 1126, 1131, 1135, 1146, 1148, 1152, 1162, 1166, 1172, 1175, 1182, 1187, 1195, 1200, 1204, 1212, 1217, 1223, 1229, 1232, 1235, 1238, 1247, 1255, 1260, 1268, 1275, 1278, 1281, 1283, 1294, 1296, 1299, 1302, 1305, 1308, 1311, 1313, 1325, 1331, 1339, 1341, 1351, 1384, 1389, 1393, 1397, 1404, 1411, 1417, 1421, 1424, 1431, 1454, 1459, 1463, 1471, 1480, 1487, 1493, 1500, 1503, 1509, 1516, 1524, 1533, 1542, 1549, 1569, 1576, 1578, 1585, 1595, 1603, 1607, 1611, 1624, 1633, 1649, 1653, 1658, 1663, 1666, 1669, 1672, 1675, 1678, 1683, 1692, 1696, 1703, 1706, 1709, 1712, 1724, 1730, 1756, 1764, 1768, 1771, 1774, 1777, 1780, 1783, 1786, 1789, 1798, 1808, 1811, 1831, 1837, 1843, 1846, 1848, 1855, 1862, 1875, 1880, 1889, 1897, 1905, 1918, 1931, 1947, 1951, 1966, 1972, 1975, 1978, 1981, 1984, 1988, 2003, 2006, 2017, 2031, 2065, 2073, 2078, 2086, 2091, 2096, 2103, 2111, 2119, 2127, 2132, 2144, 2148, 2156, 2165, 2168, 2172, 2179, 2185, 2189, 2195, 2199, 2211, 2220, 2231, 2235, 2242, 2254, 2264, 2267, 2274, 2280, 2284, 2287, 2290, 2296, 2300, 2304, 2309, 2313, 2317, 2321, 2329, 2333, 2337, 2341, 2345, 2353, 2357, 2361, 2369, 2374, 2379, 2383, 2387, 2394, 2403, 2411, 2423, 2441, 2444, 2450, 2476, 2479, 2485, 2493, 2501, 2514, 2521, 2524, 2527, 2530, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2556, 2559, 2562, 2565, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2588, 2594, 2598, 2601, 2604, 2607, 2610, 2613, 2620, 2624, 2627, 2630, 2633, 2636, 2639, 2646, 2649, 2657, 2661, 2668, 2670, 2673, 2678, 2681, 2685, 2690, 2696, 2704, 2712, 2722, 2725, 2729, 2733, 2738, 2745, 2749, 2751, 2755, 2762, 2767, 2780, 2788, 2807, 2817, 2830, 2840, 2844, 2848, 2854, 2861, 2868, 2877, 2884, 2904, 2907, 2921, 2936, 2940, 2960, 2972, 2978, 2981, 2984, 2990, 2996, 3003, 3011, 3017, 3021, 3026, 3029, 3033, 3040, 3045, 3050, 3053, 3055, 3063, 3071, 3075, 3079, 3083, 3100, 3117, 3124, 3133, 3138, 3141, 3144, 3148, 3163, 3177, 3180, 3191, 3195, 3198, 3201, 3205, 3210, 3213, 3216, 3219, 3222, 3225, 3231, 3234, 3237, 3240, 3243, 3246, 3249, 3252, 3255, 3258, 3262, 3264, 3270, 3275, 3278, 3281, 3284, 3287, 3293, 3296, 3299, 3302, 3305, 3308, 3311, 3314, 3317, 3320, 3324, 3326, 3328, 3333, 3338, 3342, 3346, 3351, 3356, 3365, 3375, 3383, 3395, 3398, 3404, 3411, 3418, 3425, 3432, 3441, 3445, 3452, 3457, 3461, 3465, 3468, 3471, 3482, 3486, 3488, 3491, 3504, 3507, 3510, 3522, 3525, 3532, 3541, 3546, 3548, 3550, 3567, 3570, 3578, 3581, 3585, 3588, 3591, 3594, 3597, 3609, 3617, 3624, 3627, 3634, 3637, 3642, 3649, 3657, 3663, 3668, 3672, 3677, 3681, 3688, 3702, 3705, 3718, 3728, 3731, 3740, 3749, 3752, 3758, 3761, 3766, 3769, 3782, 3788, 3790, 3800, 3806, 3809, 3819, 3824, 3826, 3842, 3848, 3850, 3857, 3864, 3878, 3884, 3887, 3890, 3893, 3902, 3909, 3915, 3924, 3928, 3936, 3946, 3956, 3961, 3965, 3971, 3976, 3986, 3990, 3993, 3998, 4001, 4005, 4010, 4021, 4023, 4032, 4055, 4065, 4068, 4075, 4078, 4088, 4095, 4098, 4100, 4111, 4121, 4123, 4132, 4137, 4146, 4159, 4163, 4175, 4179, 4188, 4207, 4225, 4237, 4252, 4256, 4272, 4279, 4293, 4298, 4308, 4310, 4318, 4326, 4334, 4342, 4350, 4358, 4369, 4373, 4381, 4397, 4401, 4406, 4419, 4428, 4430, 4439, 4444, 4450, 4457, 4462, 4471, 4479, 4487, 4495, 4505, 4510, 4569, 4575, 4584, 4586, 4602, 4610, 4614, 4616, 4622, 4627, 4644, 4670, 4675, 4677, 4705, 4722, 4727, 4736, 4747, 4754, 4760, 4765, 4792, 4803, 4817, 4824] \ No newline at end of file +[4, 1, 438, 4872, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 1, 0, 5, 0, 714, 8, 0, 10, 0, 12, 0, 717, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 723, 8, 1, 1, 1, 3, 1, 726, 8, 1, 1, 2, 1, 2, 5, 2, 730, 8, 2, 10, 2, 12, 2, 733, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 738, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 745, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 755, 8, 3, 1, 3, 3, 3, 758, 8, 3, 1, 3, 1, 3, 3, 3, 762, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 777, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 790, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 795, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 800, 8, 5, 1, 5, 3, 5, 803, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 825, 8, 5, 10, 5, 12, 5, 828, 9, 5, 1, 5, 1, 5, 5, 5, 832, 8, 5, 10, 5, 12, 5, 835, 9, 5, 3, 5, 837, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 842, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 847, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 853, 8, 6, 1, 7, 1, 7, 3, 7, 857, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 870, 8, 8, 1, 9, 1, 9, 3, 9, 874, 8, 9, 1, 9, 1, 9, 3, 9, 878, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 883, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 890, 8, 10, 1, 10, 1, 10, 3, 10, 894, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 899, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 906, 8, 12, 1, 12, 1, 12, 3, 12, 910, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 915, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 961, 8, 14, 11, 14, 12, 14, 962, 1, 14, 1, 14, 1, 14, 4, 14, 968, 8, 14, 11, 14, 12, 14, 969, 1, 14, 1, 14, 1, 14, 3, 14, 975, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 998, 8, 21, 1, 21, 1, 21, 3, 21, 1002, 8, 21, 1, 21, 1, 21, 3, 21, 1006, 8, 21, 1, 21, 3, 21, 1009, 8, 21, 1, 21, 1, 21, 3, 21, 1013, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1024, 8, 21, 1, 21, 1, 21, 3, 21, 1028, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1034, 8, 21, 3, 21, 1036, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1047, 8, 24, 1, 24, 1, 24, 3, 24, 1051, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1058, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1066, 8, 26, 1, 26, 3, 26, 1069, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1074, 8, 27, 1, 27, 1, 27, 3, 27, 1078, 8, 27, 1, 27, 3, 27, 1081, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1091, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1099, 8, 29, 5, 29, 1101, 8, 29, 10, 29, 12, 29, 1104, 9, 29, 3, 29, 1106, 8, 29, 1, 30, 1, 30, 3, 30, 1110, 8, 30, 1, 31, 1, 31, 3, 31, 1114, 8, 31, 1, 31, 3, 31, 1117, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1128, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1133, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1138, 8, 32, 1, 32, 1, 32, 3, 32, 1142, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1153, 8, 33, 3, 33, 1155, 8, 33, 1, 33, 1, 33, 3, 33, 1159, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1169, 8, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1179, 8, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1189, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1194, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1202, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1207, 8, 36, 1, 36, 1, 36, 3, 36, 1211, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1219, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1224, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1230, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 3, 36, 1245, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1254, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1262, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1267, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1275, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1282, 8, 36, 1, 36, 3, 36, 1285, 8, 36, 1, 36, 3, 36, 1288, 8, 36, 3, 36, 1290, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1301, 8, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 3, 36, 1315, 8, 36, 1, 36, 3, 36, 1318, 8, 36, 3, 36, 1320, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1332, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1338, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1346, 8, 36, 3, 36, 1348, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1358, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1391, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1396, 8, 45, 1, 46, 1, 46, 3, 46, 1400, 8, 46, 1, 46, 1, 46, 3, 46, 1404, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1411, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1416, 8, 47, 10, 47, 12, 47, 1419, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1424, 8, 47, 1, 48, 1, 48, 3, 48, 1428, 8, 48, 1, 48, 3, 48, 1431, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1436, 8, 48, 10, 48, 12, 48, 1439, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1461, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1466, 8, 53, 1, 53, 1, 53, 3, 53, 1470, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1478, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1487, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1494, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1500, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1507, 8, 58, 1, 58, 3, 58, 1510, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1516, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1521, 8, 59, 10, 59, 12, 59, 1524, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1531, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1538, 8, 62, 10, 62, 12, 62, 1541, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1549, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1556, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1576, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1583, 8, 69, 3, 69, 1585, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1590, 8, 70, 10, 70, 12, 70, 1593, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1602, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1610, 8, 73, 1, 74, 1, 74, 3, 74, 1614, 8, 74, 1, 74, 1, 74, 3, 74, 1618, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1631, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1640, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1656, 8, 78, 1, 78, 1, 78, 3, 78, 1660, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1665, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 78, 3, 78, 1682, 8, 78, 1, 78, 3, 78, 1685, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1690, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1699, 8, 80, 1, 80, 1, 80, 3, 80, 1703, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 3, 80, 1716, 8, 80, 1, 80, 3, 80, 1719, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1731, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1737, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1763, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1771, 8, 88, 1, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 3, 88, 1793, 8, 88, 1, 88, 3, 88, 1796, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1805, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1815, 8, 90, 1, 90, 3, 90, 1818, 8, 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, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1838, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1844, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1850, 8, 94, 1, 94, 3, 94, 1853, 8, 94, 3, 94, 1855, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1862, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1869, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1882, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1887, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1894, 8, 101, 10, 101, 12, 101, 1897, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1902, 8, 102, 10, 102, 12, 102, 1905, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1912, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1925, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1938, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1954, 8, 105, 1, 106, 1, 106, 3, 106, 1958, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1973, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 110, 3, 110, 1988, 8, 110, 1, 110, 3, 110, 1991, 8, 110, 1, 111, 1, 111, 3, 111, 1995, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2008, 8, 114, 10, 114, 12, 114, 2011, 9, 114, 3, 114, 2013, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2022, 8, 116, 10, 116, 12, 116, 2025, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2038, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 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, 123, 1, 123, 3, 123, 2072, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2080, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2085, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2093, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2098, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2103, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2108, 8, 124, 10, 124, 12, 124, 2111, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2116, 8, 125, 10, 125, 12, 125, 2119, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2124, 8, 126, 10, 126, 12, 126, 2127, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2132, 8, 127, 10, 127, 12, 127, 2135, 9, 127, 1, 128, 1, 128, 1, 128, 3, 128, 2140, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 3, 130, 2147, 8, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2157, 8, 132, 5, 132, 2159, 8, 132, 10, 132, 12, 132, 2162, 9, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2167, 8, 133, 10, 133, 12, 133, 2170, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 2178, 8, 135, 1, 135, 3, 135, 2181, 8, 135, 1, 136, 1, 136, 3, 136, 2185, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 3, 138, 2192, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2198, 8, 140, 1, 140, 1, 140, 3, 140, 2202, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2208, 8, 141, 1, 142, 1, 142, 3, 142, 2212, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2224, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2233, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2244, 8, 146, 1, 147, 1, 147, 3, 147, 2248, 8, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2253, 8, 148, 10, 148, 12, 148, 2256, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2265, 8, 150, 10, 150, 12, 150, 2268, 9, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2277, 8, 153, 1, 153, 3, 153, 2280, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2285, 8, 154, 10, 154, 12, 154, 2288, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2293, 8, 155, 1, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 156, 3, 156, 2300, 8, 156, 1, 156, 3, 156, 2303, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2309, 8, 157, 1, 158, 1, 158, 3, 158, 2313, 8, 158, 1, 159, 1, 159, 3, 159, 2317, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2322, 8, 160, 1, 160, 1, 160, 3, 160, 2326, 8, 160, 1, 161, 1, 161, 3, 161, 2330, 8, 161, 1, 162, 1, 162, 3, 162, 2334, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2342, 8, 162, 1, 163, 1, 163, 3, 163, 2346, 8, 163, 1, 163, 1, 163, 3, 163, 2350, 8, 163, 1, 164, 1, 164, 3, 164, 2354, 8, 164, 1, 165, 1, 165, 3, 165, 2358, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2366, 8, 165, 1, 166, 1, 166, 3, 166, 2370, 8, 166, 1, 166, 1, 166, 3, 166, 2374, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2382, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2387, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2392, 8, 169, 1, 170, 1, 170, 3, 170, 2396, 8, 170, 1, 171, 1, 171, 3, 171, 2400, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2407, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2414, 8, 174, 10, 174, 12, 174, 2417, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2424, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2436, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2454, 8, 176, 1, 176, 3, 176, 2457, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2463, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2489, 8, 181, 1, 182, 3, 182, 2492, 8, 182, 1, 182, 1, 182, 1, 183, 1, 183, 3, 183, 2498, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2504, 8, 184, 10, 184, 12, 184, 2507, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2514, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 2525, 8, 186, 10, 186, 12, 186, 2528, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2534, 8, 187, 1, 187, 3, 187, 2537, 8, 187, 1, 187, 3, 187, 2540, 8, 187, 1, 187, 3, 187, 2543, 8, 187, 1, 187, 3, 187, 2546, 8, 187, 1, 187, 3, 187, 2549, 8, 187, 1, 187, 3, 187, 2552, 8, 187, 1, 187, 3, 187, 2555, 8, 187, 1, 187, 3, 187, 2558, 8, 187, 1, 187, 3, 187, 2561, 8, 187, 1, 187, 3, 187, 2564, 8, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2569, 8, 187, 1, 187, 3, 187, 2572, 8, 187, 1, 187, 3, 187, 2575, 8, 187, 1, 187, 3, 187, 2578, 8, 187, 1, 187, 3, 187, 2581, 8, 187, 1, 187, 3, 187, 2584, 8, 187, 1, 187, 3, 187, 2587, 8, 187, 1, 187, 3, 187, 2590, 8, 187, 1, 187, 3, 187, 2593, 8, 187, 1, 187, 3, 187, 2596, 8, 187, 1, 187, 3, 187, 2599, 8, 187, 3, 187, 2601, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2607, 8, 188, 1, 189, 1, 189, 3, 189, 2611, 8, 189, 1, 189, 3, 189, 2614, 8, 189, 1, 189, 3, 189, 2617, 8, 189, 1, 189, 3, 189, 2620, 8, 189, 1, 189, 3, 189, 2623, 8, 189, 1, 189, 3, 189, 2626, 8, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2633, 8, 189, 1, 190, 1, 190, 3, 190, 2637, 8, 190, 1, 190, 3, 190, 2640, 8, 190, 1, 190, 3, 190, 2643, 8, 190, 1, 190, 3, 190, 2646, 8, 190, 1, 190, 3, 190, 2649, 8, 190, 1, 190, 3, 190, 2652, 8, 190, 1, 191, 1, 191, 1, 191, 4, 191, 2657, 8, 191, 11, 191, 12, 191, 2658, 1, 192, 3, 192, 2662, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2670, 8, 193, 1, 193, 1, 193, 3, 193, 2674, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2681, 8, 193, 3, 193, 2683, 8, 193, 1, 194, 3, 194, 2686, 8, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 3, 194, 2694, 8, 194, 1, 194, 1, 194, 3, 194, 2698, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 2703, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2709, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2717, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2723, 8, 198, 10, 198, 12, 198, 2726, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2733, 8, 199, 10, 199, 12, 199, 2736, 9, 199, 3, 199, 2738, 8, 199, 1, 199, 1, 199, 3, 199, 2742, 8, 199, 1, 199, 1, 199, 3, 199, 2746, 8, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2751, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2758, 8, 200, 1, 201, 1, 201, 5, 201, 2762, 8, 201, 10, 201, 12, 201, 2765, 9, 201, 1, 201, 3, 201, 2768, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2775, 8, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2780, 8, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2793, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 2801, 8, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2820, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2830, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2843, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2853, 8, 209, 1, 209, 1, 209, 3, 209, 2857, 8, 209, 4, 209, 2859, 8, 209, 11, 209, 12, 209, 2860, 1, 209, 1, 209, 5, 209, 2865, 8, 209, 10, 209, 12, 209, 2868, 9, 209, 1, 209, 1, 209, 5, 209, 2872, 8, 209, 10, 209, 12, 209, 2875, 9, 209, 1, 209, 1, 209, 5, 209, 2879, 8, 209, 10, 209, 12, 209, 2882, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2890, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2897, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2917, 8, 209, 1, 209, 3, 209, 2920, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2934, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2949, 8, 210, 1, 210, 1, 210, 3, 210, 2953, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 5, 210, 2971, 8, 210, 10, 210, 12, 210, 2974, 9, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2985, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2991, 8, 210, 1, 210, 3, 210, 2994, 8, 210, 1, 210, 3, 210, 2997, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3003, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3009, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3016, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3024, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3030, 8, 210, 1, 210, 1, 210, 3, 210, 3034, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3039, 8, 210, 1, 210, 3, 210, 3042, 8, 210, 1, 210, 1, 210, 3, 210, 3046, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3053, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3058, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3063, 8, 210, 1, 210, 3, 210, 3066, 8, 210, 3, 210, 3068, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3076, 8, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3084, 8, 211, 1, 211, 1, 211, 3, 211, 3088, 8, 211, 4, 211, 3090, 8, 211, 11, 211, 12, 211, 3091, 1, 211, 1, 211, 3, 211, 3096, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3113, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3130, 8, 213, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 3, 215, 3137, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 3144, 8, 215, 10, 215, 12, 215, 3147, 9, 215, 1, 215, 1, 215, 3, 215, 3151, 8, 215, 1, 215, 3, 215, 3154, 8, 215, 1, 215, 3, 215, 3157, 8, 215, 1, 216, 1, 216, 3, 216, 3161, 8, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3176, 8, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3190, 8, 218, 1, 218, 3, 218, 3193, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3204, 8, 219, 1, 220, 1, 220, 3, 220, 3208, 8, 220, 1, 220, 3, 220, 3211, 8, 220, 1, 220, 3, 220, 3214, 8, 220, 1, 220, 1, 220, 3, 220, 3218, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3223, 8, 220, 1, 220, 3, 220, 3226, 8, 220, 1, 220, 3, 220, 3229, 8, 220, 1, 220, 3, 220, 3232, 8, 220, 1, 220, 3, 220, 3235, 8, 220, 1, 220, 3, 220, 3238, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3244, 8, 220, 1, 220, 3, 220, 3247, 8, 220, 1, 220, 3, 220, 3250, 8, 220, 1, 220, 3, 220, 3253, 8, 220, 1, 220, 3, 220, 3256, 8, 220, 1, 220, 3, 220, 3259, 8, 220, 1, 220, 3, 220, 3262, 8, 220, 1, 220, 3, 220, 3265, 8, 220, 1, 220, 3, 220, 3268, 8, 220, 1, 220, 3, 220, 3271, 8, 220, 1, 220, 1, 220, 3, 220, 3275, 8, 220, 3, 220, 3277, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3283, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3288, 8, 220, 1, 220, 3, 220, 3291, 8, 220, 1, 220, 3, 220, 3294, 8, 220, 1, 220, 3, 220, 3297, 8, 220, 1, 220, 3, 220, 3300, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3306, 8, 220, 1, 220, 3, 220, 3309, 8, 220, 1, 220, 3, 220, 3312, 8, 220, 1, 220, 3, 220, 3315, 8, 220, 1, 220, 3, 220, 3318, 8, 220, 1, 220, 3, 220, 3321, 8, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 3, 220, 3327, 8, 220, 1, 220, 3, 220, 3330, 8, 220, 1, 220, 3, 220, 3333, 8, 220, 1, 220, 1, 220, 3, 220, 3337, 8, 220, 3, 220, 3339, 8, 220, 3, 220, 3341, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3346, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3351, 8, 221, 1, 221, 1, 221, 3, 221, 3355, 8, 221, 1, 221, 1, 221, 3, 221, 3359, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3364, 8, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3369, 8, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3376, 8, 223, 10, 223, 12, 223, 3379, 9, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3386, 8, 224, 10, 224, 12, 224, 3389, 9, 224, 1, 225, 1, 225, 1, 225, 5, 225, 3394, 8, 225, 10, 225, 12, 225, 3397, 9, 225, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 4, 227, 3406, 8, 227, 11, 227, 12, 227, 3407, 1, 227, 3, 227, 3411, 8, 227, 1, 228, 1, 228, 5, 228, 3415, 8, 228, 10, 228, 12, 228, 3418, 9, 228, 1, 228, 1, 228, 5, 228, 3422, 8, 228, 10, 228, 12, 228, 3425, 9, 228, 1, 228, 1, 228, 5, 228, 3429, 8, 228, 10, 228, 12, 228, 3432, 9, 228, 1, 228, 1, 228, 5, 228, 3436, 8, 228, 10, 228, 12, 228, 3439, 9, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3445, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3455, 8, 229, 3, 229, 3457, 8, 229, 1, 229, 1, 229, 3, 229, 3461, 8, 229, 5, 229, 3463, 8, 229, 10, 229, 12, 229, 3466, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3472, 8, 230, 1, 230, 5, 230, 3475, 8, 230, 10, 230, 12, 230, 3478, 9, 230, 1, 231, 3, 231, 3481, 8, 231, 1, 231, 1, 231, 3, 231, 3485, 8, 231, 1, 231, 3, 231, 3488, 8, 231, 1, 231, 3, 231, 3491, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3502, 8, 232, 1, 232, 1, 232, 3, 232, 3506, 8, 232, 3, 232, 3508, 8, 232, 1, 232, 3, 232, 3511, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3522, 8, 233, 10, 233, 12, 233, 3525, 9, 233, 3, 233, 3527, 8, 233, 1, 233, 3, 233, 3530, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3540, 8, 233, 10, 233, 12, 233, 3543, 9, 233, 3, 233, 3545, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3552, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3559, 8, 233, 10, 233, 12, 233, 3562, 9, 233, 1, 233, 1, 233, 3, 233, 3566, 8, 233, 3, 233, 3568, 8, 233, 3, 233, 3570, 8, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3585, 8, 235, 10, 235, 12, 235, 3588, 9, 235, 3, 235, 3590, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 235, 3, 235, 3601, 8, 235, 1, 236, 1, 236, 3, 236, 3605, 8, 236, 1, 236, 3, 236, 3608, 8, 236, 1, 236, 3, 236, 3611, 8, 236, 1, 236, 3, 236, 3614, 8, 236, 1, 236, 3, 236, 3617, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3629, 8, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 3, 240, 3637, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3644, 8, 241, 1, 241, 3, 241, 3647, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3654, 8, 242, 1, 242, 3, 242, 3657, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3662, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 3, 244, 3669, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3677, 8, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 3683, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3688, 8, 246, 1, 246, 1, 246, 3, 246, 3692, 8, 246, 1, 247, 1, 247, 1, 247, 3, 247, 3697, 8, 247, 1, 248, 1, 248, 3, 248, 3701, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3708, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3720, 8, 249, 10, 249, 12, 249, 3723, 9, 249, 3, 249, 3725, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 3, 250, 3732, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3738, 8, 251, 10, 251, 12, 251, 3741, 9, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3748, 8, 251, 10, 251, 12, 251, 3751, 9, 251, 3, 251, 3753, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3762, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3769, 8, 253, 10, 253, 12, 253, 3772, 9, 253, 3, 253, 3774, 8, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3780, 8, 254, 1, 254, 3, 254, 3783, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3788, 8, 254, 1, 254, 3, 254, 3791, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3804, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3810, 8, 255, 3, 255, 3812, 8, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3820, 8, 256, 10, 256, 12, 256, 3823, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3828, 8, 257, 1, 257, 3, 257, 3831, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3839, 8, 257, 10, 257, 12, 257, 3842, 9, 257, 1, 257, 1, 257, 3, 257, 3846, 8, 257, 3, 257, 3848, 8, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3864, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3870, 8, 260, 3, 260, 3872, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 3879, 8, 261, 1, 262, 1, 262, 1, 262, 5, 262, 3884, 8, 262, 10, 262, 12, 262, 3887, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3898, 8, 263, 10, 263, 12, 263, 3901, 9, 263, 1, 264, 1, 264, 1, 264, 3, 264, 3906, 8, 264, 1, 264, 3, 264, 3909, 8, 264, 1, 264, 3, 264, 3912, 8, 264, 1, 264, 3, 264, 3915, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3924, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3931, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3937, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3946, 8, 267, 1, 268, 1, 268, 3, 268, 3950, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3956, 8, 268, 10, 268, 12, 268, 3959, 9, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3968, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 3976, 8, 269, 10, 269, 12, 269, 3979, 9, 269, 1, 269, 1, 269, 3, 269, 3983, 8, 269, 1, 270, 1, 270, 3, 270, 3987, 8, 270, 1, 270, 1, 270, 5, 270, 3991, 8, 270, 10, 270, 12, 270, 3994, 9, 270, 1, 270, 1, 270, 3, 270, 3998, 8, 270, 1, 271, 1, 271, 1, 271, 3, 271, 4003, 8, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 4010, 8, 273, 1, 274, 1, 274, 3, 274, 4014, 8, 274, 1, 274, 3, 274, 4017, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4022, 8, 274, 1, 274, 3, 274, 4025, 8, 274, 5, 274, 4027, 8, 274, 10, 274, 12, 274, 4030, 9, 274, 1, 275, 1, 275, 3, 275, 4034, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 4, 277, 4043, 8, 277, 11, 277, 12, 277, 4044, 3, 277, 4047, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4054, 8, 278, 10, 278, 12, 278, 4057, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4077, 8, 282, 10, 282, 12, 282, 4080, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4087, 8, 282, 10, 282, 12, 282, 4090, 9, 282, 3, 282, 4092, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4099, 8, 283, 1, 283, 3, 283, 4102, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4112, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 4117, 8, 283, 10, 283, 12, 283, 4120, 9, 283, 3, 283, 4122, 8, 283, 3, 283, 4124, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4135, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4145, 8, 283, 3, 283, 4147, 8, 283, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 286, 1, 286, 3, 286, 4156, 8, 286, 1, 287, 1, 287, 1, 287, 3, 287, 4161, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4170, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4181, 8, 289, 11, 289, 12, 289, 4182, 1, 289, 1, 289, 3, 289, 4187, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 4, 290, 4197, 8, 290, 11, 290, 12, 290, 4198, 1, 290, 1, 290, 3, 290, 4203, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4212, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4231, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4247, 8, 294, 10, 294, 12, 294, 4250, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 4261, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4276, 8, 296, 1, 296, 1, 296, 3, 296, 4280, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 4296, 8, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4301, 8, 298, 10, 298, 12, 298, 4304, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 4317, 8, 299, 1, 300, 5, 300, 4320, 8, 300, 10, 300, 12, 300, 4323, 9, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 5, 300, 4332, 8, 300, 10, 300, 12, 300, 4335, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4340, 8, 301, 10, 301, 12, 301, 4343, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4348, 8, 302, 10, 302, 12, 302, 4351, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4356, 8, 303, 10, 303, 12, 303, 4359, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4364, 8, 304, 10, 304, 12, 304, 4367, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4372, 8, 305, 10, 305, 12, 305, 4375, 9, 305, 1, 306, 1, 306, 1, 306, 5, 306, 4380, 8, 306, 10, 306, 12, 306, 4383, 9, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 3, 309, 4393, 8, 309, 1, 309, 1, 309, 3, 309, 4397, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4405, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4421, 8, 311, 1, 312, 1, 312, 3, 312, 4425, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 4430, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4443, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 5, 316, 4452, 8, 316, 10, 316, 12, 316, 4455, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4463, 8, 317, 1, 318, 5, 318, 4466, 8, 318, 10, 318, 12, 318, 4469, 9, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4474, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 4479, 8, 319, 10, 319, 12, 319, 4482, 9, 319, 1, 320, 1, 320, 3, 320, 4486, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4493, 8, 321, 10, 321, 12, 321, 4496, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4503, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 4509, 8, 323, 10, 323, 12, 323, 4512, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 3, 324, 4519, 8, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 3, 327, 4529, 8, 327, 1, 328, 1, 328, 1, 328, 3, 328, 4534, 8, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4593, 8, 332, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4599, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4608, 8, 333, 3, 333, 4610, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 5, 333, 4624, 8, 333, 10, 333, 12, 333, 4627, 9, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4634, 8, 333, 1, 333, 1, 333, 3, 333, 4638, 8, 333, 3, 333, 4640, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4646, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4651, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4668, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4694, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4699, 8, 333, 3, 333, 4701, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4729, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4746, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4751, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4760, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4771, 8, 335, 1, 336, 1, 336, 1, 336, 5, 336, 4776, 8, 336, 10, 336, 12, 336, 4779, 9, 336, 1, 337, 1, 337, 1, 337, 3, 337, 4784, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 4789, 8, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 5, 350, 4816, 8, 350, 10, 350, 12, 350, 4819, 9, 350, 1, 351, 1, 351, 1, 351, 5, 351, 4824, 8, 351, 10, 351, 12, 351, 4827, 9, 351, 1, 351, 1, 351, 1, 351, 1, 351, 5, 351, 4833, 8, 351, 10, 351, 12, 351, 4836, 9, 351, 3, 351, 4838, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 4848, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 4862, 8, 354, 1, 355, 1, 355, 1, 355, 5, 355, 4867, 8, 355, 10, 355, 12, 355, 4870, 9, 355, 1, 355, 1, 833, 0, 356, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5461, 0, 715, 1, 0, 0, 0, 2, 722, 1, 0, 0, 0, 4, 727, 1, 0, 0, 0, 6, 761, 1, 0, 0, 0, 8, 763, 1, 0, 0, 0, 10, 836, 1, 0, 0, 0, 12, 838, 1, 0, 0, 0, 14, 854, 1, 0, 0, 0, 16, 863, 1, 0, 0, 0, 18, 871, 1, 0, 0, 0, 20, 884, 1, 0, 0, 0, 22, 895, 1, 0, 0, 0, 24, 900, 1, 0, 0, 0, 26, 911, 1, 0, 0, 0, 28, 974, 1, 0, 0, 0, 30, 976, 1, 0, 0, 0, 32, 979, 1, 0, 0, 0, 34, 983, 1, 0, 0, 0, 36, 985, 1, 0, 0, 0, 38, 988, 1, 0, 0, 0, 40, 991, 1, 0, 0, 0, 42, 1035, 1, 0, 0, 0, 44, 1037, 1, 0, 0, 0, 46, 1040, 1, 0, 0, 0, 48, 1043, 1, 0, 0, 0, 50, 1052, 1, 0, 0, 0, 52, 1055, 1, 0, 0, 0, 54, 1070, 1, 0, 0, 0, 56, 1082, 1, 0, 0, 0, 58, 1087, 1, 0, 0, 0, 60, 1107, 1, 0, 0, 0, 62, 1111, 1, 0, 0, 0, 64, 1118, 1, 0, 0, 0, 66, 1143, 1, 0, 0, 0, 68, 1160, 1, 0, 0, 0, 70, 1162, 1, 0, 0, 0, 72, 1347, 1, 0, 0, 0, 74, 1357, 1, 0, 0, 0, 76, 1359, 1, 0, 0, 0, 78, 1364, 1, 0, 0, 0, 80, 1369, 1, 0, 0, 0, 82, 1371, 1, 0, 0, 0, 84, 1375, 1, 0, 0, 0, 86, 1379, 1, 0, 0, 0, 88, 1383, 1, 0, 0, 0, 90, 1387, 1, 0, 0, 0, 92, 1397, 1, 0, 0, 0, 94, 1408, 1, 0, 0, 0, 96, 1425, 1, 0, 0, 0, 98, 1443, 1, 0, 0, 0, 100, 1448, 1, 0, 0, 0, 102, 1451, 1, 0, 0, 0, 104, 1455, 1, 0, 0, 0, 106, 1462, 1, 0, 0, 0, 108, 1471, 1, 0, 0, 0, 110, 1477, 1, 0, 0, 0, 112, 1479, 1, 0, 0, 0, 114, 1493, 1, 0, 0, 0, 116, 1515, 1, 0, 0, 0, 118, 1517, 1, 0, 0, 0, 120, 1525, 1, 0, 0, 0, 122, 1532, 1, 0, 0, 0, 124, 1534, 1, 0, 0, 0, 126, 1548, 1, 0, 0, 0, 128, 1555, 1, 0, 0, 0, 130, 1557, 1, 0, 0, 0, 132, 1561, 1, 0, 0, 0, 134, 1565, 1, 0, 0, 0, 136, 1569, 1, 0, 0, 0, 138, 1573, 1, 0, 0, 0, 140, 1586, 1, 0, 0, 0, 142, 1594, 1, 0, 0, 0, 144, 1597, 1, 0, 0, 0, 146, 1599, 1, 0, 0, 0, 148, 1611, 1, 0, 0, 0, 150, 1621, 1, 0, 0, 0, 152, 1624, 1, 0, 0, 0, 154, 1635, 1, 0, 0, 0, 156, 1643, 1, 0, 0, 0, 158, 1686, 1, 0, 0, 0, 160, 1695, 1, 0, 0, 0, 162, 1723, 1, 0, 0, 0, 164, 1736, 1, 0, 0, 0, 166, 1738, 1, 0, 0, 0, 168, 1744, 1, 0, 0, 0, 170, 1747, 1, 0, 0, 0, 172, 1753, 1, 0, 0, 0, 174, 1759, 1, 0, 0, 0, 176, 1766, 1, 0, 0, 0, 178, 1800, 1, 0, 0, 0, 180, 1808, 1, 0, 0, 0, 182, 1821, 1, 0, 0, 0, 184, 1826, 1, 0, 0, 0, 186, 1837, 1, 0, 0, 0, 188, 1854, 1, 0, 0, 0, 190, 1856, 1, 0, 0, 0, 192, 1861, 1, 0, 0, 0, 194, 1868, 1, 0, 0, 0, 196, 1870, 1, 0, 0, 0, 198, 1873, 1, 0, 0, 0, 200, 1876, 1, 0, 0, 0, 202, 1890, 1, 0, 0, 0, 204, 1898, 1, 0, 0, 0, 206, 1924, 1, 0, 0, 0, 208, 1926, 1, 0, 0, 0, 210, 1943, 1, 0, 0, 0, 212, 1957, 1, 0, 0, 0, 214, 1959, 1, 0, 0, 0, 216, 1962, 1, 0, 0, 0, 218, 1965, 1, 0, 0, 0, 220, 1974, 1, 0, 0, 0, 222, 1994, 1, 0, 0, 0, 224, 1996, 1, 0, 0, 0, 226, 1999, 1, 0, 0, 0, 228, 2012, 1, 0, 0, 0, 230, 2014, 1, 0, 0, 0, 232, 2018, 1, 0, 0, 0, 234, 2026, 1, 0, 0, 0, 236, 2030, 1, 0, 0, 0, 238, 2039, 1, 0, 0, 0, 240, 2045, 1, 0, 0, 0, 242, 2051, 1, 0, 0, 0, 244, 2056, 1, 0, 0, 0, 246, 2102, 1, 0, 0, 0, 248, 2104, 1, 0, 0, 0, 250, 2112, 1, 0, 0, 0, 252, 2120, 1, 0, 0, 0, 254, 2128, 1, 0, 0, 0, 256, 2139, 1, 0, 0, 0, 258, 2141, 1, 0, 0, 0, 260, 2146, 1, 0, 0, 0, 262, 2148, 1, 0, 0, 0, 264, 2150, 1, 0, 0, 0, 266, 2163, 1, 0, 0, 0, 268, 2171, 1, 0, 0, 0, 270, 2180, 1, 0, 0, 0, 272, 2184, 1, 0, 0, 0, 274, 2186, 1, 0, 0, 0, 276, 2191, 1, 0, 0, 0, 278, 2193, 1, 0, 0, 0, 280, 2197, 1, 0, 0, 0, 282, 2203, 1, 0, 0, 0, 284, 2211, 1, 0, 0, 0, 286, 2213, 1, 0, 0, 0, 288, 2216, 1, 0, 0, 0, 290, 2223, 1, 0, 0, 0, 292, 2234, 1, 0, 0, 0, 294, 2247, 1, 0, 0, 0, 296, 2249, 1, 0, 0, 0, 298, 2257, 1, 0, 0, 0, 300, 2261, 1, 0, 0, 0, 302, 2269, 1, 0, 0, 0, 304, 2271, 1, 0, 0, 0, 306, 2274, 1, 0, 0, 0, 308, 2281, 1, 0, 0, 0, 310, 2289, 1, 0, 0, 0, 312, 2296, 1, 0, 0, 0, 314, 2304, 1, 0, 0, 0, 316, 2312, 1, 0, 0, 0, 318, 2316, 1, 0, 0, 0, 320, 2318, 1, 0, 0, 0, 322, 2329, 1, 0, 0, 0, 324, 2333, 1, 0, 0, 0, 326, 2345, 1, 0, 0, 0, 328, 2353, 1, 0, 0, 0, 330, 2357, 1, 0, 0, 0, 332, 2369, 1, 0, 0, 0, 334, 2381, 1, 0, 0, 0, 336, 2386, 1, 0, 0, 0, 338, 2391, 1, 0, 0, 0, 340, 2393, 1, 0, 0, 0, 342, 2397, 1, 0, 0, 0, 344, 2401, 1, 0, 0, 0, 346, 2408, 1, 0, 0, 0, 348, 2410, 1, 0, 0, 0, 350, 2423, 1, 0, 0, 0, 352, 2462, 1, 0, 0, 0, 354, 2464, 1, 0, 0, 0, 356, 2469, 1, 0, 0, 0, 358, 2474, 1, 0, 0, 0, 360, 2481, 1, 0, 0, 0, 362, 2486, 1, 0, 0, 0, 364, 2491, 1, 0, 0, 0, 366, 2497, 1, 0, 0, 0, 368, 2499, 1, 0, 0, 0, 370, 2508, 1, 0, 0, 0, 372, 2520, 1, 0, 0, 0, 374, 2600, 1, 0, 0, 0, 376, 2606, 1, 0, 0, 0, 378, 2632, 1, 0, 0, 0, 380, 2634, 1, 0, 0, 0, 382, 2656, 1, 0, 0, 0, 384, 2661, 1, 0, 0, 0, 386, 2665, 1, 0, 0, 0, 388, 2697, 1, 0, 0, 0, 390, 2699, 1, 0, 0, 0, 392, 2710, 1, 0, 0, 0, 394, 2716, 1, 0, 0, 0, 396, 2718, 1, 0, 0, 0, 398, 2750, 1, 0, 0, 0, 400, 2757, 1, 0, 0, 0, 402, 2763, 1, 0, 0, 0, 404, 2769, 1, 0, 0, 0, 406, 2784, 1, 0, 0, 0, 408, 2794, 1, 0, 0, 0, 410, 2802, 1, 0, 0, 0, 412, 2805, 1, 0, 0, 0, 414, 2808, 1, 0, 0, 0, 416, 2811, 1, 0, 0, 0, 418, 2933, 1, 0, 0, 0, 420, 3067, 1, 0, 0, 0, 422, 3095, 1, 0, 0, 0, 424, 3112, 1, 0, 0, 0, 426, 3129, 1, 0, 0, 0, 428, 3131, 1, 0, 0, 0, 430, 3134, 1, 0, 0, 0, 432, 3160, 1, 0, 0, 0, 434, 3165, 1, 0, 0, 0, 436, 3192, 1, 0, 0, 0, 438, 3203, 1, 0, 0, 0, 440, 3340, 1, 0, 0, 0, 442, 3342, 1, 0, 0, 0, 444, 3365, 1, 0, 0, 0, 446, 3377, 1, 0, 0, 0, 448, 3382, 1, 0, 0, 0, 450, 3390, 1, 0, 0, 0, 452, 3398, 1, 0, 0, 0, 454, 3410, 1, 0, 0, 0, 456, 3444, 1, 0, 0, 0, 458, 3446, 1, 0, 0, 0, 460, 3471, 1, 0, 0, 0, 462, 3480, 1, 0, 0, 0, 464, 3510, 1, 0, 0, 0, 466, 3569, 1, 0, 0, 0, 468, 3571, 1, 0, 0, 0, 470, 3600, 1, 0, 0, 0, 472, 3602, 1, 0, 0, 0, 474, 3618, 1, 0, 0, 0, 476, 3630, 1, 0, 0, 0, 478, 3632, 1, 0, 0, 0, 480, 3636, 1, 0, 0, 0, 482, 3646, 1, 0, 0, 0, 484, 3656, 1, 0, 0, 0, 486, 3661, 1, 0, 0, 0, 488, 3668, 1, 0, 0, 0, 490, 3672, 1, 0, 0, 0, 492, 3691, 1, 0, 0, 0, 494, 3696, 1, 0, 0, 0, 496, 3698, 1, 0, 0, 0, 498, 3702, 1, 0, 0, 0, 500, 3728, 1, 0, 0, 0, 502, 3733, 1, 0, 0, 0, 504, 3754, 1, 0, 0, 0, 506, 3759, 1, 0, 0, 0, 508, 3790, 1, 0, 0, 0, 510, 3792, 1, 0, 0, 0, 512, 3816, 1, 0, 0, 0, 514, 3847, 1, 0, 0, 0, 516, 3849, 1, 0, 0, 0, 518, 3851, 1, 0, 0, 0, 520, 3853, 1, 0, 0, 0, 522, 3878, 1, 0, 0, 0, 524, 3880, 1, 0, 0, 0, 526, 3888, 1, 0, 0, 0, 528, 3914, 1, 0, 0, 0, 530, 3916, 1, 0, 0, 0, 532, 3936, 1, 0, 0, 0, 534, 3938, 1, 0, 0, 0, 536, 3949, 1, 0, 0, 0, 538, 3962, 1, 0, 0, 0, 540, 3997, 1, 0, 0, 0, 542, 3999, 1, 0, 0, 0, 544, 4004, 1, 0, 0, 0, 546, 4009, 1, 0, 0, 0, 548, 4011, 1, 0, 0, 0, 550, 4033, 1, 0, 0, 0, 552, 4035, 1, 0, 0, 0, 554, 4039, 1, 0, 0, 0, 556, 4048, 1, 0, 0, 0, 558, 4058, 1, 0, 0, 0, 560, 4062, 1, 0, 0, 0, 562, 4066, 1, 0, 0, 0, 564, 4070, 1, 0, 0, 0, 566, 4146, 1, 0, 0, 0, 568, 4148, 1, 0, 0, 0, 570, 4151, 1, 0, 0, 0, 572, 4155, 1, 0, 0, 0, 574, 4160, 1, 0, 0, 0, 576, 4162, 1, 0, 0, 0, 578, 4173, 1, 0, 0, 0, 580, 4190, 1, 0, 0, 0, 582, 4206, 1, 0, 0, 0, 584, 4215, 1, 0, 0, 0, 586, 4230, 1, 0, 0, 0, 588, 4260, 1, 0, 0, 0, 590, 4262, 1, 0, 0, 0, 592, 4279, 1, 0, 0, 0, 594, 4295, 1, 0, 0, 0, 596, 4297, 1, 0, 0, 0, 598, 4316, 1, 0, 0, 0, 600, 4321, 1, 0, 0, 0, 602, 4336, 1, 0, 0, 0, 604, 4344, 1, 0, 0, 0, 606, 4352, 1, 0, 0, 0, 608, 4360, 1, 0, 0, 0, 610, 4368, 1, 0, 0, 0, 612, 4376, 1, 0, 0, 0, 614, 4384, 1, 0, 0, 0, 616, 4386, 1, 0, 0, 0, 618, 4396, 1, 0, 0, 0, 620, 4404, 1, 0, 0, 0, 622, 4420, 1, 0, 0, 0, 624, 4424, 1, 0, 0, 0, 626, 4429, 1, 0, 0, 0, 628, 4431, 1, 0, 0, 0, 630, 4442, 1, 0, 0, 0, 632, 4444, 1, 0, 0, 0, 634, 4462, 1, 0, 0, 0, 636, 4467, 1, 0, 0, 0, 638, 4475, 1, 0, 0, 0, 640, 4483, 1, 0, 0, 0, 642, 4487, 1, 0, 0, 0, 644, 4499, 1, 0, 0, 0, 646, 4504, 1, 0, 0, 0, 648, 4515, 1, 0, 0, 0, 650, 4522, 1, 0, 0, 0, 652, 4524, 1, 0, 0, 0, 654, 4528, 1, 0, 0, 0, 656, 4530, 1, 0, 0, 0, 658, 4535, 1, 0, 0, 0, 660, 4537, 1, 0, 0, 0, 662, 4539, 1, 0, 0, 0, 664, 4592, 1, 0, 0, 0, 666, 4759, 1, 0, 0, 0, 668, 4761, 1, 0, 0, 0, 670, 4770, 1, 0, 0, 0, 672, 4772, 1, 0, 0, 0, 674, 4783, 1, 0, 0, 0, 676, 4785, 1, 0, 0, 0, 678, 4790, 1, 0, 0, 0, 680, 4792, 1, 0, 0, 0, 682, 4794, 1, 0, 0, 0, 684, 4796, 1, 0, 0, 0, 686, 4798, 1, 0, 0, 0, 688, 4800, 1, 0, 0, 0, 690, 4802, 1, 0, 0, 0, 692, 4804, 1, 0, 0, 0, 694, 4806, 1, 0, 0, 0, 696, 4808, 1, 0, 0, 0, 698, 4810, 1, 0, 0, 0, 700, 4812, 1, 0, 0, 0, 702, 4837, 1, 0, 0, 0, 704, 4839, 1, 0, 0, 0, 706, 4847, 1, 0, 0, 0, 708, 4861, 1, 0, 0, 0, 710, 4863, 1, 0, 0, 0, 712, 714, 3, 2, 1, 0, 713, 712, 1, 0, 0, 0, 714, 717, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 718, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 719, 5, 0, 0, 1, 719, 1, 1, 0, 0, 0, 720, 723, 3, 4, 2, 0, 721, 723, 3, 10, 5, 0, 722, 720, 1, 0, 0, 0, 722, 721, 1, 0, 0, 0, 723, 725, 1, 0, 0, 0, 724, 726, 5, 398, 0, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 3, 1, 0, 0, 0, 727, 737, 5, 119, 0, 0, 728, 730, 3, 6, 3, 0, 729, 728, 1, 0, 0, 0, 730, 733, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 734, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 734, 738, 3, 10, 5, 0, 735, 736, 5, 284, 0, 0, 736, 738, 3, 364, 182, 0, 737, 731, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 5, 1, 0, 0, 0, 739, 762, 5, 122, 0, 0, 740, 762, 5, 138, 0, 0, 741, 762, 5, 88, 0, 0, 742, 744, 5, 37, 0, 0, 743, 745, 7, 0, 0, 0, 744, 743, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 762, 1, 0, 0, 0, 746, 762, 5, 192, 0, 0, 747, 762, 5, 21, 0, 0, 748, 762, 5, 10, 0, 0, 749, 762, 5, 275, 0, 0, 750, 762, 5, 191, 0, 0, 751, 762, 5, 19, 0, 0, 752, 754, 5, 377, 0, 0, 753, 755, 5, 225, 0, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 757, 1, 0, 0, 0, 756, 758, 3, 8, 4, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 762, 1, 0, 0, 0, 759, 762, 5, 79, 0, 0, 760, 762, 5, 78, 0, 0, 761, 739, 1, 0, 0, 0, 761, 740, 1, 0, 0, 0, 761, 741, 1, 0, 0, 0, 761, 742, 1, 0, 0, 0, 761, 746, 1, 0, 0, 0, 761, 747, 1, 0, 0, 0, 761, 748, 1, 0, 0, 0, 761, 749, 1, 0, 0, 0, 761, 750, 1, 0, 0, 0, 761, 751, 1, 0, 0, 0, 761, 752, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 7, 1, 0, 0, 0, 763, 764, 7, 1, 0, 0, 764, 9, 1, 0, 0, 0, 765, 837, 3, 364, 182, 0, 766, 837, 3, 12, 6, 0, 767, 837, 3, 16, 8, 0, 768, 837, 3, 18, 9, 0, 769, 837, 3, 20, 10, 0, 770, 837, 3, 24, 12, 0, 771, 772, 5, 277, 0, 0, 772, 773, 5, 320, 0, 0, 773, 776, 3, 476, 238, 0, 774, 775, 5, 387, 0, 0, 775, 777, 3, 230, 115, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 837, 1, 0, 0, 0, 778, 837, 3, 28, 14, 0, 779, 780, 5, 86, 0, 0, 780, 781, 5, 139, 0, 0, 781, 783, 3, 482, 241, 0, 782, 784, 3, 500, 250, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 837, 1, 0, 0, 0, 785, 786, 5, 365, 0, 0, 786, 787, 3, 482, 241, 0, 787, 789, 3, 396, 198, 0, 788, 790, 3, 500, 250, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 837, 1, 0, 0, 0, 791, 837, 3, 398, 199, 0, 792, 794, 5, 203, 0, 0, 793, 795, 5, 436, 0, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 166, 0, 0, 797, 802, 3, 482, 241, 0, 798, 800, 5, 17, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 803, 3, 654, 327, 0, 802, 799, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 5, 370, 0, 0, 805, 806, 3, 460, 230, 0, 806, 807, 5, 224, 0, 0, 807, 808, 3, 596, 298, 0, 808, 809, 3, 402, 201, 0, 809, 837, 1, 0, 0, 0, 810, 811, 5, 249, 0, 0, 811, 812, 3, 654, 327, 0, 812, 813, 5, 139, 0, 0, 813, 814, 3, 364, 182, 0, 814, 837, 1, 0, 0, 0, 815, 816, 5, 115, 0, 0, 816, 817, 3, 654, 327, 0, 817, 818, 5, 370, 0, 0, 818, 819, 3, 300, 150, 0, 819, 837, 1, 0, 0, 0, 820, 821, 5, 304, 0, 0, 821, 826, 3, 664, 332, 0, 822, 823, 7, 2, 0, 0, 823, 825, 3, 664, 332, 0, 824, 822, 1, 0, 0, 0, 825, 828, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 833, 5, 405, 0, 0, 830, 832, 9, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 765, 1, 0, 0, 0, 836, 766, 1, 0, 0, 0, 836, 767, 1, 0, 0, 0, 836, 768, 1, 0, 0, 0, 836, 769, 1, 0, 0, 0, 836, 770, 1, 0, 0, 0, 836, 771, 1, 0, 0, 0, 836, 778, 1, 0, 0, 0, 836, 779, 1, 0, 0, 0, 836, 785, 1, 0, 0, 0, 836, 791, 1, 0, 0, 0, 836, 792, 1, 0, 0, 0, 836, 810, 1, 0, 0, 0, 836, 815, 1, 0, 0, 0, 836, 820, 1, 0, 0, 0, 837, 11, 1, 0, 0, 0, 838, 839, 5, 187, 0, 0, 839, 841, 5, 66, 0, 0, 840, 842, 5, 188, 0, 0, 841, 840, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 5, 158, 0, 0, 844, 846, 5, 426, 0, 0, 845, 847, 5, 235, 0, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 166, 0, 0, 849, 850, 5, 329, 0, 0, 850, 852, 3, 640, 320, 0, 851, 853, 3, 56, 28, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 13, 1, 0, 0, 0, 854, 856, 5, 134, 0, 0, 855, 857, 5, 204, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 5, 279, 0, 0, 859, 860, 5, 399, 0, 0, 860, 861, 5, 426, 0, 0, 861, 862, 5, 400, 0, 0, 862, 15, 1, 0, 0, 0, 863, 864, 5, 120, 0, 0, 864, 865, 5, 329, 0, 0, 865, 866, 3, 640, 320, 0, 866, 867, 5, 341, 0, 0, 867, 869, 5, 426, 0, 0, 868, 870, 3, 14, 7, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 17, 1, 0, 0, 0, 871, 877, 5, 153, 0, 0, 872, 874, 5, 123, 0, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 329, 0, 0, 876, 878, 3, 640, 320, 0, 877, 873, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 139, 0, 0, 880, 882, 5, 426, 0, 0, 881, 883, 3, 428, 214, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 19, 1, 0, 0, 0, 884, 885, 5, 277, 0, 0, 885, 886, 5, 103, 0, 0, 886, 889, 3, 22, 11, 0, 887, 888, 5, 278, 0, 0, 888, 890, 3, 22, 11, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 892, 5, 387, 0, 0, 892, 894, 3, 230, 115, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 21, 1, 0, 0, 0, 895, 898, 3, 476, 238, 0, 896, 897, 5, 395, 0, 0, 897, 899, 3, 26, 13, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 23, 1, 0, 0, 0, 900, 901, 5, 277, 0, 0, 901, 902, 5, 187, 0, 0, 902, 905, 3, 22, 11, 0, 903, 904, 5, 166, 0, 0, 904, 906, 3, 476, 238, 0, 905, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 908, 5, 387, 0, 0, 908, 910, 3, 230, 115, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 25, 1, 0, 0, 0, 911, 914, 5, 426, 0, 0, 912, 913, 5, 395, 0, 0, 913, 915, 5, 426, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 27, 1, 0, 0, 0, 916, 975, 3, 42, 21, 0, 917, 975, 3, 46, 23, 0, 918, 975, 3, 48, 24, 0, 919, 975, 3, 440, 220, 0, 920, 975, 3, 54, 27, 0, 921, 975, 3, 52, 26, 0, 922, 975, 3, 416, 208, 0, 923, 975, 3, 64, 32, 0, 924, 975, 3, 72, 36, 0, 925, 975, 3, 138, 69, 0, 926, 975, 3, 160, 80, 0, 927, 975, 3, 176, 88, 0, 928, 975, 3, 180, 90, 0, 929, 975, 3, 184, 92, 0, 930, 975, 3, 182, 91, 0, 931, 975, 3, 174, 87, 0, 932, 975, 3, 178, 89, 0, 933, 975, 3, 146, 73, 0, 934, 975, 3, 152, 76, 0, 935, 975, 3, 148, 74, 0, 936, 975, 3, 150, 75, 0, 937, 975, 3, 154, 77, 0, 938, 975, 3, 156, 78, 0, 939, 975, 3, 158, 79, 0, 940, 975, 3, 66, 33, 0, 941, 975, 3, 76, 38, 0, 942, 975, 3, 82, 41, 0, 943, 975, 3, 78, 39, 0, 944, 975, 3, 84, 42, 0, 945, 975, 3, 86, 43, 0, 946, 975, 3, 88, 44, 0, 947, 975, 3, 90, 45, 0, 948, 975, 3, 92, 46, 0, 949, 975, 3, 106, 53, 0, 950, 975, 3, 98, 49, 0, 951, 975, 3, 108, 54, 0, 952, 975, 3, 100, 50, 0, 953, 975, 3, 94, 47, 0, 954, 975, 3, 96, 48, 0, 955, 975, 3, 104, 52, 0, 956, 975, 3, 102, 51, 0, 957, 958, 5, 1, 0, 0, 958, 960, 7, 3, 0, 0, 959, 961, 5, 431, 0, 0, 960, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 965, 5, 176, 0, 0, 965, 967, 5, 258, 0, 0, 966, 968, 5, 426, 0, 0, 967, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 975, 1, 0, 0, 0, 971, 975, 3, 666, 333, 0, 972, 975, 3, 442, 221, 0, 973, 975, 3, 444, 222, 0, 974, 916, 1, 0, 0, 0, 974, 917, 1, 0, 0, 0, 974, 918, 1, 0, 0, 0, 974, 919, 1, 0, 0, 0, 974, 920, 1, 0, 0, 0, 974, 921, 1, 0, 0, 0, 974, 922, 1, 0, 0, 0, 974, 923, 1, 0, 0, 0, 974, 924, 1, 0, 0, 0, 974, 925, 1, 0, 0, 0, 974, 926, 1, 0, 0, 0, 974, 927, 1, 0, 0, 0, 974, 928, 1, 0, 0, 0, 974, 929, 1, 0, 0, 0, 974, 930, 1, 0, 0, 0, 974, 931, 1, 0, 0, 0, 974, 932, 1, 0, 0, 0, 974, 933, 1, 0, 0, 0, 974, 934, 1, 0, 0, 0, 974, 935, 1, 0, 0, 0, 974, 936, 1, 0, 0, 0, 974, 937, 1, 0, 0, 0, 974, 938, 1, 0, 0, 0, 974, 939, 1, 0, 0, 0, 974, 940, 1, 0, 0, 0, 974, 941, 1, 0, 0, 0, 974, 942, 1, 0, 0, 0, 974, 943, 1, 0, 0, 0, 974, 944, 1, 0, 0, 0, 974, 945, 1, 0, 0, 0, 974, 946, 1, 0, 0, 0, 974, 947, 1, 0, 0, 0, 974, 948, 1, 0, 0, 0, 974, 949, 1, 0, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 957, 1, 0, 0, 0, 974, 964, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 29, 1, 0, 0, 0, 976, 977, 5, 151, 0, 0, 977, 978, 5, 117, 0, 0, 978, 31, 1, 0, 0, 0, 979, 980, 5, 151, 0, 0, 980, 981, 5, 216, 0, 0, 981, 982, 5, 117, 0, 0, 982, 33, 1, 0, 0, 0, 983, 984, 7, 4, 0, 0, 984, 35, 1, 0, 0, 0, 985, 986, 3, 678, 339, 0, 986, 987, 5, 284, 0, 0, 987, 37, 1, 0, 0, 0, 988, 989, 3, 680, 340, 0, 989, 990, 5, 284, 0, 0, 990, 39, 1, 0, 0, 0, 991, 992, 5, 321, 0, 0, 992, 993, 5, 17, 0, 0, 993, 994, 5, 92, 0, 0, 994, 41, 1, 0, 0, 0, 995, 997, 5, 58, 0, 0, 996, 998, 5, 273, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1001, 3, 70, 35, 0, 1000, 1002, 3, 32, 16, 0, 1001, 1000, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 3, 478, 239, 0, 1004, 1006, 3, 50, 25, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1008, 1, 0, 0, 0, 1007, 1009, 3, 428, 214, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1011, 5, 196, 0, 0, 1011, 1013, 5, 426, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1017, 1, 0, 0, 0, 1014, 1015, 5, 387, 0, 0, 1015, 1016, 5, 76, 0, 0, 1016, 1018, 3, 230, 115, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1036, 1, 0, 0, 0, 1019, 1020, 5, 58, 0, 0, 1020, 1021, 5, 273, 0, 0, 1021, 1023, 3, 70, 35, 0, 1022, 1024, 3, 32, 16, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 3, 478, 239, 0, 1026, 1028, 3, 50, 25, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1033, 3, 44, 22, 0, 1030, 1031, 5, 387, 0, 0, 1031, 1032, 5, 76, 0, 0, 1032, 1034, 3, 230, 115, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 995, 1, 0, 0, 0, 1035, 1019, 1, 0, 0, 0, 1036, 43, 1, 0, 0, 0, 1037, 1038, 5, 370, 0, 0, 1038, 1039, 3, 476, 238, 0, 1039, 45, 1, 0, 0, 0, 1040, 1041, 5, 368, 0, 0, 1041, 1042, 3, 476, 238, 0, 1042, 47, 1, 0, 0, 0, 1043, 1044, 5, 101, 0, 0, 1044, 1046, 3, 70, 35, 0, 1045, 1047, 3, 30, 15, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 3, 476, 238, 0, 1049, 1051, 3, 34, 17, 0, 1050, 1049, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 49, 1, 0, 0, 0, 1052, 1053, 5, 47, 0, 0, 1053, 1054, 5, 426, 0, 0, 1054, 51, 1, 0, 0, 0, 1055, 1057, 5, 351, 0, 0, 1056, 1058, 5, 329, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1065, 3, 640, 320, 0, 1060, 1061, 5, 46, 0, 0, 1061, 1062, 5, 399, 0, 0, 1062, 1063, 3, 254, 127, 0, 1063, 1064, 5, 400, 0, 0, 1064, 1066, 1, 0, 0, 0, 1065, 1060, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 1, 0, 0, 0, 1067, 1069, 5, 135, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 53, 1, 0, 0, 0, 1070, 1071, 5, 101, 0, 0, 1071, 1073, 5, 329, 0, 0, 1072, 1074, 3, 30, 15, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 3, 482, 241, 0, 1076, 1078, 5, 255, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 1, 0, 0, 0, 1079, 1081, 3, 14, 7, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 55, 1, 0, 0, 0, 1082, 1083, 5, 160, 0, 0, 1083, 1084, 5, 426, 0, 0, 1084, 1085, 5, 301, 0, 0, 1085, 1086, 5, 426, 0, 0, 1086, 57, 1, 0, 0, 0, 1087, 1090, 3, 654, 327, 0, 1088, 1089, 5, 395, 0, 0, 1089, 1091, 3, 654, 327, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1105, 1, 0, 0, 0, 1092, 1102, 3, 654, 327, 0, 1093, 1098, 5, 395, 0, 0, 1094, 1099, 5, 104, 0, 0, 1095, 1099, 5, 175, 0, 0, 1096, 1099, 5, 375, 0, 0, 1097, 1099, 3, 654, 327, 0, 1098, 1094, 1, 0, 0, 0, 1098, 1095, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1093, 1, 0, 0, 0, 1101, 1104, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1106, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1105, 1092, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 59, 1, 0, 0, 0, 1107, 1109, 3, 58, 29, 0, 1108, 1110, 3, 642, 321, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 61, 1, 0, 0, 0, 1111, 1113, 3, 480, 240, 0, 1112, 1114, 3, 642, 321, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 3, 264, 132, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 63, 1, 0, 0, 0, 1118, 1141, 7, 5, 0, 0, 1119, 1121, 3, 70, 35, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 3, 476, 238, 0, 1124, 1142, 1, 0, 0, 0, 1125, 1127, 5, 69, 0, 0, 1126, 1128, 5, 122, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1142, 3, 476, 238, 0, 1130, 1132, 5, 141, 0, 0, 1131, 1133, 5, 122, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1142, 3, 572, 286, 0, 1135, 1138, 5, 138, 0, 0, 1136, 1138, 5, 122, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1142, 3, 62, 31, 0, 1140, 1142, 3, 62, 31, 0, 1141, 1119, 1, 0, 0, 0, 1141, 1125, 1, 0, 0, 0, 1141, 1130, 1, 0, 0, 0, 1141, 1137, 1, 0, 0, 0, 1141, 1140, 1, 0, 0, 0, 1142, 65, 1, 0, 0, 0, 1143, 1144, 5, 10, 0, 0, 1144, 1145, 5, 329, 0, 0, 1145, 1158, 3, 640, 320, 0, 1146, 1147, 5, 52, 0, 0, 1147, 1154, 5, 319, 0, 0, 1148, 1155, 5, 215, 0, 0, 1149, 1150, 5, 134, 0, 0, 1150, 1152, 5, 46, 0, 0, 1151, 1153, 3, 254, 127, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1155, 1, 0, 0, 0, 1154, 1148, 1, 0, 0, 0, 1154, 1149, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1159, 1, 0, 0, 0, 1156, 1157, 5, 33, 0, 0, 1157, 1159, 5, 204, 0, 0, 1158, 1146, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 67, 1, 0, 0, 0, 1160, 1161, 7, 6, 0, 0, 1161, 69, 1, 0, 0, 0, 1162, 1163, 7, 7, 0, 0, 1163, 71, 1, 0, 0, 0, 1164, 1165, 5, 308, 0, 0, 1165, 1168, 7, 8, 0, 0, 1166, 1167, 5, 184, 0, 0, 1167, 1169, 3, 194, 97, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1348, 1, 0, 0, 0, 1170, 1172, 5, 308, 0, 0, 1171, 1173, 5, 122, 0, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1178, 5, 330, 0, 0, 1175, 1176, 3, 68, 34, 0, 1176, 1177, 3, 476, 238, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1175, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1182, 3, 74, 37, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1348, 1, 0, 0, 0, 1183, 1184, 5, 308, 0, 0, 1184, 1188, 5, 379, 0, 0, 1185, 1186, 3, 68, 34, 0, 1186, 1187, 3, 476, 238, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1193, 1, 0, 0, 0, 1190, 1191, 5, 184, 0, 0, 1191, 1194, 3, 194, 97, 0, 1192, 1194, 3, 194, 97, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1348, 1, 0, 0, 0, 1195, 1196, 5, 308, 0, 0, 1196, 1197, 5, 202, 0, 0, 1197, 1201, 5, 379, 0, 0, 1198, 1199, 3, 68, 34, 0, 1199, 1200, 3, 476, 238, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1206, 1, 0, 0, 0, 1203, 1204, 5, 184, 0, 0, 1204, 1207, 3, 194, 97, 0, 1205, 1207, 3, 194, 97, 0, 1206, 1203, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1348, 1, 0, 0, 0, 1208, 1210, 5, 308, 0, 0, 1209, 1211, 5, 315, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 46, 0, 0, 1213, 1214, 3, 68, 34, 0, 1214, 1218, 3, 480, 240, 0, 1215, 1216, 3, 68, 34, 0, 1216, 1217, 3, 476, 238, 0, 1217, 1219, 1, 0, 0, 0, 1218, 1215, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1223, 1, 0, 0, 0, 1220, 1221, 5, 184, 0, 0, 1221, 1224, 3, 194, 97, 0, 1222, 1224, 3, 194, 97, 0, 1223, 1220, 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1348, 1, 0, 0, 0, 1225, 1226, 5, 308, 0, 0, 1226, 1229, 5, 142, 0, 0, 1227, 1228, 5, 184, 0, 0, 1228, 1230, 3, 572, 286, 0, 1229, 1227, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1348, 1, 0, 0, 0, 1231, 1232, 5, 308, 0, 0, 1232, 1233, 5, 239, 0, 0, 1233, 1235, 3, 480, 240, 0, 1234, 1236, 3, 642, 321, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 500, 250, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 556, 278, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1245, 3, 390, 195, 0, 1244, 1243, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1348, 1, 0, 0, 0, 1246, 1247, 5, 308, 0, 0, 1247, 1253, 5, 58, 0, 0, 1248, 1249, 3, 70, 35, 0, 1249, 1250, 3, 476, 238, 0, 1250, 1254, 1, 0, 0, 0, 1251, 1252, 5, 329, 0, 0, 1252, 1254, 3, 482, 241, 0, 1253, 1248, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1348, 1, 0, 0, 0, 1255, 1256, 5, 308, 0, 0, 1256, 1257, 5, 329, 0, 0, 1257, 1261, 5, 122, 0, 0, 1258, 1259, 3, 68, 34, 0, 1259, 1260, 3, 476, 238, 0, 1260, 1262, 1, 0, 0, 0, 1261, 1258, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 5, 184, 0, 0, 1264, 1266, 3, 194, 97, 0, 1265, 1267, 3, 642, 321, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1348, 1, 0, 0, 0, 1268, 1269, 5, 308, 0, 0, 1269, 1270, 5, 332, 0, 0, 1270, 1274, 3, 482, 241, 0, 1271, 1272, 5, 399, 0, 0, 1272, 1273, 5, 426, 0, 0, 1273, 1275, 5, 400, 0, 0, 1274, 1271, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1348, 1, 0, 0, 0, 1276, 1277, 5, 308, 0, 0, 1277, 1289, 5, 191, 0, 0, 1278, 1279, 3, 70, 35, 0, 1279, 1281, 3, 476, 238, 0, 1280, 1282, 5, 122, 0, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1290, 1, 0, 0, 0, 1283, 1285, 3, 60, 30, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1288, 5, 122, 0, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1278, 1, 0, 0, 0, 1289, 1284, 1, 0, 0, 0, 1290, 1348, 1, 0, 0, 0, 1291, 1292, 5, 308, 0, 0, 1292, 1319, 5, 50, 0, 0, 1293, 1294, 5, 51, 0, 0, 1294, 1295, 5, 405, 0, 0, 1295, 1320, 5, 431, 0, 0, 1296, 1297, 3, 70, 35, 0, 1297, 1298, 3, 476, 238, 0, 1298, 1303, 1, 0, 0, 0, 1299, 1301, 3, 60, 30, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1303, 1, 0, 0, 0, 1302, 1296, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 410, 205, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 412, 206, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 414, 207, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1315, 3, 556, 278, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 1, 0, 0, 0, 1316, 1318, 3, 390, 195, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1293, 1, 0, 0, 0, 1319, 1302, 1, 0, 0, 0, 1320, 1348, 1, 0, 0, 0, 1321, 1322, 5, 308, 0, 0, 1322, 1348, 5, 346, 0, 0, 1323, 1324, 5, 308, 0, 0, 1324, 1325, 5, 54, 0, 0, 1325, 1348, 5, 426, 0, 0, 1326, 1327, 5, 308, 0, 0, 1327, 1331, 5, 280, 0, 0, 1328, 1329, 5, 243, 0, 0, 1329, 1332, 3, 654, 327, 0, 1330, 1332, 5, 244, 0, 0, 1331, 1328, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1348, 1, 0, 0, 0, 1333, 1334, 5, 308, 0, 0, 1334, 1348, 5, 70, 0, 0, 1335, 1337, 5, 308, 0, 0, 1336, 1338, 5, 138, 0, 0, 1337, 1336, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 7, 9, 0, 0, 1340, 1341, 5, 224, 0, 0, 1341, 1345, 3, 482, 241, 0, 1342, 1343, 3, 68, 34, 0, 1343, 1344, 3, 476, 238, 0, 1344, 1346, 1, 0, 0, 0, 1345, 1342, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1164, 1, 0, 0, 0, 1347, 1170, 1, 0, 0, 0, 1347, 1183, 1, 0, 0, 0, 1347, 1195, 1, 0, 0, 0, 1347, 1208, 1, 0, 0, 0, 1347, 1225, 1, 0, 0, 0, 1347, 1231, 1, 0, 0, 0, 1347, 1246, 1, 0, 0, 0, 1347, 1255, 1, 0, 0, 0, 1347, 1268, 1, 0, 0, 0, 1347, 1276, 1, 0, 0, 0, 1347, 1291, 1, 0, 0, 0, 1347, 1321, 1, 0, 0, 0, 1347, 1323, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1335, 1, 0, 0, 0, 1348, 73, 1, 0, 0, 0, 1349, 1350, 5, 384, 0, 0, 1350, 1351, 3, 654, 327, 0, 1351, 1352, 5, 405, 0, 0, 1352, 1353, 5, 426, 0, 0, 1353, 1358, 1, 0, 0, 0, 1354, 1355, 5, 184, 0, 0, 1355, 1358, 3, 194, 97, 0, 1356, 1358, 3, 194, 97, 0, 1357, 1349, 1, 0, 0, 0, 1357, 1354, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 75, 1, 0, 0, 0, 1359, 1360, 5, 190, 0, 0, 1360, 1361, 5, 329, 0, 0, 1361, 1362, 3, 640, 320, 0, 1362, 1363, 3, 80, 40, 0, 1363, 77, 1, 0, 0, 0, 1364, 1365, 5, 190, 0, 0, 1365, 1366, 3, 70, 35, 0, 1366, 1367, 3, 476, 238, 0, 1367, 1368, 3, 80, 40, 0, 1368, 79, 1, 0, 0, 0, 1369, 1370, 7, 10, 0, 0, 1370, 81, 1, 0, 0, 0, 1371, 1372, 5, 361, 0, 0, 1372, 1373, 5, 329, 0, 0, 1373, 1374, 3, 640, 320, 0, 1374, 83, 1, 0, 0, 0, 1375, 1376, 5, 361, 0, 0, 1376, 1377, 3, 70, 35, 0, 1377, 1378, 3, 476, 238, 0, 1378, 85, 1, 0, 0, 0, 1379, 1380, 5, 58, 0, 0, 1380, 1381, 5, 287, 0, 0, 1381, 1382, 3, 654, 327, 0, 1382, 87, 1, 0, 0, 0, 1383, 1384, 5, 101, 0, 0, 1384, 1385, 5, 287, 0, 0, 1385, 1386, 3, 654, 327, 0, 1386, 89, 1, 0, 0, 0, 1387, 1388, 5, 143, 0, 0, 1388, 1390, 3, 118, 59, 0, 1389, 1391, 3, 112, 56, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1393, 5, 341, 0, 0, 1393, 1395, 3, 124, 62, 0, 1394, 1396, 3, 130, 65, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 91, 1, 0, 0, 0, 1397, 1399, 5, 283, 0, 0, 1398, 1400, 3, 132, 66, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1403, 3, 118, 59, 0, 1402, 1404, 3, 112, 56, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 5, 139, 0, 0, 1406, 1407, 3, 124, 62, 0, 1407, 93, 1, 0, 0, 0, 1408, 1410, 5, 143, 0, 0, 1409, 1411, 5, 287, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 3, 654, 327, 0, 1413, 1414, 5, 397, 0, 0, 1414, 1416, 3, 654, 327, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 341, 0, 0, 1421, 1423, 3, 124, 62, 0, 1422, 1424, 3, 136, 68, 0, 1423, 1422, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 95, 1, 0, 0, 0, 1425, 1427, 5, 283, 0, 0, 1426, 1428, 3, 134, 67, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 5, 287, 0, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1437, 3, 654, 327, 0, 1433, 1434, 5, 397, 0, 0, 1434, 1436, 3, 654, 327, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1439, 1, 0, 0, 0, 1437, 1435, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1441, 5, 139, 0, 0, 1441, 1442, 3, 124, 62, 0, 1442, 97, 1, 0, 0, 0, 1443, 1444, 5, 308, 0, 0, 1444, 1445, 5, 287, 0, 0, 1445, 1446, 5, 143, 0, 0, 1446, 1447, 3, 126, 63, 0, 1447, 99, 1, 0, 0, 0, 1448, 1449, 5, 308, 0, 0, 1449, 1450, 5, 288, 0, 0, 1450, 101, 1, 0, 0, 0, 1451, 1452, 5, 308, 0, 0, 1452, 1453, 5, 62, 0, 0, 1453, 1454, 5, 288, 0, 0, 1454, 103, 1, 0, 0, 0, 1455, 1456, 5, 304, 0, 0, 1456, 1460, 5, 287, 0, 0, 1457, 1461, 5, 7, 0, 0, 1458, 1461, 5, 213, 0, 0, 1459, 1461, 3, 654, 327, 0, 1460, 1457, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1459, 1, 0, 0, 0, 1461, 105, 1, 0, 0, 0, 1462, 1463, 5, 308, 0, 0, 1463, 1465, 5, 143, 0, 0, 1464, 1466, 3, 126, 63, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1468, 5, 224, 0, 0, 1468, 1470, 3, 110, 55, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 107, 1, 0, 0, 0, 1471, 1472, 5, 308, 0, 0, 1472, 1473, 5, 252, 0, 0, 1473, 1474, 3, 654, 327, 0, 1474, 109, 1, 0, 0, 0, 1475, 1478, 5, 7, 0, 0, 1476, 1478, 3, 116, 58, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1476, 1, 0, 0, 0, 1478, 111, 1, 0, 0, 0, 1479, 1480, 5, 224, 0, 0, 1480, 1481, 3, 114, 57, 0, 1481, 113, 1, 0, 0, 0, 1482, 1483, 3, 70, 35, 0, 1483, 1484, 3, 476, 238, 0, 1484, 1494, 1, 0, 0, 0, 1485, 1487, 5, 329, 0, 0, 1486, 1485, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1494, 3, 640, 320, 0, 1489, 1490, 5, 366, 0, 0, 1490, 1494, 5, 426, 0, 0, 1491, 1492, 5, 303, 0, 0, 1492, 1494, 3, 654, 327, 0, 1493, 1482, 1, 0, 0, 0, 1493, 1486, 1, 0, 0, 0, 1493, 1489, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 115, 1, 0, 0, 0, 1495, 1496, 3, 70, 35, 0, 1496, 1497, 3, 476, 238, 0, 1497, 1516, 1, 0, 0, 0, 1498, 1500, 5, 329, 0, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1506, 3, 482, 241, 0, 1502, 1503, 5, 399, 0, 0, 1503, 1504, 3, 254, 127, 0, 1504, 1505, 5, 400, 0, 0, 1505, 1507, 1, 0, 0, 0, 1506, 1502, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1510, 3, 642, 321, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1516, 1, 0, 0, 0, 1511, 1512, 5, 366, 0, 0, 1512, 1516, 5, 426, 0, 0, 1513, 1514, 5, 303, 0, 0, 1514, 1516, 3, 654, 327, 0, 1515, 1495, 1, 0, 0, 0, 1515, 1499, 1, 0, 0, 0, 1515, 1511, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1516, 117, 1, 0, 0, 0, 1517, 1522, 3, 120, 60, 0, 1518, 1519, 5, 397, 0, 0, 1519, 1521, 3, 120, 60, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 119, 1, 0, 0, 0, 1524, 1522, 1, 0, 0, 0, 1525, 1530, 3, 122, 61, 0, 1526, 1527, 5, 399, 0, 0, 1527, 1528, 3, 254, 127, 0, 1528, 1529, 5, 400, 0, 0, 1529, 1531, 1, 0, 0, 0, 1530, 1526, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 121, 1, 0, 0, 0, 1532, 1533, 7, 11, 0, 0, 1533, 123, 1, 0, 0, 0, 1534, 1539, 3, 126, 63, 0, 1535, 1536, 5, 397, 0, 0, 1536, 1538, 3, 126, 63, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 125, 1, 0, 0, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1543, 5, 369, 0, 0, 1543, 1549, 3, 658, 329, 0, 1544, 1545, 5, 144, 0, 0, 1545, 1549, 3, 658, 329, 0, 1546, 1547, 5, 287, 0, 0, 1547, 1549, 3, 654, 327, 0, 1548, 1542, 1, 0, 0, 0, 1548, 1544, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1549, 127, 1, 0, 0, 0, 1550, 1551, 5, 369, 0, 0, 1551, 1556, 3, 658, 329, 0, 1552, 1553, 5, 287, 0, 0, 1553, 1556, 3, 654, 327, 0, 1554, 1556, 3, 654, 327, 0, 1555, 1550, 1, 0, 0, 0, 1555, 1552, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 129, 1, 0, 0, 0, 1557, 1558, 5, 387, 0, 0, 1558, 1559, 5, 143, 0, 0, 1559, 1560, 5, 227, 0, 0, 1560, 131, 1, 0, 0, 0, 1561, 1562, 5, 143, 0, 0, 1562, 1563, 5, 227, 0, 0, 1563, 1564, 5, 134, 0, 0, 1564, 133, 1, 0, 0, 0, 1565, 1566, 5, 5, 0, 0, 1566, 1567, 5, 227, 0, 0, 1567, 1568, 5, 134, 0, 0, 1568, 135, 1, 0, 0, 0, 1569, 1570, 5, 387, 0, 0, 1570, 1571, 5, 5, 0, 0, 1571, 1572, 5, 227, 0, 0, 1572, 137, 1, 0, 0, 0, 1573, 1575, 5, 212, 0, 0, 1574, 1576, 5, 276, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 5, 329, 0, 0, 1578, 1584, 3, 482, 241, 0, 1579, 1580, 7, 12, 0, 0, 1580, 1582, 5, 239, 0, 0, 1581, 1583, 3, 646, 323, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 1, 0, 0, 0, 1584, 1579, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 139, 1, 0, 0, 0, 1586, 1591, 3, 142, 71, 0, 1587, 1588, 5, 397, 0, 0, 1588, 1590, 3, 142, 71, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 141, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 144, 72, 0, 1595, 1596, 5, 426, 0, 0, 1596, 143, 1, 0, 0, 0, 1597, 1598, 7, 13, 0, 0, 1598, 145, 1, 0, 0, 0, 1599, 1601, 5, 58, 0, 0, 1600, 1602, 5, 333, 0, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 5, 141, 0, 0, 1604, 1605, 3, 570, 285, 0, 1605, 1606, 5, 17, 0, 0, 1606, 1609, 5, 426, 0, 0, 1607, 1608, 5, 370, 0, 0, 1608, 1610, 3, 140, 70, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 147, 1, 0, 0, 0, 1611, 1613, 5, 101, 0, 0, 1612, 1614, 5, 333, 0, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 5, 141, 0, 0, 1616, 1618, 3, 30, 15, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 3, 572, 286, 0, 1620, 149, 1, 0, 0, 0, 1621, 1622, 5, 271, 0, 0, 1622, 1623, 7, 14, 0, 0, 1623, 151, 1, 0, 0, 0, 1624, 1625, 5, 58, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 194, 0, 0, 1627, 1628, 5, 432, 0, 0, 1628, 1630, 5, 399, 0, 0, 1629, 1631, 3, 248, 124, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 5, 400, 0, 0, 1633, 1634, 3, 596, 298, 0, 1634, 153, 1, 0, 0, 0, 1635, 1636, 5, 101, 0, 0, 1636, 1637, 5, 333, 0, 0, 1637, 1639, 5, 194, 0, 0, 1638, 1640, 3, 30, 15, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 5, 432, 0, 0, 1642, 155, 1, 0, 0, 0, 1643, 1644, 5, 58, 0, 0, 1644, 1645, 5, 155, 0, 0, 1645, 1646, 3, 654, 327, 0, 1646, 1647, 5, 224, 0, 0, 1647, 1648, 5, 329, 0, 0, 1648, 1649, 3, 482, 241, 0, 1649, 1650, 3, 268, 134, 0, 1650, 1651, 5, 17, 0, 0, 1651, 1655, 5, 426, 0, 0, 1652, 1653, 5, 387, 0, 0, 1653, 1654, 5, 84, 0, 0, 1654, 1656, 5, 265, 0, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1658, 5, 150, 0, 0, 1658, 1660, 3, 226, 113, 0, 1659, 1657, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1664, 1, 0, 0, 0, 1661, 1662, 5, 154, 0, 0, 1662, 1663, 5, 329, 0, 0, 1663, 1665, 3, 482, 241, 0, 1664, 1661, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1669, 1, 0, 0, 0, 1666, 1667, 5, 238, 0, 0, 1667, 1668, 5, 32, 0, 0, 1668, 1670, 3, 268, 134, 0, 1669, 1666, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1675, 1, 0, 0, 0, 1671, 1673, 3, 222, 111, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 3, 246, 123, 0, 1675, 1672, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 428, 214, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 1, 0, 0, 0, 1680, 1682, 3, 224, 112, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1684, 1, 0, 0, 0, 1683, 1685, 3, 196, 98, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 157, 1, 0, 0, 0, 1686, 1687, 5, 101, 0, 0, 1687, 1689, 5, 155, 0, 0, 1688, 1690, 3, 30, 15, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 3, 654, 327, 0, 1692, 1693, 5, 224, 0, 0, 1693, 1694, 3, 482, 241, 0, 1694, 159, 1, 0, 0, 0, 1695, 1698, 5, 58, 0, 0, 1696, 1697, 5, 228, 0, 0, 1697, 1699, 5, 278, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 5, 378, 0, 0, 1701, 1703, 3, 32, 16, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1709, 3, 488, 244, 0, 1705, 1706, 5, 399, 0, 0, 1706, 1707, 3, 308, 154, 0, 1707, 1708, 5, 400, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1705, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 196, 98, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1715, 1, 0, 0, 0, 1714, 1716, 3, 162, 81, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1719, 3, 224, 112, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 5, 17, 0, 0, 1721, 1722, 3, 384, 192, 0, 1722, 161, 1, 0, 0, 0, 1723, 1724, 5, 238, 0, 0, 1724, 1730, 5, 224, 0, 0, 1725, 1726, 5, 399, 0, 0, 1726, 1731, 3, 254, 127, 0, 1727, 1728, 5, 316, 0, 0, 1728, 1729, 5, 399, 0, 0, 1729, 1731, 3, 204, 102, 0, 1730, 1725, 1, 0, 0, 0, 1730, 1727, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 5, 400, 0, 0, 1733, 163, 1, 0, 0, 0, 1734, 1737, 3, 166, 83, 0, 1735, 1737, 3, 168, 84, 0, 1736, 1734, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 165, 1, 0, 0, 0, 1738, 1739, 5, 42, 0, 0, 1739, 1740, 5, 224, 0, 0, 1740, 1741, 5, 399, 0, 0, 1741, 1742, 3, 254, 127, 0, 1742, 1743, 5, 400, 0, 0, 1743, 167, 1, 0, 0, 0, 1744, 1745, 3, 170, 85, 0, 1745, 1746, 3, 172, 86, 0, 1746, 169, 1, 0, 0, 0, 1747, 1748, 5, 98, 0, 0, 1748, 1749, 5, 224, 0, 0, 1749, 1750, 5, 399, 0, 0, 1750, 1751, 3, 254, 127, 0, 1751, 1752, 5, 400, 0, 0, 1752, 171, 1, 0, 0, 0, 1753, 1754, 5, 315, 0, 0, 1754, 1755, 5, 224, 0, 0, 1755, 1756, 5, 399, 0, 0, 1756, 1757, 3, 254, 127, 0, 1757, 1758, 5, 400, 0, 0, 1758, 173, 1, 0, 0, 0, 1759, 1760, 5, 101, 0, 0, 1760, 1762, 5, 378, 0, 0, 1761, 1763, 3, 30, 15, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 486, 243, 0, 1765, 175, 1, 0, 0, 0, 1766, 1767, 5, 58, 0, 0, 1767, 1768, 5, 202, 0, 0, 1768, 1770, 5, 378, 0, 0, 1769, 1771, 3, 32, 16, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 3, 488, 244, 0, 1773, 1775, 3, 38, 19, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 196, 98, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 162, 81, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 164, 82, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 222, 111, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 246, 123, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1793, 3, 428, 214, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1796, 3, 224, 112, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 5, 17, 0, 0, 1798, 1799, 3, 384, 192, 0, 1799, 177, 1, 0, 0, 0, 1800, 1801, 5, 101, 0, 0, 1801, 1802, 5, 202, 0, 0, 1802, 1804, 5, 378, 0, 0, 1803, 1805, 3, 30, 15, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 486, 243, 0, 1807, 179, 1, 0, 0, 0, 1808, 1809, 5, 58, 0, 0, 1809, 1810, 5, 293, 0, 0, 1810, 1811, 5, 258, 0, 0, 1811, 1812, 3, 654, 327, 0, 1812, 1814, 3, 188, 94, 0, 1813, 1815, 3, 190, 95, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1818, 3, 272, 136, 0, 1817, 1816, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 3, 192, 96, 0, 1820, 181, 1, 0, 0, 0, 1821, 1822, 5, 101, 0, 0, 1822, 1823, 5, 293, 0, 0, 1823, 1824, 5, 258, 0, 0, 1824, 1825, 3, 654, 327, 0, 1825, 183, 1, 0, 0, 0, 1826, 1827, 5, 9, 0, 0, 1827, 1828, 5, 293, 0, 0, 1828, 1829, 5, 258, 0, 0, 1829, 1830, 3, 654, 327, 0, 1830, 1831, 3, 186, 93, 0, 1831, 185, 1, 0, 0, 0, 1832, 1838, 3, 188, 94, 0, 1833, 1838, 3, 190, 95, 0, 1834, 1838, 3, 272, 136, 0, 1835, 1838, 3, 192, 96, 0, 1836, 1838, 5, 115, 0, 0, 1837, 1832, 1, 0, 0, 0, 1837, 1833, 1, 0, 0, 0, 1837, 1834, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1836, 1, 0, 0, 0, 1838, 187, 1, 0, 0, 0, 1839, 1840, 5, 59, 0, 0, 1840, 1855, 5, 426, 0, 0, 1841, 1843, 5, 111, 0, 0, 1842, 1844, 5, 431, 0, 0, 1843, 1842, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1852, 3, 594, 297, 0, 1846, 1850, 5, 20, 0, 0, 1847, 1848, 5, 223, 0, 0, 1848, 1850, 5, 32, 0, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 5, 426, 0, 0, 1852, 1849, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1855, 1, 0, 0, 0, 1854, 1839, 1, 0, 0, 0, 1854, 1841, 1, 0, 0, 0, 1855, 189, 1, 0, 0, 0, 1856, 1857, 5, 116, 0, 0, 1857, 1858, 5, 17, 0, 0, 1858, 1859, 5, 426, 0, 0, 1859, 191, 1, 0, 0, 0, 1860, 1862, 5, 85, 0, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 5, 17, 0, 0, 1864, 1865, 3, 2, 1, 0, 1865, 193, 1, 0, 0, 0, 1866, 1869, 3, 654, 327, 0, 1867, 1869, 5, 426, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1867, 1, 0, 0, 0, 1869, 195, 1, 0, 0, 0, 1870, 1871, 5, 47, 0, 0, 1871, 1872, 5, 426, 0, 0, 1872, 197, 1, 0, 0, 0, 1873, 1874, 5, 183, 0, 0, 1874, 1875, 5, 431, 0, 0, 1875, 199, 1, 0, 0, 0, 1876, 1877, 5, 238, 0, 0, 1877, 1886, 5, 32, 0, 0, 1878, 1881, 5, 399, 0, 0, 1879, 1882, 3, 202, 101, 0, 1880, 1882, 3, 254, 127, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1882, 1887, 1, 0, 0, 0, 1883, 1884, 5, 316, 0, 0, 1884, 1885, 5, 399, 0, 0, 1885, 1887, 3, 204, 102, 0, 1886, 1878, 1, 0, 0, 0, 1886, 1883, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 5, 400, 0, 0, 1889, 201, 1, 0, 0, 0, 1890, 1895, 3, 320, 160, 0, 1891, 1892, 5, 397, 0, 0, 1892, 1894, 3, 320, 160, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1897, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 203, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1903, 3, 206, 103, 0, 1899, 1900, 5, 397, 0, 0, 1900, 1902, 3, 206, 103, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 205, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1925, 3, 256, 128, 0, 1907, 1912, 3, 682, 341, 0, 1908, 1912, 3, 684, 342, 0, 1909, 1912, 3, 688, 344, 0, 1910, 1912, 3, 690, 345, 0, 1911, 1907, 1, 0, 0, 0, 1911, 1908, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1914, 5, 399, 0, 0, 1914, 1915, 3, 256, 128, 0, 1915, 1916, 5, 400, 0, 0, 1916, 1925, 1, 0, 0, 0, 1917, 1918, 7, 15, 0, 0, 1918, 1919, 5, 399, 0, 0, 1919, 1920, 5, 431, 0, 0, 1920, 1921, 5, 397, 0, 0, 1921, 1922, 3, 256, 128, 0, 1922, 1923, 5, 400, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1906, 1, 0, 0, 0, 1924, 1911, 1, 0, 0, 0, 1924, 1917, 1, 0, 0, 0, 1925, 207, 1, 0, 0, 0, 1926, 1927, 5, 42, 0, 0, 1927, 1928, 5, 32, 0, 0, 1928, 1929, 5, 399, 0, 0, 1929, 1930, 3, 254, 127, 0, 1930, 1937, 5, 400, 0, 0, 1931, 1932, 5, 315, 0, 0, 1932, 1933, 5, 32, 0, 0, 1933, 1934, 5, 399, 0, 0, 1934, 1935, 3, 266, 133, 0, 1935, 1936, 5, 400, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1931, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 5, 166, 0, 0, 1940, 1941, 5, 431, 0, 0, 1941, 1942, 5, 31, 0, 0, 1942, 209, 1, 0, 0, 0, 1943, 1944, 5, 310, 0, 0, 1944, 1945, 5, 32, 0, 0, 1945, 1946, 5, 399, 0, 0, 1946, 1947, 3, 254, 127, 0, 1947, 1948, 5, 400, 0, 0, 1948, 1949, 5, 224, 0, 0, 1949, 1950, 5, 399, 0, 0, 1950, 1951, 3, 294, 147, 0, 1951, 1953, 5, 400, 0, 0, 1952, 1954, 3, 40, 20, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 211, 1, 0, 0, 0, 1955, 1958, 3, 218, 109, 0, 1956, 1958, 3, 220, 110, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1958, 213, 1, 0, 0, 0, 1959, 1960, 5, 266, 0, 0, 1960, 1961, 5, 426, 0, 0, 1961, 215, 1, 0, 0, 0, 1962, 1963, 5, 267, 0, 0, 1963, 1964, 5, 426, 0, 0, 1964, 217, 1, 0, 0, 0, 1965, 1966, 5, 291, 0, 0, 1966, 1967, 5, 137, 0, 0, 1967, 1968, 5, 301, 0, 0, 1968, 1972, 5, 426, 0, 0, 1969, 1970, 5, 387, 0, 0, 1970, 1971, 5, 302, 0, 0, 1971, 1973, 3, 226, 113, 0, 1972, 1969, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 219, 1, 0, 0, 0, 1974, 1975, 5, 291, 0, 0, 1975, 1976, 5, 137, 0, 0, 1976, 1978, 5, 87, 0, 0, 1977, 1979, 3, 236, 118, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 238, 119, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 240, 120, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 242, 121, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1990, 1, 0, 0, 0, 1989, 1991, 3, 244, 122, 0, 1990, 1989, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 221, 1, 0, 0, 0, 1992, 1995, 3, 220, 110, 0, 1993, 1995, 3, 218, 109, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1993, 1, 0, 0, 0, 1995, 223, 1, 0, 0, 0, 1996, 1997, 5, 332, 0, 0, 1997, 1998, 3, 226, 113, 0, 1998, 225, 1, 0, 0, 0, 1999, 2000, 5, 399, 0, 0, 2000, 2001, 3, 228, 114, 0, 2001, 2002, 5, 400, 0, 0, 2002, 227, 1, 0, 0, 0, 2003, 2013, 3, 232, 116, 0, 2004, 2009, 5, 426, 0, 0, 2005, 2006, 5, 397, 0, 0, 2006, 2008, 5, 426, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2013, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2003, 1, 0, 0, 0, 2012, 2004, 1, 0, 0, 0, 2013, 229, 1, 0, 0, 0, 2014, 2015, 5, 399, 0, 0, 2015, 2016, 3, 232, 116, 0, 2016, 2017, 5, 400, 0, 0, 2017, 231, 1, 0, 0, 0, 2018, 2023, 3, 234, 117, 0, 2019, 2020, 5, 397, 0, 0, 2020, 2022, 3, 234, 117, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 233, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2027, 5, 426, 0, 0, 2027, 2028, 5, 405, 0, 0, 2028, 2029, 5, 426, 0, 0, 2029, 235, 1, 0, 0, 0, 2030, 2031, 5, 127, 0, 0, 2031, 2032, 5, 334, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2037, 5, 426, 0, 0, 2034, 2035, 5, 110, 0, 0, 2035, 2036, 5, 32, 0, 0, 2036, 2038, 5, 426, 0, 0, 2037, 2034, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 237, 1, 0, 0, 0, 2039, 2040, 5, 44, 0, 0, 2040, 2041, 5, 169, 0, 0, 2041, 2042, 5, 334, 0, 0, 2042, 2043, 5, 32, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 239, 1, 0, 0, 0, 2045, 2046, 5, 198, 0, 0, 2046, 2047, 5, 174, 0, 0, 2047, 2048, 5, 334, 0, 0, 2048, 2049, 5, 32, 0, 0, 2049, 2050, 5, 426, 0, 0, 2050, 241, 1, 0, 0, 0, 2051, 2052, 5, 186, 0, 0, 2052, 2053, 5, 334, 0, 0, 2053, 2054, 5, 32, 0, 0, 2054, 2055, 5, 426, 0, 0, 2055, 243, 1, 0, 0, 0, 2056, 2057, 5, 219, 0, 0, 2057, 2058, 5, 85, 0, 0, 2058, 2059, 5, 17, 0, 0, 2059, 2060, 5, 426, 0, 0, 2060, 245, 1, 0, 0, 0, 2061, 2062, 5, 321, 0, 0, 2062, 2063, 5, 17, 0, 0, 2063, 2064, 5, 160, 0, 0, 2064, 2065, 5, 426, 0, 0, 2065, 2066, 5, 233, 0, 0, 2066, 2071, 5, 426, 0, 0, 2067, 2068, 5, 159, 0, 0, 2068, 2069, 5, 426, 0, 0, 2069, 2070, 5, 232, 0, 0, 2070, 2072, 5, 426, 0, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2103, 1, 0, 0, 0, 2073, 2074, 5, 321, 0, 0, 2074, 2075, 5, 32, 0, 0, 2075, 2079, 5, 426, 0, 0, 2076, 2077, 5, 387, 0, 0, 2077, 2078, 5, 302, 0, 0, 2078, 2080, 3, 226, 113, 0, 2079, 2076, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2084, 1, 0, 0, 0, 2081, 2082, 5, 321, 0, 0, 2082, 2083, 5, 17, 0, 0, 2083, 2085, 3, 654, 327, 0, 2084, 2081, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2103, 1, 0, 0, 0, 2086, 2087, 5, 321, 0, 0, 2087, 2088, 5, 32, 0, 0, 2088, 2092, 3, 654, 327, 0, 2089, 2090, 5, 387, 0, 0, 2090, 2091, 5, 302, 0, 0, 2091, 2093, 3, 226, 113, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2097, 1, 0, 0, 0, 2094, 2095, 5, 321, 0, 0, 2095, 2096, 5, 17, 0, 0, 2096, 2098, 3, 654, 327, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2103, 1, 0, 0, 0, 2099, 2100, 5, 321, 0, 0, 2100, 2101, 5, 17, 0, 0, 2101, 2103, 3, 654, 327, 0, 2102, 2061, 1, 0, 0, 0, 2102, 2073, 1, 0, 0, 0, 2102, 2086, 1, 0, 0, 0, 2102, 2099, 1, 0, 0, 0, 2103, 247, 1, 0, 0, 0, 2104, 2109, 3, 314, 157, 0, 2105, 2106, 5, 397, 0, 0, 2106, 2108, 3, 314, 157, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 249, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2117, 3, 316, 158, 0, 2113, 2114, 5, 397, 0, 0, 2114, 2116, 3, 316, 158, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 251, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2125, 3, 344, 172, 0, 2121, 2122, 5, 397, 0, 0, 2122, 2124, 3, 344, 172, 0, 2123, 2121, 1, 0, 0, 0, 2124, 2127, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 253, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2128, 2133, 3, 256, 128, 0, 2129, 2130, 5, 397, 0, 0, 2130, 2132, 3, 256, 128, 0, 2131, 2129, 1, 0, 0, 0, 2132, 2135, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 255, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2136, 2140, 3, 702, 351, 0, 2137, 2138, 4, 128, 0, 0, 2138, 2140, 3, 698, 349, 0, 2139, 2136, 1, 0, 0, 0, 2139, 2137, 1, 0, 0, 0, 2140, 257, 1, 0, 0, 0, 2141, 2142, 3, 700, 350, 0, 2142, 259, 1, 0, 0, 0, 2143, 2147, 3, 702, 351, 0, 2144, 2145, 4, 130, 1, 0, 2145, 2147, 3, 698, 349, 0, 2146, 2143, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2147, 261, 1, 0, 0, 0, 2148, 2149, 3, 654, 327, 0, 2149, 263, 1, 0, 0, 0, 2150, 2160, 3, 256, 128, 0, 2151, 2156, 5, 395, 0, 0, 2152, 2157, 5, 104, 0, 0, 2153, 2157, 5, 175, 0, 0, 2154, 2157, 5, 375, 0, 0, 2155, 2157, 3, 654, 327, 0, 2156, 2152, 1, 0, 0, 0, 2156, 2153, 1, 0, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2151, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 265, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2168, 3, 306, 153, 0, 2164, 2165, 5, 397, 0, 0, 2165, 2167, 3, 306, 153, 0, 2166, 2164, 1, 0, 0, 0, 2167, 2170, 1, 0, 0, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 267, 1, 0, 0, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2172, 5, 399, 0, 0, 2172, 2173, 3, 254, 127, 0, 2173, 2174, 5, 400, 0, 0, 2174, 269, 1, 0, 0, 0, 2175, 2177, 3, 272, 136, 0, 2176, 2178, 3, 274, 137, 0, 2177, 2176, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2181, 3, 276, 138, 0, 2180, 2175, 1, 0, 0, 0, 2180, 2179, 1, 0, 0, 0, 2181, 271, 1, 0, 0, 0, 2182, 2185, 3, 678, 339, 0, 2183, 2185, 3, 680, 340, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2183, 1, 0, 0, 0, 2185, 273, 1, 0, 0, 0, 2186, 2187, 7, 16, 0, 0, 2187, 275, 1, 0, 0, 0, 2188, 2192, 5, 109, 0, 0, 2189, 2190, 5, 216, 0, 0, 2190, 2192, 5, 109, 0, 0, 2191, 2188, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 277, 1, 0, 0, 0, 2193, 2194, 7, 17, 0, 0, 2194, 279, 1, 0, 0, 0, 2195, 2196, 5, 55, 0, 0, 2196, 2198, 3, 654, 327, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2201, 3, 284, 142, 0, 2200, 2202, 3, 340, 170, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 281, 1, 0, 0, 0, 2203, 2204, 5, 55, 0, 0, 2204, 2205, 3, 654, 327, 0, 2205, 2207, 3, 284, 142, 0, 2206, 2208, 3, 342, 171, 0, 2207, 2206, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 283, 1, 0, 0, 0, 2209, 2212, 3, 286, 143, 0, 2210, 2212, 3, 288, 144, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2210, 1, 0, 0, 0, 2212, 285, 1, 0, 0, 0, 2213, 2214, 3, 338, 169, 0, 2214, 2215, 3, 268, 134, 0, 2215, 287, 1, 0, 0, 0, 2216, 2217, 5, 40, 0, 0, 2217, 2218, 5, 399, 0, 0, 2218, 2219, 3, 596, 298, 0, 2219, 2220, 5, 400, 0, 0, 2220, 289, 1, 0, 0, 0, 2221, 2222, 5, 55, 0, 0, 2222, 2224, 3, 654, 327, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 5, 136, 0, 0, 2226, 2227, 5, 173, 0, 0, 2227, 2228, 3, 268, 134, 0, 2228, 2229, 5, 269, 0, 0, 2229, 2230, 3, 482, 241, 0, 2230, 2232, 3, 268, 134, 0, 2231, 2233, 3, 340, 170, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 291, 1, 0, 0, 0, 2234, 2235, 5, 55, 0, 0, 2235, 2236, 3, 654, 327, 0, 2236, 2237, 5, 136, 0, 0, 2237, 2238, 5, 173, 0, 0, 2238, 2239, 3, 268, 134, 0, 2239, 2240, 5, 269, 0, 0, 2240, 2241, 3, 482, 241, 0, 2241, 2243, 3, 268, 134, 0, 2242, 2244, 3, 342, 171, 0, 2243, 2242, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 293, 1, 0, 0, 0, 2245, 2248, 3, 300, 150, 0, 2246, 2248, 3, 296, 148, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2246, 1, 0, 0, 0, 2248, 295, 1, 0, 0, 0, 2249, 2254, 3, 298, 149, 0, 2250, 2251, 5, 397, 0, 0, 2251, 2253, 3, 298, 149, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2256, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 297, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2258, 5, 399, 0, 0, 2258, 2259, 3, 300, 150, 0, 2259, 2260, 5, 400, 0, 0, 2260, 299, 1, 0, 0, 0, 2261, 2266, 3, 588, 294, 0, 2262, 2263, 5, 397, 0, 0, 2263, 2265, 3, 588, 294, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2268, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 301, 1, 0, 0, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2270, 7, 18, 0, 0, 2270, 303, 1, 0, 0, 0, 2271, 2272, 5, 220, 0, 0, 2272, 2273, 7, 19, 0, 0, 2273, 305, 1, 0, 0, 0, 2274, 2276, 3, 256, 128, 0, 2275, 2277, 3, 302, 151, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2280, 3, 304, 152, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 307, 1, 0, 0, 0, 2281, 2286, 3, 310, 155, 0, 2282, 2283, 5, 397, 0, 0, 2283, 2285, 3, 310, 155, 0, 2284, 2282, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 309, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 3, 262, 131, 0, 2290, 2291, 5, 47, 0, 0, 2291, 2293, 5, 426, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 311, 1, 0, 0, 0, 2294, 2297, 3, 256, 128, 0, 2295, 2297, 3, 596, 298, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2295, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2300, 3, 302, 151, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 3, 304, 152, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 313, 1, 0, 0, 0, 2304, 2305, 3, 262, 131, 0, 2305, 2308, 3, 346, 173, 0, 2306, 2307, 5, 47, 0, 0, 2307, 2309, 5, 426, 0, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 315, 1, 0, 0, 0, 2310, 2313, 3, 318, 159, 0, 2311, 2313, 3, 320, 160, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2311, 1, 0, 0, 0, 2313, 317, 1, 0, 0, 0, 2314, 2317, 3, 290, 145, 0, 2315, 2317, 3, 280, 140, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2317, 319, 1, 0, 0, 0, 2318, 2319, 3, 262, 131, 0, 2319, 2321, 3, 346, 173, 0, 2320, 2322, 3, 322, 161, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2324, 5, 47, 0, 0, 2324, 2326, 5, 426, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 321, 1, 0, 0, 0, 2327, 2330, 3, 324, 162, 0, 2328, 2330, 3, 326, 163, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2328, 1, 0, 0, 0, 2330, 323, 1, 0, 0, 0, 2331, 2332, 5, 55, 0, 0, 2332, 2334, 3, 654, 327, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2336, 5, 269, 0, 0, 2336, 2337, 3, 482, 241, 0, 2337, 2338, 5, 399, 0, 0, 2338, 2339, 3, 256, 128, 0, 2339, 2341, 5, 400, 0, 0, 2340, 2342, 3, 340, 170, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 325, 1, 0, 0, 0, 2343, 2344, 5, 55, 0, 0, 2344, 2346, 3, 654, 327, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2349, 3, 334, 167, 0, 2348, 2350, 3, 340, 170, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 327, 1, 0, 0, 0, 2351, 2354, 3, 330, 165, 0, 2352, 2354, 3, 332, 166, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 329, 1, 0, 0, 0, 2355, 2356, 5, 55, 0, 0, 2356, 2358, 3, 654, 327, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 5, 269, 0, 0, 2360, 2361, 3, 482, 241, 0, 2361, 2362, 5, 399, 0, 0, 2362, 2363, 3, 256, 128, 0, 2363, 2365, 5, 400, 0, 0, 2364, 2366, 3, 342, 171, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 331, 1, 0, 0, 0, 2367, 2368, 5, 55, 0, 0, 2368, 2370, 3, 654, 327, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2373, 3, 334, 167, 0, 2372, 2374, 3, 342, 171, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 333, 1, 0, 0, 0, 2375, 2376, 5, 216, 0, 0, 2376, 2382, 5, 219, 0, 0, 2377, 2378, 5, 83, 0, 0, 2378, 2382, 3, 336, 168, 0, 2379, 2382, 3, 288, 144, 0, 2380, 2382, 3, 338, 169, 0, 2381, 2375, 1, 0, 0, 0, 2381, 2377, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2381, 2380, 1, 0, 0, 0, 2382, 335, 1, 0, 0, 0, 2383, 2387, 3, 588, 294, 0, 2384, 2387, 3, 566, 283, 0, 2385, 2387, 3, 576, 288, 0, 2386, 2383, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2385, 1, 0, 0, 0, 2387, 337, 1, 0, 0, 0, 2388, 2389, 5, 251, 0, 0, 2389, 2392, 5, 173, 0, 0, 2390, 2392, 5, 358, 0, 0, 2391, 2388, 1, 0, 0, 0, 2391, 2390, 1, 0, 0, 0, 2392, 339, 1, 0, 0, 0, 2393, 2395, 3, 270, 135, 0, 2394, 2396, 3, 278, 139, 0, 2395, 2394, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 341, 1, 0, 0, 0, 2397, 2399, 3, 270, 135, 0, 2398, 2400, 3, 278, 139, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 343, 1, 0, 0, 0, 2401, 2402, 3, 262, 131, 0, 2402, 2403, 5, 396, 0, 0, 2403, 2406, 3, 346, 173, 0, 2404, 2405, 5, 47, 0, 0, 2405, 2407, 5, 426, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 345, 1, 0, 0, 0, 2408, 2409, 3, 350, 175, 0, 2409, 347, 1, 0, 0, 0, 2410, 2415, 3, 346, 173, 0, 2411, 2412, 5, 397, 0, 0, 2412, 2414, 3, 346, 173, 0, 2413, 2411, 1, 0, 0, 0, 2414, 2417, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 349, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2418, 2424, 3, 352, 176, 0, 2419, 2424, 3, 354, 177, 0, 2420, 2424, 3, 356, 178, 0, 2421, 2424, 3, 358, 179, 0, 2422, 2424, 3, 360, 180, 0, 2423, 2418, 1, 0, 0, 0, 2423, 2419, 1, 0, 0, 0, 2423, 2420, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2423, 2422, 1, 0, 0, 0, 2424, 351, 1, 0, 0, 0, 2425, 2463, 5, 340, 0, 0, 2426, 2463, 5, 311, 0, 0, 2427, 2463, 5, 162, 0, 0, 2428, 2463, 5, 163, 0, 0, 2429, 2463, 5, 26, 0, 0, 2430, 2463, 5, 28, 0, 0, 2431, 2463, 5, 131, 0, 0, 2432, 2463, 5, 264, 0, 0, 2433, 2435, 5, 100, 0, 0, 2434, 2436, 5, 248, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2463, 1, 0, 0, 0, 2437, 2463, 5, 71, 0, 0, 2438, 2463, 5, 72, 0, 0, 2439, 2463, 5, 337, 0, 0, 2440, 2463, 5, 338, 0, 0, 2441, 2442, 5, 337, 0, 0, 2442, 2443, 5, 387, 0, 0, 2443, 2444, 5, 188, 0, 0, 2444, 2445, 5, 336, 0, 0, 2445, 2463, 5, 394, 0, 0, 2446, 2463, 5, 323, 0, 0, 2447, 2463, 5, 27, 0, 0, 2448, 2456, 3, 696, 348, 0, 2449, 2450, 5, 399, 0, 0, 2450, 2453, 5, 431, 0, 0, 2451, 2452, 5, 397, 0, 0, 2452, 2454, 5, 431, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 5, 400, 0, 0, 2456, 2449, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2463, 1, 0, 0, 0, 2458, 2459, 7, 20, 0, 0, 2459, 2460, 5, 399, 0, 0, 2460, 2461, 5, 431, 0, 0, 2461, 2463, 5, 400, 0, 0, 2462, 2425, 1, 0, 0, 0, 2462, 2426, 1, 0, 0, 0, 2462, 2427, 1, 0, 0, 0, 2462, 2428, 1, 0, 0, 0, 2462, 2429, 1, 0, 0, 0, 2462, 2430, 1, 0, 0, 0, 2462, 2431, 1, 0, 0, 0, 2462, 2432, 1, 0, 0, 0, 2462, 2433, 1, 0, 0, 0, 2462, 2437, 1, 0, 0, 0, 2462, 2438, 1, 0, 0, 0, 2462, 2439, 1, 0, 0, 0, 2462, 2440, 1, 0, 0, 0, 2462, 2441, 1, 0, 0, 0, 2462, 2446, 1, 0, 0, 0, 2462, 2447, 1, 0, 0, 0, 2462, 2448, 1, 0, 0, 0, 2462, 2458, 1, 0, 0, 0, 2463, 353, 1, 0, 0, 0, 2464, 2465, 5, 16, 0, 0, 2465, 2466, 5, 409, 0, 0, 2466, 2467, 3, 350, 175, 0, 2467, 2468, 5, 411, 0, 0, 2468, 355, 1, 0, 0, 0, 2469, 2470, 5, 324, 0, 0, 2470, 2471, 5, 409, 0, 0, 2471, 2472, 3, 252, 126, 0, 2472, 2473, 5, 411, 0, 0, 2473, 357, 1, 0, 0, 0, 2474, 2475, 5, 198, 0, 0, 2475, 2476, 5, 409, 0, 0, 2476, 2477, 3, 352, 176, 0, 2477, 2478, 5, 397, 0, 0, 2478, 2479, 3, 350, 175, 0, 2479, 2480, 5, 411, 0, 0, 2480, 359, 1, 0, 0, 0, 2481, 2482, 5, 357, 0, 0, 2482, 2483, 5, 409, 0, 0, 2483, 2484, 3, 348, 174, 0, 2484, 2485, 5, 411, 0, 0, 2485, 361, 1, 0, 0, 0, 2486, 2488, 7, 21, 0, 0, 2487, 2489, 7, 22, 0, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 363, 1, 0, 0, 0, 2490, 2492, 3, 368, 184, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 3, 366, 183, 0, 2494, 365, 1, 0, 0, 0, 2495, 2498, 3, 372, 186, 0, 2496, 2498, 3, 376, 188, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2496, 1, 0, 0, 0, 2498, 367, 1, 0, 0, 0, 2499, 2500, 5, 387, 0, 0, 2500, 2505, 3, 370, 185, 0, 2501, 2502, 5, 397, 0, 0, 2502, 2504, 3, 370, 185, 0, 2503, 2501, 1, 0, 0, 0, 2504, 2507, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 369, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2508, 2513, 3, 654, 327, 0, 2509, 2510, 5, 399, 0, 0, 2510, 2511, 3, 254, 127, 0, 2511, 2512, 5, 400, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2509, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 5, 17, 0, 0, 2516, 2517, 5, 399, 0, 0, 2517, 2518, 3, 364, 182, 0, 2518, 2519, 5, 400, 0, 0, 2519, 371, 1, 0, 0, 0, 2520, 2526, 3, 374, 187, 0, 2521, 2522, 3, 362, 181, 0, 2522, 2523, 3, 374, 187, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2521, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 373, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2530, 3, 452, 226, 0, 2530, 2531, 3, 386, 193, 0, 2531, 2533, 3, 508, 254, 0, 2532, 2534, 3, 466, 233, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 500, 250, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 534, 267, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 542, 271, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 526, 263, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 544, 272, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 556, 278, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 560, 280, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 562, 281, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 564, 282, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 390, 195, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2601, 1, 0, 0, 0, 2565, 2566, 3, 452, 226, 0, 2566, 2568, 3, 508, 254, 0, 2567, 2569, 3, 466, 233, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 500, 250, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 534, 267, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 542, 271, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 526, 263, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 544, 272, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 556, 278, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 560, 280, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2592, 1, 0, 0, 0, 2591, 2593, 3, 562, 281, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 564, 282, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2599, 3, 390, 195, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2529, 1, 0, 0, 0, 2600, 2565, 1, 0, 0, 0, 2601, 375, 1, 0, 0, 0, 2602, 2603, 3, 386, 193, 0, 2603, 2604, 3, 380, 190, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2607, 3, 380, 190, 0, 2606, 2602, 1, 0, 0, 0, 2606, 2605, 1, 0, 0, 0, 2607, 377, 1, 0, 0, 0, 2608, 2610, 3, 508, 254, 0, 2609, 2611, 3, 452, 226, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 500, 250, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2617, 3, 534, 267, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 542, 271, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2623, 3, 526, 263, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2625, 1, 0, 0, 0, 2624, 2626, 3, 544, 272, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2633, 1, 0, 0, 0, 2627, 2628, 5, 399, 0, 0, 2628, 2629, 3, 380, 190, 0, 2629, 2630, 5, 400, 0, 0, 2630, 2633, 1, 0, 0, 0, 2631, 2633, 3, 502, 251, 0, 2632, 2608, 1, 0, 0, 0, 2632, 2627, 1, 0, 0, 0, 2632, 2631, 1, 0, 0, 0, 2633, 379, 1, 0, 0, 0, 2634, 2636, 3, 378, 189, 0, 2635, 2637, 3, 382, 191, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 556, 278, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 560, 280, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 562, 281, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 564, 282, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2652, 3, 390, 195, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 381, 1, 0, 0, 0, 2653, 2654, 3, 362, 181, 0, 2654, 2655, 3, 378, 189, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2653, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 383, 1, 0, 0, 0, 2660, 2662, 3, 368, 184, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 3, 380, 190, 0, 2664, 385, 1, 0, 0, 0, 2665, 2682, 5, 161, 0, 0, 2666, 2667, 5, 235, 0, 0, 2667, 2669, 3, 388, 194, 0, 2668, 2670, 3, 32, 16, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2683, 1, 0, 0, 0, 2671, 2673, 5, 166, 0, 0, 2672, 2674, 5, 329, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2680, 3, 640, 320, 0, 2676, 2677, 5, 399, 0, 0, 2677, 2678, 3, 254, 127, 0, 2678, 2679, 5, 400, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2676, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2666, 1, 0, 0, 0, 2682, 2671, 1, 0, 0, 0, 2683, 387, 1, 0, 0, 0, 2684, 2686, 5, 188, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 5, 93, 0, 0, 2688, 2690, 5, 426, 0, 0, 2689, 2691, 3, 222, 111, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2693, 1, 0, 0, 0, 2692, 2694, 3, 246, 123, 0, 2693, 2692, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2698, 1, 0, 0, 0, 2695, 2696, 5, 329, 0, 0, 2696, 2698, 3, 640, 320, 0, 2697, 2685, 1, 0, 0, 0, 2697, 2695, 1, 0, 0, 0, 2698, 389, 1, 0, 0, 0, 2699, 2708, 5, 185, 0, 0, 2700, 2701, 5, 431, 0, 0, 2701, 2703, 5, 397, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2709, 5, 431, 0, 0, 2705, 2706, 5, 431, 0, 0, 2706, 2707, 5, 223, 0, 0, 2707, 2709, 5, 431, 0, 0, 2708, 2702, 1, 0, 0, 0, 2708, 2705, 1, 0, 0, 0, 2709, 391, 1, 0, 0, 0, 2710, 2711, 3, 256, 128, 0, 2711, 2712, 5, 405, 0, 0, 2712, 2713, 3, 394, 197, 0, 2713, 393, 1, 0, 0, 0, 2714, 2717, 5, 83, 0, 0, 2715, 2717, 3, 606, 303, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2715, 1, 0, 0, 0, 2717, 395, 1, 0, 0, 0, 2718, 2719, 5, 304, 0, 0, 2719, 2724, 3, 392, 196, 0, 2720, 2721, 5, 397, 0, 0, 2721, 2723, 3, 392, 196, 0, 2722, 2720, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 397, 1, 0, 0, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2728, 5, 318, 0, 0, 2728, 2737, 5, 344, 0, 0, 2729, 2734, 3, 400, 200, 0, 2730, 2731, 5, 397, 0, 0, 2731, 2733, 3, 400, 200, 0, 2732, 2730, 1, 0, 0, 0, 2733, 2736, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2738, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2751, 1, 0, 0, 0, 2739, 2741, 5, 48, 0, 0, 2740, 2742, 5, 389, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2751, 1, 0, 0, 0, 2743, 2745, 5, 289, 0, 0, 2744, 2746, 5, 389, 0, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2751, 1, 0, 0, 0, 2747, 2748, 5, 304, 0, 0, 2748, 2749, 5, 22, 0, 0, 2749, 2751, 7, 23, 0, 0, 2750, 2727, 1, 0, 0, 0, 2750, 2739, 1, 0, 0, 0, 2750, 2743, 1, 0, 0, 0, 2750, 2747, 1, 0, 0, 0, 2751, 399, 1, 0, 0, 0, 2752, 2753, 5, 168, 0, 0, 2753, 2754, 5, 182, 0, 0, 2754, 2758, 5, 312, 0, 0, 2755, 2756, 5, 261, 0, 0, 2756, 2758, 7, 24, 0, 0, 2757, 2752, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2758, 401, 1, 0, 0, 0, 2759, 2762, 3, 406, 203, 0, 2760, 2762, 3, 408, 204, 0, 2761, 2759, 1, 0, 0, 0, 2761, 2760, 1, 0, 0, 0, 2762, 2765, 1, 0, 0, 0, 2763, 2761, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2767, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2766, 2768, 3, 404, 202, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 403, 1, 0, 0, 0, 2769, 2770, 5, 383, 0, 0, 2770, 2771, 5, 216, 0, 0, 2771, 2774, 5, 201, 0, 0, 2772, 2773, 5, 11, 0, 0, 2773, 2775, 3, 596, 298, 0, 2774, 2772, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 5, 335, 0, 0, 2777, 2779, 5, 161, 0, 0, 2778, 2780, 3, 268, 134, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 5, 374, 0, 0, 2782, 2783, 3, 552, 276, 0, 2783, 405, 1, 0, 0, 0, 2784, 2785, 5, 383, 0, 0, 2785, 2786, 5, 201, 0, 0, 2786, 2787, 5, 11, 0, 0, 2787, 2788, 3, 596, 298, 0, 2788, 2792, 5, 335, 0, 0, 2789, 2790, 5, 365, 0, 0, 2790, 2793, 3, 396, 198, 0, 2791, 2793, 5, 86, 0, 0, 2792, 2789, 1, 0, 0, 0, 2792, 2791, 1, 0, 0, 0, 2793, 407, 1, 0, 0, 0, 2794, 2795, 5, 383, 0, 0, 2795, 2796, 5, 201, 0, 0, 2796, 2800, 5, 335, 0, 0, 2797, 2798, 5, 365, 0, 0, 2798, 2801, 3, 396, 198, 0, 2799, 2801, 5, 86, 0, 0, 2800, 2797, 1, 0, 0, 0, 2800, 2799, 1, 0, 0, 0, 2801, 409, 1, 0, 0, 0, 2802, 2803, 5, 246, 0, 0, 2803, 2804, 5, 426, 0, 0, 2804, 411, 1, 0, 0, 0, 2805, 2806, 5, 352, 0, 0, 2806, 2807, 5, 426, 0, 0, 2807, 413, 1, 0, 0, 0, 2808, 2809, 5, 320, 0, 0, 2809, 2810, 5, 426, 0, 0, 2810, 415, 1, 0, 0, 0, 2811, 2842, 5, 9, 0, 0, 2812, 2813, 5, 329, 0, 0, 2813, 2814, 3, 482, 241, 0, 2814, 2815, 3, 418, 209, 0, 2815, 2843, 1, 0, 0, 0, 2816, 2817, 5, 378, 0, 0, 2817, 2819, 3, 486, 243, 0, 2818, 2820, 5, 17, 0, 0, 2819, 2818, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2822, 3, 422, 211, 0, 2822, 2843, 1, 0, 0, 0, 2823, 2824, 5, 202, 0, 0, 2824, 2825, 5, 378, 0, 0, 2825, 2829, 3, 486, 243, 0, 2826, 2830, 3, 36, 18, 0, 2827, 2830, 3, 38, 19, 0, 2828, 2830, 5, 265, 0, 0, 2829, 2826, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2828, 1, 0, 0, 0, 2830, 2843, 1, 0, 0, 0, 2831, 2832, 3, 70, 35, 0, 2832, 2833, 3, 424, 212, 0, 2833, 2843, 1, 0, 0, 0, 2834, 2835, 5, 69, 0, 0, 2835, 2843, 3, 426, 213, 0, 2836, 2837, 5, 155, 0, 0, 2837, 2838, 3, 654, 327, 0, 2838, 2839, 5, 224, 0, 0, 2839, 2840, 3, 640, 320, 0, 2840, 2841, 5, 265, 0, 0, 2841, 2843, 1, 0, 0, 0, 2842, 2812, 1, 0, 0, 0, 2842, 2816, 1, 0, 0, 0, 2842, 2823, 1, 0, 0, 0, 2842, 2831, 1, 0, 0, 0, 2842, 2834, 1, 0, 0, 0, 2842, 2836, 1, 0, 0, 0, 2843, 417, 1, 0, 0, 0, 2844, 2845, 5, 274, 0, 0, 2845, 2846, 5, 341, 0, 0, 2846, 2934, 3, 484, 242, 0, 2847, 2848, 5, 102, 0, 0, 2848, 2934, 5, 239, 0, 0, 2849, 2934, 3, 430, 215, 0, 2850, 2852, 5, 4, 0, 0, 2851, 2853, 3, 32, 16, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2858, 1, 0, 0, 0, 2854, 2856, 3, 642, 321, 0, 2855, 2857, 3, 428, 214, 0, 2856, 2855, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2854, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2934, 1, 0, 0, 0, 2862, 2866, 5, 342, 0, 0, 2863, 2865, 3, 642, 321, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2868, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2934, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2873, 5, 15, 0, 0, 2870, 2872, 3, 642, 321, 0, 2871, 2870, 1, 0, 0, 0, 2872, 2875, 1, 0, 0, 0, 2873, 2871, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2934, 1, 0, 0, 0, 2875, 2873, 1, 0, 0, 0, 2876, 2880, 5, 353, 0, 0, 2877, 2879, 3, 642, 321, 0, 2878, 2877, 1, 0, 0, 0, 2879, 2882, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2934, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2884, 5, 304, 0, 0, 2884, 2885, 5, 332, 0, 0, 2885, 2934, 3, 226, 113, 0, 2886, 2887, 5, 363, 0, 0, 2887, 2889, 5, 332, 0, 0, 2888, 2890, 3, 30, 15, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2934, 3, 226, 113, 0, 2892, 2934, 3, 210, 105, 0, 2893, 2896, 5, 216, 0, 0, 2894, 2897, 5, 310, 0, 0, 2895, 2897, 3, 40, 20, 0, 2896, 2894, 1, 0, 0, 0, 2896, 2895, 1, 0, 0, 0, 2897, 2934, 1, 0, 0, 0, 2898, 2899, 5, 113, 0, 0, 2899, 2900, 3, 642, 321, 0, 2900, 2901, 5, 387, 0, 0, 2901, 2902, 5, 329, 0, 0, 2902, 2903, 3, 482, 241, 0, 2903, 2934, 1, 0, 0, 0, 2904, 2905, 5, 237, 0, 0, 2905, 2906, 5, 45, 0, 0, 2906, 2907, 5, 399, 0, 0, 2907, 2908, 3, 314, 157, 0, 2908, 2909, 5, 400, 0, 0, 2909, 2934, 1, 0, 0, 0, 2910, 2911, 5, 101, 0, 0, 2911, 2912, 5, 55, 0, 0, 2912, 2934, 3, 654, 327, 0, 2913, 2916, 5, 4, 0, 0, 2914, 2917, 3, 292, 146, 0, 2915, 2917, 3, 282, 141, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2934, 1, 0, 0, 0, 2918, 2920, 3, 642, 321, 0, 2919, 2918, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2934, 3, 420, 210, 0, 2922, 2923, 5, 304, 0, 0, 2923, 2924, 5, 236, 0, 0, 2924, 2934, 3, 126, 63, 0, 2925, 2926, 5, 304, 0, 0, 2926, 2927, 5, 237, 0, 0, 2927, 2928, 5, 316, 0, 0, 2928, 2929, 5, 399, 0, 0, 2929, 2930, 3, 204, 102, 0, 2930, 2931, 5, 400, 0, 0, 2931, 2934, 1, 0, 0, 0, 2932, 2934, 3, 434, 217, 0, 2933, 2844, 1, 0, 0, 0, 2933, 2847, 1, 0, 0, 0, 2933, 2849, 1, 0, 0, 0, 2933, 2850, 1, 0, 0, 0, 2933, 2862, 1, 0, 0, 0, 2933, 2869, 1, 0, 0, 0, 2933, 2876, 1, 0, 0, 0, 2933, 2883, 1, 0, 0, 0, 2933, 2886, 1, 0, 0, 0, 2933, 2892, 1, 0, 0, 0, 2933, 2893, 1, 0, 0, 0, 2933, 2898, 1, 0, 0, 0, 2933, 2904, 1, 0, 0, 0, 2933, 2910, 1, 0, 0, 0, 2933, 2913, 1, 0, 0, 0, 2933, 2919, 1, 0, 0, 0, 2933, 2922, 1, 0, 0, 0, 2933, 2925, 1, 0, 0, 0, 2933, 2932, 1, 0, 0, 0, 2934, 419, 1, 0, 0, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 129, 0, 0, 2937, 3068, 3, 436, 218, 0, 2938, 2939, 5, 304, 0, 0, 2939, 2940, 5, 189, 0, 0, 2940, 3068, 5, 426, 0, 0, 2941, 3068, 5, 53, 0, 0, 2942, 2952, 5, 304, 0, 0, 2943, 2944, 5, 301, 0, 0, 2944, 2948, 5, 426, 0, 0, 2945, 2946, 5, 387, 0, 0, 2946, 2947, 5, 302, 0, 0, 2947, 2949, 3, 226, 113, 0, 2948, 2945, 1, 0, 0, 0, 2948, 2949, 1, 0, 0, 0, 2949, 2953, 1, 0, 0, 0, 2950, 2951, 5, 302, 0, 0, 2951, 2953, 3, 226, 113, 0, 2952, 2943, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 3068, 1, 0, 0, 0, 2954, 2955, 5, 363, 0, 0, 2955, 2956, 5, 302, 0, 0, 2956, 3068, 3, 226, 113, 0, 2957, 2958, 5, 274, 0, 0, 2958, 2959, 5, 341, 0, 0, 2959, 3068, 3, 642, 321, 0, 2960, 2961, 5, 166, 0, 0, 2961, 2962, 5, 431, 0, 0, 2962, 3068, 5, 31, 0, 0, 2963, 2964, 5, 304, 0, 0, 2964, 2965, 5, 310, 0, 0, 2965, 2966, 5, 189, 0, 0, 2966, 2967, 5, 399, 0, 0, 2967, 2972, 3, 432, 216, 0, 2968, 2969, 5, 397, 0, 0, 2969, 2971, 3, 432, 216, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2974, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 1, 0, 0, 0, 2974, 2972, 1, 0, 0, 0, 2975, 2976, 5, 400, 0, 0, 2976, 3068, 1, 0, 0, 0, 2977, 2978, 5, 216, 0, 0, 2978, 3068, 7, 25, 0, 0, 2979, 3068, 3, 208, 104, 0, 2980, 2981, 5, 49, 0, 0, 2981, 2984, 5, 426, 0, 0, 2982, 2983, 5, 11, 0, 0, 2983, 2985, 5, 380, 0, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2990, 1, 0, 0, 0, 2986, 2987, 5, 42, 0, 0, 2987, 2988, 5, 166, 0, 0, 2988, 2989, 5, 431, 0, 0, 2989, 2991, 5, 31, 0, 0, 2990, 2986, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2994, 3, 556, 278, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2996, 1, 0, 0, 0, 2995, 2997, 3, 410, 205, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 3002, 1, 0, 0, 0, 2998, 2999, 5, 387, 0, 0, 2999, 3000, 5, 235, 0, 0, 3000, 3001, 5, 332, 0, 0, 3001, 3003, 3, 226, 113, 0, 3002, 2998, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3068, 1, 0, 0, 0, 3004, 3005, 5, 365, 0, 0, 3005, 3006, 5, 319, 0, 0, 3006, 3008, 5, 134, 0, 0, 3007, 3009, 5, 45, 0, 0, 3008, 3007, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 3, 256, 128, 0, 3011, 3012, 5, 304, 0, 0, 3012, 3015, 3, 226, 113, 0, 3013, 3014, 5, 47, 0, 0, 3014, 3016, 5, 426, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3068, 1, 0, 0, 0, 3017, 3018, 5, 365, 0, 0, 3018, 3019, 5, 319, 0, 0, 3019, 3020, 5, 304, 0, 0, 3020, 3068, 3, 226, 113, 0, 3021, 3023, 5, 38, 0, 0, 3022, 3024, 5, 45, 0, 0, 3023, 3022, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 3, 256, 128, 0, 3026, 3027, 3, 262, 131, 0, 3027, 3029, 3, 346, 173, 0, 3028, 3030, 3, 328, 164, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3033, 1, 0, 0, 0, 3031, 3032, 5, 47, 0, 0, 3032, 3034, 5, 426, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3038, 1, 0, 0, 0, 3035, 3039, 5, 130, 0, 0, 3036, 3037, 5, 6, 0, 0, 3037, 3039, 3, 654, 327, 0, 3038, 3035, 1, 0, 0, 0, 3038, 3036, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3041, 1, 0, 0, 0, 3040, 3042, 3, 34, 17, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3068, 1, 0, 0, 0, 3043, 3046, 5, 4, 0, 0, 3044, 3046, 5, 278, 0, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3044, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 5, 46, 0, 0, 3048, 3049, 5, 399, 0, 0, 3049, 3050, 3, 248, 124, 0, 3050, 3052, 5, 400, 0, 0, 3051, 3053, 3, 34, 17, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3068, 1, 0, 0, 0, 3054, 3055, 5, 365, 0, 0, 3055, 3057, 5, 46, 0, 0, 3056, 3058, 3, 34, 17, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3068, 1, 0, 0, 0, 3059, 3065, 3, 272, 136, 0, 3060, 3062, 5, 218, 0, 0, 3061, 3063, 5, 34, 0, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3066, 1, 0, 0, 0, 3064, 3066, 5, 222, 0, 0, 3065, 3060, 1, 0, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 2935, 1, 0, 0, 0, 3067, 2938, 1, 0, 0, 0, 3067, 2941, 1, 0, 0, 0, 3067, 2942, 1, 0, 0, 0, 3067, 2954, 1, 0, 0, 0, 3067, 2957, 1, 0, 0, 0, 3067, 2960, 1, 0, 0, 0, 3067, 2963, 1, 0, 0, 0, 3067, 2977, 1, 0, 0, 0, 3067, 2979, 1, 0, 0, 0, 3067, 2980, 1, 0, 0, 0, 3067, 3004, 1, 0, 0, 0, 3067, 3017, 1, 0, 0, 0, 3067, 3021, 1, 0, 0, 0, 3067, 3045, 1, 0, 0, 0, 3067, 3054, 1, 0, 0, 0, 3067, 3059, 1, 0, 0, 0, 3068, 421, 1, 0, 0, 0, 3069, 3070, 5, 304, 0, 0, 3070, 3071, 5, 332, 0, 0, 3071, 3096, 3, 226, 113, 0, 3072, 3073, 5, 363, 0, 0, 3073, 3075, 5, 332, 0, 0, 3074, 3076, 3, 30, 15, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3096, 3, 226, 113, 0, 3078, 3079, 5, 274, 0, 0, 3079, 3080, 5, 341, 0, 0, 3080, 3096, 3, 484, 242, 0, 3081, 3083, 5, 4, 0, 0, 3082, 3084, 3, 32, 16, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3089, 1, 0, 0, 0, 3085, 3087, 3, 642, 321, 0, 3086, 3088, 3, 428, 214, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3085, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3096, 1, 0, 0, 0, 3093, 3096, 3, 430, 215, 0, 3094, 3096, 3, 384, 192, 0, 3095, 3069, 1, 0, 0, 0, 3095, 3072, 1, 0, 0, 0, 3095, 3078, 1, 0, 0, 0, 3095, 3081, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3094, 1, 0, 0, 0, 3096, 423, 1, 0, 0, 0, 3097, 3098, 3, 476, 238, 0, 3098, 3099, 5, 304, 0, 0, 3099, 3100, 5, 76, 0, 0, 3100, 3101, 3, 230, 115, 0, 3101, 3113, 1, 0, 0, 0, 3102, 3103, 3, 476, 238, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 236, 0, 0, 3105, 3106, 3, 128, 64, 0, 3106, 3113, 1, 0, 0, 0, 3107, 3108, 3, 476, 238, 0, 3108, 3109, 5, 304, 0, 0, 3109, 3110, 7, 26, 0, 0, 3110, 3111, 5, 426, 0, 0, 3111, 3113, 1, 0, 0, 0, 3112, 3097, 1, 0, 0, 0, 3112, 3102, 1, 0, 0, 0, 3112, 3107, 1, 0, 0, 0, 3113, 425, 1, 0, 0, 0, 3114, 3115, 3, 476, 238, 0, 3115, 3116, 5, 304, 0, 0, 3116, 3117, 5, 77, 0, 0, 3117, 3118, 3, 230, 115, 0, 3118, 3130, 1, 0, 0, 0, 3119, 3120, 3, 476, 238, 0, 3120, 3121, 5, 304, 0, 0, 3121, 3122, 5, 236, 0, 0, 3122, 3123, 3, 128, 64, 0, 3123, 3130, 1, 0, 0, 0, 3124, 3125, 3, 476, 238, 0, 3125, 3126, 5, 304, 0, 0, 3126, 3127, 5, 367, 0, 0, 3127, 3128, 5, 426, 0, 0, 3128, 3130, 1, 0, 0, 0, 3129, 3114, 1, 0, 0, 0, 3129, 3119, 1, 0, 0, 0, 3129, 3124, 1, 0, 0, 0, 3130, 427, 1, 0, 0, 0, 3131, 3132, 5, 189, 0, 0, 3132, 3133, 5, 426, 0, 0, 3133, 429, 1, 0, 0, 0, 3134, 3136, 5, 101, 0, 0, 3135, 3137, 3, 30, 15, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 5, 237, 0, 0, 3139, 3145, 3, 646, 323, 0, 3140, 3141, 5, 397, 0, 0, 3141, 3142, 5, 237, 0, 0, 3142, 3144, 3, 646, 323, 0, 3143, 3140, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3150, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3148, 3149, 5, 152, 0, 0, 3149, 3151, 5, 254, 0, 0, 3150, 3148, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3154, 5, 255, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 14, 7, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 431, 1, 0, 0, 0, 3158, 3161, 3, 588, 294, 0, 3159, 3161, 3, 298, 149, 0, 3160, 3158, 1, 0, 0, 0, 3160, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 5, 405, 0, 0, 3163, 3164, 5, 426, 0, 0, 3164, 433, 1, 0, 0, 0, 3165, 3175, 5, 115, 0, 0, 3166, 3167, 5, 289, 0, 0, 3167, 3168, 5, 399, 0, 0, 3168, 3176, 7, 27, 0, 0, 3169, 3170, 5, 118, 0, 0, 3170, 3171, 5, 399, 0, 0, 3171, 3176, 5, 426, 0, 0, 3172, 3173, 5, 306, 0, 0, 3173, 3174, 5, 399, 0, 0, 3174, 3176, 5, 431, 0, 0, 3175, 3166, 1, 0, 0, 0, 3175, 3169, 1, 0, 0, 0, 3175, 3172, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 400, 0, 0, 3178, 435, 1, 0, 0, 0, 3179, 3180, 5, 160, 0, 0, 3180, 3181, 5, 426, 0, 0, 3181, 3182, 5, 233, 0, 0, 3182, 3183, 5, 426, 0, 0, 3183, 3184, 5, 301, 0, 0, 3184, 3189, 5, 426, 0, 0, 3185, 3186, 5, 159, 0, 0, 3186, 3187, 5, 426, 0, 0, 3187, 3188, 5, 232, 0, 0, 3188, 3190, 5, 426, 0, 0, 3189, 3185, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3193, 1, 0, 0, 0, 3191, 3193, 3, 654, 327, 0, 3192, 3179, 1, 0, 0, 0, 3192, 3191, 1, 0, 0, 0, 3193, 437, 1, 0, 0, 0, 3194, 3195, 5, 184, 0, 0, 3195, 3204, 5, 128, 0, 0, 3196, 3197, 5, 184, 0, 0, 3197, 3198, 5, 128, 0, 0, 3198, 3199, 3, 654, 327, 0, 3199, 3200, 5, 426, 0, 0, 3200, 3204, 1, 0, 0, 0, 3201, 3202, 5, 184, 0, 0, 3202, 3204, 3, 482, 241, 0, 3203, 3194, 1, 0, 0, 0, 3203, 3196, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 439, 1, 0, 0, 0, 3205, 3207, 5, 58, 0, 0, 3206, 3208, 5, 333, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3211, 5, 345, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 5, 123, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 5, 329, 0, 0, 3216, 3218, 3, 32, 16, 0, 3217, 3216, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3276, 3, 484, 242, 0, 3220, 3222, 3, 438, 219, 0, 3221, 3223, 3, 200, 100, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 222, 111, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 246, 123, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3232, 3, 428, 214, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 224, 112, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 198, 99, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3277, 1, 0, 0, 0, 3239, 3240, 5, 399, 0, 0, 3240, 3241, 3, 250, 125, 0, 3241, 3242, 5, 400, 0, 0, 3242, 3244, 1, 0, 0, 0, 3243, 3239, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 196, 98, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 200, 100, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 208, 104, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 210, 105, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 222, 111, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3262, 3, 246, 123, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3265, 3, 428, 214, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3268, 3, 224, 112, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3270, 1, 0, 0, 0, 3269, 3271, 3, 198, 99, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3274, 1, 0, 0, 0, 3272, 3273, 5, 17, 0, 0, 3273, 3275, 3, 384, 192, 0, 3274, 3272, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3277, 1, 0, 0, 0, 3276, 3220, 1, 0, 0, 0, 3276, 3243, 1, 0, 0, 0, 3277, 3341, 1, 0, 0, 0, 3278, 3279, 5, 58, 0, 0, 3279, 3280, 5, 195, 0, 0, 3280, 3282, 5, 329, 0, 0, 3281, 3283, 3, 32, 16, 0, 3282, 3281, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3338, 3, 484, 242, 0, 3285, 3287, 3, 438, 219, 0, 3286, 3288, 3, 222, 111, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 246, 123, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 1, 0, 0, 0, 3292, 3294, 3, 428, 214, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 224, 112, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3300, 3, 198, 99, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3339, 1, 0, 0, 0, 3301, 3302, 5, 399, 0, 0, 3302, 3303, 3, 250, 125, 0, 3303, 3304, 5, 400, 0, 0, 3304, 3306, 1, 0, 0, 0, 3305, 3301, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 196, 98, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 200, 100, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 208, 104, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 210, 105, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 222, 111, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3324, 3, 246, 123, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3326, 1, 0, 0, 0, 3325, 3327, 3, 428, 214, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 224, 112, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3333, 3, 198, 99, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3335, 5, 17, 0, 0, 3335, 3337, 3, 384, 192, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3339, 1, 0, 0, 0, 3338, 3285, 1, 0, 0, 0, 3338, 3305, 1, 0, 0, 0, 3339, 3341, 1, 0, 0, 0, 3340, 3205, 1, 0, 0, 0, 3340, 3278, 1, 0, 0, 0, 3341, 441, 1, 0, 0, 0, 3342, 3343, 5, 58, 0, 0, 3343, 3345, 5, 69, 0, 0, 3344, 3346, 3, 32, 16, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3350, 3, 654, 327, 0, 3348, 3349, 5, 352, 0, 0, 3349, 3351, 5, 426, 0, 0, 3350, 3348, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3354, 1, 0, 0, 0, 3352, 3353, 5, 367, 0, 0, 3353, 3355, 5, 426, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3357, 5, 47, 0, 0, 3357, 3359, 5, 426, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3363, 1, 0, 0, 0, 3360, 3361, 5, 387, 0, 0, 3361, 3362, 5, 77, 0, 0, 3362, 3364, 3, 230, 115, 0, 3363, 3360, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 443, 1, 0, 0, 0, 3365, 3366, 5, 101, 0, 0, 3366, 3368, 5, 69, 0, 0, 3367, 3369, 3, 30, 15, 0, 3368, 3367, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3371, 3, 654, 327, 0, 3371, 445, 1, 0, 0, 0, 3372, 3373, 3, 654, 327, 0, 3373, 3374, 5, 395, 0, 0, 3374, 3376, 1, 0, 0, 0, 3375, 3372, 1, 0, 0, 0, 3376, 3379, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3380, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3381, 5, 415, 0, 0, 3381, 447, 1, 0, 0, 0, 3382, 3387, 3, 596, 298, 0, 3383, 3384, 5, 397, 0, 0, 3384, 3386, 3, 596, 298, 0, 3385, 3383, 1, 0, 0, 0, 3386, 3389, 1, 0, 0, 0, 3387, 3385, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 449, 1, 0, 0, 0, 3389, 3387, 1, 0, 0, 0, 3390, 3395, 3, 654, 327, 0, 3391, 3392, 5, 397, 0, 0, 3392, 3394, 3, 654, 327, 0, 3393, 3391, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 451, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3398, 3399, 5, 139, 0, 0, 3399, 3400, 3, 454, 227, 0, 3400, 453, 1, 0, 0, 0, 3401, 3402, 5, 359, 0, 0, 3402, 3405, 3, 462, 231, 0, 3403, 3404, 5, 397, 0, 0, 3404, 3406, 3, 462, 231, 0, 3405, 3403, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3411, 3, 458, 229, 0, 3410, 3401, 1, 0, 0, 0, 3410, 3409, 1, 0, 0, 0, 3411, 455, 1, 0, 0, 0, 3412, 3416, 3, 472, 236, 0, 3413, 3415, 3, 466, 233, 0, 3414, 3413, 1, 0, 0, 0, 3415, 3418, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3445, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3419, 3423, 3, 506, 253, 0, 3420, 3422, 3, 466, 233, 0, 3421, 3420, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3445, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3426, 3430, 3, 490, 245, 0, 3427, 3429, 3, 466, 233, 0, 3428, 3427, 1, 0, 0, 0, 3429, 3432, 1, 0, 0, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3445, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3433, 3437, 3, 496, 248, 0, 3434, 3436, 3, 466, 233, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3445, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3441, 5, 399, 0, 0, 3441, 3442, 3, 458, 229, 0, 3442, 3443, 5, 400, 0, 0, 3443, 3445, 1, 0, 0, 0, 3444, 3412, 1, 0, 0, 0, 3444, 3419, 1, 0, 0, 0, 3444, 3426, 1, 0, 0, 0, 3444, 3433, 1, 0, 0, 0, 3444, 3440, 1, 0, 0, 0, 3445, 457, 1, 0, 0, 0, 3446, 3464, 3, 456, 228, 0, 3447, 3448, 3, 464, 232, 0, 3448, 3460, 3, 460, 230, 0, 3449, 3456, 5, 224, 0, 0, 3450, 3457, 3, 596, 298, 0, 3451, 3454, 3, 260, 130, 0, 3452, 3453, 5, 405, 0, 0, 3453, 3455, 3, 260, 130, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 1, 0, 0, 0, 3456, 3450, 1, 0, 0, 0, 3456, 3451, 1, 0, 0, 0, 3457, 3461, 1, 0, 0, 0, 3458, 3459, 5, 370, 0, 0, 3459, 3461, 3, 268, 134, 0, 3460, 3449, 1, 0, 0, 0, 3460, 3458, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3463, 1, 0, 0, 0, 3462, 3447, 1, 0, 0, 0, 3463, 3466, 1, 0, 0, 0, 3464, 3462, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 459, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3467, 3472, 3, 472, 236, 0, 3468, 3472, 3, 506, 253, 0, 3469, 3472, 3, 490, 245, 0, 3470, 3472, 3, 496, 248, 0, 3471, 3467, 1, 0, 0, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3470, 1, 0, 0, 0, 3472, 3476, 1, 0, 0, 0, 3473, 3475, 3, 466, 233, 0, 3474, 3473, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 461, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3481, 5, 250, 0, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 3, 480, 240, 0, 3483, 3485, 3, 470, 235, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3490, 1, 0, 0, 0, 3486, 3488, 5, 17, 0, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 3, 654, 327, 0, 3490, 3487, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3493, 5, 399, 0, 0, 3493, 3494, 3, 448, 224, 0, 3494, 3495, 5, 400, 0, 0, 3495, 463, 1, 0, 0, 0, 3496, 3511, 5, 397, 0, 0, 3497, 3508, 5, 157, 0, 0, 3498, 3508, 5, 60, 0, 0, 3499, 3501, 7, 28, 0, 0, 3500, 3502, 5, 231, 0, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3508, 1, 0, 0, 0, 3503, 3505, 5, 180, 0, 0, 3504, 3506, 7, 29, 0, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 1, 0, 0, 0, 3507, 3497, 1, 0, 0, 0, 3507, 3498, 1, 0, 0, 0, 3507, 3499, 1, 0, 0, 0, 3507, 3503, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3511, 5, 171, 0, 0, 3510, 3496, 1, 0, 0, 0, 3510, 3507, 1, 0, 0, 0, 3511, 465, 1, 0, 0, 0, 3512, 3513, 5, 178, 0, 0, 3513, 3514, 5, 378, 0, 0, 3514, 3515, 5, 231, 0, 0, 3515, 3516, 3, 566, 283, 0, 3516, 3526, 3, 468, 234, 0, 3517, 3518, 5, 17, 0, 0, 3518, 3523, 3, 654, 327, 0, 3519, 3520, 5, 397, 0, 0, 3520, 3522, 3, 654, 327, 0, 3521, 3519, 1, 0, 0, 0, 3522, 3525, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3526, 3517, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3570, 1, 0, 0, 0, 3528, 3530, 5, 397, 0, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3567, 5, 178, 0, 0, 3532, 3533, 5, 378, 0, 0, 3533, 3534, 3, 566, 283, 0, 3534, 3544, 3, 468, 234, 0, 3535, 3536, 5, 17, 0, 0, 3536, 3541, 3, 654, 327, 0, 3537, 3538, 5, 397, 0, 0, 3538, 3540, 3, 654, 327, 0, 3539, 3537, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3535, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3568, 1, 0, 0, 0, 3546, 3547, 5, 329, 0, 0, 3547, 3548, 5, 399, 0, 0, 3548, 3549, 3, 502, 251, 0, 3549, 3551, 5, 400, 0, 0, 3550, 3552, 5, 17, 0, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3565, 3, 468, 234, 0, 3554, 3555, 5, 399, 0, 0, 3555, 3560, 3, 654, 327, 0, 3556, 3557, 5, 397, 0, 0, 3557, 3559, 3, 654, 327, 0, 3558, 3556, 1, 0, 0, 0, 3559, 3562, 1, 0, 0, 0, 3560, 3558, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3563, 3564, 5, 400, 0, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3554, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3532, 1, 0, 0, 0, 3567, 3546, 1, 0, 0, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3512, 1, 0, 0, 0, 3569, 3529, 1, 0, 0, 0, 3570, 467, 1, 0, 0, 0, 3571, 3572, 3, 654, 327, 0, 3572, 469, 1, 0, 0, 0, 3573, 3574, 5, 331, 0, 0, 3574, 3575, 5, 399, 0, 0, 3575, 3576, 5, 30, 0, 0, 3576, 3577, 5, 431, 0, 0, 3577, 3578, 5, 230, 0, 0, 3578, 3579, 5, 221, 0, 0, 3579, 3589, 5, 431, 0, 0, 3580, 3581, 5, 224, 0, 0, 3581, 3586, 3, 596, 298, 0, 3582, 3583, 5, 397, 0, 0, 3583, 3585, 3, 596, 298, 0, 3584, 3582, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3584, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3590, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3589, 3580, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3601, 5, 400, 0, 0, 3592, 3593, 5, 331, 0, 0, 3593, 3597, 5, 399, 0, 0, 3594, 3595, 5, 431, 0, 0, 3595, 3598, 7, 30, 0, 0, 3596, 3598, 5, 430, 0, 0, 3597, 3594, 1, 0, 0, 0, 3597, 3596, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3601, 5, 400, 0, 0, 3600, 3573, 1, 0, 0, 0, 3600, 3592, 1, 0, 0, 0, 3601, 471, 1, 0, 0, 0, 3602, 3604, 3, 480, 240, 0, 3603, 3605, 3, 226, 113, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 470, 235, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 474, 237, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3616, 1, 0, 0, 0, 3612, 3614, 5, 17, 0, 0, 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3617, 3, 654, 327, 0, 3616, 3613, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 473, 1, 0, 0, 0, 3618, 3628, 5, 134, 0, 0, 3619, 3620, 5, 327, 0, 0, 3620, 3621, 5, 17, 0, 0, 3621, 3622, 5, 221, 0, 0, 3622, 3629, 3, 596, 298, 0, 3623, 3624, 5, 134, 0, 0, 3624, 3625, 5, 328, 0, 0, 3625, 3626, 5, 17, 0, 0, 3626, 3627, 5, 221, 0, 0, 3627, 3629, 5, 431, 0, 0, 3628, 3619, 1, 0, 0, 0, 3628, 3623, 1, 0, 0, 0, 3629, 475, 1, 0, 0, 0, 3630, 3631, 3, 654, 327, 0, 3631, 477, 1, 0, 0, 0, 3632, 3633, 3, 654, 327, 0, 3633, 479, 1, 0, 0, 0, 3634, 3637, 3, 482, 241, 0, 3635, 3637, 3, 486, 243, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3635, 1, 0, 0, 0, 3637, 481, 1, 0, 0, 0, 3638, 3639, 3, 654, 327, 0, 3639, 3640, 5, 395, 0, 0, 3640, 3643, 3, 654, 327, 0, 3641, 3642, 5, 395, 0, 0, 3642, 3644, 3, 654, 327, 0, 3643, 3641, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3647, 1, 0, 0, 0, 3645, 3647, 3, 654, 327, 0, 3646, 3638, 1, 0, 0, 0, 3646, 3645, 1, 0, 0, 0, 3647, 483, 1, 0, 0, 0, 3648, 3649, 3, 654, 327, 0, 3649, 3650, 5, 395, 0, 0, 3650, 3653, 3, 654, 327, 0, 3651, 3652, 5, 395, 0, 0, 3652, 3654, 3, 654, 327, 0, 3653, 3651, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3657, 1, 0, 0, 0, 3655, 3657, 3, 654, 327, 0, 3656, 3648, 1, 0, 0, 0, 3656, 3655, 1, 0, 0, 0, 3657, 485, 1, 0, 0, 0, 3658, 3659, 3, 654, 327, 0, 3659, 3660, 5, 395, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 3, 654, 327, 0, 3664, 487, 1, 0, 0, 0, 3665, 3666, 3, 654, 327, 0, 3666, 3667, 5, 395, 0, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3665, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3671, 3, 654, 327, 0, 3671, 489, 1, 0, 0, 0, 3672, 3673, 5, 399, 0, 0, 3673, 3674, 3, 364, 182, 0, 3674, 3676, 5, 400, 0, 0, 3675, 3677, 5, 17, 0, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3679, 3, 654, 327, 0, 3679, 491, 1, 0, 0, 0, 3680, 3682, 3, 558, 279, 0, 3681, 3683, 3, 556, 278, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3692, 1, 0, 0, 0, 3684, 3692, 3, 556, 278, 0, 3685, 3687, 3, 562, 281, 0, 3686, 3688, 3, 564, 282, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3692, 1, 0, 0, 0, 3689, 3692, 3, 564, 282, 0, 3690, 3692, 3, 560, 280, 0, 3691, 3680, 1, 0, 0, 0, 3691, 3684, 1, 0, 0, 0, 3691, 3685, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3690, 1, 0, 0, 0, 3692, 493, 1, 0, 0, 0, 3693, 3697, 3, 490, 245, 0, 3694, 3697, 3, 472, 236, 0, 3695, 3697, 3, 496, 248, 0, 3696, 3693, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3696, 3695, 1, 0, 0, 0, 3697, 495, 1, 0, 0, 0, 3698, 3700, 3, 498, 249, 0, 3699, 3701, 3, 654, 327, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 497, 1, 0, 0, 0, 3702, 3703, 3, 654, 327, 0, 3703, 3704, 5, 399, 0, 0, 3704, 3705, 5, 224, 0, 0, 3705, 3707, 3, 494, 247, 0, 3706, 3708, 3, 492, 246, 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3724, 1, 0, 0, 0, 3709, 3710, 5, 432, 0, 0, 3710, 3711, 5, 399, 0, 0, 3711, 3712, 3, 596, 298, 0, 3712, 3721, 5, 400, 0, 0, 3713, 3714, 5, 397, 0, 0, 3714, 3715, 5, 432, 0, 0, 3715, 3716, 5, 399, 0, 0, 3716, 3717, 3, 596, 298, 0, 3717, 3718, 5, 400, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3713, 1, 0, 0, 0, 3720, 3723, 1, 0, 0, 0, 3721, 3719, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3725, 1, 0, 0, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3709, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 5, 400, 0, 0, 3727, 499, 1, 0, 0, 0, 3728, 3731, 5, 384, 0, 0, 3729, 3732, 3, 596, 298, 0, 3730, 3732, 3, 260, 130, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3730, 1, 0, 0, 0, 3732, 501, 1, 0, 0, 0, 3733, 3752, 5, 374, 0, 0, 3734, 3739, 3, 552, 276, 0, 3735, 3736, 5, 397, 0, 0, 3736, 3738, 3, 552, 276, 0, 3737, 3735, 1, 0, 0, 0, 3738, 3741, 1, 0, 0, 0, 3739, 3737, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3753, 1, 0, 0, 0, 3741, 3739, 1, 0, 0, 0, 3742, 3743, 5, 399, 0, 0, 3743, 3744, 3, 548, 274, 0, 3744, 3749, 5, 400, 0, 0, 3745, 3746, 5, 397, 0, 0, 3746, 3748, 3, 552, 276, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3751, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3734, 1, 0, 0, 0, 3752, 3742, 1, 0, 0, 0, 3753, 503, 1, 0, 0, 0, 3754, 3755, 5, 329, 0, 0, 3755, 3756, 5, 399, 0, 0, 3756, 3757, 3, 502, 251, 0, 3757, 3758, 5, 400, 0, 0, 3758, 505, 1, 0, 0, 0, 3759, 3761, 3, 504, 252, 0, 3760, 3762, 5, 17, 0, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3773, 3, 468, 234, 0, 3764, 3765, 5, 399, 0, 0, 3765, 3770, 3, 654, 327, 0, 3766, 3767, 5, 397, 0, 0, 3767, 3769, 3, 654, 327, 0, 3768, 3766, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3764, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3776, 5, 400, 0, 0, 3776, 507, 1, 0, 0, 0, 3777, 3779, 5, 299, 0, 0, 3778, 3780, 5, 436, 0, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3787, 1, 0, 0, 0, 3781, 3783, 7, 22, 0, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3788, 3, 512, 256, 0, 3785, 3786, 5, 347, 0, 0, 3786, 3788, 3, 510, 255, 0, 3787, 3782, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3788, 3791, 1, 0, 0, 0, 3789, 3791, 3, 520, 260, 0, 3790, 3777, 1, 0, 0, 0, 3790, 3789, 1, 0, 0, 0, 3791, 509, 1, 0, 0, 0, 3792, 3793, 5, 399, 0, 0, 3793, 3794, 3, 524, 262, 0, 3794, 3795, 5, 400, 0, 0, 3795, 3796, 3, 212, 106, 0, 3796, 3797, 3, 216, 108, 0, 3797, 3798, 5, 370, 0, 0, 3798, 3811, 5, 426, 0, 0, 3799, 3809, 5, 17, 0, 0, 3800, 3803, 5, 399, 0, 0, 3801, 3804, 3, 450, 225, 0, 3802, 3804, 3, 248, 124, 0, 3803, 3801, 1, 0, 0, 0, 3803, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 5, 400, 0, 0, 3806, 3810, 1, 0, 0, 0, 3807, 3810, 3, 450, 225, 0, 3808, 3810, 3, 248, 124, 0, 3809, 3800, 1, 0, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3808, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3799, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 3, 212, 106, 0, 3814, 3815, 3, 214, 107, 0, 3815, 511, 1, 0, 0, 0, 3816, 3821, 3, 514, 257, 0, 3817, 3818, 5, 397, 0, 0, 3818, 3820, 3, 514, 257, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3823, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 513, 1, 0, 0, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3848, 3, 446, 223, 0, 3825, 3828, 3, 516, 258, 0, 3826, 3828, 3, 518, 259, 0, 3827, 3825, 1, 0, 0, 0, 3827, 3826, 1, 0, 0, 0, 3828, 3845, 1, 0, 0, 0, 3829, 3831, 5, 17, 0, 0, 3830, 3829, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3846, 3, 654, 327, 0, 3833, 3834, 5, 17, 0, 0, 3834, 3835, 5, 399, 0, 0, 3835, 3840, 3, 654, 327, 0, 3836, 3837, 5, 397, 0, 0, 3837, 3839, 3, 654, 327, 0, 3838, 3836, 1, 0, 0, 0, 3839, 3842, 1, 0, 0, 0, 3840, 3838, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3843, 3844, 5, 400, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3830, 1, 0, 0, 0, 3845, 3833, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3848, 1, 0, 0, 0, 3847, 3824, 1, 0, 0, 0, 3847, 3827, 1, 0, 0, 0, 3848, 515, 1, 0, 0, 0, 3849, 3850, 3, 256, 128, 0, 3850, 517, 1, 0, 0, 0, 3851, 3852, 3, 596, 298, 0, 3852, 519, 1, 0, 0, 0, 3853, 3854, 7, 31, 0, 0, 3854, 3855, 3, 524, 262, 0, 3855, 3856, 3, 212, 106, 0, 3856, 3857, 3, 216, 108, 0, 3857, 3858, 5, 370, 0, 0, 3858, 3871, 5, 426, 0, 0, 3859, 3869, 5, 17, 0, 0, 3860, 3863, 5, 399, 0, 0, 3861, 3864, 3, 450, 225, 0, 3862, 3864, 3, 248, 124, 0, 3863, 3861, 1, 0, 0, 0, 3863, 3862, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 3866, 5, 400, 0, 0, 3866, 3870, 1, 0, 0, 0, 3867, 3870, 3, 450, 225, 0, 3868, 3870, 3, 248, 124, 0, 3869, 3860, 1, 0, 0, 0, 3869, 3867, 1, 0, 0, 0, 3869, 3868, 1, 0, 0, 0, 3870, 3872, 1, 0, 0, 0, 3871, 3859, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3873, 1, 0, 0, 0, 3873, 3874, 3, 212, 106, 0, 3874, 3875, 3, 214, 107, 0, 3875, 521, 1, 0, 0, 0, 3876, 3879, 3, 446, 223, 0, 3877, 3879, 3, 596, 298, 0, 3878, 3876, 1, 0, 0, 0, 3878, 3877, 1, 0, 0, 0, 3879, 523, 1, 0, 0, 0, 3880, 3885, 3, 522, 261, 0, 3881, 3882, 5, 397, 0, 0, 3882, 3884, 3, 522, 261, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3887, 1, 0, 0, 0, 3885, 3883, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 525, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3888, 3889, 5, 386, 0, 0, 3889, 3890, 3, 654, 327, 0, 3890, 3891, 5, 17, 0, 0, 3891, 3899, 3, 528, 264, 0, 3892, 3893, 5, 397, 0, 0, 3893, 3894, 3, 654, 327, 0, 3894, 3895, 5, 17, 0, 0, 3895, 3896, 3, 528, 264, 0, 3896, 3898, 1, 0, 0, 0, 3897, 3892, 1, 0, 0, 0, 3898, 3901, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 527, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3902, 3915, 3, 654, 327, 0, 3903, 3905, 5, 399, 0, 0, 3904, 3906, 3, 654, 327, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3908, 1, 0, 0, 0, 3907, 3909, 3, 492, 246, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3911, 1, 0, 0, 0, 3910, 3912, 3, 530, 265, 0, 3911, 3910, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3915, 5, 400, 0, 0, 3914, 3902, 1, 0, 0, 0, 3914, 3903, 1, 0, 0, 0, 3915, 529, 1, 0, 0, 0, 3916, 3930, 7, 32, 0, 0, 3917, 3918, 5, 354, 0, 0, 3918, 3924, 5, 247, 0, 0, 3919, 3920, 5, 62, 0, 0, 3920, 3924, 5, 291, 0, 0, 3921, 3922, 5, 431, 0, 0, 3922, 3924, 5, 247, 0, 0, 3923, 3917, 1, 0, 0, 0, 3923, 3919, 1, 0, 0, 0, 3923, 3921, 1, 0, 0, 0, 3924, 3931, 1, 0, 0, 0, 3925, 3926, 5, 25, 0, 0, 3926, 3927, 3, 532, 266, 0, 3927, 3928, 5, 11, 0, 0, 3928, 3929, 3, 532, 266, 0, 3929, 3931, 1, 0, 0, 0, 3930, 3923, 1, 0, 0, 0, 3930, 3925, 1, 0, 0, 0, 3931, 531, 1, 0, 0, 0, 3932, 3933, 7, 33, 0, 0, 3933, 3937, 7, 34, 0, 0, 3934, 3935, 5, 62, 0, 0, 3935, 3937, 5, 291, 0, 0, 3936, 3932, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3937, 533, 1, 0, 0, 0, 3938, 3939, 5, 144, 0, 0, 3939, 3945, 5, 32, 0, 0, 3940, 3946, 3, 256, 128, 0, 3941, 3946, 3, 536, 268, 0, 3942, 3946, 3, 538, 269, 0, 3943, 3944, 5, 399, 0, 0, 3944, 3946, 5, 400, 0, 0, 3945, 3940, 1, 0, 0, 0, 3945, 3941, 1, 0, 0, 0, 3945, 3942, 1, 0, 0, 0, 3945, 3943, 1, 0, 0, 0, 3946, 535, 1, 0, 0, 0, 3947, 3950, 5, 290, 0, 0, 3948, 3950, 5, 61, 0, 0, 3949, 3947, 1, 0, 0, 0, 3949, 3948, 1, 0, 0, 0, 3950, 3951, 1, 0, 0, 0, 3951, 3952, 5, 399, 0, 0, 3952, 3957, 3, 596, 298, 0, 3953, 3954, 5, 397, 0, 0, 3954, 3956, 3, 596, 298, 0, 3955, 3953, 1, 0, 0, 0, 3956, 3959, 1, 0, 0, 0, 3957, 3955, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3960, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3960, 3961, 5, 400, 0, 0, 3961, 537, 1, 0, 0, 0, 3962, 3967, 3, 554, 277, 0, 3963, 3964, 5, 387, 0, 0, 3964, 3968, 5, 290, 0, 0, 3965, 3966, 5, 387, 0, 0, 3966, 3968, 5, 61, 0, 0, 3967, 3963, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3982, 1, 0, 0, 0, 3969, 3970, 5, 145, 0, 0, 3970, 3971, 5, 305, 0, 0, 3971, 3972, 5, 399, 0, 0, 3972, 3977, 3, 540, 270, 0, 3973, 3974, 5, 397, 0, 0, 3974, 3976, 3, 540, 270, 0, 3975, 3973, 1, 0, 0, 0, 3976, 3979, 1, 0, 0, 0, 3977, 3975, 1, 0, 0, 0, 3977, 3978, 1, 0, 0, 0, 3978, 3980, 1, 0, 0, 0, 3979, 3977, 1, 0, 0, 0, 3980, 3981, 5, 400, 0, 0, 3981, 3983, 1, 0, 0, 0, 3982, 3969, 1, 0, 0, 0, 3982, 3983, 1, 0, 0, 0, 3983, 539, 1, 0, 0, 0, 3984, 3986, 5, 399, 0, 0, 3985, 3987, 3, 596, 298, 0, 3986, 3985, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 3992, 1, 0, 0, 0, 3988, 3989, 5, 397, 0, 0, 3989, 3991, 3, 596, 298, 0, 3990, 3988, 1, 0, 0, 0, 3991, 3994, 1, 0, 0, 0, 3992, 3990, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3995, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3995, 3998, 5, 400, 0, 0, 3996, 3998, 3, 596, 298, 0, 3997, 3984, 1, 0, 0, 0, 3997, 3996, 1, 0, 0, 0, 3998, 541, 1, 0, 0, 0, 3999, 4002, 5, 146, 0, 0, 4000, 4003, 3, 596, 298, 0, 4001, 4003, 3, 260, 130, 0, 4002, 4000, 1, 0, 0, 0, 4002, 4001, 1, 0, 0, 0, 4003, 543, 1, 0, 0, 0, 4004, 4005, 5, 256, 0, 0, 4005, 4006, 3, 596, 298, 0, 4006, 545, 1, 0, 0, 0, 4007, 4010, 5, 83, 0, 0, 4008, 4010, 3, 596, 298, 0, 4009, 4007, 1, 0, 0, 0, 4009, 4008, 1, 0, 0, 0, 4010, 547, 1, 0, 0, 0, 4011, 4013, 3, 596, 298, 0, 4012, 4014, 5, 17, 0, 0, 4013, 4012, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 4016, 1, 0, 0, 0, 4015, 4017, 3, 654, 327, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4028, 1, 0, 0, 0, 4018, 4019, 5, 397, 0, 0, 4019, 4021, 3, 596, 298, 0, 4020, 4022, 5, 17, 0, 0, 4021, 4020, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4024, 1, 0, 0, 0, 4023, 4025, 3, 654, 327, 0, 4024, 4023, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 1, 0, 0, 0, 4026, 4018, 1, 0, 0, 0, 4027, 4030, 1, 0, 0, 0, 4028, 4026, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 549, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4034, 3, 552, 276, 0, 4032, 4034, 3, 554, 277, 0, 4033, 4031, 1, 0, 0, 0, 4033, 4032, 1, 0, 0, 0, 4034, 551, 1, 0, 0, 0, 4035, 4036, 5, 399, 0, 0, 4036, 4037, 3, 554, 277, 0, 4037, 4038, 5, 400, 0, 0, 4038, 553, 1, 0, 0, 0, 4039, 4046, 3, 546, 273, 0, 4040, 4041, 5, 397, 0, 0, 4041, 4043, 3, 546, 273, 0, 4042, 4040, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4042, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4047, 1, 0, 0, 0, 4046, 4042, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 555, 1, 0, 0, 0, 4048, 4049, 5, 229, 0, 0, 4049, 4050, 5, 32, 0, 0, 4050, 4055, 3, 312, 156, 0, 4051, 4052, 5, 397, 0, 0, 4052, 4054, 3, 312, 156, 0, 4053, 4051, 1, 0, 0, 0, 4054, 4057, 1, 0, 0, 0, 4055, 4053, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 557, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4058, 4059, 5, 237, 0, 0, 4059, 4060, 5, 32, 0, 0, 4060, 4061, 3, 550, 275, 0, 4061, 559, 1, 0, 0, 0, 4062, 4063, 5, 41, 0, 0, 4063, 4064, 5, 32, 0, 0, 4064, 4065, 3, 550, 275, 0, 4065, 561, 1, 0, 0, 0, 4066, 4067, 5, 97, 0, 0, 4067, 4068, 5, 32, 0, 0, 4068, 4069, 3, 550, 275, 0, 4069, 563, 1, 0, 0, 0, 4070, 4071, 5, 314, 0, 0, 4071, 4091, 5, 32, 0, 0, 4072, 4073, 5, 399, 0, 0, 4073, 4078, 3, 312, 156, 0, 4074, 4075, 5, 397, 0, 0, 4075, 4077, 3, 312, 156, 0, 4076, 4074, 1, 0, 0, 0, 4077, 4080, 1, 0, 0, 0, 4078, 4076, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4081, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4081, 4082, 5, 400, 0, 0, 4082, 4092, 1, 0, 0, 0, 4083, 4088, 3, 312, 156, 0, 4084, 4085, 5, 397, 0, 0, 4085, 4087, 3, 312, 156, 0, 4086, 4084, 1, 0, 0, 0, 4087, 4090, 1, 0, 0, 0, 4088, 4086, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4092, 1, 0, 0, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4072, 1, 0, 0, 0, 4091, 4083, 1, 0, 0, 0, 4092, 565, 1, 0, 0, 0, 4093, 4094, 5, 349, 0, 0, 4094, 4098, 5, 399, 0, 0, 4095, 4099, 5, 179, 0, 0, 4096, 4099, 5, 343, 0, 0, 4097, 4099, 5, 29, 0, 0, 4098, 4095, 1, 0, 0, 0, 4098, 4096, 1, 0, 0, 0, 4098, 4097, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 1, 0, 0, 0, 4100, 4102, 3, 522, 261, 0, 4101, 4100, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4104, 5, 139, 0, 0, 4104, 4105, 3, 522, 261, 0, 4105, 4106, 5, 400, 0, 0, 4106, 4147, 1, 0, 0, 0, 4107, 4108, 3, 574, 287, 0, 4108, 4123, 5, 399, 0, 0, 4109, 4124, 5, 415, 0, 0, 4110, 4112, 7, 22, 0, 0, 4111, 4110, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 4121, 1, 0, 0, 0, 4113, 4118, 3, 522, 261, 0, 4114, 4115, 5, 397, 0, 0, 4115, 4117, 3, 522, 261, 0, 4116, 4114, 1, 0, 0, 0, 4117, 4120, 1, 0, 0, 0, 4118, 4116, 1, 0, 0, 0, 4118, 4119, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4121, 4113, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4109, 1, 0, 0, 0, 4123, 4111, 1, 0, 0, 0, 4124, 4144, 1, 0, 0, 0, 4125, 4126, 5, 400, 0, 0, 4126, 4127, 5, 388, 0, 0, 4127, 4128, 5, 144, 0, 0, 4128, 4129, 5, 399, 0, 0, 4129, 4130, 3, 556, 278, 0, 4130, 4131, 5, 400, 0, 0, 4131, 4145, 1, 0, 0, 0, 4132, 4134, 5, 400, 0, 0, 4133, 4135, 3, 568, 284, 0, 4134, 4133, 1, 0, 0, 0, 4134, 4135, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4137, 5, 234, 0, 0, 4137, 4145, 3, 528, 264, 0, 4138, 4139, 3, 568, 284, 0, 4139, 4140, 5, 400, 0, 0, 4140, 4141, 5, 234, 0, 0, 4141, 4142, 3, 528, 264, 0, 4142, 4145, 1, 0, 0, 0, 4143, 4145, 5, 400, 0, 0, 4144, 4125, 1, 0, 0, 0, 4144, 4132, 1, 0, 0, 0, 4144, 4138, 1, 0, 0, 0, 4144, 4143, 1, 0, 0, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4093, 1, 0, 0, 0, 4146, 4107, 1, 0, 0, 0, 4147, 567, 1, 0, 0, 0, 4148, 4149, 7, 35, 0, 0, 4149, 4150, 5, 220, 0, 0, 4150, 569, 1, 0, 0, 0, 4151, 4152, 3, 656, 328, 0, 4152, 571, 1, 0, 0, 0, 4153, 4156, 3, 656, 328, 0, 4154, 4156, 5, 426, 0, 0, 4155, 4153, 1, 0, 0, 0, 4155, 4154, 1, 0, 0, 0, 4156, 573, 1, 0, 0, 0, 4157, 4161, 3, 656, 328, 0, 4158, 4161, 3, 662, 331, 0, 4159, 4161, 3, 652, 326, 0, 4160, 4157, 1, 0, 0, 0, 4160, 4158, 1, 0, 0, 0, 4160, 4159, 1, 0, 0, 0, 4161, 575, 1, 0, 0, 0, 4162, 4163, 5, 36, 0, 0, 4163, 4164, 5, 399, 0, 0, 4164, 4165, 3, 596, 298, 0, 4165, 4166, 5, 17, 0, 0, 4166, 4169, 3, 352, 176, 0, 4167, 4168, 5, 137, 0, 0, 4168, 4170, 5, 426, 0, 0, 4169, 4167, 1, 0, 0, 0, 4169, 4170, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4172, 5, 400, 0, 0, 4172, 577, 1, 0, 0, 0, 4173, 4174, 5, 35, 0, 0, 4174, 4180, 3, 596, 298, 0, 4175, 4176, 5, 383, 0, 0, 4176, 4177, 3, 596, 298, 0, 4177, 4178, 5, 335, 0, 0, 4178, 4179, 3, 596, 298, 0, 4179, 4181, 1, 0, 0, 0, 4180, 4175, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4186, 1, 0, 0, 0, 4184, 4185, 5, 105, 0, 0, 4185, 4187, 3, 596, 298, 0, 4186, 4184, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4188, 1, 0, 0, 0, 4188, 4189, 5, 108, 0, 0, 4189, 579, 1, 0, 0, 0, 4190, 4196, 5, 35, 0, 0, 4191, 4192, 5, 383, 0, 0, 4192, 4193, 3, 596, 298, 0, 4193, 4194, 5, 335, 0, 0, 4194, 4195, 3, 596, 298, 0, 4195, 4197, 1, 0, 0, 0, 4196, 4191, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4196, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4202, 1, 0, 0, 0, 4200, 4201, 5, 105, 0, 0, 4201, 4203, 3, 596, 298, 0, 4202, 4200, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4204, 1, 0, 0, 0, 4204, 4205, 5, 108, 0, 0, 4205, 581, 1, 0, 0, 0, 4206, 4207, 5, 132, 0, 0, 4207, 4208, 5, 399, 0, 0, 4208, 4211, 3, 596, 298, 0, 4209, 4210, 5, 341, 0, 0, 4210, 4212, 3, 586, 293, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4213, 1, 0, 0, 0, 4213, 4214, 5, 400, 0, 0, 4214, 583, 1, 0, 0, 0, 4215, 4216, 5, 124, 0, 0, 4216, 4217, 5, 399, 0, 0, 4217, 4218, 3, 586, 293, 0, 4218, 4219, 5, 139, 0, 0, 4219, 4220, 3, 596, 298, 0, 4220, 4221, 5, 400, 0, 0, 4221, 585, 1, 0, 0, 0, 4222, 4231, 3, 682, 341, 0, 4223, 4231, 5, 257, 0, 0, 4224, 4231, 3, 684, 342, 0, 4225, 4231, 3, 686, 343, 0, 4226, 4231, 3, 688, 344, 0, 4227, 4231, 3, 690, 345, 0, 4228, 4231, 3, 692, 346, 0, 4229, 4231, 3, 694, 347, 0, 4230, 4222, 1, 0, 0, 0, 4230, 4223, 1, 0, 0, 0, 4230, 4224, 1, 0, 0, 0, 4230, 4225, 1, 0, 0, 0, 4230, 4226, 1, 0, 0, 0, 4230, 4227, 1, 0, 0, 0, 4230, 4228, 1, 0, 0, 0, 4230, 4229, 1, 0, 0, 0, 4231, 587, 1, 0, 0, 0, 4232, 4233, 3, 590, 295, 0, 4233, 4234, 3, 594, 297, 0, 4234, 4261, 1, 0, 0, 0, 4235, 4261, 5, 431, 0, 0, 4236, 4237, 5, 71, 0, 0, 4237, 4261, 5, 426, 0, 0, 4238, 4261, 5, 63, 0, 0, 4239, 4240, 5, 337, 0, 0, 4240, 4261, 5, 426, 0, 0, 4241, 4261, 5, 64, 0, 0, 4242, 4243, 5, 338, 0, 0, 4243, 4261, 5, 426, 0, 0, 4244, 4248, 5, 426, 0, 0, 4245, 4247, 5, 426, 0, 0, 4246, 4245, 1, 0, 0, 0, 4247, 4250, 1, 0, 0, 0, 4248, 4246, 1, 0, 0, 0, 4248, 4249, 1, 0, 0, 0, 4249, 4261, 1, 0, 0, 0, 4250, 4248, 1, 0, 0, 0, 4251, 4261, 5, 428, 0, 0, 4252, 4261, 5, 429, 0, 0, 4253, 4254, 5, 433, 0, 0, 4254, 4261, 5, 427, 0, 0, 4255, 4261, 5, 350, 0, 0, 4256, 4261, 5, 125, 0, 0, 4257, 4261, 5, 219, 0, 0, 4258, 4261, 5, 424, 0, 0, 4259, 4261, 3, 258, 129, 0, 4260, 4232, 1, 0, 0, 0, 4260, 4235, 1, 0, 0, 0, 4260, 4236, 1, 0, 0, 0, 4260, 4238, 1, 0, 0, 0, 4260, 4239, 1, 0, 0, 0, 4260, 4241, 1, 0, 0, 0, 4260, 4242, 1, 0, 0, 0, 4260, 4244, 1, 0, 0, 0, 4260, 4251, 1, 0, 0, 0, 4260, 4252, 1, 0, 0, 0, 4260, 4253, 1, 0, 0, 0, 4260, 4255, 1, 0, 0, 0, 4260, 4256, 1, 0, 0, 0, 4260, 4257, 1, 0, 0, 0, 4260, 4258, 1, 0, 0, 0, 4260, 4259, 1, 0, 0, 0, 4261, 589, 1, 0, 0, 0, 4262, 4263, 7, 27, 0, 0, 4263, 591, 1, 0, 0, 0, 4264, 4265, 5, 399, 0, 0, 4265, 4266, 3, 590, 295, 0, 4266, 4267, 5, 400, 0, 0, 4267, 4268, 3, 594, 297, 0, 4268, 4280, 1, 0, 0, 0, 4269, 4275, 5, 165, 0, 0, 4270, 4276, 3, 590, 295, 0, 4271, 4272, 5, 399, 0, 0, 4272, 4273, 3, 596, 298, 0, 4273, 4274, 5, 400, 0, 0, 4274, 4276, 1, 0, 0, 0, 4275, 4270, 1, 0, 0, 0, 4275, 4271, 1, 0, 0, 0, 4276, 4277, 1, 0, 0, 0, 4277, 4278, 3, 594, 297, 0, 4278, 4280, 1, 0, 0, 0, 4279, 4264, 1, 0, 0, 0, 4279, 4269, 1, 0, 0, 0, 4280, 593, 1, 0, 0, 0, 4281, 4282, 3, 682, 341, 0, 4282, 4283, 5, 341, 0, 0, 4283, 4284, 3, 684, 342, 0, 4284, 4296, 1, 0, 0, 0, 4285, 4286, 3, 688, 344, 0, 4286, 4287, 5, 341, 0, 0, 4287, 4288, 3, 694, 347, 0, 4288, 4296, 1, 0, 0, 0, 4289, 4296, 3, 682, 341, 0, 4290, 4296, 3, 684, 342, 0, 4291, 4296, 3, 688, 344, 0, 4292, 4296, 3, 690, 345, 0, 4293, 4296, 3, 692, 346, 0, 4294, 4296, 3, 694, 347, 0, 4295, 4281, 1, 0, 0, 0, 4295, 4285, 1, 0, 0, 0, 4295, 4289, 1, 0, 0, 0, 4295, 4290, 1, 0, 0, 0, 4295, 4291, 1, 0, 0, 0, 4295, 4292, 1, 0, 0, 0, 4295, 4293, 1, 0, 0, 0, 4295, 4294, 1, 0, 0, 0, 4296, 595, 1, 0, 0, 0, 4297, 4302, 3, 638, 319, 0, 4298, 4299, 5, 228, 0, 0, 4299, 4301, 3, 638, 319, 0, 4300, 4298, 1, 0, 0, 0, 4301, 4304, 1, 0, 0, 0, 4302, 4300, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 597, 1, 0, 0, 0, 4304, 4302, 1, 0, 0, 0, 4305, 4317, 3, 588, 294, 0, 4306, 4317, 3, 592, 296, 0, 4307, 4317, 3, 576, 288, 0, 4308, 4317, 3, 584, 292, 0, 4309, 4317, 3, 582, 291, 0, 4310, 4317, 3, 578, 289, 0, 4311, 4317, 3, 580, 290, 0, 4312, 4317, 3, 616, 308, 0, 4313, 4317, 3, 566, 283, 0, 4314, 4317, 3, 552, 276, 0, 4315, 4317, 3, 654, 327, 0, 4316, 4305, 1, 0, 0, 0, 4316, 4306, 1, 0, 0, 0, 4316, 4307, 1, 0, 0, 0, 4316, 4308, 1, 0, 0, 0, 4316, 4309, 1, 0, 0, 0, 4316, 4310, 1, 0, 0, 0, 4316, 4311, 1, 0, 0, 0, 4316, 4312, 1, 0, 0, 0, 4316, 4313, 1, 0, 0, 0, 4316, 4314, 1, 0, 0, 0, 4316, 4315, 1, 0, 0, 0, 4317, 599, 1, 0, 0, 0, 4318, 4320, 7, 36, 0, 0, 4319, 4318, 1, 0, 0, 0, 4320, 4323, 1, 0, 0, 0, 4321, 4319, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4324, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 4333, 3, 598, 299, 0, 4325, 4326, 5, 401, 0, 0, 4326, 4327, 3, 596, 298, 0, 4327, 4328, 5, 402, 0, 0, 4328, 4332, 1, 0, 0, 0, 4329, 4330, 5, 395, 0, 0, 4330, 4332, 3, 654, 327, 0, 4331, 4325, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4332, 4335, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 601, 1, 0, 0, 0, 4335, 4333, 1, 0, 0, 0, 4336, 4341, 3, 600, 300, 0, 4337, 4338, 5, 423, 0, 0, 4338, 4340, 3, 600, 300, 0, 4339, 4337, 1, 0, 0, 0, 4340, 4343, 1, 0, 0, 0, 4341, 4339, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 603, 1, 0, 0, 0, 4343, 4341, 1, 0, 0, 0, 4344, 4349, 3, 602, 301, 0, 4345, 4346, 7, 37, 0, 0, 4346, 4348, 3, 602, 301, 0, 4347, 4345, 1, 0, 0, 0, 4348, 4351, 1, 0, 0, 0, 4349, 4347, 1, 0, 0, 0, 4349, 4350, 1, 0, 0, 0, 4350, 605, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4352, 4357, 3, 604, 302, 0, 4353, 4354, 7, 38, 0, 0, 4354, 4356, 3, 604, 302, 0, 4355, 4353, 1, 0, 0, 0, 4356, 4359, 1, 0, 0, 0, 4357, 4355, 1, 0, 0, 0, 4357, 4358, 1, 0, 0, 0, 4358, 607, 1, 0, 0, 0, 4359, 4357, 1, 0, 0, 0, 4360, 4365, 3, 606, 303, 0, 4361, 4362, 5, 422, 0, 0, 4362, 4364, 3, 606, 303, 0, 4363, 4361, 1, 0, 0, 0, 4364, 4367, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4365, 4366, 1, 0, 0, 0, 4366, 609, 1, 0, 0, 0, 4367, 4365, 1, 0, 0, 0, 4368, 4373, 3, 608, 304, 0, 4369, 4370, 5, 419, 0, 0, 4370, 4372, 3, 608, 304, 0, 4371, 4369, 1, 0, 0, 0, 4372, 4375, 1, 0, 0, 0, 4373, 4371, 1, 0, 0, 0, 4373, 4374, 1, 0, 0, 0, 4374, 611, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4376, 4381, 3, 610, 305, 0, 4377, 4378, 5, 421, 0, 0, 4378, 4380, 3, 610, 305, 0, 4379, 4377, 1, 0, 0, 0, 4380, 4383, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 613, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4384, 4385, 7, 39, 0, 0, 4385, 615, 1, 0, 0, 0, 4386, 4387, 5, 399, 0, 0, 4387, 4388, 3, 380, 190, 0, 4388, 4389, 5, 400, 0, 0, 4389, 617, 1, 0, 0, 0, 4390, 4392, 3, 612, 306, 0, 4391, 4393, 3, 620, 310, 0, 4392, 4391, 1, 0, 0, 0, 4392, 4393, 1, 0, 0, 0, 4393, 4397, 1, 0, 0, 0, 4394, 4395, 5, 117, 0, 0, 4395, 4397, 3, 616, 308, 0, 4396, 4390, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4397, 619, 1, 0, 0, 0, 4398, 4399, 3, 614, 307, 0, 4399, 4400, 3, 612, 306, 0, 4400, 4405, 1, 0, 0, 0, 4401, 4405, 3, 622, 311, 0, 4402, 4403, 5, 216, 0, 0, 4403, 4405, 3, 626, 313, 0, 4404, 4398, 1, 0, 0, 0, 4404, 4401, 1, 0, 0, 0, 4404, 4402, 1, 0, 0, 0, 4405, 621, 1, 0, 0, 0, 4406, 4407, 5, 154, 0, 0, 4407, 4421, 3, 624, 312, 0, 4408, 4409, 5, 25, 0, 0, 4409, 4410, 3, 612, 306, 0, 4410, 4411, 5, 11, 0, 0, 4411, 4412, 3, 612, 306, 0, 4412, 4421, 1, 0, 0, 0, 4413, 4414, 5, 184, 0, 0, 4414, 4415, 7, 40, 0, 0, 4415, 4421, 3, 552, 276, 0, 4416, 4417, 3, 650, 325, 0, 4417, 4418, 7, 41, 0, 0, 4418, 4419, 3, 616, 308, 0, 4419, 4421, 1, 0, 0, 0, 4420, 4406, 1, 0, 0, 0, 4420, 4408, 1, 0, 0, 0, 4420, 4413, 1, 0, 0, 0, 4420, 4416, 1, 0, 0, 0, 4421, 623, 1, 0, 0, 0, 4422, 4425, 3, 616, 308, 0, 4423, 4425, 3, 552, 276, 0, 4424, 4422, 1, 0, 0, 0, 4424, 4423, 1, 0, 0, 0, 4425, 625, 1, 0, 0, 0, 4426, 4427, 7, 42, 0, 0, 4427, 4430, 3, 612, 306, 0, 4428, 4430, 3, 622, 311, 0, 4429, 4426, 1, 0, 0, 0, 4429, 4428, 1, 0, 0, 0, 4430, 627, 1, 0, 0, 0, 4431, 4432, 5, 167, 0, 0, 4432, 4433, 5, 96, 0, 0, 4433, 4434, 5, 139, 0, 0, 4434, 629, 1, 0, 0, 0, 4435, 4443, 5, 405, 0, 0, 4436, 4443, 5, 406, 0, 0, 4437, 4443, 5, 407, 0, 0, 4438, 4439, 5, 167, 0, 0, 4439, 4440, 5, 216, 0, 0, 4440, 4441, 5, 96, 0, 0, 4441, 4443, 5, 139, 0, 0, 4442, 4435, 1, 0, 0, 0, 4442, 4436, 1, 0, 0, 0, 4442, 4437, 1, 0, 0, 0, 4442, 4438, 1, 0, 0, 0, 4443, 631, 1, 0, 0, 0, 4444, 4453, 3, 618, 309, 0, 4445, 4446, 3, 630, 315, 0, 4446, 4447, 3, 618, 309, 0, 4447, 4452, 1, 0, 0, 0, 4448, 4449, 3, 628, 314, 0, 4449, 4450, 3, 618, 309, 0, 4450, 4452, 1, 0, 0, 0, 4451, 4445, 1, 0, 0, 0, 4451, 4448, 1, 0, 0, 0, 4452, 4455, 1, 0, 0, 0, 4453, 4451, 1, 0, 0, 0, 4453, 4454, 1, 0, 0, 0, 4454, 633, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4463, 5, 219, 0, 0, 4457, 4463, 5, 350, 0, 0, 4458, 4463, 5, 125, 0, 0, 4459, 4463, 5, 360, 0, 0, 4460, 4461, 5, 216, 0, 0, 4461, 4463, 7, 43, 0, 0, 4462, 4456, 1, 0, 0, 0, 4462, 4457, 1, 0, 0, 0, 4462, 4458, 1, 0, 0, 0, 4462, 4459, 1, 0, 0, 0, 4462, 4460, 1, 0, 0, 0, 4463, 635, 1, 0, 0, 0, 4464, 4466, 5, 216, 0, 0, 4465, 4464, 1, 0, 0, 0, 4466, 4469, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4467, 4468, 1, 0, 0, 0, 4468, 4470, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4473, 3, 632, 316, 0, 4471, 4472, 5, 167, 0, 0, 4472, 4474, 3, 634, 317, 0, 4473, 4471, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 637, 1, 0, 0, 0, 4475, 4480, 3, 636, 318, 0, 4476, 4477, 5, 11, 0, 0, 4477, 4479, 3, 636, 318, 0, 4478, 4476, 1, 0, 0, 0, 4479, 4482, 1, 0, 0, 0, 4480, 4478, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 639, 1, 0, 0, 0, 4482, 4480, 1, 0, 0, 0, 4483, 4485, 3, 482, 241, 0, 4484, 4486, 3, 642, 321, 0, 4485, 4484, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 641, 1, 0, 0, 0, 4487, 4488, 5, 237, 0, 0, 4488, 4489, 5, 399, 0, 0, 4489, 4494, 3, 644, 322, 0, 4490, 4491, 5, 397, 0, 0, 4491, 4493, 3, 644, 322, 0, 4492, 4490, 1, 0, 0, 0, 4493, 4496, 1, 0, 0, 0, 4494, 4492, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4497, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4497, 4498, 5, 400, 0, 0, 4498, 643, 1, 0, 0, 0, 4499, 4502, 3, 654, 327, 0, 4500, 4501, 5, 405, 0, 0, 4501, 4503, 3, 588, 294, 0, 4502, 4500, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 645, 1, 0, 0, 0, 4504, 4505, 5, 399, 0, 0, 4505, 4510, 3, 648, 324, 0, 4506, 4507, 5, 397, 0, 0, 4507, 4509, 3, 648, 324, 0, 4508, 4506, 1, 0, 0, 0, 4509, 4512, 1, 0, 0, 0, 4510, 4508, 1, 0, 0, 0, 4510, 4511, 1, 0, 0, 0, 4511, 4513, 1, 0, 0, 0, 4512, 4510, 1, 0, 0, 0, 4513, 4514, 5, 400, 0, 0, 4514, 647, 1, 0, 0, 0, 4515, 4518, 3, 654, 327, 0, 4516, 4519, 5, 184, 0, 0, 4517, 4519, 3, 650, 325, 0, 4518, 4516, 1, 0, 0, 0, 4518, 4517, 1, 0, 0, 0, 4519, 4520, 1, 0, 0, 0, 4520, 4521, 3, 588, 294, 0, 4521, 649, 1, 0, 0, 0, 4522, 4523, 7, 44, 0, 0, 4523, 651, 1, 0, 0, 0, 4524, 4525, 7, 45, 0, 0, 4525, 653, 1, 0, 0, 0, 4526, 4529, 5, 432, 0, 0, 4527, 4529, 3, 660, 330, 0, 4528, 4526, 1, 0, 0, 0, 4528, 4527, 1, 0, 0, 0, 4529, 655, 1, 0, 0, 0, 4530, 4533, 3, 654, 327, 0, 4531, 4532, 5, 395, 0, 0, 4532, 4534, 3, 654, 327, 0, 4533, 4531, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 657, 1, 0, 0, 0, 4535, 4536, 3, 654, 327, 0, 4536, 659, 1, 0, 0, 0, 4537, 4538, 7, 46, 0, 0, 4538, 661, 1, 0, 0, 0, 4539, 4540, 7, 47, 0, 0, 4540, 663, 1, 0, 0, 0, 4541, 4593, 3, 654, 327, 0, 4542, 4593, 5, 299, 0, 0, 4543, 4593, 5, 171, 0, 0, 4544, 4593, 5, 237, 0, 0, 4545, 4593, 5, 198, 0, 0, 4546, 4593, 5, 268, 0, 0, 4547, 4593, 5, 369, 0, 0, 4548, 4593, 5, 241, 0, 0, 4549, 4593, 5, 165, 0, 0, 4550, 4593, 5, 292, 0, 0, 4551, 4593, 5, 356, 0, 0, 4552, 4593, 5, 144, 0, 0, 4553, 4593, 5, 203, 0, 0, 4554, 4593, 5, 219, 0, 0, 4555, 4593, 5, 126, 0, 0, 4556, 4593, 5, 188, 0, 0, 4557, 4593, 5, 101, 0, 0, 4558, 4593, 5, 329, 0, 0, 4559, 4593, 5, 224, 0, 0, 4560, 4593, 5, 291, 0, 0, 4561, 4593, 5, 145, 0, 0, 4562, 4593, 5, 304, 0, 0, 4563, 4593, 5, 135, 0, 0, 4564, 4593, 5, 318, 0, 0, 4565, 4593, 5, 161, 0, 0, 4566, 4593, 5, 54, 0, 0, 4567, 4593, 5, 166, 0, 0, 4568, 4593, 5, 358, 0, 0, 4569, 4593, 5, 45, 0, 0, 4570, 4593, 5, 347, 0, 0, 4571, 4593, 5, 96, 0, 0, 4572, 4593, 5, 154, 0, 0, 4573, 4593, 5, 269, 0, 0, 4574, 4593, 5, 337, 0, 0, 4575, 4593, 5, 225, 0, 0, 4576, 4593, 5, 108, 0, 0, 4577, 4593, 5, 141, 0, 0, 4578, 4593, 5, 365, 0, 0, 4579, 4593, 5, 21, 0, 0, 4580, 4593, 5, 78, 0, 0, 4581, 4593, 5, 374, 0, 0, 4582, 4593, 5, 336, 0, 0, 4583, 4593, 5, 167, 0, 0, 4584, 4593, 5, 134, 0, 0, 4585, 4593, 5, 216, 0, 0, 4586, 4593, 5, 27, 0, 0, 4587, 4593, 5, 370, 0, 0, 4588, 4593, 5, 263, 0, 0, 4589, 4593, 5, 25, 0, 0, 4590, 4593, 5, 62, 0, 0, 4591, 4593, 5, 17, 0, 0, 4592, 4541, 1, 0, 0, 0, 4592, 4542, 1, 0, 0, 0, 4592, 4543, 1, 0, 0, 0, 4592, 4544, 1, 0, 0, 0, 4592, 4545, 1, 0, 0, 0, 4592, 4546, 1, 0, 0, 0, 4592, 4547, 1, 0, 0, 0, 4592, 4548, 1, 0, 0, 0, 4592, 4549, 1, 0, 0, 0, 4592, 4550, 1, 0, 0, 0, 4592, 4551, 1, 0, 0, 0, 4592, 4552, 1, 0, 0, 0, 4592, 4553, 1, 0, 0, 0, 4592, 4554, 1, 0, 0, 0, 4592, 4555, 1, 0, 0, 0, 4592, 4556, 1, 0, 0, 0, 4592, 4557, 1, 0, 0, 0, 4592, 4558, 1, 0, 0, 0, 4592, 4559, 1, 0, 0, 0, 4592, 4560, 1, 0, 0, 0, 4592, 4561, 1, 0, 0, 0, 4592, 4562, 1, 0, 0, 0, 4592, 4563, 1, 0, 0, 0, 4592, 4564, 1, 0, 0, 0, 4592, 4565, 1, 0, 0, 0, 4592, 4566, 1, 0, 0, 0, 4592, 4567, 1, 0, 0, 0, 4592, 4568, 1, 0, 0, 0, 4592, 4569, 1, 0, 0, 0, 4592, 4570, 1, 0, 0, 0, 4592, 4571, 1, 0, 0, 0, 4592, 4572, 1, 0, 0, 0, 4592, 4573, 1, 0, 0, 0, 4592, 4574, 1, 0, 0, 0, 4592, 4575, 1, 0, 0, 0, 4592, 4576, 1, 0, 0, 0, 4592, 4577, 1, 0, 0, 0, 4592, 4578, 1, 0, 0, 0, 4592, 4579, 1, 0, 0, 0, 4592, 4580, 1, 0, 0, 0, 4592, 4581, 1, 0, 0, 0, 4592, 4582, 1, 0, 0, 0, 4592, 4583, 1, 0, 0, 0, 4592, 4584, 1, 0, 0, 0, 4592, 4585, 1, 0, 0, 0, 4592, 4586, 1, 0, 0, 0, 4592, 4587, 1, 0, 0, 0, 4592, 4588, 1, 0, 0, 0, 4592, 4589, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4592, 4591, 1, 0, 0, 0, 4593, 665, 1, 0, 0, 0, 4594, 4595, 5, 58, 0, 0, 4595, 4596, 5, 280, 0, 0, 4596, 4598, 5, 243, 0, 0, 4597, 4599, 3, 32, 16, 0, 4598, 4597, 1, 0, 0, 0, 4598, 4599, 1, 0, 0, 0, 4599, 4609, 1, 0, 0, 0, 4600, 4601, 3, 654, 327, 0, 4601, 4602, 5, 184, 0, 0, 4602, 4603, 3, 654, 327, 0, 4603, 4610, 1, 0, 0, 0, 4604, 4607, 3, 654, 327, 0, 4605, 4606, 5, 387, 0, 0, 4606, 4608, 3, 672, 336, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4610, 1, 0, 0, 0, 4609, 4600, 1, 0, 0, 0, 4609, 4604, 1, 0, 0, 0, 4610, 4760, 1, 0, 0, 0, 4611, 4612, 5, 9, 0, 0, 4612, 4613, 5, 280, 0, 0, 4613, 4614, 5, 243, 0, 0, 4614, 4639, 3, 654, 327, 0, 4615, 4640, 5, 373, 0, 0, 4616, 4640, 3, 680, 340, 0, 4617, 4618, 5, 304, 0, 0, 4618, 4640, 3, 672, 336, 0, 4619, 4620, 5, 363, 0, 0, 4620, 4625, 3, 674, 337, 0, 4621, 4622, 5, 397, 0, 0, 4622, 4624, 3, 674, 337, 0, 4623, 4621, 1, 0, 0, 0, 4624, 4627, 1, 0, 0, 0, 4625, 4623, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4640, 1, 0, 0, 0, 4627, 4625, 1, 0, 0, 0, 4628, 4629, 5, 274, 0, 0, 4629, 4630, 5, 341, 0, 0, 4630, 4640, 3, 654, 327, 0, 4631, 4633, 3, 676, 338, 0, 4632, 4634, 3, 678, 339, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4640, 1, 0, 0, 0, 4635, 4637, 3, 678, 339, 0, 4636, 4638, 3, 676, 338, 0, 4637, 4636, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4640, 1, 0, 0, 0, 4639, 4615, 1, 0, 0, 0, 4639, 4616, 1, 0, 0, 0, 4639, 4617, 1, 0, 0, 0, 4639, 4619, 1, 0, 0, 0, 4639, 4628, 1, 0, 0, 0, 4639, 4631, 1, 0, 0, 0, 4639, 4635, 1, 0, 0, 0, 4640, 4760, 1, 0, 0, 0, 4641, 4642, 5, 101, 0, 0, 4642, 4643, 5, 280, 0, 0, 4643, 4645, 5, 243, 0, 0, 4644, 4646, 3, 30, 15, 0, 4645, 4644, 1, 0, 0, 0, 4645, 4646, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4760, 3, 654, 327, 0, 4648, 4651, 3, 678, 339, 0, 4649, 4651, 3, 680, 340, 0, 4650, 4648, 1, 0, 0, 0, 4650, 4649, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4653, 5, 390, 0, 0, 4653, 4654, 5, 197, 0, 0, 4654, 4760, 1, 0, 0, 0, 4655, 4667, 5, 278, 0, 0, 4656, 4657, 5, 3, 0, 0, 4657, 4658, 5, 280, 0, 0, 4658, 4659, 5, 243, 0, 0, 4659, 4660, 5, 387, 0, 0, 4660, 4668, 3, 654, 327, 0, 4661, 4662, 5, 280, 0, 0, 4662, 4663, 5, 243, 0, 0, 4663, 4664, 3, 654, 327, 0, 4664, 4665, 5, 387, 0, 0, 4665, 4666, 3, 654, 327, 0, 4666, 4668, 1, 0, 0, 0, 4667, 4656, 1, 0, 0, 0, 4667, 4661, 1, 0, 0, 0, 4668, 4760, 1, 0, 0, 0, 4669, 4670, 5, 58, 0, 0, 4670, 4671, 5, 348, 0, 0, 4671, 4672, 3, 654, 327, 0, 4672, 4673, 5, 395, 0, 0, 4673, 4674, 3, 654, 327, 0, 4674, 4675, 5, 383, 0, 0, 4675, 4676, 3, 704, 352, 0, 4676, 4677, 5, 99, 0, 0, 4677, 4678, 3, 706, 353, 0, 4678, 4760, 1, 0, 0, 0, 4679, 4680, 5, 9, 0, 0, 4680, 4681, 5, 348, 0, 0, 4681, 4682, 3, 654, 327, 0, 4682, 4683, 5, 395, 0, 0, 4683, 4700, 3, 654, 327, 0, 4684, 4685, 5, 383, 0, 0, 4685, 4686, 3, 704, 352, 0, 4686, 4687, 5, 99, 0, 0, 4687, 4688, 3, 706, 353, 0, 4688, 4701, 1, 0, 0, 0, 4689, 4690, 5, 4, 0, 0, 4690, 4694, 5, 341, 0, 0, 4691, 4692, 5, 101, 0, 0, 4692, 4694, 5, 139, 0, 0, 4693, 4689, 1, 0, 0, 0, 4693, 4691, 1, 0, 0, 0, 4694, 4698, 1, 0, 0, 0, 4695, 4696, 5, 246, 0, 0, 4696, 4699, 3, 700, 350, 0, 4697, 4699, 5, 362, 0, 0, 4698, 4695, 1, 0, 0, 0, 4698, 4697, 1, 0, 0, 0, 4699, 4701, 1, 0, 0, 0, 4700, 4684, 1, 0, 0, 0, 4700, 4693, 1, 0, 0, 0, 4701, 4760, 1, 0, 0, 0, 4702, 4703, 5, 101, 0, 0, 4703, 4704, 5, 348, 0, 0, 4704, 4705, 3, 654, 327, 0, 4705, 4706, 5, 395, 0, 0, 4706, 4707, 3, 654, 327, 0, 4707, 4760, 1, 0, 0, 0, 4708, 4709, 5, 58, 0, 0, 4709, 4710, 5, 246, 0, 0, 4710, 4711, 3, 654, 327, 0, 4711, 4712, 5, 395, 0, 0, 4712, 4713, 3, 700, 350, 0, 4713, 4714, 5, 387, 0, 0, 4714, 4715, 3, 710, 355, 0, 4715, 4760, 1, 0, 0, 0, 4716, 4717, 5, 9, 0, 0, 4717, 4718, 5, 246, 0, 0, 4718, 4719, 3, 654, 327, 0, 4719, 4720, 5, 395, 0, 0, 4720, 4728, 3, 700, 350, 0, 4721, 4722, 5, 304, 0, 0, 4722, 4729, 3, 710, 355, 0, 4723, 4724, 5, 363, 0, 0, 4724, 4729, 5, 294, 0, 0, 4725, 4726, 7, 48, 0, 0, 4726, 4727, 5, 348, 0, 0, 4727, 4729, 3, 654, 327, 0, 4728, 4721, 1, 0, 0, 0, 4728, 4723, 1, 0, 0, 0, 4728, 4725, 1, 0, 0, 0, 4729, 4760, 1, 0, 0, 0, 4730, 4731, 5, 101, 0, 0, 4731, 4732, 5, 246, 0, 0, 4732, 4733, 3, 654, 327, 0, 4733, 4734, 5, 395, 0, 0, 4734, 4735, 3, 700, 350, 0, 4735, 4760, 1, 0, 0, 0, 4736, 4737, 7, 49, 0, 0, 4737, 4738, 3, 668, 334, 0, 4738, 4739, 5, 200, 0, 0, 4739, 4740, 5, 426, 0, 0, 4740, 4741, 5, 154, 0, 0, 4741, 4745, 3, 654, 327, 0, 4742, 4743, 5, 341, 0, 0, 4743, 4746, 3, 700, 350, 0, 4744, 4746, 5, 362, 0, 0, 4745, 4742, 1, 0, 0, 0, 4745, 4744, 1, 0, 0, 0, 4746, 4750, 1, 0, 0, 0, 4747, 4748, 5, 387, 0, 0, 4748, 4749, 5, 229, 0, 0, 4749, 4751, 5, 431, 0, 0, 4750, 4747, 1, 0, 0, 0, 4750, 4751, 1, 0, 0, 0, 4751, 4760, 1, 0, 0, 0, 4752, 4753, 5, 101, 0, 0, 4753, 4754, 3, 668, 334, 0, 4754, 4755, 5, 200, 0, 0, 4755, 4756, 5, 426, 0, 0, 4756, 4757, 5, 154, 0, 0, 4757, 4758, 3, 654, 327, 0, 4758, 4760, 1, 0, 0, 0, 4759, 4594, 1, 0, 0, 0, 4759, 4611, 1, 0, 0, 0, 4759, 4641, 1, 0, 0, 0, 4759, 4650, 1, 0, 0, 0, 4759, 4655, 1, 0, 0, 0, 4759, 4669, 1, 0, 0, 0, 4759, 4679, 1, 0, 0, 0, 4759, 4702, 1, 0, 0, 0, 4759, 4708, 1, 0, 0, 0, 4759, 4716, 1, 0, 0, 0, 4759, 4730, 1, 0, 0, 0, 4759, 4736, 1, 0, 0, 0, 4759, 4752, 1, 0, 0, 0, 4760, 667, 1, 0, 0, 0, 4761, 4762, 7, 50, 0, 0, 4762, 669, 1, 0, 0, 0, 4763, 4764, 5, 259, 0, 0, 4764, 4765, 5, 405, 0, 0, 4765, 4771, 5, 431, 0, 0, 4766, 4767, 5, 83, 0, 0, 4767, 4768, 5, 246, 0, 0, 4768, 4769, 5, 405, 0, 0, 4769, 4771, 3, 700, 350, 0, 4770, 4763, 1, 0, 0, 0, 4770, 4766, 1, 0, 0, 0, 4771, 671, 1, 0, 0, 0, 4772, 4777, 3, 670, 335, 0, 4773, 4774, 5, 397, 0, 0, 4774, 4776, 3, 670, 335, 0, 4775, 4773, 1, 0, 0, 0, 4776, 4779, 1, 0, 0, 0, 4777, 4775, 1, 0, 0, 0, 4777, 4778, 1, 0, 0, 0, 4778, 673, 1, 0, 0, 0, 4779, 4777, 1, 0, 0, 0, 4780, 4784, 5, 259, 0, 0, 4781, 4782, 5, 83, 0, 0, 4782, 4784, 5, 246, 0, 0, 4783, 4780, 1, 0, 0, 0, 4783, 4781, 1, 0, 0, 0, 4784, 675, 1, 0, 0, 0, 4785, 4788, 5, 2, 0, 0, 4786, 4787, 5, 387, 0, 0, 4787, 4789, 5, 278, 0, 0, 4788, 4786, 1, 0, 0, 0, 4788, 4789, 1, 0, 0, 0, 4789, 677, 1, 0, 0, 0, 4790, 4791, 7, 51, 0, 0, 4791, 679, 1, 0, 0, 0, 4792, 4793, 7, 52, 0, 0, 4793, 681, 1, 0, 0, 0, 4794, 4795, 7, 53, 0, 0, 4795, 683, 1, 0, 0, 0, 4796, 4797, 7, 54, 0, 0, 4797, 685, 1, 0, 0, 0, 4798, 4799, 7, 55, 0, 0, 4799, 687, 1, 0, 0, 0, 4800, 4801, 7, 56, 0, 0, 4801, 689, 1, 0, 0, 0, 4802, 4803, 7, 57, 0, 0, 4803, 691, 1, 0, 0, 0, 4804, 4805, 7, 58, 0, 0, 4805, 693, 1, 0, 0, 0, 4806, 4807, 7, 59, 0, 0, 4807, 695, 1, 0, 0, 0, 4808, 4809, 7, 60, 0, 0, 4809, 697, 1, 0, 0, 0, 4810, 4811, 1, 0, 0, 0, 4811, 699, 1, 0, 0, 0, 4812, 4817, 3, 654, 327, 0, 4813, 4814, 5, 395, 0, 0, 4814, 4816, 3, 654, 327, 0, 4815, 4813, 1, 0, 0, 0, 4816, 4819, 1, 0, 0, 0, 4817, 4815, 1, 0, 0, 0, 4817, 4818, 1, 0, 0, 0, 4818, 701, 1, 0, 0, 0, 4819, 4817, 1, 0, 0, 0, 4820, 4825, 3, 654, 327, 0, 4821, 4822, 5, 395, 0, 0, 4822, 4824, 3, 654, 327, 0, 4823, 4821, 1, 0, 0, 0, 4824, 4827, 1, 0, 0, 0, 4825, 4823, 1, 0, 0, 0, 4825, 4826, 1, 0, 0, 0, 4826, 4838, 1, 0, 0, 0, 4827, 4825, 1, 0, 0, 0, 4828, 4829, 4, 351, 2, 0, 4829, 4834, 3, 654, 327, 0, 4830, 4831, 5, 395, 0, 0, 4831, 4833, 3, 698, 349, 0, 4832, 4830, 1, 0, 0, 0, 4833, 4836, 1, 0, 0, 0, 4834, 4832, 1, 0, 0, 0, 4834, 4835, 1, 0, 0, 0, 4835, 4838, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4837, 4820, 1, 0, 0, 0, 4837, 4828, 1, 0, 0, 0, 4838, 703, 1, 0, 0, 0, 4839, 4840, 3, 654, 327, 0, 4840, 4841, 5, 411, 0, 0, 4841, 4842, 7, 27, 0, 0, 4842, 705, 1, 0, 0, 0, 4843, 4848, 5, 176, 0, 0, 4844, 4845, 5, 211, 0, 0, 4845, 4846, 5, 341, 0, 0, 4846, 4848, 3, 700, 350, 0, 4847, 4843, 1, 0, 0, 0, 4847, 4844, 1, 0, 0, 0, 4848, 707, 1, 0, 0, 0, 4849, 4850, 5, 8, 0, 0, 4850, 4851, 5, 405, 0, 0, 4851, 4862, 5, 431, 0, 0, 4852, 4853, 5, 259, 0, 0, 4853, 4854, 5, 405, 0, 0, 4854, 4862, 5, 431, 0, 0, 4855, 4856, 5, 294, 0, 0, 4856, 4857, 5, 405, 0, 0, 4857, 4862, 5, 426, 0, 0, 4858, 4859, 5, 240, 0, 0, 4859, 4860, 5, 405, 0, 0, 4860, 4862, 3, 700, 350, 0, 4861, 4849, 1, 0, 0, 0, 4861, 4852, 1, 0, 0, 0, 4861, 4855, 1, 0, 0, 0, 4861, 4858, 1, 0, 0, 0, 4862, 709, 1, 0, 0, 0, 4863, 4868, 3, 708, 354, 0, 4864, 4865, 5, 397, 0, 0, 4865, 4867, 3, 708, 354, 0, 4866, 4864, 1, 0, 0, 0, 4867, 4870, 1, 0, 0, 0, 4868, 4866, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 711, 1, 0, 0, 0, 4870, 4868, 1, 0, 0, 0, 629, 715, 722, 725, 731, 737, 744, 754, 757, 761, 776, 783, 789, 794, 799, 802, 826, 833, 836, 841, 846, 852, 856, 869, 873, 877, 882, 889, 893, 898, 905, 909, 914, 962, 969, 974, 997, 1001, 1005, 1008, 1012, 1017, 1023, 1027, 1033, 1035, 1046, 1050, 1057, 1065, 1068, 1073, 1077, 1080, 1090, 1098, 1102, 1105, 1109, 1113, 1116, 1121, 1127, 1132, 1137, 1141, 1152, 1154, 1158, 1168, 1172, 1178, 1181, 1188, 1193, 1201, 1206, 1210, 1218, 1223, 1229, 1235, 1238, 1241, 1244, 1253, 1261, 1266, 1274, 1281, 1284, 1287, 1289, 1300, 1302, 1305, 1308, 1311, 1314, 1317, 1319, 1331, 1337, 1345, 1347, 1357, 1390, 1395, 1399, 1403, 1410, 1417, 1423, 1427, 1430, 1437, 1460, 1465, 1469, 1477, 1486, 1493, 1499, 1506, 1509, 1515, 1522, 1530, 1539, 1548, 1555, 1575, 1582, 1584, 1591, 1601, 1609, 1613, 1617, 1630, 1639, 1655, 1659, 1664, 1669, 1672, 1675, 1678, 1681, 1684, 1689, 1698, 1702, 1709, 1712, 1715, 1718, 1730, 1736, 1762, 1770, 1774, 1777, 1780, 1783, 1786, 1789, 1792, 1795, 1804, 1814, 1817, 1837, 1843, 1849, 1852, 1854, 1861, 1868, 1881, 1886, 1895, 1903, 1911, 1924, 1937, 1953, 1957, 1972, 1978, 1981, 1984, 1987, 1990, 1994, 2009, 2012, 2023, 2037, 2071, 2079, 2084, 2092, 2097, 2102, 2109, 2117, 2125, 2133, 2139, 2146, 2156, 2160, 2168, 2177, 2180, 2184, 2191, 2197, 2201, 2207, 2211, 2223, 2232, 2243, 2247, 2254, 2266, 2276, 2279, 2286, 2292, 2296, 2299, 2302, 2308, 2312, 2316, 2321, 2325, 2329, 2333, 2341, 2345, 2349, 2353, 2357, 2365, 2369, 2373, 2381, 2386, 2391, 2395, 2399, 2406, 2415, 2423, 2435, 2453, 2456, 2462, 2488, 2491, 2497, 2505, 2513, 2526, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2554, 2557, 2560, 2563, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2589, 2592, 2595, 2598, 2600, 2606, 2610, 2613, 2616, 2619, 2622, 2625, 2632, 2636, 2639, 2642, 2645, 2648, 2651, 2658, 2661, 2669, 2673, 2680, 2682, 2685, 2690, 2693, 2697, 2702, 2708, 2716, 2724, 2734, 2737, 2741, 2745, 2750, 2757, 2761, 2763, 2767, 2774, 2779, 2792, 2800, 2819, 2829, 2842, 2852, 2856, 2860, 2866, 2873, 2880, 2889, 2896, 2916, 2919, 2933, 2948, 2952, 2972, 2984, 2990, 2993, 2996, 3002, 3008, 3015, 3023, 3029, 3033, 3038, 3041, 3045, 3052, 3057, 3062, 3065, 3067, 3075, 3083, 3087, 3091, 3095, 3112, 3129, 3136, 3145, 3150, 3153, 3156, 3160, 3175, 3189, 3192, 3203, 3207, 3210, 3213, 3217, 3222, 3225, 3228, 3231, 3234, 3237, 3243, 3246, 3249, 3252, 3255, 3258, 3261, 3264, 3267, 3270, 3274, 3276, 3282, 3287, 3290, 3293, 3296, 3299, 3305, 3308, 3311, 3314, 3317, 3320, 3323, 3326, 3329, 3332, 3336, 3338, 3340, 3345, 3350, 3354, 3358, 3363, 3368, 3377, 3387, 3395, 3407, 3410, 3416, 3423, 3430, 3437, 3444, 3454, 3456, 3460, 3464, 3471, 3476, 3480, 3484, 3487, 3490, 3501, 3505, 3507, 3510, 3523, 3526, 3529, 3541, 3544, 3551, 3560, 3565, 3567, 3569, 3586, 3589, 3597, 3600, 3604, 3607, 3610, 3613, 3616, 3628, 3636, 3643, 3646, 3653, 3656, 3661, 3668, 3676, 3682, 3687, 3691, 3696, 3700, 3707, 3721, 3724, 3731, 3739, 3749, 3752, 3761, 3770, 3773, 3779, 3782, 3787, 3790, 3803, 3809, 3811, 3821, 3827, 3830, 3840, 3845, 3847, 3863, 3869, 3871, 3878, 3885, 3899, 3905, 3908, 3911, 3914, 3923, 3930, 3936, 3945, 3949, 3957, 3967, 3977, 3982, 3986, 3992, 3997, 4002, 4009, 4013, 4016, 4021, 4024, 4028, 4033, 4044, 4046, 4055, 4078, 4088, 4091, 4098, 4101, 4111, 4118, 4121, 4123, 4134, 4144, 4146, 4155, 4160, 4169, 4182, 4186, 4198, 4202, 4211, 4230, 4248, 4260, 4275, 4279, 4295, 4302, 4316, 4321, 4331, 4333, 4341, 4349, 4357, 4365, 4373, 4381, 4392, 4396, 4404, 4420, 4424, 4429, 4442, 4451, 4453, 4462, 4467, 4473, 4480, 4485, 4494, 4502, 4510, 4518, 4528, 4533, 4592, 4598, 4607, 4609, 4625, 4633, 4637, 4639, 4645, 4650, 4667, 4693, 4698, 4700, 4728, 4745, 4750, 4759, 4770, 4777, 4783, 4788, 4817, 4825, 4834, 4837, 4847, 4861, 4868] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index 8a9e3444..51ff2c86 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -585,229 +585,232 @@ export class HiveSqlParser extends SQLParserBase { public static readonly RULE_columnNameList = 127; public static readonly RULE_columnName = 128; public static readonly RULE_columnNamePath = 129; - public static readonly RULE_columnNameCreate = 130; - public static readonly RULE_extColumnName = 131; - public static readonly RULE_columnNameOrderList = 132; - public static readonly RULE_columnParenthesesList = 133; - public static readonly RULE_enableValidateSpecification = 134; - public static readonly RULE_enableSpecification = 135; - public static readonly RULE_validateSpecification = 136; - public static readonly RULE_enforcedSpecification = 137; - public static readonly RULE_relySpecification = 138; - public static readonly RULE_createConstraint = 139; - public static readonly RULE_alterConstraintWithName = 140; - public static readonly RULE_tableLevelConstraint = 141; - public static readonly RULE_pkUkConstraint = 142; - public static readonly RULE_checkConstraint = 143; - public static readonly RULE_createForeignKey = 144; - public static readonly RULE_alterForeignKeyWithName = 145; - public static readonly RULE_skewedValueElement = 146; - public static readonly RULE_skewedColumnValuePairList = 147; - public static readonly RULE_skewedColumnValuePair = 148; - public static readonly RULE_constantList = 149; - public static readonly RULE_orderSpecification = 150; - public static readonly RULE_nullOrdering = 151; - public static readonly RULE_columnNameOrder = 152; - public static readonly RULE_columnNameCommentList = 153; - public static readonly RULE_columnNameComment = 154; - public static readonly RULE_columnRefOrder = 155; - public static readonly RULE_columnNameType = 156; - public static readonly RULE_columnNameTypeOrConstraint = 157; - public static readonly RULE_tableConstraint = 158; - public static readonly RULE_columnNameTypeConstraint = 159; - public static readonly RULE_columnConstraint = 160; - public static readonly RULE_foreignKeyConstraint = 161; - public static readonly RULE_colConstraint = 162; - public static readonly RULE_alterColumnConstraint = 163; - public static readonly RULE_alterForeignKeyConstraint = 164; - public static readonly RULE_alterColConstraint = 165; - public static readonly RULE_columnConstraintType = 166; - public static readonly RULE_defaultVal = 167; - public static readonly RULE_tableConstraintType = 168; - public static readonly RULE_constraintOptsCreate = 169; - public static readonly RULE_constraintOptsAlter = 170; - public static readonly RULE_columnNameColonType = 171; - public static readonly RULE_columnType = 172; - public static readonly RULE_columnTypeList = 173; - public static readonly RULE_type = 174; - public static readonly RULE_primitiveType = 175; - public static readonly RULE_listType = 176; - public static readonly RULE_structType = 177; - public static readonly RULE_mapType = 178; - public static readonly RULE_unionType = 179; - public static readonly RULE_setOperator = 180; - public static readonly RULE_queryStatementExpression = 181; - public static readonly RULE_queryStatementExpressionBody = 182; - public static readonly RULE_withClause = 183; - public static readonly RULE_cteStatement = 184; - public static readonly RULE_fromStatement = 185; - public static readonly RULE_singleFromStatement = 186; - public static readonly RULE_regularBody = 187; - public static readonly RULE_atomSelectStatement = 188; - public static readonly RULE_selectStatement = 189; - public static readonly RULE_setOpSelectStatement = 190; - public static readonly RULE_selectStatementWithCTE = 191; - public static readonly RULE_insertClause = 192; - public static readonly RULE_destination = 193; - public static readonly RULE_limitClause = 194; - public static readonly RULE_columnAssignmentClause = 195; - public static readonly RULE_precedencePlusExpressionOrDefault = 196; - public static readonly RULE_setColumnsClause = 197; - public static readonly RULE_sqlTransactionStatement = 198; - public static readonly RULE_transactionMode = 199; - public static readonly RULE_whenClauses = 200; - public static readonly RULE_whenNotMatchedClause = 201; - public static readonly RULE_whenMatchedAndClause = 202; - public static readonly RULE_whenMatchedThenClause = 203; - public static readonly RULE_compactionPool = 204; - public static readonly RULE_compactionType = 205; - public static readonly RULE_compactionStatus = 206; - public static readonly RULE_alterStatement = 207; - public static readonly RULE_alterTableStatementSuffix = 208; - public static readonly RULE_alterTblPartitionStatementSuffix = 209; - public static readonly RULE_alterViewStatementSuffix = 210; - public static readonly RULE_alterDatabaseStatementSuffix = 211; - public static readonly RULE_alterDataConnectorStatementSuffix = 212; - public static readonly RULE_locationPath = 213; - public static readonly RULE_alterStatementSuffixDropPartitions = 214; - public static readonly RULE_skewedLocationMap = 215; - public static readonly RULE_alterStatementSuffixExecute = 216; - public static readonly RULE_fileFormat = 217; - public static readonly RULE_likeTableOrFile = 218; - public static readonly RULE_createTableStatement = 219; - public static readonly RULE_createDataConnectorStatement = 220; - public static readonly RULE_dropDataConnectorStatement = 221; - public static readonly RULE_tableAllColumns = 222; - public static readonly RULE_expressionList = 223; - public static readonly RULE_aliasList = 224; - public static readonly RULE_fromClause = 225; - public static readonly RULE_fromSource = 226; - public static readonly RULE_atomjoinSource = 227; - public static readonly RULE_joinSource = 228; - public static readonly RULE_joinSourcePart = 229; - public static readonly RULE_uniqueJoinSource = 230; - public static readonly RULE_joinToken = 231; - public static readonly RULE_lateralView = 232; - public static readonly RULE_tableAlias = 233; - public static readonly RULE_tableSample = 234; - public static readonly RULE_tableSource = 235; - public static readonly RULE_asOfClause = 236; - public static readonly RULE_dbSchemaName = 237; - public static readonly RULE_dbSchemaNameCreate = 238; - public static readonly RULE_tableOrView = 239; - public static readonly RULE_tableName = 240; - public static readonly RULE_tableNameCreate = 241; - public static readonly RULE_viewName = 242; - public static readonly RULE_viewNameCreate = 243; - public static readonly RULE_subQuerySource = 244; - public static readonly RULE_partitioningSpec = 245; - public static readonly RULE_partitionTableFunctionSource = 246; - public static readonly RULE_partitionedTableFunction = 247; - public static readonly RULE_atomPartitionedTableFunction = 248; - public static readonly RULE_whereClause = 249; - public static readonly RULE_valuesClause = 250; - public static readonly RULE_atomValuesClause = 251; - public static readonly RULE_virtualTableSource = 252; - public static readonly RULE_selectClause = 253; - public static readonly RULE_selectTrfmClause = 254; - public static readonly RULE_selectList = 255; - public static readonly RULE_selectItem = 256; - public static readonly RULE_selectLiteralColumnName = 257; - public static readonly RULE_selectExpressionColumnName = 258; - public static readonly RULE_trfmClause = 259; - public static readonly RULE_selectExpression = 260; - public static readonly RULE_selectExpressionList = 261; - public static readonly RULE_window_clause = 262; - public static readonly RULE_window_specification = 263; - public static readonly RULE_window_frame = 264; - public static readonly RULE_window_frame_boundary = 265; - public static readonly RULE_groupByClause = 266; - public static readonly RULE_rollupStandard = 267; - public static readonly RULE_rollupOldSyntax = 268; - public static readonly RULE_groupingSetExpression = 269; - public static readonly RULE_havingClause = 270; - public static readonly RULE_qualifyClause = 271; - public static readonly RULE_expressionOrDefault = 272; - public static readonly RULE_firstExpressionsWithAlias = 273; - public static readonly RULE_expressions = 274; - public static readonly RULE_expressionsInParenthesis = 275; - public static readonly RULE_expressionsNotInParenthesis = 276; - public static readonly RULE_orderByClause = 277; - public static readonly RULE_partitionByClause = 278; - public static readonly RULE_clusterByClause = 279; - public static readonly RULE_distributeByClause = 280; - public static readonly RULE_sortByClause = 281; - public static readonly RULE_function_ = 282; - public static readonly RULE_null_treatment = 283; - public static readonly RULE_functionNameCreate = 284; - public static readonly RULE_functionNameForDDL = 285; - public static readonly RULE_functionNameForInvoke = 286; - public static readonly RULE_castExpression = 287; - public static readonly RULE_caseExpression = 288; - public static readonly RULE_whenExpression = 289; - public static readonly RULE_floorExpression = 290; - public static readonly RULE_extractExpression = 291; - public static readonly RULE_timeQualifiers = 292; - public static readonly RULE_constant = 293; - public static readonly RULE_intervalValue = 294; - public static readonly RULE_intervalExpression = 295; - public static readonly RULE_intervalQualifiers = 296; - public static readonly RULE_expression = 297; - public static readonly RULE_atomExpression = 298; - public static readonly RULE_precedenceUnaryPrefixExpression = 299; - public static readonly RULE_precedenceBitwiseXorExpression = 300; - public static readonly RULE_precedenceStarExpression = 301; - public static readonly RULE_precedencePlusExpression = 302; - public static readonly RULE_precedenceConcatenateExpression = 303; - public static readonly RULE_precedenceAmpersandExpression = 304; - public static readonly RULE_precedenceBitwiseOrExpression = 305; - public static readonly RULE_precedenceSimilarOperator = 306; - public static readonly RULE_subQueryExpression = 307; - public static readonly RULE_precedenceSimilarExpression = 308; - public static readonly RULE_precedenceSimilarExpressionPart = 309; - public static readonly RULE_precedenceSimilarExpressionAtom = 310; - public static readonly RULE_precedenceSimilarExpressionIn = 311; - public static readonly RULE_precedenceSimilarExpressionPartNot = 312; - public static readonly RULE_precedenceDistinctOperator = 313; - public static readonly RULE_precedenceEqualOperator = 314; - public static readonly RULE_precedenceEqualExpression = 315; - public static readonly RULE_isCondition = 316; - public static readonly RULE_precedenceNotExpression = 317; - public static readonly RULE_precedenceAndExpression = 318; - public static readonly RULE_tableOrPartition = 319; - public static readonly RULE_partitionSpec = 320; - public static readonly RULE_partitionVal = 321; - public static readonly RULE_partitionSelectorSpec = 322; - public static readonly RULE_partitionSelectorVal = 323; - public static readonly RULE_subQuerySelectorOperator = 324; - public static readonly RULE_sysFuncNames = 325; - public static readonly RULE_id_ = 326; - public static readonly RULE_functionIdentifier = 327; - public static readonly RULE_principalIdentifier = 328; - public static readonly RULE_nonReserved = 329; - public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 330; - public static readonly RULE_configPropertiesItem = 331; - public static readonly RULE_resourcePlanDdlStatements = 332; - public static readonly RULE_mappingTypes = 333; - public static readonly RULE_rpAssign = 334; - public static readonly RULE_rpAssignList = 335; - public static readonly RULE_rpUnassign = 336; - public static readonly RULE_activate = 337; - public static readonly RULE_enable = 338; - public static readonly RULE_disable = 339; - public static readonly RULE_year = 340; - public static readonly RULE_month = 341; - public static readonly RULE_week = 342; - public static readonly RULE_day = 343; - public static readonly RULE_hour = 344; - public static readonly RULE_minute = 345; - public static readonly RULE_second = 346; - public static readonly RULE_decimal = 347; - public static readonly RULE_poolPath = 348; - public static readonly RULE_triggerAtomExpression = 349; - public static readonly RULE_triggerActionExpression = 350; - public static readonly RULE_poolAssign = 351; - public static readonly RULE_poolAssignList = 352; + public static readonly RULE_columnNamePathAllowEmpty = 130; + public static readonly RULE_columnNameCreate = 131; + public static readonly RULE_extColumnName = 132; + public static readonly RULE_columnNameOrderList = 133; + public static readonly RULE_columnParenthesesList = 134; + public static readonly RULE_enableValidateSpecification = 135; + public static readonly RULE_enableSpecification = 136; + public static readonly RULE_validateSpecification = 137; + public static readonly RULE_enforcedSpecification = 138; + public static readonly RULE_relySpecification = 139; + public static readonly RULE_createConstraint = 140; + public static readonly RULE_alterConstraintWithName = 141; + public static readonly RULE_tableLevelConstraint = 142; + public static readonly RULE_pkUkConstraint = 143; + public static readonly RULE_checkConstraint = 144; + public static readonly RULE_createForeignKey = 145; + public static readonly RULE_alterForeignKeyWithName = 146; + public static readonly RULE_skewedValueElement = 147; + public static readonly RULE_skewedColumnValuePairList = 148; + public static readonly RULE_skewedColumnValuePair = 149; + public static readonly RULE_constantList = 150; + public static readonly RULE_orderSpecification = 151; + public static readonly RULE_nullOrdering = 152; + public static readonly RULE_columnNameOrder = 153; + public static readonly RULE_columnNameCommentList = 154; + public static readonly RULE_columnNameComment = 155; + public static readonly RULE_columnRefOrder = 156; + public static readonly RULE_columnNameType = 157; + public static readonly RULE_columnNameTypeOrConstraint = 158; + public static readonly RULE_tableConstraint = 159; + public static readonly RULE_columnNameTypeConstraint = 160; + public static readonly RULE_columnConstraint = 161; + public static readonly RULE_foreignKeyConstraint = 162; + public static readonly RULE_colConstraint = 163; + public static readonly RULE_alterColumnConstraint = 164; + public static readonly RULE_alterForeignKeyConstraint = 165; + public static readonly RULE_alterColConstraint = 166; + public static readonly RULE_columnConstraintType = 167; + public static readonly RULE_defaultVal = 168; + public static readonly RULE_tableConstraintType = 169; + public static readonly RULE_constraintOptsCreate = 170; + public static readonly RULE_constraintOptsAlter = 171; + public static readonly RULE_columnNameColonType = 172; + public static readonly RULE_columnType = 173; + public static readonly RULE_columnTypeList = 174; + public static readonly RULE_type = 175; + public static readonly RULE_primitiveType = 176; + public static readonly RULE_listType = 177; + public static readonly RULE_structType = 178; + public static readonly RULE_mapType = 179; + public static readonly RULE_unionType = 180; + public static readonly RULE_setOperator = 181; + public static readonly RULE_queryStatementExpression = 182; + public static readonly RULE_queryStatementExpressionBody = 183; + public static readonly RULE_withClause = 184; + public static readonly RULE_cteStatement = 185; + public static readonly RULE_fromStatement = 186; + public static readonly RULE_singleFromStatement = 187; + public static readonly RULE_regularBody = 188; + public static readonly RULE_atomSelectStatement = 189; + public static readonly RULE_selectStatement = 190; + public static readonly RULE_setOpSelectStatement = 191; + public static readonly RULE_selectStatementWithCTE = 192; + public static readonly RULE_insertClause = 193; + public static readonly RULE_destination = 194; + public static readonly RULE_limitClause = 195; + public static readonly RULE_columnAssignmentClause = 196; + public static readonly RULE_precedencePlusExpressionOrDefault = 197; + public static readonly RULE_setColumnsClause = 198; + public static readonly RULE_sqlTransactionStatement = 199; + public static readonly RULE_transactionMode = 200; + public static readonly RULE_whenClauses = 201; + public static readonly RULE_whenNotMatchedClause = 202; + public static readonly RULE_whenMatchedAndClause = 203; + public static readonly RULE_whenMatchedThenClause = 204; + public static readonly RULE_compactionPool = 205; + public static readonly RULE_compactionType = 206; + public static readonly RULE_compactionStatus = 207; + public static readonly RULE_alterStatement = 208; + public static readonly RULE_alterTableStatementSuffix = 209; + public static readonly RULE_alterTblPartitionStatementSuffix = 210; + public static readonly RULE_alterViewStatementSuffix = 211; + public static readonly RULE_alterDatabaseStatementSuffix = 212; + public static readonly RULE_alterDataConnectorStatementSuffix = 213; + public static readonly RULE_locationPath = 214; + public static readonly RULE_alterStatementSuffixDropPartitions = 215; + public static readonly RULE_skewedLocationMap = 216; + public static readonly RULE_alterStatementSuffixExecute = 217; + public static readonly RULE_fileFormat = 218; + public static readonly RULE_likeTableOrFile = 219; + public static readonly RULE_createTableStatement = 220; + public static readonly RULE_createDataConnectorStatement = 221; + public static readonly RULE_dropDataConnectorStatement = 222; + public static readonly RULE_tableAllColumns = 223; + public static readonly RULE_expressionList = 224; + public static readonly RULE_aliasList = 225; + public static readonly RULE_fromClause = 226; + public static readonly RULE_fromSource = 227; + public static readonly RULE_atomjoinSource = 228; + public static readonly RULE_joinSource = 229; + public static readonly RULE_joinSourcePart = 230; + public static readonly RULE_uniqueJoinSource = 231; + public static readonly RULE_joinToken = 232; + public static readonly RULE_lateralView = 233; + public static readonly RULE_tableAlias = 234; + public static readonly RULE_tableSample = 235; + public static readonly RULE_tableSource = 236; + public static readonly RULE_asOfClause = 237; + public static readonly RULE_dbSchemaName = 238; + public static readonly RULE_dbSchemaNameCreate = 239; + public static readonly RULE_tableOrView = 240; + public static readonly RULE_tableName = 241; + public static readonly RULE_tableNameCreate = 242; + public static readonly RULE_viewName = 243; + public static readonly RULE_viewNameCreate = 244; + public static readonly RULE_subQuerySource = 245; + public static readonly RULE_partitioningSpec = 246; + public static readonly RULE_partitionTableFunctionSource = 247; + public static readonly RULE_partitionedTableFunction = 248; + public static readonly RULE_atomPartitionedTableFunction = 249; + public static readonly RULE_whereClause = 250; + public static readonly RULE_valuesClause = 251; + public static readonly RULE_atomValuesClause = 252; + public static readonly RULE_virtualTableSource = 253; + public static readonly RULE_selectClause = 254; + public static readonly RULE_selectTrfmClause = 255; + public static readonly RULE_selectList = 256; + public static readonly RULE_selectItem = 257; + public static readonly RULE_selectLiteralColumnName = 258; + public static readonly RULE_selectExpressionColumnName = 259; + public static readonly RULE_trfmClause = 260; + public static readonly RULE_selectExpression = 261; + public static readonly RULE_selectExpressionList = 262; + public static readonly RULE_window_clause = 263; + public static readonly RULE_window_specification = 264; + public static readonly RULE_window_frame = 265; + public static readonly RULE_window_frame_boundary = 266; + public static readonly RULE_groupByClause = 267; + public static readonly RULE_rollupStandard = 268; + public static readonly RULE_rollupOldSyntax = 269; + public static readonly RULE_groupingSetExpression = 270; + public static readonly RULE_havingClause = 271; + public static readonly RULE_qualifyClause = 272; + public static readonly RULE_expressionOrDefault = 273; + public static readonly RULE_firstExpressionsWithAlias = 274; + public static readonly RULE_expressions = 275; + public static readonly RULE_expressionsInParenthesis = 276; + public static readonly RULE_expressionsNotInParenthesis = 277; + public static readonly RULE_orderByClause = 278; + public static readonly RULE_partitionByClause = 279; + public static readonly RULE_clusterByClause = 280; + public static readonly RULE_distributeByClause = 281; + public static readonly RULE_sortByClause = 282; + public static readonly RULE_function_ = 283; + public static readonly RULE_null_treatment = 284; + public static readonly RULE_functionNameCreate = 285; + public static readonly RULE_functionNameForDDL = 286; + public static readonly RULE_functionNameForInvoke = 287; + public static readonly RULE_castExpression = 288; + public static readonly RULE_caseExpression = 289; + public static readonly RULE_whenExpression = 290; + public static readonly RULE_floorExpression = 291; + public static readonly RULE_extractExpression = 292; + public static readonly RULE_timeQualifiers = 293; + public static readonly RULE_constant = 294; + public static readonly RULE_intervalValue = 295; + public static readonly RULE_intervalExpression = 296; + public static readonly RULE_intervalQualifiers = 297; + public static readonly RULE_expression = 298; + public static readonly RULE_atomExpression = 299; + public static readonly RULE_precedenceUnaryPrefixExpression = 300; + public static readonly RULE_precedenceBitwiseXorExpression = 301; + public static readonly RULE_precedenceStarExpression = 302; + public static readonly RULE_precedencePlusExpression = 303; + public static readonly RULE_precedenceConcatenateExpression = 304; + public static readonly RULE_precedenceAmpersandExpression = 305; + public static readonly RULE_precedenceBitwiseOrExpression = 306; + public static readonly RULE_precedenceSimilarOperator = 307; + public static readonly RULE_subQueryExpression = 308; + public static readonly RULE_precedenceSimilarExpression = 309; + public static readonly RULE_precedenceSimilarExpressionPart = 310; + public static readonly RULE_precedenceSimilarExpressionAtom = 311; + public static readonly RULE_precedenceSimilarExpressionIn = 312; + public static readonly RULE_precedenceSimilarExpressionPartNot = 313; + public static readonly RULE_precedenceDistinctOperator = 314; + public static readonly RULE_precedenceEqualOperator = 315; + public static readonly RULE_precedenceEqualExpression = 316; + public static readonly RULE_isCondition = 317; + public static readonly RULE_precedenceNotExpression = 318; + public static readonly RULE_precedenceAndExpression = 319; + public static readonly RULE_tableOrPartition = 320; + public static readonly RULE_partitionSpec = 321; + public static readonly RULE_partitionVal = 322; + public static readonly RULE_partitionSelectorSpec = 323; + public static readonly RULE_partitionSelectorVal = 324; + public static readonly RULE_subQuerySelectorOperator = 325; + public static readonly RULE_sysFuncNames = 326; + public static readonly RULE_id_ = 327; + public static readonly RULE_functionIdentifier = 328; + public static readonly RULE_principalIdentifier = 329; + public static readonly RULE_nonReserved = 330; + public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 331; + public static readonly RULE_configPropertiesItem = 332; + public static readonly RULE_resourcePlanDdlStatements = 333; + public static readonly RULE_mappingTypes = 334; + public static readonly RULE_rpAssign = 335; + public static readonly RULE_rpAssignList = 336; + public static readonly RULE_rpUnassign = 337; + public static readonly RULE_activate = 338; + public static readonly RULE_enable = 339; + public static readonly RULE_disable = 340; + public static readonly RULE_year = 341; + public static readonly RULE_month = 342; + public static readonly RULE_week = 343; + public static readonly RULE_day = 344; + public static readonly RULE_hour = 345; + public static readonly RULE_minute = 346; + public static readonly RULE_second = 347; + public static readonly RULE_decimal = 348; + public static readonly RULE_emptyColumn = 349; + public static readonly RULE_poolPath = 350; + public static readonly RULE_poolPathAllowEmpty = 351; + public static readonly RULE_triggerAtomExpression = 352; + public static readonly RULE_triggerActionExpression = 353; + public static readonly RULE_poolAssign = 354; + public static readonly RULE_poolAssignList = 355; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -1009,8 +1012,8 @@ export class HiveSqlParser extends SQLParserBase { "tableRowFormatCollItemsIdentifier", "tableRowFormatMapKeysIdentifier", "tableRowFormatLinesIdentifier", "tableRowNullFormat", "tableFileFormat", "columnNameTypeList", "columnNameTypeOrConstraintList", "columnNameColonTypeList", - "columnNameList", "columnName", "columnNamePath", "columnNameCreate", - "extColumnName", "columnNameOrderList", "columnParenthesesList", + "columnNameList", "columnName", "columnNamePath", "columnNamePathAllowEmpty", + "columnNameCreate", "extColumnName", "columnNameOrderList", "columnParenthesesList", "enableValidateSpecification", "enableSpecification", "validateSpecification", "enforcedSpecification", "relySpecification", "createConstraint", "alterConstraintWithName", "tableLevelConstraint", "pkUkConstraint", @@ -1071,9 +1074,9 @@ export class HiveSqlParser extends SQLParserBase { "sql11ReservedKeywordsUsedAsFunctionName", "configPropertiesItem", "resourcePlanDdlStatements", "mappingTypes", "rpAssign", "rpAssignList", "rpUnassign", "activate", "enable", "disable", "year", "month", - "week", "day", "hour", "minute", "second", "decimal", "poolPath", - "triggerAtomExpression", "triggerActionExpression", "poolAssign", - "poolAssignList", + "week", "day", "hour", "minute", "second", "decimal", "emptyColumn", + "poolPath", "poolPathAllowEmpty", "triggerAtomExpression", "triggerActionExpression", + "poolAssign", "poolAssignList", ]; public get grammarFileName(): string { return "HiveSqlParser.g4"; } @@ -1097,21 +1100,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 709; + this.state = 715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 33622025) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 810024961) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 35717185) !== 0) || _la === 318 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 8537089) !== 0) || _la === 387 || _la === 399) { { { - this.state = 706; + this.state = 712; this.statement(); } } - this.state = 711; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 712; + this.state = 718; this.match(HiveSqlParser.EOF); } } @@ -1135,12 +1138,12 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 716; + this.state = 722; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 714; + this.state = 720; this.explainStatement(); } break; @@ -1188,19 +1191,19 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 715; + this.state = 721; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 719; + this.state = 725; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 718; + this.state = 724; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1228,9 +1231,9 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 721; + this.state = 727; this.match(HiveSqlParser.KW_EXPLAIN); - this.state = 731; + this.state = 737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1289,31 +1292,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 725; + this.state = 731; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 722; + this.state = 728; this.explainOption(); } } } - this.state = 727; + this.state = 733; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 728; + this.state = 734; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 729; + this.state = 735; this.match(HiveSqlParser.KW_REWRITE); - this.state = 730; + this.state = 736; this.queryStatementExpression(); } break; @@ -1341,41 +1344,41 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 755; + this.state = 761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 733; + this.state = 739; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 734; + this.state = 740; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 735; + this.state = 741; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 736; + this.state = 742; this.match(HiveSqlParser.KW_CBO); - this.state = 738; + this.state = 744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 737; + this.state = 743; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1392,66 +1395,66 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 740; + this.state = 746; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 741; + this.state = 747; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 742; + this.state = 748; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 743; + this.state = 749; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 744; + this.state = 750; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 745; + this.state = 751; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 746; + this.state = 752; this.match(HiveSqlParser.KW_VECTORIZATION); - this.state = 748; + this.state = 754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 747; + this.state = 753; this.match(HiveSqlParser.KW_ONLY); } } - this.state = 751; + this.state = 757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 121 || _la === 226 || _la === 325) { { - this.state = 750; + this.state = 756; this.vectorizationDetail(); } } @@ -1461,14 +1464,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 753; + this.state = 759; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 754; + this.state = 760; this.match(HiveSqlParser.KW_DDL); } break; @@ -1497,7 +1500,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 757; + this.state = 763; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 121 || _la === 226 || _la === 325)) { this.errorHandler.recoverInline(this); @@ -1528,68 +1531,68 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 830; + this.state = 836; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 759; + this.state = 765; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 760; + this.state = 766; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 761; + this.state = 767; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 762; + this.state = 768; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 763; + this.state = 769; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 764; + this.state = 770; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 765; + this.state = 771; this.match(HiveSqlParser.KW_REPL); - this.state = 766; + this.state = 772; this.match(HiveSqlParser.KW_STATUS); - this.state = 767; + this.state = 773; localContext._dbName = this.dbSchemaName(); - this.state = 770; + this.state = 776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 768; + this.state = 774; this.match(HiveSqlParser.KW_WITH); - this.state = 769; + this.state = 775; localContext._replConf = this.keyValueProperties(); } break; @@ -1599,25 +1602,25 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 772; + this.state = 778; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 773; + this.state = 779; this.match(HiveSqlParser.KW_DELETE); - this.state = 774; + this.state = 780; this.match(HiveSqlParser.KW_FROM); - this.state = 775; + this.state = 781; this.tableName(); - this.state = 777; + this.state = 783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 776; + this.state = 782; this.whereClause(); } } @@ -1627,18 +1630,18 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 779; + this.state = 785; this.match(HiveSqlParser.KW_UPDATE); - this.state = 780; + this.state = 786; this.tableName(); - this.state = 781; + this.state = 787; this.setColumnsClause(); - this.state = 783; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 782; + this.state = 788; this.whereClause(); } } @@ -1648,101 +1651,101 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 785; + this.state = 791; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 786; + this.state = 792; this.match(HiveSqlParser.KW_MERGE); - this.state = 788; + this.state = 794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 787; + this.state = 793; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 790; + this.state = 796; this.match(HiveSqlParser.KW_INTO); - this.state = 791; + this.state = 797; this.tableName(); - this.state = 796; + this.state = 802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 793; + this.state = 799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 792; + this.state = 798; this.match(HiveSqlParser.KW_AS); } } - this.state = 795; + this.state = 801; this.id_(); } } - this.state = 798; + this.state = 804; this.match(HiveSqlParser.KW_USING); - this.state = 799; + this.state = 805; this.joinSourcePart(); - this.state = 800; + this.state = 806; this.match(HiveSqlParser.KW_ON); - this.state = 801; + this.state = 807; this.expression(); - this.state = 802; + this.state = 808; this.whenClauses(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 804; + this.state = 810; this.match(HiveSqlParser.KW_PREPARE); - this.state = 805; + this.state = 811; this.id_(); - this.state = 806; + this.state = 812; this.match(HiveSqlParser.KW_FROM); - this.state = 807; + this.state = 813; this.queryStatementExpression(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 809; + this.state = 815; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 810; + this.state = 816; this.id_(); - this.state = 811; + this.state = 817; this.match(HiveSqlParser.KW_USING); - this.state = 812; + this.state = 818; this.constantList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 814; + this.state = 820; this.match(HiveSqlParser.KW_SET); - this.state = 815; + this.state = 821; this.configPropertiesItem(); - this.state = 820; + this.state = 826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 396) { { { - this.state = 816; + this.state = 822; _la = this.tokenStream.LA(1); if(!(_la === 395 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -1751,29 +1754,29 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 817; + this.state = 823; this.configPropertiesItem(); } } - this.state = 822; + this.state = 828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 823; + this.state = 829; this.match(HiveSqlParser.EQUAL); - this.state = 827; + this.state = 833; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 824; + this.state = 830; this.matchWildcard(); } } } - this.state = 829; + this.state = 835; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); } @@ -1802,46 +1805,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 832; + this.state = 838; this.match(HiveSqlParser.KW_LOAD); - this.state = 833; + this.state = 839; this.match(HiveSqlParser.KW_DATA); - this.state = 835; + this.state = 841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 834; + this.state = 840; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 837; + this.state = 843; this.match(HiveSqlParser.KW_INPATH); - this.state = 838; + this.state = 844; this.match(HiveSqlParser.StringLiteral); - this.state = 840; + this.state = 846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 839; + this.state = 845; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 842; + this.state = 848; this.match(HiveSqlParser.KW_INTO); - this.state = 843; + this.state = 849; this.match(HiveSqlParser.KW_TABLE); - this.state = 844; + this.state = 850; this.tableOrPartition(); - this.state = 846; + this.state = 852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 845; + this.state = 851; this.inputFileFormat(); } } @@ -1869,25 +1872,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 848; + this.state = 854; this.match(HiveSqlParser.KW_FOR); - this.state = 850; + this.state = 856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 849; + this.state = 855; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 852; + this.state = 858; this.match(HiveSqlParser.KW_REPLICATION); - this.state = 853; + this.state = 859; this.match(HiveSqlParser.LPAREN); - this.state = 854; + this.state = 860; this.match(HiveSqlParser.StringLiteral); - this.state = 855; + this.state = 861; this.match(HiveSqlParser.RPAREN); } } @@ -1912,22 +1915,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 857; + this.state = 863; this.match(HiveSqlParser.KW_EXPORT); - this.state = 858; + this.state = 864; this.match(HiveSqlParser.KW_TABLE); - this.state = 859; + this.state = 865; this.tableOrPartition(); - this.state = 860; + this.state = 866; this.match(HiveSqlParser.KW_TO); - this.state = 861; + this.state = 867; this.match(HiveSqlParser.StringLiteral); - this.state = 863; + this.state = 869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 862; + this.state = 868; this.replicationClause(); } } @@ -1955,40 +1958,40 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 865; - this.match(HiveSqlParser.KW_IMPORT); this.state = 871; + this.match(HiveSqlParser.KW_IMPORT); + this.state = 877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 329) { { - this.state = 867; + this.state = 873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 866; + this.state = 872; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 869; + this.state = 875; this.match(HiveSqlParser.KW_TABLE); - this.state = 870; + this.state = 876; this.tableOrPartition(); } } - this.state = 873; + this.state = 879; this.match(HiveSqlParser.KW_FROM); - this.state = 874; + this.state = 880; localContext._path = this.match(HiveSqlParser.StringLiteral); - this.state = 876; + this.state = 882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 875; + this.state = 881; this.locationPath(); } } @@ -2015,32 +2018,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 878; + this.state = 884; this.match(HiveSqlParser.KW_REPL); - this.state = 879; + this.state = 885; this.match(HiveSqlParser.KW_DUMP); - this.state = 880; + this.state = 886; localContext._dbPolicy = this.replDbPolicy(); - this.state = 883; + this.state = 889; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 881; + this.state = 887; this.match(HiveSqlParser.KW_REPLACE); - this.state = 882; + this.state = 888; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 887; + this.state = 893; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 885; + this.state = 891; this.match(HiveSqlParser.KW_WITH); - this.state = 886; + this.state = 892; localContext._replConf = this.keyValueProperties(); } break; @@ -2068,16 +2071,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 889; + this.state = 895; localContext._dbName = this.dbSchemaName(); - this.state = 892; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 890; + this.state = 896; this.match(HiveSqlParser.DOT); - this.state = 891; + this.state = 897; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2105,32 +2108,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 894; + this.state = 900; this.match(HiveSqlParser.KW_REPL); - this.state = 895; + this.state = 901; this.match(HiveSqlParser.KW_LOAD); - this.state = 896; + this.state = 902; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 899; + this.state = 905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 897; + this.state = 903; this.match(HiveSqlParser.KW_INTO); - this.state = 898; + this.state = 904; localContext._dbName = this.dbSchemaName(); } } - this.state = 903; + this.state = 909; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 901; + this.state = 907; this.match(HiveSqlParser.KW_WITH); - this.state = 902; + this.state = 908; localContext._replConf = this.keyValueProperties(); } break; @@ -2158,16 +2161,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 905; + this.state = 911; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 908; + this.state = 914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 906; + this.state = 912; this.match(HiveSqlParser.DOT); - this.state = 907; + this.state = 913; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2193,302 +2196,302 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 28, HiveSqlParser.RULE_ddlStatement); let _la: number; try { - this.state = 968; + this.state = 974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 910; + this.state = 916; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 911; + this.state = 917; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 912; + this.state = 918; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 913; + this.state = 919; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 914; + this.state = 920; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 915; + this.state = 921; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 916; + this.state = 922; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 917; + this.state = 923; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 918; + this.state = 924; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 919; + this.state = 925; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 920; + this.state = 926; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 921; + this.state = 927; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 922; + this.state = 928; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 923; + this.state = 929; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 924; + this.state = 930; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 925; + this.state = 931; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 926; + this.state = 932; this.dropMaterializedViewStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 927; + this.state = 933; this.createFunctionStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 928; + this.state = 934; this.createMacroStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 929; + this.state = 935; this.dropFunctionStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 930; + this.state = 936; this.reloadFunctionsStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 931; + this.state = 937; this.dropMacroStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 932; + this.state = 938; this.createIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 933; + this.state = 939; this.dropIndexStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 934; + this.state = 940; this.analyzeStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 935; + this.state = 941; this.lockStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 936; + this.state = 942; this.unlockStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 937; + this.state = 943; this.lockDatabase(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 938; + this.state = 944; this.unlockDatabase(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 939; + this.state = 945; this.createRoleStatement(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 940; + this.state = 946; this.dropRoleStatement(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 941; + this.state = 947; this.grantPrivileges(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 942; + this.state = 948; this.revokePrivileges(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 943; + this.state = 949; this.showGrants(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 944; + this.state = 950; this.showRoleGrants(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 945; + this.state = 951; this.showRolePrincipals(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 946; + this.state = 952; this.showRoles(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 947; + this.state = 953; this.grantRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 948; + this.state = 954; this.revokeRole(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 949; + this.state = 955; this.setRole(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 950; + this.state = 956; this.showCurrentRole(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 951; + this.state = 957; this.match(HiveSqlParser.KW_ABORT); - this.state = 952; + this.state = 958; _la = this.tokenStream.LA(1); if(!(_la === 50 || _la === 346)) { this.errorHandler.recoverInline(this); @@ -2497,17 +2500,17 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 954; + this.state = 960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 953; + this.state = 959; this.match(HiveSqlParser.Number); } } - this.state = 956; + this.state = 962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); @@ -2516,21 +2519,21 @@ export class HiveSqlParser extends SQLParserBase { case 43: this.enterOuterAlt(localContext, 43); { - this.state = 958; + this.state = 964; this.match(HiveSqlParser.KW_KILL); - this.state = 959; + this.state = 965; this.match(HiveSqlParser.KW_QUERY); - this.state = 961; + this.state = 967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 960; + this.state = 966; this.match(HiveSqlParser.StringLiteral); } } - this.state = 963; + this.state = 969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 426); @@ -2539,21 +2542,21 @@ export class HiveSqlParser extends SQLParserBase { case 44: this.enterOuterAlt(localContext, 44); { - this.state = 965; + this.state = 971; this.resourcePlanDdlStatements(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 966; + this.state = 972; this.createDataConnectorStatement(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 967; + this.state = 973; this.dropDataConnectorStatement(); } break; @@ -2579,9 +2582,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 970; + this.state = 976; this.match(HiveSqlParser.KW_IF); - this.state = 971; + this.state = 977; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2605,11 +2608,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 973; + this.state = 979; this.match(HiveSqlParser.KW_IF); - this.state = 974; + this.state = 980; this.match(HiveSqlParser.KW_NOT); - this.state = 975; + this.state = 981; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2634,7 +2637,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 977; + this.state = 983; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -2665,9 +2668,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 985; this.enable(); - this.state = 980; + this.state = 986; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2691,9 +2694,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 982; + this.state = 988; this.disable(); - this.state = 983; + this.state = 989; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2717,11 +2720,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 985; + this.state = 991; this.match(HiveSqlParser.KW_STORED); - this.state = 986; + this.state = 992; this.match(HiveSqlParser.KW_AS); - this.state = 987; + this.state = 993; this.match(HiveSqlParser.KW_DIRECTORIES); } } @@ -2744,80 +2747,80 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 42, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1029; + this.state = 1035; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 989; + this.state = 995; this.match(HiveSqlParser.KW_CREATE); - this.state = 991; + this.state = 997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 990; + this.state = 996; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 993; + this.state = 999; this.db_schema(); - this.state = 995; + this.state = 1001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 994; + this.state = 1000; this.ifNotExists(); } } - this.state = 997; + this.state = 1003; localContext._name = this.dbSchemaNameCreate(); - this.state = 999; + this.state = 1005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 998; + this.state = 1004; this.databaseComment(); } } - this.state = 1002; + this.state = 1008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1001; + this.state = 1007; this.locationPath(); } } - this.state = 1006; + this.state = 1012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1004; + this.state = 1010; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 1005; + this.state = 1011; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1011; + this.state = 1017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 1008; + this.state = 1014; this.match(HiveSqlParser.KW_WITH); - this.state = 1009; + this.state = 1015; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1010; + this.state = 1016; localContext._dbprops = this.keyValueProperties(); } break; @@ -2827,46 +2830,46 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1013; + this.state = 1019; this.match(HiveSqlParser.KW_CREATE); - this.state = 1014; + this.state = 1020; this.match(HiveSqlParser.KW_REMOTE); - this.state = 1015; + this.state = 1021; this.db_schema(); - this.state = 1017; + this.state = 1023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1016; + this.state = 1022; this.ifNotExists(); } } - this.state = 1019; + this.state = 1025; localContext._name = this.dbSchemaNameCreate(); - this.state = 1021; + this.state = 1027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1020; + this.state = 1026; this.databaseComment(); } } - this.state = 1023; + this.state = 1029; this.dbConnectorName(); - this.state = 1027; + this.state = 1033; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 1024; + this.state = 1030; this.match(HiveSqlParser.KW_WITH); - this.state = 1025; + this.state = 1031; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1026; + this.state = 1032; localContext._dbprops = this.keyValueProperties(); } break; @@ -2895,9 +2898,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1031; + this.state = 1037; this.match(HiveSqlParser.KW_USING); - this.state = 1032; + this.state = 1038; localContext._dcName = this.dbSchemaName(); } } @@ -2921,9 +2924,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1034; + this.state = 1040; this.match(HiveSqlParser.KW_USE); - this.state = 1035; + this.state = 1041; this.dbSchemaName(); } } @@ -2948,28 +2951,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1037; + this.state = 1043; this.match(HiveSqlParser.KW_DROP); - this.state = 1038; + this.state = 1044; this.db_schema(); - this.state = 1040; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1039; + this.state = 1045; this.ifExists(); } } - this.state = 1042; + this.state = 1048; this.dbSchemaName(); - this.state = 1044; + this.state = 1050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 1043; + this.state = 1049; this.restrictOrCascade(); } } @@ -2996,9 +2999,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1046; + this.state = 1052; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1047; + this.state = 1053; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -3023,42 +3026,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1049; + this.state = 1055; this.match(HiveSqlParser.KW_TRUNCATE); - this.state = 1051; + this.state = 1057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1050; + this.state = 1056; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1053; - this.tableOrPartition(); this.state = 1059; + this.tableOrPartition(); + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1054; + this.state = 1060; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1055; + this.state = 1061; this.match(HiveSqlParser.LPAREN); - this.state = 1056; + this.state = 1062; this.columnNameList(); - this.state = 1057; + this.state = 1063; this.match(HiveSqlParser.RPAREN); } } - this.state = 1062; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1061; + this.state = 1067; this.match(HiveSqlParser.KW_FORCE); } } @@ -3086,38 +3089,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1064; + this.state = 1070; this.match(HiveSqlParser.KW_DROP); - this.state = 1065; + this.state = 1071; this.match(HiveSqlParser.KW_TABLE); - this.state = 1067; + this.state = 1073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1066; + this.state = 1072; this.ifExists(); } } - this.state = 1069; + this.state = 1075; this.tableName(); - this.state = 1071; + this.state = 1077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 1070; + this.state = 1076; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1074; + this.state = 1080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1073; + this.state = 1079; this.replicationClause(); } } @@ -3144,13 +3147,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1076; + this.state = 1082; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1077; + this.state = 1083; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 1078; + this.state = 1084; this.match(HiveSqlParser.KW_SERDE); - this.state = 1079; + this.state = 1085; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -3175,66 +3178,66 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1081; + this.state = 1087; this.id_(); - this.state = 1084; + this.state = 1090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 1082; + this.state = 1088; this.match(HiveSqlParser.DOT); - this.state = 1083; + this.state = 1089; this.id_(); } } - this.state = 1099; + this.state = 1105; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { case 1: { - this.state = 1086; + this.state = 1092; this.id_(); - this.state = 1096; + this.state = 1102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 1087; + this.state = 1093; this.match(HiveSqlParser.DOT); - this.state = 1092; + this.state = 1098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1088; + this.state = 1094; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1089; + this.state = 1095; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1090; + this.state = 1096; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1091; + this.state = 1097; this.id_(); } break; } } } - this.state = 1098; + this.state = 1104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3264,14 +3267,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1101; + this.state = 1107; this.tabTypeExpr(); - this.state = 1103; + this.state = 1109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1102; + this.state = 1108; this.partitionSpec(); } } @@ -3298,24 +3301,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1105; + this.state = 1111; this.tableOrView(); - this.state = 1107; + this.state = 1113; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1106; + this.state = 1112; this.partitionSpec(); } break; } - this.state = 1110; + this.state = 1116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1109; + this.state = 1115; this.extColumnName(); } break; @@ -3343,7 +3346,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1112; + this.state = 1118; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3352,90 +3355,90 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1135; + this.state = 1141; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1113; + this.state = 1119; this.db_schema(); - this.state = 1115; + this.state = 1121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1114; + this.state = 1120; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1117; + this.state = 1123; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1119; + this.state = 1125; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 1121; + this.state = 1127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1120; + this.state = 1126; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1123; + this.state = 1129; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1124; + this.state = 1130; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1126; + this.state = 1132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1125; + this.state = 1131; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1128; + this.state = 1134; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1131; + this.state = 1137; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1129; + this.state = 1135; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1130; + this.state = 1136; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1133; + this.state = 1139; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1134; + this.state = 1140; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3462,42 +3465,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1137; + this.state = 1143; this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1138; + this.state = 1144; this.match(HiveSqlParser.KW_TABLE); - this.state = 1139; + this.state = 1145; localContext._parttype = this.tableOrPartition(); - this.state = 1152; + this.state = 1158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1140; + this.state = 1146; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1141; + this.state = 1147; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1148; + this.state = 1154; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1142; + this.state = 1148; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1143; + this.state = 1149; this.match(HiveSqlParser.KW_FOR); - this.state = 1144; + this.state = 1150; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1146; + this.state = 1152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1145; + this.state = 1151; localContext._statsColumnName = this.columnNameList(); } break; @@ -3558,9 +3561,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_CACHE: { - this.state = 1150; + this.state = 1156; this.match(HiveSqlParser.KW_CACHE); - this.state = 1151; + this.state = 1157; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3590,7 +3593,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1154; + this.state = 1160; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3622,7 +3625,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1156; + this.state = 1162; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 295)) { this.errorHandler.recoverInline(this); @@ -3652,15 +3655,15 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 72, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1341; + this.state = 1347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1158; + this.state = 1164; this.match(HiveSqlParser.KW_SHOW); - this.state = 1159; + this.state = 1165; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 296)) { this.errorHandler.recoverInline(this); @@ -3669,14 +3672,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1162; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1160; + this.state = 1166; this.match(HiveSqlParser.KW_LIKE); - this.state = 1161; + this.state = 1167; this.showStmtIdentifier(); } } @@ -3686,38 +3689,38 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1164; + this.state = 1170; this.match(HiveSqlParser.KW_SHOW); - this.state = 1166; + this.state = 1172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1165; + this.state = 1171; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1168; + this.state = 1174; this.match(HiveSqlParser.KW_TABLES); - this.state = 1172; + this.state = 1178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1169; + this.state = 1175; this.from_in(); - this.state = 1170; + this.state = 1176; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1175; + this.state = 1181; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1174; + this.state = 1180; localContext._filter = this.showTablesFilterExpr(); } break; @@ -3727,36 +3730,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1177; + this.state = 1183; this.match(HiveSqlParser.KW_SHOW); - this.state = 1178; + this.state = 1184; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1182; + this.state = 1188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1179; + this.state = 1185; this.from_in(); - this.state = 1180; + this.state = 1186; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1187; + this.state = 1193; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 1184; + this.state = 1190; this.match(HiveSqlParser.KW_LIKE); - this.state = 1185; + this.state = 1191; this.showStmtIdentifier(); } break; case 2: { - this.state = 1186; + this.state = 1192; this.showStmtIdentifier(); } break; @@ -3766,38 +3769,38 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1189; + this.state = 1195; this.match(HiveSqlParser.KW_SHOW); - this.state = 1190; + this.state = 1196; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1191; + this.state = 1197; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1195; + this.state = 1201; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 1192; + this.state = 1198; this.from_in(); - this.state = 1193; + this.state = 1199; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1200; + this.state = 1206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { - this.state = 1197; + this.state = 1203; this.match(HiveSqlParser.KW_LIKE); - this.state = 1198; + this.state = 1204; this.showStmtIdentifier(); } break; case 2: { - this.state = 1199; + this.state = 1205; this.showStmtIdentifier(); } break; @@ -3807,50 +3810,50 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1202; + this.state = 1208; this.match(HiveSqlParser.KW_SHOW); - this.state = 1204; + this.state = 1210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1203; + this.state = 1209; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1206; + this.state = 1212; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1207; + this.state = 1213; this.from_in(); - this.state = 1208; + this.state = 1214; this.tableOrView(); - this.state = 1212; + this.state = 1218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1209; + this.state = 1215; this.from_in(); - this.state = 1210; + this.state = 1216; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1217; + this.state = 1223; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 1214; + this.state = 1220; this.match(HiveSqlParser.KW_LIKE); - this.state = 1215; + this.state = 1221; this.showStmtIdentifier(); } break; case 2: { - this.state = 1216; + this.state = 1222; this.showStmtIdentifier(); } break; @@ -3860,18 +3863,18 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1219; + this.state = 1225; this.match(HiveSqlParser.KW_SHOW); - this.state = 1220; + this.state = 1226; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1223; + this.state = 1229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1221; + this.state = 1227; this.match(HiveSqlParser.KW_LIKE); - this.state = 1222; + this.state = 1228; this.functionNameForDDL(); } } @@ -3881,48 +3884,48 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1225; + this.state = 1231; this.match(HiveSqlParser.KW_SHOW); - this.state = 1226; + this.state = 1232; this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1227; + this.state = 1233; localContext._tabOrViewName = this.tableOrView(); - this.state = 1229; + this.state = 1235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1228; + this.state = 1234; this.partitionSpec(); } } - this.state = 1232; + this.state = 1238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 1231; + this.state = 1237; this.whereClause(); } } - this.state = 1235; + this.state = 1241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1234; + this.state = 1240; this.orderByClause(); } } - this.state = 1238; + this.state = 1244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1237; + this.state = 1243; this.limitClause(); } } @@ -3932,27 +3935,27 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1240; + this.state = 1246; this.match(HiveSqlParser.KW_SHOW); - this.state = 1241; - this.match(HiveSqlParser.KW_CREATE); this.state = 1247; + this.match(HiveSqlParser.KW_CREATE); + this.state = 1253; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1242; + this.state = 1248; this.db_schema(); - this.state = 1243; + this.state = 1249; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1245; + this.state = 1251; this.match(HiveSqlParser.KW_TABLE); - this.state = 1246; + this.state = 1252; localContext._tabName = this.tableName(); } break; @@ -3964,34 +3967,34 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1249; + this.state = 1255; this.match(HiveSqlParser.KW_SHOW); - this.state = 1250; + this.state = 1256; this.match(HiveSqlParser.KW_TABLE); - this.state = 1251; + this.state = 1257; this.match(HiveSqlParser.KW_EXTENDED); - this.state = 1255; + this.state = 1261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1252; + this.state = 1258; this.from_in(); - this.state = 1253; + this.state = 1259; localContext._db_name = this.dbSchemaName(); } } - this.state = 1257; + this.state = 1263; this.match(HiveSqlParser.KW_LIKE); - this.state = 1258; + this.state = 1264; this.showStmtIdentifier(); - this.state = 1260; + this.state = 1266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1259; + this.state = 1265; this.partitionSpec(); } } @@ -4001,22 +4004,22 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1262; + this.state = 1268; this.match(HiveSqlParser.KW_SHOW); - this.state = 1263; + this.state = 1269; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1264; + this.state = 1270; this.tableName(); - this.state = 1268; + this.state = 1274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 1265; + this.state = 1271; this.match(HiveSqlParser.LPAREN); - this.state = 1266; + this.state = 1272; localContext._prptyName = this.match(HiveSqlParser.StringLiteral); - this.state = 1267; + this.state = 1273; this.match(HiveSqlParser.RPAREN); } break; @@ -4026,25 +4029,25 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1270; + this.state = 1276; this.match(HiveSqlParser.KW_SHOW); - this.state = 1271; + this.state = 1277; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1283; + this.state = 1289; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1272; + this.state = 1278; this.db_schema(); - this.state = 1273; + this.state = 1279; localContext._dbName = this.dbSchemaName(); - this.state = 1275; + this.state = 1281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1274; + this.state = 1280; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4053,22 +4056,22 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 1278; + this.state = 1284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1277; + this.state = 1283; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1281; + this.state = 1287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1280; + this.state = 1286; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4081,20 +4084,20 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1285; + this.state = 1291; this.match(HiveSqlParser.KW_SHOW); - this.state = 1286; + this.state = 1292; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1313; + this.state = 1319; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPACT_ID: { - this.state = 1287; + this.state = 1293; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 1288; + this.state = 1294; this.match(HiveSqlParser.EQUAL); - this.state = 1289; + this.state = 1295; localContext._compactId = this.match(HiveSqlParser.Number); } break; @@ -4367,27 +4370,27 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: case HiveSqlParser.Identifier: { - this.state = 1296; + this.state = 1302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { { - this.state = 1290; + this.state = 1296; this.db_schema(); - this.state = 1291; + this.state = 1297; localContext._dbName = this.dbSchemaName(); } } break; case 2: { - this.state = 1294; + this.state = 1300; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1293; + this.state = 1299; localContext._parttype = this.partTypeExpr(); } break; @@ -4395,52 +4398,52 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 1299; + this.state = 1305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 1298; + this.state = 1304; this.compactionPool(); } } - this.state = 1302; + this.state = 1308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1301; + this.state = 1307; this.compactionType(); } } - this.state = 1305; + this.state = 1311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 1304; + this.state = 1310; this.compactionStatus(); } } - this.state = 1308; + this.state = 1314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1307; + this.state = 1313; this.orderByClause(); } } - this.state = 1311; + this.state = 1317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1310; + this.state = 1316; this.limitClause(); } } @@ -4455,44 +4458,44 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1315; + this.state = 1321; this.match(HiveSqlParser.KW_SHOW); - this.state = 1316; + this.state = 1322; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1317; + this.state = 1323; this.match(HiveSqlParser.KW_SHOW); - this.state = 1318; + this.state = 1324; this.match(HiveSqlParser.KW_CONF); - this.state = 1319; + this.state = 1325; this.match(HiveSqlParser.StringLiteral); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1320; + this.state = 1326; this.match(HiveSqlParser.KW_SHOW); - this.state = 1321; + this.state = 1327; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 1325; + this.state = 1331; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1322; + this.state = 1328; this.match(HiveSqlParser.KW_PLAN); - this.state = 1323; + this.state = 1329; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1324; + this.state = 1330; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4504,28 +4507,28 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1327; + this.state = 1333; this.match(HiveSqlParser.KW_SHOW); - this.state = 1328; + this.state = 1334; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1329; + this.state = 1335; this.match(HiveSqlParser.KW_SHOW); - this.state = 1331; + this.state = 1337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1330; + this.state = 1336; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1333; + this.state = 1339; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4534,18 +4537,18 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1334; + this.state = 1340; this.match(HiveSqlParser.KW_ON); - this.state = 1335; + this.state = 1341; this.tableName(); - this.state = 1339; + this.state = 1345; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1336; + this.state = 1342; this.from_in(); - this.state = 1337; + this.state = 1343; this.dbSchemaName(); } break; @@ -4572,28 +4575,28 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowTablesFilterExprContext(this.context, this.state); this.enterRule(localContext, 74, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1351; + this.state = 1357; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1349; this.match(HiveSqlParser.KW_WHERE); - this.state = 1344; + this.state = 1350; this.id_(); - this.state = 1345; + this.state = 1351; this.match(HiveSqlParser.EQUAL); - this.state = 1346; + this.state = 1352; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1348; + this.state = 1354; this.match(HiveSqlParser.KW_LIKE); - this.state = 1349; + this.state = 1355; this.showStmtIdentifier(); } break; @@ -4840,7 +4843,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1350; + this.state = 1356; this.showStmtIdentifier(); } break; @@ -4868,13 +4871,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1353; + this.state = 1359; this.match(HiveSqlParser.KW_LOCK); - this.state = 1354; + this.state = 1360; this.match(HiveSqlParser.KW_TABLE); - this.state = 1355; + this.state = 1361; this.tableOrPartition(); - this.state = 1356; + this.state = 1362; this.lockMode(); } } @@ -4898,13 +4901,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1358; + this.state = 1364; this.match(HiveSqlParser.KW_LOCK); - this.state = 1359; + this.state = 1365; this.db_schema(); - this.state = 1360; + this.state = 1366; localContext._dbName = this.dbSchemaName(); - this.state = 1361; + this.state = 1367; this.lockMode(); } } @@ -4929,7 +4932,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1369; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -4960,11 +4963,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1365; + this.state = 1371; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1366; + this.state = 1372; this.match(HiveSqlParser.KW_TABLE); - this.state = 1367; + this.state = 1373; this.tableOrPartition(); } } @@ -4988,11 +4991,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1369; + this.state = 1375; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1370; + this.state = 1376; this.db_schema(); - this.state = 1371; + this.state = 1377; localContext._dbName = this.dbSchemaName(); } } @@ -5016,11 +5019,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1373; + this.state = 1379; this.match(HiveSqlParser.KW_CREATE); - this.state = 1374; + this.state = 1380; this.match(HiveSqlParser.KW_ROLE); - this.state = 1375; + this.state = 1381; localContext._roleName = this.id_(); } } @@ -5044,11 +5047,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1377; + this.state = 1383; this.match(HiveSqlParser.KW_DROP); - this.state = 1378; + this.state = 1384; this.match(HiveSqlParser.KW_ROLE); - this.state = 1379; + this.state = 1385; localContext._roleName = this.id_(); } } @@ -5073,30 +5076,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1381; + this.state = 1387; this.match(HiveSqlParser.KW_GRANT); - this.state = 1382; + this.state = 1388; localContext._privList = this.privilegeList(); - this.state = 1384; + this.state = 1390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1383; + this.state = 1389; this.privilegeObject(); } } - this.state = 1386; + this.state = 1392; this.match(HiveSqlParser.KW_TO); - this.state = 1387; + this.state = 1393; this.principalSpecification(); - this.state = 1389; + this.state = 1395; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1388; + this.state = 1394; this.withGrantOption(); } break; @@ -5124,33 +5127,33 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1391; + this.state = 1397; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1393; + this.state = 1399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1392; + this.state = 1398; this.grantOptionFor(); } } - this.state = 1395; + this.state = 1401; this.privilegeList(); - this.state = 1397; + this.state = 1403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1396; + this.state = 1402; this.privilegeObject(); } } - this.state = 1399; + this.state = 1405; this.match(HiveSqlParser.KW_FROM); - this.state = 1400; + this.state = 1406; this.principalSpecification(); } } @@ -5175,46 +5178,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1402; + this.state = 1408; this.match(HiveSqlParser.KW_GRANT); - this.state = 1404; + this.state = 1410; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1403; + this.state = 1409; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1406; + this.state = 1412; this.id_(); - this.state = 1411; + this.state = 1417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1407; + this.state = 1413; this.match(HiveSqlParser.COMMA); - this.state = 1408; + this.state = 1414; this.id_(); } } - this.state = 1413; + this.state = 1419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1414; + this.state = 1420; this.match(HiveSqlParser.KW_TO); - this.state = 1415; + this.state = 1421; this.principalSpecification(); - this.state = 1417; + this.state = 1423; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1416; + this.state = 1422; this.withAdminOption(); } break; @@ -5242,49 +5245,49 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1419; + this.state = 1425; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1421; + this.state = 1427; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1420; + this.state = 1426; this.adminOptionFor(); } break; } - this.state = 1424; + this.state = 1430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1423; + this.state = 1429; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1426; + this.state = 1432; this.id_(); - this.state = 1431; + this.state = 1437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1427; + this.state = 1433; this.match(HiveSqlParser.COMMA); - this.state = 1428; + this.state = 1434; this.id_(); } } - this.state = 1433; + this.state = 1439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1434; + this.state = 1440; this.match(HiveSqlParser.KW_FROM); - this.state = 1435; + this.state = 1441; this.principalSpecification(); } } @@ -5308,13 +5311,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1437; + this.state = 1443; this.match(HiveSqlParser.KW_SHOW); - this.state = 1438; + this.state = 1444; this.match(HiveSqlParser.KW_ROLE); - this.state = 1439; + this.state = 1445; this.match(HiveSqlParser.KW_GRANT); - this.state = 1440; + this.state = 1446; this.principalName(); } } @@ -5338,9 +5341,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1442; + this.state = 1448; this.match(HiveSqlParser.KW_SHOW); - this.state = 1443; + this.state = 1449; this.match(HiveSqlParser.KW_ROLES); } } @@ -5364,11 +5367,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1445; + this.state = 1451; this.match(HiveSqlParser.KW_SHOW); - this.state = 1446; + this.state = 1452; this.match(HiveSqlParser.KW_CURRENT); - this.state = 1447; + this.state = 1453; this.match(HiveSqlParser.KW_ROLES); } } @@ -5392,22 +5395,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1449; + this.state = 1455; this.match(HiveSqlParser.KW_SET); - this.state = 1450; + this.state = 1456; this.match(HiveSqlParser.KW_ROLE); - this.state = 1454; + this.state = 1460; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1451; + this.state = 1457; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1452; + this.state = 1458; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5652,7 +5655,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1453; + this.state = 1459; this.id_(); } break; @@ -5682,28 +5685,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1456; + this.state = 1462; this.match(HiveSqlParser.KW_SHOW); - this.state = 1457; + this.state = 1463; this.match(HiveSqlParser.KW_GRANT); - this.state = 1459; + this.state = 1465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 287 || _la === 369) { { - this.state = 1458; + this.state = 1464; this.principalName(); } } - this.state = 1463; + this.state = 1469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1461; + this.state = 1467; this.match(HiveSqlParser.KW_ON); - this.state = 1462; + this.state = 1468; this.privilegeIncludeColObject(); } } @@ -5730,11 +5733,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1465; + this.state = 1471; this.match(HiveSqlParser.KW_SHOW); - this.state = 1466; + this.state = 1472; this.match(HiveSqlParser.KW_PRINCIPALS); - this.state = 1467; + this.state = 1473; localContext._roleName = this.id_(); } } @@ -5756,13 +5759,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); this.enterRule(localContext, 110, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1471; + this.state = 1477; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1469; + this.state = 1475; this.match(HiveSqlParser.KW_ALL); } break; @@ -6010,7 +6013,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1470; + this.state = 1476; this.privObjectCols(); } break; @@ -6038,9 +6041,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1473; + this.state = 1479; this.match(HiveSqlParser.KW_ON); - this.state = 1474; + this.state = 1480; this.privObject(); } } @@ -6063,50 +6066,50 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 114, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1487; + this.state = 1493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1476; + this.state = 1482; this.db_schema(); - this.state = 1477; + this.state = 1483; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1480; + this.state = 1486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1479; + this.state = 1485; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1482; + this.state = 1488; this.tableOrPartition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1483; + this.state = 1489; this.match(HiveSqlParser.KW_URI); - this.state = 1484; + this.state = 1490; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1485; + this.state = 1491; this.match(HiveSqlParser.KW_SERVER); - this.state = 1486; + this.state = 1492; this.id_(); } break; @@ -6131,53 +6134,53 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 116, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1509; + this.state = 1515; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1489; + this.state = 1495; this.db_schema(); - this.state = 1490; + this.state = 1496; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1493; + this.state = 1499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1492; + this.state = 1498; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1495; + this.state = 1501; this.tableName(); - this.state = 1500; + this.state = 1506; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1496; + this.state = 1502; this.match(HiveSqlParser.LPAREN); - this.state = 1497; + this.state = 1503; localContext._cols = this.columnNameList(); - this.state = 1498; + this.state = 1504; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1503; + this.state = 1509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1502; + this.state = 1508; this.partitionSpec(); } } @@ -6187,18 +6190,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1505; + this.state = 1511; this.match(HiveSqlParser.KW_URI); - this.state = 1506; + this.state = 1512; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1507; + this.state = 1513; this.match(HiveSqlParser.KW_SERVER); - this.state = 1508; + this.state = 1514; this.id_(); } break; @@ -6225,21 +6228,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1511; + this.state = 1517; this.privilegeDef(); - this.state = 1516; + this.state = 1522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1512; + this.state = 1518; this.match(HiveSqlParser.COMMA); - this.state = 1513; + this.state = 1519; this.privilegeDef(); } } - this.state = 1518; + this.state = 1524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6266,18 +6269,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1519; + this.state = 1525; this.privilegeType(); - this.state = 1524; + this.state = 1530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1520; + this.state = 1526; this.match(HiveSqlParser.LPAREN); - this.state = 1521; + this.state = 1527; localContext._cols = this.columnNameList(); - this.state = 1522; + this.state = 1528; this.match(HiveSqlParser.RPAREN); } } @@ -6305,7 +6308,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1526; + this.state = 1532; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 190 || _la === 299 || _la === 309 || _la === 365)) { this.errorHandler.recoverInline(this); @@ -6337,21 +6340,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1528; + this.state = 1534; this.principalName(); - this.state = 1533; + this.state = 1539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1529; + this.state = 1535; this.match(HiveSqlParser.COMMA); - this.state = 1530; + this.state = 1536; this.principalName(); } } - this.state = 1535; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6375,33 +6378,33 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalNameContext(this.context, this.state); this.enterRule(localContext, 126, HiveSqlParser.RULE_principalName); try { - this.state = 1542; + this.state = 1548; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1536; + this.state = 1542; this.match(HiveSqlParser.KW_USER); - this.state = 1537; + this.state = 1543; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1538; + this.state = 1544; this.match(HiveSqlParser.KW_GROUP); - this.state = 1539; + this.state = 1545; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1540; + this.state = 1546; this.match(HiveSqlParser.KW_ROLE); - this.state = 1541; + this.state = 1547; this.id_(); } break; @@ -6427,31 +6430,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalAlterNameContext(this.context, this.state); this.enterRule(localContext, 128, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1549; + this.state = 1555; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1544; + this.state = 1550; this.match(HiveSqlParser.KW_USER); - this.state = 1545; + this.state = 1551; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1546; + this.state = 1552; this.match(HiveSqlParser.KW_ROLE); - this.state = 1547; + this.state = 1553; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1548; + this.state = 1554; this.id_(); } break; @@ -6477,11 +6480,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1551; + this.state = 1557; this.match(HiveSqlParser.KW_WITH); - this.state = 1552; + this.state = 1558; this.match(HiveSqlParser.KW_GRANT); - this.state = 1553; + this.state = 1559; this.match(HiveSqlParser.KW_OPTION); } } @@ -6505,11 +6508,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1555; + this.state = 1561; this.match(HiveSqlParser.KW_GRANT); - this.state = 1556; + this.state = 1562; this.match(HiveSqlParser.KW_OPTION); - this.state = 1557; + this.state = 1563; this.match(HiveSqlParser.KW_FOR); } } @@ -6533,11 +6536,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1559; + this.state = 1565; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1560; + this.state = 1566; this.match(HiveSqlParser.KW_OPTION); - this.state = 1561; + this.state = 1567; this.match(HiveSqlParser.KW_FOR); } } @@ -6561,11 +6564,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1563; + this.state = 1569; this.match(HiveSqlParser.KW_WITH); - this.state = 1564; + this.state = 1570; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1565; + this.state = 1571; this.match(HiveSqlParser.KW_OPTION); } } @@ -6590,29 +6593,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1567; + this.state = 1573; this.match(HiveSqlParser.KW_MSCK); - this.state = 1569; + this.state = 1575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 276) { { - this.state = 1568; + this.state = 1574; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1571; + this.state = 1577; this.match(HiveSqlParser.KW_TABLE); - this.state = 1572; - this.tableName(); this.state = 1578; + this.tableName(); + this.state = 1584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1573; + this.state = 1579; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101 || _la === 326)) { @@ -6622,14 +6625,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1574; + this.state = 1580; localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1576; + this.state = 1582; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1575; + this.state = 1581; this.partitionSelectorSpec(); } break; @@ -6661,21 +6664,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1580; + this.state = 1586; this.resource(); - this.state = 1585; + this.state = 1591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1581; + this.state = 1587; this.match(HiveSqlParser.COMMA); - this.state = 1582; + this.state = 1588; this.resource(); } } - this.state = 1587; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6701,9 +6704,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1588; + this.state = 1594; localContext._resType = this.resourceType(); - this.state = 1589; + this.state = 1595; localContext._resPath = this.match(HiveSqlParser.StringLiteral); } } @@ -6728,7 +6731,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1591; + this.state = 1597; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 128 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -6760,34 +6763,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1593; + this.state = 1599; this.match(HiveSqlParser.KW_CREATE); - this.state = 1595; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1594; + this.state = 1600; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1597; + this.state = 1603; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1598; + this.state = 1604; this.functionNameCreate(); - this.state = 1599; + this.state = 1605; this.match(HiveSqlParser.KW_AS); - this.state = 1600; + this.state = 1606; this.match(HiveSqlParser.StringLiteral); - this.state = 1603; + this.state = 1609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 370) { { - this.state = 1601; + this.state = 1607; this.match(HiveSqlParser.KW_USING); - this.state = 1602; + this.state = 1608; localContext._rList = this.resourceList(); } } @@ -6815,31 +6818,31 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1605; + this.state = 1611; this.match(HiveSqlParser.KW_DROP); - this.state = 1607; + this.state = 1613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1606; + this.state = 1612; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1609; + this.state = 1615; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1611; + this.state = 1617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1610; + this.state = 1616; this.ifExists(); } } - this.state = 1613; + this.state = 1619; this.functionNameForDDL(); } } @@ -6864,9 +6867,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1615; + this.state = 1621; this.match(HiveSqlParser.KW_RELOAD); - this.state = 1616; + this.state = 1622; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); @@ -6898,29 +6901,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1618; + this.state = 1624; this.match(HiveSqlParser.KW_CREATE); - this.state = 1619; + this.state = 1625; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1620; + this.state = 1626; this.match(HiveSqlParser.KW_MACRO); - this.state = 1621; + this.state = 1627; this.match(HiveSqlParser.Identifier); - this.state = 1622; + this.state = 1628; this.match(HiveSqlParser.LPAREN); - this.state = 1624; + this.state = 1630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 1623; + this.state = 1629; this.columnNameTypeList(); } } - this.state = 1626; + this.state = 1632; this.match(HiveSqlParser.RPAREN); - this.state = 1627; + this.state = 1633; this.expression(); } } @@ -6945,23 +6948,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1629; + this.state = 1635; this.match(HiveSqlParser.KW_DROP); - this.state = 1630; + this.state = 1636; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1631; + this.state = 1637; this.match(HiveSqlParser.KW_MACRO); - this.state = 1633; + this.state = 1639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1632; + this.state = 1638; this.ifExists(); } } - this.state = 1635; + this.state = 1641; this.match(HiveSqlParser.Identifier); } } @@ -6986,124 +6989,124 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1637; + this.state = 1643; this.match(HiveSqlParser.KW_CREATE); - this.state = 1638; + this.state = 1644; this.match(HiveSqlParser.KW_INDEX); - this.state = 1639; + this.state = 1645; this.id_(); - this.state = 1640; + this.state = 1646; this.match(HiveSqlParser.KW_ON); - this.state = 1641; + this.state = 1647; this.match(HiveSqlParser.KW_TABLE); - this.state = 1642; + this.state = 1648; this.tableName(); - this.state = 1643; + this.state = 1649; this.columnParenthesesList(); - this.state = 1644; + this.state = 1650; this.match(HiveSqlParser.KW_AS); - this.state = 1645; + this.state = 1651; localContext._indextype = this.match(HiveSqlParser.StringLiteral); - this.state = 1649; + this.state = 1655; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1646; + this.state = 1652; this.match(HiveSqlParser.KW_WITH); - this.state = 1647; + this.state = 1653; this.match(HiveSqlParser.KW_DEFERRED); - this.state = 1648; + this.state = 1654; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1653; + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1651; + this.state = 1657; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1652; + this.state = 1658; this.tableProperties(); } } - this.state = 1658; + this.state = 1664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1655; + this.state = 1661; this.match(HiveSqlParser.KW_IN); - this.state = 1656; + this.state = 1662; this.match(HiveSqlParser.KW_TABLE); - this.state = 1657; + this.state = 1663; this.tableName(); } } - this.state = 1663; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1660; + this.state = 1666; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1661; + this.state = 1667; this.match(HiveSqlParser.KW_BY); - this.state = 1662; + this.state = 1668; this.columnParenthesesList(); } } - this.state = 1669; + this.state = 1675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291 || _la === 321) { { - this.state = 1666; + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1665; + this.state = 1671; this.tableRowFormat(); } } - this.state = 1668; + this.state = 1674; this.tableFileFormat(); } } - this.state = 1672; + this.state = 1678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1671; + this.state = 1677; this.locationPath(); } } - this.state = 1675; + this.state = 1681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1674; + this.state = 1680; this.tablePropertiesPrefixed(); } } - this.state = 1678; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1677; + this.state = 1683; this.tableComment(); } } @@ -7131,25 +7134,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1680; + this.state = 1686; this.match(HiveSqlParser.KW_DROP); - this.state = 1681; + this.state = 1687; this.match(HiveSqlParser.KW_INDEX); - this.state = 1683; + this.state = 1689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1682; + this.state = 1688; this.ifExists(); } } - this.state = 1685; + this.state = 1691; this.id_(); - this.state = 1686; + this.state = 1692; this.match(HiveSqlParser.KW_ON); - this.state = 1687; + this.state = 1693; this.tableName(); } } @@ -7174,81 +7177,81 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1689; + this.state = 1695; this.match(HiveSqlParser.KW_CREATE); - this.state = 1692; + this.state = 1698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1690; + this.state = 1696; this.match(HiveSqlParser.KW_OR); - this.state = 1691; + this.state = 1697; this.match(HiveSqlParser.KW_REPLACE); } } - this.state = 1694; + this.state = 1700; this.match(HiveSqlParser.KW_VIEW); - this.state = 1696; + this.state = 1702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1695; + this.state = 1701; this.ifNotExists(); } } - this.state = 1698; + this.state = 1704; localContext._name = this.viewNameCreate(); - this.state = 1703; + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1699; + this.state = 1705; this.match(HiveSqlParser.LPAREN); - this.state = 1700; + this.state = 1706; this.columnNameCommentList(); - this.state = 1701; + this.state = 1707; this.match(HiveSqlParser.RPAREN); } } - this.state = 1706; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1705; + this.state = 1711; this.tableComment(); } } - this.state = 1709; + this.state = 1715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1708; + this.state = 1714; this.viewPartition(); } } - this.state = 1712; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1711; + this.state = 1717; this.tablePropertiesPrefixed(); } } - this.state = 1714; + this.state = 1720; this.match(HiveSqlParser.KW_AS); - this.state = 1715; + this.state = 1721; this.selectStatementWithCTE(); } } @@ -7272,35 +7275,35 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1717; + this.state = 1723; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1718; - this.match(HiveSqlParser.KW_ON); this.state = 1724; + this.match(HiveSqlParser.KW_ON); + this.state = 1730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1719; + this.state = 1725; this.match(HiveSqlParser.LPAREN); - this.state = 1720; + this.state = 1726; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 1721; + this.state = 1727; this.match(HiveSqlParser.KW_SPEC); - this.state = 1722; + this.state = 1728; this.match(HiveSqlParser.LPAREN); - this.state = 1723; + this.state = 1729; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1726; + this.state = 1732; this.match(HiveSqlParser.RPAREN); } } @@ -7322,20 +7325,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ViewOrganizationContext(this.context, this.state); this.enterRule(localContext, 164, HiveSqlParser.RULE_viewOrganization); try { - this.state = 1730; + this.state = 1736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 1728; + this.state = 1734; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1729; + this.state = 1735; this.viewComplexSpec(); } break; @@ -7363,15 +7366,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1732; + this.state = 1738; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1733; + this.state = 1739; this.match(HiveSqlParser.KW_ON); - this.state = 1734; + this.state = 1740; this.match(HiveSqlParser.LPAREN); - this.state = 1735; + this.state = 1741; this.columnNameList(); - this.state = 1736; + this.state = 1742; this.match(HiveSqlParser.RPAREN); } } @@ -7395,9 +7398,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1744; this.viewDistSpec(); - this.state = 1739; + this.state = 1745; this.viewSortSpec(); } } @@ -7421,15 +7424,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1741; + this.state = 1747; this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 1742; + this.state = 1748; this.match(HiveSqlParser.KW_ON); - this.state = 1743; + this.state = 1749; this.match(HiveSqlParser.LPAREN); - this.state = 1744; + this.state = 1750; localContext._colList = this.columnNameList(); - this.state = 1745; + this.state = 1751; this.match(HiveSqlParser.RPAREN); } } @@ -7453,15 +7456,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1747; + this.state = 1753; this.match(HiveSqlParser.KW_SORTED); - this.state = 1748; + this.state = 1754; this.match(HiveSqlParser.KW_ON); - this.state = 1749; + this.state = 1755; this.match(HiveSqlParser.LPAREN); - this.state = 1750; + this.state = 1756; localContext._colList = this.columnNameList(); - this.state = 1751; + this.state = 1757; this.match(HiveSqlParser.RPAREN); } } @@ -7486,21 +7489,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1753; + this.state = 1759; this.match(HiveSqlParser.KW_DROP); - this.state = 1754; + this.state = 1760; this.match(HiveSqlParser.KW_VIEW); - this.state = 1756; + this.state = 1762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1755; + this.state = 1761; this.ifExists(); } } - this.state = 1758; + this.state = 1764; this.viewName(); } } @@ -7525,107 +7528,107 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1760; + this.state = 1766; this.match(HiveSqlParser.KW_CREATE); - this.state = 1761; + this.state = 1767; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1762; + this.state = 1768; this.match(HiveSqlParser.KW_VIEW); - this.state = 1764; + this.state = 1770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1763; + this.state = 1769; this.ifNotExists(); } } - this.state = 1766; + this.state = 1772; localContext._name = this.viewNameCreate(); - this.state = 1768; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 1767; + this.state = 1773; this.rewriteDisabled(); } } - this.state = 1771; + this.state = 1777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1770; + this.state = 1776; this.tableComment(); } } - this.state = 1774; + this.state = 1780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1773; + this.state = 1779; this.viewPartition(); } } - this.state = 1777; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 1776; + this.state = 1782; this.viewOrganization(); } } - this.state = 1780; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1779; + this.state = 1785; this.tableRowFormat(); } } - this.state = 1783; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 1782; + this.state = 1788; this.tableFileFormat(); } } - this.state = 1786; + this.state = 1792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1785; + this.state = 1791; this.locationPath(); } } - this.state = 1789; + this.state = 1795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1788; + this.state = 1794; this.tablePropertiesPrefixed(); } } - this.state = 1791; + this.state = 1797; this.match(HiveSqlParser.KW_AS); - this.state = 1792; + this.state = 1798; this.selectStatementWithCTE(); } } @@ -7650,23 +7653,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1794; + this.state = 1800; this.match(HiveSqlParser.KW_DROP); - this.state = 1795; + this.state = 1801; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1796; + this.state = 1802; this.match(HiveSqlParser.KW_VIEW); - this.state = 1798; + this.state = 1804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1797; + this.state = 1803; this.ifExists(); } } - this.state = 1800; + this.state = 1806; this.viewName(); } } @@ -7691,37 +7694,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1802; + this.state = 1808; this.match(HiveSqlParser.KW_CREATE); - this.state = 1803; + this.state = 1809; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1804; + this.state = 1810; this.match(HiveSqlParser.KW_QUERY); - this.state = 1805; + this.state = 1811; localContext._name = this.id_(); - this.state = 1806; + this.state = 1812; this.scheduleSpec(); - this.state = 1808; + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1807; + this.state = 1813; this.executedAsSpec(); } } - this.state = 1811; + this.state = 1817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 1810; + this.state = 1816; this.enableSpecification(); } } - this.state = 1813; + this.state = 1819; this.definedAsSpec(); } } @@ -7745,13 +7748,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1815; + this.state = 1821; this.match(HiveSqlParser.KW_DROP); - this.state = 1816; + this.state = 1822; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1817; + this.state = 1823; this.match(HiveSqlParser.KW_QUERY); - this.state = 1818; + this.state = 1824; localContext._name = this.id_(); } } @@ -7775,15 +7778,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1820; + this.state = 1826; this.match(HiveSqlParser.KW_ALTER); - this.state = 1821; + this.state = 1827; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1822; + this.state = 1828; this.match(HiveSqlParser.KW_QUERY); - this.state = 1823; + this.state = 1829; localContext._name = this.id_(); - this.state = 1824; + this.state = 1830; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7805,21 +7808,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); this.enterRule(localContext, 186, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 1831; + this.state = 1837; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 1826; + this.state = 1832; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1827; + this.state = 1833; this.executedAsSpec(); } break; @@ -7829,7 +7832,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 1828; + this.state = 1834; this.enableSpecification(); } break; @@ -7837,14 +7840,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 1829; + this.state = 1835; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1830; + this.state = 1836; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -7871,61 +7874,61 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 188, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 1848; + this.state = 1854; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 1833; + this.state = 1839; this.match(HiveSqlParser.KW_CRON); - this.state = 1834; + this.state = 1840; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 1835; + this.state = 1841; this.match(HiveSqlParser.KW_EVERY); - this.state = 1837; + this.state = 1843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 431) { { - this.state = 1836; + this.state = 1842; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 1839; + this.state = 1845; localContext._qualifier = this.intervalQualifiers(); - this.state = 1846; + this.state = 1852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 223) { { - this.state = 1843; + this.state = 1849; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 1840; + this.state = 1846; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 1841; + this.state = 1847; this.match(HiveSqlParser.KW_OFFSET); - this.state = 1842; + this.state = 1848; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1845; + this.state = 1851; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -7956,11 +7959,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1850; + this.state = 1856; this.match(HiveSqlParser.KW_EXECUTED); - this.state = 1851; + this.state = 1857; this.match(HiveSqlParser.KW_AS); - this.state = 1852; + this.state = 1858; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -7985,19 +7988,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1855; + this.state = 1861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 1854; + this.state = 1860; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 1857; + this.state = 1863; this.match(HiveSqlParser.KW_AS); - this.state = 1858; + this.state = 1864; this.statement(); } } @@ -8019,7 +8022,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowStmtIdentifierContext(this.context, this.state); this.enterRule(localContext, 194, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 1862; + this.state = 1868; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8264,14 +8267,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 1860; + this.state = 1866; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 1861; + this.state = 1867; this.match(HiveSqlParser.StringLiteral); } break; @@ -8299,9 +8302,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1864; + this.state = 1870; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1865; + this.state = 1871; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8325,9 +8328,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1867; + this.state = 1873; this.match(HiveSqlParser.KW_LIFECYCLE); - this.state = 1868; + this.state = 1874; this.match(HiveSqlParser.Number); } } @@ -8351,29 +8354,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1870; + this.state = 1876; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1871; + this.state = 1877; this.match(HiveSqlParser.KW_BY); - this.state = 1880; + this.state = 1886; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1872; + this.state = 1878; this.match(HiveSqlParser.LPAREN); - this.state = 1875; + this.state = 1881; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1873; + this.state = 1879; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 1874; + this.state = 1880; localContext._opt2 = this.columnNameList(); } break; @@ -8382,18 +8385,18 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SPEC: { - this.state = 1877; + this.state = 1883; this.match(HiveSqlParser.KW_SPEC); - this.state = 1878; + this.state = 1884; this.match(HiveSqlParser.LPAREN); - this.state = 1879; + this.state = 1885; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1882; + this.state = 1888; this.match(HiveSqlParser.RPAREN); } } @@ -8418,21 +8421,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1884; + this.state = 1890; this.columnNameTypeConstraint(); - this.state = 1889; + this.state = 1895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1885; + this.state = 1891; this.match(HiveSqlParser.COMMA); - this.state = 1886; + this.state = 1892; this.columnNameTypeConstraint(); } } - this.state = 1891; + this.state = 1897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8459,21 +8462,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1892; + this.state = 1898; this.partitionTransformType(); - this.state = 1897; + this.state = 1903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1893; + this.state = 1899; this.match(HiveSqlParser.COMMA); - this.state = 1894; + this.state = 1900; this.partitionTransformType(); } } - this.state = 1899; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8498,65 +8501,65 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 206, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 1918; + this.state = 1924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1900; + this.state = 1906; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1905; + this.state = 1911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: { - this.state = 1901; + this.state = 1907; this.year(); } break; case HiveSqlParser.KW_MONTH: case HiveSqlParser.KW_MONTHS: { - this.state = 1902; + this.state = 1908; this.month(); } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: { - this.state = 1903; + this.state = 1909; this.day(); } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: { - this.state = 1904; + this.state = 1910; this.hour(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1907; + this.state = 1913; this.match(HiveSqlParser.LPAREN); - this.state = 1908; + this.state = 1914; this.columnName(); - this.state = 1909; + this.state = 1915; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1911; + this.state = 1917; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 351)) { this.errorHandler.recoverInline(this); @@ -8565,15 +8568,15 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1912; + this.state = 1918; this.match(HiveSqlParser.LPAREN); - this.state = 1913; + this.state = 1919; localContext._value = this.match(HiveSqlParser.Number); - this.state = 1914; + this.state = 1920; this.match(HiveSqlParser.COMMA); - this.state = 1915; + this.state = 1921; this.columnName(); - this.state = 1916; + this.state = 1922; this.match(HiveSqlParser.RPAREN); } break; @@ -8600,39 +8603,39 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1920; + this.state = 1926; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1921; + this.state = 1927; this.match(HiveSqlParser.KW_BY); - this.state = 1922; + this.state = 1928; this.match(HiveSqlParser.LPAREN); - this.state = 1923; + this.state = 1929; localContext._bucketCols = this.columnNameList(); - this.state = 1924; + this.state = 1930; this.match(HiveSqlParser.RPAREN); - this.state = 1931; + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1925; + this.state = 1931; this.match(HiveSqlParser.KW_SORTED); - this.state = 1926; + this.state = 1932; this.match(HiveSqlParser.KW_BY); - this.state = 1927; + this.state = 1933; this.match(HiveSqlParser.LPAREN); - this.state = 1928; + this.state = 1934; localContext._sortCols = this.columnNameOrderList(); - this.state = 1929; + this.state = 1935; this.match(HiveSqlParser.RPAREN); } } - this.state = 1933; + this.state = 1939; this.match(HiveSqlParser.KW_INTO); - this.state = 1934; + this.state = 1940; localContext._num = this.match(HiveSqlParser.Number); - this.state = 1935; + this.state = 1941; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8656,30 +8659,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1937; + this.state = 1943; this.match(HiveSqlParser.KW_SKEWED); - this.state = 1938; + this.state = 1944; this.match(HiveSqlParser.KW_BY); - this.state = 1939; + this.state = 1945; this.match(HiveSqlParser.LPAREN); - this.state = 1940; + this.state = 1946; localContext._skewedCols = this.columnNameList(); - this.state = 1941; + this.state = 1947; this.match(HiveSqlParser.RPAREN); - this.state = 1942; + this.state = 1948; this.match(HiveSqlParser.KW_ON); - this.state = 1943; + this.state = 1949; this.match(HiveSqlParser.LPAREN); - this.state = 1944; + this.state = 1950; localContext._skewedValues = this.skewedValueElement(); - this.state = 1945; + this.state = 1951; this.match(HiveSqlParser.RPAREN); - this.state = 1947; + this.state = 1953; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1946; + this.state = 1952; this.storedAsDirs(); } break; @@ -8704,20 +8707,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RowFormatContext(this.context, this.state); this.enterRule(localContext, 212, HiveSqlParser.RULE_rowFormat); try { - this.state = 1951; + this.state = 1957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1949; + this.state = 1955; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1950; + this.state = 1956; this.rowFormatDelimited(); } break; @@ -8743,9 +8746,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1953; + this.state = 1959; this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 1954; + this.state = 1960; this.match(HiveSqlParser.StringLiteral); } } @@ -8769,9 +8772,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1956; + this.state = 1962; this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 1957; + this.state = 1963; this.match(HiveSqlParser.StringLiteral); } } @@ -8795,24 +8798,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1959; + this.state = 1965; this.match(HiveSqlParser.KW_ROW); - this.state = 1960; + this.state = 1966; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1961; + this.state = 1967; this.match(HiveSqlParser.KW_SERDE); - this.state = 1962; + this.state = 1968; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 1966; + this.state = 1972; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1963; + this.state = 1969; this.match(HiveSqlParser.KW_WITH); - this.state = 1964; + this.state = 1970; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 1965; + this.state = 1971; localContext._serderops = this.tableProperties(); } break; @@ -8840,58 +8843,58 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1968; + this.state = 1974; this.match(HiveSqlParser.KW_ROW); - this.state = 1969; + this.state = 1975; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1970; + this.state = 1976; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 1972; + this.state = 1978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 1971; + this.state = 1977; this.tableRowFormatFieldIdentifier(); } } - this.state = 1975; + this.state = 1981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1974; + this.state = 1980; this.tableRowFormatCollItemsIdentifier(); } } - this.state = 1978; + this.state = 1984; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1977; + this.state = 1983; this.tableRowFormatMapKeysIdentifier(); } break; } - this.state = 1981; + this.state = 1987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 186) { { - this.state = 1980; + this.state = 1986; this.tableRowFormatLinesIdentifier(); } } - this.state = 1984; + this.state = 1990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 1983; + this.state = 1989; this.tableRowNullFormat(); } } @@ -8916,20 +8919,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableRowFormatContext(this.context, this.state); this.enterRule(localContext, 222, HiveSqlParser.RULE_tableRowFormat); try { - this.state = 1988; + this.state = 1994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1986; + this.state = 1992; this.rowFormatDelimited(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1987; + this.state = 1993; this.rowFormatSerde(); } break; @@ -8955,9 +8958,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1990; + this.state = 1996; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1991; + this.state = 1997; this.tableProperties(); } } @@ -8981,11 +8984,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1993; + this.state = 1999; this.match(HiveSqlParser.LPAREN); - this.state = 1994; + this.state = 2000; this.tablePropertiesList(); - this.state = 1995; + this.state = 2001; this.match(HiveSqlParser.RPAREN); } } @@ -9008,34 +9011,34 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 228, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 2006; + this.state = 2012; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1997; + this.state = 2003; this.keyValuePropertyList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1998; + this.state = 2004; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2003; + this.state = 2009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1999; + this.state = 2005; this.match(HiveSqlParser.COMMA); - this.state = 2000; + this.state = 2006; localContext._key = this.match(HiveSqlParser.StringLiteral); } } - this.state = 2005; + this.state = 2011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9063,11 +9066,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2008; + this.state = 2014; this.match(HiveSqlParser.LPAREN); - this.state = 2009; + this.state = 2015; this.keyValuePropertyList(); - this.state = 2010; + this.state = 2016; this.match(HiveSqlParser.RPAREN); } } @@ -9092,21 +9095,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2012; + this.state = 2018; this.keyValueProperty(); - this.state = 2017; + this.state = 2023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2013; + this.state = 2019; this.match(HiveSqlParser.COMMA); - this.state = 2014; + this.state = 2020; this.keyValueProperty(); } } - this.state = 2019; + this.state = 2025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9132,11 +9135,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2020; + this.state = 2026; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2021; + this.state = 2027; this.match(HiveSqlParser.EQUAL); - this.state = 2022; + this.state = 2028; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9161,24 +9164,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2024; + this.state = 2030; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2025; + this.state = 2031; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2026; + this.state = 2032; this.match(HiveSqlParser.KW_BY); - this.state = 2027; + this.state = 2033; localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); - this.state = 2031; + this.state = 2037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2028; + this.state = 2034; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2029; + this.state = 2035; this.match(HiveSqlParser.KW_BY); - this.state = 2030; + this.state = 2036; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9205,15 +9208,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2039; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2034; + this.state = 2040; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2035; + this.state = 2041; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2036; + this.state = 2042; this.match(HiveSqlParser.KW_BY); - this.state = 2037; + this.state = 2043; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9237,15 +9240,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 2045; this.match(HiveSqlParser.KW_MAP); - this.state = 2040; + this.state = 2046; this.match(HiveSqlParser.KW_KEYS); - this.state = 2041; + this.state = 2047; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2042; + this.state = 2048; this.match(HiveSqlParser.KW_BY); - this.state = 2043; + this.state = 2049; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9269,13 +9272,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2051; this.match(HiveSqlParser.KW_LINES); - this.state = 2046; + this.state = 2052; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2047; + this.state = 2053; this.match(HiveSqlParser.KW_BY); - this.state = 2048; + this.state = 2054; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9299,13 +9302,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2050; + this.state = 2056; this.match(HiveSqlParser.KW_NULL); - this.state = 2051; + this.state = 2057; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2052; + this.state = 2058; this.match(HiveSqlParser.KW_AS); - this.state = 2053; + this.state = 2059; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9328,36 +9331,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 246, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2096; + this.state = 2102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 2061; this.match(HiveSqlParser.KW_STORED); - this.state = 2056; + this.state = 2062; this.match(HiveSqlParser.KW_AS); - this.state = 2057; + this.state = 2063; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2058; + this.state = 2064; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2059; + this.state = 2065; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 2060; + this.state = 2066; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2065; + this.state = 2071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2061; + this.state = 2067; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2062; + this.state = 2068; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2063; + this.state = 2069; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2064; + this.state = 2070; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9367,36 +9370,36 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2067; + this.state = 2073; this.match(HiveSqlParser.KW_STORED); - this.state = 2068; + this.state = 2074; this.match(HiveSqlParser.KW_BY); - this.state = 2069; + this.state = 2075; localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); - this.state = 2073; + this.state = 2079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 2070; + this.state = 2076; this.match(HiveSqlParser.KW_WITH); - this.state = 2071; + this.state = 2077; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2072; + this.state = 2078; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2078; + this.state = 2084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2075; + this.state = 2081; this.match(HiveSqlParser.KW_STORED); - this.state = 2076; + this.state = 2082; this.match(HiveSqlParser.KW_AS); - this.state = 2077; + this.state = 2083; localContext._fileformat = this.id_(); } } @@ -9406,36 +9409,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2080; + this.state = 2086; this.match(HiveSqlParser.KW_STORED); - this.state = 2081; + this.state = 2087; this.match(HiveSqlParser.KW_BY); - this.state = 2082; + this.state = 2088; localContext._genericSpec = this.id_(); - this.state = 2086; + this.state = 2092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2083; + this.state = 2089; this.match(HiveSqlParser.KW_WITH); - this.state = 2084; + this.state = 2090; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2085; + this.state = 2091; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2091; + this.state = 2097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2088; + this.state = 2094; this.match(HiveSqlParser.KW_STORED); - this.state = 2089; + this.state = 2095; this.match(HiveSqlParser.KW_AS); - this.state = 2090; + this.state = 2096; localContext._fileformat = this.id_(); } } @@ -9445,11 +9448,11 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2093; + this.state = 2099; this.match(HiveSqlParser.KW_STORED); - this.state = 2094; + this.state = 2100; this.match(HiveSqlParser.KW_AS); - this.state = 2095; + this.state = 2101; localContext._genericSpec = this.id_(); } break; @@ -9476,21 +9479,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2098; + this.state = 2104; this.columnNameType(); - this.state = 2103; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2099; + this.state = 2105; this.match(HiveSqlParser.COMMA); - this.state = 2100; + this.state = 2106; this.columnNameType(); } } - this.state = 2105; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9517,21 +9520,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2106; + this.state = 2112; this.columnNameTypeOrConstraint(); - this.state = 2111; + this.state = 2117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2107; + this.state = 2113; this.match(HiveSqlParser.COMMA); - this.state = 2108; + this.state = 2114; this.columnNameTypeOrConstraint(); } } - this.state = 2113; + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9558,21 +9561,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2114; + this.state = 2120; this.columnNameColonType(); - this.state = 2119; + this.state = 2125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2115; + this.state = 2121; this.match(HiveSqlParser.COMMA); - this.state = 2116; + this.state = 2122; this.columnNameColonType(); } } - this.state = 2121; + this.state = 2127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9599,21 +9602,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2122; + this.state = 2128; this.columnName(); - this.state = 2127; + this.state = 2133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2123; + this.state = 2129; this.match(HiveSqlParser.COMMA); - this.state = 2124; + this.state = 2130; this.columnName(); } } - this.state = 2129; + this.state = 2135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9637,23 +9640,25 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 256, HiveSqlParser.RULE_columnName); try { - this.state = 2132; + this.state = 2139; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2130; - this.poolPath(); + this.state = 2136; + this.poolPathAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2131; + this.state = 2137; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } + this.state = 2138; + this.emptyColumn(); } break; } @@ -9678,7 +9683,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2134; + this.state = 2141; this.poolPath(); } } @@ -9696,13 +9701,54 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext { + let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 260, HiveSqlParser.RULE_columnNamePathAllowEmpty); + try { + this.state = 2146; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2143; + this.poolPathAllowEmpty(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2144; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 2145; + this.emptyColumn(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 260, HiveSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 262, HiveSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2136; + this.state = 2148; this.id_(); } } @@ -9722,52 +9768,52 @@ export class HiveSqlParser extends SQLParserBase { } public extColumnName(): ExtColumnNameContext { let localContext = new ExtColumnNameContext(this.context, this.state); - this.enterRule(localContext, 262, HiveSqlParser.RULE_extColumnName); + this.enterRule(localContext, 264, HiveSqlParser.RULE_extColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2138; + this.state = 2150; this.columnName(); - this.state = 2148; + this.state = 2160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 2139; + this.state = 2151; this.match(HiveSqlParser.DOT); - this.state = 2144; + this.state = 2156; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: { - this.state = 2140; + this.state = 2152; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2141; + this.state = 2153; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2142; + this.state = 2154; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2143; + this.state = 2155; this.id_(); } break; } } } - this.state = 2150; + this.state = 2162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9789,26 +9835,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrderList(): ColumnNameOrderListContext { let localContext = new ColumnNameOrderListContext(this.context, this.state); - this.enterRule(localContext, 264, HiveSqlParser.RULE_columnNameOrderList); + this.enterRule(localContext, 266, HiveSqlParser.RULE_columnNameOrderList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2151; + this.state = 2163; this.columnNameOrder(); - this.state = 2156; + this.state = 2168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2152; + this.state = 2164; this.match(HiveSqlParser.COMMA); - this.state = 2153; + this.state = 2165; this.columnNameOrder(); } } - this.state = 2158; + this.state = 2170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9830,15 +9876,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnParenthesesList(): ColumnParenthesesListContext { let localContext = new ColumnParenthesesListContext(this.context, this.state); - this.enterRule(localContext, 266, HiveSqlParser.RULE_columnParenthesesList); + this.enterRule(localContext, 268, HiveSqlParser.RULE_columnParenthesesList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2159; + this.state = 2171; this.match(HiveSqlParser.LPAREN); - this.state = 2160; + this.state = 2172; this.columnNameList(); - this.state = 2161; + this.state = 2173; this.match(HiveSqlParser.RPAREN); } } @@ -9858,10 +9904,10 @@ export class HiveSqlParser extends SQLParserBase { } public enableValidateSpecification(): EnableValidateSpecificationContext { let localContext = new EnableValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 268, HiveSqlParser.RULE_enableValidateSpecification); + this.enterRule(localContext, 270, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2168; + this.state = 2180; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -9870,14 +9916,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2163; + this.state = 2175; this.enableSpecification(); - this.state = 2165; + this.state = 2177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217 || _la === 373) { { - this.state = 2164; + this.state = 2176; this.validateSpecification(); } } @@ -9888,7 +9934,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2167; + this.state = 2179; this.enforcedSpecification(); } break; @@ -9912,16 +9958,16 @@ export class HiveSqlParser extends SQLParserBase { } public enableSpecification(): EnableSpecificationContext { let localContext = new EnableSpecificationContext(this.context, this.state); - this.enterRule(localContext, 270, HiveSqlParser.RULE_enableSpecification); + this.enterRule(localContext, 272, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2172; + this.state = 2184; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2170; + this.state = 2182; this.enable(); } break; @@ -9929,7 +9975,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2171; + this.state = 2183; this.disable(); } break; @@ -9953,12 +9999,12 @@ export class HiveSqlParser extends SQLParserBase { } public validateSpecification(): ValidateSpecificationContext { let localContext = new ValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 272, HiveSqlParser.RULE_validateSpecification); + this.enterRule(localContext, 274, HiveSqlParser.RULE_validateSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2174; + this.state = 2186; _la = this.tokenStream.LA(1); if(!(_la === 217 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -9985,24 +10031,24 @@ export class HiveSqlParser extends SQLParserBase { } public enforcedSpecification(): EnforcedSpecificationContext { let localContext = new EnforcedSpecificationContext(this.context, this.state); - this.enterRule(localContext, 274, HiveSqlParser.RULE_enforcedSpecification); + this.enterRule(localContext, 276, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2179; + this.state = 2191; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2176; + this.state = 2188; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2177; + this.state = 2189; this.match(HiveSqlParser.KW_NOT); - this.state = 2178; + this.state = 2190; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -10026,12 +10072,12 @@ export class HiveSqlParser extends SQLParserBase { } public relySpecification(): RelySpecificationContext { let localContext = new RelySpecificationContext(this.context, this.state); - this.enterRule(localContext, 276, HiveSqlParser.RULE_relySpecification); + this.enterRule(localContext, 278, HiveSqlParser.RULE_relySpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2181; + this.state = 2193; _la = this.tokenStream.LA(1); if(!(_la === 214 || _la === 272)) { this.errorHandler.recoverInline(this); @@ -10058,31 +10104,31 @@ export class HiveSqlParser extends SQLParserBase { } public createConstraint(): CreateConstraintContext { let localContext = new CreateConstraintContext(this.context, this.state); - this.enterRule(localContext, 278, HiveSqlParser.RULE_createConstraint); + this.enterRule(localContext, 280, HiveSqlParser.RULE_createConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2185; + this.state = 2197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2183; + this.state = 2195; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2184; + this.state = 2196; localContext._constraintName = this.id_(); } } - this.state = 2187; + this.state = 2199; this.tableLevelConstraint(); - this.state = 2189; + this.state = 2201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2188; + this.state = 2200; this.constraintOptsCreate(); } } @@ -10105,22 +10151,22 @@ export class HiveSqlParser extends SQLParserBase { } public alterConstraintWithName(): AlterConstraintWithNameContext { let localContext = new AlterConstraintWithNameContext(this.context, this.state); - this.enterRule(localContext, 280, HiveSqlParser.RULE_alterConstraintWithName); + this.enterRule(localContext, 282, HiveSqlParser.RULE_alterConstraintWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2191; + this.state = 2203; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2192; + this.state = 2204; localContext._constraintName = this.id_(); - this.state = 2193; + this.state = 2205; this.tableLevelConstraint(); - this.state = 2195; + this.state = 2207; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 2194; + this.state = 2206; this.constraintOptsAlter(); } break; @@ -10143,23 +10189,23 @@ export class HiveSqlParser extends SQLParserBase { } public tableLevelConstraint(): TableLevelConstraintContext { let localContext = new TableLevelConstraintContext(this.context, this.state); - this.enterRule(localContext, 282, HiveSqlParser.RULE_tableLevelConstraint); + this.enterRule(localContext, 284, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2199; + this.state = 2211; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2209; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2198; + this.state = 2210; this.checkConstraint(); } break; @@ -10183,13 +10229,13 @@ export class HiveSqlParser extends SQLParserBase { } public pkUkConstraint(): PkUkConstraintContext { let localContext = new PkUkConstraintContext(this.context, this.state); - this.enterRule(localContext, 284, HiveSqlParser.RULE_pkUkConstraint); + this.enterRule(localContext, 286, HiveSqlParser.RULE_pkUkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2213; this.tableConstraintType(); - this.state = 2202; + this.state = 2214; localContext._pkCols = this.columnParenthesesList(); } } @@ -10209,17 +10255,17 @@ export class HiveSqlParser extends SQLParserBase { } public checkConstraint(): CheckConstraintContext { let localContext = new CheckConstraintContext(this.context, this.state); - this.enterRule(localContext, 286, HiveSqlParser.RULE_checkConstraint); + this.enterRule(localContext, 288, HiveSqlParser.RULE_checkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2204; + this.state = 2216; this.match(HiveSqlParser.KW_CHECK); - this.state = 2205; + this.state = 2217; this.match(HiveSqlParser.LPAREN); - this.state = 2206; + this.state = 2218; this.expression(); - this.state = 2207; + this.state = 2219; this.match(HiveSqlParser.RPAREN); } } @@ -10239,41 +10285,41 @@ export class HiveSqlParser extends SQLParserBase { } public createForeignKey(): CreateForeignKeyContext { let localContext = new CreateForeignKeyContext(this.context, this.state); - this.enterRule(localContext, 288, HiveSqlParser.RULE_createForeignKey); + this.enterRule(localContext, 290, HiveSqlParser.RULE_createForeignKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2211; + this.state = 2223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2209; + this.state = 2221; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2210; + this.state = 2222; localContext._constraintName = this.id_(); } } - this.state = 2213; + this.state = 2225; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2214; + this.state = 2226; this.match(HiveSqlParser.KW_KEY); - this.state = 2215; + this.state = 2227; localContext._fkCols = this.columnParenthesesList(); - this.state = 2216; + this.state = 2228; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2217; + this.state = 2229; localContext._tabName = this.tableName(); - this.state = 2218; + this.state = 2230; localContext._parCols = this.columnParenthesesList(); - this.state = 2220; + this.state = 2232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2219; + this.state = 2231; this.constraintOptsCreate(); } } @@ -10296,32 +10342,32 @@ export class HiveSqlParser extends SQLParserBase { } public alterForeignKeyWithName(): AlterForeignKeyWithNameContext { let localContext = new AlterForeignKeyWithNameContext(this.context, this.state); - this.enterRule(localContext, 290, HiveSqlParser.RULE_alterForeignKeyWithName); + this.enterRule(localContext, 292, HiveSqlParser.RULE_alterForeignKeyWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2222; + this.state = 2234; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2223; + this.state = 2235; localContext._constraintName = this.id_(); - this.state = 2224; + this.state = 2236; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2225; + this.state = 2237; this.match(HiveSqlParser.KW_KEY); - this.state = 2226; + this.state = 2238; localContext._fkCols = this.columnParenthesesList(); - this.state = 2227; + this.state = 2239; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2228; + this.state = 2240; localContext._tabName = this.tableName(); - this.state = 2229; + this.state = 2241; localContext._parCols = this.columnParenthesesList(); - this.state = 2231; + this.state = 2243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 2230; + this.state = 2242; this.constraintOptsAlter(); } break; @@ -10344,9 +10390,9 @@ export class HiveSqlParser extends SQLParserBase { } public skewedValueElement(): SkewedValueElementContext { let localContext = new SkewedValueElementContext(this.context, this.state); - this.enterRule(localContext, 292, HiveSqlParser.RULE_skewedValueElement); + this.enterRule(localContext, 294, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2235; + this.state = 2247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -10605,14 +10651,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2233; + this.state = 2245; this.constantList(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2234; + this.state = 2246; this.skewedColumnValuePairList(); } break; @@ -10636,26 +10682,26 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePairList(): SkewedColumnValuePairListContext { let localContext = new SkewedColumnValuePairListContext(this.context, this.state); - this.enterRule(localContext, 294, HiveSqlParser.RULE_skewedColumnValuePairList); + this.enterRule(localContext, 296, HiveSqlParser.RULE_skewedColumnValuePairList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2237; + this.state = 2249; this.skewedColumnValuePair(); - this.state = 2242; + this.state = 2254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2238; + this.state = 2250; this.match(HiveSqlParser.COMMA); - this.state = 2239; + this.state = 2251; this.skewedColumnValuePair(); } } - this.state = 2244; + this.state = 2256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10677,15 +10723,15 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePair(): SkewedColumnValuePairContext { let localContext = new SkewedColumnValuePairContext(this.context, this.state); - this.enterRule(localContext, 296, HiveSqlParser.RULE_skewedColumnValuePair); + this.enterRule(localContext, 298, HiveSqlParser.RULE_skewedColumnValuePair); try { this.enterOuterAlt(localContext, 1); { - this.state = 2245; + this.state = 2257; this.match(HiveSqlParser.LPAREN); - this.state = 2246; + this.state = 2258; localContext._colValues = this.constantList(); - this.state = 2247; + this.state = 2259; this.match(HiveSqlParser.RPAREN); } } @@ -10705,26 +10751,26 @@ export class HiveSqlParser extends SQLParserBase { } public constantList(): ConstantListContext { let localContext = new ConstantListContext(this.context, this.state); - this.enterRule(localContext, 298, HiveSqlParser.RULE_constantList); + this.enterRule(localContext, 300, HiveSqlParser.RULE_constantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2249; + this.state = 2261; this.constant(); - this.state = 2254; + this.state = 2266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2250; + this.state = 2262; this.match(HiveSqlParser.COMMA); - this.state = 2251; + this.state = 2263; this.constant(); } } - this.state = 2256; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10746,12 +10792,12 @@ export class HiveSqlParser extends SQLParserBase { } public orderSpecification(): OrderSpecificationContext { let localContext = new OrderSpecificationContext(this.context, this.state); - this.enterRule(localContext, 300, HiveSqlParser.RULE_orderSpecification); + this.enterRule(localContext, 302, HiveSqlParser.RULE_orderSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2257; + this.state = 2269; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10778,14 +10824,14 @@ export class HiveSqlParser extends SQLParserBase { } public nullOrdering(): NullOrderingContext { let localContext = new NullOrderingContext(this.context, this.state); - this.enterRule(localContext, 302, HiveSqlParser.RULE_nullOrdering); + this.enterRule(localContext, 304, HiveSqlParser.RULE_nullOrdering); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2259; + this.state = 2271; this.match(HiveSqlParser.KW_NULLS); - this.state = 2260; + this.state = 2272; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10812,29 +10858,29 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrder(): ColumnNameOrderContext { let localContext = new ColumnNameOrderContext(this.context, this.state); - this.enterRule(localContext, 304, HiveSqlParser.RULE_columnNameOrder); + this.enterRule(localContext, 306, HiveSqlParser.RULE_columnNameOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2262; + this.state = 2274; this.columnName(); - this.state = 2264; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2263; + this.state = 2275; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2267; + this.state = 2279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2266; + this.state = 2278; localContext._nullSpec = this.nullOrdering(); } } @@ -10857,26 +10903,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameCommentList(): ColumnNameCommentListContext { let localContext = new ColumnNameCommentListContext(this.context, this.state); - this.enterRule(localContext, 306, HiveSqlParser.RULE_columnNameCommentList); + this.enterRule(localContext, 308, HiveSqlParser.RULE_columnNameCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2281; this.columnNameComment(); - this.state = 2274; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2270; + this.state = 2282; this.match(HiveSqlParser.COMMA); - this.state = 2271; + this.state = 2283; this.columnNameComment(); } } - this.state = 2276; + this.state = 2288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10898,21 +10944,21 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameComment(): ColumnNameCommentContext { let localContext = new ColumnNameCommentContext(this.context, this.state); - this.enterRule(localContext, 308, HiveSqlParser.RULE_columnNameComment); + this.enterRule(localContext, 310, HiveSqlParser.RULE_columnNameComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2277; + this.state = 2289; localContext._colName = this.columnNameCreate(); - this.state = 2280; + this.state = 2292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2278; + this.state = 2290; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2279; + this.state = 2291; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10935,43 +10981,43 @@ export class HiveSqlParser extends SQLParserBase { } public columnRefOrder(): ColumnRefOrderContext { let localContext = new ColumnRefOrderContext(this.context, this.state); - this.enterRule(localContext, 310, HiveSqlParser.RULE_columnRefOrder); + this.enterRule(localContext, 312, HiveSqlParser.RULE_columnRefOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2284; + this.state = 2296; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2282; + this.state = 2294; this.columnName(); } break; case 2: { - this.state = 2283; + this.state = 2295; this.expression(); } break; } - this.state = 2287; + this.state = 2299; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2286; + this.state = 2298; localContext._orderSpec = this.orderSpecification(); } break; } - this.state = 2290; + this.state = 2302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2289; + this.state = 2301; localContext._nullSpec = this.nullOrdering(); } } @@ -10994,23 +11040,23 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameType(): ColumnNameTypeContext { let localContext = new ColumnNameTypeContext(this.context, this.state); - this.enterRule(localContext, 312, HiveSqlParser.RULE_columnNameType); + this.enterRule(localContext, 314, HiveSqlParser.RULE_columnNameType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2292; + this.state = 2304; localContext._colName = this.columnNameCreate(); - this.state = 2293; + this.state = 2305; this.columnType(); - this.state = 2296; + this.state = 2308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2294; + this.state = 2306; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2295; + this.state = 2307; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11033,22 +11079,22 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeOrConstraint(): ColumnNameTypeOrConstraintContext { let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); - this.enterRule(localContext, 314, HiveSqlParser.RULE_columnNameTypeOrConstraint); + this.enterRule(localContext, 316, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2300; + this.state = 2312; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2298; + this.state = 2310; this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2299; + this.state = 2311; this.columnNameTypeConstraint(); } break; @@ -11070,22 +11116,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableConstraint(): TableConstraintContext { let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 316, HiveSqlParser.RULE_tableConstraint); + this.enterRule(localContext, 318, HiveSqlParser.RULE_tableConstraint); try { - this.state = 2304; + this.state = 2316; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2314; this.createForeignKey(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2303; + this.state = 2315; this.createConstraint(); } break; @@ -11107,33 +11153,33 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeConstraint(): ColumnNameTypeConstraintContext { let localContext = new ColumnNameTypeConstraintContext(this.context, this.state); - this.enterRule(localContext, 318, HiveSqlParser.RULE_columnNameTypeConstraint); + this.enterRule(localContext, 320, HiveSqlParser.RULE_columnNameTypeConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2306; + this.state = 2318; localContext._colName = this.columnNameCreate(); - this.state = 2307; + this.state = 2319; localContext._colType = this.columnType(); - this.state = 2309; + this.state = 2321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 2308; + this.state = 2320; this.columnConstraint(); } } - this.state = 2313; + this.state = 2325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2311; + this.state = 2323; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2312; + this.state = 2324; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11156,22 +11202,22 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraint(): ColumnConstraintContext { let localContext = new ColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 320, HiveSqlParser.RULE_columnConstraint); + this.enterRule(localContext, 322, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2317; + this.state = 2329; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2315; + this.state = 2327; this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2316; + this.state = 2328; this.colConstraint(); } break; @@ -11193,39 +11239,39 @@ export class HiveSqlParser extends SQLParserBase { } public foreignKeyConstraint(): ForeignKeyConstraintContext { let localContext = new ForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 322, HiveSqlParser.RULE_foreignKeyConstraint); + this.enterRule(localContext, 324, HiveSqlParser.RULE_foreignKeyConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2321; + this.state = 2333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2319; + this.state = 2331; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2320; + this.state = 2332; localContext._constraintName = this.id_(); } } - this.state = 2323; + this.state = 2335; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2324; + this.state = 2336; localContext._tabName = this.tableName(); - this.state = 2325; + this.state = 2337; this.match(HiveSqlParser.LPAREN); - this.state = 2326; + this.state = 2338; localContext._colName = this.columnName(); - this.state = 2327; + this.state = 2339; this.match(HiveSqlParser.RPAREN); - this.state = 2329; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2328; + this.state = 2340; this.constraintOptsCreate(); } } @@ -11248,31 +11294,31 @@ export class HiveSqlParser extends SQLParserBase { } public colConstraint(): ColConstraintContext { let localContext = new ColConstraintContext(this.context, this.state); - this.enterRule(localContext, 324, HiveSqlParser.RULE_colConstraint); + this.enterRule(localContext, 326, HiveSqlParser.RULE_colConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2333; + this.state = 2345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2331; + this.state = 2343; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2332; + this.state = 2344; localContext._constraintName = this.id_(); } } - this.state = 2335; + this.state = 2347; this.columnConstraintType(); - this.state = 2337; + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2336; + this.state = 2348; this.constraintOptsCreate(); } } @@ -11295,22 +11341,22 @@ export class HiveSqlParser extends SQLParserBase { } public alterColumnConstraint(): AlterColumnConstraintContext { let localContext = new AlterColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 326, HiveSqlParser.RULE_alterColumnConstraint); + this.enterRule(localContext, 328, HiveSqlParser.RULE_alterColumnConstraint); try { - this.state = 2341; + this.state = 2353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2339; + this.state = 2351; this.alterForeignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2340; + this.state = 2352; this.alterColConstraint(); } break; @@ -11332,39 +11378,39 @@ export class HiveSqlParser extends SQLParserBase { } public alterForeignKeyConstraint(): AlterForeignKeyConstraintContext { let localContext = new AlterForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 328, HiveSqlParser.RULE_alterForeignKeyConstraint); + this.enterRule(localContext, 330, HiveSqlParser.RULE_alterForeignKeyConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2345; + this.state = 2357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2343; + this.state = 2355; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2344; + this.state = 2356; localContext._constraintName = this.id_(); } } - this.state = 2347; + this.state = 2359; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2348; + this.state = 2360; localContext._tabName = this.tableName(); - this.state = 2349; + this.state = 2361; this.match(HiveSqlParser.LPAREN); - this.state = 2350; + this.state = 2362; localContext._colName = this.columnName(); - this.state = 2351; + this.state = 2363; this.match(HiveSqlParser.RPAREN); - this.state = 2353; + this.state = 2365; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2352; + this.state = 2364; this.constraintOptsAlter(); } break; @@ -11387,31 +11433,31 @@ export class HiveSqlParser extends SQLParserBase { } public alterColConstraint(): AlterColConstraintContext { let localContext = new AlterColConstraintContext(this.context, this.state); - this.enterRule(localContext, 330, HiveSqlParser.RULE_alterColConstraint); + this.enterRule(localContext, 332, HiveSqlParser.RULE_alterColConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2357; + this.state = 2369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2355; + this.state = 2367; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2356; + this.state = 2368; localContext._constraintName = this.id_(); } } - this.state = 2359; + this.state = 2371; this.columnConstraintType(); - this.state = 2361; + this.state = 2373; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2360; + this.state = 2372; this.constraintOptsAlter(); } break; @@ -11434,33 +11480,33 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraintType(): ColumnConstraintTypeContext { let localContext = new ColumnConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 332, HiveSqlParser.RULE_columnConstraintType); + this.enterRule(localContext, 334, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2369; + this.state = 2381; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2363; + this.state = 2375; this.match(HiveSqlParser.KW_NOT); - this.state = 2364; + this.state = 2376; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2365; + this.state = 2377; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 2366; + this.state = 2378; this.defaultVal(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2367; + this.state = 2379; this.checkConstraint(); } break; @@ -11468,7 +11514,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2368; + this.state = 2380; this.tableConstraintType(); } break; @@ -11492,29 +11538,29 @@ export class HiveSqlParser extends SQLParserBase { } public defaultVal(): DefaultValContext { let localContext = new DefaultValContext(this.context, this.state); - this.enterRule(localContext, 334, HiveSqlParser.RULE_defaultVal); + this.enterRule(localContext, 336, HiveSqlParser.RULE_defaultVal); try { - this.state = 2374; + this.state = 2386; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2371; + this.state = 2383; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2372; + this.state = 2384; this.function_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2373; + this.state = 2385; this.castExpression(); } break; @@ -11536,24 +11582,24 @@ export class HiveSqlParser extends SQLParserBase { } public tableConstraintType(): TableConstraintTypeContext { let localContext = new TableConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 336, HiveSqlParser.RULE_tableConstraintType); + this.enterRule(localContext, 338, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2379; + this.state = 2391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2376; + this.state = 2388; this.match(HiveSqlParser.KW_PRIMARY); - this.state = 2377; + this.state = 2389; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2378; + this.state = 2390; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11577,19 +11623,19 @@ export class HiveSqlParser extends SQLParserBase { } public constraintOptsCreate(): ConstraintOptsCreateContext { let localContext = new ConstraintOptsCreateContext(this.context, this.state); - this.enterRule(localContext, 338, HiveSqlParser.RULE_constraintOptsCreate); + this.enterRule(localContext, 340, HiveSqlParser.RULE_constraintOptsCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2381; + this.state = 2393; this.enableValidateSpecification(); - this.state = 2383; + this.state = 2395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2382; + this.state = 2394; this.relySpecification(); } } @@ -11612,19 +11658,19 @@ export class HiveSqlParser extends SQLParserBase { } public constraintOptsAlter(): ConstraintOptsAlterContext { let localContext = new ConstraintOptsAlterContext(this.context, this.state); - this.enterRule(localContext, 340, HiveSqlParser.RULE_constraintOptsAlter); + this.enterRule(localContext, 342, HiveSqlParser.RULE_constraintOptsAlter); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2385; + this.state = 2397; this.enableValidateSpecification(); - this.state = 2387; + this.state = 2399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2386; + this.state = 2398; this.relySpecification(); } } @@ -11647,25 +11693,25 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameColonType(): ColumnNameColonTypeContext { let localContext = new ColumnNameColonTypeContext(this.context, this.state); - this.enterRule(localContext, 342, HiveSqlParser.RULE_columnNameColonType); + this.enterRule(localContext, 344, HiveSqlParser.RULE_columnNameColonType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2389; + this.state = 2401; localContext._colName = this.columnNameCreate(); - this.state = 2390; + this.state = 2402; this.match(HiveSqlParser.COLON); - this.state = 2391; + this.state = 2403; this.columnType(); - this.state = 2394; + this.state = 2406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2392; + this.state = 2404; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2393; + this.state = 2405; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11688,11 +11734,11 @@ export class HiveSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 344, HiveSqlParser.RULE_columnType); + this.enterRule(localContext, 346, HiveSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2396; + this.state = 2408; this.type_(); } } @@ -11712,26 +11758,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnTypeList(): ColumnTypeListContext { let localContext = new ColumnTypeListContext(this.context, this.state); - this.enterRule(localContext, 346, HiveSqlParser.RULE_columnTypeList); + this.enterRule(localContext, 348, HiveSqlParser.RULE_columnTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2398; + this.state = 2410; this.columnType(); - this.state = 2403; + this.state = 2415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2399; + this.state = 2411; this.match(HiveSqlParser.COMMA); - this.state = 2400; + this.state = 2412; this.columnType(); } } - this.state = 2405; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11753,9 +11799,9 @@ export class HiveSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 348, HiveSqlParser.RULE_type); + this.enterRule(localContext, 350, HiveSqlParser.RULE_type); try { - this.state = 2411; + this.state = 2423; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11780,35 +11826,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2406; + this.state = 2418; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2407; + this.state = 2419; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2408; + this.state = 2420; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2409; + this.state = 2421; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2410; + this.state = 2422; this.unionType(); } break; @@ -11832,79 +11878,79 @@ export class HiveSqlParser extends SQLParserBase { } public primitiveType(): PrimitiveTypeContext { let localContext = new PrimitiveTypeContext(this.context, this.state); - this.enterRule(localContext, 350, HiveSqlParser.RULE_primitiveType); + this.enterRule(localContext, 352, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2450; + this.state = 2462; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2413; + this.state = 2425; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2414; + this.state = 2426; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2415; + this.state = 2427; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2416; + this.state = 2428; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2417; + this.state = 2429; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2418; + this.state = 2430; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2419; + this.state = 2431; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2420; + this.state = 2432; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2421; + this.state = 2433; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2423; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 248) { { - this.state = 2422; + this.state = 2434; this.match(HiveSqlParser.KW_PRECISION); } } @@ -11914,87 +11960,87 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2425; + this.state = 2437; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2426; + this.state = 2438; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2427; + this.state = 2439; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2428; + this.state = 2440; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2429; + this.state = 2441; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 2430; + this.state = 2442; this.match(HiveSqlParser.KW_WITH); - this.state = 2431; + this.state = 2443; this.match(HiveSqlParser.KW_LOCAL); - this.state = 2432; + this.state = 2444; this.match(HiveSqlParser.KW_TIME); - this.state = 2433; + this.state = 2445; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2434; + this.state = 2446; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2435; + this.state = 2447; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2436; + this.state = 2448; this.decimal(); - this.state = 2444; + this.state = 2456; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2437; + this.state = 2449; this.match(HiveSqlParser.LPAREN); - this.state = 2438; + this.state = 2450; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2441; + this.state = 2453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 2439; + this.state = 2451; this.match(HiveSqlParser.COMMA); - this.state = 2440; + this.state = 2452; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2443; + this.state = 2455; this.match(HiveSqlParser.RPAREN); } break; @@ -12004,7 +12050,7 @@ export class HiveSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2446; + this.state = 2458; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 376)) { this.errorHandler.recoverInline(this); @@ -12013,11 +12059,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2447; + this.state = 2459; this.match(HiveSqlParser.LPAREN); - this.state = 2448; + this.state = 2460; localContext._length = this.match(HiveSqlParser.Number); - this.state = 2449; + this.state = 2461; this.match(HiveSqlParser.RPAREN); } break; @@ -12039,17 +12085,17 @@ export class HiveSqlParser extends SQLParserBase { } public listType(): ListTypeContext { let localContext = new ListTypeContext(this.context, this.state); - this.enterRule(localContext, 352, HiveSqlParser.RULE_listType); + this.enterRule(localContext, 354, HiveSqlParser.RULE_listType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2452; + this.state = 2464; this.match(HiveSqlParser.KW_ARRAY); - this.state = 2453; + this.state = 2465; this.match(HiveSqlParser.LESSTHAN); - this.state = 2454; + this.state = 2466; this.type_(); - this.state = 2455; + this.state = 2467; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12069,17 +12115,17 @@ export class HiveSqlParser extends SQLParserBase { } public structType(): StructTypeContext { let localContext = new StructTypeContext(this.context, this.state); - this.enterRule(localContext, 354, HiveSqlParser.RULE_structType); + this.enterRule(localContext, 356, HiveSqlParser.RULE_structType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2457; + this.state = 2469; this.match(HiveSqlParser.KW_STRUCT); - this.state = 2458; + this.state = 2470; this.match(HiveSqlParser.LESSTHAN); - this.state = 2459; + this.state = 2471; this.columnNameColonTypeList(); - this.state = 2460; + this.state = 2472; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12099,21 +12145,21 @@ export class HiveSqlParser extends SQLParserBase { } public mapType(): MapTypeContext { let localContext = new MapTypeContext(this.context, this.state); - this.enterRule(localContext, 356, HiveSqlParser.RULE_mapType); + this.enterRule(localContext, 358, HiveSqlParser.RULE_mapType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2462; + this.state = 2474; this.match(HiveSqlParser.KW_MAP); - this.state = 2463; + this.state = 2475; this.match(HiveSqlParser.LESSTHAN); - this.state = 2464; + this.state = 2476; localContext._left = this.primitiveType(); - this.state = 2465; + this.state = 2477; this.match(HiveSqlParser.COMMA); - this.state = 2466; + this.state = 2478; localContext._right = this.type_(); - this.state = 2467; + this.state = 2479; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12133,17 +12179,17 @@ export class HiveSqlParser extends SQLParserBase { } public unionType(): UnionTypeContext { let localContext = new UnionTypeContext(this.context, this.state); - this.enterRule(localContext, 358, HiveSqlParser.RULE_unionType); + this.enterRule(localContext, 360, HiveSqlParser.RULE_unionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2469; + this.state = 2481; this.match(HiveSqlParser.KW_UNIONTYPE); - this.state = 2470; + this.state = 2482; this.match(HiveSqlParser.LESSTHAN); - this.state = 2471; + this.state = 2483; this.columnTypeList(); - this.state = 2472; + this.state = 2484; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12163,12 +12209,12 @@ export class HiveSqlParser extends SQLParserBase { } public setOperator(): SetOperatorContext { let localContext = new SetOperatorContext(this.context, this.state); - this.enterRule(localContext, 360, HiveSqlParser.RULE_setOperator); + this.enterRule(localContext, 362, HiveSqlParser.RULE_setOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2474; + this.state = 2486; _la = this.tokenStream.LA(1); if(!(_la === 112 || _la === 164 || _la === 205 || _la === 356)) { this.errorHandler.recoverInline(this); @@ -12177,12 +12223,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2476; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2475; + this.state = 2487; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -12212,22 +12258,22 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpression(): QueryStatementExpressionContext { let localContext = new QueryStatementExpressionContext(this.context, this.state); - this.enterRule(localContext, 362, HiveSqlParser.RULE_queryStatementExpression); + this.enterRule(localContext, 364, HiveSqlParser.RULE_queryStatementExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2479; + this.state = 2491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2478; + this.state = 2490; localContext._w = this.withClause(); } } - this.state = 2481; + this.state = 2493; this.queryStatementExpressionBody(); } } @@ -12247,15 +12293,15 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpressionBody(): QueryStatementExpressionBodyContext { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); - this.enterRule(localContext, 364, HiveSqlParser.RULE_queryStatementExpressionBody); + this.enterRule(localContext, 366, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2485; + this.state = 2497; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2483; + this.state = 2495; this.fromStatement(); } break; @@ -12267,7 +12313,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2484; + this.state = 2496; this.regularBody(); } break; @@ -12291,28 +12337,28 @@ export class HiveSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 366, HiveSqlParser.RULE_withClause); + this.enterRule(localContext, 368, HiveSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2487; + this.state = 2499; this.match(HiveSqlParser.KW_WITH); - this.state = 2488; + this.state = 2500; this.cteStatement(); - this.state = 2493; + this.state = 2505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2489; + this.state = 2501; this.match(HiveSqlParser.COMMA); - this.state = 2490; + this.state = 2502; this.cteStatement(); } } - this.state = 2495; + this.state = 2507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12334,34 +12380,34 @@ export class HiveSqlParser extends SQLParserBase { } public cteStatement(): CteStatementContext { let localContext = new CteStatementContext(this.context, this.state); - this.enterRule(localContext, 368, HiveSqlParser.RULE_cteStatement); + this.enterRule(localContext, 370, HiveSqlParser.RULE_cteStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2496; + this.state = 2508; this.id_(); - this.state = 2501; + this.state = 2513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2497; + this.state = 2509; this.match(HiveSqlParser.LPAREN); - this.state = 2498; + this.state = 2510; localContext._colAliases = this.columnNameList(); - this.state = 2499; + this.state = 2511; this.match(HiveSqlParser.RPAREN); } } - this.state = 2503; + this.state = 2515; this.match(HiveSqlParser.KW_AS); - this.state = 2504; + this.state = 2516; this.match(HiveSqlParser.LPAREN); - this.state = 2505; + this.state = 2517; this.queryStatementExpression(); - this.state = 2506; + this.state = 2518; this.match(HiveSqlParser.RPAREN); } } @@ -12381,26 +12427,26 @@ export class HiveSqlParser extends SQLParserBase { } public fromStatement(): FromStatementContext { let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 370, HiveSqlParser.RULE_fromStatement); + this.enterRule(localContext, 372, HiveSqlParser.RULE_fromStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2508; + this.state = 2520; this.singleFromStatement(); - this.state = 2514; + this.state = 2526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { { - this.state = 2509; + this.state = 2521; localContext._u = this.setOperator(); - this.state = 2510; + this.state = 2522; localContext._r = this.singleFromStatement(); } } - this.state = 2516; + this.state = 2528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12422,128 +12468,128 @@ export class HiveSqlParser extends SQLParserBase { } public singleFromStatement(): SingleFromStatementContext { let localContext = new SingleFromStatementContext(this.context, this.state); - this.enterRule(localContext, 372, HiveSqlParser.RULE_singleFromStatement); + this.enterRule(localContext, 374, HiveSqlParser.RULE_singleFromStatement); let _la: number; try { - this.state = 2588; + this.state = 2600; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: localContext = new FromInsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2517; + this.state = 2529; this.fromClause(); - this.state = 2518; + this.state = 2530; this.insertClause(); - this.state = 2519; + this.state = 2531; this.selectClause(); - this.state = 2521; + this.state = 2533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2520; + this.state = 2532; this.lateralView(); } } - this.state = 2524; + this.state = 2536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2523; + this.state = 2535; this.whereClause(); } } - this.state = 2527; + this.state = 2539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2526; + this.state = 2538; this.groupByClause(); } } - this.state = 2530; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2529; + this.state = 2541; this.havingClause(); } } - this.state = 2533; + this.state = 2545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2532; + this.state = 2544; this.window_clause(); } } - this.state = 2536; + this.state = 2548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2535; + this.state = 2547; this.qualifyClause(); } } - this.state = 2539; + this.state = 2551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2538; + this.state = 2550; this.orderByClause(); } } - this.state = 2542; + this.state = 2554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2541; + this.state = 2553; this.clusterByClause(); } } - this.state = 2545; + this.state = 2557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2544; + this.state = 2556; this.distributeByClause(); } } - this.state = 2548; + this.state = 2560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2547; + this.state = 2559; this.sortByClause(); } } - this.state = 2551; + this.state = 2563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2550; + this.state = 2562; this.limitClause(); } } @@ -12554,116 +12600,116 @@ export class HiveSqlParser extends SQLParserBase { localContext = new FromSelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2553; + this.state = 2565; this.fromClause(); - this.state = 2554; + this.state = 2566; this.selectClause(); - this.state = 2556; + this.state = 2568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2555; + this.state = 2567; this.lateralView(); } } - this.state = 2559; + this.state = 2571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2558; + this.state = 2570; this.whereClause(); } } - this.state = 2562; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2561; + this.state = 2573; this.groupByClause(); } } - this.state = 2565; + this.state = 2577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2564; + this.state = 2576; this.havingClause(); } } - this.state = 2568; + this.state = 2580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2567; + this.state = 2579; this.window_clause(); } } - this.state = 2571; + this.state = 2583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2570; + this.state = 2582; this.qualifyClause(); } } - this.state = 2574; + this.state = 2586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2573; + this.state = 2585; this.orderByClause(); } } - this.state = 2577; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2576; + this.state = 2588; this.clusterByClause(); } } - this.state = 2580; + this.state = 2592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2579; + this.state = 2591; this.distributeByClause(); } } - this.state = 2583; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2582; + this.state = 2594; this.sortByClause(); } } - this.state = 2586; + this.state = 2598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2585; + this.state = 2597; this.limitClause(); } } @@ -12688,18 +12734,18 @@ export class HiveSqlParser extends SQLParserBase { } public regularBody(): RegularBodyContext { let localContext = new RegularBodyContext(this.context, this.state); - this.enterRule(localContext, 374, HiveSqlParser.RULE_regularBody); + this.enterRule(localContext, 376, HiveSqlParser.RULE_regularBody); try { - this.state = 2594; + this.state = 2606; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2590; + this.state = 2602; (localContext as InsertStmtContext)._i = this.insertClause(); - this.state = 2591; + this.state = 2603; (localContext as InsertStmtContext)._s = this.selectStatement(); } break; @@ -12711,7 +12757,7 @@ export class HiveSqlParser extends SQLParserBase { localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2593; + this.state = 2605; this.selectStatement(); } break; @@ -12735,10 +12781,10 @@ export class HiveSqlParser extends SQLParserBase { } public atomSelectStatement(): AtomSelectStatementContext { let localContext = new AtomSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 376, HiveSqlParser.RULE_atomSelectStatement); + this.enterRule(localContext, 378, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2620; + this.state = 2632; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12746,64 +12792,64 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2596; + this.state = 2608; localContext._s = this.selectClause(); - this.state = 2598; + this.state = 2610; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2597; + this.state = 2609; localContext._f = this.fromClause(); } break; } - this.state = 2601; + this.state = 2613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2600; + this.state = 2612; localContext._w = this.whereClause(); } } - this.state = 2604; + this.state = 2616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2603; + this.state = 2615; localContext._g = this.groupByClause(); } } - this.state = 2607; + this.state = 2619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2606; + this.state = 2618; localContext._h = this.havingClause(); } } - this.state = 2610; + this.state = 2622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2609; + this.state = 2621; localContext._win = this.window_clause(); } } - this.state = 2613; + this.state = 2625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2612; + this.state = 2624; localContext._q = this.qualifyClause(); } } @@ -12813,18 +12859,18 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2615; + this.state = 2627; this.match(HiveSqlParser.LPAREN); - this.state = 2616; + this.state = 2628; this.selectStatement(); - this.state = 2617; + this.state = 2629; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2619; + this.state = 2631; this.valuesClause(); } break; @@ -12848,69 +12894,69 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 378, HiveSqlParser.RULE_selectStatement); + this.enterRule(localContext, 380, HiveSqlParser.RULE_selectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2622; + this.state = 2634; localContext._a = this.atomSelectStatement(); - this.state = 2624; + this.state = 2636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { - this.state = 2623; + this.state = 2635; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2627; + this.state = 2639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2626; + this.state = 2638; localContext._o = this.orderByClause(); } } - this.state = 2630; + this.state = 2642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2629; + this.state = 2641; localContext._c = this.clusterByClause(); } } - this.state = 2633; + this.state = 2645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2632; + this.state = 2644; localContext._d = this.distributeByClause(); } } - this.state = 2636; + this.state = 2648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2635; + this.state = 2647; localContext._sort = this.sortByClause(); } } - this.state = 2639; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2638; + this.state = 2650; localContext._l = this.limitClause(); } } @@ -12933,24 +12979,24 @@ export class HiveSqlParser extends SQLParserBase { } public setOpSelectStatement(): SetOpSelectStatementContext { let localContext = new SetOpSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 380, HiveSqlParser.RULE_setOpSelectStatement); + this.enterRule(localContext, 382, HiveSqlParser.RULE_setOpSelectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2644; + this.state = 2656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2641; + this.state = 2653; localContext._u = this.setOperator(); - this.state = 2642; + this.state = 2654; localContext._b = this.atomSelectStatement(); } } - this.state = 2646; + this.state = 2658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 112 || _la === 164 || _la === 205 || _la === 356); @@ -12972,22 +13018,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatementWithCTE(): SelectStatementWithCTEContext { let localContext = new SelectStatementWithCTEContext(this.context, this.state); - this.enterRule(localContext, 382, HiveSqlParser.RULE_selectStatementWithCTE); + this.enterRule(localContext, 384, HiveSqlParser.RULE_selectStatementWithCTE); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2649; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2648; + this.state = 2660; localContext._w = this.withClause(); } } - this.state = 2651; + this.state = 2663; this.selectStatement(); } } @@ -13007,28 +13053,28 @@ export class HiveSqlParser extends SQLParserBase { } public insertClause(): InsertClauseContext { let localContext = new InsertClauseContext(this.context, this.state); - this.enterRule(localContext, 384, HiveSqlParser.RULE_insertClause); + this.enterRule(localContext, 386, HiveSqlParser.RULE_insertClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2653; + this.state = 2665; this.match(HiveSqlParser.KW_INSERT); - this.state = 2670; + this.state = 2682; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 2654; + this.state = 2666; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2655; + this.state = 2667; this.destination(); - this.state = 2657; + this.state = 2669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2656; + this.state = 2668; this.ifNotExists(); } } @@ -13037,30 +13083,30 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_INTO: { - this.state = 2659; + this.state = 2671; this.match(HiveSqlParser.KW_INTO); - this.state = 2661; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 2660; + this.state = 2672; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 2663; + this.state = 2675; this.tableOrPartition(); - this.state = 2668; + this.state = 2680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2664; + this.state = 2676; this.match(HiveSqlParser.LPAREN); - this.state = 2665; + this.state = 2677; localContext._targetCols = this.columnNameList(); - this.state = 2666; + this.state = 2678; this.match(HiveSqlParser.RPAREN); } break; @@ -13088,46 +13134,46 @@ export class HiveSqlParser extends SQLParserBase { } public destination(): DestinationContext { let localContext = new DestinationContext(this.context, this.state); - this.enterRule(localContext, 386, HiveSqlParser.RULE_destination); + this.enterRule(localContext, 388, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 2685; + this.state = 2697; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 2673; + this.state = 2685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2672; + this.state = 2684; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 2675; + this.state = 2687; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 2676; + this.state = 2688; this.match(HiveSqlParser.StringLiteral); - this.state = 2678; + this.state = 2690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 2677; + this.state = 2689; this.tableRowFormat(); } } - this.state = 2681; + this.state = 2693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2680; + this.state = 2692; this.tableFileFormat(); } } @@ -13137,9 +13183,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2683; + this.state = 2695; this.match(HiveSqlParser.KW_TABLE); - this.state = 2684; + this.state = 2696; this.tableOrPartition(); } break; @@ -13163,40 +13209,40 @@ export class HiveSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 388, HiveSqlParser.RULE_limitClause); + this.enterRule(localContext, 390, HiveSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2687; + this.state = 2699; this.match(HiveSqlParser.KW_LIMIT); - this.state = 2696; + this.state = 2708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { - this.state = 2690; + this.state = 2702; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2688; + this.state = 2700; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 2689; + this.state = 2701; this.match(HiveSqlParser.COMMA); } break; } - this.state = 2692; + this.state = 2704; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 2693; + this.state = 2705; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2694; + this.state = 2706; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2695; + this.state = 2707; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -13219,15 +13265,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnAssignmentClause(): ColumnAssignmentClauseContext { let localContext = new ColumnAssignmentClauseContext(this.context, this.state); - this.enterRule(localContext, 390, HiveSqlParser.RULE_columnAssignmentClause); + this.enterRule(localContext, 392, HiveSqlParser.RULE_columnAssignmentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2698; + this.state = 2710; this.columnName(); - this.state = 2699; + this.state = 2711; this.match(HiveSqlParser.EQUAL); - this.state = 2700; + this.state = 2712; this.precedencePlusExpressionOrDefault(); } } @@ -13247,22 +13293,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpressionOrDefault(): PrecedencePlusExpressionOrDefaultContext { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 392, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); + this.enterRule(localContext, 394, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 2704; + this.state = 2716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2702; + this.state = 2714; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2703; + this.state = 2715; this.precedencePlusExpression(); } break; @@ -13284,28 +13330,28 @@ export class HiveSqlParser extends SQLParserBase { } public setColumnsClause(): SetColumnsClauseContext { let localContext = new SetColumnsClauseContext(this.context, this.state); - this.enterRule(localContext, 394, HiveSqlParser.RULE_setColumnsClause); + this.enterRule(localContext, 396, HiveSqlParser.RULE_setColumnsClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2706; + this.state = 2718; this.match(HiveSqlParser.KW_SET); - this.state = 2707; + this.state = 2719; this.columnAssignmentClause(); - this.state = 2712; + this.state = 2724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2708; + this.state = 2720; this.match(HiveSqlParser.COMMA); - this.state = 2709; + this.state = 2721; this.columnAssignmentClause(); } } - this.state = 2714; + this.state = 2726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13327,39 +13373,39 @@ export class HiveSqlParser extends SQLParserBase { } public sqlTransactionStatement(): SqlTransactionStatementContext { let localContext = new SqlTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 396, HiveSqlParser.RULE_sqlTransactionStatement); + this.enterRule(localContext, 398, HiveSqlParser.RULE_sqlTransactionStatement); let _la: number; try { - this.state = 2738; + this.state = 2750; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 2715; + this.state = 2727; this.match(HiveSqlParser.KW_START); - this.state = 2716; + this.state = 2728; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 2725; + this.state = 2737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168 || _la === 261) { { - this.state = 2717; + this.state = 2729; this.transactionMode(); - this.state = 2722; + this.state = 2734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2718; + this.state = 2730; this.match(HiveSqlParser.COMMA); - this.state = 2719; + this.state = 2731; this.transactionMode(); } } - this.state = 2724; + this.state = 2736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13371,14 +13417,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 2727; + this.state = 2739; this.match(HiveSqlParser.KW_COMMIT); - this.state = 2729; + this.state = 2741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2728; + this.state = 2740; this.match(HiveSqlParser.KW_WORK); } } @@ -13388,14 +13434,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 2731; + this.state = 2743; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 2733; + this.state = 2745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2732; + this.state = 2744; this.match(HiveSqlParser.KW_WORK); } } @@ -13405,11 +13451,11 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2735; + this.state = 2747; this.match(HiveSqlParser.KW_SET); - this.state = 2736; + this.state = 2748; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 2737; + this.state = 2749; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); @@ -13440,29 +13486,29 @@ export class HiveSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 398, HiveSqlParser.RULE_transactionMode); + this.enterRule(localContext, 400, HiveSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 2745; + this.state = 2757; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 2740; + this.state = 2752; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 2741; + this.state = 2753; this.match(HiveSqlParser.KW_LEVEL); - this.state = 2742; + this.state = 2754; this.match(HiveSqlParser.KW_SNAPSHOT); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 2743; + this.state = 2755; this.match(HiveSqlParser.KW_READ); - this.state = 2744; + this.state = 2756; _la = this.tokenStream.LA(1); if(!(_la === 225 || _la === 391)) { this.errorHandler.recoverInline(this); @@ -13493,46 +13539,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenClauses(): WhenClausesContext { let localContext = new WhenClausesContext(this.context, this.state); - this.enterRule(localContext, 400, HiveSqlParser.RULE_whenClauses); + this.enterRule(localContext, 402, HiveSqlParser.RULE_whenClauses); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2751; + this.state = 2763; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2749; + this.state = 2761; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2747; + this.state = 2759; this.whenMatchedAndClause(); } break; case 2: { - this.state = 2748; + this.state = 2760; this.whenMatchedThenClause(); } break; } } } - this.state = 2753; + this.state = 2765; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); } - this.state = 2755; + this.state = 2767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 2754; + this.state = 2766; this.whenNotMatchedClause(); } } @@ -13555,46 +13601,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenNotMatchedClause(): WhenNotMatchedClauseContext { let localContext = new WhenNotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 402, HiveSqlParser.RULE_whenNotMatchedClause); + this.enterRule(localContext, 404, HiveSqlParser.RULE_whenNotMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2757; + this.state = 2769; this.match(HiveSqlParser.KW_WHEN); - this.state = 2758; + this.state = 2770; this.match(HiveSqlParser.KW_NOT); - this.state = 2759; + this.state = 2771; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2762; + this.state = 2774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2760; + this.state = 2772; this.match(HiveSqlParser.KW_AND); - this.state = 2761; + this.state = 2773; this.expression(); } } - this.state = 2764; + this.state = 2776; this.match(HiveSqlParser.KW_THEN); - this.state = 2765; + this.state = 2777; this.match(HiveSqlParser.KW_INSERT); - this.state = 2767; + this.state = 2779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2766; + this.state = 2778; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 2769; + this.state = 2781; this.match(HiveSqlParser.KW_VALUES); - this.state = 2770; + this.state = 2782; this.expressionsInParenthesis(); } } @@ -13614,34 +13660,34 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedAndClause(): WhenMatchedAndClauseContext { let localContext = new WhenMatchedAndClauseContext(this.context, this.state); - this.enterRule(localContext, 404, HiveSqlParser.RULE_whenMatchedAndClause); + this.enterRule(localContext, 406, HiveSqlParser.RULE_whenMatchedAndClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2772; + this.state = 2784; this.match(HiveSqlParser.KW_WHEN); - this.state = 2773; + this.state = 2785; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2774; + this.state = 2786; this.match(HiveSqlParser.KW_AND); - this.state = 2775; + this.state = 2787; this.expression(); - this.state = 2776; + this.state = 2788; this.match(HiveSqlParser.KW_THEN); - this.state = 2780; + this.state = 2792; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2777; + this.state = 2789; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2778; + this.state = 2790; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2779; + this.state = 2791; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13666,30 +13712,30 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedThenClause(): WhenMatchedThenClauseContext { let localContext = new WhenMatchedThenClauseContext(this.context, this.state); - this.enterRule(localContext, 406, HiveSqlParser.RULE_whenMatchedThenClause); + this.enterRule(localContext, 408, HiveSqlParser.RULE_whenMatchedThenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2782; + this.state = 2794; this.match(HiveSqlParser.KW_WHEN); - this.state = 2783; + this.state = 2795; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2784; + this.state = 2796; this.match(HiveSqlParser.KW_THEN); - this.state = 2788; + this.state = 2800; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2785; + this.state = 2797; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2786; + this.state = 2798; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2787; + this.state = 2799; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13714,13 +13760,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionPool(): CompactionPoolContext { let localContext = new CompactionPoolContext(this.context, this.state); - this.enterRule(localContext, 408, HiveSqlParser.RULE_compactionPool); + this.enterRule(localContext, 410, HiveSqlParser.RULE_compactionPool); try { this.enterOuterAlt(localContext, 1); { - this.state = 2790; + this.state = 2802; this.match(HiveSqlParser.KW_POOL); - this.state = 2791; + this.state = 2803; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -13740,13 +13786,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionType(): CompactionTypeContext { let localContext = new CompactionTypeContext(this.context, this.state); - this.enterRule(localContext, 410, HiveSqlParser.RULE_compactionType); + this.enterRule(localContext, 412, HiveSqlParser.RULE_compactionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2793; + this.state = 2805; this.match(HiveSqlParser.KW_TYPE); - this.state = 2794; + this.state = 2806; localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } @@ -13766,13 +13812,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionStatus(): CompactionStatusContext { let localContext = new CompactionStatusContext(this.context, this.state); - this.enterRule(localContext, 412, HiveSqlParser.RULE_compactionStatus); + this.enterRule(localContext, 414, HiveSqlParser.RULE_compactionStatus); try { this.enterOuterAlt(localContext, 1); { - this.state = 2796; + this.state = 2808; this.match(HiveSqlParser.KW_STATUS); - this.state = 2797; + this.state = 2809; localContext._status = this.match(HiveSqlParser.StringLiteral); } } @@ -13792,74 +13838,74 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatement(): AlterStatementContext { let localContext = new AlterStatementContext(this.context, this.state); - this.enterRule(localContext, 414, HiveSqlParser.RULE_alterStatement); + this.enterRule(localContext, 416, HiveSqlParser.RULE_alterStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2799; + this.state = 2811; this.match(HiveSqlParser.KW_ALTER); - this.state = 2830; + this.state = 2842; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 2800; + this.state = 2812; this.match(HiveSqlParser.KW_TABLE); - this.state = 2801; + this.state = 2813; this.tableName(); - this.state = 2802; + this.state = 2814; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 2804; + this.state = 2816; this.match(HiveSqlParser.KW_VIEW); - this.state = 2805; + this.state = 2817; this.viewName(); - this.state = 2807; + this.state = 2819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2806; + this.state = 2818; this.match(HiveSqlParser.KW_AS); } } - this.state = 2809; + this.state = 2821; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 2811; + this.state = 2823; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2812; + this.state = 2824; this.match(HiveSqlParser.KW_VIEW); - this.state = 2813; + this.state = 2825; localContext._tableNameTree = this.viewName(); - this.state = 2817; + this.state = 2829; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 2814; + this.state = 2826; localContext._mvRewriteFlag = this.rewriteEnabled(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 2815; + this.state = 2827; localContext._mvRewriteFlag2 = this.rewriteDisabled(); } break; case HiveSqlParser.KW_REBUILD: { - this.state = 2816; + this.state = 2828; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13871,31 +13917,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 2819; + this.state = 2831; this.db_schema(); - this.state = 2820; + this.state = 2832; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 2822; + this.state = 2834; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 2823; + this.state = 2835; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 2824; + this.state = 2836; this.match(HiveSqlParser.KW_INDEX); - this.state = 2825; + this.state = 2837; this.id_(); - this.state = 2826; + this.state = 2838; this.match(HiveSqlParser.KW_ON); - this.state = 2827; + this.state = 2839; this.tableOrPartition(); - this.state = 2828; + this.state = 2840; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13920,75 +13966,75 @@ export class HiveSqlParser extends SQLParserBase { } public alterTableStatementSuffix(): AlterTableStatementSuffixContext { let localContext = new AlterTableStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 416, HiveSqlParser.RULE_alterTableStatementSuffix); + this.enterRule(localContext, 418, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 2921; + this.state = 2933; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2832; + this.state = 2844; this.match(HiveSqlParser.KW_RENAME); - this.state = 2833; + this.state = 2845; this.match(HiveSqlParser.KW_TO); - this.state = 2834; + this.state = 2846; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2835; + this.state = 2847; this.match(HiveSqlParser.KW_RECOVER); - this.state = 2836; + this.state = 2848; this.match(HiveSqlParser.KW_PARTITIONS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2837; + this.state = 2849; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2838; + this.state = 2850; this.match(HiveSqlParser.KW_ADD); - this.state = 2840; + this.state = 2852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2839; + this.state = 2851; this.ifNotExists(); } } - this.state = 2846; + this.state = 2858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2842; + this.state = 2854; this.partitionSpec(); - this.state = 2844; + this.state = 2856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 2843; + this.state = 2855; this.locationPath(); } } } } - this.state = 2848; + this.state = 2860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -13997,19 +14043,19 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2850; + this.state = 2862; this.match(HiveSqlParser.KW_TOUCH); - this.state = 2854; + this.state = 2866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2851; + this.state = 2863; this.partitionSpec(); } } - this.state = 2856; + this.state = 2868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14018,19 +14064,19 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2857; + this.state = 2869; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 2861; + this.state = 2873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2858; + this.state = 2870; this.partitionSpec(); } } - this.state = 2863; + this.state = 2875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14039,19 +14085,19 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2864; + this.state = 2876; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 2868; + this.state = 2880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2865; + this.state = 2877; this.partitionSpec(); } } - this.state = 2870; + this.state = 2882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14060,59 +14106,59 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2871; + this.state = 2883; this.match(HiveSqlParser.KW_SET); - this.state = 2872; + this.state = 2884; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2873; + this.state = 2885; this.tableProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2874; + this.state = 2886; this.match(HiveSqlParser.KW_UNSET); - this.state = 2875; + this.state = 2887; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2877; + this.state = 2889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2876; + this.state = 2888; this.ifExists(); } } - this.state = 2879; + this.state = 2891; this.tableProperties(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2880; + this.state = 2892; this.tableSkewed(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2881; + this.state = 2893; this.match(HiveSqlParser.KW_NOT); - this.state = 2884; + this.state = 2896; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 2882; + this.state = 2894; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 2883; + this.state = 2895; this.storedAsDirs(); } break; @@ -14124,61 +14170,61 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2886; + this.state = 2898; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 2887; + this.state = 2899; this.partitionSpec(); - this.state = 2888; + this.state = 2900; this.match(HiveSqlParser.KW_WITH); - this.state = 2889; + this.state = 2901; this.match(HiveSqlParser.KW_TABLE); - this.state = 2890; + this.state = 2902; localContext._exchangename = this.tableName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2892; + this.state = 2904; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2893; + this.state = 2905; this.match(HiveSqlParser.KW_COLUMN); - this.state = 2894; + this.state = 2906; this.match(HiveSqlParser.LPAREN); - this.state = 2895; + this.state = 2907; this.columnNameType(); - this.state = 2896; + this.state = 2908; this.match(HiveSqlParser.RPAREN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2898; + this.state = 2910; this.match(HiveSqlParser.KW_DROP); - this.state = 2899; + this.state = 2911; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2900; + this.state = 2912; localContext._cName = this.id_(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2901; + this.state = 2913; this.match(HiveSqlParser.KW_ADD); - this.state = 2904; + this.state = 2916; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: { - this.state = 2902; + this.state = 2914; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 2903; + this.state = 2915; this.alterConstraintWithName(); } break; @@ -14188,52 +14234,52 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2907; + this.state = 2919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2906; + this.state = 2918; this.partitionSpec(); } } - this.state = 2909; + this.state = 2921; this.alterTblPartitionStatementSuffix(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2910; + this.state = 2922; this.match(HiveSqlParser.KW_SET); - this.state = 2911; + this.state = 2923; this.match(HiveSqlParser.KW_OWNER); - this.state = 2912; + this.state = 2924; this.principalName(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2913; + this.state = 2925; this.match(HiveSqlParser.KW_SET); - this.state = 2914; + this.state = 2926; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2915; + this.state = 2927; this.match(HiveSqlParser.KW_SPEC); - this.state = 2916; + this.state = 2928; this.match(HiveSqlParser.LPAREN); - this.state = 2917; + this.state = 2929; localContext._spec = this.partitionTransformSpec(); - this.state = 2918; + this.state = 2930; this.match(HiveSqlParser.RPAREN); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2920; + this.state = 2932; this.alterStatementSuffixExecute(); } break; @@ -14255,65 +14301,65 @@ export class HiveSqlParser extends SQLParserBase { } public alterTblPartitionStatementSuffix(): AlterTblPartitionStatementSuffixContext { let localContext = new AlterTblPartitionStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 418, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); + this.enterRule(localContext, 420, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); let _la: number; try { - this.state = 3055; + this.state = 3067; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2923; + this.state = 2935; this.match(HiveSqlParser.KW_SET); - this.state = 2924; + this.state = 2936; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 2925; + this.state = 2937; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2926; + this.state = 2938; this.match(HiveSqlParser.KW_SET); - this.state = 2927; + this.state = 2939; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2928; + this.state = 2940; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2929; + this.state = 2941; this.match(HiveSqlParser.KW_CONCATENATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2930; + this.state = 2942; this.match(HiveSqlParser.KW_SET); - this.state = 2940; + this.state = 2952; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 2931; + this.state = 2943; this.match(HiveSqlParser.KW_SERDE); - this.state = 2932; + this.state = 2944; localContext._serdeName = this.match(HiveSqlParser.StringLiteral); - this.state = 2936; + this.state = 2948; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2933; + this.state = 2945; this.match(HiveSqlParser.KW_WITH); - this.state = 2934; + this.state = 2946; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2935; + this.state = 2947; this.tableProperties(); } break; @@ -14322,9 +14368,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 2938; + this.state = 2950; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2939; + this.state = 2951; this.tableProperties(); } break; @@ -14336,75 +14382,75 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2942; + this.state = 2954; this.match(HiveSqlParser.KW_UNSET); - this.state = 2943; + this.state = 2955; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2944; + this.state = 2956; this.tableProperties(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2945; + this.state = 2957; this.match(HiveSqlParser.KW_RENAME); - this.state = 2946; + this.state = 2958; this.match(HiveSqlParser.KW_TO); - this.state = 2947; + this.state = 2959; this.partitionSpec(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2948; + this.state = 2960; this.match(HiveSqlParser.KW_INTO); - this.state = 2949; + this.state = 2961; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2950; + this.state = 2962; this.match(HiveSqlParser.KW_BUCKETS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2951; + this.state = 2963; this.match(HiveSqlParser.KW_SET); - this.state = 2952; + this.state = 2964; this.match(HiveSqlParser.KW_SKEWED); - this.state = 2953; + this.state = 2965; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2954; + this.state = 2966; this.match(HiveSqlParser.LPAREN); - this.state = 2955; + this.state = 2967; this.skewedLocationMap(); - this.state = 2960; + this.state = 2972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2956; + this.state = 2968; this.match(HiveSqlParser.COMMA); - this.state = 2957; + this.state = 2969; this.skewedLocationMap(); } } - this.state = 2962; + this.state = 2974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2963; + this.state = 2975; this.match(HiveSqlParser.RPAREN); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2965; + this.state = 2977; this.match(HiveSqlParser.KW_NOT); - this.state = 2966; + this.state = 2978; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -14418,77 +14464,77 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2967; + this.state = 2979; this.tableBuckets(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2968; + this.state = 2980; this.match(HiveSqlParser.KW_COMPACT); - this.state = 2969; + this.state = 2981; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 2972; + this.state = 2984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2970; + this.state = 2982; this.match(HiveSqlParser.KW_AND); - this.state = 2971; + this.state = 2983; this.match(HiveSqlParser.KW_WAIT); } } - this.state = 2978; + this.state = 2990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2974; + this.state = 2986; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2975; + this.state = 2987; this.match(HiveSqlParser.KW_INTO); - this.state = 2976; + this.state = 2988; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2977; + this.state = 2989; this.match(HiveSqlParser.KW_BUCKETS); } } - this.state = 2981; + this.state = 2993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2980; + this.state = 2992; this.orderByClause(); } } - this.state = 2984; + this.state = 2996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 2983; + this.state = 2995; this.compactionPool(); } } - this.state = 2990; + this.state = 3002; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 2986; + this.state = 2998; this.match(HiveSqlParser.KW_WITH); - this.state = 2987; + this.state = 2999; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2988; + this.state = 3000; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2989; + this.state = 3001; this.tableProperties(); } break; @@ -14498,36 +14544,36 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2992; + this.state = 3004; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2993; + this.state = 3005; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 2994; + this.state = 3006; this.match(HiveSqlParser.KW_FOR); - this.state = 2996; + this.state = 3008; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2995; + this.state = 3007; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 2998; + this.state = 3010; localContext._colName = this.columnName(); - this.state = 2999; + this.state = 3011; this.match(HiveSqlParser.KW_SET); - this.state = 3000; + this.state = 3012; this.tableProperties(); - this.state = 3003; + this.state = 3015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3001; + this.state = 3013; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3002; + this.state = 3014; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -14537,73 +14583,73 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3005; + this.state = 3017; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3006; + this.state = 3018; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3007; + this.state = 3019; this.match(HiveSqlParser.KW_SET); - this.state = 3008; + this.state = 3020; this.tableProperties(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3009; + this.state = 3021; this.match(HiveSqlParser.KW_CHANGE); - this.state = 3011; + this.state = 3023; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 3010; + this.state = 3022; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3013; + this.state = 3025; localContext._oldName = this.columnName(); - this.state = 3014; + this.state = 3026; localContext._newName = this.columnNameCreate(); - this.state = 3015; + this.state = 3027; this.columnType(); - this.state = 3017; + this.state = 3029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 3016; + this.state = 3028; this.alterColumnConstraint(); } } - this.state = 3021; + this.state = 3033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3019; + this.state = 3031; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3020; + this.state = 3032; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3026; + this.state = 3038; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: { - this.state = 3023; + this.state = 3035; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: { - this.state = 3024; + this.state = 3036; this.match(HiveSqlParser.KW_AFTER); - this.state = 3025; + this.state = 3037; localContext._afterCol = this.id_(); } break; @@ -14659,12 +14705,12 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3029; + this.state = 3041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3028; + this.state = 3040; this.restrictOrCascade(); } } @@ -14674,38 +14720,38 @@ export class HiveSqlParser extends SQLParserBase { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3033; + this.state = 3045; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3031; + this.state = 3043; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3032; + this.state = 3044; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3035; + this.state = 3047; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3036; + this.state = 3048; this.match(HiveSqlParser.LPAREN); - this.state = 3037; + this.state = 3049; this.columnNameTypeList(); - this.state = 3038; + this.state = 3050; this.match(HiveSqlParser.RPAREN); - this.state = 3040; + this.state = 3052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3039; + this.state = 3051; this.restrictOrCascade(); } } @@ -14715,16 +14761,16 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3042; + this.state = 3054; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3043; + this.state = 3055; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3045; + this.state = 3057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3044; + this.state = 3056; this.restrictOrCascade(); } } @@ -14734,22 +14780,22 @@ export class HiveSqlParser extends SQLParserBase { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3047; + this.state = 3059; this.enableSpecification(); - this.state = 3053; + this.state = 3065; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NO_DROP: { { - this.state = 3048; + this.state = 3060; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3050; + this.state = 3062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3049; + this.state = 3061; this.match(HiveSqlParser.KW_CASCADE); } } @@ -14759,7 +14805,7 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_OFFLINE: { - this.state = 3052; + this.state = 3064; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -14786,91 +14832,91 @@ export class HiveSqlParser extends SQLParserBase { } public alterViewStatementSuffix(): AlterViewStatementSuffixContext { let localContext = new AlterViewStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 420, HiveSqlParser.RULE_alterViewStatementSuffix); + this.enterRule(localContext, 422, HiveSqlParser.RULE_alterViewStatementSuffix); let _la: number; try { - this.state = 3083; + this.state = 3095; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3057; + this.state = 3069; this.match(HiveSqlParser.KW_SET); - this.state = 3058; + this.state = 3070; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3059; + this.state = 3071; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3060; + this.state = 3072; this.match(HiveSqlParser.KW_UNSET); - this.state = 3061; + this.state = 3073; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3063; + this.state = 3075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3062; + this.state = 3074; this.ifExists(); } } - this.state = 3065; + this.state = 3077; this.tableProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 3); { - this.state = 3066; + this.state = 3078; this.match(HiveSqlParser.KW_RENAME); - this.state = 3067; + this.state = 3079; this.match(HiveSqlParser.KW_TO); - this.state = 3068; + this.state = 3080; this.tableNameCreate(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 4); { - this.state = 3069; + this.state = 3081; this.match(HiveSqlParser.KW_ADD); - this.state = 3071; + this.state = 3083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3070; + this.state = 3082; this.ifNotExists(); } } - this.state = 3077; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3073; + this.state = 3085; this.partitionSpec(); - this.state = 3075; + this.state = 3087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3074; + this.state = 3086; this.locationPath(); } } } } - this.state = 3079; + this.state = 3091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14879,7 +14925,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 5); { - this.state = 3081; + this.state = 3093; this.alterStatementSuffixDropPartitions(); } break; @@ -14891,7 +14937,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 6); { - this.state = 3082; + this.state = 3094; this.selectStatementWithCTE(); } break; @@ -14915,46 +14961,46 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseStatementSuffix(): AlterDatabaseStatementSuffixContext { let localContext = new AlterDatabaseStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 422, HiveSqlParser.RULE_alterDatabaseStatementSuffix); + this.enterRule(localContext, 424, HiveSqlParser.RULE_alterDatabaseStatementSuffix); let _la: number; try { - this.state = 3100; + this.state = 3112; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3085; + this.state = 3097; localContext._name = this.dbSchemaName(); - this.state = 3086; + this.state = 3098; this.match(HiveSqlParser.KW_SET); - this.state = 3087; + this.state = 3099; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3088; + this.state = 3100; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3090; + this.state = 3102; localContext._dbName = this.dbSchemaName(); - this.state = 3091; + this.state = 3103; this.match(HiveSqlParser.KW_SET); - this.state = 3092; + this.state = 3104; this.match(HiveSqlParser.KW_OWNER); - this.state = 3093; + this.state = 3105; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3095; + this.state = 3107; localContext._dbName = this.dbSchemaName(); - this.state = 3096; + this.state = 3108; this.match(HiveSqlParser.KW_SET); - this.state = 3097; + this.state = 3109; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 196)) { this.errorHandler.recoverInline(this); @@ -14963,7 +15009,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3098; + this.state = 3110; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } break; @@ -14985,47 +15031,47 @@ export class HiveSqlParser extends SQLParserBase { } public alterDataConnectorStatementSuffix(): AlterDataConnectorStatementSuffixContext { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 424, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); + this.enterRule(localContext, 426, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3117; + this.state = 3129; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3102; + this.state = 3114; localContext._name = this.dbSchemaName(); - this.state = 3103; + this.state = 3115; this.match(HiveSqlParser.KW_SET); - this.state = 3104; + this.state = 3116; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3105; + this.state = 3117; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3107; + this.state = 3119; localContext._dcName = this.dbSchemaName(); - this.state = 3108; + this.state = 3120; this.match(HiveSqlParser.KW_SET); - this.state = 3109; + this.state = 3121; this.match(HiveSqlParser.KW_OWNER); - this.state = 3110; + this.state = 3122; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3112; + this.state = 3124; localContext._dcName = this.dbSchemaName(); - this.state = 3113; + this.state = 3125; this.match(HiveSqlParser.KW_SET); - this.state = 3114; + this.state = 3126; this.match(HiveSqlParser.KW_URL); - this.state = 3115; + this.state = 3127; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } break; @@ -15047,13 +15093,13 @@ export class HiveSqlParser extends SQLParserBase { } public locationPath(): LocationPathContext { let localContext = new LocationPathContext(this.context, this.state); - this.enterRule(localContext, 426, HiveSqlParser.RULE_locationPath); + this.enterRule(localContext, 428, HiveSqlParser.RULE_locationPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 3119; + this.state = 3131; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3120; + this.state = 3132; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -15073,73 +15119,73 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixDropPartitions(): AlterStatementSuffixDropPartitionsContext { let localContext = new AlterStatementSuffixDropPartitionsContext(this.context, this.state); - this.enterRule(localContext, 428, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); + this.enterRule(localContext, 430, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3122; + this.state = 3134; this.match(HiveSqlParser.KW_DROP); - this.state = 3124; + this.state = 3136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3123; + this.state = 3135; this.ifExists(); } } - this.state = 3126; + this.state = 3138; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3127; + this.state = 3139; this.partitionSelectorSpec(); - this.state = 3133; + this.state = 3145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3128; + this.state = 3140; this.match(HiveSqlParser.COMMA); - this.state = 3129; + this.state = 3141; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3130; + this.state = 3142; this.partitionSelectorSpec(); } } - this.state = 3135; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3138; + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3136; + this.state = 3148; this.match(HiveSqlParser.KW_IGNORE); - this.state = 3137; + this.state = 3149; this.match(HiveSqlParser.KW_PROTECTION); } } - this.state = 3141; + this.state = 3153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 3140; + this.state = 3152; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 3144; + this.state = 3156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3143; + this.state = 3155; this.replicationClause(); } } @@ -15162,11 +15208,11 @@ export class HiveSqlParser extends SQLParserBase { } public skewedLocationMap(): SkewedLocationMapContext { let localContext = new SkewedLocationMapContext(this.context, this.state); - this.enterRule(localContext, 430, HiveSqlParser.RULE_skewedLocationMap); + this.enterRule(localContext, 432, HiveSqlParser.RULE_skewedLocationMap); try { this.enterOuterAlt(localContext, 1); { - this.state = 3148; + this.state = 3160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -15424,22 +15470,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: case HiveSqlParser.CharSetName: { - this.state = 3146; + this.state = 3158; this.constant(); } break; case HiveSqlParser.LPAREN: { - this.state = 3147; + this.state = 3159; this.skewedColumnValuePair(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3150; + this.state = 3162; this.match(HiveSqlParser.EQUAL); - this.state = 3151; + this.state = 3163; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -15459,23 +15505,23 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixExecute(): AlterStatementSuffixExecuteContext { let localContext = new AlterStatementSuffixExecuteContext(this.context, this.state); - this.enterRule(localContext, 432, HiveSqlParser.RULE_alterStatementSuffixExecute); + this.enterRule(localContext, 434, HiveSqlParser.RULE_alterStatementSuffixExecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3153; + this.state = 3165; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 3163; + this.state = 3175; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3154; + this.state = 3166; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3155; + this.state = 3167; this.match(HiveSqlParser.LPAREN); - this.state = 3156; + this.state = 3168; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { @@ -15489,28 +15535,28 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3157; + this.state = 3169; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3158; + this.state = 3170; this.match(HiveSqlParser.LPAREN); - this.state = 3159; + this.state = 3171; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3160; + this.state = 3172; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3161; + this.state = 3173; this.match(HiveSqlParser.LPAREN); - this.state = 3162; + this.state = 3174; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3165; + this.state = 3177; this.match(HiveSqlParser.RPAREN); } } @@ -15530,39 +15576,39 @@ export class HiveSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 434, HiveSqlParser.RULE_fileFormat); + this.enterRule(localContext, 436, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3180; + this.state = 3192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3167; + this.state = 3179; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3168; + this.state = 3180; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3169; + this.state = 3181; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3170; + this.state = 3182; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3171; + this.state = 3183; this.match(HiveSqlParser.KW_SERDE); - this.state = 3172; + this.state = 3184; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - this.state = 3177; + this.state = 3189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3173; + this.state = 3185; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3174; + this.state = 3186; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3175; + this.state = 3187; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3176; + this.state = 3188; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -15572,7 +15618,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3179; + this.state = 3191; localContext._genericSpec = this.id_(); } break; @@ -15594,39 +15640,39 @@ export class HiveSqlParser extends SQLParserBase { } public likeTableOrFile(): LikeTableOrFileContext { let localContext = new LikeTableOrFileContext(this.context, this.state); - this.enterRule(localContext, 436, HiveSqlParser.RULE_likeTableOrFile); + this.enterRule(localContext, 438, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3191; + this.state = 3203; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3182; + this.state = 3194; this.match(HiveSqlParser.KW_LIKE); - this.state = 3183; + this.state = 3195; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3184; + this.state = 3196; this.match(HiveSqlParser.KW_LIKE); - this.state = 3185; + this.state = 3197; this.match(HiveSqlParser.KW_FILE); - this.state = 3186; + this.state = 3198; localContext._format = this.id_(); - this.state = 3187; + this.state = 3199; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3189; + this.state = 3201; this.match(HiveSqlParser.KW_LIKE); - this.state = 3190; + this.state = 3202; localContext._likeName = this.tableName(); } break; @@ -15648,124 +15694,124 @@ export class HiveSqlParser extends SQLParserBase { } public createTableStatement(): CreateTableStatementContext { let localContext = new CreateTableStatementContext(this.context, this.state); - this.enterRule(localContext, 438, HiveSqlParser.RULE_createTableStatement); + this.enterRule(localContext, 440, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3328; + this.state = 3340; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3193; + this.state = 3205; this.match(HiveSqlParser.KW_CREATE); - this.state = 3195; + this.state = 3207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 3194; + this.state = 3206; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 3198; + this.state = 3210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 345) { { - this.state = 3197; + this.state = 3209; localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); } } - this.state = 3201; + this.state = 3213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 3200; + this.state = 3212; localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 3203; + this.state = 3215; this.match(HiveSqlParser.KW_TABLE); - this.state = 3205; + this.state = 3217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3204; + this.state = 3216; this.ifNotExists(); } } - this.state = 3207; + this.state = 3219; localContext._name = this.tableNameCreate(); - this.state = 3264; + this.state = 3276; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3208; + this.state = 3220; this.likeTableOrFile(); - this.state = 3210; + this.state = 3222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3209; + this.state = 3221; this.createTablePartitionSpec(); } } - this.state = 3213; + this.state = 3225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3212; + this.state = 3224; this.tableRowFormat(); } } - this.state = 3216; + this.state = 3228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3215; + this.state = 3227; this.tableFileFormat(); } } - this.state = 3219; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3218; + this.state = 3230; this.locationPath(); } } - this.state = 3222; + this.state = 3234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3221; + this.state = 3233; this.tablePropertiesPrefixed(); } } - this.state = 3225; + this.state = 3237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3224; + this.state = 3236; this.tableLifecycle(); } } @@ -15829,118 +15875,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3231; + this.state = 3243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 3227; + this.state = 3239; this.match(HiveSqlParser.LPAREN); - this.state = 3228; + this.state = 3240; this.columnNameTypeOrConstraintList(); - this.state = 3229; + this.state = 3241; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3234; + this.state = 3246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3233; + this.state = 3245; this.tableComment(); } } - this.state = 3237; + this.state = 3249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3236; + this.state = 3248; this.createTablePartitionSpec(); } } - this.state = 3240; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3239; + this.state = 3251; this.tableBuckets(); } } - this.state = 3243; + this.state = 3255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3242; + this.state = 3254; this.tableSkewed(); } } - this.state = 3246; + this.state = 3258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3245; + this.state = 3257; this.tableRowFormat(); } } - this.state = 3249; + this.state = 3261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3248; + this.state = 3260; this.tableFileFormat(); } } - this.state = 3252; + this.state = 3264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3251; + this.state = 3263; this.locationPath(); } } - this.state = 3255; + this.state = 3267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3254; + this.state = 3266; this.tablePropertiesPrefixed(); } } - this.state = 3258; + this.state = 3270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3257; + this.state = 3269; this.tableLifecycle(); } } - this.state = 3262; + this.state = 3274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3260; + this.state = 3272; this.match(HiveSqlParser.KW_AS); - this.state = 3261; + this.state = 3273; this.selectStatementWithCTE(); } } @@ -15955,77 +16001,77 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3266; + this.state = 3278; this.match(HiveSqlParser.KW_CREATE); - this.state = 3267; + this.state = 3279; localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3268; + this.state = 3280; this.match(HiveSqlParser.KW_TABLE); - this.state = 3270; + this.state = 3282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3269; + this.state = 3281; this.ifNotExists(); } } - this.state = 3272; + this.state = 3284; localContext._name = this.tableNameCreate(); - this.state = 3326; + this.state = 3338; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3273; + this.state = 3285; this.likeTableOrFile(); - this.state = 3275; + this.state = 3287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3274; + this.state = 3286; this.tableRowFormat(); } } - this.state = 3278; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3277; + this.state = 3289; this.tableFileFormat(); } } - this.state = 3281; + this.state = 3293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3280; + this.state = 3292; this.locationPath(); } } - this.state = 3284; + this.state = 3296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3283; + this.state = 3295; this.tablePropertiesPrefixed(); } } - this.state = 3287; + this.state = 3299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3286; + this.state = 3298; this.tableLifecycle(); } } @@ -16089,118 +16135,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3293; + this.state = 3305; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: { - this.state = 3289; + this.state = 3301; this.match(HiveSqlParser.LPAREN); - this.state = 3290; + this.state = 3302; this.columnNameTypeOrConstraintList(); - this.state = 3291; + this.state = 3303; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3296; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3295; + this.state = 3307; this.tableComment(); } } - this.state = 3299; + this.state = 3311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3298; + this.state = 3310; this.createTablePartitionSpec(); } } - this.state = 3302; + this.state = 3314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3301; + this.state = 3313; this.tableBuckets(); } } - this.state = 3305; + this.state = 3317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3304; + this.state = 3316; this.tableSkewed(); } } - this.state = 3308; + this.state = 3320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3307; + this.state = 3319; this.tableRowFormat(); } } - this.state = 3311; + this.state = 3323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3310; + this.state = 3322; this.tableFileFormat(); } } - this.state = 3314; + this.state = 3326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3313; + this.state = 3325; this.locationPath(); } } - this.state = 3317; + this.state = 3329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3316; + this.state = 3328; this.tablePropertiesPrefixed(); } } - this.state = 3320; + this.state = 3332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3319; + this.state = 3331; this.tableLifecycle(); } } - this.state = 3324; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3322; + this.state = 3334; this.match(HiveSqlParser.KW_AS); - this.state = 3323; + this.state = 3335; this.selectStatementWithCTE(); } } @@ -16230,73 +16276,73 @@ export class HiveSqlParser extends SQLParserBase { } public createDataConnectorStatement(): CreateDataConnectorStatementContext { let localContext = new CreateDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 440, HiveSqlParser.RULE_createDataConnectorStatement); + this.enterRule(localContext, 442, HiveSqlParser.RULE_createDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3330; + this.state = 3342; this.match(HiveSqlParser.KW_CREATE); - this.state = 3331; + this.state = 3343; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3333; + this.state = 3345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3332; + this.state = 3344; this.ifNotExists(); } } - this.state = 3335; + this.state = 3347; localContext._name = this.id_(); - this.state = 3338; + this.state = 3350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 3336; + this.state = 3348; this.match(HiveSqlParser.KW_TYPE); - this.state = 3337; + this.state = 3349; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3342; + this.state = 3354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3340; + this.state = 3352; this.match(HiveSqlParser.KW_URL); - this.state = 3341; + this.state = 3353; localContext._url = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3346; + this.state = 3358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3344; + this.state = 3356; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3345; + this.state = 3357; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3351; + this.state = 3363; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 3348; + this.state = 3360; this.match(HiveSqlParser.KW_WITH); - this.state = 3349; + this.state = 3361; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3350; + this.state = 3362; localContext._dcprops = this.keyValueProperties(); } break; @@ -16319,26 +16365,26 @@ export class HiveSqlParser extends SQLParserBase { } public dropDataConnectorStatement(): DropDataConnectorStatementContext { let localContext = new DropDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 442, HiveSqlParser.RULE_dropDataConnectorStatement); + this.enterRule(localContext, 444, HiveSqlParser.RULE_dropDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3353; + this.state = 3365; this.match(HiveSqlParser.KW_DROP); - this.state = 3354; + this.state = 3366; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3356; + this.state = 3368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3355; + this.state = 3367; this.ifExists(); } } - this.state = 3358; + this.state = 3370; this.id_(); } } @@ -16358,28 +16404,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 444, HiveSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 446, HiveSqlParser.RULE_tableAllColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3365; + this.state = 3377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { { - this.state = 3360; + this.state = 3372; this.id_(); - this.state = 3361; + this.state = 3373; this.match(HiveSqlParser.DOT); } } - this.state = 3367; + this.state = 3379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3368; + this.state = 3380; this.match(HiveSqlParser.STAR); } } @@ -16399,26 +16445,26 @@ export class HiveSqlParser extends SQLParserBase { } public expressionList(): ExpressionListContext { let localContext = new ExpressionListContext(this.context, this.state); - this.enterRule(localContext, 446, HiveSqlParser.RULE_expressionList); + this.enterRule(localContext, 448, HiveSqlParser.RULE_expressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3370; + this.state = 3382; this.expression(); - this.state = 3375; + this.state = 3387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3371; + this.state = 3383; this.match(HiveSqlParser.COMMA); - this.state = 3372; + this.state = 3384; this.expression(); } } - this.state = 3377; + this.state = 3389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16440,26 +16486,26 @@ export class HiveSqlParser extends SQLParserBase { } public aliasList(): AliasListContext { let localContext = new AliasListContext(this.context, this.state); - this.enterRule(localContext, 448, HiveSqlParser.RULE_aliasList); + this.enterRule(localContext, 450, HiveSqlParser.RULE_aliasList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3378; + this.state = 3390; this.id_(); - this.state = 3383; + this.state = 3395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3379; + this.state = 3391; this.match(HiveSqlParser.COMMA); - this.state = 3380; + this.state = 3392; this.id_(); } } - this.state = 3385; + this.state = 3397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16481,13 +16527,13 @@ export class HiveSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 450, HiveSqlParser.RULE_fromClause); + this.enterRule(localContext, 452, HiveSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3386; + this.state = 3398; this.match(HiveSqlParser.KW_FROM); - this.state = 3387; + this.state = 3399; this.fromSource(); } } @@ -16507,32 +16553,32 @@ export class HiveSqlParser extends SQLParserBase { } public fromSource(): FromSourceContext { let localContext = new FromSourceContext(this.context, this.state); - this.enterRule(localContext, 452, HiveSqlParser.RULE_fromSource); + this.enterRule(localContext, 454, HiveSqlParser.RULE_fromSource); let _la: number; try { - this.state = 3398; + this.state = 3410; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNIQUEJOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3389; + this.state = 3401; this.match(HiveSqlParser.KW_UNIQUEJOIN); - this.state = 3390; + this.state = 3402; this.uniqueJoinSource(); - this.state = 3393; + this.state = 3405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3391; + this.state = 3403; this.match(HiveSqlParser.COMMA); - this.state = 3392; + this.state = 3404; this.uniqueJoinSource(); } } - this.state = 3395; + this.state = 3407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -16782,7 +16828,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 3397; + this.state = 3409; this.joinSource(); } break; @@ -16806,112 +16852,112 @@ export class HiveSqlParser extends SQLParserBase { } public atomjoinSource(): AtomjoinSourceContext { let localContext = new AtomjoinSourceContext(this.context, this.state); - this.enterRule(localContext, 454, HiveSqlParser.RULE_atomjoinSource); + this.enterRule(localContext, 456, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; - this.state = 3432; + this.state = 3444; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3400; + this.state = 3412; this.tableSource(); - this.state = 3404; + this.state = 3416; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3401; + this.state = 3413; this.lateralView(); } } } - this.state = 3406; + this.state = 3418; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3407; + this.state = 3419; this.virtualTableSource(); - this.state = 3411; + this.state = 3423; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3408; + this.state = 3420; this.lateralView(); } } } - this.state = 3413; + this.state = 3425; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); } } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3414; + this.state = 3426; this.subQuerySource(); - this.state = 3418; + this.state = 3430; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3415; + this.state = 3427; this.lateralView(); } } } - this.state = 3420; + this.state = 3432; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); } } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3421; + this.state = 3433; this.partitionedTableFunction(); - this.state = 3425; + this.state = 3437; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 438, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3422; + this.state = 3434; this.lateralView(); } } } - this.state = 3427; + this.state = 3439; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 438, this.context); } } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3428; + this.state = 3440; this.match(HiveSqlParser.LPAREN); - this.state = 3429; + this.state = 3441; this.joinSource(); - this.state = 3430; + this.state = 3442; this.match(HiveSqlParser.RPAREN); } break; @@ -16933,39 +16979,65 @@ export class HiveSqlParser extends SQLParserBase { } public joinSource(): JoinSourceContext { let localContext = new JoinSourceContext(this.context, this.state); - this.enterRule(localContext, 456, HiveSqlParser.RULE_joinSource); + this.enterRule(localContext, 458, HiveSqlParser.RULE_joinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3434; + this.state = 3446; this.atomjoinSource(); - this.state = 3445; + this.state = 3464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 285 || _la === 397) { { { - this.state = 3435; + this.state = 3447; this.joinToken(); - this.state = 3436; + this.state = 3448; this.joinSourcePart(); - this.state = 3441; + this.state = 3460; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ON: { - this.state = 3437; + this.state = 3449; this.match(HiveSqlParser.KW_ON); - this.state = 3438; - this.expression(); + this.state = 3456; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + case 1: + { + this.state = 3450; + this.expression(); + } + break; + case 2: + { + this.state = 3451; + this.columnNamePathAllowEmpty(); + this.state = 3454; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 405) { + { + this.state = 3452; + this.match(HiveSqlParser.EQUAL); + this.state = 3453; + this.columnNamePathAllowEmpty(); + } + } + + } + break; + } } break; case HiveSqlParser.KW_USING: { - this.state = 3439; + this.state = 3458; this.match(HiveSqlParser.KW_USING); - this.state = 3440; + this.state = 3459; this.columnParenthesesList(); } break; @@ -17043,7 +17115,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 3447; + this.state = 3466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17065,54 +17137,54 @@ export class HiveSqlParser extends SQLParserBase { } public joinSourcePart(): JoinSourcePartContext { let localContext = new JoinSourcePartContext(this.context, this.state); - this.enterRule(localContext, 458, HiveSqlParser.RULE_joinSourcePart); + this.enterRule(localContext, 460, HiveSqlParser.RULE_joinSourcePart); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3452; + this.state = 3471; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3448; + this.state = 3467; this.tableSource(); } break; case 2: { - this.state = 3449; + this.state = 3468; this.virtualTableSource(); } break; case 3: { - this.state = 3450; + this.state = 3469; this.subQuerySource(); } break; case 4: { - this.state = 3451; + this.state = 3470; this.partitionedTableFunction(); } break; } - this.state = 3457; + this.state = 3476; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 442, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3454; + this.state = 3473; this.lateralView(); } } } - this.state = 3459; + this.state = 3478; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 442, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); } } } @@ -17132,58 +17204,58 @@ export class HiveSqlParser extends SQLParserBase { } public uniqueJoinSource(): UniqueJoinSourceContext { let localContext = new UniqueJoinSourceContext(this.context, this.state); - this.enterRule(localContext, 460, HiveSqlParser.RULE_uniqueJoinSource); + this.enterRule(localContext, 462, HiveSqlParser.RULE_uniqueJoinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 250) { { - this.state = 3460; + this.state = 3479; this.match(HiveSqlParser.KW_PRESERVE); } } - this.state = 3463; + this.state = 3482; localContext._tabname = this.tableOrView(); - this.state = 3465; + this.state = 3484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3464; + this.state = 3483; localContext._ts = this.tableSample(); } } - this.state = 3471; + this.state = 3490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3468; + this.state = 3487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3467; + this.state = 3486; this.match(HiveSqlParser.KW_AS); } } - this.state = 3470; + this.state = 3489; localContext._alias = this.id_(); } } - this.state = 3473; + this.state = 3492; this.match(HiveSqlParser.LPAREN); - this.state = 3474; + this.state = 3493; this.expressionList(); - this.state = 3475; + this.state = 3494; this.match(HiveSqlParser.RPAREN); } } @@ -17203,16 +17275,16 @@ export class HiveSqlParser extends SQLParserBase { } public joinToken(): JoinTokenContext { let localContext = new JoinTokenContext(this.context, this.state); - this.enterRule(localContext, 462, HiveSqlParser.RULE_joinToken); + this.enterRule(localContext, 464, HiveSqlParser.RULE_joinToken); let _la: number; try { - this.state = 3491; + this.state = 3510; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 3477; + this.state = 3496; this.match(HiveSqlParser.COMMA); } break; @@ -17224,25 +17296,25 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 2); { - this.state = 3488; + this.state = 3507; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INNER: { - this.state = 3478; + this.state = 3497; this.match(HiveSqlParser.KW_INNER); } break; case HiveSqlParser.KW_CROSS: { - this.state = 3479; + this.state = 3498; this.match(HiveSqlParser.KW_CROSS); } break; case HiveSqlParser.KW_FULL: case HiveSqlParser.KW_RIGHT: { - this.state = 3480; + this.state = 3499; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 285)) { this.errorHandler.recoverInline(this); @@ -17251,12 +17323,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3482; + this.state = 3501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 3481; + this.state = 3500; this.match(HiveSqlParser.KW_OUTER); } } @@ -17265,14 +17337,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_LEFT: { - this.state = 3484; + this.state = 3503; this.match(HiveSqlParser.KW_LEFT); - this.state = 3486; + this.state = 3505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 231 || _la === 300) { { - this.state = 3485; + this.state = 3504; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 231 || _la === 300)) { this.errorHandler.recoverInline(this); @@ -17291,7 +17363,7 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3490; + this.state = 3509; this.match(HiveSqlParser.KW_JOIN); } break; @@ -17315,52 +17387,52 @@ export class HiveSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 464, HiveSqlParser.RULE_lateralView); + this.enterRule(localContext, 466, HiveSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; - this.state = 3550; + this.state = 3569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3493; + this.state = 3512; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3494; + this.state = 3513; this.match(HiveSqlParser.KW_VIEW); - this.state = 3495; + this.state = 3514; this.match(HiveSqlParser.KW_OUTER); - this.state = 3496; + this.state = 3515; this.function_(); - this.state = 3497; + this.state = 3516; localContext._alias = this.tableAlias(); - this.state = 3507; + this.state = 3526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3498; + this.state = 3517; this.match(HiveSqlParser.KW_AS); - this.state = 3499; + this.state = 3518; this.id_(); - this.state = 3504; + this.state = 3523; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3500; + this.state = 3519; this.match(HiveSqlParser.COMMA); - this.state = 3501; + this.state = 3520; this.id_(); } } } - this.state = 3506; + this.state = 3525; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); } } } @@ -17370,55 +17442,55 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3510; + this.state = 3529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3509; + this.state = 3528; this.match(HiveSqlParser.COMMA); } } - this.state = 3512; + this.state = 3531; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3548; + this.state = 3567; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VIEW: { - this.state = 3513; + this.state = 3532; this.match(HiveSqlParser.KW_VIEW); - this.state = 3514; + this.state = 3533; this.function_(); - this.state = 3515; + this.state = 3534; localContext._alias = this.tableAlias(); - this.state = 3525; + this.state = 3544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3516; + this.state = 3535; this.match(HiveSqlParser.KW_AS); - this.state = 3517; + this.state = 3536; this.id_(); - this.state = 3522; + this.state = 3541; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3518; + this.state = 3537; this.match(HiveSqlParser.COMMA); - this.state = 3519; + this.state = 3538; this.id_(); } } } - this.state = 3524; + this.state = 3543; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } } } @@ -17427,52 +17499,52 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_TABLE: { - this.state = 3527; + this.state = 3546; this.match(HiveSqlParser.KW_TABLE); - this.state = 3528; + this.state = 3547; this.match(HiveSqlParser.LPAREN); - this.state = 3529; + this.state = 3548; this.valuesClause(); - this.state = 3530; + this.state = 3549; this.match(HiveSqlParser.RPAREN); - this.state = 3532; + this.state = 3551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3531; + this.state = 3550; this.match(HiveSqlParser.KW_AS); } } - this.state = 3534; + this.state = 3553; localContext._alias = this.tableAlias(); - this.state = 3546; + this.state = 3565; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: { - this.state = 3535; + this.state = 3554; this.match(HiveSqlParser.LPAREN); - this.state = 3536; + this.state = 3555; this.id_(); - this.state = 3541; + this.state = 3560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3537; + this.state = 3556; this.match(HiveSqlParser.COMMA); - this.state = 3538; + this.state = 3557; this.id_(); } } - this.state = 3543; + this.state = 3562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3544; + this.state = 3563; this.match(HiveSqlParser.RPAREN); } break; @@ -17502,11 +17574,11 @@ export class HiveSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 466, HiveSqlParser.RULE_tableAlias); + this.enterRule(localContext, 468, HiveSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 3552; + this.state = 3571; this.id_(); } } @@ -17526,78 +17598,78 @@ export class HiveSqlParser extends SQLParserBase { } public tableSample(): TableSampleContext { let localContext = new TableSampleContext(this.context, this.state); - this.enterRule(localContext, 468, HiveSqlParser.RULE_tableSample); + this.enterRule(localContext, 470, HiveSqlParser.RULE_tableSample); let _la: number; try { - this.state = 3581; + this.state = 3600; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3554; + this.state = 3573; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3555; + this.state = 3574; this.match(HiveSqlParser.LPAREN); - this.state = 3556; + this.state = 3575; this.match(HiveSqlParser.KW_BUCKET); - this.state = 3557; + this.state = 3576; localContext._numerator = this.match(HiveSqlParser.Number); - this.state = 3558; + this.state = 3577; this.match(HiveSqlParser.KW_OUT); - this.state = 3559; + this.state = 3578; this.match(HiveSqlParser.KW_OF); - this.state = 3560; + this.state = 3579; localContext._denominator = this.match(HiveSqlParser.Number); - this.state = 3570; + this.state = 3589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 3561; + this.state = 3580; this.match(HiveSqlParser.KW_ON); - this.state = 3562; + this.state = 3581; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); - this.state = 3567; + this.state = 3586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3563; + this.state = 3582; this.match(HiveSqlParser.COMMA); - this.state = 3564; + this.state = 3583; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); } } - this.state = 3569; + this.state = 3588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3572; + this.state = 3591; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3573; + this.state = 3592; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3574; + this.state = 3593; this.match(HiveSqlParser.LPAREN); - this.state = 3578; + this.state = 3597; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Number: { - this.state = 3575; + this.state = 3594; this.match(HiveSqlParser.Number); - this.state = 3576; + this.state = 3595; _la = this.tokenStream.LA(1); if(!(_la === 241 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -17610,14 +17682,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.ByteLengthLiteral: { - this.state = 3577; + this.state = 3596; this.match(HiveSqlParser.ByteLengthLiteral); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3580; + this.state = 3599; this.match(HiveSqlParser.RPAREN); } break; @@ -17639,59 +17711,59 @@ export class HiveSqlParser extends SQLParserBase { } public tableSource(): TableSourceContext { let localContext = new TableSourceContext(this.context, this.state); - this.enterRule(localContext, 470, HiveSqlParser.RULE_tableSource); + this.enterRule(localContext, 472, HiveSqlParser.RULE_tableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3583; + this.state = 3602; localContext._tabname = this.tableOrView(); - this.state = 3585; + this.state = 3604; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3584; + this.state = 3603; localContext._props = this.tableProperties(); } break; } - this.state = 3588; + this.state = 3607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3587; + this.state = 3606; localContext._ts = this.tableSample(); } } - this.state = 3591; + this.state = 3610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3590; + this.state = 3609; localContext._asOf = this.asOfClause(); } } - this.state = 3597; + this.state = 3616; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3594; + this.state = 3613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3593; + this.state = 3612; this.match(HiveSqlParser.KW_AS); } } - this.state = 3596; + this.state = 3615; localContext._alias = this.id_(); } break; @@ -17714,38 +17786,38 @@ export class HiveSqlParser extends SQLParserBase { } public asOfClause(): AsOfClauseContext { let localContext = new AsOfClauseContext(this.context, this.state); - this.enterRule(localContext, 472, HiveSqlParser.RULE_asOfClause); + this.enterRule(localContext, 474, HiveSqlParser.RULE_asOfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3599; + this.state = 3618; this.match(HiveSqlParser.KW_FOR); - this.state = 3609; + this.state = 3628; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SYSTEM_TIME: { - this.state = 3600; + this.state = 3619; this.match(HiveSqlParser.KW_SYSTEM_TIME); - this.state = 3601; + this.state = 3620; this.match(HiveSqlParser.KW_AS); - this.state = 3602; + this.state = 3621; this.match(HiveSqlParser.KW_OF); - this.state = 3603; + this.state = 3622; localContext._asOfTime = this.expression(); } break; case HiveSqlParser.KW_FOR: { - this.state = 3604; + this.state = 3623; this.match(HiveSqlParser.KW_FOR); - this.state = 3605; + this.state = 3624; this.match(HiveSqlParser.KW_SYSTEM_VERSION); - this.state = 3606; + this.state = 3625; this.match(HiveSqlParser.KW_AS); - this.state = 3607; + this.state = 3626; this.match(HiveSqlParser.KW_OF); - this.state = 3608; + this.state = 3627; localContext._asOfVersion = this.match(HiveSqlParser.Number); } break; @@ -17770,11 +17842,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaName(): DbSchemaNameContext { let localContext = new DbSchemaNameContext(this.context, this.state); - this.enterRule(localContext, 474, HiveSqlParser.RULE_dbSchemaName); + this.enterRule(localContext, 476, HiveSqlParser.RULE_dbSchemaName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3611; + this.state = 3630; this.id_(); } } @@ -17794,11 +17866,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaNameCreate(): DbSchemaNameCreateContext { let localContext = new DbSchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 476, HiveSqlParser.RULE_dbSchemaNameCreate); + this.enterRule(localContext, 478, HiveSqlParser.RULE_dbSchemaNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3613; + this.state = 3632; this.id_(); } } @@ -17818,22 +17890,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrView(): TableOrViewContext { let localContext = new TableOrViewContext(this.context, this.state); - this.enterRule(localContext, 478, HiveSqlParser.RULE_tableOrView); + this.enterRule(localContext, 480, HiveSqlParser.RULE_tableOrView); try { - this.state = 3617; + this.state = 3636; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3615; + this.state = 3634; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3616; + this.state = 3635; this.viewName(); } break; @@ -17855,28 +17927,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 480, HiveSqlParser.RULE_tableName); + this.enterRule(localContext, 482, HiveSqlParser.RULE_tableName); try { - this.state = 3627; + this.state = 3646; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3619; + this.state = 3638; localContext._db = this.id_(); - this.state = 3620; + this.state = 3639; this.match(HiveSqlParser.DOT); - this.state = 3621; + this.state = 3640; localContext._tab = this.id_(); - this.state = 3624; + this.state = 3643; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 3622; + this.state = 3641; this.match(HiveSqlParser.DOT); - this.state = 3623; + this.state = 3642; localContext._meta = this.id_(); } break; @@ -17886,7 +17958,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3626; + this.state = 3645; localContext._tab = this.id_(); } break; @@ -17908,29 +17980,29 @@ export class HiveSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 482, HiveSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 484, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { - this.state = 3637; + this.state = 3656; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3629; + this.state = 3648; localContext._db = this.id_(); - this.state = 3630; + this.state = 3649; this.match(HiveSqlParser.DOT); - this.state = 3631; + this.state = 3650; localContext._tab = this.id_(); - this.state = 3634; + this.state = 3653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 3632; + this.state = 3651; this.match(HiveSqlParser.DOT); - this.state = 3633; + this.state = 3652; localContext._meta = this.id_(); } } @@ -17940,7 +18012,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3636; + this.state = 3655; localContext._tab = this.id_(); } break; @@ -17962,23 +18034,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 484, HiveSqlParser.RULE_viewName); + this.enterRule(localContext, 486, HiveSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3642; + this.state = 3661; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { - this.state = 3639; + this.state = 3658; localContext._db = this.id_(); - this.state = 3640; + this.state = 3659; this.match(HiveSqlParser.DOT); } break; } - this.state = 3644; + this.state = 3663; localContext._view = this.id_(); } } @@ -17998,23 +18070,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 486, HiveSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 488, HiveSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3649; + this.state = 3668; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { case 1: { - this.state = 3646; + this.state = 3665; localContext._db = this.id_(); - this.state = 3647; + this.state = 3666; this.match(HiveSqlParser.DOT); } break; } - this.state = 3651; + this.state = 3670; localContext._view = this.id_(); } } @@ -18034,28 +18106,28 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySource(): SubQuerySourceContext { let localContext = new SubQuerySourceContext(this.context, this.state); - this.enterRule(localContext, 488, HiveSqlParser.RULE_subQuerySource); + this.enterRule(localContext, 490, HiveSqlParser.RULE_subQuerySource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3653; + this.state = 3672; this.match(HiveSqlParser.LPAREN); - this.state = 3654; + this.state = 3673; this.queryStatementExpression(); - this.state = 3655; + this.state = 3674; this.match(HiveSqlParser.RPAREN); - this.state = 3657; + this.state = 3676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3656; + this.state = 3675; this.match(HiveSqlParser.KW_AS); } } - this.state = 3659; + this.state = 3678; localContext._alias = this.id_(); } } @@ -18075,23 +18147,23 @@ export class HiveSqlParser extends SQLParserBase { } public partitioningSpec(): PartitioningSpecContext { let localContext = new PartitioningSpecContext(this.context, this.state); - this.enterRule(localContext, 490, HiveSqlParser.RULE_partitioningSpec); + this.enterRule(localContext, 492, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { - this.state = 3672; + this.state = 3691; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 3661; + this.state = 3680; this.partitionByClause(); - this.state = 3663; + this.state = 3682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 3662; + this.state = 3681; this.orderByClause(); } } @@ -18101,21 +18173,21 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3665; + this.state = 3684; this.orderByClause(); } break; case HiveSqlParser.KW_DISTRIBUTE: this.enterOuterAlt(localContext, 3); { - this.state = 3666; + this.state = 3685; this.distributeByClause(); - this.state = 3668; + this.state = 3687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 3667; + this.state = 3686; this.sortByClause(); } } @@ -18125,14 +18197,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SORT: this.enterOuterAlt(localContext, 4); { - this.state = 3670; + this.state = 3689; this.sortByClause(); } break; case HiveSqlParser.KW_CLUSTER: this.enterOuterAlt(localContext, 5); { - this.state = 3671; + this.state = 3690; this.clusterByClause(); } break; @@ -18156,29 +18228,29 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTableFunctionSource(): PartitionTableFunctionSourceContext { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); - this.enterRule(localContext, 492, HiveSqlParser.RULE_partitionTableFunctionSource); + this.enterRule(localContext, 494, HiveSqlParser.RULE_partitionTableFunctionSource); try { - this.state = 3677; + this.state = 3696; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 482, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3674; + this.state = 3693; this.subQuerySource(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3675; + this.state = 3694; this.tableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3676; + this.state = 3695; this.partitionedTableFunction(); } break; @@ -18200,18 +18272,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionedTableFunction(): PartitionedTableFunctionContext { let localContext = new PartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 494, HiveSqlParser.RULE_partitionedTableFunction); + this.enterRule(localContext, 496, HiveSqlParser.RULE_partitionedTableFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 3679; + this.state = 3698; this.atomPartitionedTableFunction(); - this.state = 3681; + this.state = 3700; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 483, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: { - this.state = 3680; + this.state = 3699; localContext._alias = this.id_(); } break; @@ -18234,68 +18306,68 @@ export class HiveSqlParser extends SQLParserBase { } public atomPartitionedTableFunction(): AtomPartitionedTableFunctionContext { let localContext = new AtomPartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 496, HiveSqlParser.RULE_atomPartitionedTableFunction); + this.enterRule(localContext, 498, HiveSqlParser.RULE_atomPartitionedTableFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3683; + this.state = 3702; localContext._n = this.id_(); - this.state = 3684; + this.state = 3703; this.match(HiveSqlParser.LPAREN); - this.state = 3685; + this.state = 3704; this.match(HiveSqlParser.KW_ON); - this.state = 3686; + this.state = 3705; localContext._ptfsrc = this.partitionTableFunctionSource(); - this.state = 3688; + this.state = 3707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3687; + this.state = 3706; localContext._spec = this.partitioningSpec(); } } - this.state = 3705; + this.state = 3724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 432) { { - this.state = 3690; + this.state = 3709; this.match(HiveSqlParser.Identifier); - this.state = 3691; + this.state = 3710; this.match(HiveSqlParser.LPAREN); - this.state = 3692; + this.state = 3711; this.expression(); - this.state = 3693; + this.state = 3712; this.match(HiveSqlParser.RPAREN); - this.state = 3702; + this.state = 3721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3694; + this.state = 3713; this.match(HiveSqlParser.COMMA); - this.state = 3695; + this.state = 3714; this.match(HiveSqlParser.Identifier); - this.state = 3696; + this.state = 3715; this.match(HiveSqlParser.LPAREN); - this.state = 3697; + this.state = 3716; this.expression(); - this.state = 3698; + this.state = 3717; this.match(HiveSqlParser.RPAREN); } } - this.state = 3704; + this.state = 3723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3707; + this.state = 3726; this.match(HiveSqlParser.RPAREN); } } @@ -18315,14 +18387,28 @@ export class HiveSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 498, HiveSqlParser.RULE_whereClause); + this.enterRule(localContext, 500, HiveSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3709; + this.state = 3728; this.match(HiveSqlParser.KW_WHERE); - this.state = 3710; - this.expression(); + this.state = 3731; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { + case 1: + { + this.state = 3729; + this.expression(); + } + break; + case 2: + { + this.state = 3730; + this.columnNamePathAllowEmpty(); + } + break; + } } } catch (re) { @@ -18341,33 +18427,33 @@ export class HiveSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 500, HiveSqlParser.RULE_valuesClause); + this.enterRule(localContext, 502, HiveSqlParser.RULE_valuesClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3712; + this.state = 3733; this.match(HiveSqlParser.KW_VALUES); - this.state = 3731; + this.state = 3752; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: { - this.state = 3713; + this.state = 3734; this.expressionsInParenthesis(); - this.state = 3718; + this.state = 3739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3714; + this.state = 3735; this.match(HiveSqlParser.COMMA); - this.state = 3715; + this.state = 3736; this.expressionsInParenthesis(); } } - this.state = 3720; + this.state = 3741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18375,25 +18461,25 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 3721; + this.state = 3742; this.match(HiveSqlParser.LPAREN); - this.state = 3722; + this.state = 3743; this.firstExpressionsWithAlias(); - this.state = 3723; + this.state = 3744; this.match(HiveSqlParser.RPAREN); - this.state = 3728; + this.state = 3749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3724; + this.state = 3745; this.match(HiveSqlParser.COMMA); - this.state = 3725; + this.state = 3746; this.expressionsInParenthesis(); } } - this.state = 3730; + this.state = 3751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18418,17 +18504,17 @@ export class HiveSqlParser extends SQLParserBase { } public atomValuesClause(): AtomValuesClauseContext { let localContext = new AtomValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 502, HiveSqlParser.RULE_atomValuesClause); + this.enterRule(localContext, 504, HiveSqlParser.RULE_atomValuesClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3733; + this.state = 3754; this.match(HiveSqlParser.KW_TABLE); - this.state = 3734; + this.state = 3755; this.match(HiveSqlParser.LPAREN); - this.state = 3735; + this.state = 3756; this.valuesClause(); - this.state = 3736; + this.state = 3757; this.match(HiveSqlParser.RPAREN); } } @@ -18448,54 +18534,54 @@ export class HiveSqlParser extends SQLParserBase { } public virtualTableSource(): VirtualTableSourceContext { let localContext = new VirtualTableSourceContext(this.context, this.state); - this.enterRule(localContext, 504, HiveSqlParser.RULE_virtualTableSource); + this.enterRule(localContext, 506, HiveSqlParser.RULE_virtualTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3738; + this.state = 3759; this.atomValuesClause(); - this.state = 3740; + this.state = 3761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3739; + this.state = 3760; this.match(HiveSqlParser.KW_AS); } } - this.state = 3742; + this.state = 3763; localContext._alias = this.tableAlias(); - this.state = 3752; + this.state = 3773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 3743; + this.state = 3764; this.match(HiveSqlParser.LPAREN); - this.state = 3744; + this.state = 3765; this.id_(); - this.state = 3749; + this.state = 3770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3745; + this.state = 3766; this.match(HiveSqlParser.COMMA); - this.state = 3746; + this.state = 3767; this.id_(); } } - this.state = 3751; + this.state = 3772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3754; + this.state = 3775; this.match(HiveSqlParser.RPAREN); } } @@ -18515,38 +18601,38 @@ export class HiveSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 506, HiveSqlParser.RULE_selectClause); + this.enterRule(localContext, 508, HiveSqlParser.RULE_selectClause); let _la: number; try { - this.state = 3769; + this.state = 3790; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 3756; + this.state = 3777; this.match(HiveSqlParser.KW_SELECT); - this.state = 3758; + this.state = 3779; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: { - this.state = 3757; + this.state = 3778; this.match(HiveSqlParser.QUERY_HINT); } break; } - this.state = 3766; + this.state = 3787; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: { - this.state = 3761; + this.state = 3782; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: { - this.state = 3760; + this.state = 3781; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -18558,15 +18644,15 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 3763; + this.state = 3784; this.selectList(); } break; case 2: { - this.state = 3764; + this.state = 3785; this.match(HiveSqlParser.KW_TRANSFORM); - this.state = 3765; + this.state = 3786; this.selectTrfmClause(); } break; @@ -18577,7 +18663,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 2); { - this.state = 3768; + this.state = 3789; this.trfmClause(); } break; @@ -18601,68 +18687,68 @@ export class HiveSqlParser extends SQLParserBase { } public selectTrfmClause(): SelectTrfmClauseContext { let localContext = new SelectTrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 508, HiveSqlParser.RULE_selectTrfmClause); + this.enterRule(localContext, 510, HiveSqlParser.RULE_selectTrfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3771; + this.state = 3792; this.match(HiveSqlParser.LPAREN); - this.state = 3772; + this.state = 3793; this.selectExpressionList(); - this.state = 3773; + this.state = 3794; this.match(HiveSqlParser.RPAREN); - this.state = 3774; + this.state = 3795; this.rowFormat(); - this.state = 3775; + this.state = 3796; this.recordWriter(); - this.state = 3776; + this.state = 3797; this.match(HiveSqlParser.KW_USING); - this.state = 3777; + this.state = 3798; this.match(HiveSqlParser.StringLiteral); - this.state = 3790; + this.state = 3811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3778; + this.state = 3799; this.match(HiveSqlParser.KW_AS); - this.state = 3788; + this.state = 3809; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: { - this.state = 3779; + this.state = 3800; this.match(HiveSqlParser.LPAREN); - this.state = 3782; + this.state = 3803; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3780; + this.state = 3801; this.aliasList(); } break; case 2: { - this.state = 3781; + this.state = 3802; this.columnNameTypeList(); } break; } - this.state = 3784; + this.state = 3805; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3786; + this.state = 3807; this.aliasList(); } break; case 3: { - this.state = 3787; + this.state = 3808; this.columnNameTypeList(); } break; @@ -18670,9 +18756,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3792; + this.state = 3813; this.rowFormat(); - this.state = 3793; + this.state = 3814; this.recordReader(); } } @@ -18692,30 +18778,30 @@ export class HiveSqlParser extends SQLParserBase { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 510, HiveSqlParser.RULE_selectList); + this.enterRule(localContext, 512, HiveSqlParser.RULE_selectList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3795; + this.state = 3816; this.selectItem(); - this.state = 3800; + this.state = 3821; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 500, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 504, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3796; + this.state = 3817; this.match(HiveSqlParser.COMMA); - this.state = 3797; + this.state = 3818; this.selectItem(); } } } - this.state = 3802; + this.state = 3823; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 500, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 504, this.context); } } } @@ -18735,16 +18821,16 @@ export class HiveSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 512, HiveSqlParser.RULE_selectItem); + this.enterRule(localContext, 514, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 3826; + this.state = 3847; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3803; + this.state = 3824; this.tableAllColumns(); } break; @@ -18752,66 +18838,66 @@ export class HiveSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 3806; + this.state = 3827; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { case 1: { - this.state = 3804; + this.state = 3825; this.selectLiteralColumnName(); } break; case 2: { - this.state = 3805; + this.state = 3826; this.selectExpressionColumnName(); } break; } - this.state = 3824; + this.state = 3845; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: { - this.state = 3809; + this.state = 3830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3808; + this.state = 3829; this.match(HiveSqlParser.KW_AS); } } - this.state = 3811; + this.state = 3832; localContext._alias = this.id_(); } break; case 2: { - this.state = 3812; + this.state = 3833; this.match(HiveSqlParser.KW_AS); - this.state = 3813; + this.state = 3834; this.match(HiveSqlParser.LPAREN); - this.state = 3814; + this.state = 3835; localContext._alias = this.id_(); - this.state = 3819; + this.state = 3840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3815; + this.state = 3836; this.match(HiveSqlParser.COMMA); - this.state = 3816; + this.state = 3837; localContext._alias = this.id_(); } } - this.state = 3821; + this.state = 3842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3822; + this.state = 3843; this.match(HiveSqlParser.RPAREN); } break; @@ -18837,11 +18923,11 @@ export class HiveSqlParser extends SQLParserBase { } public selectLiteralColumnName(): SelectLiteralColumnNameContext { let localContext = new SelectLiteralColumnNameContext(this.context, this.state); - this.enterRule(localContext, 514, HiveSqlParser.RULE_selectLiteralColumnName); + this.enterRule(localContext, 516, HiveSqlParser.RULE_selectLiteralColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3828; + this.state = 3849; this.columnName(); } } @@ -18861,11 +18947,11 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionColumnName(): SelectExpressionColumnNameContext { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); - this.enterRule(localContext, 516, HiveSqlParser.RULE_selectExpressionColumnName); + this.enterRule(localContext, 518, HiveSqlParser.RULE_selectExpressionColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3830; + this.state = 3851; this.expression(); } } @@ -18885,12 +18971,12 @@ export class HiveSqlParser extends SQLParserBase { } public trfmClause(): TrfmClauseContext { let localContext = new TrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 518, HiveSqlParser.RULE_trfmClause); + this.enterRule(localContext, 520, HiveSqlParser.RULE_trfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3832; + this.state = 3853; _la = this.tokenStream.LA(1); if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -18899,59 +18985,59 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3833; + this.state = 3854; this.selectExpressionList(); - this.state = 3834; + this.state = 3855; this.rowFormat(); - this.state = 3835; + this.state = 3856; this.recordWriter(); - this.state = 3836; + this.state = 3857; this.match(HiveSqlParser.KW_USING); - this.state = 3837; + this.state = 3858; this.match(HiveSqlParser.StringLiteral); - this.state = 3850; + this.state = 3871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3838; + this.state = 3859; this.match(HiveSqlParser.KW_AS); - this.state = 3848; + this.state = 3869; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { case 1: { - this.state = 3839; + this.state = 3860; this.match(HiveSqlParser.LPAREN); - this.state = 3842; + this.state = 3863; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 3840; + this.state = 3861; this.aliasList(); } break; case 2: { - this.state = 3841; + this.state = 3862; this.columnNameTypeList(); } break; } - this.state = 3844; + this.state = 3865; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3846; + this.state = 3867; this.aliasList(); } break; case 3: { - this.state = 3847; + this.state = 3868; this.columnNameTypeList(); } break; @@ -18959,9 +19045,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3852; + this.state = 3873; this.rowFormat(); - this.state = 3853; + this.state = 3874; this.recordReader(); } } @@ -18981,22 +19067,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpression(): SelectExpressionContext { let localContext = new SelectExpressionContext(this.context, this.state); - this.enterRule(localContext, 520, HiveSqlParser.RULE_selectExpression); + this.enterRule(localContext, 522, HiveSqlParser.RULE_selectExpression); try { - this.state = 3857; + this.state = 3878; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3855; + this.state = 3876; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3856; + this.state = 3877; this.expression(); } break; @@ -19018,26 +19104,26 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionList(): SelectExpressionListContext { let localContext = new SelectExpressionListContext(this.context, this.state); - this.enterRule(localContext, 522, HiveSqlParser.RULE_selectExpressionList); + this.enterRule(localContext, 524, HiveSqlParser.RULE_selectExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3859; + this.state = 3880; this.selectExpression(); - this.state = 3864; + this.state = 3885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3860; + this.state = 3881; this.match(HiveSqlParser.COMMA); - this.state = 3861; + this.state = 3882; this.selectExpression(); } } - this.state = 3866; + this.state = 3887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19059,36 +19145,36 @@ export class HiveSqlParser extends SQLParserBase { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 524, HiveSqlParser.RULE_window_clause); + this.enterRule(localContext, 526, HiveSqlParser.RULE_window_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3867; + this.state = 3888; this.match(HiveSqlParser.KW_WINDOW); - this.state = 3868; + this.state = 3889; this.id_(); - this.state = 3869; + this.state = 3890; this.match(HiveSqlParser.KW_AS); - this.state = 3870; + this.state = 3891; this.window_specification(); - this.state = 3878; + this.state = 3899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3871; + this.state = 3892; this.match(HiveSqlParser.COMMA); - this.state = 3872; + this.state = 3893; this.id_(); - this.state = 3873; + this.state = 3894; this.match(HiveSqlParser.KW_AS); - this.state = 3874; + this.state = 3895; this.window_specification(); } } - this.state = 3880; + this.state = 3901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19110,10 +19196,10 @@ export class HiveSqlParser extends SQLParserBase { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 526, HiveSqlParser.RULE_window_specification); + this.enterRule(localContext, 528, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 3893; + this.state = 3914; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -19358,46 +19444,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 3881; + this.state = 3902; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 3882; + this.state = 3903; this.match(HiveSqlParser.LPAREN); - this.state = 3884; + this.state = 3905; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: { - this.state = 3883; + this.state = 3904; this.id_(); } break; } - this.state = 3887; + this.state = 3908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3886; + this.state = 3907; this.partitioningSpec(); } } - this.state = 3890; + this.state = 3911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260 || _la === 292) { { - this.state = 3889; + this.state = 3910; this.window_frame(); } } - this.state = 3892; + this.state = 3913; this.match(HiveSqlParser.RPAREN); } break; @@ -19421,12 +19507,12 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame(): Window_frameContext { let localContext = new Window_frameContext(this.context, this.state); - this.enterRule(localContext, 528, HiveSqlParser.RULE_window_frame); + this.enterRule(localContext, 530, HiveSqlParser.RULE_window_frame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3895; + this.state = 3916; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -19435,22 +19521,22 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3909; + this.state = 3930; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 3902; + this.state = 3923; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: { { - this.state = 3896; + this.state = 3917; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 3897; + this.state = 3918; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19458,9 +19544,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: { { - this.state = 3898; + this.state = 3919; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3899; + this.state = 3920; this.match(HiveSqlParser.KW_ROW); } } @@ -19468,9 +19554,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Number: { { - this.state = 3900; + this.state = 3921; this.match(HiveSqlParser.Number); - this.state = 3901; + this.state = 3922; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19482,13 +19568,13 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_BETWEEN: { - this.state = 3904; + this.state = 3925; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 3905; + this.state = 3926; this.window_frame_boundary(); - this.state = 3906; + this.state = 3927; this.match(HiveSqlParser.KW_AND); - this.state = 3907; + this.state = 3928; this.window_frame_boundary(); } break; @@ -19513,17 +19599,17 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame_boundary(): Window_frame_boundaryContext { let localContext = new Window_frame_boundaryContext(this.context, this.state); - this.enterRule(localContext, 530, HiveSqlParser.RULE_window_frame_boundary); + this.enterRule(localContext, 532, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 3915; + this.state = 3936; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 3911; + this.state = 3932; _la = this.tokenStream.LA(1); if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -19532,7 +19618,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3912; + this.state = 3933; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -19546,9 +19632,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 3913; + this.state = 3934; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3914; + this.state = 3935; this.match(HiveSqlParser.KW_ROW); } break; @@ -19572,41 +19658,41 @@ export class HiveSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 532, HiveSqlParser.RULE_groupByClause); + this.enterRule(localContext, 534, HiveSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3917; + this.state = 3938; this.match(HiveSqlParser.KW_GROUP); - this.state = 3918; + this.state = 3939; this.match(HiveSqlParser.KW_BY); - this.state = 3924; + this.state = 3945; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 519, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 523, this.context) ) { case 1: { - this.state = 3919; + this.state = 3940; this.columnName(); } break; case 2: { - this.state = 3920; + this.state = 3941; this.rollupStandard(); } break; case 3: { - this.state = 3921; + this.state = 3942; this.rollupOldSyntax(); } break; case 4: { { - this.state = 3922; + this.state = 3943; this.match(HiveSqlParser.LPAREN); - this.state = 3923; + this.state = 3944; this.match(HiveSqlParser.RPAREN); } } @@ -19630,50 +19716,50 @@ export class HiveSqlParser extends SQLParserBase { } public rollupStandard(): RollupStandardContext { let localContext = new RollupStandardContext(this.context, this.state); - this.enterRule(localContext, 534, HiveSqlParser.RULE_rollupStandard); + this.enterRule(localContext, 536, HiveSqlParser.RULE_rollupStandard); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3928; + this.state = 3949; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 3926; + this.state = 3947; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 3927; + this.state = 3948; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3930; + this.state = 3951; this.match(HiveSqlParser.LPAREN); - this.state = 3931; + this.state = 3952; this.expression(); - this.state = 3936; + this.state = 3957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3932; + this.state = 3953; this.match(HiveSqlParser.COMMA); - this.state = 3933; + this.state = 3954; this.expression(); } } - this.state = 3938; + this.state = 3959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3939; + this.state = 3960; this.match(HiveSqlParser.RPAREN); } } @@ -19693,63 +19779,63 @@ export class HiveSqlParser extends SQLParserBase { } public rollupOldSyntax(): RollupOldSyntaxContext { let localContext = new RollupOldSyntaxContext(this.context, this.state); - this.enterRule(localContext, 536, HiveSqlParser.RULE_rollupOldSyntax); + this.enterRule(localContext, 538, HiveSqlParser.RULE_rollupOldSyntax); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3941; + this.state = 3962; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 3946; + this.state = 3967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { case 1: { - this.state = 3942; + this.state = 3963; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 3943; + this.state = 3964; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 3944; + this.state = 3965; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 3945; + this.state = 3966; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 3961; + this.state = 3982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 3948; + this.state = 3969; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 3949; + this.state = 3970; this.match(HiveSqlParser.KW_SETS); - this.state = 3950; + this.state = 3971; this.match(HiveSqlParser.LPAREN); - this.state = 3951; + this.state = 3972; this.groupingSetExpression(); - this.state = 3956; + this.state = 3977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3952; + this.state = 3973; this.match(HiveSqlParser.COMMA); - this.state = 3953; + this.state = 3974; this.groupingSetExpression(); } } - this.state = 3958; + this.state = 3979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3959; + this.state = 3980; this.match(HiveSqlParser.RPAREN); } } @@ -19772,51 +19858,51 @@ export class HiveSqlParser extends SQLParserBase { } public groupingSetExpression(): GroupingSetExpressionContext { let localContext = new GroupingSetExpressionContext(this.context, this.state); - this.enterRule(localContext, 538, HiveSqlParser.RULE_groupingSetExpression); + this.enterRule(localContext, 540, HiveSqlParser.RULE_groupingSetExpression); let _la: number; try { - this.state = 3976; + this.state = 3997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3963; + this.state = 3984; this.match(HiveSqlParser.LPAREN); - this.state = 3965; + this.state = 3986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 3964; + this.state = 3985; this.expression(); } } - this.state = 3971; + this.state = 3992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3967; + this.state = 3988; this.match(HiveSqlParser.COMMA); - this.state = 3968; + this.state = 3989; this.expression(); } } - this.state = 3973; + this.state = 3994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3974; + this.state = 3995; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3975; + this.state = 3996; this.expression(); } break; @@ -19838,14 +19924,28 @@ export class HiveSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 540, HiveSqlParser.RULE_havingClause); + this.enterRule(localContext, 542, HiveSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3978; + this.state = 3999; this.match(HiveSqlParser.KW_HAVING); - this.state = 3979; - this.expression(); + this.state = 4002; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { + case 1: + { + this.state = 4000; + this.expression(); + } + break; + case 2: + { + this.state = 4001; + this.columnNamePathAllowEmpty(); + } + break; + } } } catch (re) { @@ -19864,13 +19964,13 @@ export class HiveSqlParser extends SQLParserBase { } public qualifyClause(): QualifyClauseContext { let localContext = new QualifyClauseContext(this.context, this.state); - this.enterRule(localContext, 542, HiveSqlParser.RULE_qualifyClause); + this.enterRule(localContext, 544, HiveSqlParser.RULE_qualifyClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3981; + this.state = 4004; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 3982; + this.state = 4005; this.expression(); } } @@ -19890,22 +19990,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 544, HiveSqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 546, HiveSqlParser.RULE_expressionOrDefault); try { - this.state = 3986; + this.state = 4009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3984; + this.state = 4007; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3985; + this.state = 4008; this.expression(); } break; @@ -19927,66 +20027,66 @@ export class HiveSqlParser extends SQLParserBase { } public firstExpressionsWithAlias(): FirstExpressionsWithAliasContext { let localContext = new FirstExpressionsWithAliasContext(this.context, this.state); - this.enterRule(localContext, 546, HiveSqlParser.RULE_firstExpressionsWithAlias); + this.enterRule(localContext, 548, HiveSqlParser.RULE_firstExpressionsWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3988; + this.state = 4011; localContext._first = this.expression(); - this.state = 3990; + this.state = 4013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3989; + this.state = 4012; this.match(HiveSqlParser.KW_AS); } } - this.state = 3993; + this.state = 4016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3992; + this.state = 4015; localContext._colAlias = this.id_(); } } - this.state = 4005; + this.state = 4028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3995; + this.state = 4018; this.match(HiveSqlParser.COMMA); - this.state = 3996; + this.state = 4019; this.expression(); - this.state = 3998; + this.state = 4021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3997; + this.state = 4020; this.match(HiveSqlParser.KW_AS); } } - this.state = 4001; + this.state = 4024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4000; + this.state = 4023; localContext._alias = this.id_(); } } } } - this.state = 4007; + this.state = 4030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20008,22 +20108,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 548, HiveSqlParser.RULE_expressions); + this.enterRule(localContext, 550, HiveSqlParser.RULE_expressions); try { - this.state = 4010; + this.state = 4033; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 539, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4008; + this.state = 4031; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4009; + this.state = 4032; this.expressionsNotInParenthesis(); } break; @@ -20045,15 +20145,15 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsInParenthesis(): ExpressionsInParenthesisContext { let localContext = new ExpressionsInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 550, HiveSqlParser.RULE_expressionsInParenthesis); + this.enterRule(localContext, 552, HiveSqlParser.RULE_expressionsInParenthesis); try { this.enterOuterAlt(localContext, 1); { - this.state = 4012; + this.state = 4035; this.match(HiveSqlParser.LPAREN); - this.state = 4013; + this.state = 4036; this.expressionsNotInParenthesis(); - this.state = 4014; + this.state = 4037; this.match(HiveSqlParser.RPAREN); } } @@ -20073,31 +20173,31 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsNotInParenthesis(): ExpressionsNotInParenthesisContext { let localContext = new ExpressionsNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 552, HiveSqlParser.RULE_expressionsNotInParenthesis); + this.enterRule(localContext, 554, HiveSqlParser.RULE_expressionsNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4039; localContext._first = this.expressionOrDefault(); - this.state = 4023; + this.state = 4046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 4019; + this.state = 4042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4017; + this.state = 4040; this.match(HiveSqlParser.COMMA); - this.state = 4018; + this.state = 4041; this.expressionOrDefault(); } } - this.state = 4021; + this.state = 4044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -20122,30 +20222,30 @@ export class HiveSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 554, HiveSqlParser.RULE_orderByClause); + this.enterRule(localContext, 556, HiveSqlParser.RULE_orderByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4025; + this.state = 4048; this.match(HiveSqlParser.KW_ORDER); - this.state = 4026; + this.state = 4049; this.match(HiveSqlParser.KW_BY); - this.state = 4027; + this.state = 4050; this.columnRefOrder(); - this.state = 4032; + this.state = 4055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4028; + this.state = 4051; this.match(HiveSqlParser.COMMA); - this.state = 4029; + this.state = 4052; this.columnRefOrder(); } } - this.state = 4034; + this.state = 4057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20167,15 +20267,15 @@ export class HiveSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 556, HiveSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 558, HiveSqlParser.RULE_partitionByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4035; + this.state = 4058; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4036; + this.state = 4059; this.match(HiveSqlParser.KW_BY); - this.state = 4037; + this.state = 4060; this.expressions(); } } @@ -20195,15 +20295,15 @@ export class HiveSqlParser extends SQLParserBase { } public clusterByClause(): ClusterByClauseContext { let localContext = new ClusterByClauseContext(this.context, this.state); - this.enterRule(localContext, 558, HiveSqlParser.RULE_clusterByClause); + this.enterRule(localContext, 560, HiveSqlParser.RULE_clusterByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4039; + this.state = 4062; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4040; + this.state = 4063; this.match(HiveSqlParser.KW_BY); - this.state = 4041; + this.state = 4064; this.expressions(); } } @@ -20223,15 +20323,15 @@ export class HiveSqlParser extends SQLParserBase { } public distributeByClause(): DistributeByClauseContext { let localContext = new DistributeByClauseContext(this.context, this.state); - this.enterRule(localContext, 560, HiveSqlParser.RULE_distributeByClause); + this.enterRule(localContext, 562, HiveSqlParser.RULE_distributeByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4043; + this.state = 4066; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4044; + this.state = 4067; this.match(HiveSqlParser.KW_BY); - this.state = 4045; + this.state = 4068; this.expressions(); } } @@ -20251,42 +20351,42 @@ export class HiveSqlParser extends SQLParserBase { } public sortByClause(): SortByClauseContext { let localContext = new SortByClauseContext(this.context, this.state); - this.enterRule(localContext, 562, HiveSqlParser.RULE_sortByClause); + this.enterRule(localContext, 564, HiveSqlParser.RULE_sortByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4047; + this.state = 4070; this.match(HiveSqlParser.KW_SORT); - this.state = 4048; + this.state = 4071; this.match(HiveSqlParser.KW_BY); - this.state = 4068; + this.state = 4091; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { { - this.state = 4049; + this.state = 4072; this.match(HiveSqlParser.LPAREN); - this.state = 4050; + this.state = 4073; this.columnRefOrder(); - this.state = 4055; + this.state = 4078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4051; + this.state = 4074; this.match(HiveSqlParser.COMMA); - this.state = 4052; + this.state = 4075; this.columnRefOrder(); } } - this.state = 4057; + this.state = 4080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4058; + this.state = 4081; this.match(HiveSqlParser.RPAREN); } } @@ -20294,21 +20394,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: { { - this.state = 4060; + this.state = 4083; this.columnRefOrder(); - this.state = 4065; + this.state = 4088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4061; + this.state = 4084; this.match(HiveSqlParser.COMMA); - this.state = 4062; + this.state = 4085; this.columnRefOrder(); } } - this.state = 4067; + this.state = 4090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20334,37 +20434,37 @@ export class HiveSqlParser extends SQLParserBase { } public function_(): Function_Context { let localContext = new Function_Context(this.context, this.state); - this.enterRule(localContext, 564, HiveSqlParser.RULE_function_); + this.enterRule(localContext, 566, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4123; + this.state = 4146; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4070; + this.state = 4093; this.match(HiveSqlParser.KW_TRIM); - this.state = 4071; + this.state = 4094; this.match(HiveSqlParser.LPAREN); - this.state = 4075; + this.state = 4098; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4072; + this.state = 4095; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4073; + this.state = 4096; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4074; + this.state = 4097; this.match(HiveSqlParser.KW_BOTH); } break; @@ -20674,48 +20774,48 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4078; + this.state = 4101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4077; + this.state = 4100; localContext._trim_characters = this.selectExpression(); } } - this.state = 4080; + this.state = 4103; this.match(HiveSqlParser.KW_FROM); - this.state = 4081; + this.state = 4104; localContext._str = this.selectExpression(); - this.state = 4082; + this.state = 4105; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4084; + this.state = 4107; this.functionNameForInvoke(); - this.state = 4085; + this.state = 4108; this.match(HiveSqlParser.LPAREN); - this.state = 4100; + this.state = 4123; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: { - this.state = 4086; + this.state = 4109; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4088; + this.state = 4111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4087; + this.state = 4110; localContext._dist = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { @@ -20728,26 +20828,26 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4098; + this.state = 4121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: { - this.state = 4090; + this.state = 4113; this.selectExpression(); - this.state = 4095; + this.state = 4118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4091; + this.state = 4114; this.match(HiveSqlParser.COMMA); - this.state = 4092; + this.state = 4115; this.selectExpression(); } } - this.state = 4097; + this.state = 4120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20757,60 +20857,60 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4121; + this.state = 4144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 4102; + this.state = 4125; this.match(HiveSqlParser.RPAREN); - this.state = 4103; + this.state = 4126; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4104; + this.state = 4127; this.match(HiveSqlParser.KW_GROUP); - this.state = 4105; + this.state = 4128; this.match(HiveSqlParser.LPAREN); - this.state = 4106; + this.state = 4129; localContext._ordBy = this.orderByClause(); - this.state = 4107; + this.state = 4130; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4109; + this.state = 4132; this.match(HiveSqlParser.RPAREN); - this.state = 4111; + this.state = 4134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 281) { { - this.state = 4110; + this.state = 4133; localContext._nt = this.null_treatment(); } } - this.state = 4113; + this.state = 4136; this.match(HiveSqlParser.KW_OVER); - this.state = 4114; + this.state = 4137; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4115; + this.state = 4138; localContext._nt = this.null_treatment(); - this.state = 4116; + this.state = 4139; this.match(HiveSqlParser.RPAREN); - this.state = 4117; + this.state = 4140; this.match(HiveSqlParser.KW_OVER); - this.state = 4118; + this.state = 4141; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4120; + this.state = 4143; this.match(HiveSqlParser.RPAREN); } break; @@ -20835,12 +20935,12 @@ export class HiveSqlParser extends SQLParserBase { } public null_treatment(): Null_treatmentContext { let localContext = new Null_treatmentContext(this.context, this.state); - this.enterRule(localContext, 566, HiveSqlParser.RULE_null_treatment); + this.enterRule(localContext, 568, HiveSqlParser.RULE_null_treatment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4125; + this.state = 4148; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -20849,7 +20949,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4126; + this.state = 4149; this.match(HiveSqlParser.KW_NULLS); } } @@ -20869,11 +20969,11 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 568, HiveSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 570, HiveSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4128; + this.state = 4151; this.functionIdentifier(); } } @@ -20893,9 +20993,9 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForDDL(): FunctionNameForDDLContext { let localContext = new FunctionNameForDDLContext(this.context, this.state); - this.enterRule(localContext, 570, HiveSqlParser.RULE_functionNameForDDL); + this.enterRule(localContext, 572, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4132; + this.state = 4155; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -21140,14 +21240,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4130; + this.state = 4153; this.functionIdentifier(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4131; + this.state = 4154; this.match(HiveSqlParser.StringLiteral); } break; @@ -21171,29 +21271,29 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForInvoke(): FunctionNameForInvokeContext { let localContext = new FunctionNameForInvokeContext(this.context, this.state); - this.enterRule(localContext, 572, HiveSqlParser.RULE_functionNameForInvoke); + this.enterRule(localContext, 574, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4137; + this.state = 4160; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4134; + this.state = 4157; this.functionIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4135; + this.state = 4158; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4136; + this.state = 4159; this.sysFuncNames(); } break; @@ -21215,34 +21315,34 @@ export class HiveSqlParser extends SQLParserBase { } public castExpression(): CastExpressionContext { let localContext = new CastExpressionContext(this.context, this.state); - this.enterRule(localContext, 574, HiveSqlParser.RULE_castExpression); + this.enterRule(localContext, 576, HiveSqlParser.RULE_castExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4139; + this.state = 4162; this.match(HiveSqlParser.KW_CAST); - this.state = 4140; + this.state = 4163; this.match(HiveSqlParser.LPAREN); - this.state = 4141; + this.state = 4164; this.expression(); - this.state = 4142; + this.state = 4165; this.match(HiveSqlParser.KW_AS); - this.state = 4143; + this.state = 4166; localContext._toType = this.primitiveType(); - this.state = 4146; + this.state = 4169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4144; + this.state = 4167; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4145; + this.state = 4168; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4148; + this.state = 4171; this.match(HiveSqlParser.RPAREN); } } @@ -21262,48 +21362,48 @@ export class HiveSqlParser extends SQLParserBase { } public caseExpression(): CaseExpressionContext { let localContext = new CaseExpressionContext(this.context, this.state); - this.enterRule(localContext, 576, HiveSqlParser.RULE_caseExpression); + this.enterRule(localContext, 578, HiveSqlParser.RULE_caseExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4150; + this.state = 4173; this.match(HiveSqlParser.KW_CASE); - this.state = 4151; + this.state = 4174; this.expression(); - this.state = 4157; + this.state = 4180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4152; + this.state = 4175; this.match(HiveSqlParser.KW_WHEN); - this.state = 4153; + this.state = 4176; this.expression(); - this.state = 4154; + this.state = 4177; this.match(HiveSqlParser.KW_THEN); - this.state = 4155; + this.state = 4178; this.expression(); } } - this.state = 4159; + this.state = 4182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4163; + this.state = 4186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4161; + this.state = 4184; this.match(HiveSqlParser.KW_ELSE); - this.state = 4162; + this.state = 4185; this.expression(); } } - this.state = 4165; + this.state = 4188; this.match(HiveSqlParser.KW_END); } } @@ -21323,46 +21423,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenExpression(): WhenExpressionContext { let localContext = new WhenExpressionContext(this.context, this.state); - this.enterRule(localContext, 578, HiveSqlParser.RULE_whenExpression); + this.enterRule(localContext, 580, HiveSqlParser.RULE_whenExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4167; + this.state = 4190; this.match(HiveSqlParser.KW_CASE); - this.state = 4173; + this.state = 4196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4168; + this.state = 4191; this.match(HiveSqlParser.KW_WHEN); - this.state = 4169; + this.state = 4192; this.expression(); - this.state = 4170; + this.state = 4193; this.match(HiveSqlParser.KW_THEN); - this.state = 4171; + this.state = 4194; this.expression(); } } - this.state = 4175; + this.state = 4198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4179; + this.state = 4202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4177; + this.state = 4200; this.match(HiveSqlParser.KW_ELSE); - this.state = 4178; + this.state = 4201; this.expression(); } } - this.state = 4181; + this.state = 4204; this.match(HiveSqlParser.KW_END); } } @@ -21382,30 +21482,30 @@ export class HiveSqlParser extends SQLParserBase { } public floorExpression(): FloorExpressionContext { let localContext = new FloorExpressionContext(this.context, this.state); - this.enterRule(localContext, 580, HiveSqlParser.RULE_floorExpression); + this.enterRule(localContext, 582, HiveSqlParser.RULE_floorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4183; + this.state = 4206; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4184; + this.state = 4207; this.match(HiveSqlParser.LPAREN); - this.state = 4185; + this.state = 4208; this.expression(); - this.state = 4188; + this.state = 4211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 4186; + this.state = 4209; this.match(HiveSqlParser.KW_TO); - this.state = 4187; + this.state = 4210; localContext._floorUnit = this.timeQualifiers(); } } - this.state = 4190; + this.state = 4213; this.match(HiveSqlParser.RPAREN); } } @@ -21425,21 +21525,21 @@ export class HiveSqlParser extends SQLParserBase { } public extractExpression(): ExtractExpressionContext { let localContext = new ExtractExpressionContext(this.context, this.state); - this.enterRule(localContext, 582, HiveSqlParser.RULE_extractExpression); + this.enterRule(localContext, 584, HiveSqlParser.RULE_extractExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4192; + this.state = 4215; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4193; + this.state = 4216; this.match(HiveSqlParser.LPAREN); - this.state = 4194; + this.state = 4217; localContext._timeUnit = this.timeQualifiers(); - this.state = 4195; + this.state = 4218; this.match(HiveSqlParser.KW_FROM); - this.state = 4196; + this.state = 4219; this.expression(); - this.state = 4197; + this.state = 4220; this.match(HiveSqlParser.RPAREN); } } @@ -21459,23 +21559,23 @@ export class HiveSqlParser extends SQLParserBase { } public timeQualifiers(): TimeQualifiersContext { let localContext = new TimeQualifiersContext(this.context, this.state); - this.enterRule(localContext, 584, HiveSqlParser.RULE_timeQualifiers); + this.enterRule(localContext, 586, HiveSqlParser.RULE_timeQualifiers); try { - this.state = 4207; + this.state = 4230; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4199; + this.state = 4222; this.year(); } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4200; + this.state = 4223; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -21483,7 +21583,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4201; + this.state = 4224; this.month(); } break; @@ -21491,7 +21591,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4202; + this.state = 4225; this.week(); } break; @@ -21499,7 +21599,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4203; + this.state = 4226; this.day(); } break; @@ -21507,7 +21607,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4204; + this.state = 4227; this.hour(); } break; @@ -21515,7 +21615,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4205; + this.state = 4228; this.minute(); } break; @@ -21523,7 +21623,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4206; + this.state = 4229; this.second(); } break; @@ -21547,85 +21647,85 @@ export class HiveSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 586, HiveSqlParser.RULE_constant); + this.enterRule(localContext, 588, HiveSqlParser.RULE_constant); let _la: number; try { - this.state = 4237; + this.state = 4260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4209; + this.state = 4232; localContext._value = this.intervalValue(); - this.state = 4210; + this.state = 4233; localContext._qualifiers = this.intervalQualifiers(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4212; + this.state = 4235; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4213; + this.state = 4236; this.match(HiveSqlParser.KW_DATE); - this.state = 4214; + this.state = 4237; this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4215; + this.state = 4238; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4216; + this.state = 4239; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4217; + this.state = 4240; this.match(HiveSqlParser.StringLiteral); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4218; + this.state = 4241; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4219; + this.state = 4242; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4220; + this.state = 4243; this.match(HiveSqlParser.StringLiteral); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4221; + this.state = 4244; this.match(HiveSqlParser.StringLiteral); - this.state = 4225; + this.state = 4248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 426) { { { - this.state = 4222; + this.state = 4245; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4227; + this.state = 4250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21634,58 +21734,58 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4228; + this.state = 4251; this.match(HiveSqlParser.IntegralLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4229; + this.state = 4252; this.match(HiveSqlParser.NumberLiteral); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4230; + this.state = 4253; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4231; + this.state = 4254; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4232; + this.state = 4255; this.match(HiveSqlParser.KW_TRUE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4233; + this.state = 4256; this.match(HiveSqlParser.KW_FALSE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4234; + this.state = 4257; this.match(HiveSqlParser.KW_NULL); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4235; + this.state = 4258; localContext._p = this.match(HiveSqlParser.QUESTION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4236; + this.state = 4259; this.columnNamePath(); } break; @@ -21707,12 +21807,12 @@ export class HiveSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 588, HiveSqlParser.RULE_intervalValue); + this.enterRule(localContext, 590, HiveSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4239; + this.state = 4262; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -21739,53 +21839,53 @@ export class HiveSqlParser extends SQLParserBase { } public intervalExpression(): IntervalExpressionContext { let localContext = new IntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 590, HiveSqlParser.RULE_intervalExpression); + this.enterRule(localContext, 592, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4256; + this.state = 4279; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4241; + this.state = 4264; this.match(HiveSqlParser.LPAREN); - this.state = 4242; + this.state = 4265; localContext._value = this.intervalValue(); - this.state = 4243; + this.state = 4266; this.match(HiveSqlParser.RPAREN); - this.state = 4244; + this.state = 4267; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4246; + this.state = 4269; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4252; + this.state = 4275; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4247; + this.state = 4270; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4248; + this.state = 4271; this.match(HiveSqlParser.LPAREN); - this.state = 4249; + this.state = 4272; localContext._expr = this.expression(); - this.state = 4250; + this.state = 4273; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4254; + this.state = 4277; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -21809,72 +21909,72 @@ export class HiveSqlParser extends SQLParserBase { } public intervalQualifiers(): IntervalQualifiersContext { let localContext = new IntervalQualifiersContext(this.context, this.state); - this.enterRule(localContext, 592, HiveSqlParser.RULE_intervalQualifiers); + this.enterRule(localContext, 594, HiveSqlParser.RULE_intervalQualifiers); try { - this.state = 4272; + this.state = 4295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4258; + this.state = 4281; this.year(); - this.state = 4259; + this.state = 4282; this.match(HiveSqlParser.KW_TO); - this.state = 4260; + this.state = 4283; this.month(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4262; + this.state = 4285; this.day(); - this.state = 4263; + this.state = 4286; this.match(HiveSqlParser.KW_TO); - this.state = 4264; + this.state = 4287; this.second(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4266; + this.state = 4289; this.year(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4267; + this.state = 4290; this.month(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4268; + this.state = 4291; this.day(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4269; + this.state = 4292; this.hour(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4270; + this.state = 4293; this.minute(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4271; + this.state = 4294; this.second(); } break; @@ -21896,26 +21996,26 @@ export class HiveSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 594, HiveSqlParser.RULE_expression); + this.enterRule(localContext, 596, HiveSqlParser.RULE_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4274; + this.state = 4297; this.precedenceAndExpression(); - this.state = 4279; + this.state = 4302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 228) { { { - this.state = 4275; + this.state = 4298; this.match(HiveSqlParser.KW_OR); - this.state = 4276; + this.state = 4299; this.precedenceAndExpression(); } } - this.state = 4281; + this.state = 4304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21937,85 +22037,85 @@ export class HiveSqlParser extends SQLParserBase { } public atomExpression(): AtomExpressionContext { let localContext = new AtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 596, HiveSqlParser.RULE_atomExpression); + this.enterRule(localContext, 598, HiveSqlParser.RULE_atomExpression); try { - this.state = 4293; + this.state = 4316; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4282; + this.state = 4305; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4283; + this.state = 4306; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4284; + this.state = 4307; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4285; + this.state = 4308; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4286; + this.state = 4309; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4287; + this.state = 4310; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4288; + this.state = 4311; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4289; + this.state = 4312; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4290; + this.state = 4313; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4291; + this.state = 4314; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4292; + this.state = 4315; this.id_(); } break; @@ -22037,20 +22137,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnaryPrefixExpression(): PrecedenceUnaryPrefixExpressionContext { let localContext = new PrecedenceUnaryPrefixExpressionContext(this.context, this.state); - this.enterRule(localContext, 598, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); + this.enterRule(localContext, 600, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4298; + this.state = 4321; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4295; + this.state = 4318; _la = this.tokenStream.LA(1); if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); @@ -22062,35 +22162,35 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4300; + this.state = 4323; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); } - this.state = 4301; + this.state = 4324; this.atomExpression(); - this.state = 4310; + this.state = 4333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 401) { { - this.state = 4308; + this.state = 4331; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4302; + this.state = 4325; this.match(HiveSqlParser.LSQUARE); - this.state = 4303; + this.state = 4326; this.expression(); - this.state = 4304; + this.state = 4327; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4306; + this.state = 4329; this.match(HiveSqlParser.DOT); - this.state = 4307; + this.state = 4330; this.id_(); } break; @@ -22098,7 +22198,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4312; + this.state = 4335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22120,26 +22220,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseXorExpression(): PrecedenceBitwiseXorExpressionContext { let localContext = new PrecedenceBitwiseXorExpressionContext(this.context, this.state); - this.enterRule(localContext, 600, HiveSqlParser.RULE_precedenceBitwiseXorExpression); + this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceBitwiseXorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4313; + this.state = 4336; this.precedenceUnaryPrefixExpression(); - this.state = 4318; + this.state = 4341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 423) { { { - this.state = 4314; + this.state = 4337; this.match(HiveSqlParser.BITWISEXOR); - this.state = 4315; + this.state = 4338; this.precedenceUnaryPrefixExpression(); } } - this.state = 4320; + this.state = 4343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22161,20 +22261,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceStarExpression(): PrecedenceStarExpressionContext { let localContext = new PrecedenceStarExpressionContext(this.context, this.state); - this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceStarExpression); + this.enterRule(localContext, 604, HiveSqlParser.RULE_precedenceStarExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4321; + this.state = 4344; this.precedenceBitwiseXorExpression(); - this.state = 4326; + this.state = 4349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4322; + this.state = 4345; _la = this.tokenStream.LA(1); if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); @@ -22183,11 +22283,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4323; + this.state = 4346; this.precedenceBitwiseXorExpression(); } } - this.state = 4328; + this.state = 4351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22209,20 +22309,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpression(): PrecedencePlusExpressionContext { let localContext = new PrecedencePlusExpressionContext(this.context, this.state); - this.enterRule(localContext, 604, HiveSqlParser.RULE_precedencePlusExpression); + this.enterRule(localContext, 606, HiveSqlParser.RULE_precedencePlusExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4329; + this.state = 4352; this.precedenceStarExpression(); - this.state = 4334; + this.state = 4357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 413 || _la === 414) { { { - this.state = 4330; + this.state = 4353; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -22231,11 +22331,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4331; + this.state = 4354; this.precedenceStarExpression(); } } - this.state = 4336; + this.state = 4359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22257,26 +22357,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); - this.enterRule(localContext, 606, HiveSqlParser.RULE_precedenceConcatenateExpression); + this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceConcatenateExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4337; + this.state = 4360; this.precedencePlusExpression(); - this.state = 4342; + this.state = 4365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 422) { { { - this.state = 4338; + this.state = 4361; this.match(HiveSqlParser.CONCATENATE); - this.state = 4339; + this.state = 4362; localContext._plus = this.precedencePlusExpression(); } } - this.state = 4344; + this.state = 4367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22298,26 +22398,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); - this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceAmpersandExpression); + this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceAmpersandExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4345; + this.state = 4368; this.precedenceConcatenateExpression(); - this.state = 4350; + this.state = 4373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 419) { { { - this.state = 4346; + this.state = 4369; this.match(HiveSqlParser.AMPERSAND); - this.state = 4347; + this.state = 4370; this.precedenceConcatenateExpression(); } } - this.state = 4352; + this.state = 4375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22339,26 +22439,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceBitwiseOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4353; + this.state = 4376; this.precedenceAmpersandExpression(); - this.state = 4358; + this.state = 4381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 421) { { { - this.state = 4354; + this.state = 4377; this.match(HiveSqlParser.BITWISEOR); - this.state = 4355; + this.state = 4378; this.precedenceAmpersandExpression(); } } - this.state = 4360; + this.state = 4383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22380,12 +22480,12 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); - this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceSimilarOperator); + this.enterRule(localContext, 614, HiveSqlParser.RULE_precedenceSimilarOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4361; + this.state = 4384; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -22412,15 +22512,15 @@ export class HiveSqlParser extends SQLParserBase { } public subQueryExpression(): SubQueryExpressionContext { let localContext = new SubQueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 614, HiveSqlParser.RULE_subQueryExpression); + this.enterRule(localContext, 616, HiveSqlParser.RULE_subQueryExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4363; + this.state = 4386; this.match(HiveSqlParser.LPAREN); - this.state = 4364; + this.state = 4387; this.selectStatement(); - this.state = 4365; + this.state = 4388; this.match(HiveSqlParser.RPAREN); } } @@ -22440,9 +22540,9 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpression(): PrecedenceSimilarExpressionContext { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); - this.enterRule(localContext, 616, HiveSqlParser.RULE_precedenceSimilarExpression); + this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4373; + this.state = 4396; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -22747,14 +22847,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4367; + this.state = 4390; localContext._a = this.precedenceBitwiseOrExpression(); - this.state = 4369; + this.state = 4392; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4368; + this.state = 4391; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -22764,9 +22864,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4371; + this.state = 4394; this.match(HiveSqlParser.KW_EXISTS); - this.state = 4372; + this.state = 4395; this.subQueryExpression(); } break; @@ -22790,33 +22890,33 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceSimilarExpressionPart); try { - this.state = 4381; + this.state = 4404; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4375; + this.state = 4398; this.precedenceSimilarOperator(); - this.state = 4376; + this.state = 4399; localContext._equalExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4378; + this.state = 4401; this.precedenceSimilarExpressionAtom(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4379; + this.state = 4402; this.match(HiveSqlParser.KW_NOT); - this.state = 4380; + this.state = 4403; this.precedenceSimilarExpressionPartNot(); } break; @@ -22838,40 +22938,40 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); - this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); + this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { - this.state = 4397; + this.state = 4420; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4383; + this.state = 4406; this.match(HiveSqlParser.KW_IN); - this.state = 4384; + this.state = 4407; this.precedenceSimilarExpressionIn(); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 2); { - this.state = 4385; + this.state = 4408; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4386; + this.state = 4409; localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4387; + this.state = 4410; this.match(HiveSqlParser.KW_AND); - this.state = 4388; + this.state = 4411; localContext._max = this.precedenceBitwiseOrExpression(); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 4390; + this.state = 4413; this.match(HiveSqlParser.KW_LIKE); - this.state = 4391; + this.state = 4414; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -22880,7 +22980,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4392; + this.state = 4415; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22892,9 +22992,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 4); { - this.state = 4393; + this.state = 4416; this.subQuerySelectorOperator(); - this.state = 4394; + this.state = 4417; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13 || _la === 313)) { this.errorHandler.recoverInline(this); @@ -22903,7 +23003,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4395; + this.state = 4418; this.subQueryExpression(); } break; @@ -22927,22 +23027,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext { let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); - this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceSimilarExpressionIn); + this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceSimilarExpressionIn); try { - this.state = 4401; + this.state = 4424; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4399; + this.state = 4422; this.subQueryExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4400; + this.state = 4423; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22964,16 +23064,16 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext { let localContext = new PrecedenceSimilarExpressionPartNotContext(this.context, this.state); - this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); + this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); let _la: number; try { - this.state = 4406; + this.state = 4429; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4403; + this.state = 4426; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286)) { this.errorHandler.recoverInline(this); @@ -22982,14 +23082,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4404; + this.state = 4427; localContext._notExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4405; + this.state = 4428; this.precedenceSimilarExpressionAtom(); } break; @@ -23011,15 +23111,15 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceDistinctOperator(): PrecedenceDistinctOperatorContext { let localContext = new PrecedenceDistinctOperatorContext(this.context, this.state); - this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceDistinctOperator); + this.enterRule(localContext, 628, HiveSqlParser.RULE_precedenceDistinctOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 4408; + this.state = 4431; this.match(HiveSqlParser.KW_IS); - this.state = 4409; + this.state = 4432; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4410; + this.state = 4433; this.match(HiveSqlParser.KW_FROM); } } @@ -23039,42 +23139,42 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualOperator(): PrecedenceEqualOperatorContext { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); - this.enterRule(localContext, 628, HiveSqlParser.RULE_precedenceEqualOperator); + this.enterRule(localContext, 630, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 4419; + this.state = 4442; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 4412; + this.state = 4435; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 4413; + this.state = 4436; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 4414; + this.state = 4437; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 4415; + this.state = 4438; this.match(HiveSqlParser.KW_IS); - this.state = 4416; + this.state = 4439; this.match(HiveSqlParser.KW_NOT); - this.state = 4417; + this.state = 4440; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4418; + this.state = 4441; this.match(HiveSqlParser.KW_FROM); } break; @@ -23098,38 +23198,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualExpression(): PrecedenceEqualExpressionContext { let localContext = new PrecedenceEqualExpressionContext(this.context, this.state); - this.enterRule(localContext, 630, HiveSqlParser.RULE_precedenceEqualExpression); + this.enterRule(localContext, 632, HiveSqlParser.RULE_precedenceEqualExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4421; + this.state = 4444; this.precedenceSimilarExpression(); - this.state = 4430; + this.state = 4453; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 4428; + this.state = 4451; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { case 1: { - this.state = 4422; + this.state = 4445; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 4423; + this.state = 4446; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 4425; + this.state = 4448; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 4426; + this.state = 4449; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -23137,9 +23237,9 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4432; + this.state = 4455; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); } } } @@ -23159,46 +23259,46 @@ export class HiveSqlParser extends SQLParserBase { } public isCondition(): IsConditionContext { let localContext = new IsConditionContext(this.context, this.state); - this.enterRule(localContext, 632, HiveSqlParser.RULE_isCondition); + this.enterRule(localContext, 634, HiveSqlParser.RULE_isCondition); let _la: number; try { - this.state = 4439; + this.state = 4462; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4456; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 2); { - this.state = 4434; + this.state = 4457; this.match(HiveSqlParser.KW_TRUE); } break; case HiveSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 3); { - this.state = 4435; + this.state = 4458; this.match(HiveSqlParser.KW_FALSE); } break; case HiveSqlParser.KW_UNKNOWN: this.enterOuterAlt(localContext, 4); { - this.state = 4436; + this.state = 4459; this.match(HiveSqlParser.KW_UNKNOWN); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 5); { - this.state = 4437; + this.state = 4460; this.match(HiveSqlParser.KW_NOT); - this.state = 4438; + this.state = 4461; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 219 || _la === 350 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23229,38 +23329,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceNotExpression(): PrecedenceNotExpressionContext { let localContext = new PrecedenceNotExpressionContext(this.context, this.state); - this.enterRule(localContext, 634, HiveSqlParser.RULE_precedenceNotExpression); + this.enterRule(localContext, 636, HiveSqlParser.RULE_precedenceNotExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4444; + this.state = 4467; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4441; + this.state = 4464; this.match(HiveSqlParser.KW_NOT); } } } - this.state = 4446; + this.state = 4469; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); } - this.state = 4447; + this.state = 4470; this.precedenceEqualExpression(); - this.state = 4450; + this.state = 4473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 4448; + this.state = 4471; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 4449; + this.state = 4472; this.isCondition(); } } @@ -23283,26 +23383,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAndExpression(): PrecedenceAndExpressionContext { let localContext = new PrecedenceAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 636, HiveSqlParser.RULE_precedenceAndExpression); + this.enterRule(localContext, 638, HiveSqlParser.RULE_precedenceAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4452; + this.state = 4475; this.precedenceNotExpression(); - this.state = 4457; + this.state = 4480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 4453; + this.state = 4476; this.match(HiveSqlParser.KW_AND); - this.state = 4454; + this.state = 4477; this.precedenceNotExpression(); } } - this.state = 4459; + this.state = 4482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23324,19 +23424,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrPartition(): TableOrPartitionContext { let localContext = new TableOrPartitionContext(this.context, this.state); - this.enterRule(localContext, 638, HiveSqlParser.RULE_tableOrPartition); + this.enterRule(localContext, 640, HiveSqlParser.RULE_tableOrPartition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4460; + this.state = 4483; this.tableName(); - this.state = 4462; + this.state = 4485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 4461; + this.state = 4484; this.partitionSpec(); } } @@ -23359,34 +23459,34 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 640, HiveSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 642, HiveSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4464; + this.state = 4487; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4465; + this.state = 4488; this.match(HiveSqlParser.LPAREN); - this.state = 4466; + this.state = 4489; this.partitionVal(); - this.state = 4471; + this.state = 4494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4467; + this.state = 4490; this.match(HiveSqlParser.COMMA); - this.state = 4468; + this.state = 4491; this.partitionVal(); } } - this.state = 4473; + this.state = 4496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4474; + this.state = 4497; this.match(HiveSqlParser.RPAREN); } } @@ -23406,21 +23506,21 @@ export class HiveSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 642, HiveSqlParser.RULE_partitionVal); + this.enterRule(localContext, 644, HiveSqlParser.RULE_partitionVal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4476; + this.state = 4499; this.id_(); - this.state = 4479; + this.state = 4502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 4477; + this.state = 4500; this.match(HiveSqlParser.EQUAL); - this.state = 4478; + this.state = 4501; this.constant(); } } @@ -23443,32 +23543,32 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorSpec(): PartitionSelectorSpecContext { let localContext = new PartitionSelectorSpecContext(this.context, this.state); - this.enterRule(localContext, 644, HiveSqlParser.RULE_partitionSelectorSpec); + this.enterRule(localContext, 646, HiveSqlParser.RULE_partitionSelectorSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4481; + this.state = 4504; this.match(HiveSqlParser.LPAREN); - this.state = 4482; + this.state = 4505; this.partitionSelectorVal(); - this.state = 4487; + this.state = 4510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4483; + this.state = 4506; this.match(HiveSqlParser.COMMA); - this.state = 4484; + this.state = 4507; this.partitionSelectorVal(); } } - this.state = 4489; + this.state = 4512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4490; + this.state = 4513; this.match(HiveSqlParser.RPAREN); } } @@ -23488,18 +23588,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorVal(): PartitionSelectorValContext { let localContext = new PartitionSelectorValContext(this.context, this.state); - this.enterRule(localContext, 646, HiveSqlParser.RULE_partitionSelectorVal); + this.enterRule(localContext, 648, HiveSqlParser.RULE_partitionSelectorVal); try { this.enterOuterAlt(localContext, 1); { - this.state = 4492; + this.state = 4515; this.id_(); - this.state = 4495; + this.state = 4518; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 4493; + this.state = 4516; this.match(HiveSqlParser.KW_LIKE); } break; @@ -23510,14 +23610,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHANOREQUALTO: case HiveSqlParser.GREATERTHAN: { - this.state = 4494; + this.state = 4517; this.subQuerySelectorOperator(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4497; + this.state = 4520; this.constant(); } } @@ -23537,12 +23637,12 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext { let localContext = new SubQuerySelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 648, HiveSqlParser.RULE_subQuerySelectorOperator); + this.enterRule(localContext, 650, HiveSqlParser.RULE_subQuerySelectorOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4499; + this.state = 4522; _la = this.tokenStream.LA(1); if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); @@ -23569,12 +23669,12 @@ export class HiveSqlParser extends SQLParserBase { } public sysFuncNames(): SysFuncNamesContext { let localContext = new SysFuncNamesContext(this.context, this.state); - this.enterRule(localContext, 650, HiveSqlParser.RULE_sysFuncNames); + this.enterRule(localContext, 652, HiveSqlParser.RULE_sysFuncNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4501; + this.state = 4524; _la = this.tokenStream.LA(1); if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); @@ -23601,15 +23701,15 @@ export class HiveSqlParser extends SQLParserBase { } public id_(): Id_Context { let localContext = new Id_Context(this.context, this.state); - this.enterRule(localContext, 652, HiveSqlParser.RULE_id_); + this.enterRule(localContext, 654, HiveSqlParser.RULE_id_); try { - this.state = 4505; + this.state = 4528; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4503; + this.state = 4526; this.match(HiveSqlParser.Identifier); } break; @@ -23854,7 +23954,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 4504; + this.state = 4527; this.nonReserved(); } break; @@ -23878,21 +23978,21 @@ export class HiveSqlParser extends SQLParserBase { } public functionIdentifier(): FunctionIdentifierContext { let localContext = new FunctionIdentifierContext(this.context, this.state); - this.enterRule(localContext, 654, HiveSqlParser.RULE_functionIdentifier); + this.enterRule(localContext, 656, HiveSqlParser.RULE_functionIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4507; + this.state = 4530; this.id_(); - this.state = 4510; + this.state = 4533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 4508; + this.state = 4531; this.match(HiveSqlParser.DOT); - this.state = 4509; + this.state = 4532; localContext._fn = this.id_(); } } @@ -23915,11 +24015,11 @@ export class HiveSqlParser extends SQLParserBase { } public principalIdentifier(): PrincipalIdentifierContext { let localContext = new PrincipalIdentifierContext(this.context, this.state); - this.enterRule(localContext, 656, HiveSqlParser.RULE_principalIdentifier); + this.enterRule(localContext, 658, HiveSqlParser.RULE_principalIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 4512; + this.state = 4535; this.id_(); } } @@ -23939,12 +24039,12 @@ export class HiveSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 658, HiveSqlParser.RULE_nonReserved); + this.enterRule(localContext, 660, HiveSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4514; + this.state = 4537; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); @@ -23971,12 +24071,12 @@ export class HiveSqlParser extends SQLParserBase { } public sql11ReservedKeywordsUsedAsFunctionName(): Sql11ReservedKeywordsUsedAsFunctionNameContext { let localContext = new Sql11ReservedKeywordsUsedAsFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 660, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); + this.enterRule(localContext, 662, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4516; + this.state = 4539; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -24003,9 +24103,9 @@ export class HiveSqlParser extends SQLParserBase { } public configPropertiesItem(): ConfigPropertiesItemContext { let localContext = new ConfigPropertiesItemContext(this.context, this.state); - this.enterRule(localContext, 662, HiveSqlParser.RULE_configPropertiesItem); + this.enterRule(localContext, 664, HiveSqlParser.RULE_configPropertiesItem); try { - this.state = 4569; + this.state = 4592; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -24250,357 +24350,357 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4518; + this.state = 4541; this.id_(); } break; case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 2); { - this.state = 4519; + this.state = 4542; this.match(HiveSqlParser.KW_SELECT); } break; case HiveSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4520; + this.state = 4543; this.match(HiveSqlParser.KW_JOIN); } break; case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 4); { - this.state = 4521; + this.state = 4544; this.match(HiveSqlParser.KW_PARTITION); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 5); { - this.state = 4522; + this.state = 4545; this.match(HiveSqlParser.KW_MAP); } break; case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 6); { - this.state = 4523; + this.state = 4546; this.match(HiveSqlParser.KW_REDUCE); } break; case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 4524; + this.state = 4547; this.match(HiveSqlParser.KW_USER); } break; case HiveSqlParser.KW_PERCENT: this.enterOuterAlt(localContext, 8); { - this.state = 4525; + this.state = 4548; this.match(HiveSqlParser.KW_PERCENT); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 9); { - this.state = 4526; + this.state = 4549; this.match(HiveSqlParser.KW_INTERVAL); } break; case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 10); { - this.state = 4527; + this.state = 4550; this.match(HiveSqlParser.KW_ROWS); } break; case HiveSqlParser.KW_UNION: this.enterOuterAlt(localContext, 11); { - this.state = 4528; + this.state = 4551; this.match(HiveSqlParser.KW_UNION); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 12); { - this.state = 4529; + this.state = 4552; this.match(HiveSqlParser.KW_GROUP); } break; case HiveSqlParser.KW_MERGE: this.enterOuterAlt(localContext, 13); { - this.state = 4530; + this.state = 4553; this.match(HiveSqlParser.KW_MERGE); } break; case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 14); { - this.state = 4531; + this.state = 4554; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_FETCH: this.enterOuterAlt(localContext, 15); { - this.state = 4532; + this.state = 4555; this.match(HiveSqlParser.KW_FETCH); } break; case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 16); { - this.state = 4533; + this.state = 4556; this.match(HiveSqlParser.KW_LOCAL); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 17); { - this.state = 4534; + this.state = 4557; this.match(HiveSqlParser.KW_DROP); } break; case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 18); { - this.state = 4535; + this.state = 4558; this.match(HiveSqlParser.KW_TABLE); } break; case HiveSqlParser.KW_ON: this.enterOuterAlt(localContext, 19); { - this.state = 4536; + this.state = 4559; this.match(HiveSqlParser.KW_ON); } break; case HiveSqlParser.KW_ROW: this.enterOuterAlt(localContext, 20); { - this.state = 4537; + this.state = 4560; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 21); { - this.state = 4538; + this.state = 4561; this.match(HiveSqlParser.KW_GROUPING); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 22); { - this.state = 4539; + this.state = 4562; this.match(HiveSqlParser.KW_SET); } break; case HiveSqlParser.KW_FORCE: this.enterOuterAlt(localContext, 23); { - this.state = 4540; + this.state = 4563; this.match(HiveSqlParser.KW_FORCE); } break; case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 24); { - this.state = 4541; + this.state = 4564; this.match(HiveSqlParser.KW_START); } break; case HiveSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 25); { - this.state = 4542; + this.state = 4565; this.match(HiveSqlParser.KW_INSERT); } break; case HiveSqlParser.KW_CONF: this.enterOuterAlt(localContext, 26); { - this.state = 4543; + this.state = 4566; this.match(HiveSqlParser.KW_CONF); } break; case HiveSqlParser.KW_INTO: this.enterOuterAlt(localContext, 27); { - this.state = 4544; + this.state = 4567; this.match(HiveSqlParser.KW_INTO); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 28); { - this.state = 4545; + this.state = 4568; this.match(HiveSqlParser.KW_UNIQUE); } break; case HiveSqlParser.KW_COLUMN: this.enterOuterAlt(localContext, 29); { - this.state = 4546; + this.state = 4569; this.match(HiveSqlParser.KW_COLUMN); } break; case HiveSqlParser.KW_TRANSFORM: this.enterOuterAlt(localContext, 30); { - this.state = 4547; + this.state = 4570; this.match(HiveSqlParser.KW_TRANSFORM); } break; case HiveSqlParser.KW_DISTINCT: this.enterOuterAlt(localContext, 31); { - this.state = 4548; + this.state = 4571; this.match(HiveSqlParser.KW_DISTINCT); } break; case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 32); { - this.state = 4549; + this.state = 4572; this.match(HiveSqlParser.KW_IN); } break; case HiveSqlParser.KW_REFERENCES: this.enterOuterAlt(localContext, 33); { - this.state = 4550; + this.state = 4573; this.match(HiveSqlParser.KW_REFERENCES); } break; case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 34); { - this.state = 4551; + this.state = 4574; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case HiveSqlParser.KW_ONLY: this.enterOuterAlt(localContext, 35); { - this.state = 4552; + this.state = 4575; this.match(HiveSqlParser.KW_ONLY); } break; case HiveSqlParser.KW_END: this.enterOuterAlt(localContext, 36); { - this.state = 4553; + this.state = 4576; this.match(HiveSqlParser.KW_END); } break; case HiveSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 37); { - this.state = 4554; + this.state = 4577; this.match(HiveSqlParser.KW_FUNCTION); } break; case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 38); { - this.state = 4555; + this.state = 4578; this.match(HiveSqlParser.KW_UPDATE); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 39); { - this.state = 4556; + this.state = 4579; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 40); { - this.state = 4557; + this.state = 4580; this.match(HiveSqlParser.KW_DDL); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 41); { - this.state = 4558; + this.state = 4581; this.match(HiveSqlParser.KW_VALUES); } break; case HiveSqlParser.KW_TIME: this.enterOuterAlt(localContext, 42); { - this.state = 4559; + this.state = 4582; this.match(HiveSqlParser.KW_TIME); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 43); { - this.state = 4560; + this.state = 4583; this.match(HiveSqlParser.KW_IS); } break; case HiveSqlParser.KW_FOR: this.enterOuterAlt(localContext, 44); { - this.state = 4561; + this.state = 4584; this.match(HiveSqlParser.KW_FOR); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 45); { - this.state = 4562; + this.state = 4585; this.match(HiveSqlParser.KW_NOT); } break; case HiveSqlParser.KW_BINARY: this.enterOuterAlt(localContext, 46); { - this.state = 4563; + this.state = 4586; this.match(HiveSqlParser.KW_BINARY); } break; case HiveSqlParser.KW_USING: this.enterOuterAlt(localContext, 47); { - this.state = 4564; + this.state = 4587; this.match(HiveSqlParser.KW_USING); } break; case HiveSqlParser.KW_READS: this.enterOuterAlt(localContext, 48); { - this.state = 4565; + this.state = 4588; this.match(HiveSqlParser.KW_READS); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 49); { - this.state = 4566; + this.state = 4589; this.match(HiveSqlParser.KW_BETWEEN); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 50); { - this.state = 4567; + this.state = 4590; this.match(HiveSqlParser.KW_CURRENT); } break; case HiveSqlParser.KW_AS: this.enterOuterAlt(localContext, 51); { - this.state = 4568; + this.state = 4591; this.match(HiveSqlParser.KW_AS); } break; @@ -24624,56 +24724,56 @@ export class HiveSqlParser extends SQLParserBase { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 666, HiveSqlParser.RULE_resourcePlanDdlStatements); let _la: number; try { - this.state = 4736; + this.state = 4759; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4571; + this.state = 4594; this.match(HiveSqlParser.KW_CREATE); - this.state = 4572; + this.state = 4595; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4573; + this.state = 4596; this.match(HiveSqlParser.KW_PLAN); - this.state = 4575; + this.state = 4598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4574; + this.state = 4597; this.ifNotExists(); } } - this.state = 4586; + this.state = 4609; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { case 1: { - this.state = 4577; + this.state = 4600; localContext._name = this.id_(); - this.state = 4578; + this.state = 4601; this.match(HiveSqlParser.KW_LIKE); - this.state = 4579; + this.state = 4602; localContext._likeName = this.id_(); } break; case 2: { - this.state = 4581; + this.state = 4604; localContext._name = this.id_(); - this.state = 4584; + this.state = 4607; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { case 1: { - this.state = 4582; + this.state = 4605; this.match(HiveSqlParser.KW_WITH); - this.state = 4583; + this.state = 4606; this.rpAssignList(); } break; @@ -24686,57 +24786,57 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4588; + this.state = 4611; this.match(HiveSqlParser.KW_ALTER); - this.state = 4589; + this.state = 4612; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4590; + this.state = 4613; this.match(HiveSqlParser.KW_PLAN); - this.state = 4591; + this.state = 4614; localContext._name = this.id_(); - this.state = 4616; + this.state = 4639; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 4592; + this.state = 4615; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4593; + this.state = 4616; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 4594; + this.state = 4617; this.match(HiveSqlParser.KW_SET); - this.state = 4595; + this.state = 4618; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4596; + this.state = 4619; this.match(HiveSqlParser.KW_UNSET); - this.state = 4597; + this.state = 4620; this.rpUnassign(); - this.state = 4602; + this.state = 4625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4598; + this.state = 4621; this.match(HiveSqlParser.COMMA); - this.state = 4599; + this.state = 4622; this.rpUnassign(); } } - this.state = 4604; + this.state = 4627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24744,24 +24844,24 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_RENAME: { - this.state = 4605; + this.state = 4628; this.match(HiveSqlParser.KW_RENAME); - this.state = 4606; + this.state = 4629; this.match(HiveSqlParser.KW_TO); - this.state = 4607; + this.state = 4630; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 4608; + this.state = 4631; this.activate(); - this.state = 4610; + this.state = 4633; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { case 1: { - this.state = 4609; + this.state = 4632; this.enable(); } break; @@ -24771,14 +24871,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4612; + this.state = 4635; this.enable(); - this.state = 4614; + this.state = 4637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4613; + this.state = 4636; this.activate(); } } @@ -24793,88 +24893,88 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4618; + this.state = 4641; this.match(HiveSqlParser.KW_DROP); - this.state = 4619; + this.state = 4642; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4620; + this.state = 4643; this.match(HiveSqlParser.KW_PLAN); - this.state = 4622; + this.state = 4645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4621; + this.state = 4644; this.ifExists(); } } - this.state = 4624; + this.state = 4647; localContext._name = this.id_(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4627; + this.state = 4650; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4625; + this.state = 4648; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4626; + this.state = 4649; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4629; + this.state = 4652; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 4630; + this.state = 4653; this.match(HiveSqlParser.KW_MANAGEMENT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4632; + this.state = 4655; this.match(HiveSqlParser.KW_REPLACE); - this.state = 4644; + this.state = 4667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 4633; + this.state = 4656; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 4634; + this.state = 4657; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4635; + this.state = 4658; this.match(HiveSqlParser.KW_PLAN); - this.state = 4636; + this.state = 4659; this.match(HiveSqlParser.KW_WITH); - this.state = 4637; + this.state = 4660; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 4638; + this.state = 4661; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4639; + this.state = 4662; this.match(HiveSqlParser.KW_PLAN); - this.state = 4640; + this.state = 4663; localContext._dest = this.id_(); - this.state = 4641; + this.state = 4664; this.match(HiveSqlParser.KW_WITH); - this.state = 4642; + this.state = 4665; localContext._src = this.id_(); } break; @@ -24886,93 +24986,93 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4646; + this.state = 4669; this.match(HiveSqlParser.KW_CREATE); - this.state = 4647; + this.state = 4670; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4648; + this.state = 4671; localContext._rpName = this.id_(); - this.state = 4649; + this.state = 4672; this.match(HiveSqlParser.DOT); - this.state = 4650; + this.state = 4673; localContext._triggerName = this.id_(); - this.state = 4651; + this.state = 4674; this.match(HiveSqlParser.KW_WHEN); - this.state = 4652; + this.state = 4675; this.triggerAtomExpression(); - this.state = 4653; + this.state = 4676; this.match(HiveSqlParser.KW_DO); - this.state = 4654; + this.state = 4677; this.triggerActionExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4656; + this.state = 4679; this.match(HiveSqlParser.KW_ALTER); - this.state = 4657; + this.state = 4680; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4658; + this.state = 4681; localContext._rpName = this.id_(); - this.state = 4659; + this.state = 4682; this.match(HiveSqlParser.DOT); - this.state = 4660; + this.state = 4683; localContext._triggerName = this.id_(); - this.state = 4677; + this.state = 4700; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 4661; + this.state = 4684; this.match(HiveSqlParser.KW_WHEN); - this.state = 4662; + this.state = 4685; this.triggerAtomExpression(); - this.state = 4663; + this.state = 4686; this.match(HiveSqlParser.KW_DO); - this.state = 4664; + this.state = 4687; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4670; + this.state = 4693; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 4666; + this.state = 4689; this.match(HiveSqlParser.KW_ADD); - this.state = 4667; + this.state = 4690; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 4668; + this.state = 4691; this.match(HiveSqlParser.KW_DROP); - this.state = 4669; + this.state = 4692; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4675; + this.state = 4698; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 4672; + this.state = 4695; this.match(HiveSqlParser.KW_POOL); - this.state = 4673; + this.state = 4696; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4674; + this.state = 4697; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -24989,73 +25089,73 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4679; + this.state = 4702; this.match(HiveSqlParser.KW_DROP); - this.state = 4680; + this.state = 4703; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4681; + this.state = 4704; localContext._rpName = this.id_(); - this.state = 4682; + this.state = 4705; this.match(HiveSqlParser.DOT); - this.state = 4683; + this.state = 4706; localContext._triggerName = this.id_(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4685; + this.state = 4708; this.match(HiveSqlParser.KW_CREATE); - this.state = 4686; + this.state = 4709; this.match(HiveSqlParser.KW_POOL); - this.state = 4687; + this.state = 4710; localContext._rpName = this.id_(); - this.state = 4688; + this.state = 4711; this.match(HiveSqlParser.DOT); - this.state = 4689; + this.state = 4712; this.poolPath(); - this.state = 4690; + this.state = 4713; this.match(HiveSqlParser.KW_WITH); - this.state = 4691; + this.state = 4714; this.poolAssignList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4693; + this.state = 4716; this.match(HiveSqlParser.KW_ALTER); - this.state = 4694; + this.state = 4717; this.match(HiveSqlParser.KW_POOL); - this.state = 4695; + this.state = 4718; localContext._rpName = this.id_(); - this.state = 4696; + this.state = 4719; this.match(HiveSqlParser.DOT); - this.state = 4697; + this.state = 4720; this.poolPath(); - this.state = 4705; + this.state = 4728; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 4698; + this.state = 4721; this.match(HiveSqlParser.KW_SET); - this.state = 4699; + this.state = 4722; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4700; + this.state = 4723; this.match(HiveSqlParser.KW_UNSET); - this.state = 4701; + this.state = 4724; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4702; + this.state = 4725; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -25064,9 +25164,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4703; + this.state = 4726; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4704; + this.state = 4727; localContext._triggerName = this.id_(); } break; @@ -25078,22 +25178,22 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4707; + this.state = 4730; this.match(HiveSqlParser.KW_DROP); - this.state = 4708; + this.state = 4731; this.match(HiveSqlParser.KW_POOL); - this.state = 4709; + this.state = 4732; localContext._rpName = this.id_(); - this.state = 4710; + this.state = 4733; this.match(HiveSqlParser.DOT); - this.state = 4711; + this.state = 4734; this.poolPath(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4713; + this.state = 4736; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 58)) { this.errorHandler.recoverInline(this); @@ -25102,46 +25202,46 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4714; + this.state = 4737; localContext._mappingType = this.mappingTypes(); - this.state = 4715; + this.state = 4738; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4716; + this.state = 4739; this.match(HiveSqlParser.StringLiteral); - this.state = 4717; + this.state = 4740; this.match(HiveSqlParser.KW_IN); - this.state = 4718; + this.state = 4741; localContext._rpName = this.id_(); - this.state = 4722; + this.state = 4745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 4719; + this.state = 4742; this.match(HiveSqlParser.KW_TO); - this.state = 4720; + this.state = 4743; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4721; + this.state = 4744; this.match(HiveSqlParser.KW_UNMANAGED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4727; + this.state = 4750; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4724; + this.state = 4747; this.match(HiveSqlParser.KW_WITH); - this.state = 4725; + this.state = 4748; this.match(HiveSqlParser.KW_ORDER); - this.state = 4726; + this.state = 4749; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -25151,17 +25251,17 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4729; + this.state = 4752; this.match(HiveSqlParser.KW_DROP); - this.state = 4730; + this.state = 4753; localContext._mappingType = this.mappingTypes(); - this.state = 4731; + this.state = 4754; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4732; + this.state = 4755; this.match(HiveSqlParser.StringLiteral); - this.state = 4733; + this.state = 4756; this.match(HiveSqlParser.KW_IN); - this.state = 4734; + this.state = 4757; localContext._rpName = this.id_(); } break; @@ -25183,12 +25283,12 @@ export class HiveSqlParser extends SQLParserBase { } public mappingTypes(): MappingTypesContext { let localContext = new MappingTypesContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_mappingTypes); + this.enterRule(localContext, 668, HiveSqlParser.RULE_mappingTypes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4738; + this.state = 4761; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 144 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -25215,32 +25315,32 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 670, HiveSqlParser.RULE_rpAssign); try { - this.state = 4747; + this.state = 4770; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4740; + this.state = 4763; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4741; + this.state = 4764; this.match(HiveSqlParser.EQUAL); - this.state = 4742; + this.state = 4765; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4743; + this.state = 4766; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4744; + this.state = 4767; this.match(HiveSqlParser.KW_POOL); - this.state = 4745; + this.state = 4768; this.match(HiveSqlParser.EQUAL); - this.state = 4746; + this.state = 4769; this.poolPath(); } break; @@ -25264,26 +25364,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 672, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4749; + this.state = 4772; this.rpAssign(); - this.state = 4754; + this.state = 4777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4750; + this.state = 4773; this.match(HiveSqlParser.COMMA); - this.state = 4751; + this.state = 4774; this.rpAssign(); } } - this.state = 4756; + this.state = 4779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25305,24 +25405,24 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 674, HiveSqlParser.RULE_rpUnassign); try { - this.state = 4760; + this.state = 4783; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4757; + this.state = 4780; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4758; + this.state = 4781; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4759; + this.state = 4782; this.match(HiveSqlParser.KW_POOL); } break; @@ -25346,20 +25446,20 @@ export class HiveSqlParser extends SQLParserBase { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 676, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4762; + this.state = 4785; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 4765; + this.state = 4788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { case 1: { - this.state = 4763; + this.state = 4786; this.match(HiveSqlParser.KW_WITH); - this.state = 4764; + this.state = 4787; this.match(HiveSqlParser.KW_REPLACE); } break; @@ -25382,12 +25482,12 @@ export class HiveSqlParser extends SQLParserBase { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 678, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4767; + this.state = 4790; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -25414,12 +25514,12 @@ export class HiveSqlParser extends SQLParserBase { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 680, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4769; + this.state = 4792; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -25444,16 +25544,80 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public year(): YearContext { - let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_year); + public year(): YearContext { + let localContext = new YearContext(this.context, this.state); + this.enterRule(localContext, 682, HiveSqlParser.RULE_year); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4794; + _la = this.tokenStream.LA(1); + if(!(_la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public month(): MonthContext { + let localContext = new MonthContext(this.context, this.state); + this.enterRule(localContext, 684, HiveSqlParser.RULE_month); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4796; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 209)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public week(): WeekContext { + let localContext = new WeekContext(this.context, this.state); + this.enterRule(localContext, 686, HiveSqlParser.RULE_week); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4771; + this.state = 4798; _la = this.tokenStream.LA(1); - if(!(_la === 392 || _la === 393)) { + if(!(_la === 381 || _la === 382)) { this.errorHandler.recoverInline(this); } else { @@ -25476,16 +25640,16 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public month(): MonthContext { - let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_month); + public day(): DayContext { + let localContext = new DayContext(this.context, this.state); + this.enterRule(localContext, 688, HiveSqlParser.RULE_day); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4773; + this.state = 4800; _la = this.tokenStream.LA(1); - if(!(_la === 208 || _la === 209)) { + if(!(_la === 73 || _la === 74)) { this.errorHandler.recoverInline(this); } else { @@ -25508,16 +25672,16 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public week(): WeekContext { - let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_week); + public hour(): HourContext { + let localContext = new HourContext(this.context, this.state); + this.enterRule(localContext, 690, HiveSqlParser.RULE_hour); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4775; + this.state = 4802; _la = this.tokenStream.LA(1); - if(!(_la === 381 || _la === 382)) { + if(!(_la === 148 || _la === 149)) { this.errorHandler.recoverInline(this); } else { @@ -25540,16 +25704,16 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public day(): DayContext { - let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_day); + public minute(): MinuteContext { + let localContext = new MinuteContext(this.context, this.state); + this.enterRule(localContext, 692, HiveSqlParser.RULE_minute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4777; + this.state = 4804; _la = this.tokenStream.LA(1); - if(!(_la === 73 || _la === 74)) { + if(!(_la === 206 || _la === 207)) { this.errorHandler.recoverInline(this); } else { @@ -25572,16 +25736,16 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public hour(): HourContext { - let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_hour); + public second(): SecondContext { + let localContext = new SecondContext(this.context, this.state); + this.enterRule(localContext, 694, HiveSqlParser.RULE_second); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4779; + this.state = 4806; _la = this.tokenStream.LA(1); - if(!(_la === 148 || _la === 149)) { + if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); } else { @@ -25604,16 +25768,16 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public minute(): MinuteContext { - let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_minute); + public decimal(): DecimalContext { + let localContext = new DecimalContext(this.context, this.state); + this.enterRule(localContext, 696, HiveSqlParser.RULE_decimal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4781; + this.state = 4808; _la = this.tokenStream.LA(1); - if(!(_la === 206 || _la === 207)) { + if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -25636,22 +25800,13 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public second(): SecondContext { - let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 692, HiveSqlParser.RULE_second); - let _la: number; + public emptyColumn(): EmptyColumnContext { + let localContext = new EmptyColumnContext(this.context, this.state); + this.enterRule(localContext, 698, HiveSqlParser.RULE_emptyColumn); try { this.enterOuterAlt(localContext, 1); + // tslint:disable-next-line:no-empty { - this.state = 4783; - _la = this.tokenStream.LA(1); - if(!(_la === 297 || _la === 298)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } } } catch (re) { @@ -25668,21 +25823,32 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public decimal(): DecimalContext { - let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 694, HiveSqlParser.RULE_decimal); - let _la: number; + public poolPath(): PoolPathContext { + let localContext = new PoolPathContext(this.context, this.state); + this.enterRule(localContext, 700, HiveSqlParser.RULE_poolPath); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4785; - _la = this.tokenStream.LA(1); - if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + this.state = 4812; + this.id_(); + this.state = 4817; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 4813; + this.match(HiveSqlParser.DOT); + this.state = 4814; + this.id_(); + } + } + } + this.state = 4819; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); } } } @@ -25700,33 +25866,68 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public poolPath(): PoolPathContext { - let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 696, HiveSqlParser.RULE_poolPath); + public poolPathAllowEmpty(): PoolPathAllowEmptyContext { + let localContext = new PoolPathAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 702, HiveSqlParser.RULE_poolPathAllowEmpty); try { let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 4787; - this.id_(); - this.state = 4792; + this.state = 4837; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 4788; - this.match(HiveSqlParser.DOT); - this.state = 4789; - this.id_(); - } + switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 4820; + this.id_(); + this.state = 4825; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 4821; + this.match(HiveSqlParser.DOT); + this.state = 4822; + this.id_(); + } + } } + this.state = 4827; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 4828; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 4794; + this.state = 4829; + this.id_(); + this.state = 4834; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); - } + alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 4830; + this.match(HiveSqlParser.DOT); + this.state = 4831; + this.emptyColumn(); + } + } + } + this.state = 4836; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + } + } + break; } } catch (re) { @@ -25745,16 +25946,16 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 698, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 704, HiveSqlParser.RULE_triggerAtomExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4795; + this.state = 4839; this.id_(); - this.state = 4796; + this.state = 4840; this.match(HiveSqlParser.GREATERTHAN); - this.state = 4797; + this.state = 4841; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -25781,26 +25982,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 700, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 706, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 4803; + this.state = 4847; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 4799; + this.state = 4843; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4800; + this.state = 4844; this.match(HiveSqlParser.KW_MOVE); - this.state = 4801; + this.state = 4845; this.match(HiveSqlParser.KW_TO); - this.state = 4802; + this.state = 4846; this.poolPath(); } break; @@ -25824,50 +26025,50 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 702, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 708, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 4817; + this.state = 4861; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 4805; + this.state = 4849; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 4806; + this.state = 4850; this.match(HiveSqlParser.EQUAL); - this.state = 4807; + this.state = 4851; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 4808; + this.state = 4852; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4809; + this.state = 4853; this.match(HiveSqlParser.EQUAL); - this.state = 4810; + this.state = 4854; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 4811; + this.state = 4855; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 4812; + this.state = 4856; this.match(HiveSqlParser.EQUAL); - this.state = 4813; + this.state = 4857; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 4814; + this.state = 4858; this.match(HiveSqlParser.KW_PATH); - this.state = 4815; + this.state = 4859; this.match(HiveSqlParser.EQUAL); - this.state = 4816; + this.state = 4860; localContext._path = this.poolPath(); } break; @@ -25892,26 +26093,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 704, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 710, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4819; + this.state = 4863; this.poolAssign(); - this.state = 4824; + this.state = 4868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4820; + this.state = 4864; this.match(HiveSqlParser.COMMA); - this.state = 4821; + this.state = 4865; this.poolAssign(); } } - this.state = 4826; + this.state = 4870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25936,6 +26137,10 @@ export class HiveSqlParser extends SQLParserBase { switch (ruleIndex) { case 128: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); + case 130: + return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); + case 351: + return this.poolPathAllowEmpty_sempred(localContext as PoolPathAllowEmptyContext, predIndex); } return true; } @@ -25946,9 +26151,23 @@ export class HiveSqlParser extends SQLParserBase { } return true; } + private columnNamePathAllowEmpty_sempred(localContext: ColumnNamePathAllowEmptyContext | null, predIndex: number): boolean { + switch (predIndex) { + case 1: + return this.shouldMatchEmpty(); + } + return true; + } + private poolPathAllowEmpty_sempred(localContext: PoolPathAllowEmptyContext | null, predIndex: number): boolean { + switch (predIndex) { + case 2: + return this.shouldMatchEmpty(); + } + return true; + } public static readonly _serializedATN: number[] = [ - 4,1,438,4828,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,438,4872,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, @@ -26009,2084 +26228,2104 @@ export class HiveSqlParser extends SQLParserBase { 2,335,7,335,2,336,7,336,2,337,7,337,2,338,7,338,2,339,7,339,2,340, 7,340,2,341,7,341,2,342,7,342,2,343,7,343,2,344,7,344,2,345,7,345, 2,346,7,346,2,347,7,347,2,348,7,348,2,349,7,349,2,350,7,350,2,351, - 7,351,2,352,7,352,1,0,5,0,708,8,0,10,0,12,0,711,9,0,1,0,1,0,1,1, - 1,1,3,1,717,8,1,1,1,3,1,720,8,1,1,2,1,2,5,2,724,8,2,10,2,12,2,727, - 9,2,1,2,1,2,1,2,3,2,732,8,2,1,3,1,3,1,3,1,3,1,3,3,3,739,8,3,1,3, - 1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,749,8,3,1,3,3,3,752,8,3,1,3,1,3, - 3,3,756,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 3,5,771,8,5,1,5,1,5,1,5,1,5,1,5,3,5,778,8,5,1,5,1,5,1,5,1,5,3,5, - 784,8,5,1,5,1,5,1,5,3,5,789,8,5,1,5,1,5,1,5,3,5,794,8,5,1,5,3,5, - 797,8,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,5,5,819,8,5,10,5,12,5,822,9,5,1,5,1,5,5, - 5,826,8,5,10,5,12,5,829,9,5,3,5,831,8,5,1,6,1,6,1,6,3,6,836,8,6, - 1,6,1,6,1,6,3,6,841,8,6,1,6,1,6,1,6,1,6,3,6,847,8,6,1,7,1,7,3,7, - 851,8,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,864,8,8, - 1,9,1,9,3,9,868,8,9,1,9,1,9,3,9,872,8,9,1,9,1,9,1,9,3,9,877,8,9, - 1,10,1,10,1,10,1,10,1,10,3,10,884,8,10,1,10,1,10,3,10,888,8,10,1, - 11,1,11,1,11,3,11,893,8,11,1,12,1,12,1,12,1,12,1,12,3,12,900,8,12, - 1,12,1,12,3,12,904,8,12,1,13,1,13,1,13,3,13,909,8,13,1,14,1,14,1, - 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, - 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, - 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, - 14,1,14,1,14,4,14,955,8,14,11,14,12,14,956,1,14,1,14,1,14,4,14,962, - 8,14,11,14,12,14,963,1,14,1,14,1,14,3,14,969,8,14,1,15,1,15,1,15, - 1,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18,1,18,1,19,1,19,1,19,1,20, - 1,20,1,20,1,20,1,21,1,21,3,21,992,8,21,1,21,1,21,3,21,996,8,21,1, - 21,1,21,3,21,1000,8,21,1,21,3,21,1003,8,21,1,21,1,21,3,21,1007,8, - 21,1,21,1,21,1,21,3,21,1012,8,21,1,21,1,21,1,21,1,21,3,21,1018,8, - 21,1,21,1,21,3,21,1022,8,21,1,21,1,21,1,21,1,21,3,21,1028,8,21,3, - 21,1030,8,21,1,22,1,22,1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24,1041, - 8,24,1,24,1,24,3,24,1045,8,24,1,25,1,25,1,25,1,26,1,26,3,26,1052, - 8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1060,8,26,1,26,3,26,1063, - 8,26,1,27,1,27,1,27,3,27,1068,8,27,1,27,1,27,3,27,1072,8,27,1,27, - 3,27,1075,8,27,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29,1085, - 8,29,1,29,1,29,1,29,1,29,1,29,1,29,3,29,1093,8,29,5,29,1095,8,29, - 10,29,12,29,1098,9,29,3,29,1100,8,29,1,30,1,30,3,30,1104,8,30,1, - 31,1,31,3,31,1108,8,31,1,31,3,31,1111,8,31,1,32,1,32,1,32,3,32,1116, - 8,32,1,32,1,32,1,32,1,32,3,32,1122,8,32,1,32,1,32,1,32,3,32,1127, - 8,32,1,32,1,32,1,32,3,32,1132,8,32,1,32,1,32,3,32,1136,8,32,1,33, - 1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1147,8,33,3,33,1149, - 8,33,1,33,1,33,3,33,1153,8,33,1,34,1,34,1,35,1,35,1,36,1,36,1,36, - 1,36,3,36,1163,8,36,1,36,1,36,3,36,1167,8,36,1,36,1,36,1,36,1,36, - 3,36,1173,8,36,1,36,3,36,1176,8,36,1,36,1,36,1,36,1,36,1,36,3,36, - 1183,8,36,1,36,1,36,1,36,3,36,1188,8,36,1,36,1,36,1,36,1,36,1,36, - 1,36,3,36,1196,8,36,1,36,1,36,1,36,3,36,1201,8,36,1,36,1,36,3,36, - 1205,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1213,8,36,1,36,1,36, - 1,36,3,36,1218,8,36,1,36,1,36,1,36,1,36,3,36,1224,8,36,1,36,1,36, - 1,36,1,36,3,36,1230,8,36,1,36,3,36,1233,8,36,1,36,3,36,1236,8,36, - 1,36,3,36,1239,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1248, - 8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1256,8,36,1,36,1,36,1,36, - 3,36,1261,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1269,8,36,1,36, - 1,36,1,36,1,36,1,36,3,36,1276,8,36,1,36,3,36,1279,8,36,1,36,3,36, - 1282,8,36,3,36,1284,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,3,36,1295,8,36,3,36,1297,8,36,1,36,3,36,1300,8,36,1,36,3,36, - 1303,8,36,1,36,3,36,1306,8,36,1,36,3,36,1309,8,36,1,36,3,36,1312, - 8,36,3,36,1314,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,3,36,1326,8,36,1,36,1,36,1,36,1,36,3,36,1332,8,36,1,36,1,36, - 1,36,1,36,1,36,1,36,3,36,1340,8,36,3,36,1342,8,36,1,37,1,37,1,37, - 1,37,1,37,1,37,1,37,1,37,3,37,1352,8,37,1,38,1,38,1,38,1,38,1,38, - 1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42, - 1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45, - 3,45,1385,8,45,1,45,1,45,1,45,3,45,1390,8,45,1,46,1,46,3,46,1394, - 8,46,1,46,1,46,3,46,1398,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1405, - 8,47,1,47,1,47,1,47,5,47,1410,8,47,10,47,12,47,1413,9,47,1,47,1, - 47,1,47,3,47,1418,8,47,1,48,1,48,3,48,1422,8,48,1,48,3,48,1425,8, - 48,1,48,1,48,1,48,5,48,1430,8,48,10,48,12,48,1433,9,48,1,48,1,48, - 1,48,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51, - 1,52,1,52,1,52,1,52,1,52,3,52,1455,8,52,1,53,1,53,1,53,3,53,1460, - 8,53,1,53,1,53,3,53,1464,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55, - 1472,8,55,1,56,1,56,1,56,1,57,1,57,1,57,1,57,3,57,1481,8,57,1,57, - 1,57,1,57,1,57,1,57,3,57,1488,8,57,1,58,1,58,1,58,1,58,3,58,1494, - 8,58,1,58,1,58,1,58,1,58,1,58,3,58,1501,8,58,1,58,3,58,1504,8,58, - 1,58,1,58,1,58,1,58,3,58,1510,8,58,1,59,1,59,1,59,5,59,1515,8,59, - 10,59,12,59,1518,9,59,1,60,1,60,1,60,1,60,1,60,3,60,1525,8,60,1, - 61,1,61,1,62,1,62,1,62,5,62,1532,8,62,10,62,12,62,1535,9,62,1,63, - 1,63,1,63,1,63,1,63,1,63,3,63,1543,8,63,1,64,1,64,1,64,1,64,1,64, - 3,64,1550,8,64,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67, - 1,67,1,67,1,68,1,68,1,68,1,68,1,69,1,69,3,69,1570,8,69,1,69,1,69, - 1,69,1,69,1,69,3,69,1577,8,69,3,69,1579,8,69,1,70,1,70,1,70,5,70, - 1584,8,70,10,70,12,70,1587,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1, - 73,3,73,1596,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,1604,8,73,1, - 74,1,74,3,74,1608,8,74,1,74,1,74,3,74,1612,8,74,1,74,1,74,1,75,1, - 75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,3,76,1625,8,76,1,76,1,76,1, - 76,1,77,1,77,1,77,1,77,3,77,1634,8,77,1,77,1,77,1,78,1,78,1,78,1, - 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1650,8,78,1,78,1, - 78,3,78,1654,8,78,1,78,1,78,1,78,3,78,1659,8,78,1,78,1,78,1,78,3, - 78,1664,8,78,1,78,3,78,1667,8,78,1,78,3,78,1670,8,78,1,78,3,78,1673, - 8,78,1,78,3,78,1676,8,78,1,78,3,78,1679,8,78,1,79,1,79,1,79,3,79, - 1684,8,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,3,80,1693,8,80,1,80, - 1,80,3,80,1697,8,80,1,80,1,80,1,80,1,80,1,80,3,80,1704,8,80,1,80, - 3,80,1707,8,80,1,80,3,80,1710,8,80,1,80,3,80,1713,8,80,1,80,1,80, - 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,1725,8,81,1,81,1,81, - 1,82,1,82,3,82,1731,8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84, - 1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86, - 1,87,1,87,1,87,3,87,1757,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88, - 1765,8,88,1,88,1,88,3,88,1769,8,88,1,88,3,88,1772,8,88,1,88,3,88, - 1775,8,88,1,88,3,88,1778,8,88,1,88,3,88,1781,8,88,1,88,3,88,1784, - 8,88,1,88,3,88,1787,8,88,1,88,3,88,1790,8,88,1,88,1,88,1,88,1,89, - 1,89,1,89,1,89,3,89,1799,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90, - 1,90,3,90,1809,8,90,1,90,3,90,1812,8,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,92,1,93,1,93,1,93,1,93,1,93, - 3,93,1832,8,93,1,94,1,94,1,94,1,94,3,94,1838,8,94,1,94,1,94,1,94, - 1,94,3,94,1844,8,94,1,94,3,94,1847,8,94,3,94,1849,8,94,1,95,1,95, - 1,95,1,95,1,96,3,96,1856,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1863, - 8,97,1,98,1,98,1,98,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100, - 3,100,1876,8,100,1,100,1,100,1,100,3,100,1881,8,100,1,100,1,100, - 1,101,1,101,1,101,5,101,1888,8,101,10,101,12,101,1891,9,101,1,102, - 1,102,1,102,5,102,1896,8,102,10,102,12,102,1899,9,102,1,103,1,103, - 1,103,1,103,1,103,3,103,1906,8,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,3,103,1919,8,103,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,1932, - 8,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,1,105,1,105,3,105,1948,8,105,1,106,1,106,3,106,1952, - 8,106,1,107,1,107,1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,109, - 1,109,1,109,1,109,3,109,1967,8,109,1,110,1,110,1,110,1,110,3,110, - 1973,8,110,1,110,3,110,1976,8,110,1,110,3,110,1979,8,110,1,110,3, - 110,1982,8,110,1,110,3,110,1985,8,110,1,111,1,111,3,111,1989,8,111, - 1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114, - 5,114,2002,8,114,10,114,12,114,2005,9,114,3,114,2007,8,114,1,115, - 1,115,1,115,1,115,1,116,1,116,1,116,5,116,2016,8,116,10,116,12,116, - 2019,9,116,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,3,118,2032,8,118,1,119,1,119,1,119,1,119,1,119,1,119, - 1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121, - 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,123,1,123,3,123,2066,8,123,1,123,1,123,1,123,1,123, - 1,123,1,123,3,123,2074,8,123,1,123,1,123,1,123,3,123,2079,8,123, - 1,123,1,123,1,123,1,123,1,123,1,123,3,123,2087,8,123,1,123,1,123, - 1,123,3,123,2092,8,123,1,123,1,123,1,123,3,123,2097,8,123,1,124, - 1,124,1,124,5,124,2102,8,124,10,124,12,124,2105,9,124,1,125,1,125, - 1,125,5,125,2110,8,125,10,125,12,125,2113,9,125,1,126,1,126,1,126, - 5,126,2118,8,126,10,126,12,126,2121,9,126,1,127,1,127,1,127,5,127, - 2126,8,127,10,127,12,127,2129,9,127,1,128,1,128,3,128,2133,8,128, - 1,129,1,129,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,3,131, - 2145,8,131,5,131,2147,8,131,10,131,12,131,2150,9,131,1,132,1,132, - 1,132,5,132,2155,8,132,10,132,12,132,2158,9,132,1,133,1,133,1,133, - 1,133,1,134,1,134,3,134,2166,8,134,1,134,3,134,2169,8,134,1,135, - 1,135,3,135,2173,8,135,1,136,1,136,1,137,1,137,1,137,3,137,2180, - 8,137,1,138,1,138,1,139,1,139,3,139,2186,8,139,1,139,1,139,3,139, - 2190,8,139,1,140,1,140,1,140,1,140,3,140,2196,8,140,1,141,1,141, - 3,141,2200,8,141,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143, - 1,144,1,144,3,144,2212,8,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,3,144,2221,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,3,145,2232,8,145,1,146,1,146,3,146,2236,8,146,1,147, - 1,147,1,147,5,147,2241,8,147,10,147,12,147,2244,9,147,1,148,1,148, - 1,148,1,148,1,149,1,149,1,149,5,149,2253,8,149,10,149,12,149,2256, - 9,149,1,150,1,150,1,151,1,151,1,151,1,152,1,152,3,152,2265,8,152, - 1,152,3,152,2268,8,152,1,153,1,153,1,153,5,153,2273,8,153,10,153, - 12,153,2276,9,153,1,154,1,154,1,154,3,154,2281,8,154,1,155,1,155, - 3,155,2285,8,155,1,155,3,155,2288,8,155,1,155,3,155,2291,8,155,1, - 156,1,156,1,156,1,156,3,156,2297,8,156,1,157,1,157,3,157,2301,8, - 157,1,158,1,158,3,158,2305,8,158,1,159,1,159,1,159,3,159,2310,8, - 159,1,159,1,159,3,159,2314,8,159,1,160,1,160,3,160,2318,8,160,1, - 161,1,161,3,161,2322,8,161,1,161,1,161,1,161,1,161,1,161,1,161,3, - 161,2330,8,161,1,162,1,162,3,162,2334,8,162,1,162,1,162,3,162,2338, - 8,162,1,163,1,163,3,163,2342,8,163,1,164,1,164,3,164,2346,8,164, - 1,164,1,164,1,164,1,164,1,164,1,164,3,164,2354,8,164,1,165,1,165, - 3,165,2358,8,165,1,165,1,165,3,165,2362,8,165,1,166,1,166,1,166, - 1,166,1,166,1,166,3,166,2370,8,166,1,167,1,167,1,167,3,167,2375, - 8,167,1,168,1,168,1,168,3,168,2380,8,168,1,169,1,169,3,169,2384, - 8,169,1,170,1,170,3,170,2388,8,170,1,171,1,171,1,171,1,171,1,171, - 3,171,2395,8,171,1,172,1,172,1,173,1,173,1,173,5,173,2402,8,173, - 10,173,12,173,2405,9,173,1,174,1,174,1,174,1,174,1,174,3,174,2412, - 8,174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 3,175,2424,8,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,3,175,2442,8,175, - 1,175,3,175,2445,8,175,1,175,1,175,1,175,1,175,3,175,2451,8,175, - 1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,178, - 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,3,180,2477,8,180,1,181,3,181,2480,8,181,1,181,1,181, - 1,182,1,182,3,182,2486,8,182,1,183,1,183,1,183,1,183,5,183,2492, - 8,183,10,183,12,183,2495,9,183,1,184,1,184,1,184,1,184,1,184,3,184, - 2502,8,184,1,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185,1,185, - 5,185,2513,8,185,10,185,12,185,2516,9,185,1,186,1,186,1,186,1,186, - 3,186,2522,8,186,1,186,3,186,2525,8,186,1,186,3,186,2528,8,186,1, - 186,3,186,2531,8,186,1,186,3,186,2534,8,186,1,186,3,186,2537,8,186, - 1,186,3,186,2540,8,186,1,186,3,186,2543,8,186,1,186,3,186,2546,8, - 186,1,186,3,186,2549,8,186,1,186,3,186,2552,8,186,1,186,1,186,1, - 186,3,186,2557,8,186,1,186,3,186,2560,8,186,1,186,3,186,2563,8,186, - 1,186,3,186,2566,8,186,1,186,3,186,2569,8,186,1,186,3,186,2572,8, - 186,1,186,3,186,2575,8,186,1,186,3,186,2578,8,186,1,186,3,186,2581, - 8,186,1,186,3,186,2584,8,186,1,186,3,186,2587,8,186,3,186,2589,8, - 186,1,187,1,187,1,187,1,187,3,187,2595,8,187,1,188,1,188,3,188,2599, - 8,188,1,188,3,188,2602,8,188,1,188,3,188,2605,8,188,1,188,3,188, - 2608,8,188,1,188,3,188,2611,8,188,1,188,3,188,2614,8,188,1,188,1, - 188,1,188,1,188,1,188,3,188,2621,8,188,1,189,1,189,3,189,2625,8, - 189,1,189,3,189,2628,8,189,1,189,3,189,2631,8,189,1,189,3,189,2634, - 8,189,1,189,3,189,2637,8,189,1,189,3,189,2640,8,189,1,190,1,190, - 1,190,4,190,2645,8,190,11,190,12,190,2646,1,191,3,191,2650,8,191, - 1,191,1,191,1,192,1,192,1,192,1,192,3,192,2658,8,192,1,192,1,192, - 3,192,2662,8,192,1,192,1,192,1,192,1,192,1,192,3,192,2669,8,192, - 3,192,2671,8,192,1,193,3,193,2674,8,193,1,193,1,193,1,193,3,193, - 2679,8,193,1,193,3,193,2682,8,193,1,193,1,193,3,193,2686,8,193,1, - 194,1,194,1,194,3,194,2691,8,194,1,194,1,194,1,194,1,194,3,194,2697, - 8,194,1,195,1,195,1,195,1,195,1,196,1,196,3,196,2705,8,196,1,197, - 1,197,1,197,1,197,5,197,2711,8,197,10,197,12,197,2714,9,197,1,198, - 1,198,1,198,1,198,1,198,5,198,2721,8,198,10,198,12,198,2724,9,198, - 3,198,2726,8,198,1,198,1,198,3,198,2730,8,198,1,198,1,198,3,198, - 2734,8,198,1,198,1,198,1,198,3,198,2739,8,198,1,199,1,199,1,199, - 1,199,1,199,3,199,2746,8,199,1,200,1,200,5,200,2750,8,200,10,200, - 12,200,2753,9,200,1,200,3,200,2756,8,200,1,201,1,201,1,201,1,201, - 1,201,3,201,2763,8,201,1,201,1,201,1,201,3,201,2768,8,201,1,201, - 1,201,1,201,1,202,1,202,1,202,1,202,1,202,1,202,1,202,1,202,3,202, - 2781,8,202,1,203,1,203,1,203,1,203,1,203,1,203,3,203,2789,8,203, - 1,204,1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,3,207,2808,8,207,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,3,207,2818,8,207,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2831, - 8,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2841, - 8,208,1,208,1,208,3,208,2845,8,208,4,208,2847,8,208,11,208,12,208, - 2848,1,208,1,208,5,208,2853,8,208,10,208,12,208,2856,9,208,1,208, - 1,208,5,208,2860,8,208,10,208,12,208,2863,9,208,1,208,1,208,5,208, - 2867,8,208,10,208,12,208,2870,9,208,1,208,1,208,1,208,1,208,1,208, - 1,208,3,208,2878,8,208,1,208,1,208,1,208,1,208,1,208,3,208,2885, - 8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2905,8,208, - 1,208,3,208,2908,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,3,208,2922,8,208,1,209,1,209,1,209, - 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209, - 2937,8,209,1,209,1,209,3,209,2941,8,209,1,209,1,209,1,209,1,209, + 7,351,2,352,7,352,2,353,7,353,2,354,7,354,2,355,7,355,1,0,5,0,714, + 8,0,10,0,12,0,717,9,0,1,0,1,0,1,1,1,1,3,1,723,8,1,1,1,3,1,726,8, + 1,1,2,1,2,5,2,730,8,2,10,2,12,2,733,9,2,1,2,1,2,1,2,3,2,738,8,2, + 1,3,1,3,1,3,1,3,1,3,3,3,745,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 3,3,755,8,3,1,3,3,3,758,8,3,1,3,1,3,3,3,762,8,3,1,4,1,4,1,5,1,5, + 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,777,8,5,1,5,1,5,1,5,1,5, + 1,5,3,5,784,8,5,1,5,1,5,1,5,1,5,3,5,790,8,5,1,5,1,5,1,5,3,5,795, + 8,5,1,5,1,5,1,5,3,5,800,8,5,1,5,3,5,803,8,5,1,5,1,5,1,5,1,5,1,5, + 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,5,5, + 825,8,5,10,5,12,5,828,9,5,1,5,1,5,5,5,832,8,5,10,5,12,5,835,9,5, + 3,5,837,8,5,1,6,1,6,1,6,3,6,842,8,6,1,6,1,6,1,6,3,6,847,8,6,1,6, + 1,6,1,6,1,6,3,6,853,8,6,1,7,1,7,3,7,857,8,7,1,7,1,7,1,7,1,7,1,7, + 1,8,1,8,1,8,1,8,1,8,1,8,3,8,870,8,8,1,9,1,9,3,9,874,8,9,1,9,1,9, + 3,9,878,8,9,1,9,1,9,1,9,3,9,883,8,9,1,10,1,10,1,10,1,10,1,10,3,10, + 890,8,10,1,10,1,10,3,10,894,8,10,1,11,1,11,1,11,3,11,899,8,11,1, + 12,1,12,1,12,1,12,1,12,3,12,906,8,12,1,12,1,12,3,12,910,8,12,1,13, + 1,13,1,13,3,13,915,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,4,14,961,8,14, + 11,14,12,14,962,1,14,1,14,1,14,4,14,968,8,14,11,14,12,14,969,1,14, + 1,14,1,14,3,14,975,8,14,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1,17, + 1,17,1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21,1,21, + 3,21,998,8,21,1,21,1,21,3,21,1002,8,21,1,21,1,21,3,21,1006,8,21, + 1,21,3,21,1009,8,21,1,21,1,21,3,21,1013,8,21,1,21,1,21,1,21,3,21, + 1018,8,21,1,21,1,21,1,21,1,21,3,21,1024,8,21,1,21,1,21,3,21,1028, + 8,21,1,21,1,21,1,21,1,21,3,21,1034,8,21,3,21,1036,8,21,1,22,1,22, + 1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24,1047,8,24,1,24,1,24,3,24, + 1051,8,24,1,25,1,25,1,25,1,26,1,26,3,26,1058,8,26,1,26,1,26,1,26, + 1,26,1,26,1,26,3,26,1066,8,26,1,26,3,26,1069,8,26,1,27,1,27,1,27, + 3,27,1074,8,27,1,27,1,27,3,27,1078,8,27,1,27,3,27,1081,8,27,1,28, + 1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29,1091,8,29,1,29,1,29,1,29, + 1,29,1,29,1,29,3,29,1099,8,29,5,29,1101,8,29,10,29,12,29,1104,9, + 29,3,29,1106,8,29,1,30,1,30,3,30,1110,8,30,1,31,1,31,3,31,1114,8, + 31,1,31,3,31,1117,8,31,1,32,1,32,1,32,3,32,1122,8,32,1,32,1,32,1, + 32,1,32,3,32,1128,8,32,1,32,1,32,1,32,3,32,1133,8,32,1,32,1,32,1, + 32,3,32,1138,8,32,1,32,1,32,3,32,1142,8,32,1,33,1,33,1,33,1,33,1, + 33,1,33,1,33,1,33,1,33,3,33,1153,8,33,3,33,1155,8,33,1,33,1,33,3, + 33,1159,8,33,1,34,1,34,1,35,1,35,1,36,1,36,1,36,1,36,3,36,1169,8, + 36,1,36,1,36,3,36,1173,8,36,1,36,1,36,1,36,1,36,3,36,1179,8,36,1, + 36,3,36,1182,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1189,8,36,1,36,1, + 36,1,36,3,36,1194,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1202,8, + 36,1,36,1,36,1,36,3,36,1207,8,36,1,36,1,36,3,36,1211,8,36,1,36,1, + 36,1,36,1,36,1,36,1,36,3,36,1219,8,36,1,36,1,36,1,36,3,36,1224,8, + 36,1,36,1,36,1,36,1,36,3,36,1230,8,36,1,36,1,36,1,36,1,36,3,36,1236, + 8,36,1,36,3,36,1239,8,36,1,36,3,36,1242,8,36,1,36,3,36,1245,8,36, + 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1254,8,36,1,36,1,36,1,36, + 1,36,1,36,1,36,3,36,1262,8,36,1,36,1,36,1,36,3,36,1267,8,36,1,36, + 1,36,1,36,1,36,1,36,1,36,3,36,1275,8,36,1,36,1,36,1,36,1,36,1,36, + 3,36,1282,8,36,1,36,3,36,1285,8,36,1,36,3,36,1288,8,36,3,36,1290, + 8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1301,8,36, + 3,36,1303,8,36,1,36,3,36,1306,8,36,1,36,3,36,1309,8,36,1,36,3,36, + 1312,8,36,1,36,3,36,1315,8,36,1,36,3,36,1318,8,36,3,36,1320,8,36, + 1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1332,8,36, + 1,36,1,36,1,36,1,36,3,36,1338,8,36,1,36,1,36,1,36,1,36,1,36,1,36, + 3,36,1346,8,36,3,36,1348,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37, + 1,37,3,37,1358,8,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39, + 1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,43,1,43, + 1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,3,45,1391,8,45,1,45, + 1,45,1,45,3,45,1396,8,45,1,46,1,46,3,46,1400,8,46,1,46,1,46,3,46, + 1404,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1411,8,47,1,47,1,47,1,47, + 5,47,1416,8,47,10,47,12,47,1419,9,47,1,47,1,47,1,47,3,47,1424,8, + 47,1,48,1,48,3,48,1428,8,48,1,48,3,48,1431,8,48,1,48,1,48,1,48,5, + 48,1436,8,48,10,48,12,48,1439,9,48,1,48,1,48,1,48,1,49,1,49,1,49, + 1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52, + 1,52,3,52,1461,8,52,1,53,1,53,1,53,3,53,1466,8,53,1,53,1,53,3,53, + 1470,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55,1478,8,55,1,56,1,56, + 1,56,1,57,1,57,1,57,1,57,3,57,1487,8,57,1,57,1,57,1,57,1,57,1,57, + 3,57,1494,8,57,1,58,1,58,1,58,1,58,3,58,1500,8,58,1,58,1,58,1,58, + 1,58,1,58,3,58,1507,8,58,1,58,3,58,1510,8,58,1,58,1,58,1,58,1,58, + 3,58,1516,8,58,1,59,1,59,1,59,5,59,1521,8,59,10,59,12,59,1524,9, + 59,1,60,1,60,1,60,1,60,1,60,3,60,1531,8,60,1,61,1,61,1,62,1,62,1, + 62,5,62,1538,8,62,10,62,12,62,1541,9,62,1,63,1,63,1,63,1,63,1,63, + 1,63,3,63,1549,8,63,1,64,1,64,1,64,1,64,1,64,3,64,1556,8,64,1,65, + 1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,68,1,68, + 1,68,1,68,1,69,1,69,3,69,1576,8,69,1,69,1,69,1,69,1,69,1,69,3,69, + 1583,8,69,3,69,1585,8,69,1,70,1,70,1,70,5,70,1590,8,70,10,70,12, + 70,1593,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1,73,3,73,1602,8,73,1, + 73,1,73,1,73,1,73,1,73,1,73,3,73,1610,8,73,1,74,1,74,3,74,1614,8, + 74,1,74,1,74,3,74,1618,8,74,1,74,1,74,1,75,1,75,1,75,1,76,1,76,1, + 76,1,76,1,76,1,76,3,76,1631,8,76,1,76,1,76,1,76,1,77,1,77,1,77,1, + 77,3,77,1640,8,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,1,78,3,78,1656,8,78,1,78,1,78,3,78,1660,8,78,1, + 78,1,78,1,78,3,78,1665,8,78,1,78,1,78,1,78,3,78,1670,8,78,1,78,3, + 78,1673,8,78,1,78,3,78,1676,8,78,1,78,3,78,1679,8,78,1,78,3,78,1682, + 8,78,1,78,3,78,1685,8,78,1,79,1,79,1,79,3,79,1690,8,79,1,79,1,79, + 1,79,1,79,1,80,1,80,1,80,3,80,1699,8,80,1,80,1,80,3,80,1703,8,80, + 1,80,1,80,1,80,1,80,1,80,3,80,1710,8,80,1,80,3,80,1713,8,80,1,80, + 3,80,1716,8,80,1,80,3,80,1719,8,80,1,80,1,80,1,80,1,81,1,81,1,81, + 1,81,1,81,1,81,1,81,3,81,1731,8,81,1,81,1,81,1,82,1,82,3,82,1737, + 8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,85,1,85,1,85, + 1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,3,87, + 1763,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88,1771,8,88,1,88,1,88, + 3,88,1775,8,88,1,88,3,88,1778,8,88,1,88,3,88,1781,8,88,1,88,3,88, + 1784,8,88,1,88,3,88,1787,8,88,1,88,3,88,1790,8,88,1,88,3,88,1793, + 8,88,1,88,3,88,1796,8,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,3,89, + 1805,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1815,8,90, + 1,90,3,90,1818,8,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,92,1,93,1,93,1,93,1,93,1,93,3,93,1838,8,93,1,94, + 1,94,1,94,1,94,3,94,1844,8,94,1,94,1,94,1,94,1,94,3,94,1850,8,94, + 1,94,3,94,1853,8,94,3,94,1855,8,94,1,95,1,95,1,95,1,95,1,96,3,96, + 1862,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1869,8,97,1,98,1,98,1,98, + 1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100,3,100,1882,8,100,1, + 100,1,100,1,100,3,100,1887,8,100,1,100,1,100,1,101,1,101,1,101,5, + 101,1894,8,101,10,101,12,101,1897,9,101,1,102,1,102,1,102,5,102, + 1902,8,102,10,102,12,102,1905,9,102,1,103,1,103,1,103,1,103,1,103, + 3,103,1912,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,3,103,1925,8,103,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,3,104,1938,8,104,1,104,1,104, + 1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, + 1,105,3,105,1954,8,105,1,106,1,106,3,106,1958,8,106,1,107,1,107, + 1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109, + 3,109,1973,8,109,1,110,1,110,1,110,1,110,3,110,1979,8,110,1,110, + 3,110,1982,8,110,1,110,3,110,1985,8,110,1,110,3,110,1988,8,110,1, + 110,3,110,1991,8,110,1,111,1,111,3,111,1995,8,111,1,112,1,112,1, + 112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,5,114,2008,8, + 114,10,114,12,114,2011,9,114,3,114,2013,8,114,1,115,1,115,1,115, + 1,115,1,116,1,116,1,116,5,116,2022,8,116,10,116,12,116,2025,9,116, + 1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 3,118,2038,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120, + 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,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,123,1,123,3,123,2072,8,123,1,123,1,123,1,123,1,123,1,123,1,123, + 3,123,2080,8,123,1,123,1,123,1,123,3,123,2085,8,123,1,123,1,123, + 1,123,1,123,1,123,1,123,3,123,2093,8,123,1,123,1,123,1,123,3,123, + 2098,8,123,1,123,1,123,1,123,3,123,2103,8,123,1,124,1,124,1,124, + 5,124,2108,8,124,10,124,12,124,2111,9,124,1,125,1,125,1,125,5,125, + 2116,8,125,10,125,12,125,2119,9,125,1,126,1,126,1,126,5,126,2124, + 8,126,10,126,12,126,2127,9,126,1,127,1,127,1,127,5,127,2132,8,127, + 10,127,12,127,2135,9,127,1,128,1,128,1,128,3,128,2140,8,128,1,129, + 1,129,1,130,1,130,1,130,3,130,2147,8,130,1,131,1,131,1,132,1,132, + 1,132,1,132,1,132,1,132,3,132,2157,8,132,5,132,2159,8,132,10,132, + 12,132,2162,9,132,1,133,1,133,1,133,5,133,2167,8,133,10,133,12,133, + 2170,9,133,1,134,1,134,1,134,1,134,1,135,1,135,3,135,2178,8,135, + 1,135,3,135,2181,8,135,1,136,1,136,3,136,2185,8,136,1,137,1,137, + 1,138,1,138,1,138,3,138,2192,8,138,1,139,1,139,1,140,1,140,3,140, + 2198,8,140,1,140,1,140,3,140,2202,8,140,1,141,1,141,1,141,1,141, + 3,141,2208,8,141,1,142,1,142,3,142,2212,8,142,1,143,1,143,1,143, + 1,144,1,144,1,144,1,144,1,144,1,145,1,145,3,145,2224,8,145,1,145, + 1,145,1,145,1,145,1,145,1,145,1,145,3,145,2233,8,145,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,2244,8,146,1,147, + 1,147,3,147,2248,8,147,1,148,1,148,1,148,5,148,2253,8,148,10,148, + 12,148,2256,9,148,1,149,1,149,1,149,1,149,1,150,1,150,1,150,5,150, + 2265,8,150,10,150,12,150,2268,9,150,1,151,1,151,1,152,1,152,1,152, + 1,153,1,153,3,153,2277,8,153,1,153,3,153,2280,8,153,1,154,1,154, + 1,154,5,154,2285,8,154,10,154,12,154,2288,9,154,1,155,1,155,1,155, + 3,155,2293,8,155,1,156,1,156,3,156,2297,8,156,1,156,3,156,2300,8, + 156,1,156,3,156,2303,8,156,1,157,1,157,1,157,1,157,3,157,2309,8, + 157,1,158,1,158,3,158,2313,8,158,1,159,1,159,3,159,2317,8,159,1, + 160,1,160,1,160,3,160,2322,8,160,1,160,1,160,3,160,2326,8,160,1, + 161,1,161,3,161,2330,8,161,1,162,1,162,3,162,2334,8,162,1,162,1, + 162,1,162,1,162,1,162,1,162,3,162,2342,8,162,1,163,1,163,3,163,2346, + 8,163,1,163,1,163,3,163,2350,8,163,1,164,1,164,3,164,2354,8,164, + 1,165,1,165,3,165,2358,8,165,1,165,1,165,1,165,1,165,1,165,1,165, + 3,165,2366,8,165,1,166,1,166,3,166,2370,8,166,1,166,1,166,3,166, + 2374,8,166,1,167,1,167,1,167,1,167,1,167,1,167,3,167,2382,8,167, + 1,168,1,168,1,168,3,168,2387,8,168,1,169,1,169,1,169,3,169,2392, + 8,169,1,170,1,170,3,170,2396,8,170,1,171,1,171,3,171,2400,8,171, + 1,172,1,172,1,172,1,172,1,172,3,172,2407,8,172,1,173,1,173,1,174, + 1,174,1,174,5,174,2414,8,174,10,174,12,174,2417,9,174,1,175,1,175, + 1,175,1,175,1,175,3,175,2424,8,175,1,176,1,176,1,176,1,176,1,176, + 1,176,1,176,1,176,1,176,1,176,3,176,2436,8,176,1,176,1,176,1,176, + 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, + 1,176,1,176,3,176,2454,8,176,1,176,3,176,2457,8,176,1,176,1,176, + 1,176,1,176,3,176,2463,8,176,1,177,1,177,1,177,1,177,1,177,1,178, + 1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179, + 1,180,1,180,1,180,1,180,1,180,1,181,1,181,3,181,2489,8,181,1,182, + 3,182,2492,8,182,1,182,1,182,1,183,1,183,3,183,2498,8,183,1,184, + 1,184,1,184,1,184,5,184,2504,8,184,10,184,12,184,2507,9,184,1,185, + 1,185,1,185,1,185,1,185,3,185,2514,8,185,1,185,1,185,1,185,1,185, + 1,185,1,186,1,186,1,186,1,186,5,186,2525,8,186,10,186,12,186,2528, + 9,186,1,187,1,187,1,187,1,187,3,187,2534,8,187,1,187,3,187,2537, + 8,187,1,187,3,187,2540,8,187,1,187,3,187,2543,8,187,1,187,3,187, + 2546,8,187,1,187,3,187,2549,8,187,1,187,3,187,2552,8,187,1,187,3, + 187,2555,8,187,1,187,3,187,2558,8,187,1,187,3,187,2561,8,187,1,187, + 3,187,2564,8,187,1,187,1,187,1,187,3,187,2569,8,187,1,187,3,187, + 2572,8,187,1,187,3,187,2575,8,187,1,187,3,187,2578,8,187,1,187,3, + 187,2581,8,187,1,187,3,187,2584,8,187,1,187,3,187,2587,8,187,1,187, + 3,187,2590,8,187,1,187,3,187,2593,8,187,1,187,3,187,2596,8,187,1, + 187,3,187,2599,8,187,3,187,2601,8,187,1,188,1,188,1,188,1,188,3, + 188,2607,8,188,1,189,1,189,3,189,2611,8,189,1,189,3,189,2614,8,189, + 1,189,3,189,2617,8,189,1,189,3,189,2620,8,189,1,189,3,189,2623,8, + 189,1,189,3,189,2626,8,189,1,189,1,189,1,189,1,189,1,189,3,189,2633, + 8,189,1,190,1,190,3,190,2637,8,190,1,190,3,190,2640,8,190,1,190, + 3,190,2643,8,190,1,190,3,190,2646,8,190,1,190,3,190,2649,8,190,1, + 190,3,190,2652,8,190,1,191,1,191,1,191,4,191,2657,8,191,11,191,12, + 191,2658,1,192,3,192,2662,8,192,1,192,1,192,1,193,1,193,1,193,1, + 193,3,193,2670,8,193,1,193,1,193,3,193,2674,8,193,1,193,1,193,1, + 193,1,193,1,193,3,193,2681,8,193,3,193,2683,8,193,1,194,3,194,2686, + 8,194,1,194,1,194,1,194,3,194,2691,8,194,1,194,3,194,2694,8,194, + 1,194,1,194,3,194,2698,8,194,1,195,1,195,1,195,3,195,2703,8,195, + 1,195,1,195,1,195,1,195,3,195,2709,8,195,1,196,1,196,1,196,1,196, + 1,197,1,197,3,197,2717,8,197,1,198,1,198,1,198,1,198,5,198,2723, + 8,198,10,198,12,198,2726,9,198,1,199,1,199,1,199,1,199,1,199,5,199, + 2733,8,199,10,199,12,199,2736,9,199,3,199,2738,8,199,1,199,1,199, + 3,199,2742,8,199,1,199,1,199,3,199,2746,8,199,1,199,1,199,1,199, + 3,199,2751,8,199,1,200,1,200,1,200,1,200,1,200,3,200,2758,8,200, + 1,201,1,201,5,201,2762,8,201,10,201,12,201,2765,9,201,1,201,3,201, + 2768,8,201,1,202,1,202,1,202,1,202,1,202,3,202,2775,8,202,1,202, + 1,202,1,202,3,202,2780,8,202,1,202,1,202,1,202,1,203,1,203,1,203, + 1,203,1,203,1,203,1,203,1,203,3,203,2793,8,203,1,204,1,204,1,204, + 1,204,1,204,1,204,3,204,2801,8,204,1,205,1,205,1,205,1,206,1,206, + 1,206,1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,3,208,2820,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,3,208,2830,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,1,208,3,208,2843,8,208,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,3,209,2853,8,209,1,209,1,209,3,209,2857, + 8,209,4,209,2859,8,209,11,209,12,209,2860,1,209,1,209,5,209,2865, + 8,209,10,209,12,209,2868,9,209,1,209,1,209,5,209,2872,8,209,10,209, + 12,209,2875,9,209,1,209,1,209,5,209,2879,8,209,10,209,12,209,2882, + 9,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,2890,8,209,1,209, + 1,209,1,209,1,209,1,209,3,209,2897,8,209,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,3,209,2917,8,209,1,209,3,209,2920,8,209,1,209, 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 1,209,5,209,2959,8,209,10,209,12,209,2962,9,209,1,209,1,209,1,209, - 1,209,1,209,1,209,1,209,1,209,1,209,3,209,2973,8,209,1,209,1,209, - 1,209,1,209,3,209,2979,8,209,1,209,3,209,2982,8,209,1,209,3,209, - 2985,8,209,1,209,1,209,1,209,1,209,3,209,2991,8,209,1,209,1,209, - 1,209,1,209,3,209,2997,8,209,1,209,1,209,1,209,1,209,1,209,3,209, - 3004,8,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,3012,8,209, - 1,209,1,209,1,209,1,209,3,209,3018,8,209,1,209,1,209,3,209,3022, - 8,209,1,209,1,209,1,209,3,209,3027,8,209,1,209,3,209,3030,8,209, - 1,209,1,209,3,209,3034,8,209,1,209,1,209,1,209,1,209,1,209,3,209, - 3041,8,209,1,209,1,209,1,209,3,209,3046,8,209,1,209,1,209,1,209, - 3,209,3051,8,209,1,209,3,209,3054,8,209,3,209,3056,8,209,1,210,1, - 210,1,210,1,210,1,210,1,210,3,210,3064,8,210,1,210,1,210,1,210,1, - 210,1,210,1,210,3,210,3072,8,210,1,210,1,210,3,210,3076,8,210,4, - 210,3078,8,210,11,210,12,210,3079,1,210,1,210,3,210,3084,8,210,1, - 211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, - 1,211,1,211,1,211,1,211,3,211,3101,8,211,1,212,1,212,1,212,1,212, - 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212, - 3,212,3118,8,212,1,213,1,213,1,213,1,214,1,214,3,214,3125,8,214, - 1,214,1,214,1,214,1,214,1,214,5,214,3132,8,214,10,214,12,214,3135, - 9,214,1,214,1,214,3,214,3139,8,214,1,214,3,214,3142,8,214,1,214, - 3,214,3145,8,214,1,215,1,215,3,215,3149,8,215,1,215,1,215,1,215, - 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216, - 3164,8,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,1,217,3,217,3178,8,217,1,217,3,217,3181,8,217,1,218, - 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3192,8,218, - 1,219,1,219,3,219,3196,8,219,1,219,3,219,3199,8,219,1,219,3,219, - 3202,8,219,1,219,1,219,3,219,3206,8,219,1,219,1,219,1,219,3,219, - 3211,8,219,1,219,3,219,3214,8,219,1,219,3,219,3217,8,219,1,219,3, - 219,3220,8,219,1,219,3,219,3223,8,219,1,219,3,219,3226,8,219,1,219, - 1,219,1,219,1,219,3,219,3232,8,219,1,219,3,219,3235,8,219,1,219, - 3,219,3238,8,219,1,219,3,219,3241,8,219,1,219,3,219,3244,8,219,1, - 219,3,219,3247,8,219,1,219,3,219,3250,8,219,1,219,3,219,3253,8,219, - 1,219,3,219,3256,8,219,1,219,3,219,3259,8,219,1,219,1,219,3,219, - 3263,8,219,3,219,3265,8,219,1,219,1,219,1,219,1,219,3,219,3271,8, - 219,1,219,1,219,1,219,3,219,3276,8,219,1,219,3,219,3279,8,219,1, - 219,3,219,3282,8,219,1,219,3,219,3285,8,219,1,219,3,219,3288,8,219, - 1,219,1,219,1,219,1,219,3,219,3294,8,219,1,219,3,219,3297,8,219, - 1,219,3,219,3300,8,219,1,219,3,219,3303,8,219,1,219,3,219,3306,8, - 219,1,219,3,219,3309,8,219,1,219,3,219,3312,8,219,1,219,3,219,3315, - 8,219,1,219,3,219,3318,8,219,1,219,3,219,3321,8,219,1,219,1,219, - 3,219,3325,8,219,3,219,3327,8,219,3,219,3329,8,219,1,220,1,220,1, - 220,3,220,3334,8,220,1,220,1,220,1,220,3,220,3339,8,220,1,220,1, - 220,3,220,3343,8,220,1,220,1,220,3,220,3347,8,220,1,220,1,220,1, - 220,3,220,3352,8,220,1,221,1,221,1,221,3,221,3357,8,221,1,221,1, - 221,1,222,1,222,1,222,5,222,3364,8,222,10,222,12,222,3367,9,222, - 1,222,1,222,1,223,1,223,1,223,5,223,3374,8,223,10,223,12,223,3377, - 9,223,1,224,1,224,1,224,5,224,3382,8,224,10,224,12,224,3385,9,224, - 1,225,1,225,1,225,1,226,1,226,1,226,1,226,4,226,3394,8,226,11,226, - 12,226,3395,1,226,3,226,3399,8,226,1,227,1,227,5,227,3403,8,227, - 10,227,12,227,3406,9,227,1,227,1,227,5,227,3410,8,227,10,227,12, - 227,3413,9,227,1,227,1,227,5,227,3417,8,227,10,227,12,227,3420,9, - 227,1,227,1,227,5,227,3424,8,227,10,227,12,227,3427,9,227,1,227, - 1,227,1,227,1,227,3,227,3433,8,227,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,3,228,3442,8,228,5,228,3444,8,228,10,228,12,228,3447, - 9,228,1,229,1,229,1,229,1,229,3,229,3453,8,229,1,229,5,229,3456, - 8,229,10,229,12,229,3459,9,229,1,230,3,230,3462,8,230,1,230,1,230, - 3,230,3466,8,230,1,230,3,230,3469,8,230,1,230,3,230,3472,8,230,1, - 230,1,230,1,230,1,230,1,231,1,231,1,231,1,231,1,231,3,231,3483,8, - 231,1,231,1,231,3,231,3487,8,231,3,231,3489,8,231,1,231,3,231,3492, - 8,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232, - 3503,8,232,10,232,12,232,3506,9,232,3,232,3508,8,232,1,232,3,232, - 3511,8,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232, - 3521,8,232,10,232,12,232,3524,9,232,3,232,3526,8,232,1,232,1,232, - 1,232,1,232,1,232,3,232,3533,8,232,1,232,1,232,1,232,1,232,1,232, - 5,232,3540,8,232,10,232,12,232,3543,9,232,1,232,1,232,3,232,3547, - 8,232,3,232,3549,8,232,3,232,3551,8,232,1,233,1,233,1,234,1,234, - 1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,5,234,3566, - 8,234,10,234,12,234,3569,9,234,3,234,3571,8,234,1,234,1,234,1,234, - 1,234,1,234,1,234,3,234,3579,8,234,1,234,3,234,3582,8,234,1,235, - 1,235,3,235,3586,8,235,1,235,3,235,3589,8,235,1,235,3,235,3592,8, - 235,1,235,3,235,3595,8,235,1,235,3,235,3598,8,235,1,236,1,236,1, - 236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,3,236,3610,8,236,1, - 237,1,237,1,238,1,238,1,239,1,239,3,239,3618,8,239,1,240,1,240,1, - 240,1,240,1,240,3,240,3625,8,240,1,240,3,240,3628,8,240,1,241,1, - 241,1,241,1,241,1,241,3,241,3635,8,241,1,241,3,241,3638,8,241,1, - 242,1,242,1,242,3,242,3643,8,242,1,242,1,242,1,243,1,243,1,243,3, - 243,3650,8,243,1,243,1,243,1,244,1,244,1,244,1,244,3,244,3658,8, - 244,1,244,1,244,1,245,1,245,3,245,3664,8,245,1,245,1,245,1,245,3, - 245,3669,8,245,1,245,1,245,3,245,3673,8,245,1,246,1,246,1,246,3, - 246,3678,8,246,1,247,1,247,3,247,3682,8,247,1,248,1,248,1,248,1, - 248,1,248,3,248,3689,8,248,1,248,1,248,1,248,1,248,1,248,1,248,1, - 248,1,248,1,248,1,248,5,248,3701,8,248,10,248,12,248,3704,9,248, - 3,248,3706,8,248,1,248,1,248,1,249,1,249,1,249,1,250,1,250,1,250, - 1,250,5,250,3717,8,250,10,250,12,250,3720,9,250,1,250,1,250,1,250, - 1,250,1,250,5,250,3727,8,250,10,250,12,250,3730,9,250,3,250,3732, - 8,250,1,251,1,251,1,251,1,251,1,251,1,252,1,252,3,252,3741,8,252, - 1,252,1,252,1,252,1,252,1,252,5,252,3748,8,252,10,252,12,252,3751, - 9,252,3,252,3753,8,252,1,252,1,252,1,253,1,253,3,253,3759,8,253, - 1,253,3,253,3762,8,253,1,253,1,253,1,253,3,253,3767,8,253,1,253, - 3,253,3770,8,253,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254, - 1,254,1,254,1,254,3,254,3783,8,254,1,254,1,254,1,254,1,254,3,254, - 3789,8,254,3,254,3791,8,254,1,254,1,254,1,254,1,255,1,255,1,255, - 5,255,3799,8,255,10,255,12,255,3802,9,255,1,256,1,256,1,256,3,256, - 3807,8,256,1,256,3,256,3810,8,256,1,256,1,256,1,256,1,256,1,256, - 1,256,5,256,3818,8,256,10,256,12,256,3821,9,256,1,256,1,256,3,256, - 3825,8,256,3,256,3827,8,256,1,257,1,257,1,258,1,258,1,259,1,259, - 1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259,3843,8,259, - 1,259,1,259,1,259,1,259,3,259,3849,8,259,3,259,3851,8,259,1,259, - 1,259,1,259,1,260,1,260,3,260,3858,8,260,1,261,1,261,1,261,5,261, - 3863,8,261,10,261,12,261,3866,9,261,1,262,1,262,1,262,1,262,1,262, - 1,262,1,262,1,262,1,262,5,262,3877,8,262,10,262,12,262,3880,9,262, - 1,263,1,263,1,263,3,263,3885,8,263,1,263,3,263,3888,8,263,1,263, - 3,263,3891,8,263,1,263,3,263,3894,8,263,1,264,1,264,1,264,1,264, - 1,264,1,264,1,264,3,264,3903,8,264,1,264,1,264,1,264,1,264,1,264, - 3,264,3910,8,264,1,265,1,265,1,265,1,265,3,265,3916,8,265,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,3,266,3925,8,266,1,267,1,267, - 3,267,3929,8,267,1,267,1,267,1,267,1,267,5,267,3935,8,267,10,267, - 12,267,3938,9,267,1,267,1,267,1,268,1,268,1,268,1,268,1,268,3,268, - 3947,8,268,1,268,1,268,1,268,1,268,1,268,1,268,5,268,3955,8,268, - 10,268,12,268,3958,9,268,1,268,1,268,3,268,3962,8,268,1,269,1,269, - 3,269,3966,8,269,1,269,1,269,5,269,3970,8,269,10,269,12,269,3973, - 9,269,1,269,1,269,3,269,3977,8,269,1,270,1,270,1,270,1,271,1,271, - 1,271,1,272,1,272,3,272,3987,8,272,1,273,1,273,3,273,3991,8,273, - 1,273,3,273,3994,8,273,1,273,1,273,1,273,3,273,3999,8,273,1,273, - 3,273,4002,8,273,5,273,4004,8,273,10,273,12,273,4007,9,273,1,274, - 1,274,3,274,4011,8,274,1,275,1,275,1,275,1,275,1,276,1,276,1,276, - 4,276,4020,8,276,11,276,12,276,4021,3,276,4024,8,276,1,277,1,277, - 1,277,1,277,1,277,5,277,4031,8,277,10,277,12,277,4034,9,277,1,278, - 1,278,1,278,1,278,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280, - 1,281,1,281,1,281,1,281,1,281,1,281,5,281,4054,8,281,10,281,12,281, - 4057,9,281,1,281,1,281,1,281,1,281,1,281,5,281,4064,8,281,10,281, - 12,281,4067,9,281,3,281,4069,8,281,1,282,1,282,1,282,1,282,1,282, - 3,282,4076,8,282,1,282,3,282,4079,8,282,1,282,1,282,1,282,1,282, - 1,282,1,282,1,282,1,282,3,282,4089,8,282,1,282,1,282,1,282,5,282, - 4094,8,282,10,282,12,282,4097,9,282,3,282,4099,8,282,3,282,4101, - 8,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,3,282, - 4112,8,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,3,282, - 4122,8,282,3,282,4124,8,282,1,283,1,283,1,283,1,284,1,284,1,285, - 1,285,3,285,4133,8,285,1,286,1,286,1,286,3,286,4138,8,286,1,287, - 1,287,1,287,1,287,1,287,1,287,1,287,3,287,4147,8,287,1,287,1,287, - 1,288,1,288,1,288,1,288,1,288,1,288,1,288,4,288,4158,8,288,11,288, - 12,288,4159,1,288,1,288,3,288,4164,8,288,1,288,1,288,1,289,1,289, - 1,289,1,289,1,289,1,289,4,289,4174,8,289,11,289,12,289,4175,1,289, - 1,289,3,289,4180,8,289,1,289,1,289,1,290,1,290,1,290,1,290,1,290, - 3,290,4189,8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,3,292,4208, - 8,292,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293, - 1,293,1,293,1,293,1,293,5,293,4224,8,293,10,293,12,293,4227,9,293, - 1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4238, - 8,293,1,294,1,294,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295, - 1,295,1,295,1,295,3,295,4253,8,295,1,295,1,295,3,295,4257,8,295, + 3,209,2934,8,209,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, + 1,210,1,210,1,210,1,210,1,210,3,210,2949,8,210,1,210,1,210,3,210, + 2953,8,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, + 1,210,1,210,1,210,1,210,1,210,1,210,1,210,5,210,2971,8,210,10,210, + 12,210,2974,9,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, + 1,210,3,210,2985,8,210,1,210,1,210,1,210,1,210,3,210,2991,8,210, + 1,210,3,210,2994,8,210,1,210,3,210,2997,8,210,1,210,1,210,1,210, + 1,210,3,210,3003,8,210,1,210,1,210,1,210,1,210,3,210,3009,8,210, + 1,210,1,210,1,210,1,210,1,210,3,210,3016,8,210,1,210,1,210,1,210, + 1,210,1,210,1,210,3,210,3024,8,210,1,210,1,210,1,210,1,210,3,210, + 3030,8,210,1,210,1,210,3,210,3034,8,210,1,210,1,210,1,210,3,210, + 3039,8,210,1,210,3,210,3042,8,210,1,210,1,210,3,210,3046,8,210,1, + 210,1,210,1,210,1,210,1,210,3,210,3053,8,210,1,210,1,210,1,210,3, + 210,3058,8,210,1,210,1,210,1,210,3,210,3063,8,210,1,210,3,210,3066, + 8,210,3,210,3068,8,210,1,211,1,211,1,211,1,211,1,211,1,211,3,211, + 3076,8,211,1,211,1,211,1,211,1,211,1,211,1,211,3,211,3084,8,211, + 1,211,1,211,3,211,3088,8,211,4,211,3090,8,211,11,211,12,211,3091, + 1,211,1,211,3,211,3096,8,211,1,212,1,212,1,212,1,212,1,212,1,212, + 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,3,212,3113, + 8,212,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,3,213,3130,8,213,1,214,1,214,1,214, + 1,215,1,215,3,215,3137,8,215,1,215,1,215,1,215,1,215,1,215,5,215, + 3144,8,215,10,215,12,215,3147,9,215,1,215,1,215,3,215,3151,8,215, + 1,215,3,215,3154,8,215,1,215,3,215,3157,8,215,1,216,1,216,3,216, + 3161,8,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217, + 1,217,1,217,1,217,1,217,3,217,3176,8,217,1,217,1,217,1,218,1,218, + 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3190,8,218, + 1,218,3,218,3193,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219, + 1,219,1,219,3,219,3204,8,219,1,220,1,220,3,220,3208,8,220,1,220, + 3,220,3211,8,220,1,220,3,220,3214,8,220,1,220,1,220,3,220,3218,8, + 220,1,220,1,220,1,220,3,220,3223,8,220,1,220,3,220,3226,8,220,1, + 220,3,220,3229,8,220,1,220,3,220,3232,8,220,1,220,3,220,3235,8,220, + 1,220,3,220,3238,8,220,1,220,1,220,1,220,1,220,3,220,3244,8,220, + 1,220,3,220,3247,8,220,1,220,3,220,3250,8,220,1,220,3,220,3253,8, + 220,1,220,3,220,3256,8,220,1,220,3,220,3259,8,220,1,220,3,220,3262, + 8,220,1,220,3,220,3265,8,220,1,220,3,220,3268,8,220,1,220,3,220, + 3271,8,220,1,220,1,220,3,220,3275,8,220,3,220,3277,8,220,1,220,1, + 220,1,220,1,220,3,220,3283,8,220,1,220,1,220,1,220,3,220,3288,8, + 220,1,220,3,220,3291,8,220,1,220,3,220,3294,8,220,1,220,3,220,3297, + 8,220,1,220,3,220,3300,8,220,1,220,1,220,1,220,1,220,3,220,3306, + 8,220,1,220,3,220,3309,8,220,1,220,3,220,3312,8,220,1,220,3,220, + 3315,8,220,1,220,3,220,3318,8,220,1,220,3,220,3321,8,220,1,220,3, + 220,3324,8,220,1,220,3,220,3327,8,220,1,220,3,220,3330,8,220,1,220, + 3,220,3333,8,220,1,220,1,220,3,220,3337,8,220,3,220,3339,8,220,3, + 220,3341,8,220,1,221,1,221,1,221,3,221,3346,8,221,1,221,1,221,1, + 221,3,221,3351,8,221,1,221,1,221,3,221,3355,8,221,1,221,1,221,3, + 221,3359,8,221,1,221,1,221,1,221,3,221,3364,8,221,1,222,1,222,1, + 222,3,222,3369,8,222,1,222,1,222,1,223,1,223,1,223,5,223,3376,8, + 223,10,223,12,223,3379,9,223,1,223,1,223,1,224,1,224,1,224,5,224, + 3386,8,224,10,224,12,224,3389,9,224,1,225,1,225,1,225,5,225,3394, + 8,225,10,225,12,225,3397,9,225,1,226,1,226,1,226,1,227,1,227,1,227, + 1,227,4,227,3406,8,227,11,227,12,227,3407,1,227,3,227,3411,8,227, + 1,228,1,228,5,228,3415,8,228,10,228,12,228,3418,9,228,1,228,1,228, + 5,228,3422,8,228,10,228,12,228,3425,9,228,1,228,1,228,5,228,3429, + 8,228,10,228,12,228,3432,9,228,1,228,1,228,5,228,3436,8,228,10,228, + 12,228,3439,9,228,1,228,1,228,1,228,1,228,3,228,3445,8,228,1,229, + 1,229,1,229,1,229,1,229,1,229,1,229,1,229,3,229,3455,8,229,3,229, + 3457,8,229,1,229,1,229,3,229,3461,8,229,5,229,3463,8,229,10,229, + 12,229,3466,9,229,1,230,1,230,1,230,1,230,3,230,3472,8,230,1,230, + 5,230,3475,8,230,10,230,12,230,3478,9,230,1,231,3,231,3481,8,231, + 1,231,1,231,3,231,3485,8,231,1,231,3,231,3488,8,231,1,231,3,231, + 3491,8,231,1,231,1,231,1,231,1,231,1,232,1,232,1,232,1,232,1,232, + 3,232,3502,8,232,1,232,1,232,3,232,3506,8,232,3,232,3508,8,232,1, + 232,3,232,3511,8,232,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1, + 233,1,233,5,233,3522,8,233,10,233,12,233,3525,9,233,3,233,3527,8, + 233,1,233,3,233,3530,8,233,1,233,1,233,1,233,1,233,1,233,1,233,1, + 233,1,233,5,233,3540,8,233,10,233,12,233,3543,9,233,3,233,3545,8, + 233,1,233,1,233,1,233,1,233,1,233,3,233,3552,8,233,1,233,1,233,1, + 233,1,233,1,233,5,233,3559,8,233,10,233,12,233,3562,9,233,1,233, + 1,233,3,233,3566,8,233,3,233,3568,8,233,3,233,3570,8,233,1,234,1, + 234,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235, + 1,235,5,235,3585,8,235,10,235,12,235,3588,9,235,3,235,3590,8,235, + 1,235,1,235,1,235,1,235,1,235,1,235,3,235,3598,8,235,1,235,3,235, + 3601,8,235,1,236,1,236,3,236,3605,8,236,1,236,3,236,3608,8,236,1, + 236,3,236,3611,8,236,1,236,3,236,3614,8,236,1,236,3,236,3617,8,236, + 1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,3,237, + 3629,8,237,1,238,1,238,1,239,1,239,1,240,1,240,3,240,3637,8,240, + 1,241,1,241,1,241,1,241,1,241,3,241,3644,8,241,1,241,3,241,3647, + 8,241,1,242,1,242,1,242,1,242,1,242,3,242,3654,8,242,1,242,3,242, + 3657,8,242,1,243,1,243,1,243,3,243,3662,8,243,1,243,1,243,1,244, + 1,244,1,244,3,244,3669,8,244,1,244,1,244,1,245,1,245,1,245,1,245, + 3,245,3677,8,245,1,245,1,245,1,246,1,246,3,246,3683,8,246,1,246, + 1,246,1,246,3,246,3688,8,246,1,246,1,246,3,246,3692,8,246,1,247, + 1,247,1,247,3,247,3697,8,247,1,248,1,248,3,248,3701,8,248,1,249, + 1,249,1,249,1,249,1,249,3,249,3708,8,249,1,249,1,249,1,249,1,249, + 1,249,1,249,1,249,1,249,1,249,1,249,5,249,3720,8,249,10,249,12,249, + 3723,9,249,3,249,3725,8,249,1,249,1,249,1,250,1,250,1,250,3,250, + 3732,8,250,1,251,1,251,1,251,1,251,5,251,3738,8,251,10,251,12,251, + 3741,9,251,1,251,1,251,1,251,1,251,1,251,5,251,3748,8,251,10,251, + 12,251,3751,9,251,3,251,3753,8,251,1,252,1,252,1,252,1,252,1,252, + 1,253,1,253,3,253,3762,8,253,1,253,1,253,1,253,1,253,1,253,5,253, + 3769,8,253,10,253,12,253,3772,9,253,3,253,3774,8,253,1,253,1,253, + 1,254,1,254,3,254,3780,8,254,1,254,3,254,3783,8,254,1,254,1,254, + 1,254,3,254,3788,8,254,1,254,3,254,3791,8,254,1,255,1,255,1,255, + 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,3804,8,255, + 1,255,1,255,1,255,1,255,3,255,3810,8,255,3,255,3812,8,255,1,255, + 1,255,1,255,1,256,1,256,1,256,5,256,3820,8,256,10,256,12,256,3823, + 9,256,1,257,1,257,1,257,3,257,3828,8,257,1,257,3,257,3831,8,257, + 1,257,1,257,1,257,1,257,1,257,1,257,5,257,3839,8,257,10,257,12,257, + 3842,9,257,1,257,1,257,3,257,3846,8,257,3,257,3848,8,257,1,258,1, + 258,1,259,1,259,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260, + 1,260,1,260,3,260,3864,8,260,1,260,1,260,1,260,1,260,3,260,3870, + 8,260,3,260,3872,8,260,1,260,1,260,1,260,1,261,1,261,3,261,3879, + 8,261,1,262,1,262,1,262,5,262,3884,8,262,10,262,12,262,3887,9,262, + 1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,5,263,3898, + 8,263,10,263,12,263,3901,9,263,1,264,1,264,1,264,3,264,3906,8,264, + 1,264,3,264,3909,8,264,1,264,3,264,3912,8,264,1,264,3,264,3915,8, + 264,1,265,1,265,1,265,1,265,1,265,1,265,1,265,3,265,3924,8,265,1, + 265,1,265,1,265,1,265,1,265,3,265,3931,8,265,1,266,1,266,1,266,1, + 266,3,266,3937,8,266,1,267,1,267,1,267,1,267,1,267,1,267,1,267,3, + 267,3946,8,267,1,268,1,268,3,268,3950,8,268,1,268,1,268,1,268,1, + 268,5,268,3956,8,268,10,268,12,268,3959,9,268,1,268,1,268,1,269, + 1,269,1,269,1,269,1,269,3,269,3968,8,269,1,269,1,269,1,269,1,269, + 1,269,1,269,5,269,3976,8,269,10,269,12,269,3979,9,269,1,269,1,269, + 3,269,3983,8,269,1,270,1,270,3,270,3987,8,270,1,270,1,270,5,270, + 3991,8,270,10,270,12,270,3994,9,270,1,270,1,270,3,270,3998,8,270, + 1,271,1,271,1,271,3,271,4003,8,271,1,272,1,272,1,272,1,273,1,273, + 3,273,4010,8,273,1,274,1,274,3,274,4014,8,274,1,274,3,274,4017,8, + 274,1,274,1,274,1,274,3,274,4022,8,274,1,274,3,274,4025,8,274,5, + 274,4027,8,274,10,274,12,274,4030,9,274,1,275,1,275,3,275,4034,8, + 275,1,276,1,276,1,276,1,276,1,277,1,277,1,277,4,277,4043,8,277,11, + 277,12,277,4044,3,277,4047,8,277,1,278,1,278,1,278,1,278,1,278,5, + 278,4054,8,278,10,278,12,278,4057,9,278,1,279,1,279,1,279,1,279, + 1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,282,1,282,1,282, + 1,282,1,282,1,282,5,282,4077,8,282,10,282,12,282,4080,9,282,1,282, + 1,282,1,282,1,282,1,282,5,282,4087,8,282,10,282,12,282,4090,9,282, + 3,282,4092,8,282,1,283,1,283,1,283,1,283,1,283,3,283,4099,8,283, + 1,283,3,283,4102,8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,3,283,4112,8,283,1,283,1,283,1,283,5,283,4117,8,283,10,283, + 12,283,4120,9,283,3,283,4122,8,283,3,283,4124,8,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4135,8,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4145,8,283,3,283, + 4147,8,283,1,284,1,284,1,284,1,285,1,285,1,286,1,286,3,286,4156, + 8,286,1,287,1,287,1,287,3,287,4161,8,287,1,288,1,288,1,288,1,288, + 1,288,1,288,1,288,3,288,4170,8,288,1,288,1,288,1,289,1,289,1,289, + 1,289,1,289,1,289,1,289,4,289,4181,8,289,11,289,12,289,4182,1,289, + 1,289,3,289,4187,8,289,1,289,1,289,1,290,1,290,1,290,1,290,1,290, + 1,290,4,290,4197,8,290,11,290,12,290,4198,1,290,1,290,3,290,4203, + 8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,3,291,4212,8,291, + 1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,293,1,293, + 1,293,1,293,1,293,1,293,1,293,1,293,3,293,4231,8,293,1,294,1,294, + 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, + 1,294,5,294,4247,8,294,10,294,12,294,4250,9,294,1,294,1,294,1,294, + 1,294,1,294,1,294,1,294,1,294,1,294,3,294,4261,8,294,1,295,1,295, 1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296, - 1,296,1,296,1,296,3,296,4273,8,296,1,297,1,297,1,297,5,297,4278, - 8,297,10,297,12,297,4281,9,297,1,298,1,298,1,298,1,298,1,298,1,298, - 1,298,1,298,1,298,1,298,1,298,3,298,4294,8,298,1,299,5,299,4297, - 8,299,10,299,12,299,4300,9,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,5,299,4309,8,299,10,299,12,299,4312,9,299,1,300,1,300,1,300, - 5,300,4317,8,300,10,300,12,300,4320,9,300,1,301,1,301,1,301,5,301, - 4325,8,301,10,301,12,301,4328,9,301,1,302,1,302,1,302,5,302,4333, - 8,302,10,302,12,302,4336,9,302,1,303,1,303,1,303,5,303,4341,8,303, - 10,303,12,303,4344,9,303,1,304,1,304,1,304,5,304,4349,8,304,10,304, - 12,304,4352,9,304,1,305,1,305,1,305,5,305,4357,8,305,10,305,12,305, - 4360,9,305,1,306,1,306,1,307,1,307,1,307,1,307,1,308,1,308,3,308, - 4370,8,308,1,308,1,308,3,308,4374,8,308,1,309,1,309,1,309,1,309, - 1,309,1,309,3,309,4382,8,309,1,310,1,310,1,310,1,310,1,310,1,310, - 1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,3,310,4398,8,310, - 1,311,1,311,3,311,4402,8,311,1,312,1,312,1,312,3,312,4407,8,312, - 1,313,1,313,1,313,1,313,1,314,1,314,1,314,1,314,1,314,1,314,1,314, - 3,314,4420,8,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,5,315, - 4429,8,315,10,315,12,315,4432,9,315,1,316,1,316,1,316,1,316,1,316, - 1,316,3,316,4440,8,316,1,317,5,317,4443,8,317,10,317,12,317,4446, - 9,317,1,317,1,317,1,317,3,317,4451,8,317,1,318,1,318,1,318,5,318, - 4456,8,318,10,318,12,318,4459,9,318,1,319,1,319,3,319,4463,8,319, - 1,320,1,320,1,320,1,320,1,320,5,320,4470,8,320,10,320,12,320,4473, - 9,320,1,320,1,320,1,321,1,321,1,321,3,321,4480,8,321,1,322,1,322, - 1,322,1,322,5,322,4486,8,322,10,322,12,322,4489,9,322,1,322,1,322, - 1,323,1,323,1,323,3,323,4496,8,323,1,323,1,323,1,324,1,324,1,325, - 1,325,1,326,1,326,3,326,4506,8,326,1,327,1,327,1,327,3,327,4511, - 8,327,1,328,1,328,1,329,1,329,1,330,1,330,1,331,1,331,1,331,1,331, - 1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, - 1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, - 1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, - 1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, - 1,331,1,331,1,331,3,331,4570,8,331,1,332,1,332,1,332,1,332,3,332, - 4576,8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,3,332,4585, - 8,332,3,332,4587,8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,5,332,4601,8,332,10,332,12,332,4604, - 9,332,1,332,1,332,1,332,1,332,1,332,3,332,4611,8,332,1,332,1,332, - 3,332,4615,8,332,3,332,4617,8,332,1,332,1,332,1,332,1,332,3,332, - 4623,8,332,1,332,1,332,1,332,3,332,4628,8,332,1,332,1,332,1,332, + 3,296,4276,8,296,1,296,1,296,3,296,4280,8,296,1,297,1,297,1,297, + 1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297, + 3,297,4296,8,297,1,298,1,298,1,298,5,298,4301,8,298,10,298,12,298, + 4304,9,298,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,3,299,4317,8,299,1,300,5,300,4320,8,300,10,300,12,300, + 4323,9,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,5,300,4332, + 8,300,10,300,12,300,4335,9,300,1,301,1,301,1,301,5,301,4340,8,301, + 10,301,12,301,4343,9,301,1,302,1,302,1,302,5,302,4348,8,302,10,302, + 12,302,4351,9,302,1,303,1,303,1,303,5,303,4356,8,303,10,303,12,303, + 4359,9,303,1,304,1,304,1,304,5,304,4364,8,304,10,304,12,304,4367, + 9,304,1,305,1,305,1,305,5,305,4372,8,305,10,305,12,305,4375,9,305, + 1,306,1,306,1,306,5,306,4380,8,306,10,306,12,306,4383,9,306,1,307, + 1,307,1,308,1,308,1,308,1,308,1,309,1,309,3,309,4393,8,309,1,309, + 1,309,3,309,4397,8,309,1,310,1,310,1,310,1,310,1,310,1,310,3,310, + 4405,8,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, + 1,311,1,311,1,311,1,311,1,311,3,311,4421,8,311,1,312,1,312,3,312, + 4425,8,312,1,313,1,313,1,313,3,313,4430,8,313,1,314,1,314,1,314, + 1,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,3,315,4443,8,315, + 1,316,1,316,1,316,1,316,1,316,1,316,1,316,5,316,4452,8,316,10,316, + 12,316,4455,9,316,1,317,1,317,1,317,1,317,1,317,1,317,3,317,4463, + 8,317,1,318,5,318,4466,8,318,10,318,12,318,4469,9,318,1,318,1,318, + 1,318,3,318,4474,8,318,1,319,1,319,1,319,5,319,4479,8,319,10,319, + 12,319,4482,9,319,1,320,1,320,3,320,4486,8,320,1,321,1,321,1,321, + 1,321,1,321,5,321,4493,8,321,10,321,12,321,4496,9,321,1,321,1,321, + 1,322,1,322,1,322,3,322,4503,8,322,1,323,1,323,1,323,1,323,5,323, + 4509,8,323,10,323,12,323,4512,9,323,1,323,1,323,1,324,1,324,1,324, + 3,324,4519,8,324,1,324,1,324,1,325,1,325,1,326,1,326,1,327,1,327, + 3,327,4529,8,327,1,328,1,328,1,328,3,328,4534,8,328,1,329,1,329, + 1,330,1,330,1,331,1,331,1,332,1,332,1,332,1,332,1,332,1,332,1,332, 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,3,332,4645,8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,3,332,4671,8,332,1,332,1,332, - 1,332,3,332,4676,8,332,3,332,4678,8,332,1,332,1,332,1,332,1,332, 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 3,332,4706,8,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,3,332,4723,8,332,1,332, - 1,332,1,332,3,332,4728,8,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,3,332,4737,8,332,1,333,1,333,1,334,1,334,1,334,1,334,1,334, - 1,334,1,334,3,334,4748,8,334,1,335,1,335,1,335,5,335,4753,8,335, - 10,335,12,335,4756,9,335,1,336,1,336,1,336,3,336,4761,8,336,1,337, - 1,337,1,337,3,337,4766,8,337,1,338,1,338,1,339,1,339,1,340,1,340, - 1,341,1,341,1,342,1,342,1,343,1,343,1,344,1,344,1,345,1,345,1,346, - 1,346,1,347,1,347,1,348,1,348,1,348,5,348,4791,8,348,10,348,12,348, - 4794,9,348,1,349,1,349,1,349,1,349,1,350,1,350,1,350,1,350,3,350, - 4804,8,350,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351, - 1,351,1,351,1,351,3,351,4818,8,351,1,352,1,352,1,352,5,352,4823, - 8,352,10,352,12,352,4826,9,352,1,352,1,827,0,353,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,120,122,124,126,128,130,132, - 134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164, - 166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196, - 198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228, - 230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260, - 262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292, - 294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324, - 326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356, - 358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388, - 390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420, - 422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452, - 454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484, - 486,488,490,492,494,496,498,500,502,504,506,508,510,512,514,516, - 518,520,522,524,526,528,530,532,534,536,538,540,542,544,546,548, - 550,552,554,556,558,560,562,564,566,568,570,572,574,576,578,580, - 582,584,586,588,590,592,594,596,598,600,602,604,606,608,610,612, - 614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644, - 646,648,650,652,654,656,658,660,662,664,666,668,670,672,674,676, - 678,680,682,684,686,688,690,692,694,696,698,700,702,704,0,61,2,0, - 57,57,172,172,4,0,91,91,121,121,226,226,325,325,1,0,395,396,2,0, - 50,50,346,346,2,0,34,34,282,282,1,0,89,90,2,0,139,139,154,154,2, - 0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0,114,114,307,307, - 11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161,190,190,299,299, - 309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15,128,128,170,170, - 1,0,141,142,2,0,30,30,351,351,2,0,217,217,373,373,2,0,214,214,272, - 272,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39,376,376,4,0,112, - 112,164,164,205,205,356,356,2,0,7,7,96,96,2,0,125,125,350,350,2, - 0,225,225,391,391,2,0,42,42,315,315,2,0,189,189,196,196,2,0,426, - 426,431,431,2,0,140,140,285,285,3,0,12,12,231,231,300,300,2,0,241, - 241,292,292,2,0,198,198,268,268,2,0,260,260,292,292,2,0,354,354, - 431,431,2,0,133,133,247,247,2,0,152,152,281,281,3,0,413,414,418, - 418,420,420,2,0,412,412,415,417,1,0,413,414,4,0,184,184,270,270, - 286,286,408,411,2,0,7,7,13,13,3,0,7,7,13,13,313,313,3,0,184,184, - 270,270,286,286,4,0,125,125,219,219,350,350,360,360,2,0,405,405, - 407,411,24,0,11,11,16,16,25,28,35,35,100,100,131,132,151,151,154, - 154,162,163,184,184,198,198,216,216,228,228,264,264,270,270,286, - 286,311,311,323,324,340,340,357,357,383,383,405,417,419,421,423, - 423,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30,31,33,34,37,38,40,44, - 46,47,49,50,52,53,56,57,59,59,66,66,68,68,72,77,79,79,83,85,87,89, - 91,95,97,99,103,104,106,107,109,111,114,116,118,121,127,130,137, - 138,142,142,147,150,152,152,155,156,158,160,168,170,172,177,182, - 183,185,187,189,193,195,197,199,202,204,204,206,209,211,212,214, - 215,217,218,220,220,222,223,226,227,232,233,235,236,238,240,243, - 246,252,252,254,255,257,259,261,262,265,267,271,282,284,284,287, - 288,293,298,300,303,305,310,312,312,314,317,319,325,327,328,330, - 330,332,334,339,340,342,342,344,346,349,349,352,353,355,355,357, - 357,360,364,366,368,371,373,375,375,377,382,385,385,388,394,13,0, - 16,16,26,28,63,64,71,71,100,100,131,131,145,145,151,151,162,163, - 198,198,264,264,311,311,337,337,2,0,4,4,101,101,2,0,9,9,58,58,3, - 0,14,14,144,144,369,369,1,0,106,107,1,0,94,95,1,0,392,393,1,0,208, - 209,1,0,381,382,1,0,73,74,1,0,148,149,1,0,206,207,1,0,297,298,1, - 0,80,82,5412,0,709,1,0,0,0,2,716,1,0,0,0,4,721,1,0,0,0,6,755,1,0, - 0,0,8,757,1,0,0,0,10,830,1,0,0,0,12,832,1,0,0,0,14,848,1,0,0,0,16, - 857,1,0,0,0,18,865,1,0,0,0,20,878,1,0,0,0,22,889,1,0,0,0,24,894, - 1,0,0,0,26,905,1,0,0,0,28,968,1,0,0,0,30,970,1,0,0,0,32,973,1,0, - 0,0,34,977,1,0,0,0,36,979,1,0,0,0,38,982,1,0,0,0,40,985,1,0,0,0, - 42,1029,1,0,0,0,44,1031,1,0,0,0,46,1034,1,0,0,0,48,1037,1,0,0,0, - 50,1046,1,0,0,0,52,1049,1,0,0,0,54,1064,1,0,0,0,56,1076,1,0,0,0, - 58,1081,1,0,0,0,60,1101,1,0,0,0,62,1105,1,0,0,0,64,1112,1,0,0,0, - 66,1137,1,0,0,0,68,1154,1,0,0,0,70,1156,1,0,0,0,72,1341,1,0,0,0, - 74,1351,1,0,0,0,76,1353,1,0,0,0,78,1358,1,0,0,0,80,1363,1,0,0,0, - 82,1365,1,0,0,0,84,1369,1,0,0,0,86,1373,1,0,0,0,88,1377,1,0,0,0, - 90,1381,1,0,0,0,92,1391,1,0,0,0,94,1402,1,0,0,0,96,1419,1,0,0,0, - 98,1437,1,0,0,0,100,1442,1,0,0,0,102,1445,1,0,0,0,104,1449,1,0,0, - 0,106,1456,1,0,0,0,108,1465,1,0,0,0,110,1471,1,0,0,0,112,1473,1, - 0,0,0,114,1487,1,0,0,0,116,1509,1,0,0,0,118,1511,1,0,0,0,120,1519, - 1,0,0,0,122,1526,1,0,0,0,124,1528,1,0,0,0,126,1542,1,0,0,0,128,1549, - 1,0,0,0,130,1551,1,0,0,0,132,1555,1,0,0,0,134,1559,1,0,0,0,136,1563, - 1,0,0,0,138,1567,1,0,0,0,140,1580,1,0,0,0,142,1588,1,0,0,0,144,1591, - 1,0,0,0,146,1593,1,0,0,0,148,1605,1,0,0,0,150,1615,1,0,0,0,152,1618, - 1,0,0,0,154,1629,1,0,0,0,156,1637,1,0,0,0,158,1680,1,0,0,0,160,1689, - 1,0,0,0,162,1717,1,0,0,0,164,1730,1,0,0,0,166,1732,1,0,0,0,168,1738, - 1,0,0,0,170,1741,1,0,0,0,172,1747,1,0,0,0,174,1753,1,0,0,0,176,1760, - 1,0,0,0,178,1794,1,0,0,0,180,1802,1,0,0,0,182,1815,1,0,0,0,184,1820, - 1,0,0,0,186,1831,1,0,0,0,188,1848,1,0,0,0,190,1850,1,0,0,0,192,1855, - 1,0,0,0,194,1862,1,0,0,0,196,1864,1,0,0,0,198,1867,1,0,0,0,200,1870, - 1,0,0,0,202,1884,1,0,0,0,204,1892,1,0,0,0,206,1918,1,0,0,0,208,1920, - 1,0,0,0,210,1937,1,0,0,0,212,1951,1,0,0,0,214,1953,1,0,0,0,216,1956, - 1,0,0,0,218,1959,1,0,0,0,220,1968,1,0,0,0,222,1988,1,0,0,0,224,1990, - 1,0,0,0,226,1993,1,0,0,0,228,2006,1,0,0,0,230,2008,1,0,0,0,232,2012, - 1,0,0,0,234,2020,1,0,0,0,236,2024,1,0,0,0,238,2033,1,0,0,0,240,2039, - 1,0,0,0,242,2045,1,0,0,0,244,2050,1,0,0,0,246,2096,1,0,0,0,248,2098, - 1,0,0,0,250,2106,1,0,0,0,252,2114,1,0,0,0,254,2122,1,0,0,0,256,2132, - 1,0,0,0,258,2134,1,0,0,0,260,2136,1,0,0,0,262,2138,1,0,0,0,264,2151, - 1,0,0,0,266,2159,1,0,0,0,268,2168,1,0,0,0,270,2172,1,0,0,0,272,2174, - 1,0,0,0,274,2179,1,0,0,0,276,2181,1,0,0,0,278,2185,1,0,0,0,280,2191, - 1,0,0,0,282,2199,1,0,0,0,284,2201,1,0,0,0,286,2204,1,0,0,0,288,2211, - 1,0,0,0,290,2222,1,0,0,0,292,2235,1,0,0,0,294,2237,1,0,0,0,296,2245, - 1,0,0,0,298,2249,1,0,0,0,300,2257,1,0,0,0,302,2259,1,0,0,0,304,2262, - 1,0,0,0,306,2269,1,0,0,0,308,2277,1,0,0,0,310,2284,1,0,0,0,312,2292, - 1,0,0,0,314,2300,1,0,0,0,316,2304,1,0,0,0,318,2306,1,0,0,0,320,2317, - 1,0,0,0,322,2321,1,0,0,0,324,2333,1,0,0,0,326,2341,1,0,0,0,328,2345, - 1,0,0,0,330,2357,1,0,0,0,332,2369,1,0,0,0,334,2374,1,0,0,0,336,2379, - 1,0,0,0,338,2381,1,0,0,0,340,2385,1,0,0,0,342,2389,1,0,0,0,344,2396, - 1,0,0,0,346,2398,1,0,0,0,348,2411,1,0,0,0,350,2450,1,0,0,0,352,2452, - 1,0,0,0,354,2457,1,0,0,0,356,2462,1,0,0,0,358,2469,1,0,0,0,360,2474, - 1,0,0,0,362,2479,1,0,0,0,364,2485,1,0,0,0,366,2487,1,0,0,0,368,2496, - 1,0,0,0,370,2508,1,0,0,0,372,2588,1,0,0,0,374,2594,1,0,0,0,376,2620, - 1,0,0,0,378,2622,1,0,0,0,380,2644,1,0,0,0,382,2649,1,0,0,0,384,2653, - 1,0,0,0,386,2685,1,0,0,0,388,2687,1,0,0,0,390,2698,1,0,0,0,392,2704, - 1,0,0,0,394,2706,1,0,0,0,396,2738,1,0,0,0,398,2745,1,0,0,0,400,2751, - 1,0,0,0,402,2757,1,0,0,0,404,2772,1,0,0,0,406,2782,1,0,0,0,408,2790, - 1,0,0,0,410,2793,1,0,0,0,412,2796,1,0,0,0,414,2799,1,0,0,0,416,2921, - 1,0,0,0,418,3055,1,0,0,0,420,3083,1,0,0,0,422,3100,1,0,0,0,424,3117, - 1,0,0,0,426,3119,1,0,0,0,428,3122,1,0,0,0,430,3148,1,0,0,0,432,3153, - 1,0,0,0,434,3180,1,0,0,0,436,3191,1,0,0,0,438,3328,1,0,0,0,440,3330, - 1,0,0,0,442,3353,1,0,0,0,444,3365,1,0,0,0,446,3370,1,0,0,0,448,3378, - 1,0,0,0,450,3386,1,0,0,0,452,3398,1,0,0,0,454,3432,1,0,0,0,456,3434, - 1,0,0,0,458,3452,1,0,0,0,460,3461,1,0,0,0,462,3491,1,0,0,0,464,3550, - 1,0,0,0,466,3552,1,0,0,0,468,3581,1,0,0,0,470,3583,1,0,0,0,472,3599, - 1,0,0,0,474,3611,1,0,0,0,476,3613,1,0,0,0,478,3617,1,0,0,0,480,3627, - 1,0,0,0,482,3637,1,0,0,0,484,3642,1,0,0,0,486,3649,1,0,0,0,488,3653, - 1,0,0,0,490,3672,1,0,0,0,492,3677,1,0,0,0,494,3679,1,0,0,0,496,3683, - 1,0,0,0,498,3709,1,0,0,0,500,3712,1,0,0,0,502,3733,1,0,0,0,504,3738, - 1,0,0,0,506,3769,1,0,0,0,508,3771,1,0,0,0,510,3795,1,0,0,0,512,3826, - 1,0,0,0,514,3828,1,0,0,0,516,3830,1,0,0,0,518,3832,1,0,0,0,520,3857, - 1,0,0,0,522,3859,1,0,0,0,524,3867,1,0,0,0,526,3893,1,0,0,0,528,3895, - 1,0,0,0,530,3915,1,0,0,0,532,3917,1,0,0,0,534,3928,1,0,0,0,536,3941, - 1,0,0,0,538,3976,1,0,0,0,540,3978,1,0,0,0,542,3981,1,0,0,0,544,3986, - 1,0,0,0,546,3988,1,0,0,0,548,4010,1,0,0,0,550,4012,1,0,0,0,552,4016, - 1,0,0,0,554,4025,1,0,0,0,556,4035,1,0,0,0,558,4039,1,0,0,0,560,4043, - 1,0,0,0,562,4047,1,0,0,0,564,4123,1,0,0,0,566,4125,1,0,0,0,568,4128, - 1,0,0,0,570,4132,1,0,0,0,572,4137,1,0,0,0,574,4139,1,0,0,0,576,4150, - 1,0,0,0,578,4167,1,0,0,0,580,4183,1,0,0,0,582,4192,1,0,0,0,584,4207, - 1,0,0,0,586,4237,1,0,0,0,588,4239,1,0,0,0,590,4256,1,0,0,0,592,4272, - 1,0,0,0,594,4274,1,0,0,0,596,4293,1,0,0,0,598,4298,1,0,0,0,600,4313, - 1,0,0,0,602,4321,1,0,0,0,604,4329,1,0,0,0,606,4337,1,0,0,0,608,4345, - 1,0,0,0,610,4353,1,0,0,0,612,4361,1,0,0,0,614,4363,1,0,0,0,616,4373, - 1,0,0,0,618,4381,1,0,0,0,620,4397,1,0,0,0,622,4401,1,0,0,0,624,4406, - 1,0,0,0,626,4408,1,0,0,0,628,4419,1,0,0,0,630,4421,1,0,0,0,632,4439, - 1,0,0,0,634,4444,1,0,0,0,636,4452,1,0,0,0,638,4460,1,0,0,0,640,4464, - 1,0,0,0,642,4476,1,0,0,0,644,4481,1,0,0,0,646,4492,1,0,0,0,648,4499, - 1,0,0,0,650,4501,1,0,0,0,652,4505,1,0,0,0,654,4507,1,0,0,0,656,4512, - 1,0,0,0,658,4514,1,0,0,0,660,4516,1,0,0,0,662,4569,1,0,0,0,664,4736, - 1,0,0,0,666,4738,1,0,0,0,668,4747,1,0,0,0,670,4749,1,0,0,0,672,4760, - 1,0,0,0,674,4762,1,0,0,0,676,4767,1,0,0,0,678,4769,1,0,0,0,680,4771, - 1,0,0,0,682,4773,1,0,0,0,684,4775,1,0,0,0,686,4777,1,0,0,0,688,4779, - 1,0,0,0,690,4781,1,0,0,0,692,4783,1,0,0,0,694,4785,1,0,0,0,696,4787, - 1,0,0,0,698,4795,1,0,0,0,700,4803,1,0,0,0,702,4817,1,0,0,0,704,4819, - 1,0,0,0,706,708,3,2,1,0,707,706,1,0,0,0,708,711,1,0,0,0,709,707, - 1,0,0,0,709,710,1,0,0,0,710,712,1,0,0,0,711,709,1,0,0,0,712,713, - 5,0,0,1,713,1,1,0,0,0,714,717,3,4,2,0,715,717,3,10,5,0,716,714,1, - 0,0,0,716,715,1,0,0,0,717,719,1,0,0,0,718,720,5,398,0,0,719,718, - 1,0,0,0,719,720,1,0,0,0,720,3,1,0,0,0,721,731,5,119,0,0,722,724, - 3,6,3,0,723,722,1,0,0,0,724,727,1,0,0,0,725,723,1,0,0,0,725,726, - 1,0,0,0,726,728,1,0,0,0,727,725,1,0,0,0,728,732,3,10,5,0,729,730, - 5,284,0,0,730,732,3,362,181,0,731,725,1,0,0,0,731,729,1,0,0,0,732, - 5,1,0,0,0,733,756,5,122,0,0,734,756,5,138,0,0,735,756,5,88,0,0,736, - 738,5,37,0,0,737,739,7,0,0,0,738,737,1,0,0,0,738,739,1,0,0,0,739, - 756,1,0,0,0,740,756,5,192,0,0,741,756,5,21,0,0,742,756,5,10,0,0, - 743,756,5,275,0,0,744,756,5,191,0,0,745,756,5,19,0,0,746,748,5,377, - 0,0,747,749,5,225,0,0,748,747,1,0,0,0,748,749,1,0,0,0,749,751,1, - 0,0,0,750,752,3,8,4,0,751,750,1,0,0,0,751,752,1,0,0,0,752,756,1, - 0,0,0,753,756,5,79,0,0,754,756,5,78,0,0,755,733,1,0,0,0,755,734, - 1,0,0,0,755,735,1,0,0,0,755,736,1,0,0,0,755,740,1,0,0,0,755,741, - 1,0,0,0,755,742,1,0,0,0,755,743,1,0,0,0,755,744,1,0,0,0,755,745, - 1,0,0,0,755,746,1,0,0,0,755,753,1,0,0,0,755,754,1,0,0,0,756,7,1, - 0,0,0,757,758,7,1,0,0,758,9,1,0,0,0,759,831,3,362,181,0,760,831, - 3,12,6,0,761,831,3,16,8,0,762,831,3,18,9,0,763,831,3,20,10,0,764, - 831,3,24,12,0,765,766,5,277,0,0,766,767,5,320,0,0,767,770,3,474, - 237,0,768,769,5,387,0,0,769,771,3,230,115,0,770,768,1,0,0,0,770, - 771,1,0,0,0,771,831,1,0,0,0,772,831,3,28,14,0,773,774,5,86,0,0,774, - 775,5,139,0,0,775,777,3,480,240,0,776,778,3,498,249,0,777,776,1, - 0,0,0,777,778,1,0,0,0,778,831,1,0,0,0,779,780,5,365,0,0,780,781, - 3,480,240,0,781,783,3,394,197,0,782,784,3,498,249,0,783,782,1,0, - 0,0,783,784,1,0,0,0,784,831,1,0,0,0,785,831,3,396,198,0,786,788, - 5,203,0,0,787,789,5,436,0,0,788,787,1,0,0,0,788,789,1,0,0,0,789, - 790,1,0,0,0,790,791,5,166,0,0,791,796,3,480,240,0,792,794,5,17,0, - 0,793,792,1,0,0,0,793,794,1,0,0,0,794,795,1,0,0,0,795,797,3,652, - 326,0,796,793,1,0,0,0,796,797,1,0,0,0,797,798,1,0,0,0,798,799,5, - 370,0,0,799,800,3,458,229,0,800,801,5,224,0,0,801,802,3,594,297, - 0,802,803,3,400,200,0,803,831,1,0,0,0,804,805,5,249,0,0,805,806, - 3,652,326,0,806,807,5,139,0,0,807,808,3,362,181,0,808,831,1,0,0, - 0,809,810,5,115,0,0,810,811,3,652,326,0,811,812,5,370,0,0,812,813, - 3,298,149,0,813,831,1,0,0,0,814,815,5,304,0,0,815,820,3,662,331, - 0,816,817,7,2,0,0,817,819,3,662,331,0,818,816,1,0,0,0,819,822,1, - 0,0,0,820,818,1,0,0,0,820,821,1,0,0,0,821,823,1,0,0,0,822,820,1, - 0,0,0,823,827,5,405,0,0,824,826,9,0,0,0,825,824,1,0,0,0,826,829, - 1,0,0,0,827,828,1,0,0,0,827,825,1,0,0,0,828,831,1,0,0,0,829,827, - 1,0,0,0,830,759,1,0,0,0,830,760,1,0,0,0,830,761,1,0,0,0,830,762, - 1,0,0,0,830,763,1,0,0,0,830,764,1,0,0,0,830,765,1,0,0,0,830,772, - 1,0,0,0,830,773,1,0,0,0,830,779,1,0,0,0,830,785,1,0,0,0,830,786, - 1,0,0,0,830,804,1,0,0,0,830,809,1,0,0,0,830,814,1,0,0,0,831,11,1, - 0,0,0,832,833,5,187,0,0,833,835,5,66,0,0,834,836,5,188,0,0,835,834, - 1,0,0,0,835,836,1,0,0,0,836,837,1,0,0,0,837,838,5,158,0,0,838,840, - 5,426,0,0,839,841,5,235,0,0,840,839,1,0,0,0,840,841,1,0,0,0,841, - 842,1,0,0,0,842,843,5,166,0,0,843,844,5,329,0,0,844,846,3,638,319, - 0,845,847,3,56,28,0,846,845,1,0,0,0,846,847,1,0,0,0,847,13,1,0,0, - 0,848,850,5,134,0,0,849,851,5,204,0,0,850,849,1,0,0,0,850,851,1, - 0,0,0,851,852,1,0,0,0,852,853,5,279,0,0,853,854,5,399,0,0,854,855, - 5,426,0,0,855,856,5,400,0,0,856,15,1,0,0,0,857,858,5,120,0,0,858, - 859,5,329,0,0,859,860,3,638,319,0,860,861,5,341,0,0,861,863,5,426, - 0,0,862,864,3,14,7,0,863,862,1,0,0,0,863,864,1,0,0,0,864,17,1,0, - 0,0,865,871,5,153,0,0,866,868,5,123,0,0,867,866,1,0,0,0,867,868, - 1,0,0,0,868,869,1,0,0,0,869,870,5,329,0,0,870,872,3,638,319,0,871, - 867,1,0,0,0,871,872,1,0,0,0,872,873,1,0,0,0,873,874,5,139,0,0,874, - 876,5,426,0,0,875,877,3,426,213,0,876,875,1,0,0,0,876,877,1,0,0, - 0,877,19,1,0,0,0,878,879,5,277,0,0,879,880,5,103,0,0,880,883,3,22, - 11,0,881,882,5,278,0,0,882,884,3,22,11,0,883,881,1,0,0,0,883,884, - 1,0,0,0,884,887,1,0,0,0,885,886,5,387,0,0,886,888,3,230,115,0,887, - 885,1,0,0,0,887,888,1,0,0,0,888,21,1,0,0,0,889,892,3,474,237,0,890, - 891,5,395,0,0,891,893,3,26,13,0,892,890,1,0,0,0,892,893,1,0,0,0, - 893,23,1,0,0,0,894,895,5,277,0,0,895,896,5,187,0,0,896,899,3,22, - 11,0,897,898,5,166,0,0,898,900,3,474,237,0,899,897,1,0,0,0,899,900, - 1,0,0,0,900,903,1,0,0,0,901,902,5,387,0,0,902,904,3,230,115,0,903, - 901,1,0,0,0,903,904,1,0,0,0,904,25,1,0,0,0,905,908,5,426,0,0,906, - 907,5,395,0,0,907,909,5,426,0,0,908,906,1,0,0,0,908,909,1,0,0,0, - 909,27,1,0,0,0,910,969,3,42,21,0,911,969,3,46,23,0,912,969,3,48, - 24,0,913,969,3,438,219,0,914,969,3,54,27,0,915,969,3,52,26,0,916, - 969,3,414,207,0,917,969,3,64,32,0,918,969,3,72,36,0,919,969,3,138, - 69,0,920,969,3,160,80,0,921,969,3,176,88,0,922,969,3,180,90,0,923, - 969,3,184,92,0,924,969,3,182,91,0,925,969,3,174,87,0,926,969,3,178, - 89,0,927,969,3,146,73,0,928,969,3,152,76,0,929,969,3,148,74,0,930, - 969,3,150,75,0,931,969,3,154,77,0,932,969,3,156,78,0,933,969,3,158, - 79,0,934,969,3,66,33,0,935,969,3,76,38,0,936,969,3,82,41,0,937,969, - 3,78,39,0,938,969,3,84,42,0,939,969,3,86,43,0,940,969,3,88,44,0, - 941,969,3,90,45,0,942,969,3,92,46,0,943,969,3,106,53,0,944,969,3, - 98,49,0,945,969,3,108,54,0,946,969,3,100,50,0,947,969,3,94,47,0, - 948,969,3,96,48,0,949,969,3,104,52,0,950,969,3,102,51,0,951,952, - 5,1,0,0,952,954,7,3,0,0,953,955,5,431,0,0,954,953,1,0,0,0,955,956, - 1,0,0,0,956,954,1,0,0,0,956,957,1,0,0,0,957,969,1,0,0,0,958,959, - 5,176,0,0,959,961,5,258,0,0,960,962,5,426,0,0,961,960,1,0,0,0,962, - 963,1,0,0,0,963,961,1,0,0,0,963,964,1,0,0,0,964,969,1,0,0,0,965, - 969,3,664,332,0,966,969,3,440,220,0,967,969,3,442,221,0,968,910, - 1,0,0,0,968,911,1,0,0,0,968,912,1,0,0,0,968,913,1,0,0,0,968,914, - 1,0,0,0,968,915,1,0,0,0,968,916,1,0,0,0,968,917,1,0,0,0,968,918, - 1,0,0,0,968,919,1,0,0,0,968,920,1,0,0,0,968,921,1,0,0,0,968,922, - 1,0,0,0,968,923,1,0,0,0,968,924,1,0,0,0,968,925,1,0,0,0,968,926, - 1,0,0,0,968,927,1,0,0,0,968,928,1,0,0,0,968,929,1,0,0,0,968,930, - 1,0,0,0,968,931,1,0,0,0,968,932,1,0,0,0,968,933,1,0,0,0,968,934, - 1,0,0,0,968,935,1,0,0,0,968,936,1,0,0,0,968,937,1,0,0,0,968,938, - 1,0,0,0,968,939,1,0,0,0,968,940,1,0,0,0,968,941,1,0,0,0,968,942, - 1,0,0,0,968,943,1,0,0,0,968,944,1,0,0,0,968,945,1,0,0,0,968,946, - 1,0,0,0,968,947,1,0,0,0,968,948,1,0,0,0,968,949,1,0,0,0,968,950, - 1,0,0,0,968,951,1,0,0,0,968,958,1,0,0,0,968,965,1,0,0,0,968,966, - 1,0,0,0,968,967,1,0,0,0,969,29,1,0,0,0,970,971,5,151,0,0,971,972, - 5,117,0,0,972,31,1,0,0,0,973,974,5,151,0,0,974,975,5,216,0,0,975, - 976,5,117,0,0,976,33,1,0,0,0,977,978,7,4,0,0,978,35,1,0,0,0,979, - 980,3,676,338,0,980,981,5,284,0,0,981,37,1,0,0,0,982,983,3,678,339, - 0,983,984,5,284,0,0,984,39,1,0,0,0,985,986,5,321,0,0,986,987,5,17, - 0,0,987,988,5,92,0,0,988,41,1,0,0,0,989,991,5,58,0,0,990,992,5,273, - 0,0,991,990,1,0,0,0,991,992,1,0,0,0,992,993,1,0,0,0,993,995,3,70, - 35,0,994,996,3,32,16,0,995,994,1,0,0,0,995,996,1,0,0,0,996,997,1, - 0,0,0,997,999,3,476,238,0,998,1000,3,50,25,0,999,998,1,0,0,0,999, - 1000,1,0,0,0,1000,1002,1,0,0,0,1001,1003,3,426,213,0,1002,1001,1, - 0,0,0,1002,1003,1,0,0,0,1003,1006,1,0,0,0,1004,1005,5,196,0,0,1005, - 1007,5,426,0,0,1006,1004,1,0,0,0,1006,1007,1,0,0,0,1007,1011,1,0, - 0,0,1008,1009,5,387,0,0,1009,1010,5,76,0,0,1010,1012,3,230,115,0, - 1011,1008,1,0,0,0,1011,1012,1,0,0,0,1012,1030,1,0,0,0,1013,1014, - 5,58,0,0,1014,1015,5,273,0,0,1015,1017,3,70,35,0,1016,1018,3,32, - 16,0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1,0,0,0,1019, - 1021,3,476,238,0,1020,1022,3,50,25,0,1021,1020,1,0,0,0,1021,1022, - 1,0,0,0,1022,1023,1,0,0,0,1023,1027,3,44,22,0,1024,1025,5,387,0, - 0,1025,1026,5,76,0,0,1026,1028,3,230,115,0,1027,1024,1,0,0,0,1027, - 1028,1,0,0,0,1028,1030,1,0,0,0,1029,989,1,0,0,0,1029,1013,1,0,0, - 0,1030,43,1,0,0,0,1031,1032,5,370,0,0,1032,1033,3,474,237,0,1033, - 45,1,0,0,0,1034,1035,5,368,0,0,1035,1036,3,474,237,0,1036,47,1,0, - 0,0,1037,1038,5,101,0,0,1038,1040,3,70,35,0,1039,1041,3,30,15,0, - 1040,1039,1,0,0,0,1040,1041,1,0,0,0,1041,1042,1,0,0,0,1042,1044, - 3,474,237,0,1043,1045,3,34,17,0,1044,1043,1,0,0,0,1044,1045,1,0, - 0,0,1045,49,1,0,0,0,1046,1047,5,47,0,0,1047,1048,5,426,0,0,1048, - 51,1,0,0,0,1049,1051,5,351,0,0,1050,1052,5,329,0,0,1051,1050,1,0, - 0,0,1051,1052,1,0,0,0,1052,1053,1,0,0,0,1053,1059,3,638,319,0,1054, - 1055,5,46,0,0,1055,1056,5,399,0,0,1056,1057,3,254,127,0,1057,1058, - 5,400,0,0,1058,1060,1,0,0,0,1059,1054,1,0,0,0,1059,1060,1,0,0,0, - 1060,1062,1,0,0,0,1061,1063,5,135,0,0,1062,1061,1,0,0,0,1062,1063, - 1,0,0,0,1063,53,1,0,0,0,1064,1065,5,101,0,0,1065,1067,5,329,0,0, - 1066,1068,3,30,15,0,1067,1066,1,0,0,0,1067,1068,1,0,0,0,1068,1069, - 1,0,0,0,1069,1071,3,480,240,0,1070,1072,5,255,0,0,1071,1070,1,0, - 0,0,1071,1072,1,0,0,0,1072,1074,1,0,0,0,1073,1075,3,14,7,0,1074, - 1073,1,0,0,0,1074,1075,1,0,0,0,1075,55,1,0,0,0,1076,1077,5,160,0, - 0,1077,1078,5,426,0,0,1078,1079,5,301,0,0,1079,1080,5,426,0,0,1080, - 57,1,0,0,0,1081,1084,3,652,326,0,1082,1083,5,395,0,0,1083,1085,3, - 652,326,0,1084,1082,1,0,0,0,1084,1085,1,0,0,0,1085,1099,1,0,0,0, - 1086,1096,3,652,326,0,1087,1092,5,395,0,0,1088,1093,5,104,0,0,1089, - 1093,5,175,0,0,1090,1093,5,375,0,0,1091,1093,3,652,326,0,1092,1088, - 1,0,0,0,1092,1089,1,0,0,0,1092,1090,1,0,0,0,1092,1091,1,0,0,0,1093, - 1095,1,0,0,0,1094,1087,1,0,0,0,1095,1098,1,0,0,0,1096,1094,1,0,0, - 0,1096,1097,1,0,0,0,1097,1100,1,0,0,0,1098,1096,1,0,0,0,1099,1086, - 1,0,0,0,1099,1100,1,0,0,0,1100,59,1,0,0,0,1101,1103,3,58,29,0,1102, - 1104,3,640,320,0,1103,1102,1,0,0,0,1103,1104,1,0,0,0,1104,61,1,0, - 0,0,1105,1107,3,478,239,0,1106,1108,3,640,320,0,1107,1106,1,0,0, - 0,1107,1108,1,0,0,0,1108,1110,1,0,0,0,1109,1111,3,262,131,0,1110, - 1109,1,0,0,0,1110,1111,1,0,0,0,1111,63,1,0,0,0,1112,1135,7,5,0,0, - 1113,1115,3,70,35,0,1114,1116,5,122,0,0,1115,1114,1,0,0,0,1115,1116, - 1,0,0,0,1116,1117,1,0,0,0,1117,1118,3,474,237,0,1118,1136,1,0,0, - 0,1119,1121,5,69,0,0,1120,1122,5,122,0,0,1121,1120,1,0,0,0,1121, - 1122,1,0,0,0,1122,1123,1,0,0,0,1123,1136,3,474,237,0,1124,1126,5, - 141,0,0,1125,1127,5,122,0,0,1126,1125,1,0,0,0,1126,1127,1,0,0,0, - 1127,1128,1,0,0,0,1128,1136,3,570,285,0,1129,1132,5,138,0,0,1130, - 1132,5,122,0,0,1131,1129,1,0,0,0,1131,1130,1,0,0,0,1132,1133,1,0, - 0,0,1133,1136,3,62,31,0,1134,1136,3,62,31,0,1135,1113,1,0,0,0,1135, - 1119,1,0,0,0,1135,1124,1,0,0,0,1135,1131,1,0,0,0,1135,1134,1,0,0, - 0,1136,65,1,0,0,0,1137,1138,5,10,0,0,1138,1139,5,329,0,0,1139,1152, - 3,638,319,0,1140,1141,5,52,0,0,1141,1148,5,319,0,0,1142,1149,5,215, - 0,0,1143,1144,5,134,0,0,1144,1146,5,46,0,0,1145,1147,3,254,127,0, - 1146,1145,1,0,0,0,1146,1147,1,0,0,0,1147,1149,1,0,0,0,1148,1142, - 1,0,0,0,1148,1143,1,0,0,0,1148,1149,1,0,0,0,1149,1153,1,0,0,0,1150, - 1151,5,33,0,0,1151,1153,5,204,0,0,1152,1140,1,0,0,0,1152,1150,1, - 0,0,0,1153,67,1,0,0,0,1154,1155,7,6,0,0,1155,69,1,0,0,0,1156,1157, - 7,7,0,0,1157,71,1,0,0,0,1158,1159,5,308,0,0,1159,1162,7,8,0,0,1160, - 1161,5,184,0,0,1161,1163,3,194,97,0,1162,1160,1,0,0,0,1162,1163, - 1,0,0,0,1163,1342,1,0,0,0,1164,1166,5,308,0,0,1165,1167,5,122,0, - 0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1168,1,0,0,0,1168,1172, - 5,330,0,0,1169,1170,3,68,34,0,1170,1171,3,474,237,0,1171,1173,1, - 0,0,0,1172,1169,1,0,0,0,1172,1173,1,0,0,0,1173,1175,1,0,0,0,1174, - 1176,3,74,37,0,1175,1174,1,0,0,0,1175,1176,1,0,0,0,1176,1342,1,0, - 0,0,1177,1178,5,308,0,0,1178,1182,5,379,0,0,1179,1180,3,68,34,0, - 1180,1181,3,474,237,0,1181,1183,1,0,0,0,1182,1179,1,0,0,0,1182,1183, - 1,0,0,0,1183,1187,1,0,0,0,1184,1185,5,184,0,0,1185,1188,3,194,97, - 0,1186,1188,3,194,97,0,1187,1184,1,0,0,0,1187,1186,1,0,0,0,1187, - 1188,1,0,0,0,1188,1342,1,0,0,0,1189,1190,5,308,0,0,1190,1191,5,202, - 0,0,1191,1195,5,379,0,0,1192,1193,3,68,34,0,1193,1194,3,474,237, - 0,1194,1196,1,0,0,0,1195,1192,1,0,0,0,1195,1196,1,0,0,0,1196,1200, - 1,0,0,0,1197,1198,5,184,0,0,1198,1201,3,194,97,0,1199,1201,3,194, - 97,0,1200,1197,1,0,0,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201, - 1342,1,0,0,0,1202,1204,5,308,0,0,1203,1205,5,315,0,0,1204,1203,1, - 0,0,0,1204,1205,1,0,0,0,1205,1206,1,0,0,0,1206,1207,5,46,0,0,1207, - 1208,3,68,34,0,1208,1212,3,478,239,0,1209,1210,3,68,34,0,1210,1211, - 3,474,237,0,1211,1213,1,0,0,0,1212,1209,1,0,0,0,1212,1213,1,0,0, - 0,1213,1217,1,0,0,0,1214,1215,5,184,0,0,1215,1218,3,194,97,0,1216, - 1218,3,194,97,0,1217,1214,1,0,0,0,1217,1216,1,0,0,0,1217,1218,1, - 0,0,0,1218,1342,1,0,0,0,1219,1220,5,308,0,0,1220,1223,5,142,0,0, - 1221,1222,5,184,0,0,1222,1224,3,570,285,0,1223,1221,1,0,0,0,1223, - 1224,1,0,0,0,1224,1342,1,0,0,0,1225,1226,5,308,0,0,1226,1227,5,239, - 0,0,1227,1229,3,478,239,0,1228,1230,3,640,320,0,1229,1228,1,0,0, - 0,1229,1230,1,0,0,0,1230,1232,1,0,0,0,1231,1233,3,498,249,0,1232, - 1231,1,0,0,0,1232,1233,1,0,0,0,1233,1235,1,0,0,0,1234,1236,3,554, - 277,0,1235,1234,1,0,0,0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237, - 1239,3,388,194,0,1238,1237,1,0,0,0,1238,1239,1,0,0,0,1239,1342,1, - 0,0,0,1240,1241,5,308,0,0,1241,1247,5,58,0,0,1242,1243,3,70,35,0, - 1243,1244,3,474,237,0,1244,1248,1,0,0,0,1245,1246,5,329,0,0,1246, - 1248,3,480,240,0,1247,1242,1,0,0,0,1247,1245,1,0,0,0,1248,1342,1, - 0,0,0,1249,1250,5,308,0,0,1250,1251,5,329,0,0,1251,1255,5,122,0, - 0,1252,1253,3,68,34,0,1253,1254,3,474,237,0,1254,1256,1,0,0,0,1255, - 1252,1,0,0,0,1255,1256,1,0,0,0,1256,1257,1,0,0,0,1257,1258,5,184, - 0,0,1258,1260,3,194,97,0,1259,1261,3,640,320,0,1260,1259,1,0,0,0, - 1260,1261,1,0,0,0,1261,1342,1,0,0,0,1262,1263,5,308,0,0,1263,1264, - 5,332,0,0,1264,1268,3,480,240,0,1265,1266,5,399,0,0,1266,1267,5, - 426,0,0,1267,1269,5,400,0,0,1268,1265,1,0,0,0,1268,1269,1,0,0,0, - 1269,1342,1,0,0,0,1270,1271,5,308,0,0,1271,1283,5,191,0,0,1272,1273, - 3,70,35,0,1273,1275,3,474,237,0,1274,1276,5,122,0,0,1275,1274,1, - 0,0,0,1275,1276,1,0,0,0,1276,1284,1,0,0,0,1277,1279,3,60,30,0,1278, - 1277,1,0,0,0,1278,1279,1,0,0,0,1279,1281,1,0,0,0,1280,1282,5,122, - 0,0,1281,1280,1,0,0,0,1281,1282,1,0,0,0,1282,1284,1,0,0,0,1283,1272, - 1,0,0,0,1283,1278,1,0,0,0,1284,1342,1,0,0,0,1285,1286,5,308,0,0, - 1286,1313,5,50,0,0,1287,1288,5,51,0,0,1288,1289,5,405,0,0,1289,1314, - 5,431,0,0,1290,1291,3,70,35,0,1291,1292,3,474,237,0,1292,1297,1, - 0,0,0,1293,1295,3,60,30,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295, - 1297,1,0,0,0,1296,1290,1,0,0,0,1296,1294,1,0,0,0,1297,1299,1,0,0, - 0,1298,1300,3,408,204,0,1299,1298,1,0,0,0,1299,1300,1,0,0,0,1300, - 1302,1,0,0,0,1301,1303,3,410,205,0,1302,1301,1,0,0,0,1302,1303,1, - 0,0,0,1303,1305,1,0,0,0,1304,1306,3,412,206,0,1305,1304,1,0,0,0, - 1305,1306,1,0,0,0,1306,1308,1,0,0,0,1307,1309,3,554,277,0,1308,1307, - 1,0,0,0,1308,1309,1,0,0,0,1309,1311,1,0,0,0,1310,1312,3,388,194, - 0,1311,1310,1,0,0,0,1311,1312,1,0,0,0,1312,1314,1,0,0,0,1313,1287, - 1,0,0,0,1313,1296,1,0,0,0,1314,1342,1,0,0,0,1315,1316,5,308,0,0, - 1316,1342,5,346,0,0,1317,1318,5,308,0,0,1318,1319,5,54,0,0,1319, - 1342,5,426,0,0,1320,1321,5,308,0,0,1321,1325,5,280,0,0,1322,1323, - 5,243,0,0,1323,1326,3,652,326,0,1324,1326,5,244,0,0,1325,1322,1, - 0,0,0,1325,1324,1,0,0,0,1326,1342,1,0,0,0,1327,1328,5,308,0,0,1328, - 1342,5,70,0,0,1329,1331,5,308,0,0,1330,1332,5,138,0,0,1331,1330, - 1,0,0,0,1331,1332,1,0,0,0,1332,1333,1,0,0,0,1333,1334,7,9,0,0,1334, - 1335,5,224,0,0,1335,1339,3,480,240,0,1336,1337,3,68,34,0,1337,1338, - 3,474,237,0,1338,1340,1,0,0,0,1339,1336,1,0,0,0,1339,1340,1,0,0, - 0,1340,1342,1,0,0,0,1341,1158,1,0,0,0,1341,1164,1,0,0,0,1341,1177, - 1,0,0,0,1341,1189,1,0,0,0,1341,1202,1,0,0,0,1341,1219,1,0,0,0,1341, - 1225,1,0,0,0,1341,1240,1,0,0,0,1341,1249,1,0,0,0,1341,1262,1,0,0, - 0,1341,1270,1,0,0,0,1341,1285,1,0,0,0,1341,1315,1,0,0,0,1341,1317, - 1,0,0,0,1341,1320,1,0,0,0,1341,1327,1,0,0,0,1341,1329,1,0,0,0,1342, - 73,1,0,0,0,1343,1344,5,384,0,0,1344,1345,3,652,326,0,1345,1346,5, - 405,0,0,1346,1347,5,426,0,0,1347,1352,1,0,0,0,1348,1349,5,184,0, - 0,1349,1352,3,194,97,0,1350,1352,3,194,97,0,1351,1343,1,0,0,0,1351, - 1348,1,0,0,0,1351,1350,1,0,0,0,1352,75,1,0,0,0,1353,1354,5,190,0, - 0,1354,1355,5,329,0,0,1355,1356,3,638,319,0,1356,1357,3,80,40,0, - 1357,77,1,0,0,0,1358,1359,5,190,0,0,1359,1360,3,70,35,0,1360,1361, - 3,474,237,0,1361,1362,3,80,40,0,1362,79,1,0,0,0,1363,1364,7,10,0, - 0,1364,81,1,0,0,0,1365,1366,5,361,0,0,1366,1367,5,329,0,0,1367,1368, - 3,638,319,0,1368,83,1,0,0,0,1369,1370,5,361,0,0,1370,1371,3,70,35, - 0,1371,1372,3,474,237,0,1372,85,1,0,0,0,1373,1374,5,58,0,0,1374, - 1375,5,287,0,0,1375,1376,3,652,326,0,1376,87,1,0,0,0,1377,1378,5, - 101,0,0,1378,1379,5,287,0,0,1379,1380,3,652,326,0,1380,89,1,0,0, - 0,1381,1382,5,143,0,0,1382,1384,3,118,59,0,1383,1385,3,112,56,0, - 1384,1383,1,0,0,0,1384,1385,1,0,0,0,1385,1386,1,0,0,0,1386,1387, - 5,341,0,0,1387,1389,3,124,62,0,1388,1390,3,130,65,0,1389,1388,1, - 0,0,0,1389,1390,1,0,0,0,1390,91,1,0,0,0,1391,1393,5,283,0,0,1392, - 1394,3,132,66,0,1393,1392,1,0,0,0,1393,1394,1,0,0,0,1394,1395,1, - 0,0,0,1395,1397,3,118,59,0,1396,1398,3,112,56,0,1397,1396,1,0,0, - 0,1397,1398,1,0,0,0,1398,1399,1,0,0,0,1399,1400,5,139,0,0,1400,1401, - 3,124,62,0,1401,93,1,0,0,0,1402,1404,5,143,0,0,1403,1405,5,287,0, - 0,1404,1403,1,0,0,0,1404,1405,1,0,0,0,1405,1406,1,0,0,0,1406,1411, - 3,652,326,0,1407,1408,5,397,0,0,1408,1410,3,652,326,0,1409,1407, - 1,0,0,0,1410,1413,1,0,0,0,1411,1409,1,0,0,0,1411,1412,1,0,0,0,1412, - 1414,1,0,0,0,1413,1411,1,0,0,0,1414,1415,5,341,0,0,1415,1417,3,124, - 62,0,1416,1418,3,136,68,0,1417,1416,1,0,0,0,1417,1418,1,0,0,0,1418, - 95,1,0,0,0,1419,1421,5,283,0,0,1420,1422,3,134,67,0,1421,1420,1, - 0,0,0,1421,1422,1,0,0,0,1422,1424,1,0,0,0,1423,1425,5,287,0,0,1424, - 1423,1,0,0,0,1424,1425,1,0,0,0,1425,1426,1,0,0,0,1426,1431,3,652, - 326,0,1427,1428,5,397,0,0,1428,1430,3,652,326,0,1429,1427,1,0,0, - 0,1430,1433,1,0,0,0,1431,1429,1,0,0,0,1431,1432,1,0,0,0,1432,1434, - 1,0,0,0,1433,1431,1,0,0,0,1434,1435,5,139,0,0,1435,1436,3,124,62, - 0,1436,97,1,0,0,0,1437,1438,5,308,0,0,1438,1439,5,287,0,0,1439,1440, - 5,143,0,0,1440,1441,3,126,63,0,1441,99,1,0,0,0,1442,1443,5,308,0, - 0,1443,1444,5,288,0,0,1444,101,1,0,0,0,1445,1446,5,308,0,0,1446, - 1447,5,62,0,0,1447,1448,5,288,0,0,1448,103,1,0,0,0,1449,1450,5,304, - 0,0,1450,1454,5,287,0,0,1451,1455,5,7,0,0,1452,1455,5,213,0,0,1453, - 1455,3,652,326,0,1454,1451,1,0,0,0,1454,1452,1,0,0,0,1454,1453,1, - 0,0,0,1455,105,1,0,0,0,1456,1457,5,308,0,0,1457,1459,5,143,0,0,1458, - 1460,3,126,63,0,1459,1458,1,0,0,0,1459,1460,1,0,0,0,1460,1463,1, - 0,0,0,1461,1462,5,224,0,0,1462,1464,3,110,55,0,1463,1461,1,0,0,0, - 1463,1464,1,0,0,0,1464,107,1,0,0,0,1465,1466,5,308,0,0,1466,1467, - 5,252,0,0,1467,1468,3,652,326,0,1468,109,1,0,0,0,1469,1472,5,7,0, - 0,1470,1472,3,116,58,0,1471,1469,1,0,0,0,1471,1470,1,0,0,0,1472, - 111,1,0,0,0,1473,1474,5,224,0,0,1474,1475,3,114,57,0,1475,113,1, - 0,0,0,1476,1477,3,70,35,0,1477,1478,3,474,237,0,1478,1488,1,0,0, - 0,1479,1481,5,329,0,0,1480,1479,1,0,0,0,1480,1481,1,0,0,0,1481,1482, - 1,0,0,0,1482,1488,3,638,319,0,1483,1484,5,366,0,0,1484,1488,5,426, - 0,0,1485,1486,5,303,0,0,1486,1488,3,652,326,0,1487,1476,1,0,0,0, - 1487,1480,1,0,0,0,1487,1483,1,0,0,0,1487,1485,1,0,0,0,1488,115,1, - 0,0,0,1489,1490,3,70,35,0,1490,1491,3,474,237,0,1491,1510,1,0,0, - 0,1492,1494,5,329,0,0,1493,1492,1,0,0,0,1493,1494,1,0,0,0,1494,1495, - 1,0,0,0,1495,1500,3,480,240,0,1496,1497,5,399,0,0,1497,1498,3,254, - 127,0,1498,1499,5,400,0,0,1499,1501,1,0,0,0,1500,1496,1,0,0,0,1500, - 1501,1,0,0,0,1501,1503,1,0,0,0,1502,1504,3,640,320,0,1503,1502,1, - 0,0,0,1503,1504,1,0,0,0,1504,1510,1,0,0,0,1505,1506,5,366,0,0,1506, - 1510,5,426,0,0,1507,1508,5,303,0,0,1508,1510,3,652,326,0,1509,1489, - 1,0,0,0,1509,1493,1,0,0,0,1509,1505,1,0,0,0,1509,1507,1,0,0,0,1510, - 117,1,0,0,0,1511,1516,3,120,60,0,1512,1513,5,397,0,0,1513,1515,3, - 120,60,0,1514,1512,1,0,0,0,1515,1518,1,0,0,0,1516,1514,1,0,0,0,1516, - 1517,1,0,0,0,1517,119,1,0,0,0,1518,1516,1,0,0,0,1519,1524,3,122, - 61,0,1520,1521,5,399,0,0,1521,1522,3,254,127,0,1522,1523,5,400,0, - 0,1523,1525,1,0,0,0,1524,1520,1,0,0,0,1524,1525,1,0,0,0,1525,121, - 1,0,0,0,1526,1527,7,11,0,0,1527,123,1,0,0,0,1528,1533,3,126,63,0, - 1529,1530,5,397,0,0,1530,1532,3,126,63,0,1531,1529,1,0,0,0,1532, - 1535,1,0,0,0,1533,1531,1,0,0,0,1533,1534,1,0,0,0,1534,125,1,0,0, - 0,1535,1533,1,0,0,0,1536,1537,5,369,0,0,1537,1543,3,656,328,0,1538, - 1539,5,144,0,0,1539,1543,3,656,328,0,1540,1541,5,287,0,0,1541,1543, - 3,652,326,0,1542,1536,1,0,0,0,1542,1538,1,0,0,0,1542,1540,1,0,0, - 0,1543,127,1,0,0,0,1544,1545,5,369,0,0,1545,1550,3,656,328,0,1546, - 1547,5,287,0,0,1547,1550,3,652,326,0,1548,1550,3,652,326,0,1549, - 1544,1,0,0,0,1549,1546,1,0,0,0,1549,1548,1,0,0,0,1550,129,1,0,0, - 0,1551,1552,5,387,0,0,1552,1553,5,143,0,0,1553,1554,5,227,0,0,1554, - 131,1,0,0,0,1555,1556,5,143,0,0,1556,1557,5,227,0,0,1557,1558,5, - 134,0,0,1558,133,1,0,0,0,1559,1560,5,5,0,0,1560,1561,5,227,0,0,1561, - 1562,5,134,0,0,1562,135,1,0,0,0,1563,1564,5,387,0,0,1564,1565,5, - 5,0,0,1565,1566,5,227,0,0,1566,137,1,0,0,0,1567,1569,5,212,0,0,1568, - 1570,5,276,0,0,1569,1568,1,0,0,0,1569,1570,1,0,0,0,1570,1571,1,0, - 0,0,1571,1572,5,329,0,0,1572,1578,3,480,240,0,1573,1574,7,12,0,0, - 1574,1576,5,239,0,0,1575,1577,3,644,322,0,1576,1575,1,0,0,0,1576, - 1577,1,0,0,0,1577,1579,1,0,0,0,1578,1573,1,0,0,0,1578,1579,1,0,0, - 0,1579,139,1,0,0,0,1580,1585,3,142,71,0,1581,1582,5,397,0,0,1582, - 1584,3,142,71,0,1583,1581,1,0,0,0,1584,1587,1,0,0,0,1585,1583,1, - 0,0,0,1585,1586,1,0,0,0,1586,141,1,0,0,0,1587,1585,1,0,0,0,1588, - 1589,3,144,72,0,1589,1590,5,426,0,0,1590,143,1,0,0,0,1591,1592,7, - 13,0,0,1592,145,1,0,0,0,1593,1595,5,58,0,0,1594,1596,5,333,0,0,1595, - 1594,1,0,0,0,1595,1596,1,0,0,0,1596,1597,1,0,0,0,1597,1598,5,141, - 0,0,1598,1599,3,568,284,0,1599,1600,5,17,0,0,1600,1603,5,426,0,0, - 1601,1602,5,370,0,0,1602,1604,3,140,70,0,1603,1601,1,0,0,0,1603, - 1604,1,0,0,0,1604,147,1,0,0,0,1605,1607,5,101,0,0,1606,1608,5,333, - 0,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608,1609,1,0,0,0,1609,1611, - 5,141,0,0,1610,1612,3,30,15,0,1611,1610,1,0,0,0,1611,1612,1,0,0, - 0,1612,1613,1,0,0,0,1613,1614,3,570,285,0,1614,149,1,0,0,0,1615, - 1616,5,271,0,0,1616,1617,7,14,0,0,1617,151,1,0,0,0,1618,1619,5,58, - 0,0,1619,1620,5,333,0,0,1620,1621,5,194,0,0,1621,1622,5,432,0,0, - 1622,1624,5,399,0,0,1623,1625,3,248,124,0,1624,1623,1,0,0,0,1624, - 1625,1,0,0,0,1625,1626,1,0,0,0,1626,1627,5,400,0,0,1627,1628,3,594, - 297,0,1628,153,1,0,0,0,1629,1630,5,101,0,0,1630,1631,5,333,0,0,1631, - 1633,5,194,0,0,1632,1634,3,30,15,0,1633,1632,1,0,0,0,1633,1634,1, - 0,0,0,1634,1635,1,0,0,0,1635,1636,5,432,0,0,1636,155,1,0,0,0,1637, - 1638,5,58,0,0,1638,1639,5,155,0,0,1639,1640,3,652,326,0,1640,1641, - 5,224,0,0,1641,1642,5,329,0,0,1642,1643,3,480,240,0,1643,1644,3, - 266,133,0,1644,1645,5,17,0,0,1645,1649,5,426,0,0,1646,1647,5,387, - 0,0,1647,1648,5,84,0,0,1648,1650,5,265,0,0,1649,1646,1,0,0,0,1649, - 1650,1,0,0,0,1650,1653,1,0,0,0,1651,1652,5,150,0,0,1652,1654,3,226, - 113,0,1653,1651,1,0,0,0,1653,1654,1,0,0,0,1654,1658,1,0,0,0,1655, - 1656,5,154,0,0,1656,1657,5,329,0,0,1657,1659,3,480,240,0,1658,1655, - 1,0,0,0,1658,1659,1,0,0,0,1659,1663,1,0,0,0,1660,1661,5,238,0,0, - 1661,1662,5,32,0,0,1662,1664,3,266,133,0,1663,1660,1,0,0,0,1663, - 1664,1,0,0,0,1664,1669,1,0,0,0,1665,1667,3,222,111,0,1666,1665,1, - 0,0,0,1666,1667,1,0,0,0,1667,1668,1,0,0,0,1668,1670,3,246,123,0, - 1669,1666,1,0,0,0,1669,1670,1,0,0,0,1670,1672,1,0,0,0,1671,1673, - 3,426,213,0,1672,1671,1,0,0,0,1672,1673,1,0,0,0,1673,1675,1,0,0, - 0,1674,1676,3,224,112,0,1675,1674,1,0,0,0,1675,1676,1,0,0,0,1676, - 1678,1,0,0,0,1677,1679,3,196,98,0,1678,1677,1,0,0,0,1678,1679,1, - 0,0,0,1679,157,1,0,0,0,1680,1681,5,101,0,0,1681,1683,5,155,0,0,1682, - 1684,3,30,15,0,1683,1682,1,0,0,0,1683,1684,1,0,0,0,1684,1685,1,0, - 0,0,1685,1686,3,652,326,0,1686,1687,5,224,0,0,1687,1688,3,480,240, - 0,1688,159,1,0,0,0,1689,1692,5,58,0,0,1690,1691,5,228,0,0,1691,1693, - 5,278,0,0,1692,1690,1,0,0,0,1692,1693,1,0,0,0,1693,1694,1,0,0,0, - 1694,1696,5,378,0,0,1695,1697,3,32,16,0,1696,1695,1,0,0,0,1696,1697, - 1,0,0,0,1697,1698,1,0,0,0,1698,1703,3,486,243,0,1699,1700,5,399, - 0,0,1700,1701,3,306,153,0,1701,1702,5,400,0,0,1702,1704,1,0,0,0, - 1703,1699,1,0,0,0,1703,1704,1,0,0,0,1704,1706,1,0,0,0,1705,1707, - 3,196,98,0,1706,1705,1,0,0,0,1706,1707,1,0,0,0,1707,1709,1,0,0,0, - 1708,1710,3,162,81,0,1709,1708,1,0,0,0,1709,1710,1,0,0,0,1710,1712, - 1,0,0,0,1711,1713,3,224,112,0,1712,1711,1,0,0,0,1712,1713,1,0,0, - 0,1713,1714,1,0,0,0,1714,1715,5,17,0,0,1715,1716,3,382,191,0,1716, - 161,1,0,0,0,1717,1718,5,238,0,0,1718,1724,5,224,0,0,1719,1720,5, - 399,0,0,1720,1725,3,254,127,0,1721,1722,5,316,0,0,1722,1723,5,399, - 0,0,1723,1725,3,204,102,0,1724,1719,1,0,0,0,1724,1721,1,0,0,0,1725, - 1726,1,0,0,0,1726,1727,5,400,0,0,1727,163,1,0,0,0,1728,1731,3,166, - 83,0,1729,1731,3,168,84,0,1730,1728,1,0,0,0,1730,1729,1,0,0,0,1731, - 165,1,0,0,0,1732,1733,5,42,0,0,1733,1734,5,224,0,0,1734,1735,5,399, - 0,0,1735,1736,3,254,127,0,1736,1737,5,400,0,0,1737,167,1,0,0,0,1738, - 1739,3,170,85,0,1739,1740,3,172,86,0,1740,169,1,0,0,0,1741,1742, - 5,98,0,0,1742,1743,5,224,0,0,1743,1744,5,399,0,0,1744,1745,3,254, - 127,0,1745,1746,5,400,0,0,1746,171,1,0,0,0,1747,1748,5,315,0,0,1748, - 1749,5,224,0,0,1749,1750,5,399,0,0,1750,1751,3,254,127,0,1751,1752, - 5,400,0,0,1752,173,1,0,0,0,1753,1754,5,101,0,0,1754,1756,5,378,0, - 0,1755,1757,3,30,15,0,1756,1755,1,0,0,0,1756,1757,1,0,0,0,1757,1758, - 1,0,0,0,1758,1759,3,484,242,0,1759,175,1,0,0,0,1760,1761,5,58,0, - 0,1761,1762,5,202,0,0,1762,1764,5,378,0,0,1763,1765,3,32,16,0,1764, - 1763,1,0,0,0,1764,1765,1,0,0,0,1765,1766,1,0,0,0,1766,1768,3,486, - 243,0,1767,1769,3,38,19,0,1768,1767,1,0,0,0,1768,1769,1,0,0,0,1769, - 1771,1,0,0,0,1770,1772,3,196,98,0,1771,1770,1,0,0,0,1771,1772,1, - 0,0,0,1772,1774,1,0,0,0,1773,1775,3,162,81,0,1774,1773,1,0,0,0,1774, - 1775,1,0,0,0,1775,1777,1,0,0,0,1776,1778,3,164,82,0,1777,1776,1, - 0,0,0,1777,1778,1,0,0,0,1778,1780,1,0,0,0,1779,1781,3,222,111,0, - 1780,1779,1,0,0,0,1780,1781,1,0,0,0,1781,1783,1,0,0,0,1782,1784, - 3,246,123,0,1783,1782,1,0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0, - 0,1785,1787,3,426,213,0,1786,1785,1,0,0,0,1786,1787,1,0,0,0,1787, - 1789,1,0,0,0,1788,1790,3,224,112,0,1789,1788,1,0,0,0,1789,1790,1, - 0,0,0,1790,1791,1,0,0,0,1791,1792,5,17,0,0,1792,1793,3,382,191,0, - 1793,177,1,0,0,0,1794,1795,5,101,0,0,1795,1796,5,202,0,0,1796,1798, - 5,378,0,0,1797,1799,3,30,15,0,1798,1797,1,0,0,0,1798,1799,1,0,0, - 0,1799,1800,1,0,0,0,1800,1801,3,484,242,0,1801,179,1,0,0,0,1802, - 1803,5,58,0,0,1803,1804,5,293,0,0,1804,1805,5,258,0,0,1805,1806, - 3,652,326,0,1806,1808,3,188,94,0,1807,1809,3,190,95,0,1808,1807, - 1,0,0,0,1808,1809,1,0,0,0,1809,1811,1,0,0,0,1810,1812,3,270,135, - 0,1811,1810,1,0,0,0,1811,1812,1,0,0,0,1812,1813,1,0,0,0,1813,1814, - 3,192,96,0,1814,181,1,0,0,0,1815,1816,5,101,0,0,1816,1817,5,293, - 0,0,1817,1818,5,258,0,0,1818,1819,3,652,326,0,1819,183,1,0,0,0,1820, - 1821,5,9,0,0,1821,1822,5,293,0,0,1822,1823,5,258,0,0,1823,1824,3, - 652,326,0,1824,1825,3,186,93,0,1825,185,1,0,0,0,1826,1832,3,188, - 94,0,1827,1832,3,190,95,0,1828,1832,3,270,135,0,1829,1832,3,192, - 96,0,1830,1832,5,115,0,0,1831,1826,1,0,0,0,1831,1827,1,0,0,0,1831, - 1828,1,0,0,0,1831,1829,1,0,0,0,1831,1830,1,0,0,0,1832,187,1,0,0, - 0,1833,1834,5,59,0,0,1834,1849,5,426,0,0,1835,1837,5,111,0,0,1836, - 1838,5,431,0,0,1837,1836,1,0,0,0,1837,1838,1,0,0,0,1838,1839,1,0, - 0,0,1839,1846,3,592,296,0,1840,1844,5,20,0,0,1841,1842,5,223,0,0, - 1842,1844,5,32,0,0,1843,1840,1,0,0,0,1843,1841,1,0,0,0,1844,1845, - 1,0,0,0,1845,1847,5,426,0,0,1846,1843,1,0,0,0,1846,1847,1,0,0,0, - 1847,1849,1,0,0,0,1848,1833,1,0,0,0,1848,1835,1,0,0,0,1849,189,1, - 0,0,0,1850,1851,5,116,0,0,1851,1852,5,17,0,0,1852,1853,5,426,0,0, - 1853,191,1,0,0,0,1854,1856,5,85,0,0,1855,1854,1,0,0,0,1855,1856, - 1,0,0,0,1856,1857,1,0,0,0,1857,1858,5,17,0,0,1858,1859,3,2,1,0,1859, - 193,1,0,0,0,1860,1863,3,652,326,0,1861,1863,5,426,0,0,1862,1860, - 1,0,0,0,1862,1861,1,0,0,0,1863,195,1,0,0,0,1864,1865,5,47,0,0,1865, - 1866,5,426,0,0,1866,197,1,0,0,0,1867,1868,5,183,0,0,1868,1869,5, - 431,0,0,1869,199,1,0,0,0,1870,1871,5,238,0,0,1871,1880,5,32,0,0, - 1872,1875,5,399,0,0,1873,1876,3,202,101,0,1874,1876,3,254,127,0, - 1875,1873,1,0,0,0,1875,1874,1,0,0,0,1876,1881,1,0,0,0,1877,1878, - 5,316,0,0,1878,1879,5,399,0,0,1879,1881,3,204,102,0,1880,1872,1, - 0,0,0,1880,1877,1,0,0,0,1881,1882,1,0,0,0,1882,1883,5,400,0,0,1883, - 201,1,0,0,0,1884,1889,3,318,159,0,1885,1886,5,397,0,0,1886,1888, - 3,318,159,0,1887,1885,1,0,0,0,1888,1891,1,0,0,0,1889,1887,1,0,0, - 0,1889,1890,1,0,0,0,1890,203,1,0,0,0,1891,1889,1,0,0,0,1892,1897, - 3,206,103,0,1893,1894,5,397,0,0,1894,1896,3,206,103,0,1895,1893, - 1,0,0,0,1896,1899,1,0,0,0,1897,1895,1,0,0,0,1897,1898,1,0,0,0,1898, - 205,1,0,0,0,1899,1897,1,0,0,0,1900,1919,3,256,128,0,1901,1906,3, - 680,340,0,1902,1906,3,682,341,0,1903,1906,3,686,343,0,1904,1906, - 3,688,344,0,1905,1901,1,0,0,0,1905,1902,1,0,0,0,1905,1903,1,0,0, - 0,1905,1904,1,0,0,0,1906,1907,1,0,0,0,1907,1908,5,399,0,0,1908,1909, - 3,256,128,0,1909,1910,5,400,0,0,1910,1919,1,0,0,0,1911,1912,7,15, - 0,0,1912,1913,5,399,0,0,1913,1914,5,431,0,0,1914,1915,5,397,0,0, - 1915,1916,3,256,128,0,1916,1917,5,400,0,0,1917,1919,1,0,0,0,1918, - 1900,1,0,0,0,1918,1905,1,0,0,0,1918,1911,1,0,0,0,1919,207,1,0,0, - 0,1920,1921,5,42,0,0,1921,1922,5,32,0,0,1922,1923,5,399,0,0,1923, - 1924,3,254,127,0,1924,1931,5,400,0,0,1925,1926,5,315,0,0,1926,1927, - 5,32,0,0,1927,1928,5,399,0,0,1928,1929,3,264,132,0,1929,1930,5,400, - 0,0,1930,1932,1,0,0,0,1931,1925,1,0,0,0,1931,1932,1,0,0,0,1932,1933, - 1,0,0,0,1933,1934,5,166,0,0,1934,1935,5,431,0,0,1935,1936,5,31,0, - 0,1936,209,1,0,0,0,1937,1938,5,310,0,0,1938,1939,5,32,0,0,1939,1940, - 5,399,0,0,1940,1941,3,254,127,0,1941,1942,5,400,0,0,1942,1943,5, - 224,0,0,1943,1944,5,399,0,0,1944,1945,3,292,146,0,1945,1947,5,400, - 0,0,1946,1948,3,40,20,0,1947,1946,1,0,0,0,1947,1948,1,0,0,0,1948, - 211,1,0,0,0,1949,1952,3,218,109,0,1950,1952,3,220,110,0,1951,1949, - 1,0,0,0,1951,1950,1,0,0,0,1952,213,1,0,0,0,1953,1954,5,266,0,0,1954, - 1955,5,426,0,0,1955,215,1,0,0,0,1956,1957,5,267,0,0,1957,1958,5, - 426,0,0,1958,217,1,0,0,0,1959,1960,5,291,0,0,1960,1961,5,137,0,0, - 1961,1962,5,301,0,0,1962,1966,5,426,0,0,1963,1964,5,387,0,0,1964, - 1965,5,302,0,0,1965,1967,3,226,113,0,1966,1963,1,0,0,0,1966,1967, - 1,0,0,0,1967,219,1,0,0,0,1968,1969,5,291,0,0,1969,1970,5,137,0,0, - 1970,1972,5,87,0,0,1971,1973,3,236,118,0,1972,1971,1,0,0,0,1972, - 1973,1,0,0,0,1973,1975,1,0,0,0,1974,1976,3,238,119,0,1975,1974,1, - 0,0,0,1975,1976,1,0,0,0,1976,1978,1,0,0,0,1977,1979,3,240,120,0, - 1978,1977,1,0,0,0,1978,1979,1,0,0,0,1979,1981,1,0,0,0,1980,1982, - 3,242,121,0,1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982,1984,1,0,0, - 0,1983,1985,3,244,122,0,1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985, - 221,1,0,0,0,1986,1989,3,220,110,0,1987,1989,3,218,109,0,1988,1986, - 1,0,0,0,1988,1987,1,0,0,0,1989,223,1,0,0,0,1990,1991,5,332,0,0,1991, - 1992,3,226,113,0,1992,225,1,0,0,0,1993,1994,5,399,0,0,1994,1995, - 3,228,114,0,1995,1996,5,400,0,0,1996,227,1,0,0,0,1997,2007,3,232, - 116,0,1998,2003,5,426,0,0,1999,2000,5,397,0,0,2000,2002,5,426,0, - 0,2001,1999,1,0,0,0,2002,2005,1,0,0,0,2003,2001,1,0,0,0,2003,2004, - 1,0,0,0,2004,2007,1,0,0,0,2005,2003,1,0,0,0,2006,1997,1,0,0,0,2006, - 1998,1,0,0,0,2007,229,1,0,0,0,2008,2009,5,399,0,0,2009,2010,3,232, - 116,0,2010,2011,5,400,0,0,2011,231,1,0,0,0,2012,2017,3,234,117,0, - 2013,2014,5,397,0,0,2014,2016,3,234,117,0,2015,2013,1,0,0,0,2016, - 2019,1,0,0,0,2017,2015,1,0,0,0,2017,2018,1,0,0,0,2018,233,1,0,0, - 0,2019,2017,1,0,0,0,2020,2021,5,426,0,0,2021,2022,5,405,0,0,2022, - 2023,5,426,0,0,2023,235,1,0,0,0,2024,2025,5,127,0,0,2025,2026,5, - 334,0,0,2026,2027,5,32,0,0,2027,2031,5,426,0,0,2028,2029,5,110,0, - 0,2029,2030,5,32,0,0,2030,2032,5,426,0,0,2031,2028,1,0,0,0,2031, - 2032,1,0,0,0,2032,237,1,0,0,0,2033,2034,5,44,0,0,2034,2035,5,169, - 0,0,2035,2036,5,334,0,0,2036,2037,5,32,0,0,2037,2038,5,426,0,0,2038, - 239,1,0,0,0,2039,2040,5,198,0,0,2040,2041,5,174,0,0,2041,2042,5, - 334,0,0,2042,2043,5,32,0,0,2043,2044,5,426,0,0,2044,241,1,0,0,0, - 2045,2046,5,186,0,0,2046,2047,5,334,0,0,2047,2048,5,32,0,0,2048, - 2049,5,426,0,0,2049,243,1,0,0,0,2050,2051,5,219,0,0,2051,2052,5, - 85,0,0,2052,2053,5,17,0,0,2053,2054,5,426,0,0,2054,245,1,0,0,0,2055, - 2056,5,321,0,0,2056,2057,5,17,0,0,2057,2058,5,160,0,0,2058,2059, - 5,426,0,0,2059,2060,5,233,0,0,2060,2065,5,426,0,0,2061,2062,5,159, - 0,0,2062,2063,5,426,0,0,2063,2064,5,232,0,0,2064,2066,5,426,0,0, - 2065,2061,1,0,0,0,2065,2066,1,0,0,0,2066,2097,1,0,0,0,2067,2068, - 5,321,0,0,2068,2069,5,32,0,0,2069,2073,5,426,0,0,2070,2071,5,387, - 0,0,2071,2072,5,302,0,0,2072,2074,3,226,113,0,2073,2070,1,0,0,0, - 2073,2074,1,0,0,0,2074,2078,1,0,0,0,2075,2076,5,321,0,0,2076,2077, - 5,17,0,0,2077,2079,3,652,326,0,2078,2075,1,0,0,0,2078,2079,1,0,0, - 0,2079,2097,1,0,0,0,2080,2081,5,321,0,0,2081,2082,5,32,0,0,2082, - 2086,3,652,326,0,2083,2084,5,387,0,0,2084,2085,5,302,0,0,2085,2087, - 3,226,113,0,2086,2083,1,0,0,0,2086,2087,1,0,0,0,2087,2091,1,0,0, - 0,2088,2089,5,321,0,0,2089,2090,5,17,0,0,2090,2092,3,652,326,0,2091, - 2088,1,0,0,0,2091,2092,1,0,0,0,2092,2097,1,0,0,0,2093,2094,5,321, - 0,0,2094,2095,5,17,0,0,2095,2097,3,652,326,0,2096,2055,1,0,0,0,2096, - 2067,1,0,0,0,2096,2080,1,0,0,0,2096,2093,1,0,0,0,2097,247,1,0,0, - 0,2098,2103,3,312,156,0,2099,2100,5,397,0,0,2100,2102,3,312,156, - 0,2101,2099,1,0,0,0,2102,2105,1,0,0,0,2103,2101,1,0,0,0,2103,2104, - 1,0,0,0,2104,249,1,0,0,0,2105,2103,1,0,0,0,2106,2111,3,314,157,0, - 2107,2108,5,397,0,0,2108,2110,3,314,157,0,2109,2107,1,0,0,0,2110, - 2113,1,0,0,0,2111,2109,1,0,0,0,2111,2112,1,0,0,0,2112,251,1,0,0, - 0,2113,2111,1,0,0,0,2114,2119,3,342,171,0,2115,2116,5,397,0,0,2116, - 2118,3,342,171,0,2117,2115,1,0,0,0,2118,2121,1,0,0,0,2119,2117,1, - 0,0,0,2119,2120,1,0,0,0,2120,253,1,0,0,0,2121,2119,1,0,0,0,2122, - 2127,3,256,128,0,2123,2124,5,397,0,0,2124,2126,3,256,128,0,2125, - 2123,1,0,0,0,2126,2129,1,0,0,0,2127,2125,1,0,0,0,2127,2128,1,0,0, - 0,2128,255,1,0,0,0,2129,2127,1,0,0,0,2130,2133,3,696,348,0,2131, - 2133,4,128,0,0,2132,2130,1,0,0,0,2132,2131,1,0,0,0,2133,257,1,0, - 0,0,2134,2135,3,696,348,0,2135,259,1,0,0,0,2136,2137,3,652,326,0, - 2137,261,1,0,0,0,2138,2148,3,256,128,0,2139,2144,5,395,0,0,2140, - 2145,5,104,0,0,2141,2145,5,175,0,0,2142,2145,5,375,0,0,2143,2145, - 3,652,326,0,2144,2140,1,0,0,0,2144,2141,1,0,0,0,2144,2142,1,0,0, - 0,2144,2143,1,0,0,0,2145,2147,1,0,0,0,2146,2139,1,0,0,0,2147,2150, - 1,0,0,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,263,1,0,0,0,2150, - 2148,1,0,0,0,2151,2156,3,304,152,0,2152,2153,5,397,0,0,2153,2155, - 3,304,152,0,2154,2152,1,0,0,0,2155,2158,1,0,0,0,2156,2154,1,0,0, - 0,2156,2157,1,0,0,0,2157,265,1,0,0,0,2158,2156,1,0,0,0,2159,2160, - 5,399,0,0,2160,2161,3,254,127,0,2161,2162,5,400,0,0,2162,267,1,0, - 0,0,2163,2165,3,270,135,0,2164,2166,3,272,136,0,2165,2164,1,0,0, - 0,2165,2166,1,0,0,0,2166,2169,1,0,0,0,2167,2169,3,274,137,0,2168, - 2163,1,0,0,0,2168,2167,1,0,0,0,2169,269,1,0,0,0,2170,2173,3,676, - 338,0,2171,2173,3,678,339,0,2172,2170,1,0,0,0,2172,2171,1,0,0,0, - 2173,271,1,0,0,0,2174,2175,7,16,0,0,2175,273,1,0,0,0,2176,2180,5, - 109,0,0,2177,2178,5,216,0,0,2178,2180,5,109,0,0,2179,2176,1,0,0, - 0,2179,2177,1,0,0,0,2180,275,1,0,0,0,2181,2182,7,17,0,0,2182,277, - 1,0,0,0,2183,2184,5,55,0,0,2184,2186,3,652,326,0,2185,2183,1,0,0, - 0,2185,2186,1,0,0,0,2186,2187,1,0,0,0,2187,2189,3,282,141,0,2188, - 2190,3,338,169,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0,2190,279,1, - 0,0,0,2191,2192,5,55,0,0,2192,2193,3,652,326,0,2193,2195,3,282,141, - 0,2194,2196,3,340,170,0,2195,2194,1,0,0,0,2195,2196,1,0,0,0,2196, - 281,1,0,0,0,2197,2200,3,284,142,0,2198,2200,3,286,143,0,2199,2197, - 1,0,0,0,2199,2198,1,0,0,0,2200,283,1,0,0,0,2201,2202,3,336,168,0, - 2202,2203,3,266,133,0,2203,285,1,0,0,0,2204,2205,5,40,0,0,2205,2206, - 5,399,0,0,2206,2207,3,594,297,0,2207,2208,5,400,0,0,2208,287,1,0, - 0,0,2209,2210,5,55,0,0,2210,2212,3,652,326,0,2211,2209,1,0,0,0,2211, - 2212,1,0,0,0,2212,2213,1,0,0,0,2213,2214,5,136,0,0,2214,2215,5,173, - 0,0,2215,2216,3,266,133,0,2216,2217,5,269,0,0,2217,2218,3,480,240, - 0,2218,2220,3,266,133,0,2219,2221,3,338,169,0,2220,2219,1,0,0,0, - 2220,2221,1,0,0,0,2221,289,1,0,0,0,2222,2223,5,55,0,0,2223,2224, - 3,652,326,0,2224,2225,5,136,0,0,2225,2226,5,173,0,0,2226,2227,3, - 266,133,0,2227,2228,5,269,0,0,2228,2229,3,480,240,0,2229,2231,3, - 266,133,0,2230,2232,3,340,170,0,2231,2230,1,0,0,0,2231,2232,1,0, - 0,0,2232,291,1,0,0,0,2233,2236,3,298,149,0,2234,2236,3,294,147,0, - 2235,2233,1,0,0,0,2235,2234,1,0,0,0,2236,293,1,0,0,0,2237,2242,3, - 296,148,0,2238,2239,5,397,0,0,2239,2241,3,296,148,0,2240,2238,1, - 0,0,0,2241,2244,1,0,0,0,2242,2240,1,0,0,0,2242,2243,1,0,0,0,2243, - 295,1,0,0,0,2244,2242,1,0,0,0,2245,2246,5,399,0,0,2246,2247,3,298, - 149,0,2247,2248,5,400,0,0,2248,297,1,0,0,0,2249,2254,3,586,293,0, - 2250,2251,5,397,0,0,2251,2253,3,586,293,0,2252,2250,1,0,0,0,2253, - 2256,1,0,0,0,2254,2252,1,0,0,0,2254,2255,1,0,0,0,2255,299,1,0,0, - 0,2256,2254,1,0,0,0,2257,2258,7,18,0,0,2258,301,1,0,0,0,2259,2260, - 5,220,0,0,2260,2261,7,19,0,0,2261,303,1,0,0,0,2262,2264,3,256,128, - 0,2263,2265,3,300,150,0,2264,2263,1,0,0,0,2264,2265,1,0,0,0,2265, - 2267,1,0,0,0,2266,2268,3,302,151,0,2267,2266,1,0,0,0,2267,2268,1, - 0,0,0,2268,305,1,0,0,0,2269,2274,3,308,154,0,2270,2271,5,397,0,0, - 2271,2273,3,308,154,0,2272,2270,1,0,0,0,2273,2276,1,0,0,0,2274,2272, - 1,0,0,0,2274,2275,1,0,0,0,2275,307,1,0,0,0,2276,2274,1,0,0,0,2277, - 2280,3,260,130,0,2278,2279,5,47,0,0,2279,2281,5,426,0,0,2280,2278, - 1,0,0,0,2280,2281,1,0,0,0,2281,309,1,0,0,0,2282,2285,3,256,128,0, - 2283,2285,3,594,297,0,2284,2282,1,0,0,0,2284,2283,1,0,0,0,2285,2287, - 1,0,0,0,2286,2288,3,300,150,0,2287,2286,1,0,0,0,2287,2288,1,0,0, - 0,2288,2290,1,0,0,0,2289,2291,3,302,151,0,2290,2289,1,0,0,0,2290, - 2291,1,0,0,0,2291,311,1,0,0,0,2292,2293,3,260,130,0,2293,2296,3, - 344,172,0,2294,2295,5,47,0,0,2295,2297,5,426,0,0,2296,2294,1,0,0, - 0,2296,2297,1,0,0,0,2297,313,1,0,0,0,2298,2301,3,316,158,0,2299, - 2301,3,318,159,0,2300,2298,1,0,0,0,2300,2299,1,0,0,0,2301,315,1, - 0,0,0,2302,2305,3,288,144,0,2303,2305,3,278,139,0,2304,2302,1,0, - 0,0,2304,2303,1,0,0,0,2305,317,1,0,0,0,2306,2307,3,260,130,0,2307, - 2309,3,344,172,0,2308,2310,3,320,160,0,2309,2308,1,0,0,0,2309,2310, - 1,0,0,0,2310,2313,1,0,0,0,2311,2312,5,47,0,0,2312,2314,5,426,0,0, - 2313,2311,1,0,0,0,2313,2314,1,0,0,0,2314,319,1,0,0,0,2315,2318,3, - 322,161,0,2316,2318,3,324,162,0,2317,2315,1,0,0,0,2317,2316,1,0, - 0,0,2318,321,1,0,0,0,2319,2320,5,55,0,0,2320,2322,3,652,326,0,2321, - 2319,1,0,0,0,2321,2322,1,0,0,0,2322,2323,1,0,0,0,2323,2324,5,269, - 0,0,2324,2325,3,480,240,0,2325,2326,5,399,0,0,2326,2327,3,256,128, - 0,2327,2329,5,400,0,0,2328,2330,3,338,169,0,2329,2328,1,0,0,0,2329, - 2330,1,0,0,0,2330,323,1,0,0,0,2331,2332,5,55,0,0,2332,2334,3,652, - 326,0,2333,2331,1,0,0,0,2333,2334,1,0,0,0,2334,2335,1,0,0,0,2335, - 2337,3,332,166,0,2336,2338,3,338,169,0,2337,2336,1,0,0,0,2337,2338, - 1,0,0,0,2338,325,1,0,0,0,2339,2342,3,328,164,0,2340,2342,3,330,165, - 0,2341,2339,1,0,0,0,2341,2340,1,0,0,0,2342,327,1,0,0,0,2343,2344, - 5,55,0,0,2344,2346,3,652,326,0,2345,2343,1,0,0,0,2345,2346,1,0,0, - 0,2346,2347,1,0,0,0,2347,2348,5,269,0,0,2348,2349,3,480,240,0,2349, - 2350,5,399,0,0,2350,2351,3,256,128,0,2351,2353,5,400,0,0,2352,2354, - 3,340,170,0,2353,2352,1,0,0,0,2353,2354,1,0,0,0,2354,329,1,0,0,0, - 2355,2356,5,55,0,0,2356,2358,3,652,326,0,2357,2355,1,0,0,0,2357, - 2358,1,0,0,0,2358,2359,1,0,0,0,2359,2361,3,332,166,0,2360,2362,3, - 340,170,0,2361,2360,1,0,0,0,2361,2362,1,0,0,0,2362,331,1,0,0,0,2363, - 2364,5,216,0,0,2364,2370,5,219,0,0,2365,2366,5,83,0,0,2366,2370, - 3,334,167,0,2367,2370,3,286,143,0,2368,2370,3,336,168,0,2369,2363, - 1,0,0,0,2369,2365,1,0,0,0,2369,2367,1,0,0,0,2369,2368,1,0,0,0,2370, - 333,1,0,0,0,2371,2375,3,586,293,0,2372,2375,3,564,282,0,2373,2375, - 3,574,287,0,2374,2371,1,0,0,0,2374,2372,1,0,0,0,2374,2373,1,0,0, - 0,2375,335,1,0,0,0,2376,2377,5,251,0,0,2377,2380,5,173,0,0,2378, - 2380,5,358,0,0,2379,2376,1,0,0,0,2379,2378,1,0,0,0,2380,337,1,0, - 0,0,2381,2383,3,268,134,0,2382,2384,3,276,138,0,2383,2382,1,0,0, - 0,2383,2384,1,0,0,0,2384,339,1,0,0,0,2385,2387,3,268,134,0,2386, - 2388,3,276,138,0,2387,2386,1,0,0,0,2387,2388,1,0,0,0,2388,341,1, - 0,0,0,2389,2390,3,260,130,0,2390,2391,5,396,0,0,2391,2394,3,344, - 172,0,2392,2393,5,47,0,0,2393,2395,5,426,0,0,2394,2392,1,0,0,0,2394, - 2395,1,0,0,0,2395,343,1,0,0,0,2396,2397,3,348,174,0,2397,345,1,0, - 0,0,2398,2403,3,344,172,0,2399,2400,5,397,0,0,2400,2402,3,344,172, - 0,2401,2399,1,0,0,0,2402,2405,1,0,0,0,2403,2401,1,0,0,0,2403,2404, - 1,0,0,0,2404,347,1,0,0,0,2405,2403,1,0,0,0,2406,2412,3,350,175,0, - 2407,2412,3,352,176,0,2408,2412,3,354,177,0,2409,2412,3,356,178, - 0,2410,2412,3,358,179,0,2411,2406,1,0,0,0,2411,2407,1,0,0,0,2411, - 2408,1,0,0,0,2411,2409,1,0,0,0,2411,2410,1,0,0,0,2412,349,1,0,0, - 0,2413,2451,5,340,0,0,2414,2451,5,311,0,0,2415,2451,5,162,0,0,2416, - 2451,5,163,0,0,2417,2451,5,26,0,0,2418,2451,5,28,0,0,2419,2451,5, - 131,0,0,2420,2451,5,264,0,0,2421,2423,5,100,0,0,2422,2424,5,248, - 0,0,2423,2422,1,0,0,0,2423,2424,1,0,0,0,2424,2451,1,0,0,0,2425,2451, - 5,71,0,0,2426,2451,5,72,0,0,2427,2451,5,337,0,0,2428,2451,5,338, - 0,0,2429,2430,5,337,0,0,2430,2431,5,387,0,0,2431,2432,5,188,0,0, - 2432,2433,5,336,0,0,2433,2451,5,394,0,0,2434,2451,5,323,0,0,2435, - 2451,5,27,0,0,2436,2444,3,694,347,0,2437,2438,5,399,0,0,2438,2441, - 5,431,0,0,2439,2440,5,397,0,0,2440,2442,5,431,0,0,2441,2439,1,0, - 0,0,2441,2442,1,0,0,0,2442,2443,1,0,0,0,2443,2445,5,400,0,0,2444, - 2437,1,0,0,0,2444,2445,1,0,0,0,2445,2451,1,0,0,0,2446,2447,7,20, - 0,0,2447,2448,5,399,0,0,2448,2449,5,431,0,0,2449,2451,5,400,0,0, - 2450,2413,1,0,0,0,2450,2414,1,0,0,0,2450,2415,1,0,0,0,2450,2416, - 1,0,0,0,2450,2417,1,0,0,0,2450,2418,1,0,0,0,2450,2419,1,0,0,0,2450, - 2420,1,0,0,0,2450,2421,1,0,0,0,2450,2425,1,0,0,0,2450,2426,1,0,0, - 0,2450,2427,1,0,0,0,2450,2428,1,0,0,0,2450,2429,1,0,0,0,2450,2434, - 1,0,0,0,2450,2435,1,0,0,0,2450,2436,1,0,0,0,2450,2446,1,0,0,0,2451, - 351,1,0,0,0,2452,2453,5,16,0,0,2453,2454,5,409,0,0,2454,2455,3,348, - 174,0,2455,2456,5,411,0,0,2456,353,1,0,0,0,2457,2458,5,324,0,0,2458, - 2459,5,409,0,0,2459,2460,3,252,126,0,2460,2461,5,411,0,0,2461,355, - 1,0,0,0,2462,2463,5,198,0,0,2463,2464,5,409,0,0,2464,2465,3,350, - 175,0,2465,2466,5,397,0,0,2466,2467,3,348,174,0,2467,2468,5,411, - 0,0,2468,357,1,0,0,0,2469,2470,5,357,0,0,2470,2471,5,409,0,0,2471, - 2472,3,346,173,0,2472,2473,5,411,0,0,2473,359,1,0,0,0,2474,2476, - 7,21,0,0,2475,2477,7,22,0,0,2476,2475,1,0,0,0,2476,2477,1,0,0,0, - 2477,361,1,0,0,0,2478,2480,3,366,183,0,2479,2478,1,0,0,0,2479,2480, - 1,0,0,0,2480,2481,1,0,0,0,2481,2482,3,364,182,0,2482,363,1,0,0,0, - 2483,2486,3,370,185,0,2484,2486,3,374,187,0,2485,2483,1,0,0,0,2485, - 2484,1,0,0,0,2486,365,1,0,0,0,2487,2488,5,387,0,0,2488,2493,3,368, - 184,0,2489,2490,5,397,0,0,2490,2492,3,368,184,0,2491,2489,1,0,0, - 0,2492,2495,1,0,0,0,2493,2491,1,0,0,0,2493,2494,1,0,0,0,2494,367, - 1,0,0,0,2495,2493,1,0,0,0,2496,2501,3,652,326,0,2497,2498,5,399, - 0,0,2498,2499,3,254,127,0,2499,2500,5,400,0,0,2500,2502,1,0,0,0, - 2501,2497,1,0,0,0,2501,2502,1,0,0,0,2502,2503,1,0,0,0,2503,2504, - 5,17,0,0,2504,2505,5,399,0,0,2505,2506,3,362,181,0,2506,2507,5,400, - 0,0,2507,369,1,0,0,0,2508,2514,3,372,186,0,2509,2510,3,360,180,0, - 2510,2511,3,372,186,0,2511,2513,1,0,0,0,2512,2509,1,0,0,0,2513,2516, - 1,0,0,0,2514,2512,1,0,0,0,2514,2515,1,0,0,0,2515,371,1,0,0,0,2516, - 2514,1,0,0,0,2517,2518,3,450,225,0,2518,2519,3,384,192,0,2519,2521, - 3,506,253,0,2520,2522,3,464,232,0,2521,2520,1,0,0,0,2521,2522,1, - 0,0,0,2522,2524,1,0,0,0,2523,2525,3,498,249,0,2524,2523,1,0,0,0, - 2524,2525,1,0,0,0,2525,2527,1,0,0,0,2526,2528,3,532,266,0,2527,2526, - 1,0,0,0,2527,2528,1,0,0,0,2528,2530,1,0,0,0,2529,2531,3,540,270, - 0,2530,2529,1,0,0,0,2530,2531,1,0,0,0,2531,2533,1,0,0,0,2532,2534, - 3,524,262,0,2533,2532,1,0,0,0,2533,2534,1,0,0,0,2534,2536,1,0,0, - 0,2535,2537,3,542,271,0,2536,2535,1,0,0,0,2536,2537,1,0,0,0,2537, - 2539,1,0,0,0,2538,2540,3,554,277,0,2539,2538,1,0,0,0,2539,2540,1, - 0,0,0,2540,2542,1,0,0,0,2541,2543,3,558,279,0,2542,2541,1,0,0,0, - 2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2546,3,560,280,0,2545,2544, - 1,0,0,0,2545,2546,1,0,0,0,2546,2548,1,0,0,0,2547,2549,3,562,281, - 0,2548,2547,1,0,0,0,2548,2549,1,0,0,0,2549,2551,1,0,0,0,2550,2552, - 3,388,194,0,2551,2550,1,0,0,0,2551,2552,1,0,0,0,2552,2589,1,0,0, - 0,2553,2554,3,450,225,0,2554,2556,3,506,253,0,2555,2557,3,464,232, - 0,2556,2555,1,0,0,0,2556,2557,1,0,0,0,2557,2559,1,0,0,0,2558,2560, - 3,498,249,0,2559,2558,1,0,0,0,2559,2560,1,0,0,0,2560,2562,1,0,0, - 0,2561,2563,3,532,266,0,2562,2561,1,0,0,0,2562,2563,1,0,0,0,2563, - 2565,1,0,0,0,2564,2566,3,540,270,0,2565,2564,1,0,0,0,2565,2566,1, - 0,0,0,2566,2568,1,0,0,0,2567,2569,3,524,262,0,2568,2567,1,0,0,0, - 2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570,2572,3,542,271,0,2571,2570, - 1,0,0,0,2571,2572,1,0,0,0,2572,2574,1,0,0,0,2573,2575,3,554,277, - 0,2574,2573,1,0,0,0,2574,2575,1,0,0,0,2575,2577,1,0,0,0,2576,2578, - 3,558,279,0,2577,2576,1,0,0,0,2577,2578,1,0,0,0,2578,2580,1,0,0, - 0,2579,2581,3,560,280,0,2580,2579,1,0,0,0,2580,2581,1,0,0,0,2581, - 2583,1,0,0,0,2582,2584,3,562,281,0,2583,2582,1,0,0,0,2583,2584,1, - 0,0,0,2584,2586,1,0,0,0,2585,2587,3,388,194,0,2586,2585,1,0,0,0, - 2586,2587,1,0,0,0,2587,2589,1,0,0,0,2588,2517,1,0,0,0,2588,2553, - 1,0,0,0,2589,373,1,0,0,0,2590,2591,3,384,192,0,2591,2592,3,378,189, - 0,2592,2595,1,0,0,0,2593,2595,3,378,189,0,2594,2590,1,0,0,0,2594, - 2593,1,0,0,0,2595,375,1,0,0,0,2596,2598,3,506,253,0,2597,2599,3, - 450,225,0,2598,2597,1,0,0,0,2598,2599,1,0,0,0,2599,2601,1,0,0,0, - 2600,2602,3,498,249,0,2601,2600,1,0,0,0,2601,2602,1,0,0,0,2602,2604, - 1,0,0,0,2603,2605,3,532,266,0,2604,2603,1,0,0,0,2604,2605,1,0,0, - 0,2605,2607,1,0,0,0,2606,2608,3,540,270,0,2607,2606,1,0,0,0,2607, - 2608,1,0,0,0,2608,2610,1,0,0,0,2609,2611,3,524,262,0,2610,2609,1, - 0,0,0,2610,2611,1,0,0,0,2611,2613,1,0,0,0,2612,2614,3,542,271,0, - 2613,2612,1,0,0,0,2613,2614,1,0,0,0,2614,2621,1,0,0,0,2615,2616, - 5,399,0,0,2616,2617,3,378,189,0,2617,2618,5,400,0,0,2618,2621,1, - 0,0,0,2619,2621,3,500,250,0,2620,2596,1,0,0,0,2620,2615,1,0,0,0, - 2620,2619,1,0,0,0,2621,377,1,0,0,0,2622,2624,3,376,188,0,2623,2625, - 3,380,190,0,2624,2623,1,0,0,0,2624,2625,1,0,0,0,2625,2627,1,0,0, - 0,2626,2628,3,554,277,0,2627,2626,1,0,0,0,2627,2628,1,0,0,0,2628, - 2630,1,0,0,0,2629,2631,3,558,279,0,2630,2629,1,0,0,0,2630,2631,1, - 0,0,0,2631,2633,1,0,0,0,2632,2634,3,560,280,0,2633,2632,1,0,0,0, - 2633,2634,1,0,0,0,2634,2636,1,0,0,0,2635,2637,3,562,281,0,2636,2635, - 1,0,0,0,2636,2637,1,0,0,0,2637,2639,1,0,0,0,2638,2640,3,388,194, - 0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640,379,1,0,0,0,2641,2642, - 3,360,180,0,2642,2643,3,376,188,0,2643,2645,1,0,0,0,2644,2641,1, - 0,0,0,2645,2646,1,0,0,0,2646,2644,1,0,0,0,2646,2647,1,0,0,0,2647, - 381,1,0,0,0,2648,2650,3,366,183,0,2649,2648,1,0,0,0,2649,2650,1, - 0,0,0,2650,2651,1,0,0,0,2651,2652,3,378,189,0,2652,383,1,0,0,0,2653, - 2670,5,161,0,0,2654,2655,5,235,0,0,2655,2657,3,386,193,0,2656,2658, - 3,32,16,0,2657,2656,1,0,0,0,2657,2658,1,0,0,0,2658,2671,1,0,0,0, - 2659,2661,5,166,0,0,2660,2662,5,329,0,0,2661,2660,1,0,0,0,2661,2662, - 1,0,0,0,2662,2663,1,0,0,0,2663,2668,3,638,319,0,2664,2665,5,399, - 0,0,2665,2666,3,254,127,0,2666,2667,5,400,0,0,2667,2669,1,0,0,0, - 2668,2664,1,0,0,0,2668,2669,1,0,0,0,2669,2671,1,0,0,0,2670,2654, - 1,0,0,0,2670,2659,1,0,0,0,2671,385,1,0,0,0,2672,2674,5,188,0,0,2673, - 2672,1,0,0,0,2673,2674,1,0,0,0,2674,2675,1,0,0,0,2675,2676,5,93, - 0,0,2676,2678,5,426,0,0,2677,2679,3,222,111,0,2678,2677,1,0,0,0, - 2678,2679,1,0,0,0,2679,2681,1,0,0,0,2680,2682,3,246,123,0,2681,2680, - 1,0,0,0,2681,2682,1,0,0,0,2682,2686,1,0,0,0,2683,2684,5,329,0,0, - 2684,2686,3,638,319,0,2685,2673,1,0,0,0,2685,2683,1,0,0,0,2686,387, - 1,0,0,0,2687,2696,5,185,0,0,2688,2689,5,431,0,0,2689,2691,5,397, - 0,0,2690,2688,1,0,0,0,2690,2691,1,0,0,0,2691,2692,1,0,0,0,2692,2697, - 5,431,0,0,2693,2694,5,431,0,0,2694,2695,5,223,0,0,2695,2697,5,431, - 0,0,2696,2690,1,0,0,0,2696,2693,1,0,0,0,2697,389,1,0,0,0,2698,2699, - 3,256,128,0,2699,2700,5,405,0,0,2700,2701,3,392,196,0,2701,391,1, - 0,0,0,2702,2705,5,83,0,0,2703,2705,3,604,302,0,2704,2702,1,0,0,0, - 2704,2703,1,0,0,0,2705,393,1,0,0,0,2706,2707,5,304,0,0,2707,2712, - 3,390,195,0,2708,2709,5,397,0,0,2709,2711,3,390,195,0,2710,2708, - 1,0,0,0,2711,2714,1,0,0,0,2712,2710,1,0,0,0,2712,2713,1,0,0,0,2713, - 395,1,0,0,0,2714,2712,1,0,0,0,2715,2716,5,318,0,0,2716,2725,5,344, - 0,0,2717,2722,3,398,199,0,2718,2719,5,397,0,0,2719,2721,3,398,199, - 0,2720,2718,1,0,0,0,2721,2724,1,0,0,0,2722,2720,1,0,0,0,2722,2723, - 1,0,0,0,2723,2726,1,0,0,0,2724,2722,1,0,0,0,2725,2717,1,0,0,0,2725, - 2726,1,0,0,0,2726,2739,1,0,0,0,2727,2729,5,48,0,0,2728,2730,5,389, - 0,0,2729,2728,1,0,0,0,2729,2730,1,0,0,0,2730,2739,1,0,0,0,2731,2733, - 5,289,0,0,2732,2734,5,389,0,0,2733,2732,1,0,0,0,2733,2734,1,0,0, - 0,2734,2739,1,0,0,0,2735,2736,5,304,0,0,2736,2737,5,22,0,0,2737, - 2739,7,23,0,0,2738,2715,1,0,0,0,2738,2727,1,0,0,0,2738,2731,1,0, - 0,0,2738,2735,1,0,0,0,2739,397,1,0,0,0,2740,2741,5,168,0,0,2741, - 2742,5,182,0,0,2742,2746,5,312,0,0,2743,2744,5,261,0,0,2744,2746, - 7,24,0,0,2745,2740,1,0,0,0,2745,2743,1,0,0,0,2746,399,1,0,0,0,2747, - 2750,3,404,202,0,2748,2750,3,406,203,0,2749,2747,1,0,0,0,2749,2748, - 1,0,0,0,2750,2753,1,0,0,0,2751,2749,1,0,0,0,2751,2752,1,0,0,0,2752, - 2755,1,0,0,0,2753,2751,1,0,0,0,2754,2756,3,402,201,0,2755,2754,1, - 0,0,0,2755,2756,1,0,0,0,2756,401,1,0,0,0,2757,2758,5,383,0,0,2758, - 2759,5,216,0,0,2759,2762,5,201,0,0,2760,2761,5,11,0,0,2761,2763, - 3,594,297,0,2762,2760,1,0,0,0,2762,2763,1,0,0,0,2763,2764,1,0,0, - 0,2764,2765,5,335,0,0,2765,2767,5,161,0,0,2766,2768,3,266,133,0, - 2767,2766,1,0,0,0,2767,2768,1,0,0,0,2768,2769,1,0,0,0,2769,2770, - 5,374,0,0,2770,2771,3,550,275,0,2771,403,1,0,0,0,2772,2773,5,383, - 0,0,2773,2774,5,201,0,0,2774,2775,5,11,0,0,2775,2776,3,594,297,0, - 2776,2780,5,335,0,0,2777,2778,5,365,0,0,2778,2781,3,394,197,0,2779, - 2781,5,86,0,0,2780,2777,1,0,0,0,2780,2779,1,0,0,0,2781,405,1,0,0, - 0,2782,2783,5,383,0,0,2783,2784,5,201,0,0,2784,2788,5,335,0,0,2785, - 2786,5,365,0,0,2786,2789,3,394,197,0,2787,2789,5,86,0,0,2788,2785, - 1,0,0,0,2788,2787,1,0,0,0,2789,407,1,0,0,0,2790,2791,5,246,0,0,2791, - 2792,5,426,0,0,2792,409,1,0,0,0,2793,2794,5,352,0,0,2794,2795,5, - 426,0,0,2795,411,1,0,0,0,2796,2797,5,320,0,0,2797,2798,5,426,0,0, - 2798,413,1,0,0,0,2799,2830,5,9,0,0,2800,2801,5,329,0,0,2801,2802, - 3,480,240,0,2802,2803,3,416,208,0,2803,2831,1,0,0,0,2804,2805,5, - 378,0,0,2805,2807,3,484,242,0,2806,2808,5,17,0,0,2807,2806,1,0,0, - 0,2807,2808,1,0,0,0,2808,2809,1,0,0,0,2809,2810,3,420,210,0,2810, - 2831,1,0,0,0,2811,2812,5,202,0,0,2812,2813,5,378,0,0,2813,2817,3, - 484,242,0,2814,2818,3,36,18,0,2815,2818,3,38,19,0,2816,2818,5,265, - 0,0,2817,2814,1,0,0,0,2817,2815,1,0,0,0,2817,2816,1,0,0,0,2818,2831, - 1,0,0,0,2819,2820,3,70,35,0,2820,2821,3,422,211,0,2821,2831,1,0, - 0,0,2822,2823,5,69,0,0,2823,2831,3,424,212,0,2824,2825,5,155,0,0, - 2825,2826,3,652,326,0,2826,2827,5,224,0,0,2827,2828,3,638,319,0, - 2828,2829,5,265,0,0,2829,2831,1,0,0,0,2830,2800,1,0,0,0,2830,2804, - 1,0,0,0,2830,2811,1,0,0,0,2830,2819,1,0,0,0,2830,2822,1,0,0,0,2830, - 2824,1,0,0,0,2831,415,1,0,0,0,2832,2833,5,274,0,0,2833,2834,5,341, - 0,0,2834,2922,3,482,241,0,2835,2836,5,102,0,0,2836,2922,5,239,0, - 0,2837,2922,3,428,214,0,2838,2840,5,4,0,0,2839,2841,3,32,16,0,2840, - 2839,1,0,0,0,2840,2841,1,0,0,0,2841,2846,1,0,0,0,2842,2844,3,640, - 320,0,2843,2845,3,426,213,0,2844,2843,1,0,0,0,2844,2845,1,0,0,0, - 2845,2847,1,0,0,0,2846,2842,1,0,0,0,2847,2848,1,0,0,0,2848,2846, - 1,0,0,0,2848,2849,1,0,0,0,2849,2922,1,0,0,0,2850,2854,5,342,0,0, - 2851,2853,3,640,320,0,2852,2851,1,0,0,0,2853,2856,1,0,0,0,2854,2852, - 1,0,0,0,2854,2855,1,0,0,0,2855,2922,1,0,0,0,2856,2854,1,0,0,0,2857, - 2861,5,15,0,0,2858,2860,3,640,320,0,2859,2858,1,0,0,0,2860,2863, - 1,0,0,0,2861,2859,1,0,0,0,2861,2862,1,0,0,0,2862,2922,1,0,0,0,2863, - 2861,1,0,0,0,2864,2868,5,353,0,0,2865,2867,3,640,320,0,2866,2865, - 1,0,0,0,2867,2870,1,0,0,0,2868,2866,1,0,0,0,2868,2869,1,0,0,0,2869, - 2922,1,0,0,0,2870,2868,1,0,0,0,2871,2872,5,304,0,0,2872,2873,5,332, - 0,0,2873,2922,3,226,113,0,2874,2875,5,363,0,0,2875,2877,5,332,0, - 0,2876,2878,3,30,15,0,2877,2876,1,0,0,0,2877,2878,1,0,0,0,2878,2879, - 1,0,0,0,2879,2922,3,226,113,0,2880,2922,3,210,105,0,2881,2884,5, - 216,0,0,2882,2885,5,310,0,0,2883,2885,3,40,20,0,2884,2882,1,0,0, - 0,2884,2883,1,0,0,0,2885,2922,1,0,0,0,2886,2887,5,113,0,0,2887,2888, - 3,640,320,0,2888,2889,5,387,0,0,2889,2890,5,329,0,0,2890,2891,3, - 480,240,0,2891,2922,1,0,0,0,2892,2893,5,237,0,0,2893,2894,5,45,0, - 0,2894,2895,5,399,0,0,2895,2896,3,312,156,0,2896,2897,5,400,0,0, - 2897,2922,1,0,0,0,2898,2899,5,101,0,0,2899,2900,5,55,0,0,2900,2922, - 3,652,326,0,2901,2904,5,4,0,0,2902,2905,3,290,145,0,2903,2905,3, - 280,140,0,2904,2902,1,0,0,0,2904,2903,1,0,0,0,2905,2922,1,0,0,0, - 2906,2908,3,640,320,0,2907,2906,1,0,0,0,2907,2908,1,0,0,0,2908,2909, - 1,0,0,0,2909,2922,3,418,209,0,2910,2911,5,304,0,0,2911,2912,5,236, - 0,0,2912,2922,3,126,63,0,2913,2914,5,304,0,0,2914,2915,5,237,0,0, - 2915,2916,5,316,0,0,2916,2917,5,399,0,0,2917,2918,3,204,102,0,2918, - 2919,5,400,0,0,2919,2922,1,0,0,0,2920,2922,3,432,216,0,2921,2832, - 1,0,0,0,2921,2835,1,0,0,0,2921,2837,1,0,0,0,2921,2838,1,0,0,0,2921, - 2850,1,0,0,0,2921,2857,1,0,0,0,2921,2864,1,0,0,0,2921,2871,1,0,0, - 0,2921,2874,1,0,0,0,2921,2880,1,0,0,0,2921,2881,1,0,0,0,2921,2886, - 1,0,0,0,2921,2892,1,0,0,0,2921,2898,1,0,0,0,2921,2901,1,0,0,0,2921, - 2907,1,0,0,0,2921,2910,1,0,0,0,2921,2913,1,0,0,0,2921,2920,1,0,0, - 0,2922,417,1,0,0,0,2923,2924,5,304,0,0,2924,2925,5,129,0,0,2925, - 3056,3,434,217,0,2926,2927,5,304,0,0,2927,2928,5,189,0,0,2928,3056, - 5,426,0,0,2929,3056,5,53,0,0,2930,2940,5,304,0,0,2931,2932,5,301, - 0,0,2932,2936,5,426,0,0,2933,2934,5,387,0,0,2934,2935,5,302,0,0, - 2935,2937,3,226,113,0,2936,2933,1,0,0,0,2936,2937,1,0,0,0,2937,2941, - 1,0,0,0,2938,2939,5,302,0,0,2939,2941,3,226,113,0,2940,2931,1,0, - 0,0,2940,2938,1,0,0,0,2941,3056,1,0,0,0,2942,2943,5,363,0,0,2943, - 2944,5,302,0,0,2944,3056,3,226,113,0,2945,2946,5,274,0,0,2946,2947, - 5,341,0,0,2947,3056,3,640,320,0,2948,2949,5,166,0,0,2949,2950,5, - 431,0,0,2950,3056,5,31,0,0,2951,2952,5,304,0,0,2952,2953,5,310,0, - 0,2953,2954,5,189,0,0,2954,2955,5,399,0,0,2955,2960,3,430,215,0, - 2956,2957,5,397,0,0,2957,2959,3,430,215,0,2958,2956,1,0,0,0,2959, - 2962,1,0,0,0,2960,2958,1,0,0,0,2960,2961,1,0,0,0,2961,2963,1,0,0, - 0,2962,2960,1,0,0,0,2963,2964,5,400,0,0,2964,3056,1,0,0,0,2965,2966, - 5,216,0,0,2966,3056,7,25,0,0,2967,3056,3,208,104,0,2968,2969,5,49, - 0,0,2969,2972,5,426,0,0,2970,2971,5,11,0,0,2971,2973,5,380,0,0,2972, - 2970,1,0,0,0,2972,2973,1,0,0,0,2973,2978,1,0,0,0,2974,2975,5,42, - 0,0,2975,2976,5,166,0,0,2976,2977,5,431,0,0,2977,2979,5,31,0,0,2978, - 2974,1,0,0,0,2978,2979,1,0,0,0,2979,2981,1,0,0,0,2980,2982,3,554, - 277,0,2981,2980,1,0,0,0,2981,2982,1,0,0,0,2982,2984,1,0,0,0,2983, - 2985,3,408,204,0,2984,2983,1,0,0,0,2984,2985,1,0,0,0,2985,2990,1, - 0,0,0,2986,2987,5,387,0,0,2987,2988,5,235,0,0,2988,2989,5,332,0, - 0,2989,2991,3,226,113,0,2990,2986,1,0,0,0,2990,2991,1,0,0,0,2991, - 3056,1,0,0,0,2992,2993,5,365,0,0,2993,2994,5,319,0,0,2994,2996,5, - 134,0,0,2995,2997,5,45,0,0,2996,2995,1,0,0,0,2996,2997,1,0,0,0,2997, - 2998,1,0,0,0,2998,2999,3,256,128,0,2999,3000,5,304,0,0,3000,3003, - 3,226,113,0,3001,3002,5,47,0,0,3002,3004,5,426,0,0,3003,3001,1,0, - 0,0,3003,3004,1,0,0,0,3004,3056,1,0,0,0,3005,3006,5,365,0,0,3006, - 3007,5,319,0,0,3007,3008,5,304,0,0,3008,3056,3,226,113,0,3009,3011, - 5,38,0,0,3010,3012,5,45,0,0,3011,3010,1,0,0,0,3011,3012,1,0,0,0, - 3012,3013,1,0,0,0,3013,3014,3,256,128,0,3014,3015,3,260,130,0,3015, - 3017,3,344,172,0,3016,3018,3,326,163,0,3017,3016,1,0,0,0,3017,3018, - 1,0,0,0,3018,3021,1,0,0,0,3019,3020,5,47,0,0,3020,3022,5,426,0,0, - 3021,3019,1,0,0,0,3021,3022,1,0,0,0,3022,3026,1,0,0,0,3023,3027, - 5,130,0,0,3024,3025,5,6,0,0,3025,3027,3,652,326,0,3026,3023,1,0, - 0,0,3026,3024,1,0,0,0,3026,3027,1,0,0,0,3027,3029,1,0,0,0,3028,3030, - 3,34,17,0,3029,3028,1,0,0,0,3029,3030,1,0,0,0,3030,3056,1,0,0,0, - 3031,3034,5,4,0,0,3032,3034,5,278,0,0,3033,3031,1,0,0,0,3033,3032, - 1,0,0,0,3034,3035,1,0,0,0,3035,3036,5,46,0,0,3036,3037,5,399,0,0, - 3037,3038,3,248,124,0,3038,3040,5,400,0,0,3039,3041,3,34,17,0,3040, - 3039,1,0,0,0,3040,3041,1,0,0,0,3041,3056,1,0,0,0,3042,3043,5,365, - 0,0,3043,3045,5,46,0,0,3044,3046,3,34,17,0,3045,3044,1,0,0,0,3045, - 3046,1,0,0,0,3046,3056,1,0,0,0,3047,3053,3,270,135,0,3048,3050,5, - 218,0,0,3049,3051,5,34,0,0,3050,3049,1,0,0,0,3050,3051,1,0,0,0,3051, - 3054,1,0,0,0,3052,3054,5,222,0,0,3053,3048,1,0,0,0,3053,3052,1,0, - 0,0,3054,3056,1,0,0,0,3055,2923,1,0,0,0,3055,2926,1,0,0,0,3055,2929, - 1,0,0,0,3055,2930,1,0,0,0,3055,2942,1,0,0,0,3055,2945,1,0,0,0,3055, - 2948,1,0,0,0,3055,2951,1,0,0,0,3055,2965,1,0,0,0,3055,2967,1,0,0, - 0,3055,2968,1,0,0,0,3055,2992,1,0,0,0,3055,3005,1,0,0,0,3055,3009, - 1,0,0,0,3055,3033,1,0,0,0,3055,3042,1,0,0,0,3055,3047,1,0,0,0,3056, - 419,1,0,0,0,3057,3058,5,304,0,0,3058,3059,5,332,0,0,3059,3084,3, - 226,113,0,3060,3061,5,363,0,0,3061,3063,5,332,0,0,3062,3064,3,30, - 15,0,3063,3062,1,0,0,0,3063,3064,1,0,0,0,3064,3065,1,0,0,0,3065, - 3084,3,226,113,0,3066,3067,5,274,0,0,3067,3068,5,341,0,0,3068,3084, - 3,482,241,0,3069,3071,5,4,0,0,3070,3072,3,32,16,0,3071,3070,1,0, - 0,0,3071,3072,1,0,0,0,3072,3077,1,0,0,0,3073,3075,3,640,320,0,3074, - 3076,3,426,213,0,3075,3074,1,0,0,0,3075,3076,1,0,0,0,3076,3078,1, - 0,0,0,3077,3073,1,0,0,0,3078,3079,1,0,0,0,3079,3077,1,0,0,0,3079, - 3080,1,0,0,0,3080,3084,1,0,0,0,3081,3084,3,428,214,0,3082,3084,3, - 382,191,0,3083,3057,1,0,0,0,3083,3060,1,0,0,0,3083,3066,1,0,0,0, - 3083,3069,1,0,0,0,3083,3081,1,0,0,0,3083,3082,1,0,0,0,3084,421,1, - 0,0,0,3085,3086,3,474,237,0,3086,3087,5,304,0,0,3087,3088,5,76,0, - 0,3088,3089,3,230,115,0,3089,3101,1,0,0,0,3090,3091,3,474,237,0, - 3091,3092,5,304,0,0,3092,3093,5,236,0,0,3093,3094,3,128,64,0,3094, - 3101,1,0,0,0,3095,3096,3,474,237,0,3096,3097,5,304,0,0,3097,3098, - 7,26,0,0,3098,3099,5,426,0,0,3099,3101,1,0,0,0,3100,3085,1,0,0,0, - 3100,3090,1,0,0,0,3100,3095,1,0,0,0,3101,423,1,0,0,0,3102,3103,3, - 474,237,0,3103,3104,5,304,0,0,3104,3105,5,77,0,0,3105,3106,3,230, - 115,0,3106,3118,1,0,0,0,3107,3108,3,474,237,0,3108,3109,5,304,0, - 0,3109,3110,5,236,0,0,3110,3111,3,128,64,0,3111,3118,1,0,0,0,3112, - 3113,3,474,237,0,3113,3114,5,304,0,0,3114,3115,5,367,0,0,3115,3116, - 5,426,0,0,3116,3118,1,0,0,0,3117,3102,1,0,0,0,3117,3107,1,0,0,0, - 3117,3112,1,0,0,0,3118,425,1,0,0,0,3119,3120,5,189,0,0,3120,3121, - 5,426,0,0,3121,427,1,0,0,0,3122,3124,5,101,0,0,3123,3125,3,30,15, - 0,3124,3123,1,0,0,0,3124,3125,1,0,0,0,3125,3126,1,0,0,0,3126,3127, - 5,237,0,0,3127,3133,3,644,322,0,3128,3129,5,397,0,0,3129,3130,5, - 237,0,0,3130,3132,3,644,322,0,3131,3128,1,0,0,0,3132,3135,1,0,0, - 0,3133,3131,1,0,0,0,3133,3134,1,0,0,0,3134,3138,1,0,0,0,3135,3133, - 1,0,0,0,3136,3137,5,152,0,0,3137,3139,5,254,0,0,3138,3136,1,0,0, - 0,3138,3139,1,0,0,0,3139,3141,1,0,0,0,3140,3142,5,255,0,0,3141,3140, - 1,0,0,0,3141,3142,1,0,0,0,3142,3144,1,0,0,0,3143,3145,3,14,7,0,3144, - 3143,1,0,0,0,3144,3145,1,0,0,0,3145,429,1,0,0,0,3146,3149,3,586, - 293,0,3147,3149,3,296,148,0,3148,3146,1,0,0,0,3148,3147,1,0,0,0, - 3149,3150,1,0,0,0,3150,3151,5,405,0,0,3151,3152,5,426,0,0,3152,431, - 1,0,0,0,3153,3163,5,115,0,0,3154,3155,5,289,0,0,3155,3156,5,399, - 0,0,3156,3164,7,27,0,0,3157,3158,5,118,0,0,3158,3159,5,399,0,0,3159, - 3164,5,426,0,0,3160,3161,5,306,0,0,3161,3162,5,399,0,0,3162,3164, - 5,431,0,0,3163,3154,1,0,0,0,3163,3157,1,0,0,0,3163,3160,1,0,0,0, - 3164,3165,1,0,0,0,3165,3166,5,400,0,0,3166,433,1,0,0,0,3167,3168, - 5,160,0,0,3168,3169,5,426,0,0,3169,3170,5,233,0,0,3170,3171,5,426, - 0,0,3171,3172,5,301,0,0,3172,3177,5,426,0,0,3173,3174,5,159,0,0, - 3174,3175,5,426,0,0,3175,3176,5,232,0,0,3176,3178,5,426,0,0,3177, - 3173,1,0,0,0,3177,3178,1,0,0,0,3178,3181,1,0,0,0,3179,3181,3,652, - 326,0,3180,3167,1,0,0,0,3180,3179,1,0,0,0,3181,435,1,0,0,0,3182, - 3183,5,184,0,0,3183,3192,5,128,0,0,3184,3185,5,184,0,0,3185,3186, - 5,128,0,0,3186,3187,3,652,326,0,3187,3188,5,426,0,0,3188,3192,1, - 0,0,0,3189,3190,5,184,0,0,3190,3192,3,480,240,0,3191,3182,1,0,0, - 0,3191,3184,1,0,0,0,3191,3189,1,0,0,0,3192,437,1,0,0,0,3193,3195, - 5,58,0,0,3194,3196,5,333,0,0,3195,3194,1,0,0,0,3195,3196,1,0,0,0, - 3196,3198,1,0,0,0,3197,3199,5,345,0,0,3198,3197,1,0,0,0,3198,3199, - 1,0,0,0,3199,3201,1,0,0,0,3200,3202,5,123,0,0,3201,3200,1,0,0,0, - 3201,3202,1,0,0,0,3202,3203,1,0,0,0,3203,3205,5,329,0,0,3204,3206, - 3,32,16,0,3205,3204,1,0,0,0,3205,3206,1,0,0,0,3206,3207,1,0,0,0, - 3207,3264,3,482,241,0,3208,3210,3,436,218,0,3209,3211,3,200,100, - 0,3210,3209,1,0,0,0,3210,3211,1,0,0,0,3211,3213,1,0,0,0,3212,3214, - 3,222,111,0,3213,3212,1,0,0,0,3213,3214,1,0,0,0,3214,3216,1,0,0, - 0,3215,3217,3,246,123,0,3216,3215,1,0,0,0,3216,3217,1,0,0,0,3217, - 3219,1,0,0,0,3218,3220,3,426,213,0,3219,3218,1,0,0,0,3219,3220,1, - 0,0,0,3220,3222,1,0,0,0,3221,3223,3,224,112,0,3222,3221,1,0,0,0, - 3222,3223,1,0,0,0,3223,3225,1,0,0,0,3224,3226,3,198,99,0,3225,3224, - 1,0,0,0,3225,3226,1,0,0,0,3226,3265,1,0,0,0,3227,3228,5,399,0,0, - 3228,3229,3,250,125,0,3229,3230,5,400,0,0,3230,3232,1,0,0,0,3231, - 3227,1,0,0,0,3231,3232,1,0,0,0,3232,3234,1,0,0,0,3233,3235,3,196, - 98,0,3234,3233,1,0,0,0,3234,3235,1,0,0,0,3235,3237,1,0,0,0,3236, - 3238,3,200,100,0,3237,3236,1,0,0,0,3237,3238,1,0,0,0,3238,3240,1, - 0,0,0,3239,3241,3,208,104,0,3240,3239,1,0,0,0,3240,3241,1,0,0,0, - 3241,3243,1,0,0,0,3242,3244,3,210,105,0,3243,3242,1,0,0,0,3243,3244, - 1,0,0,0,3244,3246,1,0,0,0,3245,3247,3,222,111,0,3246,3245,1,0,0, - 0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248,3250,3,246,123,0,3249, - 3248,1,0,0,0,3249,3250,1,0,0,0,3250,3252,1,0,0,0,3251,3253,3,426, - 213,0,3252,3251,1,0,0,0,3252,3253,1,0,0,0,3253,3255,1,0,0,0,3254, - 3256,3,224,112,0,3255,3254,1,0,0,0,3255,3256,1,0,0,0,3256,3258,1, - 0,0,0,3257,3259,3,198,99,0,3258,3257,1,0,0,0,3258,3259,1,0,0,0,3259, - 3262,1,0,0,0,3260,3261,5,17,0,0,3261,3263,3,382,191,0,3262,3260, - 1,0,0,0,3262,3263,1,0,0,0,3263,3265,1,0,0,0,3264,3208,1,0,0,0,3264, - 3231,1,0,0,0,3265,3329,1,0,0,0,3266,3267,5,58,0,0,3267,3268,5,195, - 0,0,3268,3270,5,329,0,0,3269,3271,3,32,16,0,3270,3269,1,0,0,0,3270, - 3271,1,0,0,0,3271,3272,1,0,0,0,3272,3326,3,482,241,0,3273,3275,3, - 436,218,0,3274,3276,3,222,111,0,3275,3274,1,0,0,0,3275,3276,1,0, - 0,0,3276,3278,1,0,0,0,3277,3279,3,246,123,0,3278,3277,1,0,0,0,3278, - 3279,1,0,0,0,3279,3281,1,0,0,0,3280,3282,3,426,213,0,3281,3280,1, - 0,0,0,3281,3282,1,0,0,0,3282,3284,1,0,0,0,3283,3285,3,224,112,0, - 3284,3283,1,0,0,0,3284,3285,1,0,0,0,3285,3287,1,0,0,0,3286,3288, - 3,198,99,0,3287,3286,1,0,0,0,3287,3288,1,0,0,0,3288,3327,1,0,0,0, - 3289,3290,5,399,0,0,3290,3291,3,250,125,0,3291,3292,5,400,0,0,3292, - 3294,1,0,0,0,3293,3289,1,0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0, - 0,3295,3297,3,196,98,0,3296,3295,1,0,0,0,3296,3297,1,0,0,0,3297, - 3299,1,0,0,0,3298,3300,3,200,100,0,3299,3298,1,0,0,0,3299,3300,1, - 0,0,0,3300,3302,1,0,0,0,3301,3303,3,208,104,0,3302,3301,1,0,0,0, - 3302,3303,1,0,0,0,3303,3305,1,0,0,0,3304,3306,3,210,105,0,3305,3304, - 1,0,0,0,3305,3306,1,0,0,0,3306,3308,1,0,0,0,3307,3309,3,222,111, - 0,3308,3307,1,0,0,0,3308,3309,1,0,0,0,3309,3311,1,0,0,0,3310,3312, - 3,246,123,0,3311,3310,1,0,0,0,3311,3312,1,0,0,0,3312,3314,1,0,0, - 0,3313,3315,3,426,213,0,3314,3313,1,0,0,0,3314,3315,1,0,0,0,3315, - 3317,1,0,0,0,3316,3318,3,224,112,0,3317,3316,1,0,0,0,3317,3318,1, - 0,0,0,3318,3320,1,0,0,0,3319,3321,3,198,99,0,3320,3319,1,0,0,0,3320, - 3321,1,0,0,0,3321,3324,1,0,0,0,3322,3323,5,17,0,0,3323,3325,3,382, - 191,0,3324,3322,1,0,0,0,3324,3325,1,0,0,0,3325,3327,1,0,0,0,3326, - 3273,1,0,0,0,3326,3293,1,0,0,0,3327,3329,1,0,0,0,3328,3193,1,0,0, - 0,3328,3266,1,0,0,0,3329,439,1,0,0,0,3330,3331,5,58,0,0,3331,3333, - 5,69,0,0,3332,3334,3,32,16,0,3333,3332,1,0,0,0,3333,3334,1,0,0,0, - 3334,3335,1,0,0,0,3335,3338,3,652,326,0,3336,3337,5,352,0,0,3337, - 3339,5,426,0,0,3338,3336,1,0,0,0,3338,3339,1,0,0,0,3339,3342,1,0, - 0,0,3340,3341,5,367,0,0,3341,3343,5,426,0,0,3342,3340,1,0,0,0,3342, - 3343,1,0,0,0,3343,3346,1,0,0,0,3344,3345,5,47,0,0,3345,3347,5,426, - 0,0,3346,3344,1,0,0,0,3346,3347,1,0,0,0,3347,3351,1,0,0,0,3348,3349, - 5,387,0,0,3349,3350,5,77,0,0,3350,3352,3,230,115,0,3351,3348,1,0, - 0,0,3351,3352,1,0,0,0,3352,441,1,0,0,0,3353,3354,5,101,0,0,3354, - 3356,5,69,0,0,3355,3357,3,30,15,0,3356,3355,1,0,0,0,3356,3357,1, - 0,0,0,3357,3358,1,0,0,0,3358,3359,3,652,326,0,3359,443,1,0,0,0,3360, - 3361,3,652,326,0,3361,3362,5,395,0,0,3362,3364,1,0,0,0,3363,3360, - 1,0,0,0,3364,3367,1,0,0,0,3365,3363,1,0,0,0,3365,3366,1,0,0,0,3366, - 3368,1,0,0,0,3367,3365,1,0,0,0,3368,3369,5,415,0,0,3369,445,1,0, - 0,0,3370,3375,3,594,297,0,3371,3372,5,397,0,0,3372,3374,3,594,297, - 0,3373,3371,1,0,0,0,3374,3377,1,0,0,0,3375,3373,1,0,0,0,3375,3376, - 1,0,0,0,3376,447,1,0,0,0,3377,3375,1,0,0,0,3378,3383,3,652,326,0, - 3379,3380,5,397,0,0,3380,3382,3,652,326,0,3381,3379,1,0,0,0,3382, - 3385,1,0,0,0,3383,3381,1,0,0,0,3383,3384,1,0,0,0,3384,449,1,0,0, - 0,3385,3383,1,0,0,0,3386,3387,5,139,0,0,3387,3388,3,452,226,0,3388, - 451,1,0,0,0,3389,3390,5,359,0,0,3390,3393,3,460,230,0,3391,3392, - 5,397,0,0,3392,3394,3,460,230,0,3393,3391,1,0,0,0,3394,3395,1,0, - 0,0,3395,3393,1,0,0,0,3395,3396,1,0,0,0,3396,3399,1,0,0,0,3397,3399, - 3,456,228,0,3398,3389,1,0,0,0,3398,3397,1,0,0,0,3399,453,1,0,0,0, - 3400,3404,3,470,235,0,3401,3403,3,464,232,0,3402,3401,1,0,0,0,3403, - 3406,1,0,0,0,3404,3402,1,0,0,0,3404,3405,1,0,0,0,3405,3433,1,0,0, - 0,3406,3404,1,0,0,0,3407,3411,3,504,252,0,3408,3410,3,464,232,0, - 3409,3408,1,0,0,0,3410,3413,1,0,0,0,3411,3409,1,0,0,0,3411,3412, - 1,0,0,0,3412,3433,1,0,0,0,3413,3411,1,0,0,0,3414,3418,3,488,244, - 0,3415,3417,3,464,232,0,3416,3415,1,0,0,0,3417,3420,1,0,0,0,3418, - 3416,1,0,0,0,3418,3419,1,0,0,0,3419,3433,1,0,0,0,3420,3418,1,0,0, - 0,3421,3425,3,494,247,0,3422,3424,3,464,232,0,3423,3422,1,0,0,0, - 3424,3427,1,0,0,0,3425,3423,1,0,0,0,3425,3426,1,0,0,0,3426,3433, - 1,0,0,0,3427,3425,1,0,0,0,3428,3429,5,399,0,0,3429,3430,3,456,228, - 0,3430,3431,5,400,0,0,3431,3433,1,0,0,0,3432,3400,1,0,0,0,3432,3407, - 1,0,0,0,3432,3414,1,0,0,0,3432,3421,1,0,0,0,3432,3428,1,0,0,0,3433, - 455,1,0,0,0,3434,3445,3,454,227,0,3435,3436,3,462,231,0,3436,3441, - 3,458,229,0,3437,3438,5,224,0,0,3438,3442,3,594,297,0,3439,3440, - 5,370,0,0,3440,3442,3,266,133,0,3441,3437,1,0,0,0,3441,3439,1,0, - 0,0,3441,3442,1,0,0,0,3442,3444,1,0,0,0,3443,3435,1,0,0,0,3444,3447, - 1,0,0,0,3445,3443,1,0,0,0,3445,3446,1,0,0,0,3446,457,1,0,0,0,3447, - 3445,1,0,0,0,3448,3453,3,470,235,0,3449,3453,3,504,252,0,3450,3453, - 3,488,244,0,3451,3453,3,494,247,0,3452,3448,1,0,0,0,3452,3449,1, - 0,0,0,3452,3450,1,0,0,0,3452,3451,1,0,0,0,3453,3457,1,0,0,0,3454, - 3456,3,464,232,0,3455,3454,1,0,0,0,3456,3459,1,0,0,0,3457,3455,1, - 0,0,0,3457,3458,1,0,0,0,3458,459,1,0,0,0,3459,3457,1,0,0,0,3460, - 3462,5,250,0,0,3461,3460,1,0,0,0,3461,3462,1,0,0,0,3462,3463,1,0, - 0,0,3463,3465,3,478,239,0,3464,3466,3,468,234,0,3465,3464,1,0,0, - 0,3465,3466,1,0,0,0,3466,3471,1,0,0,0,3467,3469,5,17,0,0,3468,3467, - 1,0,0,0,3468,3469,1,0,0,0,3469,3470,1,0,0,0,3470,3472,3,652,326, - 0,3471,3468,1,0,0,0,3471,3472,1,0,0,0,3472,3473,1,0,0,0,3473,3474, - 5,399,0,0,3474,3475,3,446,223,0,3475,3476,5,400,0,0,3476,461,1,0, - 0,0,3477,3492,5,397,0,0,3478,3489,5,157,0,0,3479,3489,5,60,0,0,3480, - 3482,7,28,0,0,3481,3483,5,231,0,0,3482,3481,1,0,0,0,3482,3483,1, - 0,0,0,3483,3489,1,0,0,0,3484,3486,5,180,0,0,3485,3487,7,29,0,0,3486, - 3485,1,0,0,0,3486,3487,1,0,0,0,3487,3489,1,0,0,0,3488,3478,1,0,0, - 0,3488,3479,1,0,0,0,3488,3480,1,0,0,0,3488,3484,1,0,0,0,3488,3489, - 1,0,0,0,3489,3490,1,0,0,0,3490,3492,5,171,0,0,3491,3477,1,0,0,0, - 3491,3488,1,0,0,0,3492,463,1,0,0,0,3493,3494,5,178,0,0,3494,3495, - 5,378,0,0,3495,3496,5,231,0,0,3496,3497,3,564,282,0,3497,3507,3, - 466,233,0,3498,3499,5,17,0,0,3499,3504,3,652,326,0,3500,3501,5,397, - 0,0,3501,3503,3,652,326,0,3502,3500,1,0,0,0,3503,3506,1,0,0,0,3504, - 3502,1,0,0,0,3504,3505,1,0,0,0,3505,3508,1,0,0,0,3506,3504,1,0,0, - 0,3507,3498,1,0,0,0,3507,3508,1,0,0,0,3508,3551,1,0,0,0,3509,3511, - 5,397,0,0,3510,3509,1,0,0,0,3510,3511,1,0,0,0,3511,3512,1,0,0,0, - 3512,3548,5,178,0,0,3513,3514,5,378,0,0,3514,3515,3,564,282,0,3515, - 3525,3,466,233,0,3516,3517,5,17,0,0,3517,3522,3,652,326,0,3518,3519, - 5,397,0,0,3519,3521,3,652,326,0,3520,3518,1,0,0,0,3521,3524,1,0, - 0,0,3522,3520,1,0,0,0,3522,3523,1,0,0,0,3523,3526,1,0,0,0,3524,3522, - 1,0,0,0,3525,3516,1,0,0,0,3525,3526,1,0,0,0,3526,3549,1,0,0,0,3527, - 3528,5,329,0,0,3528,3529,5,399,0,0,3529,3530,3,500,250,0,3530,3532, - 5,400,0,0,3531,3533,5,17,0,0,3532,3531,1,0,0,0,3532,3533,1,0,0,0, - 3533,3534,1,0,0,0,3534,3546,3,466,233,0,3535,3536,5,399,0,0,3536, - 3541,3,652,326,0,3537,3538,5,397,0,0,3538,3540,3,652,326,0,3539, - 3537,1,0,0,0,3540,3543,1,0,0,0,3541,3539,1,0,0,0,3541,3542,1,0,0, - 0,3542,3544,1,0,0,0,3543,3541,1,0,0,0,3544,3545,5,400,0,0,3545,3547, - 1,0,0,0,3546,3535,1,0,0,0,3546,3547,1,0,0,0,3547,3549,1,0,0,0,3548, - 3513,1,0,0,0,3548,3527,1,0,0,0,3549,3551,1,0,0,0,3550,3493,1,0,0, - 0,3550,3510,1,0,0,0,3551,465,1,0,0,0,3552,3553,3,652,326,0,3553, - 467,1,0,0,0,3554,3555,5,331,0,0,3555,3556,5,399,0,0,3556,3557,5, - 30,0,0,3557,3558,5,431,0,0,3558,3559,5,230,0,0,3559,3560,5,221,0, - 0,3560,3570,5,431,0,0,3561,3562,5,224,0,0,3562,3567,3,594,297,0, - 3563,3564,5,397,0,0,3564,3566,3,594,297,0,3565,3563,1,0,0,0,3566, - 3569,1,0,0,0,3567,3565,1,0,0,0,3567,3568,1,0,0,0,3568,3571,1,0,0, - 0,3569,3567,1,0,0,0,3570,3561,1,0,0,0,3570,3571,1,0,0,0,3571,3572, - 1,0,0,0,3572,3582,5,400,0,0,3573,3574,5,331,0,0,3574,3578,5,399, - 0,0,3575,3576,5,431,0,0,3576,3579,7,30,0,0,3577,3579,5,430,0,0,3578, - 3575,1,0,0,0,3578,3577,1,0,0,0,3579,3580,1,0,0,0,3580,3582,5,400, - 0,0,3581,3554,1,0,0,0,3581,3573,1,0,0,0,3582,469,1,0,0,0,3583,3585, - 3,478,239,0,3584,3586,3,226,113,0,3585,3584,1,0,0,0,3585,3586,1, - 0,0,0,3586,3588,1,0,0,0,3587,3589,3,468,234,0,3588,3587,1,0,0,0, - 3588,3589,1,0,0,0,3589,3591,1,0,0,0,3590,3592,3,472,236,0,3591,3590, - 1,0,0,0,3591,3592,1,0,0,0,3592,3597,1,0,0,0,3593,3595,5,17,0,0,3594, - 3593,1,0,0,0,3594,3595,1,0,0,0,3595,3596,1,0,0,0,3596,3598,3,652, - 326,0,3597,3594,1,0,0,0,3597,3598,1,0,0,0,3598,471,1,0,0,0,3599, - 3609,5,134,0,0,3600,3601,5,327,0,0,3601,3602,5,17,0,0,3602,3603, - 5,221,0,0,3603,3610,3,594,297,0,3604,3605,5,134,0,0,3605,3606,5, - 328,0,0,3606,3607,5,17,0,0,3607,3608,5,221,0,0,3608,3610,5,431,0, - 0,3609,3600,1,0,0,0,3609,3604,1,0,0,0,3610,473,1,0,0,0,3611,3612, - 3,652,326,0,3612,475,1,0,0,0,3613,3614,3,652,326,0,3614,477,1,0, - 0,0,3615,3618,3,480,240,0,3616,3618,3,484,242,0,3617,3615,1,0,0, - 0,3617,3616,1,0,0,0,3618,479,1,0,0,0,3619,3620,3,652,326,0,3620, - 3621,5,395,0,0,3621,3624,3,652,326,0,3622,3623,5,395,0,0,3623,3625, - 3,652,326,0,3624,3622,1,0,0,0,3624,3625,1,0,0,0,3625,3628,1,0,0, - 0,3626,3628,3,652,326,0,3627,3619,1,0,0,0,3627,3626,1,0,0,0,3628, - 481,1,0,0,0,3629,3630,3,652,326,0,3630,3631,5,395,0,0,3631,3634, - 3,652,326,0,3632,3633,5,395,0,0,3633,3635,3,652,326,0,3634,3632, - 1,0,0,0,3634,3635,1,0,0,0,3635,3638,1,0,0,0,3636,3638,3,652,326, - 0,3637,3629,1,0,0,0,3637,3636,1,0,0,0,3638,483,1,0,0,0,3639,3640, - 3,652,326,0,3640,3641,5,395,0,0,3641,3643,1,0,0,0,3642,3639,1,0, - 0,0,3642,3643,1,0,0,0,3643,3644,1,0,0,0,3644,3645,3,652,326,0,3645, - 485,1,0,0,0,3646,3647,3,652,326,0,3647,3648,5,395,0,0,3648,3650, - 1,0,0,0,3649,3646,1,0,0,0,3649,3650,1,0,0,0,3650,3651,1,0,0,0,3651, - 3652,3,652,326,0,3652,487,1,0,0,0,3653,3654,5,399,0,0,3654,3655, - 3,362,181,0,3655,3657,5,400,0,0,3656,3658,5,17,0,0,3657,3656,1,0, - 0,0,3657,3658,1,0,0,0,3658,3659,1,0,0,0,3659,3660,3,652,326,0,3660, - 489,1,0,0,0,3661,3663,3,556,278,0,3662,3664,3,554,277,0,3663,3662, - 1,0,0,0,3663,3664,1,0,0,0,3664,3673,1,0,0,0,3665,3673,3,554,277, - 0,3666,3668,3,560,280,0,3667,3669,3,562,281,0,3668,3667,1,0,0,0, - 3668,3669,1,0,0,0,3669,3673,1,0,0,0,3670,3673,3,562,281,0,3671,3673, - 3,558,279,0,3672,3661,1,0,0,0,3672,3665,1,0,0,0,3672,3666,1,0,0, - 0,3672,3670,1,0,0,0,3672,3671,1,0,0,0,3673,491,1,0,0,0,3674,3678, - 3,488,244,0,3675,3678,3,470,235,0,3676,3678,3,494,247,0,3677,3674, - 1,0,0,0,3677,3675,1,0,0,0,3677,3676,1,0,0,0,3678,493,1,0,0,0,3679, - 3681,3,496,248,0,3680,3682,3,652,326,0,3681,3680,1,0,0,0,3681,3682, - 1,0,0,0,3682,495,1,0,0,0,3683,3684,3,652,326,0,3684,3685,5,399,0, - 0,3685,3686,5,224,0,0,3686,3688,3,492,246,0,3687,3689,3,490,245, - 0,3688,3687,1,0,0,0,3688,3689,1,0,0,0,3689,3705,1,0,0,0,3690,3691, - 5,432,0,0,3691,3692,5,399,0,0,3692,3693,3,594,297,0,3693,3702,5, - 400,0,0,3694,3695,5,397,0,0,3695,3696,5,432,0,0,3696,3697,5,399, - 0,0,3697,3698,3,594,297,0,3698,3699,5,400,0,0,3699,3701,1,0,0,0, - 3700,3694,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0,3702,3703, - 1,0,0,0,3703,3706,1,0,0,0,3704,3702,1,0,0,0,3705,3690,1,0,0,0,3705, - 3706,1,0,0,0,3706,3707,1,0,0,0,3707,3708,5,400,0,0,3708,497,1,0, - 0,0,3709,3710,5,384,0,0,3710,3711,3,594,297,0,3711,499,1,0,0,0,3712, - 3731,5,374,0,0,3713,3718,3,550,275,0,3714,3715,5,397,0,0,3715,3717, - 3,550,275,0,3716,3714,1,0,0,0,3717,3720,1,0,0,0,3718,3716,1,0,0, - 0,3718,3719,1,0,0,0,3719,3732,1,0,0,0,3720,3718,1,0,0,0,3721,3722, - 5,399,0,0,3722,3723,3,546,273,0,3723,3728,5,400,0,0,3724,3725,5, - 397,0,0,3725,3727,3,550,275,0,3726,3724,1,0,0,0,3727,3730,1,0,0, - 0,3728,3726,1,0,0,0,3728,3729,1,0,0,0,3729,3732,1,0,0,0,3730,3728, - 1,0,0,0,3731,3713,1,0,0,0,3731,3721,1,0,0,0,3732,501,1,0,0,0,3733, - 3734,5,329,0,0,3734,3735,5,399,0,0,3735,3736,3,500,250,0,3736,3737, - 5,400,0,0,3737,503,1,0,0,0,3738,3740,3,502,251,0,3739,3741,5,17, - 0,0,3740,3739,1,0,0,0,3740,3741,1,0,0,0,3741,3742,1,0,0,0,3742,3752, - 3,466,233,0,3743,3744,5,399,0,0,3744,3749,3,652,326,0,3745,3746, - 5,397,0,0,3746,3748,3,652,326,0,3747,3745,1,0,0,0,3748,3751,1,0, - 0,0,3749,3747,1,0,0,0,3749,3750,1,0,0,0,3750,3753,1,0,0,0,3751,3749, - 1,0,0,0,3752,3743,1,0,0,0,3752,3753,1,0,0,0,3753,3754,1,0,0,0,3754, - 3755,5,400,0,0,3755,505,1,0,0,0,3756,3758,5,299,0,0,3757,3759,5, - 436,0,0,3758,3757,1,0,0,0,3758,3759,1,0,0,0,3759,3766,1,0,0,0,3760, - 3762,7,22,0,0,3761,3760,1,0,0,0,3761,3762,1,0,0,0,3762,3763,1,0, - 0,0,3763,3767,3,510,255,0,3764,3765,5,347,0,0,3765,3767,3,508,254, - 0,3766,3761,1,0,0,0,3766,3764,1,0,0,0,3767,3770,1,0,0,0,3768,3770, - 3,518,259,0,3769,3756,1,0,0,0,3769,3768,1,0,0,0,3770,507,1,0,0,0, - 3771,3772,5,399,0,0,3772,3773,3,522,261,0,3773,3774,5,400,0,0,3774, - 3775,3,212,106,0,3775,3776,3,216,108,0,3776,3777,5,370,0,0,3777, - 3790,5,426,0,0,3778,3788,5,17,0,0,3779,3782,5,399,0,0,3780,3783, - 3,448,224,0,3781,3783,3,248,124,0,3782,3780,1,0,0,0,3782,3781,1, - 0,0,0,3783,3784,1,0,0,0,3784,3785,5,400,0,0,3785,3789,1,0,0,0,3786, - 3789,3,448,224,0,3787,3789,3,248,124,0,3788,3779,1,0,0,0,3788,3786, - 1,0,0,0,3788,3787,1,0,0,0,3789,3791,1,0,0,0,3790,3778,1,0,0,0,3790, - 3791,1,0,0,0,3791,3792,1,0,0,0,3792,3793,3,212,106,0,3793,3794,3, - 214,107,0,3794,509,1,0,0,0,3795,3800,3,512,256,0,3796,3797,5,397, - 0,0,3797,3799,3,512,256,0,3798,3796,1,0,0,0,3799,3802,1,0,0,0,3800, - 3798,1,0,0,0,3800,3801,1,0,0,0,3801,511,1,0,0,0,3802,3800,1,0,0, - 0,3803,3827,3,444,222,0,3804,3807,3,514,257,0,3805,3807,3,516,258, - 0,3806,3804,1,0,0,0,3806,3805,1,0,0,0,3807,3824,1,0,0,0,3808,3810, - 5,17,0,0,3809,3808,1,0,0,0,3809,3810,1,0,0,0,3810,3811,1,0,0,0,3811, - 3825,3,652,326,0,3812,3813,5,17,0,0,3813,3814,5,399,0,0,3814,3819, - 3,652,326,0,3815,3816,5,397,0,0,3816,3818,3,652,326,0,3817,3815, - 1,0,0,0,3818,3821,1,0,0,0,3819,3817,1,0,0,0,3819,3820,1,0,0,0,3820, - 3822,1,0,0,0,3821,3819,1,0,0,0,3822,3823,5,400,0,0,3823,3825,1,0, - 0,0,3824,3809,1,0,0,0,3824,3812,1,0,0,0,3824,3825,1,0,0,0,3825,3827, - 1,0,0,0,3826,3803,1,0,0,0,3826,3806,1,0,0,0,3827,513,1,0,0,0,3828, - 3829,3,256,128,0,3829,515,1,0,0,0,3830,3831,3,594,297,0,3831,517, - 1,0,0,0,3832,3833,7,31,0,0,3833,3834,3,522,261,0,3834,3835,3,212, - 106,0,3835,3836,3,216,108,0,3836,3837,5,370,0,0,3837,3850,5,426, - 0,0,3838,3848,5,17,0,0,3839,3842,5,399,0,0,3840,3843,3,448,224,0, - 3841,3843,3,248,124,0,3842,3840,1,0,0,0,3842,3841,1,0,0,0,3843,3844, - 1,0,0,0,3844,3845,5,400,0,0,3845,3849,1,0,0,0,3846,3849,3,448,224, - 0,3847,3849,3,248,124,0,3848,3839,1,0,0,0,3848,3846,1,0,0,0,3848, - 3847,1,0,0,0,3849,3851,1,0,0,0,3850,3838,1,0,0,0,3850,3851,1,0,0, - 0,3851,3852,1,0,0,0,3852,3853,3,212,106,0,3853,3854,3,214,107,0, - 3854,519,1,0,0,0,3855,3858,3,444,222,0,3856,3858,3,594,297,0,3857, - 3855,1,0,0,0,3857,3856,1,0,0,0,3858,521,1,0,0,0,3859,3864,3,520, - 260,0,3860,3861,5,397,0,0,3861,3863,3,520,260,0,3862,3860,1,0,0, - 0,3863,3866,1,0,0,0,3864,3862,1,0,0,0,3864,3865,1,0,0,0,3865,523, - 1,0,0,0,3866,3864,1,0,0,0,3867,3868,5,386,0,0,3868,3869,3,652,326, - 0,3869,3870,5,17,0,0,3870,3878,3,526,263,0,3871,3872,5,397,0,0,3872, - 3873,3,652,326,0,3873,3874,5,17,0,0,3874,3875,3,526,263,0,3875,3877, - 1,0,0,0,3876,3871,1,0,0,0,3877,3880,1,0,0,0,3878,3876,1,0,0,0,3878, - 3879,1,0,0,0,3879,525,1,0,0,0,3880,3878,1,0,0,0,3881,3894,3,652, - 326,0,3882,3884,5,399,0,0,3883,3885,3,652,326,0,3884,3883,1,0,0, - 0,3884,3885,1,0,0,0,3885,3887,1,0,0,0,3886,3888,3,490,245,0,3887, - 3886,1,0,0,0,3887,3888,1,0,0,0,3888,3890,1,0,0,0,3889,3891,3,528, - 264,0,3890,3889,1,0,0,0,3890,3891,1,0,0,0,3891,3892,1,0,0,0,3892, - 3894,5,400,0,0,3893,3881,1,0,0,0,3893,3882,1,0,0,0,3894,527,1,0, - 0,0,3895,3909,7,32,0,0,3896,3897,5,354,0,0,3897,3903,5,247,0,0,3898, - 3899,5,62,0,0,3899,3903,5,291,0,0,3900,3901,5,431,0,0,3901,3903, - 5,247,0,0,3902,3896,1,0,0,0,3902,3898,1,0,0,0,3902,3900,1,0,0,0, - 3903,3910,1,0,0,0,3904,3905,5,25,0,0,3905,3906,3,530,265,0,3906, - 3907,5,11,0,0,3907,3908,3,530,265,0,3908,3910,1,0,0,0,3909,3902, - 1,0,0,0,3909,3904,1,0,0,0,3910,529,1,0,0,0,3911,3912,7,33,0,0,3912, - 3916,7,34,0,0,3913,3914,5,62,0,0,3914,3916,5,291,0,0,3915,3911,1, - 0,0,0,3915,3913,1,0,0,0,3916,531,1,0,0,0,3917,3918,5,144,0,0,3918, - 3924,5,32,0,0,3919,3925,3,256,128,0,3920,3925,3,534,267,0,3921,3925, - 3,536,268,0,3922,3923,5,399,0,0,3923,3925,5,400,0,0,3924,3919,1, - 0,0,0,3924,3920,1,0,0,0,3924,3921,1,0,0,0,3924,3922,1,0,0,0,3925, - 533,1,0,0,0,3926,3929,5,290,0,0,3927,3929,5,61,0,0,3928,3926,1,0, - 0,0,3928,3927,1,0,0,0,3929,3930,1,0,0,0,3930,3931,5,399,0,0,3931, - 3936,3,594,297,0,3932,3933,5,397,0,0,3933,3935,3,594,297,0,3934, - 3932,1,0,0,0,3935,3938,1,0,0,0,3936,3934,1,0,0,0,3936,3937,1,0,0, - 0,3937,3939,1,0,0,0,3938,3936,1,0,0,0,3939,3940,5,400,0,0,3940,535, - 1,0,0,0,3941,3946,3,552,276,0,3942,3943,5,387,0,0,3943,3947,5,290, - 0,0,3944,3945,5,387,0,0,3945,3947,5,61,0,0,3946,3942,1,0,0,0,3946, - 3944,1,0,0,0,3946,3947,1,0,0,0,3947,3961,1,0,0,0,3948,3949,5,145, - 0,0,3949,3950,5,305,0,0,3950,3951,5,399,0,0,3951,3956,3,538,269, - 0,3952,3953,5,397,0,0,3953,3955,3,538,269,0,3954,3952,1,0,0,0,3955, - 3958,1,0,0,0,3956,3954,1,0,0,0,3956,3957,1,0,0,0,3957,3959,1,0,0, - 0,3958,3956,1,0,0,0,3959,3960,5,400,0,0,3960,3962,1,0,0,0,3961,3948, - 1,0,0,0,3961,3962,1,0,0,0,3962,537,1,0,0,0,3963,3965,5,399,0,0,3964, - 3966,3,594,297,0,3965,3964,1,0,0,0,3965,3966,1,0,0,0,3966,3971,1, - 0,0,0,3967,3968,5,397,0,0,3968,3970,3,594,297,0,3969,3967,1,0,0, - 0,3970,3973,1,0,0,0,3971,3969,1,0,0,0,3971,3972,1,0,0,0,3972,3974, - 1,0,0,0,3973,3971,1,0,0,0,3974,3977,5,400,0,0,3975,3977,3,594,297, - 0,3976,3963,1,0,0,0,3976,3975,1,0,0,0,3977,539,1,0,0,0,3978,3979, - 5,146,0,0,3979,3980,3,594,297,0,3980,541,1,0,0,0,3981,3982,5,256, - 0,0,3982,3983,3,594,297,0,3983,543,1,0,0,0,3984,3987,5,83,0,0,3985, - 3987,3,594,297,0,3986,3984,1,0,0,0,3986,3985,1,0,0,0,3987,545,1, - 0,0,0,3988,3990,3,594,297,0,3989,3991,5,17,0,0,3990,3989,1,0,0,0, - 3990,3991,1,0,0,0,3991,3993,1,0,0,0,3992,3994,3,652,326,0,3993,3992, - 1,0,0,0,3993,3994,1,0,0,0,3994,4005,1,0,0,0,3995,3996,5,397,0,0, - 3996,3998,3,594,297,0,3997,3999,5,17,0,0,3998,3997,1,0,0,0,3998, - 3999,1,0,0,0,3999,4001,1,0,0,0,4000,4002,3,652,326,0,4001,4000,1, - 0,0,0,4001,4002,1,0,0,0,4002,4004,1,0,0,0,4003,3995,1,0,0,0,4004, - 4007,1,0,0,0,4005,4003,1,0,0,0,4005,4006,1,0,0,0,4006,547,1,0,0, - 0,4007,4005,1,0,0,0,4008,4011,3,550,275,0,4009,4011,3,552,276,0, - 4010,4008,1,0,0,0,4010,4009,1,0,0,0,4011,549,1,0,0,0,4012,4013,5, - 399,0,0,4013,4014,3,552,276,0,4014,4015,5,400,0,0,4015,551,1,0,0, - 0,4016,4023,3,544,272,0,4017,4018,5,397,0,0,4018,4020,3,544,272, - 0,4019,4017,1,0,0,0,4020,4021,1,0,0,0,4021,4019,1,0,0,0,4021,4022, - 1,0,0,0,4022,4024,1,0,0,0,4023,4019,1,0,0,0,4023,4024,1,0,0,0,4024, - 553,1,0,0,0,4025,4026,5,229,0,0,4026,4027,5,32,0,0,4027,4032,3,310, - 155,0,4028,4029,5,397,0,0,4029,4031,3,310,155,0,4030,4028,1,0,0, - 0,4031,4034,1,0,0,0,4032,4030,1,0,0,0,4032,4033,1,0,0,0,4033,555, - 1,0,0,0,4034,4032,1,0,0,0,4035,4036,5,237,0,0,4036,4037,5,32,0,0, - 4037,4038,3,548,274,0,4038,557,1,0,0,0,4039,4040,5,41,0,0,4040,4041, - 5,32,0,0,4041,4042,3,548,274,0,4042,559,1,0,0,0,4043,4044,5,97,0, - 0,4044,4045,5,32,0,0,4045,4046,3,548,274,0,4046,561,1,0,0,0,4047, - 4048,5,314,0,0,4048,4068,5,32,0,0,4049,4050,5,399,0,0,4050,4055, - 3,310,155,0,4051,4052,5,397,0,0,4052,4054,3,310,155,0,4053,4051, - 1,0,0,0,4054,4057,1,0,0,0,4055,4053,1,0,0,0,4055,4056,1,0,0,0,4056, - 4058,1,0,0,0,4057,4055,1,0,0,0,4058,4059,5,400,0,0,4059,4069,1,0, - 0,0,4060,4065,3,310,155,0,4061,4062,5,397,0,0,4062,4064,3,310,155, - 0,4063,4061,1,0,0,0,4064,4067,1,0,0,0,4065,4063,1,0,0,0,4065,4066, - 1,0,0,0,4066,4069,1,0,0,0,4067,4065,1,0,0,0,4068,4049,1,0,0,0,4068, - 4060,1,0,0,0,4069,563,1,0,0,0,4070,4071,5,349,0,0,4071,4075,5,399, - 0,0,4072,4076,5,179,0,0,4073,4076,5,343,0,0,4074,4076,5,29,0,0,4075, - 4072,1,0,0,0,4075,4073,1,0,0,0,4075,4074,1,0,0,0,4075,4076,1,0,0, - 0,4076,4078,1,0,0,0,4077,4079,3,520,260,0,4078,4077,1,0,0,0,4078, - 4079,1,0,0,0,4079,4080,1,0,0,0,4080,4081,5,139,0,0,4081,4082,3,520, - 260,0,4082,4083,5,400,0,0,4083,4124,1,0,0,0,4084,4085,3,572,286, - 0,4085,4100,5,399,0,0,4086,4101,5,415,0,0,4087,4089,7,22,0,0,4088, - 4087,1,0,0,0,4088,4089,1,0,0,0,4089,4098,1,0,0,0,4090,4095,3,520, - 260,0,4091,4092,5,397,0,0,4092,4094,3,520,260,0,4093,4091,1,0,0, - 0,4094,4097,1,0,0,0,4095,4093,1,0,0,0,4095,4096,1,0,0,0,4096,4099, - 1,0,0,0,4097,4095,1,0,0,0,4098,4090,1,0,0,0,4098,4099,1,0,0,0,4099, - 4101,1,0,0,0,4100,4086,1,0,0,0,4100,4088,1,0,0,0,4101,4121,1,0,0, - 0,4102,4103,5,400,0,0,4103,4104,5,388,0,0,4104,4105,5,144,0,0,4105, - 4106,5,399,0,0,4106,4107,3,554,277,0,4107,4108,5,400,0,0,4108,4122, - 1,0,0,0,4109,4111,5,400,0,0,4110,4112,3,566,283,0,4111,4110,1,0, - 0,0,4111,4112,1,0,0,0,4112,4113,1,0,0,0,4113,4114,5,234,0,0,4114, - 4122,3,526,263,0,4115,4116,3,566,283,0,4116,4117,5,400,0,0,4117, - 4118,5,234,0,0,4118,4119,3,526,263,0,4119,4122,1,0,0,0,4120,4122, - 5,400,0,0,4121,4102,1,0,0,0,4121,4109,1,0,0,0,4121,4115,1,0,0,0, - 4121,4120,1,0,0,0,4122,4124,1,0,0,0,4123,4070,1,0,0,0,4123,4084, - 1,0,0,0,4124,565,1,0,0,0,4125,4126,7,35,0,0,4126,4127,5,220,0,0, - 4127,567,1,0,0,0,4128,4129,3,654,327,0,4129,569,1,0,0,0,4130,4133, - 3,654,327,0,4131,4133,5,426,0,0,4132,4130,1,0,0,0,4132,4131,1,0, - 0,0,4133,571,1,0,0,0,4134,4138,3,654,327,0,4135,4138,3,660,330,0, - 4136,4138,3,650,325,0,4137,4134,1,0,0,0,4137,4135,1,0,0,0,4137,4136, - 1,0,0,0,4138,573,1,0,0,0,4139,4140,5,36,0,0,4140,4141,5,399,0,0, - 4141,4142,3,594,297,0,4142,4143,5,17,0,0,4143,4146,3,350,175,0,4144, - 4145,5,137,0,0,4145,4147,5,426,0,0,4146,4144,1,0,0,0,4146,4147,1, - 0,0,0,4147,4148,1,0,0,0,4148,4149,5,400,0,0,4149,575,1,0,0,0,4150, - 4151,5,35,0,0,4151,4157,3,594,297,0,4152,4153,5,383,0,0,4153,4154, - 3,594,297,0,4154,4155,5,335,0,0,4155,4156,3,594,297,0,4156,4158, - 1,0,0,0,4157,4152,1,0,0,0,4158,4159,1,0,0,0,4159,4157,1,0,0,0,4159, - 4160,1,0,0,0,4160,4163,1,0,0,0,4161,4162,5,105,0,0,4162,4164,3,594, - 297,0,4163,4161,1,0,0,0,4163,4164,1,0,0,0,4164,4165,1,0,0,0,4165, - 4166,5,108,0,0,4166,577,1,0,0,0,4167,4173,5,35,0,0,4168,4169,5,383, - 0,0,4169,4170,3,594,297,0,4170,4171,5,335,0,0,4171,4172,3,594,297, - 0,4172,4174,1,0,0,0,4173,4168,1,0,0,0,4174,4175,1,0,0,0,4175,4173, - 1,0,0,0,4175,4176,1,0,0,0,4176,4179,1,0,0,0,4177,4178,5,105,0,0, - 4178,4180,3,594,297,0,4179,4177,1,0,0,0,4179,4180,1,0,0,0,4180,4181, - 1,0,0,0,4181,4182,5,108,0,0,4182,579,1,0,0,0,4183,4184,5,132,0,0, - 4184,4185,5,399,0,0,4185,4188,3,594,297,0,4186,4187,5,341,0,0,4187, - 4189,3,584,292,0,4188,4186,1,0,0,0,4188,4189,1,0,0,0,4189,4190,1, - 0,0,0,4190,4191,5,400,0,0,4191,581,1,0,0,0,4192,4193,5,124,0,0,4193, - 4194,5,399,0,0,4194,4195,3,584,292,0,4195,4196,5,139,0,0,4196,4197, - 3,594,297,0,4197,4198,5,400,0,0,4198,583,1,0,0,0,4199,4208,3,680, - 340,0,4200,4208,5,257,0,0,4201,4208,3,682,341,0,4202,4208,3,684, - 342,0,4203,4208,3,686,343,0,4204,4208,3,688,344,0,4205,4208,3,690, - 345,0,4206,4208,3,692,346,0,4207,4199,1,0,0,0,4207,4200,1,0,0,0, - 4207,4201,1,0,0,0,4207,4202,1,0,0,0,4207,4203,1,0,0,0,4207,4204, - 1,0,0,0,4207,4205,1,0,0,0,4207,4206,1,0,0,0,4208,585,1,0,0,0,4209, - 4210,3,588,294,0,4210,4211,3,592,296,0,4211,4238,1,0,0,0,4212,4238, - 5,431,0,0,4213,4214,5,71,0,0,4214,4238,5,426,0,0,4215,4238,5,63, - 0,0,4216,4217,5,337,0,0,4217,4238,5,426,0,0,4218,4238,5,64,0,0,4219, - 4220,5,338,0,0,4220,4238,5,426,0,0,4221,4225,5,426,0,0,4222,4224, - 5,426,0,0,4223,4222,1,0,0,0,4224,4227,1,0,0,0,4225,4223,1,0,0,0, - 4225,4226,1,0,0,0,4226,4238,1,0,0,0,4227,4225,1,0,0,0,4228,4238, - 5,428,0,0,4229,4238,5,429,0,0,4230,4231,5,433,0,0,4231,4238,5,427, - 0,0,4232,4238,5,350,0,0,4233,4238,5,125,0,0,4234,4238,5,219,0,0, - 4235,4238,5,424,0,0,4236,4238,3,258,129,0,4237,4209,1,0,0,0,4237, - 4212,1,0,0,0,4237,4213,1,0,0,0,4237,4215,1,0,0,0,4237,4216,1,0,0, - 0,4237,4218,1,0,0,0,4237,4219,1,0,0,0,4237,4221,1,0,0,0,4237,4228, - 1,0,0,0,4237,4229,1,0,0,0,4237,4230,1,0,0,0,4237,4232,1,0,0,0,4237, - 4233,1,0,0,0,4237,4234,1,0,0,0,4237,4235,1,0,0,0,4237,4236,1,0,0, - 0,4238,587,1,0,0,0,4239,4240,7,27,0,0,4240,589,1,0,0,0,4241,4242, - 5,399,0,0,4242,4243,3,588,294,0,4243,4244,5,400,0,0,4244,4245,3, - 592,296,0,4245,4257,1,0,0,0,4246,4252,5,165,0,0,4247,4253,3,588, - 294,0,4248,4249,5,399,0,0,4249,4250,3,594,297,0,4250,4251,5,400, - 0,0,4251,4253,1,0,0,0,4252,4247,1,0,0,0,4252,4248,1,0,0,0,4253,4254, - 1,0,0,0,4254,4255,3,592,296,0,4255,4257,1,0,0,0,4256,4241,1,0,0, - 0,4256,4246,1,0,0,0,4257,591,1,0,0,0,4258,4259,3,680,340,0,4259, - 4260,5,341,0,0,4260,4261,3,682,341,0,4261,4273,1,0,0,0,4262,4263, - 3,686,343,0,4263,4264,5,341,0,0,4264,4265,3,692,346,0,4265,4273, - 1,0,0,0,4266,4273,3,680,340,0,4267,4273,3,682,341,0,4268,4273,3, - 686,343,0,4269,4273,3,688,344,0,4270,4273,3,690,345,0,4271,4273, - 3,692,346,0,4272,4258,1,0,0,0,4272,4262,1,0,0,0,4272,4266,1,0,0, - 0,4272,4267,1,0,0,0,4272,4268,1,0,0,0,4272,4269,1,0,0,0,4272,4270, - 1,0,0,0,4272,4271,1,0,0,0,4273,593,1,0,0,0,4274,4279,3,636,318,0, - 4275,4276,5,228,0,0,4276,4278,3,636,318,0,4277,4275,1,0,0,0,4278, - 4281,1,0,0,0,4279,4277,1,0,0,0,4279,4280,1,0,0,0,4280,595,1,0,0, - 0,4281,4279,1,0,0,0,4282,4294,3,586,293,0,4283,4294,3,590,295,0, - 4284,4294,3,574,287,0,4285,4294,3,582,291,0,4286,4294,3,580,290, - 0,4287,4294,3,576,288,0,4288,4294,3,578,289,0,4289,4294,3,614,307, - 0,4290,4294,3,564,282,0,4291,4294,3,550,275,0,4292,4294,3,652,326, - 0,4293,4282,1,0,0,0,4293,4283,1,0,0,0,4293,4284,1,0,0,0,4293,4285, - 1,0,0,0,4293,4286,1,0,0,0,4293,4287,1,0,0,0,4293,4288,1,0,0,0,4293, - 4289,1,0,0,0,4293,4290,1,0,0,0,4293,4291,1,0,0,0,4293,4292,1,0,0, - 0,4294,597,1,0,0,0,4295,4297,7,36,0,0,4296,4295,1,0,0,0,4297,4300, - 1,0,0,0,4298,4296,1,0,0,0,4298,4299,1,0,0,0,4299,4301,1,0,0,0,4300, - 4298,1,0,0,0,4301,4310,3,596,298,0,4302,4303,5,401,0,0,4303,4304, - 3,594,297,0,4304,4305,5,402,0,0,4305,4309,1,0,0,0,4306,4307,5,395, - 0,0,4307,4309,3,652,326,0,4308,4302,1,0,0,0,4308,4306,1,0,0,0,4309, - 4312,1,0,0,0,4310,4308,1,0,0,0,4310,4311,1,0,0,0,4311,599,1,0,0, - 0,4312,4310,1,0,0,0,4313,4318,3,598,299,0,4314,4315,5,423,0,0,4315, - 4317,3,598,299,0,4316,4314,1,0,0,0,4317,4320,1,0,0,0,4318,4316,1, - 0,0,0,4318,4319,1,0,0,0,4319,601,1,0,0,0,4320,4318,1,0,0,0,4321, - 4326,3,600,300,0,4322,4323,7,37,0,0,4323,4325,3,600,300,0,4324,4322, - 1,0,0,0,4325,4328,1,0,0,0,4326,4324,1,0,0,0,4326,4327,1,0,0,0,4327, - 603,1,0,0,0,4328,4326,1,0,0,0,4329,4334,3,602,301,0,4330,4331,7, - 38,0,0,4331,4333,3,602,301,0,4332,4330,1,0,0,0,4333,4336,1,0,0,0, - 4334,4332,1,0,0,0,4334,4335,1,0,0,0,4335,605,1,0,0,0,4336,4334,1, - 0,0,0,4337,4342,3,604,302,0,4338,4339,5,422,0,0,4339,4341,3,604, - 302,0,4340,4338,1,0,0,0,4341,4344,1,0,0,0,4342,4340,1,0,0,0,4342, - 4343,1,0,0,0,4343,607,1,0,0,0,4344,4342,1,0,0,0,4345,4350,3,606, - 303,0,4346,4347,5,419,0,0,4347,4349,3,606,303,0,4348,4346,1,0,0, - 0,4349,4352,1,0,0,0,4350,4348,1,0,0,0,4350,4351,1,0,0,0,4351,609, - 1,0,0,0,4352,4350,1,0,0,0,4353,4358,3,608,304,0,4354,4355,5,421, - 0,0,4355,4357,3,608,304,0,4356,4354,1,0,0,0,4357,4360,1,0,0,0,4358, - 4356,1,0,0,0,4358,4359,1,0,0,0,4359,611,1,0,0,0,4360,4358,1,0,0, - 0,4361,4362,7,39,0,0,4362,613,1,0,0,0,4363,4364,5,399,0,0,4364,4365, - 3,378,189,0,4365,4366,5,400,0,0,4366,615,1,0,0,0,4367,4369,3,610, - 305,0,4368,4370,3,618,309,0,4369,4368,1,0,0,0,4369,4370,1,0,0,0, - 4370,4374,1,0,0,0,4371,4372,5,117,0,0,4372,4374,3,614,307,0,4373, - 4367,1,0,0,0,4373,4371,1,0,0,0,4374,617,1,0,0,0,4375,4376,3,612, - 306,0,4376,4377,3,610,305,0,4377,4382,1,0,0,0,4378,4382,3,620,310, - 0,4379,4380,5,216,0,0,4380,4382,3,624,312,0,4381,4375,1,0,0,0,4381, - 4378,1,0,0,0,4381,4379,1,0,0,0,4382,619,1,0,0,0,4383,4384,5,154, - 0,0,4384,4398,3,622,311,0,4385,4386,5,25,0,0,4386,4387,3,610,305, - 0,4387,4388,5,11,0,0,4388,4389,3,610,305,0,4389,4398,1,0,0,0,4390, - 4391,5,184,0,0,4391,4392,7,40,0,0,4392,4398,3,550,275,0,4393,4394, - 3,648,324,0,4394,4395,7,41,0,0,4395,4396,3,614,307,0,4396,4398,1, - 0,0,0,4397,4383,1,0,0,0,4397,4385,1,0,0,0,4397,4390,1,0,0,0,4397, - 4393,1,0,0,0,4398,621,1,0,0,0,4399,4402,3,614,307,0,4400,4402,3, - 550,275,0,4401,4399,1,0,0,0,4401,4400,1,0,0,0,4402,623,1,0,0,0,4403, - 4404,7,42,0,0,4404,4407,3,610,305,0,4405,4407,3,620,310,0,4406,4403, - 1,0,0,0,4406,4405,1,0,0,0,4407,625,1,0,0,0,4408,4409,5,167,0,0,4409, - 4410,5,96,0,0,4410,4411,5,139,0,0,4411,627,1,0,0,0,4412,4420,5,405, - 0,0,4413,4420,5,406,0,0,4414,4420,5,407,0,0,4415,4416,5,167,0,0, - 4416,4417,5,216,0,0,4417,4418,5,96,0,0,4418,4420,5,139,0,0,4419, - 4412,1,0,0,0,4419,4413,1,0,0,0,4419,4414,1,0,0,0,4419,4415,1,0,0, - 0,4420,629,1,0,0,0,4421,4430,3,616,308,0,4422,4423,3,628,314,0,4423, - 4424,3,616,308,0,4424,4429,1,0,0,0,4425,4426,3,626,313,0,4426,4427, - 3,616,308,0,4427,4429,1,0,0,0,4428,4422,1,0,0,0,4428,4425,1,0,0, - 0,4429,4432,1,0,0,0,4430,4428,1,0,0,0,4430,4431,1,0,0,0,4431,631, - 1,0,0,0,4432,4430,1,0,0,0,4433,4440,5,219,0,0,4434,4440,5,350,0, - 0,4435,4440,5,125,0,0,4436,4440,5,360,0,0,4437,4438,5,216,0,0,4438, - 4440,7,43,0,0,4439,4433,1,0,0,0,4439,4434,1,0,0,0,4439,4435,1,0, - 0,0,4439,4436,1,0,0,0,4439,4437,1,0,0,0,4440,633,1,0,0,0,4441,4443, - 5,216,0,0,4442,4441,1,0,0,0,4443,4446,1,0,0,0,4444,4442,1,0,0,0, - 4444,4445,1,0,0,0,4445,4447,1,0,0,0,4446,4444,1,0,0,0,4447,4450, - 3,630,315,0,4448,4449,5,167,0,0,4449,4451,3,632,316,0,4450,4448, - 1,0,0,0,4450,4451,1,0,0,0,4451,635,1,0,0,0,4452,4457,3,634,317,0, - 4453,4454,5,11,0,0,4454,4456,3,634,317,0,4455,4453,1,0,0,0,4456, - 4459,1,0,0,0,4457,4455,1,0,0,0,4457,4458,1,0,0,0,4458,637,1,0,0, - 0,4459,4457,1,0,0,0,4460,4462,3,480,240,0,4461,4463,3,640,320,0, - 4462,4461,1,0,0,0,4462,4463,1,0,0,0,4463,639,1,0,0,0,4464,4465,5, - 237,0,0,4465,4466,5,399,0,0,4466,4471,3,642,321,0,4467,4468,5,397, - 0,0,4468,4470,3,642,321,0,4469,4467,1,0,0,0,4470,4473,1,0,0,0,4471, - 4469,1,0,0,0,4471,4472,1,0,0,0,4472,4474,1,0,0,0,4473,4471,1,0,0, - 0,4474,4475,5,400,0,0,4475,641,1,0,0,0,4476,4479,3,652,326,0,4477, - 4478,5,405,0,0,4478,4480,3,586,293,0,4479,4477,1,0,0,0,4479,4480, - 1,0,0,0,4480,643,1,0,0,0,4481,4482,5,399,0,0,4482,4487,3,646,323, - 0,4483,4484,5,397,0,0,4484,4486,3,646,323,0,4485,4483,1,0,0,0,4486, - 4489,1,0,0,0,4487,4485,1,0,0,0,4487,4488,1,0,0,0,4488,4490,1,0,0, - 0,4489,4487,1,0,0,0,4490,4491,5,400,0,0,4491,645,1,0,0,0,4492,4495, - 3,652,326,0,4493,4496,5,184,0,0,4494,4496,3,648,324,0,4495,4493, - 1,0,0,0,4495,4494,1,0,0,0,4496,4497,1,0,0,0,4497,4498,3,586,293, - 0,4498,647,1,0,0,0,4499,4500,7,44,0,0,4500,649,1,0,0,0,4501,4502, - 7,45,0,0,4502,651,1,0,0,0,4503,4506,5,432,0,0,4504,4506,3,658,329, - 0,4505,4503,1,0,0,0,4505,4504,1,0,0,0,4506,653,1,0,0,0,4507,4510, - 3,652,326,0,4508,4509,5,395,0,0,4509,4511,3,652,326,0,4510,4508, - 1,0,0,0,4510,4511,1,0,0,0,4511,655,1,0,0,0,4512,4513,3,652,326,0, - 4513,657,1,0,0,0,4514,4515,7,46,0,0,4515,659,1,0,0,0,4516,4517,7, - 47,0,0,4517,661,1,0,0,0,4518,4570,3,652,326,0,4519,4570,5,299,0, - 0,4520,4570,5,171,0,0,4521,4570,5,237,0,0,4522,4570,5,198,0,0,4523, - 4570,5,268,0,0,4524,4570,5,369,0,0,4525,4570,5,241,0,0,4526,4570, - 5,165,0,0,4527,4570,5,292,0,0,4528,4570,5,356,0,0,4529,4570,5,144, - 0,0,4530,4570,5,203,0,0,4531,4570,5,219,0,0,4532,4570,5,126,0,0, - 4533,4570,5,188,0,0,4534,4570,5,101,0,0,4535,4570,5,329,0,0,4536, - 4570,5,224,0,0,4537,4570,5,291,0,0,4538,4570,5,145,0,0,4539,4570, - 5,304,0,0,4540,4570,5,135,0,0,4541,4570,5,318,0,0,4542,4570,5,161, - 0,0,4543,4570,5,54,0,0,4544,4570,5,166,0,0,4545,4570,5,358,0,0,4546, - 4570,5,45,0,0,4547,4570,5,347,0,0,4548,4570,5,96,0,0,4549,4570,5, - 154,0,0,4550,4570,5,269,0,0,4551,4570,5,337,0,0,4552,4570,5,225, - 0,0,4553,4570,5,108,0,0,4554,4570,5,141,0,0,4555,4570,5,365,0,0, - 4556,4570,5,21,0,0,4557,4570,5,78,0,0,4558,4570,5,374,0,0,4559,4570, - 5,336,0,0,4560,4570,5,167,0,0,4561,4570,5,134,0,0,4562,4570,5,216, - 0,0,4563,4570,5,27,0,0,4564,4570,5,370,0,0,4565,4570,5,263,0,0,4566, - 4570,5,25,0,0,4567,4570,5,62,0,0,4568,4570,5,17,0,0,4569,4518,1, - 0,0,0,4569,4519,1,0,0,0,4569,4520,1,0,0,0,4569,4521,1,0,0,0,4569, - 4522,1,0,0,0,4569,4523,1,0,0,0,4569,4524,1,0,0,0,4569,4525,1,0,0, - 0,4569,4526,1,0,0,0,4569,4527,1,0,0,0,4569,4528,1,0,0,0,4569,4529, - 1,0,0,0,4569,4530,1,0,0,0,4569,4531,1,0,0,0,4569,4532,1,0,0,0,4569, - 4533,1,0,0,0,4569,4534,1,0,0,0,4569,4535,1,0,0,0,4569,4536,1,0,0, - 0,4569,4537,1,0,0,0,4569,4538,1,0,0,0,4569,4539,1,0,0,0,4569,4540, - 1,0,0,0,4569,4541,1,0,0,0,4569,4542,1,0,0,0,4569,4543,1,0,0,0,4569, - 4544,1,0,0,0,4569,4545,1,0,0,0,4569,4546,1,0,0,0,4569,4547,1,0,0, - 0,4569,4548,1,0,0,0,4569,4549,1,0,0,0,4569,4550,1,0,0,0,4569,4551, - 1,0,0,0,4569,4552,1,0,0,0,4569,4553,1,0,0,0,4569,4554,1,0,0,0,4569, - 4555,1,0,0,0,4569,4556,1,0,0,0,4569,4557,1,0,0,0,4569,4558,1,0,0, - 0,4569,4559,1,0,0,0,4569,4560,1,0,0,0,4569,4561,1,0,0,0,4569,4562, - 1,0,0,0,4569,4563,1,0,0,0,4569,4564,1,0,0,0,4569,4565,1,0,0,0,4569, - 4566,1,0,0,0,4569,4567,1,0,0,0,4569,4568,1,0,0,0,4570,663,1,0,0, - 0,4571,4572,5,58,0,0,4572,4573,5,280,0,0,4573,4575,5,243,0,0,4574, - 4576,3,32,16,0,4575,4574,1,0,0,0,4575,4576,1,0,0,0,4576,4586,1,0, - 0,0,4577,4578,3,652,326,0,4578,4579,5,184,0,0,4579,4580,3,652,326, - 0,4580,4587,1,0,0,0,4581,4584,3,652,326,0,4582,4583,5,387,0,0,4583, - 4585,3,670,335,0,4584,4582,1,0,0,0,4584,4585,1,0,0,0,4585,4587,1, - 0,0,0,4586,4577,1,0,0,0,4586,4581,1,0,0,0,4587,4737,1,0,0,0,4588, - 4589,5,9,0,0,4589,4590,5,280,0,0,4590,4591,5,243,0,0,4591,4616,3, - 652,326,0,4592,4617,5,373,0,0,4593,4617,3,678,339,0,4594,4595,5, - 304,0,0,4595,4617,3,670,335,0,4596,4597,5,363,0,0,4597,4602,3,672, - 336,0,4598,4599,5,397,0,0,4599,4601,3,672,336,0,4600,4598,1,0,0, - 0,4601,4604,1,0,0,0,4602,4600,1,0,0,0,4602,4603,1,0,0,0,4603,4617, - 1,0,0,0,4604,4602,1,0,0,0,4605,4606,5,274,0,0,4606,4607,5,341,0, - 0,4607,4617,3,652,326,0,4608,4610,3,674,337,0,4609,4611,3,676,338, - 0,4610,4609,1,0,0,0,4610,4611,1,0,0,0,4611,4617,1,0,0,0,4612,4614, - 3,676,338,0,4613,4615,3,674,337,0,4614,4613,1,0,0,0,4614,4615,1, - 0,0,0,4615,4617,1,0,0,0,4616,4592,1,0,0,0,4616,4593,1,0,0,0,4616, - 4594,1,0,0,0,4616,4596,1,0,0,0,4616,4605,1,0,0,0,4616,4608,1,0,0, - 0,4616,4612,1,0,0,0,4617,4737,1,0,0,0,4618,4619,5,101,0,0,4619,4620, - 5,280,0,0,4620,4622,5,243,0,0,4621,4623,3,30,15,0,4622,4621,1,0, - 0,0,4622,4623,1,0,0,0,4623,4624,1,0,0,0,4624,4737,3,652,326,0,4625, - 4628,3,676,338,0,4626,4628,3,678,339,0,4627,4625,1,0,0,0,4627,4626, - 1,0,0,0,4628,4629,1,0,0,0,4629,4630,5,390,0,0,4630,4631,5,197,0, - 0,4631,4737,1,0,0,0,4632,4644,5,278,0,0,4633,4634,5,3,0,0,4634,4635, - 5,280,0,0,4635,4636,5,243,0,0,4636,4637,5,387,0,0,4637,4645,3,652, - 326,0,4638,4639,5,280,0,0,4639,4640,5,243,0,0,4640,4641,3,652,326, - 0,4641,4642,5,387,0,0,4642,4643,3,652,326,0,4643,4645,1,0,0,0,4644, - 4633,1,0,0,0,4644,4638,1,0,0,0,4645,4737,1,0,0,0,4646,4647,5,58, - 0,0,4647,4648,5,348,0,0,4648,4649,3,652,326,0,4649,4650,5,395,0, - 0,4650,4651,3,652,326,0,4651,4652,5,383,0,0,4652,4653,3,698,349, - 0,4653,4654,5,99,0,0,4654,4655,3,700,350,0,4655,4737,1,0,0,0,4656, - 4657,5,9,0,0,4657,4658,5,348,0,0,4658,4659,3,652,326,0,4659,4660, - 5,395,0,0,4660,4677,3,652,326,0,4661,4662,5,383,0,0,4662,4663,3, - 698,349,0,4663,4664,5,99,0,0,4664,4665,3,700,350,0,4665,4678,1,0, - 0,0,4666,4667,5,4,0,0,4667,4671,5,341,0,0,4668,4669,5,101,0,0,4669, - 4671,5,139,0,0,4670,4666,1,0,0,0,4670,4668,1,0,0,0,4671,4675,1,0, - 0,0,4672,4673,5,246,0,0,4673,4676,3,696,348,0,4674,4676,5,362,0, - 0,4675,4672,1,0,0,0,4675,4674,1,0,0,0,4676,4678,1,0,0,0,4677,4661, - 1,0,0,0,4677,4670,1,0,0,0,4678,4737,1,0,0,0,4679,4680,5,101,0,0, - 4680,4681,5,348,0,0,4681,4682,3,652,326,0,4682,4683,5,395,0,0,4683, - 4684,3,652,326,0,4684,4737,1,0,0,0,4685,4686,5,58,0,0,4686,4687, - 5,246,0,0,4687,4688,3,652,326,0,4688,4689,5,395,0,0,4689,4690,3, - 696,348,0,4690,4691,5,387,0,0,4691,4692,3,704,352,0,4692,4737,1, - 0,0,0,4693,4694,5,9,0,0,4694,4695,5,246,0,0,4695,4696,3,652,326, - 0,4696,4697,5,395,0,0,4697,4705,3,696,348,0,4698,4699,5,304,0,0, - 4699,4706,3,704,352,0,4700,4701,5,363,0,0,4701,4706,5,294,0,0,4702, - 4703,7,48,0,0,4703,4704,5,348,0,0,4704,4706,3,652,326,0,4705,4698, - 1,0,0,0,4705,4700,1,0,0,0,4705,4702,1,0,0,0,4706,4737,1,0,0,0,4707, - 4708,5,101,0,0,4708,4709,5,246,0,0,4709,4710,3,652,326,0,4710,4711, - 5,395,0,0,4711,4712,3,696,348,0,4712,4737,1,0,0,0,4713,4714,7,49, - 0,0,4714,4715,3,666,333,0,4715,4716,5,200,0,0,4716,4717,5,426,0, - 0,4717,4718,5,154,0,0,4718,4722,3,652,326,0,4719,4720,5,341,0,0, - 4720,4723,3,696,348,0,4721,4723,5,362,0,0,4722,4719,1,0,0,0,4722, - 4721,1,0,0,0,4723,4727,1,0,0,0,4724,4725,5,387,0,0,4725,4726,5,229, - 0,0,4726,4728,5,431,0,0,4727,4724,1,0,0,0,4727,4728,1,0,0,0,4728, - 4737,1,0,0,0,4729,4730,5,101,0,0,4730,4731,3,666,333,0,4731,4732, - 5,200,0,0,4732,4733,5,426,0,0,4733,4734,5,154,0,0,4734,4735,3,652, - 326,0,4735,4737,1,0,0,0,4736,4571,1,0,0,0,4736,4588,1,0,0,0,4736, - 4618,1,0,0,0,4736,4627,1,0,0,0,4736,4632,1,0,0,0,4736,4646,1,0,0, - 0,4736,4656,1,0,0,0,4736,4679,1,0,0,0,4736,4685,1,0,0,0,4736,4693, - 1,0,0,0,4736,4707,1,0,0,0,4736,4713,1,0,0,0,4736,4729,1,0,0,0,4737, - 665,1,0,0,0,4738,4739,7,50,0,0,4739,667,1,0,0,0,4740,4741,5,259, - 0,0,4741,4742,5,405,0,0,4742,4748,5,431,0,0,4743,4744,5,83,0,0,4744, - 4745,5,246,0,0,4745,4746,5,405,0,0,4746,4748,3,696,348,0,4747,4740, - 1,0,0,0,4747,4743,1,0,0,0,4748,669,1,0,0,0,4749,4754,3,668,334,0, - 4750,4751,5,397,0,0,4751,4753,3,668,334,0,4752,4750,1,0,0,0,4753, - 4756,1,0,0,0,4754,4752,1,0,0,0,4754,4755,1,0,0,0,4755,671,1,0,0, - 0,4756,4754,1,0,0,0,4757,4761,5,259,0,0,4758,4759,5,83,0,0,4759, - 4761,5,246,0,0,4760,4757,1,0,0,0,4760,4758,1,0,0,0,4761,673,1,0, - 0,0,4762,4765,5,2,0,0,4763,4764,5,387,0,0,4764,4766,5,278,0,0,4765, - 4763,1,0,0,0,4765,4766,1,0,0,0,4766,675,1,0,0,0,4767,4768,7,51,0, - 0,4768,677,1,0,0,0,4769,4770,7,52,0,0,4770,679,1,0,0,0,4771,4772, - 7,53,0,0,4772,681,1,0,0,0,4773,4774,7,54,0,0,4774,683,1,0,0,0,4775, - 4776,7,55,0,0,4776,685,1,0,0,0,4777,4778,7,56,0,0,4778,687,1,0,0, - 0,4779,4780,7,57,0,0,4780,689,1,0,0,0,4781,4782,7,58,0,0,4782,691, - 1,0,0,0,4783,4784,7,59,0,0,4784,693,1,0,0,0,4785,4786,7,60,0,0,4786, - 695,1,0,0,0,4787,4792,3,652,326,0,4788,4789,5,395,0,0,4789,4791, - 3,652,326,0,4790,4788,1,0,0,0,4791,4794,1,0,0,0,4792,4790,1,0,0, - 0,4792,4793,1,0,0,0,4793,697,1,0,0,0,4794,4792,1,0,0,0,4795,4796, - 3,652,326,0,4796,4797,5,411,0,0,4797,4798,7,27,0,0,4798,699,1,0, - 0,0,4799,4804,5,176,0,0,4800,4801,5,211,0,0,4801,4802,5,341,0,0, - 4802,4804,3,696,348,0,4803,4799,1,0,0,0,4803,4800,1,0,0,0,4804,701, - 1,0,0,0,4805,4806,5,8,0,0,4806,4807,5,405,0,0,4807,4818,5,431,0, - 0,4808,4809,5,259,0,0,4809,4810,5,405,0,0,4810,4818,5,431,0,0,4811, - 4812,5,294,0,0,4812,4813,5,405,0,0,4813,4818,5,426,0,0,4814,4815, - 5,240,0,0,4815,4816,5,405,0,0,4816,4818,3,696,348,0,4817,4805,1, - 0,0,0,4817,4808,1,0,0,0,4817,4811,1,0,0,0,4817,4814,1,0,0,0,4818, - 703,1,0,0,0,4819,4824,3,702,351,0,4820,4821,5,397,0,0,4821,4823, - 3,702,351,0,4822,4820,1,0,0,0,4823,4826,1,0,0,0,4824,4822,1,0,0, - 0,4824,4825,1,0,0,0,4825,705,1,0,0,0,4826,4824,1,0,0,0,621,709,716, - 719,725,731,738,748,751,755,770,777,783,788,793,796,820,827,830, - 835,840,846,850,863,867,871,876,883,887,892,899,903,908,956,963, - 968,991,995,999,1002,1006,1011,1017,1021,1027,1029,1040,1044,1051, - 1059,1062,1067,1071,1074,1084,1092,1096,1099,1103,1107,1110,1115, - 1121,1126,1131,1135,1146,1148,1152,1162,1166,1172,1175,1182,1187, - 1195,1200,1204,1212,1217,1223,1229,1232,1235,1238,1247,1255,1260, - 1268,1275,1278,1281,1283,1294,1296,1299,1302,1305,1308,1311,1313, - 1325,1331,1339,1341,1351,1384,1389,1393,1397,1404,1411,1417,1421, - 1424,1431,1454,1459,1463,1471,1480,1487,1493,1500,1503,1509,1516, - 1524,1533,1542,1549,1569,1576,1578,1585,1595,1603,1607,1611,1624, - 1633,1649,1653,1658,1663,1666,1669,1672,1675,1678,1683,1692,1696, - 1703,1706,1709,1712,1724,1730,1756,1764,1768,1771,1774,1777,1780, - 1783,1786,1789,1798,1808,1811,1831,1837,1843,1846,1848,1855,1862, - 1875,1880,1889,1897,1905,1918,1931,1947,1951,1966,1972,1975,1978, - 1981,1984,1988,2003,2006,2017,2031,2065,2073,2078,2086,2091,2096, - 2103,2111,2119,2127,2132,2144,2148,2156,2165,2168,2172,2179,2185, - 2189,2195,2199,2211,2220,2231,2235,2242,2254,2264,2267,2274,2280, - 2284,2287,2290,2296,2300,2304,2309,2313,2317,2321,2329,2333,2337, - 2341,2345,2353,2357,2361,2369,2374,2379,2383,2387,2394,2403,2411, - 2423,2441,2444,2450,2476,2479,2485,2493,2501,2514,2521,2524,2527, - 2530,2533,2536,2539,2542,2545,2548,2551,2556,2559,2562,2565,2568, - 2571,2574,2577,2580,2583,2586,2588,2594,2598,2601,2604,2607,2610, - 2613,2620,2624,2627,2630,2633,2636,2639,2646,2649,2657,2661,2668, - 2670,2673,2678,2681,2685,2690,2696,2704,2712,2722,2725,2729,2733, - 2738,2745,2749,2751,2755,2762,2767,2780,2788,2807,2817,2830,2840, - 2844,2848,2854,2861,2868,2877,2884,2904,2907,2921,2936,2940,2960, - 2972,2978,2981,2984,2990,2996,3003,3011,3017,3021,3026,3029,3033, - 3040,3045,3050,3053,3055,3063,3071,3075,3079,3083,3100,3117,3124, - 3133,3138,3141,3144,3148,3163,3177,3180,3191,3195,3198,3201,3205, - 3210,3213,3216,3219,3222,3225,3231,3234,3237,3240,3243,3246,3249, - 3252,3255,3258,3262,3264,3270,3275,3278,3281,3284,3287,3293,3296, - 3299,3302,3305,3308,3311,3314,3317,3320,3324,3326,3328,3333,3338, - 3342,3346,3351,3356,3365,3375,3383,3395,3398,3404,3411,3418,3425, - 3432,3441,3445,3452,3457,3461,3465,3468,3471,3482,3486,3488,3491, - 3504,3507,3510,3522,3525,3532,3541,3546,3548,3550,3567,3570,3578, - 3581,3585,3588,3591,3594,3597,3609,3617,3624,3627,3634,3637,3642, - 3649,3657,3663,3668,3672,3677,3681,3688,3702,3705,3718,3728,3731, - 3740,3749,3752,3758,3761,3766,3769,3782,3788,3790,3800,3806,3809, - 3819,3824,3826,3842,3848,3850,3857,3864,3878,3884,3887,3890,3893, - 3902,3909,3915,3924,3928,3936,3946,3956,3961,3965,3971,3976,3986, - 3990,3993,3998,4001,4005,4010,4021,4023,4032,4055,4065,4068,4075, - 4078,4088,4095,4098,4100,4111,4121,4123,4132,4137,4146,4159,4163, - 4175,4179,4188,4207,4225,4237,4252,4256,4272,4279,4293,4298,4308, - 4310,4318,4326,4334,4342,4350,4358,4369,4373,4381,4397,4401,4406, - 4419,4428,4430,4439,4444,4450,4457,4462,4471,4479,4487,4495,4505, - 4510,4569,4575,4584,4586,4602,4610,4614,4616,4622,4627,4644,4670, - 4675,4677,4705,4722,4727,4736,4747,4754,4760,4765,4792,4803,4817, - 4824 + 3,332,4593,8,332,1,333,1,333,1,333,1,333,3,333,4599,8,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,3,333,4608,8,333,3,333,4610, + 8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,5,333,4624,8,333,10,333,12,333,4627,9,333,1,333,1,333, + 1,333,1,333,1,333,3,333,4634,8,333,1,333,1,333,3,333,4638,8,333, + 3,333,4640,8,333,1,333,1,333,1,333,1,333,3,333,4646,8,333,1,333, + 1,333,1,333,3,333,4651,8,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4668, + 8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,3,333,4694,8,333,1,333,1,333,1,333,3,333,4699, + 8,333,3,333,4701,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4729,8,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,3,333,4746,8,333,1,333,1,333,1,333,3,333, + 4751,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4760, + 8,333,1,334,1,334,1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335, + 4771,8,335,1,336,1,336,1,336,5,336,4776,8,336,10,336,12,336,4779, + 9,336,1,337,1,337,1,337,3,337,4784,8,337,1,338,1,338,1,338,3,338, + 4789,8,338,1,339,1,339,1,340,1,340,1,341,1,341,1,342,1,342,1,343, + 1,343,1,344,1,344,1,345,1,345,1,346,1,346,1,347,1,347,1,348,1,348, + 1,349,1,349,1,350,1,350,1,350,5,350,4816,8,350,10,350,12,350,4819, + 9,350,1,351,1,351,1,351,5,351,4824,8,351,10,351,12,351,4827,9,351, + 1,351,1,351,1,351,1,351,5,351,4833,8,351,10,351,12,351,4836,9,351, + 3,351,4838,8,351,1,352,1,352,1,352,1,352,1,353,1,353,1,353,1,353, + 3,353,4848,8,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354, + 1,354,1,354,1,354,1,354,3,354,4862,8,354,1,355,1,355,1,355,5,355, + 4867,8,355,10,355,12,355,4870,9,355,1,355,1,833,0,356,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,120,122,124,126,128,130, + 132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162, + 164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194, + 196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226, + 228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258, + 260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290, + 292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322, + 324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354, + 356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386, + 388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418, + 420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450, + 452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482, + 484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,514, + 516,518,520,522,524,526,528,530,532,534,536,538,540,542,544,546, + 548,550,552,554,556,558,560,562,564,566,568,570,572,574,576,578, + 580,582,584,586,588,590,592,594,596,598,600,602,604,606,608,610, + 612,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642, + 644,646,648,650,652,654,656,658,660,662,664,666,668,670,672,674, + 676,678,680,682,684,686,688,690,692,694,696,698,700,702,704,706, + 708,710,0,61,2,0,57,57,172,172,4,0,91,91,121,121,226,226,325,325, + 1,0,395,396,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90,2,0,139, + 139,154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0, + 114,114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161, + 190,190,299,299,309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15, + 128,128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217,217,373,373, + 2,0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39, + 376,376,4,0,112,112,164,164,205,205,356,356,2,0,7,7,96,96,2,0,125, + 125,350,350,2,0,225,225,391,391,2,0,42,42,315,315,2,0,189,189,196, + 196,2,0,426,426,431,431,2,0,140,140,285,285,3,0,12,12,231,231,300, + 300,2,0,241,241,292,292,2,0,198,198,268,268,2,0,260,260,292,292, + 2,0,354,354,431,431,2,0,133,133,247,247,2,0,152,152,281,281,3,0, + 413,414,418,418,420,420,2,0,412,412,415,417,1,0,413,414,4,0,184, + 184,270,270,286,286,408,411,2,0,7,7,13,13,3,0,7,7,13,13,313,313, + 3,0,184,184,270,270,286,286,4,0,125,125,219,219,350,350,360,360, + 2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35,100,100,131,132, + 151,151,154,154,162,163,184,184,198,198,216,216,228,228,264,264, + 270,270,286,286,311,311,323,324,340,340,357,357,383,383,405,417, + 419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30,31,33,34, + 37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68,68,72,77,79,79, + 83,85,87,89,91,95,97,99,103,104,106,107,109,111,114,116,118,121, + 127,130,137,138,142,142,147,150,152,152,155,156,158,160,168,170, + 172,177,182,183,185,187,189,193,195,197,199,202,204,204,206,209, + 211,212,214,215,217,218,220,220,222,223,226,227,232,233,235,236, + 238,240,243,246,252,252,254,255,257,259,261,262,265,267,271,282, + 284,284,287,288,293,298,300,303,305,310,312,312,314,317,319,325, + 327,328,330,330,332,334,339,340,342,342,344,346,349,349,352,353, + 355,355,357,357,360,364,366,368,371,373,375,375,377,382,385,385, + 388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131,145,145,151, + 151,162,163,198,198,264,264,311,311,337,337,2,0,4,4,101,101,2,0, + 9,9,58,58,3,0,14,14,144,144,369,369,1,0,106,107,1,0,94,95,1,0,392, + 393,1,0,208,209,1,0,381,382,1,0,73,74,1,0,148,149,1,0,206,207,1, + 0,297,298,1,0,80,82,5461,0,715,1,0,0,0,2,722,1,0,0,0,4,727,1,0,0, + 0,6,761,1,0,0,0,8,763,1,0,0,0,10,836,1,0,0,0,12,838,1,0,0,0,14,854, + 1,0,0,0,16,863,1,0,0,0,18,871,1,0,0,0,20,884,1,0,0,0,22,895,1,0, + 0,0,24,900,1,0,0,0,26,911,1,0,0,0,28,974,1,0,0,0,30,976,1,0,0,0, + 32,979,1,0,0,0,34,983,1,0,0,0,36,985,1,0,0,0,38,988,1,0,0,0,40,991, + 1,0,0,0,42,1035,1,0,0,0,44,1037,1,0,0,0,46,1040,1,0,0,0,48,1043, + 1,0,0,0,50,1052,1,0,0,0,52,1055,1,0,0,0,54,1070,1,0,0,0,56,1082, + 1,0,0,0,58,1087,1,0,0,0,60,1107,1,0,0,0,62,1111,1,0,0,0,64,1118, + 1,0,0,0,66,1143,1,0,0,0,68,1160,1,0,0,0,70,1162,1,0,0,0,72,1347, + 1,0,0,0,74,1357,1,0,0,0,76,1359,1,0,0,0,78,1364,1,0,0,0,80,1369, + 1,0,0,0,82,1371,1,0,0,0,84,1375,1,0,0,0,86,1379,1,0,0,0,88,1383, + 1,0,0,0,90,1387,1,0,0,0,92,1397,1,0,0,0,94,1408,1,0,0,0,96,1425, + 1,0,0,0,98,1443,1,0,0,0,100,1448,1,0,0,0,102,1451,1,0,0,0,104,1455, + 1,0,0,0,106,1462,1,0,0,0,108,1471,1,0,0,0,110,1477,1,0,0,0,112,1479, + 1,0,0,0,114,1493,1,0,0,0,116,1515,1,0,0,0,118,1517,1,0,0,0,120,1525, + 1,0,0,0,122,1532,1,0,0,0,124,1534,1,0,0,0,126,1548,1,0,0,0,128,1555, + 1,0,0,0,130,1557,1,0,0,0,132,1561,1,0,0,0,134,1565,1,0,0,0,136,1569, + 1,0,0,0,138,1573,1,0,0,0,140,1586,1,0,0,0,142,1594,1,0,0,0,144,1597, + 1,0,0,0,146,1599,1,0,0,0,148,1611,1,0,0,0,150,1621,1,0,0,0,152,1624, + 1,0,0,0,154,1635,1,0,0,0,156,1643,1,0,0,0,158,1686,1,0,0,0,160,1695, + 1,0,0,0,162,1723,1,0,0,0,164,1736,1,0,0,0,166,1738,1,0,0,0,168,1744, + 1,0,0,0,170,1747,1,0,0,0,172,1753,1,0,0,0,174,1759,1,0,0,0,176,1766, + 1,0,0,0,178,1800,1,0,0,0,180,1808,1,0,0,0,182,1821,1,0,0,0,184,1826, + 1,0,0,0,186,1837,1,0,0,0,188,1854,1,0,0,0,190,1856,1,0,0,0,192,1861, + 1,0,0,0,194,1868,1,0,0,0,196,1870,1,0,0,0,198,1873,1,0,0,0,200,1876, + 1,0,0,0,202,1890,1,0,0,0,204,1898,1,0,0,0,206,1924,1,0,0,0,208,1926, + 1,0,0,0,210,1943,1,0,0,0,212,1957,1,0,0,0,214,1959,1,0,0,0,216,1962, + 1,0,0,0,218,1965,1,0,0,0,220,1974,1,0,0,0,222,1994,1,0,0,0,224,1996, + 1,0,0,0,226,1999,1,0,0,0,228,2012,1,0,0,0,230,2014,1,0,0,0,232,2018, + 1,0,0,0,234,2026,1,0,0,0,236,2030,1,0,0,0,238,2039,1,0,0,0,240,2045, + 1,0,0,0,242,2051,1,0,0,0,244,2056,1,0,0,0,246,2102,1,0,0,0,248,2104, + 1,0,0,0,250,2112,1,0,0,0,252,2120,1,0,0,0,254,2128,1,0,0,0,256,2139, + 1,0,0,0,258,2141,1,0,0,0,260,2146,1,0,0,0,262,2148,1,0,0,0,264,2150, + 1,0,0,0,266,2163,1,0,0,0,268,2171,1,0,0,0,270,2180,1,0,0,0,272,2184, + 1,0,0,0,274,2186,1,0,0,0,276,2191,1,0,0,0,278,2193,1,0,0,0,280,2197, + 1,0,0,0,282,2203,1,0,0,0,284,2211,1,0,0,0,286,2213,1,0,0,0,288,2216, + 1,0,0,0,290,2223,1,0,0,0,292,2234,1,0,0,0,294,2247,1,0,0,0,296,2249, + 1,0,0,0,298,2257,1,0,0,0,300,2261,1,0,0,0,302,2269,1,0,0,0,304,2271, + 1,0,0,0,306,2274,1,0,0,0,308,2281,1,0,0,0,310,2289,1,0,0,0,312,2296, + 1,0,0,0,314,2304,1,0,0,0,316,2312,1,0,0,0,318,2316,1,0,0,0,320,2318, + 1,0,0,0,322,2329,1,0,0,0,324,2333,1,0,0,0,326,2345,1,0,0,0,328,2353, + 1,0,0,0,330,2357,1,0,0,0,332,2369,1,0,0,0,334,2381,1,0,0,0,336,2386, + 1,0,0,0,338,2391,1,0,0,0,340,2393,1,0,0,0,342,2397,1,0,0,0,344,2401, + 1,0,0,0,346,2408,1,0,0,0,348,2410,1,0,0,0,350,2423,1,0,0,0,352,2462, + 1,0,0,0,354,2464,1,0,0,0,356,2469,1,0,0,0,358,2474,1,0,0,0,360,2481, + 1,0,0,0,362,2486,1,0,0,0,364,2491,1,0,0,0,366,2497,1,0,0,0,368,2499, + 1,0,0,0,370,2508,1,0,0,0,372,2520,1,0,0,0,374,2600,1,0,0,0,376,2606, + 1,0,0,0,378,2632,1,0,0,0,380,2634,1,0,0,0,382,2656,1,0,0,0,384,2661, + 1,0,0,0,386,2665,1,0,0,0,388,2697,1,0,0,0,390,2699,1,0,0,0,392,2710, + 1,0,0,0,394,2716,1,0,0,0,396,2718,1,0,0,0,398,2750,1,0,0,0,400,2757, + 1,0,0,0,402,2763,1,0,0,0,404,2769,1,0,0,0,406,2784,1,0,0,0,408,2794, + 1,0,0,0,410,2802,1,0,0,0,412,2805,1,0,0,0,414,2808,1,0,0,0,416,2811, + 1,0,0,0,418,2933,1,0,0,0,420,3067,1,0,0,0,422,3095,1,0,0,0,424,3112, + 1,0,0,0,426,3129,1,0,0,0,428,3131,1,0,0,0,430,3134,1,0,0,0,432,3160, + 1,0,0,0,434,3165,1,0,0,0,436,3192,1,0,0,0,438,3203,1,0,0,0,440,3340, + 1,0,0,0,442,3342,1,0,0,0,444,3365,1,0,0,0,446,3377,1,0,0,0,448,3382, + 1,0,0,0,450,3390,1,0,0,0,452,3398,1,0,0,0,454,3410,1,0,0,0,456,3444, + 1,0,0,0,458,3446,1,0,0,0,460,3471,1,0,0,0,462,3480,1,0,0,0,464,3510, + 1,0,0,0,466,3569,1,0,0,0,468,3571,1,0,0,0,470,3600,1,0,0,0,472,3602, + 1,0,0,0,474,3618,1,0,0,0,476,3630,1,0,0,0,478,3632,1,0,0,0,480,3636, + 1,0,0,0,482,3646,1,0,0,0,484,3656,1,0,0,0,486,3661,1,0,0,0,488,3668, + 1,0,0,0,490,3672,1,0,0,0,492,3691,1,0,0,0,494,3696,1,0,0,0,496,3698, + 1,0,0,0,498,3702,1,0,0,0,500,3728,1,0,0,0,502,3733,1,0,0,0,504,3754, + 1,0,0,0,506,3759,1,0,0,0,508,3790,1,0,0,0,510,3792,1,0,0,0,512,3816, + 1,0,0,0,514,3847,1,0,0,0,516,3849,1,0,0,0,518,3851,1,0,0,0,520,3853, + 1,0,0,0,522,3878,1,0,0,0,524,3880,1,0,0,0,526,3888,1,0,0,0,528,3914, + 1,0,0,0,530,3916,1,0,0,0,532,3936,1,0,0,0,534,3938,1,0,0,0,536,3949, + 1,0,0,0,538,3962,1,0,0,0,540,3997,1,0,0,0,542,3999,1,0,0,0,544,4004, + 1,0,0,0,546,4009,1,0,0,0,548,4011,1,0,0,0,550,4033,1,0,0,0,552,4035, + 1,0,0,0,554,4039,1,0,0,0,556,4048,1,0,0,0,558,4058,1,0,0,0,560,4062, + 1,0,0,0,562,4066,1,0,0,0,564,4070,1,0,0,0,566,4146,1,0,0,0,568,4148, + 1,0,0,0,570,4151,1,0,0,0,572,4155,1,0,0,0,574,4160,1,0,0,0,576,4162, + 1,0,0,0,578,4173,1,0,0,0,580,4190,1,0,0,0,582,4206,1,0,0,0,584,4215, + 1,0,0,0,586,4230,1,0,0,0,588,4260,1,0,0,0,590,4262,1,0,0,0,592,4279, + 1,0,0,0,594,4295,1,0,0,0,596,4297,1,0,0,0,598,4316,1,0,0,0,600,4321, + 1,0,0,0,602,4336,1,0,0,0,604,4344,1,0,0,0,606,4352,1,0,0,0,608,4360, + 1,0,0,0,610,4368,1,0,0,0,612,4376,1,0,0,0,614,4384,1,0,0,0,616,4386, + 1,0,0,0,618,4396,1,0,0,0,620,4404,1,0,0,0,622,4420,1,0,0,0,624,4424, + 1,0,0,0,626,4429,1,0,0,0,628,4431,1,0,0,0,630,4442,1,0,0,0,632,4444, + 1,0,0,0,634,4462,1,0,0,0,636,4467,1,0,0,0,638,4475,1,0,0,0,640,4483, + 1,0,0,0,642,4487,1,0,0,0,644,4499,1,0,0,0,646,4504,1,0,0,0,648,4515, + 1,0,0,0,650,4522,1,0,0,0,652,4524,1,0,0,0,654,4528,1,0,0,0,656,4530, + 1,0,0,0,658,4535,1,0,0,0,660,4537,1,0,0,0,662,4539,1,0,0,0,664,4592, + 1,0,0,0,666,4759,1,0,0,0,668,4761,1,0,0,0,670,4770,1,0,0,0,672,4772, + 1,0,0,0,674,4783,1,0,0,0,676,4785,1,0,0,0,678,4790,1,0,0,0,680,4792, + 1,0,0,0,682,4794,1,0,0,0,684,4796,1,0,0,0,686,4798,1,0,0,0,688,4800, + 1,0,0,0,690,4802,1,0,0,0,692,4804,1,0,0,0,694,4806,1,0,0,0,696,4808, + 1,0,0,0,698,4810,1,0,0,0,700,4812,1,0,0,0,702,4837,1,0,0,0,704,4839, + 1,0,0,0,706,4847,1,0,0,0,708,4861,1,0,0,0,710,4863,1,0,0,0,712,714, + 3,2,1,0,713,712,1,0,0,0,714,717,1,0,0,0,715,713,1,0,0,0,715,716, + 1,0,0,0,716,718,1,0,0,0,717,715,1,0,0,0,718,719,5,0,0,1,719,1,1, + 0,0,0,720,723,3,4,2,0,721,723,3,10,5,0,722,720,1,0,0,0,722,721,1, + 0,0,0,723,725,1,0,0,0,724,726,5,398,0,0,725,724,1,0,0,0,725,726, + 1,0,0,0,726,3,1,0,0,0,727,737,5,119,0,0,728,730,3,6,3,0,729,728, + 1,0,0,0,730,733,1,0,0,0,731,729,1,0,0,0,731,732,1,0,0,0,732,734, + 1,0,0,0,733,731,1,0,0,0,734,738,3,10,5,0,735,736,5,284,0,0,736,738, + 3,364,182,0,737,731,1,0,0,0,737,735,1,0,0,0,738,5,1,0,0,0,739,762, + 5,122,0,0,740,762,5,138,0,0,741,762,5,88,0,0,742,744,5,37,0,0,743, + 745,7,0,0,0,744,743,1,0,0,0,744,745,1,0,0,0,745,762,1,0,0,0,746, + 762,5,192,0,0,747,762,5,21,0,0,748,762,5,10,0,0,749,762,5,275,0, + 0,750,762,5,191,0,0,751,762,5,19,0,0,752,754,5,377,0,0,753,755,5, + 225,0,0,754,753,1,0,0,0,754,755,1,0,0,0,755,757,1,0,0,0,756,758, + 3,8,4,0,757,756,1,0,0,0,757,758,1,0,0,0,758,762,1,0,0,0,759,762, + 5,79,0,0,760,762,5,78,0,0,761,739,1,0,0,0,761,740,1,0,0,0,761,741, + 1,0,0,0,761,742,1,0,0,0,761,746,1,0,0,0,761,747,1,0,0,0,761,748, + 1,0,0,0,761,749,1,0,0,0,761,750,1,0,0,0,761,751,1,0,0,0,761,752, + 1,0,0,0,761,759,1,0,0,0,761,760,1,0,0,0,762,7,1,0,0,0,763,764,7, + 1,0,0,764,9,1,0,0,0,765,837,3,364,182,0,766,837,3,12,6,0,767,837, + 3,16,8,0,768,837,3,18,9,0,769,837,3,20,10,0,770,837,3,24,12,0,771, + 772,5,277,0,0,772,773,5,320,0,0,773,776,3,476,238,0,774,775,5,387, + 0,0,775,777,3,230,115,0,776,774,1,0,0,0,776,777,1,0,0,0,777,837, + 1,0,0,0,778,837,3,28,14,0,779,780,5,86,0,0,780,781,5,139,0,0,781, + 783,3,482,241,0,782,784,3,500,250,0,783,782,1,0,0,0,783,784,1,0, + 0,0,784,837,1,0,0,0,785,786,5,365,0,0,786,787,3,482,241,0,787,789, + 3,396,198,0,788,790,3,500,250,0,789,788,1,0,0,0,789,790,1,0,0,0, + 790,837,1,0,0,0,791,837,3,398,199,0,792,794,5,203,0,0,793,795,5, + 436,0,0,794,793,1,0,0,0,794,795,1,0,0,0,795,796,1,0,0,0,796,797, + 5,166,0,0,797,802,3,482,241,0,798,800,5,17,0,0,799,798,1,0,0,0,799, + 800,1,0,0,0,800,801,1,0,0,0,801,803,3,654,327,0,802,799,1,0,0,0, + 802,803,1,0,0,0,803,804,1,0,0,0,804,805,5,370,0,0,805,806,3,460, + 230,0,806,807,5,224,0,0,807,808,3,596,298,0,808,809,3,402,201,0, + 809,837,1,0,0,0,810,811,5,249,0,0,811,812,3,654,327,0,812,813,5, + 139,0,0,813,814,3,364,182,0,814,837,1,0,0,0,815,816,5,115,0,0,816, + 817,3,654,327,0,817,818,5,370,0,0,818,819,3,300,150,0,819,837,1, + 0,0,0,820,821,5,304,0,0,821,826,3,664,332,0,822,823,7,2,0,0,823, + 825,3,664,332,0,824,822,1,0,0,0,825,828,1,0,0,0,826,824,1,0,0,0, + 826,827,1,0,0,0,827,829,1,0,0,0,828,826,1,0,0,0,829,833,5,405,0, + 0,830,832,9,0,0,0,831,830,1,0,0,0,832,835,1,0,0,0,833,834,1,0,0, + 0,833,831,1,0,0,0,834,837,1,0,0,0,835,833,1,0,0,0,836,765,1,0,0, + 0,836,766,1,0,0,0,836,767,1,0,0,0,836,768,1,0,0,0,836,769,1,0,0, + 0,836,770,1,0,0,0,836,771,1,0,0,0,836,778,1,0,0,0,836,779,1,0,0, + 0,836,785,1,0,0,0,836,791,1,0,0,0,836,792,1,0,0,0,836,810,1,0,0, + 0,836,815,1,0,0,0,836,820,1,0,0,0,837,11,1,0,0,0,838,839,5,187,0, + 0,839,841,5,66,0,0,840,842,5,188,0,0,841,840,1,0,0,0,841,842,1,0, + 0,0,842,843,1,0,0,0,843,844,5,158,0,0,844,846,5,426,0,0,845,847, + 5,235,0,0,846,845,1,0,0,0,846,847,1,0,0,0,847,848,1,0,0,0,848,849, + 5,166,0,0,849,850,5,329,0,0,850,852,3,640,320,0,851,853,3,56,28, + 0,852,851,1,0,0,0,852,853,1,0,0,0,853,13,1,0,0,0,854,856,5,134,0, + 0,855,857,5,204,0,0,856,855,1,0,0,0,856,857,1,0,0,0,857,858,1,0, + 0,0,858,859,5,279,0,0,859,860,5,399,0,0,860,861,5,426,0,0,861,862, + 5,400,0,0,862,15,1,0,0,0,863,864,5,120,0,0,864,865,5,329,0,0,865, + 866,3,640,320,0,866,867,5,341,0,0,867,869,5,426,0,0,868,870,3,14, + 7,0,869,868,1,0,0,0,869,870,1,0,0,0,870,17,1,0,0,0,871,877,5,153, + 0,0,872,874,5,123,0,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875,1, + 0,0,0,875,876,5,329,0,0,876,878,3,640,320,0,877,873,1,0,0,0,877, + 878,1,0,0,0,878,879,1,0,0,0,879,880,5,139,0,0,880,882,5,426,0,0, + 881,883,3,428,214,0,882,881,1,0,0,0,882,883,1,0,0,0,883,19,1,0,0, + 0,884,885,5,277,0,0,885,886,5,103,0,0,886,889,3,22,11,0,887,888, + 5,278,0,0,888,890,3,22,11,0,889,887,1,0,0,0,889,890,1,0,0,0,890, + 893,1,0,0,0,891,892,5,387,0,0,892,894,3,230,115,0,893,891,1,0,0, + 0,893,894,1,0,0,0,894,21,1,0,0,0,895,898,3,476,238,0,896,897,5,395, + 0,0,897,899,3,26,13,0,898,896,1,0,0,0,898,899,1,0,0,0,899,23,1,0, + 0,0,900,901,5,277,0,0,901,902,5,187,0,0,902,905,3,22,11,0,903,904, + 5,166,0,0,904,906,3,476,238,0,905,903,1,0,0,0,905,906,1,0,0,0,906, + 909,1,0,0,0,907,908,5,387,0,0,908,910,3,230,115,0,909,907,1,0,0, + 0,909,910,1,0,0,0,910,25,1,0,0,0,911,914,5,426,0,0,912,913,5,395, + 0,0,913,915,5,426,0,0,914,912,1,0,0,0,914,915,1,0,0,0,915,27,1,0, + 0,0,916,975,3,42,21,0,917,975,3,46,23,0,918,975,3,48,24,0,919,975, + 3,440,220,0,920,975,3,54,27,0,921,975,3,52,26,0,922,975,3,416,208, + 0,923,975,3,64,32,0,924,975,3,72,36,0,925,975,3,138,69,0,926,975, + 3,160,80,0,927,975,3,176,88,0,928,975,3,180,90,0,929,975,3,184,92, + 0,930,975,3,182,91,0,931,975,3,174,87,0,932,975,3,178,89,0,933,975, + 3,146,73,0,934,975,3,152,76,0,935,975,3,148,74,0,936,975,3,150,75, + 0,937,975,3,154,77,0,938,975,3,156,78,0,939,975,3,158,79,0,940,975, + 3,66,33,0,941,975,3,76,38,0,942,975,3,82,41,0,943,975,3,78,39,0, + 944,975,3,84,42,0,945,975,3,86,43,0,946,975,3,88,44,0,947,975,3, + 90,45,0,948,975,3,92,46,0,949,975,3,106,53,0,950,975,3,98,49,0,951, + 975,3,108,54,0,952,975,3,100,50,0,953,975,3,94,47,0,954,975,3,96, + 48,0,955,975,3,104,52,0,956,975,3,102,51,0,957,958,5,1,0,0,958,960, + 7,3,0,0,959,961,5,431,0,0,960,959,1,0,0,0,961,962,1,0,0,0,962,960, + 1,0,0,0,962,963,1,0,0,0,963,975,1,0,0,0,964,965,5,176,0,0,965,967, + 5,258,0,0,966,968,5,426,0,0,967,966,1,0,0,0,968,969,1,0,0,0,969, + 967,1,0,0,0,969,970,1,0,0,0,970,975,1,0,0,0,971,975,3,666,333,0, + 972,975,3,442,221,0,973,975,3,444,222,0,974,916,1,0,0,0,974,917, + 1,0,0,0,974,918,1,0,0,0,974,919,1,0,0,0,974,920,1,0,0,0,974,921, + 1,0,0,0,974,922,1,0,0,0,974,923,1,0,0,0,974,924,1,0,0,0,974,925, + 1,0,0,0,974,926,1,0,0,0,974,927,1,0,0,0,974,928,1,0,0,0,974,929, + 1,0,0,0,974,930,1,0,0,0,974,931,1,0,0,0,974,932,1,0,0,0,974,933, + 1,0,0,0,974,934,1,0,0,0,974,935,1,0,0,0,974,936,1,0,0,0,974,937, + 1,0,0,0,974,938,1,0,0,0,974,939,1,0,0,0,974,940,1,0,0,0,974,941, + 1,0,0,0,974,942,1,0,0,0,974,943,1,0,0,0,974,944,1,0,0,0,974,945, + 1,0,0,0,974,946,1,0,0,0,974,947,1,0,0,0,974,948,1,0,0,0,974,949, + 1,0,0,0,974,950,1,0,0,0,974,951,1,0,0,0,974,952,1,0,0,0,974,953, + 1,0,0,0,974,954,1,0,0,0,974,955,1,0,0,0,974,956,1,0,0,0,974,957, + 1,0,0,0,974,964,1,0,0,0,974,971,1,0,0,0,974,972,1,0,0,0,974,973, + 1,0,0,0,975,29,1,0,0,0,976,977,5,151,0,0,977,978,5,117,0,0,978,31, + 1,0,0,0,979,980,5,151,0,0,980,981,5,216,0,0,981,982,5,117,0,0,982, + 33,1,0,0,0,983,984,7,4,0,0,984,35,1,0,0,0,985,986,3,678,339,0,986, + 987,5,284,0,0,987,37,1,0,0,0,988,989,3,680,340,0,989,990,5,284,0, + 0,990,39,1,0,0,0,991,992,5,321,0,0,992,993,5,17,0,0,993,994,5,92, + 0,0,994,41,1,0,0,0,995,997,5,58,0,0,996,998,5,273,0,0,997,996,1, + 0,0,0,997,998,1,0,0,0,998,999,1,0,0,0,999,1001,3,70,35,0,1000,1002, + 3,32,16,0,1001,1000,1,0,0,0,1001,1002,1,0,0,0,1002,1003,1,0,0,0, + 1003,1005,3,478,239,0,1004,1006,3,50,25,0,1005,1004,1,0,0,0,1005, + 1006,1,0,0,0,1006,1008,1,0,0,0,1007,1009,3,428,214,0,1008,1007,1, + 0,0,0,1008,1009,1,0,0,0,1009,1012,1,0,0,0,1010,1011,5,196,0,0,1011, + 1013,5,426,0,0,1012,1010,1,0,0,0,1012,1013,1,0,0,0,1013,1017,1,0, + 0,0,1014,1015,5,387,0,0,1015,1016,5,76,0,0,1016,1018,3,230,115,0, + 1017,1014,1,0,0,0,1017,1018,1,0,0,0,1018,1036,1,0,0,0,1019,1020, + 5,58,0,0,1020,1021,5,273,0,0,1021,1023,3,70,35,0,1022,1024,3,32, + 16,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025,1,0,0,0,1025, + 1027,3,478,239,0,1026,1028,3,50,25,0,1027,1026,1,0,0,0,1027,1028, + 1,0,0,0,1028,1029,1,0,0,0,1029,1033,3,44,22,0,1030,1031,5,387,0, + 0,1031,1032,5,76,0,0,1032,1034,3,230,115,0,1033,1030,1,0,0,0,1033, + 1034,1,0,0,0,1034,1036,1,0,0,0,1035,995,1,0,0,0,1035,1019,1,0,0, + 0,1036,43,1,0,0,0,1037,1038,5,370,0,0,1038,1039,3,476,238,0,1039, + 45,1,0,0,0,1040,1041,5,368,0,0,1041,1042,3,476,238,0,1042,47,1,0, + 0,0,1043,1044,5,101,0,0,1044,1046,3,70,35,0,1045,1047,3,30,15,0, + 1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0,0,0,1048,1050, + 3,476,238,0,1049,1051,3,34,17,0,1050,1049,1,0,0,0,1050,1051,1,0, + 0,0,1051,49,1,0,0,0,1052,1053,5,47,0,0,1053,1054,5,426,0,0,1054, + 51,1,0,0,0,1055,1057,5,351,0,0,1056,1058,5,329,0,0,1057,1056,1,0, + 0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1065,3,640,320,0,1060, + 1061,5,46,0,0,1061,1062,5,399,0,0,1062,1063,3,254,127,0,1063,1064, + 5,400,0,0,1064,1066,1,0,0,0,1065,1060,1,0,0,0,1065,1066,1,0,0,0, + 1066,1068,1,0,0,0,1067,1069,5,135,0,0,1068,1067,1,0,0,0,1068,1069, + 1,0,0,0,1069,53,1,0,0,0,1070,1071,5,101,0,0,1071,1073,5,329,0,0, + 1072,1074,3,30,15,0,1073,1072,1,0,0,0,1073,1074,1,0,0,0,1074,1075, + 1,0,0,0,1075,1077,3,482,241,0,1076,1078,5,255,0,0,1077,1076,1,0, + 0,0,1077,1078,1,0,0,0,1078,1080,1,0,0,0,1079,1081,3,14,7,0,1080, + 1079,1,0,0,0,1080,1081,1,0,0,0,1081,55,1,0,0,0,1082,1083,5,160,0, + 0,1083,1084,5,426,0,0,1084,1085,5,301,0,0,1085,1086,5,426,0,0,1086, + 57,1,0,0,0,1087,1090,3,654,327,0,1088,1089,5,395,0,0,1089,1091,3, + 654,327,0,1090,1088,1,0,0,0,1090,1091,1,0,0,0,1091,1105,1,0,0,0, + 1092,1102,3,654,327,0,1093,1098,5,395,0,0,1094,1099,5,104,0,0,1095, + 1099,5,175,0,0,1096,1099,5,375,0,0,1097,1099,3,654,327,0,1098,1094, + 1,0,0,0,1098,1095,1,0,0,0,1098,1096,1,0,0,0,1098,1097,1,0,0,0,1099, + 1101,1,0,0,0,1100,1093,1,0,0,0,1101,1104,1,0,0,0,1102,1100,1,0,0, + 0,1102,1103,1,0,0,0,1103,1106,1,0,0,0,1104,1102,1,0,0,0,1105,1092, + 1,0,0,0,1105,1106,1,0,0,0,1106,59,1,0,0,0,1107,1109,3,58,29,0,1108, + 1110,3,642,321,0,1109,1108,1,0,0,0,1109,1110,1,0,0,0,1110,61,1,0, + 0,0,1111,1113,3,480,240,0,1112,1114,3,642,321,0,1113,1112,1,0,0, + 0,1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1117,3,264,132,0,1116, + 1115,1,0,0,0,1116,1117,1,0,0,0,1117,63,1,0,0,0,1118,1141,7,5,0,0, + 1119,1121,3,70,35,0,1120,1122,5,122,0,0,1121,1120,1,0,0,0,1121,1122, + 1,0,0,0,1122,1123,1,0,0,0,1123,1124,3,476,238,0,1124,1142,1,0,0, + 0,1125,1127,5,69,0,0,1126,1128,5,122,0,0,1127,1126,1,0,0,0,1127, + 1128,1,0,0,0,1128,1129,1,0,0,0,1129,1142,3,476,238,0,1130,1132,5, + 141,0,0,1131,1133,5,122,0,0,1132,1131,1,0,0,0,1132,1133,1,0,0,0, + 1133,1134,1,0,0,0,1134,1142,3,572,286,0,1135,1138,5,138,0,0,1136, + 1138,5,122,0,0,1137,1135,1,0,0,0,1137,1136,1,0,0,0,1138,1139,1,0, + 0,0,1139,1142,3,62,31,0,1140,1142,3,62,31,0,1141,1119,1,0,0,0,1141, + 1125,1,0,0,0,1141,1130,1,0,0,0,1141,1137,1,0,0,0,1141,1140,1,0,0, + 0,1142,65,1,0,0,0,1143,1144,5,10,0,0,1144,1145,5,329,0,0,1145,1158, + 3,640,320,0,1146,1147,5,52,0,0,1147,1154,5,319,0,0,1148,1155,5,215, + 0,0,1149,1150,5,134,0,0,1150,1152,5,46,0,0,1151,1153,3,254,127,0, + 1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1155,1,0,0,0,1154,1148, + 1,0,0,0,1154,1149,1,0,0,0,1154,1155,1,0,0,0,1155,1159,1,0,0,0,1156, + 1157,5,33,0,0,1157,1159,5,204,0,0,1158,1146,1,0,0,0,1158,1156,1, + 0,0,0,1159,67,1,0,0,0,1160,1161,7,6,0,0,1161,69,1,0,0,0,1162,1163, + 7,7,0,0,1163,71,1,0,0,0,1164,1165,5,308,0,0,1165,1168,7,8,0,0,1166, + 1167,5,184,0,0,1167,1169,3,194,97,0,1168,1166,1,0,0,0,1168,1169, + 1,0,0,0,1169,1348,1,0,0,0,1170,1172,5,308,0,0,1171,1173,5,122,0, + 0,1172,1171,1,0,0,0,1172,1173,1,0,0,0,1173,1174,1,0,0,0,1174,1178, + 5,330,0,0,1175,1176,3,68,34,0,1176,1177,3,476,238,0,1177,1179,1, + 0,0,0,1178,1175,1,0,0,0,1178,1179,1,0,0,0,1179,1181,1,0,0,0,1180, + 1182,3,74,37,0,1181,1180,1,0,0,0,1181,1182,1,0,0,0,1182,1348,1,0, + 0,0,1183,1184,5,308,0,0,1184,1188,5,379,0,0,1185,1186,3,68,34,0, + 1186,1187,3,476,238,0,1187,1189,1,0,0,0,1188,1185,1,0,0,0,1188,1189, + 1,0,0,0,1189,1193,1,0,0,0,1190,1191,5,184,0,0,1191,1194,3,194,97, + 0,1192,1194,3,194,97,0,1193,1190,1,0,0,0,1193,1192,1,0,0,0,1193, + 1194,1,0,0,0,1194,1348,1,0,0,0,1195,1196,5,308,0,0,1196,1197,5,202, + 0,0,1197,1201,5,379,0,0,1198,1199,3,68,34,0,1199,1200,3,476,238, + 0,1200,1202,1,0,0,0,1201,1198,1,0,0,0,1201,1202,1,0,0,0,1202,1206, + 1,0,0,0,1203,1204,5,184,0,0,1204,1207,3,194,97,0,1205,1207,3,194, + 97,0,1206,1203,1,0,0,0,1206,1205,1,0,0,0,1206,1207,1,0,0,0,1207, + 1348,1,0,0,0,1208,1210,5,308,0,0,1209,1211,5,315,0,0,1210,1209,1, + 0,0,0,1210,1211,1,0,0,0,1211,1212,1,0,0,0,1212,1213,5,46,0,0,1213, + 1214,3,68,34,0,1214,1218,3,480,240,0,1215,1216,3,68,34,0,1216,1217, + 3,476,238,0,1217,1219,1,0,0,0,1218,1215,1,0,0,0,1218,1219,1,0,0, + 0,1219,1223,1,0,0,0,1220,1221,5,184,0,0,1221,1224,3,194,97,0,1222, + 1224,3,194,97,0,1223,1220,1,0,0,0,1223,1222,1,0,0,0,1223,1224,1, + 0,0,0,1224,1348,1,0,0,0,1225,1226,5,308,0,0,1226,1229,5,142,0,0, + 1227,1228,5,184,0,0,1228,1230,3,572,286,0,1229,1227,1,0,0,0,1229, + 1230,1,0,0,0,1230,1348,1,0,0,0,1231,1232,5,308,0,0,1232,1233,5,239, + 0,0,1233,1235,3,480,240,0,1234,1236,3,642,321,0,1235,1234,1,0,0, + 0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237,1239,3,500,250,0,1238, + 1237,1,0,0,0,1238,1239,1,0,0,0,1239,1241,1,0,0,0,1240,1242,3,556, + 278,0,1241,1240,1,0,0,0,1241,1242,1,0,0,0,1242,1244,1,0,0,0,1243, + 1245,3,390,195,0,1244,1243,1,0,0,0,1244,1245,1,0,0,0,1245,1348,1, + 0,0,0,1246,1247,5,308,0,0,1247,1253,5,58,0,0,1248,1249,3,70,35,0, + 1249,1250,3,476,238,0,1250,1254,1,0,0,0,1251,1252,5,329,0,0,1252, + 1254,3,482,241,0,1253,1248,1,0,0,0,1253,1251,1,0,0,0,1254,1348,1, + 0,0,0,1255,1256,5,308,0,0,1256,1257,5,329,0,0,1257,1261,5,122,0, + 0,1258,1259,3,68,34,0,1259,1260,3,476,238,0,1260,1262,1,0,0,0,1261, + 1258,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1264,5,184, + 0,0,1264,1266,3,194,97,0,1265,1267,3,642,321,0,1266,1265,1,0,0,0, + 1266,1267,1,0,0,0,1267,1348,1,0,0,0,1268,1269,5,308,0,0,1269,1270, + 5,332,0,0,1270,1274,3,482,241,0,1271,1272,5,399,0,0,1272,1273,5, + 426,0,0,1273,1275,5,400,0,0,1274,1271,1,0,0,0,1274,1275,1,0,0,0, + 1275,1348,1,0,0,0,1276,1277,5,308,0,0,1277,1289,5,191,0,0,1278,1279, + 3,70,35,0,1279,1281,3,476,238,0,1280,1282,5,122,0,0,1281,1280,1, + 0,0,0,1281,1282,1,0,0,0,1282,1290,1,0,0,0,1283,1285,3,60,30,0,1284, + 1283,1,0,0,0,1284,1285,1,0,0,0,1285,1287,1,0,0,0,1286,1288,5,122, + 0,0,1287,1286,1,0,0,0,1287,1288,1,0,0,0,1288,1290,1,0,0,0,1289,1278, + 1,0,0,0,1289,1284,1,0,0,0,1290,1348,1,0,0,0,1291,1292,5,308,0,0, + 1292,1319,5,50,0,0,1293,1294,5,51,0,0,1294,1295,5,405,0,0,1295,1320, + 5,431,0,0,1296,1297,3,70,35,0,1297,1298,3,476,238,0,1298,1303,1, + 0,0,0,1299,1301,3,60,30,0,1300,1299,1,0,0,0,1300,1301,1,0,0,0,1301, + 1303,1,0,0,0,1302,1296,1,0,0,0,1302,1300,1,0,0,0,1303,1305,1,0,0, + 0,1304,1306,3,410,205,0,1305,1304,1,0,0,0,1305,1306,1,0,0,0,1306, + 1308,1,0,0,0,1307,1309,3,412,206,0,1308,1307,1,0,0,0,1308,1309,1, + 0,0,0,1309,1311,1,0,0,0,1310,1312,3,414,207,0,1311,1310,1,0,0,0, + 1311,1312,1,0,0,0,1312,1314,1,0,0,0,1313,1315,3,556,278,0,1314,1313, + 1,0,0,0,1314,1315,1,0,0,0,1315,1317,1,0,0,0,1316,1318,3,390,195, + 0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0,0,1319,1293, + 1,0,0,0,1319,1302,1,0,0,0,1320,1348,1,0,0,0,1321,1322,5,308,0,0, + 1322,1348,5,346,0,0,1323,1324,5,308,0,0,1324,1325,5,54,0,0,1325, + 1348,5,426,0,0,1326,1327,5,308,0,0,1327,1331,5,280,0,0,1328,1329, + 5,243,0,0,1329,1332,3,654,327,0,1330,1332,5,244,0,0,1331,1328,1, + 0,0,0,1331,1330,1,0,0,0,1332,1348,1,0,0,0,1333,1334,5,308,0,0,1334, + 1348,5,70,0,0,1335,1337,5,308,0,0,1336,1338,5,138,0,0,1337,1336, + 1,0,0,0,1337,1338,1,0,0,0,1338,1339,1,0,0,0,1339,1340,7,9,0,0,1340, + 1341,5,224,0,0,1341,1345,3,482,241,0,1342,1343,3,68,34,0,1343,1344, + 3,476,238,0,1344,1346,1,0,0,0,1345,1342,1,0,0,0,1345,1346,1,0,0, + 0,1346,1348,1,0,0,0,1347,1164,1,0,0,0,1347,1170,1,0,0,0,1347,1183, + 1,0,0,0,1347,1195,1,0,0,0,1347,1208,1,0,0,0,1347,1225,1,0,0,0,1347, + 1231,1,0,0,0,1347,1246,1,0,0,0,1347,1255,1,0,0,0,1347,1268,1,0,0, + 0,1347,1276,1,0,0,0,1347,1291,1,0,0,0,1347,1321,1,0,0,0,1347,1323, + 1,0,0,0,1347,1326,1,0,0,0,1347,1333,1,0,0,0,1347,1335,1,0,0,0,1348, + 73,1,0,0,0,1349,1350,5,384,0,0,1350,1351,3,654,327,0,1351,1352,5, + 405,0,0,1352,1353,5,426,0,0,1353,1358,1,0,0,0,1354,1355,5,184,0, + 0,1355,1358,3,194,97,0,1356,1358,3,194,97,0,1357,1349,1,0,0,0,1357, + 1354,1,0,0,0,1357,1356,1,0,0,0,1358,75,1,0,0,0,1359,1360,5,190,0, + 0,1360,1361,5,329,0,0,1361,1362,3,640,320,0,1362,1363,3,80,40,0, + 1363,77,1,0,0,0,1364,1365,5,190,0,0,1365,1366,3,70,35,0,1366,1367, + 3,476,238,0,1367,1368,3,80,40,0,1368,79,1,0,0,0,1369,1370,7,10,0, + 0,1370,81,1,0,0,0,1371,1372,5,361,0,0,1372,1373,5,329,0,0,1373,1374, + 3,640,320,0,1374,83,1,0,0,0,1375,1376,5,361,0,0,1376,1377,3,70,35, + 0,1377,1378,3,476,238,0,1378,85,1,0,0,0,1379,1380,5,58,0,0,1380, + 1381,5,287,0,0,1381,1382,3,654,327,0,1382,87,1,0,0,0,1383,1384,5, + 101,0,0,1384,1385,5,287,0,0,1385,1386,3,654,327,0,1386,89,1,0,0, + 0,1387,1388,5,143,0,0,1388,1390,3,118,59,0,1389,1391,3,112,56,0, + 1390,1389,1,0,0,0,1390,1391,1,0,0,0,1391,1392,1,0,0,0,1392,1393, + 5,341,0,0,1393,1395,3,124,62,0,1394,1396,3,130,65,0,1395,1394,1, + 0,0,0,1395,1396,1,0,0,0,1396,91,1,0,0,0,1397,1399,5,283,0,0,1398, + 1400,3,132,66,0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1401,1, + 0,0,0,1401,1403,3,118,59,0,1402,1404,3,112,56,0,1403,1402,1,0,0, + 0,1403,1404,1,0,0,0,1404,1405,1,0,0,0,1405,1406,5,139,0,0,1406,1407, + 3,124,62,0,1407,93,1,0,0,0,1408,1410,5,143,0,0,1409,1411,5,287,0, + 0,1410,1409,1,0,0,0,1410,1411,1,0,0,0,1411,1412,1,0,0,0,1412,1417, + 3,654,327,0,1413,1414,5,397,0,0,1414,1416,3,654,327,0,1415,1413, + 1,0,0,0,1416,1419,1,0,0,0,1417,1415,1,0,0,0,1417,1418,1,0,0,0,1418, + 1420,1,0,0,0,1419,1417,1,0,0,0,1420,1421,5,341,0,0,1421,1423,3,124, + 62,0,1422,1424,3,136,68,0,1423,1422,1,0,0,0,1423,1424,1,0,0,0,1424, + 95,1,0,0,0,1425,1427,5,283,0,0,1426,1428,3,134,67,0,1427,1426,1, + 0,0,0,1427,1428,1,0,0,0,1428,1430,1,0,0,0,1429,1431,5,287,0,0,1430, + 1429,1,0,0,0,1430,1431,1,0,0,0,1431,1432,1,0,0,0,1432,1437,3,654, + 327,0,1433,1434,5,397,0,0,1434,1436,3,654,327,0,1435,1433,1,0,0, + 0,1436,1439,1,0,0,0,1437,1435,1,0,0,0,1437,1438,1,0,0,0,1438,1440, + 1,0,0,0,1439,1437,1,0,0,0,1440,1441,5,139,0,0,1441,1442,3,124,62, + 0,1442,97,1,0,0,0,1443,1444,5,308,0,0,1444,1445,5,287,0,0,1445,1446, + 5,143,0,0,1446,1447,3,126,63,0,1447,99,1,0,0,0,1448,1449,5,308,0, + 0,1449,1450,5,288,0,0,1450,101,1,0,0,0,1451,1452,5,308,0,0,1452, + 1453,5,62,0,0,1453,1454,5,288,0,0,1454,103,1,0,0,0,1455,1456,5,304, + 0,0,1456,1460,5,287,0,0,1457,1461,5,7,0,0,1458,1461,5,213,0,0,1459, + 1461,3,654,327,0,1460,1457,1,0,0,0,1460,1458,1,0,0,0,1460,1459,1, + 0,0,0,1461,105,1,0,0,0,1462,1463,5,308,0,0,1463,1465,5,143,0,0,1464, + 1466,3,126,63,0,1465,1464,1,0,0,0,1465,1466,1,0,0,0,1466,1469,1, + 0,0,0,1467,1468,5,224,0,0,1468,1470,3,110,55,0,1469,1467,1,0,0,0, + 1469,1470,1,0,0,0,1470,107,1,0,0,0,1471,1472,5,308,0,0,1472,1473, + 5,252,0,0,1473,1474,3,654,327,0,1474,109,1,0,0,0,1475,1478,5,7,0, + 0,1476,1478,3,116,58,0,1477,1475,1,0,0,0,1477,1476,1,0,0,0,1478, + 111,1,0,0,0,1479,1480,5,224,0,0,1480,1481,3,114,57,0,1481,113,1, + 0,0,0,1482,1483,3,70,35,0,1483,1484,3,476,238,0,1484,1494,1,0,0, + 0,1485,1487,5,329,0,0,1486,1485,1,0,0,0,1486,1487,1,0,0,0,1487,1488, + 1,0,0,0,1488,1494,3,640,320,0,1489,1490,5,366,0,0,1490,1494,5,426, + 0,0,1491,1492,5,303,0,0,1492,1494,3,654,327,0,1493,1482,1,0,0,0, + 1493,1486,1,0,0,0,1493,1489,1,0,0,0,1493,1491,1,0,0,0,1494,115,1, + 0,0,0,1495,1496,3,70,35,0,1496,1497,3,476,238,0,1497,1516,1,0,0, + 0,1498,1500,5,329,0,0,1499,1498,1,0,0,0,1499,1500,1,0,0,0,1500,1501, + 1,0,0,0,1501,1506,3,482,241,0,1502,1503,5,399,0,0,1503,1504,3,254, + 127,0,1504,1505,5,400,0,0,1505,1507,1,0,0,0,1506,1502,1,0,0,0,1506, + 1507,1,0,0,0,1507,1509,1,0,0,0,1508,1510,3,642,321,0,1509,1508,1, + 0,0,0,1509,1510,1,0,0,0,1510,1516,1,0,0,0,1511,1512,5,366,0,0,1512, + 1516,5,426,0,0,1513,1514,5,303,0,0,1514,1516,3,654,327,0,1515,1495, + 1,0,0,0,1515,1499,1,0,0,0,1515,1511,1,0,0,0,1515,1513,1,0,0,0,1516, + 117,1,0,0,0,1517,1522,3,120,60,0,1518,1519,5,397,0,0,1519,1521,3, + 120,60,0,1520,1518,1,0,0,0,1521,1524,1,0,0,0,1522,1520,1,0,0,0,1522, + 1523,1,0,0,0,1523,119,1,0,0,0,1524,1522,1,0,0,0,1525,1530,3,122, + 61,0,1526,1527,5,399,0,0,1527,1528,3,254,127,0,1528,1529,5,400,0, + 0,1529,1531,1,0,0,0,1530,1526,1,0,0,0,1530,1531,1,0,0,0,1531,121, + 1,0,0,0,1532,1533,7,11,0,0,1533,123,1,0,0,0,1534,1539,3,126,63,0, + 1535,1536,5,397,0,0,1536,1538,3,126,63,0,1537,1535,1,0,0,0,1538, + 1541,1,0,0,0,1539,1537,1,0,0,0,1539,1540,1,0,0,0,1540,125,1,0,0, + 0,1541,1539,1,0,0,0,1542,1543,5,369,0,0,1543,1549,3,658,329,0,1544, + 1545,5,144,0,0,1545,1549,3,658,329,0,1546,1547,5,287,0,0,1547,1549, + 3,654,327,0,1548,1542,1,0,0,0,1548,1544,1,0,0,0,1548,1546,1,0,0, + 0,1549,127,1,0,0,0,1550,1551,5,369,0,0,1551,1556,3,658,329,0,1552, + 1553,5,287,0,0,1553,1556,3,654,327,0,1554,1556,3,654,327,0,1555, + 1550,1,0,0,0,1555,1552,1,0,0,0,1555,1554,1,0,0,0,1556,129,1,0,0, + 0,1557,1558,5,387,0,0,1558,1559,5,143,0,0,1559,1560,5,227,0,0,1560, + 131,1,0,0,0,1561,1562,5,143,0,0,1562,1563,5,227,0,0,1563,1564,5, + 134,0,0,1564,133,1,0,0,0,1565,1566,5,5,0,0,1566,1567,5,227,0,0,1567, + 1568,5,134,0,0,1568,135,1,0,0,0,1569,1570,5,387,0,0,1570,1571,5, + 5,0,0,1571,1572,5,227,0,0,1572,137,1,0,0,0,1573,1575,5,212,0,0,1574, + 1576,5,276,0,0,1575,1574,1,0,0,0,1575,1576,1,0,0,0,1576,1577,1,0, + 0,0,1577,1578,5,329,0,0,1578,1584,3,482,241,0,1579,1580,7,12,0,0, + 1580,1582,5,239,0,0,1581,1583,3,646,323,0,1582,1581,1,0,0,0,1582, + 1583,1,0,0,0,1583,1585,1,0,0,0,1584,1579,1,0,0,0,1584,1585,1,0,0, + 0,1585,139,1,0,0,0,1586,1591,3,142,71,0,1587,1588,5,397,0,0,1588, + 1590,3,142,71,0,1589,1587,1,0,0,0,1590,1593,1,0,0,0,1591,1589,1, + 0,0,0,1591,1592,1,0,0,0,1592,141,1,0,0,0,1593,1591,1,0,0,0,1594, + 1595,3,144,72,0,1595,1596,5,426,0,0,1596,143,1,0,0,0,1597,1598,7, + 13,0,0,1598,145,1,0,0,0,1599,1601,5,58,0,0,1600,1602,5,333,0,0,1601, + 1600,1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0,0,1603,1604,5,141, + 0,0,1604,1605,3,570,285,0,1605,1606,5,17,0,0,1606,1609,5,426,0,0, + 1607,1608,5,370,0,0,1608,1610,3,140,70,0,1609,1607,1,0,0,0,1609, + 1610,1,0,0,0,1610,147,1,0,0,0,1611,1613,5,101,0,0,1612,1614,5,333, + 0,0,1613,1612,1,0,0,0,1613,1614,1,0,0,0,1614,1615,1,0,0,0,1615,1617, + 5,141,0,0,1616,1618,3,30,15,0,1617,1616,1,0,0,0,1617,1618,1,0,0, + 0,1618,1619,1,0,0,0,1619,1620,3,572,286,0,1620,149,1,0,0,0,1621, + 1622,5,271,0,0,1622,1623,7,14,0,0,1623,151,1,0,0,0,1624,1625,5,58, + 0,0,1625,1626,5,333,0,0,1626,1627,5,194,0,0,1627,1628,5,432,0,0, + 1628,1630,5,399,0,0,1629,1631,3,248,124,0,1630,1629,1,0,0,0,1630, + 1631,1,0,0,0,1631,1632,1,0,0,0,1632,1633,5,400,0,0,1633,1634,3,596, + 298,0,1634,153,1,0,0,0,1635,1636,5,101,0,0,1636,1637,5,333,0,0,1637, + 1639,5,194,0,0,1638,1640,3,30,15,0,1639,1638,1,0,0,0,1639,1640,1, + 0,0,0,1640,1641,1,0,0,0,1641,1642,5,432,0,0,1642,155,1,0,0,0,1643, + 1644,5,58,0,0,1644,1645,5,155,0,0,1645,1646,3,654,327,0,1646,1647, + 5,224,0,0,1647,1648,5,329,0,0,1648,1649,3,482,241,0,1649,1650,3, + 268,134,0,1650,1651,5,17,0,0,1651,1655,5,426,0,0,1652,1653,5,387, + 0,0,1653,1654,5,84,0,0,1654,1656,5,265,0,0,1655,1652,1,0,0,0,1655, + 1656,1,0,0,0,1656,1659,1,0,0,0,1657,1658,5,150,0,0,1658,1660,3,226, + 113,0,1659,1657,1,0,0,0,1659,1660,1,0,0,0,1660,1664,1,0,0,0,1661, + 1662,5,154,0,0,1662,1663,5,329,0,0,1663,1665,3,482,241,0,1664,1661, + 1,0,0,0,1664,1665,1,0,0,0,1665,1669,1,0,0,0,1666,1667,5,238,0,0, + 1667,1668,5,32,0,0,1668,1670,3,268,134,0,1669,1666,1,0,0,0,1669, + 1670,1,0,0,0,1670,1675,1,0,0,0,1671,1673,3,222,111,0,1672,1671,1, + 0,0,0,1672,1673,1,0,0,0,1673,1674,1,0,0,0,1674,1676,3,246,123,0, + 1675,1672,1,0,0,0,1675,1676,1,0,0,0,1676,1678,1,0,0,0,1677,1679, + 3,428,214,0,1678,1677,1,0,0,0,1678,1679,1,0,0,0,1679,1681,1,0,0, + 0,1680,1682,3,224,112,0,1681,1680,1,0,0,0,1681,1682,1,0,0,0,1682, + 1684,1,0,0,0,1683,1685,3,196,98,0,1684,1683,1,0,0,0,1684,1685,1, + 0,0,0,1685,157,1,0,0,0,1686,1687,5,101,0,0,1687,1689,5,155,0,0,1688, + 1690,3,30,15,0,1689,1688,1,0,0,0,1689,1690,1,0,0,0,1690,1691,1,0, + 0,0,1691,1692,3,654,327,0,1692,1693,5,224,0,0,1693,1694,3,482,241, + 0,1694,159,1,0,0,0,1695,1698,5,58,0,0,1696,1697,5,228,0,0,1697,1699, + 5,278,0,0,1698,1696,1,0,0,0,1698,1699,1,0,0,0,1699,1700,1,0,0,0, + 1700,1702,5,378,0,0,1701,1703,3,32,16,0,1702,1701,1,0,0,0,1702,1703, + 1,0,0,0,1703,1704,1,0,0,0,1704,1709,3,488,244,0,1705,1706,5,399, + 0,0,1706,1707,3,308,154,0,1707,1708,5,400,0,0,1708,1710,1,0,0,0, + 1709,1705,1,0,0,0,1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713, + 3,196,98,0,1712,1711,1,0,0,0,1712,1713,1,0,0,0,1713,1715,1,0,0,0, + 1714,1716,3,162,81,0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1718, + 1,0,0,0,1717,1719,3,224,112,0,1718,1717,1,0,0,0,1718,1719,1,0,0, + 0,1719,1720,1,0,0,0,1720,1721,5,17,0,0,1721,1722,3,384,192,0,1722, + 161,1,0,0,0,1723,1724,5,238,0,0,1724,1730,5,224,0,0,1725,1726,5, + 399,0,0,1726,1731,3,254,127,0,1727,1728,5,316,0,0,1728,1729,5,399, + 0,0,1729,1731,3,204,102,0,1730,1725,1,0,0,0,1730,1727,1,0,0,0,1731, + 1732,1,0,0,0,1732,1733,5,400,0,0,1733,163,1,0,0,0,1734,1737,3,166, + 83,0,1735,1737,3,168,84,0,1736,1734,1,0,0,0,1736,1735,1,0,0,0,1737, + 165,1,0,0,0,1738,1739,5,42,0,0,1739,1740,5,224,0,0,1740,1741,5,399, + 0,0,1741,1742,3,254,127,0,1742,1743,5,400,0,0,1743,167,1,0,0,0,1744, + 1745,3,170,85,0,1745,1746,3,172,86,0,1746,169,1,0,0,0,1747,1748, + 5,98,0,0,1748,1749,5,224,0,0,1749,1750,5,399,0,0,1750,1751,3,254, + 127,0,1751,1752,5,400,0,0,1752,171,1,0,0,0,1753,1754,5,315,0,0,1754, + 1755,5,224,0,0,1755,1756,5,399,0,0,1756,1757,3,254,127,0,1757,1758, + 5,400,0,0,1758,173,1,0,0,0,1759,1760,5,101,0,0,1760,1762,5,378,0, + 0,1761,1763,3,30,15,0,1762,1761,1,0,0,0,1762,1763,1,0,0,0,1763,1764, + 1,0,0,0,1764,1765,3,486,243,0,1765,175,1,0,0,0,1766,1767,5,58,0, + 0,1767,1768,5,202,0,0,1768,1770,5,378,0,0,1769,1771,3,32,16,0,1770, + 1769,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0,0,0,1772,1774,3,488, + 244,0,1773,1775,3,38,19,0,1774,1773,1,0,0,0,1774,1775,1,0,0,0,1775, + 1777,1,0,0,0,1776,1778,3,196,98,0,1777,1776,1,0,0,0,1777,1778,1, + 0,0,0,1778,1780,1,0,0,0,1779,1781,3,162,81,0,1780,1779,1,0,0,0,1780, + 1781,1,0,0,0,1781,1783,1,0,0,0,1782,1784,3,164,82,0,1783,1782,1, + 0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0,0,1785,1787,3,222,111,0, + 1786,1785,1,0,0,0,1786,1787,1,0,0,0,1787,1789,1,0,0,0,1788,1790, + 3,246,123,0,1789,1788,1,0,0,0,1789,1790,1,0,0,0,1790,1792,1,0,0, + 0,1791,1793,3,428,214,0,1792,1791,1,0,0,0,1792,1793,1,0,0,0,1793, + 1795,1,0,0,0,1794,1796,3,224,112,0,1795,1794,1,0,0,0,1795,1796,1, + 0,0,0,1796,1797,1,0,0,0,1797,1798,5,17,0,0,1798,1799,3,384,192,0, + 1799,177,1,0,0,0,1800,1801,5,101,0,0,1801,1802,5,202,0,0,1802,1804, + 5,378,0,0,1803,1805,3,30,15,0,1804,1803,1,0,0,0,1804,1805,1,0,0, + 0,1805,1806,1,0,0,0,1806,1807,3,486,243,0,1807,179,1,0,0,0,1808, + 1809,5,58,0,0,1809,1810,5,293,0,0,1810,1811,5,258,0,0,1811,1812, + 3,654,327,0,1812,1814,3,188,94,0,1813,1815,3,190,95,0,1814,1813, + 1,0,0,0,1814,1815,1,0,0,0,1815,1817,1,0,0,0,1816,1818,3,272,136, + 0,1817,1816,1,0,0,0,1817,1818,1,0,0,0,1818,1819,1,0,0,0,1819,1820, + 3,192,96,0,1820,181,1,0,0,0,1821,1822,5,101,0,0,1822,1823,5,293, + 0,0,1823,1824,5,258,0,0,1824,1825,3,654,327,0,1825,183,1,0,0,0,1826, + 1827,5,9,0,0,1827,1828,5,293,0,0,1828,1829,5,258,0,0,1829,1830,3, + 654,327,0,1830,1831,3,186,93,0,1831,185,1,0,0,0,1832,1838,3,188, + 94,0,1833,1838,3,190,95,0,1834,1838,3,272,136,0,1835,1838,3,192, + 96,0,1836,1838,5,115,0,0,1837,1832,1,0,0,0,1837,1833,1,0,0,0,1837, + 1834,1,0,0,0,1837,1835,1,0,0,0,1837,1836,1,0,0,0,1838,187,1,0,0, + 0,1839,1840,5,59,0,0,1840,1855,5,426,0,0,1841,1843,5,111,0,0,1842, + 1844,5,431,0,0,1843,1842,1,0,0,0,1843,1844,1,0,0,0,1844,1845,1,0, + 0,0,1845,1852,3,594,297,0,1846,1850,5,20,0,0,1847,1848,5,223,0,0, + 1848,1850,5,32,0,0,1849,1846,1,0,0,0,1849,1847,1,0,0,0,1850,1851, + 1,0,0,0,1851,1853,5,426,0,0,1852,1849,1,0,0,0,1852,1853,1,0,0,0, + 1853,1855,1,0,0,0,1854,1839,1,0,0,0,1854,1841,1,0,0,0,1855,189,1, + 0,0,0,1856,1857,5,116,0,0,1857,1858,5,17,0,0,1858,1859,5,426,0,0, + 1859,191,1,0,0,0,1860,1862,5,85,0,0,1861,1860,1,0,0,0,1861,1862, + 1,0,0,0,1862,1863,1,0,0,0,1863,1864,5,17,0,0,1864,1865,3,2,1,0,1865, + 193,1,0,0,0,1866,1869,3,654,327,0,1867,1869,5,426,0,0,1868,1866, + 1,0,0,0,1868,1867,1,0,0,0,1869,195,1,0,0,0,1870,1871,5,47,0,0,1871, + 1872,5,426,0,0,1872,197,1,0,0,0,1873,1874,5,183,0,0,1874,1875,5, + 431,0,0,1875,199,1,0,0,0,1876,1877,5,238,0,0,1877,1886,5,32,0,0, + 1878,1881,5,399,0,0,1879,1882,3,202,101,0,1880,1882,3,254,127,0, + 1881,1879,1,0,0,0,1881,1880,1,0,0,0,1882,1887,1,0,0,0,1883,1884, + 5,316,0,0,1884,1885,5,399,0,0,1885,1887,3,204,102,0,1886,1878,1, + 0,0,0,1886,1883,1,0,0,0,1887,1888,1,0,0,0,1888,1889,5,400,0,0,1889, + 201,1,0,0,0,1890,1895,3,320,160,0,1891,1892,5,397,0,0,1892,1894, + 3,320,160,0,1893,1891,1,0,0,0,1894,1897,1,0,0,0,1895,1893,1,0,0, + 0,1895,1896,1,0,0,0,1896,203,1,0,0,0,1897,1895,1,0,0,0,1898,1903, + 3,206,103,0,1899,1900,5,397,0,0,1900,1902,3,206,103,0,1901,1899, + 1,0,0,0,1902,1905,1,0,0,0,1903,1901,1,0,0,0,1903,1904,1,0,0,0,1904, + 205,1,0,0,0,1905,1903,1,0,0,0,1906,1925,3,256,128,0,1907,1912,3, + 682,341,0,1908,1912,3,684,342,0,1909,1912,3,688,344,0,1910,1912, + 3,690,345,0,1911,1907,1,0,0,0,1911,1908,1,0,0,0,1911,1909,1,0,0, + 0,1911,1910,1,0,0,0,1912,1913,1,0,0,0,1913,1914,5,399,0,0,1914,1915, + 3,256,128,0,1915,1916,5,400,0,0,1916,1925,1,0,0,0,1917,1918,7,15, + 0,0,1918,1919,5,399,0,0,1919,1920,5,431,0,0,1920,1921,5,397,0,0, + 1921,1922,3,256,128,0,1922,1923,5,400,0,0,1923,1925,1,0,0,0,1924, + 1906,1,0,0,0,1924,1911,1,0,0,0,1924,1917,1,0,0,0,1925,207,1,0,0, + 0,1926,1927,5,42,0,0,1927,1928,5,32,0,0,1928,1929,5,399,0,0,1929, + 1930,3,254,127,0,1930,1937,5,400,0,0,1931,1932,5,315,0,0,1932,1933, + 5,32,0,0,1933,1934,5,399,0,0,1934,1935,3,266,133,0,1935,1936,5,400, + 0,0,1936,1938,1,0,0,0,1937,1931,1,0,0,0,1937,1938,1,0,0,0,1938,1939, + 1,0,0,0,1939,1940,5,166,0,0,1940,1941,5,431,0,0,1941,1942,5,31,0, + 0,1942,209,1,0,0,0,1943,1944,5,310,0,0,1944,1945,5,32,0,0,1945,1946, + 5,399,0,0,1946,1947,3,254,127,0,1947,1948,5,400,0,0,1948,1949,5, + 224,0,0,1949,1950,5,399,0,0,1950,1951,3,294,147,0,1951,1953,5,400, + 0,0,1952,1954,3,40,20,0,1953,1952,1,0,0,0,1953,1954,1,0,0,0,1954, + 211,1,0,0,0,1955,1958,3,218,109,0,1956,1958,3,220,110,0,1957,1955, + 1,0,0,0,1957,1956,1,0,0,0,1958,213,1,0,0,0,1959,1960,5,266,0,0,1960, + 1961,5,426,0,0,1961,215,1,0,0,0,1962,1963,5,267,0,0,1963,1964,5, + 426,0,0,1964,217,1,0,0,0,1965,1966,5,291,0,0,1966,1967,5,137,0,0, + 1967,1968,5,301,0,0,1968,1972,5,426,0,0,1969,1970,5,387,0,0,1970, + 1971,5,302,0,0,1971,1973,3,226,113,0,1972,1969,1,0,0,0,1972,1973, + 1,0,0,0,1973,219,1,0,0,0,1974,1975,5,291,0,0,1975,1976,5,137,0,0, + 1976,1978,5,87,0,0,1977,1979,3,236,118,0,1978,1977,1,0,0,0,1978, + 1979,1,0,0,0,1979,1981,1,0,0,0,1980,1982,3,238,119,0,1981,1980,1, + 0,0,0,1981,1982,1,0,0,0,1982,1984,1,0,0,0,1983,1985,3,240,120,0, + 1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985,1987,1,0,0,0,1986,1988, + 3,242,121,0,1987,1986,1,0,0,0,1987,1988,1,0,0,0,1988,1990,1,0,0, + 0,1989,1991,3,244,122,0,1990,1989,1,0,0,0,1990,1991,1,0,0,0,1991, + 221,1,0,0,0,1992,1995,3,220,110,0,1993,1995,3,218,109,0,1994,1992, + 1,0,0,0,1994,1993,1,0,0,0,1995,223,1,0,0,0,1996,1997,5,332,0,0,1997, + 1998,3,226,113,0,1998,225,1,0,0,0,1999,2000,5,399,0,0,2000,2001, + 3,228,114,0,2001,2002,5,400,0,0,2002,227,1,0,0,0,2003,2013,3,232, + 116,0,2004,2009,5,426,0,0,2005,2006,5,397,0,0,2006,2008,5,426,0, + 0,2007,2005,1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2009,2010, + 1,0,0,0,2010,2013,1,0,0,0,2011,2009,1,0,0,0,2012,2003,1,0,0,0,2012, + 2004,1,0,0,0,2013,229,1,0,0,0,2014,2015,5,399,0,0,2015,2016,3,232, + 116,0,2016,2017,5,400,0,0,2017,231,1,0,0,0,2018,2023,3,234,117,0, + 2019,2020,5,397,0,0,2020,2022,3,234,117,0,2021,2019,1,0,0,0,2022, + 2025,1,0,0,0,2023,2021,1,0,0,0,2023,2024,1,0,0,0,2024,233,1,0,0, + 0,2025,2023,1,0,0,0,2026,2027,5,426,0,0,2027,2028,5,405,0,0,2028, + 2029,5,426,0,0,2029,235,1,0,0,0,2030,2031,5,127,0,0,2031,2032,5, + 334,0,0,2032,2033,5,32,0,0,2033,2037,5,426,0,0,2034,2035,5,110,0, + 0,2035,2036,5,32,0,0,2036,2038,5,426,0,0,2037,2034,1,0,0,0,2037, + 2038,1,0,0,0,2038,237,1,0,0,0,2039,2040,5,44,0,0,2040,2041,5,169, + 0,0,2041,2042,5,334,0,0,2042,2043,5,32,0,0,2043,2044,5,426,0,0,2044, + 239,1,0,0,0,2045,2046,5,198,0,0,2046,2047,5,174,0,0,2047,2048,5, + 334,0,0,2048,2049,5,32,0,0,2049,2050,5,426,0,0,2050,241,1,0,0,0, + 2051,2052,5,186,0,0,2052,2053,5,334,0,0,2053,2054,5,32,0,0,2054, + 2055,5,426,0,0,2055,243,1,0,0,0,2056,2057,5,219,0,0,2057,2058,5, + 85,0,0,2058,2059,5,17,0,0,2059,2060,5,426,0,0,2060,245,1,0,0,0,2061, + 2062,5,321,0,0,2062,2063,5,17,0,0,2063,2064,5,160,0,0,2064,2065, + 5,426,0,0,2065,2066,5,233,0,0,2066,2071,5,426,0,0,2067,2068,5,159, + 0,0,2068,2069,5,426,0,0,2069,2070,5,232,0,0,2070,2072,5,426,0,0, + 2071,2067,1,0,0,0,2071,2072,1,0,0,0,2072,2103,1,0,0,0,2073,2074, + 5,321,0,0,2074,2075,5,32,0,0,2075,2079,5,426,0,0,2076,2077,5,387, + 0,0,2077,2078,5,302,0,0,2078,2080,3,226,113,0,2079,2076,1,0,0,0, + 2079,2080,1,0,0,0,2080,2084,1,0,0,0,2081,2082,5,321,0,0,2082,2083, + 5,17,0,0,2083,2085,3,654,327,0,2084,2081,1,0,0,0,2084,2085,1,0,0, + 0,2085,2103,1,0,0,0,2086,2087,5,321,0,0,2087,2088,5,32,0,0,2088, + 2092,3,654,327,0,2089,2090,5,387,0,0,2090,2091,5,302,0,0,2091,2093, + 3,226,113,0,2092,2089,1,0,0,0,2092,2093,1,0,0,0,2093,2097,1,0,0, + 0,2094,2095,5,321,0,0,2095,2096,5,17,0,0,2096,2098,3,654,327,0,2097, + 2094,1,0,0,0,2097,2098,1,0,0,0,2098,2103,1,0,0,0,2099,2100,5,321, + 0,0,2100,2101,5,17,0,0,2101,2103,3,654,327,0,2102,2061,1,0,0,0,2102, + 2073,1,0,0,0,2102,2086,1,0,0,0,2102,2099,1,0,0,0,2103,247,1,0,0, + 0,2104,2109,3,314,157,0,2105,2106,5,397,0,0,2106,2108,3,314,157, + 0,2107,2105,1,0,0,0,2108,2111,1,0,0,0,2109,2107,1,0,0,0,2109,2110, + 1,0,0,0,2110,249,1,0,0,0,2111,2109,1,0,0,0,2112,2117,3,316,158,0, + 2113,2114,5,397,0,0,2114,2116,3,316,158,0,2115,2113,1,0,0,0,2116, + 2119,1,0,0,0,2117,2115,1,0,0,0,2117,2118,1,0,0,0,2118,251,1,0,0, + 0,2119,2117,1,0,0,0,2120,2125,3,344,172,0,2121,2122,5,397,0,0,2122, + 2124,3,344,172,0,2123,2121,1,0,0,0,2124,2127,1,0,0,0,2125,2123,1, + 0,0,0,2125,2126,1,0,0,0,2126,253,1,0,0,0,2127,2125,1,0,0,0,2128, + 2133,3,256,128,0,2129,2130,5,397,0,0,2130,2132,3,256,128,0,2131, + 2129,1,0,0,0,2132,2135,1,0,0,0,2133,2131,1,0,0,0,2133,2134,1,0,0, + 0,2134,255,1,0,0,0,2135,2133,1,0,0,0,2136,2140,3,702,351,0,2137, + 2138,4,128,0,0,2138,2140,3,698,349,0,2139,2136,1,0,0,0,2139,2137, + 1,0,0,0,2140,257,1,0,0,0,2141,2142,3,700,350,0,2142,259,1,0,0,0, + 2143,2147,3,702,351,0,2144,2145,4,130,1,0,2145,2147,3,698,349,0, + 2146,2143,1,0,0,0,2146,2144,1,0,0,0,2147,261,1,0,0,0,2148,2149,3, + 654,327,0,2149,263,1,0,0,0,2150,2160,3,256,128,0,2151,2156,5,395, + 0,0,2152,2157,5,104,0,0,2153,2157,5,175,0,0,2154,2157,5,375,0,0, + 2155,2157,3,654,327,0,2156,2152,1,0,0,0,2156,2153,1,0,0,0,2156,2154, + 1,0,0,0,2156,2155,1,0,0,0,2157,2159,1,0,0,0,2158,2151,1,0,0,0,2159, + 2162,1,0,0,0,2160,2158,1,0,0,0,2160,2161,1,0,0,0,2161,265,1,0,0, + 0,2162,2160,1,0,0,0,2163,2168,3,306,153,0,2164,2165,5,397,0,0,2165, + 2167,3,306,153,0,2166,2164,1,0,0,0,2167,2170,1,0,0,0,2168,2166,1, + 0,0,0,2168,2169,1,0,0,0,2169,267,1,0,0,0,2170,2168,1,0,0,0,2171, + 2172,5,399,0,0,2172,2173,3,254,127,0,2173,2174,5,400,0,0,2174,269, + 1,0,0,0,2175,2177,3,272,136,0,2176,2178,3,274,137,0,2177,2176,1, + 0,0,0,2177,2178,1,0,0,0,2178,2181,1,0,0,0,2179,2181,3,276,138,0, + 2180,2175,1,0,0,0,2180,2179,1,0,0,0,2181,271,1,0,0,0,2182,2185,3, + 678,339,0,2183,2185,3,680,340,0,2184,2182,1,0,0,0,2184,2183,1,0, + 0,0,2185,273,1,0,0,0,2186,2187,7,16,0,0,2187,275,1,0,0,0,2188,2192, + 5,109,0,0,2189,2190,5,216,0,0,2190,2192,5,109,0,0,2191,2188,1,0, + 0,0,2191,2189,1,0,0,0,2192,277,1,0,0,0,2193,2194,7,17,0,0,2194,279, + 1,0,0,0,2195,2196,5,55,0,0,2196,2198,3,654,327,0,2197,2195,1,0,0, + 0,2197,2198,1,0,0,0,2198,2199,1,0,0,0,2199,2201,3,284,142,0,2200, + 2202,3,340,170,0,2201,2200,1,0,0,0,2201,2202,1,0,0,0,2202,281,1, + 0,0,0,2203,2204,5,55,0,0,2204,2205,3,654,327,0,2205,2207,3,284,142, + 0,2206,2208,3,342,171,0,2207,2206,1,0,0,0,2207,2208,1,0,0,0,2208, + 283,1,0,0,0,2209,2212,3,286,143,0,2210,2212,3,288,144,0,2211,2209, + 1,0,0,0,2211,2210,1,0,0,0,2212,285,1,0,0,0,2213,2214,3,338,169,0, + 2214,2215,3,268,134,0,2215,287,1,0,0,0,2216,2217,5,40,0,0,2217,2218, + 5,399,0,0,2218,2219,3,596,298,0,2219,2220,5,400,0,0,2220,289,1,0, + 0,0,2221,2222,5,55,0,0,2222,2224,3,654,327,0,2223,2221,1,0,0,0,2223, + 2224,1,0,0,0,2224,2225,1,0,0,0,2225,2226,5,136,0,0,2226,2227,5,173, + 0,0,2227,2228,3,268,134,0,2228,2229,5,269,0,0,2229,2230,3,482,241, + 0,2230,2232,3,268,134,0,2231,2233,3,340,170,0,2232,2231,1,0,0,0, + 2232,2233,1,0,0,0,2233,291,1,0,0,0,2234,2235,5,55,0,0,2235,2236, + 3,654,327,0,2236,2237,5,136,0,0,2237,2238,5,173,0,0,2238,2239,3, + 268,134,0,2239,2240,5,269,0,0,2240,2241,3,482,241,0,2241,2243,3, + 268,134,0,2242,2244,3,342,171,0,2243,2242,1,0,0,0,2243,2244,1,0, + 0,0,2244,293,1,0,0,0,2245,2248,3,300,150,0,2246,2248,3,296,148,0, + 2247,2245,1,0,0,0,2247,2246,1,0,0,0,2248,295,1,0,0,0,2249,2254,3, + 298,149,0,2250,2251,5,397,0,0,2251,2253,3,298,149,0,2252,2250,1, + 0,0,0,2253,2256,1,0,0,0,2254,2252,1,0,0,0,2254,2255,1,0,0,0,2255, + 297,1,0,0,0,2256,2254,1,0,0,0,2257,2258,5,399,0,0,2258,2259,3,300, + 150,0,2259,2260,5,400,0,0,2260,299,1,0,0,0,2261,2266,3,588,294,0, + 2262,2263,5,397,0,0,2263,2265,3,588,294,0,2264,2262,1,0,0,0,2265, + 2268,1,0,0,0,2266,2264,1,0,0,0,2266,2267,1,0,0,0,2267,301,1,0,0, + 0,2268,2266,1,0,0,0,2269,2270,7,18,0,0,2270,303,1,0,0,0,2271,2272, + 5,220,0,0,2272,2273,7,19,0,0,2273,305,1,0,0,0,2274,2276,3,256,128, + 0,2275,2277,3,302,151,0,2276,2275,1,0,0,0,2276,2277,1,0,0,0,2277, + 2279,1,0,0,0,2278,2280,3,304,152,0,2279,2278,1,0,0,0,2279,2280,1, + 0,0,0,2280,307,1,0,0,0,2281,2286,3,310,155,0,2282,2283,5,397,0,0, + 2283,2285,3,310,155,0,2284,2282,1,0,0,0,2285,2288,1,0,0,0,2286,2284, + 1,0,0,0,2286,2287,1,0,0,0,2287,309,1,0,0,0,2288,2286,1,0,0,0,2289, + 2292,3,262,131,0,2290,2291,5,47,0,0,2291,2293,5,426,0,0,2292,2290, + 1,0,0,0,2292,2293,1,0,0,0,2293,311,1,0,0,0,2294,2297,3,256,128,0, + 2295,2297,3,596,298,0,2296,2294,1,0,0,0,2296,2295,1,0,0,0,2297,2299, + 1,0,0,0,2298,2300,3,302,151,0,2299,2298,1,0,0,0,2299,2300,1,0,0, + 0,2300,2302,1,0,0,0,2301,2303,3,304,152,0,2302,2301,1,0,0,0,2302, + 2303,1,0,0,0,2303,313,1,0,0,0,2304,2305,3,262,131,0,2305,2308,3, + 346,173,0,2306,2307,5,47,0,0,2307,2309,5,426,0,0,2308,2306,1,0,0, + 0,2308,2309,1,0,0,0,2309,315,1,0,0,0,2310,2313,3,318,159,0,2311, + 2313,3,320,160,0,2312,2310,1,0,0,0,2312,2311,1,0,0,0,2313,317,1, + 0,0,0,2314,2317,3,290,145,0,2315,2317,3,280,140,0,2316,2314,1,0, + 0,0,2316,2315,1,0,0,0,2317,319,1,0,0,0,2318,2319,3,262,131,0,2319, + 2321,3,346,173,0,2320,2322,3,322,161,0,2321,2320,1,0,0,0,2321,2322, + 1,0,0,0,2322,2325,1,0,0,0,2323,2324,5,47,0,0,2324,2326,5,426,0,0, + 2325,2323,1,0,0,0,2325,2326,1,0,0,0,2326,321,1,0,0,0,2327,2330,3, + 324,162,0,2328,2330,3,326,163,0,2329,2327,1,0,0,0,2329,2328,1,0, + 0,0,2330,323,1,0,0,0,2331,2332,5,55,0,0,2332,2334,3,654,327,0,2333, + 2331,1,0,0,0,2333,2334,1,0,0,0,2334,2335,1,0,0,0,2335,2336,5,269, + 0,0,2336,2337,3,482,241,0,2337,2338,5,399,0,0,2338,2339,3,256,128, + 0,2339,2341,5,400,0,0,2340,2342,3,340,170,0,2341,2340,1,0,0,0,2341, + 2342,1,0,0,0,2342,325,1,0,0,0,2343,2344,5,55,0,0,2344,2346,3,654, + 327,0,2345,2343,1,0,0,0,2345,2346,1,0,0,0,2346,2347,1,0,0,0,2347, + 2349,3,334,167,0,2348,2350,3,340,170,0,2349,2348,1,0,0,0,2349,2350, + 1,0,0,0,2350,327,1,0,0,0,2351,2354,3,330,165,0,2352,2354,3,332,166, + 0,2353,2351,1,0,0,0,2353,2352,1,0,0,0,2354,329,1,0,0,0,2355,2356, + 5,55,0,0,2356,2358,3,654,327,0,2357,2355,1,0,0,0,2357,2358,1,0,0, + 0,2358,2359,1,0,0,0,2359,2360,5,269,0,0,2360,2361,3,482,241,0,2361, + 2362,5,399,0,0,2362,2363,3,256,128,0,2363,2365,5,400,0,0,2364,2366, + 3,342,171,0,2365,2364,1,0,0,0,2365,2366,1,0,0,0,2366,331,1,0,0,0, + 2367,2368,5,55,0,0,2368,2370,3,654,327,0,2369,2367,1,0,0,0,2369, + 2370,1,0,0,0,2370,2371,1,0,0,0,2371,2373,3,334,167,0,2372,2374,3, + 342,171,0,2373,2372,1,0,0,0,2373,2374,1,0,0,0,2374,333,1,0,0,0,2375, + 2376,5,216,0,0,2376,2382,5,219,0,0,2377,2378,5,83,0,0,2378,2382, + 3,336,168,0,2379,2382,3,288,144,0,2380,2382,3,338,169,0,2381,2375, + 1,0,0,0,2381,2377,1,0,0,0,2381,2379,1,0,0,0,2381,2380,1,0,0,0,2382, + 335,1,0,0,0,2383,2387,3,588,294,0,2384,2387,3,566,283,0,2385,2387, + 3,576,288,0,2386,2383,1,0,0,0,2386,2384,1,0,0,0,2386,2385,1,0,0, + 0,2387,337,1,0,0,0,2388,2389,5,251,0,0,2389,2392,5,173,0,0,2390, + 2392,5,358,0,0,2391,2388,1,0,0,0,2391,2390,1,0,0,0,2392,339,1,0, + 0,0,2393,2395,3,270,135,0,2394,2396,3,278,139,0,2395,2394,1,0,0, + 0,2395,2396,1,0,0,0,2396,341,1,0,0,0,2397,2399,3,270,135,0,2398, + 2400,3,278,139,0,2399,2398,1,0,0,0,2399,2400,1,0,0,0,2400,343,1, + 0,0,0,2401,2402,3,262,131,0,2402,2403,5,396,0,0,2403,2406,3,346, + 173,0,2404,2405,5,47,0,0,2405,2407,5,426,0,0,2406,2404,1,0,0,0,2406, + 2407,1,0,0,0,2407,345,1,0,0,0,2408,2409,3,350,175,0,2409,347,1,0, + 0,0,2410,2415,3,346,173,0,2411,2412,5,397,0,0,2412,2414,3,346,173, + 0,2413,2411,1,0,0,0,2414,2417,1,0,0,0,2415,2413,1,0,0,0,2415,2416, + 1,0,0,0,2416,349,1,0,0,0,2417,2415,1,0,0,0,2418,2424,3,352,176,0, + 2419,2424,3,354,177,0,2420,2424,3,356,178,0,2421,2424,3,358,179, + 0,2422,2424,3,360,180,0,2423,2418,1,0,0,0,2423,2419,1,0,0,0,2423, + 2420,1,0,0,0,2423,2421,1,0,0,0,2423,2422,1,0,0,0,2424,351,1,0,0, + 0,2425,2463,5,340,0,0,2426,2463,5,311,0,0,2427,2463,5,162,0,0,2428, + 2463,5,163,0,0,2429,2463,5,26,0,0,2430,2463,5,28,0,0,2431,2463,5, + 131,0,0,2432,2463,5,264,0,0,2433,2435,5,100,0,0,2434,2436,5,248, + 0,0,2435,2434,1,0,0,0,2435,2436,1,0,0,0,2436,2463,1,0,0,0,2437,2463, + 5,71,0,0,2438,2463,5,72,0,0,2439,2463,5,337,0,0,2440,2463,5,338, + 0,0,2441,2442,5,337,0,0,2442,2443,5,387,0,0,2443,2444,5,188,0,0, + 2444,2445,5,336,0,0,2445,2463,5,394,0,0,2446,2463,5,323,0,0,2447, + 2463,5,27,0,0,2448,2456,3,696,348,0,2449,2450,5,399,0,0,2450,2453, + 5,431,0,0,2451,2452,5,397,0,0,2452,2454,5,431,0,0,2453,2451,1,0, + 0,0,2453,2454,1,0,0,0,2454,2455,1,0,0,0,2455,2457,5,400,0,0,2456, + 2449,1,0,0,0,2456,2457,1,0,0,0,2457,2463,1,0,0,0,2458,2459,7,20, + 0,0,2459,2460,5,399,0,0,2460,2461,5,431,0,0,2461,2463,5,400,0,0, + 2462,2425,1,0,0,0,2462,2426,1,0,0,0,2462,2427,1,0,0,0,2462,2428, + 1,0,0,0,2462,2429,1,0,0,0,2462,2430,1,0,0,0,2462,2431,1,0,0,0,2462, + 2432,1,0,0,0,2462,2433,1,0,0,0,2462,2437,1,0,0,0,2462,2438,1,0,0, + 0,2462,2439,1,0,0,0,2462,2440,1,0,0,0,2462,2441,1,0,0,0,2462,2446, + 1,0,0,0,2462,2447,1,0,0,0,2462,2448,1,0,0,0,2462,2458,1,0,0,0,2463, + 353,1,0,0,0,2464,2465,5,16,0,0,2465,2466,5,409,0,0,2466,2467,3,350, + 175,0,2467,2468,5,411,0,0,2468,355,1,0,0,0,2469,2470,5,324,0,0,2470, + 2471,5,409,0,0,2471,2472,3,252,126,0,2472,2473,5,411,0,0,2473,357, + 1,0,0,0,2474,2475,5,198,0,0,2475,2476,5,409,0,0,2476,2477,3,352, + 176,0,2477,2478,5,397,0,0,2478,2479,3,350,175,0,2479,2480,5,411, + 0,0,2480,359,1,0,0,0,2481,2482,5,357,0,0,2482,2483,5,409,0,0,2483, + 2484,3,348,174,0,2484,2485,5,411,0,0,2485,361,1,0,0,0,2486,2488, + 7,21,0,0,2487,2489,7,22,0,0,2488,2487,1,0,0,0,2488,2489,1,0,0,0, + 2489,363,1,0,0,0,2490,2492,3,368,184,0,2491,2490,1,0,0,0,2491,2492, + 1,0,0,0,2492,2493,1,0,0,0,2493,2494,3,366,183,0,2494,365,1,0,0,0, + 2495,2498,3,372,186,0,2496,2498,3,376,188,0,2497,2495,1,0,0,0,2497, + 2496,1,0,0,0,2498,367,1,0,0,0,2499,2500,5,387,0,0,2500,2505,3,370, + 185,0,2501,2502,5,397,0,0,2502,2504,3,370,185,0,2503,2501,1,0,0, + 0,2504,2507,1,0,0,0,2505,2503,1,0,0,0,2505,2506,1,0,0,0,2506,369, + 1,0,0,0,2507,2505,1,0,0,0,2508,2513,3,654,327,0,2509,2510,5,399, + 0,0,2510,2511,3,254,127,0,2511,2512,5,400,0,0,2512,2514,1,0,0,0, + 2513,2509,1,0,0,0,2513,2514,1,0,0,0,2514,2515,1,0,0,0,2515,2516, + 5,17,0,0,2516,2517,5,399,0,0,2517,2518,3,364,182,0,2518,2519,5,400, + 0,0,2519,371,1,0,0,0,2520,2526,3,374,187,0,2521,2522,3,362,181,0, + 2522,2523,3,374,187,0,2523,2525,1,0,0,0,2524,2521,1,0,0,0,2525,2528, + 1,0,0,0,2526,2524,1,0,0,0,2526,2527,1,0,0,0,2527,373,1,0,0,0,2528, + 2526,1,0,0,0,2529,2530,3,452,226,0,2530,2531,3,386,193,0,2531,2533, + 3,508,254,0,2532,2534,3,466,233,0,2533,2532,1,0,0,0,2533,2534,1, + 0,0,0,2534,2536,1,0,0,0,2535,2537,3,500,250,0,2536,2535,1,0,0,0, + 2536,2537,1,0,0,0,2537,2539,1,0,0,0,2538,2540,3,534,267,0,2539,2538, + 1,0,0,0,2539,2540,1,0,0,0,2540,2542,1,0,0,0,2541,2543,3,542,271, + 0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2546, + 3,526,263,0,2545,2544,1,0,0,0,2545,2546,1,0,0,0,2546,2548,1,0,0, + 0,2547,2549,3,544,272,0,2548,2547,1,0,0,0,2548,2549,1,0,0,0,2549, + 2551,1,0,0,0,2550,2552,3,556,278,0,2551,2550,1,0,0,0,2551,2552,1, + 0,0,0,2552,2554,1,0,0,0,2553,2555,3,560,280,0,2554,2553,1,0,0,0, + 2554,2555,1,0,0,0,2555,2557,1,0,0,0,2556,2558,3,562,281,0,2557,2556, + 1,0,0,0,2557,2558,1,0,0,0,2558,2560,1,0,0,0,2559,2561,3,564,282, + 0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2563,1,0,0,0,2562,2564, + 3,390,195,0,2563,2562,1,0,0,0,2563,2564,1,0,0,0,2564,2601,1,0,0, + 0,2565,2566,3,452,226,0,2566,2568,3,508,254,0,2567,2569,3,466,233, + 0,2568,2567,1,0,0,0,2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570,2572, + 3,500,250,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2574,1,0,0, + 0,2573,2575,3,534,267,0,2574,2573,1,0,0,0,2574,2575,1,0,0,0,2575, + 2577,1,0,0,0,2576,2578,3,542,271,0,2577,2576,1,0,0,0,2577,2578,1, + 0,0,0,2578,2580,1,0,0,0,2579,2581,3,526,263,0,2580,2579,1,0,0,0, + 2580,2581,1,0,0,0,2581,2583,1,0,0,0,2582,2584,3,544,272,0,2583,2582, + 1,0,0,0,2583,2584,1,0,0,0,2584,2586,1,0,0,0,2585,2587,3,556,278, + 0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2589,1,0,0,0,2588,2590, + 3,560,280,0,2589,2588,1,0,0,0,2589,2590,1,0,0,0,2590,2592,1,0,0, + 0,2591,2593,3,562,281,0,2592,2591,1,0,0,0,2592,2593,1,0,0,0,2593, + 2595,1,0,0,0,2594,2596,3,564,282,0,2595,2594,1,0,0,0,2595,2596,1, + 0,0,0,2596,2598,1,0,0,0,2597,2599,3,390,195,0,2598,2597,1,0,0,0, + 2598,2599,1,0,0,0,2599,2601,1,0,0,0,2600,2529,1,0,0,0,2600,2565, + 1,0,0,0,2601,375,1,0,0,0,2602,2603,3,386,193,0,2603,2604,3,380,190, + 0,2604,2607,1,0,0,0,2605,2607,3,380,190,0,2606,2602,1,0,0,0,2606, + 2605,1,0,0,0,2607,377,1,0,0,0,2608,2610,3,508,254,0,2609,2611,3, + 452,226,0,2610,2609,1,0,0,0,2610,2611,1,0,0,0,2611,2613,1,0,0,0, + 2612,2614,3,500,250,0,2613,2612,1,0,0,0,2613,2614,1,0,0,0,2614,2616, + 1,0,0,0,2615,2617,3,534,267,0,2616,2615,1,0,0,0,2616,2617,1,0,0, + 0,2617,2619,1,0,0,0,2618,2620,3,542,271,0,2619,2618,1,0,0,0,2619, + 2620,1,0,0,0,2620,2622,1,0,0,0,2621,2623,3,526,263,0,2622,2621,1, + 0,0,0,2622,2623,1,0,0,0,2623,2625,1,0,0,0,2624,2626,3,544,272,0, + 2625,2624,1,0,0,0,2625,2626,1,0,0,0,2626,2633,1,0,0,0,2627,2628, + 5,399,0,0,2628,2629,3,380,190,0,2629,2630,5,400,0,0,2630,2633,1, + 0,0,0,2631,2633,3,502,251,0,2632,2608,1,0,0,0,2632,2627,1,0,0,0, + 2632,2631,1,0,0,0,2633,379,1,0,0,0,2634,2636,3,378,189,0,2635,2637, + 3,382,191,0,2636,2635,1,0,0,0,2636,2637,1,0,0,0,2637,2639,1,0,0, + 0,2638,2640,3,556,278,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640, + 2642,1,0,0,0,2641,2643,3,560,280,0,2642,2641,1,0,0,0,2642,2643,1, + 0,0,0,2643,2645,1,0,0,0,2644,2646,3,562,281,0,2645,2644,1,0,0,0, + 2645,2646,1,0,0,0,2646,2648,1,0,0,0,2647,2649,3,564,282,0,2648,2647, + 1,0,0,0,2648,2649,1,0,0,0,2649,2651,1,0,0,0,2650,2652,3,390,195, + 0,2651,2650,1,0,0,0,2651,2652,1,0,0,0,2652,381,1,0,0,0,2653,2654, + 3,362,181,0,2654,2655,3,378,189,0,2655,2657,1,0,0,0,2656,2653,1, + 0,0,0,2657,2658,1,0,0,0,2658,2656,1,0,0,0,2658,2659,1,0,0,0,2659, + 383,1,0,0,0,2660,2662,3,368,184,0,2661,2660,1,0,0,0,2661,2662,1, + 0,0,0,2662,2663,1,0,0,0,2663,2664,3,380,190,0,2664,385,1,0,0,0,2665, + 2682,5,161,0,0,2666,2667,5,235,0,0,2667,2669,3,388,194,0,2668,2670, + 3,32,16,0,2669,2668,1,0,0,0,2669,2670,1,0,0,0,2670,2683,1,0,0,0, + 2671,2673,5,166,0,0,2672,2674,5,329,0,0,2673,2672,1,0,0,0,2673,2674, + 1,0,0,0,2674,2675,1,0,0,0,2675,2680,3,640,320,0,2676,2677,5,399, + 0,0,2677,2678,3,254,127,0,2678,2679,5,400,0,0,2679,2681,1,0,0,0, + 2680,2676,1,0,0,0,2680,2681,1,0,0,0,2681,2683,1,0,0,0,2682,2666, + 1,0,0,0,2682,2671,1,0,0,0,2683,387,1,0,0,0,2684,2686,5,188,0,0,2685, + 2684,1,0,0,0,2685,2686,1,0,0,0,2686,2687,1,0,0,0,2687,2688,5,93, + 0,0,2688,2690,5,426,0,0,2689,2691,3,222,111,0,2690,2689,1,0,0,0, + 2690,2691,1,0,0,0,2691,2693,1,0,0,0,2692,2694,3,246,123,0,2693,2692, + 1,0,0,0,2693,2694,1,0,0,0,2694,2698,1,0,0,0,2695,2696,5,329,0,0, + 2696,2698,3,640,320,0,2697,2685,1,0,0,0,2697,2695,1,0,0,0,2698,389, + 1,0,0,0,2699,2708,5,185,0,0,2700,2701,5,431,0,0,2701,2703,5,397, + 0,0,2702,2700,1,0,0,0,2702,2703,1,0,0,0,2703,2704,1,0,0,0,2704,2709, + 5,431,0,0,2705,2706,5,431,0,0,2706,2707,5,223,0,0,2707,2709,5,431, + 0,0,2708,2702,1,0,0,0,2708,2705,1,0,0,0,2709,391,1,0,0,0,2710,2711, + 3,256,128,0,2711,2712,5,405,0,0,2712,2713,3,394,197,0,2713,393,1, + 0,0,0,2714,2717,5,83,0,0,2715,2717,3,606,303,0,2716,2714,1,0,0,0, + 2716,2715,1,0,0,0,2717,395,1,0,0,0,2718,2719,5,304,0,0,2719,2724, + 3,392,196,0,2720,2721,5,397,0,0,2721,2723,3,392,196,0,2722,2720, + 1,0,0,0,2723,2726,1,0,0,0,2724,2722,1,0,0,0,2724,2725,1,0,0,0,2725, + 397,1,0,0,0,2726,2724,1,0,0,0,2727,2728,5,318,0,0,2728,2737,5,344, + 0,0,2729,2734,3,400,200,0,2730,2731,5,397,0,0,2731,2733,3,400,200, + 0,2732,2730,1,0,0,0,2733,2736,1,0,0,0,2734,2732,1,0,0,0,2734,2735, + 1,0,0,0,2735,2738,1,0,0,0,2736,2734,1,0,0,0,2737,2729,1,0,0,0,2737, + 2738,1,0,0,0,2738,2751,1,0,0,0,2739,2741,5,48,0,0,2740,2742,5,389, + 0,0,2741,2740,1,0,0,0,2741,2742,1,0,0,0,2742,2751,1,0,0,0,2743,2745, + 5,289,0,0,2744,2746,5,389,0,0,2745,2744,1,0,0,0,2745,2746,1,0,0, + 0,2746,2751,1,0,0,0,2747,2748,5,304,0,0,2748,2749,5,22,0,0,2749, + 2751,7,23,0,0,2750,2727,1,0,0,0,2750,2739,1,0,0,0,2750,2743,1,0, + 0,0,2750,2747,1,0,0,0,2751,399,1,0,0,0,2752,2753,5,168,0,0,2753, + 2754,5,182,0,0,2754,2758,5,312,0,0,2755,2756,5,261,0,0,2756,2758, + 7,24,0,0,2757,2752,1,0,0,0,2757,2755,1,0,0,0,2758,401,1,0,0,0,2759, + 2762,3,406,203,0,2760,2762,3,408,204,0,2761,2759,1,0,0,0,2761,2760, + 1,0,0,0,2762,2765,1,0,0,0,2763,2761,1,0,0,0,2763,2764,1,0,0,0,2764, + 2767,1,0,0,0,2765,2763,1,0,0,0,2766,2768,3,404,202,0,2767,2766,1, + 0,0,0,2767,2768,1,0,0,0,2768,403,1,0,0,0,2769,2770,5,383,0,0,2770, + 2771,5,216,0,0,2771,2774,5,201,0,0,2772,2773,5,11,0,0,2773,2775, + 3,596,298,0,2774,2772,1,0,0,0,2774,2775,1,0,0,0,2775,2776,1,0,0, + 0,2776,2777,5,335,0,0,2777,2779,5,161,0,0,2778,2780,3,268,134,0, + 2779,2778,1,0,0,0,2779,2780,1,0,0,0,2780,2781,1,0,0,0,2781,2782, + 5,374,0,0,2782,2783,3,552,276,0,2783,405,1,0,0,0,2784,2785,5,383, + 0,0,2785,2786,5,201,0,0,2786,2787,5,11,0,0,2787,2788,3,596,298,0, + 2788,2792,5,335,0,0,2789,2790,5,365,0,0,2790,2793,3,396,198,0,2791, + 2793,5,86,0,0,2792,2789,1,0,0,0,2792,2791,1,0,0,0,2793,407,1,0,0, + 0,2794,2795,5,383,0,0,2795,2796,5,201,0,0,2796,2800,5,335,0,0,2797, + 2798,5,365,0,0,2798,2801,3,396,198,0,2799,2801,5,86,0,0,2800,2797, + 1,0,0,0,2800,2799,1,0,0,0,2801,409,1,0,0,0,2802,2803,5,246,0,0,2803, + 2804,5,426,0,0,2804,411,1,0,0,0,2805,2806,5,352,0,0,2806,2807,5, + 426,0,0,2807,413,1,0,0,0,2808,2809,5,320,0,0,2809,2810,5,426,0,0, + 2810,415,1,0,0,0,2811,2842,5,9,0,0,2812,2813,5,329,0,0,2813,2814, + 3,482,241,0,2814,2815,3,418,209,0,2815,2843,1,0,0,0,2816,2817,5, + 378,0,0,2817,2819,3,486,243,0,2818,2820,5,17,0,0,2819,2818,1,0,0, + 0,2819,2820,1,0,0,0,2820,2821,1,0,0,0,2821,2822,3,422,211,0,2822, + 2843,1,0,0,0,2823,2824,5,202,0,0,2824,2825,5,378,0,0,2825,2829,3, + 486,243,0,2826,2830,3,36,18,0,2827,2830,3,38,19,0,2828,2830,5,265, + 0,0,2829,2826,1,0,0,0,2829,2827,1,0,0,0,2829,2828,1,0,0,0,2830,2843, + 1,0,0,0,2831,2832,3,70,35,0,2832,2833,3,424,212,0,2833,2843,1,0, + 0,0,2834,2835,5,69,0,0,2835,2843,3,426,213,0,2836,2837,5,155,0,0, + 2837,2838,3,654,327,0,2838,2839,5,224,0,0,2839,2840,3,640,320,0, + 2840,2841,5,265,0,0,2841,2843,1,0,0,0,2842,2812,1,0,0,0,2842,2816, + 1,0,0,0,2842,2823,1,0,0,0,2842,2831,1,0,0,0,2842,2834,1,0,0,0,2842, + 2836,1,0,0,0,2843,417,1,0,0,0,2844,2845,5,274,0,0,2845,2846,5,341, + 0,0,2846,2934,3,484,242,0,2847,2848,5,102,0,0,2848,2934,5,239,0, + 0,2849,2934,3,430,215,0,2850,2852,5,4,0,0,2851,2853,3,32,16,0,2852, + 2851,1,0,0,0,2852,2853,1,0,0,0,2853,2858,1,0,0,0,2854,2856,3,642, + 321,0,2855,2857,3,428,214,0,2856,2855,1,0,0,0,2856,2857,1,0,0,0, + 2857,2859,1,0,0,0,2858,2854,1,0,0,0,2859,2860,1,0,0,0,2860,2858, + 1,0,0,0,2860,2861,1,0,0,0,2861,2934,1,0,0,0,2862,2866,5,342,0,0, + 2863,2865,3,642,321,0,2864,2863,1,0,0,0,2865,2868,1,0,0,0,2866,2864, + 1,0,0,0,2866,2867,1,0,0,0,2867,2934,1,0,0,0,2868,2866,1,0,0,0,2869, + 2873,5,15,0,0,2870,2872,3,642,321,0,2871,2870,1,0,0,0,2872,2875, + 1,0,0,0,2873,2871,1,0,0,0,2873,2874,1,0,0,0,2874,2934,1,0,0,0,2875, + 2873,1,0,0,0,2876,2880,5,353,0,0,2877,2879,3,642,321,0,2878,2877, + 1,0,0,0,2879,2882,1,0,0,0,2880,2878,1,0,0,0,2880,2881,1,0,0,0,2881, + 2934,1,0,0,0,2882,2880,1,0,0,0,2883,2884,5,304,0,0,2884,2885,5,332, + 0,0,2885,2934,3,226,113,0,2886,2887,5,363,0,0,2887,2889,5,332,0, + 0,2888,2890,3,30,15,0,2889,2888,1,0,0,0,2889,2890,1,0,0,0,2890,2891, + 1,0,0,0,2891,2934,3,226,113,0,2892,2934,3,210,105,0,2893,2896,5, + 216,0,0,2894,2897,5,310,0,0,2895,2897,3,40,20,0,2896,2894,1,0,0, + 0,2896,2895,1,0,0,0,2897,2934,1,0,0,0,2898,2899,5,113,0,0,2899,2900, + 3,642,321,0,2900,2901,5,387,0,0,2901,2902,5,329,0,0,2902,2903,3, + 482,241,0,2903,2934,1,0,0,0,2904,2905,5,237,0,0,2905,2906,5,45,0, + 0,2906,2907,5,399,0,0,2907,2908,3,314,157,0,2908,2909,5,400,0,0, + 2909,2934,1,0,0,0,2910,2911,5,101,0,0,2911,2912,5,55,0,0,2912,2934, + 3,654,327,0,2913,2916,5,4,0,0,2914,2917,3,292,146,0,2915,2917,3, + 282,141,0,2916,2914,1,0,0,0,2916,2915,1,0,0,0,2917,2934,1,0,0,0, + 2918,2920,3,642,321,0,2919,2918,1,0,0,0,2919,2920,1,0,0,0,2920,2921, + 1,0,0,0,2921,2934,3,420,210,0,2922,2923,5,304,0,0,2923,2924,5,236, + 0,0,2924,2934,3,126,63,0,2925,2926,5,304,0,0,2926,2927,5,237,0,0, + 2927,2928,5,316,0,0,2928,2929,5,399,0,0,2929,2930,3,204,102,0,2930, + 2931,5,400,0,0,2931,2934,1,0,0,0,2932,2934,3,434,217,0,2933,2844, + 1,0,0,0,2933,2847,1,0,0,0,2933,2849,1,0,0,0,2933,2850,1,0,0,0,2933, + 2862,1,0,0,0,2933,2869,1,0,0,0,2933,2876,1,0,0,0,2933,2883,1,0,0, + 0,2933,2886,1,0,0,0,2933,2892,1,0,0,0,2933,2893,1,0,0,0,2933,2898, + 1,0,0,0,2933,2904,1,0,0,0,2933,2910,1,0,0,0,2933,2913,1,0,0,0,2933, + 2919,1,0,0,0,2933,2922,1,0,0,0,2933,2925,1,0,0,0,2933,2932,1,0,0, + 0,2934,419,1,0,0,0,2935,2936,5,304,0,0,2936,2937,5,129,0,0,2937, + 3068,3,436,218,0,2938,2939,5,304,0,0,2939,2940,5,189,0,0,2940,3068, + 5,426,0,0,2941,3068,5,53,0,0,2942,2952,5,304,0,0,2943,2944,5,301, + 0,0,2944,2948,5,426,0,0,2945,2946,5,387,0,0,2946,2947,5,302,0,0, + 2947,2949,3,226,113,0,2948,2945,1,0,0,0,2948,2949,1,0,0,0,2949,2953, + 1,0,0,0,2950,2951,5,302,0,0,2951,2953,3,226,113,0,2952,2943,1,0, + 0,0,2952,2950,1,0,0,0,2953,3068,1,0,0,0,2954,2955,5,363,0,0,2955, + 2956,5,302,0,0,2956,3068,3,226,113,0,2957,2958,5,274,0,0,2958,2959, + 5,341,0,0,2959,3068,3,642,321,0,2960,2961,5,166,0,0,2961,2962,5, + 431,0,0,2962,3068,5,31,0,0,2963,2964,5,304,0,0,2964,2965,5,310,0, + 0,2965,2966,5,189,0,0,2966,2967,5,399,0,0,2967,2972,3,432,216,0, + 2968,2969,5,397,0,0,2969,2971,3,432,216,0,2970,2968,1,0,0,0,2971, + 2974,1,0,0,0,2972,2970,1,0,0,0,2972,2973,1,0,0,0,2973,2975,1,0,0, + 0,2974,2972,1,0,0,0,2975,2976,5,400,0,0,2976,3068,1,0,0,0,2977,2978, + 5,216,0,0,2978,3068,7,25,0,0,2979,3068,3,208,104,0,2980,2981,5,49, + 0,0,2981,2984,5,426,0,0,2982,2983,5,11,0,0,2983,2985,5,380,0,0,2984, + 2982,1,0,0,0,2984,2985,1,0,0,0,2985,2990,1,0,0,0,2986,2987,5,42, + 0,0,2987,2988,5,166,0,0,2988,2989,5,431,0,0,2989,2991,5,31,0,0,2990, + 2986,1,0,0,0,2990,2991,1,0,0,0,2991,2993,1,0,0,0,2992,2994,3,556, + 278,0,2993,2992,1,0,0,0,2993,2994,1,0,0,0,2994,2996,1,0,0,0,2995, + 2997,3,410,205,0,2996,2995,1,0,0,0,2996,2997,1,0,0,0,2997,3002,1, + 0,0,0,2998,2999,5,387,0,0,2999,3000,5,235,0,0,3000,3001,5,332,0, + 0,3001,3003,3,226,113,0,3002,2998,1,0,0,0,3002,3003,1,0,0,0,3003, + 3068,1,0,0,0,3004,3005,5,365,0,0,3005,3006,5,319,0,0,3006,3008,5, + 134,0,0,3007,3009,5,45,0,0,3008,3007,1,0,0,0,3008,3009,1,0,0,0,3009, + 3010,1,0,0,0,3010,3011,3,256,128,0,3011,3012,5,304,0,0,3012,3015, + 3,226,113,0,3013,3014,5,47,0,0,3014,3016,5,426,0,0,3015,3013,1,0, + 0,0,3015,3016,1,0,0,0,3016,3068,1,0,0,0,3017,3018,5,365,0,0,3018, + 3019,5,319,0,0,3019,3020,5,304,0,0,3020,3068,3,226,113,0,3021,3023, + 5,38,0,0,3022,3024,5,45,0,0,3023,3022,1,0,0,0,3023,3024,1,0,0,0, + 3024,3025,1,0,0,0,3025,3026,3,256,128,0,3026,3027,3,262,131,0,3027, + 3029,3,346,173,0,3028,3030,3,328,164,0,3029,3028,1,0,0,0,3029,3030, + 1,0,0,0,3030,3033,1,0,0,0,3031,3032,5,47,0,0,3032,3034,5,426,0,0, + 3033,3031,1,0,0,0,3033,3034,1,0,0,0,3034,3038,1,0,0,0,3035,3039, + 5,130,0,0,3036,3037,5,6,0,0,3037,3039,3,654,327,0,3038,3035,1,0, + 0,0,3038,3036,1,0,0,0,3038,3039,1,0,0,0,3039,3041,1,0,0,0,3040,3042, + 3,34,17,0,3041,3040,1,0,0,0,3041,3042,1,0,0,0,3042,3068,1,0,0,0, + 3043,3046,5,4,0,0,3044,3046,5,278,0,0,3045,3043,1,0,0,0,3045,3044, + 1,0,0,0,3046,3047,1,0,0,0,3047,3048,5,46,0,0,3048,3049,5,399,0,0, + 3049,3050,3,248,124,0,3050,3052,5,400,0,0,3051,3053,3,34,17,0,3052, + 3051,1,0,0,0,3052,3053,1,0,0,0,3053,3068,1,0,0,0,3054,3055,5,365, + 0,0,3055,3057,5,46,0,0,3056,3058,3,34,17,0,3057,3056,1,0,0,0,3057, + 3058,1,0,0,0,3058,3068,1,0,0,0,3059,3065,3,272,136,0,3060,3062,5, + 218,0,0,3061,3063,5,34,0,0,3062,3061,1,0,0,0,3062,3063,1,0,0,0,3063, + 3066,1,0,0,0,3064,3066,5,222,0,0,3065,3060,1,0,0,0,3065,3064,1,0, + 0,0,3066,3068,1,0,0,0,3067,2935,1,0,0,0,3067,2938,1,0,0,0,3067,2941, + 1,0,0,0,3067,2942,1,0,0,0,3067,2954,1,0,0,0,3067,2957,1,0,0,0,3067, + 2960,1,0,0,0,3067,2963,1,0,0,0,3067,2977,1,0,0,0,3067,2979,1,0,0, + 0,3067,2980,1,0,0,0,3067,3004,1,0,0,0,3067,3017,1,0,0,0,3067,3021, + 1,0,0,0,3067,3045,1,0,0,0,3067,3054,1,0,0,0,3067,3059,1,0,0,0,3068, + 421,1,0,0,0,3069,3070,5,304,0,0,3070,3071,5,332,0,0,3071,3096,3, + 226,113,0,3072,3073,5,363,0,0,3073,3075,5,332,0,0,3074,3076,3,30, + 15,0,3075,3074,1,0,0,0,3075,3076,1,0,0,0,3076,3077,1,0,0,0,3077, + 3096,3,226,113,0,3078,3079,5,274,0,0,3079,3080,5,341,0,0,3080,3096, + 3,484,242,0,3081,3083,5,4,0,0,3082,3084,3,32,16,0,3083,3082,1,0, + 0,0,3083,3084,1,0,0,0,3084,3089,1,0,0,0,3085,3087,3,642,321,0,3086, + 3088,3,428,214,0,3087,3086,1,0,0,0,3087,3088,1,0,0,0,3088,3090,1, + 0,0,0,3089,3085,1,0,0,0,3090,3091,1,0,0,0,3091,3089,1,0,0,0,3091, + 3092,1,0,0,0,3092,3096,1,0,0,0,3093,3096,3,430,215,0,3094,3096,3, + 384,192,0,3095,3069,1,0,0,0,3095,3072,1,0,0,0,3095,3078,1,0,0,0, + 3095,3081,1,0,0,0,3095,3093,1,0,0,0,3095,3094,1,0,0,0,3096,423,1, + 0,0,0,3097,3098,3,476,238,0,3098,3099,5,304,0,0,3099,3100,5,76,0, + 0,3100,3101,3,230,115,0,3101,3113,1,0,0,0,3102,3103,3,476,238,0, + 3103,3104,5,304,0,0,3104,3105,5,236,0,0,3105,3106,3,128,64,0,3106, + 3113,1,0,0,0,3107,3108,3,476,238,0,3108,3109,5,304,0,0,3109,3110, + 7,26,0,0,3110,3111,5,426,0,0,3111,3113,1,0,0,0,3112,3097,1,0,0,0, + 3112,3102,1,0,0,0,3112,3107,1,0,0,0,3113,425,1,0,0,0,3114,3115,3, + 476,238,0,3115,3116,5,304,0,0,3116,3117,5,77,0,0,3117,3118,3,230, + 115,0,3118,3130,1,0,0,0,3119,3120,3,476,238,0,3120,3121,5,304,0, + 0,3121,3122,5,236,0,0,3122,3123,3,128,64,0,3123,3130,1,0,0,0,3124, + 3125,3,476,238,0,3125,3126,5,304,0,0,3126,3127,5,367,0,0,3127,3128, + 5,426,0,0,3128,3130,1,0,0,0,3129,3114,1,0,0,0,3129,3119,1,0,0,0, + 3129,3124,1,0,0,0,3130,427,1,0,0,0,3131,3132,5,189,0,0,3132,3133, + 5,426,0,0,3133,429,1,0,0,0,3134,3136,5,101,0,0,3135,3137,3,30,15, + 0,3136,3135,1,0,0,0,3136,3137,1,0,0,0,3137,3138,1,0,0,0,3138,3139, + 5,237,0,0,3139,3145,3,646,323,0,3140,3141,5,397,0,0,3141,3142,5, + 237,0,0,3142,3144,3,646,323,0,3143,3140,1,0,0,0,3144,3147,1,0,0, + 0,3145,3143,1,0,0,0,3145,3146,1,0,0,0,3146,3150,1,0,0,0,3147,3145, + 1,0,0,0,3148,3149,5,152,0,0,3149,3151,5,254,0,0,3150,3148,1,0,0, + 0,3150,3151,1,0,0,0,3151,3153,1,0,0,0,3152,3154,5,255,0,0,3153,3152, + 1,0,0,0,3153,3154,1,0,0,0,3154,3156,1,0,0,0,3155,3157,3,14,7,0,3156, + 3155,1,0,0,0,3156,3157,1,0,0,0,3157,431,1,0,0,0,3158,3161,3,588, + 294,0,3159,3161,3,298,149,0,3160,3158,1,0,0,0,3160,3159,1,0,0,0, + 3161,3162,1,0,0,0,3162,3163,5,405,0,0,3163,3164,5,426,0,0,3164,433, + 1,0,0,0,3165,3175,5,115,0,0,3166,3167,5,289,0,0,3167,3168,5,399, + 0,0,3168,3176,7,27,0,0,3169,3170,5,118,0,0,3170,3171,5,399,0,0,3171, + 3176,5,426,0,0,3172,3173,5,306,0,0,3173,3174,5,399,0,0,3174,3176, + 5,431,0,0,3175,3166,1,0,0,0,3175,3169,1,0,0,0,3175,3172,1,0,0,0, + 3176,3177,1,0,0,0,3177,3178,5,400,0,0,3178,435,1,0,0,0,3179,3180, + 5,160,0,0,3180,3181,5,426,0,0,3181,3182,5,233,0,0,3182,3183,5,426, + 0,0,3183,3184,5,301,0,0,3184,3189,5,426,0,0,3185,3186,5,159,0,0, + 3186,3187,5,426,0,0,3187,3188,5,232,0,0,3188,3190,5,426,0,0,3189, + 3185,1,0,0,0,3189,3190,1,0,0,0,3190,3193,1,0,0,0,3191,3193,3,654, + 327,0,3192,3179,1,0,0,0,3192,3191,1,0,0,0,3193,437,1,0,0,0,3194, + 3195,5,184,0,0,3195,3204,5,128,0,0,3196,3197,5,184,0,0,3197,3198, + 5,128,0,0,3198,3199,3,654,327,0,3199,3200,5,426,0,0,3200,3204,1, + 0,0,0,3201,3202,5,184,0,0,3202,3204,3,482,241,0,3203,3194,1,0,0, + 0,3203,3196,1,0,0,0,3203,3201,1,0,0,0,3204,439,1,0,0,0,3205,3207, + 5,58,0,0,3206,3208,5,333,0,0,3207,3206,1,0,0,0,3207,3208,1,0,0,0, + 3208,3210,1,0,0,0,3209,3211,5,345,0,0,3210,3209,1,0,0,0,3210,3211, + 1,0,0,0,3211,3213,1,0,0,0,3212,3214,5,123,0,0,3213,3212,1,0,0,0, + 3213,3214,1,0,0,0,3214,3215,1,0,0,0,3215,3217,5,329,0,0,3216,3218, + 3,32,16,0,3217,3216,1,0,0,0,3217,3218,1,0,0,0,3218,3219,1,0,0,0, + 3219,3276,3,484,242,0,3220,3222,3,438,219,0,3221,3223,3,200,100, + 0,3222,3221,1,0,0,0,3222,3223,1,0,0,0,3223,3225,1,0,0,0,3224,3226, + 3,222,111,0,3225,3224,1,0,0,0,3225,3226,1,0,0,0,3226,3228,1,0,0, + 0,3227,3229,3,246,123,0,3228,3227,1,0,0,0,3228,3229,1,0,0,0,3229, + 3231,1,0,0,0,3230,3232,3,428,214,0,3231,3230,1,0,0,0,3231,3232,1, + 0,0,0,3232,3234,1,0,0,0,3233,3235,3,224,112,0,3234,3233,1,0,0,0, + 3234,3235,1,0,0,0,3235,3237,1,0,0,0,3236,3238,3,198,99,0,3237,3236, + 1,0,0,0,3237,3238,1,0,0,0,3238,3277,1,0,0,0,3239,3240,5,399,0,0, + 3240,3241,3,250,125,0,3241,3242,5,400,0,0,3242,3244,1,0,0,0,3243, + 3239,1,0,0,0,3243,3244,1,0,0,0,3244,3246,1,0,0,0,3245,3247,3,196, + 98,0,3246,3245,1,0,0,0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248, + 3250,3,200,100,0,3249,3248,1,0,0,0,3249,3250,1,0,0,0,3250,3252,1, + 0,0,0,3251,3253,3,208,104,0,3252,3251,1,0,0,0,3252,3253,1,0,0,0, + 3253,3255,1,0,0,0,3254,3256,3,210,105,0,3255,3254,1,0,0,0,3255,3256, + 1,0,0,0,3256,3258,1,0,0,0,3257,3259,3,222,111,0,3258,3257,1,0,0, + 0,3258,3259,1,0,0,0,3259,3261,1,0,0,0,3260,3262,3,246,123,0,3261, + 3260,1,0,0,0,3261,3262,1,0,0,0,3262,3264,1,0,0,0,3263,3265,3,428, + 214,0,3264,3263,1,0,0,0,3264,3265,1,0,0,0,3265,3267,1,0,0,0,3266, + 3268,3,224,112,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268,3270,1, + 0,0,0,3269,3271,3,198,99,0,3270,3269,1,0,0,0,3270,3271,1,0,0,0,3271, + 3274,1,0,0,0,3272,3273,5,17,0,0,3273,3275,3,384,192,0,3274,3272, + 1,0,0,0,3274,3275,1,0,0,0,3275,3277,1,0,0,0,3276,3220,1,0,0,0,3276, + 3243,1,0,0,0,3277,3341,1,0,0,0,3278,3279,5,58,0,0,3279,3280,5,195, + 0,0,3280,3282,5,329,0,0,3281,3283,3,32,16,0,3282,3281,1,0,0,0,3282, + 3283,1,0,0,0,3283,3284,1,0,0,0,3284,3338,3,484,242,0,3285,3287,3, + 438,219,0,3286,3288,3,222,111,0,3287,3286,1,0,0,0,3287,3288,1,0, + 0,0,3288,3290,1,0,0,0,3289,3291,3,246,123,0,3290,3289,1,0,0,0,3290, + 3291,1,0,0,0,3291,3293,1,0,0,0,3292,3294,3,428,214,0,3293,3292,1, + 0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0,0,3295,3297,3,224,112,0, + 3296,3295,1,0,0,0,3296,3297,1,0,0,0,3297,3299,1,0,0,0,3298,3300, + 3,198,99,0,3299,3298,1,0,0,0,3299,3300,1,0,0,0,3300,3339,1,0,0,0, + 3301,3302,5,399,0,0,3302,3303,3,250,125,0,3303,3304,5,400,0,0,3304, + 3306,1,0,0,0,3305,3301,1,0,0,0,3305,3306,1,0,0,0,3306,3308,1,0,0, + 0,3307,3309,3,196,98,0,3308,3307,1,0,0,0,3308,3309,1,0,0,0,3309, + 3311,1,0,0,0,3310,3312,3,200,100,0,3311,3310,1,0,0,0,3311,3312,1, + 0,0,0,3312,3314,1,0,0,0,3313,3315,3,208,104,0,3314,3313,1,0,0,0, + 3314,3315,1,0,0,0,3315,3317,1,0,0,0,3316,3318,3,210,105,0,3317,3316, + 1,0,0,0,3317,3318,1,0,0,0,3318,3320,1,0,0,0,3319,3321,3,222,111, + 0,3320,3319,1,0,0,0,3320,3321,1,0,0,0,3321,3323,1,0,0,0,3322,3324, + 3,246,123,0,3323,3322,1,0,0,0,3323,3324,1,0,0,0,3324,3326,1,0,0, + 0,3325,3327,3,428,214,0,3326,3325,1,0,0,0,3326,3327,1,0,0,0,3327, + 3329,1,0,0,0,3328,3330,3,224,112,0,3329,3328,1,0,0,0,3329,3330,1, + 0,0,0,3330,3332,1,0,0,0,3331,3333,3,198,99,0,3332,3331,1,0,0,0,3332, + 3333,1,0,0,0,3333,3336,1,0,0,0,3334,3335,5,17,0,0,3335,3337,3,384, + 192,0,3336,3334,1,0,0,0,3336,3337,1,0,0,0,3337,3339,1,0,0,0,3338, + 3285,1,0,0,0,3338,3305,1,0,0,0,3339,3341,1,0,0,0,3340,3205,1,0,0, + 0,3340,3278,1,0,0,0,3341,441,1,0,0,0,3342,3343,5,58,0,0,3343,3345, + 5,69,0,0,3344,3346,3,32,16,0,3345,3344,1,0,0,0,3345,3346,1,0,0,0, + 3346,3347,1,0,0,0,3347,3350,3,654,327,0,3348,3349,5,352,0,0,3349, + 3351,5,426,0,0,3350,3348,1,0,0,0,3350,3351,1,0,0,0,3351,3354,1,0, + 0,0,3352,3353,5,367,0,0,3353,3355,5,426,0,0,3354,3352,1,0,0,0,3354, + 3355,1,0,0,0,3355,3358,1,0,0,0,3356,3357,5,47,0,0,3357,3359,5,426, + 0,0,3358,3356,1,0,0,0,3358,3359,1,0,0,0,3359,3363,1,0,0,0,3360,3361, + 5,387,0,0,3361,3362,5,77,0,0,3362,3364,3,230,115,0,3363,3360,1,0, + 0,0,3363,3364,1,0,0,0,3364,443,1,0,0,0,3365,3366,5,101,0,0,3366, + 3368,5,69,0,0,3367,3369,3,30,15,0,3368,3367,1,0,0,0,3368,3369,1, + 0,0,0,3369,3370,1,0,0,0,3370,3371,3,654,327,0,3371,445,1,0,0,0,3372, + 3373,3,654,327,0,3373,3374,5,395,0,0,3374,3376,1,0,0,0,3375,3372, + 1,0,0,0,3376,3379,1,0,0,0,3377,3375,1,0,0,0,3377,3378,1,0,0,0,3378, + 3380,1,0,0,0,3379,3377,1,0,0,0,3380,3381,5,415,0,0,3381,447,1,0, + 0,0,3382,3387,3,596,298,0,3383,3384,5,397,0,0,3384,3386,3,596,298, + 0,3385,3383,1,0,0,0,3386,3389,1,0,0,0,3387,3385,1,0,0,0,3387,3388, + 1,0,0,0,3388,449,1,0,0,0,3389,3387,1,0,0,0,3390,3395,3,654,327,0, + 3391,3392,5,397,0,0,3392,3394,3,654,327,0,3393,3391,1,0,0,0,3394, + 3397,1,0,0,0,3395,3393,1,0,0,0,3395,3396,1,0,0,0,3396,451,1,0,0, + 0,3397,3395,1,0,0,0,3398,3399,5,139,0,0,3399,3400,3,454,227,0,3400, + 453,1,0,0,0,3401,3402,5,359,0,0,3402,3405,3,462,231,0,3403,3404, + 5,397,0,0,3404,3406,3,462,231,0,3405,3403,1,0,0,0,3406,3407,1,0, + 0,0,3407,3405,1,0,0,0,3407,3408,1,0,0,0,3408,3411,1,0,0,0,3409,3411, + 3,458,229,0,3410,3401,1,0,0,0,3410,3409,1,0,0,0,3411,455,1,0,0,0, + 3412,3416,3,472,236,0,3413,3415,3,466,233,0,3414,3413,1,0,0,0,3415, + 3418,1,0,0,0,3416,3414,1,0,0,0,3416,3417,1,0,0,0,3417,3445,1,0,0, + 0,3418,3416,1,0,0,0,3419,3423,3,506,253,0,3420,3422,3,466,233,0, + 3421,3420,1,0,0,0,3422,3425,1,0,0,0,3423,3421,1,0,0,0,3423,3424, + 1,0,0,0,3424,3445,1,0,0,0,3425,3423,1,0,0,0,3426,3430,3,490,245, + 0,3427,3429,3,466,233,0,3428,3427,1,0,0,0,3429,3432,1,0,0,0,3430, + 3428,1,0,0,0,3430,3431,1,0,0,0,3431,3445,1,0,0,0,3432,3430,1,0,0, + 0,3433,3437,3,496,248,0,3434,3436,3,466,233,0,3435,3434,1,0,0,0, + 3436,3439,1,0,0,0,3437,3435,1,0,0,0,3437,3438,1,0,0,0,3438,3445, + 1,0,0,0,3439,3437,1,0,0,0,3440,3441,5,399,0,0,3441,3442,3,458,229, + 0,3442,3443,5,400,0,0,3443,3445,1,0,0,0,3444,3412,1,0,0,0,3444,3419, + 1,0,0,0,3444,3426,1,0,0,0,3444,3433,1,0,0,0,3444,3440,1,0,0,0,3445, + 457,1,0,0,0,3446,3464,3,456,228,0,3447,3448,3,464,232,0,3448,3460, + 3,460,230,0,3449,3456,5,224,0,0,3450,3457,3,596,298,0,3451,3454, + 3,260,130,0,3452,3453,5,405,0,0,3453,3455,3,260,130,0,3454,3452, + 1,0,0,0,3454,3455,1,0,0,0,3455,3457,1,0,0,0,3456,3450,1,0,0,0,3456, + 3451,1,0,0,0,3457,3461,1,0,0,0,3458,3459,5,370,0,0,3459,3461,3,268, + 134,0,3460,3449,1,0,0,0,3460,3458,1,0,0,0,3460,3461,1,0,0,0,3461, + 3463,1,0,0,0,3462,3447,1,0,0,0,3463,3466,1,0,0,0,3464,3462,1,0,0, + 0,3464,3465,1,0,0,0,3465,459,1,0,0,0,3466,3464,1,0,0,0,3467,3472, + 3,472,236,0,3468,3472,3,506,253,0,3469,3472,3,490,245,0,3470,3472, + 3,496,248,0,3471,3467,1,0,0,0,3471,3468,1,0,0,0,3471,3469,1,0,0, + 0,3471,3470,1,0,0,0,3472,3476,1,0,0,0,3473,3475,3,466,233,0,3474, + 3473,1,0,0,0,3475,3478,1,0,0,0,3476,3474,1,0,0,0,3476,3477,1,0,0, + 0,3477,461,1,0,0,0,3478,3476,1,0,0,0,3479,3481,5,250,0,0,3480,3479, + 1,0,0,0,3480,3481,1,0,0,0,3481,3482,1,0,0,0,3482,3484,3,480,240, + 0,3483,3485,3,470,235,0,3484,3483,1,0,0,0,3484,3485,1,0,0,0,3485, + 3490,1,0,0,0,3486,3488,5,17,0,0,3487,3486,1,0,0,0,3487,3488,1,0, + 0,0,3488,3489,1,0,0,0,3489,3491,3,654,327,0,3490,3487,1,0,0,0,3490, + 3491,1,0,0,0,3491,3492,1,0,0,0,3492,3493,5,399,0,0,3493,3494,3,448, + 224,0,3494,3495,5,400,0,0,3495,463,1,0,0,0,3496,3511,5,397,0,0,3497, + 3508,5,157,0,0,3498,3508,5,60,0,0,3499,3501,7,28,0,0,3500,3502,5, + 231,0,0,3501,3500,1,0,0,0,3501,3502,1,0,0,0,3502,3508,1,0,0,0,3503, + 3505,5,180,0,0,3504,3506,7,29,0,0,3505,3504,1,0,0,0,3505,3506,1, + 0,0,0,3506,3508,1,0,0,0,3507,3497,1,0,0,0,3507,3498,1,0,0,0,3507, + 3499,1,0,0,0,3507,3503,1,0,0,0,3507,3508,1,0,0,0,3508,3509,1,0,0, + 0,3509,3511,5,171,0,0,3510,3496,1,0,0,0,3510,3507,1,0,0,0,3511,465, + 1,0,0,0,3512,3513,5,178,0,0,3513,3514,5,378,0,0,3514,3515,5,231, + 0,0,3515,3516,3,566,283,0,3516,3526,3,468,234,0,3517,3518,5,17,0, + 0,3518,3523,3,654,327,0,3519,3520,5,397,0,0,3520,3522,3,654,327, + 0,3521,3519,1,0,0,0,3522,3525,1,0,0,0,3523,3521,1,0,0,0,3523,3524, + 1,0,0,0,3524,3527,1,0,0,0,3525,3523,1,0,0,0,3526,3517,1,0,0,0,3526, + 3527,1,0,0,0,3527,3570,1,0,0,0,3528,3530,5,397,0,0,3529,3528,1,0, + 0,0,3529,3530,1,0,0,0,3530,3531,1,0,0,0,3531,3567,5,178,0,0,3532, + 3533,5,378,0,0,3533,3534,3,566,283,0,3534,3544,3,468,234,0,3535, + 3536,5,17,0,0,3536,3541,3,654,327,0,3537,3538,5,397,0,0,3538,3540, + 3,654,327,0,3539,3537,1,0,0,0,3540,3543,1,0,0,0,3541,3539,1,0,0, + 0,3541,3542,1,0,0,0,3542,3545,1,0,0,0,3543,3541,1,0,0,0,3544,3535, + 1,0,0,0,3544,3545,1,0,0,0,3545,3568,1,0,0,0,3546,3547,5,329,0,0, + 3547,3548,5,399,0,0,3548,3549,3,502,251,0,3549,3551,5,400,0,0,3550, + 3552,5,17,0,0,3551,3550,1,0,0,0,3551,3552,1,0,0,0,3552,3553,1,0, + 0,0,3553,3565,3,468,234,0,3554,3555,5,399,0,0,3555,3560,3,654,327, + 0,3556,3557,5,397,0,0,3557,3559,3,654,327,0,3558,3556,1,0,0,0,3559, + 3562,1,0,0,0,3560,3558,1,0,0,0,3560,3561,1,0,0,0,3561,3563,1,0,0, + 0,3562,3560,1,0,0,0,3563,3564,5,400,0,0,3564,3566,1,0,0,0,3565,3554, + 1,0,0,0,3565,3566,1,0,0,0,3566,3568,1,0,0,0,3567,3532,1,0,0,0,3567, + 3546,1,0,0,0,3568,3570,1,0,0,0,3569,3512,1,0,0,0,3569,3529,1,0,0, + 0,3570,467,1,0,0,0,3571,3572,3,654,327,0,3572,469,1,0,0,0,3573,3574, + 5,331,0,0,3574,3575,5,399,0,0,3575,3576,5,30,0,0,3576,3577,5,431, + 0,0,3577,3578,5,230,0,0,3578,3579,5,221,0,0,3579,3589,5,431,0,0, + 3580,3581,5,224,0,0,3581,3586,3,596,298,0,3582,3583,5,397,0,0,3583, + 3585,3,596,298,0,3584,3582,1,0,0,0,3585,3588,1,0,0,0,3586,3584,1, + 0,0,0,3586,3587,1,0,0,0,3587,3590,1,0,0,0,3588,3586,1,0,0,0,3589, + 3580,1,0,0,0,3589,3590,1,0,0,0,3590,3591,1,0,0,0,3591,3601,5,400, + 0,0,3592,3593,5,331,0,0,3593,3597,5,399,0,0,3594,3595,5,431,0,0, + 3595,3598,7,30,0,0,3596,3598,5,430,0,0,3597,3594,1,0,0,0,3597,3596, + 1,0,0,0,3598,3599,1,0,0,0,3599,3601,5,400,0,0,3600,3573,1,0,0,0, + 3600,3592,1,0,0,0,3601,471,1,0,0,0,3602,3604,3,480,240,0,3603,3605, + 3,226,113,0,3604,3603,1,0,0,0,3604,3605,1,0,0,0,3605,3607,1,0,0, + 0,3606,3608,3,470,235,0,3607,3606,1,0,0,0,3607,3608,1,0,0,0,3608, + 3610,1,0,0,0,3609,3611,3,474,237,0,3610,3609,1,0,0,0,3610,3611,1, + 0,0,0,3611,3616,1,0,0,0,3612,3614,5,17,0,0,3613,3612,1,0,0,0,3613, + 3614,1,0,0,0,3614,3615,1,0,0,0,3615,3617,3,654,327,0,3616,3613,1, + 0,0,0,3616,3617,1,0,0,0,3617,473,1,0,0,0,3618,3628,5,134,0,0,3619, + 3620,5,327,0,0,3620,3621,5,17,0,0,3621,3622,5,221,0,0,3622,3629, + 3,596,298,0,3623,3624,5,134,0,0,3624,3625,5,328,0,0,3625,3626,5, + 17,0,0,3626,3627,5,221,0,0,3627,3629,5,431,0,0,3628,3619,1,0,0,0, + 3628,3623,1,0,0,0,3629,475,1,0,0,0,3630,3631,3,654,327,0,3631,477, + 1,0,0,0,3632,3633,3,654,327,0,3633,479,1,0,0,0,3634,3637,3,482,241, + 0,3635,3637,3,486,243,0,3636,3634,1,0,0,0,3636,3635,1,0,0,0,3637, + 481,1,0,0,0,3638,3639,3,654,327,0,3639,3640,5,395,0,0,3640,3643, + 3,654,327,0,3641,3642,5,395,0,0,3642,3644,3,654,327,0,3643,3641, + 1,0,0,0,3643,3644,1,0,0,0,3644,3647,1,0,0,0,3645,3647,3,654,327, + 0,3646,3638,1,0,0,0,3646,3645,1,0,0,0,3647,483,1,0,0,0,3648,3649, + 3,654,327,0,3649,3650,5,395,0,0,3650,3653,3,654,327,0,3651,3652, + 5,395,0,0,3652,3654,3,654,327,0,3653,3651,1,0,0,0,3653,3654,1,0, + 0,0,3654,3657,1,0,0,0,3655,3657,3,654,327,0,3656,3648,1,0,0,0,3656, + 3655,1,0,0,0,3657,485,1,0,0,0,3658,3659,3,654,327,0,3659,3660,5, + 395,0,0,3660,3662,1,0,0,0,3661,3658,1,0,0,0,3661,3662,1,0,0,0,3662, + 3663,1,0,0,0,3663,3664,3,654,327,0,3664,487,1,0,0,0,3665,3666,3, + 654,327,0,3666,3667,5,395,0,0,3667,3669,1,0,0,0,3668,3665,1,0,0, + 0,3668,3669,1,0,0,0,3669,3670,1,0,0,0,3670,3671,3,654,327,0,3671, + 489,1,0,0,0,3672,3673,5,399,0,0,3673,3674,3,364,182,0,3674,3676, + 5,400,0,0,3675,3677,5,17,0,0,3676,3675,1,0,0,0,3676,3677,1,0,0,0, + 3677,3678,1,0,0,0,3678,3679,3,654,327,0,3679,491,1,0,0,0,3680,3682, + 3,558,279,0,3681,3683,3,556,278,0,3682,3681,1,0,0,0,3682,3683,1, + 0,0,0,3683,3692,1,0,0,0,3684,3692,3,556,278,0,3685,3687,3,562,281, + 0,3686,3688,3,564,282,0,3687,3686,1,0,0,0,3687,3688,1,0,0,0,3688, + 3692,1,0,0,0,3689,3692,3,564,282,0,3690,3692,3,560,280,0,3691,3680, + 1,0,0,0,3691,3684,1,0,0,0,3691,3685,1,0,0,0,3691,3689,1,0,0,0,3691, + 3690,1,0,0,0,3692,493,1,0,0,0,3693,3697,3,490,245,0,3694,3697,3, + 472,236,0,3695,3697,3,496,248,0,3696,3693,1,0,0,0,3696,3694,1,0, + 0,0,3696,3695,1,0,0,0,3697,495,1,0,0,0,3698,3700,3,498,249,0,3699, + 3701,3,654,327,0,3700,3699,1,0,0,0,3700,3701,1,0,0,0,3701,497,1, + 0,0,0,3702,3703,3,654,327,0,3703,3704,5,399,0,0,3704,3705,5,224, + 0,0,3705,3707,3,494,247,0,3706,3708,3,492,246,0,3707,3706,1,0,0, + 0,3707,3708,1,0,0,0,3708,3724,1,0,0,0,3709,3710,5,432,0,0,3710,3711, + 5,399,0,0,3711,3712,3,596,298,0,3712,3721,5,400,0,0,3713,3714,5, + 397,0,0,3714,3715,5,432,0,0,3715,3716,5,399,0,0,3716,3717,3,596, + 298,0,3717,3718,5,400,0,0,3718,3720,1,0,0,0,3719,3713,1,0,0,0,3720, + 3723,1,0,0,0,3721,3719,1,0,0,0,3721,3722,1,0,0,0,3722,3725,1,0,0, + 0,3723,3721,1,0,0,0,3724,3709,1,0,0,0,3724,3725,1,0,0,0,3725,3726, + 1,0,0,0,3726,3727,5,400,0,0,3727,499,1,0,0,0,3728,3731,5,384,0,0, + 3729,3732,3,596,298,0,3730,3732,3,260,130,0,3731,3729,1,0,0,0,3731, + 3730,1,0,0,0,3732,501,1,0,0,0,3733,3752,5,374,0,0,3734,3739,3,552, + 276,0,3735,3736,5,397,0,0,3736,3738,3,552,276,0,3737,3735,1,0,0, + 0,3738,3741,1,0,0,0,3739,3737,1,0,0,0,3739,3740,1,0,0,0,3740,3753, + 1,0,0,0,3741,3739,1,0,0,0,3742,3743,5,399,0,0,3743,3744,3,548,274, + 0,3744,3749,5,400,0,0,3745,3746,5,397,0,0,3746,3748,3,552,276,0, + 3747,3745,1,0,0,0,3748,3751,1,0,0,0,3749,3747,1,0,0,0,3749,3750, + 1,0,0,0,3750,3753,1,0,0,0,3751,3749,1,0,0,0,3752,3734,1,0,0,0,3752, + 3742,1,0,0,0,3753,503,1,0,0,0,3754,3755,5,329,0,0,3755,3756,5,399, + 0,0,3756,3757,3,502,251,0,3757,3758,5,400,0,0,3758,505,1,0,0,0,3759, + 3761,3,504,252,0,3760,3762,5,17,0,0,3761,3760,1,0,0,0,3761,3762, + 1,0,0,0,3762,3763,1,0,0,0,3763,3773,3,468,234,0,3764,3765,5,399, + 0,0,3765,3770,3,654,327,0,3766,3767,5,397,0,0,3767,3769,3,654,327, + 0,3768,3766,1,0,0,0,3769,3772,1,0,0,0,3770,3768,1,0,0,0,3770,3771, + 1,0,0,0,3771,3774,1,0,0,0,3772,3770,1,0,0,0,3773,3764,1,0,0,0,3773, + 3774,1,0,0,0,3774,3775,1,0,0,0,3775,3776,5,400,0,0,3776,507,1,0, + 0,0,3777,3779,5,299,0,0,3778,3780,5,436,0,0,3779,3778,1,0,0,0,3779, + 3780,1,0,0,0,3780,3787,1,0,0,0,3781,3783,7,22,0,0,3782,3781,1,0, + 0,0,3782,3783,1,0,0,0,3783,3784,1,0,0,0,3784,3788,3,512,256,0,3785, + 3786,5,347,0,0,3786,3788,3,510,255,0,3787,3782,1,0,0,0,3787,3785, + 1,0,0,0,3788,3791,1,0,0,0,3789,3791,3,520,260,0,3790,3777,1,0,0, + 0,3790,3789,1,0,0,0,3791,509,1,0,0,0,3792,3793,5,399,0,0,3793,3794, + 3,524,262,0,3794,3795,5,400,0,0,3795,3796,3,212,106,0,3796,3797, + 3,216,108,0,3797,3798,5,370,0,0,3798,3811,5,426,0,0,3799,3809,5, + 17,0,0,3800,3803,5,399,0,0,3801,3804,3,450,225,0,3802,3804,3,248, + 124,0,3803,3801,1,0,0,0,3803,3802,1,0,0,0,3804,3805,1,0,0,0,3805, + 3806,5,400,0,0,3806,3810,1,0,0,0,3807,3810,3,450,225,0,3808,3810, + 3,248,124,0,3809,3800,1,0,0,0,3809,3807,1,0,0,0,3809,3808,1,0,0, + 0,3810,3812,1,0,0,0,3811,3799,1,0,0,0,3811,3812,1,0,0,0,3812,3813, + 1,0,0,0,3813,3814,3,212,106,0,3814,3815,3,214,107,0,3815,511,1,0, + 0,0,3816,3821,3,514,257,0,3817,3818,5,397,0,0,3818,3820,3,514,257, + 0,3819,3817,1,0,0,0,3820,3823,1,0,0,0,3821,3819,1,0,0,0,3821,3822, + 1,0,0,0,3822,513,1,0,0,0,3823,3821,1,0,0,0,3824,3848,3,446,223,0, + 3825,3828,3,516,258,0,3826,3828,3,518,259,0,3827,3825,1,0,0,0,3827, + 3826,1,0,0,0,3828,3845,1,0,0,0,3829,3831,5,17,0,0,3830,3829,1,0, + 0,0,3830,3831,1,0,0,0,3831,3832,1,0,0,0,3832,3846,3,654,327,0,3833, + 3834,5,17,0,0,3834,3835,5,399,0,0,3835,3840,3,654,327,0,3836,3837, + 5,397,0,0,3837,3839,3,654,327,0,3838,3836,1,0,0,0,3839,3842,1,0, + 0,0,3840,3838,1,0,0,0,3840,3841,1,0,0,0,3841,3843,1,0,0,0,3842,3840, + 1,0,0,0,3843,3844,5,400,0,0,3844,3846,1,0,0,0,3845,3830,1,0,0,0, + 3845,3833,1,0,0,0,3845,3846,1,0,0,0,3846,3848,1,0,0,0,3847,3824, + 1,0,0,0,3847,3827,1,0,0,0,3848,515,1,0,0,0,3849,3850,3,256,128,0, + 3850,517,1,0,0,0,3851,3852,3,596,298,0,3852,519,1,0,0,0,3853,3854, + 7,31,0,0,3854,3855,3,524,262,0,3855,3856,3,212,106,0,3856,3857,3, + 216,108,0,3857,3858,5,370,0,0,3858,3871,5,426,0,0,3859,3869,5,17, + 0,0,3860,3863,5,399,0,0,3861,3864,3,450,225,0,3862,3864,3,248,124, + 0,3863,3861,1,0,0,0,3863,3862,1,0,0,0,3864,3865,1,0,0,0,3865,3866, + 5,400,0,0,3866,3870,1,0,0,0,3867,3870,3,450,225,0,3868,3870,3,248, + 124,0,3869,3860,1,0,0,0,3869,3867,1,0,0,0,3869,3868,1,0,0,0,3870, + 3872,1,0,0,0,3871,3859,1,0,0,0,3871,3872,1,0,0,0,3872,3873,1,0,0, + 0,3873,3874,3,212,106,0,3874,3875,3,214,107,0,3875,521,1,0,0,0,3876, + 3879,3,446,223,0,3877,3879,3,596,298,0,3878,3876,1,0,0,0,3878,3877, + 1,0,0,0,3879,523,1,0,0,0,3880,3885,3,522,261,0,3881,3882,5,397,0, + 0,3882,3884,3,522,261,0,3883,3881,1,0,0,0,3884,3887,1,0,0,0,3885, + 3883,1,0,0,0,3885,3886,1,0,0,0,3886,525,1,0,0,0,3887,3885,1,0,0, + 0,3888,3889,5,386,0,0,3889,3890,3,654,327,0,3890,3891,5,17,0,0,3891, + 3899,3,528,264,0,3892,3893,5,397,0,0,3893,3894,3,654,327,0,3894, + 3895,5,17,0,0,3895,3896,3,528,264,0,3896,3898,1,0,0,0,3897,3892, + 1,0,0,0,3898,3901,1,0,0,0,3899,3897,1,0,0,0,3899,3900,1,0,0,0,3900, + 527,1,0,0,0,3901,3899,1,0,0,0,3902,3915,3,654,327,0,3903,3905,5, + 399,0,0,3904,3906,3,654,327,0,3905,3904,1,0,0,0,3905,3906,1,0,0, + 0,3906,3908,1,0,0,0,3907,3909,3,492,246,0,3908,3907,1,0,0,0,3908, + 3909,1,0,0,0,3909,3911,1,0,0,0,3910,3912,3,530,265,0,3911,3910,1, + 0,0,0,3911,3912,1,0,0,0,3912,3913,1,0,0,0,3913,3915,5,400,0,0,3914, + 3902,1,0,0,0,3914,3903,1,0,0,0,3915,529,1,0,0,0,3916,3930,7,32,0, + 0,3917,3918,5,354,0,0,3918,3924,5,247,0,0,3919,3920,5,62,0,0,3920, + 3924,5,291,0,0,3921,3922,5,431,0,0,3922,3924,5,247,0,0,3923,3917, + 1,0,0,0,3923,3919,1,0,0,0,3923,3921,1,0,0,0,3924,3931,1,0,0,0,3925, + 3926,5,25,0,0,3926,3927,3,532,266,0,3927,3928,5,11,0,0,3928,3929, + 3,532,266,0,3929,3931,1,0,0,0,3930,3923,1,0,0,0,3930,3925,1,0,0, + 0,3931,531,1,0,0,0,3932,3933,7,33,0,0,3933,3937,7,34,0,0,3934,3935, + 5,62,0,0,3935,3937,5,291,0,0,3936,3932,1,0,0,0,3936,3934,1,0,0,0, + 3937,533,1,0,0,0,3938,3939,5,144,0,0,3939,3945,5,32,0,0,3940,3946, + 3,256,128,0,3941,3946,3,536,268,0,3942,3946,3,538,269,0,3943,3944, + 5,399,0,0,3944,3946,5,400,0,0,3945,3940,1,0,0,0,3945,3941,1,0,0, + 0,3945,3942,1,0,0,0,3945,3943,1,0,0,0,3946,535,1,0,0,0,3947,3950, + 5,290,0,0,3948,3950,5,61,0,0,3949,3947,1,0,0,0,3949,3948,1,0,0,0, + 3950,3951,1,0,0,0,3951,3952,5,399,0,0,3952,3957,3,596,298,0,3953, + 3954,5,397,0,0,3954,3956,3,596,298,0,3955,3953,1,0,0,0,3956,3959, + 1,0,0,0,3957,3955,1,0,0,0,3957,3958,1,0,0,0,3958,3960,1,0,0,0,3959, + 3957,1,0,0,0,3960,3961,5,400,0,0,3961,537,1,0,0,0,3962,3967,3,554, + 277,0,3963,3964,5,387,0,0,3964,3968,5,290,0,0,3965,3966,5,387,0, + 0,3966,3968,5,61,0,0,3967,3963,1,0,0,0,3967,3965,1,0,0,0,3967,3968, + 1,0,0,0,3968,3982,1,0,0,0,3969,3970,5,145,0,0,3970,3971,5,305,0, + 0,3971,3972,5,399,0,0,3972,3977,3,540,270,0,3973,3974,5,397,0,0, + 3974,3976,3,540,270,0,3975,3973,1,0,0,0,3976,3979,1,0,0,0,3977,3975, + 1,0,0,0,3977,3978,1,0,0,0,3978,3980,1,0,0,0,3979,3977,1,0,0,0,3980, + 3981,5,400,0,0,3981,3983,1,0,0,0,3982,3969,1,0,0,0,3982,3983,1,0, + 0,0,3983,539,1,0,0,0,3984,3986,5,399,0,0,3985,3987,3,596,298,0,3986, + 3985,1,0,0,0,3986,3987,1,0,0,0,3987,3992,1,0,0,0,3988,3989,5,397, + 0,0,3989,3991,3,596,298,0,3990,3988,1,0,0,0,3991,3994,1,0,0,0,3992, + 3990,1,0,0,0,3992,3993,1,0,0,0,3993,3995,1,0,0,0,3994,3992,1,0,0, + 0,3995,3998,5,400,0,0,3996,3998,3,596,298,0,3997,3984,1,0,0,0,3997, + 3996,1,0,0,0,3998,541,1,0,0,0,3999,4002,5,146,0,0,4000,4003,3,596, + 298,0,4001,4003,3,260,130,0,4002,4000,1,0,0,0,4002,4001,1,0,0,0, + 4003,543,1,0,0,0,4004,4005,5,256,0,0,4005,4006,3,596,298,0,4006, + 545,1,0,0,0,4007,4010,5,83,0,0,4008,4010,3,596,298,0,4009,4007,1, + 0,0,0,4009,4008,1,0,0,0,4010,547,1,0,0,0,4011,4013,3,596,298,0,4012, + 4014,5,17,0,0,4013,4012,1,0,0,0,4013,4014,1,0,0,0,4014,4016,1,0, + 0,0,4015,4017,3,654,327,0,4016,4015,1,0,0,0,4016,4017,1,0,0,0,4017, + 4028,1,0,0,0,4018,4019,5,397,0,0,4019,4021,3,596,298,0,4020,4022, + 5,17,0,0,4021,4020,1,0,0,0,4021,4022,1,0,0,0,4022,4024,1,0,0,0,4023, + 4025,3,654,327,0,4024,4023,1,0,0,0,4024,4025,1,0,0,0,4025,4027,1, + 0,0,0,4026,4018,1,0,0,0,4027,4030,1,0,0,0,4028,4026,1,0,0,0,4028, + 4029,1,0,0,0,4029,549,1,0,0,0,4030,4028,1,0,0,0,4031,4034,3,552, + 276,0,4032,4034,3,554,277,0,4033,4031,1,0,0,0,4033,4032,1,0,0,0, + 4034,551,1,0,0,0,4035,4036,5,399,0,0,4036,4037,3,554,277,0,4037, + 4038,5,400,0,0,4038,553,1,0,0,0,4039,4046,3,546,273,0,4040,4041, + 5,397,0,0,4041,4043,3,546,273,0,4042,4040,1,0,0,0,4043,4044,1,0, + 0,0,4044,4042,1,0,0,0,4044,4045,1,0,0,0,4045,4047,1,0,0,0,4046,4042, + 1,0,0,0,4046,4047,1,0,0,0,4047,555,1,0,0,0,4048,4049,5,229,0,0,4049, + 4050,5,32,0,0,4050,4055,3,312,156,0,4051,4052,5,397,0,0,4052,4054, + 3,312,156,0,4053,4051,1,0,0,0,4054,4057,1,0,0,0,4055,4053,1,0,0, + 0,4055,4056,1,0,0,0,4056,557,1,0,0,0,4057,4055,1,0,0,0,4058,4059, + 5,237,0,0,4059,4060,5,32,0,0,4060,4061,3,550,275,0,4061,559,1,0, + 0,0,4062,4063,5,41,0,0,4063,4064,5,32,0,0,4064,4065,3,550,275,0, + 4065,561,1,0,0,0,4066,4067,5,97,0,0,4067,4068,5,32,0,0,4068,4069, + 3,550,275,0,4069,563,1,0,0,0,4070,4071,5,314,0,0,4071,4091,5,32, + 0,0,4072,4073,5,399,0,0,4073,4078,3,312,156,0,4074,4075,5,397,0, + 0,4075,4077,3,312,156,0,4076,4074,1,0,0,0,4077,4080,1,0,0,0,4078, + 4076,1,0,0,0,4078,4079,1,0,0,0,4079,4081,1,0,0,0,4080,4078,1,0,0, + 0,4081,4082,5,400,0,0,4082,4092,1,0,0,0,4083,4088,3,312,156,0,4084, + 4085,5,397,0,0,4085,4087,3,312,156,0,4086,4084,1,0,0,0,4087,4090, + 1,0,0,0,4088,4086,1,0,0,0,4088,4089,1,0,0,0,4089,4092,1,0,0,0,4090, + 4088,1,0,0,0,4091,4072,1,0,0,0,4091,4083,1,0,0,0,4092,565,1,0,0, + 0,4093,4094,5,349,0,0,4094,4098,5,399,0,0,4095,4099,5,179,0,0,4096, + 4099,5,343,0,0,4097,4099,5,29,0,0,4098,4095,1,0,0,0,4098,4096,1, + 0,0,0,4098,4097,1,0,0,0,4098,4099,1,0,0,0,4099,4101,1,0,0,0,4100, + 4102,3,522,261,0,4101,4100,1,0,0,0,4101,4102,1,0,0,0,4102,4103,1, + 0,0,0,4103,4104,5,139,0,0,4104,4105,3,522,261,0,4105,4106,5,400, + 0,0,4106,4147,1,0,0,0,4107,4108,3,574,287,0,4108,4123,5,399,0,0, + 4109,4124,5,415,0,0,4110,4112,7,22,0,0,4111,4110,1,0,0,0,4111,4112, + 1,0,0,0,4112,4121,1,0,0,0,4113,4118,3,522,261,0,4114,4115,5,397, + 0,0,4115,4117,3,522,261,0,4116,4114,1,0,0,0,4117,4120,1,0,0,0,4118, + 4116,1,0,0,0,4118,4119,1,0,0,0,4119,4122,1,0,0,0,4120,4118,1,0,0, + 0,4121,4113,1,0,0,0,4121,4122,1,0,0,0,4122,4124,1,0,0,0,4123,4109, + 1,0,0,0,4123,4111,1,0,0,0,4124,4144,1,0,0,0,4125,4126,5,400,0,0, + 4126,4127,5,388,0,0,4127,4128,5,144,0,0,4128,4129,5,399,0,0,4129, + 4130,3,556,278,0,4130,4131,5,400,0,0,4131,4145,1,0,0,0,4132,4134, + 5,400,0,0,4133,4135,3,568,284,0,4134,4133,1,0,0,0,4134,4135,1,0, + 0,0,4135,4136,1,0,0,0,4136,4137,5,234,0,0,4137,4145,3,528,264,0, + 4138,4139,3,568,284,0,4139,4140,5,400,0,0,4140,4141,5,234,0,0,4141, + 4142,3,528,264,0,4142,4145,1,0,0,0,4143,4145,5,400,0,0,4144,4125, + 1,0,0,0,4144,4132,1,0,0,0,4144,4138,1,0,0,0,4144,4143,1,0,0,0,4145, + 4147,1,0,0,0,4146,4093,1,0,0,0,4146,4107,1,0,0,0,4147,567,1,0,0, + 0,4148,4149,7,35,0,0,4149,4150,5,220,0,0,4150,569,1,0,0,0,4151,4152, + 3,656,328,0,4152,571,1,0,0,0,4153,4156,3,656,328,0,4154,4156,5,426, + 0,0,4155,4153,1,0,0,0,4155,4154,1,0,0,0,4156,573,1,0,0,0,4157,4161, + 3,656,328,0,4158,4161,3,662,331,0,4159,4161,3,652,326,0,4160,4157, + 1,0,0,0,4160,4158,1,0,0,0,4160,4159,1,0,0,0,4161,575,1,0,0,0,4162, + 4163,5,36,0,0,4163,4164,5,399,0,0,4164,4165,3,596,298,0,4165,4166, + 5,17,0,0,4166,4169,3,352,176,0,4167,4168,5,137,0,0,4168,4170,5,426, + 0,0,4169,4167,1,0,0,0,4169,4170,1,0,0,0,4170,4171,1,0,0,0,4171,4172, + 5,400,0,0,4172,577,1,0,0,0,4173,4174,5,35,0,0,4174,4180,3,596,298, + 0,4175,4176,5,383,0,0,4176,4177,3,596,298,0,4177,4178,5,335,0,0, + 4178,4179,3,596,298,0,4179,4181,1,0,0,0,4180,4175,1,0,0,0,4181,4182, + 1,0,0,0,4182,4180,1,0,0,0,4182,4183,1,0,0,0,4183,4186,1,0,0,0,4184, + 4185,5,105,0,0,4185,4187,3,596,298,0,4186,4184,1,0,0,0,4186,4187, + 1,0,0,0,4187,4188,1,0,0,0,4188,4189,5,108,0,0,4189,579,1,0,0,0,4190, + 4196,5,35,0,0,4191,4192,5,383,0,0,4192,4193,3,596,298,0,4193,4194, + 5,335,0,0,4194,4195,3,596,298,0,4195,4197,1,0,0,0,4196,4191,1,0, + 0,0,4197,4198,1,0,0,0,4198,4196,1,0,0,0,4198,4199,1,0,0,0,4199,4202, + 1,0,0,0,4200,4201,5,105,0,0,4201,4203,3,596,298,0,4202,4200,1,0, + 0,0,4202,4203,1,0,0,0,4203,4204,1,0,0,0,4204,4205,5,108,0,0,4205, + 581,1,0,0,0,4206,4207,5,132,0,0,4207,4208,5,399,0,0,4208,4211,3, + 596,298,0,4209,4210,5,341,0,0,4210,4212,3,586,293,0,4211,4209,1, + 0,0,0,4211,4212,1,0,0,0,4212,4213,1,0,0,0,4213,4214,5,400,0,0,4214, + 583,1,0,0,0,4215,4216,5,124,0,0,4216,4217,5,399,0,0,4217,4218,3, + 586,293,0,4218,4219,5,139,0,0,4219,4220,3,596,298,0,4220,4221,5, + 400,0,0,4221,585,1,0,0,0,4222,4231,3,682,341,0,4223,4231,5,257,0, + 0,4224,4231,3,684,342,0,4225,4231,3,686,343,0,4226,4231,3,688,344, + 0,4227,4231,3,690,345,0,4228,4231,3,692,346,0,4229,4231,3,694,347, + 0,4230,4222,1,0,0,0,4230,4223,1,0,0,0,4230,4224,1,0,0,0,4230,4225, + 1,0,0,0,4230,4226,1,0,0,0,4230,4227,1,0,0,0,4230,4228,1,0,0,0,4230, + 4229,1,0,0,0,4231,587,1,0,0,0,4232,4233,3,590,295,0,4233,4234,3, + 594,297,0,4234,4261,1,0,0,0,4235,4261,5,431,0,0,4236,4237,5,71,0, + 0,4237,4261,5,426,0,0,4238,4261,5,63,0,0,4239,4240,5,337,0,0,4240, + 4261,5,426,0,0,4241,4261,5,64,0,0,4242,4243,5,338,0,0,4243,4261, + 5,426,0,0,4244,4248,5,426,0,0,4245,4247,5,426,0,0,4246,4245,1,0, + 0,0,4247,4250,1,0,0,0,4248,4246,1,0,0,0,4248,4249,1,0,0,0,4249,4261, + 1,0,0,0,4250,4248,1,0,0,0,4251,4261,5,428,0,0,4252,4261,5,429,0, + 0,4253,4254,5,433,0,0,4254,4261,5,427,0,0,4255,4261,5,350,0,0,4256, + 4261,5,125,0,0,4257,4261,5,219,0,0,4258,4261,5,424,0,0,4259,4261, + 3,258,129,0,4260,4232,1,0,0,0,4260,4235,1,0,0,0,4260,4236,1,0,0, + 0,4260,4238,1,0,0,0,4260,4239,1,0,0,0,4260,4241,1,0,0,0,4260,4242, + 1,0,0,0,4260,4244,1,0,0,0,4260,4251,1,0,0,0,4260,4252,1,0,0,0,4260, + 4253,1,0,0,0,4260,4255,1,0,0,0,4260,4256,1,0,0,0,4260,4257,1,0,0, + 0,4260,4258,1,0,0,0,4260,4259,1,0,0,0,4261,589,1,0,0,0,4262,4263, + 7,27,0,0,4263,591,1,0,0,0,4264,4265,5,399,0,0,4265,4266,3,590,295, + 0,4266,4267,5,400,0,0,4267,4268,3,594,297,0,4268,4280,1,0,0,0,4269, + 4275,5,165,0,0,4270,4276,3,590,295,0,4271,4272,5,399,0,0,4272,4273, + 3,596,298,0,4273,4274,5,400,0,0,4274,4276,1,0,0,0,4275,4270,1,0, + 0,0,4275,4271,1,0,0,0,4276,4277,1,0,0,0,4277,4278,3,594,297,0,4278, + 4280,1,0,0,0,4279,4264,1,0,0,0,4279,4269,1,0,0,0,4280,593,1,0,0, + 0,4281,4282,3,682,341,0,4282,4283,5,341,0,0,4283,4284,3,684,342, + 0,4284,4296,1,0,0,0,4285,4286,3,688,344,0,4286,4287,5,341,0,0,4287, + 4288,3,694,347,0,4288,4296,1,0,0,0,4289,4296,3,682,341,0,4290,4296, + 3,684,342,0,4291,4296,3,688,344,0,4292,4296,3,690,345,0,4293,4296, + 3,692,346,0,4294,4296,3,694,347,0,4295,4281,1,0,0,0,4295,4285,1, + 0,0,0,4295,4289,1,0,0,0,4295,4290,1,0,0,0,4295,4291,1,0,0,0,4295, + 4292,1,0,0,0,4295,4293,1,0,0,0,4295,4294,1,0,0,0,4296,595,1,0,0, + 0,4297,4302,3,638,319,0,4298,4299,5,228,0,0,4299,4301,3,638,319, + 0,4300,4298,1,0,0,0,4301,4304,1,0,0,0,4302,4300,1,0,0,0,4302,4303, + 1,0,0,0,4303,597,1,0,0,0,4304,4302,1,0,0,0,4305,4317,3,588,294,0, + 4306,4317,3,592,296,0,4307,4317,3,576,288,0,4308,4317,3,584,292, + 0,4309,4317,3,582,291,0,4310,4317,3,578,289,0,4311,4317,3,580,290, + 0,4312,4317,3,616,308,0,4313,4317,3,566,283,0,4314,4317,3,552,276, + 0,4315,4317,3,654,327,0,4316,4305,1,0,0,0,4316,4306,1,0,0,0,4316, + 4307,1,0,0,0,4316,4308,1,0,0,0,4316,4309,1,0,0,0,4316,4310,1,0,0, + 0,4316,4311,1,0,0,0,4316,4312,1,0,0,0,4316,4313,1,0,0,0,4316,4314, + 1,0,0,0,4316,4315,1,0,0,0,4317,599,1,0,0,0,4318,4320,7,36,0,0,4319, + 4318,1,0,0,0,4320,4323,1,0,0,0,4321,4319,1,0,0,0,4321,4322,1,0,0, + 0,4322,4324,1,0,0,0,4323,4321,1,0,0,0,4324,4333,3,598,299,0,4325, + 4326,5,401,0,0,4326,4327,3,596,298,0,4327,4328,5,402,0,0,4328,4332, + 1,0,0,0,4329,4330,5,395,0,0,4330,4332,3,654,327,0,4331,4325,1,0, + 0,0,4331,4329,1,0,0,0,4332,4335,1,0,0,0,4333,4331,1,0,0,0,4333,4334, + 1,0,0,0,4334,601,1,0,0,0,4335,4333,1,0,0,0,4336,4341,3,600,300,0, + 4337,4338,5,423,0,0,4338,4340,3,600,300,0,4339,4337,1,0,0,0,4340, + 4343,1,0,0,0,4341,4339,1,0,0,0,4341,4342,1,0,0,0,4342,603,1,0,0, + 0,4343,4341,1,0,0,0,4344,4349,3,602,301,0,4345,4346,7,37,0,0,4346, + 4348,3,602,301,0,4347,4345,1,0,0,0,4348,4351,1,0,0,0,4349,4347,1, + 0,0,0,4349,4350,1,0,0,0,4350,605,1,0,0,0,4351,4349,1,0,0,0,4352, + 4357,3,604,302,0,4353,4354,7,38,0,0,4354,4356,3,604,302,0,4355,4353, + 1,0,0,0,4356,4359,1,0,0,0,4357,4355,1,0,0,0,4357,4358,1,0,0,0,4358, + 607,1,0,0,0,4359,4357,1,0,0,0,4360,4365,3,606,303,0,4361,4362,5, + 422,0,0,4362,4364,3,606,303,0,4363,4361,1,0,0,0,4364,4367,1,0,0, + 0,4365,4363,1,0,0,0,4365,4366,1,0,0,0,4366,609,1,0,0,0,4367,4365, + 1,0,0,0,4368,4373,3,608,304,0,4369,4370,5,419,0,0,4370,4372,3,608, + 304,0,4371,4369,1,0,0,0,4372,4375,1,0,0,0,4373,4371,1,0,0,0,4373, + 4374,1,0,0,0,4374,611,1,0,0,0,4375,4373,1,0,0,0,4376,4381,3,610, + 305,0,4377,4378,5,421,0,0,4378,4380,3,610,305,0,4379,4377,1,0,0, + 0,4380,4383,1,0,0,0,4381,4379,1,0,0,0,4381,4382,1,0,0,0,4382,613, + 1,0,0,0,4383,4381,1,0,0,0,4384,4385,7,39,0,0,4385,615,1,0,0,0,4386, + 4387,5,399,0,0,4387,4388,3,380,190,0,4388,4389,5,400,0,0,4389,617, + 1,0,0,0,4390,4392,3,612,306,0,4391,4393,3,620,310,0,4392,4391,1, + 0,0,0,4392,4393,1,0,0,0,4393,4397,1,0,0,0,4394,4395,5,117,0,0,4395, + 4397,3,616,308,0,4396,4390,1,0,0,0,4396,4394,1,0,0,0,4397,619,1, + 0,0,0,4398,4399,3,614,307,0,4399,4400,3,612,306,0,4400,4405,1,0, + 0,0,4401,4405,3,622,311,0,4402,4403,5,216,0,0,4403,4405,3,626,313, + 0,4404,4398,1,0,0,0,4404,4401,1,0,0,0,4404,4402,1,0,0,0,4405,621, + 1,0,0,0,4406,4407,5,154,0,0,4407,4421,3,624,312,0,4408,4409,5,25, + 0,0,4409,4410,3,612,306,0,4410,4411,5,11,0,0,4411,4412,3,612,306, + 0,4412,4421,1,0,0,0,4413,4414,5,184,0,0,4414,4415,7,40,0,0,4415, + 4421,3,552,276,0,4416,4417,3,650,325,0,4417,4418,7,41,0,0,4418,4419, + 3,616,308,0,4419,4421,1,0,0,0,4420,4406,1,0,0,0,4420,4408,1,0,0, + 0,4420,4413,1,0,0,0,4420,4416,1,0,0,0,4421,623,1,0,0,0,4422,4425, + 3,616,308,0,4423,4425,3,552,276,0,4424,4422,1,0,0,0,4424,4423,1, + 0,0,0,4425,625,1,0,0,0,4426,4427,7,42,0,0,4427,4430,3,612,306,0, + 4428,4430,3,622,311,0,4429,4426,1,0,0,0,4429,4428,1,0,0,0,4430,627, + 1,0,0,0,4431,4432,5,167,0,0,4432,4433,5,96,0,0,4433,4434,5,139,0, + 0,4434,629,1,0,0,0,4435,4443,5,405,0,0,4436,4443,5,406,0,0,4437, + 4443,5,407,0,0,4438,4439,5,167,0,0,4439,4440,5,216,0,0,4440,4441, + 5,96,0,0,4441,4443,5,139,0,0,4442,4435,1,0,0,0,4442,4436,1,0,0,0, + 4442,4437,1,0,0,0,4442,4438,1,0,0,0,4443,631,1,0,0,0,4444,4453,3, + 618,309,0,4445,4446,3,630,315,0,4446,4447,3,618,309,0,4447,4452, + 1,0,0,0,4448,4449,3,628,314,0,4449,4450,3,618,309,0,4450,4452,1, + 0,0,0,4451,4445,1,0,0,0,4451,4448,1,0,0,0,4452,4455,1,0,0,0,4453, + 4451,1,0,0,0,4453,4454,1,0,0,0,4454,633,1,0,0,0,4455,4453,1,0,0, + 0,4456,4463,5,219,0,0,4457,4463,5,350,0,0,4458,4463,5,125,0,0,4459, + 4463,5,360,0,0,4460,4461,5,216,0,0,4461,4463,7,43,0,0,4462,4456, + 1,0,0,0,4462,4457,1,0,0,0,4462,4458,1,0,0,0,4462,4459,1,0,0,0,4462, + 4460,1,0,0,0,4463,635,1,0,0,0,4464,4466,5,216,0,0,4465,4464,1,0, + 0,0,4466,4469,1,0,0,0,4467,4465,1,0,0,0,4467,4468,1,0,0,0,4468,4470, + 1,0,0,0,4469,4467,1,0,0,0,4470,4473,3,632,316,0,4471,4472,5,167, + 0,0,4472,4474,3,634,317,0,4473,4471,1,0,0,0,4473,4474,1,0,0,0,4474, + 637,1,0,0,0,4475,4480,3,636,318,0,4476,4477,5,11,0,0,4477,4479,3, + 636,318,0,4478,4476,1,0,0,0,4479,4482,1,0,0,0,4480,4478,1,0,0,0, + 4480,4481,1,0,0,0,4481,639,1,0,0,0,4482,4480,1,0,0,0,4483,4485,3, + 482,241,0,4484,4486,3,642,321,0,4485,4484,1,0,0,0,4485,4486,1,0, + 0,0,4486,641,1,0,0,0,4487,4488,5,237,0,0,4488,4489,5,399,0,0,4489, + 4494,3,644,322,0,4490,4491,5,397,0,0,4491,4493,3,644,322,0,4492, + 4490,1,0,0,0,4493,4496,1,0,0,0,4494,4492,1,0,0,0,4494,4495,1,0,0, + 0,4495,4497,1,0,0,0,4496,4494,1,0,0,0,4497,4498,5,400,0,0,4498,643, + 1,0,0,0,4499,4502,3,654,327,0,4500,4501,5,405,0,0,4501,4503,3,588, + 294,0,4502,4500,1,0,0,0,4502,4503,1,0,0,0,4503,645,1,0,0,0,4504, + 4505,5,399,0,0,4505,4510,3,648,324,0,4506,4507,5,397,0,0,4507,4509, + 3,648,324,0,4508,4506,1,0,0,0,4509,4512,1,0,0,0,4510,4508,1,0,0, + 0,4510,4511,1,0,0,0,4511,4513,1,0,0,0,4512,4510,1,0,0,0,4513,4514, + 5,400,0,0,4514,647,1,0,0,0,4515,4518,3,654,327,0,4516,4519,5,184, + 0,0,4517,4519,3,650,325,0,4518,4516,1,0,0,0,4518,4517,1,0,0,0,4519, + 4520,1,0,0,0,4520,4521,3,588,294,0,4521,649,1,0,0,0,4522,4523,7, + 44,0,0,4523,651,1,0,0,0,4524,4525,7,45,0,0,4525,653,1,0,0,0,4526, + 4529,5,432,0,0,4527,4529,3,660,330,0,4528,4526,1,0,0,0,4528,4527, + 1,0,0,0,4529,655,1,0,0,0,4530,4533,3,654,327,0,4531,4532,5,395,0, + 0,4532,4534,3,654,327,0,4533,4531,1,0,0,0,4533,4534,1,0,0,0,4534, + 657,1,0,0,0,4535,4536,3,654,327,0,4536,659,1,0,0,0,4537,4538,7,46, + 0,0,4538,661,1,0,0,0,4539,4540,7,47,0,0,4540,663,1,0,0,0,4541,4593, + 3,654,327,0,4542,4593,5,299,0,0,4543,4593,5,171,0,0,4544,4593,5, + 237,0,0,4545,4593,5,198,0,0,4546,4593,5,268,0,0,4547,4593,5,369, + 0,0,4548,4593,5,241,0,0,4549,4593,5,165,0,0,4550,4593,5,292,0,0, + 4551,4593,5,356,0,0,4552,4593,5,144,0,0,4553,4593,5,203,0,0,4554, + 4593,5,219,0,0,4555,4593,5,126,0,0,4556,4593,5,188,0,0,4557,4593, + 5,101,0,0,4558,4593,5,329,0,0,4559,4593,5,224,0,0,4560,4593,5,291, + 0,0,4561,4593,5,145,0,0,4562,4593,5,304,0,0,4563,4593,5,135,0,0, + 4564,4593,5,318,0,0,4565,4593,5,161,0,0,4566,4593,5,54,0,0,4567, + 4593,5,166,0,0,4568,4593,5,358,0,0,4569,4593,5,45,0,0,4570,4593, + 5,347,0,0,4571,4593,5,96,0,0,4572,4593,5,154,0,0,4573,4593,5,269, + 0,0,4574,4593,5,337,0,0,4575,4593,5,225,0,0,4576,4593,5,108,0,0, + 4577,4593,5,141,0,0,4578,4593,5,365,0,0,4579,4593,5,21,0,0,4580, + 4593,5,78,0,0,4581,4593,5,374,0,0,4582,4593,5,336,0,0,4583,4593, + 5,167,0,0,4584,4593,5,134,0,0,4585,4593,5,216,0,0,4586,4593,5,27, + 0,0,4587,4593,5,370,0,0,4588,4593,5,263,0,0,4589,4593,5,25,0,0,4590, + 4593,5,62,0,0,4591,4593,5,17,0,0,4592,4541,1,0,0,0,4592,4542,1,0, + 0,0,4592,4543,1,0,0,0,4592,4544,1,0,0,0,4592,4545,1,0,0,0,4592,4546, + 1,0,0,0,4592,4547,1,0,0,0,4592,4548,1,0,0,0,4592,4549,1,0,0,0,4592, + 4550,1,0,0,0,4592,4551,1,0,0,0,4592,4552,1,0,0,0,4592,4553,1,0,0, + 0,4592,4554,1,0,0,0,4592,4555,1,0,0,0,4592,4556,1,0,0,0,4592,4557, + 1,0,0,0,4592,4558,1,0,0,0,4592,4559,1,0,0,0,4592,4560,1,0,0,0,4592, + 4561,1,0,0,0,4592,4562,1,0,0,0,4592,4563,1,0,0,0,4592,4564,1,0,0, + 0,4592,4565,1,0,0,0,4592,4566,1,0,0,0,4592,4567,1,0,0,0,4592,4568, + 1,0,0,0,4592,4569,1,0,0,0,4592,4570,1,0,0,0,4592,4571,1,0,0,0,4592, + 4572,1,0,0,0,4592,4573,1,0,0,0,4592,4574,1,0,0,0,4592,4575,1,0,0, + 0,4592,4576,1,0,0,0,4592,4577,1,0,0,0,4592,4578,1,0,0,0,4592,4579, + 1,0,0,0,4592,4580,1,0,0,0,4592,4581,1,0,0,0,4592,4582,1,0,0,0,4592, + 4583,1,0,0,0,4592,4584,1,0,0,0,4592,4585,1,0,0,0,4592,4586,1,0,0, + 0,4592,4587,1,0,0,0,4592,4588,1,0,0,0,4592,4589,1,0,0,0,4592,4590, + 1,0,0,0,4592,4591,1,0,0,0,4593,665,1,0,0,0,4594,4595,5,58,0,0,4595, + 4596,5,280,0,0,4596,4598,5,243,0,0,4597,4599,3,32,16,0,4598,4597, + 1,0,0,0,4598,4599,1,0,0,0,4599,4609,1,0,0,0,4600,4601,3,654,327, + 0,4601,4602,5,184,0,0,4602,4603,3,654,327,0,4603,4610,1,0,0,0,4604, + 4607,3,654,327,0,4605,4606,5,387,0,0,4606,4608,3,672,336,0,4607, + 4605,1,0,0,0,4607,4608,1,0,0,0,4608,4610,1,0,0,0,4609,4600,1,0,0, + 0,4609,4604,1,0,0,0,4610,4760,1,0,0,0,4611,4612,5,9,0,0,4612,4613, + 5,280,0,0,4613,4614,5,243,0,0,4614,4639,3,654,327,0,4615,4640,5, + 373,0,0,4616,4640,3,680,340,0,4617,4618,5,304,0,0,4618,4640,3,672, + 336,0,4619,4620,5,363,0,0,4620,4625,3,674,337,0,4621,4622,5,397, + 0,0,4622,4624,3,674,337,0,4623,4621,1,0,0,0,4624,4627,1,0,0,0,4625, + 4623,1,0,0,0,4625,4626,1,0,0,0,4626,4640,1,0,0,0,4627,4625,1,0,0, + 0,4628,4629,5,274,0,0,4629,4630,5,341,0,0,4630,4640,3,654,327,0, + 4631,4633,3,676,338,0,4632,4634,3,678,339,0,4633,4632,1,0,0,0,4633, + 4634,1,0,0,0,4634,4640,1,0,0,0,4635,4637,3,678,339,0,4636,4638,3, + 676,338,0,4637,4636,1,0,0,0,4637,4638,1,0,0,0,4638,4640,1,0,0,0, + 4639,4615,1,0,0,0,4639,4616,1,0,0,0,4639,4617,1,0,0,0,4639,4619, + 1,0,0,0,4639,4628,1,0,0,0,4639,4631,1,0,0,0,4639,4635,1,0,0,0,4640, + 4760,1,0,0,0,4641,4642,5,101,0,0,4642,4643,5,280,0,0,4643,4645,5, + 243,0,0,4644,4646,3,30,15,0,4645,4644,1,0,0,0,4645,4646,1,0,0,0, + 4646,4647,1,0,0,0,4647,4760,3,654,327,0,4648,4651,3,678,339,0,4649, + 4651,3,680,340,0,4650,4648,1,0,0,0,4650,4649,1,0,0,0,4651,4652,1, + 0,0,0,4652,4653,5,390,0,0,4653,4654,5,197,0,0,4654,4760,1,0,0,0, + 4655,4667,5,278,0,0,4656,4657,5,3,0,0,4657,4658,5,280,0,0,4658,4659, + 5,243,0,0,4659,4660,5,387,0,0,4660,4668,3,654,327,0,4661,4662,5, + 280,0,0,4662,4663,5,243,0,0,4663,4664,3,654,327,0,4664,4665,5,387, + 0,0,4665,4666,3,654,327,0,4666,4668,1,0,0,0,4667,4656,1,0,0,0,4667, + 4661,1,0,0,0,4668,4760,1,0,0,0,4669,4670,5,58,0,0,4670,4671,5,348, + 0,0,4671,4672,3,654,327,0,4672,4673,5,395,0,0,4673,4674,3,654,327, + 0,4674,4675,5,383,0,0,4675,4676,3,704,352,0,4676,4677,5,99,0,0,4677, + 4678,3,706,353,0,4678,4760,1,0,0,0,4679,4680,5,9,0,0,4680,4681,5, + 348,0,0,4681,4682,3,654,327,0,4682,4683,5,395,0,0,4683,4700,3,654, + 327,0,4684,4685,5,383,0,0,4685,4686,3,704,352,0,4686,4687,5,99,0, + 0,4687,4688,3,706,353,0,4688,4701,1,0,0,0,4689,4690,5,4,0,0,4690, + 4694,5,341,0,0,4691,4692,5,101,0,0,4692,4694,5,139,0,0,4693,4689, + 1,0,0,0,4693,4691,1,0,0,0,4694,4698,1,0,0,0,4695,4696,5,246,0,0, + 4696,4699,3,700,350,0,4697,4699,5,362,0,0,4698,4695,1,0,0,0,4698, + 4697,1,0,0,0,4699,4701,1,0,0,0,4700,4684,1,0,0,0,4700,4693,1,0,0, + 0,4701,4760,1,0,0,0,4702,4703,5,101,0,0,4703,4704,5,348,0,0,4704, + 4705,3,654,327,0,4705,4706,5,395,0,0,4706,4707,3,654,327,0,4707, + 4760,1,0,0,0,4708,4709,5,58,0,0,4709,4710,5,246,0,0,4710,4711,3, + 654,327,0,4711,4712,5,395,0,0,4712,4713,3,700,350,0,4713,4714,5, + 387,0,0,4714,4715,3,710,355,0,4715,4760,1,0,0,0,4716,4717,5,9,0, + 0,4717,4718,5,246,0,0,4718,4719,3,654,327,0,4719,4720,5,395,0,0, + 4720,4728,3,700,350,0,4721,4722,5,304,0,0,4722,4729,3,710,355,0, + 4723,4724,5,363,0,0,4724,4729,5,294,0,0,4725,4726,7,48,0,0,4726, + 4727,5,348,0,0,4727,4729,3,654,327,0,4728,4721,1,0,0,0,4728,4723, + 1,0,0,0,4728,4725,1,0,0,0,4729,4760,1,0,0,0,4730,4731,5,101,0,0, + 4731,4732,5,246,0,0,4732,4733,3,654,327,0,4733,4734,5,395,0,0,4734, + 4735,3,700,350,0,4735,4760,1,0,0,0,4736,4737,7,49,0,0,4737,4738, + 3,668,334,0,4738,4739,5,200,0,0,4739,4740,5,426,0,0,4740,4741,5, + 154,0,0,4741,4745,3,654,327,0,4742,4743,5,341,0,0,4743,4746,3,700, + 350,0,4744,4746,5,362,0,0,4745,4742,1,0,0,0,4745,4744,1,0,0,0,4746, + 4750,1,0,0,0,4747,4748,5,387,0,0,4748,4749,5,229,0,0,4749,4751,5, + 431,0,0,4750,4747,1,0,0,0,4750,4751,1,0,0,0,4751,4760,1,0,0,0,4752, + 4753,5,101,0,0,4753,4754,3,668,334,0,4754,4755,5,200,0,0,4755,4756, + 5,426,0,0,4756,4757,5,154,0,0,4757,4758,3,654,327,0,4758,4760,1, + 0,0,0,4759,4594,1,0,0,0,4759,4611,1,0,0,0,4759,4641,1,0,0,0,4759, + 4650,1,0,0,0,4759,4655,1,0,0,0,4759,4669,1,0,0,0,4759,4679,1,0,0, + 0,4759,4702,1,0,0,0,4759,4708,1,0,0,0,4759,4716,1,0,0,0,4759,4730, + 1,0,0,0,4759,4736,1,0,0,0,4759,4752,1,0,0,0,4760,667,1,0,0,0,4761, + 4762,7,50,0,0,4762,669,1,0,0,0,4763,4764,5,259,0,0,4764,4765,5,405, + 0,0,4765,4771,5,431,0,0,4766,4767,5,83,0,0,4767,4768,5,246,0,0,4768, + 4769,5,405,0,0,4769,4771,3,700,350,0,4770,4763,1,0,0,0,4770,4766, + 1,0,0,0,4771,671,1,0,0,0,4772,4777,3,670,335,0,4773,4774,5,397,0, + 0,4774,4776,3,670,335,0,4775,4773,1,0,0,0,4776,4779,1,0,0,0,4777, + 4775,1,0,0,0,4777,4778,1,0,0,0,4778,673,1,0,0,0,4779,4777,1,0,0, + 0,4780,4784,5,259,0,0,4781,4782,5,83,0,0,4782,4784,5,246,0,0,4783, + 4780,1,0,0,0,4783,4781,1,0,0,0,4784,675,1,0,0,0,4785,4788,5,2,0, + 0,4786,4787,5,387,0,0,4787,4789,5,278,0,0,4788,4786,1,0,0,0,4788, + 4789,1,0,0,0,4789,677,1,0,0,0,4790,4791,7,51,0,0,4791,679,1,0,0, + 0,4792,4793,7,52,0,0,4793,681,1,0,0,0,4794,4795,7,53,0,0,4795,683, + 1,0,0,0,4796,4797,7,54,0,0,4797,685,1,0,0,0,4798,4799,7,55,0,0,4799, + 687,1,0,0,0,4800,4801,7,56,0,0,4801,689,1,0,0,0,4802,4803,7,57,0, + 0,4803,691,1,0,0,0,4804,4805,7,58,0,0,4805,693,1,0,0,0,4806,4807, + 7,59,0,0,4807,695,1,0,0,0,4808,4809,7,60,0,0,4809,697,1,0,0,0,4810, + 4811,1,0,0,0,4811,699,1,0,0,0,4812,4817,3,654,327,0,4813,4814,5, + 395,0,0,4814,4816,3,654,327,0,4815,4813,1,0,0,0,4816,4819,1,0,0, + 0,4817,4815,1,0,0,0,4817,4818,1,0,0,0,4818,701,1,0,0,0,4819,4817, + 1,0,0,0,4820,4825,3,654,327,0,4821,4822,5,395,0,0,4822,4824,3,654, + 327,0,4823,4821,1,0,0,0,4824,4827,1,0,0,0,4825,4823,1,0,0,0,4825, + 4826,1,0,0,0,4826,4838,1,0,0,0,4827,4825,1,0,0,0,4828,4829,4,351, + 2,0,4829,4834,3,654,327,0,4830,4831,5,395,0,0,4831,4833,3,698,349, + 0,4832,4830,1,0,0,0,4833,4836,1,0,0,0,4834,4832,1,0,0,0,4834,4835, + 1,0,0,0,4835,4838,1,0,0,0,4836,4834,1,0,0,0,4837,4820,1,0,0,0,4837, + 4828,1,0,0,0,4838,703,1,0,0,0,4839,4840,3,654,327,0,4840,4841,5, + 411,0,0,4841,4842,7,27,0,0,4842,705,1,0,0,0,4843,4848,5,176,0,0, + 4844,4845,5,211,0,0,4845,4846,5,341,0,0,4846,4848,3,700,350,0,4847, + 4843,1,0,0,0,4847,4844,1,0,0,0,4848,707,1,0,0,0,4849,4850,5,8,0, + 0,4850,4851,5,405,0,0,4851,4862,5,431,0,0,4852,4853,5,259,0,0,4853, + 4854,5,405,0,0,4854,4862,5,431,0,0,4855,4856,5,294,0,0,4856,4857, + 5,405,0,0,4857,4862,5,426,0,0,4858,4859,5,240,0,0,4859,4860,5,405, + 0,0,4860,4862,3,700,350,0,4861,4849,1,0,0,0,4861,4852,1,0,0,0,4861, + 4855,1,0,0,0,4861,4858,1,0,0,0,4862,709,1,0,0,0,4863,4868,3,708, + 354,0,4864,4865,5,397,0,0,4865,4867,3,708,354,0,4866,4864,1,0,0, + 0,4867,4870,1,0,0,0,4868,4866,1,0,0,0,4868,4869,1,0,0,0,4869,711, + 1,0,0,0,4870,4868,1,0,0,0,629,715,722,725,731,737,744,754,757,761, + 776,783,789,794,799,802,826,833,836,841,846,852,856,869,873,877, + 882,889,893,898,905,909,914,962,969,974,997,1001,1005,1008,1012, + 1017,1023,1027,1033,1035,1046,1050,1057,1065,1068,1073,1077,1080, + 1090,1098,1102,1105,1109,1113,1116,1121,1127,1132,1137,1141,1152, + 1154,1158,1168,1172,1178,1181,1188,1193,1201,1206,1210,1218,1223, + 1229,1235,1238,1241,1244,1253,1261,1266,1274,1281,1284,1287,1289, + 1300,1302,1305,1308,1311,1314,1317,1319,1331,1337,1345,1347,1357, + 1390,1395,1399,1403,1410,1417,1423,1427,1430,1437,1460,1465,1469, + 1477,1486,1493,1499,1506,1509,1515,1522,1530,1539,1548,1555,1575, + 1582,1584,1591,1601,1609,1613,1617,1630,1639,1655,1659,1664,1669, + 1672,1675,1678,1681,1684,1689,1698,1702,1709,1712,1715,1718,1730, + 1736,1762,1770,1774,1777,1780,1783,1786,1789,1792,1795,1804,1814, + 1817,1837,1843,1849,1852,1854,1861,1868,1881,1886,1895,1903,1911, + 1924,1937,1953,1957,1972,1978,1981,1984,1987,1990,1994,2009,2012, + 2023,2037,2071,2079,2084,2092,2097,2102,2109,2117,2125,2133,2139, + 2146,2156,2160,2168,2177,2180,2184,2191,2197,2201,2207,2211,2223, + 2232,2243,2247,2254,2266,2276,2279,2286,2292,2296,2299,2302,2308, + 2312,2316,2321,2325,2329,2333,2341,2345,2349,2353,2357,2365,2369, + 2373,2381,2386,2391,2395,2399,2406,2415,2423,2435,2453,2456,2462, + 2488,2491,2497,2505,2513,2526,2533,2536,2539,2542,2545,2548,2551, + 2554,2557,2560,2563,2568,2571,2574,2577,2580,2583,2586,2589,2592, + 2595,2598,2600,2606,2610,2613,2616,2619,2622,2625,2632,2636,2639, + 2642,2645,2648,2651,2658,2661,2669,2673,2680,2682,2685,2690,2693, + 2697,2702,2708,2716,2724,2734,2737,2741,2745,2750,2757,2761,2763, + 2767,2774,2779,2792,2800,2819,2829,2842,2852,2856,2860,2866,2873, + 2880,2889,2896,2916,2919,2933,2948,2952,2972,2984,2990,2993,2996, + 3002,3008,3015,3023,3029,3033,3038,3041,3045,3052,3057,3062,3065, + 3067,3075,3083,3087,3091,3095,3112,3129,3136,3145,3150,3153,3156, + 3160,3175,3189,3192,3203,3207,3210,3213,3217,3222,3225,3228,3231, + 3234,3237,3243,3246,3249,3252,3255,3258,3261,3264,3267,3270,3274, + 3276,3282,3287,3290,3293,3296,3299,3305,3308,3311,3314,3317,3320, + 3323,3326,3329,3332,3336,3338,3340,3345,3350,3354,3358,3363,3368, + 3377,3387,3395,3407,3410,3416,3423,3430,3437,3444,3454,3456,3460, + 3464,3471,3476,3480,3484,3487,3490,3501,3505,3507,3510,3523,3526, + 3529,3541,3544,3551,3560,3565,3567,3569,3586,3589,3597,3600,3604, + 3607,3610,3613,3616,3628,3636,3643,3646,3653,3656,3661,3668,3676, + 3682,3687,3691,3696,3700,3707,3721,3724,3731,3739,3749,3752,3761, + 3770,3773,3779,3782,3787,3790,3803,3809,3811,3821,3827,3830,3840, + 3845,3847,3863,3869,3871,3878,3885,3899,3905,3908,3911,3914,3923, + 3930,3936,3945,3949,3957,3967,3977,3982,3986,3992,3997,4002,4009, + 4013,4016,4021,4024,4028,4033,4044,4046,4055,4078,4088,4091,4098, + 4101,4111,4118,4121,4123,4134,4144,4146,4155,4160,4169,4182,4186, + 4198,4202,4211,4230,4248,4260,4275,4279,4295,4302,4316,4321,4331, + 4333,4341,4349,4357,4365,4373,4381,4392,4396,4404,4420,4424,4429, + 4442,4451,4453,4462,4467,4473,4480,4485,4494,4502,4510,4518,4528, + 4533,4592,4598,4607,4609,4625,4633,4637,4639,4645,4650,4667,4693, + 4698,4700,4728,4745,4750,4759,4770,4777,4783,4788,4817,4825,4834, + 4837,4847,4861,4868 ]; private static __ATN: antlr.ATN; @@ -34247,8 +34486,11 @@ export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public poolPath(): PoolPathContext | null { - return this.getRuleContext(0, PoolPathContext); + public poolPathAllowEmpty(): PoolPathAllowEmptyContext | null { + return this.getRuleContext(0, PoolPathAllowEmptyContext); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_columnName; @@ -34303,6 +34545,39 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { } +export class ColumnNamePathAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public poolPathAllowEmpty(): PoolPathAllowEmptyContext | null { + return this.getRuleContext(0, PoolPathAllowEmptyContext); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_columnNamePathAllowEmpty; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterColumnNamePathAllowEmpty) { + listener.enterColumnNamePathAllowEmpty(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitColumnNamePathAllowEmpty) { + listener.exitColumnNamePathAllowEmpty(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePathAllowEmpty) { + return visitor.visitColumnNamePathAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -39253,15 +39528,6 @@ export class JoinSourceContext extends antlr.ParserRuleContext { return this.getToken(HiveSqlParser.KW_ON, i); } } - public expression(): ExpressionContext[]; - public expression(i: number): ExpressionContext | null; - public expression(i?: number): ExpressionContext[] | ExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ExpressionContext); - } - - return this.getRuleContext(i, ExpressionContext); - } public KW_USING(): antlr.TerminalNode[]; public KW_USING(i: number): antlr.TerminalNode | null; public KW_USING(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -39280,6 +39546,33 @@ export class JoinSourceContext extends antlr.ParserRuleContext { return this.getRuleContext(i, ColumnParenthesesListContext); } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext[]; + public columnNamePathAllowEmpty(i: number): ColumnNamePathAllowEmptyContext | null; + public columnNamePathAllowEmpty(i?: number): ColumnNamePathAllowEmptyContext[] | ColumnNamePathAllowEmptyContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnNamePathAllowEmptyContext); + } + + return this.getRuleContext(i, ColumnNamePathAllowEmptyContext); + } + public EQUAL(): antlr.TerminalNode[]; + public EQUAL(i: number): antlr.TerminalNode | null; + public EQUAL(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.EQUAL); + } else { + return this.getToken(HiveSqlParser.EQUAL, i); + } + } public override get ruleIndex(): number { return HiveSqlParser.RULE_joinSource; } @@ -40294,8 +40587,11 @@ export class WhereClauseContext extends antlr.ParserRuleContext { public KW_WHERE(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_WHERE, 0)!; } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNamePathAllowEmptyContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_whereClause; @@ -41379,8 +41675,11 @@ export class HavingClauseContext extends antlr.ParserRuleContext { public KW_HAVING(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_HAVING, 0)!; } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNamePathAllowEmptyContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_havingClause; @@ -46023,6 +46322,33 @@ export class DecimalContext extends antlr.ParserRuleContext { } +export class EmptyColumnContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_emptyColumn; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterEmptyColumn) { + listener.enterEmptyColumn(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitEmptyColumn) { + listener.exitEmptyColumn(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitEmptyColumn) { + return visitor.visitEmptyColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PoolPathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -46068,6 +46394,60 @@ export class PoolPathContext extends antlr.ParserRuleContext { } +export class PoolPathAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public id_(): Id_Context[]; + public id_(i: number): Id_Context | null; + public id_(i?: number): Id_Context[] | Id_Context | null { + if (i === undefined) { + return this.getRuleContexts(Id_Context); + } + + return this.getRuleContext(i, Id_Context); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.DOT); + } else { + return this.getToken(HiveSqlParser.DOT, i); + } + } + public emptyColumn(): EmptyColumnContext[]; + public emptyColumn(i: number): EmptyColumnContext | null; + public emptyColumn(i?: number): EmptyColumnContext[] | EmptyColumnContext | null { + if (i === undefined) { + return this.getRuleContexts(EmptyColumnContext); + } + + return this.getRuleContext(i, EmptyColumnContext); + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_poolPathAllowEmpty; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterPoolPathAllowEmpty) { + listener.enterPoolPathAllowEmpty(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitPoolPathAllowEmpty) { + listener.exitPoolPathAllowEmpty(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitPoolPathAllowEmpty) { + return visitor.visitPoolPathAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TriggerAtomExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index 3fb660b0..1b056edb 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -138,6 +138,7 @@ import { ColumnNameColonTypeListContext } from "./HiveSqlParser.js"; import { ColumnNameListContext } from "./HiveSqlParser.js"; import { ColumnNameContext } from "./HiveSqlParser.js"; import { ColumnNamePathContext } from "./HiveSqlParser.js"; +import { ColumnNamePathAllowEmptyContext } from "./HiveSqlParser.js"; import { ColumnNameCreateContext } from "./HiveSqlParser.js"; import { ExtColumnNameContext } from "./HiveSqlParser.js"; import { ColumnNameOrderListContext } from "./HiveSqlParser.js"; @@ -358,7 +359,9 @@ import { HourContext } from "./HiveSqlParser.js"; import { MinuteContext } from "./HiveSqlParser.js"; import { SecondContext } from "./HiveSqlParser.js"; import { DecimalContext } from "./HiveSqlParser.js"; +import { EmptyColumnContext } from "./HiveSqlParser.js"; import { PoolPathContext } from "./HiveSqlParser.js"; +import { PoolPathAllowEmptyContext } from "./HiveSqlParser.js"; import { TriggerAtomExpressionContext } from "./HiveSqlParser.js"; import { TriggerActionExpressionContext } from "./HiveSqlParser.js"; import { PoolAssignContext } from "./HiveSqlParser.js"; @@ -1670,6 +1673,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + */ + enterColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + */ + exitColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.columnNameCreate`. * @param ctx the parse tree @@ -3878,6 +3891,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDecimal?: (ctx: DecimalContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + enterEmptyColumn?: (ctx: EmptyColumnContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + exitEmptyColumn?: (ctx: EmptyColumnContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.poolPath`. * @param ctx the parse tree @@ -3888,6 +3911,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPoolPath?: (ctx: PoolPathContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.poolPathAllowEmpty`. + * @param ctx the parse tree + */ + enterPoolPathAllowEmpty?: (ctx: PoolPathAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.poolPathAllowEmpty`. + * @param ctx the parse tree + */ + exitPoolPathAllowEmpty?: (ctx: PoolPathAllowEmptyContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.triggerAtomExpression`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index 81023adc..4b3c1ed5 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -138,6 +138,7 @@ import { ColumnNameColonTypeListContext } from "./HiveSqlParser.js"; import { ColumnNameListContext } from "./HiveSqlParser.js"; import { ColumnNameContext } from "./HiveSqlParser.js"; import { ColumnNamePathContext } from "./HiveSqlParser.js"; +import { ColumnNamePathAllowEmptyContext } from "./HiveSqlParser.js"; import { ColumnNameCreateContext } from "./HiveSqlParser.js"; import { ExtColumnNameContext } from "./HiveSqlParser.js"; import { ColumnNameOrderListContext } from "./HiveSqlParser.js"; @@ -358,7 +359,9 @@ import { HourContext } from "./HiveSqlParser.js"; import { MinuteContext } from "./HiveSqlParser.js"; import { SecondContext } from "./HiveSqlParser.js"; import { DecimalContext } from "./HiveSqlParser.js"; +import { EmptyColumnContext } from "./HiveSqlParser.js"; import { PoolPathContext } from "./HiveSqlParser.js"; +import { PoolPathAllowEmptyContext } from "./HiveSqlParser.js"; import { TriggerAtomExpressionContext } from "./HiveSqlParser.js"; import { TriggerActionExpressionContext } from "./HiveSqlParser.js"; import { PoolAssignContext } from "./HiveSqlParser.js"; @@ -1153,6 +1156,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.columnNameCreate`. * @param ctx the parse tree @@ -2477,12 +2486,24 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.emptyColumn`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEmptyColumn?: (ctx: EmptyColumnContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.poolPath`. * @param ctx the parse tree * @return the visitor result */ visitPoolPath?: (ctx: PoolPathContext) => Result; + /** + * Visit a parse tree produced by `HiveSqlParser.poolPathAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPoolPathAllowEmpty?: (ctx: PoolPathAllowEmptyContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.triggerAtomExpression`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index 8ab68275..0e6af396 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -679,8 +679,10 @@ databaseNamePath tableNamePath viewNamePath functionNamePath +emptyColumn columnNamePath columnName +columnNameAllowEmpty tableOrViewPath createCommonItem assignmentList @@ -774,6 +776,7 @@ pathSpecification privilege objectType qualifiedName +qualifiedNameAllowEmpty principal identifier number @@ -782,4 +785,4 @@ nonReserved atn: -[4, 1, 289, 2814, 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, 1, 0, 5, 0, 394, 8, 0, 10, 0, 12, 0, 397, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 403, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 440, 8, 4, 1, 5, 1, 5, 3, 5, 444, 8, 5, 1, 5, 1, 5, 3, 5, 448, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 455, 8, 5, 10, 5, 12, 5, 458, 9, 5, 1, 5, 1, 5, 3, 5, 462, 8, 5, 1, 5, 1, 5, 3, 5, 466, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 472, 8, 5, 3, 5, 474, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 479, 8, 5, 1, 6, 1, 6, 3, 6, 483, 8, 6, 1, 6, 1, 6, 3, 6, 487, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 494, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 499, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 505, 8, 7, 1, 7, 1, 7, 3, 7, 509, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 516, 8, 7, 10, 7, 12, 7, 519, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 525, 8, 7, 1, 7, 1, 7, 3, 7, 529, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 534, 8, 7, 3, 7, 536, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 541, 8, 7, 1, 7, 3, 7, 544, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 551, 8, 7, 1, 7, 1, 7, 3, 7, 555, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 560, 8, 8, 1, 8, 1, 8, 3, 8, 564, 8, 8, 1, 8, 3, 8, 567, 8, 8, 1, 8, 1, 8, 3, 8, 571, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 579, 8, 9, 1, 9, 1, 9, 3, 9, 583, 8, 9, 1, 9, 1, 9, 3, 9, 587, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 595, 8, 11, 1, 11, 1, 11, 3, 11, 599, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 606, 8, 11, 10, 11, 12, 11, 609, 9, 11, 3, 11, 611, 8, 11, 1, 11, 3, 11, 614, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 620, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 627, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 638, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 643, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 648, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 653, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 658, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 665, 8, 12, 10, 12, 12, 12, 668, 9, 12, 3, 12, 670, 8, 12, 1, 12, 3, 12, 673, 8, 12, 1, 12, 1, 12, 3, 12, 677, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 703, 8, 13, 1, 14, 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, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 729, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 738, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 748, 8, 16, 1, 16, 3, 16, 751, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 765, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 783, 8, 20, 3, 20, 785, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 792, 8, 20, 10, 20, 12, 20, 795, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 805, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 814, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 821, 8, 22, 1, 22, 1, 22, 3, 22, 825, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 832, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 838, 8, 23, 1, 23, 3, 23, 841, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 846, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 853, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 867, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 880, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 885, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 890, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 896, 8, 27, 1, 27, 1, 27, 1, 27, 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, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 932, 8, 32, 1, 32, 3, 32, 935, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 941, 8, 33, 1, 33, 3, 33, 944, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 950, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 956, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 968, 8, 35, 3, 35, 970, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 981, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 989, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 994, 8, 38, 1, 38, 1, 38, 3, 38, 998, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1003, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1010, 8, 40, 1, 40, 1, 40, 3, 40, 1014, 8, 40, 1, 41, 1, 41, 3, 41, 1018, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1024, 8, 41, 1, 42, 1, 42, 3, 42, 1028, 8, 42, 1, 42, 1, 42, 3, 42, 1032, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1039, 8, 42, 10, 42, 12, 42, 1042, 9, 42, 3, 42, 1044, 8, 42, 1, 42, 3, 42, 1047, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1055, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1069, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1076, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1089, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1095, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1100, 8, 49, 1, 49, 3, 49, 1103, 8, 49, 1, 50, 3, 50, 1106, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1111, 8, 50, 1, 50, 1, 50, 3, 50, 1115, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1122, 8, 50, 10, 50, 12, 50, 1125, 9, 50, 1, 50, 1, 50, 3, 50, 1129, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1135, 8, 51, 1, 52, 1, 52, 3, 52, 1139, 8, 52, 1, 52, 1, 52, 3, 52, 1143, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1148, 8, 53, 1, 53, 3, 53, 1151, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1157, 8, 53, 10, 53, 12, 53, 1160, 9, 53, 3, 53, 1162, 8, 53, 1, 53, 3, 53, 1165, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1175, 8, 54, 10, 54, 12, 54, 1178, 9, 54, 3, 54, 1180, 8, 54, 1, 54, 3, 54, 1183, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1188, 8, 55, 1, 55, 1, 55, 3, 55, 1192, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1208, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1213, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1218, 8, 57, 10, 57, 12, 57, 1221, 9, 57, 3, 57, 1223, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1229, 8, 58, 1, 58, 3, 58, 1232, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1237, 8, 58, 10, 58, 12, 58, 1240, 9, 58, 3, 58, 1242, 8, 58, 1, 59, 1, 59, 3, 59, 1246, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1251, 8, 59, 1, 59, 3, 59, 1254, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1259, 8, 59, 10, 59, 12, 59, 1262, 9, 59, 3, 59, 1264, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1288, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1302, 8, 65, 1, 65, 1, 65, 3, 65, 1306, 8, 65, 1, 66, 1, 66, 3, 66, 1310, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1330, 8, 68, 3, 68, 1332, 8, 68, 3, 68, 1334, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1343, 8, 69, 3, 69, 1345, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1354, 8, 70, 3, 70, 1356, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1365, 8, 71, 3, 71, 1367, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1372, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1381, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1390, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1399, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1410, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1416, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1421, 8, 78, 1, 78, 3, 78, 1424, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1437, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1447, 8, 80, 1, 80, 1, 80, 3, 80, 1451, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1456, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1465, 8, 82, 10, 82, 12, 82, 1468, 9, 82, 1, 82, 1, 82, 3, 82, 1472, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1503, 8, 93, 10, 93, 12, 93, 1506, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1511, 8, 94, 10, 94, 12, 94, 1514, 9, 94, 1, 95, 1, 95, 3, 95, 1518, 8, 95, 1, 96, 1, 96, 3, 96, 1522, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 1528, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1533, 8, 99, 1, 99, 3, 99, 1536, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1541, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1546, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1551, 8, 99, 1, 99, 1, 99, 3, 99, 1555, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1564, 8, 99, 1, 99, 3, 99, 1567, 8, 99, 1, 99, 1, 99, 3, 99, 1571, 8, 99, 1, 100, 1, 100, 1, 100, 5, 100, 1576, 8, 100, 10, 100, 12, 100, 1579, 9, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1587, 8, 102, 1, 102, 1, 102, 3, 102, 1591, 8, 102, 5, 102, 1593, 8, 102, 10, 102, 12, 102, 1596, 9, 102, 1, 102, 1, 102, 1, 103, 1, 103, 3, 103, 1602, 8, 103, 1, 104, 3, 104, 1605, 8, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1613, 8, 105, 10, 105, 12, 105, 1616, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1622, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1627, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1632, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1637, 8, 106, 1, 106, 1, 106, 5, 106, 1641, 8, 106, 10, 106, 12, 106, 1644, 9, 106, 3, 106, 1646, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1655, 8, 107, 1, 107, 3, 107, 1658, 8, 107, 1, 107, 3, 107, 1661, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1667, 8, 108, 1, 109, 1, 109, 1, 109, 3, 109, 1672, 8, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1680, 8, 111, 10, 111, 12, 111, 1683, 9, 111, 3, 111, 1685, 8, 111, 1, 111, 3, 111, 1688, 8, 111, 1, 111, 1, 111, 3, 111, 1692, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 5, 113, 1700, 8, 113, 10, 113, 12, 113, 1703, 9, 113, 3, 113, 1705, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1711, 8, 114, 1, 114, 1, 114, 5, 114, 1715, 8, 114, 10, 114, 12, 114, 1718, 9, 114, 3, 114, 1720, 8, 114, 1, 115, 3, 115, 1723, 8, 115, 1, 115, 1, 115, 3, 115, 1727, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1737, 8, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 5, 119, 1746, 8, 119, 10, 119, 12, 119, 1749, 9, 119, 1, 119, 1, 119, 3, 119, 1753, 8, 119, 1, 119, 3, 119, 1756, 8, 119, 1, 120, 1, 120, 3, 120, 1760, 8, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 1767, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1775, 8, 121, 10, 121, 12, 121, 1778, 9, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1789, 8, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1795, 8, 122, 3, 122, 1797, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1806, 8, 123, 1, 123, 3, 123, 1809, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1816, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1826, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1832, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1838, 8, 127, 10, 127, 12, 127, 1841, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 1849, 8, 128, 10, 128, 12, 128, 1852, 9, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 5, 129, 1859, 8, 129, 10, 129, 12, 129, 1862, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1872, 8, 130, 3, 130, 1874, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1880, 8, 130, 1, 131, 1, 131, 1, 131, 3, 131, 1885, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1893, 8, 132, 10, 132, 12, 132, 1896, 9, 132, 3, 132, 1898, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1904, 8, 132, 3, 132, 1906, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1914, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1920, 8, 133, 1, 133, 5, 133, 1923, 8, 133, 10, 133, 12, 133, 1926, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1935, 8, 134, 10, 134, 12, 134, 1938, 9, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1944, 8, 134, 1, 135, 1, 135, 3, 135, 1948, 8, 135, 1, 135, 1, 135, 3, 135, 1952, 8, 135, 1, 136, 1, 136, 3, 136, 1956, 8, 136, 1, 136, 3, 136, 1959, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1966, 8, 136, 10, 136, 12, 136, 1969, 9, 136, 3, 136, 1971, 8, 136, 1, 136, 3, 136, 1974, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1979, 8, 136, 1, 136, 3, 136, 1982, 8, 136, 1, 137, 1, 137, 1, 137, 5, 137, 1987, 8, 137, 10, 137, 12, 137, 1990, 9, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 140, 3, 140, 1999, 8, 140, 1, 140, 1, 140, 1, 140, 5, 140, 2004, 8, 140, 10, 140, 12, 140, 2007, 9, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2015, 8, 142, 10, 142, 12, 142, 2018, 9, 142, 3, 142, 2020, 8, 142, 1, 142, 1, 142, 3, 142, 2024, 8, 142, 1, 143, 1, 143, 3, 143, 2028, 8, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2037, 8, 145, 1, 145, 1, 145, 3, 145, 2041, 8, 145, 1, 145, 3, 145, 2044, 8, 145, 1, 146, 3, 146, 2047, 8, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 2058, 8, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2074, 8, 150, 5, 150, 2076, 8, 150, 10, 150, 12, 150, 2079, 9, 150, 1, 151, 3, 151, 2082, 8, 151, 1, 151, 1, 151, 3, 151, 2086, 8, 151, 1, 151, 1, 151, 3, 151, 2090, 8, 151, 1, 151, 1, 151, 3, 151, 2094, 8, 151, 1, 151, 1, 151, 3, 151, 2098, 8, 151, 1, 151, 1, 151, 3, 151, 2102, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2112, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 2121, 8, 152, 10, 152, 12, 152, 2124, 9, 152, 1, 152, 1, 152, 3, 152, 2128, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 2141, 8, 153, 3, 153, 2143, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 2149, 8, 155, 1, 155, 1, 155, 3, 155, 2153, 8, 155, 3, 155, 2155, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2161, 8, 156, 10, 156, 12, 156, 2164, 9, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2172, 8, 157, 1, 158, 3, 158, 2175, 8, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 2188, 8, 160, 10, 160, 12, 160, 2191, 9, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2196, 8, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 3, 162, 2204, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2211, 8, 164, 1, 164, 1, 164, 3, 164, 2215, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2223, 8, 164, 10, 164, 12, 164, 2226, 9, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2236, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2244, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 2251, 8, 165, 10, 165, 12, 165, 2254, 9, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2259, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2264, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2270, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2276, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2281, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2286, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2292, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2303, 8, 166, 10, 166, 12, 166, 2306, 9, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2311, 8, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2316, 8, 167, 10, 167, 12, 167, 2319, 9, 167, 3, 167, 2321, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2328, 8, 167, 10, 167, 12, 167, 2331, 9, 167, 3, 167, 2333, 8, 167, 1, 167, 1, 167, 3, 167, 2337, 8, 167, 1, 167, 3, 167, 2340, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2366, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2372, 8, 168, 5, 168, 2374, 8, 168, 10, 168, 12, 168, 2377, 9, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2386, 8, 168, 10, 168, 12, 168, 2389, 9, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2398, 8, 168, 1, 168, 3, 168, 2401, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2412, 8, 168, 10, 168, 12, 168, 2415, 9, 168, 3, 168, 2417, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 4, 168, 2434, 8, 168, 11, 168, 12, 168, 2435, 1, 168, 1, 168, 3, 168, 2440, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 4, 168, 2446, 8, 168, 11, 168, 12, 168, 2447, 1, 168, 1, 168, 3, 168, 2452, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2475, 8, 168, 10, 168, 12, 168, 2478, 9, 168, 3, 168, 2480, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2489, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2495, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2501, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2507, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2518, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2527, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2547, 8, 168, 10, 168, 12, 168, 2550, 9, 168, 3, 168, 2552, 8, 168, 1, 168, 3, 168, 2555, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2565, 8, 168, 10, 168, 12, 168, 2568, 9, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2574, 8, 169, 3, 169, 2576, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2598, 8, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 2625, 8, 176, 10, 176, 12, 176, 2628, 9, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2634, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 2640, 8, 176, 10, 176, 12, 176, 2643, 9, 176, 1, 176, 1, 176, 3, 176, 2647, 8, 176, 3, 176, 2649, 8, 176, 1, 176, 1, 176, 5, 176, 2653, 8, 176, 10, 176, 12, 176, 2656, 9, 176, 1, 177, 1, 177, 1, 178, 1, 178, 3, 178, 2662, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2668, 8, 179, 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, 5, 182, 2683, 8, 182, 10, 182, 12, 182, 2686, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2693, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 2700, 8, 183, 10, 183, 12, 183, 2703, 9, 183, 3, 183, 2705, 8, 183, 1, 183, 3, 183, 2708, 8, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2728, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2739, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2746, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 2751, 8, 187, 10, 187, 12, 187, 2754, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2767, 8, 188, 3, 188, 2769, 8, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 5, 190, 2776, 8, 190, 10, 190, 12, 190, 2779, 9, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2787, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2794, 8, 192, 1, 193, 3, 193, 2797, 8, 193, 1, 193, 1, 193, 3, 193, 2801, 8, 193, 1, 193, 1, 193, 3, 193, 2805, 8, 193, 1, 193, 3, 193, 2808, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 10, 793, 1466, 1642, 1681, 1701, 1716, 1747, 1776, 1850, 2375, 6, 266, 300, 328, 332, 336, 352, 196, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3126, 0, 395, 1, 0, 0, 0, 2, 400, 1, 0, 0, 0, 4, 426, 1, 0, 0, 0, 6, 428, 1, 0, 0, 0, 8, 439, 1, 0, 0, 0, 10, 441, 1, 0, 0, 0, 12, 480, 1, 0, 0, 0, 14, 502, 1, 0, 0, 0, 16, 556, 1, 0, 0, 0, 18, 575, 1, 0, 0, 0, 20, 588, 1, 0, 0, 0, 22, 592, 1, 0, 0, 0, 24, 654, 1, 0, 0, 0, 26, 702, 1, 0, 0, 0, 28, 704, 1, 0, 0, 0, 30, 712, 1, 0, 0, 0, 32, 732, 1, 0, 0, 0, 34, 752, 1, 0, 0, 0, 36, 759, 1, 0, 0, 0, 38, 768, 1, 0, 0, 0, 40, 776, 1, 0, 0, 0, 42, 798, 1, 0, 0, 0, 44, 808, 1, 0, 0, 0, 46, 826, 1, 0, 0, 0, 48, 847, 1, 0, 0, 0, 50, 868, 1, 0, 0, 0, 52, 874, 1, 0, 0, 0, 54, 891, 1, 0, 0, 0, 56, 900, 1, 0, 0, 0, 58, 907, 1, 0, 0, 0, 60, 915, 1, 0, 0, 0, 62, 922, 1, 0, 0, 0, 64, 929, 1, 0, 0, 0, 66, 938, 1, 0, 0, 0, 68, 949, 1, 0, 0, 0, 70, 951, 1, 0, 0, 0, 72, 971, 1, 0, 0, 0, 74, 988, 1, 0, 0, 0, 76, 990, 1, 0, 0, 0, 78, 999, 1, 0, 0, 0, 80, 1006, 1, 0, 0, 0, 82, 1015, 1, 0, 0, 0, 84, 1025, 1, 0, 0, 0, 86, 1048, 1, 0, 0, 0, 88, 1054, 1, 0, 0, 0, 90, 1056, 1, 0, 0, 0, 92, 1063, 1, 0, 0, 0, 94, 1075, 1, 0, 0, 0, 96, 1077, 1, 0, 0, 0, 98, 1084, 1, 0, 0, 0, 100, 1105, 1, 0, 0, 0, 102, 1134, 1, 0, 0, 0, 104, 1136, 1, 0, 0, 0, 106, 1144, 1, 0, 0, 0, 108, 1166, 1, 0, 0, 0, 110, 1184, 1, 0, 0, 0, 112, 1207, 1, 0, 0, 0, 114, 1209, 1, 0, 0, 0, 116, 1224, 1, 0, 0, 0, 118, 1243, 1, 0, 0, 0, 120, 1265, 1, 0, 0, 0, 122, 1270, 1, 0, 0, 0, 124, 1275, 1, 0, 0, 0, 126, 1280, 1, 0, 0, 0, 128, 1285, 1, 0, 0, 0, 130, 1292, 1, 0, 0, 0, 132, 1307, 1, 0, 0, 0, 134, 1313, 1, 0, 0, 0, 136, 1333, 1, 0, 0, 0, 138, 1335, 1, 0, 0, 0, 140, 1346, 1, 0, 0, 0, 142, 1357, 1, 0, 0, 0, 144, 1371, 1, 0, 0, 0, 146, 1373, 1, 0, 0, 0, 148, 1382, 1, 0, 0, 0, 150, 1391, 1, 0, 0, 0, 152, 1400, 1, 0, 0, 0, 154, 1403, 1, 0, 0, 0, 156, 1411, 1, 0, 0, 0, 158, 1427, 1, 0, 0, 0, 160, 1431, 1, 0, 0, 0, 162, 1455, 1, 0, 0, 0, 164, 1457, 1, 0, 0, 0, 166, 1473, 1, 0, 0, 0, 168, 1476, 1, 0, 0, 0, 170, 1480, 1, 0, 0, 0, 172, 1483, 1, 0, 0, 0, 174, 1487, 1, 0, 0, 0, 176, 1489, 1, 0, 0, 0, 178, 1491, 1, 0, 0, 0, 180, 1493, 1, 0, 0, 0, 182, 1495, 1, 0, 0, 0, 184, 1497, 1, 0, 0, 0, 186, 1499, 1, 0, 0, 0, 188, 1507, 1, 0, 0, 0, 190, 1517, 1, 0, 0, 0, 192, 1521, 1, 0, 0, 0, 194, 1523, 1, 0, 0, 0, 196, 1527, 1, 0, 0, 0, 198, 1532, 1, 0, 0, 0, 200, 1572, 1, 0, 0, 0, 202, 1580, 1, 0, 0, 0, 204, 1584, 1, 0, 0, 0, 206, 1599, 1, 0, 0, 0, 208, 1604, 1, 0, 0, 0, 210, 1608, 1, 0, 0, 0, 212, 1617, 1, 0, 0, 0, 214, 1647, 1, 0, 0, 0, 216, 1662, 1, 0, 0, 0, 218, 1668, 1, 0, 0, 0, 220, 1673, 1, 0, 0, 0, 222, 1675, 1, 0, 0, 0, 224, 1693, 1, 0, 0, 0, 226, 1696, 1, 0, 0, 0, 228, 1706, 1, 0, 0, 0, 230, 1726, 1, 0, 0, 0, 232, 1736, 1, 0, 0, 0, 234, 1738, 1, 0, 0, 0, 236, 1740, 1, 0, 0, 0, 238, 1755, 1, 0, 0, 0, 240, 1757, 1, 0, 0, 0, 242, 1764, 1, 0, 0, 0, 244, 1796, 1, 0, 0, 0, 246, 1808, 1, 0, 0, 0, 248, 1815, 1, 0, 0, 0, 250, 1825, 1, 0, 0, 0, 252, 1827, 1, 0, 0, 0, 254, 1833, 1, 0, 0, 0, 256, 1844, 1, 0, 0, 0, 258, 1855, 1, 0, 0, 0, 260, 1863, 1, 0, 0, 0, 262, 1881, 1, 0, 0, 0, 264, 1886, 1, 0, 0, 0, 266, 1907, 1, 0, 0, 0, 268, 1943, 1, 0, 0, 0, 270, 1945, 1, 0, 0, 0, 272, 1953, 1, 0, 0, 0, 274, 1983, 1, 0, 0, 0, 276, 1991, 1, 0, 0, 0, 278, 1994, 1, 0, 0, 0, 280, 1998, 1, 0, 0, 0, 282, 2008, 1, 0, 0, 0, 284, 2023, 1, 0, 0, 0, 286, 2025, 1, 0, 0, 0, 288, 2032, 1, 0, 0, 0, 290, 2043, 1, 0, 0, 0, 292, 2046, 1, 0, 0, 0, 294, 2050, 1, 0, 0, 0, 296, 2052, 1, 0, 0, 0, 298, 2057, 1, 0, 0, 0, 300, 2061, 1, 0, 0, 0, 302, 2111, 1, 0, 0, 0, 304, 2127, 1, 0, 0, 0, 306, 2129, 1, 0, 0, 0, 308, 2144, 1, 0, 0, 0, 310, 2146, 1, 0, 0, 0, 312, 2156, 1, 0, 0, 0, 314, 2171, 1, 0, 0, 0, 316, 2174, 1, 0, 0, 0, 318, 2178, 1, 0, 0, 0, 320, 2182, 1, 0, 0, 0, 322, 2197, 1, 0, 0, 0, 324, 2203, 1, 0, 0, 0, 326, 2205, 1, 0, 0, 0, 328, 2214, 1, 0, 0, 0, 330, 2285, 1, 0, 0, 0, 332, 2291, 1, 0, 0, 0, 334, 2307, 1, 0, 0, 0, 336, 2554, 1, 0, 0, 0, 338, 2575, 1, 0, 0, 0, 340, 2577, 1, 0, 0, 0, 342, 2579, 1, 0, 0, 0, 344, 2581, 1, 0, 0, 0, 346, 2597, 1, 0, 0, 0, 348, 2599, 1, 0, 0, 0, 350, 2601, 1, 0, 0, 0, 352, 2648, 1, 0, 0, 0, 354, 2657, 1, 0, 0, 0, 356, 2661, 1, 0, 0, 0, 358, 2667, 1, 0, 0, 0, 360, 2669, 1, 0, 0, 0, 362, 2674, 1, 0, 0, 0, 364, 2679, 1, 0, 0, 0, 366, 2687, 1, 0, 0, 0, 368, 2727, 1, 0, 0, 0, 370, 2738, 1, 0, 0, 0, 372, 2745, 1, 0, 0, 0, 374, 2747, 1, 0, 0, 0, 376, 2768, 1, 0, 0, 0, 378, 2770, 1, 0, 0, 0, 380, 2772, 1, 0, 0, 0, 382, 2786, 1, 0, 0, 0, 384, 2793, 1, 0, 0, 0, 386, 2807, 1, 0, 0, 0, 388, 2809, 1, 0, 0, 0, 390, 2811, 1, 0, 0, 0, 392, 394, 3, 2, 1, 0, 393, 392, 1, 0, 0, 0, 394, 397, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 398, 399, 5, 0, 0, 1, 399, 1, 1, 0, 0, 0, 400, 402, 3, 4, 2, 0, 401, 403, 5, 262, 0, 0, 402, 401, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 3, 1, 0, 0, 0, 404, 427, 3, 208, 104, 0, 405, 427, 3, 6, 3, 0, 406, 427, 3, 8, 4, 0, 407, 427, 3, 26, 13, 0, 408, 427, 3, 64, 32, 0, 409, 427, 3, 66, 33, 0, 410, 427, 3, 68, 34, 0, 411, 427, 3, 74, 37, 0, 412, 427, 3, 88, 44, 0, 413, 427, 3, 94, 47, 0, 414, 427, 3, 100, 50, 0, 415, 427, 3, 102, 51, 0, 416, 427, 3, 108, 54, 0, 417, 427, 3, 110, 55, 0, 418, 427, 3, 112, 56, 0, 419, 427, 3, 144, 72, 0, 420, 427, 3, 152, 76, 0, 421, 427, 3, 154, 77, 0, 422, 427, 3, 156, 78, 0, 423, 427, 3, 158, 79, 0, 424, 427, 3, 160, 80, 0, 425, 427, 3, 162, 81, 0, 426, 404, 1, 0, 0, 0, 426, 405, 1, 0, 0, 0, 426, 406, 1, 0, 0, 0, 426, 407, 1, 0, 0, 0, 426, 408, 1, 0, 0, 0, 426, 409, 1, 0, 0, 0, 426, 410, 1, 0, 0, 0, 426, 411, 1, 0, 0, 0, 426, 412, 1, 0, 0, 0, 426, 413, 1, 0, 0, 0, 426, 414, 1, 0, 0, 0, 426, 415, 1, 0, 0, 0, 426, 416, 1, 0, 0, 0, 426, 417, 1, 0, 0, 0, 426, 418, 1, 0, 0, 0, 426, 419, 1, 0, 0, 0, 426, 420, 1, 0, 0, 0, 426, 421, 1, 0, 0, 0, 426, 422, 1, 0, 0, 0, 426, 423, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 5, 1, 0, 0, 0, 428, 429, 5, 203, 0, 0, 429, 430, 3, 184, 92, 0, 430, 7, 1, 0, 0, 0, 431, 440, 3, 18, 9, 0, 432, 440, 3, 20, 10, 0, 433, 440, 3, 22, 11, 0, 434, 440, 3, 24, 12, 0, 435, 440, 3, 16, 8, 0, 436, 440, 3, 14, 7, 0, 437, 440, 3, 12, 6, 0, 438, 440, 3, 10, 5, 0, 439, 431, 1, 0, 0, 0, 439, 432, 1, 0, 0, 0, 439, 433, 1, 0, 0, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 9, 1, 0, 0, 0, 441, 443, 5, 37, 0, 0, 442, 444, 5, 19, 0, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 447, 5, 188, 0, 0, 446, 448, 3, 172, 86, 0, 447, 446, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 465, 3, 174, 87, 0, 450, 451, 5, 265, 0, 0, 451, 456, 3, 218, 109, 0, 452, 453, 5, 263, 0, 0, 453, 455, 3, 218, 109, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 461, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 460, 5, 263, 0, 0, 460, 462, 3, 212, 106, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 5, 266, 0, 0, 464, 466, 1, 0, 0, 0, 465, 450, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 473, 1, 0, 0, 0, 467, 468, 5, 17, 0, 0, 468, 471, 5, 26, 0, 0, 469, 472, 3, 312, 156, 0, 470, 472, 3, 256, 128, 0, 471, 469, 1, 0, 0, 0, 471, 470, 1, 0, 0, 0, 472, 474, 1, 0, 0, 0, 473, 467, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 478, 3, 198, 99, 0, 476, 477, 5, 9, 0, 0, 477, 479, 3, 208, 104, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 11, 1, 0, 0, 0, 480, 482, 5, 37, 0, 0, 481, 483, 5, 19, 0, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 5, 188, 0, 0, 485, 487, 3, 172, 86, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 489, 3, 174, 87, 0, 489, 493, 5, 115, 0, 0, 490, 494, 3, 186, 93, 0, 491, 492, 5, 147, 0, 0, 492, 494, 3, 338, 169, 0, 493, 490, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 494, 498, 1, 0, 0, 0, 495, 496, 5, 17, 0, 0, 496, 497, 5, 26, 0, 0, 497, 499, 3, 256, 128, 0, 498, 495, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 198, 99, 0, 501, 13, 1, 0, 0, 0, 502, 504, 5, 37, 0, 0, 503, 505, 5, 19, 0, 0, 504, 503, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 508, 5, 188, 0, 0, 507, 509, 3, 172, 86, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 528, 3, 174, 87, 0, 511, 512, 5, 265, 0, 0, 512, 517, 3, 220, 110, 0, 513, 514, 5, 263, 0, 0, 514, 516, 3, 220, 110, 0, 515, 513, 1, 0, 0, 0, 516, 519, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 524, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 520, 521, 5, 263, 0, 0, 521, 522, 5, 150, 0, 0, 522, 523, 5, 110, 0, 0, 523, 525, 3, 312, 156, 0, 524, 520, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 5, 266, 0, 0, 527, 529, 1, 0, 0, 0, 528, 511, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 535, 1, 0, 0, 0, 530, 531, 5, 150, 0, 0, 531, 533, 5, 110, 0, 0, 532, 534, 3, 312, 156, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 530, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 540, 1, 0, 0, 0, 537, 538, 5, 145, 0, 0, 538, 539, 5, 26, 0, 0, 539, 541, 3, 238, 119, 0, 540, 537, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 543, 1, 0, 0, 0, 542, 544, 3, 224, 112, 0, 543, 542, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 5, 23, 0, 0, 546, 547, 5, 9, 0, 0, 547, 550, 5, 111, 0, 0, 548, 549, 5, 25, 0, 0, 549, 551, 3, 254, 127, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 554, 1, 0, 0, 0, 552, 553, 5, 9, 0, 0, 553, 555, 3, 208, 104, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 15, 1, 0, 0, 0, 556, 557, 5, 37, 0, 0, 557, 559, 5, 212, 0, 0, 558, 560, 3, 172, 86, 0, 559, 558, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 563, 3, 178, 89, 0, 562, 564, 3, 204, 102, 0, 563, 562, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 566, 1, 0, 0, 0, 565, 567, 3, 224, 112, 0, 566, 565, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 570, 1, 0, 0, 0, 568, 569, 5, 25, 0, 0, 569, 571, 3, 254, 127, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 5, 9, 0, 0, 573, 574, 3, 208, 104, 0, 574, 17, 1, 0, 0, 0, 575, 576, 5, 37, 0, 0, 576, 578, 7, 0, 0, 0, 577, 579, 3, 172, 86, 0, 578, 577, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 582, 3, 176, 88, 0, 581, 583, 3, 224, 112, 0, 582, 581, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 585, 5, 24, 0, 0, 585, 587, 3, 338, 169, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 19, 1, 0, 0, 0, 588, 589, 5, 37, 0, 0, 589, 590, 5, 166, 0, 0, 590, 591, 3, 384, 192, 0, 591, 21, 1, 0, 0, 0, 592, 594, 5, 37, 0, 0, 593, 595, 5, 12, 0, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 598, 5, 84, 0, 0, 597, 599, 3, 172, 86, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 613, 3, 180, 90, 0, 601, 610, 5, 265, 0, 0, 602, 607, 3, 352, 176, 0, 603, 604, 5, 263, 0, 0, 604, 606, 3, 352, 176, 0, 605, 603, 1, 0, 0, 0, 606, 609, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 611, 1, 0, 0, 0, 609, 607, 1, 0, 0, 0, 610, 602, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 614, 5, 266, 0, 0, 613, 601, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 5, 160, 0, 0, 616, 619, 3, 352, 176, 0, 617, 618, 5, 102, 0, 0, 618, 620, 3, 352, 176, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 5, 24, 0, 0, 622, 626, 5, 274, 0, 0, 623, 624, 5, 104, 0, 0, 624, 625, 5, 249, 0, 0, 625, 627, 5, 274, 0, 0, 626, 623, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 206, 0, 0, 629, 630, 5, 249, 0, 0, 630, 631, 5, 274, 0, 0, 631, 632, 5, 126, 0, 0, 632, 633, 5, 249, 0, 0, 633, 637, 5, 274, 0, 0, 634, 635, 5, 18, 0, 0, 635, 636, 5, 249, 0, 0, 636, 638, 5, 274, 0, 0, 637, 634, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 642, 1, 0, 0, 0, 639, 640, 5, 20, 0, 0, 640, 641, 5, 249, 0, 0, 641, 643, 5, 274, 0, 0, 642, 639, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 647, 1, 0, 0, 0, 644, 645, 5, 187, 0, 0, 645, 646, 5, 249, 0, 0, 646, 648, 5, 274, 0, 0, 647, 644, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 652, 1, 0, 0, 0, 649, 650, 5, 76, 0, 0, 650, 651, 5, 249, 0, 0, 651, 653, 5, 274, 0, 0, 652, 649, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 23, 1, 0, 0, 0, 654, 655, 5, 37, 0, 0, 655, 657, 5, 84, 0, 0, 656, 658, 3, 172, 86, 0, 657, 656, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 672, 3, 180, 90, 0, 660, 669, 5, 265, 0, 0, 661, 666, 3, 352, 176, 0, 662, 663, 5, 263, 0, 0, 663, 665, 3, 352, 176, 0, 664, 662, 1, 0, 0, 0, 665, 668, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 669, 661, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 673, 5, 266, 0, 0, 672, 660, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 676, 1, 0, 0, 0, 674, 675, 5, 160, 0, 0, 675, 677, 3, 352, 176, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 24, 0, 0, 679, 680, 5, 274, 0, 0, 680, 681, 5, 186, 0, 0, 681, 682, 5, 249, 0, 0, 682, 683, 3, 338, 169, 0, 683, 25, 1, 0, 0, 0, 684, 703, 3, 28, 14, 0, 685, 703, 3, 62, 31, 0, 686, 703, 3, 60, 30, 0, 687, 703, 3, 58, 29, 0, 688, 703, 3, 54, 27, 0, 689, 703, 3, 56, 28, 0, 690, 703, 3, 52, 26, 0, 691, 703, 3, 48, 24, 0, 692, 703, 3, 50, 25, 0, 693, 703, 3, 46, 23, 0, 694, 703, 3, 44, 22, 0, 695, 703, 3, 42, 21, 0, 696, 703, 3, 40, 20, 0, 697, 703, 3, 34, 17, 0, 698, 703, 3, 30, 15, 0, 699, 703, 3, 32, 16, 0, 700, 703, 3, 36, 18, 0, 701, 703, 3, 38, 19, 0, 702, 684, 1, 0, 0, 0, 702, 685, 1, 0, 0, 0, 702, 686, 1, 0, 0, 0, 702, 687, 1, 0, 0, 0, 702, 688, 1, 0, 0, 0, 702, 689, 1, 0, 0, 0, 702, 690, 1, 0, 0, 0, 702, 691, 1, 0, 0, 0, 702, 692, 1, 0, 0, 0, 702, 693, 1, 0, 0, 0, 702, 694, 1, 0, 0, 0, 702, 695, 1, 0, 0, 0, 702, 696, 1, 0, 0, 0, 702, 697, 1, 0, 0, 0, 702, 698, 1, 0, 0, 0, 702, 699, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 702, 701, 1, 0, 0, 0, 703, 27, 1, 0, 0, 0, 704, 705, 5, 4, 0, 0, 705, 706, 5, 46, 0, 0, 706, 707, 3, 184, 92, 0, 707, 708, 5, 176, 0, 0, 708, 709, 5, 142, 0, 0, 709, 710, 7, 1, 0, 0, 710, 711, 3, 384, 192, 0, 711, 29, 1, 0, 0, 0, 712, 713, 5, 4, 0, 0, 713, 714, 5, 188, 0, 0, 714, 715, 3, 186, 93, 0, 715, 716, 5, 176, 0, 0, 716, 717, 5, 32, 0, 0, 717, 718, 5, 182, 0, 0, 718, 719, 3, 192, 96, 0, 719, 720, 5, 265, 0, 0, 720, 721, 3, 234, 117, 0, 721, 722, 5, 249, 0, 0, 722, 728, 3, 338, 169, 0, 723, 724, 5, 263, 0, 0, 724, 725, 3, 234, 117, 0, 725, 726, 5, 249, 0, 0, 726, 727, 3, 338, 169, 0, 727, 729, 1, 0, 0, 0, 728, 723, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 266, 0, 0, 731, 31, 1, 0, 0, 0, 732, 733, 5, 4, 0, 0, 733, 734, 5, 188, 0, 0, 734, 737, 3, 186, 93, 0, 735, 736, 5, 145, 0, 0, 736, 738, 3, 326, 163, 0, 737, 735, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 750, 5, 176, 0, 0, 740, 741, 5, 30, 0, 0, 741, 742, 5, 94, 0, 0, 742, 747, 3, 338, 169, 0, 743, 744, 5, 216, 0, 0, 744, 745, 5, 151, 0, 0, 745, 746, 5, 249, 0, 0, 746, 748, 3, 386, 193, 0, 747, 743, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 751, 1, 0, 0, 0, 749, 751, 5, 197, 0, 0, 750, 740, 1, 0, 0, 0, 750, 749, 1, 0, 0, 0, 751, 33, 1, 0, 0, 0, 752, 753, 5, 4, 0, 0, 753, 754, 5, 188, 0, 0, 754, 755, 3, 186, 93, 0, 755, 756, 5, 31, 0, 0, 756, 757, 3, 192, 96, 0, 757, 758, 3, 226, 113, 0, 758, 35, 1, 0, 0, 0, 759, 760, 5, 4, 0, 0, 760, 761, 5, 188, 0, 0, 761, 762, 3, 186, 93, 0, 762, 764, 5, 58, 0, 0, 763, 765, 5, 32, 0, 0, 764, 763, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 3, 192, 96, 0, 767, 37, 1, 0, 0, 0, 768, 769, 5, 4, 0, 0, 769, 770, 5, 188, 0, 0, 770, 771, 3, 186, 93, 0, 771, 772, 5, 176, 0, 0, 772, 773, 5, 142, 0, 0, 773, 774, 7, 1, 0, 0, 774, 775, 3, 384, 192, 0, 775, 39, 1, 0, 0, 0, 776, 777, 5, 4, 0, 0, 777, 778, 5, 188, 0, 0, 778, 784, 3, 186, 93, 0, 779, 785, 5, 158, 0, 0, 780, 782, 5, 1, 0, 0, 781, 783, 3, 172, 86, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 785, 1, 0, 0, 0, 784, 779, 1, 0, 0, 0, 784, 780, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 5, 33, 0, 0, 787, 788, 5, 265, 0, 0, 788, 793, 3, 226, 113, 0, 789, 790, 5, 263, 0, 0, 790, 792, 3, 226, 113, 0, 791, 789, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 796, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 797, 5, 266, 0, 0, 797, 41, 1, 0, 0, 0, 798, 799, 5, 4, 0, 0, 799, 800, 5, 188, 0, 0, 800, 801, 3, 186, 93, 0, 801, 802, 5, 1, 0, 0, 802, 804, 5, 32, 0, 0, 803, 805, 3, 172, 86, 0, 804, 803, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 3, 228, 114, 0, 807, 43, 1, 0, 0, 0, 808, 809, 5, 4, 0, 0, 809, 810, 5, 188, 0, 0, 810, 811, 3, 186, 93, 0, 811, 813, 5, 4, 0, 0, 812, 814, 5, 32, 0, 0, 813, 812, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 824, 3, 192, 96, 0, 816, 820, 5, 176, 0, 0, 817, 821, 3, 232, 116, 0, 818, 819, 5, 34, 0, 0, 819, 821, 3, 338, 169, 0, 820, 817, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 825, 1, 0, 0, 0, 822, 823, 5, 58, 0, 0, 823, 825, 5, 51, 0, 0, 824, 816, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 825, 45, 1, 0, 0, 0, 826, 827, 5, 4, 0, 0, 827, 828, 5, 188, 0, 0, 828, 829, 3, 186, 93, 0, 829, 831, 5, 1, 0, 0, 830, 832, 3, 172, 86, 0, 831, 830, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 845, 1, 0, 0, 0, 833, 834, 5, 145, 0, 0, 834, 837, 3, 326, 163, 0, 835, 836, 5, 24, 0, 0, 836, 838, 3, 338, 169, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 841, 3, 246, 123, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 846, 1, 0, 0, 0, 842, 843, 5, 154, 0, 0, 843, 844, 5, 145, 0, 0, 844, 846, 3, 244, 122, 0, 845, 833, 1, 0, 0, 0, 845, 842, 1, 0, 0, 0, 846, 47, 1, 0, 0, 0, 847, 848, 5, 4, 0, 0, 848, 849, 5, 188, 0, 0, 849, 852, 3, 186, 93, 0, 850, 851, 5, 145, 0, 0, 851, 853, 3, 326, 163, 0, 852, 850, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 866, 5, 176, 0, 0, 855, 856, 5, 72, 0, 0, 856, 867, 3, 236, 118, 0, 857, 858, 5, 168, 0, 0, 858, 859, 5, 79, 0, 0, 859, 867, 3, 260, 130, 0, 860, 861, 5, 24, 0, 0, 861, 867, 3, 338, 169, 0, 862, 863, 5, 25, 0, 0, 863, 867, 3, 254, 127, 0, 864, 865, 5, 175, 0, 0, 865, 867, 3, 254, 127, 0, 866, 855, 1, 0, 0, 0, 866, 857, 1, 0, 0, 0, 866, 860, 1, 0, 0, 0, 866, 862, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 867, 49, 1, 0, 0, 0, 868, 869, 5, 4, 0, 0, 869, 870, 5, 188, 0, 0, 870, 871, 3, 186, 93, 0, 871, 872, 5, 155, 0, 0, 872, 873, 5, 146, 0, 0, 873, 51, 1, 0, 0, 0, 874, 875, 5, 4, 0, 0, 875, 876, 5, 188, 0, 0, 876, 877, 3, 186, 93, 0, 877, 879, 5, 58, 0, 0, 878, 880, 3, 170, 85, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 889, 1, 0, 0, 0, 881, 882, 5, 145, 0, 0, 882, 884, 3, 326, 163, 0, 883, 885, 5, 22, 0, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 890, 1, 0, 0, 0, 886, 887, 5, 154, 0, 0, 887, 888, 5, 145, 0, 0, 888, 890, 3, 244, 122, 0, 889, 881, 1, 0, 0, 0, 889, 886, 1, 0, 0, 0, 890, 53, 1, 0, 0, 0, 891, 892, 5, 4, 0, 0, 892, 893, 5, 212, 0, 0, 893, 895, 3, 188, 94, 0, 894, 896, 3, 204, 102, 0, 895, 894, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 5, 9, 0, 0, 898, 899, 3, 208, 104, 0, 899, 55, 1, 0, 0, 0, 900, 901, 5, 4, 0, 0, 901, 902, 5, 212, 0, 0, 902, 903, 3, 188, 94, 0, 903, 904, 5, 156, 0, 0, 904, 905, 5, 193, 0, 0, 905, 906, 3, 188, 94, 0, 906, 57, 1, 0, 0, 0, 907, 908, 5, 4, 0, 0, 908, 909, 5, 212, 0, 0, 909, 910, 3, 188, 94, 0, 910, 911, 5, 176, 0, 0, 911, 912, 5, 142, 0, 0, 912, 913, 7, 1, 0, 0, 913, 914, 3, 380, 190, 0, 914, 59, 1, 0, 0, 0, 915, 916, 5, 4, 0, 0, 916, 917, 5, 188, 0, 0, 917, 918, 3, 186, 93, 0, 918, 919, 5, 156, 0, 0, 919, 920, 5, 193, 0, 0, 920, 921, 3, 186, 93, 0, 921, 61, 1, 0, 0, 0, 922, 923, 5, 4, 0, 0, 923, 924, 5, 212, 0, 0, 924, 925, 3, 188, 94, 0, 925, 926, 7, 2, 0, 0, 926, 927, 5, 25, 0, 0, 927, 928, 3, 254, 127, 0, 928, 63, 1, 0, 0, 0, 929, 931, 5, 196, 0, 0, 930, 932, 5, 188, 0, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 934, 1, 0, 0, 0, 933, 935, 3, 170, 85, 0, 934, 933, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 3, 186, 93, 0, 937, 65, 1, 0, 0, 0, 938, 940, 5, 56, 0, 0, 939, 941, 5, 46, 0, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 1, 0, 0, 0, 942, 944, 7, 3, 0, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 946, 3, 380, 190, 0, 946, 67, 1, 0, 0, 0, 947, 950, 3, 70, 35, 0, 948, 950, 3, 72, 36, 0, 949, 947, 1, 0, 0, 0, 949, 948, 1, 0, 0, 0, 950, 69, 1, 0, 0, 0, 951, 952, 5, 36, 0, 0, 952, 953, 5, 182, 0, 0, 953, 955, 3, 186, 93, 0, 954, 956, 3, 312, 156, 0, 955, 954, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 969, 1, 0, 0, 0, 957, 958, 5, 190, 0, 0, 958, 959, 5, 185, 0, 0, 959, 960, 5, 265, 0, 0, 960, 961, 3, 386, 193, 0, 961, 967, 5, 266, 0, 0, 962, 963, 5, 157, 0, 0, 963, 964, 5, 265, 0, 0, 964, 965, 3, 386, 193, 0, 965, 966, 5, 266, 0, 0, 966, 968, 1, 0, 0, 0, 967, 962, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 970, 1, 0, 0, 0, 969, 957, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 71, 1, 0, 0, 0, 971, 972, 5, 36, 0, 0, 972, 973, 5, 96, 0, 0, 973, 974, 5, 182, 0, 0, 974, 980, 3, 186, 93, 0, 975, 976, 5, 145, 0, 0, 976, 977, 5, 265, 0, 0, 977, 978, 3, 326, 163, 0, 978, 979, 5, 266, 0, 0, 979, 981, 1, 0, 0, 0, 980, 975, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 73, 1, 0, 0, 0, 982, 989, 3, 86, 43, 0, 983, 989, 3, 84, 42, 0, 984, 989, 3, 82, 41, 0, 985, 989, 3, 78, 39, 0, 986, 989, 3, 80, 40, 0, 987, 989, 3, 76, 38, 0, 988, 982, 1, 0, 0, 0, 988, 983, 1, 0, 0, 0, 988, 984, 1, 0, 0, 0, 988, 985, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 75, 1, 0, 0, 0, 990, 991, 5, 58, 0, 0, 991, 993, 7, 0, 0, 0, 992, 994, 3, 170, 85, 0, 993, 992, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 997, 3, 184, 92, 0, 996, 998, 7, 4, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 77, 1, 0, 0, 0, 999, 1000, 5, 58, 0, 0, 1000, 1002, 5, 212, 0, 0, 1001, 1003, 3, 170, 85, 0, 1002, 1001, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 3, 188, 94, 0, 1005, 79, 1, 0, 0, 0, 1006, 1007, 5, 58, 0, 0, 1007, 1009, 5, 188, 0, 0, 1008, 1010, 3, 170, 85, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 3, 186, 93, 0, 1012, 1014, 5, 22, 0, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 81, 1, 0, 0, 0, 1015, 1017, 5, 58, 0, 0, 1016, 1018, 5, 96, 0, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1020, 5, 182, 0, 0, 1020, 1023, 3, 186, 93, 0, 1021, 1022, 5, 145, 0, 0, 1022, 1024, 3, 326, 163, 0, 1023, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 83, 1, 0, 0, 0, 1025, 1027, 5, 58, 0, 0, 1026, 1028, 5, 12, 0, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1031, 5, 84, 0, 0, 1030, 1032, 3, 170, 85, 0, 1031, 1030, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1046, 3, 190, 95, 0, 1034, 1043, 5, 265, 0, 0, 1035, 1040, 3, 352, 176, 0, 1036, 1037, 5, 263, 0, 0, 1037, 1039, 3, 352, 176, 0, 1038, 1036, 1, 0, 0, 0, 1039, 1042, 1, 0, 0, 0, 1040, 1038, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1044, 1, 0, 0, 0, 1042, 1040, 1, 0, 0, 0, 1043, 1035, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 5, 266, 0, 0, 1046, 1034, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 85, 1, 0, 0, 0, 1048, 1049, 5, 58, 0, 0, 1049, 1050, 5, 166, 0, 0, 1050, 1051, 3, 384, 192, 0, 1051, 87, 1, 0, 0, 0, 1052, 1055, 3, 90, 45, 0, 1053, 1055, 3, 92, 46, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1053, 1, 0, 0, 0, 1055, 89, 1, 0, 0, 0, 1056, 1057, 5, 86, 0, 0, 1057, 1058, 5, 166, 0, 0, 1058, 1059, 3, 384, 192, 0, 1059, 1060, 5, 193, 0, 0, 1060, 1061, 5, 87, 0, 0, 1061, 1062, 3, 384, 192, 0, 1062, 91, 1, 0, 0, 0, 1063, 1064, 5, 86, 0, 0, 1064, 1065, 3, 376, 188, 0, 1065, 1066, 5, 136, 0, 0, 1066, 1068, 3, 378, 189, 0, 1067, 1069, 3, 380, 190, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 5, 193, 0, 0, 1071, 1072, 3, 382, 191, 0, 1072, 93, 1, 0, 0, 0, 1073, 1076, 3, 96, 48, 0, 1074, 1076, 3, 98, 49, 0, 1075, 1073, 1, 0, 0, 0, 1075, 1074, 1, 0, 0, 0, 1076, 95, 1, 0, 0, 0, 1077, 1078, 5, 161, 0, 0, 1078, 1079, 5, 166, 0, 0, 1079, 1080, 3, 384, 192, 0, 1080, 1081, 5, 82, 0, 0, 1081, 1082, 5, 87, 0, 0, 1082, 1083, 3, 384, 192, 0, 1083, 97, 1, 0, 0, 0, 1084, 1088, 5, 161, 0, 0, 1085, 1086, 5, 86, 0, 0, 1086, 1087, 5, 137, 0, 0, 1087, 1089, 5, 78, 0, 0, 1088, 1085, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 3, 376, 188, 0, 1091, 1092, 5, 136, 0, 0, 1092, 1094, 3, 378, 189, 0, 1093, 1095, 3, 380, 190, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1102, 5, 82, 0, 0, 1097, 1103, 3, 382, 191, 0, 1098, 1100, 5, 166, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 3, 384, 192, 0, 1102, 1097, 1, 0, 0, 0, 1102, 1099, 1, 0, 0, 0, 1103, 99, 1, 0, 0, 0, 1104, 1106, 3, 210, 105, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 5, 99, 0, 0, 1108, 1110, 7, 5, 0, 0, 1109, 1111, 5, 188, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 3, 186, 93, 0, 1113, 1115, 3, 312, 156, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1128, 1, 0, 0, 0, 1116, 1117, 5, 145, 0, 0, 1117, 1118, 5, 265, 0, 0, 1118, 1123, 3, 326, 163, 0, 1119, 1120, 5, 263, 0, 0, 1120, 1122, 3, 326, 163, 0, 1121, 1119, 1, 0, 0, 0, 1122, 1125, 1, 0, 0, 0, 1123, 1121, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1126, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1126, 1127, 5, 266, 0, 0, 1127, 1129, 1, 0, 0, 0, 1128, 1116, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 3, 208, 104, 0, 1131, 101, 1, 0, 0, 0, 1132, 1135, 3, 104, 52, 0, 1133, 1135, 3, 106, 53, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1133, 1, 0, 0, 0, 1135, 103, 1, 0, 0, 0, 1136, 1138, 5, 50, 0, 0, 1137, 1139, 5, 82, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1142, 3, 186, 93, 0, 1141, 1143, 3, 276, 138, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 105, 1, 0, 0, 0, 1144, 1145, 5, 50, 0, 0, 1145, 1150, 3, 186, 93, 0, 1146, 1148, 5, 9, 0, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1151, 3, 384, 192, 0, 1150, 1147, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1161, 5, 82, 0, 0, 1153, 1158, 3, 300, 150, 0, 1154, 1155, 5, 263, 0, 0, 1155, 1157, 3, 300, 150, 0, 1156, 1154, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1153, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1164, 1, 0, 0, 0, 1163, 1165, 3, 276, 138, 0, 1164, 1163, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 107, 1, 0, 0, 0, 1166, 1167, 5, 54, 0, 0, 1167, 1168, 3, 186, 93, 0, 1168, 1169, 5, 176, 0, 0, 1169, 1179, 3, 200, 100, 0, 1170, 1171, 5, 82, 0, 0, 1171, 1176, 3, 300, 150, 0, 1172, 1173, 5, 263, 0, 0, 1173, 1175, 3, 300, 150, 0, 1174, 1172, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1170, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1183, 3, 276, 138, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 109, 1, 0, 0, 0, 1184, 1185, 5, 207, 0, 0, 1185, 1187, 5, 103, 0, 0, 1186, 1188, 5, 188, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 3, 186, 93, 0, 1190, 1192, 3, 312, 156, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 3, 208, 104, 0, 1194, 111, 1, 0, 0, 0, 1195, 1208, 3, 132, 66, 0, 1196, 1208, 3, 134, 67, 0, 1197, 1208, 3, 136, 68, 0, 1198, 1208, 3, 130, 65, 0, 1199, 1208, 3, 128, 64, 0, 1200, 1208, 3, 126, 63, 0, 1201, 1208, 3, 124, 62, 0, 1202, 1208, 3, 122, 61, 0, 1203, 1208, 3, 120, 60, 0, 1204, 1208, 3, 118, 59, 0, 1205, 1208, 3, 116, 58, 0, 1206, 1208, 3, 114, 57, 0, 1207, 1195, 1, 0, 0, 0, 1207, 1196, 1, 0, 0, 0, 1207, 1197, 1, 0, 0, 0, 1207, 1198, 1, 0, 0, 0, 1207, 1199, 1, 0, 0, 0, 1207, 1200, 1, 0, 0, 0, 1207, 1201, 1, 0, 0, 0, 1207, 1202, 1, 0, 0, 0, 1207, 1203, 1, 0, 0, 0, 1207, 1204, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1206, 1, 0, 0, 0, 1208, 113, 1, 0, 0, 0, 1209, 1210, 5, 179, 0, 0, 1210, 1222, 7, 6, 0, 0, 1211, 1213, 5, 115, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1219, 3, 338, 169, 0, 1215, 1216, 5, 271, 0, 0, 1216, 1218, 3, 338, 169, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1212, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 115, 1, 0, 0, 0, 1224, 1225, 5, 179, 0, 0, 1225, 1228, 5, 189, 0, 0, 1226, 1227, 5, 94, 0, 0, 1227, 1229, 3, 186, 93, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1241, 1, 0, 0, 0, 1230, 1232, 5, 115, 0, 0, 1231, 1230, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1238, 3, 338, 169, 0, 1234, 1235, 5, 271, 0, 0, 1235, 1237, 3, 338, 169, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1240, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1242, 1, 0, 0, 0, 1240, 1238, 1, 0, 0, 0, 1241, 1231, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 117, 1, 0, 0, 0, 1243, 1245, 5, 179, 0, 0, 1244, 1246, 7, 7, 0, 0, 1245, 1244, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1250, 5, 85, 0, 0, 1248, 1249, 5, 94, 0, 0, 1249, 1251, 3, 184, 92, 0, 1250, 1248, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1263, 1, 0, 0, 0, 1252, 1254, 5, 115, 0, 0, 1253, 1252, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1260, 3, 338, 169, 0, 1256, 1257, 5, 271, 0, 0, 1257, 1259, 3, 338, 169, 0, 1258, 1256, 1, 0, 0, 0, 1259, 1262, 1, 0, 0, 0, 1260, 1258, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1264, 1, 0, 0, 0, 1262, 1260, 1, 0, 0, 0, 1263, 1253, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 119, 1, 0, 0, 0, 1265, 1266, 5, 179, 0, 0, 1266, 1267, 5, 37, 0, 0, 1267, 1268, 5, 188, 0, 0, 1268, 1269, 3, 186, 93, 0, 1269, 121, 1, 0, 0, 0, 1270, 1271, 5, 179, 0, 0, 1271, 1272, 5, 37, 0, 0, 1272, 1273, 5, 212, 0, 0, 1273, 1274, 3, 188, 94, 0, 1274, 123, 1, 0, 0, 0, 1275, 1276, 5, 179, 0, 0, 1276, 1277, 5, 188, 0, 0, 1277, 1278, 5, 182, 0, 0, 1278, 1279, 3, 186, 93, 0, 1279, 125, 1, 0, 0, 0, 1280, 1281, 5, 179, 0, 0, 1281, 1282, 5, 32, 0, 0, 1282, 1283, 5, 182, 0, 0, 1283, 1284, 3, 186, 93, 0, 1284, 127, 1, 0, 0, 0, 1285, 1287, 5, 179, 0, 0, 1286, 1288, 5, 154, 0, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 5, 146, 0, 0, 1290, 1291, 3, 186, 93, 0, 1291, 129, 1, 0, 0, 0, 1292, 1293, 5, 179, 0, 0, 1293, 1294, 5, 73, 0, 0, 1294, 1295, 5, 94, 0, 0, 1295, 1305, 3, 186, 93, 0, 1296, 1297, 5, 145, 0, 0, 1297, 1298, 5, 265, 0, 0, 1298, 1301, 3, 326, 163, 0, 1299, 1300, 5, 263, 0, 0, 1300, 1302, 3, 326, 163, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 5, 266, 0, 0, 1304, 1306, 1, 0, 0, 0, 1305, 1296, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 131, 1, 0, 0, 0, 1307, 1309, 5, 179, 0, 0, 1308, 1310, 5, 39, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 5, 167, 0, 0, 1312, 133, 1, 0, 0, 0, 1313, 1314, 5, 179, 0, 0, 1314, 1315, 5, 166, 0, 0, 1315, 1316, 5, 86, 0, 0, 1316, 1317, 5, 87, 0, 0, 1317, 1318, 3, 384, 192, 0, 1318, 135, 1, 0, 0, 0, 1319, 1334, 3, 138, 69, 0, 1320, 1334, 3, 140, 70, 0, 1321, 1334, 3, 142, 71, 0, 1322, 1323, 5, 179, 0, 0, 1323, 1324, 5, 86, 0, 0, 1324, 1325, 7, 8, 0, 0, 1325, 1331, 3, 384, 192, 0, 1326, 1327, 5, 136, 0, 0, 1327, 1329, 7, 9, 0, 0, 1328, 1330, 3, 380, 190, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1332, 1, 0, 0, 0, 1331, 1326, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1319, 1, 0, 0, 0, 1333, 1320, 1, 0, 0, 0, 1333, 1321, 1, 0, 0, 0, 1333, 1322, 1, 0, 0, 0, 1334, 137, 1, 0, 0, 0, 1335, 1336, 5, 179, 0, 0, 1336, 1337, 5, 86, 0, 0, 1337, 1338, 7, 8, 0, 0, 1338, 1344, 3, 384, 192, 0, 1339, 1340, 5, 136, 0, 0, 1340, 1342, 5, 46, 0, 0, 1341, 1343, 3, 184, 92, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1339, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 139, 1, 0, 0, 0, 1346, 1347, 5, 179, 0, 0, 1347, 1348, 5, 86, 0, 0, 1348, 1349, 7, 8, 0, 0, 1349, 1355, 3, 384, 192, 0, 1350, 1351, 5, 136, 0, 0, 1351, 1353, 5, 188, 0, 0, 1352, 1354, 3, 186, 93, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1356, 1, 0, 0, 0, 1355, 1350, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 141, 1, 0, 0, 0, 1357, 1358, 5, 179, 0, 0, 1358, 1359, 5, 86, 0, 0, 1359, 1360, 7, 8, 0, 0, 1360, 1366, 3, 384, 192, 0, 1361, 1362, 5, 136, 0, 0, 1362, 1364, 5, 32, 0, 0, 1363, 1365, 3, 192, 96, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1361, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 143, 1, 0, 0, 0, 1368, 1372, 3, 146, 73, 0, 1369, 1372, 3, 148, 74, 0, 1370, 1372, 3, 150, 75, 0, 1371, 1368, 1, 0, 0, 0, 1371, 1369, 1, 0, 0, 0, 1371, 1370, 1, 0, 0, 0, 1372, 145, 1, 0, 0, 0, 1373, 1374, 5, 34, 0, 0, 1374, 1375, 5, 136, 0, 0, 1375, 1376, 5, 46, 0, 0, 1376, 1377, 3, 184, 92, 0, 1377, 1380, 5, 108, 0, 0, 1378, 1381, 3, 338, 169, 0, 1379, 1381, 5, 133, 0, 0, 1380, 1378, 1, 0, 0, 0, 1380, 1379, 1, 0, 0, 0, 1381, 147, 1, 0, 0, 0, 1382, 1383, 5, 34, 0, 0, 1383, 1384, 5, 136, 0, 0, 1384, 1385, 5, 188, 0, 0, 1385, 1386, 3, 186, 93, 0, 1386, 1389, 5, 108, 0, 0, 1387, 1390, 3, 338, 169, 0, 1388, 1390, 5, 133, 0, 0, 1389, 1387, 1, 0, 0, 0, 1389, 1388, 1, 0, 0, 0, 1390, 149, 1, 0, 0, 0, 1391, 1392, 5, 34, 0, 0, 1392, 1393, 5, 136, 0, 0, 1393, 1394, 5, 32, 0, 0, 1394, 1395, 3, 192, 96, 0, 1395, 1398, 5, 108, 0, 0, 1396, 1399, 3, 338, 169, 0, 1397, 1399, 5, 133, 0, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1397, 1, 0, 0, 0, 1399, 151, 1, 0, 0, 0, 1400, 1401, 5, 67, 0, 0, 1401, 1402, 3, 4, 2, 0, 1402, 153, 1, 0, 0, 0, 1403, 1409, 5, 176, 0, 0, 1404, 1410, 5, 2, 0, 0, 1405, 1406, 3, 384, 192, 0, 1406, 1407, 5, 249, 0, 0, 1407, 1408, 3, 326, 163, 0, 1408, 1410, 1, 0, 0, 0, 1409, 1404, 1, 0, 0, 0, 1409, 1405, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 155, 1, 0, 0, 0, 1411, 1412, 5, 264, 0, 0, 1412, 1413, 5, 180, 0, 0, 1413, 1423, 5, 265, 0, 0, 1414, 1416, 3, 338, 169, 0, 1415, 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1424, 1, 0, 0, 0, 1417, 1420, 3, 338, 169, 0, 1418, 1419, 5, 263, 0, 0, 1419, 1421, 3, 326, 163, 0, 1420, 1418, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1424, 1, 0, 0, 0, 1422, 1424, 3, 326, 163, 0, 1423, 1415, 1, 0, 0, 0, 1423, 1417, 1, 0, 0, 0, 1423, 1422, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 5, 266, 0, 0, 1426, 157, 1, 0, 0, 0, 1427, 1428, 5, 107, 0, 0, 1428, 1429, 5, 121, 0, 0, 1429, 1430, 3, 186, 93, 0, 1430, 159, 1, 0, 0, 0, 1431, 1432, 5, 118, 0, 0, 1432, 1433, 5, 45, 0, 0, 1433, 1434, 5, 98, 0, 0, 1434, 1436, 5, 274, 0, 0, 1435, 1437, 5, 144, 0, 0, 1436, 1435, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1439, 5, 103, 0, 0, 1439, 1440, 5, 188, 0, 0, 1440, 1450, 3, 186, 93, 0, 1441, 1442, 5, 145, 0, 0, 1442, 1443, 5, 265, 0, 0, 1443, 1446, 3, 326, 163, 0, 1444, 1445, 5, 263, 0, 0, 1445, 1447, 3, 326, 163, 0, 1446, 1444, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 5, 266, 0, 0, 1449, 1451, 1, 0, 0, 0, 1450, 1441, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 161, 1, 0, 0, 0, 1452, 1456, 3, 164, 82, 0, 1453, 1456, 3, 166, 83, 0, 1454, 1456, 3, 168, 84, 0, 1455, 1452, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1455, 1454, 1, 0, 0, 0, 1456, 163, 1, 0, 0, 0, 1457, 1458, 5, 162, 0, 0, 1458, 1471, 3, 186, 93, 0, 1459, 1460, 5, 145, 0, 0, 1460, 1461, 5, 265, 0, 0, 1461, 1466, 3, 326, 163, 0, 1462, 1463, 5, 263, 0, 0, 1463, 1465, 3, 326, 163, 0, 1464, 1462, 1, 0, 0, 0, 1465, 1468, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1469, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1470, 5, 266, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1459, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 165, 1, 0, 0, 0, 1473, 1474, 5, 162, 0, 0, 1474, 1475, 5, 13, 0, 0, 1475, 167, 1, 0, 0, 0, 1476, 1477, 5, 162, 0, 0, 1477, 1478, 5, 85, 0, 0, 1478, 1479, 3, 190, 95, 0, 1479, 169, 1, 0, 0, 0, 1480, 1481, 5, 93, 0, 0, 1481, 1482, 5, 66, 0, 0, 1482, 171, 1, 0, 0, 0, 1483, 1484, 5, 93, 0, 0, 1484, 1485, 5, 132, 0, 0, 1485, 1486, 5, 66, 0, 0, 1486, 173, 1, 0, 0, 0, 1487, 1488, 3, 380, 190, 0, 1488, 175, 1, 0, 0, 0, 1489, 1490, 3, 380, 190, 0, 1490, 177, 1, 0, 0, 0, 1491, 1492, 3, 380, 190, 0, 1492, 179, 1, 0, 0, 0, 1493, 1494, 3, 380, 190, 0, 1494, 181, 1, 0, 0, 0, 1495, 1496, 3, 380, 190, 0, 1496, 183, 1, 0, 0, 0, 1497, 1498, 3, 380, 190, 0, 1498, 185, 1, 0, 0, 0, 1499, 1504, 3, 384, 192, 0, 1500, 1501, 5, 261, 0, 0, 1501, 1503, 3, 384, 192, 0, 1502, 1500, 1, 0, 0, 0, 1503, 1506, 1, 0, 0, 0, 1504, 1502, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 187, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1507, 1512, 3, 384, 192, 0, 1508, 1509, 5, 261, 0, 0, 1509, 1511, 3, 384, 192, 0, 1510, 1508, 1, 0, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 189, 1, 0, 0, 0, 1514, 1512, 1, 0, 0, 0, 1515, 1518, 3, 388, 194, 0, 1516, 1518, 3, 380, 190, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1516, 1, 0, 0, 0, 1518, 191, 1, 0, 0, 0, 1519, 1522, 3, 380, 190, 0, 1520, 1522, 4, 96, 0, 0, 1521, 1519, 1, 0, 0, 0, 1521, 1520, 1, 0, 0, 0, 1522, 193, 1, 0, 0, 0, 1523, 1524, 3, 380, 190, 0, 1524, 195, 1, 0, 0, 0, 1525, 1528, 3, 186, 93, 0, 1526, 1528, 3, 188, 94, 0, 1527, 1525, 1, 0, 0, 0, 1527, 1526, 1, 0, 0, 0, 1528, 197, 1, 0, 0, 0, 1529, 1530, 5, 21, 0, 0, 1530, 1531, 5, 26, 0, 0, 1531, 1533, 3, 312, 156, 0, 1532, 1529, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1536, 3, 224, 112, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1540, 1, 0, 0, 0, 1537, 1538, 5, 168, 0, 0, 1538, 1539, 5, 79, 0, 0, 1539, 1541, 3, 260, 130, 0, 1540, 1537, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1545, 1, 0, 0, 0, 1542, 1543, 5, 216, 0, 0, 1543, 1544, 5, 175, 0, 0, 1544, 1546, 3, 254, 127, 0, 1545, 1542, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1550, 1, 0, 0, 0, 1547, 1548, 5, 23, 0, 0, 1548, 1549, 5, 9, 0, 0, 1549, 1551, 3, 236, 118, 0, 1550, 1547, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1554, 1, 0, 0, 0, 1552, 1553, 5, 24, 0, 0, 1553, 1555, 3, 338, 169, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1566, 1, 0, 0, 0, 1556, 1557, 5, 30, 0, 0, 1557, 1558, 5, 94, 0, 0, 1558, 1563, 3, 380, 190, 0, 1559, 1560, 5, 216, 0, 0, 1560, 1561, 5, 151, 0, 0, 1561, 1562, 5, 249, 0, 0, 1562, 1564, 5, 277, 0, 0, 1563, 1559, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1567, 1, 0, 0, 0, 1565, 1567, 5, 197, 0, 0, 1566, 1556, 1, 0, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1570, 1, 0, 0, 0, 1568, 1569, 5, 25, 0, 0, 1569, 1571, 3, 254, 127, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 199, 1, 0, 0, 0, 1572, 1577, 3, 202, 101, 0, 1573, 1574, 5, 263, 0, 0, 1574, 1576, 3, 202, 101, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1579, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 201, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1580, 1581, 3, 380, 190, 0, 1581, 1582, 5, 249, 0, 0, 1582, 1583, 3, 326, 163, 0, 1583, 203, 1, 0, 0, 0, 1584, 1586, 5, 265, 0, 0, 1585, 1587, 3, 206, 103, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1594, 1, 0, 0, 0, 1588, 1590, 5, 263, 0, 0, 1589, 1591, 3, 206, 103, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1593, 1, 0, 0, 0, 1592, 1588, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1592, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1597, 1, 0, 0, 0, 1596, 1594, 1, 0, 0, 0, 1597, 1598, 5, 266, 0, 0, 1598, 205, 1, 0, 0, 0, 1599, 1601, 3, 182, 91, 0, 1600, 1602, 3, 224, 112, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 207, 1, 0, 0, 0, 1603, 1605, 3, 210, 105, 0, 1604, 1603, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1607, 3, 264, 132, 0, 1607, 209, 1, 0, 0, 0, 1608, 1609, 5, 216, 0, 0, 1609, 1614, 3, 286, 143, 0, 1610, 1611, 5, 263, 0, 0, 1611, 1613, 3, 286, 143, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1616, 1, 0, 0, 0, 1614, 1612, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 211, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1617, 1618, 5, 150, 0, 0, 1618, 1619, 5, 110, 0, 0, 1619, 1621, 3, 312, 156, 0, 1620, 1622, 5, 53, 0, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1626, 1, 0, 0, 0, 1623, 1627, 5, 225, 0, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1627, 5, 225, 0, 0, 1626, 1623, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1631, 1, 0, 0, 0, 1628, 1632, 5, 226, 0, 0, 1629, 1630, 5, 263, 0, 0, 1630, 1632, 5, 226, 0, 0, 1631, 1628, 1, 0, 0, 0, 1631, 1629, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1645, 1, 0, 0, 0, 1633, 1634, 5, 263, 0, 0, 1634, 1637, 3, 214, 107, 0, 1635, 1637, 3, 214, 107, 0, 1636, 1633, 1, 0, 0, 0, 1636, 1635, 1, 0, 0, 0, 1637, 1642, 1, 0, 0, 0, 1638, 1639, 5, 263, 0, 0, 1639, 1641, 3, 214, 107, 0, 1640, 1638, 1, 0, 0, 0, 1641, 1644, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1642, 1640, 1, 0, 0, 0, 1643, 1646, 1, 0, 0, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1636, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 213, 1, 0, 0, 0, 1647, 1648, 5, 81, 0, 0, 1648, 1649, 5, 110, 0, 0, 1649, 1650, 3, 312, 156, 0, 1650, 1651, 5, 224, 0, 0, 1651, 1652, 3, 186, 93, 0, 1652, 1654, 3, 312, 156, 0, 1653, 1655, 5, 53, 0, 0, 1654, 1653, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1657, 1, 0, 0, 0, 1656, 1658, 5, 225, 0, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1661, 5, 226, 0, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 215, 1, 0, 0, 0, 1662, 1663, 3, 192, 96, 0, 1663, 1666, 3, 352, 176, 0, 1664, 1665, 5, 34, 0, 0, 1665, 1667, 3, 338, 169, 0, 1666, 1664, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 217, 1, 0, 0, 0, 1668, 1669, 3, 182, 91, 0, 1669, 1671, 3, 352, 176, 0, 1670, 1672, 3, 224, 112, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 219, 1, 0, 0, 0, 1673, 1674, 3, 222, 111, 0, 1674, 221, 1, 0, 0, 0, 1675, 1676, 3, 182, 91, 0, 1676, 1684, 3, 352, 176, 0, 1677, 1681, 3, 230, 115, 0, 1678, 1680, 3, 230, 115, 0, 1679, 1678, 1, 0, 0, 0, 1680, 1683, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1685, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1684, 1677, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1687, 1, 0, 0, 0, 1686, 1688, 3, 224, 112, 0, 1687, 1686, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, 1690, 5, 150, 0, 0, 1690, 1692, 5, 110, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 223, 1, 0, 0, 0, 1693, 1694, 5, 34, 0, 0, 1694, 1695, 3, 338, 169, 0, 1695, 225, 1, 0, 0, 0, 1696, 1704, 3, 216, 108, 0, 1697, 1701, 3, 230, 115, 0, 1698, 1700, 3, 230, 115, 0, 1699, 1698, 1, 0, 0, 0, 1700, 1703, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1697, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 227, 1, 0, 0, 0, 1706, 1707, 3, 182, 91, 0, 1707, 1710, 3, 352, 176, 0, 1708, 1709, 5, 34, 0, 0, 1709, 1711, 3, 338, 169, 0, 1710, 1708, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1719, 1, 0, 0, 0, 1712, 1716, 3, 230, 115, 0, 1713, 1715, 3, 230, 115, 0, 1714, 1713, 1, 0, 0, 0, 1715, 1718, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1716, 1714, 1, 0, 0, 0, 1717, 1720, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1719, 1712, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 229, 1, 0, 0, 0, 1721, 1723, 5, 132, 0, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1727, 5, 133, 0, 0, 1725, 1727, 3, 232, 116, 0, 1726, 1722, 1, 0, 0, 0, 1726, 1725, 1, 0, 0, 0, 1727, 231, 1, 0, 0, 0, 1728, 1729, 5, 60, 0, 0, 1729, 1737, 3, 326, 163, 0, 1730, 1731, 5, 35, 0, 0, 1731, 1737, 3, 326, 163, 0, 1732, 1733, 5, 51, 0, 0, 1733, 1737, 3, 326, 163, 0, 1734, 1735, 5, 16, 0, 0, 1735, 1737, 3, 386, 193, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1734, 1, 0, 0, 0, 1737, 233, 1, 0, 0, 0, 1738, 1739, 7, 10, 0, 0, 1739, 235, 1, 0, 0, 0, 1740, 1741, 7, 11, 0, 0, 1741, 237, 1, 0, 0, 0, 1742, 1747, 3, 240, 120, 0, 1743, 1744, 5, 263, 0, 0, 1744, 1746, 3, 240, 120, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1749, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1752, 1, 0, 0, 0, 1749, 1747, 1, 0, 0, 0, 1750, 1751, 5, 263, 0, 0, 1751, 1753, 3, 242, 121, 0, 1752, 1750, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1756, 1, 0, 0, 0, 1754, 1756, 3, 242, 121, 0, 1755, 1742, 1, 0, 0, 0, 1755, 1754, 1, 0, 0, 0, 1756, 239, 1, 0, 0, 0, 1757, 1759, 5, 89, 0, 0, 1758, 1760, 3, 312, 156, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 5, 146, 0, 0, 1762, 1763, 3, 386, 193, 0, 1763, 241, 1, 0, 0, 0, 1764, 1766, 5, 154, 0, 0, 1765, 1767, 3, 312, 156, 0, 1766, 1765, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 5, 265, 0, 0, 1769, 1770, 5, 145, 0, 0, 1770, 1776, 3, 244, 122, 0, 1771, 1772, 5, 263, 0, 0, 1772, 1773, 5, 145, 0, 0, 1773, 1775, 3, 244, 122, 0, 1774, 1771, 1, 0, 0, 0, 1775, 1778, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1776, 1774, 1, 0, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1776, 1, 0, 0, 0, 1779, 1780, 5, 266, 0, 0, 1780, 243, 1, 0, 0, 0, 1781, 1782, 5, 210, 0, 0, 1782, 1783, 3, 250, 125, 0, 1783, 1784, 3, 326, 163, 0, 1784, 1797, 1, 0, 0, 0, 1785, 1786, 3, 326, 163, 0, 1786, 1787, 3, 248, 124, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1785, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1794, 5, 211, 0, 0, 1791, 1792, 3, 248, 124, 0, 1792, 1793, 3, 326, 163, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1791, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1797, 1, 0, 0, 0, 1796, 1781, 1, 0, 0, 0, 1796, 1788, 1, 0, 0, 0, 1797, 245, 1, 0, 0, 0, 1798, 1799, 5, 30, 0, 0, 1799, 1800, 5, 94, 0, 0, 1800, 1805, 3, 384, 192, 0, 1801, 1802, 5, 216, 0, 0, 1802, 1803, 5, 151, 0, 0, 1803, 1804, 5, 249, 0, 0, 1804, 1806, 3, 386, 193, 0, 1805, 1801, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1809, 1, 0, 0, 0, 1807, 1809, 5, 197, 0, 0, 1808, 1798, 1, 0, 0, 0, 1808, 1807, 1, 0, 0, 0, 1809, 247, 1, 0, 0, 0, 1810, 1816, 1, 0, 0, 0, 1811, 1816, 5, 251, 0, 0, 1812, 1816, 5, 252, 0, 0, 1813, 1816, 5, 253, 0, 0, 1814, 1816, 5, 254, 0, 0, 1815, 1810, 1, 0, 0, 0, 1815, 1811, 1, 0, 0, 0, 1815, 1812, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1814, 1, 0, 0, 0, 1816, 249, 1, 0, 0, 0, 1817, 1826, 5, 249, 0, 0, 1818, 1826, 5, 250, 0, 0, 1819, 1826, 5, 115, 0, 0, 1820, 1826, 5, 164, 0, 0, 1821, 1826, 5, 163, 0, 0, 1822, 1826, 5, 15, 0, 0, 1823, 1826, 5, 94, 0, 0, 1824, 1826, 3, 248, 124, 0, 1825, 1817, 1, 0, 0, 0, 1825, 1818, 1, 0, 0, 0, 1825, 1819, 1, 0, 0, 0, 1825, 1820, 1, 0, 0, 0, 1825, 1821, 1, 0, 0, 0, 1825, 1822, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1825, 1824, 1, 0, 0, 0, 1826, 251, 1, 0, 0, 0, 1827, 1828, 5, 115, 0, 0, 1828, 1831, 3, 380, 190, 0, 1829, 1830, 7, 12, 0, 0, 1830, 1832, 5, 153, 0, 0, 1831, 1829, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 253, 1, 0, 0, 0, 1833, 1834, 5, 265, 0, 0, 1834, 1839, 3, 262, 131, 0, 1835, 1836, 5, 263, 0, 0, 1836, 1838, 3, 262, 131, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1842, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1843, 5, 266, 0, 0, 1843, 255, 1, 0, 0, 0, 1844, 1845, 5, 265, 0, 0, 1845, 1850, 3, 216, 108, 0, 1846, 1847, 5, 263, 0, 0, 1847, 1849, 3, 216, 108, 0, 1848, 1846, 1, 0, 0, 0, 1849, 1852, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1850, 1, 0, 0, 0, 1853, 1854, 5, 266, 0, 0, 1854, 257, 1, 0, 0, 0, 1855, 1860, 3, 326, 163, 0, 1856, 1857, 5, 263, 0, 0, 1857, 1859, 3, 326, 163, 0, 1858, 1856, 1, 0, 0, 0, 1859, 1862, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 259, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1873, 5, 52, 0, 0, 1864, 1865, 5, 71, 0, 0, 1865, 1866, 5, 191, 0, 0, 1866, 1867, 5, 26, 0, 0, 1867, 1871, 3, 338, 169, 0, 1868, 1869, 5, 63, 0, 0, 1869, 1870, 5, 26, 0, 0, 1870, 1872, 3, 338, 169, 0, 1871, 1868, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1874, 1, 0, 0, 0, 1873, 1864, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1879, 1, 0, 0, 0, 1875, 1876, 5, 117, 0, 0, 1876, 1877, 5, 191, 0, 0, 1877, 1878, 5, 26, 0, 0, 1878, 1880, 3, 338, 169, 0, 1879, 1875, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 261, 1, 0, 0, 0, 1881, 1884, 3, 384, 192, 0, 1882, 1883, 5, 249, 0, 0, 1883, 1885, 3, 326, 163, 0, 1884, 1882, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 263, 1, 0, 0, 0, 1886, 1897, 3, 266, 133, 0, 1887, 1888, 5, 139, 0, 0, 1888, 1889, 5, 26, 0, 0, 1889, 1894, 3, 270, 135, 0, 1890, 1891, 5, 263, 0, 0, 1891, 1893, 3, 270, 135, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1896, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 1887, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1905, 1, 0, 0, 0, 1899, 1900, 5, 116, 0, 0, 1900, 1903, 3, 326, 163, 0, 1901, 1902, 5, 135, 0, 0, 1902, 1904, 5, 277, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1906, 1, 0, 0, 0, 1905, 1899, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 265, 1, 0, 0, 0, 1907, 1908, 6, 133, -1, 0, 1908, 1909, 3, 268, 134, 0, 1909, 1924, 1, 0, 0, 0, 1910, 1911, 10, 2, 0, 0, 1911, 1913, 5, 100, 0, 0, 1912, 1914, 3, 288, 144, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1923, 3, 266, 133, 3, 1916, 1917, 10, 1, 0, 0, 1917, 1919, 7, 13, 0, 0, 1918, 1920, 3, 288, 144, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 3, 266, 133, 2, 1922, 1910, 1, 0, 0, 0, 1922, 1916, 1, 0, 0, 0, 1923, 1926, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 267, 1, 0, 0, 0, 1926, 1924, 1, 0, 0, 0, 1927, 1944, 3, 272, 136, 0, 1928, 1929, 5, 188, 0, 0, 1929, 1944, 3, 186, 93, 0, 1930, 1931, 5, 211, 0, 0, 1931, 1936, 3, 326, 163, 0, 1932, 1933, 5, 263, 0, 0, 1933, 1935, 3, 326, 163, 0, 1934, 1932, 1, 0, 0, 0, 1935, 1938, 1, 0, 0, 0, 1936, 1934, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1944, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1939, 1940, 5, 265, 0, 0, 1940, 1941, 3, 264, 132, 0, 1941, 1942, 5, 266, 0, 0, 1942, 1944, 1, 0, 0, 0, 1943, 1927, 1, 0, 0, 0, 1943, 1928, 1, 0, 0, 0, 1943, 1930, 1, 0, 0, 0, 1943, 1939, 1, 0, 0, 0, 1944, 269, 1, 0, 0, 0, 1945, 1947, 3, 324, 162, 0, 1946, 1948, 7, 14, 0, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1950, 5, 134, 0, 0, 1950, 1952, 7, 15, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 271, 1, 0, 0, 0, 1953, 1955, 5, 174, 0, 0, 1954, 1956, 3, 288, 144, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1959, 5, 183, 0, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1970, 3, 274, 137, 0, 1961, 1962, 5, 82, 0, 0, 1962, 1967, 3, 300, 150, 0, 1963, 1964, 5, 263, 0, 0, 1964, 1966, 3, 300, 150, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1961, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1973, 1, 0, 0, 0, 1972, 1974, 3, 276, 138, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1978, 1, 0, 0, 0, 1975, 1976, 5, 87, 0, 0, 1976, 1977, 5, 26, 0, 0, 1977, 1979, 3, 280, 140, 0, 1978, 1975, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 278, 139, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 273, 1, 0, 0, 0, 1983, 1988, 3, 290, 145, 0, 1984, 1985, 5, 263, 0, 0, 1985, 1987, 3, 290, 145, 0, 1986, 1984, 1, 0, 0, 0, 1987, 1990, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 275, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1991, 1992, 5, 215, 0, 0, 1992, 1993, 3, 328, 164, 0, 1993, 277, 1, 0, 0, 0, 1994, 1995, 5, 90, 0, 0, 1995, 1996, 3, 328, 164, 0, 1996, 279, 1, 0, 0, 0, 1997, 1999, 3, 288, 144, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2005, 3, 282, 141, 0, 2001, 2002, 5, 263, 0, 0, 2002, 2004, 3, 282, 141, 0, 2003, 2001, 1, 0, 0, 0, 2004, 2007, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 281, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2009, 3, 284, 142, 0, 2009, 283, 1, 0, 0, 0, 2010, 2019, 5, 265, 0, 0, 2011, 2016, 3, 324, 162, 0, 2012, 2013, 5, 263, 0, 0, 2013, 2015, 3, 324, 162, 0, 2014, 2012, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2011, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2024, 5, 266, 0, 0, 2022, 2024, 3, 324, 162, 0, 2023, 2010, 1, 0, 0, 0, 2023, 2022, 1, 0, 0, 0, 2024, 285, 1, 0, 0, 0, 2025, 2027, 3, 384, 192, 0, 2026, 2028, 3, 312, 156, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 5, 9, 0, 0, 2030, 2031, 3, 318, 159, 0, 2031, 287, 1, 0, 0, 0, 2032, 2033, 7, 16, 0, 0, 2033, 289, 1, 0, 0, 0, 2034, 2036, 3, 294, 147, 0, 2035, 2037, 3, 292, 146, 0, 2036, 2035, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2044, 1, 0, 0, 0, 2038, 2040, 3, 296, 148, 0, 2039, 2041, 3, 292, 146, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2044, 1, 0, 0, 0, 2042, 2044, 3, 298, 149, 0, 2043, 2034, 1, 0, 0, 0, 2043, 2038, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 291, 1, 0, 0, 0, 2045, 2047, 5, 9, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 3, 384, 192, 0, 2049, 293, 1, 0, 0, 0, 2050, 2051, 3, 192, 96, 0, 2051, 295, 1, 0, 0, 0, 2052, 2053, 3, 326, 163, 0, 2053, 297, 1, 0, 0, 0, 2054, 2055, 3, 380, 190, 0, 2055, 2056, 5, 261, 0, 0, 2056, 2058, 1, 0, 0, 0, 2057, 2054, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 5, 257, 0, 0, 2060, 299, 1, 0, 0, 0, 2061, 2062, 6, 150, -1, 0, 2062, 2063, 3, 306, 153, 0, 2063, 2077, 1, 0, 0, 0, 2064, 2073, 10, 2, 0, 0, 2065, 2066, 5, 38, 0, 0, 2066, 2067, 5, 109, 0, 0, 2067, 2074, 3, 306, 153, 0, 2068, 2069, 3, 302, 151, 0, 2069, 2070, 5, 109, 0, 0, 2070, 2071, 3, 300, 150, 0, 2071, 2072, 3, 304, 152, 0, 2072, 2074, 1, 0, 0, 0, 2073, 2065, 1, 0, 0, 0, 2073, 2068, 1, 0, 0, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2064, 1, 0, 0, 0, 2076, 2079, 1, 0, 0, 0, 2077, 2075, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 301, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2080, 2082, 5, 97, 0, 0, 2081, 2080, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2112, 1, 0, 0, 0, 2083, 2085, 5, 114, 0, 0, 2084, 2086, 5, 97, 0, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2112, 1, 0, 0, 0, 2087, 2089, 5, 165, 0, 0, 2088, 2090, 5, 97, 0, 0, 2089, 2088, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2112, 1, 0, 0, 0, 2091, 2093, 5, 114, 0, 0, 2092, 2094, 5, 141, 0, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2112, 1, 0, 0, 0, 2095, 2097, 5, 165, 0, 0, 2096, 2098, 5, 141, 0, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2112, 1, 0, 0, 0, 2099, 2101, 5, 83, 0, 0, 2100, 2102, 5, 141, 0, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2112, 1, 0, 0, 0, 2103, 2104, 5, 114, 0, 0, 2104, 2112, 5, 177, 0, 0, 2105, 2106, 5, 165, 0, 0, 2106, 2112, 5, 177, 0, 0, 2107, 2108, 5, 114, 0, 0, 2108, 2112, 5, 7, 0, 0, 2109, 2110, 5, 165, 0, 0, 2110, 2112, 5, 7, 0, 0, 2111, 2081, 1, 0, 0, 0, 2111, 2083, 1, 0, 0, 0, 2111, 2087, 1, 0, 0, 0, 2111, 2091, 1, 0, 0, 0, 2111, 2095, 1, 0, 0, 0, 2111, 2099, 1, 0, 0, 0, 2111, 2103, 1, 0, 0, 0, 2111, 2105, 1, 0, 0, 0, 2111, 2107, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 303, 1, 0, 0, 0, 2113, 2114, 5, 136, 0, 0, 2114, 2128, 3, 328, 164, 0, 2115, 2116, 5, 205, 0, 0, 2116, 2117, 5, 265, 0, 0, 2117, 2122, 3, 384, 192, 0, 2118, 2119, 5, 263, 0, 0, 2119, 2121, 3, 384, 192, 0, 2120, 2118, 1, 0, 0, 0, 2121, 2124, 1, 0, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2122, 1, 0, 0, 0, 2125, 2126, 5, 266, 0, 0, 2126, 2128, 1, 0, 0, 0, 2127, 2113, 1, 0, 0, 0, 2127, 2115, 1, 0, 0, 0, 2128, 305, 1, 0, 0, 0, 2129, 2142, 3, 310, 155, 0, 2130, 2131, 5, 190, 0, 0, 2131, 2132, 3, 308, 154, 0, 2132, 2133, 5, 265, 0, 0, 2133, 2134, 3, 326, 163, 0, 2134, 2140, 5, 266, 0, 0, 2135, 2136, 5, 157, 0, 0, 2136, 2137, 5, 265, 0, 0, 2137, 2138, 3, 326, 163, 0, 2138, 2139, 5, 266, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2135, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2130, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 307, 1, 0, 0, 0, 2144, 2145, 7, 17, 0, 0, 2145, 309, 1, 0, 0, 0, 2146, 2154, 3, 314, 157, 0, 2147, 2149, 5, 9, 0, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2152, 3, 384, 192, 0, 2151, 2153, 3, 312, 156, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2155, 1, 0, 0, 0, 2154, 2148, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 311, 1, 0, 0, 0, 2156, 2157, 5, 265, 0, 0, 2157, 2162, 3, 192, 96, 0, 2158, 2159, 5, 263, 0, 0, 2159, 2161, 3, 192, 96, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2164, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2162, 1, 0, 0, 0, 2165, 2166, 5, 266, 0, 0, 2166, 313, 1, 0, 0, 0, 2167, 2172, 3, 196, 98, 0, 2168, 2172, 3, 316, 158, 0, 2169, 2172, 3, 320, 160, 0, 2170, 2172, 3, 322, 161, 0, 2171, 2167, 1, 0, 0, 0, 2171, 2168, 1, 0, 0, 0, 2171, 2169, 1, 0, 0, 0, 2171, 2170, 1, 0, 0, 0, 2172, 315, 1, 0, 0, 0, 2173, 2175, 5, 113, 0, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2177, 3, 318, 159, 0, 2177, 317, 1, 0, 0, 0, 2178, 2179, 5, 265, 0, 0, 2179, 2180, 3, 208, 104, 0, 2180, 2181, 5, 266, 0, 0, 2181, 319, 1, 0, 0, 0, 2182, 2183, 5, 201, 0, 0, 2183, 2184, 5, 265, 0, 0, 2184, 2189, 3, 326, 163, 0, 2185, 2186, 5, 263, 0, 0, 2186, 2188, 3, 326, 163, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2191, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2195, 5, 266, 0, 0, 2193, 2194, 5, 216, 0, 0, 2194, 2196, 5, 140, 0, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 321, 1, 0, 0, 0, 2197, 2198, 5, 265, 0, 0, 2198, 2199, 3, 300, 150, 0, 2199, 2200, 5, 266, 0, 0, 2200, 323, 1, 0, 0, 0, 2201, 2204, 3, 192, 96, 0, 2202, 2204, 3, 326, 163, 0, 2203, 2201, 1, 0, 0, 0, 2203, 2202, 1, 0, 0, 0, 2204, 325, 1, 0, 0, 0, 2205, 2206, 3, 328, 164, 0, 2206, 327, 1, 0, 0, 0, 2207, 2208, 6, 164, -1, 0, 2208, 2210, 3, 332, 166, 0, 2209, 2211, 3, 330, 165, 0, 2210, 2209, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2215, 1, 0, 0, 0, 2212, 2213, 5, 132, 0, 0, 2213, 2215, 3, 328, 164, 3, 2214, 2207, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2215, 2224, 1, 0, 0, 0, 2216, 2217, 10, 2, 0, 0, 2217, 2218, 5, 5, 0, 0, 2218, 2223, 3, 328, 164, 3, 2219, 2220, 10, 1, 0, 0, 2220, 2221, 5, 138, 0, 0, 2221, 2223, 3, 328, 164, 2, 2222, 2216, 1, 0, 0, 0, 2222, 2219, 1, 0, 0, 0, 2223, 2226, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 329, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2227, 2228, 3, 340, 170, 0, 2228, 2229, 3, 332, 166, 0, 2229, 2286, 1, 0, 0, 0, 2230, 2231, 3, 340, 170, 0, 2231, 2232, 3, 342, 171, 0, 2232, 2233, 3, 318, 159, 0, 2233, 2286, 1, 0, 0, 0, 2234, 2236, 5, 132, 0, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 5, 15, 0, 0, 2238, 2239, 3, 332, 166, 0, 2239, 2240, 5, 5, 0, 0, 2240, 2241, 3, 332, 166, 0, 2241, 2286, 1, 0, 0, 0, 2242, 2244, 5, 132, 0, 0, 2243, 2242, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2246, 5, 94, 0, 0, 2246, 2247, 5, 265, 0, 0, 2247, 2252, 3, 326, 163, 0, 2248, 2249, 5, 263, 0, 0, 2249, 2251, 3, 326, 163, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2254, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2255, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2256, 5, 266, 0, 0, 2256, 2286, 1, 0, 0, 0, 2257, 2259, 5, 132, 0, 0, 2258, 2257, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2261, 5, 94, 0, 0, 2261, 2286, 3, 318, 159, 0, 2262, 2264, 5, 132, 0, 0, 2263, 2262, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2266, 7, 18, 0, 0, 2266, 2269, 3, 332, 166, 0, 2267, 2268, 5, 62, 0, 0, 2268, 2270, 3, 332, 166, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2286, 1, 0, 0, 0, 2271, 2272, 7, 19, 0, 0, 2272, 2286, 3, 332, 166, 0, 2273, 2275, 5, 108, 0, 0, 2274, 2276, 5, 132, 0, 0, 2275, 2274, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2286, 7, 20, 0, 0, 2278, 2280, 5, 108, 0, 0, 2279, 2281, 5, 132, 0, 0, 2280, 2279, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 5, 57, 0, 0, 2283, 2284, 5, 82, 0, 0, 2284, 2286, 3, 332, 166, 0, 2285, 2227, 1, 0, 0, 0, 2285, 2230, 1, 0, 0, 0, 2285, 2235, 1, 0, 0, 0, 2285, 2243, 1, 0, 0, 0, 2285, 2258, 1, 0, 0, 0, 2285, 2263, 1, 0, 0, 0, 2285, 2271, 1, 0, 0, 0, 2285, 2273, 1, 0, 0, 0, 2285, 2278, 1, 0, 0, 0, 2286, 331, 1, 0, 0, 0, 2287, 2288, 6, 166, -1, 0, 2288, 2292, 3, 336, 168, 0, 2289, 2290, 7, 21, 0, 0, 2290, 2292, 3, 332, 166, 4, 2291, 2287, 1, 0, 0, 0, 2291, 2289, 1, 0, 0, 0, 2292, 2304, 1, 0, 0, 0, 2293, 2294, 10, 3, 0, 0, 2294, 2295, 7, 22, 0, 0, 2295, 2303, 3, 332, 166, 4, 2296, 2297, 10, 2, 0, 0, 2297, 2298, 7, 21, 0, 0, 2298, 2303, 3, 332, 166, 3, 2299, 2300, 10, 1, 0, 0, 2300, 2301, 5, 260, 0, 0, 2301, 2303, 3, 332, 166, 2, 2302, 2293, 1, 0, 0, 0, 2302, 2296, 1, 0, 0, 0, 2302, 2299, 1, 0, 0, 0, 2303, 2306, 1, 0, 0, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 333, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2307, 2308, 3, 190, 95, 0, 2308, 2320, 5, 265, 0, 0, 2309, 2311, 3, 288, 144, 0, 2310, 2309, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2317, 3, 326, 163, 0, 2313, 2314, 5, 263, 0, 0, 2314, 2316, 3, 326, 163, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2319, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2321, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2310, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2332, 1, 0, 0, 0, 2322, 2323, 5, 139, 0, 0, 2323, 2324, 5, 26, 0, 0, 2324, 2329, 3, 270, 135, 0, 2325, 2326, 5, 263, 0, 0, 2326, 2328, 3, 270, 135, 0, 2327, 2325, 1, 0, 0, 0, 2328, 2331, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2333, 1, 0, 0, 0, 2331, 2329, 1, 0, 0, 0, 2332, 2322, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 5, 266, 0, 0, 2335, 2337, 3, 362, 181, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2339, 1, 0, 0, 0, 2338, 2340, 3, 366, 183, 0, 2339, 2338, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 335, 1, 0, 0, 0, 2341, 2342, 6, 168, -1, 0, 2342, 2555, 5, 133, 0, 0, 2343, 2555, 3, 346, 173, 0, 2344, 2345, 3, 384, 192, 0, 2345, 2346, 3, 338, 169, 0, 2346, 2555, 1, 0, 0, 0, 2347, 2348, 5, 286, 0, 0, 2348, 2555, 3, 338, 169, 0, 2349, 2555, 3, 386, 193, 0, 2350, 2555, 3, 344, 172, 0, 2351, 2555, 3, 338, 169, 0, 2352, 2555, 5, 276, 0, 0, 2353, 2555, 5, 272, 0, 0, 2354, 2355, 5, 148, 0, 0, 2355, 2356, 5, 265, 0, 0, 2356, 2357, 3, 332, 166, 0, 2357, 2358, 5, 94, 0, 0, 2358, 2359, 3, 332, 166, 0, 2359, 2360, 5, 266, 0, 0, 2360, 2555, 1, 0, 0, 0, 2361, 2362, 5, 265, 0, 0, 2362, 2365, 3, 326, 163, 0, 2363, 2364, 5, 9, 0, 0, 2364, 2366, 3, 352, 176, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2375, 1, 0, 0, 0, 2367, 2368, 5, 263, 0, 0, 2368, 2371, 3, 326, 163, 0, 2369, 2370, 5, 9, 0, 0, 2370, 2372, 3, 352, 176, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2374, 1, 0, 0, 0, 2373, 2367, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2378, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 266, 0, 0, 2379, 2555, 1, 0, 0, 0, 2380, 2381, 5, 168, 0, 0, 2381, 2382, 5, 265, 0, 0, 2382, 2387, 3, 326, 163, 0, 2383, 2384, 5, 263, 0, 0, 2384, 2386, 3, 326, 163, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2389, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2390, 2391, 5, 266, 0, 0, 2391, 2555, 1, 0, 0, 0, 2392, 2393, 3, 190, 95, 0, 2393, 2394, 5, 265, 0, 0, 2394, 2395, 5, 257, 0, 0, 2395, 2397, 5, 266, 0, 0, 2396, 2398, 3, 362, 181, 0, 2397, 2396, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2401, 3, 366, 183, 0, 2400, 2399, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2555, 1, 0, 0, 0, 2402, 2555, 3, 334, 167, 0, 2403, 2404, 3, 384, 192, 0, 2404, 2405, 5, 273, 0, 0, 2405, 2406, 3, 326, 163, 0, 2406, 2555, 1, 0, 0, 0, 2407, 2416, 5, 265, 0, 0, 2408, 2413, 3, 384, 192, 0, 2409, 2410, 5, 263, 0, 0, 2410, 2412, 3, 384, 192, 0, 2411, 2409, 1, 0, 0, 0, 2412, 2415, 1, 0, 0, 0, 2413, 2411, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2417, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2408, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 5, 266, 0, 0, 2419, 2420, 5, 273, 0, 0, 2420, 2555, 3, 326, 163, 0, 2421, 2422, 5, 265, 0, 0, 2422, 2423, 3, 208, 104, 0, 2423, 2424, 5, 266, 0, 0, 2424, 2555, 1, 0, 0, 0, 2425, 2426, 5, 66, 0, 0, 2426, 2427, 5, 265, 0, 0, 2427, 2428, 3, 208, 104, 0, 2428, 2429, 5, 266, 0, 0, 2429, 2555, 1, 0, 0, 0, 2430, 2431, 5, 28, 0, 0, 2431, 2433, 3, 332, 166, 0, 2432, 2434, 3, 360, 180, 0, 2433, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2439, 1, 0, 0, 0, 2437, 2438, 5, 59, 0, 0, 2438, 2440, 3, 326, 163, 0, 2439, 2437, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2442, 5, 61, 0, 0, 2442, 2555, 1, 0, 0, 0, 2443, 2445, 5, 28, 0, 0, 2444, 2446, 3, 360, 180, 0, 2445, 2444, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2451, 1, 0, 0, 0, 2449, 2450, 5, 59, 0, 0, 2450, 2452, 3, 326, 163, 0, 2451, 2449, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2454, 5, 61, 0, 0, 2454, 2555, 1, 0, 0, 0, 2455, 2456, 5, 29, 0, 0, 2456, 2457, 5, 265, 0, 0, 2457, 2458, 3, 326, 163, 0, 2458, 2459, 5, 9, 0, 0, 2459, 2460, 3, 352, 176, 0, 2460, 2461, 5, 266, 0, 0, 2461, 2555, 1, 0, 0, 0, 2462, 2463, 5, 195, 0, 0, 2463, 2464, 5, 265, 0, 0, 2464, 2465, 3, 326, 163, 0, 2465, 2466, 5, 9, 0, 0, 2466, 2467, 3, 352, 176, 0, 2467, 2468, 5, 266, 0, 0, 2468, 2555, 1, 0, 0, 0, 2469, 2470, 5, 8, 0, 0, 2470, 2479, 5, 267, 0, 0, 2471, 2476, 3, 326, 163, 0, 2472, 2473, 5, 263, 0, 0, 2473, 2475, 3, 326, 163, 0, 2474, 2472, 1, 0, 0, 0, 2475, 2478, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2480, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2471, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2555, 5, 268, 0, 0, 2482, 2555, 3, 194, 97, 0, 2483, 2555, 5, 40, 0, 0, 2484, 2488, 5, 42, 0, 0, 2485, 2486, 5, 265, 0, 0, 2486, 2487, 5, 277, 0, 0, 2487, 2489, 5, 266, 0, 0, 2488, 2485, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2555, 1, 0, 0, 0, 2490, 2494, 5, 43, 0, 0, 2491, 2492, 5, 265, 0, 0, 2492, 2493, 5, 277, 0, 0, 2493, 2495, 5, 266, 0, 0, 2494, 2491, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2555, 1, 0, 0, 0, 2496, 2500, 5, 119, 0, 0, 2497, 2498, 5, 265, 0, 0, 2498, 2499, 5, 277, 0, 0, 2499, 2501, 5, 266, 0, 0, 2500, 2497, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2555, 1, 0, 0, 0, 2502, 2506, 5, 120, 0, 0, 2503, 2504, 5, 265, 0, 0, 2504, 2505, 5, 277, 0, 0, 2505, 2507, 5, 266, 0, 0, 2506, 2503, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2555, 1, 0, 0, 0, 2508, 2555, 5, 44, 0, 0, 2509, 2555, 5, 41, 0, 0, 2510, 2511, 5, 184, 0, 0, 2511, 2512, 5, 265, 0, 0, 2512, 2513, 3, 332, 166, 0, 2513, 2514, 5, 82, 0, 0, 2514, 2517, 3, 332, 166, 0, 2515, 2516, 5, 78, 0, 0, 2516, 2518, 3, 332, 166, 0, 2517, 2515, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2520, 5, 266, 0, 0, 2520, 2555, 1, 0, 0, 0, 2521, 2522, 5, 131, 0, 0, 2522, 2523, 5, 265, 0, 0, 2523, 2526, 3, 332, 166, 0, 2524, 2525, 5, 263, 0, 0, 2525, 2527, 3, 350, 175, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2529, 5, 266, 0, 0, 2529, 2555, 1, 0, 0, 0, 2530, 2531, 5, 68, 0, 0, 2531, 2532, 5, 265, 0, 0, 2532, 2533, 3, 384, 192, 0, 2533, 2534, 5, 82, 0, 0, 2534, 2535, 3, 332, 166, 0, 2535, 2536, 5, 266, 0, 0, 2536, 2555, 1, 0, 0, 0, 2537, 2538, 5, 265, 0, 0, 2538, 2539, 3, 326, 163, 0, 2539, 2540, 5, 266, 0, 0, 2540, 2555, 1, 0, 0, 0, 2541, 2542, 5, 88, 0, 0, 2542, 2551, 5, 265, 0, 0, 2543, 2548, 3, 380, 190, 0, 2544, 2545, 5, 263, 0, 0, 2545, 2547, 3, 380, 190, 0, 2546, 2544, 1, 0, 0, 0, 2547, 2550, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2552, 1, 0, 0, 0, 2550, 2548, 1, 0, 0, 0, 2551, 2543, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 5, 266, 0, 0, 2554, 2341, 1, 0, 0, 0, 2554, 2343, 1, 0, 0, 0, 2554, 2344, 1, 0, 0, 0, 2554, 2347, 1, 0, 0, 0, 2554, 2349, 1, 0, 0, 0, 2554, 2350, 1, 0, 0, 0, 2554, 2351, 1, 0, 0, 0, 2554, 2352, 1, 0, 0, 0, 2554, 2353, 1, 0, 0, 0, 2554, 2354, 1, 0, 0, 0, 2554, 2361, 1, 0, 0, 0, 2554, 2380, 1, 0, 0, 0, 2554, 2392, 1, 0, 0, 0, 2554, 2402, 1, 0, 0, 0, 2554, 2403, 1, 0, 0, 0, 2554, 2407, 1, 0, 0, 0, 2554, 2421, 1, 0, 0, 0, 2554, 2425, 1, 0, 0, 0, 2554, 2430, 1, 0, 0, 0, 2554, 2443, 1, 0, 0, 0, 2554, 2455, 1, 0, 0, 0, 2554, 2462, 1, 0, 0, 0, 2554, 2469, 1, 0, 0, 0, 2554, 2482, 1, 0, 0, 0, 2554, 2483, 1, 0, 0, 0, 2554, 2484, 1, 0, 0, 0, 2554, 2490, 1, 0, 0, 0, 2554, 2496, 1, 0, 0, 0, 2554, 2502, 1, 0, 0, 0, 2554, 2508, 1, 0, 0, 0, 2554, 2509, 1, 0, 0, 0, 2554, 2510, 1, 0, 0, 0, 2554, 2521, 1, 0, 0, 0, 2554, 2530, 1, 0, 0, 0, 2554, 2537, 1, 0, 0, 0, 2554, 2541, 1, 0, 0, 0, 2555, 2566, 1, 0, 0, 0, 2556, 2557, 10, 15, 0, 0, 2557, 2558, 5, 267, 0, 0, 2558, 2559, 3, 332, 166, 0, 2559, 2560, 5, 268, 0, 0, 2560, 2565, 1, 0, 0, 0, 2561, 2562, 10, 13, 0, 0, 2562, 2563, 5, 261, 0, 0, 2563, 2565, 3, 384, 192, 0, 2564, 2556, 1, 0, 0, 0, 2564, 2561, 1, 0, 0, 0, 2565, 2568, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 337, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2569, 2576, 5, 274, 0, 0, 2570, 2573, 5, 275, 0, 0, 2571, 2572, 5, 198, 0, 0, 2572, 2574, 5, 274, 0, 0, 2573, 2571, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 1, 0, 0, 0, 2575, 2569, 1, 0, 0, 0, 2575, 2570, 1, 0, 0, 0, 2576, 339, 1, 0, 0, 0, 2577, 2578, 7, 23, 0, 0, 2578, 341, 1, 0, 0, 0, 2579, 2580, 7, 24, 0, 0, 2580, 343, 1, 0, 0, 0, 2581, 2582, 7, 25, 0, 0, 2582, 345, 1, 0, 0, 0, 2583, 2584, 5, 277, 0, 0, 2584, 2598, 3, 348, 174, 0, 2585, 2586, 5, 265, 0, 0, 2586, 2587, 5, 277, 0, 0, 2587, 2588, 5, 266, 0, 0, 2588, 2598, 3, 348, 174, 0, 2589, 2590, 5, 101, 0, 0, 2590, 2591, 5, 277, 0, 0, 2591, 2598, 3, 348, 174, 0, 2592, 2593, 5, 101, 0, 0, 2593, 2594, 5, 265, 0, 0, 2594, 2595, 5, 277, 0, 0, 2595, 2596, 5, 266, 0, 0, 2596, 2598, 3, 348, 174, 0, 2597, 2583, 1, 0, 0, 0, 2597, 2585, 1, 0, 0, 0, 2597, 2589, 1, 0, 0, 0, 2597, 2592, 1, 0, 0, 0, 2598, 347, 1, 0, 0, 0, 2599, 2600, 7, 26, 0, 0, 2600, 349, 1, 0, 0, 0, 2601, 2602, 7, 27, 0, 0, 2602, 351, 1, 0, 0, 0, 2603, 2604, 6, 176, -1, 0, 2604, 2605, 5, 8, 0, 0, 2605, 2606, 5, 251, 0, 0, 2606, 2607, 3, 352, 176, 0, 2607, 2608, 5, 253, 0, 0, 2608, 2649, 1, 0, 0, 0, 2609, 2610, 5, 235, 0, 0, 2610, 2611, 5, 251, 0, 0, 2611, 2612, 3, 352, 176, 0, 2612, 2613, 5, 263, 0, 0, 2613, 2614, 3, 352, 176, 0, 2614, 2615, 5, 253, 0, 0, 2615, 2649, 1, 0, 0, 0, 2616, 2617, 5, 240, 0, 0, 2617, 2618, 5, 251, 0, 0, 2618, 2619, 3, 384, 192, 0, 2619, 2626, 3, 352, 176, 0, 2620, 2621, 5, 263, 0, 0, 2621, 2622, 3, 384, 192, 0, 2622, 2623, 3, 352, 176, 0, 2623, 2625, 1, 0, 0, 0, 2624, 2620, 1, 0, 0, 0, 2625, 2628, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2626, 1, 0, 0, 0, 2629, 2630, 5, 253, 0, 0, 2630, 2649, 1, 0, 0, 0, 2631, 2634, 3, 358, 179, 0, 2632, 2634, 3, 354, 177, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2632, 1, 0, 0, 0, 2634, 2646, 1, 0, 0, 0, 2635, 2636, 5, 265, 0, 0, 2636, 2641, 3, 356, 178, 0, 2637, 2638, 5, 263, 0, 0, 2638, 2640, 3, 356, 178, 0, 2639, 2637, 1, 0, 0, 0, 2640, 2643, 1, 0, 0, 0, 2641, 2639, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2641, 1, 0, 0, 0, 2644, 2645, 5, 266, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2635, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2603, 1, 0, 0, 0, 2648, 2609, 1, 0, 0, 0, 2648, 2616, 1, 0, 0, 0, 2648, 2633, 1, 0, 0, 0, 2649, 2654, 1, 0, 0, 0, 2650, 2651, 10, 5, 0, 0, 2651, 2653, 5, 8, 0, 0, 2652, 2650, 1, 0, 0, 0, 2653, 2656, 1, 0, 0, 0, 2654, 2652, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 353, 1, 0, 0, 0, 2656, 2654, 1, 0, 0, 0, 2657, 2658, 7, 28, 0, 0, 2658, 355, 1, 0, 0, 0, 2659, 2662, 5, 277, 0, 0, 2660, 2662, 3, 352, 176, 0, 2661, 2659, 1, 0, 0, 0, 2661, 2660, 1, 0, 0, 0, 2662, 357, 1, 0, 0, 0, 2663, 2668, 5, 284, 0, 0, 2664, 2668, 5, 285, 0, 0, 2665, 2668, 5, 286, 0, 0, 2666, 2668, 3, 384, 192, 0, 2667, 2663, 1, 0, 0, 0, 2667, 2664, 1, 0, 0, 0, 2667, 2665, 1, 0, 0, 0, 2667, 2666, 1, 0, 0, 0, 2668, 359, 1, 0, 0, 0, 2669, 2670, 5, 214, 0, 0, 2670, 2671, 3, 326, 163, 0, 2671, 2672, 5, 192, 0, 0, 2672, 2673, 3, 326, 163, 0, 2673, 361, 1, 0, 0, 0, 2674, 2675, 5, 74, 0, 0, 2675, 2676, 5, 265, 0, 0, 2676, 2677, 3, 276, 138, 0, 2677, 2678, 5, 266, 0, 0, 2678, 363, 1, 0, 0, 0, 2679, 2684, 3, 326, 163, 0, 2680, 2681, 5, 263, 0, 0, 2681, 2683, 3, 326, 163, 0, 2682, 2680, 1, 0, 0, 0, 2683, 2686, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 365, 1, 0, 0, 0, 2686, 2684, 1, 0, 0, 0, 2687, 2688, 5, 143, 0, 0, 2688, 2692, 5, 265, 0, 0, 2689, 2690, 5, 145, 0, 0, 2690, 2691, 5, 26, 0, 0, 2691, 2693, 3, 364, 182, 0, 2692, 2689, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2704, 1, 0, 0, 0, 2694, 2695, 5, 139, 0, 0, 2695, 2696, 5, 26, 0, 0, 2696, 2701, 3, 270, 135, 0, 2697, 2698, 5, 263, 0, 0, 2698, 2700, 3, 270, 135, 0, 2699, 2697, 1, 0, 0, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2705, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2694, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2707, 1, 0, 0, 0, 2706, 2708, 3, 368, 184, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2710, 5, 266, 0, 0, 2710, 367, 1, 0, 0, 0, 2711, 2712, 5, 154, 0, 0, 2712, 2728, 3, 370, 185, 0, 2713, 2714, 5, 169, 0, 0, 2714, 2728, 3, 370, 185, 0, 2715, 2716, 5, 154, 0, 0, 2716, 2717, 5, 15, 0, 0, 2717, 2718, 3, 370, 185, 0, 2718, 2719, 5, 5, 0, 0, 2719, 2720, 3, 370, 185, 0, 2720, 2728, 1, 0, 0, 0, 2721, 2722, 5, 169, 0, 0, 2722, 2723, 5, 15, 0, 0, 2723, 2724, 3, 370, 185, 0, 2724, 2725, 5, 5, 0, 0, 2725, 2726, 3, 370, 185, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2711, 1, 0, 0, 0, 2727, 2713, 1, 0, 0, 0, 2727, 2715, 1, 0, 0, 0, 2727, 2721, 1, 0, 0, 0, 2728, 369, 1, 0, 0, 0, 2729, 2730, 5, 199, 0, 0, 2730, 2739, 5, 149, 0, 0, 2731, 2732, 5, 199, 0, 0, 2732, 2739, 5, 77, 0, 0, 2733, 2734, 5, 39, 0, 0, 2734, 2739, 5, 168, 0, 0, 2735, 2736, 3, 326, 163, 0, 2736, 2737, 7, 29, 0, 0, 2737, 2739, 1, 0, 0, 0, 2738, 2729, 1, 0, 0, 0, 2738, 2731, 1, 0, 0, 0, 2738, 2733, 1, 0, 0, 0, 2738, 2735, 1, 0, 0, 0, 2739, 371, 1, 0, 0, 0, 2740, 2741, 3, 384, 192, 0, 2741, 2742, 5, 261, 0, 0, 2742, 2743, 3, 384, 192, 0, 2743, 2746, 1, 0, 0, 0, 2744, 2746, 3, 384, 192, 0, 2745, 2740, 1, 0, 0, 0, 2745, 2744, 1, 0, 0, 0, 2746, 373, 1, 0, 0, 0, 2747, 2752, 3, 372, 186, 0, 2748, 2749, 5, 263, 0, 0, 2749, 2751, 3, 372, 186, 0, 2750, 2748, 1, 0, 0, 0, 2751, 2754, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 375, 1, 0, 0, 0, 2754, 2752, 1, 0, 0, 0, 2755, 2769, 5, 2, 0, 0, 2756, 2769, 5, 4, 0, 0, 2757, 2769, 5, 58, 0, 0, 2758, 2769, 5, 37, 0, 0, 2759, 2769, 5, 99, 0, 0, 2760, 2769, 5, 162, 0, 0, 2761, 2766, 5, 174, 0, 0, 2762, 2763, 5, 265, 0, 0, 2763, 2764, 3, 384, 192, 0, 2764, 2765, 5, 266, 0, 0, 2765, 2767, 1, 0, 0, 0, 2766, 2762, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2755, 1, 0, 0, 0, 2768, 2756, 1, 0, 0, 0, 2768, 2757, 1, 0, 0, 0, 2768, 2758, 1, 0, 0, 0, 2768, 2759, 1, 0, 0, 0, 2768, 2760, 1, 0, 0, 0, 2768, 2761, 1, 0, 0, 0, 2769, 377, 1, 0, 0, 0, 2770, 2771, 7, 30, 0, 0, 2771, 379, 1, 0, 0, 0, 2772, 2777, 3, 384, 192, 0, 2773, 2774, 5, 261, 0, 0, 2774, 2776, 3, 384, 192, 0, 2775, 2773, 1, 0, 0, 0, 2776, 2779, 1, 0, 0, 0, 2777, 2775, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 381, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2780, 2781, 5, 166, 0, 0, 2781, 2787, 3, 384, 192, 0, 2782, 2783, 5, 204, 0, 0, 2783, 2787, 3, 384, 192, 0, 2784, 2785, 5, 87, 0, 0, 2785, 2787, 3, 384, 192, 0, 2786, 2780, 1, 0, 0, 0, 2786, 2782, 1, 0, 0, 0, 2786, 2784, 1, 0, 0, 0, 2787, 383, 1, 0, 0, 0, 2788, 2794, 5, 280, 0, 0, 2789, 2794, 5, 274, 0, 0, 2790, 2794, 3, 390, 195, 0, 2791, 2794, 5, 283, 0, 0, 2792, 2794, 5, 281, 0, 0, 2793, 2788, 1, 0, 0, 0, 2793, 2789, 1, 0, 0, 0, 2793, 2790, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2792, 1, 0, 0, 0, 2794, 385, 1, 0, 0, 0, 2795, 2797, 5, 256, 0, 0, 2796, 2795, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2808, 5, 278, 0, 0, 2799, 2801, 5, 256, 0, 0, 2800, 2799, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2808, 5, 279, 0, 0, 2803, 2805, 5, 256, 0, 0, 2804, 2803, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 5, 277, 0, 0, 2807, 2796, 1, 0, 0, 0, 2807, 2800, 1, 0, 0, 0, 2807, 2804, 1, 0, 0, 0, 2808, 387, 1, 0, 0, 0, 2809, 2810, 7, 31, 0, 0, 2810, 389, 1, 0, 0, 0, 2811, 2812, 7, 32, 0, 0, 2812, 391, 1, 0, 0, 0, 355, 395, 402, 426, 439, 443, 447, 456, 461, 465, 471, 473, 478, 482, 486, 493, 498, 504, 508, 517, 524, 528, 533, 535, 540, 543, 550, 554, 559, 563, 566, 570, 578, 582, 586, 594, 598, 607, 610, 613, 619, 626, 637, 642, 647, 652, 657, 666, 669, 672, 676, 702, 728, 737, 747, 750, 764, 782, 784, 793, 804, 813, 820, 824, 831, 837, 840, 845, 852, 866, 879, 884, 889, 895, 931, 934, 940, 943, 949, 955, 967, 969, 980, 988, 993, 997, 1002, 1009, 1013, 1017, 1023, 1027, 1031, 1040, 1043, 1046, 1054, 1068, 1075, 1088, 1094, 1099, 1102, 1105, 1110, 1114, 1123, 1128, 1134, 1138, 1142, 1147, 1150, 1158, 1161, 1164, 1176, 1179, 1182, 1187, 1191, 1207, 1212, 1219, 1222, 1228, 1231, 1238, 1241, 1245, 1250, 1253, 1260, 1263, 1287, 1301, 1305, 1309, 1329, 1331, 1333, 1342, 1344, 1353, 1355, 1364, 1366, 1371, 1380, 1389, 1398, 1409, 1415, 1420, 1423, 1436, 1446, 1450, 1455, 1466, 1471, 1504, 1512, 1517, 1521, 1527, 1532, 1535, 1540, 1545, 1550, 1554, 1563, 1566, 1570, 1577, 1586, 1590, 1594, 1601, 1604, 1614, 1621, 1626, 1631, 1636, 1642, 1645, 1654, 1657, 1660, 1666, 1671, 1681, 1684, 1687, 1691, 1701, 1704, 1710, 1716, 1719, 1722, 1726, 1736, 1747, 1752, 1755, 1759, 1766, 1776, 1788, 1794, 1796, 1805, 1808, 1815, 1825, 1831, 1839, 1850, 1860, 1871, 1873, 1879, 1884, 1894, 1897, 1903, 1905, 1913, 1919, 1922, 1924, 1936, 1943, 1947, 1951, 1955, 1958, 1967, 1970, 1973, 1978, 1981, 1988, 1998, 2005, 2016, 2019, 2023, 2027, 2036, 2040, 2043, 2046, 2057, 2073, 2077, 2081, 2085, 2089, 2093, 2097, 2101, 2111, 2122, 2127, 2140, 2142, 2148, 2152, 2154, 2162, 2171, 2174, 2189, 2195, 2203, 2210, 2214, 2222, 2224, 2235, 2243, 2252, 2258, 2263, 2269, 2275, 2280, 2285, 2291, 2302, 2304, 2310, 2317, 2320, 2329, 2332, 2336, 2339, 2365, 2371, 2375, 2387, 2397, 2400, 2413, 2416, 2435, 2439, 2447, 2451, 2476, 2479, 2488, 2494, 2500, 2506, 2517, 2526, 2548, 2551, 2554, 2564, 2566, 2573, 2575, 2597, 2626, 2633, 2641, 2646, 2648, 2654, 2661, 2667, 2684, 2692, 2701, 2704, 2707, 2727, 2738, 2745, 2752, 2766, 2768, 2777, 2786, 2793, 2796, 2800, 2804, 2807] \ No newline at end of file +[4, 1, 289, 2853, 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, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 433, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 446, 8, 4, 1, 5, 1, 5, 3, 5, 450, 8, 5, 1, 5, 1, 5, 3, 5, 454, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 461, 8, 5, 10, 5, 12, 5, 464, 9, 5, 1, 5, 1, 5, 3, 5, 468, 8, 5, 1, 5, 1, 5, 3, 5, 472, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 478, 8, 5, 3, 5, 480, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 485, 8, 5, 1, 6, 1, 6, 3, 6, 489, 8, 6, 1, 6, 1, 6, 3, 6, 493, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 500, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 505, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 511, 8, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 522, 8, 7, 10, 7, 12, 7, 525, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 531, 8, 7, 1, 7, 1, 7, 3, 7, 535, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 540, 8, 7, 3, 7, 542, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 547, 8, 7, 1, 7, 3, 7, 550, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 557, 8, 7, 1, 7, 1, 7, 3, 7, 561, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 566, 8, 8, 1, 8, 1, 8, 3, 8, 570, 8, 8, 1, 8, 3, 8, 573, 8, 8, 1, 8, 1, 8, 3, 8, 577, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 585, 8, 9, 1, 9, 1, 9, 3, 9, 589, 8, 9, 1, 9, 1, 9, 3, 9, 593, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 601, 8, 11, 1, 11, 1, 11, 3, 11, 605, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 612, 8, 11, 10, 11, 12, 11, 615, 9, 11, 3, 11, 617, 8, 11, 1, 11, 3, 11, 620, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 626, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 633, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 644, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 649, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 654, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 659, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 664, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 671, 8, 12, 10, 12, 12, 12, 674, 9, 12, 3, 12, 676, 8, 12, 1, 12, 3, 12, 679, 8, 12, 1, 12, 1, 12, 3, 12, 683, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 709, 8, 13, 1, 14, 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, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 735, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 744, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 754, 8, 16, 1, 16, 3, 16, 757, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 771, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 789, 8, 20, 3, 20, 791, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 798, 8, 20, 10, 20, 12, 20, 801, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 811, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 820, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 827, 8, 22, 1, 22, 1, 22, 3, 22, 831, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 838, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 844, 8, 23, 1, 23, 3, 23, 847, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 852, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 859, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 873, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 886, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 891, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 896, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 902, 8, 27, 1, 27, 1, 27, 1, 27, 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, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 938, 8, 32, 1, 32, 3, 32, 941, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 947, 8, 33, 1, 33, 3, 33, 950, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 956, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 962, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 974, 8, 35, 3, 35, 976, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 987, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 995, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1000, 8, 38, 1, 38, 1, 38, 3, 38, 1004, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1009, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1016, 8, 40, 1, 40, 1, 40, 3, 40, 1020, 8, 40, 1, 41, 1, 41, 3, 41, 1024, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1030, 8, 41, 1, 42, 1, 42, 3, 42, 1034, 8, 42, 1, 42, 1, 42, 3, 42, 1038, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1045, 8, 42, 10, 42, 12, 42, 1048, 9, 42, 3, 42, 1050, 8, 42, 1, 42, 3, 42, 1053, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1061, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1075, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1082, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1095, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1101, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1106, 8, 49, 1, 49, 3, 49, 1109, 8, 49, 1, 50, 3, 50, 1112, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1117, 8, 50, 1, 50, 1, 50, 3, 50, 1121, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1128, 8, 50, 10, 50, 12, 50, 1131, 9, 50, 1, 50, 1, 50, 3, 50, 1135, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1141, 8, 51, 1, 52, 1, 52, 3, 52, 1145, 8, 52, 1, 52, 1, 52, 3, 52, 1149, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1154, 8, 53, 1, 53, 3, 53, 1157, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1163, 8, 53, 10, 53, 12, 53, 1166, 9, 53, 3, 53, 1168, 8, 53, 1, 53, 3, 53, 1171, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1181, 8, 54, 10, 54, 12, 54, 1184, 9, 54, 3, 54, 1186, 8, 54, 1, 54, 3, 54, 1189, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1194, 8, 55, 1, 55, 1, 55, 3, 55, 1198, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1214, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1219, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1224, 8, 57, 10, 57, 12, 57, 1227, 9, 57, 3, 57, 1229, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1235, 8, 58, 1, 58, 3, 58, 1238, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1243, 8, 58, 10, 58, 12, 58, 1246, 9, 58, 3, 58, 1248, 8, 58, 1, 59, 1, 59, 3, 59, 1252, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1257, 8, 59, 1, 59, 3, 59, 1260, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1265, 8, 59, 10, 59, 12, 59, 1268, 9, 59, 3, 59, 1270, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1294, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1308, 8, 65, 1, 65, 1, 65, 3, 65, 1312, 8, 65, 1, 66, 1, 66, 3, 66, 1316, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1336, 8, 68, 3, 68, 1338, 8, 68, 3, 68, 1340, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1349, 8, 69, 3, 69, 1351, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1360, 8, 70, 3, 70, 1362, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1371, 8, 71, 3, 71, 1373, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1378, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1387, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1396, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1405, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1416, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1422, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1427, 8, 78, 1, 78, 3, 78, 1430, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1443, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1453, 8, 80, 1, 80, 1, 80, 3, 80, 1457, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1462, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1471, 8, 82, 10, 82, 12, 82, 1474, 9, 82, 1, 82, 1, 82, 3, 82, 1478, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1509, 8, 93, 10, 93, 12, 93, 1512, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1517, 8, 94, 10, 94, 12, 94, 1520, 9, 94, 1, 95, 1, 95, 3, 95, 1524, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 1531, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1538, 8, 99, 1, 100, 1, 100, 3, 100, 1542, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 1547, 8, 101, 1, 101, 3, 101, 1550, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1555, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1560, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1565, 8, 101, 1, 101, 1, 101, 3, 101, 1569, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1578, 8, 101, 1, 101, 3, 101, 1581, 8, 101, 1, 101, 1, 101, 3, 101, 1585, 8, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1590, 8, 102, 10, 102, 12, 102, 1593, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 3, 104, 1601, 8, 104, 1, 104, 1, 104, 3, 104, 1605, 8, 104, 5, 104, 1607, 8, 104, 10, 104, 12, 104, 1610, 9, 104, 1, 104, 1, 104, 1, 105, 1, 105, 3, 105, 1616, 8, 105, 1, 106, 3, 106, 1619, 8, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 1627, 8, 107, 10, 107, 12, 107, 1630, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1636, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1641, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1646, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1651, 8, 108, 1, 108, 1, 108, 5, 108, 1655, 8, 108, 10, 108, 12, 108, 1658, 9, 108, 3, 108, 1660, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1669, 8, 109, 1, 109, 3, 109, 1672, 8, 109, 1, 109, 3, 109, 1675, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1681, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 1686, 8, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 1694, 8, 113, 10, 113, 12, 113, 1697, 9, 113, 3, 113, 1699, 8, 113, 1, 113, 3, 113, 1702, 8, 113, 1, 113, 1, 113, 3, 113, 1706, 8, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 5, 115, 1714, 8, 115, 10, 115, 12, 115, 1717, 9, 115, 3, 115, 1719, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1725, 8, 116, 1, 116, 1, 116, 5, 116, 1729, 8, 116, 10, 116, 12, 116, 1732, 9, 116, 3, 116, 1734, 8, 116, 1, 117, 3, 117, 1737, 8, 117, 1, 117, 1, 117, 3, 117, 1741, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1751, 8, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 5, 121, 1760, 8, 121, 10, 121, 12, 121, 1763, 9, 121, 1, 121, 1, 121, 3, 121, 1767, 8, 121, 1, 121, 3, 121, 1770, 8, 121, 1, 122, 1, 122, 3, 122, 1774, 8, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 3, 123, 1781, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1789, 8, 123, 10, 123, 12, 123, 1792, 9, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1803, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1809, 8, 124, 3, 124, 1811, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1820, 8, 125, 1, 125, 3, 125, 1823, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1830, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1840, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1846, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 1852, 8, 129, 10, 129, 12, 129, 1855, 9, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1863, 8, 130, 10, 130, 12, 130, 1866, 9, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 5, 131, 1873, 8, 131, 10, 131, 12, 131, 1876, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1886, 8, 132, 3, 132, 1888, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1894, 8, 132, 1, 133, 1, 133, 1, 133, 3, 133, 1899, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1907, 8, 134, 10, 134, 12, 134, 1910, 9, 134, 3, 134, 1912, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1918, 8, 134, 3, 134, 1920, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1928, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1934, 8, 135, 1, 135, 5, 135, 1937, 8, 135, 10, 135, 12, 135, 1940, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1949, 8, 136, 10, 136, 12, 136, 1952, 9, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1958, 8, 136, 1, 137, 1, 137, 3, 137, 1962, 8, 137, 1, 137, 1, 137, 3, 137, 1966, 8, 137, 1, 138, 1, 138, 3, 138, 1970, 8, 138, 1, 138, 3, 138, 1973, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 1980, 8, 138, 10, 138, 12, 138, 1983, 9, 138, 3, 138, 1985, 8, 138, 1, 138, 3, 138, 1988, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1993, 8, 138, 1, 138, 3, 138, 1996, 8, 138, 1, 139, 1, 139, 1, 139, 5, 139, 2001, 8, 139, 10, 139, 12, 139, 2004, 9, 139, 1, 140, 1, 140, 1, 140, 3, 140, 2009, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 2014, 8, 141, 1, 142, 3, 142, 2017, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2022, 8, 142, 10, 142, 12, 142, 2025, 9, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 2033, 8, 144, 10, 144, 12, 144, 2036, 9, 144, 3, 144, 2038, 8, 144, 1, 144, 1, 144, 3, 144, 2042, 8, 144, 1, 145, 1, 145, 3, 145, 2046, 8, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2055, 8, 147, 1, 147, 1, 147, 3, 147, 2059, 8, 147, 1, 147, 3, 147, 2062, 8, 147, 1, 148, 3, 148, 2065, 8, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 3, 151, 2076, 8, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2092, 8, 152, 5, 152, 2094, 8, 152, 10, 152, 12, 152, 2097, 9, 152, 1, 153, 3, 153, 2100, 8, 153, 1, 153, 1, 153, 3, 153, 2104, 8, 153, 1, 153, 1, 153, 3, 153, 2108, 8, 153, 1, 153, 1, 153, 3, 153, 2112, 8, 153, 1, 153, 1, 153, 3, 153, 2116, 8, 153, 1, 153, 1, 153, 3, 153, 2120, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 2130, 8, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2135, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2142, 8, 154, 10, 154, 12, 154, 2145, 9, 154, 1, 154, 1, 154, 3, 154, 2149, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2162, 8, 155, 3, 155, 2164, 8, 155, 1, 156, 1, 156, 1, 157, 1, 157, 3, 157, 2170, 8, 157, 1, 157, 1, 157, 3, 157, 2174, 8, 157, 3, 157, 2176, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2182, 8, 158, 10, 158, 12, 158, 2185, 9, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2193, 8, 159, 1, 160, 3, 160, 2196, 8, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 5, 162, 2209, 8, 162, 10, 162, 12, 162, 2212, 9, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2217, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 3, 164, 2225, 8, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2232, 8, 166, 1, 166, 1, 166, 3, 166, 2236, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2244, 8, 166, 10, 166, 12, 166, 2247, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2257, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2265, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2272, 8, 167, 10, 167, 12, 167, 2275, 9, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2280, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2285, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2291, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2297, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2302, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2307, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2313, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2324, 8, 168, 10, 168, 12, 168, 2327, 9, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2332, 8, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2337, 8, 169, 10, 169, 12, 169, 2340, 9, 169, 3, 169, 2342, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2349, 8, 169, 10, 169, 12, 169, 2352, 9, 169, 3, 169, 2354, 8, 169, 1, 169, 1, 169, 3, 169, 2358, 8, 169, 1, 169, 3, 169, 2361, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2387, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2393, 8, 170, 5, 170, 2395, 8, 170, 10, 170, 12, 170, 2398, 9, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2407, 8, 170, 10, 170, 12, 170, 2410, 9, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2419, 8, 170, 1, 170, 3, 170, 2422, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2433, 8, 170, 10, 170, 12, 170, 2436, 9, 170, 3, 170, 2438, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 4, 170, 2455, 8, 170, 11, 170, 12, 170, 2456, 1, 170, 1, 170, 3, 170, 2461, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 4, 170, 2467, 8, 170, 11, 170, 12, 170, 2468, 1, 170, 1, 170, 3, 170, 2473, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2496, 8, 170, 10, 170, 12, 170, 2499, 9, 170, 3, 170, 2501, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2510, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2516, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2522, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2528, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2539, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2548, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2568, 8, 170, 10, 170, 12, 170, 2571, 9, 170, 3, 170, 2573, 8, 170, 1, 170, 3, 170, 2576, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2586, 8, 170, 10, 170, 12, 170, 2589, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2595, 8, 171, 3, 171, 2597, 8, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2619, 8, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 2646, 8, 178, 10, 178, 12, 178, 2649, 9, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2655, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 2661, 8, 178, 10, 178, 12, 178, 2664, 9, 178, 1, 178, 1, 178, 3, 178, 2668, 8, 178, 3, 178, 2670, 8, 178, 1, 178, 1, 178, 5, 178, 2674, 8, 178, 10, 178, 12, 178, 2677, 9, 178, 1, 179, 1, 179, 1, 180, 1, 180, 3, 180, 2683, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2689, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 2704, 8, 184, 10, 184, 12, 184, 2707, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2714, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 2721, 8, 185, 10, 185, 12, 185, 2724, 9, 185, 3, 185, 2726, 8, 185, 1, 185, 3, 185, 2729, 8, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2749, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2760, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2767, 8, 188, 1, 189, 1, 189, 1, 189, 5, 189, 2772, 8, 189, 10, 189, 12, 189, 2775, 9, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2788, 8, 190, 3, 190, 2790, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 5, 192, 2797, 8, 192, 10, 192, 12, 192, 2800, 9, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2808, 8, 193, 1, 193, 1, 193, 1, 193, 5, 193, 2813, 8, 193, 10, 193, 12, 193, 2816, 9, 193, 3, 193, 2818, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2826, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2833, 8, 195, 1, 196, 3, 196, 2836, 8, 196, 1, 196, 1, 196, 3, 196, 2840, 8, 196, 1, 196, 1, 196, 3, 196, 2844, 8, 196, 1, 196, 3, 196, 2847, 8, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 10, 799, 1472, 1656, 1695, 1715, 1730, 1761, 1790, 1864, 2396, 6, 270, 304, 332, 336, 340, 356, 199, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3169, 0, 401, 1, 0, 0, 0, 2, 406, 1, 0, 0, 0, 4, 432, 1, 0, 0, 0, 6, 434, 1, 0, 0, 0, 8, 445, 1, 0, 0, 0, 10, 447, 1, 0, 0, 0, 12, 486, 1, 0, 0, 0, 14, 508, 1, 0, 0, 0, 16, 562, 1, 0, 0, 0, 18, 581, 1, 0, 0, 0, 20, 594, 1, 0, 0, 0, 22, 598, 1, 0, 0, 0, 24, 660, 1, 0, 0, 0, 26, 708, 1, 0, 0, 0, 28, 710, 1, 0, 0, 0, 30, 718, 1, 0, 0, 0, 32, 738, 1, 0, 0, 0, 34, 758, 1, 0, 0, 0, 36, 765, 1, 0, 0, 0, 38, 774, 1, 0, 0, 0, 40, 782, 1, 0, 0, 0, 42, 804, 1, 0, 0, 0, 44, 814, 1, 0, 0, 0, 46, 832, 1, 0, 0, 0, 48, 853, 1, 0, 0, 0, 50, 874, 1, 0, 0, 0, 52, 880, 1, 0, 0, 0, 54, 897, 1, 0, 0, 0, 56, 906, 1, 0, 0, 0, 58, 913, 1, 0, 0, 0, 60, 921, 1, 0, 0, 0, 62, 928, 1, 0, 0, 0, 64, 935, 1, 0, 0, 0, 66, 944, 1, 0, 0, 0, 68, 955, 1, 0, 0, 0, 70, 957, 1, 0, 0, 0, 72, 977, 1, 0, 0, 0, 74, 994, 1, 0, 0, 0, 76, 996, 1, 0, 0, 0, 78, 1005, 1, 0, 0, 0, 80, 1012, 1, 0, 0, 0, 82, 1021, 1, 0, 0, 0, 84, 1031, 1, 0, 0, 0, 86, 1054, 1, 0, 0, 0, 88, 1060, 1, 0, 0, 0, 90, 1062, 1, 0, 0, 0, 92, 1069, 1, 0, 0, 0, 94, 1081, 1, 0, 0, 0, 96, 1083, 1, 0, 0, 0, 98, 1090, 1, 0, 0, 0, 100, 1111, 1, 0, 0, 0, 102, 1140, 1, 0, 0, 0, 104, 1142, 1, 0, 0, 0, 106, 1150, 1, 0, 0, 0, 108, 1172, 1, 0, 0, 0, 110, 1190, 1, 0, 0, 0, 112, 1213, 1, 0, 0, 0, 114, 1215, 1, 0, 0, 0, 116, 1230, 1, 0, 0, 0, 118, 1249, 1, 0, 0, 0, 120, 1271, 1, 0, 0, 0, 122, 1276, 1, 0, 0, 0, 124, 1281, 1, 0, 0, 0, 126, 1286, 1, 0, 0, 0, 128, 1291, 1, 0, 0, 0, 130, 1298, 1, 0, 0, 0, 132, 1313, 1, 0, 0, 0, 134, 1319, 1, 0, 0, 0, 136, 1339, 1, 0, 0, 0, 138, 1341, 1, 0, 0, 0, 140, 1352, 1, 0, 0, 0, 142, 1363, 1, 0, 0, 0, 144, 1377, 1, 0, 0, 0, 146, 1379, 1, 0, 0, 0, 148, 1388, 1, 0, 0, 0, 150, 1397, 1, 0, 0, 0, 152, 1406, 1, 0, 0, 0, 154, 1409, 1, 0, 0, 0, 156, 1417, 1, 0, 0, 0, 158, 1433, 1, 0, 0, 0, 160, 1437, 1, 0, 0, 0, 162, 1461, 1, 0, 0, 0, 164, 1463, 1, 0, 0, 0, 166, 1479, 1, 0, 0, 0, 168, 1482, 1, 0, 0, 0, 170, 1486, 1, 0, 0, 0, 172, 1489, 1, 0, 0, 0, 174, 1493, 1, 0, 0, 0, 176, 1495, 1, 0, 0, 0, 178, 1497, 1, 0, 0, 0, 180, 1499, 1, 0, 0, 0, 182, 1501, 1, 0, 0, 0, 184, 1503, 1, 0, 0, 0, 186, 1505, 1, 0, 0, 0, 188, 1513, 1, 0, 0, 0, 190, 1523, 1, 0, 0, 0, 192, 1525, 1, 0, 0, 0, 194, 1530, 1, 0, 0, 0, 196, 1532, 1, 0, 0, 0, 198, 1537, 1, 0, 0, 0, 200, 1541, 1, 0, 0, 0, 202, 1546, 1, 0, 0, 0, 204, 1586, 1, 0, 0, 0, 206, 1594, 1, 0, 0, 0, 208, 1598, 1, 0, 0, 0, 210, 1613, 1, 0, 0, 0, 212, 1618, 1, 0, 0, 0, 214, 1622, 1, 0, 0, 0, 216, 1631, 1, 0, 0, 0, 218, 1661, 1, 0, 0, 0, 220, 1676, 1, 0, 0, 0, 222, 1682, 1, 0, 0, 0, 224, 1687, 1, 0, 0, 0, 226, 1689, 1, 0, 0, 0, 228, 1707, 1, 0, 0, 0, 230, 1710, 1, 0, 0, 0, 232, 1720, 1, 0, 0, 0, 234, 1740, 1, 0, 0, 0, 236, 1750, 1, 0, 0, 0, 238, 1752, 1, 0, 0, 0, 240, 1754, 1, 0, 0, 0, 242, 1769, 1, 0, 0, 0, 244, 1771, 1, 0, 0, 0, 246, 1778, 1, 0, 0, 0, 248, 1810, 1, 0, 0, 0, 250, 1822, 1, 0, 0, 0, 252, 1829, 1, 0, 0, 0, 254, 1839, 1, 0, 0, 0, 256, 1841, 1, 0, 0, 0, 258, 1847, 1, 0, 0, 0, 260, 1858, 1, 0, 0, 0, 262, 1869, 1, 0, 0, 0, 264, 1877, 1, 0, 0, 0, 266, 1895, 1, 0, 0, 0, 268, 1900, 1, 0, 0, 0, 270, 1921, 1, 0, 0, 0, 272, 1957, 1, 0, 0, 0, 274, 1959, 1, 0, 0, 0, 276, 1967, 1, 0, 0, 0, 278, 1997, 1, 0, 0, 0, 280, 2005, 1, 0, 0, 0, 282, 2010, 1, 0, 0, 0, 284, 2016, 1, 0, 0, 0, 286, 2026, 1, 0, 0, 0, 288, 2041, 1, 0, 0, 0, 290, 2043, 1, 0, 0, 0, 292, 2050, 1, 0, 0, 0, 294, 2061, 1, 0, 0, 0, 296, 2064, 1, 0, 0, 0, 298, 2068, 1, 0, 0, 0, 300, 2070, 1, 0, 0, 0, 302, 2075, 1, 0, 0, 0, 304, 2079, 1, 0, 0, 0, 306, 2129, 1, 0, 0, 0, 308, 2148, 1, 0, 0, 0, 310, 2150, 1, 0, 0, 0, 312, 2165, 1, 0, 0, 0, 314, 2167, 1, 0, 0, 0, 316, 2177, 1, 0, 0, 0, 318, 2192, 1, 0, 0, 0, 320, 2195, 1, 0, 0, 0, 322, 2199, 1, 0, 0, 0, 324, 2203, 1, 0, 0, 0, 326, 2218, 1, 0, 0, 0, 328, 2224, 1, 0, 0, 0, 330, 2226, 1, 0, 0, 0, 332, 2235, 1, 0, 0, 0, 334, 2306, 1, 0, 0, 0, 336, 2312, 1, 0, 0, 0, 338, 2328, 1, 0, 0, 0, 340, 2575, 1, 0, 0, 0, 342, 2596, 1, 0, 0, 0, 344, 2598, 1, 0, 0, 0, 346, 2600, 1, 0, 0, 0, 348, 2602, 1, 0, 0, 0, 350, 2618, 1, 0, 0, 0, 352, 2620, 1, 0, 0, 0, 354, 2622, 1, 0, 0, 0, 356, 2669, 1, 0, 0, 0, 358, 2678, 1, 0, 0, 0, 360, 2682, 1, 0, 0, 0, 362, 2688, 1, 0, 0, 0, 364, 2690, 1, 0, 0, 0, 366, 2695, 1, 0, 0, 0, 368, 2700, 1, 0, 0, 0, 370, 2708, 1, 0, 0, 0, 372, 2748, 1, 0, 0, 0, 374, 2759, 1, 0, 0, 0, 376, 2766, 1, 0, 0, 0, 378, 2768, 1, 0, 0, 0, 380, 2789, 1, 0, 0, 0, 382, 2791, 1, 0, 0, 0, 384, 2793, 1, 0, 0, 0, 386, 2817, 1, 0, 0, 0, 388, 2825, 1, 0, 0, 0, 390, 2832, 1, 0, 0, 0, 392, 2846, 1, 0, 0, 0, 394, 2848, 1, 0, 0, 0, 396, 2850, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 262, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 3, 1, 0, 0, 0, 410, 433, 3, 212, 106, 0, 411, 433, 3, 6, 3, 0, 412, 433, 3, 8, 4, 0, 413, 433, 3, 26, 13, 0, 414, 433, 3, 64, 32, 0, 415, 433, 3, 66, 33, 0, 416, 433, 3, 68, 34, 0, 417, 433, 3, 74, 37, 0, 418, 433, 3, 88, 44, 0, 419, 433, 3, 94, 47, 0, 420, 433, 3, 100, 50, 0, 421, 433, 3, 102, 51, 0, 422, 433, 3, 108, 54, 0, 423, 433, 3, 110, 55, 0, 424, 433, 3, 112, 56, 0, 425, 433, 3, 144, 72, 0, 426, 433, 3, 152, 76, 0, 427, 433, 3, 154, 77, 0, 428, 433, 3, 156, 78, 0, 429, 433, 3, 158, 79, 0, 430, 433, 3, 160, 80, 0, 431, 433, 3, 162, 81, 0, 432, 410, 1, 0, 0, 0, 432, 411, 1, 0, 0, 0, 432, 412, 1, 0, 0, 0, 432, 413, 1, 0, 0, 0, 432, 414, 1, 0, 0, 0, 432, 415, 1, 0, 0, 0, 432, 416, 1, 0, 0, 0, 432, 417, 1, 0, 0, 0, 432, 418, 1, 0, 0, 0, 432, 419, 1, 0, 0, 0, 432, 420, 1, 0, 0, 0, 432, 421, 1, 0, 0, 0, 432, 422, 1, 0, 0, 0, 432, 423, 1, 0, 0, 0, 432, 424, 1, 0, 0, 0, 432, 425, 1, 0, 0, 0, 432, 426, 1, 0, 0, 0, 432, 427, 1, 0, 0, 0, 432, 428, 1, 0, 0, 0, 432, 429, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 431, 1, 0, 0, 0, 433, 5, 1, 0, 0, 0, 434, 435, 5, 203, 0, 0, 435, 436, 3, 184, 92, 0, 436, 7, 1, 0, 0, 0, 437, 446, 3, 18, 9, 0, 438, 446, 3, 20, 10, 0, 439, 446, 3, 22, 11, 0, 440, 446, 3, 24, 12, 0, 441, 446, 3, 16, 8, 0, 442, 446, 3, 14, 7, 0, 443, 446, 3, 12, 6, 0, 444, 446, 3, 10, 5, 0, 445, 437, 1, 0, 0, 0, 445, 438, 1, 0, 0, 0, 445, 439, 1, 0, 0, 0, 445, 440, 1, 0, 0, 0, 445, 441, 1, 0, 0, 0, 445, 442, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 444, 1, 0, 0, 0, 446, 9, 1, 0, 0, 0, 447, 449, 5, 37, 0, 0, 448, 450, 5, 19, 0, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 453, 5, 188, 0, 0, 452, 454, 3, 172, 86, 0, 453, 452, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 471, 3, 174, 87, 0, 456, 457, 5, 265, 0, 0, 457, 462, 3, 222, 111, 0, 458, 459, 5, 263, 0, 0, 459, 461, 3, 222, 111, 0, 460, 458, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 467, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 465, 466, 5, 263, 0, 0, 466, 468, 3, 216, 108, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 5, 266, 0, 0, 470, 472, 1, 0, 0, 0, 471, 456, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 479, 1, 0, 0, 0, 473, 474, 5, 17, 0, 0, 474, 477, 5, 26, 0, 0, 475, 478, 3, 316, 158, 0, 476, 478, 3, 260, 130, 0, 477, 475, 1, 0, 0, 0, 477, 476, 1, 0, 0, 0, 478, 480, 1, 0, 0, 0, 479, 473, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 484, 3, 202, 101, 0, 482, 483, 5, 9, 0, 0, 483, 485, 3, 212, 106, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 11, 1, 0, 0, 0, 486, 488, 5, 37, 0, 0, 487, 489, 5, 19, 0, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 492, 5, 188, 0, 0, 491, 493, 3, 172, 86, 0, 492, 491, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 3, 174, 87, 0, 495, 499, 5, 115, 0, 0, 496, 500, 3, 186, 93, 0, 497, 498, 5, 147, 0, 0, 498, 500, 3, 342, 171, 0, 499, 496, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 504, 1, 0, 0, 0, 501, 502, 5, 17, 0, 0, 502, 503, 5, 26, 0, 0, 503, 505, 3, 260, 130, 0, 504, 501, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 3, 202, 101, 0, 507, 13, 1, 0, 0, 0, 508, 510, 5, 37, 0, 0, 509, 511, 5, 19, 0, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 5, 188, 0, 0, 513, 515, 3, 172, 86, 0, 514, 513, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 534, 3, 174, 87, 0, 517, 518, 5, 265, 0, 0, 518, 523, 3, 224, 112, 0, 519, 520, 5, 263, 0, 0, 520, 522, 3, 224, 112, 0, 521, 519, 1, 0, 0, 0, 522, 525, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 530, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 526, 527, 5, 263, 0, 0, 527, 528, 5, 150, 0, 0, 528, 529, 5, 110, 0, 0, 529, 531, 3, 316, 158, 0, 530, 526, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 5, 266, 0, 0, 533, 535, 1, 0, 0, 0, 534, 517, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 541, 1, 0, 0, 0, 536, 537, 5, 150, 0, 0, 537, 539, 5, 110, 0, 0, 538, 540, 3, 316, 158, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 542, 1, 0, 0, 0, 541, 536, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 546, 1, 0, 0, 0, 543, 544, 5, 145, 0, 0, 544, 545, 5, 26, 0, 0, 545, 547, 3, 242, 121, 0, 546, 543, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 549, 1, 0, 0, 0, 548, 550, 3, 228, 114, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 5, 23, 0, 0, 552, 553, 5, 9, 0, 0, 553, 556, 5, 111, 0, 0, 554, 555, 5, 25, 0, 0, 555, 557, 3, 258, 129, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 559, 5, 9, 0, 0, 559, 561, 3, 212, 106, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 15, 1, 0, 0, 0, 562, 563, 5, 37, 0, 0, 563, 565, 5, 212, 0, 0, 564, 566, 3, 172, 86, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 569, 3, 178, 89, 0, 568, 570, 3, 208, 104, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 572, 1, 0, 0, 0, 571, 573, 3, 228, 114, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 576, 1, 0, 0, 0, 574, 575, 5, 25, 0, 0, 575, 577, 3, 258, 129, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 5, 9, 0, 0, 579, 580, 3, 212, 106, 0, 580, 17, 1, 0, 0, 0, 581, 582, 5, 37, 0, 0, 582, 584, 7, 0, 0, 0, 583, 585, 3, 172, 86, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 588, 3, 176, 88, 0, 587, 589, 3, 228, 114, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 592, 1, 0, 0, 0, 590, 591, 5, 24, 0, 0, 591, 593, 3, 342, 171, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 19, 1, 0, 0, 0, 594, 595, 5, 37, 0, 0, 595, 596, 5, 166, 0, 0, 596, 597, 3, 390, 195, 0, 597, 21, 1, 0, 0, 0, 598, 600, 5, 37, 0, 0, 599, 601, 5, 12, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 604, 5, 84, 0, 0, 603, 605, 3, 172, 86, 0, 604, 603, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 619, 3, 180, 90, 0, 607, 616, 5, 265, 0, 0, 608, 613, 3, 356, 178, 0, 609, 610, 5, 263, 0, 0, 610, 612, 3, 356, 178, 0, 611, 609, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 608, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 266, 0, 0, 619, 607, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 5, 160, 0, 0, 622, 625, 3, 356, 178, 0, 623, 624, 5, 102, 0, 0, 624, 626, 3, 356, 178, 0, 625, 623, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 5, 24, 0, 0, 628, 632, 5, 274, 0, 0, 629, 630, 5, 104, 0, 0, 630, 631, 5, 249, 0, 0, 631, 633, 5, 274, 0, 0, 632, 629, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 5, 206, 0, 0, 635, 636, 5, 249, 0, 0, 636, 637, 5, 274, 0, 0, 637, 638, 5, 126, 0, 0, 638, 639, 5, 249, 0, 0, 639, 643, 5, 274, 0, 0, 640, 641, 5, 18, 0, 0, 641, 642, 5, 249, 0, 0, 642, 644, 5, 274, 0, 0, 643, 640, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 648, 1, 0, 0, 0, 645, 646, 5, 20, 0, 0, 646, 647, 5, 249, 0, 0, 647, 649, 5, 274, 0, 0, 648, 645, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 653, 1, 0, 0, 0, 650, 651, 5, 187, 0, 0, 651, 652, 5, 249, 0, 0, 652, 654, 5, 274, 0, 0, 653, 650, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 658, 1, 0, 0, 0, 655, 656, 5, 76, 0, 0, 656, 657, 5, 249, 0, 0, 657, 659, 5, 274, 0, 0, 658, 655, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 23, 1, 0, 0, 0, 660, 661, 5, 37, 0, 0, 661, 663, 5, 84, 0, 0, 662, 664, 3, 172, 86, 0, 663, 662, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 678, 3, 180, 90, 0, 666, 675, 5, 265, 0, 0, 667, 672, 3, 356, 178, 0, 668, 669, 5, 263, 0, 0, 669, 671, 3, 356, 178, 0, 670, 668, 1, 0, 0, 0, 671, 674, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 676, 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 675, 667, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 679, 5, 266, 0, 0, 678, 666, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 682, 1, 0, 0, 0, 680, 681, 5, 160, 0, 0, 681, 683, 3, 356, 178, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 24, 0, 0, 685, 686, 5, 274, 0, 0, 686, 687, 5, 186, 0, 0, 687, 688, 5, 249, 0, 0, 688, 689, 3, 342, 171, 0, 689, 25, 1, 0, 0, 0, 690, 709, 3, 28, 14, 0, 691, 709, 3, 62, 31, 0, 692, 709, 3, 60, 30, 0, 693, 709, 3, 58, 29, 0, 694, 709, 3, 54, 27, 0, 695, 709, 3, 56, 28, 0, 696, 709, 3, 52, 26, 0, 697, 709, 3, 48, 24, 0, 698, 709, 3, 50, 25, 0, 699, 709, 3, 46, 23, 0, 700, 709, 3, 44, 22, 0, 701, 709, 3, 42, 21, 0, 702, 709, 3, 40, 20, 0, 703, 709, 3, 34, 17, 0, 704, 709, 3, 30, 15, 0, 705, 709, 3, 32, 16, 0, 706, 709, 3, 36, 18, 0, 707, 709, 3, 38, 19, 0, 708, 690, 1, 0, 0, 0, 708, 691, 1, 0, 0, 0, 708, 692, 1, 0, 0, 0, 708, 693, 1, 0, 0, 0, 708, 694, 1, 0, 0, 0, 708, 695, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 697, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 699, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 701, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 703, 1, 0, 0, 0, 708, 704, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 707, 1, 0, 0, 0, 709, 27, 1, 0, 0, 0, 710, 711, 5, 4, 0, 0, 711, 712, 5, 46, 0, 0, 712, 713, 3, 184, 92, 0, 713, 714, 5, 176, 0, 0, 714, 715, 5, 142, 0, 0, 715, 716, 7, 1, 0, 0, 716, 717, 3, 390, 195, 0, 717, 29, 1, 0, 0, 0, 718, 719, 5, 4, 0, 0, 719, 720, 5, 188, 0, 0, 720, 721, 3, 186, 93, 0, 721, 722, 5, 176, 0, 0, 722, 723, 5, 32, 0, 0, 723, 724, 5, 182, 0, 0, 724, 725, 3, 194, 97, 0, 725, 726, 5, 265, 0, 0, 726, 727, 3, 238, 119, 0, 727, 728, 5, 249, 0, 0, 728, 734, 3, 342, 171, 0, 729, 730, 5, 263, 0, 0, 730, 731, 3, 238, 119, 0, 731, 732, 5, 249, 0, 0, 732, 733, 3, 342, 171, 0, 733, 735, 1, 0, 0, 0, 734, 729, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 5, 266, 0, 0, 737, 31, 1, 0, 0, 0, 738, 739, 5, 4, 0, 0, 739, 740, 5, 188, 0, 0, 740, 743, 3, 186, 93, 0, 741, 742, 5, 145, 0, 0, 742, 744, 3, 330, 165, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 756, 5, 176, 0, 0, 746, 747, 5, 30, 0, 0, 747, 748, 5, 94, 0, 0, 748, 753, 3, 342, 171, 0, 749, 750, 5, 216, 0, 0, 750, 751, 5, 151, 0, 0, 751, 752, 5, 249, 0, 0, 752, 754, 3, 392, 196, 0, 753, 749, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 757, 1, 0, 0, 0, 755, 757, 5, 197, 0, 0, 756, 746, 1, 0, 0, 0, 756, 755, 1, 0, 0, 0, 757, 33, 1, 0, 0, 0, 758, 759, 5, 4, 0, 0, 759, 760, 5, 188, 0, 0, 760, 761, 3, 186, 93, 0, 761, 762, 5, 31, 0, 0, 762, 763, 3, 194, 97, 0, 763, 764, 3, 230, 115, 0, 764, 35, 1, 0, 0, 0, 765, 766, 5, 4, 0, 0, 766, 767, 5, 188, 0, 0, 767, 768, 3, 186, 93, 0, 768, 770, 5, 58, 0, 0, 769, 771, 5, 32, 0, 0, 770, 769, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 3, 194, 97, 0, 773, 37, 1, 0, 0, 0, 774, 775, 5, 4, 0, 0, 775, 776, 5, 188, 0, 0, 776, 777, 3, 186, 93, 0, 777, 778, 5, 176, 0, 0, 778, 779, 5, 142, 0, 0, 779, 780, 7, 1, 0, 0, 780, 781, 3, 390, 195, 0, 781, 39, 1, 0, 0, 0, 782, 783, 5, 4, 0, 0, 783, 784, 5, 188, 0, 0, 784, 790, 3, 186, 93, 0, 785, 791, 5, 158, 0, 0, 786, 788, 5, 1, 0, 0, 787, 789, 3, 172, 86, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 791, 1, 0, 0, 0, 790, 785, 1, 0, 0, 0, 790, 786, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 5, 33, 0, 0, 793, 794, 5, 265, 0, 0, 794, 799, 3, 230, 115, 0, 795, 796, 5, 263, 0, 0, 796, 798, 3, 230, 115, 0, 797, 795, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 266, 0, 0, 803, 41, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 806, 5, 188, 0, 0, 806, 807, 3, 186, 93, 0, 807, 808, 5, 1, 0, 0, 808, 810, 5, 32, 0, 0, 809, 811, 3, 172, 86, 0, 810, 809, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 3, 232, 116, 0, 813, 43, 1, 0, 0, 0, 814, 815, 5, 4, 0, 0, 815, 816, 5, 188, 0, 0, 816, 817, 3, 186, 93, 0, 817, 819, 5, 4, 0, 0, 818, 820, 5, 32, 0, 0, 819, 818, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 830, 3, 194, 97, 0, 822, 826, 5, 176, 0, 0, 823, 827, 3, 236, 118, 0, 824, 825, 5, 34, 0, 0, 825, 827, 3, 342, 171, 0, 826, 823, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 831, 1, 0, 0, 0, 828, 829, 5, 58, 0, 0, 829, 831, 5, 51, 0, 0, 830, 822, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 45, 1, 0, 0, 0, 832, 833, 5, 4, 0, 0, 833, 834, 5, 188, 0, 0, 834, 835, 3, 186, 93, 0, 835, 837, 5, 1, 0, 0, 836, 838, 3, 172, 86, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 851, 1, 0, 0, 0, 839, 840, 5, 145, 0, 0, 840, 843, 3, 330, 165, 0, 841, 842, 5, 24, 0, 0, 842, 844, 3, 342, 171, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 847, 3, 250, 125, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 852, 1, 0, 0, 0, 848, 849, 5, 154, 0, 0, 849, 850, 5, 145, 0, 0, 850, 852, 3, 248, 124, 0, 851, 839, 1, 0, 0, 0, 851, 848, 1, 0, 0, 0, 852, 47, 1, 0, 0, 0, 853, 854, 5, 4, 0, 0, 854, 855, 5, 188, 0, 0, 855, 858, 3, 186, 93, 0, 856, 857, 5, 145, 0, 0, 857, 859, 3, 330, 165, 0, 858, 856, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 872, 5, 176, 0, 0, 861, 862, 5, 72, 0, 0, 862, 873, 3, 240, 120, 0, 863, 864, 5, 168, 0, 0, 864, 865, 5, 79, 0, 0, 865, 873, 3, 264, 132, 0, 866, 867, 5, 24, 0, 0, 867, 873, 3, 342, 171, 0, 868, 869, 5, 25, 0, 0, 869, 873, 3, 258, 129, 0, 870, 871, 5, 175, 0, 0, 871, 873, 3, 258, 129, 0, 872, 861, 1, 0, 0, 0, 872, 863, 1, 0, 0, 0, 872, 866, 1, 0, 0, 0, 872, 868, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 873, 49, 1, 0, 0, 0, 874, 875, 5, 4, 0, 0, 875, 876, 5, 188, 0, 0, 876, 877, 3, 186, 93, 0, 877, 878, 5, 155, 0, 0, 878, 879, 5, 146, 0, 0, 879, 51, 1, 0, 0, 0, 880, 881, 5, 4, 0, 0, 881, 882, 5, 188, 0, 0, 882, 883, 3, 186, 93, 0, 883, 885, 5, 58, 0, 0, 884, 886, 3, 170, 85, 0, 885, 884, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 895, 1, 0, 0, 0, 887, 888, 5, 145, 0, 0, 888, 890, 3, 330, 165, 0, 889, 891, 5, 22, 0, 0, 890, 889, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 896, 1, 0, 0, 0, 892, 893, 5, 154, 0, 0, 893, 894, 5, 145, 0, 0, 894, 896, 3, 248, 124, 0, 895, 887, 1, 0, 0, 0, 895, 892, 1, 0, 0, 0, 896, 53, 1, 0, 0, 0, 897, 898, 5, 4, 0, 0, 898, 899, 5, 212, 0, 0, 899, 901, 3, 188, 94, 0, 900, 902, 3, 208, 104, 0, 901, 900, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 5, 9, 0, 0, 904, 905, 3, 212, 106, 0, 905, 55, 1, 0, 0, 0, 906, 907, 5, 4, 0, 0, 907, 908, 5, 212, 0, 0, 908, 909, 3, 188, 94, 0, 909, 910, 5, 156, 0, 0, 910, 911, 5, 193, 0, 0, 911, 912, 3, 188, 94, 0, 912, 57, 1, 0, 0, 0, 913, 914, 5, 4, 0, 0, 914, 915, 5, 212, 0, 0, 915, 916, 3, 188, 94, 0, 916, 917, 5, 176, 0, 0, 917, 918, 5, 142, 0, 0, 918, 919, 7, 1, 0, 0, 919, 920, 3, 384, 192, 0, 920, 59, 1, 0, 0, 0, 921, 922, 5, 4, 0, 0, 922, 923, 5, 188, 0, 0, 923, 924, 3, 186, 93, 0, 924, 925, 5, 156, 0, 0, 925, 926, 5, 193, 0, 0, 926, 927, 3, 186, 93, 0, 927, 61, 1, 0, 0, 0, 928, 929, 5, 4, 0, 0, 929, 930, 5, 212, 0, 0, 930, 931, 3, 188, 94, 0, 931, 932, 7, 2, 0, 0, 932, 933, 5, 25, 0, 0, 933, 934, 3, 258, 129, 0, 934, 63, 1, 0, 0, 0, 935, 937, 5, 196, 0, 0, 936, 938, 5, 188, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 940, 1, 0, 0, 0, 939, 941, 3, 170, 85, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 3, 186, 93, 0, 943, 65, 1, 0, 0, 0, 944, 946, 5, 56, 0, 0, 945, 947, 5, 46, 0, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 949, 1, 0, 0, 0, 948, 950, 7, 3, 0, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 3, 384, 192, 0, 952, 67, 1, 0, 0, 0, 953, 956, 3, 70, 35, 0, 954, 956, 3, 72, 36, 0, 955, 953, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 69, 1, 0, 0, 0, 957, 958, 5, 36, 0, 0, 958, 959, 5, 182, 0, 0, 959, 961, 3, 186, 93, 0, 960, 962, 3, 316, 158, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 975, 1, 0, 0, 0, 963, 964, 5, 190, 0, 0, 964, 965, 5, 185, 0, 0, 965, 966, 5, 265, 0, 0, 966, 967, 3, 392, 196, 0, 967, 973, 5, 266, 0, 0, 968, 969, 5, 157, 0, 0, 969, 970, 5, 265, 0, 0, 970, 971, 3, 392, 196, 0, 971, 972, 5, 266, 0, 0, 972, 974, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 976, 1, 0, 0, 0, 975, 963, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 71, 1, 0, 0, 0, 977, 978, 5, 36, 0, 0, 978, 979, 5, 96, 0, 0, 979, 980, 5, 182, 0, 0, 980, 986, 3, 186, 93, 0, 981, 982, 5, 145, 0, 0, 982, 983, 5, 265, 0, 0, 983, 984, 3, 330, 165, 0, 984, 985, 5, 266, 0, 0, 985, 987, 1, 0, 0, 0, 986, 981, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 73, 1, 0, 0, 0, 988, 995, 3, 86, 43, 0, 989, 995, 3, 84, 42, 0, 990, 995, 3, 82, 41, 0, 991, 995, 3, 78, 39, 0, 992, 995, 3, 80, 40, 0, 993, 995, 3, 76, 38, 0, 994, 988, 1, 0, 0, 0, 994, 989, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 991, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 994, 993, 1, 0, 0, 0, 995, 75, 1, 0, 0, 0, 996, 997, 5, 58, 0, 0, 997, 999, 7, 0, 0, 0, 998, 1000, 3, 170, 85, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 3, 184, 92, 0, 1002, 1004, 7, 4, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 77, 1, 0, 0, 0, 1005, 1006, 5, 58, 0, 0, 1006, 1008, 5, 212, 0, 0, 1007, 1009, 3, 170, 85, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 3, 188, 94, 0, 1011, 79, 1, 0, 0, 0, 1012, 1013, 5, 58, 0, 0, 1013, 1015, 5, 188, 0, 0, 1014, 1016, 3, 170, 85, 0, 1015, 1014, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1019, 3, 186, 93, 0, 1018, 1020, 5, 22, 0, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 81, 1, 0, 0, 0, 1021, 1023, 5, 58, 0, 0, 1022, 1024, 5, 96, 0, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 5, 182, 0, 0, 1026, 1029, 3, 186, 93, 0, 1027, 1028, 5, 145, 0, 0, 1028, 1030, 3, 330, 165, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 83, 1, 0, 0, 0, 1031, 1033, 5, 58, 0, 0, 1032, 1034, 5, 12, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 5, 84, 0, 0, 1036, 1038, 3, 170, 85, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1052, 3, 190, 95, 0, 1040, 1049, 5, 265, 0, 0, 1041, 1046, 3, 356, 178, 0, 1042, 1043, 5, 263, 0, 0, 1043, 1045, 3, 356, 178, 0, 1044, 1042, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1050, 1, 0, 0, 0, 1048, 1046, 1, 0, 0, 0, 1049, 1041, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 5, 266, 0, 0, 1052, 1040, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 85, 1, 0, 0, 0, 1054, 1055, 5, 58, 0, 0, 1055, 1056, 5, 166, 0, 0, 1056, 1057, 3, 390, 195, 0, 1057, 87, 1, 0, 0, 0, 1058, 1061, 3, 90, 45, 0, 1059, 1061, 3, 92, 46, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1059, 1, 0, 0, 0, 1061, 89, 1, 0, 0, 0, 1062, 1063, 5, 86, 0, 0, 1063, 1064, 5, 166, 0, 0, 1064, 1065, 3, 390, 195, 0, 1065, 1066, 5, 193, 0, 0, 1066, 1067, 5, 87, 0, 0, 1067, 1068, 3, 390, 195, 0, 1068, 91, 1, 0, 0, 0, 1069, 1070, 5, 86, 0, 0, 1070, 1071, 3, 380, 190, 0, 1071, 1072, 5, 136, 0, 0, 1072, 1074, 3, 382, 191, 0, 1073, 1075, 3, 384, 192, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 5, 193, 0, 0, 1077, 1078, 3, 388, 194, 0, 1078, 93, 1, 0, 0, 0, 1079, 1082, 3, 96, 48, 0, 1080, 1082, 3, 98, 49, 0, 1081, 1079, 1, 0, 0, 0, 1081, 1080, 1, 0, 0, 0, 1082, 95, 1, 0, 0, 0, 1083, 1084, 5, 161, 0, 0, 1084, 1085, 5, 166, 0, 0, 1085, 1086, 3, 390, 195, 0, 1086, 1087, 5, 82, 0, 0, 1087, 1088, 5, 87, 0, 0, 1088, 1089, 3, 390, 195, 0, 1089, 97, 1, 0, 0, 0, 1090, 1094, 5, 161, 0, 0, 1091, 1092, 5, 86, 0, 0, 1092, 1093, 5, 137, 0, 0, 1093, 1095, 5, 78, 0, 0, 1094, 1091, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 380, 190, 0, 1097, 1098, 5, 136, 0, 0, 1098, 1100, 3, 382, 191, 0, 1099, 1101, 3, 384, 192, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1108, 5, 82, 0, 0, 1103, 1109, 3, 388, 194, 0, 1104, 1106, 5, 166, 0, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1109, 3, 390, 195, 0, 1108, 1103, 1, 0, 0, 0, 1108, 1105, 1, 0, 0, 0, 1109, 99, 1, 0, 0, 0, 1110, 1112, 3, 214, 107, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 5, 99, 0, 0, 1114, 1116, 7, 5, 0, 0, 1115, 1117, 5, 188, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1120, 3, 186, 93, 0, 1119, 1121, 3, 316, 158, 0, 1120, 1119, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1134, 1, 0, 0, 0, 1122, 1123, 5, 145, 0, 0, 1123, 1124, 5, 265, 0, 0, 1124, 1129, 3, 330, 165, 0, 1125, 1126, 5, 263, 0, 0, 1126, 1128, 3, 330, 165, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1132, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1133, 5, 266, 0, 0, 1133, 1135, 1, 0, 0, 0, 1134, 1122, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 3, 212, 106, 0, 1137, 101, 1, 0, 0, 0, 1138, 1141, 3, 104, 52, 0, 1139, 1141, 3, 106, 53, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1139, 1, 0, 0, 0, 1141, 103, 1, 0, 0, 0, 1142, 1144, 5, 50, 0, 0, 1143, 1145, 5, 82, 0, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 3, 186, 93, 0, 1147, 1149, 3, 280, 140, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 105, 1, 0, 0, 0, 1150, 1151, 5, 50, 0, 0, 1151, 1156, 3, 186, 93, 0, 1152, 1154, 5, 9, 0, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1157, 3, 390, 195, 0, 1156, 1153, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1167, 5, 82, 0, 0, 1159, 1164, 3, 304, 152, 0, 1160, 1161, 5, 263, 0, 0, 1161, 1163, 3, 304, 152, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1166, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1167, 1159, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 1, 0, 0, 0, 1169, 1171, 3, 280, 140, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 107, 1, 0, 0, 0, 1172, 1173, 5, 54, 0, 0, 1173, 1174, 3, 186, 93, 0, 1174, 1175, 5, 176, 0, 0, 1175, 1185, 3, 204, 102, 0, 1176, 1177, 5, 82, 0, 0, 1177, 1182, 3, 304, 152, 0, 1178, 1179, 5, 263, 0, 0, 1179, 1181, 3, 304, 152, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1184, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1176, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1189, 3, 280, 140, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 109, 1, 0, 0, 0, 1190, 1191, 5, 207, 0, 0, 1191, 1193, 5, 103, 0, 0, 1192, 1194, 5, 188, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1197, 3, 186, 93, 0, 1196, 1198, 3, 316, 158, 0, 1197, 1196, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 3, 212, 106, 0, 1200, 111, 1, 0, 0, 0, 1201, 1214, 3, 132, 66, 0, 1202, 1214, 3, 134, 67, 0, 1203, 1214, 3, 136, 68, 0, 1204, 1214, 3, 130, 65, 0, 1205, 1214, 3, 128, 64, 0, 1206, 1214, 3, 126, 63, 0, 1207, 1214, 3, 124, 62, 0, 1208, 1214, 3, 122, 61, 0, 1209, 1214, 3, 120, 60, 0, 1210, 1214, 3, 118, 59, 0, 1211, 1214, 3, 116, 58, 0, 1212, 1214, 3, 114, 57, 0, 1213, 1201, 1, 0, 0, 0, 1213, 1202, 1, 0, 0, 0, 1213, 1203, 1, 0, 0, 0, 1213, 1204, 1, 0, 0, 0, 1213, 1205, 1, 0, 0, 0, 1213, 1206, 1, 0, 0, 0, 1213, 1207, 1, 0, 0, 0, 1213, 1208, 1, 0, 0, 0, 1213, 1209, 1, 0, 0, 0, 1213, 1210, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 113, 1, 0, 0, 0, 1215, 1216, 5, 179, 0, 0, 1216, 1228, 7, 6, 0, 0, 1217, 1219, 5, 115, 0, 0, 1218, 1217, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1225, 3, 342, 171, 0, 1221, 1222, 5, 271, 0, 0, 1222, 1224, 3, 342, 171, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1227, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1218, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 115, 1, 0, 0, 0, 1230, 1231, 5, 179, 0, 0, 1231, 1234, 5, 189, 0, 0, 1232, 1233, 5, 94, 0, 0, 1233, 1235, 3, 186, 93, 0, 1234, 1232, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1247, 1, 0, 0, 0, 1236, 1238, 5, 115, 0, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1244, 3, 342, 171, 0, 1240, 1241, 5, 271, 0, 0, 1241, 1243, 3, 342, 171, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1237, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 117, 1, 0, 0, 0, 1249, 1251, 5, 179, 0, 0, 1250, 1252, 7, 7, 0, 0, 1251, 1250, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1256, 5, 85, 0, 0, 1254, 1255, 5, 94, 0, 0, 1255, 1257, 3, 184, 92, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1269, 1, 0, 0, 0, 1258, 1260, 5, 115, 0, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1266, 3, 342, 171, 0, 1262, 1263, 5, 271, 0, 0, 1263, 1265, 3, 342, 171, 0, 1264, 1262, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1259, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 119, 1, 0, 0, 0, 1271, 1272, 5, 179, 0, 0, 1272, 1273, 5, 37, 0, 0, 1273, 1274, 5, 188, 0, 0, 1274, 1275, 3, 186, 93, 0, 1275, 121, 1, 0, 0, 0, 1276, 1277, 5, 179, 0, 0, 1277, 1278, 5, 37, 0, 0, 1278, 1279, 5, 212, 0, 0, 1279, 1280, 3, 188, 94, 0, 1280, 123, 1, 0, 0, 0, 1281, 1282, 5, 179, 0, 0, 1282, 1283, 5, 188, 0, 0, 1283, 1284, 5, 182, 0, 0, 1284, 1285, 3, 186, 93, 0, 1285, 125, 1, 0, 0, 0, 1286, 1287, 5, 179, 0, 0, 1287, 1288, 5, 32, 0, 0, 1288, 1289, 5, 182, 0, 0, 1289, 1290, 3, 186, 93, 0, 1290, 127, 1, 0, 0, 0, 1291, 1293, 5, 179, 0, 0, 1292, 1294, 5, 154, 0, 0, 1293, 1292, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 5, 146, 0, 0, 1296, 1297, 3, 186, 93, 0, 1297, 129, 1, 0, 0, 0, 1298, 1299, 5, 179, 0, 0, 1299, 1300, 5, 73, 0, 0, 1300, 1301, 5, 94, 0, 0, 1301, 1311, 3, 186, 93, 0, 1302, 1303, 5, 145, 0, 0, 1303, 1304, 5, 265, 0, 0, 1304, 1307, 3, 330, 165, 0, 1305, 1306, 5, 263, 0, 0, 1306, 1308, 3, 330, 165, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 5, 266, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1302, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 131, 1, 0, 0, 0, 1313, 1315, 5, 179, 0, 0, 1314, 1316, 5, 39, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 5, 167, 0, 0, 1318, 133, 1, 0, 0, 0, 1319, 1320, 5, 179, 0, 0, 1320, 1321, 5, 166, 0, 0, 1321, 1322, 5, 86, 0, 0, 1322, 1323, 5, 87, 0, 0, 1323, 1324, 3, 390, 195, 0, 1324, 135, 1, 0, 0, 0, 1325, 1340, 3, 138, 69, 0, 1326, 1340, 3, 140, 70, 0, 1327, 1340, 3, 142, 71, 0, 1328, 1329, 5, 179, 0, 0, 1329, 1330, 5, 86, 0, 0, 1330, 1331, 7, 8, 0, 0, 1331, 1337, 3, 390, 195, 0, 1332, 1333, 5, 136, 0, 0, 1333, 1335, 7, 9, 0, 0, 1334, 1336, 3, 384, 192, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1338, 1, 0, 0, 0, 1337, 1332, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1340, 1, 0, 0, 0, 1339, 1325, 1, 0, 0, 0, 1339, 1326, 1, 0, 0, 0, 1339, 1327, 1, 0, 0, 0, 1339, 1328, 1, 0, 0, 0, 1340, 137, 1, 0, 0, 0, 1341, 1342, 5, 179, 0, 0, 1342, 1343, 5, 86, 0, 0, 1343, 1344, 7, 8, 0, 0, 1344, 1350, 3, 390, 195, 0, 1345, 1346, 5, 136, 0, 0, 1346, 1348, 5, 46, 0, 0, 1347, 1349, 3, 184, 92, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1351, 1, 0, 0, 0, 1350, 1345, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 139, 1, 0, 0, 0, 1352, 1353, 5, 179, 0, 0, 1353, 1354, 5, 86, 0, 0, 1354, 1355, 7, 8, 0, 0, 1355, 1361, 3, 390, 195, 0, 1356, 1357, 5, 136, 0, 0, 1357, 1359, 5, 188, 0, 0, 1358, 1360, 3, 186, 93, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1362, 1, 0, 0, 0, 1361, 1356, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 141, 1, 0, 0, 0, 1363, 1364, 5, 179, 0, 0, 1364, 1365, 5, 86, 0, 0, 1365, 1366, 7, 8, 0, 0, 1366, 1372, 3, 390, 195, 0, 1367, 1368, 5, 136, 0, 0, 1368, 1370, 5, 32, 0, 0, 1369, 1371, 3, 194, 97, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1367, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 143, 1, 0, 0, 0, 1374, 1378, 3, 146, 73, 0, 1375, 1378, 3, 148, 74, 0, 1376, 1378, 3, 150, 75, 0, 1377, 1374, 1, 0, 0, 0, 1377, 1375, 1, 0, 0, 0, 1377, 1376, 1, 0, 0, 0, 1378, 145, 1, 0, 0, 0, 1379, 1380, 5, 34, 0, 0, 1380, 1381, 5, 136, 0, 0, 1381, 1382, 5, 46, 0, 0, 1382, 1383, 3, 184, 92, 0, 1383, 1386, 5, 108, 0, 0, 1384, 1387, 3, 342, 171, 0, 1385, 1387, 5, 133, 0, 0, 1386, 1384, 1, 0, 0, 0, 1386, 1385, 1, 0, 0, 0, 1387, 147, 1, 0, 0, 0, 1388, 1389, 5, 34, 0, 0, 1389, 1390, 5, 136, 0, 0, 1390, 1391, 5, 188, 0, 0, 1391, 1392, 3, 186, 93, 0, 1392, 1395, 5, 108, 0, 0, 1393, 1396, 3, 342, 171, 0, 1394, 1396, 5, 133, 0, 0, 1395, 1393, 1, 0, 0, 0, 1395, 1394, 1, 0, 0, 0, 1396, 149, 1, 0, 0, 0, 1397, 1398, 5, 34, 0, 0, 1398, 1399, 5, 136, 0, 0, 1399, 1400, 5, 32, 0, 0, 1400, 1401, 3, 194, 97, 0, 1401, 1404, 5, 108, 0, 0, 1402, 1405, 3, 342, 171, 0, 1403, 1405, 5, 133, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 151, 1, 0, 0, 0, 1406, 1407, 5, 67, 0, 0, 1407, 1408, 3, 4, 2, 0, 1408, 153, 1, 0, 0, 0, 1409, 1415, 5, 176, 0, 0, 1410, 1416, 5, 2, 0, 0, 1411, 1412, 3, 390, 195, 0, 1412, 1413, 5, 249, 0, 0, 1413, 1414, 3, 330, 165, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1410, 1, 0, 0, 0, 1415, 1411, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 155, 1, 0, 0, 0, 1417, 1418, 5, 264, 0, 0, 1418, 1419, 5, 180, 0, 0, 1419, 1429, 5, 265, 0, 0, 1420, 1422, 3, 342, 171, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1430, 1, 0, 0, 0, 1423, 1426, 3, 342, 171, 0, 1424, 1425, 5, 263, 0, 0, 1425, 1427, 3, 330, 165, 0, 1426, 1424, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1430, 1, 0, 0, 0, 1428, 1430, 3, 330, 165, 0, 1429, 1421, 1, 0, 0, 0, 1429, 1423, 1, 0, 0, 0, 1429, 1428, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 5, 266, 0, 0, 1432, 157, 1, 0, 0, 0, 1433, 1434, 5, 107, 0, 0, 1434, 1435, 5, 121, 0, 0, 1435, 1436, 3, 186, 93, 0, 1436, 159, 1, 0, 0, 0, 1437, 1438, 5, 118, 0, 0, 1438, 1439, 5, 45, 0, 0, 1439, 1440, 5, 98, 0, 0, 1440, 1442, 5, 274, 0, 0, 1441, 1443, 5, 144, 0, 0, 1442, 1441, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1445, 5, 103, 0, 0, 1445, 1446, 5, 188, 0, 0, 1446, 1456, 3, 186, 93, 0, 1447, 1448, 5, 145, 0, 0, 1448, 1449, 5, 265, 0, 0, 1449, 1452, 3, 330, 165, 0, 1450, 1451, 5, 263, 0, 0, 1451, 1453, 3, 330, 165, 0, 1452, 1450, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 5, 266, 0, 0, 1455, 1457, 1, 0, 0, 0, 1456, 1447, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 161, 1, 0, 0, 0, 1458, 1462, 3, 164, 82, 0, 1459, 1462, 3, 166, 83, 0, 1460, 1462, 3, 168, 84, 0, 1461, 1458, 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1461, 1460, 1, 0, 0, 0, 1462, 163, 1, 0, 0, 0, 1463, 1464, 5, 162, 0, 0, 1464, 1477, 3, 186, 93, 0, 1465, 1466, 5, 145, 0, 0, 1466, 1467, 5, 265, 0, 0, 1467, 1472, 3, 330, 165, 0, 1468, 1469, 5, 263, 0, 0, 1469, 1471, 3, 330, 165, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1473, 1475, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1476, 5, 266, 0, 0, 1476, 1478, 1, 0, 0, 0, 1477, 1465, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 165, 1, 0, 0, 0, 1479, 1480, 5, 162, 0, 0, 1480, 1481, 5, 13, 0, 0, 1481, 167, 1, 0, 0, 0, 1482, 1483, 5, 162, 0, 0, 1483, 1484, 5, 85, 0, 0, 1484, 1485, 3, 190, 95, 0, 1485, 169, 1, 0, 0, 0, 1486, 1487, 5, 93, 0, 0, 1487, 1488, 5, 66, 0, 0, 1488, 171, 1, 0, 0, 0, 1489, 1490, 5, 93, 0, 0, 1490, 1491, 5, 132, 0, 0, 1491, 1492, 5, 66, 0, 0, 1492, 173, 1, 0, 0, 0, 1493, 1494, 3, 384, 192, 0, 1494, 175, 1, 0, 0, 0, 1495, 1496, 3, 384, 192, 0, 1496, 177, 1, 0, 0, 0, 1497, 1498, 3, 384, 192, 0, 1498, 179, 1, 0, 0, 0, 1499, 1500, 3, 384, 192, 0, 1500, 181, 1, 0, 0, 0, 1501, 1502, 3, 384, 192, 0, 1502, 183, 1, 0, 0, 0, 1503, 1504, 3, 384, 192, 0, 1504, 185, 1, 0, 0, 0, 1505, 1510, 3, 390, 195, 0, 1506, 1507, 5, 261, 0, 0, 1507, 1509, 3, 390, 195, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1512, 1, 0, 0, 0, 1510, 1508, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 187, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1513, 1518, 3, 390, 195, 0, 1514, 1515, 5, 261, 0, 0, 1515, 1517, 3, 390, 195, 0, 1516, 1514, 1, 0, 0, 0, 1517, 1520, 1, 0, 0, 0, 1518, 1516, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 189, 1, 0, 0, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 3, 394, 197, 0, 1522, 1524, 3, 384, 192, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1522, 1, 0, 0, 0, 1524, 191, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 193, 1, 0, 0, 0, 1527, 1528, 4, 97, 0, 0, 1528, 1531, 3, 192, 96, 0, 1529, 1531, 3, 386, 193, 0, 1530, 1527, 1, 0, 0, 0, 1530, 1529, 1, 0, 0, 0, 1531, 195, 1, 0, 0, 0, 1532, 1533, 3, 384, 192, 0, 1533, 197, 1, 0, 0, 0, 1534, 1535, 4, 99, 1, 0, 1535, 1538, 3, 192, 96, 0, 1536, 1538, 3, 386, 193, 0, 1537, 1534, 1, 0, 0, 0, 1537, 1536, 1, 0, 0, 0, 1538, 199, 1, 0, 0, 0, 1539, 1542, 3, 186, 93, 0, 1540, 1542, 3, 188, 94, 0, 1541, 1539, 1, 0, 0, 0, 1541, 1540, 1, 0, 0, 0, 1542, 201, 1, 0, 0, 0, 1543, 1544, 5, 21, 0, 0, 1544, 1545, 5, 26, 0, 0, 1545, 1547, 3, 316, 158, 0, 1546, 1543, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1549, 1, 0, 0, 0, 1548, 1550, 3, 228, 114, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1554, 1, 0, 0, 0, 1551, 1552, 5, 168, 0, 0, 1552, 1553, 5, 79, 0, 0, 1553, 1555, 3, 264, 132, 0, 1554, 1551, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1559, 1, 0, 0, 0, 1556, 1557, 5, 216, 0, 0, 1557, 1558, 5, 175, 0, 0, 1558, 1560, 3, 258, 129, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1564, 1, 0, 0, 0, 1561, 1562, 5, 23, 0, 0, 1562, 1563, 5, 9, 0, 0, 1563, 1565, 3, 240, 120, 0, 1564, 1561, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1568, 1, 0, 0, 0, 1566, 1567, 5, 24, 0, 0, 1567, 1569, 3, 342, 171, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1580, 1, 0, 0, 0, 1570, 1571, 5, 30, 0, 0, 1571, 1572, 5, 94, 0, 0, 1572, 1577, 3, 384, 192, 0, 1573, 1574, 5, 216, 0, 0, 1574, 1575, 5, 151, 0, 0, 1575, 1576, 5, 249, 0, 0, 1576, 1578, 5, 277, 0, 0, 1577, 1573, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1581, 1, 0, 0, 0, 1579, 1581, 5, 197, 0, 0, 1580, 1570, 1, 0, 0, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1584, 1, 0, 0, 0, 1582, 1583, 5, 25, 0, 0, 1583, 1585, 3, 258, 129, 0, 1584, 1582, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 203, 1, 0, 0, 0, 1586, 1591, 3, 206, 103, 0, 1587, 1588, 5, 263, 0, 0, 1588, 1590, 3, 206, 103, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 205, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 384, 192, 0, 1595, 1596, 5, 249, 0, 0, 1596, 1597, 3, 330, 165, 0, 1597, 207, 1, 0, 0, 0, 1598, 1600, 5, 265, 0, 0, 1599, 1601, 3, 210, 105, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1608, 1, 0, 0, 0, 1602, 1604, 5, 263, 0, 0, 1603, 1605, 3, 210, 105, 0, 1604, 1603, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1607, 1, 0, 0, 0, 1606, 1602, 1, 0, 0, 0, 1607, 1610, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1611, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1611, 1612, 5, 266, 0, 0, 1612, 209, 1, 0, 0, 0, 1613, 1615, 3, 182, 91, 0, 1614, 1616, 3, 228, 114, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 211, 1, 0, 0, 0, 1617, 1619, 3, 214, 107, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 3, 268, 134, 0, 1621, 213, 1, 0, 0, 0, 1622, 1623, 5, 216, 0, 0, 1623, 1628, 3, 290, 145, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1627, 3, 290, 145, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 215, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1632, 5, 150, 0, 0, 1632, 1633, 5, 110, 0, 0, 1633, 1635, 3, 316, 158, 0, 1634, 1636, 5, 53, 0, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1640, 1, 0, 0, 0, 1637, 1641, 5, 225, 0, 0, 1638, 1639, 5, 263, 0, 0, 1639, 1641, 5, 225, 0, 0, 1640, 1637, 1, 0, 0, 0, 1640, 1638, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1645, 1, 0, 0, 0, 1642, 1646, 5, 226, 0, 0, 1643, 1644, 5, 263, 0, 0, 1644, 1646, 5, 226, 0, 0, 1645, 1642, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1659, 1, 0, 0, 0, 1647, 1648, 5, 263, 0, 0, 1648, 1651, 3, 218, 109, 0, 1649, 1651, 3, 218, 109, 0, 1650, 1647, 1, 0, 0, 0, 1650, 1649, 1, 0, 0, 0, 1651, 1656, 1, 0, 0, 0, 1652, 1653, 5, 263, 0, 0, 1653, 1655, 3, 218, 109, 0, 1654, 1652, 1, 0, 0, 0, 1655, 1658, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1657, 1660, 1, 0, 0, 0, 1658, 1656, 1, 0, 0, 0, 1659, 1650, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 217, 1, 0, 0, 0, 1661, 1662, 5, 81, 0, 0, 1662, 1663, 5, 110, 0, 0, 1663, 1664, 3, 316, 158, 0, 1664, 1665, 5, 224, 0, 0, 1665, 1666, 3, 186, 93, 0, 1666, 1668, 3, 316, 158, 0, 1667, 1669, 5, 53, 0, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1671, 1, 0, 0, 0, 1670, 1672, 5, 225, 0, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1674, 1, 0, 0, 0, 1673, 1675, 5, 226, 0, 0, 1674, 1673, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 219, 1, 0, 0, 0, 1676, 1677, 3, 194, 97, 0, 1677, 1680, 3, 356, 178, 0, 1678, 1679, 5, 34, 0, 0, 1679, 1681, 3, 342, 171, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 221, 1, 0, 0, 0, 1682, 1683, 3, 182, 91, 0, 1683, 1685, 3, 356, 178, 0, 1684, 1686, 3, 228, 114, 0, 1685, 1684, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 223, 1, 0, 0, 0, 1687, 1688, 3, 226, 113, 0, 1688, 225, 1, 0, 0, 0, 1689, 1690, 3, 182, 91, 0, 1690, 1698, 3, 356, 178, 0, 1691, 1695, 3, 234, 117, 0, 1692, 1694, 3, 234, 117, 0, 1693, 1692, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1691, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1701, 1, 0, 0, 0, 1700, 1702, 3, 228, 114, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1704, 5, 150, 0, 0, 1704, 1706, 5, 110, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 227, 1, 0, 0, 0, 1707, 1708, 5, 34, 0, 0, 1708, 1709, 3, 342, 171, 0, 1709, 229, 1, 0, 0, 0, 1710, 1718, 3, 220, 110, 0, 1711, 1715, 3, 234, 117, 0, 1712, 1714, 3, 234, 117, 0, 1713, 1712, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1711, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 231, 1, 0, 0, 0, 1720, 1721, 3, 182, 91, 0, 1721, 1724, 3, 356, 178, 0, 1722, 1723, 5, 34, 0, 0, 1723, 1725, 3, 342, 171, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1733, 1, 0, 0, 0, 1726, 1730, 3, 234, 117, 0, 1727, 1729, 3, 234, 117, 0, 1728, 1727, 1, 0, 0, 0, 1729, 1732, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1733, 1726, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 233, 1, 0, 0, 0, 1735, 1737, 5, 132, 0, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1741, 5, 133, 0, 0, 1739, 1741, 3, 236, 118, 0, 1740, 1736, 1, 0, 0, 0, 1740, 1739, 1, 0, 0, 0, 1741, 235, 1, 0, 0, 0, 1742, 1743, 5, 60, 0, 0, 1743, 1751, 3, 330, 165, 0, 1744, 1745, 5, 35, 0, 0, 1745, 1751, 3, 330, 165, 0, 1746, 1747, 5, 51, 0, 0, 1747, 1751, 3, 330, 165, 0, 1748, 1749, 5, 16, 0, 0, 1749, 1751, 3, 392, 196, 0, 1750, 1742, 1, 0, 0, 0, 1750, 1744, 1, 0, 0, 0, 1750, 1746, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1751, 237, 1, 0, 0, 0, 1752, 1753, 7, 10, 0, 0, 1753, 239, 1, 0, 0, 0, 1754, 1755, 7, 11, 0, 0, 1755, 241, 1, 0, 0, 0, 1756, 1761, 3, 244, 122, 0, 1757, 1758, 5, 263, 0, 0, 1758, 1760, 3, 244, 122, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1762, 1766, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1765, 5, 263, 0, 0, 1765, 1767, 3, 246, 123, 0, 1766, 1764, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1770, 1, 0, 0, 0, 1768, 1770, 3, 246, 123, 0, 1769, 1756, 1, 0, 0, 0, 1769, 1768, 1, 0, 0, 0, 1770, 243, 1, 0, 0, 0, 1771, 1773, 5, 89, 0, 0, 1772, 1774, 3, 316, 158, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 5, 146, 0, 0, 1776, 1777, 3, 392, 196, 0, 1777, 245, 1, 0, 0, 0, 1778, 1780, 5, 154, 0, 0, 1779, 1781, 3, 316, 158, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 5, 265, 0, 0, 1783, 1784, 5, 145, 0, 0, 1784, 1790, 3, 248, 124, 0, 1785, 1786, 5, 263, 0, 0, 1786, 1787, 5, 145, 0, 0, 1787, 1789, 3, 248, 124, 0, 1788, 1785, 1, 0, 0, 0, 1789, 1792, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1790, 1788, 1, 0, 0, 0, 1791, 1793, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1793, 1794, 5, 266, 0, 0, 1794, 247, 1, 0, 0, 0, 1795, 1796, 5, 210, 0, 0, 1796, 1797, 3, 254, 127, 0, 1797, 1798, 3, 330, 165, 0, 1798, 1811, 1, 0, 0, 0, 1799, 1800, 3, 330, 165, 0, 1800, 1801, 3, 252, 126, 0, 1801, 1803, 1, 0, 0, 0, 1802, 1799, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1808, 5, 211, 0, 0, 1805, 1806, 3, 252, 126, 0, 1806, 1807, 3, 330, 165, 0, 1807, 1809, 1, 0, 0, 0, 1808, 1805, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1795, 1, 0, 0, 0, 1810, 1802, 1, 0, 0, 0, 1811, 249, 1, 0, 0, 0, 1812, 1813, 5, 30, 0, 0, 1813, 1814, 5, 94, 0, 0, 1814, 1819, 3, 390, 195, 0, 1815, 1816, 5, 216, 0, 0, 1816, 1817, 5, 151, 0, 0, 1817, 1818, 5, 249, 0, 0, 1818, 1820, 3, 392, 196, 0, 1819, 1815, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1823, 1, 0, 0, 0, 1821, 1823, 5, 197, 0, 0, 1822, 1812, 1, 0, 0, 0, 1822, 1821, 1, 0, 0, 0, 1823, 251, 1, 0, 0, 0, 1824, 1830, 1, 0, 0, 0, 1825, 1830, 5, 251, 0, 0, 1826, 1830, 5, 252, 0, 0, 1827, 1830, 5, 253, 0, 0, 1828, 1830, 5, 254, 0, 0, 1829, 1824, 1, 0, 0, 0, 1829, 1825, 1, 0, 0, 0, 1829, 1826, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1829, 1828, 1, 0, 0, 0, 1830, 253, 1, 0, 0, 0, 1831, 1840, 5, 249, 0, 0, 1832, 1840, 5, 250, 0, 0, 1833, 1840, 5, 115, 0, 0, 1834, 1840, 5, 164, 0, 0, 1835, 1840, 5, 163, 0, 0, 1836, 1840, 5, 15, 0, 0, 1837, 1840, 5, 94, 0, 0, 1838, 1840, 3, 252, 126, 0, 1839, 1831, 1, 0, 0, 0, 1839, 1832, 1, 0, 0, 0, 1839, 1833, 1, 0, 0, 0, 1839, 1834, 1, 0, 0, 0, 1839, 1835, 1, 0, 0, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1838, 1, 0, 0, 0, 1840, 255, 1, 0, 0, 0, 1841, 1842, 5, 115, 0, 0, 1842, 1845, 3, 384, 192, 0, 1843, 1844, 7, 12, 0, 0, 1844, 1846, 5, 153, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 257, 1, 0, 0, 0, 1847, 1848, 5, 265, 0, 0, 1848, 1853, 3, 266, 133, 0, 1849, 1850, 5, 263, 0, 0, 1850, 1852, 3, 266, 133, 0, 1851, 1849, 1, 0, 0, 0, 1852, 1855, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1853, 1, 0, 0, 0, 1856, 1857, 5, 266, 0, 0, 1857, 259, 1, 0, 0, 0, 1858, 1859, 5, 265, 0, 0, 1859, 1864, 3, 220, 110, 0, 1860, 1861, 5, 263, 0, 0, 1861, 1863, 3, 220, 110, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1866, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1867, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1867, 1868, 5, 266, 0, 0, 1868, 261, 1, 0, 0, 0, 1869, 1874, 3, 330, 165, 0, 1870, 1871, 5, 263, 0, 0, 1871, 1873, 3, 330, 165, 0, 1872, 1870, 1, 0, 0, 0, 1873, 1876, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 263, 1, 0, 0, 0, 1876, 1874, 1, 0, 0, 0, 1877, 1887, 5, 52, 0, 0, 1878, 1879, 5, 71, 0, 0, 1879, 1880, 5, 191, 0, 0, 1880, 1881, 5, 26, 0, 0, 1881, 1885, 3, 342, 171, 0, 1882, 1883, 5, 63, 0, 0, 1883, 1884, 5, 26, 0, 0, 1884, 1886, 3, 342, 171, 0, 1885, 1882, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1888, 1, 0, 0, 0, 1887, 1878, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1893, 1, 0, 0, 0, 1889, 1890, 5, 117, 0, 0, 1890, 1891, 5, 191, 0, 0, 1891, 1892, 5, 26, 0, 0, 1892, 1894, 3, 342, 171, 0, 1893, 1889, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 265, 1, 0, 0, 0, 1895, 1898, 3, 390, 195, 0, 1896, 1897, 5, 249, 0, 0, 1897, 1899, 3, 330, 165, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 267, 1, 0, 0, 0, 1900, 1911, 3, 270, 135, 0, 1901, 1902, 5, 139, 0, 0, 1902, 1903, 5, 26, 0, 0, 1903, 1908, 3, 274, 137, 0, 1904, 1905, 5, 263, 0, 0, 1905, 1907, 3, 274, 137, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1911, 1901, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1919, 1, 0, 0, 0, 1913, 1914, 5, 116, 0, 0, 1914, 1917, 3, 330, 165, 0, 1915, 1916, 5, 135, 0, 0, 1916, 1918, 5, 277, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1920, 1, 0, 0, 0, 1919, 1913, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 269, 1, 0, 0, 0, 1921, 1922, 6, 135, -1, 0, 1922, 1923, 3, 272, 136, 0, 1923, 1938, 1, 0, 0, 0, 1924, 1925, 10, 2, 0, 0, 1925, 1927, 5, 100, 0, 0, 1926, 1928, 3, 292, 146, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1937, 3, 270, 135, 3, 1930, 1931, 10, 1, 0, 0, 1931, 1933, 7, 13, 0, 0, 1932, 1934, 3, 292, 146, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1937, 3, 270, 135, 2, 1936, 1924, 1, 0, 0, 0, 1936, 1930, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 271, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1941, 1958, 3, 276, 138, 0, 1942, 1943, 5, 188, 0, 0, 1943, 1958, 3, 186, 93, 0, 1944, 1945, 5, 211, 0, 0, 1945, 1950, 3, 330, 165, 0, 1946, 1947, 5, 263, 0, 0, 1947, 1949, 3, 330, 165, 0, 1948, 1946, 1, 0, 0, 0, 1949, 1952, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1958, 1, 0, 0, 0, 1952, 1950, 1, 0, 0, 0, 1953, 1954, 5, 265, 0, 0, 1954, 1955, 3, 268, 134, 0, 1955, 1956, 5, 266, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1941, 1, 0, 0, 0, 1957, 1942, 1, 0, 0, 0, 1957, 1944, 1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1958, 273, 1, 0, 0, 0, 1959, 1961, 3, 328, 164, 0, 1960, 1962, 7, 14, 0, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1965, 1, 0, 0, 0, 1963, 1964, 5, 134, 0, 0, 1964, 1966, 7, 15, 0, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 275, 1, 0, 0, 0, 1967, 1969, 5, 174, 0, 0, 1968, 1970, 3, 292, 146, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1972, 1, 0, 0, 0, 1971, 1973, 5, 183, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1984, 3, 278, 139, 0, 1975, 1976, 5, 82, 0, 0, 1976, 1981, 3, 304, 152, 0, 1977, 1978, 5, 263, 0, 0, 1978, 1980, 3, 304, 152, 0, 1979, 1977, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1985, 1, 0, 0, 0, 1983, 1981, 1, 0, 0, 0, 1984, 1975, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 280, 140, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1992, 1, 0, 0, 0, 1989, 1990, 5, 87, 0, 0, 1990, 1991, 5, 26, 0, 0, 1991, 1993, 3, 284, 142, 0, 1992, 1989, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1996, 3, 282, 141, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 277, 1, 0, 0, 0, 1997, 2002, 3, 294, 147, 0, 1998, 1999, 5, 263, 0, 0, 1999, 2001, 3, 294, 147, 0, 2000, 1998, 1, 0, 0, 0, 2001, 2004, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 279, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2005, 2008, 5, 215, 0, 0, 2006, 2009, 3, 332, 166, 0, 2007, 2009, 3, 198, 99, 0, 2008, 2006, 1, 0, 0, 0, 2008, 2007, 1, 0, 0, 0, 2009, 281, 1, 0, 0, 0, 2010, 2013, 5, 90, 0, 0, 2011, 2014, 3, 332, 166, 0, 2012, 2014, 3, 198, 99, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 283, 1, 0, 0, 0, 2015, 2017, 3, 292, 146, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2023, 3, 286, 143, 0, 2019, 2020, 5, 263, 0, 0, 2020, 2022, 3, 286, 143, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 285, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2027, 3, 288, 144, 0, 2027, 287, 1, 0, 0, 0, 2028, 2037, 5, 265, 0, 0, 2029, 2034, 3, 328, 164, 0, 2030, 2031, 5, 263, 0, 0, 2031, 2033, 3, 328, 164, 0, 2032, 2030, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2029, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2042, 5, 266, 0, 0, 2040, 2042, 3, 328, 164, 0, 2041, 2028, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 289, 1, 0, 0, 0, 2043, 2045, 3, 390, 195, 0, 2044, 2046, 3, 316, 158, 0, 2045, 2044, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 5, 9, 0, 0, 2048, 2049, 3, 322, 161, 0, 2049, 291, 1, 0, 0, 0, 2050, 2051, 7, 16, 0, 0, 2051, 293, 1, 0, 0, 0, 2052, 2054, 3, 298, 149, 0, 2053, 2055, 3, 296, 148, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2062, 1, 0, 0, 0, 2056, 2058, 3, 300, 150, 0, 2057, 2059, 3, 296, 148, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2062, 3, 302, 151, 0, 2061, 2052, 1, 0, 0, 0, 2061, 2056, 1, 0, 0, 0, 2061, 2060, 1, 0, 0, 0, 2062, 295, 1, 0, 0, 0, 2063, 2065, 5, 9, 0, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2067, 3, 390, 195, 0, 2067, 297, 1, 0, 0, 0, 2068, 2069, 3, 194, 97, 0, 2069, 299, 1, 0, 0, 0, 2070, 2071, 3, 330, 165, 0, 2071, 301, 1, 0, 0, 0, 2072, 2073, 3, 384, 192, 0, 2073, 2074, 5, 261, 0, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2072, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 5, 257, 0, 0, 2078, 303, 1, 0, 0, 0, 2079, 2080, 6, 152, -1, 0, 2080, 2081, 3, 310, 155, 0, 2081, 2095, 1, 0, 0, 0, 2082, 2091, 10, 2, 0, 0, 2083, 2084, 5, 38, 0, 0, 2084, 2085, 5, 109, 0, 0, 2085, 2092, 3, 310, 155, 0, 2086, 2087, 3, 306, 153, 0, 2087, 2088, 5, 109, 0, 0, 2088, 2089, 3, 304, 152, 0, 2089, 2090, 3, 308, 154, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2083, 1, 0, 0, 0, 2091, 2086, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2082, 1, 0, 0, 0, 2094, 2097, 1, 0, 0, 0, 2095, 2093, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 305, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2098, 2100, 5, 97, 0, 0, 2099, 2098, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2130, 1, 0, 0, 0, 2101, 2103, 5, 114, 0, 0, 2102, 2104, 5, 97, 0, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2130, 1, 0, 0, 0, 2105, 2107, 5, 165, 0, 0, 2106, 2108, 5, 97, 0, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2130, 1, 0, 0, 0, 2109, 2111, 5, 114, 0, 0, 2110, 2112, 5, 141, 0, 0, 2111, 2110, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2130, 1, 0, 0, 0, 2113, 2115, 5, 165, 0, 0, 2114, 2116, 5, 141, 0, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2130, 1, 0, 0, 0, 2117, 2119, 5, 83, 0, 0, 2118, 2120, 5, 141, 0, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2130, 1, 0, 0, 0, 2121, 2122, 5, 114, 0, 0, 2122, 2130, 5, 177, 0, 0, 2123, 2124, 5, 165, 0, 0, 2124, 2130, 5, 177, 0, 0, 2125, 2126, 5, 114, 0, 0, 2126, 2130, 5, 7, 0, 0, 2127, 2128, 5, 165, 0, 0, 2128, 2130, 5, 7, 0, 0, 2129, 2099, 1, 0, 0, 0, 2129, 2101, 1, 0, 0, 0, 2129, 2105, 1, 0, 0, 0, 2129, 2109, 1, 0, 0, 0, 2129, 2113, 1, 0, 0, 0, 2129, 2117, 1, 0, 0, 0, 2129, 2121, 1, 0, 0, 0, 2129, 2123, 1, 0, 0, 0, 2129, 2125, 1, 0, 0, 0, 2129, 2127, 1, 0, 0, 0, 2130, 307, 1, 0, 0, 0, 2131, 2134, 5, 136, 0, 0, 2132, 2135, 3, 332, 166, 0, 2133, 2135, 3, 198, 99, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2133, 1, 0, 0, 0, 2135, 2149, 1, 0, 0, 0, 2136, 2137, 5, 205, 0, 0, 2137, 2138, 5, 265, 0, 0, 2138, 2143, 3, 390, 195, 0, 2139, 2140, 5, 263, 0, 0, 2140, 2142, 3, 390, 195, 0, 2141, 2139, 1, 0, 0, 0, 2142, 2145, 1, 0, 0, 0, 2143, 2141, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2146, 1, 0, 0, 0, 2145, 2143, 1, 0, 0, 0, 2146, 2147, 5, 266, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2131, 1, 0, 0, 0, 2148, 2136, 1, 0, 0, 0, 2149, 309, 1, 0, 0, 0, 2150, 2163, 3, 314, 157, 0, 2151, 2152, 5, 190, 0, 0, 2152, 2153, 3, 312, 156, 0, 2153, 2154, 5, 265, 0, 0, 2154, 2155, 3, 330, 165, 0, 2155, 2161, 5, 266, 0, 0, 2156, 2157, 5, 157, 0, 0, 2157, 2158, 5, 265, 0, 0, 2158, 2159, 3, 330, 165, 0, 2159, 2160, 5, 266, 0, 0, 2160, 2162, 1, 0, 0, 0, 2161, 2156, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2151, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 311, 1, 0, 0, 0, 2165, 2166, 7, 17, 0, 0, 2166, 313, 1, 0, 0, 0, 2167, 2175, 3, 318, 159, 0, 2168, 2170, 5, 9, 0, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2173, 3, 390, 195, 0, 2172, 2174, 3, 316, 158, 0, 2173, 2172, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2176, 1, 0, 0, 0, 2175, 2169, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 315, 1, 0, 0, 0, 2177, 2178, 5, 265, 0, 0, 2178, 2183, 3, 194, 97, 0, 2179, 2180, 5, 263, 0, 0, 2180, 2182, 3, 194, 97, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2186, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 5, 266, 0, 0, 2187, 317, 1, 0, 0, 0, 2188, 2193, 3, 200, 100, 0, 2189, 2193, 3, 320, 160, 0, 2190, 2193, 3, 324, 162, 0, 2191, 2193, 3, 326, 163, 0, 2192, 2188, 1, 0, 0, 0, 2192, 2189, 1, 0, 0, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2191, 1, 0, 0, 0, 2193, 319, 1, 0, 0, 0, 2194, 2196, 5, 113, 0, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 3, 322, 161, 0, 2198, 321, 1, 0, 0, 0, 2199, 2200, 5, 265, 0, 0, 2200, 2201, 3, 212, 106, 0, 2201, 2202, 5, 266, 0, 0, 2202, 323, 1, 0, 0, 0, 2203, 2204, 5, 201, 0, 0, 2204, 2205, 5, 265, 0, 0, 2205, 2210, 3, 330, 165, 0, 2206, 2207, 5, 263, 0, 0, 2207, 2209, 3, 330, 165, 0, 2208, 2206, 1, 0, 0, 0, 2209, 2212, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2213, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2213, 2216, 5, 266, 0, 0, 2214, 2215, 5, 216, 0, 0, 2215, 2217, 5, 140, 0, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 325, 1, 0, 0, 0, 2218, 2219, 5, 265, 0, 0, 2219, 2220, 3, 304, 152, 0, 2220, 2221, 5, 266, 0, 0, 2221, 327, 1, 0, 0, 0, 2222, 2225, 3, 194, 97, 0, 2223, 2225, 3, 330, 165, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2223, 1, 0, 0, 0, 2225, 329, 1, 0, 0, 0, 2226, 2227, 3, 332, 166, 0, 2227, 331, 1, 0, 0, 0, 2228, 2229, 6, 166, -1, 0, 2229, 2231, 3, 336, 168, 0, 2230, 2232, 3, 334, 167, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2236, 1, 0, 0, 0, 2233, 2234, 5, 132, 0, 0, 2234, 2236, 3, 332, 166, 3, 2235, 2228, 1, 0, 0, 0, 2235, 2233, 1, 0, 0, 0, 2236, 2245, 1, 0, 0, 0, 2237, 2238, 10, 2, 0, 0, 2238, 2239, 5, 5, 0, 0, 2239, 2244, 3, 332, 166, 3, 2240, 2241, 10, 1, 0, 0, 2241, 2242, 5, 138, 0, 0, 2242, 2244, 3, 332, 166, 2, 2243, 2237, 1, 0, 0, 0, 2243, 2240, 1, 0, 0, 0, 2244, 2247, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 333, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2248, 2249, 3, 344, 172, 0, 2249, 2250, 3, 336, 168, 0, 2250, 2307, 1, 0, 0, 0, 2251, 2252, 3, 344, 172, 0, 2252, 2253, 3, 346, 173, 0, 2253, 2254, 3, 322, 161, 0, 2254, 2307, 1, 0, 0, 0, 2255, 2257, 5, 132, 0, 0, 2256, 2255, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2259, 5, 15, 0, 0, 2259, 2260, 3, 336, 168, 0, 2260, 2261, 5, 5, 0, 0, 2261, 2262, 3, 336, 168, 0, 2262, 2307, 1, 0, 0, 0, 2263, 2265, 5, 132, 0, 0, 2264, 2263, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2267, 5, 94, 0, 0, 2267, 2268, 5, 265, 0, 0, 2268, 2273, 3, 330, 165, 0, 2269, 2270, 5, 263, 0, 0, 2270, 2272, 3, 330, 165, 0, 2271, 2269, 1, 0, 0, 0, 2272, 2275, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2276, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2276, 2277, 5, 266, 0, 0, 2277, 2307, 1, 0, 0, 0, 2278, 2280, 5, 132, 0, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2282, 5, 94, 0, 0, 2282, 2307, 3, 322, 161, 0, 2283, 2285, 5, 132, 0, 0, 2284, 2283, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 7, 18, 0, 0, 2287, 2290, 3, 336, 168, 0, 2288, 2289, 5, 62, 0, 0, 2289, 2291, 3, 336, 168, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2307, 1, 0, 0, 0, 2292, 2293, 7, 19, 0, 0, 2293, 2307, 3, 336, 168, 0, 2294, 2296, 5, 108, 0, 0, 2295, 2297, 5, 132, 0, 0, 2296, 2295, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2307, 7, 20, 0, 0, 2299, 2301, 5, 108, 0, 0, 2300, 2302, 5, 132, 0, 0, 2301, 2300, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2304, 5, 57, 0, 0, 2304, 2305, 5, 82, 0, 0, 2305, 2307, 3, 336, 168, 0, 2306, 2248, 1, 0, 0, 0, 2306, 2251, 1, 0, 0, 0, 2306, 2256, 1, 0, 0, 0, 2306, 2264, 1, 0, 0, 0, 2306, 2279, 1, 0, 0, 0, 2306, 2284, 1, 0, 0, 0, 2306, 2292, 1, 0, 0, 0, 2306, 2294, 1, 0, 0, 0, 2306, 2299, 1, 0, 0, 0, 2307, 335, 1, 0, 0, 0, 2308, 2309, 6, 168, -1, 0, 2309, 2313, 3, 340, 170, 0, 2310, 2311, 7, 21, 0, 0, 2311, 2313, 3, 336, 168, 4, 2312, 2308, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2325, 1, 0, 0, 0, 2314, 2315, 10, 3, 0, 0, 2315, 2316, 7, 22, 0, 0, 2316, 2324, 3, 336, 168, 4, 2317, 2318, 10, 2, 0, 0, 2318, 2319, 7, 21, 0, 0, 2319, 2324, 3, 336, 168, 3, 2320, 2321, 10, 1, 0, 0, 2321, 2322, 5, 260, 0, 0, 2322, 2324, 3, 336, 168, 2, 2323, 2314, 1, 0, 0, 0, 2323, 2317, 1, 0, 0, 0, 2323, 2320, 1, 0, 0, 0, 2324, 2327, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 337, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2328, 2329, 3, 190, 95, 0, 2329, 2341, 5, 265, 0, 0, 2330, 2332, 3, 292, 146, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2338, 3, 330, 165, 0, 2334, 2335, 5, 263, 0, 0, 2335, 2337, 3, 330, 165, 0, 2336, 2334, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2342, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2341, 2331, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2353, 1, 0, 0, 0, 2343, 2344, 5, 139, 0, 0, 2344, 2345, 5, 26, 0, 0, 2345, 2350, 3, 274, 137, 0, 2346, 2347, 5, 263, 0, 0, 2347, 2349, 3, 274, 137, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2353, 2343, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2357, 5, 266, 0, 0, 2356, 2358, 3, 366, 183, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2360, 1, 0, 0, 0, 2359, 2361, 3, 370, 185, 0, 2360, 2359, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 339, 1, 0, 0, 0, 2362, 2363, 6, 170, -1, 0, 2363, 2576, 5, 133, 0, 0, 2364, 2576, 3, 350, 175, 0, 2365, 2366, 3, 390, 195, 0, 2366, 2367, 3, 342, 171, 0, 2367, 2576, 1, 0, 0, 0, 2368, 2369, 5, 286, 0, 0, 2369, 2576, 3, 342, 171, 0, 2370, 2576, 3, 392, 196, 0, 2371, 2576, 3, 348, 174, 0, 2372, 2576, 3, 342, 171, 0, 2373, 2576, 5, 276, 0, 0, 2374, 2576, 5, 272, 0, 0, 2375, 2376, 5, 148, 0, 0, 2376, 2377, 5, 265, 0, 0, 2377, 2378, 3, 336, 168, 0, 2378, 2379, 5, 94, 0, 0, 2379, 2380, 3, 336, 168, 0, 2380, 2381, 5, 266, 0, 0, 2381, 2576, 1, 0, 0, 0, 2382, 2383, 5, 265, 0, 0, 2383, 2386, 3, 330, 165, 0, 2384, 2385, 5, 9, 0, 0, 2385, 2387, 3, 356, 178, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2396, 1, 0, 0, 0, 2388, 2389, 5, 263, 0, 0, 2389, 2392, 3, 330, 165, 0, 2390, 2391, 5, 9, 0, 0, 2391, 2393, 3, 356, 178, 0, 2392, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2395, 1, 0, 0, 0, 2394, 2388, 1, 0, 0, 0, 2395, 2398, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2399, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2399, 2400, 5, 266, 0, 0, 2400, 2576, 1, 0, 0, 0, 2401, 2402, 5, 168, 0, 0, 2402, 2403, 5, 265, 0, 0, 2403, 2408, 3, 330, 165, 0, 2404, 2405, 5, 263, 0, 0, 2405, 2407, 3, 330, 165, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2410, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2412, 5, 266, 0, 0, 2412, 2576, 1, 0, 0, 0, 2413, 2414, 3, 190, 95, 0, 2414, 2415, 5, 265, 0, 0, 2415, 2416, 5, 257, 0, 0, 2416, 2418, 5, 266, 0, 0, 2417, 2419, 3, 366, 183, 0, 2418, 2417, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2421, 1, 0, 0, 0, 2420, 2422, 3, 370, 185, 0, 2421, 2420, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2576, 1, 0, 0, 0, 2423, 2576, 3, 338, 169, 0, 2424, 2425, 3, 390, 195, 0, 2425, 2426, 5, 273, 0, 0, 2426, 2427, 3, 330, 165, 0, 2427, 2576, 1, 0, 0, 0, 2428, 2437, 5, 265, 0, 0, 2429, 2434, 3, 390, 195, 0, 2430, 2431, 5, 263, 0, 0, 2431, 2433, 3, 390, 195, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2436, 1, 0, 0, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2429, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2440, 5, 266, 0, 0, 2440, 2441, 5, 273, 0, 0, 2441, 2576, 3, 330, 165, 0, 2442, 2443, 5, 265, 0, 0, 2443, 2444, 3, 212, 106, 0, 2444, 2445, 5, 266, 0, 0, 2445, 2576, 1, 0, 0, 0, 2446, 2447, 5, 66, 0, 0, 2447, 2448, 5, 265, 0, 0, 2448, 2449, 3, 212, 106, 0, 2449, 2450, 5, 266, 0, 0, 2450, 2576, 1, 0, 0, 0, 2451, 2452, 5, 28, 0, 0, 2452, 2454, 3, 336, 168, 0, 2453, 2455, 3, 364, 182, 0, 2454, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2460, 1, 0, 0, 0, 2458, 2459, 5, 59, 0, 0, 2459, 2461, 3, 330, 165, 0, 2460, 2458, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2463, 5, 61, 0, 0, 2463, 2576, 1, 0, 0, 0, 2464, 2466, 5, 28, 0, 0, 2465, 2467, 3, 364, 182, 0, 2466, 2465, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2472, 1, 0, 0, 0, 2470, 2471, 5, 59, 0, 0, 2471, 2473, 3, 330, 165, 0, 2472, 2470, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2475, 5, 61, 0, 0, 2475, 2576, 1, 0, 0, 0, 2476, 2477, 5, 29, 0, 0, 2477, 2478, 5, 265, 0, 0, 2478, 2479, 3, 330, 165, 0, 2479, 2480, 5, 9, 0, 0, 2480, 2481, 3, 356, 178, 0, 2481, 2482, 5, 266, 0, 0, 2482, 2576, 1, 0, 0, 0, 2483, 2484, 5, 195, 0, 0, 2484, 2485, 5, 265, 0, 0, 2485, 2486, 3, 330, 165, 0, 2486, 2487, 5, 9, 0, 0, 2487, 2488, 3, 356, 178, 0, 2488, 2489, 5, 266, 0, 0, 2489, 2576, 1, 0, 0, 0, 2490, 2491, 5, 8, 0, 0, 2491, 2500, 5, 267, 0, 0, 2492, 2497, 3, 330, 165, 0, 2493, 2494, 5, 263, 0, 0, 2494, 2496, 3, 330, 165, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2499, 1, 0, 0, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2501, 1, 0, 0, 0, 2499, 2497, 1, 0, 0, 0, 2500, 2492, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2576, 5, 268, 0, 0, 2503, 2576, 3, 196, 98, 0, 2504, 2576, 5, 40, 0, 0, 2505, 2509, 5, 42, 0, 0, 2506, 2507, 5, 265, 0, 0, 2507, 2508, 5, 277, 0, 0, 2508, 2510, 5, 266, 0, 0, 2509, 2506, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2576, 1, 0, 0, 0, 2511, 2515, 5, 43, 0, 0, 2512, 2513, 5, 265, 0, 0, 2513, 2514, 5, 277, 0, 0, 2514, 2516, 5, 266, 0, 0, 2515, 2512, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2576, 1, 0, 0, 0, 2517, 2521, 5, 119, 0, 0, 2518, 2519, 5, 265, 0, 0, 2519, 2520, 5, 277, 0, 0, 2520, 2522, 5, 266, 0, 0, 2521, 2518, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2576, 1, 0, 0, 0, 2523, 2527, 5, 120, 0, 0, 2524, 2525, 5, 265, 0, 0, 2525, 2526, 5, 277, 0, 0, 2526, 2528, 5, 266, 0, 0, 2527, 2524, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2576, 1, 0, 0, 0, 2529, 2576, 5, 44, 0, 0, 2530, 2576, 5, 41, 0, 0, 2531, 2532, 5, 184, 0, 0, 2532, 2533, 5, 265, 0, 0, 2533, 2534, 3, 336, 168, 0, 2534, 2535, 5, 82, 0, 0, 2535, 2538, 3, 336, 168, 0, 2536, 2537, 5, 78, 0, 0, 2537, 2539, 3, 336, 168, 0, 2538, 2536, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2541, 5, 266, 0, 0, 2541, 2576, 1, 0, 0, 0, 2542, 2543, 5, 131, 0, 0, 2543, 2544, 5, 265, 0, 0, 2544, 2547, 3, 336, 168, 0, 2545, 2546, 5, 263, 0, 0, 2546, 2548, 3, 354, 177, 0, 2547, 2545, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2550, 5, 266, 0, 0, 2550, 2576, 1, 0, 0, 0, 2551, 2552, 5, 68, 0, 0, 2552, 2553, 5, 265, 0, 0, 2553, 2554, 3, 390, 195, 0, 2554, 2555, 5, 82, 0, 0, 2555, 2556, 3, 336, 168, 0, 2556, 2557, 5, 266, 0, 0, 2557, 2576, 1, 0, 0, 0, 2558, 2559, 5, 265, 0, 0, 2559, 2560, 3, 330, 165, 0, 2560, 2561, 5, 266, 0, 0, 2561, 2576, 1, 0, 0, 0, 2562, 2563, 5, 88, 0, 0, 2563, 2572, 5, 265, 0, 0, 2564, 2569, 3, 384, 192, 0, 2565, 2566, 5, 263, 0, 0, 2566, 2568, 3, 384, 192, 0, 2567, 2565, 1, 0, 0, 0, 2568, 2571, 1, 0, 0, 0, 2569, 2567, 1, 0, 0, 0, 2569, 2570, 1, 0, 0, 0, 2570, 2573, 1, 0, 0, 0, 2571, 2569, 1, 0, 0, 0, 2572, 2564, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 5, 266, 0, 0, 2575, 2362, 1, 0, 0, 0, 2575, 2364, 1, 0, 0, 0, 2575, 2365, 1, 0, 0, 0, 2575, 2368, 1, 0, 0, 0, 2575, 2370, 1, 0, 0, 0, 2575, 2371, 1, 0, 0, 0, 2575, 2372, 1, 0, 0, 0, 2575, 2373, 1, 0, 0, 0, 2575, 2374, 1, 0, 0, 0, 2575, 2375, 1, 0, 0, 0, 2575, 2382, 1, 0, 0, 0, 2575, 2401, 1, 0, 0, 0, 2575, 2413, 1, 0, 0, 0, 2575, 2423, 1, 0, 0, 0, 2575, 2424, 1, 0, 0, 0, 2575, 2428, 1, 0, 0, 0, 2575, 2442, 1, 0, 0, 0, 2575, 2446, 1, 0, 0, 0, 2575, 2451, 1, 0, 0, 0, 2575, 2464, 1, 0, 0, 0, 2575, 2476, 1, 0, 0, 0, 2575, 2483, 1, 0, 0, 0, 2575, 2490, 1, 0, 0, 0, 2575, 2503, 1, 0, 0, 0, 2575, 2504, 1, 0, 0, 0, 2575, 2505, 1, 0, 0, 0, 2575, 2511, 1, 0, 0, 0, 2575, 2517, 1, 0, 0, 0, 2575, 2523, 1, 0, 0, 0, 2575, 2529, 1, 0, 0, 0, 2575, 2530, 1, 0, 0, 0, 2575, 2531, 1, 0, 0, 0, 2575, 2542, 1, 0, 0, 0, 2575, 2551, 1, 0, 0, 0, 2575, 2558, 1, 0, 0, 0, 2575, 2562, 1, 0, 0, 0, 2576, 2587, 1, 0, 0, 0, 2577, 2578, 10, 15, 0, 0, 2578, 2579, 5, 267, 0, 0, 2579, 2580, 3, 336, 168, 0, 2580, 2581, 5, 268, 0, 0, 2581, 2586, 1, 0, 0, 0, 2582, 2583, 10, 13, 0, 0, 2583, 2584, 5, 261, 0, 0, 2584, 2586, 3, 390, 195, 0, 2585, 2577, 1, 0, 0, 0, 2585, 2582, 1, 0, 0, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 341, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2590, 2597, 5, 274, 0, 0, 2591, 2594, 5, 275, 0, 0, 2592, 2593, 5, 198, 0, 0, 2593, 2595, 5, 274, 0, 0, 2594, 2592, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2590, 1, 0, 0, 0, 2596, 2591, 1, 0, 0, 0, 2597, 343, 1, 0, 0, 0, 2598, 2599, 7, 23, 0, 0, 2599, 345, 1, 0, 0, 0, 2600, 2601, 7, 24, 0, 0, 2601, 347, 1, 0, 0, 0, 2602, 2603, 7, 25, 0, 0, 2603, 349, 1, 0, 0, 0, 2604, 2605, 5, 277, 0, 0, 2605, 2619, 3, 352, 176, 0, 2606, 2607, 5, 265, 0, 0, 2607, 2608, 5, 277, 0, 0, 2608, 2609, 5, 266, 0, 0, 2609, 2619, 3, 352, 176, 0, 2610, 2611, 5, 101, 0, 0, 2611, 2612, 5, 277, 0, 0, 2612, 2619, 3, 352, 176, 0, 2613, 2614, 5, 101, 0, 0, 2614, 2615, 5, 265, 0, 0, 2615, 2616, 5, 277, 0, 0, 2616, 2617, 5, 266, 0, 0, 2617, 2619, 3, 352, 176, 0, 2618, 2604, 1, 0, 0, 0, 2618, 2606, 1, 0, 0, 0, 2618, 2610, 1, 0, 0, 0, 2618, 2613, 1, 0, 0, 0, 2619, 351, 1, 0, 0, 0, 2620, 2621, 7, 26, 0, 0, 2621, 353, 1, 0, 0, 0, 2622, 2623, 7, 27, 0, 0, 2623, 355, 1, 0, 0, 0, 2624, 2625, 6, 178, -1, 0, 2625, 2626, 5, 8, 0, 0, 2626, 2627, 5, 251, 0, 0, 2627, 2628, 3, 356, 178, 0, 2628, 2629, 5, 253, 0, 0, 2629, 2670, 1, 0, 0, 0, 2630, 2631, 5, 235, 0, 0, 2631, 2632, 5, 251, 0, 0, 2632, 2633, 3, 356, 178, 0, 2633, 2634, 5, 263, 0, 0, 2634, 2635, 3, 356, 178, 0, 2635, 2636, 5, 253, 0, 0, 2636, 2670, 1, 0, 0, 0, 2637, 2638, 5, 240, 0, 0, 2638, 2639, 5, 251, 0, 0, 2639, 2640, 3, 390, 195, 0, 2640, 2647, 3, 356, 178, 0, 2641, 2642, 5, 263, 0, 0, 2642, 2643, 3, 390, 195, 0, 2643, 2644, 3, 356, 178, 0, 2644, 2646, 1, 0, 0, 0, 2645, 2641, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2650, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2651, 5, 253, 0, 0, 2651, 2670, 1, 0, 0, 0, 2652, 2655, 3, 362, 181, 0, 2653, 2655, 3, 358, 179, 0, 2654, 2652, 1, 0, 0, 0, 2654, 2653, 1, 0, 0, 0, 2655, 2667, 1, 0, 0, 0, 2656, 2657, 5, 265, 0, 0, 2657, 2662, 3, 360, 180, 0, 2658, 2659, 5, 263, 0, 0, 2659, 2661, 3, 360, 180, 0, 2660, 2658, 1, 0, 0, 0, 2661, 2664, 1, 0, 0, 0, 2662, 2660, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2662, 1, 0, 0, 0, 2665, 2666, 5, 266, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2656, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2670, 1, 0, 0, 0, 2669, 2624, 1, 0, 0, 0, 2669, 2630, 1, 0, 0, 0, 2669, 2637, 1, 0, 0, 0, 2669, 2654, 1, 0, 0, 0, 2670, 2675, 1, 0, 0, 0, 2671, 2672, 10, 5, 0, 0, 2672, 2674, 5, 8, 0, 0, 2673, 2671, 1, 0, 0, 0, 2674, 2677, 1, 0, 0, 0, 2675, 2673, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 357, 1, 0, 0, 0, 2677, 2675, 1, 0, 0, 0, 2678, 2679, 7, 28, 0, 0, 2679, 359, 1, 0, 0, 0, 2680, 2683, 5, 277, 0, 0, 2681, 2683, 3, 356, 178, 0, 2682, 2680, 1, 0, 0, 0, 2682, 2681, 1, 0, 0, 0, 2683, 361, 1, 0, 0, 0, 2684, 2689, 5, 284, 0, 0, 2685, 2689, 5, 285, 0, 0, 2686, 2689, 5, 286, 0, 0, 2687, 2689, 3, 390, 195, 0, 2688, 2684, 1, 0, 0, 0, 2688, 2685, 1, 0, 0, 0, 2688, 2686, 1, 0, 0, 0, 2688, 2687, 1, 0, 0, 0, 2689, 363, 1, 0, 0, 0, 2690, 2691, 5, 214, 0, 0, 2691, 2692, 3, 330, 165, 0, 2692, 2693, 5, 192, 0, 0, 2693, 2694, 3, 330, 165, 0, 2694, 365, 1, 0, 0, 0, 2695, 2696, 5, 74, 0, 0, 2696, 2697, 5, 265, 0, 0, 2697, 2698, 3, 280, 140, 0, 2698, 2699, 5, 266, 0, 0, 2699, 367, 1, 0, 0, 0, 2700, 2705, 3, 330, 165, 0, 2701, 2702, 5, 263, 0, 0, 2702, 2704, 3, 330, 165, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2707, 1, 0, 0, 0, 2705, 2703, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 369, 1, 0, 0, 0, 2707, 2705, 1, 0, 0, 0, 2708, 2709, 5, 143, 0, 0, 2709, 2713, 5, 265, 0, 0, 2710, 2711, 5, 145, 0, 0, 2711, 2712, 5, 26, 0, 0, 2712, 2714, 3, 368, 184, 0, 2713, 2710, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2725, 1, 0, 0, 0, 2715, 2716, 5, 139, 0, 0, 2716, 2717, 5, 26, 0, 0, 2717, 2722, 3, 274, 137, 0, 2718, 2719, 5, 263, 0, 0, 2719, 2721, 3, 274, 137, 0, 2720, 2718, 1, 0, 0, 0, 2721, 2724, 1, 0, 0, 0, 2722, 2720, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2725, 2715, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2729, 3, 372, 186, 0, 2728, 2727, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2731, 5, 266, 0, 0, 2731, 371, 1, 0, 0, 0, 2732, 2733, 5, 154, 0, 0, 2733, 2749, 3, 374, 187, 0, 2734, 2735, 5, 169, 0, 0, 2735, 2749, 3, 374, 187, 0, 2736, 2737, 5, 154, 0, 0, 2737, 2738, 5, 15, 0, 0, 2738, 2739, 3, 374, 187, 0, 2739, 2740, 5, 5, 0, 0, 2740, 2741, 3, 374, 187, 0, 2741, 2749, 1, 0, 0, 0, 2742, 2743, 5, 169, 0, 0, 2743, 2744, 5, 15, 0, 0, 2744, 2745, 3, 374, 187, 0, 2745, 2746, 5, 5, 0, 0, 2746, 2747, 3, 374, 187, 0, 2747, 2749, 1, 0, 0, 0, 2748, 2732, 1, 0, 0, 0, 2748, 2734, 1, 0, 0, 0, 2748, 2736, 1, 0, 0, 0, 2748, 2742, 1, 0, 0, 0, 2749, 373, 1, 0, 0, 0, 2750, 2751, 5, 199, 0, 0, 2751, 2760, 5, 149, 0, 0, 2752, 2753, 5, 199, 0, 0, 2753, 2760, 5, 77, 0, 0, 2754, 2755, 5, 39, 0, 0, 2755, 2760, 5, 168, 0, 0, 2756, 2757, 3, 330, 165, 0, 2757, 2758, 7, 29, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2750, 1, 0, 0, 0, 2759, 2752, 1, 0, 0, 0, 2759, 2754, 1, 0, 0, 0, 2759, 2756, 1, 0, 0, 0, 2760, 375, 1, 0, 0, 0, 2761, 2762, 3, 390, 195, 0, 2762, 2763, 5, 261, 0, 0, 2763, 2764, 3, 390, 195, 0, 2764, 2767, 1, 0, 0, 0, 2765, 2767, 3, 390, 195, 0, 2766, 2761, 1, 0, 0, 0, 2766, 2765, 1, 0, 0, 0, 2767, 377, 1, 0, 0, 0, 2768, 2773, 3, 376, 188, 0, 2769, 2770, 5, 263, 0, 0, 2770, 2772, 3, 376, 188, 0, 2771, 2769, 1, 0, 0, 0, 2772, 2775, 1, 0, 0, 0, 2773, 2771, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 379, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2776, 2790, 5, 2, 0, 0, 2777, 2790, 5, 4, 0, 0, 2778, 2790, 5, 58, 0, 0, 2779, 2790, 5, 37, 0, 0, 2780, 2790, 5, 99, 0, 0, 2781, 2790, 5, 162, 0, 0, 2782, 2787, 5, 174, 0, 0, 2783, 2784, 5, 265, 0, 0, 2784, 2785, 3, 390, 195, 0, 2785, 2786, 5, 266, 0, 0, 2786, 2788, 1, 0, 0, 0, 2787, 2783, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2790, 1, 0, 0, 0, 2789, 2776, 1, 0, 0, 0, 2789, 2777, 1, 0, 0, 0, 2789, 2778, 1, 0, 0, 0, 2789, 2779, 1, 0, 0, 0, 2789, 2780, 1, 0, 0, 0, 2789, 2781, 1, 0, 0, 0, 2789, 2782, 1, 0, 0, 0, 2790, 381, 1, 0, 0, 0, 2791, 2792, 7, 30, 0, 0, 2792, 383, 1, 0, 0, 0, 2793, 2798, 3, 390, 195, 0, 2794, 2795, 5, 261, 0, 0, 2795, 2797, 3, 390, 195, 0, 2796, 2794, 1, 0, 0, 0, 2797, 2800, 1, 0, 0, 0, 2798, 2796, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 385, 1, 0, 0, 0, 2800, 2798, 1, 0, 0, 0, 2801, 2807, 4, 193, 13, 0, 2802, 2803, 3, 390, 195, 0, 2803, 2804, 5, 261, 0, 0, 2804, 2805, 3, 192, 96, 0, 2805, 2808, 1, 0, 0, 0, 2806, 2808, 3, 192, 96, 0, 2807, 2802, 1, 0, 0, 0, 2807, 2806, 1, 0, 0, 0, 2808, 2818, 1, 0, 0, 0, 2809, 2814, 3, 390, 195, 0, 2810, 2811, 5, 261, 0, 0, 2811, 2813, 3, 390, 195, 0, 2812, 2810, 1, 0, 0, 0, 2813, 2816, 1, 0, 0, 0, 2814, 2812, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2818, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2817, 2801, 1, 0, 0, 0, 2817, 2809, 1, 0, 0, 0, 2818, 387, 1, 0, 0, 0, 2819, 2820, 5, 166, 0, 0, 2820, 2826, 3, 390, 195, 0, 2821, 2822, 5, 204, 0, 0, 2822, 2826, 3, 390, 195, 0, 2823, 2824, 5, 87, 0, 0, 2824, 2826, 3, 390, 195, 0, 2825, 2819, 1, 0, 0, 0, 2825, 2821, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2826, 389, 1, 0, 0, 0, 2827, 2833, 5, 280, 0, 0, 2828, 2833, 5, 274, 0, 0, 2829, 2833, 3, 396, 198, 0, 2830, 2833, 5, 283, 0, 0, 2831, 2833, 5, 281, 0, 0, 2832, 2827, 1, 0, 0, 0, 2832, 2828, 1, 0, 0, 0, 2832, 2829, 1, 0, 0, 0, 2832, 2830, 1, 0, 0, 0, 2832, 2831, 1, 0, 0, 0, 2833, 391, 1, 0, 0, 0, 2834, 2836, 5, 256, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 2847, 5, 278, 0, 0, 2838, 2840, 5, 256, 0, 0, 2839, 2838, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2847, 5, 279, 0, 0, 2842, 2844, 5, 256, 0, 0, 2843, 2842, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2847, 5, 277, 0, 0, 2846, 2835, 1, 0, 0, 0, 2846, 2839, 1, 0, 0, 0, 2846, 2843, 1, 0, 0, 0, 2847, 393, 1, 0, 0, 0, 2848, 2849, 7, 31, 0, 0, 2849, 395, 1, 0, 0, 0, 2850, 2851, 7, 32, 0, 0, 2851, 397, 1, 0, 0, 0, 362, 401, 408, 432, 445, 449, 453, 462, 467, 471, 477, 479, 484, 488, 492, 499, 504, 510, 514, 523, 530, 534, 539, 541, 546, 549, 556, 560, 565, 569, 572, 576, 584, 588, 592, 600, 604, 613, 616, 619, 625, 632, 643, 648, 653, 658, 663, 672, 675, 678, 682, 708, 734, 743, 753, 756, 770, 788, 790, 799, 810, 819, 826, 830, 837, 843, 846, 851, 858, 872, 885, 890, 895, 901, 937, 940, 946, 949, 955, 961, 973, 975, 986, 994, 999, 1003, 1008, 1015, 1019, 1023, 1029, 1033, 1037, 1046, 1049, 1052, 1060, 1074, 1081, 1094, 1100, 1105, 1108, 1111, 1116, 1120, 1129, 1134, 1140, 1144, 1148, 1153, 1156, 1164, 1167, 1170, 1182, 1185, 1188, 1193, 1197, 1213, 1218, 1225, 1228, 1234, 1237, 1244, 1247, 1251, 1256, 1259, 1266, 1269, 1293, 1307, 1311, 1315, 1335, 1337, 1339, 1348, 1350, 1359, 1361, 1370, 1372, 1377, 1386, 1395, 1404, 1415, 1421, 1426, 1429, 1442, 1452, 1456, 1461, 1472, 1477, 1510, 1518, 1523, 1530, 1537, 1541, 1546, 1549, 1554, 1559, 1564, 1568, 1577, 1580, 1584, 1591, 1600, 1604, 1608, 1615, 1618, 1628, 1635, 1640, 1645, 1650, 1656, 1659, 1668, 1671, 1674, 1680, 1685, 1695, 1698, 1701, 1705, 1715, 1718, 1724, 1730, 1733, 1736, 1740, 1750, 1761, 1766, 1769, 1773, 1780, 1790, 1802, 1808, 1810, 1819, 1822, 1829, 1839, 1845, 1853, 1864, 1874, 1885, 1887, 1893, 1898, 1908, 1911, 1917, 1919, 1927, 1933, 1936, 1938, 1950, 1957, 1961, 1965, 1969, 1972, 1981, 1984, 1987, 1992, 1995, 2002, 2008, 2013, 2016, 2023, 2034, 2037, 2041, 2045, 2054, 2058, 2061, 2064, 2075, 2091, 2095, 2099, 2103, 2107, 2111, 2115, 2119, 2129, 2134, 2143, 2148, 2161, 2163, 2169, 2173, 2175, 2183, 2192, 2195, 2210, 2216, 2224, 2231, 2235, 2243, 2245, 2256, 2264, 2273, 2279, 2284, 2290, 2296, 2301, 2306, 2312, 2323, 2325, 2331, 2338, 2341, 2350, 2353, 2357, 2360, 2386, 2392, 2396, 2408, 2418, 2421, 2434, 2437, 2456, 2460, 2468, 2472, 2497, 2500, 2509, 2515, 2521, 2527, 2538, 2547, 2569, 2572, 2575, 2585, 2587, 2594, 2596, 2618, 2647, 2654, 2662, 2667, 2669, 2675, 2682, 2688, 2705, 2713, 2722, 2725, 2728, 2748, 2759, 2766, 2773, 2787, 2789, 2798, 2807, 2814, 2817, 2825, 2832, 2835, 2839, 2843, 2846] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index 5794686b..d30a3d4e 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -402,106 +402,109 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly RULE_tableNamePath = 93; public static readonly RULE_viewNamePath = 94; public static readonly RULE_functionNamePath = 95; - public static readonly RULE_columnNamePath = 96; - public static readonly RULE_columnName = 97; - public static readonly RULE_tableOrViewPath = 98; - public static readonly RULE_createCommonItem = 99; - public static readonly RULE_assignmentList = 100; - public static readonly RULE_assignmentItem = 101; - public static readonly RULE_viewColumns = 102; - public static readonly RULE_viewColumnItem = 103; - public static readonly RULE_queryStatement = 104; - public static readonly RULE_with = 105; - public static readonly RULE_constraintSpecification = 106; - public static readonly RULE_foreignKeySpecification = 107; - public static readonly RULE_columnSpec = 108; - public static readonly RULE_columnDefinition = 109; - public static readonly RULE_kuduTableElement = 110; - public static readonly RULE_kuduColumnDefinition = 111; - public static readonly RULE_commentClause = 112; - public static readonly RULE_columnSpecWithKudu = 113; - public static readonly RULE_createColumnSpecWithKudu = 114; - public static readonly RULE_kuduAttributes = 115; - public static readonly RULE_kuduStorageAttr = 116; - public static readonly RULE_statsKey = 117; - public static readonly RULE_fileFormat = 118; - public static readonly RULE_kuduPartitionClause = 119; - public static readonly RULE_hashClause = 120; - public static readonly RULE_rangeClause = 121; - public static readonly RULE_kuduPartitionSpec = 122; - public static readonly RULE_cacheSpec = 123; - public static readonly RULE_rangeOperator = 124; - public static readonly RULE_partitionCol = 125; - public static readonly RULE_likeClause = 126; - public static readonly RULE_properties = 127; - public static readonly RULE_partitionedBy = 128; - public static readonly RULE_sortedBy = 129; - public static readonly RULE_rowFormat = 130; - public static readonly RULE_property = 131; - public static readonly RULE_queryNoWith = 132; - public static readonly RULE_queryTerm = 133; - public static readonly RULE_queryPrimary = 134; - public static readonly RULE_sortItem = 135; - public static readonly RULE_querySpecification = 136; - public static readonly RULE_selectList = 137; - public static readonly RULE_whereClause = 138; - public static readonly RULE_havingClause = 139; - public static readonly RULE_groupBy = 140; - public static readonly RULE_groupingElement = 141; - public static readonly RULE_groupingSet = 142; - public static readonly RULE_namedQuery = 143; - public static readonly RULE_setQuantifier = 144; - public static readonly RULE_selectItem = 145; - public static readonly RULE_columnAlias = 146; - public static readonly RULE_selectLiteralColumnName = 147; - public static readonly RULE_selectExpressionColumnName = 148; - public static readonly RULE_tableAllColumns = 149; - public static readonly RULE_relation = 150; - public static readonly RULE_joinType = 151; - public static readonly RULE_joinCriteria = 152; - public static readonly RULE_sampledRelation = 153; - public static readonly RULE_sampleType = 154; - public static readonly RULE_aliasedRelation = 155; - public static readonly RULE_columnAliases = 156; - public static readonly RULE_relationPrimary = 157; - public static readonly RULE_atomSubQueryTableSource = 158; - public static readonly RULE_subQueryRelation = 159; - public static readonly RULE_unnest = 160; - public static readonly RULE_parenthesizedRelation = 161; - public static readonly RULE_columnItem = 162; - public static readonly RULE_expression = 163; - public static readonly RULE_booleanExpression = 164; - public static readonly RULE_predicate = 165; - public static readonly RULE_valueExpression = 166; - public static readonly RULE_functionCallExpression = 167; - public static readonly RULE_primaryExpression = 168; - public static readonly RULE_stringLiteral = 169; - public static readonly RULE_comparisonOperator = 170; - public static readonly RULE_comparisonQuantifier = 171; - public static readonly RULE_booleanValue = 172; - public static readonly RULE_interval = 173; - public static readonly RULE_intervalField = 174; - public static readonly RULE_normalForm = 175; - public static readonly RULE_type = 176; - public static readonly RULE_dataType = 177; - public static readonly RULE_typeParameter = 178; - public static readonly RULE_baseType = 179; - public static readonly RULE_whenClause = 180; - public static readonly RULE_filter = 181; - public static readonly RULE_partitionByClause = 182; - public static readonly RULE_over = 183; - public static readonly RULE_windowFrame = 184; - public static readonly RULE_frameBound = 185; - public static readonly RULE_pathElement = 186; - public static readonly RULE_pathSpecification = 187; - public static readonly RULE_privilege = 188; - public static readonly RULE_objectType = 189; - public static readonly RULE_qualifiedName = 190; - public static readonly RULE_principal = 191; - public static readonly RULE_identifier = 192; - public static readonly RULE_number = 193; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 194; - public static readonly RULE_nonReserved = 195; + public static readonly RULE_emptyColumn = 96; + public static readonly RULE_columnNamePath = 97; + public static readonly RULE_columnName = 98; + public static readonly RULE_columnNameAllowEmpty = 99; + public static readonly RULE_tableOrViewPath = 100; + public static readonly RULE_createCommonItem = 101; + public static readonly RULE_assignmentList = 102; + public static readonly RULE_assignmentItem = 103; + public static readonly RULE_viewColumns = 104; + public static readonly RULE_viewColumnItem = 105; + public static readonly RULE_queryStatement = 106; + public static readonly RULE_with = 107; + public static readonly RULE_constraintSpecification = 108; + public static readonly RULE_foreignKeySpecification = 109; + public static readonly RULE_columnSpec = 110; + public static readonly RULE_columnDefinition = 111; + public static readonly RULE_kuduTableElement = 112; + public static readonly RULE_kuduColumnDefinition = 113; + public static readonly RULE_commentClause = 114; + public static readonly RULE_columnSpecWithKudu = 115; + public static readonly RULE_createColumnSpecWithKudu = 116; + public static readonly RULE_kuduAttributes = 117; + public static readonly RULE_kuduStorageAttr = 118; + public static readonly RULE_statsKey = 119; + public static readonly RULE_fileFormat = 120; + public static readonly RULE_kuduPartitionClause = 121; + public static readonly RULE_hashClause = 122; + public static readonly RULE_rangeClause = 123; + public static readonly RULE_kuduPartitionSpec = 124; + public static readonly RULE_cacheSpec = 125; + public static readonly RULE_rangeOperator = 126; + public static readonly RULE_partitionCol = 127; + public static readonly RULE_likeClause = 128; + public static readonly RULE_properties = 129; + public static readonly RULE_partitionedBy = 130; + public static readonly RULE_sortedBy = 131; + public static readonly RULE_rowFormat = 132; + public static readonly RULE_property = 133; + public static readonly RULE_queryNoWith = 134; + public static readonly RULE_queryTerm = 135; + public static readonly RULE_queryPrimary = 136; + public static readonly RULE_sortItem = 137; + public static readonly RULE_querySpecification = 138; + public static readonly RULE_selectList = 139; + public static readonly RULE_whereClause = 140; + public static readonly RULE_havingClause = 141; + public static readonly RULE_groupBy = 142; + public static readonly RULE_groupingElement = 143; + public static readonly RULE_groupingSet = 144; + public static readonly RULE_namedQuery = 145; + public static readonly RULE_setQuantifier = 146; + public static readonly RULE_selectItem = 147; + public static readonly RULE_columnAlias = 148; + public static readonly RULE_selectLiteralColumnName = 149; + public static readonly RULE_selectExpressionColumnName = 150; + public static readonly RULE_tableAllColumns = 151; + public static readonly RULE_relation = 152; + public static readonly RULE_joinType = 153; + public static readonly RULE_joinCriteria = 154; + public static readonly RULE_sampledRelation = 155; + public static readonly RULE_sampleType = 156; + public static readonly RULE_aliasedRelation = 157; + public static readonly RULE_columnAliases = 158; + public static readonly RULE_relationPrimary = 159; + public static readonly RULE_atomSubQueryTableSource = 160; + public static readonly RULE_subQueryRelation = 161; + public static readonly RULE_unnest = 162; + public static readonly RULE_parenthesizedRelation = 163; + public static readonly RULE_columnItem = 164; + public static readonly RULE_expression = 165; + public static readonly RULE_booleanExpression = 166; + public static readonly RULE_predicate = 167; + public static readonly RULE_valueExpression = 168; + public static readonly RULE_functionCallExpression = 169; + public static readonly RULE_primaryExpression = 170; + public static readonly RULE_stringLiteral = 171; + public static readonly RULE_comparisonOperator = 172; + public static readonly RULE_comparisonQuantifier = 173; + public static readonly RULE_booleanValue = 174; + public static readonly RULE_interval = 175; + public static readonly RULE_intervalField = 176; + public static readonly RULE_normalForm = 177; + public static readonly RULE_type = 178; + public static readonly RULE_dataType = 179; + public static readonly RULE_typeParameter = 180; + public static readonly RULE_baseType = 181; + public static readonly RULE_whenClause = 182; + public static readonly RULE_filter = 183; + public static readonly RULE_partitionByClause = 184; + public static readonly RULE_over = 185; + public static readonly RULE_windowFrame = 186; + public static readonly RULE_frameBound = 187; + public static readonly RULE_pathElement = 188; + public static readonly RULE_pathSpecification = 189; + public static readonly RULE_privilege = 190; + public static readonly RULE_objectType = 191; + public static readonly RULE_qualifiedName = 192; + public static readonly RULE_qualifiedNameAllowEmpty = 193; + public static readonly RULE_principal = 194; + public static readonly RULE_identifier = 195; + public static readonly RULE_number = 196; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 197; + public static readonly RULE_nonReserved = 198; public static readonly literalNames = [ null, "'ADD'", "'ALL'", "'ANALYTIC'", "'ALTER'", "'AND'", "'ANY'", @@ -637,11 +640,11 @@ export class ImpalaSqlParser extends SQLParserBase { "ifExists", "ifNotExists", "tableNameCreate", "databaseNameCreate", "viewNameCreate", "functionNameCreate", "columnNamePathCreate", "databaseNamePath", "tableNamePath", "viewNamePath", "functionNamePath", - "columnNamePath", "columnName", "tableOrViewPath", "createCommonItem", - "assignmentList", "assignmentItem", "viewColumns", "viewColumnItem", - "queryStatement", "with", "constraintSpecification", "foreignKeySpecification", - "columnSpec", "columnDefinition", "kuduTableElement", "kuduColumnDefinition", - "commentClause", "columnSpecWithKudu", "createColumnSpecWithKudu", + "emptyColumn", "columnNamePath", "columnName", "columnNameAllowEmpty", + "tableOrViewPath", "createCommonItem", "assignmentList", "assignmentItem", + "viewColumns", "viewColumnItem", "queryStatement", "with", "constraintSpecification", + "foreignKeySpecification", "columnSpec", "columnDefinition", "kuduTableElement", + "kuduColumnDefinition", "commentClause", "columnSpecWithKudu", "createColumnSpecWithKudu", "kuduAttributes", "kuduStorageAttr", "statsKey", "fileFormat", "kuduPartitionClause", "hashClause", "rangeClause", "kuduPartitionSpec", "cacheSpec", "rangeOperator", "partitionCol", "likeClause", "properties", "partitionedBy", "sortedBy", @@ -658,8 +661,9 @@ export class ImpalaSqlParser extends SQLParserBase { "intervalField", "normalForm", "type", "dataType", "typeParameter", "baseType", "whenClause", "filter", "partitionByClause", "over", "windowFrame", "frameBound", "pathElement", "pathSpecification", - "privilege", "objectType", "qualifiedName", "principal", "identifier", - "number", "reservedKeywordsUsedAsFuncName", "nonReserved", + "privilege", "objectType", "qualifiedName", "qualifiedNameAllowEmpty", + "principal", "identifier", "number", "reservedKeywordsUsedAsFuncName", + "nonReserved", ]; public get grammarFileName(): string { return "ImpalaSqlParser.g4"; } @@ -683,21 +687,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 395; + this.state = 401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4 || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 22085645) !== 0) || _la === 67 || _la === 86 || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 524545) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 134520835) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 1083521) !== 0) || _la === 264 || _la === 265) { { { - this.state = 392; + this.state = 398; this.singleStatement(); } } - this.state = 397; + this.state = 403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 398; + this.state = 404; this.match(ImpalaSqlParser.EOF); } } @@ -722,14 +726,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 400; + this.state = 406; this.sqlStatement(); - this.state = 402; + this.state = 408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 401; + this.state = 407; this.match(ImpalaSqlParser.SEMICOLON); } } @@ -754,160 +758,160 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, ImpalaSqlParser.RULE_sqlStatement); try { - this.state = 426; + this.state = 432; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 404; + this.state = 410; this.queryStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 405; + this.state = 411; this.useStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 406; + this.state = 412; this.createStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 407; + this.state = 413; this.alterStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 408; + this.state = 414; this.truncateTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 409; + this.state = 415; this.describeStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 410; + this.state = 416; this.computeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 411; + this.state = 417; this.dropStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 412; + this.state = 418; this.grantStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 413; + this.state = 419; this.revokeStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 414; + this.state = 420; this.insertStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 415; + this.state = 421; this.deleteStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 416; + this.state = 422; this.updateStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 417; + this.state = 423; this.upsertStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 418; + this.state = 424; this.showStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 419; + this.state = 425; this.addCommentStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 420; + this.state = 426; this.explainStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 421; + this.state = 427; this.setStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 422; + this.state = 428; this.shutdownStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 423; + this.state = 429; this.invalidateMetaStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 424; + this.state = 430; this.loadDataStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 425; + this.state = 431; this.refreshStatement(); } break; @@ -933,9 +937,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 428; + this.state = 434; this.match(ImpalaSqlParser.KW_USE); - this.state = 429; + this.state = 435; this.databaseNamePath(); } } @@ -957,62 +961,62 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CreateStatementContext(this.context, this.state); this.enterRule(localContext, 8, ImpalaSqlParser.RULE_createStatement); try { - this.state = 439; + this.state = 445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 431; + this.state = 437; this.createSchema(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 432; + this.state = 438; this.createRole(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 433; + this.state = 439; this.createAggregateFunction(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 434; + this.state = 440; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 435; + this.state = 441; this.createView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 436; + this.state = 442; this.createKuduTableAsSelect(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 437; + this.state = 443; this.createTableLike(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 438; + this.state = 444; this.createTableSelect(); } break; @@ -1040,97 +1044,97 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 441; + this.state = 447; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 443; + this.state = 449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 442; + this.state = 448; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 445; + this.state = 451; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 447; + this.state = 453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 446; + this.state = 452; this.ifNotExists(); } } - this.state = 449; + this.state = 455; this.tableNameCreate(); - this.state = 465; + this.state = 471; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 450; + this.state = 456; this.match(ImpalaSqlParser.LPAREN); - this.state = 451; + this.state = 457; this.columnDefinition(); - this.state = 456; + this.state = 462; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 452; + this.state = 458; this.match(ImpalaSqlParser.COMMA); - this.state = 453; + this.state = 459; this.columnDefinition(); } } } - this.state = 458; + this.state = 464; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } - this.state = 461; + this.state = 467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 459; + this.state = 465; this.match(ImpalaSqlParser.COMMA); - this.state = 460; + this.state = 466; this.constraintSpecification(); } } - this.state = 463; + this.state = 469; this.match(ImpalaSqlParser.RPAREN); } break; } - this.state = 473; + this.state = 479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 467; + this.state = 473; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 468; + this.state = 474; this.match(ImpalaSqlParser.KW_BY); - this.state = 471; + this.state = 477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 469; + this.state = 475; this.columnAliases(); } break; case 2: { - this.state = 470; + this.state = 476; this.partitionedBy(); } break; @@ -1138,16 +1142,16 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 475; + this.state = 481; this.createCommonItem(); - this.state = 478; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 476; + this.state = 482; this.match(ImpalaSqlParser.KW_AS); - this.state = 477; + this.state = 483; this.queryStatement(); } } @@ -1175,35 +1179,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 480; + this.state = 486; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 482; + this.state = 488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 481; + this.state = 487; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 484; + this.state = 490; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 486; + this.state = 492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 485; + this.state = 491; this.ifNotExists(); } } - this.state = 488; + this.state = 494; this.tableNameCreate(); - this.state = 489; + this.state = 495; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 493; + this.state = 499; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BERNOULLI: @@ -1245,36 +1249,36 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 490; + this.state = 496; this.tableNamePath(); } break; case ImpalaSqlParser.KW_PARQUET: { - this.state = 491; + this.state = 497; this.match(ImpalaSqlParser.KW_PARQUET); - this.state = 492; + this.state = 498; localContext._parquet = this.stringLiteral(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 498; + this.state = 504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 495; + this.state = 501; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 496; + this.state = 502; this.match(ImpalaSqlParser.KW_BY); - this.state = 497; + this.state = 503; this.partitionedBy(); } } - this.state = 500; + this.state = 506; this.createCommonItem(); } } @@ -1300,95 +1304,95 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 502; + this.state = 508; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 504; + this.state = 510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 503; + this.state = 509; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 506; + this.state = 512; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 508; + this.state = 514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 507; + this.state = 513; this.ifNotExists(); } } - this.state = 510; + this.state = 516; this.tableNameCreate(); - this.state = 528; + this.state = 534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 511; + this.state = 517; this.match(ImpalaSqlParser.LPAREN); - this.state = 512; + this.state = 518; this.kuduTableElement(); - this.state = 517; + this.state = 523; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 513; + this.state = 519; this.match(ImpalaSqlParser.COMMA); - this.state = 514; + this.state = 520; this.kuduTableElement(); } } } - this.state = 519; + this.state = 525; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } - this.state = 524; + this.state = 530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 520; + this.state = 526; this.match(ImpalaSqlParser.COMMA); - this.state = 521; + this.state = 527; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 522; + this.state = 528; this.match(ImpalaSqlParser.KW_KEY); - this.state = 523; + this.state = 529; this.columnAliases(); } } - this.state = 526; + this.state = 532; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 535; + this.state = 541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 530; + this.state = 536; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 531; + this.state = 537; this.match(ImpalaSqlParser.KW_KEY); - this.state = 533; + this.state = 539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 532; + this.state = 538; this.columnAliases(); } } @@ -1396,56 +1400,56 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 540; + this.state = 546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 537; + this.state = 543; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 538; + this.state = 544; this.match(ImpalaSqlParser.KW_BY); - this.state = 539; + this.state = 545; this.kuduPartitionClause(); } } - this.state = 543; + this.state = 549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 542; + this.state = 548; this.commentClause(); } } - this.state = 545; + this.state = 551; this.match(ImpalaSqlParser.KW_STORED); - this.state = 546; + this.state = 552; this.match(ImpalaSqlParser.KW_AS); - this.state = 547; + this.state = 553; this.match(ImpalaSqlParser.KW_KUDU); - this.state = 550; + this.state = 556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 548; + this.state = 554; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 549; + this.state = 555; localContext._tblProp = this.properties(); } } - this.state = 554; + this.state = 560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 552; + this.state = 558; this.match(ImpalaSqlParser.KW_AS); - this.state = 553; + this.state = 559; this.queryStatement(); } } @@ -1473,57 +1477,57 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 556; + this.state = 562; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 557; + this.state = 563; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 559; + this.state = 565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 558; + this.state = 564; this.ifNotExists(); } } - this.state = 561; + this.state = 567; this.viewNameCreate(); - this.state = 563; + this.state = 569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 562; + this.state = 568; this.viewColumns(); } } - this.state = 566; + this.state = 572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 565; + this.state = 571; this.commentClause(); } } - this.state = 570; + this.state = 576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 568; + this.state = 574; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 569; + this.state = 575; localContext._tblProp = this.properties(); } } - this.state = 572; + this.state = 578; this.match(ImpalaSqlParser.KW_AS); - this.state = 573; + this.state = 579; this.queryStatement(); } } @@ -1548,9 +1552,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 575; + this.state = 581; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 576; + this.state = 582; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1559,36 +1563,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 578; + this.state = 584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 577; + this.state = 583; this.ifNotExists(); } } - this.state = 580; + this.state = 586; this.databaseNameCreate(); - this.state = 582; + this.state = 588; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 581; + this.state = 587; this.commentClause(); } break; } - this.state = 586; + this.state = 592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 584; + this.state = 590; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 585; + this.state = 591; localContext._location = this.stringLiteral(); } } @@ -1615,11 +1619,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 588; + this.state = 594; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 589; + this.state = 595; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 590; + this.state = 596; localContext._name = this.identifier(); } } @@ -1644,168 +1648,168 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 592; + this.state = 598; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 594; + this.state = 600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 593; + this.state = 599; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 596; + this.state = 602; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 598; + this.state = 604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 597; + this.state = 603; this.ifNotExists(); } } - this.state = 600; + this.state = 606; this.functionNameCreate(); - this.state = 613; + this.state = 619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 601; + this.state = 607; this.match(ImpalaSqlParser.LPAREN); - this.state = 610; + this.state = 616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 602; + this.state = 608; this.type_(0); - this.state = 607; + this.state = 613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 603; + this.state = 609; this.match(ImpalaSqlParser.COMMA); - this.state = 604; + this.state = 610; this.type_(0); } } - this.state = 609; + this.state = 615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 612; + this.state = 618; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 615; + this.state = 621; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 616; + this.state = 622; localContext._returnType = this.type_(0); - this.state = 619; + this.state = 625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 617; + this.state = 623; this.match(ImpalaSqlParser.KW_INTERMEDIATE); - this.state = 618; + this.state = 624; this.type_(0); } } - this.state = 621; + this.state = 627; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 622; + this.state = 628; this.match(ImpalaSqlParser.STRING); - this.state = 626; + this.state = 632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 623; + this.state = 629; this.match(ImpalaSqlParser.KW_INIT_FN); - this.state = 624; + this.state = 630; this.match(ImpalaSqlParser.EQ); - this.state = 625; + this.state = 631; this.match(ImpalaSqlParser.STRING); } } - this.state = 628; + this.state = 634; this.match(ImpalaSqlParser.KW_UPDATE_FN); - this.state = 629; + this.state = 635; this.match(ImpalaSqlParser.EQ); - this.state = 630; + this.state = 636; this.match(ImpalaSqlParser.STRING); - this.state = 631; + this.state = 637; this.match(ImpalaSqlParser.KW_MERGE_FN); - this.state = 632; + this.state = 638; this.match(ImpalaSqlParser.EQ); - this.state = 633; + this.state = 639; this.match(ImpalaSqlParser.STRING); - this.state = 637; + this.state = 643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 634; + this.state = 640; this.match(ImpalaSqlParser.KW_PREPARE_FN); - this.state = 635; + this.state = 641; this.match(ImpalaSqlParser.EQ); - this.state = 636; + this.state = 642; this.match(ImpalaSqlParser.STRING); } } - this.state = 642; + this.state = 648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 639; + this.state = 645; this.match(ImpalaSqlParser.KW_CLOSEFN); - this.state = 640; + this.state = 646; this.match(ImpalaSqlParser.EQ); - this.state = 641; + this.state = 647; this.match(ImpalaSqlParser.STRING); } } - this.state = 647; + this.state = 653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 644; + this.state = 650; this.match(ImpalaSqlParser.KW_SERIALIZE_FN); - this.state = 645; + this.state = 651; this.match(ImpalaSqlParser.EQ); - this.state = 646; + this.state = 652; this.match(ImpalaSqlParser.STRING); } } - this.state = 652; + this.state = 658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 76) { { - this.state = 649; + this.state = 655; this.match(ImpalaSqlParser.KW_FINALIZE_FN); - this.state = 650; + this.state = 656; this.match(ImpalaSqlParser.EQ); - this.state = 651; + this.state = 657; this.match(ImpalaSqlParser.STRING); } } @@ -1833,81 +1837,81 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 654; + this.state = 660; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 655; + this.state = 661; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 657; + this.state = 663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 656; + this.state = 662; this.ifNotExists(); } } - this.state = 659; + this.state = 665; this.functionNameCreate(); - this.state = 672; + this.state = 678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 660; + this.state = 666; this.match(ImpalaSqlParser.LPAREN); - this.state = 669; + this.state = 675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 661; + this.state = 667; this.type_(0); - this.state = 666; + this.state = 672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 662; + this.state = 668; this.match(ImpalaSqlParser.COMMA); - this.state = 663; + this.state = 669; this.type_(0); } } - this.state = 668; + this.state = 674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 671; + this.state = 677; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 676; + this.state = 682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 674; + this.state = 680; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 675; + this.state = 681; localContext._returnType = this.type_(0); } } - this.state = 678; + this.state = 684; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 679; + this.state = 685; this.match(ImpalaSqlParser.STRING); - this.state = 680; + this.state = 686; this.match(ImpalaSqlParser.KW_SYMBOL); - this.state = 681; + this.state = 687; this.match(ImpalaSqlParser.EQ); - this.state = 682; + this.state = 688; localContext._symbol_ = this.stringLiteral(); } } @@ -1929,132 +1933,132 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AlterStatementContext(this.context, this.state); this.enterRule(localContext, 26, ImpalaSqlParser.RULE_alterStatement); try { - this.state = 702; + this.state = 708; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 684; + this.state = 690; this.alterDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 685; + this.state = 691; this.alterUnSetOrSetViewTblProperties(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 686; + this.state = 692; this.renameTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 687; + this.state = 693; this.alterViewOwner(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 688; + this.state = 694; this.alterView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 689; + this.state = 695; this.renameView(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 690; + this.state = 696; this.dropPartitionByRangeOrValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 691; + this.state = 697; this.alterFormat(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 692; + this.state = 698; this.recoverPartitions(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 693; + this.state = 699; this.addPartitionByRangeOrValue(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 694; + this.state = 700; this.alterTableNonKuduOrKuduOnly(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 695; + this.state = 701; this.addSingleColumn(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 696; + this.state = 702; this.replaceOrAddColumns(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 697; + this.state = 703; this.changeColumnDefine(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 698; + this.state = 704; this.alterStatsKey(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 699; + this.state = 705; this.alterPartitionCache(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 700; + this.state = 706; this.alterDropSingleColumn(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 701; + this.state = 707; this.alterTableOwner(); } break; @@ -2081,17 +2085,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 704; + this.state = 710; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 705; + this.state = 711; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 706; + this.state = 712; this.databaseNamePath(); - this.state = 707; + this.state = 713; this.match(ImpalaSqlParser.KW_SET); - this.state = 708; + this.state = 714; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 709; + this.state = 715; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2100,7 +2104,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 710; + this.state = 716; this.identifier(); } } @@ -2125,45 +2129,45 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 712; + this.state = 718; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 713; + this.state = 719; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 714; + this.state = 720; this.tableNamePath(); - this.state = 715; + this.state = 721; this.match(ImpalaSqlParser.KW_SET); - this.state = 716; + this.state = 722; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 717; + this.state = 723; this.match(ImpalaSqlParser.KW_STATS); - this.state = 718; + this.state = 724; this.columnNamePath(); - this.state = 719; + this.state = 725; this.match(ImpalaSqlParser.LPAREN); - this.state = 720; + this.state = 726; this.statsKey(); - this.state = 721; + this.state = 727; this.match(ImpalaSqlParser.EQ); - this.state = 722; - this.stringLiteral(); this.state = 728; + this.stringLiteral(); + this.state = 734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 723; + this.state = 729; this.match(ImpalaSqlParser.COMMA); - this.state = 724; + this.state = 730; this.statsKey(); - this.state = 725; + this.state = 731; this.match(ImpalaSqlParser.EQ); - this.state = 726; + this.state = 732; this.stringLiteral(); } } - this.state = 730; + this.state = 736; this.match(ImpalaSqlParser.RPAREN); } } @@ -2188,50 +2192,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 732; + this.state = 738; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 733; + this.state = 739; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 734; + this.state = 740; this.tableNamePath(); - this.state = 737; + this.state = 743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 735; + this.state = 741; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 736; + this.state = 742; this.expression(); } } - this.state = 739; + this.state = 745; this.match(ImpalaSqlParser.KW_SET); - this.state = 750; + this.state = 756; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { { - this.state = 740; + this.state = 746; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 741; + this.state = 747; this.match(ImpalaSqlParser.KW_IN); - this.state = 742; + this.state = 748; this.stringLiteral(); - this.state = 747; + this.state = 753; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 743; + this.state = 749; this.match(ImpalaSqlParser.KW_WITH); - this.state = 744; + this.state = 750; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 745; + this.state = 751; this.match(ImpalaSqlParser.EQ); - this.state = 746; + this.state = 752; this.number_(); } break; @@ -2241,7 +2245,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 749; + this.state = 755; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -2270,17 +2274,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 752; + this.state = 758; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 753; + this.state = 759; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 754; + this.state = 760; this.tableNamePath(); - this.state = 755; + this.state = 761; this.match(ImpalaSqlParser.KW_CHANGE); - this.state = 756; + this.state = 762; this.columnNamePath(); - this.state = 757; + this.state = 763; this.columnSpecWithKudu(); } } @@ -2304,25 +2308,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 759; + this.state = 765; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 760; + this.state = 766; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 761; + this.state = 767; this.tableNamePath(); - this.state = 762; + this.state = 768; this.match(ImpalaSqlParser.KW_DROP); - this.state = 764; + this.state = 770; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 763; + this.state = 769; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 766; + this.state = 772; this.columnNamePath(); } } @@ -2347,17 +2351,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 768; + this.state = 774; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 769; + this.state = 775; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 770; + this.state = 776; this.tableNamePath(); - this.state = 771; + this.state = 777; this.match(ImpalaSqlParser.KW_SET); - this.state = 772; + this.state = 778; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 773; + this.state = 779; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2366,7 +2370,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 774; + this.state = 780; this.identifier(); } } @@ -2392,31 +2396,31 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 776; + this.state = 782; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 777; + this.state = 783; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 778; - this.tableNamePath(); this.state = 784; + this.tableNamePath(); + this.state = 790; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_REPLACE: { - this.state = 779; + this.state = 785; this.match(ImpalaSqlParser.KW_REPLACE); } break; case ImpalaSqlParser.KW_ADD: { - this.state = 780; + this.state = 786; this.match(ImpalaSqlParser.KW_ADD); - this.state = 782; + this.state = 788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 781; + this.state = 787; this.ifNotExists(); } } @@ -2426,31 +2430,31 @@ export class ImpalaSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 786; + this.state = 792; this.match(ImpalaSqlParser.KW_COLUMNS); - this.state = 787; + this.state = 793; this.match(ImpalaSqlParser.LPAREN); - this.state = 788; + this.state = 794; this.columnSpecWithKudu(); - this.state = 793; + this.state = 799; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 789; + this.state = 795; this.match(ImpalaSqlParser.COMMA); - this.state = 790; + this.state = 796; this.columnSpecWithKudu(); } } } - this.state = 795; + this.state = 801; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); } - this.state = 796; + this.state = 802; this.match(ImpalaSqlParser.RPAREN); } } @@ -2475,27 +2479,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 798; + this.state = 804; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 799; + this.state = 805; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 800; + this.state = 806; this.tableNamePath(); - this.state = 801; + this.state = 807; this.match(ImpalaSqlParser.KW_ADD); - this.state = 802; + this.state = 808; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 804; + this.state = 810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 803; + this.state = 809; this.ifNotExists(); } } - this.state = 806; + this.state = 812; this.createColumnSpecWithKudu(); } } @@ -2519,34 +2523,34 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 808; + this.state = 814; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 809; + this.state = 815; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 810; + this.state = 816; this.tableNamePath(); - this.state = 811; + this.state = 817; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 813; + this.state = 819; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 812; + this.state = 818; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 815; + this.state = 821; this.columnNamePath(); - this.state = 824; + this.state = 830; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SET: { - this.state = 816; + this.state = 822; this.match(ImpalaSqlParser.KW_SET); - this.state = 820; + this.state = 826; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BLOCK_SIZE: @@ -2554,15 +2558,15 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 817; + this.state = 823; this.kuduStorageAttr(); } break; case ImpalaSqlParser.KW_COMMENT: { - this.state = 818; + this.state = 824; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 819; + this.state = 825; this.stringLiteral(); } break; @@ -2573,9 +2577,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_DROP: { - this.state = 822; + this.state = 828; this.match(ImpalaSqlParser.KW_DROP); - this.state = 823; + this.state = 829; this.match(ImpalaSqlParser.KW_DEFAULT); } break; @@ -2605,51 +2609,51 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 826; + this.state = 832; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 827; + this.state = 833; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 828; + this.state = 834; this.tableNamePath(); - this.state = 829; + this.state = 835; this.match(ImpalaSqlParser.KW_ADD); - this.state = 831; + this.state = 837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 830; + this.state = 836; this.ifNotExists(); } } - this.state = 845; + this.state = 851; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 833; + this.state = 839; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 834; + this.state = 840; this.expression(); - this.state = 837; + this.state = 843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 835; + this.state = 841; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 836; + this.state = 842; this.stringLiteral(); } } - this.state = 840; + this.state = 846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 197) { { - this.state = 839; + this.state = 845; this.cacheSpec(); } } @@ -2658,11 +2662,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 842; + this.state = 848; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 843; + this.state = 849; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 844; + this.state = 850; this.kuduPartitionSpec(); } break; @@ -2692,35 +2696,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 847; + this.state = 853; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 848; + this.state = 854; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 849; + this.state = 855; this.tableNamePath(); - this.state = 852; + this.state = 858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 850; + this.state = 856; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 851; + this.state = 857; this.expression(); } } - this.state = 854; + this.state = 860; this.match(ImpalaSqlParser.KW_SET); - this.state = 866; + this.state = 872; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_FILEFORMAT: { { - this.state = 855; + this.state = 861; this.match(ImpalaSqlParser.KW_FILEFORMAT); - this.state = 856; + this.state = 862; this.fileFormat(); } } @@ -2728,11 +2732,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_ROW: { { - this.state = 857; + this.state = 863; this.match(ImpalaSqlParser.KW_ROW); - this.state = 858; + this.state = 864; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 859; + this.state = 865; this.rowFormat(); } } @@ -2740,9 +2744,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LOCATION: { { - this.state = 860; + this.state = 866; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 861; + this.state = 867; this.stringLiteral(); } } @@ -2750,9 +2754,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_TBLPROPERTIES: { { - this.state = 862; + this.state = 868; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 863; + this.state = 869; localContext._tblProp = this.properties(); } } @@ -2760,9 +2764,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_SERDEPROPERTIES: { { - this.state = 864; + this.state = 870; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 865; + this.state = 871; localContext._tblProp = this.properties(); } } @@ -2792,15 +2796,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 868; + this.state = 874; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 869; + this.state = 875; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 870; + this.state = 876; this.tableNamePath(); - this.state = 871; + this.state = 877; this.match(ImpalaSqlParser.KW_RECOVER); - this.state = 872; + this.state = 878; this.match(ImpalaSqlParser.KW_PARTITIONS); } } @@ -2825,39 +2829,39 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 874; + this.state = 880; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 875; + this.state = 881; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 876; + this.state = 882; this.tableNamePath(); - this.state = 877; + this.state = 883; this.match(ImpalaSqlParser.KW_DROP); - this.state = 879; + this.state = 885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 878; + this.state = 884; this.ifExists(); } } - this.state = 889; + this.state = 895; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 881; + this.state = 887; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 882; + this.state = 888; this.expression(); - this.state = 884; + this.state = 890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 883; + this.state = 889; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -2866,11 +2870,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 886; + this.state = 892; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 887; + this.state = 893; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 888; + this.state = 894; this.kuduPartitionSpec(); } break; @@ -2900,25 +2904,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 891; + this.state = 897; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 892; + this.state = 898; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 893; + this.state = 899; this.viewNamePath(); - this.state = 895; + this.state = 901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 894; + this.state = 900; this.viewColumns(); } } - this.state = 897; + this.state = 903; this.match(ImpalaSqlParser.KW_AS); - this.state = 898; + this.state = 904; this.queryStatement(); } } @@ -2942,17 +2946,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 900; + this.state = 906; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 901; + this.state = 907; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 902; + this.state = 908; this.viewNamePath(); - this.state = 903; + this.state = 909; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 904; + this.state = 910; this.match(ImpalaSqlParser.KW_TO); - this.state = 905; + this.state = 911; this.viewNamePath(); } } @@ -2977,17 +2981,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 907; + this.state = 913; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 908; + this.state = 914; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 909; + this.state = 915; this.viewNamePath(); - this.state = 910; + this.state = 916; this.match(ImpalaSqlParser.KW_SET); - this.state = 911; + this.state = 917; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 912; + this.state = 918; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2996,7 +3000,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 913; + this.state = 919; this.qualifiedName(); } } @@ -3020,17 +3024,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 915; + this.state = 921; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 916; + this.state = 922; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 917; + this.state = 923; this.tableNamePath(); - this.state = 918; + this.state = 924; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 919; + this.state = 925; this.match(ImpalaSqlParser.KW_TO); - this.state = 920; + this.state = 926; this.tableNamePath(); } } @@ -3055,13 +3059,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 922; + this.state = 928; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 923; + this.state = 929; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 924; + this.state = 930; this.viewNamePath(); - this.state = 925; + this.state = 931; _la = this.tokenStream.LA(1); if(!(_la === 176 || _la === 202)) { this.errorHandler.recoverInline(this); @@ -3070,9 +3074,9 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 926; + this.state = 932; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 927; + this.state = 933; localContext._tblProp = this.properties(); } } @@ -3097,29 +3101,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 929; + this.state = 935; this.match(ImpalaSqlParser.KW_TRUNCATE); - this.state = 931; + this.state = 937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 930; + this.state = 936; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 934; + this.state = 940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 933; + this.state = 939; this.ifExists(); } } - this.state = 936; + this.state = 942; this.tableNamePath(); } } @@ -3144,24 +3148,24 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 938; + this.state = 944; this.match(ImpalaSqlParser.KW_DESCRIBE); - this.state = 940; + this.state = 946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 939; + this.state = 945; this.match(ImpalaSqlParser.KW_DATABASE); } } - this.state = 943; + this.state = 949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 80) { { - this.state = 942; + this.state = 948; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -3173,7 +3177,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 945; + this.state = 951; this.qualifiedName(); } } @@ -3195,20 +3199,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ComputeStatementContext(this.context, this.state); this.enterRule(localContext, 68, ImpalaSqlParser.RULE_computeStatement); try { - this.state = 949; + this.state = 955; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 947; + this.state = 953; this.computeStats(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 948; + this.state = 954; this.computeIncrementalStats(); } break; @@ -3235,49 +3239,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 951; + this.state = 957; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 952; + this.state = 958; this.match(ImpalaSqlParser.KW_STATS); - this.state = 953; + this.state = 959; this.tableNamePath(); - this.state = 955; + this.state = 961; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 954; + this.state = 960; this.columnAliases(); } break; } - this.state = 969; + this.state = 975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 957; + this.state = 963; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 958; + this.state = 964; this.match(ImpalaSqlParser.KW_SYSTEM); - this.state = 959; + this.state = 965; this.match(ImpalaSqlParser.LPAREN); - this.state = 960; + this.state = 966; this.number_(); - this.state = 961; - this.match(ImpalaSqlParser.RPAREN); this.state = 967; + this.match(ImpalaSqlParser.RPAREN); + this.state = 973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 157) { { - this.state = 962; + this.state = 968; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 963; + this.state = 969; this.match(ImpalaSqlParser.LPAREN); - this.state = 964; + this.state = 970; this.number_(); - this.state = 965; + this.state = 971; this.match(ImpalaSqlParser.RPAREN); } } @@ -3308,26 +3312,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 971; + this.state = 977; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 972; + this.state = 978; this.match(ImpalaSqlParser.KW_INCREMENTAL); - this.state = 973; + this.state = 979; this.match(ImpalaSqlParser.KW_STATS); - this.state = 974; - this.tableNamePath(); this.state = 980; + this.tableNamePath(); + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 975; + this.state = 981; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 976; + this.state = 982; this.match(ImpalaSqlParser.LPAREN); - this.state = 977; + this.state = 983; this.expression(); - this.state = 978; + this.state = 984; this.match(ImpalaSqlParser.RPAREN); } } @@ -3352,48 +3356,48 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DropStatementContext(this.context, this.state); this.enterRule(localContext, 74, ImpalaSqlParser.RULE_dropStatement); try { - this.state = 988; + this.state = 994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 982; + this.state = 988; this.dropRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 983; + this.state = 989; this.dropFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 984; + this.state = 990; this.dropIncrementalStats(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 985; + this.state = 991; this.dropView(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 986; + this.state = 992; this.dropTable(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 987; + this.state = 993; this.dropSchema(); } break; @@ -3420,9 +3424,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 990; + this.state = 996; this.match(ImpalaSqlParser.KW_DROP); - this.state = 991; + this.state = 997; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -3431,24 +3435,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 993; + this.state = 999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 992; + this.state = 998; this.ifExists(); } } - this.state = 995; + this.state = 1001; this.databaseNamePath(); - this.state = 997; + this.state = 1003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27 || _la === 159) { { - this.state = 996; + this.state = 1002; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 159)) { this.errorHandler.recoverInline(this); @@ -3483,21 +3487,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 999; + this.state = 1005; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1000; + this.state = 1006; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 1002; + this.state = 1008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1001; + this.state = 1007; this.ifExists(); } } - this.state = 1004; + this.state = 1010; this.viewNamePath(); } } @@ -3522,28 +3526,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1006; + this.state = 1012; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1007; + this.state = 1013; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1009; + this.state = 1015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1008; + this.state = 1014; this.ifExists(); } } - this.state = 1011; + this.state = 1017; this.tableNamePath(); - this.state = 1013; + this.state = 1019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 1012; + this.state = 1018; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -3571,30 +3575,30 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1015; + this.state = 1021; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1017; + this.state = 1023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 96) { { - this.state = 1016; + this.state = 1022; this.match(ImpalaSqlParser.KW_INCREMENTAL); } } - this.state = 1019; + this.state = 1025; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1020; + this.state = 1026; this.tableNamePath(); - this.state = 1023; + this.state = 1029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1021; + this.state = 1027; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1022; + this.state = 1028; this.expression(); } } @@ -3622,66 +3626,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1025; + this.state = 1031; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1027; + this.state = 1033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 1026; + this.state = 1032; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 1029; + this.state = 1035; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 1031; + this.state = 1037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1030; + this.state = 1036; this.ifExists(); } } - this.state = 1033; + this.state = 1039; this.functionNamePath(); - this.state = 1046; + this.state = 1052; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1034; + this.state = 1040; this.match(ImpalaSqlParser.LPAREN); - this.state = 1043; + this.state = 1049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 1035; + this.state = 1041; this.type_(0); - this.state = 1040; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1036; + this.state = 1042; this.match(ImpalaSqlParser.COMMA); - this.state = 1037; + this.state = 1043; this.type_(0); } } - this.state = 1042; + this.state = 1048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1045; + this.state = 1051; this.match(ImpalaSqlParser.RPAREN); } break; @@ -3708,11 +3712,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1048; + this.state = 1054; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1049; + this.state = 1055; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1050; + this.state = 1056; localContext._name = this.identifier(); } } @@ -3734,20 +3738,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new GrantStatementContext(this.context, this.state); this.enterRule(localContext, 88, ImpalaSqlParser.RULE_grantStatement); try { - this.state = 1054; + this.state = 1060; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1052; + this.state = 1058; this.grantRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1053; + this.state = 1059; this.grant(); } break; @@ -3773,17 +3777,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1056; + this.state = 1062; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1057; + this.state = 1063; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1058; + this.state = 1064; this.identifier(); - this.state = 1059; + this.state = 1065; this.match(ImpalaSqlParser.KW_TO); - this.state = 1060; + this.state = 1066; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1061; + this.state = 1067; this.identifier(); } } @@ -3808,27 +3812,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1063; + this.state = 1069; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1064; + this.state = 1070; this.privilege(); - this.state = 1065; + this.state = 1071; this.match(ImpalaSqlParser.KW_ON); - this.state = 1066; + this.state = 1072; this.objectType(); - this.state = 1068; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1067; + this.state = 1073; this.qualifiedName(); } } - this.state = 1070; + this.state = 1076; this.match(ImpalaSqlParser.KW_TO); - this.state = 1071; + this.state = 1077; localContext._grantee = this.principal(); } } @@ -3850,20 +3854,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RevokeStatementContext(this.context, this.state); this.enterRule(localContext, 94, ImpalaSqlParser.RULE_revokeStatement); try { - this.state = 1075; + this.state = 1081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1073; + this.state = 1079; this.revokeRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1074; + this.state = 1080; this.revoke(); } break; @@ -3889,17 +3893,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1077; + this.state = 1083; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1078; + this.state = 1084; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1079; + this.state = 1085; this.identifier(); - this.state = 1080; + this.state = 1086; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1081; + this.state = 1087; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1082; + this.state = 1088; this.identifier(); } } @@ -3924,62 +3928,62 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1084; + this.state = 1090; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1088; + this.state = 1094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86) { { - this.state = 1085; + this.state = 1091; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1086; + this.state = 1092; this.match(ImpalaSqlParser.KW_OPTION); - this.state = 1087; + this.state = 1093; this.match(ImpalaSqlParser.KW_FOR); } } - this.state = 1090; + this.state = 1096; this.privilege(); - this.state = 1091; + this.state = 1097; this.match(ImpalaSqlParser.KW_ON); - this.state = 1092; + this.state = 1098; this.objectType(); - this.state = 1094; + this.state = 1100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1093; + this.state = 1099; this.qualifiedName(); } } - this.state = 1096; - this.match(ImpalaSqlParser.KW_FROM); this.state = 1102; + this.match(ImpalaSqlParser.KW_FROM); + this.state = 1108; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1097; + this.state = 1103; localContext._grantee = this.principal(); } break; case 2: { - this.state = 1099; + this.state = 1105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 1098; + this.state = 1104; this.match(ImpalaSqlParser.KW_ROLE); } } - this.state = 1101; + this.state = 1107; this.identifier(); } break; @@ -4007,19 +4011,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1105; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1104; + this.state = 1110; this.with_(); } } - this.state = 1107; + this.state = 1113; this.match(ImpalaSqlParser.KW_INSERT); - this.state = 1108; + this.state = 1114; _la = this.tokenStream.LA(1); if(!(_la === 103 || _la === 144)) { this.errorHandler.recoverInline(this); @@ -4028,61 +4032,61 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1110; + this.state = 1116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1109; + this.state = 1115; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1112; + this.state = 1118; this.tableNamePath(); - this.state = 1114; + this.state = 1120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1113; + this.state = 1119; this.columnAliases(); } break; } - this.state = 1128; + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1116; + this.state = 1122; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1117; + this.state = 1123; this.match(ImpalaSqlParser.LPAREN); - this.state = 1118; + this.state = 1124; this.expression(); - this.state = 1123; + this.state = 1129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1119; + this.state = 1125; this.match(ImpalaSqlParser.COMMA); - this.state = 1120; + this.state = 1126; this.expression(); } } - this.state = 1125; + this.state = 1131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1126; + this.state = 1132; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 1130; + this.state = 1136; this.queryStatement(); } } @@ -4104,20 +4108,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 102, ImpalaSqlParser.RULE_deleteStatement); try { - this.state = 1134; + this.state = 1140; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1132; + this.state = 1138; this.delete_(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1133; + this.state = 1139; this.deleteTableRef(); } break; @@ -4144,26 +4148,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1136; + this.state = 1142; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1138; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1137; + this.state = 1143; this.match(ImpalaSqlParser.KW_FROM); } } - this.state = 1140; + this.state = 1146; this.tableNamePath(); - this.state = 1142; + this.state = 1148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1141; + this.state = 1147; this.whereClause(); } } @@ -4191,64 +4195,64 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1144; + this.state = 1150; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1145; + this.state = 1151; this.tableNamePath(); - this.state = 1150; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1147; + this.state = 1153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 1146; + this.state = 1152; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 1149; + this.state = 1155; this.identifier(); } } - this.state = 1152; + this.state = 1158; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1161; + this.state = 1167; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1153; + this.state = 1159; this.relation(0); - this.state = 1158; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1154; + this.state = 1160; this.match(ImpalaSqlParser.COMMA); - this.state = 1155; + this.state = 1161; this.relation(0); } } - this.state = 1160; + this.state = 1166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1164; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1163; + this.state = 1169; this.whereClause(); } } @@ -4276,48 +4280,48 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1166; + this.state = 1172; this.match(ImpalaSqlParser.KW_UPDATE); - this.state = 1167; + this.state = 1173; this.tableNamePath(); - this.state = 1168; + this.state = 1174; this.match(ImpalaSqlParser.KW_SET); - this.state = 1169; + this.state = 1175; this.assignmentList(); - this.state = 1179; + this.state = 1185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1170; + this.state = 1176; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1171; + this.state = 1177; this.relation(0); - this.state = 1176; + this.state = 1182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1172; + this.state = 1178; this.match(ImpalaSqlParser.COMMA); - this.state = 1173; + this.state = 1179; this.relation(0); } } - this.state = 1178; + this.state = 1184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1182; + this.state = 1188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1181; + this.state = 1187; this.whereClause(); } } @@ -4345,33 +4349,33 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1184; + this.state = 1190; this.match(ImpalaSqlParser.KW_UPSERT); - this.state = 1185; + this.state = 1191; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1187; + this.state = 1193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1186; + this.state = 1192; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1189; + this.state = 1195; this.tableNamePath(); - this.state = 1191; + this.state = 1197; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1190; + this.state = 1196; this.columnAliases(); } break; } - this.state = 1193; + this.state = 1199; this.queryStatement(); } } @@ -4393,90 +4397,90 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ShowStatementContext(this.context, this.state); this.enterRule(localContext, 112, ImpalaSqlParser.RULE_showStatement); try { - this.state = 1207; + this.state = 1213; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1195; + this.state = 1201; this.showRoles(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1196; + this.state = 1202; this.showRoleGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1197; + this.state = 1203; this.showGrants(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1198; + this.state = 1204; this.showFiles(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1199; + this.state = 1205; this.showPartitions(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1200; + this.state = 1206; this.showColumnStats(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1201; + this.state = 1207; this.showTableStats(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1202; + this.state = 1208; this.showCreateView(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1203; + this.state = 1209; this.showCreateTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1204; + this.state = 1210; this.showFunctions(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1205; + this.state = 1211; this.showTables(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1206; + this.state = 1212; this.showSchemas(); } break; @@ -4503,9 +4507,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1209; + this.state = 1215; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1210; + this.state = 1216; _la = this.tokenStream.LA(1); if(!(_la === 47 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -4514,36 +4518,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1222; + this.state = 1228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1212; + this.state = 1218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1211; + this.state = 1217; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1214; + this.state = 1220; localContext._pattern = this.stringLiteral(); - this.state = 1219; + this.state = 1225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1215; + this.state = 1221; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1216; + this.state = 1222; this.stringLiteral(); } } - this.state = 1221; + this.state = 1227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4573,52 +4577,52 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1224; + this.state = 1230; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1225; + this.state = 1231; this.match(ImpalaSqlParser.KW_TABLES); - this.state = 1228; + this.state = 1234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1226; + this.state = 1232; this.match(ImpalaSqlParser.KW_IN); - this.state = 1227; + this.state = 1233; this.tableNamePath(); } } - this.state = 1241; + this.state = 1247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1231; + this.state = 1237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1230; + this.state = 1236; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1233; + this.state = 1239; localContext._pattern = this.stringLiteral(); - this.state = 1238; + this.state = 1244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1234; + this.state = 1240; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1235; + this.state = 1241; this.stringLiteral(); } } - this.state = 1240; + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4648,14 +4652,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1243; + this.state = 1249; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1245; + this.state = 1251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3 || _la === 12) { { - this.state = 1244; + this.state = 1250; _la = this.tokenStream.LA(1); if(!(_la === 3 || _la === 12)) { this.errorHandler.recoverInline(this); @@ -4667,50 +4671,50 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1247; + this.state = 1253; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1250; + this.state = 1256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1248; + this.state = 1254; this.match(ImpalaSqlParser.KW_IN); - this.state = 1249; + this.state = 1255; this.databaseNamePath(); } } - this.state = 1263; + this.state = 1269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1253; + this.state = 1259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1252; + this.state = 1258; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1255; + this.state = 1261; localContext._pattern = this.stringLiteral(); - this.state = 1260; + this.state = 1266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1256; + this.state = 1262; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1257; + this.state = 1263; this.stringLiteral(); } } - this.state = 1262; + this.state = 1268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4739,13 +4743,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1265; + this.state = 1271; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1266; + this.state = 1272; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1267; + this.state = 1273; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1268; + this.state = 1274; this.tableNamePath(); } } @@ -4769,13 +4773,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1270; + this.state = 1276; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1271; + this.state = 1277; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1272; + this.state = 1278; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 1273; + this.state = 1279; this.viewNamePath(); } } @@ -4799,13 +4803,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1275; + this.state = 1281; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1276; + this.state = 1282; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1277; + this.state = 1283; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1278; + this.state = 1284; this.tableNamePath(); } } @@ -4829,13 +4833,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1280; + this.state = 1286; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1281; + this.state = 1287; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1282; + this.state = 1288; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1283; + this.state = 1289; this.tableNamePath(); } } @@ -4860,21 +4864,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1285; + this.state = 1291; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1287; + this.state = 1293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1286; + this.state = 1292; this.match(ImpalaSqlParser.KW_RANGE); } } - this.state = 1289; + this.state = 1295; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1290; + this.state = 1296; this.tableNamePath(); } } @@ -4899,38 +4903,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1292; + this.state = 1298; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1293; + this.state = 1299; this.match(ImpalaSqlParser.KW_FILES); - this.state = 1294; + this.state = 1300; this.match(ImpalaSqlParser.KW_IN); - this.state = 1295; + this.state = 1301; this.tableNamePath(); - this.state = 1305; + this.state = 1311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1296; + this.state = 1302; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1297; + this.state = 1303; this.match(ImpalaSqlParser.LPAREN); - this.state = 1298; + this.state = 1304; this.expression(); - this.state = 1301; + this.state = 1307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1299; + this.state = 1305; this.match(ImpalaSqlParser.COMMA); - this.state = 1300; + this.state = 1306; this.expression(); } } - this.state = 1303; + this.state = 1309; this.match(ImpalaSqlParser.RPAREN); } } @@ -4958,19 +4962,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1307; + this.state = 1313; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1309; + this.state = 1315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 1308; + this.state = 1314; this.match(ImpalaSqlParser.KW_CURRENT); } } - this.state = 1311; + this.state = 1317; this.match(ImpalaSqlParser.KW_ROLES); } } @@ -4994,15 +4998,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1313; + this.state = 1319; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1314; + this.state = 1320; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1315; + this.state = 1321; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1316; + this.state = 1322; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1317; + this.state = 1323; this.identifier(); } } @@ -5025,38 +5029,38 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 136, ImpalaSqlParser.RULE_showGrants); let _la: number; try { - this.state = 1333; + this.state = 1339; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1319; + this.state = 1325; this.showDatabaseGrant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1320; + this.state = 1326; this.showTableGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1321; + this.state = 1327; this.showColumnGrant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1322; + this.state = 1328; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1323; + this.state = 1329; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1324; + this.state = 1330; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5065,16 +5069,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1325; - this.identifier(); this.state = 1331; + this.identifier(); + this.state = 1337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1326; + this.state = 1332; this.match(ImpalaSqlParser.KW_ON); - this.state = 1327; + this.state = 1333; _la = this.tokenStream.LA(1); if(!(_la === 178 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -5083,12 +5087,12 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1329; + this.state = 1335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1328; + this.state = 1334; this.qualifiedName(); } } @@ -5121,11 +5125,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1335; + this.state = 1341; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1336; + this.state = 1342; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1337; + this.state = 1343; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5134,23 +5138,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1338; - this.identifier(); this.state = 1344; + this.identifier(); + this.state = 1350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1339; + this.state = 1345; this.match(ImpalaSqlParser.KW_ON); - this.state = 1340; + this.state = 1346; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1342; + this.state = 1348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1341; + this.state = 1347; this.databaseNamePath(); } } @@ -5181,11 +5185,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1346; + this.state = 1352; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1347; + this.state = 1353; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1348; + this.state = 1354; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5194,23 +5198,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1349; - this.identifier(); this.state = 1355; + this.identifier(); + this.state = 1361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1350; + this.state = 1356; this.match(ImpalaSqlParser.KW_ON); - this.state = 1351; + this.state = 1357; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1353; + this.state = 1359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1352; + this.state = 1358; this.tableNamePath(); } } @@ -5241,11 +5245,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1357; + this.state = 1363; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1358; + this.state = 1364; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1359; + this.state = 1365; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5254,23 +5258,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1360; - this.identifier(); this.state = 1366; + this.identifier(); + this.state = 1372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1361; + this.state = 1367; this.match(ImpalaSqlParser.KW_ON); - this.state = 1362; + this.state = 1368; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1364; + this.state = 1370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1363; + this.state = 1369; this.columnNamePath(); } break; @@ -5298,27 +5302,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AddCommentStatementContext(this.context, this.state); this.enterRule(localContext, 144, ImpalaSqlParser.RULE_addCommentStatement); try { - this.state = 1371; + this.state = 1377; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1368; + this.state = 1374; this.addDatabaseComments(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1369; + this.state = 1375; this.addTableComments(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1370; + this.state = 1376; this.addColumnComments(); } break; @@ -5344,29 +5348,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1373; + this.state = 1379; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1374; + this.state = 1380; this.match(ImpalaSqlParser.KW_ON); - this.state = 1375; + this.state = 1381; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1376; + this.state = 1382; this.databaseNamePath(); - this.state = 1377; + this.state = 1383; this.match(ImpalaSqlParser.KW_IS); - this.state = 1380; + this.state = 1386; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1378; + this.state = 1384; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1379; + this.state = 1385; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5395,29 +5399,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1382; + this.state = 1388; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1383; + this.state = 1389; this.match(ImpalaSqlParser.KW_ON); - this.state = 1384; + this.state = 1390; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1385; + this.state = 1391; this.tableNamePath(); - this.state = 1386; + this.state = 1392; this.match(ImpalaSqlParser.KW_IS); - this.state = 1389; + this.state = 1395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1387; + this.state = 1393; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1388; + this.state = 1394; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5446,29 +5450,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1391; + this.state = 1397; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1392; + this.state = 1398; this.match(ImpalaSqlParser.KW_ON); - this.state = 1393; + this.state = 1399; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1394; + this.state = 1400; this.columnNamePath(); - this.state = 1395; + this.state = 1401; this.match(ImpalaSqlParser.KW_IS); - this.state = 1398; + this.state = 1404; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1396; + this.state = 1402; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1397; + this.state = 1403; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5497,9 +5501,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1400; + this.state = 1406; this.match(ImpalaSqlParser.KW_EXPLAIN); - this.state = 1401; + this.state = 1407; this.sqlStatement(); } } @@ -5523,14 +5527,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1403; - this.match(ImpalaSqlParser.KW_SET); this.state = 1409; + this.match(ImpalaSqlParser.KW_SET); + this.state = 1415; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: { - this.state = 1404; + this.state = 1410; this.match(ImpalaSqlParser.KW_ALL); } break; @@ -5573,11 +5577,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1405; + this.state = 1411; this.identifier(); - this.state = 1406; + this.state = 1412; this.match(ImpalaSqlParser.EQ); - this.state = 1407; + this.state = 1413; this.expression(); } break; @@ -5636,23 +5640,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1411; + this.state = 1417; this.match(ImpalaSqlParser.COLON); - this.state = 1412; + this.state = 1418; this.match(ImpalaSqlParser.KW_SHUTDOWN); - this.state = 1413; + this.state = 1419; this.match(ImpalaSqlParser.LPAREN); - this.state = 1423; + this.state = 1429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1415; + this.state = 1421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274 || _la === 275) { { - this.state = 1414; + this.state = 1420; this.stringLiteral(); } } @@ -5661,16 +5665,16 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 2: { - this.state = 1417; + this.state = 1423; this.stringLiteral(); - this.state = 1420; + this.state = 1426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1418; + this.state = 1424; this.match(ImpalaSqlParser.COMMA); - this.state = 1419; + this.state = 1425; this.expression(); } } @@ -5679,12 +5683,12 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 3: { - this.state = 1422; + this.state = 1428; this.expression(); } break; } - this.state = 1425; + this.state = 1431; this.match(ImpalaSqlParser.RPAREN); } } @@ -5708,11 +5712,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1427; + this.state = 1433; this.match(ImpalaSqlParser.KW_INVALIDATE); - this.state = 1428; + this.state = 1434; this.match(ImpalaSqlParser.KW_METADATA); - this.state = 1429; + this.state = 1435; this.tableNamePath(); } } @@ -5737,54 +5741,54 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1431; + this.state = 1437; this.match(ImpalaSqlParser.KW_LOAD); - this.state = 1432; + this.state = 1438; this.match(ImpalaSqlParser.KW_DATA); - this.state = 1433; + this.state = 1439; this.match(ImpalaSqlParser.KW_INPATH); - this.state = 1434; + this.state = 1440; this.match(ImpalaSqlParser.STRING); - this.state = 1436; + this.state = 1442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 1435; + this.state = 1441; this.match(ImpalaSqlParser.KW_OVERWRITE); } } - this.state = 1438; + this.state = 1444; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1439; + this.state = 1445; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1440; + this.state = 1446; this.tableNamePath(); - this.state = 1450; + this.state = 1456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1441; + this.state = 1447; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1442; + this.state = 1448; this.match(ImpalaSqlParser.LPAREN); - this.state = 1443; + this.state = 1449; this.expression(); - this.state = 1446; + this.state = 1452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1444; + this.state = 1450; this.match(ImpalaSqlParser.COMMA); - this.state = 1445; + this.state = 1451; this.expression(); } } - this.state = 1448; + this.state = 1454; this.match(ImpalaSqlParser.RPAREN); } } @@ -5809,27 +5813,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RefreshStatementContext(this.context, this.state); this.enterRule(localContext, 162, ImpalaSqlParser.RULE_refreshStatement); try { - this.state = 1455; + this.state = 1461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1452; + this.state = 1458; this.refreshMeta(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1453; + this.state = 1459; this.refreshAuth(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1454; + this.state = 1460; this.refreshFunction(); } break; @@ -5857,40 +5861,40 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1463; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1458; + this.state = 1464; this.tableNamePath(); - this.state = 1471; + this.state = 1477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1459; + this.state = 1465; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1460; + this.state = 1466; this.match(ImpalaSqlParser.LPAREN); - this.state = 1461; + this.state = 1467; this.expression(); - this.state = 1466; + this.state = 1472; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1462; + this.state = 1468; this.match(ImpalaSqlParser.COMMA); - this.state = 1463; + this.state = 1469; this.expression(); } } } - this.state = 1468; + this.state = 1474; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } - this.state = 1469; + this.state = 1475; this.match(ImpalaSqlParser.RPAREN); } } @@ -5917,9 +5921,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1473; + this.state = 1479; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1474; + this.state = 1480; this.match(ImpalaSqlParser.KW_AUTHORIZATION); } } @@ -5943,11 +5947,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1476; + this.state = 1482; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1477; + this.state = 1483; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1478; + this.state = 1484; this.functionNamePath(); } } @@ -5971,9 +5975,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1480; + this.state = 1486; this.match(ImpalaSqlParser.KW_IF); - this.state = 1481; + this.state = 1487; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -5997,11 +6001,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1483; + this.state = 1489; this.match(ImpalaSqlParser.KW_IF); - this.state = 1484; + this.state = 1490; this.match(ImpalaSqlParser.KW_NOT); - this.state = 1485; + this.state = 1491; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -6025,7 +6029,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1487; + this.state = 1493; this.qualifiedName(); } } @@ -6049,7 +6053,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1489; + this.state = 1495; this.qualifiedName(); } } @@ -6073,7 +6077,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1491; + this.state = 1497; this.qualifiedName(); } } @@ -6097,7 +6101,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1493; + this.state = 1499; this.qualifiedName(); } } @@ -6121,7 +6125,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1495; + this.state = 1501; this.qualifiedName(); } } @@ -6145,7 +6149,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1497; + this.state = 1503; this.qualifiedName(); } } @@ -6170,23 +6174,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1499; + this.state = 1505; this.identifier(); - this.state = 1504; + this.state = 1510; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1500; + this.state = 1506; this.match(ImpalaSqlParser.DOT); - this.state = 1501; + this.state = 1507; this.identifier(); } } } - this.state = 1506; + this.state = 1512; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); } @@ -6213,23 +6217,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1507; + this.state = 1513; this.identifier(); - this.state = 1512; + this.state = 1518; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1508; + this.state = 1514; this.match(ImpalaSqlParser.DOT); - this.state = 1509; + this.state = 1515; this.identifier(); } } } - this.state = 1514; + this.state = 1520; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -6253,20 +6257,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new FunctionNamePathContext(this.context, this.state); this.enterRule(localContext, 190, ImpalaSqlParser.RULE_functionNamePath); try { - this.state = 1517; + this.state = 1523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1521; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1516; + this.state = 1522; this.qualifiedName(); } break; @@ -6286,27 +6290,117 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } - public columnNamePath(): ColumnNamePathContext { - let localContext = new ColumnNamePathContext(this.context, this.state); - this.enterRule(localContext, 192, ImpalaSqlParser.RULE_columnNamePath); + public emptyColumn(): EmptyColumnContext { + let localContext = new EmptyColumnContext(this.context, this.state); + this.enterRule(localContext, 192, ImpalaSqlParser.RULE_emptyColumn); + try { + this.enterOuterAlt(localContext, 1); + // tslint:disable-next-line:no-empty + { + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnNamePath(): ColumnNamePathContext { + let localContext = new ColumnNamePathContext(this.context, this.state); + this.enterRule(localContext, 194, ImpalaSqlParser.RULE_columnNamePath); + try { + this.state = 1530; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1527; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 1528; + this.emptyColumn(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1529; + this.qualifiedNameAllowEmpty(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnName(): ColumnNameContext { + let localContext = new ColumnNameContext(this.context, this.state); + this.enterRule(localContext, 196, ImpalaSqlParser.RULE_columnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1532; + this.qualifiedName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnNameAllowEmpty(): ColumnNameAllowEmptyContext { + let localContext = new ColumnNameAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 198, ImpalaSqlParser.RULE_columnNameAllowEmpty); try { - this.state = 1521; + this.state = 1537; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1519; - this.qualifiedName(); + this.state = 1534; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 1535; + this.emptyColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1520; - if (!(this.shouldMatchEmpty())) { - throw this.createFailedPredicateException("this.shouldMatchEmpty()"); - } + this.state = 1536; + this.qualifiedNameAllowEmpty(); } break; } @@ -6325,48 +6419,24 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } - public columnName(): ColumnNameContext { - let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 194, ImpalaSqlParser.RULE_columnName); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1523; - this.qualifiedName(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public tableOrViewPath(): TableOrViewPathContext { let localContext = new TableOrViewPathContext(this.context, this.state); - this.enterRule(localContext, 196, ImpalaSqlParser.RULE_tableOrViewPath); + this.enterRule(localContext, 200, ImpalaSqlParser.RULE_tableOrViewPath); try { - this.state = 1527; + this.state = 1541; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1525; + this.state = 1539; this.tableNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1526; + this.state = 1540; this.viewNamePath(); } break; @@ -6388,112 +6458,112 @@ export class ImpalaSqlParser extends SQLParserBase { } public createCommonItem(): CreateCommonItemContext { let localContext = new CreateCommonItemContext(this.context, this.state); - this.enterRule(localContext, 198, ImpalaSqlParser.RULE_createCommonItem); + this.enterRule(localContext, 202, ImpalaSqlParser.RULE_createCommonItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1532; + this.state = 1546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1529; + this.state = 1543; this.match(ImpalaSqlParser.KW_SORT); - this.state = 1530; + this.state = 1544; this.match(ImpalaSqlParser.KW_BY); - this.state = 1531; + this.state = 1545; this.columnAliases(); } } - this.state = 1535; + this.state = 1549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: { - this.state = 1534; + this.state = 1548; this.commentClause(); } break; } - this.state = 1540; + this.state = 1554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1537; + this.state = 1551; this.match(ImpalaSqlParser.KW_ROW); - this.state = 1538; + this.state = 1552; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 1539; + this.state = 1553; this.rowFormat(); } } - this.state = 1545; + this.state = 1559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { - this.state = 1542; + this.state = 1556; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1543; + this.state = 1557; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 1544; + this.state = 1558; localContext._serdProp = this.properties(); } break; } - this.state = 1550; + this.state = 1564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 23) { { - this.state = 1547; + this.state = 1561; this.match(ImpalaSqlParser.KW_STORED); - this.state = 1548; + this.state = 1562; this.match(ImpalaSqlParser.KW_AS); - this.state = 1549; + this.state = 1563; this.fileFormat(); } } - this.state = 1554; + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 1552; + this.state = 1566; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 1553; + this.state = 1567; localContext._location = this.stringLiteral(); } } - this.state = 1566; + this.state = 1580; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { - this.state = 1556; + this.state = 1570; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1557; + this.state = 1571; this.match(ImpalaSqlParser.KW_IN); - this.state = 1558; + this.state = 1572; localContext._cacheName = this.qualifiedName(); - this.state = 1563; + this.state = 1577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 1559; + this.state = 1573; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1560; + this.state = 1574; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1561; + this.state = 1575; this.match(ImpalaSqlParser.EQ); - this.state = 1562; + this.state = 1576; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -6502,7 +6572,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 1565; + this.state = 1579; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -6540,14 +6610,14 @@ export class ImpalaSqlParser extends SQLParserBase { default: break; } - this.state = 1570; + this.state = 1584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 1568; + this.state = 1582; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 1569; + this.state = 1583; localContext._tblProp = this.properties(); } } @@ -6570,26 +6640,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public assignmentList(): AssignmentListContext { let localContext = new AssignmentListContext(this.context, this.state); - this.enterRule(localContext, 200, ImpalaSqlParser.RULE_assignmentList); + this.enterRule(localContext, 204, ImpalaSqlParser.RULE_assignmentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1572; + this.state = 1586; this.assignmentItem(); - this.state = 1577; + this.state = 1591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1573; + this.state = 1587; this.match(ImpalaSqlParser.COMMA); - this.state = 1574; + this.state = 1588; this.assignmentItem(); } } - this.state = 1579; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6611,15 +6681,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public assignmentItem(): AssignmentItemContext { let localContext = new AssignmentItemContext(this.context, this.state); - this.enterRule(localContext, 202, ImpalaSqlParser.RULE_assignmentItem); + this.enterRule(localContext, 206, ImpalaSqlParser.RULE_assignmentItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 1580; + this.state = 1594; this.qualifiedName(); - this.state = 1581; + this.state = 1595; this.match(ImpalaSqlParser.EQ); - this.state = 1582; + this.state = 1596; this.expression(); } } @@ -6639,48 +6709,48 @@ export class ImpalaSqlParser extends SQLParserBase { } public viewColumns(): ViewColumnsContext { let localContext = new ViewColumnsContext(this.context, this.state); - this.enterRule(localContext, 204, ImpalaSqlParser.RULE_viewColumns); + this.enterRule(localContext, 208, ImpalaSqlParser.RULE_viewColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1584; + this.state = 1598; this.match(ImpalaSqlParser.LPAREN); - this.state = 1586; + this.state = 1600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1585; + this.state = 1599; this.viewColumnItem(); } } - this.state = 1594; + this.state = 1608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1588; + this.state = 1602; this.match(ImpalaSqlParser.COMMA); - this.state = 1590; + this.state = 1604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1589; + this.state = 1603; this.viewColumnItem(); } } } } - this.state = 1596; + this.state = 1610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1597; + this.state = 1611; this.match(ImpalaSqlParser.RPAREN); } } @@ -6700,19 +6770,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public viewColumnItem(): ViewColumnItemContext { let localContext = new ViewColumnItemContext(this.context, this.state); - this.enterRule(localContext, 206, ImpalaSqlParser.RULE_viewColumnItem); + this.enterRule(localContext, 210, ImpalaSqlParser.RULE_viewColumnItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1599; + this.state = 1613; this.columnNamePathCreate(); - this.state = 1601; + this.state = 1615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1600; + this.state = 1614; this.commentClause(); } } @@ -6735,22 +6805,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryStatement(): QueryStatementContext { let localContext = new QueryStatementContext(this.context, this.state); - this.enterRule(localContext, 208, ImpalaSqlParser.RULE_queryStatement); + this.enterRule(localContext, 212, ImpalaSqlParser.RULE_queryStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1604; + this.state = 1618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1603; + this.state = 1617; this.with_(); } } - this.state = 1606; + this.state = 1620; this.queryNoWith(); } } @@ -6770,28 +6840,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public with_(): WithContext { let localContext = new WithContext(this.context, this.state); - this.enterRule(localContext, 210, ImpalaSqlParser.RULE_with); + this.enterRule(localContext, 214, ImpalaSqlParser.RULE_with); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1608; + this.state = 1622; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1609; + this.state = 1623; this.namedQuery(); - this.state = 1614; + this.state = 1628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1610; + this.state = 1624; this.match(ImpalaSqlParser.COMMA); - this.state = 1611; + this.state = 1625; this.namedQuery(); } } - this.state = 1616; + this.state = 1630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6813,106 +6883,106 @@ export class ImpalaSqlParser extends SQLParserBase { } public constraintSpecification(): ConstraintSpecificationContext { let localContext = new ConstraintSpecificationContext(this.context, this.state); - this.enterRule(localContext, 212, ImpalaSqlParser.RULE_constraintSpecification); + this.enterRule(localContext, 216, ImpalaSqlParser.RULE_constraintSpecification); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1617; + this.state = 1631; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1618; + this.state = 1632; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1619; + this.state = 1633; this.columnAliases(); - this.state = 1621; + this.state = 1635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1620; + this.state = 1634; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1626; + this.state = 1640; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1623; + this.state = 1637; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; case 2: { - this.state = 1624; + this.state = 1638; this.match(ImpalaSqlParser.COMMA); - this.state = 1625; + this.state = 1639; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; } - this.state = 1631; + this.state = 1645; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: { - this.state = 1628; + this.state = 1642; this.match(ImpalaSqlParser.KW_RELY); } break; case 2: { - this.state = 1629; + this.state = 1643; this.match(ImpalaSqlParser.COMMA); - this.state = 1630; + this.state = 1644; this.match(ImpalaSqlParser.KW_RELY); } break; } - this.state = 1645; + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 263) { { - this.state = 1636; + this.state = 1650; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.COMMA: { - this.state = 1633; + this.state = 1647; this.match(ImpalaSqlParser.COMMA); - this.state = 1634; + this.state = 1648; this.foreignKeySpecification(); } break; case ImpalaSqlParser.KW_FOREIGN: { - this.state = 1635; + this.state = 1649; this.foreignKeySpecification(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1642; + this.state = 1656; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1638; + this.state = 1652; this.match(ImpalaSqlParser.COMMA); - this.state = 1639; + this.state = 1653; this.foreignKeySpecification(); } } } - this.state = 1644; + this.state = 1658; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); } } } @@ -6935,49 +7005,49 @@ export class ImpalaSqlParser extends SQLParserBase { } public foreignKeySpecification(): ForeignKeySpecificationContext { let localContext = new ForeignKeySpecificationContext(this.context, this.state); - this.enterRule(localContext, 214, ImpalaSqlParser.RULE_foreignKeySpecification); + this.enterRule(localContext, 218, ImpalaSqlParser.RULE_foreignKeySpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1647; + this.state = 1661; this.match(ImpalaSqlParser.KW_FOREIGN); - this.state = 1648; + this.state = 1662; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1649; + this.state = 1663; this.columnAliases(); - this.state = 1650; + this.state = 1664; this.match(ImpalaSqlParser.KW_REFERENCES); - this.state = 1651; + this.state = 1665; this.tableNamePath(); - this.state = 1652; + this.state = 1666; this.columnAliases(); - this.state = 1654; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1653; + this.state = 1667; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1657; + this.state = 1671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 1656; + this.state = 1670; this.match(ImpalaSqlParser.KW_NOVALIDATE); } } - this.state = 1660; + this.state = 1674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 226) { { - this.state = 1659; + this.state = 1673; this.match(ImpalaSqlParser.KW_RELY); } } @@ -7000,22 +7070,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnSpec(): ColumnSpecContext { let localContext = new ColumnSpecContext(this.context, this.state); - this.enterRule(localContext, 216, ImpalaSqlParser.RULE_columnSpec); + this.enterRule(localContext, 220, ImpalaSqlParser.RULE_columnSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1662; + this.state = 1676; this.columnNamePath(); - this.state = 1663; + this.state = 1677; this.type_(0); - this.state = 1666; + this.state = 1680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 1664; + this.state = 1678; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1665; + this.state = 1679; this.stringLiteral(); } break; @@ -7038,21 +7108,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnDefinition(): ColumnDefinitionContext { let localContext = new ColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 218, ImpalaSqlParser.RULE_columnDefinition); + this.enterRule(localContext, 222, ImpalaSqlParser.RULE_columnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1668; + this.state = 1682; this.columnNamePathCreate(); - this.state = 1669; + this.state = 1683; localContext._colType = this.type_(0); - this.state = 1671; + this.state = 1685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1670; + this.state = 1684; this.commentClause(); } } @@ -7075,11 +7145,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduTableElement(): KuduTableElementContext { let localContext = new KuduTableElementContext(this.context, this.state); - this.enterRule(localContext, 220, ImpalaSqlParser.RULE_kuduTableElement); + this.enterRule(localContext, 224, ImpalaSqlParser.RULE_kuduTableElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1673; + this.state = 1687; this.kuduColumnDefinition(); } } @@ -7099,60 +7169,60 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduColumnDefinition(): KuduColumnDefinitionContext { let localContext = new KuduColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 222, ImpalaSqlParser.RULE_kuduColumnDefinition); + this.enterRule(localContext, 226, ImpalaSqlParser.RULE_kuduColumnDefinition); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1675; + this.state = 1689; this.columnNamePathCreate(); - this.state = 1676; + this.state = 1690; localContext._colType = this.type_(0); - this.state = 1684; + this.state = 1698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1677; + this.state = 1691; this.kuduAttributes(); - this.state = 1681; + this.state = 1695; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 193, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1678; + this.state = 1692; this.kuduAttributes(); } } } - this.state = 1683; + this.state = 1697; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 193, this.context); } } } - this.state = 1687; + this.state = 1701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1686; + this.state = 1700; this.commentClause(); } } - this.state = 1691; + this.state = 1705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1689; + this.state = 1703; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1690; + this.state = 1704; this.match(ImpalaSqlParser.KW_KEY); } } @@ -7175,13 +7245,13 @@ export class ImpalaSqlParser extends SQLParserBase { } public commentClause(): CommentClauseContext { let localContext = new CommentClauseContext(this.context, this.state); - this.enterRule(localContext, 224, ImpalaSqlParser.RULE_commentClause); + this.enterRule(localContext, 228, ImpalaSqlParser.RULE_commentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1693; + this.state = 1707; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1694; + this.state = 1708; localContext._comment = this.stringLiteral(); } } @@ -7201,36 +7271,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnSpecWithKudu(): ColumnSpecWithKuduContext { let localContext = new ColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 226, ImpalaSqlParser.RULE_columnSpecWithKudu); + this.enterRule(localContext, 230, ImpalaSqlParser.RULE_columnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1696; + this.state = 1710; this.columnSpec(); - this.state = 1704; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1697; + this.state = 1711; this.kuduAttributes(); - this.state = 1701; + this.state = 1715; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1698; + this.state = 1712; this.kuduAttributes(); } } } - this.state = 1703; + this.state = 1717; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); } } } @@ -7253,50 +7323,50 @@ export class ImpalaSqlParser extends SQLParserBase { } public createColumnSpecWithKudu(): CreateColumnSpecWithKuduContext { let localContext = new CreateColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 228, ImpalaSqlParser.RULE_createColumnSpecWithKudu); + this.enterRule(localContext, 232, ImpalaSqlParser.RULE_createColumnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1706; + this.state = 1720; this.columnNamePathCreate(); - this.state = 1707; + this.state = 1721; this.type_(0); - this.state = 1710; + this.state = 1724; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 1708; + this.state = 1722; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1709; + this.state = 1723; this.stringLiteral(); } break; } - this.state = 1719; + this.state = 1733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1712; + this.state = 1726; this.kuduAttributes(); - this.state = 1716; + this.state = 1730; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 200, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1713; + this.state = 1727; this.kuduAttributes(); } } } - this.state = 1718; + this.state = 1732; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 200, this.context); } } } @@ -7319,28 +7389,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduAttributes(): KuduAttributesContext { let localContext = new KuduAttributesContext(this.context, this.state); - this.enterRule(localContext, 230, ImpalaSqlParser.RULE_kuduAttributes); + this.enterRule(localContext, 234, ImpalaSqlParser.RULE_kuduAttributes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1726; + this.state = 1740; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_NOT: case ImpalaSqlParser.KW_NULL: { - this.state = 1722; + this.state = 1736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1721; + this.state = 1735; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 1724; + this.state = 1738; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -7349,7 +7419,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 1725; + this.state = 1739; this.kuduStorageAttr(); } break; @@ -7374,44 +7444,44 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduStorageAttr(): KuduStorageAttrContext { let localContext = new KuduStorageAttrContext(this.context, this.state); - this.enterRule(localContext, 232, ImpalaSqlParser.RULE_kuduStorageAttr); + this.enterRule(localContext, 236, ImpalaSqlParser.RULE_kuduStorageAttr); try { - this.state = 1736; + this.state = 1750; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ENCODING: this.enterOuterAlt(localContext, 1); { - this.state = 1728; + this.state = 1742; this.match(ImpalaSqlParser.KW_ENCODING); - this.state = 1729; + this.state = 1743; this.expression(); } break; case ImpalaSqlParser.KW_COMPRESSION: this.enterOuterAlt(localContext, 2); { - this.state = 1730; + this.state = 1744; this.match(ImpalaSqlParser.KW_COMPRESSION); - this.state = 1731; + this.state = 1745; this.expression(); } break; case ImpalaSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 1732; + this.state = 1746; this.match(ImpalaSqlParser.KW_DEFAULT); - this.state = 1733; + this.state = 1747; this.expression(); } break; case ImpalaSqlParser.KW_BLOCK_SIZE: this.enterOuterAlt(localContext, 4); { - this.state = 1734; + this.state = 1748; this.match(ImpalaSqlParser.KW_BLOCK_SIZE); - this.state = 1735; + this.state = 1749; this.number_(); } break; @@ -7435,12 +7505,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public statsKey(): StatsKeyContext { let localContext = new StatsKeyContext(this.context, this.state); - this.enterRule(localContext, 234, ImpalaSqlParser.RULE_statsKey); + this.enterRule(localContext, 238, ImpalaSqlParser.RULE_statsKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1752; _la = this.tokenStream.LA(1); if(!(((((_la - 245)) & ~0x1F) === 0 && ((1 << (_la - 245)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -7467,12 +7537,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 236, ImpalaSqlParser.RULE_fileFormat); + this.enterRule(localContext, 240, ImpalaSqlParser.RULE_fileFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1740; + this.state = 1754; _la = this.tokenStream.LA(1); if(!(_la === 147 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 31) !== 0))) { this.errorHandler.recoverInline(this); @@ -7499,45 +7569,45 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduPartitionClause(): KuduPartitionClauseContext { let localContext = new KuduPartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 238, ImpalaSqlParser.RULE_kuduPartitionClause); + this.enterRule(localContext, 242, ImpalaSqlParser.RULE_kuduPartitionClause); let _la: number; try { let alternative: number; - this.state = 1755; + this.state = 1769; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_HASH: this.enterOuterAlt(localContext, 1); { { - this.state = 1742; + this.state = 1756; this.hashClause(); - this.state = 1747; + this.state = 1761; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 205, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1743; + this.state = 1757; this.match(ImpalaSqlParser.COMMA); - this.state = 1744; + this.state = 1758; this.hashClause(); } } } - this.state = 1749; + this.state = 1763; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 205, this.context); } - this.state = 1752; + this.state = 1766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1750; + this.state = 1764; this.match(ImpalaSqlParser.COMMA); - this.state = 1751; + this.state = 1765; this.rangeClause(); } } @@ -7548,7 +7618,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 1754; + this.state = 1768; this.rangeClause(); } break; @@ -7572,26 +7642,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public hashClause(): HashClauseContext { let localContext = new HashClauseContext(this.context, this.state); - this.enterRule(localContext, 240, ImpalaSqlParser.RULE_hashClause); + this.enterRule(localContext, 244, ImpalaSqlParser.RULE_hashClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1757; + this.state = 1771; this.match(ImpalaSqlParser.KW_HASH); - this.state = 1759; + this.state = 1773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 1758; + this.state = 1772; this.columnAliases(); } } - this.state = 1761; + this.state = 1775; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1762; + this.state = 1776; this.number_(); } } @@ -7611,52 +7681,52 @@ export class ImpalaSqlParser extends SQLParserBase { } public rangeClause(): RangeClauseContext { let localContext = new RangeClauseContext(this.context, this.state); - this.enterRule(localContext, 242, ImpalaSqlParser.RULE_rangeClause); + this.enterRule(localContext, 246, ImpalaSqlParser.RULE_rangeClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1764; + this.state = 1778; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 1766; + this.state = 1780; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 1765; + this.state = 1779; this.columnAliases(); } break; } - this.state = 1768; + this.state = 1782; this.match(ImpalaSqlParser.LPAREN); { - this.state = 1769; + this.state = 1783; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1770; + this.state = 1784; this.kuduPartitionSpec(); - this.state = 1776; + this.state = 1790; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 210, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1771; + this.state = 1785; this.match(ImpalaSqlParser.COMMA); - this.state = 1772; + this.state = 1786; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1773; + this.state = 1787; this.kuduPartitionSpec(); } } } - this.state = 1778; + this.state = 1792; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 210, this.context); } } - this.state = 1779; + this.state = 1793; this.match(ImpalaSqlParser.RPAREN); } } @@ -7676,20 +7746,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduPartitionSpec(): KuduPartitionSpecContext { let localContext = new KuduPartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 244, ImpalaSqlParser.RULE_kuduPartitionSpec); + this.enterRule(localContext, 248, ImpalaSqlParser.RULE_kuduPartitionSpec); let _la: number; try { - this.state = 1796; + this.state = 1810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1781; + this.state = 1795; this.match(ImpalaSqlParser.KW_VALUE); - this.state = 1782; + this.state = 1796; this.partitionCol(); - this.state = 1783; + this.state = 1797; this.expression(); } break; @@ -7765,28 +7835,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 1788; + this.state = 1802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 1785; + this.state = 1799; this.expression(); - this.state = 1786; + this.state = 1800; this.rangeOperator(); } } - this.state = 1790; + this.state = 1804; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1794; + this.state = 1808; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { - this.state = 1791; + this.state = 1805; this.rangeOperator(); - this.state = 1792; + this.state = 1806; this.expression(); } break; @@ -7813,32 +7883,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public cacheSpec(): CacheSpecContext { let localContext = new CacheSpecContext(this.context, this.state); - this.enterRule(localContext, 246, ImpalaSqlParser.RULE_cacheSpec); + this.enterRule(localContext, 250, ImpalaSqlParser.RULE_cacheSpec); try { - this.state = 1808; + this.state = 1822; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: this.enterOuterAlt(localContext, 1); { - this.state = 1798; + this.state = 1812; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1799; + this.state = 1813; this.match(ImpalaSqlParser.KW_IN); - this.state = 1800; + this.state = 1814; this.identifier(); - this.state = 1805; + this.state = 1819; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1801; + this.state = 1815; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1802; + this.state = 1816; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1803; + this.state = 1817; this.match(ImpalaSqlParser.EQ); - this.state = 1804; + this.state = 1818; this.number_(); } break; @@ -7848,7 +7918,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_UNCACHED: this.enterOuterAlt(localContext, 2); { - this.state = 1807; + this.state = 1821; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -7872,9 +7942,9 @@ export class ImpalaSqlParser extends SQLParserBase { } public rangeOperator(): RangeOperatorContext { let localContext = new RangeOperatorContext(this.context, this.state); - this.enterRule(localContext, 248, ImpalaSqlParser.RULE_rangeOperator); + this.enterRule(localContext, 252, ImpalaSqlParser.RULE_rangeOperator); try { - this.state = 1815; + this.state = 1829; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -7955,28 +8025,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.LT: this.enterOuterAlt(localContext, 2); { - this.state = 1811; + this.state = 1825; this.match(ImpalaSqlParser.LT); } break; case ImpalaSqlParser.LTE: this.enterOuterAlt(localContext, 3); { - this.state = 1812; + this.state = 1826; this.match(ImpalaSqlParser.LTE); } break; case ImpalaSqlParser.GT: this.enterOuterAlt(localContext, 4); { - this.state = 1813; + this.state = 1827; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.GTE: this.enterOuterAlt(localContext, 5); { - this.state = 1814; + this.state = 1828; this.match(ImpalaSqlParser.GTE); } break; @@ -8000,57 +8070,57 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionCol(): PartitionColContext { let localContext = new PartitionColContext(this.context, this.state); - this.enterRule(localContext, 250, ImpalaSqlParser.RULE_partitionCol); + this.enterRule(localContext, 254, ImpalaSqlParser.RULE_partitionCol); try { - this.state = 1825; + this.state = 1839; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.EQ: this.enterOuterAlt(localContext, 1); { - this.state = 1817; + this.state = 1831; this.match(ImpalaSqlParser.EQ); } break; case ImpalaSqlParser.NEQ: this.enterOuterAlt(localContext, 2); { - this.state = 1818; + this.state = 1832; this.match(ImpalaSqlParser.NEQ); } break; case ImpalaSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 1819; + this.state = 1833; this.match(ImpalaSqlParser.KW_LIKE); } break; case ImpalaSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 4); { - this.state = 1820; + this.state = 1834; this.match(ImpalaSqlParser.KW_RLIKE); } break; case ImpalaSqlParser.KW_REGEXP: this.enterOuterAlt(localContext, 5); { - this.state = 1821; + this.state = 1835; this.match(ImpalaSqlParser.KW_REGEXP); } break; case ImpalaSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 6); { - this.state = 1822; + this.state = 1836; this.match(ImpalaSqlParser.KW_BETWEEN); } break; case ImpalaSqlParser.KW_IN: this.enterOuterAlt(localContext, 7); { - this.state = 1823; + this.state = 1837; this.match(ImpalaSqlParser.KW_IN); } break; @@ -8129,7 +8199,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 8); { - this.state = 1824; + this.state = 1838; this.rangeOperator(); } break; @@ -8153,21 +8223,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public likeClause(): LikeClauseContext { let localContext = new LikeClauseContext(this.context, this.state); - this.enterRule(localContext, 252, ImpalaSqlParser.RULE_likeClause); + this.enterRule(localContext, 256, ImpalaSqlParser.RULE_likeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1827; + this.state = 1841; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 1828; + this.state = 1842; this.qualifiedName(); - this.state = 1831; + this.state = 1845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 95) { { - this.state = 1829; + this.state = 1843; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 95)) { @@ -8177,7 +8247,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1830; + this.state = 1844; this.match(ImpalaSqlParser.KW_PROPERTIES); } } @@ -8200,32 +8270,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public properties(): PropertiesContext { let localContext = new PropertiesContext(this.context, this.state); - this.enterRule(localContext, 254, ImpalaSqlParser.RULE_properties); + this.enterRule(localContext, 258, ImpalaSqlParser.RULE_properties); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1833; + this.state = 1847; this.match(ImpalaSqlParser.LPAREN); - this.state = 1834; + this.state = 1848; this.property(); - this.state = 1839; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1835; + this.state = 1849; this.match(ImpalaSqlParser.COMMA); - this.state = 1836; + this.state = 1850; this.property(); } } - this.state = 1841; + this.state = 1855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1842; + this.state = 1856; this.match(ImpalaSqlParser.RPAREN); } } @@ -8245,34 +8315,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionedBy(): PartitionedByContext { let localContext = new PartitionedByContext(this.context, this.state); - this.enterRule(localContext, 256, ImpalaSqlParser.RULE_partitionedBy); + this.enterRule(localContext, 260, ImpalaSqlParser.RULE_partitionedBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1844; + this.state = 1858; this.match(ImpalaSqlParser.LPAREN); - this.state = 1845; + this.state = 1859; this.columnSpec(); - this.state = 1850; + this.state = 1864; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1846; + this.state = 1860; this.match(ImpalaSqlParser.COMMA); - this.state = 1847; + this.state = 1861; this.columnSpec(); } } } - this.state = 1852; + this.state = 1866; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); } - this.state = 1853; + this.state = 1867; this.match(ImpalaSqlParser.RPAREN); } } @@ -8292,26 +8362,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public sortedBy(): SortedByContext { let localContext = new SortedByContext(this.context, this.state); - this.enterRule(localContext, 258, ImpalaSqlParser.RULE_sortedBy); + this.enterRule(localContext, 262, ImpalaSqlParser.RULE_sortedBy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1855; + this.state = 1869; this.expression(); - this.state = 1860; + this.state = 1874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1856; + this.state = 1870; this.match(ImpalaSqlParser.COMMA); - this.state = 1857; + this.state = 1871; this.expression(); } } - this.state = 1862; + this.state = 1876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8333,36 +8403,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 260, ImpalaSqlParser.RULE_rowFormat); + this.enterRule(localContext, 264, ImpalaSqlParser.RULE_rowFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1863; + this.state = 1877; this.match(ImpalaSqlParser.KW_DELIMITED); - this.state = 1873; + this.state = 1887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1864; + this.state = 1878; this.match(ImpalaSqlParser.KW_FIELDS); - this.state = 1865; + this.state = 1879; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1866; + this.state = 1880; this.match(ImpalaSqlParser.KW_BY); - this.state = 1867; + this.state = 1881; this.stringLiteral(); - this.state = 1871; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 1868; + this.state = 1882; this.match(ImpalaSqlParser.KW_ESCAPED); - this.state = 1869; + this.state = 1883; this.match(ImpalaSqlParser.KW_BY); - this.state = 1870; + this.state = 1884; this.stringLiteral(); } } @@ -8370,18 +8440,18 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1879; + this.state = 1893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117) { { - this.state = 1875; + this.state = 1889; this.match(ImpalaSqlParser.KW_LINES); - this.state = 1876; + this.state = 1890; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1877; + this.state = 1891; this.match(ImpalaSqlParser.KW_BY); - this.state = 1878; + this.state = 1892; this.stringLiteral(); } } @@ -8404,21 +8474,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public property(): PropertyContext { let localContext = new PropertyContext(this.context, this.state); - this.enterRule(localContext, 262, ImpalaSqlParser.RULE_property); + this.enterRule(localContext, 266, ImpalaSqlParser.RULE_property); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1881; + this.state = 1895; this.identifier(); - this.state = 1884; + this.state = 1898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 1882; + this.state = 1896; this.match(ImpalaSqlParser.EQ); - this.state = 1883; + this.state = 1897; this.expression(); } } @@ -8441,60 +8511,60 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryNoWith(): QueryNoWithContext { let localContext = new QueryNoWithContext(this.context, this.state); - this.enterRule(localContext, 264, ImpalaSqlParser.RULE_queryNoWith); + this.enterRule(localContext, 268, ImpalaSqlParser.RULE_queryNoWith); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1886; + this.state = 1900; this.queryTerm(0); - this.state = 1897; + this.state = 1911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 1887; + this.state = 1901; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 1888; + this.state = 1902; this.match(ImpalaSqlParser.KW_BY); - this.state = 1889; + this.state = 1903; this.sortItem(); - this.state = 1894; + this.state = 1908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1890; + this.state = 1904; this.match(ImpalaSqlParser.COMMA); - this.state = 1891; + this.state = 1905; this.sortItem(); } } - this.state = 1896; + this.state = 1910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1905; + this.state = 1919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1899; + this.state = 1913; this.match(ImpalaSqlParser.KW_LIMIT); - this.state = 1900; + this.state = 1914; localContext._rows = this.expression(); - this.state = 1903; + this.state = 1917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1901; + this.state = 1915; this.match(ImpalaSqlParser.KW_OFFSET); - this.state = 1902; + this.state = 1916; localContext._offset = this.match(ImpalaSqlParser.INTEGER_VALUE); } } @@ -8530,8 +8600,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 266; - this.enterRecursionRule(localContext, 266, ImpalaSqlParser.RULE_queryTerm, _p); + let _startState = 270; + this.enterRecursionRule(localContext, 270, ImpalaSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; @@ -8542,13 +8612,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1908; + this.state = 1922; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1924; + this.state = 1938; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8556,31 +8626,31 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1922; + this.state = 1936; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1910; + this.state = 1924; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1911; + this.state = 1925; (localContext as SetOperationContext)._operator = this.match(ImpalaSqlParser.KW_INTERSECT); - this.state = 1913; + this.state = 1927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1912; + this.state = 1926; this.setQuantifier(); } } - this.state = 1915; + this.state = 1929; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -8589,11 +8659,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1916; + this.state = 1930; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1917; + this.state = 1931; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 200)) { @@ -8603,26 +8673,26 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1919; + this.state = 1933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1918; + this.state = 1932; this.setQuantifier(); } } - this.state = 1921; + this.state = 1935; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1926; + this.state = 1940; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } } } @@ -8642,17 +8712,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 268, ImpalaSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 272, ImpalaSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1943; + this.state = 1957; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1927; + this.state = 1941; this.querySpecification(); } break; @@ -8660,9 +8730,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1928; + this.state = 1942; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1929; + this.state = 1943; this.tableNamePath(); } break; @@ -8670,27 +8740,27 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1930; + this.state = 1944; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1931; + this.state = 1945; this.expression(); - this.state = 1936; + this.state = 1950; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1932; + this.state = 1946; this.match(ImpalaSqlParser.COMMA); - this.state = 1933; + this.state = 1947; this.expression(); } } } - this.state = 1938; + this.state = 1952; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); } } break; @@ -8698,11 +8768,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1939; + this.state = 1953; this.match(ImpalaSqlParser.LPAREN); - this.state = 1940; + this.state = 1954; this.queryNoWith(); - this.state = 1941; + this.state = 1955; this.match(ImpalaSqlParser.RPAREN); } break; @@ -8726,19 +8796,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 270, ImpalaSqlParser.RULE_sortItem); + this.enterRule(localContext, 274, ImpalaSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1945; + this.state = 1959; this.columnItem(); - this.state = 1947; + this.state = 1961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 55) { { - this.state = 1946; + this.state = 1960; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 55)) { @@ -8751,14 +8821,14 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1951; + this.state = 1965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1949; + this.state = 1963; this.match(ImpalaSqlParser.KW_NULLS); - this.state = 1950; + this.state = 1964; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 75 || _la === 112)) { @@ -8789,95 +8859,95 @@ export class ImpalaSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 272, ImpalaSqlParser.RULE_querySpecification); + this.enterRule(localContext, 276, ImpalaSqlParser.RULE_querySpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1953; + this.state = 1967; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 1955; + this.state = 1969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1954; + this.state = 1968; this.setQuantifier(); } break; } - this.state = 1958; + this.state = 1972; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 1957; + this.state = 1971; this.match(ImpalaSqlParser.KW_STRAIGHT_JOIN); } break; } - this.state = 1960; + this.state = 1974; this.selectList(); - this.state = 1970; + this.state = 1984; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1961; + this.state = 1975; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1962; + this.state = 1976; this.relation(0); - this.state = 1967; + this.state = 1981; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1963; + this.state = 1977; this.match(ImpalaSqlParser.COMMA); - this.state = 1964; + this.state = 1978; this.relation(0); } } } - this.state = 1969; + this.state = 1983; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); } } break; } - this.state = 1973; + this.state = 1987; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1972; + this.state = 1986; this.whereClause(); } break; } - this.state = 1978; + this.state = 1992; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 1975; + this.state = 1989; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1976; + this.state = 1990; this.match(ImpalaSqlParser.KW_BY); - this.state = 1977; + this.state = 1991; this.groupBy(); } break; } - this.state = 1981; + this.state = 1995; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 1980; + this.state = 1994; this.havingClause(); } break; @@ -8900,30 +8970,30 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 274, ImpalaSqlParser.RULE_selectList); + this.enterRule(localContext, 278, ImpalaSqlParser.RULE_selectList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1983; + this.state = 1997; this.selectItem(); - this.state = 1988; + this.state = 2002; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 245, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1984; + this.state = 1998; this.match(ImpalaSqlParser.COMMA); - this.state = 1985; + this.state = 1999; this.selectItem(); } } } - this.state = 1990; + this.state = 2004; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 245, this.context); } } } @@ -8943,14 +9013,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 276, ImpalaSqlParser.RULE_whereClause); + this.enterRule(localContext, 280, ImpalaSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1991; + this.state = 2005; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1992; - localContext._where = this.booleanExpression(0); + this.state = 2008; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + case 1: + { + this.state = 2006; + localContext._where = this.booleanExpression(0); + } + break; + case 2: + { + this.state = 2007; + this.columnNameAllowEmpty(); + } + break; + } } } catch (re) { @@ -8969,14 +9053,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 278, ImpalaSqlParser.RULE_havingClause); + this.enterRule(localContext, 282, ImpalaSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1994; + this.state = 2010; this.match(ImpalaSqlParser.KW_HAVING); - this.state = 1995; - localContext._having = this.booleanExpression(0); + this.state = 2013; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + case 1: + { + this.state = 2011; + localContext._having = this.booleanExpression(0); + } + break; + case 2: + { + this.state = 2012; + this.columnNameAllowEmpty(); + } + break; + } } } catch (re) { @@ -8995,40 +9093,40 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 280, ImpalaSqlParser.RULE_groupBy); + this.enterRule(localContext, 284, ImpalaSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 2016; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1997; + this.state = 2015; this.setQuantifier(); } break; } - this.state = 2000; + this.state = 2018; this.groupingElement(); - this.state = 2005; + this.state = 2023; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2001; + this.state = 2019; this.match(ImpalaSqlParser.COMMA); - this.state = 2002; + this.state = 2020; this.groupingElement(); } } } - this.state = 2007; + this.state = 2025; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); } } } @@ -9048,12 +9146,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 282, ImpalaSqlParser.RULE_groupingElement); + this.enterRule(localContext, 286, ImpalaSqlParser.RULE_groupingElement); try { localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2008; + this.state = 2026; this.groupingSet(); } } @@ -9073,51 +9171,51 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 284, ImpalaSqlParser.RULE_groupingSet); + this.enterRule(localContext, 288, ImpalaSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2023; + this.state = 2041; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2010; + this.state = 2028; this.match(ImpalaSqlParser.LPAREN); - this.state = 2019; + this.state = 2037; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2011; + this.state = 2029; this.columnItem(); - this.state = 2016; + this.state = 2034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2012; + this.state = 2030; this.match(ImpalaSqlParser.COMMA); - this.state = 2013; + this.state = 2031; this.columnItem(); } } - this.state = 2018; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2021; + this.state = 2039; this.match(ImpalaSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2022; + this.state = 2040; this.columnItem(); } break; @@ -9139,26 +9237,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 286, ImpalaSqlParser.RULE_namedQuery); + this.enterRule(localContext, 290, ImpalaSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2025; + this.state = 2043; localContext._name = this.identifier(); - this.state = 2027; + this.state = 2045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2026; + this.state = 2044; this.columnAliases(); } } - this.state = 2029; + this.state = 2047; this.match(ImpalaSqlParser.KW_AS); - this.state = 2030; + this.state = 2048; this.subQueryRelation(); } } @@ -9178,12 +9276,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 288, ImpalaSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 292, ImpalaSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2032; + this.state = 2050; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 57)) { this.errorHandler.recoverInline(this); @@ -9210,22 +9308,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 290, ImpalaSqlParser.RULE_selectItem); + this.enterRule(localContext, 294, ImpalaSqlParser.RULE_selectItem); try { - this.state = 2043; + this.state = 2061; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2034; + this.state = 2052; this.selectLiteralColumnName(); - this.state = 2036; + this.state = 2054; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2035; + this.state = 2053; this.columnAlias(); } break; @@ -9235,14 +9333,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2038; + this.state = 2056; this.selectExpressionColumnName(); - this.state = 2040; + this.state = 2058; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2039; + this.state = 2057; this.columnAlias(); } break; @@ -9252,7 +9350,7 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2042; + this.state = 2060; this.tableAllColumns(); } break; @@ -9274,22 +9372,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnAlias(): ColumnAliasContext { let localContext = new ColumnAliasContext(this.context, this.state); - this.enterRule(localContext, 292, ImpalaSqlParser.RULE_columnAlias); + this.enterRule(localContext, 296, ImpalaSqlParser.RULE_columnAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2046; + this.state = 2064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2045; + this.state = 2063; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2048; + this.state = 2066; localContext._alias = this.identifier(); } } @@ -9309,11 +9407,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectLiteralColumnName(): SelectLiteralColumnNameContext { let localContext = new SelectLiteralColumnNameContext(this.context, this.state); - this.enterRule(localContext, 294, ImpalaSqlParser.RULE_selectLiteralColumnName); + this.enterRule(localContext, 298, ImpalaSqlParser.RULE_selectLiteralColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2050; + this.state = 2068; this.columnNamePath(); } } @@ -9333,11 +9431,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectExpressionColumnName(): SelectExpressionColumnNameContext { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); - this.enterRule(localContext, 296, ImpalaSqlParser.RULE_selectExpressionColumnName); + this.enterRule(localContext, 300, ImpalaSqlParser.RULE_selectExpressionColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2052; + this.state = 2070; this.expression(); } } @@ -9357,24 +9455,24 @@ export class ImpalaSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 298, ImpalaSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 302, ImpalaSqlParser.RULE_tableAllColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2057; + this.state = 2075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2054; + this.state = 2072; this.qualifiedName(); - this.state = 2055; + this.state = 2073; this.match(ImpalaSqlParser.DOT); } } - this.state = 2059; + this.state = 2077; this.match(ImpalaSqlParser.ASTERISK); } } @@ -9404,8 +9502,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 300; - this.enterRecursionRule(localContext, 300, ImpalaSqlParser.RULE_relation, _p); + let _startState = 304; + this.enterRecursionRule(localContext, 304, ImpalaSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -9415,13 +9513,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2062; + this.state = 2080; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2077; + this.state = 2095; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 257, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 260, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9433,20 +9531,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_relation); - this.state = 2064; + this.state = 2082; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2073; + this.state = 2091; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2065; + this.state = 2083; this.match(ImpalaSqlParser.KW_CROSS); - this.state = 2066; + this.state = 2084; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2067; + this.state = 2085; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9456,13 +9554,13 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2068; + this.state = 2086; this.joinType(); - this.state = 2069; + this.state = 2087; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2070; + this.state = 2088; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 2071; + this.state = 2089; this.joinCriteria(); } break; @@ -9472,9 +9570,9 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2079; + this.state = 2097; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 257, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 260, this.context); } } } @@ -9494,21 +9592,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 302, ImpalaSqlParser.RULE_joinType); + this.enterRule(localContext, 306, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2111; + this.state = 2129; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2081; + this.state = 2099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2080; + this.state = 2098; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9518,14 +9616,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2083; + this.state = 2101; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2085; + this.state = 2103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2084; + this.state = 2102; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9535,14 +9633,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2087; + this.state = 2105; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2089; + this.state = 2107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2088; + this.state = 2106; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9552,14 +9650,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2091; + this.state = 2109; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2093; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2092; + this.state = 2110; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9569,14 +9667,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2095; + this.state = 2113; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2097; + this.state = 2115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2096; + this.state = 2114; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9586,14 +9684,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2099; + this.state = 2117; this.match(ImpalaSqlParser.KW_FULL); - this.state = 2101; + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2100; + this.state = 2118; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9603,36 +9701,36 @@ export class ImpalaSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2103; + this.state = 2121; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2104; + this.state = 2122; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2105; + this.state = 2123; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2106; + this.state = 2124; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2107; + this.state = 2125; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2108; + this.state = 2126; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2109; + this.state = 2127; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2110; + this.state = 2128; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9654,47 +9752,61 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 304, ImpalaSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 308, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2127; + this.state = 2148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2113; + this.state = 2131; this.match(ImpalaSqlParser.KW_ON); - this.state = 2114; - this.booleanExpression(0); + this.state = 2134; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + case 1: + { + this.state = 2132; + this.booleanExpression(0); + } + break; + case 2: + { + this.state = 2133; + this.columnNameAllowEmpty(); + } + break; + } } break; case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2115; + this.state = 2136; this.match(ImpalaSqlParser.KW_USING); - this.state = 2116; + this.state = 2137; this.match(ImpalaSqlParser.LPAREN); - this.state = 2117; + this.state = 2138; this.identifier(); - this.state = 2122; + this.state = 2143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2118; + this.state = 2139; this.match(ImpalaSqlParser.COMMA); - this.state = 2119; + this.state = 2140; this.identifier(); } } - this.state = 2124; + this.state = 2145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2125; + this.state = 2146; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9718,39 +9830,39 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 306, ImpalaSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 310, ImpalaSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2129; + this.state = 2150; this.aliasedRelation(); - this.state = 2142; + this.state = 2163; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2130; + this.state = 2151; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 2131; + this.state = 2152; this.sampleType(); - this.state = 2132; + this.state = 2153; this.match(ImpalaSqlParser.LPAREN); - this.state = 2133; + this.state = 2154; localContext._percentage = this.expression(); - this.state = 2134; + this.state = 2155; this.match(ImpalaSqlParser.RPAREN); - this.state = 2140; + this.state = 2161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2135; + this.state = 2156; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 2136; + this.state = 2157; this.match(ImpalaSqlParser.LPAREN); - this.state = 2137; + this.state = 2158; localContext._seed = this.expression(); - this.state = 2138; + this.state = 2159; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9776,12 +9888,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 308, ImpalaSqlParser.RULE_sampleType); + this.enterRule(localContext, 312, ImpalaSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2144; + this.state = 2165; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -9808,36 +9920,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 310, ImpalaSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 314, ImpalaSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2146; + this.state = 2167; this.relationPrimary(); - this.state = 2154; + this.state = 2175; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2148; + this.state = 2169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2147; + this.state = 2168; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2150; + this.state = 2171; localContext._alias = this.identifier(); - this.state = 2152; + this.state = 2173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2151; + this.state = 2172; this.columnAliases(); } break; @@ -9863,32 +9975,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 312, ImpalaSqlParser.RULE_columnAliases); + this.enterRule(localContext, 316, ImpalaSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2156; + this.state = 2177; this.match(ImpalaSqlParser.LPAREN); - this.state = 2157; + this.state = 2178; this.columnNamePath(); - this.state = 2162; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2158; + this.state = 2179; this.match(ImpalaSqlParser.COMMA); - this.state = 2159; + this.state = 2180; this.columnNamePath(); } } - this.state = 2164; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2165; + this.state = 2186; this.match(ImpalaSqlParser.RPAREN); } } @@ -9908,36 +10020,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 314, ImpalaSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 318, ImpalaSqlParser.RULE_relationPrimary); try { - this.state = 2171; + this.state = 2192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2167; + this.state = 2188; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2168; + this.state = 2189; this.atomSubQueryTableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2169; + this.state = 2190; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2170; + this.state = 2191; this.parenthesizedRelation(); } break; @@ -9959,22 +10071,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); - this.enterRule(localContext, 316, ImpalaSqlParser.RULE_atomSubQueryTableSource); + this.enterRule(localContext, 320, ImpalaSqlParser.RULE_atomSubQueryTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2174; + this.state = 2195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 2173; + this.state = 2194; this.match(ImpalaSqlParser.KW_LATERAL); } } - this.state = 2176; + this.state = 2197; this.subQueryRelation(); } } @@ -9994,15 +10106,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public subQueryRelation(): SubQueryRelationContext { let localContext = new SubQueryRelationContext(this.context, this.state); - this.enterRule(localContext, 318, ImpalaSqlParser.RULE_subQueryRelation); + this.enterRule(localContext, 322, ImpalaSqlParser.RULE_subQueryRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2178; + this.state = 2199; this.match(ImpalaSqlParser.LPAREN); - this.state = 2179; + this.state = 2200; this.queryStatement(); - this.state = 2180; + this.state = 2201; this.match(ImpalaSqlParser.RPAREN); } } @@ -10022,43 +10134,43 @@ export class ImpalaSqlParser extends SQLParserBase { } public unnest(): UnnestContext { let localContext = new UnnestContext(this.context, this.state); - this.enterRule(localContext, 320, ImpalaSqlParser.RULE_unnest); + this.enterRule(localContext, 324, ImpalaSqlParser.RULE_unnest); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2182; + this.state = 2203; this.match(ImpalaSqlParser.KW_UNNEST); - this.state = 2183; + this.state = 2204; this.match(ImpalaSqlParser.LPAREN); - this.state = 2184; + this.state = 2205; this.expression(); - this.state = 2189; + this.state = 2210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2185; + this.state = 2206; this.match(ImpalaSqlParser.COMMA); - this.state = 2186; + this.state = 2207; this.expression(); } } - this.state = 2191; + this.state = 2212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2192; + this.state = 2213; this.match(ImpalaSqlParser.RPAREN); - this.state = 2195; + this.state = 2216; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 2193; + this.state = 2214; this.match(ImpalaSqlParser.KW_WITH); - this.state = 2194; + this.state = 2215; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -10081,15 +10193,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public parenthesizedRelation(): ParenthesizedRelationContext { let localContext = new ParenthesizedRelationContext(this.context, this.state); - this.enterRule(localContext, 322, ImpalaSqlParser.RULE_parenthesizedRelation); + this.enterRule(localContext, 326, ImpalaSqlParser.RULE_parenthesizedRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2218; this.match(ImpalaSqlParser.LPAREN); - this.state = 2198; + this.state = 2219; this.relation(0); - this.state = 2199; + this.state = 2220; this.match(ImpalaSqlParser.RPAREN); } } @@ -10109,22 +10221,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnItem(): ColumnItemContext { let localContext = new ColumnItemContext(this.context, this.state); - this.enterRule(localContext, 324, ImpalaSqlParser.RULE_columnItem); + this.enterRule(localContext, 328, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2203; + this.state = 2224; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2222; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2202; + this.state = 2223; this.expression(); } break; @@ -10146,11 +10258,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 326, ImpalaSqlParser.RULE_expression); + this.enterRule(localContext, 330, ImpalaSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2226; this.booleanExpression(0); } } @@ -10180,13 +10292,13 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 328; - this.enterRecursionRule(localContext, 328, ImpalaSqlParser.RULE_booleanExpression, _p); + let _startState = 332; + this.enterRecursionRule(localContext, 332, ImpalaSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2214; + this.state = 2235; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -10262,14 +10374,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2208; + this.state = 2229; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2210; + this.state = 2231; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: { - this.state = 2209; + this.state = 2230; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -10281,9 +10393,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2212; + this.state = 2233; this.match(ImpalaSqlParser.KW_NOT); - this.state = 2213; + this.state = 2234; this.booleanExpression(3); } break; @@ -10291,9 +10403,9 @@ export class ImpalaSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2224; + this.state = 2245; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 285, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10301,21 +10413,21 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2222; + this.state = 2243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2216; + this.state = 2237; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2217; + this.state = 2238; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); - this.state = 2218; + this.state = 2239; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10324,22 +10436,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2219; + this.state = 2240; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2220; + this.state = 2241; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); - this.state = 2221; + this.state = 2242; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2226; + this.state = 2247; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 285, this.context); } } } @@ -10359,19 +10471,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 330, ImpalaSqlParser.RULE_predicate); + this.enterRule(localContext, 334, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2285; + this.state = 2306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2227; + this.state = 2248; this.comparisonOperator(); - this.state = 2228; + this.state = 2249; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10379,11 +10491,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2230; + this.state = 2251; this.comparisonOperator(); - this.state = 2231; + this.state = 2252; this.comparisonQuantifier(); - this.state = 2232; + this.state = 2253; this.subQueryRelation(); } break; @@ -10391,23 +10503,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2235; + this.state = 2256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2234; + this.state = 2255; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2237; + this.state = 2258; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2238; + this.state = 2259; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2239; + this.state = 2260; this.match(ImpalaSqlParser.KW_AND); - this.state = 2240; + this.state = 2261; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10415,39 +10527,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2243; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2242; + this.state = 2263; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2245; + this.state = 2266; this.match(ImpalaSqlParser.KW_IN); - this.state = 2246; + this.state = 2267; this.match(ImpalaSqlParser.LPAREN); - this.state = 2247; + this.state = 2268; this.expression(); - this.state = 2252; + this.state = 2273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2248; + this.state = 2269; this.match(ImpalaSqlParser.COMMA); - this.state = 2249; + this.state = 2270; this.expression(); } } - this.state = 2254; + this.state = 2275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2255; + this.state = 2276; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10455,19 +10567,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2258; + this.state = 2279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2257; + this.state = 2278; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2260; + this.state = 2281; this.match(ImpalaSqlParser.KW_IN); - this.state = 2261; + this.state = 2282; this.subQueryRelation(); } break; @@ -10475,17 +10587,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2263; + this.state = 2284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2262; + this.state = 2283; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2265; + this.state = 2286; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 115 || _la === 164)) { this.errorHandler.recoverInline(this); @@ -10494,16 +10606,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2266; + this.state = 2287; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2269; + this.state = 2290; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2267; + this.state = 2288; this.match(ImpalaSqlParser.KW_ESCAPE); - this.state = 2268; + this.state = 2289; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10514,7 +10626,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2271; + this.state = 2292; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 163)) { this.errorHandler.recoverInline(this); @@ -10523,7 +10635,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2272; + this.state = 2293; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10531,19 +10643,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2273; + this.state = 2294; this.match(ImpalaSqlParser.KW_IS); - this.state = 2275; + this.state = 2296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2274; + this.state = 2295; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2277; + this.state = 2298; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 133 || _la === 194 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -10558,23 +10670,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2278; + this.state = 2299; this.match(ImpalaSqlParser.KW_IS); - this.state = 2280; + this.state = 2301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2279; + this.state = 2300; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2282; + this.state = 2303; this.match(ImpalaSqlParser.KW_DISTINCT); - this.state = 2283; + this.state = 2304; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2284; + this.state = 2305; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10606,23 +10718,23 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 332; - this.enterRecursionRule(localContext, 332, ImpalaSqlParser.RULE_valueExpression, _p); + let _startState = 336; + this.enterRecursionRule(localContext, 336, ImpalaSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2291; + this.state = 2312; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2288; + this.state = 2309; this.primaryExpression(0); } break; @@ -10631,7 +10743,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2289; + this.state = 2310; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10641,15 +10753,15 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2290; + this.state = 2311; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2304; + this.state = 2325; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10657,19 +10769,19 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2302; + this.state = 2323; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2293; + this.state = 2314; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2294; + this.state = 2315; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 7) !== 0))) { @@ -10679,7 +10791,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2295; + this.state = 2316; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10688,11 +10800,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2296; + this.state = 2317; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2297; + this.state = 2318; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10702,7 +10814,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2298; + this.state = 2319; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10711,22 +10823,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2299; + this.state = 2320; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2300; + this.state = 2321; this.match(ImpalaSqlParser.CONCAT); - this.state = 2301; + this.state = 2322; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2306; + this.state = 2327; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); } } } @@ -10746,99 +10858,99 @@ export class ImpalaSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 334, ImpalaSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 338, ImpalaSqlParser.RULE_functionCallExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2307; + this.state = 2328; this.functionNamePath(); - this.state = 2308; + this.state = 2329; this.match(ImpalaSqlParser.LPAREN); - this.state = 2320; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2310; + this.state = 2331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 2309; + this.state = 2330; this.setQuantifier(); } } - this.state = 2312; + this.state = 2333; this.expression(); - this.state = 2317; + this.state = 2338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2313; + this.state = 2334; this.match(ImpalaSqlParser.COMMA); - this.state = 2314; + this.state = 2335; this.expression(); } } - this.state = 2319; + this.state = 2340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2332; + this.state = 2353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2322; + this.state = 2343; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2323; + this.state = 2344; this.match(ImpalaSqlParser.KW_BY); - this.state = 2324; + this.state = 2345; this.sortItem(); - this.state = 2329; + this.state = 2350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2325; + this.state = 2346; this.match(ImpalaSqlParser.COMMA); - this.state = 2326; + this.state = 2347; this.sortItem(); } } - this.state = 2331; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2334; + this.state = 2355; this.match(ImpalaSqlParser.RPAREN); - this.state = 2336; + this.state = 2357; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2335; + this.state = 2356; this.filter(); } break; } - this.state = 2339; + this.state = 2360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2338; + this.state = 2359; this.over(); } break; @@ -10871,23 +10983,23 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 336; - this.enterRecursionRule(localContext, 336, ImpalaSqlParser.RULE_primaryExpression, _p); + let _startState = 340; + this.enterRecursionRule(localContext, 340, ImpalaSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2554; + this.state = 2575; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2342; + this.state = 2363; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -10896,7 +11008,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2343; + this.state = 2364; this.interval(); } break; @@ -10905,9 +11017,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2344; + this.state = 2365; this.identifier(); - this.state = 2345; + this.state = 2366; this.stringLiteral(); } break; @@ -10916,9 +11028,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2347; + this.state = 2368; this.match(ImpalaSqlParser.DOUBLE_PRECISION); - this.state = 2348; + this.state = 2369; this.stringLiteral(); } break; @@ -10927,7 +11039,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2349; + this.state = 2370; this.number_(); } break; @@ -10936,7 +11048,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2350; + this.state = 2371; this.booleanValue(); } break; @@ -10945,7 +11057,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2351; + this.state = 2372; this.stringLiteral(); } break; @@ -10954,7 +11066,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2352; + this.state = 2373; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -10963,7 +11075,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2353; + this.state = 2374; this.match(ImpalaSqlParser.QUESTION); } break; @@ -10972,17 +11084,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2354; + this.state = 2375; this.match(ImpalaSqlParser.KW_POSITION); - this.state = 2355; + this.state = 2376; this.match(ImpalaSqlParser.LPAREN); - this.state = 2356; + this.state = 2377; this.valueExpression(0); - this.state = 2357; + this.state = 2378; this.match(ImpalaSqlParser.KW_IN); - this.state = 2358; + this.state = 2379; this.valueExpression(0); - this.state = 2359; + this.state = 2380; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10991,41 +11103,41 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2361; + this.state = 2382; this.match(ImpalaSqlParser.LPAREN); - this.state = 2362; + this.state = 2383; this.expression(); - this.state = 2365; + this.state = 2386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2363; + this.state = 2384; this.match(ImpalaSqlParser.KW_AS); - this.state = 2364; + this.state = 2385; this.type_(0); } } - this.state = 2375; + this.state = 2396; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 303, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 307, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2367; + this.state = 2388; this.match(ImpalaSqlParser.COMMA); - this.state = 2368; + this.state = 2389; this.expression(); - this.state = 2371; + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2369; + this.state = 2390; this.match(ImpalaSqlParser.KW_AS); - this.state = 2370; + this.state = 2391; this.type_(0); } } @@ -11033,11 +11145,11 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2377; + this.state = 2398; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 303, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 307, this.context); } - this.state = 2378; + this.state = 2399; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11046,29 +11158,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2380; + this.state = 2401; this.match(ImpalaSqlParser.KW_ROW); - this.state = 2381; + this.state = 2402; this.match(ImpalaSqlParser.LPAREN); - this.state = 2382; + this.state = 2403; this.expression(); - this.state = 2387; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2383; + this.state = 2404; this.match(ImpalaSqlParser.COMMA); - this.state = 2384; + this.state = 2405; this.expression(); } } - this.state = 2389; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2390; + this.state = 2411; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11077,30 +11189,30 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2392; + this.state = 2413; this.functionNamePath(); - this.state = 2393; + this.state = 2414; this.match(ImpalaSqlParser.LPAREN); - this.state = 2394; + this.state = 2415; this.match(ImpalaSqlParser.ASTERISK); - this.state = 2395; + this.state = 2416; this.match(ImpalaSqlParser.RPAREN); - this.state = 2397; + this.state = 2418; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2396; + this.state = 2417; this.filter(); } break; } - this.state = 2400; + this.state = 2421; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2399; + this.state = 2420; this.over(); } break; @@ -11112,7 +11224,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2402; + this.state = 2423; this.functionCallExpression(); } break; @@ -11121,11 +11233,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2403; + this.state = 2424; this.identifier(); - this.state = 2404; + this.state = 2425; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2405; + this.state = 2426; this.expression(); } break; @@ -11134,39 +11246,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2407; + this.state = 2428; this.match(ImpalaSqlParser.LPAREN); - this.state = 2416; + this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2408; + this.state = 2429; this.identifier(); - this.state = 2413; + this.state = 2434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2409; + this.state = 2430; this.match(ImpalaSqlParser.COMMA); - this.state = 2410; + this.state = 2431; this.identifier(); } } - this.state = 2415; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2418; + this.state = 2439; this.match(ImpalaSqlParser.RPAREN); - this.state = 2419; + this.state = 2440; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2420; + this.state = 2441; this.expression(); } break; @@ -11175,11 +11287,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2421; + this.state = 2442; this.match(ImpalaSqlParser.LPAREN); - this.state = 2422; + this.state = 2443; this.queryStatement(); - this.state = 2423; + this.state = 2444; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11188,13 +11300,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2425; + this.state = 2446; this.match(ImpalaSqlParser.KW_EXISTS); - this.state = 2426; + this.state = 2447; this.match(ImpalaSqlParser.LPAREN); - this.state = 2427; + this.state = 2448; this.queryStatement(); - this.state = 2428; + this.state = 2449; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11203,37 +11315,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2430; + this.state = 2451; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2431; + this.state = 2452; this.valueExpression(0); - this.state = 2433; + this.state = 2454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2432; + this.state = 2453; this.whenClause(); } } - this.state = 2435; + this.state = 2456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2439; + this.state = 2460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2437; + this.state = 2458; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2438; + this.state = 2459; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2441; + this.state = 2462; this.match(ImpalaSqlParser.KW_END); } break; @@ -11242,35 +11354,35 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2443; + this.state = 2464; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2445; + this.state = 2466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2444; + this.state = 2465; this.whenClause(); } } - this.state = 2447; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2451; + this.state = 2472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2449; + this.state = 2470; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2450; + this.state = 2471; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2453; + this.state = 2474; this.match(ImpalaSqlParser.KW_END); } break; @@ -11279,17 +11391,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2455; + this.state = 2476; this.match(ImpalaSqlParser.KW_CAST); - this.state = 2456; + this.state = 2477; this.match(ImpalaSqlParser.LPAREN); - this.state = 2457; + this.state = 2478; this.expression(); - this.state = 2458; + this.state = 2479; this.match(ImpalaSqlParser.KW_AS); - this.state = 2459; + this.state = 2480; this.type_(0); - this.state = 2460; + this.state = 2481; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11298,17 +11410,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2462; + this.state = 2483; this.match(ImpalaSqlParser.KW_TRY_CAST); - this.state = 2463; + this.state = 2484; this.match(ImpalaSqlParser.LPAREN); - this.state = 2464; + this.state = 2485; this.expression(); - this.state = 2465; + this.state = 2486; this.match(ImpalaSqlParser.KW_AS); - this.state = 2466; + this.state = 2487; this.type_(0); - this.state = 2467; + this.state = 2488; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11317,37 +11429,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2469; + this.state = 2490; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2470; + this.state = 2491; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2479; + this.state = 2500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2471; + this.state = 2492; this.expression(); - this.state = 2476; + this.state = 2497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2472; + this.state = 2493; this.match(ImpalaSqlParser.COMMA); - this.state = 2473; + this.state = 2494; this.expression(); } } - this.state = 2478; + this.state = 2499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2481; + this.state = 2502; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11356,7 +11468,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2482; + this.state = 2503; this.columnName(); } break; @@ -11365,7 +11477,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2483; + this.state = 2504; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11374,18 +11486,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2484; + this.state = 2505; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); - this.state = 2488; + this.state = 2509; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { case 1: { - this.state = 2485; + this.state = 2506; this.match(ImpalaSqlParser.LPAREN); - this.state = 2486; + this.state = 2507; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2487; + this.state = 2508; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11397,18 +11509,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2490; + this.state = 2511; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2494; + this.state = 2515; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2491; + this.state = 2512; this.match(ImpalaSqlParser.LPAREN); - this.state = 2492; + this.state = 2513; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2493; + this.state = 2514; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11420,18 +11532,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2496; + this.state = 2517; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); - this.state = 2500; + this.state = 2521; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { - this.state = 2497; + this.state = 2518; this.match(ImpalaSqlParser.LPAREN); - this.state = 2498; + this.state = 2519; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2499; + this.state = 2520; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11443,18 +11555,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2502; + this.state = 2523; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2506; + this.state = 2527; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { - this.state = 2503; + this.state = 2524; this.match(ImpalaSqlParser.LPAREN); - this.state = 2504; + this.state = 2525; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2505; + this.state = 2526; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11466,7 +11578,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2508; + this.state = 2529; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11475,7 +11587,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2509; + this.state = 2530; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11484,29 +11596,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2510; + this.state = 2531; this.match(ImpalaSqlParser.KW_SUBSTRING); - this.state = 2511; + this.state = 2532; this.match(ImpalaSqlParser.LPAREN); - this.state = 2512; + this.state = 2533; this.valueExpression(0); - this.state = 2513; + this.state = 2534; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2514; + this.state = 2535; this.valueExpression(0); - this.state = 2517; + this.state = 2538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2515; + this.state = 2536; this.match(ImpalaSqlParser.KW_FOR); - this.state = 2516; + this.state = 2537; this.valueExpression(0); } } - this.state = 2519; + this.state = 2540; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11515,25 +11627,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2521; + this.state = 2542; this.match(ImpalaSqlParser.KW_NORMALIZE); - this.state = 2522; + this.state = 2543; this.match(ImpalaSqlParser.LPAREN); - this.state = 2523; + this.state = 2544; this.valueExpression(0); - this.state = 2526; + this.state = 2547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 2524; + this.state = 2545; this.match(ImpalaSqlParser.COMMA); - this.state = 2525; + this.state = 2546; this.normalForm(); } } - this.state = 2528; + this.state = 2549; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11542,17 +11654,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2530; + this.state = 2551; this.match(ImpalaSqlParser.KW_EXTRACT); - this.state = 2531; + this.state = 2552; this.match(ImpalaSqlParser.LPAREN); - this.state = 2532; + this.state = 2553; this.identifier(); - this.state = 2533; + this.state = 2554; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2534; + this.state = 2555; this.valueExpression(0); - this.state = 2535; + this.state = 2556; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11561,11 +11673,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2537; + this.state = 2558; this.match(ImpalaSqlParser.LPAREN); - this.state = 2538; + this.state = 2559; this.expression(); - this.state = 2539; + this.state = 2560; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11574,45 +11686,45 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2541; + this.state = 2562; this.match(ImpalaSqlParser.KW_GROUPING); - this.state = 2542; + this.state = 2563; this.match(ImpalaSqlParser.LPAREN); - this.state = 2551; + this.state = 2572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2543; + this.state = 2564; this.qualifiedName(); - this.state = 2548; + this.state = 2569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2544; + this.state = 2565; this.match(ImpalaSqlParser.COMMA); - this.state = 2545; + this.state = 2566; this.qualifiedName(); } } - this.state = 2550; + this.state = 2571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2553; + this.state = 2574; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2566; + this.state = 2587; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 329, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11620,23 +11732,23 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2564; + this.state = 2585; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2556; + this.state = 2577; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2557; + this.state = 2578; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2558; + this.state = 2579; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2559; + this.state = 2580; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11645,22 +11757,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2561; + this.state = 2582; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2562; + this.state = 2583; this.match(ImpalaSqlParser.DOT); - this.state = 2563; + this.state = 2584; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2568; + this.state = 2589; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 329, this.context); } } } @@ -11680,16 +11792,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 338, ImpalaSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 342, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2575; + this.state = 2596; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2569; + this.state = 2590; this.match(ImpalaSqlParser.STRING); } break; @@ -11697,16 +11809,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2570; + this.state = 2591; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2573; + this.state = 2594; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2571; + this.state = 2592; this.match(ImpalaSqlParser.KW_UESCAPE); - this.state = 2572; + this.state = 2593; this.match(ImpalaSqlParser.STRING); } break; @@ -11733,12 +11845,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 340, ImpalaSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 344, ImpalaSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2577; + this.state = 2598; _la = this.tokenStream.LA(1); if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11765,12 +11877,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 342, ImpalaSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 346, ImpalaSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2579; + this.state = 2600; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 6 || _la === 181)) { this.errorHandler.recoverInline(this); @@ -11797,12 +11909,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 344, ImpalaSqlParser.RULE_booleanValue); + this.enterRule(localContext, 348, ImpalaSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2581; + this.state = 2602; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 194)) { this.errorHandler.recoverInline(this); @@ -11829,56 +11941,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 346, ImpalaSqlParser.RULE_interval); + this.enterRule(localContext, 350, ImpalaSqlParser.RULE_interval); try { - this.state = 2597; + this.state = 2618; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2583; + this.state = 2604; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2584; + this.state = 2605; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2585; + this.state = 2606; this.match(ImpalaSqlParser.LPAREN); - this.state = 2586; + this.state = 2607; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2587; + this.state = 2608; this.match(ImpalaSqlParser.RPAREN); - this.state = 2588; + this.state = 2609; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2589; + this.state = 2610; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2590; + this.state = 2611; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2591; + this.state = 2612; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2592; + this.state = 2613; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2593; + this.state = 2614; this.match(ImpalaSqlParser.LPAREN); - this.state = 2594; + this.state = 2615; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2595; + this.state = 2616; this.match(ImpalaSqlParser.RPAREN); - this.state = 2596; + this.state = 2617; this.intervalField(); } break; @@ -11900,12 +12012,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 348, ImpalaSqlParser.RULE_intervalField); + this.enterRule(localContext, 352, ImpalaSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2599; + this.state = 2620; _la = this.tokenStream.LA(1); if(!(_la === 48 || _la === 49 || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2147483651) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 7) !== 0) || _la === 172 || _la === 173 || _la === 217 || _la === 218)) { this.errorHandler.recoverInline(this); @@ -11932,12 +12044,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 350, ImpalaSqlParser.RULE_normalForm); + this.enterRule(localContext, 354, ImpalaSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2601; + this.state = 2622; _la = this.tokenStream.LA(1); if(!(((((_la - 127)) & ~0x1F) === 0 && ((1 << (_la - 127)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11974,120 +12086,120 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 352; - this.enterRecursionRule(localContext, 352, ImpalaSqlParser.RULE_type, _p); + let _startState = 356; + this.enterRecursionRule(localContext, 356, ImpalaSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2648; + this.state = 2669; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { case 1: { - this.state = 2604; + this.state = 2625; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2605; + this.state = 2626; this.match(ImpalaSqlParser.LT); - this.state = 2606; + this.state = 2627; this.type_(0); - this.state = 2607; + this.state = 2628; this.match(ImpalaSqlParser.GT); } break; case 2: { - this.state = 2609; + this.state = 2630; this.match(ImpalaSqlParser.KW_MAP); - this.state = 2610; + this.state = 2631; this.match(ImpalaSqlParser.LT); - this.state = 2611; + this.state = 2632; this.type_(0); - this.state = 2612; + this.state = 2633; this.match(ImpalaSqlParser.COMMA); - this.state = 2613; + this.state = 2634; this.type_(0); - this.state = 2614; + this.state = 2635; this.match(ImpalaSqlParser.GT); } break; case 3: { - this.state = 2616; + this.state = 2637; this.match(ImpalaSqlParser.KW_STRUCT); - this.state = 2617; + this.state = 2638; this.match(ImpalaSqlParser.LT); - this.state = 2618; + this.state = 2639; this.identifier(); - this.state = 2619; + this.state = 2640; this.type_(0); - this.state = 2626; + this.state = 2647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2620; + this.state = 2641; this.match(ImpalaSqlParser.COMMA); - this.state = 2621; + this.state = 2642; this.identifier(); - this.state = 2622; + this.state = 2643; this.type_(0); } } - this.state = 2628; + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2629; + this.state = 2650; this.match(ImpalaSqlParser.GT); } break; case 4: { - this.state = 2633; + this.state = 2654; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 2631; + this.state = 2652; this.baseType(); } break; case 2: { - this.state = 2632; + this.state = 2653; this.dataType(); } break; } - this.state = 2646; + this.state = 2667; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 2635; + this.state = 2656; this.match(ImpalaSqlParser.LPAREN); - this.state = 2636; + this.state = 2657; this.typeParameter(); - this.state = 2641; + this.state = 2662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2637; + this.state = 2658; this.match(ImpalaSqlParser.COMMA); - this.state = 2638; + this.state = 2659; this.typeParameter(); } } - this.state = 2643; + this.state = 2664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2644; + this.state = 2665; this.match(ImpalaSqlParser.RPAREN); } break; @@ -12096,9 +12208,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2654; + this.state = 2675; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 334, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 338, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -12109,18 +12221,18 @@ export class ImpalaSqlParser extends SQLParserBase { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2650; + this.state = 2671; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2651; + this.state = 2672; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2656; + this.state = 2677; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 334, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 338, this.context); } } } @@ -12140,12 +12252,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 354, ImpalaSqlParser.RULE_dataType); + this.enterRule(localContext, 358, ImpalaSqlParser.RULE_dataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2657; + this.state = 2678; _la = this.tokenStream.LA(1); if(!(_la === 8 || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 262143) !== 0))) { this.errorHandler.recoverInline(this); @@ -12172,15 +12284,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 356, ImpalaSqlParser.RULE_typeParameter); + this.enterRule(localContext, 360, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2661; + this.state = 2682; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2659; + this.state = 2680; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12245,7 +12357,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2660; + this.state = 2681; this.type_(0); } break; @@ -12269,29 +12381,29 @@ export class ImpalaSqlParser extends SQLParserBase { } public baseType(): BaseTypeContext { let localContext = new BaseTypeContext(this.context, this.state); - this.enterRule(localContext, 358, ImpalaSqlParser.RULE_baseType); + this.enterRule(localContext, 362, ImpalaSqlParser.RULE_baseType); try { - this.state = 2667; + this.state = 2688; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2663; + this.state = 2684; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2664; + this.state = 2685; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2665; + this.state = 2686; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -12335,7 +12447,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2666; + this.state = 2687; this.identifier(); } break; @@ -12359,17 +12471,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 360, ImpalaSqlParser.RULE_whenClause); + this.enterRule(localContext, 364, ImpalaSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2669; + this.state = 2690; this.match(ImpalaSqlParser.KW_WHEN); - this.state = 2670; + this.state = 2691; localContext._condition = this.expression(); - this.state = 2671; + this.state = 2692; this.match(ImpalaSqlParser.KW_THEN); - this.state = 2672; + this.state = 2693; localContext._result = this.expression(); } } @@ -12389,17 +12501,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 362, ImpalaSqlParser.RULE_filter); + this.enterRule(localContext, 366, ImpalaSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 2674; + this.state = 2695; this.match(ImpalaSqlParser.KW_FILTER); - this.state = 2675; + this.state = 2696; this.match(ImpalaSqlParser.LPAREN); - this.state = 2676; + this.state = 2697; this.whereClause(); - this.state = 2677; + this.state = 2698; this.match(ImpalaSqlParser.RPAREN); } } @@ -12419,28 +12531,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 364, ImpalaSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 368, ImpalaSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2679; + this.state = 2700; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2684; + this.state = 2705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2680; + this.state = 2701; this.match(ImpalaSqlParser.COMMA); - this.state = 2681; + this.state = 2702; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2686; + this.state = 2707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12462,70 +12574,70 @@ export class ImpalaSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 366, ImpalaSqlParser.RULE_over); + this.enterRule(localContext, 370, ImpalaSqlParser.RULE_over); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2687; + this.state = 2708; this.match(ImpalaSqlParser.KW_OVER); - this.state = 2688; + this.state = 2709; this.match(ImpalaSqlParser.LPAREN); - this.state = 2692; + this.state = 2713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 2689; + this.state = 2710; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 2690; + this.state = 2711; this.match(ImpalaSqlParser.KW_BY); - this.state = 2691; + this.state = 2712; this.partitionByClause(); } } - this.state = 2704; + this.state = 2725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2694; + this.state = 2715; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2695; + this.state = 2716; this.match(ImpalaSqlParser.KW_BY); - this.state = 2696; + this.state = 2717; this.sortItem(); - this.state = 2701; + this.state = 2722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2697; + this.state = 2718; this.match(ImpalaSqlParser.COMMA); - this.state = 2698; + this.state = 2719; this.sortItem(); } } - this.state = 2703; + this.state = 2724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2707; + this.state = 2728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154 || _la === 169) { { - this.state = 2706; + this.state = 2727; this.windowFrame(); } } - this.state = 2709; + this.state = 2730; this.match(ImpalaSqlParser.RPAREN); } } @@ -12545,56 +12657,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 368, ImpalaSqlParser.RULE_windowFrame); + this.enterRule(localContext, 372, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2727; + this.state = 2748; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2711; + this.state = 2732; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2712; + this.state = 2733; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2713; + this.state = 2734; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2714; + this.state = 2735; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2715; + this.state = 2736; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2716; + this.state = 2737; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2717; + this.state = 2738; localContext._start_ = this.frameBound(); - this.state = 2718; + this.state = 2739; this.match(ImpalaSqlParser.KW_AND); - this.state = 2719; + this.state = 2740; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2721; + this.state = 2742; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2722; + this.state = 2743; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2723; + this.state = 2744; localContext._start_ = this.frameBound(); - this.state = 2724; + this.state = 2745; this.match(ImpalaSqlParser.KW_AND); - this.state = 2725; + this.state = 2746; localContext._end = this.frameBound(); } break; @@ -12616,19 +12728,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 370, ImpalaSqlParser.RULE_frameBound); + this.enterRule(localContext, 374, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2738; + this.state = 2759; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2729; + this.state = 2750; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2730; + this.state = 2751; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12636,9 +12748,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2731; + this.state = 2752; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2732; + this.state = 2753; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12646,9 +12758,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2733; + this.state = 2754; this.match(ImpalaSqlParser.KW_CURRENT); - this.state = 2734; + this.state = 2755; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12656,9 +12768,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2735; + this.state = 2756; this.expression(); - this.state = 2736; + this.state = 2757; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 77 || _la === 149)) { @@ -12688,20 +12800,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 372, ImpalaSqlParser.RULE_pathElement); + this.enterRule(localContext, 376, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2745; + this.state = 2766; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2740; + this.state = 2761; this.identifier(); - this.state = 2741; + this.state = 2762; this.match(ImpalaSqlParser.DOT); - this.state = 2742; + this.state = 2763; this.identifier(); } break; @@ -12709,7 +12821,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2744; + this.state = 2765; this.identifier(); } break; @@ -12731,26 +12843,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 374, ImpalaSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 378, ImpalaSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2747; + this.state = 2768; this.pathElement(); - this.state = 2752; + this.state = 2773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2748; + this.state = 2769; this.match(ImpalaSqlParser.COMMA); - this.state = 2749; + this.state = 2770; this.pathElement(); } } - this.state = 2754; + this.state = 2775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12772,69 +12884,69 @@ export class ImpalaSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 376, ImpalaSqlParser.RULE_privilege); + this.enterRule(localContext, 380, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2768; + this.state = 2789; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2755; + this.state = 2776; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2756; + this.state = 2777; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2757; + this.state = 2778; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2758; + this.state = 2779; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2759; + this.state = 2780; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2760; + this.state = 2781; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2761; + this.state = 2782; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2766; + this.state = 2787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2762; + this.state = 2783; this.match(ImpalaSqlParser.LPAREN); - this.state = 2763; + this.state = 2784; localContext._name = this.identifier(); - this.state = 2764; + this.state = 2785; this.match(ImpalaSqlParser.RPAREN); } } @@ -12861,12 +12973,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public objectType(): ObjectTypeContext { let localContext = new ObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 378, ImpalaSqlParser.RULE_objectType); + this.enterRule(localContext, 382, ImpalaSqlParser.RULE_objectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2770; + this.state = 2791; _la = this.tokenStream.LA(1); if(!(_la === 46 || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 2147484673) !== 0))) { this.errorHandler.recoverInline(this); @@ -12893,31 +13005,109 @@ export class ImpalaSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 380, ImpalaSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 384, ImpalaSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2772; + this.state = 2793; this.identifier(); - this.state = 2777; + this.state = 2798; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 352, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2773; + this.state = 2794; this.match(ImpalaSqlParser.DOT); - this.state = 2774; + this.state = 2795; this.identifier(); } } } - this.state = 2779; + this.state = 2800; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 352, this.context); + } } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public qualifiedNameAllowEmpty(): QualifiedNameAllowEmptyContext { + let localContext = new QualifiedNameAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 386, ImpalaSqlParser.RULE_qualifiedNameAllowEmpty); + try { + let alternative: number; + this.state = 2817; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2801; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 2807; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { + case 1: + { + this.state = 2802; + this.identifier(); + this.state = 2803; + this.match(ImpalaSqlParser.DOT); + this.state = 2804; + this.emptyColumn(); + } + break; + case 2: + { + this.state = 2806; + this.emptyColumn(); + } + break; + } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2809; + this.identifier(); + this.state = 2814; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 354, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2810; + this.match(ImpalaSqlParser.DOT); + this.state = 2811; + this.identifier(); + } + } + } + this.state = 2816; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 354, this.context); + } + } + break; } } catch (re) { @@ -12936,18 +13126,18 @@ export class ImpalaSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 382, ImpalaSqlParser.RULE_principal); + this.enterRule(localContext, 388, ImpalaSqlParser.RULE_principal); try { - this.state = 2786; + this.state = 2825; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2780; + this.state = 2819; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 2781; + this.state = 2820; this.identifier(); } break; @@ -12955,9 +13145,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2782; + this.state = 2821; this.match(ImpalaSqlParser.KW_USER); - this.state = 2783; + this.state = 2822; this.identifier(); } break; @@ -12965,9 +13155,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2784; + this.state = 2823; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 2785; + this.state = 2824; this.identifier(); } break; @@ -12991,16 +13181,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 384, ImpalaSqlParser.RULE_identifier); + this.enterRule(localContext, 390, ImpalaSqlParser.RULE_identifier); try { - this.state = 2793; + this.state = 2832; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2788; + this.state = 2827; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -13008,7 +13198,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2789; + this.state = 2828; this.match(ImpalaSqlParser.STRING); } break; @@ -13049,7 +13239,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2790; + this.state = 2829; this.nonReserved(); } break; @@ -13057,7 +13247,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2791; + this.state = 2830; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -13065,7 +13255,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2792; + this.state = 2831; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -13089,27 +13279,27 @@ export class ImpalaSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 386, ImpalaSqlParser.RULE_number); + this.enterRule(localContext, 392, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2807; + this.state = 2846; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2796; + this.state = 2835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2795; + this.state = 2834; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2798; + this.state = 2837; this.match(ImpalaSqlParser.DECIMAL_VALUE); } break; @@ -13117,17 +13307,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2800; + this.state = 2839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2799; + this.state = 2838; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2802; + this.state = 2841; this.match(ImpalaSqlParser.DOUBLE_VALUE); } break; @@ -13135,17 +13325,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2804; + this.state = 2843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2803; + this.state = 2842; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2806; + this.state = 2845; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -13167,12 +13357,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 388, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 394, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2809; + this.state = 2848; _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 1085443) !== 0) || _la === 68 || _la === 91 || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 1281) !== 0) || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 67125377) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 2097409) !== 0))) { this.errorHandler.recoverInline(this); @@ -13199,12 +13389,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 390, ImpalaSqlParser.RULE_nonReserved); + this.enterRule(localContext, 396, ImpalaSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2811; + this.state = 2850; _la = this.tokenStream.LA(1); if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0))) { this.errorHandler.recoverInline(this); @@ -13232,20 +13422,24 @@ export class ImpalaSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 96: + case 97: return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); - case 133: + case 99: + return this.columnNameAllowEmpty_sempred(localContext as ColumnNameAllowEmptyContext, predIndex); + case 135: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 150: + case 152: return this.relation_sempred(localContext as RelationContext, predIndex); - case 164: - return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); case 166: - return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); + return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); case 168: + return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); + case 170: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 176: + case 178: return this.type_sempred(localContext as TypeContext, predIndex); + case 193: + return this.qualifiedNameAllowEmpty_sempred(localContext as QualifiedNameAllowEmptyContext, predIndex); } return true; } @@ -13256,61 +13450,75 @@ export class ImpalaSqlParser extends SQLParserBase { } return true; } - private queryTerm_sempred(localContext: QueryTermContext | null, predIndex: number): boolean { + private columnNameAllowEmpty_sempred(localContext: ColumnNameAllowEmptyContext | null, predIndex: number): boolean { switch (predIndex) { case 1: - return this.precpred(this.context, 2); + return this.shouldMatchEmpty(); + } + return true; + } + private queryTerm_sempred(localContext: QueryTermContext | null, predIndex: number): boolean { + switch (predIndex) { case 2: + return this.precpred(this.context, 2); + case 3: return this.precpred(this.context, 1); } return true; } private relation_sempred(localContext: RelationContext | null, predIndex: number): boolean { switch (predIndex) { - case 3: + case 4: return this.precpred(this.context, 2); } return true; } private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 4: - return this.precpred(this.context, 2); case 5: + return this.precpred(this.context, 2); + case 6: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 6: - return this.precpred(this.context, 3); case 7: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 8: + return this.precpred(this.context, 2); + case 9: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 9: - return this.precpred(this.context, 15); case 10: + return this.precpred(this.context, 15); + case 11: return this.precpred(this.context, 13); } return true; } private type_sempred(localContext: TypeContext | null, predIndex: number): boolean { switch (predIndex) { - case 11: + case 12: return this.precpred(this.context, 5); } return true; } + private qualifiedNameAllowEmpty_sempred(localContext: QualifiedNameAllowEmptyContext | null, predIndex: number): boolean { + switch (predIndex) { + case 13: + return this.shouldMatchEmpty(); + } + return true; + } public static readonly _serializedATN: number[] = [ - 4,1,289,2814,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,289,2853,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, @@ -13342,259 +13550,264 @@ export class ImpalaSqlParser extends SQLParserBase { 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,1,0,5,0,394,8,0, - 10,0,12,0,397,9,0,1,0,1,0,1,1,1,1,3,1,403,8,1,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,3,2,427,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3, - 4,440,8,4,1,5,1,5,3,5,444,8,5,1,5,1,5,3,5,448,8,5,1,5,1,5,1,5,1, - 5,1,5,5,5,455,8,5,10,5,12,5,458,9,5,1,5,1,5,3,5,462,8,5,1,5,1,5, - 3,5,466,8,5,1,5,1,5,1,5,1,5,3,5,472,8,5,3,5,474,8,5,1,5,1,5,1,5, - 3,5,479,8,5,1,6,1,6,3,6,483,8,6,1,6,1,6,3,6,487,8,6,1,6,1,6,1,6, - 1,6,1,6,3,6,494,8,6,1,6,1,6,1,6,3,6,499,8,6,1,6,1,6,1,7,1,7,3,7, - 505,8,7,1,7,1,7,3,7,509,8,7,1,7,1,7,1,7,1,7,1,7,5,7,516,8,7,10,7, - 12,7,519,9,7,1,7,1,7,1,7,1,7,3,7,525,8,7,1,7,1,7,3,7,529,8,7,1,7, - 1,7,1,7,3,7,534,8,7,3,7,536,8,7,1,7,1,7,1,7,3,7,541,8,7,1,7,3,7, - 544,8,7,1,7,1,7,1,7,1,7,1,7,3,7,551,8,7,1,7,1,7,3,7,555,8,7,1,8, - 1,8,1,8,3,8,560,8,8,1,8,1,8,3,8,564,8,8,1,8,3,8,567,8,8,1,8,1,8, - 3,8,571,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,579,8,9,1,9,1,9,3,9,583, - 8,9,1,9,1,9,3,9,587,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,595,8, - 11,1,11,1,11,3,11,599,8,11,1,11,1,11,1,11,1,11,1,11,5,11,606,8,11, - 10,11,12,11,609,9,11,3,11,611,8,11,1,11,3,11,614,8,11,1,11,1,11, - 1,11,1,11,3,11,620,8,11,1,11,1,11,1,11,1,11,1,11,3,11,627,8,11,1, - 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,638,8,11,1,11,1, - 11,1,11,3,11,643,8,11,1,11,1,11,1,11,3,11,648,8,11,1,11,1,11,1,11, - 3,11,653,8,11,1,12,1,12,1,12,3,12,658,8,12,1,12,1,12,1,12,1,12,1, - 12,5,12,665,8,12,10,12,12,12,668,9,12,3,12,670,8,12,1,12,3,12,673, - 8,12,1,12,1,12,3,12,677,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,3,13,703,8,13,1,14,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,15,1,15,1,15, - 1,15,1,15,1,15,1,15,1,15,3,15,729,8,15,1,15,1,15,1,16,1,16,1,16, - 1,16,1,16,3,16,738,8,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16, - 3,16,748,8,16,1,16,3,16,751,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1, - 17,1,18,1,18,1,18,1,18,1,18,3,18,765,8,18,1,18,1,18,1,19,1,19,1, - 19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,783, - 8,20,3,20,785,8,20,1,20,1,20,1,20,1,20,1,20,5,20,792,8,20,10,20, - 12,20,795,9,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,805, - 8,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,3,22,814,8,22,1,22,1,22, - 1,22,1,22,1,22,3,22,821,8,22,1,22,1,22,3,22,825,8,22,1,23,1,23,1, - 23,1,23,1,23,3,23,832,8,23,1,23,1,23,1,23,1,23,3,23,838,8,23,1,23, - 3,23,841,8,23,1,23,1,23,1,23,3,23,846,8,23,1,24,1,24,1,24,1,24,1, - 24,3,24,853,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1, - 24,1,24,1,24,3,24,867,8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1, - 26,1,26,1,26,1,26,3,26,880,8,26,1,26,1,26,1,26,3,26,885,8,26,1,26, - 1,26,1,26,3,26,890,8,26,1,27,1,27,1,27,1,27,3,27,896,8,27,1,27,1, - 27,1,27,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,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1, - 31,1,31,1,31,1,31,1,31,1,32,1,32,3,32,932,8,32,1,32,3,32,935,8,32, - 1,32,1,32,1,33,1,33,3,33,941,8,33,1,33,3,33,944,8,33,1,33,1,33,1, - 34,1,34,3,34,950,8,34,1,35,1,35,1,35,1,35,3,35,956,8,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,968,8,35,3,35,970,8, - 35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,981,8,36,1, - 37,1,37,1,37,1,37,1,37,1,37,3,37,989,8,37,1,38,1,38,1,38,3,38,994, - 8,38,1,38,1,38,3,38,998,8,38,1,39,1,39,1,39,3,39,1003,8,39,1,39, - 1,39,1,40,1,40,1,40,3,40,1010,8,40,1,40,1,40,3,40,1014,8,40,1,41, - 1,41,3,41,1018,8,41,1,41,1,41,1,41,1,41,3,41,1024,8,41,1,42,1,42, - 3,42,1028,8,42,1,42,1,42,3,42,1032,8,42,1,42,1,42,1,42,1,42,1,42, - 5,42,1039,8,42,10,42,12,42,1042,9,42,3,42,1044,8,42,1,42,3,42,1047, - 8,42,1,43,1,43,1,43,1,43,1,44,1,44,3,44,1055,8,44,1,45,1,45,1,45, - 1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,3,46,1069,8,46,1,46, - 1,46,1,46,1,47,1,47,3,47,1076,8,47,1,48,1,48,1,48,1,48,1,48,1,48, - 1,48,1,49,1,49,1,49,1,49,3,49,1089,8,49,1,49,1,49,1,49,1,49,3,49, - 1095,8,49,1,49,1,49,1,49,3,49,1100,8,49,1,49,3,49,1103,8,49,1,50, - 3,50,1106,8,50,1,50,1,50,1,50,3,50,1111,8,50,1,50,1,50,3,50,1115, - 8,50,1,50,1,50,1,50,1,50,1,50,5,50,1122,8,50,10,50,12,50,1125,9, - 50,1,50,1,50,3,50,1129,8,50,1,50,1,50,1,51,1,51,3,51,1135,8,51,1, - 52,1,52,3,52,1139,8,52,1,52,1,52,3,52,1143,8,52,1,53,1,53,1,53,3, - 53,1148,8,53,1,53,3,53,1151,8,53,1,53,1,53,1,53,1,53,5,53,1157,8, - 53,10,53,12,53,1160,9,53,3,53,1162,8,53,1,53,3,53,1165,8,53,1,54, - 1,54,1,54,1,54,1,54,1,54,1,54,1,54,5,54,1175,8,54,10,54,12,54,1178, - 9,54,3,54,1180,8,54,1,54,3,54,1183,8,54,1,55,1,55,1,55,3,55,1188, - 8,55,1,55,1,55,3,55,1192,8,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1208,8,56,1,57,1,57,1,57, - 3,57,1213,8,57,1,57,1,57,1,57,5,57,1218,8,57,10,57,12,57,1221,9, - 57,3,57,1223,8,57,1,58,1,58,1,58,1,58,3,58,1229,8,58,1,58,3,58,1232, - 8,58,1,58,1,58,1,58,5,58,1237,8,58,10,58,12,58,1240,9,58,3,58,1242, - 8,58,1,59,1,59,3,59,1246,8,59,1,59,1,59,1,59,3,59,1251,8,59,1,59, - 3,59,1254,8,59,1,59,1,59,1,59,5,59,1259,8,59,10,59,12,59,1262,9, - 59,3,59,1264,8,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1, - 61,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,3, - 64,1288,8,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1, - 65,1,65,3,65,1302,8,65,1,65,1,65,3,65,1306,8,65,1,66,1,66,3,66,1310, - 8,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68, - 1,68,1,68,1,68,1,68,1,68,1,68,3,68,1330,8,68,3,68,1332,8,68,3,68, - 1334,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69,1343,8,69,3,69, - 1345,8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,1354,8,70,3,70, - 1356,8,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,1365,8,71,3,71, - 1367,8,71,1,72,1,72,1,72,3,72,1372,8,72,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,3,73,1381,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74, - 1390,8,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,1399,8,75,1,76, - 1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,3,77,1410,8,77,1,78,1,78, - 1,78,1,78,3,78,1416,8,78,1,78,1,78,1,78,3,78,1421,8,78,1,78,3,78, - 1424,8,78,1,78,1,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80, - 3,80,1437,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1447, - 8,80,1,80,1,80,3,80,1451,8,80,1,81,1,81,1,81,3,81,1456,8,81,1,82, - 1,82,1,82,1,82,1,82,1,82,1,82,5,82,1465,8,82,10,82,12,82,1468,9, - 82,1,82,1,82,3,82,1472,8,82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1, - 85,1,85,1,85,1,86,1,86,1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1, - 90,1,90,1,91,1,91,1,92,1,92,1,93,1,93,1,93,5,93,1503,8,93,10,93, - 12,93,1506,9,93,1,94,1,94,1,94,5,94,1511,8,94,10,94,12,94,1514,9, - 94,1,95,1,95,3,95,1518,8,95,1,96,1,96,3,96,1522,8,96,1,97,1,97,1, - 98,1,98,3,98,1528,8,98,1,99,1,99,1,99,3,99,1533,8,99,1,99,3,99,1536, - 8,99,1,99,1,99,1,99,3,99,1541,8,99,1,99,1,99,1,99,3,99,1546,8,99, - 1,99,1,99,1,99,3,99,1551,8,99,1,99,1,99,3,99,1555,8,99,1,99,1,99, - 1,99,1,99,1,99,1,99,1,99,3,99,1564,8,99,1,99,3,99,1567,8,99,1,99, - 1,99,3,99,1571,8,99,1,100,1,100,1,100,5,100,1576,8,100,10,100,12, - 100,1579,9,100,1,101,1,101,1,101,1,101,1,102,1,102,3,102,1587,8, - 102,1,102,1,102,3,102,1591,8,102,5,102,1593,8,102,10,102,12,102, - 1596,9,102,1,102,1,102,1,103,1,103,3,103,1602,8,103,1,104,3,104, - 1605,8,104,1,104,1,104,1,105,1,105,1,105,1,105,5,105,1613,8,105, - 10,105,12,105,1616,9,105,1,106,1,106,1,106,1,106,3,106,1622,8,106, - 1,106,1,106,1,106,3,106,1627,8,106,1,106,1,106,1,106,3,106,1632, - 8,106,1,106,1,106,1,106,3,106,1637,8,106,1,106,1,106,5,106,1641, - 8,106,10,106,12,106,1644,9,106,3,106,1646,8,106,1,107,1,107,1,107, - 1,107,1,107,1,107,1,107,3,107,1655,8,107,1,107,3,107,1658,8,107, - 1,107,3,107,1661,8,107,1,108,1,108,1,108,1,108,3,108,1667,8,108, - 1,109,1,109,1,109,3,109,1672,8,109,1,110,1,110,1,111,1,111,1,111, - 1,111,5,111,1680,8,111,10,111,12,111,1683,9,111,3,111,1685,8,111, - 1,111,3,111,1688,8,111,1,111,1,111,3,111,1692,8,111,1,112,1,112, - 1,112,1,113,1,113,1,113,5,113,1700,8,113,10,113,12,113,1703,9,113, - 3,113,1705,8,113,1,114,1,114,1,114,1,114,3,114,1711,8,114,1,114, - 1,114,5,114,1715,8,114,10,114,12,114,1718,9,114,3,114,1720,8,114, - 1,115,3,115,1723,8,115,1,115,1,115,3,115,1727,8,115,1,116,1,116, - 1,116,1,116,1,116,1,116,1,116,1,116,3,116,1737,8,116,1,117,1,117, - 1,118,1,118,1,119,1,119,1,119,5,119,1746,8,119,10,119,12,119,1749, - 9,119,1,119,1,119,3,119,1753,8,119,1,119,3,119,1756,8,119,1,120, - 1,120,3,120,1760,8,120,1,120,1,120,1,120,1,121,1,121,3,121,1767, - 8,121,1,121,1,121,1,121,1,121,1,121,1,121,5,121,1775,8,121,10,121, - 12,121,1778,9,121,1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,122, - 1,122,3,122,1789,8,122,1,122,1,122,1,122,1,122,3,122,1795,8,122, - 3,122,1797,8,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123, - 1806,8,123,1,123,3,123,1809,8,123,1,124,1,124,1,124,1,124,1,124, - 3,124,1816,8,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 3,125,1826,8,125,1,126,1,126,1,126,1,126,3,126,1832,8,126,1,127, - 1,127,1,127,1,127,5,127,1838,8,127,10,127,12,127,1841,9,127,1,127, - 1,127,1,128,1,128,1,128,1,128,5,128,1849,8,128,10,128,12,128,1852, - 9,128,1,128,1,128,1,129,1,129,1,129,5,129,1859,8,129,10,129,12,129, - 1862,9,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130, - 1872,8,130,3,130,1874,8,130,1,130,1,130,1,130,1,130,3,130,1880,8, - 130,1,131,1,131,1,131,3,131,1885,8,131,1,132,1,132,1,132,1,132,1, - 132,1,132,5,132,1893,8,132,10,132,12,132,1896,9,132,3,132,1898,8, - 132,1,132,1,132,1,132,1,132,3,132,1904,8,132,3,132,1906,8,132,1, - 133,1,133,1,133,1,133,1,133,1,133,3,133,1914,8,133,1,133,1,133,1, - 133,1,133,3,133,1920,8,133,1,133,5,133,1923,8,133,10,133,12,133, - 1926,9,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134,1935, - 8,134,10,134,12,134,1938,9,134,1,134,1,134,1,134,1,134,3,134,1944, - 8,134,1,135,1,135,3,135,1948,8,135,1,135,1,135,3,135,1952,8,135, - 1,136,1,136,3,136,1956,8,136,1,136,3,136,1959,8,136,1,136,1,136, - 1,136,1,136,1,136,5,136,1966,8,136,10,136,12,136,1969,9,136,3,136, - 1971,8,136,1,136,3,136,1974,8,136,1,136,1,136,1,136,3,136,1979,8, - 136,1,136,3,136,1982,8,136,1,137,1,137,1,137,5,137,1987,8,137,10, - 137,12,137,1990,9,137,1,138,1,138,1,138,1,139,1,139,1,139,1,140, - 3,140,1999,8,140,1,140,1,140,1,140,5,140,2004,8,140,10,140,12,140, - 2007,9,140,1,141,1,141,1,142,1,142,1,142,1,142,5,142,2015,8,142, - 10,142,12,142,2018,9,142,3,142,2020,8,142,1,142,1,142,3,142,2024, - 8,142,1,143,1,143,3,143,2028,8,143,1,143,1,143,1,143,1,144,1,144, - 1,145,1,145,3,145,2037,8,145,1,145,1,145,3,145,2041,8,145,1,145, - 3,145,2044,8,145,1,146,3,146,2047,8,146,1,146,1,146,1,147,1,147, - 1,148,1,148,1,149,1,149,1,149,3,149,2058,8,149,1,149,1,149,1,150, - 1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, - 3,150,2074,8,150,5,150,2076,8,150,10,150,12,150,2079,9,150,1,151, - 3,151,2082,8,151,1,151,1,151,3,151,2086,8,151,1,151,1,151,3,151, - 2090,8,151,1,151,1,151,3,151,2094,8,151,1,151,1,151,3,151,2098,8, - 151,1,151,1,151,3,151,2102,8,151,1,151,1,151,1,151,1,151,1,151,1, - 151,1,151,1,151,3,151,2112,8,151,1,152,1,152,1,152,1,152,1,152,1, - 152,1,152,5,152,2121,8,152,10,152,12,152,2124,9,152,1,152,1,152, - 3,152,2128,8,152,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, - 1,153,1,153,1,153,3,153,2141,8,153,3,153,2143,8,153,1,154,1,154, - 1,155,1,155,3,155,2149,8,155,1,155,1,155,3,155,2153,8,155,3,155, - 2155,8,155,1,156,1,156,1,156,1,156,5,156,2161,8,156,10,156,12,156, - 2164,9,156,1,156,1,156,1,157,1,157,1,157,1,157,3,157,2172,8,157, - 1,158,3,158,2175,8,158,1,158,1,158,1,159,1,159,1,159,1,159,1,160, - 1,160,1,160,1,160,1,160,5,160,2188,8,160,10,160,12,160,2191,9,160, - 1,160,1,160,1,160,3,160,2196,8,160,1,161,1,161,1,161,1,161,1,162, - 1,162,3,162,2204,8,162,1,163,1,163,1,164,1,164,1,164,3,164,2211, - 8,164,1,164,1,164,3,164,2215,8,164,1,164,1,164,1,164,1,164,1,164, - 1,164,5,164,2223,8,164,10,164,12,164,2226,9,164,1,165,1,165,1,165, - 1,165,1,165,1,165,1,165,1,165,3,165,2236,8,165,1,165,1,165,1,165, - 1,165,1,165,1,165,3,165,2244,8,165,1,165,1,165,1,165,1,165,1,165, - 5,165,2251,8,165,10,165,12,165,2254,9,165,1,165,1,165,1,165,3,165, - 2259,8,165,1,165,1,165,1,165,3,165,2264,8,165,1,165,1,165,1,165, - 1,165,3,165,2270,8,165,1,165,1,165,1,165,1,165,3,165,2276,8,165, - 1,165,1,165,1,165,3,165,2281,8,165,1,165,1,165,1,165,3,165,2286, - 8,165,1,166,1,166,1,166,1,166,3,166,2292,8,166,1,166,1,166,1,166, - 1,166,1,166,1,166,1,166,1,166,1,166,5,166,2303,8,166,10,166,12,166, - 2306,9,166,1,167,1,167,1,167,3,167,2311,8,167,1,167,1,167,1,167, - 5,167,2316,8,167,10,167,12,167,2319,9,167,3,167,2321,8,167,1,167, - 1,167,1,167,1,167,1,167,5,167,2328,8,167,10,167,12,167,2331,9,167, - 3,167,2333,8,167,1,167,1,167,3,167,2337,8,167,1,167,3,167,2340,8, - 167,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,3,168,2366,8,168,1,168,1,168,1,168,1,168,3,168, - 2372,8,168,5,168,2374,8,168,10,168,12,168,2377,9,168,1,168,1,168, - 1,168,1,168,1,168,1,168,1,168,5,168,2386,8,168,10,168,12,168,2389, - 9,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,3,168,2398,8,168, - 1,168,3,168,2401,8,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,5,168,2412,8,168,10,168,12,168,2415,9,168,3,168,2417, - 8,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,1,168,1,168,4,168,2434,8,168,11,168,12,168,2435, - 1,168,1,168,3,168,2440,8,168,1,168,1,168,1,168,1,168,4,168,2446, - 8,168,11,168,12,168,2447,1,168,1,168,3,168,2452,8,168,1,168,1,168, - 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,5,168,2475,8,168, - 10,168,12,168,2478,9,168,3,168,2480,8,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,3,168,2489,8,168,1,168,1,168,1,168,1,168,3,168, - 2495,8,168,1,168,1,168,1,168,1,168,3,168,2501,8,168,1,168,1,168, - 1,168,1,168,3,168,2507,8,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,3,168,2518,8,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,3,168,2527,8,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,5,168,2547,8,168,10,168,12,168,2550,9,168,3,168,2552,8,168, - 1,168,3,168,2555,8,168,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,5,168,2565,8,168,10,168,12,168,2568,9,168,1,169,1,169,1,169, - 1,169,3,169,2574,8,169,3,169,2576,8,169,1,170,1,170,1,171,1,171, - 1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, - 1,173,1,173,1,173,1,173,1,173,3,173,2598,8,173,1,174,1,174,1,175, - 1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, - 5,176,2625,8,176,10,176,12,176,2628,9,176,1,176,1,176,1,176,1,176, - 3,176,2634,8,176,1,176,1,176,1,176,1,176,5,176,2640,8,176,10,176, - 12,176,2643,9,176,1,176,1,176,3,176,2647,8,176,3,176,2649,8,176, - 1,176,1,176,5,176,2653,8,176,10,176,12,176,2656,9,176,1,177,1,177, - 1,178,1,178,3,178,2662,8,178,1,179,1,179,1,179,1,179,3,179,2668, - 8,179,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,5,182,2683,8,182,10,182,12,182,2686,9,182,1,183, - 1,183,1,183,1,183,1,183,3,183,2693,8,183,1,183,1,183,1,183,1,183, - 1,183,5,183,2700,8,183,10,183,12,183,2703,9,183,3,183,2705,8,183, - 1,183,3,183,2708,8,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184, - 1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184, - 3,184,2728,8,184,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, - 1,185,3,185,2739,8,185,1,186,1,186,1,186,1,186,1,186,3,186,2746, - 8,186,1,187,1,187,1,187,5,187,2751,8,187,10,187,12,187,2754,9,187, - 1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188, - 3,188,2767,8,188,3,188,2769,8,188,1,189,1,189,1,190,1,190,1,190, - 5,190,2776,8,190,10,190,12,190,2779,9,190,1,191,1,191,1,191,1,191, - 1,191,1,191,3,191,2787,8,191,1,192,1,192,1,192,1,192,1,192,3,192, - 2794,8,192,1,193,3,193,2797,8,193,1,193,1,193,3,193,2801,8,193,1, - 193,1,193,3,193,2805,8,193,1,193,3,193,2808,8,193,1,194,1,194,1, - 195,1,195,1,195,10,793,1466,1642,1681,1701,1716,1747,1776,1850,2375, - 6,266,300,328,332,336,352,196,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,120,122,124,126,128,130,132,134,136,138,140, - 142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172, - 174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204, - 206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236, - 238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268, - 270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300, - 302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332, - 334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364, - 366,368,370,372,374,376,378,380,382,384,386,388,390,0,33,2,0,46, - 46,170,170,2,0,166,166,204,204,2,0,176,176,202,202,2,0,69,69,80, - 80,2,0,27,27,159,159,2,0,103,103,144,144,2,0,47,47,171,171,2,0,3, - 3,12,12,3,0,87,87,166,166,204,204,2,0,178,178,209,209,1,0,245,248, - 2,0,147,147,219,223,2,0,65,65,95,95,2,0,64,64,200,200,2,0,10,10, - 55,55,2,0,75,75,112,112,2,0,2,2,57,57,2,0,14,14,185,185,3,0,106, + 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,1,0,5,0,400,8,0,10,0,12,0,403,9,0,1,0,1,0,1,1, + 1,1,3,1,409,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,433,8,2,1,3,1,3,1,3, + 1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,446,8,4,1,5,1,5,3,5,450,8,5, + 1,5,1,5,3,5,454,8,5,1,5,1,5,1,5,1,5,1,5,5,5,461,8,5,10,5,12,5,464, + 9,5,1,5,1,5,3,5,468,8,5,1,5,1,5,3,5,472,8,5,1,5,1,5,1,5,1,5,3,5, + 478,8,5,3,5,480,8,5,1,5,1,5,1,5,3,5,485,8,5,1,6,1,6,3,6,489,8,6, + 1,6,1,6,3,6,493,8,6,1,6,1,6,1,6,1,6,1,6,3,6,500,8,6,1,6,1,6,1,6, + 3,6,505,8,6,1,6,1,6,1,7,1,7,3,7,511,8,7,1,7,1,7,3,7,515,8,7,1,7, + 1,7,1,7,1,7,1,7,5,7,522,8,7,10,7,12,7,525,9,7,1,7,1,7,1,7,1,7,3, + 7,531,8,7,1,7,1,7,3,7,535,8,7,1,7,1,7,1,7,3,7,540,8,7,3,7,542,8, + 7,1,7,1,7,1,7,3,7,547,8,7,1,7,3,7,550,8,7,1,7,1,7,1,7,1,7,1,7,3, + 7,557,8,7,1,7,1,7,3,7,561,8,7,1,8,1,8,1,8,3,8,566,8,8,1,8,1,8,3, + 8,570,8,8,1,8,3,8,573,8,8,1,8,1,8,3,8,577,8,8,1,8,1,8,1,8,1,9,1, + 9,1,9,3,9,585,8,9,1,9,1,9,3,9,589,8,9,1,9,1,9,3,9,593,8,9,1,10,1, + 10,1,10,1,10,1,11,1,11,3,11,601,8,11,1,11,1,11,3,11,605,8,11,1,11, + 1,11,1,11,1,11,1,11,5,11,612,8,11,10,11,12,11,615,9,11,3,11,617, + 8,11,1,11,3,11,620,8,11,1,11,1,11,1,11,1,11,3,11,626,8,11,1,11,1, + 11,1,11,1,11,1,11,3,11,633,8,11,1,11,1,11,1,11,1,11,1,11,1,11,1, + 11,1,11,1,11,3,11,644,8,11,1,11,1,11,1,11,3,11,649,8,11,1,11,1,11, + 1,11,3,11,654,8,11,1,11,1,11,1,11,3,11,659,8,11,1,12,1,12,1,12,3, + 12,664,8,12,1,12,1,12,1,12,1,12,1,12,5,12,671,8,12,10,12,12,12,674, + 9,12,3,12,676,8,12,1,12,3,12,679,8,12,1,12,1,12,3,12,683,8,12,1, + 12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, + 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,709,8, + 13,1,14,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,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,3,15,735, + 8,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,3,16,744,8,16,1,16,1,16, + 1,16,1,16,1,16,1,16,1,16,1,16,3,16,754,8,16,1,16,3,16,757,8,16,1, + 17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,3,18,771, + 8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,20,1,20, + 1,20,1,20,1,20,1,20,3,20,789,8,20,3,20,791,8,20,1,20,1,20,1,20,1, + 20,1,20,5,20,798,8,20,10,20,12,20,801,9,20,1,20,1,20,1,21,1,21,1, + 21,1,21,1,21,1,21,3,21,811,8,21,1,21,1,21,1,22,1,22,1,22,1,22,1, + 22,3,22,820,8,22,1,22,1,22,1,22,1,22,1,22,3,22,827,8,22,1,22,1,22, + 3,22,831,8,22,1,23,1,23,1,23,1,23,1,23,3,23,838,8,23,1,23,1,23,1, + 23,1,23,3,23,844,8,23,1,23,3,23,847,8,23,1,23,1,23,1,23,3,23,852, + 8,23,1,24,1,24,1,24,1,24,1,24,3,24,859,8,24,1,24,1,24,1,24,1,24, + 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,873,8,24,1,25,1,25, + 1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,3,26,886,8,26,1,26, + 1,26,1,26,3,26,891,8,26,1,26,1,26,1,26,3,26,896,8,26,1,27,1,27,1, + 27,1,27,3,27,902,8,27,1,27,1,27,1,27,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,29,1,30,1,30,1,30,1, + 30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,32,1,32,3, + 32,938,8,32,1,32,3,32,941,8,32,1,32,1,32,1,33,1,33,3,33,947,8,33, + 1,33,3,33,950,8,33,1,33,1,33,1,34,1,34,3,34,956,8,34,1,35,1,35,1, + 35,1,35,3,35,962,8,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, + 35,1,35,3,35,974,8,35,3,35,976,8,35,1,36,1,36,1,36,1,36,1,36,1,36, + 1,36,1,36,1,36,3,36,987,8,36,1,37,1,37,1,37,1,37,1,37,1,37,3,37, + 995,8,37,1,38,1,38,1,38,3,38,1000,8,38,1,38,1,38,3,38,1004,8,38, + 1,39,1,39,1,39,3,39,1009,8,39,1,39,1,39,1,40,1,40,1,40,3,40,1016, + 8,40,1,40,1,40,3,40,1020,8,40,1,41,1,41,3,41,1024,8,41,1,41,1,41, + 1,41,1,41,3,41,1030,8,41,1,42,1,42,3,42,1034,8,42,1,42,1,42,3,42, + 1038,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1045,8,42,10,42,12,42,1048, + 9,42,3,42,1050,8,42,1,42,3,42,1053,8,42,1,43,1,43,1,43,1,43,1,44, + 1,44,3,44,1061,8,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46, + 1,46,1,46,1,46,3,46,1075,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1082, + 8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,3,49, + 1095,8,49,1,49,1,49,1,49,1,49,3,49,1101,8,49,1,49,1,49,1,49,3,49, + 1106,8,49,1,49,3,49,1109,8,49,1,50,3,50,1112,8,50,1,50,1,50,1,50, + 3,50,1117,8,50,1,50,1,50,3,50,1121,8,50,1,50,1,50,1,50,1,50,1,50, + 5,50,1128,8,50,10,50,12,50,1131,9,50,1,50,1,50,3,50,1135,8,50,1, + 50,1,50,1,51,1,51,3,51,1141,8,51,1,52,1,52,3,52,1145,8,52,1,52,1, + 52,3,52,1149,8,52,1,53,1,53,1,53,3,53,1154,8,53,1,53,3,53,1157,8, + 53,1,53,1,53,1,53,1,53,5,53,1163,8,53,10,53,12,53,1166,9,53,3,53, + 1168,8,53,1,53,3,53,1171,8,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54, + 1,54,5,54,1181,8,54,10,54,12,54,1184,9,54,3,54,1186,8,54,1,54,3, + 54,1189,8,54,1,55,1,55,1,55,3,55,1194,8,55,1,55,1,55,3,55,1198,8, + 55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1, + 56,1,56,3,56,1214,8,56,1,57,1,57,1,57,3,57,1219,8,57,1,57,1,57,1, + 57,5,57,1224,8,57,10,57,12,57,1227,9,57,3,57,1229,8,57,1,58,1,58, + 1,58,1,58,3,58,1235,8,58,1,58,3,58,1238,8,58,1,58,1,58,1,58,5,58, + 1243,8,58,10,58,12,58,1246,9,58,3,58,1248,8,58,1,59,1,59,3,59,1252, + 8,59,1,59,1,59,1,59,3,59,1257,8,59,1,59,3,59,1260,8,59,1,59,1,59, + 1,59,5,59,1265,8,59,10,59,12,59,1268,9,59,3,59,1270,8,59,1,60,1, + 60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1, + 62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,3,64,1294,8,64,1,64,1,64,1, + 64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1308,8,65,1, + 65,1,65,3,65,1312,8,65,1,66,1,66,3,66,1316,8,66,1,66,1,66,1,67,1, + 67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1, + 68,1,68,3,68,1336,8,68,3,68,1338,8,68,3,68,1340,8,68,1,69,1,69,1, + 69,1,69,1,69,1,69,1,69,3,69,1349,8,69,3,69,1351,8,69,1,70,1,70,1, + 70,1,70,1,70,1,70,1,70,3,70,1360,8,70,3,70,1362,8,70,1,71,1,71,1, + 71,1,71,1,71,1,71,1,71,3,71,1371,8,71,3,71,1373,8,71,1,72,1,72,1, + 72,3,72,1378,8,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,1387,8, + 73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1396,8,74,1,75,1,75,1, + 75,1,75,1,75,1,75,1,75,3,75,1405,8,75,1,76,1,76,1,76,1,77,1,77,1, + 77,1,77,1,77,1,77,3,77,1416,8,77,1,78,1,78,1,78,1,78,3,78,1422,8, + 78,1,78,1,78,1,78,3,78,1427,8,78,1,78,3,78,1430,8,78,1,78,1,78,1, + 79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,3,80,1443,8,80,1,80,1, + 80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1453,8,80,1,80,1,80,3,80,1457, + 8,80,1,81,1,81,1,81,3,81,1462,8,81,1,82,1,82,1,82,1,82,1,82,1,82, + 1,82,5,82,1471,8,82,10,82,12,82,1474,9,82,1,82,1,82,3,82,1478,8, + 82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,86,1,86,1, + 86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1, + 92,1,93,1,93,1,93,5,93,1509,8,93,10,93,12,93,1512,9,93,1,94,1,94, + 1,94,5,94,1517,8,94,10,94,12,94,1520,9,94,1,95,1,95,3,95,1524,8, + 95,1,96,1,96,1,97,1,97,1,97,3,97,1531,8,97,1,98,1,98,1,99,1,99,1, + 99,3,99,1538,8,99,1,100,1,100,3,100,1542,8,100,1,101,1,101,1,101, + 3,101,1547,8,101,1,101,3,101,1550,8,101,1,101,1,101,1,101,3,101, + 1555,8,101,1,101,1,101,1,101,3,101,1560,8,101,1,101,1,101,1,101, + 3,101,1565,8,101,1,101,1,101,3,101,1569,8,101,1,101,1,101,1,101, + 1,101,1,101,1,101,1,101,3,101,1578,8,101,1,101,3,101,1581,8,101, + 1,101,1,101,3,101,1585,8,101,1,102,1,102,1,102,5,102,1590,8,102, + 10,102,12,102,1593,9,102,1,103,1,103,1,103,1,103,1,104,1,104,3,104, + 1601,8,104,1,104,1,104,3,104,1605,8,104,5,104,1607,8,104,10,104, + 12,104,1610,9,104,1,104,1,104,1,105,1,105,3,105,1616,8,105,1,106, + 3,106,1619,8,106,1,106,1,106,1,107,1,107,1,107,1,107,5,107,1627, + 8,107,10,107,12,107,1630,9,107,1,108,1,108,1,108,1,108,3,108,1636, + 8,108,1,108,1,108,1,108,3,108,1641,8,108,1,108,1,108,1,108,3,108, + 1646,8,108,1,108,1,108,1,108,3,108,1651,8,108,1,108,1,108,5,108, + 1655,8,108,10,108,12,108,1658,9,108,3,108,1660,8,108,1,109,1,109, + 1,109,1,109,1,109,1,109,1,109,3,109,1669,8,109,1,109,3,109,1672, + 8,109,1,109,3,109,1675,8,109,1,110,1,110,1,110,1,110,3,110,1681, + 8,110,1,111,1,111,1,111,3,111,1686,8,111,1,112,1,112,1,113,1,113, + 1,113,1,113,5,113,1694,8,113,10,113,12,113,1697,9,113,3,113,1699, + 8,113,1,113,3,113,1702,8,113,1,113,1,113,3,113,1706,8,113,1,114, + 1,114,1,114,1,115,1,115,1,115,5,115,1714,8,115,10,115,12,115,1717, + 9,115,3,115,1719,8,115,1,116,1,116,1,116,1,116,3,116,1725,8,116, + 1,116,1,116,5,116,1729,8,116,10,116,12,116,1732,9,116,3,116,1734, + 8,116,1,117,3,117,1737,8,117,1,117,1,117,3,117,1741,8,117,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,1751,8,118,1,119, + 1,119,1,120,1,120,1,121,1,121,1,121,5,121,1760,8,121,10,121,12,121, + 1763,9,121,1,121,1,121,3,121,1767,8,121,1,121,3,121,1770,8,121,1, + 122,1,122,3,122,1774,8,122,1,122,1,122,1,122,1,123,1,123,3,123,1781, + 8,123,1,123,1,123,1,123,1,123,1,123,1,123,5,123,1789,8,123,10,123, + 12,123,1792,9,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,3,124,1803,8,124,1,124,1,124,1,124,1,124,3,124,1809,8,124, + 3,124,1811,8,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125, + 1820,8,125,1,125,3,125,1823,8,125,1,126,1,126,1,126,1,126,1,126, + 3,126,1830,8,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, + 3,127,1840,8,127,1,128,1,128,1,128,1,128,3,128,1846,8,128,1,129, + 1,129,1,129,1,129,5,129,1852,8,129,10,129,12,129,1855,9,129,1,129, + 1,129,1,130,1,130,1,130,1,130,5,130,1863,8,130,10,130,12,130,1866, + 9,130,1,130,1,130,1,131,1,131,1,131,5,131,1873,8,131,10,131,12,131, + 1876,9,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132, + 1886,8,132,3,132,1888,8,132,1,132,1,132,1,132,1,132,3,132,1894,8, + 132,1,133,1,133,1,133,3,133,1899,8,133,1,134,1,134,1,134,1,134,1, + 134,1,134,5,134,1907,8,134,10,134,12,134,1910,9,134,3,134,1912,8, + 134,1,134,1,134,1,134,1,134,3,134,1918,8,134,3,134,1920,8,134,1, + 135,1,135,1,135,1,135,1,135,1,135,3,135,1928,8,135,1,135,1,135,1, + 135,1,135,3,135,1934,8,135,1,135,5,135,1937,8,135,10,135,12,135, + 1940,9,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,5,136,1949, + 8,136,10,136,12,136,1952,9,136,1,136,1,136,1,136,1,136,3,136,1958, + 8,136,1,137,1,137,3,137,1962,8,137,1,137,1,137,3,137,1966,8,137, + 1,138,1,138,3,138,1970,8,138,1,138,3,138,1973,8,138,1,138,1,138, + 1,138,1,138,1,138,5,138,1980,8,138,10,138,12,138,1983,9,138,3,138, + 1985,8,138,1,138,3,138,1988,8,138,1,138,1,138,1,138,3,138,1993,8, + 138,1,138,3,138,1996,8,138,1,139,1,139,1,139,5,139,2001,8,139,10, + 139,12,139,2004,9,139,1,140,1,140,1,140,3,140,2009,8,140,1,141,1, + 141,1,141,3,141,2014,8,141,1,142,3,142,2017,8,142,1,142,1,142,1, + 142,5,142,2022,8,142,10,142,12,142,2025,9,142,1,143,1,143,1,144, + 1,144,1,144,1,144,5,144,2033,8,144,10,144,12,144,2036,9,144,3,144, + 2038,8,144,1,144,1,144,3,144,2042,8,144,1,145,1,145,3,145,2046,8, + 145,1,145,1,145,1,145,1,146,1,146,1,147,1,147,3,147,2055,8,147,1, + 147,1,147,3,147,2059,8,147,1,147,3,147,2062,8,147,1,148,3,148,2065, + 8,148,1,148,1,148,1,149,1,149,1,150,1,150,1,151,1,151,1,151,3,151, + 2076,8,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152, + 1,152,1,152,1,152,1,152,1,152,3,152,2092,8,152,5,152,2094,8,152, + 10,152,12,152,2097,9,152,1,153,3,153,2100,8,153,1,153,1,153,3,153, + 2104,8,153,1,153,1,153,3,153,2108,8,153,1,153,1,153,3,153,2112,8, + 153,1,153,1,153,3,153,2116,8,153,1,153,1,153,3,153,2120,8,153,1, + 153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,3,153,2130,8,153,1, + 154,1,154,1,154,3,154,2135,8,154,1,154,1,154,1,154,1,154,1,154,5, + 154,2142,8,154,10,154,12,154,2145,9,154,1,154,1,154,3,154,2149,8, + 154,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,3,155,2162,8,155,3,155,2164,8,155,1,156,1,156,1,157,1,157, + 3,157,2170,8,157,1,157,1,157,3,157,2174,8,157,3,157,2176,8,157,1, + 158,1,158,1,158,1,158,5,158,2182,8,158,10,158,12,158,2185,9,158, + 1,158,1,158,1,159,1,159,1,159,1,159,3,159,2193,8,159,1,160,3,160, + 2196,8,160,1,160,1,160,1,161,1,161,1,161,1,161,1,162,1,162,1,162, + 1,162,1,162,5,162,2209,8,162,10,162,12,162,2212,9,162,1,162,1,162, + 1,162,3,162,2217,8,162,1,163,1,163,1,163,1,163,1,164,1,164,3,164, + 2225,8,164,1,165,1,165,1,166,1,166,1,166,3,166,2232,8,166,1,166, + 1,166,3,166,2236,8,166,1,166,1,166,1,166,1,166,1,166,1,166,5,166, + 2244,8,166,10,166,12,166,2247,9,166,1,167,1,167,1,167,1,167,1,167, + 1,167,1,167,1,167,3,167,2257,8,167,1,167,1,167,1,167,1,167,1,167, + 1,167,3,167,2265,8,167,1,167,1,167,1,167,1,167,1,167,5,167,2272, + 8,167,10,167,12,167,2275,9,167,1,167,1,167,1,167,3,167,2280,8,167, + 1,167,1,167,1,167,3,167,2285,8,167,1,167,1,167,1,167,1,167,3,167, + 2291,8,167,1,167,1,167,1,167,1,167,3,167,2297,8,167,1,167,1,167, + 1,167,3,167,2302,8,167,1,167,1,167,1,167,3,167,2307,8,167,1,168, + 1,168,1,168,1,168,3,168,2313,8,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,1,168,5,168,2324,8,168,10,168,12,168,2327,9,168, + 1,169,1,169,1,169,3,169,2332,8,169,1,169,1,169,1,169,5,169,2337, + 8,169,10,169,12,169,2340,9,169,3,169,2342,8,169,1,169,1,169,1,169, + 1,169,1,169,5,169,2349,8,169,10,169,12,169,2352,9,169,3,169,2354, + 8,169,1,169,1,169,3,169,2358,8,169,1,169,3,169,2361,8,169,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,3,170,2387,8,170,1,170,1,170,1,170,1,170,3,170,2393,8,170, + 5,170,2395,8,170,10,170,12,170,2398,9,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,5,170,2407,8,170,10,170,12,170,2410,9,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,3,170,2419,8,170,1,170,3,170, + 2422,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 5,170,2433,8,170,10,170,12,170,2436,9,170,3,170,2438,8,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,4,170,2455,8,170,11,170,12,170,2456,1,170,1,170, + 3,170,2461,8,170,1,170,1,170,1,170,1,170,4,170,2467,8,170,11,170, + 12,170,2468,1,170,1,170,3,170,2473,8,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,5,170,2496,8,170,10,170,12,170, + 2499,9,170,3,170,2501,8,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,3,170,2510,8,170,1,170,1,170,1,170,1,170,3,170,2516,8,170, + 1,170,1,170,1,170,1,170,3,170,2522,8,170,1,170,1,170,1,170,1,170, + 3,170,2528,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,3,170,2539,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 3,170,2548,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,5,170, + 2568,8,170,10,170,12,170,2571,9,170,3,170,2573,8,170,1,170,3,170, + 2576,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,5,170, + 2586,8,170,10,170,12,170,2589,9,170,1,171,1,171,1,171,1,171,3,171, + 2595,8,171,3,171,2597,8,171,1,172,1,172,1,173,1,173,1,174,1,174, + 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, + 1,175,1,175,1,175,3,175,2619,8,175,1,176,1,176,1,177,1,177,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,5,178,2646, + 8,178,10,178,12,178,2649,9,178,1,178,1,178,1,178,1,178,3,178,2655, + 8,178,1,178,1,178,1,178,1,178,5,178,2661,8,178,10,178,12,178,2664, + 9,178,1,178,1,178,3,178,2668,8,178,3,178,2670,8,178,1,178,1,178, + 5,178,2674,8,178,10,178,12,178,2677,9,178,1,179,1,179,1,180,1,180, + 3,180,2683,8,180,1,181,1,181,1,181,1,181,3,181,2689,8,181,1,182, + 1,182,1,182,1,182,1,182,1,183,1,183,1,183,1,183,1,183,1,184,1,184, + 1,184,5,184,2704,8,184,10,184,12,184,2707,9,184,1,185,1,185,1,185, + 1,185,1,185,3,185,2714,8,185,1,185,1,185,1,185,1,185,1,185,5,185, + 2721,8,185,10,185,12,185,2724,9,185,3,185,2726,8,185,1,185,3,185, + 2729,8,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186, + 1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,3,186,2749, + 8,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,3,187, + 2760,8,187,1,188,1,188,1,188,1,188,1,188,3,188,2767,8,188,1,189, + 1,189,1,189,5,189,2772,8,189,10,189,12,189,2775,9,189,1,190,1,190, + 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,3,190,2788, + 8,190,3,190,2790,8,190,1,191,1,191,1,192,1,192,1,192,5,192,2797, + 8,192,10,192,12,192,2800,9,192,1,193,1,193,1,193,1,193,1,193,1,193, + 3,193,2808,8,193,1,193,1,193,1,193,5,193,2813,8,193,10,193,12,193, + 2816,9,193,3,193,2818,8,193,1,194,1,194,1,194,1,194,1,194,1,194, + 3,194,2826,8,194,1,195,1,195,1,195,1,195,1,195,3,195,2833,8,195, + 1,196,3,196,2836,8,196,1,196,1,196,3,196,2840,8,196,1,196,1,196, + 3,196,2844,8,196,1,196,3,196,2847,8,196,1,197,1,197,1,198,1,198, + 1,198,10,799,1472,1656,1695,1715,1730,1761,1790,1864,2396,6,270, + 304,332,336,340,356,199,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,120,122,124,126,128,130,132,134,136,138,140,142,144, + 146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176, + 178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208, + 210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240, + 242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272, + 274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304, + 306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336, + 338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368, + 370,372,374,376,378,380,382,384,386,388,390,392,394,396,0,33,2,0, + 46,46,170,170,2,0,166,166,204,204,2,0,176,176,202,202,2,0,69,69, + 80,80,2,0,27,27,159,159,2,0,103,103,144,144,2,0,47,47,171,171,2, + 0,3,3,12,12,3,0,87,87,166,166,204,204,2,0,178,178,209,209,1,0,245, + 248,2,0,147,147,219,223,2,0,65,65,95,95,2,0,64,64,200,200,2,0,10, + 10,55,55,2,0,75,75,112,112,2,0,2,2,57,57,2,0,14,14,185,185,3,0,106, 106,115,115,164,164,2,0,105,105,163,163,4,0,70,70,133,133,194,194, 208,208,1,0,255,256,1,0,257,259,1,0,249,254,3,0,2,2,6,6,181,181, 2,0,70,70,194,194,5,0,48,49,91,92,122,125,172,173,217,218,1,0,127, @@ -13603,915 +13816,929 @@ export class ImpalaSqlParser extends SQLParserBase { 124,124,158,158,165,165,172,172,184,184,196,196,204,204,217,217, 23,0,14,14,43,44,48,49,65,65,68,68,91,91,95,95,110,110,119,119,122, 125,127,130,137,137,140,140,152,153,172,173,180,180,184,185,195, - 195,204,204,213,213,217,217,220,220,231,231,3126,0,395,1,0,0,0,2, - 400,1,0,0,0,4,426,1,0,0,0,6,428,1,0,0,0,8,439,1,0,0,0,10,441,1,0, - 0,0,12,480,1,0,0,0,14,502,1,0,0,0,16,556,1,0,0,0,18,575,1,0,0,0, - 20,588,1,0,0,0,22,592,1,0,0,0,24,654,1,0,0,0,26,702,1,0,0,0,28,704, - 1,0,0,0,30,712,1,0,0,0,32,732,1,0,0,0,34,752,1,0,0,0,36,759,1,0, - 0,0,38,768,1,0,0,0,40,776,1,0,0,0,42,798,1,0,0,0,44,808,1,0,0,0, - 46,826,1,0,0,0,48,847,1,0,0,0,50,868,1,0,0,0,52,874,1,0,0,0,54,891, - 1,0,0,0,56,900,1,0,0,0,58,907,1,0,0,0,60,915,1,0,0,0,62,922,1,0, - 0,0,64,929,1,0,0,0,66,938,1,0,0,0,68,949,1,0,0,0,70,951,1,0,0,0, - 72,971,1,0,0,0,74,988,1,0,0,0,76,990,1,0,0,0,78,999,1,0,0,0,80,1006, - 1,0,0,0,82,1015,1,0,0,0,84,1025,1,0,0,0,86,1048,1,0,0,0,88,1054, - 1,0,0,0,90,1056,1,0,0,0,92,1063,1,0,0,0,94,1075,1,0,0,0,96,1077, - 1,0,0,0,98,1084,1,0,0,0,100,1105,1,0,0,0,102,1134,1,0,0,0,104,1136, - 1,0,0,0,106,1144,1,0,0,0,108,1166,1,0,0,0,110,1184,1,0,0,0,112,1207, - 1,0,0,0,114,1209,1,0,0,0,116,1224,1,0,0,0,118,1243,1,0,0,0,120,1265, - 1,0,0,0,122,1270,1,0,0,0,124,1275,1,0,0,0,126,1280,1,0,0,0,128,1285, - 1,0,0,0,130,1292,1,0,0,0,132,1307,1,0,0,0,134,1313,1,0,0,0,136,1333, - 1,0,0,0,138,1335,1,0,0,0,140,1346,1,0,0,0,142,1357,1,0,0,0,144,1371, - 1,0,0,0,146,1373,1,0,0,0,148,1382,1,0,0,0,150,1391,1,0,0,0,152,1400, - 1,0,0,0,154,1403,1,0,0,0,156,1411,1,0,0,0,158,1427,1,0,0,0,160,1431, - 1,0,0,0,162,1455,1,0,0,0,164,1457,1,0,0,0,166,1473,1,0,0,0,168,1476, - 1,0,0,0,170,1480,1,0,0,0,172,1483,1,0,0,0,174,1487,1,0,0,0,176,1489, - 1,0,0,0,178,1491,1,0,0,0,180,1493,1,0,0,0,182,1495,1,0,0,0,184,1497, - 1,0,0,0,186,1499,1,0,0,0,188,1507,1,0,0,0,190,1517,1,0,0,0,192,1521, - 1,0,0,0,194,1523,1,0,0,0,196,1527,1,0,0,0,198,1532,1,0,0,0,200,1572, - 1,0,0,0,202,1580,1,0,0,0,204,1584,1,0,0,0,206,1599,1,0,0,0,208,1604, - 1,0,0,0,210,1608,1,0,0,0,212,1617,1,0,0,0,214,1647,1,0,0,0,216,1662, - 1,0,0,0,218,1668,1,0,0,0,220,1673,1,0,0,0,222,1675,1,0,0,0,224,1693, - 1,0,0,0,226,1696,1,0,0,0,228,1706,1,0,0,0,230,1726,1,0,0,0,232,1736, - 1,0,0,0,234,1738,1,0,0,0,236,1740,1,0,0,0,238,1755,1,0,0,0,240,1757, - 1,0,0,0,242,1764,1,0,0,0,244,1796,1,0,0,0,246,1808,1,0,0,0,248,1815, - 1,0,0,0,250,1825,1,0,0,0,252,1827,1,0,0,0,254,1833,1,0,0,0,256,1844, - 1,0,0,0,258,1855,1,0,0,0,260,1863,1,0,0,0,262,1881,1,0,0,0,264,1886, - 1,0,0,0,266,1907,1,0,0,0,268,1943,1,0,0,0,270,1945,1,0,0,0,272,1953, - 1,0,0,0,274,1983,1,0,0,0,276,1991,1,0,0,0,278,1994,1,0,0,0,280,1998, - 1,0,0,0,282,2008,1,0,0,0,284,2023,1,0,0,0,286,2025,1,0,0,0,288,2032, - 1,0,0,0,290,2043,1,0,0,0,292,2046,1,0,0,0,294,2050,1,0,0,0,296,2052, - 1,0,0,0,298,2057,1,0,0,0,300,2061,1,0,0,0,302,2111,1,0,0,0,304,2127, - 1,0,0,0,306,2129,1,0,0,0,308,2144,1,0,0,0,310,2146,1,0,0,0,312,2156, - 1,0,0,0,314,2171,1,0,0,0,316,2174,1,0,0,0,318,2178,1,0,0,0,320,2182, - 1,0,0,0,322,2197,1,0,0,0,324,2203,1,0,0,0,326,2205,1,0,0,0,328,2214, - 1,0,0,0,330,2285,1,0,0,0,332,2291,1,0,0,0,334,2307,1,0,0,0,336,2554, - 1,0,0,0,338,2575,1,0,0,0,340,2577,1,0,0,0,342,2579,1,0,0,0,344,2581, - 1,0,0,0,346,2597,1,0,0,0,348,2599,1,0,0,0,350,2601,1,0,0,0,352,2648, - 1,0,0,0,354,2657,1,0,0,0,356,2661,1,0,0,0,358,2667,1,0,0,0,360,2669, - 1,0,0,0,362,2674,1,0,0,0,364,2679,1,0,0,0,366,2687,1,0,0,0,368,2727, - 1,0,0,0,370,2738,1,0,0,0,372,2745,1,0,0,0,374,2747,1,0,0,0,376,2768, - 1,0,0,0,378,2770,1,0,0,0,380,2772,1,0,0,0,382,2786,1,0,0,0,384,2793, - 1,0,0,0,386,2807,1,0,0,0,388,2809,1,0,0,0,390,2811,1,0,0,0,392,394, - 3,2,1,0,393,392,1,0,0,0,394,397,1,0,0,0,395,393,1,0,0,0,395,396, - 1,0,0,0,396,398,1,0,0,0,397,395,1,0,0,0,398,399,5,0,0,1,399,1,1, - 0,0,0,400,402,3,4,2,0,401,403,5,262,0,0,402,401,1,0,0,0,402,403, - 1,0,0,0,403,3,1,0,0,0,404,427,3,208,104,0,405,427,3,6,3,0,406,427, - 3,8,4,0,407,427,3,26,13,0,408,427,3,64,32,0,409,427,3,66,33,0,410, - 427,3,68,34,0,411,427,3,74,37,0,412,427,3,88,44,0,413,427,3,94,47, - 0,414,427,3,100,50,0,415,427,3,102,51,0,416,427,3,108,54,0,417,427, - 3,110,55,0,418,427,3,112,56,0,419,427,3,144,72,0,420,427,3,152,76, - 0,421,427,3,154,77,0,422,427,3,156,78,0,423,427,3,158,79,0,424,427, - 3,160,80,0,425,427,3,162,81,0,426,404,1,0,0,0,426,405,1,0,0,0,426, - 406,1,0,0,0,426,407,1,0,0,0,426,408,1,0,0,0,426,409,1,0,0,0,426, - 410,1,0,0,0,426,411,1,0,0,0,426,412,1,0,0,0,426,413,1,0,0,0,426, - 414,1,0,0,0,426,415,1,0,0,0,426,416,1,0,0,0,426,417,1,0,0,0,426, - 418,1,0,0,0,426,419,1,0,0,0,426,420,1,0,0,0,426,421,1,0,0,0,426, - 422,1,0,0,0,426,423,1,0,0,0,426,424,1,0,0,0,426,425,1,0,0,0,427, - 5,1,0,0,0,428,429,5,203,0,0,429,430,3,184,92,0,430,7,1,0,0,0,431, - 440,3,18,9,0,432,440,3,20,10,0,433,440,3,22,11,0,434,440,3,24,12, - 0,435,440,3,16,8,0,436,440,3,14,7,0,437,440,3,12,6,0,438,440,3,10, - 5,0,439,431,1,0,0,0,439,432,1,0,0,0,439,433,1,0,0,0,439,434,1,0, - 0,0,439,435,1,0,0,0,439,436,1,0,0,0,439,437,1,0,0,0,439,438,1,0, - 0,0,440,9,1,0,0,0,441,443,5,37,0,0,442,444,5,19,0,0,443,442,1,0, - 0,0,443,444,1,0,0,0,444,445,1,0,0,0,445,447,5,188,0,0,446,448,3, - 172,86,0,447,446,1,0,0,0,447,448,1,0,0,0,448,449,1,0,0,0,449,465, - 3,174,87,0,450,451,5,265,0,0,451,456,3,218,109,0,452,453,5,263,0, - 0,453,455,3,218,109,0,454,452,1,0,0,0,455,458,1,0,0,0,456,454,1, - 0,0,0,456,457,1,0,0,0,457,461,1,0,0,0,458,456,1,0,0,0,459,460,5, - 263,0,0,460,462,3,212,106,0,461,459,1,0,0,0,461,462,1,0,0,0,462, - 463,1,0,0,0,463,464,5,266,0,0,464,466,1,0,0,0,465,450,1,0,0,0,465, - 466,1,0,0,0,466,473,1,0,0,0,467,468,5,17,0,0,468,471,5,26,0,0,469, - 472,3,312,156,0,470,472,3,256,128,0,471,469,1,0,0,0,471,470,1,0, - 0,0,472,474,1,0,0,0,473,467,1,0,0,0,473,474,1,0,0,0,474,475,1,0, - 0,0,475,478,3,198,99,0,476,477,5,9,0,0,477,479,3,208,104,0,478,476, - 1,0,0,0,478,479,1,0,0,0,479,11,1,0,0,0,480,482,5,37,0,0,481,483, - 5,19,0,0,482,481,1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484,486, - 5,188,0,0,485,487,3,172,86,0,486,485,1,0,0,0,486,487,1,0,0,0,487, - 488,1,0,0,0,488,489,3,174,87,0,489,493,5,115,0,0,490,494,3,186,93, - 0,491,492,5,147,0,0,492,494,3,338,169,0,493,490,1,0,0,0,493,491, - 1,0,0,0,494,498,1,0,0,0,495,496,5,17,0,0,496,497,5,26,0,0,497,499, - 3,256,128,0,498,495,1,0,0,0,498,499,1,0,0,0,499,500,1,0,0,0,500, - 501,3,198,99,0,501,13,1,0,0,0,502,504,5,37,0,0,503,505,5,19,0,0, - 504,503,1,0,0,0,504,505,1,0,0,0,505,506,1,0,0,0,506,508,5,188,0, - 0,507,509,3,172,86,0,508,507,1,0,0,0,508,509,1,0,0,0,509,510,1,0, - 0,0,510,528,3,174,87,0,511,512,5,265,0,0,512,517,3,220,110,0,513, - 514,5,263,0,0,514,516,3,220,110,0,515,513,1,0,0,0,516,519,1,0,0, - 0,517,515,1,0,0,0,517,518,1,0,0,0,518,524,1,0,0,0,519,517,1,0,0, - 0,520,521,5,263,0,0,521,522,5,150,0,0,522,523,5,110,0,0,523,525, - 3,312,156,0,524,520,1,0,0,0,524,525,1,0,0,0,525,526,1,0,0,0,526, - 527,5,266,0,0,527,529,1,0,0,0,528,511,1,0,0,0,528,529,1,0,0,0,529, - 535,1,0,0,0,530,531,5,150,0,0,531,533,5,110,0,0,532,534,3,312,156, - 0,533,532,1,0,0,0,533,534,1,0,0,0,534,536,1,0,0,0,535,530,1,0,0, - 0,535,536,1,0,0,0,536,540,1,0,0,0,537,538,5,145,0,0,538,539,5,26, - 0,0,539,541,3,238,119,0,540,537,1,0,0,0,540,541,1,0,0,0,541,543, - 1,0,0,0,542,544,3,224,112,0,543,542,1,0,0,0,543,544,1,0,0,0,544, - 545,1,0,0,0,545,546,5,23,0,0,546,547,5,9,0,0,547,550,5,111,0,0,548, - 549,5,25,0,0,549,551,3,254,127,0,550,548,1,0,0,0,550,551,1,0,0,0, - 551,554,1,0,0,0,552,553,5,9,0,0,553,555,3,208,104,0,554,552,1,0, - 0,0,554,555,1,0,0,0,555,15,1,0,0,0,556,557,5,37,0,0,557,559,5,212, - 0,0,558,560,3,172,86,0,559,558,1,0,0,0,559,560,1,0,0,0,560,561,1, - 0,0,0,561,563,3,178,89,0,562,564,3,204,102,0,563,562,1,0,0,0,563, - 564,1,0,0,0,564,566,1,0,0,0,565,567,3,224,112,0,566,565,1,0,0,0, - 566,567,1,0,0,0,567,570,1,0,0,0,568,569,5,25,0,0,569,571,3,254,127, - 0,570,568,1,0,0,0,570,571,1,0,0,0,571,572,1,0,0,0,572,573,5,9,0, - 0,573,574,3,208,104,0,574,17,1,0,0,0,575,576,5,37,0,0,576,578,7, - 0,0,0,577,579,3,172,86,0,578,577,1,0,0,0,578,579,1,0,0,0,579,580, - 1,0,0,0,580,582,3,176,88,0,581,583,3,224,112,0,582,581,1,0,0,0,582, - 583,1,0,0,0,583,586,1,0,0,0,584,585,5,24,0,0,585,587,3,338,169,0, - 586,584,1,0,0,0,586,587,1,0,0,0,587,19,1,0,0,0,588,589,5,37,0,0, - 589,590,5,166,0,0,590,591,3,384,192,0,591,21,1,0,0,0,592,594,5,37, - 0,0,593,595,5,12,0,0,594,593,1,0,0,0,594,595,1,0,0,0,595,596,1,0, - 0,0,596,598,5,84,0,0,597,599,3,172,86,0,598,597,1,0,0,0,598,599, - 1,0,0,0,599,600,1,0,0,0,600,613,3,180,90,0,601,610,5,265,0,0,602, - 607,3,352,176,0,603,604,5,263,0,0,604,606,3,352,176,0,605,603,1, - 0,0,0,606,609,1,0,0,0,607,605,1,0,0,0,607,608,1,0,0,0,608,611,1, - 0,0,0,609,607,1,0,0,0,610,602,1,0,0,0,610,611,1,0,0,0,611,612,1, - 0,0,0,612,614,5,266,0,0,613,601,1,0,0,0,613,614,1,0,0,0,614,615, - 1,0,0,0,615,616,5,160,0,0,616,619,3,352,176,0,617,618,5,102,0,0, - 618,620,3,352,176,0,619,617,1,0,0,0,619,620,1,0,0,0,620,621,1,0, - 0,0,621,622,5,24,0,0,622,626,5,274,0,0,623,624,5,104,0,0,624,625, - 5,249,0,0,625,627,5,274,0,0,626,623,1,0,0,0,626,627,1,0,0,0,627, - 628,1,0,0,0,628,629,5,206,0,0,629,630,5,249,0,0,630,631,5,274,0, - 0,631,632,5,126,0,0,632,633,5,249,0,0,633,637,5,274,0,0,634,635, - 5,18,0,0,635,636,5,249,0,0,636,638,5,274,0,0,637,634,1,0,0,0,637, - 638,1,0,0,0,638,642,1,0,0,0,639,640,5,20,0,0,640,641,5,249,0,0,641, - 643,5,274,0,0,642,639,1,0,0,0,642,643,1,0,0,0,643,647,1,0,0,0,644, - 645,5,187,0,0,645,646,5,249,0,0,646,648,5,274,0,0,647,644,1,0,0, - 0,647,648,1,0,0,0,648,652,1,0,0,0,649,650,5,76,0,0,650,651,5,249, - 0,0,651,653,5,274,0,0,652,649,1,0,0,0,652,653,1,0,0,0,653,23,1,0, - 0,0,654,655,5,37,0,0,655,657,5,84,0,0,656,658,3,172,86,0,657,656, - 1,0,0,0,657,658,1,0,0,0,658,659,1,0,0,0,659,672,3,180,90,0,660,669, - 5,265,0,0,661,666,3,352,176,0,662,663,5,263,0,0,663,665,3,352,176, - 0,664,662,1,0,0,0,665,668,1,0,0,0,666,664,1,0,0,0,666,667,1,0,0, - 0,667,670,1,0,0,0,668,666,1,0,0,0,669,661,1,0,0,0,669,670,1,0,0, - 0,670,671,1,0,0,0,671,673,5,266,0,0,672,660,1,0,0,0,672,673,1,0, - 0,0,673,676,1,0,0,0,674,675,5,160,0,0,675,677,3,352,176,0,676,674, - 1,0,0,0,676,677,1,0,0,0,677,678,1,0,0,0,678,679,5,24,0,0,679,680, - 5,274,0,0,680,681,5,186,0,0,681,682,5,249,0,0,682,683,3,338,169, - 0,683,25,1,0,0,0,684,703,3,28,14,0,685,703,3,62,31,0,686,703,3,60, - 30,0,687,703,3,58,29,0,688,703,3,54,27,0,689,703,3,56,28,0,690,703, - 3,52,26,0,691,703,3,48,24,0,692,703,3,50,25,0,693,703,3,46,23,0, - 694,703,3,44,22,0,695,703,3,42,21,0,696,703,3,40,20,0,697,703,3, - 34,17,0,698,703,3,30,15,0,699,703,3,32,16,0,700,703,3,36,18,0,701, - 703,3,38,19,0,702,684,1,0,0,0,702,685,1,0,0,0,702,686,1,0,0,0,702, - 687,1,0,0,0,702,688,1,0,0,0,702,689,1,0,0,0,702,690,1,0,0,0,702, - 691,1,0,0,0,702,692,1,0,0,0,702,693,1,0,0,0,702,694,1,0,0,0,702, - 695,1,0,0,0,702,696,1,0,0,0,702,697,1,0,0,0,702,698,1,0,0,0,702, - 699,1,0,0,0,702,700,1,0,0,0,702,701,1,0,0,0,703,27,1,0,0,0,704,705, - 5,4,0,0,705,706,5,46,0,0,706,707,3,184,92,0,707,708,5,176,0,0,708, - 709,5,142,0,0,709,710,7,1,0,0,710,711,3,384,192,0,711,29,1,0,0,0, - 712,713,5,4,0,0,713,714,5,188,0,0,714,715,3,186,93,0,715,716,5,176, - 0,0,716,717,5,32,0,0,717,718,5,182,0,0,718,719,3,192,96,0,719,720, - 5,265,0,0,720,721,3,234,117,0,721,722,5,249,0,0,722,728,3,338,169, - 0,723,724,5,263,0,0,724,725,3,234,117,0,725,726,5,249,0,0,726,727, - 3,338,169,0,727,729,1,0,0,0,728,723,1,0,0,0,728,729,1,0,0,0,729, - 730,1,0,0,0,730,731,5,266,0,0,731,31,1,0,0,0,732,733,5,4,0,0,733, - 734,5,188,0,0,734,737,3,186,93,0,735,736,5,145,0,0,736,738,3,326, - 163,0,737,735,1,0,0,0,737,738,1,0,0,0,738,739,1,0,0,0,739,750,5, - 176,0,0,740,741,5,30,0,0,741,742,5,94,0,0,742,747,3,338,169,0,743, - 744,5,216,0,0,744,745,5,151,0,0,745,746,5,249,0,0,746,748,3,386, - 193,0,747,743,1,0,0,0,747,748,1,0,0,0,748,751,1,0,0,0,749,751,5, - 197,0,0,750,740,1,0,0,0,750,749,1,0,0,0,751,33,1,0,0,0,752,753,5, - 4,0,0,753,754,5,188,0,0,754,755,3,186,93,0,755,756,5,31,0,0,756, - 757,3,192,96,0,757,758,3,226,113,0,758,35,1,0,0,0,759,760,5,4,0, - 0,760,761,5,188,0,0,761,762,3,186,93,0,762,764,5,58,0,0,763,765, - 5,32,0,0,764,763,1,0,0,0,764,765,1,0,0,0,765,766,1,0,0,0,766,767, - 3,192,96,0,767,37,1,0,0,0,768,769,5,4,0,0,769,770,5,188,0,0,770, - 771,3,186,93,0,771,772,5,176,0,0,772,773,5,142,0,0,773,774,7,1,0, - 0,774,775,3,384,192,0,775,39,1,0,0,0,776,777,5,4,0,0,777,778,5,188, - 0,0,778,784,3,186,93,0,779,785,5,158,0,0,780,782,5,1,0,0,781,783, - 3,172,86,0,782,781,1,0,0,0,782,783,1,0,0,0,783,785,1,0,0,0,784,779, - 1,0,0,0,784,780,1,0,0,0,785,786,1,0,0,0,786,787,5,33,0,0,787,788, - 5,265,0,0,788,793,3,226,113,0,789,790,5,263,0,0,790,792,3,226,113, - 0,791,789,1,0,0,0,792,795,1,0,0,0,793,794,1,0,0,0,793,791,1,0,0, - 0,794,796,1,0,0,0,795,793,1,0,0,0,796,797,5,266,0,0,797,41,1,0,0, - 0,798,799,5,4,0,0,799,800,5,188,0,0,800,801,3,186,93,0,801,802,5, - 1,0,0,802,804,5,32,0,0,803,805,3,172,86,0,804,803,1,0,0,0,804,805, - 1,0,0,0,805,806,1,0,0,0,806,807,3,228,114,0,807,43,1,0,0,0,808,809, - 5,4,0,0,809,810,5,188,0,0,810,811,3,186,93,0,811,813,5,4,0,0,812, - 814,5,32,0,0,813,812,1,0,0,0,813,814,1,0,0,0,814,815,1,0,0,0,815, - 824,3,192,96,0,816,820,5,176,0,0,817,821,3,232,116,0,818,819,5,34, - 0,0,819,821,3,338,169,0,820,817,1,0,0,0,820,818,1,0,0,0,821,825, - 1,0,0,0,822,823,5,58,0,0,823,825,5,51,0,0,824,816,1,0,0,0,824,822, - 1,0,0,0,825,45,1,0,0,0,826,827,5,4,0,0,827,828,5,188,0,0,828,829, - 3,186,93,0,829,831,5,1,0,0,830,832,3,172,86,0,831,830,1,0,0,0,831, - 832,1,0,0,0,832,845,1,0,0,0,833,834,5,145,0,0,834,837,3,326,163, - 0,835,836,5,24,0,0,836,838,3,338,169,0,837,835,1,0,0,0,837,838,1, - 0,0,0,838,840,1,0,0,0,839,841,3,246,123,0,840,839,1,0,0,0,840,841, - 1,0,0,0,841,846,1,0,0,0,842,843,5,154,0,0,843,844,5,145,0,0,844, - 846,3,244,122,0,845,833,1,0,0,0,845,842,1,0,0,0,846,47,1,0,0,0,847, - 848,5,4,0,0,848,849,5,188,0,0,849,852,3,186,93,0,850,851,5,145,0, - 0,851,853,3,326,163,0,852,850,1,0,0,0,852,853,1,0,0,0,853,854,1, - 0,0,0,854,866,5,176,0,0,855,856,5,72,0,0,856,867,3,236,118,0,857, - 858,5,168,0,0,858,859,5,79,0,0,859,867,3,260,130,0,860,861,5,24, - 0,0,861,867,3,338,169,0,862,863,5,25,0,0,863,867,3,254,127,0,864, - 865,5,175,0,0,865,867,3,254,127,0,866,855,1,0,0,0,866,857,1,0,0, - 0,866,860,1,0,0,0,866,862,1,0,0,0,866,864,1,0,0,0,867,49,1,0,0,0, - 868,869,5,4,0,0,869,870,5,188,0,0,870,871,3,186,93,0,871,872,5,155, - 0,0,872,873,5,146,0,0,873,51,1,0,0,0,874,875,5,4,0,0,875,876,5,188, - 0,0,876,877,3,186,93,0,877,879,5,58,0,0,878,880,3,170,85,0,879,878, - 1,0,0,0,879,880,1,0,0,0,880,889,1,0,0,0,881,882,5,145,0,0,882,884, - 3,326,163,0,883,885,5,22,0,0,884,883,1,0,0,0,884,885,1,0,0,0,885, - 890,1,0,0,0,886,887,5,154,0,0,887,888,5,145,0,0,888,890,3,244,122, - 0,889,881,1,0,0,0,889,886,1,0,0,0,890,53,1,0,0,0,891,892,5,4,0,0, - 892,893,5,212,0,0,893,895,3,188,94,0,894,896,3,204,102,0,895,894, - 1,0,0,0,895,896,1,0,0,0,896,897,1,0,0,0,897,898,5,9,0,0,898,899, - 3,208,104,0,899,55,1,0,0,0,900,901,5,4,0,0,901,902,5,212,0,0,902, - 903,3,188,94,0,903,904,5,156,0,0,904,905,5,193,0,0,905,906,3,188, - 94,0,906,57,1,0,0,0,907,908,5,4,0,0,908,909,5,212,0,0,909,910,3, - 188,94,0,910,911,5,176,0,0,911,912,5,142,0,0,912,913,7,1,0,0,913, - 914,3,380,190,0,914,59,1,0,0,0,915,916,5,4,0,0,916,917,5,188,0,0, - 917,918,3,186,93,0,918,919,5,156,0,0,919,920,5,193,0,0,920,921,3, - 186,93,0,921,61,1,0,0,0,922,923,5,4,0,0,923,924,5,212,0,0,924,925, - 3,188,94,0,925,926,7,2,0,0,926,927,5,25,0,0,927,928,3,254,127,0, - 928,63,1,0,0,0,929,931,5,196,0,0,930,932,5,188,0,0,931,930,1,0,0, - 0,931,932,1,0,0,0,932,934,1,0,0,0,933,935,3,170,85,0,934,933,1,0, - 0,0,934,935,1,0,0,0,935,936,1,0,0,0,936,937,3,186,93,0,937,65,1, - 0,0,0,938,940,5,56,0,0,939,941,5,46,0,0,940,939,1,0,0,0,940,941, - 1,0,0,0,941,943,1,0,0,0,942,944,7,3,0,0,943,942,1,0,0,0,943,944, - 1,0,0,0,944,945,1,0,0,0,945,946,3,380,190,0,946,67,1,0,0,0,947,950, - 3,70,35,0,948,950,3,72,36,0,949,947,1,0,0,0,949,948,1,0,0,0,950, - 69,1,0,0,0,951,952,5,36,0,0,952,953,5,182,0,0,953,955,3,186,93,0, - 954,956,3,312,156,0,955,954,1,0,0,0,955,956,1,0,0,0,956,969,1,0, - 0,0,957,958,5,190,0,0,958,959,5,185,0,0,959,960,5,265,0,0,960,961, - 3,386,193,0,961,967,5,266,0,0,962,963,5,157,0,0,963,964,5,265,0, - 0,964,965,3,386,193,0,965,966,5,266,0,0,966,968,1,0,0,0,967,962, - 1,0,0,0,967,968,1,0,0,0,968,970,1,0,0,0,969,957,1,0,0,0,969,970, - 1,0,0,0,970,71,1,0,0,0,971,972,5,36,0,0,972,973,5,96,0,0,973,974, - 5,182,0,0,974,980,3,186,93,0,975,976,5,145,0,0,976,977,5,265,0,0, - 977,978,3,326,163,0,978,979,5,266,0,0,979,981,1,0,0,0,980,975,1, - 0,0,0,980,981,1,0,0,0,981,73,1,0,0,0,982,989,3,86,43,0,983,989,3, - 84,42,0,984,989,3,82,41,0,985,989,3,78,39,0,986,989,3,80,40,0,987, - 989,3,76,38,0,988,982,1,0,0,0,988,983,1,0,0,0,988,984,1,0,0,0,988, - 985,1,0,0,0,988,986,1,0,0,0,988,987,1,0,0,0,989,75,1,0,0,0,990,991, - 5,58,0,0,991,993,7,0,0,0,992,994,3,170,85,0,993,992,1,0,0,0,993, - 994,1,0,0,0,994,995,1,0,0,0,995,997,3,184,92,0,996,998,7,4,0,0,997, - 996,1,0,0,0,997,998,1,0,0,0,998,77,1,0,0,0,999,1000,5,58,0,0,1000, - 1002,5,212,0,0,1001,1003,3,170,85,0,1002,1001,1,0,0,0,1002,1003, - 1,0,0,0,1003,1004,1,0,0,0,1004,1005,3,188,94,0,1005,79,1,0,0,0,1006, - 1007,5,58,0,0,1007,1009,5,188,0,0,1008,1010,3,170,85,0,1009,1008, - 1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0,1011,1013,3,186,93,0, - 1012,1014,5,22,0,0,1013,1012,1,0,0,0,1013,1014,1,0,0,0,1014,81,1, - 0,0,0,1015,1017,5,58,0,0,1016,1018,5,96,0,0,1017,1016,1,0,0,0,1017, - 1018,1,0,0,0,1018,1019,1,0,0,0,1019,1020,5,182,0,0,1020,1023,3,186, - 93,0,1021,1022,5,145,0,0,1022,1024,3,326,163,0,1023,1021,1,0,0,0, - 1023,1024,1,0,0,0,1024,83,1,0,0,0,1025,1027,5,58,0,0,1026,1028,5, - 12,0,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,1029,1,0,0,0,1029, - 1031,5,84,0,0,1030,1032,3,170,85,0,1031,1030,1,0,0,0,1031,1032,1, - 0,0,0,1032,1033,1,0,0,0,1033,1046,3,190,95,0,1034,1043,5,265,0,0, - 1035,1040,3,352,176,0,1036,1037,5,263,0,0,1037,1039,3,352,176,0, - 1038,1036,1,0,0,0,1039,1042,1,0,0,0,1040,1038,1,0,0,0,1040,1041, - 1,0,0,0,1041,1044,1,0,0,0,1042,1040,1,0,0,0,1043,1035,1,0,0,0,1043, - 1044,1,0,0,0,1044,1045,1,0,0,0,1045,1047,5,266,0,0,1046,1034,1,0, - 0,0,1046,1047,1,0,0,0,1047,85,1,0,0,0,1048,1049,5,58,0,0,1049,1050, - 5,166,0,0,1050,1051,3,384,192,0,1051,87,1,0,0,0,1052,1055,3,90,45, - 0,1053,1055,3,92,46,0,1054,1052,1,0,0,0,1054,1053,1,0,0,0,1055,89, - 1,0,0,0,1056,1057,5,86,0,0,1057,1058,5,166,0,0,1058,1059,3,384,192, - 0,1059,1060,5,193,0,0,1060,1061,5,87,0,0,1061,1062,3,384,192,0,1062, - 91,1,0,0,0,1063,1064,5,86,0,0,1064,1065,3,376,188,0,1065,1066,5, - 136,0,0,1066,1068,3,378,189,0,1067,1069,3,380,190,0,1068,1067,1, - 0,0,0,1068,1069,1,0,0,0,1069,1070,1,0,0,0,1070,1071,5,193,0,0,1071, - 1072,3,382,191,0,1072,93,1,0,0,0,1073,1076,3,96,48,0,1074,1076,3, - 98,49,0,1075,1073,1,0,0,0,1075,1074,1,0,0,0,1076,95,1,0,0,0,1077, - 1078,5,161,0,0,1078,1079,5,166,0,0,1079,1080,3,384,192,0,1080,1081, - 5,82,0,0,1081,1082,5,87,0,0,1082,1083,3,384,192,0,1083,97,1,0,0, - 0,1084,1088,5,161,0,0,1085,1086,5,86,0,0,1086,1087,5,137,0,0,1087, - 1089,5,78,0,0,1088,1085,1,0,0,0,1088,1089,1,0,0,0,1089,1090,1,0, - 0,0,1090,1091,3,376,188,0,1091,1092,5,136,0,0,1092,1094,3,378,189, - 0,1093,1095,3,380,190,0,1094,1093,1,0,0,0,1094,1095,1,0,0,0,1095, - 1096,1,0,0,0,1096,1102,5,82,0,0,1097,1103,3,382,191,0,1098,1100, - 5,166,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1101,1,0,0,0, - 1101,1103,3,384,192,0,1102,1097,1,0,0,0,1102,1099,1,0,0,0,1103,99, - 1,0,0,0,1104,1106,3,210,105,0,1105,1104,1,0,0,0,1105,1106,1,0,0, - 0,1106,1107,1,0,0,0,1107,1108,5,99,0,0,1108,1110,7,5,0,0,1109,1111, - 5,188,0,0,1110,1109,1,0,0,0,1110,1111,1,0,0,0,1111,1112,1,0,0,0, - 1112,1114,3,186,93,0,1113,1115,3,312,156,0,1114,1113,1,0,0,0,1114, - 1115,1,0,0,0,1115,1128,1,0,0,0,1116,1117,5,145,0,0,1117,1118,5,265, - 0,0,1118,1123,3,326,163,0,1119,1120,5,263,0,0,1120,1122,3,326,163, - 0,1121,1119,1,0,0,0,1122,1125,1,0,0,0,1123,1121,1,0,0,0,1123,1124, - 1,0,0,0,1124,1126,1,0,0,0,1125,1123,1,0,0,0,1126,1127,5,266,0,0, - 1127,1129,1,0,0,0,1128,1116,1,0,0,0,1128,1129,1,0,0,0,1129,1130, - 1,0,0,0,1130,1131,3,208,104,0,1131,101,1,0,0,0,1132,1135,3,104,52, - 0,1133,1135,3,106,53,0,1134,1132,1,0,0,0,1134,1133,1,0,0,0,1135, - 103,1,0,0,0,1136,1138,5,50,0,0,1137,1139,5,82,0,0,1138,1137,1,0, - 0,0,1138,1139,1,0,0,0,1139,1140,1,0,0,0,1140,1142,3,186,93,0,1141, - 1143,3,276,138,0,1142,1141,1,0,0,0,1142,1143,1,0,0,0,1143,105,1, - 0,0,0,1144,1145,5,50,0,0,1145,1150,3,186,93,0,1146,1148,5,9,0,0, - 1147,1146,1,0,0,0,1147,1148,1,0,0,0,1148,1149,1,0,0,0,1149,1151, - 3,384,192,0,1150,1147,1,0,0,0,1150,1151,1,0,0,0,1151,1152,1,0,0, - 0,1152,1161,5,82,0,0,1153,1158,3,300,150,0,1154,1155,5,263,0,0,1155, - 1157,3,300,150,0,1156,1154,1,0,0,0,1157,1160,1,0,0,0,1158,1156,1, - 0,0,0,1158,1159,1,0,0,0,1159,1162,1,0,0,0,1160,1158,1,0,0,0,1161, - 1153,1,0,0,0,1161,1162,1,0,0,0,1162,1164,1,0,0,0,1163,1165,3,276, - 138,0,1164,1163,1,0,0,0,1164,1165,1,0,0,0,1165,107,1,0,0,0,1166, - 1167,5,54,0,0,1167,1168,3,186,93,0,1168,1169,5,176,0,0,1169,1179, - 3,200,100,0,1170,1171,5,82,0,0,1171,1176,3,300,150,0,1172,1173,5, - 263,0,0,1173,1175,3,300,150,0,1174,1172,1,0,0,0,1175,1178,1,0,0, - 0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1180,1,0,0,0,1178,1176, - 1,0,0,0,1179,1170,1,0,0,0,1179,1180,1,0,0,0,1180,1182,1,0,0,0,1181, - 1183,3,276,138,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183,109,1, - 0,0,0,1184,1185,5,207,0,0,1185,1187,5,103,0,0,1186,1188,5,188,0, - 0,1187,1186,1,0,0,0,1187,1188,1,0,0,0,1188,1189,1,0,0,0,1189,1191, - 3,186,93,0,1190,1192,3,312,156,0,1191,1190,1,0,0,0,1191,1192,1,0, - 0,0,1192,1193,1,0,0,0,1193,1194,3,208,104,0,1194,111,1,0,0,0,1195, - 1208,3,132,66,0,1196,1208,3,134,67,0,1197,1208,3,136,68,0,1198,1208, - 3,130,65,0,1199,1208,3,128,64,0,1200,1208,3,126,63,0,1201,1208,3, - 124,62,0,1202,1208,3,122,61,0,1203,1208,3,120,60,0,1204,1208,3,118, - 59,0,1205,1208,3,116,58,0,1206,1208,3,114,57,0,1207,1195,1,0,0,0, - 1207,1196,1,0,0,0,1207,1197,1,0,0,0,1207,1198,1,0,0,0,1207,1199, - 1,0,0,0,1207,1200,1,0,0,0,1207,1201,1,0,0,0,1207,1202,1,0,0,0,1207, - 1203,1,0,0,0,1207,1204,1,0,0,0,1207,1205,1,0,0,0,1207,1206,1,0,0, - 0,1208,113,1,0,0,0,1209,1210,5,179,0,0,1210,1222,7,6,0,0,1211,1213, - 5,115,0,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0, - 1214,1219,3,338,169,0,1215,1216,5,271,0,0,1216,1218,3,338,169,0, - 1217,1215,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219,1220, - 1,0,0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1222,1212,1,0,0,0,1222, - 1223,1,0,0,0,1223,115,1,0,0,0,1224,1225,5,179,0,0,1225,1228,5,189, - 0,0,1226,1227,5,94,0,0,1227,1229,3,186,93,0,1228,1226,1,0,0,0,1228, - 1229,1,0,0,0,1229,1241,1,0,0,0,1230,1232,5,115,0,0,1231,1230,1,0, - 0,0,1231,1232,1,0,0,0,1232,1233,1,0,0,0,1233,1238,3,338,169,0,1234, - 1235,5,271,0,0,1235,1237,3,338,169,0,1236,1234,1,0,0,0,1237,1240, - 1,0,0,0,1238,1236,1,0,0,0,1238,1239,1,0,0,0,1239,1242,1,0,0,0,1240, - 1238,1,0,0,0,1241,1231,1,0,0,0,1241,1242,1,0,0,0,1242,117,1,0,0, - 0,1243,1245,5,179,0,0,1244,1246,7,7,0,0,1245,1244,1,0,0,0,1245,1246, - 1,0,0,0,1246,1247,1,0,0,0,1247,1250,5,85,0,0,1248,1249,5,94,0,0, - 1249,1251,3,184,92,0,1250,1248,1,0,0,0,1250,1251,1,0,0,0,1251,1263, - 1,0,0,0,1252,1254,5,115,0,0,1253,1252,1,0,0,0,1253,1254,1,0,0,0, - 1254,1255,1,0,0,0,1255,1260,3,338,169,0,1256,1257,5,271,0,0,1257, - 1259,3,338,169,0,1258,1256,1,0,0,0,1259,1262,1,0,0,0,1260,1258,1, - 0,0,0,1260,1261,1,0,0,0,1261,1264,1,0,0,0,1262,1260,1,0,0,0,1263, - 1253,1,0,0,0,1263,1264,1,0,0,0,1264,119,1,0,0,0,1265,1266,5,179, - 0,0,1266,1267,5,37,0,0,1267,1268,5,188,0,0,1268,1269,3,186,93,0, - 1269,121,1,0,0,0,1270,1271,5,179,0,0,1271,1272,5,37,0,0,1272,1273, - 5,212,0,0,1273,1274,3,188,94,0,1274,123,1,0,0,0,1275,1276,5,179, - 0,0,1276,1277,5,188,0,0,1277,1278,5,182,0,0,1278,1279,3,186,93,0, - 1279,125,1,0,0,0,1280,1281,5,179,0,0,1281,1282,5,32,0,0,1282,1283, - 5,182,0,0,1283,1284,3,186,93,0,1284,127,1,0,0,0,1285,1287,5,179, - 0,0,1286,1288,5,154,0,0,1287,1286,1,0,0,0,1287,1288,1,0,0,0,1288, - 1289,1,0,0,0,1289,1290,5,146,0,0,1290,1291,3,186,93,0,1291,129,1, - 0,0,0,1292,1293,5,179,0,0,1293,1294,5,73,0,0,1294,1295,5,94,0,0, - 1295,1305,3,186,93,0,1296,1297,5,145,0,0,1297,1298,5,265,0,0,1298, - 1301,3,326,163,0,1299,1300,5,263,0,0,1300,1302,3,326,163,0,1301, - 1299,1,0,0,0,1301,1302,1,0,0,0,1302,1303,1,0,0,0,1303,1304,5,266, - 0,0,1304,1306,1,0,0,0,1305,1296,1,0,0,0,1305,1306,1,0,0,0,1306,131, - 1,0,0,0,1307,1309,5,179,0,0,1308,1310,5,39,0,0,1309,1308,1,0,0,0, - 1309,1310,1,0,0,0,1310,1311,1,0,0,0,1311,1312,5,167,0,0,1312,133, - 1,0,0,0,1313,1314,5,179,0,0,1314,1315,5,166,0,0,1315,1316,5,86,0, - 0,1316,1317,5,87,0,0,1317,1318,3,384,192,0,1318,135,1,0,0,0,1319, - 1334,3,138,69,0,1320,1334,3,140,70,0,1321,1334,3,142,71,0,1322,1323, - 5,179,0,0,1323,1324,5,86,0,0,1324,1325,7,8,0,0,1325,1331,3,384,192, - 0,1326,1327,5,136,0,0,1327,1329,7,9,0,0,1328,1330,3,380,190,0,1329, - 1328,1,0,0,0,1329,1330,1,0,0,0,1330,1332,1,0,0,0,1331,1326,1,0,0, - 0,1331,1332,1,0,0,0,1332,1334,1,0,0,0,1333,1319,1,0,0,0,1333,1320, - 1,0,0,0,1333,1321,1,0,0,0,1333,1322,1,0,0,0,1334,137,1,0,0,0,1335, - 1336,5,179,0,0,1336,1337,5,86,0,0,1337,1338,7,8,0,0,1338,1344,3, - 384,192,0,1339,1340,5,136,0,0,1340,1342,5,46,0,0,1341,1343,3,184, - 92,0,1342,1341,1,0,0,0,1342,1343,1,0,0,0,1343,1345,1,0,0,0,1344, - 1339,1,0,0,0,1344,1345,1,0,0,0,1345,139,1,0,0,0,1346,1347,5,179, - 0,0,1347,1348,5,86,0,0,1348,1349,7,8,0,0,1349,1355,3,384,192,0,1350, - 1351,5,136,0,0,1351,1353,5,188,0,0,1352,1354,3,186,93,0,1353,1352, - 1,0,0,0,1353,1354,1,0,0,0,1354,1356,1,0,0,0,1355,1350,1,0,0,0,1355, - 1356,1,0,0,0,1356,141,1,0,0,0,1357,1358,5,179,0,0,1358,1359,5,86, - 0,0,1359,1360,7,8,0,0,1360,1366,3,384,192,0,1361,1362,5,136,0,0, - 1362,1364,5,32,0,0,1363,1365,3,192,96,0,1364,1363,1,0,0,0,1364,1365, - 1,0,0,0,1365,1367,1,0,0,0,1366,1361,1,0,0,0,1366,1367,1,0,0,0,1367, - 143,1,0,0,0,1368,1372,3,146,73,0,1369,1372,3,148,74,0,1370,1372, - 3,150,75,0,1371,1368,1,0,0,0,1371,1369,1,0,0,0,1371,1370,1,0,0,0, - 1372,145,1,0,0,0,1373,1374,5,34,0,0,1374,1375,5,136,0,0,1375,1376, - 5,46,0,0,1376,1377,3,184,92,0,1377,1380,5,108,0,0,1378,1381,3,338, - 169,0,1379,1381,5,133,0,0,1380,1378,1,0,0,0,1380,1379,1,0,0,0,1381, - 147,1,0,0,0,1382,1383,5,34,0,0,1383,1384,5,136,0,0,1384,1385,5,188, - 0,0,1385,1386,3,186,93,0,1386,1389,5,108,0,0,1387,1390,3,338,169, - 0,1388,1390,5,133,0,0,1389,1387,1,0,0,0,1389,1388,1,0,0,0,1390,149, - 1,0,0,0,1391,1392,5,34,0,0,1392,1393,5,136,0,0,1393,1394,5,32,0, - 0,1394,1395,3,192,96,0,1395,1398,5,108,0,0,1396,1399,3,338,169,0, - 1397,1399,5,133,0,0,1398,1396,1,0,0,0,1398,1397,1,0,0,0,1399,151, - 1,0,0,0,1400,1401,5,67,0,0,1401,1402,3,4,2,0,1402,153,1,0,0,0,1403, - 1409,5,176,0,0,1404,1410,5,2,0,0,1405,1406,3,384,192,0,1406,1407, - 5,249,0,0,1407,1408,3,326,163,0,1408,1410,1,0,0,0,1409,1404,1,0, - 0,0,1409,1405,1,0,0,0,1409,1410,1,0,0,0,1410,155,1,0,0,0,1411,1412, - 5,264,0,0,1412,1413,5,180,0,0,1413,1423,5,265,0,0,1414,1416,3,338, - 169,0,1415,1414,1,0,0,0,1415,1416,1,0,0,0,1416,1424,1,0,0,0,1417, - 1420,3,338,169,0,1418,1419,5,263,0,0,1419,1421,3,326,163,0,1420, - 1418,1,0,0,0,1420,1421,1,0,0,0,1421,1424,1,0,0,0,1422,1424,3,326, - 163,0,1423,1415,1,0,0,0,1423,1417,1,0,0,0,1423,1422,1,0,0,0,1424, - 1425,1,0,0,0,1425,1426,5,266,0,0,1426,157,1,0,0,0,1427,1428,5,107, - 0,0,1428,1429,5,121,0,0,1429,1430,3,186,93,0,1430,159,1,0,0,0,1431, - 1432,5,118,0,0,1432,1433,5,45,0,0,1433,1434,5,98,0,0,1434,1436,5, - 274,0,0,1435,1437,5,144,0,0,1436,1435,1,0,0,0,1436,1437,1,0,0,0, - 1437,1438,1,0,0,0,1438,1439,5,103,0,0,1439,1440,5,188,0,0,1440,1450, - 3,186,93,0,1441,1442,5,145,0,0,1442,1443,5,265,0,0,1443,1446,3,326, - 163,0,1444,1445,5,263,0,0,1445,1447,3,326,163,0,1446,1444,1,0,0, - 0,1446,1447,1,0,0,0,1447,1448,1,0,0,0,1448,1449,5,266,0,0,1449,1451, - 1,0,0,0,1450,1441,1,0,0,0,1450,1451,1,0,0,0,1451,161,1,0,0,0,1452, - 1456,3,164,82,0,1453,1456,3,166,83,0,1454,1456,3,168,84,0,1455,1452, - 1,0,0,0,1455,1453,1,0,0,0,1455,1454,1,0,0,0,1456,163,1,0,0,0,1457, - 1458,5,162,0,0,1458,1471,3,186,93,0,1459,1460,5,145,0,0,1460,1461, - 5,265,0,0,1461,1466,3,326,163,0,1462,1463,5,263,0,0,1463,1465,3, - 326,163,0,1464,1462,1,0,0,0,1465,1468,1,0,0,0,1466,1467,1,0,0,0, - 1466,1464,1,0,0,0,1467,1469,1,0,0,0,1468,1466,1,0,0,0,1469,1470, - 5,266,0,0,1470,1472,1,0,0,0,1471,1459,1,0,0,0,1471,1472,1,0,0,0, - 1472,165,1,0,0,0,1473,1474,5,162,0,0,1474,1475,5,13,0,0,1475,167, - 1,0,0,0,1476,1477,5,162,0,0,1477,1478,5,85,0,0,1478,1479,3,190,95, - 0,1479,169,1,0,0,0,1480,1481,5,93,0,0,1481,1482,5,66,0,0,1482,171, - 1,0,0,0,1483,1484,5,93,0,0,1484,1485,5,132,0,0,1485,1486,5,66,0, - 0,1486,173,1,0,0,0,1487,1488,3,380,190,0,1488,175,1,0,0,0,1489,1490, - 3,380,190,0,1490,177,1,0,0,0,1491,1492,3,380,190,0,1492,179,1,0, - 0,0,1493,1494,3,380,190,0,1494,181,1,0,0,0,1495,1496,3,380,190,0, - 1496,183,1,0,0,0,1497,1498,3,380,190,0,1498,185,1,0,0,0,1499,1504, - 3,384,192,0,1500,1501,5,261,0,0,1501,1503,3,384,192,0,1502,1500, - 1,0,0,0,1503,1506,1,0,0,0,1504,1502,1,0,0,0,1504,1505,1,0,0,0,1505, - 187,1,0,0,0,1506,1504,1,0,0,0,1507,1512,3,384,192,0,1508,1509,5, - 261,0,0,1509,1511,3,384,192,0,1510,1508,1,0,0,0,1511,1514,1,0,0, - 0,1512,1510,1,0,0,0,1512,1513,1,0,0,0,1513,189,1,0,0,0,1514,1512, - 1,0,0,0,1515,1518,3,388,194,0,1516,1518,3,380,190,0,1517,1515,1, - 0,0,0,1517,1516,1,0,0,0,1518,191,1,0,0,0,1519,1522,3,380,190,0,1520, - 1522,4,96,0,0,1521,1519,1,0,0,0,1521,1520,1,0,0,0,1522,193,1,0,0, - 0,1523,1524,3,380,190,0,1524,195,1,0,0,0,1525,1528,3,186,93,0,1526, - 1528,3,188,94,0,1527,1525,1,0,0,0,1527,1526,1,0,0,0,1528,197,1,0, - 0,0,1529,1530,5,21,0,0,1530,1531,5,26,0,0,1531,1533,3,312,156,0, - 1532,1529,1,0,0,0,1532,1533,1,0,0,0,1533,1535,1,0,0,0,1534,1536, - 3,224,112,0,1535,1534,1,0,0,0,1535,1536,1,0,0,0,1536,1540,1,0,0, - 0,1537,1538,5,168,0,0,1538,1539,5,79,0,0,1539,1541,3,260,130,0,1540, - 1537,1,0,0,0,1540,1541,1,0,0,0,1541,1545,1,0,0,0,1542,1543,5,216, - 0,0,1543,1544,5,175,0,0,1544,1546,3,254,127,0,1545,1542,1,0,0,0, - 1545,1546,1,0,0,0,1546,1550,1,0,0,0,1547,1548,5,23,0,0,1548,1549, - 5,9,0,0,1549,1551,3,236,118,0,1550,1547,1,0,0,0,1550,1551,1,0,0, - 0,1551,1554,1,0,0,0,1552,1553,5,24,0,0,1553,1555,3,338,169,0,1554, - 1552,1,0,0,0,1554,1555,1,0,0,0,1555,1566,1,0,0,0,1556,1557,5,30, - 0,0,1557,1558,5,94,0,0,1558,1563,3,380,190,0,1559,1560,5,216,0,0, - 1560,1561,5,151,0,0,1561,1562,5,249,0,0,1562,1564,5,277,0,0,1563, - 1559,1,0,0,0,1563,1564,1,0,0,0,1564,1567,1,0,0,0,1565,1567,5,197, - 0,0,1566,1556,1,0,0,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567,1570, - 1,0,0,0,1568,1569,5,25,0,0,1569,1571,3,254,127,0,1570,1568,1,0,0, - 0,1570,1571,1,0,0,0,1571,199,1,0,0,0,1572,1577,3,202,101,0,1573, - 1574,5,263,0,0,1574,1576,3,202,101,0,1575,1573,1,0,0,0,1576,1579, - 1,0,0,0,1577,1575,1,0,0,0,1577,1578,1,0,0,0,1578,201,1,0,0,0,1579, - 1577,1,0,0,0,1580,1581,3,380,190,0,1581,1582,5,249,0,0,1582,1583, - 3,326,163,0,1583,203,1,0,0,0,1584,1586,5,265,0,0,1585,1587,3,206, - 103,0,1586,1585,1,0,0,0,1586,1587,1,0,0,0,1587,1594,1,0,0,0,1588, - 1590,5,263,0,0,1589,1591,3,206,103,0,1590,1589,1,0,0,0,1590,1591, - 1,0,0,0,1591,1593,1,0,0,0,1592,1588,1,0,0,0,1593,1596,1,0,0,0,1594, - 1592,1,0,0,0,1594,1595,1,0,0,0,1595,1597,1,0,0,0,1596,1594,1,0,0, - 0,1597,1598,5,266,0,0,1598,205,1,0,0,0,1599,1601,3,182,91,0,1600, - 1602,3,224,112,0,1601,1600,1,0,0,0,1601,1602,1,0,0,0,1602,207,1, - 0,0,0,1603,1605,3,210,105,0,1604,1603,1,0,0,0,1604,1605,1,0,0,0, - 1605,1606,1,0,0,0,1606,1607,3,264,132,0,1607,209,1,0,0,0,1608,1609, - 5,216,0,0,1609,1614,3,286,143,0,1610,1611,5,263,0,0,1611,1613,3, - 286,143,0,1612,1610,1,0,0,0,1613,1616,1,0,0,0,1614,1612,1,0,0,0, - 1614,1615,1,0,0,0,1615,211,1,0,0,0,1616,1614,1,0,0,0,1617,1618,5, - 150,0,0,1618,1619,5,110,0,0,1619,1621,3,312,156,0,1620,1622,5,53, - 0,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0,1622,1626,1,0,0,0,1623,1627, - 5,225,0,0,1624,1625,5,263,0,0,1625,1627,5,225,0,0,1626,1623,1,0, - 0,0,1626,1624,1,0,0,0,1626,1627,1,0,0,0,1627,1631,1,0,0,0,1628,1632, - 5,226,0,0,1629,1630,5,263,0,0,1630,1632,5,226,0,0,1631,1628,1,0, - 0,0,1631,1629,1,0,0,0,1631,1632,1,0,0,0,1632,1645,1,0,0,0,1633,1634, - 5,263,0,0,1634,1637,3,214,107,0,1635,1637,3,214,107,0,1636,1633, - 1,0,0,0,1636,1635,1,0,0,0,1637,1642,1,0,0,0,1638,1639,5,263,0,0, - 1639,1641,3,214,107,0,1640,1638,1,0,0,0,1641,1644,1,0,0,0,1642,1643, - 1,0,0,0,1642,1640,1,0,0,0,1643,1646,1,0,0,0,1644,1642,1,0,0,0,1645, - 1636,1,0,0,0,1645,1646,1,0,0,0,1646,213,1,0,0,0,1647,1648,5,81,0, - 0,1648,1649,5,110,0,0,1649,1650,3,312,156,0,1650,1651,5,224,0,0, - 1651,1652,3,186,93,0,1652,1654,3,312,156,0,1653,1655,5,53,0,0,1654, - 1653,1,0,0,0,1654,1655,1,0,0,0,1655,1657,1,0,0,0,1656,1658,5,225, - 0,0,1657,1656,1,0,0,0,1657,1658,1,0,0,0,1658,1660,1,0,0,0,1659,1661, - 5,226,0,0,1660,1659,1,0,0,0,1660,1661,1,0,0,0,1661,215,1,0,0,0,1662, - 1663,3,192,96,0,1663,1666,3,352,176,0,1664,1665,5,34,0,0,1665,1667, - 3,338,169,0,1666,1664,1,0,0,0,1666,1667,1,0,0,0,1667,217,1,0,0,0, - 1668,1669,3,182,91,0,1669,1671,3,352,176,0,1670,1672,3,224,112,0, - 1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672,219,1,0,0,0,1673,1674,3, - 222,111,0,1674,221,1,0,0,0,1675,1676,3,182,91,0,1676,1684,3,352, - 176,0,1677,1681,3,230,115,0,1678,1680,3,230,115,0,1679,1678,1,0, - 0,0,1680,1683,1,0,0,0,1681,1682,1,0,0,0,1681,1679,1,0,0,0,1682,1685, - 1,0,0,0,1683,1681,1,0,0,0,1684,1677,1,0,0,0,1684,1685,1,0,0,0,1685, - 1687,1,0,0,0,1686,1688,3,224,112,0,1687,1686,1,0,0,0,1687,1688,1, - 0,0,0,1688,1691,1,0,0,0,1689,1690,5,150,0,0,1690,1692,5,110,0,0, - 1691,1689,1,0,0,0,1691,1692,1,0,0,0,1692,223,1,0,0,0,1693,1694,5, - 34,0,0,1694,1695,3,338,169,0,1695,225,1,0,0,0,1696,1704,3,216,108, - 0,1697,1701,3,230,115,0,1698,1700,3,230,115,0,1699,1698,1,0,0,0, - 1700,1703,1,0,0,0,1701,1702,1,0,0,0,1701,1699,1,0,0,0,1702,1705, - 1,0,0,0,1703,1701,1,0,0,0,1704,1697,1,0,0,0,1704,1705,1,0,0,0,1705, - 227,1,0,0,0,1706,1707,3,182,91,0,1707,1710,3,352,176,0,1708,1709, - 5,34,0,0,1709,1711,3,338,169,0,1710,1708,1,0,0,0,1710,1711,1,0,0, - 0,1711,1719,1,0,0,0,1712,1716,3,230,115,0,1713,1715,3,230,115,0, - 1714,1713,1,0,0,0,1715,1718,1,0,0,0,1716,1717,1,0,0,0,1716,1714, - 1,0,0,0,1717,1720,1,0,0,0,1718,1716,1,0,0,0,1719,1712,1,0,0,0,1719, - 1720,1,0,0,0,1720,229,1,0,0,0,1721,1723,5,132,0,0,1722,1721,1,0, - 0,0,1722,1723,1,0,0,0,1723,1724,1,0,0,0,1724,1727,5,133,0,0,1725, - 1727,3,232,116,0,1726,1722,1,0,0,0,1726,1725,1,0,0,0,1727,231,1, - 0,0,0,1728,1729,5,60,0,0,1729,1737,3,326,163,0,1730,1731,5,35,0, - 0,1731,1737,3,326,163,0,1732,1733,5,51,0,0,1733,1737,3,326,163,0, - 1734,1735,5,16,0,0,1735,1737,3,386,193,0,1736,1728,1,0,0,0,1736, - 1730,1,0,0,0,1736,1732,1,0,0,0,1736,1734,1,0,0,0,1737,233,1,0,0, - 0,1738,1739,7,10,0,0,1739,235,1,0,0,0,1740,1741,7,11,0,0,1741,237, - 1,0,0,0,1742,1747,3,240,120,0,1743,1744,5,263,0,0,1744,1746,3,240, - 120,0,1745,1743,1,0,0,0,1746,1749,1,0,0,0,1747,1748,1,0,0,0,1747, - 1745,1,0,0,0,1748,1752,1,0,0,0,1749,1747,1,0,0,0,1750,1751,5,263, - 0,0,1751,1753,3,242,121,0,1752,1750,1,0,0,0,1752,1753,1,0,0,0,1753, - 1756,1,0,0,0,1754,1756,3,242,121,0,1755,1742,1,0,0,0,1755,1754,1, - 0,0,0,1756,239,1,0,0,0,1757,1759,5,89,0,0,1758,1760,3,312,156,0, - 1759,1758,1,0,0,0,1759,1760,1,0,0,0,1760,1761,1,0,0,0,1761,1762, - 5,146,0,0,1762,1763,3,386,193,0,1763,241,1,0,0,0,1764,1766,5,154, - 0,0,1765,1767,3,312,156,0,1766,1765,1,0,0,0,1766,1767,1,0,0,0,1767, - 1768,1,0,0,0,1768,1769,5,265,0,0,1769,1770,5,145,0,0,1770,1776,3, - 244,122,0,1771,1772,5,263,0,0,1772,1773,5,145,0,0,1773,1775,3,244, - 122,0,1774,1771,1,0,0,0,1775,1778,1,0,0,0,1776,1777,1,0,0,0,1776, - 1774,1,0,0,0,1777,1779,1,0,0,0,1778,1776,1,0,0,0,1779,1780,5,266, - 0,0,1780,243,1,0,0,0,1781,1782,5,210,0,0,1782,1783,3,250,125,0,1783, - 1784,3,326,163,0,1784,1797,1,0,0,0,1785,1786,3,326,163,0,1786,1787, - 3,248,124,0,1787,1789,1,0,0,0,1788,1785,1,0,0,0,1788,1789,1,0,0, - 0,1789,1790,1,0,0,0,1790,1794,5,211,0,0,1791,1792,3,248,124,0,1792, - 1793,3,326,163,0,1793,1795,1,0,0,0,1794,1791,1,0,0,0,1794,1795,1, - 0,0,0,1795,1797,1,0,0,0,1796,1781,1,0,0,0,1796,1788,1,0,0,0,1797, - 245,1,0,0,0,1798,1799,5,30,0,0,1799,1800,5,94,0,0,1800,1805,3,384, - 192,0,1801,1802,5,216,0,0,1802,1803,5,151,0,0,1803,1804,5,249,0, - 0,1804,1806,3,386,193,0,1805,1801,1,0,0,0,1805,1806,1,0,0,0,1806, - 1809,1,0,0,0,1807,1809,5,197,0,0,1808,1798,1,0,0,0,1808,1807,1,0, - 0,0,1809,247,1,0,0,0,1810,1816,1,0,0,0,1811,1816,5,251,0,0,1812, - 1816,5,252,0,0,1813,1816,5,253,0,0,1814,1816,5,254,0,0,1815,1810, - 1,0,0,0,1815,1811,1,0,0,0,1815,1812,1,0,0,0,1815,1813,1,0,0,0,1815, - 1814,1,0,0,0,1816,249,1,0,0,0,1817,1826,5,249,0,0,1818,1826,5,250, - 0,0,1819,1826,5,115,0,0,1820,1826,5,164,0,0,1821,1826,5,163,0,0, - 1822,1826,5,15,0,0,1823,1826,5,94,0,0,1824,1826,3,248,124,0,1825, - 1817,1,0,0,0,1825,1818,1,0,0,0,1825,1819,1,0,0,0,1825,1820,1,0,0, - 0,1825,1821,1,0,0,0,1825,1822,1,0,0,0,1825,1823,1,0,0,0,1825,1824, - 1,0,0,0,1826,251,1,0,0,0,1827,1828,5,115,0,0,1828,1831,3,380,190, - 0,1829,1830,7,12,0,0,1830,1832,5,153,0,0,1831,1829,1,0,0,0,1831, - 1832,1,0,0,0,1832,253,1,0,0,0,1833,1834,5,265,0,0,1834,1839,3,262, - 131,0,1835,1836,5,263,0,0,1836,1838,3,262,131,0,1837,1835,1,0,0, - 0,1838,1841,1,0,0,0,1839,1837,1,0,0,0,1839,1840,1,0,0,0,1840,1842, - 1,0,0,0,1841,1839,1,0,0,0,1842,1843,5,266,0,0,1843,255,1,0,0,0,1844, - 1845,5,265,0,0,1845,1850,3,216,108,0,1846,1847,5,263,0,0,1847,1849, - 3,216,108,0,1848,1846,1,0,0,0,1849,1852,1,0,0,0,1850,1851,1,0,0, - 0,1850,1848,1,0,0,0,1851,1853,1,0,0,0,1852,1850,1,0,0,0,1853,1854, - 5,266,0,0,1854,257,1,0,0,0,1855,1860,3,326,163,0,1856,1857,5,263, - 0,0,1857,1859,3,326,163,0,1858,1856,1,0,0,0,1859,1862,1,0,0,0,1860, - 1858,1,0,0,0,1860,1861,1,0,0,0,1861,259,1,0,0,0,1862,1860,1,0,0, - 0,1863,1873,5,52,0,0,1864,1865,5,71,0,0,1865,1866,5,191,0,0,1866, - 1867,5,26,0,0,1867,1871,3,338,169,0,1868,1869,5,63,0,0,1869,1870, - 5,26,0,0,1870,1872,3,338,169,0,1871,1868,1,0,0,0,1871,1872,1,0,0, - 0,1872,1874,1,0,0,0,1873,1864,1,0,0,0,1873,1874,1,0,0,0,1874,1879, - 1,0,0,0,1875,1876,5,117,0,0,1876,1877,5,191,0,0,1877,1878,5,26,0, - 0,1878,1880,3,338,169,0,1879,1875,1,0,0,0,1879,1880,1,0,0,0,1880, - 261,1,0,0,0,1881,1884,3,384,192,0,1882,1883,5,249,0,0,1883,1885, - 3,326,163,0,1884,1882,1,0,0,0,1884,1885,1,0,0,0,1885,263,1,0,0,0, - 1886,1897,3,266,133,0,1887,1888,5,139,0,0,1888,1889,5,26,0,0,1889, - 1894,3,270,135,0,1890,1891,5,263,0,0,1891,1893,3,270,135,0,1892, - 1890,1,0,0,0,1893,1896,1,0,0,0,1894,1892,1,0,0,0,1894,1895,1,0,0, - 0,1895,1898,1,0,0,0,1896,1894,1,0,0,0,1897,1887,1,0,0,0,1897,1898, - 1,0,0,0,1898,1905,1,0,0,0,1899,1900,5,116,0,0,1900,1903,3,326,163, - 0,1901,1902,5,135,0,0,1902,1904,5,277,0,0,1903,1901,1,0,0,0,1903, - 1904,1,0,0,0,1904,1906,1,0,0,0,1905,1899,1,0,0,0,1905,1906,1,0,0, - 0,1906,265,1,0,0,0,1907,1908,6,133,-1,0,1908,1909,3,268,134,0,1909, - 1924,1,0,0,0,1910,1911,10,2,0,0,1911,1913,5,100,0,0,1912,1914,3, - 288,144,0,1913,1912,1,0,0,0,1913,1914,1,0,0,0,1914,1915,1,0,0,0, - 1915,1923,3,266,133,3,1916,1917,10,1,0,0,1917,1919,7,13,0,0,1918, - 1920,3,288,144,0,1919,1918,1,0,0,0,1919,1920,1,0,0,0,1920,1921,1, - 0,0,0,1921,1923,3,266,133,2,1922,1910,1,0,0,0,1922,1916,1,0,0,0, - 1923,1926,1,0,0,0,1924,1922,1,0,0,0,1924,1925,1,0,0,0,1925,267,1, - 0,0,0,1926,1924,1,0,0,0,1927,1944,3,272,136,0,1928,1929,5,188,0, - 0,1929,1944,3,186,93,0,1930,1931,5,211,0,0,1931,1936,3,326,163,0, - 1932,1933,5,263,0,0,1933,1935,3,326,163,0,1934,1932,1,0,0,0,1935, - 1938,1,0,0,0,1936,1934,1,0,0,0,1936,1937,1,0,0,0,1937,1944,1,0,0, - 0,1938,1936,1,0,0,0,1939,1940,5,265,0,0,1940,1941,3,264,132,0,1941, - 1942,5,266,0,0,1942,1944,1,0,0,0,1943,1927,1,0,0,0,1943,1928,1,0, - 0,0,1943,1930,1,0,0,0,1943,1939,1,0,0,0,1944,269,1,0,0,0,1945,1947, - 3,324,162,0,1946,1948,7,14,0,0,1947,1946,1,0,0,0,1947,1948,1,0,0, - 0,1948,1951,1,0,0,0,1949,1950,5,134,0,0,1950,1952,7,15,0,0,1951, - 1949,1,0,0,0,1951,1952,1,0,0,0,1952,271,1,0,0,0,1953,1955,5,174, - 0,0,1954,1956,3,288,144,0,1955,1954,1,0,0,0,1955,1956,1,0,0,0,1956, - 1958,1,0,0,0,1957,1959,5,183,0,0,1958,1957,1,0,0,0,1958,1959,1,0, - 0,0,1959,1960,1,0,0,0,1960,1970,3,274,137,0,1961,1962,5,82,0,0,1962, - 1967,3,300,150,0,1963,1964,5,263,0,0,1964,1966,3,300,150,0,1965, - 1963,1,0,0,0,1966,1969,1,0,0,0,1967,1965,1,0,0,0,1967,1968,1,0,0, - 0,1968,1971,1,0,0,0,1969,1967,1,0,0,0,1970,1961,1,0,0,0,1970,1971, - 1,0,0,0,1971,1973,1,0,0,0,1972,1974,3,276,138,0,1973,1972,1,0,0, - 0,1973,1974,1,0,0,0,1974,1978,1,0,0,0,1975,1976,5,87,0,0,1976,1977, - 5,26,0,0,1977,1979,3,280,140,0,1978,1975,1,0,0,0,1978,1979,1,0,0, - 0,1979,1981,1,0,0,0,1980,1982,3,278,139,0,1981,1980,1,0,0,0,1981, - 1982,1,0,0,0,1982,273,1,0,0,0,1983,1988,3,290,145,0,1984,1985,5, - 263,0,0,1985,1987,3,290,145,0,1986,1984,1,0,0,0,1987,1990,1,0,0, - 0,1988,1986,1,0,0,0,1988,1989,1,0,0,0,1989,275,1,0,0,0,1990,1988, - 1,0,0,0,1991,1992,5,215,0,0,1992,1993,3,328,164,0,1993,277,1,0,0, - 0,1994,1995,5,90,0,0,1995,1996,3,328,164,0,1996,279,1,0,0,0,1997, - 1999,3,288,144,0,1998,1997,1,0,0,0,1998,1999,1,0,0,0,1999,2000,1, - 0,0,0,2000,2005,3,282,141,0,2001,2002,5,263,0,0,2002,2004,3,282, - 141,0,2003,2001,1,0,0,0,2004,2007,1,0,0,0,2005,2003,1,0,0,0,2005, - 2006,1,0,0,0,2006,281,1,0,0,0,2007,2005,1,0,0,0,2008,2009,3,284, - 142,0,2009,283,1,0,0,0,2010,2019,5,265,0,0,2011,2016,3,324,162,0, - 2012,2013,5,263,0,0,2013,2015,3,324,162,0,2014,2012,1,0,0,0,2015, - 2018,1,0,0,0,2016,2014,1,0,0,0,2016,2017,1,0,0,0,2017,2020,1,0,0, - 0,2018,2016,1,0,0,0,2019,2011,1,0,0,0,2019,2020,1,0,0,0,2020,2021, - 1,0,0,0,2021,2024,5,266,0,0,2022,2024,3,324,162,0,2023,2010,1,0, - 0,0,2023,2022,1,0,0,0,2024,285,1,0,0,0,2025,2027,3,384,192,0,2026, - 2028,3,312,156,0,2027,2026,1,0,0,0,2027,2028,1,0,0,0,2028,2029,1, - 0,0,0,2029,2030,5,9,0,0,2030,2031,3,318,159,0,2031,287,1,0,0,0,2032, - 2033,7,16,0,0,2033,289,1,0,0,0,2034,2036,3,294,147,0,2035,2037,3, - 292,146,0,2036,2035,1,0,0,0,2036,2037,1,0,0,0,2037,2044,1,0,0,0, - 2038,2040,3,296,148,0,2039,2041,3,292,146,0,2040,2039,1,0,0,0,2040, - 2041,1,0,0,0,2041,2044,1,0,0,0,2042,2044,3,298,149,0,2043,2034,1, - 0,0,0,2043,2038,1,0,0,0,2043,2042,1,0,0,0,2044,291,1,0,0,0,2045, - 2047,5,9,0,0,2046,2045,1,0,0,0,2046,2047,1,0,0,0,2047,2048,1,0,0, - 0,2048,2049,3,384,192,0,2049,293,1,0,0,0,2050,2051,3,192,96,0,2051, - 295,1,0,0,0,2052,2053,3,326,163,0,2053,297,1,0,0,0,2054,2055,3,380, - 190,0,2055,2056,5,261,0,0,2056,2058,1,0,0,0,2057,2054,1,0,0,0,2057, - 2058,1,0,0,0,2058,2059,1,0,0,0,2059,2060,5,257,0,0,2060,299,1,0, - 0,0,2061,2062,6,150,-1,0,2062,2063,3,306,153,0,2063,2077,1,0,0,0, - 2064,2073,10,2,0,0,2065,2066,5,38,0,0,2066,2067,5,109,0,0,2067,2074, - 3,306,153,0,2068,2069,3,302,151,0,2069,2070,5,109,0,0,2070,2071, - 3,300,150,0,2071,2072,3,304,152,0,2072,2074,1,0,0,0,2073,2065,1, - 0,0,0,2073,2068,1,0,0,0,2074,2076,1,0,0,0,2075,2064,1,0,0,0,2076, - 2079,1,0,0,0,2077,2075,1,0,0,0,2077,2078,1,0,0,0,2078,301,1,0,0, - 0,2079,2077,1,0,0,0,2080,2082,5,97,0,0,2081,2080,1,0,0,0,2081,2082, - 1,0,0,0,2082,2112,1,0,0,0,2083,2085,5,114,0,0,2084,2086,5,97,0,0, - 2085,2084,1,0,0,0,2085,2086,1,0,0,0,2086,2112,1,0,0,0,2087,2089, - 5,165,0,0,2088,2090,5,97,0,0,2089,2088,1,0,0,0,2089,2090,1,0,0,0, - 2090,2112,1,0,0,0,2091,2093,5,114,0,0,2092,2094,5,141,0,0,2093,2092, - 1,0,0,0,2093,2094,1,0,0,0,2094,2112,1,0,0,0,2095,2097,5,165,0,0, - 2096,2098,5,141,0,0,2097,2096,1,0,0,0,2097,2098,1,0,0,0,2098,2112, - 1,0,0,0,2099,2101,5,83,0,0,2100,2102,5,141,0,0,2101,2100,1,0,0,0, - 2101,2102,1,0,0,0,2102,2112,1,0,0,0,2103,2104,5,114,0,0,2104,2112, - 5,177,0,0,2105,2106,5,165,0,0,2106,2112,5,177,0,0,2107,2108,5,114, - 0,0,2108,2112,5,7,0,0,2109,2110,5,165,0,0,2110,2112,5,7,0,0,2111, - 2081,1,0,0,0,2111,2083,1,0,0,0,2111,2087,1,0,0,0,2111,2091,1,0,0, - 0,2111,2095,1,0,0,0,2111,2099,1,0,0,0,2111,2103,1,0,0,0,2111,2105, - 1,0,0,0,2111,2107,1,0,0,0,2111,2109,1,0,0,0,2112,303,1,0,0,0,2113, - 2114,5,136,0,0,2114,2128,3,328,164,0,2115,2116,5,205,0,0,2116,2117, - 5,265,0,0,2117,2122,3,384,192,0,2118,2119,5,263,0,0,2119,2121,3, - 384,192,0,2120,2118,1,0,0,0,2121,2124,1,0,0,0,2122,2120,1,0,0,0, - 2122,2123,1,0,0,0,2123,2125,1,0,0,0,2124,2122,1,0,0,0,2125,2126, - 5,266,0,0,2126,2128,1,0,0,0,2127,2113,1,0,0,0,2127,2115,1,0,0,0, - 2128,305,1,0,0,0,2129,2142,3,310,155,0,2130,2131,5,190,0,0,2131, - 2132,3,308,154,0,2132,2133,5,265,0,0,2133,2134,3,326,163,0,2134, - 2140,5,266,0,0,2135,2136,5,157,0,0,2136,2137,5,265,0,0,2137,2138, - 3,326,163,0,2138,2139,5,266,0,0,2139,2141,1,0,0,0,2140,2135,1,0, - 0,0,2140,2141,1,0,0,0,2141,2143,1,0,0,0,2142,2130,1,0,0,0,2142,2143, - 1,0,0,0,2143,307,1,0,0,0,2144,2145,7,17,0,0,2145,309,1,0,0,0,2146, - 2154,3,314,157,0,2147,2149,5,9,0,0,2148,2147,1,0,0,0,2148,2149,1, - 0,0,0,2149,2150,1,0,0,0,2150,2152,3,384,192,0,2151,2153,3,312,156, - 0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2155,1,0,0,0,2154,2148, - 1,0,0,0,2154,2155,1,0,0,0,2155,311,1,0,0,0,2156,2157,5,265,0,0,2157, - 2162,3,192,96,0,2158,2159,5,263,0,0,2159,2161,3,192,96,0,2160,2158, - 1,0,0,0,2161,2164,1,0,0,0,2162,2160,1,0,0,0,2162,2163,1,0,0,0,2163, - 2165,1,0,0,0,2164,2162,1,0,0,0,2165,2166,5,266,0,0,2166,313,1,0, - 0,0,2167,2172,3,196,98,0,2168,2172,3,316,158,0,2169,2172,3,320,160, - 0,2170,2172,3,322,161,0,2171,2167,1,0,0,0,2171,2168,1,0,0,0,2171, - 2169,1,0,0,0,2171,2170,1,0,0,0,2172,315,1,0,0,0,2173,2175,5,113, - 0,0,2174,2173,1,0,0,0,2174,2175,1,0,0,0,2175,2176,1,0,0,0,2176,2177, - 3,318,159,0,2177,317,1,0,0,0,2178,2179,5,265,0,0,2179,2180,3,208, - 104,0,2180,2181,5,266,0,0,2181,319,1,0,0,0,2182,2183,5,201,0,0,2183, - 2184,5,265,0,0,2184,2189,3,326,163,0,2185,2186,5,263,0,0,2186,2188, - 3,326,163,0,2187,2185,1,0,0,0,2188,2191,1,0,0,0,2189,2187,1,0,0, - 0,2189,2190,1,0,0,0,2190,2192,1,0,0,0,2191,2189,1,0,0,0,2192,2195, - 5,266,0,0,2193,2194,5,216,0,0,2194,2196,5,140,0,0,2195,2193,1,0, - 0,0,2195,2196,1,0,0,0,2196,321,1,0,0,0,2197,2198,5,265,0,0,2198, - 2199,3,300,150,0,2199,2200,5,266,0,0,2200,323,1,0,0,0,2201,2204, - 3,192,96,0,2202,2204,3,326,163,0,2203,2201,1,0,0,0,2203,2202,1,0, - 0,0,2204,325,1,0,0,0,2205,2206,3,328,164,0,2206,327,1,0,0,0,2207, - 2208,6,164,-1,0,2208,2210,3,332,166,0,2209,2211,3,330,165,0,2210, - 2209,1,0,0,0,2210,2211,1,0,0,0,2211,2215,1,0,0,0,2212,2213,5,132, - 0,0,2213,2215,3,328,164,3,2214,2207,1,0,0,0,2214,2212,1,0,0,0,2215, - 2224,1,0,0,0,2216,2217,10,2,0,0,2217,2218,5,5,0,0,2218,2223,3,328, - 164,3,2219,2220,10,1,0,0,2220,2221,5,138,0,0,2221,2223,3,328,164, - 2,2222,2216,1,0,0,0,2222,2219,1,0,0,0,2223,2226,1,0,0,0,2224,2222, - 1,0,0,0,2224,2225,1,0,0,0,2225,329,1,0,0,0,2226,2224,1,0,0,0,2227, - 2228,3,340,170,0,2228,2229,3,332,166,0,2229,2286,1,0,0,0,2230,2231, - 3,340,170,0,2231,2232,3,342,171,0,2232,2233,3,318,159,0,2233,2286, - 1,0,0,0,2234,2236,5,132,0,0,2235,2234,1,0,0,0,2235,2236,1,0,0,0, - 2236,2237,1,0,0,0,2237,2238,5,15,0,0,2238,2239,3,332,166,0,2239, - 2240,5,5,0,0,2240,2241,3,332,166,0,2241,2286,1,0,0,0,2242,2244,5, - 132,0,0,2243,2242,1,0,0,0,2243,2244,1,0,0,0,2244,2245,1,0,0,0,2245, - 2246,5,94,0,0,2246,2247,5,265,0,0,2247,2252,3,326,163,0,2248,2249, - 5,263,0,0,2249,2251,3,326,163,0,2250,2248,1,0,0,0,2251,2254,1,0, - 0,0,2252,2250,1,0,0,0,2252,2253,1,0,0,0,2253,2255,1,0,0,0,2254,2252, - 1,0,0,0,2255,2256,5,266,0,0,2256,2286,1,0,0,0,2257,2259,5,132,0, - 0,2258,2257,1,0,0,0,2258,2259,1,0,0,0,2259,2260,1,0,0,0,2260,2261, - 5,94,0,0,2261,2286,3,318,159,0,2262,2264,5,132,0,0,2263,2262,1,0, - 0,0,2263,2264,1,0,0,0,2264,2265,1,0,0,0,2265,2266,7,18,0,0,2266, - 2269,3,332,166,0,2267,2268,5,62,0,0,2268,2270,3,332,166,0,2269,2267, - 1,0,0,0,2269,2270,1,0,0,0,2270,2286,1,0,0,0,2271,2272,7,19,0,0,2272, - 2286,3,332,166,0,2273,2275,5,108,0,0,2274,2276,5,132,0,0,2275,2274, - 1,0,0,0,2275,2276,1,0,0,0,2276,2277,1,0,0,0,2277,2286,7,20,0,0,2278, - 2280,5,108,0,0,2279,2281,5,132,0,0,2280,2279,1,0,0,0,2280,2281,1, - 0,0,0,2281,2282,1,0,0,0,2282,2283,5,57,0,0,2283,2284,5,82,0,0,2284, - 2286,3,332,166,0,2285,2227,1,0,0,0,2285,2230,1,0,0,0,2285,2235,1, - 0,0,0,2285,2243,1,0,0,0,2285,2258,1,0,0,0,2285,2263,1,0,0,0,2285, - 2271,1,0,0,0,2285,2273,1,0,0,0,2285,2278,1,0,0,0,2286,331,1,0,0, - 0,2287,2288,6,166,-1,0,2288,2292,3,336,168,0,2289,2290,7,21,0,0, - 2290,2292,3,332,166,4,2291,2287,1,0,0,0,2291,2289,1,0,0,0,2292,2304, - 1,0,0,0,2293,2294,10,3,0,0,2294,2295,7,22,0,0,2295,2303,3,332,166, - 4,2296,2297,10,2,0,0,2297,2298,7,21,0,0,2298,2303,3,332,166,3,2299, - 2300,10,1,0,0,2300,2301,5,260,0,0,2301,2303,3,332,166,2,2302,2293, - 1,0,0,0,2302,2296,1,0,0,0,2302,2299,1,0,0,0,2303,2306,1,0,0,0,2304, - 2302,1,0,0,0,2304,2305,1,0,0,0,2305,333,1,0,0,0,2306,2304,1,0,0, - 0,2307,2308,3,190,95,0,2308,2320,5,265,0,0,2309,2311,3,288,144,0, - 2310,2309,1,0,0,0,2310,2311,1,0,0,0,2311,2312,1,0,0,0,2312,2317, - 3,326,163,0,2313,2314,5,263,0,0,2314,2316,3,326,163,0,2315,2313, - 1,0,0,0,2316,2319,1,0,0,0,2317,2315,1,0,0,0,2317,2318,1,0,0,0,2318, - 2321,1,0,0,0,2319,2317,1,0,0,0,2320,2310,1,0,0,0,2320,2321,1,0,0, - 0,2321,2332,1,0,0,0,2322,2323,5,139,0,0,2323,2324,5,26,0,0,2324, - 2329,3,270,135,0,2325,2326,5,263,0,0,2326,2328,3,270,135,0,2327, - 2325,1,0,0,0,2328,2331,1,0,0,0,2329,2327,1,0,0,0,2329,2330,1,0,0, - 0,2330,2333,1,0,0,0,2331,2329,1,0,0,0,2332,2322,1,0,0,0,2332,2333, - 1,0,0,0,2333,2334,1,0,0,0,2334,2336,5,266,0,0,2335,2337,3,362,181, - 0,2336,2335,1,0,0,0,2336,2337,1,0,0,0,2337,2339,1,0,0,0,2338,2340, - 3,366,183,0,2339,2338,1,0,0,0,2339,2340,1,0,0,0,2340,335,1,0,0,0, - 2341,2342,6,168,-1,0,2342,2555,5,133,0,0,2343,2555,3,346,173,0,2344, - 2345,3,384,192,0,2345,2346,3,338,169,0,2346,2555,1,0,0,0,2347,2348, - 5,286,0,0,2348,2555,3,338,169,0,2349,2555,3,386,193,0,2350,2555, - 3,344,172,0,2351,2555,3,338,169,0,2352,2555,5,276,0,0,2353,2555, - 5,272,0,0,2354,2355,5,148,0,0,2355,2356,5,265,0,0,2356,2357,3,332, - 166,0,2357,2358,5,94,0,0,2358,2359,3,332,166,0,2359,2360,5,266,0, - 0,2360,2555,1,0,0,0,2361,2362,5,265,0,0,2362,2365,3,326,163,0,2363, - 2364,5,9,0,0,2364,2366,3,352,176,0,2365,2363,1,0,0,0,2365,2366,1, - 0,0,0,2366,2375,1,0,0,0,2367,2368,5,263,0,0,2368,2371,3,326,163, - 0,2369,2370,5,9,0,0,2370,2372,3,352,176,0,2371,2369,1,0,0,0,2371, - 2372,1,0,0,0,2372,2374,1,0,0,0,2373,2367,1,0,0,0,2374,2377,1,0,0, - 0,2375,2376,1,0,0,0,2375,2373,1,0,0,0,2376,2378,1,0,0,0,2377,2375, - 1,0,0,0,2378,2379,5,266,0,0,2379,2555,1,0,0,0,2380,2381,5,168,0, - 0,2381,2382,5,265,0,0,2382,2387,3,326,163,0,2383,2384,5,263,0,0, - 2384,2386,3,326,163,0,2385,2383,1,0,0,0,2386,2389,1,0,0,0,2387,2385, - 1,0,0,0,2387,2388,1,0,0,0,2388,2390,1,0,0,0,2389,2387,1,0,0,0,2390, - 2391,5,266,0,0,2391,2555,1,0,0,0,2392,2393,3,190,95,0,2393,2394, - 5,265,0,0,2394,2395,5,257,0,0,2395,2397,5,266,0,0,2396,2398,3,362, - 181,0,2397,2396,1,0,0,0,2397,2398,1,0,0,0,2398,2400,1,0,0,0,2399, - 2401,3,366,183,0,2400,2399,1,0,0,0,2400,2401,1,0,0,0,2401,2555,1, - 0,0,0,2402,2555,3,334,167,0,2403,2404,3,384,192,0,2404,2405,5,273, - 0,0,2405,2406,3,326,163,0,2406,2555,1,0,0,0,2407,2416,5,265,0,0, - 2408,2413,3,384,192,0,2409,2410,5,263,0,0,2410,2412,3,384,192,0, - 2411,2409,1,0,0,0,2412,2415,1,0,0,0,2413,2411,1,0,0,0,2413,2414, - 1,0,0,0,2414,2417,1,0,0,0,2415,2413,1,0,0,0,2416,2408,1,0,0,0,2416, - 2417,1,0,0,0,2417,2418,1,0,0,0,2418,2419,5,266,0,0,2419,2420,5,273, - 0,0,2420,2555,3,326,163,0,2421,2422,5,265,0,0,2422,2423,3,208,104, - 0,2423,2424,5,266,0,0,2424,2555,1,0,0,0,2425,2426,5,66,0,0,2426, - 2427,5,265,0,0,2427,2428,3,208,104,0,2428,2429,5,266,0,0,2429,2555, - 1,0,0,0,2430,2431,5,28,0,0,2431,2433,3,332,166,0,2432,2434,3,360, - 180,0,2433,2432,1,0,0,0,2434,2435,1,0,0,0,2435,2433,1,0,0,0,2435, - 2436,1,0,0,0,2436,2439,1,0,0,0,2437,2438,5,59,0,0,2438,2440,3,326, - 163,0,2439,2437,1,0,0,0,2439,2440,1,0,0,0,2440,2441,1,0,0,0,2441, - 2442,5,61,0,0,2442,2555,1,0,0,0,2443,2445,5,28,0,0,2444,2446,3,360, - 180,0,2445,2444,1,0,0,0,2446,2447,1,0,0,0,2447,2445,1,0,0,0,2447, - 2448,1,0,0,0,2448,2451,1,0,0,0,2449,2450,5,59,0,0,2450,2452,3,326, - 163,0,2451,2449,1,0,0,0,2451,2452,1,0,0,0,2452,2453,1,0,0,0,2453, - 2454,5,61,0,0,2454,2555,1,0,0,0,2455,2456,5,29,0,0,2456,2457,5,265, - 0,0,2457,2458,3,326,163,0,2458,2459,5,9,0,0,2459,2460,3,352,176, - 0,2460,2461,5,266,0,0,2461,2555,1,0,0,0,2462,2463,5,195,0,0,2463, - 2464,5,265,0,0,2464,2465,3,326,163,0,2465,2466,5,9,0,0,2466,2467, - 3,352,176,0,2467,2468,5,266,0,0,2468,2555,1,0,0,0,2469,2470,5,8, - 0,0,2470,2479,5,267,0,0,2471,2476,3,326,163,0,2472,2473,5,263,0, - 0,2473,2475,3,326,163,0,2474,2472,1,0,0,0,2475,2478,1,0,0,0,2476, - 2474,1,0,0,0,2476,2477,1,0,0,0,2477,2480,1,0,0,0,2478,2476,1,0,0, - 0,2479,2471,1,0,0,0,2479,2480,1,0,0,0,2480,2481,1,0,0,0,2481,2555, - 5,268,0,0,2482,2555,3,194,97,0,2483,2555,5,40,0,0,2484,2488,5,42, - 0,0,2485,2486,5,265,0,0,2486,2487,5,277,0,0,2487,2489,5,266,0,0, - 2488,2485,1,0,0,0,2488,2489,1,0,0,0,2489,2555,1,0,0,0,2490,2494, - 5,43,0,0,2491,2492,5,265,0,0,2492,2493,5,277,0,0,2493,2495,5,266, - 0,0,2494,2491,1,0,0,0,2494,2495,1,0,0,0,2495,2555,1,0,0,0,2496,2500, - 5,119,0,0,2497,2498,5,265,0,0,2498,2499,5,277,0,0,2499,2501,5,266, - 0,0,2500,2497,1,0,0,0,2500,2501,1,0,0,0,2501,2555,1,0,0,0,2502,2506, - 5,120,0,0,2503,2504,5,265,0,0,2504,2505,5,277,0,0,2505,2507,5,266, - 0,0,2506,2503,1,0,0,0,2506,2507,1,0,0,0,2507,2555,1,0,0,0,2508,2555, - 5,44,0,0,2509,2555,5,41,0,0,2510,2511,5,184,0,0,2511,2512,5,265, - 0,0,2512,2513,3,332,166,0,2513,2514,5,82,0,0,2514,2517,3,332,166, - 0,2515,2516,5,78,0,0,2516,2518,3,332,166,0,2517,2515,1,0,0,0,2517, - 2518,1,0,0,0,2518,2519,1,0,0,0,2519,2520,5,266,0,0,2520,2555,1,0, - 0,0,2521,2522,5,131,0,0,2522,2523,5,265,0,0,2523,2526,3,332,166, - 0,2524,2525,5,263,0,0,2525,2527,3,350,175,0,2526,2524,1,0,0,0,2526, - 2527,1,0,0,0,2527,2528,1,0,0,0,2528,2529,5,266,0,0,2529,2555,1,0, - 0,0,2530,2531,5,68,0,0,2531,2532,5,265,0,0,2532,2533,3,384,192,0, - 2533,2534,5,82,0,0,2534,2535,3,332,166,0,2535,2536,5,266,0,0,2536, - 2555,1,0,0,0,2537,2538,5,265,0,0,2538,2539,3,326,163,0,2539,2540, - 5,266,0,0,2540,2555,1,0,0,0,2541,2542,5,88,0,0,2542,2551,5,265,0, - 0,2543,2548,3,380,190,0,2544,2545,5,263,0,0,2545,2547,3,380,190, - 0,2546,2544,1,0,0,0,2547,2550,1,0,0,0,2548,2546,1,0,0,0,2548,2549, - 1,0,0,0,2549,2552,1,0,0,0,2550,2548,1,0,0,0,2551,2543,1,0,0,0,2551, - 2552,1,0,0,0,2552,2553,1,0,0,0,2553,2555,5,266,0,0,2554,2341,1,0, - 0,0,2554,2343,1,0,0,0,2554,2344,1,0,0,0,2554,2347,1,0,0,0,2554,2349, - 1,0,0,0,2554,2350,1,0,0,0,2554,2351,1,0,0,0,2554,2352,1,0,0,0,2554, - 2353,1,0,0,0,2554,2354,1,0,0,0,2554,2361,1,0,0,0,2554,2380,1,0,0, - 0,2554,2392,1,0,0,0,2554,2402,1,0,0,0,2554,2403,1,0,0,0,2554,2407, - 1,0,0,0,2554,2421,1,0,0,0,2554,2425,1,0,0,0,2554,2430,1,0,0,0,2554, - 2443,1,0,0,0,2554,2455,1,0,0,0,2554,2462,1,0,0,0,2554,2469,1,0,0, - 0,2554,2482,1,0,0,0,2554,2483,1,0,0,0,2554,2484,1,0,0,0,2554,2490, - 1,0,0,0,2554,2496,1,0,0,0,2554,2502,1,0,0,0,2554,2508,1,0,0,0,2554, - 2509,1,0,0,0,2554,2510,1,0,0,0,2554,2521,1,0,0,0,2554,2530,1,0,0, - 0,2554,2537,1,0,0,0,2554,2541,1,0,0,0,2555,2566,1,0,0,0,2556,2557, - 10,15,0,0,2557,2558,5,267,0,0,2558,2559,3,332,166,0,2559,2560,5, - 268,0,0,2560,2565,1,0,0,0,2561,2562,10,13,0,0,2562,2563,5,261,0, - 0,2563,2565,3,384,192,0,2564,2556,1,0,0,0,2564,2561,1,0,0,0,2565, - 2568,1,0,0,0,2566,2564,1,0,0,0,2566,2567,1,0,0,0,2567,337,1,0,0, - 0,2568,2566,1,0,0,0,2569,2576,5,274,0,0,2570,2573,5,275,0,0,2571, - 2572,5,198,0,0,2572,2574,5,274,0,0,2573,2571,1,0,0,0,2573,2574,1, - 0,0,0,2574,2576,1,0,0,0,2575,2569,1,0,0,0,2575,2570,1,0,0,0,2576, - 339,1,0,0,0,2577,2578,7,23,0,0,2578,341,1,0,0,0,2579,2580,7,24,0, - 0,2580,343,1,0,0,0,2581,2582,7,25,0,0,2582,345,1,0,0,0,2583,2584, - 5,277,0,0,2584,2598,3,348,174,0,2585,2586,5,265,0,0,2586,2587,5, - 277,0,0,2587,2588,5,266,0,0,2588,2598,3,348,174,0,2589,2590,5,101, - 0,0,2590,2591,5,277,0,0,2591,2598,3,348,174,0,2592,2593,5,101,0, - 0,2593,2594,5,265,0,0,2594,2595,5,277,0,0,2595,2596,5,266,0,0,2596, - 2598,3,348,174,0,2597,2583,1,0,0,0,2597,2585,1,0,0,0,2597,2589,1, - 0,0,0,2597,2592,1,0,0,0,2598,347,1,0,0,0,2599,2600,7,26,0,0,2600, - 349,1,0,0,0,2601,2602,7,27,0,0,2602,351,1,0,0,0,2603,2604,6,176, - -1,0,2604,2605,5,8,0,0,2605,2606,5,251,0,0,2606,2607,3,352,176,0, - 2607,2608,5,253,0,0,2608,2649,1,0,0,0,2609,2610,5,235,0,0,2610,2611, - 5,251,0,0,2611,2612,3,352,176,0,2612,2613,5,263,0,0,2613,2614,3, - 352,176,0,2614,2615,5,253,0,0,2615,2649,1,0,0,0,2616,2617,5,240, - 0,0,2617,2618,5,251,0,0,2618,2619,3,384,192,0,2619,2626,3,352,176, - 0,2620,2621,5,263,0,0,2621,2622,3,384,192,0,2622,2623,3,352,176, - 0,2623,2625,1,0,0,0,2624,2620,1,0,0,0,2625,2628,1,0,0,0,2626,2624, - 1,0,0,0,2626,2627,1,0,0,0,2627,2629,1,0,0,0,2628,2626,1,0,0,0,2629, - 2630,5,253,0,0,2630,2649,1,0,0,0,2631,2634,3,358,179,0,2632,2634, - 3,354,177,0,2633,2631,1,0,0,0,2633,2632,1,0,0,0,2634,2646,1,0,0, - 0,2635,2636,5,265,0,0,2636,2641,3,356,178,0,2637,2638,5,263,0,0, - 2638,2640,3,356,178,0,2639,2637,1,0,0,0,2640,2643,1,0,0,0,2641,2639, - 1,0,0,0,2641,2642,1,0,0,0,2642,2644,1,0,0,0,2643,2641,1,0,0,0,2644, - 2645,5,266,0,0,2645,2647,1,0,0,0,2646,2635,1,0,0,0,2646,2647,1,0, - 0,0,2647,2649,1,0,0,0,2648,2603,1,0,0,0,2648,2609,1,0,0,0,2648,2616, - 1,0,0,0,2648,2633,1,0,0,0,2649,2654,1,0,0,0,2650,2651,10,5,0,0,2651, - 2653,5,8,0,0,2652,2650,1,0,0,0,2653,2656,1,0,0,0,2654,2652,1,0,0, - 0,2654,2655,1,0,0,0,2655,353,1,0,0,0,2656,2654,1,0,0,0,2657,2658, - 7,28,0,0,2658,355,1,0,0,0,2659,2662,5,277,0,0,2660,2662,3,352,176, - 0,2661,2659,1,0,0,0,2661,2660,1,0,0,0,2662,357,1,0,0,0,2663,2668, - 5,284,0,0,2664,2668,5,285,0,0,2665,2668,5,286,0,0,2666,2668,3,384, - 192,0,2667,2663,1,0,0,0,2667,2664,1,0,0,0,2667,2665,1,0,0,0,2667, - 2666,1,0,0,0,2668,359,1,0,0,0,2669,2670,5,214,0,0,2670,2671,3,326, - 163,0,2671,2672,5,192,0,0,2672,2673,3,326,163,0,2673,361,1,0,0,0, - 2674,2675,5,74,0,0,2675,2676,5,265,0,0,2676,2677,3,276,138,0,2677, - 2678,5,266,0,0,2678,363,1,0,0,0,2679,2684,3,326,163,0,2680,2681, - 5,263,0,0,2681,2683,3,326,163,0,2682,2680,1,0,0,0,2683,2686,1,0, - 0,0,2684,2682,1,0,0,0,2684,2685,1,0,0,0,2685,365,1,0,0,0,2686,2684, - 1,0,0,0,2687,2688,5,143,0,0,2688,2692,5,265,0,0,2689,2690,5,145, - 0,0,2690,2691,5,26,0,0,2691,2693,3,364,182,0,2692,2689,1,0,0,0,2692, - 2693,1,0,0,0,2693,2704,1,0,0,0,2694,2695,5,139,0,0,2695,2696,5,26, - 0,0,2696,2701,3,270,135,0,2697,2698,5,263,0,0,2698,2700,3,270,135, - 0,2699,2697,1,0,0,0,2700,2703,1,0,0,0,2701,2699,1,0,0,0,2701,2702, - 1,0,0,0,2702,2705,1,0,0,0,2703,2701,1,0,0,0,2704,2694,1,0,0,0,2704, - 2705,1,0,0,0,2705,2707,1,0,0,0,2706,2708,3,368,184,0,2707,2706,1, - 0,0,0,2707,2708,1,0,0,0,2708,2709,1,0,0,0,2709,2710,5,266,0,0,2710, - 367,1,0,0,0,2711,2712,5,154,0,0,2712,2728,3,370,185,0,2713,2714, - 5,169,0,0,2714,2728,3,370,185,0,2715,2716,5,154,0,0,2716,2717,5, - 15,0,0,2717,2718,3,370,185,0,2718,2719,5,5,0,0,2719,2720,3,370,185, - 0,2720,2728,1,0,0,0,2721,2722,5,169,0,0,2722,2723,5,15,0,0,2723, - 2724,3,370,185,0,2724,2725,5,5,0,0,2725,2726,3,370,185,0,2726,2728, - 1,0,0,0,2727,2711,1,0,0,0,2727,2713,1,0,0,0,2727,2715,1,0,0,0,2727, - 2721,1,0,0,0,2728,369,1,0,0,0,2729,2730,5,199,0,0,2730,2739,5,149, - 0,0,2731,2732,5,199,0,0,2732,2739,5,77,0,0,2733,2734,5,39,0,0,2734, - 2739,5,168,0,0,2735,2736,3,326,163,0,2736,2737,7,29,0,0,2737,2739, - 1,0,0,0,2738,2729,1,0,0,0,2738,2731,1,0,0,0,2738,2733,1,0,0,0,2738, - 2735,1,0,0,0,2739,371,1,0,0,0,2740,2741,3,384,192,0,2741,2742,5, - 261,0,0,2742,2743,3,384,192,0,2743,2746,1,0,0,0,2744,2746,3,384, - 192,0,2745,2740,1,0,0,0,2745,2744,1,0,0,0,2746,373,1,0,0,0,2747, - 2752,3,372,186,0,2748,2749,5,263,0,0,2749,2751,3,372,186,0,2750, - 2748,1,0,0,0,2751,2754,1,0,0,0,2752,2750,1,0,0,0,2752,2753,1,0,0, - 0,2753,375,1,0,0,0,2754,2752,1,0,0,0,2755,2769,5,2,0,0,2756,2769, - 5,4,0,0,2757,2769,5,58,0,0,2758,2769,5,37,0,0,2759,2769,5,99,0,0, - 2760,2769,5,162,0,0,2761,2766,5,174,0,0,2762,2763,5,265,0,0,2763, - 2764,3,384,192,0,2764,2765,5,266,0,0,2765,2767,1,0,0,0,2766,2762, - 1,0,0,0,2766,2767,1,0,0,0,2767,2769,1,0,0,0,2768,2755,1,0,0,0,2768, - 2756,1,0,0,0,2768,2757,1,0,0,0,2768,2758,1,0,0,0,2768,2759,1,0,0, - 0,2768,2760,1,0,0,0,2768,2761,1,0,0,0,2769,377,1,0,0,0,2770,2771, - 7,30,0,0,2771,379,1,0,0,0,2772,2777,3,384,192,0,2773,2774,5,261, - 0,0,2774,2776,3,384,192,0,2775,2773,1,0,0,0,2776,2779,1,0,0,0,2777, - 2775,1,0,0,0,2777,2778,1,0,0,0,2778,381,1,0,0,0,2779,2777,1,0,0, - 0,2780,2781,5,166,0,0,2781,2787,3,384,192,0,2782,2783,5,204,0,0, - 2783,2787,3,384,192,0,2784,2785,5,87,0,0,2785,2787,3,384,192,0,2786, - 2780,1,0,0,0,2786,2782,1,0,0,0,2786,2784,1,0,0,0,2787,383,1,0,0, - 0,2788,2794,5,280,0,0,2789,2794,5,274,0,0,2790,2794,3,390,195,0, - 2791,2794,5,283,0,0,2792,2794,5,281,0,0,2793,2788,1,0,0,0,2793,2789, - 1,0,0,0,2793,2790,1,0,0,0,2793,2791,1,0,0,0,2793,2792,1,0,0,0,2794, - 385,1,0,0,0,2795,2797,5,256,0,0,2796,2795,1,0,0,0,2796,2797,1,0, - 0,0,2797,2798,1,0,0,0,2798,2808,5,278,0,0,2799,2801,5,256,0,0,2800, - 2799,1,0,0,0,2800,2801,1,0,0,0,2801,2802,1,0,0,0,2802,2808,5,279, - 0,0,2803,2805,5,256,0,0,2804,2803,1,0,0,0,2804,2805,1,0,0,0,2805, - 2806,1,0,0,0,2806,2808,5,277,0,0,2807,2796,1,0,0,0,2807,2800,1,0, - 0,0,2807,2804,1,0,0,0,2808,387,1,0,0,0,2809,2810,7,31,0,0,2810,389, - 1,0,0,0,2811,2812,7,32,0,0,2812,391,1,0,0,0,355,395,402,426,439, - 443,447,456,461,465,471,473,478,482,486,493,498,504,508,517,524, - 528,533,535,540,543,550,554,559,563,566,570,578,582,586,594,598, - 607,610,613,619,626,637,642,647,652,657,666,669,672,676,702,728, - 737,747,750,764,782,784,793,804,813,820,824,831,837,840,845,852, - 866,879,884,889,895,931,934,940,943,949,955,967,969,980,988,993, - 997,1002,1009,1013,1017,1023,1027,1031,1040,1043,1046,1054,1068, - 1075,1088,1094,1099,1102,1105,1110,1114,1123,1128,1134,1138,1142, - 1147,1150,1158,1161,1164,1176,1179,1182,1187,1191,1207,1212,1219, - 1222,1228,1231,1238,1241,1245,1250,1253,1260,1263,1287,1301,1305, - 1309,1329,1331,1333,1342,1344,1353,1355,1364,1366,1371,1380,1389, - 1398,1409,1415,1420,1423,1436,1446,1450,1455,1466,1471,1504,1512, - 1517,1521,1527,1532,1535,1540,1545,1550,1554,1563,1566,1570,1577, - 1586,1590,1594,1601,1604,1614,1621,1626,1631,1636,1642,1645,1654, - 1657,1660,1666,1671,1681,1684,1687,1691,1701,1704,1710,1716,1719, - 1722,1726,1736,1747,1752,1755,1759,1766,1776,1788,1794,1796,1805, - 1808,1815,1825,1831,1839,1850,1860,1871,1873,1879,1884,1894,1897, - 1903,1905,1913,1919,1922,1924,1936,1943,1947,1951,1955,1958,1967, - 1970,1973,1978,1981,1988,1998,2005,2016,2019,2023,2027,2036,2040, - 2043,2046,2057,2073,2077,2081,2085,2089,2093,2097,2101,2111,2122, - 2127,2140,2142,2148,2152,2154,2162,2171,2174,2189,2195,2203,2210, - 2214,2222,2224,2235,2243,2252,2258,2263,2269,2275,2280,2285,2291, - 2302,2304,2310,2317,2320,2329,2332,2336,2339,2365,2371,2375,2387, - 2397,2400,2413,2416,2435,2439,2447,2451,2476,2479,2488,2494,2500, - 2506,2517,2526,2548,2551,2554,2564,2566,2573,2575,2597,2626,2633, - 2641,2646,2648,2654,2661,2667,2684,2692,2701,2704,2707,2727,2738, - 2745,2752,2766,2768,2777,2786,2793,2796,2800,2804,2807 + 195,204,204,213,213,217,217,220,220,231,231,3169,0,401,1,0,0,0,2, + 406,1,0,0,0,4,432,1,0,0,0,6,434,1,0,0,0,8,445,1,0,0,0,10,447,1,0, + 0,0,12,486,1,0,0,0,14,508,1,0,0,0,16,562,1,0,0,0,18,581,1,0,0,0, + 20,594,1,0,0,0,22,598,1,0,0,0,24,660,1,0,0,0,26,708,1,0,0,0,28,710, + 1,0,0,0,30,718,1,0,0,0,32,738,1,0,0,0,34,758,1,0,0,0,36,765,1,0, + 0,0,38,774,1,0,0,0,40,782,1,0,0,0,42,804,1,0,0,0,44,814,1,0,0,0, + 46,832,1,0,0,0,48,853,1,0,0,0,50,874,1,0,0,0,52,880,1,0,0,0,54,897, + 1,0,0,0,56,906,1,0,0,0,58,913,1,0,0,0,60,921,1,0,0,0,62,928,1,0, + 0,0,64,935,1,0,0,0,66,944,1,0,0,0,68,955,1,0,0,0,70,957,1,0,0,0, + 72,977,1,0,0,0,74,994,1,0,0,0,76,996,1,0,0,0,78,1005,1,0,0,0,80, + 1012,1,0,0,0,82,1021,1,0,0,0,84,1031,1,0,0,0,86,1054,1,0,0,0,88, + 1060,1,0,0,0,90,1062,1,0,0,0,92,1069,1,0,0,0,94,1081,1,0,0,0,96, + 1083,1,0,0,0,98,1090,1,0,0,0,100,1111,1,0,0,0,102,1140,1,0,0,0,104, + 1142,1,0,0,0,106,1150,1,0,0,0,108,1172,1,0,0,0,110,1190,1,0,0,0, + 112,1213,1,0,0,0,114,1215,1,0,0,0,116,1230,1,0,0,0,118,1249,1,0, + 0,0,120,1271,1,0,0,0,122,1276,1,0,0,0,124,1281,1,0,0,0,126,1286, + 1,0,0,0,128,1291,1,0,0,0,130,1298,1,0,0,0,132,1313,1,0,0,0,134,1319, + 1,0,0,0,136,1339,1,0,0,0,138,1341,1,0,0,0,140,1352,1,0,0,0,142,1363, + 1,0,0,0,144,1377,1,0,0,0,146,1379,1,0,0,0,148,1388,1,0,0,0,150,1397, + 1,0,0,0,152,1406,1,0,0,0,154,1409,1,0,0,0,156,1417,1,0,0,0,158,1433, + 1,0,0,0,160,1437,1,0,0,0,162,1461,1,0,0,0,164,1463,1,0,0,0,166,1479, + 1,0,0,0,168,1482,1,0,0,0,170,1486,1,0,0,0,172,1489,1,0,0,0,174,1493, + 1,0,0,0,176,1495,1,0,0,0,178,1497,1,0,0,0,180,1499,1,0,0,0,182,1501, + 1,0,0,0,184,1503,1,0,0,0,186,1505,1,0,0,0,188,1513,1,0,0,0,190,1523, + 1,0,0,0,192,1525,1,0,0,0,194,1530,1,0,0,0,196,1532,1,0,0,0,198,1537, + 1,0,0,0,200,1541,1,0,0,0,202,1546,1,0,0,0,204,1586,1,0,0,0,206,1594, + 1,0,0,0,208,1598,1,0,0,0,210,1613,1,0,0,0,212,1618,1,0,0,0,214,1622, + 1,0,0,0,216,1631,1,0,0,0,218,1661,1,0,0,0,220,1676,1,0,0,0,222,1682, + 1,0,0,0,224,1687,1,0,0,0,226,1689,1,0,0,0,228,1707,1,0,0,0,230,1710, + 1,0,0,0,232,1720,1,0,0,0,234,1740,1,0,0,0,236,1750,1,0,0,0,238,1752, + 1,0,0,0,240,1754,1,0,0,0,242,1769,1,0,0,0,244,1771,1,0,0,0,246,1778, + 1,0,0,0,248,1810,1,0,0,0,250,1822,1,0,0,0,252,1829,1,0,0,0,254,1839, + 1,0,0,0,256,1841,1,0,0,0,258,1847,1,0,0,0,260,1858,1,0,0,0,262,1869, + 1,0,0,0,264,1877,1,0,0,0,266,1895,1,0,0,0,268,1900,1,0,0,0,270,1921, + 1,0,0,0,272,1957,1,0,0,0,274,1959,1,0,0,0,276,1967,1,0,0,0,278,1997, + 1,0,0,0,280,2005,1,0,0,0,282,2010,1,0,0,0,284,2016,1,0,0,0,286,2026, + 1,0,0,0,288,2041,1,0,0,0,290,2043,1,0,0,0,292,2050,1,0,0,0,294,2061, + 1,0,0,0,296,2064,1,0,0,0,298,2068,1,0,0,0,300,2070,1,0,0,0,302,2075, + 1,0,0,0,304,2079,1,0,0,0,306,2129,1,0,0,0,308,2148,1,0,0,0,310,2150, + 1,0,0,0,312,2165,1,0,0,0,314,2167,1,0,0,0,316,2177,1,0,0,0,318,2192, + 1,0,0,0,320,2195,1,0,0,0,322,2199,1,0,0,0,324,2203,1,0,0,0,326,2218, + 1,0,0,0,328,2224,1,0,0,0,330,2226,1,0,0,0,332,2235,1,0,0,0,334,2306, + 1,0,0,0,336,2312,1,0,0,0,338,2328,1,0,0,0,340,2575,1,0,0,0,342,2596, + 1,0,0,0,344,2598,1,0,0,0,346,2600,1,0,0,0,348,2602,1,0,0,0,350,2618, + 1,0,0,0,352,2620,1,0,0,0,354,2622,1,0,0,0,356,2669,1,0,0,0,358,2678, + 1,0,0,0,360,2682,1,0,0,0,362,2688,1,0,0,0,364,2690,1,0,0,0,366,2695, + 1,0,0,0,368,2700,1,0,0,0,370,2708,1,0,0,0,372,2748,1,0,0,0,374,2759, + 1,0,0,0,376,2766,1,0,0,0,378,2768,1,0,0,0,380,2789,1,0,0,0,382,2791, + 1,0,0,0,384,2793,1,0,0,0,386,2817,1,0,0,0,388,2825,1,0,0,0,390,2832, + 1,0,0,0,392,2846,1,0,0,0,394,2848,1,0,0,0,396,2850,1,0,0,0,398,400, + 3,2,1,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402, + 1,0,0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,405,5,0,0,1,405,1,1, + 0,0,0,406,408,3,4,2,0,407,409,5,262,0,0,408,407,1,0,0,0,408,409, + 1,0,0,0,409,3,1,0,0,0,410,433,3,212,106,0,411,433,3,6,3,0,412,433, + 3,8,4,0,413,433,3,26,13,0,414,433,3,64,32,0,415,433,3,66,33,0,416, + 433,3,68,34,0,417,433,3,74,37,0,418,433,3,88,44,0,419,433,3,94,47, + 0,420,433,3,100,50,0,421,433,3,102,51,0,422,433,3,108,54,0,423,433, + 3,110,55,0,424,433,3,112,56,0,425,433,3,144,72,0,426,433,3,152,76, + 0,427,433,3,154,77,0,428,433,3,156,78,0,429,433,3,158,79,0,430,433, + 3,160,80,0,431,433,3,162,81,0,432,410,1,0,0,0,432,411,1,0,0,0,432, + 412,1,0,0,0,432,413,1,0,0,0,432,414,1,0,0,0,432,415,1,0,0,0,432, + 416,1,0,0,0,432,417,1,0,0,0,432,418,1,0,0,0,432,419,1,0,0,0,432, + 420,1,0,0,0,432,421,1,0,0,0,432,422,1,0,0,0,432,423,1,0,0,0,432, + 424,1,0,0,0,432,425,1,0,0,0,432,426,1,0,0,0,432,427,1,0,0,0,432, + 428,1,0,0,0,432,429,1,0,0,0,432,430,1,0,0,0,432,431,1,0,0,0,433, + 5,1,0,0,0,434,435,5,203,0,0,435,436,3,184,92,0,436,7,1,0,0,0,437, + 446,3,18,9,0,438,446,3,20,10,0,439,446,3,22,11,0,440,446,3,24,12, + 0,441,446,3,16,8,0,442,446,3,14,7,0,443,446,3,12,6,0,444,446,3,10, + 5,0,445,437,1,0,0,0,445,438,1,0,0,0,445,439,1,0,0,0,445,440,1,0, + 0,0,445,441,1,0,0,0,445,442,1,0,0,0,445,443,1,0,0,0,445,444,1,0, + 0,0,446,9,1,0,0,0,447,449,5,37,0,0,448,450,5,19,0,0,449,448,1,0, + 0,0,449,450,1,0,0,0,450,451,1,0,0,0,451,453,5,188,0,0,452,454,3, + 172,86,0,453,452,1,0,0,0,453,454,1,0,0,0,454,455,1,0,0,0,455,471, + 3,174,87,0,456,457,5,265,0,0,457,462,3,222,111,0,458,459,5,263,0, + 0,459,461,3,222,111,0,460,458,1,0,0,0,461,464,1,0,0,0,462,460,1, + 0,0,0,462,463,1,0,0,0,463,467,1,0,0,0,464,462,1,0,0,0,465,466,5, + 263,0,0,466,468,3,216,108,0,467,465,1,0,0,0,467,468,1,0,0,0,468, + 469,1,0,0,0,469,470,5,266,0,0,470,472,1,0,0,0,471,456,1,0,0,0,471, + 472,1,0,0,0,472,479,1,0,0,0,473,474,5,17,0,0,474,477,5,26,0,0,475, + 478,3,316,158,0,476,478,3,260,130,0,477,475,1,0,0,0,477,476,1,0, + 0,0,478,480,1,0,0,0,479,473,1,0,0,0,479,480,1,0,0,0,480,481,1,0, + 0,0,481,484,3,202,101,0,482,483,5,9,0,0,483,485,3,212,106,0,484, + 482,1,0,0,0,484,485,1,0,0,0,485,11,1,0,0,0,486,488,5,37,0,0,487, + 489,5,19,0,0,488,487,1,0,0,0,488,489,1,0,0,0,489,490,1,0,0,0,490, + 492,5,188,0,0,491,493,3,172,86,0,492,491,1,0,0,0,492,493,1,0,0,0, + 493,494,1,0,0,0,494,495,3,174,87,0,495,499,5,115,0,0,496,500,3,186, + 93,0,497,498,5,147,0,0,498,500,3,342,171,0,499,496,1,0,0,0,499,497, + 1,0,0,0,500,504,1,0,0,0,501,502,5,17,0,0,502,503,5,26,0,0,503,505, + 3,260,130,0,504,501,1,0,0,0,504,505,1,0,0,0,505,506,1,0,0,0,506, + 507,3,202,101,0,507,13,1,0,0,0,508,510,5,37,0,0,509,511,5,19,0,0, + 510,509,1,0,0,0,510,511,1,0,0,0,511,512,1,0,0,0,512,514,5,188,0, + 0,513,515,3,172,86,0,514,513,1,0,0,0,514,515,1,0,0,0,515,516,1,0, + 0,0,516,534,3,174,87,0,517,518,5,265,0,0,518,523,3,224,112,0,519, + 520,5,263,0,0,520,522,3,224,112,0,521,519,1,0,0,0,522,525,1,0,0, + 0,523,521,1,0,0,0,523,524,1,0,0,0,524,530,1,0,0,0,525,523,1,0,0, + 0,526,527,5,263,0,0,527,528,5,150,0,0,528,529,5,110,0,0,529,531, + 3,316,158,0,530,526,1,0,0,0,530,531,1,0,0,0,531,532,1,0,0,0,532, + 533,5,266,0,0,533,535,1,0,0,0,534,517,1,0,0,0,534,535,1,0,0,0,535, + 541,1,0,0,0,536,537,5,150,0,0,537,539,5,110,0,0,538,540,3,316,158, + 0,539,538,1,0,0,0,539,540,1,0,0,0,540,542,1,0,0,0,541,536,1,0,0, + 0,541,542,1,0,0,0,542,546,1,0,0,0,543,544,5,145,0,0,544,545,5,26, + 0,0,545,547,3,242,121,0,546,543,1,0,0,0,546,547,1,0,0,0,547,549, + 1,0,0,0,548,550,3,228,114,0,549,548,1,0,0,0,549,550,1,0,0,0,550, + 551,1,0,0,0,551,552,5,23,0,0,552,553,5,9,0,0,553,556,5,111,0,0,554, + 555,5,25,0,0,555,557,3,258,129,0,556,554,1,0,0,0,556,557,1,0,0,0, + 557,560,1,0,0,0,558,559,5,9,0,0,559,561,3,212,106,0,560,558,1,0, + 0,0,560,561,1,0,0,0,561,15,1,0,0,0,562,563,5,37,0,0,563,565,5,212, + 0,0,564,566,3,172,86,0,565,564,1,0,0,0,565,566,1,0,0,0,566,567,1, + 0,0,0,567,569,3,178,89,0,568,570,3,208,104,0,569,568,1,0,0,0,569, + 570,1,0,0,0,570,572,1,0,0,0,571,573,3,228,114,0,572,571,1,0,0,0, + 572,573,1,0,0,0,573,576,1,0,0,0,574,575,5,25,0,0,575,577,3,258,129, + 0,576,574,1,0,0,0,576,577,1,0,0,0,577,578,1,0,0,0,578,579,5,9,0, + 0,579,580,3,212,106,0,580,17,1,0,0,0,581,582,5,37,0,0,582,584,7, + 0,0,0,583,585,3,172,86,0,584,583,1,0,0,0,584,585,1,0,0,0,585,586, + 1,0,0,0,586,588,3,176,88,0,587,589,3,228,114,0,588,587,1,0,0,0,588, + 589,1,0,0,0,589,592,1,0,0,0,590,591,5,24,0,0,591,593,3,342,171,0, + 592,590,1,0,0,0,592,593,1,0,0,0,593,19,1,0,0,0,594,595,5,37,0,0, + 595,596,5,166,0,0,596,597,3,390,195,0,597,21,1,0,0,0,598,600,5,37, + 0,0,599,601,5,12,0,0,600,599,1,0,0,0,600,601,1,0,0,0,601,602,1,0, + 0,0,602,604,5,84,0,0,603,605,3,172,86,0,604,603,1,0,0,0,604,605, + 1,0,0,0,605,606,1,0,0,0,606,619,3,180,90,0,607,616,5,265,0,0,608, + 613,3,356,178,0,609,610,5,263,0,0,610,612,3,356,178,0,611,609,1, + 0,0,0,612,615,1,0,0,0,613,611,1,0,0,0,613,614,1,0,0,0,614,617,1, + 0,0,0,615,613,1,0,0,0,616,608,1,0,0,0,616,617,1,0,0,0,617,618,1, + 0,0,0,618,620,5,266,0,0,619,607,1,0,0,0,619,620,1,0,0,0,620,621, + 1,0,0,0,621,622,5,160,0,0,622,625,3,356,178,0,623,624,5,102,0,0, + 624,626,3,356,178,0,625,623,1,0,0,0,625,626,1,0,0,0,626,627,1,0, + 0,0,627,628,5,24,0,0,628,632,5,274,0,0,629,630,5,104,0,0,630,631, + 5,249,0,0,631,633,5,274,0,0,632,629,1,0,0,0,632,633,1,0,0,0,633, + 634,1,0,0,0,634,635,5,206,0,0,635,636,5,249,0,0,636,637,5,274,0, + 0,637,638,5,126,0,0,638,639,5,249,0,0,639,643,5,274,0,0,640,641, + 5,18,0,0,641,642,5,249,0,0,642,644,5,274,0,0,643,640,1,0,0,0,643, + 644,1,0,0,0,644,648,1,0,0,0,645,646,5,20,0,0,646,647,5,249,0,0,647, + 649,5,274,0,0,648,645,1,0,0,0,648,649,1,0,0,0,649,653,1,0,0,0,650, + 651,5,187,0,0,651,652,5,249,0,0,652,654,5,274,0,0,653,650,1,0,0, + 0,653,654,1,0,0,0,654,658,1,0,0,0,655,656,5,76,0,0,656,657,5,249, + 0,0,657,659,5,274,0,0,658,655,1,0,0,0,658,659,1,0,0,0,659,23,1,0, + 0,0,660,661,5,37,0,0,661,663,5,84,0,0,662,664,3,172,86,0,663,662, + 1,0,0,0,663,664,1,0,0,0,664,665,1,0,0,0,665,678,3,180,90,0,666,675, + 5,265,0,0,667,672,3,356,178,0,668,669,5,263,0,0,669,671,3,356,178, + 0,670,668,1,0,0,0,671,674,1,0,0,0,672,670,1,0,0,0,672,673,1,0,0, + 0,673,676,1,0,0,0,674,672,1,0,0,0,675,667,1,0,0,0,675,676,1,0,0, + 0,676,677,1,0,0,0,677,679,5,266,0,0,678,666,1,0,0,0,678,679,1,0, + 0,0,679,682,1,0,0,0,680,681,5,160,0,0,681,683,3,356,178,0,682,680, + 1,0,0,0,682,683,1,0,0,0,683,684,1,0,0,0,684,685,5,24,0,0,685,686, + 5,274,0,0,686,687,5,186,0,0,687,688,5,249,0,0,688,689,3,342,171, + 0,689,25,1,0,0,0,690,709,3,28,14,0,691,709,3,62,31,0,692,709,3,60, + 30,0,693,709,3,58,29,0,694,709,3,54,27,0,695,709,3,56,28,0,696,709, + 3,52,26,0,697,709,3,48,24,0,698,709,3,50,25,0,699,709,3,46,23,0, + 700,709,3,44,22,0,701,709,3,42,21,0,702,709,3,40,20,0,703,709,3, + 34,17,0,704,709,3,30,15,0,705,709,3,32,16,0,706,709,3,36,18,0,707, + 709,3,38,19,0,708,690,1,0,0,0,708,691,1,0,0,0,708,692,1,0,0,0,708, + 693,1,0,0,0,708,694,1,0,0,0,708,695,1,0,0,0,708,696,1,0,0,0,708, + 697,1,0,0,0,708,698,1,0,0,0,708,699,1,0,0,0,708,700,1,0,0,0,708, + 701,1,0,0,0,708,702,1,0,0,0,708,703,1,0,0,0,708,704,1,0,0,0,708, + 705,1,0,0,0,708,706,1,0,0,0,708,707,1,0,0,0,709,27,1,0,0,0,710,711, + 5,4,0,0,711,712,5,46,0,0,712,713,3,184,92,0,713,714,5,176,0,0,714, + 715,5,142,0,0,715,716,7,1,0,0,716,717,3,390,195,0,717,29,1,0,0,0, + 718,719,5,4,0,0,719,720,5,188,0,0,720,721,3,186,93,0,721,722,5,176, + 0,0,722,723,5,32,0,0,723,724,5,182,0,0,724,725,3,194,97,0,725,726, + 5,265,0,0,726,727,3,238,119,0,727,728,5,249,0,0,728,734,3,342,171, + 0,729,730,5,263,0,0,730,731,3,238,119,0,731,732,5,249,0,0,732,733, + 3,342,171,0,733,735,1,0,0,0,734,729,1,0,0,0,734,735,1,0,0,0,735, + 736,1,0,0,0,736,737,5,266,0,0,737,31,1,0,0,0,738,739,5,4,0,0,739, + 740,5,188,0,0,740,743,3,186,93,0,741,742,5,145,0,0,742,744,3,330, + 165,0,743,741,1,0,0,0,743,744,1,0,0,0,744,745,1,0,0,0,745,756,5, + 176,0,0,746,747,5,30,0,0,747,748,5,94,0,0,748,753,3,342,171,0,749, + 750,5,216,0,0,750,751,5,151,0,0,751,752,5,249,0,0,752,754,3,392, + 196,0,753,749,1,0,0,0,753,754,1,0,0,0,754,757,1,0,0,0,755,757,5, + 197,0,0,756,746,1,0,0,0,756,755,1,0,0,0,757,33,1,0,0,0,758,759,5, + 4,0,0,759,760,5,188,0,0,760,761,3,186,93,0,761,762,5,31,0,0,762, + 763,3,194,97,0,763,764,3,230,115,0,764,35,1,0,0,0,765,766,5,4,0, + 0,766,767,5,188,0,0,767,768,3,186,93,0,768,770,5,58,0,0,769,771, + 5,32,0,0,770,769,1,0,0,0,770,771,1,0,0,0,771,772,1,0,0,0,772,773, + 3,194,97,0,773,37,1,0,0,0,774,775,5,4,0,0,775,776,5,188,0,0,776, + 777,3,186,93,0,777,778,5,176,0,0,778,779,5,142,0,0,779,780,7,1,0, + 0,780,781,3,390,195,0,781,39,1,0,0,0,782,783,5,4,0,0,783,784,5,188, + 0,0,784,790,3,186,93,0,785,791,5,158,0,0,786,788,5,1,0,0,787,789, + 3,172,86,0,788,787,1,0,0,0,788,789,1,0,0,0,789,791,1,0,0,0,790,785, + 1,0,0,0,790,786,1,0,0,0,791,792,1,0,0,0,792,793,5,33,0,0,793,794, + 5,265,0,0,794,799,3,230,115,0,795,796,5,263,0,0,796,798,3,230,115, + 0,797,795,1,0,0,0,798,801,1,0,0,0,799,800,1,0,0,0,799,797,1,0,0, + 0,800,802,1,0,0,0,801,799,1,0,0,0,802,803,5,266,0,0,803,41,1,0,0, + 0,804,805,5,4,0,0,805,806,5,188,0,0,806,807,3,186,93,0,807,808,5, + 1,0,0,808,810,5,32,0,0,809,811,3,172,86,0,810,809,1,0,0,0,810,811, + 1,0,0,0,811,812,1,0,0,0,812,813,3,232,116,0,813,43,1,0,0,0,814,815, + 5,4,0,0,815,816,5,188,0,0,816,817,3,186,93,0,817,819,5,4,0,0,818, + 820,5,32,0,0,819,818,1,0,0,0,819,820,1,0,0,0,820,821,1,0,0,0,821, + 830,3,194,97,0,822,826,5,176,0,0,823,827,3,236,118,0,824,825,5,34, + 0,0,825,827,3,342,171,0,826,823,1,0,0,0,826,824,1,0,0,0,827,831, + 1,0,0,0,828,829,5,58,0,0,829,831,5,51,0,0,830,822,1,0,0,0,830,828, + 1,0,0,0,831,45,1,0,0,0,832,833,5,4,0,0,833,834,5,188,0,0,834,835, + 3,186,93,0,835,837,5,1,0,0,836,838,3,172,86,0,837,836,1,0,0,0,837, + 838,1,0,0,0,838,851,1,0,0,0,839,840,5,145,0,0,840,843,3,330,165, + 0,841,842,5,24,0,0,842,844,3,342,171,0,843,841,1,0,0,0,843,844,1, + 0,0,0,844,846,1,0,0,0,845,847,3,250,125,0,846,845,1,0,0,0,846,847, + 1,0,0,0,847,852,1,0,0,0,848,849,5,154,0,0,849,850,5,145,0,0,850, + 852,3,248,124,0,851,839,1,0,0,0,851,848,1,0,0,0,852,47,1,0,0,0,853, + 854,5,4,0,0,854,855,5,188,0,0,855,858,3,186,93,0,856,857,5,145,0, + 0,857,859,3,330,165,0,858,856,1,0,0,0,858,859,1,0,0,0,859,860,1, + 0,0,0,860,872,5,176,0,0,861,862,5,72,0,0,862,873,3,240,120,0,863, + 864,5,168,0,0,864,865,5,79,0,0,865,873,3,264,132,0,866,867,5,24, + 0,0,867,873,3,342,171,0,868,869,5,25,0,0,869,873,3,258,129,0,870, + 871,5,175,0,0,871,873,3,258,129,0,872,861,1,0,0,0,872,863,1,0,0, + 0,872,866,1,0,0,0,872,868,1,0,0,0,872,870,1,0,0,0,873,49,1,0,0,0, + 874,875,5,4,0,0,875,876,5,188,0,0,876,877,3,186,93,0,877,878,5,155, + 0,0,878,879,5,146,0,0,879,51,1,0,0,0,880,881,5,4,0,0,881,882,5,188, + 0,0,882,883,3,186,93,0,883,885,5,58,0,0,884,886,3,170,85,0,885,884, + 1,0,0,0,885,886,1,0,0,0,886,895,1,0,0,0,887,888,5,145,0,0,888,890, + 3,330,165,0,889,891,5,22,0,0,890,889,1,0,0,0,890,891,1,0,0,0,891, + 896,1,0,0,0,892,893,5,154,0,0,893,894,5,145,0,0,894,896,3,248,124, + 0,895,887,1,0,0,0,895,892,1,0,0,0,896,53,1,0,0,0,897,898,5,4,0,0, + 898,899,5,212,0,0,899,901,3,188,94,0,900,902,3,208,104,0,901,900, + 1,0,0,0,901,902,1,0,0,0,902,903,1,0,0,0,903,904,5,9,0,0,904,905, + 3,212,106,0,905,55,1,0,0,0,906,907,5,4,0,0,907,908,5,212,0,0,908, + 909,3,188,94,0,909,910,5,156,0,0,910,911,5,193,0,0,911,912,3,188, + 94,0,912,57,1,0,0,0,913,914,5,4,0,0,914,915,5,212,0,0,915,916,3, + 188,94,0,916,917,5,176,0,0,917,918,5,142,0,0,918,919,7,1,0,0,919, + 920,3,384,192,0,920,59,1,0,0,0,921,922,5,4,0,0,922,923,5,188,0,0, + 923,924,3,186,93,0,924,925,5,156,0,0,925,926,5,193,0,0,926,927,3, + 186,93,0,927,61,1,0,0,0,928,929,5,4,0,0,929,930,5,212,0,0,930,931, + 3,188,94,0,931,932,7,2,0,0,932,933,5,25,0,0,933,934,3,258,129,0, + 934,63,1,0,0,0,935,937,5,196,0,0,936,938,5,188,0,0,937,936,1,0,0, + 0,937,938,1,0,0,0,938,940,1,0,0,0,939,941,3,170,85,0,940,939,1,0, + 0,0,940,941,1,0,0,0,941,942,1,0,0,0,942,943,3,186,93,0,943,65,1, + 0,0,0,944,946,5,56,0,0,945,947,5,46,0,0,946,945,1,0,0,0,946,947, + 1,0,0,0,947,949,1,0,0,0,948,950,7,3,0,0,949,948,1,0,0,0,949,950, + 1,0,0,0,950,951,1,0,0,0,951,952,3,384,192,0,952,67,1,0,0,0,953,956, + 3,70,35,0,954,956,3,72,36,0,955,953,1,0,0,0,955,954,1,0,0,0,956, + 69,1,0,0,0,957,958,5,36,0,0,958,959,5,182,0,0,959,961,3,186,93,0, + 960,962,3,316,158,0,961,960,1,0,0,0,961,962,1,0,0,0,962,975,1,0, + 0,0,963,964,5,190,0,0,964,965,5,185,0,0,965,966,5,265,0,0,966,967, + 3,392,196,0,967,973,5,266,0,0,968,969,5,157,0,0,969,970,5,265,0, + 0,970,971,3,392,196,0,971,972,5,266,0,0,972,974,1,0,0,0,973,968, + 1,0,0,0,973,974,1,0,0,0,974,976,1,0,0,0,975,963,1,0,0,0,975,976, + 1,0,0,0,976,71,1,0,0,0,977,978,5,36,0,0,978,979,5,96,0,0,979,980, + 5,182,0,0,980,986,3,186,93,0,981,982,5,145,0,0,982,983,5,265,0,0, + 983,984,3,330,165,0,984,985,5,266,0,0,985,987,1,0,0,0,986,981,1, + 0,0,0,986,987,1,0,0,0,987,73,1,0,0,0,988,995,3,86,43,0,989,995,3, + 84,42,0,990,995,3,82,41,0,991,995,3,78,39,0,992,995,3,80,40,0,993, + 995,3,76,38,0,994,988,1,0,0,0,994,989,1,0,0,0,994,990,1,0,0,0,994, + 991,1,0,0,0,994,992,1,0,0,0,994,993,1,0,0,0,995,75,1,0,0,0,996,997, + 5,58,0,0,997,999,7,0,0,0,998,1000,3,170,85,0,999,998,1,0,0,0,999, + 1000,1,0,0,0,1000,1001,1,0,0,0,1001,1003,3,184,92,0,1002,1004,7, + 4,0,0,1003,1002,1,0,0,0,1003,1004,1,0,0,0,1004,77,1,0,0,0,1005,1006, + 5,58,0,0,1006,1008,5,212,0,0,1007,1009,3,170,85,0,1008,1007,1,0, + 0,0,1008,1009,1,0,0,0,1009,1010,1,0,0,0,1010,1011,3,188,94,0,1011, + 79,1,0,0,0,1012,1013,5,58,0,0,1013,1015,5,188,0,0,1014,1016,3,170, + 85,0,1015,1014,1,0,0,0,1015,1016,1,0,0,0,1016,1017,1,0,0,0,1017, + 1019,3,186,93,0,1018,1020,5,22,0,0,1019,1018,1,0,0,0,1019,1020,1, + 0,0,0,1020,81,1,0,0,0,1021,1023,5,58,0,0,1022,1024,5,96,0,0,1023, + 1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025,1,0,0,0,1025,1026,5,182, + 0,0,1026,1029,3,186,93,0,1027,1028,5,145,0,0,1028,1030,3,330,165, + 0,1029,1027,1,0,0,0,1029,1030,1,0,0,0,1030,83,1,0,0,0,1031,1033, + 5,58,0,0,1032,1034,5,12,0,0,1033,1032,1,0,0,0,1033,1034,1,0,0,0, + 1034,1035,1,0,0,0,1035,1037,5,84,0,0,1036,1038,3,170,85,0,1037,1036, + 1,0,0,0,1037,1038,1,0,0,0,1038,1039,1,0,0,0,1039,1052,3,190,95,0, + 1040,1049,5,265,0,0,1041,1046,3,356,178,0,1042,1043,5,263,0,0,1043, + 1045,3,356,178,0,1044,1042,1,0,0,0,1045,1048,1,0,0,0,1046,1044,1, + 0,0,0,1046,1047,1,0,0,0,1047,1050,1,0,0,0,1048,1046,1,0,0,0,1049, + 1041,1,0,0,0,1049,1050,1,0,0,0,1050,1051,1,0,0,0,1051,1053,5,266, + 0,0,1052,1040,1,0,0,0,1052,1053,1,0,0,0,1053,85,1,0,0,0,1054,1055, + 5,58,0,0,1055,1056,5,166,0,0,1056,1057,3,390,195,0,1057,87,1,0,0, + 0,1058,1061,3,90,45,0,1059,1061,3,92,46,0,1060,1058,1,0,0,0,1060, + 1059,1,0,0,0,1061,89,1,0,0,0,1062,1063,5,86,0,0,1063,1064,5,166, + 0,0,1064,1065,3,390,195,0,1065,1066,5,193,0,0,1066,1067,5,87,0,0, + 1067,1068,3,390,195,0,1068,91,1,0,0,0,1069,1070,5,86,0,0,1070,1071, + 3,380,190,0,1071,1072,5,136,0,0,1072,1074,3,382,191,0,1073,1075, + 3,384,192,0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075,1076,1,0,0, + 0,1076,1077,5,193,0,0,1077,1078,3,388,194,0,1078,93,1,0,0,0,1079, + 1082,3,96,48,0,1080,1082,3,98,49,0,1081,1079,1,0,0,0,1081,1080,1, + 0,0,0,1082,95,1,0,0,0,1083,1084,5,161,0,0,1084,1085,5,166,0,0,1085, + 1086,3,390,195,0,1086,1087,5,82,0,0,1087,1088,5,87,0,0,1088,1089, + 3,390,195,0,1089,97,1,0,0,0,1090,1094,5,161,0,0,1091,1092,5,86,0, + 0,1092,1093,5,137,0,0,1093,1095,5,78,0,0,1094,1091,1,0,0,0,1094, + 1095,1,0,0,0,1095,1096,1,0,0,0,1096,1097,3,380,190,0,1097,1098,5, + 136,0,0,1098,1100,3,382,191,0,1099,1101,3,384,192,0,1100,1099,1, + 0,0,0,1100,1101,1,0,0,0,1101,1102,1,0,0,0,1102,1108,5,82,0,0,1103, + 1109,3,388,194,0,1104,1106,5,166,0,0,1105,1104,1,0,0,0,1105,1106, + 1,0,0,0,1106,1107,1,0,0,0,1107,1109,3,390,195,0,1108,1103,1,0,0, + 0,1108,1105,1,0,0,0,1109,99,1,0,0,0,1110,1112,3,214,107,0,1111,1110, + 1,0,0,0,1111,1112,1,0,0,0,1112,1113,1,0,0,0,1113,1114,5,99,0,0,1114, + 1116,7,5,0,0,1115,1117,5,188,0,0,1116,1115,1,0,0,0,1116,1117,1,0, + 0,0,1117,1118,1,0,0,0,1118,1120,3,186,93,0,1119,1121,3,316,158,0, + 1120,1119,1,0,0,0,1120,1121,1,0,0,0,1121,1134,1,0,0,0,1122,1123, + 5,145,0,0,1123,1124,5,265,0,0,1124,1129,3,330,165,0,1125,1126,5, + 263,0,0,1126,1128,3,330,165,0,1127,1125,1,0,0,0,1128,1131,1,0,0, + 0,1129,1127,1,0,0,0,1129,1130,1,0,0,0,1130,1132,1,0,0,0,1131,1129, + 1,0,0,0,1132,1133,5,266,0,0,1133,1135,1,0,0,0,1134,1122,1,0,0,0, + 1134,1135,1,0,0,0,1135,1136,1,0,0,0,1136,1137,3,212,106,0,1137,101, + 1,0,0,0,1138,1141,3,104,52,0,1139,1141,3,106,53,0,1140,1138,1,0, + 0,0,1140,1139,1,0,0,0,1141,103,1,0,0,0,1142,1144,5,50,0,0,1143,1145, + 5,82,0,0,1144,1143,1,0,0,0,1144,1145,1,0,0,0,1145,1146,1,0,0,0,1146, + 1148,3,186,93,0,1147,1149,3,280,140,0,1148,1147,1,0,0,0,1148,1149, + 1,0,0,0,1149,105,1,0,0,0,1150,1151,5,50,0,0,1151,1156,3,186,93,0, + 1152,1154,5,9,0,0,1153,1152,1,0,0,0,1153,1154,1,0,0,0,1154,1155, + 1,0,0,0,1155,1157,3,390,195,0,1156,1153,1,0,0,0,1156,1157,1,0,0, + 0,1157,1158,1,0,0,0,1158,1167,5,82,0,0,1159,1164,3,304,152,0,1160, + 1161,5,263,0,0,1161,1163,3,304,152,0,1162,1160,1,0,0,0,1163,1166, + 1,0,0,0,1164,1162,1,0,0,0,1164,1165,1,0,0,0,1165,1168,1,0,0,0,1166, + 1164,1,0,0,0,1167,1159,1,0,0,0,1167,1168,1,0,0,0,1168,1170,1,0,0, + 0,1169,1171,3,280,140,0,1170,1169,1,0,0,0,1170,1171,1,0,0,0,1171, + 107,1,0,0,0,1172,1173,5,54,0,0,1173,1174,3,186,93,0,1174,1175,5, + 176,0,0,1175,1185,3,204,102,0,1176,1177,5,82,0,0,1177,1182,3,304, + 152,0,1178,1179,5,263,0,0,1179,1181,3,304,152,0,1180,1178,1,0,0, + 0,1181,1184,1,0,0,0,1182,1180,1,0,0,0,1182,1183,1,0,0,0,1183,1186, + 1,0,0,0,1184,1182,1,0,0,0,1185,1176,1,0,0,0,1185,1186,1,0,0,0,1186, + 1188,1,0,0,0,1187,1189,3,280,140,0,1188,1187,1,0,0,0,1188,1189,1, + 0,0,0,1189,109,1,0,0,0,1190,1191,5,207,0,0,1191,1193,5,103,0,0,1192, + 1194,5,188,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0,1194,1195,1,0, + 0,0,1195,1197,3,186,93,0,1196,1198,3,316,158,0,1197,1196,1,0,0,0, + 1197,1198,1,0,0,0,1198,1199,1,0,0,0,1199,1200,3,212,106,0,1200,111, + 1,0,0,0,1201,1214,3,132,66,0,1202,1214,3,134,67,0,1203,1214,3,136, + 68,0,1204,1214,3,130,65,0,1205,1214,3,128,64,0,1206,1214,3,126,63, + 0,1207,1214,3,124,62,0,1208,1214,3,122,61,0,1209,1214,3,120,60,0, + 1210,1214,3,118,59,0,1211,1214,3,116,58,0,1212,1214,3,114,57,0,1213, + 1201,1,0,0,0,1213,1202,1,0,0,0,1213,1203,1,0,0,0,1213,1204,1,0,0, + 0,1213,1205,1,0,0,0,1213,1206,1,0,0,0,1213,1207,1,0,0,0,1213,1208, + 1,0,0,0,1213,1209,1,0,0,0,1213,1210,1,0,0,0,1213,1211,1,0,0,0,1213, + 1212,1,0,0,0,1214,113,1,0,0,0,1215,1216,5,179,0,0,1216,1228,7,6, + 0,0,1217,1219,5,115,0,0,1218,1217,1,0,0,0,1218,1219,1,0,0,0,1219, + 1220,1,0,0,0,1220,1225,3,342,171,0,1221,1222,5,271,0,0,1222,1224, + 3,342,171,0,1223,1221,1,0,0,0,1224,1227,1,0,0,0,1225,1223,1,0,0, + 0,1225,1226,1,0,0,0,1226,1229,1,0,0,0,1227,1225,1,0,0,0,1228,1218, + 1,0,0,0,1228,1229,1,0,0,0,1229,115,1,0,0,0,1230,1231,5,179,0,0,1231, + 1234,5,189,0,0,1232,1233,5,94,0,0,1233,1235,3,186,93,0,1234,1232, + 1,0,0,0,1234,1235,1,0,0,0,1235,1247,1,0,0,0,1236,1238,5,115,0,0, + 1237,1236,1,0,0,0,1237,1238,1,0,0,0,1238,1239,1,0,0,0,1239,1244, + 3,342,171,0,1240,1241,5,271,0,0,1241,1243,3,342,171,0,1242,1240, + 1,0,0,0,1243,1246,1,0,0,0,1244,1242,1,0,0,0,1244,1245,1,0,0,0,1245, + 1248,1,0,0,0,1246,1244,1,0,0,0,1247,1237,1,0,0,0,1247,1248,1,0,0, + 0,1248,117,1,0,0,0,1249,1251,5,179,0,0,1250,1252,7,7,0,0,1251,1250, + 1,0,0,0,1251,1252,1,0,0,0,1252,1253,1,0,0,0,1253,1256,5,85,0,0,1254, + 1255,5,94,0,0,1255,1257,3,184,92,0,1256,1254,1,0,0,0,1256,1257,1, + 0,0,0,1257,1269,1,0,0,0,1258,1260,5,115,0,0,1259,1258,1,0,0,0,1259, + 1260,1,0,0,0,1260,1261,1,0,0,0,1261,1266,3,342,171,0,1262,1263,5, + 271,0,0,1263,1265,3,342,171,0,1264,1262,1,0,0,0,1265,1268,1,0,0, + 0,1266,1264,1,0,0,0,1266,1267,1,0,0,0,1267,1270,1,0,0,0,1268,1266, + 1,0,0,0,1269,1259,1,0,0,0,1269,1270,1,0,0,0,1270,119,1,0,0,0,1271, + 1272,5,179,0,0,1272,1273,5,37,0,0,1273,1274,5,188,0,0,1274,1275, + 3,186,93,0,1275,121,1,0,0,0,1276,1277,5,179,0,0,1277,1278,5,37,0, + 0,1278,1279,5,212,0,0,1279,1280,3,188,94,0,1280,123,1,0,0,0,1281, + 1282,5,179,0,0,1282,1283,5,188,0,0,1283,1284,5,182,0,0,1284,1285, + 3,186,93,0,1285,125,1,0,0,0,1286,1287,5,179,0,0,1287,1288,5,32,0, + 0,1288,1289,5,182,0,0,1289,1290,3,186,93,0,1290,127,1,0,0,0,1291, + 1293,5,179,0,0,1292,1294,5,154,0,0,1293,1292,1,0,0,0,1293,1294,1, + 0,0,0,1294,1295,1,0,0,0,1295,1296,5,146,0,0,1296,1297,3,186,93,0, + 1297,129,1,0,0,0,1298,1299,5,179,0,0,1299,1300,5,73,0,0,1300,1301, + 5,94,0,0,1301,1311,3,186,93,0,1302,1303,5,145,0,0,1303,1304,5,265, + 0,0,1304,1307,3,330,165,0,1305,1306,5,263,0,0,1306,1308,3,330,165, + 0,1307,1305,1,0,0,0,1307,1308,1,0,0,0,1308,1309,1,0,0,0,1309,1310, + 5,266,0,0,1310,1312,1,0,0,0,1311,1302,1,0,0,0,1311,1312,1,0,0,0, + 1312,131,1,0,0,0,1313,1315,5,179,0,0,1314,1316,5,39,0,0,1315,1314, + 1,0,0,0,1315,1316,1,0,0,0,1316,1317,1,0,0,0,1317,1318,5,167,0,0, + 1318,133,1,0,0,0,1319,1320,5,179,0,0,1320,1321,5,166,0,0,1321,1322, + 5,86,0,0,1322,1323,5,87,0,0,1323,1324,3,390,195,0,1324,135,1,0,0, + 0,1325,1340,3,138,69,0,1326,1340,3,140,70,0,1327,1340,3,142,71,0, + 1328,1329,5,179,0,0,1329,1330,5,86,0,0,1330,1331,7,8,0,0,1331,1337, + 3,390,195,0,1332,1333,5,136,0,0,1333,1335,7,9,0,0,1334,1336,3,384, + 192,0,1335,1334,1,0,0,0,1335,1336,1,0,0,0,1336,1338,1,0,0,0,1337, + 1332,1,0,0,0,1337,1338,1,0,0,0,1338,1340,1,0,0,0,1339,1325,1,0,0, + 0,1339,1326,1,0,0,0,1339,1327,1,0,0,0,1339,1328,1,0,0,0,1340,137, + 1,0,0,0,1341,1342,5,179,0,0,1342,1343,5,86,0,0,1343,1344,7,8,0,0, + 1344,1350,3,390,195,0,1345,1346,5,136,0,0,1346,1348,5,46,0,0,1347, + 1349,3,184,92,0,1348,1347,1,0,0,0,1348,1349,1,0,0,0,1349,1351,1, + 0,0,0,1350,1345,1,0,0,0,1350,1351,1,0,0,0,1351,139,1,0,0,0,1352, + 1353,5,179,0,0,1353,1354,5,86,0,0,1354,1355,7,8,0,0,1355,1361,3, + 390,195,0,1356,1357,5,136,0,0,1357,1359,5,188,0,0,1358,1360,3,186, + 93,0,1359,1358,1,0,0,0,1359,1360,1,0,0,0,1360,1362,1,0,0,0,1361, + 1356,1,0,0,0,1361,1362,1,0,0,0,1362,141,1,0,0,0,1363,1364,5,179, + 0,0,1364,1365,5,86,0,0,1365,1366,7,8,0,0,1366,1372,3,390,195,0,1367, + 1368,5,136,0,0,1368,1370,5,32,0,0,1369,1371,3,194,97,0,1370,1369, + 1,0,0,0,1370,1371,1,0,0,0,1371,1373,1,0,0,0,1372,1367,1,0,0,0,1372, + 1373,1,0,0,0,1373,143,1,0,0,0,1374,1378,3,146,73,0,1375,1378,3,148, + 74,0,1376,1378,3,150,75,0,1377,1374,1,0,0,0,1377,1375,1,0,0,0,1377, + 1376,1,0,0,0,1378,145,1,0,0,0,1379,1380,5,34,0,0,1380,1381,5,136, + 0,0,1381,1382,5,46,0,0,1382,1383,3,184,92,0,1383,1386,5,108,0,0, + 1384,1387,3,342,171,0,1385,1387,5,133,0,0,1386,1384,1,0,0,0,1386, + 1385,1,0,0,0,1387,147,1,0,0,0,1388,1389,5,34,0,0,1389,1390,5,136, + 0,0,1390,1391,5,188,0,0,1391,1392,3,186,93,0,1392,1395,5,108,0,0, + 1393,1396,3,342,171,0,1394,1396,5,133,0,0,1395,1393,1,0,0,0,1395, + 1394,1,0,0,0,1396,149,1,0,0,0,1397,1398,5,34,0,0,1398,1399,5,136, + 0,0,1399,1400,5,32,0,0,1400,1401,3,194,97,0,1401,1404,5,108,0,0, + 1402,1405,3,342,171,0,1403,1405,5,133,0,0,1404,1402,1,0,0,0,1404, + 1403,1,0,0,0,1405,151,1,0,0,0,1406,1407,5,67,0,0,1407,1408,3,4,2, + 0,1408,153,1,0,0,0,1409,1415,5,176,0,0,1410,1416,5,2,0,0,1411,1412, + 3,390,195,0,1412,1413,5,249,0,0,1413,1414,3,330,165,0,1414,1416, + 1,0,0,0,1415,1410,1,0,0,0,1415,1411,1,0,0,0,1415,1416,1,0,0,0,1416, + 155,1,0,0,0,1417,1418,5,264,0,0,1418,1419,5,180,0,0,1419,1429,5, + 265,0,0,1420,1422,3,342,171,0,1421,1420,1,0,0,0,1421,1422,1,0,0, + 0,1422,1430,1,0,0,0,1423,1426,3,342,171,0,1424,1425,5,263,0,0,1425, + 1427,3,330,165,0,1426,1424,1,0,0,0,1426,1427,1,0,0,0,1427,1430,1, + 0,0,0,1428,1430,3,330,165,0,1429,1421,1,0,0,0,1429,1423,1,0,0,0, + 1429,1428,1,0,0,0,1430,1431,1,0,0,0,1431,1432,5,266,0,0,1432,157, + 1,0,0,0,1433,1434,5,107,0,0,1434,1435,5,121,0,0,1435,1436,3,186, + 93,0,1436,159,1,0,0,0,1437,1438,5,118,0,0,1438,1439,5,45,0,0,1439, + 1440,5,98,0,0,1440,1442,5,274,0,0,1441,1443,5,144,0,0,1442,1441, + 1,0,0,0,1442,1443,1,0,0,0,1443,1444,1,0,0,0,1444,1445,5,103,0,0, + 1445,1446,5,188,0,0,1446,1456,3,186,93,0,1447,1448,5,145,0,0,1448, + 1449,5,265,0,0,1449,1452,3,330,165,0,1450,1451,5,263,0,0,1451,1453, + 3,330,165,0,1452,1450,1,0,0,0,1452,1453,1,0,0,0,1453,1454,1,0,0, + 0,1454,1455,5,266,0,0,1455,1457,1,0,0,0,1456,1447,1,0,0,0,1456,1457, + 1,0,0,0,1457,161,1,0,0,0,1458,1462,3,164,82,0,1459,1462,3,166,83, + 0,1460,1462,3,168,84,0,1461,1458,1,0,0,0,1461,1459,1,0,0,0,1461, + 1460,1,0,0,0,1462,163,1,0,0,0,1463,1464,5,162,0,0,1464,1477,3,186, + 93,0,1465,1466,5,145,0,0,1466,1467,5,265,0,0,1467,1472,3,330,165, + 0,1468,1469,5,263,0,0,1469,1471,3,330,165,0,1470,1468,1,0,0,0,1471, + 1474,1,0,0,0,1472,1473,1,0,0,0,1472,1470,1,0,0,0,1473,1475,1,0,0, + 0,1474,1472,1,0,0,0,1475,1476,5,266,0,0,1476,1478,1,0,0,0,1477,1465, + 1,0,0,0,1477,1478,1,0,0,0,1478,165,1,0,0,0,1479,1480,5,162,0,0,1480, + 1481,5,13,0,0,1481,167,1,0,0,0,1482,1483,5,162,0,0,1483,1484,5,85, + 0,0,1484,1485,3,190,95,0,1485,169,1,0,0,0,1486,1487,5,93,0,0,1487, + 1488,5,66,0,0,1488,171,1,0,0,0,1489,1490,5,93,0,0,1490,1491,5,132, + 0,0,1491,1492,5,66,0,0,1492,173,1,0,0,0,1493,1494,3,384,192,0,1494, + 175,1,0,0,0,1495,1496,3,384,192,0,1496,177,1,0,0,0,1497,1498,3,384, + 192,0,1498,179,1,0,0,0,1499,1500,3,384,192,0,1500,181,1,0,0,0,1501, + 1502,3,384,192,0,1502,183,1,0,0,0,1503,1504,3,384,192,0,1504,185, + 1,0,0,0,1505,1510,3,390,195,0,1506,1507,5,261,0,0,1507,1509,3,390, + 195,0,1508,1506,1,0,0,0,1509,1512,1,0,0,0,1510,1508,1,0,0,0,1510, + 1511,1,0,0,0,1511,187,1,0,0,0,1512,1510,1,0,0,0,1513,1518,3,390, + 195,0,1514,1515,5,261,0,0,1515,1517,3,390,195,0,1516,1514,1,0,0, + 0,1517,1520,1,0,0,0,1518,1516,1,0,0,0,1518,1519,1,0,0,0,1519,189, + 1,0,0,0,1520,1518,1,0,0,0,1521,1524,3,394,197,0,1522,1524,3,384, + 192,0,1523,1521,1,0,0,0,1523,1522,1,0,0,0,1524,191,1,0,0,0,1525, + 1526,1,0,0,0,1526,193,1,0,0,0,1527,1528,4,97,0,0,1528,1531,3,192, + 96,0,1529,1531,3,386,193,0,1530,1527,1,0,0,0,1530,1529,1,0,0,0,1531, + 195,1,0,0,0,1532,1533,3,384,192,0,1533,197,1,0,0,0,1534,1535,4,99, + 1,0,1535,1538,3,192,96,0,1536,1538,3,386,193,0,1537,1534,1,0,0,0, + 1537,1536,1,0,0,0,1538,199,1,0,0,0,1539,1542,3,186,93,0,1540,1542, + 3,188,94,0,1541,1539,1,0,0,0,1541,1540,1,0,0,0,1542,201,1,0,0,0, + 1543,1544,5,21,0,0,1544,1545,5,26,0,0,1545,1547,3,316,158,0,1546, + 1543,1,0,0,0,1546,1547,1,0,0,0,1547,1549,1,0,0,0,1548,1550,3,228, + 114,0,1549,1548,1,0,0,0,1549,1550,1,0,0,0,1550,1554,1,0,0,0,1551, + 1552,5,168,0,0,1552,1553,5,79,0,0,1553,1555,3,264,132,0,1554,1551, + 1,0,0,0,1554,1555,1,0,0,0,1555,1559,1,0,0,0,1556,1557,5,216,0,0, + 1557,1558,5,175,0,0,1558,1560,3,258,129,0,1559,1556,1,0,0,0,1559, + 1560,1,0,0,0,1560,1564,1,0,0,0,1561,1562,5,23,0,0,1562,1563,5,9, + 0,0,1563,1565,3,240,120,0,1564,1561,1,0,0,0,1564,1565,1,0,0,0,1565, + 1568,1,0,0,0,1566,1567,5,24,0,0,1567,1569,3,342,171,0,1568,1566, + 1,0,0,0,1568,1569,1,0,0,0,1569,1580,1,0,0,0,1570,1571,5,30,0,0,1571, + 1572,5,94,0,0,1572,1577,3,384,192,0,1573,1574,5,216,0,0,1574,1575, + 5,151,0,0,1575,1576,5,249,0,0,1576,1578,5,277,0,0,1577,1573,1,0, + 0,0,1577,1578,1,0,0,0,1578,1581,1,0,0,0,1579,1581,5,197,0,0,1580, + 1570,1,0,0,0,1580,1579,1,0,0,0,1580,1581,1,0,0,0,1581,1584,1,0,0, + 0,1582,1583,5,25,0,0,1583,1585,3,258,129,0,1584,1582,1,0,0,0,1584, + 1585,1,0,0,0,1585,203,1,0,0,0,1586,1591,3,206,103,0,1587,1588,5, + 263,0,0,1588,1590,3,206,103,0,1589,1587,1,0,0,0,1590,1593,1,0,0, + 0,1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592,205,1,0,0,0,1593,1591, + 1,0,0,0,1594,1595,3,384,192,0,1595,1596,5,249,0,0,1596,1597,3,330, + 165,0,1597,207,1,0,0,0,1598,1600,5,265,0,0,1599,1601,3,210,105,0, + 1600,1599,1,0,0,0,1600,1601,1,0,0,0,1601,1608,1,0,0,0,1602,1604, + 5,263,0,0,1603,1605,3,210,105,0,1604,1603,1,0,0,0,1604,1605,1,0, + 0,0,1605,1607,1,0,0,0,1606,1602,1,0,0,0,1607,1610,1,0,0,0,1608,1606, + 1,0,0,0,1608,1609,1,0,0,0,1609,1611,1,0,0,0,1610,1608,1,0,0,0,1611, + 1612,5,266,0,0,1612,209,1,0,0,0,1613,1615,3,182,91,0,1614,1616,3, + 228,114,0,1615,1614,1,0,0,0,1615,1616,1,0,0,0,1616,211,1,0,0,0,1617, + 1619,3,214,107,0,1618,1617,1,0,0,0,1618,1619,1,0,0,0,1619,1620,1, + 0,0,0,1620,1621,3,268,134,0,1621,213,1,0,0,0,1622,1623,5,216,0,0, + 1623,1628,3,290,145,0,1624,1625,5,263,0,0,1625,1627,3,290,145,0, + 1626,1624,1,0,0,0,1627,1630,1,0,0,0,1628,1626,1,0,0,0,1628,1629, + 1,0,0,0,1629,215,1,0,0,0,1630,1628,1,0,0,0,1631,1632,5,150,0,0,1632, + 1633,5,110,0,0,1633,1635,3,316,158,0,1634,1636,5,53,0,0,1635,1634, + 1,0,0,0,1635,1636,1,0,0,0,1636,1640,1,0,0,0,1637,1641,5,225,0,0, + 1638,1639,5,263,0,0,1639,1641,5,225,0,0,1640,1637,1,0,0,0,1640,1638, + 1,0,0,0,1640,1641,1,0,0,0,1641,1645,1,0,0,0,1642,1646,5,226,0,0, + 1643,1644,5,263,0,0,1644,1646,5,226,0,0,1645,1642,1,0,0,0,1645,1643, + 1,0,0,0,1645,1646,1,0,0,0,1646,1659,1,0,0,0,1647,1648,5,263,0,0, + 1648,1651,3,218,109,0,1649,1651,3,218,109,0,1650,1647,1,0,0,0,1650, + 1649,1,0,0,0,1651,1656,1,0,0,0,1652,1653,5,263,0,0,1653,1655,3,218, + 109,0,1654,1652,1,0,0,0,1655,1658,1,0,0,0,1656,1657,1,0,0,0,1656, + 1654,1,0,0,0,1657,1660,1,0,0,0,1658,1656,1,0,0,0,1659,1650,1,0,0, + 0,1659,1660,1,0,0,0,1660,217,1,0,0,0,1661,1662,5,81,0,0,1662,1663, + 5,110,0,0,1663,1664,3,316,158,0,1664,1665,5,224,0,0,1665,1666,3, + 186,93,0,1666,1668,3,316,158,0,1667,1669,5,53,0,0,1668,1667,1,0, + 0,0,1668,1669,1,0,0,0,1669,1671,1,0,0,0,1670,1672,5,225,0,0,1671, + 1670,1,0,0,0,1671,1672,1,0,0,0,1672,1674,1,0,0,0,1673,1675,5,226, + 0,0,1674,1673,1,0,0,0,1674,1675,1,0,0,0,1675,219,1,0,0,0,1676,1677, + 3,194,97,0,1677,1680,3,356,178,0,1678,1679,5,34,0,0,1679,1681,3, + 342,171,0,1680,1678,1,0,0,0,1680,1681,1,0,0,0,1681,221,1,0,0,0,1682, + 1683,3,182,91,0,1683,1685,3,356,178,0,1684,1686,3,228,114,0,1685, + 1684,1,0,0,0,1685,1686,1,0,0,0,1686,223,1,0,0,0,1687,1688,3,226, + 113,0,1688,225,1,0,0,0,1689,1690,3,182,91,0,1690,1698,3,356,178, + 0,1691,1695,3,234,117,0,1692,1694,3,234,117,0,1693,1692,1,0,0,0, + 1694,1697,1,0,0,0,1695,1696,1,0,0,0,1695,1693,1,0,0,0,1696,1699, + 1,0,0,0,1697,1695,1,0,0,0,1698,1691,1,0,0,0,1698,1699,1,0,0,0,1699, + 1701,1,0,0,0,1700,1702,3,228,114,0,1701,1700,1,0,0,0,1701,1702,1, + 0,0,0,1702,1705,1,0,0,0,1703,1704,5,150,0,0,1704,1706,5,110,0,0, + 1705,1703,1,0,0,0,1705,1706,1,0,0,0,1706,227,1,0,0,0,1707,1708,5, + 34,0,0,1708,1709,3,342,171,0,1709,229,1,0,0,0,1710,1718,3,220,110, + 0,1711,1715,3,234,117,0,1712,1714,3,234,117,0,1713,1712,1,0,0,0, + 1714,1717,1,0,0,0,1715,1716,1,0,0,0,1715,1713,1,0,0,0,1716,1719, + 1,0,0,0,1717,1715,1,0,0,0,1718,1711,1,0,0,0,1718,1719,1,0,0,0,1719, + 231,1,0,0,0,1720,1721,3,182,91,0,1721,1724,3,356,178,0,1722,1723, + 5,34,0,0,1723,1725,3,342,171,0,1724,1722,1,0,0,0,1724,1725,1,0,0, + 0,1725,1733,1,0,0,0,1726,1730,3,234,117,0,1727,1729,3,234,117,0, + 1728,1727,1,0,0,0,1729,1732,1,0,0,0,1730,1731,1,0,0,0,1730,1728, + 1,0,0,0,1731,1734,1,0,0,0,1732,1730,1,0,0,0,1733,1726,1,0,0,0,1733, + 1734,1,0,0,0,1734,233,1,0,0,0,1735,1737,5,132,0,0,1736,1735,1,0, + 0,0,1736,1737,1,0,0,0,1737,1738,1,0,0,0,1738,1741,5,133,0,0,1739, + 1741,3,236,118,0,1740,1736,1,0,0,0,1740,1739,1,0,0,0,1741,235,1, + 0,0,0,1742,1743,5,60,0,0,1743,1751,3,330,165,0,1744,1745,5,35,0, + 0,1745,1751,3,330,165,0,1746,1747,5,51,0,0,1747,1751,3,330,165,0, + 1748,1749,5,16,0,0,1749,1751,3,392,196,0,1750,1742,1,0,0,0,1750, + 1744,1,0,0,0,1750,1746,1,0,0,0,1750,1748,1,0,0,0,1751,237,1,0,0, + 0,1752,1753,7,10,0,0,1753,239,1,0,0,0,1754,1755,7,11,0,0,1755,241, + 1,0,0,0,1756,1761,3,244,122,0,1757,1758,5,263,0,0,1758,1760,3,244, + 122,0,1759,1757,1,0,0,0,1760,1763,1,0,0,0,1761,1762,1,0,0,0,1761, + 1759,1,0,0,0,1762,1766,1,0,0,0,1763,1761,1,0,0,0,1764,1765,5,263, + 0,0,1765,1767,3,246,123,0,1766,1764,1,0,0,0,1766,1767,1,0,0,0,1767, + 1770,1,0,0,0,1768,1770,3,246,123,0,1769,1756,1,0,0,0,1769,1768,1, + 0,0,0,1770,243,1,0,0,0,1771,1773,5,89,0,0,1772,1774,3,316,158,0, + 1773,1772,1,0,0,0,1773,1774,1,0,0,0,1774,1775,1,0,0,0,1775,1776, + 5,146,0,0,1776,1777,3,392,196,0,1777,245,1,0,0,0,1778,1780,5,154, + 0,0,1779,1781,3,316,158,0,1780,1779,1,0,0,0,1780,1781,1,0,0,0,1781, + 1782,1,0,0,0,1782,1783,5,265,0,0,1783,1784,5,145,0,0,1784,1790,3, + 248,124,0,1785,1786,5,263,0,0,1786,1787,5,145,0,0,1787,1789,3,248, + 124,0,1788,1785,1,0,0,0,1789,1792,1,0,0,0,1790,1791,1,0,0,0,1790, + 1788,1,0,0,0,1791,1793,1,0,0,0,1792,1790,1,0,0,0,1793,1794,5,266, + 0,0,1794,247,1,0,0,0,1795,1796,5,210,0,0,1796,1797,3,254,127,0,1797, + 1798,3,330,165,0,1798,1811,1,0,0,0,1799,1800,3,330,165,0,1800,1801, + 3,252,126,0,1801,1803,1,0,0,0,1802,1799,1,0,0,0,1802,1803,1,0,0, + 0,1803,1804,1,0,0,0,1804,1808,5,211,0,0,1805,1806,3,252,126,0,1806, + 1807,3,330,165,0,1807,1809,1,0,0,0,1808,1805,1,0,0,0,1808,1809,1, + 0,0,0,1809,1811,1,0,0,0,1810,1795,1,0,0,0,1810,1802,1,0,0,0,1811, + 249,1,0,0,0,1812,1813,5,30,0,0,1813,1814,5,94,0,0,1814,1819,3,390, + 195,0,1815,1816,5,216,0,0,1816,1817,5,151,0,0,1817,1818,5,249,0, + 0,1818,1820,3,392,196,0,1819,1815,1,0,0,0,1819,1820,1,0,0,0,1820, + 1823,1,0,0,0,1821,1823,5,197,0,0,1822,1812,1,0,0,0,1822,1821,1,0, + 0,0,1823,251,1,0,0,0,1824,1830,1,0,0,0,1825,1830,5,251,0,0,1826, + 1830,5,252,0,0,1827,1830,5,253,0,0,1828,1830,5,254,0,0,1829,1824, + 1,0,0,0,1829,1825,1,0,0,0,1829,1826,1,0,0,0,1829,1827,1,0,0,0,1829, + 1828,1,0,0,0,1830,253,1,0,0,0,1831,1840,5,249,0,0,1832,1840,5,250, + 0,0,1833,1840,5,115,0,0,1834,1840,5,164,0,0,1835,1840,5,163,0,0, + 1836,1840,5,15,0,0,1837,1840,5,94,0,0,1838,1840,3,252,126,0,1839, + 1831,1,0,0,0,1839,1832,1,0,0,0,1839,1833,1,0,0,0,1839,1834,1,0,0, + 0,1839,1835,1,0,0,0,1839,1836,1,0,0,0,1839,1837,1,0,0,0,1839,1838, + 1,0,0,0,1840,255,1,0,0,0,1841,1842,5,115,0,0,1842,1845,3,384,192, + 0,1843,1844,7,12,0,0,1844,1846,5,153,0,0,1845,1843,1,0,0,0,1845, + 1846,1,0,0,0,1846,257,1,0,0,0,1847,1848,5,265,0,0,1848,1853,3,266, + 133,0,1849,1850,5,263,0,0,1850,1852,3,266,133,0,1851,1849,1,0,0, + 0,1852,1855,1,0,0,0,1853,1851,1,0,0,0,1853,1854,1,0,0,0,1854,1856, + 1,0,0,0,1855,1853,1,0,0,0,1856,1857,5,266,0,0,1857,259,1,0,0,0,1858, + 1859,5,265,0,0,1859,1864,3,220,110,0,1860,1861,5,263,0,0,1861,1863, + 3,220,110,0,1862,1860,1,0,0,0,1863,1866,1,0,0,0,1864,1865,1,0,0, + 0,1864,1862,1,0,0,0,1865,1867,1,0,0,0,1866,1864,1,0,0,0,1867,1868, + 5,266,0,0,1868,261,1,0,0,0,1869,1874,3,330,165,0,1870,1871,5,263, + 0,0,1871,1873,3,330,165,0,1872,1870,1,0,0,0,1873,1876,1,0,0,0,1874, + 1872,1,0,0,0,1874,1875,1,0,0,0,1875,263,1,0,0,0,1876,1874,1,0,0, + 0,1877,1887,5,52,0,0,1878,1879,5,71,0,0,1879,1880,5,191,0,0,1880, + 1881,5,26,0,0,1881,1885,3,342,171,0,1882,1883,5,63,0,0,1883,1884, + 5,26,0,0,1884,1886,3,342,171,0,1885,1882,1,0,0,0,1885,1886,1,0,0, + 0,1886,1888,1,0,0,0,1887,1878,1,0,0,0,1887,1888,1,0,0,0,1888,1893, + 1,0,0,0,1889,1890,5,117,0,0,1890,1891,5,191,0,0,1891,1892,5,26,0, + 0,1892,1894,3,342,171,0,1893,1889,1,0,0,0,1893,1894,1,0,0,0,1894, + 265,1,0,0,0,1895,1898,3,390,195,0,1896,1897,5,249,0,0,1897,1899, + 3,330,165,0,1898,1896,1,0,0,0,1898,1899,1,0,0,0,1899,267,1,0,0,0, + 1900,1911,3,270,135,0,1901,1902,5,139,0,0,1902,1903,5,26,0,0,1903, + 1908,3,274,137,0,1904,1905,5,263,0,0,1905,1907,3,274,137,0,1906, + 1904,1,0,0,0,1907,1910,1,0,0,0,1908,1906,1,0,0,0,1908,1909,1,0,0, + 0,1909,1912,1,0,0,0,1910,1908,1,0,0,0,1911,1901,1,0,0,0,1911,1912, + 1,0,0,0,1912,1919,1,0,0,0,1913,1914,5,116,0,0,1914,1917,3,330,165, + 0,1915,1916,5,135,0,0,1916,1918,5,277,0,0,1917,1915,1,0,0,0,1917, + 1918,1,0,0,0,1918,1920,1,0,0,0,1919,1913,1,0,0,0,1919,1920,1,0,0, + 0,1920,269,1,0,0,0,1921,1922,6,135,-1,0,1922,1923,3,272,136,0,1923, + 1938,1,0,0,0,1924,1925,10,2,0,0,1925,1927,5,100,0,0,1926,1928,3, + 292,146,0,1927,1926,1,0,0,0,1927,1928,1,0,0,0,1928,1929,1,0,0,0, + 1929,1937,3,270,135,3,1930,1931,10,1,0,0,1931,1933,7,13,0,0,1932, + 1934,3,292,146,0,1933,1932,1,0,0,0,1933,1934,1,0,0,0,1934,1935,1, + 0,0,0,1935,1937,3,270,135,2,1936,1924,1,0,0,0,1936,1930,1,0,0,0, + 1937,1940,1,0,0,0,1938,1936,1,0,0,0,1938,1939,1,0,0,0,1939,271,1, + 0,0,0,1940,1938,1,0,0,0,1941,1958,3,276,138,0,1942,1943,5,188,0, + 0,1943,1958,3,186,93,0,1944,1945,5,211,0,0,1945,1950,3,330,165,0, + 1946,1947,5,263,0,0,1947,1949,3,330,165,0,1948,1946,1,0,0,0,1949, + 1952,1,0,0,0,1950,1948,1,0,0,0,1950,1951,1,0,0,0,1951,1958,1,0,0, + 0,1952,1950,1,0,0,0,1953,1954,5,265,0,0,1954,1955,3,268,134,0,1955, + 1956,5,266,0,0,1956,1958,1,0,0,0,1957,1941,1,0,0,0,1957,1942,1,0, + 0,0,1957,1944,1,0,0,0,1957,1953,1,0,0,0,1958,273,1,0,0,0,1959,1961, + 3,328,164,0,1960,1962,7,14,0,0,1961,1960,1,0,0,0,1961,1962,1,0,0, + 0,1962,1965,1,0,0,0,1963,1964,5,134,0,0,1964,1966,7,15,0,0,1965, + 1963,1,0,0,0,1965,1966,1,0,0,0,1966,275,1,0,0,0,1967,1969,5,174, + 0,0,1968,1970,3,292,146,0,1969,1968,1,0,0,0,1969,1970,1,0,0,0,1970, + 1972,1,0,0,0,1971,1973,5,183,0,0,1972,1971,1,0,0,0,1972,1973,1,0, + 0,0,1973,1974,1,0,0,0,1974,1984,3,278,139,0,1975,1976,5,82,0,0,1976, + 1981,3,304,152,0,1977,1978,5,263,0,0,1978,1980,3,304,152,0,1979, + 1977,1,0,0,0,1980,1983,1,0,0,0,1981,1979,1,0,0,0,1981,1982,1,0,0, + 0,1982,1985,1,0,0,0,1983,1981,1,0,0,0,1984,1975,1,0,0,0,1984,1985, + 1,0,0,0,1985,1987,1,0,0,0,1986,1988,3,280,140,0,1987,1986,1,0,0, + 0,1987,1988,1,0,0,0,1988,1992,1,0,0,0,1989,1990,5,87,0,0,1990,1991, + 5,26,0,0,1991,1993,3,284,142,0,1992,1989,1,0,0,0,1992,1993,1,0,0, + 0,1993,1995,1,0,0,0,1994,1996,3,282,141,0,1995,1994,1,0,0,0,1995, + 1996,1,0,0,0,1996,277,1,0,0,0,1997,2002,3,294,147,0,1998,1999,5, + 263,0,0,1999,2001,3,294,147,0,2000,1998,1,0,0,0,2001,2004,1,0,0, + 0,2002,2000,1,0,0,0,2002,2003,1,0,0,0,2003,279,1,0,0,0,2004,2002, + 1,0,0,0,2005,2008,5,215,0,0,2006,2009,3,332,166,0,2007,2009,3,198, + 99,0,2008,2006,1,0,0,0,2008,2007,1,0,0,0,2009,281,1,0,0,0,2010,2013, + 5,90,0,0,2011,2014,3,332,166,0,2012,2014,3,198,99,0,2013,2011,1, + 0,0,0,2013,2012,1,0,0,0,2014,283,1,0,0,0,2015,2017,3,292,146,0,2016, + 2015,1,0,0,0,2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018,2023,3,286, + 143,0,2019,2020,5,263,0,0,2020,2022,3,286,143,0,2021,2019,1,0,0, + 0,2022,2025,1,0,0,0,2023,2021,1,0,0,0,2023,2024,1,0,0,0,2024,285, + 1,0,0,0,2025,2023,1,0,0,0,2026,2027,3,288,144,0,2027,287,1,0,0,0, + 2028,2037,5,265,0,0,2029,2034,3,328,164,0,2030,2031,5,263,0,0,2031, + 2033,3,328,164,0,2032,2030,1,0,0,0,2033,2036,1,0,0,0,2034,2032,1, + 0,0,0,2034,2035,1,0,0,0,2035,2038,1,0,0,0,2036,2034,1,0,0,0,2037, + 2029,1,0,0,0,2037,2038,1,0,0,0,2038,2039,1,0,0,0,2039,2042,5,266, + 0,0,2040,2042,3,328,164,0,2041,2028,1,0,0,0,2041,2040,1,0,0,0,2042, + 289,1,0,0,0,2043,2045,3,390,195,0,2044,2046,3,316,158,0,2045,2044, + 1,0,0,0,2045,2046,1,0,0,0,2046,2047,1,0,0,0,2047,2048,5,9,0,0,2048, + 2049,3,322,161,0,2049,291,1,0,0,0,2050,2051,7,16,0,0,2051,293,1, + 0,0,0,2052,2054,3,298,149,0,2053,2055,3,296,148,0,2054,2053,1,0, + 0,0,2054,2055,1,0,0,0,2055,2062,1,0,0,0,2056,2058,3,300,150,0,2057, + 2059,3,296,148,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2062,1, + 0,0,0,2060,2062,3,302,151,0,2061,2052,1,0,0,0,2061,2056,1,0,0,0, + 2061,2060,1,0,0,0,2062,295,1,0,0,0,2063,2065,5,9,0,0,2064,2063,1, + 0,0,0,2064,2065,1,0,0,0,2065,2066,1,0,0,0,2066,2067,3,390,195,0, + 2067,297,1,0,0,0,2068,2069,3,194,97,0,2069,299,1,0,0,0,2070,2071, + 3,330,165,0,2071,301,1,0,0,0,2072,2073,3,384,192,0,2073,2074,5,261, + 0,0,2074,2076,1,0,0,0,2075,2072,1,0,0,0,2075,2076,1,0,0,0,2076,2077, + 1,0,0,0,2077,2078,5,257,0,0,2078,303,1,0,0,0,2079,2080,6,152,-1, + 0,2080,2081,3,310,155,0,2081,2095,1,0,0,0,2082,2091,10,2,0,0,2083, + 2084,5,38,0,0,2084,2085,5,109,0,0,2085,2092,3,310,155,0,2086,2087, + 3,306,153,0,2087,2088,5,109,0,0,2088,2089,3,304,152,0,2089,2090, + 3,308,154,0,2090,2092,1,0,0,0,2091,2083,1,0,0,0,2091,2086,1,0,0, + 0,2092,2094,1,0,0,0,2093,2082,1,0,0,0,2094,2097,1,0,0,0,2095,2093, + 1,0,0,0,2095,2096,1,0,0,0,2096,305,1,0,0,0,2097,2095,1,0,0,0,2098, + 2100,5,97,0,0,2099,2098,1,0,0,0,2099,2100,1,0,0,0,2100,2130,1,0, + 0,0,2101,2103,5,114,0,0,2102,2104,5,97,0,0,2103,2102,1,0,0,0,2103, + 2104,1,0,0,0,2104,2130,1,0,0,0,2105,2107,5,165,0,0,2106,2108,5,97, + 0,0,2107,2106,1,0,0,0,2107,2108,1,0,0,0,2108,2130,1,0,0,0,2109,2111, + 5,114,0,0,2110,2112,5,141,0,0,2111,2110,1,0,0,0,2111,2112,1,0,0, + 0,2112,2130,1,0,0,0,2113,2115,5,165,0,0,2114,2116,5,141,0,0,2115, + 2114,1,0,0,0,2115,2116,1,0,0,0,2116,2130,1,0,0,0,2117,2119,5,83, + 0,0,2118,2120,5,141,0,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0,2120, + 2130,1,0,0,0,2121,2122,5,114,0,0,2122,2130,5,177,0,0,2123,2124,5, + 165,0,0,2124,2130,5,177,0,0,2125,2126,5,114,0,0,2126,2130,5,7,0, + 0,2127,2128,5,165,0,0,2128,2130,5,7,0,0,2129,2099,1,0,0,0,2129,2101, + 1,0,0,0,2129,2105,1,0,0,0,2129,2109,1,0,0,0,2129,2113,1,0,0,0,2129, + 2117,1,0,0,0,2129,2121,1,0,0,0,2129,2123,1,0,0,0,2129,2125,1,0,0, + 0,2129,2127,1,0,0,0,2130,307,1,0,0,0,2131,2134,5,136,0,0,2132,2135, + 3,332,166,0,2133,2135,3,198,99,0,2134,2132,1,0,0,0,2134,2133,1,0, + 0,0,2135,2149,1,0,0,0,2136,2137,5,205,0,0,2137,2138,5,265,0,0,2138, + 2143,3,390,195,0,2139,2140,5,263,0,0,2140,2142,3,390,195,0,2141, + 2139,1,0,0,0,2142,2145,1,0,0,0,2143,2141,1,0,0,0,2143,2144,1,0,0, + 0,2144,2146,1,0,0,0,2145,2143,1,0,0,0,2146,2147,5,266,0,0,2147,2149, + 1,0,0,0,2148,2131,1,0,0,0,2148,2136,1,0,0,0,2149,309,1,0,0,0,2150, + 2163,3,314,157,0,2151,2152,5,190,0,0,2152,2153,3,312,156,0,2153, + 2154,5,265,0,0,2154,2155,3,330,165,0,2155,2161,5,266,0,0,2156,2157, + 5,157,0,0,2157,2158,5,265,0,0,2158,2159,3,330,165,0,2159,2160,5, + 266,0,0,2160,2162,1,0,0,0,2161,2156,1,0,0,0,2161,2162,1,0,0,0,2162, + 2164,1,0,0,0,2163,2151,1,0,0,0,2163,2164,1,0,0,0,2164,311,1,0,0, + 0,2165,2166,7,17,0,0,2166,313,1,0,0,0,2167,2175,3,318,159,0,2168, + 2170,5,9,0,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170,2171,1,0,0, + 0,2171,2173,3,390,195,0,2172,2174,3,316,158,0,2173,2172,1,0,0,0, + 2173,2174,1,0,0,0,2174,2176,1,0,0,0,2175,2169,1,0,0,0,2175,2176, + 1,0,0,0,2176,315,1,0,0,0,2177,2178,5,265,0,0,2178,2183,3,194,97, + 0,2179,2180,5,263,0,0,2180,2182,3,194,97,0,2181,2179,1,0,0,0,2182, + 2185,1,0,0,0,2183,2181,1,0,0,0,2183,2184,1,0,0,0,2184,2186,1,0,0, + 0,2185,2183,1,0,0,0,2186,2187,5,266,0,0,2187,317,1,0,0,0,2188,2193, + 3,200,100,0,2189,2193,3,320,160,0,2190,2193,3,324,162,0,2191,2193, + 3,326,163,0,2192,2188,1,0,0,0,2192,2189,1,0,0,0,2192,2190,1,0,0, + 0,2192,2191,1,0,0,0,2193,319,1,0,0,0,2194,2196,5,113,0,0,2195,2194, + 1,0,0,0,2195,2196,1,0,0,0,2196,2197,1,0,0,0,2197,2198,3,322,161, + 0,2198,321,1,0,0,0,2199,2200,5,265,0,0,2200,2201,3,212,106,0,2201, + 2202,5,266,0,0,2202,323,1,0,0,0,2203,2204,5,201,0,0,2204,2205,5, + 265,0,0,2205,2210,3,330,165,0,2206,2207,5,263,0,0,2207,2209,3,330, + 165,0,2208,2206,1,0,0,0,2209,2212,1,0,0,0,2210,2208,1,0,0,0,2210, + 2211,1,0,0,0,2211,2213,1,0,0,0,2212,2210,1,0,0,0,2213,2216,5,266, + 0,0,2214,2215,5,216,0,0,2215,2217,5,140,0,0,2216,2214,1,0,0,0,2216, + 2217,1,0,0,0,2217,325,1,0,0,0,2218,2219,5,265,0,0,2219,2220,3,304, + 152,0,2220,2221,5,266,0,0,2221,327,1,0,0,0,2222,2225,3,194,97,0, + 2223,2225,3,330,165,0,2224,2222,1,0,0,0,2224,2223,1,0,0,0,2225,329, + 1,0,0,0,2226,2227,3,332,166,0,2227,331,1,0,0,0,2228,2229,6,166,-1, + 0,2229,2231,3,336,168,0,2230,2232,3,334,167,0,2231,2230,1,0,0,0, + 2231,2232,1,0,0,0,2232,2236,1,0,0,0,2233,2234,5,132,0,0,2234,2236, + 3,332,166,3,2235,2228,1,0,0,0,2235,2233,1,0,0,0,2236,2245,1,0,0, + 0,2237,2238,10,2,0,0,2238,2239,5,5,0,0,2239,2244,3,332,166,3,2240, + 2241,10,1,0,0,2241,2242,5,138,0,0,2242,2244,3,332,166,2,2243,2237, + 1,0,0,0,2243,2240,1,0,0,0,2244,2247,1,0,0,0,2245,2243,1,0,0,0,2245, + 2246,1,0,0,0,2246,333,1,0,0,0,2247,2245,1,0,0,0,2248,2249,3,344, + 172,0,2249,2250,3,336,168,0,2250,2307,1,0,0,0,2251,2252,3,344,172, + 0,2252,2253,3,346,173,0,2253,2254,3,322,161,0,2254,2307,1,0,0,0, + 2255,2257,5,132,0,0,2256,2255,1,0,0,0,2256,2257,1,0,0,0,2257,2258, + 1,0,0,0,2258,2259,5,15,0,0,2259,2260,3,336,168,0,2260,2261,5,5,0, + 0,2261,2262,3,336,168,0,2262,2307,1,0,0,0,2263,2265,5,132,0,0,2264, + 2263,1,0,0,0,2264,2265,1,0,0,0,2265,2266,1,0,0,0,2266,2267,5,94, + 0,0,2267,2268,5,265,0,0,2268,2273,3,330,165,0,2269,2270,5,263,0, + 0,2270,2272,3,330,165,0,2271,2269,1,0,0,0,2272,2275,1,0,0,0,2273, + 2271,1,0,0,0,2273,2274,1,0,0,0,2274,2276,1,0,0,0,2275,2273,1,0,0, + 0,2276,2277,5,266,0,0,2277,2307,1,0,0,0,2278,2280,5,132,0,0,2279, + 2278,1,0,0,0,2279,2280,1,0,0,0,2280,2281,1,0,0,0,2281,2282,5,94, + 0,0,2282,2307,3,322,161,0,2283,2285,5,132,0,0,2284,2283,1,0,0,0, + 2284,2285,1,0,0,0,2285,2286,1,0,0,0,2286,2287,7,18,0,0,2287,2290, + 3,336,168,0,2288,2289,5,62,0,0,2289,2291,3,336,168,0,2290,2288,1, + 0,0,0,2290,2291,1,0,0,0,2291,2307,1,0,0,0,2292,2293,7,19,0,0,2293, + 2307,3,336,168,0,2294,2296,5,108,0,0,2295,2297,5,132,0,0,2296,2295, + 1,0,0,0,2296,2297,1,0,0,0,2297,2298,1,0,0,0,2298,2307,7,20,0,0,2299, + 2301,5,108,0,0,2300,2302,5,132,0,0,2301,2300,1,0,0,0,2301,2302,1, + 0,0,0,2302,2303,1,0,0,0,2303,2304,5,57,0,0,2304,2305,5,82,0,0,2305, + 2307,3,336,168,0,2306,2248,1,0,0,0,2306,2251,1,0,0,0,2306,2256,1, + 0,0,0,2306,2264,1,0,0,0,2306,2279,1,0,0,0,2306,2284,1,0,0,0,2306, + 2292,1,0,0,0,2306,2294,1,0,0,0,2306,2299,1,0,0,0,2307,335,1,0,0, + 0,2308,2309,6,168,-1,0,2309,2313,3,340,170,0,2310,2311,7,21,0,0, + 2311,2313,3,336,168,4,2312,2308,1,0,0,0,2312,2310,1,0,0,0,2313,2325, + 1,0,0,0,2314,2315,10,3,0,0,2315,2316,7,22,0,0,2316,2324,3,336,168, + 4,2317,2318,10,2,0,0,2318,2319,7,21,0,0,2319,2324,3,336,168,3,2320, + 2321,10,1,0,0,2321,2322,5,260,0,0,2322,2324,3,336,168,2,2323,2314, + 1,0,0,0,2323,2317,1,0,0,0,2323,2320,1,0,0,0,2324,2327,1,0,0,0,2325, + 2323,1,0,0,0,2325,2326,1,0,0,0,2326,337,1,0,0,0,2327,2325,1,0,0, + 0,2328,2329,3,190,95,0,2329,2341,5,265,0,0,2330,2332,3,292,146,0, + 2331,2330,1,0,0,0,2331,2332,1,0,0,0,2332,2333,1,0,0,0,2333,2338, + 3,330,165,0,2334,2335,5,263,0,0,2335,2337,3,330,165,0,2336,2334, + 1,0,0,0,2337,2340,1,0,0,0,2338,2336,1,0,0,0,2338,2339,1,0,0,0,2339, + 2342,1,0,0,0,2340,2338,1,0,0,0,2341,2331,1,0,0,0,2341,2342,1,0,0, + 0,2342,2353,1,0,0,0,2343,2344,5,139,0,0,2344,2345,5,26,0,0,2345, + 2350,3,274,137,0,2346,2347,5,263,0,0,2347,2349,3,274,137,0,2348, + 2346,1,0,0,0,2349,2352,1,0,0,0,2350,2348,1,0,0,0,2350,2351,1,0,0, + 0,2351,2354,1,0,0,0,2352,2350,1,0,0,0,2353,2343,1,0,0,0,2353,2354, + 1,0,0,0,2354,2355,1,0,0,0,2355,2357,5,266,0,0,2356,2358,3,366,183, + 0,2357,2356,1,0,0,0,2357,2358,1,0,0,0,2358,2360,1,0,0,0,2359,2361, + 3,370,185,0,2360,2359,1,0,0,0,2360,2361,1,0,0,0,2361,339,1,0,0,0, + 2362,2363,6,170,-1,0,2363,2576,5,133,0,0,2364,2576,3,350,175,0,2365, + 2366,3,390,195,0,2366,2367,3,342,171,0,2367,2576,1,0,0,0,2368,2369, + 5,286,0,0,2369,2576,3,342,171,0,2370,2576,3,392,196,0,2371,2576, + 3,348,174,0,2372,2576,3,342,171,0,2373,2576,5,276,0,0,2374,2576, + 5,272,0,0,2375,2376,5,148,0,0,2376,2377,5,265,0,0,2377,2378,3,336, + 168,0,2378,2379,5,94,0,0,2379,2380,3,336,168,0,2380,2381,5,266,0, + 0,2381,2576,1,0,0,0,2382,2383,5,265,0,0,2383,2386,3,330,165,0,2384, + 2385,5,9,0,0,2385,2387,3,356,178,0,2386,2384,1,0,0,0,2386,2387,1, + 0,0,0,2387,2396,1,0,0,0,2388,2389,5,263,0,0,2389,2392,3,330,165, + 0,2390,2391,5,9,0,0,2391,2393,3,356,178,0,2392,2390,1,0,0,0,2392, + 2393,1,0,0,0,2393,2395,1,0,0,0,2394,2388,1,0,0,0,2395,2398,1,0,0, + 0,2396,2397,1,0,0,0,2396,2394,1,0,0,0,2397,2399,1,0,0,0,2398,2396, + 1,0,0,0,2399,2400,5,266,0,0,2400,2576,1,0,0,0,2401,2402,5,168,0, + 0,2402,2403,5,265,0,0,2403,2408,3,330,165,0,2404,2405,5,263,0,0, + 2405,2407,3,330,165,0,2406,2404,1,0,0,0,2407,2410,1,0,0,0,2408,2406, + 1,0,0,0,2408,2409,1,0,0,0,2409,2411,1,0,0,0,2410,2408,1,0,0,0,2411, + 2412,5,266,0,0,2412,2576,1,0,0,0,2413,2414,3,190,95,0,2414,2415, + 5,265,0,0,2415,2416,5,257,0,0,2416,2418,5,266,0,0,2417,2419,3,366, + 183,0,2418,2417,1,0,0,0,2418,2419,1,0,0,0,2419,2421,1,0,0,0,2420, + 2422,3,370,185,0,2421,2420,1,0,0,0,2421,2422,1,0,0,0,2422,2576,1, + 0,0,0,2423,2576,3,338,169,0,2424,2425,3,390,195,0,2425,2426,5,273, + 0,0,2426,2427,3,330,165,0,2427,2576,1,0,0,0,2428,2437,5,265,0,0, + 2429,2434,3,390,195,0,2430,2431,5,263,0,0,2431,2433,3,390,195,0, + 2432,2430,1,0,0,0,2433,2436,1,0,0,0,2434,2432,1,0,0,0,2434,2435, + 1,0,0,0,2435,2438,1,0,0,0,2436,2434,1,0,0,0,2437,2429,1,0,0,0,2437, + 2438,1,0,0,0,2438,2439,1,0,0,0,2439,2440,5,266,0,0,2440,2441,5,273, + 0,0,2441,2576,3,330,165,0,2442,2443,5,265,0,0,2443,2444,3,212,106, + 0,2444,2445,5,266,0,0,2445,2576,1,0,0,0,2446,2447,5,66,0,0,2447, + 2448,5,265,0,0,2448,2449,3,212,106,0,2449,2450,5,266,0,0,2450,2576, + 1,0,0,0,2451,2452,5,28,0,0,2452,2454,3,336,168,0,2453,2455,3,364, + 182,0,2454,2453,1,0,0,0,2455,2456,1,0,0,0,2456,2454,1,0,0,0,2456, + 2457,1,0,0,0,2457,2460,1,0,0,0,2458,2459,5,59,0,0,2459,2461,3,330, + 165,0,2460,2458,1,0,0,0,2460,2461,1,0,0,0,2461,2462,1,0,0,0,2462, + 2463,5,61,0,0,2463,2576,1,0,0,0,2464,2466,5,28,0,0,2465,2467,3,364, + 182,0,2466,2465,1,0,0,0,2467,2468,1,0,0,0,2468,2466,1,0,0,0,2468, + 2469,1,0,0,0,2469,2472,1,0,0,0,2470,2471,5,59,0,0,2471,2473,3,330, + 165,0,2472,2470,1,0,0,0,2472,2473,1,0,0,0,2473,2474,1,0,0,0,2474, + 2475,5,61,0,0,2475,2576,1,0,0,0,2476,2477,5,29,0,0,2477,2478,5,265, + 0,0,2478,2479,3,330,165,0,2479,2480,5,9,0,0,2480,2481,3,356,178, + 0,2481,2482,5,266,0,0,2482,2576,1,0,0,0,2483,2484,5,195,0,0,2484, + 2485,5,265,0,0,2485,2486,3,330,165,0,2486,2487,5,9,0,0,2487,2488, + 3,356,178,0,2488,2489,5,266,0,0,2489,2576,1,0,0,0,2490,2491,5,8, + 0,0,2491,2500,5,267,0,0,2492,2497,3,330,165,0,2493,2494,5,263,0, + 0,2494,2496,3,330,165,0,2495,2493,1,0,0,0,2496,2499,1,0,0,0,2497, + 2495,1,0,0,0,2497,2498,1,0,0,0,2498,2501,1,0,0,0,2499,2497,1,0,0, + 0,2500,2492,1,0,0,0,2500,2501,1,0,0,0,2501,2502,1,0,0,0,2502,2576, + 5,268,0,0,2503,2576,3,196,98,0,2504,2576,5,40,0,0,2505,2509,5,42, + 0,0,2506,2507,5,265,0,0,2507,2508,5,277,0,0,2508,2510,5,266,0,0, + 2509,2506,1,0,0,0,2509,2510,1,0,0,0,2510,2576,1,0,0,0,2511,2515, + 5,43,0,0,2512,2513,5,265,0,0,2513,2514,5,277,0,0,2514,2516,5,266, + 0,0,2515,2512,1,0,0,0,2515,2516,1,0,0,0,2516,2576,1,0,0,0,2517,2521, + 5,119,0,0,2518,2519,5,265,0,0,2519,2520,5,277,0,0,2520,2522,5,266, + 0,0,2521,2518,1,0,0,0,2521,2522,1,0,0,0,2522,2576,1,0,0,0,2523,2527, + 5,120,0,0,2524,2525,5,265,0,0,2525,2526,5,277,0,0,2526,2528,5,266, + 0,0,2527,2524,1,0,0,0,2527,2528,1,0,0,0,2528,2576,1,0,0,0,2529,2576, + 5,44,0,0,2530,2576,5,41,0,0,2531,2532,5,184,0,0,2532,2533,5,265, + 0,0,2533,2534,3,336,168,0,2534,2535,5,82,0,0,2535,2538,3,336,168, + 0,2536,2537,5,78,0,0,2537,2539,3,336,168,0,2538,2536,1,0,0,0,2538, + 2539,1,0,0,0,2539,2540,1,0,0,0,2540,2541,5,266,0,0,2541,2576,1,0, + 0,0,2542,2543,5,131,0,0,2543,2544,5,265,0,0,2544,2547,3,336,168, + 0,2545,2546,5,263,0,0,2546,2548,3,354,177,0,2547,2545,1,0,0,0,2547, + 2548,1,0,0,0,2548,2549,1,0,0,0,2549,2550,5,266,0,0,2550,2576,1,0, + 0,0,2551,2552,5,68,0,0,2552,2553,5,265,0,0,2553,2554,3,390,195,0, + 2554,2555,5,82,0,0,2555,2556,3,336,168,0,2556,2557,5,266,0,0,2557, + 2576,1,0,0,0,2558,2559,5,265,0,0,2559,2560,3,330,165,0,2560,2561, + 5,266,0,0,2561,2576,1,0,0,0,2562,2563,5,88,0,0,2563,2572,5,265,0, + 0,2564,2569,3,384,192,0,2565,2566,5,263,0,0,2566,2568,3,384,192, + 0,2567,2565,1,0,0,0,2568,2571,1,0,0,0,2569,2567,1,0,0,0,2569,2570, + 1,0,0,0,2570,2573,1,0,0,0,2571,2569,1,0,0,0,2572,2564,1,0,0,0,2572, + 2573,1,0,0,0,2573,2574,1,0,0,0,2574,2576,5,266,0,0,2575,2362,1,0, + 0,0,2575,2364,1,0,0,0,2575,2365,1,0,0,0,2575,2368,1,0,0,0,2575,2370, + 1,0,0,0,2575,2371,1,0,0,0,2575,2372,1,0,0,0,2575,2373,1,0,0,0,2575, + 2374,1,0,0,0,2575,2375,1,0,0,0,2575,2382,1,0,0,0,2575,2401,1,0,0, + 0,2575,2413,1,0,0,0,2575,2423,1,0,0,0,2575,2424,1,0,0,0,2575,2428, + 1,0,0,0,2575,2442,1,0,0,0,2575,2446,1,0,0,0,2575,2451,1,0,0,0,2575, + 2464,1,0,0,0,2575,2476,1,0,0,0,2575,2483,1,0,0,0,2575,2490,1,0,0, + 0,2575,2503,1,0,0,0,2575,2504,1,0,0,0,2575,2505,1,0,0,0,2575,2511, + 1,0,0,0,2575,2517,1,0,0,0,2575,2523,1,0,0,0,2575,2529,1,0,0,0,2575, + 2530,1,0,0,0,2575,2531,1,0,0,0,2575,2542,1,0,0,0,2575,2551,1,0,0, + 0,2575,2558,1,0,0,0,2575,2562,1,0,0,0,2576,2587,1,0,0,0,2577,2578, + 10,15,0,0,2578,2579,5,267,0,0,2579,2580,3,336,168,0,2580,2581,5, + 268,0,0,2581,2586,1,0,0,0,2582,2583,10,13,0,0,2583,2584,5,261,0, + 0,2584,2586,3,390,195,0,2585,2577,1,0,0,0,2585,2582,1,0,0,0,2586, + 2589,1,0,0,0,2587,2585,1,0,0,0,2587,2588,1,0,0,0,2588,341,1,0,0, + 0,2589,2587,1,0,0,0,2590,2597,5,274,0,0,2591,2594,5,275,0,0,2592, + 2593,5,198,0,0,2593,2595,5,274,0,0,2594,2592,1,0,0,0,2594,2595,1, + 0,0,0,2595,2597,1,0,0,0,2596,2590,1,0,0,0,2596,2591,1,0,0,0,2597, + 343,1,0,0,0,2598,2599,7,23,0,0,2599,345,1,0,0,0,2600,2601,7,24,0, + 0,2601,347,1,0,0,0,2602,2603,7,25,0,0,2603,349,1,0,0,0,2604,2605, + 5,277,0,0,2605,2619,3,352,176,0,2606,2607,5,265,0,0,2607,2608,5, + 277,0,0,2608,2609,5,266,0,0,2609,2619,3,352,176,0,2610,2611,5,101, + 0,0,2611,2612,5,277,0,0,2612,2619,3,352,176,0,2613,2614,5,101,0, + 0,2614,2615,5,265,0,0,2615,2616,5,277,0,0,2616,2617,5,266,0,0,2617, + 2619,3,352,176,0,2618,2604,1,0,0,0,2618,2606,1,0,0,0,2618,2610,1, + 0,0,0,2618,2613,1,0,0,0,2619,351,1,0,0,0,2620,2621,7,26,0,0,2621, + 353,1,0,0,0,2622,2623,7,27,0,0,2623,355,1,0,0,0,2624,2625,6,178, + -1,0,2625,2626,5,8,0,0,2626,2627,5,251,0,0,2627,2628,3,356,178,0, + 2628,2629,5,253,0,0,2629,2670,1,0,0,0,2630,2631,5,235,0,0,2631,2632, + 5,251,0,0,2632,2633,3,356,178,0,2633,2634,5,263,0,0,2634,2635,3, + 356,178,0,2635,2636,5,253,0,0,2636,2670,1,0,0,0,2637,2638,5,240, + 0,0,2638,2639,5,251,0,0,2639,2640,3,390,195,0,2640,2647,3,356,178, + 0,2641,2642,5,263,0,0,2642,2643,3,390,195,0,2643,2644,3,356,178, + 0,2644,2646,1,0,0,0,2645,2641,1,0,0,0,2646,2649,1,0,0,0,2647,2645, + 1,0,0,0,2647,2648,1,0,0,0,2648,2650,1,0,0,0,2649,2647,1,0,0,0,2650, + 2651,5,253,0,0,2651,2670,1,0,0,0,2652,2655,3,362,181,0,2653,2655, + 3,358,179,0,2654,2652,1,0,0,0,2654,2653,1,0,0,0,2655,2667,1,0,0, + 0,2656,2657,5,265,0,0,2657,2662,3,360,180,0,2658,2659,5,263,0,0, + 2659,2661,3,360,180,0,2660,2658,1,0,0,0,2661,2664,1,0,0,0,2662,2660, + 1,0,0,0,2662,2663,1,0,0,0,2663,2665,1,0,0,0,2664,2662,1,0,0,0,2665, + 2666,5,266,0,0,2666,2668,1,0,0,0,2667,2656,1,0,0,0,2667,2668,1,0, + 0,0,2668,2670,1,0,0,0,2669,2624,1,0,0,0,2669,2630,1,0,0,0,2669,2637, + 1,0,0,0,2669,2654,1,0,0,0,2670,2675,1,0,0,0,2671,2672,10,5,0,0,2672, + 2674,5,8,0,0,2673,2671,1,0,0,0,2674,2677,1,0,0,0,2675,2673,1,0,0, + 0,2675,2676,1,0,0,0,2676,357,1,0,0,0,2677,2675,1,0,0,0,2678,2679, + 7,28,0,0,2679,359,1,0,0,0,2680,2683,5,277,0,0,2681,2683,3,356,178, + 0,2682,2680,1,0,0,0,2682,2681,1,0,0,0,2683,361,1,0,0,0,2684,2689, + 5,284,0,0,2685,2689,5,285,0,0,2686,2689,5,286,0,0,2687,2689,3,390, + 195,0,2688,2684,1,0,0,0,2688,2685,1,0,0,0,2688,2686,1,0,0,0,2688, + 2687,1,0,0,0,2689,363,1,0,0,0,2690,2691,5,214,0,0,2691,2692,3,330, + 165,0,2692,2693,5,192,0,0,2693,2694,3,330,165,0,2694,365,1,0,0,0, + 2695,2696,5,74,0,0,2696,2697,5,265,0,0,2697,2698,3,280,140,0,2698, + 2699,5,266,0,0,2699,367,1,0,0,0,2700,2705,3,330,165,0,2701,2702, + 5,263,0,0,2702,2704,3,330,165,0,2703,2701,1,0,0,0,2704,2707,1,0, + 0,0,2705,2703,1,0,0,0,2705,2706,1,0,0,0,2706,369,1,0,0,0,2707,2705, + 1,0,0,0,2708,2709,5,143,0,0,2709,2713,5,265,0,0,2710,2711,5,145, + 0,0,2711,2712,5,26,0,0,2712,2714,3,368,184,0,2713,2710,1,0,0,0,2713, + 2714,1,0,0,0,2714,2725,1,0,0,0,2715,2716,5,139,0,0,2716,2717,5,26, + 0,0,2717,2722,3,274,137,0,2718,2719,5,263,0,0,2719,2721,3,274,137, + 0,2720,2718,1,0,0,0,2721,2724,1,0,0,0,2722,2720,1,0,0,0,2722,2723, + 1,0,0,0,2723,2726,1,0,0,0,2724,2722,1,0,0,0,2725,2715,1,0,0,0,2725, + 2726,1,0,0,0,2726,2728,1,0,0,0,2727,2729,3,372,186,0,2728,2727,1, + 0,0,0,2728,2729,1,0,0,0,2729,2730,1,0,0,0,2730,2731,5,266,0,0,2731, + 371,1,0,0,0,2732,2733,5,154,0,0,2733,2749,3,374,187,0,2734,2735, + 5,169,0,0,2735,2749,3,374,187,0,2736,2737,5,154,0,0,2737,2738,5, + 15,0,0,2738,2739,3,374,187,0,2739,2740,5,5,0,0,2740,2741,3,374,187, + 0,2741,2749,1,0,0,0,2742,2743,5,169,0,0,2743,2744,5,15,0,0,2744, + 2745,3,374,187,0,2745,2746,5,5,0,0,2746,2747,3,374,187,0,2747,2749, + 1,0,0,0,2748,2732,1,0,0,0,2748,2734,1,0,0,0,2748,2736,1,0,0,0,2748, + 2742,1,0,0,0,2749,373,1,0,0,0,2750,2751,5,199,0,0,2751,2760,5,149, + 0,0,2752,2753,5,199,0,0,2753,2760,5,77,0,0,2754,2755,5,39,0,0,2755, + 2760,5,168,0,0,2756,2757,3,330,165,0,2757,2758,7,29,0,0,2758,2760, + 1,0,0,0,2759,2750,1,0,0,0,2759,2752,1,0,0,0,2759,2754,1,0,0,0,2759, + 2756,1,0,0,0,2760,375,1,0,0,0,2761,2762,3,390,195,0,2762,2763,5, + 261,0,0,2763,2764,3,390,195,0,2764,2767,1,0,0,0,2765,2767,3,390, + 195,0,2766,2761,1,0,0,0,2766,2765,1,0,0,0,2767,377,1,0,0,0,2768, + 2773,3,376,188,0,2769,2770,5,263,0,0,2770,2772,3,376,188,0,2771, + 2769,1,0,0,0,2772,2775,1,0,0,0,2773,2771,1,0,0,0,2773,2774,1,0,0, + 0,2774,379,1,0,0,0,2775,2773,1,0,0,0,2776,2790,5,2,0,0,2777,2790, + 5,4,0,0,2778,2790,5,58,0,0,2779,2790,5,37,0,0,2780,2790,5,99,0,0, + 2781,2790,5,162,0,0,2782,2787,5,174,0,0,2783,2784,5,265,0,0,2784, + 2785,3,390,195,0,2785,2786,5,266,0,0,2786,2788,1,0,0,0,2787,2783, + 1,0,0,0,2787,2788,1,0,0,0,2788,2790,1,0,0,0,2789,2776,1,0,0,0,2789, + 2777,1,0,0,0,2789,2778,1,0,0,0,2789,2779,1,0,0,0,2789,2780,1,0,0, + 0,2789,2781,1,0,0,0,2789,2782,1,0,0,0,2790,381,1,0,0,0,2791,2792, + 7,30,0,0,2792,383,1,0,0,0,2793,2798,3,390,195,0,2794,2795,5,261, + 0,0,2795,2797,3,390,195,0,2796,2794,1,0,0,0,2797,2800,1,0,0,0,2798, + 2796,1,0,0,0,2798,2799,1,0,0,0,2799,385,1,0,0,0,2800,2798,1,0,0, + 0,2801,2807,4,193,13,0,2802,2803,3,390,195,0,2803,2804,5,261,0,0, + 2804,2805,3,192,96,0,2805,2808,1,0,0,0,2806,2808,3,192,96,0,2807, + 2802,1,0,0,0,2807,2806,1,0,0,0,2808,2818,1,0,0,0,2809,2814,3,390, + 195,0,2810,2811,5,261,0,0,2811,2813,3,390,195,0,2812,2810,1,0,0, + 0,2813,2816,1,0,0,0,2814,2812,1,0,0,0,2814,2815,1,0,0,0,2815,2818, + 1,0,0,0,2816,2814,1,0,0,0,2817,2801,1,0,0,0,2817,2809,1,0,0,0,2818, + 387,1,0,0,0,2819,2820,5,166,0,0,2820,2826,3,390,195,0,2821,2822, + 5,204,0,0,2822,2826,3,390,195,0,2823,2824,5,87,0,0,2824,2826,3,390, + 195,0,2825,2819,1,0,0,0,2825,2821,1,0,0,0,2825,2823,1,0,0,0,2826, + 389,1,0,0,0,2827,2833,5,280,0,0,2828,2833,5,274,0,0,2829,2833,3, + 396,198,0,2830,2833,5,283,0,0,2831,2833,5,281,0,0,2832,2827,1,0, + 0,0,2832,2828,1,0,0,0,2832,2829,1,0,0,0,2832,2830,1,0,0,0,2832,2831, + 1,0,0,0,2833,391,1,0,0,0,2834,2836,5,256,0,0,2835,2834,1,0,0,0,2835, + 2836,1,0,0,0,2836,2837,1,0,0,0,2837,2847,5,278,0,0,2838,2840,5,256, + 0,0,2839,2838,1,0,0,0,2839,2840,1,0,0,0,2840,2841,1,0,0,0,2841,2847, + 5,279,0,0,2842,2844,5,256,0,0,2843,2842,1,0,0,0,2843,2844,1,0,0, + 0,2844,2845,1,0,0,0,2845,2847,5,277,0,0,2846,2835,1,0,0,0,2846,2839, + 1,0,0,0,2846,2843,1,0,0,0,2847,393,1,0,0,0,2848,2849,7,31,0,0,2849, + 395,1,0,0,0,2850,2851,7,32,0,0,2851,397,1,0,0,0,362,401,408,432, + 445,449,453,462,467,471,477,479,484,488,492,499,504,510,514,523, + 530,534,539,541,546,549,556,560,565,569,572,576,584,588,592,600, + 604,613,616,619,625,632,643,648,653,658,663,672,675,678,682,708, + 734,743,753,756,770,788,790,799,810,819,826,830,837,843,846,851, + 858,872,885,890,895,901,937,940,946,949,955,961,973,975,986,994, + 999,1003,1008,1015,1019,1023,1029,1033,1037,1046,1049,1052,1060, + 1074,1081,1094,1100,1105,1108,1111,1116,1120,1129,1134,1140,1144, + 1148,1153,1156,1164,1167,1170,1182,1185,1188,1193,1197,1213,1218, + 1225,1228,1234,1237,1244,1247,1251,1256,1259,1266,1269,1293,1307, + 1311,1315,1335,1337,1339,1348,1350,1359,1361,1370,1372,1377,1386, + 1395,1404,1415,1421,1426,1429,1442,1452,1456,1461,1472,1477,1510, + 1518,1523,1530,1537,1541,1546,1549,1554,1559,1564,1568,1577,1580, + 1584,1591,1600,1604,1608,1615,1618,1628,1635,1640,1645,1650,1656, + 1659,1668,1671,1674,1680,1685,1695,1698,1701,1705,1715,1718,1724, + 1730,1733,1736,1740,1750,1761,1766,1769,1773,1780,1790,1802,1808, + 1810,1819,1822,1829,1839,1845,1853,1864,1874,1885,1887,1893,1898, + 1908,1911,1917,1919,1927,1933,1936,1938,1950,1957,1961,1965,1969, + 1972,1981,1984,1987,1992,1995,2002,2008,2013,2016,2023,2034,2037, + 2041,2045,2054,2058,2061,2064,2075,2091,2095,2099,2103,2107,2111, + 2115,2119,2129,2134,2143,2148,2161,2163,2169,2173,2175,2183,2192, + 2195,2210,2216,2224,2231,2235,2243,2245,2256,2264,2273,2279,2284, + 2290,2296,2301,2306,2312,2323,2325,2331,2338,2341,2350,2353,2357, + 2360,2386,2392,2396,2408,2418,2421,2434,2437,2456,2460,2468,2472, + 2497,2500,2509,2515,2521,2527,2538,2547,2569,2572,2575,2585,2587, + 2594,2596,2618,2647,2654,2662,2667,2669,2675,2682,2688,2705,2713, + 2722,2725,2728,2748,2759,2766,2773,2787,2789,2798,2807,2814,2817, + 2825,2832,2835,2839,2843,2846 ]; private static __ATN: antlr.ATN; @@ -19421,12 +19648,42 @@ export class FunctionNamePathContext extends antlr.ParserRuleContext { } +export class EmptyColumnContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_emptyColumn; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterEmptyColumn) { + listener.enterEmptyColumn(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitEmptyColumn) { + listener.exitEmptyColumn(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitEmptyColumn) { + return visitor.visitEmptyColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNamePathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public qualifiedName(): QualifiedNameContext | null { - return this.getRuleContext(0, QualifiedNameContext); + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public qualifiedNameAllowEmpty(): QualifiedNameAllowEmptyContext | null { + return this.getRuleContext(0, QualifiedNameAllowEmptyContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_columnNamePath; @@ -19481,6 +19738,39 @@ export class ColumnNameContext extends antlr.ParserRuleContext { } +export class ColumnNameAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public qualifiedNameAllowEmpty(): QualifiedNameAllowEmptyContext | null { + return this.getRuleContext(0, QualifiedNameAllowEmptyContext); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_columnNameAllowEmpty; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterColumnNameAllowEmpty) { + listener.enterColumnNameAllowEmpty(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitColumnNameAllowEmpty) { + listener.exitColumnNameAllowEmpty(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitColumnNameAllowEmpty) { + return visitor.visitColumnNameAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TableOrViewPathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -21549,8 +21839,11 @@ export class WhereClauseContext extends antlr.ParserRuleContext { public KW_WHERE(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.KW_WHERE, 0)!; } - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext)!; + public columnNameAllowEmpty(): ColumnNameAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNameAllowEmptyContext); + } + public booleanExpression(): BooleanExpressionContext | null { + return this.getRuleContext(0, BooleanExpressionContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_whereClause; @@ -21583,8 +21876,11 @@ export class HavingClauseContext extends antlr.ParserRuleContext { public KW_HAVING(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.KW_HAVING, 0)!; } - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext)!; + public columnNameAllowEmpty(): ColumnNameAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNameAllowEmptyContext); + } + public booleanExpression(): BooleanExpressionContext | null { + return this.getRuleContext(0, BooleanExpressionContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_havingClause; @@ -22136,6 +22432,9 @@ export class JoinCriteriaContext extends antlr.ParserRuleContext { public booleanExpression(): BooleanExpressionContext | null { return this.getRuleContext(0, BooleanExpressionContext); } + public columnNameAllowEmpty(): ColumnNameAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNameAllowEmptyContext); + } public KW_USING(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_USING, 0); } @@ -25664,6 +25963,54 @@ export class QualifiedNameContext extends antlr.ParserRuleContext { } +export class QualifiedNameAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { + if (i === undefined) { + return this.getRuleContexts(IdentifierContext); + } + + return this.getRuleContext(i, IdentifierContext); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(ImpalaSqlParser.DOT); + } else { + return this.getToken(ImpalaSqlParser.DOT, i); + } + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_qualifiedNameAllowEmpty; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterQualifiedNameAllowEmpty) { + listener.enterQualifiedNameAllowEmpty(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitQualifiedNameAllowEmpty) { + listener.exitQualifiedNameAllowEmpty(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitQualifiedNameAllowEmpty) { + return visitor.visitQualifiedNameAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PrincipalContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/impala/ImpalaSqlParserListener.ts b/src/lib/impala/ImpalaSqlParserListener.ts index 24a68630..3f0bfc43 100644 --- a/src/lib/impala/ImpalaSqlParserListener.ts +++ b/src/lib/impala/ImpalaSqlParserListener.ts @@ -104,8 +104,10 @@ import { DatabaseNamePathContext } from "./ImpalaSqlParser.js"; import { TableNamePathContext } from "./ImpalaSqlParser.js"; import { ViewNamePathContext } from "./ImpalaSqlParser.js"; import { FunctionNamePathContext } from "./ImpalaSqlParser.js"; +import { EmptyColumnContext } from "./ImpalaSqlParser.js"; import { ColumnNamePathContext } from "./ImpalaSqlParser.js"; import { ColumnNameContext } from "./ImpalaSqlParser.js"; +import { ColumnNameAllowEmptyContext } from "./ImpalaSqlParser.js"; import { TableOrViewPathContext } from "./ImpalaSqlParser.js"; import { CreateCommonItemContext } from "./ImpalaSqlParser.js"; import { AssignmentListContext } from "./ImpalaSqlParser.js"; @@ -249,6 +251,7 @@ import { PathSpecificationContext } from "./ImpalaSqlParser.js"; import { PrivilegeContext } from "./ImpalaSqlParser.js"; import { ObjectTypeContext } from "./ImpalaSqlParser.js"; import { QualifiedNameContext } from "./ImpalaSqlParser.js"; +import { QualifiedNameAllowEmptyContext } from "./ImpalaSqlParser.js"; import { RolePrincipalContext } from "./ImpalaSqlParser.js"; import { UserPrincipalContext } from "./ImpalaSqlParser.js"; import { GroupPrincipalContext } from "./ImpalaSqlParser.js"; @@ -1228,6 +1231,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunctionNamePath?: (ctx: FunctionNamePathContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + enterEmptyColumn?: (ctx: EmptyColumnContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + exitEmptyColumn?: (ctx: EmptyColumnContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.columnNamePath`. * @param ctx the parse tree @@ -1248,6 +1261,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnName?: (ctx: ColumnNameContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.columnNameAllowEmpty`. + * @param ctx the parse tree + */ + enterColumnNameAllowEmpty?: (ctx: ColumnNameAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.columnNameAllowEmpty`. + * @param ctx the parse tree + */ + exitColumnNameAllowEmpty?: (ctx: ColumnNameAllowEmptyContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.tableOrViewPath`. * @param ctx the parse tree @@ -2800,6 +2823,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQualifiedName?: (ctx: QualifiedNameContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.qualifiedNameAllowEmpty`. + * @param ctx the parse tree + */ + enterQualifiedNameAllowEmpty?: (ctx: QualifiedNameAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.qualifiedNameAllowEmpty`. + * @param ctx the parse tree + */ + exitQualifiedNameAllowEmpty?: (ctx: QualifiedNameAllowEmptyContext) => void; /** * Enter a parse tree produced by the `rolePrincipal` * labeled alternative in `ImpalaSqlParser.principal`. diff --git a/src/lib/impala/ImpalaSqlParserVisitor.ts b/src/lib/impala/ImpalaSqlParserVisitor.ts index 9e186e67..eadf7c3d 100644 --- a/src/lib/impala/ImpalaSqlParserVisitor.ts +++ b/src/lib/impala/ImpalaSqlParserVisitor.ts @@ -104,8 +104,10 @@ import { DatabaseNamePathContext } from "./ImpalaSqlParser.js"; import { TableNamePathContext } from "./ImpalaSqlParser.js"; import { ViewNamePathContext } from "./ImpalaSqlParser.js"; import { FunctionNamePathContext } from "./ImpalaSqlParser.js"; +import { EmptyColumnContext } from "./ImpalaSqlParser.js"; import { ColumnNamePathContext } from "./ImpalaSqlParser.js"; import { ColumnNameContext } from "./ImpalaSqlParser.js"; +import { ColumnNameAllowEmptyContext } from "./ImpalaSqlParser.js"; import { TableOrViewPathContext } from "./ImpalaSqlParser.js"; import { CreateCommonItemContext } from "./ImpalaSqlParser.js"; import { AssignmentListContext } from "./ImpalaSqlParser.js"; @@ -249,6 +251,7 @@ import { PathSpecificationContext } from "./ImpalaSqlParser.js"; import { PrivilegeContext } from "./ImpalaSqlParser.js"; import { ObjectTypeContext } from "./ImpalaSqlParser.js"; import { QualifiedNameContext } from "./ImpalaSqlParser.js"; +import { QualifiedNameAllowEmptyContext } from "./ImpalaSqlParser.js"; import { RolePrincipalContext } from "./ImpalaSqlParser.js"; import { UserPrincipalContext } from "./ImpalaSqlParser.js"; import { GroupPrincipalContext } from "./ImpalaSqlParser.js"; @@ -847,6 +850,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.emptyColumn`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEmptyColumn?: (ctx: EmptyColumnContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.columnNamePath`. * @param ctx the parse tree @@ -859,6 +868,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.columnNameAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNameAllowEmpty?: (ctx: ColumnNameAllowEmptyContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.tableOrViewPath`. * @param ctx the parse tree @@ -1778,6 +1793,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.qualifiedNameAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitQualifiedNameAllowEmpty?: (ctx: QualifiedNameAllowEmptyContext) => Result; /** * Visit a parse tree produced by the `rolePrincipal` * labeled alternative in `ImpalaSqlParser.principal`. diff --git a/src/lib/mysql/MySqlParser.interp b/src/lib/mysql/MySqlParser.interp index fa7f23a0..de2f300a 100644 --- a/src/lib/mysql/MySqlParser.interp +++ b/src/lib/mysql/MySqlParser.interp @@ -2131,7 +2131,10 @@ userOrRoleNames userOrRoleName columnNameCreate columnNames +emptyColumn columnName +columnNamePath +columnNamePathAllowEmpty tableSpaceNameCreate tableSpaceName partitionNameCreate @@ -2156,6 +2159,7 @@ uidList uid simpleId dottedId +dottedIdAllowEmpty decimalLiteral fileSizeLiteral stringLiteral @@ -2222,4 +2226,4 @@ functionNameBase atn: -[4, 1, 895, 8085, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 1, 0, 5, 0, 850, 8, 0, 10, 0, 12, 0, 853, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 859, 8, 1, 1, 1, 3, 1, 862, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 871, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 915, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 934, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 945, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 961, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 966, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 978, 8, 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, 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, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1013, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1023, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1028, 8, 12, 1, 12, 1, 12, 5, 12, 1032, 8, 12, 10, 12, 12, 12, 1035, 9, 12, 1, 13, 1, 13, 3, 13, 1039, 8, 13, 1, 13, 1, 13, 3, 13, 1043, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1052, 8, 13, 1, 13, 3, 13, 1055, 8, 13, 1, 13, 3, 13, 1058, 8, 13, 1, 13, 1, 13, 3, 13, 1062, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1069, 8, 14, 1, 14, 3, 14, 1072, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1077, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1083, 8, 14, 10, 14, 12, 14, 1086, 9, 14, 1, 14, 1, 14, 3, 14, 1090, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1095, 8, 14, 1, 14, 5, 14, 1098, 8, 14, 10, 14, 12, 14, 1101, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1112, 8, 15, 1, 15, 3, 15, 1115, 8, 15, 1, 15, 1, 15, 3, 15, 1119, 8, 15, 1, 15, 3, 15, 1122, 8, 15, 1, 15, 1, 15, 3, 15, 1126, 8, 15, 1, 15, 3, 15, 1129, 8, 15, 1, 15, 1, 15, 3, 15, 1133, 8, 15, 1, 15, 3, 15, 1136, 8, 15, 1, 15, 3, 15, 1139, 8, 15, 1, 15, 1, 15, 3, 15, 1143, 8, 15, 1, 15, 3, 15, 1146, 8, 15, 1, 15, 1, 15, 3, 15, 1150, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1156, 8, 16, 1, 16, 1, 16, 3, 16, 1160, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1165, 8, 16, 1, 16, 1, 16, 5, 16, 1169, 8, 16, 10, 16, 12, 16, 1172, 9, 16, 1, 16, 1, 16, 5, 16, 1176, 8, 16, 10, 16, 12, 16, 1179, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1185, 8, 17, 1, 17, 3, 17, 1188, 8, 17, 1, 17, 1, 17, 3, 17, 1192, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1197, 8, 17, 1, 17, 1, 17, 5, 17, 1201, 8, 17, 10, 17, 12, 17, 1204, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1210, 8, 17, 10, 17, 12, 17, 1213, 9, 17, 1, 17, 1, 17, 3, 17, 1217, 8, 17, 1, 18, 1, 18, 3, 18, 1221, 8, 18, 1, 18, 1, 18, 3, 18, 1225, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 3, 19, 1236, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1252, 8, 20, 10, 20, 12, 20, 1255, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1261, 8, 21, 1, 21, 1, 21, 3, 21, 1265, 8, 21, 1, 21, 1, 21, 3, 21, 1269, 8, 21, 1, 21, 1, 21, 3, 21, 1273, 8, 21, 1, 21, 5, 21, 1276, 8, 21, 10, 21, 12, 21, 1279, 9, 21, 3, 21, 1281, 8, 21, 1, 21, 3, 21, 1284, 8, 21, 1, 21, 3, 21, 1287, 8, 21, 1, 21, 3, 21, 1290, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1296, 8, 21, 1, 21, 1, 21, 3, 21, 1300, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1310, 8, 21, 1, 21, 1, 21, 3, 21, 1314, 8, 21, 1, 21, 1, 21, 3, 21, 1318, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1324, 8, 21, 1, 21, 5, 21, 1327, 8, 21, 10, 21, 12, 21, 1330, 9, 21, 3, 21, 1332, 8, 21, 1, 21, 3, 21, 1335, 8, 21, 3, 21, 1337, 8, 21, 1, 22, 1, 22, 3, 22, 1341, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1348, 8, 22, 1, 22, 1, 22, 3, 22, 1352, 8, 22, 1, 22, 3, 22, 1355, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1360, 8, 22, 1, 22, 1, 22, 3, 22, 1364, 8, 22, 1, 22, 3, 22, 1367, 8, 22, 1, 22, 1, 22, 3, 22, 1371, 8, 22, 1, 22, 3, 22, 1374, 8, 22, 1, 23, 1, 23, 3, 23, 1378, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1391, 8, 23, 1, 23, 3, 23, 1394, 8, 23, 1, 23, 1, 23, 3, 23, 1398, 8, 23, 1, 23, 3, 23, 1401, 8, 23, 1, 23, 1, 23, 3, 23, 1405, 8, 23, 1, 23, 3, 23, 1408, 8, 23, 1, 23, 1, 23, 3, 23, 1412, 8, 23, 1, 23, 3, 23, 1415, 8, 23, 1, 23, 1, 23, 3, 23, 1419, 8, 23, 1, 23, 3, 23, 1422, 8, 23, 1, 23, 3, 23, 1425, 8, 23, 1, 23, 1, 23, 3, 23, 1429, 8, 23, 1, 23, 3, 23, 1432, 8, 23, 1, 23, 1, 23, 3, 23, 1436, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1442, 8, 24, 1, 24, 3, 24, 1445, 8, 24, 1, 24, 1, 24, 3, 24, 1449, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1461, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 1467, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1476, 8, 26, 10, 26, 12, 26, 1479, 9, 26, 1, 26, 1, 26, 3, 26, 1483, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1491, 8, 26, 1, 27, 1, 27, 3, 27, 1495, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1500, 8, 27, 1, 27, 3, 27, 1503, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1508, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1516, 8, 27, 10, 27, 12, 27, 1519, 9, 27, 1, 27, 1, 27, 3, 27, 1523, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1528, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1534, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1539, 8, 27, 1, 27, 1, 27, 3, 27, 1543, 8, 27, 3, 27, 1545, 8, 27, 1, 28, 3, 28, 1548, 8, 28, 1, 28, 1, 28, 3, 28, 1552, 8, 28, 1, 28, 1, 28, 3, 28, 1556, 8, 28, 1, 28, 3, 28, 1559, 8, 28, 1, 28, 1, 28, 3, 28, 1563, 8, 28, 1, 28, 1, 28, 3, 28, 1567, 8, 28, 1, 28, 1, 28, 3, 28, 1571, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1577, 8, 28, 1, 28, 3, 28, 1580, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1587, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1592, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1598, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1603, 8, 32, 10, 32, 12, 32, 1606, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1611, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1617, 8, 32, 10, 32, 12, 32, 1620, 9, 32, 3, 32, 1622, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1627, 8, 32, 10, 32, 12, 32, 1630, 9, 32, 3, 32, 1632, 8, 32, 3, 32, 1634, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1640, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1646, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1663, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1670, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1677, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1689, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1694, 8, 38, 1, 38, 3, 38, 1697, 8, 38, 1, 39, 3, 39, 1700, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1713, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1726, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1731, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1747, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1753, 8, 43, 10, 43, 12, 43, 1756, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1765, 8, 44, 1, 44, 3, 44, 1768, 8, 44, 1, 44, 1, 44, 5, 44, 1772, 8, 44, 10, 44, 12, 44, 1775, 9, 44, 1, 44, 1, 44, 3, 44, 1779, 8, 44, 1, 44, 3, 44, 1782, 8, 44, 1, 44, 1, 44, 5, 44, 1786, 8, 44, 10, 44, 12, 44, 1789, 9, 44, 1, 44, 3, 44, 1792, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1797, 8, 44, 1, 44, 1, 44, 5, 44, 1801, 8, 44, 10, 44, 12, 44, 1804, 9, 44, 1, 44, 3, 44, 1807, 8, 44, 1, 44, 1, 44, 3, 44, 1811, 8, 44, 1, 44, 3, 44, 1814, 8, 44, 1, 44, 3, 44, 1817, 8, 44, 1, 44, 1, 44, 5, 44, 1821, 8, 44, 10, 44, 12, 44, 1824, 9, 44, 1, 44, 3, 44, 1827, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1832, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1843, 8, 44, 1, 45, 3, 45, 1846, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1853, 8, 45, 1, 45, 3, 45, 1856, 8, 45, 1, 46, 1, 46, 3, 46, 1860, 8, 46, 1, 47, 1, 47, 5, 47, 1864, 8, 47, 10, 47, 12, 47, 1867, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1878, 8, 48, 1, 48, 3, 48, 1881, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1886, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1899, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1906, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1912, 8, 48, 1, 49, 1, 49, 1, 49, 3, 49, 1917, 8, 49, 1, 49, 1, 49, 3, 49, 1921, 8, 49, 1, 49, 3, 49, 1924, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1932, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1940, 8, 50, 3, 50, 1942, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1952, 8, 51, 1, 52, 1, 52, 3, 52, 1956, 8, 52, 1, 52, 3, 52, 1959, 8, 52, 1, 52, 1, 52, 3, 52, 1963, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1968, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1973, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1978, 8, 52, 1, 52, 1, 52, 3, 52, 1982, 8, 52, 1, 52, 1, 52, 3, 52, 1986, 8, 52, 1, 52, 1, 52, 3, 52, 1990, 8, 52, 1, 52, 1, 52, 3, 52, 1994, 8, 52, 1, 52, 1, 52, 3, 52, 1998, 8, 52, 1, 52, 1, 52, 3, 52, 2002, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2007, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2012, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2017, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2023, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2028, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2033, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2038, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2043, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2048, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2054, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2059, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2064, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2069, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2074, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2079, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2084, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2089, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2096, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2101, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2106, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2111, 8, 52, 1, 52, 1, 52, 3, 52, 2115, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2120, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2128, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2133, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2139, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2151, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2158, 8, 55, 3, 55, 2160, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2166, 8, 55, 10, 55, 12, 55, 2169, 9, 55, 1, 55, 1, 55, 3, 55, 2173, 8, 55, 1, 56, 3, 56, 2176, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2184, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2190, 8, 56, 1, 56, 1, 56, 3, 56, 2194, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2207, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2219, 8, 56, 3, 56, 2221, 8, 56, 1, 57, 3, 57, 2224, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2232, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2238, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2244, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2255, 8, 58, 10, 58, 12, 58, 2258, 9, 58, 1, 58, 1, 58, 5, 58, 2262, 8, 58, 10, 58, 12, 58, 2265, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2271, 8, 58, 10, 58, 12, 58, 2274, 9, 58, 1, 58, 1, 58, 3, 58, 2278, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2287, 8, 58, 10, 58, 12, 58, 2290, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2296, 8, 58, 10, 58, 12, 58, 2299, 9, 58, 1, 58, 1, 58, 3, 58, 2303, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2313, 8, 58, 10, 58, 12, 58, 2316, 9, 58, 1, 58, 1, 58, 5, 58, 2320, 8, 58, 10, 58, 12, 58, 2323, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2329, 8, 58, 10, 58, 12, 58, 2332, 9, 58, 1, 58, 1, 58, 3, 58, 2336, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2346, 8, 58, 10, 58, 12, 58, 2349, 9, 58, 1, 58, 1, 58, 5, 58, 2353, 8, 58, 10, 58, 12, 58, 2356, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2362, 8, 58, 10, 58, 12, 58, 2365, 9, 58, 1, 58, 1, 58, 3, 58, 2369, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2374, 8, 58, 10, 58, 12, 58, 2377, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2383, 8, 58, 10, 58, 12, 58, 2386, 9, 58, 1, 58, 1, 58, 3, 58, 2390, 8, 58, 3, 58, 2392, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2397, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2403, 8, 60, 11, 60, 12, 60, 2404, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2412, 8, 61, 10, 61, 12, 61, 2415, 9, 61, 1, 62, 3, 62, 2418, 8, 62, 1, 62, 3, 62, 2421, 8, 62, 1, 62, 1, 62, 3, 62, 2425, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2430, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2436, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2442, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2447, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2452, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2457, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2462, 8, 62, 1, 62, 3, 62, 2465, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2470, 8, 63, 1, 63, 4, 63, 2473, 8, 63, 11, 63, 12, 63, 2474, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2485, 8, 63, 1, 64, 1, 64, 3, 64, 2489, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2496, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2501, 8, 64, 1, 64, 3, 64, 2504, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2509, 8, 64, 1, 64, 3, 64, 2512, 8, 64, 1, 64, 1, 64, 3, 64, 2516, 8, 64, 1, 64, 1, 64, 3, 64, 2520, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2526, 8, 65, 10, 65, 12, 65, 2529, 9, 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, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2547, 8, 67, 1, 67, 3, 67, 2550, 8, 67, 1, 67, 3, 67, 2553, 8, 67, 1, 67, 1, 67, 3, 67, 2557, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2565, 8, 68, 10, 68, 12, 68, 2568, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2578, 8, 69, 10, 69, 12, 69, 2581, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2591, 8, 70, 10, 70, 12, 70, 2594, 9, 70, 3, 70, 2596, 8, 70, 1, 70, 1, 70, 5, 70, 2600, 8, 70, 10, 70, 12, 70, 2603, 9, 70, 3, 70, 2605, 8, 70, 1, 71, 1, 71, 3, 71, 2609, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2618, 8, 71, 1, 71, 3, 71, 2621, 8, 71, 1, 71, 3, 71, 2624, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2629, 8, 71, 1, 71, 1, 71, 3, 71, 2633, 8, 71, 1, 71, 3, 71, 2636, 8, 71, 1, 71, 1, 71, 3, 71, 2640, 8, 71, 1, 71, 1, 71, 3, 71, 2644, 8, 71, 1, 71, 3, 71, 2647, 8, 71, 1, 71, 1, 71, 3, 71, 2651, 8, 71, 1, 71, 3, 71, 2654, 8, 71, 1, 71, 1, 71, 3, 71, 2658, 8, 71, 1, 71, 3, 71, 2661, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2667, 8, 72, 1, 72, 3, 72, 2670, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2675, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2683, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2689, 8, 72, 1, 72, 1, 72, 3, 72, 2693, 8, 72, 1, 73, 1, 73, 3, 73, 2697, 8, 73, 1, 73, 5, 73, 2700, 8, 73, 10, 73, 12, 73, 2703, 9, 73, 1, 73, 1, 73, 3, 73, 2707, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2714, 8, 73, 1, 73, 1, 73, 3, 73, 2718, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2727, 8, 73, 10, 73, 12, 73, 2730, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2737, 8, 73, 1, 73, 3, 73, 2740, 8, 73, 1, 73, 1, 73, 5, 73, 2744, 8, 73, 10, 73, 12, 73, 2747, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2752, 8, 73, 1, 73, 3, 73, 2755, 8, 73, 1, 73, 1, 73, 5, 73, 2759, 8, 73, 10, 73, 12, 73, 2762, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2767, 8, 73, 3, 73, 2769, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2774, 8, 73, 1, 73, 1, 73, 5, 73, 2778, 8, 73, 10, 73, 12, 73, 2781, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2786, 8, 73, 3, 73, 2788, 8, 73, 1, 73, 1, 73, 3, 73, 2792, 8, 73, 1, 73, 3, 73, 2795, 8, 73, 1, 73, 3, 73, 2798, 8, 73, 1, 73, 1, 73, 5, 73, 2802, 8, 73, 10, 73, 12, 73, 2805, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2810, 8, 73, 3, 73, 2812, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2817, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2824, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2833, 8, 73, 1, 73, 3, 73, 2836, 8, 73, 1, 73, 1, 73, 3, 73, 2840, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2845, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2855, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2864, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2872, 8, 73, 1, 73, 3, 73, 2875, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2883, 8, 73, 1, 73, 3, 73, 2886, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2893, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2898, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2906, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2922, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2927, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2934, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2953, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2959, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2967, 8, 74, 10, 74, 12, 74, 2970, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2981, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2988, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2995, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 3008, 8, 74, 10, 74, 12, 74, 3011, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3023, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3029, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3035, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3041, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3047, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3053, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3059, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 3064, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3071, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3078, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3085, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3090, 8, 77, 1, 77, 5, 77, 3093, 8, 77, 10, 77, 12, 77, 3096, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 3104, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3111, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3118, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3125, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 3134, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 3140, 8, 83, 1, 83, 1, 83, 3, 83, 3144, 8, 83, 1, 83, 1, 83, 3, 83, 3148, 8, 83, 1, 84, 1, 84, 3, 84, 3152, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 3158, 8, 84, 1, 84, 3, 84, 3161, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3166, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3173, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3178, 8, 86, 10, 86, 12, 86, 3181, 9, 86, 1, 86, 3, 86, 3184, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 3189, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3199, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3205, 8, 88, 10, 88, 12, 88, 3208, 9, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3213, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 3220, 8, 89, 10, 89, 12, 89, 3223, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 3231, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3240, 8, 92, 1, 92, 3, 92, 3243, 8, 92, 1, 93, 1, 93, 3, 93, 3247, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3256, 8, 95, 1, 96, 1, 96, 3, 96, 3260, 8, 96, 1, 96, 3, 96, 3263, 8, 96, 1, 96, 3, 96, 3266, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3272, 8, 96, 1, 96, 3, 96, 3275, 8, 96, 1, 96, 3, 96, 3278, 8, 96, 1, 96, 1, 96, 3, 96, 3282, 8, 96, 1, 96, 3, 96, 3285, 8, 96, 1, 96, 3, 96, 3288, 8, 96, 1, 96, 3, 96, 3291, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3300, 8, 96, 10, 96, 12, 96, 3303, 9, 96, 3, 96, 3305, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3310, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3316, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3321, 8, 99, 1, 99, 4, 99, 3324, 8, 99, 11, 99, 12, 99, 3325, 1, 100, 3, 100, 3329, 8, 100, 1, 100, 1, 100, 3, 100, 3333, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3338, 8, 101, 1, 101, 3, 101, 3341, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3346, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3356, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3361, 8, 101, 1, 101, 1, 101, 4, 101, 3365, 8, 101, 11, 101, 12, 101, 3366, 3, 101, 3369, 8, 101, 1, 101, 1, 101, 4, 101, 3373, 8, 101, 11, 101, 12, 101, 3374, 3, 101, 3377, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3383, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3389, 8, 101, 10, 101, 12, 101, 3392, 9, 101, 1, 101, 1, 101, 3, 101, 3396, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3402, 8, 101, 10, 101, 12, 101, 3405, 9, 101, 3, 101, 3407, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3412, 8, 102, 1, 102, 3, 102, 3415, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3420, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3428, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3434, 8, 102, 1, 102, 1, 102, 3, 102, 3438, 8, 102, 3, 102, 3440, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3446, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3452, 8, 102, 10, 102, 12, 102, 3455, 9, 102, 1, 102, 1, 102, 3, 102, 3459, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3465, 8, 102, 10, 102, 12, 102, 3468, 9, 102, 3, 102, 3470, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3475, 8, 103, 1, 103, 3, 103, 3478, 8, 103, 1, 103, 1, 103, 3, 103, 3482, 8, 103, 1, 103, 3, 103, 3485, 8, 103, 1, 103, 3, 103, 3488, 8, 103, 1, 104, 1, 104, 3, 104, 3492, 8, 104, 1, 104, 3, 104, 3495, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3503, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3509, 8, 104, 1, 104, 1, 104, 3, 104, 3513, 8, 104, 1, 105, 1, 105, 5, 105, 3517, 8, 105, 10, 105, 12, 105, 3520, 9, 105, 1, 105, 1, 105, 3, 105, 3524, 8, 105, 1, 105, 1, 105, 3, 105, 3528, 8, 105, 3, 105, 3530, 8, 105, 1, 105, 1, 105, 5, 105, 3534, 8, 105, 10, 105, 12, 105, 3537, 9, 105, 1, 105, 3, 105, 3540, 8, 105, 1, 105, 3, 105, 3543, 8, 105, 1, 105, 3, 105, 3546, 8, 105, 1, 105, 3, 105, 3549, 8, 105, 1, 105, 1, 105, 5, 105, 3553, 8, 105, 10, 105, 12, 105, 3556, 9, 105, 1, 105, 1, 105, 3, 105, 3560, 8, 105, 1, 105, 3, 105, 3563, 8, 105, 1, 105, 3, 105, 3566, 8, 105, 1, 105, 3, 105, 3569, 8, 105, 1, 105, 3, 105, 3572, 8, 105, 3, 105, 3574, 8, 105, 1, 106, 3, 106, 3577, 8, 106, 1, 106, 1, 106, 3, 106, 3581, 8, 106, 1, 106, 3, 106, 3584, 8, 106, 1, 106, 3, 106, 3587, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3595, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3601, 8, 107, 1, 107, 5, 107, 3604, 8, 107, 10, 107, 12, 107, 3607, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3615, 8, 108, 1, 108, 5, 108, 3618, 8, 108, 10, 108, 12, 108, 3621, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3627, 8, 109, 1, 109, 3, 109, 3630, 8, 109, 1, 109, 3, 109, 3633, 8, 109, 1, 109, 1, 109, 3, 109, 3637, 8, 109, 1, 110, 1, 110, 3, 110, 3641, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3647, 8, 111, 1, 111, 1, 111, 3, 111, 3651, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3656, 8, 112, 10, 112, 12, 112, 3659, 9, 112, 1, 112, 3, 112, 3662, 8, 112, 1, 112, 3, 112, 3665, 8, 112, 1, 112, 3, 112, 3668, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3673, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3680, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3688, 8, 115, 10, 115, 12, 115, 3691, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3697, 8, 116, 10, 116, 12, 116, 3700, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 3708, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3716, 8, 119, 10, 119, 12, 119, 3719, 9, 119, 3, 119, 3721, 8, 119, 1, 119, 1, 119, 3, 119, 3725, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3731, 8, 119, 1, 120, 1, 120, 3, 120, 3735, 8, 120, 1, 120, 3, 120, 3738, 8, 120, 1, 120, 3, 120, 3741, 8, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3746, 8, 120, 1, 120, 3, 120, 3749, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3756, 8, 120, 1, 120, 1, 120, 3, 120, 3760, 8, 120, 1, 120, 3, 120, 3763, 8, 120, 1, 120, 1, 120, 3, 120, 3767, 8, 120, 1, 121, 1, 121, 3, 121, 3771, 8, 121, 1, 121, 3, 121, 3774, 8, 121, 1, 121, 3, 121, 3777, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3782, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3788, 8, 121, 5, 121, 3790, 8, 121, 10, 121, 12, 121, 3793, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3802, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3808, 8, 121, 5, 121, 3810, 8, 121, 10, 121, 12, 121, 3813, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3818, 8, 121, 1, 121, 1, 121, 3, 121, 3822, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3828, 8, 122, 1, 122, 3, 122, 3831, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3843, 8, 123, 1, 123, 1, 123, 3, 123, 3847, 8, 123, 1, 123, 1, 123, 3, 123, 3851, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3859, 8, 124, 1, 124, 1, 124, 3, 124, 3863, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3875, 8, 126, 10, 126, 12, 126, 3878, 9, 126, 1, 127, 1, 127, 3, 127, 3882, 8, 127, 1, 127, 3, 127, 3885, 8, 127, 1, 127, 1, 127, 3, 127, 3889, 8, 127, 1, 127, 3, 127, 3892, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3898, 8, 127, 10, 127, 12, 127, 3901, 9, 127, 1, 127, 1, 127, 3, 127, 3905, 8, 127, 1, 127, 3, 127, 3908, 8, 127, 1, 127, 3, 127, 3911, 8, 127, 1, 128, 1, 128, 3, 128, 3915, 8, 128, 1, 128, 3, 128, 3918, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3925, 8, 128, 10, 128, 12, 128, 3928, 9, 128, 1, 128, 1, 128, 3, 128, 3932, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3939, 8, 129, 10, 129, 12, 129, 3942, 9, 129, 1, 130, 1, 130, 3, 130, 3946, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3951, 8, 131, 10, 131, 12, 131, 3954, 9, 131, 1, 132, 1, 132, 5, 132, 3958, 8, 132, 10, 132, 12, 132, 3961, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3966, 8, 132, 10, 132, 12, 132, 3969, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3974, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3982, 8, 133, 1, 133, 3, 133, 3985, 8, 133, 1, 133, 3, 133, 3988, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3993, 8, 133, 10, 133, 12, 133, 3996, 9, 133, 3, 133, 3998, 8, 133, 1, 133, 3, 133, 4001, 8, 133, 1, 133, 1, 133, 3, 133, 4005, 8, 133, 1, 133, 1, 133, 3, 133, 4009, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4015, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4022, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4032, 8, 136, 1, 136, 1, 136, 3, 136, 4036, 8, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4045, 8, 137, 1, 138, 3, 138, 4048, 8, 138, 1, 138, 1, 138, 3, 138, 4052, 8, 138, 1, 138, 1, 138, 5, 138, 4056, 8, 138, 10, 138, 12, 138, 4059, 9, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4064, 8, 138, 10, 138, 12, 138, 4067, 9, 138, 1, 138, 1, 138, 3, 138, 4071, 8, 138, 1, 138, 1, 138, 3, 138, 4075, 8, 138, 1, 138, 1, 138, 5, 138, 4079, 8, 138, 10, 138, 12, 138, 4082, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4087, 8, 138, 1, 138, 3, 138, 4090, 8, 138, 3, 138, 4092, 8, 138, 1, 138, 1, 138, 3, 138, 4096, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4105, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4115, 8, 140, 1, 141, 1, 141, 5, 141, 4119, 8, 141, 10, 141, 12, 141, 4122, 9, 141, 1, 141, 1, 141, 3, 141, 4126, 8, 141, 1, 141, 1, 141, 3, 141, 4130, 8, 141, 1, 141, 3, 141, 4133, 8, 141, 1, 141, 3, 141, 4136, 8, 141, 1, 141, 3, 141, 4139, 8, 141, 1, 141, 3, 141, 4142, 8, 141, 1, 141, 3, 141, 4145, 8, 141, 1, 141, 3, 141, 4148, 8, 141, 1, 142, 1, 142, 3, 142, 4152, 8, 142, 1, 142, 1, 142, 3, 142, 4156, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4164, 8, 143, 1, 143, 1, 143, 3, 143, 4168, 8, 143, 1, 143, 3, 143, 4171, 8, 143, 3, 143, 4173, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4186, 8, 144, 1, 144, 3, 144, 4189, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 4194, 8, 145, 10, 145, 12, 145, 4197, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4206, 8, 146, 1, 146, 3, 146, 4209, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4214, 8, 146, 3, 146, 4216, 8, 146, 1, 146, 1, 146, 3, 146, 4220, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4228, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4234, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4243, 8, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4256, 8, 149, 1, 150, 1, 150, 3, 150, 4260, 8, 150, 1, 150, 1, 150, 5, 150, 4264, 8, 150, 10, 150, 12, 150, 4267, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 4272, 8, 151, 1, 151, 3, 151, 4275, 8, 151, 1, 151, 1, 151, 3, 151, 4279, 8, 151, 1, 151, 3, 151, 4282, 8, 151, 3, 151, 4284, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 4296, 8, 155, 1, 155, 1, 155, 3, 155, 4300, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 4306, 8, 156, 10, 156, 12, 156, 4309, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4320, 8, 156, 1, 156, 1, 156, 4, 156, 4324, 8, 156, 11, 156, 12, 156, 4325, 3, 156, 4328, 8, 156, 1, 156, 1, 156, 4, 156, 4332, 8, 156, 11, 156, 12, 156, 4333, 3, 156, 4336, 8, 156, 3, 156, 4338, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4344, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4352, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 4360, 8, 158, 1, 159, 1, 159, 3, 159, 4364, 8, 159, 1, 159, 1, 159, 3, 159, 4368, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 4375, 8, 160, 10, 160, 12, 160, 4378, 9, 160, 1, 160, 1, 160, 3, 160, 4382, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 5, 162, 4400, 8, 162, 10, 162, 12, 162, 4403, 9, 162, 1, 163, 1, 163, 3, 163, 4407, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4413, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4420, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 4425, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4432, 8, 166, 10, 166, 12, 166, 4435, 9, 166, 3, 166, 4437, 8, 166, 1, 167, 1, 167, 3, 167, 4441, 8, 167, 1, 168, 1, 168, 3, 168, 4445, 8, 168, 1, 168, 1, 168, 3, 168, 4449, 8, 168, 1, 168, 3, 168, 4452, 8, 168, 1, 168, 3, 168, 4455, 8, 168, 1, 168, 3, 168, 4458, 8, 168, 1, 169, 1, 169, 3, 169, 4462, 8, 169, 1, 169, 1, 169, 3, 169, 4466, 8, 169, 1, 169, 3, 169, 4469, 8, 169, 1, 169, 3, 169, 4472, 8, 169, 1, 169, 3, 169, 4475, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4482, 8, 171, 1, 171, 1, 171, 3, 171, 4486, 8, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4499, 8, 173, 10, 173, 12, 173, 4502, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4514, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4520, 8, 176, 10, 176, 12, 176, 4523, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4532, 8, 177, 1, 178, 1, 178, 3, 178, 4536, 8, 178, 1, 178, 3, 178, 4539, 8, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4545, 8, 179, 1, 179, 3, 179, 4548, 8, 179, 1, 179, 3, 179, 4551, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4560, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4569, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4577, 8, 182, 10, 182, 12, 182, 4580, 9, 182, 1, 182, 3, 182, 4583, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 4591, 8, 183, 10, 183, 12, 183, 4594, 9, 183, 1, 183, 3, 183, 4597, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 4606, 8, 184, 10, 184, 12, 184, 4609, 9, 184, 1, 184, 3, 184, 4612, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4621, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 4628, 8, 186, 10, 186, 12, 186, 4631, 9, 186, 3, 186, 4633, 8, 186, 1, 186, 1, 186, 3, 186, 4637, 8, 186, 1, 186, 5, 186, 4640, 8, 186, 10, 186, 12, 186, 4643, 9, 186, 1, 186, 3, 186, 4646, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4653, 8, 187, 10, 187, 12, 187, 4656, 9, 187, 3, 187, 4658, 8, 187, 1, 187, 3, 187, 4661, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4668, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4674, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4680, 8, 188, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4704, 8, 190, 10, 190, 12, 190, 4707, 9, 190, 3, 190, 4709, 8, 190, 1, 190, 3, 190, 4712, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4731, 8, 194, 3, 194, 4733, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 4754, 8, 195, 10, 195, 12, 195, 4757, 9, 195, 3, 195, 4759, 8, 195, 1, 195, 3, 195, 4762, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4781, 8, 199, 3, 199, 4783, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4795, 8, 201, 10, 201, 12, 201, 4798, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4808, 8, 201, 10, 201, 12, 201, 4811, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4845, 8, 201, 10, 201, 12, 201, 4848, 9, 201, 1, 201, 1, 201, 3, 201, 4852, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4887, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4901, 8, 205, 1, 206, 1, 206, 1, 206, 5, 206, 4906, 8, 206, 10, 206, 12, 206, 4909, 9, 206, 1, 206, 3, 206, 4912, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4918, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4926, 8, 208, 3, 208, 4928, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4939, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4949, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4956, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4962, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 3, 216, 4970, 8, 216, 1, 217, 1, 217, 1, 217, 3, 217, 4975, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4981, 8, 217, 10, 217, 12, 217, 4984, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4989, 8, 217, 10, 217, 12, 217, 4992, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4997, 8, 217, 10, 217, 12, 217, 5000, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5005, 8, 217, 10, 217, 12, 217, 5008, 9, 217, 1, 217, 5, 217, 5011, 8, 217, 10, 217, 12, 217, 5014, 9, 217, 1, 217, 1, 217, 3, 217, 5018, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5023, 8, 218, 1, 218, 4, 218, 5026, 8, 218, 11, 218, 12, 218, 5027, 1, 218, 1, 218, 4, 218, 5032, 8, 218, 11, 218, 12, 218, 5033, 3, 218, 5036, 8, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 4, 219, 5045, 8, 219, 11, 219, 12, 219, 5046, 1, 219, 5, 219, 5050, 8, 219, 10, 219, 12, 219, 5053, 9, 219, 1, 219, 1, 219, 4, 219, 5057, 8, 219, 11, 219, 12, 219, 5058, 3, 219, 5061, 8, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 3, 222, 5075, 8, 222, 1, 222, 1, 222, 4, 222, 5079, 8, 222, 11, 222, 12, 222, 5080, 1, 222, 1, 222, 1, 222, 3, 222, 5086, 8, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5091, 8, 223, 1, 223, 1, 223, 4, 223, 5095, 8, 223, 11, 223, 12, 223, 5096, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5104, 8, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5112, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 5118, 8, 225, 11, 225, 12, 225, 5119, 1, 225, 1, 225, 1, 225, 3, 225, 5125, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5131, 8, 226, 1, 226, 3, 226, 5134, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5142, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5149, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5158, 8, 228, 1, 228, 3, 228, 5161, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5176, 8, 230, 10, 230, 12, 230, 5179, 9, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5186, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5194, 8, 231, 1, 232, 1, 232, 3, 232, 5198, 8, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5205, 8, 233, 1, 233, 1, 233, 4, 233, 5209, 8, 233, 11, 233, 12, 233, 5210, 1, 234, 1, 234, 1, 234, 1, 234, 4, 234, 5217, 8, 234, 11, 234, 12, 234, 5218, 1, 235, 1, 235, 1, 235, 3, 235, 5224, 8, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5229, 8, 235, 10, 235, 12, 235, 5232, 9, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5237, 8, 235, 10, 235, 12, 235, 5240, 9, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5246, 8, 235, 1, 235, 5, 235, 5249, 8, 235, 10, 235, 12, 235, 5252, 9, 235, 3, 235, 5254, 8, 235, 3, 235, 5256, 8, 235, 1, 235, 1, 235, 4, 235, 5260, 8, 235, 11, 235, 12, 235, 5261, 3, 235, 5264, 8, 235, 1, 235, 1, 235, 5, 235, 5268, 8, 235, 10, 235, 12, 235, 5271, 9, 235, 1, 235, 1, 235, 3, 235, 5275, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5282, 8, 235, 1, 236, 1, 236, 1, 236, 3, 236, 5287, 8, 236, 1, 236, 1, 236, 3, 236, 5291, 8, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5296, 8, 236, 5, 236, 5298, 8, 236, 10, 236, 12, 236, 5301, 9, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5306, 8, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5312, 8, 236, 1, 236, 5, 236, 5315, 8, 236, 10, 236, 12, 236, 5318, 9, 236, 3, 236, 5320, 8, 236, 3, 236, 5322, 8, 236, 1, 236, 1, 236, 4, 236, 5326, 8, 236, 11, 236, 12, 236, 5327, 3, 236, 5330, 8, 236, 1, 236, 1, 236, 5, 236, 5334, 8, 236, 10, 236, 12, 236, 5337, 9, 236, 1, 236, 1, 236, 3, 236, 5341, 8, 236, 1, 237, 1, 237, 1, 237, 3, 237, 5346, 8, 237, 1, 237, 1, 237, 1, 237, 5, 237, 5351, 8, 237, 10, 237, 12, 237, 5354, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5360, 8, 238, 10, 238, 12, 238, 5363, 9, 238, 1, 238, 1, 238, 3, 238, 5367, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5374, 8, 238, 10, 238, 12, 238, 5377, 9, 238, 1, 238, 3, 238, 5380, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5386, 8, 238, 1, 238, 5, 238, 5389, 8, 238, 10, 238, 12, 238, 5392, 9, 238, 3, 238, 5394, 8, 238, 3, 238, 5396, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5402, 8, 238, 10, 238, 12, 238, 5405, 9, 238, 3, 238, 5407, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5414, 8, 238, 3, 238, 5416, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5421, 8, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5426, 8, 238, 10, 238, 12, 238, 5429, 9, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5435, 8, 238, 10, 238, 12, 238, 5438, 9, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5443, 8, 238, 3, 238, 5445, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5452, 8, 239, 1, 239, 3, 239, 5455, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 5465, 8, 240, 10, 240, 12, 240, 5468, 9, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5473, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5481, 8, 241, 1, 241, 3, 241, 5484, 8, 241, 1, 241, 1, 241, 3, 241, 5488, 8, 241, 1, 241, 3, 241, 5491, 8, 241, 1, 241, 1, 241, 3, 241, 5495, 8, 241, 3, 241, 5497, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5508, 8, 242, 1, 242, 3, 242, 5511, 8, 242, 1, 242, 1, 242, 3, 242, 5515, 8, 242, 1, 242, 3, 242, 5518, 8, 242, 1, 242, 3, 242, 5521, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5528, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5538, 8, 244, 10, 244, 12, 244, 5541, 9, 244, 3, 244, 5543, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5550, 8, 245, 1, 245, 1, 245, 5, 245, 5554, 8, 245, 10, 245, 12, 245, 5557, 9, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 5564, 8, 246, 10, 246, 12, 246, 5567, 9, 246, 1, 247, 1, 247, 3, 247, 5571, 8, 247, 1, 247, 1, 247, 1, 247, 5, 247, 5576, 8, 247, 10, 247, 12, 247, 5579, 9, 247, 1, 247, 1, 247, 3, 247, 5583, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5589, 8, 247, 1, 247, 1, 247, 3, 247, 5593, 8, 247, 1, 247, 1, 247, 3, 247, 5597, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5605, 8, 247, 1, 247, 1, 247, 3, 247, 5609, 8, 247, 1, 247, 1, 247, 3, 247, 5613, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5619, 8, 247, 3, 247, 5621, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5633, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5638, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5644, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5650, 8, 250, 1, 250, 1, 250, 3, 250, 5654, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5659, 8, 250, 3, 250, 5661, 8, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5685, 8, 252, 4, 252, 5687, 8, 252, 11, 252, 12, 252, 5688, 1, 252, 3, 252, 5692, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5701, 8, 253, 1, 253, 1, 253, 3, 253, 5705, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5714, 8, 253, 1, 253, 1, 253, 3, 253, 5718, 8, 253, 1, 253, 1, 253, 3, 253, 5722, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5728, 8, 253, 3, 253, 5730, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5739, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5749, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5776, 8, 255, 1, 256, 1, 256, 3, 256, 5780, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5785, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5792, 8, 257, 1, 257, 3, 257, 5795, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5801, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5811, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5821, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5831, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5837, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5846, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5852, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5859, 8, 260, 3, 260, 5861, 8, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 3, 262, 5869, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5875, 8, 262, 1, 262, 1, 262, 3, 262, 5879, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5896, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5906, 8, 265, 1, 266, 1, 266, 3, 266, 5910, 8, 266, 1, 266, 1, 266, 3, 266, 5914, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5924, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5929, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6001, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6019, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 3, 269, 6027, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6033, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6045, 8, 269, 1, 269, 1, 269, 3, 269, 6049, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6060, 8, 269, 1, 269, 1, 269, 3, 269, 6064, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6073, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 6079, 8, 270, 10, 270, 12, 270, 6082, 9, 270, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6088, 8, 271, 1, 272, 1, 272, 3, 272, 6092, 8, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 6099, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6104, 8, 273, 1, 273, 3, 273, 6107, 8, 273, 1, 273, 3, 273, 6110, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6121, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6128, 8, 276, 10, 276, 12, 276, 6131, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6137, 8, 276, 10, 276, 12, 276, 6140, 9, 276, 3, 276, 6142, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6154, 8, 278, 10, 278, 12, 278, 6157, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6174, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6187, 8, 281, 1, 281, 3, 281, 6190, 8, 281, 1, 281, 1, 281, 3, 281, 6194, 8, 281, 1, 281, 3, 281, 6197, 8, 281, 3, 281, 6199, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6206, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6213, 8, 282, 5, 282, 6215, 8, 282, 10, 282, 12, 282, 6218, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6224, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6231, 8, 282, 1, 282, 3, 282, 6234, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 6248, 8, 282, 10, 282, 12, 282, 6251, 9, 282, 3, 282, 6253, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6263, 8, 283, 1, 283, 1, 283, 3, 283, 6267, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6273, 8, 283, 1, 283, 3, 283, 6276, 8, 283, 1, 283, 3, 283, 6279, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6284, 8, 283, 1, 283, 1, 283, 3, 283, 6288, 8, 283, 1, 283, 3, 283, 6291, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6298, 8, 283, 1, 283, 3, 283, 6301, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6307, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6343, 8, 283, 1, 283, 3, 283, 6346, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6358, 8, 283, 1, 283, 3, 283, 6361, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6377, 8, 283, 3, 283, 6379, 8, 283, 1, 283, 1, 283, 3, 283, 6383, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6390, 8, 283, 1, 283, 1, 283, 3, 283, 6394, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6401, 8, 283, 1, 283, 3, 283, 6404, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6411, 8, 283, 10, 283, 12, 283, 6414, 9, 283, 3, 283, 6416, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6421, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6427, 8, 283, 3, 283, 6429, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6435, 8, 283, 1, 283, 1, 283, 3, 283, 6439, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6445, 8, 284, 1, 284, 3, 284, 6448, 8, 284, 1, 284, 3, 284, 6451, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 6464, 8, 285, 1, 285, 3, 285, 6467, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6473, 8, 286, 1, 287, 3, 287, 6476, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6484, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6492, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 6498, 8, 288, 1, 288, 3, 288, 6501, 8, 288, 1, 288, 1, 288, 3, 288, 6505, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6519, 8, 289, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 6529, 8, 291, 10, 291, 12, 291, 6532, 9, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6539, 8, 291, 1, 291, 1, 291, 3, 291, 6543, 8, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 3, 292, 6550, 8, 292, 1, 292, 1, 292, 1, 292, 5, 292, 6555, 8, 292, 10, 292, 12, 292, 6558, 9, 292, 1, 293, 1, 293, 3, 293, 6562, 8, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 6573, 8, 294, 10, 294, 12, 294, 6576, 9, 294, 1, 295, 1, 295, 1, 295, 1, 295, 5, 295, 6582, 8, 295, 10, 295, 12, 295, 6585, 9, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6592, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6597, 8, 297, 1, 297, 3, 297, 6600, 8, 297, 1, 298, 1, 298, 1, 298, 3, 298, 6605, 8, 298, 1, 298, 3, 298, 6608, 8, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6620, 8, 301, 1, 302, 1, 302, 1, 302, 3, 302, 6625, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6638, 8, 302, 3, 302, 6640, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6645, 8, 302, 1, 302, 1, 302, 3, 302, 6649, 8, 302, 1, 302, 3, 302, 6652, 8, 302, 3, 302, 6654, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6661, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6668, 8, 304, 1, 304, 3, 304, 6671, 8, 304, 1, 304, 3, 304, 6674, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6680, 8, 304, 1, 304, 1, 304, 3, 304, 6684, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6690, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6698, 8, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6707, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6720, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6725, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6731, 8, 310, 10, 310, 12, 310, 6734, 9, 310, 3, 310, 6736, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6741, 8, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6746, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6752, 8, 311, 10, 311, 12, 311, 6755, 9, 311, 3, 311, 6757, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6765, 8, 312, 1, 313, 1, 313, 3, 313, 6769, 8, 313, 1, 313, 1, 313, 1, 313, 5, 313, 6774, 8, 313, 10, 313, 12, 313, 6777, 9, 313, 1, 314, 1, 314, 1, 314, 3, 314, 6782, 8, 314, 1, 314, 3, 314, 6785, 8, 314, 1, 315, 1, 315, 3, 315, 6789, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6800, 8, 315, 10, 315, 12, 315, 6803, 9, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6808, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6818, 8, 315, 10, 315, 12, 315, 6821, 9, 315, 3, 315, 6823, 8, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6832, 8, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6837, 8, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6856, 8, 325, 10, 325, 12, 325, 6859, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6872, 8, 330, 10, 330, 12, 330, 6875, 9, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6882, 8, 332, 10, 332, 12, 332, 6885, 9, 332, 1, 333, 1, 333, 3, 333, 6889, 8, 333, 1, 334, 1, 334, 1, 334, 3, 334, 6894, 8, 334, 3, 334, 6896, 8, 334, 1, 334, 3, 334, 6899, 8, 334, 1, 334, 1, 334, 3, 334, 6903, 8, 334, 3, 334, 6905, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6910, 8, 335, 10, 335, 12, 335, 6913, 9, 335, 1, 336, 1, 336, 1, 336, 3, 336, 6918, 8, 336, 3, 336, 6920, 8, 336, 1, 336, 3, 336, 6923, 8, 336, 1, 336, 1, 336, 3, 336, 6927, 8, 336, 1, 336, 3, 336, 6930, 8, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 5, 340, 6941, 8, 340, 10, 340, 12, 340, 6944, 9, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6953, 8, 342, 1, 342, 3, 342, 6956, 8, 342, 1, 342, 3, 342, 6959, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 6972, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 3, 347, 6978, 8, 347, 1, 347, 3, 347, 6981, 8, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 6989, 8, 349, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6996, 8, 351, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 4, 353, 7014, 8, 353, 11, 353, 12, 353, 7015, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7023, 8, 354, 3, 354, 7025, 8, 354, 1, 355, 1, 355, 1, 355, 4, 355, 7030, 8, 355, 11, 355, 12, 355, 7031, 3, 355, 7034, 8, 355, 1, 356, 1, 356, 3, 356, 7038, 8, 356, 1, 357, 1, 357, 1, 357, 5, 357, 7043, 8, 357, 10, 357, 12, 357, 7046, 9, 357, 1, 358, 1, 358, 1, 358, 3, 358, 7051, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 7062, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7068, 8, 360, 1, 361, 1, 361, 1, 362, 1, 362, 3, 362, 7074, 8, 362, 1, 363, 3, 363, 7077, 8, 363, 1, 363, 1, 363, 3, 363, 7081, 8, 363, 1, 363, 4, 363, 7084, 8, 363, 11, 363, 12, 363, 7085, 1, 363, 3, 363, 7089, 8, 363, 1, 363, 1, 363, 3, 363, 7093, 8, 363, 1, 363, 1, 363, 3, 363, 7097, 8, 363, 3, 363, 7099, 8, 363, 1, 364, 1, 364, 1, 365, 3, 365, 7104, 8, 365, 1, 365, 1, 365, 1, 366, 3, 366, 7109, 8, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7122, 8, 367, 1, 367, 3, 367, 7125, 8, 367, 1, 368, 1, 368, 3, 368, 7129, 8, 368, 1, 368, 3, 368, 7132, 8, 368, 1, 368, 3, 368, 7135, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7140, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7145, 8, 368, 1, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7151, 8, 368, 1, 368, 3, 368, 7154, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7159, 8, 368, 1, 368, 3, 368, 7162, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7167, 8, 368, 1, 368, 3, 368, 7170, 8, 368, 1, 368, 1, 368, 3, 368, 7174, 8, 368, 1, 368, 5, 368, 7177, 8, 368, 10, 368, 12, 368, 7180, 9, 368, 1, 368, 1, 368, 3, 368, 7184, 8, 368, 1, 368, 5, 368, 7187, 8, 368, 10, 368, 12, 368, 7190, 9, 368, 1, 368, 1, 368, 3, 368, 7194, 8, 368, 1, 368, 3, 368, 7197, 8, 368, 1, 368, 5, 368, 7200, 8, 368, 10, 368, 12, 368, 7203, 9, 368, 1, 368, 1, 368, 3, 368, 7207, 8, 368, 1, 368, 5, 368, 7210, 8, 368, 10, 368, 12, 368, 7213, 9, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7218, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7223, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7228, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7233, 8, 368, 1, 368, 1, 368, 3, 368, 7237, 8, 368, 1, 368, 3, 368, 7240, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7245, 8, 368, 1, 368, 1, 368, 3, 368, 7249, 8, 368, 1, 368, 1, 368, 3, 368, 7253, 8, 368, 1, 369, 1, 369, 1, 369, 1, 369, 5, 369, 7259, 8, 369, 10, 369, 12, 369, 7262, 9, 369, 1, 369, 1, 369, 1, 370, 1, 370, 3, 370, 7268, 8, 370, 1, 370, 1, 370, 3, 370, 7272, 8, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7277, 8, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7282, 8, 370, 1, 370, 1, 370, 3, 370, 7286, 8, 370, 3, 370, 7288, 8, 370, 1, 370, 3, 370, 7291, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7307, 8, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 5, 374, 7315, 8, 374, 10, 374, 12, 374, 7318, 9, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 5, 375, 7325, 8, 375, 10, 375, 12, 375, 7328, 9, 375, 1, 376, 1, 376, 1, 376, 1, 376, 5, 376, 7334, 8, 376, 10, 376, 12, 376, 7337, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 5, 377, 7343, 8, 377, 10, 377, 12, 377, 7346, 9, 377, 1, 377, 1, 377, 1, 378, 1, 378, 3, 378, 7352, 8, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7357, 8, 379, 10, 379, 12, 379, 7360, 9, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7365, 8, 380, 10, 380, 12, 380, 7368, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7373, 8, 381, 10, 381, 12, 381, 7376, 9, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7387, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7394, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7404, 8, 382, 1, 383, 1, 383, 1, 383, 3, 383, 7409, 8, 383, 1, 383, 3, 383, 7412, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7417, 8, 383, 1, 383, 3, 383, 7420, 8, 383, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7442, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7451, 8, 387, 1, 387, 3, 387, 7454, 8, 387, 1, 388, 1, 388, 1, 388, 3, 388, 7459, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 4, 388, 7490, 8, 388, 11, 388, 12, 388, 7491, 1, 388, 1, 388, 3, 388, 7496, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 4, 388, 7503, 8, 388, 11, 388, 12, 388, 7504, 1, 388, 1, 388, 3, 388, 7509, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7518, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7526, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7531, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7539, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7544, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7549, 8, 388, 3, 388, 7551, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7560, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7565, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7573, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7578, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7586, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7594, 8, 388, 1, 388, 3, 388, 7597, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7607, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7625, 8, 388, 1, 388, 3, 388, 7628, 8, 388, 1, 388, 3, 388, 7631, 8, 388, 1, 388, 1, 388, 3, 388, 7635, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 5, 390, 7646, 8, 390, 10, 390, 12, 390, 7649, 9, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7656, 8, 390, 1, 391, 1, 391, 3, 391, 7660, 8, 391, 1, 392, 1, 392, 1, 392, 3, 392, 7665, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7670, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7676, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7681, 8, 392, 1, 392, 1, 392, 3, 392, 7685, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7690, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7695, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7700, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 5, 392, 7708, 8, 392, 10, 392, 12, 392, 7711, 9, 392, 3, 392, 7713, 8, 392, 1, 392, 1, 392, 3, 392, 7717, 8, 392, 1, 392, 1, 392, 3, 392, 7721, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7728, 8, 393, 1, 393, 1, 393, 3, 393, 7732, 8, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7761, 8, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7769, 8, 394, 1, 395, 3, 395, 7772, 8, 395, 1, 395, 3, 395, 7775, 8, 395, 1, 395, 3, 395, 7778, 8, 395, 1, 395, 3, 395, 7781, 8, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 3, 399, 7792, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7806, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7813, 8, 402, 10, 402, 12, 402, 7816, 9, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7842, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 5, 405, 7852, 8, 405, 10, 405, 12, 405, 7855, 9, 405, 1, 406, 1, 406, 1, 406, 3, 406, 7860, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7868, 8, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7873, 8, 407, 1, 407, 1, 407, 1, 407, 1, 407, 5, 407, 7879, 8, 407, 10, 407, 12, 407, 7882, 9, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7889, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7902, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7908, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7914, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7929, 8, 408, 1, 408, 1, 408, 3, 408, 7933, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7939, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 5, 408, 7948, 8, 408, 10, 408, 12, 408, 7951, 9, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 7969, 8, 409, 10, 409, 12, 409, 7972, 9, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 4, 409, 7981, 8, 409, 11, 409, 12, 409, 7982, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 8001, 8, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 8018, 8, 409, 10, 409, 12, 409, 8021, 9, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 8033, 8, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 8042, 8, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 8051, 8, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 8060, 8, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 8069, 8, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 0, 5, 214, 216, 814, 816, 818, 424, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 75, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9446, 0, 851, 1, 0, 0, 0, 2, 861, 1, 0, 0, 0, 4, 870, 1, 0, 0, 0, 6, 872, 1, 0, 0, 0, 8, 914, 1, 0, 0, 0, 10, 933, 1, 0, 0, 0, 12, 944, 1, 0, 0, 0, 14, 960, 1, 0, 0, 0, 16, 965, 1, 0, 0, 0, 18, 977, 1, 0, 0, 0, 20, 1012, 1, 0, 0, 0, 22, 1022, 1, 0, 0, 0, 24, 1024, 1, 0, 0, 0, 26, 1036, 1, 0, 0, 0, 28, 1066, 1, 0, 0, 0, 30, 1102, 1, 0, 0, 0, 32, 1153, 1, 0, 0, 0, 34, 1182, 1, 0, 0, 0, 36, 1218, 1, 0, 0, 0, 38, 1232, 1, 0, 0, 0, 40, 1239, 1, 0, 0, 0, 42, 1336, 1, 0, 0, 0, 44, 1338, 1, 0, 0, 0, 46, 1375, 1, 0, 0, 0, 48, 1439, 1, 0, 0, 0, 50, 1464, 1, 0, 0, 0, 52, 1470, 1, 0, 0, 0, 54, 1492, 1, 0, 0, 0, 56, 1579, 1, 0, 0, 0, 58, 1586, 1, 0, 0, 0, 60, 1588, 1, 0, 0, 0, 62, 1593, 1, 0, 0, 0, 64, 1633, 1, 0, 0, 0, 66, 1639, 1, 0, 0, 0, 68, 1641, 1, 0, 0, 0, 70, 1662, 1, 0, 0, 0, 72, 1669, 1, 0, 0, 0, 74, 1671, 1, 0, 0, 0, 76, 1696, 1, 0, 0, 0, 78, 1699, 1, 0, 0, 0, 80, 1704, 1, 0, 0, 0, 82, 1730, 1, 0, 0, 0, 84, 1746, 1, 0, 0, 0, 86, 1748, 1, 0, 0, 0, 88, 1842, 1, 0, 0, 0, 90, 1845, 1, 0, 0, 0, 92, 1857, 1, 0, 0, 0, 94, 1861, 1, 0, 0, 0, 96, 1911, 1, 0, 0, 0, 98, 1913, 1, 0, 0, 0, 100, 1941, 1, 0, 0, 0, 102, 1951, 1, 0, 0, 0, 104, 2138, 1, 0, 0, 0, 106, 2140, 1, 0, 0, 0, 108, 2142, 1, 0, 0, 0, 110, 2145, 1, 0, 0, 0, 112, 2220, 1, 0, 0, 0, 114, 2243, 1, 0, 0, 0, 116, 2391, 1, 0, 0, 0, 118, 2396, 1, 0, 0, 0, 120, 2398, 1, 0, 0, 0, 122, 2408, 1, 0, 0, 0, 124, 2464, 1, 0, 0, 0, 126, 2484, 1, 0, 0, 0, 128, 2486, 1, 0, 0, 0, 130, 2521, 1, 0, 0, 0, 132, 2530, 1, 0, 0, 0, 134, 2537, 1, 0, 0, 0, 136, 2560, 1, 0, 0, 0, 138, 2569, 1, 0, 0, 0, 140, 2584, 1, 0, 0, 0, 142, 2606, 1, 0, 0, 0, 144, 2662, 1, 0, 0, 0, 146, 2958, 1, 0, 0, 0, 148, 3058, 1, 0, 0, 0, 150, 3060, 1, 0, 0, 0, 152, 3067, 1, 0, 0, 0, 154, 3074, 1, 0, 0, 0, 156, 3097, 1, 0, 0, 0, 158, 3107, 1, 0, 0, 0, 160, 3114, 1, 0, 0, 0, 162, 3121, 1, 0, 0, 0, 164, 3128, 1, 0, 0, 0, 166, 3137, 1, 0, 0, 0, 168, 3149, 1, 0, 0, 0, 170, 3162, 1, 0, 0, 0, 172, 3169, 1, 0, 0, 0, 174, 3185, 1, 0, 0, 0, 176, 3212, 1, 0, 0, 0, 178, 3214, 1, 0, 0, 0, 180, 3224, 1, 0, 0, 0, 182, 3228, 1, 0, 0, 0, 184, 3234, 1, 0, 0, 0, 186, 3246, 1, 0, 0, 0, 188, 3248, 1, 0, 0, 0, 190, 3255, 1, 0, 0, 0, 192, 3257, 1, 0, 0, 0, 194, 3306, 1, 0, 0, 0, 196, 3315, 1, 0, 0, 0, 198, 3317, 1, 0, 0, 0, 200, 3328, 1, 0, 0, 0, 202, 3334, 1, 0, 0, 0, 204, 3408, 1, 0, 0, 0, 206, 3471, 1, 0, 0, 0, 208, 3489, 1, 0, 0, 0, 210, 3573, 1, 0, 0, 0, 212, 3576, 1, 0, 0, 0, 214, 3588, 1, 0, 0, 0, 216, 3608, 1, 0, 0, 0, 218, 3636, 1, 0, 0, 0, 220, 3640, 1, 0, 0, 0, 222, 3642, 1, 0, 0, 0, 224, 3652, 1, 0, 0, 0, 226, 3672, 1, 0, 0, 0, 228, 3679, 1, 0, 0, 0, 230, 3681, 1, 0, 0, 0, 232, 3692, 1, 0, 0, 0, 234, 3701, 1, 0, 0, 0, 236, 3707, 1, 0, 0, 0, 238, 3730, 1, 0, 0, 0, 240, 3732, 1, 0, 0, 0, 242, 3768, 1, 0, 0, 0, 244, 3823, 1, 0, 0, 0, 246, 3832, 1, 0, 0, 0, 248, 3852, 1, 0, 0, 0, 250, 3864, 1, 0, 0, 0, 252, 3868, 1, 0, 0, 0, 254, 3879, 1, 0, 0, 0, 256, 3912, 1, 0, 0, 0, 258, 3933, 1, 0, 0, 0, 260, 3943, 1, 0, 0, 0, 262, 3947, 1, 0, 0, 0, 264, 3973, 1, 0, 0, 0, 266, 4014, 1, 0, 0, 0, 268, 4021, 1, 0, 0, 0, 270, 4023, 1, 0, 0, 0, 272, 4027, 1, 0, 0, 0, 274, 4044, 1, 0, 0, 0, 276, 4095, 1, 0, 0, 0, 278, 4104, 1, 0, 0, 0, 280, 4114, 1, 0, 0, 0, 282, 4116, 1, 0, 0, 0, 284, 4149, 1, 0, 0, 0, 286, 4157, 1, 0, 0, 0, 288, 4174, 1, 0, 0, 0, 290, 4190, 1, 0, 0, 0, 292, 4227, 1, 0, 0, 0, 294, 4233, 1, 0, 0, 0, 296, 4242, 1, 0, 0, 0, 298, 4255, 1, 0, 0, 0, 300, 4259, 1, 0, 0, 0, 302, 4283, 1, 0, 0, 0, 304, 4285, 1, 0, 0, 0, 306, 4289, 1, 0, 0, 0, 308, 4291, 1, 0, 0, 0, 310, 4299, 1, 0, 0, 0, 312, 4337, 1, 0, 0, 0, 314, 4351, 1, 0, 0, 0, 316, 4359, 1, 0, 0, 0, 318, 4363, 1, 0, 0, 0, 320, 4369, 1, 0, 0, 0, 322, 4383, 1, 0, 0, 0, 324, 4386, 1, 0, 0, 0, 326, 4404, 1, 0, 0, 0, 328, 4408, 1, 0, 0, 0, 330, 4424, 1, 0, 0, 0, 332, 4426, 1, 0, 0, 0, 334, 4438, 1, 0, 0, 0, 336, 4442, 1, 0, 0, 0, 338, 4459, 1, 0, 0, 0, 340, 4476, 1, 0, 0, 0, 342, 4479, 1, 0, 0, 0, 344, 4489, 1, 0, 0, 0, 346, 4493, 1, 0, 0, 0, 348, 4503, 1, 0, 0, 0, 350, 4506, 1, 0, 0, 0, 352, 4511, 1, 0, 0, 0, 354, 4531, 1, 0, 0, 0, 356, 4533, 1, 0, 0, 0, 358, 4550, 1, 0, 0, 0, 360, 4559, 1, 0, 0, 0, 362, 4568, 1, 0, 0, 0, 364, 4570, 1, 0, 0, 0, 366, 4584, 1, 0, 0, 0, 368, 4598, 1, 0, 0, 0, 370, 4613, 1, 0, 0, 0, 372, 4622, 1, 0, 0, 0, 374, 4647, 1, 0, 0, 0, 376, 4662, 1, 0, 0, 0, 378, 4681, 1, 0, 0, 0, 380, 4711, 1, 0, 0, 0, 382, 4713, 1, 0, 0, 0, 384, 4715, 1, 0, 0, 0, 386, 4717, 1, 0, 0, 0, 388, 4732, 1, 0, 0, 0, 390, 4761, 1, 0, 0, 0, 392, 4763, 1, 0, 0, 0, 394, 4765, 1, 0, 0, 0, 396, 4767, 1, 0, 0, 0, 398, 4782, 1, 0, 0, 0, 400, 4784, 1, 0, 0, 0, 402, 4851, 1, 0, 0, 0, 404, 4853, 1, 0, 0, 0, 406, 4859, 1, 0, 0, 0, 408, 4886, 1, 0, 0, 0, 410, 4900, 1, 0, 0, 0, 412, 4911, 1, 0, 0, 0, 414, 4913, 1, 0, 0, 0, 416, 4919, 1, 0, 0, 0, 418, 4929, 1, 0, 0, 0, 420, 4933, 1, 0, 0, 0, 422, 4940, 1, 0, 0, 0, 424, 4944, 1, 0, 0, 0, 426, 4950, 1, 0, 0, 0, 428, 4957, 1, 0, 0, 0, 430, 4963, 1, 0, 0, 0, 432, 4969, 1, 0, 0, 0, 434, 4974, 1, 0, 0, 0, 436, 5019, 1, 0, 0, 0, 438, 5040, 1, 0, 0, 0, 440, 5065, 1, 0, 0, 0, 442, 5068, 1, 0, 0, 0, 444, 5074, 1, 0, 0, 0, 446, 5090, 1, 0, 0, 0, 448, 5105, 1, 0, 0, 0, 450, 5111, 1, 0, 0, 0, 452, 5141, 1, 0, 0, 0, 454, 5143, 1, 0, 0, 0, 456, 5150, 1, 0, 0, 0, 458, 5162, 1, 0, 0, 0, 460, 5168, 1, 0, 0, 0, 462, 5193, 1, 0, 0, 0, 464, 5197, 1, 0, 0, 0, 466, 5201, 1, 0, 0, 0, 468, 5212, 1, 0, 0, 0, 470, 5220, 1, 0, 0, 0, 472, 5283, 1, 0, 0, 0, 474, 5342, 1, 0, 0, 0, 476, 5444, 1, 0, 0, 0, 478, 5454, 1, 0, 0, 0, 480, 5456, 1, 0, 0, 0, 482, 5474, 1, 0, 0, 0, 484, 5498, 1, 0, 0, 0, 486, 5522, 1, 0, 0, 0, 488, 5529, 1, 0, 0, 0, 490, 5549, 1, 0, 0, 0, 492, 5558, 1, 0, 0, 0, 494, 5620, 1, 0, 0, 0, 496, 5622, 1, 0, 0, 0, 498, 5626, 1, 0, 0, 0, 500, 5660, 1, 0, 0, 0, 502, 5662, 1, 0, 0, 0, 504, 5665, 1, 0, 0, 0, 506, 5729, 1, 0, 0, 0, 508, 5748, 1, 0, 0, 0, 510, 5775, 1, 0, 0, 0, 512, 5779, 1, 0, 0, 0, 514, 5800, 1, 0, 0, 0, 516, 5810, 1, 0, 0, 0, 518, 5820, 1, 0, 0, 0, 520, 5860, 1, 0, 0, 0, 522, 5862, 1, 0, 0, 0, 524, 5865, 1, 0, 0, 0, 526, 5895, 1, 0, 0, 0, 528, 5897, 1, 0, 0, 0, 530, 5900, 1, 0, 0, 0, 532, 6000, 1, 0, 0, 0, 534, 6018, 1, 0, 0, 0, 536, 6020, 1, 0, 0, 0, 538, 6072, 1, 0, 0, 0, 540, 6074, 1, 0, 0, 0, 542, 6083, 1, 0, 0, 0, 544, 6089, 1, 0, 0, 0, 546, 6096, 1, 0, 0, 0, 548, 6111, 1, 0, 0, 0, 550, 6120, 1, 0, 0, 0, 552, 6122, 1, 0, 0, 0, 554, 6143, 1, 0, 0, 0, 556, 6148, 1, 0, 0, 0, 558, 6158, 1, 0, 0, 0, 560, 6164, 1, 0, 0, 0, 562, 6198, 1, 0, 0, 0, 564, 6252, 1, 0, 0, 0, 566, 6438, 1, 0, 0, 0, 568, 6450, 1, 0, 0, 0, 570, 6466, 1, 0, 0, 0, 572, 6472, 1, 0, 0, 0, 574, 6491, 1, 0, 0, 0, 576, 6504, 1, 0, 0, 0, 578, 6518, 1, 0, 0, 0, 580, 6520, 1, 0, 0, 0, 582, 6523, 1, 0, 0, 0, 584, 6547, 1, 0, 0, 0, 586, 6559, 1, 0, 0, 0, 588, 6565, 1, 0, 0, 0, 590, 6577, 1, 0, 0, 0, 592, 6591, 1, 0, 0, 0, 594, 6593, 1, 0, 0, 0, 596, 6601, 1, 0, 0, 0, 598, 6609, 1, 0, 0, 0, 600, 6611, 1, 0, 0, 0, 602, 6613, 1, 0, 0, 0, 604, 6653, 1, 0, 0, 0, 606, 6660, 1, 0, 0, 0, 608, 6662, 1, 0, 0, 0, 610, 6685, 1, 0, 0, 0, 612, 6691, 1, 0, 0, 0, 614, 6701, 1, 0, 0, 0, 616, 6710, 1, 0, 0, 0, 618, 6713, 1, 0, 0, 0, 620, 6716, 1, 0, 0, 0, 622, 6737, 1, 0, 0, 0, 624, 6758, 1, 0, 0, 0, 626, 6766, 1, 0, 0, 0, 628, 6778, 1, 0, 0, 0, 630, 6786, 1, 0, 0, 0, 632, 6824, 1, 0, 0, 0, 634, 6836, 1, 0, 0, 0, 636, 6838, 1, 0, 0, 0, 638, 6840, 1, 0, 0, 0, 640, 6842, 1, 0, 0, 0, 642, 6844, 1, 0, 0, 0, 644, 6846, 1, 0, 0, 0, 646, 6848, 1, 0, 0, 0, 648, 6850, 1, 0, 0, 0, 650, 6852, 1, 0, 0, 0, 652, 6860, 1, 0, 0, 0, 654, 6862, 1, 0, 0, 0, 656, 6864, 1, 0, 0, 0, 658, 6866, 1, 0, 0, 0, 660, 6868, 1, 0, 0, 0, 662, 6876, 1, 0, 0, 0, 664, 6878, 1, 0, 0, 0, 666, 6888, 1, 0, 0, 0, 668, 6904, 1, 0, 0, 0, 670, 6906, 1, 0, 0, 0, 672, 6929, 1, 0, 0, 0, 674, 6931, 1, 0, 0, 0, 676, 6933, 1, 0, 0, 0, 678, 6935, 1, 0, 0, 0, 680, 6937, 1, 0, 0, 0, 682, 6945, 1, 0, 0, 0, 684, 6955, 1, 0, 0, 0, 686, 6960, 1, 0, 0, 0, 688, 6964, 1, 0, 0, 0, 690, 6971, 1, 0, 0, 0, 692, 6973, 1, 0, 0, 0, 694, 6980, 1, 0, 0, 0, 696, 6982, 1, 0, 0, 0, 698, 6988, 1, 0, 0, 0, 700, 6990, 1, 0, 0, 0, 702, 6995, 1, 0, 0, 0, 704, 6997, 1, 0, 0, 0, 706, 6999, 1, 0, 0, 0, 708, 7017, 1, 0, 0, 0, 710, 7033, 1, 0, 0, 0, 712, 7035, 1, 0, 0, 0, 714, 7039, 1, 0, 0, 0, 716, 7050, 1, 0, 0, 0, 718, 7061, 1, 0, 0, 0, 720, 7067, 1, 0, 0, 0, 722, 7069, 1, 0, 0, 0, 724, 7073, 1, 0, 0, 0, 726, 7098, 1, 0, 0, 0, 728, 7100, 1, 0, 0, 0, 730, 7103, 1, 0, 0, 0, 732, 7108, 1, 0, 0, 0, 734, 7124, 1, 0, 0, 0, 736, 7252, 1, 0, 0, 0, 738, 7254, 1, 0, 0, 0, 740, 7287, 1, 0, 0, 0, 742, 7292, 1, 0, 0, 0, 744, 7296, 1, 0, 0, 0, 746, 7302, 1, 0, 0, 0, 748, 7310, 1, 0, 0, 0, 750, 7321, 1, 0, 0, 0, 752, 7329, 1, 0, 0, 0, 754, 7338, 1, 0, 0, 0, 756, 7351, 1, 0, 0, 0, 758, 7353, 1, 0, 0, 0, 760, 7361, 1, 0, 0, 0, 762, 7369, 1, 0, 0, 0, 764, 7403, 1, 0, 0, 0, 766, 7419, 1, 0, 0, 0, 768, 7421, 1, 0, 0, 0, 770, 7424, 1, 0, 0, 0, 772, 7428, 1, 0, 0, 0, 774, 7453, 1, 0, 0, 0, 776, 7634, 1, 0, 0, 0, 778, 7636, 1, 0, 0, 0, 780, 7655, 1, 0, 0, 0, 782, 7657, 1, 0, 0, 0, 784, 7720, 1, 0, 0, 0, 786, 7760, 1, 0, 0, 0, 788, 7762, 1, 0, 0, 0, 790, 7771, 1, 0, 0, 0, 792, 7782, 1, 0, 0, 0, 794, 7784, 1, 0, 0, 0, 796, 7787, 1, 0, 0, 0, 798, 7791, 1, 0, 0, 0, 800, 7793, 1, 0, 0, 0, 802, 7805, 1, 0, 0, 0, 804, 7807, 1, 0, 0, 0, 806, 7841, 1, 0, 0, 0, 808, 7843, 1, 0, 0, 0, 810, 7848, 1, 0, 0, 0, 812, 7859, 1, 0, 0, 0, 814, 7872, 1, 0, 0, 0, 816, 7883, 1, 0, 0, 0, 818, 8000, 1, 0, 0, 0, 820, 8022, 1, 0, 0, 0, 822, 8032, 1, 0, 0, 0, 824, 8041, 1, 0, 0, 0, 826, 8050, 1, 0, 0, 0, 828, 8059, 1, 0, 0, 0, 830, 8061, 1, 0, 0, 0, 832, 8068, 1, 0, 0, 0, 834, 8070, 1, 0, 0, 0, 836, 8072, 1, 0, 0, 0, 838, 8074, 1, 0, 0, 0, 840, 8076, 1, 0, 0, 0, 842, 8078, 1, 0, 0, 0, 844, 8080, 1, 0, 0, 0, 846, 8082, 1, 0, 0, 0, 848, 850, 3, 2, 1, 0, 849, 848, 1, 0, 0, 0, 850, 853, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 854, 855, 5, 0, 0, 1, 855, 1, 1, 0, 0, 0, 856, 858, 3, 4, 2, 0, 857, 859, 5, 869, 0, 0, 858, 857, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 862, 3, 6, 3, 0, 861, 856, 1, 0, 0, 0, 861, 860, 1, 0, 0, 0, 862, 3, 1, 0, 0, 0, 863, 871, 3, 8, 4, 0, 864, 871, 3, 10, 5, 0, 865, 871, 3, 12, 6, 0, 866, 871, 3, 14, 7, 0, 867, 871, 3, 16, 8, 0, 868, 871, 3, 20, 10, 0, 869, 871, 3, 22, 11, 0, 870, 863, 1, 0, 0, 0, 870, 864, 1, 0, 0, 0, 870, 865, 1, 0, 0, 0, 870, 866, 1, 0, 0, 0, 870, 867, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 870, 869, 1, 0, 0, 0, 871, 5, 1, 0, 0, 0, 872, 873, 5, 869, 0, 0, 873, 7, 1, 0, 0, 0, 874, 915, 3, 24, 12, 0, 875, 915, 3, 26, 13, 0, 876, 915, 3, 28, 14, 0, 877, 915, 3, 30, 15, 0, 878, 915, 3, 32, 16, 0, 879, 915, 3, 34, 17, 0, 880, 915, 3, 36, 18, 0, 881, 915, 3, 40, 20, 0, 882, 915, 3, 42, 21, 0, 883, 915, 3, 44, 22, 0, 884, 915, 3, 46, 23, 0, 885, 915, 3, 48, 24, 0, 886, 915, 3, 54, 27, 0, 887, 915, 3, 38, 19, 0, 888, 915, 3, 126, 63, 0, 889, 915, 3, 128, 64, 0, 890, 915, 3, 130, 65, 0, 891, 915, 3, 132, 66, 0, 892, 915, 3, 134, 67, 0, 893, 915, 3, 136, 68, 0, 894, 915, 3, 138, 69, 0, 895, 915, 3, 140, 70, 0, 896, 915, 3, 142, 71, 0, 897, 915, 3, 144, 72, 0, 898, 915, 3, 150, 75, 0, 899, 915, 3, 152, 76, 0, 900, 915, 3, 154, 77, 0, 901, 915, 3, 156, 78, 0, 902, 915, 3, 158, 79, 0, 903, 915, 3, 160, 80, 0, 904, 915, 3, 162, 81, 0, 905, 915, 3, 164, 82, 0, 906, 915, 3, 166, 83, 0, 907, 915, 3, 168, 84, 0, 908, 915, 3, 170, 85, 0, 909, 915, 3, 172, 86, 0, 910, 915, 3, 174, 87, 0, 911, 915, 3, 176, 88, 0, 912, 915, 3, 178, 89, 0, 913, 915, 3, 182, 91, 0, 914, 874, 1, 0, 0, 0, 914, 875, 1, 0, 0, 0, 914, 876, 1, 0, 0, 0, 914, 877, 1, 0, 0, 0, 914, 878, 1, 0, 0, 0, 914, 879, 1, 0, 0, 0, 914, 880, 1, 0, 0, 0, 914, 881, 1, 0, 0, 0, 914, 882, 1, 0, 0, 0, 914, 883, 1, 0, 0, 0, 914, 884, 1, 0, 0, 0, 914, 885, 1, 0, 0, 0, 914, 886, 1, 0, 0, 0, 914, 887, 1, 0, 0, 0, 914, 888, 1, 0, 0, 0, 914, 889, 1, 0, 0, 0, 914, 890, 1, 0, 0, 0, 914, 891, 1, 0, 0, 0, 914, 892, 1, 0, 0, 0, 914, 893, 1, 0, 0, 0, 914, 894, 1, 0, 0, 0, 914, 895, 1, 0, 0, 0, 914, 896, 1, 0, 0, 0, 914, 897, 1, 0, 0, 0, 914, 898, 1, 0, 0, 0, 914, 899, 1, 0, 0, 0, 914, 900, 1, 0, 0, 0, 914, 901, 1, 0, 0, 0, 914, 902, 1, 0, 0, 0, 914, 903, 1, 0, 0, 0, 914, 904, 1, 0, 0, 0, 914, 905, 1, 0, 0, 0, 914, 906, 1, 0, 0, 0, 914, 907, 1, 0, 0, 0, 914, 908, 1, 0, 0, 0, 914, 909, 1, 0, 0, 0, 914, 910, 1, 0, 0, 0, 914, 911, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 914, 913, 1, 0, 0, 0, 915, 9, 1, 0, 0, 0, 916, 934, 3, 210, 105, 0, 917, 934, 3, 212, 106, 0, 918, 934, 3, 192, 96, 0, 919, 934, 3, 220, 110, 0, 920, 934, 3, 186, 93, 0, 921, 934, 3, 208, 104, 0, 922, 934, 3, 184, 92, 0, 923, 934, 3, 198, 99, 0, 924, 934, 3, 202, 101, 0, 925, 934, 3, 204, 102, 0, 926, 934, 3, 206, 103, 0, 927, 934, 3, 188, 94, 0, 928, 934, 3, 190, 95, 0, 929, 934, 3, 252, 126, 0, 930, 934, 3, 222, 111, 0, 931, 934, 3, 626, 313, 0, 932, 934, 3, 628, 314, 0, 933, 916, 1, 0, 0, 0, 933, 917, 1, 0, 0, 0, 933, 918, 1, 0, 0, 0, 933, 919, 1, 0, 0, 0, 933, 920, 1, 0, 0, 0, 933, 921, 1, 0, 0, 0, 933, 922, 1, 0, 0, 0, 933, 923, 1, 0, 0, 0, 933, 924, 1, 0, 0, 0, 933, 925, 1, 0, 0, 0, 933, 926, 1, 0, 0, 0, 933, 927, 1, 0, 0, 0, 933, 928, 1, 0, 0, 0, 933, 929, 1, 0, 0, 0, 933, 930, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 932, 1, 0, 0, 0, 934, 11, 1, 0, 0, 0, 935, 945, 3, 332, 166, 0, 936, 945, 3, 334, 167, 0, 937, 945, 3, 336, 168, 0, 938, 945, 3, 338, 169, 0, 939, 945, 3, 340, 170, 0, 940, 945, 3, 342, 171, 0, 941, 945, 3, 344, 172, 0, 942, 945, 3, 346, 173, 0, 943, 945, 3, 348, 174, 0, 944, 935, 1, 0, 0, 0, 944, 936, 1, 0, 0, 0, 944, 937, 1, 0, 0, 0, 944, 938, 1, 0, 0, 0, 944, 939, 1, 0, 0, 0, 944, 940, 1, 0, 0, 0, 944, 941, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 943, 1, 0, 0, 0, 945, 13, 1, 0, 0, 0, 946, 961, 3, 364, 182, 0, 947, 961, 3, 366, 183, 0, 948, 961, 3, 368, 184, 0, 949, 961, 3, 370, 185, 0, 950, 961, 3, 372, 186, 0, 951, 961, 3, 374, 187, 0, 952, 961, 3, 376, 188, 0, 953, 961, 3, 378, 189, 0, 954, 961, 3, 414, 207, 0, 955, 961, 3, 416, 208, 0, 956, 961, 3, 418, 209, 0, 957, 961, 3, 420, 210, 0, 958, 961, 3, 422, 211, 0, 959, 961, 3, 424, 212, 0, 960, 946, 1, 0, 0, 0, 960, 947, 1, 0, 0, 0, 960, 948, 1, 0, 0, 0, 960, 949, 1, 0, 0, 0, 960, 950, 1, 0, 0, 0, 960, 951, 1, 0, 0, 0, 960, 952, 1, 0, 0, 0, 960, 953, 1, 0, 0, 0, 960, 954, 1, 0, 0, 0, 960, 955, 1, 0, 0, 0, 960, 956, 1, 0, 0, 0, 960, 957, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 960, 959, 1, 0, 0, 0, 961, 15, 1, 0, 0, 0, 962, 966, 3, 426, 213, 0, 963, 966, 3, 428, 214, 0, 964, 966, 3, 430, 215, 0, 965, 962, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 964, 1, 0, 0, 0, 966, 17, 1, 0, 0, 0, 967, 978, 3, 434, 217, 0, 968, 978, 3, 436, 218, 0, 969, 978, 3, 438, 219, 0, 970, 978, 3, 442, 221, 0, 971, 978, 3, 444, 222, 0, 972, 978, 3, 446, 223, 0, 973, 978, 3, 450, 225, 0, 974, 978, 3, 440, 220, 0, 975, 978, 3, 448, 224, 0, 976, 978, 3, 452, 226, 0, 977, 967, 1, 0, 0, 0, 977, 968, 1, 0, 0, 0, 977, 969, 1, 0, 0, 0, 977, 970, 1, 0, 0, 0, 977, 971, 1, 0, 0, 0, 977, 972, 1, 0, 0, 0, 977, 973, 1, 0, 0, 0, 977, 974, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 977, 976, 1, 0, 0, 0, 978, 19, 1, 0, 0, 0, 979, 1013, 3, 470, 235, 0, 980, 1013, 3, 472, 236, 0, 981, 1013, 3, 474, 237, 0, 982, 1013, 3, 476, 238, 0, 983, 1013, 3, 480, 240, 0, 984, 1013, 3, 492, 246, 0, 985, 1013, 3, 494, 247, 0, 986, 1013, 3, 482, 241, 0, 987, 1013, 3, 484, 242, 0, 988, 1013, 3, 486, 243, 0, 989, 1013, 3, 488, 244, 0, 990, 1013, 3, 538, 269, 0, 991, 1013, 3, 540, 270, 0, 992, 1013, 3, 542, 271, 0, 993, 1013, 3, 544, 272, 0, 994, 1013, 3, 546, 273, 0, 995, 1013, 3, 552, 276, 0, 996, 1013, 3, 556, 278, 0, 997, 1013, 3, 558, 279, 0, 998, 1013, 3, 560, 280, 0, 999, 1013, 3, 562, 281, 0, 1000, 1013, 3, 564, 282, 0, 1001, 1013, 3, 566, 283, 0, 1002, 1013, 3, 580, 290, 0, 1003, 1013, 3, 582, 291, 0, 1004, 1013, 3, 584, 292, 0, 1005, 1013, 3, 586, 293, 0, 1006, 1013, 3, 588, 294, 0, 1007, 1013, 3, 590, 295, 0, 1008, 1013, 3, 594, 297, 0, 1009, 1013, 3, 596, 298, 0, 1010, 1013, 3, 598, 299, 0, 1011, 1013, 3, 600, 300, 0, 1012, 979, 1, 0, 0, 0, 1012, 980, 1, 0, 0, 0, 1012, 981, 1, 0, 0, 0, 1012, 982, 1, 0, 0, 0, 1012, 983, 1, 0, 0, 0, 1012, 984, 1, 0, 0, 0, 1012, 985, 1, 0, 0, 0, 1012, 986, 1, 0, 0, 0, 1012, 987, 1, 0, 0, 0, 1012, 988, 1, 0, 0, 0, 1012, 989, 1, 0, 0, 0, 1012, 990, 1, 0, 0, 0, 1012, 991, 1, 0, 0, 0, 1012, 992, 1, 0, 0, 0, 1012, 993, 1, 0, 0, 0, 1012, 994, 1, 0, 0, 0, 1012, 995, 1, 0, 0, 0, 1012, 996, 1, 0, 0, 0, 1012, 997, 1, 0, 0, 0, 1012, 998, 1, 0, 0, 0, 1012, 999, 1, 0, 0, 0, 1012, 1000, 1, 0, 0, 0, 1012, 1001, 1, 0, 0, 0, 1012, 1002, 1, 0, 0, 0, 1012, 1003, 1, 0, 0, 0, 1012, 1004, 1, 0, 0, 0, 1012, 1005, 1, 0, 0, 0, 1012, 1006, 1, 0, 0, 0, 1012, 1007, 1, 0, 0, 0, 1012, 1008, 1, 0, 0, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1011, 1, 0, 0, 0, 1013, 21, 1, 0, 0, 0, 1014, 1023, 3, 612, 306, 0, 1015, 1023, 3, 610, 305, 0, 1016, 1023, 3, 614, 307, 0, 1017, 1023, 3, 616, 308, 0, 1018, 1023, 3, 618, 309, 0, 1019, 1023, 3, 620, 310, 0, 1020, 1023, 3, 622, 311, 0, 1021, 1023, 3, 630, 315, 0, 1022, 1014, 1, 0, 0, 0, 1022, 1015, 1, 0, 0, 0, 1022, 1016, 1, 0, 0, 0, 1022, 1017, 1, 0, 0, 0, 1022, 1018, 1, 0, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1021, 1, 0, 0, 0, 1023, 23, 1, 0, 0, 0, 1024, 1025, 5, 34, 0, 0, 1025, 1027, 7, 0, 0, 0, 1026, 1028, 3, 770, 385, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1033, 3, 636, 318, 0, 1030, 1032, 3, 56, 28, 0, 1031, 1030, 1, 0, 0, 0, 1032, 1035, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 25, 1, 0, 0, 0, 1035, 1033, 1, 0, 0, 0, 1036, 1038, 5, 34, 0, 0, 1037, 1039, 3, 62, 31, 0, 1038, 1037, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1042, 5, 385, 0, 0, 1041, 1043, 3, 770, 385, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 3, 712, 356, 0, 1045, 1046, 5, 119, 0, 0, 1046, 1047, 5, 590, 0, 0, 1047, 1054, 3, 64, 32, 0, 1048, 1049, 5, 119, 0, 0, 1049, 1051, 5, 343, 0, 0, 1050, 1052, 5, 114, 0, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1055, 5, 541, 0, 0, 1054, 1048, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1057, 1, 0, 0, 0, 1056, 1058, 3, 72, 36, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1061, 1, 0, 0, 0, 1059, 1060, 5, 340, 0, 0, 1060, 1062, 5, 882, 0, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 5, 371, 0, 0, 1064, 1065, 3, 432, 216, 0, 1065, 27, 1, 0, 0, 0, 1066, 1068, 5, 34, 0, 0, 1067, 1069, 7, 1, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 1, 0, 0, 0, 1070, 1072, 7, 2, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 5, 82, 0, 0, 1074, 1076, 3, 648, 324, 0, 1075, 1077, 3, 74, 37, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 5, 119, 0, 0, 1079, 1080, 3, 662, 331, 0, 1080, 1084, 3, 748, 374, 0, 1081, 1083, 3, 76, 38, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1099, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1089, 5, 308, 0, 0, 1088, 1090, 5, 857, 0, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1098, 7, 3, 0, 0, 1092, 1094, 5, 104, 0, 0, 1093, 1095, 5, 857, 0, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 7, 4, 0, 0, 1097, 1087, 1, 0, 0, 0, 1097, 1092, 1, 0, 0, 0, 1098, 1101, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 29, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 1103, 5, 34, 0, 0, 1103, 1104, 5, 451, 0, 0, 1104, 1105, 5, 74, 0, 0, 1105, 1106, 3, 716, 358, 0, 1106, 1107, 5, 6, 0, 0, 1107, 1108, 5, 671, 0, 0, 1108, 1114, 5, 882, 0, 0, 1109, 1111, 5, 428, 0, 0, 1110, 1112, 5, 857, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1115, 3, 724, 362, 0, 1114, 1109, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1121, 1, 0, 0, 0, 1116, 1118, 5, 672, 0, 0, 1117, 1119, 5, 857, 0, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 3, 724, 362, 0, 1121, 1116, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1128, 1, 0, 0, 0, 1123, 1125, 5, 553, 0, 0, 1124, 1126, 5, 857, 0, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 3, 724, 362, 0, 1128, 1123, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1135, 1, 0, 0, 0, 1130, 1132, 5, 504, 0, 0, 1131, 1133, 5, 857, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1136, 3, 716, 358, 0, 1135, 1130, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1138, 1, 0, 0, 0, 1137, 1139, 5, 687, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1145, 1, 0, 0, 0, 1140, 1142, 5, 340, 0, 0, 1141, 1143, 5, 857, 0, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 5, 882, 0, 0, 1145, 1140, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 5, 380, 0, 0, 1148, 1150, 5, 857, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 3, 702, 351, 0, 1152, 31, 1, 0, 0, 0, 1153, 1155, 5, 34, 0, 0, 1154, 1156, 3, 62, 31, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 5, 132, 0, 0, 1158, 1160, 3, 770, 385, 0, 1159, 1158, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 3, 712, 356, 0, 1162, 1164, 5, 866, 0, 0, 1163, 1165, 3, 78, 39, 0, 1164, 1163, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1170, 1, 0, 0, 0, 1166, 1167, 5, 868, 0, 0, 1167, 1169, 3, 78, 39, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1172, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1173, 1177, 5, 867, 0, 0, 1174, 1176, 3, 82, 41, 0, 1175, 1174, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1180, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1181, 3, 432, 216, 0, 1181, 33, 1, 0, 0, 0, 1182, 1184, 5, 34, 0, 0, 1183, 1185, 3, 62, 31, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1188, 5, 307, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 5, 409, 0, 0, 1190, 1192, 3, 770, 385, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 3, 640, 320, 0, 1194, 1196, 5, 866, 0, 0, 1195, 1197, 3, 80, 40, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1202, 1, 0, 0, 0, 1198, 1199, 5, 868, 0, 0, 1199, 1201, 3, 80, 40, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1205, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1206, 5, 867, 0, 0, 1206, 1207, 5, 580, 0, 0, 1207, 1211, 3, 736, 368, 0, 1208, 1210, 3, 82, 41, 0, 1209, 1208, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1216, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1217, 3, 432, 216, 0, 1215, 1217, 3, 448, 224, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1215, 1, 0, 0, 0, 1217, 35, 1, 0, 0, 0, 1218, 1220, 5, 34, 0, 0, 1219, 1221, 5, 307, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 5, 409, 0, 0, 1223, 1225, 3, 770, 385, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 3, 640, 320, 0, 1227, 1228, 5, 580, 0, 0, 1228, 1229, 7, 5, 0, 0, 1229, 1230, 5, 603, 0, 0, 1230, 1231, 5, 882, 0, 0, 1231, 37, 1, 0, 0, 0, 1232, 1233, 5, 34, 0, 0, 1233, 1235, 5, 582, 0, 0, 1234, 1236, 3, 770, 385, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 3, 664, 332, 0, 1238, 39, 1, 0, 0, 0, 1239, 1240, 5, 34, 0, 0, 1240, 1241, 5, 592, 0, 0, 1241, 1242, 3, 716, 358, 0, 1242, 1243, 5, 67, 0, 0, 1243, 1244, 5, 360, 0, 0, 1244, 1245, 5, 692, 0, 0, 1245, 1246, 7, 6, 0, 0, 1246, 1247, 5, 518, 0, 0, 1247, 1248, 5, 866, 0, 0, 1248, 1253, 3, 84, 42, 0, 1249, 1250, 5, 868, 0, 0, 1250, 1252, 3, 84, 42, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1257, 5, 867, 0, 0, 1257, 41, 1, 0, 0, 0, 1258, 1260, 5, 34, 0, 0, 1259, 1261, 5, 660, 0, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1264, 5, 173, 0, 0, 1263, 1265, 3, 770, 385, 0, 1264, 1263, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1268, 3, 658, 329, 0, 1267, 1269, 3, 86, 43, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1280, 1, 0, 0, 0, 1270, 1277, 3, 104, 52, 0, 1271, 1273, 5, 868, 0, 0, 1272, 1271, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 3, 104, 52, 0, 1275, 1272, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1270, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1284, 3, 110, 55, 0, 1283, 1282, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1287, 7, 7, 0, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 1, 0, 0, 0, 1288, 1290, 5, 13, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 3, 210, 105, 0, 1292, 1337, 1, 0, 0, 0, 1293, 1295, 5, 34, 0, 0, 1294, 1296, 5, 660, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 5, 173, 0, 0, 1298, 1300, 3, 770, 385, 0, 1299, 1298, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1309, 3, 658, 329, 0, 1302, 1303, 5, 99, 0, 0, 1303, 1310, 3, 662, 331, 0, 1304, 1305, 5, 866, 0, 0, 1305, 1306, 5, 99, 0, 0, 1306, 1307, 3, 662, 331, 0, 1307, 1308, 5, 867, 0, 0, 1308, 1310, 1, 0, 0, 0, 1309, 1302, 1, 0, 0, 0, 1309, 1304, 1, 0, 0, 0, 1310, 1337, 1, 0, 0, 0, 1311, 1313, 5, 34, 0, 0, 1312, 1314, 5, 660, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 5, 173, 0, 0, 1316, 1318, 3, 770, 385, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 3, 658, 329, 0, 1320, 1331, 3, 86, 43, 0, 1321, 1328, 3, 104, 52, 0, 1322, 1324, 5, 868, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1327, 3, 104, 52, 0, 1326, 1323, 1, 0, 0, 0, 1327, 1330, 1, 0, 0, 0, 1328, 1326, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1332, 1, 0, 0, 0, 1330, 1328, 1, 0, 0, 0, 1331, 1321, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1335, 3, 110, 55, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 1, 0, 0, 0, 1336, 1258, 1, 0, 0, 0, 1336, 1293, 1, 0, 0, 0, 1336, 1311, 1, 0, 0, 0, 1337, 43, 1, 0, 0, 0, 1338, 1340, 5, 34, 0, 0, 1339, 1341, 5, 180, 0, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 5, 658, 0, 0, 1343, 1347, 3, 674, 337, 0, 1344, 1345, 5, 6, 0, 0, 1345, 1346, 5, 361, 0, 0, 1346, 1348, 5, 882, 0, 0, 1347, 1344, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1354, 1, 0, 0, 0, 1349, 1351, 5, 314, 0, 0, 1350, 1352, 5, 857, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1355, 3, 724, 362, 0, 1354, 1349, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1359, 1, 0, 0, 0, 1356, 1357, 5, 399, 0, 0, 1357, 1358, 5, 857, 0, 0, 1358, 1360, 3, 724, 362, 0, 1359, 1356, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1366, 1, 0, 0, 0, 1361, 1363, 5, 380, 0, 0, 1362, 1364, 5, 857, 0, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 3, 702, 351, 0, 1366, 1361, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1373, 1, 0, 0, 0, 1368, 1370, 5, 825, 0, 0, 1369, 1371, 5, 857, 0, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1374, 5, 882, 0, 0, 1373, 1368, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 45, 1, 0, 0, 0, 1375, 1377, 5, 34, 0, 0, 1376, 1378, 5, 180, 0, 0, 1377, 1376, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 5, 658, 0, 0, 1380, 1381, 3, 674, 337, 0, 1381, 1382, 5, 6, 0, 0, 1382, 1383, 5, 361, 0, 0, 1383, 1384, 5, 882, 0, 0, 1384, 1385, 5, 187, 0, 0, 1385, 1386, 5, 451, 0, 0, 1386, 1387, 5, 74, 0, 0, 1387, 1393, 3, 716, 358, 0, 1388, 1390, 5, 393, 0, 0, 1389, 1391, 5, 857, 0, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1394, 3, 724, 362, 0, 1393, 1388, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1400, 1, 0, 0, 0, 1395, 1397, 5, 428, 0, 0, 1396, 1398, 5, 857, 0, 0, 1397, 1396, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1401, 3, 724, 362, 0, 1400, 1395, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1407, 1, 0, 0, 0, 1402, 1404, 5, 314, 0, 0, 1403, 1405, 5, 857, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1408, 3, 724, 362, 0, 1407, 1402, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1414, 1, 0, 0, 0, 1409, 1411, 5, 481, 0, 0, 1410, 1412, 5, 857, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1415, 3, 724, 362, 0, 1414, 1409, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1421, 1, 0, 0, 0, 1416, 1418, 5, 504, 0, 0, 1417, 1419, 5, 857, 0, 0, 1418, 1417, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1422, 3, 716, 358, 0, 1421, 1416, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 5, 687, 0, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1431, 1, 0, 0, 0, 1426, 1428, 5, 340, 0, 0, 1427, 1429, 5, 857, 0, 0, 1428, 1427, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1432, 5, 882, 0, 0, 1431, 1426, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1435, 5, 380, 0, 0, 1434, 1436, 5, 857, 0, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 3, 702, 351, 0, 1438, 47, 1, 0, 0, 0, 1439, 1441, 5, 34, 0, 0, 1440, 1442, 3, 62, 31, 0, 1441, 1440, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1445, 3, 770, 385, 0, 1444, 1443, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1448, 5, 178, 0, 0, 1447, 1449, 3, 770, 385, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 3, 712, 356, 0, 1451, 1452, 7, 8, 0, 0, 1452, 1453, 7, 9, 0, 0, 1453, 1454, 5, 119, 0, 0, 1454, 1455, 3, 662, 331, 0, 1455, 1456, 5, 65, 0, 0, 1456, 1457, 5, 52, 0, 0, 1457, 1460, 5, 586, 0, 0, 1458, 1459, 7, 10, 0, 0, 1459, 1461, 3, 712, 356, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 3, 432, 216, 0, 1463, 49, 1, 0, 0, 0, 1464, 1466, 5, 194, 0, 0, 1465, 1467, 5, 552, 0, 0, 1466, 1465, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1469, 3, 52, 26, 0, 1469, 51, 1, 0, 0, 0, 1470, 1482, 3, 716, 358, 0, 1471, 1472, 5, 866, 0, 0, 1472, 1477, 3, 716, 358, 0, 1473, 1474, 5, 868, 0, 0, 1474, 1476, 3, 716, 358, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1479, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1481, 5, 867, 0, 0, 1481, 1483, 1, 0, 0, 0, 1482, 1471, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 5, 13, 0, 0, 1485, 1486, 5, 866, 0, 0, 1486, 1487, 3, 10, 5, 0, 1487, 1490, 5, 867, 0, 0, 1488, 1489, 5, 868, 0, 0, 1489, 1491, 3, 52, 26, 0, 1490, 1488, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 53, 1, 0, 0, 0, 1492, 1494, 5, 34, 0, 0, 1493, 1495, 3, 772, 386, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1499, 1, 0, 0, 0, 1496, 1497, 5, 308, 0, 0, 1497, 1498, 5, 857, 0, 0, 1498, 1500, 7, 11, 0, 0, 1499, 1496, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1502, 1, 0, 0, 0, 1501, 1503, 3, 62, 31, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1507, 1, 0, 0, 0, 1504, 1505, 5, 162, 0, 0, 1505, 1506, 5, 591, 0, 0, 1506, 1508, 7, 12, 0, 0, 1507, 1504, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 5, 684, 0, 0, 1510, 1522, 3, 644, 322, 0, 1511, 1512, 5, 866, 0, 0, 1512, 1517, 3, 668, 334, 0, 1513, 1514, 5, 868, 0, 0, 1514, 1516, 3, 668, 334, 0, 1515, 1513, 1, 0, 0, 0, 1516, 1519, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1520, 1521, 5, 867, 0, 0, 1521, 1523, 1, 0, 0, 0, 1522, 1511, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1544, 5, 13, 0, 0, 1525, 1527, 5, 866, 0, 0, 1526, 1528, 3, 50, 25, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 3, 210, 105, 0, 1530, 1531, 5, 867, 0, 0, 1531, 1545, 1, 0, 0, 0, 1532, 1534, 3, 50, 25, 0, 1533, 1532, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1542, 3, 210, 105, 0, 1536, 1538, 5, 194, 0, 0, 1537, 1539, 7, 13, 0, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 5, 27, 0, 0, 1541, 1543, 5, 121, 0, 0, 1542, 1536, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1525, 1, 0, 0, 0, 1544, 1533, 1, 0, 0, 0, 1545, 55, 1, 0, 0, 0, 1546, 1548, 5, 42, 0, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 3, 58, 29, 0, 1550, 1552, 5, 857, 0, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1555, 1, 0, 0, 0, 1553, 1556, 3, 698, 349, 0, 1554, 1556, 5, 42, 0, 0, 1555, 1553, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 1580, 1, 0, 0, 0, 1557, 1559, 5, 42, 0, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 5, 28, 0, 0, 1561, 1563, 5, 857, 0, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1580, 3, 700, 350, 0, 1565, 1567, 5, 42, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 5, 376, 0, 0, 1569, 1571, 5, 857, 0, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1580, 5, 882, 0, 0, 1573, 1574, 5, 135, 0, 0, 1574, 1576, 5, 515, 0, 0, 1575, 1577, 5, 857, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 7, 14, 0, 0, 1579, 1547, 1, 0, 0, 0, 1579, 1558, 1, 0, 0, 0, 1579, 1566, 1, 0, 0, 0, 1579, 1573, 1, 0, 0, 0, 1580, 57, 1, 0, 0, 0, 1581, 1582, 5, 26, 0, 0, 1582, 1587, 5, 155, 0, 0, 1583, 1587, 5, 823, 0, 0, 1584, 1585, 5, 224, 0, 0, 1585, 1587, 5, 155, 0, 0, 1586, 1581, 1, 0, 0, 0, 1586, 1583, 1, 0, 0, 0, 1586, 1584, 1, 0, 0, 0, 1587, 59, 1, 0, 0, 0, 1588, 1591, 7, 15, 0, 0, 1589, 1590, 5, 866, 0, 0, 1590, 1592, 5, 867, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 61, 1, 0, 0, 0, 1593, 1594, 5, 364, 0, 0, 1594, 1597, 5, 857, 0, 0, 1595, 1598, 3, 694, 347, 0, 1596, 1598, 3, 60, 30, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1596, 1, 0, 0, 0, 1598, 63, 1, 0, 0, 0, 1599, 1600, 5, 311, 0, 0, 1600, 1604, 3, 66, 33, 0, 1601, 1603, 3, 68, 34, 0, 1602, 1601, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1602, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1634, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1607, 1610, 5, 387, 0, 0, 1608, 1611, 3, 722, 361, 0, 1609, 1611, 3, 814, 407, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1621, 3, 70, 35, 0, 1613, 1614, 5, 641, 0, 0, 1614, 1618, 3, 66, 33, 0, 1615, 1617, 3, 68, 34, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1613, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1631, 1, 0, 0, 0, 1623, 1624, 5, 379, 0, 0, 1624, 1628, 3, 66, 33, 0, 1625, 1627, 3, 68, 34, 0, 1626, 1625, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1632, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1623, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1634, 1, 0, 0, 0, 1633, 1599, 1, 0, 0, 0, 1633, 1607, 1, 0, 0, 0, 1634, 65, 1, 0, 0, 0, 1635, 1640, 5, 287, 0, 0, 1636, 1640, 3, 726, 363, 0, 1637, 1640, 3, 722, 361, 0, 1638, 1640, 3, 814, 407, 0, 1639, 1635, 1, 0, 0, 0, 1639, 1636, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1638, 1, 0, 0, 0, 1640, 67, 1, 0, 0, 0, 1641, 1642, 5, 853, 0, 0, 1642, 1645, 5, 87, 0, 0, 1643, 1646, 3, 722, 361, 0, 1644, 1646, 3, 814, 407, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 3, 70, 35, 0, 1648, 69, 1, 0, 0, 0, 1649, 1663, 3, 840, 420, 0, 1650, 1663, 5, 223, 0, 0, 1651, 1663, 5, 242, 0, 0, 1652, 1663, 5, 243, 0, 0, 1653, 1663, 5, 244, 0, 0, 1654, 1663, 5, 245, 0, 0, 1655, 1663, 5, 246, 0, 0, 1656, 1663, 5, 247, 0, 0, 1657, 1663, 5, 248, 0, 0, 1658, 1663, 5, 249, 0, 0, 1659, 1663, 5, 250, 0, 0, 1660, 1663, 5, 251, 0, 0, 1661, 1663, 5, 252, 0, 0, 1662, 1649, 1, 0, 0, 0, 1662, 1650, 1, 0, 0, 0, 1662, 1651, 1, 0, 0, 0, 1662, 1652, 1, 0, 0, 0, 1662, 1653, 1, 0, 0, 0, 1662, 1654, 1, 0, 0, 0, 1662, 1655, 1, 0, 0, 0, 1662, 1656, 1, 0, 0, 0, 1662, 1657, 1, 0, 0, 0, 1662, 1658, 1, 0, 0, 0, 1662, 1659, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1661, 1, 0, 0, 0, 1663, 71, 1, 0, 0, 0, 1664, 1670, 5, 375, 0, 0, 1665, 1670, 5, 368, 0, 0, 1666, 1667, 5, 368, 0, 0, 1667, 1668, 5, 119, 0, 0, 1668, 1670, 5, 598, 0, 0, 1669, 1664, 1, 0, 0, 0, 1669, 1665, 1, 0, 0, 0, 1669, 1666, 1, 0, 0, 0, 1670, 73, 1, 0, 0, 0, 1671, 1672, 5, 188, 0, 0, 1672, 1673, 7, 16, 0, 0, 1673, 75, 1, 0, 0, 0, 1674, 1676, 5, 443, 0, 0, 1675, 1677, 5, 857, 0, 0, 1676, 1675, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1697, 3, 724, 362, 0, 1679, 1697, 3, 74, 37, 0, 1680, 1681, 5, 194, 0, 0, 1681, 1682, 5, 525, 0, 0, 1682, 1697, 3, 716, 358, 0, 1683, 1684, 5, 340, 0, 0, 1684, 1697, 5, 882, 0, 0, 1685, 1697, 7, 17, 0, 0, 1686, 1688, 5, 825, 0, 0, 1687, 1689, 5, 857, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1697, 5, 882, 0, 0, 1691, 1693, 5, 833, 0, 0, 1692, 1694, 5, 857, 0, 0, 1693, 1692, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1697, 5, 882, 0, 0, 1696, 1674, 1, 0, 0, 0, 1696, 1679, 1, 0, 0, 0, 1696, 1680, 1, 0, 0, 0, 1696, 1683, 1, 0, 0, 0, 1696, 1685, 1, 0, 0, 0, 1696, 1686, 1, 0, 0, 0, 1696, 1691, 1, 0, 0, 0, 1697, 77, 1, 0, 0, 0, 1698, 1700, 7, 18, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 3, 716, 358, 0, 1702, 1703, 3, 736, 368, 0, 1703, 79, 1, 0, 0, 0, 1704, 1705, 3, 716, 358, 0, 1705, 1706, 3, 736, 368, 0, 1706, 81, 1, 0, 0, 0, 1707, 1708, 5, 340, 0, 0, 1708, 1731, 5, 882, 0, 0, 1709, 1710, 5, 444, 0, 0, 1710, 1731, 5, 162, 0, 0, 1711, 1713, 5, 114, 0, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1731, 5, 47, 0, 0, 1715, 1716, 5, 354, 0, 0, 1716, 1726, 5, 162, 0, 0, 1717, 1718, 5, 502, 0, 0, 1718, 1726, 5, 162, 0, 0, 1719, 1720, 5, 136, 0, 0, 1720, 1721, 5, 162, 0, 0, 1721, 1726, 5, 360, 0, 0, 1722, 1723, 5, 112, 0, 0, 1723, 1724, 5, 162, 0, 0, 1724, 1726, 5, 360, 0, 0, 1725, 1715, 1, 0, 0, 0, 1725, 1717, 1, 0, 0, 0, 1725, 1719, 1, 0, 0, 0, 1725, 1722, 1, 0, 0, 0, 1726, 1731, 1, 0, 0, 0, 1727, 1728, 5, 162, 0, 0, 1728, 1729, 5, 591, 0, 0, 1729, 1731, 7, 12, 0, 0, 1730, 1707, 1, 0, 0, 0, 1730, 1709, 1, 0, 0, 0, 1730, 1712, 1, 0, 0, 0, 1730, 1725, 1, 0, 0, 0, 1730, 1727, 1, 0, 0, 0, 1731, 83, 1, 0, 0, 0, 1732, 1733, 5, 421, 0, 0, 1733, 1747, 5, 882, 0, 0, 1734, 1735, 5, 39, 0, 0, 1735, 1747, 5, 882, 0, 0, 1736, 1737, 5, 678, 0, 0, 1737, 1747, 5, 882, 0, 0, 1738, 1739, 5, 529, 0, 0, 1739, 1747, 5, 882, 0, 0, 1740, 1741, 5, 601, 0, 0, 1741, 1747, 5, 882, 0, 0, 1742, 1743, 5, 519, 0, 0, 1743, 1747, 5, 882, 0, 0, 1744, 1745, 5, 537, 0, 0, 1745, 1747, 3, 722, 361, 0, 1746, 1732, 1, 0, 0, 0, 1746, 1734, 1, 0, 0, 0, 1746, 1736, 1, 0, 0, 0, 1746, 1738, 1, 0, 0, 0, 1746, 1740, 1, 0, 0, 0, 1746, 1742, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 85, 1, 0, 0, 0, 1748, 1749, 5, 866, 0, 0, 1749, 1754, 3, 88, 44, 0, 1750, 1751, 5, 868, 0, 0, 1751, 1753, 3, 88, 44, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1756, 1, 0, 0, 0, 1754, 1752, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1758, 5, 867, 0, 0, 1758, 87, 1, 0, 0, 0, 1759, 1760, 3, 668, 334, 0, 1760, 1761, 3, 94, 47, 0, 1761, 1843, 1, 0, 0, 0, 1762, 1764, 7, 19, 0, 0, 1763, 1765, 3, 652, 326, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1768, 3, 74, 37, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1773, 3, 748, 374, 0, 1770, 1772, 3, 76, 38, 0, 1771, 1770, 1, 0, 0, 0, 1772, 1775, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1843, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1776, 1778, 7, 20, 0, 0, 1777, 1779, 7, 19, 0, 0, 1778, 1777, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1781, 1, 0, 0, 0, 1780, 1782, 3, 652, 326, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1787, 3, 748, 374, 0, 1784, 1786, 3, 76, 38, 0, 1785, 1784, 1, 0, 0, 0, 1786, 1789, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1843, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1790, 1792, 3, 92, 46, 0, 1791, 1790, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 5, 131, 0, 0, 1794, 1796, 5, 92, 0, 0, 1795, 1797, 3, 74, 37, 0, 1796, 1795, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1802, 3, 748, 374, 0, 1799, 1801, 3, 76, 38, 0, 1800, 1799, 1, 0, 0, 0, 1801, 1804, 1, 0, 0, 0, 1802, 1800, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1843, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1805, 1807, 3, 92, 46, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1810, 5, 182, 0, 0, 1809, 1811, 7, 19, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1813, 1, 0, 0, 0, 1812, 1814, 3, 652, 326, 0, 1813, 1812, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, 1, 0, 0, 0, 1815, 1817, 3, 74, 37, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1822, 3, 748, 374, 0, 1819, 1821, 3, 76, 38, 0, 1820, 1819, 1, 0, 0, 0, 1821, 1824, 1, 0, 0, 0, 1822, 1820, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1843, 1, 0, 0, 0, 1824, 1822, 1, 0, 0, 0, 1825, 1827, 3, 92, 46, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 5, 67, 0, 0, 1829, 1831, 5, 92, 0, 0, 1830, 1832, 3, 652, 326, 0, 1831, 1830, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 3, 748, 374, 0, 1834, 1835, 3, 98, 49, 0, 1835, 1843, 1, 0, 0, 0, 1836, 1837, 5, 27, 0, 0, 1837, 1838, 5, 866, 0, 0, 1838, 1839, 3, 814, 407, 0, 1839, 1840, 5, 867, 0, 0, 1840, 1843, 1, 0, 0, 0, 1841, 1843, 3, 90, 45, 0, 1842, 1759, 1, 0, 0, 0, 1842, 1762, 1, 0, 0, 0, 1842, 1776, 1, 0, 0, 0, 1842, 1791, 1, 0, 0, 0, 1842, 1806, 1, 0, 0, 0, 1842, 1826, 1, 0, 0, 0, 1842, 1836, 1, 0, 0, 0, 1842, 1841, 1, 0, 0, 0, 1843, 89, 1, 0, 0, 0, 1844, 1846, 3, 92, 46, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 5, 27, 0, 0, 1848, 1849, 5, 866, 0, 0, 1849, 1850, 3, 814, 407, 0, 1850, 1855, 5, 867, 0, 0, 1851, 1853, 5, 114, 0, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 5, 57, 0, 0, 1855, 1852, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 91, 1, 0, 0, 0, 1857, 1859, 5, 31, 0, 0, 1858, 1860, 3, 716, 358, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 93, 1, 0, 0, 0, 1861, 1865, 3, 736, 368, 0, 1862, 1864, 3, 96, 48, 0, 1863, 1862, 1, 0, 0, 0, 1864, 1867, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 95, 1, 0, 0, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1912, 3, 732, 366, 0, 1869, 1870, 5, 42, 0, 0, 1870, 1912, 3, 764, 382, 0, 1871, 1912, 5, 686, 0, 0, 1872, 1912, 5, 435, 0, 0, 1873, 1878, 5, 315, 0, 0, 1874, 1875, 5, 119, 0, 0, 1875, 1876, 5, 185, 0, 0, 1876, 1878, 3, 766, 383, 0, 1877, 1873, 1, 0, 0, 0, 1877, 1874, 1, 0, 0, 0, 1878, 1912, 1, 0, 0, 0, 1879, 1881, 5, 131, 0, 0, 1880, 1879, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1912, 5, 92, 0, 0, 1883, 1885, 5, 182, 0, 0, 1884, 1886, 5, 92, 0, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1912, 1, 0, 0, 0, 1887, 1888, 5, 340, 0, 0, 1888, 1912, 5, 882, 0, 0, 1889, 1890, 5, 338, 0, 0, 1890, 1912, 7, 21, 0, 0, 1891, 1892, 5, 647, 0, 0, 1892, 1912, 7, 22, 0, 0, 1893, 1912, 3, 98, 49, 0, 1894, 1895, 5, 28, 0, 0, 1895, 1912, 3, 700, 350, 0, 1896, 1897, 5, 71, 0, 0, 1897, 1899, 5, 9, 0, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 5, 13, 0, 0, 1901, 1902, 5, 866, 0, 0, 1902, 1903, 3, 814, 407, 0, 1903, 1905, 5, 867, 0, 0, 1904, 1906, 7, 23, 0, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1912, 1, 0, 0, 0, 1907, 1908, 5, 241, 0, 0, 1908, 1909, 5, 42, 0, 0, 1909, 1912, 5, 682, 0, 0, 1910, 1912, 3, 90, 45, 0, 1911, 1868, 1, 0, 0, 0, 1911, 1869, 1, 0, 0, 0, 1911, 1871, 1, 0, 0, 0, 1911, 1872, 1, 0, 0, 0, 1911, 1877, 1, 0, 0, 0, 1911, 1880, 1, 0, 0, 0, 1911, 1883, 1, 0, 0, 0, 1911, 1887, 1, 0, 0, 0, 1911, 1889, 1, 0, 0, 0, 1911, 1891, 1, 0, 0, 0, 1911, 1893, 1, 0, 0, 0, 1911, 1894, 1, 0, 0, 0, 1911, 1898, 1, 0, 0, 0, 1911, 1907, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 97, 1, 0, 0, 0, 1913, 1914, 5, 138, 0, 0, 1914, 1916, 3, 662, 331, 0, 1915, 1917, 3, 748, 374, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1920, 1, 0, 0, 0, 1918, 1919, 5, 110, 0, 0, 1919, 1921, 7, 24, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1924, 3, 100, 50, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 99, 1, 0, 0, 0, 1925, 1926, 5, 119, 0, 0, 1926, 1927, 5, 44, 0, 0, 1927, 1931, 3, 102, 51, 0, 1928, 1929, 5, 119, 0, 0, 1929, 1930, 5, 185, 0, 0, 1930, 1932, 3, 102, 51, 0, 1931, 1928, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1942, 1, 0, 0, 0, 1933, 1934, 5, 119, 0, 0, 1934, 1935, 5, 185, 0, 0, 1935, 1939, 3, 102, 51, 0, 1936, 1937, 5, 119, 0, 0, 1937, 1938, 5, 44, 0, 0, 1938, 1940, 3, 102, 51, 0, 1939, 1936, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1942, 1, 0, 0, 0, 1941, 1925, 1, 0, 0, 0, 1941, 1933, 1, 0, 0, 0, 1942, 101, 1, 0, 0, 0, 1943, 1952, 5, 146, 0, 0, 1944, 1952, 5, 22, 0, 0, 1945, 1946, 5, 155, 0, 0, 1946, 1952, 5, 116, 0, 0, 1947, 1948, 5, 502, 0, 0, 1948, 1952, 5, 305, 0, 0, 1949, 1950, 5, 155, 0, 0, 1950, 1952, 5, 42, 0, 0, 1951, 1943, 1, 0, 0, 0, 1951, 1944, 1, 0, 0, 0, 1951, 1945, 1, 0, 0, 0, 1951, 1947, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 103, 1, 0, 0, 0, 1953, 1955, 5, 380, 0, 0, 1954, 1956, 5, 857, 0, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1959, 3, 702, 351, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 2139, 1, 0, 0, 0, 1960, 1962, 5, 825, 0, 0, 1961, 1963, 5, 857, 0, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 2139, 5, 882, 0, 0, 1965, 1967, 5, 314, 0, 0, 1966, 1968, 5, 857, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 2139, 3, 722, 361, 0, 1970, 1972, 5, 315, 0, 0, 1971, 1973, 5, 857, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 2139, 3, 722, 361, 0, 1975, 1977, 5, 316, 0, 0, 1976, 1978, 5, 857, 0, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 2139, 3, 722, 361, 0, 1980, 1982, 5, 42, 0, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 3, 58, 29, 0, 1984, 1986, 5, 857, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1989, 1, 0, 0, 0, 1987, 1990, 3, 698, 349, 0, 1988, 1990, 5, 42, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1988, 1, 0, 0, 0, 1990, 2139, 1, 0, 0, 0, 1991, 1993, 7, 25, 0, 0, 1992, 1994, 5, 857, 0, 0, 1993, 1992, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2139, 7, 26, 0, 0, 1996, 1998, 5, 42, 0, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2001, 5, 28, 0, 0, 2000, 2002, 5, 857, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2139, 3, 700, 350, 0, 2004, 2006, 5, 340, 0, 0, 2005, 2007, 5, 857, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2139, 5, 882, 0, 0, 2009, 2011, 5, 346, 0, 0, 2010, 2012, 5, 857, 0, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2139, 7, 27, 0, 0, 2014, 2016, 5, 349, 0, 0, 2015, 2017, 5, 857, 0, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2139, 5, 882, 0, 0, 2019, 2020, 7, 28, 0, 0, 2020, 2022, 5, 367, 0, 0, 2021, 2023, 5, 857, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2139, 5, 882, 0, 0, 2025, 2027, 5, 365, 0, 0, 2026, 2028, 5, 857, 0, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2139, 7, 26, 0, 0, 2030, 2032, 5, 376, 0, 0, 2031, 2033, 5, 857, 0, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2139, 5, 882, 0, 0, 2035, 2037, 7, 29, 0, 0, 2036, 2038, 5, 857, 0, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2139, 7, 26, 0, 0, 2040, 2042, 7, 30, 0, 0, 2041, 2043, 5, 857, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2139, 3, 722, 361, 0, 2045, 2047, 5, 377, 0, 0, 2046, 2048, 5, 857, 0, 0, 2047, 2046, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2139, 3, 722, 361, 0, 2050, 2051, 5, 82, 0, 0, 2051, 2053, 5, 367, 0, 0, 2052, 2054, 5, 857, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2139, 5, 882, 0, 0, 2056, 2058, 5, 431, 0, 0, 2057, 2059, 5, 857, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2139, 7, 31, 0, 0, 2061, 2063, 5, 443, 0, 0, 2062, 2064, 5, 857, 0, 0, 2063, 2062, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2139, 3, 724, 362, 0, 2066, 2068, 5, 480, 0, 0, 2067, 2069, 5, 857, 0, 0, 2068, 2067, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2139, 3, 722, 361, 0, 2071, 2073, 5, 490, 0, 0, 2072, 2074, 5, 857, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2139, 3, 722, 361, 0, 2076, 2078, 5, 520, 0, 0, 2077, 2079, 5, 857, 0, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2139, 7, 14, 0, 0, 2081, 2083, 5, 529, 0, 0, 2082, 2084, 5, 857, 0, 0, 2083, 2082, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2139, 5, 882, 0, 0, 2086, 2088, 5, 588, 0, 0, 2087, 2089, 5, 857, 0, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2139, 7, 32, 0, 0, 2091, 2092, 5, 640, 0, 0, 2092, 2139, 5, 664, 0, 0, 2093, 2095, 5, 833, 0, 0, 2094, 2096, 5, 857, 0, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2139, 5, 882, 0, 0, 2098, 2100, 5, 642, 0, 0, 2099, 2101, 5, 857, 0, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2139, 7, 14, 0, 0, 2103, 2105, 5, 643, 0, 0, 2104, 2106, 5, 857, 0, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2139, 7, 14, 0, 0, 2108, 2110, 5, 644, 0, 0, 2109, 2111, 5, 857, 0, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2114, 1, 0, 0, 0, 2112, 2115, 5, 42, 0, 0, 2113, 2115, 3, 722, 361, 0, 2114, 2112, 1, 0, 0, 0, 2114, 2113, 1, 0, 0, 0, 2115, 2139, 1, 0, 0, 0, 2116, 2117, 5, 658, 0, 0, 2117, 2119, 3, 676, 338, 0, 2118, 2120, 3, 108, 54, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2139, 1, 0, 0, 0, 2121, 2122, 5, 659, 0, 0, 2122, 2123, 5, 857, 0, 0, 2123, 2139, 3, 106, 53, 0, 2124, 2139, 3, 108, 54, 0, 2125, 2127, 5, 665, 0, 0, 2126, 2128, 5, 857, 0, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2139, 7, 26, 0, 0, 2130, 2132, 5, 181, 0, 0, 2131, 2133, 5, 857, 0, 0, 2132, 2131, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 5, 866, 0, 0, 2135, 2136, 3, 660, 330, 0, 2136, 2137, 5, 867, 0, 0, 2137, 2139, 1, 0, 0, 0, 2138, 1953, 1, 0, 0, 0, 2138, 1960, 1, 0, 0, 0, 2138, 1965, 1, 0, 0, 0, 2138, 1970, 1, 0, 0, 0, 2138, 1975, 1, 0, 0, 0, 2138, 1981, 1, 0, 0, 0, 2138, 1991, 1, 0, 0, 0, 2138, 1997, 1, 0, 0, 0, 2138, 2004, 1, 0, 0, 0, 2138, 2009, 1, 0, 0, 0, 2138, 2014, 1, 0, 0, 0, 2138, 2019, 1, 0, 0, 0, 2138, 2025, 1, 0, 0, 0, 2138, 2030, 1, 0, 0, 0, 2138, 2035, 1, 0, 0, 0, 2138, 2040, 1, 0, 0, 0, 2138, 2045, 1, 0, 0, 0, 2138, 2050, 1, 0, 0, 0, 2138, 2056, 1, 0, 0, 0, 2138, 2061, 1, 0, 0, 0, 2138, 2066, 1, 0, 0, 0, 2138, 2071, 1, 0, 0, 0, 2138, 2076, 1, 0, 0, 0, 2138, 2081, 1, 0, 0, 0, 2138, 2086, 1, 0, 0, 0, 2138, 2091, 1, 0, 0, 0, 2138, 2093, 1, 0, 0, 0, 2138, 2098, 1, 0, 0, 0, 2138, 2103, 1, 0, 0, 0, 2138, 2108, 1, 0, 0, 0, 2138, 2116, 1, 0, 0, 0, 2138, 2121, 1, 0, 0, 0, 2138, 2124, 1, 0, 0, 0, 2138, 2125, 1, 0, 0, 0, 2138, 2130, 1, 0, 0, 0, 2139, 105, 1, 0, 0, 0, 2140, 2141, 7, 33, 0, 0, 2141, 107, 1, 0, 0, 0, 2142, 2143, 5, 647, 0, 0, 2143, 2144, 7, 22, 0, 0, 2144, 109, 1, 0, 0, 0, 2145, 2146, 5, 130, 0, 0, 2146, 2147, 5, 20, 0, 0, 2147, 2150, 3, 112, 56, 0, 2148, 2149, 5, 528, 0, 0, 2149, 2151, 3, 722, 361, 0, 2150, 2148, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2159, 1, 0, 0, 0, 2152, 2153, 5, 652, 0, 0, 2153, 2154, 5, 20, 0, 0, 2154, 2157, 3, 114, 57, 0, 2155, 2156, 5, 653, 0, 0, 2156, 2158, 3, 722, 361, 0, 2157, 2155, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2152, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2172, 1, 0, 0, 0, 2161, 2162, 5, 866, 0, 0, 2162, 2167, 3, 116, 58, 0, 2163, 2164, 5, 868, 0, 0, 2164, 2166, 3, 116, 58, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2169, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2171, 5, 867, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2161, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 111, 1, 0, 0, 0, 2174, 2176, 5, 101, 0, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2178, 5, 418, 0, 0, 2178, 2179, 5, 866, 0, 0, 2179, 2180, 3, 814, 407, 0, 2180, 2181, 5, 867, 0, 0, 2181, 2221, 1, 0, 0, 0, 2182, 2184, 5, 101, 0, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2189, 5, 92, 0, 0, 2186, 2187, 5, 308, 0, 0, 2187, 2188, 5, 857, 0, 0, 2188, 2190, 7, 34, 0, 0, 2189, 2186, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2193, 5, 866, 0, 0, 2192, 2194, 3, 670, 335, 0, 2193, 2192, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2221, 5, 867, 0, 0, 2196, 2206, 5, 134, 0, 0, 2197, 2198, 5, 866, 0, 0, 2198, 2199, 3, 814, 407, 0, 2199, 2200, 5, 867, 0, 0, 2200, 2207, 1, 0, 0, 0, 2201, 2202, 5, 337, 0, 0, 2202, 2203, 5, 866, 0, 0, 2203, 2204, 3, 670, 335, 0, 2204, 2205, 5, 867, 0, 0, 2205, 2207, 1, 0, 0, 0, 2206, 2197, 1, 0, 0, 0, 2206, 2201, 1, 0, 0, 0, 2207, 2221, 1, 0, 0, 0, 2208, 2218, 5, 449, 0, 0, 2209, 2210, 5, 866, 0, 0, 2210, 2211, 3, 814, 407, 0, 2211, 2212, 5, 867, 0, 0, 2212, 2219, 1, 0, 0, 0, 2213, 2214, 5, 337, 0, 0, 2214, 2215, 5, 866, 0, 0, 2215, 2216, 3, 670, 335, 0, 2216, 2217, 5, 867, 0, 0, 2217, 2219, 1, 0, 0, 0, 2218, 2209, 1, 0, 0, 0, 2218, 2213, 1, 0, 0, 0, 2219, 2221, 1, 0, 0, 0, 2220, 2175, 1, 0, 0, 0, 2220, 2183, 1, 0, 0, 0, 2220, 2196, 1, 0, 0, 0, 2220, 2208, 1, 0, 0, 0, 2221, 113, 1, 0, 0, 0, 2222, 2224, 5, 101, 0, 0, 2223, 2222, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 5, 418, 0, 0, 2226, 2227, 5, 866, 0, 0, 2227, 2228, 3, 814, 407, 0, 2228, 2229, 5, 867, 0, 0, 2229, 2244, 1, 0, 0, 0, 2230, 2232, 5, 101, 0, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2237, 5, 92, 0, 0, 2234, 2235, 5, 308, 0, 0, 2235, 2236, 5, 857, 0, 0, 2236, 2238, 7, 34, 0, 0, 2237, 2234, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 5, 866, 0, 0, 2240, 2241, 3, 670, 335, 0, 2241, 2242, 5, 867, 0, 0, 2242, 2244, 1, 0, 0, 0, 2243, 2223, 1, 0, 0, 0, 2243, 2231, 1, 0, 0, 0, 2244, 115, 1, 0, 0, 0, 2245, 2246, 5, 130, 0, 0, 2246, 2247, 3, 682, 341, 0, 2247, 2248, 5, 189, 0, 0, 2248, 2249, 5, 447, 0, 0, 2249, 2250, 5, 662, 0, 0, 2250, 2251, 5, 866, 0, 0, 2251, 2256, 3, 118, 59, 0, 2252, 2253, 5, 868, 0, 0, 2253, 2255, 3, 118, 59, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2258, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2263, 5, 867, 0, 0, 2260, 2262, 3, 124, 62, 0, 2261, 2260, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2277, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 5, 866, 0, 0, 2267, 2272, 3, 122, 61, 0, 2268, 2269, 5, 868, 0, 0, 2269, 2271, 3, 122, 61, 0, 2270, 2268, 1, 0, 0, 0, 2271, 2274, 1, 0, 0, 0, 2272, 2270, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2275, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2275, 2276, 5, 867, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2266, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2392, 1, 0, 0, 0, 2279, 2280, 5, 130, 0, 0, 2280, 2281, 3, 682, 341, 0, 2281, 2282, 5, 189, 0, 0, 2282, 2283, 5, 447, 0, 0, 2283, 2284, 5, 662, 0, 0, 2284, 2288, 3, 118, 59, 0, 2285, 2287, 3, 124, 62, 0, 2286, 2285, 1, 0, 0, 0, 2287, 2290, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2302, 1, 0, 0, 0, 2290, 2288, 1, 0, 0, 0, 2291, 2292, 5, 866, 0, 0, 2292, 2297, 3, 122, 61, 0, 2293, 2294, 5, 868, 0, 0, 2294, 2296, 3, 122, 61, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2299, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2301, 5, 867, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2291, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2392, 1, 0, 0, 0, 2304, 2305, 5, 130, 0, 0, 2305, 2306, 3, 682, 341, 0, 2306, 2307, 5, 189, 0, 0, 2307, 2308, 5, 80, 0, 0, 2308, 2309, 5, 866, 0, 0, 2309, 2314, 3, 118, 59, 0, 2310, 2311, 5, 868, 0, 0, 2311, 2313, 3, 118, 59, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2316, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2321, 5, 867, 0, 0, 2318, 2320, 3, 124, 62, 0, 2319, 2318, 1, 0, 0, 0, 2320, 2323, 1, 0, 0, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2335, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2324, 2325, 5, 866, 0, 0, 2325, 2330, 3, 122, 61, 0, 2326, 2327, 5, 868, 0, 0, 2327, 2329, 3, 122, 61, 0, 2328, 2326, 1, 0, 0, 0, 2329, 2332, 1, 0, 0, 0, 2330, 2328, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2330, 1, 0, 0, 0, 2333, 2334, 5, 867, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2324, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2392, 1, 0, 0, 0, 2337, 2338, 5, 130, 0, 0, 2338, 2339, 3, 682, 341, 0, 2339, 2340, 5, 189, 0, 0, 2340, 2341, 5, 80, 0, 0, 2341, 2342, 5, 866, 0, 0, 2342, 2347, 3, 120, 60, 0, 2343, 2344, 5, 868, 0, 0, 2344, 2346, 3, 120, 60, 0, 2345, 2343, 1, 0, 0, 0, 2346, 2349, 1, 0, 0, 0, 2347, 2345, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2350, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2350, 2354, 5, 867, 0, 0, 2351, 2353, 3, 124, 62, 0, 2352, 2351, 1, 0, 0, 0, 2353, 2356, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2368, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2358, 5, 866, 0, 0, 2358, 2363, 3, 122, 61, 0, 2359, 2360, 5, 868, 0, 0, 2360, 2362, 3, 122, 61, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2365, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2366, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2367, 5, 867, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2357, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2392, 1, 0, 0, 0, 2370, 2371, 5, 130, 0, 0, 2371, 2375, 3, 682, 341, 0, 2372, 2374, 3, 124, 62, 0, 2373, 2372, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2389, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 866, 0, 0, 2379, 2384, 3, 122, 61, 0, 2380, 2381, 5, 868, 0, 0, 2381, 2383, 3, 122, 61, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2387, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2387, 2388, 5, 867, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2378, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2392, 1, 0, 0, 0, 2391, 2245, 1, 0, 0, 0, 2391, 2279, 1, 0, 0, 0, 2391, 2304, 1, 0, 0, 0, 2391, 2337, 1, 0, 0, 0, 2391, 2370, 1, 0, 0, 0, 2392, 117, 1, 0, 0, 0, 2393, 2397, 3, 734, 367, 0, 2394, 2397, 3, 814, 407, 0, 2395, 2397, 5, 111, 0, 0, 2396, 2393, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2395, 1, 0, 0, 0, 2397, 119, 1, 0, 0, 0, 2398, 2399, 5, 866, 0, 0, 2399, 2402, 3, 118, 59, 0, 2400, 2401, 5, 868, 0, 0, 2401, 2403, 3, 118, 59, 0, 2402, 2400, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 5, 867, 0, 0, 2407, 121, 1, 0, 0, 0, 2408, 2409, 5, 652, 0, 0, 2409, 2413, 3, 716, 358, 0, 2410, 2412, 3, 124, 62, 0, 2411, 2410, 1, 0, 0, 0, 2412, 2415, 1, 0, 0, 0, 2413, 2411, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 123, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2418, 5, 42, 0, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2421, 5, 647, 0, 0, 2420, 2419, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2424, 5, 380, 0, 0, 2423, 2425, 5, 857, 0, 0, 2424, 2423, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2465, 3, 702, 351, 0, 2427, 2429, 5, 340, 0, 0, 2428, 2430, 5, 857, 0, 0, 2429, 2428, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2465, 5, 882, 0, 0, 2432, 2433, 5, 360, 0, 0, 2433, 2435, 5, 367, 0, 0, 2434, 2436, 5, 857, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2465, 5, 882, 0, 0, 2438, 2439, 5, 82, 0, 0, 2439, 2441, 5, 367, 0, 0, 2440, 2442, 5, 857, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2465, 5, 882, 0, 0, 2444, 2446, 5, 480, 0, 0, 2445, 2447, 5, 857, 0, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2465, 3, 722, 361, 0, 2449, 2451, 5, 490, 0, 0, 2450, 2452, 5, 857, 0, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2465, 3, 722, 361, 0, 2454, 2456, 5, 658, 0, 0, 2455, 2457, 5, 857, 0, 0, 2456, 2455, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2465, 3, 676, 338, 0, 2459, 2461, 5, 504, 0, 0, 2460, 2462, 5, 857, 0, 0, 2461, 2460, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 3, 716, 358, 0, 2464, 2417, 1, 0, 0, 0, 2464, 2427, 1, 0, 0, 0, 2464, 2432, 1, 0, 0, 0, 2464, 2438, 1, 0, 0, 0, 2464, 2444, 1, 0, 0, 0, 2464, 2449, 1, 0, 0, 0, 2464, 2454, 1, 0, 0, 0, 2464, 2459, 1, 0, 0, 0, 2465, 125, 1, 0, 0, 0, 2466, 2467, 5, 8, 0, 0, 2467, 2469, 7, 0, 0, 0, 2468, 2470, 3, 638, 319, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 1, 0, 0, 0, 2471, 2473, 3, 56, 28, 0, 2472, 2471, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2485, 1, 0, 0, 0, 2476, 2477, 5, 8, 0, 0, 2477, 2478, 7, 0, 0, 0, 2478, 2479, 3, 638, 319, 0, 2479, 2480, 5, 677, 0, 0, 2480, 2481, 5, 360, 0, 0, 2481, 2482, 5, 367, 0, 0, 2482, 2483, 5, 496, 0, 0, 2483, 2485, 1, 0, 0, 0, 2484, 2466, 1, 0, 0, 0, 2484, 2476, 1, 0, 0, 0, 2485, 127, 1, 0, 0, 0, 2486, 2488, 5, 8, 0, 0, 2487, 2489, 3, 62, 31, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 5, 385, 0, 0, 2491, 2495, 3, 712, 356, 0, 2492, 2493, 5, 119, 0, 0, 2493, 2494, 5, 590, 0, 0, 2494, 2496, 3, 64, 32, 0, 2495, 2492, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2503, 1, 0, 0, 0, 2497, 2498, 5, 119, 0, 0, 2498, 2500, 5, 343, 0, 0, 2499, 2501, 5, 114, 0, 0, 2500, 2499, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2504, 5, 541, 0, 0, 2503, 2497, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2508, 1, 0, 0, 0, 2505, 2506, 5, 141, 0, 0, 2506, 2507, 5, 176, 0, 0, 2507, 2509, 3, 712, 356, 0, 2508, 2505, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2511, 1, 0, 0, 0, 2510, 2512, 3, 72, 36, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2515, 1, 0, 0, 0, 2513, 2514, 5, 340, 0, 0, 2514, 2516, 5, 882, 0, 0, 2515, 2513, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2519, 1, 0, 0, 0, 2517, 2518, 5, 371, 0, 0, 2518, 2520, 3, 432, 216, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 129, 1, 0, 0, 0, 2521, 2522, 5, 8, 0, 0, 2522, 2523, 5, 409, 0, 0, 2523, 2527, 3, 642, 321, 0, 2524, 2526, 3, 82, 41, 0, 2525, 2524, 1, 0, 0, 0, 2526, 2529, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 131, 1, 0, 0, 0, 2529, 2527, 1, 0, 0, 0, 2530, 2531, 5, 8, 0, 0, 2531, 2532, 5, 433, 0, 0, 2532, 2533, 5, 585, 0, 0, 2533, 2534, 5, 801, 0, 0, 2534, 2535, 5, 453, 0, 0, 2535, 2536, 5, 92, 0, 0, 2536, 133, 1, 0, 0, 0, 2537, 2538, 5, 8, 0, 0, 2538, 2539, 5, 451, 0, 0, 2539, 2540, 5, 74, 0, 0, 2540, 2541, 3, 716, 358, 0, 2541, 2542, 5, 6, 0, 0, 2542, 2543, 5, 671, 0, 0, 2543, 2549, 5, 882, 0, 0, 2544, 2546, 5, 428, 0, 0, 2545, 2547, 5, 857, 0, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2550, 3, 724, 362, 0, 2549, 2544, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 5, 687, 0, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2556, 5, 380, 0, 0, 2555, 2557, 5, 857, 0, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2559, 3, 702, 351, 0, 2559, 135, 1, 0, 0, 0, 2560, 2561, 5, 8, 0, 0, 2561, 2562, 5, 132, 0, 0, 2562, 2566, 3, 712, 356, 0, 2563, 2565, 3, 82, 41, 0, 2564, 2563, 1, 0, 0, 0, 2565, 2568, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 137, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2569, 2570, 5, 8, 0, 0, 2570, 2571, 5, 592, 0, 0, 2571, 2572, 3, 716, 358, 0, 2572, 2573, 5, 518, 0, 0, 2573, 2574, 5, 866, 0, 0, 2574, 2579, 3, 84, 42, 0, 2575, 2576, 5, 868, 0, 0, 2576, 2578, 3, 84, 42, 0, 2577, 2575, 1, 0, 0, 0, 2578, 2581, 1, 0, 0, 0, 2579, 2577, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2582, 1, 0, 0, 0, 2581, 2579, 1, 0, 0, 0, 2582, 2583, 5, 867, 0, 0, 2583, 139, 1, 0, 0, 0, 2584, 2585, 5, 8, 0, 0, 2585, 2586, 5, 173, 0, 0, 2586, 2595, 3, 662, 331, 0, 2587, 2592, 3, 146, 73, 0, 2588, 2589, 5, 868, 0, 0, 2589, 2591, 3, 146, 73, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2594, 1, 0, 0, 0, 2592, 2590, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2596, 1, 0, 0, 0, 2594, 2592, 1, 0, 0, 0, 2595, 2587, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2604, 1, 0, 0, 0, 2597, 2601, 3, 148, 74, 0, 2598, 2600, 3, 148, 74, 0, 2599, 2598, 1, 0, 0, 0, 2600, 2603, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2604, 2597, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 141, 1, 0, 0, 0, 2606, 2608, 5, 8, 0, 0, 2607, 2609, 5, 180, 0, 0, 2608, 2607, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2611, 5, 658, 0, 0, 2611, 2612, 3, 676, 338, 0, 2612, 2613, 7, 35, 0, 0, 2613, 2614, 5, 361, 0, 0, 2614, 2620, 5, 882, 0, 0, 2615, 2617, 5, 428, 0, 0, 2616, 2618, 5, 857, 0, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2621, 3, 724, 362, 0, 2620, 2615, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2623, 1, 0, 0, 0, 2622, 2624, 5, 687, 0, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2628, 1, 0, 0, 0, 2625, 2626, 5, 141, 0, 0, 2626, 2627, 5, 176, 0, 0, 2627, 2629, 3, 674, 337, 0, 2628, 2625, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2635, 1, 0, 0, 0, 2630, 2632, 5, 314, 0, 0, 2631, 2633, 5, 857, 0, 0, 2632, 2631, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 3, 724, 362, 0, 2635, 2630, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2639, 1, 0, 0, 0, 2637, 2638, 5, 155, 0, 0, 2638, 2640, 7, 36, 0, 0, 2639, 2637, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2646, 1, 0, 0, 0, 2641, 2643, 5, 376, 0, 0, 2642, 2644, 5, 857, 0, 0, 2643, 2642, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2647, 5, 882, 0, 0, 2646, 2641, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2653, 1, 0, 0, 0, 2648, 2650, 5, 380, 0, 0, 2649, 2651, 5, 857, 0, 0, 2650, 2649, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, 3, 702, 351, 0, 2653, 2648, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 2660, 1, 0, 0, 0, 2655, 2657, 5, 825, 0, 0, 2656, 2658, 5, 857, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 5, 882, 0, 0, 2660, 2655, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 143, 1, 0, 0, 0, 2662, 2666, 5, 8, 0, 0, 2663, 2664, 5, 308, 0, 0, 2664, 2665, 5, 857, 0, 0, 2665, 2667, 7, 11, 0, 0, 2666, 2663, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2669, 1, 0, 0, 0, 2668, 2670, 3, 62, 31, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2674, 1, 0, 0, 0, 2671, 2672, 5, 162, 0, 0, 2672, 2673, 5, 591, 0, 0, 2673, 2675, 7, 12, 0, 0, 2674, 2671, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 5, 684, 0, 0, 2677, 2682, 3, 646, 323, 0, 2678, 2679, 5, 866, 0, 0, 2679, 2680, 3, 670, 335, 0, 2680, 2681, 5, 867, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2678, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 5, 13, 0, 0, 2685, 2692, 3, 210, 105, 0, 2686, 2688, 5, 194, 0, 0, 2687, 2689, 7, 13, 0, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 5, 27, 0, 0, 2691, 2693, 5, 121, 0, 0, 2692, 2686, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 145, 1, 0, 0, 0, 2694, 2701, 3, 104, 52, 0, 2695, 2697, 5, 868, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2700, 3, 104, 52, 0, 2699, 2696, 1, 0, 0, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2959, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2706, 5, 6, 0, 0, 2705, 2707, 5, 29, 0, 0, 2706, 2705, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 3, 672, 336, 0, 2709, 2713, 3, 94, 47, 0, 2710, 2714, 5, 402, 0, 0, 2711, 2712, 5, 306, 0, 0, 2712, 2714, 3, 672, 336, 0, 2713, 2710, 1, 0, 0, 0, 2713, 2711, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2959, 1, 0, 0, 0, 2715, 2717, 5, 6, 0, 0, 2716, 2718, 5, 29, 0, 0, 2717, 2716, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2720, 5, 866, 0, 0, 2720, 2721, 3, 672, 336, 0, 2721, 2728, 3, 94, 47, 0, 2722, 2723, 5, 868, 0, 0, 2723, 2724, 3, 672, 336, 0, 2724, 2725, 3, 94, 47, 0, 2725, 2727, 1, 0, 0, 0, 2726, 2722, 1, 0, 0, 0, 2727, 2730, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 2731, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2731, 2732, 5, 867, 0, 0, 2732, 2959, 1, 0, 0, 0, 2733, 2734, 5, 6, 0, 0, 2734, 2736, 7, 19, 0, 0, 2735, 2737, 3, 652, 326, 0, 2736, 2735, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2739, 1, 0, 0, 0, 2738, 2740, 3, 74, 37, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2745, 3, 748, 374, 0, 2742, 2744, 3, 76, 38, 0, 2743, 2742, 1, 0, 0, 0, 2744, 2747, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2959, 1, 0, 0, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2749, 5, 6, 0, 0, 2749, 2751, 7, 20, 0, 0, 2750, 2752, 7, 19, 0, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2754, 1, 0, 0, 0, 2753, 2755, 3, 652, 326, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2760, 3, 748, 374, 0, 2757, 2759, 3, 76, 38, 0, 2758, 2757, 1, 0, 0, 0, 2759, 2762, 1, 0, 0, 0, 2760, 2758, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2959, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2763, 2768, 5, 6, 0, 0, 2764, 2766, 5, 31, 0, 0, 2765, 2767, 3, 716, 358, 0, 2766, 2765, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2764, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 5, 131, 0, 0, 2771, 2773, 5, 92, 0, 0, 2772, 2774, 3, 74, 37, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2779, 3, 748, 374, 0, 2776, 2778, 3, 76, 38, 0, 2777, 2776, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2959, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2787, 5, 6, 0, 0, 2783, 2785, 5, 31, 0, 0, 2784, 2786, 3, 716, 358, 0, 2785, 2784, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2788, 1, 0, 0, 0, 2787, 2783, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2791, 5, 182, 0, 0, 2790, 2792, 7, 19, 0, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2794, 1, 0, 0, 0, 2793, 2795, 3, 652, 326, 0, 2794, 2793, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 1, 0, 0, 0, 2796, 2798, 3, 74, 37, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2803, 3, 748, 374, 0, 2800, 2802, 3, 76, 38, 0, 2801, 2800, 1, 0, 0, 0, 2802, 2805, 1, 0, 0, 0, 2803, 2801, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2959, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2806, 2811, 5, 6, 0, 0, 2807, 2809, 5, 31, 0, 0, 2808, 2810, 3, 716, 358, 0, 2809, 2808, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 2812, 1, 0, 0, 0, 2811, 2807, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2814, 5, 67, 0, 0, 2814, 2816, 5, 92, 0, 0, 2815, 2817, 3, 652, 326, 0, 2816, 2815, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2819, 3, 748, 374, 0, 2819, 2820, 3, 98, 49, 0, 2820, 2959, 1, 0, 0, 0, 2821, 2823, 5, 6, 0, 0, 2822, 2824, 3, 90, 45, 0, 2823, 2822, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2959, 1, 0, 0, 0, 2825, 2826, 5, 51, 0, 0, 2826, 2827, 7, 37, 0, 0, 2827, 2959, 3, 716, 358, 0, 2828, 2829, 5, 8, 0, 0, 2829, 2830, 7, 37, 0, 0, 2830, 2832, 3, 716, 358, 0, 2831, 2833, 5, 114, 0, 0, 2832, 2831, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2835, 1, 0, 0, 0, 2834, 2836, 5, 57, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2959, 1, 0, 0, 0, 2837, 2839, 5, 308, 0, 0, 2838, 2840, 5, 857, 0, 0, 2839, 2838, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2959, 7, 38, 0, 0, 2842, 2844, 5, 8, 0, 0, 2843, 2845, 5, 29, 0, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2854, 3, 672, 336, 0, 2847, 2848, 5, 155, 0, 0, 2848, 2849, 5, 42, 0, 0, 2849, 2855, 3, 764, 382, 0, 2850, 2851, 5, 155, 0, 0, 2851, 2855, 7, 17, 0, 0, 2852, 2853, 5, 51, 0, 0, 2853, 2855, 5, 42, 0, 0, 2854, 2847, 1, 0, 0, 0, 2854, 2850, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2855, 2959, 1, 0, 0, 0, 2856, 2857, 5, 8, 0, 0, 2857, 2858, 5, 82, 0, 0, 2858, 2859, 3, 652, 326, 0, 2859, 2860, 7, 17, 0, 0, 2860, 2959, 1, 0, 0, 0, 2861, 2863, 5, 25, 0, 0, 2862, 2864, 5, 29, 0, 0, 2863, 2862, 1, 0, 0, 0, 2863, 2864, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2866, 3, 672, 336, 0, 2866, 2867, 3, 668, 334, 0, 2867, 2871, 3, 94, 47, 0, 2868, 2872, 5, 402, 0, 0, 2869, 2870, 5, 306, 0, 0, 2870, 2872, 3, 672, 336, 0, 2871, 2868, 1, 0, 0, 0, 2871, 2869, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2959, 1, 0, 0, 0, 2873, 2875, 5, 42, 0, 0, 2874, 2873, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2877, 5, 26, 0, 0, 2877, 2878, 5, 155, 0, 0, 2878, 2879, 5, 857, 0, 0, 2879, 2885, 3, 698, 349, 0, 2880, 2882, 5, 28, 0, 0, 2881, 2883, 5, 857, 0, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2886, 3, 700, 350, 0, 2885, 2880, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2959, 1, 0, 0, 0, 2887, 2888, 5, 33, 0, 0, 2888, 2892, 5, 176, 0, 0, 2889, 2893, 5, 823, 0, 0, 2890, 2891, 5, 26, 0, 0, 2891, 2893, 5, 155, 0, 0, 2892, 2889, 1, 0, 0, 0, 2892, 2890, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2897, 3, 698, 349, 0, 2895, 2896, 5, 28, 0, 0, 2896, 2898, 3, 700, 350, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2959, 1, 0, 0, 0, 2899, 2900, 7, 39, 0, 0, 2900, 2959, 5, 93, 0, 0, 2901, 2902, 7, 40, 0, 0, 2902, 2959, 5, 658, 0, 0, 2903, 2905, 5, 51, 0, 0, 2904, 2906, 5, 29, 0, 0, 2905, 2904, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2959, 3, 672, 336, 0, 2908, 2909, 5, 51, 0, 0, 2909, 2910, 7, 19, 0, 0, 2910, 2959, 3, 652, 326, 0, 2911, 2912, 5, 51, 0, 0, 2912, 2913, 5, 131, 0, 0, 2913, 2959, 5, 92, 0, 0, 2914, 2915, 5, 51, 0, 0, 2915, 2916, 5, 67, 0, 0, 2916, 2917, 5, 92, 0, 0, 2917, 2959, 3, 716, 358, 0, 2918, 2959, 5, 66, 0, 0, 2919, 2921, 5, 104, 0, 0, 2920, 2922, 5, 857, 0, 0, 2921, 2920, 1, 0, 0, 0, 2921, 2922, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2959, 7, 4, 0, 0, 2924, 2926, 5, 492, 0, 0, 2925, 2927, 5, 29, 0, 0, 2926, 2925, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2929, 3, 672, 336, 0, 2929, 2933, 3, 94, 47, 0, 2930, 2934, 5, 402, 0, 0, 2931, 2932, 5, 306, 0, 0, 2932, 2934, 3, 672, 336, 0, 2933, 2930, 1, 0, 0, 0, 2933, 2931, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2959, 1, 0, 0, 0, 2935, 2936, 5, 125, 0, 0, 2936, 2937, 5, 20, 0, 0, 2937, 2959, 3, 670, 335, 0, 2938, 2939, 5, 141, 0, 0, 2939, 2940, 5, 29, 0, 0, 2940, 2941, 3, 672, 336, 0, 2941, 2942, 5, 176, 0, 0, 2942, 2943, 3, 668, 334, 0, 2943, 2959, 1, 0, 0, 0, 2944, 2945, 5, 141, 0, 0, 2945, 2946, 7, 19, 0, 0, 2946, 2947, 3, 652, 326, 0, 2947, 2948, 5, 176, 0, 0, 2948, 2949, 3, 648, 324, 0, 2949, 2959, 1, 0, 0, 0, 2950, 2952, 5, 141, 0, 0, 2951, 2953, 7, 41, 0, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2959, 3, 658, 329, 0, 2955, 2956, 7, 42, 0, 0, 2956, 2959, 5, 681, 0, 0, 2957, 2959, 3, 148, 74, 0, 2958, 2694, 1, 0, 0, 0, 2958, 2704, 1, 0, 0, 0, 2958, 2715, 1, 0, 0, 0, 2958, 2733, 1, 0, 0, 0, 2958, 2748, 1, 0, 0, 0, 2958, 2763, 1, 0, 0, 0, 2958, 2782, 1, 0, 0, 0, 2958, 2806, 1, 0, 0, 0, 2958, 2821, 1, 0, 0, 0, 2958, 2825, 1, 0, 0, 0, 2958, 2828, 1, 0, 0, 0, 2958, 2837, 1, 0, 0, 0, 2958, 2842, 1, 0, 0, 0, 2958, 2856, 1, 0, 0, 0, 2958, 2861, 1, 0, 0, 0, 2958, 2874, 1, 0, 0, 0, 2958, 2887, 1, 0, 0, 0, 2958, 2899, 1, 0, 0, 0, 2958, 2901, 1, 0, 0, 0, 2958, 2903, 1, 0, 0, 0, 2958, 2908, 1, 0, 0, 0, 2958, 2911, 1, 0, 0, 0, 2958, 2914, 1, 0, 0, 0, 2958, 2918, 1, 0, 0, 0, 2958, 2919, 1, 0, 0, 0, 2958, 2924, 1, 0, 0, 0, 2958, 2935, 1, 0, 0, 0, 2958, 2938, 1, 0, 0, 0, 2958, 2944, 1, 0, 0, 0, 2958, 2950, 1, 0, 0, 0, 2958, 2955, 1, 0, 0, 0, 2958, 2957, 1, 0, 0, 0, 2959, 147, 1, 0, 0, 0, 2960, 2961, 5, 6, 0, 0, 2961, 2962, 5, 130, 0, 0, 2962, 2963, 5, 866, 0, 0, 2963, 2968, 3, 116, 58, 0, 2964, 2965, 5, 868, 0, 0, 2965, 2967, 3, 116, 58, 0, 2966, 2964, 1, 0, 0, 0, 2967, 2970, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2971, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2972, 5, 867, 0, 0, 2972, 3059, 1, 0, 0, 0, 2973, 2974, 5, 51, 0, 0, 2974, 2975, 5, 130, 0, 0, 2975, 3059, 3, 680, 340, 0, 2976, 2977, 5, 369, 0, 0, 2977, 2980, 5, 130, 0, 0, 2978, 2981, 3, 680, 340, 0, 2979, 2981, 5, 7, 0, 0, 2980, 2978, 1, 0, 0, 0, 2980, 2979, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 3059, 5, 658, 0, 0, 2983, 2984, 5, 425, 0, 0, 2984, 2987, 5, 130, 0, 0, 2985, 2988, 3, 680, 340, 0, 2986, 2988, 5, 7, 0, 0, 2987, 2985, 1, 0, 0, 0, 2987, 2986, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 3059, 5, 658, 0, 0, 2990, 2991, 5, 668, 0, 0, 2991, 2994, 5, 130, 0, 0, 2992, 2995, 3, 680, 340, 0, 2993, 2995, 5, 7, 0, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2993, 1, 0, 0, 0, 2995, 3059, 1, 0, 0, 0, 2996, 2997, 5, 335, 0, 0, 2997, 2998, 5, 130, 0, 0, 2998, 3059, 3, 722, 361, 0, 2999, 3000, 5, 561, 0, 0, 3000, 3001, 5, 130, 0, 0, 3001, 3002, 3, 680, 340, 0, 3002, 3003, 5, 88, 0, 0, 3003, 3004, 5, 866, 0, 0, 3004, 3009, 3, 116, 58, 0, 3005, 3006, 5, 868, 0, 0, 3006, 3008, 3, 116, 58, 0, 3007, 3005, 1, 0, 0, 0, 3008, 3011, 1, 0, 0, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3009, 1, 0, 0, 0, 3012, 3013, 5, 867, 0, 0, 3013, 3059, 1, 0, 0, 0, 3014, 3015, 5, 388, 0, 0, 3015, 3016, 5, 130, 0, 0, 3016, 3017, 3, 682, 341, 0, 3017, 3018, 5, 194, 0, 0, 3018, 3019, 5, 173, 0, 0, 3019, 3022, 3, 662, 331, 0, 3020, 3021, 7, 42, 0, 0, 3021, 3023, 5, 681, 0, 0, 3022, 3020, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3059, 1, 0, 0, 0, 3024, 3025, 5, 10, 0, 0, 3025, 3028, 5, 130, 0, 0, 3026, 3029, 3, 680, 340, 0, 3027, 3029, 5, 7, 0, 0, 3028, 3026, 1, 0, 0, 0, 3028, 3027, 1, 0, 0, 0, 3029, 3059, 1, 0, 0, 0, 3030, 3031, 5, 27, 0, 0, 3031, 3034, 5, 130, 0, 0, 3032, 3035, 3, 680, 340, 0, 3033, 3035, 5, 7, 0, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 3059, 1, 0, 0, 0, 3036, 3037, 5, 120, 0, 0, 3037, 3040, 5, 130, 0, 0, 3038, 3041, 3, 680, 340, 0, 3039, 3041, 5, 7, 0, 0, 3040, 3038, 1, 0, 0, 0, 3040, 3039, 1, 0, 0, 0, 3041, 3059, 1, 0, 0, 0, 3042, 3043, 5, 550, 0, 0, 3043, 3046, 5, 130, 0, 0, 3044, 3047, 3, 680, 340, 0, 3045, 3047, 5, 7, 0, 0, 3046, 3044, 1, 0, 0, 0, 3046, 3045, 1, 0, 0, 0, 3047, 3059, 1, 0, 0, 0, 3048, 3049, 5, 562, 0, 0, 3049, 3052, 5, 130, 0, 0, 3050, 3053, 3, 680, 340, 0, 3051, 3053, 5, 7, 0, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3059, 1, 0, 0, 0, 3054, 3055, 5, 560, 0, 0, 3055, 3059, 5, 527, 0, 0, 3056, 3057, 5, 677, 0, 0, 3057, 3059, 5, 527, 0, 0, 3058, 2960, 1, 0, 0, 0, 3058, 2973, 1, 0, 0, 0, 3058, 2976, 1, 0, 0, 0, 3058, 2983, 1, 0, 0, 0, 3058, 2990, 1, 0, 0, 0, 3058, 2996, 1, 0, 0, 0, 3058, 2999, 1, 0, 0, 0, 3058, 3014, 1, 0, 0, 0, 3058, 3024, 1, 0, 0, 0, 3058, 3030, 1, 0, 0, 0, 3058, 3036, 1, 0, 0, 0, 3058, 3042, 1, 0, 0, 0, 3058, 3048, 1, 0, 0, 0, 3058, 3054, 1, 0, 0, 0, 3058, 3056, 1, 0, 0, 0, 3059, 149, 1, 0, 0, 0, 3060, 3061, 5, 51, 0, 0, 3061, 3063, 7, 0, 0, 0, 3062, 3064, 3, 768, 384, 0, 3063, 3062, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3066, 3, 638, 319, 0, 3066, 151, 1, 0, 0, 0, 3067, 3068, 5, 51, 0, 0, 3068, 3070, 5, 385, 0, 0, 3069, 3071, 3, 768, 384, 0, 3070, 3069, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 3, 712, 356, 0, 3073, 153, 1, 0, 0, 0, 3074, 3075, 5, 51, 0, 0, 3075, 3077, 5, 82, 0, 0, 3076, 3078, 7, 1, 0, 0, 3077, 3076, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3080, 3, 652, 326, 0, 3080, 3081, 5, 119, 0, 0, 3081, 3094, 3, 662, 331, 0, 3082, 3084, 5, 308, 0, 0, 3083, 3085, 5, 857, 0, 0, 3084, 3083, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3093, 7, 3, 0, 0, 3087, 3089, 5, 104, 0, 0, 3088, 3090, 5, 857, 0, 0, 3089, 3088, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3093, 7, 4, 0, 0, 3092, 3082, 1, 0, 0, 0, 3092, 3087, 1, 0, 0, 0, 3093, 3096, 1, 0, 0, 0, 3094, 3092, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 155, 1, 0, 0, 0, 3096, 3094, 1, 0, 0, 0, 3097, 3098, 5, 51, 0, 0, 3098, 3099, 5, 451, 0, 0, 3099, 3100, 5, 74, 0, 0, 3100, 3101, 3, 716, 358, 0, 3101, 3103, 5, 380, 0, 0, 3102, 3104, 5, 857, 0, 0, 3103, 3102, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3106, 3, 702, 351, 0, 3106, 157, 1, 0, 0, 0, 3107, 3108, 5, 51, 0, 0, 3108, 3110, 5, 132, 0, 0, 3109, 3111, 3, 768, 384, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 3, 712, 356, 0, 3113, 159, 1, 0, 0, 0, 3114, 3115, 5, 51, 0, 0, 3115, 3117, 5, 409, 0, 0, 3116, 3118, 3, 768, 384, 0, 3117, 3116, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 3, 642, 321, 0, 3120, 161, 1, 0, 0, 0, 3121, 3122, 5, 51, 0, 0, 3122, 3124, 5, 592, 0, 0, 3123, 3125, 3, 768, 384, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3127, 3, 716, 358, 0, 3127, 163, 1, 0, 0, 0, 3128, 3129, 5, 51, 0, 0, 3129, 3130, 5, 161, 0, 0, 3130, 3131, 5, 137, 0, 0, 3131, 3133, 5, 835, 0, 0, 3132, 3134, 3, 768, 384, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 5, 883, 0, 0, 3136, 165, 1, 0, 0, 0, 3137, 3139, 5, 51, 0, 0, 3138, 3140, 5, 660, 0, 0, 3139, 3138, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3143, 5, 173, 0, 0, 3142, 3144, 3, 768, 384, 0, 3143, 3142, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3147, 3, 660, 330, 0, 3146, 3148, 7, 43, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 167, 1, 0, 0, 0, 3149, 3151, 5, 51, 0, 0, 3150, 3152, 5, 180, 0, 0, 3151, 3150, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 5, 658, 0, 0, 3154, 3160, 3, 676, 338, 0, 3155, 3157, 5, 380, 0, 0, 3156, 3158, 5, 857, 0, 0, 3157, 3156, 1, 0, 0, 0, 3157, 3158, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3161, 3, 702, 351, 0, 3160, 3155, 1, 0, 0, 0, 3160, 3161, 1, 0, 0, 0, 3161, 169, 1, 0, 0, 0, 3162, 3163, 5, 51, 0, 0, 3163, 3165, 5, 178, 0, 0, 3164, 3166, 3, 768, 384, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3168, 3, 712, 356, 0, 3168, 171, 1, 0, 0, 0, 3169, 3170, 5, 51, 0, 0, 3170, 3172, 5, 684, 0, 0, 3171, 3173, 3, 768, 384, 0, 3172, 3171, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3179, 3, 646, 323, 0, 3175, 3176, 5, 868, 0, 0, 3176, 3178, 3, 646, 323, 0, 3177, 3175, 1, 0, 0, 0, 3178, 3181, 1, 0, 0, 0, 3179, 3177, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3183, 1, 0, 0, 0, 3181, 3179, 1, 0, 0, 0, 3182, 3184, 7, 43, 0, 0, 3183, 3182, 1, 0, 0, 0, 3183, 3184, 1, 0, 0, 0, 3184, 173, 1, 0, 0, 0, 3185, 3186, 5, 51, 0, 0, 3186, 3188, 5, 582, 0, 0, 3187, 3189, 3, 768, 384, 0, 3188, 3187, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3191, 3, 664, 332, 0, 3191, 175, 1, 0, 0, 0, 3192, 3193, 5, 155, 0, 0, 3193, 3194, 5, 42, 0, 0, 3194, 3198, 5, 582, 0, 0, 3195, 3199, 5, 505, 0, 0, 3196, 3199, 5, 7, 0, 0, 3197, 3199, 3, 664, 332, 0, 3198, 3195, 1, 0, 0, 0, 3198, 3196, 1, 0, 0, 0, 3198, 3197, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 5, 176, 0, 0, 3201, 3206, 3, 666, 333, 0, 3202, 3203, 5, 868, 0, 0, 3203, 3205, 3, 666, 333, 0, 3204, 3202, 1, 0, 0, 0, 3205, 3208, 1, 0, 0, 0, 3206, 3204, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3213, 1, 0, 0, 0, 3208, 3206, 1, 0, 0, 0, 3209, 3210, 5, 155, 0, 0, 3210, 3211, 5, 582, 0, 0, 3211, 3213, 3, 478, 239, 0, 3212, 3192, 1, 0, 0, 0, 3212, 3209, 1, 0, 0, 0, 3213, 177, 1, 0, 0, 0, 3214, 3215, 5, 141, 0, 0, 3215, 3216, 5, 173, 0, 0, 3216, 3221, 3, 180, 90, 0, 3217, 3218, 5, 868, 0, 0, 3218, 3220, 3, 180, 90, 0, 3219, 3217, 1, 0, 0, 0, 3220, 3223, 1, 0, 0, 0, 3221, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 179, 1, 0, 0, 0, 3223, 3221, 1, 0, 0, 0, 3224, 3225, 3, 662, 331, 0, 3225, 3226, 5, 176, 0, 0, 3226, 3227, 3, 658, 329, 0, 3227, 181, 1, 0, 0, 0, 3228, 3230, 5, 668, 0, 0, 3229, 3231, 5, 173, 0, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 3, 662, 331, 0, 3233, 183, 1, 0, 0, 0, 3234, 3235, 5, 21, 0, 0, 3235, 3242, 3, 712, 356, 0, 3236, 3239, 5, 866, 0, 0, 3237, 3240, 3, 758, 379, 0, 3238, 3240, 3, 750, 375, 0, 3239, 3237, 1, 0, 0, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 5, 867, 0, 0, 3242, 3236, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 185, 1, 0, 0, 0, 3244, 3247, 3, 240, 120, 0, 3245, 3247, 3, 242, 121, 0, 3246, 3244, 1, 0, 0, 0, 3246, 3245, 1, 0, 0, 0, 3247, 187, 1, 0, 0, 0, 3248, 3249, 5, 371, 0, 0, 3249, 3250, 3, 750, 375, 0, 3250, 189, 1, 0, 0, 0, 3251, 3256, 3, 244, 122, 0, 3252, 3256, 3, 246, 123, 0, 3253, 3256, 3, 248, 124, 0, 3254, 3256, 3, 250, 125, 0, 3255, 3251, 1, 0, 0, 0, 3255, 3252, 1, 0, 0, 0, 3255, 3253, 1, 0, 0, 0, 3255, 3254, 1, 0, 0, 0, 3256, 191, 1, 0, 0, 0, 3257, 3259, 5, 86, 0, 0, 3258, 3260, 7, 44, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 1, 0, 0, 0, 3261, 3263, 5, 79, 0, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3266, 5, 88, 0, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3274, 3, 662, 331, 0, 3268, 3269, 5, 130, 0, 0, 3269, 3271, 5, 866, 0, 0, 3270, 3272, 3, 680, 340, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3275, 5, 867, 0, 0, 3274, 3268, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3287, 1, 0, 0, 0, 3276, 3278, 3, 270, 135, 0, 3277, 3276, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3281, 1, 0, 0, 0, 3279, 3282, 3, 752, 376, 0, 3280, 3282, 3, 196, 98, 0, 3281, 3279, 1, 0, 0, 0, 3281, 3280, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3285, 3, 194, 97, 0, 3284, 3283, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3288, 3, 232, 116, 0, 3287, 3277, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 194, 97, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3304, 1, 0, 0, 0, 3292, 3293, 5, 119, 0, 0, 3293, 3294, 5, 373, 0, 0, 3294, 3295, 5, 92, 0, 0, 3295, 3296, 5, 185, 0, 0, 3296, 3301, 3, 234, 117, 0, 3297, 3298, 5, 868, 0, 0, 3298, 3300, 3, 234, 117, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3303, 1, 0, 0, 0, 3301, 3299, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3305, 1, 0, 0, 0, 3303, 3301, 1, 0, 0, 0, 3304, 3292, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 193, 1, 0, 0, 0, 3306, 3307, 5, 13, 0, 0, 3307, 3309, 3, 716, 358, 0, 3308, 3310, 3, 270, 135, 0, 3309, 3308, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 195, 1, 0, 0, 0, 3311, 3316, 3, 210, 105, 0, 3312, 3313, 5, 173, 0, 0, 3313, 3316, 3, 662, 331, 0, 3314, 3316, 3, 230, 115, 0, 3315, 3311, 1, 0, 0, 0, 3315, 3312, 1, 0, 0, 0, 3315, 3314, 1, 0, 0, 0, 3316, 197, 1, 0, 0, 0, 3317, 3323, 3, 200, 100, 0, 3318, 3320, 5, 828, 0, 0, 3319, 3321, 7, 45, 0, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3322, 1, 0, 0, 0, 3322, 3324, 3, 200, 100, 0, 3323, 3318, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3323, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 199, 1, 0, 0, 0, 3327, 3329, 5, 866, 0, 0, 3328, 3327, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 3, 282, 141, 0, 3331, 3333, 5, 867, 0, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 201, 1, 0, 0, 0, 3334, 3335, 5, 103, 0, 0, 3335, 3337, 5, 360, 0, 0, 3336, 3338, 7, 46, 0, 0, 3337, 3336, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3340, 1, 0, 0, 0, 3339, 3341, 5, 450, 0, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 5, 83, 0, 0, 3343, 3345, 5, 882, 0, 0, 3344, 3346, 7, 7, 0, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3348, 5, 88, 0, 0, 3348, 3349, 5, 173, 0, 0, 3349, 3355, 3, 662, 331, 0, 3350, 3351, 5, 130, 0, 0, 3351, 3352, 5, 866, 0, 0, 3352, 3353, 3, 680, 340, 0, 3353, 3354, 5, 867, 0, 0, 3354, 3356, 1, 0, 0, 0, 3355, 3350, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3360, 1, 0, 0, 0, 3357, 3358, 5, 26, 0, 0, 3358, 3359, 5, 155, 0, 0, 3359, 3361, 3, 698, 349, 0, 3360, 3357, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 3368, 1, 0, 0, 0, 3362, 3364, 7, 47, 0, 0, 3363, 3365, 3, 314, 157, 0, 3364, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3364, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3369, 1, 0, 0, 0, 3368, 3362, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3376, 1, 0, 0, 0, 3370, 3372, 5, 102, 0, 0, 3371, 3373, 3, 316, 158, 0, 3372, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3377, 1, 0, 0, 0, 3376, 3370, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3382, 1, 0, 0, 0, 3378, 3379, 5, 79, 0, 0, 3379, 3380, 3, 722, 361, 0, 3380, 3381, 7, 48, 0, 0, 3381, 3383, 1, 0, 0, 0, 3382, 3378, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3395, 1, 0, 0, 0, 3384, 3385, 5, 866, 0, 0, 3385, 3390, 3, 236, 118, 0, 3386, 3387, 5, 868, 0, 0, 3387, 3389, 3, 236, 118, 0, 3388, 3386, 1, 0, 0, 0, 3389, 3392, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3393, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3393, 3394, 5, 867, 0, 0, 3394, 3396, 1, 0, 0, 0, 3395, 3384, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3406, 1, 0, 0, 0, 3397, 3398, 5, 155, 0, 0, 3398, 3403, 3, 234, 117, 0, 3399, 3400, 5, 868, 0, 0, 3400, 3402, 3, 234, 117, 0, 3401, 3399, 1, 0, 0, 0, 3402, 3405, 1, 0, 0, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3407, 1, 0, 0, 0, 3405, 3403, 1, 0, 0, 0, 3406, 3397, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 203, 1, 0, 0, 0, 3408, 3409, 5, 103, 0, 0, 3409, 3411, 5, 695, 0, 0, 3410, 3412, 7, 46, 0, 0, 3411, 3410, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3414, 1, 0, 0, 0, 3413, 3415, 5, 450, 0, 0, 3414, 3413, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3417, 5, 83, 0, 0, 3417, 3419, 5, 882, 0, 0, 3418, 3420, 7, 7, 0, 0, 3419, 3418, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3422, 5, 88, 0, 0, 3422, 3423, 5, 173, 0, 0, 3423, 3427, 3, 662, 331, 0, 3424, 3425, 5, 26, 0, 0, 3425, 3426, 5, 155, 0, 0, 3426, 3428, 3, 698, 349, 0, 3427, 3424, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3439, 1, 0, 0, 0, 3429, 3430, 5, 587, 0, 0, 3430, 3431, 5, 423, 0, 0, 3431, 3433, 5, 20, 0, 0, 3432, 3434, 5, 859, 0, 0, 3433, 3432, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3437, 5, 882, 0, 0, 3436, 3438, 5, 858, 0, 0, 3437, 3436, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3440, 1, 0, 0, 0, 3439, 3429, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3445, 1, 0, 0, 0, 3441, 3442, 5, 79, 0, 0, 3442, 3443, 3, 722, 361, 0, 3443, 3444, 7, 48, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3441, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3458, 1, 0, 0, 0, 3447, 3448, 5, 866, 0, 0, 3448, 3453, 3, 236, 118, 0, 3449, 3450, 5, 868, 0, 0, 3450, 3452, 3, 236, 118, 0, 3451, 3449, 1, 0, 0, 0, 3452, 3455, 1, 0, 0, 0, 3453, 3451, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3456, 1, 0, 0, 0, 3455, 3453, 1, 0, 0, 0, 3456, 3457, 5, 867, 0, 0, 3457, 3459, 1, 0, 0, 0, 3458, 3447, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3469, 1, 0, 0, 0, 3460, 3461, 5, 155, 0, 0, 3461, 3466, 3, 234, 117, 0, 3462, 3463, 5, 868, 0, 0, 3463, 3465, 3, 234, 117, 0, 3464, 3462, 1, 0, 0, 0, 3465, 3468, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3470, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3469, 3460, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 205, 1, 0, 0, 0, 3471, 3472, 5, 866, 0, 0, 3472, 3474, 3, 224, 112, 0, 3473, 3475, 3, 258, 129, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3478, 3, 328, 164, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3481, 5, 867, 0, 0, 3480, 3482, 3, 258, 129, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3485, 3, 328, 164, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3488, 3, 312, 156, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 207, 1, 0, 0, 0, 3489, 3491, 5, 143, 0, 0, 3490, 3492, 7, 49, 0, 0, 3491, 3490, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3494, 1, 0, 0, 0, 3493, 3495, 5, 88, 0, 0, 3494, 3493, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3502, 3, 662, 331, 0, 3497, 3498, 5, 130, 0, 0, 3498, 3499, 5, 866, 0, 0, 3499, 3500, 3, 680, 340, 0, 3500, 3501, 5, 867, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3497, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3512, 1, 0, 0, 0, 3504, 3505, 5, 866, 0, 0, 3505, 3506, 3, 670, 335, 0, 3506, 3507, 5, 867, 0, 0, 3507, 3509, 1, 0, 0, 0, 3508, 3504, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3513, 3, 228, 114, 0, 3511, 3513, 3, 232, 116, 0, 3512, 3508, 1, 0, 0, 0, 3512, 3511, 1, 0, 0, 0, 3513, 209, 1, 0, 0, 0, 3514, 3518, 3, 282, 141, 0, 3515, 3517, 3, 284, 142, 0, 3516, 3515, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3529, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3523, 5, 181, 0, 0, 3522, 3524, 7, 45, 0, 0, 3523, 3522, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3528, 3, 282, 141, 0, 3526, 3528, 3, 280, 140, 0, 3527, 3525, 1, 0, 0, 0, 3527, 3526, 1, 0, 0, 0, 3528, 3530, 1, 0, 0, 0, 3529, 3521, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3535, 1, 0, 0, 0, 3531, 3532, 5, 868, 0, 0, 3532, 3534, 3, 286, 143, 0, 3533, 3531, 1, 0, 0, 0, 3534, 3537, 1, 0, 0, 0, 3535, 3533, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3539, 1, 0, 0, 0, 3537, 3535, 1, 0, 0, 0, 3538, 3540, 3, 258, 129, 0, 3539, 3538, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3542, 1, 0, 0, 0, 3541, 3543, 3, 328, 164, 0, 3542, 3541, 1, 0, 0, 0, 3542, 3543, 1, 0, 0, 0, 3543, 3545, 1, 0, 0, 0, 3544, 3546, 3, 238, 119, 0, 3545, 3544, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3548, 1, 0, 0, 0, 3547, 3549, 3, 312, 156, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3574, 1, 0, 0, 0, 3550, 3554, 3, 280, 140, 0, 3551, 3553, 3, 284, 142, 0, 3552, 3551, 1, 0, 0, 0, 3553, 3556, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3562, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3557, 3559, 5, 181, 0, 0, 3558, 3560, 7, 45, 0, 0, 3559, 3558, 1, 0, 0, 0, 3559, 3560, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 3, 280, 140, 0, 3562, 3557, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3565, 1, 0, 0, 0, 3564, 3566, 3, 258, 129, 0, 3565, 3564, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3569, 3, 328, 164, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3572, 3, 238, 119, 0, 3571, 3570, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3574, 1, 0, 0, 0, 3573, 3514, 1, 0, 0, 0, 3573, 3550, 1, 0, 0, 0, 3574, 211, 1, 0, 0, 0, 3575, 3577, 3, 50, 25, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3580, 3, 214, 107, 0, 3579, 3581, 3, 258, 129, 0, 3580, 3579, 1, 0, 0, 0, 3580, 3581, 1, 0, 0, 0, 3581, 3583, 1, 0, 0, 0, 3582, 3584, 3, 328, 164, 0, 3583, 3582, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3586, 1, 0, 0, 0, 3585, 3587, 3, 312, 156, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 213, 1, 0, 0, 0, 3588, 3589, 6, 107, -1, 0, 3589, 3590, 3, 216, 108, 0, 3590, 3605, 1, 0, 0, 0, 3591, 3592, 10, 2, 0, 0, 3592, 3594, 5, 181, 0, 0, 3593, 3595, 7, 45, 0, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3604, 3, 216, 108, 0, 3597, 3598, 10, 1, 0, 0, 3598, 3600, 5, 59, 0, 0, 3599, 3601, 7, 45, 0, 0, 3600, 3599, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3604, 3, 216, 108, 0, 3603, 3591, 1, 0, 0, 0, 3603, 3597, 1, 0, 0, 0, 3604, 3607, 1, 0, 0, 0, 3605, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 215, 1, 0, 0, 0, 3607, 3605, 1, 0, 0, 0, 3608, 3609, 6, 108, -1, 0, 3609, 3610, 3, 218, 109, 0, 3610, 3619, 1, 0, 0, 0, 3611, 3612, 10, 1, 0, 0, 3612, 3614, 5, 828, 0, 0, 3613, 3615, 7, 45, 0, 0, 3614, 3613, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3618, 3, 218, 109, 0, 3617, 3611, 1, 0, 0, 0, 3618, 3621, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 217, 1, 0, 0, 0, 3621, 3619, 1, 0, 0, 0, 3622, 3637, 3, 226, 113, 0, 3623, 3624, 5, 866, 0, 0, 3624, 3626, 3, 214, 107, 0, 3625, 3627, 3, 258, 129, 0, 3626, 3625, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 3629, 1, 0, 0, 0, 3628, 3630, 3, 328, 164, 0, 3629, 3628, 1, 0, 0, 0, 3629, 3630, 1, 0, 0, 0, 3630, 3632, 1, 0, 0, 0, 3631, 3633, 3, 312, 156, 0, 3632, 3631, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 5, 867, 0, 0, 3635, 3637, 1, 0, 0, 0, 3636, 3622, 1, 0, 0, 0, 3636, 3623, 1, 0, 0, 0, 3637, 219, 1, 0, 0, 0, 3638, 3641, 3, 254, 127, 0, 3639, 3641, 3, 256, 128, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3639, 1, 0, 0, 0, 3641, 221, 1, 0, 0, 0, 3642, 3646, 3, 230, 115, 0, 3643, 3644, 5, 125, 0, 0, 3644, 3645, 5, 20, 0, 0, 3645, 3647, 3, 684, 342, 0, 3646, 3643, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3649, 5, 100, 0, 0, 3649, 3651, 3, 330, 165, 0, 3650, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 223, 1, 0, 0, 0, 3652, 3657, 3, 226, 113, 0, 3653, 3654, 7, 50, 0, 0, 3654, 3656, 3, 226, 113, 0, 3655, 3653, 1, 0, 0, 0, 3656, 3659, 1, 0, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3661, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3660, 3662, 3, 258, 129, 0, 3661, 3660, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3664, 1, 0, 0, 0, 3663, 3665, 3, 328, 164, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3667, 1, 0, 0, 0, 3666, 3668, 3, 312, 156, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 225, 1, 0, 0, 0, 3669, 3673, 3, 210, 105, 0, 3670, 3673, 3, 628, 314, 0, 3671, 3673, 3, 222, 111, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 227, 1, 0, 0, 0, 3674, 3680, 3, 210, 105, 0, 3675, 3676, 5, 173, 0, 0, 3676, 3680, 3, 662, 331, 0, 3677, 3680, 3, 752, 376, 0, 3678, 3680, 3, 230, 115, 0, 3679, 3674, 1, 0, 0, 0, 3679, 3675, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3679, 3678, 1, 0, 0, 0, 3680, 229, 1, 0, 0, 0, 3681, 3682, 5, 189, 0, 0, 3682, 3683, 5, 586, 0, 0, 3683, 3689, 3, 754, 377, 0, 3684, 3685, 5, 868, 0, 0, 3685, 3686, 5, 586, 0, 0, 3686, 3688, 3, 754, 377, 0, 3687, 3684, 1, 0, 0, 0, 3688, 3691, 1, 0, 0, 0, 3689, 3687, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3690, 231, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3692, 3693, 5, 155, 0, 0, 3693, 3698, 3, 234, 117, 0, 3694, 3695, 5, 868, 0, 0, 3695, 3697, 3, 234, 117, 0, 3696, 3694, 1, 0, 0, 0, 3697, 3700, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 233, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3702, 3, 672, 336, 0, 3702, 3703, 5, 857, 0, 0, 3703, 3704, 3, 756, 378, 0, 3704, 235, 1, 0, 0, 0, 3705, 3708, 3, 716, 358, 0, 3706, 3708, 5, 892, 0, 0, 3707, 3705, 1, 0, 0, 0, 3707, 3706, 1, 0, 0, 0, 3708, 237, 1, 0, 0, 0, 3709, 3710, 5, 65, 0, 0, 3710, 3720, 7, 51, 0, 0, 3711, 3712, 5, 510, 0, 0, 3712, 3717, 3, 662, 331, 0, 3713, 3714, 5, 868, 0, 0, 3714, 3716, 3, 662, 331, 0, 3715, 3713, 1, 0, 0, 0, 3716, 3719, 1, 0, 0, 0, 3717, 3715, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3721, 1, 0, 0, 0, 3719, 3717, 1, 0, 0, 0, 3720, 3711, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3723, 7, 52, 0, 0, 3723, 3725, 5, 105, 0, 0, 3724, 3722, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3731, 1, 0, 0, 0, 3726, 3727, 5, 104, 0, 0, 3727, 3728, 5, 80, 0, 0, 3728, 3729, 5, 594, 0, 0, 3729, 3731, 5, 491, 0, 0, 3730, 3709, 1, 0, 0, 0, 3730, 3726, 1, 0, 0, 0, 3731, 239, 1, 0, 0, 0, 3732, 3734, 5, 44, 0, 0, 3733, 3735, 5, 107, 0, 0, 3734, 3733, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3737, 1, 0, 0, 0, 3736, 3738, 5, 549, 0, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3740, 1, 0, 0, 0, 3739, 3741, 5, 79, 0, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3743, 5, 68, 0, 0, 3743, 3748, 3, 662, 331, 0, 3744, 3746, 5, 13, 0, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 3749, 3, 716, 358, 0, 3748, 3745, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3755, 1, 0, 0, 0, 3750, 3751, 5, 130, 0, 0, 3751, 3752, 5, 866, 0, 0, 3752, 3753, 3, 680, 340, 0, 3753, 3754, 5, 867, 0, 0, 3754, 3756, 1, 0, 0, 0, 3755, 3750, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3759, 1, 0, 0, 0, 3757, 3758, 5, 192, 0, 0, 3758, 3760, 3, 814, 407, 0, 3759, 3757, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 3762, 1, 0, 0, 0, 3761, 3763, 3, 258, 129, 0, 3762, 3761, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3766, 1, 0, 0, 0, 3764, 3765, 5, 100, 0, 0, 3765, 3767, 3, 330, 165, 0, 3766, 3764, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 241, 1, 0, 0, 0, 3768, 3770, 5, 44, 0, 0, 3769, 3771, 5, 107, 0, 0, 3770, 3769, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3773, 1, 0, 0, 0, 3772, 3774, 5, 549, 0, 0, 3773, 3772, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3776, 1, 0, 0, 0, 3775, 3777, 5, 79, 0, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3817, 1, 0, 0, 0, 3778, 3781, 3, 662, 331, 0, 3779, 3780, 5, 865, 0, 0, 3780, 3782, 5, 850, 0, 0, 3781, 3779, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3791, 1, 0, 0, 0, 3783, 3784, 5, 868, 0, 0, 3784, 3787, 3, 662, 331, 0, 3785, 3786, 5, 865, 0, 0, 3786, 3788, 5, 850, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3790, 1, 0, 0, 0, 3789, 3783, 1, 0, 0, 0, 3790, 3793, 1, 0, 0, 0, 3791, 3789, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3794, 1, 0, 0, 0, 3793, 3791, 1, 0, 0, 0, 3794, 3795, 5, 68, 0, 0, 3795, 3796, 3, 262, 131, 0, 3796, 3818, 1, 0, 0, 0, 3797, 3798, 5, 68, 0, 0, 3798, 3801, 3, 662, 331, 0, 3799, 3800, 5, 865, 0, 0, 3800, 3802, 5, 850, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3811, 1, 0, 0, 0, 3803, 3804, 5, 868, 0, 0, 3804, 3807, 3, 662, 331, 0, 3805, 3806, 5, 865, 0, 0, 3806, 3808, 5, 850, 0, 0, 3807, 3805, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3803, 1, 0, 0, 0, 3810, 3813, 1, 0, 0, 0, 3811, 3809, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3814, 1, 0, 0, 0, 3813, 3811, 1, 0, 0, 0, 3814, 3815, 5, 188, 0, 0, 3815, 3816, 3, 262, 131, 0, 3816, 3818, 1, 0, 0, 0, 3817, 3778, 1, 0, 0, 0, 3817, 3797, 1, 0, 0, 0, 3818, 3821, 1, 0, 0, 0, 3819, 3820, 5, 192, 0, 0, 3820, 3822, 3, 814, 407, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 243, 1, 0, 0, 0, 3823, 3824, 5, 417, 0, 0, 3824, 3825, 3, 662, 331, 0, 3825, 3830, 5, 516, 0, 0, 3826, 3828, 5, 13, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3831, 3, 716, 358, 0, 3830, 3827, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 245, 1, 0, 0, 0, 3832, 3833, 5, 417, 0, 0, 3833, 3834, 3, 662, 331, 0, 3834, 3835, 5, 135, 0, 0, 3835, 3842, 3, 652, 326, 0, 3836, 3837, 3, 824, 412, 0, 3837, 3838, 5, 866, 0, 0, 3838, 3839, 3, 758, 379, 0, 3839, 3840, 5, 867, 0, 0, 3840, 3843, 1, 0, 0, 0, 3841, 3843, 7, 53, 0, 0, 3842, 3836, 1, 0, 0, 0, 3842, 3841, 1, 0, 0, 0, 3843, 3846, 1, 0, 0, 0, 3844, 3845, 5, 192, 0, 0, 3845, 3847, 3, 814, 407, 0, 3846, 3844, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3850, 1, 0, 0, 0, 3848, 3849, 5, 100, 0, 0, 3849, 3851, 3, 330, 165, 0, 3850, 3848, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 247, 1, 0, 0, 0, 3852, 3853, 5, 417, 0, 0, 3853, 3854, 3, 662, 331, 0, 3854, 3855, 5, 135, 0, 0, 3855, 3858, 7, 54, 0, 0, 3856, 3857, 5, 192, 0, 0, 3857, 3859, 3, 814, 407, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3862, 1, 0, 0, 0, 3860, 3861, 5, 100, 0, 0, 3861, 3863, 3, 330, 165, 0, 3862, 3860, 1, 0, 0, 0, 3862, 3863, 1, 0, 0, 0, 3863, 249, 1, 0, 0, 0, 3864, 3865, 5, 417, 0, 0, 3865, 3866, 3, 662, 331, 0, 3866, 3867, 5, 334, 0, 0, 3867, 251, 1, 0, 0, 0, 3868, 3869, 5, 425, 0, 0, 3869, 3870, 5, 173, 0, 0, 3870, 3871, 5, 68, 0, 0, 3871, 3876, 3, 726, 363, 0, 3872, 3873, 5, 868, 0, 0, 3873, 3875, 3, 726, 363, 0, 3874, 3872, 1, 0, 0, 0, 3875, 3878, 1, 0, 0, 0, 3876, 3874, 1, 0, 0, 0, 3876, 3877, 1, 0, 0, 0, 3877, 253, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3881, 5, 185, 0, 0, 3880, 3882, 5, 107, 0, 0, 3881, 3880, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 3884, 1, 0, 0, 0, 3883, 3885, 5, 79, 0, 0, 3884, 3883, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3891, 3, 662, 331, 0, 3887, 3889, 5, 13, 0, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3892, 3, 716, 358, 0, 3891, 3888, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3894, 5, 155, 0, 0, 3894, 3899, 3, 234, 117, 0, 3895, 3896, 5, 868, 0, 0, 3896, 3898, 3, 234, 117, 0, 3897, 3895, 1, 0, 0, 0, 3898, 3901, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3904, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3902, 3903, 5, 192, 0, 0, 3903, 3905, 3, 814, 407, 0, 3904, 3902, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3907, 1, 0, 0, 0, 3906, 3908, 3, 258, 129, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3911, 3, 328, 164, 0, 3910, 3909, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 255, 1, 0, 0, 0, 3912, 3914, 5, 185, 0, 0, 3913, 3915, 5, 107, 0, 0, 3914, 3913, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 1, 0, 0, 0, 3916, 3918, 5, 79, 0, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3920, 3, 262, 131, 0, 3920, 3921, 5, 155, 0, 0, 3921, 3926, 3, 234, 117, 0, 3922, 3923, 5, 868, 0, 0, 3923, 3925, 3, 234, 117, 0, 3924, 3922, 1, 0, 0, 0, 3925, 3928, 1, 0, 0, 0, 3926, 3924, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3931, 1, 0, 0, 0, 3928, 3926, 1, 0, 0, 0, 3929, 3930, 5, 192, 0, 0, 3930, 3932, 3, 814, 407, 0, 3931, 3929, 1, 0, 0, 0, 3931, 3932, 1, 0, 0, 0, 3932, 257, 1, 0, 0, 0, 3933, 3934, 5, 125, 0, 0, 3934, 3935, 5, 20, 0, 0, 3935, 3940, 3, 260, 130, 0, 3936, 3937, 5, 868, 0, 0, 3937, 3939, 3, 260, 130, 0, 3938, 3936, 1, 0, 0, 0, 3939, 3942, 1, 0, 0, 0, 3940, 3938, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 259, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3943, 3945, 3, 814, 407, 0, 3944, 3946, 7, 55, 0, 0, 3945, 3944, 1, 0, 0, 0, 3945, 3946, 1, 0, 0, 0, 3946, 261, 1, 0, 0, 0, 3947, 3952, 3, 264, 132, 0, 3948, 3949, 5, 868, 0, 0, 3949, 3951, 3, 264, 132, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3954, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 263, 1, 0, 0, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3959, 3, 266, 133, 0, 3956, 3958, 3, 276, 138, 0, 3957, 3956, 1, 0, 0, 0, 3958, 3961, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3974, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3962, 3963, 5, 866, 0, 0, 3963, 3967, 3, 266, 133, 0, 3964, 3966, 3, 276, 138, 0, 3965, 3964, 1, 0, 0, 0, 3966, 3969, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3970, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3970, 3971, 5, 867, 0, 0, 3971, 3974, 1, 0, 0, 0, 3972, 3974, 3, 288, 144, 0, 3973, 3955, 1, 0, 0, 0, 3973, 3962, 1, 0, 0, 0, 3973, 3972, 1, 0, 0, 0, 3974, 265, 1, 0, 0, 0, 3975, 3981, 3, 662, 331, 0, 3976, 3977, 5, 130, 0, 0, 3977, 3978, 5, 866, 0, 0, 3978, 3979, 3, 680, 340, 0, 3979, 3980, 5, 867, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3976, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3987, 1, 0, 0, 0, 3983, 3985, 5, 13, 0, 0, 3984, 3983, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3988, 3, 716, 358, 0, 3987, 3984, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3997, 1, 0, 0, 0, 3989, 3994, 3, 272, 136, 0, 3990, 3991, 5, 868, 0, 0, 3991, 3993, 3, 272, 136, 0, 3992, 3990, 1, 0, 0, 0, 3993, 3996, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 3998, 1, 0, 0, 0, 3996, 3994, 1, 0, 0, 0, 3997, 3989, 1, 0, 0, 0, 3997, 3998, 1, 0, 0, 0, 3998, 4015, 1, 0, 0, 0, 3999, 4001, 5, 95, 0, 0, 4000, 3999, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4004, 3, 268, 134, 0, 4003, 4005, 5, 13, 0, 0, 4004, 4003, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 4008, 3, 716, 358, 0, 4007, 4009, 3, 270, 135, 0, 4008, 4007, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 4015, 1, 0, 0, 0, 4010, 4011, 5, 866, 0, 0, 4011, 4012, 3, 262, 131, 0, 4012, 4013, 5, 867, 0, 0, 4013, 4015, 1, 0, 0, 0, 4014, 3975, 1, 0, 0, 0, 4014, 4000, 1, 0, 0, 0, 4014, 4010, 1, 0, 0, 0, 4015, 267, 1, 0, 0, 0, 4016, 4022, 3, 210, 105, 0, 4017, 4018, 5, 866, 0, 0, 4018, 4019, 3, 210, 105, 0, 4019, 4020, 5, 867, 0, 0, 4020, 4022, 1, 0, 0, 0, 4021, 4016, 1, 0, 0, 0, 4021, 4017, 1, 0, 0, 0, 4022, 269, 1, 0, 0, 0, 4023, 4024, 5, 866, 0, 0, 4024, 4025, 3, 670, 335, 0, 4025, 4026, 5, 867, 0, 0, 4026, 271, 1, 0, 0, 0, 4027, 4028, 7, 56, 0, 0, 4028, 4031, 7, 19, 0, 0, 4029, 4030, 5, 65, 0, 0, 4030, 4032, 3, 274, 137, 0, 4031, 4029, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4035, 5, 866, 0, 0, 4034, 4036, 3, 650, 325, 0, 4035, 4034, 1, 0, 0, 0, 4035, 4036, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 5, 867, 0, 0, 4038, 273, 1, 0, 0, 0, 4039, 4045, 5, 91, 0, 0, 4040, 4041, 5, 125, 0, 0, 4041, 4045, 5, 20, 0, 0, 4042, 4043, 5, 74, 0, 0, 4043, 4045, 5, 20, 0, 0, 4044, 4039, 1, 0, 0, 0, 4044, 4040, 1, 0, 0, 0, 4044, 4042, 1, 0, 0, 0, 4045, 275, 1, 0, 0, 0, 4046, 4048, 7, 57, 0, 0, 4047, 4046, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4051, 5, 91, 0, 0, 4050, 4052, 5, 95, 0, 0, 4051, 4050, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4057, 3, 266, 133, 0, 4054, 4056, 3, 278, 139, 0, 4055, 4054, 1, 0, 0, 0, 4056, 4059, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4096, 1, 0, 0, 0, 4059, 4057, 1, 0, 0, 0, 4060, 4061, 5, 172, 0, 0, 4061, 4065, 3, 266, 133, 0, 4062, 4064, 3, 278, 139, 0, 4063, 4062, 1, 0, 0, 0, 4064, 4067, 1, 0, 0, 0, 4065, 4063, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4096, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4068, 4070, 7, 58, 0, 0, 4069, 4071, 5, 127, 0, 0, 4070, 4069, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4074, 5, 91, 0, 0, 4073, 4075, 5, 95, 0, 0, 4074, 4073, 1, 0, 0, 0, 4074, 4075, 1, 0, 0, 0, 4075, 4076, 1, 0, 0, 0, 4076, 4080, 3, 266, 133, 0, 4077, 4079, 3, 278, 139, 0, 4078, 4077, 1, 0, 0, 0, 4079, 4082, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4096, 1, 0, 0, 0, 4082, 4080, 1, 0, 0, 0, 4083, 4091, 5, 113, 0, 0, 4084, 4087, 5, 84, 0, 0, 4085, 4087, 7, 58, 0, 0, 4086, 4084, 1, 0, 0, 0, 4086, 4085, 1, 0, 0, 0, 4087, 4089, 1, 0, 0, 0, 4088, 4090, 5, 127, 0, 0, 4089, 4088, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 4092, 1, 0, 0, 0, 4091, 4086, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4094, 5, 91, 0, 0, 4094, 4096, 3, 266, 133, 0, 4095, 4047, 1, 0, 0, 0, 4095, 4060, 1, 0, 0, 0, 4095, 4068, 1, 0, 0, 0, 4095, 4083, 1, 0, 0, 0, 4096, 277, 1, 0, 0, 0, 4097, 4098, 5, 119, 0, 0, 4098, 4105, 3, 814, 407, 0, 4099, 4100, 5, 188, 0, 0, 4100, 4101, 5, 866, 0, 0, 4101, 4102, 3, 670, 335, 0, 4102, 4103, 5, 867, 0, 0, 4103, 4105, 1, 0, 0, 0, 4104, 4097, 1, 0, 0, 0, 4104, 4099, 1, 0, 0, 0, 4105, 279, 1, 0, 0, 0, 4106, 4107, 5, 866, 0, 0, 4107, 4108, 3, 282, 141, 0, 4108, 4109, 5, 867, 0, 0, 4109, 4115, 1, 0, 0, 0, 4110, 4111, 5, 866, 0, 0, 4111, 4112, 3, 280, 140, 0, 4112, 4113, 5, 867, 0, 0, 4113, 4115, 1, 0, 0, 0, 4114, 4106, 1, 0, 0, 0, 4114, 4110, 1, 0, 0, 0, 4115, 281, 1, 0, 0, 0, 4116, 4120, 5, 154, 0, 0, 4117, 4119, 3, 298, 149, 0, 4118, 4117, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4123, 1, 0, 0, 0, 4122, 4120, 1, 0, 0, 0, 4123, 4125, 3, 300, 150, 0, 4124, 4126, 3, 312, 156, 0, 4125, 4124, 1, 0, 0, 0, 4125, 4126, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4129, 3, 318, 159, 0, 4128, 4130, 3, 320, 160, 0, 4129, 4128, 1, 0, 0, 0, 4129, 4130, 1, 0, 0, 0, 4130, 4132, 1, 0, 0, 0, 4131, 4133, 3, 322, 161, 0, 4132, 4131, 1, 0, 0, 0, 4132, 4133, 1, 0, 0, 0, 4133, 4135, 1, 0, 0, 0, 4134, 4136, 3, 324, 162, 0, 4135, 4134, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4138, 1, 0, 0, 0, 4137, 4139, 3, 258, 129, 0, 4138, 4137, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4141, 1, 0, 0, 0, 4140, 4142, 3, 328, 164, 0, 4141, 4140, 1, 0, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 4144, 1, 0, 0, 0, 4143, 4145, 3, 312, 156, 0, 4144, 4143, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4148, 3, 284, 142, 0, 4147, 4146, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 283, 1, 0, 0, 0, 4149, 4151, 5, 181, 0, 0, 4150, 4152, 7, 45, 0, 0, 4151, 4150, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4152, 4155, 1, 0, 0, 0, 4153, 4156, 3, 282, 141, 0, 4154, 4156, 3, 280, 140, 0, 4155, 4153, 1, 0, 0, 0, 4155, 4154, 1, 0, 0, 0, 4156, 285, 1, 0, 0, 0, 4157, 4172, 5, 95, 0, 0, 4158, 4173, 3, 282, 141, 0, 4159, 4173, 3, 280, 140, 0, 4160, 4163, 5, 866, 0, 0, 4161, 4164, 3, 282, 141, 0, 4162, 4164, 3, 280, 140, 0, 4163, 4161, 1, 0, 0, 0, 4163, 4162, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4170, 5, 867, 0, 0, 4166, 4168, 5, 13, 0, 0, 4167, 4166, 1, 0, 0, 0, 4167, 4168, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4171, 3, 716, 358, 0, 4170, 4167, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4173, 1, 0, 0, 0, 4172, 4158, 1, 0, 0, 0, 4172, 4159, 1, 0, 0, 0, 4172, 4160, 1, 0, 0, 0, 4173, 287, 1, 0, 0, 0, 4174, 4175, 5, 253, 0, 0, 4175, 4176, 5, 866, 0, 0, 4176, 4177, 5, 882, 0, 0, 4177, 4178, 5, 868, 0, 0, 4178, 4179, 5, 882, 0, 0, 4179, 4180, 5, 337, 0, 0, 4180, 4181, 5, 866, 0, 0, 4181, 4182, 3, 290, 145, 0, 4182, 4183, 5, 867, 0, 0, 4183, 4188, 5, 867, 0, 0, 4184, 4186, 5, 13, 0, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4189, 3, 716, 358, 0, 4188, 4185, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 289, 1, 0, 0, 0, 4190, 4195, 3, 292, 146, 0, 4191, 4192, 5, 868, 0, 0, 4192, 4194, 3, 292, 146, 0, 4193, 4191, 1, 0, 0, 0, 4194, 4197, 1, 0, 0, 0, 4195, 4193, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 291, 1, 0, 0, 0, 4197, 4195, 1, 0, 0, 0, 4198, 4215, 3, 672, 336, 0, 4199, 4200, 5, 65, 0, 0, 4200, 4216, 5, 256, 0, 0, 4201, 4213, 3, 736, 368, 0, 4202, 4203, 5, 257, 0, 0, 4203, 4205, 5, 882, 0, 0, 4204, 4206, 3, 294, 147, 0, 4205, 4204, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4208, 1, 0, 0, 0, 4207, 4209, 3, 296, 148, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 4214, 1, 0, 0, 0, 4210, 4211, 5, 60, 0, 0, 4211, 4212, 5, 257, 0, 0, 4212, 4214, 5, 882, 0, 0, 4213, 4202, 1, 0, 0, 0, 4213, 4210, 1, 0, 0, 0, 4214, 4216, 1, 0, 0, 0, 4215, 4199, 1, 0, 0, 0, 4215, 4201, 1, 0, 0, 0, 4216, 4228, 1, 0, 0, 0, 4217, 4219, 5, 255, 0, 0, 4218, 4220, 5, 257, 0, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4222, 5, 882, 0, 0, 4222, 4223, 5, 337, 0, 0, 4223, 4224, 5, 866, 0, 0, 4224, 4225, 3, 290, 145, 0, 4225, 4226, 5, 867, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4198, 1, 0, 0, 0, 4227, 4217, 1, 0, 0, 0, 4228, 293, 1, 0, 0, 0, 4229, 4234, 5, 116, 0, 0, 4230, 4234, 5, 382, 0, 0, 4231, 4232, 5, 42, 0, 0, 4232, 4234, 3, 764, 382, 0, 4233, 4229, 1, 0, 0, 0, 4233, 4230, 1, 0, 0, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4235, 1, 0, 0, 0, 4235, 4236, 5, 119, 0, 0, 4236, 4237, 5, 55, 0, 0, 4237, 295, 1, 0, 0, 0, 4238, 4243, 5, 116, 0, 0, 4239, 4243, 5, 382, 0, 0, 4240, 4241, 5, 42, 0, 0, 4241, 4243, 3, 764, 382, 0, 4242, 4238, 1, 0, 0, 0, 4242, 4239, 1, 0, 0, 0, 4242, 4240, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4245, 5, 119, 0, 0, 4245, 4246, 5, 382, 0, 0, 4246, 297, 1, 0, 0, 0, 4247, 4256, 7, 59, 0, 0, 4248, 4256, 5, 76, 0, 0, 4249, 4256, 5, 172, 0, 0, 4250, 4256, 5, 168, 0, 0, 4251, 4256, 5, 166, 0, 0, 4252, 4256, 5, 636, 0, 0, 4253, 4256, 7, 60, 0, 0, 4254, 4256, 5, 167, 0, 0, 4255, 4247, 1, 0, 0, 0, 4255, 4248, 1, 0, 0, 0, 4255, 4249, 1, 0, 0, 0, 4255, 4250, 1, 0, 0, 0, 4255, 4251, 1, 0, 0, 0, 4255, 4252, 1, 0, 0, 0, 4255, 4253, 1, 0, 0, 0, 4255, 4254, 1, 0, 0, 0, 4256, 299, 1, 0, 0, 0, 4257, 4260, 3, 306, 153, 0, 4258, 4260, 3, 302, 151, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4258, 1, 0, 0, 0, 4260, 4265, 1, 0, 0, 0, 4261, 4262, 5, 868, 0, 0, 4262, 4264, 3, 302, 151, 0, 4263, 4261, 1, 0, 0, 0, 4264, 4267, 1, 0, 0, 0, 4265, 4263, 1, 0, 0, 0, 4265, 4266, 1, 0, 0, 0, 4266, 301, 1, 0, 0, 0, 4267, 4265, 1, 0, 0, 0, 4268, 4284, 3, 304, 152, 0, 4269, 4274, 3, 308, 154, 0, 4270, 4272, 5, 13, 0, 0, 4271, 4270, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4275, 3, 716, 358, 0, 4274, 4271, 1, 0, 0, 0, 4274, 4275, 1, 0, 0, 0, 4275, 4284, 1, 0, 0, 0, 4276, 4281, 3, 310, 155, 0, 4277, 4279, 5, 13, 0, 0, 4278, 4277, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 3, 716, 358, 0, 4281, 4278, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 1, 0, 0, 0, 4283, 4268, 1, 0, 0, 0, 4283, 4269, 1, 0, 0, 0, 4283, 4276, 1, 0, 0, 0, 4284, 303, 1, 0, 0, 0, 4285, 4286, 3, 712, 356, 0, 4286, 4287, 5, 865, 0, 0, 4287, 4288, 5, 850, 0, 0, 4288, 305, 1, 0, 0, 0, 4289, 4290, 5, 850, 0, 0, 4290, 307, 1, 0, 0, 0, 4291, 4292, 3, 672, 336, 0, 4292, 309, 1, 0, 0, 0, 4293, 4294, 5, 892, 0, 0, 4294, 4296, 5, 841, 0, 0, 4295, 4293, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4300, 3, 814, 407, 0, 4298, 4300, 3, 774, 387, 0, 4299, 4295, 1, 0, 0, 0, 4299, 4298, 1, 0, 0, 0, 4300, 311, 1, 0, 0, 0, 4301, 4302, 5, 88, 0, 0, 4302, 4307, 3, 236, 118, 0, 4303, 4304, 5, 868, 0, 0, 4304, 4306, 3, 236, 118, 0, 4305, 4303, 1, 0, 0, 0, 4306, 4309, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4338, 1, 0, 0, 0, 4309, 4307, 1, 0, 0, 0, 4310, 4311, 5, 88, 0, 0, 4311, 4312, 5, 372, 0, 0, 4312, 4338, 5, 882, 0, 0, 4313, 4314, 5, 88, 0, 0, 4314, 4315, 5, 128, 0, 0, 4315, 4319, 5, 882, 0, 0, 4316, 4317, 5, 26, 0, 0, 4317, 4318, 5, 155, 0, 0, 4318, 4320, 3, 698, 349, 0, 4319, 4316, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4327, 1, 0, 0, 0, 4321, 4323, 7, 47, 0, 0, 4322, 4324, 3, 314, 157, 0, 4323, 4322, 1, 0, 0, 0, 4324, 4325, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 4328, 1, 0, 0, 0, 4327, 4321, 1, 0, 0, 0, 4327, 4328, 1, 0, 0, 0, 4328, 4335, 1, 0, 0, 0, 4329, 4331, 5, 102, 0, 0, 4330, 4332, 3, 316, 158, 0, 4331, 4330, 1, 0, 0, 0, 4332, 4333, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4336, 1, 0, 0, 0, 4335, 4329, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4338, 1, 0, 0, 0, 4337, 4301, 1, 0, 0, 0, 4337, 4310, 1, 0, 0, 0, 4337, 4313, 1, 0, 0, 0, 4338, 313, 1, 0, 0, 0, 4339, 4340, 5, 174, 0, 0, 4340, 4341, 5, 20, 0, 0, 4341, 4352, 5, 882, 0, 0, 4342, 4344, 5, 123, 0, 0, 4343, 4342, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 4345, 1, 0, 0, 0, 4345, 4346, 5, 56, 0, 0, 4346, 4347, 5, 20, 0, 0, 4347, 4352, 5, 882, 0, 0, 4348, 4349, 5, 58, 0, 0, 4349, 4350, 5, 20, 0, 0, 4350, 4352, 5, 882, 0, 0, 4351, 4339, 1, 0, 0, 0, 4351, 4343, 1, 0, 0, 0, 4351, 4348, 1, 0, 0, 0, 4352, 315, 1, 0, 0, 0, 4353, 4354, 5, 171, 0, 0, 4354, 4355, 5, 20, 0, 0, 4355, 4360, 5, 882, 0, 0, 4356, 4357, 5, 174, 0, 0, 4357, 4358, 5, 20, 0, 0, 4358, 4360, 5, 882, 0, 0, 4359, 4353, 1, 0, 0, 0, 4359, 4356, 1, 0, 0, 0, 4360, 317, 1, 0, 0, 0, 4361, 4362, 5, 68, 0, 0, 4362, 4364, 3, 262, 131, 0, 4363, 4361, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 4367, 1, 0, 0, 0, 4365, 4366, 5, 192, 0, 0, 4366, 4368, 3, 814, 407, 0, 4367, 4365, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 319, 1, 0, 0, 0, 4369, 4370, 5, 74, 0, 0, 4370, 4371, 5, 20, 0, 0, 4371, 4376, 3, 326, 163, 0, 4372, 4373, 5, 868, 0, 0, 4373, 4375, 3, 326, 163, 0, 4374, 4372, 1, 0, 0, 0, 4375, 4378, 1, 0, 0, 0, 4376, 4374, 1, 0, 0, 0, 4376, 4377, 1, 0, 0, 0, 4377, 4381, 1, 0, 0, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4380, 5, 194, 0, 0, 4380, 4382, 5, 584, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 321, 1, 0, 0, 0, 4383, 4384, 5, 75, 0, 0, 4384, 4385, 3, 814, 407, 0, 4385, 323, 1, 0, 0, 0, 4386, 4387, 5, 689, 0, 0, 4387, 4388, 3, 792, 396, 0, 4388, 4389, 5, 13, 0, 0, 4389, 4390, 5, 866, 0, 0, 4390, 4391, 3, 790, 395, 0, 4391, 4401, 5, 867, 0, 0, 4392, 4393, 5, 868, 0, 0, 4393, 4394, 3, 792, 396, 0, 4394, 4395, 5, 13, 0, 0, 4395, 4396, 5, 866, 0, 0, 4396, 4397, 3, 790, 395, 0, 4397, 4398, 5, 867, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4392, 1, 0, 0, 0, 4400, 4403, 1, 0, 0, 0, 4401, 4399, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 325, 1, 0, 0, 0, 4403, 4401, 1, 0, 0, 0, 4404, 4406, 3, 814, 407, 0, 4405, 4407, 7, 55, 0, 0, 4406, 4405, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 327, 1, 0, 0, 0, 4408, 4419, 5, 100, 0, 0, 4409, 4410, 3, 330, 165, 0, 4410, 4411, 5, 868, 0, 0, 4411, 4413, 1, 0, 0, 0, 4412, 4409, 1, 0, 0, 0, 4412, 4413, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4420, 3, 330, 165, 0, 4415, 4416, 3, 330, 165, 0, 4416, 4417, 5, 509, 0, 0, 4417, 4418, 3, 330, 165, 0, 4418, 4420, 1, 0, 0, 0, 4419, 4412, 1, 0, 0, 0, 4419, 4415, 1, 0, 0, 0, 4420, 329, 1, 0, 0, 0, 4421, 4425, 3, 722, 361, 0, 4422, 4425, 3, 696, 348, 0, 4423, 4425, 3, 718, 359, 0, 4424, 4421, 1, 0, 0, 0, 4424, 4422, 1, 0, 0, 0, 4424, 4423, 1, 0, 0, 0, 4425, 331, 1, 0, 0, 0, 4426, 4427, 5, 640, 0, 0, 4427, 4436, 5, 664, 0, 0, 4428, 4433, 3, 354, 177, 0, 4429, 4430, 5, 868, 0, 0, 4430, 4432, 3, 354, 177, 0, 4431, 4429, 1, 0, 0, 0, 4432, 4435, 1, 0, 0, 0, 4433, 4431, 1, 0, 0, 0, 4433, 4434, 1, 0, 0, 0, 4434, 4437, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4428, 1, 0, 0, 0, 4436, 4437, 1, 0, 0, 0, 4437, 333, 1, 0, 0, 0, 4438, 4440, 5, 317, 0, 0, 4439, 4441, 5, 691, 0, 0, 4440, 4439, 1, 0, 0, 0, 4440, 4441, 1, 0, 0, 0, 4441, 335, 1, 0, 0, 0, 4442, 4444, 5, 341, 0, 0, 4443, 4445, 5, 691, 0, 0, 4444, 4443, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 4451, 1, 0, 0, 0, 4446, 4448, 5, 11, 0, 0, 4447, 4449, 5, 502, 0, 0, 4448, 4447, 1, 0, 0, 0, 4448, 4449, 1, 0, 0, 0, 4449, 4450, 1, 0, 0, 0, 4450, 4452, 5, 326, 0, 0, 4451, 4446, 1, 0, 0, 0, 4451, 4452, 1, 0, 0, 0, 4452, 4457, 1, 0, 0, 0, 4453, 4455, 5, 502, 0, 0, 4454, 4453, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 4458, 5, 140, 0, 0, 4457, 4454, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 337, 1, 0, 0, 0, 4459, 4461, 5, 583, 0, 0, 4460, 4462, 5, 691, 0, 0, 4461, 4460, 1, 0, 0, 0, 4461, 4462, 1, 0, 0, 0, 4462, 4468, 1, 0, 0, 0, 4463, 4465, 5, 11, 0, 0, 4464, 4466, 5, 502, 0, 0, 4465, 4464, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 4469, 5, 326, 0, 0, 4468, 4463, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4474, 1, 0, 0, 0, 4470, 4472, 5, 502, 0, 0, 4471, 4470, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4475, 5, 140, 0, 0, 4474, 4471, 1, 0, 0, 0, 4474, 4475, 1, 0, 0, 0, 4475, 339, 1, 0, 0, 0, 4476, 4477, 5, 589, 0, 0, 4477, 4478, 3, 716, 358, 0, 4478, 341, 1, 0, 0, 0, 4479, 4481, 5, 583, 0, 0, 4480, 4482, 5, 691, 0, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 4485, 5, 176, 0, 0, 4484, 4486, 5, 589, 0, 0, 4485, 4484, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4488, 3, 716, 358, 0, 4488, 343, 1, 0, 0, 0, 4489, 4490, 5, 140, 0, 0, 4490, 4491, 5, 589, 0, 0, 4491, 4492, 3, 716, 358, 0, 4492, 345, 1, 0, 0, 0, 4493, 4494, 5, 104, 0, 0, 4494, 4495, 7, 61, 0, 0, 4495, 4500, 3, 356, 178, 0, 4496, 4497, 5, 868, 0, 0, 4497, 4499, 3, 356, 178, 0, 4498, 4496, 1, 0, 0, 0, 4499, 4502, 1, 0, 0, 0, 4500, 4498, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 347, 1, 0, 0, 0, 4502, 4500, 1, 0, 0, 0, 4503, 4504, 5, 183, 0, 0, 4504, 4505, 5, 752, 0, 0, 4505, 349, 1, 0, 0, 0, 4506, 4507, 5, 155, 0, 0, 4507, 4508, 5, 313, 0, 0, 4508, 4509, 5, 857, 0, 0, 4509, 4510, 7, 26, 0, 0, 4510, 351, 1, 0, 0, 0, 4511, 4513, 5, 155, 0, 0, 4512, 4514, 7, 62, 0, 0, 4513, 4512, 1, 0, 0, 0, 4513, 4514, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 4516, 5, 664, 0, 0, 4516, 4521, 3, 360, 180, 0, 4517, 4518, 5, 868, 0, 0, 4518, 4520, 3, 360, 180, 0, 4519, 4517, 1, 0, 0, 0, 4520, 4523, 1, 0, 0, 0, 4521, 4519, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 353, 1, 0, 0, 0, 4523, 4521, 1, 0, 0, 0, 4524, 4525, 5, 194, 0, 0, 4525, 4526, 5, 350, 0, 0, 4526, 4532, 5, 600, 0, 0, 4527, 4528, 5, 135, 0, 0, 4528, 4532, 5, 195, 0, 0, 4529, 4530, 5, 135, 0, 0, 4530, 4532, 5, 515, 0, 0, 4531, 4524, 1, 0, 0, 0, 4531, 4527, 1, 0, 0, 0, 4531, 4529, 1, 0, 0, 0, 4532, 355, 1, 0, 0, 0, 4533, 4538, 3, 662, 331, 0, 4534, 4536, 5, 13, 0, 0, 4535, 4534, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 4539, 3, 716, 358, 0, 4538, 4535, 1, 0, 0, 0, 4538, 4539, 1, 0, 0, 0, 4539, 4540, 1, 0, 0, 0, 4540, 4541, 3, 358, 179, 0, 4541, 357, 1, 0, 0, 0, 4542, 4544, 5, 135, 0, 0, 4543, 4545, 5, 450, 0, 0, 4544, 4543, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4551, 1, 0, 0, 0, 4546, 4548, 5, 107, 0, 0, 4547, 4546, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4551, 5, 195, 0, 0, 4550, 4542, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4551, 359, 1, 0, 0, 0, 4552, 4553, 5, 440, 0, 0, 4553, 4554, 5, 448, 0, 0, 4554, 4560, 3, 362, 181, 0, 4555, 4556, 5, 135, 0, 0, 4556, 4560, 5, 195, 0, 0, 4557, 4558, 5, 135, 0, 0, 4558, 4560, 5, 515, 0, 0, 4559, 4552, 1, 0, 0, 0, 4559, 4555, 1, 0, 0, 0, 4559, 4557, 1, 0, 0, 0, 4560, 361, 1, 0, 0, 0, 4561, 4562, 5, 809, 0, 0, 4562, 4569, 5, 135, 0, 0, 4563, 4564, 5, 135, 0, 0, 4564, 4569, 5, 810, 0, 0, 4565, 4566, 5, 135, 0, 0, 4566, 4569, 5, 811, 0, 0, 4567, 4569, 5, 812, 0, 0, 4568, 4561, 1, 0, 0, 0, 4568, 4563, 1, 0, 0, 0, 4568, 4565, 1, 0, 0, 0, 4568, 4567, 1, 0, 0, 0, 4569, 363, 1, 0, 0, 0, 4570, 4571, 5, 25, 0, 0, 4571, 4572, 5, 453, 0, 0, 4572, 4573, 5, 176, 0, 0, 4573, 4578, 3, 380, 190, 0, 4574, 4575, 5, 868, 0, 0, 4575, 4577, 3, 380, 190, 0, 4576, 4574, 1, 0, 0, 0, 4577, 4580, 1, 0, 0, 0, 4578, 4576, 1, 0, 0, 0, 4578, 4579, 1, 0, 0, 0, 4579, 4582, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4583, 3, 400, 200, 0, 4582, 4581, 1, 0, 0, 0, 4582, 4583, 1, 0, 0, 0, 4583, 365, 1, 0, 0, 0, 4584, 4585, 5, 25, 0, 0, 4585, 4586, 5, 572, 0, 0, 4586, 4587, 5, 400, 0, 0, 4587, 4592, 3, 402, 201, 0, 4588, 4589, 5, 868, 0, 0, 4589, 4591, 3, 402, 201, 0, 4590, 4588, 1, 0, 0, 0, 4591, 4594, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4592, 4593, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4595, 4597, 3, 400, 200, 0, 4596, 4595, 1, 0, 0, 0, 4596, 4597, 1, 0, 0, 0, 4597, 367, 1, 0, 0, 0, 4598, 4599, 5, 25, 0, 0, 4599, 4600, 5, 572, 0, 0, 4600, 4601, 5, 605, 0, 0, 4601, 4602, 5, 176, 0, 0, 4602, 4607, 3, 390, 195, 0, 4603, 4604, 5, 868, 0, 0, 4604, 4606, 3, 390, 195, 0, 4605, 4603, 1, 0, 0, 0, 4606, 4609, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4611, 1, 0, 0, 0, 4609, 4607, 1, 0, 0, 0, 4610, 4612, 3, 400, 200, 0, 4611, 4610, 1, 0, 0, 0, 4611, 4612, 1, 0, 0, 0, 4612, 369, 1, 0, 0, 0, 4613, 4614, 5, 133, 0, 0, 4614, 4615, 7, 63, 0, 0, 4615, 4620, 5, 452, 0, 0, 4616, 4617, 5, 176, 0, 0, 4617, 4621, 5, 882, 0, 0, 4618, 4619, 5, 16, 0, 0, 4619, 4621, 5, 882, 0, 0, 4620, 4616, 1, 0, 0, 0, 4620, 4618, 1, 0, 0, 0, 4621, 371, 1, 0, 0, 0, 4622, 4623, 5, 640, 0, 0, 4623, 4632, 7, 64, 0, 0, 4624, 4629, 3, 406, 203, 0, 4625, 4626, 5, 868, 0, 0, 4626, 4628, 3, 406, 203, 0, 4627, 4625, 1, 0, 0, 0, 4628, 4631, 1, 0, 0, 0, 4629, 4627, 1, 0, 0, 0, 4629, 4630, 1, 0, 0, 0, 4630, 4633, 1, 0, 0, 0, 4631, 4629, 1, 0, 0, 0, 4632, 4624, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4636, 1, 0, 0, 0, 4634, 4635, 5, 676, 0, 0, 4635, 4637, 3, 408, 204, 0, 4636, 4634, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4641, 1, 0, 0, 0, 4638, 4640, 3, 410, 205, 0, 4639, 4638, 1, 0, 0, 0, 4640, 4643, 1, 0, 0, 0, 4641, 4639, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4644, 4646, 3, 400, 200, 0, 4645, 4644, 1, 0, 0, 0, 4645, 4646, 1, 0, 0, 0, 4646, 373, 1, 0, 0, 0, 4647, 4648, 5, 646, 0, 0, 4648, 4657, 7, 64, 0, 0, 4649, 4654, 3, 406, 203, 0, 4650, 4651, 5, 868, 0, 0, 4651, 4653, 3, 406, 203, 0, 4652, 4650, 1, 0, 0, 0, 4653, 4656, 1, 0, 0, 0, 4654, 4652, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4658, 1, 0, 0, 0, 4656, 4654, 1, 0, 0, 0, 4657, 4649, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4660, 1, 0, 0, 0, 4659, 4661, 3, 400, 200, 0, 4660, 4659, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 375, 1, 0, 0, 0, 4662, 4663, 5, 640, 0, 0, 4663, 4667, 5, 415, 0, 0, 4664, 4665, 5, 678, 0, 0, 4665, 4666, 5, 857, 0, 0, 4666, 4668, 5, 882, 0, 0, 4667, 4664, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4673, 1, 0, 0, 0, 4669, 4670, 5, 868, 0, 0, 4670, 4671, 5, 529, 0, 0, 4671, 4672, 5, 857, 0, 0, 4672, 4674, 5, 882, 0, 0, 4673, 4669, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 4679, 1, 0, 0, 0, 4675, 4676, 5, 868, 0, 0, 4676, 4677, 5, 363, 0, 0, 4677, 4678, 5, 857, 0, 0, 4678, 4680, 5, 882, 0, 0, 4679, 4675, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 377, 1, 0, 0, 0, 4681, 4682, 5, 646, 0, 0, 4682, 4683, 5, 415, 0, 0, 4683, 379, 1, 0, 0, 0, 4684, 4685, 3, 382, 191, 0, 4685, 4686, 5, 857, 0, 0, 4686, 4687, 5, 882, 0, 0, 4687, 4712, 1, 0, 0, 0, 4688, 4689, 3, 384, 192, 0, 4689, 4690, 5, 857, 0, 0, 4690, 4691, 3, 722, 361, 0, 4691, 4712, 1, 0, 0, 0, 4692, 4693, 3, 386, 193, 0, 4693, 4694, 5, 857, 0, 0, 4694, 4695, 7, 26, 0, 0, 4695, 4712, 1, 0, 0, 0, 4696, 4712, 3, 388, 194, 0, 4697, 4698, 5, 424, 0, 0, 4698, 4699, 5, 857, 0, 0, 4699, 4708, 5, 866, 0, 0, 4700, 4705, 3, 716, 358, 0, 4701, 4702, 5, 868, 0, 0, 4702, 4704, 3, 716, 358, 0, 4703, 4701, 1, 0, 0, 0, 4704, 4707, 1, 0, 0, 0, 4705, 4703, 1, 0, 0, 0, 4705, 4706, 1, 0, 0, 0, 4706, 4709, 1, 0, 0, 0, 4707, 4705, 1, 0, 0, 0, 4708, 4700, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4710, 1, 0, 0, 0, 4710, 4712, 5, 867, 0, 0, 4711, 4684, 1, 0, 0, 0, 4711, 4688, 1, 0, 0, 0, 4711, 4692, 1, 0, 0, 0, 4711, 4696, 1, 0, 0, 0, 4711, 4697, 1, 0, 0, 0, 4712, 381, 1, 0, 0, 0, 4713, 4714, 7, 65, 0, 0, 4714, 383, 1, 0, 0, 0, 4715, 4716, 7, 66, 0, 0, 4716, 385, 1, 0, 0, 0, 4717, 4718, 7, 67, 0, 0, 4718, 387, 1, 0, 0, 0, 4719, 4720, 5, 543, 0, 0, 4720, 4721, 5, 857, 0, 0, 4721, 4733, 7, 68, 0, 0, 4722, 4723, 5, 574, 0, 0, 4723, 4724, 5, 857, 0, 0, 4724, 4733, 7, 69, 0, 0, 4725, 4726, 5, 310, 0, 0, 4726, 4730, 5, 857, 0, 0, 4727, 4731, 5, 507, 0, 0, 4728, 4731, 5, 450, 0, 0, 4729, 4731, 3, 412, 206, 0, 4730, 4727, 1, 0, 0, 0, 4730, 4728, 1, 0, 0, 0, 4730, 4729, 1, 0, 0, 0, 4731, 4733, 1, 0, 0, 0, 4732, 4719, 1, 0, 0, 0, 4732, 4722, 1, 0, 0, 0, 4732, 4725, 1, 0, 0, 0, 4733, 389, 1, 0, 0, 0, 4734, 4735, 3, 392, 196, 0, 4735, 4736, 5, 857, 0, 0, 4736, 4737, 5, 882, 0, 0, 4737, 4762, 1, 0, 0, 0, 4738, 4739, 3, 394, 197, 0, 4739, 4740, 5, 857, 0, 0, 4740, 4741, 3, 722, 361, 0, 4741, 4762, 1, 0, 0, 0, 4742, 4743, 3, 396, 198, 0, 4743, 4744, 5, 857, 0, 0, 4744, 4745, 7, 26, 0, 0, 4745, 4762, 1, 0, 0, 0, 4746, 4762, 3, 398, 199, 0, 4747, 4748, 5, 424, 0, 0, 4748, 4749, 5, 857, 0, 0, 4749, 4758, 5, 866, 0, 0, 4750, 4755, 3, 716, 358, 0, 4751, 4752, 5, 868, 0, 0, 4752, 4754, 3, 716, 358, 0, 4753, 4751, 1, 0, 0, 0, 4754, 4757, 1, 0, 0, 0, 4755, 4753, 1, 0, 0, 0, 4755, 4756, 1, 0, 0, 0, 4756, 4759, 1, 0, 0, 0, 4757, 4755, 1, 0, 0, 0, 4758, 4750, 1, 0, 0, 0, 4758, 4759, 1, 0, 0, 0, 4759, 4760, 1, 0, 0, 0, 4760, 4762, 5, 867, 0, 0, 4761, 4734, 1, 0, 0, 0, 4761, 4738, 1, 0, 0, 0, 4761, 4742, 1, 0, 0, 0, 4761, 4746, 1, 0, 0, 0, 4761, 4747, 1, 0, 0, 0, 4762, 391, 1, 0, 0, 0, 4763, 4764, 7, 70, 0, 0, 4764, 393, 1, 0, 0, 0, 4765, 4766, 7, 71, 0, 0, 4766, 395, 1, 0, 0, 0, 4767, 4768, 7, 72, 0, 0, 4768, 397, 1, 0, 0, 0, 4769, 4770, 5, 543, 0, 0, 4770, 4771, 5, 857, 0, 0, 4771, 4783, 7, 68, 0, 0, 4772, 4773, 5, 574, 0, 0, 4773, 4774, 5, 857, 0, 0, 4774, 4783, 7, 73, 0, 0, 4775, 4776, 5, 310, 0, 0, 4776, 4780, 5, 857, 0, 0, 4777, 4781, 5, 507, 0, 0, 4778, 4781, 5, 450, 0, 0, 4779, 4781, 3, 412, 206, 0, 4780, 4777, 1, 0, 0, 0, 4780, 4778, 1, 0, 0, 0, 4780, 4779, 1, 0, 0, 0, 4781, 4783, 1, 0, 0, 0, 4782, 4769, 1, 0, 0, 0, 4782, 4772, 1, 0, 0, 0, 4782, 4775, 1, 0, 0, 0, 4783, 399, 1, 0, 0, 0, 4784, 4785, 5, 65, 0, 0, 4785, 4786, 5, 328, 0, 0, 4786, 4787, 5, 882, 0, 0, 4787, 401, 1, 0, 0, 0, 4788, 4789, 5, 565, 0, 0, 4789, 4790, 5, 857, 0, 0, 4790, 4791, 5, 866, 0, 0, 4791, 4796, 3, 638, 319, 0, 4792, 4793, 5, 868, 0, 0, 4793, 4795, 3, 638, 319, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4798, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4799, 1, 0, 0, 0, 4798, 4796, 1, 0, 0, 0, 4799, 4800, 5, 867, 0, 0, 4800, 4852, 1, 0, 0, 0, 4801, 4802, 5, 567, 0, 0, 4802, 4803, 5, 857, 0, 0, 4803, 4804, 5, 866, 0, 0, 4804, 4809, 3, 638, 319, 0, 4805, 4806, 5, 868, 0, 0, 4806, 4808, 3, 638, 319, 0, 4807, 4805, 1, 0, 0, 0, 4808, 4811, 1, 0, 0, 0, 4809, 4807, 1, 0, 0, 0, 4809, 4810, 1, 0, 0, 0, 4810, 4812, 1, 0, 0, 0, 4811, 4809, 1, 0, 0, 0, 4812, 4813, 5, 867, 0, 0, 4813, 4852, 1, 0, 0, 0, 4814, 4815, 5, 566, 0, 0, 4815, 4816, 5, 857, 0, 0, 4816, 4817, 5, 866, 0, 0, 4817, 4818, 3, 660, 330, 0, 4818, 4819, 5, 867, 0, 0, 4819, 4852, 1, 0, 0, 0, 4820, 4821, 5, 568, 0, 0, 4821, 4822, 5, 857, 0, 0, 4822, 4823, 5, 866, 0, 0, 4823, 4824, 3, 660, 330, 0, 4824, 4825, 5, 867, 0, 0, 4825, 4852, 1, 0, 0, 0, 4826, 4827, 5, 570, 0, 0, 4827, 4828, 5, 857, 0, 0, 4828, 4829, 5, 866, 0, 0, 4829, 4830, 3, 760, 380, 0, 4830, 4831, 5, 867, 0, 0, 4831, 4852, 1, 0, 0, 0, 4832, 4833, 5, 571, 0, 0, 4833, 4834, 5, 857, 0, 0, 4834, 4835, 5, 866, 0, 0, 4835, 4836, 3, 760, 380, 0, 4836, 4837, 5, 867, 0, 0, 4837, 4852, 1, 0, 0, 0, 4838, 4839, 5, 569, 0, 0, 4839, 4840, 5, 857, 0, 0, 4840, 4841, 5, 866, 0, 0, 4841, 4846, 3, 404, 202, 0, 4842, 4843, 5, 868, 0, 0, 4843, 4845, 3, 404, 202, 0, 4844, 4842, 1, 0, 0, 0, 4845, 4848, 1, 0, 0, 0, 4846, 4844, 1, 0, 0, 0, 4846, 4847, 1, 0, 0, 0, 4847, 4849, 1, 0, 0, 0, 4848, 4846, 1, 0, 0, 0, 4849, 4850, 5, 867, 0, 0, 4850, 4852, 1, 0, 0, 0, 4851, 4788, 1, 0, 0, 0, 4851, 4801, 1, 0, 0, 0, 4851, 4814, 1, 0, 0, 0, 4851, 4820, 1, 0, 0, 0, 4851, 4826, 1, 0, 0, 0, 4851, 4832, 1, 0, 0, 0, 4851, 4838, 1, 0, 0, 0, 4852, 403, 1, 0, 0, 0, 4853, 4854, 5, 866, 0, 0, 4854, 4855, 3, 662, 331, 0, 4855, 4856, 5, 868, 0, 0, 4856, 4857, 3, 662, 331, 0, 4857, 4858, 5, 867, 0, 0, 4858, 405, 1, 0, 0, 0, 4859, 4860, 7, 74, 0, 0, 4860, 407, 1, 0, 0, 0, 4861, 4862, 7, 75, 0, 0, 4862, 4863, 5, 857, 0, 0, 4863, 4887, 3, 412, 206, 0, 4864, 4865, 5, 460, 0, 0, 4865, 4866, 5, 857, 0, 0, 4866, 4867, 5, 882, 0, 0, 4867, 4868, 5, 868, 0, 0, 4868, 4869, 5, 461, 0, 0, 4869, 4870, 5, 857, 0, 0, 4870, 4887, 3, 722, 361, 0, 4871, 4872, 5, 611, 0, 0, 4872, 4873, 5, 857, 0, 0, 4873, 4874, 5, 882, 0, 0, 4874, 4875, 5, 868, 0, 0, 4875, 4876, 5, 612, 0, 0, 4876, 4877, 5, 857, 0, 0, 4877, 4887, 3, 722, 361, 0, 4878, 4879, 5, 557, 0, 0, 4879, 4880, 5, 857, 0, 0, 4880, 4881, 5, 882, 0, 0, 4881, 4882, 5, 868, 0, 0, 4882, 4883, 5, 558, 0, 0, 4883, 4884, 5, 857, 0, 0, 4884, 4887, 3, 722, 361, 0, 4885, 4887, 5, 634, 0, 0, 4886, 4861, 1, 0, 0, 0, 4886, 4864, 1, 0, 0, 0, 4886, 4871, 1, 0, 0, 0, 4886, 4878, 1, 0, 0, 0, 4886, 4885, 1, 0, 0, 0, 4887, 409, 1, 0, 0, 0, 4888, 4889, 5, 678, 0, 0, 4889, 4890, 5, 857, 0, 0, 4890, 4901, 5, 882, 0, 0, 4891, 4892, 5, 529, 0, 0, 4892, 4893, 5, 857, 0, 0, 4893, 4901, 5, 882, 0, 0, 4894, 4895, 5, 363, 0, 0, 4895, 4896, 5, 857, 0, 0, 4896, 4901, 5, 882, 0, 0, 4897, 4898, 5, 535, 0, 0, 4898, 4899, 5, 857, 0, 0, 4899, 4901, 5, 882, 0, 0, 4900, 4888, 1, 0, 0, 0, 4900, 4891, 1, 0, 0, 0, 4900, 4894, 1, 0, 0, 0, 4900, 4897, 1, 0, 0, 0, 4901, 411, 1, 0, 0, 0, 4902, 4907, 3, 706, 353, 0, 4903, 4904, 5, 868, 0, 0, 4904, 4906, 3, 706, 353, 0, 4905, 4903, 1, 0, 0, 0, 4906, 4909, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4912, 1, 0, 0, 0, 4909, 4907, 1, 0, 0, 0, 4910, 4912, 5, 882, 0, 0, 4911, 4902, 1, 0, 0, 0, 4911, 4910, 1, 0, 0, 0, 4912, 413, 1, 0, 0, 0, 4913, 4914, 5, 694, 0, 0, 4914, 4915, 7, 76, 0, 0, 4915, 4917, 3, 708, 354, 0, 4916, 4918, 7, 77, 0, 0, 4917, 4916, 1, 0, 0, 0, 4917, 4918, 1, 0, 0, 0, 4918, 415, 1, 0, 0, 0, 4919, 4920, 5, 694, 0, 0, 4920, 4921, 5, 378, 0, 0, 4921, 4927, 3, 708, 354, 0, 4922, 4925, 5, 654, 0, 0, 4923, 4924, 5, 65, 0, 0, 4924, 4926, 5, 489, 0, 0, 4925, 4923, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 4928, 1, 0, 0, 0, 4927, 4922, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 417, 1, 0, 0, 0, 4929, 4930, 5, 694, 0, 0, 4930, 4931, 5, 540, 0, 0, 4931, 4932, 3, 708, 354, 0, 4932, 419, 1, 0, 0, 0, 4933, 4934, 5, 694, 0, 0, 4934, 4935, 5, 341, 0, 0, 4935, 4938, 3, 708, 354, 0, 4936, 4937, 5, 513, 0, 0, 4937, 4939, 5, 533, 0, 0, 4938, 4936, 1, 0, 0, 0, 4938, 4939, 1, 0, 0, 0, 4939, 421, 1, 0, 0, 0, 4940, 4941, 5, 694, 0, 0, 4941, 4942, 5, 583, 0, 0, 4942, 4943, 3, 708, 354, 0, 4943, 423, 1, 0, 0, 0, 4944, 4945, 5, 694, 0, 0, 4945, 4948, 5, 551, 0, 0, 4946, 4947, 5, 33, 0, 0, 4947, 4949, 3, 708, 354, 0, 4948, 4946, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 425, 1, 0, 0, 0, 4950, 4951, 5, 540, 0, 0, 4951, 4952, 3, 716, 358, 0, 4952, 4955, 5, 68, 0, 0, 4953, 4956, 5, 882, 0, 0, 4954, 4956, 5, 892, 0, 0, 4955, 4953, 1, 0, 0, 0, 4955, 4954, 1, 0, 0, 0, 4956, 427, 1, 0, 0, 0, 4957, 4958, 5, 717, 0, 0, 4958, 4961, 3, 716, 358, 0, 4959, 4960, 5, 188, 0, 0, 4960, 4962, 3, 762, 381, 0, 4961, 4959, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 429, 1, 0, 0, 0, 4963, 4964, 7, 78, 0, 0, 4964, 4965, 5, 540, 0, 0, 4965, 4966, 3, 716, 358, 0, 4966, 431, 1, 0, 0, 0, 4967, 4970, 3, 434, 217, 0, 4968, 4970, 3, 4, 2, 0, 4969, 4967, 1, 0, 0, 0, 4969, 4968, 1, 0, 0, 0, 4970, 433, 1, 0, 0, 0, 4971, 4972, 3, 716, 358, 0, 4972, 4973, 5, 878, 0, 0, 4973, 4975, 1, 0, 0, 0, 4974, 4971, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 4976, 1, 0, 0, 0, 4976, 4982, 5, 317, 0, 0, 4977, 4978, 3, 454, 227, 0, 4978, 4979, 5, 869, 0, 0, 4979, 4981, 1, 0, 0, 0, 4980, 4977, 1, 0, 0, 0, 4981, 4984, 1, 0, 0, 0, 4982, 4980, 1, 0, 0, 0, 4982, 4983, 1, 0, 0, 0, 4983, 4990, 1, 0, 0, 0, 4984, 4982, 1, 0, 0, 0, 4985, 4986, 3, 456, 228, 0, 4986, 4987, 5, 869, 0, 0, 4987, 4989, 1, 0, 0, 0, 4988, 4985, 1, 0, 0, 0, 4989, 4992, 1, 0, 0, 0, 4990, 4988, 1, 0, 0, 0, 4990, 4991, 1, 0, 0, 0, 4991, 4998, 1, 0, 0, 0, 4992, 4990, 1, 0, 0, 0, 4993, 4994, 3, 458, 229, 0, 4994, 4995, 5, 869, 0, 0, 4995, 4997, 1, 0, 0, 0, 4996, 4993, 1, 0, 0, 0, 4997, 5000, 1, 0, 0, 0, 4998, 4996, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5006, 1, 0, 0, 0, 5000, 4998, 1, 0, 0, 0, 5001, 5002, 3, 460, 230, 0, 5002, 5003, 5, 869, 0, 0, 5003, 5005, 1, 0, 0, 0, 5004, 5001, 1, 0, 0, 0, 5005, 5008, 1, 0, 0, 0, 5006, 5004, 1, 0, 0, 0, 5006, 5007, 1, 0, 0, 0, 5007, 5012, 1, 0, 0, 0, 5008, 5006, 1, 0, 0, 0, 5009, 5011, 3, 464, 232, 0, 5010, 5009, 1, 0, 0, 0, 5011, 5014, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5015, 1, 0, 0, 0, 5014, 5012, 1, 0, 0, 0, 5015, 5017, 5, 378, 0, 0, 5016, 5018, 3, 716, 358, 0, 5017, 5016, 1, 0, 0, 0, 5017, 5018, 1, 0, 0, 0, 5018, 435, 1, 0, 0, 0, 5019, 5022, 5, 23, 0, 0, 5020, 5023, 3, 716, 358, 0, 5021, 5023, 3, 814, 407, 0, 5022, 5020, 1, 0, 0, 0, 5022, 5021, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5025, 1, 0, 0, 0, 5024, 5026, 3, 466, 233, 0, 5025, 5024, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 5025, 1, 0, 0, 0, 5027, 5028, 1, 0, 0, 0, 5028, 5035, 1, 0, 0, 0, 5029, 5031, 5, 53, 0, 0, 5030, 5032, 3, 464, 232, 0, 5031, 5030, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5031, 1, 0, 0, 0, 5033, 5034, 1, 0, 0, 0, 5034, 5036, 1, 0, 0, 0, 5035, 5029, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5038, 5, 378, 0, 0, 5038, 5039, 5, 23, 0, 0, 5039, 437, 1, 0, 0, 0, 5040, 5041, 5, 78, 0, 0, 5041, 5042, 3, 814, 407, 0, 5042, 5044, 5, 175, 0, 0, 5043, 5045, 3, 464, 232, 0, 5044, 5043, 1, 0, 0, 0, 5045, 5046, 1, 0, 0, 0, 5046, 5044, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5051, 1, 0, 0, 0, 5048, 5050, 3, 468, 234, 0, 5049, 5048, 1, 0, 0, 0, 5050, 5053, 1, 0, 0, 0, 5051, 5049, 1, 0, 0, 0, 5051, 5052, 1, 0, 0, 0, 5052, 5060, 1, 0, 0, 0, 5053, 5051, 1, 0, 0, 0, 5054, 5056, 5, 53, 0, 0, 5055, 5057, 3, 464, 232, 0, 5056, 5055, 1, 0, 0, 0, 5057, 5058, 1, 0, 0, 0, 5058, 5056, 1, 0, 0, 0, 5058, 5059, 1, 0, 0, 0, 5059, 5061, 1, 0, 0, 0, 5060, 5054, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5063, 5, 378, 0, 0, 5063, 5064, 5, 78, 0, 0, 5064, 439, 1, 0, 0, 0, 5065, 5066, 5, 90, 0, 0, 5066, 5067, 3, 716, 358, 0, 5067, 441, 1, 0, 0, 0, 5068, 5069, 5, 97, 0, 0, 5069, 5070, 3, 716, 358, 0, 5070, 443, 1, 0, 0, 0, 5071, 5072, 3, 716, 358, 0, 5072, 5073, 5, 878, 0, 0, 5073, 5075, 1, 0, 0, 0, 5074, 5071, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5078, 5, 106, 0, 0, 5077, 5079, 3, 464, 232, 0, 5078, 5077, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5078, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 5, 378, 0, 0, 5083, 5085, 5, 106, 0, 0, 5084, 5086, 3, 716, 358, 0, 5085, 5084, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 445, 1, 0, 0, 0, 5087, 5088, 3, 716, 358, 0, 5088, 5089, 5, 878, 0, 0, 5089, 5091, 1, 0, 0, 0, 5090, 5087, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5094, 5, 142, 0, 0, 5093, 5095, 3, 464, 232, 0, 5094, 5093, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5094, 1, 0, 0, 0, 5096, 5097, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 5099, 5, 676, 0, 0, 5099, 5100, 3, 814, 407, 0, 5100, 5101, 5, 378, 0, 0, 5101, 5103, 5, 142, 0, 0, 5102, 5104, 3, 716, 358, 0, 5103, 5102, 1, 0, 0, 0, 5103, 5104, 1, 0, 0, 0, 5104, 447, 1, 0, 0, 0, 5105, 5106, 5, 148, 0, 0, 5106, 5107, 3, 814, 407, 0, 5107, 449, 1, 0, 0, 0, 5108, 5109, 3, 716, 358, 0, 5109, 5110, 5, 878, 0, 0, 5110, 5112, 1, 0, 0, 0, 5111, 5108, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 5114, 5, 193, 0, 0, 5114, 5115, 3, 814, 407, 0, 5115, 5117, 5, 371, 0, 0, 5116, 5118, 3, 464, 232, 0, 5117, 5116, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5117, 1, 0, 0, 0, 5119, 5120, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5122, 5, 378, 0, 0, 5122, 5124, 5, 193, 0, 0, 5123, 5125, 3, 716, 358, 0, 5124, 5123, 1, 0, 0, 0, 5124, 5125, 1, 0, 0, 0, 5125, 451, 1, 0, 0, 0, 5126, 5127, 5, 334, 0, 0, 5127, 5142, 3, 716, 358, 0, 5128, 5133, 5, 64, 0, 0, 5129, 5131, 5, 501, 0, 0, 5130, 5129, 1, 0, 0, 0, 5130, 5131, 1, 0, 0, 0, 5131, 5132, 1, 0, 0, 0, 5132, 5134, 5, 68, 0, 0, 5133, 5130, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5136, 3, 716, 358, 0, 5136, 5137, 5, 88, 0, 0, 5137, 5138, 3, 714, 357, 0, 5138, 5142, 1, 0, 0, 0, 5139, 5140, 5, 516, 0, 0, 5140, 5142, 3, 716, 358, 0, 5141, 5126, 1, 0, 0, 0, 5141, 5128, 1, 0, 0, 0, 5141, 5139, 1, 0, 0, 0, 5142, 453, 1, 0, 0, 0, 5143, 5144, 5, 41, 0, 0, 5144, 5145, 3, 714, 357, 0, 5145, 5148, 3, 736, 368, 0, 5146, 5147, 5, 42, 0, 0, 5147, 5149, 3, 814, 407, 0, 5148, 5146, 1, 0, 0, 0, 5148, 5149, 1, 0, 0, 0, 5149, 455, 1, 0, 0, 0, 5150, 5151, 5, 41, 0, 0, 5151, 5152, 3, 716, 358, 0, 5152, 5153, 5, 30, 0, 0, 5153, 5160, 5, 65, 0, 0, 5154, 5161, 3, 722, 361, 0, 5155, 5157, 5, 164, 0, 0, 5156, 5158, 5, 682, 0, 0, 5157, 5156, 1, 0, 0, 0, 5157, 5158, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5161, 5, 882, 0, 0, 5160, 5154, 1, 0, 0, 0, 5160, 5155, 1, 0, 0, 0, 5161, 457, 1, 0, 0, 0, 5162, 5163, 5, 41, 0, 0, 5163, 5164, 3, 716, 358, 0, 5164, 5165, 5, 38, 0, 0, 5165, 5166, 5, 65, 0, 0, 5166, 5167, 3, 210, 105, 0, 5167, 459, 1, 0, 0, 0, 5168, 5169, 5, 41, 0, 0, 5169, 5170, 7, 79, 0, 0, 5170, 5171, 5, 417, 0, 0, 5171, 5172, 5, 65, 0, 0, 5172, 5177, 3, 462, 231, 0, 5173, 5174, 5, 868, 0, 0, 5174, 5176, 3, 462, 231, 0, 5175, 5173, 1, 0, 0, 0, 5176, 5179, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 5180, 1, 0, 0, 0, 5179, 5177, 1, 0, 0, 0, 5180, 5181, 3, 432, 216, 0, 5181, 461, 1, 0, 0, 0, 5182, 5194, 3, 722, 361, 0, 5183, 5185, 5, 164, 0, 0, 5184, 5186, 5, 682, 0, 0, 5185, 5184, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5187, 1, 0, 0, 0, 5187, 5194, 5, 882, 0, 0, 5188, 5194, 3, 716, 358, 0, 5189, 5194, 5, 165, 0, 0, 5190, 5191, 5, 114, 0, 0, 5191, 5194, 5, 407, 0, 0, 5192, 5194, 5, 163, 0, 0, 5193, 5182, 1, 0, 0, 0, 5193, 5183, 1, 0, 0, 0, 5193, 5188, 1, 0, 0, 0, 5193, 5189, 1, 0, 0, 0, 5193, 5190, 1, 0, 0, 0, 5193, 5192, 1, 0, 0, 0, 5194, 463, 1, 0, 0, 0, 5195, 5198, 3, 18, 9, 0, 5196, 5198, 3, 4, 2, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5196, 1, 0, 0, 0, 5198, 5199, 1, 0, 0, 0, 5199, 5200, 5, 869, 0, 0, 5200, 465, 1, 0, 0, 0, 5201, 5204, 5, 191, 0, 0, 5202, 5205, 3, 734, 367, 0, 5203, 5205, 3, 814, 407, 0, 5204, 5202, 1, 0, 0, 0, 5204, 5203, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5208, 5, 175, 0, 0, 5207, 5209, 3, 464, 232, 0, 5208, 5207, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5208, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 467, 1, 0, 0, 0, 5212, 5213, 5, 54, 0, 0, 5213, 5214, 3, 814, 407, 0, 5214, 5216, 5, 175, 0, 0, 5215, 5217, 3, 464, 232, 0, 5216, 5215, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5216, 1, 0, 0, 0, 5218, 5219, 1, 0, 0, 0, 5219, 469, 1, 0, 0, 0, 5220, 5221, 5, 8, 0, 0, 5221, 5223, 5, 678, 0, 0, 5222, 5224, 3, 768, 384, 0, 5223, 5222, 1, 0, 0, 0, 5223, 5224, 1, 0, 0, 0, 5224, 5281, 1, 0, 0, 0, 5225, 5230, 3, 502, 251, 0, 5226, 5227, 5, 868, 0, 0, 5227, 5229, 3, 502, 251, 0, 5228, 5226, 1, 0, 0, 0, 5229, 5232, 1, 0, 0, 0, 5230, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 0, 5231, 5282, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5233, 5238, 3, 504, 252, 0, 5234, 5235, 5, 868, 0, 0, 5235, 5237, 3, 504, 252, 0, 5236, 5234, 1, 0, 0, 0, 5237, 5240, 1, 0, 0, 0, 5238, 5236, 1, 0, 0, 0, 5238, 5239, 1, 0, 0, 0, 5239, 5255, 1, 0, 0, 0, 5240, 5238, 1, 0, 0, 0, 5241, 5253, 5, 144, 0, 0, 5242, 5254, 5, 505, 0, 0, 5243, 5250, 3, 516, 258, 0, 5244, 5246, 5, 11, 0, 0, 5245, 5244, 1, 0, 0, 0, 5245, 5246, 1, 0, 0, 0, 5246, 5247, 1, 0, 0, 0, 5247, 5249, 3, 516, 258, 0, 5248, 5245, 1, 0, 0, 0, 5249, 5252, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5254, 1, 0, 0, 0, 5252, 5250, 1, 0, 0, 0, 5253, 5242, 1, 0, 0, 0, 5253, 5243, 1, 0, 0, 0, 5254, 5256, 1, 0, 0, 0, 5255, 5241, 1, 0, 0, 0, 5255, 5256, 1, 0, 0, 0, 5256, 5263, 1, 0, 0, 0, 5257, 5259, 5, 194, 0, 0, 5258, 5260, 3, 518, 259, 0, 5259, 5258, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 5259, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5264, 1, 0, 0, 0, 5263, 5257, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 5269, 1, 0, 0, 0, 5265, 5268, 3, 520, 260, 0, 5266, 5268, 3, 522, 261, 0, 5267, 5265, 1, 0, 0, 0, 5267, 5266, 1, 0, 0, 0, 5268, 5271, 1, 0, 0, 0, 5269, 5267, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5274, 1, 0, 0, 0, 5271, 5269, 1, 0, 0, 0, 5272, 5273, 7, 80, 0, 0, 5273, 5275, 5, 882, 0, 0, 5274, 5272, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5282, 1, 0, 0, 0, 5276, 5277, 3, 666, 333, 0, 5277, 5278, 5, 42, 0, 0, 5278, 5279, 5, 582, 0, 0, 5279, 5280, 3, 478, 239, 0, 5280, 5282, 1, 0, 0, 0, 5281, 5225, 1, 0, 0, 0, 5281, 5233, 1, 0, 0, 0, 5281, 5276, 1, 0, 0, 0, 5282, 471, 1, 0, 0, 0, 5283, 5284, 5, 34, 0, 0, 5284, 5286, 5, 678, 0, 0, 5285, 5287, 3, 770, 385, 0, 5286, 5285, 1, 0, 0, 0, 5286, 5287, 1, 0, 0, 0, 5287, 5288, 1, 0, 0, 0, 5288, 5290, 3, 694, 347, 0, 5289, 5291, 3, 506, 253, 0, 5290, 5289, 1, 0, 0, 0, 5290, 5291, 1, 0, 0, 0, 5291, 5299, 1, 0, 0, 0, 5292, 5293, 5, 868, 0, 0, 5293, 5295, 3, 694, 347, 0, 5294, 5296, 3, 506, 253, 0, 5295, 5294, 1, 0, 0, 0, 5295, 5296, 1, 0, 0, 0, 5296, 5298, 1, 0, 0, 0, 5297, 5292, 1, 0, 0, 0, 5298, 5301, 1, 0, 0, 0, 5299, 5297, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5300, 5305, 1, 0, 0, 0, 5301, 5299, 1, 0, 0, 0, 5302, 5303, 5, 42, 0, 0, 5303, 5304, 5, 582, 0, 0, 5304, 5306, 3, 478, 239, 0, 5305, 5302, 1, 0, 0, 0, 5305, 5306, 1, 0, 0, 0, 5306, 5321, 1, 0, 0, 0, 5307, 5319, 5, 144, 0, 0, 5308, 5320, 5, 505, 0, 0, 5309, 5316, 3, 516, 258, 0, 5310, 5312, 5, 11, 0, 0, 5311, 5310, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5315, 3, 516, 258, 0, 5314, 5311, 1, 0, 0, 0, 5315, 5318, 1, 0, 0, 0, 5316, 5314, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5320, 1, 0, 0, 0, 5318, 5316, 1, 0, 0, 0, 5319, 5308, 1, 0, 0, 0, 5319, 5309, 1, 0, 0, 0, 5320, 5322, 1, 0, 0, 0, 5321, 5307, 1, 0, 0, 0, 5321, 5322, 1, 0, 0, 0, 5322, 5329, 1, 0, 0, 0, 5323, 5325, 5, 194, 0, 0, 5324, 5326, 3, 518, 259, 0, 5325, 5324, 1, 0, 0, 0, 5326, 5327, 1, 0, 0, 0, 5327, 5325, 1, 0, 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 5330, 1, 0, 0, 0, 5329, 5323, 1, 0, 0, 0, 5329, 5330, 1, 0, 0, 0, 5330, 5335, 1, 0, 0, 0, 5331, 5334, 3, 520, 260, 0, 5332, 5334, 3, 522, 261, 0, 5333, 5331, 1, 0, 0, 0, 5333, 5332, 1, 0, 0, 0, 5334, 5337, 1, 0, 0, 0, 5335, 5333, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 5340, 1, 0, 0, 0, 5337, 5335, 1, 0, 0, 0, 5338, 5339, 7, 80, 0, 0, 5339, 5341, 5, 882, 0, 0, 5340, 5338, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 473, 1, 0, 0, 0, 5342, 5343, 5, 51, 0, 0, 5343, 5345, 5, 678, 0, 0, 5344, 5346, 3, 768, 384, 0, 5345, 5344, 1, 0, 0, 0, 5345, 5346, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5352, 3, 694, 347, 0, 5348, 5349, 5, 868, 0, 0, 5349, 5351, 3, 694, 347, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5354, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 475, 1, 0, 0, 0, 5354, 5352, 1, 0, 0, 0, 5355, 5356, 5, 73, 0, 0, 5356, 5361, 3, 530, 265, 0, 5357, 5358, 5, 868, 0, 0, 5358, 5360, 3, 530, 265, 0, 5359, 5357, 1, 0, 0, 0, 5360, 5363, 1, 0, 0, 0, 5361, 5359, 1, 0, 0, 0, 5361, 5362, 1, 0, 0, 0, 5362, 5364, 1, 0, 0, 0, 5363, 5361, 1, 0, 0, 0, 5364, 5366, 5, 119, 0, 0, 5365, 5367, 3, 498, 249, 0, 5366, 5365, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 5368, 1, 0, 0, 0, 5368, 5369, 3, 534, 267, 0, 5369, 5379, 5, 176, 0, 0, 5370, 5375, 3, 510, 255, 0, 5371, 5372, 5, 868, 0, 0, 5372, 5374, 3, 510, 255, 0, 5373, 5371, 1, 0, 0, 0, 5374, 5377, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5380, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5378, 5380, 3, 664, 332, 0, 5379, 5370, 1, 0, 0, 0, 5379, 5378, 1, 0, 0, 0, 5380, 5395, 1, 0, 0, 0, 5381, 5393, 5, 144, 0, 0, 5382, 5394, 5, 505, 0, 0, 5383, 5390, 3, 516, 258, 0, 5384, 5386, 5, 11, 0, 0, 5385, 5384, 1, 0, 0, 0, 5385, 5386, 1, 0, 0, 0, 5386, 5387, 1, 0, 0, 0, 5387, 5389, 3, 516, 258, 0, 5388, 5385, 1, 0, 0, 0, 5389, 5392, 1, 0, 0, 0, 5390, 5388, 1, 0, 0, 0, 5390, 5391, 1, 0, 0, 0, 5391, 5394, 1, 0, 0, 0, 5392, 5390, 1, 0, 0, 0, 5393, 5382, 1, 0, 0, 0, 5393, 5383, 1, 0, 0, 0, 5394, 5396, 1, 0, 0, 0, 5395, 5381, 1, 0, 0, 0, 5395, 5396, 1, 0, 0, 0, 5396, 5406, 1, 0, 0, 0, 5397, 5403, 5, 194, 0, 0, 5398, 5399, 5, 73, 0, 0, 5399, 5402, 5, 121, 0, 0, 5400, 5402, 3, 518, 259, 0, 5401, 5398, 1, 0, 0, 0, 5401, 5400, 1, 0, 0, 0, 5402, 5405, 1, 0, 0, 0, 5403, 5401, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5407, 1, 0, 0, 0, 5405, 5403, 1, 0, 0, 0, 5406, 5397, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5415, 1, 0, 0, 0, 5408, 5409, 5, 13, 0, 0, 5409, 5413, 3, 694, 347, 0, 5410, 5411, 5, 194, 0, 0, 5411, 5412, 5, 582, 0, 0, 5412, 5414, 3, 478, 239, 0, 5413, 5410, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5416, 1, 0, 0, 0, 5415, 5408, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5445, 1, 0, 0, 0, 5417, 5420, 5, 73, 0, 0, 5418, 5419, 5, 547, 0, 0, 5419, 5421, 5, 119, 0, 0, 5420, 5418, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5427, 3, 666, 333, 0, 5423, 5424, 5, 868, 0, 0, 5424, 5426, 3, 666, 333, 0, 5425, 5423, 1, 0, 0, 0, 5426, 5429, 1, 0, 0, 0, 5427, 5425, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5430, 1, 0, 0, 0, 5429, 5427, 1, 0, 0, 0, 5430, 5431, 5, 176, 0, 0, 5431, 5436, 3, 666, 333, 0, 5432, 5433, 5, 868, 0, 0, 5433, 5435, 3, 666, 333, 0, 5434, 5432, 1, 0, 0, 0, 5435, 5438, 1, 0, 0, 0, 5436, 5434, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 5442, 1, 0, 0, 0, 5438, 5436, 1, 0, 0, 0, 5439, 5440, 5, 194, 0, 0, 5440, 5441, 5, 704, 0, 0, 5441, 5443, 5, 121, 0, 0, 5442, 5439, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5445, 1, 0, 0, 0, 5444, 5355, 1, 0, 0, 0, 5444, 5417, 1, 0, 0, 0, 5445, 477, 1, 0, 0, 0, 5446, 5455, 5, 42, 0, 0, 5447, 5455, 5, 505, 0, 0, 5448, 5451, 5, 7, 0, 0, 5449, 5450, 5, 59, 0, 0, 5450, 5452, 3, 664, 332, 0, 5451, 5449, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 5455, 1, 0, 0, 0, 5453, 5455, 3, 664, 332, 0, 5454, 5446, 1, 0, 0, 0, 5454, 5447, 1, 0, 0, 0, 5454, 5448, 1, 0, 0, 0, 5454, 5453, 1, 0, 0, 0, 5455, 479, 1, 0, 0, 0, 5456, 5457, 5, 73, 0, 0, 5457, 5458, 5, 547, 0, 0, 5458, 5459, 5, 119, 0, 0, 5459, 5460, 3, 694, 347, 0, 5460, 5461, 5, 176, 0, 0, 5461, 5466, 3, 694, 347, 0, 5462, 5463, 5, 868, 0, 0, 5463, 5465, 3, 694, 347, 0, 5464, 5462, 1, 0, 0, 0, 5465, 5468, 1, 0, 0, 0, 5466, 5464, 1, 0, 0, 0, 5466, 5467, 1, 0, 0, 0, 5467, 5472, 1, 0, 0, 0, 5468, 5466, 1, 0, 0, 0, 5469, 5470, 5, 194, 0, 0, 5470, 5471, 5, 73, 0, 0, 5471, 5473, 5, 121, 0, 0, 5472, 5469, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 481, 1, 0, 0, 0, 5474, 5475, 5, 8, 0, 0, 5475, 5476, 5, 739, 0, 0, 5476, 5477, 5, 74, 0, 0, 5477, 5483, 3, 656, 328, 0, 5478, 5480, 5, 190, 0, 0, 5479, 5481, 5, 857, 0, 0, 5480, 5479, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5484, 3, 490, 245, 0, 5483, 5478, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 5490, 1, 0, 0, 0, 5485, 5487, 5, 837, 0, 0, 5486, 5488, 5, 857, 0, 0, 5487, 5486, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5489, 1, 0, 0, 0, 5489, 5491, 3, 722, 361, 0, 5490, 5485, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 5496, 1, 0, 0, 0, 5492, 5494, 7, 39, 0, 0, 5493, 5495, 5, 66, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5497, 1, 0, 0, 0, 5496, 5492, 1, 0, 0, 0, 5496, 5497, 1, 0, 0, 0, 5497, 483, 1, 0, 0, 0, 5498, 5499, 5, 34, 0, 0, 5499, 5500, 5, 739, 0, 0, 5500, 5501, 5, 74, 0, 0, 5501, 5502, 3, 654, 327, 0, 5502, 5503, 5, 839, 0, 0, 5503, 5504, 5, 857, 0, 0, 5504, 5510, 7, 81, 0, 0, 5505, 5507, 5, 190, 0, 0, 5506, 5508, 5, 857, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5511, 3, 490, 245, 0, 5510, 5505, 1, 0, 0, 0, 5510, 5511, 1, 0, 0, 0, 5511, 5517, 1, 0, 0, 0, 5512, 5514, 5, 837, 0, 0, 5513, 5515, 5, 857, 0, 0, 5514, 5513, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5518, 3, 722, 361, 0, 5517, 5512, 1, 0, 0, 0, 5517, 5518, 1, 0, 0, 0, 5518, 5520, 1, 0, 0, 0, 5519, 5521, 7, 39, 0, 0, 5520, 5519, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 485, 1, 0, 0, 0, 5522, 5523, 5, 51, 0, 0, 5523, 5524, 5, 739, 0, 0, 5524, 5525, 5, 74, 0, 0, 5525, 5527, 3, 656, 328, 0, 5526, 5528, 5, 66, 0, 0, 5527, 5526, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 487, 1, 0, 0, 0, 5529, 5530, 5, 155, 0, 0, 5530, 5531, 5, 739, 0, 0, 5531, 5532, 5, 74, 0, 0, 5532, 5542, 3, 656, 328, 0, 5533, 5534, 5, 65, 0, 0, 5534, 5539, 3, 722, 361, 0, 5535, 5536, 5, 868, 0, 0, 5536, 5538, 3, 722, 361, 0, 5537, 5535, 1, 0, 0, 0, 5538, 5541, 1, 0, 0, 0, 5539, 5537, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5543, 1, 0, 0, 0, 5541, 5539, 1, 0, 0, 0, 5542, 5533, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 489, 1, 0, 0, 0, 5544, 5550, 3, 722, 361, 0, 5545, 5546, 3, 722, 361, 0, 5546, 5547, 5, 854, 0, 0, 5547, 5548, 3, 722, 361, 0, 5548, 5550, 1, 0, 0, 0, 5549, 5544, 1, 0, 0, 0, 5549, 5545, 1, 0, 0, 0, 5550, 5555, 1, 0, 0, 0, 5551, 5552, 5, 868, 0, 0, 5552, 5554, 3, 490, 245, 0, 5553, 5551, 1, 0, 0, 0, 5554, 5557, 1, 0, 0, 0, 5555, 5553, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 491, 1, 0, 0, 0, 5557, 5555, 1, 0, 0, 0, 5558, 5559, 5, 141, 0, 0, 5559, 5560, 5, 678, 0, 0, 5560, 5565, 3, 536, 268, 0, 5561, 5562, 5, 868, 0, 0, 5562, 5564, 3, 536, 268, 0, 5563, 5561, 1, 0, 0, 0, 5564, 5567, 1, 0, 0, 0, 5565, 5563, 1, 0, 0, 0, 5565, 5566, 1, 0, 0, 0, 5566, 493, 1, 0, 0, 0, 5567, 5565, 1, 0, 0, 0, 5568, 5570, 5, 149, 0, 0, 5569, 5571, 3, 768, 384, 0, 5570, 5569, 1, 0, 0, 0, 5570, 5571, 1, 0, 0, 0, 5571, 5572, 1, 0, 0, 0, 5572, 5577, 3, 530, 265, 0, 5573, 5574, 5, 868, 0, 0, 5574, 5576, 3, 530, 265, 0, 5575, 5573, 1, 0, 0, 0, 5576, 5579, 1, 0, 0, 0, 5577, 5575, 1, 0, 0, 0, 5577, 5578, 1, 0, 0, 0, 5578, 5580, 1, 0, 0, 0, 5579, 5577, 1, 0, 0, 0, 5580, 5582, 5, 119, 0, 0, 5581, 5583, 3, 498, 249, 0, 5582, 5581, 1, 0, 0, 0, 5582, 5583, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 5585, 3, 534, 267, 0, 5585, 5586, 5, 68, 0, 0, 5586, 5588, 3, 664, 332, 0, 5587, 5589, 3, 496, 248, 0, 5588, 5587, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5621, 1, 0, 0, 0, 5590, 5592, 5, 149, 0, 0, 5591, 5593, 3, 768, 384, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5596, 5, 7, 0, 0, 5595, 5597, 5, 734, 0, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 1, 0, 0, 0, 5598, 5599, 5, 868, 0, 0, 5599, 5600, 5, 73, 0, 0, 5600, 5601, 5, 121, 0, 0, 5601, 5602, 5, 68, 0, 0, 5602, 5604, 3, 664, 332, 0, 5603, 5605, 3, 496, 248, 0, 5604, 5603, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5621, 1, 0, 0, 0, 5606, 5608, 5, 149, 0, 0, 5607, 5609, 3, 768, 384, 0, 5608, 5607, 1, 0, 0, 0, 5608, 5609, 1, 0, 0, 0, 5609, 5612, 1, 0, 0, 0, 5610, 5611, 5, 547, 0, 0, 5611, 5613, 5, 119, 0, 0, 5612, 5610, 1, 0, 0, 0, 5612, 5613, 1, 0, 0, 0, 5613, 5614, 1, 0, 0, 0, 5614, 5615, 3, 664, 332, 0, 5615, 5616, 5, 68, 0, 0, 5616, 5618, 3, 664, 332, 0, 5617, 5619, 3, 496, 248, 0, 5618, 5617, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5621, 1, 0, 0, 0, 5620, 5568, 1, 0, 0, 0, 5620, 5590, 1, 0, 0, 0, 5620, 5606, 1, 0, 0, 0, 5621, 495, 1, 0, 0, 0, 5622, 5623, 5, 79, 0, 0, 5623, 5624, 5, 674, 0, 0, 5624, 5625, 5, 678, 0, 0, 5625, 497, 1, 0, 0, 0, 5626, 5627, 7, 82, 0, 0, 5627, 499, 1, 0, 0, 0, 5628, 5629, 5, 155, 0, 0, 5629, 5632, 5, 529, 0, 0, 5630, 5631, 5, 65, 0, 0, 5631, 5633, 3, 694, 347, 0, 5632, 5630, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5637, 5, 857, 0, 0, 5635, 5638, 3, 808, 404, 0, 5636, 5638, 5, 882, 0, 0, 5637, 5635, 1, 0, 0, 0, 5637, 5636, 1, 0, 0, 0, 5638, 5661, 1, 0, 0, 0, 5639, 5640, 5, 155, 0, 0, 5640, 5643, 5, 529, 0, 0, 5641, 5642, 5, 65, 0, 0, 5642, 5644, 3, 694, 347, 0, 5643, 5641, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5649, 1, 0, 0, 0, 5645, 5646, 5, 176, 0, 0, 5646, 5650, 5, 829, 0, 0, 5647, 5648, 5, 857, 0, 0, 5648, 5650, 5, 882, 0, 0, 5649, 5645, 1, 0, 0, 0, 5649, 5647, 1, 0, 0, 0, 5650, 5653, 1, 0, 0, 0, 5651, 5652, 5, 143, 0, 0, 5652, 5654, 5, 882, 0, 0, 5653, 5651, 1, 0, 0, 0, 5653, 5654, 1, 0, 0, 0, 5654, 5658, 1, 0, 0, 0, 5655, 5656, 5, 147, 0, 0, 5656, 5657, 5, 36, 0, 0, 5657, 5659, 5, 529, 0, 0, 5658, 5655, 1, 0, 0, 0, 5658, 5659, 1, 0, 0, 0, 5659, 5661, 1, 0, 0, 0, 5660, 5628, 1, 0, 0, 0, 5660, 5639, 1, 0, 0, 0, 5661, 501, 1, 0, 0, 0, 5662, 5663, 3, 694, 347, 0, 5663, 5664, 3, 520, 260, 0, 5664, 503, 1, 0, 0, 0, 5665, 5691, 3, 694, 347, 0, 5666, 5667, 5, 423, 0, 0, 5667, 5668, 5, 20, 0, 0, 5668, 5669, 5, 882, 0, 0, 5669, 5692, 3, 512, 256, 0, 5670, 5671, 5, 423, 0, 0, 5671, 5672, 5, 20, 0, 0, 5672, 5673, 5, 829, 0, 0, 5673, 5674, 5, 529, 0, 0, 5674, 5692, 3, 512, 256, 0, 5675, 5676, 5, 423, 0, 0, 5676, 5677, 5, 194, 0, 0, 5677, 5692, 3, 514, 257, 0, 5678, 5679, 5, 369, 0, 0, 5679, 5680, 5, 511, 0, 0, 5680, 5692, 5, 529, 0, 0, 5681, 5682, 7, 83, 0, 0, 5682, 5684, 3, 528, 264, 0, 5683, 5685, 3, 524, 262, 0, 5684, 5683, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 5687, 1, 0, 0, 0, 5686, 5681, 1, 0, 0, 0, 5687, 5688, 1, 0, 0, 0, 5688, 5686, 1, 0, 0, 0, 5688, 5689, 1, 0, 0, 0, 5689, 5692, 1, 0, 0, 0, 5690, 5692, 3, 526, 263, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5670, 1, 0, 0, 0, 5691, 5675, 1, 0, 0, 0, 5691, 5678, 1, 0, 0, 0, 5691, 5686, 1, 0, 0, 0, 5691, 5690, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 505, 1, 0, 0, 0, 5693, 5694, 5, 423, 0, 0, 5694, 5700, 5, 20, 0, 0, 5695, 5701, 5, 882, 0, 0, 5696, 5697, 5, 829, 0, 0, 5697, 5701, 5, 529, 0, 0, 5698, 5699, 5, 529, 0, 0, 5699, 5701, 5, 882, 0, 0, 5700, 5695, 1, 0, 0, 0, 5700, 5696, 1, 0, 0, 0, 5700, 5698, 1, 0, 0, 0, 5701, 5704, 1, 0, 0, 0, 5702, 5703, 5, 11, 0, 0, 5703, 5705, 3, 506, 253, 0, 5704, 5702, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5730, 1, 0, 0, 0, 5706, 5707, 5, 423, 0, 0, 5707, 5708, 5, 194, 0, 0, 5708, 5717, 3, 716, 358, 0, 5709, 5713, 5, 20, 0, 0, 5710, 5714, 5, 882, 0, 0, 5711, 5712, 5, 829, 0, 0, 5712, 5714, 5, 529, 0, 0, 5713, 5710, 1, 0, 0, 0, 5713, 5711, 1, 0, 0, 0, 5714, 5718, 1, 0, 0, 0, 5715, 5716, 5, 13, 0, 0, 5716, 5718, 5, 882, 0, 0, 5717, 5709, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5717, 5718, 1, 0, 0, 0, 5718, 5721, 1, 0, 0, 0, 5719, 5720, 5, 11, 0, 0, 5720, 5722, 3, 506, 253, 0, 5721, 5719, 1, 0, 0, 0, 5721, 5722, 1, 0, 0, 0, 5722, 5730, 1, 0, 0, 0, 5723, 5724, 5, 423, 0, 0, 5724, 5725, 5, 194, 0, 0, 5725, 5727, 3, 716, 358, 0, 5726, 5728, 3, 508, 254, 0, 5727, 5726, 1, 0, 0, 0, 5727, 5728, 1, 0, 0, 0, 5728, 5730, 1, 0, 0, 0, 5729, 5693, 1, 0, 0, 0, 5729, 5706, 1, 0, 0, 0, 5729, 5723, 1, 0, 0, 0, 5730, 507, 1, 0, 0, 0, 5731, 5732, 5, 427, 0, 0, 5732, 5733, 5, 708, 0, 0, 5733, 5734, 5, 423, 0, 0, 5734, 5738, 5, 20, 0, 0, 5735, 5736, 5, 829, 0, 0, 5736, 5739, 5, 529, 0, 0, 5737, 5739, 5, 882, 0, 0, 5738, 5735, 1, 0, 0, 0, 5738, 5737, 1, 0, 0, 0, 5739, 5749, 1, 0, 0, 0, 5740, 5741, 5, 427, 0, 0, 5741, 5742, 5, 708, 0, 0, 5742, 5743, 5, 423, 0, 0, 5743, 5744, 5, 194, 0, 0, 5744, 5745, 3, 716, 358, 0, 5745, 5746, 5, 13, 0, 0, 5746, 5747, 5, 882, 0, 0, 5747, 5749, 1, 0, 0, 0, 5748, 5731, 1, 0, 0, 0, 5748, 5740, 1, 0, 0, 0, 5749, 509, 1, 0, 0, 0, 5750, 5751, 3, 694, 347, 0, 5751, 5752, 5, 423, 0, 0, 5752, 5753, 5, 20, 0, 0, 5753, 5754, 5, 529, 0, 0, 5754, 5755, 5, 882, 0, 0, 5755, 5776, 1, 0, 0, 0, 5756, 5757, 3, 694, 347, 0, 5757, 5758, 5, 423, 0, 0, 5758, 5759, 5, 20, 0, 0, 5759, 5760, 5, 829, 0, 0, 5760, 5761, 5, 529, 0, 0, 5761, 5762, 3, 512, 256, 0, 5762, 5776, 1, 0, 0, 0, 5763, 5764, 3, 694, 347, 0, 5764, 5765, 5, 423, 0, 0, 5765, 5766, 5, 20, 0, 0, 5766, 5767, 5, 882, 0, 0, 5767, 5768, 3, 512, 256, 0, 5768, 5776, 1, 0, 0, 0, 5769, 5770, 3, 694, 347, 0, 5770, 5771, 5, 423, 0, 0, 5771, 5772, 5, 194, 0, 0, 5772, 5773, 3, 514, 257, 0, 5773, 5776, 1, 0, 0, 0, 5774, 5776, 3, 694, 347, 0, 5775, 5750, 1, 0, 0, 0, 5775, 5756, 1, 0, 0, 0, 5775, 5763, 1, 0, 0, 0, 5775, 5769, 1, 0, 0, 0, 5775, 5774, 1, 0, 0, 0, 5776, 511, 1, 0, 0, 0, 5777, 5778, 5, 143, 0, 0, 5778, 5780, 5, 882, 0, 0, 5779, 5777, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5784, 1, 0, 0, 0, 5781, 5782, 5, 147, 0, 0, 5782, 5783, 5, 36, 0, 0, 5783, 5785, 5, 529, 0, 0, 5784, 5781, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 513, 1, 0, 0, 0, 5786, 5794, 3, 716, 358, 0, 5787, 5791, 7, 84, 0, 0, 5788, 5792, 5, 882, 0, 0, 5789, 5790, 5, 829, 0, 0, 5790, 5792, 5, 529, 0, 0, 5791, 5788, 1, 0, 0, 0, 5791, 5789, 1, 0, 0, 0, 5792, 5793, 1, 0, 0, 0, 5793, 5795, 3, 512, 256, 0, 5794, 5787, 1, 0, 0, 0, 5794, 5795, 1, 0, 0, 0, 5795, 5801, 1, 0, 0, 0, 5796, 5797, 3, 716, 358, 0, 5797, 5798, 5, 188, 0, 0, 5798, 5799, 3, 808, 404, 0, 5799, 5801, 1, 0, 0, 0, 5800, 5786, 1, 0, 0, 0, 5800, 5796, 1, 0, 0, 0, 5801, 515, 1, 0, 0, 0, 5802, 5811, 5, 169, 0, 0, 5803, 5811, 5, 693, 0, 0, 5804, 5805, 5, 331, 0, 0, 5805, 5811, 5, 882, 0, 0, 5806, 5807, 5, 441, 0, 0, 5807, 5811, 5, 882, 0, 0, 5808, 5809, 5, 651, 0, 0, 5809, 5811, 5, 882, 0, 0, 5810, 5802, 1, 0, 0, 0, 5810, 5803, 1, 0, 0, 0, 5810, 5804, 1, 0, 0, 0, 5810, 5806, 1, 0, 0, 0, 5810, 5808, 1, 0, 0, 0, 5811, 517, 1, 0, 0, 0, 5812, 5813, 5, 479, 0, 0, 5813, 5821, 3, 722, 361, 0, 5814, 5815, 5, 482, 0, 0, 5815, 5821, 3, 722, 361, 0, 5816, 5817, 5, 478, 0, 0, 5817, 5821, 3, 722, 361, 0, 5818, 5819, 5, 483, 0, 0, 5819, 5821, 3, 722, 361, 0, 5820, 5812, 1, 0, 0, 0, 5820, 5814, 1, 0, 0, 0, 5820, 5816, 1, 0, 0, 0, 5820, 5818, 1, 0, 0, 0, 5821, 519, 1, 0, 0, 0, 5822, 5823, 5, 529, 0, 0, 5823, 5830, 5, 390, 0, 0, 5824, 5831, 5, 42, 0, 0, 5825, 5831, 5, 500, 0, 0, 5826, 5827, 5, 87, 0, 0, 5827, 5828, 3, 722, 361, 0, 5828, 5829, 5, 698, 0, 0, 5829, 5831, 1, 0, 0, 0, 5830, 5824, 1, 0, 0, 0, 5830, 5825, 1, 0, 0, 0, 5830, 5826, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, 5831, 5861, 1, 0, 0, 0, 5832, 5833, 5, 529, 0, 0, 5833, 5836, 5, 420, 0, 0, 5834, 5837, 5, 42, 0, 0, 5835, 5837, 3, 722, 361, 0, 5836, 5834, 1, 0, 0, 0, 5836, 5835, 1, 0, 0, 0, 5837, 5861, 1, 0, 0, 0, 5838, 5839, 5, 529, 0, 0, 5839, 5840, 5, 581, 0, 0, 5840, 5845, 5, 87, 0, 0, 5841, 5846, 5, 42, 0, 0, 5842, 5843, 3, 722, 361, 0, 5843, 5844, 5, 698, 0, 0, 5844, 5846, 1, 0, 0, 0, 5845, 5841, 1, 0, 0, 0, 5845, 5842, 1, 0, 0, 0, 5846, 5861, 1, 0, 0, 0, 5847, 5848, 5, 529, 0, 0, 5848, 5849, 5, 144, 0, 0, 5849, 5851, 5, 36, 0, 0, 5850, 5852, 7, 85, 0, 0, 5851, 5850, 1, 0, 0, 0, 5851, 5852, 1, 0, 0, 0, 5852, 5861, 1, 0, 0, 0, 5853, 5854, 5, 395, 0, 0, 5854, 5861, 3, 722, 361, 0, 5855, 5858, 5, 530, 0, 0, 5856, 5859, 3, 722, 361, 0, 5857, 5859, 5, 669, 0, 0, 5858, 5856, 1, 0, 0, 0, 5858, 5857, 1, 0, 0, 0, 5859, 5861, 1, 0, 0, 0, 5860, 5822, 1, 0, 0, 0, 5860, 5832, 1, 0, 0, 0, 5860, 5838, 1, 0, 0, 0, 5860, 5847, 1, 0, 0, 0, 5860, 5853, 1, 0, 0, 0, 5860, 5855, 1, 0, 0, 0, 5861, 521, 1, 0, 0, 0, 5862, 5863, 5, 304, 0, 0, 5863, 5864, 7, 86, 0, 0, 5864, 523, 1, 0, 0, 0, 5865, 5868, 5, 423, 0, 0, 5866, 5867, 5, 194, 0, 0, 5867, 5869, 3, 716, 358, 0, 5868, 5866, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5878, 1, 0, 0, 0, 5870, 5874, 5, 20, 0, 0, 5871, 5875, 5, 882, 0, 0, 5872, 5873, 5, 829, 0, 0, 5873, 5875, 5, 529, 0, 0, 5874, 5871, 1, 0, 0, 0, 5874, 5872, 1, 0, 0, 0, 5875, 5879, 1, 0, 0, 0, 5876, 5877, 5, 13, 0, 0, 5877, 5879, 5, 882, 0, 0, 5878, 5870, 1, 0, 0, 0, 5878, 5876, 1, 0, 0, 0, 5879, 525, 1, 0, 0, 0, 5880, 5881, 3, 528, 264, 0, 5881, 5882, 5, 429, 0, 0, 5882, 5883, 5, 555, 0, 0, 5883, 5896, 1, 0, 0, 0, 5884, 5885, 3, 528, 264, 0, 5885, 5886, 5, 401, 0, 0, 5886, 5887, 5, 555, 0, 0, 5887, 5888, 5, 155, 0, 0, 5888, 5889, 5, 330, 0, 0, 5889, 5890, 5, 13, 0, 0, 5890, 5891, 5, 882, 0, 0, 5891, 5896, 1, 0, 0, 0, 5892, 5893, 3, 528, 264, 0, 5893, 5894, 5, 675, 0, 0, 5894, 5896, 1, 0, 0, 0, 5895, 5880, 1, 0, 0, 0, 5895, 5884, 1, 0, 0, 0, 5895, 5892, 1, 0, 0, 0, 5896, 527, 1, 0, 0, 0, 5897, 5898, 7, 87, 0, 0, 5898, 5899, 5, 394, 0, 0, 5899, 529, 1, 0, 0, 0, 5900, 5905, 3, 532, 266, 0, 5901, 5902, 5, 866, 0, 0, 5902, 5903, 3, 670, 335, 0, 5903, 5904, 5, 867, 0, 0, 5904, 5906, 1, 0, 0, 0, 5905, 5901, 1, 0, 0, 0, 5905, 5906, 1, 0, 0, 0, 5906, 531, 1, 0, 0, 0, 5907, 5909, 5, 7, 0, 0, 5908, 5910, 5, 734, 0, 0, 5909, 5908, 1, 0, 0, 0, 5909, 5910, 1, 0, 0, 0, 5910, 6001, 1, 0, 0, 0, 5911, 5913, 5, 8, 0, 0, 5912, 5914, 5, 743, 0, 0, 5913, 5912, 1, 0, 0, 0, 5913, 5914, 1, 0, 0, 0, 5914, 6001, 1, 0, 0, 0, 5915, 5923, 5, 34, 0, 0, 5916, 5917, 5, 660, 0, 0, 5917, 5924, 5, 752, 0, 0, 5918, 5924, 5, 743, 0, 0, 5919, 5924, 5, 684, 0, 0, 5920, 5924, 5, 678, 0, 0, 5921, 5924, 5, 658, 0, 0, 5922, 5924, 5, 582, 0, 0, 5923, 5916, 1, 0, 0, 0, 5923, 5918, 1, 0, 0, 0, 5923, 5919, 1, 0, 0, 0, 5923, 5920, 1, 0, 0, 0, 5923, 5921, 1, 0, 0, 0, 5923, 5922, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 6001, 1, 0, 0, 0, 5925, 6001, 5, 44, 0, 0, 5926, 5928, 5, 51, 0, 0, 5927, 5929, 5, 582, 0, 0, 5928, 5927, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 6001, 1, 0, 0, 0, 5930, 6001, 5, 385, 0, 0, 5931, 6001, 5, 717, 0, 0, 5932, 6001, 5, 718, 0, 0, 5933, 5934, 5, 73, 0, 0, 5934, 6001, 5, 121, 0, 0, 5935, 6001, 5, 82, 0, 0, 5936, 6001, 5, 86, 0, 0, 5937, 5938, 5, 104, 0, 0, 5938, 6001, 5, 752, 0, 0, 5939, 6001, 5, 735, 0, 0, 5940, 6001, 5, 547, 0, 0, 5941, 6001, 5, 138, 0, 0, 5942, 6001, 5, 736, 0, 0, 5943, 5944, 5, 572, 0, 0, 5944, 6001, 7, 88, 0, 0, 5945, 6001, 5, 154, 0, 0, 5946, 5947, 5, 157, 0, 0, 5947, 6001, 7, 89, 0, 0, 5948, 6001, 5, 749, 0, 0, 5949, 6001, 5, 750, 0, 0, 5950, 6001, 5, 178, 0, 0, 5951, 6001, 5, 185, 0, 0, 5952, 6001, 5, 186, 0, 0, 5953, 6001, 5, 705, 0, 0, 5954, 6001, 5, 706, 0, 0, 5955, 6001, 5, 707, 0, 0, 5956, 6001, 5, 709, 0, 0, 5957, 6001, 5, 710, 0, 0, 5958, 6001, 5, 711, 0, 0, 5959, 6001, 5, 712, 0, 0, 5960, 6001, 5, 714, 0, 0, 5961, 6001, 5, 715, 0, 0, 5962, 6001, 5, 716, 0, 0, 5963, 6001, 5, 719, 0, 0, 5964, 6001, 5, 720, 0, 0, 5965, 6001, 5, 721, 0, 0, 5966, 6001, 5, 722, 0, 0, 5967, 6001, 5, 723, 0, 0, 5968, 6001, 5, 724, 0, 0, 5969, 6001, 5, 725, 0, 0, 5970, 6001, 5, 726, 0, 0, 5971, 6001, 5, 727, 0, 0, 5972, 6001, 5, 728, 0, 0, 5973, 6001, 5, 731, 0, 0, 5974, 6001, 5, 732, 0, 0, 5975, 6001, 5, 733, 0, 0, 5976, 6001, 5, 737, 0, 0, 5977, 6001, 5, 738, 0, 0, 5978, 6001, 5, 740, 0, 0, 5979, 6001, 5, 741, 0, 0, 5980, 6001, 5, 742, 0, 0, 5981, 6001, 5, 745, 0, 0, 5982, 6001, 5, 746, 0, 0, 5983, 6001, 5, 747, 0, 0, 5984, 6001, 5, 160, 0, 0, 5985, 6001, 5, 748, 0, 0, 5986, 6001, 5, 836, 0, 0, 5987, 6001, 5, 751, 0, 0, 5988, 6001, 5, 753, 0, 0, 5989, 6001, 5, 838, 0, 0, 5990, 6001, 5, 754, 0, 0, 5991, 6001, 5, 755, 0, 0, 5992, 5993, 5, 103, 0, 0, 5993, 5994, 5, 68, 0, 0, 5994, 6001, 5, 744, 0, 0, 5995, 5996, 5, 154, 0, 0, 5996, 5997, 5, 88, 0, 0, 5997, 6001, 5, 744, 0, 0, 5998, 5999, 5, 729, 0, 0, 5999, 6001, 5, 730, 0, 0, 6000, 5907, 1, 0, 0, 0, 6000, 5911, 1, 0, 0, 0, 6000, 5915, 1, 0, 0, 0, 6000, 5925, 1, 0, 0, 0, 6000, 5926, 1, 0, 0, 0, 6000, 5930, 1, 0, 0, 0, 6000, 5931, 1, 0, 0, 0, 6000, 5932, 1, 0, 0, 0, 6000, 5933, 1, 0, 0, 0, 6000, 5935, 1, 0, 0, 0, 6000, 5936, 1, 0, 0, 0, 6000, 5937, 1, 0, 0, 0, 6000, 5939, 1, 0, 0, 0, 6000, 5940, 1, 0, 0, 0, 6000, 5941, 1, 0, 0, 0, 6000, 5942, 1, 0, 0, 0, 6000, 5943, 1, 0, 0, 0, 6000, 5945, 1, 0, 0, 0, 6000, 5946, 1, 0, 0, 0, 6000, 5948, 1, 0, 0, 0, 6000, 5949, 1, 0, 0, 0, 6000, 5950, 1, 0, 0, 0, 6000, 5951, 1, 0, 0, 0, 6000, 5952, 1, 0, 0, 0, 6000, 5953, 1, 0, 0, 0, 6000, 5954, 1, 0, 0, 0, 6000, 5955, 1, 0, 0, 0, 6000, 5956, 1, 0, 0, 0, 6000, 5957, 1, 0, 0, 0, 6000, 5958, 1, 0, 0, 0, 6000, 5959, 1, 0, 0, 0, 6000, 5960, 1, 0, 0, 0, 6000, 5961, 1, 0, 0, 0, 6000, 5962, 1, 0, 0, 0, 6000, 5963, 1, 0, 0, 0, 6000, 5964, 1, 0, 0, 0, 6000, 5965, 1, 0, 0, 0, 6000, 5966, 1, 0, 0, 0, 6000, 5967, 1, 0, 0, 0, 6000, 5968, 1, 0, 0, 0, 6000, 5969, 1, 0, 0, 0, 6000, 5970, 1, 0, 0, 0, 6000, 5971, 1, 0, 0, 0, 6000, 5972, 1, 0, 0, 0, 6000, 5973, 1, 0, 0, 0, 6000, 5974, 1, 0, 0, 0, 6000, 5975, 1, 0, 0, 0, 6000, 5976, 1, 0, 0, 0, 6000, 5977, 1, 0, 0, 0, 6000, 5978, 1, 0, 0, 0, 6000, 5979, 1, 0, 0, 0, 6000, 5980, 1, 0, 0, 0, 6000, 5981, 1, 0, 0, 0, 6000, 5982, 1, 0, 0, 0, 6000, 5983, 1, 0, 0, 0, 6000, 5984, 1, 0, 0, 0, 6000, 5985, 1, 0, 0, 0, 6000, 5986, 1, 0, 0, 0, 6000, 5987, 1, 0, 0, 0, 6000, 5988, 1, 0, 0, 0, 6000, 5989, 1, 0, 0, 0, 6000, 5990, 1, 0, 0, 0, 6000, 5991, 1, 0, 0, 0, 6000, 5992, 1, 0, 0, 0, 6000, 5995, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6001, 533, 1, 0, 0, 0, 6002, 6019, 5, 850, 0, 0, 6003, 6004, 5, 850, 0, 0, 6004, 6005, 5, 865, 0, 0, 6005, 6019, 5, 850, 0, 0, 6006, 6007, 3, 716, 358, 0, 6007, 6008, 5, 865, 0, 0, 6008, 6009, 5, 850, 0, 0, 6009, 6019, 1, 0, 0, 0, 6010, 6011, 3, 716, 358, 0, 6011, 6012, 5, 865, 0, 0, 6012, 6013, 3, 716, 358, 0, 6013, 6019, 1, 0, 0, 0, 6014, 6015, 3, 716, 358, 0, 6015, 6016, 3, 720, 360, 0, 6016, 6019, 1, 0, 0, 0, 6017, 6019, 3, 716, 358, 0, 6018, 6002, 1, 0, 0, 0, 6018, 6003, 1, 0, 0, 0, 6018, 6006, 1, 0, 0, 0, 6018, 6010, 1, 0, 0, 0, 6018, 6014, 1, 0, 0, 0, 6018, 6017, 1, 0, 0, 0, 6019, 535, 1, 0, 0, 0, 6020, 6021, 3, 694, 347, 0, 6021, 6022, 5, 176, 0, 0, 6022, 6023, 3, 694, 347, 0, 6023, 537, 1, 0, 0, 0, 6024, 6026, 5, 10, 0, 0, 6025, 6027, 3, 548, 274, 0, 6026, 6025, 1, 0, 0, 0, 6026, 6027, 1, 0, 0, 0, 6027, 6028, 1, 0, 0, 0, 6028, 6029, 5, 173, 0, 0, 6029, 6073, 3, 660, 330, 0, 6030, 6032, 5, 10, 0, 0, 6031, 6033, 3, 548, 274, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6034, 1, 0, 0, 0, 6034, 6035, 5, 173, 0, 0, 6035, 6036, 3, 662, 331, 0, 6036, 6037, 5, 185, 0, 0, 6037, 6038, 5, 77, 0, 0, 6038, 6039, 5, 119, 0, 0, 6039, 6044, 3, 670, 335, 0, 6040, 6041, 5, 194, 0, 0, 6041, 6042, 3, 722, 361, 0, 6042, 6043, 5, 19, 0, 0, 6043, 6045, 1, 0, 0, 0, 6044, 6040, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6073, 1, 0, 0, 0, 6046, 6048, 5, 10, 0, 0, 6047, 6049, 3, 548, 274, 0, 6048, 6047, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6051, 5, 173, 0, 0, 6051, 6052, 3, 662, 331, 0, 6052, 6053, 5, 185, 0, 0, 6053, 6054, 5, 77, 0, 0, 6054, 6055, 5, 119, 0, 0, 6055, 6059, 3, 672, 336, 0, 6056, 6057, 5, 188, 0, 0, 6057, 6058, 5, 360, 0, 0, 6058, 6060, 5, 882, 0, 0, 6059, 6056, 1, 0, 0, 0, 6059, 6060, 1, 0, 0, 0, 6060, 6073, 1, 0, 0, 0, 6061, 6063, 5, 10, 0, 0, 6062, 6064, 3, 548, 274, 0, 6063, 6062, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, 0, 6065, 6066, 5, 173, 0, 0, 6066, 6067, 3, 662, 331, 0, 6067, 6068, 5, 51, 0, 0, 6068, 6069, 5, 77, 0, 0, 6069, 6070, 5, 119, 0, 0, 6070, 6071, 3, 670, 335, 0, 6071, 6073, 1, 0, 0, 0, 6072, 6024, 1, 0, 0, 0, 6072, 6030, 1, 0, 0, 0, 6072, 6046, 1, 0, 0, 0, 6072, 6061, 1, 0, 0, 0, 6073, 539, 1, 0, 0, 0, 6074, 6075, 5, 27, 0, 0, 6075, 6076, 5, 173, 0, 0, 6076, 6080, 3, 660, 330, 0, 6077, 6079, 3, 550, 275, 0, 6078, 6077, 1, 0, 0, 0, 6079, 6082, 1, 0, 0, 0, 6080, 6078, 1, 0, 0, 0, 6080, 6081, 1, 0, 0, 0, 6081, 541, 1, 0, 0, 0, 6082, 6080, 1, 0, 0, 0, 6083, 6084, 5, 329, 0, 0, 6084, 6085, 5, 173, 0, 0, 6085, 6087, 3, 660, 330, 0, 6086, 6088, 7, 90, 0, 0, 6087, 6086, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 543, 1, 0, 0, 0, 6089, 6091, 5, 120, 0, 0, 6090, 6092, 3, 548, 274, 0, 6091, 6090, 1, 0, 0, 0, 6091, 6092, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6094, 7, 61, 0, 0, 6094, 6095, 3, 660, 330, 0, 6095, 545, 1, 0, 0, 0, 6096, 6098, 5, 562, 0, 0, 6097, 6099, 3, 548, 274, 0, 6098, 6097, 1, 0, 0, 0, 6098, 6099, 1, 0, 0, 0, 6099, 6100, 1, 0, 0, 0, 6100, 6101, 5, 173, 0, 0, 6101, 6103, 3, 660, 330, 0, 6102, 6104, 5, 549, 0, 0, 6103, 6102, 1, 0, 0, 0, 6103, 6104, 1, 0, 0, 0, 6104, 6106, 1, 0, 0, 0, 6105, 6107, 5, 392, 0, 0, 6106, 6105, 1, 0, 0, 0, 6106, 6107, 1, 0, 0, 0, 6107, 6109, 1, 0, 0, 0, 6108, 6110, 5, 679, 0, 0, 6109, 6108, 1, 0, 0, 0, 6109, 6110, 1, 0, 0, 0, 6110, 547, 1, 0, 0, 0, 6111, 6112, 7, 91, 0, 0, 6112, 549, 1, 0, 0, 0, 6113, 6114, 5, 65, 0, 0, 6114, 6121, 5, 677, 0, 0, 6115, 6121, 5, 549, 0, 0, 6116, 6121, 5, 396, 0, 0, 6117, 6121, 5, 484, 0, 0, 6118, 6121, 5, 392, 0, 0, 6119, 6121, 5, 327, 0, 0, 6120, 6113, 1, 0, 0, 0, 6120, 6115, 1, 0, 0, 0, 6120, 6116, 1, 0, 0, 0, 6120, 6117, 1, 0, 0, 0, 6120, 6118, 1, 0, 0, 0, 6120, 6119, 1, 0, 0, 0, 6121, 551, 1, 0, 0, 0, 6122, 6123, 5, 432, 0, 0, 6123, 6124, 5, 344, 0, 0, 6124, 6129, 3, 716, 358, 0, 6125, 6126, 5, 868, 0, 0, 6126, 6128, 3, 716, 358, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6131, 1, 0, 0, 0, 6129, 6127, 1, 0, 0, 0, 6129, 6130, 1, 0, 0, 0, 6130, 6141, 1, 0, 0, 0, 6131, 6129, 1, 0, 0, 0, 6132, 6133, 5, 155, 0, 0, 6133, 6138, 3, 554, 277, 0, 6134, 6135, 5, 868, 0, 0, 6135, 6137, 3, 554, 277, 0, 6136, 6134, 1, 0, 0, 0, 6137, 6140, 1, 0, 0, 0, 6138, 6136, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 6142, 1, 0, 0, 0, 6140, 6138, 1, 0, 0, 0, 6141, 6132, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 553, 1, 0, 0, 0, 6143, 6144, 7, 92, 0, 0, 6144, 6145, 3, 712, 356, 0, 6145, 6146, 5, 857, 0, 0, 6146, 6147, 3, 814, 407, 0, 6147, 555, 1, 0, 0, 0, 6148, 6149, 5, 673, 0, 0, 6149, 6150, 5, 344, 0, 0, 6150, 6155, 3, 716, 358, 0, 6151, 6152, 5, 868, 0, 0, 6152, 6154, 3, 716, 358, 0, 6153, 6151, 1, 0, 0, 0, 6154, 6157, 1, 0, 0, 0, 6155, 6153, 1, 0, 0, 0, 6155, 6156, 1, 0, 0, 0, 6156, 557, 1, 0, 0, 0, 6157, 6155, 1, 0, 0, 0, 6158, 6159, 5, 432, 0, 0, 6159, 6160, 5, 534, 0, 0, 6160, 6161, 3, 716, 358, 0, 6161, 6162, 5, 603, 0, 0, 6162, 6163, 5, 882, 0, 0, 6163, 559, 1, 0, 0, 0, 6164, 6165, 5, 673, 0, 0, 6165, 6166, 5, 534, 0, 0, 6166, 6167, 3, 716, 358, 0, 6167, 561, 1, 0, 0, 0, 6168, 6169, 5, 713, 0, 0, 6169, 6170, 5, 450, 0, 0, 6170, 6171, 5, 360, 0, 0, 6171, 6173, 5, 367, 0, 0, 6172, 6174, 5, 857, 0, 0, 6173, 6172, 1, 0, 0, 0, 6173, 6174, 1, 0, 0, 0, 6174, 6175, 1, 0, 0, 0, 6175, 6199, 5, 882, 0, 0, 6176, 6177, 5, 713, 0, 0, 6177, 6178, 5, 433, 0, 0, 6178, 6179, 5, 68, 0, 0, 6179, 6180, 3, 686, 343, 0, 6180, 6181, 5, 423, 0, 0, 6181, 6182, 5, 20, 0, 0, 6182, 6189, 5, 882, 0, 0, 6183, 6184, 5, 360, 0, 0, 6184, 6186, 5, 367, 0, 0, 6185, 6187, 5, 857, 0, 0, 6186, 6185, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6190, 5, 882, 0, 0, 6189, 6183, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 6196, 1, 0, 0, 0, 6191, 6193, 5, 144, 0, 0, 6192, 6194, 5, 502, 0, 0, 6193, 6192, 1, 0, 0, 0, 6193, 6194, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 6197, 5, 169, 0, 0, 6196, 6191, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6199, 1, 0, 0, 0, 6198, 6168, 1, 0, 0, 0, 6198, 6176, 1, 0, 0, 0, 6199, 563, 1, 0, 0, 0, 6200, 6201, 5, 155, 0, 0, 6201, 6202, 3, 568, 284, 0, 6202, 6205, 7, 93, 0, 0, 6203, 6206, 3, 814, 407, 0, 6204, 6206, 5, 119, 0, 0, 6205, 6203, 1, 0, 0, 0, 6205, 6204, 1, 0, 0, 0, 6206, 6216, 1, 0, 0, 0, 6207, 6208, 5, 868, 0, 0, 6208, 6209, 3, 568, 284, 0, 6209, 6212, 7, 93, 0, 0, 6210, 6213, 3, 814, 407, 0, 6211, 6213, 5, 119, 0, 0, 6212, 6210, 1, 0, 0, 0, 6212, 6211, 1, 0, 0, 0, 6213, 6215, 1, 0, 0, 0, 6214, 6207, 1, 0, 0, 0, 6215, 6218, 1, 0, 0, 0, 6216, 6214, 1, 0, 0, 0, 6216, 6217, 1, 0, 0, 0, 6217, 6253, 1, 0, 0, 0, 6218, 6216, 1, 0, 0, 0, 6219, 6220, 5, 155, 0, 0, 6220, 6223, 3, 58, 29, 0, 6221, 6224, 3, 698, 349, 0, 6222, 6224, 5, 42, 0, 0, 6223, 6221, 1, 0, 0, 0, 6223, 6222, 1, 0, 0, 0, 6224, 6253, 1, 0, 0, 0, 6225, 6226, 5, 155, 0, 0, 6226, 6233, 5, 497, 0, 0, 6227, 6230, 3, 698, 349, 0, 6228, 6229, 5, 28, 0, 0, 6229, 6231, 3, 700, 350, 0, 6230, 6228, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6234, 1, 0, 0, 0, 6232, 6234, 5, 42, 0, 0, 6233, 6227, 1, 0, 0, 0, 6233, 6232, 1, 0, 0, 0, 6234, 6253, 1, 0, 0, 0, 6235, 6253, 3, 500, 250, 0, 6236, 6253, 3, 352, 176, 0, 6237, 6253, 3, 350, 175, 0, 6238, 6239, 5, 155, 0, 0, 6239, 6240, 3, 712, 356, 0, 6240, 6241, 7, 93, 0, 0, 6241, 6249, 3, 814, 407, 0, 6242, 6243, 5, 868, 0, 0, 6243, 6244, 3, 712, 356, 0, 6244, 6245, 7, 93, 0, 0, 6245, 6246, 3, 814, 407, 0, 6246, 6248, 1, 0, 0, 0, 6247, 6242, 1, 0, 0, 0, 6248, 6251, 1, 0, 0, 0, 6249, 6247, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6253, 1, 0, 0, 0, 6251, 6249, 1, 0, 0, 0, 6252, 6200, 1, 0, 0, 0, 6252, 6219, 1, 0, 0, 0, 6252, 6225, 1, 0, 0, 0, 6252, 6235, 1, 0, 0, 0, 6252, 6236, 1, 0, 0, 0, 6252, 6237, 1, 0, 0, 0, 6252, 6238, 1, 0, 0, 0, 6253, 565, 1, 0, 0, 0, 6254, 6255, 5, 157, 0, 0, 6255, 6256, 7, 63, 0, 0, 6256, 6439, 5, 452, 0, 0, 6257, 6258, 5, 157, 0, 0, 6258, 6259, 7, 94, 0, 0, 6259, 6262, 5, 386, 0, 0, 6260, 6261, 5, 80, 0, 0, 6261, 6263, 5, 882, 0, 0, 6262, 6260, 1, 0, 0, 0, 6262, 6263, 1, 0, 0, 0, 6263, 6266, 1, 0, 0, 0, 6264, 6265, 5, 68, 0, 0, 6265, 6267, 3, 722, 361, 0, 6266, 6264, 1, 0, 0, 0, 6266, 6267, 1, 0, 0, 0, 6267, 6275, 1, 0, 0, 0, 6268, 6272, 5, 100, 0, 0, 6269, 6270, 3, 722, 361, 0, 6270, 6271, 5, 868, 0, 0, 6271, 6273, 1, 0, 0, 0, 6272, 6269, 1, 0, 0, 0, 6272, 6273, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6276, 3, 722, 361, 0, 6275, 6268, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6278, 1, 0, 0, 0, 6277, 6279, 3, 400, 200, 0, 6278, 6277, 1, 0, 0, 0, 6278, 6279, 1, 0, 0, 0, 6279, 6439, 1, 0, 0, 0, 6280, 6281, 5, 157, 0, 0, 6281, 6283, 3, 570, 285, 0, 6282, 6284, 3, 572, 286, 0, 6283, 6282, 1, 0, 0, 0, 6283, 6284, 1, 0, 0, 0, 6284, 6439, 1, 0, 0, 0, 6285, 6287, 5, 157, 0, 0, 6286, 6288, 5, 392, 0, 0, 6287, 6286, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6290, 1, 0, 0, 0, 6289, 6291, 5, 408, 0, 0, 6290, 6289, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6292, 1, 0, 0, 0, 6292, 6293, 7, 47, 0, 0, 6293, 6294, 7, 95, 0, 0, 6294, 6297, 3, 662, 331, 0, 6295, 6296, 7, 95, 0, 0, 6296, 6298, 3, 638, 319, 0, 6297, 6295, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6300, 1, 0, 0, 0, 6299, 6301, 3, 572, 286, 0, 6300, 6299, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6439, 1, 0, 0, 0, 6302, 6303, 5, 157, 0, 0, 6303, 6304, 5, 34, 0, 0, 6304, 6306, 7, 0, 0, 0, 6305, 6307, 3, 770, 385, 0, 6306, 6305, 1, 0, 0, 0, 6306, 6307, 1, 0, 0, 0, 6307, 6308, 1, 0, 0, 0, 6308, 6439, 3, 638, 319, 0, 6309, 6310, 5, 157, 0, 0, 6310, 6311, 5, 34, 0, 0, 6311, 6312, 7, 96, 0, 0, 6312, 6439, 3, 712, 356, 0, 6313, 6314, 5, 157, 0, 0, 6314, 6315, 5, 34, 0, 0, 6315, 6316, 5, 409, 0, 0, 6316, 6439, 3, 642, 321, 0, 6317, 6318, 5, 157, 0, 0, 6318, 6319, 5, 34, 0, 0, 6319, 6320, 5, 684, 0, 0, 6320, 6439, 3, 646, 323, 0, 6321, 6322, 5, 157, 0, 0, 6322, 6323, 5, 34, 0, 0, 6323, 6324, 5, 173, 0, 0, 6324, 6439, 3, 662, 331, 0, 6325, 6326, 5, 157, 0, 0, 6326, 6327, 5, 34, 0, 0, 6327, 6328, 5, 678, 0, 0, 6328, 6439, 3, 694, 347, 0, 6329, 6330, 5, 157, 0, 0, 6330, 6331, 5, 380, 0, 0, 6331, 6332, 3, 702, 351, 0, 6332, 6333, 7, 97, 0, 0, 6333, 6439, 1, 0, 0, 0, 6334, 6335, 5, 157, 0, 0, 6335, 6439, 3, 574, 287, 0, 6336, 6337, 5, 157, 0, 0, 6337, 6345, 7, 98, 0, 0, 6338, 6342, 5, 100, 0, 0, 6339, 6340, 3, 722, 361, 0, 6340, 6341, 5, 868, 0, 0, 6341, 6343, 1, 0, 0, 0, 6342, 6339, 1, 0, 0, 0, 6342, 6343, 1, 0, 0, 0, 6343, 6344, 1, 0, 0, 0, 6344, 6346, 3, 722, 361, 0, 6345, 6338, 1, 0, 0, 0, 6345, 6346, 1, 0, 0, 0, 6346, 6439, 1, 0, 0, 0, 6347, 6348, 5, 157, 0, 0, 6348, 6349, 5, 262, 0, 0, 6349, 6350, 5, 866, 0, 0, 6350, 6351, 5, 850, 0, 0, 6351, 6352, 5, 867, 0, 0, 6352, 6439, 7, 98, 0, 0, 6353, 6354, 5, 157, 0, 0, 6354, 6357, 3, 576, 288, 0, 6355, 6356, 7, 95, 0, 0, 6356, 6358, 3, 638, 319, 0, 6357, 6355, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 1, 0, 0, 0, 6359, 6361, 3, 572, 286, 0, 6360, 6359, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 6439, 1, 0, 0, 0, 6362, 6363, 5, 157, 0, 0, 6363, 6364, 5, 132, 0, 0, 6364, 6365, 5, 336, 0, 0, 6365, 6439, 3, 712, 356, 0, 6366, 6367, 5, 157, 0, 0, 6367, 6368, 5, 409, 0, 0, 6368, 6369, 5, 336, 0, 0, 6369, 6439, 3, 642, 321, 0, 6370, 6371, 5, 157, 0, 0, 6371, 6378, 5, 414, 0, 0, 6372, 6373, 5, 65, 0, 0, 6373, 6376, 3, 666, 333, 0, 6374, 6375, 5, 188, 0, 0, 6375, 6377, 3, 664, 332, 0, 6376, 6374, 1, 0, 0, 0, 6376, 6377, 1, 0, 0, 0, 6377, 6379, 1, 0, 0, 0, 6378, 6372, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6439, 1, 0, 0, 0, 6380, 6382, 5, 157, 0, 0, 6381, 6383, 5, 392, 0, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6384, 1, 0, 0, 0, 6384, 6385, 7, 99, 0, 0, 6385, 6386, 7, 95, 0, 0, 6386, 6389, 3, 662, 331, 0, 6387, 6388, 7, 95, 0, 0, 6388, 6390, 3, 638, 319, 0, 6389, 6387, 1, 0, 0, 0, 6389, 6390, 1, 0, 0, 0, 6390, 6393, 1, 0, 0, 0, 6391, 6392, 5, 192, 0, 0, 6392, 6394, 3, 814, 407, 0, 6393, 6391, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6439, 1, 0, 0, 0, 6395, 6396, 5, 157, 0, 0, 6396, 6397, 5, 516, 0, 0, 6397, 6400, 5, 752, 0, 0, 6398, 6399, 7, 95, 0, 0, 6399, 6401, 3, 638, 319, 0, 6400, 6398, 1, 0, 0, 0, 6400, 6401, 1, 0, 0, 0, 6401, 6403, 1, 0, 0, 0, 6402, 6404, 3, 572, 286, 0, 6403, 6402, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6439, 1, 0, 0, 0, 6405, 6406, 5, 157, 0, 0, 6406, 6415, 5, 545, 0, 0, 6407, 6412, 3, 578, 289, 0, 6408, 6409, 5, 868, 0, 0, 6409, 6411, 3, 578, 289, 0, 6410, 6408, 1, 0, 0, 0, 6411, 6414, 1, 0, 0, 0, 6412, 6410, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6416, 1, 0, 0, 0, 6414, 6412, 1, 0, 0, 0, 6415, 6407, 1, 0, 0, 0, 6415, 6416, 1, 0, 0, 0, 6416, 6420, 1, 0, 0, 0, 6417, 6418, 5, 65, 0, 0, 6418, 6419, 5, 548, 0, 0, 6419, 6421, 3, 722, 361, 0, 6420, 6417, 1, 0, 0, 0, 6420, 6421, 1, 0, 0, 0, 6421, 6428, 1, 0, 0, 0, 6422, 6423, 5, 100, 0, 0, 6423, 6426, 3, 722, 361, 0, 6424, 6425, 5, 509, 0, 0, 6425, 6427, 3, 722, 361, 0, 6426, 6424, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6429, 1, 0, 0, 0, 6428, 6422, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 6439, 1, 0, 0, 0, 6430, 6431, 5, 157, 0, 0, 6431, 6432, 7, 64, 0, 0, 6432, 6434, 5, 645, 0, 0, 6433, 6435, 3, 400, 200, 0, 6434, 6433, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6439, 1, 0, 0, 0, 6436, 6437, 5, 157, 0, 0, 6437, 6439, 5, 564, 0, 0, 6438, 6254, 1, 0, 0, 0, 6438, 6257, 1, 0, 0, 0, 6438, 6280, 1, 0, 0, 0, 6438, 6285, 1, 0, 0, 0, 6438, 6302, 1, 0, 0, 0, 6438, 6309, 1, 0, 0, 0, 6438, 6313, 1, 0, 0, 0, 6438, 6317, 1, 0, 0, 0, 6438, 6321, 1, 0, 0, 0, 6438, 6325, 1, 0, 0, 0, 6438, 6329, 1, 0, 0, 0, 6438, 6334, 1, 0, 0, 0, 6438, 6336, 1, 0, 0, 0, 6438, 6347, 1, 0, 0, 0, 6438, 6353, 1, 0, 0, 0, 6438, 6362, 1, 0, 0, 0, 6438, 6366, 1, 0, 0, 0, 6438, 6370, 1, 0, 0, 0, 6438, 6380, 1, 0, 0, 0, 6438, 6395, 1, 0, 0, 0, 6438, 6405, 1, 0, 0, 0, 6438, 6430, 1, 0, 0, 0, 6438, 6436, 1, 0, 0, 0, 6439, 567, 1, 0, 0, 0, 6440, 6451, 5, 892, 0, 0, 6441, 6451, 5, 893, 0, 0, 6442, 6443, 5, 870, 0, 0, 6443, 6445, 5, 870, 0, 0, 6444, 6442, 1, 0, 0, 0, 6444, 6445, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 6448, 7, 100, 0, 0, 6447, 6444, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6449, 1, 0, 0, 0, 6449, 6451, 3, 716, 358, 0, 6450, 6440, 1, 0, 0, 0, 6450, 6441, 1, 0, 0, 0, 6450, 6447, 1, 0, 0, 0, 6451, 569, 1, 0, 0, 0, 6452, 6453, 5, 26, 0, 0, 6453, 6467, 5, 155, 0, 0, 6454, 6467, 5, 823, 0, 0, 6455, 6467, 5, 824, 0, 0, 6456, 6467, 5, 40, 0, 0, 6457, 6467, 5, 153, 0, 0, 6458, 6459, 5, 409, 0, 0, 6459, 6467, 5, 645, 0, 0, 6460, 6461, 5, 132, 0, 0, 6461, 6467, 5, 645, 0, 0, 6462, 6464, 7, 62, 0, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6465, 1, 0, 0, 0, 6465, 6467, 7, 101, 0, 0, 6466, 6452, 1, 0, 0, 0, 6466, 6454, 1, 0, 0, 0, 6466, 6455, 1, 0, 0, 0, 6466, 6456, 1, 0, 0, 0, 6466, 6457, 1, 0, 0, 0, 6466, 6458, 1, 0, 0, 0, 6466, 6460, 1, 0, 0, 0, 6466, 6463, 1, 0, 0, 0, 6467, 571, 1, 0, 0, 0, 6468, 6469, 5, 99, 0, 0, 6469, 6473, 5, 882, 0, 0, 6470, 6471, 5, 192, 0, 0, 6471, 6473, 3, 814, 407, 0, 6472, 6468, 1, 0, 0, 0, 6472, 6470, 1, 0, 0, 0, 6473, 573, 1, 0, 0, 0, 6474, 6476, 5, 647, 0, 0, 6475, 6474, 1, 0, 0, 0, 6475, 6476, 1, 0, 0, 0, 6476, 6477, 1, 0, 0, 0, 6477, 6492, 5, 381, 0, 0, 6478, 6479, 5, 453, 0, 0, 6479, 6492, 5, 645, 0, 0, 6480, 6492, 5, 536, 0, 0, 6481, 6492, 5, 734, 0, 0, 6482, 6484, 5, 408, 0, 0, 6483, 6482, 1, 0, 0, 0, 6483, 6484, 1, 0, 0, 0, 6484, 6485, 1, 0, 0, 0, 6485, 6492, 5, 544, 0, 0, 6486, 6492, 5, 546, 0, 0, 6487, 6488, 5, 598, 0, 0, 6488, 6492, 5, 422, 0, 0, 6489, 6492, 5, 312, 0, 0, 6490, 6492, 5, 356, 0, 0, 6491, 6475, 1, 0, 0, 0, 6491, 6478, 1, 0, 0, 0, 6491, 6480, 1, 0, 0, 0, 6491, 6481, 1, 0, 0, 0, 6491, 6483, 1, 0, 0, 0, 6491, 6486, 1, 0, 0, 0, 6491, 6487, 1, 0, 0, 0, 6491, 6489, 1, 0, 0, 0, 6491, 6490, 1, 0, 0, 0, 6492, 575, 1, 0, 0, 0, 6493, 6505, 5, 386, 0, 0, 6494, 6495, 5, 173, 0, 0, 6495, 6505, 5, 645, 0, 0, 6496, 6498, 5, 392, 0, 0, 6497, 6496, 1, 0, 0, 0, 6497, 6498, 1, 0, 0, 0, 6498, 6500, 1, 0, 0, 0, 6499, 6501, 5, 408, 0, 0, 6500, 6499, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6502, 1, 0, 0, 0, 6502, 6505, 5, 752, 0, 0, 6503, 6505, 5, 667, 0, 0, 6504, 6493, 1, 0, 0, 0, 6504, 6494, 1, 0, 0, 0, 6504, 6497, 1, 0, 0, 0, 6504, 6503, 1, 0, 0, 0, 6505, 577, 1, 0, 0, 0, 6506, 6519, 5, 7, 0, 0, 6507, 6508, 5, 320, 0, 0, 6508, 6519, 5, 437, 0, 0, 6509, 6510, 5, 355, 0, 0, 6510, 6519, 5, 656, 0, 0, 6511, 6519, 5, 358, 0, 0, 6512, 6519, 5, 439, 0, 0, 6513, 6519, 5, 802, 0, 0, 6514, 6515, 5, 521, 0, 0, 6515, 6519, 5, 397, 0, 0, 6516, 6519, 5, 605, 0, 0, 6517, 6519, 5, 655, 0, 0, 6518, 6506, 1, 0, 0, 0, 6518, 6507, 1, 0, 0, 0, 6518, 6509, 1, 0, 0, 0, 6518, 6511, 1, 0, 0, 0, 6518, 6512, 1, 0, 0, 0, 6518, 6513, 1, 0, 0, 0, 6518, 6514, 1, 0, 0, 0, 6518, 6516, 1, 0, 0, 0, 6518, 6517, 1, 0, 0, 0, 6519, 579, 1, 0, 0, 0, 6520, 6521, 5, 318, 0, 0, 6521, 6522, 5, 882, 0, 0, 6522, 581, 1, 0, 0, 0, 6523, 6524, 5, 324, 0, 0, 6524, 6542, 5, 82, 0, 0, 6525, 6530, 3, 602, 301, 0, 6526, 6527, 5, 868, 0, 0, 6527, 6529, 3, 602, 301, 0, 6528, 6526, 1, 0, 0, 0, 6529, 6532, 1, 0, 0, 0, 6530, 6528, 1, 0, 0, 0, 6530, 6531, 1, 0, 0, 0, 6531, 6543, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6533, 6534, 3, 662, 331, 0, 6534, 6535, 5, 130, 0, 0, 6535, 6538, 5, 866, 0, 0, 6536, 6539, 3, 680, 340, 0, 6537, 6539, 5, 7, 0, 0, 6538, 6536, 1, 0, 0, 0, 6538, 6537, 1, 0, 0, 0, 6539, 6540, 1, 0, 0, 0, 6540, 6541, 5, 867, 0, 0, 6541, 6543, 1, 0, 0, 0, 6542, 6525, 1, 0, 0, 0, 6542, 6533, 1, 0, 0, 0, 6543, 6544, 1, 0, 0, 0, 6544, 6545, 5, 80, 0, 0, 6545, 6546, 3, 638, 319, 0, 6546, 583, 1, 0, 0, 0, 6547, 6549, 5, 404, 0, 0, 6548, 6550, 3, 548, 274, 0, 6549, 6548, 1, 0, 0, 0, 6549, 6550, 1, 0, 0, 0, 6550, 6551, 1, 0, 0, 0, 6551, 6556, 3, 604, 302, 0, 6552, 6553, 5, 868, 0, 0, 6553, 6555, 3, 604, 302, 0, 6554, 6552, 1, 0, 0, 0, 6555, 6558, 1, 0, 0, 0, 6556, 6554, 1, 0, 0, 0, 6556, 6557, 1, 0, 0, 0, 6557, 585, 1, 0, 0, 0, 6558, 6556, 1, 0, 0, 0, 6559, 6561, 5, 94, 0, 0, 6560, 6562, 7, 102, 0, 0, 6561, 6560, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 6563, 1, 0, 0, 0, 6563, 6564, 3, 814, 407, 0, 6564, 587, 1, 0, 0, 0, 6565, 6566, 5, 103, 0, 0, 6566, 6567, 5, 82, 0, 0, 6567, 6568, 5, 88, 0, 0, 6568, 6569, 5, 324, 0, 0, 6569, 6574, 3, 608, 304, 0, 6570, 6571, 5, 868, 0, 0, 6571, 6573, 3, 608, 304, 0, 6572, 6570, 1, 0, 0, 0, 6573, 6576, 1, 0, 0, 0, 6574, 6572, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 589, 1, 0, 0, 0, 6576, 6574, 1, 0, 0, 0, 6577, 6578, 5, 575, 0, 0, 6578, 6583, 3, 592, 296, 0, 6579, 6580, 5, 868, 0, 0, 6580, 6582, 3, 592, 296, 0, 6581, 6579, 1, 0, 0, 0, 6582, 6585, 1, 0, 0, 0, 6583, 6581, 1, 0, 0, 0, 6583, 6584, 1, 0, 0, 0, 6584, 591, 1, 0, 0, 0, 6585, 6583, 1, 0, 0, 0, 6586, 6592, 5, 453, 0, 0, 6587, 6592, 5, 563, 0, 0, 6588, 6589, 5, 548, 0, 0, 6589, 6592, 5, 324, 0, 0, 6590, 6592, 5, 598, 0, 0, 6591, 6586, 1, 0, 0, 0, 6591, 6587, 1, 0, 0, 0, 6591, 6588, 1, 0, 0, 0, 6591, 6590, 1, 0, 0, 0, 6592, 593, 1, 0, 0, 0, 6593, 6594, 5, 575, 0, 0, 6594, 6599, 5, 531, 0, 0, 6595, 6597, 3, 768, 384, 0, 6596, 6595, 1, 0, 0, 0, 6596, 6597, 1, 0, 0, 0, 6597, 6598, 1, 0, 0, 0, 6598, 6600, 3, 716, 358, 0, 6599, 6596, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 595, 1, 0, 0, 0, 6601, 6602, 5, 575, 0, 0, 6602, 6604, 7, 64, 0, 0, 6603, 6605, 5, 7, 0, 0, 6604, 6603, 1, 0, 0, 0, 6604, 6605, 1, 0, 0, 0, 6605, 6607, 1, 0, 0, 0, 6606, 6608, 3, 400, 200, 0, 6607, 6606, 1, 0, 0, 0, 6607, 6608, 1, 0, 0, 0, 6608, 597, 1, 0, 0, 0, 6609, 6610, 5, 576, 0, 0, 6610, 599, 1, 0, 0, 0, 6611, 6612, 5, 749, 0, 0, 6612, 601, 1, 0, 0, 0, 6613, 6619, 3, 662, 331, 0, 6614, 6615, 7, 19, 0, 0, 6615, 6616, 5, 866, 0, 0, 6616, 6617, 3, 650, 325, 0, 6617, 6618, 5, 867, 0, 0, 6618, 6620, 1, 0, 0, 0, 6619, 6614, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 603, 1, 0, 0, 0, 6621, 6640, 5, 366, 0, 0, 6622, 6640, 5, 422, 0, 0, 6623, 6625, 7, 103, 0, 0, 6624, 6623, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6640, 5, 452, 0, 0, 6627, 6640, 5, 517, 0, 0, 6628, 6640, 5, 734, 0, 0, 6629, 6630, 5, 548, 0, 0, 6630, 6640, 5, 324, 0, 0, 6631, 6640, 5, 645, 0, 0, 6632, 6640, 5, 680, 0, 0, 6633, 6637, 5, 752, 0, 0, 6634, 6635, 5, 194, 0, 0, 6635, 6636, 5, 135, 0, 0, 6636, 6638, 5, 104, 0, 0, 6637, 6634, 1, 0, 0, 0, 6637, 6638, 1, 0, 0, 0, 6638, 6640, 1, 0, 0, 0, 6639, 6621, 1, 0, 0, 0, 6639, 6622, 1, 0, 0, 0, 6639, 6624, 1, 0, 0, 0, 6639, 6627, 1, 0, 0, 0, 6639, 6628, 1, 0, 0, 0, 6639, 6629, 1, 0, 0, 0, 6639, 6631, 1, 0, 0, 0, 6639, 6632, 1, 0, 0, 0, 6639, 6633, 1, 0, 0, 0, 6640, 6654, 1, 0, 0, 0, 6641, 6642, 5, 556, 0, 0, 6642, 6644, 5, 452, 0, 0, 6643, 6645, 3, 400, 200, 0, 6644, 6643, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 6654, 1, 0, 0, 0, 6646, 6648, 7, 61, 0, 0, 6647, 6649, 3, 660, 330, 0, 6648, 6647, 1, 0, 0, 0, 6648, 6649, 1, 0, 0, 0, 6649, 6651, 1, 0, 0, 0, 6650, 6652, 3, 606, 303, 0, 6651, 6650, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6654, 1, 0, 0, 0, 6653, 6639, 1, 0, 0, 0, 6653, 6641, 1, 0, 0, 0, 6653, 6646, 1, 0, 0, 0, 6654, 605, 1, 0, 0, 0, 6655, 6656, 5, 194, 0, 0, 6656, 6657, 5, 135, 0, 0, 6657, 6661, 5, 104, 0, 0, 6658, 6659, 5, 65, 0, 0, 6659, 6661, 5, 391, 0, 0, 6660, 6655, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6661, 607, 1, 0, 0, 0, 6662, 6670, 3, 662, 331, 0, 6663, 6664, 5, 130, 0, 0, 6664, 6667, 5, 866, 0, 0, 6665, 6668, 3, 680, 340, 0, 6666, 6668, 5, 7, 0, 0, 6667, 6665, 1, 0, 0, 0, 6667, 6666, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6671, 5, 867, 0, 0, 6670, 6663, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 6679, 1, 0, 0, 0, 6672, 6674, 7, 19, 0, 0, 6673, 6672, 1, 0, 0, 0, 6673, 6674, 1, 0, 0, 0, 6674, 6675, 1, 0, 0, 0, 6675, 6676, 5, 866, 0, 0, 6676, 6677, 3, 650, 325, 0, 6677, 6678, 5, 867, 0, 0, 6678, 6680, 1, 0, 0, 0, 6679, 6673, 1, 0, 0, 0, 6679, 6680, 1, 0, 0, 0, 6680, 6683, 1, 0, 0, 0, 6681, 6682, 5, 79, 0, 0, 6682, 6684, 5, 446, 0, 0, 6683, 6681, 1, 0, 0, 0, 6683, 6684, 1, 0, 0, 0, 6684, 609, 1, 0, 0, 0, 6685, 6686, 7, 104, 0, 0, 6686, 6689, 3, 662, 331, 0, 6687, 6690, 3, 672, 336, 0, 6688, 6690, 5, 882, 0, 0, 6689, 6687, 1, 0, 0, 0, 6689, 6688, 1, 0, 0, 0, 6689, 6690, 1, 0, 0, 0, 6690, 611, 1, 0, 0, 0, 6691, 6697, 7, 104, 0, 0, 6692, 6698, 5, 392, 0, 0, 6693, 6698, 5, 528, 0, 0, 6694, 6695, 5, 826, 0, 0, 6695, 6696, 5, 857, 0, 0, 6696, 6698, 7, 105, 0, 0, 6697, 6692, 1, 0, 0, 0, 6697, 6693, 1, 0, 0, 0, 6697, 6694, 1, 0, 0, 0, 6697, 6698, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6700, 3, 634, 317, 0, 6700, 613, 1, 0, 0, 0, 6701, 6702, 7, 104, 0, 0, 6702, 6706, 5, 10, 0, 0, 6703, 6704, 5, 826, 0, 0, 6704, 6705, 5, 857, 0, 0, 6705, 6707, 5, 666, 0, 0, 6706, 6703, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6709, 3, 210, 105, 0, 6709, 615, 1, 0, 0, 0, 6710, 6711, 5, 419, 0, 0, 6711, 6712, 5, 882, 0, 0, 6712, 617, 1, 0, 0, 0, 6713, 6714, 5, 187, 0, 0, 6714, 6715, 3, 638, 319, 0, 6715, 619, 1, 0, 0, 0, 6716, 6724, 5, 158, 0, 0, 6717, 6719, 5, 164, 0, 0, 6718, 6720, 5, 682, 0, 0, 6719, 6718, 1, 0, 0, 0, 6719, 6720, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6725, 3, 726, 363, 0, 6722, 6725, 5, 889, 0, 0, 6723, 6725, 5, 890, 0, 0, 6724, 6717, 1, 0, 0, 0, 6724, 6722, 1, 0, 0, 0, 6724, 6723, 1, 0, 0, 0, 6725, 6735, 1, 0, 0, 0, 6726, 6727, 5, 155, 0, 0, 6727, 6732, 3, 624, 312, 0, 6728, 6729, 5, 868, 0, 0, 6729, 6731, 3, 624, 312, 0, 6730, 6728, 1, 0, 0, 0, 6731, 6734, 1, 0, 0, 0, 6732, 6730, 1, 0, 0, 0, 6732, 6733, 1, 0, 0, 0, 6733, 6736, 1, 0, 0, 0, 6734, 6732, 1, 0, 0, 0, 6735, 6726, 1, 0, 0, 0, 6735, 6736, 1, 0, 0, 0, 6736, 621, 1, 0, 0, 0, 6737, 6745, 5, 145, 0, 0, 6738, 6740, 5, 164, 0, 0, 6739, 6741, 5, 682, 0, 0, 6740, 6739, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 6742, 1, 0, 0, 0, 6742, 6746, 3, 726, 363, 0, 6743, 6746, 5, 889, 0, 0, 6744, 6746, 5, 890, 0, 0, 6745, 6738, 1, 0, 0, 0, 6745, 6743, 1, 0, 0, 0, 6745, 6744, 1, 0, 0, 0, 6745, 6746, 1, 0, 0, 0, 6746, 6756, 1, 0, 0, 0, 6747, 6748, 5, 155, 0, 0, 6748, 6753, 3, 624, 312, 0, 6749, 6750, 5, 868, 0, 0, 6750, 6752, 3, 624, 312, 0, 6751, 6749, 1, 0, 0, 0, 6752, 6755, 1, 0, 0, 0, 6753, 6751, 1, 0, 0, 0, 6753, 6754, 1, 0, 0, 0, 6754, 6757, 1, 0, 0, 0, 6755, 6753, 1, 0, 0, 0, 6756, 6747, 1, 0, 0, 0, 6756, 6757, 1, 0, 0, 0, 6757, 623, 1, 0, 0, 0, 6758, 6759, 7, 106, 0, 0, 6759, 6764, 5, 857, 0, 0, 6760, 6765, 3, 726, 363, 0, 6761, 6765, 5, 883, 0, 0, 6762, 6765, 3, 696, 348, 0, 6763, 6765, 3, 718, 359, 0, 6764, 6760, 1, 0, 0, 0, 6764, 6761, 1, 0, 0, 0, 6764, 6762, 1, 0, 0, 0, 6764, 6763, 1, 0, 0, 0, 6765, 625, 1, 0, 0, 0, 6766, 6768, 5, 194, 0, 0, 6767, 6769, 5, 552, 0, 0, 6768, 6767, 1, 0, 0, 0, 6768, 6769, 1, 0, 0, 0, 6769, 6770, 1, 0, 0, 0, 6770, 6775, 3, 52, 26, 0, 6771, 6772, 5, 868, 0, 0, 6772, 6774, 3, 52, 26, 0, 6773, 6771, 1, 0, 0, 0, 6774, 6777, 1, 0, 0, 0, 6775, 6773, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 627, 1, 0, 0, 0, 6777, 6775, 1, 0, 0, 0, 6778, 6779, 5, 173, 0, 0, 6779, 6781, 3, 662, 331, 0, 6780, 6782, 3, 258, 129, 0, 6781, 6780, 1, 0, 0, 0, 6781, 6782, 1, 0, 0, 0, 6782, 6784, 1, 0, 0, 0, 6783, 6785, 3, 328, 164, 0, 6784, 6783, 1, 0, 0, 0, 6784, 6785, 1, 0, 0, 0, 6785, 629, 1, 0, 0, 0, 6786, 6788, 5, 72, 0, 0, 6787, 6789, 7, 107, 0, 0, 6788, 6787, 1, 0, 0, 0, 6788, 6789, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 6822, 5, 48, 0, 0, 6791, 6792, 3, 568, 284, 0, 6792, 6793, 5, 857, 0, 0, 6793, 6801, 7, 108, 0, 0, 6794, 6795, 5, 868, 0, 0, 6795, 6796, 3, 568, 284, 0, 6796, 6797, 5, 857, 0, 0, 6797, 6798, 7, 108, 0, 0, 6798, 6800, 1, 0, 0, 0, 6799, 6794, 1, 0, 0, 0, 6800, 6803, 1, 0, 0, 0, 6801, 6799, 1, 0, 0, 0, 6801, 6802, 1, 0, 0, 0, 6802, 6823, 1, 0, 0, 0, 6803, 6801, 1, 0, 0, 0, 6804, 6807, 5, 30, 0, 0, 6805, 6808, 3, 722, 361, 0, 6806, 6808, 3, 568, 284, 0, 6807, 6805, 1, 0, 0, 0, 6807, 6806, 1, 0, 0, 0, 6808, 6809, 1, 0, 0, 0, 6809, 6810, 3, 568, 284, 0, 6810, 6811, 5, 857, 0, 0, 6811, 6819, 3, 632, 316, 0, 6812, 6813, 5, 868, 0, 0, 6813, 6814, 3, 568, 284, 0, 6814, 6815, 5, 857, 0, 0, 6815, 6816, 3, 632, 316, 0, 6816, 6818, 1, 0, 0, 0, 6817, 6812, 1, 0, 0, 0, 6818, 6821, 1, 0, 0, 0, 6819, 6817, 1, 0, 0, 0, 6819, 6820, 1, 0, 0, 0, 6820, 6823, 1, 0, 0, 0, 6821, 6819, 1, 0, 0, 0, 6822, 6791, 1, 0, 0, 0, 6822, 6804, 1, 0, 0, 0, 6823, 631, 1, 0, 0, 0, 6824, 6825, 7, 109, 0, 0, 6825, 633, 1, 0, 0, 0, 6826, 6832, 3, 210, 105, 0, 6827, 6832, 3, 186, 93, 0, 6828, 6832, 3, 192, 96, 0, 6829, 6832, 3, 208, 104, 0, 6830, 6832, 3, 220, 110, 0, 6831, 6826, 1, 0, 0, 0, 6831, 6827, 1, 0, 0, 0, 6831, 6828, 1, 0, 0, 0, 6831, 6829, 1, 0, 0, 0, 6831, 6830, 1, 0, 0, 0, 6832, 6837, 1, 0, 0, 0, 6833, 6834, 5, 65, 0, 0, 6834, 6835, 5, 349, 0, 0, 6835, 6837, 3, 716, 358, 0, 6836, 6831, 1, 0, 0, 0, 6836, 6833, 1, 0, 0, 0, 6837, 635, 1, 0, 0, 0, 6838, 6839, 3, 712, 356, 0, 6839, 637, 1, 0, 0, 0, 6840, 6841, 3, 712, 356, 0, 6841, 639, 1, 0, 0, 0, 6842, 6843, 3, 712, 356, 0, 6843, 641, 1, 0, 0, 0, 6844, 6845, 3, 712, 356, 0, 6845, 643, 1, 0, 0, 0, 6846, 6847, 3, 712, 356, 0, 6847, 645, 1, 0, 0, 0, 6848, 6849, 3, 712, 356, 0, 6849, 647, 1, 0, 0, 0, 6850, 6851, 3, 716, 358, 0, 6851, 649, 1, 0, 0, 0, 6852, 6857, 3, 652, 326, 0, 6853, 6854, 5, 868, 0, 0, 6854, 6856, 3, 652, 326, 0, 6855, 6853, 1, 0, 0, 0, 6856, 6859, 1, 0, 0, 0, 6857, 6855, 1, 0, 0, 0, 6857, 6858, 1, 0, 0, 0, 6858, 651, 1, 0, 0, 0, 6859, 6857, 1, 0, 0, 0, 6860, 6861, 3, 716, 358, 0, 6861, 653, 1, 0, 0, 0, 6862, 6863, 3, 716, 358, 0, 6863, 655, 1, 0, 0, 0, 6864, 6865, 3, 716, 358, 0, 6865, 657, 1, 0, 0, 0, 6866, 6867, 3, 712, 356, 0, 6867, 659, 1, 0, 0, 0, 6868, 6873, 3, 662, 331, 0, 6869, 6870, 5, 868, 0, 0, 6870, 6872, 3, 662, 331, 0, 6871, 6869, 1, 0, 0, 0, 6872, 6875, 1, 0, 0, 0, 6873, 6871, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 661, 1, 0, 0, 0, 6875, 6873, 1, 0, 0, 0, 6876, 6877, 3, 712, 356, 0, 6877, 663, 1, 0, 0, 0, 6878, 6883, 3, 666, 333, 0, 6879, 6880, 5, 868, 0, 0, 6880, 6882, 3, 666, 333, 0, 6881, 6879, 1, 0, 0, 0, 6882, 6885, 1, 0, 0, 0, 6883, 6881, 1, 0, 0, 0, 6883, 6884, 1, 0, 0, 0, 6884, 665, 1, 0, 0, 0, 6885, 6883, 1, 0, 0, 0, 6886, 6889, 3, 694, 347, 0, 6887, 6889, 3, 716, 358, 0, 6888, 6886, 1, 0, 0, 0, 6888, 6887, 1, 0, 0, 0, 6889, 667, 1, 0, 0, 0, 6890, 6895, 3, 716, 358, 0, 6891, 6893, 3, 720, 360, 0, 6892, 6894, 3, 720, 360, 0, 6893, 6892, 1, 0, 0, 0, 6893, 6894, 1, 0, 0, 0, 6894, 6896, 1, 0, 0, 0, 6895, 6891, 1, 0, 0, 0, 6895, 6896, 1, 0, 0, 0, 6896, 6905, 1, 0, 0, 0, 6897, 6899, 9, 0, 0, 0, 6898, 6897, 1, 0, 0, 0, 6898, 6899, 1, 0, 0, 0, 6899, 6900, 1, 0, 0, 0, 6900, 6902, 3, 720, 360, 0, 6901, 6903, 3, 720, 360, 0, 6902, 6901, 1, 0, 0, 0, 6902, 6903, 1, 0, 0, 0, 6903, 6905, 1, 0, 0, 0, 6904, 6890, 1, 0, 0, 0, 6904, 6898, 1, 0, 0, 0, 6905, 669, 1, 0, 0, 0, 6906, 6911, 3, 672, 336, 0, 6907, 6908, 5, 868, 0, 0, 6908, 6910, 3, 672, 336, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6913, 1, 0, 0, 0, 6911, 6909, 1, 0, 0, 0, 6911, 6912, 1, 0, 0, 0, 6912, 671, 1, 0, 0, 0, 6913, 6911, 1, 0, 0, 0, 6914, 6919, 3, 716, 358, 0, 6915, 6917, 3, 720, 360, 0, 6916, 6918, 3, 720, 360, 0, 6917, 6916, 1, 0, 0, 0, 6917, 6918, 1, 0, 0, 0, 6918, 6920, 1, 0, 0, 0, 6919, 6915, 1, 0, 0, 0, 6919, 6920, 1, 0, 0, 0, 6920, 6930, 1, 0, 0, 0, 6921, 6923, 9, 0, 0, 0, 6922, 6921, 1, 0, 0, 0, 6922, 6923, 1, 0, 0, 0, 6923, 6924, 1, 0, 0, 0, 6924, 6926, 3, 720, 360, 0, 6925, 6927, 3, 720, 360, 0, 6926, 6925, 1, 0, 0, 0, 6926, 6927, 1, 0, 0, 0, 6927, 6930, 1, 0, 0, 0, 6928, 6930, 4, 336, 3, 0, 6929, 6914, 1, 0, 0, 0, 6929, 6922, 1, 0, 0, 0, 6929, 6928, 1, 0, 0, 0, 6930, 673, 1, 0, 0, 0, 6931, 6932, 3, 716, 358, 0, 6932, 675, 1, 0, 0, 0, 6933, 6934, 3, 716, 358, 0, 6934, 677, 1, 0, 0, 0, 6935, 6936, 3, 716, 358, 0, 6936, 679, 1, 0, 0, 0, 6937, 6942, 3, 682, 341, 0, 6938, 6939, 5, 868, 0, 0, 6939, 6941, 3, 682, 341, 0, 6940, 6938, 1, 0, 0, 0, 6941, 6944, 1, 0, 0, 0, 6942, 6940, 1, 0, 0, 0, 6942, 6943, 1, 0, 0, 0, 6943, 681, 1, 0, 0, 0, 6944, 6942, 1, 0, 0, 0, 6945, 6946, 3, 716, 358, 0, 6946, 683, 1, 0, 0, 0, 6947, 6952, 3, 716, 358, 0, 6948, 6949, 5, 866, 0, 0, 6949, 6950, 3, 722, 361, 0, 6950, 6951, 5, 867, 0, 0, 6951, 6953, 1, 0, 0, 0, 6952, 6948, 1, 0, 0, 0, 6952, 6953, 1, 0, 0, 0, 6953, 6956, 1, 0, 0, 0, 6954, 6956, 3, 814, 407, 0, 6955, 6947, 1, 0, 0, 0, 6955, 6954, 1, 0, 0, 0, 6956, 6958, 1, 0, 0, 0, 6957, 6959, 7, 55, 0, 0, 6958, 6957, 1, 0, 0, 0, 6958, 6959, 1, 0, 0, 0, 6959, 685, 1, 0, 0, 0, 6960, 6961, 3, 688, 344, 0, 6961, 6962, 5, 878, 0, 0, 6962, 6963, 3, 722, 361, 0, 6963, 687, 1, 0, 0, 0, 6964, 6965, 3, 690, 345, 0, 6965, 6966, 5, 891, 0, 0, 6966, 689, 1, 0, 0, 0, 6967, 6972, 5, 882, 0, 0, 6968, 6972, 5, 889, 0, 0, 6969, 6972, 5, 704, 0, 0, 6970, 6972, 3, 844, 422, 0, 6971, 6967, 1, 0, 0, 0, 6971, 6968, 1, 0, 0, 0, 6971, 6969, 1, 0, 0, 0, 6971, 6970, 1, 0, 0, 0, 6972, 691, 1, 0, 0, 0, 6973, 6974, 7, 110, 0, 0, 6974, 693, 1, 0, 0, 0, 6975, 6977, 3, 690, 345, 0, 6976, 6978, 3, 692, 346, 0, 6977, 6976, 1, 0, 0, 0, 6977, 6978, 1, 0, 0, 0, 6978, 6981, 1, 0, 0, 0, 6979, 6981, 3, 60, 30, 0, 6980, 6975, 1, 0, 0, 0, 6980, 6979, 1, 0, 0, 0, 6981, 695, 1, 0, 0, 0, 6982, 6983, 7, 111, 0, 0, 6983, 697, 1, 0, 0, 0, 6984, 6989, 5, 228, 0, 0, 6985, 6989, 3, 834, 417, 0, 6986, 6989, 5, 882, 0, 0, 6987, 6989, 5, 879, 0, 0, 6988, 6984, 1, 0, 0, 0, 6988, 6985, 1, 0, 0, 0, 6988, 6986, 1, 0, 0, 0, 6988, 6987, 1, 0, 0, 0, 6989, 699, 1, 0, 0, 0, 6990, 6991, 3, 716, 358, 0, 6991, 701, 1, 0, 0, 0, 6992, 6996, 3, 704, 352, 0, 6993, 6996, 5, 889, 0, 0, 6994, 6996, 5, 882, 0, 0, 6995, 6992, 1, 0, 0, 0, 6995, 6993, 1, 0, 0, 0, 6995, 6994, 1, 0, 0, 0, 6996, 703, 1, 0, 0, 0, 6997, 6998, 7, 112, 0, 0, 6998, 705, 1, 0, 0, 0, 6999, 7000, 3, 722, 361, 0, 7000, 7001, 5, 854, 0, 0, 7001, 7002, 3, 722, 361, 0, 7002, 7003, 5, 854, 0, 0, 7003, 7004, 3, 722, 361, 0, 7004, 7005, 5, 854, 0, 0, 7005, 7006, 3, 722, 361, 0, 7006, 7007, 5, 854, 0, 0, 7007, 7013, 3, 722, 361, 0, 7008, 7009, 5, 878, 0, 0, 7009, 7010, 3, 722, 361, 0, 7010, 7011, 5, 854, 0, 0, 7011, 7012, 3, 722, 361, 0, 7012, 7014, 1, 0, 0, 0, 7013, 7008, 1, 0, 0, 0, 7014, 7015, 1, 0, 0, 0, 7015, 7013, 1, 0, 0, 0, 7015, 7016, 1, 0, 0, 0, 7016, 707, 1, 0, 0, 0, 7017, 7024, 3, 710, 355, 0, 7018, 7019, 5, 868, 0, 0, 7019, 7022, 3, 710, 355, 0, 7020, 7021, 5, 868, 0, 0, 7021, 7023, 3, 722, 361, 0, 7022, 7020, 1, 0, 0, 0, 7022, 7023, 1, 0, 0, 0, 7023, 7025, 1, 0, 0, 0, 7024, 7018, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 709, 1, 0, 0, 0, 7026, 7034, 5, 882, 0, 0, 7027, 7034, 5, 887, 0, 0, 7028, 7030, 5, 884, 0, 0, 7029, 7028, 1, 0, 0, 0, 7030, 7031, 1, 0, 0, 0, 7031, 7029, 1, 0, 0, 0, 7031, 7032, 1, 0, 0, 0, 7032, 7034, 1, 0, 0, 0, 7033, 7026, 1, 0, 0, 0, 7033, 7027, 1, 0, 0, 0, 7033, 7029, 1, 0, 0, 0, 7034, 711, 1, 0, 0, 0, 7035, 7037, 3, 716, 358, 0, 7036, 7038, 3, 720, 360, 0, 7037, 7036, 1, 0, 0, 0, 7037, 7038, 1, 0, 0, 0, 7038, 713, 1, 0, 0, 0, 7039, 7044, 3, 716, 358, 0, 7040, 7041, 5, 868, 0, 0, 7041, 7043, 3, 716, 358, 0, 7042, 7040, 1, 0, 0, 0, 7043, 7046, 1, 0, 0, 0, 7044, 7042, 1, 0, 0, 0, 7044, 7045, 1, 0, 0, 0, 7045, 715, 1, 0, 0, 0, 7046, 7044, 1, 0, 0, 0, 7047, 7051, 3, 718, 359, 0, 7048, 7051, 5, 879, 0, 0, 7049, 7051, 5, 882, 0, 0, 7050, 7047, 1, 0, 0, 0, 7050, 7048, 1, 0, 0, 0, 7050, 7049, 1, 0, 0, 0, 7051, 717, 1, 0, 0, 0, 7052, 7062, 5, 889, 0, 0, 7053, 7062, 3, 834, 417, 0, 7054, 7062, 3, 836, 418, 0, 7055, 7062, 3, 704, 352, 0, 7056, 7062, 3, 838, 419, 0, 7057, 7062, 3, 840, 420, 0, 7058, 7062, 3, 842, 421, 0, 7059, 7062, 3, 844, 422, 0, 7060, 7062, 3, 806, 403, 0, 7061, 7052, 1, 0, 0, 0, 7061, 7053, 1, 0, 0, 0, 7061, 7054, 1, 0, 0, 0, 7061, 7055, 1, 0, 0, 0, 7061, 7056, 1, 0, 0, 0, 7061, 7057, 1, 0, 0, 0, 7061, 7058, 1, 0, 0, 0, 7061, 7059, 1, 0, 0, 0, 7061, 7060, 1, 0, 0, 0, 7062, 719, 1, 0, 0, 0, 7063, 7064, 5, 865, 0, 0, 7064, 7068, 5, 889, 0, 0, 7065, 7066, 5, 865, 0, 0, 7066, 7068, 3, 716, 358, 0, 7067, 7063, 1, 0, 0, 0, 7067, 7065, 1, 0, 0, 0, 7068, 721, 1, 0, 0, 0, 7069, 7070, 7, 113, 0, 0, 7070, 723, 1, 0, 0, 0, 7071, 7074, 5, 880, 0, 0, 7072, 7074, 3, 722, 361, 0, 7073, 7071, 1, 0, 0, 0, 7073, 7072, 1, 0, 0, 0, 7074, 725, 1, 0, 0, 0, 7075, 7077, 5, 888, 0, 0, 7076, 7075, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7078, 1, 0, 0, 0, 7078, 7081, 5, 882, 0, 0, 7079, 7081, 5, 881, 0, 0, 7080, 7076, 1, 0, 0, 0, 7080, 7079, 1, 0, 0, 0, 7081, 7083, 1, 0, 0, 0, 7082, 7084, 5, 882, 0, 0, 7083, 7082, 1, 0, 0, 0, 7084, 7085, 1, 0, 0, 0, 7085, 7083, 1, 0, 0, 0, 7085, 7086, 1, 0, 0, 0, 7086, 7099, 1, 0, 0, 0, 7087, 7089, 5, 888, 0, 0, 7088, 7087, 1, 0, 0, 0, 7088, 7089, 1, 0, 0, 0, 7089, 7090, 1, 0, 0, 0, 7090, 7093, 5, 882, 0, 0, 7091, 7093, 5, 881, 0, 0, 7092, 7088, 1, 0, 0, 0, 7092, 7091, 1, 0, 0, 0, 7093, 7096, 1, 0, 0, 0, 7094, 7095, 5, 28, 0, 0, 7095, 7097, 3, 700, 350, 0, 7096, 7094, 1, 0, 0, 0, 7096, 7097, 1, 0, 0, 0, 7097, 7099, 1, 0, 0, 0, 7098, 7080, 1, 0, 0, 0, 7098, 7092, 1, 0, 0, 0, 7099, 727, 1, 0, 0, 0, 7100, 7101, 7, 114, 0, 0, 7101, 729, 1, 0, 0, 0, 7102, 7104, 5, 888, 0, 0, 7103, 7102, 1, 0, 0, 0, 7103, 7104, 1, 0, 0, 0, 7104, 7105, 1, 0, 0, 0, 7105, 7106, 5, 884, 0, 0, 7106, 731, 1, 0, 0, 0, 7107, 7109, 5, 114, 0, 0, 7108, 7107, 1, 0, 0, 0, 7108, 7109, 1, 0, 0, 0, 7109, 7110, 1, 0, 0, 0, 7110, 7111, 7, 115, 0, 0, 7111, 733, 1, 0, 0, 0, 7112, 7125, 3, 726, 363, 0, 7113, 7125, 3, 722, 361, 0, 7114, 7115, 5, 854, 0, 0, 7115, 7125, 3, 722, 361, 0, 7116, 7125, 3, 730, 365, 0, 7117, 7125, 3, 728, 364, 0, 7118, 7125, 5, 885, 0, 0, 7119, 7125, 5, 887, 0, 0, 7120, 7122, 5, 114, 0, 0, 7121, 7120, 1, 0, 0, 0, 7121, 7122, 1, 0, 0, 0, 7122, 7123, 1, 0, 0, 0, 7123, 7125, 7, 115, 0, 0, 7124, 7112, 1, 0, 0, 0, 7124, 7113, 1, 0, 0, 0, 7124, 7114, 1, 0, 0, 0, 7124, 7116, 1, 0, 0, 0, 7124, 7117, 1, 0, 0, 0, 7124, 7118, 1, 0, 0, 0, 7124, 7119, 1, 0, 0, 0, 7124, 7121, 1, 0, 0, 0, 7125, 735, 1, 0, 0, 0, 7126, 7128, 7, 116, 0, 0, 7127, 7129, 5, 240, 0, 0, 7128, 7127, 1, 0, 0, 0, 7128, 7129, 1, 0, 0, 0, 7129, 7131, 1, 0, 0, 0, 7130, 7132, 3, 742, 371, 0, 7131, 7130, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7134, 1, 0, 0, 0, 7133, 7135, 5, 228, 0, 0, 7134, 7133, 1, 0, 0, 0, 7134, 7135, 1, 0, 0, 0, 7135, 7139, 1, 0, 0, 0, 7136, 7137, 3, 58, 29, 0, 7137, 7138, 3, 698, 349, 0, 7138, 7140, 1, 0, 0, 0, 7139, 7136, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7144, 1, 0, 0, 0, 7141, 7142, 5, 28, 0, 0, 7142, 7145, 3, 700, 350, 0, 7143, 7145, 5, 228, 0, 0, 7144, 7141, 1, 0, 0, 0, 7144, 7143, 1, 0, 0, 0, 7144, 7145, 1, 0, 0, 0, 7145, 7253, 1, 0, 0, 0, 7146, 7147, 5, 227, 0, 0, 7147, 7148, 7, 117, 0, 0, 7148, 7150, 5, 240, 0, 0, 7149, 7151, 3, 742, 371, 0, 7150, 7149, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7153, 1, 0, 0, 0, 7152, 7154, 5, 228, 0, 0, 7153, 7152, 1, 0, 0, 0, 7153, 7154, 1, 0, 0, 0, 7154, 7253, 1, 0, 0, 0, 7155, 7156, 5, 227, 0, 0, 7156, 7158, 7, 118, 0, 0, 7157, 7159, 3, 742, 371, 0, 7158, 7157, 1, 0, 0, 0, 7158, 7159, 1, 0, 0, 0, 7159, 7161, 1, 0, 0, 0, 7160, 7162, 5, 228, 0, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7253, 1, 0, 0, 0, 7163, 7164, 5, 498, 0, 0, 7164, 7166, 5, 225, 0, 0, 7165, 7167, 3, 742, 371, 0, 7166, 7165, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7169, 1, 0, 0, 0, 7168, 7170, 5, 228, 0, 0, 7169, 7168, 1, 0, 0, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7253, 1, 0, 0, 0, 7171, 7173, 7, 119, 0, 0, 7172, 7174, 3, 742, 371, 0, 7173, 7172, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7178, 1, 0, 0, 0, 7175, 7177, 7, 120, 0, 0, 7176, 7175, 1, 0, 0, 0, 7177, 7180, 1, 0, 0, 0, 7178, 7176, 1, 0, 0, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7253, 1, 0, 0, 0, 7180, 7178, 1, 0, 0, 0, 7181, 7183, 5, 210, 0, 0, 7182, 7184, 3, 744, 372, 0, 7183, 7182, 1, 0, 0, 0, 7183, 7184, 1, 0, 0, 0, 7184, 7188, 1, 0, 0, 0, 7185, 7187, 7, 120, 0, 0, 7186, 7185, 1, 0, 0, 0, 7187, 7190, 1, 0, 0, 0, 7188, 7186, 1, 0, 0, 0, 7188, 7189, 1, 0, 0, 0, 7189, 7253, 1, 0, 0, 0, 7190, 7188, 1, 0, 0, 0, 7191, 7193, 5, 211, 0, 0, 7192, 7194, 5, 212, 0, 0, 7193, 7192, 1, 0, 0, 0, 7193, 7194, 1, 0, 0, 0, 7194, 7196, 1, 0, 0, 0, 7195, 7197, 3, 744, 372, 0, 7196, 7195, 1, 0, 0, 0, 7196, 7197, 1, 0, 0, 0, 7197, 7201, 1, 0, 0, 0, 7198, 7200, 7, 120, 0, 0, 7199, 7198, 1, 0, 0, 0, 7200, 7203, 1, 0, 0, 0, 7201, 7199, 1, 0, 0, 0, 7201, 7202, 1, 0, 0, 0, 7202, 7253, 1, 0, 0, 0, 7203, 7201, 1, 0, 0, 0, 7204, 7206, 7, 121, 0, 0, 7205, 7207, 3, 746, 373, 0, 7206, 7205, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7211, 1, 0, 0, 0, 7208, 7210, 7, 120, 0, 0, 7209, 7208, 1, 0, 0, 0, 7210, 7213, 1, 0, 0, 0, 7211, 7209, 1, 0, 0, 0, 7211, 7212, 1, 0, 0, 0, 7212, 7253, 1, 0, 0, 0, 7213, 7211, 1, 0, 0, 0, 7214, 7253, 7, 122, 0, 0, 7215, 7217, 7, 123, 0, 0, 7216, 7218, 3, 742, 371, 0, 7217, 7216, 1, 0, 0, 0, 7217, 7218, 1, 0, 0, 0, 7218, 7253, 1, 0, 0, 0, 7219, 7220, 7, 124, 0, 0, 7220, 7222, 3, 738, 369, 0, 7221, 7223, 5, 228, 0, 0, 7222, 7221, 1, 0, 0, 0, 7222, 7223, 1, 0, 0, 0, 7223, 7227, 1, 0, 0, 0, 7224, 7225, 3, 58, 29, 0, 7225, 7226, 3, 698, 349, 0, 7226, 7228, 1, 0, 0, 0, 7227, 7224, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 7253, 1, 0, 0, 0, 7229, 7232, 7, 125, 0, 0, 7230, 7231, 5, 834, 0, 0, 7231, 7233, 3, 722, 361, 0, 7232, 7230, 1, 0, 0, 0, 7232, 7233, 1, 0, 0, 0, 7233, 7253, 1, 0, 0, 0, 7234, 7236, 5, 233, 0, 0, 7235, 7237, 5, 225, 0, 0, 7236, 7235, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7239, 1, 0, 0, 0, 7238, 7240, 5, 228, 0, 0, 7239, 7238, 1, 0, 0, 0, 7239, 7240, 1, 0, 0, 0, 7240, 7244, 1, 0, 0, 0, 7241, 7242, 3, 58, 29, 0, 7242, 7243, 3, 698, 349, 0, 7243, 7245, 1, 0, 0, 0, 7244, 7241, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7248, 1, 0, 0, 0, 7246, 7247, 5, 28, 0, 0, 7247, 7249, 3, 700, 350, 0, 7248, 7246, 1, 0, 0, 0, 7248, 7249, 1, 0, 0, 0, 7249, 7253, 1, 0, 0, 0, 7250, 7251, 5, 233, 0, 0, 7251, 7253, 5, 229, 0, 0, 7252, 7126, 1, 0, 0, 0, 7252, 7146, 1, 0, 0, 0, 7252, 7155, 1, 0, 0, 0, 7252, 7163, 1, 0, 0, 0, 7252, 7171, 1, 0, 0, 0, 7252, 7181, 1, 0, 0, 0, 7252, 7191, 1, 0, 0, 0, 7252, 7204, 1, 0, 0, 0, 7252, 7214, 1, 0, 0, 0, 7252, 7215, 1, 0, 0, 0, 7252, 7219, 1, 0, 0, 0, 7252, 7229, 1, 0, 0, 0, 7252, 7234, 1, 0, 0, 0, 7252, 7250, 1, 0, 0, 0, 7253, 737, 1, 0, 0, 0, 7254, 7255, 5, 866, 0, 0, 7255, 7260, 5, 882, 0, 0, 7256, 7257, 5, 868, 0, 0, 7257, 7259, 5, 882, 0, 0, 7258, 7256, 1, 0, 0, 0, 7259, 7262, 1, 0, 0, 0, 7260, 7258, 1, 0, 0, 0, 7260, 7261, 1, 0, 0, 0, 7261, 7263, 1, 0, 0, 0, 7262, 7260, 1, 0, 0, 0, 7263, 7264, 5, 867, 0, 0, 7264, 739, 1, 0, 0, 0, 7265, 7267, 7, 126, 0, 0, 7266, 7268, 3, 742, 371, 0, 7267, 7266, 1, 0, 0, 0, 7267, 7268, 1, 0, 0, 0, 7268, 7288, 1, 0, 0, 0, 7269, 7271, 5, 224, 0, 0, 7270, 7272, 3, 742, 371, 0, 7271, 7270, 1, 0, 0, 0, 7271, 7272, 1, 0, 0, 0, 7272, 7276, 1, 0, 0, 0, 7273, 7274, 3, 58, 29, 0, 7274, 7275, 3, 698, 349, 0, 7275, 7277, 1, 0, 0, 0, 7276, 7273, 1, 0, 0, 0, 7276, 7277, 1, 0, 0, 0, 7277, 7288, 1, 0, 0, 0, 7278, 7288, 7, 127, 0, 0, 7279, 7281, 7, 128, 0, 0, 7280, 7282, 3, 746, 373, 0, 7281, 7280, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7288, 1, 0, 0, 0, 7283, 7285, 7, 129, 0, 0, 7284, 7286, 7, 130, 0, 0, 7285, 7284, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 7288, 1, 0, 0, 0, 7287, 7265, 1, 0, 0, 0, 7287, 7269, 1, 0, 0, 0, 7287, 7278, 1, 0, 0, 0, 7287, 7279, 1, 0, 0, 0, 7287, 7283, 1, 0, 0, 0, 7288, 7290, 1, 0, 0, 0, 7289, 7291, 5, 12, 0, 0, 7290, 7289, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 741, 1, 0, 0, 0, 7292, 7293, 5, 866, 0, 0, 7293, 7294, 3, 722, 361, 0, 7294, 7295, 5, 867, 0, 0, 7295, 743, 1, 0, 0, 0, 7296, 7297, 5, 866, 0, 0, 7297, 7298, 3, 722, 361, 0, 7298, 7299, 5, 868, 0, 0, 7299, 7300, 3, 722, 361, 0, 7300, 7301, 5, 867, 0, 0, 7301, 745, 1, 0, 0, 0, 7302, 7303, 5, 866, 0, 0, 7303, 7306, 3, 722, 361, 0, 7304, 7305, 5, 868, 0, 0, 7305, 7307, 3, 722, 361, 0, 7306, 7304, 1, 0, 0, 0, 7306, 7307, 1, 0, 0, 0, 7307, 7308, 1, 0, 0, 0, 7308, 7309, 5, 867, 0, 0, 7309, 747, 1, 0, 0, 0, 7310, 7311, 5, 866, 0, 0, 7311, 7316, 3, 684, 342, 0, 7312, 7313, 5, 868, 0, 0, 7313, 7315, 3, 684, 342, 0, 7314, 7312, 1, 0, 0, 0, 7315, 7318, 1, 0, 0, 0, 7316, 7314, 1, 0, 0, 0, 7316, 7317, 1, 0, 0, 0, 7317, 7319, 1, 0, 0, 0, 7318, 7316, 1, 0, 0, 0, 7319, 7320, 5, 867, 0, 0, 7320, 749, 1, 0, 0, 0, 7321, 7326, 3, 814, 407, 0, 7322, 7323, 5, 868, 0, 0, 7323, 7325, 3, 814, 407, 0, 7324, 7322, 1, 0, 0, 0, 7325, 7328, 1, 0, 0, 0, 7326, 7324, 1, 0, 0, 0, 7326, 7327, 1, 0, 0, 0, 7327, 751, 1, 0, 0, 0, 7328, 7326, 1, 0, 0, 0, 7329, 7330, 7, 131, 0, 0, 7330, 7335, 3, 754, 377, 0, 7331, 7332, 5, 868, 0, 0, 7332, 7334, 3, 754, 377, 0, 7333, 7331, 1, 0, 0, 0, 7334, 7337, 1, 0, 0, 0, 7335, 7333, 1, 0, 0, 0, 7335, 7336, 1, 0, 0, 0, 7336, 753, 1, 0, 0, 0, 7337, 7335, 1, 0, 0, 0, 7338, 7339, 5, 866, 0, 0, 7339, 7344, 3, 756, 378, 0, 7340, 7341, 5, 868, 0, 0, 7341, 7343, 3, 756, 378, 0, 7342, 7340, 1, 0, 0, 0, 7343, 7346, 1, 0, 0, 0, 7344, 7342, 1, 0, 0, 0, 7344, 7345, 1, 0, 0, 0, 7345, 7347, 1, 0, 0, 0, 7346, 7344, 1, 0, 0, 0, 7347, 7348, 5, 867, 0, 0, 7348, 755, 1, 0, 0, 0, 7349, 7352, 3, 814, 407, 0, 7350, 7352, 5, 42, 0, 0, 7351, 7349, 1, 0, 0, 0, 7351, 7350, 1, 0, 0, 0, 7352, 757, 1, 0, 0, 0, 7353, 7358, 3, 734, 367, 0, 7354, 7355, 5, 868, 0, 0, 7355, 7357, 3, 734, 367, 0, 7356, 7354, 1, 0, 0, 0, 7357, 7360, 1, 0, 0, 0, 7358, 7356, 1, 0, 0, 0, 7358, 7359, 1, 0, 0, 0, 7359, 759, 1, 0, 0, 0, 7360, 7358, 1, 0, 0, 0, 7361, 7366, 5, 882, 0, 0, 7362, 7363, 5, 868, 0, 0, 7363, 7365, 5, 882, 0, 0, 7364, 7362, 1, 0, 0, 0, 7365, 7368, 1, 0, 0, 0, 7366, 7364, 1, 0, 0, 0, 7366, 7367, 1, 0, 0, 0, 7367, 761, 1, 0, 0, 0, 7368, 7366, 1, 0, 0, 0, 7369, 7374, 5, 892, 0, 0, 7370, 7371, 5, 868, 0, 0, 7371, 7373, 5, 892, 0, 0, 7372, 7370, 1, 0, 0, 0, 7373, 7376, 1, 0, 0, 0, 7374, 7372, 1, 0, 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 763, 1, 0, 0, 0, 7376, 7374, 1, 0, 0, 0, 7377, 7404, 5, 116, 0, 0, 7378, 7379, 5, 24, 0, 0, 7379, 7380, 5, 866, 0, 0, 7380, 7381, 3, 814, 407, 0, 7381, 7382, 5, 13, 0, 0, 7382, 7383, 3, 740, 370, 0, 7383, 7384, 5, 867, 0, 0, 7384, 7404, 1, 0, 0, 0, 7385, 7387, 3, 820, 410, 0, 7386, 7385, 1, 0, 0, 0, 7386, 7387, 1, 0, 0, 0, 7387, 7388, 1, 0, 0, 0, 7388, 7404, 3, 734, 367, 0, 7389, 7393, 3, 766, 383, 0, 7390, 7391, 5, 119, 0, 0, 7391, 7392, 5, 185, 0, 0, 7392, 7394, 3, 766, 383, 0, 7393, 7390, 1, 0, 0, 0, 7393, 7394, 1, 0, 0, 0, 7394, 7404, 1, 0, 0, 0, 7395, 7396, 5, 866, 0, 0, 7396, 7397, 3, 814, 407, 0, 7397, 7398, 5, 867, 0, 0, 7398, 7404, 1, 0, 0, 0, 7399, 7400, 5, 866, 0, 0, 7400, 7401, 3, 712, 356, 0, 7401, 7402, 5, 867, 0, 0, 7402, 7404, 1, 0, 0, 0, 7403, 7377, 1, 0, 0, 0, 7403, 7378, 1, 0, 0, 0, 7403, 7386, 1, 0, 0, 0, 7403, 7389, 1, 0, 0, 0, 7403, 7395, 1, 0, 0, 0, 7403, 7399, 1, 0, 0, 0, 7404, 765, 1, 0, 0, 0, 7405, 7411, 7, 132, 0, 0, 7406, 7408, 5, 866, 0, 0, 7407, 7409, 3, 722, 361, 0, 7408, 7407, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 7412, 5, 867, 0, 0, 7411, 7406, 1, 0, 0, 0, 7411, 7412, 1, 0, 0, 0, 7412, 7420, 1, 0, 0, 0, 7413, 7414, 5, 295, 0, 0, 7414, 7416, 5, 866, 0, 0, 7415, 7417, 3, 722, 361, 0, 7416, 7415, 1, 0, 0, 0, 7416, 7417, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 7420, 5, 867, 0, 0, 7419, 7405, 1, 0, 0, 0, 7419, 7413, 1, 0, 0, 0, 7420, 767, 1, 0, 0, 0, 7421, 7422, 5, 78, 0, 0, 7422, 7423, 5, 60, 0, 0, 7423, 769, 1, 0, 0, 0, 7424, 7425, 5, 78, 0, 0, 7425, 7426, 5, 114, 0, 0, 7426, 7427, 5, 60, 0, 0, 7427, 771, 1, 0, 0, 0, 7428, 7429, 5, 124, 0, 0, 7429, 7430, 5, 143, 0, 0, 7430, 773, 1, 0, 0, 0, 7431, 7454, 3, 776, 388, 0, 7432, 7454, 3, 784, 392, 0, 7433, 7454, 3, 786, 393, 0, 7434, 7441, 3, 806, 403, 0, 7435, 7436, 5, 866, 0, 0, 7436, 7442, 5, 867, 0, 0, 7437, 7438, 5, 866, 0, 0, 7438, 7439, 3, 810, 405, 0, 7439, 7440, 5, 867, 0, 0, 7440, 7442, 1, 0, 0, 0, 7441, 7435, 1, 0, 0, 0, 7441, 7437, 1, 0, 0, 0, 7442, 7454, 1, 0, 0, 0, 7443, 7450, 3, 642, 321, 0, 7444, 7445, 5, 866, 0, 0, 7445, 7451, 5, 867, 0, 0, 7446, 7447, 5, 866, 0, 0, 7447, 7448, 3, 810, 405, 0, 7448, 7449, 5, 867, 0, 0, 7449, 7451, 1, 0, 0, 0, 7450, 7444, 1, 0, 0, 0, 7450, 7446, 1, 0, 0, 0, 7451, 7454, 1, 0, 0, 0, 7452, 7454, 3, 808, 404, 0, 7453, 7431, 1, 0, 0, 0, 7453, 7432, 1, 0, 0, 0, 7453, 7433, 1, 0, 0, 0, 7453, 7434, 1, 0, 0, 0, 7453, 7443, 1, 0, 0, 0, 7453, 7452, 1, 0, 0, 0, 7454, 775, 1, 0, 0, 0, 7455, 7458, 7, 133, 0, 0, 7456, 7457, 5, 866, 0, 0, 7457, 7459, 5, 867, 0, 0, 7458, 7456, 1, 0, 0, 0, 7458, 7459, 1, 0, 0, 0, 7459, 7635, 1, 0, 0, 0, 7460, 7635, 3, 60, 30, 0, 7461, 7462, 5, 33, 0, 0, 7462, 7463, 5, 866, 0, 0, 7463, 7464, 3, 814, 407, 0, 7464, 7465, 5, 868, 0, 0, 7465, 7466, 3, 740, 370, 0, 7466, 7467, 5, 867, 0, 0, 7467, 7635, 1, 0, 0, 0, 7468, 7469, 5, 33, 0, 0, 7469, 7470, 5, 866, 0, 0, 7470, 7471, 3, 814, 407, 0, 7471, 7472, 5, 188, 0, 0, 7472, 7473, 3, 698, 349, 0, 7473, 7474, 5, 867, 0, 0, 7474, 7635, 1, 0, 0, 0, 7475, 7476, 5, 24, 0, 0, 7476, 7477, 5, 866, 0, 0, 7477, 7478, 3, 814, 407, 0, 7478, 7479, 5, 13, 0, 0, 7479, 7480, 3, 740, 370, 0, 7480, 7481, 5, 867, 0, 0, 7481, 7635, 1, 0, 0, 0, 7482, 7483, 5, 189, 0, 0, 7483, 7484, 5, 866, 0, 0, 7484, 7485, 3, 672, 336, 0, 7485, 7486, 5, 867, 0, 0, 7486, 7635, 1, 0, 0, 0, 7487, 7489, 5, 23, 0, 0, 7488, 7490, 3, 778, 389, 0, 7489, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7489, 1, 0, 0, 0, 7491, 7492, 1, 0, 0, 0, 7492, 7495, 1, 0, 0, 0, 7493, 7494, 5, 53, 0, 0, 7494, 7496, 3, 812, 406, 0, 7495, 7493, 1, 0, 0, 0, 7495, 7496, 1, 0, 0, 0, 7496, 7497, 1, 0, 0, 0, 7497, 7498, 5, 378, 0, 0, 7498, 7635, 1, 0, 0, 0, 7499, 7500, 5, 23, 0, 0, 7500, 7502, 3, 814, 407, 0, 7501, 7503, 3, 778, 389, 0, 7502, 7501, 1, 0, 0, 0, 7503, 7504, 1, 0, 0, 0, 7504, 7502, 1, 0, 0, 0, 7504, 7505, 1, 0, 0, 0, 7505, 7508, 1, 0, 0, 0, 7506, 7507, 5, 53, 0, 0, 7507, 7509, 3, 812, 406, 0, 7508, 7506, 1, 0, 0, 0, 7508, 7509, 1, 0, 0, 0, 7509, 7510, 1, 0, 0, 0, 7510, 7511, 5, 378, 0, 0, 7511, 7635, 1, 0, 0, 0, 7512, 7513, 5, 224, 0, 0, 7513, 7514, 5, 866, 0, 0, 7514, 7517, 3, 810, 405, 0, 7515, 7516, 5, 188, 0, 0, 7516, 7518, 3, 698, 349, 0, 7517, 7515, 1, 0, 0, 0, 7517, 7518, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7520, 5, 867, 0, 0, 7520, 7635, 1, 0, 0, 0, 7521, 7522, 5, 296, 0, 0, 7522, 7525, 5, 866, 0, 0, 7523, 7526, 3, 726, 363, 0, 7524, 7526, 3, 814, 407, 0, 7525, 7523, 1, 0, 0, 0, 7525, 7524, 1, 0, 0, 0, 7526, 7527, 1, 0, 0, 0, 7527, 7530, 5, 80, 0, 0, 7528, 7531, 3, 726, 363, 0, 7529, 7531, 3, 814, 407, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7529, 1, 0, 0, 0, 7531, 7532, 1, 0, 0, 0, 7532, 7533, 5, 867, 0, 0, 7533, 7635, 1, 0, 0, 0, 7534, 7535, 7, 134, 0, 0, 7535, 7538, 5, 866, 0, 0, 7536, 7539, 3, 726, 363, 0, 7537, 7539, 3, 814, 407, 0, 7538, 7536, 1, 0, 0, 0, 7538, 7537, 1, 0, 0, 0, 7539, 7540, 1, 0, 0, 0, 7540, 7543, 5, 68, 0, 0, 7541, 7544, 3, 722, 361, 0, 7542, 7544, 3, 814, 407, 0, 7543, 7541, 1, 0, 0, 0, 7543, 7542, 1, 0, 0, 0, 7544, 7550, 1, 0, 0, 0, 7545, 7548, 5, 65, 0, 0, 7546, 7549, 3, 722, 361, 0, 7547, 7549, 3, 814, 407, 0, 7548, 7546, 1, 0, 0, 0, 7548, 7547, 1, 0, 0, 0, 7549, 7551, 1, 0, 0, 0, 7550, 7545, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7552, 1, 0, 0, 0, 7552, 7553, 5, 867, 0, 0, 7553, 7635, 1, 0, 0, 0, 7554, 7555, 5, 300, 0, 0, 7555, 7556, 5, 866, 0, 0, 7556, 7559, 7, 135, 0, 0, 7557, 7560, 3, 726, 363, 0, 7558, 7560, 3, 814, 407, 0, 7559, 7557, 1, 0, 0, 0, 7559, 7558, 1, 0, 0, 0, 7559, 7560, 1, 0, 0, 0, 7560, 7561, 1, 0, 0, 0, 7561, 7564, 5, 68, 0, 0, 7562, 7565, 3, 726, 363, 0, 7563, 7565, 3, 814, 407, 0, 7564, 7562, 1, 0, 0, 0, 7564, 7563, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7567, 5, 867, 0, 0, 7567, 7635, 1, 0, 0, 0, 7568, 7569, 5, 300, 0, 0, 7569, 7572, 5, 866, 0, 0, 7570, 7573, 3, 726, 363, 0, 7571, 7573, 3, 814, 407, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7571, 1, 0, 0, 0, 7573, 7574, 1, 0, 0, 0, 7574, 7577, 5, 68, 0, 0, 7575, 7578, 3, 726, 363, 0, 7576, 7578, 3, 814, 407, 0, 7577, 7575, 1, 0, 0, 0, 7577, 7576, 1, 0, 0, 0, 7578, 7579, 1, 0, 0, 0, 7579, 7580, 5, 867, 0, 0, 7580, 7635, 1, 0, 0, 0, 7581, 7582, 5, 840, 0, 0, 7582, 7585, 5, 866, 0, 0, 7583, 7586, 3, 726, 363, 0, 7584, 7586, 3, 814, 407, 0, 7585, 7583, 1, 0, 0, 0, 7585, 7584, 1, 0, 0, 0, 7586, 7593, 1, 0, 0, 0, 7587, 7588, 5, 13, 0, 0, 7588, 7589, 7, 136, 0, 0, 7589, 7590, 5, 866, 0, 0, 7590, 7591, 3, 722, 361, 0, 7591, 7592, 5, 867, 0, 0, 7592, 7594, 1, 0, 0, 0, 7593, 7587, 1, 0, 0, 0, 7593, 7594, 1, 0, 0, 0, 7594, 7596, 1, 0, 0, 0, 7595, 7597, 3, 780, 390, 0, 7596, 7595, 1, 0, 0, 0, 7596, 7597, 1, 0, 0, 0, 7597, 7598, 1, 0, 0, 0, 7598, 7599, 5, 867, 0, 0, 7599, 7635, 1, 0, 0, 0, 7600, 7601, 5, 293, 0, 0, 7601, 7602, 5, 866, 0, 0, 7602, 7603, 3, 70, 35, 0, 7603, 7606, 5, 68, 0, 0, 7604, 7607, 3, 726, 363, 0, 7605, 7607, 3, 814, 407, 0, 7606, 7604, 1, 0, 0, 0, 7606, 7605, 1, 0, 0, 0, 7607, 7608, 1, 0, 0, 0, 7608, 7609, 5, 867, 0, 0, 7609, 7635, 1, 0, 0, 0, 7610, 7611, 5, 827, 0, 0, 7611, 7612, 5, 866, 0, 0, 7612, 7613, 7, 137, 0, 0, 7613, 7614, 5, 868, 0, 0, 7614, 7615, 3, 726, 363, 0, 7615, 7616, 5, 867, 0, 0, 7616, 7635, 1, 0, 0, 0, 7617, 7618, 5, 254, 0, 0, 7618, 7619, 5, 866, 0, 0, 7619, 7620, 3, 814, 407, 0, 7620, 7621, 5, 868, 0, 0, 7621, 7624, 3, 814, 407, 0, 7622, 7623, 5, 579, 0, 0, 7623, 7625, 3, 740, 370, 0, 7624, 7622, 1, 0, 0, 0, 7624, 7625, 1, 0, 0, 0, 7625, 7627, 1, 0, 0, 0, 7626, 7628, 3, 294, 147, 0, 7627, 7626, 1, 0, 0, 0, 7627, 7628, 1, 0, 0, 0, 7628, 7630, 1, 0, 0, 0, 7629, 7631, 3, 296, 148, 0, 7630, 7629, 1, 0, 0, 0, 7630, 7631, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 7633, 5, 867, 0, 0, 7633, 7635, 1, 0, 0, 0, 7634, 7455, 1, 0, 0, 0, 7634, 7460, 1, 0, 0, 0, 7634, 7461, 1, 0, 0, 0, 7634, 7468, 1, 0, 0, 0, 7634, 7475, 1, 0, 0, 0, 7634, 7482, 1, 0, 0, 0, 7634, 7487, 1, 0, 0, 0, 7634, 7499, 1, 0, 0, 0, 7634, 7512, 1, 0, 0, 0, 7634, 7521, 1, 0, 0, 0, 7634, 7534, 1, 0, 0, 0, 7634, 7554, 1, 0, 0, 0, 7634, 7568, 1, 0, 0, 0, 7634, 7581, 1, 0, 0, 0, 7634, 7600, 1, 0, 0, 0, 7634, 7610, 1, 0, 0, 0, 7634, 7617, 1, 0, 0, 0, 7635, 777, 1, 0, 0, 0, 7636, 7637, 5, 191, 0, 0, 7637, 7638, 3, 812, 406, 0, 7638, 7639, 5, 175, 0, 0, 7639, 7640, 3, 812, 406, 0, 7640, 779, 1, 0, 0, 0, 7641, 7642, 5, 448, 0, 0, 7642, 7647, 3, 782, 391, 0, 7643, 7644, 5, 868, 0, 0, 7644, 7646, 3, 782, 391, 0, 7645, 7643, 1, 0, 0, 0, 7646, 7649, 1, 0, 0, 0, 7647, 7645, 1, 0, 0, 0, 7647, 7648, 1, 0, 0, 0, 7648, 7656, 1, 0, 0, 0, 7649, 7647, 1, 0, 0, 0, 7650, 7651, 5, 448, 0, 0, 7651, 7652, 3, 722, 361, 0, 7652, 7653, 5, 854, 0, 0, 7653, 7654, 3, 722, 361, 0, 7654, 7656, 1, 0, 0, 0, 7655, 7641, 1, 0, 0, 0, 7655, 7650, 1, 0, 0, 0, 7656, 781, 1, 0, 0, 0, 7657, 7659, 3, 722, 361, 0, 7658, 7660, 7, 138, 0, 0, 7659, 7658, 1, 0, 0, 0, 7659, 7660, 1, 0, 0, 0, 7660, 783, 1, 0, 0, 0, 7661, 7662, 7, 139, 0, 0, 7662, 7664, 5, 866, 0, 0, 7663, 7665, 7, 45, 0, 0, 7664, 7663, 1, 0, 0, 0, 7664, 7665, 1, 0, 0, 0, 7665, 7666, 1, 0, 0, 0, 7666, 7667, 3, 812, 406, 0, 7667, 7669, 5, 867, 0, 0, 7668, 7670, 3, 788, 394, 0, 7669, 7668, 1, 0, 0, 0, 7669, 7670, 1, 0, 0, 0, 7670, 7721, 1, 0, 0, 0, 7671, 7672, 5, 262, 0, 0, 7672, 7680, 5, 866, 0, 0, 7673, 7681, 5, 850, 0, 0, 7674, 7676, 5, 7, 0, 0, 7675, 7674, 1, 0, 0, 0, 7675, 7676, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 7681, 3, 812, 406, 0, 7678, 7679, 5, 49, 0, 0, 7679, 7681, 3, 810, 405, 0, 7680, 7673, 1, 0, 0, 0, 7680, 7675, 1, 0, 0, 0, 7680, 7678, 1, 0, 0, 0, 7681, 7682, 1, 0, 0, 0, 7682, 7684, 5, 867, 0, 0, 7683, 7685, 3, 788, 394, 0, 7684, 7683, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7721, 1, 0, 0, 0, 7686, 7687, 7, 140, 0, 0, 7687, 7689, 5, 866, 0, 0, 7688, 7690, 5, 7, 0, 0, 7689, 7688, 1, 0, 0, 0, 7689, 7690, 1, 0, 0, 0, 7690, 7691, 1, 0, 0, 0, 7691, 7692, 3, 812, 406, 0, 7692, 7694, 5, 867, 0, 0, 7693, 7695, 3, 788, 394, 0, 7694, 7693, 1, 0, 0, 0, 7694, 7695, 1, 0, 0, 0, 7695, 7721, 1, 0, 0, 0, 7696, 7697, 5, 266, 0, 0, 7697, 7699, 5, 866, 0, 0, 7698, 7700, 5, 49, 0, 0, 7699, 7698, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 7701, 1, 0, 0, 0, 7701, 7712, 3, 810, 405, 0, 7702, 7703, 5, 125, 0, 0, 7703, 7704, 5, 20, 0, 0, 7704, 7709, 3, 260, 130, 0, 7705, 7706, 5, 868, 0, 0, 7706, 7708, 3, 260, 130, 0, 7707, 7705, 1, 0, 0, 0, 7708, 7711, 1, 0, 0, 0, 7709, 7707, 1, 0, 0, 0, 7709, 7710, 1, 0, 0, 0, 7710, 7713, 1, 0, 0, 0, 7711, 7709, 1, 0, 0, 0, 7712, 7702, 1, 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 7716, 1, 0, 0, 0, 7714, 7715, 5, 156, 0, 0, 7715, 7717, 5, 882, 0, 0, 7716, 7714, 1, 0, 0, 0, 7716, 7717, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 7719, 5, 867, 0, 0, 7719, 7721, 1, 0, 0, 0, 7720, 7661, 1, 0, 0, 0, 7720, 7671, 1, 0, 0, 0, 7720, 7686, 1, 0, 0, 0, 7720, 7696, 1, 0, 0, 0, 7721, 785, 1, 0, 0, 0, 7722, 7723, 7, 141, 0, 0, 7723, 7724, 5, 866, 0, 0, 7724, 7727, 3, 814, 407, 0, 7725, 7726, 5, 868, 0, 0, 7726, 7728, 3, 722, 361, 0, 7727, 7725, 1, 0, 0, 0, 7727, 7728, 1, 0, 0, 0, 7728, 7731, 1, 0, 0, 0, 7729, 7730, 5, 868, 0, 0, 7730, 7732, 3, 722, 361, 0, 7731, 7729, 1, 0, 0, 0, 7731, 7732, 1, 0, 0, 0, 7732, 7733, 1, 0, 0, 0, 7733, 7734, 5, 867, 0, 0, 7734, 7735, 3, 788, 394, 0, 7735, 7761, 1, 0, 0, 0, 7736, 7737, 7, 142, 0, 0, 7737, 7738, 5, 866, 0, 0, 7738, 7739, 3, 814, 407, 0, 7739, 7740, 5, 867, 0, 0, 7740, 7741, 3, 788, 394, 0, 7741, 7761, 1, 0, 0, 0, 7742, 7743, 7, 143, 0, 0, 7743, 7744, 5, 866, 0, 0, 7744, 7745, 5, 867, 0, 0, 7745, 7761, 3, 788, 394, 0, 7746, 7747, 5, 273, 0, 0, 7747, 7748, 5, 866, 0, 0, 7748, 7749, 3, 814, 407, 0, 7749, 7750, 5, 868, 0, 0, 7750, 7751, 3, 722, 361, 0, 7751, 7752, 5, 867, 0, 0, 7752, 7753, 3, 788, 394, 0, 7753, 7761, 1, 0, 0, 0, 7754, 7755, 5, 272, 0, 0, 7755, 7756, 5, 866, 0, 0, 7756, 7757, 3, 722, 361, 0, 7757, 7758, 5, 867, 0, 0, 7758, 7759, 3, 788, 394, 0, 7759, 7761, 1, 0, 0, 0, 7760, 7722, 1, 0, 0, 0, 7760, 7736, 1, 0, 0, 0, 7760, 7742, 1, 0, 0, 0, 7760, 7746, 1, 0, 0, 0, 7760, 7754, 1, 0, 0, 0, 7761, 787, 1, 0, 0, 0, 7762, 7768, 5, 129, 0, 0, 7763, 7764, 5, 866, 0, 0, 7764, 7765, 3, 790, 395, 0, 7765, 7766, 5, 867, 0, 0, 7766, 7769, 1, 0, 0, 0, 7767, 7769, 3, 792, 396, 0, 7768, 7763, 1, 0, 0, 0, 7768, 7767, 1, 0, 0, 0, 7769, 789, 1, 0, 0, 0, 7770, 7772, 3, 792, 396, 0, 7771, 7770, 1, 0, 0, 0, 7771, 7772, 1, 0, 0, 0, 7772, 7774, 1, 0, 0, 0, 7773, 7775, 3, 804, 402, 0, 7774, 7773, 1, 0, 0, 0, 7774, 7775, 1, 0, 0, 0, 7775, 7777, 1, 0, 0, 0, 7776, 7778, 3, 258, 129, 0, 7777, 7776, 1, 0, 0, 0, 7777, 7778, 1, 0, 0, 0, 7778, 7780, 1, 0, 0, 0, 7779, 7781, 3, 794, 397, 0, 7780, 7779, 1, 0, 0, 0, 7780, 7781, 1, 0, 0, 0, 7781, 791, 1, 0, 0, 0, 7782, 7783, 3, 716, 358, 0, 7783, 793, 1, 0, 0, 0, 7784, 7785, 3, 796, 398, 0, 7785, 7786, 3, 798, 399, 0, 7786, 795, 1, 0, 0, 0, 7787, 7788, 7, 144, 0, 0, 7788, 797, 1, 0, 0, 0, 7789, 7792, 3, 802, 401, 0, 7790, 7792, 3, 800, 400, 0, 7791, 7789, 1, 0, 0, 0, 7791, 7790, 1, 0, 0, 0, 7792, 799, 1, 0, 0, 0, 7793, 7794, 5, 17, 0, 0, 7794, 7795, 3, 802, 401, 0, 7795, 7796, 5, 11, 0, 0, 7796, 7797, 3, 802, 401, 0, 7797, 801, 1, 0, 0, 0, 7798, 7799, 5, 36, 0, 0, 7799, 7806, 5, 586, 0, 0, 7800, 7801, 5, 669, 0, 0, 7801, 7806, 7, 145, 0, 0, 7802, 7803, 3, 814, 407, 0, 7803, 7804, 7, 145, 0, 0, 7804, 7806, 1, 0, 0, 0, 7805, 7798, 1, 0, 0, 0, 7805, 7800, 1, 0, 0, 0, 7805, 7802, 1, 0, 0, 0, 7806, 803, 1, 0, 0, 0, 7807, 7808, 5, 130, 0, 0, 7808, 7809, 5, 20, 0, 0, 7809, 7814, 3, 814, 407, 0, 7810, 7811, 5, 868, 0, 0, 7811, 7813, 3, 814, 407, 0, 7812, 7810, 1, 0, 0, 0, 7813, 7816, 1, 0, 0, 0, 7814, 7812, 1, 0, 0, 0, 7814, 7815, 1, 0, 0, 0, 7815, 805, 1, 0, 0, 0, 7816, 7814, 1, 0, 0, 0, 7817, 7842, 3, 846, 423, 0, 7818, 7842, 5, 757, 0, 0, 7819, 7842, 5, 289, 0, 0, 7820, 7842, 5, 285, 0, 0, 7821, 7842, 5, 286, 0, 0, 7822, 7842, 5, 287, 0, 0, 7823, 7842, 5, 290, 0, 0, 7824, 7842, 5, 291, 0, 0, 7825, 7842, 5, 292, 0, 0, 7826, 7842, 5, 78, 0, 0, 7827, 7842, 5, 86, 0, 0, 7828, 7842, 5, 288, 0, 0, 7829, 7842, 5, 294, 0, 0, 7830, 7842, 5, 488, 0, 0, 7831, 7842, 5, 295, 0, 0, 7832, 7842, 5, 142, 0, 0, 7833, 7842, 5, 143, 0, 0, 7834, 7842, 5, 297, 0, 0, 7835, 7842, 5, 298, 0, 0, 7836, 7842, 5, 299, 0, 0, 7837, 7842, 5, 300, 0, 0, 7838, 7842, 5, 301, 0, 0, 7839, 7842, 5, 302, 0, 0, 7840, 7842, 5, 303, 0, 0, 7841, 7817, 1, 0, 0, 0, 7841, 7818, 1, 0, 0, 0, 7841, 7819, 1, 0, 0, 0, 7841, 7820, 1, 0, 0, 0, 7841, 7821, 1, 0, 0, 0, 7841, 7822, 1, 0, 0, 0, 7841, 7823, 1, 0, 0, 0, 7841, 7824, 1, 0, 0, 0, 7841, 7825, 1, 0, 0, 0, 7841, 7826, 1, 0, 0, 0, 7841, 7827, 1, 0, 0, 0, 7841, 7828, 1, 0, 0, 0, 7841, 7829, 1, 0, 0, 0, 7841, 7830, 1, 0, 0, 0, 7841, 7831, 1, 0, 0, 0, 7841, 7832, 1, 0, 0, 0, 7841, 7833, 1, 0, 0, 0, 7841, 7834, 1, 0, 0, 0, 7841, 7835, 1, 0, 0, 0, 7841, 7836, 1, 0, 0, 0, 7841, 7837, 1, 0, 0, 0, 7841, 7838, 1, 0, 0, 0, 7841, 7839, 1, 0, 0, 0, 7841, 7840, 1, 0, 0, 0, 7842, 807, 1, 0, 0, 0, 7843, 7844, 7, 146, 0, 0, 7844, 7845, 5, 866, 0, 0, 7845, 7846, 3, 812, 406, 0, 7846, 7847, 5, 867, 0, 0, 7847, 809, 1, 0, 0, 0, 7848, 7853, 3, 812, 406, 0, 7849, 7850, 5, 868, 0, 0, 7850, 7852, 3, 812, 406, 0, 7851, 7849, 1, 0, 0, 0, 7852, 7855, 1, 0, 0, 0, 7853, 7851, 1, 0, 0, 0, 7853, 7854, 1, 0, 0, 0, 7854, 811, 1, 0, 0, 0, 7855, 7853, 1, 0, 0, 0, 7856, 7860, 3, 734, 367, 0, 7857, 7860, 3, 774, 387, 0, 7858, 7860, 3, 814, 407, 0, 7859, 7856, 1, 0, 0, 0, 7859, 7857, 1, 0, 0, 0, 7859, 7858, 1, 0, 0, 0, 7860, 813, 1, 0, 0, 0, 7861, 7862, 6, 407, -1, 0, 7862, 7863, 7, 147, 0, 0, 7863, 7873, 3, 814, 407, 4, 7864, 7865, 3, 816, 408, 0, 7865, 7867, 5, 89, 0, 0, 7866, 7868, 5, 114, 0, 0, 7867, 7866, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 7869, 1, 0, 0, 0, 7869, 7870, 7, 148, 0, 0, 7870, 7873, 1, 0, 0, 0, 7871, 7873, 3, 816, 408, 0, 7872, 7861, 1, 0, 0, 0, 7872, 7864, 1, 0, 0, 0, 7872, 7871, 1, 0, 0, 0, 7873, 7880, 1, 0, 0, 0, 7874, 7875, 10, 3, 0, 0, 7875, 7876, 3, 826, 413, 0, 7876, 7877, 3, 814, 407, 4, 7877, 7879, 1, 0, 0, 0, 7878, 7874, 1, 0, 0, 0, 7879, 7882, 1, 0, 0, 0, 7880, 7878, 1, 0, 0, 0, 7880, 7881, 1, 0, 0, 0, 7881, 815, 1, 0, 0, 0, 7882, 7880, 1, 0, 0, 0, 7883, 7884, 6, 408, -1, 0, 7884, 7885, 3, 818, 409, 0, 7885, 7949, 1, 0, 0, 0, 7886, 7888, 10, 6, 0, 0, 7887, 7889, 5, 114, 0, 0, 7888, 7887, 1, 0, 0, 0, 7888, 7889, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7891, 5, 17, 0, 0, 7891, 7892, 3, 816, 408, 0, 7892, 7893, 5, 11, 0, 0, 7893, 7894, 3, 816, 408, 7, 7894, 7948, 1, 0, 0, 0, 7895, 7896, 10, 5, 0, 0, 7896, 7897, 5, 604, 0, 0, 7897, 7898, 5, 99, 0, 0, 7898, 7948, 3, 816, 408, 6, 7899, 7901, 10, 3, 0, 0, 7900, 7902, 5, 114, 0, 0, 7901, 7900, 1, 0, 0, 0, 7901, 7902, 1, 0, 0, 0, 7902, 7903, 1, 0, 0, 0, 7903, 7904, 7, 149, 0, 0, 7904, 7948, 3, 816, 408, 4, 7905, 7907, 10, 9, 0, 0, 7906, 7908, 5, 114, 0, 0, 7907, 7906, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7909, 1, 0, 0, 0, 7909, 7910, 5, 80, 0, 0, 7910, 7913, 5, 866, 0, 0, 7911, 7914, 3, 210, 105, 0, 7912, 7914, 3, 750, 375, 0, 7913, 7911, 1, 0, 0, 0, 7913, 7912, 1, 0, 0, 0, 7914, 7915, 1, 0, 0, 0, 7915, 7916, 5, 867, 0, 0, 7916, 7948, 1, 0, 0, 0, 7917, 7918, 10, 8, 0, 0, 7918, 7919, 5, 89, 0, 0, 7919, 7948, 3, 732, 366, 0, 7920, 7921, 10, 7, 0, 0, 7921, 7928, 3, 822, 411, 0, 7922, 7923, 7, 150, 0, 0, 7923, 7924, 5, 866, 0, 0, 7924, 7925, 3, 210, 105, 0, 7925, 7926, 5, 867, 0, 0, 7926, 7929, 1, 0, 0, 0, 7927, 7929, 3, 816, 408, 0, 7928, 7922, 1, 0, 0, 0, 7928, 7927, 1, 0, 0, 0, 7929, 7948, 1, 0, 0, 0, 7930, 7932, 10, 4, 0, 0, 7931, 7933, 5, 114, 0, 0, 7932, 7931, 1, 0, 0, 0, 7932, 7933, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 7935, 5, 99, 0, 0, 7935, 7938, 3, 816, 408, 0, 7936, 7937, 5, 384, 0, 0, 7937, 7939, 5, 882, 0, 0, 7938, 7936, 1, 0, 0, 0, 7938, 7939, 1, 0, 0, 0, 7939, 7948, 1, 0, 0, 0, 7940, 7941, 10, 2, 0, 0, 7941, 7942, 5, 485, 0, 0, 7942, 7943, 5, 510, 0, 0, 7943, 7944, 5, 866, 0, 0, 7944, 7945, 3, 816, 408, 0, 7945, 7946, 5, 867, 0, 0, 7946, 7948, 1, 0, 0, 0, 7947, 7886, 1, 0, 0, 0, 7947, 7895, 1, 0, 0, 0, 7947, 7899, 1, 0, 0, 0, 7947, 7905, 1, 0, 0, 0, 7947, 7917, 1, 0, 0, 0, 7947, 7920, 1, 0, 0, 0, 7947, 7930, 1, 0, 0, 0, 7947, 7940, 1, 0, 0, 0, 7948, 7951, 1, 0, 0, 0, 7949, 7947, 1, 0, 0, 0, 7949, 7950, 1, 0, 0, 0, 7950, 817, 1, 0, 0, 0, 7951, 7949, 1, 0, 0, 0, 7952, 7953, 6, 409, -1, 0, 7953, 8001, 3, 734, 367, 0, 7954, 8001, 3, 774, 387, 0, 7955, 8001, 3, 696, 348, 0, 7956, 7957, 3, 820, 410, 0, 7957, 7958, 3, 818, 409, 12, 7958, 8001, 1, 0, 0, 0, 7959, 7960, 5, 228, 0, 0, 7960, 8001, 3, 818, 409, 11, 7961, 7962, 5, 892, 0, 0, 7962, 7963, 5, 841, 0, 0, 7963, 8001, 3, 818, 409, 10, 7964, 7965, 5, 866, 0, 0, 7965, 7970, 3, 814, 407, 0, 7966, 7967, 5, 868, 0, 0, 7967, 7969, 3, 814, 407, 0, 7968, 7966, 1, 0, 0, 0, 7969, 7972, 1, 0, 0, 0, 7970, 7968, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 7973, 1, 0, 0, 0, 7972, 7970, 1, 0, 0, 0, 7973, 7974, 5, 867, 0, 0, 7974, 8001, 1, 0, 0, 0, 7975, 7976, 5, 586, 0, 0, 7976, 7977, 5, 866, 0, 0, 7977, 7980, 3, 814, 407, 0, 7978, 7979, 5, 868, 0, 0, 7979, 7981, 3, 814, 407, 0, 7980, 7978, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 7980, 1, 0, 0, 0, 7982, 7983, 1, 0, 0, 0, 7983, 7984, 1, 0, 0, 0, 7984, 7985, 5, 867, 0, 0, 7985, 8001, 1, 0, 0, 0, 7986, 7987, 5, 60, 0, 0, 7987, 7988, 5, 866, 0, 0, 7988, 7989, 3, 210, 105, 0, 7989, 7990, 5, 867, 0, 0, 7990, 8001, 1, 0, 0, 0, 7991, 7992, 5, 866, 0, 0, 7992, 7993, 3, 210, 105, 0, 7993, 7994, 5, 867, 0, 0, 7994, 8001, 1, 0, 0, 0, 7995, 7996, 5, 87, 0, 0, 7996, 7997, 3, 814, 407, 0, 7997, 7998, 3, 70, 35, 0, 7998, 8001, 1, 0, 0, 0, 7999, 8001, 3, 672, 336, 0, 8000, 7952, 1, 0, 0, 0, 8000, 7954, 1, 0, 0, 0, 8000, 7955, 1, 0, 0, 0, 8000, 7956, 1, 0, 0, 0, 8000, 7959, 1, 0, 0, 0, 8000, 7961, 1, 0, 0, 0, 8000, 7964, 1, 0, 0, 0, 8000, 7975, 1, 0, 0, 0, 8000, 7986, 1, 0, 0, 0, 8000, 7991, 1, 0, 0, 0, 8000, 7995, 1, 0, 0, 0, 8000, 7999, 1, 0, 0, 0, 8001, 8019, 1, 0, 0, 0, 8002, 8003, 10, 4, 0, 0, 8003, 8004, 3, 832, 416, 0, 8004, 8005, 3, 818, 409, 5, 8005, 8018, 1, 0, 0, 0, 8006, 8007, 10, 3, 0, 0, 8007, 8008, 3, 828, 414, 0, 8008, 8009, 3, 818, 409, 4, 8009, 8018, 1, 0, 0, 0, 8010, 8011, 10, 2, 0, 0, 8011, 8012, 3, 830, 415, 0, 8012, 8013, 3, 818, 409, 3, 8013, 8018, 1, 0, 0, 0, 8014, 8015, 10, 14, 0, 0, 8015, 8016, 5, 28, 0, 0, 8016, 8018, 3, 700, 350, 0, 8017, 8002, 1, 0, 0, 0, 8017, 8006, 1, 0, 0, 0, 8017, 8010, 1, 0, 0, 0, 8017, 8014, 1, 0, 0, 0, 8018, 8021, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 819, 1, 0, 0, 0, 8021, 8019, 1, 0, 0, 0, 8022, 8023, 7, 151, 0, 0, 8023, 821, 1, 0, 0, 0, 8024, 8025, 5, 859, 0, 0, 8025, 8033, 5, 858, 0, 0, 8026, 8027, 5, 860, 0, 0, 8027, 8033, 5, 857, 0, 0, 8028, 8029, 5, 859, 0, 0, 8029, 8030, 5, 857, 0, 0, 8030, 8033, 5, 858, 0, 0, 8031, 8033, 3, 824, 412, 0, 8032, 8024, 1, 0, 0, 0, 8032, 8026, 1, 0, 0, 0, 8032, 8028, 1, 0, 0, 0, 8032, 8031, 1, 0, 0, 0, 8033, 823, 1, 0, 0, 0, 8034, 8035, 5, 859, 0, 0, 8035, 8042, 5, 857, 0, 0, 8036, 8037, 5, 858, 0, 0, 8037, 8042, 5, 857, 0, 0, 8038, 8042, 5, 857, 0, 0, 8039, 8042, 5, 858, 0, 0, 8040, 8042, 5, 859, 0, 0, 8041, 8034, 1, 0, 0, 0, 8041, 8036, 1, 0, 0, 0, 8041, 8038, 1, 0, 0, 0, 8041, 8039, 1, 0, 0, 0, 8041, 8040, 1, 0, 0, 0, 8042, 825, 1, 0, 0, 0, 8043, 8051, 5, 11, 0, 0, 8044, 8045, 5, 863, 0, 0, 8045, 8051, 5, 863, 0, 0, 8046, 8051, 5, 196, 0, 0, 8047, 8051, 5, 124, 0, 0, 8048, 8049, 5, 862, 0, 0, 8049, 8051, 5, 862, 0, 0, 8050, 8043, 1, 0, 0, 0, 8050, 8044, 1, 0, 0, 0, 8050, 8046, 1, 0, 0, 0, 8050, 8047, 1, 0, 0, 0, 8050, 8048, 1, 0, 0, 0, 8051, 827, 1, 0, 0, 0, 8052, 8053, 5, 859, 0, 0, 8053, 8060, 5, 859, 0, 0, 8054, 8055, 5, 858, 0, 0, 8055, 8060, 5, 858, 0, 0, 8056, 8060, 5, 863, 0, 0, 8057, 8060, 5, 864, 0, 0, 8058, 8060, 5, 862, 0, 0, 8059, 8052, 1, 0, 0, 0, 8059, 8054, 1, 0, 0, 0, 8059, 8056, 1, 0, 0, 0, 8059, 8057, 1, 0, 0, 0, 8059, 8058, 1, 0, 0, 0, 8060, 829, 1, 0, 0, 0, 8061, 8062, 7, 152, 0, 0, 8062, 831, 1, 0, 0, 0, 8063, 8064, 5, 854, 0, 0, 8064, 8069, 5, 858, 0, 0, 8065, 8066, 5, 854, 0, 0, 8066, 8067, 5, 858, 0, 0, 8067, 8069, 5, 858, 0, 0, 8068, 8063, 1, 0, 0, 0, 8068, 8065, 1, 0, 0, 0, 8069, 833, 1, 0, 0, 0, 8070, 8071, 7, 153, 0, 0, 8071, 835, 1, 0, 0, 0, 8072, 8073, 7, 154, 0, 0, 8073, 837, 1, 0, 0, 0, 8074, 8075, 7, 155, 0, 0, 8075, 839, 1, 0, 0, 0, 8076, 8077, 7, 156, 0, 0, 8077, 841, 1, 0, 0, 0, 8078, 8079, 7, 157, 0, 0, 8079, 843, 1, 0, 0, 0, 8080, 8081, 7, 158, 0, 0, 8081, 845, 1, 0, 0, 0, 8082, 8083, 7, 159, 0, 0, 8083, 847, 1, 0, 0, 0, 1162, 851, 858, 861, 870, 914, 933, 944, 960, 965, 977, 1012, 1022, 1027, 1033, 1038, 1042, 1051, 1054, 1057, 1061, 1068, 1071, 1076, 1084, 1089, 1094, 1097, 1099, 1111, 1114, 1118, 1121, 1125, 1128, 1132, 1135, 1138, 1142, 1145, 1149, 1155, 1159, 1164, 1170, 1177, 1184, 1187, 1191, 1196, 1202, 1211, 1216, 1220, 1224, 1235, 1253, 1260, 1264, 1268, 1272, 1277, 1280, 1283, 1286, 1289, 1295, 1299, 1309, 1313, 1317, 1323, 1328, 1331, 1334, 1336, 1340, 1347, 1351, 1354, 1359, 1363, 1366, 1370, 1373, 1377, 1390, 1393, 1397, 1400, 1404, 1407, 1411, 1414, 1418, 1421, 1424, 1428, 1431, 1435, 1441, 1444, 1448, 1460, 1466, 1477, 1482, 1490, 1494, 1499, 1502, 1507, 1517, 1522, 1527, 1533, 1538, 1542, 1544, 1547, 1551, 1555, 1558, 1562, 1566, 1570, 1576, 1579, 1586, 1591, 1597, 1604, 1610, 1618, 1621, 1628, 1631, 1633, 1639, 1645, 1662, 1669, 1676, 1688, 1693, 1696, 1699, 1712, 1725, 1730, 1746, 1754, 1764, 1767, 1773, 1778, 1781, 1787, 1791, 1796, 1802, 1806, 1810, 1813, 1816, 1822, 1826, 1831, 1842, 1845, 1852, 1855, 1859, 1865, 1877, 1880, 1885, 1898, 1905, 1911, 1916, 1920, 1923, 1931, 1939, 1941, 1951, 1955, 1958, 1962, 1967, 1972, 1977, 1981, 1985, 1989, 1993, 1997, 2001, 2006, 2011, 2016, 2022, 2027, 2032, 2037, 2042, 2047, 2053, 2058, 2063, 2068, 2073, 2078, 2083, 2088, 2095, 2100, 2105, 2110, 2114, 2119, 2127, 2132, 2138, 2150, 2157, 2159, 2167, 2172, 2175, 2183, 2189, 2193, 2206, 2218, 2220, 2223, 2231, 2237, 2243, 2256, 2263, 2272, 2277, 2288, 2297, 2302, 2314, 2321, 2330, 2335, 2347, 2354, 2363, 2368, 2375, 2384, 2389, 2391, 2396, 2404, 2413, 2417, 2420, 2424, 2429, 2435, 2441, 2446, 2451, 2456, 2461, 2464, 2469, 2474, 2484, 2488, 2495, 2500, 2503, 2508, 2511, 2515, 2519, 2527, 2546, 2549, 2552, 2556, 2566, 2579, 2592, 2595, 2601, 2604, 2608, 2617, 2620, 2623, 2628, 2632, 2635, 2639, 2643, 2646, 2650, 2653, 2657, 2660, 2666, 2669, 2674, 2682, 2688, 2692, 2696, 2701, 2706, 2713, 2717, 2728, 2736, 2739, 2745, 2751, 2754, 2760, 2766, 2768, 2773, 2779, 2785, 2787, 2791, 2794, 2797, 2803, 2809, 2811, 2816, 2823, 2832, 2835, 2839, 2844, 2854, 2863, 2871, 2874, 2882, 2885, 2892, 2897, 2905, 2921, 2926, 2933, 2952, 2958, 2968, 2980, 2987, 2994, 3009, 3022, 3028, 3034, 3040, 3046, 3052, 3058, 3063, 3070, 3077, 3084, 3089, 3092, 3094, 3103, 3110, 3117, 3124, 3133, 3139, 3143, 3147, 3151, 3157, 3160, 3165, 3172, 3179, 3183, 3188, 3198, 3206, 3212, 3221, 3230, 3239, 3242, 3246, 3255, 3259, 3262, 3265, 3271, 3274, 3277, 3281, 3284, 3287, 3290, 3301, 3304, 3309, 3315, 3320, 3325, 3328, 3332, 3337, 3340, 3345, 3355, 3360, 3366, 3368, 3374, 3376, 3382, 3390, 3395, 3403, 3406, 3411, 3414, 3419, 3427, 3433, 3437, 3439, 3445, 3453, 3458, 3466, 3469, 3474, 3477, 3481, 3484, 3487, 3491, 3494, 3502, 3508, 3512, 3518, 3523, 3527, 3529, 3535, 3539, 3542, 3545, 3548, 3554, 3559, 3562, 3565, 3568, 3571, 3573, 3576, 3580, 3583, 3586, 3594, 3600, 3603, 3605, 3614, 3619, 3626, 3629, 3632, 3636, 3640, 3646, 3650, 3657, 3661, 3664, 3667, 3672, 3679, 3689, 3698, 3707, 3717, 3720, 3724, 3730, 3734, 3737, 3740, 3745, 3748, 3755, 3759, 3762, 3766, 3770, 3773, 3776, 3781, 3787, 3791, 3801, 3807, 3811, 3817, 3821, 3827, 3830, 3842, 3846, 3850, 3858, 3862, 3876, 3881, 3884, 3888, 3891, 3899, 3904, 3907, 3910, 3914, 3917, 3926, 3931, 3940, 3945, 3952, 3959, 3967, 3973, 3981, 3984, 3987, 3994, 3997, 4000, 4004, 4008, 4014, 4021, 4031, 4035, 4044, 4047, 4051, 4057, 4065, 4070, 4074, 4080, 4086, 4089, 4091, 4095, 4104, 4114, 4120, 4125, 4129, 4132, 4135, 4138, 4141, 4144, 4147, 4151, 4155, 4163, 4167, 4170, 4172, 4185, 4188, 4195, 4205, 4208, 4213, 4215, 4219, 4227, 4233, 4242, 4255, 4259, 4265, 4271, 4274, 4278, 4281, 4283, 4295, 4299, 4307, 4319, 4325, 4327, 4333, 4335, 4337, 4343, 4351, 4359, 4363, 4367, 4376, 4381, 4401, 4406, 4412, 4419, 4424, 4433, 4436, 4440, 4444, 4448, 4451, 4454, 4457, 4461, 4465, 4468, 4471, 4474, 4481, 4485, 4500, 4513, 4521, 4531, 4535, 4538, 4544, 4547, 4550, 4559, 4568, 4578, 4582, 4592, 4596, 4607, 4611, 4620, 4629, 4632, 4636, 4641, 4645, 4654, 4657, 4660, 4667, 4673, 4679, 4705, 4708, 4711, 4730, 4732, 4755, 4758, 4761, 4780, 4782, 4796, 4809, 4846, 4851, 4886, 4900, 4907, 4911, 4917, 4925, 4927, 4938, 4948, 4955, 4961, 4969, 4974, 4982, 4990, 4998, 5006, 5012, 5017, 5022, 5027, 5033, 5035, 5046, 5051, 5058, 5060, 5074, 5080, 5085, 5090, 5096, 5103, 5111, 5119, 5124, 5130, 5133, 5141, 5148, 5157, 5160, 5177, 5185, 5193, 5197, 5204, 5210, 5218, 5223, 5230, 5238, 5245, 5250, 5253, 5255, 5261, 5263, 5267, 5269, 5274, 5281, 5286, 5290, 5295, 5299, 5305, 5311, 5316, 5319, 5321, 5327, 5329, 5333, 5335, 5340, 5345, 5352, 5361, 5366, 5375, 5379, 5385, 5390, 5393, 5395, 5401, 5403, 5406, 5413, 5415, 5420, 5427, 5436, 5442, 5444, 5451, 5454, 5466, 5472, 5480, 5483, 5487, 5490, 5494, 5496, 5507, 5510, 5514, 5517, 5520, 5527, 5539, 5542, 5549, 5555, 5565, 5570, 5577, 5582, 5588, 5592, 5596, 5604, 5608, 5612, 5618, 5620, 5632, 5637, 5643, 5649, 5653, 5658, 5660, 5684, 5688, 5691, 5700, 5704, 5713, 5717, 5721, 5727, 5729, 5738, 5748, 5775, 5779, 5784, 5791, 5794, 5800, 5810, 5820, 5830, 5836, 5845, 5851, 5858, 5860, 5868, 5874, 5878, 5895, 5905, 5909, 5913, 5923, 5928, 6000, 6018, 6026, 6032, 6044, 6048, 6059, 6063, 6072, 6080, 6087, 6091, 6098, 6103, 6106, 6109, 6120, 6129, 6138, 6141, 6155, 6173, 6186, 6189, 6193, 6196, 6198, 6205, 6212, 6216, 6223, 6230, 6233, 6249, 6252, 6262, 6266, 6272, 6275, 6278, 6283, 6287, 6290, 6297, 6300, 6306, 6342, 6345, 6357, 6360, 6376, 6378, 6382, 6389, 6393, 6400, 6403, 6412, 6415, 6420, 6426, 6428, 6434, 6438, 6444, 6447, 6450, 6463, 6466, 6472, 6475, 6483, 6491, 6497, 6500, 6504, 6518, 6530, 6538, 6542, 6549, 6556, 6561, 6574, 6583, 6591, 6596, 6599, 6604, 6607, 6619, 6624, 6637, 6639, 6644, 6648, 6651, 6653, 6660, 6667, 6670, 6673, 6679, 6683, 6689, 6697, 6706, 6719, 6724, 6732, 6735, 6740, 6745, 6753, 6756, 6764, 6768, 6775, 6781, 6784, 6788, 6801, 6807, 6819, 6822, 6831, 6836, 6857, 6873, 6883, 6888, 6893, 6895, 6898, 6902, 6904, 6911, 6917, 6919, 6922, 6926, 6929, 6942, 6952, 6955, 6958, 6971, 6977, 6980, 6988, 6995, 7015, 7022, 7024, 7031, 7033, 7037, 7044, 7050, 7061, 7067, 7073, 7076, 7080, 7085, 7088, 7092, 7096, 7098, 7103, 7108, 7121, 7124, 7128, 7131, 7134, 7139, 7144, 7150, 7153, 7158, 7161, 7166, 7169, 7173, 7178, 7183, 7188, 7193, 7196, 7201, 7206, 7211, 7217, 7222, 7227, 7232, 7236, 7239, 7244, 7248, 7252, 7260, 7267, 7271, 7276, 7281, 7285, 7287, 7290, 7306, 7316, 7326, 7335, 7344, 7351, 7358, 7366, 7374, 7386, 7393, 7403, 7408, 7411, 7416, 7419, 7441, 7450, 7453, 7458, 7491, 7495, 7504, 7508, 7517, 7525, 7530, 7538, 7543, 7548, 7550, 7559, 7564, 7572, 7577, 7585, 7593, 7596, 7606, 7624, 7627, 7630, 7634, 7647, 7655, 7659, 7664, 7669, 7675, 7680, 7684, 7689, 7694, 7699, 7709, 7712, 7716, 7720, 7727, 7731, 7760, 7768, 7771, 7774, 7777, 7780, 7791, 7805, 7814, 7841, 7853, 7859, 7867, 7872, 7880, 7888, 7901, 7907, 7913, 7928, 7932, 7938, 7947, 7949, 7970, 7982, 8000, 8017, 8019, 8032, 8041, 8050, 8059, 8068] \ No newline at end of file +[4, 1, 895, 8138, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 1, 0, 5, 0, 858, 8, 0, 10, 0, 12, 0, 861, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 867, 8, 1, 1, 1, 3, 1, 870, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 879, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 923, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 942, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 953, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 969, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 974, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 986, 8, 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, 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, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1021, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1031, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1036, 8, 12, 1, 12, 1, 12, 5, 12, 1040, 8, 12, 10, 12, 12, 12, 1043, 9, 12, 1, 13, 1, 13, 3, 13, 1047, 8, 13, 1, 13, 1, 13, 3, 13, 1051, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1060, 8, 13, 1, 13, 3, 13, 1063, 8, 13, 1, 13, 3, 13, 1066, 8, 13, 1, 13, 1, 13, 3, 13, 1070, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1077, 8, 14, 1, 14, 3, 14, 1080, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1085, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1091, 8, 14, 10, 14, 12, 14, 1094, 9, 14, 1, 14, 1, 14, 3, 14, 1098, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1103, 8, 14, 1, 14, 5, 14, 1106, 8, 14, 10, 14, 12, 14, 1109, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1120, 8, 15, 1, 15, 3, 15, 1123, 8, 15, 1, 15, 1, 15, 3, 15, 1127, 8, 15, 1, 15, 3, 15, 1130, 8, 15, 1, 15, 1, 15, 3, 15, 1134, 8, 15, 1, 15, 3, 15, 1137, 8, 15, 1, 15, 1, 15, 3, 15, 1141, 8, 15, 1, 15, 3, 15, 1144, 8, 15, 1, 15, 3, 15, 1147, 8, 15, 1, 15, 1, 15, 3, 15, 1151, 8, 15, 1, 15, 3, 15, 1154, 8, 15, 1, 15, 1, 15, 3, 15, 1158, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1164, 8, 16, 1, 16, 1, 16, 3, 16, 1168, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1173, 8, 16, 1, 16, 1, 16, 5, 16, 1177, 8, 16, 10, 16, 12, 16, 1180, 9, 16, 1, 16, 1, 16, 5, 16, 1184, 8, 16, 10, 16, 12, 16, 1187, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1193, 8, 17, 1, 17, 3, 17, 1196, 8, 17, 1, 17, 1, 17, 3, 17, 1200, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1205, 8, 17, 1, 17, 1, 17, 5, 17, 1209, 8, 17, 10, 17, 12, 17, 1212, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1218, 8, 17, 10, 17, 12, 17, 1221, 9, 17, 1, 17, 1, 17, 3, 17, 1225, 8, 17, 1, 18, 1, 18, 3, 18, 1229, 8, 18, 1, 18, 1, 18, 3, 18, 1233, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 3, 19, 1244, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1260, 8, 20, 10, 20, 12, 20, 1263, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1269, 8, 21, 1, 21, 1, 21, 3, 21, 1273, 8, 21, 1, 21, 1, 21, 3, 21, 1277, 8, 21, 1, 21, 1, 21, 3, 21, 1281, 8, 21, 1, 21, 5, 21, 1284, 8, 21, 10, 21, 12, 21, 1287, 9, 21, 3, 21, 1289, 8, 21, 1, 21, 3, 21, 1292, 8, 21, 1, 21, 3, 21, 1295, 8, 21, 1, 21, 3, 21, 1298, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1304, 8, 21, 1, 21, 1, 21, 3, 21, 1308, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1318, 8, 21, 1, 21, 1, 21, 3, 21, 1322, 8, 21, 1, 21, 1, 21, 3, 21, 1326, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1332, 8, 21, 1, 21, 5, 21, 1335, 8, 21, 10, 21, 12, 21, 1338, 9, 21, 3, 21, 1340, 8, 21, 1, 21, 3, 21, 1343, 8, 21, 3, 21, 1345, 8, 21, 1, 22, 1, 22, 3, 22, 1349, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1356, 8, 22, 1, 22, 1, 22, 3, 22, 1360, 8, 22, 1, 22, 3, 22, 1363, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1368, 8, 22, 1, 22, 1, 22, 3, 22, 1372, 8, 22, 1, 22, 3, 22, 1375, 8, 22, 1, 22, 1, 22, 3, 22, 1379, 8, 22, 1, 22, 3, 22, 1382, 8, 22, 1, 23, 1, 23, 3, 23, 1386, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1399, 8, 23, 1, 23, 3, 23, 1402, 8, 23, 1, 23, 1, 23, 3, 23, 1406, 8, 23, 1, 23, 3, 23, 1409, 8, 23, 1, 23, 1, 23, 3, 23, 1413, 8, 23, 1, 23, 3, 23, 1416, 8, 23, 1, 23, 1, 23, 3, 23, 1420, 8, 23, 1, 23, 3, 23, 1423, 8, 23, 1, 23, 1, 23, 3, 23, 1427, 8, 23, 1, 23, 3, 23, 1430, 8, 23, 1, 23, 3, 23, 1433, 8, 23, 1, 23, 1, 23, 3, 23, 1437, 8, 23, 1, 23, 3, 23, 1440, 8, 23, 1, 23, 1, 23, 3, 23, 1444, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1450, 8, 24, 1, 24, 3, 24, 1453, 8, 24, 1, 24, 1, 24, 3, 24, 1457, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1469, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 1475, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1484, 8, 26, 10, 26, 12, 26, 1487, 9, 26, 1, 26, 1, 26, 3, 26, 1491, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1499, 8, 26, 1, 27, 1, 27, 3, 27, 1503, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1508, 8, 27, 1, 27, 3, 27, 1511, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1516, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1524, 8, 27, 10, 27, 12, 27, 1527, 9, 27, 1, 27, 1, 27, 3, 27, 1531, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1536, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1542, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1547, 8, 27, 1, 27, 1, 27, 3, 27, 1551, 8, 27, 3, 27, 1553, 8, 27, 1, 28, 3, 28, 1556, 8, 28, 1, 28, 1, 28, 3, 28, 1560, 8, 28, 1, 28, 1, 28, 3, 28, 1564, 8, 28, 1, 28, 3, 28, 1567, 8, 28, 1, 28, 1, 28, 3, 28, 1571, 8, 28, 1, 28, 1, 28, 3, 28, 1575, 8, 28, 1, 28, 1, 28, 3, 28, 1579, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1585, 8, 28, 1, 28, 3, 28, 1588, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1595, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1600, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1606, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1611, 8, 32, 10, 32, 12, 32, 1614, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1619, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1625, 8, 32, 10, 32, 12, 32, 1628, 9, 32, 3, 32, 1630, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1635, 8, 32, 10, 32, 12, 32, 1638, 9, 32, 3, 32, 1640, 8, 32, 3, 32, 1642, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1648, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1654, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1671, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1678, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1685, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1697, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1702, 8, 38, 1, 38, 3, 38, 1705, 8, 38, 1, 39, 3, 39, 1708, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1721, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1734, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1739, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1755, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1761, 8, 43, 10, 43, 12, 43, 1764, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1773, 8, 44, 1, 44, 3, 44, 1776, 8, 44, 1, 44, 1, 44, 5, 44, 1780, 8, 44, 10, 44, 12, 44, 1783, 9, 44, 1, 44, 1, 44, 3, 44, 1787, 8, 44, 1, 44, 3, 44, 1790, 8, 44, 1, 44, 1, 44, 5, 44, 1794, 8, 44, 10, 44, 12, 44, 1797, 9, 44, 1, 44, 3, 44, 1800, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1805, 8, 44, 1, 44, 1, 44, 5, 44, 1809, 8, 44, 10, 44, 12, 44, 1812, 9, 44, 1, 44, 3, 44, 1815, 8, 44, 1, 44, 1, 44, 3, 44, 1819, 8, 44, 1, 44, 3, 44, 1822, 8, 44, 1, 44, 3, 44, 1825, 8, 44, 1, 44, 1, 44, 5, 44, 1829, 8, 44, 10, 44, 12, 44, 1832, 9, 44, 1, 44, 3, 44, 1835, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1840, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1851, 8, 44, 1, 45, 3, 45, 1854, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1861, 8, 45, 1, 45, 3, 45, 1864, 8, 45, 1, 46, 1, 46, 3, 46, 1868, 8, 46, 1, 47, 1, 47, 5, 47, 1872, 8, 47, 10, 47, 12, 47, 1875, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1886, 8, 48, 1, 48, 3, 48, 1889, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1894, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1907, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1914, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1920, 8, 48, 1, 49, 1, 49, 1, 49, 3, 49, 1925, 8, 49, 1, 49, 1, 49, 3, 49, 1929, 8, 49, 1, 49, 3, 49, 1932, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1940, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1948, 8, 50, 3, 50, 1950, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1960, 8, 51, 1, 52, 1, 52, 3, 52, 1964, 8, 52, 1, 52, 3, 52, 1967, 8, 52, 1, 52, 1, 52, 3, 52, 1971, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1976, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1981, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1986, 8, 52, 1, 52, 1, 52, 3, 52, 1990, 8, 52, 1, 52, 1, 52, 3, 52, 1994, 8, 52, 1, 52, 1, 52, 3, 52, 1998, 8, 52, 1, 52, 1, 52, 3, 52, 2002, 8, 52, 1, 52, 1, 52, 3, 52, 2006, 8, 52, 1, 52, 1, 52, 3, 52, 2010, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2015, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2025, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2031, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2036, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2041, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2046, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2051, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2056, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2062, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2067, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2072, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2077, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2082, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2087, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2092, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2097, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2104, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2109, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2114, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2119, 8, 52, 1, 52, 1, 52, 3, 52, 2123, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2128, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2136, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2141, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2147, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2159, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2166, 8, 55, 3, 55, 2168, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2174, 8, 55, 10, 55, 12, 55, 2177, 9, 55, 1, 55, 1, 55, 3, 55, 2181, 8, 55, 1, 56, 3, 56, 2184, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2192, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2198, 8, 56, 1, 56, 1, 56, 3, 56, 2202, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2215, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2227, 8, 56, 3, 56, 2229, 8, 56, 1, 57, 3, 57, 2232, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2240, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2246, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2252, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2263, 8, 58, 10, 58, 12, 58, 2266, 9, 58, 1, 58, 1, 58, 5, 58, 2270, 8, 58, 10, 58, 12, 58, 2273, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2279, 8, 58, 10, 58, 12, 58, 2282, 9, 58, 1, 58, 1, 58, 3, 58, 2286, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2295, 8, 58, 10, 58, 12, 58, 2298, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2304, 8, 58, 10, 58, 12, 58, 2307, 9, 58, 1, 58, 1, 58, 3, 58, 2311, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2321, 8, 58, 10, 58, 12, 58, 2324, 9, 58, 1, 58, 1, 58, 5, 58, 2328, 8, 58, 10, 58, 12, 58, 2331, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2337, 8, 58, 10, 58, 12, 58, 2340, 9, 58, 1, 58, 1, 58, 3, 58, 2344, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2354, 8, 58, 10, 58, 12, 58, 2357, 9, 58, 1, 58, 1, 58, 5, 58, 2361, 8, 58, 10, 58, 12, 58, 2364, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2370, 8, 58, 10, 58, 12, 58, 2373, 9, 58, 1, 58, 1, 58, 3, 58, 2377, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2382, 8, 58, 10, 58, 12, 58, 2385, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2391, 8, 58, 10, 58, 12, 58, 2394, 9, 58, 1, 58, 1, 58, 3, 58, 2398, 8, 58, 3, 58, 2400, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2405, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2411, 8, 60, 11, 60, 12, 60, 2412, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2420, 8, 61, 10, 61, 12, 61, 2423, 9, 61, 1, 62, 3, 62, 2426, 8, 62, 1, 62, 3, 62, 2429, 8, 62, 1, 62, 1, 62, 3, 62, 2433, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2438, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2444, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2450, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2455, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2460, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2465, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2470, 8, 62, 1, 62, 3, 62, 2473, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2478, 8, 63, 1, 63, 4, 63, 2481, 8, 63, 11, 63, 12, 63, 2482, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2493, 8, 63, 1, 64, 1, 64, 3, 64, 2497, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2504, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2509, 8, 64, 1, 64, 3, 64, 2512, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2517, 8, 64, 1, 64, 3, 64, 2520, 8, 64, 1, 64, 1, 64, 3, 64, 2524, 8, 64, 1, 64, 1, 64, 3, 64, 2528, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2534, 8, 65, 10, 65, 12, 65, 2537, 9, 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, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2555, 8, 67, 1, 67, 3, 67, 2558, 8, 67, 1, 67, 3, 67, 2561, 8, 67, 1, 67, 1, 67, 3, 67, 2565, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2573, 8, 68, 10, 68, 12, 68, 2576, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2586, 8, 69, 10, 69, 12, 69, 2589, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2599, 8, 70, 10, 70, 12, 70, 2602, 9, 70, 3, 70, 2604, 8, 70, 1, 70, 1, 70, 5, 70, 2608, 8, 70, 10, 70, 12, 70, 2611, 9, 70, 3, 70, 2613, 8, 70, 1, 71, 1, 71, 3, 71, 2617, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2626, 8, 71, 1, 71, 3, 71, 2629, 8, 71, 1, 71, 3, 71, 2632, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2637, 8, 71, 1, 71, 1, 71, 3, 71, 2641, 8, 71, 1, 71, 3, 71, 2644, 8, 71, 1, 71, 1, 71, 3, 71, 2648, 8, 71, 1, 71, 1, 71, 3, 71, 2652, 8, 71, 1, 71, 3, 71, 2655, 8, 71, 1, 71, 1, 71, 3, 71, 2659, 8, 71, 1, 71, 3, 71, 2662, 8, 71, 1, 71, 1, 71, 3, 71, 2666, 8, 71, 1, 71, 3, 71, 2669, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2675, 8, 72, 1, 72, 3, 72, 2678, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2683, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2691, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2697, 8, 72, 1, 72, 1, 72, 3, 72, 2701, 8, 72, 1, 73, 1, 73, 3, 73, 2705, 8, 73, 1, 73, 5, 73, 2708, 8, 73, 10, 73, 12, 73, 2711, 9, 73, 1, 73, 1, 73, 3, 73, 2715, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2722, 8, 73, 1, 73, 1, 73, 3, 73, 2726, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2735, 8, 73, 10, 73, 12, 73, 2738, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2745, 8, 73, 1, 73, 3, 73, 2748, 8, 73, 1, 73, 1, 73, 5, 73, 2752, 8, 73, 10, 73, 12, 73, 2755, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2760, 8, 73, 1, 73, 3, 73, 2763, 8, 73, 1, 73, 1, 73, 5, 73, 2767, 8, 73, 10, 73, 12, 73, 2770, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2775, 8, 73, 3, 73, 2777, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2782, 8, 73, 1, 73, 1, 73, 5, 73, 2786, 8, 73, 10, 73, 12, 73, 2789, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2794, 8, 73, 3, 73, 2796, 8, 73, 1, 73, 1, 73, 3, 73, 2800, 8, 73, 1, 73, 3, 73, 2803, 8, 73, 1, 73, 3, 73, 2806, 8, 73, 1, 73, 1, 73, 5, 73, 2810, 8, 73, 10, 73, 12, 73, 2813, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2818, 8, 73, 3, 73, 2820, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2825, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2832, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2841, 8, 73, 1, 73, 3, 73, 2844, 8, 73, 1, 73, 1, 73, 3, 73, 2848, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2853, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2863, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2872, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2880, 8, 73, 1, 73, 3, 73, 2883, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2891, 8, 73, 1, 73, 3, 73, 2894, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2901, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2906, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2914, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2930, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2935, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2942, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2961, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2967, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2975, 8, 74, 10, 74, 12, 74, 2978, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2989, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2996, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3003, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 3016, 8, 74, 10, 74, 12, 74, 3019, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3031, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3037, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3043, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3049, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3055, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3061, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3067, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 3072, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3079, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3086, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3093, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3098, 8, 77, 1, 77, 5, 77, 3101, 8, 77, 10, 77, 12, 77, 3104, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 3112, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3119, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3126, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3133, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 3142, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 3148, 8, 83, 1, 83, 1, 83, 3, 83, 3152, 8, 83, 1, 83, 1, 83, 3, 83, 3156, 8, 83, 1, 84, 1, 84, 3, 84, 3160, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 3166, 8, 84, 1, 84, 3, 84, 3169, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3174, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3181, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3186, 8, 86, 10, 86, 12, 86, 3189, 9, 86, 1, 86, 3, 86, 3192, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 3197, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3207, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3213, 8, 88, 10, 88, 12, 88, 3216, 9, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3221, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 3228, 8, 89, 10, 89, 12, 89, 3231, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 3239, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3248, 8, 92, 1, 92, 3, 92, 3251, 8, 92, 1, 93, 1, 93, 3, 93, 3255, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3264, 8, 95, 1, 96, 1, 96, 3, 96, 3268, 8, 96, 1, 96, 3, 96, 3271, 8, 96, 1, 96, 3, 96, 3274, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3280, 8, 96, 1, 96, 3, 96, 3283, 8, 96, 1, 96, 3, 96, 3286, 8, 96, 1, 96, 1, 96, 3, 96, 3290, 8, 96, 1, 96, 3, 96, 3293, 8, 96, 1, 96, 3, 96, 3296, 8, 96, 1, 96, 3, 96, 3299, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3308, 8, 96, 10, 96, 12, 96, 3311, 9, 96, 3, 96, 3313, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3318, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3324, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3329, 8, 99, 1, 99, 4, 99, 3332, 8, 99, 11, 99, 12, 99, 3333, 1, 100, 3, 100, 3337, 8, 100, 1, 100, 1, 100, 3, 100, 3341, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3346, 8, 101, 1, 101, 3, 101, 3349, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3354, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3364, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3369, 8, 101, 1, 101, 1, 101, 4, 101, 3373, 8, 101, 11, 101, 12, 101, 3374, 3, 101, 3377, 8, 101, 1, 101, 1, 101, 4, 101, 3381, 8, 101, 11, 101, 12, 101, 3382, 3, 101, 3385, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3391, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3397, 8, 101, 10, 101, 12, 101, 3400, 9, 101, 1, 101, 1, 101, 3, 101, 3404, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3410, 8, 101, 10, 101, 12, 101, 3413, 9, 101, 3, 101, 3415, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3420, 8, 102, 1, 102, 3, 102, 3423, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3428, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3436, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3442, 8, 102, 1, 102, 1, 102, 3, 102, 3446, 8, 102, 3, 102, 3448, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3454, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3460, 8, 102, 10, 102, 12, 102, 3463, 9, 102, 1, 102, 1, 102, 3, 102, 3467, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3473, 8, 102, 10, 102, 12, 102, 3476, 9, 102, 3, 102, 3478, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3483, 8, 103, 1, 103, 3, 103, 3486, 8, 103, 1, 103, 1, 103, 3, 103, 3490, 8, 103, 1, 103, 3, 103, 3493, 8, 103, 1, 103, 3, 103, 3496, 8, 103, 1, 104, 1, 104, 3, 104, 3500, 8, 104, 1, 104, 3, 104, 3503, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3511, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3517, 8, 104, 1, 104, 1, 104, 3, 104, 3521, 8, 104, 1, 105, 1, 105, 5, 105, 3525, 8, 105, 10, 105, 12, 105, 3528, 9, 105, 1, 105, 1, 105, 3, 105, 3532, 8, 105, 1, 105, 1, 105, 3, 105, 3536, 8, 105, 3, 105, 3538, 8, 105, 1, 105, 1, 105, 5, 105, 3542, 8, 105, 10, 105, 12, 105, 3545, 9, 105, 1, 105, 3, 105, 3548, 8, 105, 1, 105, 3, 105, 3551, 8, 105, 1, 105, 3, 105, 3554, 8, 105, 1, 105, 3, 105, 3557, 8, 105, 1, 105, 1, 105, 5, 105, 3561, 8, 105, 10, 105, 12, 105, 3564, 9, 105, 1, 105, 1, 105, 3, 105, 3568, 8, 105, 1, 105, 3, 105, 3571, 8, 105, 1, 105, 3, 105, 3574, 8, 105, 1, 105, 3, 105, 3577, 8, 105, 1, 105, 3, 105, 3580, 8, 105, 3, 105, 3582, 8, 105, 1, 106, 3, 106, 3585, 8, 106, 1, 106, 1, 106, 3, 106, 3589, 8, 106, 1, 106, 3, 106, 3592, 8, 106, 1, 106, 3, 106, 3595, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3603, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3609, 8, 107, 1, 107, 5, 107, 3612, 8, 107, 10, 107, 12, 107, 3615, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3623, 8, 108, 1, 108, 5, 108, 3626, 8, 108, 10, 108, 12, 108, 3629, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3635, 8, 109, 1, 109, 3, 109, 3638, 8, 109, 1, 109, 3, 109, 3641, 8, 109, 1, 109, 1, 109, 3, 109, 3645, 8, 109, 1, 110, 1, 110, 3, 110, 3649, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3655, 8, 111, 1, 111, 1, 111, 3, 111, 3659, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3664, 8, 112, 10, 112, 12, 112, 3667, 9, 112, 1, 112, 3, 112, 3670, 8, 112, 1, 112, 3, 112, 3673, 8, 112, 1, 112, 3, 112, 3676, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3681, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3688, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3696, 8, 115, 10, 115, 12, 115, 3699, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3705, 8, 116, 10, 116, 12, 116, 3708, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 3716, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3724, 8, 119, 10, 119, 12, 119, 3727, 9, 119, 3, 119, 3729, 8, 119, 1, 119, 1, 119, 3, 119, 3733, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3739, 8, 119, 1, 120, 1, 120, 3, 120, 3743, 8, 120, 1, 120, 3, 120, 3746, 8, 120, 1, 120, 3, 120, 3749, 8, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3754, 8, 120, 1, 120, 3, 120, 3757, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3764, 8, 120, 1, 120, 1, 120, 3, 120, 3768, 8, 120, 1, 120, 3, 120, 3771, 8, 120, 1, 120, 1, 120, 3, 120, 3775, 8, 120, 1, 121, 1, 121, 3, 121, 3779, 8, 121, 1, 121, 3, 121, 3782, 8, 121, 1, 121, 3, 121, 3785, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3790, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3796, 8, 121, 5, 121, 3798, 8, 121, 10, 121, 12, 121, 3801, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3810, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3816, 8, 121, 5, 121, 3818, 8, 121, 10, 121, 12, 121, 3821, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3826, 8, 121, 1, 121, 1, 121, 3, 121, 3830, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3836, 8, 122, 1, 122, 3, 122, 3839, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3851, 8, 123, 1, 123, 1, 123, 3, 123, 3855, 8, 123, 1, 123, 1, 123, 3, 123, 3859, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3867, 8, 124, 1, 124, 1, 124, 3, 124, 3871, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3883, 8, 126, 10, 126, 12, 126, 3886, 9, 126, 1, 127, 1, 127, 3, 127, 3890, 8, 127, 1, 127, 3, 127, 3893, 8, 127, 1, 127, 1, 127, 3, 127, 3897, 8, 127, 1, 127, 3, 127, 3900, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3906, 8, 127, 10, 127, 12, 127, 3909, 9, 127, 1, 127, 1, 127, 3, 127, 3913, 8, 127, 1, 127, 3, 127, 3916, 8, 127, 1, 127, 3, 127, 3919, 8, 127, 1, 128, 1, 128, 3, 128, 3923, 8, 128, 1, 128, 3, 128, 3926, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3933, 8, 128, 10, 128, 12, 128, 3936, 9, 128, 1, 128, 1, 128, 3, 128, 3940, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3947, 8, 129, 10, 129, 12, 129, 3950, 9, 129, 1, 130, 1, 130, 3, 130, 3954, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3959, 8, 131, 10, 131, 12, 131, 3962, 9, 131, 1, 132, 1, 132, 5, 132, 3966, 8, 132, 10, 132, 12, 132, 3969, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3974, 8, 132, 10, 132, 12, 132, 3977, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3982, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3990, 8, 133, 1, 133, 3, 133, 3993, 8, 133, 1, 133, 3, 133, 3996, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 4001, 8, 133, 10, 133, 12, 133, 4004, 9, 133, 3, 133, 4006, 8, 133, 1, 133, 3, 133, 4009, 8, 133, 1, 133, 1, 133, 3, 133, 4013, 8, 133, 1, 133, 1, 133, 3, 133, 4017, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4023, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4030, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4040, 8, 136, 1, 136, 1, 136, 3, 136, 4044, 8, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4053, 8, 137, 1, 138, 3, 138, 4056, 8, 138, 1, 138, 1, 138, 3, 138, 4060, 8, 138, 1, 138, 1, 138, 5, 138, 4064, 8, 138, 10, 138, 12, 138, 4067, 9, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4072, 8, 138, 10, 138, 12, 138, 4075, 9, 138, 1, 138, 1, 138, 3, 138, 4079, 8, 138, 1, 138, 1, 138, 3, 138, 4083, 8, 138, 1, 138, 1, 138, 5, 138, 4087, 8, 138, 10, 138, 12, 138, 4090, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4095, 8, 138, 1, 138, 3, 138, 4098, 8, 138, 3, 138, 4100, 8, 138, 1, 138, 1, 138, 3, 138, 4104, 8, 138, 1, 139, 1, 139, 1, 139, 3, 139, 4109, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4116, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4126, 8, 140, 1, 141, 1, 141, 5, 141, 4130, 8, 141, 10, 141, 12, 141, 4133, 9, 141, 1, 141, 1, 141, 3, 141, 4137, 8, 141, 1, 141, 1, 141, 3, 141, 4141, 8, 141, 1, 141, 3, 141, 4144, 8, 141, 1, 141, 3, 141, 4147, 8, 141, 1, 141, 3, 141, 4150, 8, 141, 1, 141, 3, 141, 4153, 8, 141, 1, 141, 3, 141, 4156, 8, 141, 1, 141, 3, 141, 4159, 8, 141, 1, 142, 1, 142, 3, 142, 4163, 8, 142, 1, 142, 1, 142, 3, 142, 4167, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4175, 8, 143, 1, 143, 1, 143, 3, 143, 4179, 8, 143, 1, 143, 3, 143, 4182, 8, 143, 3, 143, 4184, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4197, 8, 144, 1, 144, 3, 144, 4200, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 4205, 8, 145, 10, 145, 12, 145, 4208, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4217, 8, 146, 1, 146, 3, 146, 4220, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4225, 8, 146, 3, 146, 4227, 8, 146, 1, 146, 1, 146, 3, 146, 4231, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4239, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4245, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4254, 8, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4267, 8, 149, 1, 150, 1, 150, 3, 150, 4271, 8, 150, 1, 150, 1, 150, 5, 150, 4275, 8, 150, 10, 150, 12, 150, 4278, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 4283, 8, 151, 1, 151, 3, 151, 4286, 8, 151, 1, 151, 1, 151, 3, 151, 4290, 8, 151, 1, 151, 3, 151, 4293, 8, 151, 3, 151, 4295, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 4307, 8, 155, 1, 155, 1, 155, 3, 155, 4311, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 4317, 8, 156, 10, 156, 12, 156, 4320, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4331, 8, 156, 1, 156, 1, 156, 4, 156, 4335, 8, 156, 11, 156, 12, 156, 4336, 3, 156, 4339, 8, 156, 1, 156, 1, 156, 4, 156, 4343, 8, 156, 11, 156, 12, 156, 4344, 3, 156, 4347, 8, 156, 3, 156, 4349, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4355, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4363, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 4371, 8, 158, 1, 159, 1, 159, 3, 159, 4375, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4380, 8, 159, 3, 159, 4382, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 4389, 8, 160, 10, 160, 12, 160, 4392, 9, 160, 1, 160, 1, 160, 3, 160, 4396, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 5, 162, 4414, 8, 162, 10, 162, 12, 162, 4417, 9, 162, 1, 163, 1, 163, 3, 163, 4421, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4427, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4434, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 4439, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4446, 8, 166, 10, 166, 12, 166, 4449, 9, 166, 3, 166, 4451, 8, 166, 1, 167, 1, 167, 3, 167, 4455, 8, 167, 1, 168, 1, 168, 3, 168, 4459, 8, 168, 1, 168, 1, 168, 3, 168, 4463, 8, 168, 1, 168, 3, 168, 4466, 8, 168, 1, 168, 3, 168, 4469, 8, 168, 1, 168, 3, 168, 4472, 8, 168, 1, 169, 1, 169, 3, 169, 4476, 8, 169, 1, 169, 1, 169, 3, 169, 4480, 8, 169, 1, 169, 3, 169, 4483, 8, 169, 1, 169, 3, 169, 4486, 8, 169, 1, 169, 3, 169, 4489, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4496, 8, 171, 1, 171, 1, 171, 3, 171, 4500, 8, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4513, 8, 173, 10, 173, 12, 173, 4516, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4528, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4534, 8, 176, 10, 176, 12, 176, 4537, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4546, 8, 177, 1, 178, 1, 178, 3, 178, 4550, 8, 178, 1, 178, 3, 178, 4553, 8, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4559, 8, 179, 1, 179, 3, 179, 4562, 8, 179, 1, 179, 3, 179, 4565, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4574, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4583, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4591, 8, 182, 10, 182, 12, 182, 4594, 9, 182, 1, 182, 3, 182, 4597, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 4605, 8, 183, 10, 183, 12, 183, 4608, 9, 183, 1, 183, 3, 183, 4611, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 4620, 8, 184, 10, 184, 12, 184, 4623, 9, 184, 1, 184, 3, 184, 4626, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4635, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 4642, 8, 186, 10, 186, 12, 186, 4645, 9, 186, 3, 186, 4647, 8, 186, 1, 186, 1, 186, 3, 186, 4651, 8, 186, 1, 186, 5, 186, 4654, 8, 186, 10, 186, 12, 186, 4657, 9, 186, 1, 186, 3, 186, 4660, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4667, 8, 187, 10, 187, 12, 187, 4670, 9, 187, 3, 187, 4672, 8, 187, 1, 187, 3, 187, 4675, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4682, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4688, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4694, 8, 188, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4718, 8, 190, 10, 190, 12, 190, 4721, 9, 190, 3, 190, 4723, 8, 190, 1, 190, 3, 190, 4726, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4745, 8, 194, 3, 194, 4747, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 4768, 8, 195, 10, 195, 12, 195, 4771, 9, 195, 3, 195, 4773, 8, 195, 1, 195, 3, 195, 4776, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4795, 8, 199, 3, 199, 4797, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4809, 8, 201, 10, 201, 12, 201, 4812, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4822, 8, 201, 10, 201, 12, 201, 4825, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4859, 8, 201, 10, 201, 12, 201, 4862, 9, 201, 1, 201, 1, 201, 3, 201, 4866, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4901, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4915, 8, 205, 1, 206, 1, 206, 1, 206, 5, 206, 4920, 8, 206, 10, 206, 12, 206, 4923, 9, 206, 1, 206, 3, 206, 4926, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4932, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4940, 8, 208, 3, 208, 4942, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4953, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4963, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4970, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4976, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 3, 216, 4984, 8, 216, 1, 217, 1, 217, 1, 217, 3, 217, 4989, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4995, 8, 217, 10, 217, 12, 217, 4998, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5003, 8, 217, 10, 217, 12, 217, 5006, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5011, 8, 217, 10, 217, 12, 217, 5014, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5019, 8, 217, 10, 217, 12, 217, 5022, 9, 217, 1, 217, 5, 217, 5025, 8, 217, 10, 217, 12, 217, 5028, 9, 217, 1, 217, 1, 217, 3, 217, 5032, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5037, 8, 218, 1, 218, 4, 218, 5040, 8, 218, 11, 218, 12, 218, 5041, 1, 218, 1, 218, 4, 218, 5046, 8, 218, 11, 218, 12, 218, 5047, 3, 218, 5050, 8, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 4, 219, 5059, 8, 219, 11, 219, 12, 219, 5060, 1, 219, 5, 219, 5064, 8, 219, 10, 219, 12, 219, 5067, 9, 219, 1, 219, 1, 219, 4, 219, 5071, 8, 219, 11, 219, 12, 219, 5072, 3, 219, 5075, 8, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 3, 222, 5089, 8, 222, 1, 222, 1, 222, 4, 222, 5093, 8, 222, 11, 222, 12, 222, 5094, 1, 222, 1, 222, 1, 222, 3, 222, 5100, 8, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5105, 8, 223, 1, 223, 1, 223, 4, 223, 5109, 8, 223, 11, 223, 12, 223, 5110, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5118, 8, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5126, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 5132, 8, 225, 11, 225, 12, 225, 5133, 1, 225, 1, 225, 1, 225, 3, 225, 5139, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5145, 8, 226, 1, 226, 3, 226, 5148, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5156, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5163, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5172, 8, 228, 1, 228, 3, 228, 5175, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5190, 8, 230, 10, 230, 12, 230, 5193, 9, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5200, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5208, 8, 231, 1, 232, 1, 232, 3, 232, 5212, 8, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5219, 8, 233, 1, 233, 1, 233, 4, 233, 5223, 8, 233, 11, 233, 12, 233, 5224, 1, 234, 1, 234, 1, 234, 1, 234, 4, 234, 5231, 8, 234, 11, 234, 12, 234, 5232, 1, 235, 1, 235, 1, 235, 3, 235, 5238, 8, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5243, 8, 235, 10, 235, 12, 235, 5246, 9, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5251, 8, 235, 10, 235, 12, 235, 5254, 9, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5260, 8, 235, 1, 235, 5, 235, 5263, 8, 235, 10, 235, 12, 235, 5266, 9, 235, 3, 235, 5268, 8, 235, 3, 235, 5270, 8, 235, 1, 235, 1, 235, 4, 235, 5274, 8, 235, 11, 235, 12, 235, 5275, 3, 235, 5278, 8, 235, 1, 235, 1, 235, 5, 235, 5282, 8, 235, 10, 235, 12, 235, 5285, 9, 235, 1, 235, 1, 235, 3, 235, 5289, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5296, 8, 235, 1, 236, 1, 236, 1, 236, 3, 236, 5301, 8, 236, 1, 236, 1, 236, 3, 236, 5305, 8, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5310, 8, 236, 5, 236, 5312, 8, 236, 10, 236, 12, 236, 5315, 9, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5320, 8, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5326, 8, 236, 1, 236, 5, 236, 5329, 8, 236, 10, 236, 12, 236, 5332, 9, 236, 3, 236, 5334, 8, 236, 3, 236, 5336, 8, 236, 1, 236, 1, 236, 4, 236, 5340, 8, 236, 11, 236, 12, 236, 5341, 3, 236, 5344, 8, 236, 1, 236, 1, 236, 5, 236, 5348, 8, 236, 10, 236, 12, 236, 5351, 9, 236, 1, 236, 1, 236, 3, 236, 5355, 8, 236, 1, 237, 1, 237, 1, 237, 3, 237, 5360, 8, 237, 1, 237, 1, 237, 1, 237, 5, 237, 5365, 8, 237, 10, 237, 12, 237, 5368, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5374, 8, 238, 10, 238, 12, 238, 5377, 9, 238, 1, 238, 1, 238, 3, 238, 5381, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5388, 8, 238, 10, 238, 12, 238, 5391, 9, 238, 1, 238, 3, 238, 5394, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5400, 8, 238, 1, 238, 5, 238, 5403, 8, 238, 10, 238, 12, 238, 5406, 9, 238, 3, 238, 5408, 8, 238, 3, 238, 5410, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5416, 8, 238, 10, 238, 12, 238, 5419, 9, 238, 3, 238, 5421, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5428, 8, 238, 3, 238, 5430, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5435, 8, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5440, 8, 238, 10, 238, 12, 238, 5443, 9, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5449, 8, 238, 10, 238, 12, 238, 5452, 9, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5457, 8, 238, 3, 238, 5459, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5466, 8, 239, 1, 239, 3, 239, 5469, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 5479, 8, 240, 10, 240, 12, 240, 5482, 9, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5487, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5495, 8, 241, 1, 241, 3, 241, 5498, 8, 241, 1, 241, 1, 241, 3, 241, 5502, 8, 241, 1, 241, 3, 241, 5505, 8, 241, 1, 241, 1, 241, 3, 241, 5509, 8, 241, 3, 241, 5511, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5522, 8, 242, 1, 242, 3, 242, 5525, 8, 242, 1, 242, 1, 242, 3, 242, 5529, 8, 242, 1, 242, 3, 242, 5532, 8, 242, 1, 242, 3, 242, 5535, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5542, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5552, 8, 244, 10, 244, 12, 244, 5555, 9, 244, 3, 244, 5557, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5564, 8, 245, 1, 245, 1, 245, 5, 245, 5568, 8, 245, 10, 245, 12, 245, 5571, 9, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 5578, 8, 246, 10, 246, 12, 246, 5581, 9, 246, 1, 247, 1, 247, 3, 247, 5585, 8, 247, 1, 247, 1, 247, 1, 247, 5, 247, 5590, 8, 247, 10, 247, 12, 247, 5593, 9, 247, 1, 247, 1, 247, 3, 247, 5597, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5603, 8, 247, 1, 247, 1, 247, 3, 247, 5607, 8, 247, 1, 247, 1, 247, 3, 247, 5611, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5619, 8, 247, 1, 247, 1, 247, 3, 247, 5623, 8, 247, 1, 247, 1, 247, 3, 247, 5627, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5633, 8, 247, 3, 247, 5635, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5647, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5652, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5658, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5664, 8, 250, 1, 250, 1, 250, 3, 250, 5668, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5673, 8, 250, 3, 250, 5675, 8, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5699, 8, 252, 4, 252, 5701, 8, 252, 11, 252, 12, 252, 5702, 1, 252, 3, 252, 5706, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5715, 8, 253, 1, 253, 1, 253, 3, 253, 5719, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5728, 8, 253, 1, 253, 1, 253, 3, 253, 5732, 8, 253, 1, 253, 1, 253, 3, 253, 5736, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5742, 8, 253, 3, 253, 5744, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5753, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5763, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5790, 8, 255, 1, 256, 1, 256, 3, 256, 5794, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5799, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5806, 8, 257, 1, 257, 3, 257, 5809, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5815, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5825, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5835, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5845, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5851, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5860, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5866, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5873, 8, 260, 3, 260, 5875, 8, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 3, 262, 5883, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5889, 8, 262, 1, 262, 1, 262, 3, 262, 5893, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5910, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5920, 8, 265, 1, 266, 1, 266, 3, 266, 5924, 8, 266, 1, 266, 1, 266, 3, 266, 5928, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5938, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5943, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6015, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6033, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 3, 269, 6041, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6047, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6059, 8, 269, 1, 269, 1, 269, 3, 269, 6063, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6074, 8, 269, 1, 269, 1, 269, 3, 269, 6078, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6087, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 6093, 8, 270, 10, 270, 12, 270, 6096, 9, 270, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6102, 8, 271, 1, 272, 1, 272, 3, 272, 6106, 8, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 6113, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6118, 8, 273, 1, 273, 3, 273, 6121, 8, 273, 1, 273, 3, 273, 6124, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6135, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6142, 8, 276, 10, 276, 12, 276, 6145, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6151, 8, 276, 10, 276, 12, 276, 6154, 9, 276, 3, 276, 6156, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6168, 8, 278, 10, 278, 12, 278, 6171, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6188, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6201, 8, 281, 1, 281, 3, 281, 6204, 8, 281, 1, 281, 1, 281, 3, 281, 6208, 8, 281, 1, 281, 3, 281, 6211, 8, 281, 3, 281, 6213, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6220, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6227, 8, 282, 5, 282, 6229, 8, 282, 10, 282, 12, 282, 6232, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6238, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6245, 8, 282, 1, 282, 3, 282, 6248, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 6262, 8, 282, 10, 282, 12, 282, 6265, 9, 282, 3, 282, 6267, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6277, 8, 283, 1, 283, 1, 283, 3, 283, 6281, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6287, 8, 283, 1, 283, 3, 283, 6290, 8, 283, 1, 283, 3, 283, 6293, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6298, 8, 283, 1, 283, 1, 283, 3, 283, 6302, 8, 283, 1, 283, 3, 283, 6305, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6312, 8, 283, 1, 283, 3, 283, 6315, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6321, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6357, 8, 283, 1, 283, 3, 283, 6360, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6372, 8, 283, 1, 283, 3, 283, 6375, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6391, 8, 283, 3, 283, 6393, 8, 283, 1, 283, 1, 283, 3, 283, 6397, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6404, 8, 283, 1, 283, 1, 283, 3, 283, 6408, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6415, 8, 283, 1, 283, 3, 283, 6418, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6425, 8, 283, 10, 283, 12, 283, 6428, 9, 283, 3, 283, 6430, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6435, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6441, 8, 283, 3, 283, 6443, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6449, 8, 283, 1, 283, 1, 283, 3, 283, 6453, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6459, 8, 284, 1, 284, 3, 284, 6462, 8, 284, 1, 284, 3, 284, 6465, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 6478, 8, 285, 1, 285, 3, 285, 6481, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6487, 8, 286, 1, 287, 3, 287, 6490, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6498, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6506, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 6512, 8, 288, 1, 288, 3, 288, 6515, 8, 288, 1, 288, 1, 288, 3, 288, 6519, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6533, 8, 289, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 6543, 8, 291, 10, 291, 12, 291, 6546, 9, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6553, 8, 291, 1, 291, 1, 291, 3, 291, 6557, 8, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 3, 292, 6564, 8, 292, 1, 292, 1, 292, 1, 292, 5, 292, 6569, 8, 292, 10, 292, 12, 292, 6572, 9, 292, 1, 293, 1, 293, 3, 293, 6576, 8, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 6587, 8, 294, 10, 294, 12, 294, 6590, 9, 294, 1, 295, 1, 295, 1, 295, 1, 295, 5, 295, 6596, 8, 295, 10, 295, 12, 295, 6599, 9, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6606, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6611, 8, 297, 1, 297, 3, 297, 6614, 8, 297, 1, 298, 1, 298, 1, 298, 3, 298, 6619, 8, 298, 1, 298, 3, 298, 6622, 8, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6634, 8, 301, 1, 302, 1, 302, 1, 302, 3, 302, 6639, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6652, 8, 302, 3, 302, 6654, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6659, 8, 302, 1, 302, 1, 302, 3, 302, 6663, 8, 302, 1, 302, 3, 302, 6666, 8, 302, 3, 302, 6668, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6675, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6682, 8, 304, 1, 304, 3, 304, 6685, 8, 304, 1, 304, 3, 304, 6688, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6694, 8, 304, 1, 304, 1, 304, 3, 304, 6698, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6704, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6712, 8, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6721, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6734, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6739, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6745, 8, 310, 10, 310, 12, 310, 6748, 9, 310, 3, 310, 6750, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6755, 8, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6760, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6766, 8, 311, 10, 311, 12, 311, 6769, 9, 311, 3, 311, 6771, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6779, 8, 312, 1, 313, 1, 313, 3, 313, 6783, 8, 313, 1, 313, 1, 313, 1, 313, 5, 313, 6788, 8, 313, 10, 313, 12, 313, 6791, 9, 313, 1, 314, 1, 314, 1, 314, 3, 314, 6796, 8, 314, 1, 314, 3, 314, 6799, 8, 314, 1, 315, 1, 315, 3, 315, 6803, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6814, 8, 315, 10, 315, 12, 315, 6817, 9, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6822, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6832, 8, 315, 10, 315, 12, 315, 6835, 9, 315, 3, 315, 6837, 8, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6846, 8, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6851, 8, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6870, 8, 325, 10, 325, 12, 325, 6873, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6886, 8, 330, 10, 330, 12, 330, 6889, 9, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6896, 8, 332, 10, 332, 12, 332, 6899, 9, 332, 1, 333, 1, 333, 3, 333, 6903, 8, 333, 1, 334, 1, 334, 1, 334, 3, 334, 6908, 8, 334, 3, 334, 6910, 8, 334, 1, 334, 3, 334, 6913, 8, 334, 1, 334, 1, 334, 3, 334, 6917, 8, 334, 3, 334, 6919, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6924, 8, 335, 10, 335, 12, 335, 6927, 9, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 3, 337, 6934, 8, 337, 3, 337, 6936, 8, 337, 1, 337, 3, 337, 6939, 8, 337, 1, 337, 1, 337, 3, 337, 6943, 8, 337, 1, 337, 1, 337, 3, 337, 6947, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 6952, 8, 338, 3, 338, 6954, 8, 338, 1, 338, 3, 338, 6957, 8, 338, 1, 338, 1, 338, 3, 338, 6961, 8, 338, 3, 338, 6963, 8, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6970, 8, 339, 3, 339, 6972, 8, 339, 3, 339, 6974, 8, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 5, 343, 6985, 8, 343, 10, 343, 12, 343, 6988, 9, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 6997, 8, 345, 1, 345, 3, 345, 7000, 8, 345, 1, 345, 3, 345, 7003, 8, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 7016, 8, 348, 1, 349, 1, 349, 1, 350, 1, 350, 3, 350, 7022, 8, 350, 1, 350, 3, 350, 7025, 8, 350, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7033, 8, 352, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 3, 354, 7040, 8, 354, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 4, 356, 7058, 8, 356, 11, 356, 12, 356, 7059, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 7067, 8, 357, 3, 357, 7069, 8, 357, 1, 358, 1, 358, 1, 358, 4, 358, 7074, 8, 358, 11, 358, 12, 358, 7075, 3, 358, 7078, 8, 358, 1, 359, 1, 359, 3, 359, 7082, 8, 359, 1, 360, 1, 360, 1, 360, 5, 360, 7087, 8, 360, 10, 360, 12, 360, 7090, 9, 360, 1, 361, 1, 361, 1, 361, 3, 361, 7095, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7106, 8, 362, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7112, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7121, 8, 364, 1, 365, 1, 365, 1, 366, 1, 366, 3, 366, 7127, 8, 366, 1, 367, 3, 367, 7130, 8, 367, 1, 367, 1, 367, 3, 367, 7134, 8, 367, 1, 367, 4, 367, 7137, 8, 367, 11, 367, 12, 367, 7138, 1, 367, 3, 367, 7142, 8, 367, 1, 367, 1, 367, 3, 367, 7146, 8, 367, 1, 367, 1, 367, 3, 367, 7150, 8, 367, 3, 367, 7152, 8, 367, 1, 368, 1, 368, 1, 369, 3, 369, 7157, 8, 369, 1, 369, 1, 369, 1, 370, 3, 370, 7162, 8, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7175, 8, 371, 1, 371, 3, 371, 7178, 8, 371, 1, 372, 1, 372, 3, 372, 7182, 8, 372, 1, 372, 3, 372, 7185, 8, 372, 1, 372, 3, 372, 7188, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7193, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7198, 8, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7204, 8, 372, 1, 372, 3, 372, 7207, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7212, 8, 372, 1, 372, 3, 372, 7215, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7220, 8, 372, 1, 372, 3, 372, 7223, 8, 372, 1, 372, 1, 372, 3, 372, 7227, 8, 372, 1, 372, 5, 372, 7230, 8, 372, 10, 372, 12, 372, 7233, 9, 372, 1, 372, 1, 372, 3, 372, 7237, 8, 372, 1, 372, 5, 372, 7240, 8, 372, 10, 372, 12, 372, 7243, 9, 372, 1, 372, 1, 372, 3, 372, 7247, 8, 372, 1, 372, 3, 372, 7250, 8, 372, 1, 372, 5, 372, 7253, 8, 372, 10, 372, 12, 372, 7256, 9, 372, 1, 372, 1, 372, 3, 372, 7260, 8, 372, 1, 372, 5, 372, 7263, 8, 372, 10, 372, 12, 372, 7266, 9, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7271, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7276, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7281, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7286, 8, 372, 1, 372, 1, 372, 3, 372, 7290, 8, 372, 1, 372, 3, 372, 7293, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7298, 8, 372, 1, 372, 1, 372, 3, 372, 7302, 8, 372, 1, 372, 1, 372, 3, 372, 7306, 8, 372, 1, 373, 1, 373, 1, 373, 1, 373, 5, 373, 7312, 8, 373, 10, 373, 12, 373, 7315, 9, 373, 1, 373, 1, 373, 1, 374, 1, 374, 3, 374, 7321, 8, 374, 1, 374, 1, 374, 3, 374, 7325, 8, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7330, 8, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7335, 8, 374, 1, 374, 1, 374, 3, 374, 7339, 8, 374, 3, 374, 7341, 8, 374, 1, 374, 3, 374, 7344, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7360, 8, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 5, 378, 7368, 8, 378, 10, 378, 12, 378, 7371, 9, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7378, 8, 379, 10, 379, 12, 379, 7381, 9, 379, 1, 380, 1, 380, 1, 380, 1, 380, 5, 380, 7387, 8, 380, 10, 380, 12, 380, 7390, 9, 380, 1, 381, 1, 381, 1, 381, 1, 381, 5, 381, 7396, 8, 381, 10, 381, 12, 381, 7399, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 3, 382, 7405, 8, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7410, 8, 383, 10, 383, 12, 383, 7413, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7418, 8, 384, 10, 384, 12, 384, 7421, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7426, 8, 385, 10, 385, 12, 385, 7429, 9, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7440, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7447, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7457, 8, 386, 1, 387, 1, 387, 1, 387, 3, 387, 7462, 8, 387, 1, 387, 3, 387, 7465, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7470, 8, 387, 1, 387, 3, 387, 7473, 8, 387, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7495, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7504, 8, 391, 1, 391, 3, 391, 7507, 8, 391, 1, 392, 1, 392, 1, 392, 3, 392, 7512, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 4, 392, 7543, 8, 392, 11, 392, 12, 392, 7544, 1, 392, 1, 392, 3, 392, 7549, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 4, 392, 7556, 8, 392, 11, 392, 12, 392, 7557, 1, 392, 1, 392, 3, 392, 7562, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7571, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7579, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7584, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7592, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7597, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7602, 8, 392, 3, 392, 7604, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7613, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7618, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7626, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7631, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7639, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7647, 8, 392, 1, 392, 3, 392, 7650, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7660, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7678, 8, 392, 1, 392, 3, 392, 7681, 8, 392, 1, 392, 3, 392, 7684, 8, 392, 1, 392, 1, 392, 3, 392, 7688, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 5, 394, 7699, 8, 394, 10, 394, 12, 394, 7702, 9, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7709, 8, 394, 1, 395, 1, 395, 3, 395, 7713, 8, 395, 1, 396, 1, 396, 1, 396, 3, 396, 7718, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7723, 8, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7729, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7734, 8, 396, 1, 396, 1, 396, 3, 396, 7738, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7743, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7748, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7753, 8, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 5, 396, 7761, 8, 396, 10, 396, 12, 396, 7764, 9, 396, 3, 396, 7766, 8, 396, 1, 396, 1, 396, 3, 396, 7770, 8, 396, 1, 396, 1, 396, 3, 396, 7774, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7781, 8, 397, 1, 397, 1, 397, 3, 397, 7785, 8, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7814, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7822, 8, 398, 1, 399, 3, 399, 7825, 8, 399, 1, 399, 3, 399, 7828, 8, 399, 1, 399, 3, 399, 7831, 8, 399, 1, 399, 3, 399, 7834, 8, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 403, 1, 403, 3, 403, 7845, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7859, 8, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 5, 406, 7866, 8, 406, 10, 406, 12, 406, 7869, 9, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7895, 8, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 5, 409, 7905, 8, 409, 10, 409, 12, 409, 7908, 9, 409, 1, 410, 1, 410, 1, 410, 3, 410, 7913, 8, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7921, 8, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7926, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 5, 411, 7932, 8, 411, 10, 411, 12, 411, 7935, 9, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7942, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7955, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7961, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7967, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7982, 8, 412, 1, 412, 1, 412, 3, 412, 7986, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7992, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 5, 412, 8001, 8, 412, 10, 412, 12, 412, 8004, 9, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 5, 413, 8022, 8, 413, 10, 413, 12, 413, 8025, 9, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 4, 413, 8034, 8, 413, 11, 413, 12, 413, 8035, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 8054, 8, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 5, 413, 8071, 8, 413, 10, 413, 12, 413, 8074, 9, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 8086, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 8095, 8, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 8104, 8, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 8113, 8, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 8122, 8, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 424, 1, 424, 1, 425, 1, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 0, 5, 214, 216, 822, 824, 826, 428, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 75, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9507, 0, 859, 1, 0, 0, 0, 2, 869, 1, 0, 0, 0, 4, 878, 1, 0, 0, 0, 6, 880, 1, 0, 0, 0, 8, 922, 1, 0, 0, 0, 10, 941, 1, 0, 0, 0, 12, 952, 1, 0, 0, 0, 14, 968, 1, 0, 0, 0, 16, 973, 1, 0, 0, 0, 18, 985, 1, 0, 0, 0, 20, 1020, 1, 0, 0, 0, 22, 1030, 1, 0, 0, 0, 24, 1032, 1, 0, 0, 0, 26, 1044, 1, 0, 0, 0, 28, 1074, 1, 0, 0, 0, 30, 1110, 1, 0, 0, 0, 32, 1161, 1, 0, 0, 0, 34, 1190, 1, 0, 0, 0, 36, 1226, 1, 0, 0, 0, 38, 1240, 1, 0, 0, 0, 40, 1247, 1, 0, 0, 0, 42, 1344, 1, 0, 0, 0, 44, 1346, 1, 0, 0, 0, 46, 1383, 1, 0, 0, 0, 48, 1447, 1, 0, 0, 0, 50, 1472, 1, 0, 0, 0, 52, 1478, 1, 0, 0, 0, 54, 1500, 1, 0, 0, 0, 56, 1587, 1, 0, 0, 0, 58, 1594, 1, 0, 0, 0, 60, 1596, 1, 0, 0, 0, 62, 1601, 1, 0, 0, 0, 64, 1641, 1, 0, 0, 0, 66, 1647, 1, 0, 0, 0, 68, 1649, 1, 0, 0, 0, 70, 1670, 1, 0, 0, 0, 72, 1677, 1, 0, 0, 0, 74, 1679, 1, 0, 0, 0, 76, 1704, 1, 0, 0, 0, 78, 1707, 1, 0, 0, 0, 80, 1712, 1, 0, 0, 0, 82, 1738, 1, 0, 0, 0, 84, 1754, 1, 0, 0, 0, 86, 1756, 1, 0, 0, 0, 88, 1850, 1, 0, 0, 0, 90, 1853, 1, 0, 0, 0, 92, 1865, 1, 0, 0, 0, 94, 1869, 1, 0, 0, 0, 96, 1919, 1, 0, 0, 0, 98, 1921, 1, 0, 0, 0, 100, 1949, 1, 0, 0, 0, 102, 1959, 1, 0, 0, 0, 104, 2146, 1, 0, 0, 0, 106, 2148, 1, 0, 0, 0, 108, 2150, 1, 0, 0, 0, 110, 2153, 1, 0, 0, 0, 112, 2228, 1, 0, 0, 0, 114, 2251, 1, 0, 0, 0, 116, 2399, 1, 0, 0, 0, 118, 2404, 1, 0, 0, 0, 120, 2406, 1, 0, 0, 0, 122, 2416, 1, 0, 0, 0, 124, 2472, 1, 0, 0, 0, 126, 2492, 1, 0, 0, 0, 128, 2494, 1, 0, 0, 0, 130, 2529, 1, 0, 0, 0, 132, 2538, 1, 0, 0, 0, 134, 2545, 1, 0, 0, 0, 136, 2568, 1, 0, 0, 0, 138, 2577, 1, 0, 0, 0, 140, 2592, 1, 0, 0, 0, 142, 2614, 1, 0, 0, 0, 144, 2670, 1, 0, 0, 0, 146, 2966, 1, 0, 0, 0, 148, 3066, 1, 0, 0, 0, 150, 3068, 1, 0, 0, 0, 152, 3075, 1, 0, 0, 0, 154, 3082, 1, 0, 0, 0, 156, 3105, 1, 0, 0, 0, 158, 3115, 1, 0, 0, 0, 160, 3122, 1, 0, 0, 0, 162, 3129, 1, 0, 0, 0, 164, 3136, 1, 0, 0, 0, 166, 3145, 1, 0, 0, 0, 168, 3157, 1, 0, 0, 0, 170, 3170, 1, 0, 0, 0, 172, 3177, 1, 0, 0, 0, 174, 3193, 1, 0, 0, 0, 176, 3220, 1, 0, 0, 0, 178, 3222, 1, 0, 0, 0, 180, 3232, 1, 0, 0, 0, 182, 3236, 1, 0, 0, 0, 184, 3242, 1, 0, 0, 0, 186, 3254, 1, 0, 0, 0, 188, 3256, 1, 0, 0, 0, 190, 3263, 1, 0, 0, 0, 192, 3265, 1, 0, 0, 0, 194, 3314, 1, 0, 0, 0, 196, 3323, 1, 0, 0, 0, 198, 3325, 1, 0, 0, 0, 200, 3336, 1, 0, 0, 0, 202, 3342, 1, 0, 0, 0, 204, 3416, 1, 0, 0, 0, 206, 3479, 1, 0, 0, 0, 208, 3497, 1, 0, 0, 0, 210, 3581, 1, 0, 0, 0, 212, 3584, 1, 0, 0, 0, 214, 3596, 1, 0, 0, 0, 216, 3616, 1, 0, 0, 0, 218, 3644, 1, 0, 0, 0, 220, 3648, 1, 0, 0, 0, 222, 3650, 1, 0, 0, 0, 224, 3660, 1, 0, 0, 0, 226, 3680, 1, 0, 0, 0, 228, 3687, 1, 0, 0, 0, 230, 3689, 1, 0, 0, 0, 232, 3700, 1, 0, 0, 0, 234, 3709, 1, 0, 0, 0, 236, 3715, 1, 0, 0, 0, 238, 3738, 1, 0, 0, 0, 240, 3740, 1, 0, 0, 0, 242, 3776, 1, 0, 0, 0, 244, 3831, 1, 0, 0, 0, 246, 3840, 1, 0, 0, 0, 248, 3860, 1, 0, 0, 0, 250, 3872, 1, 0, 0, 0, 252, 3876, 1, 0, 0, 0, 254, 3887, 1, 0, 0, 0, 256, 3920, 1, 0, 0, 0, 258, 3941, 1, 0, 0, 0, 260, 3951, 1, 0, 0, 0, 262, 3955, 1, 0, 0, 0, 264, 3981, 1, 0, 0, 0, 266, 4022, 1, 0, 0, 0, 268, 4029, 1, 0, 0, 0, 270, 4031, 1, 0, 0, 0, 272, 4035, 1, 0, 0, 0, 274, 4052, 1, 0, 0, 0, 276, 4103, 1, 0, 0, 0, 278, 4115, 1, 0, 0, 0, 280, 4125, 1, 0, 0, 0, 282, 4127, 1, 0, 0, 0, 284, 4160, 1, 0, 0, 0, 286, 4168, 1, 0, 0, 0, 288, 4185, 1, 0, 0, 0, 290, 4201, 1, 0, 0, 0, 292, 4238, 1, 0, 0, 0, 294, 4244, 1, 0, 0, 0, 296, 4253, 1, 0, 0, 0, 298, 4266, 1, 0, 0, 0, 300, 4270, 1, 0, 0, 0, 302, 4294, 1, 0, 0, 0, 304, 4296, 1, 0, 0, 0, 306, 4300, 1, 0, 0, 0, 308, 4302, 1, 0, 0, 0, 310, 4310, 1, 0, 0, 0, 312, 4348, 1, 0, 0, 0, 314, 4362, 1, 0, 0, 0, 316, 4370, 1, 0, 0, 0, 318, 4374, 1, 0, 0, 0, 320, 4383, 1, 0, 0, 0, 322, 4397, 1, 0, 0, 0, 324, 4400, 1, 0, 0, 0, 326, 4418, 1, 0, 0, 0, 328, 4422, 1, 0, 0, 0, 330, 4438, 1, 0, 0, 0, 332, 4440, 1, 0, 0, 0, 334, 4452, 1, 0, 0, 0, 336, 4456, 1, 0, 0, 0, 338, 4473, 1, 0, 0, 0, 340, 4490, 1, 0, 0, 0, 342, 4493, 1, 0, 0, 0, 344, 4503, 1, 0, 0, 0, 346, 4507, 1, 0, 0, 0, 348, 4517, 1, 0, 0, 0, 350, 4520, 1, 0, 0, 0, 352, 4525, 1, 0, 0, 0, 354, 4545, 1, 0, 0, 0, 356, 4547, 1, 0, 0, 0, 358, 4564, 1, 0, 0, 0, 360, 4573, 1, 0, 0, 0, 362, 4582, 1, 0, 0, 0, 364, 4584, 1, 0, 0, 0, 366, 4598, 1, 0, 0, 0, 368, 4612, 1, 0, 0, 0, 370, 4627, 1, 0, 0, 0, 372, 4636, 1, 0, 0, 0, 374, 4661, 1, 0, 0, 0, 376, 4676, 1, 0, 0, 0, 378, 4695, 1, 0, 0, 0, 380, 4725, 1, 0, 0, 0, 382, 4727, 1, 0, 0, 0, 384, 4729, 1, 0, 0, 0, 386, 4731, 1, 0, 0, 0, 388, 4746, 1, 0, 0, 0, 390, 4775, 1, 0, 0, 0, 392, 4777, 1, 0, 0, 0, 394, 4779, 1, 0, 0, 0, 396, 4781, 1, 0, 0, 0, 398, 4796, 1, 0, 0, 0, 400, 4798, 1, 0, 0, 0, 402, 4865, 1, 0, 0, 0, 404, 4867, 1, 0, 0, 0, 406, 4873, 1, 0, 0, 0, 408, 4900, 1, 0, 0, 0, 410, 4914, 1, 0, 0, 0, 412, 4925, 1, 0, 0, 0, 414, 4927, 1, 0, 0, 0, 416, 4933, 1, 0, 0, 0, 418, 4943, 1, 0, 0, 0, 420, 4947, 1, 0, 0, 0, 422, 4954, 1, 0, 0, 0, 424, 4958, 1, 0, 0, 0, 426, 4964, 1, 0, 0, 0, 428, 4971, 1, 0, 0, 0, 430, 4977, 1, 0, 0, 0, 432, 4983, 1, 0, 0, 0, 434, 4988, 1, 0, 0, 0, 436, 5033, 1, 0, 0, 0, 438, 5054, 1, 0, 0, 0, 440, 5079, 1, 0, 0, 0, 442, 5082, 1, 0, 0, 0, 444, 5088, 1, 0, 0, 0, 446, 5104, 1, 0, 0, 0, 448, 5119, 1, 0, 0, 0, 450, 5125, 1, 0, 0, 0, 452, 5155, 1, 0, 0, 0, 454, 5157, 1, 0, 0, 0, 456, 5164, 1, 0, 0, 0, 458, 5176, 1, 0, 0, 0, 460, 5182, 1, 0, 0, 0, 462, 5207, 1, 0, 0, 0, 464, 5211, 1, 0, 0, 0, 466, 5215, 1, 0, 0, 0, 468, 5226, 1, 0, 0, 0, 470, 5234, 1, 0, 0, 0, 472, 5297, 1, 0, 0, 0, 474, 5356, 1, 0, 0, 0, 476, 5458, 1, 0, 0, 0, 478, 5468, 1, 0, 0, 0, 480, 5470, 1, 0, 0, 0, 482, 5488, 1, 0, 0, 0, 484, 5512, 1, 0, 0, 0, 486, 5536, 1, 0, 0, 0, 488, 5543, 1, 0, 0, 0, 490, 5563, 1, 0, 0, 0, 492, 5572, 1, 0, 0, 0, 494, 5634, 1, 0, 0, 0, 496, 5636, 1, 0, 0, 0, 498, 5640, 1, 0, 0, 0, 500, 5674, 1, 0, 0, 0, 502, 5676, 1, 0, 0, 0, 504, 5679, 1, 0, 0, 0, 506, 5743, 1, 0, 0, 0, 508, 5762, 1, 0, 0, 0, 510, 5789, 1, 0, 0, 0, 512, 5793, 1, 0, 0, 0, 514, 5814, 1, 0, 0, 0, 516, 5824, 1, 0, 0, 0, 518, 5834, 1, 0, 0, 0, 520, 5874, 1, 0, 0, 0, 522, 5876, 1, 0, 0, 0, 524, 5879, 1, 0, 0, 0, 526, 5909, 1, 0, 0, 0, 528, 5911, 1, 0, 0, 0, 530, 5914, 1, 0, 0, 0, 532, 6014, 1, 0, 0, 0, 534, 6032, 1, 0, 0, 0, 536, 6034, 1, 0, 0, 0, 538, 6086, 1, 0, 0, 0, 540, 6088, 1, 0, 0, 0, 542, 6097, 1, 0, 0, 0, 544, 6103, 1, 0, 0, 0, 546, 6110, 1, 0, 0, 0, 548, 6125, 1, 0, 0, 0, 550, 6134, 1, 0, 0, 0, 552, 6136, 1, 0, 0, 0, 554, 6157, 1, 0, 0, 0, 556, 6162, 1, 0, 0, 0, 558, 6172, 1, 0, 0, 0, 560, 6178, 1, 0, 0, 0, 562, 6212, 1, 0, 0, 0, 564, 6266, 1, 0, 0, 0, 566, 6452, 1, 0, 0, 0, 568, 6464, 1, 0, 0, 0, 570, 6480, 1, 0, 0, 0, 572, 6486, 1, 0, 0, 0, 574, 6505, 1, 0, 0, 0, 576, 6518, 1, 0, 0, 0, 578, 6532, 1, 0, 0, 0, 580, 6534, 1, 0, 0, 0, 582, 6537, 1, 0, 0, 0, 584, 6561, 1, 0, 0, 0, 586, 6573, 1, 0, 0, 0, 588, 6579, 1, 0, 0, 0, 590, 6591, 1, 0, 0, 0, 592, 6605, 1, 0, 0, 0, 594, 6607, 1, 0, 0, 0, 596, 6615, 1, 0, 0, 0, 598, 6623, 1, 0, 0, 0, 600, 6625, 1, 0, 0, 0, 602, 6627, 1, 0, 0, 0, 604, 6667, 1, 0, 0, 0, 606, 6674, 1, 0, 0, 0, 608, 6676, 1, 0, 0, 0, 610, 6699, 1, 0, 0, 0, 612, 6705, 1, 0, 0, 0, 614, 6715, 1, 0, 0, 0, 616, 6724, 1, 0, 0, 0, 618, 6727, 1, 0, 0, 0, 620, 6730, 1, 0, 0, 0, 622, 6751, 1, 0, 0, 0, 624, 6772, 1, 0, 0, 0, 626, 6780, 1, 0, 0, 0, 628, 6792, 1, 0, 0, 0, 630, 6800, 1, 0, 0, 0, 632, 6838, 1, 0, 0, 0, 634, 6850, 1, 0, 0, 0, 636, 6852, 1, 0, 0, 0, 638, 6854, 1, 0, 0, 0, 640, 6856, 1, 0, 0, 0, 642, 6858, 1, 0, 0, 0, 644, 6860, 1, 0, 0, 0, 646, 6862, 1, 0, 0, 0, 648, 6864, 1, 0, 0, 0, 650, 6866, 1, 0, 0, 0, 652, 6874, 1, 0, 0, 0, 654, 6876, 1, 0, 0, 0, 656, 6878, 1, 0, 0, 0, 658, 6880, 1, 0, 0, 0, 660, 6882, 1, 0, 0, 0, 662, 6890, 1, 0, 0, 0, 664, 6892, 1, 0, 0, 0, 666, 6902, 1, 0, 0, 0, 668, 6918, 1, 0, 0, 0, 670, 6920, 1, 0, 0, 0, 672, 6928, 1, 0, 0, 0, 674, 6946, 1, 0, 0, 0, 676, 6962, 1, 0, 0, 0, 678, 6973, 1, 0, 0, 0, 680, 6975, 1, 0, 0, 0, 682, 6977, 1, 0, 0, 0, 684, 6979, 1, 0, 0, 0, 686, 6981, 1, 0, 0, 0, 688, 6989, 1, 0, 0, 0, 690, 6999, 1, 0, 0, 0, 692, 7004, 1, 0, 0, 0, 694, 7008, 1, 0, 0, 0, 696, 7015, 1, 0, 0, 0, 698, 7017, 1, 0, 0, 0, 700, 7024, 1, 0, 0, 0, 702, 7026, 1, 0, 0, 0, 704, 7032, 1, 0, 0, 0, 706, 7034, 1, 0, 0, 0, 708, 7039, 1, 0, 0, 0, 710, 7041, 1, 0, 0, 0, 712, 7043, 1, 0, 0, 0, 714, 7061, 1, 0, 0, 0, 716, 7077, 1, 0, 0, 0, 718, 7079, 1, 0, 0, 0, 720, 7083, 1, 0, 0, 0, 722, 7094, 1, 0, 0, 0, 724, 7105, 1, 0, 0, 0, 726, 7111, 1, 0, 0, 0, 728, 7120, 1, 0, 0, 0, 730, 7122, 1, 0, 0, 0, 732, 7126, 1, 0, 0, 0, 734, 7151, 1, 0, 0, 0, 736, 7153, 1, 0, 0, 0, 738, 7156, 1, 0, 0, 0, 740, 7161, 1, 0, 0, 0, 742, 7177, 1, 0, 0, 0, 744, 7305, 1, 0, 0, 0, 746, 7307, 1, 0, 0, 0, 748, 7340, 1, 0, 0, 0, 750, 7345, 1, 0, 0, 0, 752, 7349, 1, 0, 0, 0, 754, 7355, 1, 0, 0, 0, 756, 7363, 1, 0, 0, 0, 758, 7374, 1, 0, 0, 0, 760, 7382, 1, 0, 0, 0, 762, 7391, 1, 0, 0, 0, 764, 7404, 1, 0, 0, 0, 766, 7406, 1, 0, 0, 0, 768, 7414, 1, 0, 0, 0, 770, 7422, 1, 0, 0, 0, 772, 7456, 1, 0, 0, 0, 774, 7472, 1, 0, 0, 0, 776, 7474, 1, 0, 0, 0, 778, 7477, 1, 0, 0, 0, 780, 7481, 1, 0, 0, 0, 782, 7506, 1, 0, 0, 0, 784, 7687, 1, 0, 0, 0, 786, 7689, 1, 0, 0, 0, 788, 7708, 1, 0, 0, 0, 790, 7710, 1, 0, 0, 0, 792, 7773, 1, 0, 0, 0, 794, 7813, 1, 0, 0, 0, 796, 7815, 1, 0, 0, 0, 798, 7824, 1, 0, 0, 0, 800, 7835, 1, 0, 0, 0, 802, 7837, 1, 0, 0, 0, 804, 7840, 1, 0, 0, 0, 806, 7844, 1, 0, 0, 0, 808, 7846, 1, 0, 0, 0, 810, 7858, 1, 0, 0, 0, 812, 7860, 1, 0, 0, 0, 814, 7894, 1, 0, 0, 0, 816, 7896, 1, 0, 0, 0, 818, 7901, 1, 0, 0, 0, 820, 7912, 1, 0, 0, 0, 822, 7925, 1, 0, 0, 0, 824, 7936, 1, 0, 0, 0, 826, 8053, 1, 0, 0, 0, 828, 8075, 1, 0, 0, 0, 830, 8085, 1, 0, 0, 0, 832, 8094, 1, 0, 0, 0, 834, 8103, 1, 0, 0, 0, 836, 8112, 1, 0, 0, 0, 838, 8114, 1, 0, 0, 0, 840, 8121, 1, 0, 0, 0, 842, 8123, 1, 0, 0, 0, 844, 8125, 1, 0, 0, 0, 846, 8127, 1, 0, 0, 0, 848, 8129, 1, 0, 0, 0, 850, 8131, 1, 0, 0, 0, 852, 8133, 1, 0, 0, 0, 854, 8135, 1, 0, 0, 0, 856, 858, 3, 2, 1, 0, 857, 856, 1, 0, 0, 0, 858, 861, 1, 0, 0, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 862, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 862, 863, 5, 0, 0, 1, 863, 1, 1, 0, 0, 0, 864, 866, 3, 4, 2, 0, 865, 867, 5, 869, 0, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 870, 1, 0, 0, 0, 868, 870, 3, 6, 3, 0, 869, 864, 1, 0, 0, 0, 869, 868, 1, 0, 0, 0, 870, 3, 1, 0, 0, 0, 871, 879, 3, 8, 4, 0, 872, 879, 3, 10, 5, 0, 873, 879, 3, 12, 6, 0, 874, 879, 3, 14, 7, 0, 875, 879, 3, 16, 8, 0, 876, 879, 3, 20, 10, 0, 877, 879, 3, 22, 11, 0, 878, 871, 1, 0, 0, 0, 878, 872, 1, 0, 0, 0, 878, 873, 1, 0, 0, 0, 878, 874, 1, 0, 0, 0, 878, 875, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 877, 1, 0, 0, 0, 879, 5, 1, 0, 0, 0, 880, 881, 5, 869, 0, 0, 881, 7, 1, 0, 0, 0, 882, 923, 3, 24, 12, 0, 883, 923, 3, 26, 13, 0, 884, 923, 3, 28, 14, 0, 885, 923, 3, 30, 15, 0, 886, 923, 3, 32, 16, 0, 887, 923, 3, 34, 17, 0, 888, 923, 3, 36, 18, 0, 889, 923, 3, 40, 20, 0, 890, 923, 3, 42, 21, 0, 891, 923, 3, 44, 22, 0, 892, 923, 3, 46, 23, 0, 893, 923, 3, 48, 24, 0, 894, 923, 3, 54, 27, 0, 895, 923, 3, 38, 19, 0, 896, 923, 3, 126, 63, 0, 897, 923, 3, 128, 64, 0, 898, 923, 3, 130, 65, 0, 899, 923, 3, 132, 66, 0, 900, 923, 3, 134, 67, 0, 901, 923, 3, 136, 68, 0, 902, 923, 3, 138, 69, 0, 903, 923, 3, 140, 70, 0, 904, 923, 3, 142, 71, 0, 905, 923, 3, 144, 72, 0, 906, 923, 3, 150, 75, 0, 907, 923, 3, 152, 76, 0, 908, 923, 3, 154, 77, 0, 909, 923, 3, 156, 78, 0, 910, 923, 3, 158, 79, 0, 911, 923, 3, 160, 80, 0, 912, 923, 3, 162, 81, 0, 913, 923, 3, 164, 82, 0, 914, 923, 3, 166, 83, 0, 915, 923, 3, 168, 84, 0, 916, 923, 3, 170, 85, 0, 917, 923, 3, 172, 86, 0, 918, 923, 3, 174, 87, 0, 919, 923, 3, 176, 88, 0, 920, 923, 3, 178, 89, 0, 921, 923, 3, 182, 91, 0, 922, 882, 1, 0, 0, 0, 922, 883, 1, 0, 0, 0, 922, 884, 1, 0, 0, 0, 922, 885, 1, 0, 0, 0, 922, 886, 1, 0, 0, 0, 922, 887, 1, 0, 0, 0, 922, 888, 1, 0, 0, 0, 922, 889, 1, 0, 0, 0, 922, 890, 1, 0, 0, 0, 922, 891, 1, 0, 0, 0, 922, 892, 1, 0, 0, 0, 922, 893, 1, 0, 0, 0, 922, 894, 1, 0, 0, 0, 922, 895, 1, 0, 0, 0, 922, 896, 1, 0, 0, 0, 922, 897, 1, 0, 0, 0, 922, 898, 1, 0, 0, 0, 922, 899, 1, 0, 0, 0, 922, 900, 1, 0, 0, 0, 922, 901, 1, 0, 0, 0, 922, 902, 1, 0, 0, 0, 922, 903, 1, 0, 0, 0, 922, 904, 1, 0, 0, 0, 922, 905, 1, 0, 0, 0, 922, 906, 1, 0, 0, 0, 922, 907, 1, 0, 0, 0, 922, 908, 1, 0, 0, 0, 922, 909, 1, 0, 0, 0, 922, 910, 1, 0, 0, 0, 922, 911, 1, 0, 0, 0, 922, 912, 1, 0, 0, 0, 922, 913, 1, 0, 0, 0, 922, 914, 1, 0, 0, 0, 922, 915, 1, 0, 0, 0, 922, 916, 1, 0, 0, 0, 922, 917, 1, 0, 0, 0, 922, 918, 1, 0, 0, 0, 922, 919, 1, 0, 0, 0, 922, 920, 1, 0, 0, 0, 922, 921, 1, 0, 0, 0, 923, 9, 1, 0, 0, 0, 924, 942, 3, 210, 105, 0, 925, 942, 3, 212, 106, 0, 926, 942, 3, 192, 96, 0, 927, 942, 3, 220, 110, 0, 928, 942, 3, 186, 93, 0, 929, 942, 3, 208, 104, 0, 930, 942, 3, 184, 92, 0, 931, 942, 3, 198, 99, 0, 932, 942, 3, 202, 101, 0, 933, 942, 3, 204, 102, 0, 934, 942, 3, 206, 103, 0, 935, 942, 3, 188, 94, 0, 936, 942, 3, 190, 95, 0, 937, 942, 3, 252, 126, 0, 938, 942, 3, 222, 111, 0, 939, 942, 3, 626, 313, 0, 940, 942, 3, 628, 314, 0, 941, 924, 1, 0, 0, 0, 941, 925, 1, 0, 0, 0, 941, 926, 1, 0, 0, 0, 941, 927, 1, 0, 0, 0, 941, 928, 1, 0, 0, 0, 941, 929, 1, 0, 0, 0, 941, 930, 1, 0, 0, 0, 941, 931, 1, 0, 0, 0, 941, 932, 1, 0, 0, 0, 941, 933, 1, 0, 0, 0, 941, 934, 1, 0, 0, 0, 941, 935, 1, 0, 0, 0, 941, 936, 1, 0, 0, 0, 941, 937, 1, 0, 0, 0, 941, 938, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 941, 940, 1, 0, 0, 0, 942, 11, 1, 0, 0, 0, 943, 953, 3, 332, 166, 0, 944, 953, 3, 334, 167, 0, 945, 953, 3, 336, 168, 0, 946, 953, 3, 338, 169, 0, 947, 953, 3, 340, 170, 0, 948, 953, 3, 342, 171, 0, 949, 953, 3, 344, 172, 0, 950, 953, 3, 346, 173, 0, 951, 953, 3, 348, 174, 0, 952, 943, 1, 0, 0, 0, 952, 944, 1, 0, 0, 0, 952, 945, 1, 0, 0, 0, 952, 946, 1, 0, 0, 0, 952, 947, 1, 0, 0, 0, 952, 948, 1, 0, 0, 0, 952, 949, 1, 0, 0, 0, 952, 950, 1, 0, 0, 0, 952, 951, 1, 0, 0, 0, 953, 13, 1, 0, 0, 0, 954, 969, 3, 364, 182, 0, 955, 969, 3, 366, 183, 0, 956, 969, 3, 368, 184, 0, 957, 969, 3, 370, 185, 0, 958, 969, 3, 372, 186, 0, 959, 969, 3, 374, 187, 0, 960, 969, 3, 376, 188, 0, 961, 969, 3, 378, 189, 0, 962, 969, 3, 414, 207, 0, 963, 969, 3, 416, 208, 0, 964, 969, 3, 418, 209, 0, 965, 969, 3, 420, 210, 0, 966, 969, 3, 422, 211, 0, 967, 969, 3, 424, 212, 0, 968, 954, 1, 0, 0, 0, 968, 955, 1, 0, 0, 0, 968, 956, 1, 0, 0, 0, 968, 957, 1, 0, 0, 0, 968, 958, 1, 0, 0, 0, 968, 959, 1, 0, 0, 0, 968, 960, 1, 0, 0, 0, 968, 961, 1, 0, 0, 0, 968, 962, 1, 0, 0, 0, 968, 963, 1, 0, 0, 0, 968, 964, 1, 0, 0, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 15, 1, 0, 0, 0, 970, 974, 3, 426, 213, 0, 971, 974, 3, 428, 214, 0, 972, 974, 3, 430, 215, 0, 973, 970, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 973, 972, 1, 0, 0, 0, 974, 17, 1, 0, 0, 0, 975, 986, 3, 434, 217, 0, 976, 986, 3, 436, 218, 0, 977, 986, 3, 438, 219, 0, 978, 986, 3, 442, 221, 0, 979, 986, 3, 444, 222, 0, 980, 986, 3, 446, 223, 0, 981, 986, 3, 450, 225, 0, 982, 986, 3, 440, 220, 0, 983, 986, 3, 448, 224, 0, 984, 986, 3, 452, 226, 0, 985, 975, 1, 0, 0, 0, 985, 976, 1, 0, 0, 0, 985, 977, 1, 0, 0, 0, 985, 978, 1, 0, 0, 0, 985, 979, 1, 0, 0, 0, 985, 980, 1, 0, 0, 0, 985, 981, 1, 0, 0, 0, 985, 982, 1, 0, 0, 0, 985, 983, 1, 0, 0, 0, 985, 984, 1, 0, 0, 0, 986, 19, 1, 0, 0, 0, 987, 1021, 3, 470, 235, 0, 988, 1021, 3, 472, 236, 0, 989, 1021, 3, 474, 237, 0, 990, 1021, 3, 476, 238, 0, 991, 1021, 3, 480, 240, 0, 992, 1021, 3, 492, 246, 0, 993, 1021, 3, 494, 247, 0, 994, 1021, 3, 482, 241, 0, 995, 1021, 3, 484, 242, 0, 996, 1021, 3, 486, 243, 0, 997, 1021, 3, 488, 244, 0, 998, 1021, 3, 538, 269, 0, 999, 1021, 3, 540, 270, 0, 1000, 1021, 3, 542, 271, 0, 1001, 1021, 3, 544, 272, 0, 1002, 1021, 3, 546, 273, 0, 1003, 1021, 3, 552, 276, 0, 1004, 1021, 3, 556, 278, 0, 1005, 1021, 3, 558, 279, 0, 1006, 1021, 3, 560, 280, 0, 1007, 1021, 3, 562, 281, 0, 1008, 1021, 3, 564, 282, 0, 1009, 1021, 3, 566, 283, 0, 1010, 1021, 3, 580, 290, 0, 1011, 1021, 3, 582, 291, 0, 1012, 1021, 3, 584, 292, 0, 1013, 1021, 3, 586, 293, 0, 1014, 1021, 3, 588, 294, 0, 1015, 1021, 3, 590, 295, 0, 1016, 1021, 3, 594, 297, 0, 1017, 1021, 3, 596, 298, 0, 1018, 1021, 3, 598, 299, 0, 1019, 1021, 3, 600, 300, 0, 1020, 987, 1, 0, 0, 0, 1020, 988, 1, 0, 0, 0, 1020, 989, 1, 0, 0, 0, 1020, 990, 1, 0, 0, 0, 1020, 991, 1, 0, 0, 0, 1020, 992, 1, 0, 0, 0, 1020, 993, 1, 0, 0, 0, 1020, 994, 1, 0, 0, 0, 1020, 995, 1, 0, 0, 0, 1020, 996, 1, 0, 0, 0, 1020, 997, 1, 0, 0, 0, 1020, 998, 1, 0, 0, 0, 1020, 999, 1, 0, 0, 0, 1020, 1000, 1, 0, 0, 0, 1020, 1001, 1, 0, 0, 0, 1020, 1002, 1, 0, 0, 0, 1020, 1003, 1, 0, 0, 0, 1020, 1004, 1, 0, 0, 0, 1020, 1005, 1, 0, 0, 0, 1020, 1006, 1, 0, 0, 0, 1020, 1007, 1, 0, 0, 0, 1020, 1008, 1, 0, 0, 0, 1020, 1009, 1, 0, 0, 0, 1020, 1010, 1, 0, 0, 0, 1020, 1011, 1, 0, 0, 0, 1020, 1012, 1, 0, 0, 0, 1020, 1013, 1, 0, 0, 0, 1020, 1014, 1, 0, 0, 0, 1020, 1015, 1, 0, 0, 0, 1020, 1016, 1, 0, 0, 0, 1020, 1017, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1019, 1, 0, 0, 0, 1021, 21, 1, 0, 0, 0, 1022, 1031, 3, 612, 306, 0, 1023, 1031, 3, 610, 305, 0, 1024, 1031, 3, 614, 307, 0, 1025, 1031, 3, 616, 308, 0, 1026, 1031, 3, 618, 309, 0, 1027, 1031, 3, 620, 310, 0, 1028, 1031, 3, 622, 311, 0, 1029, 1031, 3, 630, 315, 0, 1030, 1022, 1, 0, 0, 0, 1030, 1023, 1, 0, 0, 0, 1030, 1024, 1, 0, 0, 0, 1030, 1025, 1, 0, 0, 0, 1030, 1026, 1, 0, 0, 0, 1030, 1027, 1, 0, 0, 0, 1030, 1028, 1, 0, 0, 0, 1030, 1029, 1, 0, 0, 0, 1031, 23, 1, 0, 0, 0, 1032, 1033, 5, 34, 0, 0, 1033, 1035, 7, 0, 0, 0, 1034, 1036, 3, 778, 389, 0, 1035, 1034, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1041, 3, 636, 318, 0, 1038, 1040, 3, 56, 28, 0, 1039, 1038, 1, 0, 0, 0, 1040, 1043, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 25, 1, 0, 0, 0, 1043, 1041, 1, 0, 0, 0, 1044, 1046, 5, 34, 0, 0, 1045, 1047, 3, 62, 31, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 5, 385, 0, 0, 1049, 1051, 3, 778, 389, 0, 1050, 1049, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 3, 718, 359, 0, 1053, 1054, 5, 119, 0, 0, 1054, 1055, 5, 590, 0, 0, 1055, 1062, 3, 64, 32, 0, 1056, 1057, 5, 119, 0, 0, 1057, 1059, 5, 343, 0, 0, 1058, 1060, 5, 114, 0, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 5, 541, 0, 0, 1062, 1056, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 1066, 3, 72, 36, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1068, 5, 340, 0, 0, 1068, 1070, 5, 882, 0, 0, 1069, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 5, 371, 0, 0, 1072, 1073, 3, 432, 216, 0, 1073, 27, 1, 0, 0, 0, 1074, 1076, 5, 34, 0, 0, 1075, 1077, 7, 1, 0, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1079, 1, 0, 0, 0, 1078, 1080, 7, 2, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 5, 82, 0, 0, 1082, 1084, 3, 648, 324, 0, 1083, 1085, 3, 74, 37, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 5, 119, 0, 0, 1087, 1088, 3, 662, 331, 0, 1088, 1092, 3, 756, 378, 0, 1089, 1091, 3, 76, 38, 0, 1090, 1089, 1, 0, 0, 0, 1091, 1094, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1107, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1095, 1097, 5, 308, 0, 0, 1096, 1098, 5, 857, 0, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1106, 7, 3, 0, 0, 1100, 1102, 5, 104, 0, 0, 1101, 1103, 5, 857, 0, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 7, 4, 0, 0, 1105, 1095, 1, 0, 0, 0, 1105, 1100, 1, 0, 0, 0, 1106, 1109, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 29, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1110, 1111, 5, 34, 0, 0, 1111, 1112, 5, 451, 0, 0, 1112, 1113, 5, 74, 0, 0, 1113, 1114, 3, 722, 361, 0, 1114, 1115, 5, 6, 0, 0, 1115, 1116, 5, 671, 0, 0, 1116, 1122, 5, 882, 0, 0, 1117, 1119, 5, 428, 0, 0, 1118, 1120, 5, 857, 0, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 3, 732, 366, 0, 1122, 1117, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1129, 1, 0, 0, 0, 1124, 1126, 5, 672, 0, 0, 1125, 1127, 5, 857, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 3, 732, 366, 0, 1129, 1124, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1136, 1, 0, 0, 0, 1131, 1133, 5, 553, 0, 0, 1132, 1134, 5, 857, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1137, 3, 732, 366, 0, 1136, 1131, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1143, 1, 0, 0, 0, 1138, 1140, 5, 504, 0, 0, 1139, 1141, 5, 857, 0, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 3, 722, 361, 0, 1143, 1138, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 1, 0, 0, 0, 1145, 1147, 5, 687, 0, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1153, 1, 0, 0, 0, 1148, 1150, 5, 340, 0, 0, 1149, 1151, 5, 857, 0, 0, 1150, 1149, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1154, 5, 882, 0, 0, 1153, 1148, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1157, 5, 380, 0, 0, 1156, 1158, 5, 857, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 3, 708, 354, 0, 1160, 31, 1, 0, 0, 0, 1161, 1163, 5, 34, 0, 0, 1162, 1164, 3, 62, 31, 0, 1163, 1162, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1167, 5, 132, 0, 0, 1166, 1168, 3, 778, 389, 0, 1167, 1166, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 3, 718, 359, 0, 1170, 1172, 5, 866, 0, 0, 1171, 1173, 3, 78, 39, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1178, 1, 0, 0, 0, 1174, 1175, 5, 868, 0, 0, 1175, 1177, 3, 78, 39, 0, 1176, 1174, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1185, 5, 867, 0, 0, 1182, 1184, 3, 82, 41, 0, 1183, 1182, 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1183, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1188, 1189, 3, 432, 216, 0, 1189, 33, 1, 0, 0, 0, 1190, 1192, 5, 34, 0, 0, 1191, 1193, 3, 62, 31, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1196, 5, 307, 0, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1199, 5, 409, 0, 0, 1198, 1200, 3, 778, 389, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 3, 640, 320, 0, 1202, 1204, 5, 866, 0, 0, 1203, 1205, 3, 80, 40, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1210, 1, 0, 0, 0, 1206, 1207, 5, 868, 0, 0, 1207, 1209, 3, 80, 40, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1214, 5, 867, 0, 0, 1214, 1215, 5, 580, 0, 0, 1215, 1219, 3, 744, 372, 0, 1216, 1218, 3, 82, 41, 0, 1217, 1216, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1224, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1225, 3, 432, 216, 0, 1223, 1225, 3, 448, 224, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1223, 1, 0, 0, 0, 1225, 35, 1, 0, 0, 0, 1226, 1228, 5, 34, 0, 0, 1227, 1229, 5, 307, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1232, 5, 409, 0, 0, 1231, 1233, 3, 778, 389, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 3, 640, 320, 0, 1235, 1236, 5, 580, 0, 0, 1236, 1237, 7, 5, 0, 0, 1237, 1238, 5, 603, 0, 0, 1238, 1239, 5, 882, 0, 0, 1239, 37, 1, 0, 0, 0, 1240, 1241, 5, 34, 0, 0, 1241, 1243, 5, 582, 0, 0, 1242, 1244, 3, 778, 389, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1246, 3, 664, 332, 0, 1246, 39, 1, 0, 0, 0, 1247, 1248, 5, 34, 0, 0, 1248, 1249, 5, 592, 0, 0, 1249, 1250, 3, 722, 361, 0, 1250, 1251, 5, 67, 0, 0, 1251, 1252, 5, 360, 0, 0, 1252, 1253, 5, 692, 0, 0, 1253, 1254, 7, 6, 0, 0, 1254, 1255, 5, 518, 0, 0, 1255, 1256, 5, 866, 0, 0, 1256, 1261, 3, 84, 42, 0, 1257, 1258, 5, 868, 0, 0, 1258, 1260, 3, 84, 42, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1264, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1264, 1265, 5, 867, 0, 0, 1265, 41, 1, 0, 0, 0, 1266, 1268, 5, 34, 0, 0, 1267, 1269, 5, 660, 0, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1272, 5, 173, 0, 0, 1271, 1273, 3, 778, 389, 0, 1272, 1271, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 3, 658, 329, 0, 1275, 1277, 3, 86, 43, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1288, 1, 0, 0, 0, 1278, 1285, 3, 104, 52, 0, 1279, 1281, 5, 868, 0, 0, 1280, 1279, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 3, 104, 52, 0, 1283, 1280, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1288, 1278, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1291, 1, 0, 0, 0, 1290, 1292, 3, 110, 55, 0, 1291, 1290, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1294, 1, 0, 0, 0, 1293, 1295, 7, 7, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1298, 5, 13, 0, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 3, 210, 105, 0, 1300, 1345, 1, 0, 0, 0, 1301, 1303, 5, 34, 0, 0, 1302, 1304, 5, 660, 0, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1307, 5, 173, 0, 0, 1306, 1308, 3, 778, 389, 0, 1307, 1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1317, 3, 658, 329, 0, 1310, 1311, 5, 99, 0, 0, 1311, 1318, 3, 662, 331, 0, 1312, 1313, 5, 866, 0, 0, 1313, 1314, 5, 99, 0, 0, 1314, 1315, 3, 662, 331, 0, 1315, 1316, 5, 867, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1310, 1, 0, 0, 0, 1317, 1312, 1, 0, 0, 0, 1318, 1345, 1, 0, 0, 0, 1319, 1321, 5, 34, 0, 0, 1320, 1322, 5, 660, 0, 0, 1321, 1320, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1325, 5, 173, 0, 0, 1324, 1326, 3, 778, 389, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 3, 658, 329, 0, 1328, 1339, 3, 86, 43, 0, 1329, 1336, 3, 104, 52, 0, 1330, 1332, 5, 868, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1335, 3, 104, 52, 0, 1334, 1331, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1329, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1343, 3, 110, 55, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1266, 1, 0, 0, 0, 1344, 1301, 1, 0, 0, 0, 1344, 1319, 1, 0, 0, 0, 1345, 43, 1, 0, 0, 0, 1346, 1348, 5, 34, 0, 0, 1347, 1349, 5, 180, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1351, 5, 658, 0, 0, 1351, 1355, 3, 680, 340, 0, 1352, 1353, 5, 6, 0, 0, 1353, 1354, 5, 361, 0, 0, 1354, 1356, 5, 882, 0, 0, 1355, 1352, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1362, 1, 0, 0, 0, 1357, 1359, 5, 314, 0, 0, 1358, 1360, 5, 857, 0, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1363, 3, 732, 366, 0, 1362, 1357, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1367, 1, 0, 0, 0, 1364, 1365, 5, 399, 0, 0, 1365, 1366, 5, 857, 0, 0, 1366, 1368, 3, 732, 366, 0, 1367, 1364, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1374, 1, 0, 0, 0, 1369, 1371, 5, 380, 0, 0, 1370, 1372, 5, 857, 0, 0, 1371, 1370, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1375, 3, 708, 354, 0, 1374, 1369, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1381, 1, 0, 0, 0, 1376, 1378, 5, 825, 0, 0, 1377, 1379, 5, 857, 0, 0, 1378, 1377, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 5, 882, 0, 0, 1381, 1376, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 45, 1, 0, 0, 0, 1383, 1385, 5, 34, 0, 0, 1384, 1386, 5, 180, 0, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 5, 658, 0, 0, 1388, 1389, 3, 680, 340, 0, 1389, 1390, 5, 6, 0, 0, 1390, 1391, 5, 361, 0, 0, 1391, 1392, 5, 882, 0, 0, 1392, 1393, 5, 187, 0, 0, 1393, 1394, 5, 451, 0, 0, 1394, 1395, 5, 74, 0, 0, 1395, 1401, 3, 722, 361, 0, 1396, 1398, 5, 393, 0, 0, 1397, 1399, 5, 857, 0, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1402, 3, 732, 366, 0, 1401, 1396, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1408, 1, 0, 0, 0, 1403, 1405, 5, 428, 0, 0, 1404, 1406, 5, 857, 0, 0, 1405, 1404, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1409, 3, 732, 366, 0, 1408, 1403, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1415, 1, 0, 0, 0, 1410, 1412, 5, 314, 0, 0, 1411, 1413, 5, 857, 0, 0, 1412, 1411, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 3, 732, 366, 0, 1415, 1410, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1422, 1, 0, 0, 0, 1417, 1419, 5, 481, 0, 0, 1418, 1420, 5, 857, 0, 0, 1419, 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1423, 3, 732, 366, 0, 1422, 1417, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1429, 1, 0, 0, 0, 1424, 1426, 5, 504, 0, 0, 1425, 1427, 5, 857, 0, 0, 1426, 1425, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 3, 722, 361, 0, 1429, 1424, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1433, 5, 687, 0, 0, 1432, 1431, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1439, 1, 0, 0, 0, 1434, 1436, 5, 340, 0, 0, 1435, 1437, 5, 857, 0, 0, 1436, 1435, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 5, 882, 0, 0, 1439, 1434, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1443, 5, 380, 0, 0, 1442, 1444, 5, 857, 0, 0, 1443, 1442, 1, 0, 0, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 3, 708, 354, 0, 1446, 47, 1, 0, 0, 0, 1447, 1449, 5, 34, 0, 0, 1448, 1450, 3, 62, 31, 0, 1449, 1448, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1452, 1, 0, 0, 0, 1451, 1453, 3, 778, 389, 0, 1452, 1451, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1456, 5, 178, 0, 0, 1455, 1457, 3, 778, 389, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 3, 718, 359, 0, 1459, 1460, 7, 8, 0, 0, 1460, 1461, 7, 9, 0, 0, 1461, 1462, 5, 119, 0, 0, 1462, 1463, 3, 662, 331, 0, 1463, 1464, 5, 65, 0, 0, 1464, 1465, 5, 52, 0, 0, 1465, 1468, 5, 586, 0, 0, 1466, 1467, 7, 10, 0, 0, 1467, 1469, 3, 718, 359, 0, 1468, 1466, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 3, 432, 216, 0, 1471, 49, 1, 0, 0, 0, 1472, 1474, 5, 194, 0, 0, 1473, 1475, 5, 552, 0, 0, 1474, 1473, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1477, 3, 52, 26, 0, 1477, 51, 1, 0, 0, 0, 1478, 1490, 3, 722, 361, 0, 1479, 1480, 5, 866, 0, 0, 1480, 1485, 3, 722, 361, 0, 1481, 1482, 5, 868, 0, 0, 1482, 1484, 3, 722, 361, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1489, 5, 867, 0, 0, 1489, 1491, 1, 0, 0, 0, 1490, 1479, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 5, 13, 0, 0, 1493, 1494, 5, 866, 0, 0, 1494, 1495, 3, 10, 5, 0, 1495, 1498, 5, 867, 0, 0, 1496, 1497, 5, 868, 0, 0, 1497, 1499, 3, 52, 26, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 53, 1, 0, 0, 0, 1500, 1502, 5, 34, 0, 0, 1501, 1503, 3, 780, 390, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1507, 1, 0, 0, 0, 1504, 1505, 5, 308, 0, 0, 1505, 1506, 5, 857, 0, 0, 1506, 1508, 7, 11, 0, 0, 1507, 1504, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1511, 3, 62, 31, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1515, 1, 0, 0, 0, 1512, 1513, 5, 162, 0, 0, 1513, 1514, 5, 591, 0, 0, 1514, 1516, 7, 12, 0, 0, 1515, 1512, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 5, 684, 0, 0, 1518, 1530, 3, 644, 322, 0, 1519, 1520, 5, 866, 0, 0, 1520, 1525, 3, 668, 334, 0, 1521, 1522, 5, 868, 0, 0, 1522, 1524, 3, 668, 334, 0, 1523, 1521, 1, 0, 0, 0, 1524, 1527, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1528, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1528, 1529, 5, 867, 0, 0, 1529, 1531, 1, 0, 0, 0, 1530, 1519, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1552, 5, 13, 0, 0, 1533, 1535, 5, 866, 0, 0, 1534, 1536, 3, 50, 25, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1538, 3, 210, 105, 0, 1538, 1539, 5, 867, 0, 0, 1539, 1553, 1, 0, 0, 0, 1540, 1542, 3, 50, 25, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1550, 3, 210, 105, 0, 1544, 1546, 5, 194, 0, 0, 1545, 1547, 7, 13, 0, 0, 1546, 1545, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 5, 27, 0, 0, 1549, 1551, 5, 121, 0, 0, 1550, 1544, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 1, 0, 0, 0, 1552, 1533, 1, 0, 0, 0, 1552, 1541, 1, 0, 0, 0, 1553, 55, 1, 0, 0, 0, 1554, 1556, 5, 42, 0, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1559, 3, 58, 29, 0, 1558, 1560, 5, 857, 0, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1563, 1, 0, 0, 0, 1561, 1564, 3, 704, 352, 0, 1562, 1564, 5, 42, 0, 0, 1563, 1561, 1, 0, 0, 0, 1563, 1562, 1, 0, 0, 0, 1564, 1588, 1, 0, 0, 0, 1565, 1567, 5, 42, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 5, 28, 0, 0, 1569, 1571, 5, 857, 0, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1588, 3, 706, 353, 0, 1573, 1575, 5, 42, 0, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 5, 376, 0, 0, 1577, 1579, 5, 857, 0, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1588, 5, 882, 0, 0, 1581, 1582, 5, 135, 0, 0, 1582, 1584, 5, 515, 0, 0, 1583, 1585, 5, 857, 0, 0, 1584, 1583, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1588, 7, 14, 0, 0, 1587, 1555, 1, 0, 0, 0, 1587, 1566, 1, 0, 0, 0, 1587, 1574, 1, 0, 0, 0, 1587, 1581, 1, 0, 0, 0, 1588, 57, 1, 0, 0, 0, 1589, 1590, 5, 26, 0, 0, 1590, 1595, 5, 155, 0, 0, 1591, 1595, 5, 823, 0, 0, 1592, 1593, 5, 224, 0, 0, 1593, 1595, 5, 155, 0, 0, 1594, 1589, 1, 0, 0, 0, 1594, 1591, 1, 0, 0, 0, 1594, 1592, 1, 0, 0, 0, 1595, 59, 1, 0, 0, 0, 1596, 1599, 7, 15, 0, 0, 1597, 1598, 5, 866, 0, 0, 1598, 1600, 5, 867, 0, 0, 1599, 1597, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 61, 1, 0, 0, 0, 1601, 1602, 5, 364, 0, 0, 1602, 1605, 5, 857, 0, 0, 1603, 1606, 3, 700, 350, 0, 1604, 1606, 3, 60, 30, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 63, 1, 0, 0, 0, 1607, 1608, 5, 311, 0, 0, 1608, 1612, 3, 66, 33, 0, 1609, 1611, 3, 68, 34, 0, 1610, 1609, 1, 0, 0, 0, 1611, 1614, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1642, 1, 0, 0, 0, 1614, 1612, 1, 0, 0, 0, 1615, 1618, 5, 387, 0, 0, 1616, 1619, 3, 730, 365, 0, 1617, 1619, 3, 822, 411, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1617, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1629, 3, 70, 35, 0, 1621, 1622, 5, 641, 0, 0, 1622, 1626, 3, 66, 33, 0, 1623, 1625, 3, 68, 34, 0, 1624, 1623, 1, 0, 0, 0, 1625, 1628, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1621, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1639, 1, 0, 0, 0, 1631, 1632, 5, 379, 0, 0, 1632, 1636, 3, 66, 33, 0, 1633, 1635, 3, 68, 34, 0, 1634, 1633, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1640, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1631, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1642, 1, 0, 0, 0, 1641, 1607, 1, 0, 0, 0, 1641, 1615, 1, 0, 0, 0, 1642, 65, 1, 0, 0, 0, 1643, 1648, 5, 287, 0, 0, 1644, 1648, 3, 734, 367, 0, 1645, 1648, 3, 730, 365, 0, 1646, 1648, 3, 822, 411, 0, 1647, 1643, 1, 0, 0, 0, 1647, 1644, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1646, 1, 0, 0, 0, 1648, 67, 1, 0, 0, 0, 1649, 1650, 5, 853, 0, 0, 1650, 1653, 5, 87, 0, 0, 1651, 1654, 3, 730, 365, 0, 1652, 1654, 3, 822, 411, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 3, 70, 35, 0, 1656, 69, 1, 0, 0, 0, 1657, 1671, 3, 848, 424, 0, 1658, 1671, 5, 223, 0, 0, 1659, 1671, 5, 242, 0, 0, 1660, 1671, 5, 243, 0, 0, 1661, 1671, 5, 244, 0, 0, 1662, 1671, 5, 245, 0, 0, 1663, 1671, 5, 246, 0, 0, 1664, 1671, 5, 247, 0, 0, 1665, 1671, 5, 248, 0, 0, 1666, 1671, 5, 249, 0, 0, 1667, 1671, 5, 250, 0, 0, 1668, 1671, 5, 251, 0, 0, 1669, 1671, 5, 252, 0, 0, 1670, 1657, 1, 0, 0, 0, 1670, 1658, 1, 0, 0, 0, 1670, 1659, 1, 0, 0, 0, 1670, 1660, 1, 0, 0, 0, 1670, 1661, 1, 0, 0, 0, 1670, 1662, 1, 0, 0, 0, 1670, 1663, 1, 0, 0, 0, 1670, 1664, 1, 0, 0, 0, 1670, 1665, 1, 0, 0, 0, 1670, 1666, 1, 0, 0, 0, 1670, 1667, 1, 0, 0, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1669, 1, 0, 0, 0, 1671, 71, 1, 0, 0, 0, 1672, 1678, 5, 375, 0, 0, 1673, 1678, 5, 368, 0, 0, 1674, 1675, 5, 368, 0, 0, 1675, 1676, 5, 119, 0, 0, 1676, 1678, 5, 598, 0, 0, 1677, 1672, 1, 0, 0, 0, 1677, 1673, 1, 0, 0, 0, 1677, 1674, 1, 0, 0, 0, 1678, 73, 1, 0, 0, 0, 1679, 1680, 5, 188, 0, 0, 1680, 1681, 7, 16, 0, 0, 1681, 75, 1, 0, 0, 0, 1682, 1684, 5, 443, 0, 0, 1683, 1685, 5, 857, 0, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1705, 3, 732, 366, 0, 1687, 1705, 3, 74, 37, 0, 1688, 1689, 5, 194, 0, 0, 1689, 1690, 5, 525, 0, 0, 1690, 1705, 3, 722, 361, 0, 1691, 1692, 5, 340, 0, 0, 1692, 1705, 5, 882, 0, 0, 1693, 1705, 7, 17, 0, 0, 1694, 1696, 5, 825, 0, 0, 1695, 1697, 5, 857, 0, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1705, 5, 882, 0, 0, 1699, 1701, 5, 833, 0, 0, 1700, 1702, 5, 857, 0, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1705, 5, 882, 0, 0, 1704, 1682, 1, 0, 0, 0, 1704, 1687, 1, 0, 0, 0, 1704, 1688, 1, 0, 0, 0, 1704, 1691, 1, 0, 0, 0, 1704, 1693, 1, 0, 0, 0, 1704, 1694, 1, 0, 0, 0, 1704, 1699, 1, 0, 0, 0, 1705, 77, 1, 0, 0, 0, 1706, 1708, 7, 18, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 3, 722, 361, 0, 1710, 1711, 3, 744, 372, 0, 1711, 79, 1, 0, 0, 0, 1712, 1713, 3, 722, 361, 0, 1713, 1714, 3, 744, 372, 0, 1714, 81, 1, 0, 0, 0, 1715, 1716, 5, 340, 0, 0, 1716, 1739, 5, 882, 0, 0, 1717, 1718, 5, 444, 0, 0, 1718, 1739, 5, 162, 0, 0, 1719, 1721, 5, 114, 0, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1739, 5, 47, 0, 0, 1723, 1724, 5, 354, 0, 0, 1724, 1734, 5, 162, 0, 0, 1725, 1726, 5, 502, 0, 0, 1726, 1734, 5, 162, 0, 0, 1727, 1728, 5, 136, 0, 0, 1728, 1729, 5, 162, 0, 0, 1729, 1734, 5, 360, 0, 0, 1730, 1731, 5, 112, 0, 0, 1731, 1732, 5, 162, 0, 0, 1732, 1734, 5, 360, 0, 0, 1733, 1723, 1, 0, 0, 0, 1733, 1725, 1, 0, 0, 0, 1733, 1727, 1, 0, 0, 0, 1733, 1730, 1, 0, 0, 0, 1734, 1739, 1, 0, 0, 0, 1735, 1736, 5, 162, 0, 0, 1736, 1737, 5, 591, 0, 0, 1737, 1739, 7, 12, 0, 0, 1738, 1715, 1, 0, 0, 0, 1738, 1717, 1, 0, 0, 0, 1738, 1720, 1, 0, 0, 0, 1738, 1733, 1, 0, 0, 0, 1738, 1735, 1, 0, 0, 0, 1739, 83, 1, 0, 0, 0, 1740, 1741, 5, 421, 0, 0, 1741, 1755, 5, 882, 0, 0, 1742, 1743, 5, 39, 0, 0, 1743, 1755, 5, 882, 0, 0, 1744, 1745, 5, 678, 0, 0, 1745, 1755, 5, 882, 0, 0, 1746, 1747, 5, 529, 0, 0, 1747, 1755, 5, 882, 0, 0, 1748, 1749, 5, 601, 0, 0, 1749, 1755, 5, 882, 0, 0, 1750, 1751, 5, 519, 0, 0, 1751, 1755, 5, 882, 0, 0, 1752, 1753, 5, 537, 0, 0, 1753, 1755, 3, 730, 365, 0, 1754, 1740, 1, 0, 0, 0, 1754, 1742, 1, 0, 0, 0, 1754, 1744, 1, 0, 0, 0, 1754, 1746, 1, 0, 0, 0, 1754, 1748, 1, 0, 0, 0, 1754, 1750, 1, 0, 0, 0, 1754, 1752, 1, 0, 0, 0, 1755, 85, 1, 0, 0, 0, 1756, 1757, 5, 866, 0, 0, 1757, 1762, 3, 88, 44, 0, 1758, 1759, 5, 868, 0, 0, 1759, 1761, 3, 88, 44, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 867, 0, 0, 1766, 87, 1, 0, 0, 0, 1767, 1768, 3, 668, 334, 0, 1768, 1769, 3, 94, 47, 0, 1769, 1851, 1, 0, 0, 0, 1770, 1772, 7, 19, 0, 0, 1771, 1773, 3, 652, 326, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1776, 3, 74, 37, 0, 1775, 1774, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1781, 3, 756, 378, 0, 1778, 1780, 3, 76, 38, 0, 1779, 1778, 1, 0, 0, 0, 1780, 1783, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1851, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1784, 1786, 7, 20, 0, 0, 1785, 1787, 7, 19, 0, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 652, 326, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1795, 3, 756, 378, 0, 1792, 1794, 3, 76, 38, 0, 1793, 1792, 1, 0, 0, 0, 1794, 1797, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1851, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1798, 1800, 3, 92, 46, 0, 1799, 1798, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 5, 131, 0, 0, 1802, 1804, 5, 92, 0, 0, 1803, 1805, 3, 74, 37, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1810, 3, 756, 378, 0, 1807, 1809, 3, 76, 38, 0, 1808, 1807, 1, 0, 0, 0, 1809, 1812, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1851, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1815, 3, 92, 46, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 5, 182, 0, 0, 1817, 1819, 7, 19, 0, 0, 1818, 1817, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1821, 1, 0, 0, 0, 1820, 1822, 3, 652, 326, 0, 1821, 1820, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1824, 1, 0, 0, 0, 1823, 1825, 3, 74, 37, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1830, 3, 756, 378, 0, 1827, 1829, 3, 76, 38, 0, 1828, 1827, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1851, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1835, 3, 92, 46, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 5, 67, 0, 0, 1837, 1839, 5, 92, 0, 0, 1838, 1840, 3, 652, 326, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 3, 756, 378, 0, 1842, 1843, 3, 98, 49, 0, 1843, 1851, 1, 0, 0, 0, 1844, 1845, 5, 27, 0, 0, 1845, 1846, 5, 866, 0, 0, 1846, 1847, 3, 822, 411, 0, 1847, 1848, 5, 867, 0, 0, 1848, 1851, 1, 0, 0, 0, 1849, 1851, 3, 90, 45, 0, 1850, 1767, 1, 0, 0, 0, 1850, 1770, 1, 0, 0, 0, 1850, 1784, 1, 0, 0, 0, 1850, 1799, 1, 0, 0, 0, 1850, 1814, 1, 0, 0, 0, 1850, 1834, 1, 0, 0, 0, 1850, 1844, 1, 0, 0, 0, 1850, 1849, 1, 0, 0, 0, 1851, 89, 1, 0, 0, 0, 1852, 1854, 3, 92, 46, 0, 1853, 1852, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 5, 27, 0, 0, 1856, 1857, 5, 866, 0, 0, 1857, 1858, 3, 822, 411, 0, 1858, 1863, 5, 867, 0, 0, 1859, 1861, 5, 114, 0, 0, 1860, 1859, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1864, 5, 57, 0, 0, 1863, 1860, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 91, 1, 0, 0, 0, 1865, 1867, 5, 31, 0, 0, 1866, 1868, 3, 722, 361, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 93, 1, 0, 0, 0, 1869, 1873, 3, 744, 372, 0, 1870, 1872, 3, 96, 48, 0, 1871, 1870, 1, 0, 0, 0, 1872, 1875, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 95, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1920, 3, 740, 370, 0, 1877, 1878, 5, 42, 0, 0, 1878, 1920, 3, 772, 386, 0, 1879, 1920, 5, 686, 0, 0, 1880, 1920, 5, 435, 0, 0, 1881, 1886, 5, 315, 0, 0, 1882, 1883, 5, 119, 0, 0, 1883, 1884, 5, 185, 0, 0, 1884, 1886, 3, 774, 387, 0, 1885, 1881, 1, 0, 0, 0, 1885, 1882, 1, 0, 0, 0, 1886, 1920, 1, 0, 0, 0, 1887, 1889, 5, 131, 0, 0, 1888, 1887, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1920, 5, 92, 0, 0, 1891, 1893, 5, 182, 0, 0, 1892, 1894, 5, 92, 0, 0, 1893, 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1920, 1, 0, 0, 0, 1895, 1896, 5, 340, 0, 0, 1896, 1920, 5, 882, 0, 0, 1897, 1898, 5, 338, 0, 0, 1898, 1920, 7, 21, 0, 0, 1899, 1900, 5, 647, 0, 0, 1900, 1920, 7, 22, 0, 0, 1901, 1920, 3, 98, 49, 0, 1902, 1903, 5, 28, 0, 0, 1903, 1920, 3, 706, 353, 0, 1904, 1905, 5, 71, 0, 0, 1905, 1907, 5, 9, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 5, 13, 0, 0, 1909, 1910, 5, 866, 0, 0, 1910, 1911, 3, 822, 411, 0, 1911, 1913, 5, 867, 0, 0, 1912, 1914, 7, 23, 0, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1920, 1, 0, 0, 0, 1915, 1916, 5, 241, 0, 0, 1916, 1917, 5, 42, 0, 0, 1917, 1920, 5, 682, 0, 0, 1918, 1920, 3, 90, 45, 0, 1919, 1876, 1, 0, 0, 0, 1919, 1877, 1, 0, 0, 0, 1919, 1879, 1, 0, 0, 0, 1919, 1880, 1, 0, 0, 0, 1919, 1885, 1, 0, 0, 0, 1919, 1888, 1, 0, 0, 0, 1919, 1891, 1, 0, 0, 0, 1919, 1895, 1, 0, 0, 0, 1919, 1897, 1, 0, 0, 0, 1919, 1899, 1, 0, 0, 0, 1919, 1901, 1, 0, 0, 0, 1919, 1902, 1, 0, 0, 0, 1919, 1906, 1, 0, 0, 0, 1919, 1915, 1, 0, 0, 0, 1919, 1918, 1, 0, 0, 0, 1920, 97, 1, 0, 0, 0, 1921, 1922, 5, 138, 0, 0, 1922, 1924, 3, 662, 331, 0, 1923, 1925, 3, 756, 378, 0, 1924, 1923, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1928, 1, 0, 0, 0, 1926, 1927, 5, 110, 0, 0, 1927, 1929, 7, 24, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1931, 1, 0, 0, 0, 1930, 1932, 3, 100, 50, 0, 1931, 1930, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 99, 1, 0, 0, 0, 1933, 1934, 5, 119, 0, 0, 1934, 1935, 5, 44, 0, 0, 1935, 1939, 3, 102, 51, 0, 1936, 1937, 5, 119, 0, 0, 1937, 1938, 5, 185, 0, 0, 1938, 1940, 3, 102, 51, 0, 1939, 1936, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1950, 1, 0, 0, 0, 1941, 1942, 5, 119, 0, 0, 1942, 1943, 5, 185, 0, 0, 1943, 1947, 3, 102, 51, 0, 1944, 1945, 5, 119, 0, 0, 1945, 1946, 5, 44, 0, 0, 1946, 1948, 3, 102, 51, 0, 1947, 1944, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1950, 1, 0, 0, 0, 1949, 1933, 1, 0, 0, 0, 1949, 1941, 1, 0, 0, 0, 1950, 101, 1, 0, 0, 0, 1951, 1960, 5, 146, 0, 0, 1952, 1960, 5, 22, 0, 0, 1953, 1954, 5, 155, 0, 0, 1954, 1960, 5, 116, 0, 0, 1955, 1956, 5, 502, 0, 0, 1956, 1960, 5, 305, 0, 0, 1957, 1958, 5, 155, 0, 0, 1958, 1960, 5, 42, 0, 0, 1959, 1951, 1, 0, 0, 0, 1959, 1952, 1, 0, 0, 0, 1959, 1953, 1, 0, 0, 0, 1959, 1955, 1, 0, 0, 0, 1959, 1957, 1, 0, 0, 0, 1960, 103, 1, 0, 0, 0, 1961, 1963, 5, 380, 0, 0, 1962, 1964, 5, 857, 0, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1967, 3, 708, 354, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 2147, 1, 0, 0, 0, 1968, 1970, 5, 825, 0, 0, 1969, 1971, 5, 857, 0, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 2147, 5, 882, 0, 0, 1973, 1975, 5, 314, 0, 0, 1974, 1976, 5, 857, 0, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 2147, 3, 730, 365, 0, 1978, 1980, 5, 315, 0, 0, 1979, 1981, 5, 857, 0, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 2147, 3, 730, 365, 0, 1983, 1985, 5, 316, 0, 0, 1984, 1986, 5, 857, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 2147, 3, 730, 365, 0, 1988, 1990, 5, 42, 0, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1993, 3, 58, 29, 0, 1992, 1994, 5, 857, 0, 0, 1993, 1992, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1997, 1, 0, 0, 0, 1995, 1998, 3, 704, 352, 0, 1996, 1998, 5, 42, 0, 0, 1997, 1995, 1, 0, 0, 0, 1997, 1996, 1, 0, 0, 0, 1998, 2147, 1, 0, 0, 0, 1999, 2001, 7, 25, 0, 0, 2000, 2002, 5, 857, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2147, 7, 26, 0, 0, 2004, 2006, 5, 42, 0, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 5, 28, 0, 0, 2008, 2010, 5, 857, 0, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2147, 3, 706, 353, 0, 2012, 2014, 5, 340, 0, 0, 2013, 2015, 5, 857, 0, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2147, 5, 882, 0, 0, 2017, 2019, 5, 346, 0, 0, 2018, 2020, 5, 857, 0, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2147, 7, 27, 0, 0, 2022, 2024, 5, 349, 0, 0, 2023, 2025, 5, 857, 0, 0, 2024, 2023, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2147, 5, 882, 0, 0, 2027, 2028, 7, 28, 0, 0, 2028, 2030, 5, 367, 0, 0, 2029, 2031, 5, 857, 0, 0, 2030, 2029, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2147, 5, 882, 0, 0, 2033, 2035, 5, 365, 0, 0, 2034, 2036, 5, 857, 0, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2147, 7, 26, 0, 0, 2038, 2040, 5, 376, 0, 0, 2039, 2041, 5, 857, 0, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2147, 5, 882, 0, 0, 2043, 2045, 7, 29, 0, 0, 2044, 2046, 5, 857, 0, 0, 2045, 2044, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2147, 7, 26, 0, 0, 2048, 2050, 7, 30, 0, 0, 2049, 2051, 5, 857, 0, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2147, 3, 730, 365, 0, 2053, 2055, 5, 377, 0, 0, 2054, 2056, 5, 857, 0, 0, 2055, 2054, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2147, 3, 730, 365, 0, 2058, 2059, 5, 82, 0, 0, 2059, 2061, 5, 367, 0, 0, 2060, 2062, 5, 857, 0, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2147, 5, 882, 0, 0, 2064, 2066, 5, 431, 0, 0, 2065, 2067, 5, 857, 0, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2147, 7, 31, 0, 0, 2069, 2071, 5, 443, 0, 0, 2070, 2072, 5, 857, 0, 0, 2071, 2070, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2147, 3, 732, 366, 0, 2074, 2076, 5, 480, 0, 0, 2075, 2077, 5, 857, 0, 0, 2076, 2075, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2147, 3, 730, 365, 0, 2079, 2081, 5, 490, 0, 0, 2080, 2082, 5, 857, 0, 0, 2081, 2080, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2147, 3, 730, 365, 0, 2084, 2086, 5, 520, 0, 0, 2085, 2087, 5, 857, 0, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2147, 7, 14, 0, 0, 2089, 2091, 5, 529, 0, 0, 2090, 2092, 5, 857, 0, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2147, 5, 882, 0, 0, 2094, 2096, 5, 588, 0, 0, 2095, 2097, 5, 857, 0, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2147, 7, 32, 0, 0, 2099, 2100, 5, 640, 0, 0, 2100, 2147, 5, 664, 0, 0, 2101, 2103, 5, 833, 0, 0, 2102, 2104, 5, 857, 0, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2147, 5, 882, 0, 0, 2106, 2108, 5, 642, 0, 0, 2107, 2109, 5, 857, 0, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2147, 7, 14, 0, 0, 2111, 2113, 5, 643, 0, 0, 2112, 2114, 5, 857, 0, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2147, 7, 14, 0, 0, 2116, 2118, 5, 644, 0, 0, 2117, 2119, 5, 857, 0, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2122, 1, 0, 0, 0, 2120, 2123, 5, 42, 0, 0, 2121, 2123, 3, 730, 365, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2121, 1, 0, 0, 0, 2123, 2147, 1, 0, 0, 0, 2124, 2125, 5, 658, 0, 0, 2125, 2127, 3, 682, 341, 0, 2126, 2128, 3, 108, 54, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2147, 1, 0, 0, 0, 2129, 2130, 5, 659, 0, 0, 2130, 2131, 5, 857, 0, 0, 2131, 2147, 3, 106, 53, 0, 2132, 2147, 3, 108, 54, 0, 2133, 2135, 5, 665, 0, 0, 2134, 2136, 5, 857, 0, 0, 2135, 2134, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, 2147, 7, 26, 0, 0, 2138, 2140, 5, 181, 0, 0, 2139, 2141, 5, 857, 0, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 5, 866, 0, 0, 2143, 2144, 3, 660, 330, 0, 2144, 2145, 5, 867, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 1961, 1, 0, 0, 0, 2146, 1968, 1, 0, 0, 0, 2146, 1973, 1, 0, 0, 0, 2146, 1978, 1, 0, 0, 0, 2146, 1983, 1, 0, 0, 0, 2146, 1989, 1, 0, 0, 0, 2146, 1999, 1, 0, 0, 0, 2146, 2005, 1, 0, 0, 0, 2146, 2012, 1, 0, 0, 0, 2146, 2017, 1, 0, 0, 0, 2146, 2022, 1, 0, 0, 0, 2146, 2027, 1, 0, 0, 0, 2146, 2033, 1, 0, 0, 0, 2146, 2038, 1, 0, 0, 0, 2146, 2043, 1, 0, 0, 0, 2146, 2048, 1, 0, 0, 0, 2146, 2053, 1, 0, 0, 0, 2146, 2058, 1, 0, 0, 0, 2146, 2064, 1, 0, 0, 0, 2146, 2069, 1, 0, 0, 0, 2146, 2074, 1, 0, 0, 0, 2146, 2079, 1, 0, 0, 0, 2146, 2084, 1, 0, 0, 0, 2146, 2089, 1, 0, 0, 0, 2146, 2094, 1, 0, 0, 0, 2146, 2099, 1, 0, 0, 0, 2146, 2101, 1, 0, 0, 0, 2146, 2106, 1, 0, 0, 0, 2146, 2111, 1, 0, 0, 0, 2146, 2116, 1, 0, 0, 0, 2146, 2124, 1, 0, 0, 0, 2146, 2129, 1, 0, 0, 0, 2146, 2132, 1, 0, 0, 0, 2146, 2133, 1, 0, 0, 0, 2146, 2138, 1, 0, 0, 0, 2147, 105, 1, 0, 0, 0, 2148, 2149, 7, 33, 0, 0, 2149, 107, 1, 0, 0, 0, 2150, 2151, 5, 647, 0, 0, 2151, 2152, 7, 22, 0, 0, 2152, 109, 1, 0, 0, 0, 2153, 2154, 5, 130, 0, 0, 2154, 2155, 5, 20, 0, 0, 2155, 2158, 3, 112, 56, 0, 2156, 2157, 5, 528, 0, 0, 2157, 2159, 3, 730, 365, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2167, 1, 0, 0, 0, 2160, 2161, 5, 652, 0, 0, 2161, 2162, 5, 20, 0, 0, 2162, 2165, 3, 114, 57, 0, 2163, 2164, 5, 653, 0, 0, 2164, 2166, 3, 730, 365, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2160, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2180, 1, 0, 0, 0, 2169, 2170, 5, 866, 0, 0, 2170, 2175, 3, 116, 58, 0, 2171, 2172, 5, 868, 0, 0, 2172, 2174, 3, 116, 58, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2177, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2178, 2179, 5, 867, 0, 0, 2179, 2181, 1, 0, 0, 0, 2180, 2169, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 111, 1, 0, 0, 0, 2182, 2184, 5, 101, 0, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2186, 5, 418, 0, 0, 2186, 2187, 5, 866, 0, 0, 2187, 2188, 3, 822, 411, 0, 2188, 2189, 5, 867, 0, 0, 2189, 2229, 1, 0, 0, 0, 2190, 2192, 5, 101, 0, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2197, 5, 92, 0, 0, 2194, 2195, 5, 308, 0, 0, 2195, 2196, 5, 857, 0, 0, 2196, 2198, 7, 34, 0, 0, 2197, 2194, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2201, 5, 866, 0, 0, 2200, 2202, 3, 670, 335, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2229, 5, 867, 0, 0, 2204, 2214, 5, 134, 0, 0, 2205, 2206, 5, 866, 0, 0, 2206, 2207, 3, 822, 411, 0, 2207, 2208, 5, 867, 0, 0, 2208, 2215, 1, 0, 0, 0, 2209, 2210, 5, 337, 0, 0, 2210, 2211, 5, 866, 0, 0, 2211, 2212, 3, 670, 335, 0, 2212, 2213, 5, 867, 0, 0, 2213, 2215, 1, 0, 0, 0, 2214, 2205, 1, 0, 0, 0, 2214, 2209, 1, 0, 0, 0, 2215, 2229, 1, 0, 0, 0, 2216, 2226, 5, 449, 0, 0, 2217, 2218, 5, 866, 0, 0, 2218, 2219, 3, 822, 411, 0, 2219, 2220, 5, 867, 0, 0, 2220, 2227, 1, 0, 0, 0, 2221, 2222, 5, 337, 0, 0, 2222, 2223, 5, 866, 0, 0, 2223, 2224, 3, 670, 335, 0, 2224, 2225, 5, 867, 0, 0, 2225, 2227, 1, 0, 0, 0, 2226, 2217, 1, 0, 0, 0, 2226, 2221, 1, 0, 0, 0, 2227, 2229, 1, 0, 0, 0, 2228, 2183, 1, 0, 0, 0, 2228, 2191, 1, 0, 0, 0, 2228, 2204, 1, 0, 0, 0, 2228, 2216, 1, 0, 0, 0, 2229, 113, 1, 0, 0, 0, 2230, 2232, 5, 101, 0, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2234, 5, 418, 0, 0, 2234, 2235, 5, 866, 0, 0, 2235, 2236, 3, 822, 411, 0, 2236, 2237, 5, 867, 0, 0, 2237, 2252, 1, 0, 0, 0, 2238, 2240, 5, 101, 0, 0, 2239, 2238, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2245, 5, 92, 0, 0, 2242, 2243, 5, 308, 0, 0, 2243, 2244, 5, 857, 0, 0, 2244, 2246, 7, 34, 0, 0, 2245, 2242, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 5, 866, 0, 0, 2248, 2249, 3, 670, 335, 0, 2249, 2250, 5, 867, 0, 0, 2250, 2252, 1, 0, 0, 0, 2251, 2231, 1, 0, 0, 0, 2251, 2239, 1, 0, 0, 0, 2252, 115, 1, 0, 0, 0, 2253, 2254, 5, 130, 0, 0, 2254, 2255, 3, 688, 344, 0, 2255, 2256, 5, 189, 0, 0, 2256, 2257, 5, 447, 0, 0, 2257, 2258, 5, 662, 0, 0, 2258, 2259, 5, 866, 0, 0, 2259, 2264, 3, 118, 59, 0, 2260, 2261, 5, 868, 0, 0, 2261, 2263, 3, 118, 59, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2266, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2267, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2271, 5, 867, 0, 0, 2268, 2270, 3, 124, 62, 0, 2269, 2268, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2285, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 5, 866, 0, 0, 2275, 2280, 3, 122, 61, 0, 2276, 2277, 5, 868, 0, 0, 2277, 2279, 3, 122, 61, 0, 2278, 2276, 1, 0, 0, 0, 2279, 2282, 1, 0, 0, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 1, 0, 0, 0, 2282, 2280, 1, 0, 0, 0, 2283, 2284, 5, 867, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2274, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2400, 1, 0, 0, 0, 2287, 2288, 5, 130, 0, 0, 2288, 2289, 3, 688, 344, 0, 2289, 2290, 5, 189, 0, 0, 2290, 2291, 5, 447, 0, 0, 2291, 2292, 5, 662, 0, 0, 2292, 2296, 3, 118, 59, 0, 2293, 2295, 3, 124, 62, 0, 2294, 2293, 1, 0, 0, 0, 2295, 2298, 1, 0, 0, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2310, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2299, 2300, 5, 866, 0, 0, 2300, 2305, 3, 122, 61, 0, 2301, 2302, 5, 868, 0, 0, 2302, 2304, 3, 122, 61, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2307, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2308, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2308, 2309, 5, 867, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2299, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2400, 1, 0, 0, 0, 2312, 2313, 5, 130, 0, 0, 2313, 2314, 3, 688, 344, 0, 2314, 2315, 5, 189, 0, 0, 2315, 2316, 5, 80, 0, 0, 2316, 2317, 5, 866, 0, 0, 2317, 2322, 3, 118, 59, 0, 2318, 2319, 5, 868, 0, 0, 2319, 2321, 3, 118, 59, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2324, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2325, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2325, 2329, 5, 867, 0, 0, 2326, 2328, 3, 124, 62, 0, 2327, 2326, 1, 0, 0, 0, 2328, 2331, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2343, 1, 0, 0, 0, 2331, 2329, 1, 0, 0, 0, 2332, 2333, 5, 866, 0, 0, 2333, 2338, 3, 122, 61, 0, 2334, 2335, 5, 868, 0, 0, 2335, 2337, 3, 122, 61, 0, 2336, 2334, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2341, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2341, 2342, 5, 867, 0, 0, 2342, 2344, 1, 0, 0, 0, 2343, 2332, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2400, 1, 0, 0, 0, 2345, 2346, 5, 130, 0, 0, 2346, 2347, 3, 688, 344, 0, 2347, 2348, 5, 189, 0, 0, 2348, 2349, 5, 80, 0, 0, 2349, 2350, 5, 866, 0, 0, 2350, 2355, 3, 120, 60, 0, 2351, 2352, 5, 868, 0, 0, 2352, 2354, 3, 120, 60, 0, 2353, 2351, 1, 0, 0, 0, 2354, 2357, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2358, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2362, 5, 867, 0, 0, 2359, 2361, 3, 124, 62, 0, 2360, 2359, 1, 0, 0, 0, 2361, 2364, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 2376, 1, 0, 0, 0, 2364, 2362, 1, 0, 0, 0, 2365, 2366, 5, 866, 0, 0, 2366, 2371, 3, 122, 61, 0, 2367, 2368, 5, 868, 0, 0, 2368, 2370, 3, 122, 61, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2373, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2374, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2375, 5, 867, 0, 0, 2375, 2377, 1, 0, 0, 0, 2376, 2365, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2400, 1, 0, 0, 0, 2378, 2379, 5, 130, 0, 0, 2379, 2383, 3, 688, 344, 0, 2380, 2382, 3, 124, 62, 0, 2381, 2380, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2397, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 866, 0, 0, 2387, 2392, 3, 122, 61, 0, 2388, 2389, 5, 868, 0, 0, 2389, 2391, 3, 122, 61, 0, 2390, 2388, 1, 0, 0, 0, 2391, 2394, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2395, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2395, 2396, 5, 867, 0, 0, 2396, 2398, 1, 0, 0, 0, 2397, 2386, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2253, 1, 0, 0, 0, 2399, 2287, 1, 0, 0, 0, 2399, 2312, 1, 0, 0, 0, 2399, 2345, 1, 0, 0, 0, 2399, 2378, 1, 0, 0, 0, 2400, 117, 1, 0, 0, 0, 2401, 2405, 3, 742, 371, 0, 2402, 2405, 3, 822, 411, 0, 2403, 2405, 5, 111, 0, 0, 2404, 2401, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2403, 1, 0, 0, 0, 2405, 119, 1, 0, 0, 0, 2406, 2407, 5, 866, 0, 0, 2407, 2410, 3, 118, 59, 0, 2408, 2409, 5, 868, 0, 0, 2409, 2411, 3, 118, 59, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2415, 5, 867, 0, 0, 2415, 121, 1, 0, 0, 0, 2416, 2417, 5, 652, 0, 0, 2417, 2421, 3, 722, 361, 0, 2418, 2420, 3, 124, 62, 0, 2419, 2418, 1, 0, 0, 0, 2420, 2423, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 123, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2426, 5, 42, 0, 0, 2425, 2424, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2428, 1, 0, 0, 0, 2427, 2429, 5, 647, 0, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2432, 5, 380, 0, 0, 2431, 2433, 5, 857, 0, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2473, 3, 708, 354, 0, 2435, 2437, 5, 340, 0, 0, 2436, 2438, 5, 857, 0, 0, 2437, 2436, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2473, 5, 882, 0, 0, 2440, 2441, 5, 360, 0, 0, 2441, 2443, 5, 367, 0, 0, 2442, 2444, 5, 857, 0, 0, 2443, 2442, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2473, 5, 882, 0, 0, 2446, 2447, 5, 82, 0, 0, 2447, 2449, 5, 367, 0, 0, 2448, 2450, 5, 857, 0, 0, 2449, 2448, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 2473, 5, 882, 0, 0, 2452, 2454, 5, 480, 0, 0, 2453, 2455, 5, 857, 0, 0, 2454, 2453, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2473, 3, 730, 365, 0, 2457, 2459, 5, 490, 0, 0, 2458, 2460, 5, 857, 0, 0, 2459, 2458, 1, 0, 0, 0, 2459, 2460, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2473, 3, 730, 365, 0, 2462, 2464, 5, 658, 0, 0, 2463, 2465, 5, 857, 0, 0, 2464, 2463, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2473, 3, 682, 341, 0, 2467, 2469, 5, 504, 0, 0, 2468, 2470, 5, 857, 0, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2473, 3, 722, 361, 0, 2472, 2425, 1, 0, 0, 0, 2472, 2435, 1, 0, 0, 0, 2472, 2440, 1, 0, 0, 0, 2472, 2446, 1, 0, 0, 0, 2472, 2452, 1, 0, 0, 0, 2472, 2457, 1, 0, 0, 0, 2472, 2462, 1, 0, 0, 0, 2472, 2467, 1, 0, 0, 0, 2473, 125, 1, 0, 0, 0, 2474, 2475, 5, 8, 0, 0, 2475, 2477, 7, 0, 0, 0, 2476, 2478, 3, 638, 319, 0, 2477, 2476, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2480, 1, 0, 0, 0, 2479, 2481, 3, 56, 28, 0, 2480, 2479, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2480, 1, 0, 0, 0, 2482, 2483, 1, 0, 0, 0, 2483, 2493, 1, 0, 0, 0, 2484, 2485, 5, 8, 0, 0, 2485, 2486, 7, 0, 0, 0, 2486, 2487, 3, 638, 319, 0, 2487, 2488, 5, 677, 0, 0, 2488, 2489, 5, 360, 0, 0, 2489, 2490, 5, 367, 0, 0, 2490, 2491, 5, 496, 0, 0, 2491, 2493, 1, 0, 0, 0, 2492, 2474, 1, 0, 0, 0, 2492, 2484, 1, 0, 0, 0, 2493, 127, 1, 0, 0, 0, 2494, 2496, 5, 8, 0, 0, 2495, 2497, 3, 62, 31, 0, 2496, 2495, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 5, 385, 0, 0, 2499, 2503, 3, 718, 359, 0, 2500, 2501, 5, 119, 0, 0, 2501, 2502, 5, 590, 0, 0, 2502, 2504, 3, 64, 32, 0, 2503, 2500, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2511, 1, 0, 0, 0, 2505, 2506, 5, 119, 0, 0, 2506, 2508, 5, 343, 0, 0, 2507, 2509, 5, 114, 0, 0, 2508, 2507, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2512, 5, 541, 0, 0, 2511, 2505, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2516, 1, 0, 0, 0, 2513, 2514, 5, 141, 0, 0, 2514, 2515, 5, 176, 0, 0, 2515, 2517, 3, 718, 359, 0, 2516, 2513, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2519, 1, 0, 0, 0, 2518, 2520, 3, 72, 36, 0, 2519, 2518, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2523, 1, 0, 0, 0, 2521, 2522, 5, 340, 0, 0, 2522, 2524, 5, 882, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2526, 5, 371, 0, 0, 2526, 2528, 3, 432, 216, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 129, 1, 0, 0, 0, 2529, 2530, 5, 8, 0, 0, 2530, 2531, 5, 409, 0, 0, 2531, 2535, 3, 642, 321, 0, 2532, 2534, 3, 82, 41, 0, 2533, 2532, 1, 0, 0, 0, 2534, 2537, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 131, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2538, 2539, 5, 8, 0, 0, 2539, 2540, 5, 433, 0, 0, 2540, 2541, 5, 585, 0, 0, 2541, 2542, 5, 801, 0, 0, 2542, 2543, 5, 453, 0, 0, 2543, 2544, 5, 92, 0, 0, 2544, 133, 1, 0, 0, 0, 2545, 2546, 5, 8, 0, 0, 2546, 2547, 5, 451, 0, 0, 2547, 2548, 5, 74, 0, 0, 2548, 2549, 3, 722, 361, 0, 2549, 2550, 5, 6, 0, 0, 2550, 2551, 5, 671, 0, 0, 2551, 2557, 5, 882, 0, 0, 2552, 2554, 5, 428, 0, 0, 2553, 2555, 5, 857, 0, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 3, 732, 366, 0, 2557, 2552, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 5, 687, 0, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 5, 380, 0, 0, 2563, 2565, 5, 857, 0, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 3, 708, 354, 0, 2567, 135, 1, 0, 0, 0, 2568, 2569, 5, 8, 0, 0, 2569, 2570, 5, 132, 0, 0, 2570, 2574, 3, 718, 359, 0, 2571, 2573, 3, 82, 41, 0, 2572, 2571, 1, 0, 0, 0, 2573, 2576, 1, 0, 0, 0, 2574, 2572, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 137, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2577, 2578, 5, 8, 0, 0, 2578, 2579, 5, 592, 0, 0, 2579, 2580, 3, 722, 361, 0, 2580, 2581, 5, 518, 0, 0, 2581, 2582, 5, 866, 0, 0, 2582, 2587, 3, 84, 42, 0, 2583, 2584, 5, 868, 0, 0, 2584, 2586, 3, 84, 42, 0, 2585, 2583, 1, 0, 0, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2590, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2590, 2591, 5, 867, 0, 0, 2591, 139, 1, 0, 0, 0, 2592, 2593, 5, 8, 0, 0, 2593, 2594, 5, 173, 0, 0, 2594, 2603, 3, 662, 331, 0, 2595, 2600, 3, 146, 73, 0, 2596, 2597, 5, 868, 0, 0, 2597, 2599, 3, 146, 73, 0, 2598, 2596, 1, 0, 0, 0, 2599, 2602, 1, 0, 0, 0, 2600, 2598, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2604, 1, 0, 0, 0, 2602, 2600, 1, 0, 0, 0, 2603, 2595, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2612, 1, 0, 0, 0, 2605, 2609, 3, 148, 74, 0, 2606, 2608, 3, 148, 74, 0, 2607, 2606, 1, 0, 0, 0, 2608, 2611, 1, 0, 0, 0, 2609, 2607, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2613, 1, 0, 0, 0, 2611, 2609, 1, 0, 0, 0, 2612, 2605, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 141, 1, 0, 0, 0, 2614, 2616, 5, 8, 0, 0, 2615, 2617, 5, 180, 0, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 5, 658, 0, 0, 2619, 2620, 3, 682, 341, 0, 2620, 2621, 7, 35, 0, 0, 2621, 2622, 5, 361, 0, 0, 2622, 2628, 5, 882, 0, 0, 2623, 2625, 5, 428, 0, 0, 2624, 2626, 5, 857, 0, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 3, 732, 366, 0, 2628, 2623, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2631, 1, 0, 0, 0, 2630, 2632, 5, 687, 0, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2636, 1, 0, 0, 0, 2633, 2634, 5, 141, 0, 0, 2634, 2635, 5, 176, 0, 0, 2635, 2637, 3, 680, 340, 0, 2636, 2633, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2643, 1, 0, 0, 0, 2638, 2640, 5, 314, 0, 0, 2639, 2641, 5, 857, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 3, 732, 366, 0, 2643, 2638, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2647, 1, 0, 0, 0, 2645, 2646, 5, 155, 0, 0, 2646, 2648, 7, 36, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2654, 1, 0, 0, 0, 2649, 2651, 5, 376, 0, 0, 2650, 2652, 5, 857, 0, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2655, 5, 882, 0, 0, 2654, 2649, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2661, 1, 0, 0, 0, 2656, 2658, 5, 380, 0, 0, 2657, 2659, 5, 857, 0, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2662, 3, 708, 354, 0, 2661, 2656, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2668, 1, 0, 0, 0, 2663, 2665, 5, 825, 0, 0, 2664, 2666, 5, 857, 0, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2669, 5, 882, 0, 0, 2668, 2663, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 143, 1, 0, 0, 0, 2670, 2674, 5, 8, 0, 0, 2671, 2672, 5, 308, 0, 0, 2672, 2673, 5, 857, 0, 0, 2673, 2675, 7, 11, 0, 0, 2674, 2671, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2678, 3, 62, 31, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2682, 1, 0, 0, 0, 2679, 2680, 5, 162, 0, 0, 2680, 2681, 5, 591, 0, 0, 2681, 2683, 7, 12, 0, 0, 2682, 2679, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 5, 684, 0, 0, 2685, 2690, 3, 646, 323, 0, 2686, 2687, 5, 866, 0, 0, 2687, 2688, 3, 670, 335, 0, 2688, 2689, 5, 867, 0, 0, 2689, 2691, 1, 0, 0, 0, 2690, 2686, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 5, 13, 0, 0, 2693, 2700, 3, 210, 105, 0, 2694, 2696, 5, 194, 0, 0, 2695, 2697, 7, 13, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 5, 27, 0, 0, 2699, 2701, 5, 121, 0, 0, 2700, 2694, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 145, 1, 0, 0, 0, 2702, 2709, 3, 104, 52, 0, 2703, 2705, 5, 868, 0, 0, 2704, 2703, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2708, 3, 104, 52, 0, 2707, 2704, 1, 0, 0, 0, 2708, 2711, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2967, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2712, 2714, 5, 6, 0, 0, 2713, 2715, 5, 29, 0, 0, 2714, 2713, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2717, 3, 674, 337, 0, 2717, 2721, 3, 94, 47, 0, 2718, 2722, 5, 402, 0, 0, 2719, 2720, 5, 306, 0, 0, 2720, 2722, 3, 674, 337, 0, 2721, 2718, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2967, 1, 0, 0, 0, 2723, 2725, 5, 6, 0, 0, 2724, 2726, 5, 29, 0, 0, 2725, 2724, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 2728, 5, 866, 0, 0, 2728, 2729, 3, 674, 337, 0, 2729, 2736, 3, 94, 47, 0, 2730, 2731, 5, 868, 0, 0, 2731, 2732, 3, 674, 337, 0, 2732, 2733, 3, 94, 47, 0, 2733, 2735, 1, 0, 0, 0, 2734, 2730, 1, 0, 0, 0, 2735, 2738, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2739, 1, 0, 0, 0, 2738, 2736, 1, 0, 0, 0, 2739, 2740, 5, 867, 0, 0, 2740, 2967, 1, 0, 0, 0, 2741, 2742, 5, 6, 0, 0, 2742, 2744, 7, 19, 0, 0, 2743, 2745, 3, 652, 326, 0, 2744, 2743, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2747, 1, 0, 0, 0, 2746, 2748, 3, 74, 37, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2753, 3, 756, 378, 0, 2750, 2752, 3, 76, 38, 0, 2751, 2750, 1, 0, 0, 0, 2752, 2755, 1, 0, 0, 0, 2753, 2751, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2967, 1, 0, 0, 0, 2755, 2753, 1, 0, 0, 0, 2756, 2757, 5, 6, 0, 0, 2757, 2759, 7, 20, 0, 0, 2758, 2760, 7, 19, 0, 0, 2759, 2758, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2762, 1, 0, 0, 0, 2761, 2763, 3, 652, 326, 0, 2762, 2761, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2768, 3, 756, 378, 0, 2765, 2767, 3, 76, 38, 0, 2766, 2765, 1, 0, 0, 0, 2767, 2770, 1, 0, 0, 0, 2768, 2766, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2967, 1, 0, 0, 0, 2770, 2768, 1, 0, 0, 0, 2771, 2776, 5, 6, 0, 0, 2772, 2774, 5, 31, 0, 0, 2773, 2775, 3, 722, 361, 0, 2774, 2773, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2777, 1, 0, 0, 0, 2776, 2772, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2779, 5, 131, 0, 0, 2779, 2781, 5, 92, 0, 0, 2780, 2782, 3, 74, 37, 0, 2781, 2780, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2787, 3, 756, 378, 0, 2784, 2786, 3, 76, 38, 0, 2785, 2784, 1, 0, 0, 0, 2786, 2789, 1, 0, 0, 0, 2787, 2785, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2967, 1, 0, 0, 0, 2789, 2787, 1, 0, 0, 0, 2790, 2795, 5, 6, 0, 0, 2791, 2793, 5, 31, 0, 0, 2792, 2794, 3, 722, 361, 0, 2793, 2792, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2796, 1, 0, 0, 0, 2795, 2791, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2799, 5, 182, 0, 0, 2798, 2800, 7, 19, 0, 0, 2799, 2798, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2802, 1, 0, 0, 0, 2801, 2803, 3, 652, 326, 0, 2802, 2801, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2805, 1, 0, 0, 0, 2804, 2806, 3, 74, 37, 0, 2805, 2804, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2811, 3, 756, 378, 0, 2808, 2810, 3, 76, 38, 0, 2809, 2808, 1, 0, 0, 0, 2810, 2813, 1, 0, 0, 0, 2811, 2809, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2967, 1, 0, 0, 0, 2813, 2811, 1, 0, 0, 0, 2814, 2819, 5, 6, 0, 0, 2815, 2817, 5, 31, 0, 0, 2816, 2818, 3, 722, 361, 0, 2817, 2816, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2820, 1, 0, 0, 0, 2819, 2815, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2822, 5, 67, 0, 0, 2822, 2824, 5, 92, 0, 0, 2823, 2825, 3, 652, 326, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 2827, 3, 756, 378, 0, 2827, 2828, 3, 98, 49, 0, 2828, 2967, 1, 0, 0, 0, 2829, 2831, 5, 6, 0, 0, 2830, 2832, 3, 90, 45, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2967, 1, 0, 0, 0, 2833, 2834, 5, 51, 0, 0, 2834, 2835, 7, 37, 0, 0, 2835, 2967, 3, 722, 361, 0, 2836, 2837, 5, 8, 0, 0, 2837, 2838, 7, 37, 0, 0, 2838, 2840, 3, 722, 361, 0, 2839, 2841, 5, 114, 0, 0, 2840, 2839, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2843, 1, 0, 0, 0, 2842, 2844, 5, 57, 0, 0, 2843, 2842, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2967, 1, 0, 0, 0, 2845, 2847, 5, 308, 0, 0, 2846, 2848, 5, 857, 0, 0, 2847, 2846, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2967, 7, 38, 0, 0, 2850, 2852, 5, 8, 0, 0, 2851, 2853, 5, 29, 0, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2862, 3, 674, 337, 0, 2855, 2856, 5, 155, 0, 0, 2856, 2857, 5, 42, 0, 0, 2857, 2863, 3, 772, 386, 0, 2858, 2859, 5, 155, 0, 0, 2859, 2863, 7, 17, 0, 0, 2860, 2861, 5, 51, 0, 0, 2861, 2863, 5, 42, 0, 0, 2862, 2855, 1, 0, 0, 0, 2862, 2858, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2967, 1, 0, 0, 0, 2864, 2865, 5, 8, 0, 0, 2865, 2866, 5, 82, 0, 0, 2866, 2867, 3, 652, 326, 0, 2867, 2868, 7, 17, 0, 0, 2868, 2967, 1, 0, 0, 0, 2869, 2871, 5, 25, 0, 0, 2870, 2872, 5, 29, 0, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2874, 3, 674, 337, 0, 2874, 2875, 3, 668, 334, 0, 2875, 2879, 3, 94, 47, 0, 2876, 2880, 5, 402, 0, 0, 2877, 2878, 5, 306, 0, 0, 2878, 2880, 3, 674, 337, 0, 2879, 2876, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 2967, 1, 0, 0, 0, 2881, 2883, 5, 42, 0, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2885, 5, 26, 0, 0, 2885, 2886, 5, 155, 0, 0, 2886, 2887, 5, 857, 0, 0, 2887, 2893, 3, 704, 352, 0, 2888, 2890, 5, 28, 0, 0, 2889, 2891, 5, 857, 0, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 3, 706, 353, 0, 2893, 2888, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2967, 1, 0, 0, 0, 2895, 2896, 5, 33, 0, 0, 2896, 2900, 5, 176, 0, 0, 2897, 2901, 5, 823, 0, 0, 2898, 2899, 5, 26, 0, 0, 2899, 2901, 5, 155, 0, 0, 2900, 2897, 1, 0, 0, 0, 2900, 2898, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2905, 3, 704, 352, 0, 2903, 2904, 5, 28, 0, 0, 2904, 2906, 3, 706, 353, 0, 2905, 2903, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2967, 1, 0, 0, 0, 2907, 2908, 7, 39, 0, 0, 2908, 2967, 5, 93, 0, 0, 2909, 2910, 7, 40, 0, 0, 2910, 2967, 5, 658, 0, 0, 2911, 2913, 5, 51, 0, 0, 2912, 2914, 5, 29, 0, 0, 2913, 2912, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2915, 1, 0, 0, 0, 2915, 2967, 3, 674, 337, 0, 2916, 2917, 5, 51, 0, 0, 2917, 2918, 7, 19, 0, 0, 2918, 2967, 3, 652, 326, 0, 2919, 2920, 5, 51, 0, 0, 2920, 2921, 5, 131, 0, 0, 2921, 2967, 5, 92, 0, 0, 2922, 2923, 5, 51, 0, 0, 2923, 2924, 5, 67, 0, 0, 2924, 2925, 5, 92, 0, 0, 2925, 2967, 3, 722, 361, 0, 2926, 2967, 5, 66, 0, 0, 2927, 2929, 5, 104, 0, 0, 2928, 2930, 5, 857, 0, 0, 2929, 2928, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2967, 7, 4, 0, 0, 2932, 2934, 5, 492, 0, 0, 2933, 2935, 5, 29, 0, 0, 2934, 2933, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2937, 3, 674, 337, 0, 2937, 2941, 3, 94, 47, 0, 2938, 2942, 5, 402, 0, 0, 2939, 2940, 5, 306, 0, 0, 2940, 2942, 3, 674, 337, 0, 2941, 2938, 1, 0, 0, 0, 2941, 2939, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2967, 1, 0, 0, 0, 2943, 2944, 5, 125, 0, 0, 2944, 2945, 5, 20, 0, 0, 2945, 2967, 3, 670, 335, 0, 2946, 2947, 5, 141, 0, 0, 2947, 2948, 5, 29, 0, 0, 2948, 2949, 3, 674, 337, 0, 2949, 2950, 5, 176, 0, 0, 2950, 2951, 3, 668, 334, 0, 2951, 2967, 1, 0, 0, 0, 2952, 2953, 5, 141, 0, 0, 2953, 2954, 7, 19, 0, 0, 2954, 2955, 3, 652, 326, 0, 2955, 2956, 5, 176, 0, 0, 2956, 2957, 3, 648, 324, 0, 2957, 2967, 1, 0, 0, 0, 2958, 2960, 5, 141, 0, 0, 2959, 2961, 7, 41, 0, 0, 2960, 2959, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 2967, 3, 658, 329, 0, 2963, 2964, 7, 42, 0, 0, 2964, 2967, 5, 681, 0, 0, 2965, 2967, 3, 148, 74, 0, 2966, 2702, 1, 0, 0, 0, 2966, 2712, 1, 0, 0, 0, 2966, 2723, 1, 0, 0, 0, 2966, 2741, 1, 0, 0, 0, 2966, 2756, 1, 0, 0, 0, 2966, 2771, 1, 0, 0, 0, 2966, 2790, 1, 0, 0, 0, 2966, 2814, 1, 0, 0, 0, 2966, 2829, 1, 0, 0, 0, 2966, 2833, 1, 0, 0, 0, 2966, 2836, 1, 0, 0, 0, 2966, 2845, 1, 0, 0, 0, 2966, 2850, 1, 0, 0, 0, 2966, 2864, 1, 0, 0, 0, 2966, 2869, 1, 0, 0, 0, 2966, 2882, 1, 0, 0, 0, 2966, 2895, 1, 0, 0, 0, 2966, 2907, 1, 0, 0, 0, 2966, 2909, 1, 0, 0, 0, 2966, 2911, 1, 0, 0, 0, 2966, 2916, 1, 0, 0, 0, 2966, 2919, 1, 0, 0, 0, 2966, 2922, 1, 0, 0, 0, 2966, 2926, 1, 0, 0, 0, 2966, 2927, 1, 0, 0, 0, 2966, 2932, 1, 0, 0, 0, 2966, 2943, 1, 0, 0, 0, 2966, 2946, 1, 0, 0, 0, 2966, 2952, 1, 0, 0, 0, 2966, 2958, 1, 0, 0, 0, 2966, 2963, 1, 0, 0, 0, 2966, 2965, 1, 0, 0, 0, 2967, 147, 1, 0, 0, 0, 2968, 2969, 5, 6, 0, 0, 2969, 2970, 5, 130, 0, 0, 2970, 2971, 5, 866, 0, 0, 2971, 2976, 3, 116, 58, 0, 2972, 2973, 5, 868, 0, 0, 2973, 2975, 3, 116, 58, 0, 2974, 2972, 1, 0, 0, 0, 2975, 2978, 1, 0, 0, 0, 2976, 2974, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2979, 1, 0, 0, 0, 2978, 2976, 1, 0, 0, 0, 2979, 2980, 5, 867, 0, 0, 2980, 3067, 1, 0, 0, 0, 2981, 2982, 5, 51, 0, 0, 2982, 2983, 5, 130, 0, 0, 2983, 3067, 3, 686, 343, 0, 2984, 2985, 5, 369, 0, 0, 2985, 2988, 5, 130, 0, 0, 2986, 2989, 3, 686, 343, 0, 2987, 2989, 5, 7, 0, 0, 2988, 2986, 1, 0, 0, 0, 2988, 2987, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 3067, 5, 658, 0, 0, 2991, 2992, 5, 425, 0, 0, 2992, 2995, 5, 130, 0, 0, 2993, 2996, 3, 686, 343, 0, 2994, 2996, 5, 7, 0, 0, 2995, 2993, 1, 0, 0, 0, 2995, 2994, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 3067, 5, 658, 0, 0, 2998, 2999, 5, 668, 0, 0, 2999, 3002, 5, 130, 0, 0, 3000, 3003, 3, 686, 343, 0, 3001, 3003, 5, 7, 0, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3067, 1, 0, 0, 0, 3004, 3005, 5, 335, 0, 0, 3005, 3006, 5, 130, 0, 0, 3006, 3067, 3, 730, 365, 0, 3007, 3008, 5, 561, 0, 0, 3008, 3009, 5, 130, 0, 0, 3009, 3010, 3, 686, 343, 0, 3010, 3011, 5, 88, 0, 0, 3011, 3012, 5, 866, 0, 0, 3012, 3017, 3, 116, 58, 0, 3013, 3014, 5, 868, 0, 0, 3014, 3016, 3, 116, 58, 0, 3015, 3013, 1, 0, 0, 0, 3016, 3019, 1, 0, 0, 0, 3017, 3015, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3020, 1, 0, 0, 0, 3019, 3017, 1, 0, 0, 0, 3020, 3021, 5, 867, 0, 0, 3021, 3067, 1, 0, 0, 0, 3022, 3023, 5, 388, 0, 0, 3023, 3024, 5, 130, 0, 0, 3024, 3025, 3, 688, 344, 0, 3025, 3026, 5, 194, 0, 0, 3026, 3027, 5, 173, 0, 0, 3027, 3030, 3, 662, 331, 0, 3028, 3029, 7, 42, 0, 0, 3029, 3031, 5, 681, 0, 0, 3030, 3028, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3067, 1, 0, 0, 0, 3032, 3033, 5, 10, 0, 0, 3033, 3036, 5, 130, 0, 0, 3034, 3037, 3, 686, 343, 0, 3035, 3037, 5, 7, 0, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3035, 1, 0, 0, 0, 3037, 3067, 1, 0, 0, 0, 3038, 3039, 5, 27, 0, 0, 3039, 3042, 5, 130, 0, 0, 3040, 3043, 3, 686, 343, 0, 3041, 3043, 5, 7, 0, 0, 3042, 3040, 1, 0, 0, 0, 3042, 3041, 1, 0, 0, 0, 3043, 3067, 1, 0, 0, 0, 3044, 3045, 5, 120, 0, 0, 3045, 3048, 5, 130, 0, 0, 3046, 3049, 3, 686, 343, 0, 3047, 3049, 5, 7, 0, 0, 3048, 3046, 1, 0, 0, 0, 3048, 3047, 1, 0, 0, 0, 3049, 3067, 1, 0, 0, 0, 3050, 3051, 5, 550, 0, 0, 3051, 3054, 5, 130, 0, 0, 3052, 3055, 3, 686, 343, 0, 3053, 3055, 5, 7, 0, 0, 3054, 3052, 1, 0, 0, 0, 3054, 3053, 1, 0, 0, 0, 3055, 3067, 1, 0, 0, 0, 3056, 3057, 5, 562, 0, 0, 3057, 3060, 5, 130, 0, 0, 3058, 3061, 3, 686, 343, 0, 3059, 3061, 5, 7, 0, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3059, 1, 0, 0, 0, 3061, 3067, 1, 0, 0, 0, 3062, 3063, 5, 560, 0, 0, 3063, 3067, 5, 527, 0, 0, 3064, 3065, 5, 677, 0, 0, 3065, 3067, 5, 527, 0, 0, 3066, 2968, 1, 0, 0, 0, 3066, 2981, 1, 0, 0, 0, 3066, 2984, 1, 0, 0, 0, 3066, 2991, 1, 0, 0, 0, 3066, 2998, 1, 0, 0, 0, 3066, 3004, 1, 0, 0, 0, 3066, 3007, 1, 0, 0, 0, 3066, 3022, 1, 0, 0, 0, 3066, 3032, 1, 0, 0, 0, 3066, 3038, 1, 0, 0, 0, 3066, 3044, 1, 0, 0, 0, 3066, 3050, 1, 0, 0, 0, 3066, 3056, 1, 0, 0, 0, 3066, 3062, 1, 0, 0, 0, 3066, 3064, 1, 0, 0, 0, 3067, 149, 1, 0, 0, 0, 3068, 3069, 5, 51, 0, 0, 3069, 3071, 7, 0, 0, 0, 3070, 3072, 3, 776, 388, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3074, 3, 638, 319, 0, 3074, 151, 1, 0, 0, 0, 3075, 3076, 5, 51, 0, 0, 3076, 3078, 5, 385, 0, 0, 3077, 3079, 3, 776, 388, 0, 3078, 3077, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3081, 3, 718, 359, 0, 3081, 153, 1, 0, 0, 0, 3082, 3083, 5, 51, 0, 0, 3083, 3085, 5, 82, 0, 0, 3084, 3086, 7, 1, 0, 0, 3085, 3084, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3088, 3, 652, 326, 0, 3088, 3089, 5, 119, 0, 0, 3089, 3102, 3, 662, 331, 0, 3090, 3092, 5, 308, 0, 0, 3091, 3093, 5, 857, 0, 0, 3092, 3091, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3101, 7, 3, 0, 0, 3095, 3097, 5, 104, 0, 0, 3096, 3098, 5, 857, 0, 0, 3097, 3096, 1, 0, 0, 0, 3097, 3098, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3101, 7, 4, 0, 0, 3100, 3090, 1, 0, 0, 0, 3100, 3095, 1, 0, 0, 0, 3101, 3104, 1, 0, 0, 0, 3102, 3100, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 155, 1, 0, 0, 0, 3104, 3102, 1, 0, 0, 0, 3105, 3106, 5, 51, 0, 0, 3106, 3107, 5, 451, 0, 0, 3107, 3108, 5, 74, 0, 0, 3108, 3109, 3, 722, 361, 0, 3109, 3111, 5, 380, 0, 0, 3110, 3112, 5, 857, 0, 0, 3111, 3110, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3114, 3, 708, 354, 0, 3114, 157, 1, 0, 0, 0, 3115, 3116, 5, 51, 0, 0, 3116, 3118, 5, 132, 0, 0, 3117, 3119, 3, 776, 388, 0, 3118, 3117, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3121, 3, 718, 359, 0, 3121, 159, 1, 0, 0, 0, 3122, 3123, 5, 51, 0, 0, 3123, 3125, 5, 409, 0, 0, 3124, 3126, 3, 776, 388, 0, 3125, 3124, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3128, 3, 642, 321, 0, 3128, 161, 1, 0, 0, 0, 3129, 3130, 5, 51, 0, 0, 3130, 3132, 5, 592, 0, 0, 3131, 3133, 3, 776, 388, 0, 3132, 3131, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 3, 722, 361, 0, 3135, 163, 1, 0, 0, 0, 3136, 3137, 5, 51, 0, 0, 3137, 3138, 5, 161, 0, 0, 3138, 3139, 5, 137, 0, 0, 3139, 3141, 5, 835, 0, 0, 3140, 3142, 3, 776, 388, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 5, 883, 0, 0, 3144, 165, 1, 0, 0, 0, 3145, 3147, 5, 51, 0, 0, 3146, 3148, 5, 660, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3151, 5, 173, 0, 0, 3150, 3152, 3, 776, 388, 0, 3151, 3150, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3155, 3, 660, 330, 0, 3154, 3156, 7, 43, 0, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 167, 1, 0, 0, 0, 3157, 3159, 5, 51, 0, 0, 3158, 3160, 5, 180, 0, 0, 3159, 3158, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3161, 1, 0, 0, 0, 3161, 3162, 5, 658, 0, 0, 3162, 3168, 3, 682, 341, 0, 3163, 3165, 5, 380, 0, 0, 3164, 3166, 5, 857, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3169, 3, 708, 354, 0, 3168, 3163, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 169, 1, 0, 0, 0, 3170, 3171, 5, 51, 0, 0, 3171, 3173, 5, 178, 0, 0, 3172, 3174, 3, 776, 388, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 3176, 3, 718, 359, 0, 3176, 171, 1, 0, 0, 0, 3177, 3178, 5, 51, 0, 0, 3178, 3180, 5, 684, 0, 0, 3179, 3181, 3, 776, 388, 0, 3180, 3179, 1, 0, 0, 0, 3180, 3181, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3187, 3, 646, 323, 0, 3183, 3184, 5, 868, 0, 0, 3184, 3186, 3, 646, 323, 0, 3185, 3183, 1, 0, 0, 0, 3186, 3189, 1, 0, 0, 0, 3187, 3185, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3191, 1, 0, 0, 0, 3189, 3187, 1, 0, 0, 0, 3190, 3192, 7, 43, 0, 0, 3191, 3190, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 173, 1, 0, 0, 0, 3193, 3194, 5, 51, 0, 0, 3194, 3196, 5, 582, 0, 0, 3195, 3197, 3, 776, 388, 0, 3196, 3195, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3199, 3, 664, 332, 0, 3199, 175, 1, 0, 0, 0, 3200, 3201, 5, 155, 0, 0, 3201, 3202, 5, 42, 0, 0, 3202, 3206, 5, 582, 0, 0, 3203, 3207, 5, 505, 0, 0, 3204, 3207, 5, 7, 0, 0, 3205, 3207, 3, 664, 332, 0, 3206, 3203, 1, 0, 0, 0, 3206, 3204, 1, 0, 0, 0, 3206, 3205, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3209, 5, 176, 0, 0, 3209, 3214, 3, 666, 333, 0, 3210, 3211, 5, 868, 0, 0, 3211, 3213, 3, 666, 333, 0, 3212, 3210, 1, 0, 0, 0, 3213, 3216, 1, 0, 0, 0, 3214, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3221, 1, 0, 0, 0, 3216, 3214, 1, 0, 0, 0, 3217, 3218, 5, 155, 0, 0, 3218, 3219, 5, 582, 0, 0, 3219, 3221, 3, 478, 239, 0, 3220, 3200, 1, 0, 0, 0, 3220, 3217, 1, 0, 0, 0, 3221, 177, 1, 0, 0, 0, 3222, 3223, 5, 141, 0, 0, 3223, 3224, 5, 173, 0, 0, 3224, 3229, 3, 180, 90, 0, 3225, 3226, 5, 868, 0, 0, 3226, 3228, 3, 180, 90, 0, 3227, 3225, 1, 0, 0, 0, 3228, 3231, 1, 0, 0, 0, 3229, 3227, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 179, 1, 0, 0, 0, 3231, 3229, 1, 0, 0, 0, 3232, 3233, 3, 662, 331, 0, 3233, 3234, 5, 176, 0, 0, 3234, 3235, 3, 658, 329, 0, 3235, 181, 1, 0, 0, 0, 3236, 3238, 5, 668, 0, 0, 3237, 3239, 5, 173, 0, 0, 3238, 3237, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3241, 3, 662, 331, 0, 3241, 183, 1, 0, 0, 0, 3242, 3243, 5, 21, 0, 0, 3243, 3250, 3, 718, 359, 0, 3244, 3247, 5, 866, 0, 0, 3245, 3248, 3, 766, 383, 0, 3246, 3248, 3, 758, 379, 0, 3247, 3245, 1, 0, 0, 0, 3247, 3246, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3251, 5, 867, 0, 0, 3250, 3244, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 185, 1, 0, 0, 0, 3252, 3255, 3, 240, 120, 0, 3253, 3255, 3, 242, 121, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3253, 1, 0, 0, 0, 3255, 187, 1, 0, 0, 0, 3256, 3257, 5, 371, 0, 0, 3257, 3258, 3, 758, 379, 0, 3258, 189, 1, 0, 0, 0, 3259, 3264, 3, 244, 122, 0, 3260, 3264, 3, 246, 123, 0, 3261, 3264, 3, 248, 124, 0, 3262, 3264, 3, 250, 125, 0, 3263, 3259, 1, 0, 0, 0, 3263, 3260, 1, 0, 0, 0, 3263, 3261, 1, 0, 0, 0, 3263, 3262, 1, 0, 0, 0, 3264, 191, 1, 0, 0, 0, 3265, 3267, 5, 86, 0, 0, 3266, 3268, 7, 44, 0, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3270, 1, 0, 0, 0, 3269, 3271, 5, 79, 0, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3273, 1, 0, 0, 0, 3272, 3274, 5, 88, 0, 0, 3273, 3272, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3282, 3, 662, 331, 0, 3276, 3277, 5, 130, 0, 0, 3277, 3279, 5, 866, 0, 0, 3278, 3280, 3, 686, 343, 0, 3279, 3278, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3283, 5, 867, 0, 0, 3282, 3276, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3295, 1, 0, 0, 0, 3284, 3286, 3, 270, 135, 0, 3285, 3284, 1, 0, 0, 0, 3285, 3286, 1, 0, 0, 0, 3286, 3289, 1, 0, 0, 0, 3287, 3290, 3, 760, 380, 0, 3288, 3290, 3, 196, 98, 0, 3289, 3287, 1, 0, 0, 0, 3289, 3288, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3292, 1, 0, 0, 0, 3291, 3293, 3, 194, 97, 0, 3292, 3291, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3296, 1, 0, 0, 0, 3294, 3296, 3, 232, 116, 0, 3295, 3285, 1, 0, 0, 0, 3295, 3294, 1, 0, 0, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3299, 3, 194, 97, 0, 3298, 3297, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3312, 1, 0, 0, 0, 3300, 3301, 5, 119, 0, 0, 3301, 3302, 5, 373, 0, 0, 3302, 3303, 5, 92, 0, 0, 3303, 3304, 5, 185, 0, 0, 3304, 3309, 3, 234, 117, 0, 3305, 3306, 5, 868, 0, 0, 3306, 3308, 3, 234, 117, 0, 3307, 3305, 1, 0, 0, 0, 3308, 3311, 1, 0, 0, 0, 3309, 3307, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3313, 1, 0, 0, 0, 3311, 3309, 1, 0, 0, 0, 3312, 3300, 1, 0, 0, 0, 3312, 3313, 1, 0, 0, 0, 3313, 193, 1, 0, 0, 0, 3314, 3315, 5, 13, 0, 0, 3315, 3317, 3, 722, 361, 0, 3316, 3318, 3, 270, 135, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 195, 1, 0, 0, 0, 3319, 3324, 3, 210, 105, 0, 3320, 3321, 5, 173, 0, 0, 3321, 3324, 3, 662, 331, 0, 3322, 3324, 3, 230, 115, 0, 3323, 3319, 1, 0, 0, 0, 3323, 3320, 1, 0, 0, 0, 3323, 3322, 1, 0, 0, 0, 3324, 197, 1, 0, 0, 0, 3325, 3331, 3, 200, 100, 0, 3326, 3328, 5, 828, 0, 0, 3327, 3329, 7, 45, 0, 0, 3328, 3327, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 3, 200, 100, 0, 3331, 3326, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3331, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 199, 1, 0, 0, 0, 3335, 3337, 5, 866, 0, 0, 3336, 3335, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3340, 3, 282, 141, 0, 3339, 3341, 5, 867, 0, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 201, 1, 0, 0, 0, 3342, 3343, 5, 103, 0, 0, 3343, 3345, 5, 360, 0, 0, 3344, 3346, 7, 46, 0, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3348, 1, 0, 0, 0, 3347, 3349, 5, 450, 0, 0, 3348, 3347, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3351, 5, 83, 0, 0, 3351, 3353, 5, 882, 0, 0, 3352, 3354, 7, 7, 0, 0, 3353, 3352, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3356, 5, 88, 0, 0, 3356, 3357, 5, 173, 0, 0, 3357, 3363, 3, 662, 331, 0, 3358, 3359, 5, 130, 0, 0, 3359, 3360, 5, 866, 0, 0, 3360, 3361, 3, 686, 343, 0, 3361, 3362, 5, 867, 0, 0, 3362, 3364, 1, 0, 0, 0, 3363, 3358, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3368, 1, 0, 0, 0, 3365, 3366, 5, 26, 0, 0, 3366, 3367, 5, 155, 0, 0, 3367, 3369, 3, 704, 352, 0, 3368, 3365, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3376, 1, 0, 0, 0, 3370, 3372, 7, 47, 0, 0, 3371, 3373, 3, 314, 157, 0, 3372, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3377, 1, 0, 0, 0, 3376, 3370, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3384, 1, 0, 0, 0, 3378, 3380, 5, 102, 0, 0, 3379, 3381, 3, 316, 158, 0, 3380, 3379, 1, 0, 0, 0, 3381, 3382, 1, 0, 0, 0, 3382, 3380, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3385, 1, 0, 0, 0, 3384, 3378, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3390, 1, 0, 0, 0, 3386, 3387, 5, 79, 0, 0, 3387, 3388, 3, 730, 365, 0, 3388, 3389, 7, 48, 0, 0, 3389, 3391, 1, 0, 0, 0, 3390, 3386, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3403, 1, 0, 0, 0, 3392, 3393, 5, 866, 0, 0, 3393, 3398, 3, 236, 118, 0, 3394, 3395, 5, 868, 0, 0, 3395, 3397, 3, 236, 118, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3400, 1, 0, 0, 0, 3398, 3396, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3401, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3402, 5, 867, 0, 0, 3402, 3404, 1, 0, 0, 0, 3403, 3392, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3414, 1, 0, 0, 0, 3405, 3406, 5, 155, 0, 0, 3406, 3411, 3, 234, 117, 0, 3407, 3408, 5, 868, 0, 0, 3408, 3410, 3, 234, 117, 0, 3409, 3407, 1, 0, 0, 0, 3410, 3413, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3415, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3414, 3405, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 203, 1, 0, 0, 0, 3416, 3417, 5, 103, 0, 0, 3417, 3419, 5, 695, 0, 0, 3418, 3420, 7, 46, 0, 0, 3419, 3418, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3422, 1, 0, 0, 0, 3421, 3423, 5, 450, 0, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 5, 83, 0, 0, 3425, 3427, 5, 882, 0, 0, 3426, 3428, 7, 7, 0, 0, 3427, 3426, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 5, 88, 0, 0, 3430, 3431, 5, 173, 0, 0, 3431, 3435, 3, 662, 331, 0, 3432, 3433, 5, 26, 0, 0, 3433, 3434, 5, 155, 0, 0, 3434, 3436, 3, 704, 352, 0, 3435, 3432, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3447, 1, 0, 0, 0, 3437, 3438, 5, 587, 0, 0, 3438, 3439, 5, 423, 0, 0, 3439, 3441, 5, 20, 0, 0, 3440, 3442, 5, 859, 0, 0, 3441, 3440, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3445, 5, 882, 0, 0, 3444, 3446, 5, 858, 0, 0, 3445, 3444, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3448, 1, 0, 0, 0, 3447, 3437, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 3453, 1, 0, 0, 0, 3449, 3450, 5, 79, 0, 0, 3450, 3451, 3, 730, 365, 0, 3451, 3452, 7, 48, 0, 0, 3452, 3454, 1, 0, 0, 0, 3453, 3449, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3466, 1, 0, 0, 0, 3455, 3456, 5, 866, 0, 0, 3456, 3461, 3, 236, 118, 0, 3457, 3458, 5, 868, 0, 0, 3458, 3460, 3, 236, 118, 0, 3459, 3457, 1, 0, 0, 0, 3460, 3463, 1, 0, 0, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3464, 3465, 5, 867, 0, 0, 3465, 3467, 1, 0, 0, 0, 3466, 3455, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3477, 1, 0, 0, 0, 3468, 3469, 5, 155, 0, 0, 3469, 3474, 3, 234, 117, 0, 3470, 3471, 5, 868, 0, 0, 3471, 3473, 3, 234, 117, 0, 3472, 3470, 1, 0, 0, 0, 3473, 3476, 1, 0, 0, 0, 3474, 3472, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3477, 3468, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 205, 1, 0, 0, 0, 3479, 3480, 5, 866, 0, 0, 3480, 3482, 3, 224, 112, 0, 3481, 3483, 3, 258, 129, 0, 3482, 3481, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3485, 1, 0, 0, 0, 3484, 3486, 3, 328, 164, 0, 3485, 3484, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3489, 5, 867, 0, 0, 3488, 3490, 3, 258, 129, 0, 3489, 3488, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 3492, 1, 0, 0, 0, 3491, 3493, 3, 328, 164, 0, 3492, 3491, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3495, 1, 0, 0, 0, 3494, 3496, 3, 312, 156, 0, 3495, 3494, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 207, 1, 0, 0, 0, 3497, 3499, 5, 143, 0, 0, 3498, 3500, 7, 49, 0, 0, 3499, 3498, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 1, 0, 0, 0, 3501, 3503, 5, 88, 0, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3504, 1, 0, 0, 0, 3504, 3510, 3, 662, 331, 0, 3505, 3506, 5, 130, 0, 0, 3506, 3507, 5, 866, 0, 0, 3507, 3508, 3, 686, 343, 0, 3508, 3509, 5, 867, 0, 0, 3509, 3511, 1, 0, 0, 0, 3510, 3505, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3520, 1, 0, 0, 0, 3512, 3513, 5, 866, 0, 0, 3513, 3514, 3, 670, 335, 0, 3514, 3515, 5, 867, 0, 0, 3515, 3517, 1, 0, 0, 0, 3516, 3512, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 3521, 3, 228, 114, 0, 3519, 3521, 3, 232, 116, 0, 3520, 3516, 1, 0, 0, 0, 3520, 3519, 1, 0, 0, 0, 3521, 209, 1, 0, 0, 0, 3522, 3526, 3, 282, 141, 0, 3523, 3525, 3, 284, 142, 0, 3524, 3523, 1, 0, 0, 0, 3525, 3528, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3537, 1, 0, 0, 0, 3528, 3526, 1, 0, 0, 0, 3529, 3531, 5, 181, 0, 0, 3530, 3532, 7, 45, 0, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 3535, 1, 0, 0, 0, 3533, 3536, 3, 282, 141, 0, 3534, 3536, 3, 280, 140, 0, 3535, 3533, 1, 0, 0, 0, 3535, 3534, 1, 0, 0, 0, 3536, 3538, 1, 0, 0, 0, 3537, 3529, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3543, 1, 0, 0, 0, 3539, 3540, 5, 868, 0, 0, 3540, 3542, 3, 286, 143, 0, 3541, 3539, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3547, 1, 0, 0, 0, 3545, 3543, 1, 0, 0, 0, 3546, 3548, 3, 258, 129, 0, 3547, 3546, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 3550, 1, 0, 0, 0, 3549, 3551, 3, 328, 164, 0, 3550, 3549, 1, 0, 0, 0, 3550, 3551, 1, 0, 0, 0, 3551, 3553, 1, 0, 0, 0, 3552, 3554, 3, 238, 119, 0, 3553, 3552, 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3556, 1, 0, 0, 0, 3555, 3557, 3, 312, 156, 0, 3556, 3555, 1, 0, 0, 0, 3556, 3557, 1, 0, 0, 0, 3557, 3582, 1, 0, 0, 0, 3558, 3562, 3, 280, 140, 0, 3559, 3561, 3, 284, 142, 0, 3560, 3559, 1, 0, 0, 0, 3561, 3564, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3570, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3565, 3567, 5, 181, 0, 0, 3566, 3568, 7, 45, 0, 0, 3567, 3566, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 3, 280, 140, 0, 3570, 3565, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3574, 3, 258, 129, 0, 3573, 3572, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3576, 1, 0, 0, 0, 3575, 3577, 3, 328, 164, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3579, 1, 0, 0, 0, 3578, 3580, 3, 238, 119, 0, 3579, 3578, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3582, 1, 0, 0, 0, 3581, 3522, 1, 0, 0, 0, 3581, 3558, 1, 0, 0, 0, 3582, 211, 1, 0, 0, 0, 3583, 3585, 3, 50, 25, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3588, 3, 214, 107, 0, 3587, 3589, 3, 258, 129, 0, 3588, 3587, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3591, 1, 0, 0, 0, 3590, 3592, 3, 328, 164, 0, 3591, 3590, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3594, 1, 0, 0, 0, 3593, 3595, 3, 312, 156, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 213, 1, 0, 0, 0, 3596, 3597, 6, 107, -1, 0, 3597, 3598, 3, 216, 108, 0, 3598, 3613, 1, 0, 0, 0, 3599, 3600, 10, 2, 0, 0, 3600, 3602, 5, 181, 0, 0, 3601, 3603, 7, 45, 0, 0, 3602, 3601, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3612, 3, 216, 108, 0, 3605, 3606, 10, 1, 0, 0, 3606, 3608, 5, 59, 0, 0, 3607, 3609, 7, 45, 0, 0, 3608, 3607, 1, 0, 0, 0, 3608, 3609, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 3612, 3, 216, 108, 0, 3611, 3599, 1, 0, 0, 0, 3611, 3605, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 215, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3616, 3617, 6, 108, -1, 0, 3617, 3618, 3, 218, 109, 0, 3618, 3627, 1, 0, 0, 0, 3619, 3620, 10, 1, 0, 0, 3620, 3622, 5, 828, 0, 0, 3621, 3623, 7, 45, 0, 0, 3622, 3621, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3626, 3, 218, 109, 0, 3625, 3619, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 217, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3645, 3, 226, 113, 0, 3631, 3632, 5, 866, 0, 0, 3632, 3634, 3, 214, 107, 0, 3633, 3635, 3, 258, 129, 0, 3634, 3633, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3637, 1, 0, 0, 0, 3636, 3638, 3, 328, 164, 0, 3637, 3636, 1, 0, 0, 0, 3637, 3638, 1, 0, 0, 0, 3638, 3640, 1, 0, 0, 0, 3639, 3641, 3, 312, 156, 0, 3640, 3639, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3643, 5, 867, 0, 0, 3643, 3645, 1, 0, 0, 0, 3644, 3630, 1, 0, 0, 0, 3644, 3631, 1, 0, 0, 0, 3645, 219, 1, 0, 0, 0, 3646, 3649, 3, 254, 127, 0, 3647, 3649, 3, 256, 128, 0, 3648, 3646, 1, 0, 0, 0, 3648, 3647, 1, 0, 0, 0, 3649, 221, 1, 0, 0, 0, 3650, 3654, 3, 230, 115, 0, 3651, 3652, 5, 125, 0, 0, 3652, 3653, 5, 20, 0, 0, 3653, 3655, 3, 690, 345, 0, 3654, 3651, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3658, 1, 0, 0, 0, 3656, 3657, 5, 100, 0, 0, 3657, 3659, 3, 330, 165, 0, 3658, 3656, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 223, 1, 0, 0, 0, 3660, 3665, 3, 226, 113, 0, 3661, 3662, 7, 50, 0, 0, 3662, 3664, 3, 226, 113, 0, 3663, 3661, 1, 0, 0, 0, 3664, 3667, 1, 0, 0, 0, 3665, 3663, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3669, 1, 0, 0, 0, 3667, 3665, 1, 0, 0, 0, 3668, 3670, 3, 258, 129, 0, 3669, 3668, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3672, 1, 0, 0, 0, 3671, 3673, 3, 328, 164, 0, 3672, 3671, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3675, 1, 0, 0, 0, 3674, 3676, 3, 312, 156, 0, 3675, 3674, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 225, 1, 0, 0, 0, 3677, 3681, 3, 210, 105, 0, 3678, 3681, 3, 628, 314, 0, 3679, 3681, 3, 222, 111, 0, 3680, 3677, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3679, 1, 0, 0, 0, 3681, 227, 1, 0, 0, 0, 3682, 3688, 3, 210, 105, 0, 3683, 3684, 5, 173, 0, 0, 3684, 3688, 3, 662, 331, 0, 3685, 3688, 3, 760, 380, 0, 3686, 3688, 3, 230, 115, 0, 3687, 3682, 1, 0, 0, 0, 3687, 3683, 1, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3687, 3686, 1, 0, 0, 0, 3688, 229, 1, 0, 0, 0, 3689, 3690, 5, 189, 0, 0, 3690, 3691, 5, 586, 0, 0, 3691, 3697, 3, 762, 381, 0, 3692, 3693, 5, 868, 0, 0, 3693, 3694, 5, 586, 0, 0, 3694, 3696, 3, 762, 381, 0, 3695, 3692, 1, 0, 0, 0, 3696, 3699, 1, 0, 0, 0, 3697, 3695, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 231, 1, 0, 0, 0, 3699, 3697, 1, 0, 0, 0, 3700, 3701, 5, 155, 0, 0, 3701, 3706, 3, 234, 117, 0, 3702, 3703, 5, 868, 0, 0, 3703, 3705, 3, 234, 117, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3708, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 233, 1, 0, 0, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3710, 3, 674, 337, 0, 3710, 3711, 5, 857, 0, 0, 3711, 3712, 3, 764, 382, 0, 3712, 235, 1, 0, 0, 0, 3713, 3716, 3, 722, 361, 0, 3714, 3716, 5, 892, 0, 0, 3715, 3713, 1, 0, 0, 0, 3715, 3714, 1, 0, 0, 0, 3716, 237, 1, 0, 0, 0, 3717, 3718, 5, 65, 0, 0, 3718, 3728, 7, 51, 0, 0, 3719, 3720, 5, 510, 0, 0, 3720, 3725, 3, 662, 331, 0, 3721, 3722, 5, 868, 0, 0, 3722, 3724, 3, 662, 331, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3727, 1, 0, 0, 0, 3725, 3723, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3729, 1, 0, 0, 0, 3727, 3725, 1, 0, 0, 0, 3728, 3719, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3732, 1, 0, 0, 0, 3730, 3731, 7, 52, 0, 0, 3731, 3733, 5, 105, 0, 0, 3732, 3730, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3739, 1, 0, 0, 0, 3734, 3735, 5, 104, 0, 0, 3735, 3736, 5, 80, 0, 0, 3736, 3737, 5, 594, 0, 0, 3737, 3739, 5, 491, 0, 0, 3738, 3717, 1, 0, 0, 0, 3738, 3734, 1, 0, 0, 0, 3739, 239, 1, 0, 0, 0, 3740, 3742, 5, 44, 0, 0, 3741, 3743, 5, 107, 0, 0, 3742, 3741, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3746, 5, 549, 0, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3748, 1, 0, 0, 0, 3747, 3749, 5, 79, 0, 0, 3748, 3747, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3751, 5, 68, 0, 0, 3751, 3756, 3, 662, 331, 0, 3752, 3754, 5, 13, 0, 0, 3753, 3752, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3757, 3, 722, 361, 0, 3756, 3753, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3763, 1, 0, 0, 0, 3758, 3759, 5, 130, 0, 0, 3759, 3760, 5, 866, 0, 0, 3760, 3761, 3, 686, 343, 0, 3761, 3762, 5, 867, 0, 0, 3762, 3764, 1, 0, 0, 0, 3763, 3758, 1, 0, 0, 0, 3763, 3764, 1, 0, 0, 0, 3764, 3767, 1, 0, 0, 0, 3765, 3766, 5, 192, 0, 0, 3766, 3768, 3, 822, 411, 0, 3767, 3765, 1, 0, 0, 0, 3767, 3768, 1, 0, 0, 0, 3768, 3770, 1, 0, 0, 0, 3769, 3771, 3, 258, 129, 0, 3770, 3769, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3773, 5, 100, 0, 0, 3773, 3775, 3, 330, 165, 0, 3774, 3772, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 241, 1, 0, 0, 0, 3776, 3778, 5, 44, 0, 0, 3777, 3779, 5, 107, 0, 0, 3778, 3777, 1, 0, 0, 0, 3778, 3779, 1, 0, 0, 0, 3779, 3781, 1, 0, 0, 0, 3780, 3782, 5, 549, 0, 0, 3781, 3780, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3784, 1, 0, 0, 0, 3783, 3785, 5, 79, 0, 0, 3784, 3783, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3825, 1, 0, 0, 0, 3786, 3789, 3, 662, 331, 0, 3787, 3788, 5, 865, 0, 0, 3788, 3790, 5, 850, 0, 0, 3789, 3787, 1, 0, 0, 0, 3789, 3790, 1, 0, 0, 0, 3790, 3799, 1, 0, 0, 0, 3791, 3792, 5, 868, 0, 0, 3792, 3795, 3, 662, 331, 0, 3793, 3794, 5, 865, 0, 0, 3794, 3796, 5, 850, 0, 0, 3795, 3793, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3798, 1, 0, 0, 0, 3797, 3791, 1, 0, 0, 0, 3798, 3801, 1, 0, 0, 0, 3799, 3797, 1, 0, 0, 0, 3799, 3800, 1, 0, 0, 0, 3800, 3802, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3802, 3803, 5, 68, 0, 0, 3803, 3804, 3, 262, 131, 0, 3804, 3826, 1, 0, 0, 0, 3805, 3806, 5, 68, 0, 0, 3806, 3809, 3, 662, 331, 0, 3807, 3808, 5, 865, 0, 0, 3808, 3810, 5, 850, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3819, 1, 0, 0, 0, 3811, 3812, 5, 868, 0, 0, 3812, 3815, 3, 662, 331, 0, 3813, 3814, 5, 865, 0, 0, 3814, 3816, 5, 850, 0, 0, 3815, 3813, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3818, 1, 0, 0, 0, 3817, 3811, 1, 0, 0, 0, 3818, 3821, 1, 0, 0, 0, 3819, 3817, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3822, 3823, 5, 188, 0, 0, 3823, 3824, 3, 262, 131, 0, 3824, 3826, 1, 0, 0, 0, 3825, 3786, 1, 0, 0, 0, 3825, 3805, 1, 0, 0, 0, 3826, 3829, 1, 0, 0, 0, 3827, 3828, 5, 192, 0, 0, 3828, 3830, 3, 822, 411, 0, 3829, 3827, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 243, 1, 0, 0, 0, 3831, 3832, 5, 417, 0, 0, 3832, 3833, 3, 662, 331, 0, 3833, 3838, 5, 516, 0, 0, 3834, 3836, 5, 13, 0, 0, 3835, 3834, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3839, 3, 722, 361, 0, 3838, 3835, 1, 0, 0, 0, 3838, 3839, 1, 0, 0, 0, 3839, 245, 1, 0, 0, 0, 3840, 3841, 5, 417, 0, 0, 3841, 3842, 3, 662, 331, 0, 3842, 3843, 5, 135, 0, 0, 3843, 3850, 3, 652, 326, 0, 3844, 3845, 3, 832, 416, 0, 3845, 3846, 5, 866, 0, 0, 3846, 3847, 3, 766, 383, 0, 3847, 3848, 5, 867, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3851, 7, 53, 0, 0, 3850, 3844, 1, 0, 0, 0, 3850, 3849, 1, 0, 0, 0, 3851, 3854, 1, 0, 0, 0, 3852, 3853, 5, 192, 0, 0, 3853, 3855, 3, 822, 411, 0, 3854, 3852, 1, 0, 0, 0, 3854, 3855, 1, 0, 0, 0, 3855, 3858, 1, 0, 0, 0, 3856, 3857, 5, 100, 0, 0, 3857, 3859, 3, 330, 165, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 247, 1, 0, 0, 0, 3860, 3861, 5, 417, 0, 0, 3861, 3862, 3, 662, 331, 0, 3862, 3863, 5, 135, 0, 0, 3863, 3866, 7, 54, 0, 0, 3864, 3865, 5, 192, 0, 0, 3865, 3867, 3, 822, 411, 0, 3866, 3864, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 3870, 1, 0, 0, 0, 3868, 3869, 5, 100, 0, 0, 3869, 3871, 3, 330, 165, 0, 3870, 3868, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 249, 1, 0, 0, 0, 3872, 3873, 5, 417, 0, 0, 3873, 3874, 3, 662, 331, 0, 3874, 3875, 5, 334, 0, 0, 3875, 251, 1, 0, 0, 0, 3876, 3877, 5, 425, 0, 0, 3877, 3878, 5, 173, 0, 0, 3878, 3879, 5, 68, 0, 0, 3879, 3884, 3, 734, 367, 0, 3880, 3881, 5, 868, 0, 0, 3881, 3883, 3, 734, 367, 0, 3882, 3880, 1, 0, 0, 0, 3883, 3886, 1, 0, 0, 0, 3884, 3882, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 253, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3887, 3889, 5, 185, 0, 0, 3888, 3890, 5, 107, 0, 0, 3889, 3888, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3892, 1, 0, 0, 0, 3891, 3893, 5, 79, 0, 0, 3892, 3891, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3899, 3, 662, 331, 0, 3895, 3897, 5, 13, 0, 0, 3896, 3895, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3900, 3, 722, 361, 0, 3899, 3896, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 5, 155, 0, 0, 3902, 3907, 3, 234, 117, 0, 3903, 3904, 5, 868, 0, 0, 3904, 3906, 3, 234, 117, 0, 3905, 3903, 1, 0, 0, 0, 3906, 3909, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3912, 1, 0, 0, 0, 3909, 3907, 1, 0, 0, 0, 3910, 3911, 5, 192, 0, 0, 3911, 3913, 3, 822, 411, 0, 3912, 3910, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3915, 1, 0, 0, 0, 3914, 3916, 3, 258, 129, 0, 3915, 3914, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 3918, 1, 0, 0, 0, 3917, 3919, 3, 328, 164, 0, 3918, 3917, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 255, 1, 0, 0, 0, 3920, 3922, 5, 185, 0, 0, 3921, 3923, 5, 107, 0, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3925, 1, 0, 0, 0, 3924, 3926, 5, 79, 0, 0, 3925, 3924, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3928, 3, 262, 131, 0, 3928, 3929, 5, 155, 0, 0, 3929, 3934, 3, 234, 117, 0, 3930, 3931, 5, 868, 0, 0, 3931, 3933, 3, 234, 117, 0, 3932, 3930, 1, 0, 0, 0, 3933, 3936, 1, 0, 0, 0, 3934, 3932, 1, 0, 0, 0, 3934, 3935, 1, 0, 0, 0, 3935, 3939, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3937, 3938, 5, 192, 0, 0, 3938, 3940, 3, 822, 411, 0, 3939, 3937, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 257, 1, 0, 0, 0, 3941, 3942, 5, 125, 0, 0, 3942, 3943, 5, 20, 0, 0, 3943, 3948, 3, 260, 130, 0, 3944, 3945, 5, 868, 0, 0, 3945, 3947, 3, 260, 130, 0, 3946, 3944, 1, 0, 0, 0, 3947, 3950, 1, 0, 0, 0, 3948, 3946, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 259, 1, 0, 0, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3953, 3, 822, 411, 0, 3952, 3954, 7, 55, 0, 0, 3953, 3952, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 261, 1, 0, 0, 0, 3955, 3960, 3, 264, 132, 0, 3956, 3957, 5, 868, 0, 0, 3957, 3959, 3, 264, 132, 0, 3958, 3956, 1, 0, 0, 0, 3959, 3962, 1, 0, 0, 0, 3960, 3958, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 263, 1, 0, 0, 0, 3962, 3960, 1, 0, 0, 0, 3963, 3967, 3, 266, 133, 0, 3964, 3966, 3, 276, 138, 0, 3965, 3964, 1, 0, 0, 0, 3966, 3969, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3982, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3970, 3971, 5, 866, 0, 0, 3971, 3975, 3, 266, 133, 0, 3972, 3974, 3, 276, 138, 0, 3973, 3972, 1, 0, 0, 0, 3974, 3977, 1, 0, 0, 0, 3975, 3973, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3978, 1, 0, 0, 0, 3977, 3975, 1, 0, 0, 0, 3978, 3979, 5, 867, 0, 0, 3979, 3982, 1, 0, 0, 0, 3980, 3982, 3, 288, 144, 0, 3981, 3963, 1, 0, 0, 0, 3981, 3970, 1, 0, 0, 0, 3981, 3980, 1, 0, 0, 0, 3982, 265, 1, 0, 0, 0, 3983, 3989, 3, 662, 331, 0, 3984, 3985, 5, 130, 0, 0, 3985, 3986, 5, 866, 0, 0, 3986, 3987, 3, 686, 343, 0, 3987, 3988, 5, 867, 0, 0, 3988, 3990, 1, 0, 0, 0, 3989, 3984, 1, 0, 0, 0, 3989, 3990, 1, 0, 0, 0, 3990, 3995, 1, 0, 0, 0, 3991, 3993, 5, 13, 0, 0, 3992, 3991, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 3996, 3, 722, 361, 0, 3995, 3992, 1, 0, 0, 0, 3995, 3996, 1, 0, 0, 0, 3996, 4005, 1, 0, 0, 0, 3997, 4002, 3, 272, 136, 0, 3998, 3999, 5, 868, 0, 0, 3999, 4001, 3, 272, 136, 0, 4000, 3998, 1, 0, 0, 0, 4001, 4004, 1, 0, 0, 0, 4002, 4000, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4006, 1, 0, 0, 0, 4004, 4002, 1, 0, 0, 0, 4005, 3997, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 4023, 1, 0, 0, 0, 4007, 4009, 5, 95, 0, 0, 4008, 4007, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 4012, 3, 268, 134, 0, 4011, 4013, 5, 13, 0, 0, 4012, 4011, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 4016, 3, 722, 361, 0, 4015, 4017, 3, 270, 135, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4023, 1, 0, 0, 0, 4018, 4019, 5, 866, 0, 0, 4019, 4020, 3, 262, 131, 0, 4020, 4021, 5, 867, 0, 0, 4021, 4023, 1, 0, 0, 0, 4022, 3983, 1, 0, 0, 0, 4022, 4008, 1, 0, 0, 0, 4022, 4018, 1, 0, 0, 0, 4023, 267, 1, 0, 0, 0, 4024, 4030, 3, 210, 105, 0, 4025, 4026, 5, 866, 0, 0, 4026, 4027, 3, 210, 105, 0, 4027, 4028, 5, 867, 0, 0, 4028, 4030, 1, 0, 0, 0, 4029, 4024, 1, 0, 0, 0, 4029, 4025, 1, 0, 0, 0, 4030, 269, 1, 0, 0, 0, 4031, 4032, 5, 866, 0, 0, 4032, 4033, 3, 670, 335, 0, 4033, 4034, 5, 867, 0, 0, 4034, 271, 1, 0, 0, 0, 4035, 4036, 7, 56, 0, 0, 4036, 4039, 7, 19, 0, 0, 4037, 4038, 5, 65, 0, 0, 4038, 4040, 3, 274, 137, 0, 4039, 4037, 1, 0, 0, 0, 4039, 4040, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4043, 5, 866, 0, 0, 4042, 4044, 3, 650, 325, 0, 4043, 4042, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 5, 867, 0, 0, 4046, 273, 1, 0, 0, 0, 4047, 4053, 5, 91, 0, 0, 4048, 4049, 5, 125, 0, 0, 4049, 4053, 5, 20, 0, 0, 4050, 4051, 5, 74, 0, 0, 4051, 4053, 5, 20, 0, 0, 4052, 4047, 1, 0, 0, 0, 4052, 4048, 1, 0, 0, 0, 4052, 4050, 1, 0, 0, 0, 4053, 275, 1, 0, 0, 0, 4054, 4056, 7, 57, 0, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 5, 91, 0, 0, 4058, 4060, 5, 95, 0, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 4065, 3, 266, 133, 0, 4062, 4064, 3, 278, 139, 0, 4063, 4062, 1, 0, 0, 0, 4064, 4067, 1, 0, 0, 0, 4065, 4063, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4104, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4068, 4069, 5, 172, 0, 0, 4069, 4073, 3, 266, 133, 0, 4070, 4072, 3, 278, 139, 0, 4071, 4070, 1, 0, 0, 0, 4072, 4075, 1, 0, 0, 0, 4073, 4071, 1, 0, 0, 0, 4073, 4074, 1, 0, 0, 0, 4074, 4104, 1, 0, 0, 0, 4075, 4073, 1, 0, 0, 0, 4076, 4078, 7, 58, 0, 0, 4077, 4079, 5, 127, 0, 0, 4078, 4077, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4082, 5, 91, 0, 0, 4081, 4083, 5, 95, 0, 0, 4082, 4081, 1, 0, 0, 0, 4082, 4083, 1, 0, 0, 0, 4083, 4084, 1, 0, 0, 0, 4084, 4088, 3, 266, 133, 0, 4085, 4087, 3, 278, 139, 0, 4086, 4085, 1, 0, 0, 0, 4087, 4090, 1, 0, 0, 0, 4088, 4086, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4104, 1, 0, 0, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4099, 5, 113, 0, 0, 4092, 4095, 5, 84, 0, 0, 4093, 4095, 7, 58, 0, 0, 4094, 4092, 1, 0, 0, 0, 4094, 4093, 1, 0, 0, 0, 4095, 4097, 1, 0, 0, 0, 4096, 4098, 5, 127, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4100, 1, 0, 0, 0, 4099, 4094, 1, 0, 0, 0, 4099, 4100, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4102, 5, 91, 0, 0, 4102, 4104, 3, 266, 133, 0, 4103, 4055, 1, 0, 0, 0, 4103, 4068, 1, 0, 0, 0, 4103, 4076, 1, 0, 0, 0, 4103, 4091, 1, 0, 0, 0, 4104, 277, 1, 0, 0, 0, 4105, 4108, 5, 119, 0, 0, 4106, 4109, 3, 822, 411, 0, 4107, 4109, 3, 678, 339, 0, 4108, 4106, 1, 0, 0, 0, 4108, 4107, 1, 0, 0, 0, 4109, 4116, 1, 0, 0, 0, 4110, 4111, 5, 188, 0, 0, 4111, 4112, 5, 866, 0, 0, 4112, 4113, 3, 670, 335, 0, 4113, 4114, 5, 867, 0, 0, 4114, 4116, 1, 0, 0, 0, 4115, 4105, 1, 0, 0, 0, 4115, 4110, 1, 0, 0, 0, 4116, 279, 1, 0, 0, 0, 4117, 4118, 5, 866, 0, 0, 4118, 4119, 3, 282, 141, 0, 4119, 4120, 5, 867, 0, 0, 4120, 4126, 1, 0, 0, 0, 4121, 4122, 5, 866, 0, 0, 4122, 4123, 3, 280, 140, 0, 4123, 4124, 5, 867, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4117, 1, 0, 0, 0, 4125, 4121, 1, 0, 0, 0, 4126, 281, 1, 0, 0, 0, 4127, 4131, 5, 154, 0, 0, 4128, 4130, 3, 298, 149, 0, 4129, 4128, 1, 0, 0, 0, 4130, 4133, 1, 0, 0, 0, 4131, 4129, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 4134, 1, 0, 0, 0, 4133, 4131, 1, 0, 0, 0, 4134, 4136, 3, 300, 150, 0, 4135, 4137, 3, 312, 156, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4140, 3, 318, 159, 0, 4139, 4141, 3, 320, 160, 0, 4140, 4139, 1, 0, 0, 0, 4140, 4141, 1, 0, 0, 0, 4141, 4143, 1, 0, 0, 0, 4142, 4144, 3, 322, 161, 0, 4143, 4142, 1, 0, 0, 0, 4143, 4144, 1, 0, 0, 0, 4144, 4146, 1, 0, 0, 0, 4145, 4147, 3, 324, 162, 0, 4146, 4145, 1, 0, 0, 0, 4146, 4147, 1, 0, 0, 0, 4147, 4149, 1, 0, 0, 0, 4148, 4150, 3, 258, 129, 0, 4149, 4148, 1, 0, 0, 0, 4149, 4150, 1, 0, 0, 0, 4150, 4152, 1, 0, 0, 0, 4151, 4153, 3, 328, 164, 0, 4152, 4151, 1, 0, 0, 0, 4152, 4153, 1, 0, 0, 0, 4153, 4155, 1, 0, 0, 0, 4154, 4156, 3, 312, 156, 0, 4155, 4154, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4158, 1, 0, 0, 0, 4157, 4159, 3, 284, 142, 0, 4158, 4157, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 283, 1, 0, 0, 0, 4160, 4162, 5, 181, 0, 0, 4161, 4163, 7, 45, 0, 0, 4162, 4161, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4166, 1, 0, 0, 0, 4164, 4167, 3, 282, 141, 0, 4165, 4167, 3, 280, 140, 0, 4166, 4164, 1, 0, 0, 0, 4166, 4165, 1, 0, 0, 0, 4167, 285, 1, 0, 0, 0, 4168, 4183, 5, 95, 0, 0, 4169, 4184, 3, 282, 141, 0, 4170, 4184, 3, 280, 140, 0, 4171, 4174, 5, 866, 0, 0, 4172, 4175, 3, 282, 141, 0, 4173, 4175, 3, 280, 140, 0, 4174, 4172, 1, 0, 0, 0, 4174, 4173, 1, 0, 0, 0, 4175, 4176, 1, 0, 0, 0, 4176, 4181, 5, 867, 0, 0, 4177, 4179, 5, 13, 0, 0, 4178, 4177, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4182, 3, 722, 361, 0, 4181, 4178, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4184, 1, 0, 0, 0, 4183, 4169, 1, 0, 0, 0, 4183, 4170, 1, 0, 0, 0, 4183, 4171, 1, 0, 0, 0, 4184, 287, 1, 0, 0, 0, 4185, 4186, 5, 253, 0, 0, 4186, 4187, 5, 866, 0, 0, 4187, 4188, 5, 882, 0, 0, 4188, 4189, 5, 868, 0, 0, 4189, 4190, 5, 882, 0, 0, 4190, 4191, 5, 337, 0, 0, 4191, 4192, 5, 866, 0, 0, 4192, 4193, 3, 290, 145, 0, 4193, 4194, 5, 867, 0, 0, 4194, 4199, 5, 867, 0, 0, 4195, 4197, 5, 13, 0, 0, 4196, 4195, 1, 0, 0, 0, 4196, 4197, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4200, 3, 722, 361, 0, 4199, 4196, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 289, 1, 0, 0, 0, 4201, 4206, 3, 292, 146, 0, 4202, 4203, 5, 868, 0, 0, 4203, 4205, 3, 292, 146, 0, 4204, 4202, 1, 0, 0, 0, 4205, 4208, 1, 0, 0, 0, 4206, 4204, 1, 0, 0, 0, 4206, 4207, 1, 0, 0, 0, 4207, 291, 1, 0, 0, 0, 4208, 4206, 1, 0, 0, 0, 4209, 4226, 3, 674, 337, 0, 4210, 4211, 5, 65, 0, 0, 4211, 4227, 5, 256, 0, 0, 4212, 4224, 3, 744, 372, 0, 4213, 4214, 5, 257, 0, 0, 4214, 4216, 5, 882, 0, 0, 4215, 4217, 3, 294, 147, 0, 4216, 4215, 1, 0, 0, 0, 4216, 4217, 1, 0, 0, 0, 4217, 4219, 1, 0, 0, 0, 4218, 4220, 3, 296, 148, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4225, 1, 0, 0, 0, 4221, 4222, 5, 60, 0, 0, 4222, 4223, 5, 257, 0, 0, 4223, 4225, 5, 882, 0, 0, 4224, 4213, 1, 0, 0, 0, 4224, 4221, 1, 0, 0, 0, 4225, 4227, 1, 0, 0, 0, 4226, 4210, 1, 0, 0, 0, 4226, 4212, 1, 0, 0, 0, 4227, 4239, 1, 0, 0, 0, 4228, 4230, 5, 255, 0, 0, 4229, 4231, 5, 257, 0, 0, 4230, 4229, 1, 0, 0, 0, 4230, 4231, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4233, 5, 882, 0, 0, 4233, 4234, 5, 337, 0, 0, 4234, 4235, 5, 866, 0, 0, 4235, 4236, 3, 290, 145, 0, 4236, 4237, 5, 867, 0, 0, 4237, 4239, 1, 0, 0, 0, 4238, 4209, 1, 0, 0, 0, 4238, 4228, 1, 0, 0, 0, 4239, 293, 1, 0, 0, 0, 4240, 4245, 5, 116, 0, 0, 4241, 4245, 5, 382, 0, 0, 4242, 4243, 5, 42, 0, 0, 4243, 4245, 3, 772, 386, 0, 4244, 4240, 1, 0, 0, 0, 4244, 4241, 1, 0, 0, 0, 4244, 4242, 1, 0, 0, 0, 4245, 4246, 1, 0, 0, 0, 4246, 4247, 5, 119, 0, 0, 4247, 4248, 5, 55, 0, 0, 4248, 295, 1, 0, 0, 0, 4249, 4254, 5, 116, 0, 0, 4250, 4254, 5, 382, 0, 0, 4251, 4252, 5, 42, 0, 0, 4252, 4254, 3, 772, 386, 0, 4253, 4249, 1, 0, 0, 0, 4253, 4250, 1, 0, 0, 0, 4253, 4251, 1, 0, 0, 0, 4254, 4255, 1, 0, 0, 0, 4255, 4256, 5, 119, 0, 0, 4256, 4257, 5, 382, 0, 0, 4257, 297, 1, 0, 0, 0, 4258, 4267, 7, 59, 0, 0, 4259, 4267, 5, 76, 0, 0, 4260, 4267, 5, 172, 0, 0, 4261, 4267, 5, 168, 0, 0, 4262, 4267, 5, 166, 0, 0, 4263, 4267, 5, 636, 0, 0, 4264, 4267, 7, 60, 0, 0, 4265, 4267, 5, 167, 0, 0, 4266, 4258, 1, 0, 0, 0, 4266, 4259, 1, 0, 0, 0, 4266, 4260, 1, 0, 0, 0, 4266, 4261, 1, 0, 0, 0, 4266, 4262, 1, 0, 0, 0, 4266, 4263, 1, 0, 0, 0, 4266, 4264, 1, 0, 0, 0, 4266, 4265, 1, 0, 0, 0, 4267, 299, 1, 0, 0, 0, 4268, 4271, 3, 306, 153, 0, 4269, 4271, 3, 302, 151, 0, 4270, 4268, 1, 0, 0, 0, 4270, 4269, 1, 0, 0, 0, 4271, 4276, 1, 0, 0, 0, 4272, 4273, 5, 868, 0, 0, 4273, 4275, 3, 302, 151, 0, 4274, 4272, 1, 0, 0, 0, 4275, 4278, 1, 0, 0, 0, 4276, 4274, 1, 0, 0, 0, 4276, 4277, 1, 0, 0, 0, 4277, 301, 1, 0, 0, 0, 4278, 4276, 1, 0, 0, 0, 4279, 4295, 3, 304, 152, 0, 4280, 4285, 3, 308, 154, 0, 4281, 4283, 5, 13, 0, 0, 4282, 4281, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4286, 3, 722, 361, 0, 4285, 4282, 1, 0, 0, 0, 4285, 4286, 1, 0, 0, 0, 4286, 4295, 1, 0, 0, 0, 4287, 4292, 3, 310, 155, 0, 4288, 4290, 5, 13, 0, 0, 4289, 4288, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4293, 3, 722, 361, 0, 4292, 4289, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4295, 1, 0, 0, 0, 4294, 4279, 1, 0, 0, 0, 4294, 4280, 1, 0, 0, 0, 4294, 4287, 1, 0, 0, 0, 4295, 303, 1, 0, 0, 0, 4296, 4297, 3, 718, 359, 0, 4297, 4298, 5, 865, 0, 0, 4298, 4299, 5, 850, 0, 0, 4299, 305, 1, 0, 0, 0, 4300, 4301, 5, 850, 0, 0, 4301, 307, 1, 0, 0, 0, 4302, 4303, 3, 674, 337, 0, 4303, 309, 1, 0, 0, 0, 4304, 4305, 5, 892, 0, 0, 4305, 4307, 5, 841, 0, 0, 4306, 4304, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4311, 3, 822, 411, 0, 4309, 4311, 3, 782, 391, 0, 4310, 4306, 1, 0, 0, 0, 4310, 4309, 1, 0, 0, 0, 4311, 311, 1, 0, 0, 0, 4312, 4313, 5, 88, 0, 0, 4313, 4318, 3, 236, 118, 0, 4314, 4315, 5, 868, 0, 0, 4315, 4317, 3, 236, 118, 0, 4316, 4314, 1, 0, 0, 0, 4317, 4320, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4349, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4321, 4322, 5, 88, 0, 0, 4322, 4323, 5, 372, 0, 0, 4323, 4349, 5, 882, 0, 0, 4324, 4325, 5, 88, 0, 0, 4325, 4326, 5, 128, 0, 0, 4326, 4330, 5, 882, 0, 0, 4327, 4328, 5, 26, 0, 0, 4328, 4329, 5, 155, 0, 0, 4329, 4331, 3, 704, 352, 0, 4330, 4327, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4338, 1, 0, 0, 0, 4332, 4334, 7, 47, 0, 0, 4333, 4335, 3, 314, 157, 0, 4334, 4333, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4334, 1, 0, 0, 0, 4336, 4337, 1, 0, 0, 0, 4337, 4339, 1, 0, 0, 0, 4338, 4332, 1, 0, 0, 0, 4338, 4339, 1, 0, 0, 0, 4339, 4346, 1, 0, 0, 0, 4340, 4342, 5, 102, 0, 0, 4341, 4343, 3, 316, 158, 0, 4342, 4341, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4344, 4345, 1, 0, 0, 0, 4345, 4347, 1, 0, 0, 0, 4346, 4340, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4349, 1, 0, 0, 0, 4348, 4312, 1, 0, 0, 0, 4348, 4321, 1, 0, 0, 0, 4348, 4324, 1, 0, 0, 0, 4349, 313, 1, 0, 0, 0, 4350, 4351, 5, 174, 0, 0, 4351, 4352, 5, 20, 0, 0, 4352, 4363, 5, 882, 0, 0, 4353, 4355, 5, 123, 0, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4356, 1, 0, 0, 0, 4356, 4357, 5, 56, 0, 0, 4357, 4358, 5, 20, 0, 0, 4358, 4363, 5, 882, 0, 0, 4359, 4360, 5, 58, 0, 0, 4360, 4361, 5, 20, 0, 0, 4361, 4363, 5, 882, 0, 0, 4362, 4350, 1, 0, 0, 0, 4362, 4354, 1, 0, 0, 0, 4362, 4359, 1, 0, 0, 0, 4363, 315, 1, 0, 0, 0, 4364, 4365, 5, 171, 0, 0, 4365, 4366, 5, 20, 0, 0, 4366, 4371, 5, 882, 0, 0, 4367, 4368, 5, 174, 0, 0, 4368, 4369, 5, 20, 0, 0, 4369, 4371, 5, 882, 0, 0, 4370, 4364, 1, 0, 0, 0, 4370, 4367, 1, 0, 0, 0, 4371, 317, 1, 0, 0, 0, 4372, 4373, 5, 68, 0, 0, 4373, 4375, 3, 262, 131, 0, 4374, 4372, 1, 0, 0, 0, 4374, 4375, 1, 0, 0, 0, 4375, 4381, 1, 0, 0, 0, 4376, 4379, 5, 192, 0, 0, 4377, 4380, 3, 822, 411, 0, 4378, 4380, 3, 678, 339, 0, 4379, 4377, 1, 0, 0, 0, 4379, 4378, 1, 0, 0, 0, 4380, 4382, 1, 0, 0, 0, 4381, 4376, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 319, 1, 0, 0, 0, 4383, 4384, 5, 74, 0, 0, 4384, 4385, 5, 20, 0, 0, 4385, 4390, 3, 326, 163, 0, 4386, 4387, 5, 868, 0, 0, 4387, 4389, 3, 326, 163, 0, 4388, 4386, 1, 0, 0, 0, 4389, 4392, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 4395, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4394, 5, 194, 0, 0, 4394, 4396, 5, 584, 0, 0, 4395, 4393, 1, 0, 0, 0, 4395, 4396, 1, 0, 0, 0, 4396, 321, 1, 0, 0, 0, 4397, 4398, 5, 75, 0, 0, 4398, 4399, 3, 822, 411, 0, 4399, 323, 1, 0, 0, 0, 4400, 4401, 5, 689, 0, 0, 4401, 4402, 3, 800, 400, 0, 4402, 4403, 5, 13, 0, 0, 4403, 4404, 5, 866, 0, 0, 4404, 4405, 3, 798, 399, 0, 4405, 4415, 5, 867, 0, 0, 4406, 4407, 5, 868, 0, 0, 4407, 4408, 3, 800, 400, 0, 4408, 4409, 5, 13, 0, 0, 4409, 4410, 5, 866, 0, 0, 4410, 4411, 3, 798, 399, 0, 4411, 4412, 5, 867, 0, 0, 4412, 4414, 1, 0, 0, 0, 4413, 4406, 1, 0, 0, 0, 4414, 4417, 1, 0, 0, 0, 4415, 4413, 1, 0, 0, 0, 4415, 4416, 1, 0, 0, 0, 4416, 325, 1, 0, 0, 0, 4417, 4415, 1, 0, 0, 0, 4418, 4420, 3, 822, 411, 0, 4419, 4421, 7, 55, 0, 0, 4420, 4419, 1, 0, 0, 0, 4420, 4421, 1, 0, 0, 0, 4421, 327, 1, 0, 0, 0, 4422, 4433, 5, 100, 0, 0, 4423, 4424, 3, 330, 165, 0, 4424, 4425, 5, 868, 0, 0, 4425, 4427, 1, 0, 0, 0, 4426, 4423, 1, 0, 0, 0, 4426, 4427, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 4434, 3, 330, 165, 0, 4429, 4430, 3, 330, 165, 0, 4430, 4431, 5, 509, 0, 0, 4431, 4432, 3, 330, 165, 0, 4432, 4434, 1, 0, 0, 0, 4433, 4426, 1, 0, 0, 0, 4433, 4429, 1, 0, 0, 0, 4434, 329, 1, 0, 0, 0, 4435, 4439, 3, 730, 365, 0, 4436, 4439, 3, 702, 351, 0, 4437, 4439, 3, 724, 362, 0, 4438, 4435, 1, 0, 0, 0, 4438, 4436, 1, 0, 0, 0, 4438, 4437, 1, 0, 0, 0, 4439, 331, 1, 0, 0, 0, 4440, 4441, 5, 640, 0, 0, 4441, 4450, 5, 664, 0, 0, 4442, 4447, 3, 354, 177, 0, 4443, 4444, 5, 868, 0, 0, 4444, 4446, 3, 354, 177, 0, 4445, 4443, 1, 0, 0, 0, 4446, 4449, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4447, 4448, 1, 0, 0, 0, 4448, 4451, 1, 0, 0, 0, 4449, 4447, 1, 0, 0, 0, 4450, 4442, 1, 0, 0, 0, 4450, 4451, 1, 0, 0, 0, 4451, 333, 1, 0, 0, 0, 4452, 4454, 5, 317, 0, 0, 4453, 4455, 5, 691, 0, 0, 4454, 4453, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 335, 1, 0, 0, 0, 4456, 4458, 5, 341, 0, 0, 4457, 4459, 5, 691, 0, 0, 4458, 4457, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 4465, 1, 0, 0, 0, 4460, 4462, 5, 11, 0, 0, 4461, 4463, 5, 502, 0, 0, 4462, 4461, 1, 0, 0, 0, 4462, 4463, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4466, 5, 326, 0, 0, 4465, 4460, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 4471, 1, 0, 0, 0, 4467, 4469, 5, 502, 0, 0, 4468, 4467, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4472, 5, 140, 0, 0, 4471, 4468, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 337, 1, 0, 0, 0, 4473, 4475, 5, 583, 0, 0, 4474, 4476, 5, 691, 0, 0, 4475, 4474, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 4482, 1, 0, 0, 0, 4477, 4479, 5, 11, 0, 0, 4478, 4480, 5, 502, 0, 0, 4479, 4478, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 4483, 5, 326, 0, 0, 4482, 4477, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 4488, 1, 0, 0, 0, 4484, 4486, 5, 502, 0, 0, 4485, 4484, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4489, 5, 140, 0, 0, 4488, 4485, 1, 0, 0, 0, 4488, 4489, 1, 0, 0, 0, 4489, 339, 1, 0, 0, 0, 4490, 4491, 5, 589, 0, 0, 4491, 4492, 3, 722, 361, 0, 4492, 341, 1, 0, 0, 0, 4493, 4495, 5, 583, 0, 0, 4494, 4496, 5, 691, 0, 0, 4495, 4494, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4499, 5, 176, 0, 0, 4498, 4500, 5, 589, 0, 0, 4499, 4498, 1, 0, 0, 0, 4499, 4500, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 4502, 3, 722, 361, 0, 4502, 343, 1, 0, 0, 0, 4503, 4504, 5, 140, 0, 0, 4504, 4505, 5, 589, 0, 0, 4505, 4506, 3, 722, 361, 0, 4506, 345, 1, 0, 0, 0, 4507, 4508, 5, 104, 0, 0, 4508, 4509, 7, 61, 0, 0, 4509, 4514, 3, 356, 178, 0, 4510, 4511, 5, 868, 0, 0, 4511, 4513, 3, 356, 178, 0, 4512, 4510, 1, 0, 0, 0, 4513, 4516, 1, 0, 0, 0, 4514, 4512, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 347, 1, 0, 0, 0, 4516, 4514, 1, 0, 0, 0, 4517, 4518, 5, 183, 0, 0, 4518, 4519, 5, 752, 0, 0, 4519, 349, 1, 0, 0, 0, 4520, 4521, 5, 155, 0, 0, 4521, 4522, 5, 313, 0, 0, 4522, 4523, 5, 857, 0, 0, 4523, 4524, 7, 26, 0, 0, 4524, 351, 1, 0, 0, 0, 4525, 4527, 5, 155, 0, 0, 4526, 4528, 7, 62, 0, 0, 4527, 4526, 1, 0, 0, 0, 4527, 4528, 1, 0, 0, 0, 4528, 4529, 1, 0, 0, 0, 4529, 4530, 5, 664, 0, 0, 4530, 4535, 3, 360, 180, 0, 4531, 4532, 5, 868, 0, 0, 4532, 4534, 3, 360, 180, 0, 4533, 4531, 1, 0, 0, 0, 4534, 4537, 1, 0, 0, 0, 4535, 4533, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 353, 1, 0, 0, 0, 4537, 4535, 1, 0, 0, 0, 4538, 4539, 5, 194, 0, 0, 4539, 4540, 5, 350, 0, 0, 4540, 4546, 5, 600, 0, 0, 4541, 4542, 5, 135, 0, 0, 4542, 4546, 5, 195, 0, 0, 4543, 4544, 5, 135, 0, 0, 4544, 4546, 5, 515, 0, 0, 4545, 4538, 1, 0, 0, 0, 4545, 4541, 1, 0, 0, 0, 4545, 4543, 1, 0, 0, 0, 4546, 355, 1, 0, 0, 0, 4547, 4552, 3, 662, 331, 0, 4548, 4550, 5, 13, 0, 0, 4549, 4548, 1, 0, 0, 0, 4549, 4550, 1, 0, 0, 0, 4550, 4551, 1, 0, 0, 0, 4551, 4553, 3, 722, 361, 0, 4552, 4549, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 4555, 3, 358, 179, 0, 4555, 357, 1, 0, 0, 0, 4556, 4558, 5, 135, 0, 0, 4557, 4559, 5, 450, 0, 0, 4558, 4557, 1, 0, 0, 0, 4558, 4559, 1, 0, 0, 0, 4559, 4565, 1, 0, 0, 0, 4560, 4562, 5, 107, 0, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 4563, 1, 0, 0, 0, 4563, 4565, 5, 195, 0, 0, 4564, 4556, 1, 0, 0, 0, 4564, 4561, 1, 0, 0, 0, 4565, 359, 1, 0, 0, 0, 4566, 4567, 5, 440, 0, 0, 4567, 4568, 5, 448, 0, 0, 4568, 4574, 3, 362, 181, 0, 4569, 4570, 5, 135, 0, 0, 4570, 4574, 5, 195, 0, 0, 4571, 4572, 5, 135, 0, 0, 4572, 4574, 5, 515, 0, 0, 4573, 4566, 1, 0, 0, 0, 4573, 4569, 1, 0, 0, 0, 4573, 4571, 1, 0, 0, 0, 4574, 361, 1, 0, 0, 0, 4575, 4576, 5, 809, 0, 0, 4576, 4583, 5, 135, 0, 0, 4577, 4578, 5, 135, 0, 0, 4578, 4583, 5, 810, 0, 0, 4579, 4580, 5, 135, 0, 0, 4580, 4583, 5, 811, 0, 0, 4581, 4583, 5, 812, 0, 0, 4582, 4575, 1, 0, 0, 0, 4582, 4577, 1, 0, 0, 0, 4582, 4579, 1, 0, 0, 0, 4582, 4581, 1, 0, 0, 0, 4583, 363, 1, 0, 0, 0, 4584, 4585, 5, 25, 0, 0, 4585, 4586, 5, 453, 0, 0, 4586, 4587, 5, 176, 0, 0, 4587, 4592, 3, 380, 190, 0, 4588, 4589, 5, 868, 0, 0, 4589, 4591, 3, 380, 190, 0, 4590, 4588, 1, 0, 0, 0, 4591, 4594, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4592, 4593, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4595, 4597, 3, 400, 200, 0, 4596, 4595, 1, 0, 0, 0, 4596, 4597, 1, 0, 0, 0, 4597, 365, 1, 0, 0, 0, 4598, 4599, 5, 25, 0, 0, 4599, 4600, 5, 572, 0, 0, 4600, 4601, 5, 400, 0, 0, 4601, 4606, 3, 402, 201, 0, 4602, 4603, 5, 868, 0, 0, 4603, 4605, 3, 402, 201, 0, 4604, 4602, 1, 0, 0, 0, 4605, 4608, 1, 0, 0, 0, 4606, 4604, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 4610, 1, 0, 0, 0, 4608, 4606, 1, 0, 0, 0, 4609, 4611, 3, 400, 200, 0, 4610, 4609, 1, 0, 0, 0, 4610, 4611, 1, 0, 0, 0, 4611, 367, 1, 0, 0, 0, 4612, 4613, 5, 25, 0, 0, 4613, 4614, 5, 572, 0, 0, 4614, 4615, 5, 605, 0, 0, 4615, 4616, 5, 176, 0, 0, 4616, 4621, 3, 390, 195, 0, 4617, 4618, 5, 868, 0, 0, 4618, 4620, 3, 390, 195, 0, 4619, 4617, 1, 0, 0, 0, 4620, 4623, 1, 0, 0, 0, 4621, 4619, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4625, 1, 0, 0, 0, 4623, 4621, 1, 0, 0, 0, 4624, 4626, 3, 400, 200, 0, 4625, 4624, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 369, 1, 0, 0, 0, 4627, 4628, 5, 133, 0, 0, 4628, 4629, 7, 63, 0, 0, 4629, 4634, 5, 452, 0, 0, 4630, 4631, 5, 176, 0, 0, 4631, 4635, 5, 882, 0, 0, 4632, 4633, 5, 16, 0, 0, 4633, 4635, 5, 882, 0, 0, 4634, 4630, 1, 0, 0, 0, 4634, 4632, 1, 0, 0, 0, 4635, 371, 1, 0, 0, 0, 4636, 4637, 5, 640, 0, 0, 4637, 4646, 7, 64, 0, 0, 4638, 4643, 3, 406, 203, 0, 4639, 4640, 5, 868, 0, 0, 4640, 4642, 3, 406, 203, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4647, 1, 0, 0, 0, 4645, 4643, 1, 0, 0, 0, 4646, 4638, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4650, 1, 0, 0, 0, 4648, 4649, 5, 676, 0, 0, 4649, 4651, 3, 408, 204, 0, 4650, 4648, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 4655, 1, 0, 0, 0, 4652, 4654, 3, 410, 205, 0, 4653, 4652, 1, 0, 0, 0, 4654, 4657, 1, 0, 0, 0, 4655, 4653, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4659, 1, 0, 0, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4660, 3, 400, 200, 0, 4659, 4658, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 373, 1, 0, 0, 0, 4661, 4662, 5, 646, 0, 0, 4662, 4671, 7, 64, 0, 0, 4663, 4668, 3, 406, 203, 0, 4664, 4665, 5, 868, 0, 0, 4665, 4667, 3, 406, 203, 0, 4666, 4664, 1, 0, 0, 0, 4667, 4670, 1, 0, 0, 0, 4668, 4666, 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 4672, 1, 0, 0, 0, 4670, 4668, 1, 0, 0, 0, 4671, 4663, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 4674, 1, 0, 0, 0, 4673, 4675, 3, 400, 200, 0, 4674, 4673, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 375, 1, 0, 0, 0, 4676, 4677, 5, 640, 0, 0, 4677, 4681, 5, 415, 0, 0, 4678, 4679, 5, 678, 0, 0, 4679, 4680, 5, 857, 0, 0, 4680, 4682, 5, 882, 0, 0, 4681, 4678, 1, 0, 0, 0, 4681, 4682, 1, 0, 0, 0, 4682, 4687, 1, 0, 0, 0, 4683, 4684, 5, 868, 0, 0, 4684, 4685, 5, 529, 0, 0, 4685, 4686, 5, 857, 0, 0, 4686, 4688, 5, 882, 0, 0, 4687, 4683, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4693, 1, 0, 0, 0, 4689, 4690, 5, 868, 0, 0, 4690, 4691, 5, 363, 0, 0, 4691, 4692, 5, 857, 0, 0, 4692, 4694, 5, 882, 0, 0, 4693, 4689, 1, 0, 0, 0, 4693, 4694, 1, 0, 0, 0, 4694, 377, 1, 0, 0, 0, 4695, 4696, 5, 646, 0, 0, 4696, 4697, 5, 415, 0, 0, 4697, 379, 1, 0, 0, 0, 4698, 4699, 3, 382, 191, 0, 4699, 4700, 5, 857, 0, 0, 4700, 4701, 5, 882, 0, 0, 4701, 4726, 1, 0, 0, 0, 4702, 4703, 3, 384, 192, 0, 4703, 4704, 5, 857, 0, 0, 4704, 4705, 3, 730, 365, 0, 4705, 4726, 1, 0, 0, 0, 4706, 4707, 3, 386, 193, 0, 4707, 4708, 5, 857, 0, 0, 4708, 4709, 7, 26, 0, 0, 4709, 4726, 1, 0, 0, 0, 4710, 4726, 3, 388, 194, 0, 4711, 4712, 5, 424, 0, 0, 4712, 4713, 5, 857, 0, 0, 4713, 4722, 5, 866, 0, 0, 4714, 4719, 3, 722, 361, 0, 4715, 4716, 5, 868, 0, 0, 4716, 4718, 3, 722, 361, 0, 4717, 4715, 1, 0, 0, 0, 4718, 4721, 1, 0, 0, 0, 4719, 4717, 1, 0, 0, 0, 4719, 4720, 1, 0, 0, 0, 4720, 4723, 1, 0, 0, 0, 4721, 4719, 1, 0, 0, 0, 4722, 4714, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 4724, 1, 0, 0, 0, 4724, 4726, 5, 867, 0, 0, 4725, 4698, 1, 0, 0, 0, 4725, 4702, 1, 0, 0, 0, 4725, 4706, 1, 0, 0, 0, 4725, 4710, 1, 0, 0, 0, 4725, 4711, 1, 0, 0, 0, 4726, 381, 1, 0, 0, 0, 4727, 4728, 7, 65, 0, 0, 4728, 383, 1, 0, 0, 0, 4729, 4730, 7, 66, 0, 0, 4730, 385, 1, 0, 0, 0, 4731, 4732, 7, 67, 0, 0, 4732, 387, 1, 0, 0, 0, 4733, 4734, 5, 543, 0, 0, 4734, 4735, 5, 857, 0, 0, 4735, 4747, 7, 68, 0, 0, 4736, 4737, 5, 574, 0, 0, 4737, 4738, 5, 857, 0, 0, 4738, 4747, 7, 69, 0, 0, 4739, 4740, 5, 310, 0, 0, 4740, 4744, 5, 857, 0, 0, 4741, 4745, 5, 507, 0, 0, 4742, 4745, 5, 450, 0, 0, 4743, 4745, 3, 412, 206, 0, 4744, 4741, 1, 0, 0, 0, 4744, 4742, 1, 0, 0, 0, 4744, 4743, 1, 0, 0, 0, 4745, 4747, 1, 0, 0, 0, 4746, 4733, 1, 0, 0, 0, 4746, 4736, 1, 0, 0, 0, 4746, 4739, 1, 0, 0, 0, 4747, 389, 1, 0, 0, 0, 4748, 4749, 3, 392, 196, 0, 4749, 4750, 5, 857, 0, 0, 4750, 4751, 5, 882, 0, 0, 4751, 4776, 1, 0, 0, 0, 4752, 4753, 3, 394, 197, 0, 4753, 4754, 5, 857, 0, 0, 4754, 4755, 3, 730, 365, 0, 4755, 4776, 1, 0, 0, 0, 4756, 4757, 3, 396, 198, 0, 4757, 4758, 5, 857, 0, 0, 4758, 4759, 7, 26, 0, 0, 4759, 4776, 1, 0, 0, 0, 4760, 4776, 3, 398, 199, 0, 4761, 4762, 5, 424, 0, 0, 4762, 4763, 5, 857, 0, 0, 4763, 4772, 5, 866, 0, 0, 4764, 4769, 3, 722, 361, 0, 4765, 4766, 5, 868, 0, 0, 4766, 4768, 3, 722, 361, 0, 4767, 4765, 1, 0, 0, 0, 4768, 4771, 1, 0, 0, 0, 4769, 4767, 1, 0, 0, 0, 4769, 4770, 1, 0, 0, 0, 4770, 4773, 1, 0, 0, 0, 4771, 4769, 1, 0, 0, 0, 4772, 4764, 1, 0, 0, 0, 4772, 4773, 1, 0, 0, 0, 4773, 4774, 1, 0, 0, 0, 4774, 4776, 5, 867, 0, 0, 4775, 4748, 1, 0, 0, 0, 4775, 4752, 1, 0, 0, 0, 4775, 4756, 1, 0, 0, 0, 4775, 4760, 1, 0, 0, 0, 4775, 4761, 1, 0, 0, 0, 4776, 391, 1, 0, 0, 0, 4777, 4778, 7, 70, 0, 0, 4778, 393, 1, 0, 0, 0, 4779, 4780, 7, 71, 0, 0, 4780, 395, 1, 0, 0, 0, 4781, 4782, 7, 72, 0, 0, 4782, 397, 1, 0, 0, 0, 4783, 4784, 5, 543, 0, 0, 4784, 4785, 5, 857, 0, 0, 4785, 4797, 7, 68, 0, 0, 4786, 4787, 5, 574, 0, 0, 4787, 4788, 5, 857, 0, 0, 4788, 4797, 7, 73, 0, 0, 4789, 4790, 5, 310, 0, 0, 4790, 4794, 5, 857, 0, 0, 4791, 4795, 5, 507, 0, 0, 4792, 4795, 5, 450, 0, 0, 4793, 4795, 3, 412, 206, 0, 4794, 4791, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4794, 4793, 1, 0, 0, 0, 4795, 4797, 1, 0, 0, 0, 4796, 4783, 1, 0, 0, 0, 4796, 4786, 1, 0, 0, 0, 4796, 4789, 1, 0, 0, 0, 4797, 399, 1, 0, 0, 0, 4798, 4799, 5, 65, 0, 0, 4799, 4800, 5, 328, 0, 0, 4800, 4801, 5, 882, 0, 0, 4801, 401, 1, 0, 0, 0, 4802, 4803, 5, 565, 0, 0, 4803, 4804, 5, 857, 0, 0, 4804, 4805, 5, 866, 0, 0, 4805, 4810, 3, 638, 319, 0, 4806, 4807, 5, 868, 0, 0, 4807, 4809, 3, 638, 319, 0, 4808, 4806, 1, 0, 0, 0, 4809, 4812, 1, 0, 0, 0, 4810, 4808, 1, 0, 0, 0, 4810, 4811, 1, 0, 0, 0, 4811, 4813, 1, 0, 0, 0, 4812, 4810, 1, 0, 0, 0, 4813, 4814, 5, 867, 0, 0, 4814, 4866, 1, 0, 0, 0, 4815, 4816, 5, 567, 0, 0, 4816, 4817, 5, 857, 0, 0, 4817, 4818, 5, 866, 0, 0, 4818, 4823, 3, 638, 319, 0, 4819, 4820, 5, 868, 0, 0, 4820, 4822, 3, 638, 319, 0, 4821, 4819, 1, 0, 0, 0, 4822, 4825, 1, 0, 0, 0, 4823, 4821, 1, 0, 0, 0, 4823, 4824, 1, 0, 0, 0, 4824, 4826, 1, 0, 0, 0, 4825, 4823, 1, 0, 0, 0, 4826, 4827, 5, 867, 0, 0, 4827, 4866, 1, 0, 0, 0, 4828, 4829, 5, 566, 0, 0, 4829, 4830, 5, 857, 0, 0, 4830, 4831, 5, 866, 0, 0, 4831, 4832, 3, 660, 330, 0, 4832, 4833, 5, 867, 0, 0, 4833, 4866, 1, 0, 0, 0, 4834, 4835, 5, 568, 0, 0, 4835, 4836, 5, 857, 0, 0, 4836, 4837, 5, 866, 0, 0, 4837, 4838, 3, 660, 330, 0, 4838, 4839, 5, 867, 0, 0, 4839, 4866, 1, 0, 0, 0, 4840, 4841, 5, 570, 0, 0, 4841, 4842, 5, 857, 0, 0, 4842, 4843, 5, 866, 0, 0, 4843, 4844, 3, 768, 384, 0, 4844, 4845, 5, 867, 0, 0, 4845, 4866, 1, 0, 0, 0, 4846, 4847, 5, 571, 0, 0, 4847, 4848, 5, 857, 0, 0, 4848, 4849, 5, 866, 0, 0, 4849, 4850, 3, 768, 384, 0, 4850, 4851, 5, 867, 0, 0, 4851, 4866, 1, 0, 0, 0, 4852, 4853, 5, 569, 0, 0, 4853, 4854, 5, 857, 0, 0, 4854, 4855, 5, 866, 0, 0, 4855, 4860, 3, 404, 202, 0, 4856, 4857, 5, 868, 0, 0, 4857, 4859, 3, 404, 202, 0, 4858, 4856, 1, 0, 0, 0, 4859, 4862, 1, 0, 0, 0, 4860, 4858, 1, 0, 0, 0, 4860, 4861, 1, 0, 0, 0, 4861, 4863, 1, 0, 0, 0, 4862, 4860, 1, 0, 0, 0, 4863, 4864, 5, 867, 0, 0, 4864, 4866, 1, 0, 0, 0, 4865, 4802, 1, 0, 0, 0, 4865, 4815, 1, 0, 0, 0, 4865, 4828, 1, 0, 0, 0, 4865, 4834, 1, 0, 0, 0, 4865, 4840, 1, 0, 0, 0, 4865, 4846, 1, 0, 0, 0, 4865, 4852, 1, 0, 0, 0, 4866, 403, 1, 0, 0, 0, 4867, 4868, 5, 866, 0, 0, 4868, 4869, 3, 662, 331, 0, 4869, 4870, 5, 868, 0, 0, 4870, 4871, 3, 662, 331, 0, 4871, 4872, 5, 867, 0, 0, 4872, 405, 1, 0, 0, 0, 4873, 4874, 7, 74, 0, 0, 4874, 407, 1, 0, 0, 0, 4875, 4876, 7, 75, 0, 0, 4876, 4877, 5, 857, 0, 0, 4877, 4901, 3, 412, 206, 0, 4878, 4879, 5, 460, 0, 0, 4879, 4880, 5, 857, 0, 0, 4880, 4881, 5, 882, 0, 0, 4881, 4882, 5, 868, 0, 0, 4882, 4883, 5, 461, 0, 0, 4883, 4884, 5, 857, 0, 0, 4884, 4901, 3, 730, 365, 0, 4885, 4886, 5, 611, 0, 0, 4886, 4887, 5, 857, 0, 0, 4887, 4888, 5, 882, 0, 0, 4888, 4889, 5, 868, 0, 0, 4889, 4890, 5, 612, 0, 0, 4890, 4891, 5, 857, 0, 0, 4891, 4901, 3, 730, 365, 0, 4892, 4893, 5, 557, 0, 0, 4893, 4894, 5, 857, 0, 0, 4894, 4895, 5, 882, 0, 0, 4895, 4896, 5, 868, 0, 0, 4896, 4897, 5, 558, 0, 0, 4897, 4898, 5, 857, 0, 0, 4898, 4901, 3, 730, 365, 0, 4899, 4901, 5, 634, 0, 0, 4900, 4875, 1, 0, 0, 0, 4900, 4878, 1, 0, 0, 0, 4900, 4885, 1, 0, 0, 0, 4900, 4892, 1, 0, 0, 0, 4900, 4899, 1, 0, 0, 0, 4901, 409, 1, 0, 0, 0, 4902, 4903, 5, 678, 0, 0, 4903, 4904, 5, 857, 0, 0, 4904, 4915, 5, 882, 0, 0, 4905, 4906, 5, 529, 0, 0, 4906, 4907, 5, 857, 0, 0, 4907, 4915, 5, 882, 0, 0, 4908, 4909, 5, 363, 0, 0, 4909, 4910, 5, 857, 0, 0, 4910, 4915, 5, 882, 0, 0, 4911, 4912, 5, 535, 0, 0, 4912, 4913, 5, 857, 0, 0, 4913, 4915, 5, 882, 0, 0, 4914, 4902, 1, 0, 0, 0, 4914, 4905, 1, 0, 0, 0, 4914, 4908, 1, 0, 0, 0, 4914, 4911, 1, 0, 0, 0, 4915, 411, 1, 0, 0, 0, 4916, 4921, 3, 712, 356, 0, 4917, 4918, 5, 868, 0, 0, 4918, 4920, 3, 712, 356, 0, 4919, 4917, 1, 0, 0, 0, 4920, 4923, 1, 0, 0, 0, 4921, 4919, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 4926, 1, 0, 0, 0, 4923, 4921, 1, 0, 0, 0, 4924, 4926, 5, 882, 0, 0, 4925, 4916, 1, 0, 0, 0, 4925, 4924, 1, 0, 0, 0, 4926, 413, 1, 0, 0, 0, 4927, 4928, 5, 694, 0, 0, 4928, 4929, 7, 76, 0, 0, 4929, 4931, 3, 714, 357, 0, 4930, 4932, 7, 77, 0, 0, 4931, 4930, 1, 0, 0, 0, 4931, 4932, 1, 0, 0, 0, 4932, 415, 1, 0, 0, 0, 4933, 4934, 5, 694, 0, 0, 4934, 4935, 5, 378, 0, 0, 4935, 4941, 3, 714, 357, 0, 4936, 4939, 5, 654, 0, 0, 4937, 4938, 5, 65, 0, 0, 4938, 4940, 5, 489, 0, 0, 4939, 4937, 1, 0, 0, 0, 4939, 4940, 1, 0, 0, 0, 4940, 4942, 1, 0, 0, 0, 4941, 4936, 1, 0, 0, 0, 4941, 4942, 1, 0, 0, 0, 4942, 417, 1, 0, 0, 0, 4943, 4944, 5, 694, 0, 0, 4944, 4945, 5, 540, 0, 0, 4945, 4946, 3, 714, 357, 0, 4946, 419, 1, 0, 0, 0, 4947, 4948, 5, 694, 0, 0, 4948, 4949, 5, 341, 0, 0, 4949, 4952, 3, 714, 357, 0, 4950, 4951, 5, 513, 0, 0, 4951, 4953, 5, 533, 0, 0, 4952, 4950, 1, 0, 0, 0, 4952, 4953, 1, 0, 0, 0, 4953, 421, 1, 0, 0, 0, 4954, 4955, 5, 694, 0, 0, 4955, 4956, 5, 583, 0, 0, 4956, 4957, 3, 714, 357, 0, 4957, 423, 1, 0, 0, 0, 4958, 4959, 5, 694, 0, 0, 4959, 4962, 5, 551, 0, 0, 4960, 4961, 5, 33, 0, 0, 4961, 4963, 3, 714, 357, 0, 4962, 4960, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 425, 1, 0, 0, 0, 4964, 4965, 5, 540, 0, 0, 4965, 4966, 3, 722, 361, 0, 4966, 4969, 5, 68, 0, 0, 4967, 4970, 5, 882, 0, 0, 4968, 4970, 5, 892, 0, 0, 4969, 4967, 1, 0, 0, 0, 4969, 4968, 1, 0, 0, 0, 4970, 427, 1, 0, 0, 0, 4971, 4972, 5, 717, 0, 0, 4972, 4975, 3, 722, 361, 0, 4973, 4974, 5, 188, 0, 0, 4974, 4976, 3, 770, 385, 0, 4975, 4973, 1, 0, 0, 0, 4975, 4976, 1, 0, 0, 0, 4976, 429, 1, 0, 0, 0, 4977, 4978, 7, 78, 0, 0, 4978, 4979, 5, 540, 0, 0, 4979, 4980, 3, 722, 361, 0, 4980, 431, 1, 0, 0, 0, 4981, 4984, 3, 434, 217, 0, 4982, 4984, 3, 4, 2, 0, 4983, 4981, 1, 0, 0, 0, 4983, 4982, 1, 0, 0, 0, 4984, 433, 1, 0, 0, 0, 4985, 4986, 3, 722, 361, 0, 4986, 4987, 5, 878, 0, 0, 4987, 4989, 1, 0, 0, 0, 4988, 4985, 1, 0, 0, 0, 4988, 4989, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 4996, 5, 317, 0, 0, 4991, 4992, 3, 454, 227, 0, 4992, 4993, 5, 869, 0, 0, 4993, 4995, 1, 0, 0, 0, 4994, 4991, 1, 0, 0, 0, 4995, 4998, 1, 0, 0, 0, 4996, 4994, 1, 0, 0, 0, 4996, 4997, 1, 0, 0, 0, 4997, 5004, 1, 0, 0, 0, 4998, 4996, 1, 0, 0, 0, 4999, 5000, 3, 456, 228, 0, 5000, 5001, 5, 869, 0, 0, 5001, 5003, 1, 0, 0, 0, 5002, 4999, 1, 0, 0, 0, 5003, 5006, 1, 0, 0, 0, 5004, 5002, 1, 0, 0, 0, 5004, 5005, 1, 0, 0, 0, 5005, 5012, 1, 0, 0, 0, 5006, 5004, 1, 0, 0, 0, 5007, 5008, 3, 458, 229, 0, 5008, 5009, 5, 869, 0, 0, 5009, 5011, 1, 0, 0, 0, 5010, 5007, 1, 0, 0, 0, 5011, 5014, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5020, 1, 0, 0, 0, 5014, 5012, 1, 0, 0, 0, 5015, 5016, 3, 460, 230, 0, 5016, 5017, 5, 869, 0, 0, 5017, 5019, 1, 0, 0, 0, 5018, 5015, 1, 0, 0, 0, 5019, 5022, 1, 0, 0, 0, 5020, 5018, 1, 0, 0, 0, 5020, 5021, 1, 0, 0, 0, 5021, 5026, 1, 0, 0, 0, 5022, 5020, 1, 0, 0, 0, 5023, 5025, 3, 464, 232, 0, 5024, 5023, 1, 0, 0, 0, 5025, 5028, 1, 0, 0, 0, 5026, 5024, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 5029, 1, 0, 0, 0, 5028, 5026, 1, 0, 0, 0, 5029, 5031, 5, 378, 0, 0, 5030, 5032, 3, 722, 361, 0, 5031, 5030, 1, 0, 0, 0, 5031, 5032, 1, 0, 0, 0, 5032, 435, 1, 0, 0, 0, 5033, 5036, 5, 23, 0, 0, 5034, 5037, 3, 722, 361, 0, 5035, 5037, 3, 822, 411, 0, 5036, 5034, 1, 0, 0, 0, 5036, 5035, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5039, 1, 0, 0, 0, 5038, 5040, 3, 466, 233, 0, 5039, 5038, 1, 0, 0, 0, 5040, 5041, 1, 0, 0, 0, 5041, 5039, 1, 0, 0, 0, 5041, 5042, 1, 0, 0, 0, 5042, 5049, 1, 0, 0, 0, 5043, 5045, 5, 53, 0, 0, 5044, 5046, 3, 464, 232, 0, 5045, 5044, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5045, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5050, 1, 0, 0, 0, 5049, 5043, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5051, 1, 0, 0, 0, 5051, 5052, 5, 378, 0, 0, 5052, 5053, 5, 23, 0, 0, 5053, 437, 1, 0, 0, 0, 5054, 5055, 5, 78, 0, 0, 5055, 5056, 3, 822, 411, 0, 5056, 5058, 5, 175, 0, 0, 5057, 5059, 3, 464, 232, 0, 5058, 5057, 1, 0, 0, 0, 5059, 5060, 1, 0, 0, 0, 5060, 5058, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5065, 1, 0, 0, 0, 5062, 5064, 3, 468, 234, 0, 5063, 5062, 1, 0, 0, 0, 5064, 5067, 1, 0, 0, 0, 5065, 5063, 1, 0, 0, 0, 5065, 5066, 1, 0, 0, 0, 5066, 5074, 1, 0, 0, 0, 5067, 5065, 1, 0, 0, 0, 5068, 5070, 5, 53, 0, 0, 5069, 5071, 3, 464, 232, 0, 5070, 5069, 1, 0, 0, 0, 5071, 5072, 1, 0, 0, 0, 5072, 5070, 1, 0, 0, 0, 5072, 5073, 1, 0, 0, 0, 5073, 5075, 1, 0, 0, 0, 5074, 5068, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5077, 5, 378, 0, 0, 5077, 5078, 5, 78, 0, 0, 5078, 439, 1, 0, 0, 0, 5079, 5080, 5, 90, 0, 0, 5080, 5081, 3, 722, 361, 0, 5081, 441, 1, 0, 0, 0, 5082, 5083, 5, 97, 0, 0, 5083, 5084, 3, 722, 361, 0, 5084, 443, 1, 0, 0, 0, 5085, 5086, 3, 722, 361, 0, 5086, 5087, 5, 878, 0, 0, 5087, 5089, 1, 0, 0, 0, 5088, 5085, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5090, 1, 0, 0, 0, 5090, 5092, 5, 106, 0, 0, 5091, 5093, 3, 464, 232, 0, 5092, 5091, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5092, 1, 0, 0, 0, 5094, 5095, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5097, 5, 378, 0, 0, 5097, 5099, 5, 106, 0, 0, 5098, 5100, 3, 722, 361, 0, 5099, 5098, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 445, 1, 0, 0, 0, 5101, 5102, 3, 722, 361, 0, 5102, 5103, 5, 878, 0, 0, 5103, 5105, 1, 0, 0, 0, 5104, 5101, 1, 0, 0, 0, 5104, 5105, 1, 0, 0, 0, 5105, 5106, 1, 0, 0, 0, 5106, 5108, 5, 142, 0, 0, 5107, 5109, 3, 464, 232, 0, 5108, 5107, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, 5108, 1, 0, 0, 0, 5110, 5111, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 5113, 5, 676, 0, 0, 5113, 5114, 3, 822, 411, 0, 5114, 5115, 5, 378, 0, 0, 5115, 5117, 5, 142, 0, 0, 5116, 5118, 3, 722, 361, 0, 5117, 5116, 1, 0, 0, 0, 5117, 5118, 1, 0, 0, 0, 5118, 447, 1, 0, 0, 0, 5119, 5120, 5, 148, 0, 0, 5120, 5121, 3, 822, 411, 0, 5121, 449, 1, 0, 0, 0, 5122, 5123, 3, 722, 361, 0, 5123, 5124, 5, 878, 0, 0, 5124, 5126, 1, 0, 0, 0, 5125, 5122, 1, 0, 0, 0, 5125, 5126, 1, 0, 0, 0, 5126, 5127, 1, 0, 0, 0, 5127, 5128, 5, 193, 0, 0, 5128, 5129, 3, 822, 411, 0, 5129, 5131, 5, 371, 0, 0, 5130, 5132, 3, 464, 232, 0, 5131, 5130, 1, 0, 0, 0, 5132, 5133, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5136, 5, 378, 0, 0, 5136, 5138, 5, 193, 0, 0, 5137, 5139, 3, 722, 361, 0, 5138, 5137, 1, 0, 0, 0, 5138, 5139, 1, 0, 0, 0, 5139, 451, 1, 0, 0, 0, 5140, 5141, 5, 334, 0, 0, 5141, 5156, 3, 722, 361, 0, 5142, 5147, 5, 64, 0, 0, 5143, 5145, 5, 501, 0, 0, 5144, 5143, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 5146, 1, 0, 0, 0, 5146, 5148, 5, 68, 0, 0, 5147, 5144, 1, 0, 0, 0, 5147, 5148, 1, 0, 0, 0, 5148, 5149, 1, 0, 0, 0, 5149, 5150, 3, 722, 361, 0, 5150, 5151, 5, 88, 0, 0, 5151, 5152, 3, 720, 360, 0, 5152, 5156, 1, 0, 0, 0, 5153, 5154, 5, 516, 0, 0, 5154, 5156, 3, 722, 361, 0, 5155, 5140, 1, 0, 0, 0, 5155, 5142, 1, 0, 0, 0, 5155, 5153, 1, 0, 0, 0, 5156, 453, 1, 0, 0, 0, 5157, 5158, 5, 41, 0, 0, 5158, 5159, 3, 720, 360, 0, 5159, 5162, 3, 744, 372, 0, 5160, 5161, 5, 42, 0, 0, 5161, 5163, 3, 822, 411, 0, 5162, 5160, 1, 0, 0, 0, 5162, 5163, 1, 0, 0, 0, 5163, 455, 1, 0, 0, 0, 5164, 5165, 5, 41, 0, 0, 5165, 5166, 3, 722, 361, 0, 5166, 5167, 5, 30, 0, 0, 5167, 5174, 5, 65, 0, 0, 5168, 5175, 3, 730, 365, 0, 5169, 5171, 5, 164, 0, 0, 5170, 5172, 5, 682, 0, 0, 5171, 5170, 1, 0, 0, 0, 5171, 5172, 1, 0, 0, 0, 5172, 5173, 1, 0, 0, 0, 5173, 5175, 5, 882, 0, 0, 5174, 5168, 1, 0, 0, 0, 5174, 5169, 1, 0, 0, 0, 5175, 457, 1, 0, 0, 0, 5176, 5177, 5, 41, 0, 0, 5177, 5178, 3, 722, 361, 0, 5178, 5179, 5, 38, 0, 0, 5179, 5180, 5, 65, 0, 0, 5180, 5181, 3, 210, 105, 0, 5181, 459, 1, 0, 0, 0, 5182, 5183, 5, 41, 0, 0, 5183, 5184, 7, 79, 0, 0, 5184, 5185, 5, 417, 0, 0, 5185, 5186, 5, 65, 0, 0, 5186, 5191, 3, 462, 231, 0, 5187, 5188, 5, 868, 0, 0, 5188, 5190, 3, 462, 231, 0, 5189, 5187, 1, 0, 0, 0, 5190, 5193, 1, 0, 0, 0, 5191, 5189, 1, 0, 0, 0, 5191, 5192, 1, 0, 0, 0, 5192, 5194, 1, 0, 0, 0, 5193, 5191, 1, 0, 0, 0, 5194, 5195, 3, 432, 216, 0, 5195, 461, 1, 0, 0, 0, 5196, 5208, 3, 730, 365, 0, 5197, 5199, 5, 164, 0, 0, 5198, 5200, 5, 682, 0, 0, 5199, 5198, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5201, 1, 0, 0, 0, 5201, 5208, 5, 882, 0, 0, 5202, 5208, 3, 722, 361, 0, 5203, 5208, 5, 165, 0, 0, 5204, 5205, 5, 114, 0, 0, 5205, 5208, 5, 407, 0, 0, 5206, 5208, 5, 163, 0, 0, 5207, 5196, 1, 0, 0, 0, 5207, 5197, 1, 0, 0, 0, 5207, 5202, 1, 0, 0, 0, 5207, 5203, 1, 0, 0, 0, 5207, 5204, 1, 0, 0, 0, 5207, 5206, 1, 0, 0, 0, 5208, 463, 1, 0, 0, 0, 5209, 5212, 3, 18, 9, 0, 5210, 5212, 3, 4, 2, 0, 5211, 5209, 1, 0, 0, 0, 5211, 5210, 1, 0, 0, 0, 5212, 5213, 1, 0, 0, 0, 5213, 5214, 5, 869, 0, 0, 5214, 465, 1, 0, 0, 0, 5215, 5218, 5, 191, 0, 0, 5216, 5219, 3, 742, 371, 0, 5217, 5219, 3, 822, 411, 0, 5218, 5216, 1, 0, 0, 0, 5218, 5217, 1, 0, 0, 0, 5219, 5220, 1, 0, 0, 0, 5220, 5222, 5, 175, 0, 0, 5221, 5223, 3, 464, 232, 0, 5222, 5221, 1, 0, 0, 0, 5223, 5224, 1, 0, 0, 0, 5224, 5222, 1, 0, 0, 0, 5224, 5225, 1, 0, 0, 0, 5225, 467, 1, 0, 0, 0, 5226, 5227, 5, 54, 0, 0, 5227, 5228, 3, 822, 411, 0, 5228, 5230, 5, 175, 0, 0, 5229, 5231, 3, 464, 232, 0, 5230, 5229, 1, 0, 0, 0, 5231, 5232, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5232, 5233, 1, 0, 0, 0, 5233, 469, 1, 0, 0, 0, 5234, 5235, 5, 8, 0, 0, 5235, 5237, 5, 678, 0, 0, 5236, 5238, 3, 776, 388, 0, 5237, 5236, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 5295, 1, 0, 0, 0, 5239, 5244, 3, 502, 251, 0, 5240, 5241, 5, 868, 0, 0, 5241, 5243, 3, 502, 251, 0, 5242, 5240, 1, 0, 0, 0, 5243, 5246, 1, 0, 0, 0, 5244, 5242, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5296, 1, 0, 0, 0, 5246, 5244, 1, 0, 0, 0, 5247, 5252, 3, 504, 252, 0, 5248, 5249, 5, 868, 0, 0, 5249, 5251, 3, 504, 252, 0, 5250, 5248, 1, 0, 0, 0, 5251, 5254, 1, 0, 0, 0, 5252, 5250, 1, 0, 0, 0, 5252, 5253, 1, 0, 0, 0, 5253, 5269, 1, 0, 0, 0, 5254, 5252, 1, 0, 0, 0, 5255, 5267, 5, 144, 0, 0, 5256, 5268, 5, 505, 0, 0, 5257, 5264, 3, 516, 258, 0, 5258, 5260, 5, 11, 0, 0, 5259, 5258, 1, 0, 0, 0, 5259, 5260, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 5263, 3, 516, 258, 0, 5262, 5259, 1, 0, 0, 0, 5263, 5266, 1, 0, 0, 0, 5264, 5262, 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 5268, 1, 0, 0, 0, 5266, 5264, 1, 0, 0, 0, 5267, 5256, 1, 0, 0, 0, 5267, 5257, 1, 0, 0, 0, 5268, 5270, 1, 0, 0, 0, 5269, 5255, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5277, 1, 0, 0, 0, 5271, 5273, 5, 194, 0, 0, 5272, 5274, 3, 518, 259, 0, 5273, 5272, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5273, 1, 0, 0, 0, 5275, 5276, 1, 0, 0, 0, 5276, 5278, 1, 0, 0, 0, 5277, 5271, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5283, 1, 0, 0, 0, 5279, 5282, 3, 520, 260, 0, 5280, 5282, 3, 522, 261, 0, 5281, 5279, 1, 0, 0, 0, 5281, 5280, 1, 0, 0, 0, 5282, 5285, 1, 0, 0, 0, 5283, 5281, 1, 0, 0, 0, 5283, 5284, 1, 0, 0, 0, 5284, 5288, 1, 0, 0, 0, 5285, 5283, 1, 0, 0, 0, 5286, 5287, 7, 80, 0, 0, 5287, 5289, 5, 882, 0, 0, 5288, 5286, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5296, 1, 0, 0, 0, 5290, 5291, 3, 666, 333, 0, 5291, 5292, 5, 42, 0, 0, 5292, 5293, 5, 582, 0, 0, 5293, 5294, 3, 478, 239, 0, 5294, 5296, 1, 0, 0, 0, 5295, 5239, 1, 0, 0, 0, 5295, 5247, 1, 0, 0, 0, 5295, 5290, 1, 0, 0, 0, 5296, 471, 1, 0, 0, 0, 5297, 5298, 5, 34, 0, 0, 5298, 5300, 5, 678, 0, 0, 5299, 5301, 3, 778, 389, 0, 5300, 5299, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5302, 1, 0, 0, 0, 5302, 5304, 3, 700, 350, 0, 5303, 5305, 3, 506, 253, 0, 5304, 5303, 1, 0, 0, 0, 5304, 5305, 1, 0, 0, 0, 5305, 5313, 1, 0, 0, 0, 5306, 5307, 5, 868, 0, 0, 5307, 5309, 3, 700, 350, 0, 5308, 5310, 3, 506, 253, 0, 5309, 5308, 1, 0, 0, 0, 5309, 5310, 1, 0, 0, 0, 5310, 5312, 1, 0, 0, 0, 5311, 5306, 1, 0, 0, 0, 5312, 5315, 1, 0, 0, 0, 5313, 5311, 1, 0, 0, 0, 5313, 5314, 1, 0, 0, 0, 5314, 5319, 1, 0, 0, 0, 5315, 5313, 1, 0, 0, 0, 5316, 5317, 5, 42, 0, 0, 5317, 5318, 5, 582, 0, 0, 5318, 5320, 3, 478, 239, 0, 5319, 5316, 1, 0, 0, 0, 5319, 5320, 1, 0, 0, 0, 5320, 5335, 1, 0, 0, 0, 5321, 5333, 5, 144, 0, 0, 5322, 5334, 5, 505, 0, 0, 5323, 5330, 3, 516, 258, 0, 5324, 5326, 5, 11, 0, 0, 5325, 5324, 1, 0, 0, 0, 5325, 5326, 1, 0, 0, 0, 5326, 5327, 1, 0, 0, 0, 5327, 5329, 3, 516, 258, 0, 5328, 5325, 1, 0, 0, 0, 5329, 5332, 1, 0, 0, 0, 5330, 5328, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 5334, 1, 0, 0, 0, 5332, 5330, 1, 0, 0, 0, 5333, 5322, 1, 0, 0, 0, 5333, 5323, 1, 0, 0, 0, 5334, 5336, 1, 0, 0, 0, 5335, 5321, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 5343, 1, 0, 0, 0, 5337, 5339, 5, 194, 0, 0, 5338, 5340, 3, 518, 259, 0, 5339, 5338, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5344, 1, 0, 0, 0, 5343, 5337, 1, 0, 0, 0, 5343, 5344, 1, 0, 0, 0, 5344, 5349, 1, 0, 0, 0, 5345, 5348, 3, 520, 260, 0, 5346, 5348, 3, 522, 261, 0, 5347, 5345, 1, 0, 0, 0, 5347, 5346, 1, 0, 0, 0, 5348, 5351, 1, 0, 0, 0, 5349, 5347, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 5354, 1, 0, 0, 0, 5351, 5349, 1, 0, 0, 0, 5352, 5353, 7, 80, 0, 0, 5353, 5355, 5, 882, 0, 0, 5354, 5352, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 473, 1, 0, 0, 0, 5356, 5357, 5, 51, 0, 0, 5357, 5359, 5, 678, 0, 0, 5358, 5360, 3, 776, 388, 0, 5359, 5358, 1, 0, 0, 0, 5359, 5360, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 5366, 3, 700, 350, 0, 5362, 5363, 5, 868, 0, 0, 5363, 5365, 3, 700, 350, 0, 5364, 5362, 1, 0, 0, 0, 5365, 5368, 1, 0, 0, 0, 5366, 5364, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 475, 1, 0, 0, 0, 5368, 5366, 1, 0, 0, 0, 5369, 5370, 5, 73, 0, 0, 5370, 5375, 3, 530, 265, 0, 5371, 5372, 5, 868, 0, 0, 5372, 5374, 3, 530, 265, 0, 5373, 5371, 1, 0, 0, 0, 5374, 5377, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5378, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5378, 5380, 5, 119, 0, 0, 5379, 5381, 3, 498, 249, 0, 5380, 5379, 1, 0, 0, 0, 5380, 5381, 1, 0, 0, 0, 5381, 5382, 1, 0, 0, 0, 5382, 5383, 3, 534, 267, 0, 5383, 5393, 5, 176, 0, 0, 5384, 5389, 3, 510, 255, 0, 5385, 5386, 5, 868, 0, 0, 5386, 5388, 3, 510, 255, 0, 5387, 5385, 1, 0, 0, 0, 5388, 5391, 1, 0, 0, 0, 5389, 5387, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 5394, 1, 0, 0, 0, 5391, 5389, 1, 0, 0, 0, 5392, 5394, 3, 664, 332, 0, 5393, 5384, 1, 0, 0, 0, 5393, 5392, 1, 0, 0, 0, 5394, 5409, 1, 0, 0, 0, 5395, 5407, 5, 144, 0, 0, 5396, 5408, 5, 505, 0, 0, 5397, 5404, 3, 516, 258, 0, 5398, 5400, 5, 11, 0, 0, 5399, 5398, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5403, 3, 516, 258, 0, 5402, 5399, 1, 0, 0, 0, 5403, 5406, 1, 0, 0, 0, 5404, 5402, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5408, 1, 0, 0, 0, 5406, 5404, 1, 0, 0, 0, 5407, 5396, 1, 0, 0, 0, 5407, 5397, 1, 0, 0, 0, 5408, 5410, 1, 0, 0, 0, 5409, 5395, 1, 0, 0, 0, 5409, 5410, 1, 0, 0, 0, 5410, 5420, 1, 0, 0, 0, 5411, 5417, 5, 194, 0, 0, 5412, 5413, 5, 73, 0, 0, 5413, 5416, 5, 121, 0, 0, 5414, 5416, 3, 518, 259, 0, 5415, 5412, 1, 0, 0, 0, 5415, 5414, 1, 0, 0, 0, 5416, 5419, 1, 0, 0, 0, 5417, 5415, 1, 0, 0, 0, 5417, 5418, 1, 0, 0, 0, 5418, 5421, 1, 0, 0, 0, 5419, 5417, 1, 0, 0, 0, 5420, 5411, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5429, 1, 0, 0, 0, 5422, 5423, 5, 13, 0, 0, 5423, 5427, 3, 700, 350, 0, 5424, 5425, 5, 194, 0, 0, 5425, 5426, 5, 582, 0, 0, 5426, 5428, 3, 478, 239, 0, 5427, 5424, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5430, 1, 0, 0, 0, 5429, 5422, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5459, 1, 0, 0, 0, 5431, 5434, 5, 73, 0, 0, 5432, 5433, 5, 547, 0, 0, 5433, 5435, 5, 119, 0, 0, 5434, 5432, 1, 0, 0, 0, 5434, 5435, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5441, 3, 666, 333, 0, 5437, 5438, 5, 868, 0, 0, 5438, 5440, 3, 666, 333, 0, 5439, 5437, 1, 0, 0, 0, 5440, 5443, 1, 0, 0, 0, 5441, 5439, 1, 0, 0, 0, 5441, 5442, 1, 0, 0, 0, 5442, 5444, 1, 0, 0, 0, 5443, 5441, 1, 0, 0, 0, 5444, 5445, 5, 176, 0, 0, 5445, 5450, 3, 666, 333, 0, 5446, 5447, 5, 868, 0, 0, 5447, 5449, 3, 666, 333, 0, 5448, 5446, 1, 0, 0, 0, 5449, 5452, 1, 0, 0, 0, 5450, 5448, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5456, 1, 0, 0, 0, 5452, 5450, 1, 0, 0, 0, 5453, 5454, 5, 194, 0, 0, 5454, 5455, 5, 704, 0, 0, 5455, 5457, 5, 121, 0, 0, 5456, 5453, 1, 0, 0, 0, 5456, 5457, 1, 0, 0, 0, 5457, 5459, 1, 0, 0, 0, 5458, 5369, 1, 0, 0, 0, 5458, 5431, 1, 0, 0, 0, 5459, 477, 1, 0, 0, 0, 5460, 5469, 5, 42, 0, 0, 5461, 5469, 5, 505, 0, 0, 5462, 5465, 5, 7, 0, 0, 5463, 5464, 5, 59, 0, 0, 5464, 5466, 3, 664, 332, 0, 5465, 5463, 1, 0, 0, 0, 5465, 5466, 1, 0, 0, 0, 5466, 5469, 1, 0, 0, 0, 5467, 5469, 3, 664, 332, 0, 5468, 5460, 1, 0, 0, 0, 5468, 5461, 1, 0, 0, 0, 5468, 5462, 1, 0, 0, 0, 5468, 5467, 1, 0, 0, 0, 5469, 479, 1, 0, 0, 0, 5470, 5471, 5, 73, 0, 0, 5471, 5472, 5, 547, 0, 0, 5472, 5473, 5, 119, 0, 0, 5473, 5474, 3, 700, 350, 0, 5474, 5475, 5, 176, 0, 0, 5475, 5480, 3, 700, 350, 0, 5476, 5477, 5, 868, 0, 0, 5477, 5479, 3, 700, 350, 0, 5478, 5476, 1, 0, 0, 0, 5479, 5482, 1, 0, 0, 0, 5480, 5478, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5486, 1, 0, 0, 0, 5482, 5480, 1, 0, 0, 0, 5483, 5484, 5, 194, 0, 0, 5484, 5485, 5, 73, 0, 0, 5485, 5487, 5, 121, 0, 0, 5486, 5483, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 481, 1, 0, 0, 0, 5488, 5489, 5, 8, 0, 0, 5489, 5490, 5, 739, 0, 0, 5490, 5491, 5, 74, 0, 0, 5491, 5497, 3, 656, 328, 0, 5492, 5494, 5, 190, 0, 0, 5493, 5495, 5, 857, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5498, 3, 490, 245, 0, 5497, 5492, 1, 0, 0, 0, 5497, 5498, 1, 0, 0, 0, 5498, 5504, 1, 0, 0, 0, 5499, 5501, 5, 837, 0, 0, 5500, 5502, 5, 857, 0, 0, 5501, 5500, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 5505, 3, 730, 365, 0, 5504, 5499, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5510, 1, 0, 0, 0, 5506, 5508, 7, 39, 0, 0, 5507, 5509, 5, 66, 0, 0, 5508, 5507, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5511, 1, 0, 0, 0, 5510, 5506, 1, 0, 0, 0, 5510, 5511, 1, 0, 0, 0, 5511, 483, 1, 0, 0, 0, 5512, 5513, 5, 34, 0, 0, 5513, 5514, 5, 739, 0, 0, 5514, 5515, 5, 74, 0, 0, 5515, 5516, 3, 654, 327, 0, 5516, 5517, 5, 839, 0, 0, 5517, 5518, 5, 857, 0, 0, 5518, 5524, 7, 81, 0, 0, 5519, 5521, 5, 190, 0, 0, 5520, 5522, 5, 857, 0, 0, 5521, 5520, 1, 0, 0, 0, 5521, 5522, 1, 0, 0, 0, 5522, 5523, 1, 0, 0, 0, 5523, 5525, 3, 490, 245, 0, 5524, 5519, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5531, 1, 0, 0, 0, 5526, 5528, 5, 837, 0, 0, 5527, 5529, 5, 857, 0, 0, 5528, 5527, 1, 0, 0, 0, 5528, 5529, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 5532, 3, 730, 365, 0, 5531, 5526, 1, 0, 0, 0, 5531, 5532, 1, 0, 0, 0, 5532, 5534, 1, 0, 0, 0, 5533, 5535, 7, 39, 0, 0, 5534, 5533, 1, 0, 0, 0, 5534, 5535, 1, 0, 0, 0, 5535, 485, 1, 0, 0, 0, 5536, 5537, 5, 51, 0, 0, 5537, 5538, 5, 739, 0, 0, 5538, 5539, 5, 74, 0, 0, 5539, 5541, 3, 656, 328, 0, 5540, 5542, 5, 66, 0, 0, 5541, 5540, 1, 0, 0, 0, 5541, 5542, 1, 0, 0, 0, 5542, 487, 1, 0, 0, 0, 5543, 5544, 5, 155, 0, 0, 5544, 5545, 5, 739, 0, 0, 5545, 5546, 5, 74, 0, 0, 5546, 5556, 3, 656, 328, 0, 5547, 5548, 5, 65, 0, 0, 5548, 5553, 3, 730, 365, 0, 5549, 5550, 5, 868, 0, 0, 5550, 5552, 3, 730, 365, 0, 5551, 5549, 1, 0, 0, 0, 5552, 5555, 1, 0, 0, 0, 5553, 5551, 1, 0, 0, 0, 5553, 5554, 1, 0, 0, 0, 5554, 5557, 1, 0, 0, 0, 5555, 5553, 1, 0, 0, 0, 5556, 5547, 1, 0, 0, 0, 5556, 5557, 1, 0, 0, 0, 5557, 489, 1, 0, 0, 0, 5558, 5564, 3, 730, 365, 0, 5559, 5560, 3, 730, 365, 0, 5560, 5561, 5, 854, 0, 0, 5561, 5562, 3, 730, 365, 0, 5562, 5564, 1, 0, 0, 0, 5563, 5558, 1, 0, 0, 0, 5563, 5559, 1, 0, 0, 0, 5564, 5569, 1, 0, 0, 0, 5565, 5566, 5, 868, 0, 0, 5566, 5568, 3, 490, 245, 0, 5567, 5565, 1, 0, 0, 0, 5568, 5571, 1, 0, 0, 0, 5569, 5567, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 491, 1, 0, 0, 0, 5571, 5569, 1, 0, 0, 0, 5572, 5573, 5, 141, 0, 0, 5573, 5574, 5, 678, 0, 0, 5574, 5579, 3, 536, 268, 0, 5575, 5576, 5, 868, 0, 0, 5576, 5578, 3, 536, 268, 0, 5577, 5575, 1, 0, 0, 0, 5578, 5581, 1, 0, 0, 0, 5579, 5577, 1, 0, 0, 0, 5579, 5580, 1, 0, 0, 0, 5580, 493, 1, 0, 0, 0, 5581, 5579, 1, 0, 0, 0, 5582, 5584, 5, 149, 0, 0, 5583, 5585, 3, 776, 388, 0, 5584, 5583, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5586, 1, 0, 0, 0, 5586, 5591, 3, 530, 265, 0, 5587, 5588, 5, 868, 0, 0, 5588, 5590, 3, 530, 265, 0, 5589, 5587, 1, 0, 0, 0, 5590, 5593, 1, 0, 0, 0, 5591, 5589, 1, 0, 0, 0, 5591, 5592, 1, 0, 0, 0, 5592, 5594, 1, 0, 0, 0, 5593, 5591, 1, 0, 0, 0, 5594, 5596, 5, 119, 0, 0, 5595, 5597, 3, 498, 249, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 1, 0, 0, 0, 5598, 5599, 3, 534, 267, 0, 5599, 5600, 5, 68, 0, 0, 5600, 5602, 3, 664, 332, 0, 5601, 5603, 3, 496, 248, 0, 5602, 5601, 1, 0, 0, 0, 5602, 5603, 1, 0, 0, 0, 5603, 5635, 1, 0, 0, 0, 5604, 5606, 5, 149, 0, 0, 5605, 5607, 3, 776, 388, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5610, 5, 7, 0, 0, 5609, 5611, 5, 734, 0, 0, 5610, 5609, 1, 0, 0, 0, 5610, 5611, 1, 0, 0, 0, 5611, 5612, 1, 0, 0, 0, 5612, 5613, 5, 868, 0, 0, 5613, 5614, 5, 73, 0, 0, 5614, 5615, 5, 121, 0, 0, 5615, 5616, 5, 68, 0, 0, 5616, 5618, 3, 664, 332, 0, 5617, 5619, 3, 496, 248, 0, 5618, 5617, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5635, 1, 0, 0, 0, 5620, 5622, 5, 149, 0, 0, 5621, 5623, 3, 776, 388, 0, 5622, 5621, 1, 0, 0, 0, 5622, 5623, 1, 0, 0, 0, 5623, 5626, 1, 0, 0, 0, 5624, 5625, 5, 547, 0, 0, 5625, 5627, 5, 119, 0, 0, 5626, 5624, 1, 0, 0, 0, 5626, 5627, 1, 0, 0, 0, 5627, 5628, 1, 0, 0, 0, 5628, 5629, 3, 664, 332, 0, 5629, 5630, 5, 68, 0, 0, 5630, 5632, 3, 664, 332, 0, 5631, 5633, 3, 496, 248, 0, 5632, 5631, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5635, 1, 0, 0, 0, 5634, 5582, 1, 0, 0, 0, 5634, 5604, 1, 0, 0, 0, 5634, 5620, 1, 0, 0, 0, 5635, 495, 1, 0, 0, 0, 5636, 5637, 5, 79, 0, 0, 5637, 5638, 5, 674, 0, 0, 5638, 5639, 5, 678, 0, 0, 5639, 497, 1, 0, 0, 0, 5640, 5641, 7, 82, 0, 0, 5641, 499, 1, 0, 0, 0, 5642, 5643, 5, 155, 0, 0, 5643, 5646, 5, 529, 0, 0, 5644, 5645, 5, 65, 0, 0, 5645, 5647, 3, 700, 350, 0, 5646, 5644, 1, 0, 0, 0, 5646, 5647, 1, 0, 0, 0, 5647, 5648, 1, 0, 0, 0, 5648, 5651, 5, 857, 0, 0, 5649, 5652, 3, 816, 408, 0, 5650, 5652, 5, 882, 0, 0, 5651, 5649, 1, 0, 0, 0, 5651, 5650, 1, 0, 0, 0, 5652, 5675, 1, 0, 0, 0, 5653, 5654, 5, 155, 0, 0, 5654, 5657, 5, 529, 0, 0, 5655, 5656, 5, 65, 0, 0, 5656, 5658, 3, 700, 350, 0, 5657, 5655, 1, 0, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5663, 1, 0, 0, 0, 5659, 5660, 5, 176, 0, 0, 5660, 5664, 5, 829, 0, 0, 5661, 5662, 5, 857, 0, 0, 5662, 5664, 5, 882, 0, 0, 5663, 5659, 1, 0, 0, 0, 5663, 5661, 1, 0, 0, 0, 5664, 5667, 1, 0, 0, 0, 5665, 5666, 5, 143, 0, 0, 5666, 5668, 5, 882, 0, 0, 5667, 5665, 1, 0, 0, 0, 5667, 5668, 1, 0, 0, 0, 5668, 5672, 1, 0, 0, 0, 5669, 5670, 5, 147, 0, 0, 5670, 5671, 5, 36, 0, 0, 5671, 5673, 5, 529, 0, 0, 5672, 5669, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5675, 1, 0, 0, 0, 5674, 5642, 1, 0, 0, 0, 5674, 5653, 1, 0, 0, 0, 5675, 501, 1, 0, 0, 0, 5676, 5677, 3, 700, 350, 0, 5677, 5678, 3, 520, 260, 0, 5678, 503, 1, 0, 0, 0, 5679, 5705, 3, 700, 350, 0, 5680, 5681, 5, 423, 0, 0, 5681, 5682, 5, 20, 0, 0, 5682, 5683, 5, 882, 0, 0, 5683, 5706, 3, 512, 256, 0, 5684, 5685, 5, 423, 0, 0, 5685, 5686, 5, 20, 0, 0, 5686, 5687, 5, 829, 0, 0, 5687, 5688, 5, 529, 0, 0, 5688, 5706, 3, 512, 256, 0, 5689, 5690, 5, 423, 0, 0, 5690, 5691, 5, 194, 0, 0, 5691, 5706, 3, 514, 257, 0, 5692, 5693, 5, 369, 0, 0, 5693, 5694, 5, 511, 0, 0, 5694, 5706, 5, 529, 0, 0, 5695, 5696, 7, 83, 0, 0, 5696, 5698, 3, 528, 264, 0, 5697, 5699, 3, 524, 262, 0, 5698, 5697, 1, 0, 0, 0, 5698, 5699, 1, 0, 0, 0, 5699, 5701, 1, 0, 0, 0, 5700, 5695, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5700, 1, 0, 0, 0, 5702, 5703, 1, 0, 0, 0, 5703, 5706, 1, 0, 0, 0, 5704, 5706, 3, 526, 263, 0, 5705, 5680, 1, 0, 0, 0, 5705, 5684, 1, 0, 0, 0, 5705, 5689, 1, 0, 0, 0, 5705, 5692, 1, 0, 0, 0, 5705, 5700, 1, 0, 0, 0, 5705, 5704, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 505, 1, 0, 0, 0, 5707, 5708, 5, 423, 0, 0, 5708, 5714, 5, 20, 0, 0, 5709, 5715, 5, 882, 0, 0, 5710, 5711, 5, 829, 0, 0, 5711, 5715, 5, 529, 0, 0, 5712, 5713, 5, 529, 0, 0, 5713, 5715, 5, 882, 0, 0, 5714, 5709, 1, 0, 0, 0, 5714, 5710, 1, 0, 0, 0, 5714, 5712, 1, 0, 0, 0, 5715, 5718, 1, 0, 0, 0, 5716, 5717, 5, 11, 0, 0, 5717, 5719, 3, 506, 253, 0, 5718, 5716, 1, 0, 0, 0, 5718, 5719, 1, 0, 0, 0, 5719, 5744, 1, 0, 0, 0, 5720, 5721, 5, 423, 0, 0, 5721, 5722, 5, 194, 0, 0, 5722, 5731, 3, 722, 361, 0, 5723, 5727, 5, 20, 0, 0, 5724, 5728, 5, 882, 0, 0, 5725, 5726, 5, 829, 0, 0, 5726, 5728, 5, 529, 0, 0, 5727, 5724, 1, 0, 0, 0, 5727, 5725, 1, 0, 0, 0, 5728, 5732, 1, 0, 0, 0, 5729, 5730, 5, 13, 0, 0, 5730, 5732, 5, 882, 0, 0, 5731, 5723, 1, 0, 0, 0, 5731, 5729, 1, 0, 0, 0, 5731, 5732, 1, 0, 0, 0, 5732, 5735, 1, 0, 0, 0, 5733, 5734, 5, 11, 0, 0, 5734, 5736, 3, 506, 253, 0, 5735, 5733, 1, 0, 0, 0, 5735, 5736, 1, 0, 0, 0, 5736, 5744, 1, 0, 0, 0, 5737, 5738, 5, 423, 0, 0, 5738, 5739, 5, 194, 0, 0, 5739, 5741, 3, 722, 361, 0, 5740, 5742, 3, 508, 254, 0, 5741, 5740, 1, 0, 0, 0, 5741, 5742, 1, 0, 0, 0, 5742, 5744, 1, 0, 0, 0, 5743, 5707, 1, 0, 0, 0, 5743, 5720, 1, 0, 0, 0, 5743, 5737, 1, 0, 0, 0, 5744, 507, 1, 0, 0, 0, 5745, 5746, 5, 427, 0, 0, 5746, 5747, 5, 708, 0, 0, 5747, 5748, 5, 423, 0, 0, 5748, 5752, 5, 20, 0, 0, 5749, 5750, 5, 829, 0, 0, 5750, 5753, 5, 529, 0, 0, 5751, 5753, 5, 882, 0, 0, 5752, 5749, 1, 0, 0, 0, 5752, 5751, 1, 0, 0, 0, 5753, 5763, 1, 0, 0, 0, 5754, 5755, 5, 427, 0, 0, 5755, 5756, 5, 708, 0, 0, 5756, 5757, 5, 423, 0, 0, 5757, 5758, 5, 194, 0, 0, 5758, 5759, 3, 722, 361, 0, 5759, 5760, 5, 13, 0, 0, 5760, 5761, 5, 882, 0, 0, 5761, 5763, 1, 0, 0, 0, 5762, 5745, 1, 0, 0, 0, 5762, 5754, 1, 0, 0, 0, 5763, 509, 1, 0, 0, 0, 5764, 5765, 3, 700, 350, 0, 5765, 5766, 5, 423, 0, 0, 5766, 5767, 5, 20, 0, 0, 5767, 5768, 5, 529, 0, 0, 5768, 5769, 5, 882, 0, 0, 5769, 5790, 1, 0, 0, 0, 5770, 5771, 3, 700, 350, 0, 5771, 5772, 5, 423, 0, 0, 5772, 5773, 5, 20, 0, 0, 5773, 5774, 5, 829, 0, 0, 5774, 5775, 5, 529, 0, 0, 5775, 5776, 3, 512, 256, 0, 5776, 5790, 1, 0, 0, 0, 5777, 5778, 3, 700, 350, 0, 5778, 5779, 5, 423, 0, 0, 5779, 5780, 5, 20, 0, 0, 5780, 5781, 5, 882, 0, 0, 5781, 5782, 3, 512, 256, 0, 5782, 5790, 1, 0, 0, 0, 5783, 5784, 3, 700, 350, 0, 5784, 5785, 5, 423, 0, 0, 5785, 5786, 5, 194, 0, 0, 5786, 5787, 3, 514, 257, 0, 5787, 5790, 1, 0, 0, 0, 5788, 5790, 3, 700, 350, 0, 5789, 5764, 1, 0, 0, 0, 5789, 5770, 1, 0, 0, 0, 5789, 5777, 1, 0, 0, 0, 5789, 5783, 1, 0, 0, 0, 5789, 5788, 1, 0, 0, 0, 5790, 511, 1, 0, 0, 0, 5791, 5792, 5, 143, 0, 0, 5792, 5794, 5, 882, 0, 0, 5793, 5791, 1, 0, 0, 0, 5793, 5794, 1, 0, 0, 0, 5794, 5798, 1, 0, 0, 0, 5795, 5796, 5, 147, 0, 0, 5796, 5797, 5, 36, 0, 0, 5797, 5799, 5, 529, 0, 0, 5798, 5795, 1, 0, 0, 0, 5798, 5799, 1, 0, 0, 0, 5799, 513, 1, 0, 0, 0, 5800, 5808, 3, 722, 361, 0, 5801, 5805, 7, 84, 0, 0, 5802, 5806, 5, 882, 0, 0, 5803, 5804, 5, 829, 0, 0, 5804, 5806, 5, 529, 0, 0, 5805, 5802, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5806, 5807, 1, 0, 0, 0, 5807, 5809, 3, 512, 256, 0, 5808, 5801, 1, 0, 0, 0, 5808, 5809, 1, 0, 0, 0, 5809, 5815, 1, 0, 0, 0, 5810, 5811, 3, 722, 361, 0, 5811, 5812, 5, 188, 0, 0, 5812, 5813, 3, 816, 408, 0, 5813, 5815, 1, 0, 0, 0, 5814, 5800, 1, 0, 0, 0, 5814, 5810, 1, 0, 0, 0, 5815, 515, 1, 0, 0, 0, 5816, 5825, 5, 169, 0, 0, 5817, 5825, 5, 693, 0, 0, 5818, 5819, 5, 331, 0, 0, 5819, 5825, 5, 882, 0, 0, 5820, 5821, 5, 441, 0, 0, 5821, 5825, 5, 882, 0, 0, 5822, 5823, 5, 651, 0, 0, 5823, 5825, 5, 882, 0, 0, 5824, 5816, 1, 0, 0, 0, 5824, 5817, 1, 0, 0, 0, 5824, 5818, 1, 0, 0, 0, 5824, 5820, 1, 0, 0, 0, 5824, 5822, 1, 0, 0, 0, 5825, 517, 1, 0, 0, 0, 5826, 5827, 5, 479, 0, 0, 5827, 5835, 3, 730, 365, 0, 5828, 5829, 5, 482, 0, 0, 5829, 5835, 3, 730, 365, 0, 5830, 5831, 5, 478, 0, 0, 5831, 5835, 3, 730, 365, 0, 5832, 5833, 5, 483, 0, 0, 5833, 5835, 3, 730, 365, 0, 5834, 5826, 1, 0, 0, 0, 5834, 5828, 1, 0, 0, 0, 5834, 5830, 1, 0, 0, 0, 5834, 5832, 1, 0, 0, 0, 5835, 519, 1, 0, 0, 0, 5836, 5837, 5, 529, 0, 0, 5837, 5844, 5, 390, 0, 0, 5838, 5845, 5, 42, 0, 0, 5839, 5845, 5, 500, 0, 0, 5840, 5841, 5, 87, 0, 0, 5841, 5842, 3, 730, 365, 0, 5842, 5843, 5, 698, 0, 0, 5843, 5845, 1, 0, 0, 0, 5844, 5838, 1, 0, 0, 0, 5844, 5839, 1, 0, 0, 0, 5844, 5840, 1, 0, 0, 0, 5844, 5845, 1, 0, 0, 0, 5845, 5875, 1, 0, 0, 0, 5846, 5847, 5, 529, 0, 0, 5847, 5850, 5, 420, 0, 0, 5848, 5851, 5, 42, 0, 0, 5849, 5851, 3, 730, 365, 0, 5850, 5848, 1, 0, 0, 0, 5850, 5849, 1, 0, 0, 0, 5851, 5875, 1, 0, 0, 0, 5852, 5853, 5, 529, 0, 0, 5853, 5854, 5, 581, 0, 0, 5854, 5859, 5, 87, 0, 0, 5855, 5860, 5, 42, 0, 0, 5856, 5857, 3, 730, 365, 0, 5857, 5858, 5, 698, 0, 0, 5858, 5860, 1, 0, 0, 0, 5859, 5855, 1, 0, 0, 0, 5859, 5856, 1, 0, 0, 0, 5860, 5875, 1, 0, 0, 0, 5861, 5862, 5, 529, 0, 0, 5862, 5863, 5, 144, 0, 0, 5863, 5865, 5, 36, 0, 0, 5864, 5866, 7, 85, 0, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5875, 1, 0, 0, 0, 5867, 5868, 5, 395, 0, 0, 5868, 5875, 3, 730, 365, 0, 5869, 5872, 5, 530, 0, 0, 5870, 5873, 3, 730, 365, 0, 5871, 5873, 5, 669, 0, 0, 5872, 5870, 1, 0, 0, 0, 5872, 5871, 1, 0, 0, 0, 5873, 5875, 1, 0, 0, 0, 5874, 5836, 1, 0, 0, 0, 5874, 5846, 1, 0, 0, 0, 5874, 5852, 1, 0, 0, 0, 5874, 5861, 1, 0, 0, 0, 5874, 5867, 1, 0, 0, 0, 5874, 5869, 1, 0, 0, 0, 5875, 521, 1, 0, 0, 0, 5876, 5877, 5, 304, 0, 0, 5877, 5878, 7, 86, 0, 0, 5878, 523, 1, 0, 0, 0, 5879, 5882, 5, 423, 0, 0, 5880, 5881, 5, 194, 0, 0, 5881, 5883, 3, 722, 361, 0, 5882, 5880, 1, 0, 0, 0, 5882, 5883, 1, 0, 0, 0, 5883, 5892, 1, 0, 0, 0, 5884, 5888, 5, 20, 0, 0, 5885, 5889, 5, 882, 0, 0, 5886, 5887, 5, 829, 0, 0, 5887, 5889, 5, 529, 0, 0, 5888, 5885, 1, 0, 0, 0, 5888, 5886, 1, 0, 0, 0, 5889, 5893, 1, 0, 0, 0, 5890, 5891, 5, 13, 0, 0, 5891, 5893, 5, 882, 0, 0, 5892, 5884, 1, 0, 0, 0, 5892, 5890, 1, 0, 0, 0, 5893, 525, 1, 0, 0, 0, 5894, 5895, 3, 528, 264, 0, 5895, 5896, 5, 429, 0, 0, 5896, 5897, 5, 555, 0, 0, 5897, 5910, 1, 0, 0, 0, 5898, 5899, 3, 528, 264, 0, 5899, 5900, 5, 401, 0, 0, 5900, 5901, 5, 555, 0, 0, 5901, 5902, 5, 155, 0, 0, 5902, 5903, 5, 330, 0, 0, 5903, 5904, 5, 13, 0, 0, 5904, 5905, 5, 882, 0, 0, 5905, 5910, 1, 0, 0, 0, 5906, 5907, 3, 528, 264, 0, 5907, 5908, 5, 675, 0, 0, 5908, 5910, 1, 0, 0, 0, 5909, 5894, 1, 0, 0, 0, 5909, 5898, 1, 0, 0, 0, 5909, 5906, 1, 0, 0, 0, 5910, 527, 1, 0, 0, 0, 5911, 5912, 7, 87, 0, 0, 5912, 5913, 5, 394, 0, 0, 5913, 529, 1, 0, 0, 0, 5914, 5919, 3, 532, 266, 0, 5915, 5916, 5, 866, 0, 0, 5916, 5917, 3, 670, 335, 0, 5917, 5918, 5, 867, 0, 0, 5918, 5920, 1, 0, 0, 0, 5919, 5915, 1, 0, 0, 0, 5919, 5920, 1, 0, 0, 0, 5920, 531, 1, 0, 0, 0, 5921, 5923, 5, 7, 0, 0, 5922, 5924, 5, 734, 0, 0, 5923, 5922, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 6015, 1, 0, 0, 0, 5925, 5927, 5, 8, 0, 0, 5926, 5928, 5, 743, 0, 0, 5927, 5926, 1, 0, 0, 0, 5927, 5928, 1, 0, 0, 0, 5928, 6015, 1, 0, 0, 0, 5929, 5937, 5, 34, 0, 0, 5930, 5931, 5, 660, 0, 0, 5931, 5938, 5, 752, 0, 0, 5932, 5938, 5, 743, 0, 0, 5933, 5938, 5, 684, 0, 0, 5934, 5938, 5, 678, 0, 0, 5935, 5938, 5, 658, 0, 0, 5936, 5938, 5, 582, 0, 0, 5937, 5930, 1, 0, 0, 0, 5937, 5932, 1, 0, 0, 0, 5937, 5933, 1, 0, 0, 0, 5937, 5934, 1, 0, 0, 0, 5937, 5935, 1, 0, 0, 0, 5937, 5936, 1, 0, 0, 0, 5937, 5938, 1, 0, 0, 0, 5938, 6015, 1, 0, 0, 0, 5939, 6015, 5, 44, 0, 0, 5940, 5942, 5, 51, 0, 0, 5941, 5943, 5, 582, 0, 0, 5942, 5941, 1, 0, 0, 0, 5942, 5943, 1, 0, 0, 0, 5943, 6015, 1, 0, 0, 0, 5944, 6015, 5, 385, 0, 0, 5945, 6015, 5, 717, 0, 0, 5946, 6015, 5, 718, 0, 0, 5947, 5948, 5, 73, 0, 0, 5948, 6015, 5, 121, 0, 0, 5949, 6015, 5, 82, 0, 0, 5950, 6015, 5, 86, 0, 0, 5951, 5952, 5, 104, 0, 0, 5952, 6015, 5, 752, 0, 0, 5953, 6015, 5, 735, 0, 0, 5954, 6015, 5, 547, 0, 0, 5955, 6015, 5, 138, 0, 0, 5956, 6015, 5, 736, 0, 0, 5957, 5958, 5, 572, 0, 0, 5958, 6015, 7, 88, 0, 0, 5959, 6015, 5, 154, 0, 0, 5960, 5961, 5, 157, 0, 0, 5961, 6015, 7, 89, 0, 0, 5962, 6015, 5, 749, 0, 0, 5963, 6015, 5, 750, 0, 0, 5964, 6015, 5, 178, 0, 0, 5965, 6015, 5, 185, 0, 0, 5966, 6015, 5, 186, 0, 0, 5967, 6015, 5, 705, 0, 0, 5968, 6015, 5, 706, 0, 0, 5969, 6015, 5, 707, 0, 0, 5970, 6015, 5, 709, 0, 0, 5971, 6015, 5, 710, 0, 0, 5972, 6015, 5, 711, 0, 0, 5973, 6015, 5, 712, 0, 0, 5974, 6015, 5, 714, 0, 0, 5975, 6015, 5, 715, 0, 0, 5976, 6015, 5, 716, 0, 0, 5977, 6015, 5, 719, 0, 0, 5978, 6015, 5, 720, 0, 0, 5979, 6015, 5, 721, 0, 0, 5980, 6015, 5, 722, 0, 0, 5981, 6015, 5, 723, 0, 0, 5982, 6015, 5, 724, 0, 0, 5983, 6015, 5, 725, 0, 0, 5984, 6015, 5, 726, 0, 0, 5985, 6015, 5, 727, 0, 0, 5986, 6015, 5, 728, 0, 0, 5987, 6015, 5, 731, 0, 0, 5988, 6015, 5, 732, 0, 0, 5989, 6015, 5, 733, 0, 0, 5990, 6015, 5, 737, 0, 0, 5991, 6015, 5, 738, 0, 0, 5992, 6015, 5, 740, 0, 0, 5993, 6015, 5, 741, 0, 0, 5994, 6015, 5, 742, 0, 0, 5995, 6015, 5, 745, 0, 0, 5996, 6015, 5, 746, 0, 0, 5997, 6015, 5, 747, 0, 0, 5998, 6015, 5, 160, 0, 0, 5999, 6015, 5, 748, 0, 0, 6000, 6015, 5, 836, 0, 0, 6001, 6015, 5, 751, 0, 0, 6002, 6015, 5, 753, 0, 0, 6003, 6015, 5, 838, 0, 0, 6004, 6015, 5, 754, 0, 0, 6005, 6015, 5, 755, 0, 0, 6006, 6007, 5, 103, 0, 0, 6007, 6008, 5, 68, 0, 0, 6008, 6015, 5, 744, 0, 0, 6009, 6010, 5, 154, 0, 0, 6010, 6011, 5, 88, 0, 0, 6011, 6015, 5, 744, 0, 0, 6012, 6013, 5, 729, 0, 0, 6013, 6015, 5, 730, 0, 0, 6014, 5921, 1, 0, 0, 0, 6014, 5925, 1, 0, 0, 0, 6014, 5929, 1, 0, 0, 0, 6014, 5939, 1, 0, 0, 0, 6014, 5940, 1, 0, 0, 0, 6014, 5944, 1, 0, 0, 0, 6014, 5945, 1, 0, 0, 0, 6014, 5946, 1, 0, 0, 0, 6014, 5947, 1, 0, 0, 0, 6014, 5949, 1, 0, 0, 0, 6014, 5950, 1, 0, 0, 0, 6014, 5951, 1, 0, 0, 0, 6014, 5953, 1, 0, 0, 0, 6014, 5954, 1, 0, 0, 0, 6014, 5955, 1, 0, 0, 0, 6014, 5956, 1, 0, 0, 0, 6014, 5957, 1, 0, 0, 0, 6014, 5959, 1, 0, 0, 0, 6014, 5960, 1, 0, 0, 0, 6014, 5962, 1, 0, 0, 0, 6014, 5963, 1, 0, 0, 0, 6014, 5964, 1, 0, 0, 0, 6014, 5965, 1, 0, 0, 0, 6014, 5966, 1, 0, 0, 0, 6014, 5967, 1, 0, 0, 0, 6014, 5968, 1, 0, 0, 0, 6014, 5969, 1, 0, 0, 0, 6014, 5970, 1, 0, 0, 0, 6014, 5971, 1, 0, 0, 0, 6014, 5972, 1, 0, 0, 0, 6014, 5973, 1, 0, 0, 0, 6014, 5974, 1, 0, 0, 0, 6014, 5975, 1, 0, 0, 0, 6014, 5976, 1, 0, 0, 0, 6014, 5977, 1, 0, 0, 0, 6014, 5978, 1, 0, 0, 0, 6014, 5979, 1, 0, 0, 0, 6014, 5980, 1, 0, 0, 0, 6014, 5981, 1, 0, 0, 0, 6014, 5982, 1, 0, 0, 0, 6014, 5983, 1, 0, 0, 0, 6014, 5984, 1, 0, 0, 0, 6014, 5985, 1, 0, 0, 0, 6014, 5986, 1, 0, 0, 0, 6014, 5987, 1, 0, 0, 0, 6014, 5988, 1, 0, 0, 0, 6014, 5989, 1, 0, 0, 0, 6014, 5990, 1, 0, 0, 0, 6014, 5991, 1, 0, 0, 0, 6014, 5992, 1, 0, 0, 0, 6014, 5993, 1, 0, 0, 0, 6014, 5994, 1, 0, 0, 0, 6014, 5995, 1, 0, 0, 0, 6014, 5996, 1, 0, 0, 0, 6014, 5997, 1, 0, 0, 0, 6014, 5998, 1, 0, 0, 0, 6014, 5999, 1, 0, 0, 0, 6014, 6000, 1, 0, 0, 0, 6014, 6001, 1, 0, 0, 0, 6014, 6002, 1, 0, 0, 0, 6014, 6003, 1, 0, 0, 0, 6014, 6004, 1, 0, 0, 0, 6014, 6005, 1, 0, 0, 0, 6014, 6006, 1, 0, 0, 0, 6014, 6009, 1, 0, 0, 0, 6014, 6012, 1, 0, 0, 0, 6015, 533, 1, 0, 0, 0, 6016, 6033, 5, 850, 0, 0, 6017, 6018, 5, 850, 0, 0, 6018, 6019, 5, 865, 0, 0, 6019, 6033, 5, 850, 0, 0, 6020, 6021, 3, 722, 361, 0, 6021, 6022, 5, 865, 0, 0, 6022, 6023, 5, 850, 0, 0, 6023, 6033, 1, 0, 0, 0, 6024, 6025, 3, 722, 361, 0, 6025, 6026, 5, 865, 0, 0, 6026, 6027, 3, 722, 361, 0, 6027, 6033, 1, 0, 0, 0, 6028, 6029, 3, 722, 361, 0, 6029, 6030, 3, 726, 363, 0, 6030, 6033, 1, 0, 0, 0, 6031, 6033, 3, 722, 361, 0, 6032, 6016, 1, 0, 0, 0, 6032, 6017, 1, 0, 0, 0, 6032, 6020, 1, 0, 0, 0, 6032, 6024, 1, 0, 0, 0, 6032, 6028, 1, 0, 0, 0, 6032, 6031, 1, 0, 0, 0, 6033, 535, 1, 0, 0, 0, 6034, 6035, 3, 700, 350, 0, 6035, 6036, 5, 176, 0, 0, 6036, 6037, 3, 700, 350, 0, 6037, 537, 1, 0, 0, 0, 6038, 6040, 5, 10, 0, 0, 6039, 6041, 3, 548, 274, 0, 6040, 6039, 1, 0, 0, 0, 6040, 6041, 1, 0, 0, 0, 6041, 6042, 1, 0, 0, 0, 6042, 6043, 5, 173, 0, 0, 6043, 6087, 3, 660, 330, 0, 6044, 6046, 5, 10, 0, 0, 6045, 6047, 3, 548, 274, 0, 6046, 6045, 1, 0, 0, 0, 6046, 6047, 1, 0, 0, 0, 6047, 6048, 1, 0, 0, 0, 6048, 6049, 5, 173, 0, 0, 6049, 6050, 3, 662, 331, 0, 6050, 6051, 5, 185, 0, 0, 6051, 6052, 5, 77, 0, 0, 6052, 6053, 5, 119, 0, 0, 6053, 6058, 3, 670, 335, 0, 6054, 6055, 5, 194, 0, 0, 6055, 6056, 3, 730, 365, 0, 6056, 6057, 5, 19, 0, 0, 6057, 6059, 1, 0, 0, 0, 6058, 6054, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6087, 1, 0, 0, 0, 6060, 6062, 5, 10, 0, 0, 6061, 6063, 3, 548, 274, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6065, 5, 173, 0, 0, 6065, 6066, 3, 662, 331, 0, 6066, 6067, 5, 185, 0, 0, 6067, 6068, 5, 77, 0, 0, 6068, 6069, 5, 119, 0, 0, 6069, 6073, 3, 674, 337, 0, 6070, 6071, 5, 188, 0, 0, 6071, 6072, 5, 360, 0, 0, 6072, 6074, 5, 882, 0, 0, 6073, 6070, 1, 0, 0, 0, 6073, 6074, 1, 0, 0, 0, 6074, 6087, 1, 0, 0, 0, 6075, 6077, 5, 10, 0, 0, 6076, 6078, 3, 548, 274, 0, 6077, 6076, 1, 0, 0, 0, 6077, 6078, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 6080, 5, 173, 0, 0, 6080, 6081, 3, 662, 331, 0, 6081, 6082, 5, 51, 0, 0, 6082, 6083, 5, 77, 0, 0, 6083, 6084, 5, 119, 0, 0, 6084, 6085, 3, 670, 335, 0, 6085, 6087, 1, 0, 0, 0, 6086, 6038, 1, 0, 0, 0, 6086, 6044, 1, 0, 0, 0, 6086, 6060, 1, 0, 0, 0, 6086, 6075, 1, 0, 0, 0, 6087, 539, 1, 0, 0, 0, 6088, 6089, 5, 27, 0, 0, 6089, 6090, 5, 173, 0, 0, 6090, 6094, 3, 660, 330, 0, 6091, 6093, 3, 550, 275, 0, 6092, 6091, 1, 0, 0, 0, 6093, 6096, 1, 0, 0, 0, 6094, 6092, 1, 0, 0, 0, 6094, 6095, 1, 0, 0, 0, 6095, 541, 1, 0, 0, 0, 6096, 6094, 1, 0, 0, 0, 6097, 6098, 5, 329, 0, 0, 6098, 6099, 5, 173, 0, 0, 6099, 6101, 3, 660, 330, 0, 6100, 6102, 7, 90, 0, 0, 6101, 6100, 1, 0, 0, 0, 6101, 6102, 1, 0, 0, 0, 6102, 543, 1, 0, 0, 0, 6103, 6105, 5, 120, 0, 0, 6104, 6106, 3, 548, 274, 0, 6105, 6104, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 6107, 1, 0, 0, 0, 6107, 6108, 7, 61, 0, 0, 6108, 6109, 3, 660, 330, 0, 6109, 545, 1, 0, 0, 0, 6110, 6112, 5, 562, 0, 0, 6111, 6113, 3, 548, 274, 0, 6112, 6111, 1, 0, 0, 0, 6112, 6113, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 6115, 5, 173, 0, 0, 6115, 6117, 3, 660, 330, 0, 6116, 6118, 5, 549, 0, 0, 6117, 6116, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, 6120, 1, 0, 0, 0, 6119, 6121, 5, 392, 0, 0, 6120, 6119, 1, 0, 0, 0, 6120, 6121, 1, 0, 0, 0, 6121, 6123, 1, 0, 0, 0, 6122, 6124, 5, 679, 0, 0, 6123, 6122, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 547, 1, 0, 0, 0, 6125, 6126, 7, 91, 0, 0, 6126, 549, 1, 0, 0, 0, 6127, 6128, 5, 65, 0, 0, 6128, 6135, 5, 677, 0, 0, 6129, 6135, 5, 549, 0, 0, 6130, 6135, 5, 396, 0, 0, 6131, 6135, 5, 484, 0, 0, 6132, 6135, 5, 392, 0, 0, 6133, 6135, 5, 327, 0, 0, 6134, 6127, 1, 0, 0, 0, 6134, 6129, 1, 0, 0, 0, 6134, 6130, 1, 0, 0, 0, 6134, 6131, 1, 0, 0, 0, 6134, 6132, 1, 0, 0, 0, 6134, 6133, 1, 0, 0, 0, 6135, 551, 1, 0, 0, 0, 6136, 6137, 5, 432, 0, 0, 6137, 6138, 5, 344, 0, 0, 6138, 6143, 3, 722, 361, 0, 6139, 6140, 5, 868, 0, 0, 6140, 6142, 3, 722, 361, 0, 6141, 6139, 1, 0, 0, 0, 6142, 6145, 1, 0, 0, 0, 6143, 6141, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6155, 1, 0, 0, 0, 6145, 6143, 1, 0, 0, 0, 6146, 6147, 5, 155, 0, 0, 6147, 6152, 3, 554, 277, 0, 6148, 6149, 5, 868, 0, 0, 6149, 6151, 3, 554, 277, 0, 6150, 6148, 1, 0, 0, 0, 6151, 6154, 1, 0, 0, 0, 6152, 6150, 1, 0, 0, 0, 6152, 6153, 1, 0, 0, 0, 6153, 6156, 1, 0, 0, 0, 6154, 6152, 1, 0, 0, 0, 6155, 6146, 1, 0, 0, 0, 6155, 6156, 1, 0, 0, 0, 6156, 553, 1, 0, 0, 0, 6157, 6158, 7, 92, 0, 0, 6158, 6159, 3, 718, 359, 0, 6159, 6160, 5, 857, 0, 0, 6160, 6161, 3, 822, 411, 0, 6161, 555, 1, 0, 0, 0, 6162, 6163, 5, 673, 0, 0, 6163, 6164, 5, 344, 0, 0, 6164, 6169, 3, 722, 361, 0, 6165, 6166, 5, 868, 0, 0, 6166, 6168, 3, 722, 361, 0, 6167, 6165, 1, 0, 0, 0, 6168, 6171, 1, 0, 0, 0, 6169, 6167, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 557, 1, 0, 0, 0, 6171, 6169, 1, 0, 0, 0, 6172, 6173, 5, 432, 0, 0, 6173, 6174, 5, 534, 0, 0, 6174, 6175, 3, 722, 361, 0, 6175, 6176, 5, 603, 0, 0, 6176, 6177, 5, 882, 0, 0, 6177, 559, 1, 0, 0, 0, 6178, 6179, 5, 673, 0, 0, 6179, 6180, 5, 534, 0, 0, 6180, 6181, 3, 722, 361, 0, 6181, 561, 1, 0, 0, 0, 6182, 6183, 5, 713, 0, 0, 6183, 6184, 5, 450, 0, 0, 6184, 6185, 5, 360, 0, 0, 6185, 6187, 5, 367, 0, 0, 6186, 6188, 5, 857, 0, 0, 6187, 6186, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6213, 5, 882, 0, 0, 6190, 6191, 5, 713, 0, 0, 6191, 6192, 5, 433, 0, 0, 6192, 6193, 5, 68, 0, 0, 6193, 6194, 3, 692, 346, 0, 6194, 6195, 5, 423, 0, 0, 6195, 6196, 5, 20, 0, 0, 6196, 6203, 5, 882, 0, 0, 6197, 6198, 5, 360, 0, 0, 6198, 6200, 5, 367, 0, 0, 6199, 6201, 5, 857, 0, 0, 6200, 6199, 1, 0, 0, 0, 6200, 6201, 1, 0, 0, 0, 6201, 6202, 1, 0, 0, 0, 6202, 6204, 5, 882, 0, 0, 6203, 6197, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6210, 1, 0, 0, 0, 6205, 6207, 5, 144, 0, 0, 6206, 6208, 5, 502, 0, 0, 6207, 6206, 1, 0, 0, 0, 6207, 6208, 1, 0, 0, 0, 6208, 6209, 1, 0, 0, 0, 6209, 6211, 5, 169, 0, 0, 6210, 6205, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6213, 1, 0, 0, 0, 6212, 6182, 1, 0, 0, 0, 6212, 6190, 1, 0, 0, 0, 6213, 563, 1, 0, 0, 0, 6214, 6215, 5, 155, 0, 0, 6215, 6216, 3, 568, 284, 0, 6216, 6219, 7, 93, 0, 0, 6217, 6220, 3, 822, 411, 0, 6218, 6220, 5, 119, 0, 0, 6219, 6217, 1, 0, 0, 0, 6219, 6218, 1, 0, 0, 0, 6220, 6230, 1, 0, 0, 0, 6221, 6222, 5, 868, 0, 0, 6222, 6223, 3, 568, 284, 0, 6223, 6226, 7, 93, 0, 0, 6224, 6227, 3, 822, 411, 0, 6225, 6227, 5, 119, 0, 0, 6226, 6224, 1, 0, 0, 0, 6226, 6225, 1, 0, 0, 0, 6227, 6229, 1, 0, 0, 0, 6228, 6221, 1, 0, 0, 0, 6229, 6232, 1, 0, 0, 0, 6230, 6228, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6267, 1, 0, 0, 0, 6232, 6230, 1, 0, 0, 0, 6233, 6234, 5, 155, 0, 0, 6234, 6237, 3, 58, 29, 0, 6235, 6238, 3, 704, 352, 0, 6236, 6238, 5, 42, 0, 0, 6237, 6235, 1, 0, 0, 0, 6237, 6236, 1, 0, 0, 0, 6238, 6267, 1, 0, 0, 0, 6239, 6240, 5, 155, 0, 0, 6240, 6247, 5, 497, 0, 0, 6241, 6244, 3, 704, 352, 0, 6242, 6243, 5, 28, 0, 0, 6243, 6245, 3, 706, 353, 0, 6244, 6242, 1, 0, 0, 0, 6244, 6245, 1, 0, 0, 0, 6245, 6248, 1, 0, 0, 0, 6246, 6248, 5, 42, 0, 0, 6247, 6241, 1, 0, 0, 0, 6247, 6246, 1, 0, 0, 0, 6248, 6267, 1, 0, 0, 0, 6249, 6267, 3, 500, 250, 0, 6250, 6267, 3, 352, 176, 0, 6251, 6267, 3, 350, 175, 0, 6252, 6253, 5, 155, 0, 0, 6253, 6254, 3, 718, 359, 0, 6254, 6255, 7, 93, 0, 0, 6255, 6263, 3, 822, 411, 0, 6256, 6257, 5, 868, 0, 0, 6257, 6258, 3, 718, 359, 0, 6258, 6259, 7, 93, 0, 0, 6259, 6260, 3, 822, 411, 0, 6260, 6262, 1, 0, 0, 0, 6261, 6256, 1, 0, 0, 0, 6262, 6265, 1, 0, 0, 0, 6263, 6261, 1, 0, 0, 0, 6263, 6264, 1, 0, 0, 0, 6264, 6267, 1, 0, 0, 0, 6265, 6263, 1, 0, 0, 0, 6266, 6214, 1, 0, 0, 0, 6266, 6233, 1, 0, 0, 0, 6266, 6239, 1, 0, 0, 0, 6266, 6249, 1, 0, 0, 0, 6266, 6250, 1, 0, 0, 0, 6266, 6251, 1, 0, 0, 0, 6266, 6252, 1, 0, 0, 0, 6267, 565, 1, 0, 0, 0, 6268, 6269, 5, 157, 0, 0, 6269, 6270, 7, 63, 0, 0, 6270, 6453, 5, 452, 0, 0, 6271, 6272, 5, 157, 0, 0, 6272, 6273, 7, 94, 0, 0, 6273, 6276, 5, 386, 0, 0, 6274, 6275, 5, 80, 0, 0, 6275, 6277, 5, 882, 0, 0, 6276, 6274, 1, 0, 0, 0, 6276, 6277, 1, 0, 0, 0, 6277, 6280, 1, 0, 0, 0, 6278, 6279, 5, 68, 0, 0, 6279, 6281, 3, 730, 365, 0, 6280, 6278, 1, 0, 0, 0, 6280, 6281, 1, 0, 0, 0, 6281, 6289, 1, 0, 0, 0, 6282, 6286, 5, 100, 0, 0, 6283, 6284, 3, 730, 365, 0, 6284, 6285, 5, 868, 0, 0, 6285, 6287, 1, 0, 0, 0, 6286, 6283, 1, 0, 0, 0, 6286, 6287, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6290, 3, 730, 365, 0, 6289, 6282, 1, 0, 0, 0, 6289, 6290, 1, 0, 0, 0, 6290, 6292, 1, 0, 0, 0, 6291, 6293, 3, 400, 200, 0, 6292, 6291, 1, 0, 0, 0, 6292, 6293, 1, 0, 0, 0, 6293, 6453, 1, 0, 0, 0, 6294, 6295, 5, 157, 0, 0, 6295, 6297, 3, 570, 285, 0, 6296, 6298, 3, 572, 286, 0, 6297, 6296, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6453, 1, 0, 0, 0, 6299, 6301, 5, 157, 0, 0, 6300, 6302, 5, 392, 0, 0, 6301, 6300, 1, 0, 0, 0, 6301, 6302, 1, 0, 0, 0, 6302, 6304, 1, 0, 0, 0, 6303, 6305, 5, 408, 0, 0, 6304, 6303, 1, 0, 0, 0, 6304, 6305, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 6307, 7, 47, 0, 0, 6307, 6308, 7, 95, 0, 0, 6308, 6311, 3, 662, 331, 0, 6309, 6310, 7, 95, 0, 0, 6310, 6312, 3, 638, 319, 0, 6311, 6309, 1, 0, 0, 0, 6311, 6312, 1, 0, 0, 0, 6312, 6314, 1, 0, 0, 0, 6313, 6315, 3, 572, 286, 0, 6314, 6313, 1, 0, 0, 0, 6314, 6315, 1, 0, 0, 0, 6315, 6453, 1, 0, 0, 0, 6316, 6317, 5, 157, 0, 0, 6317, 6318, 5, 34, 0, 0, 6318, 6320, 7, 0, 0, 0, 6319, 6321, 3, 778, 389, 0, 6320, 6319, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6322, 1, 0, 0, 0, 6322, 6453, 3, 638, 319, 0, 6323, 6324, 5, 157, 0, 0, 6324, 6325, 5, 34, 0, 0, 6325, 6326, 7, 96, 0, 0, 6326, 6453, 3, 718, 359, 0, 6327, 6328, 5, 157, 0, 0, 6328, 6329, 5, 34, 0, 0, 6329, 6330, 5, 409, 0, 0, 6330, 6453, 3, 642, 321, 0, 6331, 6332, 5, 157, 0, 0, 6332, 6333, 5, 34, 0, 0, 6333, 6334, 5, 684, 0, 0, 6334, 6453, 3, 646, 323, 0, 6335, 6336, 5, 157, 0, 0, 6336, 6337, 5, 34, 0, 0, 6337, 6338, 5, 173, 0, 0, 6338, 6453, 3, 662, 331, 0, 6339, 6340, 5, 157, 0, 0, 6340, 6341, 5, 34, 0, 0, 6341, 6342, 5, 678, 0, 0, 6342, 6453, 3, 700, 350, 0, 6343, 6344, 5, 157, 0, 0, 6344, 6345, 5, 380, 0, 0, 6345, 6346, 3, 708, 354, 0, 6346, 6347, 7, 97, 0, 0, 6347, 6453, 1, 0, 0, 0, 6348, 6349, 5, 157, 0, 0, 6349, 6453, 3, 574, 287, 0, 6350, 6351, 5, 157, 0, 0, 6351, 6359, 7, 98, 0, 0, 6352, 6356, 5, 100, 0, 0, 6353, 6354, 3, 730, 365, 0, 6354, 6355, 5, 868, 0, 0, 6355, 6357, 1, 0, 0, 0, 6356, 6353, 1, 0, 0, 0, 6356, 6357, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 3, 730, 365, 0, 6359, 6352, 1, 0, 0, 0, 6359, 6360, 1, 0, 0, 0, 6360, 6453, 1, 0, 0, 0, 6361, 6362, 5, 157, 0, 0, 6362, 6363, 5, 262, 0, 0, 6363, 6364, 5, 866, 0, 0, 6364, 6365, 5, 850, 0, 0, 6365, 6366, 5, 867, 0, 0, 6366, 6453, 7, 98, 0, 0, 6367, 6368, 5, 157, 0, 0, 6368, 6371, 3, 576, 288, 0, 6369, 6370, 7, 95, 0, 0, 6370, 6372, 3, 638, 319, 0, 6371, 6369, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6374, 1, 0, 0, 0, 6373, 6375, 3, 572, 286, 0, 6374, 6373, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6453, 1, 0, 0, 0, 6376, 6377, 5, 157, 0, 0, 6377, 6378, 5, 132, 0, 0, 6378, 6379, 5, 336, 0, 0, 6379, 6453, 3, 718, 359, 0, 6380, 6381, 5, 157, 0, 0, 6381, 6382, 5, 409, 0, 0, 6382, 6383, 5, 336, 0, 0, 6383, 6453, 3, 642, 321, 0, 6384, 6385, 5, 157, 0, 0, 6385, 6392, 5, 414, 0, 0, 6386, 6387, 5, 65, 0, 0, 6387, 6390, 3, 666, 333, 0, 6388, 6389, 5, 188, 0, 0, 6389, 6391, 3, 664, 332, 0, 6390, 6388, 1, 0, 0, 0, 6390, 6391, 1, 0, 0, 0, 6391, 6393, 1, 0, 0, 0, 6392, 6386, 1, 0, 0, 0, 6392, 6393, 1, 0, 0, 0, 6393, 6453, 1, 0, 0, 0, 6394, 6396, 5, 157, 0, 0, 6395, 6397, 5, 392, 0, 0, 6396, 6395, 1, 0, 0, 0, 6396, 6397, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 7, 99, 0, 0, 6399, 6400, 7, 95, 0, 0, 6400, 6403, 3, 662, 331, 0, 6401, 6402, 7, 95, 0, 0, 6402, 6404, 3, 638, 319, 0, 6403, 6401, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6407, 1, 0, 0, 0, 6405, 6406, 5, 192, 0, 0, 6406, 6408, 3, 822, 411, 0, 6407, 6405, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6453, 1, 0, 0, 0, 6409, 6410, 5, 157, 0, 0, 6410, 6411, 5, 516, 0, 0, 6411, 6414, 5, 752, 0, 0, 6412, 6413, 7, 95, 0, 0, 6413, 6415, 3, 638, 319, 0, 6414, 6412, 1, 0, 0, 0, 6414, 6415, 1, 0, 0, 0, 6415, 6417, 1, 0, 0, 0, 6416, 6418, 3, 572, 286, 0, 6417, 6416, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6453, 1, 0, 0, 0, 6419, 6420, 5, 157, 0, 0, 6420, 6429, 5, 545, 0, 0, 6421, 6426, 3, 578, 289, 0, 6422, 6423, 5, 868, 0, 0, 6423, 6425, 3, 578, 289, 0, 6424, 6422, 1, 0, 0, 0, 6425, 6428, 1, 0, 0, 0, 6426, 6424, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6430, 1, 0, 0, 0, 6428, 6426, 1, 0, 0, 0, 6429, 6421, 1, 0, 0, 0, 6429, 6430, 1, 0, 0, 0, 6430, 6434, 1, 0, 0, 0, 6431, 6432, 5, 65, 0, 0, 6432, 6433, 5, 548, 0, 0, 6433, 6435, 3, 730, 365, 0, 6434, 6431, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6442, 1, 0, 0, 0, 6436, 6437, 5, 100, 0, 0, 6437, 6440, 3, 730, 365, 0, 6438, 6439, 5, 509, 0, 0, 6439, 6441, 3, 730, 365, 0, 6440, 6438, 1, 0, 0, 0, 6440, 6441, 1, 0, 0, 0, 6441, 6443, 1, 0, 0, 0, 6442, 6436, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 6453, 1, 0, 0, 0, 6444, 6445, 5, 157, 0, 0, 6445, 6446, 7, 64, 0, 0, 6446, 6448, 5, 645, 0, 0, 6447, 6449, 3, 400, 200, 0, 6448, 6447, 1, 0, 0, 0, 6448, 6449, 1, 0, 0, 0, 6449, 6453, 1, 0, 0, 0, 6450, 6451, 5, 157, 0, 0, 6451, 6453, 5, 564, 0, 0, 6452, 6268, 1, 0, 0, 0, 6452, 6271, 1, 0, 0, 0, 6452, 6294, 1, 0, 0, 0, 6452, 6299, 1, 0, 0, 0, 6452, 6316, 1, 0, 0, 0, 6452, 6323, 1, 0, 0, 0, 6452, 6327, 1, 0, 0, 0, 6452, 6331, 1, 0, 0, 0, 6452, 6335, 1, 0, 0, 0, 6452, 6339, 1, 0, 0, 0, 6452, 6343, 1, 0, 0, 0, 6452, 6348, 1, 0, 0, 0, 6452, 6350, 1, 0, 0, 0, 6452, 6361, 1, 0, 0, 0, 6452, 6367, 1, 0, 0, 0, 6452, 6376, 1, 0, 0, 0, 6452, 6380, 1, 0, 0, 0, 6452, 6384, 1, 0, 0, 0, 6452, 6394, 1, 0, 0, 0, 6452, 6409, 1, 0, 0, 0, 6452, 6419, 1, 0, 0, 0, 6452, 6444, 1, 0, 0, 0, 6452, 6450, 1, 0, 0, 0, 6453, 567, 1, 0, 0, 0, 6454, 6465, 5, 892, 0, 0, 6455, 6465, 5, 893, 0, 0, 6456, 6457, 5, 870, 0, 0, 6457, 6459, 5, 870, 0, 0, 6458, 6456, 1, 0, 0, 0, 6458, 6459, 1, 0, 0, 0, 6459, 6460, 1, 0, 0, 0, 6460, 6462, 7, 100, 0, 0, 6461, 6458, 1, 0, 0, 0, 6461, 6462, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 6465, 3, 722, 361, 0, 6464, 6454, 1, 0, 0, 0, 6464, 6455, 1, 0, 0, 0, 6464, 6461, 1, 0, 0, 0, 6465, 569, 1, 0, 0, 0, 6466, 6467, 5, 26, 0, 0, 6467, 6481, 5, 155, 0, 0, 6468, 6481, 5, 823, 0, 0, 6469, 6481, 5, 824, 0, 0, 6470, 6481, 5, 40, 0, 0, 6471, 6481, 5, 153, 0, 0, 6472, 6473, 5, 409, 0, 0, 6473, 6481, 5, 645, 0, 0, 6474, 6475, 5, 132, 0, 0, 6475, 6481, 5, 645, 0, 0, 6476, 6478, 7, 62, 0, 0, 6477, 6476, 1, 0, 0, 0, 6477, 6478, 1, 0, 0, 0, 6478, 6479, 1, 0, 0, 0, 6479, 6481, 7, 101, 0, 0, 6480, 6466, 1, 0, 0, 0, 6480, 6468, 1, 0, 0, 0, 6480, 6469, 1, 0, 0, 0, 6480, 6470, 1, 0, 0, 0, 6480, 6471, 1, 0, 0, 0, 6480, 6472, 1, 0, 0, 0, 6480, 6474, 1, 0, 0, 0, 6480, 6477, 1, 0, 0, 0, 6481, 571, 1, 0, 0, 0, 6482, 6483, 5, 99, 0, 0, 6483, 6487, 5, 882, 0, 0, 6484, 6485, 5, 192, 0, 0, 6485, 6487, 3, 822, 411, 0, 6486, 6482, 1, 0, 0, 0, 6486, 6484, 1, 0, 0, 0, 6487, 573, 1, 0, 0, 0, 6488, 6490, 5, 647, 0, 0, 6489, 6488, 1, 0, 0, 0, 6489, 6490, 1, 0, 0, 0, 6490, 6491, 1, 0, 0, 0, 6491, 6506, 5, 381, 0, 0, 6492, 6493, 5, 453, 0, 0, 6493, 6506, 5, 645, 0, 0, 6494, 6506, 5, 536, 0, 0, 6495, 6506, 5, 734, 0, 0, 6496, 6498, 5, 408, 0, 0, 6497, 6496, 1, 0, 0, 0, 6497, 6498, 1, 0, 0, 0, 6498, 6499, 1, 0, 0, 0, 6499, 6506, 5, 544, 0, 0, 6500, 6506, 5, 546, 0, 0, 6501, 6502, 5, 598, 0, 0, 6502, 6506, 5, 422, 0, 0, 6503, 6506, 5, 312, 0, 0, 6504, 6506, 5, 356, 0, 0, 6505, 6489, 1, 0, 0, 0, 6505, 6492, 1, 0, 0, 0, 6505, 6494, 1, 0, 0, 0, 6505, 6495, 1, 0, 0, 0, 6505, 6497, 1, 0, 0, 0, 6505, 6500, 1, 0, 0, 0, 6505, 6501, 1, 0, 0, 0, 6505, 6503, 1, 0, 0, 0, 6505, 6504, 1, 0, 0, 0, 6506, 575, 1, 0, 0, 0, 6507, 6519, 5, 386, 0, 0, 6508, 6509, 5, 173, 0, 0, 6509, 6519, 5, 645, 0, 0, 6510, 6512, 5, 392, 0, 0, 6511, 6510, 1, 0, 0, 0, 6511, 6512, 1, 0, 0, 0, 6512, 6514, 1, 0, 0, 0, 6513, 6515, 5, 408, 0, 0, 6514, 6513, 1, 0, 0, 0, 6514, 6515, 1, 0, 0, 0, 6515, 6516, 1, 0, 0, 0, 6516, 6519, 5, 752, 0, 0, 6517, 6519, 5, 667, 0, 0, 6518, 6507, 1, 0, 0, 0, 6518, 6508, 1, 0, 0, 0, 6518, 6511, 1, 0, 0, 0, 6518, 6517, 1, 0, 0, 0, 6519, 577, 1, 0, 0, 0, 6520, 6533, 5, 7, 0, 0, 6521, 6522, 5, 320, 0, 0, 6522, 6533, 5, 437, 0, 0, 6523, 6524, 5, 355, 0, 0, 6524, 6533, 5, 656, 0, 0, 6525, 6533, 5, 358, 0, 0, 6526, 6533, 5, 439, 0, 0, 6527, 6533, 5, 802, 0, 0, 6528, 6529, 5, 521, 0, 0, 6529, 6533, 5, 397, 0, 0, 6530, 6533, 5, 605, 0, 0, 6531, 6533, 5, 655, 0, 0, 6532, 6520, 1, 0, 0, 0, 6532, 6521, 1, 0, 0, 0, 6532, 6523, 1, 0, 0, 0, 6532, 6525, 1, 0, 0, 0, 6532, 6526, 1, 0, 0, 0, 6532, 6527, 1, 0, 0, 0, 6532, 6528, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6532, 6531, 1, 0, 0, 0, 6533, 579, 1, 0, 0, 0, 6534, 6535, 5, 318, 0, 0, 6535, 6536, 5, 882, 0, 0, 6536, 581, 1, 0, 0, 0, 6537, 6538, 5, 324, 0, 0, 6538, 6556, 5, 82, 0, 0, 6539, 6544, 3, 602, 301, 0, 6540, 6541, 5, 868, 0, 0, 6541, 6543, 3, 602, 301, 0, 6542, 6540, 1, 0, 0, 0, 6543, 6546, 1, 0, 0, 0, 6544, 6542, 1, 0, 0, 0, 6544, 6545, 1, 0, 0, 0, 6545, 6557, 1, 0, 0, 0, 6546, 6544, 1, 0, 0, 0, 6547, 6548, 3, 662, 331, 0, 6548, 6549, 5, 130, 0, 0, 6549, 6552, 5, 866, 0, 0, 6550, 6553, 3, 686, 343, 0, 6551, 6553, 5, 7, 0, 0, 6552, 6550, 1, 0, 0, 0, 6552, 6551, 1, 0, 0, 0, 6553, 6554, 1, 0, 0, 0, 6554, 6555, 5, 867, 0, 0, 6555, 6557, 1, 0, 0, 0, 6556, 6539, 1, 0, 0, 0, 6556, 6547, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 6559, 5, 80, 0, 0, 6559, 6560, 3, 638, 319, 0, 6560, 583, 1, 0, 0, 0, 6561, 6563, 5, 404, 0, 0, 6562, 6564, 3, 548, 274, 0, 6563, 6562, 1, 0, 0, 0, 6563, 6564, 1, 0, 0, 0, 6564, 6565, 1, 0, 0, 0, 6565, 6570, 3, 604, 302, 0, 6566, 6567, 5, 868, 0, 0, 6567, 6569, 3, 604, 302, 0, 6568, 6566, 1, 0, 0, 0, 6569, 6572, 1, 0, 0, 0, 6570, 6568, 1, 0, 0, 0, 6570, 6571, 1, 0, 0, 0, 6571, 585, 1, 0, 0, 0, 6572, 6570, 1, 0, 0, 0, 6573, 6575, 5, 94, 0, 0, 6574, 6576, 7, 102, 0, 0, 6575, 6574, 1, 0, 0, 0, 6575, 6576, 1, 0, 0, 0, 6576, 6577, 1, 0, 0, 0, 6577, 6578, 3, 822, 411, 0, 6578, 587, 1, 0, 0, 0, 6579, 6580, 5, 103, 0, 0, 6580, 6581, 5, 82, 0, 0, 6581, 6582, 5, 88, 0, 0, 6582, 6583, 5, 324, 0, 0, 6583, 6588, 3, 608, 304, 0, 6584, 6585, 5, 868, 0, 0, 6585, 6587, 3, 608, 304, 0, 6586, 6584, 1, 0, 0, 0, 6587, 6590, 1, 0, 0, 0, 6588, 6586, 1, 0, 0, 0, 6588, 6589, 1, 0, 0, 0, 6589, 589, 1, 0, 0, 0, 6590, 6588, 1, 0, 0, 0, 6591, 6592, 5, 575, 0, 0, 6592, 6597, 3, 592, 296, 0, 6593, 6594, 5, 868, 0, 0, 6594, 6596, 3, 592, 296, 0, 6595, 6593, 1, 0, 0, 0, 6596, 6599, 1, 0, 0, 0, 6597, 6595, 1, 0, 0, 0, 6597, 6598, 1, 0, 0, 0, 6598, 591, 1, 0, 0, 0, 6599, 6597, 1, 0, 0, 0, 6600, 6606, 5, 453, 0, 0, 6601, 6606, 5, 563, 0, 0, 6602, 6603, 5, 548, 0, 0, 6603, 6606, 5, 324, 0, 0, 6604, 6606, 5, 598, 0, 0, 6605, 6600, 1, 0, 0, 0, 6605, 6601, 1, 0, 0, 0, 6605, 6602, 1, 0, 0, 0, 6605, 6604, 1, 0, 0, 0, 6606, 593, 1, 0, 0, 0, 6607, 6608, 5, 575, 0, 0, 6608, 6613, 5, 531, 0, 0, 6609, 6611, 3, 776, 388, 0, 6610, 6609, 1, 0, 0, 0, 6610, 6611, 1, 0, 0, 0, 6611, 6612, 1, 0, 0, 0, 6612, 6614, 3, 722, 361, 0, 6613, 6610, 1, 0, 0, 0, 6613, 6614, 1, 0, 0, 0, 6614, 595, 1, 0, 0, 0, 6615, 6616, 5, 575, 0, 0, 6616, 6618, 7, 64, 0, 0, 6617, 6619, 5, 7, 0, 0, 6618, 6617, 1, 0, 0, 0, 6618, 6619, 1, 0, 0, 0, 6619, 6621, 1, 0, 0, 0, 6620, 6622, 3, 400, 200, 0, 6621, 6620, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, 597, 1, 0, 0, 0, 6623, 6624, 5, 576, 0, 0, 6624, 599, 1, 0, 0, 0, 6625, 6626, 5, 749, 0, 0, 6626, 601, 1, 0, 0, 0, 6627, 6633, 3, 662, 331, 0, 6628, 6629, 7, 19, 0, 0, 6629, 6630, 5, 866, 0, 0, 6630, 6631, 3, 650, 325, 0, 6631, 6632, 5, 867, 0, 0, 6632, 6634, 1, 0, 0, 0, 6633, 6628, 1, 0, 0, 0, 6633, 6634, 1, 0, 0, 0, 6634, 603, 1, 0, 0, 0, 6635, 6654, 5, 366, 0, 0, 6636, 6654, 5, 422, 0, 0, 6637, 6639, 7, 103, 0, 0, 6638, 6637, 1, 0, 0, 0, 6638, 6639, 1, 0, 0, 0, 6639, 6640, 1, 0, 0, 0, 6640, 6654, 5, 452, 0, 0, 6641, 6654, 5, 517, 0, 0, 6642, 6654, 5, 734, 0, 0, 6643, 6644, 5, 548, 0, 0, 6644, 6654, 5, 324, 0, 0, 6645, 6654, 5, 645, 0, 0, 6646, 6654, 5, 680, 0, 0, 6647, 6651, 5, 752, 0, 0, 6648, 6649, 5, 194, 0, 0, 6649, 6650, 5, 135, 0, 0, 6650, 6652, 5, 104, 0, 0, 6651, 6648, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6654, 1, 0, 0, 0, 6653, 6635, 1, 0, 0, 0, 6653, 6636, 1, 0, 0, 0, 6653, 6638, 1, 0, 0, 0, 6653, 6641, 1, 0, 0, 0, 6653, 6642, 1, 0, 0, 0, 6653, 6643, 1, 0, 0, 0, 6653, 6645, 1, 0, 0, 0, 6653, 6646, 1, 0, 0, 0, 6653, 6647, 1, 0, 0, 0, 6654, 6668, 1, 0, 0, 0, 6655, 6656, 5, 556, 0, 0, 6656, 6658, 5, 452, 0, 0, 6657, 6659, 3, 400, 200, 0, 6658, 6657, 1, 0, 0, 0, 6658, 6659, 1, 0, 0, 0, 6659, 6668, 1, 0, 0, 0, 6660, 6662, 7, 61, 0, 0, 6661, 6663, 3, 660, 330, 0, 6662, 6661, 1, 0, 0, 0, 6662, 6663, 1, 0, 0, 0, 6663, 6665, 1, 0, 0, 0, 6664, 6666, 3, 606, 303, 0, 6665, 6664, 1, 0, 0, 0, 6665, 6666, 1, 0, 0, 0, 6666, 6668, 1, 0, 0, 0, 6667, 6653, 1, 0, 0, 0, 6667, 6655, 1, 0, 0, 0, 6667, 6660, 1, 0, 0, 0, 6668, 605, 1, 0, 0, 0, 6669, 6670, 5, 194, 0, 0, 6670, 6671, 5, 135, 0, 0, 6671, 6675, 5, 104, 0, 0, 6672, 6673, 5, 65, 0, 0, 6673, 6675, 5, 391, 0, 0, 6674, 6669, 1, 0, 0, 0, 6674, 6672, 1, 0, 0, 0, 6675, 607, 1, 0, 0, 0, 6676, 6684, 3, 662, 331, 0, 6677, 6678, 5, 130, 0, 0, 6678, 6681, 5, 866, 0, 0, 6679, 6682, 3, 686, 343, 0, 6680, 6682, 5, 7, 0, 0, 6681, 6679, 1, 0, 0, 0, 6681, 6680, 1, 0, 0, 0, 6682, 6683, 1, 0, 0, 0, 6683, 6685, 5, 867, 0, 0, 6684, 6677, 1, 0, 0, 0, 6684, 6685, 1, 0, 0, 0, 6685, 6693, 1, 0, 0, 0, 6686, 6688, 7, 19, 0, 0, 6687, 6686, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6689, 1, 0, 0, 0, 6689, 6690, 5, 866, 0, 0, 6690, 6691, 3, 650, 325, 0, 6691, 6692, 5, 867, 0, 0, 6692, 6694, 1, 0, 0, 0, 6693, 6687, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6697, 1, 0, 0, 0, 6695, 6696, 5, 79, 0, 0, 6696, 6698, 5, 446, 0, 0, 6697, 6695, 1, 0, 0, 0, 6697, 6698, 1, 0, 0, 0, 6698, 609, 1, 0, 0, 0, 6699, 6700, 7, 104, 0, 0, 6700, 6703, 3, 662, 331, 0, 6701, 6704, 3, 674, 337, 0, 6702, 6704, 5, 882, 0, 0, 6703, 6701, 1, 0, 0, 0, 6703, 6702, 1, 0, 0, 0, 6703, 6704, 1, 0, 0, 0, 6704, 611, 1, 0, 0, 0, 6705, 6711, 7, 104, 0, 0, 6706, 6712, 5, 392, 0, 0, 6707, 6712, 5, 528, 0, 0, 6708, 6709, 5, 826, 0, 0, 6709, 6710, 5, 857, 0, 0, 6710, 6712, 7, 105, 0, 0, 6711, 6706, 1, 0, 0, 0, 6711, 6707, 1, 0, 0, 0, 6711, 6708, 1, 0, 0, 0, 6711, 6712, 1, 0, 0, 0, 6712, 6713, 1, 0, 0, 0, 6713, 6714, 3, 634, 317, 0, 6714, 613, 1, 0, 0, 0, 6715, 6716, 7, 104, 0, 0, 6716, 6720, 5, 10, 0, 0, 6717, 6718, 5, 826, 0, 0, 6718, 6719, 5, 857, 0, 0, 6719, 6721, 5, 666, 0, 0, 6720, 6717, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6722, 1, 0, 0, 0, 6722, 6723, 3, 210, 105, 0, 6723, 615, 1, 0, 0, 0, 6724, 6725, 5, 419, 0, 0, 6725, 6726, 5, 882, 0, 0, 6726, 617, 1, 0, 0, 0, 6727, 6728, 5, 187, 0, 0, 6728, 6729, 3, 638, 319, 0, 6729, 619, 1, 0, 0, 0, 6730, 6738, 5, 158, 0, 0, 6731, 6733, 5, 164, 0, 0, 6732, 6734, 5, 682, 0, 0, 6733, 6732, 1, 0, 0, 0, 6733, 6734, 1, 0, 0, 0, 6734, 6735, 1, 0, 0, 0, 6735, 6739, 3, 734, 367, 0, 6736, 6739, 5, 889, 0, 0, 6737, 6739, 5, 890, 0, 0, 6738, 6731, 1, 0, 0, 0, 6738, 6736, 1, 0, 0, 0, 6738, 6737, 1, 0, 0, 0, 6739, 6749, 1, 0, 0, 0, 6740, 6741, 5, 155, 0, 0, 6741, 6746, 3, 624, 312, 0, 6742, 6743, 5, 868, 0, 0, 6743, 6745, 3, 624, 312, 0, 6744, 6742, 1, 0, 0, 0, 6745, 6748, 1, 0, 0, 0, 6746, 6744, 1, 0, 0, 0, 6746, 6747, 1, 0, 0, 0, 6747, 6750, 1, 0, 0, 0, 6748, 6746, 1, 0, 0, 0, 6749, 6740, 1, 0, 0, 0, 6749, 6750, 1, 0, 0, 0, 6750, 621, 1, 0, 0, 0, 6751, 6759, 5, 145, 0, 0, 6752, 6754, 5, 164, 0, 0, 6753, 6755, 5, 682, 0, 0, 6754, 6753, 1, 0, 0, 0, 6754, 6755, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 6760, 3, 734, 367, 0, 6757, 6760, 5, 889, 0, 0, 6758, 6760, 5, 890, 0, 0, 6759, 6752, 1, 0, 0, 0, 6759, 6757, 1, 0, 0, 0, 6759, 6758, 1, 0, 0, 0, 6759, 6760, 1, 0, 0, 0, 6760, 6770, 1, 0, 0, 0, 6761, 6762, 5, 155, 0, 0, 6762, 6767, 3, 624, 312, 0, 6763, 6764, 5, 868, 0, 0, 6764, 6766, 3, 624, 312, 0, 6765, 6763, 1, 0, 0, 0, 6766, 6769, 1, 0, 0, 0, 6767, 6765, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6771, 1, 0, 0, 0, 6769, 6767, 1, 0, 0, 0, 6770, 6761, 1, 0, 0, 0, 6770, 6771, 1, 0, 0, 0, 6771, 623, 1, 0, 0, 0, 6772, 6773, 7, 106, 0, 0, 6773, 6778, 5, 857, 0, 0, 6774, 6779, 3, 734, 367, 0, 6775, 6779, 5, 883, 0, 0, 6776, 6779, 3, 702, 351, 0, 6777, 6779, 3, 724, 362, 0, 6778, 6774, 1, 0, 0, 0, 6778, 6775, 1, 0, 0, 0, 6778, 6776, 1, 0, 0, 0, 6778, 6777, 1, 0, 0, 0, 6779, 625, 1, 0, 0, 0, 6780, 6782, 5, 194, 0, 0, 6781, 6783, 5, 552, 0, 0, 6782, 6781, 1, 0, 0, 0, 6782, 6783, 1, 0, 0, 0, 6783, 6784, 1, 0, 0, 0, 6784, 6789, 3, 52, 26, 0, 6785, 6786, 5, 868, 0, 0, 6786, 6788, 3, 52, 26, 0, 6787, 6785, 1, 0, 0, 0, 6788, 6791, 1, 0, 0, 0, 6789, 6787, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 627, 1, 0, 0, 0, 6791, 6789, 1, 0, 0, 0, 6792, 6793, 5, 173, 0, 0, 6793, 6795, 3, 662, 331, 0, 6794, 6796, 3, 258, 129, 0, 6795, 6794, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6798, 1, 0, 0, 0, 6797, 6799, 3, 328, 164, 0, 6798, 6797, 1, 0, 0, 0, 6798, 6799, 1, 0, 0, 0, 6799, 629, 1, 0, 0, 0, 6800, 6802, 5, 72, 0, 0, 6801, 6803, 7, 107, 0, 0, 6802, 6801, 1, 0, 0, 0, 6802, 6803, 1, 0, 0, 0, 6803, 6804, 1, 0, 0, 0, 6804, 6836, 5, 48, 0, 0, 6805, 6806, 3, 568, 284, 0, 6806, 6807, 5, 857, 0, 0, 6807, 6815, 7, 108, 0, 0, 6808, 6809, 5, 868, 0, 0, 6809, 6810, 3, 568, 284, 0, 6810, 6811, 5, 857, 0, 0, 6811, 6812, 7, 108, 0, 0, 6812, 6814, 1, 0, 0, 0, 6813, 6808, 1, 0, 0, 0, 6814, 6817, 1, 0, 0, 0, 6815, 6813, 1, 0, 0, 0, 6815, 6816, 1, 0, 0, 0, 6816, 6837, 1, 0, 0, 0, 6817, 6815, 1, 0, 0, 0, 6818, 6821, 5, 30, 0, 0, 6819, 6822, 3, 730, 365, 0, 6820, 6822, 3, 568, 284, 0, 6821, 6819, 1, 0, 0, 0, 6821, 6820, 1, 0, 0, 0, 6822, 6823, 1, 0, 0, 0, 6823, 6824, 3, 568, 284, 0, 6824, 6825, 5, 857, 0, 0, 6825, 6833, 3, 632, 316, 0, 6826, 6827, 5, 868, 0, 0, 6827, 6828, 3, 568, 284, 0, 6828, 6829, 5, 857, 0, 0, 6829, 6830, 3, 632, 316, 0, 6830, 6832, 1, 0, 0, 0, 6831, 6826, 1, 0, 0, 0, 6832, 6835, 1, 0, 0, 0, 6833, 6831, 1, 0, 0, 0, 6833, 6834, 1, 0, 0, 0, 6834, 6837, 1, 0, 0, 0, 6835, 6833, 1, 0, 0, 0, 6836, 6805, 1, 0, 0, 0, 6836, 6818, 1, 0, 0, 0, 6837, 631, 1, 0, 0, 0, 6838, 6839, 7, 109, 0, 0, 6839, 633, 1, 0, 0, 0, 6840, 6846, 3, 210, 105, 0, 6841, 6846, 3, 186, 93, 0, 6842, 6846, 3, 192, 96, 0, 6843, 6846, 3, 208, 104, 0, 6844, 6846, 3, 220, 110, 0, 6845, 6840, 1, 0, 0, 0, 6845, 6841, 1, 0, 0, 0, 6845, 6842, 1, 0, 0, 0, 6845, 6843, 1, 0, 0, 0, 6845, 6844, 1, 0, 0, 0, 6846, 6851, 1, 0, 0, 0, 6847, 6848, 5, 65, 0, 0, 6848, 6849, 5, 349, 0, 0, 6849, 6851, 3, 722, 361, 0, 6850, 6845, 1, 0, 0, 0, 6850, 6847, 1, 0, 0, 0, 6851, 635, 1, 0, 0, 0, 6852, 6853, 3, 718, 359, 0, 6853, 637, 1, 0, 0, 0, 6854, 6855, 3, 718, 359, 0, 6855, 639, 1, 0, 0, 0, 6856, 6857, 3, 718, 359, 0, 6857, 641, 1, 0, 0, 0, 6858, 6859, 3, 718, 359, 0, 6859, 643, 1, 0, 0, 0, 6860, 6861, 3, 718, 359, 0, 6861, 645, 1, 0, 0, 0, 6862, 6863, 3, 718, 359, 0, 6863, 647, 1, 0, 0, 0, 6864, 6865, 3, 722, 361, 0, 6865, 649, 1, 0, 0, 0, 6866, 6871, 3, 652, 326, 0, 6867, 6868, 5, 868, 0, 0, 6868, 6870, 3, 652, 326, 0, 6869, 6867, 1, 0, 0, 0, 6870, 6873, 1, 0, 0, 0, 6871, 6869, 1, 0, 0, 0, 6871, 6872, 1, 0, 0, 0, 6872, 651, 1, 0, 0, 0, 6873, 6871, 1, 0, 0, 0, 6874, 6875, 3, 722, 361, 0, 6875, 653, 1, 0, 0, 0, 6876, 6877, 3, 722, 361, 0, 6877, 655, 1, 0, 0, 0, 6878, 6879, 3, 722, 361, 0, 6879, 657, 1, 0, 0, 0, 6880, 6881, 3, 718, 359, 0, 6881, 659, 1, 0, 0, 0, 6882, 6887, 3, 662, 331, 0, 6883, 6884, 5, 868, 0, 0, 6884, 6886, 3, 662, 331, 0, 6885, 6883, 1, 0, 0, 0, 6886, 6889, 1, 0, 0, 0, 6887, 6885, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 661, 1, 0, 0, 0, 6889, 6887, 1, 0, 0, 0, 6890, 6891, 3, 718, 359, 0, 6891, 663, 1, 0, 0, 0, 6892, 6897, 3, 666, 333, 0, 6893, 6894, 5, 868, 0, 0, 6894, 6896, 3, 666, 333, 0, 6895, 6893, 1, 0, 0, 0, 6896, 6899, 1, 0, 0, 0, 6897, 6895, 1, 0, 0, 0, 6897, 6898, 1, 0, 0, 0, 6898, 665, 1, 0, 0, 0, 6899, 6897, 1, 0, 0, 0, 6900, 6903, 3, 700, 350, 0, 6901, 6903, 3, 722, 361, 0, 6902, 6900, 1, 0, 0, 0, 6902, 6901, 1, 0, 0, 0, 6903, 667, 1, 0, 0, 0, 6904, 6909, 3, 722, 361, 0, 6905, 6907, 3, 726, 363, 0, 6906, 6908, 3, 726, 363, 0, 6907, 6906, 1, 0, 0, 0, 6907, 6908, 1, 0, 0, 0, 6908, 6910, 1, 0, 0, 0, 6909, 6905, 1, 0, 0, 0, 6909, 6910, 1, 0, 0, 0, 6910, 6919, 1, 0, 0, 0, 6911, 6913, 9, 0, 0, 0, 6912, 6911, 1, 0, 0, 0, 6912, 6913, 1, 0, 0, 0, 6913, 6914, 1, 0, 0, 0, 6914, 6916, 3, 726, 363, 0, 6915, 6917, 3, 726, 363, 0, 6916, 6915, 1, 0, 0, 0, 6916, 6917, 1, 0, 0, 0, 6917, 6919, 1, 0, 0, 0, 6918, 6904, 1, 0, 0, 0, 6918, 6912, 1, 0, 0, 0, 6919, 669, 1, 0, 0, 0, 6920, 6925, 3, 674, 337, 0, 6921, 6922, 5, 868, 0, 0, 6922, 6924, 3, 674, 337, 0, 6923, 6921, 1, 0, 0, 0, 6924, 6927, 1, 0, 0, 0, 6925, 6923, 1, 0, 0, 0, 6925, 6926, 1, 0, 0, 0, 6926, 671, 1, 0, 0, 0, 6927, 6925, 1, 0, 0, 0, 6928, 6929, 1, 0, 0, 0, 6929, 673, 1, 0, 0, 0, 6930, 6935, 3, 722, 361, 0, 6931, 6933, 3, 728, 364, 0, 6932, 6934, 3, 728, 364, 0, 6933, 6932, 1, 0, 0, 0, 6933, 6934, 1, 0, 0, 0, 6934, 6936, 1, 0, 0, 0, 6935, 6931, 1, 0, 0, 0, 6935, 6936, 1, 0, 0, 0, 6936, 6947, 1, 0, 0, 0, 6937, 6939, 9, 0, 0, 0, 6938, 6937, 1, 0, 0, 0, 6938, 6939, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6942, 3, 726, 363, 0, 6941, 6943, 3, 726, 363, 0, 6942, 6941, 1, 0, 0, 0, 6942, 6943, 1, 0, 0, 0, 6943, 6947, 1, 0, 0, 0, 6944, 6945, 4, 337, 3, 0, 6945, 6947, 3, 672, 336, 0, 6946, 6930, 1, 0, 0, 0, 6946, 6938, 1, 0, 0, 0, 6946, 6944, 1, 0, 0, 0, 6947, 675, 1, 0, 0, 0, 6948, 6953, 3, 722, 361, 0, 6949, 6951, 3, 726, 363, 0, 6950, 6952, 3, 726, 363, 0, 6951, 6950, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 6954, 1, 0, 0, 0, 6953, 6949, 1, 0, 0, 0, 6953, 6954, 1, 0, 0, 0, 6954, 6963, 1, 0, 0, 0, 6955, 6957, 9, 0, 0, 0, 6956, 6955, 1, 0, 0, 0, 6956, 6957, 1, 0, 0, 0, 6957, 6958, 1, 0, 0, 0, 6958, 6960, 3, 726, 363, 0, 6959, 6961, 3, 726, 363, 0, 6960, 6959, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 6963, 1, 0, 0, 0, 6962, 6948, 1, 0, 0, 0, 6962, 6956, 1, 0, 0, 0, 6963, 677, 1, 0, 0, 0, 6964, 6965, 4, 339, 4, 0, 6965, 6974, 3, 672, 336, 0, 6966, 6971, 3, 722, 361, 0, 6967, 6969, 3, 728, 364, 0, 6968, 6970, 3, 728, 364, 0, 6969, 6968, 1, 0, 0, 0, 6969, 6970, 1, 0, 0, 0, 6970, 6972, 1, 0, 0, 0, 6971, 6967, 1, 0, 0, 0, 6971, 6972, 1, 0, 0, 0, 6972, 6974, 1, 0, 0, 0, 6973, 6964, 1, 0, 0, 0, 6973, 6966, 1, 0, 0, 0, 6974, 679, 1, 0, 0, 0, 6975, 6976, 3, 722, 361, 0, 6976, 681, 1, 0, 0, 0, 6977, 6978, 3, 722, 361, 0, 6978, 683, 1, 0, 0, 0, 6979, 6980, 3, 722, 361, 0, 6980, 685, 1, 0, 0, 0, 6981, 6986, 3, 688, 344, 0, 6982, 6983, 5, 868, 0, 0, 6983, 6985, 3, 688, 344, 0, 6984, 6982, 1, 0, 0, 0, 6985, 6988, 1, 0, 0, 0, 6986, 6984, 1, 0, 0, 0, 6986, 6987, 1, 0, 0, 0, 6987, 687, 1, 0, 0, 0, 6988, 6986, 1, 0, 0, 0, 6989, 6990, 3, 722, 361, 0, 6990, 689, 1, 0, 0, 0, 6991, 6996, 3, 722, 361, 0, 6992, 6993, 5, 866, 0, 0, 6993, 6994, 3, 730, 365, 0, 6994, 6995, 5, 867, 0, 0, 6995, 6997, 1, 0, 0, 0, 6996, 6992, 1, 0, 0, 0, 6996, 6997, 1, 0, 0, 0, 6997, 7000, 1, 0, 0, 0, 6998, 7000, 3, 822, 411, 0, 6999, 6991, 1, 0, 0, 0, 6999, 6998, 1, 0, 0, 0, 7000, 7002, 1, 0, 0, 0, 7001, 7003, 7, 55, 0, 0, 7002, 7001, 1, 0, 0, 0, 7002, 7003, 1, 0, 0, 0, 7003, 691, 1, 0, 0, 0, 7004, 7005, 3, 694, 347, 0, 7005, 7006, 5, 878, 0, 0, 7006, 7007, 3, 730, 365, 0, 7007, 693, 1, 0, 0, 0, 7008, 7009, 3, 696, 348, 0, 7009, 7010, 5, 891, 0, 0, 7010, 695, 1, 0, 0, 0, 7011, 7016, 5, 882, 0, 0, 7012, 7016, 5, 889, 0, 0, 7013, 7016, 5, 704, 0, 0, 7014, 7016, 3, 852, 426, 0, 7015, 7011, 1, 0, 0, 0, 7015, 7012, 1, 0, 0, 0, 7015, 7013, 1, 0, 0, 0, 7015, 7014, 1, 0, 0, 0, 7016, 697, 1, 0, 0, 0, 7017, 7018, 7, 110, 0, 0, 7018, 699, 1, 0, 0, 0, 7019, 7021, 3, 696, 348, 0, 7020, 7022, 3, 698, 349, 0, 7021, 7020, 1, 0, 0, 0, 7021, 7022, 1, 0, 0, 0, 7022, 7025, 1, 0, 0, 0, 7023, 7025, 3, 60, 30, 0, 7024, 7019, 1, 0, 0, 0, 7024, 7023, 1, 0, 0, 0, 7025, 701, 1, 0, 0, 0, 7026, 7027, 7, 111, 0, 0, 7027, 703, 1, 0, 0, 0, 7028, 7033, 5, 228, 0, 0, 7029, 7033, 3, 842, 421, 0, 7030, 7033, 5, 882, 0, 0, 7031, 7033, 5, 879, 0, 0, 7032, 7028, 1, 0, 0, 0, 7032, 7029, 1, 0, 0, 0, 7032, 7030, 1, 0, 0, 0, 7032, 7031, 1, 0, 0, 0, 7033, 705, 1, 0, 0, 0, 7034, 7035, 3, 722, 361, 0, 7035, 707, 1, 0, 0, 0, 7036, 7040, 3, 710, 355, 0, 7037, 7040, 5, 889, 0, 0, 7038, 7040, 5, 882, 0, 0, 7039, 7036, 1, 0, 0, 0, 7039, 7037, 1, 0, 0, 0, 7039, 7038, 1, 0, 0, 0, 7040, 709, 1, 0, 0, 0, 7041, 7042, 7, 112, 0, 0, 7042, 711, 1, 0, 0, 0, 7043, 7044, 3, 730, 365, 0, 7044, 7045, 5, 854, 0, 0, 7045, 7046, 3, 730, 365, 0, 7046, 7047, 5, 854, 0, 0, 7047, 7048, 3, 730, 365, 0, 7048, 7049, 5, 854, 0, 0, 7049, 7050, 3, 730, 365, 0, 7050, 7051, 5, 854, 0, 0, 7051, 7057, 3, 730, 365, 0, 7052, 7053, 5, 878, 0, 0, 7053, 7054, 3, 730, 365, 0, 7054, 7055, 5, 854, 0, 0, 7055, 7056, 3, 730, 365, 0, 7056, 7058, 1, 0, 0, 0, 7057, 7052, 1, 0, 0, 0, 7058, 7059, 1, 0, 0, 0, 7059, 7057, 1, 0, 0, 0, 7059, 7060, 1, 0, 0, 0, 7060, 713, 1, 0, 0, 0, 7061, 7068, 3, 716, 358, 0, 7062, 7063, 5, 868, 0, 0, 7063, 7066, 3, 716, 358, 0, 7064, 7065, 5, 868, 0, 0, 7065, 7067, 3, 730, 365, 0, 7066, 7064, 1, 0, 0, 0, 7066, 7067, 1, 0, 0, 0, 7067, 7069, 1, 0, 0, 0, 7068, 7062, 1, 0, 0, 0, 7068, 7069, 1, 0, 0, 0, 7069, 715, 1, 0, 0, 0, 7070, 7078, 5, 882, 0, 0, 7071, 7078, 5, 887, 0, 0, 7072, 7074, 5, 884, 0, 0, 7073, 7072, 1, 0, 0, 0, 7074, 7075, 1, 0, 0, 0, 7075, 7073, 1, 0, 0, 0, 7075, 7076, 1, 0, 0, 0, 7076, 7078, 1, 0, 0, 0, 7077, 7070, 1, 0, 0, 0, 7077, 7071, 1, 0, 0, 0, 7077, 7073, 1, 0, 0, 0, 7078, 717, 1, 0, 0, 0, 7079, 7081, 3, 722, 361, 0, 7080, 7082, 3, 726, 363, 0, 7081, 7080, 1, 0, 0, 0, 7081, 7082, 1, 0, 0, 0, 7082, 719, 1, 0, 0, 0, 7083, 7088, 3, 722, 361, 0, 7084, 7085, 5, 868, 0, 0, 7085, 7087, 3, 722, 361, 0, 7086, 7084, 1, 0, 0, 0, 7087, 7090, 1, 0, 0, 0, 7088, 7086, 1, 0, 0, 0, 7088, 7089, 1, 0, 0, 0, 7089, 721, 1, 0, 0, 0, 7090, 7088, 1, 0, 0, 0, 7091, 7095, 3, 724, 362, 0, 7092, 7095, 5, 879, 0, 0, 7093, 7095, 5, 882, 0, 0, 7094, 7091, 1, 0, 0, 0, 7094, 7092, 1, 0, 0, 0, 7094, 7093, 1, 0, 0, 0, 7095, 723, 1, 0, 0, 0, 7096, 7106, 5, 889, 0, 0, 7097, 7106, 3, 842, 421, 0, 7098, 7106, 3, 844, 422, 0, 7099, 7106, 3, 710, 355, 0, 7100, 7106, 3, 846, 423, 0, 7101, 7106, 3, 848, 424, 0, 7102, 7106, 3, 850, 425, 0, 7103, 7106, 3, 852, 426, 0, 7104, 7106, 3, 814, 407, 0, 7105, 7096, 1, 0, 0, 0, 7105, 7097, 1, 0, 0, 0, 7105, 7098, 1, 0, 0, 0, 7105, 7099, 1, 0, 0, 0, 7105, 7100, 1, 0, 0, 0, 7105, 7101, 1, 0, 0, 0, 7105, 7102, 1, 0, 0, 0, 7105, 7103, 1, 0, 0, 0, 7105, 7104, 1, 0, 0, 0, 7106, 725, 1, 0, 0, 0, 7107, 7108, 5, 865, 0, 0, 7108, 7112, 5, 889, 0, 0, 7109, 7110, 5, 865, 0, 0, 7110, 7112, 3, 722, 361, 0, 7111, 7107, 1, 0, 0, 0, 7111, 7109, 1, 0, 0, 0, 7112, 727, 1, 0, 0, 0, 7113, 7114, 5, 865, 0, 0, 7114, 7121, 5, 889, 0, 0, 7115, 7116, 5, 865, 0, 0, 7116, 7121, 3, 722, 361, 0, 7117, 7118, 4, 364, 5, 0, 7118, 7119, 5, 865, 0, 0, 7119, 7121, 3, 672, 336, 0, 7120, 7113, 1, 0, 0, 0, 7120, 7115, 1, 0, 0, 0, 7120, 7117, 1, 0, 0, 0, 7121, 729, 1, 0, 0, 0, 7122, 7123, 7, 113, 0, 0, 7123, 731, 1, 0, 0, 0, 7124, 7127, 5, 880, 0, 0, 7125, 7127, 3, 730, 365, 0, 7126, 7124, 1, 0, 0, 0, 7126, 7125, 1, 0, 0, 0, 7127, 733, 1, 0, 0, 0, 7128, 7130, 5, 888, 0, 0, 7129, 7128, 1, 0, 0, 0, 7129, 7130, 1, 0, 0, 0, 7130, 7131, 1, 0, 0, 0, 7131, 7134, 5, 882, 0, 0, 7132, 7134, 5, 881, 0, 0, 7133, 7129, 1, 0, 0, 0, 7133, 7132, 1, 0, 0, 0, 7134, 7136, 1, 0, 0, 0, 7135, 7137, 5, 882, 0, 0, 7136, 7135, 1, 0, 0, 0, 7137, 7138, 1, 0, 0, 0, 7138, 7136, 1, 0, 0, 0, 7138, 7139, 1, 0, 0, 0, 7139, 7152, 1, 0, 0, 0, 7140, 7142, 5, 888, 0, 0, 7141, 7140, 1, 0, 0, 0, 7141, 7142, 1, 0, 0, 0, 7142, 7143, 1, 0, 0, 0, 7143, 7146, 5, 882, 0, 0, 7144, 7146, 5, 881, 0, 0, 7145, 7141, 1, 0, 0, 0, 7145, 7144, 1, 0, 0, 0, 7146, 7149, 1, 0, 0, 0, 7147, 7148, 5, 28, 0, 0, 7148, 7150, 3, 706, 353, 0, 7149, 7147, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7152, 1, 0, 0, 0, 7151, 7133, 1, 0, 0, 0, 7151, 7145, 1, 0, 0, 0, 7152, 735, 1, 0, 0, 0, 7153, 7154, 7, 114, 0, 0, 7154, 737, 1, 0, 0, 0, 7155, 7157, 5, 888, 0, 0, 7156, 7155, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7158, 1, 0, 0, 0, 7158, 7159, 5, 884, 0, 0, 7159, 739, 1, 0, 0, 0, 7160, 7162, 5, 114, 0, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7164, 7, 115, 0, 0, 7164, 741, 1, 0, 0, 0, 7165, 7178, 3, 734, 367, 0, 7166, 7178, 3, 730, 365, 0, 7167, 7168, 5, 854, 0, 0, 7168, 7178, 3, 730, 365, 0, 7169, 7178, 3, 738, 369, 0, 7170, 7178, 3, 736, 368, 0, 7171, 7178, 5, 885, 0, 0, 7172, 7178, 5, 887, 0, 0, 7173, 7175, 5, 114, 0, 0, 7174, 7173, 1, 0, 0, 0, 7174, 7175, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7178, 7, 115, 0, 0, 7177, 7165, 1, 0, 0, 0, 7177, 7166, 1, 0, 0, 0, 7177, 7167, 1, 0, 0, 0, 7177, 7169, 1, 0, 0, 0, 7177, 7170, 1, 0, 0, 0, 7177, 7171, 1, 0, 0, 0, 7177, 7172, 1, 0, 0, 0, 7177, 7174, 1, 0, 0, 0, 7178, 743, 1, 0, 0, 0, 7179, 7181, 7, 116, 0, 0, 7180, 7182, 5, 240, 0, 0, 7181, 7180, 1, 0, 0, 0, 7181, 7182, 1, 0, 0, 0, 7182, 7184, 1, 0, 0, 0, 7183, 7185, 3, 750, 375, 0, 7184, 7183, 1, 0, 0, 0, 7184, 7185, 1, 0, 0, 0, 7185, 7187, 1, 0, 0, 0, 7186, 7188, 5, 228, 0, 0, 7187, 7186, 1, 0, 0, 0, 7187, 7188, 1, 0, 0, 0, 7188, 7192, 1, 0, 0, 0, 7189, 7190, 3, 58, 29, 0, 7190, 7191, 3, 704, 352, 0, 7191, 7193, 1, 0, 0, 0, 7192, 7189, 1, 0, 0, 0, 7192, 7193, 1, 0, 0, 0, 7193, 7197, 1, 0, 0, 0, 7194, 7195, 5, 28, 0, 0, 7195, 7198, 3, 706, 353, 0, 7196, 7198, 5, 228, 0, 0, 7197, 7194, 1, 0, 0, 0, 7197, 7196, 1, 0, 0, 0, 7197, 7198, 1, 0, 0, 0, 7198, 7306, 1, 0, 0, 0, 7199, 7200, 5, 227, 0, 0, 7200, 7201, 7, 117, 0, 0, 7201, 7203, 5, 240, 0, 0, 7202, 7204, 3, 750, 375, 0, 7203, 7202, 1, 0, 0, 0, 7203, 7204, 1, 0, 0, 0, 7204, 7206, 1, 0, 0, 0, 7205, 7207, 5, 228, 0, 0, 7206, 7205, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7306, 1, 0, 0, 0, 7208, 7209, 5, 227, 0, 0, 7209, 7211, 7, 118, 0, 0, 7210, 7212, 3, 750, 375, 0, 7211, 7210, 1, 0, 0, 0, 7211, 7212, 1, 0, 0, 0, 7212, 7214, 1, 0, 0, 0, 7213, 7215, 5, 228, 0, 0, 7214, 7213, 1, 0, 0, 0, 7214, 7215, 1, 0, 0, 0, 7215, 7306, 1, 0, 0, 0, 7216, 7217, 5, 498, 0, 0, 7217, 7219, 5, 225, 0, 0, 7218, 7220, 3, 750, 375, 0, 7219, 7218, 1, 0, 0, 0, 7219, 7220, 1, 0, 0, 0, 7220, 7222, 1, 0, 0, 0, 7221, 7223, 5, 228, 0, 0, 7222, 7221, 1, 0, 0, 0, 7222, 7223, 1, 0, 0, 0, 7223, 7306, 1, 0, 0, 0, 7224, 7226, 7, 119, 0, 0, 7225, 7227, 3, 750, 375, 0, 7226, 7225, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7231, 1, 0, 0, 0, 7228, 7230, 7, 120, 0, 0, 7229, 7228, 1, 0, 0, 0, 7230, 7233, 1, 0, 0, 0, 7231, 7229, 1, 0, 0, 0, 7231, 7232, 1, 0, 0, 0, 7232, 7306, 1, 0, 0, 0, 7233, 7231, 1, 0, 0, 0, 7234, 7236, 5, 210, 0, 0, 7235, 7237, 3, 752, 376, 0, 7236, 7235, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7241, 1, 0, 0, 0, 7238, 7240, 7, 120, 0, 0, 7239, 7238, 1, 0, 0, 0, 7240, 7243, 1, 0, 0, 0, 7241, 7239, 1, 0, 0, 0, 7241, 7242, 1, 0, 0, 0, 7242, 7306, 1, 0, 0, 0, 7243, 7241, 1, 0, 0, 0, 7244, 7246, 5, 211, 0, 0, 7245, 7247, 5, 212, 0, 0, 7246, 7245, 1, 0, 0, 0, 7246, 7247, 1, 0, 0, 0, 7247, 7249, 1, 0, 0, 0, 7248, 7250, 3, 752, 376, 0, 7249, 7248, 1, 0, 0, 0, 7249, 7250, 1, 0, 0, 0, 7250, 7254, 1, 0, 0, 0, 7251, 7253, 7, 120, 0, 0, 7252, 7251, 1, 0, 0, 0, 7253, 7256, 1, 0, 0, 0, 7254, 7252, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7306, 1, 0, 0, 0, 7256, 7254, 1, 0, 0, 0, 7257, 7259, 7, 121, 0, 0, 7258, 7260, 3, 754, 377, 0, 7259, 7258, 1, 0, 0, 0, 7259, 7260, 1, 0, 0, 0, 7260, 7264, 1, 0, 0, 0, 7261, 7263, 7, 120, 0, 0, 7262, 7261, 1, 0, 0, 0, 7263, 7266, 1, 0, 0, 0, 7264, 7262, 1, 0, 0, 0, 7264, 7265, 1, 0, 0, 0, 7265, 7306, 1, 0, 0, 0, 7266, 7264, 1, 0, 0, 0, 7267, 7306, 7, 122, 0, 0, 7268, 7270, 7, 123, 0, 0, 7269, 7271, 3, 750, 375, 0, 7270, 7269, 1, 0, 0, 0, 7270, 7271, 1, 0, 0, 0, 7271, 7306, 1, 0, 0, 0, 7272, 7273, 7, 124, 0, 0, 7273, 7275, 3, 746, 373, 0, 7274, 7276, 5, 228, 0, 0, 7275, 7274, 1, 0, 0, 0, 7275, 7276, 1, 0, 0, 0, 7276, 7280, 1, 0, 0, 0, 7277, 7278, 3, 58, 29, 0, 7278, 7279, 3, 704, 352, 0, 7279, 7281, 1, 0, 0, 0, 7280, 7277, 1, 0, 0, 0, 7280, 7281, 1, 0, 0, 0, 7281, 7306, 1, 0, 0, 0, 7282, 7285, 7, 125, 0, 0, 7283, 7284, 5, 834, 0, 0, 7284, 7286, 3, 730, 365, 0, 7285, 7283, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 7306, 1, 0, 0, 0, 7287, 7289, 5, 233, 0, 0, 7288, 7290, 5, 225, 0, 0, 7289, 7288, 1, 0, 0, 0, 7289, 7290, 1, 0, 0, 0, 7290, 7292, 1, 0, 0, 0, 7291, 7293, 5, 228, 0, 0, 7292, 7291, 1, 0, 0, 0, 7292, 7293, 1, 0, 0, 0, 7293, 7297, 1, 0, 0, 0, 7294, 7295, 3, 58, 29, 0, 7295, 7296, 3, 704, 352, 0, 7296, 7298, 1, 0, 0, 0, 7297, 7294, 1, 0, 0, 0, 7297, 7298, 1, 0, 0, 0, 7298, 7301, 1, 0, 0, 0, 7299, 7300, 5, 28, 0, 0, 7300, 7302, 3, 706, 353, 0, 7301, 7299, 1, 0, 0, 0, 7301, 7302, 1, 0, 0, 0, 7302, 7306, 1, 0, 0, 0, 7303, 7304, 5, 233, 0, 0, 7304, 7306, 5, 229, 0, 0, 7305, 7179, 1, 0, 0, 0, 7305, 7199, 1, 0, 0, 0, 7305, 7208, 1, 0, 0, 0, 7305, 7216, 1, 0, 0, 0, 7305, 7224, 1, 0, 0, 0, 7305, 7234, 1, 0, 0, 0, 7305, 7244, 1, 0, 0, 0, 7305, 7257, 1, 0, 0, 0, 7305, 7267, 1, 0, 0, 0, 7305, 7268, 1, 0, 0, 0, 7305, 7272, 1, 0, 0, 0, 7305, 7282, 1, 0, 0, 0, 7305, 7287, 1, 0, 0, 0, 7305, 7303, 1, 0, 0, 0, 7306, 745, 1, 0, 0, 0, 7307, 7308, 5, 866, 0, 0, 7308, 7313, 5, 882, 0, 0, 7309, 7310, 5, 868, 0, 0, 7310, 7312, 5, 882, 0, 0, 7311, 7309, 1, 0, 0, 0, 7312, 7315, 1, 0, 0, 0, 7313, 7311, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 7316, 1, 0, 0, 0, 7315, 7313, 1, 0, 0, 0, 7316, 7317, 5, 867, 0, 0, 7317, 747, 1, 0, 0, 0, 7318, 7320, 7, 126, 0, 0, 7319, 7321, 3, 750, 375, 0, 7320, 7319, 1, 0, 0, 0, 7320, 7321, 1, 0, 0, 0, 7321, 7341, 1, 0, 0, 0, 7322, 7324, 5, 224, 0, 0, 7323, 7325, 3, 750, 375, 0, 7324, 7323, 1, 0, 0, 0, 7324, 7325, 1, 0, 0, 0, 7325, 7329, 1, 0, 0, 0, 7326, 7327, 3, 58, 29, 0, 7327, 7328, 3, 704, 352, 0, 7328, 7330, 1, 0, 0, 0, 7329, 7326, 1, 0, 0, 0, 7329, 7330, 1, 0, 0, 0, 7330, 7341, 1, 0, 0, 0, 7331, 7341, 7, 127, 0, 0, 7332, 7334, 7, 128, 0, 0, 7333, 7335, 3, 754, 377, 0, 7334, 7333, 1, 0, 0, 0, 7334, 7335, 1, 0, 0, 0, 7335, 7341, 1, 0, 0, 0, 7336, 7338, 7, 129, 0, 0, 7337, 7339, 7, 130, 0, 0, 7338, 7337, 1, 0, 0, 0, 7338, 7339, 1, 0, 0, 0, 7339, 7341, 1, 0, 0, 0, 7340, 7318, 1, 0, 0, 0, 7340, 7322, 1, 0, 0, 0, 7340, 7331, 1, 0, 0, 0, 7340, 7332, 1, 0, 0, 0, 7340, 7336, 1, 0, 0, 0, 7341, 7343, 1, 0, 0, 0, 7342, 7344, 5, 12, 0, 0, 7343, 7342, 1, 0, 0, 0, 7343, 7344, 1, 0, 0, 0, 7344, 749, 1, 0, 0, 0, 7345, 7346, 5, 866, 0, 0, 7346, 7347, 3, 730, 365, 0, 7347, 7348, 5, 867, 0, 0, 7348, 751, 1, 0, 0, 0, 7349, 7350, 5, 866, 0, 0, 7350, 7351, 3, 730, 365, 0, 7351, 7352, 5, 868, 0, 0, 7352, 7353, 3, 730, 365, 0, 7353, 7354, 5, 867, 0, 0, 7354, 753, 1, 0, 0, 0, 7355, 7356, 5, 866, 0, 0, 7356, 7359, 3, 730, 365, 0, 7357, 7358, 5, 868, 0, 0, 7358, 7360, 3, 730, 365, 0, 7359, 7357, 1, 0, 0, 0, 7359, 7360, 1, 0, 0, 0, 7360, 7361, 1, 0, 0, 0, 7361, 7362, 5, 867, 0, 0, 7362, 755, 1, 0, 0, 0, 7363, 7364, 5, 866, 0, 0, 7364, 7369, 3, 690, 345, 0, 7365, 7366, 5, 868, 0, 0, 7366, 7368, 3, 690, 345, 0, 7367, 7365, 1, 0, 0, 0, 7368, 7371, 1, 0, 0, 0, 7369, 7367, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7372, 1, 0, 0, 0, 7371, 7369, 1, 0, 0, 0, 7372, 7373, 5, 867, 0, 0, 7373, 757, 1, 0, 0, 0, 7374, 7379, 3, 822, 411, 0, 7375, 7376, 5, 868, 0, 0, 7376, 7378, 3, 822, 411, 0, 7377, 7375, 1, 0, 0, 0, 7378, 7381, 1, 0, 0, 0, 7379, 7377, 1, 0, 0, 0, 7379, 7380, 1, 0, 0, 0, 7380, 759, 1, 0, 0, 0, 7381, 7379, 1, 0, 0, 0, 7382, 7383, 7, 131, 0, 0, 7383, 7388, 3, 762, 381, 0, 7384, 7385, 5, 868, 0, 0, 7385, 7387, 3, 762, 381, 0, 7386, 7384, 1, 0, 0, 0, 7387, 7390, 1, 0, 0, 0, 7388, 7386, 1, 0, 0, 0, 7388, 7389, 1, 0, 0, 0, 7389, 761, 1, 0, 0, 0, 7390, 7388, 1, 0, 0, 0, 7391, 7392, 5, 866, 0, 0, 7392, 7397, 3, 764, 382, 0, 7393, 7394, 5, 868, 0, 0, 7394, 7396, 3, 764, 382, 0, 7395, 7393, 1, 0, 0, 0, 7396, 7399, 1, 0, 0, 0, 7397, 7395, 1, 0, 0, 0, 7397, 7398, 1, 0, 0, 0, 7398, 7400, 1, 0, 0, 0, 7399, 7397, 1, 0, 0, 0, 7400, 7401, 5, 867, 0, 0, 7401, 763, 1, 0, 0, 0, 7402, 7405, 3, 822, 411, 0, 7403, 7405, 5, 42, 0, 0, 7404, 7402, 1, 0, 0, 0, 7404, 7403, 1, 0, 0, 0, 7405, 765, 1, 0, 0, 0, 7406, 7411, 3, 742, 371, 0, 7407, 7408, 5, 868, 0, 0, 7408, 7410, 3, 742, 371, 0, 7409, 7407, 1, 0, 0, 0, 7410, 7413, 1, 0, 0, 0, 7411, 7409, 1, 0, 0, 0, 7411, 7412, 1, 0, 0, 0, 7412, 767, 1, 0, 0, 0, 7413, 7411, 1, 0, 0, 0, 7414, 7419, 5, 882, 0, 0, 7415, 7416, 5, 868, 0, 0, 7416, 7418, 5, 882, 0, 0, 7417, 7415, 1, 0, 0, 0, 7418, 7421, 1, 0, 0, 0, 7419, 7417, 1, 0, 0, 0, 7419, 7420, 1, 0, 0, 0, 7420, 769, 1, 0, 0, 0, 7421, 7419, 1, 0, 0, 0, 7422, 7427, 5, 892, 0, 0, 7423, 7424, 5, 868, 0, 0, 7424, 7426, 5, 892, 0, 0, 7425, 7423, 1, 0, 0, 0, 7426, 7429, 1, 0, 0, 0, 7427, 7425, 1, 0, 0, 0, 7427, 7428, 1, 0, 0, 0, 7428, 771, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7430, 7457, 5, 116, 0, 0, 7431, 7432, 5, 24, 0, 0, 7432, 7433, 5, 866, 0, 0, 7433, 7434, 3, 822, 411, 0, 7434, 7435, 5, 13, 0, 0, 7435, 7436, 3, 748, 374, 0, 7436, 7437, 5, 867, 0, 0, 7437, 7457, 1, 0, 0, 0, 7438, 7440, 3, 828, 414, 0, 7439, 7438, 1, 0, 0, 0, 7439, 7440, 1, 0, 0, 0, 7440, 7441, 1, 0, 0, 0, 7441, 7457, 3, 742, 371, 0, 7442, 7446, 3, 774, 387, 0, 7443, 7444, 5, 119, 0, 0, 7444, 7445, 5, 185, 0, 0, 7445, 7447, 3, 774, 387, 0, 7446, 7443, 1, 0, 0, 0, 7446, 7447, 1, 0, 0, 0, 7447, 7457, 1, 0, 0, 0, 7448, 7449, 5, 866, 0, 0, 7449, 7450, 3, 822, 411, 0, 7450, 7451, 5, 867, 0, 0, 7451, 7457, 1, 0, 0, 0, 7452, 7453, 5, 866, 0, 0, 7453, 7454, 3, 718, 359, 0, 7454, 7455, 5, 867, 0, 0, 7455, 7457, 1, 0, 0, 0, 7456, 7430, 1, 0, 0, 0, 7456, 7431, 1, 0, 0, 0, 7456, 7439, 1, 0, 0, 0, 7456, 7442, 1, 0, 0, 0, 7456, 7448, 1, 0, 0, 0, 7456, 7452, 1, 0, 0, 0, 7457, 773, 1, 0, 0, 0, 7458, 7464, 7, 132, 0, 0, 7459, 7461, 5, 866, 0, 0, 7460, 7462, 3, 730, 365, 0, 7461, 7460, 1, 0, 0, 0, 7461, 7462, 1, 0, 0, 0, 7462, 7463, 1, 0, 0, 0, 7463, 7465, 5, 867, 0, 0, 7464, 7459, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7473, 1, 0, 0, 0, 7466, 7467, 5, 295, 0, 0, 7467, 7469, 5, 866, 0, 0, 7468, 7470, 3, 730, 365, 0, 7469, 7468, 1, 0, 0, 0, 7469, 7470, 1, 0, 0, 0, 7470, 7471, 1, 0, 0, 0, 7471, 7473, 5, 867, 0, 0, 7472, 7458, 1, 0, 0, 0, 7472, 7466, 1, 0, 0, 0, 7473, 775, 1, 0, 0, 0, 7474, 7475, 5, 78, 0, 0, 7475, 7476, 5, 60, 0, 0, 7476, 777, 1, 0, 0, 0, 7477, 7478, 5, 78, 0, 0, 7478, 7479, 5, 114, 0, 0, 7479, 7480, 5, 60, 0, 0, 7480, 779, 1, 0, 0, 0, 7481, 7482, 5, 124, 0, 0, 7482, 7483, 5, 143, 0, 0, 7483, 781, 1, 0, 0, 0, 7484, 7507, 3, 784, 392, 0, 7485, 7507, 3, 792, 396, 0, 7486, 7507, 3, 794, 397, 0, 7487, 7494, 3, 814, 407, 0, 7488, 7489, 5, 866, 0, 0, 7489, 7495, 5, 867, 0, 0, 7490, 7491, 5, 866, 0, 0, 7491, 7492, 3, 818, 409, 0, 7492, 7493, 5, 867, 0, 0, 7493, 7495, 1, 0, 0, 0, 7494, 7488, 1, 0, 0, 0, 7494, 7490, 1, 0, 0, 0, 7495, 7507, 1, 0, 0, 0, 7496, 7503, 3, 642, 321, 0, 7497, 7498, 5, 866, 0, 0, 7498, 7504, 5, 867, 0, 0, 7499, 7500, 5, 866, 0, 0, 7500, 7501, 3, 818, 409, 0, 7501, 7502, 5, 867, 0, 0, 7502, 7504, 1, 0, 0, 0, 7503, 7497, 1, 0, 0, 0, 7503, 7499, 1, 0, 0, 0, 7504, 7507, 1, 0, 0, 0, 7505, 7507, 3, 816, 408, 0, 7506, 7484, 1, 0, 0, 0, 7506, 7485, 1, 0, 0, 0, 7506, 7486, 1, 0, 0, 0, 7506, 7487, 1, 0, 0, 0, 7506, 7496, 1, 0, 0, 0, 7506, 7505, 1, 0, 0, 0, 7507, 783, 1, 0, 0, 0, 7508, 7511, 7, 133, 0, 0, 7509, 7510, 5, 866, 0, 0, 7510, 7512, 5, 867, 0, 0, 7511, 7509, 1, 0, 0, 0, 7511, 7512, 1, 0, 0, 0, 7512, 7688, 1, 0, 0, 0, 7513, 7688, 3, 60, 30, 0, 7514, 7515, 5, 33, 0, 0, 7515, 7516, 5, 866, 0, 0, 7516, 7517, 3, 822, 411, 0, 7517, 7518, 5, 868, 0, 0, 7518, 7519, 3, 748, 374, 0, 7519, 7520, 5, 867, 0, 0, 7520, 7688, 1, 0, 0, 0, 7521, 7522, 5, 33, 0, 0, 7522, 7523, 5, 866, 0, 0, 7523, 7524, 3, 822, 411, 0, 7524, 7525, 5, 188, 0, 0, 7525, 7526, 3, 704, 352, 0, 7526, 7527, 5, 867, 0, 0, 7527, 7688, 1, 0, 0, 0, 7528, 7529, 5, 24, 0, 0, 7529, 7530, 5, 866, 0, 0, 7530, 7531, 3, 822, 411, 0, 7531, 7532, 5, 13, 0, 0, 7532, 7533, 3, 748, 374, 0, 7533, 7534, 5, 867, 0, 0, 7534, 7688, 1, 0, 0, 0, 7535, 7536, 5, 189, 0, 0, 7536, 7537, 5, 866, 0, 0, 7537, 7538, 3, 674, 337, 0, 7538, 7539, 5, 867, 0, 0, 7539, 7688, 1, 0, 0, 0, 7540, 7542, 5, 23, 0, 0, 7541, 7543, 3, 786, 393, 0, 7542, 7541, 1, 0, 0, 0, 7543, 7544, 1, 0, 0, 0, 7544, 7542, 1, 0, 0, 0, 7544, 7545, 1, 0, 0, 0, 7545, 7548, 1, 0, 0, 0, 7546, 7547, 5, 53, 0, 0, 7547, 7549, 3, 820, 410, 0, 7548, 7546, 1, 0, 0, 0, 7548, 7549, 1, 0, 0, 0, 7549, 7550, 1, 0, 0, 0, 7550, 7551, 5, 378, 0, 0, 7551, 7688, 1, 0, 0, 0, 7552, 7553, 5, 23, 0, 0, 7553, 7555, 3, 822, 411, 0, 7554, 7556, 3, 786, 393, 0, 7555, 7554, 1, 0, 0, 0, 7556, 7557, 1, 0, 0, 0, 7557, 7555, 1, 0, 0, 0, 7557, 7558, 1, 0, 0, 0, 7558, 7561, 1, 0, 0, 0, 7559, 7560, 5, 53, 0, 0, 7560, 7562, 3, 820, 410, 0, 7561, 7559, 1, 0, 0, 0, 7561, 7562, 1, 0, 0, 0, 7562, 7563, 1, 0, 0, 0, 7563, 7564, 5, 378, 0, 0, 7564, 7688, 1, 0, 0, 0, 7565, 7566, 5, 224, 0, 0, 7566, 7567, 5, 866, 0, 0, 7567, 7570, 3, 818, 409, 0, 7568, 7569, 5, 188, 0, 0, 7569, 7571, 3, 704, 352, 0, 7570, 7568, 1, 0, 0, 0, 7570, 7571, 1, 0, 0, 0, 7571, 7572, 1, 0, 0, 0, 7572, 7573, 5, 867, 0, 0, 7573, 7688, 1, 0, 0, 0, 7574, 7575, 5, 296, 0, 0, 7575, 7578, 5, 866, 0, 0, 7576, 7579, 3, 734, 367, 0, 7577, 7579, 3, 822, 411, 0, 7578, 7576, 1, 0, 0, 0, 7578, 7577, 1, 0, 0, 0, 7579, 7580, 1, 0, 0, 0, 7580, 7583, 5, 80, 0, 0, 7581, 7584, 3, 734, 367, 0, 7582, 7584, 3, 822, 411, 0, 7583, 7581, 1, 0, 0, 0, 7583, 7582, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, 7586, 5, 867, 0, 0, 7586, 7688, 1, 0, 0, 0, 7587, 7588, 7, 134, 0, 0, 7588, 7591, 5, 866, 0, 0, 7589, 7592, 3, 734, 367, 0, 7590, 7592, 3, 822, 411, 0, 7591, 7589, 1, 0, 0, 0, 7591, 7590, 1, 0, 0, 0, 7592, 7593, 1, 0, 0, 0, 7593, 7596, 5, 68, 0, 0, 7594, 7597, 3, 730, 365, 0, 7595, 7597, 3, 822, 411, 0, 7596, 7594, 1, 0, 0, 0, 7596, 7595, 1, 0, 0, 0, 7597, 7603, 1, 0, 0, 0, 7598, 7601, 5, 65, 0, 0, 7599, 7602, 3, 730, 365, 0, 7600, 7602, 3, 822, 411, 0, 7601, 7599, 1, 0, 0, 0, 7601, 7600, 1, 0, 0, 0, 7602, 7604, 1, 0, 0, 0, 7603, 7598, 1, 0, 0, 0, 7603, 7604, 1, 0, 0, 0, 7604, 7605, 1, 0, 0, 0, 7605, 7606, 5, 867, 0, 0, 7606, 7688, 1, 0, 0, 0, 7607, 7608, 5, 300, 0, 0, 7608, 7609, 5, 866, 0, 0, 7609, 7612, 7, 135, 0, 0, 7610, 7613, 3, 734, 367, 0, 7611, 7613, 3, 822, 411, 0, 7612, 7610, 1, 0, 0, 0, 7612, 7611, 1, 0, 0, 0, 7612, 7613, 1, 0, 0, 0, 7613, 7614, 1, 0, 0, 0, 7614, 7617, 5, 68, 0, 0, 7615, 7618, 3, 734, 367, 0, 7616, 7618, 3, 822, 411, 0, 7617, 7615, 1, 0, 0, 0, 7617, 7616, 1, 0, 0, 0, 7618, 7619, 1, 0, 0, 0, 7619, 7620, 5, 867, 0, 0, 7620, 7688, 1, 0, 0, 0, 7621, 7622, 5, 300, 0, 0, 7622, 7625, 5, 866, 0, 0, 7623, 7626, 3, 734, 367, 0, 7624, 7626, 3, 822, 411, 0, 7625, 7623, 1, 0, 0, 0, 7625, 7624, 1, 0, 0, 0, 7626, 7627, 1, 0, 0, 0, 7627, 7630, 5, 68, 0, 0, 7628, 7631, 3, 734, 367, 0, 7629, 7631, 3, 822, 411, 0, 7630, 7628, 1, 0, 0, 0, 7630, 7629, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 7633, 5, 867, 0, 0, 7633, 7688, 1, 0, 0, 0, 7634, 7635, 5, 840, 0, 0, 7635, 7638, 5, 866, 0, 0, 7636, 7639, 3, 734, 367, 0, 7637, 7639, 3, 822, 411, 0, 7638, 7636, 1, 0, 0, 0, 7638, 7637, 1, 0, 0, 0, 7639, 7646, 1, 0, 0, 0, 7640, 7641, 5, 13, 0, 0, 7641, 7642, 7, 136, 0, 0, 7642, 7643, 5, 866, 0, 0, 7643, 7644, 3, 730, 365, 0, 7644, 7645, 5, 867, 0, 0, 7645, 7647, 1, 0, 0, 0, 7646, 7640, 1, 0, 0, 0, 7646, 7647, 1, 0, 0, 0, 7647, 7649, 1, 0, 0, 0, 7648, 7650, 3, 788, 394, 0, 7649, 7648, 1, 0, 0, 0, 7649, 7650, 1, 0, 0, 0, 7650, 7651, 1, 0, 0, 0, 7651, 7652, 5, 867, 0, 0, 7652, 7688, 1, 0, 0, 0, 7653, 7654, 5, 293, 0, 0, 7654, 7655, 5, 866, 0, 0, 7655, 7656, 3, 70, 35, 0, 7656, 7659, 5, 68, 0, 0, 7657, 7660, 3, 734, 367, 0, 7658, 7660, 3, 822, 411, 0, 7659, 7657, 1, 0, 0, 0, 7659, 7658, 1, 0, 0, 0, 7660, 7661, 1, 0, 0, 0, 7661, 7662, 5, 867, 0, 0, 7662, 7688, 1, 0, 0, 0, 7663, 7664, 5, 827, 0, 0, 7664, 7665, 5, 866, 0, 0, 7665, 7666, 7, 137, 0, 0, 7666, 7667, 5, 868, 0, 0, 7667, 7668, 3, 734, 367, 0, 7668, 7669, 5, 867, 0, 0, 7669, 7688, 1, 0, 0, 0, 7670, 7671, 5, 254, 0, 0, 7671, 7672, 5, 866, 0, 0, 7672, 7673, 3, 822, 411, 0, 7673, 7674, 5, 868, 0, 0, 7674, 7677, 3, 822, 411, 0, 7675, 7676, 5, 579, 0, 0, 7676, 7678, 3, 748, 374, 0, 7677, 7675, 1, 0, 0, 0, 7677, 7678, 1, 0, 0, 0, 7678, 7680, 1, 0, 0, 0, 7679, 7681, 3, 294, 147, 0, 7680, 7679, 1, 0, 0, 0, 7680, 7681, 1, 0, 0, 0, 7681, 7683, 1, 0, 0, 0, 7682, 7684, 3, 296, 148, 0, 7683, 7682, 1, 0, 0, 0, 7683, 7684, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7686, 5, 867, 0, 0, 7686, 7688, 1, 0, 0, 0, 7687, 7508, 1, 0, 0, 0, 7687, 7513, 1, 0, 0, 0, 7687, 7514, 1, 0, 0, 0, 7687, 7521, 1, 0, 0, 0, 7687, 7528, 1, 0, 0, 0, 7687, 7535, 1, 0, 0, 0, 7687, 7540, 1, 0, 0, 0, 7687, 7552, 1, 0, 0, 0, 7687, 7565, 1, 0, 0, 0, 7687, 7574, 1, 0, 0, 0, 7687, 7587, 1, 0, 0, 0, 7687, 7607, 1, 0, 0, 0, 7687, 7621, 1, 0, 0, 0, 7687, 7634, 1, 0, 0, 0, 7687, 7653, 1, 0, 0, 0, 7687, 7663, 1, 0, 0, 0, 7687, 7670, 1, 0, 0, 0, 7688, 785, 1, 0, 0, 0, 7689, 7690, 5, 191, 0, 0, 7690, 7691, 3, 820, 410, 0, 7691, 7692, 5, 175, 0, 0, 7692, 7693, 3, 820, 410, 0, 7693, 787, 1, 0, 0, 0, 7694, 7695, 5, 448, 0, 0, 7695, 7700, 3, 790, 395, 0, 7696, 7697, 5, 868, 0, 0, 7697, 7699, 3, 790, 395, 0, 7698, 7696, 1, 0, 0, 0, 7699, 7702, 1, 0, 0, 0, 7700, 7698, 1, 0, 0, 0, 7700, 7701, 1, 0, 0, 0, 7701, 7709, 1, 0, 0, 0, 7702, 7700, 1, 0, 0, 0, 7703, 7704, 5, 448, 0, 0, 7704, 7705, 3, 730, 365, 0, 7705, 7706, 5, 854, 0, 0, 7706, 7707, 3, 730, 365, 0, 7707, 7709, 1, 0, 0, 0, 7708, 7694, 1, 0, 0, 0, 7708, 7703, 1, 0, 0, 0, 7709, 789, 1, 0, 0, 0, 7710, 7712, 3, 730, 365, 0, 7711, 7713, 7, 138, 0, 0, 7712, 7711, 1, 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 791, 1, 0, 0, 0, 7714, 7715, 7, 139, 0, 0, 7715, 7717, 5, 866, 0, 0, 7716, 7718, 7, 45, 0, 0, 7717, 7716, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 7719, 1, 0, 0, 0, 7719, 7720, 3, 820, 410, 0, 7720, 7722, 5, 867, 0, 0, 7721, 7723, 3, 796, 398, 0, 7722, 7721, 1, 0, 0, 0, 7722, 7723, 1, 0, 0, 0, 7723, 7774, 1, 0, 0, 0, 7724, 7725, 5, 262, 0, 0, 7725, 7733, 5, 866, 0, 0, 7726, 7734, 5, 850, 0, 0, 7727, 7729, 5, 7, 0, 0, 7728, 7727, 1, 0, 0, 0, 7728, 7729, 1, 0, 0, 0, 7729, 7730, 1, 0, 0, 0, 7730, 7734, 3, 820, 410, 0, 7731, 7732, 5, 49, 0, 0, 7732, 7734, 3, 818, 409, 0, 7733, 7726, 1, 0, 0, 0, 7733, 7728, 1, 0, 0, 0, 7733, 7731, 1, 0, 0, 0, 7734, 7735, 1, 0, 0, 0, 7735, 7737, 5, 867, 0, 0, 7736, 7738, 3, 796, 398, 0, 7737, 7736, 1, 0, 0, 0, 7737, 7738, 1, 0, 0, 0, 7738, 7774, 1, 0, 0, 0, 7739, 7740, 7, 140, 0, 0, 7740, 7742, 5, 866, 0, 0, 7741, 7743, 5, 7, 0, 0, 7742, 7741, 1, 0, 0, 0, 7742, 7743, 1, 0, 0, 0, 7743, 7744, 1, 0, 0, 0, 7744, 7745, 3, 820, 410, 0, 7745, 7747, 5, 867, 0, 0, 7746, 7748, 3, 796, 398, 0, 7747, 7746, 1, 0, 0, 0, 7747, 7748, 1, 0, 0, 0, 7748, 7774, 1, 0, 0, 0, 7749, 7750, 5, 266, 0, 0, 7750, 7752, 5, 866, 0, 0, 7751, 7753, 5, 49, 0, 0, 7752, 7751, 1, 0, 0, 0, 7752, 7753, 1, 0, 0, 0, 7753, 7754, 1, 0, 0, 0, 7754, 7765, 3, 818, 409, 0, 7755, 7756, 5, 125, 0, 0, 7756, 7757, 5, 20, 0, 0, 7757, 7762, 3, 260, 130, 0, 7758, 7759, 5, 868, 0, 0, 7759, 7761, 3, 260, 130, 0, 7760, 7758, 1, 0, 0, 0, 7761, 7764, 1, 0, 0, 0, 7762, 7760, 1, 0, 0, 0, 7762, 7763, 1, 0, 0, 0, 7763, 7766, 1, 0, 0, 0, 7764, 7762, 1, 0, 0, 0, 7765, 7755, 1, 0, 0, 0, 7765, 7766, 1, 0, 0, 0, 7766, 7769, 1, 0, 0, 0, 7767, 7768, 5, 156, 0, 0, 7768, 7770, 5, 882, 0, 0, 7769, 7767, 1, 0, 0, 0, 7769, 7770, 1, 0, 0, 0, 7770, 7771, 1, 0, 0, 0, 7771, 7772, 5, 867, 0, 0, 7772, 7774, 1, 0, 0, 0, 7773, 7714, 1, 0, 0, 0, 7773, 7724, 1, 0, 0, 0, 7773, 7739, 1, 0, 0, 0, 7773, 7749, 1, 0, 0, 0, 7774, 793, 1, 0, 0, 0, 7775, 7776, 7, 141, 0, 0, 7776, 7777, 5, 866, 0, 0, 7777, 7780, 3, 822, 411, 0, 7778, 7779, 5, 868, 0, 0, 7779, 7781, 3, 730, 365, 0, 7780, 7778, 1, 0, 0, 0, 7780, 7781, 1, 0, 0, 0, 7781, 7784, 1, 0, 0, 0, 7782, 7783, 5, 868, 0, 0, 7783, 7785, 3, 730, 365, 0, 7784, 7782, 1, 0, 0, 0, 7784, 7785, 1, 0, 0, 0, 7785, 7786, 1, 0, 0, 0, 7786, 7787, 5, 867, 0, 0, 7787, 7788, 3, 796, 398, 0, 7788, 7814, 1, 0, 0, 0, 7789, 7790, 7, 142, 0, 0, 7790, 7791, 5, 866, 0, 0, 7791, 7792, 3, 822, 411, 0, 7792, 7793, 5, 867, 0, 0, 7793, 7794, 3, 796, 398, 0, 7794, 7814, 1, 0, 0, 0, 7795, 7796, 7, 143, 0, 0, 7796, 7797, 5, 866, 0, 0, 7797, 7798, 5, 867, 0, 0, 7798, 7814, 3, 796, 398, 0, 7799, 7800, 5, 273, 0, 0, 7800, 7801, 5, 866, 0, 0, 7801, 7802, 3, 822, 411, 0, 7802, 7803, 5, 868, 0, 0, 7803, 7804, 3, 730, 365, 0, 7804, 7805, 5, 867, 0, 0, 7805, 7806, 3, 796, 398, 0, 7806, 7814, 1, 0, 0, 0, 7807, 7808, 5, 272, 0, 0, 7808, 7809, 5, 866, 0, 0, 7809, 7810, 3, 730, 365, 0, 7810, 7811, 5, 867, 0, 0, 7811, 7812, 3, 796, 398, 0, 7812, 7814, 1, 0, 0, 0, 7813, 7775, 1, 0, 0, 0, 7813, 7789, 1, 0, 0, 0, 7813, 7795, 1, 0, 0, 0, 7813, 7799, 1, 0, 0, 0, 7813, 7807, 1, 0, 0, 0, 7814, 795, 1, 0, 0, 0, 7815, 7821, 5, 129, 0, 0, 7816, 7817, 5, 866, 0, 0, 7817, 7818, 3, 798, 399, 0, 7818, 7819, 5, 867, 0, 0, 7819, 7822, 1, 0, 0, 0, 7820, 7822, 3, 800, 400, 0, 7821, 7816, 1, 0, 0, 0, 7821, 7820, 1, 0, 0, 0, 7822, 797, 1, 0, 0, 0, 7823, 7825, 3, 800, 400, 0, 7824, 7823, 1, 0, 0, 0, 7824, 7825, 1, 0, 0, 0, 7825, 7827, 1, 0, 0, 0, 7826, 7828, 3, 812, 406, 0, 7827, 7826, 1, 0, 0, 0, 7827, 7828, 1, 0, 0, 0, 7828, 7830, 1, 0, 0, 0, 7829, 7831, 3, 258, 129, 0, 7830, 7829, 1, 0, 0, 0, 7830, 7831, 1, 0, 0, 0, 7831, 7833, 1, 0, 0, 0, 7832, 7834, 3, 802, 401, 0, 7833, 7832, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 799, 1, 0, 0, 0, 7835, 7836, 3, 722, 361, 0, 7836, 801, 1, 0, 0, 0, 7837, 7838, 3, 804, 402, 0, 7838, 7839, 3, 806, 403, 0, 7839, 803, 1, 0, 0, 0, 7840, 7841, 7, 144, 0, 0, 7841, 805, 1, 0, 0, 0, 7842, 7845, 3, 810, 405, 0, 7843, 7845, 3, 808, 404, 0, 7844, 7842, 1, 0, 0, 0, 7844, 7843, 1, 0, 0, 0, 7845, 807, 1, 0, 0, 0, 7846, 7847, 5, 17, 0, 0, 7847, 7848, 3, 810, 405, 0, 7848, 7849, 5, 11, 0, 0, 7849, 7850, 3, 810, 405, 0, 7850, 809, 1, 0, 0, 0, 7851, 7852, 5, 36, 0, 0, 7852, 7859, 5, 586, 0, 0, 7853, 7854, 5, 669, 0, 0, 7854, 7859, 7, 145, 0, 0, 7855, 7856, 3, 822, 411, 0, 7856, 7857, 7, 145, 0, 0, 7857, 7859, 1, 0, 0, 0, 7858, 7851, 1, 0, 0, 0, 7858, 7853, 1, 0, 0, 0, 7858, 7855, 1, 0, 0, 0, 7859, 811, 1, 0, 0, 0, 7860, 7861, 5, 130, 0, 0, 7861, 7862, 5, 20, 0, 0, 7862, 7867, 3, 822, 411, 0, 7863, 7864, 5, 868, 0, 0, 7864, 7866, 3, 822, 411, 0, 7865, 7863, 1, 0, 0, 0, 7866, 7869, 1, 0, 0, 0, 7867, 7865, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 813, 1, 0, 0, 0, 7869, 7867, 1, 0, 0, 0, 7870, 7895, 3, 854, 427, 0, 7871, 7895, 5, 757, 0, 0, 7872, 7895, 5, 289, 0, 0, 7873, 7895, 5, 285, 0, 0, 7874, 7895, 5, 286, 0, 0, 7875, 7895, 5, 287, 0, 0, 7876, 7895, 5, 290, 0, 0, 7877, 7895, 5, 291, 0, 0, 7878, 7895, 5, 292, 0, 0, 7879, 7895, 5, 78, 0, 0, 7880, 7895, 5, 86, 0, 0, 7881, 7895, 5, 288, 0, 0, 7882, 7895, 5, 294, 0, 0, 7883, 7895, 5, 488, 0, 0, 7884, 7895, 5, 295, 0, 0, 7885, 7895, 5, 142, 0, 0, 7886, 7895, 5, 143, 0, 0, 7887, 7895, 5, 297, 0, 0, 7888, 7895, 5, 298, 0, 0, 7889, 7895, 5, 299, 0, 0, 7890, 7895, 5, 300, 0, 0, 7891, 7895, 5, 301, 0, 0, 7892, 7895, 5, 302, 0, 0, 7893, 7895, 5, 303, 0, 0, 7894, 7870, 1, 0, 0, 0, 7894, 7871, 1, 0, 0, 0, 7894, 7872, 1, 0, 0, 0, 7894, 7873, 1, 0, 0, 0, 7894, 7874, 1, 0, 0, 0, 7894, 7875, 1, 0, 0, 0, 7894, 7876, 1, 0, 0, 0, 7894, 7877, 1, 0, 0, 0, 7894, 7878, 1, 0, 0, 0, 7894, 7879, 1, 0, 0, 0, 7894, 7880, 1, 0, 0, 0, 7894, 7881, 1, 0, 0, 0, 7894, 7882, 1, 0, 0, 0, 7894, 7883, 1, 0, 0, 0, 7894, 7884, 1, 0, 0, 0, 7894, 7885, 1, 0, 0, 0, 7894, 7886, 1, 0, 0, 0, 7894, 7887, 1, 0, 0, 0, 7894, 7888, 1, 0, 0, 0, 7894, 7889, 1, 0, 0, 0, 7894, 7890, 1, 0, 0, 0, 7894, 7891, 1, 0, 0, 0, 7894, 7892, 1, 0, 0, 0, 7894, 7893, 1, 0, 0, 0, 7895, 815, 1, 0, 0, 0, 7896, 7897, 7, 146, 0, 0, 7897, 7898, 5, 866, 0, 0, 7898, 7899, 3, 820, 410, 0, 7899, 7900, 5, 867, 0, 0, 7900, 817, 1, 0, 0, 0, 7901, 7906, 3, 820, 410, 0, 7902, 7903, 5, 868, 0, 0, 7903, 7905, 3, 820, 410, 0, 7904, 7902, 1, 0, 0, 0, 7905, 7908, 1, 0, 0, 0, 7906, 7904, 1, 0, 0, 0, 7906, 7907, 1, 0, 0, 0, 7907, 819, 1, 0, 0, 0, 7908, 7906, 1, 0, 0, 0, 7909, 7913, 3, 742, 371, 0, 7910, 7913, 3, 782, 391, 0, 7911, 7913, 3, 822, 411, 0, 7912, 7909, 1, 0, 0, 0, 7912, 7910, 1, 0, 0, 0, 7912, 7911, 1, 0, 0, 0, 7913, 821, 1, 0, 0, 0, 7914, 7915, 6, 411, -1, 0, 7915, 7916, 7, 147, 0, 0, 7916, 7926, 3, 822, 411, 4, 7917, 7918, 3, 824, 412, 0, 7918, 7920, 5, 89, 0, 0, 7919, 7921, 5, 114, 0, 0, 7920, 7919, 1, 0, 0, 0, 7920, 7921, 1, 0, 0, 0, 7921, 7922, 1, 0, 0, 0, 7922, 7923, 7, 148, 0, 0, 7923, 7926, 1, 0, 0, 0, 7924, 7926, 3, 824, 412, 0, 7925, 7914, 1, 0, 0, 0, 7925, 7917, 1, 0, 0, 0, 7925, 7924, 1, 0, 0, 0, 7926, 7933, 1, 0, 0, 0, 7927, 7928, 10, 3, 0, 0, 7928, 7929, 3, 834, 417, 0, 7929, 7930, 3, 822, 411, 4, 7930, 7932, 1, 0, 0, 0, 7931, 7927, 1, 0, 0, 0, 7932, 7935, 1, 0, 0, 0, 7933, 7931, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 823, 1, 0, 0, 0, 7935, 7933, 1, 0, 0, 0, 7936, 7937, 6, 412, -1, 0, 7937, 7938, 3, 826, 413, 0, 7938, 8002, 1, 0, 0, 0, 7939, 7941, 10, 6, 0, 0, 7940, 7942, 5, 114, 0, 0, 7941, 7940, 1, 0, 0, 0, 7941, 7942, 1, 0, 0, 0, 7942, 7943, 1, 0, 0, 0, 7943, 7944, 5, 17, 0, 0, 7944, 7945, 3, 824, 412, 0, 7945, 7946, 5, 11, 0, 0, 7946, 7947, 3, 824, 412, 7, 7947, 8001, 1, 0, 0, 0, 7948, 7949, 10, 5, 0, 0, 7949, 7950, 5, 604, 0, 0, 7950, 7951, 5, 99, 0, 0, 7951, 8001, 3, 824, 412, 6, 7952, 7954, 10, 3, 0, 0, 7953, 7955, 5, 114, 0, 0, 7954, 7953, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7956, 1, 0, 0, 0, 7956, 7957, 7, 149, 0, 0, 7957, 8001, 3, 824, 412, 4, 7958, 7960, 10, 9, 0, 0, 7959, 7961, 5, 114, 0, 0, 7960, 7959, 1, 0, 0, 0, 7960, 7961, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7963, 5, 80, 0, 0, 7963, 7966, 5, 866, 0, 0, 7964, 7967, 3, 210, 105, 0, 7965, 7967, 3, 758, 379, 0, 7966, 7964, 1, 0, 0, 0, 7966, 7965, 1, 0, 0, 0, 7967, 7968, 1, 0, 0, 0, 7968, 7969, 5, 867, 0, 0, 7969, 8001, 1, 0, 0, 0, 7970, 7971, 10, 8, 0, 0, 7971, 7972, 5, 89, 0, 0, 7972, 8001, 3, 740, 370, 0, 7973, 7974, 10, 7, 0, 0, 7974, 7981, 3, 830, 415, 0, 7975, 7976, 7, 150, 0, 0, 7976, 7977, 5, 866, 0, 0, 7977, 7978, 3, 210, 105, 0, 7978, 7979, 5, 867, 0, 0, 7979, 7982, 1, 0, 0, 0, 7980, 7982, 3, 824, 412, 0, 7981, 7975, 1, 0, 0, 0, 7981, 7980, 1, 0, 0, 0, 7982, 8001, 1, 0, 0, 0, 7983, 7985, 10, 4, 0, 0, 7984, 7986, 5, 114, 0, 0, 7985, 7984, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7987, 1, 0, 0, 0, 7987, 7988, 5, 99, 0, 0, 7988, 7991, 3, 824, 412, 0, 7989, 7990, 5, 384, 0, 0, 7990, 7992, 5, 882, 0, 0, 7991, 7989, 1, 0, 0, 0, 7991, 7992, 1, 0, 0, 0, 7992, 8001, 1, 0, 0, 0, 7993, 7994, 10, 2, 0, 0, 7994, 7995, 5, 485, 0, 0, 7995, 7996, 5, 510, 0, 0, 7996, 7997, 5, 866, 0, 0, 7997, 7998, 3, 824, 412, 0, 7998, 7999, 5, 867, 0, 0, 7999, 8001, 1, 0, 0, 0, 8000, 7939, 1, 0, 0, 0, 8000, 7948, 1, 0, 0, 0, 8000, 7952, 1, 0, 0, 0, 8000, 7958, 1, 0, 0, 0, 8000, 7970, 1, 0, 0, 0, 8000, 7973, 1, 0, 0, 0, 8000, 7983, 1, 0, 0, 0, 8000, 7993, 1, 0, 0, 0, 8001, 8004, 1, 0, 0, 0, 8002, 8000, 1, 0, 0, 0, 8002, 8003, 1, 0, 0, 0, 8003, 825, 1, 0, 0, 0, 8004, 8002, 1, 0, 0, 0, 8005, 8006, 6, 413, -1, 0, 8006, 8054, 3, 742, 371, 0, 8007, 8054, 3, 782, 391, 0, 8008, 8054, 3, 702, 351, 0, 8009, 8010, 3, 828, 414, 0, 8010, 8011, 3, 826, 413, 12, 8011, 8054, 1, 0, 0, 0, 8012, 8013, 5, 228, 0, 0, 8013, 8054, 3, 826, 413, 11, 8014, 8015, 5, 892, 0, 0, 8015, 8016, 5, 841, 0, 0, 8016, 8054, 3, 826, 413, 10, 8017, 8018, 5, 866, 0, 0, 8018, 8023, 3, 822, 411, 0, 8019, 8020, 5, 868, 0, 0, 8020, 8022, 3, 822, 411, 0, 8021, 8019, 1, 0, 0, 0, 8022, 8025, 1, 0, 0, 0, 8023, 8021, 1, 0, 0, 0, 8023, 8024, 1, 0, 0, 0, 8024, 8026, 1, 0, 0, 0, 8025, 8023, 1, 0, 0, 0, 8026, 8027, 5, 867, 0, 0, 8027, 8054, 1, 0, 0, 0, 8028, 8029, 5, 586, 0, 0, 8029, 8030, 5, 866, 0, 0, 8030, 8033, 3, 822, 411, 0, 8031, 8032, 5, 868, 0, 0, 8032, 8034, 3, 822, 411, 0, 8033, 8031, 1, 0, 0, 0, 8034, 8035, 1, 0, 0, 0, 8035, 8033, 1, 0, 0, 0, 8035, 8036, 1, 0, 0, 0, 8036, 8037, 1, 0, 0, 0, 8037, 8038, 5, 867, 0, 0, 8038, 8054, 1, 0, 0, 0, 8039, 8040, 5, 60, 0, 0, 8040, 8041, 5, 866, 0, 0, 8041, 8042, 3, 210, 105, 0, 8042, 8043, 5, 867, 0, 0, 8043, 8054, 1, 0, 0, 0, 8044, 8045, 5, 866, 0, 0, 8045, 8046, 3, 210, 105, 0, 8046, 8047, 5, 867, 0, 0, 8047, 8054, 1, 0, 0, 0, 8048, 8049, 5, 87, 0, 0, 8049, 8050, 3, 822, 411, 0, 8050, 8051, 3, 70, 35, 0, 8051, 8054, 1, 0, 0, 0, 8052, 8054, 3, 676, 338, 0, 8053, 8005, 1, 0, 0, 0, 8053, 8007, 1, 0, 0, 0, 8053, 8008, 1, 0, 0, 0, 8053, 8009, 1, 0, 0, 0, 8053, 8012, 1, 0, 0, 0, 8053, 8014, 1, 0, 0, 0, 8053, 8017, 1, 0, 0, 0, 8053, 8028, 1, 0, 0, 0, 8053, 8039, 1, 0, 0, 0, 8053, 8044, 1, 0, 0, 0, 8053, 8048, 1, 0, 0, 0, 8053, 8052, 1, 0, 0, 0, 8054, 8072, 1, 0, 0, 0, 8055, 8056, 10, 4, 0, 0, 8056, 8057, 3, 840, 420, 0, 8057, 8058, 3, 826, 413, 5, 8058, 8071, 1, 0, 0, 0, 8059, 8060, 10, 3, 0, 0, 8060, 8061, 3, 836, 418, 0, 8061, 8062, 3, 826, 413, 4, 8062, 8071, 1, 0, 0, 0, 8063, 8064, 10, 2, 0, 0, 8064, 8065, 3, 838, 419, 0, 8065, 8066, 3, 826, 413, 3, 8066, 8071, 1, 0, 0, 0, 8067, 8068, 10, 14, 0, 0, 8068, 8069, 5, 28, 0, 0, 8069, 8071, 3, 706, 353, 0, 8070, 8055, 1, 0, 0, 0, 8070, 8059, 1, 0, 0, 0, 8070, 8063, 1, 0, 0, 0, 8070, 8067, 1, 0, 0, 0, 8071, 8074, 1, 0, 0, 0, 8072, 8070, 1, 0, 0, 0, 8072, 8073, 1, 0, 0, 0, 8073, 827, 1, 0, 0, 0, 8074, 8072, 1, 0, 0, 0, 8075, 8076, 7, 151, 0, 0, 8076, 829, 1, 0, 0, 0, 8077, 8078, 5, 859, 0, 0, 8078, 8086, 5, 858, 0, 0, 8079, 8080, 5, 860, 0, 0, 8080, 8086, 5, 857, 0, 0, 8081, 8082, 5, 859, 0, 0, 8082, 8083, 5, 857, 0, 0, 8083, 8086, 5, 858, 0, 0, 8084, 8086, 3, 832, 416, 0, 8085, 8077, 1, 0, 0, 0, 8085, 8079, 1, 0, 0, 0, 8085, 8081, 1, 0, 0, 0, 8085, 8084, 1, 0, 0, 0, 8086, 831, 1, 0, 0, 0, 8087, 8088, 5, 859, 0, 0, 8088, 8095, 5, 857, 0, 0, 8089, 8090, 5, 858, 0, 0, 8090, 8095, 5, 857, 0, 0, 8091, 8095, 5, 857, 0, 0, 8092, 8095, 5, 858, 0, 0, 8093, 8095, 5, 859, 0, 0, 8094, 8087, 1, 0, 0, 0, 8094, 8089, 1, 0, 0, 0, 8094, 8091, 1, 0, 0, 0, 8094, 8092, 1, 0, 0, 0, 8094, 8093, 1, 0, 0, 0, 8095, 833, 1, 0, 0, 0, 8096, 8104, 5, 11, 0, 0, 8097, 8098, 5, 863, 0, 0, 8098, 8104, 5, 863, 0, 0, 8099, 8104, 5, 196, 0, 0, 8100, 8104, 5, 124, 0, 0, 8101, 8102, 5, 862, 0, 0, 8102, 8104, 5, 862, 0, 0, 8103, 8096, 1, 0, 0, 0, 8103, 8097, 1, 0, 0, 0, 8103, 8099, 1, 0, 0, 0, 8103, 8100, 1, 0, 0, 0, 8103, 8101, 1, 0, 0, 0, 8104, 835, 1, 0, 0, 0, 8105, 8106, 5, 859, 0, 0, 8106, 8113, 5, 859, 0, 0, 8107, 8108, 5, 858, 0, 0, 8108, 8113, 5, 858, 0, 0, 8109, 8113, 5, 863, 0, 0, 8110, 8113, 5, 864, 0, 0, 8111, 8113, 5, 862, 0, 0, 8112, 8105, 1, 0, 0, 0, 8112, 8107, 1, 0, 0, 0, 8112, 8109, 1, 0, 0, 0, 8112, 8110, 1, 0, 0, 0, 8112, 8111, 1, 0, 0, 0, 8113, 837, 1, 0, 0, 0, 8114, 8115, 7, 152, 0, 0, 8115, 839, 1, 0, 0, 0, 8116, 8117, 5, 854, 0, 0, 8117, 8122, 5, 858, 0, 0, 8118, 8119, 5, 854, 0, 0, 8119, 8120, 5, 858, 0, 0, 8120, 8122, 5, 858, 0, 0, 8121, 8116, 1, 0, 0, 0, 8121, 8118, 1, 0, 0, 0, 8122, 841, 1, 0, 0, 0, 8123, 8124, 7, 153, 0, 0, 8124, 843, 1, 0, 0, 0, 8125, 8126, 7, 154, 0, 0, 8126, 845, 1, 0, 0, 0, 8127, 8128, 7, 155, 0, 0, 8128, 847, 1, 0, 0, 0, 8129, 8130, 7, 156, 0, 0, 8130, 849, 1, 0, 0, 0, 8131, 8132, 7, 157, 0, 0, 8132, 851, 1, 0, 0, 0, 8133, 8134, 7, 158, 0, 0, 8134, 853, 1, 0, 0, 0, 8135, 8136, 7, 159, 0, 0, 8136, 855, 1, 0, 0, 0, 1173, 859, 866, 869, 878, 922, 941, 952, 968, 973, 985, 1020, 1030, 1035, 1041, 1046, 1050, 1059, 1062, 1065, 1069, 1076, 1079, 1084, 1092, 1097, 1102, 1105, 1107, 1119, 1122, 1126, 1129, 1133, 1136, 1140, 1143, 1146, 1150, 1153, 1157, 1163, 1167, 1172, 1178, 1185, 1192, 1195, 1199, 1204, 1210, 1219, 1224, 1228, 1232, 1243, 1261, 1268, 1272, 1276, 1280, 1285, 1288, 1291, 1294, 1297, 1303, 1307, 1317, 1321, 1325, 1331, 1336, 1339, 1342, 1344, 1348, 1355, 1359, 1362, 1367, 1371, 1374, 1378, 1381, 1385, 1398, 1401, 1405, 1408, 1412, 1415, 1419, 1422, 1426, 1429, 1432, 1436, 1439, 1443, 1449, 1452, 1456, 1468, 1474, 1485, 1490, 1498, 1502, 1507, 1510, 1515, 1525, 1530, 1535, 1541, 1546, 1550, 1552, 1555, 1559, 1563, 1566, 1570, 1574, 1578, 1584, 1587, 1594, 1599, 1605, 1612, 1618, 1626, 1629, 1636, 1639, 1641, 1647, 1653, 1670, 1677, 1684, 1696, 1701, 1704, 1707, 1720, 1733, 1738, 1754, 1762, 1772, 1775, 1781, 1786, 1789, 1795, 1799, 1804, 1810, 1814, 1818, 1821, 1824, 1830, 1834, 1839, 1850, 1853, 1860, 1863, 1867, 1873, 1885, 1888, 1893, 1906, 1913, 1919, 1924, 1928, 1931, 1939, 1947, 1949, 1959, 1963, 1966, 1970, 1975, 1980, 1985, 1989, 1993, 1997, 2001, 2005, 2009, 2014, 2019, 2024, 2030, 2035, 2040, 2045, 2050, 2055, 2061, 2066, 2071, 2076, 2081, 2086, 2091, 2096, 2103, 2108, 2113, 2118, 2122, 2127, 2135, 2140, 2146, 2158, 2165, 2167, 2175, 2180, 2183, 2191, 2197, 2201, 2214, 2226, 2228, 2231, 2239, 2245, 2251, 2264, 2271, 2280, 2285, 2296, 2305, 2310, 2322, 2329, 2338, 2343, 2355, 2362, 2371, 2376, 2383, 2392, 2397, 2399, 2404, 2412, 2421, 2425, 2428, 2432, 2437, 2443, 2449, 2454, 2459, 2464, 2469, 2472, 2477, 2482, 2492, 2496, 2503, 2508, 2511, 2516, 2519, 2523, 2527, 2535, 2554, 2557, 2560, 2564, 2574, 2587, 2600, 2603, 2609, 2612, 2616, 2625, 2628, 2631, 2636, 2640, 2643, 2647, 2651, 2654, 2658, 2661, 2665, 2668, 2674, 2677, 2682, 2690, 2696, 2700, 2704, 2709, 2714, 2721, 2725, 2736, 2744, 2747, 2753, 2759, 2762, 2768, 2774, 2776, 2781, 2787, 2793, 2795, 2799, 2802, 2805, 2811, 2817, 2819, 2824, 2831, 2840, 2843, 2847, 2852, 2862, 2871, 2879, 2882, 2890, 2893, 2900, 2905, 2913, 2929, 2934, 2941, 2960, 2966, 2976, 2988, 2995, 3002, 3017, 3030, 3036, 3042, 3048, 3054, 3060, 3066, 3071, 3078, 3085, 3092, 3097, 3100, 3102, 3111, 3118, 3125, 3132, 3141, 3147, 3151, 3155, 3159, 3165, 3168, 3173, 3180, 3187, 3191, 3196, 3206, 3214, 3220, 3229, 3238, 3247, 3250, 3254, 3263, 3267, 3270, 3273, 3279, 3282, 3285, 3289, 3292, 3295, 3298, 3309, 3312, 3317, 3323, 3328, 3333, 3336, 3340, 3345, 3348, 3353, 3363, 3368, 3374, 3376, 3382, 3384, 3390, 3398, 3403, 3411, 3414, 3419, 3422, 3427, 3435, 3441, 3445, 3447, 3453, 3461, 3466, 3474, 3477, 3482, 3485, 3489, 3492, 3495, 3499, 3502, 3510, 3516, 3520, 3526, 3531, 3535, 3537, 3543, 3547, 3550, 3553, 3556, 3562, 3567, 3570, 3573, 3576, 3579, 3581, 3584, 3588, 3591, 3594, 3602, 3608, 3611, 3613, 3622, 3627, 3634, 3637, 3640, 3644, 3648, 3654, 3658, 3665, 3669, 3672, 3675, 3680, 3687, 3697, 3706, 3715, 3725, 3728, 3732, 3738, 3742, 3745, 3748, 3753, 3756, 3763, 3767, 3770, 3774, 3778, 3781, 3784, 3789, 3795, 3799, 3809, 3815, 3819, 3825, 3829, 3835, 3838, 3850, 3854, 3858, 3866, 3870, 3884, 3889, 3892, 3896, 3899, 3907, 3912, 3915, 3918, 3922, 3925, 3934, 3939, 3948, 3953, 3960, 3967, 3975, 3981, 3989, 3992, 3995, 4002, 4005, 4008, 4012, 4016, 4022, 4029, 4039, 4043, 4052, 4055, 4059, 4065, 4073, 4078, 4082, 4088, 4094, 4097, 4099, 4103, 4108, 4115, 4125, 4131, 4136, 4140, 4143, 4146, 4149, 4152, 4155, 4158, 4162, 4166, 4174, 4178, 4181, 4183, 4196, 4199, 4206, 4216, 4219, 4224, 4226, 4230, 4238, 4244, 4253, 4266, 4270, 4276, 4282, 4285, 4289, 4292, 4294, 4306, 4310, 4318, 4330, 4336, 4338, 4344, 4346, 4348, 4354, 4362, 4370, 4374, 4379, 4381, 4390, 4395, 4415, 4420, 4426, 4433, 4438, 4447, 4450, 4454, 4458, 4462, 4465, 4468, 4471, 4475, 4479, 4482, 4485, 4488, 4495, 4499, 4514, 4527, 4535, 4545, 4549, 4552, 4558, 4561, 4564, 4573, 4582, 4592, 4596, 4606, 4610, 4621, 4625, 4634, 4643, 4646, 4650, 4655, 4659, 4668, 4671, 4674, 4681, 4687, 4693, 4719, 4722, 4725, 4744, 4746, 4769, 4772, 4775, 4794, 4796, 4810, 4823, 4860, 4865, 4900, 4914, 4921, 4925, 4931, 4939, 4941, 4952, 4962, 4969, 4975, 4983, 4988, 4996, 5004, 5012, 5020, 5026, 5031, 5036, 5041, 5047, 5049, 5060, 5065, 5072, 5074, 5088, 5094, 5099, 5104, 5110, 5117, 5125, 5133, 5138, 5144, 5147, 5155, 5162, 5171, 5174, 5191, 5199, 5207, 5211, 5218, 5224, 5232, 5237, 5244, 5252, 5259, 5264, 5267, 5269, 5275, 5277, 5281, 5283, 5288, 5295, 5300, 5304, 5309, 5313, 5319, 5325, 5330, 5333, 5335, 5341, 5343, 5347, 5349, 5354, 5359, 5366, 5375, 5380, 5389, 5393, 5399, 5404, 5407, 5409, 5415, 5417, 5420, 5427, 5429, 5434, 5441, 5450, 5456, 5458, 5465, 5468, 5480, 5486, 5494, 5497, 5501, 5504, 5508, 5510, 5521, 5524, 5528, 5531, 5534, 5541, 5553, 5556, 5563, 5569, 5579, 5584, 5591, 5596, 5602, 5606, 5610, 5618, 5622, 5626, 5632, 5634, 5646, 5651, 5657, 5663, 5667, 5672, 5674, 5698, 5702, 5705, 5714, 5718, 5727, 5731, 5735, 5741, 5743, 5752, 5762, 5789, 5793, 5798, 5805, 5808, 5814, 5824, 5834, 5844, 5850, 5859, 5865, 5872, 5874, 5882, 5888, 5892, 5909, 5919, 5923, 5927, 5937, 5942, 6014, 6032, 6040, 6046, 6058, 6062, 6073, 6077, 6086, 6094, 6101, 6105, 6112, 6117, 6120, 6123, 6134, 6143, 6152, 6155, 6169, 6187, 6200, 6203, 6207, 6210, 6212, 6219, 6226, 6230, 6237, 6244, 6247, 6263, 6266, 6276, 6280, 6286, 6289, 6292, 6297, 6301, 6304, 6311, 6314, 6320, 6356, 6359, 6371, 6374, 6390, 6392, 6396, 6403, 6407, 6414, 6417, 6426, 6429, 6434, 6440, 6442, 6448, 6452, 6458, 6461, 6464, 6477, 6480, 6486, 6489, 6497, 6505, 6511, 6514, 6518, 6532, 6544, 6552, 6556, 6563, 6570, 6575, 6588, 6597, 6605, 6610, 6613, 6618, 6621, 6633, 6638, 6651, 6653, 6658, 6662, 6665, 6667, 6674, 6681, 6684, 6687, 6693, 6697, 6703, 6711, 6720, 6733, 6738, 6746, 6749, 6754, 6759, 6767, 6770, 6778, 6782, 6789, 6795, 6798, 6802, 6815, 6821, 6833, 6836, 6845, 6850, 6871, 6887, 6897, 6902, 6907, 6909, 6912, 6916, 6918, 6925, 6933, 6935, 6938, 6942, 6946, 6951, 6953, 6956, 6960, 6962, 6969, 6971, 6973, 6986, 6996, 6999, 7002, 7015, 7021, 7024, 7032, 7039, 7059, 7066, 7068, 7075, 7077, 7081, 7088, 7094, 7105, 7111, 7120, 7126, 7129, 7133, 7138, 7141, 7145, 7149, 7151, 7156, 7161, 7174, 7177, 7181, 7184, 7187, 7192, 7197, 7203, 7206, 7211, 7214, 7219, 7222, 7226, 7231, 7236, 7241, 7246, 7249, 7254, 7259, 7264, 7270, 7275, 7280, 7285, 7289, 7292, 7297, 7301, 7305, 7313, 7320, 7324, 7329, 7334, 7338, 7340, 7343, 7359, 7369, 7379, 7388, 7397, 7404, 7411, 7419, 7427, 7439, 7446, 7456, 7461, 7464, 7469, 7472, 7494, 7503, 7506, 7511, 7544, 7548, 7557, 7561, 7570, 7578, 7583, 7591, 7596, 7601, 7603, 7612, 7617, 7625, 7630, 7638, 7646, 7649, 7659, 7677, 7680, 7683, 7687, 7700, 7708, 7712, 7717, 7722, 7728, 7733, 7737, 7742, 7747, 7752, 7762, 7765, 7769, 7773, 7780, 7784, 7813, 7821, 7824, 7827, 7830, 7833, 7844, 7858, 7867, 7894, 7906, 7912, 7920, 7925, 7933, 7941, 7954, 7960, 7966, 7981, 7985, 7991, 8000, 8002, 8023, 8035, 8053, 8070, 8072, 8085, 8094, 8103, 8112, 8121] \ No newline at end of file diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index b85c826a..69901668 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -1248,94 +1248,98 @@ export class MySqlParser extends SQLParserBase { public static readonly RULE_userOrRoleName = 333; public static readonly RULE_columnNameCreate = 334; public static readonly RULE_columnNames = 335; - public static readonly RULE_columnName = 336; - public static readonly RULE_tableSpaceNameCreate = 337; - public static readonly RULE_tableSpaceName = 338; - public static readonly RULE_partitionNameCreate = 339; - public static readonly RULE_partitionNames = 340; - public static readonly RULE_partitionName = 341; - public static readonly RULE_indexColumnName = 342; - public static readonly RULE_userHostPort = 343; - public static readonly RULE_userAtHost = 344; - public static readonly RULE_simpleUserName = 345; - public static readonly RULE_hostName = 346; - public static readonly RULE_userName = 347; - public static readonly RULE_mysqlVariable = 348; - public static readonly RULE_charsetName = 349; - public static readonly RULE_collationName = 350; - public static readonly RULE_engineName = 351; - public static readonly RULE_engineNameBase = 352; - public static readonly RULE_uuidSet = 353; - public static readonly RULE_xid = 354; - public static readonly RULE_xuidStringId = 355; - public static readonly RULE_fullId = 356; - public static readonly RULE_uidList = 357; - public static readonly RULE_uid = 358; - public static readonly RULE_simpleId = 359; - public static readonly RULE_dottedId = 360; - public static readonly RULE_decimalLiteral = 361; - public static readonly RULE_fileSizeLiteral = 362; - public static readonly RULE_stringLiteral = 363; - public static readonly RULE_booleanLiteral = 364; - public static readonly RULE_hexadecimalLiteral = 365; - public static readonly RULE_nullNotNull = 366; - public static readonly RULE_constant = 367; - public static readonly RULE_dataType = 368; - public static readonly RULE_collectionOptions = 369; - public static readonly RULE_convertedDataType = 370; - public static readonly RULE_lengthOneDimension = 371; - public static readonly RULE_lengthTwoDimension = 372; - public static readonly RULE_lengthTwoOptionalDimension = 373; - public static readonly RULE_indexColumnNames = 374; - public static readonly RULE_expressions = 375; - public static readonly RULE_valuesOrValueList = 376; - public static readonly RULE_expressionsWithDefaults = 377; - public static readonly RULE_expressionOrDefault = 378; - public static readonly RULE_constants = 379; - public static readonly RULE_simpleStrings = 380; - public static readonly RULE_userVariables = 381; - public static readonly RULE_defaultValue = 382; - public static readonly RULE_currentTimestamp = 383; - public static readonly RULE_ifExists = 384; - public static readonly RULE_ifNotExists = 385; - public static readonly RULE_orReplace = 386; - public static readonly RULE_functionCall = 387; - public static readonly RULE_specificFunction = 388; - public static readonly RULE_caseFuncAlternative = 389; - public static readonly RULE_levelsInWeightString = 390; - public static readonly RULE_levelInWeightListElement = 391; - public static readonly RULE_aggregateWindowedFunction = 392; - public static readonly RULE_nonAggregateWindowedFunction = 393; - public static readonly RULE_overClause = 394; - public static readonly RULE_windowSpec = 395; - public static readonly RULE_windowName = 396; - public static readonly RULE_frameClause = 397; - public static readonly RULE_frameUnits = 398; - public static readonly RULE_frameExtent = 399; - public static readonly RULE_frameBetween = 400; - public static readonly RULE_frameRange = 401; - public static readonly RULE_partitionClause = 402; - public static readonly RULE_scalarFunctionName = 403; - public static readonly RULE_passwordFunctionClause = 404; - public static readonly RULE_functionArgs = 405; - public static readonly RULE_functionArg = 406; - public static readonly RULE_expression = 407; - public static readonly RULE_predicate = 408; - public static readonly RULE_expressionAtom = 409; - public static readonly RULE_unaryOperator = 410; - public static readonly RULE_comparisonOperator = 411; - public static readonly RULE_comparisonBase = 412; - public static readonly RULE_logicalOperator = 413; - public static readonly RULE_bitOperator = 414; - public static readonly RULE_mathOperator = 415; - public static readonly RULE_jsonOperator = 416; - public static readonly RULE_charsetNameBase = 417; - public static readonly RULE_transactionLevelBase = 418; - public static readonly RULE_privilegesBase = 419; - public static readonly RULE_intervalTypeBase = 420; - public static readonly RULE_dataTypeBase = 421; - public static readonly RULE_keywordsCanBeId = 422; - public static readonly RULE_functionNameBase = 423; + public static readonly RULE_emptyColumn = 336; + public static readonly RULE_columnName = 337; + public static readonly RULE_columnNamePath = 338; + public static readonly RULE_columnNamePathAllowEmpty = 339; + public static readonly RULE_tableSpaceNameCreate = 340; + public static readonly RULE_tableSpaceName = 341; + public static readonly RULE_partitionNameCreate = 342; + public static readonly RULE_partitionNames = 343; + public static readonly RULE_partitionName = 344; + public static readonly RULE_indexColumnName = 345; + public static readonly RULE_userHostPort = 346; + public static readonly RULE_userAtHost = 347; + public static readonly RULE_simpleUserName = 348; + public static readonly RULE_hostName = 349; + public static readonly RULE_userName = 350; + public static readonly RULE_mysqlVariable = 351; + public static readonly RULE_charsetName = 352; + public static readonly RULE_collationName = 353; + public static readonly RULE_engineName = 354; + public static readonly RULE_engineNameBase = 355; + public static readonly RULE_uuidSet = 356; + public static readonly RULE_xid = 357; + public static readonly RULE_xuidStringId = 358; + public static readonly RULE_fullId = 359; + public static readonly RULE_uidList = 360; + public static readonly RULE_uid = 361; + public static readonly RULE_simpleId = 362; + public static readonly RULE_dottedId = 363; + public static readonly RULE_dottedIdAllowEmpty = 364; + public static readonly RULE_decimalLiteral = 365; + public static readonly RULE_fileSizeLiteral = 366; + public static readonly RULE_stringLiteral = 367; + public static readonly RULE_booleanLiteral = 368; + public static readonly RULE_hexadecimalLiteral = 369; + public static readonly RULE_nullNotNull = 370; + public static readonly RULE_constant = 371; + public static readonly RULE_dataType = 372; + public static readonly RULE_collectionOptions = 373; + public static readonly RULE_convertedDataType = 374; + public static readonly RULE_lengthOneDimension = 375; + public static readonly RULE_lengthTwoDimension = 376; + public static readonly RULE_lengthTwoOptionalDimension = 377; + public static readonly RULE_indexColumnNames = 378; + public static readonly RULE_expressions = 379; + public static readonly RULE_valuesOrValueList = 380; + public static readonly RULE_expressionsWithDefaults = 381; + public static readonly RULE_expressionOrDefault = 382; + public static readonly RULE_constants = 383; + public static readonly RULE_simpleStrings = 384; + public static readonly RULE_userVariables = 385; + public static readonly RULE_defaultValue = 386; + public static readonly RULE_currentTimestamp = 387; + public static readonly RULE_ifExists = 388; + public static readonly RULE_ifNotExists = 389; + public static readonly RULE_orReplace = 390; + public static readonly RULE_functionCall = 391; + public static readonly RULE_specificFunction = 392; + public static readonly RULE_caseFuncAlternative = 393; + public static readonly RULE_levelsInWeightString = 394; + public static readonly RULE_levelInWeightListElement = 395; + public static readonly RULE_aggregateWindowedFunction = 396; + public static readonly RULE_nonAggregateWindowedFunction = 397; + public static readonly RULE_overClause = 398; + public static readonly RULE_windowSpec = 399; + public static readonly RULE_windowName = 400; + public static readonly RULE_frameClause = 401; + public static readonly RULE_frameUnits = 402; + public static readonly RULE_frameExtent = 403; + public static readonly RULE_frameBetween = 404; + public static readonly RULE_frameRange = 405; + public static readonly RULE_partitionClause = 406; + public static readonly RULE_scalarFunctionName = 407; + public static readonly RULE_passwordFunctionClause = 408; + public static readonly RULE_functionArgs = 409; + public static readonly RULE_functionArg = 410; + public static readonly RULE_expression = 411; + public static readonly RULE_predicate = 412; + public static readonly RULE_expressionAtom = 413; + public static readonly RULE_unaryOperator = 414; + public static readonly RULE_comparisonOperator = 415; + public static readonly RULE_comparisonBase = 416; + public static readonly RULE_logicalOperator = 417; + public static readonly RULE_bitOperator = 418; + public static readonly RULE_mathOperator = 419; + public static readonly RULE_jsonOperator = 420; + public static readonly RULE_charsetNameBase = 421; + public static readonly RULE_transactionLevelBase = 422; + public static readonly RULE_privilegesBase = 423; + public static readonly RULE_intervalTypeBase = 424; + public static readonly RULE_dataTypeBase = 425; + public static readonly RULE_keywordsCanBeId = 426; + public static readonly RULE_functionNameBase = 427; public static readonly literalNames = [ null, null, null, null, null, "'ACTIVE'", "'ADD'", "'ALL'", "'ALTER'", @@ -1803,27 +1807,29 @@ export class MySqlParser extends SQLParserBase { "viewNameCreate", "viewName", "indexNameCreate", "indexNames", "indexName", "groupNameCreate", "groupName", "tableNameCreate", "tableNames", "tableName", "userOrRoleNames", "userOrRoleName", "columnNameCreate", - "columnNames", "columnName", "tableSpaceNameCreate", "tableSpaceName", - "partitionNameCreate", "partitionNames", "partitionName", "indexColumnName", - "userHostPort", "userAtHost", "simpleUserName", "hostName", "userName", - "mysqlVariable", "charsetName", "collationName", "engineName", "engineNameBase", + "columnNames", "emptyColumn", "columnName", "columnNamePath", "columnNamePathAllowEmpty", + "tableSpaceNameCreate", "tableSpaceName", "partitionNameCreate", + "partitionNames", "partitionName", "indexColumnName", "userHostPort", + "userAtHost", "simpleUserName", "hostName", "userName", "mysqlVariable", + "charsetName", "collationName", "engineName", "engineNameBase", "uuidSet", "xid", "xuidStringId", "fullId", "uidList", "uid", "simpleId", - "dottedId", "decimalLiteral", "fileSizeLiteral", "stringLiteral", - "booleanLiteral", "hexadecimalLiteral", "nullNotNull", "constant", - "dataType", "collectionOptions", "convertedDataType", "lengthOneDimension", - "lengthTwoDimension", "lengthTwoOptionalDimension", "indexColumnNames", - "expressions", "valuesOrValueList", "expressionsWithDefaults", "expressionOrDefault", - "constants", "simpleStrings", "userVariables", "defaultValue", "currentTimestamp", - "ifExists", "ifNotExists", "orReplace", "functionCall", "specificFunction", - "caseFuncAlternative", "levelsInWeightString", "levelInWeightListElement", - "aggregateWindowedFunction", "nonAggregateWindowedFunction", "overClause", - "windowSpec", "windowName", "frameClause", "frameUnits", "frameExtent", - "frameBetween", "frameRange", "partitionClause", "scalarFunctionName", - "passwordFunctionClause", "functionArgs", "functionArg", "expression", - "predicate", "expressionAtom", "unaryOperator", "comparisonOperator", - "comparisonBase", "logicalOperator", "bitOperator", "mathOperator", - "jsonOperator", "charsetNameBase", "transactionLevelBase", "privilegesBase", - "intervalTypeBase", "dataTypeBase", "keywordsCanBeId", "functionNameBase", + "dottedId", "dottedIdAllowEmpty", "decimalLiteral", "fileSizeLiteral", + "stringLiteral", "booleanLiteral", "hexadecimalLiteral", "nullNotNull", + "constant", "dataType", "collectionOptions", "convertedDataType", + "lengthOneDimension", "lengthTwoDimension", "lengthTwoOptionalDimension", + "indexColumnNames", "expressions", "valuesOrValueList", "expressionsWithDefaults", + "expressionOrDefault", "constants", "simpleStrings", "userVariables", + "defaultValue", "currentTimestamp", "ifExists", "ifNotExists", "orReplace", + "functionCall", "specificFunction", "caseFuncAlternative", "levelsInWeightString", + "levelInWeightListElement", "aggregateWindowedFunction", "nonAggregateWindowedFunction", + "overClause", "windowSpec", "windowName", "frameClause", "frameUnits", + "frameExtent", "frameBetween", "frameRange", "partitionClause", + "scalarFunctionName", "passwordFunctionClause", "functionArgs", + "functionArg", "expression", "predicate", "expressionAtom", "unaryOperator", + "comparisonOperator", "comparisonBase", "logicalOperator", "bitOperator", + "mathOperator", "jsonOperator", "charsetNameBase", "transactionLevelBase", + "privilegesBase", "intervalTypeBase", "dataTypeBase", "keywordsCanBeId", + "functionNameBase", ]; public get grammarFileName(): string { return "MySqlParser.g4"; } @@ -1847,21 +1853,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 851; + this.state = 859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 169870592) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 268573697) !== 0) || ((((_la - 72)) & ~0x1F) === 0 && ((1 << (_la - 72)) & 2151694339) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 536936449) !== 0) || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 442923) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 2184193) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 16781443) !== 0) || _la === 362 || _la === 371 || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 270573569) !== 0) || _la === 540 || _la === 562 || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 16643) !== 0) || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 268435521) !== 0) || _la === 673 || _la === 694 || _la === 713 || _la === 717 || _la === 749 || _la === 866 || _la === 869) { { { - this.state = 848; + this.state = 856; this.singleStatement(); } } - this.state = 853; + this.state = 861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 854; + this.state = 862; this.match(MySqlParser.EOF); } } @@ -1883,7 +1889,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, MySqlParser.RULE_singleStatement); try { - this.state = 861; + this.state = 869; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -1949,14 +1955,14 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 856; + this.state = 864; this.sqlStatement(); - this.state = 858; + this.state = 866; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 857; + this.state = 865; this.match(MySqlParser.SEMI); } break; @@ -1966,7 +1972,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.SEMI: this.enterOuterAlt(localContext, 2); { - this.state = 860; + this.state = 868; this.emptyStatement_(); } break; @@ -1992,55 +1998,55 @@ export class MySqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, MySqlParser.RULE_sqlStatement); try { - this.state = 870; + this.state = 878; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 863; + this.state = 871; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 864; + this.state = 872; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 865; + this.state = 873; this.transactionStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 866; + this.state = 874; this.replicationStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 867; + this.state = 875; this.preparedStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 868; + this.state = 876; this.administrationStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 869; + this.state = 877; this.utilityStatement(); } break; @@ -2066,7 +2072,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 872; + this.state = 880; this.match(MySqlParser.SEMI); } } @@ -2088,286 +2094,286 @@ export class MySqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, MySqlParser.RULE_ddlStatement); try { - this.state = 914; + this.state = 922; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 874; + this.state = 882; this.createDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 875; + this.state = 883; this.createEvent(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 876; + this.state = 884; this.createIndex(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 877; + this.state = 885; this.createLogFileGroup(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 878; + this.state = 886; this.createProcedure(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 879; + this.state = 887; this.createFunction(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 880; + this.state = 888; this.createFunctionLoadable(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 881; + this.state = 889; this.createServer(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 882; + this.state = 890; this.createTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 883; + this.state = 891; this.createTableSpaceInnoDB(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 884; + this.state = 892; this.createTableSpaceNDB(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 885; + this.state = 893; this.createTrigger(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 886; + this.state = 894; this.createView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 887; + this.state = 895; this.createRole(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 888; + this.state = 896; this.alterDatabase(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 889; + this.state = 897; this.alterEvent(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 890; + this.state = 898; this.alterFunction(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 891; + this.state = 899; this.alterInstance(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 892; + this.state = 900; this.alterLogFileGroup(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 893; + this.state = 901; this.alterProcedure(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 894; + this.state = 902; this.alterServer(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 895; + this.state = 903; this.alterTable(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 896; + this.state = 904; this.alterTableSpace(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 897; + this.state = 905; this.alterView(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 898; + this.state = 906; this.dropDatabase(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 899; + this.state = 907; this.dropEvent(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 900; + this.state = 908; this.dropIndex(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 901; + this.state = 909; this.dropLogFileGroup(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 902; + this.state = 910; this.dropProcedure(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 903; + this.state = 911; this.dropFunction(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 904; + this.state = 912; this.dropServer(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 905; + this.state = 913; this.dropSpatial(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 906; + this.state = 914; this.dropTable(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 907; + this.state = 915; this.dropTableSpace(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 908; + this.state = 916; this.dropTrigger(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 909; + this.state = 917; this.dropView(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 910; + this.state = 918; this.dropRole(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 911; + this.state = 919; this.setRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 912; + this.state = 920; this.renameTable(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 913; + this.state = 921; this.truncateTable(); } break; @@ -2391,125 +2397,125 @@ export class MySqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, MySqlParser.RULE_dmlStatement); try { - this.state = 933; + this.state = 941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 916; + this.state = 924; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 917; + this.state = 925; this.setOperations(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 918; + this.state = 926; this.insertStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 919; + this.state = 927; this.updateStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 920; + this.state = 928; this.deleteStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 921; + this.state = 929; this.replaceStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 922; + this.state = 930; this.callStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 923; + this.state = 931; this.interSectStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 924; + this.state = 932; this.loadDataStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 925; + this.state = 933; this.loadXmlStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 926; + this.state = 934; this.parenthesizedQuery(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 927; + this.state = 935; this.doStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 928; + this.state = 936; this.handlerStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 929; + this.state = 937; this.importTableStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 930; + this.state = 938; this.valuesStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 931; + this.state = 939; this.withStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 932; + this.state = 940; this.tableStatement(); } break; @@ -2533,69 +2539,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionStatementContext(this.context, this.state); this.enterRule(localContext, 12, MySqlParser.RULE_transactionStatement); try { - this.state = 944; + this.state = 952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 935; + this.state = 943; this.startTransaction(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 936; + this.state = 944; this.beginWork(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 937; + this.state = 945; this.commitWork(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 938; + this.state = 946; this.rollbackWork(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 939; + this.state = 947; this.savePointStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 940; + this.state = 948; this.rollbackStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 941; + this.state = 949; this.releaseStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 942; + this.state = 950; this.lockTables(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 943; + this.state = 951; this.unlockTables(); } break; @@ -2619,104 +2625,104 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReplicationStatementContext(this.context, this.state); this.enterRule(localContext, 14, MySqlParser.RULE_replicationStatement); try { - this.state = 960; + this.state = 968; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 946; + this.state = 954; this.changeMaster(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 947; + this.state = 955; this.changeReplicationFilter(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 948; + this.state = 956; this.changeReplicationSource(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 949; + this.state = 957; this.purgeBinaryLogs(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 950; + this.state = 958; this.startSlaveOrReplica(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 951; + this.state = 959; this.stopSlaveOrReplica(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 952; + this.state = 960; this.startGroupReplication(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 953; + this.state = 961; this.stopGroupReplication(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 954; + this.state = 962; this.xaStartTransaction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 955; + this.state = 963; this.xaEndTransaction(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 956; + this.state = 964; this.xaPrepareStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 957; + this.state = 965; this.xaCommitWork(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 958; + this.state = 966; this.xaRollbackWork(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 959; + this.state = 967; this.xaRecoverWork(); } break; @@ -2740,20 +2746,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new PreparedStatementContext(this.context, this.state); this.enterRule(localContext, 16, MySqlParser.RULE_preparedStatement); try { - this.state = 965; + this.state = 973; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PREPARE: this.enterOuterAlt(localContext, 1); { - this.state = 962; + this.state = 970; this.prepareStatement(); } break; case MySqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 2); { - this.state = 963; + this.state = 971; this.executeStatement(); } break; @@ -2761,7 +2767,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DEALLOCATE: this.enterOuterAlt(localContext, 3); { - this.state = 964; + this.state = 972; this.deallocatePrepare(); } break; @@ -2787,76 +2793,76 @@ export class MySqlParser extends SQLParserBase { let localContext = new CompoundStatementContext(this.context, this.state); this.enterRule(localContext, 18, MySqlParser.RULE_compoundStatement); try { - this.state = 977; + this.state = 985; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 967; + this.state = 975; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 968; + this.state = 976; this.caseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 969; + this.state = 977; this.ifStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 970; + this.state = 978; this.leaveStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 971; + this.state = 979; this.loopStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 972; + this.state = 980; this.repeatStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 973; + this.state = 981; this.whileStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 974; + this.state = 982; this.iterateStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 975; + this.state = 983; this.returnStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 976; + this.state = 984; this.cursorStatement(); } break; @@ -2880,237 +2886,237 @@ export class MySqlParser extends SQLParserBase { let localContext = new AdministrationStatementContext(this.context, this.state); this.enterRule(localContext, 20, MySqlParser.RULE_administrationStatement); try { - this.state = 1012; + this.state = 1020; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 987; this.alterUser(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 980; + this.state = 988; this.createUser(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 981; + this.state = 989; this.dropUser(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 982; + this.state = 990; this.grantStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 983; + this.state = 991; this.grantProxy(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 984; + this.state = 992; this.renameUser(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 985; + this.state = 993; this.revokeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 986; + this.state = 994; this.alterResourceGroup(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 987; + this.state = 995; this.createResourceGroup(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 988; + this.state = 996; this.dropResourceGroup(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 989; + this.state = 997; this.setResourceGroup(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 990; + this.state = 998; this.analyzeTable(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 991; + this.state = 999; this.checkTable(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 992; + this.state = 1000; this.checksumTable(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 993; + this.state = 1001; this.optimizeTable(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 994; + this.state = 1002; this.repairTable(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 995; + this.state = 1003; this.installComponent(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 996; + this.state = 1004; this.uninstallComponent(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 997; + this.state = 1005; this.installPlugin(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 998; + this.state = 1006; this.uninstallPlugin(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 999; + this.state = 1007; this.cloneStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1000; + this.state = 1008; this.setStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1001; + this.state = 1009; this.showStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1002; + this.state = 1010; this.binLogStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1003; + this.state = 1011; this.cacheIndexStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1004; + this.state = 1012; this.flushStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1005; + this.state = 1013; this.killStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1006; + this.state = 1014; this.loadIndexIntoCache(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1007; + this.state = 1015; this.resetStatement(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1008; + this.state = 1016; this.resetPersist(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1009; + this.state = 1017; this.resetAllChannel(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1010; + this.state = 1018; this.reStartStatement(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1011; + this.state = 1019; this.shutdownStatement(); } break; @@ -3134,62 +3140,62 @@ export class MySqlParser extends SQLParserBase { let localContext = new UtilityStatementContext(this.context, this.state); this.enterRule(localContext, 22, MySqlParser.RULE_utilityStatement); try { - this.state = 1022; + this.state = 1030; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1014; + this.state = 1022; this.fullDescribeStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1015; + this.state = 1023; this.simpleDescribeStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1016; + this.state = 1024; this.analyzeDescribeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1017; + this.state = 1025; this.helpStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1018; + this.state = 1026; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1019; + this.state = 1027; this.signalStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1020; + this.state = 1028; this.resignalStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1021; + this.state = 1029; this.diagnosticsStatement(); } break; @@ -3216,9 +3222,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1024; + this.state = 1032; this.match(MySqlParser.KW_CREATE); - this.state = 1025; + this.state = 1033; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -3228,29 +3234,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1027; + this.state = 1035; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 1026; + this.state = 1034; this.ifNotExists(); } break; } - this.state = 1029; + this.state = 1037; this.databaseNameCreate(); - this.state = 1033; + this.state = 1041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823) { { { - this.state = 1030; + this.state = 1038; this.createDatabaseOption(); } } - this.state = 1035; + this.state = 1043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3277,87 +3283,87 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1036; + this.state = 1044; this.match(MySqlParser.KW_CREATE); - this.state = 1038; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1037; + this.state = 1045; this.ownerStatement(); } } - this.state = 1040; + this.state = 1048; this.match(MySqlParser.KW_EVENT); - this.state = 1042; + this.state = 1050; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 1041; + this.state = 1049; this.ifNotExists(); } break; } - this.state = 1044; + this.state = 1052; localContext._event_name = this.fullId(); - this.state = 1045; + this.state = 1053; this.match(MySqlParser.KW_ON); - this.state = 1046; + this.state = 1054; this.match(MySqlParser.KW_SCHEDULE); - this.state = 1047; + this.state = 1055; this.scheduleExpression(); - this.state = 1054; + this.state = 1062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 1048; + this.state = 1056; this.match(MySqlParser.KW_ON); - this.state = 1049; + this.state = 1057; this.match(MySqlParser.KW_COMPLETION); - this.state = 1051; + this.state = 1059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1050; + this.state = 1058; this.match(MySqlParser.KW_NOT); } } - this.state = 1053; + this.state = 1061; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 1057; + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 1056; + this.state = 1064; this.enableType(); } } - this.state = 1061; + this.state = 1069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1059; + this.state = 1067; this.match(MySqlParser.KW_COMMENT); - this.state = 1060; + this.state = 1068; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1063; + this.state = 1071; this.match(MySqlParser.KW_DO); - this.state = 1064; + this.state = 1072; this.routineBody(); } } @@ -3383,14 +3389,14 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1066; + this.state = 1074; this.match(MySqlParser.KW_CREATE); - this.state = 1068; + this.state = 1076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 514) { { - this.state = 1067; + this.state = 1075; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -3403,12 +3409,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1071; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 161 || _la === 182) { { - this.state = 1070; + this.state = 1078; localContext._indexCategory = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161 || _la === 182)) { @@ -3421,66 +3427,66 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1073; + this.state = 1081; this.match(MySqlParser.KW_INDEX); - this.state = 1074; + this.state = 1082; this.indexNameCreate(); - this.state = 1076; + this.state = 1084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1075; + this.state = 1083; this.indexType(); } } - this.state = 1078; + this.state = 1086; this.match(MySqlParser.KW_ON); - this.state = 1079; + this.state = 1087; this.tableName(); - this.state = 1080; + this.state = 1088; this.indexColumnNames(); - this.state = 1084; + this.state = 1092; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1081; + this.state = 1089; this.indexOption(); } } } - this.state = 1086; + this.state = 1094; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); } - this.state = 1099; + this.state = 1107; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1097; + this.state = 1105; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 1087; + this.state = 1095; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1089; + this.state = 1097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1088; + this.state = 1096; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1091; + this.state = 1099; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -3494,19 +3500,19 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_LOCK: { - this.state = 1092; + this.state = 1100; this.match(MySqlParser.KW_LOCK); - this.state = 1094; + this.state = 1102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1093; + this.state = 1101; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1096; + this.state = 1104; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -3523,7 +3529,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 1101; + this.state = 1109; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -3550,153 +3556,153 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1102; + this.state = 1110; this.match(MySqlParser.KW_CREATE); - this.state = 1103; + this.state = 1111; this.match(MySqlParser.KW_LOGFILE); - this.state = 1104; + this.state = 1112; this.match(MySqlParser.KW_GROUP); - this.state = 1105; + this.state = 1113; localContext._logFileGroupName = this.uid(); - this.state = 1106; + this.state = 1114; this.match(MySqlParser.KW_ADD); - this.state = 1107; + this.state = 1115; this.match(MySqlParser.KW_UNDOFILE); - this.state = 1108; + this.state = 1116; localContext._undoFile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1114; + this.state = 1122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1109; + this.state = 1117; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1111; + this.state = 1119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1110; + this.state = 1118; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1113; + this.state = 1121; localContext._initSize = this.fileSizeLiteral(); } } - this.state = 1121; + this.state = 1129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 672) { { - this.state = 1116; + this.state = 1124; this.match(MySqlParser.KW_UNDO_BUFFER_SIZE); - this.state = 1118; + this.state = 1126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1117; + this.state = 1125; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1120; + this.state = 1128; localContext._undoSize = this.fileSizeLiteral(); } } - this.state = 1128; + this.state = 1136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 553) { { - this.state = 1123; + this.state = 1131; this.match(MySqlParser.KW_REDO_BUFFER_SIZE); - this.state = 1125; + this.state = 1133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1124; + this.state = 1132; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1127; + this.state = 1135; localContext._redoSize = this.fileSizeLiteral(); } } - this.state = 1135; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1130; + this.state = 1138; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1132; + this.state = 1140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1131; + this.state = 1139; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1134; + this.state = 1142; localContext._nodeGroup = this.uid(); } } - this.state = 1138; + this.state = 1146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1137; + this.state = 1145; this.match(MySqlParser.KW_WAIT); } } - this.state = 1145; + this.state = 1153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1140; + this.state = 1148; this.match(MySqlParser.KW_COMMENT); - this.state = 1142; + this.state = 1150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1141; + this.state = 1149; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1144; + this.state = 1152; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1147; + this.state = 1155; this.match(MySqlParser.KW_ENGINE); - this.state = 1149; + this.state = 1157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1148; + this.state = 1156; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1151; + this.state = 1159; this.engineName(); } } @@ -3722,79 +3728,79 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1153; + this.state = 1161; this.match(MySqlParser.KW_CREATE); - this.state = 1155; + this.state = 1163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1154; + this.state = 1162; this.ownerStatement(); } } - this.state = 1157; + this.state = 1165; this.match(MySqlParser.KW_PROCEDURE); - this.state = 1159; + this.state = 1167; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 1158; + this.state = 1166; this.ifNotExists(); } break; } - this.state = 1161; + this.state = 1169; localContext._sp_name = this.fullId(); - this.state = 1162; + this.state = 1170; this.match(MySqlParser.LR_BRACKET); - this.state = 1164; + this.state = 1172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18880593) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100680481) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1163; + this.state = 1171; this.procedureParameter(); } } - this.state = 1170; + this.state = 1178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1166; + this.state = 1174; this.match(MySqlParser.COMMA); - this.state = 1167; + this.state = 1175; this.procedureParameter(); } } - this.state = 1172; + this.state = 1180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1173; + this.state = 1181; this.match(MySqlParser.RR_BRACKET); - this.state = 1177; + this.state = 1185; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1174; + this.state = 1182; this.routineOption(); } } } - this.state = 1179; + this.state = 1187; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); } - this.state = 1180; + this.state = 1188; this.routineBody(); } } @@ -3820,93 +3826,93 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1182; + this.state = 1190; this.match(MySqlParser.KW_CREATE); - this.state = 1184; + this.state = 1192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1183; + this.state = 1191; this.ownerStatement(); } } - this.state = 1187; + this.state = 1195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1186; + this.state = 1194; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 1189; + this.state = 1197; this.match(MySqlParser.KW_FUNCTION); - this.state = 1191; + this.state = 1199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 1190; + this.state = 1198; this.ifNotExists(); } break; } - this.state = 1193; + this.state = 1201; this.functionNameCreate(); - this.state = 1194; + this.state = 1202; this.match(MySqlParser.LR_BRACKET); - this.state = 1196; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1195; + this.state = 1203; this.functionParameter(); } } - this.state = 1202; + this.state = 1210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1198; + this.state = 1206; this.match(MySqlParser.COMMA); - this.state = 1199; + this.state = 1207; this.functionParameter(); } } - this.state = 1204; + this.state = 1212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1205; + this.state = 1213; this.match(MySqlParser.RR_BRACKET); - this.state = 1206; + this.state = 1214; this.match(MySqlParser.KW_RETURNS); - this.state = 1207; + this.state = 1215; this.dataType(); - this.state = 1211; + this.state = 1219; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1208; + this.state = 1216; this.routineOption(); } } } - this.state = 1213; + this.state = 1221; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); } - this.state = 1216; + this.state = 1224; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -4494,13 +4500,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 1214; + this.state = 1222; this.routineBody(); } break; case MySqlParser.KW_RETURN: { - this.state = 1215; + this.state = 1223; this.returnStatement(); } break; @@ -4530,35 +4536,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1218; + this.state = 1226; this.match(MySqlParser.KW_CREATE); - this.state = 1220; + this.state = 1228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1219; + this.state = 1227; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 1222; + this.state = 1230; this.match(MySqlParser.KW_FUNCTION); - this.state = 1224; + this.state = 1232; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 1223; + this.state = 1231; this.ifNotExists(); } break; } - this.state = 1226; + this.state = 1234; this.functionNameCreate(); - this.state = 1227; + this.state = 1235; this.match(MySqlParser.KW_RETURNS); - this.state = 1228; + this.state = 1236; localContext._returnType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 261) !== 0) || _la === 649)) { @@ -4568,9 +4574,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1229; + this.state = 1237; this.match(MySqlParser.KW_SONAME); - this.state = 1230; + this.state = 1238; this.match(MySqlParser.STRING_LITERAL); } } @@ -4594,21 +4600,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1232; + this.state = 1240; this.match(MySqlParser.KW_CREATE); - this.state = 1233; + this.state = 1241; this.match(MySqlParser.KW_ROLE); - this.state = 1235; + this.state = 1243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1234; + this.state = 1242; this.ifNotExists(); } break; } - this.state = 1237; + this.state = 1245; this.userOrRoleNames(); } } @@ -4633,19 +4639,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1239; + this.state = 1247; this.match(MySqlParser.KW_CREATE); - this.state = 1240; + this.state = 1248; this.match(MySqlParser.KW_SERVER); - this.state = 1241; + this.state = 1249; localContext._servername = this.uid(); - this.state = 1242; + this.state = 1250; this.match(MySqlParser.KW_FOREIGN); - this.state = 1243; + this.state = 1251; this.match(MySqlParser.KW_DATA); - this.state = 1244; + this.state = 1252; this.match(MySqlParser.KW_WRAPPER); - this.state = 1245; + this.state = 1253; localContext._wrapperName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 882)) { @@ -4655,29 +4661,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1246; + this.state = 1254; this.match(MySqlParser.KW_OPTIONS); - this.state = 1247; + this.state = 1255; this.match(MySqlParser.LR_BRACKET); - this.state = 1248; + this.state = 1256; this.serverOption(); - this.state = 1253; + this.state = 1261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1249; + this.state = 1257; this.match(MySqlParser.COMMA); - this.state = 1250; + this.state = 1258; this.serverOption(); } } - this.state = 1255; + this.state = 1263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1256; + this.state = 1264; this.match(MySqlParser.RR_BRACKET); } } @@ -4701,99 +4707,99 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1336; + this.state = 1344; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1258; + this.state = 1266; this.match(MySqlParser.KW_CREATE); - this.state = 1260; + this.state = 1268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1259; + this.state = 1267; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1262; + this.state = 1270; this.match(MySqlParser.KW_TABLE); - this.state = 1264; + this.state = 1272; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1263; + this.state = 1271; this.ifNotExists(); } break; } - this.state = 1266; + this.state = 1274; (localContext as QueryCreateTableContext)._tb = this.tableNameCreate(); - this.state = 1268; + this.state = 1276; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1267; + this.state = 1275; (localContext as QueryCreateTableContext)._col = this.createDefinitions(); } break; } - this.state = 1280; + this.state = 1288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 882) { { - this.state = 1270; + this.state = 1278; this.tableOption(); - this.state = 1277; + this.state = 1285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 868 || _la === 882) { { { - this.state = 1272; + this.state = 1280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1271; + this.state = 1279; this.match(MySqlParser.COMMA); } } - this.state = 1274; + this.state = 1282; this.tableOption(); } } - this.state = 1279; + this.state = 1287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1283; + this.state = 1291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1282; + this.state = 1290; this.partitionDefinitions(); } } - this.state = 1286; + this.state = 1294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 1285; + this.state = 1293; _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { this.errorHandler.recoverInline(this); @@ -4805,17 +4811,17 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1289; + this.state = 1297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 1288; + this.state = 1296; this.match(MySqlParser.KW_AS); } } - this.state = 1291; + this.state = 1299; this.selectStatement(); } break; @@ -4823,52 +4829,52 @@ export class MySqlParser extends SQLParserBase { localContext = new CopyCreateTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1293; + this.state = 1301; this.match(MySqlParser.KW_CREATE); - this.state = 1295; + this.state = 1303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1294; + this.state = 1302; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1297; + this.state = 1305; this.match(MySqlParser.KW_TABLE); - this.state = 1299; + this.state = 1307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 1298; + this.state = 1306; this.ifNotExists(); } break; } - this.state = 1301; - this.tableNameCreate(); this.state = 1309; + this.tableNameCreate(); + this.state = 1317; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: { - this.state = 1302; + this.state = 1310; this.match(MySqlParser.KW_LIKE); - this.state = 1303; + this.state = 1311; this.tableName(); } break; case MySqlParser.LR_BRACKET: { - this.state = 1304; + this.state = 1312; this.match(MySqlParser.LR_BRACKET); - this.state = 1305; + this.state = 1313; this.match(MySqlParser.KW_LIKE); - this.state = 1306; + this.state = 1314; this.tableName(); - this.state = 1307; + this.state = 1315; this.match(MySqlParser.RR_BRACKET); } break; @@ -4881,76 +4887,76 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1311; + this.state = 1319; this.match(MySqlParser.KW_CREATE); - this.state = 1313; + this.state = 1321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1312; + this.state = 1320; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1315; + this.state = 1323; this.match(MySqlParser.KW_TABLE); - this.state = 1317; + this.state = 1325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1316; + this.state = 1324; this.ifNotExists(); } break; } - this.state = 1319; + this.state = 1327; this.tableNameCreate(); - this.state = 1320; + this.state = 1328; this.createDefinitions(); - this.state = 1331; + this.state = 1339; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1321; + this.state = 1329; this.tableOption(); - this.state = 1328; + this.state = 1336; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 71, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1323; + this.state = 1331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1322; + this.state = 1330; this.match(MySqlParser.COMMA); } } - this.state = 1325; + this.state = 1333; this.tableOption(); } } } - this.state = 1330; + this.state = 1338; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 71, this.context); } } break; } - this.state = 1334; + this.state = 1342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1333; + this.state = 1341; this.partitionDefinitions(); } } @@ -4980,112 +4986,112 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1338; + this.state = 1346; this.match(MySqlParser.KW_CREATE); - this.state = 1340; + this.state = 1348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1339; + this.state = 1347; this.match(MySqlParser.KW_UNDO); } } - this.state = 1342; + this.state = 1350; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1343; + this.state = 1351; this.tableSpaceNameCreate(); - this.state = 1347; + this.state = 1355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 1344; + this.state = 1352; this.match(MySqlParser.KW_ADD); - this.state = 1345; + this.state = 1353; this.match(MySqlParser.KW_DATAFILE); - this.state = 1346; + this.state = 1354; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1354; + this.state = 1362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1349; + this.state = 1357; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1351; + this.state = 1359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1350; + this.state = 1358; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1353; + this.state = 1361; localContext._autoExtendSize = this.fileSizeLiteral(); } } - this.state = 1359; + this.state = 1367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1356; + this.state = 1364; this.match(MySqlParser.KW_FILE_BLOCK_SIZE); - this.state = 1357; + this.state = 1365; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1358; + this.state = 1366; localContext._fileBlockSize = this.fileSizeLiteral(); } } - this.state = 1366; + this.state = 1374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 1361; + this.state = 1369; this.match(MySqlParser.KW_ENGINE); - this.state = 1363; + this.state = 1371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1362; + this.state = 1370; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1365; + this.state = 1373; this.engineName(); } } - this.state = 1373; + this.state = 1381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 1368; + this.state = 1376; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1370; + this.state = 1378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1369; + this.state = 1377; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1372; + this.state = 1380; this.match(MySqlParser.STRING_LITERAL); } } @@ -5113,191 +5119,191 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1375; + this.state = 1383; this.match(MySqlParser.KW_CREATE); - this.state = 1377; + this.state = 1385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1376; + this.state = 1384; this.match(MySqlParser.KW_UNDO); } } - this.state = 1379; + this.state = 1387; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1380; + this.state = 1388; this.tableSpaceNameCreate(); - this.state = 1381; + this.state = 1389; this.match(MySqlParser.KW_ADD); - this.state = 1382; + this.state = 1390; this.match(MySqlParser.KW_DATAFILE); - this.state = 1383; + this.state = 1391; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1384; + this.state = 1392; this.match(MySqlParser.KW_USE); - this.state = 1385; + this.state = 1393; this.match(MySqlParser.KW_LOGFILE); - this.state = 1386; + this.state = 1394; this.match(MySqlParser.KW_GROUP); - this.state = 1387; + this.state = 1395; localContext._logFileGroupName = this.uid(); - this.state = 1393; + this.state = 1401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 393) { { - this.state = 1388; + this.state = 1396; this.match(MySqlParser.KW_EXTENT_SIZE); - this.state = 1390; + this.state = 1398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1389; + this.state = 1397; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1392; + this.state = 1400; localContext._extentSize = this.fileSizeLiteral(); } } - this.state = 1400; + this.state = 1408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1395; + this.state = 1403; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1397; + this.state = 1405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1396; + this.state = 1404; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1399; + this.state = 1407; localContext._initialSize = this.fileSizeLiteral(); } } - this.state = 1407; + this.state = 1415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1402; + this.state = 1410; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1404; + this.state = 1412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1403; + this.state = 1411; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1406; + this.state = 1414; localContext._autoExtendSize = this.fileSizeLiteral(); } } - this.state = 1414; + this.state = 1422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 481) { { - this.state = 1409; + this.state = 1417; this.match(MySqlParser.KW_MAX_SIZE); - this.state = 1411; + this.state = 1419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1410; + this.state = 1418; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1413; + this.state = 1421; localContext._maxSize = this.fileSizeLiteral(); } } - this.state = 1421; + this.state = 1429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1416; + this.state = 1424; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1418; + this.state = 1426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1417; + this.state = 1425; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1420; + this.state = 1428; localContext._nodeGroup = this.uid(); } } - this.state = 1424; + this.state = 1432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1423; + this.state = 1431; this.match(MySqlParser.KW_WAIT); } } - this.state = 1431; + this.state = 1439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1426; + this.state = 1434; this.match(MySqlParser.KW_COMMENT); - this.state = 1428; + this.state = 1436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1427; + this.state = 1435; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1430; + this.state = 1438; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1433; + this.state = 1441; this.match(MySqlParser.KW_ENGINE); - this.state = 1435; + this.state = 1443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1434; + this.state = 1442; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1437; + this.state = 1445; this.engineName(); } } @@ -5322,43 +5328,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1439; + this.state = 1447; this.match(MySqlParser.KW_CREATE); - this.state = 1441; + this.state = 1449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1440; + this.state = 1448; this.ownerStatement(); } } - this.state = 1444; + this.state = 1452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 1443; + this.state = 1451; this.ifNotExists(); } } - this.state = 1446; + this.state = 1454; this.match(MySqlParser.KW_TRIGGER); - this.state = 1448; + this.state = 1456; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1447; + this.state = 1455; this.ifNotExists(); } break; } - this.state = 1450; + this.state = 1458; localContext._trigger_name = this.fullId(); - this.state = 1451; + this.state = 1459; localContext._triggerTime = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 16 || _la === 306)) { @@ -5368,7 +5374,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1452; + this.state = 1460; localContext._triggerEvent = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 44 || _la === 86 || _la === 185)) { @@ -5378,22 +5384,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1453; + this.state = 1461; this.match(MySqlParser.KW_ON); - this.state = 1454; + this.state = 1462; this.tableName(); - this.state = 1455; + this.state = 1463; this.match(MySqlParser.KW_FOR); - this.state = 1456; + this.state = 1464; this.match(MySqlParser.KW_EACH); - this.state = 1457; + this.state = 1465; this.match(MySqlParser.KW_ROW); - this.state = 1460; + this.state = 1468; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1458; + this.state = 1466; localContext._triggerPlace = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 406 || _la === 538)) { @@ -5403,12 +5409,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1459; + this.state = 1467; localContext._other_trigger_name = this.fullId(); } break; } - this.state = 1462; + this.state = 1470; this.routineBody(); } } @@ -5432,19 +5438,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1472; this.match(MySqlParser.KW_WITH); - this.state = 1466; + this.state = 1474; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1465; + this.state = 1473; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 1468; + this.state = 1476; this.commonTableExpressions(); } } @@ -5469,54 +5475,54 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1478; localContext._cteName = this.uid(); - this.state = 1482; + this.state = 1490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1471; + this.state = 1479; this.match(MySqlParser.LR_BRACKET); - this.state = 1472; + this.state = 1480; localContext._cteColumnName = this.uid(); - this.state = 1477; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1473; + this.state = 1481; this.match(MySqlParser.COMMA); - this.state = 1474; + this.state = 1482; localContext._cteColumnName = this.uid(); } } - this.state = 1479; + this.state = 1487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1480; + this.state = 1488; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1484; + this.state = 1492; this.match(MySqlParser.KW_AS); - this.state = 1485; + this.state = 1493; this.match(MySqlParser.LR_BRACKET); - this.state = 1486; + this.state = 1494; this.dmlStatement(); - this.state = 1487; + this.state = 1495; this.match(MySqlParser.RR_BRACKET); - this.state = 1490; + this.state = 1498; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1488; + this.state = 1496; this.match(MySqlParser.COMMA); - this.state = 1489; + this.state = 1497; this.commonTableExpressions(); } break; @@ -5544,28 +5550,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1492; + this.state = 1500; this.match(MySqlParser.KW_CREATE); - this.state = 1494; + this.state = 1502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 1493; + this.state = 1501; this.orReplace(); } } - this.state = 1499; + this.state = 1507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 1496; + this.state = 1504; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1497; + this.state = 1505; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1498; + this.state = 1506; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -5578,26 +5584,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1502; + this.state = 1510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1501; + this.state = 1509; this.ownerStatement(); } } - this.state = 1507; + this.state = 1515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 1504; + this.state = 1512; this.match(MySqlParser.KW_SQL); - this.state = 1505; + this.state = 1513; this.match(MySqlParser.KW_SECURITY); - this.state = 1506; + this.state = 1514; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -5610,92 +5616,92 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1509; + this.state = 1517; this.match(MySqlParser.KW_VIEW); - this.state = 1510; + this.state = 1518; this.viewNameCreate(); - this.state = 1522; + this.state = 1530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1511; + this.state = 1519; this.match(MySqlParser.LR_BRACKET); - this.state = 1512; + this.state = 1520; this.columnNameCreate(); - this.state = 1517; + this.state = 1525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1513; + this.state = 1521; this.match(MySqlParser.COMMA); - this.state = 1514; + this.state = 1522; this.columnNameCreate(); } } - this.state = 1519; + this.state = 1527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1520; + this.state = 1528; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1524; + this.state = 1532; this.match(MySqlParser.KW_AS); - this.state = 1544; + this.state = 1552; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1525; + this.state = 1533; this.match(MySqlParser.LR_BRACKET); - this.state = 1527; + this.state = 1535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1526; + this.state = 1534; this.withClause(); } } - this.state = 1529; + this.state = 1537; this.selectStatement(); - this.state = 1530; + this.state = 1538; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 1533; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1532; + this.state = 1540; this.withClause(); } } - this.state = 1535; + this.state = 1543; this.selectStatement(); - this.state = 1542; + this.state = 1550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1536; + this.state = 1544; this.match(MySqlParser.KW_WITH); - this.state = 1538; + this.state = 1546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 1537; + this.state = 1545; localContext._checkOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -5708,9 +5714,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1540; + this.state = 1548; this.match(MySqlParser.KW_CHECK); - this.state = 1541; + this.state = 1549; this.match(MySqlParser.KW_OPTION); } break; @@ -5739,35 +5745,35 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 56, MySqlParser.RULE_createDatabaseOption); let _la: number; try { - this.state = 1579; + this.state = 1587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1547; + this.state = 1555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1546; + this.state = 1554; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1549; + this.state = 1557; this.charSet(); - this.state = 1551; + this.state = 1559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1550; + this.state = 1558; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1555; + this.state = 1563; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -5815,13 +5821,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1553; + this.state = 1561; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1554; + this.state = 1562; this.match(MySqlParser.KW_DEFAULT); } break; @@ -5833,79 +5839,79 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1558; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1557; + this.state = 1565; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1560; + this.state = 1568; this.match(MySqlParser.KW_COLLATE); - this.state = 1562; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1561; + this.state = 1569; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1564; + this.state = 1572; this.collationName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1566; + this.state = 1574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1565; + this.state = 1573; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1568; + this.state = 1576; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 1570; + this.state = 1578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1569; + this.state = 1577; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1572; + this.state = 1580; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1573; + this.state = 1581; this.match(MySqlParser.KW_READ); - this.state = 1574; + this.state = 1582; this.match(MySqlParser.KW_ONLY); - this.state = 1576; + this.state = 1584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1575; + this.state = 1583; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1578; + this.state = 1586; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -5936,31 +5942,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new CharSetContext(this.context, this.state); this.enterRule(localContext, 58, MySqlParser.RULE_charSet); try { - this.state = 1586; + this.state = 1594; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 1581; + this.state = 1589; this.match(MySqlParser.KW_CHARACTER); - this.state = 1582; + this.state = 1590; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 1583; + this.state = 1591; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHAR: this.enterOuterAlt(localContext, 3); { - this.state = 1584; + this.state = 1592; this.match(MySqlParser.KW_CHAR); - this.state = 1585; + this.state = 1593; this.match(MySqlParser.KW_SET); } break; @@ -5989,7 +5995,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1588; + this.state = 1596; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 678)) { this.errorHandler.recoverInline(this); @@ -5998,14 +6004,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1591; + this.state = 1599; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1589; + this.state = 1597; this.match(MySqlParser.LR_BRACKET); - this.state = 1590; + this.state = 1598; this.match(MySqlParser.RR_BRACKET); } break; @@ -6032,22 +6038,22 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1593; + this.state = 1601; this.match(MySqlParser.KW_DEFINER); - this.state = 1594; + this.state = 1602; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1597; + this.state = 1605; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1595; + this.state = 1603; this.userName(); } break; case 2: { - this.state = 1596; + this.state = 1604; this.currentUserExpression(); } break; @@ -6073,28 +6079,28 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 64, MySqlParser.RULE_scheduleExpression); let _la: number; try { - this.state = 1633; + this.state = 1641; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AT: localContext = new PreciseScheduleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1599; + this.state = 1607; this.match(MySqlParser.KW_AT); - this.state = 1600; + this.state = 1608; this.timestampValue(); - this.state = 1604; + this.state = 1612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1601; + this.state = 1609; this.intervalExpr(); } } - this.state = 1606; + this.state = 1614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6104,74 +6110,74 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalScheduleContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1607; + this.state = 1615; this.match(MySqlParser.KW_EVERY); - this.state = 1610; + this.state = 1618; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1608; + this.state = 1616; this.decimalLiteral(); } break; case 2: { - this.state = 1609; + this.state = 1617; this.expression(0); } break; } - this.state = 1612; + this.state = 1620; this.intervalType(); - this.state = 1621; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 641) { { - this.state = 1613; + this.state = 1621; this.match(MySqlParser.KW_STARTS); - this.state = 1614; + this.state = 1622; (localContext as IntervalScheduleContext)._startTimestamp = this.timestampValue(); - this.state = 1618; + this.state = 1626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1615; + this.state = 1623; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._startIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1620; + this.state = 1628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1631; + this.state = 1639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 379) { { - this.state = 1623; + this.state = 1631; this.match(MySqlParser.KW_ENDS); - this.state = 1624; + this.state = 1632; (localContext as IntervalScheduleContext)._endTimestamp = this.timestampValue(); - this.state = 1628; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1625; + this.state = 1633; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._endIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1630; + this.state = 1638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6202,34 +6208,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new TimestampValueContext(this.context, this.state); this.enterRule(localContext, 66, MySqlParser.RULE_timestampValue); try { - this.state = 1639; + this.state = 1647; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1635; + this.state = 1643; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1636; + this.state = 1644; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1637; + this.state = 1645; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1638; + this.state = 1646; this.expression(0); } break; @@ -6255,27 +6261,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1641; + this.state = 1649; this.match(MySqlParser.PLUS); - this.state = 1642; + this.state = 1650; this.match(MySqlParser.KW_INTERVAL); - this.state = 1645; + this.state = 1653; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1643; + this.state = 1651; this.decimalLiteral(); } break; case 2: { - this.state = 1644; + this.state = 1652; this.expression(0); } break; } - this.state = 1647; + this.state = 1655; this.intervalType(); } } @@ -6297,7 +6303,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new IntervalTypeContext(this.context, this.state); this.enterRule(localContext, 70, MySqlParser.RULE_intervalType); try { - this.state = 1662; + this.state = 1670; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_QUARTER: @@ -6310,91 +6316,91 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MICROSECOND: this.enterOuterAlt(localContext, 1); { - this.state = 1649; + this.state = 1657; this.intervalTypeBase(); } break; case MySqlParser.KW_YEAR: this.enterOuterAlt(localContext, 2); { - this.state = 1650; + this.state = 1658; this.match(MySqlParser.KW_YEAR); } break; case MySqlParser.KW_YEAR_MONTH: this.enterOuterAlt(localContext, 3); { - this.state = 1651; + this.state = 1659; this.match(MySqlParser.KW_YEAR_MONTH); } break; case MySqlParser.KW_DAY_HOUR: this.enterOuterAlt(localContext, 4); { - this.state = 1652; + this.state = 1660; this.match(MySqlParser.KW_DAY_HOUR); } break; case MySqlParser.KW_DAY_MINUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1653; + this.state = 1661; this.match(MySqlParser.KW_DAY_MINUTE); } break; case MySqlParser.KW_DAY_SECOND: this.enterOuterAlt(localContext, 6); { - this.state = 1654; + this.state = 1662; this.match(MySqlParser.KW_DAY_SECOND); } break; case MySqlParser.KW_HOUR_MINUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1655; + this.state = 1663; this.match(MySqlParser.KW_HOUR_MINUTE); } break; case MySqlParser.KW_HOUR_SECOND: this.enterOuterAlt(localContext, 8); { - this.state = 1656; + this.state = 1664; this.match(MySqlParser.KW_HOUR_SECOND); } break; case MySqlParser.KW_MINUTE_SECOND: this.enterOuterAlt(localContext, 9); { - this.state = 1657; + this.state = 1665; this.match(MySqlParser.KW_MINUTE_SECOND); } break; case MySqlParser.KW_SECOND_MICROSECOND: this.enterOuterAlt(localContext, 10); { - this.state = 1658; + this.state = 1666; this.match(MySqlParser.KW_SECOND_MICROSECOND); } break; case MySqlParser.KW_MINUTE_MICROSECOND: this.enterOuterAlt(localContext, 11); { - this.state = 1659; + this.state = 1667; this.match(MySqlParser.KW_MINUTE_MICROSECOND); } break; case MySqlParser.KW_HOUR_MICROSECOND: this.enterOuterAlt(localContext, 12); { - this.state = 1660; + this.state = 1668; this.match(MySqlParser.KW_HOUR_MICROSECOND); } break; case MySqlParser.KW_DAY_MICROSECOND: this.enterOuterAlt(localContext, 13); { - this.state = 1661; + this.state = 1669; this.match(MySqlParser.KW_DAY_MICROSECOND); } break; @@ -6420,31 +6426,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new EnableTypeContext(this.context, this.state); this.enterRule(localContext, 72, MySqlParser.RULE_enableType); try { - this.state = 1669; + this.state = 1677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1664; + this.state = 1672; this.match(MySqlParser.KW_ENABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1665; + this.state = 1673; this.match(MySqlParser.KW_DISABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1666; + this.state = 1674; this.match(MySqlParser.KW_DISABLE); - this.state = 1667; + this.state = 1675; this.match(MySqlParser.KW_ON); - this.state = 1668; + this.state = 1676; this.match(MySqlParser.KW_SLAVE); } break; @@ -6471,9 +6477,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1671; + this.state = 1679; this.match(MySqlParser.KW_USING); - this.state = 1672; + this.state = 1680; _la = this.tokenStream.LA(1); if(!(_la === 323 || _la === 418)) { this.errorHandler.recoverInline(this); @@ -6503,52 +6509,52 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 76, MySqlParser.RULE_indexOption); let _la: number; try { - this.state = 1696; + this.state = 1704; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_KEY_BLOCK_SIZE: this.enterOuterAlt(localContext, 1); { - this.state = 1674; + this.state = 1682; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 1676; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1675; + this.state = 1683; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1678; + this.state = 1686; this.fileSizeLiteral(); } break; case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1679; + this.state = 1687; this.indexType(); } break; case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1680; + this.state = 1688; this.match(MySqlParser.KW_WITH); - this.state = 1681; + this.state = 1689; this.match(MySqlParser.KW_PARSER); - this.state = 1682; + this.state = 1690; localContext._parserName = this.uid(); } break; case MySqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 1683; + this.state = 1691; this.match(MySqlParser.KW_COMMENT); - this.state = 1684; + this.state = 1692; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6556,7 +6562,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VISIBLE: this.enterOuterAlt(localContext, 5); { - this.state = 1685; + this.state = 1693; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -6570,38 +6576,38 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 6); { - this.state = 1686; + this.state = 1694; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1688; + this.state = 1696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1687; + this.state = 1695; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1690; + this.state = 1698; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1691; + this.state = 1699; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 1693; + this.state = 1701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1692; + this.state = 1700; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1695; + this.state = 1703; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6630,12 +6636,12 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1699; + this.state = 1707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80 || _la === 85 || _la === 126) { { - this.state = 1698; + this.state = 1706; localContext._direction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 85 || _la === 126)) { @@ -6648,9 +6654,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1701; + this.state = 1709; localContext._paramName = this.uid(); - this.state = 1702; + this.state = 1710; this.dataType(); } } @@ -6674,9 +6680,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1704; + this.state = 1712; localContext._paramName = this.uid(); - this.state = 1705; + this.state = 1713; this.dataType(); } } @@ -6699,16 +6705,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 82, MySqlParser.RULE_routineOption); let _la: number; try { - this.state = 1730; + this.state = 1738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_COMMENT: localContext = new RoutineCommentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1715; this.match(MySqlParser.KW_COMMENT); - this.state = 1708; + this.state = 1716; (localContext as RoutineCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -6716,9 +6722,9 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineLanguageContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1709; + this.state = 1717; this.match(MySqlParser.KW_LANGUAGE); - this.state = 1710; + this.state = 1718; this.match(MySqlParser.KW_SQL); } break; @@ -6727,17 +6733,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineBehaviorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1712; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1711; + this.state = 1719; this.match(MySqlParser.KW_NOT); } } - this.state = 1714; + this.state = 1722; this.match(MySqlParser.KW_DETERMINISTIC); } break; @@ -6748,42 +6754,42 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineDataContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1725; + this.state = 1733; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONTAINS: { - this.state = 1715; + this.state = 1723; this.match(MySqlParser.KW_CONTAINS); - this.state = 1716; + this.state = 1724; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_NO: { - this.state = 1717; + this.state = 1725; this.match(MySqlParser.KW_NO); - this.state = 1718; + this.state = 1726; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_READS: { - this.state = 1719; + this.state = 1727; this.match(MySqlParser.KW_READS); - this.state = 1720; + this.state = 1728; this.match(MySqlParser.KW_SQL); - this.state = 1721; + this.state = 1729; this.match(MySqlParser.KW_DATA); } break; case MySqlParser.KW_MODIFIES: { - this.state = 1722; + this.state = 1730; this.match(MySqlParser.KW_MODIFIES); - this.state = 1723; + this.state = 1731; this.match(MySqlParser.KW_SQL); - this.state = 1724; + this.state = 1732; this.match(MySqlParser.KW_DATA); } break; @@ -6796,11 +6802,11 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineSecurityContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1727; + this.state = 1735; this.match(MySqlParser.KW_SQL); - this.state = 1728; + this.state = 1736; this.match(MySqlParser.KW_SECURITY); - this.state = 1729; + this.state = 1737; (localContext as RoutineSecurityContext)._context = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -6834,69 +6840,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new ServerOptionContext(this.context, this.state); this.enterRule(localContext, 84, MySqlParser.RULE_serverOption); try { - this.state = 1746; + this.state = 1754; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_HOST: this.enterOuterAlt(localContext, 1); { - this.state = 1732; + this.state = 1740; this.match(MySqlParser.KW_HOST); - this.state = 1733; + this.state = 1741; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 2); { - this.state = 1734; + this.state = 1742; this.match(MySqlParser.KW_DATABASE); - this.state = 1735; + this.state = 1743; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_USER: this.enterOuterAlt(localContext, 3); { - this.state = 1736; + this.state = 1744; this.match(MySqlParser.KW_USER); - this.state = 1737; + this.state = 1745; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PASSWORD: this.enterOuterAlt(localContext, 4); { - this.state = 1738; + this.state = 1746; this.match(MySqlParser.KW_PASSWORD); - this.state = 1739; + this.state = 1747; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SOCKET: this.enterOuterAlt(localContext, 5); { - this.state = 1740; + this.state = 1748; this.match(MySqlParser.KW_SOCKET); - this.state = 1741; + this.state = 1749; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_OWNER: this.enterOuterAlt(localContext, 6); { - this.state = 1742; + this.state = 1750; this.match(MySqlParser.KW_OWNER); - this.state = 1743; + this.state = 1751; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PORT: this.enterOuterAlt(localContext, 7); { - this.state = 1744; + this.state = 1752; this.match(MySqlParser.KW_PORT); - this.state = 1745; + this.state = 1753; this.decimalLiteral(); } break; @@ -6925,27 +6931,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1748; + this.state = 1756; this.match(MySqlParser.LR_BRACKET); - this.state = 1749; + this.state = 1757; this.createDefinition(); - this.state = 1754; + this.state = 1762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1750; + this.state = 1758; this.match(MySqlParser.COMMA); - this.state = 1751; + this.state = 1759; this.createDefinition(); } } - this.state = 1756; + this.state = 1764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1757; + this.state = 1765; this.match(MySqlParser.RR_BRACKET); } } @@ -6968,22 +6974,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 88, MySqlParser.RULE_createDefinition); let _la: number; try { - this.state = 1842; + this.state = 1850; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1767; this.columnNameCreate(); - this.state = 1760; + this.state = 1768; this.columnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1762; + this.state = 1770; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6992,39 +6998,39 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1764; + this.state = 1772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1763; + this.state = 1771; this.indexName(); } } - this.state = 1767; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1766; + this.state = 1774; this.indexType(); } } - this.state = 1769; + this.state = 1777; this.indexColumnNames(); - this.state = 1773; + this.state = 1781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1770; + this.state = 1778; this.indexOption(); } } - this.state = 1775; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7033,7 +7039,7 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1776; + this.state = 1784; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -7042,12 +7048,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1778; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1777; + this.state = 1785; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -7059,29 +7065,29 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1781; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1780; + this.state = 1788; this.indexName(); } } - this.state = 1783; + this.state = 1791; this.indexColumnNames(); - this.state = 1787; + this.state = 1795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1784; + this.state = 1792; this.indexOption(); } } - this.state = 1789; + this.state = 1797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7090,43 +7096,43 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1791; + this.state = 1799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1790; + this.state = 1798; this.constraintSymbol(); } } - this.state = 1793; + this.state = 1801; this.match(MySqlParser.KW_PRIMARY); - this.state = 1794; + this.state = 1802; this.match(MySqlParser.KW_KEY); - this.state = 1796; + this.state = 1804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1795; + this.state = 1803; this.indexType(); } } - this.state = 1798; + this.state = 1806; this.indexColumnNames(); - this.state = 1802; + this.state = 1810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1799; + this.state = 1807; this.indexOption(); } } - this.state = 1804; + this.state = 1812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7135,24 +7141,24 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1806; + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1805; + this.state = 1813; this.constraintSymbol(); } } - this.state = 1808; + this.state = 1816; this.match(MySqlParser.KW_UNIQUE); - this.state = 1810; + this.state = 1818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1809; + this.state = 1817; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -7164,39 +7170,39 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1813; + this.state = 1821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1812; + this.state = 1820; this.indexName(); } } - this.state = 1816; + this.state = 1824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1815; + this.state = 1823; this.indexType(); } } - this.state = 1818; + this.state = 1826; this.indexColumnNames(); - this.state = 1822; + this.state = 1830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1819; + this.state = 1827; this.indexOption(); } } - this.state = 1824; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7205,53 +7211,53 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1826; + this.state = 1834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1825; + this.state = 1833; this.constraintSymbol(); } } - this.state = 1828; + this.state = 1836; this.match(MySqlParser.KW_FOREIGN); - this.state = 1829; + this.state = 1837; this.match(MySqlParser.KW_KEY); - this.state = 1831; + this.state = 1839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1830; + this.state = 1838; this.indexName(); } } - this.state = 1833; + this.state = 1841; this.indexColumnNames(); - this.state = 1834; + this.state = 1842; this.referenceDefinition(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1836; + this.state = 1844; this.match(MySqlParser.KW_CHECK); - this.state = 1837; + this.state = 1845; this.match(MySqlParser.LR_BRACKET); - this.state = 1838; + this.state = 1846; this.expression(0); - this.state = 1839; + this.state = 1847; this.match(MySqlParser.RR_BRACKET); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1841; + this.state = 1849; this.checkConstraintDefinition(); } break; @@ -7278,40 +7284,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1844; + this.state = 1852; this.constraintSymbol(); } } - this.state = 1847; + this.state = 1855; this.match(MySqlParser.KW_CHECK); - this.state = 1848; + this.state = 1856; this.match(MySqlParser.LR_BRACKET); - this.state = 1849; + this.state = 1857; this.expression(0); - this.state = 1850; + this.state = 1858; this.match(MySqlParser.RR_BRACKET); - this.state = 1855; + this.state = 1863; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1852; + this.state = 1860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1851; + this.state = 1859; this.match(MySqlParser.KW_NOT); } } - this.state = 1854; + this.state = 1862; this.match(MySqlParser.KW_ENFORCED); } break; @@ -7338,14 +7344,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1857; + this.state = 1865; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 1859; + this.state = 1867; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1858; + this.state = 1866; localContext._symbol_ = this.uid(); } break; @@ -7373,21 +7379,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1861; + this.state = 1869; localContext._colType = this.dataType(); - this.state = 1865; + this.state = 1873; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1862; + this.state = 1870; this.columnConstraint(); } } } - this.state = 1867; + this.state = 1875; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); } @@ -7412,7 +7418,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 96, MySqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 1911; + this.state = 1919; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NOT: @@ -7421,7 +7427,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NullColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1868; + this.state = 1876; this.nullNotNull(); } break; @@ -7429,9 +7435,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1869; + this.state = 1877; this.match(MySqlParser.KW_DEFAULT); - this.state = 1870; + this.state = 1878; this.defaultValue(); } break; @@ -7439,7 +7445,7 @@ export class MySqlParser extends SQLParserBase { localContext = new VisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1871; + this.state = 1879; this.match(MySqlParser.KW_VISIBLE); } break; @@ -7447,7 +7453,7 @@ export class MySqlParser extends SQLParserBase { localContext = new InvisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1872; + this.state = 1880; this.match(MySqlParser.KW_INVISIBLE); } break; @@ -7456,22 +7462,22 @@ export class MySqlParser extends SQLParserBase { localContext = new AutoIncrementColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1877; + this.state = 1885; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AUTO_INCREMENT: { - this.state = 1873; + this.state = 1881; this.match(MySqlParser.KW_AUTO_INCREMENT); } break; case MySqlParser.KW_ON: { - this.state = 1874; + this.state = 1882; this.match(MySqlParser.KW_ON); - this.state = 1875; + this.state = 1883; this.match(MySqlParser.KW_UPDATE); - this.state = 1876; + this.state = 1884; this.currentTimestamp(); } break; @@ -7485,17 +7491,17 @@ export class MySqlParser extends SQLParserBase { localContext = new PrimaryKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1880; + this.state = 1888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 131) { { - this.state = 1879; + this.state = 1887; this.match(MySqlParser.KW_PRIMARY); } } - this.state = 1882; + this.state = 1890; this.match(MySqlParser.KW_KEY); } break; @@ -7503,14 +7509,14 @@ export class MySqlParser extends SQLParserBase { localContext = new UniqueKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1883; + this.state = 1891; this.match(MySqlParser.KW_UNIQUE); - this.state = 1885; + this.state = 1893; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: { - this.state = 1884; + this.state = 1892; this.match(MySqlParser.KW_KEY); } break; @@ -7521,9 +7527,9 @@ export class MySqlParser extends SQLParserBase { localContext = new CommentColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1887; + this.state = 1895; this.match(MySqlParser.KW_COMMENT); - this.state = 1888; + this.state = 1896; (localContext as CommentColumnConstraintContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -7531,9 +7537,9 @@ export class MySqlParser extends SQLParserBase { localContext = new FormatColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1889; + this.state = 1897; this.match(MySqlParser.KW_COLUMN_FORMAT); - this.state = 1890; + this.state = 1898; (localContext as FormatColumnConstraintContext)._colformat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 374 || _la === 403)) { @@ -7549,9 +7555,9 @@ export class MySqlParser extends SQLParserBase { localContext = new StorageColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1891; + this.state = 1899; this.match(MySqlParser.KW_STORAGE); - this.state = 1892; + this.state = 1900; (localContext as StorageColumnConstraintContext)._storageval = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { @@ -7567,7 +7573,7 @@ export class MySqlParser extends SQLParserBase { localContext = new ReferenceColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1893; + this.state = 1901; this.referenceDefinition(); } break; @@ -7575,9 +7581,9 @@ export class MySqlParser extends SQLParserBase { localContext = new CollateColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1894; + this.state = 1902; this.match(MySqlParser.KW_COLLATE); - this.state = 1895; + this.state = 1903; this.collationName(); } break; @@ -7586,32 +7592,32 @@ export class MySqlParser extends SQLParserBase { localContext = new GeneratedColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1898; + this.state = 1906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1896; + this.state = 1904; this.match(MySqlParser.KW_GENERATED); - this.state = 1897; + this.state = 1905; this.match(MySqlParser.KW_ALWAYS); } } - this.state = 1900; + this.state = 1908; this.match(MySqlParser.KW_AS); - this.state = 1901; + this.state = 1909; this.match(MySqlParser.LR_BRACKET); - this.state = 1902; + this.state = 1910; this.expression(0); - this.state = 1903; + this.state = 1911; this.match(MySqlParser.RR_BRACKET); - this.state = 1905; + this.state = 1913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 648 || _la === 685) { { - this.state = 1904; + this.state = 1912; _la = this.tokenStream.LA(1); if(!(_la === 648 || _la === 685)) { this.errorHandler.recoverInline(this); @@ -7629,11 +7635,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SerialDefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1907; + this.state = 1915; this.match(MySqlParser.KW_SERIAL); - this.state = 1908; + this.state = 1916; this.match(MySqlParser.KW_DEFAULT); - this.state = 1909; + this.state = 1917; this.match(MySqlParser.KW_VALUE); } break; @@ -7642,7 +7648,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CheckExprContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1910; + this.state = 1918; this.checkConstraintDefinition(); } break; @@ -7671,28 +7677,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1913; + this.state = 1921; this.match(MySqlParser.KW_REFERENCES); - this.state = 1914; + this.state = 1922; this.tableName(); - this.state = 1916; + this.state = 1924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - this.state = 1915; + this.state = 1923; this.indexColumnNames(); } break; } - this.state = 1920; + this.state = 1928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 1918; + this.state = 1926; this.match(MySqlParser.KW_MATCH); - this.state = 1919; + this.state = 1927; localContext._matchType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 408 || _la === 526 || _la === 597)) { @@ -7705,12 +7711,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1923; + this.state = 1931; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1922; + this.state = 1930; this.referenceAction(); } break; @@ -7735,28 +7741,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReferenceActionContext(this.context, this.state); this.enterRule(localContext, 100, MySqlParser.RULE_referenceAction); try { - this.state = 1941; + this.state = 1949; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1925; + this.state = 1933; this.match(MySqlParser.KW_ON); - this.state = 1926; + this.state = 1934; this.match(MySqlParser.KW_DELETE); - this.state = 1927; + this.state = 1935; localContext._onDelete = this.referenceControlType(); - this.state = 1931; + this.state = 1939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1928; + this.state = 1936; this.match(MySqlParser.KW_ON); - this.state = 1929; + this.state = 1937; this.match(MySqlParser.KW_UPDATE); - this.state = 1930; + this.state = 1938; localContext._onUpdate = this.referenceControlType(); } break; @@ -7766,22 +7772,22 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1933; + this.state = 1941; this.match(MySqlParser.KW_ON); - this.state = 1934; + this.state = 1942; this.match(MySqlParser.KW_UPDATE); - this.state = 1935; + this.state = 1943; localContext._onUpdate = this.referenceControlType(); - this.state = 1939; + this.state = 1947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1936; + this.state = 1944; this.match(MySqlParser.KW_ON); - this.state = 1937; + this.state = 1945; this.match(MySqlParser.KW_DELETE); - this.state = 1938; + this.state = 1946; localContext._onDelete = this.referenceControlType(); } break; @@ -7808,47 +7814,47 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReferenceControlTypeContext(this.context, this.state); this.enterRule(localContext, 102, MySqlParser.RULE_referenceControlType); try { - this.state = 1951; + this.state = 1959; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1943; + this.state = 1951; this.match(MySqlParser.KW_RESTRICT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1944; + this.state = 1952; this.match(MySqlParser.KW_CASCADE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1945; + this.state = 1953; this.match(MySqlParser.KW_SET); - this.state = 1946; + this.state = 1954; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1947; + this.state = 1955; this.match(MySqlParser.KW_NO); - this.state = 1948; + this.state = 1956; this.match(MySqlParser.KW_ACTION); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1949; + this.state = 1957; this.match(MySqlParser.KW_SET); - this.state = 1950; + this.state = 1958; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7873,31 +7879,31 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 104, MySqlParser.RULE_tableOption); let _la: number; try { - this.state = 2138; + this.state = 2146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: localContext = new TableOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1953; + this.state = 1961; this.match(MySqlParser.KW_ENGINE); - this.state = 1955; + this.state = 1963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1954; + this.state = 1962; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1958; + this.state = 1966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1957; + this.state = 1965; this.engineName(); } break; @@ -7908,19 +7914,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1960; + this.state = 1968; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1962; + this.state = 1970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1961; + this.state = 1969; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1964; + this.state = 1972; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7928,19 +7934,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAutoExtendSizeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1965; + this.state = 1973; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1967; + this.state = 1975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1966; + this.state = 1974; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1969; + this.state = 1977; this.decimalLiteral(); } break; @@ -7948,19 +7954,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAutoIncrementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1970; + this.state = 1978; this.match(MySqlParser.KW_AUTO_INCREMENT); - this.state = 1972; + this.state = 1980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1971; + this.state = 1979; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1974; + this.state = 1982; this.decimalLiteral(); } break; @@ -7968,19 +7974,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAverageContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1975; + this.state = 1983; this.match(MySqlParser.KW_AVG_ROW_LENGTH); - this.state = 1977; + this.state = 1985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1976; + this.state = 1984; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1979; + this.state = 1987; this.decimalLiteral(); } break; @@ -7988,29 +7994,29 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCharsetContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1981; + this.state = 1989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1980; + this.state = 1988; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1983; + this.state = 1991; this.charSet(); - this.state = 1985; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1984; + this.state = 1992; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1989; + this.state = 1997; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -8058,13 +8064,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1987; + this.state = 1995; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1988; + this.state = 1996; this.match(MySqlParser.KW_DEFAULT); } break; @@ -8077,7 +8083,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionChecksumContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1991; + this.state = 1999; _la = this.tokenStream.LA(1); if(!(_la === 329 || _la === 522)) { this.errorHandler.recoverInline(this); @@ -8086,17 +8092,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1993; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1992; + this.state = 2000; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1995; + this.state = 2003; (localContext as TableOptionChecksumContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -8112,29 +8118,29 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCollateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1997; + this.state = 2005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1996; + this.state = 2004; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1999; + this.state = 2007; this.match(MySqlParser.KW_COLLATE); - this.state = 2001; + this.state = 2009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2000; + this.state = 2008; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2003; + this.state = 2011; this.collationName(); } break; @@ -8142,19 +8148,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCommentContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2004; + this.state = 2012; this.match(MySqlParser.KW_COMMENT); - this.state = 2006; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2005; + this.state = 2013; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2008; + this.state = 2016; (localContext as TableOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -8162,19 +8168,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCompressionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2009; + this.state = 2017; this.match(MySqlParser.KW_COMPRESSION); - this.state = 2011; + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2010; + this.state = 2018; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2013; + this.state = 2021; _la = this.tokenStream.LA(1); if(!(_la === 882 || _la === 889)) { this.errorHandler.recoverInline(this); @@ -8189,19 +8195,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionConnectionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2014; + this.state = 2022; this.match(MySqlParser.KW_CONNECTION); - this.state = 2016; + this.state = 2024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2015; + this.state = 2023; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2018; + this.state = 2026; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8209,7 +8215,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2019; + this.state = 2027; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -8218,19 +8224,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2020; + this.state = 2028; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2022; + this.state = 2030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2021; + this.state = 2029; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2024; + this.state = 2032; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8238,19 +8244,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionDelayContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2025; + this.state = 2033; this.match(MySqlParser.KW_DELAY_KEY_WRITE); - this.state = 2027; + this.state = 2035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2026; + this.state = 2034; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2029; + this.state = 2037; (localContext as TableOptionDelayContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -8266,19 +8272,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEncryptionContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2030; + this.state = 2038; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2032; + this.state = 2040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2031; + this.state = 2039; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2034; + this.state = 2042; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8286,7 +8292,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPageCompressedContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2035; + this.state = 2043; _la = this.tokenStream.LA(1); if(!(_la === 523 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -8295,17 +8301,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2037; + this.state = 2045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2036; + this.state = 2044; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2039; + this.state = 2047; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -8320,7 +8326,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPageCompressionLevelContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2040; + this.state = 2048; _la = this.tokenStream.LA(1); if(!(_la === 524 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -8329,17 +8335,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2042; + this.state = 2050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2041; + this.state = 2049; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2044; + this.state = 2052; this.decimalLiteral(); } break; @@ -8347,19 +8353,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEncryptionKeyIdContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2045; + this.state = 2053; this.match(MySqlParser.KW_ENCRYPTION_KEY_ID); - this.state = 2047; + this.state = 2055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2046; + this.state = 2054; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2049; + this.state = 2057; this.decimalLiteral(); } break; @@ -8367,21 +8373,21 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2050; + this.state = 2058; this.match(MySqlParser.KW_INDEX); - this.state = 2051; + this.state = 2059; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2053; + this.state = 2061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2052; + this.state = 2060; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2055; + this.state = 2063; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8389,19 +8395,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionInsertMethodContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2056; + this.state = 2064; this.match(MySqlParser.KW_INSERT_METHOD); - this.state = 2058; + this.state = 2066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2057; + this.state = 2065; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2060; + this.state = 2068; (localContext as TableOptionInsertMethodContext)._insertMethod = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 502)) { @@ -8417,19 +8423,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionKeyBlockSizeContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2061; + this.state = 2069; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 2063; + this.state = 2071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2062; + this.state = 2070; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2065; + this.state = 2073; this.fileSizeLiteral(); } break; @@ -8437,19 +8443,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2066; + this.state = 2074; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2068; + this.state = 2076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2067; + this.state = 2075; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2070; + this.state = 2078; this.decimalLiteral(); } break; @@ -8457,19 +8463,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2071; + this.state = 2079; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2073; + this.state = 2081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2072; + this.state = 2080; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2075; + this.state = 2083; this.decimalLiteral(); } break; @@ -8477,19 +8483,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPackKeysContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2076; + this.state = 2084; this.match(MySqlParser.KW_PACK_KEYS); - this.state = 2078; + this.state = 2086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2077; + this.state = 2085; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2080; + this.state = 2088; (localContext as TableOptionPackKeysContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8505,19 +8511,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPasswordContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2081; + this.state = 2089; this.match(MySqlParser.KW_PASSWORD); - this.state = 2083; + this.state = 2091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2082; + this.state = 2090; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2085; + this.state = 2093; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8525,19 +8531,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionRowFormatContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2086; + this.state = 2094; this.match(MySqlParser.KW_ROW_FORMAT); - this.state = 2088; + this.state = 2096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2087; + this.state = 2095; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2090; + this.state = 2098; (localContext as TableOptionRowFormatContext)._rowFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 342 || _la === 345 || _la === 374 || _la === 403 || _la === 554 || _la === 889)) { @@ -8553,9 +8559,9 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionStartTransactionContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2091; + this.state = 2099; this.match(MySqlParser.KW_START); - this.state = 2092; + this.state = 2100; this.match(MySqlParser.KW_TRANSACTION); } break; @@ -8563,19 +8569,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionSecondaryEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2093; + this.state = 2101; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 2095; + this.state = 2103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2094; + this.state = 2102; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2097; + this.state = 2105; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8583,19 +8589,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionRecalculationContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2098; + this.state = 2106; this.match(MySqlParser.KW_STATS_AUTO_RECALC); - this.state = 2100; + this.state = 2108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2099; + this.state = 2107; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2102; + this.state = 2110; (localContext as TableOptionRecalculationContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8611,19 +8617,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPersistentContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2103; + this.state = 2111; this.match(MySqlParser.KW_STATS_PERSISTENT); - this.state = 2105; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2104; + this.state = 2112; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2107; + this.state = 2115; (localContext as TableOptionPersistentContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8639,24 +8645,24 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionSamplePageContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2108; + this.state = 2116; this.match(MySqlParser.KW_STATS_SAMPLE_PAGES); - this.state = 2110; + this.state = 2118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2109; + this.state = 2117; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2114; + this.state = 2122; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 2112; + this.state = 2120; this.match(MySqlParser.KW_DEFAULT); } break; @@ -8667,7 +8673,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 2113; + this.state = 2121; this.decimalLiteral(); } break; @@ -8680,16 +8686,16 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2116; + this.state = 2124; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2117; + this.state = 2125; this.tableSpaceName(); - this.state = 2119; + this.state = 2127; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 2118; + this.state = 2126; this.tableSpaceStorage(); } break; @@ -8700,11 +8706,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableTypeContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2121; + this.state = 2129; this.match(MySqlParser.KW_TABLE_TYPE); - this.state = 2122; + this.state = 2130; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2123; + this.state = 2131; this.tableType(); } break; @@ -8712,7 +8718,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 2124; + this.state = 2132; this.tableSpaceStorage(); } break; @@ -8720,19 +8726,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTransactionalContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 2125; + this.state = 2133; this.match(MySqlParser.KW_TRANSACTIONAL); - this.state = 2127; + this.state = 2135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2126; + this.state = 2134; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2129; + this.state = 2137; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -8747,23 +8753,23 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionUnionContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 2130; + this.state = 2138; this.match(MySqlParser.KW_UNION); - this.state = 2132; + this.state = 2140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2131; + this.state = 2139; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2134; + this.state = 2142; this.match(MySqlParser.LR_BRACKET); - this.state = 2135; + this.state = 2143; this.tableNames(); - this.state = 2136; + this.state = 2144; this.match(MySqlParser.RR_BRACKET); } break; @@ -8790,7 +8796,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2140; + this.state = 2148; _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 506)) { this.errorHandler.recoverInline(this); @@ -8822,9 +8828,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2142; + this.state = 2150; this.match(MySqlParser.KW_STORAGE); - this.state = 2143; + this.state = 2151; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { this.errorHandler.recoverInline(this); @@ -8856,43 +8862,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2153; this.match(MySqlParser.KW_PARTITION); - this.state = 2146; + this.state = 2154; this.match(MySqlParser.KW_BY); - this.state = 2147; + this.state = 2155; this.partitionFunctionDefinition(); - this.state = 2150; + this.state = 2158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 528) { { - this.state = 2148; + this.state = 2156; this.match(MySqlParser.KW_PARTITIONS); - this.state = 2149; + this.state = 2157; localContext._count = this.decimalLiteral(); } } - this.state = 2159; + this.state = 2167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 652) { { - this.state = 2152; + this.state = 2160; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2153; + this.state = 2161; this.match(MySqlParser.KW_BY); - this.state = 2154; + this.state = 2162; this.subpartitionFunctionDefinition(); - this.state = 2157; + this.state = 2165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 653) { { - this.state = 2155; + this.state = 2163; this.match(MySqlParser.KW_SUBPARTITIONS); - this.state = 2156; + this.state = 2164; localContext._subCount = this.decimalLiteral(); } } @@ -8900,32 +8906,32 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2172; + this.state = 2180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 2161; + this.state = 2169; this.match(MySqlParser.LR_BRACKET); - this.state = 2162; + this.state = 2170; this.partitionDefinition(); - this.state = 2167; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2163; + this.state = 2171; this.match(MySqlParser.COMMA); - this.state = 2164; + this.state = 2172; this.partitionDefinition(); } } - this.state = 2169; + this.state = 2177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2170; + this.state = 2178; this.match(MySqlParser.RR_BRACKET); } break; @@ -8951,30 +8957,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 112, MySqlParser.RULE_partitionFunctionDefinition); let _la: number; try { - this.state = 2220; + this.state = 2228; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: localContext = new PartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2174; + this.state = 2182; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2177; + this.state = 2185; this.match(MySqlParser.KW_HASH); - this.state = 2178; + this.state = 2186; this.match(MySqlParser.LR_BRACKET); - this.state = 2179; + this.state = 2187; this.expression(0); - this.state = 2180; + this.state = 2188; this.match(MySqlParser.RR_BRACKET); } break; @@ -8982,28 +8988,28 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2183; + this.state = 2191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2182; + this.state = 2190; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2185; + this.state = 2193; this.match(MySqlParser.KW_KEY); - this.state = 2189; + this.state = 2197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2186; + this.state = 2194; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2187; + this.state = 2195; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2188; + this.state = 2196; (localContext as PartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -9016,19 +9022,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2191; + this.state = 2199; this.match(MySqlParser.LR_BRACKET); - this.state = 2193; + this.state = 2201; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2192; + this.state = 2200; this.columnNames(); } break; } - this.state = 2195; + this.state = 2203; this.match(MySqlParser.RR_BRACKET); } break; @@ -9036,30 +9042,30 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionRangeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2196; + this.state = 2204; this.match(MySqlParser.KW_RANGE); - this.state = 2206; + this.state = 2214; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2197; + this.state = 2205; this.match(MySqlParser.LR_BRACKET); - this.state = 2198; + this.state = 2206; this.expression(0); - this.state = 2199; + this.state = 2207; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2201; + this.state = 2209; this.match(MySqlParser.KW_COLUMNS); - this.state = 2202; + this.state = 2210; this.match(MySqlParser.LR_BRACKET); - this.state = 2203; + this.state = 2211; this.columnNames(); - this.state = 2204; + this.state = 2212; this.match(MySqlParser.RR_BRACKET); } break; @@ -9072,30 +9078,30 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2208; + this.state = 2216; this.match(MySqlParser.KW_LIST); - this.state = 2218; + this.state = 2226; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2209; + this.state = 2217; this.match(MySqlParser.LR_BRACKET); - this.state = 2210; + this.state = 2218; this.expression(0); - this.state = 2211; + this.state = 2219; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2213; + this.state = 2221; this.match(MySqlParser.KW_COLUMNS); - this.state = 2214; + this.state = 2222; this.match(MySqlParser.LR_BRACKET); - this.state = 2215; + this.state = 2223; this.columnNames(); - this.state = 2216; + this.state = 2224; this.match(MySqlParser.RR_BRACKET); } break; @@ -9125,30 +9131,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 114, MySqlParser.RULE_subpartitionFunctionDefinition); let _la: number; try { - this.state = 2243; + this.state = 2251; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: localContext = new SubPartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2222; + this.state = 2230; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2225; + this.state = 2233; this.match(MySqlParser.KW_HASH); - this.state = 2226; + this.state = 2234; this.match(MySqlParser.LR_BRACKET); - this.state = 2227; + this.state = 2235; this.expression(0); - this.state = 2228; + this.state = 2236; this.match(MySqlParser.RR_BRACKET); } break; @@ -9156,28 +9162,28 @@ export class MySqlParser extends SQLParserBase { localContext = new SubPartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2231; + this.state = 2239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2230; + this.state = 2238; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2233; + this.state = 2241; this.match(MySqlParser.KW_KEY); - this.state = 2237; + this.state = 2245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2234; + this.state = 2242; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2235; + this.state = 2243; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2236; + this.state = 2244; (localContext as SubPartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -9190,11 +9196,11 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2239; + this.state = 2247; this.match(MySqlParser.LR_BRACKET); - this.state = 2240; + this.state = 2248; this.columnNames(); - this.state = 2241; + this.state = 2249; this.match(MySqlParser.RR_BRACKET); } break; @@ -9219,85 +9225,85 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 116, MySqlParser.RULE_partitionDefinition); let _la: number; try { - this.state = 2391; + this.state = 2399; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2245; + this.state = 2253; this.match(MySqlParser.KW_PARTITION); - this.state = 2246; + this.state = 2254; this.partitionName(); - this.state = 2247; + this.state = 2255; this.match(MySqlParser.KW_VALUES); - this.state = 2248; + this.state = 2256; this.match(MySqlParser.KW_LESS); - this.state = 2249; + this.state = 2257; this.match(MySqlParser.KW_THAN); - this.state = 2250; + this.state = 2258; this.match(MySqlParser.LR_BRACKET); - this.state = 2251; + this.state = 2259; this.partitionDefinerAtom(); - this.state = 2256; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2252; + this.state = 2260; this.match(MySqlParser.COMMA); - this.state = 2253; + this.state = 2261; this.partitionDefinerAtom(); } } - this.state = 2258; + this.state = 2266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2259; + this.state = 2267; this.match(MySqlParser.RR_BRACKET); - this.state = 2263; + this.state = 2271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2260; + this.state = 2268; this.partitionOption(); } } - this.state = 2265; + this.state = 2273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2277; + this.state = 2285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2266; + this.state = 2274; this.match(MySqlParser.LR_BRACKET); - this.state = 2267; + this.state = 2275; this.subPartitionDefinition(); - this.state = 2272; + this.state = 2280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2268; + this.state = 2276; this.match(MySqlParser.COMMA); - this.state = 2269; + this.state = 2277; this.subPartitionDefinition(); } } - this.state = 2274; + this.state = 2282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2275; + this.state = 2283; this.match(MySqlParser.RR_BRACKET); } } @@ -9308,58 +9314,58 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2279; + this.state = 2287; this.match(MySqlParser.KW_PARTITION); - this.state = 2280; + this.state = 2288; this.partitionName(); - this.state = 2281; + this.state = 2289; this.match(MySqlParser.KW_VALUES); - this.state = 2282; + this.state = 2290; this.match(MySqlParser.KW_LESS); - this.state = 2283; + this.state = 2291; this.match(MySqlParser.KW_THAN); - this.state = 2284; + this.state = 2292; this.partitionDefinerAtom(); - this.state = 2288; + this.state = 2296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2285; + this.state = 2293; this.partitionOption(); } } - this.state = 2290; + this.state = 2298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2302; + this.state = 2310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2291; + this.state = 2299; this.match(MySqlParser.LR_BRACKET); - this.state = 2292; + this.state = 2300; this.subPartitionDefinition(); - this.state = 2297; + this.state = 2305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2293; + this.state = 2301; this.match(MySqlParser.COMMA); - this.state = 2294; + this.state = 2302; this.subPartitionDefinition(); } } - this.state = 2299; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2300; + this.state = 2308; this.match(MySqlParser.RR_BRACKET); } } @@ -9370,76 +9376,76 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionListAtomContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2304; + this.state = 2312; this.match(MySqlParser.KW_PARTITION); - this.state = 2305; + this.state = 2313; this.partitionName(); - this.state = 2306; + this.state = 2314; this.match(MySqlParser.KW_VALUES); - this.state = 2307; + this.state = 2315; this.match(MySqlParser.KW_IN); - this.state = 2308; + this.state = 2316; this.match(MySqlParser.LR_BRACKET); - this.state = 2309; + this.state = 2317; this.partitionDefinerAtom(); - this.state = 2314; + this.state = 2322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2310; + this.state = 2318; this.match(MySqlParser.COMMA); - this.state = 2311; + this.state = 2319; this.partitionDefinerAtom(); } } - this.state = 2316; + this.state = 2324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2317; + this.state = 2325; this.match(MySqlParser.RR_BRACKET); - this.state = 2321; + this.state = 2329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2318; + this.state = 2326; this.partitionOption(); } } - this.state = 2323; + this.state = 2331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2335; + this.state = 2343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2324; + this.state = 2332; this.match(MySqlParser.LR_BRACKET); - this.state = 2325; + this.state = 2333; this.subPartitionDefinition(); - this.state = 2330; + this.state = 2338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2326; + this.state = 2334; this.match(MySqlParser.COMMA); - this.state = 2327; + this.state = 2335; this.subPartitionDefinition(); } } - this.state = 2332; + this.state = 2340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2333; + this.state = 2341; this.match(MySqlParser.RR_BRACKET); } } @@ -9450,76 +9456,76 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionListVectorContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2337; + this.state = 2345; this.match(MySqlParser.KW_PARTITION); - this.state = 2338; + this.state = 2346; this.partitionName(); - this.state = 2339; + this.state = 2347; this.match(MySqlParser.KW_VALUES); - this.state = 2340; + this.state = 2348; this.match(MySqlParser.KW_IN); - this.state = 2341; + this.state = 2349; this.match(MySqlParser.LR_BRACKET); - this.state = 2342; + this.state = 2350; this.partitionDefinerVector(); - this.state = 2347; + this.state = 2355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2343; + this.state = 2351; this.match(MySqlParser.COMMA); - this.state = 2344; + this.state = 2352; this.partitionDefinerVector(); } } - this.state = 2349; + this.state = 2357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2350; + this.state = 2358; this.match(MySqlParser.RR_BRACKET); - this.state = 2354; + this.state = 2362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2351; + this.state = 2359; this.partitionOption(); } } - this.state = 2356; + this.state = 2364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2368; + this.state = 2376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2357; + this.state = 2365; this.match(MySqlParser.LR_BRACKET); - this.state = 2358; + this.state = 2366; this.subPartitionDefinition(); - this.state = 2363; + this.state = 2371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2359; + this.state = 2367; this.match(MySqlParser.COMMA); - this.state = 2360; + this.state = 2368; this.subPartitionDefinition(); } } - this.state = 2365; + this.state = 2373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2366; + this.state = 2374; this.match(MySqlParser.RR_BRACKET); } } @@ -9530,50 +9536,50 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionSimpleContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2370; + this.state = 2378; this.match(MySqlParser.KW_PARTITION); - this.state = 2371; + this.state = 2379; this.partitionName(); - this.state = 2375; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2372; + this.state = 2380; this.partitionOption(); } } - this.state = 2377; + this.state = 2385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2389; + this.state = 2397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2378; + this.state = 2386; this.match(MySqlParser.LR_BRACKET); - this.state = 2379; + this.state = 2387; this.subPartitionDefinition(); - this.state = 2384; + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2380; + this.state = 2388; this.match(MySqlParser.COMMA); - this.state = 2381; + this.state = 2389; this.subPartitionDefinition(); } } - this.state = 2386; + this.state = 2394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2387; + this.state = 2395; this.match(MySqlParser.RR_BRACKET); } } @@ -9600,27 +9606,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new PartitionDefinerAtomContext(this.context, this.state); this.enterRule(localContext, 118, MySqlParser.RULE_partitionDefinerAtom); try { - this.state = 2396; + this.state = 2404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2393; + this.state = 2401; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2394; + this.state = 2402; this.expression(0); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2395; + this.state = 2403; this.match(MySqlParser.KW_MAXVALUE); } break; @@ -9647,27 +9653,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2398; + this.state = 2406; this.match(MySqlParser.LR_BRACKET); - this.state = 2399; + this.state = 2407; this.partitionDefinerAtom(); - this.state = 2402; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2400; + this.state = 2408; this.match(MySqlParser.COMMA); - this.state = 2401; + this.state = 2409; this.partitionDefinerAtom(); } } - this.state = 2404; + this.state = 2412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 2406; + this.state = 2414; this.match(MySqlParser.RR_BRACKET); } } @@ -9692,21 +9698,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2408; + this.state = 2416; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2409; + this.state = 2417; localContext._logicalName = this.uid(); - this.state = 2413; + this.state = 2421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2410; + this.state = 2418; this.partitionOption(); } } - this.state = 2415; + this.state = 2423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9731,7 +9737,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 124, MySqlParser.RULE_partitionOption); let _la: number; try { - this.state = 2464; + this.state = 2472; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: @@ -9740,39 +9746,39 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2417; + this.state = 2425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2416; + this.state = 2424; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2420; + this.state = 2428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 2419; + this.state = 2427; this.match(MySqlParser.KW_STORAGE); } } - this.state = 2422; + this.state = 2430; this.match(MySqlParser.KW_ENGINE); - this.state = 2424; + this.state = 2432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2423; + this.state = 2431; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2426; + this.state = 2434; this.engineName(); } break; @@ -9780,19 +9786,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionCommentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2427; + this.state = 2435; this.match(MySqlParser.KW_COMMENT); - this.state = 2429; + this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2428; + this.state = 2436; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2431; + this.state = 2439; (localContext as PartitionOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9800,21 +9806,21 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2432; + this.state = 2440; this.match(MySqlParser.KW_DATA); - this.state = 2433; + this.state = 2441; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2435; + this.state = 2443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2434; + this.state = 2442; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2437; + this.state = 2445; (localContext as PartitionOptionDataDirectoryContext)._dataDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9822,21 +9828,21 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2438; + this.state = 2446; this.match(MySqlParser.KW_INDEX); - this.state = 2439; + this.state = 2447; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2441; + this.state = 2449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2440; + this.state = 2448; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2443; + this.state = 2451; (localContext as PartitionOptionIndexDirectoryContext)._indexDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9844,19 +9850,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2444; + this.state = 2452; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2446; + this.state = 2454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2445; + this.state = 2453; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2448; + this.state = 2456; (localContext as PartitionOptionMaxRowsContext)._maxRows = this.decimalLiteral(); } break; @@ -9864,19 +9870,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2449; + this.state = 2457; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2451; + this.state = 2459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2450; + this.state = 2458; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2453; + this.state = 2461; (localContext as PartitionOptionMinRowsContext)._minRows = this.decimalLiteral(); } break; @@ -9884,19 +9890,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2454; + this.state = 2462; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2456; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2455; + this.state = 2463; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2458; + this.state = 2466; this.tableSpaceName(); } break; @@ -9904,19 +9910,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionNodeGroupContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2459; + this.state = 2467; this.match(MySqlParser.KW_NODEGROUP); - this.state = 2461; + this.state = 2469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2460; + this.state = 2468; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2463; + this.state = 2471; (localContext as PartitionOptionNodeGroupContext)._nodeGroup = this.uid(); } break; @@ -9943,16 +9949,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 126, MySqlParser.RULE_alterDatabase); let _la: number; try { - this.state = 2484; + this.state = 2492; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: localContext = new AlterSimpleDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2466; + this.state = 2474; this.match(MySqlParser.KW_ALTER); - this.state = 2467; + this.state = 2475; (localContext as AlterSimpleDatabaseContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9962,27 +9968,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2469; + this.state = 2477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2468; + this.state = 2476; this.databaseName(); } break; } - this.state = 2472; + this.state = 2480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2471; + this.state = 2479; this.createDatabaseOption(); } } - this.state = 2474; + this.state = 2482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823); @@ -9992,9 +9998,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterUpgradeNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2476; + this.state = 2484; this.match(MySqlParser.KW_ALTER); - this.state = 2477; + this.state = 2485; (localContext as AlterUpgradeNameContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -10004,15 +10010,15 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2478; + this.state = 2486; this.databaseName(); - this.state = 2479; + this.state = 2487; this.match(MySqlParser.KW_UPGRADE); - this.state = 2480; + this.state = 2488; this.match(MySqlParser.KW_DATA); - this.state = 2481; + this.state = 2489; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2482; + this.state = 2490; this.match(MySqlParser.KW_NAME); } break; @@ -10039,104 +10045,104 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2486; + this.state = 2494; this.match(MySqlParser.KW_ALTER); - this.state = 2488; + this.state = 2496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2487; + this.state = 2495; this.ownerStatement(); } } - this.state = 2490; + this.state = 2498; this.match(MySqlParser.KW_EVENT); - this.state = 2491; + this.state = 2499; localContext._event_name = this.fullId(); - this.state = 2495; + this.state = 2503; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2492; + this.state = 2500; this.match(MySqlParser.KW_ON); - this.state = 2493; + this.state = 2501; this.match(MySqlParser.KW_SCHEDULE); - this.state = 2494; + this.state = 2502; this.scheduleExpression(); } break; } - this.state = 2503; + this.state = 2511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2497; + this.state = 2505; this.match(MySqlParser.KW_ON); - this.state = 2498; + this.state = 2506; this.match(MySqlParser.KW_COMPLETION); - this.state = 2500; + this.state = 2508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2499; + this.state = 2507; this.match(MySqlParser.KW_NOT); } } - this.state = 2502; + this.state = 2510; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 2508; + this.state = 2516; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 2505; + this.state = 2513; this.match(MySqlParser.KW_RENAME); - this.state = 2506; + this.state = 2514; this.match(MySqlParser.KW_TO); - this.state = 2507; + this.state = 2515; localContext._new_event_name = this.fullId(); } break; } - this.state = 2511; + this.state = 2519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 2510; + this.state = 2518; this.enableType(); } } - this.state = 2515; + this.state = 2523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 2513; + this.state = 2521; this.match(MySqlParser.KW_COMMENT); - this.state = 2514; + this.state = 2522; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2519; + this.state = 2527; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2517; + this.state = 2525; this.match(MySqlParser.KW_DO); - this.state = 2518; + this.state = 2526; this.routineBody(); } break; @@ -10164,23 +10170,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2521; + this.state = 2529; this.match(MySqlParser.KW_ALTER); - this.state = 2522; + this.state = 2530; this.match(MySqlParser.KW_FUNCTION); - this.state = 2523; + this.state = 2531; this.functionName(); - this.state = 2527; + this.state = 2535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2524; + this.state = 2532; this.routineOption(); } } - this.state = 2529; + this.state = 2537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10206,17 +10212,17 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2530; + this.state = 2538; this.match(MySqlParser.KW_ALTER); - this.state = 2531; + this.state = 2539; this.match(MySqlParser.KW_INSTANCE); - this.state = 2532; + this.state = 2540; this.match(MySqlParser.KW_ROTATE); - this.state = 2533; + this.state = 2541; this.match(MySqlParser.KW_INNODB); - this.state = 2534; + this.state = 2542; this.match(MySqlParser.KW_MASTER); - this.state = 2535; + this.state = 2543; this.match(MySqlParser.KW_KEY); } } @@ -10241,65 +10247,65 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2537; + this.state = 2545; this.match(MySqlParser.KW_ALTER); - this.state = 2538; + this.state = 2546; this.match(MySqlParser.KW_LOGFILE); - this.state = 2539; + this.state = 2547; this.match(MySqlParser.KW_GROUP); - this.state = 2540; + this.state = 2548; localContext._logFileGroupName = this.uid(); - this.state = 2541; + this.state = 2549; this.match(MySqlParser.KW_ADD); - this.state = 2542; + this.state = 2550; this.match(MySqlParser.KW_UNDOFILE); - this.state = 2543; + this.state = 2551; this.match(MySqlParser.STRING_LITERAL); - this.state = 2549; + this.state = 2557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2544; + this.state = 2552; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2546; + this.state = 2554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2545; + this.state = 2553; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2548; + this.state = 2556; this.fileSizeLiteral(); } } - this.state = 2552; + this.state = 2560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2551; + this.state = 2559; this.match(MySqlParser.KW_WAIT); } } - this.state = 2554; + this.state = 2562; this.match(MySqlParser.KW_ENGINE); - this.state = 2556; + this.state = 2564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2555; + this.state = 2563; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2558; + this.state = 2566; this.engineName(); } } @@ -10324,23 +10330,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2560; + this.state = 2568; this.match(MySqlParser.KW_ALTER); - this.state = 2561; + this.state = 2569; this.match(MySqlParser.KW_PROCEDURE); - this.state = 2562; + this.state = 2570; localContext._proc_name = this.fullId(); - this.state = 2566; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2563; + this.state = 2571; this.routineOption(); } } - this.state = 2568; + this.state = 2576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10367,35 +10373,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2569; + this.state = 2577; this.match(MySqlParser.KW_ALTER); - this.state = 2570; + this.state = 2578; this.match(MySqlParser.KW_SERVER); - this.state = 2571; + this.state = 2579; localContext._serverName = this.uid(); - this.state = 2572; + this.state = 2580; this.match(MySqlParser.KW_OPTIONS); - this.state = 2573; + this.state = 2581; this.match(MySqlParser.LR_BRACKET); - this.state = 2574; + this.state = 2582; this.serverOption(); - this.state = 2579; + this.state = 2587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2575; + this.state = 2583; this.match(MySqlParser.COMMA); - this.state = 2576; + this.state = 2584; this.serverOption(); } } - this.state = 2581; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2582; + this.state = 2590; this.match(MySqlParser.RR_BRACKET); } } @@ -10421,58 +10427,58 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2584; + this.state = 2592; this.match(MySqlParser.KW_ALTER); - this.state = 2585; + this.state = 2593; this.match(MySqlParser.KW_TABLE); - this.state = 2586; + this.state = 2594; this.tableName(); - this.state = 2595; + this.state = 2603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2587; + this.state = 2595; this.alterOption(); - this.state = 2592; + this.state = 2600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2588; + this.state = 2596; this.match(MySqlParser.COMMA); - this.state = 2589; + this.state = 2597; this.alterOption(); } } - this.state = 2594; + this.state = 2602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2604; + this.state = 2612; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { - this.state = 2597; + this.state = 2605; this.alterPartitionSpecification(); - this.state = 2601; + this.state = 2609; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2598; + this.state = 2606; this.alterPartitionSpecification(); } } } - this.state = 2603; + this.state = 2611; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); } @@ -10502,23 +10508,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2606; + this.state = 2614; this.match(MySqlParser.KW_ALTER); - this.state = 2608; + this.state = 2616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 2607; + this.state = 2615; this.match(MySqlParser.KW_UNDO); } } - this.state = 2610; + this.state = 2618; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2611; + this.state = 2619; this.tableSpaceName(); - this.state = 2612; + this.state = 2620; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51)) { this.errorHandler.recoverInline(this); @@ -10527,86 +10533,86 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2613; + this.state = 2621; this.match(MySqlParser.KW_DATAFILE); - this.state = 2614; + this.state = 2622; this.match(MySqlParser.STRING_LITERAL); - this.state = 2620; + this.state = 2628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2615; + this.state = 2623; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2617; + this.state = 2625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2616; + this.state = 2624; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2619; + this.state = 2627; this.fileSizeLiteral(); } } - this.state = 2623; + this.state = 2631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2622; + this.state = 2630; this.match(MySqlParser.KW_WAIT); } } - this.state = 2628; + this.state = 2636; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2625; + this.state = 2633; this.match(MySqlParser.KW_RENAME); - this.state = 2626; + this.state = 2634; this.match(MySqlParser.KW_TO); - this.state = 2627; + this.state = 2635; this.tableSpaceNameCreate(); } break; } - this.state = 2635; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2630; + this.state = 2638; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 2632; + this.state = 2640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2631; + this.state = 2639; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2634; + this.state = 2642; this.fileSizeLiteral(); } } - this.state = 2639; + this.state = 2647; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2637; + this.state = 2645; this.match(MySqlParser.KW_SET); - this.state = 2638; + this.state = 2646; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 81)) { this.errorHandler.recoverInline(this); @@ -10618,68 +10624,68 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 2646; + this.state = 2654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 376) { { - this.state = 2641; + this.state = 2649; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2643; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2642; + this.state = 2650; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2645; + this.state = 2653; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2653; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 2648; + this.state = 2656; this.match(MySqlParser.KW_ENGINE); - this.state = 2650; + this.state = 2658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2649; + this.state = 2657; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2652; + this.state = 2660; this.engineName(); } } - this.state = 2660; + this.state = 2668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 2655; + this.state = 2663; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 2657; + this.state = 2665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2656; + this.state = 2664; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2659; + this.state = 2667; this.match(MySqlParser.STRING_LITERAL); } } @@ -10707,18 +10713,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2662; + this.state = 2670; this.match(MySqlParser.KW_ALTER); - this.state = 2666; + this.state = 2674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2663; + this.state = 2671; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2664; + this.state = 2672; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2665; + this.state = 2673; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -10731,26 +10737,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2669; + this.state = 2677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2668; + this.state = 2676; this.ownerStatement(); } } - this.state = 2674; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 2671; + this.state = 2679; this.match(MySqlParser.KW_SQL); - this.state = 2672; + this.state = 2680; this.match(MySqlParser.KW_SECURITY); - this.state = 2673; + this.state = 2681; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -10763,41 +10769,41 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2676; + this.state = 2684; this.match(MySqlParser.KW_VIEW); - this.state = 2677; + this.state = 2685; this.viewName(); - this.state = 2682; + this.state = 2690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2678; + this.state = 2686; this.match(MySqlParser.LR_BRACKET); - this.state = 2679; + this.state = 2687; this.columnNames(); - this.state = 2680; + this.state = 2688; this.match(MySqlParser.RR_BRACKET); } } - this.state = 2684; + this.state = 2692; this.match(MySqlParser.KW_AS); - this.state = 2685; + this.state = 2693; this.selectStatement(); - this.state = 2692; + this.state = 2700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2686; + this.state = 2694; this.match(MySqlParser.KW_WITH); - this.state = 2688; + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 2687; + this.state = 2695; localContext._checkOpt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -10810,9 +10816,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2690; + this.state = 2698; this.match(MySqlParser.KW_CHECK); - this.state = 2691; + this.state = 2699; this.match(MySqlParser.KW_OPTION); } break; @@ -10839,38 +10845,38 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2958; + this.state = 2966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: localContext = new AlterByTableOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2694; + this.state = 2702; this.tableOption(); - this.state = 2701; + this.state = 2709; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2696; + this.state = 2704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 2695; + this.state = 2703; this.match(MySqlParser.COMMA); } } - this.state = 2698; + this.state = 2706; this.tableOption(); } } } - this.state = 2703; + this.state = 2711; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); } @@ -10880,36 +10886,36 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2704; + this.state = 2712; this.match(MySqlParser.KW_ADD); - this.state = 2706; + this.state = 2714; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 2705; + this.state = 2713; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2708; + this.state = 2716; this.columnName(); - this.state = 2709; + this.state = 2717; this.columnDefinition(); - this.state = 2713; + this.state = 2721; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2710; + this.state = 2718; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2711; + this.state = 2719; this.match(MySqlParser.KW_AFTER); - this.state = 2712; + this.state = 2720; this.columnName(); } break; @@ -10995,43 +11001,43 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddColumnsContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2715; + this.state = 2723; this.match(MySqlParser.KW_ADD); - this.state = 2717; + this.state = 2725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 29) { { - this.state = 2716; + this.state = 2724; this.match(MySqlParser.KW_COLUMN); } } - this.state = 2719; + this.state = 2727; this.match(MySqlParser.LR_BRACKET); - this.state = 2720; + this.state = 2728; this.columnName(); - this.state = 2721; + this.state = 2729; this.columnDefinition(); - this.state = 2728; + this.state = 2736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2722; + this.state = 2730; this.match(MySqlParser.COMMA); - this.state = 2723; + this.state = 2731; this.columnName(); - this.state = 2724; + this.state = 2732; this.columnDefinition(); } } - this.state = 2730; + this.state = 2738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2731; + this.state = 2739; this.match(MySqlParser.RR_BRACKET); } break; @@ -11039,9 +11045,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddIndexContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2733; + this.state = 2741; this.match(MySqlParser.KW_ADD); - this.state = 2734; + this.state = 2742; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11050,41 +11056,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2736; + this.state = 2744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2735; + this.state = 2743; this.indexName(); } } - this.state = 2739; + this.state = 2747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2738; + this.state = 2746; this.indexType(); } } - this.state = 2741; + this.state = 2749; this.indexColumnNames(); - this.state = 2745; + this.state = 2753; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2742; + this.state = 2750; this.indexOption(); } } } - this.state = 2747; + this.state = 2755; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } @@ -11094,9 +11100,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddSpecialIndexContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2748; + this.state = 2756; this.match(MySqlParser.KW_ADD); - this.state = 2749; + this.state = 2757; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -11105,12 +11111,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2751; + this.state = 2759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2750; + this.state = 2758; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11122,31 +11128,31 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2754; + this.state = 2762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2753; + this.state = 2761; this.indexName(); } } - this.state = 2756; + this.state = 2764; this.indexColumnNames(); - this.state = 2760; + this.state = 2768; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2757; + this.state = 2765; this.indexOption(); } } } - this.state = 2762; + this.state = 2770; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); } @@ -11156,21 +11162,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2763; + this.state = 2771; this.match(MySqlParser.KW_ADD); - this.state = 2768; + this.state = 2776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2764; + this.state = 2772; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2766; + this.state = 2774; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2765; + this.state = 2773; (localContext as AlterByAddPrimaryKeyContext)._symbol_ = this.uid(); } break; @@ -11178,35 +11184,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2770; + this.state = 2778; this.match(MySqlParser.KW_PRIMARY); - this.state = 2771; + this.state = 2779; this.match(MySqlParser.KW_KEY); - this.state = 2773; + this.state = 2781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2772; + this.state = 2780; this.indexType(); } } - this.state = 2775; + this.state = 2783; this.indexColumnNames(); - this.state = 2779; + this.state = 2787; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2776; + this.state = 2784; this.indexOption(); } } } - this.state = 2781; + this.state = 2789; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); } @@ -11216,21 +11222,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddUniqueKeyContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2782; + this.state = 2790; this.match(MySqlParser.KW_ADD); - this.state = 2787; + this.state = 2795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2783; + this.state = 2791; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2785; + this.state = 2793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2784; + this.state = 2792; (localContext as AlterByAddUniqueKeyContext)._symbol_ = this.uid(); } } @@ -11238,14 +11244,14 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2789; + this.state = 2797; this.match(MySqlParser.KW_UNIQUE); - this.state = 2791; + this.state = 2799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2790; + this.state = 2798; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11257,41 +11263,41 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2794; + this.state = 2802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2793; + this.state = 2801; this.indexName(); } } - this.state = 2797; + this.state = 2805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2796; + this.state = 2804; this.indexType(); } } - this.state = 2799; + this.state = 2807; this.indexColumnNames(); - this.state = 2803; + this.state = 2811; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 336, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2800; + this.state = 2808; this.indexOption(); } } } - this.state = 2805; + this.state = 2813; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 336, this.context); } @@ -11301,21 +11307,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddForeignKeyContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2806; + this.state = 2814; this.match(MySqlParser.KW_ADD); - this.state = 2811; + this.state = 2819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2807; + this.state = 2815; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2809; + this.state = 2817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2808; + this.state = 2816; (localContext as AlterByAddForeignKeyContext)._symbol_ = this.uid(); } } @@ -11323,23 +11329,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2813; + this.state = 2821; this.match(MySqlParser.KW_FOREIGN); - this.state = 2814; + this.state = 2822; this.match(MySqlParser.KW_KEY); - this.state = 2816; + this.state = 2824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2815; + this.state = 2823; this.indexName(); } } - this.state = 2818; + this.state = 2826; this.indexColumnNames(); - this.state = 2819; + this.state = 2827; this.referenceDefinition(); } break; @@ -11347,14 +11353,14 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2821; + this.state = 2829; this.match(MySqlParser.KW_ADD); - this.state = 2823; + this.state = 2831; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: { - this.state = 2822; + this.state = 2830; this.checkConstraintDefinition(); } break; @@ -11365,9 +11371,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropConstraintCheckContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2825; + this.state = 2833; this.match(MySqlParser.KW_DROP); - this.state = 2826; + this.state = 2834; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -11376,7 +11382,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2827; + this.state = 2835; (localContext as AlterByDropConstraintCheckContext)._symbol_ = this.uid(); } break; @@ -11384,9 +11390,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2828; + this.state = 2836; this.match(MySqlParser.KW_ALTER); - this.state = 2829; + this.state = 2837; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -11395,24 +11401,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2830; + this.state = 2838; (localContext as AlterByAlterCheckTableConstraintContext)._symbol_ = this.uid(); - this.state = 2832; + this.state = 2840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2831; + this.state = 2839; this.match(MySqlParser.KW_NOT); } } - this.state = 2835; + this.state = 2843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 2834; + this.state = 2842; this.match(MySqlParser.KW_ENFORCED); } } @@ -11423,19 +11429,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterBySetAlgorithmContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2837; + this.state = 2845; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2839; + this.state = 2847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2838; + this.state = 2846; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2841; + this.state = 2849; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430 || _la === 434)) { this.errorHandler.recoverInline(this); @@ -11450,38 +11456,38 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterColumnDefaultContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2842; + this.state = 2850; this.match(MySqlParser.KW_ALTER); - this.state = 2844; + this.state = 2852; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2843; + this.state = 2851; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2846; - this.columnName(); this.state = 2854; + this.columnName(); + this.state = 2862; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2847; + this.state = 2855; this.match(MySqlParser.KW_SET); - this.state = 2848; + this.state = 2856; this.match(MySqlParser.KW_DEFAULT); - this.state = 2849; + this.state = 2857; this.defaultValue(); } break; case 2: { - this.state = 2850; + this.state = 2858; this.match(MySqlParser.KW_SET); - this.state = 2851; + this.state = 2859; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -11494,9 +11500,9 @@ export class MySqlParser extends SQLParserBase { break; case 3: { - this.state = 2852; + this.state = 2860; this.match(MySqlParser.KW_DROP); - this.state = 2853; + this.state = 2861; this.match(MySqlParser.KW_DEFAULT); } break; @@ -11507,13 +11513,13 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterIndexVisibilityContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2856; + this.state = 2864; this.match(MySqlParser.KW_ALTER); - this.state = 2857; + this.state = 2865; this.match(MySqlParser.KW_INDEX); - this.state = 2858; + this.state = 2866; this.indexName(); - this.state = 2859; + this.state = 2867; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -11528,38 +11534,38 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByChangeColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2861; + this.state = 2869; this.match(MySqlParser.KW_CHANGE); - this.state = 2863; + this.state = 2871; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2862; + this.state = 2870; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2865; + this.state = 2873; (localContext as AlterByChangeColumnContext)._oldColumn = this.columnName(); - this.state = 2866; + this.state = 2874; (localContext as AlterByChangeColumnContext)._newColumn = this.columnNameCreate(); - this.state = 2867; + this.state = 2875; this.columnDefinition(); - this.state = 2871; + this.state = 2879; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2868; + this.state = 2876; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2869; + this.state = 2877; this.match(MySqlParser.KW_AFTER); - this.state = 2870; + this.state = 2878; this.columnName(); } break; @@ -11645,42 +11651,42 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDefaultCharsetContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2874; + this.state = 2882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2873; + this.state = 2881; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2876; + this.state = 2884; this.match(MySqlParser.KW_CHARACTER); - this.state = 2877; + this.state = 2885; this.match(MySqlParser.KW_SET); - this.state = 2878; + this.state = 2886; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2879; + this.state = 2887; this.charsetName(); - this.state = 2885; + this.state = 2893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2880; + this.state = 2888; this.match(MySqlParser.KW_COLLATE); - this.state = 2882; + this.state = 2890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2881; + this.state = 2889; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2884; + this.state = 2892; this.collationName(); } } @@ -11691,40 +11697,40 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByConvertCharsetContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2887; + this.state = 2895; this.match(MySqlParser.KW_CONVERT); - this.state = 2888; + this.state = 2896; this.match(MySqlParser.KW_TO); - this.state = 2892; + this.state = 2900; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARSET: { - this.state = 2889; + this.state = 2897; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHARACTER: { - this.state = 2890; + this.state = 2898; this.match(MySqlParser.KW_CHARACTER); - this.state = 2891; + this.state = 2899; this.match(MySqlParser.KW_SET); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2894; + this.state = 2902; this.charsetName(); - this.state = 2897; + this.state = 2905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2895; + this.state = 2903; this.match(MySqlParser.KW_COLLATE); - this.state = 2896; + this.state = 2904; this.collationName(); } } @@ -11735,7 +11741,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterKeysContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2899; + this.state = 2907; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -11744,7 +11750,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2900; + this.state = 2908; this.match(MySqlParser.KW_KEYS); } break; @@ -11752,7 +11758,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterTableSpaceOptionContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2901; + this.state = 2909; _la = this.tokenStream.LA(1); if(!(_la === 369 || _la === 425)) { this.errorHandler.recoverInline(this); @@ -11761,7 +11767,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2902; + this.state = 2910; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -11769,19 +11775,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2903; + this.state = 2911; this.match(MySqlParser.KW_DROP); - this.state = 2905; + this.state = 2913; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2904; + this.state = 2912; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2907; + this.state = 2915; this.columnName(); } break; @@ -11789,9 +11795,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropIndexContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2908; + this.state = 2916; this.match(MySqlParser.KW_DROP); - this.state = 2909; + this.state = 2917; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11800,7 +11806,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2910; + this.state = 2918; this.indexName(); } break; @@ -11808,11 +11814,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2911; + this.state = 2919; this.match(MySqlParser.KW_DROP); - this.state = 2912; + this.state = 2920; this.match(MySqlParser.KW_PRIMARY); - this.state = 2913; + this.state = 2921; this.match(MySqlParser.KW_KEY); } break; @@ -11820,13 +11826,13 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropForeignKeyContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2914; + this.state = 2922; this.match(MySqlParser.KW_DROP); - this.state = 2915; + this.state = 2923; this.match(MySqlParser.KW_FOREIGN); - this.state = 2916; + this.state = 2924; this.match(MySqlParser.KW_KEY); - this.state = 2917; + this.state = 2925; (localContext as AlterByDropForeignKeyContext)._fk_symbol = this.uid(); } break; @@ -11834,7 +11840,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByForceContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2918; + this.state = 2926; this.match(MySqlParser.KW_FORCE); } break; @@ -11842,19 +11848,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByLockContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2919; + this.state = 2927; this.match(MySqlParser.KW_LOCK); - this.state = 2921; + this.state = 2929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2920; + this.state = 2928; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2923; + this.state = 2931; (localContext as AlterByLockContext)._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -11870,36 +11876,36 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByModifyColumnContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2924; + this.state = 2932; this.match(MySqlParser.KW_MODIFY); - this.state = 2926; + this.state = 2934; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2925; + this.state = 2933; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2928; + this.state = 2936; this.columnName(); - this.state = 2929; + this.state = 2937; this.columnDefinition(); - this.state = 2933; + this.state = 2941; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2930; + this.state = 2938; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2931; + this.state = 2939; this.match(MySqlParser.KW_AFTER); - this.state = 2932; + this.state = 2940; this.columnName(); } break; @@ -11985,11 +11991,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByOrderContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2935; + this.state = 2943; this.match(MySqlParser.KW_ORDER); - this.state = 2936; + this.state = 2944; this.match(MySqlParser.KW_BY); - this.state = 2937; + this.state = 2945; this.columnNames(); } break; @@ -11997,15 +12003,15 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameColumnContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2938; + this.state = 2946; this.match(MySqlParser.KW_RENAME); - this.state = 2939; + this.state = 2947; this.match(MySqlParser.KW_COLUMN); - this.state = 2940; + this.state = 2948; (localContext as AlterByRenameColumnContext)._oldColumn = this.columnName(); - this.state = 2941; + this.state = 2949; this.match(MySqlParser.KW_TO); - this.state = 2942; + this.state = 2950; (localContext as AlterByRenameColumnContext)._newColumn = this.columnNameCreate(); } break; @@ -12013,9 +12019,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameIndexContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2944; + this.state = 2952; this.match(MySqlParser.KW_RENAME); - this.state = 2945; + this.state = 2953; (localContext as AlterByRenameIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -12025,11 +12031,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2946; + this.state = 2954; this.indexName(); - this.state = 2947; + this.state = 2955; this.match(MySqlParser.KW_TO); - this.state = 2948; + this.state = 2956; this.indexNameCreate(); } break; @@ -12037,14 +12043,14 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2950; + this.state = 2958; this.match(MySqlParser.KW_RENAME); - this.state = 2952; + this.state = 2960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 176) { { - this.state = 2951; + this.state = 2959; (localContext as AlterByRenameContext)._renameFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 176)) { @@ -12057,7 +12063,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2954; + this.state = 2962; this.tableNameCreate(); } break; @@ -12065,7 +12071,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByValidateContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2955; + this.state = 2963; _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { this.errorHandler.recoverInline(this); @@ -12074,7 +12080,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2956; + this.state = 2964; this.match(MySqlParser.KW_VALIDATION); } break; @@ -12082,7 +12088,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterPartitionContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2957; + this.state = 2965; this.alterPartitionSpecification(); } break; @@ -12107,38 +12113,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 148, MySqlParser.RULE_alterPartitionSpecification); let _la: number; try { - this.state = 3058; + this.state = 3066; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ADD: localContext = new AlterByAddPartitionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2960; + this.state = 2968; this.match(MySqlParser.KW_ADD); - this.state = 2961; + this.state = 2969; this.match(MySqlParser.KW_PARTITION); - this.state = 2962; + this.state = 2970; this.match(MySqlParser.LR_BRACKET); - this.state = 2963; + this.state = 2971; this.partitionDefinition(); - this.state = 2968; + this.state = 2976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2964; + this.state = 2972; this.match(MySqlParser.COMMA); - this.state = 2965; + this.state = 2973; this.partitionDefinition(); } } - this.state = 2970; + this.state = 2978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2971; + this.state = 2979; this.match(MySqlParser.RR_BRACKET); } break; @@ -12146,11 +12152,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropPartitionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2973; + this.state = 2981; this.match(MySqlParser.KW_DROP); - this.state = 2974; + this.state = 2982; this.match(MySqlParser.KW_PARTITION); - this.state = 2975; + this.state = 2983; this.partitionNames(); } break; @@ -12158,11 +12164,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDiscardPartitionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2976; + this.state = 2984; this.match(MySqlParser.KW_DISCARD); - this.state = 2977; + this.state = 2985; this.match(MySqlParser.KW_PARTITION); - this.state = 2980; + this.state = 2988; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -12715,20 +12721,20 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2978; + this.state = 2986; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2979; + this.state = 2987; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2982; + this.state = 2990; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -12736,11 +12742,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByImportPartitionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2983; + this.state = 2991; this.match(MySqlParser.KW_IMPORT); - this.state = 2984; + this.state = 2992; this.match(MySqlParser.KW_PARTITION); - this.state = 2987; + this.state = 2995; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13293,20 +13299,20 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2985; + this.state = 2993; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2986; + this.state = 2994; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2989; + this.state = 2997; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -13314,11 +13320,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByTruncatePartitionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2990; + this.state = 2998; this.match(MySqlParser.KW_TRUNCATE); - this.state = 2991; + this.state = 2999; this.match(MySqlParser.KW_PARTITION); - this.state = 2994; + this.state = 3002; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13871,13 +13877,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2992; + this.state = 3000; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2993; + this.state = 3001; this.match(MySqlParser.KW_ALL); } break; @@ -13890,11 +13896,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByCoalescePartitionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2996; + this.state = 3004; this.match(MySqlParser.KW_COALESCE); - this.state = 2997; + this.state = 3005; this.match(MySqlParser.KW_PARTITION); - this.state = 2998; + this.state = 3006; this.decimalLiteral(); } break; @@ -13902,35 +13908,35 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByReorganizePartitionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2999; + this.state = 3007; this.match(MySqlParser.KW_REORGANIZE); - this.state = 3000; + this.state = 3008; this.match(MySqlParser.KW_PARTITION); - this.state = 3001; + this.state = 3009; this.partitionNames(); - this.state = 3002; + this.state = 3010; this.match(MySqlParser.KW_INTO); - this.state = 3003; + this.state = 3011; this.match(MySqlParser.LR_BRACKET); - this.state = 3004; + this.state = 3012; this.partitionDefinition(); - this.state = 3009; + this.state = 3017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3005; + this.state = 3013; this.match(MySqlParser.COMMA); - this.state = 3006; + this.state = 3014; this.partitionDefinition(); } } - this.state = 3011; + this.state = 3019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3012; + this.state = 3020; this.match(MySqlParser.RR_BRACKET); } break; @@ -13938,24 +13944,24 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByExchangePartitionContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3014; + this.state = 3022; this.match(MySqlParser.KW_EXCHANGE); - this.state = 3015; + this.state = 3023; this.match(MySqlParser.KW_PARTITION); - this.state = 3016; + this.state = 3024; this.partitionName(); - this.state = 3017; + this.state = 3025; this.match(MySqlParser.KW_WITH); - this.state = 3018; + this.state = 3026; this.match(MySqlParser.KW_TABLE); - this.state = 3019; + this.state = 3027; this.tableName(); - this.state = 3022; + this.state = 3030; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: { - this.state = 3020; + this.state = 3028; (localContext as AlterByExchangePartitionContext)._validationFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { @@ -13965,7 +13971,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3021; + this.state = 3029; this.match(MySqlParser.KW_VALIDATION); } break; @@ -13976,11 +13982,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAnalyzePartitionContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3024; + this.state = 3032; this.match(MySqlParser.KW_ANALYZE); - this.state = 3025; + this.state = 3033; this.match(MySqlParser.KW_PARTITION); - this.state = 3028; + this.state = 3036; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -14533,13 +14539,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3026; + this.state = 3034; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3027; + this.state = 3035; this.match(MySqlParser.KW_ALL); } break; @@ -14552,11 +14558,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByCheckPartitionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3030; + this.state = 3038; this.match(MySqlParser.KW_CHECK); - this.state = 3031; + this.state = 3039; this.match(MySqlParser.KW_PARTITION); - this.state = 3034; + this.state = 3042; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15109,13 +15115,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3032; + this.state = 3040; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3033; + this.state = 3041; this.match(MySqlParser.KW_ALL); } break; @@ -15128,11 +15134,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByOptimizePartitionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3036; + this.state = 3044; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 3037; + this.state = 3045; this.match(MySqlParser.KW_PARTITION); - this.state = 3040; + this.state = 3048; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15685,13 +15691,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3038; + this.state = 3046; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3039; + this.state = 3047; this.match(MySqlParser.KW_ALL); } break; @@ -15704,11 +15710,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRebuildPartitionContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 3042; + this.state = 3050; this.match(MySqlParser.KW_REBUILD); - this.state = 3043; + this.state = 3051; this.match(MySqlParser.KW_PARTITION); - this.state = 3046; + this.state = 3054; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -16261,13 +16267,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3044; + this.state = 3052; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3045; + this.state = 3053; this.match(MySqlParser.KW_ALL); } break; @@ -16280,11 +16286,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRepairPartitionContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 3048; + this.state = 3056; this.match(MySqlParser.KW_REPAIR); - this.state = 3049; + this.state = 3057; this.match(MySqlParser.KW_PARTITION); - this.state = 3052; + this.state = 3060; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -16837,13 +16843,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3050; + this.state = 3058; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3051; + this.state = 3059; this.match(MySqlParser.KW_ALL); } break; @@ -16856,9 +16862,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRemovePartitioningContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 3054; + this.state = 3062; this.match(MySqlParser.KW_REMOVE); - this.state = 3055; + this.state = 3063; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16866,9 +16872,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByUpgradePartitioningContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 3056; + this.state = 3064; this.match(MySqlParser.KW_UPGRADE); - this.state = 3057; + this.state = 3065; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16897,9 +16903,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3060; + this.state = 3068; this.match(MySqlParser.KW_DROP); - this.state = 3061; + this.state = 3069; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -16909,17 +16915,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3063; + this.state = 3071; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { - this.state = 3062; + this.state = 3070; this.ifExists(); } break; } - this.state = 3065; + this.state = 3073; this.databaseName(); } } @@ -16943,21 +16949,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3067; + this.state = 3075; this.match(MySqlParser.KW_DROP); - this.state = 3068; + this.state = 3076; this.match(MySqlParser.KW_EVENT); - this.state = 3070; + this.state = 3078; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: { - this.state = 3069; + this.state = 3077; this.ifExists(); } break; } - this.state = 3072; + this.state = 3080; localContext._event_name = this.fullId(); } } @@ -16983,16 +16989,16 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3074; + this.state = 3082; this.match(MySqlParser.KW_DROP); - this.state = 3075; + this.state = 3083; this.match(MySqlParser.KW_INDEX); - this.state = 3077; + this.state = 3085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { - this.state = 3076; + this.state = 3084; localContext._inTimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -17005,36 +17011,36 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 3079; + this.state = 3087; this.indexName(); - this.state = 3080; + this.state = 3088; this.match(MySqlParser.KW_ON); - this.state = 3081; + this.state = 3089; this.tableName(); - this.state = 3094; + this.state = 3102; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 377, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 3092; + this.state = 3100; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 3082; + this.state = 3090; this.match(MySqlParser.KW_ALGORITHM); - this.state = 3084; + this.state = 3092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3083; + this.state = 3091; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3086; + this.state = 3094; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -17048,19 +17054,19 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_LOCK: { - this.state = 3087; + this.state = 3095; this.match(MySqlParser.KW_LOCK); - this.state = 3089; + this.state = 3097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3088; + this.state = 3096; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3091; + this.state = 3099; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -17077,7 +17083,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 3096; + this.state = 3104; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 377, this.context); } @@ -17104,27 +17110,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3097; + this.state = 3105; this.match(MySqlParser.KW_DROP); - this.state = 3098; + this.state = 3106; this.match(MySqlParser.KW_LOGFILE); - this.state = 3099; + this.state = 3107; this.match(MySqlParser.KW_GROUP); - this.state = 3100; + this.state = 3108; localContext._logFileGroupName = this.uid(); - this.state = 3101; + this.state = 3109; this.match(MySqlParser.KW_ENGINE); - this.state = 3103; + this.state = 3111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3102; + this.state = 3110; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3105; + this.state = 3113; this.engineName(); } } @@ -17148,21 +17154,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3107; + this.state = 3115; this.match(MySqlParser.KW_DROP); - this.state = 3108; + this.state = 3116; this.match(MySqlParser.KW_PROCEDURE); - this.state = 3110; + this.state = 3118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 3109; + this.state = 3117; this.ifExists(); } break; } - this.state = 3112; + this.state = 3120; localContext._sp_name = this.fullId(); } } @@ -17186,21 +17192,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3114; + this.state = 3122; this.match(MySqlParser.KW_DROP); - this.state = 3115; + this.state = 3123; this.match(MySqlParser.KW_FUNCTION); - this.state = 3117; + this.state = 3125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 3116; + this.state = 3124; this.ifExists(); } break; } - this.state = 3119; + this.state = 3127; this.functionName(); } } @@ -17224,21 +17230,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3121; + this.state = 3129; this.match(MySqlParser.KW_DROP); - this.state = 3122; + this.state = 3130; this.match(MySqlParser.KW_SERVER); - this.state = 3124; + this.state = 3132; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 3123; + this.state = 3131; this.ifExists(); } break; } - this.state = 3126; + this.state = 3134; localContext._serverName = this.uid(); } } @@ -17263,25 +17269,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3128; + this.state = 3136; this.match(MySqlParser.KW_DROP); - this.state = 3129; + this.state = 3137; this.match(MySqlParser.KW_SPATIAL); - this.state = 3130; + this.state = 3138; this.match(MySqlParser.KW_REFERENCE); - this.state = 3131; + this.state = 3139; this.match(MySqlParser.KW_SYSTEM); - this.state = 3133; + this.state = 3141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3132; + this.state = 3140; this.ifExists(); } } - this.state = 3135; + this.state = 3143; this.match(MySqlParser.DECIMAL_LITERAL); } } @@ -17306,38 +17312,38 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3137; + this.state = 3145; this.match(MySqlParser.KW_DROP); - this.state = 3139; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 3138; + this.state = 3146; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 3141; + this.state = 3149; this.match(MySqlParser.KW_TABLE); - this.state = 3143; + this.state = 3151; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 3142; + this.state = 3150; this.ifExists(); } break; } - this.state = 3145; + this.state = 3153; this.tableNames(); - this.state = 3147; + this.state = 3155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3146; + this.state = 3154; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -17373,40 +17379,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3149; + this.state = 3157; this.match(MySqlParser.KW_DROP); - this.state = 3151; + this.state = 3159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 3150; + this.state = 3158; this.match(MySqlParser.KW_UNDO); } } - this.state = 3153; + this.state = 3161; this.match(MySqlParser.KW_TABLESPACE); - this.state = 3154; + this.state = 3162; this.tableSpaceName(); - this.state = 3160; + this.state = 3168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 3155; + this.state = 3163; this.match(MySqlParser.KW_ENGINE); - this.state = 3157; + this.state = 3165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3156; + this.state = 3164; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3159; + this.state = 3167; this.engineName(); } } @@ -17433,21 +17439,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3162; + this.state = 3170; this.match(MySqlParser.KW_DROP); - this.state = 3163; + this.state = 3171; this.match(MySqlParser.KW_TRIGGER); - this.state = 3165; + this.state = 3173; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 3164; + this.state = 3172; this.ifExists(); } break; } - this.state = 3167; + this.state = 3175; localContext._trigger_name = this.fullId(); } } @@ -17472,44 +17478,44 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3169; + this.state = 3177; this.match(MySqlParser.KW_DROP); - this.state = 3170; + this.state = 3178; this.match(MySqlParser.KW_VIEW); - this.state = 3172; + this.state = 3180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 3171; + this.state = 3179; this.ifExists(); } break; } - this.state = 3174; + this.state = 3182; this.viewName(); - this.state = 3179; + this.state = 3187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3175; + this.state = 3183; this.match(MySqlParser.COMMA); - this.state = 3176; + this.state = 3184; this.viewName(); } } - this.state = 3181; + this.state = 3189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3183; + this.state = 3191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3182; + this.state = 3190; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -17544,21 +17550,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3185; + this.state = 3193; this.match(MySqlParser.KW_DROP); - this.state = 3186; + this.state = 3194; this.match(MySqlParser.KW_ROLE); - this.state = 3188; + this.state = 3196; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 3187; + this.state = 3195; this.ifExists(); } break; } - this.state = 3190; + this.state = 3198; this.userOrRoleNames(); } } @@ -17581,61 +17587,61 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 176, MySqlParser.RULE_setRole); let _la: number; try { - this.state = 3212; + this.state = 3220; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3192; + this.state = 3200; this.match(MySqlParser.KW_SET); - this.state = 3193; + this.state = 3201; this.match(MySqlParser.KW_DEFAULT); - this.state = 3194; + this.state = 3202; this.match(MySqlParser.KW_ROLE); - this.state = 3198; + this.state = 3206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3195; + this.state = 3203; this.match(MySqlParser.KW_NONE); } break; case 2: { - this.state = 3196; + this.state = 3204; this.match(MySqlParser.KW_ALL); } break; case 3: { - this.state = 3197; + this.state = 3205; this.userOrRoleNames(); } break; } - this.state = 3200; + this.state = 3208; this.match(MySqlParser.KW_TO); { - this.state = 3201; + this.state = 3209; this.userOrRoleName(); } - this.state = 3206; + this.state = 3214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3202; + this.state = 3210; this.match(MySqlParser.COMMA); { - this.state = 3203; + this.state = 3211; this.userOrRoleName(); } } } - this.state = 3208; + this.state = 3216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17644,11 +17650,11 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3209; + this.state = 3217; this.match(MySqlParser.KW_SET); - this.state = 3210; + this.state = 3218; this.match(MySqlParser.KW_ROLE); - this.state = 3211; + this.state = 3219; this.roleOption(); } break; @@ -17675,25 +17681,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3214; + this.state = 3222; this.match(MySqlParser.KW_RENAME); - this.state = 3215; + this.state = 3223; this.match(MySqlParser.KW_TABLE); - this.state = 3216; + this.state = 3224; this.renameTableClause(); - this.state = 3221; + this.state = 3229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3217; + this.state = 3225; this.match(MySqlParser.COMMA); - this.state = 3218; + this.state = 3226; this.renameTableClause(); } } - this.state = 3223; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17719,11 +17725,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3224; + this.state = 3232; this.tableName(); - this.state = 3225; + this.state = 3233; this.match(MySqlParser.KW_TO); - this.state = 3226; + this.state = 3234; this.tableNameCreate(); } } @@ -17748,19 +17754,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3228; + this.state = 3236; this.match(MySqlParser.KW_TRUNCATE); - this.state = 3230; + this.state = 3238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 173) { { - this.state = 3229; + this.state = 3237; this.match(MySqlParser.KW_TABLE); } } - this.state = 3232; + this.state = 3240; this.tableName(); } } @@ -17784,34 +17790,34 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3234; + this.state = 3242; this.match(MySqlParser.KW_CALL); - this.state = 3235; + this.state = 3243; localContext._sp_name = this.fullId(); - this.state = 3242; + this.state = 3250; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3236; + this.state = 3244; this.match(MySqlParser.LR_BRACKET); - this.state = 3239; + this.state = 3247; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: { - this.state = 3237; + this.state = 3245; this.constants(); } break; case 2: { - this.state = 3238; + this.state = 3246; this.expressions(); } break; } - this.state = 3241; + this.state = 3249; this.match(MySqlParser.RR_BRACKET); } break; @@ -17836,20 +17842,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 186, MySqlParser.RULE_deleteStatement); try { - this.state = 3246; + this.state = 3254; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3244; + this.state = 3252; this.singleDeleteStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3245; + this.state = 3253; this.multipleDeleteStatement(); } break; @@ -17875,9 +17881,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3248; + this.state = 3256; this.match(MySqlParser.KW_DO); - this.state = 3249; + this.state = 3257; this.expressions(); } } @@ -17899,34 +17905,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new HandlerStatementContext(this.context, this.state); this.enterRule(localContext, 190, MySqlParser.RULE_handlerStatement); try { - this.state = 3255; + this.state = 3263; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3251; + this.state = 3259; this.handlerOpenStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3252; + this.state = 3260; this.handlerReadIndexStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3253; + this.state = 3261; this.handlerReadStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3254; + this.state = 3262; this.handlerCloseStatement(); } break; @@ -17953,14 +17959,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3257; + this.state = 3265; this.match(MySqlParser.KW_INSERT); - this.state = 3259; + this.state = 3267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 76 || _la === 107) { { - this.state = 3258; + this.state = 3266; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 76 || _la === 107)) { @@ -17973,89 +17979,89 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3262; + this.state = 3270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3261; + this.state = 3269; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3265; + this.state = 3273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3264; + this.state = 3272; this.match(MySqlParser.KW_INTO); } } - this.state = 3267; + this.state = 3275; this.tableName(); - this.state = 3274; + this.state = 3282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3268; + this.state = 3276; this.match(MySqlParser.KW_PARTITION); - this.state = 3269; + this.state = 3277; this.match(MySqlParser.LR_BRACKET); - this.state = 3271; + this.state = 3279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3270; + this.state = 3278; this.partitionNames(); } } - this.state = 3273; + this.state = 3281; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3287; + this.state = 3295; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: { - this.state = 3277; + this.state = 3285; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 3276; + this.state = 3284; this.fullColumnNames(); } break; } - this.state = 3281; + this.state = 3289; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: { - this.state = 3279; + this.state = 3287; this.valuesOrValueList(); } break; case 2: { - this.state = 3280; + this.state = 3288; this.selectOrTableOrValues(); } break; } - this.state = 3284; + this.state = 3292; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3283; + this.state = 3291; this.asRowAlias(); } break; @@ -18064,50 +18070,50 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 3286; + this.state = 3294; this.setAssignmentList(); } break; } - this.state = 3290; + this.state = 3298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3289; + this.state = 3297; this.asRowAlias(); } } - this.state = 3304; + this.state = 3312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3292; + this.state = 3300; this.match(MySqlParser.KW_ON); - this.state = 3293; + this.state = 3301; this.match(MySqlParser.KW_DUPLICATE); - this.state = 3294; + this.state = 3302; this.match(MySqlParser.KW_KEY); - this.state = 3295; + this.state = 3303; this.match(MySqlParser.KW_UPDATE); - this.state = 3296; + this.state = 3304; localContext._duplicatedFirst = this.updatedElement(); - this.state = 3301; + this.state = 3309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3297; + this.state = 3305; this.match(MySqlParser.COMMA); - this.state = 3298; + this.state = 3306; localContext._updatedElement = this.updatedElement(); localContext._duplicatedElements.push(localContext._updatedElement); } } - this.state = 3303; + this.state = 3311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18136,16 +18142,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3306; + this.state = 3314; this.match(MySqlParser.KW_AS); - this.state = 3307; + this.state = 3315; localContext._rowAlias = this.uid(); - this.state = 3309; + this.state = 3317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { - this.state = 3308; + this.state = 3316; this.fullColumnNames(); } break; @@ -18170,30 +18176,30 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectOrTableOrValuesContext(this.context, this.state); this.enterRule(localContext, 196, MySqlParser.RULE_selectOrTableOrValues); try { - this.state = 3315; + this.state = 3323; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3311; + this.state = 3319; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3312; + this.state = 3320; this.match(MySqlParser.KW_TABLE); - this.state = 3313; + this.state = 3321; this.tableName(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3314; + this.state = 3322; this.rowValuesList(); } break; @@ -18222,22 +18228,22 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3317; + this.state = 3325; this.interSectQuery(); - this.state = 3323; + this.state = 3331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3318; + this.state = 3326; this.match(MySqlParser.KW_INTERSECT); - this.state = 3320; + this.state = 3328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3319; + this.state = 3327; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18249,11 +18255,11 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3322; + this.state = 3330; this.interSectQuery(); } } - this.state = 3325; + this.state = 3333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 828); @@ -18280,24 +18286,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3328; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 3327; + this.state = 3335; this.match(MySqlParser.LR_BRACKET); } } - this.state = 3330; + this.state = 3338; this.querySpecification(); - this.state = 3332; + this.state = 3340; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3331; + this.state = 3339; this.match(MySqlParser.RR_BRACKET); } break; @@ -18325,16 +18331,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3334; + this.state = 3342; this.match(MySqlParser.KW_LOAD); - this.state = 3335; + this.state = 3343; this.match(MySqlParser.KW_DATA); - this.state = 3337; + this.state = 3345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3336; + this.state = 3344; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -18347,26 +18353,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3340; + this.state = 3348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3339; + this.state = 3347; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3342; + this.state = 3350; this.match(MySqlParser.KW_INFILE); - this.state = 3343; + this.state = 3351; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3345; + this.state = 3353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3344; + this.state = 3352; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -18379,48 +18385,48 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3347; + this.state = 3355; this.match(MySqlParser.KW_INTO); - this.state = 3348; + this.state = 3356; this.match(MySqlParser.KW_TABLE); - this.state = 3349; + this.state = 3357; this.tableName(); - this.state = 3355; + this.state = 3363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3350; + this.state = 3358; this.match(MySqlParser.KW_PARTITION); - this.state = 3351; + this.state = 3359; this.match(MySqlParser.LR_BRACKET); - this.state = 3352; + this.state = 3360; this.partitionNames(); - this.state = 3353; + this.state = 3361; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3360; + this.state = 3368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3357; + this.state = 3365; this.match(MySqlParser.KW_CHARACTER); - this.state = 3358; + this.state = 3366; this.match(MySqlParser.KW_SET); - this.state = 3359; + this.state = 3367; localContext._charset = this.charsetName(); } } - this.state = 3368; + this.state = 3376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 337 || _la === 398) { { - this.state = 3362; + this.state = 3370; localContext._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -18430,57 +18436,57 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3364; + this.state = 3372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3363; + this.state = 3371; this.selectFieldsInto(); } } - this.state = 3366; + this.state = 3374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 56 || _la === 58 || _la === 123 || _la === 174); } } - this.state = 3376; + this.state = 3384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3370; + this.state = 3378; this.match(MySqlParser.KW_LINES); - this.state = 3372; + this.state = 3380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3371; + this.state = 3379; this.selectLinesInto(); } } - this.state = 3374; + this.state = 3382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 171 || _la === 174); } } - this.state = 3382; + this.state = 3390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3378; + this.state = 3386; this.match(MySqlParser.KW_IGNORE); - this.state = 3379; + this.state = 3387; this.decimalLiteral(); - this.state = 3380; + this.state = 3388; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -18493,58 +18499,58 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3395; + this.state = 3403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: { - this.state = 3384; + this.state = 3392; this.match(MySqlParser.LR_BRACKET); - this.state = 3385; + this.state = 3393; this.assignmentField(); - this.state = 3390; + this.state = 3398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3386; + this.state = 3394; this.match(MySqlParser.COMMA); - this.state = 3387; + this.state = 3395; this.assignmentField(); } } - this.state = 3392; + this.state = 3400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3393; + this.state = 3401; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3406; + this.state = 3414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3397; + this.state = 3405; this.match(MySqlParser.KW_SET); - this.state = 3398; + this.state = 3406; this.updatedElement(); - this.state = 3403; + this.state = 3411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3399; + this.state = 3407; this.match(MySqlParser.COMMA); - this.state = 3400; + this.state = 3408; this.updatedElement(); } } - this.state = 3405; + this.state = 3413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18574,16 +18580,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3408; + this.state = 3416; this.match(MySqlParser.KW_LOAD); - this.state = 3409; + this.state = 3417; this.match(MySqlParser.KW_XML); - this.state = 3411; + this.state = 3419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3410; + this.state = 3418; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -18596,26 +18602,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3414; + this.state = 3422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3413; + this.state = 3421; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3416; + this.state = 3424; this.match(MySqlParser.KW_INFILE); - this.state = 3417; + this.state = 3425; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3419; + this.state = 3427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3418; + this.state = 3426; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -18628,55 +18634,55 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3421; + this.state = 3429; this.match(MySqlParser.KW_INTO); - this.state = 3422; + this.state = 3430; this.match(MySqlParser.KW_TABLE); - this.state = 3423; + this.state = 3431; this.tableName(); - this.state = 3427; + this.state = 3435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3424; + this.state = 3432; this.match(MySqlParser.KW_CHARACTER); - this.state = 3425; + this.state = 3433; this.match(MySqlParser.KW_SET); - this.state = 3426; + this.state = 3434; localContext._charset = this.charsetName(); } } - this.state = 3439; + this.state = 3447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 587) { { - this.state = 3429; + this.state = 3437; this.match(MySqlParser.KW_ROWS); - this.state = 3430; + this.state = 3438; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 3431; + this.state = 3439; this.match(MySqlParser.KW_BY); - this.state = 3433; + this.state = 3441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 859) { { - this.state = 3432; + this.state = 3440; this.match(MySqlParser.LESS_SYMBOL); } } - this.state = 3435; + this.state = 3443; localContext._tag = this.match(MySqlParser.STRING_LITERAL); - this.state = 3437; + this.state = 3445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 858) { { - this.state = 3436; + this.state = 3444; this.match(MySqlParser.GREATER_SYMBOL); } } @@ -18684,16 +18690,16 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3445; + this.state = 3453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3441; + this.state = 3449; this.match(MySqlParser.KW_IGNORE); - this.state = 3442; + this.state = 3450; this.decimalLiteral(); - this.state = 3443; + this.state = 3451; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -18706,58 +18712,58 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3458; + this.state = 3466; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3447; + this.state = 3455; this.match(MySqlParser.LR_BRACKET); - this.state = 3448; + this.state = 3456; this.assignmentField(); - this.state = 3453; + this.state = 3461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3449; + this.state = 3457; this.match(MySqlParser.COMMA); - this.state = 3450; + this.state = 3458; this.assignmentField(); } } - this.state = 3455; + this.state = 3463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3456; + this.state = 3464; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3469; + this.state = 3477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3460; + this.state = 3468; this.match(MySqlParser.KW_SET); - this.state = 3461; + this.state = 3469; this.updatedElement(); - this.state = 3466; + this.state = 3474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3462; + this.state = 3470; this.match(MySqlParser.COMMA); - this.state = 3463; + this.state = 3471; this.updatedElement(); } } - this.state = 3468; + this.state = 3476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18787,58 +18793,58 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3471; + this.state = 3479; this.match(MySqlParser.LR_BRACKET); - this.state = 3472; + this.state = 3480; this.parenthesizedQueryExpression(); - this.state = 3474; + this.state = 3482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3473; + this.state = 3481; this.orderByClause(); } } - this.state = 3477; + this.state = 3485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3476; + this.state = 3484; this.limitClause(); } } - this.state = 3479; + this.state = 3487; this.match(MySqlParser.RR_BRACKET); - this.state = 3481; + this.state = 3489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3480; + this.state = 3488; this.orderByClause(); } } - this.state = 3484; + this.state = 3492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3483; + this.state = 3491; this.limitClause(); } } - this.state = 3487; + this.state = 3495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3486; + this.state = 3494; this.intoClause(); } } @@ -18866,14 +18872,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3489; + this.state = 3497; this.match(MySqlParser.KW_REPLACE); - this.state = 3491; + this.state = 3499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 107) { { - this.state = 3490; + this.state = 3498; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 107)) { @@ -18886,35 +18892,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3494; + this.state = 3502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3493; + this.state = 3501; this.match(MySqlParser.KW_INTO); } } - this.state = 3496; + this.state = 3504; this.tableName(); - this.state = 3502; + this.state = 3510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3497; + this.state = 3505; this.match(MySqlParser.KW_PARTITION); - this.state = 3498; + this.state = 3506; this.match(MySqlParser.LR_BRACKET); - this.state = 3499; + this.state = 3507; this.partitionNames(); - this.state = 3500; + this.state = 3508; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3512; + this.state = 3520; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: @@ -18923,27 +18929,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VALUE: case MySqlParser.LR_BRACKET: { - this.state = 3508; + this.state = 3516; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3504; + this.state = 3512; this.match(MySqlParser.LR_BRACKET); - this.state = 3505; + this.state = 3513; this.columnNames(); - this.state = 3506; + this.state = 3514; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3510; + this.state = 3518; this.replaceStatementValuesOrSelectOrTable(); } break; case MySqlParser.KW_SET: { - this.state = 3511; + this.state = 3519; this.setAssignmentList(); } break; @@ -18972,44 +18978,44 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3573; + this.state = 3581; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: localContext = new UnionAndLateralSelectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3514; + this.state = 3522; this.querySpecification(); - this.state = 3518; + this.state = 3526; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3515; + this.state = 3523; this.unionStatement(); } } } - this.state = 3520; + this.state = 3528; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } - this.state = 3529; + this.state = 3537; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3521; + this.state = 3529; this.match(MySqlParser.KW_UNION); - this.state = 3523; + this.state = 3531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3522; + this.state = 3530; (localContext as UnionAndLateralSelectContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -19022,18 +19028,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3527; + this.state = 3535; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 3525; + this.state = 3533; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3526; + this.state = 3534; this.queryExpression(); } break; @@ -19043,60 +19049,60 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 3535; + this.state = 3543; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3531; + this.state = 3539; this.match(MySqlParser.COMMA); - this.state = 3532; + this.state = 3540; this.lateralStatement(); } } } - this.state = 3537; + this.state = 3545; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); } - this.state = 3539; + this.state = 3547; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 3538; + this.state = 3546; this.orderByClause(); } break; } - this.state = 3542; + this.state = 3550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 3541; + this.state = 3549; this.limitClause(); } break; } - this.state = 3545; + this.state = 3553; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: { - this.state = 3544; + this.state = 3552; this.lockClause(); } break; } - this.state = 3548; + this.state = 3556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3547; + this.state = 3555; this.intoClause(); } break; @@ -19107,37 +19113,37 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectExpressionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3550; + this.state = 3558; this.queryExpression(); - this.state = 3554; + this.state = 3562; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3551; + this.state = 3559; this.unionStatement(); } } } - this.state = 3556; + this.state = 3564; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); } - this.state = 3562; + this.state = 3570; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3557; + this.state = 3565; this.match(MySqlParser.KW_UNION); - this.state = 3559; + this.state = 3567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3558; + this.state = 3566; (localContext as SelectExpressionContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -19150,37 +19156,37 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3561; + this.state = 3569; this.queryExpression(); } break; } - this.state = 3565; + this.state = 3573; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3564; + this.state = 3572; this.orderByClause(); } break; } - this.state = 3568; + this.state = 3576; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3567; + this.state = 3575; this.limitClause(); } break; } - this.state = 3571; + this.state = 3579; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3570; + this.state = 3578; this.lockClause(); } break; @@ -19212,44 +19218,44 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3576; + this.state = 3584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 3575; + this.state = 3583; this.withClause(); } } - this.state = 3578; + this.state = 3586; this.queryExpressionBody(0); - this.state = 3580; + this.state = 3588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3579; + this.state = 3587; this.orderByClause(); } } - this.state = 3583; + this.state = 3591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3582; + this.state = 3590; this.limitClause(); } } - this.state = 3586; + this.state = 3594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3585; + this.state = 3593; this.intoClause(); } } @@ -19290,11 +19296,11 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 3589; + this.state = 3597; this.queryItem(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3605; + this.state = 3613; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -19304,25 +19310,25 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3603; + this.state = 3611; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3591; + this.state = 3599; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3592; + this.state = 3600; this.match(MySqlParser.KW_UNION); - this.state = 3594; + this.state = 3602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3593; + this.state = 3601; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19334,7 +19340,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3596; + this.state = 3604; this.queryItem(0); } break; @@ -19342,18 +19348,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3597; + this.state = 3605; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3598; + this.state = 3606; this.match(MySqlParser.KW_EXCEPT); - this.state = 3600; + this.state = 3608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3599; + this.state = 3607; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19365,14 +19371,14 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3602; + this.state = 3610; this.queryItem(0); } break; } } } - this.state = 3607; + this.state = 3615; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); } @@ -19412,11 +19418,11 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 3609; + this.state = 3617; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3619; + this.state = 3627; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -19429,18 +19435,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new QueryItemContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryItem); - this.state = 3611; + this.state = 3619; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3612; + this.state = 3620; this.match(MySqlParser.KW_INTERSECT); - this.state = 3614; + this.state = 3622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3613; + this.state = 3621; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19452,12 +19458,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3616; + this.state = 3624; this.queryPrimary(); } } } - this.state = 3621; + this.state = 3629; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); } @@ -19482,54 +19488,54 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 218, MySqlParser.RULE_queryPrimary); let _la: number; try { - this.state = 3636; + this.state = 3644; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3622; + this.state = 3630; this.queryBlock(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3623; + this.state = 3631; this.match(MySqlParser.LR_BRACKET); - this.state = 3624; + this.state = 3632; this.queryExpressionBody(0); - this.state = 3626; + this.state = 3634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3625; + this.state = 3633; this.orderByClause(); } } - this.state = 3629; + this.state = 3637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3628; + this.state = 3636; this.limitClause(); } } - this.state = 3632; + this.state = 3640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3631; + this.state = 3639; this.intoClause(); } } - this.state = 3634; + this.state = 3642; this.match(MySqlParser.RR_BRACKET); } break; @@ -19553,20 +19559,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new UpdateStatementContext(this.context, this.state); this.enterRule(localContext, 220, MySqlParser.RULE_updateStatement); try { - this.state = 3640; + this.state = 3648; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3638; + this.state = 3646; this.singleUpdateStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3639; + this.state = 3647; this.multipleUpdateStatement(); } break; @@ -19592,30 +19598,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3642; + this.state = 3650; this.rowValuesList(); - this.state = 3646; + this.state = 3654; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: { - this.state = 3643; + this.state = 3651; this.match(MySqlParser.KW_ORDER); - this.state = 3644; + this.state = 3652; this.match(MySqlParser.KW_BY); - this.state = 3645; + this.state = 3653; this.indexColumnName(); } break; } - this.state = 3650; + this.state = 3658; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3648; + this.state = 3656; this.match(MySqlParser.KW_LIMIT); - this.state = 3649; + this.state = 3657; this.limitClauseAtom(); } break; @@ -19643,15 +19649,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3652; + this.state = 3660; this.queryBlock(); - this.state = 3657; + this.state = 3665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 59 || _la === 181 || _la === 828) { { { - this.state = 3653; + this.state = 3661; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 181 || _la === 828)) { this.errorHandler.recoverInline(this); @@ -19660,40 +19666,40 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3654; + this.state = 3662; this.queryBlock(); } } - this.state = 3659; + this.state = 3667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3661; + this.state = 3669; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 3660; + this.state = 3668; this.orderByClause(); } break; } - this.state = 3664; + this.state = 3672; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 3663; + this.state = 3671; this.limitClause(); } break; } - this.state = 3667; + this.state = 3675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3666; + this.state = 3674; this.intoClause(); } } @@ -19718,28 +19724,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new QueryBlockContext(this.context, this.state); this.enterRule(localContext, 226, MySqlParser.RULE_queryBlock); try { - this.state = 3672; + this.state = 3680; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3669; + this.state = 3677; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3670; + this.state = 3678; this.tableStatement(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3671; + this.state = 3679; this.valuesStatement(); } break; @@ -19765,36 +19771,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReplaceStatementValuesOrSelectOrTableContext(this.context, this.state); this.enterRule(localContext, 228, MySqlParser.RULE_replaceStatementValuesOrSelectOrTable); try { - this.state = 3679; + this.state = 3687; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3674; + this.state = 3682; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3675; + this.state = 3683; this.match(MySqlParser.KW_TABLE); - this.state = 3676; + this.state = 3684; this.tableName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3677; + this.state = 3685; this.valuesOrValueList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3678; + this.state = 3686; this.rowValuesList(); } break; @@ -19821,29 +19827,29 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3681; + this.state = 3689; this.match(MySqlParser.KW_VALUES); - this.state = 3682; + this.state = 3690; this.match(MySqlParser.KW_ROW); - this.state = 3683; + this.state = 3691; this.expressionsWithDefaults(); - this.state = 3689; + this.state = 3697; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3684; + this.state = 3692; this.match(MySqlParser.COMMA); - this.state = 3685; + this.state = 3693; this.match(MySqlParser.KW_ROW); - this.state = 3686; + this.state = 3694; this.expressionsWithDefaults(); } } } - this.state = 3691; + this.state = 3699; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); } @@ -19870,24 +19876,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3692; + this.state = 3700; this.match(MySqlParser.KW_SET); - this.state = 3693; + this.state = 3701; localContext._setFirst = this.updatedElement(); - this.state = 3698; + this.state = 3706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3694; + this.state = 3702; this.match(MySqlParser.COMMA); - this.state = 3695; + this.state = 3703; localContext._updatedElement = this.updatedElement(); localContext._setElements.push(localContext._updatedElement); } } - this.state = 3700; + this.state = 3708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19913,11 +19919,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3701; + this.state = 3709; this.columnName(); - this.state = 3702; + this.state = 3710; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 3703; + this.state = 3711; this.expressionOrDefault(); } } @@ -19939,7 +19945,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new AssignmentFieldContext(this.context, this.state); this.enterRule(localContext, 236, MySqlParser.RULE_assignmentField); try { - this.state = 3707; + this.state = 3715; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -20493,14 +20499,14 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 3705; + this.state = 3713; localContext._var_name = this.uid(); } break; case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 3706; + this.state = 3714; this.match(MySqlParser.LOCAL_ID); } break; @@ -20528,15 +20534,15 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3730; + this.state = 3738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 3709; + this.state = 3717; this.match(MySqlParser.KW_FOR); - this.state = 3710; + this.state = 3718; _la = this.tokenStream.LA(1); if(!(_la === 185 || _la === 594)) { this.errorHandler.recoverInline(this); @@ -20545,42 +20551,42 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3720; + this.state = 3728; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: { - this.state = 3711; + this.state = 3719; this.match(MySqlParser.KW_OF); - this.state = 3712; + this.state = 3720; this.tableName(); - this.state = 3717; + this.state = 3725; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3713; + this.state = 3721; this.match(MySqlParser.COMMA); - this.state = 3714; + this.state = 3722; this.tableName(); } } } - this.state = 3719; + this.state = 3727; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); } } break; } - this.state = 3724; + this.state = 3732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3722; + this.state = 3730; _la = this.tokenStream.LA(1); if(!(_la === 159 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -20589,7 +20595,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3723; + this.state = 3731; this.match(MySqlParser.KW_LOCKED); } break; @@ -20599,13 +20605,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LOCK: this.enterOuterAlt(localContext, 2); { - this.state = 3726; + this.state = 3734; this.match(MySqlParser.KW_LOCK); - this.state = 3727; + this.state = 3735; this.match(MySqlParser.KW_IN); - this.state = 3728; + this.state = 3736; this.match(MySqlParser.KW_SHARE); - this.state = 3729; + this.state = 3737; this.match(MySqlParser.KW_MODE); } break; @@ -20634,108 +20640,108 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3732; + this.state = 3740; this.match(MySqlParser.KW_DELETE); - this.state = 3734; + this.state = 3742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3733; + this.state = 3741; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3737; + this.state = 3745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 3736; + this.state = 3744; this.match(MySqlParser.KW_QUICK); } } - this.state = 3740; + this.state = 3748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3739; + this.state = 3747; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3742; + this.state = 3750; this.match(MySqlParser.KW_FROM); - this.state = 3743; + this.state = 3751; this.tableName(); - this.state = 3748; + this.state = 3756; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 3745; + this.state = 3753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3744; + this.state = 3752; this.match(MySqlParser.KW_AS); } } - this.state = 3747; + this.state = 3755; localContext._table_alias = this.uid(); } break; } - this.state = 3755; + this.state = 3763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3750; + this.state = 3758; this.match(MySqlParser.KW_PARTITION); - this.state = 3751; + this.state = 3759; this.match(MySqlParser.LR_BRACKET); - this.state = 3752; + this.state = 3760; this.partitionNames(); - this.state = 3753; + this.state = 3761; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3759; + this.state = 3767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3757; + this.state = 3765; this.match(MySqlParser.KW_WHERE); - this.state = 3758; + this.state = 3766; this.expression(0); } } - this.state = 3762; + this.state = 3770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3761; + this.state = 3769; this.orderByClause(); } } - this.state = 3766; + this.state = 3774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3764; + this.state = 3772; this.match(MySqlParser.KW_LIMIT); - this.state = 3765; + this.state = 3773; this.limitClauseAtom(); } } @@ -20763,39 +20769,39 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3768; + this.state = 3776; this.match(MySqlParser.KW_DELETE); - this.state = 3770; + this.state = 3778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3769; + this.state = 3777; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3773; + this.state = 3781; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 3772; + this.state = 3780; this.match(MySqlParser.KW_QUICK); } break; } - this.state = 3776; + this.state = 3784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3775; + this.state = 3783; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3817; + this.state = 3825; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -21348,117 +21354,117 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3778; + this.state = 3786; this.tableName(); - this.state = 3781; + this.state = 3789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3779; + this.state = 3787; this.match(MySqlParser.DOT); - this.state = 3780; + this.state = 3788; this.match(MySqlParser.STAR); } } - this.state = 3791; + this.state = 3799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3783; + this.state = 3791; this.match(MySqlParser.COMMA); - this.state = 3784; + this.state = 3792; this.tableName(); - this.state = 3787; + this.state = 3795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3785; + this.state = 3793; this.match(MySqlParser.DOT); - this.state = 3786; + this.state = 3794; this.match(MySqlParser.STAR); } } } } - this.state = 3793; + this.state = 3801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3794; + this.state = 3802; this.match(MySqlParser.KW_FROM); - this.state = 3795; + this.state = 3803; this.tableSources(); } break; case MySqlParser.KW_FROM: { - this.state = 3797; + this.state = 3805; this.match(MySqlParser.KW_FROM); - this.state = 3798; + this.state = 3806; this.tableName(); - this.state = 3801; + this.state = 3809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3799; + this.state = 3807; this.match(MySqlParser.DOT); - this.state = 3800; + this.state = 3808; this.match(MySqlParser.STAR); } } - this.state = 3811; + this.state = 3819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3803; + this.state = 3811; this.match(MySqlParser.COMMA); - this.state = 3804; + this.state = 3812; this.tableName(); - this.state = 3807; + this.state = 3815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3805; + this.state = 3813; this.match(MySqlParser.DOT); - this.state = 3806; + this.state = 3814; this.match(MySqlParser.STAR); } } } } - this.state = 3813; + this.state = 3821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3814; + this.state = 3822; this.match(MySqlParser.KW_USING); - this.state = 3815; + this.state = 3823; this.tableSources(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3821; + this.state = 3829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3819; + this.state = 3827; this.match(MySqlParser.KW_WHERE); - this.state = 3820; + this.state = 3828; this.expression(0); } } @@ -21486,28 +21492,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3823; + this.state = 3831; this.match(MySqlParser.KW_HANDLER); - this.state = 3824; + this.state = 3832; this.tableName(); - this.state = 3825; + this.state = 3833; this.match(MySqlParser.KW_OPEN); - this.state = 3830; + this.state = 3838; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { case 1: { - this.state = 3827; + this.state = 3835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3826; + this.state = 3834; this.match(MySqlParser.KW_AS); } } - this.state = 3829; + this.state = 3837; localContext._table_alias = this.uid(); } break; @@ -21535,28 +21541,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3832; + this.state = 3840; this.match(MySqlParser.KW_HANDLER); - this.state = 3833; + this.state = 3841; this.tableName(); - this.state = 3834; + this.state = 3842; this.match(MySqlParser.KW_READ); - this.state = 3835; + this.state = 3843; this.indexName(); - this.state = 3842; + this.state = 3850; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.EQUAL_SYMBOL: case MySqlParser.GREATER_SYMBOL: case MySqlParser.LESS_SYMBOL: { - this.state = 3836; + this.state = 3844; this.comparisonBase(); - this.state = 3837; + this.state = 3845; this.match(MySqlParser.LR_BRACKET); - this.state = 3838; + this.state = 3846; this.constants(); - this.state = 3839; + this.state = 3847; this.match(MySqlParser.RR_BRACKET); } break; @@ -21565,7 +21571,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_NEXT: case MySqlParser.KW_PREV: { - this.state = 3841; + this.state = 3849; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 501 || _la === 542)) { @@ -21580,26 +21586,26 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3846; + this.state = 3854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3844; + this.state = 3852; this.match(MySqlParser.KW_WHERE); - this.state = 3845; + this.state = 3853; this.expression(0); } } - this.state = 3850; + this.state = 3858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3848; + this.state = 3856; this.match(MySqlParser.KW_LIMIT); - this.state = 3849; + this.state = 3857; this.limitClauseAtom(); } } @@ -21627,13 +21633,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3852; + this.state = 3860; this.match(MySqlParser.KW_HANDLER); - this.state = 3853; + this.state = 3861; this.tableName(); - this.state = 3854; + this.state = 3862; this.match(MySqlParser.KW_READ); - this.state = 3855; + this.state = 3863; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 501)) { @@ -21643,26 +21649,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3858; + this.state = 3866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3856; + this.state = 3864; this.match(MySqlParser.KW_WHERE); - this.state = 3857; + this.state = 3865; this.expression(0); } } - this.state = 3862; + this.state = 3870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3860; + this.state = 3868; this.match(MySqlParser.KW_LIMIT); - this.state = 3861; + this.state = 3869; this.limitClauseAtom(); } } @@ -21689,11 +21695,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3864; + this.state = 3872; this.match(MySqlParser.KW_HANDLER); - this.state = 3865; + this.state = 3873; this.tableName(); - this.state = 3866; + this.state = 3874; this.match(MySqlParser.KW_CLOSE); } } @@ -21718,27 +21724,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3868; + this.state = 3876; this.match(MySqlParser.KW_IMPORT); - this.state = 3869; + this.state = 3877; this.match(MySqlParser.KW_TABLE); - this.state = 3870; + this.state = 3878; this.match(MySqlParser.KW_FROM); - this.state = 3871; + this.state = 3879; this.stringLiteral(); - this.state = 3876; + this.state = 3884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3872; + this.state = 3880; this.match(MySqlParser.COMMA); - this.state = 3873; + this.state = 3881; this.stringLiteral(); } } - this.state = 3878; + this.state = 3886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21765,98 +21771,98 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3879; + this.state = 3887; this.match(MySqlParser.KW_UPDATE); - this.state = 3881; + this.state = 3889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3880; + this.state = 3888; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3884; + this.state = 3892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3883; + this.state = 3891; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3886; + this.state = 3894; this.tableName(); - this.state = 3891; + this.state = 3899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3888; + this.state = 3896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3887; + this.state = 3895; this.match(MySqlParser.KW_AS); } } - this.state = 3890; + this.state = 3898; localContext._table_alias = this.uid(); } } - this.state = 3893; + this.state = 3901; this.match(MySqlParser.KW_SET); - this.state = 3894; + this.state = 3902; this.updatedElement(); - this.state = 3899; + this.state = 3907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3895; + this.state = 3903; this.match(MySqlParser.COMMA); - this.state = 3896; + this.state = 3904; this.updatedElement(); } } - this.state = 3901; + this.state = 3909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3904; + this.state = 3912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3902; + this.state = 3910; this.match(MySqlParser.KW_WHERE); - this.state = 3903; + this.state = 3911; this.expression(0); } } - this.state = 3907; + this.state = 3915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3906; + this.state = 3914; this.orderByClause(); } } - this.state = 3910; + this.state = 3918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3909; + this.state = 3917; this.limitClause(); } } @@ -21884,58 +21890,58 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3912; + this.state = 3920; this.match(MySqlParser.KW_UPDATE); - this.state = 3914; + this.state = 3922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3913; + this.state = 3921; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3917; + this.state = 3925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3916; + this.state = 3924; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3919; + this.state = 3927; this.tableSources(); - this.state = 3920; + this.state = 3928; this.match(MySqlParser.KW_SET); - this.state = 3921; + this.state = 3929; this.updatedElement(); - this.state = 3926; + this.state = 3934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3922; + this.state = 3930; this.match(MySqlParser.COMMA); - this.state = 3923; + this.state = 3931; this.updatedElement(); } } - this.state = 3928; + this.state = 3936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3931; + this.state = 3939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3929; + this.state = 3937; this.match(MySqlParser.KW_WHERE); - this.state = 3930; + this.state = 3938; this.expression(0); } } @@ -21963,27 +21969,27 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3933; + this.state = 3941; this.match(MySqlParser.KW_ORDER); - this.state = 3934; + this.state = 3942; this.match(MySqlParser.KW_BY); - this.state = 3935; + this.state = 3943; this.orderByExpression(); - this.state = 3940; + this.state = 3948; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3936; + this.state = 3944; this.match(MySqlParser.COMMA); - this.state = 3937; + this.state = 3945; this.orderByExpression(); } } } - this.state = 3942; + this.state = 3950; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); } @@ -22010,14 +22016,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3943; + this.state = 3951; this.expression(0); - this.state = 3945; + this.state = 3953; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 3944; + this.state = 3952; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -22053,23 +22059,23 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3947; + this.state = 3955; this.tableSource(); - this.state = 3952; + this.state = 3960; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3948; + this.state = 3956; this.match(MySqlParser.COMMA); - this.state = 3949; + this.state = 3957; this.tableSource(); } } } - this.state = 3954; + this.state = 3962; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); } @@ -22095,28 +22101,28 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3973; + this.state = 3981; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: localContext = new TableSourceBaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3955; + this.state = 3963; this.tableSourceItem(); - this.state = 3959; + this.state = 3967; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3956; + this.state = 3964; this.joinPart(); } } } - this.state = 3961; + this.state = 3969; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); } @@ -22126,25 +22132,25 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourceNestedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3962; + this.state = 3970; this.match(MySqlParser.LR_BRACKET); - this.state = 3963; + this.state = 3971; this.tableSourceItem(); - this.state = 3967; + this.state = 3975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 35 || ((((_la - 84)) & ~0x1F) === 0 && ((1 << (_la - 84)) & 536887425) !== 0) || _la === 150 || _la === 172) { { { - this.state = 3964; + this.state = 3972; this.joinPart(); } } - this.state = 3969; + this.state = 3977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3970; + this.state = 3978; this.match(MySqlParser.RR_BRACKET); } break; @@ -22152,7 +22158,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableJsonContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3972; + this.state = 3980; this.jsonTable(); } break; @@ -22178,73 +22184,73 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4014; + this.state = 4022; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: localContext = new AtomTableItemContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3975; + this.state = 3983; this.tableName(); - this.state = 3981; + this.state = 3989; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: { - this.state = 3976; + this.state = 3984; this.match(MySqlParser.KW_PARTITION); - this.state = 3977; + this.state = 3985; this.match(MySqlParser.LR_BRACKET); - this.state = 3978; + this.state = 3986; this.partitionNames(); - this.state = 3979; + this.state = 3987; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3987; + this.state = 3995; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: { - this.state = 3984; + this.state = 3992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3983; + this.state = 3991; this.match(MySqlParser.KW_AS); } } - this.state = 3986; + this.state = 3994; (localContext as AtomTableItemContext)._alias = this.uid(); } break; } - this.state = 3997; + this.state = 4005; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 3989; + this.state = 3997; this.indexHint(); - this.state = 3994; + this.state = 4002; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3990; + this.state = 3998; this.match(MySqlParser.COMMA); - this.state = 3991; + this.state = 3999; this.indexHint(); } } } - this.state = 3996; + this.state = 4004; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); } @@ -22257,36 +22263,36 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryTableItemContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4000; + this.state = 4008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 95) { { - this.state = 3999; + this.state = 4007; this.match(MySqlParser.KW_LATERAL); } } - this.state = 4002; + this.state = 4010; this.atomSubQueryTableSource(); - this.state = 4004; + this.state = 4012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4003; + this.state = 4011; this.match(MySqlParser.KW_AS); } } - this.state = 4006; + this.state = 4014; (localContext as SubqueryTableItemContext)._alias = this.uid(); - this.state = 4008; + this.state = 4016; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4007; + this.state = 4015; this.fullColumnNames(); } break; @@ -22297,11 +22303,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourcesItemContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4010; + this.state = 4018; this.match(MySqlParser.LR_BRACKET); - this.state = 4011; + this.state = 4019; this.tableSources(); - this.state = 4012; + this.state = 4020; this.match(MySqlParser.RR_BRACKET); } break; @@ -22325,24 +22331,24 @@ export class MySqlParser extends SQLParserBase { let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); this.enterRule(localContext, 268, MySqlParser.RULE_atomSubQueryTableSource); try { - this.state = 4021; + this.state = 4029; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4024; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4017; + this.state = 4025; this.match(MySqlParser.LR_BRACKET); - this.state = 4018; + this.state = 4026; localContext._parenthesisSubquery = this.selectStatement(); - this.state = 4019; + this.state = 4027; this.match(MySqlParser.RR_BRACKET); } break; @@ -22368,11 +22374,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4023; + this.state = 4031; this.match(MySqlParser.LR_BRACKET); - this.state = 4024; + this.state = 4032; this.columnNames(); - this.state = 4025; + this.state = 4033; this.match(MySqlParser.RR_BRACKET); } } @@ -22397,7 +22403,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4027; + this.state = 4035; localContext._indexHintAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 79 || _la === 187)) { @@ -22407,7 +22413,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4028; + this.state = 4036; localContext._keyFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -22417,31 +22423,31 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4031; + this.state = 4039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4029; + this.state = 4037; this.match(MySqlParser.KW_FOR); - this.state = 4030; + this.state = 4038; this.indexHintType(); } } - this.state = 4033; + this.state = 4041; this.match(MySqlParser.LR_BRACKET); - this.state = 4035; + this.state = 4043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4034; + this.state = 4042; this.indexNames(); } } - this.state = 4037; + this.state = 4045; this.match(MySqlParser.RR_BRACKET); } } @@ -22463,31 +22469,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new IndexHintTypeContext(this.context, this.state); this.enterRule(localContext, 274, MySqlParser.RULE_indexHintType); try { - this.state = 4044; + this.state = 4052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 4039; + this.state = 4047; this.match(MySqlParser.KW_JOIN); } break; case MySqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 4040; + this.state = 4048; this.match(MySqlParser.KW_ORDER); - this.state = 4041; + this.state = 4049; this.match(MySqlParser.KW_BY); } break; case MySqlParser.KW_GROUP: this.enterOuterAlt(localContext, 3); { - this.state = 4042; + this.state = 4050; this.match(MySqlParser.KW_GROUP); - this.state = 4043; + this.state = 4051; this.match(MySqlParser.KW_BY); } break; @@ -22515,7 +22521,7 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4095; + this.state = 4103; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CROSS: @@ -22524,12 +22530,12 @@ export class MySqlParser extends SQLParserBase { localContext = new InnerJoinContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4047; + this.state = 4055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 35 || _la === 84) { { - this.state = 4046; + this.state = 4054; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 84)) { this.errorHandler.recoverInline(this); @@ -22541,33 +22547,33 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4049; + this.state = 4057; this.match(MySqlParser.KW_JOIN); - this.state = 4051; + this.state = 4059; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: { - this.state = 4050; + this.state = 4058; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4053; + this.state = 4061; this.tableSourceItem(); - this.state = 4057; + this.state = 4065; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4054; + this.state = 4062; this.joinSpec(); } } } - this.state = 4059; + this.state = 4067; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); } @@ -22577,23 +22583,23 @@ export class MySqlParser extends SQLParserBase { localContext = new StraightJoinContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4060; + this.state = 4068; this.match(MySqlParser.KW_STRAIGHT_JOIN); - this.state = 4061; + this.state = 4069; this.tableSourceItem(); - this.state = 4065; + this.state = 4073; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4062; + this.state = 4070; this.joinSpec(); } } } - this.state = 4067; + this.state = 4075; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); } @@ -22604,7 +22610,7 @@ export class MySqlParser extends SQLParserBase { localContext = new OuterJoinContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4068; + this.state = 4076; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22613,43 +22619,43 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4070; + this.state = 4078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4069; + this.state = 4077; this.match(MySqlParser.KW_OUTER); } } - this.state = 4072; + this.state = 4080; this.match(MySqlParser.KW_JOIN); - this.state = 4074; + this.state = 4082; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { case 1: { - this.state = 4073; + this.state = 4081; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4076; + this.state = 4084; this.tableSourceItem(); - this.state = 4080; + this.state = 4088; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4077; + this.state = 4085; this.joinSpec(); } } } - this.state = 4082; + this.state = 4090; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); } @@ -22659,26 +22665,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NaturalJoinContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4083; - this.match(MySqlParser.KW_NATURAL); this.state = 4091; + this.match(MySqlParser.KW_NATURAL); + this.state = 4099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84 || _la === 98 || _la === 150) { { - this.state = 4086; + this.state = 4094; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_INNER: { - this.state = 4084; + this.state = 4092; this.match(MySqlParser.KW_INNER); } break; case MySqlParser.KW_LEFT: case MySqlParser.KW_RIGHT: { - this.state = 4085; + this.state = 4093; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22692,12 +22698,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4089; + this.state = 4097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4088; + this.state = 4096; this.match(MySqlParser.KW_OUTER); } } @@ -22705,9 +22711,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4093; + this.state = 4101; this.match(MySqlParser.KW_JOIN); - this.state = 4094; + this.state = 4102; this.tableSourceItem(); } break; @@ -22733,30 +22739,44 @@ export class MySqlParser extends SQLParserBase { let localContext = new JoinSpecContext(this.context, this.state); this.enterRule(localContext, 278, MySqlParser.RULE_joinSpec); try { - this.state = 4104; + this.state = 4115; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { { - this.state = 4097; + this.state = 4105; this.match(MySqlParser.KW_ON); - this.state = 4098; - this.expression(0); + this.state = 4108; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 573, this.context) ) { + case 1: + { + this.state = 4106; + this.expression(0); + } + break; + case 2: + { + this.state = 4107; + this.columnNamePathAllowEmpty(); + } + break; + } } } break; case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 4099; + this.state = 4110; this.match(MySqlParser.KW_USING); - this.state = 4100; + this.state = 4111; this.match(MySqlParser.LR_BRACKET); - this.state = 4101; + this.state = 4112; this.columnNames(); - this.state = 4102; + this.state = 4113; this.match(MySqlParser.RR_BRACKET); } break; @@ -22782,28 +22802,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new QueryExpressionContext(this.context, this.state); this.enterRule(localContext, 280, MySqlParser.RULE_queryExpression); try { - this.state = 4114; + this.state = 4125; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4106; + this.state = 4117; this.match(MySqlParser.LR_BRACKET); - this.state = 4107; + this.state = 4118; this.querySpecification(); - this.state = 4108; + this.state = 4119; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4110; + this.state = 4121; this.match(MySqlParser.LR_BRACKET); - this.state = 4111; + this.state = 4122; this.queryExpression(); - this.state = 4112; + this.state = 4123; this.match(MySqlParser.RR_BRACKET); } break; @@ -22830,104 +22850,104 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4116; + this.state = 4127; this.match(MySqlParser.KW_SELECT); - this.state = 4120; + this.state = 4131; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 575, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 576, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4117; + this.state = 4128; this.selectSpec(); } } } - this.state = 4122; + this.state = 4133; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 575, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 576, this.context); } - this.state = 4123; + this.state = 4134; this.selectElements(); - this.state = 4125; + this.state = 4136; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4124; + this.state = 4135; this.intoClause(); } break; } - this.state = 4127; + this.state = 4138; this.fromClause(); - this.state = 4129; + this.state = 4140; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: { - this.state = 4128; + this.state = 4139; this.groupByClause(); } break; } - this.state = 4132; + this.state = 4143; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4131; + this.state = 4142; this.havingClause(); } break; } - this.state = 4135; + this.state = 4146; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4134; + this.state = 4145; this.windowClause(); } break; } - this.state = 4138; + this.state = 4149; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: { - this.state = 4137; + this.state = 4148; this.orderByClause(); } break; } - this.state = 4141; + this.state = 4152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4140; + this.state = 4151; this.limitClause(); } break; } - this.state = 4144; + this.state = 4155; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4143; + this.state = 4154; this.intoClause(); } break; } - this.state = 4147; + this.state = 4158; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { case 1: { - this.state = 4146; + this.state = 4157; this.unionStatement(); } break; @@ -22955,14 +22975,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4149; + this.state = 4160; this.match(MySqlParser.KW_UNION); - this.state = 4151; + this.state = 4162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 4150; + this.state = 4161; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -22975,18 +22995,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4155; + this.state = 4166; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4153; + this.state = 4164; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4154; + this.state = 4165; this.queryExpression(); } break; @@ -23016,64 +23036,64 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4157; + this.state = 4168; this.match(MySqlParser.KW_LATERAL); - this.state = 4172; + this.state = 4183; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { case 1: { - this.state = 4158; + this.state = 4169; this.querySpecification(); } break; case 2: { - this.state = 4159; + this.state = 4170; this.queryExpression(); } break; case 3: { { - this.state = 4160; + this.state = 4171; this.match(MySqlParser.LR_BRACKET); - this.state = 4163; + this.state = 4174; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4161; + this.state = 4172; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4162; + this.state = 4173; this.queryExpression(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4165; + this.state = 4176; this.match(MySqlParser.RR_BRACKET); - this.state = 4170; + this.state = 4181; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 588, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { case 1: { - this.state = 4167; + this.state = 4178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4166; + this.state = 4177; this.match(MySqlParser.KW_AS); } } - this.state = 4169; + this.state = 4180; localContext._alias = this.uid(); } break; @@ -23105,42 +23125,42 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4174; + this.state = 4185; this.match(MySqlParser.KW_JSON_TABLE); - this.state = 4175; + this.state = 4186; this.match(MySqlParser.LR_BRACKET); - this.state = 4176; + this.state = 4187; this.match(MySqlParser.STRING_LITERAL); - this.state = 4177; + this.state = 4188; this.match(MySqlParser.COMMA); - this.state = 4178; + this.state = 4189; this.match(MySqlParser.STRING_LITERAL); - this.state = 4179; + this.state = 4190; this.match(MySqlParser.KW_COLUMNS); - this.state = 4180; + this.state = 4191; this.match(MySqlParser.LR_BRACKET); - this.state = 4181; + this.state = 4192; this.jsonColumnList(); - this.state = 4182; + this.state = 4193; this.match(MySqlParser.RR_BRACKET); - this.state = 4183; + this.state = 4194; this.match(MySqlParser.RR_BRACKET); - this.state = 4188; + this.state = 4199; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 592, this.context) ) { case 1: { - this.state = 4185; + this.state = 4196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4184; + this.state = 4195; this.match(MySqlParser.KW_AS); } } - this.state = 4187; + this.state = 4198; localContext._alias = this.uid(); } break; @@ -23168,21 +23188,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4190; + this.state = 4201; this.jsonColumn(); - this.state = 4195; + this.state = 4206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4191; + this.state = 4202; this.match(MySqlParser.COMMA); - this.state = 4192; + this.state = 4203; this.jsonColumn(); } } - this.state = 4197; + this.state = 4208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23207,22 +23227,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 292, MySqlParser.RULE_jsonColumn); let _la: number; try { - this.state = 4227; + this.state = 4238; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4198; + this.state = 4209; this.columnName(); - this.state = 4215; + this.state = 4226; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: { - this.state = 4199; + this.state = 4210; this.match(MySqlParser.KW_FOR); - this.state = 4200; + this.state = 4211; this.match(MySqlParser.KW_ORDINALITY); } break; @@ -23286,33 +23306,33 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_POINT: case MySqlParser.KW_POLYGON: { - this.state = 4201; + this.state = 4212; this.dataType(); - this.state = 4213; + this.state = 4224; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PATH: { - this.state = 4202; + this.state = 4213; this.match(MySqlParser.KW_PATH); - this.state = 4203; + this.state = 4214; this.match(MySqlParser.STRING_LITERAL); - this.state = 4205; + this.state = 4216; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { case 1: { - this.state = 4204; + this.state = 4215; this.jsonOnEmpty(); } break; } - this.state = 4208; + this.state = 4219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 4207; + this.state = 4218; this.jsonOnError(); } } @@ -23321,11 +23341,11 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_EXISTS: { - this.state = 4210; + this.state = 4221; this.match(MySqlParser.KW_EXISTS); - this.state = 4211; + this.state = 4222; this.match(MySqlParser.KW_PATH); - this.state = 4212; + this.state = 4223; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23342,27 +23362,27 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4217; + this.state = 4228; this.match(MySqlParser.KW_NESTED); - this.state = 4219; + this.state = 4230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 4218; + this.state = 4229; this.match(MySqlParser.KW_PATH); } } - this.state = 4221; + this.state = 4232; this.match(MySqlParser.STRING_LITERAL); - this.state = 4222; + this.state = 4233; this.match(MySqlParser.KW_COLUMNS); - this.state = 4223; + this.state = 4234; this.match(MySqlParser.LR_BRACKET); - this.state = 4224; + this.state = 4235; this.jsonColumnList(); - this.state = 4225; + this.state = 4236; this.match(MySqlParser.RR_BRACKET); } break; @@ -23388,35 +23408,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4233; + this.state = 4244; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4229; + this.state = 4240; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4230; + this.state = 4241; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4231; + this.state = 4242; this.match(MySqlParser.KW_DEFAULT); - this.state = 4232; + this.state = 4243; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4235; + this.state = 4246; this.match(MySqlParser.KW_ON); - this.state = 4236; + this.state = 4247; this.match(MySqlParser.KW_EMPTY); } } @@ -23440,35 +23460,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4242; + this.state = 4253; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4238; + this.state = 4249; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4239; + this.state = 4250; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4240; + this.state = 4251; this.match(MySqlParser.KW_DEFAULT); - this.state = 4241; + this.state = 4252; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4244; + this.state = 4255; this.match(MySqlParser.KW_ON); - this.state = 4245; + this.state = 4256; this.match(MySqlParser.KW_ERROR); } } @@ -23491,7 +23511,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 298, MySqlParser.RULE_selectSpec); let _la: number; try { - this.state = 4255; + this.state = 4266; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: @@ -23499,7 +23519,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DISTINCTROW: this.enterOuterAlt(localContext, 1); { - this.state = 4247; + this.state = 4258; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49 || _la === 50)) { this.errorHandler.recoverInline(this); @@ -23513,35 +23533,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_HIGH_PRIORITY: this.enterOuterAlt(localContext, 2); { - this.state = 4248; + this.state = 4259; this.match(MySqlParser.KW_HIGH_PRIORITY); } break; case MySqlParser.KW_STRAIGHT_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4249; + this.state = 4260; this.match(MySqlParser.KW_STRAIGHT_JOIN); } break; case MySqlParser.KW_SQL_SMALL_RESULT: this.enterOuterAlt(localContext, 4); { - this.state = 4250; + this.state = 4261; this.match(MySqlParser.KW_SQL_SMALL_RESULT); } break; case MySqlParser.KW_SQL_BIG_RESULT: this.enterOuterAlt(localContext, 5); { - this.state = 4251; + this.state = 4262; this.match(MySqlParser.KW_SQL_BIG_RESULT); } break; case MySqlParser.KW_SQL_BUFFER_RESULT: this.enterOuterAlt(localContext, 6); { - this.state = 4252; + this.state = 4263; this.match(MySqlParser.KW_SQL_BUFFER_RESULT); } break; @@ -23549,7 +23569,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_NO_CACHE: this.enterOuterAlt(localContext, 7); { - this.state = 4253; + this.state = 4264; _la = this.tokenStream.LA(1); if(!(_la === 637 || _la === 638)) { this.errorHandler.recoverInline(this); @@ -23563,7 +23583,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_CALC_FOUND_ROWS: this.enterOuterAlt(localContext, 8); { - this.state = 4254; + this.state = 4265; this.match(MySqlParser.KW_SQL_CALC_FOUND_ROWS); } break; @@ -23592,39 +23612,39 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4259; + this.state = 4270; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { case 1: { - this.state = 4257; + this.state = 4268; this.pureAllColumns(); } break; case 2: { - this.state = 4258; + this.state = 4269; this.selectElement(); } break; } - this.state = 4265; + this.state = 4276; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4261; + this.state = 4272; this.match(MySqlParser.COMMA); - this.state = 4262; + this.state = 4273; this.selectElement(); } } } - this.state = 4267; + this.state = 4278; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); } } } @@ -23647,37 +23667,37 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 302, MySqlParser.RULE_selectElement); let _la: number; try { - this.state = 4283; + this.state = 4294; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4268; + this.state = 4279; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4269; + this.state = 4280; this.selectLiteralColumnName(); - this.state = 4274; + this.state = 4285; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { case 1: { - this.state = 4271; + this.state = 4282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4270; + this.state = 4281; this.match(MySqlParser.KW_AS); } } - this.state = 4273; + this.state = 4284; localContext._alias = this.uid(); } break; @@ -23687,24 +23707,24 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4276; + this.state = 4287; this.selectExpressionColumnName(); - this.state = 4281; + this.state = 4292; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 607, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: { - this.state = 4278; + this.state = 4289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4277; + this.state = 4288; this.match(MySqlParser.KW_AS); } } - this.state = 4280; + this.state = 4291; localContext._alias = this.uid(); } break; @@ -23733,11 +23753,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4285; + this.state = 4296; this.fullId(); - this.state = 4286; + this.state = 4297; this.match(MySqlParser.DOT); - this.state = 4287; + this.state = 4298; this.match(MySqlParser.STAR); } } @@ -23761,7 +23781,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4289; + this.state = 4300; this.match(MySqlParser.STAR); } } @@ -23785,7 +23805,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4291; + this.state = 4302; this.columnName(); } } @@ -23807,26 +23827,26 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); this.enterRule(localContext, 310, MySqlParser.RULE_selectExpressionColumnName); try { - this.state = 4299; + this.state = 4310; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: localContext = new SelectExpressionElementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4295; + this.state = 4306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 4293; + this.state = 4304; this.match(MySqlParser.LOCAL_ID); - this.state = 4294; + this.state = 4305; this.match(MySqlParser.VAR_ASSIGN); } break; } - this.state = 4297; + this.state = 4308; this.expression(0); } break; @@ -23834,7 +23854,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectFunctionElementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4298; + this.state = 4309; this.functionCall(); } break; @@ -23860,34 +23880,34 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4337; + this.state = 4348; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: localContext = new SelectIntoVariablesContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4301; + this.state = 4312; this.match(MySqlParser.KW_INTO); - this.state = 4302; + this.state = 4313; this.assignmentField(); - this.state = 4307; + this.state = 4318; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 611, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4303; + this.state = 4314; this.match(MySqlParser.COMMA); - this.state = 4304; + this.state = 4315; this.assignmentField(); } } } - this.state = 4309; + this.state = 4320; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 611, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); } } break; @@ -23895,11 +23915,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectIntoDumpFileContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4310; + this.state = 4321; this.match(MySqlParser.KW_INTO); - this.state = 4311; + this.state = 4322; this.match(MySqlParser.KW_DUMPFILE); - this.state = 4312; + this.state = 4323; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23908,32 +23928,32 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 4313; + this.state = 4324; this.match(MySqlParser.KW_INTO); - this.state = 4314; + this.state = 4325; this.match(MySqlParser.KW_OUTFILE); - this.state = 4315; + this.state = 4326; (localContext as SelectIntoTextFileContext)._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 4319; + this.state = 4330; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { case 1: { - this.state = 4316; + this.state = 4327; this.match(MySqlParser.KW_CHARACTER); - this.state = 4317; + this.state = 4328; this.match(MySqlParser.KW_SET); - this.state = 4318; + this.state = 4329; (localContext as SelectIntoTextFileContext)._charset = this.charsetName(); } break; } - this.state = 4327; + this.state = 4338; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: { - this.state = 4321; + this.state = 4332; (localContext as SelectIntoTextFileContext)._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -23943,7 +23963,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4323; + this.state = 4334; this.errorHandler.sync(this); alternative = 1; do { @@ -23951,7 +23971,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4322; + this.state = 4333; this.selectFieldsInto(); } } @@ -23959,21 +23979,21 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4325; + this.state = 4336; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 613, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 4335; + this.state = 4346; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4329; + this.state = 4340; this.match(MySqlParser.KW_LINES); - this.state = 4331; + this.state = 4342; this.errorHandler.sync(this); alternative = 1; do { @@ -23981,7 +24001,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4330; + this.state = 4341; this.selectLinesInto(); } } @@ -23989,9 +24009,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4333; + this.state = 4344; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 615, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 616, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -24020,17 +24040,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 314, MySqlParser.RULE_selectFieldsInto); let _la: number; try { - this.state = 4351; + this.state = 4362; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 1); { - this.state = 4339; + this.state = 4350; this.match(MySqlParser.KW_TERMINATED); - this.state = 4340; + this.state = 4351; this.match(MySqlParser.KW_BY); - this.state = 4341; + this.state = 4352; localContext._terminationField = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24038,32 +24058,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_OPTIONALLY: this.enterOuterAlt(localContext, 2); { - this.state = 4343; + this.state = 4354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 4342; + this.state = 4353; this.match(MySqlParser.KW_OPTIONALLY); } } - this.state = 4345; + this.state = 4356; this.match(MySqlParser.KW_ENCLOSED); - this.state = 4346; + this.state = 4357; this.match(MySqlParser.KW_BY); - this.state = 4347; + this.state = 4358; localContext._enClosion = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ESCAPED: this.enterOuterAlt(localContext, 3); { - this.state = 4348; + this.state = 4359; this.match(MySqlParser.KW_ESCAPED); - this.state = 4349; + this.state = 4360; this.match(MySqlParser.KW_BY); - this.state = 4350; + this.state = 4361; localContext._escaping = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24089,28 +24109,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectLinesIntoContext(this.context, this.state); this.enterRule(localContext, 316, MySqlParser.RULE_selectLinesInto); try { - this.state = 4359; + this.state = 4370; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_STARTING: this.enterOuterAlt(localContext, 1); { - this.state = 4353; + this.state = 4364; this.match(MySqlParser.KW_STARTING); - this.state = 4354; + this.state = 4365; this.match(MySqlParser.KW_BY); - this.state = 4355; + this.state = 4366; localContext._starting = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 2); { - this.state = 4356; + this.state = 4367; this.match(MySqlParser.KW_TERMINATED); - this.state = 4357; + this.state = 4368; this.match(MySqlParser.KW_BY); - this.state = 4358; + this.state = 4369; localContext._terminationLine = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24138,27 +24158,41 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4363; + this.state = 4374; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4361; + this.state = 4372; this.match(MySqlParser.KW_FROM); - this.state = 4362; + this.state = 4373; this.tableSources(); } break; } - this.state = 4367; + this.state = 4381; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { case 1: { - this.state = 4365; + this.state = 4376; this.match(MySqlParser.KW_WHERE); - this.state = 4366; - localContext._whereExpr = this.expression(0); + this.state = 4379; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { + case 1: + { + this.state = 4377; + localContext._whereExpr = this.expression(0); + } + break; + case 2: + { + this.state = 4378; + this.columnNamePathAllowEmpty(); + } + break; + } } break; } @@ -24185,38 +24219,38 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4369; + this.state = 4383; this.match(MySqlParser.KW_GROUP); - this.state = 4370; + this.state = 4384; this.match(MySqlParser.KW_BY); - this.state = 4371; + this.state = 4385; this.groupByItem(); - this.state = 4376; + this.state = 4390; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4372; + this.state = 4386; this.match(MySqlParser.COMMA); - this.state = 4373; + this.state = 4387; this.groupByItem(); } } } - this.state = 4378; + this.state = 4392; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); } - this.state = 4381; + this.state = 4395; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 4379; + this.state = 4393; this.match(MySqlParser.KW_WITH); - this.state = 4380; + this.state = 4394; this.match(MySqlParser.KW_ROLLUP); } break; @@ -24243,9 +24277,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4383; + this.state = 4397; this.match(MySqlParser.KW_HAVING); - this.state = 4384; + this.state = 4398; localContext._havingExpr = this.expression(0); } } @@ -24270,43 +24304,43 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4386; + this.state = 4400; this.match(MySqlParser.KW_WINDOW); - this.state = 4387; + this.state = 4401; this.windowName(); - this.state = 4388; + this.state = 4402; this.match(MySqlParser.KW_AS); - this.state = 4389; + this.state = 4403; this.match(MySqlParser.LR_BRACKET); - this.state = 4390; + this.state = 4404; this.windowSpec(); - this.state = 4391; + this.state = 4405; this.match(MySqlParser.RR_BRACKET); - this.state = 4401; + this.state = 4415; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 627, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4392; + this.state = 4406; this.match(MySqlParser.COMMA); - this.state = 4393; + this.state = 4407; this.windowName(); - this.state = 4394; + this.state = 4408; this.match(MySqlParser.KW_AS); - this.state = 4395; + this.state = 4409; this.match(MySqlParser.LR_BRACKET); - this.state = 4396; + this.state = 4410; this.windowSpec(); - this.state = 4397; + this.state = 4411; this.match(MySqlParser.RR_BRACKET); } } } - this.state = 4403; + this.state = 4417; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 627, this.context); } } } @@ -24331,14 +24365,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4404; + this.state = 4418; this.expression(0); - this.state = 4406; + this.state = 4420; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { case 1: { - this.state = 4405; + this.state = 4419; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -24373,36 +24407,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4408; + this.state = 4422; this.match(MySqlParser.KW_LIMIT); - this.state = 4419; + this.state = 4433; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 4412; + this.state = 4426; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { case 1: { - this.state = 4409; + this.state = 4423; localContext._offset = this.limitClauseAtom(); - this.state = 4410; + this.state = 4424; this.match(MySqlParser.COMMA); } break; } - this.state = 4414; + this.state = 4428; localContext._limit = this.limitClauseAtom(); } break; case 2: { - this.state = 4415; + this.state = 4429; localContext._limit = this.limitClauseAtom(); - this.state = 4416; + this.state = 4430; this.match(MySqlParser.KW_OFFSET); - this.state = 4417; + this.state = 4431; localContext._offset = this.limitClauseAtom(); } break; @@ -24427,7 +24461,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new LimitClauseAtomContext(this.context, this.state); this.enterRule(localContext, 330, MySqlParser.RULE_limitClauseAtom); try { - this.state = 4424; + this.state = 4438; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -24438,7 +24472,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4421; + this.state = 4435; this.decimalLiteral(); } break; @@ -24446,7 +24480,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 4422; + this.state = 4436; this.mysqlVariable(); } break; @@ -24999,7 +25033,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 4423; + this.state = 4437; this.simpleId(); } break; @@ -25028,30 +25062,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4426; + this.state = 4440; this.match(MySqlParser.KW_START); - this.state = 4427; + this.state = 4441; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4436; + this.state = 4450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { case 1: { - this.state = 4428; + this.state = 4442; this.transactionMode(); - this.state = 4433; + this.state = 4447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4429; + this.state = 4443; this.match(MySqlParser.COMMA); - this.state = 4430; + this.state = 4444; this.transactionMode(); } } - this.state = 4435; + this.state = 4449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25081,14 +25115,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4438; + this.state = 4452; this.match(MySqlParser.KW_BEGIN); - this.state = 4440; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4439; + this.state = 4453; this.match(MySqlParser.KW_WORK); } } @@ -25116,56 +25150,56 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4442; + this.state = 4456; this.match(MySqlParser.KW_COMMIT); - this.state = 4444; + this.state = 4458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4443; + this.state = 4457; this.match(MySqlParser.KW_WORK); } } - this.state = 4451; + this.state = 4465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4446; + this.state = 4460; this.match(MySqlParser.KW_AND); - this.state = 4448; + this.state = 4462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4447; + this.state = 4461; localContext._noChain = this.match(MySqlParser.KW_NO); } } - this.state = 4450; + this.state = 4464; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4457; + this.state = 4471; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { case 1: { - this.state = 4454; + this.state = 4468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4453; + this.state = 4467; localContext._noRelease = this.match(MySqlParser.KW_NO); } } - this.state = 4456; + this.state = 4470; this.match(MySqlParser.KW_RELEASE); } break; @@ -25193,56 +25227,56 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4459; + this.state = 4473; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4461; + this.state = 4475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4460; + this.state = 4474; this.match(MySqlParser.KW_WORK); } } - this.state = 4468; + this.state = 4482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4463; + this.state = 4477; this.match(MySqlParser.KW_AND); - this.state = 4465; + this.state = 4479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4464; + this.state = 4478; localContext._noChain = this.match(MySqlParser.KW_NO); } } - this.state = 4467; + this.state = 4481; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4474; + this.state = 4488; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 642, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: { - this.state = 4471; + this.state = 4485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4470; + this.state = 4484; localContext._noRelease = this.match(MySqlParser.KW_NO); } } - this.state = 4473; + this.state = 4487; this.match(MySqlParser.KW_RELEASE); } break; @@ -25269,9 +25303,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4476; + this.state = 4490; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4477; + this.state = 4491; localContext._identifier = this.uid(); } } @@ -25296,31 +25330,31 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4479; + this.state = 4493; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4481; + this.state = 4495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4480; + this.state = 4494; this.match(MySqlParser.KW_WORK); } } - this.state = 4483; + this.state = 4497; this.match(MySqlParser.KW_TO); - this.state = 4485; + this.state = 4499; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { case 1: { - this.state = 4484; + this.state = 4498; this.match(MySqlParser.KW_SAVEPOINT); } break; } - this.state = 4487; + this.state = 4501; localContext._identifier = this.uid(); } } @@ -25344,11 +25378,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4489; + this.state = 4503; this.match(MySqlParser.KW_RELEASE); - this.state = 4490; + this.state = 4504; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4491; + this.state = 4505; localContext._identifier = this.uid(); } } @@ -25373,9 +25407,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4493; + this.state = 4507; this.match(MySqlParser.KW_LOCK); - this.state = 4494; + this.state = 4508; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -25384,21 +25418,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4495; + this.state = 4509; this.lockTableElement(); - this.state = 4500; + this.state = 4514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4496; + this.state = 4510; this.match(MySqlParser.COMMA); - this.state = 4497; + this.state = 4511; this.lockTableElement(); } } - this.state = 4502; + this.state = 4516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25424,9 +25458,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4503; + this.state = 4517; this.match(MySqlParser.KW_UNLOCK); - this.state = 4504; + this.state = 4518; this.match(MySqlParser.KW_TABLES); } } @@ -25451,13 +25485,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4506; + this.state = 4520; this.match(MySqlParser.KW_SET); - this.state = 4507; + this.state = 4521; this.match(MySqlParser.KW_AUTOCOMMIT); - this.state = 4508; + this.state = 4522; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4509; + this.state = 4523; localContext._autocommitValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -25490,14 +25524,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4511; + this.state = 4525; this.match(MySqlParser.KW_SET); - this.state = 4513; + this.state = 4527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 4512; + this.state = 4526; localContext._transactionContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { @@ -25510,23 +25544,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4515; + this.state = 4529; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4516; + this.state = 4530; this.transactionOption(); - this.state = 4521; + this.state = 4535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4517; + this.state = 4531; this.match(MySqlParser.COMMA); - this.state = 4518; + this.state = 4532; this.transactionOption(); } } - this.state = 4523; + this.state = 4537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25550,35 +25584,35 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionModeContext(this.context, this.state); this.enterRule(localContext, 354, MySqlParser.RULE_transactionMode); try { - this.state = 4531; + this.state = 4545; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4524; + this.state = 4538; this.match(MySqlParser.KW_WITH); - this.state = 4525; + this.state = 4539; this.match(MySqlParser.KW_CONSISTENT); - this.state = 4526; + this.state = 4540; this.match(MySqlParser.KW_SNAPSHOT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4527; + this.state = 4541; this.match(MySqlParser.KW_READ); - this.state = 4528; + this.state = 4542; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4529; + this.state = 4543; this.match(MySqlParser.KW_READ); - this.state = 4530; + this.state = 4544; this.match(MySqlParser.KW_ONLY); } break; @@ -25605,29 +25639,29 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4533; + this.state = 4547; this.tableName(); - this.state = 4538; + this.state = 4552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4535; + this.state = 4549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4534; + this.state = 4548; this.match(MySqlParser.KW_AS); } } - this.state = 4537; + this.state = 4551; localContext._alias = this.uid(); } } - this.state = 4540; + this.state = 4554; this.lockAction(); } } @@ -25650,20 +25684,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 358, MySqlParser.RULE_lockAction); let _la: number; try { - this.state = 4550; + this.state = 4564; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 4542; + this.state = 4556; this.match(MySqlParser.KW_READ); - this.state = 4544; + this.state = 4558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 4543; + this.state = 4557; this.match(MySqlParser.KW_LOCAL); } } @@ -25674,17 +25708,17 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_WRITE: this.enterOuterAlt(localContext, 2); { - this.state = 4547; + this.state = 4561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 4546; + this.state = 4560; this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 4549; + this.state = 4563; this.match(MySqlParser.KW_WRITE); } break; @@ -25710,35 +25744,35 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionOptionContext(this.context, this.state); this.enterRule(localContext, 360, MySqlParser.RULE_transactionOption); try { - this.state = 4559; + this.state = 4573; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4552; + this.state = 4566; this.match(MySqlParser.KW_ISOLATION); - this.state = 4553; + this.state = 4567; this.match(MySqlParser.KW_LEVEL); - this.state = 4554; + this.state = 4568; this.transactionLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4555; + this.state = 4569; this.match(MySqlParser.KW_READ); - this.state = 4556; + this.state = 4570; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4557; + this.state = 4571; this.match(MySqlParser.KW_READ); - this.state = 4558; + this.state = 4572; this.match(MySqlParser.KW_ONLY); } break; @@ -25762,40 +25796,40 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionLevelContext(this.context, this.state); this.enterRule(localContext, 362, MySqlParser.RULE_transactionLevel); try { - this.state = 4568; + this.state = 4582; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 657, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4561; + this.state = 4575; this.match(MySqlParser.KW_REPEATABLE); - this.state = 4562; + this.state = 4576; this.match(MySqlParser.KW_READ); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4563; + this.state = 4577; this.match(MySqlParser.KW_READ); - this.state = 4564; + this.state = 4578; this.match(MySqlParser.KW_COMMITTED); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4565; + this.state = 4579; this.match(MySqlParser.KW_READ); - this.state = 4566; + this.state = 4580; this.match(MySqlParser.KW_UNCOMMITTED); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4567; + this.state = 4581; this.match(MySqlParser.KW_SERIALIZABLE); } break; @@ -25822,36 +25856,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4570; + this.state = 4584; this.match(MySqlParser.KW_CHANGE); - this.state = 4571; + this.state = 4585; this.match(MySqlParser.KW_MASTER); - this.state = 4572; + this.state = 4586; this.match(MySqlParser.KW_TO); - this.state = 4573; + this.state = 4587; this.masterOption(); - this.state = 4578; + this.state = 4592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4574; + this.state = 4588; this.match(MySqlParser.COMMA); - this.state = 4575; + this.state = 4589; this.masterOption(); } } - this.state = 4580; + this.state = 4594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4582; + this.state = 4596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4581; + this.state = 4595; this.channelOption(); } } @@ -25879,36 +25913,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4584; + this.state = 4598; this.match(MySqlParser.KW_CHANGE); - this.state = 4585; + this.state = 4599; this.match(MySqlParser.KW_REPLICATION); - this.state = 4586; + this.state = 4600; this.match(MySqlParser.KW_FILTER); - this.state = 4587; + this.state = 4601; this.replicationFilter(); - this.state = 4592; + this.state = 4606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4588; + this.state = 4602; this.match(MySqlParser.COMMA); - this.state = 4589; + this.state = 4603; this.replicationFilter(); } } - this.state = 4594; + this.state = 4608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4596; + this.state = 4610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4595; + this.state = 4609; this.channelOption(); } } @@ -25936,38 +25970,38 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4598; + this.state = 4612; this.match(MySqlParser.KW_CHANGE); - this.state = 4599; + this.state = 4613; this.match(MySqlParser.KW_REPLICATION); - this.state = 4600; + this.state = 4614; this.match(MySqlParser.KW_SOURCE); - this.state = 4601; + this.state = 4615; this.match(MySqlParser.KW_TO); - this.state = 4602; + this.state = 4616; this.replicationSourceOption(); - this.state = 4607; + this.state = 4621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4603; + this.state = 4617; this.match(MySqlParser.COMMA); - this.state = 4604; + this.state = 4618; this.replicationSourceOption(); } } - this.state = 4609; + this.state = 4623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4611; + this.state = 4625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4610; + this.state = 4624; this.channelOption(); } } @@ -25995,9 +26029,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4613; + this.state = 4627; this.match(MySqlParser.KW_PURGE); - this.state = 4614; + this.state = 4628; localContext._purgeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -26007,24 +26041,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4615; + this.state = 4629; this.match(MySqlParser.KW_LOGS); - this.state = 4620; + this.state = 4634; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 4616; + this.state = 4630; this.match(MySqlParser.KW_TO); - this.state = 4617; + this.state = 4631; localContext._fileName = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_BEFORE: { - this.state = 4618; + this.state = 4632; this.match(MySqlParser.KW_BEFORE); - this.state = 4619; + this.state = 4633; localContext._timeValue = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26054,9 +26088,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4622; + this.state = 4636; this.match(MySqlParser.KW_START); - this.state = 4623; + this.state = 4637; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -26065,64 +26099,64 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4632; + this.state = 4646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4624; + this.state = 4638; this.threadType(); - this.state = 4629; + this.state = 4643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4625; + this.state = 4639; this.match(MySqlParser.COMMA); - this.state = 4626; + this.state = 4640; this.threadType(); } } - this.state = 4631; + this.state = 4645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4636; + this.state = 4650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 4634; + this.state = 4648; this.match(MySqlParser.KW_UNTIL); - this.state = 4635; + this.state = 4649; this.untilOption(); } } - this.state = 4641; + this.state = 4655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 363 || _la === 529 || _la === 535 || _la === 678) { { { - this.state = 4638; + this.state = 4652; this.connectionOptions(); } } - this.state = 4643; + this.state = 4657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4645; + this.state = 4659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4644; + this.state = 4658; this.channelOption(); } } @@ -26150,9 +26184,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4647; + this.state = 4661; this.match(MySqlParser.KW_STOP); - this.state = 4648; + this.state = 4662; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -26161,38 +26195,38 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4657; + this.state = 4671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4649; + this.state = 4663; this.threadType(); - this.state = 4654; + this.state = 4668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4650; + this.state = 4664; this.match(MySqlParser.COMMA); - this.state = 4651; + this.state = 4665; this.threadType(); } } - this.state = 4656; + this.state = 4670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4660; + this.state = 4674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4659; + this.state = 4673; this.channelOption(); } } @@ -26220,52 +26254,52 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4662; + this.state = 4676; this.match(MySqlParser.KW_START); - this.state = 4663; + this.state = 4677; this.match(MySqlParser.KW_GROUP_REPLICATION); - this.state = 4667; + this.state = 4681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4664; + this.state = 4678; this.match(MySqlParser.KW_USER); - this.state = 4665; + this.state = 4679; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4666; + this.state = 4680; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 4673; + this.state = 4687; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 672, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { case 1: { - this.state = 4669; + this.state = 4683; this.match(MySqlParser.COMMA); - this.state = 4670; + this.state = 4684; this.match(MySqlParser.KW_PASSWORD); - this.state = 4671; + this.state = 4685; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4672; + this.state = 4686; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 4679; + this.state = 4693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 4675; + this.state = 4689; this.match(MySqlParser.COMMA); - this.state = 4676; + this.state = 4690; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4677; + this.state = 4691; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4678; + this.state = 4692; this.match(MySqlParser.STRING_LITERAL); } } @@ -26292,9 +26326,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4681; + this.state = 4695; this.match(MySqlParser.KW_STOP); - this.state = 4682; + this.state = 4696; this.match(MySqlParser.KW_GROUP_REPLICATION); } } @@ -26317,7 +26351,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 380, MySqlParser.RULE_masterOption); let _la: number; try { - this.state = 4711; + this.state = 4725; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER_BIND: @@ -26341,11 +26375,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4684; + this.state = 4698; this.stringMasterOption(); - this.state = 4685; + this.state = 4699; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4686; + this.state = 4700; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26360,11 +26394,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4688; + this.state = 4702; this.decimalMasterOption(); - this.state = 4689; + this.state = 4703; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4690; + this.state = 4704; this.decimalLiteral(); } break; @@ -26378,11 +26412,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4692; + this.state = 4706; this.boolMasterOption(); - this.state = 4693; + this.state = 4707; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4694; + this.state = 4708; (localContext as MasterBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26400,7 +26434,7 @@ export class MySqlParser extends SQLParserBase { localContext = new V8AddMasterOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4696; + this.state = 4710; this.v8NewMasterOption(); } break; @@ -26408,39 +26442,39 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4697; + this.state = 4711; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4698; + this.state = 4712; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4699; + this.state = 4713; this.match(MySqlParser.LR_BRACKET); - this.state = 4708; + this.state = 4722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4700; + this.state = 4714; (localContext as MasterUidListOptionContext)._server_id = this.uid(); - this.state = 4705; + this.state = 4719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4701; + this.state = 4715; this.match(MySqlParser.COMMA); - this.state = 4702; + this.state = 4716; (localContext as MasterUidListOptionContext)._server_id = this.uid(); } } - this.state = 4707; + this.state = 4721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4710; + this.state = 4724; this.match(MySqlParser.RR_BRACKET); } break; @@ -26469,7 +26503,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4713; + this.state = 4727; _la = this.tokenStream.LA(1); if(!(_la === 108 || ((((_la - 455)) & ~0x1F) === 0 && ((1 << (_la - 455)) & 4190897) !== 0) || _la === 499 || _la === 557)) { this.errorHandler.recoverInline(this); @@ -26501,7 +26535,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4715; + this.state = 4729; _la = this.tokenStream.LA(1); if(!(((((_la - 456)) & ~0x1F) === 0 && ((1 << (_la - 456)) & 2097831) !== 0) || _la === 558)) { this.errorHandler.recoverInline(this); @@ -26533,7 +26567,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4717; + this.state = 4731; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 411 || _la === 416 || _la === 454 || _la === 466 || _la === 573 || _la === 617)) { this.errorHandler.recoverInline(this); @@ -26563,17 +26597,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 388, MySqlParser.RULE_v8NewMasterOption); let _la: number; try { - this.state = 4732; + this.state = 4746; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4719; + this.state = 4733; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4720; + this.state = 4734; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4721; + this.state = 4735; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26587,11 +26621,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4722; + this.state = 4736; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4723; + this.state = 4737; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4724; + this.state = 4738; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26605,22 +26639,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4725; + this.state = 4739; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4726; + this.state = 4740; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4730; + this.state = 4744; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4727; + this.state = 4741; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4728; + this.state = 4742; this.match(MySqlParser.KW_LOCAL); } break; @@ -26632,7 +26666,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4729; + this.state = 4743; this.gtuidSet(); } break; @@ -26664,7 +26698,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 390, MySqlParser.RULE_replicationSourceOption); let _la: number; try { - this.state = 4761; + this.state = 4775; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NETWORK_NAMESPACE: @@ -26688,11 +26722,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4734; + this.state = 4748; this.stringSourceOption(); - this.state = 4735; + this.state = 4749; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4736; + this.state = 4750; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26707,11 +26741,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4738; + this.state = 4752; this.decimalSourceOption(); - this.state = 4739; + this.state = 4753; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4740; + this.state = 4754; this.decimalLiteral(); } break; @@ -26725,11 +26759,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4742; + this.state = 4756; this.boolSourceOption(); - this.state = 4743; + this.state = 4757; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4744; + this.state = 4758; (localContext as SourceBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26747,7 +26781,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceOtherOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4746; + this.state = 4760; this.otherSourceOption(); } break; @@ -26755,39 +26789,39 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4747; + this.state = 4761; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4748; + this.state = 4762; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4749; + this.state = 4763; this.match(MySqlParser.LR_BRACKET); - this.state = 4758; + this.state = 4772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4750; + this.state = 4764; (localContext as SourceUidListOptionContext)._server_id = this.uid(); - this.state = 4755; + this.state = 4769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4751; + this.state = 4765; this.match(MySqlParser.COMMA); - this.state = 4752; + this.state = 4766; (localContext as SourceUidListOptionContext)._server_id = this.uid(); } } - this.state = 4757; + this.state = 4771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4760; + this.state = 4774; this.match(MySqlParser.RR_BRACKET); } break; @@ -26816,7 +26850,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4763; + this.state = 4777; _la = this.tokenStream.LA(1); if(!(_la === 499 || _la === 557 || ((((_la - 606)) & ~0x1F) === 0 && ((1 << (_la - 606)) & 125771823) !== 0))) { this.errorHandler.recoverInline(this); @@ -26848,7 +26882,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4765; + this.state = 4779; _la = this.tokenStream.LA(1); if(!(_la === 558 || ((((_la - 610)) & ~0x1F) === 0 && ((1 << (_la - 610)) & 1397) !== 0))) { this.errorHandler.recoverInline(this); @@ -26880,7 +26914,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4767; + this.state = 4781; _la = this.tokenStream.LA(1); if(!(_la === 412 || _la === 416 || _la === 573 || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 65809) !== 0))) { this.errorHandler.recoverInline(this); @@ -26910,17 +26944,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 398, MySqlParser.RULE_otherSourceOption); let _la: number; try { - this.state = 4782; + this.state = 4796; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4769; + this.state = 4783; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4770; + this.state = 4784; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4771; + this.state = 4785; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26934,11 +26968,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4772; + this.state = 4786; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4773; + this.state = 4787; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4774; + this.state = 4788; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26952,22 +26986,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4775; + this.state = 4789; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4776; + this.state = 4790; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4780; + this.state = 4794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4777; + this.state = 4791; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4778; + this.state = 4792; this.match(MySqlParser.KW_LOCAL); } break; @@ -26979,7 +27013,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4779; + this.state = 4793; this.gtuidSet(); } break; @@ -27012,11 +27046,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4784; + this.state = 4798; this.match(MySqlParser.KW_FOR); - this.state = 4785; + this.state = 4799; this.match(MySqlParser.KW_CHANNEL); - this.state = 4786; + this.state = 4800; this.match(MySqlParser.STRING_LITERAL); } } @@ -27039,38 +27073,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 402, MySqlParser.RULE_replicationFilter); let _la: number; try { - this.state = 4851; + this.state = 4865; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_REPLICATE_DO_DB: localContext = new DoDbReplicationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4788; + this.state = 4802; this.match(MySqlParser.KW_REPLICATE_DO_DB); - this.state = 4789; + this.state = 4803; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4790; + this.state = 4804; this.match(MySqlParser.LR_BRACKET); - this.state = 4791; + this.state = 4805; this.databaseName(); - this.state = 4796; + this.state = 4810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4792; + this.state = 4806; this.match(MySqlParser.COMMA); - this.state = 4793; + this.state = 4807; this.databaseName(); } } - this.state = 4798; + this.state = 4812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4799; + this.state = 4813; this.match(MySqlParser.RR_BRACKET); } break; @@ -27078,31 +27112,31 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreDbReplicationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4801; + this.state = 4815; this.match(MySqlParser.KW_REPLICATE_IGNORE_DB); - this.state = 4802; + this.state = 4816; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4803; + this.state = 4817; this.match(MySqlParser.LR_BRACKET); - this.state = 4804; + this.state = 4818; this.databaseName(); - this.state = 4809; + this.state = 4823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4805; + this.state = 4819; this.match(MySqlParser.COMMA); - this.state = 4806; + this.state = 4820; this.databaseName(); } } - this.state = 4811; + this.state = 4825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4812; + this.state = 4826; this.match(MySqlParser.RR_BRACKET); } break; @@ -27110,15 +27144,15 @@ export class MySqlParser extends SQLParserBase { localContext = new DoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4814; + this.state = 4828; this.match(MySqlParser.KW_REPLICATE_DO_TABLE); - this.state = 4815; + this.state = 4829; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4816; + this.state = 4830; this.match(MySqlParser.LR_BRACKET); - this.state = 4817; + this.state = 4831; this.tableNames(); - this.state = 4818; + this.state = 4832; this.match(MySqlParser.RR_BRACKET); } break; @@ -27126,15 +27160,15 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4820; + this.state = 4834; this.match(MySqlParser.KW_REPLICATE_IGNORE_TABLE); - this.state = 4821; + this.state = 4835; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4822; + this.state = 4836; this.match(MySqlParser.LR_BRACKET); - this.state = 4823; + this.state = 4837; this.tableNames(); - this.state = 4824; + this.state = 4838; this.match(MySqlParser.RR_BRACKET); } break; @@ -27142,15 +27176,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildDoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4826; + this.state = 4840; this.match(MySqlParser.KW_REPLICATE_WILD_DO_TABLE); - this.state = 4827; + this.state = 4841; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4828; + this.state = 4842; this.match(MySqlParser.LR_BRACKET); - this.state = 4829; + this.state = 4843; this.simpleStrings(); - this.state = 4830; + this.state = 4844; this.match(MySqlParser.RR_BRACKET); } break; @@ -27158,15 +27192,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildIgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4832; + this.state = 4846; this.match(MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE); - this.state = 4833; + this.state = 4847; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4834; + this.state = 4848; this.match(MySqlParser.LR_BRACKET); - this.state = 4835; + this.state = 4849; this.simpleStrings(); - this.state = 4836; + this.state = 4850; this.match(MySqlParser.RR_BRACKET); } break; @@ -27174,31 +27208,31 @@ export class MySqlParser extends SQLParserBase { localContext = new RewriteDbReplicationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 4838; + this.state = 4852; this.match(MySqlParser.KW_REPLICATE_REWRITE_DB); - this.state = 4839; + this.state = 4853; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4840; + this.state = 4854; this.match(MySqlParser.LR_BRACKET); - this.state = 4841; + this.state = 4855; this.tablePair(); - this.state = 4846; + this.state = 4860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4842; + this.state = 4856; this.match(MySqlParser.COMMA); - this.state = 4843; + this.state = 4857; this.tablePair(); } } - this.state = 4848; + this.state = 4862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4849; + this.state = 4863; this.match(MySqlParser.RR_BRACKET); } break; @@ -27226,15 +27260,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4853; + this.state = 4867; this.match(MySqlParser.LR_BRACKET); - this.state = 4854; + this.state = 4868; localContext._firstTable = this.tableName(); - this.state = 4855; + this.state = 4869; this.match(MySqlParser.COMMA); - this.state = 4856; + this.state = 4870; localContext._secondTable = this.tableName(); - this.state = 4857; + this.state = 4871; this.match(MySqlParser.RR_BRACKET); } } @@ -27259,7 +27293,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4859; + this.state = 4873; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 639)) { this.errorHandler.recoverInline(this); @@ -27289,7 +27323,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 408, MySqlParser.RULE_untilOption); let _la: number; try { - this.state = 4886; + this.state = 4900; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQL_AFTER_GTIDS: @@ -27297,7 +27331,7 @@ export class MySqlParser extends SQLParserBase { localContext = new GtidsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4861; + this.state = 4875; (localContext as GtidsUntilOptionContext)._gtids = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 633 || _la === 635)) { @@ -27307,9 +27341,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4862; + this.state = 4876; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4863; + this.state = 4877; this.gtuidSet(); } break; @@ -27317,19 +27351,19 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4864; + this.state = 4878; this.match(MySqlParser.KW_MASTER_LOG_FILE); - this.state = 4865; + this.state = 4879; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4866; + this.state = 4880; this.match(MySqlParser.STRING_LITERAL); - this.state = 4867; + this.state = 4881; this.match(MySqlParser.COMMA); - this.state = 4868; + this.state = 4882; this.match(MySqlParser.KW_MASTER_LOG_POS); - this.state = 4869; + this.state = 4883; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4870; + this.state = 4884; this.decimalLiteral(); } break; @@ -27337,19 +27371,19 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4871; + this.state = 4885; this.match(MySqlParser.KW_SOURCE_LOG_FILE); - this.state = 4872; + this.state = 4886; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4873; + this.state = 4887; this.match(MySqlParser.STRING_LITERAL); - this.state = 4874; + this.state = 4888; this.match(MySqlParser.COMMA); - this.state = 4875; + this.state = 4889; this.match(MySqlParser.KW_SOURCE_LOG_POS); - this.state = 4876; + this.state = 4890; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4877; + this.state = 4891; this.decimalLiteral(); } break; @@ -27357,19 +27391,19 @@ export class MySqlParser extends SQLParserBase { localContext = new RelayLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4878; + this.state = 4892; this.match(MySqlParser.KW_RELAY_LOG_FILE); - this.state = 4879; + this.state = 4893; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4880; + this.state = 4894; this.match(MySqlParser.STRING_LITERAL); - this.state = 4881; + this.state = 4895; this.match(MySqlParser.COMMA); - this.state = 4882; + this.state = 4896; this.match(MySqlParser.KW_RELAY_LOG_POS); - this.state = 4883; + this.state = 4897; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4884; + this.state = 4898; this.decimalLiteral(); } break; @@ -27377,7 +27411,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SqlGapsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4885; + this.state = 4899; this.match(MySqlParser.KW_SQL_AFTER_MTS_GAPS); } break; @@ -27403,18 +27437,18 @@ export class MySqlParser extends SQLParserBase { let localContext = new ConnectionOptionsContext(this.context, this.state); this.enterRule(localContext, 410, MySqlParser.RULE_connectionOptions); try { - this.state = 4900; + this.state = 4914; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_USER: localContext = new UserConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4888; + this.state = 4902; this.match(MySqlParser.KW_USER); - this.state = 4889; + this.state = 4903; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4890; + this.state = 4904; (localContext as UserConnectionOptionContext)._conOptUser = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27422,11 +27456,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4891; + this.state = 4905; this.match(MySqlParser.KW_PASSWORD); - this.state = 4892; + this.state = 4906; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4893; + this.state = 4907; (localContext as PasswordConnectionOptionContext)._conOptPassword = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27434,11 +27468,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultAuthConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4894; + this.state = 4908; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4895; + this.state = 4909; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4896; + this.state = 4910; (localContext as DefaultAuthConnectionOptionContext)._conOptDefAuth = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27446,11 +27480,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PluginDirConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4897; + this.state = 4911; this.match(MySqlParser.KW_PLUGIN_DIR); - this.state = 4898; + this.state = 4912; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4899; + this.state = 4913; (localContext as PluginDirConnectionOptionContext)._conOptPluginDir = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27477,7 +27511,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 412, MySqlParser.RULE_gtuidSet); try { let alternative: number; - this.state = 4911; + this.state = 4925; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -27488,32 +27522,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4902; + this.state = 4916; this.uuidSet(); - this.state = 4907; + this.state = 4921; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4903; + this.state = 4917; this.match(MySqlParser.COMMA); - this.state = 4904; + this.state = 4918; this.uuidSet(); } } } - this.state = 4909; + this.state = 4923; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); } } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 4910; + this.state = 4924; this.match(MySqlParser.STRING_LITERAL); } break; @@ -27542,9 +27576,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4913; + this.state = 4927; this.match(MySqlParser.KW_XA); - this.state = 4914; + this.state = 4928; localContext._xaStart = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 317 || _la === 640)) { @@ -27554,14 +27588,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4915; + this.state = 4929; this.xid(); - this.state = 4917; + this.state = 4931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 577) { { - this.state = 4916; + this.state = 4930; localContext._xaAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 577)) { @@ -27597,27 +27631,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4919; + this.state = 4933; this.match(MySqlParser.KW_XA); - this.state = 4920; + this.state = 4934; this.match(MySqlParser.KW_END); - this.state = 4921; + this.state = 4935; this.xid(); - this.state = 4927; + this.state = 4941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 654) { { - this.state = 4922; + this.state = 4936; this.match(MySqlParser.KW_SUSPEND); - this.state = 4925; + this.state = 4939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4923; + this.state = 4937; this.match(MySqlParser.KW_FOR); - this.state = 4924; + this.state = 4938; this.match(MySqlParser.KW_MIGRATE); } } @@ -27647,11 +27681,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4929; + this.state = 4943; this.match(MySqlParser.KW_XA); - this.state = 4930; + this.state = 4944; this.match(MySqlParser.KW_PREPARE); - this.state = 4931; + this.state = 4945; this.xid(); } } @@ -27676,20 +27710,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4933; + this.state = 4947; this.match(MySqlParser.KW_XA); - this.state = 4934; + this.state = 4948; this.match(MySqlParser.KW_COMMIT); - this.state = 4935; + this.state = 4949; this.xid(); - this.state = 4938; + this.state = 4952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 4936; + this.state = 4950; this.match(MySqlParser.KW_ONE); - this.state = 4937; + this.state = 4951; this.match(MySqlParser.KW_PHASE); } } @@ -27716,11 +27750,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4940; + this.state = 4954; this.match(MySqlParser.KW_XA); - this.state = 4941; + this.state = 4955; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4942; + this.state = 4956; this.xid(); } } @@ -27745,18 +27779,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4944; + this.state = 4958; this.match(MySqlParser.KW_XA); - this.state = 4945; + this.state = 4959; this.match(MySqlParser.KW_RECOVER); - this.state = 4948; + this.state = 4962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 4946; + this.state = 4960; this.match(MySqlParser.KW_CONVERT); - this.state = 4947; + this.state = 4961; this.xid(); } } @@ -27783,24 +27817,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4950; + this.state = 4964; this.match(MySqlParser.KW_PREPARE); - this.state = 4951; + this.state = 4965; localContext._stmt_name = this.uid(); - this.state = 4952; + this.state = 4966; this.match(MySqlParser.KW_FROM); - this.state = 4955; + this.state = 4969; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 4953; + this.state = 4967; localContext._query = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.LOCAL_ID: { - this.state = 4954; + this.state = 4968; localContext._variable = this.match(MySqlParser.LOCAL_ID); } break; @@ -27830,18 +27864,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4957; + this.state = 4971; this.match(MySqlParser.KW_EXECUTE); - this.state = 4958; + this.state = 4972; localContext._stmt_name = this.uid(); - this.state = 4961; + this.state = 4975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 4959; + this.state = 4973; this.match(MySqlParser.KW_USING); - this.state = 4960; + this.state = 4974; this.userVariables(); } } @@ -27869,7 +27903,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4963; + this.state = 4977; localContext._dropFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 51 || _la === 362)) { @@ -27879,9 +27913,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4964; + this.state = 4978; this.match(MySqlParser.KW_PREPARE); - this.state = 4965; + this.state = 4979; localContext._stmt_name = this.uid(); } } @@ -27903,20 +27937,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new RoutineBodyContext(this.context, this.state); this.enterRule(localContext, 432, MySqlParser.RULE_routineBody); try { - this.state = 4969; + this.state = 4983; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 699, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4967; + this.state = 4981; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4968; + this.state = 4982; this.sqlStatement(); } break; @@ -27944,114 +27978,114 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4974; + this.state = 4988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 700, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { case 1: { - this.state = 4971; + this.state = 4985; localContext._begin = this.uid(); - this.state = 4972; + this.state = 4986; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4976; + this.state = 4990; this.match(MySqlParser.KW_BEGIN); - this.state = 4982; + this.state = 4996; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 701, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4977; + this.state = 4991; this.declareVariable(); - this.state = 4978; + this.state = 4992; this.match(MySqlParser.SEMI); } } } - this.state = 4984; + this.state = 4998; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 701, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); } - this.state = 4990; + this.state = 5004; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4985; + this.state = 4999; this.declareCondition(); - this.state = 4986; + this.state = 5000; this.match(MySqlParser.SEMI); } } } - this.state = 4992; + this.state = 5006; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); } - this.state = 4998; + this.state = 5012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4993; + this.state = 5007; this.declareCursor(); - this.state = 4994; + this.state = 5008; this.match(MySqlParser.SEMI); } } } - this.state = 5000; + this.state = 5014; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); } - this.state = 5006; + this.state = 5020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 41) { { { - this.state = 5001; + this.state = 5015; this.declareHandler(); - this.state = 5002; + this.state = 5016; this.match(MySqlParser.SEMI); } } - this.state = 5008; + this.state = 5022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5012; + this.state = 5026; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 707, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5009; + this.state = 5023; this.procedureSqlStatement(); } } } - this.state = 5014; + this.state = 5028; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 707, this.context); } - this.state = 5015; + this.state = 5029; this.match(MySqlParser.KW_END); - this.state = 5017; + this.state = 5031; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 706, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { case 1: { - this.state = 5016; + this.state = 5030; localContext._end = this.uid(); } break; @@ -28080,46 +28114,46 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5019; + this.state = 5033; this.match(MySqlParser.KW_CASE); - this.state = 5022; + this.state = 5036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { case 1: { - this.state = 5020; + this.state = 5034; localContext._case_value = this.uid(); } break; case 2: { - this.state = 5021; + this.state = 5035; this.expression(0); } break; } - this.state = 5025; + this.state = 5039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5024; + this.state = 5038; this.caseAlternative(); } } - this.state = 5027; + this.state = 5041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 5035; + this.state = 5049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5029; + this.state = 5043; this.match(MySqlParser.KW_ELSE); - this.state = 5031; + this.state = 5045; this.errorHandler.sync(this); alternative = 1; do { @@ -28127,7 +28161,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5030; + this.state = 5044; this.procedureSqlStatement(); } } @@ -28135,16 +28169,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5033; + this.state = 5047; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 709, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5037; + this.state = 5051; this.match(MySqlParser.KW_END); - this.state = 5038; + this.state = 5052; this.match(MySqlParser.KW_CASE); } } @@ -28170,13 +28204,13 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5040; + this.state = 5054; this.match(MySqlParser.KW_IF); - this.state = 5041; + this.state = 5055; this.expression(0); - this.state = 5042; + this.state = 5056; this.match(MySqlParser.KW_THEN); - this.state = 5044; + this.state = 5058; this.errorHandler.sync(this); alternative = 1; do { @@ -28184,7 +28218,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5043; + this.state = 5057; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._thenStatements.push(localContext._procedureSqlStatement); } @@ -28193,32 +28227,32 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5046; + this.state = 5060; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 713, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5051; + this.state = 5065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 5048; + this.state = 5062; this.elseIfAlternative(); } } - this.state = 5053; + this.state = 5067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5060; + this.state = 5074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5054; + this.state = 5068; this.match(MySqlParser.KW_ELSE); - this.state = 5056; + this.state = 5070; this.errorHandler.sync(this); alternative = 1; do { @@ -28226,7 +28260,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5055; + this.state = 5069; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._elseStatements.push(localContext._procedureSqlStatement); } @@ -28235,16 +28269,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5058; + this.state = 5072; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 713, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 715, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5062; + this.state = 5076; this.match(MySqlParser.KW_END); - this.state = 5063; + this.state = 5077; this.match(MySqlParser.KW_IF); } } @@ -28268,9 +28302,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5065; + this.state = 5079; this.match(MySqlParser.KW_ITERATE); - this.state = 5066; + this.state = 5080; localContext._label = this.uid(); } } @@ -28294,9 +28328,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5068; + this.state = 5082; this.match(MySqlParser.KW_LEAVE); - this.state = 5069; + this.state = 5083; localContext._label = this.uid(); } } @@ -28322,21 +28356,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5074; + this.state = 5088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5071; + this.state = 5085; localContext._begin_label = this.uid(); - this.state = 5072; + this.state = 5086; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5076; + this.state = 5090; this.match(MySqlParser.KW_LOOP); - this.state = 5078; + this.state = 5092; this.errorHandler.sync(this); alternative = 1; do { @@ -28344,7 +28378,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5077; + this.state = 5091; this.procedureSqlStatement(); } } @@ -28352,20 +28386,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5080; + this.state = 5094; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 716, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 718, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5082; + this.state = 5096; this.match(MySqlParser.KW_END); - this.state = 5083; + this.state = 5097; this.match(MySqlParser.KW_LOOP); - this.state = 5085; + this.state = 5099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5084; + this.state = 5098; localContext._end_label = this.uid(); } } @@ -28394,21 +28428,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5090; + this.state = 5104; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { case 1: { - this.state = 5087; + this.state = 5101; localContext._begin_label = this.uid(); - this.state = 5088; + this.state = 5102; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 5092; + this.state = 5106; this.match(MySqlParser.KW_REPEAT); - this.state = 5094; + this.state = 5108; this.errorHandler.sync(this); alternative = 1; do { @@ -28416,7 +28450,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5093; + this.state = 5107; this.procedureSqlStatement(); } } @@ -28424,24 +28458,24 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5096; + this.state = 5110; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 719, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 721, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5098; + this.state = 5112; this.match(MySqlParser.KW_UNTIL); - this.state = 5099; + this.state = 5113; this.expression(0); - this.state = 5100; + this.state = 5114; this.match(MySqlParser.KW_END); - this.state = 5101; + this.state = 5115; this.match(MySqlParser.KW_REPEAT); - this.state = 5103; + this.state = 5117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5102; + this.state = 5116; localContext._end_label = this.uid(); } } @@ -28468,9 +28502,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5105; + this.state = 5119; this.match(MySqlParser.KW_RETURN); - this.state = 5106; + this.state = 5120; this.expression(0); } } @@ -28496,25 +28530,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5111; + this.state = 5125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5108; + this.state = 5122; localContext._begin_label = this.uid(); - this.state = 5109; + this.state = 5123; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5113; + this.state = 5127; this.match(MySqlParser.KW_WHILE); - this.state = 5114; + this.state = 5128; this.expression(0); - this.state = 5115; + this.state = 5129; this.match(MySqlParser.KW_DO); - this.state = 5117; + this.state = 5131; this.errorHandler.sync(this); alternative = 1; do { @@ -28522,7 +28556,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5116; + this.state = 5130; this.procedureSqlStatement(); } } @@ -28530,20 +28564,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5119; + this.state = 5133; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 722, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 724, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5121; + this.state = 5135; this.match(MySqlParser.KW_END); - this.state = 5122; + this.state = 5136; this.match(MySqlParser.KW_WHILE); - this.state = 5124; + this.state = 5138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5123; + this.state = 5137; localContext._end_label = this.uid(); } } @@ -28569,16 +28603,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 452, MySqlParser.RULE_cursorStatement); let _la: number; try { - this.state = 5141; + this.state = 5155; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CLOSE: localContext = new CloseCursorContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5126; + this.state = 5140; this.match(MySqlParser.KW_CLOSE); - this.state = 5127; + this.state = 5141; (localContext as CloseCursorContext)._cursor_name = this.uid(); } break; @@ -28586,33 +28620,33 @@ export class MySqlParser extends SQLParserBase { localContext = new FetchCursorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5128; + this.state = 5142; this.match(MySqlParser.KW_FETCH); - this.state = 5133; + this.state = 5147; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 727, this.context) ) { case 1: { - this.state = 5130; + this.state = 5144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 501) { { - this.state = 5129; + this.state = 5143; this.match(MySqlParser.KW_NEXT); } } - this.state = 5132; + this.state = 5146; this.match(MySqlParser.KW_FROM); } break; } - this.state = 5135; + this.state = 5149; (localContext as FetchCursorContext)._cursor_name = this.uid(); - this.state = 5136; + this.state = 5150; this.match(MySqlParser.KW_INTO); - this.state = 5137; + this.state = 5151; (localContext as FetchCursorContext)._var_names = this.uidList(); } break; @@ -28620,9 +28654,9 @@ export class MySqlParser extends SQLParserBase { localContext = new OpenCursorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5139; + this.state = 5153; this.match(MySqlParser.KW_OPEN); - this.state = 5140; + this.state = 5154; (localContext as OpenCursorContext)._cursor_name = this.uid(); } break; @@ -28651,20 +28685,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5143; + this.state = 5157; this.match(MySqlParser.KW_DECLARE); - this.state = 5144; + this.state = 5158; localContext._var_names = this.uidList(); - this.state = 5145; + this.state = 5159; this.dataType(); - this.state = 5148; + this.state = 5162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5146; + this.state = 5160; this.match(MySqlParser.KW_DEFAULT); - this.state = 5147; + this.state = 5161; this.expression(0); } } @@ -28692,15 +28726,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5150; + this.state = 5164; this.match(MySqlParser.KW_DECLARE); - this.state = 5151; + this.state = 5165; localContext._condition_name = this.uid(); - this.state = 5152; + this.state = 5166; this.match(MySqlParser.KW_CONDITION); - this.state = 5153; + this.state = 5167; this.match(MySqlParser.KW_FOR); - this.state = 5160; + this.state = 5174; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28710,25 +28744,25 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5154; + this.state = 5168; this.decimalLiteral(); } break; case MySqlParser.KW_SQLSTATE: { - this.state = 5155; + this.state = 5169; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5157; + this.state = 5171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5156; + this.state = 5170; this.match(MySqlParser.KW_VALUE); } } - this.state = 5159; + this.state = 5173; this.match(MySqlParser.STRING_LITERAL); } break; @@ -28757,15 +28791,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5162; + this.state = 5176; this.match(MySqlParser.KW_DECLARE); - this.state = 5163; + this.state = 5177; localContext._condition_name = this.uid(); - this.state = 5164; + this.state = 5178; this.match(MySqlParser.KW_CURSOR); - this.state = 5165; + this.state = 5179; this.match(MySqlParser.KW_FOR); - this.state = 5166; + this.state = 5180; this.selectStatement(); } } @@ -28790,9 +28824,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5168; + this.state = 5182; this.match(MySqlParser.KW_DECLARE); - this.state = 5169; + this.state = 5183; localContext._handlerAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 61 || _la === 180)) { @@ -28802,29 +28836,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5170; + this.state = 5184; this.match(MySqlParser.KW_HANDLER); - this.state = 5171; + this.state = 5185; this.match(MySqlParser.KW_FOR); - this.state = 5172; + this.state = 5186; this.handlerConditionValue(); - this.state = 5177; + this.state = 5191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5173; + this.state = 5187; this.match(MySqlParser.COMMA); - this.state = 5174; + this.state = 5188; this.handlerConditionValue(); } } - this.state = 5179; + this.state = 5193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5180; + this.state = 5194; this.routineBody(); } } @@ -28847,7 +28881,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 462, MySqlParser.RULE_handlerConditionValue); let _la: number; try { - this.state = 5193; + this.state = 5207; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28859,7 +28893,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionCodeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5182; + this.state = 5196; this.decimalLiteral(); } break; @@ -28867,19 +28901,19 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionStateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5183; + this.state = 5197; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5185; + this.state = 5199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5184; + this.state = 5198; this.match(MySqlParser.KW_VALUE); } } - this.state = 5187; + this.state = 5201; this.match(MySqlParser.STRING_LITERAL); } break; @@ -29435,7 +29469,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNameContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5188; + this.state = 5202; (localContext as HandlerConditionNameContext)._condition_name = this.uid(); } break; @@ -29443,7 +29477,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionWarningContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5189; + this.state = 5203; this.match(MySqlParser.KW_SQLWARNING); } break; @@ -29451,9 +29485,9 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNotfoundContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5190; + this.state = 5204; this.match(MySqlParser.KW_NOT); - this.state = 5191; + this.state = 5205; this.match(MySqlParser.KW_FOUND); } break; @@ -29461,7 +29495,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionExceptionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5192; + this.state = 5206; this.match(MySqlParser.KW_SQLEXCEPTION); } break; @@ -29489,23 +29523,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5197; + this.state = 5211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 733, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { case 1: { - this.state = 5195; + this.state = 5209; this.compoundStatement(); } break; case 2: { - this.state = 5196; + this.state = 5210; this.sqlStatement(); } break; } - this.state = 5199; + this.state = 5213; this.match(MySqlParser.SEMI); } } @@ -29530,27 +29564,27 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5201; + this.state = 5215; this.match(MySqlParser.KW_WHEN); - this.state = 5204; + this.state = 5218; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 734, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 736, this.context) ) { case 1: { - this.state = 5202; + this.state = 5216; this.constant(); } break; case 2: { - this.state = 5203; + this.state = 5217; this.expression(0); } break; } - this.state = 5206; + this.state = 5220; this.match(MySqlParser.KW_THEN); - this.state = 5208; + this.state = 5222; this.errorHandler.sync(this); alternative = 1; do { @@ -29558,7 +29592,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5207; + this.state = 5221; this.procedureSqlStatement(); } } @@ -29566,9 +29600,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5210; + this.state = 5224; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 735, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 737, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29593,13 +29627,13 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5212; + this.state = 5226; this.match(MySqlParser.KW_ELSEIF); - this.state = 5213; + this.state = 5227; this.expression(0); - this.state = 5214; + this.state = 5228; this.match(MySqlParser.KW_THEN); - this.state = 5216; + this.state = 5230; this.errorHandler.sync(this); alternative = 1; do { @@ -29607,7 +29641,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5215; + this.state = 5229; this.procedureSqlStatement(); } } @@ -29615,9 +29649,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5218; + this.state = 5232; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 736, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 738, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29642,41 +29676,41 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5220; + this.state = 5234; this.match(MySqlParser.KW_ALTER); - this.state = 5221; + this.state = 5235; this.match(MySqlParser.KW_USER); - this.state = 5223; + this.state = 5237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { case 1: { - this.state = 5222; + this.state = 5236; this.ifExists(); } break; } - this.state = 5281; + this.state = 5295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 751, this.context) ) { case 1: { { - this.state = 5225; + this.state = 5239; this.userSpecification(); - this.state = 5230; + this.state = 5244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5226; + this.state = 5240; this.match(MySqlParser.COMMA); - this.state = 5227; + this.state = 5241; this.userSpecification(); } } - this.state = 5232; + this.state = 5246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29686,37 +29720,37 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 5233; + this.state = 5247; this.alterUserAuthOption(); - this.state = 5238; + this.state = 5252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5234; + this.state = 5248; this.match(MySqlParser.COMMA); - this.state = 5235; + this.state = 5249; this.alterUserAuthOption(); } } - this.state = 5240; + this.state = 5254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5255; + this.state = 5269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5241; + this.state = 5255; this.match(MySqlParser.KW_REQUIRE); - this.state = 5253; + this.state = 5267; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5242; + this.state = 5256; this.match(MySqlParser.KW_NONE); } break; @@ -29726,29 +29760,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5243; + this.state = 5257; this.tlsOption(); - this.state = 5250; + this.state = 5264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5245; + this.state = 5259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5244; + this.state = 5258; this.match(MySqlParser.KW_AND); } } - this.state = 5247; + this.state = 5261; this.tlsOption(); } } - this.state = 5252; + this.state = 5266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29760,49 +29794,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5263; + this.state = 5277; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { case 1: { - this.state = 5257; + this.state = 5271; this.match(MySqlParser.KW_WITH); - this.state = 5259; + this.state = 5273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5258; + this.state = 5272; this.userResourceOption(); } } - this.state = 5261; + this.state = 5275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5269; + this.state = 5283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5267; + this.state = 5281; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5265; + this.state = 5279; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5266; + this.state = 5280; this.userLockOption(); } break; @@ -29810,16 +29844,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5271; + this.state = 5285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5274; + this.state = 5288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5272; + this.state = 5286; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29828,7 +29862,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5273; + this.state = 5287; this.match(MySqlParser.STRING_LITERAL); } } @@ -29840,14 +29874,14 @@ export class MySqlParser extends SQLParserBase { { { { - this.state = 5276; + this.state = 5290; this.userOrRoleName(); } - this.state = 5277; + this.state = 5291; this.match(MySqlParser.KW_DEFAULT); - this.state = 5278; + this.state = 5292; this.match(MySqlParser.KW_ROLE); - this.state = 5279; + this.state = 5293; this.roleOption(); } } @@ -29876,85 +29910,85 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5283; + this.state = 5297; this.match(MySqlParser.KW_CREATE); - this.state = 5284; + this.state = 5298; this.match(MySqlParser.KW_USER); - this.state = 5286; + this.state = 5300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5285; + this.state = 5299; this.ifNotExists(); } } - this.state = 5288; + this.state = 5302; this.userName(); - this.state = 5290; + this.state = 5304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5289; + this.state = 5303; this.createUserAuthOption(); } } - this.state = 5299; + this.state = 5313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5292; + this.state = 5306; this.match(MySqlParser.COMMA); - this.state = 5293; + this.state = 5307; this.userName(); - this.state = 5295; + this.state = 5309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5294; + this.state = 5308; this.createUserAuthOption(); } } } } - this.state = 5301; + this.state = 5315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5305; + this.state = 5319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5302; + this.state = 5316; this.match(MySqlParser.KW_DEFAULT); - this.state = 5303; + this.state = 5317; this.match(MySqlParser.KW_ROLE); - this.state = 5304; + this.state = 5318; this.roleOption(); } } - this.state = 5321; + this.state = 5335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5307; + this.state = 5321; this.match(MySqlParser.KW_REQUIRE); - this.state = 5319; + this.state = 5333; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5308; + this.state = 5322; this.match(MySqlParser.KW_NONE); } break; @@ -29964,29 +29998,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5309; + this.state = 5323; this.tlsOption(); - this.state = 5316; + this.state = 5330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5311; + this.state = 5325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5310; + this.state = 5324; this.match(MySqlParser.KW_AND); } } - this.state = 5313; + this.state = 5327; this.tlsOption(); } } - this.state = 5318; + this.state = 5332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29998,49 +30032,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5329; + this.state = 5343; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 760, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 762, this.context) ) { case 1: { - this.state = 5323; + this.state = 5337; this.match(MySqlParser.KW_WITH); - this.state = 5325; + this.state = 5339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5324; + this.state = 5338; this.userResourceOption(); } } - this.state = 5327; + this.state = 5341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5335; + this.state = 5349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5333; + this.state = 5347; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5331; + this.state = 5345; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5332; + this.state = 5346; this.userLockOption(); } break; @@ -30048,16 +30082,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5337; + this.state = 5351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5340; + this.state = 5354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5338; + this.state = 5352; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -30066,7 +30100,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5339; + this.state = 5353; this.match(MySqlParser.STRING_LITERAL); } } @@ -30094,35 +30128,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5342; + this.state = 5356; this.match(MySqlParser.KW_DROP); - this.state = 5343; + this.state = 5357; this.match(MySqlParser.KW_USER); - this.state = 5345; + this.state = 5359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5344; + this.state = 5358; this.ifExists(); } } - this.state = 5347; + this.state = 5361; this.userName(); - this.state = 5352; + this.state = 5366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5348; + this.state = 5362; this.match(MySqlParser.COMMA); - this.state = 5349; + this.state = 5363; this.userName(); } } - this.state = 5354; + this.state = 5368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30148,69 +30182,69 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 5444; + this.state = 5458; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 783, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5355; + this.state = 5369; this.match(MySqlParser.KW_GRANT); - this.state = 5356; + this.state = 5370; this.privilegeClause(); - this.state = 5361; + this.state = 5375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5357; + this.state = 5371; this.match(MySqlParser.COMMA); - this.state = 5358; + this.state = 5372; this.privilegeClause(); } } - this.state = 5363; + this.state = 5377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5364; + this.state = 5378; this.match(MySqlParser.KW_ON); - this.state = 5366; + this.state = 5380; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 767, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { case 1: { - this.state = 5365; + this.state = 5379; this.privilegeObjectType(); } break; } - this.state = 5368; + this.state = 5382; this.privilegeLevel(); - this.state = 5369; + this.state = 5383; this.match(MySqlParser.KW_TO); - this.state = 5379; + this.state = 5393; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: { { - this.state = 5370; + this.state = 5384; this.userAuthOption(); - this.state = 5375; + this.state = 5389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5371; + this.state = 5385; this.match(MySqlParser.COMMA); - this.state = 5372; + this.state = 5386; this.userAuthOption(); } } - this.state = 5377; + this.state = 5391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30219,24 +30253,24 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 5378; + this.state = 5392; this.userOrRoleNames(); } break; } - this.state = 5395; + this.state = 5409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5381; + this.state = 5395; this.match(MySqlParser.KW_REQUIRE); - this.state = 5393; + this.state = 5407; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5382; + this.state = 5396; localContext._tlsNone = this.match(MySqlParser.KW_NONE); } break; @@ -30246,29 +30280,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5383; + this.state = 5397; this.tlsOption(); - this.state = 5390; + this.state = 5404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5385; + this.state = 5399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5384; + this.state = 5398; this.match(MySqlParser.KW_AND); } } - this.state = 5387; + this.state = 5401; this.tlsOption(); } } - this.state = 5392; + this.state = 5406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30280,27 +30314,27 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5406; + this.state = 5420; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { case 1: { - this.state = 5397; + this.state = 5411; this.match(MySqlParser.KW_WITH); - this.state = 5403; + this.state = 5417; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 775, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 777, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 5401; + this.state = 5415; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_GRANT: { - this.state = 5398; + this.state = 5412; this.match(MySqlParser.KW_GRANT); - this.state = 5399; + this.state = 5413; this.match(MySqlParser.KW_OPTION); } break; @@ -30309,7 +30343,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MAX_UPDATES_PER_HOUR: case MySqlParser.KW_MAX_USER_CONNECTIONS: { - this.state = 5400; + this.state = 5414; this.userResourceOption(); } break; @@ -30318,32 +30352,32 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 5405; + this.state = 5419; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 775, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 777, this.context); } } break; } - this.state = 5415; + this.state = 5429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 5408; + this.state = 5422; this.match(MySqlParser.KW_AS); - this.state = 5409; + this.state = 5423; this.userName(); - this.state = 5413; + this.state = 5427; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { case 1: { - this.state = 5410; + this.state = 5424; this.match(MySqlParser.KW_WITH); - this.state = 5411; + this.state = 5425; this.match(MySqlParser.KW_ROLE); - this.state = 5412; + this.state = 5426; this.roleOption(); } break; @@ -30356,76 +30390,76 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5417; + this.state = 5431; this.match(MySqlParser.KW_GRANT); - this.state = 5420; + this.state = 5434; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 781, this.context) ) { case 1: { - this.state = 5418; + this.state = 5432; this.match(MySqlParser.KW_PROXY); - this.state = 5419; + this.state = 5433; this.match(MySqlParser.KW_ON); } break; } { - this.state = 5422; + this.state = 5436; this.userOrRoleName(); } - this.state = 5427; + this.state = 5441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5423; + this.state = 5437; this.match(MySqlParser.COMMA); { - this.state = 5424; + this.state = 5438; this.userOrRoleName(); } } } - this.state = 5429; + this.state = 5443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5430; + this.state = 5444; this.match(MySqlParser.KW_TO); { - this.state = 5431; + this.state = 5445; this.userOrRoleName(); } - this.state = 5436; + this.state = 5450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5432; + this.state = 5446; this.match(MySqlParser.COMMA); { - this.state = 5433; + this.state = 5447; this.userOrRoleName(); } } } - this.state = 5438; + this.state = 5452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5442; + this.state = 5456; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 782, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { case 1: { - this.state = 5439; + this.state = 5453; this.match(MySqlParser.KW_WITH); - this.state = 5440; + this.state = 5454; this.match(MySqlParser.KW_ADMIN); - this.state = 5441; + this.state = 5455; this.match(MySqlParser.KW_OPTION); } break; @@ -30453,36 +30487,36 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 478, MySqlParser.RULE_roleOption); let _la: number; try { - this.state = 5454; + this.state = 5468; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5446; + this.state = 5460; this.match(MySqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5447; + this.state = 5461; this.match(MySqlParser.KW_NONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5448; + this.state = 5462; this.match(MySqlParser.KW_ALL); - this.state = 5451; + this.state = 5465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 5449; + this.state = 5463; this.match(MySqlParser.KW_EXCEPT); - this.state = 5450; + this.state = 5464; this.userOrRoleNames(); } } @@ -30492,7 +30526,7 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5453; + this.state = 5467; this.userOrRoleNames(); } break; @@ -30519,45 +30553,45 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5456; + this.state = 5470; this.match(MySqlParser.KW_GRANT); - this.state = 5457; + this.state = 5471; this.match(MySqlParser.KW_PROXY); - this.state = 5458; + this.state = 5472; this.match(MySqlParser.KW_ON); - this.state = 5459; + this.state = 5473; localContext._fromFirst = this.userName(); - this.state = 5460; + this.state = 5474; this.match(MySqlParser.KW_TO); - this.state = 5461; + this.state = 5475; localContext._toFirst = this.userName(); - this.state = 5466; + this.state = 5480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5462; + this.state = 5476; this.match(MySqlParser.COMMA); - this.state = 5463; + this.state = 5477; localContext._userName = this.userName(); localContext._toOther.push(localContext._userName); } } - this.state = 5468; + this.state = 5482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5472; + this.state = 5486; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 789, this.context) ) { case 1: { - this.state = 5469; + this.state = 5483; this.match(MySqlParser.KW_WITH); - this.state = 5470; + this.state = 5484; this.match(MySqlParser.KW_GRANT); - this.state = 5471; + this.state = 5485; this.match(MySqlParser.KW_OPTION); } break; @@ -30585,64 +30619,64 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5474; + this.state = 5488; this.match(MySqlParser.KW_ALTER); - this.state = 5475; + this.state = 5489; this.match(MySqlParser.KW_RESOURCE); - this.state = 5476; + this.state = 5490; this.match(MySqlParser.KW_GROUP); - this.state = 5477; + this.state = 5491; this.groupName(); - this.state = 5483; + this.state = 5497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5478; + this.state = 5492; this.match(MySqlParser.KW_VCPU); - this.state = 5480; + this.state = 5494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5479; + this.state = 5493; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5482; + this.state = 5496; this.resourceGroupVCpuSpec(); } } - this.state = 5490; + this.state = 5504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5485; + this.state = 5499; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5487; + this.state = 5501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5486; + this.state = 5500; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5489; + this.state = 5503; this.decimalLiteral(); } } - this.state = 5496; + this.state = 5510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5492; + this.state = 5506; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30651,12 +30685,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5494; + this.state = 5508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5493; + this.state = 5507; this.match(MySqlParser.KW_FORCE); } } @@ -30687,19 +30721,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5498; + this.state = 5512; this.match(MySqlParser.KW_CREATE); - this.state = 5499; + this.state = 5513; this.match(MySqlParser.KW_RESOURCE); - this.state = 5500; + this.state = 5514; this.match(MySqlParser.KW_GROUP); - this.state = 5501; + this.state = 5515; this.groupNameCreate(); - this.state = 5502; + this.state = 5516; this.match(MySqlParser.KW_TYPE); - this.state = 5503; + this.state = 5517; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5504; + this.state = 5518; _la = this.tokenStream.LA(1); if(!(_la === 678 || _la === 835)) { this.errorHandler.recoverInline(this); @@ -30708,56 +30742,56 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5510; + this.state = 5524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5505; + this.state = 5519; this.match(MySqlParser.KW_VCPU); - this.state = 5507; + this.state = 5521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5506; + this.state = 5520; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5509; + this.state = 5523; this.resourceGroupVCpuSpec(); } } - this.state = 5517; + this.state = 5531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5512; + this.state = 5526; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5514; + this.state = 5528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5513; + this.state = 5527; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5516; + this.state = 5530; this.decimalLiteral(); } } - this.state = 5520; + this.state = 5534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5519; + this.state = 5533; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30792,20 +30826,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5522; + this.state = 5536; this.match(MySqlParser.KW_DROP); - this.state = 5523; + this.state = 5537; this.match(MySqlParser.KW_RESOURCE); - this.state = 5524; + this.state = 5538; this.match(MySqlParser.KW_GROUP); - this.state = 5525; + this.state = 5539; this.groupName(); - this.state = 5527; + this.state = 5541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5526; + this.state = 5540; this.match(MySqlParser.KW_FORCE); } } @@ -30833,36 +30867,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5529; + this.state = 5543; this.match(MySqlParser.KW_SET); - this.state = 5530; + this.state = 5544; this.match(MySqlParser.KW_RESOURCE); - this.state = 5531; + this.state = 5545; this.match(MySqlParser.KW_GROUP); - this.state = 5532; + this.state = 5546; this.groupName(); - this.state = 5542; + this.state = 5556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5533; + this.state = 5547; this.match(MySqlParser.KW_FOR); - this.state = 5534; + this.state = 5548; this.decimalLiteral(); - this.state = 5539; + this.state = 5553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5535; + this.state = 5549; this.match(MySqlParser.COMMA); - this.state = 5536; + this.state = 5550; this.decimalLiteral(); } } - this.state = 5541; + this.state = 5555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30892,43 +30926,43 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5549; + this.state = 5563; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 802, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { case 1: { - this.state = 5544; + this.state = 5558; this.decimalLiteral(); } break; case 2: { - this.state = 5545; + this.state = 5559; this.decimalLiteral(); - this.state = 5546; + this.state = 5560; this.match(MySqlParser.MINUS); - this.state = 5547; + this.state = 5561; this.decimalLiteral(); } break; } - this.state = 5555; + this.state = 5569; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 803, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 805, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5551; + this.state = 5565; this.match(MySqlParser.COMMA); - this.state = 5552; + this.state = 5566; this.resourceGroupVCpuSpec(); } } } - this.state = 5557; + this.state = 5571; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 803, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 805, this.context); } } } @@ -30953,25 +30987,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5558; + this.state = 5572; this.match(MySqlParser.KW_RENAME); - this.state = 5559; + this.state = 5573; this.match(MySqlParser.KW_USER); - this.state = 5560; + this.state = 5574; this.renameUserClause(); - this.state = 5565; + this.state = 5579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5561; + this.state = 5575; this.match(MySqlParser.COMMA); - this.state = 5562; + this.state = 5576; this.renameUserClause(); } } - this.state = 5567; + this.state = 5581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30996,67 +31030,67 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 494, MySqlParser.RULE_revokeStatement); let _la: number; try { - this.state = 5620; + this.state = 5634; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 817, this.context) ) { case 1: localContext = new DetailRevokeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5568; + this.state = 5582; this.match(MySqlParser.KW_REVOKE); - this.state = 5570; + this.state = 5584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5569; + this.state = 5583; this.ifExists(); } } - this.state = 5572; + this.state = 5586; this.privilegeClause(); - this.state = 5577; + this.state = 5591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5573; + this.state = 5587; this.match(MySqlParser.COMMA); - this.state = 5574; + this.state = 5588; this.privilegeClause(); } } - this.state = 5579; + this.state = 5593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5580; + this.state = 5594; this.match(MySqlParser.KW_ON); - this.state = 5582; + this.state = 5596; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { case 1: { - this.state = 5581; + this.state = 5595; this.privilegeObjectType(); } break; } - this.state = 5584; + this.state = 5598; this.privilegeLevel(); - this.state = 5585; + this.state = 5599; this.match(MySqlParser.KW_FROM); - this.state = 5586; + this.state = 5600; this.userOrRoleNames(); - this.state = 5588; + this.state = 5602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5587; + this.state = 5601; this.ignoreUnknownUser(); } } @@ -31067,46 +31101,46 @@ export class MySqlParser extends SQLParserBase { localContext = new ShortRevokeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5590; + this.state = 5604; this.match(MySqlParser.KW_REVOKE); - this.state = 5592; + this.state = 5606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5591; + this.state = 5605; this.ifExists(); } } - this.state = 5594; + this.state = 5608; this.match(MySqlParser.KW_ALL); - this.state = 5596; + this.state = 5610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5595; + this.state = 5609; this.match(MySqlParser.KW_PRIVILEGES); } } - this.state = 5598; + this.state = 5612; this.match(MySqlParser.COMMA); - this.state = 5599; + this.state = 5613; this.match(MySqlParser.KW_GRANT); - this.state = 5600; + this.state = 5614; this.match(MySqlParser.KW_OPTION); - this.state = 5601; + this.state = 5615; this.match(MySqlParser.KW_FROM); - this.state = 5602; + this.state = 5616; this.userOrRoleNames(); - this.state = 5604; + this.state = 5618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5603; + this.state = 5617; this.ignoreUnknownUser(); } } @@ -31117,42 +31151,42 @@ export class MySqlParser extends SQLParserBase { localContext = new ProxyAndRoleRevokeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5606; + this.state = 5620; this.match(MySqlParser.KW_REVOKE); - this.state = 5608; + this.state = 5622; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 812, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { case 1: { - this.state = 5607; + this.state = 5621; this.ifExists(); } break; } - this.state = 5612; + this.state = 5626; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: { - this.state = 5610; + this.state = 5624; this.match(MySqlParser.KW_PROXY); - this.state = 5611; + this.state = 5625; this.match(MySqlParser.KW_ON); } break; } - this.state = 5614; + this.state = 5628; this.userOrRoleNames(); - this.state = 5615; + this.state = 5629; this.match(MySqlParser.KW_FROM); - this.state = 5616; + this.state = 5630; this.userOrRoleNames(); - this.state = 5618; + this.state = 5632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5617; + this.state = 5631; this.ignoreUnknownUser(); } } @@ -31181,11 +31215,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5622; + this.state = 5636; this.match(MySqlParser.KW_IGNORE); - this.state = 5623; + this.state = 5637; this.match(MySqlParser.KW_UNKNOWN); - this.state = 5624; + this.state = 5638; this.match(MySqlParser.KW_USER); } } @@ -31210,7 +31244,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5626; + this.state = 5640; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 173 || _la === 409)) { this.errorHandler.recoverInline(this); @@ -31240,44 +31274,44 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 500, MySqlParser.RULE_setPasswordStatement); let _la: number; try { - this.state = 5660; + this.state = 5674; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { case 1: localContext = new V57Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5628; + this.state = 5642; this.match(MySqlParser.KW_SET); - this.state = 5629; + this.state = 5643; this.match(MySqlParser.KW_PASSWORD); - this.state = 5632; + this.state = 5646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5630; + this.state = 5644; this.match(MySqlParser.KW_FOR); - this.state = 5631; + this.state = 5645; this.userName(); } } - this.state = 5634; + this.state = 5648; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5637; + this.state = 5651; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OLD_PASSWORD: case MySqlParser.KW_PASSWORD: { - this.state = 5635; + this.state = 5649; this.passwordFunctionClause(); } break; case MySqlParser.STRING_LITERAL: { - this.state = 5636; + this.state = 5650; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31290,66 +31324,66 @@ export class MySqlParser extends SQLParserBase { localContext = new V80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5639; + this.state = 5653; this.match(MySqlParser.KW_SET); - this.state = 5640; + this.state = 5654; this.match(MySqlParser.KW_PASSWORD); - this.state = 5643; + this.state = 5657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5641; + this.state = 5655; this.match(MySqlParser.KW_FOR); - this.state = 5642; + this.state = 5656; this.userName(); } } - this.state = 5649; + this.state = 5663; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 5645; + this.state = 5659; this.match(MySqlParser.KW_TO); - this.state = 5646; + this.state = 5660; this.match(MySqlParser.KW_RANDOM); } break; case MySqlParser.EQUAL_SYMBOL: { - this.state = 5647; + this.state = 5661; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5648; + this.state = 5662; this.match(MySqlParser.STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5653; + this.state = 5667; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { case 1: { - this.state = 5651; + this.state = 5665; this.match(MySqlParser.KW_REPLACE); - this.state = 5652; + this.state = 5666; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5658; + this.state = 5672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5655; + this.state = 5669; this.match(MySqlParser.KW_RETAIN); - this.state = 5656; + this.state = 5670; this.match(MySqlParser.KW_CURRENT); - this.state = 5657; + this.state = 5671; this.match(MySqlParser.KW_PASSWORD); } } @@ -31378,9 +31412,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5662; + this.state = 5676; this.userName(); - this.state = 5663; + this.state = 5677; this.userPasswordOption(); } } @@ -31406,60 +31440,60 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5665; + this.state = 5679; this.userName(); - this.state = 5691; + this.state = 5705; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 825, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 827, this.context) ) { case 1: { - this.state = 5666; + this.state = 5680; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5667; + this.state = 5681; this.match(MySqlParser.KW_BY); - this.state = 5668; + this.state = 5682; this.match(MySqlParser.STRING_LITERAL); - this.state = 5669; + this.state = 5683; this.authOptionClause(); } break; case 2: { - this.state = 5670; + this.state = 5684; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5671; + this.state = 5685; this.match(MySqlParser.KW_BY); - this.state = 5672; + this.state = 5686; this.match(MySqlParser.KW_RANDOM); - this.state = 5673; + this.state = 5687; this.match(MySqlParser.KW_PASSWORD); - this.state = 5674; + this.state = 5688; this.authOptionClause(); } break; case 3: { - this.state = 5675; + this.state = 5689; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5676; + this.state = 5690; this.match(MySqlParser.KW_WITH); - this.state = 5677; + this.state = 5691; this.authenticationRule(); } break; case 4: { - this.state = 5678; + this.state = 5692; this.match(MySqlParser.KW_DISCARD); - this.state = 5679; + this.state = 5693; this.match(MySqlParser.KW_OLD); - this.state = 5680; + this.state = 5694; this.match(MySqlParser.KW_PASSWORD); } break; case 5: { - this.state = 5686; + this.state = 5700; this.errorHandler.sync(this); alternative = 1; do { @@ -31467,7 +31501,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5681; + this.state = 5695; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51 || _la === 492)) { this.errorHandler.recoverInline(this); @@ -31476,14 +31510,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5682; + this.state = 5696; this.factor(); - this.state = 5684; + this.state = 5698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5683; + this.state = 5697; this.factorAuthOption(); } } @@ -31494,15 +31528,15 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5688; + this.state = 5702; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 824, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 826, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 6: { - this.state = 5690; + this.state = 5704; this.registrationOption(); } break; @@ -31528,31 +31562,31 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 506, MySqlParser.RULE_createUserAuthOption); let _la: number; try { - this.state = 5729; + this.state = 5743; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 832, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5693; + this.state = 5707; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5694; + this.state = 5708; this.match(MySqlParser.KW_BY); - this.state = 5700; + this.state = 5714; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5695; + this.state = 5709; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5696; + this.state = 5710; this.match(MySqlParser.KW_RANDOM); - this.state = 5697; + this.state = 5711; this.match(MySqlParser.KW_PASSWORD); } } @@ -31560,9 +31594,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PASSWORD: { { - this.state = 5698; + this.state = 5712; this.match(MySqlParser.KW_PASSWORD); - this.state = 5699; + this.state = 5713; this.match(MySqlParser.STRING_LITERAL); } } @@ -31570,14 +31604,14 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5704; + this.state = 5718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5702; + this.state = 5716; this.match(MySqlParser.KW_AND); - this.state = 5703; + this.state = 5717; this.createUserAuthOption(); } } @@ -31587,35 +31621,35 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5706; + this.state = 5720; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5707; + this.state = 5721; this.match(MySqlParser.KW_WITH); - this.state = 5708; + this.state = 5722; localContext._authPlugin = this.uid(); - this.state = 5717; + this.state = 5731; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5709; + this.state = 5723; this.match(MySqlParser.KW_BY); - this.state = 5713; + this.state = 5727; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5710; + this.state = 5724; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5711; + this.state = 5725; this.match(MySqlParser.KW_RANDOM); - this.state = 5712; + this.state = 5726; this.match(MySqlParser.KW_PASSWORD); } } @@ -31628,9 +31662,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5715; + this.state = 5729; this.match(MySqlParser.KW_AS); - this.state = 5716; + this.state = 5730; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31711,14 +31745,14 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 5721; + this.state = 5735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5719; + this.state = 5733; this.match(MySqlParser.KW_AND); - this.state = 5720; + this.state = 5734; this.createUserAuthOption(); } } @@ -31728,18 +31762,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5723; + this.state = 5737; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5724; + this.state = 5738; this.match(MySqlParser.KW_WITH); - this.state = 5725; + this.state = 5739; localContext._authPlugin = this.uid(); - this.state = 5727; + this.state = 5741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 427) { { - this.state = 5726; + this.state = 5740; this.createUserInitialAuthOption(); } } @@ -31766,36 +31800,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new CreateUserInitialAuthOptionContext(this.context, this.state); this.enterRule(localContext, 508, MySqlParser.RULE_createUserInitialAuthOption); try { - this.state = 5748; + this.state = 5762; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5731; + this.state = 5745; this.match(MySqlParser.KW_INITIAL); - this.state = 5732; + this.state = 5746; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5733; + this.state = 5747; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5734; + this.state = 5748; this.match(MySqlParser.KW_BY); - this.state = 5738; + this.state = 5752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_RANDOM: { { - this.state = 5735; + this.state = 5749; this.match(MySqlParser.KW_RANDOM); - this.state = 5736; + this.state = 5750; this.match(MySqlParser.KW_PASSWORD); } } break; case MySqlParser.STRING_LITERAL: { - this.state = 5737; + this.state = 5751; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31807,19 +31841,19 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5740; + this.state = 5754; this.match(MySqlParser.KW_INITIAL); - this.state = 5741; + this.state = 5755; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5742; + this.state = 5756; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5743; + this.state = 5757; this.match(MySqlParser.KW_WITH); - this.state = 5744; + this.state = 5758; localContext._authPlugin = this.uid(); - this.state = 5745; + this.state = 5759; this.match(MySqlParser.KW_AS); - this.state = 5746; + this.state = 5760; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31843,22 +31877,22 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserAuthOptionContext(this.context, this.state); this.enterRule(localContext, 510, MySqlParser.RULE_userAuthOption); try { - this.state = 5775; + this.state = 5789; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 835, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { case 1: localContext = new HashAuthOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5750; + this.state = 5764; this.userName(); - this.state = 5751; + this.state = 5765; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5752; + this.state = 5766; this.match(MySqlParser.KW_BY); - this.state = 5753; + this.state = 5767; this.match(MySqlParser.KW_PASSWORD); - this.state = 5754; + this.state = 5768; (localContext as HashAuthOptionContext)._hashed = this.match(MySqlParser.STRING_LITERAL); } break; @@ -31866,17 +31900,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RandomAuthOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5756; + this.state = 5770; this.userName(); - this.state = 5757; + this.state = 5771; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5758; + this.state = 5772; this.match(MySqlParser.KW_BY); - this.state = 5759; + this.state = 5773; this.match(MySqlParser.KW_RANDOM); - this.state = 5760; + this.state = 5774; this.match(MySqlParser.KW_PASSWORD); - this.state = 5761; + this.state = 5775; this.authOptionClause(); } break; @@ -31884,15 +31918,15 @@ export class MySqlParser extends SQLParserBase { localContext = new StringAuthOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5763; + this.state = 5777; this.userName(); - this.state = 5764; + this.state = 5778; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5765; + this.state = 5779; this.match(MySqlParser.KW_BY); - this.state = 5766; + this.state = 5780; this.match(MySqlParser.STRING_LITERAL); - this.state = 5767; + this.state = 5781; this.authOptionClause(); } break; @@ -31900,13 +31934,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ModuleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5769; + this.state = 5783; this.userName(); - this.state = 5770; + this.state = 5784; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5771; + this.state = 5785; this.match(MySqlParser.KW_WITH); - this.state = 5772; + this.state = 5786; this.authenticationRule(); } break; @@ -31914,7 +31948,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5774; + this.state = 5788; this.userName(); } break; @@ -31941,28 +31975,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5779; + this.state = 5793; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: { - this.state = 5777; + this.state = 5791; this.match(MySqlParser.KW_REPLACE); - this.state = 5778; + this.state = 5792; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5784; + this.state = 5798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5781; + this.state = 5795; this.match(MySqlParser.KW_RETAIN); - this.state = 5782; + this.state = 5796; this.match(MySqlParser.KW_CURRENT); - this.state = 5783; + this.state = 5797; this.match(MySqlParser.KW_PASSWORD); } } @@ -31988,21 +32022,21 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 514, MySqlParser.RULE_authenticationRule); let _la: number; try { - this.state = 5800; + this.state = 5814; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { case 1: localContext = new ModuleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5786; + this.state = 5800; (localContext as ModuleContext)._authPlugin = this.uid(); - this.state = 5794; + this.state = 5808; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { case 1: { - this.state = 5787; + this.state = 5801; _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 20 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -32011,27 +32045,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5791; + this.state = 5805; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5788; + this.state = 5802; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { - this.state = 5789; + this.state = 5803; this.match(MySqlParser.KW_RANDOM); - this.state = 5790; + this.state = 5804; this.match(MySqlParser.KW_PASSWORD); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5793; + this.state = 5807; this.authOptionClause(); } break; @@ -32042,11 +32076,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordModuleOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5796; + this.state = 5810; (localContext as PasswordModuleOptionContext)._authPlugin = this.uid(); - this.state = 5797; + this.state = 5811; this.match(MySqlParser.KW_USING); - this.state = 5798; + this.state = 5812; this.passwordFunctionClause(); } break; @@ -32070,47 +32104,47 @@ export class MySqlParser extends SQLParserBase { let localContext = new TlsOptionContext(this.context, this.state); this.enterRule(localContext, 516, MySqlParser.RULE_tlsOption); try { - this.state = 5810; + this.state = 5824; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SSL: this.enterOuterAlt(localContext, 1); { - this.state = 5802; + this.state = 5816; this.match(MySqlParser.KW_SSL); } break; case MySqlParser.KW_X509: this.enterOuterAlt(localContext, 2); { - this.state = 5803; + this.state = 5817; this.match(MySqlParser.KW_X509); } break; case MySqlParser.KW_CIPHER: this.enterOuterAlt(localContext, 3); { - this.state = 5804; + this.state = 5818; this.match(MySqlParser.KW_CIPHER); - this.state = 5805; + this.state = 5819; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ISSUER: this.enterOuterAlt(localContext, 4); { - this.state = 5806; + this.state = 5820; this.match(MySqlParser.KW_ISSUER); - this.state = 5807; + this.state = 5821; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SUBJECT: this.enterOuterAlt(localContext, 5); { - this.state = 5808; + this.state = 5822; this.match(MySqlParser.KW_SUBJECT); - this.state = 5809; + this.state = 5823; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32136,42 +32170,42 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserResourceOptionContext(this.context, this.state); this.enterRule(localContext, 518, MySqlParser.RULE_userResourceOption); try { - this.state = 5820; + this.state = 5834; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MAX_QUERIES_PER_HOUR: this.enterOuterAlt(localContext, 1); { - this.state = 5812; + this.state = 5826; this.match(MySqlParser.KW_MAX_QUERIES_PER_HOUR); - this.state = 5813; + this.state = 5827; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_UPDATES_PER_HOUR: this.enterOuterAlt(localContext, 2); { - this.state = 5814; + this.state = 5828; this.match(MySqlParser.KW_MAX_UPDATES_PER_HOUR); - this.state = 5815; + this.state = 5829; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: this.enterOuterAlt(localContext, 3); { - this.state = 5816; + this.state = 5830; this.match(MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR); - this.state = 5817; + this.state = 5831; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_USER_CONNECTIONS: this.enterOuterAlt(localContext, 4); { - this.state = 5818; + this.state = 5832; this.match(MySqlParser.KW_MAX_USER_CONNECTIONS); - this.state = 5819; + this.state = 5833; this.decimalLiteral(); } break; @@ -32198,38 +32232,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 520, MySqlParser.RULE_userPasswordOption); let _la: number; try { - this.state = 5860; + this.state = 5874; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 850, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5822; + this.state = 5836; this.match(MySqlParser.KW_PASSWORD); - this.state = 5823; + this.state = 5837; this.match(MySqlParser.KW_EXPIRE); - this.state = 5830; + this.state = 5844; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5824; + this.state = 5838; localContext._expireType = this.match(MySqlParser.KW_DEFAULT); } break; case MySqlParser.KW_NEVER: { - this.state = 5825; + this.state = 5839; localContext._expireType = this.match(MySqlParser.KW_NEVER); } break; case MySqlParser.KW_INTERVAL: { - this.state = 5826; + this.state = 5840; localContext._expireType = this.match(MySqlParser.KW_INTERVAL); - this.state = 5827; + this.state = 5841; this.decimalLiteral(); - this.state = 5828; + this.state = 5842; this.match(MySqlParser.KW_DAY); } break; @@ -32312,16 +32346,16 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5832; + this.state = 5846; this.match(MySqlParser.KW_PASSWORD); - this.state = 5833; + this.state = 5847; this.match(MySqlParser.KW_HISTORY); - this.state = 5836; + this.state = 5850; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5834; + this.state = 5848; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32332,7 +32366,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5835; + this.state = 5849; this.decimalLiteral(); } break; @@ -32344,18 +32378,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5838; + this.state = 5852; this.match(MySqlParser.KW_PASSWORD); - this.state = 5839; + this.state = 5853; this.match(MySqlParser.KW_REUSE); - this.state = 5840; + this.state = 5854; this.match(MySqlParser.KW_INTERVAL); - this.state = 5845; + this.state = 5859; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5841; + this.state = 5855; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32366,9 +32400,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5842; + this.state = 5856; this.decimalLiteral(); - this.state = 5843; + this.state = 5857; this.match(MySqlParser.KW_DAY); } break; @@ -32380,18 +32414,18 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5847; + this.state = 5861; this.match(MySqlParser.KW_PASSWORD); - this.state = 5848; + this.state = 5862; this.match(MySqlParser.KW_REQUIRE); - this.state = 5849; + this.state = 5863; this.match(MySqlParser.KW_CURRENT); - this.state = 5851; + this.state = 5865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 122) { { - this.state = 5850; + this.state = 5864; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -32408,18 +32442,18 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5853; + this.state = 5867; this.match(MySqlParser.KW_FAILED_LOGIN_ATTEMPTS); - this.state = 5854; + this.state = 5868; this.decimalLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5855; + this.state = 5869; this.match(MySqlParser.KW_PASSWORD_LOCK_TIME); - this.state = 5858; + this.state = 5872; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -32429,13 +32463,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5856; + this.state = 5870; this.decimalLiteral(); } break; case MySqlParser.KW_UNBOUNDED: { - this.state = 5857; + this.state = 5871; this.match(MySqlParser.KW_UNBOUNDED); } break; @@ -32467,9 +32501,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5862; + this.state = 5876; this.match(MySqlParser.KW_ACCOUNT); - this.state = 5863; + this.state = 5877; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 183)) { @@ -32502,43 +32536,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5865; + this.state = 5879; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5868; + this.state = 5882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 5866; + this.state = 5880; this.match(MySqlParser.KW_WITH); - this.state = 5867; + this.state = 5881; localContext._authPlugin = this.uid(); } } - this.state = 5878; + this.state = 5892; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5870; + this.state = 5884; this.match(MySqlParser.KW_BY); - this.state = 5874; + this.state = 5888; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5871; + this.state = 5885; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5872; + this.state = 5886; this.match(MySqlParser.KW_RANDOM); - this.state = 5873; + this.state = 5887; this.match(MySqlParser.KW_PASSWORD); } } @@ -32551,9 +32585,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5876; + this.state = 5890; this.match(MySqlParser.KW_AS); - this.state = 5877; + this.state = 5891; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32580,45 +32614,45 @@ export class MySqlParser extends SQLParserBase { let localContext = new RegistrationOptionContext(this.context, this.state); this.enterRule(localContext, 526, MySqlParser.RULE_registrationOption); try { - this.state = 5895; + this.state = 5909; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 854, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5880; + this.state = 5894; this.factor(); - this.state = 5881; + this.state = 5895; this.match(MySqlParser.KW_INITIATE); - this.state = 5882; + this.state = 5896; this.match(MySqlParser.KW_REGISTRATION); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5884; + this.state = 5898; this.factor(); - this.state = 5885; + this.state = 5899; this.match(MySqlParser.KW_FINISH); - this.state = 5886; + this.state = 5900; this.match(MySqlParser.KW_REGISTRATION); - this.state = 5887; + this.state = 5901; this.match(MySqlParser.KW_SET); - this.state = 5888; + this.state = 5902; this.match(MySqlParser.KW_CHALLENGE_RESPONSE); - this.state = 5889; + this.state = 5903; this.match(MySqlParser.KW_AS); - this.state = 5890; + this.state = 5904; this.match(MySqlParser.STRING_LITERAL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5892; + this.state = 5906; this.factor(); - this.state = 5893; + this.state = 5907; this.match(MySqlParser.KW_UNREGISTER); } break; @@ -32645,7 +32679,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5897; + this.state = 5911; _la = this.tokenStream.LA(1); if(!(_la === 873 || _la === 874)) { this.errorHandler.recoverInline(this); @@ -32654,7 +32688,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5898; + this.state = 5912; this.match(MySqlParser.KW_FACTOR); } } @@ -32679,18 +32713,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5900; + this.state = 5914; this.privilege(); - this.state = 5905; + this.state = 5919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 5901; + this.state = 5915; this.match(MySqlParser.LR_BRACKET); - this.state = 5902; + this.state = 5916; this.columnNames(); - this.state = 5903; + this.state = 5917; this.match(MySqlParser.RR_BRACKET); } } @@ -32716,20 +32750,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 532, MySqlParser.RULE_privilege); let _la: number; try { - this.state = 6000; + this.state = 6014; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 858, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5907; + this.state = 5921; this.match(MySqlParser.KW_ALL); - this.state = 5909; + this.state = 5923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5908; + this.state = 5922; this.match(MySqlParser.KW_PRIVILEGES); } } @@ -32739,14 +32773,14 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5911; + this.state = 5925; this.match(MySqlParser.KW_ALTER); - this.state = 5913; + this.state = 5927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 743) { { - this.state = 5912; + this.state = 5926; this.match(MySqlParser.KW_ROUTINE); } } @@ -32756,46 +32790,46 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5915; + this.state = 5929; this.match(MySqlParser.KW_CREATE); - this.state = 5923; + this.state = 5937; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TEMPORARY: { - this.state = 5916; + this.state = 5930; this.match(MySqlParser.KW_TEMPORARY); - this.state = 5917; + this.state = 5931; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_ROUTINE: { - this.state = 5918; + this.state = 5932; this.match(MySqlParser.KW_ROUTINE); } break; case MySqlParser.KW_VIEW: { - this.state = 5919; + this.state = 5933; this.match(MySqlParser.KW_VIEW); } break; case MySqlParser.KW_USER: { - this.state = 5920; + this.state = 5934; this.match(MySqlParser.KW_USER); } break; case MySqlParser.KW_TABLESPACE: { - this.state = 5921; + this.state = 5935; this.match(MySqlParser.KW_TABLESPACE); } break; case MySqlParser.KW_ROLE: { - this.state = 5922; + this.state = 5936; this.match(MySqlParser.KW_ROLE); } break; @@ -32811,21 +32845,21 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5925; + this.state = 5939; this.match(MySqlParser.KW_DELETE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5926; + this.state = 5940; this.match(MySqlParser.KW_DROP); - this.state = 5928; + this.state = 5942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 5927; + this.state = 5941; this.match(MySqlParser.KW_ROLE); } } @@ -32835,90 +32869,90 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5930; + this.state = 5944; this.match(MySqlParser.KW_EVENT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5931; + this.state = 5945; this.match(MySqlParser.KW_EXECUTE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5932; + this.state = 5946; this.match(MySqlParser.KW_FILE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5933; + this.state = 5947; this.match(MySqlParser.KW_GRANT); - this.state = 5934; + this.state = 5948; this.match(MySqlParser.KW_OPTION); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5935; + this.state = 5949; this.match(MySqlParser.KW_INDEX); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5936; + this.state = 5950; this.match(MySqlParser.KW_INSERT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5937; + this.state = 5951; this.match(MySqlParser.KW_LOCK); - this.state = 5938; + this.state = 5952; this.match(MySqlParser.KW_TABLES); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5939; + this.state = 5953; this.match(MySqlParser.KW_PROCESS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5940; + this.state = 5954; this.match(MySqlParser.KW_PROXY); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5941; + this.state = 5955; this.match(MySqlParser.KW_REFERENCES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5942; + this.state = 5956; this.match(MySqlParser.KW_RELOAD); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5943; + this.state = 5957; this.match(MySqlParser.KW_REPLICATION); - this.state = 5944; + this.state = 5958; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -32932,16 +32966,16 @@ export class MySqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5945; + this.state = 5959; this.match(MySqlParser.KW_SELECT); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5946; + this.state = 5960; this.match(MySqlParser.KW_SHOW); - this.state = 5947; + this.state = 5961; _la = this.tokenStream.LA(1); if(!(_la === 40 || _la === 684)) { this.errorHandler.recoverInline(this); @@ -32955,339 +32989,339 @@ export class MySqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5948; + this.state = 5962; this.match(MySqlParser.KW_SHUTDOWN); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5949; + this.state = 5963; this.match(MySqlParser.KW_SUPER); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5950; + this.state = 5964; this.match(MySqlParser.KW_TRIGGER); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5951; + this.state = 5965; this.match(MySqlParser.KW_UPDATE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5952; + this.state = 5966; this.match(MySqlParser.KW_USAGE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5953; + this.state = 5967; this.match(MySqlParser.KW_APPLICATION_PASSWORD_ADMIN); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5954; + this.state = 5968; this.match(MySqlParser.KW_AUDIT_ABORT_EXEMPT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5955; + this.state = 5969; this.match(MySqlParser.KW_AUDIT_ADMIN); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5956; + this.state = 5970; this.match(MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5957; + this.state = 5971; this.match(MySqlParser.KW_BACKUP_ADMIN); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5958; + this.state = 5972; this.match(MySqlParser.KW_BINLOG_ADMIN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5959; + this.state = 5973; this.match(MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5960; + this.state = 5974; this.match(MySqlParser.KW_CLONE_ADMIN); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5961; + this.state = 5975; this.match(MySqlParser.KW_CONNECTION_ADMIN); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5962; + this.state = 5976; this.match(MySqlParser.KW_ENCRYPTION_KEY_ADMIN); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5963; + this.state = 5977; this.match(MySqlParser.KW_FIREWALL_ADMIN); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5964; + this.state = 5978; this.match(MySqlParser.KW_FIREWALL_EXEMPT); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5965; + this.state = 5979; this.match(MySqlParser.KW_FIREWALL_USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5966; + this.state = 5980; this.match(MySqlParser.KW_FLUSH_OPTIMIZER_COSTS); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 5967; + this.state = 5981; this.match(MySqlParser.KW_FLUSH_STATUS); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 5968; + this.state = 5982; this.match(MySqlParser.KW_FLUSH_TABLES); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 5969; + this.state = 5983; this.match(MySqlParser.KW_FLUSH_USER_RESOURCES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 5970; + this.state = 5984; this.match(MySqlParser.KW_GROUP_REPLICATION_ADMIN); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 5971; + this.state = 5985; this.match(MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 5972; + this.state = 5986; this.match(MySqlParser.KW_INNODB_REDO_LOG_ENABLE); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 5973; + this.state = 5987; this.match(MySqlParser.KW_NDB_STORED_USER); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 5974; + this.state = 5988; this.match(MySqlParser.KW_PASSWORDLESS_USER_ADMIN); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 5975; + this.state = 5989; this.match(MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 5976; + this.state = 5990; this.match(MySqlParser.KW_REPLICATION_APPLIER); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 5977; + this.state = 5991; this.match(MySqlParser.KW_REPLICATION_SLAVE_ADMIN); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 5978; + this.state = 5992; this.match(MySqlParser.KW_RESOURCE_GROUP_ADMIN); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 5979; + this.state = 5993; this.match(MySqlParser.KW_RESOURCE_GROUP_USER); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 5980; + this.state = 5994; this.match(MySqlParser.KW_ROLE_ADMIN); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 5981; + this.state = 5995; this.match(MySqlParser.KW_SERVICE_CONNECTION_ADMIN); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 5982; + this.state = 5996; this.match(MySqlParser.KW_SESSION_VARIABLES_ADMIN); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 5983; + this.state = 5997; this.match(MySqlParser.KW_SET_USER_ID); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 5984; + this.state = 5998; this.match(MySqlParser.KW_SKIP_QUERY_REWRITE); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 5985; + this.state = 5999; this.match(MySqlParser.KW_SHOW_ROUTINE); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 5986; + this.state = 6000; this.match(MySqlParser.KW_SYSTEM_USER); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 5987; + this.state = 6001; this.match(MySqlParser.KW_SYSTEM_VARIABLES_ADMIN); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 5988; + this.state = 6002; this.match(MySqlParser.KW_TABLE_ENCRYPTION_ADMIN); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 5989; + this.state = 6003; this.match(MySqlParser.KW_TP_CONNECTION_ADMIN); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 5990; + this.state = 6004; this.match(MySqlParser.KW_VERSION_TOKEN_ADMIN); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 5991; + this.state = 6005; this.match(MySqlParser.KW_XA_RECOVER_ADMIN); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 5992; + this.state = 6006; this.match(MySqlParser.KW_LOAD); - this.state = 5993; + this.state = 6007; this.match(MySqlParser.KW_FROM); - this.state = 5994; + this.state = 6008; this.match(MySqlParser.KW_S3); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 5995; + this.state = 6009; this.match(MySqlParser.KW_SELECT); - this.state = 5996; + this.state = 6010; this.match(MySqlParser.KW_INTO); - this.state = 5997; + this.state = 6011; this.match(MySqlParser.KW_S3); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 5998; + this.state = 6012; this.match(MySqlParser.KW_INVOKE); - this.state = 5999; + this.state = 6013; this.match(MySqlParser.KW_LAMBDA); } break; @@ -33311,14 +33345,14 @@ export class MySqlParser extends SQLParserBase { let localContext = new PrivilegeLevelContext(this.context, this.state); this.enterRule(localContext, 534, MySqlParser.RULE_privilegeLevel); try { - this.state = 6018; + this.state = 6032; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { case 1: localContext = new CurrentSchemaPriviLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6002; + this.state = 6016; this.match(MySqlParser.STAR); } break; @@ -33326,11 +33360,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GlobalPrivLevelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6003; + this.state = 6017; this.match(MySqlParser.STAR); - this.state = 6004; + this.state = 6018; this.match(MySqlParser.DOT); - this.state = 6005; + this.state = 6019; this.match(MySqlParser.STAR); } break; @@ -33338,11 +33372,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteSchemaPrivLevelContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6006; + this.state = 6020; this.uid(); - this.state = 6007; + this.state = 6021; this.match(MySqlParser.DOT); - this.state = 6008; + this.state = 6022; this.match(MySqlParser.STAR); } break; @@ -33350,11 +33384,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6010; + this.state = 6024; this.uid(); - this.state = 6011; + this.state = 6025; this.match(MySqlParser.DOT); - this.state = 6012; + this.state = 6026; this.uid(); } break; @@ -33362,9 +33396,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevel2Context(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6014; + this.state = 6028; this.uid(); - this.state = 6015; + this.state = 6029; this.dottedId(); } break; @@ -33372,7 +33406,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6017; + this.state = 6031; this.uid(); } break; @@ -33398,11 +33432,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6020; + this.state = 6034; localContext._fromFirst = this.userName(); - this.state = 6021; + this.state = 6035; this.match(MySqlParser.KW_TO); - this.state = 6022; + this.state = 6036; localContext._toFirst = this.userName(); } } @@ -33425,67 +33459,67 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 538, MySqlParser.RULE_analyzeTable); let _la: number; try { - this.state = 6072; + this.state = 6086; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 868, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6024; + this.state = 6038; this.match(MySqlParser.KW_ANALYZE); - this.state = 6026; + this.state = 6040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6025; + this.state = 6039; this.tableActionOption(); } } - this.state = 6028; + this.state = 6042; this.match(MySqlParser.KW_TABLE); - this.state = 6029; + this.state = 6043; this.tableNames(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6030; + this.state = 6044; this.match(MySqlParser.KW_ANALYZE); - this.state = 6032; + this.state = 6046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6031; + this.state = 6045; this.tableActionOption(); } } - this.state = 6034; + this.state = 6048; this.match(MySqlParser.KW_TABLE); - this.state = 6035; + this.state = 6049; this.tableName(); - this.state = 6036; + this.state = 6050; this.match(MySqlParser.KW_UPDATE); - this.state = 6037; + this.state = 6051; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6038; + this.state = 6052; this.match(MySqlParser.KW_ON); - this.state = 6039; + this.state = 6053; this.columnNames(); - this.state = 6044; + this.state = 6058; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 862, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { case 1: { - this.state = 6040; + this.state = 6054; this.match(MySqlParser.KW_WITH); - this.state = 6041; + this.state = 6055; this.decimalLiteral(); - this.state = 6042; + this.state = 6056; this.match(MySqlParser.KW_BUCKETS); } break; @@ -33495,40 +33529,40 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6046; + this.state = 6060; this.match(MySqlParser.KW_ANALYZE); - this.state = 6048; + this.state = 6062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6047; + this.state = 6061; this.tableActionOption(); } } - this.state = 6050; + this.state = 6064; this.match(MySqlParser.KW_TABLE); - this.state = 6051; + this.state = 6065; this.tableName(); - this.state = 6052; + this.state = 6066; this.match(MySqlParser.KW_UPDATE); - this.state = 6053; + this.state = 6067; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6054; + this.state = 6068; this.match(MySqlParser.KW_ON); - this.state = 6055; + this.state = 6069; this.columnName(); - this.state = 6059; + this.state = 6073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6056; + this.state = 6070; this.match(MySqlParser.KW_USING); - this.state = 6057; + this.state = 6071; this.match(MySqlParser.KW_DATA); - this.state = 6058; + this.state = 6072; this.match(MySqlParser.STRING_LITERAL); } } @@ -33538,29 +33572,29 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6061; + this.state = 6075; this.match(MySqlParser.KW_ANALYZE); - this.state = 6063; + this.state = 6077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6062; + this.state = 6076; this.tableActionOption(); } } - this.state = 6065; + this.state = 6079; this.match(MySqlParser.KW_TABLE); - this.state = 6066; + this.state = 6080; this.tableName(); - this.state = 6067; + this.state = 6081; this.match(MySqlParser.KW_DROP); - this.state = 6068; + this.state = 6082; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6069; + this.state = 6083; this.match(MySqlParser.KW_ON); - this.state = 6070; + this.state = 6084; this.columnNames(); } break; @@ -33587,23 +33621,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6074; + this.state = 6088; this.match(MySqlParser.KW_CHECK); - this.state = 6075; + this.state = 6089; this.match(MySqlParser.KW_TABLE); - this.state = 6076; + this.state = 6090; this.tableNames(); - this.state = 6080; + this.state = 6094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 65 || _la === 327 || _la === 392 || _la === 396 || _la === 484 || _la === 549) { { { - this.state = 6077; + this.state = 6091; this.checkTableOption(); } } - this.state = 6082; + this.state = 6096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33630,18 +33664,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6083; + this.state = 6097; this.match(MySqlParser.KW_CHECKSUM); - this.state = 6084; + this.state = 6098; this.match(MySqlParser.KW_TABLE); - this.state = 6085; + this.state = 6099; this.tableNames(); - this.state = 6087; + this.state = 6101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392 || _la === 549) { { - this.state = 6086; + this.state = 6100; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 549)) { @@ -33677,19 +33711,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6089; + this.state = 6103; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 6091; + this.state = 6105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6090; + this.state = 6104; this.tableActionOption(); } } - this.state = 6093; + this.state = 6107; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -33698,7 +33732,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6094; + this.state = 6108; this.tableNames(); } } @@ -33723,48 +33757,48 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6096; + this.state = 6110; this.match(MySqlParser.KW_REPAIR); - this.state = 6098; + this.state = 6112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6097; + this.state = 6111; this.tableActionOption(); } } - this.state = 6100; + this.state = 6114; this.match(MySqlParser.KW_TABLE); - this.state = 6101; + this.state = 6115; this.tableNames(); - this.state = 6103; + this.state = 6117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 6102; + this.state = 6116; this.match(MySqlParser.KW_QUICK); } } - this.state = 6106; + this.state = 6120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6105; + this.state = 6119; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6109; + this.state = 6123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 679) { { - this.state = 6108; + this.state = 6122; this.match(MySqlParser.KW_USE_FRM); } } @@ -33792,7 +33826,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6111; + this.state = 6125; _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -33821,50 +33855,50 @@ export class MySqlParser extends SQLParserBase { let localContext = new CheckTableOptionContext(this.context, this.state); this.enterRule(localContext, 550, MySqlParser.RULE_checkTableOption); try { - this.state = 6120; + this.state = 6134; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 6113; + this.state = 6127; this.match(MySqlParser.KW_FOR); - this.state = 6114; + this.state = 6128; this.match(MySqlParser.KW_UPGRADE); } break; case MySqlParser.KW_QUICK: this.enterOuterAlt(localContext, 2); { - this.state = 6115; + this.state = 6129; this.match(MySqlParser.KW_QUICK); } break; case MySqlParser.KW_FAST: this.enterOuterAlt(localContext, 3); { - this.state = 6116; + this.state = 6130; this.match(MySqlParser.KW_FAST); } break; case MySqlParser.KW_MEDIUM: this.enterOuterAlt(localContext, 4); { - this.state = 6117; + this.state = 6131; this.match(MySqlParser.KW_MEDIUM); } break; case MySqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 5); { - this.state = 6118; + this.state = 6132; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_CHANGED: this.enterOuterAlt(localContext, 6); { - this.state = 6119; + this.state = 6133; this.match(MySqlParser.KW_CHANGED); } break; @@ -33893,50 +33927,50 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6122; + this.state = 6136; this.match(MySqlParser.KW_INSTALL); - this.state = 6123; + this.state = 6137; this.match(MySqlParser.KW_COMPONENT); - this.state = 6124; + this.state = 6138; localContext._component_name = this.uid(); - this.state = 6129; + this.state = 6143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6125; + this.state = 6139; this.match(MySqlParser.COMMA); - this.state = 6126; + this.state = 6140; localContext._component_name = this.uid(); } } - this.state = 6131; + this.state = 6145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6141; + this.state = 6155; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { case 1: { - this.state = 6132; + this.state = 6146; this.match(MySqlParser.KW_SET); - this.state = 6133; + this.state = 6147; this.variableExpr(); - this.state = 6138; + this.state = 6152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6134; + this.state = 6148; this.match(MySqlParser.COMMA); - this.state = 6135; + this.state = 6149; this.variableExpr(); } } - this.state = 6140; + this.state = 6154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33966,7 +34000,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6143; + this.state = 6157; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 531 || _la === 893 || _la === 894)) { this.errorHandler.recoverInline(this); @@ -33975,11 +34009,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6144; + this.state = 6158; localContext._system_var_name = this.fullId(); - this.state = 6145; + this.state = 6159; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6146; + this.state = 6160; this.expression(0); } } @@ -34004,25 +34038,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6148; + this.state = 6162; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6149; + this.state = 6163; this.match(MySqlParser.KW_COMPONENT); - this.state = 6150; + this.state = 6164; localContext._component_name = this.uid(); - this.state = 6155; + this.state = 6169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6151; + this.state = 6165; this.match(MySqlParser.COMMA); - this.state = 6152; + this.state = 6166; localContext._component_name = this.uid(); } } - this.state = 6157; + this.state = 6171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34048,15 +34082,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6158; + this.state = 6172; this.match(MySqlParser.KW_INSTALL); - this.state = 6159; + this.state = 6173; this.match(MySqlParser.KW_PLUGIN); - this.state = 6160; + this.state = 6174; localContext._pluginName = this.uid(); - this.state = 6161; + this.state = 6175; this.match(MySqlParser.KW_SONAME); - this.state = 6162; + this.state = 6176; this.match(MySqlParser.STRING_LITERAL); } } @@ -34080,11 +34114,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6164; + this.state = 6178; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6165; + this.state = 6179; this.match(MySqlParser.KW_PLUGIN); - this.state = 6166; + this.state = 6180; localContext._pluginName = this.uid(); } } @@ -34107,93 +34141,93 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 562, MySqlParser.RULE_cloneStatement); let _la: number; try { - this.state = 6198; + this.state = 6212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6168; + this.state = 6182; this.match(MySqlParser.KW_CLONE); - this.state = 6169; + this.state = 6183; this.match(MySqlParser.KW_LOCAL); - this.state = 6170; + this.state = 6184; this.match(MySqlParser.KW_DATA); - this.state = 6171; + this.state = 6185; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6173; + this.state = 6187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6172; + this.state = 6186; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6175; + this.state = 6189; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6176; + this.state = 6190; this.match(MySqlParser.KW_CLONE); - this.state = 6177; + this.state = 6191; this.match(MySqlParser.KW_INSTANCE); - this.state = 6178; + this.state = 6192; this.match(MySqlParser.KW_FROM); - this.state = 6179; + this.state = 6193; this.userHostPort(); - this.state = 6180; + this.state = 6194; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 6181; + this.state = 6195; this.match(MySqlParser.KW_BY); - this.state = 6182; + this.state = 6196; this.match(MySqlParser.STRING_LITERAL); - this.state = 6189; + this.state = 6203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 6183; + this.state = 6197; this.match(MySqlParser.KW_DATA); - this.state = 6184; + this.state = 6198; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6186; + this.state = 6200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6185; + this.state = 6199; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6188; + this.state = 6202; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6196; + this.state = 6210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 6191; + this.state = 6205; this.match(MySqlParser.KW_REQUIRE); - this.state = 6193; + this.state = 6207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 6192; + this.state = 6206; this.match(MySqlParser.KW_NO); } } - this.state = 6195; + this.state = 6209; this.match(MySqlParser.KW_SSL); } } @@ -34221,18 +34255,18 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 564, MySqlParser.RULE_setStatement); let _la: number; try { - this.state = 6252; + this.state = 6266; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { case 1: localContext = new SetVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6200; + this.state = 6214; this.match(MySqlParser.KW_SET); - this.state = 6201; + this.state = 6215; this.variableClause(); - this.state = 6202; + this.state = 6216; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34241,33 +34275,33 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6205; + this.state = 6219; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { case 1: { - this.state = 6203; + this.state = 6217; this.expression(0); } break; case 2: { - this.state = 6204; + this.state = 6218; this.match(MySqlParser.KW_ON); } break; } - this.state = 6216; + this.state = 6230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6207; + this.state = 6221; this.match(MySqlParser.COMMA); - this.state = 6208; + this.state = 6222; this.variableClause(); - this.state = 6209; + this.state = 6223; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34276,25 +34310,25 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6212; + this.state = 6226; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 888, this.context) ) { case 1: { - this.state = 6210; + this.state = 6224; this.expression(0); } break; case 2: { - this.state = 6211; + this.state = 6225; this.match(MySqlParser.KW_ON); } break; } } } - this.state = 6218; + this.state = 6232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34304,11 +34338,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetCharsetContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6219; + this.state = 6233; this.match(MySqlParser.KW_SET); - this.state = 6220; + this.state = 6234; this.charSet(); - this.state = 6223; + this.state = 6237; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34356,13 +34390,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6221; + this.state = 6235; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 6222; + this.state = 6236; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34375,11 +34409,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNamesContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6225; + this.state = 6239; this.match(MySqlParser.KW_SET); - this.state = 6226; + this.state = 6240; this.match(MySqlParser.KW_NAMES); - this.state = 6233; + this.state = 6247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34427,16 +34461,16 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6227; + this.state = 6241; this.charsetName(); - this.state = 6230; + this.state = 6244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 6228; + this.state = 6242; this.match(MySqlParser.KW_COLLATE); - this.state = 6229; + this.state = 6243; this.collationName(); } } @@ -34445,7 +34479,7 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_DEFAULT: { - this.state = 6232; + this.state = 6246; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34458,7 +34492,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetPasswordContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6235; + this.state = 6249; this.setPasswordStatement(); } break; @@ -34466,7 +34500,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetTransactionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6236; + this.state = 6250; this.setTransactionStatement(); } break; @@ -34474,7 +34508,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetAutocommitContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6237; + this.state = 6251; this.setAutocommitStatement(); } break; @@ -34482,11 +34516,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNewValueInsideTriggerContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6238; + this.state = 6252; this.match(MySqlParser.KW_SET); - this.state = 6239; + this.state = 6253; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6240; + this.state = 6254; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34495,19 +34529,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6241; + this.state = 6255; this.expression(0); - this.state = 6249; + this.state = 6263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6242; + this.state = 6256; this.match(MySqlParser.COMMA); - this.state = 6243; + this.state = 6257; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6244; + this.state = 6258; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34516,11 +34550,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6245; + this.state = 6259; this.expression(0); } } - this.state = 6251; + this.state = 6265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34547,16 +34581,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 566, MySqlParser.RULE_showStatement); let _la: number; try { - this.state = 6438; + this.state = 6452; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: localContext = new ShowMasterLogsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6254; + this.state = 6268; this.match(MySqlParser.KW_SHOW); - this.state = 6255; + this.state = 6269; (localContext as ShowMasterLogsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -34566,7 +34600,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6256; + this.state = 6270; this.match(MySqlParser.KW_LOGS); } break; @@ -34574,9 +34608,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowLogEventsContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6257; + this.state = 6271; this.match(MySqlParser.KW_SHOW); - this.state = 6258; + this.state = 6272; (localContext as ShowLogEventsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 559)) { @@ -34586,62 +34620,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6259; + this.state = 6273; this.match(MySqlParser.KW_EVENTS); - this.state = 6262; + this.state = 6276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 6260; + this.state = 6274; this.match(MySqlParser.KW_IN); - this.state = 6261; + this.state = 6275; (localContext as ShowLogEventsContext)._filename = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6266; + this.state = 6280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 6264; + this.state = 6278; this.match(MySqlParser.KW_FROM); - this.state = 6265; + this.state = 6279; (localContext as ShowLogEventsContext)._fromPosition = this.decimalLiteral(); } } - this.state = 6275; + this.state = 6289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6268; + this.state = 6282; this.match(MySqlParser.KW_LIMIT); - this.state = 6272; + this.state = 6286; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 895, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 897, this.context) ) { case 1: { - this.state = 6269; + this.state = 6283; (localContext as ShowLogEventsContext)._offset = this.decimalLiteral(); - this.state = 6270; + this.state = 6284; this.match(MySqlParser.COMMA); } break; } - this.state = 6274; + this.state = 6288; (localContext as ShowLogEventsContext)._rowCount = this.decimalLiteral(); } } - this.state = 6278; + this.state = 6292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6277; + this.state = 6291; this.channelOption(); } } @@ -34652,16 +34686,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowObjectFilterContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6280; + this.state = 6294; this.match(MySqlParser.KW_SHOW); - this.state = 6281; + this.state = 6295; this.showCommonEntity(); - this.state = 6283; + this.state = 6297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6282; + this.state = 6296; this.showFilter(); } } @@ -34672,29 +34706,29 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6285; + this.state = 6299; this.match(MySqlParser.KW_SHOW); - this.state = 6287; + this.state = 6301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6286; + this.state = 6300; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6290; + this.state = 6304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6289; + this.state = 6303; this.match(MySqlParser.KW_FULL); } } - this.state = 6292; + this.state = 6306; (localContext as ShowColumnsContext)._columnsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -34704,7 +34738,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6293; + this.state = 6307; (localContext as ShowColumnsContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34714,14 +34748,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6294; + this.state = 6308; this.tableName(); - this.state = 6297; + this.state = 6311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6295; + this.state = 6309; (localContext as ShowColumnsContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34731,17 +34765,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6296; + this.state = 6310; this.databaseName(); } } - this.state = 6300; + this.state = 6314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6299; + this.state = 6313; this.showFilter(); } } @@ -34752,11 +34786,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateDbContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6302; + this.state = 6316; this.match(MySqlParser.KW_SHOW); - this.state = 6303; + this.state = 6317; this.match(MySqlParser.KW_CREATE); - this.state = 6304; + this.state = 6318; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { this.errorHandler.recoverInline(this); @@ -34765,17 +34799,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6306; + this.state = 6320; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 903, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { case 1: { - this.state = 6305; + this.state = 6319; this.ifNotExists(); } break; } - this.state = 6308; + this.state = 6322; this.databaseName(); } break; @@ -34783,11 +34817,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFullIdObjectContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6309; + this.state = 6323; this.match(MySqlParser.KW_SHOW); - this.state = 6310; + this.state = 6324; this.match(MySqlParser.KW_CREATE); - this.state = 6311; + this.state = 6325; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 178 || _la === 385)) { this.errorHandler.recoverInline(this); @@ -34796,7 +34830,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6312; + this.state = 6326; this.fullId(); } break; @@ -34804,13 +34838,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6313; + this.state = 6327; this.match(MySqlParser.KW_SHOW); - this.state = 6314; + this.state = 6328; this.match(MySqlParser.KW_CREATE); - this.state = 6315; + this.state = 6329; this.match(MySqlParser.KW_FUNCTION); - this.state = 6316; + this.state = 6330; this.functionName(); } break; @@ -34818,13 +34852,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6317; + this.state = 6331; this.match(MySqlParser.KW_SHOW); - this.state = 6318; + this.state = 6332; this.match(MySqlParser.KW_CREATE); - this.state = 6319; + this.state = 6333; this.match(MySqlParser.KW_VIEW); - this.state = 6320; + this.state = 6334; this.viewName(); } break; @@ -34832,13 +34866,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6321; + this.state = 6335; this.match(MySqlParser.KW_SHOW); - this.state = 6322; + this.state = 6336; this.match(MySqlParser.KW_CREATE); - this.state = 6323; + this.state = 6337; this.match(MySqlParser.KW_TABLE); - this.state = 6324; + this.state = 6338; this.tableName(); } break; @@ -34846,13 +34880,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateUserContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6325; + this.state = 6339; this.match(MySqlParser.KW_SHOW); - this.state = 6326; + this.state = 6340; this.match(MySqlParser.KW_CREATE); - this.state = 6327; + this.state = 6341; this.match(MySqlParser.KW_USER); - this.state = 6328; + this.state = 6342; this.userName(); } break; @@ -34860,13 +34894,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowEngineContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6329; + this.state = 6343; this.match(MySqlParser.KW_SHOW); - this.state = 6330; + this.state = 6344; this.match(MySqlParser.KW_ENGINE); - this.state = 6331; + this.state = 6345; this.engineName(); - this.state = 6332; + this.state = 6346; (localContext as ShowEngineContext)._engineOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 493 || _la === 645)) { @@ -34882,9 +34916,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGlobalInfoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6334; + this.state = 6348; this.match(MySqlParser.KW_SHOW); - this.state = 6335; + this.state = 6349; this.showGlobalInfoClause(); } break; @@ -34892,9 +34926,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowErrorsContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6336; + this.state = 6350; this.match(MySqlParser.KW_SHOW); - this.state = 6337; + this.state = 6351; (localContext as ShowErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34904,26 +34938,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6345; + this.state = 6359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6338; + this.state = 6352; this.match(MySqlParser.KW_LIMIT); - this.state = 6342; + this.state = 6356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: { - this.state = 6339; + this.state = 6353; (localContext as ShowErrorsContext)._offset = this.decimalLiteral(); - this.state = 6340; + this.state = 6354; this.match(MySqlParser.COMMA); } break; } - this.state = 6344; + this.state = 6358; (localContext as ShowErrorsContext)._rowCount = this.decimalLiteral(); } } @@ -34934,17 +34968,17 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCountErrorsContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6347; + this.state = 6361; this.match(MySqlParser.KW_SHOW); - this.state = 6348; + this.state = 6362; this.match(MySqlParser.KW_COUNT); - this.state = 6349; + this.state = 6363; this.match(MySqlParser.LR_BRACKET); - this.state = 6350; + this.state = 6364; this.match(MySqlParser.STAR); - this.state = 6351; + this.state = 6365; this.match(MySqlParser.RR_BRACKET); - this.state = 6352; + this.state = 6366; (localContext as ShowCountErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34960,16 +34994,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSchemaFilterContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 6353; + this.state = 6367; this.match(MySqlParser.KW_SHOW); - this.state = 6354; + this.state = 6368; this.showSchemaEntity(); - this.state = 6357; + this.state = 6371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6355; + this.state = 6369; (localContext as ShowSchemaFilterContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34979,17 +35013,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6356; + this.state = 6370; this.databaseName(); } } - this.state = 6360; + this.state = 6374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6359; + this.state = 6373; this.showFilter(); } } @@ -35000,13 +35034,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowPercedureCodeContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 6362; + this.state = 6376; this.match(MySqlParser.KW_SHOW); - this.state = 6363; + this.state = 6377; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6364; + this.state = 6378; this.match(MySqlParser.KW_CODE); - this.state = 6365; + this.state = 6379; (localContext as ShowPercedureCodeContext)._proc_name = this.fullId(); } break; @@ -35014,13 +35048,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowFunctionCodeContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 6366; + this.state = 6380; this.match(MySqlParser.KW_SHOW); - this.state = 6367; + this.state = 6381; this.match(MySqlParser.KW_FUNCTION); - this.state = 6368; + this.state = 6382; this.match(MySqlParser.KW_CODE); - this.state = 6369; + this.state = 6383; this.functionName(); } break; @@ -35028,27 +35062,27 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 6370; + this.state = 6384; this.match(MySqlParser.KW_SHOW); - this.state = 6371; + this.state = 6385; this.match(MySqlParser.KW_GRANTS); - this.state = 6378; + this.state = 6392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6372; + this.state = 6386; this.match(MySqlParser.KW_FOR); - this.state = 6373; + this.state = 6387; this.userOrRoleName(); - this.state = 6376; + this.state = 6390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6374; + this.state = 6388; this.match(MySqlParser.KW_USING); - this.state = 6375; + this.state = 6389; this.userOrRoleNames(); } } @@ -35062,19 +35096,19 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowIndexesContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 6380; + this.state = 6394; this.match(MySqlParser.KW_SHOW); - this.state = 6382; + this.state = 6396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6381; + this.state = 6395; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6384; + this.state = 6398; (localContext as ShowIndexesContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 93 || _la === 426)) { @@ -35084,7 +35118,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6385; + this.state = 6399; (localContext as ShowIndexesContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35094,14 +35128,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6386; + this.state = 6400; this.tableName(); - this.state = 6389; + this.state = 6403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6387; + this.state = 6401; (localContext as ShowIndexesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35111,19 +35145,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6388; + this.state = 6402; this.databaseName(); } } - this.state = 6393; + this.state = 6407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 6391; + this.state = 6405; this.match(MySqlParser.KW_WHERE); - this.state = 6392; + this.state = 6406; this.expression(0); } } @@ -35134,18 +35168,18 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowOpenTablesContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 6395; + this.state = 6409; this.match(MySqlParser.KW_SHOW); - this.state = 6396; + this.state = 6410; this.match(MySqlParser.KW_OPEN); - this.state = 6397; + this.state = 6411; this.match(MySqlParser.KW_TABLES); - this.state = 6400; + this.state = 6414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6398; + this.state = 6412; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -35154,17 +35188,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6399; + this.state = 6413; this.databaseName(); } } - this.state = 6403; + this.state = 6417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6402; + this.state = 6416; this.showFilter(); } } @@ -35175,67 +35209,67 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowProfileContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 6405; + this.state = 6419; this.match(MySqlParser.KW_SHOW); - this.state = 6406; + this.state = 6420; this.match(MySqlParser.KW_PROFILE); - this.state = 6415; + this.state = 6429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 320 || _la === 355 || _la === 358 || _la === 439 || _la === 521 || _la === 605 || _la === 655 || _la === 802) { { - this.state = 6407; + this.state = 6421; this.showProfileType(); - this.state = 6412; + this.state = 6426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6408; + this.state = 6422; this.match(MySqlParser.COMMA); - this.state = 6409; + this.state = 6423; this.showProfileType(); } } - this.state = 6414; + this.state = 6428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 6420; + this.state = 6434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6417; + this.state = 6431; this.match(MySqlParser.KW_FOR); - this.state = 6418; + this.state = 6432; this.match(MySqlParser.KW_QUERY); - this.state = 6419; + this.state = 6433; (localContext as ShowProfileContext)._queryCount = this.decimalLiteral(); } } - this.state = 6428; + this.state = 6442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6422; + this.state = 6436; this.match(MySqlParser.KW_LIMIT); - this.state = 6423; + this.state = 6437; (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); - this.state = 6426; + this.state = 6440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 509) { { - this.state = 6424; + this.state = 6438; this.match(MySqlParser.KW_OFFSET); - this.state = 6425; + this.state = 6439; (localContext as ShowProfileContext)._offset = this.decimalLiteral(); } } @@ -35249,9 +35283,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSlaveStatusContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 6430; + this.state = 6444; this.match(MySqlParser.KW_SHOW); - this.state = 6431; + this.state = 6445; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -35260,14 +35294,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6432; + this.state = 6446; this.match(MySqlParser.KW_STATUS); - this.state = 6434; + this.state = 6448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6433; + this.state = 6447; this.channelOption(); } } @@ -35278,9 +35312,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowReplicasContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 6436; + this.state = 6450; this.match(MySqlParser.KW_SHOW); - this.state = 6437; + this.state = 6451; this.match(MySqlParser.KW_REPLICAS); } break; @@ -35305,20 +35339,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 568, MySqlParser.RULE_variableClause); let _la: number; try { - this.state = 6450; + this.state = 6464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 1); { - this.state = 6440; + this.state = 6454; this.match(MySqlParser.LOCAL_ID); } break; case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 6441; + this.state = 6455; this.match(MySqlParser.GLOBAL_ID); } break; @@ -35876,24 +35910,24 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 6447; + this.state = 6461; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 925, this.context) ) { case 1: { - this.state = 6444; + this.state = 6458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 870) { { - this.state = 6442; + this.state = 6456; this.match(MySqlParser.AT_SIGN); - this.state = 6443; + this.state = 6457; this.match(MySqlParser.AT_SIGN); } } - this.state = 6446; + this.state = 6460; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 450 || _la === 531 || _la === 532 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35905,7 +35939,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6449; + this.state = 6463; localContext._target = this.uid(); } break; @@ -35932,61 +35966,61 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 570, MySqlParser.RULE_showCommonEntity); let _la: number; try { - this.state = 6466; + this.state = 6480; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 6452; + this.state = 6466; this.match(MySqlParser.KW_CHARACTER); - this.state = 6453; + this.state = 6467; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 6454; + this.state = 6468; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 3); { - this.state = 6455; + this.state = 6469; this.match(MySqlParser.KW_COLLATION); } break; case MySqlParser.KW_DATABASES: this.enterOuterAlt(localContext, 4); { - this.state = 6456; + this.state = 6470; this.match(MySqlParser.KW_DATABASES); } break; case MySqlParser.KW_SCHEMAS: this.enterOuterAlt(localContext, 5); { - this.state = 6457; + this.state = 6471; this.match(MySqlParser.KW_SCHEMAS); } break; case MySqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 6); { - this.state = 6458; + this.state = 6472; this.match(MySqlParser.KW_FUNCTION); - this.state = 6459; + this.state = 6473; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 7); { - this.state = 6460; + this.state = 6474; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6461; + this.state = 6475; this.match(MySqlParser.KW_STATUS); } break; @@ -35996,12 +36030,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIABLES: this.enterOuterAlt(localContext, 8); { - this.state = 6463; + this.state = 6477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 6462; + this.state = 6476; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -36013,7 +36047,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6465; + this.state = 6479; _la = this.tokenStream.LA(1); if(!(_la === 645 || _la === 683)) { this.errorHandler.recoverInline(this); @@ -36046,24 +36080,24 @@ export class MySqlParser extends SQLParserBase { let localContext = new ShowFilterContext(this.context, this.state); this.enterRule(localContext, 572, MySqlParser.RULE_showFilter); try { - this.state = 6472; + this.state = 6486; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 6468; + this.state = 6482; this.match(MySqlParser.KW_LIKE); - this.state = 6469; + this.state = 6483; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_WHERE: this.enterOuterAlt(localContext, 2); { - this.state = 6470; + this.state = 6484; this.match(MySqlParser.KW_WHERE); - this.state = 6471; + this.state = 6485; this.expression(0); } break; @@ -36090,47 +36124,47 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 574, MySqlParser.RULE_showGlobalInfoClause); let _la: number; try { - this.state = 6491; + this.state = 6505; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ENGINES: case MySqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 1); { - this.state = 6475; + this.state = 6489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 6474; + this.state = 6488; this.match(MySqlParser.KW_STORAGE); } } - this.state = 6477; + this.state = 6491; this.match(MySqlParser.KW_ENGINES); } break; case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 2); { - this.state = 6478; + this.state = 6492; this.match(MySqlParser.KW_MASTER); - this.state = 6479; + this.state = 6493; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PLUGINS: this.enterOuterAlt(localContext, 3); { - this.state = 6480; + this.state = 6494; this.match(MySqlParser.KW_PLUGINS); } break; case MySqlParser.KW_PRIVILEGES: this.enterOuterAlt(localContext, 4); { - this.state = 6481; + this.state = 6495; this.match(MySqlParser.KW_PRIVILEGES); } break; @@ -36138,47 +36172,47 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PROCESSLIST: this.enterOuterAlt(localContext, 5); { - this.state = 6483; + this.state = 6497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6482; + this.state = 6496; this.match(MySqlParser.KW_FULL); } } - this.state = 6485; + this.state = 6499; this.match(MySqlParser.KW_PROCESSLIST); } break; case MySqlParser.KW_PROFILES: this.enterOuterAlt(localContext, 6); { - this.state = 6486; + this.state = 6500; this.match(MySqlParser.KW_PROFILES); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 7); { - this.state = 6487; + this.state = 6501; this.match(MySqlParser.KW_SLAVE); - this.state = 6488; + this.state = 6502; this.match(MySqlParser.KW_HOSTS); } break; case MySqlParser.KW_AUTHORS: this.enterOuterAlt(localContext, 8); { - this.state = 6489; + this.state = 6503; this.match(MySqlParser.KW_AUTHORS); } break; case MySqlParser.KW_CONTRIBUTORS: this.enterOuterAlt(localContext, 9); { - this.state = 6490; + this.state = 6504; this.match(MySqlParser.KW_CONTRIBUTORS); } break; @@ -36205,22 +36239,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 576, MySqlParser.RULE_showSchemaEntity); let _la: number; try { - this.state = 6504; + this.state = 6518; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EVENTS: this.enterOuterAlt(localContext, 1); { - this.state = 6493; + this.state = 6507; this.match(MySqlParser.KW_EVENTS); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 6494; + this.state = 6508; this.match(MySqlParser.KW_TABLE); - this.state = 6495; + this.state = 6509; this.match(MySqlParser.KW_STATUS); } break; @@ -36229,34 +36263,34 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TABLES: this.enterOuterAlt(localContext, 3); { - this.state = 6497; + this.state = 6511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6496; + this.state = 6510; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6500; + this.state = 6514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6499; + this.state = 6513; this.match(MySqlParser.KW_FULL); } } - this.state = 6502; + this.state = 6516; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_TRIGGERS: this.enterOuterAlt(localContext, 4); { - this.state = 6503; + this.state = 6517; this.match(MySqlParser.KW_TRIGGERS); } break; @@ -36282,75 +36316,75 @@ export class MySqlParser extends SQLParserBase { let localContext = new ShowProfileTypeContext(this.context, this.state); this.enterRule(localContext, 578, MySqlParser.RULE_showProfileType); try { - this.state = 6518; + this.state = 6532; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 6506; + this.state = 6520; this.match(MySqlParser.KW_ALL); } break; case MySqlParser.KW_BLOCK: this.enterOuterAlt(localContext, 2); { - this.state = 6507; + this.state = 6521; this.match(MySqlParser.KW_BLOCK); - this.state = 6508; + this.state = 6522; this.match(MySqlParser.KW_IO); } break; case MySqlParser.KW_CONTEXT: this.enterOuterAlt(localContext, 3); { - this.state = 6509; + this.state = 6523; this.match(MySqlParser.KW_CONTEXT); - this.state = 6510; + this.state = 6524; this.match(MySqlParser.KW_SWITCHES); } break; case MySqlParser.KW_CPU: this.enterOuterAlt(localContext, 4); { - this.state = 6511; + this.state = 6525; this.match(MySqlParser.KW_CPU); } break; case MySqlParser.KW_IPC: this.enterOuterAlt(localContext, 5); { - this.state = 6512; + this.state = 6526; this.match(MySqlParser.KW_IPC); } break; case MySqlParser.KW_MEMORY: this.enterOuterAlt(localContext, 6); { - this.state = 6513; + this.state = 6527; this.match(MySqlParser.KW_MEMORY); } break; case MySqlParser.KW_PAGE: this.enterOuterAlt(localContext, 7); { - this.state = 6514; + this.state = 6528; this.match(MySqlParser.KW_PAGE); - this.state = 6515; + this.state = 6529; this.match(MySqlParser.KW_FAULTS); } break; case MySqlParser.KW_SOURCE: this.enterOuterAlt(localContext, 8); { - this.state = 6516; + this.state = 6530; this.match(MySqlParser.KW_SOURCE); } break; case MySqlParser.KW_SWAPS: this.enterOuterAlt(localContext, 9); { - this.state = 6517; + this.state = 6531; this.match(MySqlParser.KW_SWAPS); } break; @@ -36378,9 +36412,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6520; + this.state = 6534; this.match(MySqlParser.KW_BINLOG); - this.state = 6521; + this.state = 6535; this.match(MySqlParser.STRING_LITERAL); } } @@ -36405,30 +36439,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6523; + this.state = 6537; this.match(MySqlParser.KW_CACHE); - this.state = 6524; + this.state = 6538; this.match(MySqlParser.KW_INDEX); - this.state = 6542; + this.state = 6556; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 937, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 939, this.context) ) { case 1: { - this.state = 6525; + this.state = 6539; this.tableIndex(); - this.state = 6530; + this.state = 6544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6526; + this.state = 6540; this.match(MySqlParser.COMMA); - this.state = 6527; + this.state = 6541; this.tableIndex(); } } - this.state = 6532; + this.state = 6546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36436,13 +36470,13 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6533; + this.state = 6547; this.tableName(); - this.state = 6534; + this.state = 6548; this.match(MySqlParser.KW_PARTITION); - this.state = 6535; + this.state = 6549; this.match(MySqlParser.LR_BRACKET); - this.state = 6538; + this.state = 6552; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -36995,27 +37029,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6536; + this.state = 6550; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6537; + this.state = 6551; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6540; + this.state = 6554; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6544; + this.state = 6558; this.match(MySqlParser.KW_IN); - this.state = 6545; + this.state = 6559; this.databaseName(); } } @@ -37040,33 +37074,33 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6547; + this.state = 6561; this.match(MySqlParser.KW_FLUSH); - this.state = 6549; + this.state = 6563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6548; + this.state = 6562; this.tableActionOption(); } } - this.state = 6551; + this.state = 6565; this.flushOption(); - this.state = 6556; + this.state = 6570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6552; + this.state = 6566; this.match(MySqlParser.COMMA); - this.state = 6553; + this.state = 6567; this.flushOption(); } } - this.state = 6558; + this.state = 6572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37093,14 +37127,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6559; + this.state = 6573; this.match(MySqlParser.KW_KILL); - this.state = 6561; + this.state = 6575; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 940, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { case 1: { - this.state = 6560; + this.state = 6574; localContext._connectionFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 349 || _la === 548)) { @@ -37113,7 +37147,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6563; + this.state = 6577; this.expression(0); } } @@ -37138,29 +37172,29 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6565; + this.state = 6579; this.match(MySqlParser.KW_LOAD); - this.state = 6566; + this.state = 6580; this.match(MySqlParser.KW_INDEX); - this.state = 6567; + this.state = 6581; this.match(MySqlParser.KW_INTO); - this.state = 6568; + this.state = 6582; this.match(MySqlParser.KW_CACHE); - this.state = 6569; + this.state = 6583; this.loadedTableIndexes(); - this.state = 6574; + this.state = 6588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6570; + this.state = 6584; this.match(MySqlParser.COMMA); - this.state = 6571; + this.state = 6585; this.loadedTableIndexes(); } } - this.state = 6576; + this.state = 6590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37187,23 +37221,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6577; + this.state = 6591; this.match(MySqlParser.KW_RESET); - this.state = 6578; + this.state = 6592; this.resetOption(); - this.state = 6583; + this.state = 6597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6579; + this.state = 6593; this.match(MySqlParser.COMMA); - this.state = 6580; + this.state = 6594; this.resetOption(); } } - this.state = 6585; + this.state = 6599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37227,36 +37261,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new ResetOptionContext(this.context, this.state); this.enterRule(localContext, 592, MySqlParser.RULE_resetOption); try { - this.state = 6591; + this.state = 6605; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 1); { - this.state = 6586; + this.state = 6600; this.match(MySqlParser.KW_MASTER); } break; case MySqlParser.KW_REPLICA: this.enterOuterAlt(localContext, 2); { - this.state = 6587; + this.state = 6601; this.match(MySqlParser.KW_REPLICA); } break; case MySqlParser.KW_QUERY: this.enterOuterAlt(localContext, 3); { - this.state = 6588; + this.state = 6602; this.match(MySqlParser.KW_QUERY); - this.state = 6589; + this.state = 6603; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 4); { - this.state = 6590; + this.state = 6604; this.match(MySqlParser.KW_SLAVE); } break; @@ -37284,26 +37318,26 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6593; + this.state = 6607; this.match(MySqlParser.KW_RESET); - this.state = 6594; + this.state = 6608; this.match(MySqlParser.KW_PERSIST); - this.state = 6599; + this.state = 6613; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { case 1: { - this.state = 6596; + this.state = 6610; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { case 1: { - this.state = 6595; + this.state = 6609; this.ifExists(); } break; } - this.state = 6598; + this.state = 6612; localContext._system_var_name = this.uid(); } break; @@ -37331,9 +37365,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6601; + this.state = 6615; this.match(MySqlParser.KW_RESET); - this.state = 6602; + this.state = 6616; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -37342,22 +37376,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6604; + this.state = 6618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 6603; + this.state = 6617; this.match(MySqlParser.KW_ALL); } } - this.state = 6607; + this.state = 6621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6606; + this.state = 6620; this.channelOption(); } } @@ -37384,7 +37418,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6609; + this.state = 6623; this.match(MySqlParser.KW_RESTART); } } @@ -37408,7 +37442,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6611; + this.state = 6625; this.match(MySqlParser.KW_SHUTDOWN); } } @@ -37433,14 +37467,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6613; + this.state = 6627; this.tableName(); - this.state = 6619; + this.state = 6633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6614; + this.state = 6628; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -37450,11 +37484,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6615; + this.state = 6629; this.match(MySqlParser.LR_BRACKET); - this.state = 6616; + this.state = 6630; this.indexNames(); - this.state = 6617; + this.state = 6631; this.match(MySqlParser.RR_BRACKET); } } @@ -37480,25 +37514,25 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 604, MySqlParser.RULE_flushOption); let _la: number; try { - this.state = 6653; + this.state = 6667; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { case 1: localContext = new SimpleFlushOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6639; + this.state = 6653; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DES_KEY_FILE: { - this.state = 6621; + this.state = 6635; this.match(MySqlParser.KW_DES_KEY_FILE); } break; case MySqlParser.KW_HOSTS: { - this.state = 6622; + this.state = 6636; this.match(MySqlParser.KW_HOSTS); } break; @@ -37510,12 +37544,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_RELAY: case MySqlParser.KW_SLOW: { - this.state = 6624; + this.state = 6638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599) { { - this.state = 6623; + this.state = 6637; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599)) { this.errorHandler.recoverInline(this); @@ -37527,56 +37561,56 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6626; + this.state = 6640; this.match(MySqlParser.KW_LOGS); } break; case MySqlParser.KW_OPTIMIZER_COSTS: { - this.state = 6627; + this.state = 6641; this.match(MySqlParser.KW_OPTIMIZER_COSTS); } break; case MySqlParser.KW_PRIVILEGES: { - this.state = 6628; + this.state = 6642; this.match(MySqlParser.KW_PRIVILEGES); } break; case MySqlParser.KW_QUERY: { - this.state = 6629; + this.state = 6643; this.match(MySqlParser.KW_QUERY); - this.state = 6630; + this.state = 6644; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_STATUS: { - this.state = 6631; + this.state = 6645; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_USER_RESOURCES: { - this.state = 6632; + this.state = 6646; this.match(MySqlParser.KW_USER_RESOURCES); } break; case MySqlParser.KW_TABLES: { - this.state = 6633; + this.state = 6647; this.match(MySqlParser.KW_TABLES); - this.state = 6637; + this.state = 6651; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { case 1: { - this.state = 6634; + this.state = 6648; this.match(MySqlParser.KW_WITH); - this.state = 6635; + this.state = 6649; this.match(MySqlParser.KW_READ); - this.state = 6636; + this.state = 6650; this.match(MySqlParser.KW_LOCK); } break; @@ -37592,16 +37626,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ChannelFlushOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6641; + this.state = 6655; this.match(MySqlParser.KW_RELAY); - this.state = 6642; + this.state = 6656; this.match(MySqlParser.KW_LOGS); - this.state = 6644; + this.state = 6658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6643; + this.state = 6657; this.channelOption(); } } @@ -37612,7 +37646,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableFlushOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6646; + this.state = 6660; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -37621,22 +37655,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6648; + this.state = 6662; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 6647; + this.state = 6661; this.tableNames(); } break; } - this.state = 6651; + this.state = 6665; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 956, this.context) ) { case 1: { - this.state = 6650; + this.state = 6664; this.flushTableOption(); } break; @@ -37663,26 +37697,26 @@ export class MySqlParser extends SQLParserBase { let localContext = new FlushTableOptionContext(this.context, this.state); this.enterRule(localContext, 606, MySqlParser.RULE_flushTableOption); try { - this.state = 6660; + this.state = 6674; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 6655; + this.state = 6669; this.match(MySqlParser.KW_WITH); - this.state = 6656; + this.state = 6670; this.match(MySqlParser.KW_READ); - this.state = 6657; + this.state = 6671; this.match(MySqlParser.KW_LOCK); } break; case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 2); { - this.state = 6658; + this.state = 6672; this.match(MySqlParser.KW_FOR); - this.state = 6659; + this.state = 6673; this.match(MySqlParser.KW_EXPORT); } break; @@ -37711,18 +37745,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6662; + this.state = 6676; this.tableName(); - this.state = 6670; + this.state = 6684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 6663; + this.state = 6677; this.match(MySqlParser.KW_PARTITION); - this.state = 6664; + this.state = 6678; this.match(MySqlParser.LR_BRACKET); - this.state = 6667; + this.state = 6681; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -38275,35 +38309,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6665; + this.state = 6679; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6666; + this.state = 6680; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6669; + this.state = 6683; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6679; + this.state = 6693; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 6673; + this.state = 6687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6672; + this.state = 6686; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -38316,23 +38350,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6675; + this.state = 6689; this.match(MySqlParser.LR_BRACKET); - this.state = 6676; + this.state = 6690; this.indexNames(); - this.state = 6677; + this.state = 6691; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6683; + this.state = 6697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6681; + this.state = 6695; this.match(MySqlParser.KW_IGNORE); - this.state = 6682; + this.state = 6696; this.match(MySqlParser.KW_LEAVES); } } @@ -38360,7 +38394,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6685; + this.state = 6699; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38370,20 +38404,20 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6686; + this.state = 6700; this.tableName(); - this.state = 6689; + this.state = 6703; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 964, this.context) ) { case 1: { - this.state = 6687; + this.state = 6701; localContext._column = this.columnName(); } break; case 2: { - this.state = 6688; + this.state = 6702; localContext._pattern = this.match(MySqlParser.STRING_LITERAL); } break; @@ -38411,7 +38445,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6691; + this.state = 6705; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38421,28 +38455,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6697; + this.state = 6711; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EXTENDED: { - this.state = 6692; + this.state = 6706; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_PARTITIONS: { - this.state = 6693; + this.state = 6707; this.match(MySqlParser.KW_PARTITIONS); } break; case MySqlParser.KW_FORMAT: { - this.state = 6694; + this.state = 6708; this.match(MySqlParser.KW_FORMAT); - this.state = 6695; + this.state = 6709; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6696; + this.state = 6710; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 663 || _la === 666)) { this.errorHandler.recoverInline(this); @@ -38464,7 +38498,7 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6699; + this.state = 6713; this.describeObjectClause(); } } @@ -38489,7 +38523,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6701; + this.state = 6715; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38499,23 +38533,23 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6702; + this.state = 6716; this.match(MySqlParser.KW_ANALYZE); - this.state = 6706; + this.state = 6720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 826) { { - this.state = 6703; + this.state = 6717; this.match(MySqlParser.KW_FORMAT); - this.state = 6704; + this.state = 6718; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6705; + this.state = 6719; this.match(MySqlParser.KW_TREE); } } - this.state = 6708; + this.state = 6722; this.selectStatement(); } } @@ -38539,9 +38573,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6710; + this.state = 6724; this.match(MySqlParser.KW_HELP); - this.state = 6711; + this.state = 6725; this.match(MySqlParser.STRING_LITERAL); } } @@ -38565,9 +38599,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6713; + this.state = 6727; this.match(MySqlParser.KW_USE); - this.state = 6714; + this.state = 6728; this.databaseName(); } } @@ -38592,68 +38626,68 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6716; + this.state = 6730; this.match(MySqlParser.KW_SIGNAL); - this.state = 6724; + this.state = 6738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6717; + this.state = 6731; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6719; + this.state = 6733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6718; + this.state = 6732; this.match(MySqlParser.KW_VALUE); } } - this.state = 6721; + this.state = 6735; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6722; + this.state = 6736; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6723; + this.state = 6737; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6735; + this.state = 6749; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 968, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 970, this.context) ) { case 1: { - this.state = 6726; + this.state = 6740; this.match(MySqlParser.KW_SET); - this.state = 6727; + this.state = 6741; this.signalConditionInformation(); - this.state = 6732; + this.state = 6746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6728; + this.state = 6742; this.match(MySqlParser.COMMA); - this.state = 6729; + this.state = 6743; this.signalConditionInformation(); } } - this.state = 6734; + this.state = 6748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38683,40 +38717,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6737; + this.state = 6751; this.match(MySqlParser.KW_RESIGNAL); - this.state = 6745; + this.state = 6759; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6738; + this.state = 6752; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6740; + this.state = 6754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6739; + this.state = 6753; this.match(MySqlParser.KW_VALUE); } } - this.state = 6742; + this.state = 6756; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6743; + this.state = 6757; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6744; + this.state = 6758; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; @@ -38787,28 +38821,28 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6756; + this.state = 6770; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: { - this.state = 6747; + this.state = 6761; this.match(MySqlParser.KW_SET); - this.state = 6748; + this.state = 6762; this.signalConditionInformation(); - this.state = 6753; + this.state = 6767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6749; + this.state = 6763; this.match(MySqlParser.COMMA); - this.state = 6750; + this.state = 6764; this.signalConditionInformation(); } } - this.state = 6755; + this.state = 6769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38838,7 +38872,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6758; + this.state = 6772; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -38847,29 +38881,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6759; + this.state = 6773; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6764; + this.state = 6778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.START_NATIONAL_STRING_LITERAL: case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 6760; + this.state = 6774; this.stringLiteral(); } break; case MySqlParser.DECIMAL_LITERAL: { - this.state = 6761; + this.state = 6775; this.match(MySqlParser.DECIMAL_LITERAL); } break; case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6762; + this.state = 6776; this.mysqlVariable(); } break; @@ -39421,7 +39455,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: case MySqlParser.ID: { - this.state = 6763; + this.state = 6777; this.simpleId(); } break; @@ -39451,33 +39485,33 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6766; + this.state = 6780; this.match(MySqlParser.KW_WITH); - this.state = 6768; + this.state = 6782; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: { - this.state = 6767; + this.state = 6781; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 6770; + this.state = 6784; this.commonTableExpressions(); - this.state = 6775; + this.state = 6789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6771; + this.state = 6785; this.match(MySqlParser.COMMA); - this.state = 6772; + this.state = 6786; this.commonTableExpressions(); } } - this.state = 6777; + this.state = 6791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39503,26 +39537,26 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6778; + this.state = 6792; this.match(MySqlParser.KW_TABLE); - this.state = 6779; + this.state = 6793; this.tableName(); - this.state = 6781; + this.state = 6795; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 6780; + this.state = 6794; this.orderByClause(); } break; } - this.state = 6784; + this.state = 6798; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { case 1: { - this.state = 6783; + this.state = 6797; this.limitClause(); } break; @@ -39550,14 +39584,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6786; + this.state = 6800; this.match(MySqlParser.KW_GET); - this.state = 6788; + this.state = 6802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 170) { { - this.state = 6787; + this.state = 6801; _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -39569,19 +39603,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6790; + this.state = 6804; this.match(MySqlParser.KW_DIAGNOSTICS); - this.state = 6822; + this.state = 6836; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { case 1: { { - this.state = 6791; + this.state = 6805; this.variableClause(); - this.state = 6792; + this.state = 6806; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6793; + this.state = 6807; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39590,19 +39624,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6801; + this.state = 6815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6794; + this.state = 6808; this.match(MySqlParser.COMMA); - this.state = 6795; + this.state = 6809; this.variableClause(); - this.state = 6796; + this.state = 6810; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6797; + this.state = 6811; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39613,7 +39647,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 6803; + this.state = 6817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39623,9 +39657,9 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 6804; + this.state = 6818; this.match(MySqlParser.KW_CONDITION); - this.state = 6807; + this.state = 6821; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -39635,7 +39669,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 6805; + this.state = 6819; this.decimalLiteral(); } break; @@ -40194,36 +40228,36 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6806; + this.state = 6820; this.variableClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6809; + this.state = 6823; this.variableClause(); - this.state = 6810; + this.state = 6824; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6811; + this.state = 6825; this.diagnosticsConditionInformationName(); - this.state = 6819; + this.state = 6833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6812; + this.state = 6826; this.match(MySqlParser.COMMA); - this.state = 6813; + this.state = 6827; this.variableClause(); - this.state = 6814; + this.state = 6828; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6815; + this.state = 6829; this.diagnosticsConditionInformationName(); } } - this.state = 6821; + this.state = 6835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40254,7 +40288,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6824; + this.state = 6838; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 578 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -40283,7 +40317,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new DescribeObjectClauseContext(this.context, this.state); this.enterRule(localContext, 634, MySqlParser.RULE_describeObjectClause); try { - this.state = 6836; + this.state = 6850; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DELETE: @@ -40295,37 +40329,37 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeStatementsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6831; + this.state = 6845; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: { - this.state = 6826; + this.state = 6840; this.selectStatement(); } break; case MySqlParser.KW_DELETE: { - this.state = 6827; + this.state = 6841; this.deleteStatement(); } break; case MySqlParser.KW_INSERT: { - this.state = 6828; + this.state = 6842; this.insertStatement(); } break; case MySqlParser.KW_REPLACE: { - this.state = 6829; + this.state = 6843; this.replaceStatement(); } break; case MySqlParser.KW_UPDATE: { - this.state = 6830; + this.state = 6844; this.updateStatement(); } break; @@ -40338,11 +40372,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeConnectionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6833; + this.state = 6847; this.match(MySqlParser.KW_FOR); - this.state = 6834; + this.state = 6848; this.match(MySqlParser.KW_CONNECTION); - this.state = 6835; + this.state = 6849; (localContext as DescribeConnectionContext)._connection_id = this.uid(); } break; @@ -40370,7 +40404,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6838; + this.state = 6852; this.fullId(); } } @@ -40394,7 +40428,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6840; + this.state = 6854; this.fullId(); } } @@ -40418,7 +40452,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6842; + this.state = 6856; this.fullId(); } } @@ -40442,7 +40476,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6844; + this.state = 6858; this.fullId(); } } @@ -40466,7 +40500,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6846; + this.state = 6860; this.fullId(); } } @@ -40490,7 +40524,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6848; + this.state = 6862; this.fullId(); } } @@ -40514,7 +40548,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6850; + this.state = 6864; this.uid(); } } @@ -40539,21 +40573,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6852; + this.state = 6866; this.indexName(); - this.state = 6857; + this.state = 6871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6853; + this.state = 6867; this.match(MySqlParser.COMMA); - this.state = 6854; + this.state = 6868; this.indexName(); } } - this.state = 6859; + this.state = 6873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40579,7 +40613,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6860; + this.state = 6874; this.uid(); } } @@ -40603,7 +40637,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6862; + this.state = 6876; this.uid(); } } @@ -40627,7 +40661,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6864; + this.state = 6878; this.uid(); } } @@ -40651,7 +40685,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6866; + this.state = 6880; this.fullId(); } } @@ -40676,25 +40710,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6868; + this.state = 6882; this.tableName(); - this.state = 6873; + this.state = 6887; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 986, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 988, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6869; + this.state = 6883; this.match(MySqlParser.COMMA); - this.state = 6870; + this.state = 6884; this.tableName(); } } } - this.state = 6875; + this.state = 6889; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 986, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 988, this.context); } } } @@ -40718,7 +40752,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6876; + this.state = 6890; this.fullId(); } } @@ -40743,21 +40777,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6878; + this.state = 6892; this.userOrRoleName(); - this.state = 6883; + this.state = 6897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6879; + this.state = 6893; this.match(MySqlParser.COMMA); - this.state = 6880; + this.state = 6894; this.userOrRoleName(); } } - this.state = 6885; + this.state = 6899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40781,20 +40815,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserOrRoleNameContext(this.context, this.state); this.enterRule(localContext, 666, MySqlParser.RULE_userOrRoleName); try { - this.state = 6888; + this.state = 6902; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 988, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 990, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6886; + this.state = 6900; this.userName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6887; + this.state = 6901; this.uid(); } break; @@ -40819,27 +40853,27 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 668, MySqlParser.RULE_columnNameCreate); let _la: number; try { - this.state = 6904; + this.state = 6918; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6890; + this.state = 6904; this.uid(); - this.state = 6895; + this.state = 6909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6891; + this.state = 6905; this.dottedId(); - this.state = 6893; + this.state = 6907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6892; + this.state = 6906; this.dottedId(); } } @@ -40852,24 +40886,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6898; + this.state = 6912; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { case 1: { - this.state = 6897; + this.state = 6911; this.matchWildcard(); } break; } - this.state = 6900; + this.state = 6914; this.dottedId(); - this.state = 6902; + this.state = 6916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6901; + this.state = 6915; this.dottedId(); } } @@ -40899,25 +40933,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6906; + this.state = 6920; this.columnName(); - this.state = 6911; + this.state = 6925; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 994, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 996, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6907; + this.state = 6921; this.match(MySqlParser.COMMA); - this.state = 6908; + this.state = 6922; this.columnName(); } } } - this.state = 6913; + this.state = 6927; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 994, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 996, this.context); } } } @@ -40935,32 +40969,55 @@ export class MySqlParser extends SQLParserBase { } return localContext; } + public emptyColumn(): EmptyColumnContext { + let localContext = new EmptyColumnContext(this.context, this.state); + this.enterRule(localContext, 672, MySqlParser.RULE_emptyColumn); + try { + this.enterOuterAlt(localContext, 1); + // tslint:disable-next-line:no-empty + { + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 672, MySqlParser.RULE_columnName); + this.enterRule(localContext, 674, MySqlParser.RULE_columnName); try { - this.state = 6929; + this.state = 6946; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6914; + this.state = 6930; this.uid(); - this.state = 6919; + this.state = 6935; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 6915; - this.dottedId(); - this.state = 6917; + this.state = 6931; + this.dottedIdAllowEmpty(); + this.state = 6933; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { case 1: { - this.state = 6916; - this.dottedId(); + this.state = 6932; + this.dottedIdAllowEmpty(); } break; } @@ -40972,24 +41029,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6922; + this.state = 6938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { case 1: { - this.state = 6921; + this.state = 6937; this.matchWildcard(); } break; } - this.state = 6924; + this.state = 6940; this.dottedId(); - this.state = 6926; + this.state = 6942; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { case 1: { - this.state = 6925; + this.state = 6941; this.dottedId(); } break; @@ -40999,10 +41056,150 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6928; + this.state = 6944; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } + this.state = 6945; + this.emptyColumn(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnNamePath(): ColumnNamePathContext { + let localContext = new ColumnNamePathContext(this.context, this.state); + this.enterRule(localContext, 676, MySqlParser.RULE_columnNamePath); + try { + this.state = 6962; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 6948; + this.uid(); + this.state = 6953; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { + case 1: + { + this.state = 6949; + this.dottedId(); + this.state = 6951; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { + case 1: + { + this.state = 6950; + this.dottedId(); + } + break; + } + } + break; + } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 6956; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { + case 1: + { + this.state = 6955; + this.matchWildcard(); + } + break; + } + this.state = 6958; + this.dottedId(); + this.state = 6960; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { + case 1: + { + this.state = 6959; + this.dottedId(); + } + break; + } + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext { + let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 678, MySqlParser.RULE_columnNamePathAllowEmpty); + try { + this.state = 6973; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 6964; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 6965; + this.emptyColumn(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 6966; + this.uid(); + this.state = 6971; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { + case 1: + { + this.state = 6967; + this.dottedIdAllowEmpty(); + this.state = 6969; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { + case 1: + { + this.state = 6968; + this.dottedIdAllowEmpty(); + } + break; + } + } + break; + } } break; } @@ -41023,11 +41220,11 @@ export class MySqlParser extends SQLParserBase { } public tableSpaceNameCreate(): TableSpaceNameCreateContext { let localContext = new TableSpaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 674, MySqlParser.RULE_tableSpaceNameCreate); + this.enterRule(localContext, 680, MySqlParser.RULE_tableSpaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6931; + this.state = 6975; this.uid(); } } @@ -41047,11 +41244,11 @@ export class MySqlParser extends SQLParserBase { } public tableSpaceName(): TableSpaceNameContext { let localContext = new TableSpaceNameContext(this.context, this.state); - this.enterRule(localContext, 676, MySqlParser.RULE_tableSpaceName); + this.enterRule(localContext, 682, MySqlParser.RULE_tableSpaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6933; + this.state = 6977; this.uid(); } } @@ -41071,11 +41268,11 @@ export class MySqlParser extends SQLParserBase { } public partitionNameCreate(): PartitionNameCreateContext { let localContext = new PartitionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 678, MySqlParser.RULE_partitionNameCreate); + this.enterRule(localContext, 684, MySqlParser.RULE_partitionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6935; + this.state = 6979; this.uid(); } } @@ -41095,30 +41292,30 @@ export class MySqlParser extends SQLParserBase { } public partitionNames(): PartitionNamesContext { let localContext = new PartitionNamesContext(this.context, this.state); - this.enterRule(localContext, 680, MySqlParser.RULE_partitionNames); + this.enterRule(localContext, 686, MySqlParser.RULE_partitionNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6937; + this.state = 6981; this.partitionName(); - this.state = 6942; + this.state = 6986; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6938; + this.state = 6982; this.match(MySqlParser.COMMA); - this.state = 6939; + this.state = 6983; this.partitionName(); } } } - this.state = 6944; + this.state = 6988; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context); } } } @@ -41138,11 +41335,11 @@ export class MySqlParser extends SQLParserBase { } public partitionName(): PartitionNameContext { let localContext = new PartitionNameContext(this.context, this.state); - this.enterRule(localContext, 682, MySqlParser.RULE_partitionName); + this.enterRule(localContext, 688, MySqlParser.RULE_partitionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6945; + this.state = 6989; this.uid(); } } @@ -41162,28 +41359,28 @@ export class MySqlParser extends SQLParserBase { } public indexColumnName(): IndexColumnNameContext { let localContext = new IndexColumnNameContext(this.context, this.state); - this.enterRule(localContext, 684, MySqlParser.RULE_indexColumnName); + this.enterRule(localContext, 690, MySqlParser.RULE_indexColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6955; + this.state = 6999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { case 1: { - this.state = 6947; + this.state = 6991; this.uid(); - this.state = 6952; + this.state = 6996; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1011, this.context) ) { case 1: { - this.state = 6948; + this.state = 6992; this.match(MySqlParser.LR_BRACKET); - this.state = 6949; + this.state = 6993; this.decimalLiteral(); - this.state = 6950; + this.state = 6994; this.match(MySqlParser.RR_BRACKET); } break; @@ -41192,17 +41389,17 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6954; + this.state = 6998; this.expression(0); } break; } - this.state = 6958; + this.state = 7002; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context) ) { case 1: { - this.state = 6957; + this.state = 7001; localContext._sortType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -41233,15 +41430,15 @@ export class MySqlParser extends SQLParserBase { } public userHostPort(): UserHostPortContext { let localContext = new UserHostPortContext(this.context, this.state); - this.enterRule(localContext, 686, MySqlParser.RULE_userHostPort); + this.enterRule(localContext, 692, MySqlParser.RULE_userHostPort); try { this.enterOuterAlt(localContext, 1); { - this.state = 6960; + this.state = 7004; this.userAtHost(); - this.state = 6961; + this.state = 7005; this.match(MySqlParser.COLON_SYMB); - this.state = 6962; + this.state = 7006; this.decimalLiteral(); } } @@ -41261,13 +41458,13 @@ export class MySqlParser extends SQLParserBase { } public userAtHost(): UserAtHostContext { let localContext = new UserAtHostContext(this.context, this.state); - this.enterRule(localContext, 688, MySqlParser.RULE_userAtHost); + this.enterRule(localContext, 694, MySqlParser.RULE_userAtHost); try { this.enterOuterAlt(localContext, 1); { - this.state = 6964; + this.state = 7008; this.simpleUserName(); - this.state = 6965; + this.state = 7009; this.match(MySqlParser.HOST_IP_ADDRESS); } } @@ -41287,36 +41484,36 @@ export class MySqlParser extends SQLParserBase { } public simpleUserName(): SimpleUserNameContext { let localContext = new SimpleUserNameContext(this.context, this.state); - this.enterRule(localContext, 690, MySqlParser.RULE_simpleUserName); + this.enterRule(localContext, 696, MySqlParser.RULE_simpleUserName); try { - this.state = 6971; + this.state = 7015; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6967; + this.state = 7011; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6968; + this.state = 7012; this.match(MySqlParser.ID); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6969; + this.state = 7013; this.match(MySqlParser.KW_ADMIN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6970; + this.state = 7014; this.keywordsCanBeId(); } break; @@ -41338,12 +41535,12 @@ export class MySqlParser extends SQLParserBase { } public hostName(): HostNameContext { let localContext = new HostNameContext(this.context, this.state); - this.enterRule(localContext, 692, MySqlParser.RULE_hostName); + this.enterRule(localContext, 698, MySqlParser.RULE_hostName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6973; + this.state = 7017; _la = this.tokenStream.LA(1); if(!(((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0))) { this.errorHandler.recoverInline(this); @@ -41370,23 +41567,23 @@ export class MySqlParser extends SQLParserBase { } public userName(): UserNameContext { let localContext = new UserNameContext(this.context, this.state); - this.enterRule(localContext, 694, MySqlParser.RULE_userName); + this.enterRule(localContext, 700, MySqlParser.RULE_userName); let _la: number; try { - this.state = 6980; + this.state = 7024; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6975; + this.state = 7019; this.simpleUserName(); - this.state = 6977; + this.state = 7021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0)) { { - this.state = 6976; + this.state = 7020; this.hostName(); } } @@ -41396,7 +41593,7 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6979; + this.state = 7023; this.currentUserExpression(); } break; @@ -41418,12 +41615,12 @@ export class MySqlParser extends SQLParserBase { } public mysqlVariable(): MysqlVariableContext { let localContext = new MysqlVariableContext(this.context, this.state); - this.enterRule(localContext, 696, MySqlParser.RULE_mysqlVariable); + this.enterRule(localContext, 702, MySqlParser.RULE_mysqlVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6982; + this.state = 7026; _la = this.tokenStream.LA(1); if(!(_la === 892 || _la === 893)) { this.errorHandler.recoverInline(this); @@ -41450,36 +41647,36 @@ export class MySqlParser extends SQLParserBase { } public charsetName(): CharsetNameContext { let localContext = new CharsetNameContext(this.context, this.state); - this.enterRule(localContext, 698, MySqlParser.RULE_charsetName); + this.enterRule(localContext, 704, MySqlParser.RULE_charsetName); try { - this.state = 6988; + this.state = 7032; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6984; + this.state = 7028; this.match(MySqlParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6985; + this.state = 7029; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6986; + this.state = 7030; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6987; + this.state = 7031; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; @@ -41501,11 +41698,11 @@ export class MySqlParser extends SQLParserBase { } public collationName(): CollationNameContext { let localContext = new CollationNameContext(this.context, this.state); - this.enterRule(localContext, 700, MySqlParser.RULE_collationName); + this.enterRule(localContext, 706, MySqlParser.RULE_collationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6990; + this.state = 7034; this.uid(); } } @@ -41525,9 +41722,9 @@ export class MySqlParser extends SQLParserBase { } public engineName(): EngineNameContext { let localContext = new EngineNameContext(this.context, this.state); - this.enterRule(localContext, 702, MySqlParser.RULE_engineName); + this.enterRule(localContext, 708, MySqlParser.RULE_engineName); try { - this.state = 6995; + this.state = 7039; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONNECT: @@ -41545,21 +41742,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TOKUDB: this.enterOuterAlt(localContext, 1); { - this.state = 6992; + this.state = 7036; this.engineNameBase(); } break; case MySqlParser.ID: this.enterOuterAlt(localContext, 2); { - this.state = 6993; + this.state = 7037; this.match(MySqlParser.ID); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6994; + this.state = 7038; this.match(MySqlParser.STRING_LITERAL); } break; @@ -41583,12 +41780,12 @@ export class MySqlParser extends SQLParserBase { } public engineNameBase(): EngineNameBaseContext { let localContext = new EngineNameBaseContext(this.context, this.state); - this.enterRule(localContext, 704, MySqlParser.RULE_engineNameBase); + this.enterRule(localContext, 710, MySqlParser.RULE_engineNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6997; + this.state = 7041; _la = this.tokenStream.LA(1); if(!(_la === 348 || ((((_la - 797)) & ~0x1F) === 0 && ((1 << (_la - 797)) & 4095) !== 0))) { this.errorHandler.recoverInline(this); @@ -41615,46 +41812,46 @@ export class MySqlParser extends SQLParserBase { } public uuidSet(): UuidSetContext { let localContext = new UuidSetContext(this.context, this.state); - this.enterRule(localContext, 706, MySqlParser.RULE_uuidSet); + this.enterRule(localContext, 712, MySqlParser.RULE_uuidSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6999; + this.state = 7043; this.decimalLiteral(); - this.state = 7000; + this.state = 7044; this.match(MySqlParser.MINUS); - this.state = 7001; + this.state = 7045; this.decimalLiteral(); - this.state = 7002; + this.state = 7046; this.match(MySqlParser.MINUS); - this.state = 7003; + this.state = 7047; this.decimalLiteral(); - this.state = 7004; + this.state = 7048; this.match(MySqlParser.MINUS); - this.state = 7005; + this.state = 7049; this.decimalLiteral(); - this.state = 7006; + this.state = 7050; this.match(MySqlParser.MINUS); - this.state = 7007; + this.state = 7051; this.decimalLiteral(); - this.state = 7013; + this.state = 7057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7008; + this.state = 7052; this.match(MySqlParser.COLON_SYMB); - this.state = 7009; + this.state = 7053; this.decimalLiteral(); - this.state = 7010; + this.state = 7054; this.match(MySqlParser.MINUS); - this.state = 7011; + this.state = 7055; this.decimalLiteral(); } } - this.state = 7015; + this.state = 7059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 878); @@ -41676,30 +41873,30 @@ export class MySqlParser extends SQLParserBase { } public xid(): XidContext { let localContext = new XidContext(this.context, this.state); - this.enterRule(localContext, 708, MySqlParser.RULE_xid); + this.enterRule(localContext, 714, MySqlParser.RULE_xid); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7017; + this.state = 7061; localContext._globalTableUid = this.xuidStringId(); - this.state = 7024; + this.state = 7068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7018; + this.state = 7062; this.match(MySqlParser.COMMA); - this.state = 7019; + this.state = 7063; localContext._qualifier = this.xuidStringId(); - this.state = 7022; + this.state = 7066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7020; + this.state = 7064; this.match(MySqlParser.COMMA); - this.state = 7021; + this.state = 7065; localContext._idFormat = this.decimalLiteral(); } } @@ -41725,40 +41922,40 @@ export class MySqlParser extends SQLParserBase { } public xuidStringId(): XuidStringIdContext { let localContext = new XuidStringIdContext(this.context, this.state); - this.enterRule(localContext, 710, MySqlParser.RULE_xuidStringId); + this.enterRule(localContext, 716, MySqlParser.RULE_xuidStringId); let _la: number; try { - this.state = 7033; + this.state = 7077; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7026; + this.state = 7070; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BIT_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7027; + this.state = 7071; this.match(MySqlParser.BIT_STRING); } break; case MySqlParser.HEXADECIMAL_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7029; + this.state = 7073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7028; + this.state = 7072; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } - this.state = 7031; + this.state = 7075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 884); @@ -41784,18 +41981,18 @@ export class MySqlParser extends SQLParserBase { } public fullId(): FullIdContext { let localContext = new FullIdContext(this.context, this.state); - this.enterRule(localContext, 712, MySqlParser.RULE_fullId); + this.enterRule(localContext, 718, MySqlParser.RULE_fullId); try { this.enterOuterAlt(localContext, 1); { - this.state = 7035; + this.state = 7079; this.uid(); - this.state = 7037; + this.state = 7081; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { case 1: { - this.state = 7036; + this.state = 7080; this.dottedId(); } break; @@ -41818,26 +42015,26 @@ export class MySqlParser extends SQLParserBase { } public uidList(): UidListContext { let localContext = new UidListContext(this.context, this.state); - this.enterRule(localContext, 714, MySqlParser.RULE_uidList); + this.enterRule(localContext, 720, MySqlParser.RULE_uidList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7039; + this.state = 7083; this.uid(); - this.state = 7044; + this.state = 7088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7040; + this.state = 7084; this.match(MySqlParser.COMMA); - this.state = 7041; + this.state = 7085; this.uid(); } } - this.state = 7046; + this.state = 7090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41859,9 +42056,9 @@ export class MySqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 716, MySqlParser.RULE_uid); + this.enterRule(localContext, 722, MySqlParser.RULE_uid); try { - this.state = 7050; + this.state = 7094; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -42413,21 +42610,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 7047; + this.state = 7091; this.simpleId(); } break; case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7048; + this.state = 7092; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7049; + this.state = 7093; this.match(MySqlParser.STRING_LITERAL); } break; @@ -42451,71 +42648,71 @@ export class MySqlParser extends SQLParserBase { } public simpleId(): SimpleIdContext { let localContext = new SimpleIdContext(this.context, this.state); - this.enterRule(localContext, 718, MySqlParser.RULE_simpleId); + this.enterRule(localContext, 724, MySqlParser.RULE_simpleId); try { - this.state = 7061; + this.state = 7105; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7052; + this.state = 7096; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7053; + this.state = 7097; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7054; + this.state = 7098; this.transactionLevelBase(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7055; + this.state = 7099; this.engineNameBase(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7056; + this.state = 7100; this.privilegesBase(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7057; + this.state = 7101; this.intervalTypeBase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7058; + this.state = 7102; this.dataTypeBase(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7059; + this.state = 7103; this.keywordsCanBeId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7060; + this.state = 7104; this.scalarFunctionName(); } break; @@ -42537,26 +42734,26 @@ export class MySqlParser extends SQLParserBase { } public dottedId(): DottedIdContext { let localContext = new DottedIdContext(this.context, this.state); - this.enterRule(localContext, 720, MySqlParser.RULE_dottedId); + this.enterRule(localContext, 726, MySqlParser.RULE_dottedId); try { - this.state = 7067; + this.state = 7111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1028, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7063; + this.state = 7107; this.match(MySqlParser.DOT); - this.state = 7064; + this.state = 7108; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7065; + this.state = 7109; this.match(MySqlParser.DOT); - this.state = 7066; + this.state = 7110; this.uid(); } break; @@ -42576,14 +42773,68 @@ export class MySqlParser extends SQLParserBase { } return localContext; } + public dottedIdAllowEmpty(): DottedIdAllowEmptyContext { + let localContext = new DottedIdAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 728, MySqlParser.RULE_dottedIdAllowEmpty); + try { + this.state = 7120; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7113; + this.match(MySqlParser.DOT); + this.state = 7114; + this.match(MySqlParser.ID); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7115; + this.match(MySqlParser.DOT); + this.state = 7116; + this.uid(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7117; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 7118; + this.match(MySqlParser.DOT); + this.state = 7119; + this.emptyColumn(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 722, MySqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 730, MySqlParser.RULE_decimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7069; + this.state = 7122; _la = this.tokenStream.LA(1); if(!(((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0))) { this.errorHandler.recoverInline(this); @@ -42610,15 +42861,15 @@ export class MySqlParser extends SQLParserBase { } public fileSizeLiteral(): FileSizeLiteralContext { let localContext = new FileSizeLiteralContext(this.context, this.state); - this.enterRule(localContext, 724, MySqlParser.RULE_fileSizeLiteral); + this.enterRule(localContext, 732, MySqlParser.RULE_fileSizeLiteral); try { - this.state = 7073; + this.state = 7126; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FILESIZE_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7071; + this.state = 7124; this.match(MySqlParser.FILESIZE_LITERAL); } break; @@ -42630,7 +42881,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 7072; + this.state = 7125; this.decimalLiteral(); } break; @@ -42654,46 +42905,46 @@ export class MySqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 726, MySqlParser.RULE_stringLiteral); + this.enterRule(localContext, 734, MySqlParser.RULE_stringLiteral); let _la: number; try { let alternative: number; - this.state = 7098; + this.state = 7151; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7080; + this.state = 7133; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7076; + this.state = 7129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7075; + this.state = 7128; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7078; + this.state = 7131; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7079; + this.state = 7132; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7083; + this.state = 7136; this.errorHandler.sync(this); alternative = 1; do { @@ -42701,7 +42952,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 7082; + this.state = 7135; this.match(MySqlParser.STRING_LITERAL); } } @@ -42709,52 +42960,52 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7085; + this.state = 7138; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7092; + this.state = 7145; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7088; + this.state = 7141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7087; + this.state = 7140; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7090; + this.state = 7143; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7091; + this.state = 7144; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7096; + this.state = 7149; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { case 1: { - this.state = 7094; + this.state = 7147; this.match(MySqlParser.KW_COLLATE); - this.state = 7095; + this.state = 7148; this.collationName(); } break; @@ -42779,12 +43030,12 @@ export class MySqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 728, MySqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 736, MySqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7100; + this.state = 7153; _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179)) { this.errorHandler.recoverInline(this); @@ -42811,22 +43062,22 @@ export class MySqlParser extends SQLParserBase { } public hexadecimalLiteral(): HexadecimalLiteralContext { let localContext = new HexadecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 730, MySqlParser.RULE_hexadecimalLiteral); + this.enterRule(localContext, 738, MySqlParser.RULE_hexadecimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7103; + this.state = 7156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7102; + this.state = 7155; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7105; + this.state = 7158; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } @@ -42846,22 +43097,22 @@ export class MySqlParser extends SQLParserBase { } public nullNotNull(): NullNotNullContext { let localContext = new NullNotNullContext(this.context, this.state); - this.enterRule(localContext, 732, MySqlParser.RULE_nullNotNull); + this.enterRule(localContext, 740, MySqlParser.RULE_nullNotNull); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7108; + this.state = 7161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7107; + this.state = 7160; this.match(MySqlParser.KW_NOT); } } - this.state = 7110; + this.state = 7163; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { this.errorHandler.recoverInline(this); @@ -42888,77 +43139,77 @@ export class MySqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 734, MySqlParser.RULE_constant); + this.enterRule(localContext, 742, MySqlParser.RULE_constant); let _la: number; try { - this.state = 7124; + this.state = 7177; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1030, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7112; + this.state = 7165; this.stringLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7113; + this.state = 7166; this.decimalLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7114; + this.state = 7167; this.match(MySqlParser.MINUS); - this.state = 7115; + this.state = 7168; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7116; + this.state = 7169; this.hexadecimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7117; + this.state = 7170; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7118; + this.state = 7171; this.match(MySqlParser.REAL_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7119; + this.state = 7172; this.match(MySqlParser.BIT_STRING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7121; + this.state = 7174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7120; + this.state = 7173; this.match(MySqlParser.KW_NOT); } } - this.state = 7123; + this.state = 7176; localContext._nullLiteral = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { @@ -42988,18 +43239,18 @@ export class MySqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 736, MySqlParser.RULE_dataType); + this.enterRule(localContext, 744, MySqlParser.RULE_dataType); let _la: number; try { let alternative: number; - this.state = 7252; + this.state = 7305; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { case 1: localContext = new StringDataTypeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7126; + this.state = 7179; (localContext as StringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 31239) !== 0) || _la === 498)) { @@ -43009,62 +43260,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7128; + this.state = 7181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 7127; + this.state = 7180; this.match(MySqlParser.KW_VARYING); } } - this.state = 7131; + this.state = 7184; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { case 1: { - this.state = 7130; + this.state = 7183; this.lengthOneDimension(); } break; } - this.state = 7134; + this.state = 7187; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7133; + this.state = 7186; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7139; + this.state = 7192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { case 1: { - this.state = 7136; + this.state = 7189; this.charSet(); - this.state = 7137; + this.state = 7190; this.charsetName(); } break; } - this.state = 7144; + this.state = 7197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { case 1: { - this.state = 7141; + this.state = 7194; this.match(MySqlParser.KW_COLLATE); - this.state = 7142; + this.state = 7195; this.collationName(); } break; case 2: { - this.state = 7143; + this.state = 7196; this.match(MySqlParser.KW_BINARY); } break; @@ -43075,9 +43326,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalVaryingStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7146; + this.state = 7199; this.match(MySqlParser.KW_NATIONAL); - this.state = 7147; + this.state = 7200; (localContext as NationalVaryingStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224)) { @@ -43087,24 +43338,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7148; + this.state = 7201; this.match(MySqlParser.KW_VARYING); - this.state = 7150; + this.state = 7203; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 7149; + this.state = 7202; this.lengthOneDimension(); } break; } - this.state = 7153; + this.state = 7206; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: { - this.state = 7152; + this.state = 7205; this.match(MySqlParser.KW_BINARY); } break; @@ -43115,9 +43366,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7155; + this.state = 7208; this.match(MySqlParser.KW_NATIONAL); - this.state = 7156; + this.state = 7209; (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224 || _la === 225)) { @@ -43127,22 +43378,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7158; + this.state = 7211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 7157; + this.state = 7210; this.lengthOneDimension(); } break; } - this.state = 7161; + this.state = 7214; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: { - this.state = 7160; + this.state = 7213; this.match(MySqlParser.KW_BINARY); } break; @@ -43153,26 +43404,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7163; + this.state = 7216; this.match(MySqlParser.KW_NCHAR); - this.state = 7164; + this.state = 7217; (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.KW_VARCHAR); - this.state = 7166; + this.state = 7219; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: { - this.state = 7165; + this.state = 7218; this.lengthOneDimension(); } break; } - this.state = 7169; + this.state = 7222; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7168; + this.state = 7221; this.match(MySqlParser.KW_BINARY); } break; @@ -43183,7 +43434,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7171; + this.state = 7224; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4095) !== 0))) { @@ -43193,24 +43444,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7173; + this.state = 7226; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: { - this.state = 7172; + this.state = 7225; this.lengthOneDimension(); } break; } - this.state = 7178; + this.state = 7231; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7175; + this.state = 7228; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43222,9 +43473,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7180; + this.state = 7233; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context); } } break; @@ -43232,26 +43483,26 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7181; + this.state = 7234; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_REAL); - this.state = 7183; + this.state = 7236; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { case 1: { - this.state = 7182; + this.state = 7235; this.lengthTwoDimension(); } break; } - this.state = 7188; + this.state = 7241; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7185; + this.state = 7238; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43263,9 +43514,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7190; + this.state = 7243; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context); } } break; @@ -43273,36 +43524,36 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7191; + this.state = 7244; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_DOUBLE); - this.state = 7193; + this.state = 7246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 212) { { - this.state = 7192; + this.state = 7245; this.match(MySqlParser.KW_PRECISION); } } - this.state = 7196; + this.state = 7249; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: { - this.state = 7195; + this.state = 7248; this.lengthTwoDimension(); } break; } - this.state = 7201; + this.state = 7254; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7198; + this.state = 7251; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43314,9 +43565,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7203; + this.state = 7256; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context); } } break; @@ -43324,7 +43575,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7204; + this.state = 7257; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 213)) & ~0x1F) === 0 && ((1 << (_la - 213)) & 63) !== 0) || _la === 403)) { @@ -43334,24 +43585,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7206; + this.state = 7259; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { case 1: { - this.state = 7205; + this.state = 7258; this.lengthTwoOptionalDimension(); } break; } - this.state = 7211; + this.state = 7264; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7208; + this.state = 7261; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43363,9 +43614,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7213; + this.state = 7266; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context); } } break; @@ -43373,7 +43624,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleDataTypeContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7214; + this.state = 7267; (localContext as SimpleDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 4237313) !== 0) || _la === 321 || _la === 322)) { @@ -43389,7 +43640,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7215; + this.state = 7268; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 2831) !== 0) || _la === 319)) { @@ -43399,12 +43650,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7217; + this.state = 7270; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: { - this.state = 7216; + this.state = 7269; this.lengthOneDimension(); } break; @@ -43415,7 +43666,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CollectionDataTypeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7219; + this.state = 7272; (localContext as CollectionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 239)) { @@ -43425,26 +43676,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7220; + this.state = 7273; this.collectionOptions(); - this.state = 7222; + this.state = 7275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { case 1: { - this.state = 7221; + this.state = 7274; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7227; + this.state = 7280; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: { - this.state = 7224; + this.state = 7277; this.charSet(); - this.state = 7225; + this.state = 7278; this.charsetName(); } break; @@ -43455,7 +43706,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SpatialDataTypeContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7229; + this.state = 7282; (localContext as SpatialDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 442 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 511) !== 0))) { @@ -43465,14 +43716,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7232; + this.state = 7285; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { case 1: { - this.state = 7230; + this.state = 7283; this.match(MySqlParser.KW_SRID); - this.state = 7231; + this.state = 7284; this.decimalLiteral(); } break; @@ -43483,48 +43734,48 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarcharDataTypeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7234; + this.state = 7287; (localContext as LongVarcharDataTypeContext)._typeName = this.match(MySqlParser.KW_LONG); - this.state = 7236; + this.state = 7289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 7235; + this.state = 7288; this.match(MySqlParser.KW_VARCHAR); } } - this.state = 7239; + this.state = 7292; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { case 1: { - this.state = 7238; + this.state = 7291; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7244; + this.state = 7297; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7241; + this.state = 7294; this.charSet(); - this.state = 7242; + this.state = 7295; this.charsetName(); } break; } - this.state = 7248; + this.state = 7301; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { case 1: { - this.state = 7246; + this.state = 7299; this.match(MySqlParser.KW_COLLATE); - this.state = 7247; + this.state = 7300; this.collationName(); } break; @@ -43535,9 +43786,9 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarbinaryDataTypeContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7250; + this.state = 7303; this.match(MySqlParser.KW_LONG); - this.state = 7251; + this.state = 7304; this.match(MySqlParser.KW_VARBINARY); } break; @@ -43559,32 +43810,32 @@ export class MySqlParser extends SQLParserBase { } public collectionOptions(): CollectionOptionsContext { let localContext = new CollectionOptionsContext(this.context, this.state); - this.enterRule(localContext, 738, MySqlParser.RULE_collectionOptions); + this.enterRule(localContext, 746, MySqlParser.RULE_collectionOptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7254; + this.state = 7307; this.match(MySqlParser.LR_BRACKET); - this.state = 7255; + this.state = 7308; this.match(MySqlParser.STRING_LITERAL); - this.state = 7260; + this.state = 7313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7256; + this.state = 7309; this.match(MySqlParser.COMMA); - this.state = 7257; + this.state = 7310; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7262; + this.state = 7315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7263; + this.state = 7316; this.match(MySqlParser.RR_BRACKET); } } @@ -43604,18 +43855,18 @@ export class MySqlParser extends SQLParserBase { } public convertedDataType(): ConvertedDataTypeContext { let localContext = new ConvertedDataTypeContext(this.context, this.state); - this.enterRule(localContext, 740, MySqlParser.RULE_convertedDataType); + this.enterRule(localContext, 748, MySqlParser.RULE_convertedDataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7287; + this.state = 7340; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: case MySqlParser.KW_NCHAR: { - this.state = 7265; + this.state = 7318; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 498)) { @@ -43625,12 +43876,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7267; + this.state = 7320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7266; + this.state = 7319; this.lengthOneDimension(); } } @@ -43639,26 +43890,26 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_CHAR: { - this.state = 7269; + this.state = 7322; localContext._typeName = this.match(MySqlParser.KW_CHAR); - this.state = 7271; + this.state = 7324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7270; + this.state = 7323; this.lengthOneDimension(); } } - this.state = 7276; + this.state = 7329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7273; + this.state = 7326; this.charSet(); - this.state = 7274; + this.state = 7327; this.charsetName(); } } @@ -43672,7 +43923,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DATETIME: case MySqlParser.KW_JSON: { - this.state = 7278; + this.state = 7331; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 1441857) !== 0) || _la === 442)) { @@ -43687,7 +43938,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DECIMAL: case MySqlParser.KW_DEC: { - this.state = 7279; + this.state = 7332; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 216 || _la === 217)) { @@ -43697,12 +43948,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7281; + this.state = 7334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7280; + this.state = 7333; this.lengthTwoOptionalDimension(); } } @@ -43712,7 +43963,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_UNSIGNED: case MySqlParser.KW_SIGNED: { - this.state = 7283; + this.state = 7336; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43721,12 +43972,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7285; + this.state = 7338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 208) { { - this.state = 7284; + this.state = 7337; _la = this.tokenStream.LA(1); if(!(_la === 202 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -43743,12 +43994,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7290; + this.state = 7343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 7289; + this.state = 7342; this.match(MySqlParser.KW_ARRAY); } } @@ -43771,15 +44022,15 @@ export class MySqlParser extends SQLParserBase { } public lengthOneDimension(): LengthOneDimensionContext { let localContext = new LengthOneDimensionContext(this.context, this.state); - this.enterRule(localContext, 742, MySqlParser.RULE_lengthOneDimension); + this.enterRule(localContext, 750, MySqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7292; + this.state = 7345; this.match(MySqlParser.LR_BRACKET); - this.state = 7293; + this.state = 7346; this.decimalLiteral(); - this.state = 7294; + this.state = 7347; this.match(MySqlParser.RR_BRACKET); } } @@ -43799,19 +44050,19 @@ export class MySqlParser extends SQLParserBase { } public lengthTwoDimension(): LengthTwoDimensionContext { let localContext = new LengthTwoDimensionContext(this.context, this.state); - this.enterRule(localContext, 744, MySqlParser.RULE_lengthTwoDimension); + this.enterRule(localContext, 752, MySqlParser.RULE_lengthTwoDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7296; + this.state = 7349; this.match(MySqlParser.LR_BRACKET); - this.state = 7297; + this.state = 7350; this.decimalLiteral(); - this.state = 7298; + this.state = 7351; this.match(MySqlParser.COMMA); - this.state = 7299; + this.state = 7352; this.decimalLiteral(); - this.state = 7300; + this.state = 7353; this.match(MySqlParser.RR_BRACKET); } } @@ -43831,28 +44082,28 @@ export class MySqlParser extends SQLParserBase { } public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localContext = new LengthTwoOptionalDimensionContext(this.context, this.state); - this.enterRule(localContext, 746, MySqlParser.RULE_lengthTwoOptionalDimension); + this.enterRule(localContext, 754, MySqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7302; + this.state = 7355; this.match(MySqlParser.LR_BRACKET); - this.state = 7303; + this.state = 7356; this.decimalLiteral(); - this.state = 7306; + this.state = 7359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7304; + this.state = 7357; this.match(MySqlParser.COMMA); - this.state = 7305; + this.state = 7358; this.decimalLiteral(); } } - this.state = 7308; + this.state = 7361; this.match(MySqlParser.RR_BRACKET); } } @@ -43872,32 +44123,32 @@ export class MySqlParser extends SQLParserBase { } public indexColumnNames(): IndexColumnNamesContext { let localContext = new IndexColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 748, MySqlParser.RULE_indexColumnNames); + this.enterRule(localContext, 756, MySqlParser.RULE_indexColumnNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7310; + this.state = 7363; this.match(MySqlParser.LR_BRACKET); - this.state = 7311; + this.state = 7364; this.indexColumnName(); - this.state = 7316; + this.state = 7369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7312; + this.state = 7365; this.match(MySqlParser.COMMA); - this.state = 7313; + this.state = 7366; this.indexColumnName(); } } - this.state = 7318; + this.state = 7371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7319; + this.state = 7372; this.match(MySqlParser.RR_BRACKET); } } @@ -43917,26 +44168,26 @@ export class MySqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 750, MySqlParser.RULE_expressions); + this.enterRule(localContext, 758, MySqlParser.RULE_expressions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7321; + this.state = 7374; this.expression(0); - this.state = 7326; + this.state = 7379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7322; + this.state = 7375; this.match(MySqlParser.COMMA); - this.state = 7323; + this.state = 7376; this.expression(0); } } - this.state = 7328; + this.state = 7381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43958,12 +44209,12 @@ export class MySqlParser extends SQLParserBase { } public valuesOrValueList(): ValuesOrValueListContext { let localContext = new ValuesOrValueListContext(this.context, this.state); - this.enterRule(localContext, 752, MySqlParser.RULE_valuesOrValueList); + this.enterRule(localContext, 760, MySqlParser.RULE_valuesOrValueList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7329; + this.state = 7382; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 682)) { this.errorHandler.recoverInline(this); @@ -43972,21 +44223,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7330; + this.state = 7383; this.expressionsWithDefaults(); - this.state = 7335; + this.state = 7388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7331; + this.state = 7384; this.match(MySqlParser.COMMA); - this.state = 7332; + this.state = 7385; this.expressionsWithDefaults(); } } - this.state = 7337; + this.state = 7390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44008,32 +44259,32 @@ export class MySqlParser extends SQLParserBase { } public expressionsWithDefaults(): ExpressionsWithDefaultsContext { let localContext = new ExpressionsWithDefaultsContext(this.context, this.state); - this.enterRule(localContext, 754, MySqlParser.RULE_expressionsWithDefaults); + this.enterRule(localContext, 762, MySqlParser.RULE_expressionsWithDefaults); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7338; + this.state = 7391; this.match(MySqlParser.LR_BRACKET); - this.state = 7339; + this.state = 7392; this.expressionOrDefault(); - this.state = 7344; + this.state = 7397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7340; + this.state = 7393; this.match(MySqlParser.COMMA); - this.state = 7341; + this.state = 7394; this.expressionOrDefault(); } } - this.state = 7346; + this.state = 7399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7347; + this.state = 7400; this.match(MySqlParser.RR_BRACKET); } } @@ -44053,22 +44304,22 @@ export class MySqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 756, MySqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 764, MySqlParser.RULE_expressionOrDefault); try { - this.state = 7351; + this.state = 7404; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7349; + this.state = 7402; this.expression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7350; + this.state = 7403; this.match(MySqlParser.KW_DEFAULT); } break; @@ -44090,26 +44341,26 @@ export class MySqlParser extends SQLParserBase { } public constants(): ConstantsContext { let localContext = new ConstantsContext(this.context, this.state); - this.enterRule(localContext, 758, MySqlParser.RULE_constants); + this.enterRule(localContext, 766, MySqlParser.RULE_constants); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7353; + this.state = 7406; this.constant(); - this.state = 7358; + this.state = 7411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7354; + this.state = 7407; this.match(MySqlParser.COMMA); - this.state = 7355; + this.state = 7408; this.constant(); } } - this.state = 7360; + this.state = 7413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44131,26 +44382,26 @@ export class MySqlParser extends SQLParserBase { } public simpleStrings(): SimpleStringsContext { let localContext = new SimpleStringsContext(this.context, this.state); - this.enterRule(localContext, 760, MySqlParser.RULE_simpleStrings); + this.enterRule(localContext, 768, MySqlParser.RULE_simpleStrings); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7361; + this.state = 7414; this.match(MySqlParser.STRING_LITERAL); - this.state = 7366; + this.state = 7419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7362; + this.state = 7415; this.match(MySqlParser.COMMA); - this.state = 7363; + this.state = 7416; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7368; + this.state = 7421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44172,26 +44423,26 @@ export class MySqlParser extends SQLParserBase { } public userVariables(): UserVariablesContext { let localContext = new UserVariablesContext(this.context, this.state); - this.enterRule(localContext, 762, MySqlParser.RULE_userVariables); + this.enterRule(localContext, 770, MySqlParser.RULE_userVariables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7369; + this.state = 7422; this.match(MySqlParser.LOCAL_ID); - this.state = 7374; + this.state = 7427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7370; + this.state = 7423; this.match(MySqlParser.COMMA); - this.state = 7371; + this.state = 7424; this.match(MySqlParser.LOCAL_ID); } } - this.state = 7376; + this.state = 7429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44213,67 +44464,67 @@ export class MySqlParser extends SQLParserBase { } public defaultValue(): DefaultValueContext { let localContext = new DefaultValueContext(this.context, this.state); - this.enterRule(localContext, 764, MySqlParser.RULE_defaultValue); + this.enterRule(localContext, 772, MySqlParser.RULE_defaultValue); try { - this.state = 7403; + this.state = 7456; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1079, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7377; + this.state = 7430; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7378; + this.state = 7431; this.match(MySqlParser.KW_CAST); - this.state = 7379; + this.state = 7432; this.match(MySqlParser.LR_BRACKET); - this.state = 7380; + this.state = 7433; this.expression(0); - this.state = 7381; + this.state = 7434; this.match(MySqlParser.KW_AS); - this.state = 7382; + this.state = 7435; this.convertedDataType(); - this.state = 7383; + this.state = 7436; this.match(MySqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7386; + this.state = 7439; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { case 1: { - this.state = 7385; + this.state = 7438; this.unaryOperator(); } break; } - this.state = 7388; + this.state = 7441; this.constant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7389; + this.state = 7442; this.currentTimestamp(); - this.state = 7393; + this.state = 7446; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { case 1: { - this.state = 7390; + this.state = 7443; this.match(MySqlParser.KW_ON); - this.state = 7391; + this.state = 7444; this.match(MySqlParser.KW_UPDATE); - this.state = 7392; + this.state = 7445; this.currentTimestamp(); } break; @@ -44283,22 +44534,22 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7395; + this.state = 7448; this.match(MySqlParser.LR_BRACKET); - this.state = 7396; + this.state = 7449; this.expression(0); - this.state = 7397; + this.state = 7450; this.match(MySqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7399; + this.state = 7452; this.match(MySqlParser.LR_BRACKET); - this.state = 7400; + this.state = 7453; this.fullId(); - this.state = 7401; + this.state = 7454; this.match(MySqlParser.RR_BRACKET); } break; @@ -44320,19 +44571,19 @@ export class MySqlParser extends SQLParserBase { } public currentTimestamp(): CurrentTimestampContext { let localContext = new CurrentTimestampContext(this.context, this.state); - this.enterRule(localContext, 766, MySqlParser.RULE_currentTimestamp); + this.enterRule(localContext, 774, MySqlParser.RULE_currentTimestamp); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7419; + this.state = 7472; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CURRENT_TIMESTAMP: case MySqlParser.KW_LOCALTIME: case MySqlParser.KW_LOCALTIMESTAMP: { - this.state = 7405; + this.state = 7458; _la = this.tokenStream.LA(1); if(!(((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131) !== 0))) { this.errorHandler.recoverInline(this); @@ -44341,24 +44592,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7411; + this.state = 7464; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1081, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context) ) { case 1: { - this.state = 7406; + this.state = 7459; this.match(MySqlParser.LR_BRACKET); - this.state = 7408; + this.state = 7461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7407; + this.state = 7460; this.decimalLiteral(); } } - this.state = 7410; + this.state = 7463; this.match(MySqlParser.RR_BRACKET); } break; @@ -44367,21 +44618,21 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_NOW: { - this.state = 7413; + this.state = 7466; this.match(MySqlParser.KW_NOW); - this.state = 7414; + this.state = 7467; this.match(MySqlParser.LR_BRACKET); - this.state = 7416; + this.state = 7469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7415; + this.state = 7468; this.decimalLiteral(); } } - this.state = 7418; + this.state = 7471; this.match(MySqlParser.RR_BRACKET); } break; @@ -44406,13 +44657,13 @@ export class MySqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 768, MySqlParser.RULE_ifExists); + this.enterRule(localContext, 776, MySqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7421; + this.state = 7474; this.match(MySqlParser.KW_IF); - this.state = 7422; + this.state = 7475; this.match(MySqlParser.KW_EXISTS); } } @@ -44432,15 +44683,15 @@ export class MySqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 770, MySqlParser.RULE_ifNotExists); + this.enterRule(localContext, 778, MySqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7424; + this.state = 7477; this.match(MySqlParser.KW_IF); - this.state = 7425; + this.state = 7478; this.match(MySqlParser.KW_NOT); - this.state = 7426; + this.state = 7479; this.match(MySqlParser.KW_EXISTS); } } @@ -44460,13 +44711,13 @@ export class MySqlParser extends SQLParserBase { } public orReplace(): OrReplaceContext { let localContext = new OrReplaceContext(this.context, this.state); - this.enterRule(localContext, 772, MySqlParser.RULE_orReplace); + this.enterRule(localContext, 780, MySqlParser.RULE_orReplace); try { this.enterOuterAlt(localContext, 1); { - this.state = 7428; + this.state = 7481; this.match(MySqlParser.KW_OR); - this.state = 7429; + this.state = 7482; this.match(MySqlParser.KW_REPLACE); } } @@ -44486,16 +44737,16 @@ export class MySqlParser extends SQLParserBase { } public functionCall(): FunctionCallContext { let localContext = new FunctionCallContext(this.context, this.state); - this.enterRule(localContext, 774, MySqlParser.RULE_functionCall); + this.enterRule(localContext, 782, MySqlParser.RULE_functionCall); try { - this.state = 7453; + this.state = 7506; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { case 1: localContext = new SpecificFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7431; + this.state = 7484; this.specificFunction(); } break; @@ -44503,7 +44754,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7432; + this.state = 7485; this.aggregateWindowedFunction(); } break; @@ -44511,7 +44762,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NonAggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7433; + this.state = 7486; this.nonAggregateWindowedFunction(); } break; @@ -44519,26 +44770,26 @@ export class MySqlParser extends SQLParserBase { localContext = new ScalarFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7434; + this.state = 7487; this.scalarFunctionName(); - this.state = 7441; + this.state = 7494; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { case 1: { - this.state = 7435; + this.state = 7488; this.match(MySqlParser.LR_BRACKET); - this.state = 7436; + this.state = 7489; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7437; + this.state = 7490; this.match(MySqlParser.LR_BRACKET); - this.state = 7438; + this.state = 7491; this.functionArgs(); - this.state = 7439; + this.state = 7492; this.match(MySqlParser.RR_BRACKET); } break; @@ -44549,26 +44800,26 @@ export class MySqlParser extends SQLParserBase { localContext = new UdfFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7443; + this.state = 7496; this.functionName(); - this.state = 7450; + this.state = 7503; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { case 1: { - this.state = 7444; + this.state = 7497; this.match(MySqlParser.LR_BRACKET); - this.state = 7445; + this.state = 7498; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7446; + this.state = 7499; this.match(MySqlParser.LR_BRACKET); - this.state = 7447; + this.state = 7500; this.functionArgs(); - this.state = 7448; + this.state = 7501; this.match(MySqlParser.RR_BRACKET); } break; @@ -44579,7 +44830,7 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7452; + this.state = 7505; this.passwordFunctionClause(); } break; @@ -44601,17 +44852,17 @@ export class MySqlParser extends SQLParserBase { } public specificFunction(): SpecificFunctionContext { let localContext = new SpecificFunctionContext(this.context, this.state); - this.enterRule(localContext, 776, MySqlParser.RULE_specificFunction); + this.enterRule(localContext, 784, MySqlParser.RULE_specificFunction); let _la: number; try { - this.state = 7634; + this.state = 7687; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { case 1: localContext = new SimpleFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7455; + this.state = 7508; _la = this.tokenStream.LA(1); if(!(_la === 152 || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 262159) !== 0))) { this.errorHandler.recoverInline(this); @@ -44620,14 +44871,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7458; + this.state = 7511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { case 1: { - this.state = 7456; + this.state = 7509; this.match(MySqlParser.LR_BRACKET); - this.state = 7457; + this.state = 7510; this.match(MySqlParser.RR_BRACKET); } break; @@ -44638,7 +44889,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7460; + this.state = 7513; this.currentUserExpression(); } break; @@ -44646,17 +44897,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7461; + this.state = 7514; this.match(MySqlParser.KW_CONVERT); - this.state = 7462; + this.state = 7515; this.match(MySqlParser.LR_BRACKET); - this.state = 7463; + this.state = 7516; this.expression(0); - this.state = 7464; + this.state = 7517; (localContext as DataTypeFunctionCallContext)._separator = this.match(MySqlParser.COMMA); - this.state = 7465; + this.state = 7518; this.convertedDataType(); - this.state = 7466; + this.state = 7519; this.match(MySqlParser.RR_BRACKET); } break; @@ -44664,17 +44915,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7468; + this.state = 7521; this.match(MySqlParser.KW_CONVERT); - this.state = 7469; + this.state = 7522; this.match(MySqlParser.LR_BRACKET); - this.state = 7470; + this.state = 7523; this.expression(0); - this.state = 7471; + this.state = 7524; this.match(MySqlParser.KW_USING); - this.state = 7472; + this.state = 7525; this.charsetName(); - this.state = 7473; + this.state = 7526; this.match(MySqlParser.RR_BRACKET); } break; @@ -44682,17 +44933,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7475; + this.state = 7528; this.match(MySqlParser.KW_CAST); - this.state = 7476; + this.state = 7529; this.match(MySqlParser.LR_BRACKET); - this.state = 7477; + this.state = 7530; this.expression(0); - this.state = 7478; + this.state = 7531; this.match(MySqlParser.KW_AS); - this.state = 7479; + this.state = 7532; this.convertedDataType(); - this.state = 7480; + this.state = 7533; this.match(MySqlParser.RR_BRACKET); } break; @@ -44700,13 +44951,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ValuesFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7482; + this.state = 7535; this.match(MySqlParser.KW_VALUES); - this.state = 7483; + this.state = 7536; this.match(MySqlParser.LR_BRACKET); - this.state = 7484; + this.state = 7537; this.columnName(); - this.state = 7485; + this.state = 7538; this.match(MySqlParser.RR_BRACKET); } break; @@ -44714,35 +44965,35 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseFunctionCallContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7487; + this.state = 7540; this.match(MySqlParser.KW_CASE); - this.state = 7489; + this.state = 7542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7488; + this.state = 7541; this.caseFuncAlternative(); } } - this.state = 7491; + this.state = 7544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7495; + this.state = 7548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7493; + this.state = 7546; this.match(MySqlParser.KW_ELSE); - this.state = 7494; + this.state = 7547; (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7497; + this.state = 7550; this.match(MySqlParser.KW_END); } break; @@ -44750,37 +45001,37 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseExpressionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7499; + this.state = 7552; this.match(MySqlParser.KW_CASE); - this.state = 7500; + this.state = 7553; this.expression(0); - this.state = 7502; + this.state = 7555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7501; + this.state = 7554; this.caseFuncAlternative(); } } - this.state = 7504; + this.state = 7557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7508; + this.state = 7561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7506; + this.state = 7559; this.match(MySqlParser.KW_ELSE); - this.state = 7507; + this.state = 7560; (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7510; + this.state = 7563; this.match(MySqlParser.KW_END); } break; @@ -44788,25 +45039,25 @@ export class MySqlParser extends SQLParserBase { localContext = new CharFunctionCallContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7512; + this.state = 7565; this.match(MySqlParser.KW_CHAR); - this.state = 7513; + this.state = 7566; this.match(MySqlParser.LR_BRACKET); - this.state = 7514; + this.state = 7567; this.functionArgs(); - this.state = 7517; + this.state = 7570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 7515; + this.state = 7568; this.match(MySqlParser.KW_USING); - this.state = 7516; + this.state = 7569; this.charsetName(); } } - this.state = 7519; + this.state = 7572; this.match(MySqlParser.RR_BRACKET); } break; @@ -44814,45 +45065,45 @@ export class MySqlParser extends SQLParserBase { localContext = new PositionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7521; + this.state = 7574; this.match(MySqlParser.KW_POSITION); - this.state = 7522; + this.state = 7575; this.match(MySqlParser.LR_BRACKET); - this.state = 7525; + this.state = 7578; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { case 1: { - this.state = 7523; + this.state = 7576; (localContext as PositionFunctionCallContext)._positionString = this.stringLiteral(); } break; case 2: { - this.state = 7524; + this.state = 7577; (localContext as PositionFunctionCallContext)._positionExpression = this.expression(0); } break; } - this.state = 7527; + this.state = 7580; this.match(MySqlParser.KW_IN); - this.state = 7530; + this.state = 7583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { case 1: { - this.state = 7528; + this.state = 7581; (localContext as PositionFunctionCallContext)._inString = this.stringLiteral(); } break; case 2: { - this.state = 7529; + this.state = 7582; (localContext as PositionFunctionCallContext)._inExpression = this.expression(0); } break; } - this.state = 7532; + this.state = 7585; this.match(MySqlParser.RR_BRACKET); } break; @@ -44860,7 +45111,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SubstrFunctionCallContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7534; + this.state = 7587; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -44869,61 +45120,61 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7535; + this.state = 7588; this.match(MySqlParser.LR_BRACKET); - this.state = 7538; + this.state = 7591; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 7536; + this.state = 7589; (localContext as SubstrFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7537; + this.state = 7590; (localContext as SubstrFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7540; + this.state = 7593; this.match(MySqlParser.KW_FROM); - this.state = 7543; + this.state = 7596; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { case 1: { - this.state = 7541; + this.state = 7594; (localContext as SubstrFunctionCallContext)._fromDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7542; + this.state = 7595; (localContext as SubstrFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7550; + this.state = 7603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 7545; + this.state = 7598; this.match(MySqlParser.KW_FOR); - this.state = 7548; + this.state = 7601; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 7546; + this.state = 7599; (localContext as SubstrFunctionCallContext)._forDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7547; + this.state = 7600; (localContext as SubstrFunctionCallContext)._forExpression = this.expression(0); } break; @@ -44931,7 +45182,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 7552; + this.state = 7605; this.match(MySqlParser.RR_BRACKET); } break; @@ -44939,11 +45190,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7554; + this.state = 7607; this.match(MySqlParser.KW_TRIM); - this.state = 7555; + this.state = 7608; this.match(MySqlParser.LR_BRACKET); - this.state = 7556; + this.state = 7609; (localContext as TrimFunctionCallContext)._positioinForm = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 96 || _la === 177)) { @@ -44953,41 +45204,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7559; + this.state = 7612; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: { - this.state = 7557; + this.state = 7610; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7558; + this.state = 7611; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7561; + this.state = 7614; this.match(MySqlParser.KW_FROM); - this.state = 7564; + this.state = 7617; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { case 1: { - this.state = 7562; + this.state = 7615; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7563; + this.state = 7616; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7566; + this.state = 7619; this.match(MySqlParser.RR_BRACKET); } break; @@ -44995,45 +45246,45 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7568; + this.state = 7621; this.match(MySqlParser.KW_TRIM); - this.state = 7569; + this.state = 7622; this.match(MySqlParser.LR_BRACKET); - this.state = 7572; + this.state = 7625; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { case 1: { - this.state = 7570; + this.state = 7623; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7571; + this.state = 7624; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7574; + this.state = 7627; this.match(MySqlParser.KW_FROM); - this.state = 7577; + this.state = 7630; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { case 1: { - this.state = 7575; + this.state = 7628; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7576; + this.state = 7629; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7579; + this.state = 7632; this.match(MySqlParser.RR_BRACKET); } break; @@ -45041,34 +45292,34 @@ export class MySqlParser extends SQLParserBase { localContext = new WeightFunctionCallContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7581; + this.state = 7634; this.match(MySqlParser.KW_WEIGHT_STRING); - this.state = 7582; + this.state = 7635; this.match(MySqlParser.LR_BRACKET); - this.state = 7585; + this.state = 7638; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 7583; + this.state = 7636; this.stringLiteral(); } break; case 2: { - this.state = 7584; + this.state = 7637; this.expression(0); } break; } - this.state = 7593; + this.state = 7646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 7587; + this.state = 7640; this.match(MySqlParser.KW_AS); - this.state = 7588; + this.state = 7641; (localContext as WeightFunctionCallContext)._stringFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 224 || _la === 228)) { @@ -45078,26 +45329,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7589; + this.state = 7642; this.match(MySqlParser.LR_BRACKET); - this.state = 7590; + this.state = 7643; this.decimalLiteral(); - this.state = 7591; + this.state = 7644; this.match(MySqlParser.RR_BRACKET); } } - this.state = 7596; + this.state = 7649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 448) { { - this.state = 7595; + this.state = 7648; this.levelsInWeightString(); } } - this.state = 7598; + this.state = 7651; this.match(MySqlParser.RR_BRACKET); } break; @@ -45105,31 +45356,31 @@ export class MySqlParser extends SQLParserBase { localContext = new ExtractFunctionCallContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 7600; + this.state = 7653; this.match(MySqlParser.KW_EXTRACT); - this.state = 7601; + this.state = 7654; this.match(MySqlParser.LR_BRACKET); - this.state = 7602; + this.state = 7655; this.intervalType(); - this.state = 7603; + this.state = 7656; this.match(MySqlParser.KW_FROM); - this.state = 7606; + this.state = 7659; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { case 1: { - this.state = 7604; + this.state = 7657; (localContext as ExtractFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7605; + this.state = 7658; (localContext as ExtractFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7608; + this.state = 7661; this.match(MySqlParser.RR_BRACKET); } break; @@ -45137,11 +45388,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GetFormatFunctionCallContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 7610; + this.state = 7663; this.match(MySqlParser.KW_GET_FORMAT); - this.state = 7611; + this.state = 7664; this.match(MySqlParser.LR_BRACKET); - this.state = 7612; + this.state = 7665; (localContext as GetFormatFunctionCallContext)._datetimeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 11) !== 0))) { @@ -45151,11 +45402,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7613; + this.state = 7666; this.match(MySqlParser.COMMA); - this.state = 7614; + this.state = 7667; this.stringLiteral(); - this.state = 7615; + this.state = 7668; this.match(MySqlParser.RR_BRACKET); } break; @@ -45163,49 +45414,49 @@ export class MySqlParser extends SQLParserBase { localContext = new JsonValueFunctionCallContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 7617; + this.state = 7670; this.match(MySqlParser.KW_JSON_VALUE); - this.state = 7618; + this.state = 7671; this.match(MySqlParser.LR_BRACKET); - this.state = 7619; + this.state = 7672; this.expression(0); - this.state = 7620; + this.state = 7673; this.match(MySqlParser.COMMA); - this.state = 7621; + this.state = 7674; this.expression(0); - this.state = 7624; + this.state = 7677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 579) { { - this.state = 7622; + this.state = 7675; this.match(MySqlParser.KW_RETURNING); - this.state = 7623; + this.state = 7676; this.convertedDataType(); } } - this.state = 7627; + this.state = 7680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 7626; + this.state = 7679; this.jsonOnEmpty(); } break; } - this.state = 7630; + this.state = 7683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 7629; + this.state = 7682; this.jsonOnError(); } } - this.state = 7632; + this.state = 7685; this.match(MySqlParser.RR_BRACKET); } break; @@ -45227,17 +45478,17 @@ export class MySqlParser extends SQLParserBase { } public caseFuncAlternative(): CaseFuncAlternativeContext { let localContext = new CaseFuncAlternativeContext(this.context, this.state); - this.enterRule(localContext, 778, MySqlParser.RULE_caseFuncAlternative); + this.enterRule(localContext, 786, MySqlParser.RULE_caseFuncAlternative); try { this.enterOuterAlt(localContext, 1); { - this.state = 7636; + this.state = 7689; this.match(MySqlParser.KW_WHEN); - this.state = 7637; + this.state = 7690; localContext._condition = this.functionArg(); - this.state = 7638; + this.state = 7691; this.match(MySqlParser.KW_THEN); - this.state = 7639; + this.state = 7692; localContext._consequent = this.functionArg(); } } @@ -45257,33 +45508,33 @@ export class MySqlParser extends SQLParserBase { } public levelsInWeightString(): LevelsInWeightStringContext { let localContext = new LevelsInWeightStringContext(this.context, this.state); - this.enterRule(localContext, 780, MySqlParser.RULE_levelsInWeightString); + this.enterRule(localContext, 788, MySqlParser.RULE_levelsInWeightString); let _la: number; try { - this.state = 7655; + this.state = 7708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1123, this.context) ) { case 1: localContext = new LevelWeightListContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7641; + this.state = 7694; this.match(MySqlParser.KW_LEVEL); - this.state = 7642; + this.state = 7695; this.levelInWeightListElement(); - this.state = 7647; + this.state = 7700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7643; + this.state = 7696; this.match(MySqlParser.COMMA); - this.state = 7644; + this.state = 7697; this.levelInWeightListElement(); } } - this.state = 7649; + this.state = 7702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -45293,13 +45544,13 @@ export class MySqlParser extends SQLParserBase { localContext = new LevelWeightRangeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7650; + this.state = 7703; this.match(MySqlParser.KW_LEVEL); - this.state = 7651; + this.state = 7704; (localContext as LevelWeightRangeContext)._firstLevel = this.decimalLiteral(); - this.state = 7652; + this.state = 7705; this.match(MySqlParser.MINUS); - this.state = 7653; + this.state = 7706; (localContext as LevelWeightRangeContext)._lastLevel = this.decimalLiteral(); } break; @@ -45321,19 +45572,19 @@ export class MySqlParser extends SQLParserBase { } public levelInWeightListElement(): LevelInWeightListElementContext { let localContext = new LevelInWeightListElementContext(this.context, this.state); - this.enterRule(localContext, 782, MySqlParser.RULE_levelInWeightListElement); + this.enterRule(localContext, 790, MySqlParser.RULE_levelInWeightListElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7657; + this.state = 7710; this.decimalLiteral(); - this.state = 7659; + this.state = 7712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || _la === 45 || _la === 830) { { - this.state = 7658; + this.state = 7711; localContext._orderType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45 || _la === 830)) { @@ -45364,10 +45615,10 @@ export class MySqlParser extends SQLParserBase { } public aggregateWindowedFunction(): AggregateWindowedFunctionContext { let localContext = new AggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 784, MySqlParser.RULE_aggregateWindowedFunction); + this.enterRule(localContext, 792, MySqlParser.RULE_aggregateWindowedFunction); let _la: number; try { - this.state = 7720; + this.state = 7773; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AVG: @@ -45376,7 +45627,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUM: this.enterOuterAlt(localContext, 1); { - this.state = 7661; + this.state = 7714; _la = this.tokenStream.LA(1); if(!(((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 8400897) !== 0))) { this.errorHandler.recoverInline(this); @@ -45385,14 +45636,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7662; + this.state = 7715; this.match(MySqlParser.LR_BRACKET); - this.state = 7664; + this.state = 7717; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { case 1: { - this.state = 7663; + this.state = 7716; localContext._aggregator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -45405,16 +45656,16 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 7666; + this.state = 7719; this.functionArg(); - this.state = 7667; + this.state = 7720; this.match(MySqlParser.RR_BRACKET); - this.state = 7669; + this.state = 7722; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { case 1: { - this.state = 7668; + this.state = 7721; this.overClause(); } break; @@ -45424,52 +45675,52 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_COUNT: this.enterOuterAlt(localContext, 2); { - this.state = 7671; + this.state = 7724; this.match(MySqlParser.KW_COUNT); - this.state = 7672; + this.state = 7725; this.match(MySqlParser.LR_BRACKET); - this.state = 7680; + this.state = 7733; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context) ) { case 1: { - this.state = 7673; + this.state = 7726; localContext._starArg = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 7675; + this.state = 7728; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { case 1: { - this.state = 7674; + this.state = 7727; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7677; + this.state = 7730; this.functionArg(); } break; case 3: { - this.state = 7678; + this.state = 7731; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); - this.state = 7679; + this.state = 7732; this.functionArgs(); } break; } - this.state = 7682; + this.state = 7735; this.match(MySqlParser.RR_BRACKET); - this.state = 7684; + this.state = 7737; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1129, this.context) ) { case 1: { - this.state = 7683; + this.state = 7736; this.overClause(); } break; @@ -45488,7 +45739,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIANCE: this.enterOuterAlt(localContext, 3); { - this.state = 7686; + this.state = 7739; _la = this.tokenStream.LA(1); if(!(((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 62652423) !== 0))) { this.errorHandler.recoverInline(this); @@ -45497,28 +45748,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7687; + this.state = 7740; this.match(MySqlParser.LR_BRACKET); - this.state = 7689; + this.state = 7742; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { case 1: { - this.state = 7688; + this.state = 7741; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7691; + this.state = 7744; this.functionArg(); - this.state = 7692; + this.state = 7745; this.match(MySqlParser.RR_BRACKET); - this.state = 7694; + this.state = 7747; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { case 1: { - this.state = 7693; + this.state = 7746; this.overClause(); } break; @@ -45528,65 +45779,65 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_GROUP_CONCAT: this.enterOuterAlt(localContext, 4); { - this.state = 7696; + this.state = 7749; this.match(MySqlParser.KW_GROUP_CONCAT); - this.state = 7697; + this.state = 7750; this.match(MySqlParser.LR_BRACKET); - this.state = 7699; + this.state = 7752; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { case 1: { - this.state = 7698; + this.state = 7751; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); } break; } - this.state = 7701; + this.state = 7754; this.functionArgs(); - this.state = 7712; + this.state = 7765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7702; + this.state = 7755; this.match(MySqlParser.KW_ORDER); - this.state = 7703; + this.state = 7756; this.match(MySqlParser.KW_BY); - this.state = 7704; + this.state = 7757; this.orderByExpression(); - this.state = 7709; + this.state = 7762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7705; + this.state = 7758; this.match(MySqlParser.COMMA); - this.state = 7706; + this.state = 7759; this.orderByExpression(); } } - this.state = 7711; + this.state = 7764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 7716; + this.state = 7769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 156) { { - this.state = 7714; + this.state = 7767; this.match(MySqlParser.KW_SEPARATOR); - this.state = 7715; + this.state = 7768; localContext._separator = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7718; + this.state = 7771; this.match(MySqlParser.RR_BRACKET); } break; @@ -45610,17 +45861,17 @@ export class MySqlParser extends SQLParserBase { } public nonAggregateWindowedFunction(): NonAggregateWindowedFunctionContext { let localContext = new NonAggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 786, MySqlParser.RULE_nonAggregateWindowedFunction); + this.enterRule(localContext, 794, MySqlParser.RULE_nonAggregateWindowedFunction); let _la: number; try { - this.state = 7760; + this.state = 7813; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LAG: case MySqlParser.KW_LEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7722; + this.state = 7775; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 269)) { this.errorHandler.recoverInline(this); @@ -45629,37 +45880,37 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7723; + this.state = 7776; this.match(MySqlParser.LR_BRACKET); - this.state = 7724; + this.state = 7777; this.expression(0); - this.state = 7727; + this.state = 7780; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { case 1: { - this.state = 7725; + this.state = 7778; this.match(MySqlParser.COMMA); - this.state = 7726; + this.state = 7779; this.decimalLiteral(); } break; } - this.state = 7731; + this.state = 7784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7729; + this.state = 7782; this.match(MySqlParser.COMMA); - this.state = 7730; + this.state = 7783; this.decimalLiteral(); } } - this.state = 7733; + this.state = 7786; this.match(MySqlParser.RR_BRACKET); - this.state = 7734; + this.state = 7787; this.overClause(); } break; @@ -45667,7 +45918,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LAST_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 7736; + this.state = 7789; _la = this.tokenStream.LA(1); if(!(_la === 265 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -45676,13 +45927,13 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7737; + this.state = 7790; this.match(MySqlParser.LR_BRACKET); - this.state = 7738; + this.state = 7791; this.expression(0); - this.state = 7739; + this.state = 7792; this.match(MySqlParser.RR_BRACKET); - this.state = 7740; + this.state = 7793; this.overClause(); } break; @@ -45693,7 +45944,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ROW_NUMBER: this.enterOuterAlt(localContext, 3); { - this.state = 7742; + this.state = 7795; _la = this.tokenStream.LA(1); if(!(((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 14339) !== 0))) { this.errorHandler.recoverInline(this); @@ -45702,45 +45953,45 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7743; + this.state = 7796; this.match(MySqlParser.LR_BRACKET); - this.state = 7744; + this.state = 7797; this.match(MySqlParser.RR_BRACKET); - this.state = 7745; + this.state = 7798; this.overClause(); } break; case MySqlParser.KW_NTH_VALUE: this.enterOuterAlt(localContext, 4); { - this.state = 7746; + this.state = 7799; this.match(MySqlParser.KW_NTH_VALUE); - this.state = 7747; + this.state = 7800; this.match(MySqlParser.LR_BRACKET); - this.state = 7748; + this.state = 7801; this.expression(0); - this.state = 7749; + this.state = 7802; this.match(MySqlParser.COMMA); - this.state = 7750; + this.state = 7803; this.decimalLiteral(); - this.state = 7751; + this.state = 7804; this.match(MySqlParser.RR_BRACKET); - this.state = 7752; + this.state = 7805; this.overClause(); } break; case MySqlParser.KW_NTILE: this.enterOuterAlt(localContext, 5); { - this.state = 7754; + this.state = 7807; this.match(MySqlParser.KW_NTILE); - this.state = 7755; + this.state = 7808; this.match(MySqlParser.LR_BRACKET); - this.state = 7756; + this.state = 7809; this.decimalLiteral(); - this.state = 7757; + this.state = 7810; this.match(MySqlParser.RR_BRACKET); - this.state = 7758; + this.state = 7811; this.overClause(); } break; @@ -45764,22 +46015,22 @@ export class MySqlParser extends SQLParserBase { } public overClause(): OverClauseContext { let localContext = new OverClauseContext(this.context, this.state); - this.enterRule(localContext, 788, MySqlParser.RULE_overClause); + this.enterRule(localContext, 796, MySqlParser.RULE_overClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7762; + this.state = 7815; this.match(MySqlParser.KW_OVER); - this.state = 7768; + this.state = 7821; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 7763; + this.state = 7816; this.match(MySqlParser.LR_BRACKET); - this.state = 7764; + this.state = 7817; this.windowSpec(); - this.state = 7765; + this.state = 7818; this.match(MySqlParser.RR_BRACKET); } break; @@ -46333,7 +46584,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 7767; + this.state = 7820; this.windowName(); } break; @@ -46358,47 +46609,47 @@ export class MySqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 790, MySqlParser.RULE_windowSpec); + this.enterRule(localContext, 798, MySqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7771; + this.state = 7824; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { - this.state = 7770; + this.state = 7823; this.windowName(); } break; } - this.state = 7774; + this.state = 7827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 7773; + this.state = 7826; this.partitionClause(); } } - this.state = 7777; + this.state = 7830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7776; + this.state = 7829; this.orderByClause(); } } - this.state = 7780; + this.state = 7833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 587) { { - this.state = 7779; + this.state = 7832; this.frameClause(); } } @@ -46421,11 +46672,11 @@ export class MySqlParser extends SQLParserBase { } public windowName(): WindowNameContext { let localContext = new WindowNameContext(this.context, this.state); - this.enterRule(localContext, 792, MySqlParser.RULE_windowName); + this.enterRule(localContext, 800, MySqlParser.RULE_windowName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7782; + this.state = 7835; this.uid(); } } @@ -46445,13 +46696,13 @@ export class MySqlParser extends SQLParserBase { } public frameClause(): FrameClauseContext { let localContext = new FrameClauseContext(this.context, this.state); - this.enterRule(localContext, 794, MySqlParser.RULE_frameClause); + this.enterRule(localContext, 802, MySqlParser.RULE_frameClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7784; + this.state = 7837; this.frameUnits(); - this.state = 7785; + this.state = 7838; this.frameExtent(); } } @@ -46471,12 +46722,12 @@ export class MySqlParser extends SQLParserBase { } public frameUnits(): FrameUnitsContext { let localContext = new FrameUnitsContext(this.context, this.state); - this.enterRule(localContext, 796, MySqlParser.RULE_frameUnits); + this.enterRule(localContext, 804, MySqlParser.RULE_frameUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7787; + this.state = 7840; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 587)) { this.errorHandler.recoverInline(this); @@ -46503,22 +46754,22 @@ export class MySqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 798, MySqlParser.RULE_frameExtent); + this.enterRule(localContext, 806, MySqlParser.RULE_frameExtent); try { - this.state = 7791; + this.state = 7844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7789; + this.state = 7842; this.frameRange(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7790; + this.state = 7843; this.frameBetween(); } break; @@ -46540,17 +46791,17 @@ export class MySqlParser extends SQLParserBase { } public frameBetween(): FrameBetweenContext { let localContext = new FrameBetweenContext(this.context, this.state); - this.enterRule(localContext, 800, MySqlParser.RULE_frameBetween); + this.enterRule(localContext, 808, MySqlParser.RULE_frameBetween); try { this.enterOuterAlt(localContext, 1); { - this.state = 7793; + this.state = 7846; this.match(MySqlParser.KW_BETWEEN); - this.state = 7794; + this.state = 7847; this.frameRange(); - this.state = 7795; + this.state = 7848; this.match(MySqlParser.KW_AND); - this.state = 7796; + this.state = 7849; this.frameRange(); } } @@ -46570,27 +46821,27 @@ export class MySqlParser extends SQLParserBase { } public frameRange(): FrameRangeContext { let localContext = new FrameRangeContext(this.context, this.state); - this.enterRule(localContext, 802, MySqlParser.RULE_frameRange); + this.enterRule(localContext, 810, MySqlParser.RULE_frameRange); let _la: number; try { - this.state = 7805; + this.state = 7858; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7798; + this.state = 7851; this.match(MySqlParser.KW_CURRENT); - this.state = 7799; + this.state = 7852; this.match(MySqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7800; + this.state = 7853; this.match(MySqlParser.KW_UNBOUNDED); - this.state = 7801; + this.state = 7854; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46604,9 +46855,9 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7802; + this.state = 7855; this.expression(0); - this.state = 7803; + this.state = 7856; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46635,30 +46886,30 @@ export class MySqlParser extends SQLParserBase { } public partitionClause(): PartitionClauseContext { let localContext = new PartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 804, MySqlParser.RULE_partitionClause); + this.enterRule(localContext, 812, MySqlParser.RULE_partitionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7807; + this.state = 7860; this.match(MySqlParser.KW_PARTITION); - this.state = 7808; + this.state = 7861; this.match(MySqlParser.KW_BY); - this.state = 7809; + this.state = 7862; this.expression(0); - this.state = 7814; + this.state = 7867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7810; + this.state = 7863; this.match(MySqlParser.COMMA); - this.state = 7811; + this.state = 7864; this.expression(0); } } - this.state = 7816; + this.state = 7869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46680,9 +46931,9 @@ export class MySqlParser extends SQLParserBase { } public scalarFunctionName(): ScalarFunctionNameContext { let localContext = new ScalarFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 806, MySqlParser.RULE_scalarFunctionName); + this.enterRule(localContext, 814, MySqlParser.RULE_scalarFunctionName); try { - this.state = 7841; + this.state = 7894; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DATABASE: @@ -46739,168 +46990,168 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: this.enterOuterAlt(localContext, 1); { - this.state = 7817; + this.state = 7870; this.functionNameBase(); } break; case MySqlParser.KW_ASCII: this.enterOuterAlt(localContext, 2); { - this.state = 7818; + this.state = 7871; this.match(MySqlParser.KW_ASCII); } break; case MySqlParser.KW_CURDATE: this.enterOuterAlt(localContext, 3); { - this.state = 7819; + this.state = 7872; this.match(MySqlParser.KW_CURDATE); } break; case MySqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 4); { - this.state = 7820; + this.state = 7873; this.match(MySqlParser.KW_CURRENT_DATE); } break; case MySqlParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 5); { - this.state = 7821; + this.state = 7874; this.match(MySqlParser.KW_CURRENT_TIME); } break; case MySqlParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 7822; + this.state = 7875; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case MySqlParser.KW_CURTIME: this.enterOuterAlt(localContext, 7); { - this.state = 7823; + this.state = 7876; this.match(MySqlParser.KW_CURTIME); } break; case MySqlParser.KW_DATE_ADD: this.enterOuterAlt(localContext, 8); { - this.state = 7824; + this.state = 7877; this.match(MySqlParser.KW_DATE_ADD); } break; case MySqlParser.KW_DATE_SUB: this.enterOuterAlt(localContext, 9); { - this.state = 7825; + this.state = 7878; this.match(MySqlParser.KW_DATE_SUB); } break; case MySqlParser.KW_IF: this.enterOuterAlt(localContext, 10); { - this.state = 7826; + this.state = 7879; this.match(MySqlParser.KW_IF); } break; case MySqlParser.KW_INSERT: this.enterOuterAlt(localContext, 11); { - this.state = 7827; + this.state = 7880; this.match(MySqlParser.KW_INSERT); } break; case MySqlParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 12); { - this.state = 7828; + this.state = 7881; this.match(MySqlParser.KW_LOCALTIME); } break; case MySqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 13); { - this.state = 7829; + this.state = 7882; this.match(MySqlParser.KW_LOCALTIMESTAMP); } break; case MySqlParser.KW_MID: this.enterOuterAlt(localContext, 14); { - this.state = 7830; + this.state = 7883; this.match(MySqlParser.KW_MID); } break; case MySqlParser.KW_NOW: this.enterOuterAlt(localContext, 15); { - this.state = 7831; + this.state = 7884; this.match(MySqlParser.KW_NOW); } break; case MySqlParser.KW_REPEAT: this.enterOuterAlt(localContext, 16); { - this.state = 7832; + this.state = 7885; this.match(MySqlParser.KW_REPEAT); } break; case MySqlParser.KW_REPLACE: this.enterOuterAlt(localContext, 17); { - this.state = 7833; + this.state = 7886; this.match(MySqlParser.KW_REPLACE); } break; case MySqlParser.KW_SUBSTR: this.enterOuterAlt(localContext, 18); { - this.state = 7834; + this.state = 7887; this.match(MySqlParser.KW_SUBSTR); } break; case MySqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 19); { - this.state = 7835; + this.state = 7888; this.match(MySqlParser.KW_SUBSTRING); } break; case MySqlParser.KW_SYSDATE: this.enterOuterAlt(localContext, 20); { - this.state = 7836; + this.state = 7889; this.match(MySqlParser.KW_SYSDATE); } break; case MySqlParser.KW_TRIM: this.enterOuterAlt(localContext, 21); { - this.state = 7837; + this.state = 7890; this.match(MySqlParser.KW_TRIM); } break; case MySqlParser.KW_UTC_DATE: this.enterOuterAlt(localContext, 22); { - this.state = 7838; + this.state = 7891; this.match(MySqlParser.KW_UTC_DATE); } break; case MySqlParser.KW_UTC_TIME: this.enterOuterAlt(localContext, 23); { - this.state = 7839; + this.state = 7892; this.match(MySqlParser.KW_UTC_TIME); } break; case MySqlParser.KW_UTC_TIMESTAMP: this.enterOuterAlt(localContext, 24); { - this.state = 7840; + this.state = 7893; this.match(MySqlParser.KW_UTC_TIMESTAMP); } break; @@ -46924,12 +47175,12 @@ export class MySqlParser extends SQLParserBase { } public passwordFunctionClause(): PasswordFunctionClauseContext { let localContext = new PasswordFunctionClauseContext(this.context, this.state); - this.enterRule(localContext, 808, MySqlParser.RULE_passwordFunctionClause); + this.enterRule(localContext, 816, MySqlParser.RULE_passwordFunctionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7843; + this.state = 7896; _la = this.tokenStream.LA(1); if(!(_la === 512 || _la === 529)) { this.errorHandler.recoverInline(this); @@ -46938,11 +47189,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7844; + this.state = 7897; this.match(MySqlParser.LR_BRACKET); - this.state = 7845; + this.state = 7898; this.functionArg(); - this.state = 7846; + this.state = 7899; this.match(MySqlParser.RR_BRACKET); } } @@ -46962,26 +47213,26 @@ export class MySqlParser extends SQLParserBase { } public functionArgs(): FunctionArgsContext { let localContext = new FunctionArgsContext(this.context, this.state); - this.enterRule(localContext, 810, MySqlParser.RULE_functionArgs); + this.enterRule(localContext, 818, MySqlParser.RULE_functionArgs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7848; + this.state = 7901; this.functionArg(); - this.state = 7853; + this.state = 7906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7849; + this.state = 7902; this.match(MySqlParser.COMMA); - this.state = 7850; + this.state = 7903; this.functionArg(); } } - this.state = 7855; + this.state = 7908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47003,29 +47254,29 @@ export class MySqlParser extends SQLParserBase { } public functionArg(): FunctionArgContext { let localContext = new FunctionArgContext(this.context, this.state); - this.enterRule(localContext, 812, MySqlParser.RULE_functionArg); + this.enterRule(localContext, 820, MySqlParser.RULE_functionArg); try { - this.state = 7859; + this.state = 7912; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7856; + this.state = 7909; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7857; + this.state = 7910; this.functionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7858; + this.state = 7911; this.expression(0); } break; @@ -47057,23 +47308,23 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 814; - this.enterRecursionRule(localContext, 814, MySqlParser.RULE_expression, _p); + let _startState = 822; + this.enterRecursionRule(localContext, 822, MySqlParser.RULE_expression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7872; + this.state = 7925; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context) ) { case 1: { localContext = new NotExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7862; + this.state = 7915; (localContext as NotExpressionContext)._notOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 860)) { @@ -47083,7 +47334,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7863; + this.state = 7916; this.expression(4); } break; @@ -47092,21 +47343,21 @@ export class MySqlParser extends SQLParserBase { localContext = new IsExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7864; + this.state = 7917; this.predicate(0); - this.state = 7865; + this.state = 7918; this.match(MySqlParser.KW_IS); - this.state = 7867; + this.state = 7920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7866; + this.state = 7919; this.match(MySqlParser.KW_NOT); } } - this.state = 7869; + this.state = 7922; (localContext as IsExpressionContext)._testValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179 || _la === 674)) { @@ -47123,15 +47374,15 @@ export class MySqlParser extends SQLParserBase { localContext = new PredicateExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7871; + this.state = 7924; this.predicate(0); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7880; + this.state = 7933; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1153, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47142,20 +47393,20 @@ export class MySqlParser extends SQLParserBase { { localContext = new LogicalExpressionContext(new ExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expression); - this.state = 7874; + this.state = 7927; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7875; + this.state = 7928; this.logicalOperator(); - this.state = 7876; + this.state = 7929; this.expression(4); } } } - this.state = 7882; + this.state = 7935; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1153, this.context); } } } @@ -47185,8 +47436,8 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PredicateContext(this.context, parentState); let previousContext = localContext; - let _startState = 816; - this.enterRecursionRule(localContext, 816, MySqlParser.RULE_predicate, _p); + let _startState = 824; + this.enterRecursionRule(localContext, 824, MySqlParser.RULE_predicate, _p); let _la: number; try { let alternative: number; @@ -47197,13 +47448,13 @@ export class MySqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 7884; + this.state = 7937; this.expressionAtom(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7949; + this.state = 8002; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47211,34 +47462,34 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7947; + this.state = 8000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { case 1: { localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7886; + this.state = 7939; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7888; + this.state = 7941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7887; + this.state = 7940; this.match(MySqlParser.KW_NOT); } } - this.state = 7890; + this.state = 7943; this.match(MySqlParser.KW_BETWEEN); - this.state = 7891; + this.state = 7944; this.predicate(0); - this.state = 7892; + this.state = 7945; this.match(MySqlParser.KW_AND); - this.state = 7893; + this.state = 7946; this.predicate(7); } break; @@ -47246,15 +47497,15 @@ export class MySqlParser extends SQLParserBase { { localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7895; + this.state = 7948; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 7896; + this.state = 7949; this.match(MySqlParser.KW_SOUNDS); - this.state = 7897; + this.state = 7950; this.match(MySqlParser.KW_LIKE); - this.state = 7898; + this.state = 7951; this.predicate(6); } break; @@ -47262,21 +47513,21 @@ export class MySqlParser extends SQLParserBase { { localContext = new RegexpPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7899; + this.state = 7952; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7901; + this.state = 7954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7900; + this.state = 7953; this.match(MySqlParser.KW_NOT); } } - this.state = 7903; + this.state = 7956; (localContext as RegexpPredicateContext)._regex = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 151)) { @@ -47286,7 +47537,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7904; + this.state = 7957; this.predicate(4); } break; @@ -47294,41 +47545,41 @@ export class MySqlParser extends SQLParserBase { { localContext = new InPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7905; + this.state = 7958; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 7907; + this.state = 7960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7906; + this.state = 7959; this.match(MySqlParser.KW_NOT); } } - this.state = 7909; + this.state = 7962; this.match(MySqlParser.KW_IN); - this.state = 7910; + this.state = 7963; this.match(MySqlParser.LR_BRACKET); - this.state = 7913; + this.state = 7966; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { case 1: { - this.state = 7911; + this.state = 7964; this.selectStatement(); } break; case 2: { - this.state = 7912; + this.state = 7965; this.expressions(); } break; } - this.state = 7915; + this.state = 7968; this.match(MySqlParser.RR_BRACKET); } break; @@ -47336,13 +47587,13 @@ export class MySqlParser extends SQLParserBase { { localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7917; + this.state = 7970; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 7918; + this.state = 7971; this.match(MySqlParser.KW_IS); - this.state = 7919; + this.state = 7972; this.nullNotNull(); } break; @@ -47350,18 +47601,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7920; + this.state = 7973; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 7921; + this.state = 7974; this.comparisonOperator(); - this.state = 7928; + this.state = 7981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { case 1: { - this.state = 7922; + this.state = 7975; (localContext as BinaryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 309 || _la === 602)) { @@ -47371,17 +47622,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7923; + this.state = 7976; this.match(MySqlParser.LR_BRACKET); - this.state = 7924; + this.state = 7977; (localContext as BinaryComparisonPredicateContext)._subQuery = this.selectStatement(); - this.state = 7925; + this.state = 7978; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7927; + this.state = 7980; (localContext as BinaryComparisonPredicateContext)._right = this.predicate(0); } break; @@ -47392,32 +47643,32 @@ export class MySqlParser extends SQLParserBase { { localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7930; + this.state = 7983; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7932; + this.state = 7985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7931; + this.state = 7984; this.match(MySqlParser.KW_NOT); } } - this.state = 7934; + this.state = 7987; this.match(MySqlParser.KW_LIKE); - this.state = 7935; + this.state = 7988; this.predicate(0); - this.state = 7938; + this.state = 7991; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { case 1: { - this.state = 7936; + this.state = 7989; this.match(MySqlParser.KW_ESCAPE); - this.state = 7937; + this.state = 7990; this.match(MySqlParser.STRING_LITERAL); } break; @@ -47428,28 +47679,28 @@ export class MySqlParser extends SQLParserBase { { localContext = new JsonMemberOfPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7940; + this.state = 7993; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7941; + this.state = 7994; this.match(MySqlParser.KW_MEMBER); - this.state = 7942; + this.state = 7995; this.match(MySqlParser.KW_OF); - this.state = 7943; + this.state = 7996; this.match(MySqlParser.LR_BRACKET); - this.state = 7944; + this.state = 7997; this.predicate(0); - this.state = 7945; + this.state = 7998; this.match(MySqlParser.RR_BRACKET); } break; } } } - this.state = 7951; + this.state = 8004; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context); } } } @@ -47479,23 +47730,23 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ExpressionAtomContext(this.context, parentState); let previousContext = localContext; - let _startState = 818; - this.enterRecursionRule(localContext, 818, MySqlParser.RULE_expressionAtom, _p); + let _startState = 826; + this.enterRecursionRule(localContext, 826, MySqlParser.RULE_expressionAtom, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8000; + this.state = 8053; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1154, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { case 1: { localContext = new ConstantExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7953; + this.state = 8006; this.constant(); } break; @@ -47504,7 +47755,7 @@ export class MySqlParser extends SQLParserBase { localContext = new FunctionCallExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7954; + this.state = 8007; this.functionCall(); } break; @@ -47513,7 +47764,7 @@ export class MySqlParser extends SQLParserBase { localContext = new MysqlVariableExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7955; + this.state = 8008; this.mysqlVariable(); } break; @@ -47522,9 +47773,9 @@ export class MySqlParser extends SQLParserBase { localContext = new UnaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7956; + this.state = 8009; this.unaryOperator(); - this.state = 7957; + this.state = 8010; this.expressionAtom(12); } break; @@ -47533,9 +47784,9 @@ export class MySqlParser extends SQLParserBase { localContext = new BinaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7959; + this.state = 8012; this.match(MySqlParser.KW_BINARY); - this.state = 7960; + this.state = 8013; this.expressionAtom(11); } break; @@ -47544,11 +47795,11 @@ export class MySqlParser extends SQLParserBase { localContext = new VariableAssignExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7961; + this.state = 8014; this.match(MySqlParser.LOCAL_ID); - this.state = 7962; + this.state = 8015; this.match(MySqlParser.VAR_ASSIGN); - this.state = 7963; + this.state = 8016; this.expressionAtom(10); } break; @@ -47557,27 +47808,27 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7964; + this.state = 8017; this.match(MySqlParser.LR_BRACKET); - this.state = 7965; + this.state = 8018; this.expression(0); - this.state = 7970; + this.state = 8023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7966; + this.state = 8019; this.match(MySqlParser.COMMA); - this.state = 7967; + this.state = 8020; this.expression(0); } } - this.state = 7972; + this.state = 8025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7973; + this.state = 8026; this.match(MySqlParser.RR_BRACKET); } break; @@ -47586,29 +47837,29 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedRowExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7975; + this.state = 8028; this.match(MySqlParser.KW_ROW); - this.state = 7976; + this.state = 8029; this.match(MySqlParser.LR_BRACKET); - this.state = 7977; + this.state = 8030; this.expression(0); - this.state = 7980; + this.state = 8033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7978; + this.state = 8031; this.match(MySqlParser.COMMA); - this.state = 7979; + this.state = 8032; this.expression(0); } } - this.state = 7982; + this.state = 8035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 7984; + this.state = 8037; this.match(MySqlParser.RR_BRACKET); } break; @@ -47617,13 +47868,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ExistsExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7986; + this.state = 8039; this.match(MySqlParser.KW_EXISTS); - this.state = 7987; + this.state = 8040; this.match(MySqlParser.LR_BRACKET); - this.state = 7988; + this.state = 8041; this.selectStatement(); - this.state = 7989; + this.state = 8042; this.match(MySqlParser.RR_BRACKET); } break; @@ -47632,11 +47883,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7991; + this.state = 8044; this.match(MySqlParser.LR_BRACKET); - this.state = 7992; + this.state = 8045; this.selectStatement(); - this.state = 7993; + this.state = 8046; this.match(MySqlParser.RR_BRACKET); } break; @@ -47645,11 +47896,11 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7995; + this.state = 8048; this.match(MySqlParser.KW_INTERVAL); - this.state = 7996; + this.state = 8049; this.expression(0); - this.state = 7997; + this.state = 8050; this.intervalType(); } break; @@ -47658,15 +47909,15 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnNameExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7999; - this.columnName(); + this.state = 8052; + this.columnNamePath(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 8019; + this.state = 8072; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47674,21 +47925,21 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 8017; + this.state = 8070; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context) ) { case 1: { localContext = new JsonExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as JsonExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8002; + this.state = 8055; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 8003; + this.state = 8056; this.jsonOperator(); - this.state = 8004; + this.state = 8057; (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(5); } break; @@ -47697,13 +47948,13 @@ export class MySqlParser extends SQLParserBase { localContext = new BitExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as BitExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8006; + this.state = 8059; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 8007; + this.state = 8060; this.bitOperator(); - this.state = 8008; + this.state = 8061; (localContext as BitExpressionAtomContext)._right = this.expressionAtom(4); } break; @@ -47712,13 +47963,13 @@ export class MySqlParser extends SQLParserBase { localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as MathExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8010; + this.state = 8063; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 8011; + this.state = 8064; this.mathOperator(); - this.state = 8012; + this.state = 8065; (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); } break; @@ -47726,22 +47977,22 @@ export class MySqlParser extends SQLParserBase { { localContext = new CollateExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8014; + this.state = 8067; if (!(this.precpred(this.context, 14))) { throw this.createFailedPredicateException("this.precpred(this.context, 14)"); } - this.state = 8015; + this.state = 8068; this.match(MySqlParser.KW_COLLATE); - this.state = 8016; + this.state = 8069; this.collationName(); } break; } } } - this.state = 8021; + this.state = 8074; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context); } } } @@ -47761,12 +48012,12 @@ export class MySqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 820, MySqlParser.RULE_unaryOperator); + this.enterRule(localContext, 828, MySqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8022; + this.state = 8075; _la = this.tokenStream.LA(1); if(!(_la === 114 || ((((_la - 853)) & ~0x1F) === 0 && ((1 << (_la - 853)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -47793,44 +48044,44 @@ export class MySqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 822, MySqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 830, MySqlParser.RULE_comparisonOperator); try { - this.state = 8032; + this.state = 8085; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8024; + this.state = 8077; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8025; + this.state = 8078; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8026; + this.state = 8079; this.match(MySqlParser.EXCLAMATION_SYMBOL); - this.state = 8027; + this.state = 8080; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8028; + this.state = 8081; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8029; + this.state = 8082; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 8030; + this.state = 8083; this.match(MySqlParser.GREATER_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8031; + this.state = 8084; this.comparisonBase(); } break; @@ -47852,47 +48103,47 @@ export class MySqlParser extends SQLParserBase { } public comparisonBase(): ComparisonBaseContext { let localContext = new ComparisonBaseContext(this.context, this.state); - this.enterRule(localContext, 824, MySqlParser.RULE_comparisonBase); + this.enterRule(localContext, 832, MySqlParser.RULE_comparisonBase); try { - this.state = 8041; + this.state = 8094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8034; + this.state = 8087; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8035; + this.state = 8088; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8036; + this.state = 8089; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8037; + this.state = 8090; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8038; + this.state = 8091; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8039; + this.state = 8092; this.match(MySqlParser.GREATER_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8040; + this.state = 8093; this.match(MySqlParser.LESS_SYMBOL); } break; @@ -47914,47 +48165,47 @@ export class MySqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 826, MySqlParser.RULE_logicalOperator); + this.enterRule(localContext, 834, MySqlParser.RULE_logicalOperator); try { - this.state = 8050; + this.state = 8103; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 8043; + this.state = 8096; this.match(MySqlParser.KW_AND); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 8044; + this.state = 8097; this.match(MySqlParser.BIT_AND_OP); - this.state = 8045; + this.state = 8098; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.KW_XOR: this.enterOuterAlt(localContext, 3); { - this.state = 8046; + this.state = 8099; this.match(MySqlParser.KW_XOR); } break; case MySqlParser.KW_OR: this.enterOuterAlt(localContext, 4); { - this.state = 8047; + this.state = 8100; this.match(MySqlParser.KW_OR); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8048; + this.state = 8101; this.match(MySqlParser.BIT_OR_OP); - this.state = 8049; + this.state = 8102; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47978,47 +48229,47 @@ export class MySqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 828, MySqlParser.RULE_bitOperator); + this.enterRule(localContext, 836, MySqlParser.RULE_bitOperator); try { - this.state = 8059; + this.state = 8112; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 8052; + this.state = 8105; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8053; + this.state = 8106; this.match(MySqlParser.LESS_SYMBOL); } break; case MySqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 8054; + this.state = 8107; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8055; + this.state = 8108; this.match(MySqlParser.GREATER_SYMBOL); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 8056; + this.state = 8109; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 8057; + this.state = 8110; this.match(MySqlParser.BIT_XOR_OP); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8058; + this.state = 8111; this.match(MySqlParser.BIT_OR_OP); } break; @@ -48042,12 +48293,12 @@ export class MySqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 830, MySqlParser.RULE_mathOperator); + this.enterRule(localContext, 838, MySqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8061; + this.state = 8114; _la = this.tokenStream.LA(1); if(!(((((_la - 850)) & ~0x1F) === 0 && ((1 << (_la - 850)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -48074,28 +48325,28 @@ export class MySqlParser extends SQLParserBase { } public jsonOperator(): JsonOperatorContext { let localContext = new JsonOperatorContext(this.context, this.state); - this.enterRule(localContext, 832, MySqlParser.RULE_jsonOperator); + this.enterRule(localContext, 840, MySqlParser.RULE_jsonOperator); try { - this.state = 8068; + this.state = 8121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8063; + this.state = 8116; this.match(MySqlParser.MINUS); - this.state = 8064; + this.state = 8117; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8065; + this.state = 8118; this.match(MySqlParser.MINUS); - this.state = 8066; + this.state = 8119; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8067; + this.state = 8120; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -48117,12 +48368,12 @@ export class MySqlParser extends SQLParserBase { } public charsetNameBase(): CharsetNameBaseContext { let localContext = new CharsetNameBaseContext(this.context, this.state); - this.enterRule(localContext, 834, MySqlParser.RULE_charsetNameBase); + this.enterRule(localContext, 842, MySqlParser.RULE_charsetNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8070; + this.state = 8123; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 756)) & ~0x1F) === 0 && ((1 << (_la - 756)) & 4294967295) !== 0) || ((((_la - 788)) & ~0x1F) === 0 && ((1 << (_la - 788)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -48149,12 +48400,12 @@ export class MySqlParser extends SQLParserBase { } public transactionLevelBase(): TransactionLevelBaseContext { let localContext = new TransactionLevelBaseContext(this.context, this.state); - this.enterRule(localContext, 836, MySqlParser.RULE_transactionLevelBase); + this.enterRule(localContext, 844, MySqlParser.RULE_transactionLevelBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8072; + this.state = 8125; _la = this.tokenStream.LA(1); if(!(((((_la - 809)) & ~0x1F) === 0 && ((1 << (_la - 809)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -48181,12 +48432,12 @@ export class MySqlParser extends SQLParserBase { } public privilegesBase(): PrivilegesBaseContext { let localContext = new PrivilegesBaseContext(this.context, this.state); - this.enterRule(localContext, 838, MySqlParser.RULE_privilegesBase); + this.enterRule(localContext, 846, MySqlParser.RULE_privilegesBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8074; + this.state = 8127; _la = this.tokenStream.LA(1); if(!(((((_la - 717)) & ~0x1F) === 0 && ((1 << (_la - 717)) & 68026371) !== 0) || ((((_la - 749)) & ~0x1F) === 0 && ((1 << (_la - 749)) & 11) !== 0))) { this.errorHandler.recoverInline(this); @@ -48213,12 +48464,12 @@ export class MySqlParser extends SQLParserBase { } public intervalTypeBase(): IntervalTypeBaseContext { let localContext = new IntervalTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 840, MySqlParser.RULE_intervalTypeBase); + this.enterRule(localContext, 848, MySqlParser.RULE_intervalTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8076; + this.state = 8129; _la = this.tokenStream.LA(1); if(!(((((_la - 696)) & ~0x1F) === 0 && ((1 << (_la - 696)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -48245,12 +48496,12 @@ export class MySqlParser extends SQLParserBase { } public dataTypeBase(): DataTypeBaseContext { let localContext = new DataTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 842, MySqlParser.RULE_dataTypeBase); + this.enterRule(localContext, 850, MySqlParser.RULE_dataTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8078; + this.state = 8131; _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1179679) !== 0))) { this.errorHandler.recoverInline(this); @@ -48277,12 +48528,12 @@ export class MySqlParser extends SQLParserBase { } public keywordsCanBeId(): KeywordsCanBeIdContext { let localContext = new KeywordsCanBeIdContext(this.context, this.state); - this.enterRule(localContext, 844, MySqlParser.RULE_keywordsCanBeId); + this.enterRule(localContext, 852, MySqlParser.RULE_keywordsCanBeId); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8080; + this.state = 8133; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014211) !== 0) || _la === 74 || _la === 95 || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 16673) !== 0) || _la === 160 || _la === 170 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1648345089) !== 0) || ((((_la - 277)) & ~0x1F) === 0 && ((1 << (_la - 277)) & 4160749823) !== 0) || ((((_la - 309)) & ~0x1F) === 0 && ((1 << (_la - 309)) & 4292870141) !== 0) || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 4294967287) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 4024434671) !== 0) || ((((_la - 406)) & ~0x1F) === 0 && ((1 << (_la - 406)) & 3747609503) !== 0) || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4227727359) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 3758096239) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 2678062559) !== 0) || ((((_la - 534)) & ~0x1F) === 0 && ((1 << (_la - 534)) & 2682256863) !== 0) || ((((_la - 566)) & ~0x1F) === 0 && ((1 << (_la - 566)) & 4294965887) !== 0) || ((((_la - 598)) & ~0x1F) === 0 && ((1 << (_la - 598)) & 255) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 2128608253) !== 0) || ((((_la - 704)) & ~0x1F) === 0 && ((1 << (_la - 704)) & 1053007341) !== 0) || ((((_la - 737)) & ~0x1F) === 0 && ((1 << (_la - 737)) & 478907) !== 0) || ((((_la - 802)) & ~0x1F) === 0 && ((1 << (_la - 802)) & 3230662657) !== 0) || _la === 838)) { this.errorHandler.recoverInline(this); @@ -48309,12 +48560,12 @@ export class MySqlParser extends SQLParserBase { } public functionNameBase(): FunctionNameBaseContext { let localContext = new FunctionNameBaseContext(this.context, this.state); - this.enterRule(localContext, 846, MySqlParser.RULE_functionNameBase); + this.enterRule(localContext, 854, MySqlParser.RULE_functionNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8082; + this.state = 8135; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 98 || _la === 150 || _la === 152 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 23) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 16375299) !== 0) || _la === 296 || _la === 435 || ((((_la - 686)) & ~0x1F) === 0 && ((1 << (_la - 686)) & 261121) !== 0) || _la === 746 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 145190393) !== 0) || _la === 856)) { this.errorHandler.recoverInline(this); @@ -48346,13 +48597,17 @@ export class MySqlParser extends SQLParserBase { return this.queryExpressionBody_sempred(localContext as QueryExpressionBodyContext, predIndex); case 108: return this.queryItem_sempred(localContext as QueryItemContext, predIndex); - case 336: + case 337: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 407: + case 339: + return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); + case 364: + return this.dottedIdAllowEmpty_sempred(localContext as DottedIdAllowEmptyContext, predIndex); + case 411: return this.expression_sempred(localContext as ExpressionContext, predIndex); - case 408: + case 412: return this.predicate_sempred(localContext as PredicateContext, predIndex); - case 409: + case 413: return this.expressionAtom_sempred(localContext as ExpressionAtomContext, predIndex); } return true; @@ -48380,50 +48635,64 @@ export class MySqlParser extends SQLParserBase { } return true; } - private expression_sempred(localContext: ExpressionContext | null, predIndex: number): boolean { + private columnNamePathAllowEmpty_sempred(localContext: ColumnNamePathAllowEmptyContext | null, predIndex: number): boolean { switch (predIndex) { case 4: + return this.shouldMatchEmpty(); + } + return true; + } + private dottedIdAllowEmpty_sempred(localContext: DottedIdAllowEmptyContext | null, predIndex: number): boolean { + switch (predIndex) { + case 5: + return this.shouldMatchEmpty(); + } + return true; + } + private expression_sempred(localContext: ExpressionContext | null, predIndex: number): boolean { + switch (predIndex) { + case 6: return this.precpred(this.context, 3); } return true; } private predicate_sempred(localContext: PredicateContext | null, predIndex: number): boolean { switch (predIndex) { - case 5: + case 7: return this.precpred(this.context, 6); - case 6: + case 8: return this.precpred(this.context, 5); - case 7: + case 9: return this.precpred(this.context, 3); - case 8: + case 10: return this.precpred(this.context, 9); - case 9: + case 11: return this.precpred(this.context, 8); - case 10: + case 12: return this.precpred(this.context, 7); - case 11: + case 13: return this.precpred(this.context, 4); - case 12: + case 14: return this.precpred(this.context, 2); } return true; } private expressionAtom_sempred(localContext: ExpressionAtomContext | null, predIndex: number): boolean { switch (predIndex) { - case 13: + case 15: return this.precpred(this.context, 4); - case 14: + case 16: return this.precpred(this.context, 3); - case 15: + case 17: return this.precpred(this.context, 2); - case 16: + case 18: return this.precpred(this.context, 14); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,895,8085,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,895,8138,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, @@ -48497,745 +48766,751 @@ export class MySqlParser extends SQLParserBase { 7,406,2,407,7,407,2,408,7,408,2,409,7,409,2,410,7,410,2,411,7,411, 2,412,7,412,2,413,7,413,2,414,7,414,2,415,7,415,2,416,7,416,2,417, 7,417,2,418,7,418,2,419,7,419,2,420,7,420,2,421,7,421,2,422,7,422, - 2,423,7,423,1,0,5,0,850,8,0,10,0,12,0,853,9,0,1,0,1,0,1,1,1,1,3, - 1,859,8,1,1,1,3,1,862,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,871,8, - 2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, + 2,423,7,423,2,424,7,424,2,425,7,425,2,426,7,426,2,427,7,427,1,0, + 5,0,858,8,0,10,0,12,0,861,9,0,1,0,1,0,1,1,1,1,3,1,867,8,1,1,1,3, + 1,870,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,879,8,2,1,3,1,3,1,4,1, + 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, - 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,915,8,4,1,5,1,5,1, - 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,934, - 8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,945,8,6,1,7,1,7,1,7, - 1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,961,8,7,1,8,1,8, - 1,8,3,8,966,8,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,978, - 8,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, + 4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,923,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,942,8,5,1,6,1,6,1, + 6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,953,8,6,1,7,1,7,1,7,1,7,1,7,1,7,1, + 7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,969,8,7,1,8,1,8,1,8,3,8,974,8, + 8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,986,8,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,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1013,8,10,1,11,1,11, - 1,11,1,11,1,11,1,11,1,11,1,11,3,11,1023,8,11,1,12,1,12,1,12,3,12, - 1028,8,12,1,12,1,12,5,12,1032,8,12,10,12,12,12,1035,9,12,1,13,1, - 13,3,13,1039,8,13,1,13,1,13,3,13,1043,8,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,3,13,1052,8,13,1,13,3,13,1055,8,13,1,13,3,13,1058,8, - 13,1,13,1,13,3,13,1062,8,13,1,13,1,13,1,13,1,14,1,14,3,14,1069,8, - 14,1,14,3,14,1072,8,14,1,14,1,14,1,14,3,14,1077,8,14,1,14,1,14,1, - 14,1,14,5,14,1083,8,14,10,14,12,14,1086,9,14,1,14,1,14,3,14,1090, - 8,14,1,14,1,14,1,14,3,14,1095,8,14,1,14,5,14,1098,8,14,10,14,12, - 14,1101,9,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,3,15,1112, - 8,15,1,15,3,15,1115,8,15,1,15,1,15,3,15,1119,8,15,1,15,3,15,1122, - 8,15,1,15,1,15,3,15,1126,8,15,1,15,3,15,1129,8,15,1,15,1,15,3,15, - 1133,8,15,1,15,3,15,1136,8,15,1,15,3,15,1139,8,15,1,15,1,15,3,15, - 1143,8,15,1,15,3,15,1146,8,15,1,15,1,15,3,15,1150,8,15,1,15,1,15, - 1,16,1,16,3,16,1156,8,16,1,16,1,16,3,16,1160,8,16,1,16,1,16,1,16, - 3,16,1165,8,16,1,16,1,16,5,16,1169,8,16,10,16,12,16,1172,9,16,1, - 16,1,16,5,16,1176,8,16,10,16,12,16,1179,9,16,1,16,1,16,1,17,1,17, - 3,17,1185,8,17,1,17,3,17,1188,8,17,1,17,1,17,3,17,1192,8,17,1,17, - 1,17,1,17,3,17,1197,8,17,1,17,1,17,5,17,1201,8,17,10,17,12,17,1204, - 9,17,1,17,1,17,1,17,1,17,5,17,1210,8,17,10,17,12,17,1213,9,17,1, - 17,1,17,3,17,1217,8,17,1,18,1,18,3,18,1221,8,18,1,18,1,18,3,18,1225, - 8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,3,19,1236,8,19, - 1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20, - 1,20,5,20,1252,8,20,10,20,12,20,1255,9,20,1,20,1,20,1,21,1,21,3, - 21,1261,8,21,1,21,1,21,3,21,1265,8,21,1,21,1,21,3,21,1269,8,21,1, - 21,1,21,3,21,1273,8,21,1,21,5,21,1276,8,21,10,21,12,21,1279,9,21, - 3,21,1281,8,21,1,21,3,21,1284,8,21,1,21,3,21,1287,8,21,1,21,3,21, - 1290,8,21,1,21,1,21,1,21,1,21,3,21,1296,8,21,1,21,1,21,3,21,1300, - 8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1310,8,21,1,21, - 1,21,3,21,1314,8,21,1,21,1,21,3,21,1318,8,21,1,21,1,21,1,21,1,21, - 3,21,1324,8,21,1,21,5,21,1327,8,21,10,21,12,21,1330,9,21,3,21,1332, - 8,21,1,21,3,21,1335,8,21,3,21,1337,8,21,1,22,1,22,3,22,1341,8,22, - 1,22,1,22,1,22,1,22,1,22,3,22,1348,8,22,1,22,1,22,3,22,1352,8,22, - 1,22,3,22,1355,8,22,1,22,1,22,1,22,3,22,1360,8,22,1,22,1,22,3,22, - 1364,8,22,1,22,3,22,1367,8,22,1,22,1,22,3,22,1371,8,22,1,22,3,22, - 1374,8,22,1,23,1,23,3,23,1378,8,23,1,23,1,23,1,23,1,23,1,23,1,23, - 1,23,1,23,1,23,1,23,1,23,3,23,1391,8,23,1,23,3,23,1394,8,23,1,23, - 1,23,3,23,1398,8,23,1,23,3,23,1401,8,23,1,23,1,23,3,23,1405,8,23, - 1,23,3,23,1408,8,23,1,23,1,23,3,23,1412,8,23,1,23,3,23,1415,8,23, - 1,23,1,23,3,23,1419,8,23,1,23,3,23,1422,8,23,1,23,3,23,1425,8,23, - 1,23,1,23,3,23,1429,8,23,1,23,3,23,1432,8,23,1,23,1,23,3,23,1436, - 8,23,1,23,1,23,1,24,1,24,3,24,1442,8,24,1,24,3,24,1445,8,24,1,24, - 1,24,3,24,1449,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, - 1,24,3,24,1461,8,24,1,24,1,24,1,25,1,25,3,25,1467,8,25,1,25,1,25, - 1,26,1,26,1,26,1,26,1,26,5,26,1476,8,26,10,26,12,26,1479,9,26,1, - 26,1,26,3,26,1483,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1491,8, - 26,1,27,1,27,3,27,1495,8,27,1,27,1,27,1,27,3,27,1500,8,27,1,27,3, - 27,1503,8,27,1,27,1,27,1,27,3,27,1508,8,27,1,27,1,27,1,27,1,27,1, - 27,1,27,5,27,1516,8,27,10,27,12,27,1519,9,27,1,27,1,27,3,27,1523, - 8,27,1,27,1,27,1,27,3,27,1528,8,27,1,27,1,27,1,27,1,27,3,27,1534, - 8,27,1,27,1,27,1,27,3,27,1539,8,27,1,27,1,27,3,27,1543,8,27,3,27, - 1545,8,27,1,28,3,28,1548,8,28,1,28,1,28,3,28,1552,8,28,1,28,1,28, - 3,28,1556,8,28,1,28,3,28,1559,8,28,1,28,1,28,3,28,1563,8,28,1,28, - 1,28,3,28,1567,8,28,1,28,1,28,3,28,1571,8,28,1,28,1,28,1,28,1,28, - 3,28,1577,8,28,1,28,3,28,1580,8,28,1,29,1,29,1,29,1,29,1,29,3,29, - 1587,8,29,1,30,1,30,1,30,3,30,1592,8,30,1,31,1,31,1,31,1,31,3,31, - 1598,8,31,1,32,1,32,1,32,5,32,1603,8,32,10,32,12,32,1606,9,32,1, - 32,1,32,1,32,3,32,1611,8,32,1,32,1,32,1,32,1,32,5,32,1617,8,32,10, - 32,12,32,1620,9,32,3,32,1622,8,32,1,32,1,32,1,32,5,32,1627,8,32, - 10,32,12,32,1630,9,32,3,32,1632,8,32,3,32,1634,8,32,1,33,1,33,1, - 33,1,33,3,33,1640,8,33,1,34,1,34,1,34,1,34,3,34,1646,8,34,1,34,1, - 34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, - 35,3,35,1663,8,35,1,36,1,36,1,36,1,36,1,36,3,36,1670,8,36,1,37,1, - 37,1,37,1,38,1,38,3,38,1677,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1, - 38,1,38,1,38,1,38,3,38,1689,8,38,1,38,1,38,1,38,3,38,1694,8,38,1, - 38,3,38,1697,8,38,1,39,3,39,1700,8,39,1,39,1,39,1,39,1,40,1,40,1, - 40,1,41,1,41,1,41,1,41,1,41,3,41,1713,8,41,1,41,1,41,1,41,1,41,1, - 41,1,41,1,41,1,41,1,41,1,41,1,41,3,41,1726,8,41,1,41,1,41,1,41,3, - 41,1731,8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, - 42,1,42,1,42,1,42,3,42,1747,8,42,1,43,1,43,1,43,1,43,5,43,1753,8, - 43,10,43,12,43,1756,9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44, - 1765,8,44,1,44,3,44,1768,8,44,1,44,1,44,5,44,1772,8,44,10,44,12, - 44,1775,9,44,1,44,1,44,3,44,1779,8,44,1,44,3,44,1782,8,44,1,44,1, - 44,5,44,1786,8,44,10,44,12,44,1789,9,44,1,44,3,44,1792,8,44,1,44, - 1,44,1,44,3,44,1797,8,44,1,44,1,44,5,44,1801,8,44,10,44,12,44,1804, - 9,44,1,44,3,44,1807,8,44,1,44,1,44,3,44,1811,8,44,1,44,3,44,1814, - 8,44,1,44,3,44,1817,8,44,1,44,1,44,5,44,1821,8,44,10,44,12,44,1824, - 9,44,1,44,3,44,1827,8,44,1,44,1,44,1,44,3,44,1832,8,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1843,8,44,1,45,3,45,1846, - 8,45,1,45,1,45,1,45,1,45,1,45,3,45,1853,8,45,1,45,3,45,1856,8,45, - 1,46,1,46,3,46,1860,8,46,1,47,1,47,5,47,1864,8,47,10,47,12,47,1867, - 9,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1878,8,48, - 1,48,3,48,1881,8,48,1,48,1,48,1,48,3,48,1886,8,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1899,8,48,1,48,1,48, - 1,48,1,48,1,48,3,48,1906,8,48,1,48,1,48,1,48,1,48,3,48,1912,8,48, - 1,49,1,49,1,49,3,49,1917,8,49,1,49,1,49,3,49,1921,8,49,1,49,3,49, - 1924,8,49,1,50,1,50,1,50,1,50,1,50,1,50,3,50,1932,8,50,1,50,1,50, - 1,50,1,50,1,50,1,50,3,50,1940,8,50,3,50,1942,8,50,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,3,51,1952,8,51,1,52,1,52,3,52,1956,8,52, - 1,52,3,52,1959,8,52,1,52,1,52,3,52,1963,8,52,1,52,1,52,1,52,3,52, - 1968,8,52,1,52,1,52,1,52,3,52,1973,8,52,1,52,1,52,1,52,3,52,1978, - 8,52,1,52,1,52,3,52,1982,8,52,1,52,1,52,3,52,1986,8,52,1,52,1,52, - 3,52,1990,8,52,1,52,1,52,3,52,1994,8,52,1,52,1,52,3,52,1998,8,52, - 1,52,1,52,3,52,2002,8,52,1,52,1,52,1,52,3,52,2007,8,52,1,52,1,52, - 1,52,3,52,2012,8,52,1,52,1,52,1,52,3,52,2017,8,52,1,52,1,52,1,52, - 1,52,3,52,2023,8,52,1,52,1,52,1,52,3,52,2028,8,52,1,52,1,52,1,52, - 3,52,2033,8,52,1,52,1,52,1,52,3,52,2038,8,52,1,52,1,52,1,52,3,52, - 2043,8,52,1,52,1,52,1,52,3,52,2048,8,52,1,52,1,52,1,52,1,52,3,52, - 2054,8,52,1,52,1,52,1,52,3,52,2059,8,52,1,52,1,52,1,52,3,52,2064, - 8,52,1,52,1,52,1,52,3,52,2069,8,52,1,52,1,52,1,52,3,52,2074,8,52, - 1,52,1,52,1,52,3,52,2079,8,52,1,52,1,52,1,52,3,52,2084,8,52,1,52, - 1,52,1,52,3,52,2089,8,52,1,52,1,52,1,52,1,52,1,52,3,52,2096,8,52, - 1,52,1,52,1,52,3,52,2101,8,52,1,52,1,52,1,52,3,52,2106,8,52,1,52, - 1,52,1,52,3,52,2111,8,52,1,52,1,52,3,52,2115,8,52,1,52,1,52,1,52, - 3,52,2120,8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2128,8,52,1,52, - 1,52,1,52,3,52,2133,8,52,1,52,1,52,1,52,1,52,3,52,2139,8,52,1,53, - 1,53,1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,3,55,2151,8,55,1,55, - 1,55,1,55,1,55,1,55,3,55,2158,8,55,3,55,2160,8,55,1,55,1,55,1,55, - 1,55,5,55,2166,8,55,10,55,12,55,2169,9,55,1,55,1,55,3,55,2173,8, - 55,1,56,3,56,2176,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2184,8, - 56,1,56,1,56,1,56,1,56,3,56,2190,8,56,1,56,1,56,3,56,2194,8,56,1, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2207,8, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2219,8, - 56,3,56,2221,8,56,1,57,3,57,2224,8,57,1,57,1,57,1,57,1,57,1,57,1, - 57,3,57,2232,8,57,1,57,1,57,1,57,1,57,3,57,2238,8,57,1,57,1,57,1, - 57,1,57,3,57,2244,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, - 58,5,58,2255,8,58,10,58,12,58,2258,9,58,1,58,1,58,5,58,2262,8,58, - 10,58,12,58,2265,9,58,1,58,1,58,1,58,1,58,5,58,2271,8,58,10,58,12, - 58,2274,9,58,1,58,1,58,3,58,2278,8,58,1,58,1,58,1,58,1,58,1,58,1, - 58,1,58,5,58,2287,8,58,10,58,12,58,2290,9,58,1,58,1,58,1,58,1,58, - 5,58,2296,8,58,10,58,12,58,2299,9,58,1,58,1,58,3,58,2303,8,58,1, - 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2313,8,58,10,58,12,58, - 2316,9,58,1,58,1,58,5,58,2320,8,58,10,58,12,58,2323,9,58,1,58,1, - 58,1,58,1,58,5,58,2329,8,58,10,58,12,58,2332,9,58,1,58,1,58,3,58, - 2336,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2346,8,58, - 10,58,12,58,2349,9,58,1,58,1,58,5,58,2353,8,58,10,58,12,58,2356, - 9,58,1,58,1,58,1,58,1,58,5,58,2362,8,58,10,58,12,58,2365,9,58,1, - 58,1,58,3,58,2369,8,58,1,58,1,58,1,58,5,58,2374,8,58,10,58,12,58, - 2377,9,58,1,58,1,58,1,58,1,58,5,58,2383,8,58,10,58,12,58,2386,9, - 58,1,58,1,58,3,58,2390,8,58,3,58,2392,8,58,1,59,1,59,1,59,3,59,2397, - 8,59,1,60,1,60,1,60,1,60,4,60,2403,8,60,11,60,12,60,2404,1,60,1, - 60,1,61,1,61,1,61,5,61,2412,8,61,10,61,12,61,2415,9,61,1,62,3,62, - 2418,8,62,1,62,3,62,2421,8,62,1,62,1,62,3,62,2425,8,62,1,62,1,62, - 1,62,3,62,2430,8,62,1,62,1,62,1,62,1,62,3,62,2436,8,62,1,62,1,62, - 1,62,1,62,3,62,2442,8,62,1,62,1,62,1,62,3,62,2447,8,62,1,62,1,62, - 1,62,3,62,2452,8,62,1,62,1,62,1,62,3,62,2457,8,62,1,62,1,62,1,62, - 3,62,2462,8,62,1,62,3,62,2465,8,62,1,63,1,63,1,63,3,63,2470,8,63, - 1,63,4,63,2473,8,63,11,63,12,63,2474,1,63,1,63,1,63,1,63,1,63,1, - 63,1,63,1,63,3,63,2485,8,63,1,64,1,64,3,64,2489,8,64,1,64,1,64,1, - 64,1,64,1,64,3,64,2496,8,64,1,64,1,64,1,64,3,64,2501,8,64,1,64,3, - 64,2504,8,64,1,64,1,64,1,64,3,64,2509,8,64,1,64,3,64,2512,8,64,1, - 64,1,64,3,64,2516,8,64,1,64,1,64,3,64,2520,8,64,1,65,1,65,1,65,1, - 65,5,65,2526,8,65,10,65,12,65,2529,9,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,67,1,67,1,67,1,67,3,67,2547, - 8,67,1,67,3,67,2550,8,67,1,67,3,67,2553,8,67,1,67,1,67,3,67,2557, - 8,67,1,67,1,67,1,68,1,68,1,68,1,68,5,68,2565,8,68,10,68,12,68,2568, - 9,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69,2578,8,69,10,69, - 12,69,2581,9,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2591, - 8,70,10,70,12,70,2594,9,70,3,70,2596,8,70,1,70,1,70,5,70,2600,8, - 70,10,70,12,70,2603,9,70,3,70,2605,8,70,1,71,1,71,3,71,2609,8,71, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2618,8,71,1,71,3,71,2621, - 8,71,1,71,3,71,2624,8,71,1,71,1,71,1,71,3,71,2629,8,71,1,71,1,71, - 3,71,2633,8,71,1,71,3,71,2636,8,71,1,71,1,71,3,71,2640,8,71,1,71, - 1,71,3,71,2644,8,71,1,71,3,71,2647,8,71,1,71,1,71,3,71,2651,8,71, - 1,71,3,71,2654,8,71,1,71,1,71,3,71,2658,8,71,1,71,3,71,2661,8,71, - 1,72,1,72,1,72,1,72,3,72,2667,8,72,1,72,3,72,2670,8,72,1,72,1,72, - 1,72,3,72,2675,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2683,8,72, - 1,72,1,72,1,72,1,72,3,72,2689,8,72,1,72,1,72,3,72,2693,8,72,1,73, - 1,73,3,73,2697,8,73,1,73,5,73,2700,8,73,10,73,12,73,2703,9,73,1, - 73,1,73,3,73,2707,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2714,8,73,1, - 73,1,73,3,73,2718,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2727, - 8,73,10,73,12,73,2730,9,73,1,73,1,73,1,73,1,73,1,73,3,73,2737,8, - 73,1,73,3,73,2740,8,73,1,73,1,73,5,73,2744,8,73,10,73,12,73,2747, - 9,73,1,73,1,73,1,73,3,73,2752,8,73,1,73,3,73,2755,8,73,1,73,1,73, - 5,73,2759,8,73,10,73,12,73,2762,9,73,1,73,1,73,1,73,3,73,2767,8, - 73,3,73,2769,8,73,1,73,1,73,1,73,3,73,2774,8,73,1,73,1,73,5,73,2778, - 8,73,10,73,12,73,2781,9,73,1,73,1,73,1,73,3,73,2786,8,73,3,73,2788, - 8,73,1,73,1,73,3,73,2792,8,73,1,73,3,73,2795,8,73,1,73,3,73,2798, - 8,73,1,73,1,73,5,73,2802,8,73,10,73,12,73,2805,9,73,1,73,1,73,1, - 73,3,73,2810,8,73,3,73,2812,8,73,1,73,1,73,1,73,3,73,2817,8,73,1, - 73,1,73,1,73,1,73,1,73,3,73,2824,8,73,1,73,1,73,1,73,1,73,1,73,1, - 73,1,73,3,73,2833,8,73,1,73,3,73,2836,8,73,1,73,1,73,3,73,2840,8, - 73,1,73,1,73,1,73,3,73,2845,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1, - 73,1,73,3,73,2855,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2864, - 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2872,8,73,1,73,3,73,2875, - 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2883,8,73,1,73,3,73,2886, - 8,73,1,73,1,73,1,73,1,73,1,73,3,73,2893,8,73,1,73,1,73,1,73,3,73, - 2898,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2906,8,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73, - 2922,8,73,1,73,1,73,1,73,3,73,2927,8,73,1,73,1,73,1,73,1,73,1,73, - 3,73,2934,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2953,8,73,1,73,1,73,1,73, - 1,73,3,73,2959,8,73,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2967,8,74, - 10,74,12,74,2970,9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, - 74,3,74,2981,8,74,1,74,1,74,1,74,1,74,1,74,3,74,2988,8,74,1,74,1, - 74,1,74,1,74,1,74,3,74,2995,8,74,1,74,1,74,1,74,1,74,1,74,1,74,1, - 74,1,74,1,74,1,74,1,74,5,74,3008,8,74,10,74,12,74,3011,9,74,1,74, - 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,3023,8,74,1,74, - 1,74,1,74,1,74,3,74,3029,8,74,1,74,1,74,1,74,1,74,3,74,3035,8,74, - 1,74,1,74,1,74,1,74,3,74,3041,8,74,1,74,1,74,1,74,1,74,3,74,3047, - 8,74,1,74,1,74,1,74,1,74,3,74,3053,8,74,1,74,1,74,1,74,1,74,3,74, - 3059,8,74,1,75,1,75,1,75,3,75,3064,8,75,1,75,1,75,1,76,1,76,1,76, - 3,76,3071,8,76,1,76,1,76,1,77,1,77,1,77,3,77,3078,8,77,1,77,1,77, - 1,77,1,77,1,77,3,77,3085,8,77,1,77,1,77,1,77,3,77,3090,8,77,1,77, - 5,77,3093,8,77,10,77,12,77,3096,9,77,1,78,1,78,1,78,1,78,1,78,1, - 78,3,78,3104,8,78,1,78,1,78,1,79,1,79,1,79,3,79,3111,8,79,1,79,1, - 79,1,80,1,80,1,80,3,80,3118,8,80,1,80,1,80,1,81,1,81,1,81,3,81,3125, - 8,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,3,82,3134,8,82,1,82,1,82, - 1,83,1,83,3,83,3140,8,83,1,83,1,83,3,83,3144,8,83,1,83,1,83,3,83, - 3148,8,83,1,84,1,84,3,84,3152,8,84,1,84,1,84,1,84,1,84,3,84,3158, - 8,84,1,84,3,84,3161,8,84,1,85,1,85,1,85,3,85,3166,8,85,1,85,1,85, - 1,86,1,86,1,86,3,86,3173,8,86,1,86,1,86,1,86,5,86,3178,8,86,10,86, - 12,86,3181,9,86,1,86,3,86,3184,8,86,1,87,1,87,1,87,3,87,3189,8,87, - 1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,3,88,3199,8,88,1,88,1,88, - 1,88,1,88,5,88,3205,8,88,10,88,12,88,3208,9,88,1,88,1,88,1,88,3, - 88,3213,8,88,1,89,1,89,1,89,1,89,1,89,5,89,3220,8,89,10,89,12,89, - 3223,9,89,1,90,1,90,1,90,1,90,1,91,1,91,3,91,3231,8,91,1,91,1,91, - 1,92,1,92,1,92,1,92,1,92,3,92,3240,8,92,1,92,3,92,3243,8,92,1,93, - 1,93,3,93,3247,8,93,1,94,1,94,1,94,1,95,1,95,1,95,1,95,3,95,3256, - 8,95,1,96,1,96,3,96,3260,8,96,1,96,3,96,3263,8,96,1,96,3,96,3266, - 8,96,1,96,1,96,1,96,1,96,3,96,3272,8,96,1,96,3,96,3275,8,96,1,96, - 3,96,3278,8,96,1,96,1,96,3,96,3282,8,96,1,96,3,96,3285,8,96,1,96, - 3,96,3288,8,96,1,96,3,96,3291,8,96,1,96,1,96,1,96,1,96,1,96,1,96, - 1,96,5,96,3300,8,96,10,96,12,96,3303,9,96,3,96,3305,8,96,1,97,1, - 97,1,97,3,97,3310,8,97,1,98,1,98,1,98,1,98,3,98,3316,8,98,1,99,1, - 99,1,99,3,99,3321,8,99,1,99,4,99,3324,8,99,11,99,12,99,3325,1,100, - 3,100,3329,8,100,1,100,1,100,3,100,3333,8,100,1,101,1,101,1,101, - 3,101,3338,8,101,1,101,3,101,3341,8,101,1,101,1,101,1,101,3,101, - 3346,8,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101, - 3356,8,101,1,101,1,101,1,101,3,101,3361,8,101,1,101,1,101,4,101, - 3365,8,101,11,101,12,101,3366,3,101,3369,8,101,1,101,1,101,4,101, - 3373,8,101,11,101,12,101,3374,3,101,3377,8,101,1,101,1,101,1,101, - 1,101,3,101,3383,8,101,1,101,1,101,1,101,1,101,5,101,3389,8,101, - 10,101,12,101,3392,9,101,1,101,1,101,3,101,3396,8,101,1,101,1,101, - 1,101,1,101,5,101,3402,8,101,10,101,12,101,3405,9,101,3,101,3407, - 8,101,1,102,1,102,1,102,3,102,3412,8,102,1,102,3,102,3415,8,102, - 1,102,1,102,1,102,3,102,3420,8,102,1,102,1,102,1,102,1,102,1,102, - 1,102,3,102,3428,8,102,1,102,1,102,1,102,1,102,3,102,3434,8,102, - 1,102,1,102,3,102,3438,8,102,3,102,3440,8,102,1,102,1,102,1,102, - 1,102,3,102,3446,8,102,1,102,1,102,1,102,1,102,5,102,3452,8,102, - 10,102,12,102,3455,9,102,1,102,1,102,3,102,3459,8,102,1,102,1,102, - 1,102,1,102,5,102,3465,8,102,10,102,12,102,3468,9,102,3,102,3470, - 8,102,1,103,1,103,1,103,3,103,3475,8,103,1,103,3,103,3478,8,103, - 1,103,1,103,3,103,3482,8,103,1,103,3,103,3485,8,103,1,103,3,103, - 3488,8,103,1,104,1,104,3,104,3492,8,104,1,104,3,104,3495,8,104,1, - 104,1,104,1,104,1,104,1,104,1,104,3,104,3503,8,104,1,104,1,104,1, - 104,1,104,3,104,3509,8,104,1,104,1,104,3,104,3513,8,104,1,105,1, - 105,5,105,3517,8,105,10,105,12,105,3520,9,105,1,105,1,105,3,105, - 3524,8,105,1,105,1,105,3,105,3528,8,105,3,105,3530,8,105,1,105,1, - 105,5,105,3534,8,105,10,105,12,105,3537,9,105,1,105,3,105,3540,8, - 105,1,105,3,105,3543,8,105,1,105,3,105,3546,8,105,1,105,3,105,3549, - 8,105,1,105,1,105,5,105,3553,8,105,10,105,12,105,3556,9,105,1,105, - 1,105,3,105,3560,8,105,1,105,3,105,3563,8,105,1,105,3,105,3566,8, - 105,1,105,3,105,3569,8,105,1,105,3,105,3572,8,105,3,105,3574,8,105, - 1,106,3,106,3577,8,106,1,106,1,106,3,106,3581,8,106,1,106,3,106, - 3584,8,106,1,106,3,106,3587,8,106,1,107,1,107,1,107,1,107,1,107, - 1,107,3,107,3595,8,107,1,107,1,107,1,107,1,107,3,107,3601,8,107, - 1,107,5,107,3604,8,107,10,107,12,107,3607,9,107,1,108,1,108,1,108, - 1,108,1,108,1,108,3,108,3615,8,108,1,108,5,108,3618,8,108,10,108, - 12,108,3621,9,108,1,109,1,109,1,109,1,109,3,109,3627,8,109,1,109, - 3,109,3630,8,109,1,109,3,109,3633,8,109,1,109,1,109,3,109,3637,8, - 109,1,110,1,110,3,110,3641,8,110,1,111,1,111,1,111,1,111,3,111,3647, - 8,111,1,111,1,111,3,111,3651,8,111,1,112,1,112,1,112,5,112,3656, - 8,112,10,112,12,112,3659,9,112,1,112,3,112,3662,8,112,1,112,3,112, - 3665,8,112,1,112,3,112,3668,8,112,1,113,1,113,1,113,3,113,3673,8, - 113,1,114,1,114,1,114,1,114,1,114,3,114,3680,8,114,1,115,1,115,1, - 115,1,115,1,115,1,115,5,115,3688,8,115,10,115,12,115,3691,9,115, - 1,116,1,116,1,116,1,116,5,116,3697,8,116,10,116,12,116,3700,9,116, - 1,117,1,117,1,117,1,117,1,118,1,118,3,118,3708,8,118,1,119,1,119, - 1,119,1,119,1,119,1,119,5,119,3716,8,119,10,119,12,119,3719,9,119, - 3,119,3721,8,119,1,119,1,119,3,119,3725,8,119,1,119,1,119,1,119, - 1,119,3,119,3731,8,119,1,120,1,120,3,120,3735,8,120,1,120,3,120, - 3738,8,120,1,120,3,120,3741,8,120,1,120,1,120,1,120,3,120,3746,8, - 120,1,120,3,120,3749,8,120,1,120,1,120,1,120,1,120,1,120,3,120,3756, - 8,120,1,120,1,120,3,120,3760,8,120,1,120,3,120,3763,8,120,1,120, - 1,120,3,120,3767,8,120,1,121,1,121,3,121,3771,8,121,1,121,3,121, - 3774,8,121,1,121,3,121,3777,8,121,1,121,1,121,1,121,3,121,3782,8, - 121,1,121,1,121,1,121,1,121,3,121,3788,8,121,5,121,3790,8,121,10, - 121,12,121,3793,9,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 3,121,3802,8,121,1,121,1,121,1,121,1,121,3,121,3808,8,121,5,121, - 3810,8,121,10,121,12,121,3813,9,121,1,121,1,121,1,121,3,121,3818, - 8,121,1,121,1,121,3,121,3822,8,121,1,122,1,122,1,122,1,122,3,122, - 3828,8,122,1,122,3,122,3831,8,122,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,3,123,3843,8,123,1,123,1,123,3,123, - 3847,8,123,1,123,1,123,3,123,3851,8,123,1,124,1,124,1,124,1,124, - 1,124,1,124,3,124,3859,8,124,1,124,1,124,3,124,3863,8,124,1,125, - 1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,126,5,126,3875, - 8,126,10,126,12,126,3878,9,126,1,127,1,127,3,127,3882,8,127,1,127, - 3,127,3885,8,127,1,127,1,127,3,127,3889,8,127,1,127,3,127,3892,8, - 127,1,127,1,127,1,127,1,127,5,127,3898,8,127,10,127,12,127,3901, - 9,127,1,127,1,127,3,127,3905,8,127,1,127,3,127,3908,8,127,1,127, - 3,127,3911,8,127,1,128,1,128,3,128,3915,8,128,1,128,3,128,3918,8, - 128,1,128,1,128,1,128,1,128,1,128,5,128,3925,8,128,10,128,12,128, - 3928,9,128,1,128,1,128,3,128,3932,8,128,1,129,1,129,1,129,1,129, - 1,129,5,129,3939,8,129,10,129,12,129,3942,9,129,1,130,1,130,3,130, - 3946,8,130,1,131,1,131,1,131,5,131,3951,8,131,10,131,12,131,3954, - 9,131,1,132,1,132,5,132,3958,8,132,10,132,12,132,3961,9,132,1,132, - 1,132,1,132,5,132,3966,8,132,10,132,12,132,3969,9,132,1,132,1,132, - 1,132,3,132,3974,8,132,1,133,1,133,1,133,1,133,1,133,1,133,3,133, - 3982,8,133,1,133,3,133,3985,8,133,1,133,3,133,3988,8,133,1,133,1, - 133,1,133,5,133,3993,8,133,10,133,12,133,3996,9,133,3,133,3998,8, - 133,1,133,3,133,4001,8,133,1,133,1,133,3,133,4005,8,133,1,133,1, - 133,3,133,4009,8,133,1,133,1,133,1,133,1,133,3,133,4015,8,133,1, - 134,1,134,1,134,1,134,1,134,3,134,4022,8,134,1,135,1,135,1,135,1, - 135,1,136,1,136,1,136,1,136,3,136,4032,8,136,1,136,1,136,3,136,4036, - 8,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,3,137,4045,8,137, - 1,138,3,138,4048,8,138,1,138,1,138,3,138,4052,8,138,1,138,1,138, - 5,138,4056,8,138,10,138,12,138,4059,9,138,1,138,1,138,1,138,5,138, - 4064,8,138,10,138,12,138,4067,9,138,1,138,1,138,3,138,4071,8,138, - 1,138,1,138,3,138,4075,8,138,1,138,1,138,5,138,4079,8,138,10,138, - 12,138,4082,9,138,1,138,1,138,1,138,3,138,4087,8,138,1,138,3,138, - 4090,8,138,3,138,4092,8,138,1,138,1,138,3,138,4096,8,138,1,139,1, - 139,1,139,1,139,1,139,1,139,1,139,3,139,4105,8,139,1,140,1,140,1, - 140,1,140,1,140,1,140,1,140,1,140,3,140,4115,8,140,1,141,1,141,5, - 141,4119,8,141,10,141,12,141,4122,9,141,1,141,1,141,3,141,4126,8, - 141,1,141,1,141,3,141,4130,8,141,1,141,3,141,4133,8,141,1,141,3, - 141,4136,8,141,1,141,3,141,4139,8,141,1,141,3,141,4142,8,141,1,141, - 3,141,4145,8,141,1,141,3,141,4148,8,141,1,142,1,142,3,142,4152,8, - 142,1,142,1,142,3,142,4156,8,142,1,143,1,143,1,143,1,143,1,143,1, - 143,3,143,4164,8,143,1,143,1,143,3,143,4168,8,143,1,143,3,143,4171, - 8,143,3,143,4173,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,1,144,3,144,4186,8,144,1,144,3,144,4189,8,144, - 1,145,1,145,1,145,5,145,4194,8,145,10,145,12,145,4197,9,145,1,146, - 1,146,1,146,1,146,1,146,1,146,1,146,3,146,4206,8,146,1,146,3,146, - 4209,8,146,1,146,1,146,1,146,3,146,4214,8,146,3,146,4216,8,146,1, - 146,1,146,3,146,4220,8,146,1,146,1,146,1,146,1,146,1,146,1,146,3, - 146,4228,8,146,1,147,1,147,1,147,1,147,3,147,4234,8,147,1,147,1, - 147,1,147,1,148,1,148,1,148,1,148,3,148,4243,8,148,1,148,1,148,1, - 148,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,3,149,4256,8, - 149,1,150,1,150,3,150,4260,8,150,1,150,1,150,5,150,4264,8,150,10, - 150,12,150,4267,9,150,1,151,1,151,1,151,3,151,4272,8,151,1,151,3, - 151,4275,8,151,1,151,1,151,3,151,4279,8,151,1,151,3,151,4282,8,151, - 3,151,4284,8,151,1,152,1,152,1,152,1,152,1,153,1,153,1,154,1,154, - 1,155,1,155,3,155,4296,8,155,1,155,1,155,3,155,4300,8,155,1,156, - 1,156,1,156,1,156,5,156,4306,8,156,10,156,12,156,4309,9,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,4320,8,156, - 1,156,1,156,4,156,4324,8,156,11,156,12,156,4325,3,156,4328,8,156, - 1,156,1,156,4,156,4332,8,156,11,156,12,156,4333,3,156,4336,8,156, - 3,156,4338,8,156,1,157,1,157,1,157,1,157,3,157,4344,8,157,1,157, - 1,157,1,157,1,157,1,157,1,157,3,157,4352,8,157,1,158,1,158,1,158, - 1,158,1,158,1,158,3,158,4360,8,158,1,159,1,159,3,159,4364,8,159, - 1,159,1,159,3,159,4368,8,159,1,160,1,160,1,160,1,160,1,160,5,160, - 4375,8,160,10,160,12,160,4378,9,160,1,160,1,160,3,160,4382,8,160, - 1,161,1,161,1,161,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162, - 1,162,1,162,1,162,1,162,1,162,5,162,4400,8,162,10,162,12,162,4403, - 9,162,1,163,1,163,3,163,4407,8,163,1,164,1,164,1,164,1,164,3,164, - 4413,8,164,1,164,1,164,1,164,1,164,1,164,3,164,4420,8,164,1,165, - 1,165,1,165,3,165,4425,8,165,1,166,1,166,1,166,1,166,1,166,5,166, - 4432,8,166,10,166,12,166,4435,9,166,3,166,4437,8,166,1,167,1,167, - 3,167,4441,8,167,1,168,1,168,3,168,4445,8,168,1,168,1,168,3,168, - 4449,8,168,1,168,3,168,4452,8,168,1,168,3,168,4455,8,168,1,168,3, - 168,4458,8,168,1,169,1,169,3,169,4462,8,169,1,169,1,169,3,169,4466, - 8,169,1,169,3,169,4469,8,169,1,169,3,169,4472,8,169,1,169,3,169, - 4475,8,169,1,170,1,170,1,170,1,171,1,171,3,171,4482,8,171,1,171, - 1,171,3,171,4486,8,171,1,171,1,171,1,172,1,172,1,172,1,172,1,173, - 1,173,1,173,1,173,1,173,5,173,4499,8,173,10,173,12,173,4502,9,173, - 1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,175,1,176,1,176,3,176, - 4514,8,176,1,176,1,176,1,176,1,176,5,176,4520,8,176,10,176,12,176, - 4523,9,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,4532, - 8,177,1,178,1,178,3,178,4536,8,178,1,178,3,178,4539,8,178,1,178, - 1,178,1,179,1,179,3,179,4545,8,179,1,179,3,179,4548,8,179,1,179, - 3,179,4551,8,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180, - 4560,8,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,4569, - 8,181,1,182,1,182,1,182,1,182,1,182,1,182,5,182,4577,8,182,10,182, - 12,182,4580,9,182,1,182,3,182,4583,8,182,1,183,1,183,1,183,1,183, - 1,183,1,183,5,183,4591,8,183,10,183,12,183,4594,9,183,1,183,3,183, - 4597,8,183,1,184,1,184,1,184,1,184,1,184,1,184,1,184,5,184,4606, - 8,184,10,184,12,184,4609,9,184,1,184,3,184,4612,8,184,1,185,1,185, - 1,185,1,185,1,185,1,185,1,185,3,185,4621,8,185,1,186,1,186,1,186, - 1,186,1,186,5,186,4628,8,186,10,186,12,186,4631,9,186,3,186,4633, - 8,186,1,186,1,186,3,186,4637,8,186,1,186,5,186,4640,8,186,10,186, - 12,186,4643,9,186,1,186,3,186,4646,8,186,1,187,1,187,1,187,1,187, - 1,187,5,187,4653,8,187,10,187,12,187,4656,9,187,3,187,4658,8,187, - 1,187,3,187,4661,8,187,1,188,1,188,1,188,1,188,1,188,3,188,4668, - 8,188,1,188,1,188,1,188,1,188,3,188,4674,8,188,1,188,1,188,1,188, - 1,188,3,188,4680,8,188,1,189,1,189,1,189,1,190,1,190,1,190,1,190, + 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,1,10,1,10,1,10,1,10,3,10,1021,8,10,1,11,1,11,1,11,1,11,1,11, + 1,11,1,11,1,11,3,11,1031,8,11,1,12,1,12,1,12,3,12,1036,8,12,1,12, + 1,12,5,12,1040,8,12,10,12,12,12,1043,9,12,1,13,1,13,3,13,1047,8, + 13,1,13,1,13,3,13,1051,8,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,3, + 13,1060,8,13,1,13,3,13,1063,8,13,1,13,3,13,1066,8,13,1,13,1,13,3, + 13,1070,8,13,1,13,1,13,1,13,1,14,1,14,3,14,1077,8,14,1,14,3,14,1080, + 8,14,1,14,1,14,1,14,3,14,1085,8,14,1,14,1,14,1,14,1,14,5,14,1091, + 8,14,10,14,12,14,1094,9,14,1,14,1,14,3,14,1098,8,14,1,14,1,14,1, + 14,3,14,1103,8,14,1,14,5,14,1106,8,14,10,14,12,14,1109,9,14,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,3,15,1120,8,15,1,15,3,15, + 1123,8,15,1,15,1,15,3,15,1127,8,15,1,15,3,15,1130,8,15,1,15,1,15, + 3,15,1134,8,15,1,15,3,15,1137,8,15,1,15,1,15,3,15,1141,8,15,1,15, + 3,15,1144,8,15,1,15,3,15,1147,8,15,1,15,1,15,3,15,1151,8,15,1,15, + 3,15,1154,8,15,1,15,1,15,3,15,1158,8,15,1,15,1,15,1,16,1,16,3,16, + 1164,8,16,1,16,1,16,3,16,1168,8,16,1,16,1,16,1,16,3,16,1173,8,16, + 1,16,1,16,5,16,1177,8,16,10,16,12,16,1180,9,16,1,16,1,16,5,16,1184, + 8,16,10,16,12,16,1187,9,16,1,16,1,16,1,17,1,17,3,17,1193,8,17,1, + 17,3,17,1196,8,17,1,17,1,17,3,17,1200,8,17,1,17,1,17,1,17,3,17,1205, + 8,17,1,17,1,17,5,17,1209,8,17,10,17,12,17,1212,9,17,1,17,1,17,1, + 17,1,17,5,17,1218,8,17,10,17,12,17,1221,9,17,1,17,1,17,3,17,1225, + 8,17,1,18,1,18,3,18,1229,8,18,1,18,1,18,3,18,1233,8,18,1,18,1,18, + 1,18,1,18,1,18,1,18,1,19,1,19,1,19,3,19,1244,8,19,1,19,1,19,1,20, + 1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,5,20,1260, + 8,20,10,20,12,20,1263,9,20,1,20,1,20,1,21,1,21,3,21,1269,8,21,1, + 21,1,21,3,21,1273,8,21,1,21,1,21,3,21,1277,8,21,1,21,1,21,3,21,1281, + 8,21,1,21,5,21,1284,8,21,10,21,12,21,1287,9,21,3,21,1289,8,21,1, + 21,3,21,1292,8,21,1,21,3,21,1295,8,21,1,21,3,21,1298,8,21,1,21,1, + 21,1,21,1,21,3,21,1304,8,21,1,21,1,21,3,21,1308,8,21,1,21,1,21,1, + 21,1,21,1,21,1,21,1,21,1,21,3,21,1318,8,21,1,21,1,21,3,21,1322,8, + 21,1,21,1,21,3,21,1326,8,21,1,21,1,21,1,21,1,21,3,21,1332,8,21,1, + 21,5,21,1335,8,21,10,21,12,21,1338,9,21,3,21,1340,8,21,1,21,3,21, + 1343,8,21,3,21,1345,8,21,1,22,1,22,3,22,1349,8,22,1,22,1,22,1,22, + 1,22,1,22,3,22,1356,8,22,1,22,1,22,3,22,1360,8,22,1,22,3,22,1363, + 8,22,1,22,1,22,1,22,3,22,1368,8,22,1,22,1,22,3,22,1372,8,22,1,22, + 3,22,1375,8,22,1,22,1,22,3,22,1379,8,22,1,22,3,22,1382,8,22,1,23, + 1,23,3,23,1386,8,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23, + 1,23,1,23,3,23,1399,8,23,1,23,3,23,1402,8,23,1,23,1,23,3,23,1406, + 8,23,1,23,3,23,1409,8,23,1,23,1,23,3,23,1413,8,23,1,23,3,23,1416, + 8,23,1,23,1,23,3,23,1420,8,23,1,23,3,23,1423,8,23,1,23,1,23,3,23, + 1427,8,23,1,23,3,23,1430,8,23,1,23,3,23,1433,8,23,1,23,1,23,3,23, + 1437,8,23,1,23,3,23,1440,8,23,1,23,1,23,3,23,1444,8,23,1,23,1,23, + 1,24,1,24,3,24,1450,8,24,1,24,3,24,1453,8,24,1,24,1,24,3,24,1457, + 8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,1469, + 8,24,1,24,1,24,1,25,1,25,3,25,1475,8,25,1,25,1,25,1,26,1,26,1,26, + 1,26,1,26,5,26,1484,8,26,10,26,12,26,1487,9,26,1,26,1,26,3,26,1491, + 8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1499,8,26,1,27,1,27,3,27, + 1503,8,27,1,27,1,27,1,27,3,27,1508,8,27,1,27,3,27,1511,8,27,1,27, + 1,27,1,27,3,27,1516,8,27,1,27,1,27,1,27,1,27,1,27,1,27,5,27,1524, + 8,27,10,27,12,27,1527,9,27,1,27,1,27,3,27,1531,8,27,1,27,1,27,1, + 27,3,27,1536,8,27,1,27,1,27,1,27,1,27,3,27,1542,8,27,1,27,1,27,1, + 27,3,27,1547,8,27,1,27,1,27,3,27,1551,8,27,3,27,1553,8,27,1,28,3, + 28,1556,8,28,1,28,1,28,3,28,1560,8,28,1,28,1,28,3,28,1564,8,28,1, + 28,3,28,1567,8,28,1,28,1,28,3,28,1571,8,28,1,28,1,28,3,28,1575,8, + 28,1,28,1,28,3,28,1579,8,28,1,28,1,28,1,28,1,28,3,28,1585,8,28,1, + 28,3,28,1588,8,28,1,29,1,29,1,29,1,29,1,29,3,29,1595,8,29,1,30,1, + 30,1,30,3,30,1600,8,30,1,31,1,31,1,31,1,31,3,31,1606,8,31,1,32,1, + 32,1,32,5,32,1611,8,32,10,32,12,32,1614,9,32,1,32,1,32,1,32,3,32, + 1619,8,32,1,32,1,32,1,32,1,32,5,32,1625,8,32,10,32,12,32,1628,9, + 32,3,32,1630,8,32,1,32,1,32,1,32,5,32,1635,8,32,10,32,12,32,1638, + 9,32,3,32,1640,8,32,3,32,1642,8,32,1,33,1,33,1,33,1,33,3,33,1648, + 8,33,1,34,1,34,1,34,1,34,3,34,1654,8,34,1,34,1,34,1,35,1,35,1,35, + 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1671,8,35, + 1,36,1,36,1,36,1,36,1,36,3,36,1678,8,36,1,37,1,37,1,37,1,38,1,38, + 3,38,1685,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, + 3,38,1697,8,38,1,38,1,38,1,38,3,38,1702,8,38,1,38,3,38,1705,8,38, + 1,39,3,39,1708,8,39,1,39,1,39,1,39,1,40,1,40,1,40,1,41,1,41,1,41, + 1,41,1,41,3,41,1721,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, + 1,41,1,41,1,41,3,41,1734,8,41,1,41,1,41,1,41,3,41,1739,8,41,1,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, + 3,42,1755,8,42,1,43,1,43,1,43,1,43,5,43,1761,8,43,10,43,12,43,1764, + 9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44,1773,8,44,1,44,3,44, + 1776,8,44,1,44,1,44,5,44,1780,8,44,10,44,12,44,1783,9,44,1,44,1, + 44,3,44,1787,8,44,1,44,3,44,1790,8,44,1,44,1,44,5,44,1794,8,44,10, + 44,12,44,1797,9,44,1,44,3,44,1800,8,44,1,44,1,44,1,44,3,44,1805, + 8,44,1,44,1,44,5,44,1809,8,44,10,44,12,44,1812,9,44,1,44,3,44,1815, + 8,44,1,44,1,44,3,44,1819,8,44,1,44,3,44,1822,8,44,1,44,3,44,1825, + 8,44,1,44,1,44,5,44,1829,8,44,10,44,12,44,1832,9,44,1,44,3,44,1835, + 8,44,1,44,1,44,1,44,3,44,1840,8,44,1,44,1,44,1,44,1,44,1,44,1,44, + 1,44,1,44,1,44,3,44,1851,8,44,1,45,3,45,1854,8,45,1,45,1,45,1,45, + 1,45,1,45,3,45,1861,8,45,1,45,3,45,1864,8,45,1,46,1,46,3,46,1868, + 8,46,1,47,1,47,5,47,1872,8,47,10,47,12,47,1875,9,47,1,48,1,48,1, + 48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1886,8,48,1,48,3,48,1889,8, + 48,1,48,1,48,1,48,3,48,1894,8,48,1,48,1,48,1,48,1,48,1,48,1,48,1, + 48,1,48,1,48,1,48,1,48,3,48,1907,8,48,1,48,1,48,1,48,1,48,1,48,3, + 48,1914,8,48,1,48,1,48,1,48,1,48,3,48,1920,8,48,1,49,1,49,1,49,3, + 49,1925,8,49,1,49,1,49,3,49,1929,8,49,1,49,3,49,1932,8,49,1,50,1, + 50,1,50,1,50,1,50,1,50,3,50,1940,8,50,1,50,1,50,1,50,1,50,1,50,1, + 50,3,50,1948,8,50,3,50,1950,8,50,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,3,51,1960,8,51,1,52,1,52,3,52,1964,8,52,1,52,3,52,1967,8, + 52,1,52,1,52,3,52,1971,8,52,1,52,1,52,1,52,3,52,1976,8,52,1,52,1, + 52,1,52,3,52,1981,8,52,1,52,1,52,1,52,3,52,1986,8,52,1,52,1,52,3, + 52,1990,8,52,1,52,1,52,3,52,1994,8,52,1,52,1,52,3,52,1998,8,52,1, + 52,1,52,3,52,2002,8,52,1,52,1,52,3,52,2006,8,52,1,52,1,52,3,52,2010, + 8,52,1,52,1,52,1,52,3,52,2015,8,52,1,52,1,52,1,52,3,52,2020,8,52, + 1,52,1,52,1,52,3,52,2025,8,52,1,52,1,52,1,52,1,52,3,52,2031,8,52, + 1,52,1,52,1,52,3,52,2036,8,52,1,52,1,52,1,52,3,52,2041,8,52,1,52, + 1,52,1,52,3,52,2046,8,52,1,52,1,52,1,52,3,52,2051,8,52,1,52,1,52, + 1,52,3,52,2056,8,52,1,52,1,52,1,52,1,52,3,52,2062,8,52,1,52,1,52, + 1,52,3,52,2067,8,52,1,52,1,52,1,52,3,52,2072,8,52,1,52,1,52,1,52, + 3,52,2077,8,52,1,52,1,52,1,52,3,52,2082,8,52,1,52,1,52,1,52,3,52, + 2087,8,52,1,52,1,52,1,52,3,52,2092,8,52,1,52,1,52,1,52,3,52,2097, + 8,52,1,52,1,52,1,52,1,52,1,52,3,52,2104,8,52,1,52,1,52,1,52,3,52, + 2109,8,52,1,52,1,52,1,52,3,52,2114,8,52,1,52,1,52,1,52,3,52,2119, + 8,52,1,52,1,52,3,52,2123,8,52,1,52,1,52,1,52,3,52,2128,8,52,1,52, + 1,52,1,52,1,52,1,52,1,52,3,52,2136,8,52,1,52,1,52,1,52,3,52,2141, + 8,52,1,52,1,52,1,52,1,52,3,52,2147,8,52,1,53,1,53,1,54,1,54,1,54, + 1,55,1,55,1,55,1,55,1,55,3,55,2159,8,55,1,55,1,55,1,55,1,55,1,55, + 3,55,2166,8,55,3,55,2168,8,55,1,55,1,55,1,55,1,55,5,55,2174,8,55, + 10,55,12,55,2177,9,55,1,55,1,55,3,55,2181,8,55,1,56,3,56,2184,8, + 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2192,8,56,1,56,1,56,1,56,1, + 56,3,56,2198,8,56,1,56,1,56,3,56,2202,8,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2215,8,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2227,8,56,3,56,2229,8,56,1, + 57,3,57,2232,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,2240,8,57,1, + 57,1,57,1,57,1,57,3,57,2246,8,57,1,57,1,57,1,57,1,57,3,57,2252,8, + 57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2263,8,58,10, + 58,12,58,2266,9,58,1,58,1,58,5,58,2270,8,58,10,58,12,58,2273,9,58, + 1,58,1,58,1,58,1,58,5,58,2279,8,58,10,58,12,58,2282,9,58,1,58,1, + 58,3,58,2286,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2295,8, + 58,10,58,12,58,2298,9,58,1,58,1,58,1,58,1,58,5,58,2304,8,58,10,58, + 12,58,2307,9,58,1,58,1,58,3,58,2311,8,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,5,58,2321,8,58,10,58,12,58,2324,9,58,1,58,1,58,5, + 58,2328,8,58,10,58,12,58,2331,9,58,1,58,1,58,1,58,1,58,5,58,2337, + 8,58,10,58,12,58,2340,9,58,1,58,1,58,3,58,2344,8,58,1,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,5,58,2354,8,58,10,58,12,58,2357,9,58, + 1,58,1,58,5,58,2361,8,58,10,58,12,58,2364,9,58,1,58,1,58,1,58,1, + 58,5,58,2370,8,58,10,58,12,58,2373,9,58,1,58,1,58,3,58,2377,8,58, + 1,58,1,58,1,58,5,58,2382,8,58,10,58,12,58,2385,9,58,1,58,1,58,1, + 58,1,58,5,58,2391,8,58,10,58,12,58,2394,9,58,1,58,1,58,3,58,2398, + 8,58,3,58,2400,8,58,1,59,1,59,1,59,3,59,2405,8,59,1,60,1,60,1,60, + 1,60,4,60,2411,8,60,11,60,12,60,2412,1,60,1,60,1,61,1,61,1,61,5, + 61,2420,8,61,10,61,12,61,2423,9,61,1,62,3,62,2426,8,62,1,62,3,62, + 2429,8,62,1,62,1,62,3,62,2433,8,62,1,62,1,62,1,62,3,62,2438,8,62, + 1,62,1,62,1,62,1,62,3,62,2444,8,62,1,62,1,62,1,62,1,62,3,62,2450, + 8,62,1,62,1,62,1,62,3,62,2455,8,62,1,62,1,62,1,62,3,62,2460,8,62, + 1,62,1,62,1,62,3,62,2465,8,62,1,62,1,62,1,62,3,62,2470,8,62,1,62, + 3,62,2473,8,62,1,63,1,63,1,63,3,63,2478,8,63,1,63,4,63,2481,8,63, + 11,63,12,63,2482,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2493, + 8,63,1,64,1,64,3,64,2497,8,64,1,64,1,64,1,64,1,64,1,64,3,64,2504, + 8,64,1,64,1,64,1,64,3,64,2509,8,64,1,64,3,64,2512,8,64,1,64,1,64, + 1,64,3,64,2517,8,64,1,64,3,64,2520,8,64,1,64,1,64,3,64,2524,8,64, + 1,64,1,64,3,64,2528,8,64,1,65,1,65,1,65,1,65,5,65,2534,8,65,10,65, + 12,65,2537,9,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,67,1,67,1,67,1,67,3,67,2555,8,67,1,67,3,67,2558,8,67, + 1,67,3,67,2561,8,67,1,67,1,67,3,67,2565,8,67,1,67,1,67,1,68,1,68, + 1,68,1,68,5,68,2573,8,68,10,68,12,68,2576,9,68,1,69,1,69,1,69,1, + 69,1,69,1,69,1,69,1,69,5,69,2586,8,69,10,69,12,69,2589,9,69,1,69, + 1,69,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2599,8,70,10,70,12,70,2602, + 9,70,3,70,2604,8,70,1,70,1,70,5,70,2608,8,70,10,70,12,70,2611,9, + 70,3,70,2613,8,70,1,71,1,71,3,71,2617,8,71,1,71,1,71,1,71,1,71,1, + 71,1,71,1,71,3,71,2626,8,71,1,71,3,71,2629,8,71,1,71,3,71,2632,8, + 71,1,71,1,71,1,71,3,71,2637,8,71,1,71,1,71,3,71,2641,8,71,1,71,3, + 71,2644,8,71,1,71,1,71,3,71,2648,8,71,1,71,1,71,3,71,2652,8,71,1, + 71,3,71,2655,8,71,1,71,1,71,3,71,2659,8,71,1,71,3,71,2662,8,71,1, + 71,1,71,3,71,2666,8,71,1,71,3,71,2669,8,71,1,72,1,72,1,72,1,72,3, + 72,2675,8,72,1,72,3,72,2678,8,72,1,72,1,72,1,72,3,72,2683,8,72,1, + 72,1,72,1,72,1,72,1,72,1,72,3,72,2691,8,72,1,72,1,72,1,72,1,72,3, + 72,2697,8,72,1,72,1,72,3,72,2701,8,72,1,73,1,73,3,73,2705,8,73,1, + 73,5,73,2708,8,73,10,73,12,73,2711,9,73,1,73,1,73,3,73,2715,8,73, + 1,73,1,73,1,73,1,73,1,73,3,73,2722,8,73,1,73,1,73,3,73,2726,8,73, + 1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2735,8,73,10,73,12,73,2738, + 9,73,1,73,1,73,1,73,1,73,1,73,3,73,2745,8,73,1,73,3,73,2748,8,73, + 1,73,1,73,5,73,2752,8,73,10,73,12,73,2755,9,73,1,73,1,73,1,73,3, + 73,2760,8,73,1,73,3,73,2763,8,73,1,73,1,73,5,73,2767,8,73,10,73, + 12,73,2770,9,73,1,73,1,73,1,73,3,73,2775,8,73,3,73,2777,8,73,1,73, + 1,73,1,73,3,73,2782,8,73,1,73,1,73,5,73,2786,8,73,10,73,12,73,2789, + 9,73,1,73,1,73,1,73,3,73,2794,8,73,3,73,2796,8,73,1,73,1,73,3,73, + 2800,8,73,1,73,3,73,2803,8,73,1,73,3,73,2806,8,73,1,73,1,73,5,73, + 2810,8,73,10,73,12,73,2813,9,73,1,73,1,73,1,73,3,73,2818,8,73,3, + 73,2820,8,73,1,73,1,73,1,73,3,73,2825,8,73,1,73,1,73,1,73,1,73,1, + 73,3,73,2832,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2841,8, + 73,1,73,3,73,2844,8,73,1,73,1,73,3,73,2848,8,73,1,73,1,73,1,73,3, + 73,2853,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2863,8, + 73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2872,8,73,1,73,1,73,1, + 73,1,73,1,73,1,73,3,73,2880,8,73,1,73,3,73,2883,8,73,1,73,1,73,1, + 73,1,73,1,73,1,73,3,73,2891,8,73,1,73,3,73,2894,8,73,1,73,1,73,1, + 73,1,73,1,73,3,73,2901,8,73,1,73,1,73,1,73,3,73,2906,8,73,1,73,1, + 73,1,73,1,73,1,73,1,73,3,73,2914,8,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2930,8,73,1,73,1, + 73,1,73,3,73,2935,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2942,8,73,1, + 73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,1,73,1,73,3,73,2961,8,73,1,73,1,73,1,73,1,73,3,73,2967,8, + 73,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2975,8,74,10,74,12,74,2978, + 9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,2989,8,74, + 1,74,1,74,1,74,1,74,1,74,3,74,2996,8,74,1,74,1,74,1,74,1,74,1,74, + 3,74,3003,8,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74, + 1,74,5,74,3016,8,74,10,74,12,74,3019,9,74,1,74,1,74,1,74,1,74,1, + 74,1,74,1,74,1,74,1,74,1,74,3,74,3031,8,74,1,74,1,74,1,74,1,74,3, + 74,3037,8,74,1,74,1,74,1,74,1,74,3,74,3043,8,74,1,74,1,74,1,74,1, + 74,3,74,3049,8,74,1,74,1,74,1,74,1,74,3,74,3055,8,74,1,74,1,74,1, + 74,1,74,3,74,3061,8,74,1,74,1,74,1,74,1,74,3,74,3067,8,74,1,75,1, + 75,1,75,3,75,3072,8,75,1,75,1,75,1,76,1,76,1,76,3,76,3079,8,76,1, + 76,1,76,1,77,1,77,1,77,3,77,3086,8,77,1,77,1,77,1,77,1,77,1,77,3, + 77,3093,8,77,1,77,1,77,1,77,3,77,3098,8,77,1,77,5,77,3101,8,77,10, + 77,12,77,3104,9,77,1,78,1,78,1,78,1,78,1,78,1,78,3,78,3112,8,78, + 1,78,1,78,1,79,1,79,1,79,3,79,3119,8,79,1,79,1,79,1,80,1,80,1,80, + 3,80,3126,8,80,1,80,1,80,1,81,1,81,1,81,3,81,3133,8,81,1,81,1,81, + 1,82,1,82,1,82,1,82,1,82,3,82,3142,8,82,1,82,1,82,1,83,1,83,3,83, + 3148,8,83,1,83,1,83,3,83,3152,8,83,1,83,1,83,3,83,3156,8,83,1,84, + 1,84,3,84,3160,8,84,1,84,1,84,1,84,1,84,3,84,3166,8,84,1,84,3,84, + 3169,8,84,1,85,1,85,1,85,3,85,3174,8,85,1,85,1,85,1,86,1,86,1,86, + 3,86,3181,8,86,1,86,1,86,1,86,5,86,3186,8,86,10,86,12,86,3189,9, + 86,1,86,3,86,3192,8,86,1,87,1,87,1,87,3,87,3197,8,87,1,87,1,87,1, + 88,1,88,1,88,1,88,1,88,1,88,3,88,3207,8,88,1,88,1,88,1,88,1,88,5, + 88,3213,8,88,10,88,12,88,3216,9,88,1,88,1,88,1,88,3,88,3221,8,88, + 1,89,1,89,1,89,1,89,1,89,5,89,3228,8,89,10,89,12,89,3231,9,89,1, + 90,1,90,1,90,1,90,1,91,1,91,3,91,3239,8,91,1,91,1,91,1,92,1,92,1, + 92,1,92,1,92,3,92,3248,8,92,1,92,3,92,3251,8,92,1,93,1,93,3,93,3255, + 8,93,1,94,1,94,1,94,1,95,1,95,1,95,1,95,3,95,3264,8,95,1,96,1,96, + 3,96,3268,8,96,1,96,3,96,3271,8,96,1,96,3,96,3274,8,96,1,96,1,96, + 1,96,1,96,3,96,3280,8,96,1,96,3,96,3283,8,96,1,96,3,96,3286,8,96, + 1,96,1,96,3,96,3290,8,96,1,96,3,96,3293,8,96,1,96,3,96,3296,8,96, + 1,96,3,96,3299,8,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,5,96,3308, + 8,96,10,96,12,96,3311,9,96,3,96,3313,8,96,1,97,1,97,1,97,3,97,3318, + 8,97,1,98,1,98,1,98,1,98,3,98,3324,8,98,1,99,1,99,1,99,3,99,3329, + 8,99,1,99,4,99,3332,8,99,11,99,12,99,3333,1,100,3,100,3337,8,100, + 1,100,1,100,3,100,3341,8,100,1,101,1,101,1,101,3,101,3346,8,101, + 1,101,3,101,3349,8,101,1,101,1,101,1,101,3,101,3354,8,101,1,101, + 1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101,3364,8,101,1,101, + 1,101,1,101,3,101,3369,8,101,1,101,1,101,4,101,3373,8,101,11,101, + 12,101,3374,3,101,3377,8,101,1,101,1,101,4,101,3381,8,101,11,101, + 12,101,3382,3,101,3385,8,101,1,101,1,101,1,101,1,101,3,101,3391, + 8,101,1,101,1,101,1,101,1,101,5,101,3397,8,101,10,101,12,101,3400, + 9,101,1,101,1,101,3,101,3404,8,101,1,101,1,101,1,101,1,101,5,101, + 3410,8,101,10,101,12,101,3413,9,101,3,101,3415,8,101,1,102,1,102, + 1,102,3,102,3420,8,102,1,102,3,102,3423,8,102,1,102,1,102,1,102, + 3,102,3428,8,102,1,102,1,102,1,102,1,102,1,102,1,102,3,102,3436, + 8,102,1,102,1,102,1,102,1,102,3,102,3442,8,102,1,102,1,102,3,102, + 3446,8,102,3,102,3448,8,102,1,102,1,102,1,102,1,102,3,102,3454,8, + 102,1,102,1,102,1,102,1,102,5,102,3460,8,102,10,102,12,102,3463, + 9,102,1,102,1,102,3,102,3467,8,102,1,102,1,102,1,102,1,102,5,102, + 3473,8,102,10,102,12,102,3476,9,102,3,102,3478,8,102,1,103,1,103, + 1,103,3,103,3483,8,103,1,103,3,103,3486,8,103,1,103,1,103,3,103, + 3490,8,103,1,103,3,103,3493,8,103,1,103,3,103,3496,8,103,1,104,1, + 104,3,104,3500,8,104,1,104,3,104,3503,8,104,1,104,1,104,1,104,1, + 104,1,104,1,104,3,104,3511,8,104,1,104,1,104,1,104,1,104,3,104,3517, + 8,104,1,104,1,104,3,104,3521,8,104,1,105,1,105,5,105,3525,8,105, + 10,105,12,105,3528,9,105,1,105,1,105,3,105,3532,8,105,1,105,1,105, + 3,105,3536,8,105,3,105,3538,8,105,1,105,1,105,5,105,3542,8,105,10, + 105,12,105,3545,9,105,1,105,3,105,3548,8,105,1,105,3,105,3551,8, + 105,1,105,3,105,3554,8,105,1,105,3,105,3557,8,105,1,105,1,105,5, + 105,3561,8,105,10,105,12,105,3564,9,105,1,105,1,105,3,105,3568,8, + 105,1,105,3,105,3571,8,105,1,105,3,105,3574,8,105,1,105,3,105,3577, + 8,105,1,105,3,105,3580,8,105,3,105,3582,8,105,1,106,3,106,3585,8, + 106,1,106,1,106,3,106,3589,8,106,1,106,3,106,3592,8,106,1,106,3, + 106,3595,8,106,1,107,1,107,1,107,1,107,1,107,1,107,3,107,3603,8, + 107,1,107,1,107,1,107,1,107,3,107,3609,8,107,1,107,5,107,3612,8, + 107,10,107,12,107,3615,9,107,1,108,1,108,1,108,1,108,1,108,1,108, + 3,108,3623,8,108,1,108,5,108,3626,8,108,10,108,12,108,3629,9,108, + 1,109,1,109,1,109,1,109,3,109,3635,8,109,1,109,3,109,3638,8,109, + 1,109,3,109,3641,8,109,1,109,1,109,3,109,3645,8,109,1,110,1,110, + 3,110,3649,8,110,1,111,1,111,1,111,1,111,3,111,3655,8,111,1,111, + 1,111,3,111,3659,8,111,1,112,1,112,1,112,5,112,3664,8,112,10,112, + 12,112,3667,9,112,1,112,3,112,3670,8,112,1,112,3,112,3673,8,112, + 1,112,3,112,3676,8,112,1,113,1,113,1,113,3,113,3681,8,113,1,114, + 1,114,1,114,1,114,1,114,3,114,3688,8,114,1,115,1,115,1,115,1,115, + 1,115,1,115,5,115,3696,8,115,10,115,12,115,3699,9,115,1,116,1,116, + 1,116,1,116,5,116,3705,8,116,10,116,12,116,3708,9,116,1,117,1,117, + 1,117,1,117,1,118,1,118,3,118,3716,8,118,1,119,1,119,1,119,1,119, + 1,119,1,119,5,119,3724,8,119,10,119,12,119,3727,9,119,3,119,3729, + 8,119,1,119,1,119,3,119,3733,8,119,1,119,1,119,1,119,1,119,3,119, + 3739,8,119,1,120,1,120,3,120,3743,8,120,1,120,3,120,3746,8,120,1, + 120,3,120,3749,8,120,1,120,1,120,1,120,3,120,3754,8,120,1,120,3, + 120,3757,8,120,1,120,1,120,1,120,1,120,1,120,3,120,3764,8,120,1, + 120,1,120,3,120,3768,8,120,1,120,3,120,3771,8,120,1,120,1,120,3, + 120,3775,8,120,1,121,1,121,3,121,3779,8,121,1,121,3,121,3782,8,121, + 1,121,3,121,3785,8,121,1,121,1,121,1,121,3,121,3790,8,121,1,121, + 1,121,1,121,1,121,3,121,3796,8,121,5,121,3798,8,121,10,121,12,121, + 3801,9,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,3810, + 8,121,1,121,1,121,1,121,1,121,3,121,3816,8,121,5,121,3818,8,121, + 10,121,12,121,3821,9,121,1,121,1,121,1,121,3,121,3826,8,121,1,121, + 1,121,3,121,3830,8,121,1,122,1,122,1,122,1,122,3,122,3836,8,122, + 1,122,3,122,3839,8,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,3,123,3851,8,123,1,123,1,123,3,123,3855,8,123, + 1,123,1,123,3,123,3859,8,123,1,124,1,124,1,124,1,124,1,124,1,124, + 3,124,3867,8,124,1,124,1,124,3,124,3871,8,124,1,125,1,125,1,125, + 1,125,1,126,1,126,1,126,1,126,1,126,1,126,5,126,3883,8,126,10,126, + 12,126,3886,9,126,1,127,1,127,3,127,3890,8,127,1,127,3,127,3893, + 8,127,1,127,1,127,3,127,3897,8,127,1,127,3,127,3900,8,127,1,127, + 1,127,1,127,1,127,5,127,3906,8,127,10,127,12,127,3909,9,127,1,127, + 1,127,3,127,3913,8,127,1,127,3,127,3916,8,127,1,127,3,127,3919,8, + 127,1,128,1,128,3,128,3923,8,128,1,128,3,128,3926,8,128,1,128,1, + 128,1,128,1,128,1,128,5,128,3933,8,128,10,128,12,128,3936,9,128, + 1,128,1,128,3,128,3940,8,128,1,129,1,129,1,129,1,129,1,129,5,129, + 3947,8,129,10,129,12,129,3950,9,129,1,130,1,130,3,130,3954,8,130, + 1,131,1,131,1,131,5,131,3959,8,131,10,131,12,131,3962,9,131,1,132, + 1,132,5,132,3966,8,132,10,132,12,132,3969,9,132,1,132,1,132,1,132, + 5,132,3974,8,132,10,132,12,132,3977,9,132,1,132,1,132,1,132,3,132, + 3982,8,132,1,133,1,133,1,133,1,133,1,133,1,133,3,133,3990,8,133, + 1,133,3,133,3993,8,133,1,133,3,133,3996,8,133,1,133,1,133,1,133, + 5,133,4001,8,133,10,133,12,133,4004,9,133,3,133,4006,8,133,1,133, + 3,133,4009,8,133,1,133,1,133,3,133,4013,8,133,1,133,1,133,3,133, + 4017,8,133,1,133,1,133,1,133,1,133,3,133,4023,8,133,1,134,1,134, + 1,134,1,134,1,134,3,134,4030,8,134,1,135,1,135,1,135,1,135,1,136, + 1,136,1,136,1,136,3,136,4040,8,136,1,136,1,136,3,136,4044,8,136, + 1,136,1,136,1,137,1,137,1,137,1,137,1,137,3,137,4053,8,137,1,138, + 3,138,4056,8,138,1,138,1,138,3,138,4060,8,138,1,138,1,138,5,138, + 4064,8,138,10,138,12,138,4067,9,138,1,138,1,138,1,138,5,138,4072, + 8,138,10,138,12,138,4075,9,138,1,138,1,138,3,138,4079,8,138,1,138, + 1,138,3,138,4083,8,138,1,138,1,138,5,138,4087,8,138,10,138,12,138, + 4090,9,138,1,138,1,138,1,138,3,138,4095,8,138,1,138,3,138,4098,8, + 138,3,138,4100,8,138,1,138,1,138,3,138,4104,8,138,1,139,1,139,1, + 139,3,139,4109,8,139,1,139,1,139,1,139,1,139,1,139,3,139,4116,8, + 139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,3,140,4126,8, + 140,1,141,1,141,5,141,4130,8,141,10,141,12,141,4133,9,141,1,141, + 1,141,3,141,4137,8,141,1,141,1,141,3,141,4141,8,141,1,141,3,141, + 4144,8,141,1,141,3,141,4147,8,141,1,141,3,141,4150,8,141,1,141,3, + 141,4153,8,141,1,141,3,141,4156,8,141,1,141,3,141,4159,8,141,1,142, + 1,142,3,142,4163,8,142,1,142,1,142,3,142,4167,8,142,1,143,1,143, + 1,143,1,143,1,143,1,143,3,143,4175,8,143,1,143,1,143,3,143,4179, + 8,143,1,143,3,143,4182,8,143,3,143,4184,8,143,1,144,1,144,1,144, + 1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,3,144,4197,8,144, + 1,144,3,144,4200,8,144,1,145,1,145,1,145,5,145,4205,8,145,10,145, + 12,145,4208,9,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146, + 4217,8,146,1,146,3,146,4220,8,146,1,146,1,146,1,146,3,146,4225,8, + 146,3,146,4227,8,146,1,146,1,146,3,146,4231,8,146,1,146,1,146,1, + 146,1,146,1,146,1,146,3,146,4239,8,146,1,147,1,147,1,147,1,147,3, + 147,4245,8,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,3,148,4254, + 8,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,3,149,4267,8,149,1,150,1,150,3,150,4271,8,150,1,150,1,150, + 5,150,4275,8,150,10,150,12,150,4278,9,150,1,151,1,151,1,151,3,151, + 4283,8,151,1,151,3,151,4286,8,151,1,151,1,151,3,151,4290,8,151,1, + 151,3,151,4293,8,151,3,151,4295,8,151,1,152,1,152,1,152,1,152,1, + 153,1,153,1,154,1,154,1,155,1,155,3,155,4307,8,155,1,155,1,155,3, + 155,4311,8,155,1,156,1,156,1,156,1,156,5,156,4317,8,156,10,156,12, + 156,4320,9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1, + 156,3,156,4331,8,156,1,156,1,156,4,156,4335,8,156,11,156,12,156, + 4336,3,156,4339,8,156,1,156,1,156,4,156,4343,8,156,11,156,12,156, + 4344,3,156,4347,8,156,3,156,4349,8,156,1,157,1,157,1,157,1,157,3, + 157,4355,8,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,4363,8, + 157,1,158,1,158,1,158,1,158,1,158,1,158,3,158,4371,8,158,1,159,1, + 159,3,159,4375,8,159,1,159,1,159,1,159,3,159,4380,8,159,3,159,4382, + 8,159,1,160,1,160,1,160,1,160,1,160,5,160,4389,8,160,10,160,12,160, + 4392,9,160,1,160,1,160,3,160,4396,8,160,1,161,1,161,1,161,1,162, + 1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162, + 1,162,5,162,4414,8,162,10,162,12,162,4417,9,162,1,163,1,163,3,163, + 4421,8,163,1,164,1,164,1,164,1,164,3,164,4427,8,164,1,164,1,164, + 1,164,1,164,1,164,3,164,4434,8,164,1,165,1,165,1,165,3,165,4439, + 8,165,1,166,1,166,1,166,1,166,1,166,5,166,4446,8,166,10,166,12,166, + 4449,9,166,3,166,4451,8,166,1,167,1,167,3,167,4455,8,167,1,168,1, + 168,3,168,4459,8,168,1,168,1,168,3,168,4463,8,168,1,168,3,168,4466, + 8,168,1,168,3,168,4469,8,168,1,168,3,168,4472,8,168,1,169,1,169, + 3,169,4476,8,169,1,169,1,169,3,169,4480,8,169,1,169,3,169,4483,8, + 169,1,169,3,169,4486,8,169,1,169,3,169,4489,8,169,1,170,1,170,1, + 170,1,171,1,171,3,171,4496,8,171,1,171,1,171,3,171,4500,8,171,1, + 171,1,171,1,172,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173, + 5,173,4513,8,173,10,173,12,173,4516,9,173,1,174,1,174,1,174,1,175, + 1,175,1,175,1,175,1,175,1,176,1,176,3,176,4528,8,176,1,176,1,176, + 1,176,1,176,5,176,4534,8,176,10,176,12,176,4537,9,176,1,177,1,177, + 1,177,1,177,1,177,1,177,1,177,3,177,4546,8,177,1,178,1,178,3,178, + 4550,8,178,1,178,3,178,4553,8,178,1,178,1,178,1,179,1,179,3,179, + 4559,8,179,1,179,3,179,4562,8,179,1,179,3,179,4565,8,179,1,180,1, + 180,1,180,1,180,1,180,1,180,1,180,3,180,4574,8,180,1,181,1,181,1, + 181,1,181,1,181,1,181,1,181,3,181,4583,8,181,1,182,1,182,1,182,1, + 182,1,182,1,182,5,182,4591,8,182,10,182,12,182,4594,9,182,1,182, + 3,182,4597,8,182,1,183,1,183,1,183,1,183,1,183,1,183,5,183,4605, + 8,183,10,183,12,183,4608,9,183,1,183,3,183,4611,8,183,1,184,1,184, + 1,184,1,184,1,184,1,184,1,184,5,184,4620,8,184,10,184,12,184,4623, + 9,184,1,184,3,184,4626,8,184,1,185,1,185,1,185,1,185,1,185,1,185, + 1,185,3,185,4635,8,185,1,186,1,186,1,186,1,186,1,186,5,186,4642, + 8,186,10,186,12,186,4645,9,186,3,186,4647,8,186,1,186,1,186,3,186, + 4651,8,186,1,186,5,186,4654,8,186,10,186,12,186,4657,9,186,1,186, + 3,186,4660,8,186,1,187,1,187,1,187,1,187,1,187,5,187,4667,8,187, + 10,187,12,187,4670,9,187,3,187,4672,8,187,1,187,3,187,4675,8,187, + 1,188,1,188,1,188,1,188,1,188,3,188,4682,8,188,1,188,1,188,1,188, + 1,188,3,188,4688,8,188,1,188,1,188,1,188,1,188,3,188,4694,8,188, + 1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,5,190,4704,8,190,10,190,12,190,4707,9,190, - 3,190,4709,8,190,1,190,3,190,4712,8,190,1,191,1,191,1,192,1,192, - 1,193,1,193,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, - 1,194,1,194,3,194,4731,8,194,3,194,4733,8,194,1,195,1,195,1,195, + 5,190,4718,8,190,10,190,12,190,4721,9,190,3,190,4723,8,190,1,190, + 3,190,4726,8,190,1,191,1,191,1,192,1,192,1,193,1,193,1,194,1,194, + 1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,3,194,4745, + 8,194,3,194,4747,8,194,1,195,1,195,1,195,1,195,1,195,1,195,1,195, 1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, - 1,195,1,195,1,195,1,195,1,195,5,195,4754,8,195,10,195,12,195,4757, - 9,195,3,195,4759,8,195,1,195,3,195,4762,8,195,1,196,1,196,1,197, - 1,197,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,3,199,4781,8,199,3,199,4783,8,199,1,200,1,200, - 1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201,5,201,4795,8,201, - 10,201,12,201,4798,9,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, - 1,201,5,201,4808,8,201,10,201,12,201,4811,9,201,1,201,1,201,1,201, + 1,195,5,195,4768,8,195,10,195,12,195,4771,9,195,3,195,4773,8,195, + 1,195,3,195,4776,8,195,1,196,1,196,1,197,1,197,1,198,1,198,1,199, + 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,3,199, + 4795,8,199,3,199,4797,8,199,1,200,1,200,1,200,1,200,1,201,1,201, + 1,201,1,201,1,201,1,201,5,201,4809,8,201,10,201,12,201,4812,9,201, + 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,5,201,4822,8,201, + 10,201,12,201,4825,9,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, - 1,201,1,201,1,201,1,201,1,201,1,201,1,201,5,201,4845,8,201,10,201, - 12,201,4848,9,201,1,201,1,201,3,201,4852,8,201,1,202,1,202,1,202, - 1,202,1,202,1,202,1,203,1,203,1,204,1,204,1,204,1,204,1,204,1,204, + 1,201,1,201,1,201,5,201,4859,8,201,10,201,12,201,4862,9,201,1,201, + 1,201,3,201,4866,8,201,1,202,1,202,1,202,1,202,1,202,1,202,1,203, + 1,203,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204, 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204, - 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,3,204,4887,8,204, - 1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205, - 1,205,3,205,4901,8,205,1,206,1,206,1,206,5,206,4906,8,206,10,206, - 12,206,4909,9,206,1,206,3,206,4912,8,206,1,207,1,207,1,207,1,207, - 3,207,4918,8,207,1,208,1,208,1,208,1,208,1,208,1,208,3,208,4926, - 8,208,3,208,4928,8,208,1,209,1,209,1,209,1,209,1,210,1,210,1,210, - 1,210,1,210,3,210,4939,8,210,1,211,1,211,1,211,1,211,1,212,1,212, - 1,212,1,212,3,212,4949,8,212,1,213,1,213,1,213,1,213,1,213,3,213, - 4956,8,213,1,214,1,214,1,214,1,214,3,214,4962,8,214,1,215,1,215, - 1,215,1,215,1,216,1,216,3,216,4970,8,216,1,217,1,217,1,217,3,217, - 4975,8,217,1,217,1,217,1,217,1,217,5,217,4981,8,217,10,217,12,217, - 4984,9,217,1,217,1,217,1,217,5,217,4989,8,217,10,217,12,217,4992, - 9,217,1,217,1,217,1,217,5,217,4997,8,217,10,217,12,217,5000,9,217, - 1,217,1,217,1,217,5,217,5005,8,217,10,217,12,217,5008,9,217,1,217, - 5,217,5011,8,217,10,217,12,217,5014,9,217,1,217,1,217,3,217,5018, - 8,217,1,218,1,218,1,218,3,218,5023,8,218,1,218,4,218,5026,8,218, - 11,218,12,218,5027,1,218,1,218,4,218,5032,8,218,11,218,12,218,5033, - 3,218,5036,8,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,4,219, - 5045,8,219,11,219,12,219,5046,1,219,5,219,5050,8,219,10,219,12,219, - 5053,9,219,1,219,1,219,4,219,5057,8,219,11,219,12,219,5058,3,219, - 5061,8,219,1,219,1,219,1,219,1,220,1,220,1,220,1,221,1,221,1,221, - 1,222,1,222,1,222,3,222,5075,8,222,1,222,1,222,4,222,5079,8,222, - 11,222,12,222,5080,1,222,1,222,1,222,3,222,5086,8,222,1,223,1,223, - 1,223,3,223,5091,8,223,1,223,1,223,4,223,5095,8,223,11,223,12,223, - 5096,1,223,1,223,1,223,1,223,1,223,3,223,5104,8,223,1,224,1,224, - 1,224,1,225,1,225,1,225,3,225,5112,8,225,1,225,1,225,1,225,1,225, - 4,225,5118,8,225,11,225,12,225,5119,1,225,1,225,1,225,3,225,5125, - 8,225,1,226,1,226,1,226,1,226,3,226,5131,8,226,1,226,3,226,5134, - 8,226,1,226,1,226,1,226,1,226,1,226,1,226,3,226,5142,8,226,1,227, - 1,227,1,227,1,227,1,227,3,227,5149,8,227,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,3,228,5158,8,228,1,228,3,228,5161,8,228,1,229, - 1,229,1,229,1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230, - 1,230,5,230,5176,8,230,10,230,12,230,5179,9,230,1,230,1,230,1,231, - 1,231,1,231,3,231,5186,8,231,1,231,1,231,1,231,1,231,1,231,1,231, - 3,231,5194,8,231,1,232,1,232,3,232,5198,8,232,1,232,1,232,1,233, - 1,233,1,233,3,233,5205,8,233,1,233,1,233,4,233,5209,8,233,11,233, - 12,233,5210,1,234,1,234,1,234,1,234,4,234,5217,8,234,11,234,12,234, - 5218,1,235,1,235,1,235,3,235,5224,8,235,1,235,1,235,1,235,5,235, - 5229,8,235,10,235,12,235,5232,9,235,1,235,1,235,1,235,5,235,5237, - 8,235,10,235,12,235,5240,9,235,1,235,1,235,1,235,1,235,3,235,5246, - 8,235,1,235,5,235,5249,8,235,10,235,12,235,5252,9,235,3,235,5254, - 8,235,3,235,5256,8,235,1,235,1,235,4,235,5260,8,235,11,235,12,235, - 5261,3,235,5264,8,235,1,235,1,235,5,235,5268,8,235,10,235,12,235, - 5271,9,235,1,235,1,235,3,235,5275,8,235,1,235,1,235,1,235,1,235, - 1,235,3,235,5282,8,235,1,236,1,236,1,236,3,236,5287,8,236,1,236, - 1,236,3,236,5291,8,236,1,236,1,236,1,236,3,236,5296,8,236,5,236, - 5298,8,236,10,236,12,236,5301,9,236,1,236,1,236,1,236,3,236,5306, - 8,236,1,236,1,236,1,236,1,236,3,236,5312,8,236,1,236,5,236,5315, - 8,236,10,236,12,236,5318,9,236,3,236,5320,8,236,3,236,5322,8,236, - 1,236,1,236,4,236,5326,8,236,11,236,12,236,5327,3,236,5330,8,236, - 1,236,1,236,5,236,5334,8,236,10,236,12,236,5337,9,236,1,236,1,236, - 3,236,5341,8,236,1,237,1,237,1,237,3,237,5346,8,237,1,237,1,237, - 1,237,5,237,5351,8,237,10,237,12,237,5354,9,237,1,238,1,238,1,238, - 1,238,5,238,5360,8,238,10,238,12,238,5363,9,238,1,238,1,238,3,238, - 5367,8,238,1,238,1,238,1,238,1,238,1,238,5,238,5374,8,238,10,238, - 12,238,5377,9,238,1,238,3,238,5380,8,238,1,238,1,238,1,238,1,238, - 3,238,5386,8,238,1,238,5,238,5389,8,238,10,238,12,238,5392,9,238, - 3,238,5394,8,238,3,238,5396,8,238,1,238,1,238,1,238,1,238,5,238, - 5402,8,238,10,238,12,238,5405,9,238,3,238,5407,8,238,1,238,1,238, - 1,238,1,238,1,238,3,238,5414,8,238,3,238,5416,8,238,1,238,1,238, - 1,238,3,238,5421,8,238,1,238,1,238,1,238,5,238,5426,8,238,10,238, - 12,238,5429,9,238,1,238,1,238,1,238,1,238,5,238,5435,8,238,10,238, - 12,238,5438,9,238,1,238,1,238,1,238,3,238,5443,8,238,3,238,5445, - 8,238,1,239,1,239,1,239,1,239,1,239,3,239,5452,8,239,1,239,3,239, - 5455,8,239,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,5,240, - 5465,8,240,10,240,12,240,5468,9,240,1,240,1,240,1,240,3,240,5473, - 8,240,1,241,1,241,1,241,1,241,1,241,1,241,3,241,5481,8,241,1,241, - 3,241,5484,8,241,1,241,1,241,3,241,5488,8,241,1,241,3,241,5491,8, - 241,1,241,1,241,3,241,5495,8,241,3,241,5497,8,241,1,242,1,242,1, - 242,1,242,1,242,1,242,1,242,1,242,1,242,3,242,5508,8,242,1,242,3, - 242,5511,8,242,1,242,1,242,3,242,5515,8,242,1,242,3,242,5518,8,242, - 1,242,3,242,5521,8,242,1,243,1,243,1,243,1,243,1,243,3,243,5528, - 8,243,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,5,244,5538, - 8,244,10,244,12,244,5541,9,244,3,244,5543,8,244,1,245,1,245,1,245, - 1,245,1,245,3,245,5550,8,245,1,245,1,245,5,245,5554,8,245,10,245, - 12,245,5557,9,245,1,246,1,246,1,246,1,246,1,246,5,246,5564,8,246, - 10,246,12,246,5567,9,246,1,247,1,247,3,247,5571,8,247,1,247,1,247, - 1,247,5,247,5576,8,247,10,247,12,247,5579,9,247,1,247,1,247,3,247, - 5583,8,247,1,247,1,247,1,247,1,247,3,247,5589,8,247,1,247,1,247, - 3,247,5593,8,247,1,247,1,247,3,247,5597,8,247,1,247,1,247,1,247, - 1,247,1,247,1,247,3,247,5605,8,247,1,247,1,247,3,247,5609,8,247, - 1,247,1,247,3,247,5613,8,247,1,247,1,247,1,247,1,247,3,247,5619, - 8,247,3,247,5621,8,247,1,248,1,248,1,248,1,248,1,249,1,249,1,250, - 1,250,1,250,1,250,3,250,5633,8,250,1,250,1,250,1,250,3,250,5638, - 8,250,1,250,1,250,1,250,1,250,3,250,5644,8,250,1,250,1,250,1,250, - 1,250,3,250,5650,8,250,1,250,1,250,3,250,5654,8,250,1,250,1,250, - 1,250,3,250,5659,8,250,3,250,5661,8,250,1,251,1,251,1,251,1,252, + 1,204,1,204,1,204,1,204,3,204,4901,8,204,1,205,1,205,1,205,1,205, + 1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,3,205,4915,8,205, + 1,206,1,206,1,206,5,206,4920,8,206,10,206,12,206,4923,9,206,1,206, + 3,206,4926,8,206,1,207,1,207,1,207,1,207,3,207,4932,8,207,1,208, + 1,208,1,208,1,208,1,208,1,208,3,208,4940,8,208,3,208,4942,8,208, + 1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210,3,210,4953, + 8,210,1,211,1,211,1,211,1,211,1,212,1,212,1,212,1,212,3,212,4963, + 8,212,1,213,1,213,1,213,1,213,1,213,3,213,4970,8,213,1,214,1,214, + 1,214,1,214,3,214,4976,8,214,1,215,1,215,1,215,1,215,1,216,1,216, + 3,216,4984,8,216,1,217,1,217,1,217,3,217,4989,8,217,1,217,1,217, + 1,217,1,217,5,217,4995,8,217,10,217,12,217,4998,9,217,1,217,1,217, + 1,217,5,217,5003,8,217,10,217,12,217,5006,9,217,1,217,1,217,1,217, + 5,217,5011,8,217,10,217,12,217,5014,9,217,1,217,1,217,1,217,5,217, + 5019,8,217,10,217,12,217,5022,9,217,1,217,5,217,5025,8,217,10,217, + 12,217,5028,9,217,1,217,1,217,3,217,5032,8,217,1,218,1,218,1,218, + 3,218,5037,8,218,1,218,4,218,5040,8,218,11,218,12,218,5041,1,218, + 1,218,4,218,5046,8,218,11,218,12,218,5047,3,218,5050,8,218,1,218, + 1,218,1,218,1,219,1,219,1,219,1,219,4,219,5059,8,219,11,219,12,219, + 5060,1,219,5,219,5064,8,219,10,219,12,219,5067,9,219,1,219,1,219, + 4,219,5071,8,219,11,219,12,219,5072,3,219,5075,8,219,1,219,1,219, + 1,219,1,220,1,220,1,220,1,221,1,221,1,221,1,222,1,222,1,222,3,222, + 5089,8,222,1,222,1,222,4,222,5093,8,222,11,222,12,222,5094,1,222, + 1,222,1,222,3,222,5100,8,222,1,223,1,223,1,223,3,223,5105,8,223, + 1,223,1,223,4,223,5109,8,223,11,223,12,223,5110,1,223,1,223,1,223, + 1,223,1,223,3,223,5118,8,223,1,224,1,224,1,224,1,225,1,225,1,225, + 3,225,5126,8,225,1,225,1,225,1,225,1,225,4,225,5132,8,225,11,225, + 12,225,5133,1,225,1,225,1,225,3,225,5139,8,225,1,226,1,226,1,226, + 1,226,3,226,5145,8,226,1,226,3,226,5148,8,226,1,226,1,226,1,226, + 1,226,1,226,1,226,3,226,5156,8,226,1,227,1,227,1,227,1,227,1,227, + 3,227,5163,8,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228,3,228, + 5172,8,228,1,228,3,228,5175,8,228,1,229,1,229,1,229,1,229,1,229, + 1,229,1,230,1,230,1,230,1,230,1,230,1,230,1,230,5,230,5190,8,230, + 10,230,12,230,5193,9,230,1,230,1,230,1,231,1,231,1,231,3,231,5200, + 8,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5208,8,231,1,232, + 1,232,3,232,5212,8,232,1,232,1,232,1,233,1,233,1,233,3,233,5219, + 8,233,1,233,1,233,4,233,5223,8,233,11,233,12,233,5224,1,234,1,234, + 1,234,1,234,4,234,5231,8,234,11,234,12,234,5232,1,235,1,235,1,235, + 3,235,5238,8,235,1,235,1,235,1,235,5,235,5243,8,235,10,235,12,235, + 5246,9,235,1,235,1,235,1,235,5,235,5251,8,235,10,235,12,235,5254, + 9,235,1,235,1,235,1,235,1,235,3,235,5260,8,235,1,235,5,235,5263, + 8,235,10,235,12,235,5266,9,235,3,235,5268,8,235,3,235,5270,8,235, + 1,235,1,235,4,235,5274,8,235,11,235,12,235,5275,3,235,5278,8,235, + 1,235,1,235,5,235,5282,8,235,10,235,12,235,5285,9,235,1,235,1,235, + 3,235,5289,8,235,1,235,1,235,1,235,1,235,1,235,3,235,5296,8,235, + 1,236,1,236,1,236,3,236,5301,8,236,1,236,1,236,3,236,5305,8,236, + 1,236,1,236,1,236,3,236,5310,8,236,5,236,5312,8,236,10,236,12,236, + 5315,9,236,1,236,1,236,1,236,3,236,5320,8,236,1,236,1,236,1,236, + 1,236,3,236,5326,8,236,1,236,5,236,5329,8,236,10,236,12,236,5332, + 9,236,3,236,5334,8,236,3,236,5336,8,236,1,236,1,236,4,236,5340,8, + 236,11,236,12,236,5341,3,236,5344,8,236,1,236,1,236,5,236,5348,8, + 236,10,236,12,236,5351,9,236,1,236,1,236,3,236,5355,8,236,1,237, + 1,237,1,237,3,237,5360,8,237,1,237,1,237,1,237,5,237,5365,8,237, + 10,237,12,237,5368,9,237,1,238,1,238,1,238,1,238,5,238,5374,8,238, + 10,238,12,238,5377,9,238,1,238,1,238,3,238,5381,8,238,1,238,1,238, + 1,238,1,238,1,238,5,238,5388,8,238,10,238,12,238,5391,9,238,1,238, + 3,238,5394,8,238,1,238,1,238,1,238,1,238,3,238,5400,8,238,1,238, + 5,238,5403,8,238,10,238,12,238,5406,9,238,3,238,5408,8,238,3,238, + 5410,8,238,1,238,1,238,1,238,1,238,5,238,5416,8,238,10,238,12,238, + 5419,9,238,3,238,5421,8,238,1,238,1,238,1,238,1,238,1,238,3,238, + 5428,8,238,3,238,5430,8,238,1,238,1,238,1,238,3,238,5435,8,238,1, + 238,1,238,1,238,5,238,5440,8,238,10,238,12,238,5443,9,238,1,238, + 1,238,1,238,1,238,5,238,5449,8,238,10,238,12,238,5452,9,238,1,238, + 1,238,1,238,3,238,5457,8,238,3,238,5459,8,238,1,239,1,239,1,239, + 1,239,1,239,3,239,5466,8,239,1,239,3,239,5469,8,239,1,240,1,240, + 1,240,1,240,1,240,1,240,1,240,1,240,5,240,5479,8,240,10,240,12,240, + 5482,9,240,1,240,1,240,1,240,3,240,5487,8,240,1,241,1,241,1,241, + 1,241,1,241,1,241,3,241,5495,8,241,1,241,3,241,5498,8,241,1,241, + 1,241,3,241,5502,8,241,1,241,3,241,5505,8,241,1,241,1,241,3,241, + 5509,8,241,3,241,5511,8,241,1,242,1,242,1,242,1,242,1,242,1,242, + 1,242,1,242,1,242,3,242,5522,8,242,1,242,3,242,5525,8,242,1,242, + 1,242,3,242,5529,8,242,1,242,3,242,5532,8,242,1,242,3,242,5535,8, + 242,1,243,1,243,1,243,1,243,1,243,3,243,5542,8,243,1,244,1,244,1, + 244,1,244,1,244,1,244,1,244,1,244,5,244,5552,8,244,10,244,12,244, + 5555,9,244,3,244,5557,8,244,1,245,1,245,1,245,1,245,1,245,3,245, + 5564,8,245,1,245,1,245,5,245,5568,8,245,10,245,12,245,5571,9,245, + 1,246,1,246,1,246,1,246,1,246,5,246,5578,8,246,10,246,12,246,5581, + 9,246,1,247,1,247,3,247,5585,8,247,1,247,1,247,1,247,5,247,5590, + 8,247,10,247,12,247,5593,9,247,1,247,1,247,3,247,5597,8,247,1,247, + 1,247,1,247,1,247,3,247,5603,8,247,1,247,1,247,3,247,5607,8,247, + 1,247,1,247,3,247,5611,8,247,1,247,1,247,1,247,1,247,1,247,1,247, + 3,247,5619,8,247,1,247,1,247,3,247,5623,8,247,1,247,1,247,3,247, + 5627,8,247,1,247,1,247,1,247,1,247,3,247,5633,8,247,3,247,5635,8, + 247,1,248,1,248,1,248,1,248,1,249,1,249,1,250,1,250,1,250,1,250, + 3,250,5647,8,250,1,250,1,250,1,250,3,250,5652,8,250,1,250,1,250, + 1,250,1,250,3,250,5658,8,250,1,250,1,250,1,250,1,250,3,250,5664, + 8,250,1,250,1,250,3,250,5668,8,250,1,250,1,250,1,250,3,250,5673, + 8,250,3,250,5675,8,250,1,251,1,251,1,251,1,252,1,252,1,252,1,252, 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252, - 1,252,1,252,1,252,1,252,1,252,1,252,1,252,3,252,5685,8,252,4,252, - 5687,8,252,11,252,12,252,5688,1,252,3,252,5692,8,252,1,253,1,253, - 1,253,1,253,1,253,1,253,1,253,3,253,5701,8,253,1,253,1,253,3,253, - 5705,8,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,3,253,5714, - 8,253,1,253,1,253,3,253,5718,8,253,1,253,1,253,3,253,5722,8,253, - 1,253,1,253,1,253,1,253,3,253,5728,8,253,3,253,5730,8,253,1,254, - 1,254,1,254,1,254,1,254,1,254,1,254,3,254,5739,8,254,1,254,1,254, - 1,254,1,254,1,254,1,254,1,254,1,254,3,254,5749,8,254,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, + 1,252,1,252,1,252,1,252,3,252,5699,8,252,4,252,5701,8,252,11,252, + 12,252,5702,1,252,3,252,5706,8,252,1,253,1,253,1,253,1,253,1,253, + 1,253,1,253,3,253,5715,8,253,1,253,1,253,3,253,5719,8,253,1,253, + 1,253,1,253,1,253,1,253,1,253,1,253,3,253,5728,8,253,1,253,1,253, + 3,253,5732,8,253,1,253,1,253,3,253,5736,8,253,1,253,1,253,1,253, + 1,253,3,253,5742,8,253,3,253,5744,8,253,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,3,254,5753,8,254,1,254,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,3,254,5763,8,254,1,255,1,255,1,255,1,255,1,255, 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,3,255,5776,8,255,1,256,1,256,3,256,5780,8,256,1,256,1,256, - 1,256,3,256,5785,8,256,1,257,1,257,1,257,1,257,1,257,3,257,5792, - 8,257,1,257,3,257,5795,8,257,1,257,1,257,1,257,1,257,3,257,5801, - 8,257,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5811, - 8,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259,5821, - 8,259,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,3,260,5831, - 8,260,1,260,1,260,1,260,1,260,3,260,5837,8,260,1,260,1,260,1,260, - 1,260,1,260,1,260,1,260,3,260,5846,8,260,1,260,1,260,1,260,1,260, - 3,260,5852,8,260,1,260,1,260,1,260,1,260,1,260,3,260,5859,8,260, - 3,260,5861,8,260,1,261,1,261,1,261,1,262,1,262,1,262,3,262,5869, - 8,262,1,262,1,262,1,262,1,262,3,262,5875,8,262,1,262,1,262,3,262, - 5879,8,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, - 1,263,1,263,1,263,1,263,1,263,1,263,3,263,5896,8,263,1,264,1,264, - 1,264,1,265,1,265,1,265,1,265,1,265,3,265,5906,8,265,1,266,1,266, - 3,266,5910,8,266,1,266,1,266,3,266,5914,8,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,3,266,5924,8,266,1,266,1,266,1,266, - 3,266,5929,8,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,5790, + 8,255,1,256,1,256,3,256,5794,8,256,1,256,1,256,1,256,3,256,5799, + 8,256,1,257,1,257,1,257,1,257,1,257,3,257,5806,8,257,1,257,3,257, + 5809,8,257,1,257,1,257,1,257,1,257,3,257,5815,8,257,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,3,258,5825,8,258,1,259,1,259, + 1,259,1,259,1,259,1,259,1,259,1,259,3,259,5835,8,259,1,260,1,260, + 1,260,1,260,1,260,1,260,1,260,1,260,3,260,5845,8,260,1,260,1,260, + 1,260,1,260,3,260,5851,8,260,1,260,1,260,1,260,1,260,1,260,1,260, + 1,260,3,260,5860,8,260,1,260,1,260,1,260,1,260,3,260,5866,8,260, + 1,260,1,260,1,260,1,260,1,260,3,260,5873,8,260,3,260,5875,8,260, + 1,261,1,261,1,261,1,262,1,262,1,262,3,262,5883,8,262,1,262,1,262, + 1,262,1,262,3,262,5889,8,262,1,262,1,262,3,262,5893,8,262,1,263, + 1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, + 1,263,1,263,1,263,3,263,5910,8,263,1,264,1,264,1,264,1,265,1,265, + 1,265,1,265,1,265,3,265,5920,8,265,1,266,1,266,3,266,5924,8,266, + 1,266,1,266,3,266,5928,8,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,3,266,5938,8,266,1,266,1,266,1,266,3,266,5943,8,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,3,266,6001,8,266,1,267, + 1,266,1,266,1,266,1,266,3,266,6015,8,266,1,267,1,267,1,267,1,267, 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, - 1,267,1,267,1,267,1,267,3,267,6019,8,267,1,268,1,268,1,268,1,268, - 1,269,1,269,3,269,6027,8,269,1,269,1,269,1,269,1,269,3,269,6033, - 8,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269, - 3,269,6045,8,269,1,269,1,269,3,269,6049,8,269,1,269,1,269,1,269, - 1,269,1,269,1,269,1,269,1,269,1,269,3,269,6060,8,269,1,269,1,269, - 3,269,6064,8,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269, - 6073,8,269,1,270,1,270,1,270,1,270,5,270,6079,8,270,10,270,12,270, - 6082,9,270,1,271,1,271,1,271,1,271,3,271,6088,8,271,1,272,1,272, - 3,272,6092,8,272,1,272,1,272,1,272,1,273,1,273,3,273,6099,8,273, - 1,273,1,273,1,273,3,273,6104,8,273,1,273,3,273,6107,8,273,1,273, - 3,273,6110,8,273,1,274,1,274,1,275,1,275,1,275,1,275,1,275,1,275, - 1,275,3,275,6121,8,275,1,276,1,276,1,276,1,276,1,276,5,276,6128, - 8,276,10,276,12,276,6131,9,276,1,276,1,276,1,276,1,276,5,276,6137, - 8,276,10,276,12,276,6140,9,276,3,276,6142,8,276,1,277,1,277,1,277, - 1,277,1,277,1,278,1,278,1,278,1,278,1,278,5,278,6154,8,278,10,278, - 12,278,6157,9,278,1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280, - 1,280,1,280,1,281,1,281,1,281,1,281,1,281,3,281,6174,8,281,1,281, - 1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281, - 6187,8,281,1,281,3,281,6190,8,281,1,281,1,281,3,281,6194,8,281,1, - 281,3,281,6197,8,281,3,281,6199,8,281,1,282,1,282,1,282,1,282,1, - 282,3,282,6206,8,282,1,282,1,282,1,282,1,282,1,282,3,282,6213,8, - 282,5,282,6215,8,282,10,282,12,282,6218,9,282,1,282,1,282,1,282, - 1,282,3,282,6224,8,282,1,282,1,282,1,282,1,282,1,282,3,282,6231, - 8,282,1,282,3,282,6234,8,282,1,282,1,282,1,282,1,282,1,282,1,282, - 1,282,1,282,1,282,1,282,1,282,1,282,5,282,6248,8,282,10,282,12,282, - 6251,9,282,3,282,6253,8,282,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,3,283,6263,8,283,1,283,1,283,3,283,6267,8,283,1,283, - 1,283,1,283,1,283,3,283,6273,8,283,1,283,3,283,6276,8,283,1,283, - 3,283,6279,8,283,1,283,1,283,1,283,3,283,6284,8,283,1,283,1,283, - 3,283,6288,8,283,1,283,3,283,6291,8,283,1,283,1,283,1,283,1,283, - 1,283,3,283,6298,8,283,1,283,3,283,6301,8,283,1,283,1,283,1,283, - 1,283,3,283,6307,8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,267,3,267,6033,8,267,1,268,1,268,1,268,1,268,1,269,1,269,3,269, + 6041,8,269,1,269,1,269,1,269,1,269,3,269,6047,8,269,1,269,1,269, + 1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269,6059,8,269, + 1,269,1,269,3,269,6063,8,269,1,269,1,269,1,269,1,269,1,269,1,269, + 1,269,1,269,1,269,3,269,6074,8,269,1,269,1,269,3,269,6078,8,269, + 1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269,6087,8,269,1,270, + 1,270,1,270,1,270,5,270,6093,8,270,10,270,12,270,6096,9,270,1,271, + 1,271,1,271,1,271,3,271,6102,8,271,1,272,1,272,3,272,6106,8,272, + 1,272,1,272,1,272,1,273,1,273,3,273,6113,8,273,1,273,1,273,1,273, + 3,273,6118,8,273,1,273,3,273,6121,8,273,1,273,3,273,6124,8,273,1, + 274,1,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,3,275,6135,8, + 275,1,276,1,276,1,276,1,276,1,276,5,276,6142,8,276,10,276,12,276, + 6145,9,276,1,276,1,276,1,276,1,276,5,276,6151,8,276,10,276,12,276, + 6154,9,276,3,276,6156,8,276,1,277,1,277,1,277,1,277,1,277,1,278, + 1,278,1,278,1,278,1,278,5,278,6168,8,278,10,278,12,278,6171,9,278, + 1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280,1,281, + 1,281,1,281,1,281,1,281,3,281,6188,8,281,1,281,1,281,1,281,1,281, + 1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281,6201,8,281,1,281, + 3,281,6204,8,281,1,281,1,281,3,281,6208,8,281,1,281,3,281,6211,8, + 281,3,281,6213,8,281,1,282,1,282,1,282,1,282,1,282,3,282,6220,8, + 282,1,282,1,282,1,282,1,282,1,282,3,282,6227,8,282,5,282,6229,8, + 282,10,282,12,282,6232,9,282,1,282,1,282,1,282,1,282,3,282,6238, + 8,282,1,282,1,282,1,282,1,282,1,282,3,282,6245,8,282,1,282,3,282, + 6248,8,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282, + 1,282,1,282,1,282,5,282,6262,8,282,10,282,12,282,6265,9,282,3,282, + 6267,8,282,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283, + 6277,8,283,1,283,1,283,3,283,6281,8,283,1,283,1,283,1,283,1,283, + 3,283,6287,8,283,1,283,3,283,6290,8,283,1,283,3,283,6293,8,283,1, + 283,1,283,1,283,3,283,6298,8,283,1,283,1,283,3,283,6302,8,283,1, + 283,3,283,6305,8,283,1,283,1,283,1,283,1,283,1,283,3,283,6312,8, + 283,1,283,3,283,6315,8,283,1,283,1,283,1,283,1,283,3,283,6321,8, + 283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,3,283,6343,8,283,1,283,3,283,6346, - 8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 3,283,6358,8,283,1,283,3,283,6361,8,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283, - 6377,8,283,3,283,6379,8,283,1,283,1,283,3,283,6383,8,283,1,283,1, - 283,1,283,1,283,1,283,3,283,6390,8,283,1,283,1,283,3,283,6394,8, - 283,1,283,1,283,1,283,1,283,1,283,3,283,6401,8,283,1,283,3,283,6404, - 8,283,1,283,1,283,1,283,1,283,1,283,5,283,6411,8,283,10,283,12,283, - 6414,9,283,3,283,6416,8,283,1,283,1,283,1,283,3,283,6421,8,283,1, - 283,1,283,1,283,1,283,3,283,6427,8,283,3,283,6429,8,283,1,283,1, - 283,1,283,1,283,3,283,6435,8,283,1,283,1,283,3,283,6439,8,283,1, - 284,1,284,1,284,1,284,3,284,6445,8,284,1,284,3,284,6448,8,284,1, - 284,3,284,6451,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1, - 285,1,285,1,285,1,285,3,285,6464,8,285,1,285,3,285,6467,8,285,1, - 286,1,286,1,286,1,286,3,286,6473,8,286,1,287,3,287,6476,8,287,1, - 287,1,287,1,287,1,287,1,287,1,287,3,287,6484,8,287,1,287,1,287,1, - 287,1,287,1,287,1,287,3,287,6492,8,287,1,288,1,288,1,288,1,288,3, - 288,6498,8,288,1,288,3,288,6501,8,288,1,288,1,288,3,288,6505,8,288, + 1,283,1,283,3,283,6357,8,283,1,283,3,283,6360,8,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,6372,8,283, + 1,283,3,283,6375,8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,6391,8,283,3,283, + 6393,8,283,1,283,1,283,3,283,6397,8,283,1,283,1,283,1,283,1,283, + 1,283,3,283,6404,8,283,1,283,1,283,3,283,6408,8,283,1,283,1,283, + 1,283,1,283,1,283,3,283,6415,8,283,1,283,3,283,6418,8,283,1,283, + 1,283,1,283,1,283,1,283,5,283,6425,8,283,10,283,12,283,6428,9,283, + 3,283,6430,8,283,1,283,1,283,1,283,3,283,6435,8,283,1,283,1,283, + 1,283,1,283,3,283,6441,8,283,3,283,6443,8,283,1,283,1,283,1,283, + 1,283,3,283,6449,8,283,1,283,1,283,3,283,6453,8,283,1,284,1,284, + 1,284,1,284,3,284,6459,8,284,1,284,3,284,6462,8,284,1,284,3,284, + 6465,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, + 1,285,1,285,3,285,6478,8,285,1,285,3,285,6481,8,285,1,286,1,286, + 1,286,1,286,3,286,6487,8,286,1,287,3,287,6490,8,287,1,287,1,287, + 1,287,1,287,1,287,1,287,3,287,6498,8,287,1,287,1,287,1,287,1,287, + 1,287,1,287,3,287,6506,8,287,1,288,1,288,1,288,1,288,3,288,6512, + 8,288,1,288,3,288,6515,8,288,1,288,1,288,3,288,6519,8,288,1,289, 1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289, - 1,289,3,289,6519,8,289,1,290,1,290,1,290,1,291,1,291,1,291,1,291, - 1,291,5,291,6529,8,291,10,291,12,291,6532,9,291,1,291,1,291,1,291, - 1,291,1,291,3,291,6539,8,291,1,291,1,291,3,291,6543,8,291,1,291, - 1,291,1,291,1,292,1,292,3,292,6550,8,292,1,292,1,292,1,292,5,292, - 6555,8,292,10,292,12,292,6558,9,292,1,293,1,293,3,293,6562,8,293, - 1,293,1,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294,5,294,6573, - 8,294,10,294,12,294,6576,9,294,1,295,1,295,1,295,1,295,5,295,6582, - 8,295,10,295,12,295,6585,9,295,1,296,1,296,1,296,1,296,1,296,3,296, - 6592,8,296,1,297,1,297,1,297,3,297,6597,8,297,1,297,3,297,6600,8, - 297,1,298,1,298,1,298,3,298,6605,8,298,1,298,3,298,6608,8,298,1, - 299,1,299,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,3,301, - 6620,8,301,1,302,1,302,1,302,3,302,6625,8,302,1,302,1,302,1,302, - 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,3,302,6638,8,302, - 3,302,6640,8,302,1,302,1,302,1,302,3,302,6645,8,302,1,302,1,302, - 3,302,6649,8,302,1,302,3,302,6652,8,302,3,302,6654,8,302,1,303,1, - 303,1,303,1,303,1,303,3,303,6661,8,303,1,304,1,304,1,304,1,304,1, - 304,3,304,6668,8,304,1,304,3,304,6671,8,304,1,304,3,304,6674,8,304, - 1,304,1,304,1,304,1,304,3,304,6680,8,304,1,304,1,304,3,304,6684, - 8,304,1,305,1,305,1,305,1,305,3,305,6690,8,305,1,306,1,306,1,306, - 1,306,1,306,1,306,3,306,6698,8,306,1,306,1,306,1,307,1,307,1,307, - 1,307,1,307,3,307,6707,8,307,1,307,1,307,1,308,1,308,1,308,1,309, - 1,309,1,309,1,310,1,310,1,310,3,310,6720,8,310,1,310,1,310,1,310, - 3,310,6725,8,310,1,310,1,310,1,310,1,310,5,310,6731,8,310,10,310, - 12,310,6734,9,310,3,310,6736,8,310,1,311,1,311,1,311,3,311,6741, - 8,311,1,311,1,311,1,311,3,311,6746,8,311,1,311,1,311,1,311,1,311, - 5,311,6752,8,311,10,311,12,311,6755,9,311,3,311,6757,8,311,1,312, - 1,312,1,312,1,312,1,312,1,312,3,312,6765,8,312,1,313,1,313,3,313, - 6769,8,313,1,313,1,313,1,313,5,313,6774,8,313,10,313,12,313,6777, - 9,313,1,314,1,314,1,314,3,314,6782,8,314,1,314,3,314,6785,8,314, - 1,315,1,315,3,315,6789,8,315,1,315,1,315,1,315,1,315,1,315,1,315, - 1,315,1,315,1,315,5,315,6800,8,315,10,315,12,315,6803,9,315,1,315, - 1,315,1,315,3,315,6808,8,315,1,315,1,315,1,315,1,315,1,315,1,315, - 1,315,1,315,5,315,6818,8,315,10,315,12,315,6821,9,315,3,315,6823, - 8,315,1,316,1,316,1,317,1,317,1,317,1,317,1,317,3,317,6832,8,317, - 1,317,1,317,1,317,3,317,6837,8,317,1,318,1,318,1,319,1,319,1,320, - 1,320,1,321,1,321,1,322,1,322,1,323,1,323,1,324,1,324,1,325,1,325, - 1,325,5,325,6856,8,325,10,325,12,325,6859,9,325,1,326,1,326,1,327, - 1,327,1,328,1,328,1,329,1,329,1,330,1,330,1,330,5,330,6872,8,330, - 10,330,12,330,6875,9,330,1,331,1,331,1,332,1,332,1,332,5,332,6882, - 8,332,10,332,12,332,6885,9,332,1,333,1,333,3,333,6889,8,333,1,334, - 1,334,1,334,3,334,6894,8,334,3,334,6896,8,334,1,334,3,334,6899,8, - 334,1,334,1,334,3,334,6903,8,334,3,334,6905,8,334,1,335,1,335,1, - 335,5,335,6910,8,335,10,335,12,335,6913,9,335,1,336,1,336,1,336, - 3,336,6918,8,336,3,336,6920,8,336,1,336,3,336,6923,8,336,1,336,1, - 336,3,336,6927,8,336,1,336,3,336,6930,8,336,1,337,1,337,1,338,1, - 338,1,339,1,339,1,340,1,340,1,340,5,340,6941,8,340,10,340,12,340, - 6944,9,340,1,341,1,341,1,342,1,342,1,342,1,342,1,342,3,342,6953, - 8,342,1,342,3,342,6956,8,342,1,342,3,342,6959,8,342,1,343,1,343, - 1,343,1,343,1,344,1,344,1,344,1,345,1,345,1,345,1,345,3,345,6972, - 8,345,1,346,1,346,1,347,1,347,3,347,6978,8,347,1,347,3,347,6981, - 8,347,1,348,1,348,1,349,1,349,1,349,1,349,3,349,6989,8,349,1,350, - 1,350,1,351,1,351,1,351,3,351,6996,8,351,1,352,1,352,1,353,1,353, - 1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353, - 1,353,4,353,7014,8,353,11,353,12,353,7015,1,354,1,354,1,354,1,354, - 1,354,3,354,7023,8,354,3,354,7025,8,354,1,355,1,355,1,355,4,355, - 7030,8,355,11,355,12,355,7031,3,355,7034,8,355,1,356,1,356,3,356, - 7038,8,356,1,357,1,357,1,357,5,357,7043,8,357,10,357,12,357,7046, - 9,357,1,358,1,358,1,358,3,358,7051,8,358,1,359,1,359,1,359,1,359, - 1,359,1,359,1,359,1,359,1,359,3,359,7062,8,359,1,360,1,360,1,360, - 1,360,3,360,7068,8,360,1,361,1,361,1,362,1,362,3,362,7074,8,362, - 1,363,3,363,7077,8,363,1,363,1,363,3,363,7081,8,363,1,363,4,363, - 7084,8,363,11,363,12,363,7085,1,363,3,363,7089,8,363,1,363,1,363, - 3,363,7093,8,363,1,363,1,363,3,363,7097,8,363,3,363,7099,8,363,1, - 364,1,364,1,365,3,365,7104,8,365,1,365,1,365,1,366,3,366,7109,8, - 366,1,366,1,366,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367, - 1,367,3,367,7122,8,367,1,367,3,367,7125,8,367,1,368,1,368,3,368, - 7129,8,368,1,368,3,368,7132,8,368,1,368,3,368,7135,8,368,1,368,1, - 368,1,368,3,368,7140,8,368,1,368,1,368,1,368,3,368,7145,8,368,1, - 368,1,368,1,368,1,368,3,368,7151,8,368,1,368,3,368,7154,8,368,1, - 368,1,368,1,368,3,368,7159,8,368,1,368,3,368,7162,8,368,1,368,1, - 368,1,368,3,368,7167,8,368,1,368,3,368,7170,8,368,1,368,1,368,3, - 368,7174,8,368,1,368,5,368,7177,8,368,10,368,12,368,7180,9,368,1, - 368,1,368,3,368,7184,8,368,1,368,5,368,7187,8,368,10,368,12,368, - 7190,9,368,1,368,1,368,3,368,7194,8,368,1,368,3,368,7197,8,368,1, - 368,5,368,7200,8,368,10,368,12,368,7203,9,368,1,368,1,368,3,368, - 7207,8,368,1,368,5,368,7210,8,368,10,368,12,368,7213,9,368,1,368, - 1,368,1,368,3,368,7218,8,368,1,368,1,368,1,368,3,368,7223,8,368, - 1,368,1,368,1,368,3,368,7228,8,368,1,368,1,368,1,368,3,368,7233, - 8,368,1,368,1,368,3,368,7237,8,368,1,368,3,368,7240,8,368,1,368, - 1,368,1,368,3,368,7245,8,368,1,368,1,368,3,368,7249,8,368,1,368, - 1,368,3,368,7253,8,368,1,369,1,369,1,369,1,369,5,369,7259,8,369, - 10,369,12,369,7262,9,369,1,369,1,369,1,370,1,370,3,370,7268,8,370, - 1,370,1,370,3,370,7272,8,370,1,370,1,370,1,370,3,370,7277,8,370, - 1,370,1,370,1,370,3,370,7282,8,370,1,370,1,370,3,370,7286,8,370, - 3,370,7288,8,370,1,370,3,370,7291,8,370,1,371,1,371,1,371,1,371, - 1,372,1,372,1,372,1,372,1,372,1,372,1,373,1,373,1,373,1,373,3,373, - 7307,8,373,1,373,1,373,1,374,1,374,1,374,1,374,5,374,7315,8,374, - 10,374,12,374,7318,9,374,1,374,1,374,1,375,1,375,1,375,5,375,7325, - 8,375,10,375,12,375,7328,9,375,1,376,1,376,1,376,1,376,5,376,7334, - 8,376,10,376,12,376,7337,9,376,1,377,1,377,1,377,1,377,5,377,7343, - 8,377,10,377,12,377,7346,9,377,1,377,1,377,1,378,1,378,3,378,7352, - 8,378,1,379,1,379,1,379,5,379,7357,8,379,10,379,12,379,7360,9,379, - 1,380,1,380,1,380,5,380,7365,8,380,10,380,12,380,7368,9,380,1,381, - 1,381,1,381,5,381,7373,8,381,10,381,12,381,7376,9,381,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,7387,8,382,1,382, - 1,382,1,382,1,382,1,382,3,382,7394,8,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,3,382,7404,8,382,1,383,1,383,1,383,3,383, - 7409,8,383,1,383,3,383,7412,8,383,1,383,1,383,1,383,3,383,7417,8, - 383,1,383,3,383,7420,8,383,1,384,1,384,1,384,1,385,1,385,1,385,1, - 385,1,386,1,386,1,386,1,387,1,387,1,387,1,387,1,387,1,387,1,387, - 1,387,1,387,1,387,3,387,7442,8,387,1,387,1,387,1,387,1,387,1,387, - 1,387,1,387,3,387,7451,8,387,1,387,3,387,7454,8,387,1,388,1,388, - 1,388,3,388,7459,8,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 4,388,7490,8,388,11,388,12,388,7491,1,388,1,388,3,388,7496,8,388, - 1,388,1,388,1,388,1,388,1,388,4,388,7503,8,388,11,388,12,388,7504, - 1,388,1,388,3,388,7509,8,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,3,388,7518,8,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388, - 7526,8,388,1,388,1,388,1,388,3,388,7531,8,388,1,388,1,388,1,388, - 1,388,1,388,1,388,3,388,7539,8,388,1,388,1,388,1,388,3,388,7544, - 8,388,1,388,1,388,1,388,3,388,7549,8,388,3,388,7551,8,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,3,388,7560,8,388,1,388,1,388, - 1,388,3,388,7565,8,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388, - 7573,8,388,1,388,1,388,1,388,3,388,7578,8,388,1,388,1,388,1,388, - 1,388,1,388,1,388,3,388,7586,8,388,1,388,1,388,1,388,1,388,1,388, - 1,388,3,388,7594,8,388,1,388,3,388,7597,8,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,3,388,7607,8,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,3,388,7625,8,388,1,388,3,388,7628,8,388,1,388,3,388, - 7631,8,388,1,388,1,388,3,388,7635,8,388,1,389,1,389,1,389,1,389, - 1,389,1,390,1,390,1,390,1,390,5,390,7646,8,390,10,390,12,390,7649, - 9,390,1,390,1,390,1,390,1,390,1,390,3,390,7656,8,390,1,391,1,391, - 3,391,7660,8,391,1,392,1,392,1,392,3,392,7665,8,392,1,392,1,392, - 1,392,3,392,7670,8,392,1,392,1,392,1,392,1,392,3,392,7676,8,392, - 1,392,1,392,1,392,3,392,7681,8,392,1,392,1,392,3,392,7685,8,392, - 1,392,1,392,1,392,3,392,7690,8,392,1,392,1,392,1,392,3,392,7695, - 8,392,1,392,1,392,1,392,3,392,7700,8,392,1,392,1,392,1,392,1,392, - 1,392,1,392,5,392,7708,8,392,10,392,12,392,7711,9,392,3,392,7713, - 8,392,1,392,1,392,3,392,7717,8,392,1,392,1,392,3,392,7721,8,392, - 1,393,1,393,1,393,1,393,1,393,3,393,7728,8,393,1,393,1,393,3,393, - 7732,8,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, - 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, - 1,393,1,393,1,393,1,393,1,393,1,393,1,393,3,393,7761,8,393,1,394, - 1,394,1,394,1,394,1,394,1,394,3,394,7769,8,394,1,395,3,395,7772, - 8,395,1,395,3,395,7775,8,395,1,395,3,395,7778,8,395,1,395,3,395, - 7781,8,395,1,396,1,396,1,397,1,397,1,397,1,398,1,398,1,399,1,399, - 3,399,7792,8,399,1,400,1,400,1,400,1,400,1,400,1,401,1,401,1,401, - 1,401,1,401,1,401,1,401,3,401,7806,8,401,1,402,1,402,1,402,1,402, - 1,402,5,402,7813,8,402,10,402,12,402,7816,9,402,1,403,1,403,1,403, - 1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403, - 1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,3,403, - 7842,8,403,1,404,1,404,1,404,1,404,1,404,1,405,1,405,1,405,5,405, - 7852,8,405,10,405,12,405,7855,9,405,1,406,1,406,1,406,3,406,7860, - 8,406,1,407,1,407,1,407,1,407,1,407,1,407,3,407,7868,8,407,1,407, - 1,407,1,407,3,407,7873,8,407,1,407,1,407,1,407,1,407,5,407,7879, - 8,407,10,407,12,407,7882,9,407,1,408,1,408,1,408,1,408,1,408,3,408, - 7889,8,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408, - 1,408,1,408,3,408,7902,8,408,1,408,1,408,1,408,1,408,3,408,7908, - 8,408,1,408,1,408,1,408,1,408,3,408,7914,8,408,1,408,1,408,1,408, - 1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,3,408, - 7929,8,408,1,408,1,408,3,408,7933,8,408,1,408,1,408,1,408,1,408, - 3,408,7939,8,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,5,408, - 7948,8,408,10,408,12,408,7951,9,408,1,409,1,409,1,409,1,409,1,409, - 1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409, - 5,409,7969,8,409,10,409,12,409,7972,9,409,1,409,1,409,1,409,1,409, - 1,409,1,409,1,409,4,409,7981,8,409,11,409,12,409,7982,1,409,1,409, - 1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409, - 1,409,1,409,1,409,3,409,8001,8,409,1,409,1,409,1,409,1,409,1,409, - 1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,5,409, - 8018,8,409,10,409,12,409,8021,9,409,1,410,1,410,1,411,1,411,1,411, - 1,411,1,411,1,411,1,411,1,411,3,411,8033,8,411,1,412,1,412,1,412, - 1,412,1,412,1,412,1,412,3,412,8042,8,412,1,413,1,413,1,413,1,413, - 1,413,1,413,1,413,3,413,8051,8,413,1,414,1,414,1,414,1,414,1,414, - 1,414,1,414,3,414,8060,8,414,1,415,1,415,1,416,1,416,1,416,1,416, - 1,416,3,416,8069,8,416,1,417,1,417,1,418,1,418,1,419,1,419,1,420, - 1,420,1,421,1,421,1,422,1,422,1,423,1,423,1,423,0,5,214,216,814, - 816,818,424,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36, + 3,289,6533,8,289,1,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291, + 5,291,6543,8,291,10,291,12,291,6546,9,291,1,291,1,291,1,291,1,291, + 1,291,3,291,6553,8,291,1,291,1,291,3,291,6557,8,291,1,291,1,291, + 1,291,1,292,1,292,3,292,6564,8,292,1,292,1,292,1,292,5,292,6569, + 8,292,10,292,12,292,6572,9,292,1,293,1,293,3,293,6576,8,293,1,293, + 1,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294,5,294,6587,8,294, + 10,294,12,294,6590,9,294,1,295,1,295,1,295,1,295,5,295,6596,8,295, + 10,295,12,295,6599,9,295,1,296,1,296,1,296,1,296,1,296,3,296,6606, + 8,296,1,297,1,297,1,297,3,297,6611,8,297,1,297,3,297,6614,8,297, + 1,298,1,298,1,298,3,298,6619,8,298,1,298,3,298,6622,8,298,1,299, + 1,299,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,3,301,6634, + 8,301,1,302,1,302,1,302,3,302,6639,8,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,302,1,302,1,302,1,302,3,302,6652,8,302,3,302, + 6654,8,302,1,302,1,302,1,302,3,302,6659,8,302,1,302,1,302,3,302, + 6663,8,302,1,302,3,302,6666,8,302,3,302,6668,8,302,1,303,1,303,1, + 303,1,303,1,303,3,303,6675,8,303,1,304,1,304,1,304,1,304,1,304,3, + 304,6682,8,304,1,304,3,304,6685,8,304,1,304,3,304,6688,8,304,1,304, + 1,304,1,304,1,304,3,304,6694,8,304,1,304,1,304,3,304,6698,8,304, + 1,305,1,305,1,305,1,305,3,305,6704,8,305,1,306,1,306,1,306,1,306, + 1,306,1,306,3,306,6712,8,306,1,306,1,306,1,307,1,307,1,307,1,307, + 1,307,3,307,6721,8,307,1,307,1,307,1,308,1,308,1,308,1,309,1,309, + 1,309,1,310,1,310,1,310,3,310,6734,8,310,1,310,1,310,1,310,3,310, + 6739,8,310,1,310,1,310,1,310,1,310,5,310,6745,8,310,10,310,12,310, + 6748,9,310,3,310,6750,8,310,1,311,1,311,1,311,3,311,6755,8,311,1, + 311,1,311,1,311,3,311,6760,8,311,1,311,1,311,1,311,1,311,5,311,6766, + 8,311,10,311,12,311,6769,9,311,3,311,6771,8,311,1,312,1,312,1,312, + 1,312,1,312,1,312,3,312,6779,8,312,1,313,1,313,3,313,6783,8,313, + 1,313,1,313,1,313,5,313,6788,8,313,10,313,12,313,6791,9,313,1,314, + 1,314,1,314,3,314,6796,8,314,1,314,3,314,6799,8,314,1,315,1,315, + 3,315,6803,8,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,5,315,6814,8,315,10,315,12,315,6817,9,315,1,315,1,315,1,315, + 3,315,6822,8,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315, + 5,315,6832,8,315,10,315,12,315,6835,9,315,3,315,6837,8,315,1,316, + 1,316,1,317,1,317,1,317,1,317,1,317,3,317,6846,8,317,1,317,1,317, + 1,317,3,317,6851,8,317,1,318,1,318,1,319,1,319,1,320,1,320,1,321, + 1,321,1,322,1,322,1,323,1,323,1,324,1,324,1,325,1,325,1,325,5,325, + 6870,8,325,10,325,12,325,6873,9,325,1,326,1,326,1,327,1,327,1,328, + 1,328,1,329,1,329,1,330,1,330,1,330,5,330,6886,8,330,10,330,12,330, + 6889,9,330,1,331,1,331,1,332,1,332,1,332,5,332,6896,8,332,10,332, + 12,332,6899,9,332,1,333,1,333,3,333,6903,8,333,1,334,1,334,1,334, + 3,334,6908,8,334,3,334,6910,8,334,1,334,3,334,6913,8,334,1,334,1, + 334,3,334,6917,8,334,3,334,6919,8,334,1,335,1,335,1,335,5,335,6924, + 8,335,10,335,12,335,6927,9,335,1,336,1,336,1,337,1,337,1,337,3,337, + 6934,8,337,3,337,6936,8,337,1,337,3,337,6939,8,337,1,337,1,337,3, + 337,6943,8,337,1,337,1,337,3,337,6947,8,337,1,338,1,338,1,338,3, + 338,6952,8,338,3,338,6954,8,338,1,338,3,338,6957,8,338,1,338,1,338, + 3,338,6961,8,338,3,338,6963,8,338,1,339,1,339,1,339,1,339,1,339, + 3,339,6970,8,339,3,339,6972,8,339,3,339,6974,8,339,1,340,1,340,1, + 341,1,341,1,342,1,342,1,343,1,343,1,343,5,343,6985,8,343,10,343, + 12,343,6988,9,343,1,344,1,344,1,345,1,345,1,345,1,345,1,345,3,345, + 6997,8,345,1,345,3,345,7000,8,345,1,345,3,345,7003,8,345,1,346,1, + 346,1,346,1,346,1,347,1,347,1,347,1,348,1,348,1,348,1,348,3,348, + 7016,8,348,1,349,1,349,1,350,1,350,3,350,7022,8,350,1,350,3,350, + 7025,8,350,1,351,1,351,1,352,1,352,1,352,1,352,3,352,7033,8,352, + 1,353,1,353,1,354,1,354,1,354,3,354,7040,8,354,1,355,1,355,1,356, + 1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356, + 1,356,1,356,4,356,7058,8,356,11,356,12,356,7059,1,357,1,357,1,357, + 1,357,1,357,3,357,7067,8,357,3,357,7069,8,357,1,358,1,358,1,358, + 4,358,7074,8,358,11,358,12,358,7075,3,358,7078,8,358,1,359,1,359, + 3,359,7082,8,359,1,360,1,360,1,360,5,360,7087,8,360,10,360,12,360, + 7090,9,360,1,361,1,361,1,361,3,361,7095,8,361,1,362,1,362,1,362, + 1,362,1,362,1,362,1,362,1,362,1,362,3,362,7106,8,362,1,363,1,363, + 1,363,1,363,3,363,7112,8,363,1,364,1,364,1,364,1,364,1,364,1,364, + 1,364,3,364,7121,8,364,1,365,1,365,1,366,1,366,3,366,7127,8,366, + 1,367,3,367,7130,8,367,1,367,1,367,3,367,7134,8,367,1,367,4,367, + 7137,8,367,11,367,12,367,7138,1,367,3,367,7142,8,367,1,367,1,367, + 3,367,7146,8,367,1,367,1,367,3,367,7150,8,367,3,367,7152,8,367,1, + 368,1,368,1,369,3,369,7157,8,369,1,369,1,369,1,370,3,370,7162,8, + 370,1,370,1,370,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, + 1,371,3,371,7175,8,371,1,371,3,371,7178,8,371,1,372,1,372,3,372, + 7182,8,372,1,372,3,372,7185,8,372,1,372,3,372,7188,8,372,1,372,1, + 372,1,372,3,372,7193,8,372,1,372,1,372,1,372,3,372,7198,8,372,1, + 372,1,372,1,372,1,372,3,372,7204,8,372,1,372,3,372,7207,8,372,1, + 372,1,372,1,372,3,372,7212,8,372,1,372,3,372,7215,8,372,1,372,1, + 372,1,372,3,372,7220,8,372,1,372,3,372,7223,8,372,1,372,1,372,3, + 372,7227,8,372,1,372,5,372,7230,8,372,10,372,12,372,7233,9,372,1, + 372,1,372,3,372,7237,8,372,1,372,5,372,7240,8,372,10,372,12,372, + 7243,9,372,1,372,1,372,3,372,7247,8,372,1,372,3,372,7250,8,372,1, + 372,5,372,7253,8,372,10,372,12,372,7256,9,372,1,372,1,372,3,372, + 7260,8,372,1,372,5,372,7263,8,372,10,372,12,372,7266,9,372,1,372, + 1,372,1,372,3,372,7271,8,372,1,372,1,372,1,372,3,372,7276,8,372, + 1,372,1,372,1,372,3,372,7281,8,372,1,372,1,372,1,372,3,372,7286, + 8,372,1,372,1,372,3,372,7290,8,372,1,372,3,372,7293,8,372,1,372, + 1,372,1,372,3,372,7298,8,372,1,372,1,372,3,372,7302,8,372,1,372, + 1,372,3,372,7306,8,372,1,373,1,373,1,373,1,373,5,373,7312,8,373, + 10,373,12,373,7315,9,373,1,373,1,373,1,374,1,374,3,374,7321,8,374, + 1,374,1,374,3,374,7325,8,374,1,374,1,374,1,374,3,374,7330,8,374, + 1,374,1,374,1,374,3,374,7335,8,374,1,374,1,374,3,374,7339,8,374, + 3,374,7341,8,374,1,374,3,374,7344,8,374,1,375,1,375,1,375,1,375, + 1,376,1,376,1,376,1,376,1,376,1,376,1,377,1,377,1,377,1,377,3,377, + 7360,8,377,1,377,1,377,1,378,1,378,1,378,1,378,5,378,7368,8,378, + 10,378,12,378,7371,9,378,1,378,1,378,1,379,1,379,1,379,5,379,7378, + 8,379,10,379,12,379,7381,9,379,1,380,1,380,1,380,1,380,5,380,7387, + 8,380,10,380,12,380,7390,9,380,1,381,1,381,1,381,1,381,5,381,7396, + 8,381,10,381,12,381,7399,9,381,1,381,1,381,1,382,1,382,3,382,7405, + 8,382,1,383,1,383,1,383,5,383,7410,8,383,10,383,12,383,7413,9,383, + 1,384,1,384,1,384,5,384,7418,8,384,10,384,12,384,7421,9,384,1,385, + 1,385,1,385,5,385,7426,8,385,10,385,12,385,7429,9,385,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7440,8,386,1,386, + 1,386,1,386,1,386,1,386,3,386,7447,8,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,3,386,7457,8,386,1,387,1,387,1,387,3,387, + 7462,8,387,1,387,3,387,7465,8,387,1,387,1,387,1,387,3,387,7470,8, + 387,1,387,3,387,7473,8,387,1,388,1,388,1,388,1,389,1,389,1,389,1, + 389,1,390,1,390,1,390,1,391,1,391,1,391,1,391,1,391,1,391,1,391, + 1,391,1,391,1,391,3,391,7495,8,391,1,391,1,391,1,391,1,391,1,391, + 1,391,1,391,3,391,7504,8,391,1,391,3,391,7507,8,391,1,392,1,392, + 1,392,3,392,7512,8,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 4,392,7543,8,392,11,392,12,392,7544,1,392,1,392,3,392,7549,8,392, + 1,392,1,392,1,392,1,392,1,392,4,392,7556,8,392,11,392,12,392,7557, + 1,392,1,392,3,392,7562,8,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,3,392,7571,8,392,1,392,1,392,1,392,1,392,1,392,1,392,3,392, + 7579,8,392,1,392,1,392,1,392,3,392,7584,8,392,1,392,1,392,1,392, + 1,392,1,392,1,392,3,392,7592,8,392,1,392,1,392,1,392,3,392,7597, + 8,392,1,392,1,392,1,392,3,392,7602,8,392,3,392,7604,8,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,3,392,7613,8,392,1,392,1,392, + 1,392,3,392,7618,8,392,1,392,1,392,1,392,1,392,1,392,1,392,3,392, + 7626,8,392,1,392,1,392,1,392,3,392,7631,8,392,1,392,1,392,1,392, + 1,392,1,392,1,392,3,392,7639,8,392,1,392,1,392,1,392,1,392,1,392, + 1,392,3,392,7647,8,392,1,392,3,392,7650,8,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,3,392,7660,8,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,3,392,7678,8,392,1,392,3,392,7681,8,392,1,392,3,392, + 7684,8,392,1,392,1,392,3,392,7688,8,392,1,393,1,393,1,393,1,393, + 1,393,1,394,1,394,1,394,1,394,5,394,7699,8,394,10,394,12,394,7702, + 9,394,1,394,1,394,1,394,1,394,1,394,3,394,7709,8,394,1,395,1,395, + 3,395,7713,8,395,1,396,1,396,1,396,3,396,7718,8,396,1,396,1,396, + 1,396,3,396,7723,8,396,1,396,1,396,1,396,1,396,3,396,7729,8,396, + 1,396,1,396,1,396,3,396,7734,8,396,1,396,1,396,3,396,7738,8,396, + 1,396,1,396,1,396,3,396,7743,8,396,1,396,1,396,1,396,3,396,7748, + 8,396,1,396,1,396,1,396,3,396,7753,8,396,1,396,1,396,1,396,1,396, + 1,396,1,396,5,396,7761,8,396,10,396,12,396,7764,9,396,3,396,7766, + 8,396,1,396,1,396,3,396,7770,8,396,1,396,1,396,3,396,7774,8,396, + 1,397,1,397,1,397,1,397,1,397,3,397,7781,8,397,1,397,1,397,3,397, + 7785,8,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397, + 1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397, + 1,397,1,397,1,397,1,397,1,397,1,397,1,397,3,397,7814,8,397,1,398, + 1,398,1,398,1,398,1,398,1,398,3,398,7822,8,398,1,399,3,399,7825, + 8,399,1,399,3,399,7828,8,399,1,399,3,399,7831,8,399,1,399,3,399, + 7834,8,399,1,400,1,400,1,401,1,401,1,401,1,402,1,402,1,403,1,403, + 3,403,7845,8,403,1,404,1,404,1,404,1,404,1,404,1,405,1,405,1,405, + 1,405,1,405,1,405,1,405,3,405,7859,8,405,1,406,1,406,1,406,1,406, + 1,406,5,406,7866,8,406,10,406,12,406,7869,9,406,1,407,1,407,1,407, + 1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407, + 1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,3,407, + 7895,8,407,1,408,1,408,1,408,1,408,1,408,1,409,1,409,1,409,5,409, + 7905,8,409,10,409,12,409,7908,9,409,1,410,1,410,1,410,3,410,7913, + 8,410,1,411,1,411,1,411,1,411,1,411,1,411,3,411,7921,8,411,1,411, + 1,411,1,411,3,411,7926,8,411,1,411,1,411,1,411,1,411,5,411,7932, + 8,411,10,411,12,411,7935,9,411,1,412,1,412,1,412,1,412,1,412,3,412, + 7942,8,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, + 1,412,1,412,3,412,7955,8,412,1,412,1,412,1,412,1,412,3,412,7961, + 8,412,1,412,1,412,1,412,1,412,3,412,7967,8,412,1,412,1,412,1,412, + 1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,3,412, + 7982,8,412,1,412,1,412,3,412,7986,8,412,1,412,1,412,1,412,1,412, + 3,412,7992,8,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,5,412, + 8001,8,412,10,412,12,412,8004,9,412,1,413,1,413,1,413,1,413,1,413, + 1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413, + 5,413,8022,8,413,10,413,12,413,8025,9,413,1,413,1,413,1,413,1,413, + 1,413,1,413,1,413,4,413,8034,8,413,11,413,12,413,8035,1,413,1,413, + 1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413, + 1,413,1,413,1,413,3,413,8054,8,413,1,413,1,413,1,413,1,413,1,413, + 1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,5,413, + 8071,8,413,10,413,12,413,8074,9,413,1,414,1,414,1,415,1,415,1,415, + 1,415,1,415,1,415,1,415,1,415,3,415,8086,8,415,1,416,1,416,1,416, + 1,416,1,416,1,416,1,416,3,416,8095,8,416,1,417,1,417,1,417,1,417, + 1,417,1,417,1,417,3,417,8104,8,417,1,418,1,418,1,418,1,418,1,418, + 1,418,1,418,3,418,8113,8,418,1,419,1,419,1,420,1,420,1,420,1,420, + 1,420,3,420,8122,8,420,1,421,1,421,1,422,1,422,1,423,1,423,1,424, + 1,424,1,425,1,425,1,426,1,426,1,427,1,427,1,427,0,5,214,216,822, + 824,826,428,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, 120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150, @@ -49260,2896 +49535,2914 @@ export class MySqlParser extends SQLParserBase { 728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758, 760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790, 792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822, - 824,826,828,830,832,834,836,838,840,842,844,846,0,160,2,0,39,39, - 152,152,2,0,508,508,514,514,3,0,69,69,161,161,182,182,3,0,42,42, - 357,357,430,430,4,0,42,42,389,389,505,505,595,595,4,0,208,208,210, - 210,216,216,649,649,2,0,494,494,882,882,2,0,79,79,143,143,2,0,16, - 16,306,306,3,0,44,44,86,86,185,185,2,0,406,406,538,538,3,0,486,486, - 661,661,670,670,2,0,364,364,436,436,2,0,325,325,450,450,2,0,42,42, - 871,872,2,0,37,37,678,678,2,0,323,323,418,418,2,0,435,435,686,686, - 3,0,80,80,85,85,126,126,2,0,82,82,92,92,2,0,69,69,161,161,3,0,42, - 42,374,374,403,403,3,0,42,42,370,370,802,802,2,0,648,648,685,685, - 3,0,408,408,526,526,597,597,2,0,329,329,522,522,1,0,871,872,2,0, - 882,882,889,889,2,0,82,82,360,360,2,0,523,523,882,882,2,0,524,524, - 882,882,3,0,402,402,445,445,502,502,7,0,42,42,342,342,345,345,374, - 374,403,403,554,554,889,889,2,0,494,494,506,506,1,0,872,873,2,0, - 6,6,51,51,2,0,5,5,81,81,2,0,27,27,31,31,4,0,42,42,357,357,430,430, - 434,434,2,0,368,368,375,375,2,0,369,369,425,425,2,0,13,13,176,176, - 2,0,194,194,690,690,2,0,22,22,146,146,3,0,43,43,76,76,107,107,2, - 0,7,7,49,49,2,0,107,107,347,347,2,0,337,337,398,398,2,0,102,102, - 587,587,2,0,43,43,107,107,3,0,59,59,181,181,828,828,2,0,185,185, - 594,594,2,0,159,159,503,503,4,0,402,402,445,445,501,501,542,542, - 2,0,402,402,501,501,2,0,14,14,45,45,3,0,66,66,79,79,187,187,2,0, - 35,35,84,84,2,0,98,98,150,150,2,0,7,7,49,50,1,0,637,638,2,0,173, - 173,752,752,2,0,413,413,593,593,2,0,228,228,453,453,2,0,563,563, - 598,598,8,0,108,108,455,455,459,460,462,462,464,464,467,476,499, - 499,557,557,6,0,456,458,461,461,463,463,465,465,477,477,558,558, - 7,0,109,109,411,411,416,416,454,454,466,466,573,573,617,617,2,0, - 116,116,882,882,2,0,118,119,507,507,7,0,499,499,557,557,606,609, - 611,611,619,619,622,628,630,632,6,0,558,558,610,610,612,612,614, - 616,618,618,620,620,7,0,412,412,416,416,573,573,613,613,617,617, - 621,621,629,629,3,0,70,70,118,119,507,507,2,0,438,438,639,639,2, - 0,633,633,635,635,2,0,317,317,640,640,2,0,91,91,577,577,2,0,51,51, - 362,362,3,0,32,32,61,61,180,180,2,0,15,15,340,340,2,0,678,678,835, - 835,3,0,132,132,173,173,409,409,3,0,6,6,51,51,492,492,3,0,13,13, - 20,20,188,188,2,0,42,42,122,122,2,0,104,104,183,183,1,0,873,874, - 2,0,333,333,598,598,2,0,40,40,684,684,2,0,392,392,549,549,2,0,115, - 115,450,450,3,0,413,413,531,531,893,894,2,0,841,841,857,857,2,0, - 318,318,559,559,2,0,68,68,80,80,3,0,132,132,178,178,385,385,2,0, - 493,493,645,645,2,0,383,383,688,688,3,0,82,82,93,93,426,426,4,0, - 413,413,450,450,531,532,593,593,2,0,645,645,683,683,2,0,349,349, - 548,548,6,0,228,228,380,380,382,382,410,410,556,556,599,599,2,0, - 45,46,62,62,3,0,442,442,663,663,666,666,10,0,332,332,339,339,351, - 353,359,359,487,487,495,495,650,650,657,657,822,822,832,832,2,0, - 36,36,170,170,2,0,117,117,831,831,11,0,332,332,339,339,351,353,359, - 359,487,487,495,495,578,578,650,650,657,657,822,822,832,832,2,0, - 870,870,891,892,1,0,892,893,2,0,348,348,797,808,3,0,871,874,883, - 883,885,885,2,0,63,63,179,179,2,0,116,116,886,886,5,0,26,26,224, - 226,233,233,235,238,498,498,2,0,26,26,224,224,2,0,26,26,224,225, - 1,0,198,209,3,0,184,184,197,197,596,596,2,0,213,218,403,403,6,0, - 219,219,230,230,232,232,234,234,241,241,321,322,4,0,220,223,228, - 229,231,231,319,319,2,0,155,155,239,239,2,0,442,442,813,821,2,0, - 228,228,498,498,5,0,202,202,208,208,219,220,222,222,442,442,1,0, - 216,217,2,0,184,184,596,596,2,0,202,202,208,208,2,0,189,189,682, - 682,2,0,287,288,294,294,3,0,152,152,285,288,303,303,1,0,297,298, - 3,0,18,18,96,96,177,177,2,0,224,224,228,228,2,0,219,220,222,222, - 3,0,14,14,45,45,830,830,3,0,258,258,270,271,281,281,3,0,259,261, - 277,280,282,284,2,0,267,267,269,269,2,0,265,265,268,268,2,0,263, - 264,274,276,2,0,134,134,587,587,2,0,405,405,539,539,2,0,512,512, - 529,529,2,0,114,114,860,860,3,0,63,63,179,179,674,674,2,0,139,139, - 151,151,3,0,7,7,309,309,602,602,3,0,114,114,853,854,860,861,1,0, - 850,856,2,0,228,228,756,796,1,0,809,812,5,0,717,718,734,736,743, - 743,749,750,752,752,1,0,696,703,3,0,219,223,236,236,239,239,75,0, - 12,12,15,15,19,19,30,30,36,37,42,42,48,48,55,55,57,57,59,59,74,74, - 95,95,117,117,122,122,125,125,131,131,160,160,170,170,241,241,255, - 262,266,266,270,271,277,284,304,309,311,329,331,343,345,376,378, - 393,395,400,402,404,406,410,413,415,417,426,428,428,430,434,436, - 454,456,463,465,473,475,476,478,498,500,506,508,510,512,522,525, - 530,533,538,540,542,544,554,556,562,565,572,575,575,577,605,633, - 647,649,665,667,674,676,685,687,688,690,695,704,704,706,707,709, - 712,714,716,719,721,726,727,729,733,737,738,740,742,744,744,746, - 748,751,751,753,755,802,802,822,822,825,825,832,833,838,838,24,0, - 39,39,98,98,150,150,152,152,219,221,223,223,253,254,262,265,267, - 269,272,276,296,296,435,435,686,686,696,703,746,746,813,813,816, - 821,823,824,826,827,829,831,834,834,836,836,840,840,856,856,9446, - 0,851,1,0,0,0,2,861,1,0,0,0,4,870,1,0,0,0,6,872,1,0,0,0,8,914,1, - 0,0,0,10,933,1,0,0,0,12,944,1,0,0,0,14,960,1,0,0,0,16,965,1,0,0, - 0,18,977,1,0,0,0,20,1012,1,0,0,0,22,1022,1,0,0,0,24,1024,1,0,0,0, - 26,1036,1,0,0,0,28,1066,1,0,0,0,30,1102,1,0,0,0,32,1153,1,0,0,0, - 34,1182,1,0,0,0,36,1218,1,0,0,0,38,1232,1,0,0,0,40,1239,1,0,0,0, - 42,1336,1,0,0,0,44,1338,1,0,0,0,46,1375,1,0,0,0,48,1439,1,0,0,0, - 50,1464,1,0,0,0,52,1470,1,0,0,0,54,1492,1,0,0,0,56,1579,1,0,0,0, - 58,1586,1,0,0,0,60,1588,1,0,0,0,62,1593,1,0,0,0,64,1633,1,0,0,0, - 66,1639,1,0,0,0,68,1641,1,0,0,0,70,1662,1,0,0,0,72,1669,1,0,0,0, - 74,1671,1,0,0,0,76,1696,1,0,0,0,78,1699,1,0,0,0,80,1704,1,0,0,0, - 82,1730,1,0,0,0,84,1746,1,0,0,0,86,1748,1,0,0,0,88,1842,1,0,0,0, - 90,1845,1,0,0,0,92,1857,1,0,0,0,94,1861,1,0,0,0,96,1911,1,0,0,0, - 98,1913,1,0,0,0,100,1941,1,0,0,0,102,1951,1,0,0,0,104,2138,1,0,0, - 0,106,2140,1,0,0,0,108,2142,1,0,0,0,110,2145,1,0,0,0,112,2220,1, - 0,0,0,114,2243,1,0,0,0,116,2391,1,0,0,0,118,2396,1,0,0,0,120,2398, - 1,0,0,0,122,2408,1,0,0,0,124,2464,1,0,0,0,126,2484,1,0,0,0,128,2486, - 1,0,0,0,130,2521,1,0,0,0,132,2530,1,0,0,0,134,2537,1,0,0,0,136,2560, - 1,0,0,0,138,2569,1,0,0,0,140,2584,1,0,0,0,142,2606,1,0,0,0,144,2662, - 1,0,0,0,146,2958,1,0,0,0,148,3058,1,0,0,0,150,3060,1,0,0,0,152,3067, - 1,0,0,0,154,3074,1,0,0,0,156,3097,1,0,0,0,158,3107,1,0,0,0,160,3114, - 1,0,0,0,162,3121,1,0,0,0,164,3128,1,0,0,0,166,3137,1,0,0,0,168,3149, - 1,0,0,0,170,3162,1,0,0,0,172,3169,1,0,0,0,174,3185,1,0,0,0,176,3212, - 1,0,0,0,178,3214,1,0,0,0,180,3224,1,0,0,0,182,3228,1,0,0,0,184,3234, - 1,0,0,0,186,3246,1,0,0,0,188,3248,1,0,0,0,190,3255,1,0,0,0,192,3257, - 1,0,0,0,194,3306,1,0,0,0,196,3315,1,0,0,0,198,3317,1,0,0,0,200,3328, - 1,0,0,0,202,3334,1,0,0,0,204,3408,1,0,0,0,206,3471,1,0,0,0,208,3489, - 1,0,0,0,210,3573,1,0,0,0,212,3576,1,0,0,0,214,3588,1,0,0,0,216,3608, - 1,0,0,0,218,3636,1,0,0,0,220,3640,1,0,0,0,222,3642,1,0,0,0,224,3652, - 1,0,0,0,226,3672,1,0,0,0,228,3679,1,0,0,0,230,3681,1,0,0,0,232,3692, - 1,0,0,0,234,3701,1,0,0,0,236,3707,1,0,0,0,238,3730,1,0,0,0,240,3732, - 1,0,0,0,242,3768,1,0,0,0,244,3823,1,0,0,0,246,3832,1,0,0,0,248,3852, - 1,0,0,0,250,3864,1,0,0,0,252,3868,1,0,0,0,254,3879,1,0,0,0,256,3912, - 1,0,0,0,258,3933,1,0,0,0,260,3943,1,0,0,0,262,3947,1,0,0,0,264,3973, - 1,0,0,0,266,4014,1,0,0,0,268,4021,1,0,0,0,270,4023,1,0,0,0,272,4027, - 1,0,0,0,274,4044,1,0,0,0,276,4095,1,0,0,0,278,4104,1,0,0,0,280,4114, - 1,0,0,0,282,4116,1,0,0,0,284,4149,1,0,0,0,286,4157,1,0,0,0,288,4174, - 1,0,0,0,290,4190,1,0,0,0,292,4227,1,0,0,0,294,4233,1,0,0,0,296,4242, - 1,0,0,0,298,4255,1,0,0,0,300,4259,1,0,0,0,302,4283,1,0,0,0,304,4285, - 1,0,0,0,306,4289,1,0,0,0,308,4291,1,0,0,0,310,4299,1,0,0,0,312,4337, - 1,0,0,0,314,4351,1,0,0,0,316,4359,1,0,0,0,318,4363,1,0,0,0,320,4369, - 1,0,0,0,322,4383,1,0,0,0,324,4386,1,0,0,0,326,4404,1,0,0,0,328,4408, - 1,0,0,0,330,4424,1,0,0,0,332,4426,1,0,0,0,334,4438,1,0,0,0,336,4442, - 1,0,0,0,338,4459,1,0,0,0,340,4476,1,0,0,0,342,4479,1,0,0,0,344,4489, - 1,0,0,0,346,4493,1,0,0,0,348,4503,1,0,0,0,350,4506,1,0,0,0,352,4511, - 1,0,0,0,354,4531,1,0,0,0,356,4533,1,0,0,0,358,4550,1,0,0,0,360,4559, - 1,0,0,0,362,4568,1,0,0,0,364,4570,1,0,0,0,366,4584,1,0,0,0,368,4598, - 1,0,0,0,370,4613,1,0,0,0,372,4622,1,0,0,0,374,4647,1,0,0,0,376,4662, - 1,0,0,0,378,4681,1,0,0,0,380,4711,1,0,0,0,382,4713,1,0,0,0,384,4715, - 1,0,0,0,386,4717,1,0,0,0,388,4732,1,0,0,0,390,4761,1,0,0,0,392,4763, - 1,0,0,0,394,4765,1,0,0,0,396,4767,1,0,0,0,398,4782,1,0,0,0,400,4784, - 1,0,0,0,402,4851,1,0,0,0,404,4853,1,0,0,0,406,4859,1,0,0,0,408,4886, - 1,0,0,0,410,4900,1,0,0,0,412,4911,1,0,0,0,414,4913,1,0,0,0,416,4919, - 1,0,0,0,418,4929,1,0,0,0,420,4933,1,0,0,0,422,4940,1,0,0,0,424,4944, - 1,0,0,0,426,4950,1,0,0,0,428,4957,1,0,0,0,430,4963,1,0,0,0,432,4969, - 1,0,0,0,434,4974,1,0,0,0,436,5019,1,0,0,0,438,5040,1,0,0,0,440,5065, - 1,0,0,0,442,5068,1,0,0,0,444,5074,1,0,0,0,446,5090,1,0,0,0,448,5105, - 1,0,0,0,450,5111,1,0,0,0,452,5141,1,0,0,0,454,5143,1,0,0,0,456,5150, - 1,0,0,0,458,5162,1,0,0,0,460,5168,1,0,0,0,462,5193,1,0,0,0,464,5197, - 1,0,0,0,466,5201,1,0,0,0,468,5212,1,0,0,0,470,5220,1,0,0,0,472,5283, - 1,0,0,0,474,5342,1,0,0,0,476,5444,1,0,0,0,478,5454,1,0,0,0,480,5456, - 1,0,0,0,482,5474,1,0,0,0,484,5498,1,0,0,0,486,5522,1,0,0,0,488,5529, - 1,0,0,0,490,5549,1,0,0,0,492,5558,1,0,0,0,494,5620,1,0,0,0,496,5622, - 1,0,0,0,498,5626,1,0,0,0,500,5660,1,0,0,0,502,5662,1,0,0,0,504,5665, - 1,0,0,0,506,5729,1,0,0,0,508,5748,1,0,0,0,510,5775,1,0,0,0,512,5779, - 1,0,0,0,514,5800,1,0,0,0,516,5810,1,0,0,0,518,5820,1,0,0,0,520,5860, - 1,0,0,0,522,5862,1,0,0,0,524,5865,1,0,0,0,526,5895,1,0,0,0,528,5897, - 1,0,0,0,530,5900,1,0,0,0,532,6000,1,0,0,0,534,6018,1,0,0,0,536,6020, - 1,0,0,0,538,6072,1,0,0,0,540,6074,1,0,0,0,542,6083,1,0,0,0,544,6089, - 1,0,0,0,546,6096,1,0,0,0,548,6111,1,0,0,0,550,6120,1,0,0,0,552,6122, - 1,0,0,0,554,6143,1,0,0,0,556,6148,1,0,0,0,558,6158,1,0,0,0,560,6164, - 1,0,0,0,562,6198,1,0,0,0,564,6252,1,0,0,0,566,6438,1,0,0,0,568,6450, - 1,0,0,0,570,6466,1,0,0,0,572,6472,1,0,0,0,574,6491,1,0,0,0,576,6504, - 1,0,0,0,578,6518,1,0,0,0,580,6520,1,0,0,0,582,6523,1,0,0,0,584,6547, - 1,0,0,0,586,6559,1,0,0,0,588,6565,1,0,0,0,590,6577,1,0,0,0,592,6591, - 1,0,0,0,594,6593,1,0,0,0,596,6601,1,0,0,0,598,6609,1,0,0,0,600,6611, - 1,0,0,0,602,6613,1,0,0,0,604,6653,1,0,0,0,606,6660,1,0,0,0,608,6662, - 1,0,0,0,610,6685,1,0,0,0,612,6691,1,0,0,0,614,6701,1,0,0,0,616,6710, - 1,0,0,0,618,6713,1,0,0,0,620,6716,1,0,0,0,622,6737,1,0,0,0,624,6758, - 1,0,0,0,626,6766,1,0,0,0,628,6778,1,0,0,0,630,6786,1,0,0,0,632,6824, - 1,0,0,0,634,6836,1,0,0,0,636,6838,1,0,0,0,638,6840,1,0,0,0,640,6842, - 1,0,0,0,642,6844,1,0,0,0,644,6846,1,0,0,0,646,6848,1,0,0,0,648,6850, - 1,0,0,0,650,6852,1,0,0,0,652,6860,1,0,0,0,654,6862,1,0,0,0,656,6864, - 1,0,0,0,658,6866,1,0,0,0,660,6868,1,0,0,0,662,6876,1,0,0,0,664,6878, - 1,0,0,0,666,6888,1,0,0,0,668,6904,1,0,0,0,670,6906,1,0,0,0,672,6929, - 1,0,0,0,674,6931,1,0,0,0,676,6933,1,0,0,0,678,6935,1,0,0,0,680,6937, - 1,0,0,0,682,6945,1,0,0,0,684,6955,1,0,0,0,686,6960,1,0,0,0,688,6964, - 1,0,0,0,690,6971,1,0,0,0,692,6973,1,0,0,0,694,6980,1,0,0,0,696,6982, - 1,0,0,0,698,6988,1,0,0,0,700,6990,1,0,0,0,702,6995,1,0,0,0,704,6997, - 1,0,0,0,706,6999,1,0,0,0,708,7017,1,0,0,0,710,7033,1,0,0,0,712,7035, - 1,0,0,0,714,7039,1,0,0,0,716,7050,1,0,0,0,718,7061,1,0,0,0,720,7067, - 1,0,0,0,722,7069,1,0,0,0,724,7073,1,0,0,0,726,7098,1,0,0,0,728,7100, - 1,0,0,0,730,7103,1,0,0,0,732,7108,1,0,0,0,734,7124,1,0,0,0,736,7252, - 1,0,0,0,738,7254,1,0,0,0,740,7287,1,0,0,0,742,7292,1,0,0,0,744,7296, - 1,0,0,0,746,7302,1,0,0,0,748,7310,1,0,0,0,750,7321,1,0,0,0,752,7329, - 1,0,0,0,754,7338,1,0,0,0,756,7351,1,0,0,0,758,7353,1,0,0,0,760,7361, - 1,0,0,0,762,7369,1,0,0,0,764,7403,1,0,0,0,766,7419,1,0,0,0,768,7421, - 1,0,0,0,770,7424,1,0,0,0,772,7428,1,0,0,0,774,7453,1,0,0,0,776,7634, - 1,0,0,0,778,7636,1,0,0,0,780,7655,1,0,0,0,782,7657,1,0,0,0,784,7720, - 1,0,0,0,786,7760,1,0,0,0,788,7762,1,0,0,0,790,7771,1,0,0,0,792,7782, - 1,0,0,0,794,7784,1,0,0,0,796,7787,1,0,0,0,798,7791,1,0,0,0,800,7793, - 1,0,0,0,802,7805,1,0,0,0,804,7807,1,0,0,0,806,7841,1,0,0,0,808,7843, - 1,0,0,0,810,7848,1,0,0,0,812,7859,1,0,0,0,814,7872,1,0,0,0,816,7883, - 1,0,0,0,818,8000,1,0,0,0,820,8022,1,0,0,0,822,8032,1,0,0,0,824,8041, - 1,0,0,0,826,8050,1,0,0,0,828,8059,1,0,0,0,830,8061,1,0,0,0,832,8068, - 1,0,0,0,834,8070,1,0,0,0,836,8072,1,0,0,0,838,8074,1,0,0,0,840,8076, - 1,0,0,0,842,8078,1,0,0,0,844,8080,1,0,0,0,846,8082,1,0,0,0,848,850, - 3,2,1,0,849,848,1,0,0,0,850,853,1,0,0,0,851,849,1,0,0,0,851,852, - 1,0,0,0,852,854,1,0,0,0,853,851,1,0,0,0,854,855,5,0,0,1,855,1,1, - 0,0,0,856,858,3,4,2,0,857,859,5,869,0,0,858,857,1,0,0,0,858,859, - 1,0,0,0,859,862,1,0,0,0,860,862,3,6,3,0,861,856,1,0,0,0,861,860, - 1,0,0,0,862,3,1,0,0,0,863,871,3,8,4,0,864,871,3,10,5,0,865,871,3, - 12,6,0,866,871,3,14,7,0,867,871,3,16,8,0,868,871,3,20,10,0,869,871, - 3,22,11,0,870,863,1,0,0,0,870,864,1,0,0,0,870,865,1,0,0,0,870,866, - 1,0,0,0,870,867,1,0,0,0,870,868,1,0,0,0,870,869,1,0,0,0,871,5,1, - 0,0,0,872,873,5,869,0,0,873,7,1,0,0,0,874,915,3,24,12,0,875,915, - 3,26,13,0,876,915,3,28,14,0,877,915,3,30,15,0,878,915,3,32,16,0, - 879,915,3,34,17,0,880,915,3,36,18,0,881,915,3,40,20,0,882,915,3, - 42,21,0,883,915,3,44,22,0,884,915,3,46,23,0,885,915,3,48,24,0,886, - 915,3,54,27,0,887,915,3,38,19,0,888,915,3,126,63,0,889,915,3,128, - 64,0,890,915,3,130,65,0,891,915,3,132,66,0,892,915,3,134,67,0,893, - 915,3,136,68,0,894,915,3,138,69,0,895,915,3,140,70,0,896,915,3,142, - 71,0,897,915,3,144,72,0,898,915,3,150,75,0,899,915,3,152,76,0,900, - 915,3,154,77,0,901,915,3,156,78,0,902,915,3,158,79,0,903,915,3,160, - 80,0,904,915,3,162,81,0,905,915,3,164,82,0,906,915,3,166,83,0,907, - 915,3,168,84,0,908,915,3,170,85,0,909,915,3,172,86,0,910,915,3,174, - 87,0,911,915,3,176,88,0,912,915,3,178,89,0,913,915,3,182,91,0,914, - 874,1,0,0,0,914,875,1,0,0,0,914,876,1,0,0,0,914,877,1,0,0,0,914, - 878,1,0,0,0,914,879,1,0,0,0,914,880,1,0,0,0,914,881,1,0,0,0,914, - 882,1,0,0,0,914,883,1,0,0,0,914,884,1,0,0,0,914,885,1,0,0,0,914, - 886,1,0,0,0,914,887,1,0,0,0,914,888,1,0,0,0,914,889,1,0,0,0,914, - 890,1,0,0,0,914,891,1,0,0,0,914,892,1,0,0,0,914,893,1,0,0,0,914, - 894,1,0,0,0,914,895,1,0,0,0,914,896,1,0,0,0,914,897,1,0,0,0,914, - 898,1,0,0,0,914,899,1,0,0,0,914,900,1,0,0,0,914,901,1,0,0,0,914, - 902,1,0,0,0,914,903,1,0,0,0,914,904,1,0,0,0,914,905,1,0,0,0,914, - 906,1,0,0,0,914,907,1,0,0,0,914,908,1,0,0,0,914,909,1,0,0,0,914, - 910,1,0,0,0,914,911,1,0,0,0,914,912,1,0,0,0,914,913,1,0,0,0,915, - 9,1,0,0,0,916,934,3,210,105,0,917,934,3,212,106,0,918,934,3,192, - 96,0,919,934,3,220,110,0,920,934,3,186,93,0,921,934,3,208,104,0, - 922,934,3,184,92,0,923,934,3,198,99,0,924,934,3,202,101,0,925,934, - 3,204,102,0,926,934,3,206,103,0,927,934,3,188,94,0,928,934,3,190, - 95,0,929,934,3,252,126,0,930,934,3,222,111,0,931,934,3,626,313,0, - 932,934,3,628,314,0,933,916,1,0,0,0,933,917,1,0,0,0,933,918,1,0, - 0,0,933,919,1,0,0,0,933,920,1,0,0,0,933,921,1,0,0,0,933,922,1,0, - 0,0,933,923,1,0,0,0,933,924,1,0,0,0,933,925,1,0,0,0,933,926,1,0, - 0,0,933,927,1,0,0,0,933,928,1,0,0,0,933,929,1,0,0,0,933,930,1,0, - 0,0,933,931,1,0,0,0,933,932,1,0,0,0,934,11,1,0,0,0,935,945,3,332, - 166,0,936,945,3,334,167,0,937,945,3,336,168,0,938,945,3,338,169, - 0,939,945,3,340,170,0,940,945,3,342,171,0,941,945,3,344,172,0,942, - 945,3,346,173,0,943,945,3,348,174,0,944,935,1,0,0,0,944,936,1,0, - 0,0,944,937,1,0,0,0,944,938,1,0,0,0,944,939,1,0,0,0,944,940,1,0, - 0,0,944,941,1,0,0,0,944,942,1,0,0,0,944,943,1,0,0,0,945,13,1,0,0, - 0,946,961,3,364,182,0,947,961,3,366,183,0,948,961,3,368,184,0,949, - 961,3,370,185,0,950,961,3,372,186,0,951,961,3,374,187,0,952,961, - 3,376,188,0,953,961,3,378,189,0,954,961,3,414,207,0,955,961,3,416, - 208,0,956,961,3,418,209,0,957,961,3,420,210,0,958,961,3,422,211, - 0,959,961,3,424,212,0,960,946,1,0,0,0,960,947,1,0,0,0,960,948,1, - 0,0,0,960,949,1,0,0,0,960,950,1,0,0,0,960,951,1,0,0,0,960,952,1, - 0,0,0,960,953,1,0,0,0,960,954,1,0,0,0,960,955,1,0,0,0,960,956,1, - 0,0,0,960,957,1,0,0,0,960,958,1,0,0,0,960,959,1,0,0,0,961,15,1,0, - 0,0,962,966,3,426,213,0,963,966,3,428,214,0,964,966,3,430,215,0, - 965,962,1,0,0,0,965,963,1,0,0,0,965,964,1,0,0,0,966,17,1,0,0,0,967, - 978,3,434,217,0,968,978,3,436,218,0,969,978,3,438,219,0,970,978, - 3,442,221,0,971,978,3,444,222,0,972,978,3,446,223,0,973,978,3,450, - 225,0,974,978,3,440,220,0,975,978,3,448,224,0,976,978,3,452,226, - 0,977,967,1,0,0,0,977,968,1,0,0,0,977,969,1,0,0,0,977,970,1,0,0, - 0,977,971,1,0,0,0,977,972,1,0,0,0,977,973,1,0,0,0,977,974,1,0,0, - 0,977,975,1,0,0,0,977,976,1,0,0,0,978,19,1,0,0,0,979,1013,3,470, - 235,0,980,1013,3,472,236,0,981,1013,3,474,237,0,982,1013,3,476,238, - 0,983,1013,3,480,240,0,984,1013,3,492,246,0,985,1013,3,494,247,0, - 986,1013,3,482,241,0,987,1013,3,484,242,0,988,1013,3,486,243,0,989, - 1013,3,488,244,0,990,1013,3,538,269,0,991,1013,3,540,270,0,992,1013, - 3,542,271,0,993,1013,3,544,272,0,994,1013,3,546,273,0,995,1013,3, - 552,276,0,996,1013,3,556,278,0,997,1013,3,558,279,0,998,1013,3,560, - 280,0,999,1013,3,562,281,0,1000,1013,3,564,282,0,1001,1013,3,566, - 283,0,1002,1013,3,580,290,0,1003,1013,3,582,291,0,1004,1013,3,584, - 292,0,1005,1013,3,586,293,0,1006,1013,3,588,294,0,1007,1013,3,590, - 295,0,1008,1013,3,594,297,0,1009,1013,3,596,298,0,1010,1013,3,598, - 299,0,1011,1013,3,600,300,0,1012,979,1,0,0,0,1012,980,1,0,0,0,1012, - 981,1,0,0,0,1012,982,1,0,0,0,1012,983,1,0,0,0,1012,984,1,0,0,0,1012, - 985,1,0,0,0,1012,986,1,0,0,0,1012,987,1,0,0,0,1012,988,1,0,0,0,1012, - 989,1,0,0,0,1012,990,1,0,0,0,1012,991,1,0,0,0,1012,992,1,0,0,0,1012, - 993,1,0,0,0,1012,994,1,0,0,0,1012,995,1,0,0,0,1012,996,1,0,0,0,1012, - 997,1,0,0,0,1012,998,1,0,0,0,1012,999,1,0,0,0,1012,1000,1,0,0,0, - 1012,1001,1,0,0,0,1012,1002,1,0,0,0,1012,1003,1,0,0,0,1012,1004, - 1,0,0,0,1012,1005,1,0,0,0,1012,1006,1,0,0,0,1012,1007,1,0,0,0,1012, - 1008,1,0,0,0,1012,1009,1,0,0,0,1012,1010,1,0,0,0,1012,1011,1,0,0, - 0,1013,21,1,0,0,0,1014,1023,3,612,306,0,1015,1023,3,610,305,0,1016, - 1023,3,614,307,0,1017,1023,3,616,308,0,1018,1023,3,618,309,0,1019, - 1023,3,620,310,0,1020,1023,3,622,311,0,1021,1023,3,630,315,0,1022, - 1014,1,0,0,0,1022,1015,1,0,0,0,1022,1016,1,0,0,0,1022,1017,1,0,0, - 0,1022,1018,1,0,0,0,1022,1019,1,0,0,0,1022,1020,1,0,0,0,1022,1021, - 1,0,0,0,1023,23,1,0,0,0,1024,1025,5,34,0,0,1025,1027,7,0,0,0,1026, - 1028,3,770,385,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,1029,1, - 0,0,0,1029,1033,3,636,318,0,1030,1032,3,56,28,0,1031,1030,1,0,0, - 0,1032,1035,1,0,0,0,1033,1031,1,0,0,0,1033,1034,1,0,0,0,1034,25, - 1,0,0,0,1035,1033,1,0,0,0,1036,1038,5,34,0,0,1037,1039,3,62,31,0, - 1038,1037,1,0,0,0,1038,1039,1,0,0,0,1039,1040,1,0,0,0,1040,1042, - 5,385,0,0,1041,1043,3,770,385,0,1042,1041,1,0,0,0,1042,1043,1,0, - 0,0,1043,1044,1,0,0,0,1044,1045,3,712,356,0,1045,1046,5,119,0,0, - 1046,1047,5,590,0,0,1047,1054,3,64,32,0,1048,1049,5,119,0,0,1049, - 1051,5,343,0,0,1050,1052,5,114,0,0,1051,1050,1,0,0,0,1051,1052,1, - 0,0,0,1052,1053,1,0,0,0,1053,1055,5,541,0,0,1054,1048,1,0,0,0,1054, - 1055,1,0,0,0,1055,1057,1,0,0,0,1056,1058,3,72,36,0,1057,1056,1,0, - 0,0,1057,1058,1,0,0,0,1058,1061,1,0,0,0,1059,1060,5,340,0,0,1060, - 1062,5,882,0,0,1061,1059,1,0,0,0,1061,1062,1,0,0,0,1062,1063,1,0, - 0,0,1063,1064,5,371,0,0,1064,1065,3,432,216,0,1065,27,1,0,0,0,1066, - 1068,5,34,0,0,1067,1069,7,1,0,0,1068,1067,1,0,0,0,1068,1069,1,0, - 0,0,1069,1071,1,0,0,0,1070,1072,7,2,0,0,1071,1070,1,0,0,0,1071,1072, - 1,0,0,0,1072,1073,1,0,0,0,1073,1074,5,82,0,0,1074,1076,3,648,324, - 0,1075,1077,3,74,37,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077,1078, - 1,0,0,0,1078,1079,5,119,0,0,1079,1080,3,662,331,0,1080,1084,3,748, - 374,0,1081,1083,3,76,38,0,1082,1081,1,0,0,0,1083,1086,1,0,0,0,1084, - 1082,1,0,0,0,1084,1085,1,0,0,0,1085,1099,1,0,0,0,1086,1084,1,0,0, - 0,1087,1089,5,308,0,0,1088,1090,5,857,0,0,1089,1088,1,0,0,0,1089, - 1090,1,0,0,0,1090,1091,1,0,0,0,1091,1098,7,3,0,0,1092,1094,5,104, - 0,0,1093,1095,5,857,0,0,1094,1093,1,0,0,0,1094,1095,1,0,0,0,1095, - 1096,1,0,0,0,1096,1098,7,4,0,0,1097,1087,1,0,0,0,1097,1092,1,0,0, - 0,1098,1101,1,0,0,0,1099,1097,1,0,0,0,1099,1100,1,0,0,0,1100,29, - 1,0,0,0,1101,1099,1,0,0,0,1102,1103,5,34,0,0,1103,1104,5,451,0,0, - 1104,1105,5,74,0,0,1105,1106,3,716,358,0,1106,1107,5,6,0,0,1107, - 1108,5,671,0,0,1108,1114,5,882,0,0,1109,1111,5,428,0,0,1110,1112, - 5,857,0,0,1111,1110,1,0,0,0,1111,1112,1,0,0,0,1112,1113,1,0,0,0, - 1113,1115,3,724,362,0,1114,1109,1,0,0,0,1114,1115,1,0,0,0,1115,1121, - 1,0,0,0,1116,1118,5,672,0,0,1117,1119,5,857,0,0,1118,1117,1,0,0, - 0,1118,1119,1,0,0,0,1119,1120,1,0,0,0,1120,1122,3,724,362,0,1121, - 1116,1,0,0,0,1121,1122,1,0,0,0,1122,1128,1,0,0,0,1123,1125,5,553, - 0,0,1124,1126,5,857,0,0,1125,1124,1,0,0,0,1125,1126,1,0,0,0,1126, - 1127,1,0,0,0,1127,1129,3,724,362,0,1128,1123,1,0,0,0,1128,1129,1, - 0,0,0,1129,1135,1,0,0,0,1130,1132,5,504,0,0,1131,1133,5,857,0,0, - 1132,1131,1,0,0,0,1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1136, - 3,716,358,0,1135,1130,1,0,0,0,1135,1136,1,0,0,0,1136,1138,1,0,0, - 0,1137,1139,5,687,0,0,1138,1137,1,0,0,0,1138,1139,1,0,0,0,1139,1145, - 1,0,0,0,1140,1142,5,340,0,0,1141,1143,5,857,0,0,1142,1141,1,0,0, - 0,1142,1143,1,0,0,0,1143,1144,1,0,0,0,1144,1146,5,882,0,0,1145,1140, - 1,0,0,0,1145,1146,1,0,0,0,1146,1147,1,0,0,0,1147,1149,5,380,0,0, - 1148,1150,5,857,0,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1151, - 1,0,0,0,1151,1152,3,702,351,0,1152,31,1,0,0,0,1153,1155,5,34,0,0, - 1154,1156,3,62,31,0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156,1157, - 1,0,0,0,1157,1159,5,132,0,0,1158,1160,3,770,385,0,1159,1158,1,0, - 0,0,1159,1160,1,0,0,0,1160,1161,1,0,0,0,1161,1162,3,712,356,0,1162, - 1164,5,866,0,0,1163,1165,3,78,39,0,1164,1163,1,0,0,0,1164,1165,1, - 0,0,0,1165,1170,1,0,0,0,1166,1167,5,868,0,0,1167,1169,3,78,39,0, - 1168,1166,1,0,0,0,1169,1172,1,0,0,0,1170,1168,1,0,0,0,1170,1171, - 1,0,0,0,1171,1173,1,0,0,0,1172,1170,1,0,0,0,1173,1177,5,867,0,0, - 1174,1176,3,82,41,0,1175,1174,1,0,0,0,1176,1179,1,0,0,0,1177,1175, - 1,0,0,0,1177,1178,1,0,0,0,1178,1180,1,0,0,0,1179,1177,1,0,0,0,1180, - 1181,3,432,216,0,1181,33,1,0,0,0,1182,1184,5,34,0,0,1183,1185,3, - 62,31,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185,1187,1,0,0,0,1186, - 1188,5,307,0,0,1187,1186,1,0,0,0,1187,1188,1,0,0,0,1188,1189,1,0, - 0,0,1189,1191,5,409,0,0,1190,1192,3,770,385,0,1191,1190,1,0,0,0, - 1191,1192,1,0,0,0,1192,1193,1,0,0,0,1193,1194,3,640,320,0,1194,1196, - 5,866,0,0,1195,1197,3,80,40,0,1196,1195,1,0,0,0,1196,1197,1,0,0, - 0,1197,1202,1,0,0,0,1198,1199,5,868,0,0,1199,1201,3,80,40,0,1200, - 1198,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1202,1203,1,0,0, - 0,1203,1205,1,0,0,0,1204,1202,1,0,0,0,1205,1206,5,867,0,0,1206,1207, - 5,580,0,0,1207,1211,3,736,368,0,1208,1210,3,82,41,0,1209,1208,1, - 0,0,0,1210,1213,1,0,0,0,1211,1209,1,0,0,0,1211,1212,1,0,0,0,1212, - 1216,1,0,0,0,1213,1211,1,0,0,0,1214,1217,3,432,216,0,1215,1217,3, - 448,224,0,1216,1214,1,0,0,0,1216,1215,1,0,0,0,1217,35,1,0,0,0,1218, - 1220,5,34,0,0,1219,1221,5,307,0,0,1220,1219,1,0,0,0,1220,1221,1, - 0,0,0,1221,1222,1,0,0,0,1222,1224,5,409,0,0,1223,1225,3,770,385, - 0,1224,1223,1,0,0,0,1224,1225,1,0,0,0,1225,1226,1,0,0,0,1226,1227, - 3,640,320,0,1227,1228,5,580,0,0,1228,1229,7,5,0,0,1229,1230,5,603, - 0,0,1230,1231,5,882,0,0,1231,37,1,0,0,0,1232,1233,5,34,0,0,1233, - 1235,5,582,0,0,1234,1236,3,770,385,0,1235,1234,1,0,0,0,1235,1236, - 1,0,0,0,1236,1237,1,0,0,0,1237,1238,3,664,332,0,1238,39,1,0,0,0, - 1239,1240,5,34,0,0,1240,1241,5,592,0,0,1241,1242,3,716,358,0,1242, - 1243,5,67,0,0,1243,1244,5,360,0,0,1244,1245,5,692,0,0,1245,1246, - 7,6,0,0,1246,1247,5,518,0,0,1247,1248,5,866,0,0,1248,1253,3,84,42, - 0,1249,1250,5,868,0,0,1250,1252,3,84,42,0,1251,1249,1,0,0,0,1252, - 1255,1,0,0,0,1253,1251,1,0,0,0,1253,1254,1,0,0,0,1254,1256,1,0,0, - 0,1255,1253,1,0,0,0,1256,1257,5,867,0,0,1257,41,1,0,0,0,1258,1260, - 5,34,0,0,1259,1261,5,660,0,0,1260,1259,1,0,0,0,1260,1261,1,0,0,0, - 1261,1262,1,0,0,0,1262,1264,5,173,0,0,1263,1265,3,770,385,0,1264, - 1263,1,0,0,0,1264,1265,1,0,0,0,1265,1266,1,0,0,0,1266,1268,3,658, - 329,0,1267,1269,3,86,43,0,1268,1267,1,0,0,0,1268,1269,1,0,0,0,1269, - 1280,1,0,0,0,1270,1277,3,104,52,0,1271,1273,5,868,0,0,1272,1271, - 1,0,0,0,1272,1273,1,0,0,0,1273,1274,1,0,0,0,1274,1276,3,104,52,0, - 1275,1272,1,0,0,0,1276,1279,1,0,0,0,1277,1275,1,0,0,0,1277,1278, - 1,0,0,0,1278,1281,1,0,0,0,1279,1277,1,0,0,0,1280,1270,1,0,0,0,1280, - 1281,1,0,0,0,1281,1283,1,0,0,0,1282,1284,3,110,55,0,1283,1282,1, - 0,0,0,1283,1284,1,0,0,0,1284,1286,1,0,0,0,1285,1287,7,7,0,0,1286, - 1285,1,0,0,0,1286,1287,1,0,0,0,1287,1289,1,0,0,0,1288,1290,5,13, - 0,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1291,1,0,0,0,1291,1292, - 3,210,105,0,1292,1337,1,0,0,0,1293,1295,5,34,0,0,1294,1296,5,660, - 0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297,1,0,0,0,1297,1299, - 5,173,0,0,1298,1300,3,770,385,0,1299,1298,1,0,0,0,1299,1300,1,0, - 0,0,1300,1301,1,0,0,0,1301,1309,3,658,329,0,1302,1303,5,99,0,0,1303, - 1310,3,662,331,0,1304,1305,5,866,0,0,1305,1306,5,99,0,0,1306,1307, - 3,662,331,0,1307,1308,5,867,0,0,1308,1310,1,0,0,0,1309,1302,1,0, - 0,0,1309,1304,1,0,0,0,1310,1337,1,0,0,0,1311,1313,5,34,0,0,1312, - 1314,5,660,0,0,1313,1312,1,0,0,0,1313,1314,1,0,0,0,1314,1315,1,0, - 0,0,1315,1317,5,173,0,0,1316,1318,3,770,385,0,1317,1316,1,0,0,0, - 1317,1318,1,0,0,0,1318,1319,1,0,0,0,1319,1320,3,658,329,0,1320,1331, - 3,86,43,0,1321,1328,3,104,52,0,1322,1324,5,868,0,0,1323,1322,1,0, - 0,0,1323,1324,1,0,0,0,1324,1325,1,0,0,0,1325,1327,3,104,52,0,1326, - 1323,1,0,0,0,1327,1330,1,0,0,0,1328,1326,1,0,0,0,1328,1329,1,0,0, - 0,1329,1332,1,0,0,0,1330,1328,1,0,0,0,1331,1321,1,0,0,0,1331,1332, - 1,0,0,0,1332,1334,1,0,0,0,1333,1335,3,110,55,0,1334,1333,1,0,0,0, - 1334,1335,1,0,0,0,1335,1337,1,0,0,0,1336,1258,1,0,0,0,1336,1293, - 1,0,0,0,1336,1311,1,0,0,0,1337,43,1,0,0,0,1338,1340,5,34,0,0,1339, - 1341,5,180,0,0,1340,1339,1,0,0,0,1340,1341,1,0,0,0,1341,1342,1,0, - 0,0,1342,1343,5,658,0,0,1343,1347,3,674,337,0,1344,1345,5,6,0,0, - 1345,1346,5,361,0,0,1346,1348,5,882,0,0,1347,1344,1,0,0,0,1347,1348, - 1,0,0,0,1348,1354,1,0,0,0,1349,1351,5,314,0,0,1350,1352,5,857,0, - 0,1351,1350,1,0,0,0,1351,1352,1,0,0,0,1352,1353,1,0,0,0,1353,1355, - 3,724,362,0,1354,1349,1,0,0,0,1354,1355,1,0,0,0,1355,1359,1,0,0, - 0,1356,1357,5,399,0,0,1357,1358,5,857,0,0,1358,1360,3,724,362,0, - 1359,1356,1,0,0,0,1359,1360,1,0,0,0,1360,1366,1,0,0,0,1361,1363, - 5,380,0,0,1362,1364,5,857,0,0,1363,1362,1,0,0,0,1363,1364,1,0,0, - 0,1364,1365,1,0,0,0,1365,1367,3,702,351,0,1366,1361,1,0,0,0,1366, - 1367,1,0,0,0,1367,1373,1,0,0,0,1368,1370,5,825,0,0,1369,1371,5,857, - 0,0,1370,1369,1,0,0,0,1370,1371,1,0,0,0,1371,1372,1,0,0,0,1372,1374, - 5,882,0,0,1373,1368,1,0,0,0,1373,1374,1,0,0,0,1374,45,1,0,0,0,1375, - 1377,5,34,0,0,1376,1378,5,180,0,0,1377,1376,1,0,0,0,1377,1378,1, - 0,0,0,1378,1379,1,0,0,0,1379,1380,5,658,0,0,1380,1381,3,674,337, - 0,1381,1382,5,6,0,0,1382,1383,5,361,0,0,1383,1384,5,882,0,0,1384, - 1385,5,187,0,0,1385,1386,5,451,0,0,1386,1387,5,74,0,0,1387,1393, - 3,716,358,0,1388,1390,5,393,0,0,1389,1391,5,857,0,0,1390,1389,1, - 0,0,0,1390,1391,1,0,0,0,1391,1392,1,0,0,0,1392,1394,3,724,362,0, - 1393,1388,1,0,0,0,1393,1394,1,0,0,0,1394,1400,1,0,0,0,1395,1397, - 5,428,0,0,1396,1398,5,857,0,0,1397,1396,1,0,0,0,1397,1398,1,0,0, - 0,1398,1399,1,0,0,0,1399,1401,3,724,362,0,1400,1395,1,0,0,0,1400, - 1401,1,0,0,0,1401,1407,1,0,0,0,1402,1404,5,314,0,0,1403,1405,5,857, - 0,0,1404,1403,1,0,0,0,1404,1405,1,0,0,0,1405,1406,1,0,0,0,1406,1408, - 3,724,362,0,1407,1402,1,0,0,0,1407,1408,1,0,0,0,1408,1414,1,0,0, - 0,1409,1411,5,481,0,0,1410,1412,5,857,0,0,1411,1410,1,0,0,0,1411, - 1412,1,0,0,0,1412,1413,1,0,0,0,1413,1415,3,724,362,0,1414,1409,1, - 0,0,0,1414,1415,1,0,0,0,1415,1421,1,0,0,0,1416,1418,5,504,0,0,1417, - 1419,5,857,0,0,1418,1417,1,0,0,0,1418,1419,1,0,0,0,1419,1420,1,0, - 0,0,1420,1422,3,716,358,0,1421,1416,1,0,0,0,1421,1422,1,0,0,0,1422, - 1424,1,0,0,0,1423,1425,5,687,0,0,1424,1423,1,0,0,0,1424,1425,1,0, - 0,0,1425,1431,1,0,0,0,1426,1428,5,340,0,0,1427,1429,5,857,0,0,1428, - 1427,1,0,0,0,1428,1429,1,0,0,0,1429,1430,1,0,0,0,1430,1432,5,882, - 0,0,1431,1426,1,0,0,0,1431,1432,1,0,0,0,1432,1433,1,0,0,0,1433,1435, - 5,380,0,0,1434,1436,5,857,0,0,1435,1434,1,0,0,0,1435,1436,1,0,0, - 0,1436,1437,1,0,0,0,1437,1438,3,702,351,0,1438,47,1,0,0,0,1439,1441, - 5,34,0,0,1440,1442,3,62,31,0,1441,1440,1,0,0,0,1441,1442,1,0,0,0, - 1442,1444,1,0,0,0,1443,1445,3,770,385,0,1444,1443,1,0,0,0,1444,1445, - 1,0,0,0,1445,1446,1,0,0,0,1446,1448,5,178,0,0,1447,1449,3,770,385, - 0,1448,1447,1,0,0,0,1448,1449,1,0,0,0,1449,1450,1,0,0,0,1450,1451, - 3,712,356,0,1451,1452,7,8,0,0,1452,1453,7,9,0,0,1453,1454,5,119, - 0,0,1454,1455,3,662,331,0,1455,1456,5,65,0,0,1456,1457,5,52,0,0, - 1457,1460,5,586,0,0,1458,1459,7,10,0,0,1459,1461,3,712,356,0,1460, - 1458,1,0,0,0,1460,1461,1,0,0,0,1461,1462,1,0,0,0,1462,1463,3,432, - 216,0,1463,49,1,0,0,0,1464,1466,5,194,0,0,1465,1467,5,552,0,0,1466, - 1465,1,0,0,0,1466,1467,1,0,0,0,1467,1468,1,0,0,0,1468,1469,3,52, - 26,0,1469,51,1,0,0,0,1470,1482,3,716,358,0,1471,1472,5,866,0,0,1472, - 1477,3,716,358,0,1473,1474,5,868,0,0,1474,1476,3,716,358,0,1475, - 1473,1,0,0,0,1476,1479,1,0,0,0,1477,1475,1,0,0,0,1477,1478,1,0,0, - 0,1478,1480,1,0,0,0,1479,1477,1,0,0,0,1480,1481,5,867,0,0,1481,1483, - 1,0,0,0,1482,1471,1,0,0,0,1482,1483,1,0,0,0,1483,1484,1,0,0,0,1484, - 1485,5,13,0,0,1485,1486,5,866,0,0,1486,1487,3,10,5,0,1487,1490,5, - 867,0,0,1488,1489,5,868,0,0,1489,1491,3,52,26,0,1490,1488,1,0,0, - 0,1490,1491,1,0,0,0,1491,53,1,0,0,0,1492,1494,5,34,0,0,1493,1495, - 3,772,386,0,1494,1493,1,0,0,0,1494,1495,1,0,0,0,1495,1499,1,0,0, - 0,1496,1497,5,308,0,0,1497,1498,5,857,0,0,1498,1500,7,11,0,0,1499, - 1496,1,0,0,0,1499,1500,1,0,0,0,1500,1502,1,0,0,0,1501,1503,3,62, - 31,0,1502,1501,1,0,0,0,1502,1503,1,0,0,0,1503,1507,1,0,0,0,1504, - 1505,5,162,0,0,1505,1506,5,591,0,0,1506,1508,7,12,0,0,1507,1504, - 1,0,0,0,1507,1508,1,0,0,0,1508,1509,1,0,0,0,1509,1510,5,684,0,0, - 1510,1522,3,644,322,0,1511,1512,5,866,0,0,1512,1517,3,668,334,0, - 1513,1514,5,868,0,0,1514,1516,3,668,334,0,1515,1513,1,0,0,0,1516, - 1519,1,0,0,0,1517,1515,1,0,0,0,1517,1518,1,0,0,0,1518,1520,1,0,0, - 0,1519,1517,1,0,0,0,1520,1521,5,867,0,0,1521,1523,1,0,0,0,1522,1511, - 1,0,0,0,1522,1523,1,0,0,0,1523,1524,1,0,0,0,1524,1544,5,13,0,0,1525, - 1527,5,866,0,0,1526,1528,3,50,25,0,1527,1526,1,0,0,0,1527,1528,1, - 0,0,0,1528,1529,1,0,0,0,1529,1530,3,210,105,0,1530,1531,5,867,0, - 0,1531,1545,1,0,0,0,1532,1534,3,50,25,0,1533,1532,1,0,0,0,1533,1534, - 1,0,0,0,1534,1535,1,0,0,0,1535,1542,3,210,105,0,1536,1538,5,194, - 0,0,1537,1539,7,13,0,0,1538,1537,1,0,0,0,1538,1539,1,0,0,0,1539, - 1540,1,0,0,0,1540,1541,5,27,0,0,1541,1543,5,121,0,0,1542,1536,1, - 0,0,0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1525,1,0,0,0,1544, - 1533,1,0,0,0,1545,55,1,0,0,0,1546,1548,5,42,0,0,1547,1546,1,0,0, - 0,1547,1548,1,0,0,0,1548,1549,1,0,0,0,1549,1551,3,58,29,0,1550,1552, - 5,857,0,0,1551,1550,1,0,0,0,1551,1552,1,0,0,0,1552,1555,1,0,0,0, - 1553,1556,3,698,349,0,1554,1556,5,42,0,0,1555,1553,1,0,0,0,1555, - 1554,1,0,0,0,1556,1580,1,0,0,0,1557,1559,5,42,0,0,1558,1557,1,0, - 0,0,1558,1559,1,0,0,0,1559,1560,1,0,0,0,1560,1562,5,28,0,0,1561, - 1563,5,857,0,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563,1564,1,0, - 0,0,1564,1580,3,700,350,0,1565,1567,5,42,0,0,1566,1565,1,0,0,0,1566, - 1567,1,0,0,0,1567,1568,1,0,0,0,1568,1570,5,376,0,0,1569,1571,5,857, - 0,0,1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1580, - 5,882,0,0,1573,1574,5,135,0,0,1574,1576,5,515,0,0,1575,1577,5,857, - 0,0,1576,1575,1,0,0,0,1576,1577,1,0,0,0,1577,1578,1,0,0,0,1578,1580, - 7,14,0,0,1579,1547,1,0,0,0,1579,1558,1,0,0,0,1579,1566,1,0,0,0,1579, - 1573,1,0,0,0,1580,57,1,0,0,0,1581,1582,5,26,0,0,1582,1587,5,155, - 0,0,1583,1587,5,823,0,0,1584,1585,5,224,0,0,1585,1587,5,155,0,0, - 1586,1581,1,0,0,0,1586,1583,1,0,0,0,1586,1584,1,0,0,0,1587,59,1, - 0,0,0,1588,1591,7,15,0,0,1589,1590,5,866,0,0,1590,1592,5,867,0,0, - 1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592,61,1,0,0,0,1593,1594,5, - 364,0,0,1594,1597,5,857,0,0,1595,1598,3,694,347,0,1596,1598,3,60, - 30,0,1597,1595,1,0,0,0,1597,1596,1,0,0,0,1598,63,1,0,0,0,1599,1600, - 5,311,0,0,1600,1604,3,66,33,0,1601,1603,3,68,34,0,1602,1601,1,0, - 0,0,1603,1606,1,0,0,0,1604,1602,1,0,0,0,1604,1605,1,0,0,0,1605,1634, - 1,0,0,0,1606,1604,1,0,0,0,1607,1610,5,387,0,0,1608,1611,3,722,361, - 0,1609,1611,3,814,407,0,1610,1608,1,0,0,0,1610,1609,1,0,0,0,1611, - 1612,1,0,0,0,1612,1621,3,70,35,0,1613,1614,5,641,0,0,1614,1618,3, - 66,33,0,1615,1617,3,68,34,0,1616,1615,1,0,0,0,1617,1620,1,0,0,0, - 1618,1616,1,0,0,0,1618,1619,1,0,0,0,1619,1622,1,0,0,0,1620,1618, - 1,0,0,0,1621,1613,1,0,0,0,1621,1622,1,0,0,0,1622,1631,1,0,0,0,1623, - 1624,5,379,0,0,1624,1628,3,66,33,0,1625,1627,3,68,34,0,1626,1625, - 1,0,0,0,1627,1630,1,0,0,0,1628,1626,1,0,0,0,1628,1629,1,0,0,0,1629, - 1632,1,0,0,0,1630,1628,1,0,0,0,1631,1623,1,0,0,0,1631,1632,1,0,0, - 0,1632,1634,1,0,0,0,1633,1599,1,0,0,0,1633,1607,1,0,0,0,1634,65, - 1,0,0,0,1635,1640,5,287,0,0,1636,1640,3,726,363,0,1637,1640,3,722, - 361,0,1638,1640,3,814,407,0,1639,1635,1,0,0,0,1639,1636,1,0,0,0, - 1639,1637,1,0,0,0,1639,1638,1,0,0,0,1640,67,1,0,0,0,1641,1642,5, - 853,0,0,1642,1645,5,87,0,0,1643,1646,3,722,361,0,1644,1646,3,814, - 407,0,1645,1643,1,0,0,0,1645,1644,1,0,0,0,1646,1647,1,0,0,0,1647, - 1648,3,70,35,0,1648,69,1,0,0,0,1649,1663,3,840,420,0,1650,1663,5, - 223,0,0,1651,1663,5,242,0,0,1652,1663,5,243,0,0,1653,1663,5,244, - 0,0,1654,1663,5,245,0,0,1655,1663,5,246,0,0,1656,1663,5,247,0,0, - 1657,1663,5,248,0,0,1658,1663,5,249,0,0,1659,1663,5,250,0,0,1660, - 1663,5,251,0,0,1661,1663,5,252,0,0,1662,1649,1,0,0,0,1662,1650,1, - 0,0,0,1662,1651,1,0,0,0,1662,1652,1,0,0,0,1662,1653,1,0,0,0,1662, - 1654,1,0,0,0,1662,1655,1,0,0,0,1662,1656,1,0,0,0,1662,1657,1,0,0, - 0,1662,1658,1,0,0,0,1662,1659,1,0,0,0,1662,1660,1,0,0,0,1662,1661, - 1,0,0,0,1663,71,1,0,0,0,1664,1670,5,375,0,0,1665,1670,5,368,0,0, - 1666,1667,5,368,0,0,1667,1668,5,119,0,0,1668,1670,5,598,0,0,1669, - 1664,1,0,0,0,1669,1665,1,0,0,0,1669,1666,1,0,0,0,1670,73,1,0,0,0, - 1671,1672,5,188,0,0,1672,1673,7,16,0,0,1673,75,1,0,0,0,1674,1676, - 5,443,0,0,1675,1677,5,857,0,0,1676,1675,1,0,0,0,1676,1677,1,0,0, - 0,1677,1678,1,0,0,0,1678,1697,3,724,362,0,1679,1697,3,74,37,0,1680, - 1681,5,194,0,0,1681,1682,5,525,0,0,1682,1697,3,716,358,0,1683,1684, - 5,340,0,0,1684,1697,5,882,0,0,1685,1697,7,17,0,0,1686,1688,5,825, - 0,0,1687,1689,5,857,0,0,1688,1687,1,0,0,0,1688,1689,1,0,0,0,1689, - 1690,1,0,0,0,1690,1697,5,882,0,0,1691,1693,5,833,0,0,1692,1694,5, - 857,0,0,1693,1692,1,0,0,0,1693,1694,1,0,0,0,1694,1695,1,0,0,0,1695, - 1697,5,882,0,0,1696,1674,1,0,0,0,1696,1679,1,0,0,0,1696,1680,1,0, - 0,0,1696,1683,1,0,0,0,1696,1685,1,0,0,0,1696,1686,1,0,0,0,1696,1691, - 1,0,0,0,1697,77,1,0,0,0,1698,1700,7,18,0,0,1699,1698,1,0,0,0,1699, - 1700,1,0,0,0,1700,1701,1,0,0,0,1701,1702,3,716,358,0,1702,1703,3, - 736,368,0,1703,79,1,0,0,0,1704,1705,3,716,358,0,1705,1706,3,736, - 368,0,1706,81,1,0,0,0,1707,1708,5,340,0,0,1708,1731,5,882,0,0,1709, - 1710,5,444,0,0,1710,1731,5,162,0,0,1711,1713,5,114,0,0,1712,1711, - 1,0,0,0,1712,1713,1,0,0,0,1713,1714,1,0,0,0,1714,1731,5,47,0,0,1715, - 1716,5,354,0,0,1716,1726,5,162,0,0,1717,1718,5,502,0,0,1718,1726, - 5,162,0,0,1719,1720,5,136,0,0,1720,1721,5,162,0,0,1721,1726,5,360, - 0,0,1722,1723,5,112,0,0,1723,1724,5,162,0,0,1724,1726,5,360,0,0, - 1725,1715,1,0,0,0,1725,1717,1,0,0,0,1725,1719,1,0,0,0,1725,1722, - 1,0,0,0,1726,1731,1,0,0,0,1727,1728,5,162,0,0,1728,1729,5,591,0, - 0,1729,1731,7,12,0,0,1730,1707,1,0,0,0,1730,1709,1,0,0,0,1730,1712, - 1,0,0,0,1730,1725,1,0,0,0,1730,1727,1,0,0,0,1731,83,1,0,0,0,1732, - 1733,5,421,0,0,1733,1747,5,882,0,0,1734,1735,5,39,0,0,1735,1747, - 5,882,0,0,1736,1737,5,678,0,0,1737,1747,5,882,0,0,1738,1739,5,529, - 0,0,1739,1747,5,882,0,0,1740,1741,5,601,0,0,1741,1747,5,882,0,0, - 1742,1743,5,519,0,0,1743,1747,5,882,0,0,1744,1745,5,537,0,0,1745, - 1747,3,722,361,0,1746,1732,1,0,0,0,1746,1734,1,0,0,0,1746,1736,1, - 0,0,0,1746,1738,1,0,0,0,1746,1740,1,0,0,0,1746,1742,1,0,0,0,1746, - 1744,1,0,0,0,1747,85,1,0,0,0,1748,1749,5,866,0,0,1749,1754,3,88, - 44,0,1750,1751,5,868,0,0,1751,1753,3,88,44,0,1752,1750,1,0,0,0,1753, - 1756,1,0,0,0,1754,1752,1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0,0, - 0,1756,1754,1,0,0,0,1757,1758,5,867,0,0,1758,87,1,0,0,0,1759,1760, - 3,668,334,0,1760,1761,3,94,47,0,1761,1843,1,0,0,0,1762,1764,7,19, - 0,0,1763,1765,3,652,326,0,1764,1763,1,0,0,0,1764,1765,1,0,0,0,1765, - 1767,1,0,0,0,1766,1768,3,74,37,0,1767,1766,1,0,0,0,1767,1768,1,0, - 0,0,1768,1769,1,0,0,0,1769,1773,3,748,374,0,1770,1772,3,76,38,0, - 1771,1770,1,0,0,0,1772,1775,1,0,0,0,1773,1771,1,0,0,0,1773,1774, - 1,0,0,0,1774,1843,1,0,0,0,1775,1773,1,0,0,0,1776,1778,7,20,0,0,1777, - 1779,7,19,0,0,1778,1777,1,0,0,0,1778,1779,1,0,0,0,1779,1781,1,0, - 0,0,1780,1782,3,652,326,0,1781,1780,1,0,0,0,1781,1782,1,0,0,0,1782, - 1783,1,0,0,0,1783,1787,3,748,374,0,1784,1786,3,76,38,0,1785,1784, - 1,0,0,0,1786,1789,1,0,0,0,1787,1785,1,0,0,0,1787,1788,1,0,0,0,1788, - 1843,1,0,0,0,1789,1787,1,0,0,0,1790,1792,3,92,46,0,1791,1790,1,0, - 0,0,1791,1792,1,0,0,0,1792,1793,1,0,0,0,1793,1794,5,131,0,0,1794, - 1796,5,92,0,0,1795,1797,3,74,37,0,1796,1795,1,0,0,0,1796,1797,1, - 0,0,0,1797,1798,1,0,0,0,1798,1802,3,748,374,0,1799,1801,3,76,38, - 0,1800,1799,1,0,0,0,1801,1804,1,0,0,0,1802,1800,1,0,0,0,1802,1803, - 1,0,0,0,1803,1843,1,0,0,0,1804,1802,1,0,0,0,1805,1807,3,92,46,0, - 1806,1805,1,0,0,0,1806,1807,1,0,0,0,1807,1808,1,0,0,0,1808,1810, - 5,182,0,0,1809,1811,7,19,0,0,1810,1809,1,0,0,0,1810,1811,1,0,0,0, - 1811,1813,1,0,0,0,1812,1814,3,652,326,0,1813,1812,1,0,0,0,1813,1814, - 1,0,0,0,1814,1816,1,0,0,0,1815,1817,3,74,37,0,1816,1815,1,0,0,0, - 1816,1817,1,0,0,0,1817,1818,1,0,0,0,1818,1822,3,748,374,0,1819,1821, - 3,76,38,0,1820,1819,1,0,0,0,1821,1824,1,0,0,0,1822,1820,1,0,0,0, - 1822,1823,1,0,0,0,1823,1843,1,0,0,0,1824,1822,1,0,0,0,1825,1827, - 3,92,46,0,1826,1825,1,0,0,0,1826,1827,1,0,0,0,1827,1828,1,0,0,0, - 1828,1829,5,67,0,0,1829,1831,5,92,0,0,1830,1832,3,652,326,0,1831, - 1830,1,0,0,0,1831,1832,1,0,0,0,1832,1833,1,0,0,0,1833,1834,3,748, - 374,0,1834,1835,3,98,49,0,1835,1843,1,0,0,0,1836,1837,5,27,0,0,1837, - 1838,5,866,0,0,1838,1839,3,814,407,0,1839,1840,5,867,0,0,1840,1843, - 1,0,0,0,1841,1843,3,90,45,0,1842,1759,1,0,0,0,1842,1762,1,0,0,0, - 1842,1776,1,0,0,0,1842,1791,1,0,0,0,1842,1806,1,0,0,0,1842,1826, - 1,0,0,0,1842,1836,1,0,0,0,1842,1841,1,0,0,0,1843,89,1,0,0,0,1844, - 1846,3,92,46,0,1845,1844,1,0,0,0,1845,1846,1,0,0,0,1846,1847,1,0, - 0,0,1847,1848,5,27,0,0,1848,1849,5,866,0,0,1849,1850,3,814,407,0, - 1850,1855,5,867,0,0,1851,1853,5,114,0,0,1852,1851,1,0,0,0,1852,1853, - 1,0,0,0,1853,1854,1,0,0,0,1854,1856,5,57,0,0,1855,1852,1,0,0,0,1855, - 1856,1,0,0,0,1856,91,1,0,0,0,1857,1859,5,31,0,0,1858,1860,3,716, - 358,0,1859,1858,1,0,0,0,1859,1860,1,0,0,0,1860,93,1,0,0,0,1861,1865, - 3,736,368,0,1862,1864,3,96,48,0,1863,1862,1,0,0,0,1864,1867,1,0, - 0,0,1865,1863,1,0,0,0,1865,1866,1,0,0,0,1866,95,1,0,0,0,1867,1865, - 1,0,0,0,1868,1912,3,732,366,0,1869,1870,5,42,0,0,1870,1912,3,764, - 382,0,1871,1912,5,686,0,0,1872,1912,5,435,0,0,1873,1878,5,315,0, - 0,1874,1875,5,119,0,0,1875,1876,5,185,0,0,1876,1878,3,766,383,0, - 1877,1873,1,0,0,0,1877,1874,1,0,0,0,1878,1912,1,0,0,0,1879,1881, - 5,131,0,0,1880,1879,1,0,0,0,1880,1881,1,0,0,0,1881,1882,1,0,0,0, - 1882,1912,5,92,0,0,1883,1885,5,182,0,0,1884,1886,5,92,0,0,1885,1884, - 1,0,0,0,1885,1886,1,0,0,0,1886,1912,1,0,0,0,1887,1888,5,340,0,0, - 1888,1912,5,882,0,0,1889,1890,5,338,0,0,1890,1912,7,21,0,0,1891, - 1892,5,647,0,0,1892,1912,7,22,0,0,1893,1912,3,98,49,0,1894,1895, - 5,28,0,0,1895,1912,3,700,350,0,1896,1897,5,71,0,0,1897,1899,5,9, - 0,0,1898,1896,1,0,0,0,1898,1899,1,0,0,0,1899,1900,1,0,0,0,1900,1901, - 5,13,0,0,1901,1902,5,866,0,0,1902,1903,3,814,407,0,1903,1905,5,867, - 0,0,1904,1906,7,23,0,0,1905,1904,1,0,0,0,1905,1906,1,0,0,0,1906, - 1912,1,0,0,0,1907,1908,5,241,0,0,1908,1909,5,42,0,0,1909,1912,5, - 682,0,0,1910,1912,3,90,45,0,1911,1868,1,0,0,0,1911,1869,1,0,0,0, - 1911,1871,1,0,0,0,1911,1872,1,0,0,0,1911,1877,1,0,0,0,1911,1880, - 1,0,0,0,1911,1883,1,0,0,0,1911,1887,1,0,0,0,1911,1889,1,0,0,0,1911, - 1891,1,0,0,0,1911,1893,1,0,0,0,1911,1894,1,0,0,0,1911,1898,1,0,0, - 0,1911,1907,1,0,0,0,1911,1910,1,0,0,0,1912,97,1,0,0,0,1913,1914, - 5,138,0,0,1914,1916,3,662,331,0,1915,1917,3,748,374,0,1916,1915, - 1,0,0,0,1916,1917,1,0,0,0,1917,1920,1,0,0,0,1918,1919,5,110,0,0, - 1919,1921,7,24,0,0,1920,1918,1,0,0,0,1920,1921,1,0,0,0,1921,1923, - 1,0,0,0,1922,1924,3,100,50,0,1923,1922,1,0,0,0,1923,1924,1,0,0,0, - 1924,99,1,0,0,0,1925,1926,5,119,0,0,1926,1927,5,44,0,0,1927,1931, - 3,102,51,0,1928,1929,5,119,0,0,1929,1930,5,185,0,0,1930,1932,3,102, - 51,0,1931,1928,1,0,0,0,1931,1932,1,0,0,0,1932,1942,1,0,0,0,1933, - 1934,5,119,0,0,1934,1935,5,185,0,0,1935,1939,3,102,51,0,1936,1937, - 5,119,0,0,1937,1938,5,44,0,0,1938,1940,3,102,51,0,1939,1936,1,0, - 0,0,1939,1940,1,0,0,0,1940,1942,1,0,0,0,1941,1925,1,0,0,0,1941,1933, - 1,0,0,0,1942,101,1,0,0,0,1943,1952,5,146,0,0,1944,1952,5,22,0,0, - 1945,1946,5,155,0,0,1946,1952,5,116,0,0,1947,1948,5,502,0,0,1948, - 1952,5,305,0,0,1949,1950,5,155,0,0,1950,1952,5,42,0,0,1951,1943, - 1,0,0,0,1951,1944,1,0,0,0,1951,1945,1,0,0,0,1951,1947,1,0,0,0,1951, - 1949,1,0,0,0,1952,103,1,0,0,0,1953,1955,5,380,0,0,1954,1956,5,857, - 0,0,1955,1954,1,0,0,0,1955,1956,1,0,0,0,1956,1958,1,0,0,0,1957,1959, - 3,702,351,0,1958,1957,1,0,0,0,1958,1959,1,0,0,0,1959,2139,1,0,0, - 0,1960,1962,5,825,0,0,1961,1963,5,857,0,0,1962,1961,1,0,0,0,1962, - 1963,1,0,0,0,1963,1964,1,0,0,0,1964,2139,5,882,0,0,1965,1967,5,314, - 0,0,1966,1968,5,857,0,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968, - 1969,1,0,0,0,1969,2139,3,722,361,0,1970,1972,5,315,0,0,1971,1973, - 5,857,0,0,1972,1971,1,0,0,0,1972,1973,1,0,0,0,1973,1974,1,0,0,0, - 1974,2139,3,722,361,0,1975,1977,5,316,0,0,1976,1978,5,857,0,0,1977, - 1976,1,0,0,0,1977,1978,1,0,0,0,1978,1979,1,0,0,0,1979,2139,3,722, - 361,0,1980,1982,5,42,0,0,1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982, - 1983,1,0,0,0,1983,1985,3,58,29,0,1984,1986,5,857,0,0,1985,1984,1, - 0,0,0,1985,1986,1,0,0,0,1986,1989,1,0,0,0,1987,1990,3,698,349,0, - 1988,1990,5,42,0,0,1989,1987,1,0,0,0,1989,1988,1,0,0,0,1990,2139, - 1,0,0,0,1991,1993,7,25,0,0,1992,1994,5,857,0,0,1993,1992,1,0,0,0, - 1993,1994,1,0,0,0,1994,1995,1,0,0,0,1995,2139,7,26,0,0,1996,1998, - 5,42,0,0,1997,1996,1,0,0,0,1997,1998,1,0,0,0,1998,1999,1,0,0,0,1999, - 2001,5,28,0,0,2000,2002,5,857,0,0,2001,2000,1,0,0,0,2001,2002,1, - 0,0,0,2002,2003,1,0,0,0,2003,2139,3,700,350,0,2004,2006,5,340,0, - 0,2005,2007,5,857,0,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2008, - 1,0,0,0,2008,2139,5,882,0,0,2009,2011,5,346,0,0,2010,2012,5,857, - 0,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012,2013,1,0,0,0,2013,2139, - 7,27,0,0,2014,2016,5,349,0,0,2015,2017,5,857,0,0,2016,2015,1,0,0, - 0,2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018,2139,5,882,0,0,2019,2020, - 7,28,0,0,2020,2022,5,367,0,0,2021,2023,5,857,0,0,2022,2021,1,0,0, - 0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024,2139,5,882,0,0,2025,2027, - 5,365,0,0,2026,2028,5,857,0,0,2027,2026,1,0,0,0,2027,2028,1,0,0, - 0,2028,2029,1,0,0,0,2029,2139,7,26,0,0,2030,2032,5,376,0,0,2031, - 2033,5,857,0,0,2032,2031,1,0,0,0,2032,2033,1,0,0,0,2033,2034,1,0, - 0,0,2034,2139,5,882,0,0,2035,2037,7,29,0,0,2036,2038,5,857,0,0,2037, - 2036,1,0,0,0,2037,2038,1,0,0,0,2038,2039,1,0,0,0,2039,2139,7,26, - 0,0,2040,2042,7,30,0,0,2041,2043,5,857,0,0,2042,2041,1,0,0,0,2042, - 2043,1,0,0,0,2043,2044,1,0,0,0,2044,2139,3,722,361,0,2045,2047,5, - 377,0,0,2046,2048,5,857,0,0,2047,2046,1,0,0,0,2047,2048,1,0,0,0, - 2048,2049,1,0,0,0,2049,2139,3,722,361,0,2050,2051,5,82,0,0,2051, - 2053,5,367,0,0,2052,2054,5,857,0,0,2053,2052,1,0,0,0,2053,2054,1, - 0,0,0,2054,2055,1,0,0,0,2055,2139,5,882,0,0,2056,2058,5,431,0,0, - 2057,2059,5,857,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2060, - 1,0,0,0,2060,2139,7,31,0,0,2061,2063,5,443,0,0,2062,2064,5,857,0, - 0,2063,2062,1,0,0,0,2063,2064,1,0,0,0,2064,2065,1,0,0,0,2065,2139, - 3,724,362,0,2066,2068,5,480,0,0,2067,2069,5,857,0,0,2068,2067,1, - 0,0,0,2068,2069,1,0,0,0,2069,2070,1,0,0,0,2070,2139,3,722,361,0, - 2071,2073,5,490,0,0,2072,2074,5,857,0,0,2073,2072,1,0,0,0,2073,2074, - 1,0,0,0,2074,2075,1,0,0,0,2075,2139,3,722,361,0,2076,2078,5,520, - 0,0,2077,2079,5,857,0,0,2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079, - 2080,1,0,0,0,2080,2139,7,14,0,0,2081,2083,5,529,0,0,2082,2084,5, - 857,0,0,2083,2082,1,0,0,0,2083,2084,1,0,0,0,2084,2085,1,0,0,0,2085, - 2139,5,882,0,0,2086,2088,5,588,0,0,2087,2089,5,857,0,0,2088,2087, - 1,0,0,0,2088,2089,1,0,0,0,2089,2090,1,0,0,0,2090,2139,7,32,0,0,2091, - 2092,5,640,0,0,2092,2139,5,664,0,0,2093,2095,5,833,0,0,2094,2096, - 5,857,0,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2097,1,0,0,0, - 2097,2139,5,882,0,0,2098,2100,5,642,0,0,2099,2101,5,857,0,0,2100, - 2099,1,0,0,0,2100,2101,1,0,0,0,2101,2102,1,0,0,0,2102,2139,7,14, - 0,0,2103,2105,5,643,0,0,2104,2106,5,857,0,0,2105,2104,1,0,0,0,2105, - 2106,1,0,0,0,2106,2107,1,0,0,0,2107,2139,7,14,0,0,2108,2110,5,644, - 0,0,2109,2111,5,857,0,0,2110,2109,1,0,0,0,2110,2111,1,0,0,0,2111, - 2114,1,0,0,0,2112,2115,5,42,0,0,2113,2115,3,722,361,0,2114,2112, - 1,0,0,0,2114,2113,1,0,0,0,2115,2139,1,0,0,0,2116,2117,5,658,0,0, - 2117,2119,3,676,338,0,2118,2120,3,108,54,0,2119,2118,1,0,0,0,2119, - 2120,1,0,0,0,2120,2139,1,0,0,0,2121,2122,5,659,0,0,2122,2123,5,857, - 0,0,2123,2139,3,106,53,0,2124,2139,3,108,54,0,2125,2127,5,665,0, - 0,2126,2128,5,857,0,0,2127,2126,1,0,0,0,2127,2128,1,0,0,0,2128,2129, - 1,0,0,0,2129,2139,7,26,0,0,2130,2132,5,181,0,0,2131,2133,5,857,0, - 0,2132,2131,1,0,0,0,2132,2133,1,0,0,0,2133,2134,1,0,0,0,2134,2135, - 5,866,0,0,2135,2136,3,660,330,0,2136,2137,5,867,0,0,2137,2139,1, - 0,0,0,2138,1953,1,0,0,0,2138,1960,1,0,0,0,2138,1965,1,0,0,0,2138, - 1970,1,0,0,0,2138,1975,1,0,0,0,2138,1981,1,0,0,0,2138,1991,1,0,0, - 0,2138,1997,1,0,0,0,2138,2004,1,0,0,0,2138,2009,1,0,0,0,2138,2014, - 1,0,0,0,2138,2019,1,0,0,0,2138,2025,1,0,0,0,2138,2030,1,0,0,0,2138, - 2035,1,0,0,0,2138,2040,1,0,0,0,2138,2045,1,0,0,0,2138,2050,1,0,0, - 0,2138,2056,1,0,0,0,2138,2061,1,0,0,0,2138,2066,1,0,0,0,2138,2071, - 1,0,0,0,2138,2076,1,0,0,0,2138,2081,1,0,0,0,2138,2086,1,0,0,0,2138, - 2091,1,0,0,0,2138,2093,1,0,0,0,2138,2098,1,0,0,0,2138,2103,1,0,0, - 0,2138,2108,1,0,0,0,2138,2116,1,0,0,0,2138,2121,1,0,0,0,2138,2124, - 1,0,0,0,2138,2125,1,0,0,0,2138,2130,1,0,0,0,2139,105,1,0,0,0,2140, - 2141,7,33,0,0,2141,107,1,0,0,0,2142,2143,5,647,0,0,2143,2144,7,22, - 0,0,2144,109,1,0,0,0,2145,2146,5,130,0,0,2146,2147,5,20,0,0,2147, - 2150,3,112,56,0,2148,2149,5,528,0,0,2149,2151,3,722,361,0,2150,2148, - 1,0,0,0,2150,2151,1,0,0,0,2151,2159,1,0,0,0,2152,2153,5,652,0,0, - 2153,2154,5,20,0,0,2154,2157,3,114,57,0,2155,2156,5,653,0,0,2156, - 2158,3,722,361,0,2157,2155,1,0,0,0,2157,2158,1,0,0,0,2158,2160,1, - 0,0,0,2159,2152,1,0,0,0,2159,2160,1,0,0,0,2160,2172,1,0,0,0,2161, - 2162,5,866,0,0,2162,2167,3,116,58,0,2163,2164,5,868,0,0,2164,2166, - 3,116,58,0,2165,2163,1,0,0,0,2166,2169,1,0,0,0,2167,2165,1,0,0,0, - 2167,2168,1,0,0,0,2168,2170,1,0,0,0,2169,2167,1,0,0,0,2170,2171, - 5,867,0,0,2171,2173,1,0,0,0,2172,2161,1,0,0,0,2172,2173,1,0,0,0, - 2173,111,1,0,0,0,2174,2176,5,101,0,0,2175,2174,1,0,0,0,2175,2176, - 1,0,0,0,2176,2177,1,0,0,0,2177,2178,5,418,0,0,2178,2179,5,866,0, - 0,2179,2180,3,814,407,0,2180,2181,5,867,0,0,2181,2221,1,0,0,0,2182, - 2184,5,101,0,0,2183,2182,1,0,0,0,2183,2184,1,0,0,0,2184,2185,1,0, - 0,0,2185,2189,5,92,0,0,2186,2187,5,308,0,0,2187,2188,5,857,0,0,2188, - 2190,7,34,0,0,2189,2186,1,0,0,0,2189,2190,1,0,0,0,2190,2191,1,0, - 0,0,2191,2193,5,866,0,0,2192,2194,3,670,335,0,2193,2192,1,0,0,0, - 2193,2194,1,0,0,0,2194,2195,1,0,0,0,2195,2221,5,867,0,0,2196,2206, - 5,134,0,0,2197,2198,5,866,0,0,2198,2199,3,814,407,0,2199,2200,5, - 867,0,0,2200,2207,1,0,0,0,2201,2202,5,337,0,0,2202,2203,5,866,0, - 0,2203,2204,3,670,335,0,2204,2205,5,867,0,0,2205,2207,1,0,0,0,2206, - 2197,1,0,0,0,2206,2201,1,0,0,0,2207,2221,1,0,0,0,2208,2218,5,449, - 0,0,2209,2210,5,866,0,0,2210,2211,3,814,407,0,2211,2212,5,867,0, - 0,2212,2219,1,0,0,0,2213,2214,5,337,0,0,2214,2215,5,866,0,0,2215, - 2216,3,670,335,0,2216,2217,5,867,0,0,2217,2219,1,0,0,0,2218,2209, - 1,0,0,0,2218,2213,1,0,0,0,2219,2221,1,0,0,0,2220,2175,1,0,0,0,2220, - 2183,1,0,0,0,2220,2196,1,0,0,0,2220,2208,1,0,0,0,2221,113,1,0,0, - 0,2222,2224,5,101,0,0,2223,2222,1,0,0,0,2223,2224,1,0,0,0,2224,2225, - 1,0,0,0,2225,2226,5,418,0,0,2226,2227,5,866,0,0,2227,2228,3,814, - 407,0,2228,2229,5,867,0,0,2229,2244,1,0,0,0,2230,2232,5,101,0,0, - 2231,2230,1,0,0,0,2231,2232,1,0,0,0,2232,2233,1,0,0,0,2233,2237, - 5,92,0,0,2234,2235,5,308,0,0,2235,2236,5,857,0,0,2236,2238,7,34, - 0,0,2237,2234,1,0,0,0,2237,2238,1,0,0,0,2238,2239,1,0,0,0,2239,2240, - 5,866,0,0,2240,2241,3,670,335,0,2241,2242,5,867,0,0,2242,2244,1, - 0,0,0,2243,2223,1,0,0,0,2243,2231,1,0,0,0,2244,115,1,0,0,0,2245, - 2246,5,130,0,0,2246,2247,3,682,341,0,2247,2248,5,189,0,0,2248,2249, - 5,447,0,0,2249,2250,5,662,0,0,2250,2251,5,866,0,0,2251,2256,3,118, - 59,0,2252,2253,5,868,0,0,2253,2255,3,118,59,0,2254,2252,1,0,0,0, - 2255,2258,1,0,0,0,2256,2254,1,0,0,0,2256,2257,1,0,0,0,2257,2259, - 1,0,0,0,2258,2256,1,0,0,0,2259,2263,5,867,0,0,2260,2262,3,124,62, - 0,2261,2260,1,0,0,0,2262,2265,1,0,0,0,2263,2261,1,0,0,0,2263,2264, - 1,0,0,0,2264,2277,1,0,0,0,2265,2263,1,0,0,0,2266,2267,5,866,0,0, - 2267,2272,3,122,61,0,2268,2269,5,868,0,0,2269,2271,3,122,61,0,2270, - 2268,1,0,0,0,2271,2274,1,0,0,0,2272,2270,1,0,0,0,2272,2273,1,0,0, - 0,2273,2275,1,0,0,0,2274,2272,1,0,0,0,2275,2276,5,867,0,0,2276,2278, - 1,0,0,0,2277,2266,1,0,0,0,2277,2278,1,0,0,0,2278,2392,1,0,0,0,2279, - 2280,5,130,0,0,2280,2281,3,682,341,0,2281,2282,5,189,0,0,2282,2283, - 5,447,0,0,2283,2284,5,662,0,0,2284,2288,3,118,59,0,2285,2287,3,124, - 62,0,2286,2285,1,0,0,0,2287,2290,1,0,0,0,2288,2286,1,0,0,0,2288, - 2289,1,0,0,0,2289,2302,1,0,0,0,2290,2288,1,0,0,0,2291,2292,5,866, - 0,0,2292,2297,3,122,61,0,2293,2294,5,868,0,0,2294,2296,3,122,61, - 0,2295,2293,1,0,0,0,2296,2299,1,0,0,0,2297,2295,1,0,0,0,2297,2298, - 1,0,0,0,2298,2300,1,0,0,0,2299,2297,1,0,0,0,2300,2301,5,867,0,0, - 2301,2303,1,0,0,0,2302,2291,1,0,0,0,2302,2303,1,0,0,0,2303,2392, - 1,0,0,0,2304,2305,5,130,0,0,2305,2306,3,682,341,0,2306,2307,5,189, - 0,0,2307,2308,5,80,0,0,2308,2309,5,866,0,0,2309,2314,3,118,59,0, - 2310,2311,5,868,0,0,2311,2313,3,118,59,0,2312,2310,1,0,0,0,2313, - 2316,1,0,0,0,2314,2312,1,0,0,0,2314,2315,1,0,0,0,2315,2317,1,0,0, - 0,2316,2314,1,0,0,0,2317,2321,5,867,0,0,2318,2320,3,124,62,0,2319, - 2318,1,0,0,0,2320,2323,1,0,0,0,2321,2319,1,0,0,0,2321,2322,1,0,0, - 0,2322,2335,1,0,0,0,2323,2321,1,0,0,0,2324,2325,5,866,0,0,2325,2330, - 3,122,61,0,2326,2327,5,868,0,0,2327,2329,3,122,61,0,2328,2326,1, - 0,0,0,2329,2332,1,0,0,0,2330,2328,1,0,0,0,2330,2331,1,0,0,0,2331, - 2333,1,0,0,0,2332,2330,1,0,0,0,2333,2334,5,867,0,0,2334,2336,1,0, - 0,0,2335,2324,1,0,0,0,2335,2336,1,0,0,0,2336,2392,1,0,0,0,2337,2338, - 5,130,0,0,2338,2339,3,682,341,0,2339,2340,5,189,0,0,2340,2341,5, - 80,0,0,2341,2342,5,866,0,0,2342,2347,3,120,60,0,2343,2344,5,868, - 0,0,2344,2346,3,120,60,0,2345,2343,1,0,0,0,2346,2349,1,0,0,0,2347, - 2345,1,0,0,0,2347,2348,1,0,0,0,2348,2350,1,0,0,0,2349,2347,1,0,0, - 0,2350,2354,5,867,0,0,2351,2353,3,124,62,0,2352,2351,1,0,0,0,2353, - 2356,1,0,0,0,2354,2352,1,0,0,0,2354,2355,1,0,0,0,2355,2368,1,0,0, - 0,2356,2354,1,0,0,0,2357,2358,5,866,0,0,2358,2363,3,122,61,0,2359, - 2360,5,868,0,0,2360,2362,3,122,61,0,2361,2359,1,0,0,0,2362,2365, - 1,0,0,0,2363,2361,1,0,0,0,2363,2364,1,0,0,0,2364,2366,1,0,0,0,2365, - 2363,1,0,0,0,2366,2367,5,867,0,0,2367,2369,1,0,0,0,2368,2357,1,0, - 0,0,2368,2369,1,0,0,0,2369,2392,1,0,0,0,2370,2371,5,130,0,0,2371, - 2375,3,682,341,0,2372,2374,3,124,62,0,2373,2372,1,0,0,0,2374,2377, - 1,0,0,0,2375,2373,1,0,0,0,2375,2376,1,0,0,0,2376,2389,1,0,0,0,2377, - 2375,1,0,0,0,2378,2379,5,866,0,0,2379,2384,3,122,61,0,2380,2381, - 5,868,0,0,2381,2383,3,122,61,0,2382,2380,1,0,0,0,2383,2386,1,0,0, - 0,2384,2382,1,0,0,0,2384,2385,1,0,0,0,2385,2387,1,0,0,0,2386,2384, - 1,0,0,0,2387,2388,5,867,0,0,2388,2390,1,0,0,0,2389,2378,1,0,0,0, - 2389,2390,1,0,0,0,2390,2392,1,0,0,0,2391,2245,1,0,0,0,2391,2279, - 1,0,0,0,2391,2304,1,0,0,0,2391,2337,1,0,0,0,2391,2370,1,0,0,0,2392, - 117,1,0,0,0,2393,2397,3,734,367,0,2394,2397,3,814,407,0,2395,2397, - 5,111,0,0,2396,2393,1,0,0,0,2396,2394,1,0,0,0,2396,2395,1,0,0,0, - 2397,119,1,0,0,0,2398,2399,5,866,0,0,2399,2402,3,118,59,0,2400,2401, - 5,868,0,0,2401,2403,3,118,59,0,2402,2400,1,0,0,0,2403,2404,1,0,0, - 0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405,2406,1,0,0,0,2406,2407, - 5,867,0,0,2407,121,1,0,0,0,2408,2409,5,652,0,0,2409,2413,3,716,358, - 0,2410,2412,3,124,62,0,2411,2410,1,0,0,0,2412,2415,1,0,0,0,2413, - 2411,1,0,0,0,2413,2414,1,0,0,0,2414,123,1,0,0,0,2415,2413,1,0,0, - 0,2416,2418,5,42,0,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2420, - 1,0,0,0,2419,2421,5,647,0,0,2420,2419,1,0,0,0,2420,2421,1,0,0,0, - 2421,2422,1,0,0,0,2422,2424,5,380,0,0,2423,2425,5,857,0,0,2424,2423, - 1,0,0,0,2424,2425,1,0,0,0,2425,2426,1,0,0,0,2426,2465,3,702,351, - 0,2427,2429,5,340,0,0,2428,2430,5,857,0,0,2429,2428,1,0,0,0,2429, - 2430,1,0,0,0,2430,2431,1,0,0,0,2431,2465,5,882,0,0,2432,2433,5,360, - 0,0,2433,2435,5,367,0,0,2434,2436,5,857,0,0,2435,2434,1,0,0,0,2435, - 2436,1,0,0,0,2436,2437,1,0,0,0,2437,2465,5,882,0,0,2438,2439,5,82, - 0,0,2439,2441,5,367,0,0,2440,2442,5,857,0,0,2441,2440,1,0,0,0,2441, - 2442,1,0,0,0,2442,2443,1,0,0,0,2443,2465,5,882,0,0,2444,2446,5,480, - 0,0,2445,2447,5,857,0,0,2446,2445,1,0,0,0,2446,2447,1,0,0,0,2447, - 2448,1,0,0,0,2448,2465,3,722,361,0,2449,2451,5,490,0,0,2450,2452, - 5,857,0,0,2451,2450,1,0,0,0,2451,2452,1,0,0,0,2452,2453,1,0,0,0, - 2453,2465,3,722,361,0,2454,2456,5,658,0,0,2455,2457,5,857,0,0,2456, - 2455,1,0,0,0,2456,2457,1,0,0,0,2457,2458,1,0,0,0,2458,2465,3,676, - 338,0,2459,2461,5,504,0,0,2460,2462,5,857,0,0,2461,2460,1,0,0,0, - 2461,2462,1,0,0,0,2462,2463,1,0,0,0,2463,2465,3,716,358,0,2464,2417, - 1,0,0,0,2464,2427,1,0,0,0,2464,2432,1,0,0,0,2464,2438,1,0,0,0,2464, - 2444,1,0,0,0,2464,2449,1,0,0,0,2464,2454,1,0,0,0,2464,2459,1,0,0, - 0,2465,125,1,0,0,0,2466,2467,5,8,0,0,2467,2469,7,0,0,0,2468,2470, - 3,638,319,0,2469,2468,1,0,0,0,2469,2470,1,0,0,0,2470,2472,1,0,0, - 0,2471,2473,3,56,28,0,2472,2471,1,0,0,0,2473,2474,1,0,0,0,2474,2472, - 1,0,0,0,2474,2475,1,0,0,0,2475,2485,1,0,0,0,2476,2477,5,8,0,0,2477, - 2478,7,0,0,0,2478,2479,3,638,319,0,2479,2480,5,677,0,0,2480,2481, - 5,360,0,0,2481,2482,5,367,0,0,2482,2483,5,496,0,0,2483,2485,1,0, - 0,0,2484,2466,1,0,0,0,2484,2476,1,0,0,0,2485,127,1,0,0,0,2486,2488, - 5,8,0,0,2487,2489,3,62,31,0,2488,2487,1,0,0,0,2488,2489,1,0,0,0, - 2489,2490,1,0,0,0,2490,2491,5,385,0,0,2491,2495,3,712,356,0,2492, - 2493,5,119,0,0,2493,2494,5,590,0,0,2494,2496,3,64,32,0,2495,2492, - 1,0,0,0,2495,2496,1,0,0,0,2496,2503,1,0,0,0,2497,2498,5,119,0,0, - 2498,2500,5,343,0,0,2499,2501,5,114,0,0,2500,2499,1,0,0,0,2500,2501, - 1,0,0,0,2501,2502,1,0,0,0,2502,2504,5,541,0,0,2503,2497,1,0,0,0, - 2503,2504,1,0,0,0,2504,2508,1,0,0,0,2505,2506,5,141,0,0,2506,2507, - 5,176,0,0,2507,2509,3,712,356,0,2508,2505,1,0,0,0,2508,2509,1,0, - 0,0,2509,2511,1,0,0,0,2510,2512,3,72,36,0,2511,2510,1,0,0,0,2511, - 2512,1,0,0,0,2512,2515,1,0,0,0,2513,2514,5,340,0,0,2514,2516,5,882, - 0,0,2515,2513,1,0,0,0,2515,2516,1,0,0,0,2516,2519,1,0,0,0,2517,2518, - 5,371,0,0,2518,2520,3,432,216,0,2519,2517,1,0,0,0,2519,2520,1,0, - 0,0,2520,129,1,0,0,0,2521,2522,5,8,0,0,2522,2523,5,409,0,0,2523, - 2527,3,642,321,0,2524,2526,3,82,41,0,2525,2524,1,0,0,0,2526,2529, - 1,0,0,0,2527,2525,1,0,0,0,2527,2528,1,0,0,0,2528,131,1,0,0,0,2529, - 2527,1,0,0,0,2530,2531,5,8,0,0,2531,2532,5,433,0,0,2532,2533,5,585, - 0,0,2533,2534,5,801,0,0,2534,2535,5,453,0,0,2535,2536,5,92,0,0,2536, - 133,1,0,0,0,2537,2538,5,8,0,0,2538,2539,5,451,0,0,2539,2540,5,74, - 0,0,2540,2541,3,716,358,0,2541,2542,5,6,0,0,2542,2543,5,671,0,0, - 2543,2549,5,882,0,0,2544,2546,5,428,0,0,2545,2547,5,857,0,0,2546, - 2545,1,0,0,0,2546,2547,1,0,0,0,2547,2548,1,0,0,0,2548,2550,3,724, - 362,0,2549,2544,1,0,0,0,2549,2550,1,0,0,0,2550,2552,1,0,0,0,2551, - 2553,5,687,0,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0,2553,2554,1,0, - 0,0,2554,2556,5,380,0,0,2555,2557,5,857,0,0,2556,2555,1,0,0,0,2556, - 2557,1,0,0,0,2557,2558,1,0,0,0,2558,2559,3,702,351,0,2559,135,1, - 0,0,0,2560,2561,5,8,0,0,2561,2562,5,132,0,0,2562,2566,3,712,356, - 0,2563,2565,3,82,41,0,2564,2563,1,0,0,0,2565,2568,1,0,0,0,2566,2564, - 1,0,0,0,2566,2567,1,0,0,0,2567,137,1,0,0,0,2568,2566,1,0,0,0,2569, - 2570,5,8,0,0,2570,2571,5,592,0,0,2571,2572,3,716,358,0,2572,2573, - 5,518,0,0,2573,2574,5,866,0,0,2574,2579,3,84,42,0,2575,2576,5,868, - 0,0,2576,2578,3,84,42,0,2577,2575,1,0,0,0,2578,2581,1,0,0,0,2579, - 2577,1,0,0,0,2579,2580,1,0,0,0,2580,2582,1,0,0,0,2581,2579,1,0,0, - 0,2582,2583,5,867,0,0,2583,139,1,0,0,0,2584,2585,5,8,0,0,2585,2586, - 5,173,0,0,2586,2595,3,662,331,0,2587,2592,3,146,73,0,2588,2589,5, - 868,0,0,2589,2591,3,146,73,0,2590,2588,1,0,0,0,2591,2594,1,0,0,0, - 2592,2590,1,0,0,0,2592,2593,1,0,0,0,2593,2596,1,0,0,0,2594,2592, - 1,0,0,0,2595,2587,1,0,0,0,2595,2596,1,0,0,0,2596,2604,1,0,0,0,2597, - 2601,3,148,74,0,2598,2600,3,148,74,0,2599,2598,1,0,0,0,2600,2603, - 1,0,0,0,2601,2599,1,0,0,0,2601,2602,1,0,0,0,2602,2605,1,0,0,0,2603, - 2601,1,0,0,0,2604,2597,1,0,0,0,2604,2605,1,0,0,0,2605,141,1,0,0, - 0,2606,2608,5,8,0,0,2607,2609,5,180,0,0,2608,2607,1,0,0,0,2608,2609, - 1,0,0,0,2609,2610,1,0,0,0,2610,2611,5,658,0,0,2611,2612,3,676,338, - 0,2612,2613,7,35,0,0,2613,2614,5,361,0,0,2614,2620,5,882,0,0,2615, - 2617,5,428,0,0,2616,2618,5,857,0,0,2617,2616,1,0,0,0,2617,2618,1, - 0,0,0,2618,2619,1,0,0,0,2619,2621,3,724,362,0,2620,2615,1,0,0,0, - 2620,2621,1,0,0,0,2621,2623,1,0,0,0,2622,2624,5,687,0,0,2623,2622, - 1,0,0,0,2623,2624,1,0,0,0,2624,2628,1,0,0,0,2625,2626,5,141,0,0, - 2626,2627,5,176,0,0,2627,2629,3,674,337,0,2628,2625,1,0,0,0,2628, - 2629,1,0,0,0,2629,2635,1,0,0,0,2630,2632,5,314,0,0,2631,2633,5,857, - 0,0,2632,2631,1,0,0,0,2632,2633,1,0,0,0,2633,2634,1,0,0,0,2634,2636, - 3,724,362,0,2635,2630,1,0,0,0,2635,2636,1,0,0,0,2636,2639,1,0,0, - 0,2637,2638,5,155,0,0,2638,2640,7,36,0,0,2639,2637,1,0,0,0,2639, - 2640,1,0,0,0,2640,2646,1,0,0,0,2641,2643,5,376,0,0,2642,2644,5,857, - 0,0,2643,2642,1,0,0,0,2643,2644,1,0,0,0,2644,2645,1,0,0,0,2645,2647, - 5,882,0,0,2646,2641,1,0,0,0,2646,2647,1,0,0,0,2647,2653,1,0,0,0, - 2648,2650,5,380,0,0,2649,2651,5,857,0,0,2650,2649,1,0,0,0,2650,2651, - 1,0,0,0,2651,2652,1,0,0,0,2652,2654,3,702,351,0,2653,2648,1,0,0, - 0,2653,2654,1,0,0,0,2654,2660,1,0,0,0,2655,2657,5,825,0,0,2656,2658, - 5,857,0,0,2657,2656,1,0,0,0,2657,2658,1,0,0,0,2658,2659,1,0,0,0, - 2659,2661,5,882,0,0,2660,2655,1,0,0,0,2660,2661,1,0,0,0,2661,143, - 1,0,0,0,2662,2666,5,8,0,0,2663,2664,5,308,0,0,2664,2665,5,857,0, - 0,2665,2667,7,11,0,0,2666,2663,1,0,0,0,2666,2667,1,0,0,0,2667,2669, - 1,0,0,0,2668,2670,3,62,31,0,2669,2668,1,0,0,0,2669,2670,1,0,0,0, - 2670,2674,1,0,0,0,2671,2672,5,162,0,0,2672,2673,5,591,0,0,2673,2675, - 7,12,0,0,2674,2671,1,0,0,0,2674,2675,1,0,0,0,2675,2676,1,0,0,0,2676, - 2677,5,684,0,0,2677,2682,3,646,323,0,2678,2679,5,866,0,0,2679,2680, - 3,670,335,0,2680,2681,5,867,0,0,2681,2683,1,0,0,0,2682,2678,1,0, - 0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2685,5,13,0,0,2685, - 2692,3,210,105,0,2686,2688,5,194,0,0,2687,2689,7,13,0,0,2688,2687, - 1,0,0,0,2688,2689,1,0,0,0,2689,2690,1,0,0,0,2690,2691,5,27,0,0,2691, - 2693,5,121,0,0,2692,2686,1,0,0,0,2692,2693,1,0,0,0,2693,145,1,0, - 0,0,2694,2701,3,104,52,0,2695,2697,5,868,0,0,2696,2695,1,0,0,0,2696, - 2697,1,0,0,0,2697,2698,1,0,0,0,2698,2700,3,104,52,0,2699,2696,1, - 0,0,0,2700,2703,1,0,0,0,2701,2699,1,0,0,0,2701,2702,1,0,0,0,2702, - 2959,1,0,0,0,2703,2701,1,0,0,0,2704,2706,5,6,0,0,2705,2707,5,29, - 0,0,2706,2705,1,0,0,0,2706,2707,1,0,0,0,2707,2708,1,0,0,0,2708,2709, - 3,672,336,0,2709,2713,3,94,47,0,2710,2714,5,402,0,0,2711,2712,5, - 306,0,0,2712,2714,3,672,336,0,2713,2710,1,0,0,0,2713,2711,1,0,0, - 0,2713,2714,1,0,0,0,2714,2959,1,0,0,0,2715,2717,5,6,0,0,2716,2718, - 5,29,0,0,2717,2716,1,0,0,0,2717,2718,1,0,0,0,2718,2719,1,0,0,0,2719, - 2720,5,866,0,0,2720,2721,3,672,336,0,2721,2728,3,94,47,0,2722,2723, - 5,868,0,0,2723,2724,3,672,336,0,2724,2725,3,94,47,0,2725,2727,1, - 0,0,0,2726,2722,1,0,0,0,2727,2730,1,0,0,0,2728,2726,1,0,0,0,2728, - 2729,1,0,0,0,2729,2731,1,0,0,0,2730,2728,1,0,0,0,2731,2732,5,867, - 0,0,2732,2959,1,0,0,0,2733,2734,5,6,0,0,2734,2736,7,19,0,0,2735, - 2737,3,652,326,0,2736,2735,1,0,0,0,2736,2737,1,0,0,0,2737,2739,1, - 0,0,0,2738,2740,3,74,37,0,2739,2738,1,0,0,0,2739,2740,1,0,0,0,2740, - 2741,1,0,0,0,2741,2745,3,748,374,0,2742,2744,3,76,38,0,2743,2742, - 1,0,0,0,2744,2747,1,0,0,0,2745,2743,1,0,0,0,2745,2746,1,0,0,0,2746, - 2959,1,0,0,0,2747,2745,1,0,0,0,2748,2749,5,6,0,0,2749,2751,7,20, - 0,0,2750,2752,7,19,0,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752, - 2754,1,0,0,0,2753,2755,3,652,326,0,2754,2753,1,0,0,0,2754,2755,1, - 0,0,0,2755,2756,1,0,0,0,2756,2760,3,748,374,0,2757,2759,3,76,38, - 0,2758,2757,1,0,0,0,2759,2762,1,0,0,0,2760,2758,1,0,0,0,2760,2761, - 1,0,0,0,2761,2959,1,0,0,0,2762,2760,1,0,0,0,2763,2768,5,6,0,0,2764, - 2766,5,31,0,0,2765,2767,3,716,358,0,2766,2765,1,0,0,0,2766,2767, - 1,0,0,0,2767,2769,1,0,0,0,2768,2764,1,0,0,0,2768,2769,1,0,0,0,2769, - 2770,1,0,0,0,2770,2771,5,131,0,0,2771,2773,5,92,0,0,2772,2774,3, - 74,37,0,2773,2772,1,0,0,0,2773,2774,1,0,0,0,2774,2775,1,0,0,0,2775, - 2779,3,748,374,0,2776,2778,3,76,38,0,2777,2776,1,0,0,0,2778,2781, - 1,0,0,0,2779,2777,1,0,0,0,2779,2780,1,0,0,0,2780,2959,1,0,0,0,2781, - 2779,1,0,0,0,2782,2787,5,6,0,0,2783,2785,5,31,0,0,2784,2786,3,716, - 358,0,2785,2784,1,0,0,0,2785,2786,1,0,0,0,2786,2788,1,0,0,0,2787, - 2783,1,0,0,0,2787,2788,1,0,0,0,2788,2789,1,0,0,0,2789,2791,5,182, - 0,0,2790,2792,7,19,0,0,2791,2790,1,0,0,0,2791,2792,1,0,0,0,2792, - 2794,1,0,0,0,2793,2795,3,652,326,0,2794,2793,1,0,0,0,2794,2795,1, - 0,0,0,2795,2797,1,0,0,0,2796,2798,3,74,37,0,2797,2796,1,0,0,0,2797, - 2798,1,0,0,0,2798,2799,1,0,0,0,2799,2803,3,748,374,0,2800,2802,3, - 76,38,0,2801,2800,1,0,0,0,2802,2805,1,0,0,0,2803,2801,1,0,0,0,2803, - 2804,1,0,0,0,2804,2959,1,0,0,0,2805,2803,1,0,0,0,2806,2811,5,6,0, - 0,2807,2809,5,31,0,0,2808,2810,3,716,358,0,2809,2808,1,0,0,0,2809, - 2810,1,0,0,0,2810,2812,1,0,0,0,2811,2807,1,0,0,0,2811,2812,1,0,0, - 0,2812,2813,1,0,0,0,2813,2814,5,67,0,0,2814,2816,5,92,0,0,2815,2817, - 3,652,326,0,2816,2815,1,0,0,0,2816,2817,1,0,0,0,2817,2818,1,0,0, - 0,2818,2819,3,748,374,0,2819,2820,3,98,49,0,2820,2959,1,0,0,0,2821, - 2823,5,6,0,0,2822,2824,3,90,45,0,2823,2822,1,0,0,0,2823,2824,1,0, - 0,0,2824,2959,1,0,0,0,2825,2826,5,51,0,0,2826,2827,7,37,0,0,2827, - 2959,3,716,358,0,2828,2829,5,8,0,0,2829,2830,7,37,0,0,2830,2832, - 3,716,358,0,2831,2833,5,114,0,0,2832,2831,1,0,0,0,2832,2833,1,0, - 0,0,2833,2835,1,0,0,0,2834,2836,5,57,0,0,2835,2834,1,0,0,0,2835, - 2836,1,0,0,0,2836,2959,1,0,0,0,2837,2839,5,308,0,0,2838,2840,5,857, - 0,0,2839,2838,1,0,0,0,2839,2840,1,0,0,0,2840,2841,1,0,0,0,2841,2959, - 7,38,0,0,2842,2844,5,8,0,0,2843,2845,5,29,0,0,2844,2843,1,0,0,0, - 2844,2845,1,0,0,0,2845,2846,1,0,0,0,2846,2854,3,672,336,0,2847,2848, - 5,155,0,0,2848,2849,5,42,0,0,2849,2855,3,764,382,0,2850,2851,5,155, - 0,0,2851,2855,7,17,0,0,2852,2853,5,51,0,0,2853,2855,5,42,0,0,2854, - 2847,1,0,0,0,2854,2850,1,0,0,0,2854,2852,1,0,0,0,2855,2959,1,0,0, - 0,2856,2857,5,8,0,0,2857,2858,5,82,0,0,2858,2859,3,652,326,0,2859, - 2860,7,17,0,0,2860,2959,1,0,0,0,2861,2863,5,25,0,0,2862,2864,5,29, - 0,0,2863,2862,1,0,0,0,2863,2864,1,0,0,0,2864,2865,1,0,0,0,2865,2866, - 3,672,336,0,2866,2867,3,668,334,0,2867,2871,3,94,47,0,2868,2872, - 5,402,0,0,2869,2870,5,306,0,0,2870,2872,3,672,336,0,2871,2868,1, - 0,0,0,2871,2869,1,0,0,0,2871,2872,1,0,0,0,2872,2959,1,0,0,0,2873, - 2875,5,42,0,0,2874,2873,1,0,0,0,2874,2875,1,0,0,0,2875,2876,1,0, - 0,0,2876,2877,5,26,0,0,2877,2878,5,155,0,0,2878,2879,5,857,0,0,2879, - 2885,3,698,349,0,2880,2882,5,28,0,0,2881,2883,5,857,0,0,2882,2881, - 1,0,0,0,2882,2883,1,0,0,0,2883,2884,1,0,0,0,2884,2886,3,700,350, - 0,2885,2880,1,0,0,0,2885,2886,1,0,0,0,2886,2959,1,0,0,0,2887,2888, - 5,33,0,0,2888,2892,5,176,0,0,2889,2893,5,823,0,0,2890,2891,5,26, - 0,0,2891,2893,5,155,0,0,2892,2889,1,0,0,0,2892,2890,1,0,0,0,2893, - 2894,1,0,0,0,2894,2897,3,698,349,0,2895,2896,5,28,0,0,2896,2898, - 3,700,350,0,2897,2895,1,0,0,0,2897,2898,1,0,0,0,2898,2959,1,0,0, - 0,2899,2900,7,39,0,0,2900,2959,5,93,0,0,2901,2902,7,40,0,0,2902, - 2959,5,658,0,0,2903,2905,5,51,0,0,2904,2906,5,29,0,0,2905,2904,1, - 0,0,0,2905,2906,1,0,0,0,2906,2907,1,0,0,0,2907,2959,3,672,336,0, - 2908,2909,5,51,0,0,2909,2910,7,19,0,0,2910,2959,3,652,326,0,2911, - 2912,5,51,0,0,2912,2913,5,131,0,0,2913,2959,5,92,0,0,2914,2915,5, - 51,0,0,2915,2916,5,67,0,0,2916,2917,5,92,0,0,2917,2959,3,716,358, - 0,2918,2959,5,66,0,0,2919,2921,5,104,0,0,2920,2922,5,857,0,0,2921, - 2920,1,0,0,0,2921,2922,1,0,0,0,2922,2923,1,0,0,0,2923,2959,7,4,0, - 0,2924,2926,5,492,0,0,2925,2927,5,29,0,0,2926,2925,1,0,0,0,2926, - 2927,1,0,0,0,2927,2928,1,0,0,0,2928,2929,3,672,336,0,2929,2933,3, - 94,47,0,2930,2934,5,402,0,0,2931,2932,5,306,0,0,2932,2934,3,672, - 336,0,2933,2930,1,0,0,0,2933,2931,1,0,0,0,2933,2934,1,0,0,0,2934, - 2959,1,0,0,0,2935,2936,5,125,0,0,2936,2937,5,20,0,0,2937,2959,3, - 670,335,0,2938,2939,5,141,0,0,2939,2940,5,29,0,0,2940,2941,3,672, - 336,0,2941,2942,5,176,0,0,2942,2943,3,668,334,0,2943,2959,1,0,0, - 0,2944,2945,5,141,0,0,2945,2946,7,19,0,0,2946,2947,3,652,326,0,2947, - 2948,5,176,0,0,2948,2949,3,648,324,0,2949,2959,1,0,0,0,2950,2952, - 5,141,0,0,2951,2953,7,41,0,0,2952,2951,1,0,0,0,2952,2953,1,0,0,0, - 2953,2954,1,0,0,0,2954,2959,3,658,329,0,2955,2956,7,42,0,0,2956, - 2959,5,681,0,0,2957,2959,3,148,74,0,2958,2694,1,0,0,0,2958,2704, - 1,0,0,0,2958,2715,1,0,0,0,2958,2733,1,0,0,0,2958,2748,1,0,0,0,2958, - 2763,1,0,0,0,2958,2782,1,0,0,0,2958,2806,1,0,0,0,2958,2821,1,0,0, - 0,2958,2825,1,0,0,0,2958,2828,1,0,0,0,2958,2837,1,0,0,0,2958,2842, - 1,0,0,0,2958,2856,1,0,0,0,2958,2861,1,0,0,0,2958,2874,1,0,0,0,2958, - 2887,1,0,0,0,2958,2899,1,0,0,0,2958,2901,1,0,0,0,2958,2903,1,0,0, - 0,2958,2908,1,0,0,0,2958,2911,1,0,0,0,2958,2914,1,0,0,0,2958,2918, - 1,0,0,0,2958,2919,1,0,0,0,2958,2924,1,0,0,0,2958,2935,1,0,0,0,2958, - 2938,1,0,0,0,2958,2944,1,0,0,0,2958,2950,1,0,0,0,2958,2955,1,0,0, - 0,2958,2957,1,0,0,0,2959,147,1,0,0,0,2960,2961,5,6,0,0,2961,2962, - 5,130,0,0,2962,2963,5,866,0,0,2963,2968,3,116,58,0,2964,2965,5,868, - 0,0,2965,2967,3,116,58,0,2966,2964,1,0,0,0,2967,2970,1,0,0,0,2968, - 2966,1,0,0,0,2968,2969,1,0,0,0,2969,2971,1,0,0,0,2970,2968,1,0,0, - 0,2971,2972,5,867,0,0,2972,3059,1,0,0,0,2973,2974,5,51,0,0,2974, - 2975,5,130,0,0,2975,3059,3,680,340,0,2976,2977,5,369,0,0,2977,2980, - 5,130,0,0,2978,2981,3,680,340,0,2979,2981,5,7,0,0,2980,2978,1,0, - 0,0,2980,2979,1,0,0,0,2981,2982,1,0,0,0,2982,3059,5,658,0,0,2983, - 2984,5,425,0,0,2984,2987,5,130,0,0,2985,2988,3,680,340,0,2986,2988, - 5,7,0,0,2987,2985,1,0,0,0,2987,2986,1,0,0,0,2988,2989,1,0,0,0,2989, - 3059,5,658,0,0,2990,2991,5,668,0,0,2991,2994,5,130,0,0,2992,2995, - 3,680,340,0,2993,2995,5,7,0,0,2994,2992,1,0,0,0,2994,2993,1,0,0, - 0,2995,3059,1,0,0,0,2996,2997,5,335,0,0,2997,2998,5,130,0,0,2998, - 3059,3,722,361,0,2999,3000,5,561,0,0,3000,3001,5,130,0,0,3001,3002, - 3,680,340,0,3002,3003,5,88,0,0,3003,3004,5,866,0,0,3004,3009,3,116, - 58,0,3005,3006,5,868,0,0,3006,3008,3,116,58,0,3007,3005,1,0,0,0, - 3008,3011,1,0,0,0,3009,3007,1,0,0,0,3009,3010,1,0,0,0,3010,3012, - 1,0,0,0,3011,3009,1,0,0,0,3012,3013,5,867,0,0,3013,3059,1,0,0,0, - 3014,3015,5,388,0,0,3015,3016,5,130,0,0,3016,3017,3,682,341,0,3017, - 3018,5,194,0,0,3018,3019,5,173,0,0,3019,3022,3,662,331,0,3020,3021, - 7,42,0,0,3021,3023,5,681,0,0,3022,3020,1,0,0,0,3022,3023,1,0,0,0, - 3023,3059,1,0,0,0,3024,3025,5,10,0,0,3025,3028,5,130,0,0,3026,3029, - 3,680,340,0,3027,3029,5,7,0,0,3028,3026,1,0,0,0,3028,3027,1,0,0, - 0,3029,3059,1,0,0,0,3030,3031,5,27,0,0,3031,3034,5,130,0,0,3032, - 3035,3,680,340,0,3033,3035,5,7,0,0,3034,3032,1,0,0,0,3034,3033,1, - 0,0,0,3035,3059,1,0,0,0,3036,3037,5,120,0,0,3037,3040,5,130,0,0, - 3038,3041,3,680,340,0,3039,3041,5,7,0,0,3040,3038,1,0,0,0,3040,3039, - 1,0,0,0,3041,3059,1,0,0,0,3042,3043,5,550,0,0,3043,3046,5,130,0, - 0,3044,3047,3,680,340,0,3045,3047,5,7,0,0,3046,3044,1,0,0,0,3046, - 3045,1,0,0,0,3047,3059,1,0,0,0,3048,3049,5,562,0,0,3049,3052,5,130, - 0,0,3050,3053,3,680,340,0,3051,3053,5,7,0,0,3052,3050,1,0,0,0,3052, - 3051,1,0,0,0,3053,3059,1,0,0,0,3054,3055,5,560,0,0,3055,3059,5,527, - 0,0,3056,3057,5,677,0,0,3057,3059,5,527,0,0,3058,2960,1,0,0,0,3058, - 2973,1,0,0,0,3058,2976,1,0,0,0,3058,2983,1,0,0,0,3058,2990,1,0,0, - 0,3058,2996,1,0,0,0,3058,2999,1,0,0,0,3058,3014,1,0,0,0,3058,3024, - 1,0,0,0,3058,3030,1,0,0,0,3058,3036,1,0,0,0,3058,3042,1,0,0,0,3058, - 3048,1,0,0,0,3058,3054,1,0,0,0,3058,3056,1,0,0,0,3059,149,1,0,0, - 0,3060,3061,5,51,0,0,3061,3063,7,0,0,0,3062,3064,3,768,384,0,3063, - 3062,1,0,0,0,3063,3064,1,0,0,0,3064,3065,1,0,0,0,3065,3066,3,638, - 319,0,3066,151,1,0,0,0,3067,3068,5,51,0,0,3068,3070,5,385,0,0,3069, - 3071,3,768,384,0,3070,3069,1,0,0,0,3070,3071,1,0,0,0,3071,3072,1, - 0,0,0,3072,3073,3,712,356,0,3073,153,1,0,0,0,3074,3075,5,51,0,0, - 3075,3077,5,82,0,0,3076,3078,7,1,0,0,3077,3076,1,0,0,0,3077,3078, - 1,0,0,0,3078,3079,1,0,0,0,3079,3080,3,652,326,0,3080,3081,5,119, - 0,0,3081,3094,3,662,331,0,3082,3084,5,308,0,0,3083,3085,5,857,0, - 0,3084,3083,1,0,0,0,3084,3085,1,0,0,0,3085,3086,1,0,0,0,3086,3093, - 7,3,0,0,3087,3089,5,104,0,0,3088,3090,5,857,0,0,3089,3088,1,0,0, - 0,3089,3090,1,0,0,0,3090,3091,1,0,0,0,3091,3093,7,4,0,0,3092,3082, - 1,0,0,0,3092,3087,1,0,0,0,3093,3096,1,0,0,0,3094,3092,1,0,0,0,3094, - 3095,1,0,0,0,3095,155,1,0,0,0,3096,3094,1,0,0,0,3097,3098,5,51,0, - 0,3098,3099,5,451,0,0,3099,3100,5,74,0,0,3100,3101,3,716,358,0,3101, - 3103,5,380,0,0,3102,3104,5,857,0,0,3103,3102,1,0,0,0,3103,3104,1, - 0,0,0,3104,3105,1,0,0,0,3105,3106,3,702,351,0,3106,157,1,0,0,0,3107, - 3108,5,51,0,0,3108,3110,5,132,0,0,3109,3111,3,768,384,0,3110,3109, - 1,0,0,0,3110,3111,1,0,0,0,3111,3112,1,0,0,0,3112,3113,3,712,356, - 0,3113,159,1,0,0,0,3114,3115,5,51,0,0,3115,3117,5,409,0,0,3116,3118, - 3,768,384,0,3117,3116,1,0,0,0,3117,3118,1,0,0,0,3118,3119,1,0,0, - 0,3119,3120,3,642,321,0,3120,161,1,0,0,0,3121,3122,5,51,0,0,3122, - 3124,5,592,0,0,3123,3125,3,768,384,0,3124,3123,1,0,0,0,3124,3125, - 1,0,0,0,3125,3126,1,0,0,0,3126,3127,3,716,358,0,3127,163,1,0,0,0, - 3128,3129,5,51,0,0,3129,3130,5,161,0,0,3130,3131,5,137,0,0,3131, - 3133,5,835,0,0,3132,3134,3,768,384,0,3133,3132,1,0,0,0,3133,3134, - 1,0,0,0,3134,3135,1,0,0,0,3135,3136,5,883,0,0,3136,165,1,0,0,0,3137, - 3139,5,51,0,0,3138,3140,5,660,0,0,3139,3138,1,0,0,0,3139,3140,1, - 0,0,0,3140,3141,1,0,0,0,3141,3143,5,173,0,0,3142,3144,3,768,384, - 0,3143,3142,1,0,0,0,3143,3144,1,0,0,0,3144,3145,1,0,0,0,3145,3147, - 3,660,330,0,3146,3148,7,43,0,0,3147,3146,1,0,0,0,3147,3148,1,0,0, - 0,3148,167,1,0,0,0,3149,3151,5,51,0,0,3150,3152,5,180,0,0,3151,3150, - 1,0,0,0,3151,3152,1,0,0,0,3152,3153,1,0,0,0,3153,3154,5,658,0,0, - 3154,3160,3,676,338,0,3155,3157,5,380,0,0,3156,3158,5,857,0,0,3157, - 3156,1,0,0,0,3157,3158,1,0,0,0,3158,3159,1,0,0,0,3159,3161,3,702, - 351,0,3160,3155,1,0,0,0,3160,3161,1,0,0,0,3161,169,1,0,0,0,3162, - 3163,5,51,0,0,3163,3165,5,178,0,0,3164,3166,3,768,384,0,3165,3164, - 1,0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3168,3,712,356, - 0,3168,171,1,0,0,0,3169,3170,5,51,0,0,3170,3172,5,684,0,0,3171,3173, - 3,768,384,0,3172,3171,1,0,0,0,3172,3173,1,0,0,0,3173,3174,1,0,0, - 0,3174,3179,3,646,323,0,3175,3176,5,868,0,0,3176,3178,3,646,323, - 0,3177,3175,1,0,0,0,3178,3181,1,0,0,0,3179,3177,1,0,0,0,3179,3180, - 1,0,0,0,3180,3183,1,0,0,0,3181,3179,1,0,0,0,3182,3184,7,43,0,0,3183, - 3182,1,0,0,0,3183,3184,1,0,0,0,3184,173,1,0,0,0,3185,3186,5,51,0, - 0,3186,3188,5,582,0,0,3187,3189,3,768,384,0,3188,3187,1,0,0,0,3188, - 3189,1,0,0,0,3189,3190,1,0,0,0,3190,3191,3,664,332,0,3191,175,1, - 0,0,0,3192,3193,5,155,0,0,3193,3194,5,42,0,0,3194,3198,5,582,0,0, - 3195,3199,5,505,0,0,3196,3199,5,7,0,0,3197,3199,3,664,332,0,3198, - 3195,1,0,0,0,3198,3196,1,0,0,0,3198,3197,1,0,0,0,3199,3200,1,0,0, - 0,3200,3201,5,176,0,0,3201,3206,3,666,333,0,3202,3203,5,868,0,0, - 3203,3205,3,666,333,0,3204,3202,1,0,0,0,3205,3208,1,0,0,0,3206,3204, - 1,0,0,0,3206,3207,1,0,0,0,3207,3213,1,0,0,0,3208,3206,1,0,0,0,3209, - 3210,5,155,0,0,3210,3211,5,582,0,0,3211,3213,3,478,239,0,3212,3192, - 1,0,0,0,3212,3209,1,0,0,0,3213,177,1,0,0,0,3214,3215,5,141,0,0,3215, - 3216,5,173,0,0,3216,3221,3,180,90,0,3217,3218,5,868,0,0,3218,3220, - 3,180,90,0,3219,3217,1,0,0,0,3220,3223,1,0,0,0,3221,3219,1,0,0,0, - 3221,3222,1,0,0,0,3222,179,1,0,0,0,3223,3221,1,0,0,0,3224,3225,3, - 662,331,0,3225,3226,5,176,0,0,3226,3227,3,658,329,0,3227,181,1,0, - 0,0,3228,3230,5,668,0,0,3229,3231,5,173,0,0,3230,3229,1,0,0,0,3230, - 3231,1,0,0,0,3231,3232,1,0,0,0,3232,3233,3,662,331,0,3233,183,1, - 0,0,0,3234,3235,5,21,0,0,3235,3242,3,712,356,0,3236,3239,5,866,0, - 0,3237,3240,3,758,379,0,3238,3240,3,750,375,0,3239,3237,1,0,0,0, - 3239,3238,1,0,0,0,3239,3240,1,0,0,0,3240,3241,1,0,0,0,3241,3243, - 5,867,0,0,3242,3236,1,0,0,0,3242,3243,1,0,0,0,3243,185,1,0,0,0,3244, - 3247,3,240,120,0,3245,3247,3,242,121,0,3246,3244,1,0,0,0,3246,3245, - 1,0,0,0,3247,187,1,0,0,0,3248,3249,5,371,0,0,3249,3250,3,750,375, - 0,3250,189,1,0,0,0,3251,3256,3,244,122,0,3252,3256,3,246,123,0,3253, - 3256,3,248,124,0,3254,3256,3,250,125,0,3255,3251,1,0,0,0,3255,3252, - 1,0,0,0,3255,3253,1,0,0,0,3255,3254,1,0,0,0,3256,191,1,0,0,0,3257, - 3259,5,86,0,0,3258,3260,7,44,0,0,3259,3258,1,0,0,0,3259,3260,1,0, - 0,0,3260,3262,1,0,0,0,3261,3263,5,79,0,0,3262,3261,1,0,0,0,3262, - 3263,1,0,0,0,3263,3265,1,0,0,0,3264,3266,5,88,0,0,3265,3264,1,0, - 0,0,3265,3266,1,0,0,0,3266,3267,1,0,0,0,3267,3274,3,662,331,0,3268, - 3269,5,130,0,0,3269,3271,5,866,0,0,3270,3272,3,680,340,0,3271,3270, - 1,0,0,0,3271,3272,1,0,0,0,3272,3273,1,0,0,0,3273,3275,5,867,0,0, - 3274,3268,1,0,0,0,3274,3275,1,0,0,0,3275,3287,1,0,0,0,3276,3278, - 3,270,135,0,3277,3276,1,0,0,0,3277,3278,1,0,0,0,3278,3281,1,0,0, - 0,3279,3282,3,752,376,0,3280,3282,3,196,98,0,3281,3279,1,0,0,0,3281, - 3280,1,0,0,0,3281,3282,1,0,0,0,3282,3284,1,0,0,0,3283,3285,3,194, - 97,0,3284,3283,1,0,0,0,3284,3285,1,0,0,0,3285,3288,1,0,0,0,3286, - 3288,3,232,116,0,3287,3277,1,0,0,0,3287,3286,1,0,0,0,3288,3290,1, - 0,0,0,3289,3291,3,194,97,0,3290,3289,1,0,0,0,3290,3291,1,0,0,0,3291, - 3304,1,0,0,0,3292,3293,5,119,0,0,3293,3294,5,373,0,0,3294,3295,5, - 92,0,0,3295,3296,5,185,0,0,3296,3301,3,234,117,0,3297,3298,5,868, - 0,0,3298,3300,3,234,117,0,3299,3297,1,0,0,0,3300,3303,1,0,0,0,3301, - 3299,1,0,0,0,3301,3302,1,0,0,0,3302,3305,1,0,0,0,3303,3301,1,0,0, - 0,3304,3292,1,0,0,0,3304,3305,1,0,0,0,3305,193,1,0,0,0,3306,3307, - 5,13,0,0,3307,3309,3,716,358,0,3308,3310,3,270,135,0,3309,3308,1, - 0,0,0,3309,3310,1,0,0,0,3310,195,1,0,0,0,3311,3316,3,210,105,0,3312, - 3313,5,173,0,0,3313,3316,3,662,331,0,3314,3316,3,230,115,0,3315, - 3311,1,0,0,0,3315,3312,1,0,0,0,3315,3314,1,0,0,0,3316,197,1,0,0, - 0,3317,3323,3,200,100,0,3318,3320,5,828,0,0,3319,3321,7,45,0,0,3320, - 3319,1,0,0,0,3320,3321,1,0,0,0,3321,3322,1,0,0,0,3322,3324,3,200, - 100,0,3323,3318,1,0,0,0,3324,3325,1,0,0,0,3325,3323,1,0,0,0,3325, - 3326,1,0,0,0,3326,199,1,0,0,0,3327,3329,5,866,0,0,3328,3327,1,0, - 0,0,3328,3329,1,0,0,0,3329,3330,1,0,0,0,3330,3332,3,282,141,0,3331, - 3333,5,867,0,0,3332,3331,1,0,0,0,3332,3333,1,0,0,0,3333,201,1,0, - 0,0,3334,3335,5,103,0,0,3335,3337,5,360,0,0,3336,3338,7,46,0,0,3337, - 3336,1,0,0,0,3337,3338,1,0,0,0,3338,3340,1,0,0,0,3339,3341,5,450, - 0,0,3340,3339,1,0,0,0,3340,3341,1,0,0,0,3341,3342,1,0,0,0,3342,3343, - 5,83,0,0,3343,3345,5,882,0,0,3344,3346,7,7,0,0,3345,3344,1,0,0,0, - 3345,3346,1,0,0,0,3346,3347,1,0,0,0,3347,3348,5,88,0,0,3348,3349, - 5,173,0,0,3349,3355,3,662,331,0,3350,3351,5,130,0,0,3351,3352,5, - 866,0,0,3352,3353,3,680,340,0,3353,3354,5,867,0,0,3354,3356,1,0, - 0,0,3355,3350,1,0,0,0,3355,3356,1,0,0,0,3356,3360,1,0,0,0,3357,3358, - 5,26,0,0,3358,3359,5,155,0,0,3359,3361,3,698,349,0,3360,3357,1,0, - 0,0,3360,3361,1,0,0,0,3361,3368,1,0,0,0,3362,3364,7,47,0,0,3363, - 3365,3,314,157,0,3364,3363,1,0,0,0,3365,3366,1,0,0,0,3366,3364,1, - 0,0,0,3366,3367,1,0,0,0,3367,3369,1,0,0,0,3368,3362,1,0,0,0,3368, - 3369,1,0,0,0,3369,3376,1,0,0,0,3370,3372,5,102,0,0,3371,3373,3,316, - 158,0,3372,3371,1,0,0,0,3373,3374,1,0,0,0,3374,3372,1,0,0,0,3374, - 3375,1,0,0,0,3375,3377,1,0,0,0,3376,3370,1,0,0,0,3376,3377,1,0,0, - 0,3377,3382,1,0,0,0,3378,3379,5,79,0,0,3379,3380,3,722,361,0,3380, - 3381,7,48,0,0,3381,3383,1,0,0,0,3382,3378,1,0,0,0,3382,3383,1,0, - 0,0,3383,3395,1,0,0,0,3384,3385,5,866,0,0,3385,3390,3,236,118,0, - 3386,3387,5,868,0,0,3387,3389,3,236,118,0,3388,3386,1,0,0,0,3389, - 3392,1,0,0,0,3390,3388,1,0,0,0,3390,3391,1,0,0,0,3391,3393,1,0,0, - 0,3392,3390,1,0,0,0,3393,3394,5,867,0,0,3394,3396,1,0,0,0,3395,3384, - 1,0,0,0,3395,3396,1,0,0,0,3396,3406,1,0,0,0,3397,3398,5,155,0,0, - 3398,3403,3,234,117,0,3399,3400,5,868,0,0,3400,3402,3,234,117,0, - 3401,3399,1,0,0,0,3402,3405,1,0,0,0,3403,3401,1,0,0,0,3403,3404, - 1,0,0,0,3404,3407,1,0,0,0,3405,3403,1,0,0,0,3406,3397,1,0,0,0,3406, - 3407,1,0,0,0,3407,203,1,0,0,0,3408,3409,5,103,0,0,3409,3411,5,695, - 0,0,3410,3412,7,46,0,0,3411,3410,1,0,0,0,3411,3412,1,0,0,0,3412, - 3414,1,0,0,0,3413,3415,5,450,0,0,3414,3413,1,0,0,0,3414,3415,1,0, - 0,0,3415,3416,1,0,0,0,3416,3417,5,83,0,0,3417,3419,5,882,0,0,3418, - 3420,7,7,0,0,3419,3418,1,0,0,0,3419,3420,1,0,0,0,3420,3421,1,0,0, - 0,3421,3422,5,88,0,0,3422,3423,5,173,0,0,3423,3427,3,662,331,0,3424, - 3425,5,26,0,0,3425,3426,5,155,0,0,3426,3428,3,698,349,0,3427,3424, - 1,0,0,0,3427,3428,1,0,0,0,3428,3439,1,0,0,0,3429,3430,5,587,0,0, - 3430,3431,5,423,0,0,3431,3433,5,20,0,0,3432,3434,5,859,0,0,3433, - 3432,1,0,0,0,3433,3434,1,0,0,0,3434,3435,1,0,0,0,3435,3437,5,882, - 0,0,3436,3438,5,858,0,0,3437,3436,1,0,0,0,3437,3438,1,0,0,0,3438, - 3440,1,0,0,0,3439,3429,1,0,0,0,3439,3440,1,0,0,0,3440,3445,1,0,0, - 0,3441,3442,5,79,0,0,3442,3443,3,722,361,0,3443,3444,7,48,0,0,3444, - 3446,1,0,0,0,3445,3441,1,0,0,0,3445,3446,1,0,0,0,3446,3458,1,0,0, - 0,3447,3448,5,866,0,0,3448,3453,3,236,118,0,3449,3450,5,868,0,0, - 3450,3452,3,236,118,0,3451,3449,1,0,0,0,3452,3455,1,0,0,0,3453,3451, - 1,0,0,0,3453,3454,1,0,0,0,3454,3456,1,0,0,0,3455,3453,1,0,0,0,3456, - 3457,5,867,0,0,3457,3459,1,0,0,0,3458,3447,1,0,0,0,3458,3459,1,0, - 0,0,3459,3469,1,0,0,0,3460,3461,5,155,0,0,3461,3466,3,234,117,0, - 3462,3463,5,868,0,0,3463,3465,3,234,117,0,3464,3462,1,0,0,0,3465, - 3468,1,0,0,0,3466,3464,1,0,0,0,3466,3467,1,0,0,0,3467,3470,1,0,0, - 0,3468,3466,1,0,0,0,3469,3460,1,0,0,0,3469,3470,1,0,0,0,3470,205, - 1,0,0,0,3471,3472,5,866,0,0,3472,3474,3,224,112,0,3473,3475,3,258, - 129,0,3474,3473,1,0,0,0,3474,3475,1,0,0,0,3475,3477,1,0,0,0,3476, - 3478,3,328,164,0,3477,3476,1,0,0,0,3477,3478,1,0,0,0,3478,3479,1, - 0,0,0,3479,3481,5,867,0,0,3480,3482,3,258,129,0,3481,3480,1,0,0, - 0,3481,3482,1,0,0,0,3482,3484,1,0,0,0,3483,3485,3,328,164,0,3484, - 3483,1,0,0,0,3484,3485,1,0,0,0,3485,3487,1,0,0,0,3486,3488,3,312, - 156,0,3487,3486,1,0,0,0,3487,3488,1,0,0,0,3488,207,1,0,0,0,3489, - 3491,5,143,0,0,3490,3492,7,49,0,0,3491,3490,1,0,0,0,3491,3492,1, - 0,0,0,3492,3494,1,0,0,0,3493,3495,5,88,0,0,3494,3493,1,0,0,0,3494, - 3495,1,0,0,0,3495,3496,1,0,0,0,3496,3502,3,662,331,0,3497,3498,5, - 130,0,0,3498,3499,5,866,0,0,3499,3500,3,680,340,0,3500,3501,5,867, - 0,0,3501,3503,1,0,0,0,3502,3497,1,0,0,0,3502,3503,1,0,0,0,3503,3512, - 1,0,0,0,3504,3505,5,866,0,0,3505,3506,3,670,335,0,3506,3507,5,867, - 0,0,3507,3509,1,0,0,0,3508,3504,1,0,0,0,3508,3509,1,0,0,0,3509,3510, - 1,0,0,0,3510,3513,3,228,114,0,3511,3513,3,232,116,0,3512,3508,1, - 0,0,0,3512,3511,1,0,0,0,3513,209,1,0,0,0,3514,3518,3,282,141,0,3515, - 3517,3,284,142,0,3516,3515,1,0,0,0,3517,3520,1,0,0,0,3518,3516,1, - 0,0,0,3518,3519,1,0,0,0,3519,3529,1,0,0,0,3520,3518,1,0,0,0,3521, - 3523,5,181,0,0,3522,3524,7,45,0,0,3523,3522,1,0,0,0,3523,3524,1, - 0,0,0,3524,3527,1,0,0,0,3525,3528,3,282,141,0,3526,3528,3,280,140, - 0,3527,3525,1,0,0,0,3527,3526,1,0,0,0,3528,3530,1,0,0,0,3529,3521, - 1,0,0,0,3529,3530,1,0,0,0,3530,3535,1,0,0,0,3531,3532,5,868,0,0, - 3532,3534,3,286,143,0,3533,3531,1,0,0,0,3534,3537,1,0,0,0,3535,3533, - 1,0,0,0,3535,3536,1,0,0,0,3536,3539,1,0,0,0,3537,3535,1,0,0,0,3538, - 3540,3,258,129,0,3539,3538,1,0,0,0,3539,3540,1,0,0,0,3540,3542,1, - 0,0,0,3541,3543,3,328,164,0,3542,3541,1,0,0,0,3542,3543,1,0,0,0, - 3543,3545,1,0,0,0,3544,3546,3,238,119,0,3545,3544,1,0,0,0,3545,3546, - 1,0,0,0,3546,3548,1,0,0,0,3547,3549,3,312,156,0,3548,3547,1,0,0, - 0,3548,3549,1,0,0,0,3549,3574,1,0,0,0,3550,3554,3,280,140,0,3551, - 3553,3,284,142,0,3552,3551,1,0,0,0,3553,3556,1,0,0,0,3554,3552,1, - 0,0,0,3554,3555,1,0,0,0,3555,3562,1,0,0,0,3556,3554,1,0,0,0,3557, - 3559,5,181,0,0,3558,3560,7,45,0,0,3559,3558,1,0,0,0,3559,3560,1, - 0,0,0,3560,3561,1,0,0,0,3561,3563,3,280,140,0,3562,3557,1,0,0,0, - 3562,3563,1,0,0,0,3563,3565,1,0,0,0,3564,3566,3,258,129,0,3565,3564, - 1,0,0,0,3565,3566,1,0,0,0,3566,3568,1,0,0,0,3567,3569,3,328,164, - 0,3568,3567,1,0,0,0,3568,3569,1,0,0,0,3569,3571,1,0,0,0,3570,3572, - 3,238,119,0,3571,3570,1,0,0,0,3571,3572,1,0,0,0,3572,3574,1,0,0, - 0,3573,3514,1,0,0,0,3573,3550,1,0,0,0,3574,211,1,0,0,0,3575,3577, - 3,50,25,0,3576,3575,1,0,0,0,3576,3577,1,0,0,0,3577,3578,1,0,0,0, - 3578,3580,3,214,107,0,3579,3581,3,258,129,0,3580,3579,1,0,0,0,3580, - 3581,1,0,0,0,3581,3583,1,0,0,0,3582,3584,3,328,164,0,3583,3582,1, - 0,0,0,3583,3584,1,0,0,0,3584,3586,1,0,0,0,3585,3587,3,312,156,0, - 3586,3585,1,0,0,0,3586,3587,1,0,0,0,3587,213,1,0,0,0,3588,3589,6, - 107,-1,0,3589,3590,3,216,108,0,3590,3605,1,0,0,0,3591,3592,10,2, - 0,0,3592,3594,5,181,0,0,3593,3595,7,45,0,0,3594,3593,1,0,0,0,3594, - 3595,1,0,0,0,3595,3596,1,0,0,0,3596,3604,3,216,108,0,3597,3598,10, - 1,0,0,3598,3600,5,59,0,0,3599,3601,7,45,0,0,3600,3599,1,0,0,0,3600, - 3601,1,0,0,0,3601,3602,1,0,0,0,3602,3604,3,216,108,0,3603,3591,1, - 0,0,0,3603,3597,1,0,0,0,3604,3607,1,0,0,0,3605,3603,1,0,0,0,3605, - 3606,1,0,0,0,3606,215,1,0,0,0,3607,3605,1,0,0,0,3608,3609,6,108, - -1,0,3609,3610,3,218,109,0,3610,3619,1,0,0,0,3611,3612,10,1,0,0, - 3612,3614,5,828,0,0,3613,3615,7,45,0,0,3614,3613,1,0,0,0,3614,3615, - 1,0,0,0,3615,3616,1,0,0,0,3616,3618,3,218,109,0,3617,3611,1,0,0, - 0,3618,3621,1,0,0,0,3619,3617,1,0,0,0,3619,3620,1,0,0,0,3620,217, - 1,0,0,0,3621,3619,1,0,0,0,3622,3637,3,226,113,0,3623,3624,5,866, - 0,0,3624,3626,3,214,107,0,3625,3627,3,258,129,0,3626,3625,1,0,0, - 0,3626,3627,1,0,0,0,3627,3629,1,0,0,0,3628,3630,3,328,164,0,3629, - 3628,1,0,0,0,3629,3630,1,0,0,0,3630,3632,1,0,0,0,3631,3633,3,312, - 156,0,3632,3631,1,0,0,0,3632,3633,1,0,0,0,3633,3634,1,0,0,0,3634, - 3635,5,867,0,0,3635,3637,1,0,0,0,3636,3622,1,0,0,0,3636,3623,1,0, - 0,0,3637,219,1,0,0,0,3638,3641,3,254,127,0,3639,3641,3,256,128,0, - 3640,3638,1,0,0,0,3640,3639,1,0,0,0,3641,221,1,0,0,0,3642,3646,3, - 230,115,0,3643,3644,5,125,0,0,3644,3645,5,20,0,0,3645,3647,3,684, - 342,0,3646,3643,1,0,0,0,3646,3647,1,0,0,0,3647,3650,1,0,0,0,3648, - 3649,5,100,0,0,3649,3651,3,330,165,0,3650,3648,1,0,0,0,3650,3651, - 1,0,0,0,3651,223,1,0,0,0,3652,3657,3,226,113,0,3653,3654,7,50,0, - 0,3654,3656,3,226,113,0,3655,3653,1,0,0,0,3656,3659,1,0,0,0,3657, - 3655,1,0,0,0,3657,3658,1,0,0,0,3658,3661,1,0,0,0,3659,3657,1,0,0, - 0,3660,3662,3,258,129,0,3661,3660,1,0,0,0,3661,3662,1,0,0,0,3662, - 3664,1,0,0,0,3663,3665,3,328,164,0,3664,3663,1,0,0,0,3664,3665,1, - 0,0,0,3665,3667,1,0,0,0,3666,3668,3,312,156,0,3667,3666,1,0,0,0, - 3667,3668,1,0,0,0,3668,225,1,0,0,0,3669,3673,3,210,105,0,3670,3673, - 3,628,314,0,3671,3673,3,222,111,0,3672,3669,1,0,0,0,3672,3670,1, - 0,0,0,3672,3671,1,0,0,0,3673,227,1,0,0,0,3674,3680,3,210,105,0,3675, - 3676,5,173,0,0,3676,3680,3,662,331,0,3677,3680,3,752,376,0,3678, - 3680,3,230,115,0,3679,3674,1,0,0,0,3679,3675,1,0,0,0,3679,3677,1, - 0,0,0,3679,3678,1,0,0,0,3680,229,1,0,0,0,3681,3682,5,189,0,0,3682, - 3683,5,586,0,0,3683,3689,3,754,377,0,3684,3685,5,868,0,0,3685,3686, - 5,586,0,0,3686,3688,3,754,377,0,3687,3684,1,0,0,0,3688,3691,1,0, - 0,0,3689,3687,1,0,0,0,3689,3690,1,0,0,0,3690,231,1,0,0,0,3691,3689, - 1,0,0,0,3692,3693,5,155,0,0,3693,3698,3,234,117,0,3694,3695,5,868, - 0,0,3695,3697,3,234,117,0,3696,3694,1,0,0,0,3697,3700,1,0,0,0,3698, - 3696,1,0,0,0,3698,3699,1,0,0,0,3699,233,1,0,0,0,3700,3698,1,0,0, - 0,3701,3702,3,672,336,0,3702,3703,5,857,0,0,3703,3704,3,756,378, - 0,3704,235,1,0,0,0,3705,3708,3,716,358,0,3706,3708,5,892,0,0,3707, - 3705,1,0,0,0,3707,3706,1,0,0,0,3708,237,1,0,0,0,3709,3710,5,65,0, - 0,3710,3720,7,51,0,0,3711,3712,5,510,0,0,3712,3717,3,662,331,0,3713, - 3714,5,868,0,0,3714,3716,3,662,331,0,3715,3713,1,0,0,0,3716,3719, - 1,0,0,0,3717,3715,1,0,0,0,3717,3718,1,0,0,0,3718,3721,1,0,0,0,3719, - 3717,1,0,0,0,3720,3711,1,0,0,0,3720,3721,1,0,0,0,3721,3724,1,0,0, - 0,3722,3723,7,52,0,0,3723,3725,5,105,0,0,3724,3722,1,0,0,0,3724, - 3725,1,0,0,0,3725,3731,1,0,0,0,3726,3727,5,104,0,0,3727,3728,5,80, - 0,0,3728,3729,5,594,0,0,3729,3731,5,491,0,0,3730,3709,1,0,0,0,3730, - 3726,1,0,0,0,3731,239,1,0,0,0,3732,3734,5,44,0,0,3733,3735,5,107, - 0,0,3734,3733,1,0,0,0,3734,3735,1,0,0,0,3735,3737,1,0,0,0,3736,3738, - 5,549,0,0,3737,3736,1,0,0,0,3737,3738,1,0,0,0,3738,3740,1,0,0,0, - 3739,3741,5,79,0,0,3740,3739,1,0,0,0,3740,3741,1,0,0,0,3741,3742, - 1,0,0,0,3742,3743,5,68,0,0,3743,3748,3,662,331,0,3744,3746,5,13, - 0,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746,3747,1,0,0,0,3747,3749, - 3,716,358,0,3748,3745,1,0,0,0,3748,3749,1,0,0,0,3749,3755,1,0,0, - 0,3750,3751,5,130,0,0,3751,3752,5,866,0,0,3752,3753,3,680,340,0, - 3753,3754,5,867,0,0,3754,3756,1,0,0,0,3755,3750,1,0,0,0,3755,3756, - 1,0,0,0,3756,3759,1,0,0,0,3757,3758,5,192,0,0,3758,3760,3,814,407, - 0,3759,3757,1,0,0,0,3759,3760,1,0,0,0,3760,3762,1,0,0,0,3761,3763, - 3,258,129,0,3762,3761,1,0,0,0,3762,3763,1,0,0,0,3763,3766,1,0,0, - 0,3764,3765,5,100,0,0,3765,3767,3,330,165,0,3766,3764,1,0,0,0,3766, - 3767,1,0,0,0,3767,241,1,0,0,0,3768,3770,5,44,0,0,3769,3771,5,107, - 0,0,3770,3769,1,0,0,0,3770,3771,1,0,0,0,3771,3773,1,0,0,0,3772,3774, - 5,549,0,0,3773,3772,1,0,0,0,3773,3774,1,0,0,0,3774,3776,1,0,0,0, - 3775,3777,5,79,0,0,3776,3775,1,0,0,0,3776,3777,1,0,0,0,3777,3817, - 1,0,0,0,3778,3781,3,662,331,0,3779,3780,5,865,0,0,3780,3782,5,850, - 0,0,3781,3779,1,0,0,0,3781,3782,1,0,0,0,3782,3791,1,0,0,0,3783,3784, - 5,868,0,0,3784,3787,3,662,331,0,3785,3786,5,865,0,0,3786,3788,5, - 850,0,0,3787,3785,1,0,0,0,3787,3788,1,0,0,0,3788,3790,1,0,0,0,3789, - 3783,1,0,0,0,3790,3793,1,0,0,0,3791,3789,1,0,0,0,3791,3792,1,0,0, - 0,3792,3794,1,0,0,0,3793,3791,1,0,0,0,3794,3795,5,68,0,0,3795,3796, - 3,262,131,0,3796,3818,1,0,0,0,3797,3798,5,68,0,0,3798,3801,3,662, - 331,0,3799,3800,5,865,0,0,3800,3802,5,850,0,0,3801,3799,1,0,0,0, - 3801,3802,1,0,0,0,3802,3811,1,0,0,0,3803,3804,5,868,0,0,3804,3807, - 3,662,331,0,3805,3806,5,865,0,0,3806,3808,5,850,0,0,3807,3805,1, - 0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0,0,3809,3803,1,0,0,0,3810, - 3813,1,0,0,0,3811,3809,1,0,0,0,3811,3812,1,0,0,0,3812,3814,1,0,0, - 0,3813,3811,1,0,0,0,3814,3815,5,188,0,0,3815,3816,3,262,131,0,3816, - 3818,1,0,0,0,3817,3778,1,0,0,0,3817,3797,1,0,0,0,3818,3821,1,0,0, - 0,3819,3820,5,192,0,0,3820,3822,3,814,407,0,3821,3819,1,0,0,0,3821, - 3822,1,0,0,0,3822,243,1,0,0,0,3823,3824,5,417,0,0,3824,3825,3,662, - 331,0,3825,3830,5,516,0,0,3826,3828,5,13,0,0,3827,3826,1,0,0,0,3827, - 3828,1,0,0,0,3828,3829,1,0,0,0,3829,3831,3,716,358,0,3830,3827,1, - 0,0,0,3830,3831,1,0,0,0,3831,245,1,0,0,0,3832,3833,5,417,0,0,3833, - 3834,3,662,331,0,3834,3835,5,135,0,0,3835,3842,3,652,326,0,3836, - 3837,3,824,412,0,3837,3838,5,866,0,0,3838,3839,3,758,379,0,3839, - 3840,5,867,0,0,3840,3843,1,0,0,0,3841,3843,7,53,0,0,3842,3836,1, - 0,0,0,3842,3841,1,0,0,0,3843,3846,1,0,0,0,3844,3845,5,192,0,0,3845, - 3847,3,814,407,0,3846,3844,1,0,0,0,3846,3847,1,0,0,0,3847,3850,1, - 0,0,0,3848,3849,5,100,0,0,3849,3851,3,330,165,0,3850,3848,1,0,0, - 0,3850,3851,1,0,0,0,3851,247,1,0,0,0,3852,3853,5,417,0,0,3853,3854, - 3,662,331,0,3854,3855,5,135,0,0,3855,3858,7,54,0,0,3856,3857,5,192, - 0,0,3857,3859,3,814,407,0,3858,3856,1,0,0,0,3858,3859,1,0,0,0,3859, - 3862,1,0,0,0,3860,3861,5,100,0,0,3861,3863,3,330,165,0,3862,3860, - 1,0,0,0,3862,3863,1,0,0,0,3863,249,1,0,0,0,3864,3865,5,417,0,0,3865, - 3866,3,662,331,0,3866,3867,5,334,0,0,3867,251,1,0,0,0,3868,3869, - 5,425,0,0,3869,3870,5,173,0,0,3870,3871,5,68,0,0,3871,3876,3,726, - 363,0,3872,3873,5,868,0,0,3873,3875,3,726,363,0,3874,3872,1,0,0, - 0,3875,3878,1,0,0,0,3876,3874,1,0,0,0,3876,3877,1,0,0,0,3877,253, - 1,0,0,0,3878,3876,1,0,0,0,3879,3881,5,185,0,0,3880,3882,5,107,0, - 0,3881,3880,1,0,0,0,3881,3882,1,0,0,0,3882,3884,1,0,0,0,3883,3885, - 5,79,0,0,3884,3883,1,0,0,0,3884,3885,1,0,0,0,3885,3886,1,0,0,0,3886, - 3891,3,662,331,0,3887,3889,5,13,0,0,3888,3887,1,0,0,0,3888,3889, - 1,0,0,0,3889,3890,1,0,0,0,3890,3892,3,716,358,0,3891,3888,1,0,0, - 0,3891,3892,1,0,0,0,3892,3893,1,0,0,0,3893,3894,5,155,0,0,3894,3899, - 3,234,117,0,3895,3896,5,868,0,0,3896,3898,3,234,117,0,3897,3895, - 1,0,0,0,3898,3901,1,0,0,0,3899,3897,1,0,0,0,3899,3900,1,0,0,0,3900, - 3904,1,0,0,0,3901,3899,1,0,0,0,3902,3903,5,192,0,0,3903,3905,3,814, - 407,0,3904,3902,1,0,0,0,3904,3905,1,0,0,0,3905,3907,1,0,0,0,3906, - 3908,3,258,129,0,3907,3906,1,0,0,0,3907,3908,1,0,0,0,3908,3910,1, - 0,0,0,3909,3911,3,328,164,0,3910,3909,1,0,0,0,3910,3911,1,0,0,0, - 3911,255,1,0,0,0,3912,3914,5,185,0,0,3913,3915,5,107,0,0,3914,3913, - 1,0,0,0,3914,3915,1,0,0,0,3915,3917,1,0,0,0,3916,3918,5,79,0,0,3917, - 3916,1,0,0,0,3917,3918,1,0,0,0,3918,3919,1,0,0,0,3919,3920,3,262, - 131,0,3920,3921,5,155,0,0,3921,3926,3,234,117,0,3922,3923,5,868, - 0,0,3923,3925,3,234,117,0,3924,3922,1,0,0,0,3925,3928,1,0,0,0,3926, - 3924,1,0,0,0,3926,3927,1,0,0,0,3927,3931,1,0,0,0,3928,3926,1,0,0, - 0,3929,3930,5,192,0,0,3930,3932,3,814,407,0,3931,3929,1,0,0,0,3931, - 3932,1,0,0,0,3932,257,1,0,0,0,3933,3934,5,125,0,0,3934,3935,5,20, - 0,0,3935,3940,3,260,130,0,3936,3937,5,868,0,0,3937,3939,3,260,130, - 0,3938,3936,1,0,0,0,3939,3942,1,0,0,0,3940,3938,1,0,0,0,3940,3941, - 1,0,0,0,3941,259,1,0,0,0,3942,3940,1,0,0,0,3943,3945,3,814,407,0, - 3944,3946,7,55,0,0,3945,3944,1,0,0,0,3945,3946,1,0,0,0,3946,261, - 1,0,0,0,3947,3952,3,264,132,0,3948,3949,5,868,0,0,3949,3951,3,264, - 132,0,3950,3948,1,0,0,0,3951,3954,1,0,0,0,3952,3950,1,0,0,0,3952, - 3953,1,0,0,0,3953,263,1,0,0,0,3954,3952,1,0,0,0,3955,3959,3,266, - 133,0,3956,3958,3,276,138,0,3957,3956,1,0,0,0,3958,3961,1,0,0,0, - 3959,3957,1,0,0,0,3959,3960,1,0,0,0,3960,3974,1,0,0,0,3961,3959, - 1,0,0,0,3962,3963,5,866,0,0,3963,3967,3,266,133,0,3964,3966,3,276, - 138,0,3965,3964,1,0,0,0,3966,3969,1,0,0,0,3967,3965,1,0,0,0,3967, - 3968,1,0,0,0,3968,3970,1,0,0,0,3969,3967,1,0,0,0,3970,3971,5,867, - 0,0,3971,3974,1,0,0,0,3972,3974,3,288,144,0,3973,3955,1,0,0,0,3973, - 3962,1,0,0,0,3973,3972,1,0,0,0,3974,265,1,0,0,0,3975,3981,3,662, - 331,0,3976,3977,5,130,0,0,3977,3978,5,866,0,0,3978,3979,3,680,340, - 0,3979,3980,5,867,0,0,3980,3982,1,0,0,0,3981,3976,1,0,0,0,3981,3982, - 1,0,0,0,3982,3987,1,0,0,0,3983,3985,5,13,0,0,3984,3983,1,0,0,0,3984, - 3985,1,0,0,0,3985,3986,1,0,0,0,3986,3988,3,716,358,0,3987,3984,1, - 0,0,0,3987,3988,1,0,0,0,3988,3997,1,0,0,0,3989,3994,3,272,136,0, - 3990,3991,5,868,0,0,3991,3993,3,272,136,0,3992,3990,1,0,0,0,3993, - 3996,1,0,0,0,3994,3992,1,0,0,0,3994,3995,1,0,0,0,3995,3998,1,0,0, - 0,3996,3994,1,0,0,0,3997,3989,1,0,0,0,3997,3998,1,0,0,0,3998,4015, - 1,0,0,0,3999,4001,5,95,0,0,4000,3999,1,0,0,0,4000,4001,1,0,0,0,4001, - 4002,1,0,0,0,4002,4004,3,268,134,0,4003,4005,5,13,0,0,4004,4003, - 1,0,0,0,4004,4005,1,0,0,0,4005,4006,1,0,0,0,4006,4008,3,716,358, - 0,4007,4009,3,270,135,0,4008,4007,1,0,0,0,4008,4009,1,0,0,0,4009, - 4015,1,0,0,0,4010,4011,5,866,0,0,4011,4012,3,262,131,0,4012,4013, - 5,867,0,0,4013,4015,1,0,0,0,4014,3975,1,0,0,0,4014,4000,1,0,0,0, - 4014,4010,1,0,0,0,4015,267,1,0,0,0,4016,4022,3,210,105,0,4017,4018, - 5,866,0,0,4018,4019,3,210,105,0,4019,4020,5,867,0,0,4020,4022,1, - 0,0,0,4021,4016,1,0,0,0,4021,4017,1,0,0,0,4022,269,1,0,0,0,4023, - 4024,5,866,0,0,4024,4025,3,670,335,0,4025,4026,5,867,0,0,4026,271, - 1,0,0,0,4027,4028,7,56,0,0,4028,4031,7,19,0,0,4029,4030,5,65,0,0, - 4030,4032,3,274,137,0,4031,4029,1,0,0,0,4031,4032,1,0,0,0,4032,4033, - 1,0,0,0,4033,4035,5,866,0,0,4034,4036,3,650,325,0,4035,4034,1,0, - 0,0,4035,4036,1,0,0,0,4036,4037,1,0,0,0,4037,4038,5,867,0,0,4038, - 273,1,0,0,0,4039,4045,5,91,0,0,4040,4041,5,125,0,0,4041,4045,5,20, - 0,0,4042,4043,5,74,0,0,4043,4045,5,20,0,0,4044,4039,1,0,0,0,4044, - 4040,1,0,0,0,4044,4042,1,0,0,0,4045,275,1,0,0,0,4046,4048,7,57,0, - 0,4047,4046,1,0,0,0,4047,4048,1,0,0,0,4048,4049,1,0,0,0,4049,4051, - 5,91,0,0,4050,4052,5,95,0,0,4051,4050,1,0,0,0,4051,4052,1,0,0,0, - 4052,4053,1,0,0,0,4053,4057,3,266,133,0,4054,4056,3,278,139,0,4055, - 4054,1,0,0,0,4056,4059,1,0,0,0,4057,4055,1,0,0,0,4057,4058,1,0,0, - 0,4058,4096,1,0,0,0,4059,4057,1,0,0,0,4060,4061,5,172,0,0,4061,4065, - 3,266,133,0,4062,4064,3,278,139,0,4063,4062,1,0,0,0,4064,4067,1, - 0,0,0,4065,4063,1,0,0,0,4065,4066,1,0,0,0,4066,4096,1,0,0,0,4067, - 4065,1,0,0,0,4068,4070,7,58,0,0,4069,4071,5,127,0,0,4070,4069,1, - 0,0,0,4070,4071,1,0,0,0,4071,4072,1,0,0,0,4072,4074,5,91,0,0,4073, - 4075,5,95,0,0,4074,4073,1,0,0,0,4074,4075,1,0,0,0,4075,4076,1,0, - 0,0,4076,4080,3,266,133,0,4077,4079,3,278,139,0,4078,4077,1,0,0, - 0,4079,4082,1,0,0,0,4080,4078,1,0,0,0,4080,4081,1,0,0,0,4081,4096, - 1,0,0,0,4082,4080,1,0,0,0,4083,4091,5,113,0,0,4084,4087,5,84,0,0, - 4085,4087,7,58,0,0,4086,4084,1,0,0,0,4086,4085,1,0,0,0,4087,4089, - 1,0,0,0,4088,4090,5,127,0,0,4089,4088,1,0,0,0,4089,4090,1,0,0,0, - 4090,4092,1,0,0,0,4091,4086,1,0,0,0,4091,4092,1,0,0,0,4092,4093, - 1,0,0,0,4093,4094,5,91,0,0,4094,4096,3,266,133,0,4095,4047,1,0,0, - 0,4095,4060,1,0,0,0,4095,4068,1,0,0,0,4095,4083,1,0,0,0,4096,277, - 1,0,0,0,4097,4098,5,119,0,0,4098,4105,3,814,407,0,4099,4100,5,188, - 0,0,4100,4101,5,866,0,0,4101,4102,3,670,335,0,4102,4103,5,867,0, - 0,4103,4105,1,0,0,0,4104,4097,1,0,0,0,4104,4099,1,0,0,0,4105,279, - 1,0,0,0,4106,4107,5,866,0,0,4107,4108,3,282,141,0,4108,4109,5,867, - 0,0,4109,4115,1,0,0,0,4110,4111,5,866,0,0,4111,4112,3,280,140,0, - 4112,4113,5,867,0,0,4113,4115,1,0,0,0,4114,4106,1,0,0,0,4114,4110, - 1,0,0,0,4115,281,1,0,0,0,4116,4120,5,154,0,0,4117,4119,3,298,149, - 0,4118,4117,1,0,0,0,4119,4122,1,0,0,0,4120,4118,1,0,0,0,4120,4121, - 1,0,0,0,4121,4123,1,0,0,0,4122,4120,1,0,0,0,4123,4125,3,300,150, - 0,4124,4126,3,312,156,0,4125,4124,1,0,0,0,4125,4126,1,0,0,0,4126, - 4127,1,0,0,0,4127,4129,3,318,159,0,4128,4130,3,320,160,0,4129,4128, - 1,0,0,0,4129,4130,1,0,0,0,4130,4132,1,0,0,0,4131,4133,3,322,161, - 0,4132,4131,1,0,0,0,4132,4133,1,0,0,0,4133,4135,1,0,0,0,4134,4136, - 3,324,162,0,4135,4134,1,0,0,0,4135,4136,1,0,0,0,4136,4138,1,0,0, - 0,4137,4139,3,258,129,0,4138,4137,1,0,0,0,4138,4139,1,0,0,0,4139, - 4141,1,0,0,0,4140,4142,3,328,164,0,4141,4140,1,0,0,0,4141,4142,1, - 0,0,0,4142,4144,1,0,0,0,4143,4145,3,312,156,0,4144,4143,1,0,0,0, - 4144,4145,1,0,0,0,4145,4147,1,0,0,0,4146,4148,3,284,142,0,4147,4146, - 1,0,0,0,4147,4148,1,0,0,0,4148,283,1,0,0,0,4149,4151,5,181,0,0,4150, - 4152,7,45,0,0,4151,4150,1,0,0,0,4151,4152,1,0,0,0,4152,4155,1,0, - 0,0,4153,4156,3,282,141,0,4154,4156,3,280,140,0,4155,4153,1,0,0, - 0,4155,4154,1,0,0,0,4156,285,1,0,0,0,4157,4172,5,95,0,0,4158,4173, - 3,282,141,0,4159,4173,3,280,140,0,4160,4163,5,866,0,0,4161,4164, - 3,282,141,0,4162,4164,3,280,140,0,4163,4161,1,0,0,0,4163,4162,1, - 0,0,0,4164,4165,1,0,0,0,4165,4170,5,867,0,0,4166,4168,5,13,0,0,4167, - 4166,1,0,0,0,4167,4168,1,0,0,0,4168,4169,1,0,0,0,4169,4171,3,716, - 358,0,4170,4167,1,0,0,0,4170,4171,1,0,0,0,4171,4173,1,0,0,0,4172, - 4158,1,0,0,0,4172,4159,1,0,0,0,4172,4160,1,0,0,0,4173,287,1,0,0, - 0,4174,4175,5,253,0,0,4175,4176,5,866,0,0,4176,4177,5,882,0,0,4177, - 4178,5,868,0,0,4178,4179,5,882,0,0,4179,4180,5,337,0,0,4180,4181, - 5,866,0,0,4181,4182,3,290,145,0,4182,4183,5,867,0,0,4183,4188,5, - 867,0,0,4184,4186,5,13,0,0,4185,4184,1,0,0,0,4185,4186,1,0,0,0,4186, - 4187,1,0,0,0,4187,4189,3,716,358,0,4188,4185,1,0,0,0,4188,4189,1, - 0,0,0,4189,289,1,0,0,0,4190,4195,3,292,146,0,4191,4192,5,868,0,0, - 4192,4194,3,292,146,0,4193,4191,1,0,0,0,4194,4197,1,0,0,0,4195,4193, - 1,0,0,0,4195,4196,1,0,0,0,4196,291,1,0,0,0,4197,4195,1,0,0,0,4198, - 4215,3,672,336,0,4199,4200,5,65,0,0,4200,4216,5,256,0,0,4201,4213, - 3,736,368,0,4202,4203,5,257,0,0,4203,4205,5,882,0,0,4204,4206,3, - 294,147,0,4205,4204,1,0,0,0,4205,4206,1,0,0,0,4206,4208,1,0,0,0, - 4207,4209,3,296,148,0,4208,4207,1,0,0,0,4208,4209,1,0,0,0,4209,4214, - 1,0,0,0,4210,4211,5,60,0,0,4211,4212,5,257,0,0,4212,4214,5,882,0, - 0,4213,4202,1,0,0,0,4213,4210,1,0,0,0,4214,4216,1,0,0,0,4215,4199, - 1,0,0,0,4215,4201,1,0,0,0,4216,4228,1,0,0,0,4217,4219,5,255,0,0, - 4218,4220,5,257,0,0,4219,4218,1,0,0,0,4219,4220,1,0,0,0,4220,4221, - 1,0,0,0,4221,4222,5,882,0,0,4222,4223,5,337,0,0,4223,4224,5,866, - 0,0,4224,4225,3,290,145,0,4225,4226,5,867,0,0,4226,4228,1,0,0,0, - 4227,4198,1,0,0,0,4227,4217,1,0,0,0,4228,293,1,0,0,0,4229,4234,5, - 116,0,0,4230,4234,5,382,0,0,4231,4232,5,42,0,0,4232,4234,3,764,382, - 0,4233,4229,1,0,0,0,4233,4230,1,0,0,0,4233,4231,1,0,0,0,4234,4235, - 1,0,0,0,4235,4236,5,119,0,0,4236,4237,5,55,0,0,4237,295,1,0,0,0, - 4238,4243,5,116,0,0,4239,4243,5,382,0,0,4240,4241,5,42,0,0,4241, - 4243,3,764,382,0,4242,4238,1,0,0,0,4242,4239,1,0,0,0,4242,4240,1, - 0,0,0,4243,4244,1,0,0,0,4244,4245,5,119,0,0,4245,4246,5,382,0,0, - 4246,297,1,0,0,0,4247,4256,7,59,0,0,4248,4256,5,76,0,0,4249,4256, - 5,172,0,0,4250,4256,5,168,0,0,4251,4256,5,166,0,0,4252,4256,5,636, - 0,0,4253,4256,7,60,0,0,4254,4256,5,167,0,0,4255,4247,1,0,0,0,4255, - 4248,1,0,0,0,4255,4249,1,0,0,0,4255,4250,1,0,0,0,4255,4251,1,0,0, - 0,4255,4252,1,0,0,0,4255,4253,1,0,0,0,4255,4254,1,0,0,0,4256,299, - 1,0,0,0,4257,4260,3,306,153,0,4258,4260,3,302,151,0,4259,4257,1, - 0,0,0,4259,4258,1,0,0,0,4260,4265,1,0,0,0,4261,4262,5,868,0,0,4262, - 4264,3,302,151,0,4263,4261,1,0,0,0,4264,4267,1,0,0,0,4265,4263,1, - 0,0,0,4265,4266,1,0,0,0,4266,301,1,0,0,0,4267,4265,1,0,0,0,4268, - 4284,3,304,152,0,4269,4274,3,308,154,0,4270,4272,5,13,0,0,4271,4270, - 1,0,0,0,4271,4272,1,0,0,0,4272,4273,1,0,0,0,4273,4275,3,716,358, - 0,4274,4271,1,0,0,0,4274,4275,1,0,0,0,4275,4284,1,0,0,0,4276,4281, - 3,310,155,0,4277,4279,5,13,0,0,4278,4277,1,0,0,0,4278,4279,1,0,0, - 0,4279,4280,1,0,0,0,4280,4282,3,716,358,0,4281,4278,1,0,0,0,4281, - 4282,1,0,0,0,4282,4284,1,0,0,0,4283,4268,1,0,0,0,4283,4269,1,0,0, - 0,4283,4276,1,0,0,0,4284,303,1,0,0,0,4285,4286,3,712,356,0,4286, - 4287,5,865,0,0,4287,4288,5,850,0,0,4288,305,1,0,0,0,4289,4290,5, - 850,0,0,4290,307,1,0,0,0,4291,4292,3,672,336,0,4292,309,1,0,0,0, - 4293,4294,5,892,0,0,4294,4296,5,841,0,0,4295,4293,1,0,0,0,4295,4296, - 1,0,0,0,4296,4297,1,0,0,0,4297,4300,3,814,407,0,4298,4300,3,774, - 387,0,4299,4295,1,0,0,0,4299,4298,1,0,0,0,4300,311,1,0,0,0,4301, - 4302,5,88,0,0,4302,4307,3,236,118,0,4303,4304,5,868,0,0,4304,4306, - 3,236,118,0,4305,4303,1,0,0,0,4306,4309,1,0,0,0,4307,4305,1,0,0, - 0,4307,4308,1,0,0,0,4308,4338,1,0,0,0,4309,4307,1,0,0,0,4310,4311, - 5,88,0,0,4311,4312,5,372,0,0,4312,4338,5,882,0,0,4313,4314,5,88, - 0,0,4314,4315,5,128,0,0,4315,4319,5,882,0,0,4316,4317,5,26,0,0,4317, - 4318,5,155,0,0,4318,4320,3,698,349,0,4319,4316,1,0,0,0,4319,4320, - 1,0,0,0,4320,4327,1,0,0,0,4321,4323,7,47,0,0,4322,4324,3,314,157, - 0,4323,4322,1,0,0,0,4324,4325,1,0,0,0,4325,4323,1,0,0,0,4325,4326, - 1,0,0,0,4326,4328,1,0,0,0,4327,4321,1,0,0,0,4327,4328,1,0,0,0,4328, - 4335,1,0,0,0,4329,4331,5,102,0,0,4330,4332,3,316,158,0,4331,4330, - 1,0,0,0,4332,4333,1,0,0,0,4333,4331,1,0,0,0,4333,4334,1,0,0,0,4334, - 4336,1,0,0,0,4335,4329,1,0,0,0,4335,4336,1,0,0,0,4336,4338,1,0,0, - 0,4337,4301,1,0,0,0,4337,4310,1,0,0,0,4337,4313,1,0,0,0,4338,313, - 1,0,0,0,4339,4340,5,174,0,0,4340,4341,5,20,0,0,4341,4352,5,882,0, - 0,4342,4344,5,123,0,0,4343,4342,1,0,0,0,4343,4344,1,0,0,0,4344,4345, - 1,0,0,0,4345,4346,5,56,0,0,4346,4347,5,20,0,0,4347,4352,5,882,0, - 0,4348,4349,5,58,0,0,4349,4350,5,20,0,0,4350,4352,5,882,0,0,4351, - 4339,1,0,0,0,4351,4343,1,0,0,0,4351,4348,1,0,0,0,4352,315,1,0,0, - 0,4353,4354,5,171,0,0,4354,4355,5,20,0,0,4355,4360,5,882,0,0,4356, - 4357,5,174,0,0,4357,4358,5,20,0,0,4358,4360,5,882,0,0,4359,4353, - 1,0,0,0,4359,4356,1,0,0,0,4360,317,1,0,0,0,4361,4362,5,68,0,0,4362, - 4364,3,262,131,0,4363,4361,1,0,0,0,4363,4364,1,0,0,0,4364,4367,1, - 0,0,0,4365,4366,5,192,0,0,4366,4368,3,814,407,0,4367,4365,1,0,0, - 0,4367,4368,1,0,0,0,4368,319,1,0,0,0,4369,4370,5,74,0,0,4370,4371, - 5,20,0,0,4371,4376,3,326,163,0,4372,4373,5,868,0,0,4373,4375,3,326, - 163,0,4374,4372,1,0,0,0,4375,4378,1,0,0,0,4376,4374,1,0,0,0,4376, - 4377,1,0,0,0,4377,4381,1,0,0,0,4378,4376,1,0,0,0,4379,4380,5,194, - 0,0,4380,4382,5,584,0,0,4381,4379,1,0,0,0,4381,4382,1,0,0,0,4382, - 321,1,0,0,0,4383,4384,5,75,0,0,4384,4385,3,814,407,0,4385,323,1, - 0,0,0,4386,4387,5,689,0,0,4387,4388,3,792,396,0,4388,4389,5,13,0, - 0,4389,4390,5,866,0,0,4390,4391,3,790,395,0,4391,4401,5,867,0,0, - 4392,4393,5,868,0,0,4393,4394,3,792,396,0,4394,4395,5,13,0,0,4395, - 4396,5,866,0,0,4396,4397,3,790,395,0,4397,4398,5,867,0,0,4398,4400, - 1,0,0,0,4399,4392,1,0,0,0,4400,4403,1,0,0,0,4401,4399,1,0,0,0,4401, - 4402,1,0,0,0,4402,325,1,0,0,0,4403,4401,1,0,0,0,4404,4406,3,814, - 407,0,4405,4407,7,55,0,0,4406,4405,1,0,0,0,4406,4407,1,0,0,0,4407, - 327,1,0,0,0,4408,4419,5,100,0,0,4409,4410,3,330,165,0,4410,4411, - 5,868,0,0,4411,4413,1,0,0,0,4412,4409,1,0,0,0,4412,4413,1,0,0,0, - 4413,4414,1,0,0,0,4414,4420,3,330,165,0,4415,4416,3,330,165,0,4416, - 4417,5,509,0,0,4417,4418,3,330,165,0,4418,4420,1,0,0,0,4419,4412, - 1,0,0,0,4419,4415,1,0,0,0,4420,329,1,0,0,0,4421,4425,3,722,361,0, - 4422,4425,3,696,348,0,4423,4425,3,718,359,0,4424,4421,1,0,0,0,4424, - 4422,1,0,0,0,4424,4423,1,0,0,0,4425,331,1,0,0,0,4426,4427,5,640, - 0,0,4427,4436,5,664,0,0,4428,4433,3,354,177,0,4429,4430,5,868,0, - 0,4430,4432,3,354,177,0,4431,4429,1,0,0,0,4432,4435,1,0,0,0,4433, - 4431,1,0,0,0,4433,4434,1,0,0,0,4434,4437,1,0,0,0,4435,4433,1,0,0, - 0,4436,4428,1,0,0,0,4436,4437,1,0,0,0,4437,333,1,0,0,0,4438,4440, - 5,317,0,0,4439,4441,5,691,0,0,4440,4439,1,0,0,0,4440,4441,1,0,0, - 0,4441,335,1,0,0,0,4442,4444,5,341,0,0,4443,4445,5,691,0,0,4444, - 4443,1,0,0,0,4444,4445,1,0,0,0,4445,4451,1,0,0,0,4446,4448,5,11, - 0,0,4447,4449,5,502,0,0,4448,4447,1,0,0,0,4448,4449,1,0,0,0,4449, - 4450,1,0,0,0,4450,4452,5,326,0,0,4451,4446,1,0,0,0,4451,4452,1,0, - 0,0,4452,4457,1,0,0,0,4453,4455,5,502,0,0,4454,4453,1,0,0,0,4454, - 4455,1,0,0,0,4455,4456,1,0,0,0,4456,4458,5,140,0,0,4457,4454,1,0, - 0,0,4457,4458,1,0,0,0,4458,337,1,0,0,0,4459,4461,5,583,0,0,4460, - 4462,5,691,0,0,4461,4460,1,0,0,0,4461,4462,1,0,0,0,4462,4468,1,0, - 0,0,4463,4465,5,11,0,0,4464,4466,5,502,0,0,4465,4464,1,0,0,0,4465, - 4466,1,0,0,0,4466,4467,1,0,0,0,4467,4469,5,326,0,0,4468,4463,1,0, - 0,0,4468,4469,1,0,0,0,4469,4474,1,0,0,0,4470,4472,5,502,0,0,4471, - 4470,1,0,0,0,4471,4472,1,0,0,0,4472,4473,1,0,0,0,4473,4475,5,140, - 0,0,4474,4471,1,0,0,0,4474,4475,1,0,0,0,4475,339,1,0,0,0,4476,4477, - 5,589,0,0,4477,4478,3,716,358,0,4478,341,1,0,0,0,4479,4481,5,583, - 0,0,4480,4482,5,691,0,0,4481,4480,1,0,0,0,4481,4482,1,0,0,0,4482, - 4483,1,0,0,0,4483,4485,5,176,0,0,4484,4486,5,589,0,0,4485,4484,1, - 0,0,0,4485,4486,1,0,0,0,4486,4487,1,0,0,0,4487,4488,3,716,358,0, - 4488,343,1,0,0,0,4489,4490,5,140,0,0,4490,4491,5,589,0,0,4491,4492, - 3,716,358,0,4492,345,1,0,0,0,4493,4494,5,104,0,0,4494,4495,7,61, - 0,0,4495,4500,3,356,178,0,4496,4497,5,868,0,0,4497,4499,3,356,178, - 0,4498,4496,1,0,0,0,4499,4502,1,0,0,0,4500,4498,1,0,0,0,4500,4501, - 1,0,0,0,4501,347,1,0,0,0,4502,4500,1,0,0,0,4503,4504,5,183,0,0,4504, - 4505,5,752,0,0,4505,349,1,0,0,0,4506,4507,5,155,0,0,4507,4508,5, - 313,0,0,4508,4509,5,857,0,0,4509,4510,7,26,0,0,4510,351,1,0,0,0, - 4511,4513,5,155,0,0,4512,4514,7,62,0,0,4513,4512,1,0,0,0,4513,4514, - 1,0,0,0,4514,4515,1,0,0,0,4515,4516,5,664,0,0,4516,4521,3,360,180, - 0,4517,4518,5,868,0,0,4518,4520,3,360,180,0,4519,4517,1,0,0,0,4520, - 4523,1,0,0,0,4521,4519,1,0,0,0,4521,4522,1,0,0,0,4522,353,1,0,0, - 0,4523,4521,1,0,0,0,4524,4525,5,194,0,0,4525,4526,5,350,0,0,4526, - 4532,5,600,0,0,4527,4528,5,135,0,0,4528,4532,5,195,0,0,4529,4530, - 5,135,0,0,4530,4532,5,515,0,0,4531,4524,1,0,0,0,4531,4527,1,0,0, - 0,4531,4529,1,0,0,0,4532,355,1,0,0,0,4533,4538,3,662,331,0,4534, - 4536,5,13,0,0,4535,4534,1,0,0,0,4535,4536,1,0,0,0,4536,4537,1,0, - 0,0,4537,4539,3,716,358,0,4538,4535,1,0,0,0,4538,4539,1,0,0,0,4539, - 4540,1,0,0,0,4540,4541,3,358,179,0,4541,357,1,0,0,0,4542,4544,5, - 135,0,0,4543,4545,5,450,0,0,4544,4543,1,0,0,0,4544,4545,1,0,0,0, - 4545,4551,1,0,0,0,4546,4548,5,107,0,0,4547,4546,1,0,0,0,4547,4548, - 1,0,0,0,4548,4549,1,0,0,0,4549,4551,5,195,0,0,4550,4542,1,0,0,0, - 4550,4547,1,0,0,0,4551,359,1,0,0,0,4552,4553,5,440,0,0,4553,4554, - 5,448,0,0,4554,4560,3,362,181,0,4555,4556,5,135,0,0,4556,4560,5, - 195,0,0,4557,4558,5,135,0,0,4558,4560,5,515,0,0,4559,4552,1,0,0, - 0,4559,4555,1,0,0,0,4559,4557,1,0,0,0,4560,361,1,0,0,0,4561,4562, - 5,809,0,0,4562,4569,5,135,0,0,4563,4564,5,135,0,0,4564,4569,5,810, - 0,0,4565,4566,5,135,0,0,4566,4569,5,811,0,0,4567,4569,5,812,0,0, - 4568,4561,1,0,0,0,4568,4563,1,0,0,0,4568,4565,1,0,0,0,4568,4567, - 1,0,0,0,4569,363,1,0,0,0,4570,4571,5,25,0,0,4571,4572,5,453,0,0, - 4572,4573,5,176,0,0,4573,4578,3,380,190,0,4574,4575,5,868,0,0,4575, - 4577,3,380,190,0,4576,4574,1,0,0,0,4577,4580,1,0,0,0,4578,4576,1, - 0,0,0,4578,4579,1,0,0,0,4579,4582,1,0,0,0,4580,4578,1,0,0,0,4581, - 4583,3,400,200,0,4582,4581,1,0,0,0,4582,4583,1,0,0,0,4583,365,1, - 0,0,0,4584,4585,5,25,0,0,4585,4586,5,572,0,0,4586,4587,5,400,0,0, - 4587,4592,3,402,201,0,4588,4589,5,868,0,0,4589,4591,3,402,201,0, - 4590,4588,1,0,0,0,4591,4594,1,0,0,0,4592,4590,1,0,0,0,4592,4593, - 1,0,0,0,4593,4596,1,0,0,0,4594,4592,1,0,0,0,4595,4597,3,400,200, - 0,4596,4595,1,0,0,0,4596,4597,1,0,0,0,4597,367,1,0,0,0,4598,4599, - 5,25,0,0,4599,4600,5,572,0,0,4600,4601,5,605,0,0,4601,4602,5,176, - 0,0,4602,4607,3,390,195,0,4603,4604,5,868,0,0,4604,4606,3,390,195, - 0,4605,4603,1,0,0,0,4606,4609,1,0,0,0,4607,4605,1,0,0,0,4607,4608, - 1,0,0,0,4608,4611,1,0,0,0,4609,4607,1,0,0,0,4610,4612,3,400,200, - 0,4611,4610,1,0,0,0,4611,4612,1,0,0,0,4612,369,1,0,0,0,4613,4614, - 5,133,0,0,4614,4615,7,63,0,0,4615,4620,5,452,0,0,4616,4617,5,176, - 0,0,4617,4621,5,882,0,0,4618,4619,5,16,0,0,4619,4621,5,882,0,0,4620, - 4616,1,0,0,0,4620,4618,1,0,0,0,4621,371,1,0,0,0,4622,4623,5,640, - 0,0,4623,4632,7,64,0,0,4624,4629,3,406,203,0,4625,4626,5,868,0,0, - 4626,4628,3,406,203,0,4627,4625,1,0,0,0,4628,4631,1,0,0,0,4629,4627, - 1,0,0,0,4629,4630,1,0,0,0,4630,4633,1,0,0,0,4631,4629,1,0,0,0,4632, - 4624,1,0,0,0,4632,4633,1,0,0,0,4633,4636,1,0,0,0,4634,4635,5,676, - 0,0,4635,4637,3,408,204,0,4636,4634,1,0,0,0,4636,4637,1,0,0,0,4637, - 4641,1,0,0,0,4638,4640,3,410,205,0,4639,4638,1,0,0,0,4640,4643,1, - 0,0,0,4641,4639,1,0,0,0,4641,4642,1,0,0,0,4642,4645,1,0,0,0,4643, - 4641,1,0,0,0,4644,4646,3,400,200,0,4645,4644,1,0,0,0,4645,4646,1, - 0,0,0,4646,373,1,0,0,0,4647,4648,5,646,0,0,4648,4657,7,64,0,0,4649, - 4654,3,406,203,0,4650,4651,5,868,0,0,4651,4653,3,406,203,0,4652, - 4650,1,0,0,0,4653,4656,1,0,0,0,4654,4652,1,0,0,0,4654,4655,1,0,0, - 0,4655,4658,1,0,0,0,4656,4654,1,0,0,0,4657,4649,1,0,0,0,4657,4658, - 1,0,0,0,4658,4660,1,0,0,0,4659,4661,3,400,200,0,4660,4659,1,0,0, - 0,4660,4661,1,0,0,0,4661,375,1,0,0,0,4662,4663,5,640,0,0,4663,4667, - 5,415,0,0,4664,4665,5,678,0,0,4665,4666,5,857,0,0,4666,4668,5,882, - 0,0,4667,4664,1,0,0,0,4667,4668,1,0,0,0,4668,4673,1,0,0,0,4669,4670, - 5,868,0,0,4670,4671,5,529,0,0,4671,4672,5,857,0,0,4672,4674,5,882, - 0,0,4673,4669,1,0,0,0,4673,4674,1,0,0,0,4674,4679,1,0,0,0,4675,4676, - 5,868,0,0,4676,4677,5,363,0,0,4677,4678,5,857,0,0,4678,4680,5,882, - 0,0,4679,4675,1,0,0,0,4679,4680,1,0,0,0,4680,377,1,0,0,0,4681,4682, - 5,646,0,0,4682,4683,5,415,0,0,4683,379,1,0,0,0,4684,4685,3,382,191, - 0,4685,4686,5,857,0,0,4686,4687,5,882,0,0,4687,4712,1,0,0,0,4688, - 4689,3,384,192,0,4689,4690,5,857,0,0,4690,4691,3,722,361,0,4691, - 4712,1,0,0,0,4692,4693,3,386,193,0,4693,4694,5,857,0,0,4694,4695, - 7,26,0,0,4695,4712,1,0,0,0,4696,4712,3,388,194,0,4697,4698,5,424, - 0,0,4698,4699,5,857,0,0,4699,4708,5,866,0,0,4700,4705,3,716,358, - 0,4701,4702,5,868,0,0,4702,4704,3,716,358,0,4703,4701,1,0,0,0,4704, - 4707,1,0,0,0,4705,4703,1,0,0,0,4705,4706,1,0,0,0,4706,4709,1,0,0, - 0,4707,4705,1,0,0,0,4708,4700,1,0,0,0,4708,4709,1,0,0,0,4709,4710, - 1,0,0,0,4710,4712,5,867,0,0,4711,4684,1,0,0,0,4711,4688,1,0,0,0, - 4711,4692,1,0,0,0,4711,4696,1,0,0,0,4711,4697,1,0,0,0,4712,381,1, - 0,0,0,4713,4714,7,65,0,0,4714,383,1,0,0,0,4715,4716,7,66,0,0,4716, - 385,1,0,0,0,4717,4718,7,67,0,0,4718,387,1,0,0,0,4719,4720,5,543, - 0,0,4720,4721,5,857,0,0,4721,4733,7,68,0,0,4722,4723,5,574,0,0,4723, - 4724,5,857,0,0,4724,4733,7,69,0,0,4725,4726,5,310,0,0,4726,4730, - 5,857,0,0,4727,4731,5,507,0,0,4728,4731,5,450,0,0,4729,4731,3,412, - 206,0,4730,4727,1,0,0,0,4730,4728,1,0,0,0,4730,4729,1,0,0,0,4731, - 4733,1,0,0,0,4732,4719,1,0,0,0,4732,4722,1,0,0,0,4732,4725,1,0,0, - 0,4733,389,1,0,0,0,4734,4735,3,392,196,0,4735,4736,5,857,0,0,4736, - 4737,5,882,0,0,4737,4762,1,0,0,0,4738,4739,3,394,197,0,4739,4740, - 5,857,0,0,4740,4741,3,722,361,0,4741,4762,1,0,0,0,4742,4743,3,396, - 198,0,4743,4744,5,857,0,0,4744,4745,7,26,0,0,4745,4762,1,0,0,0,4746, - 4762,3,398,199,0,4747,4748,5,424,0,0,4748,4749,5,857,0,0,4749,4758, - 5,866,0,0,4750,4755,3,716,358,0,4751,4752,5,868,0,0,4752,4754,3, - 716,358,0,4753,4751,1,0,0,0,4754,4757,1,0,0,0,4755,4753,1,0,0,0, - 4755,4756,1,0,0,0,4756,4759,1,0,0,0,4757,4755,1,0,0,0,4758,4750, - 1,0,0,0,4758,4759,1,0,0,0,4759,4760,1,0,0,0,4760,4762,5,867,0,0, - 4761,4734,1,0,0,0,4761,4738,1,0,0,0,4761,4742,1,0,0,0,4761,4746, - 1,0,0,0,4761,4747,1,0,0,0,4762,391,1,0,0,0,4763,4764,7,70,0,0,4764, - 393,1,0,0,0,4765,4766,7,71,0,0,4766,395,1,0,0,0,4767,4768,7,72,0, - 0,4768,397,1,0,0,0,4769,4770,5,543,0,0,4770,4771,5,857,0,0,4771, - 4783,7,68,0,0,4772,4773,5,574,0,0,4773,4774,5,857,0,0,4774,4783, - 7,73,0,0,4775,4776,5,310,0,0,4776,4780,5,857,0,0,4777,4781,5,507, - 0,0,4778,4781,5,450,0,0,4779,4781,3,412,206,0,4780,4777,1,0,0,0, - 4780,4778,1,0,0,0,4780,4779,1,0,0,0,4781,4783,1,0,0,0,4782,4769, - 1,0,0,0,4782,4772,1,0,0,0,4782,4775,1,0,0,0,4783,399,1,0,0,0,4784, - 4785,5,65,0,0,4785,4786,5,328,0,0,4786,4787,5,882,0,0,4787,401,1, - 0,0,0,4788,4789,5,565,0,0,4789,4790,5,857,0,0,4790,4791,5,866,0, - 0,4791,4796,3,638,319,0,4792,4793,5,868,0,0,4793,4795,3,638,319, - 0,4794,4792,1,0,0,0,4795,4798,1,0,0,0,4796,4794,1,0,0,0,4796,4797, - 1,0,0,0,4797,4799,1,0,0,0,4798,4796,1,0,0,0,4799,4800,5,867,0,0, - 4800,4852,1,0,0,0,4801,4802,5,567,0,0,4802,4803,5,857,0,0,4803,4804, - 5,866,0,0,4804,4809,3,638,319,0,4805,4806,5,868,0,0,4806,4808,3, - 638,319,0,4807,4805,1,0,0,0,4808,4811,1,0,0,0,4809,4807,1,0,0,0, - 4809,4810,1,0,0,0,4810,4812,1,0,0,0,4811,4809,1,0,0,0,4812,4813, - 5,867,0,0,4813,4852,1,0,0,0,4814,4815,5,566,0,0,4815,4816,5,857, - 0,0,4816,4817,5,866,0,0,4817,4818,3,660,330,0,4818,4819,5,867,0, - 0,4819,4852,1,0,0,0,4820,4821,5,568,0,0,4821,4822,5,857,0,0,4822, - 4823,5,866,0,0,4823,4824,3,660,330,0,4824,4825,5,867,0,0,4825,4852, - 1,0,0,0,4826,4827,5,570,0,0,4827,4828,5,857,0,0,4828,4829,5,866, - 0,0,4829,4830,3,760,380,0,4830,4831,5,867,0,0,4831,4852,1,0,0,0, - 4832,4833,5,571,0,0,4833,4834,5,857,0,0,4834,4835,5,866,0,0,4835, - 4836,3,760,380,0,4836,4837,5,867,0,0,4837,4852,1,0,0,0,4838,4839, - 5,569,0,0,4839,4840,5,857,0,0,4840,4841,5,866,0,0,4841,4846,3,404, - 202,0,4842,4843,5,868,0,0,4843,4845,3,404,202,0,4844,4842,1,0,0, - 0,4845,4848,1,0,0,0,4846,4844,1,0,0,0,4846,4847,1,0,0,0,4847,4849, - 1,0,0,0,4848,4846,1,0,0,0,4849,4850,5,867,0,0,4850,4852,1,0,0,0, - 4851,4788,1,0,0,0,4851,4801,1,0,0,0,4851,4814,1,0,0,0,4851,4820, - 1,0,0,0,4851,4826,1,0,0,0,4851,4832,1,0,0,0,4851,4838,1,0,0,0,4852, - 403,1,0,0,0,4853,4854,5,866,0,0,4854,4855,3,662,331,0,4855,4856, - 5,868,0,0,4856,4857,3,662,331,0,4857,4858,5,867,0,0,4858,405,1,0, - 0,0,4859,4860,7,74,0,0,4860,407,1,0,0,0,4861,4862,7,75,0,0,4862, - 4863,5,857,0,0,4863,4887,3,412,206,0,4864,4865,5,460,0,0,4865,4866, - 5,857,0,0,4866,4867,5,882,0,0,4867,4868,5,868,0,0,4868,4869,5,461, - 0,0,4869,4870,5,857,0,0,4870,4887,3,722,361,0,4871,4872,5,611,0, - 0,4872,4873,5,857,0,0,4873,4874,5,882,0,0,4874,4875,5,868,0,0,4875, - 4876,5,612,0,0,4876,4877,5,857,0,0,4877,4887,3,722,361,0,4878,4879, - 5,557,0,0,4879,4880,5,857,0,0,4880,4881,5,882,0,0,4881,4882,5,868, - 0,0,4882,4883,5,558,0,0,4883,4884,5,857,0,0,4884,4887,3,722,361, - 0,4885,4887,5,634,0,0,4886,4861,1,0,0,0,4886,4864,1,0,0,0,4886,4871, - 1,0,0,0,4886,4878,1,0,0,0,4886,4885,1,0,0,0,4887,409,1,0,0,0,4888, - 4889,5,678,0,0,4889,4890,5,857,0,0,4890,4901,5,882,0,0,4891,4892, - 5,529,0,0,4892,4893,5,857,0,0,4893,4901,5,882,0,0,4894,4895,5,363, - 0,0,4895,4896,5,857,0,0,4896,4901,5,882,0,0,4897,4898,5,535,0,0, - 4898,4899,5,857,0,0,4899,4901,5,882,0,0,4900,4888,1,0,0,0,4900,4891, - 1,0,0,0,4900,4894,1,0,0,0,4900,4897,1,0,0,0,4901,411,1,0,0,0,4902, - 4907,3,706,353,0,4903,4904,5,868,0,0,4904,4906,3,706,353,0,4905, - 4903,1,0,0,0,4906,4909,1,0,0,0,4907,4905,1,0,0,0,4907,4908,1,0,0, - 0,4908,4912,1,0,0,0,4909,4907,1,0,0,0,4910,4912,5,882,0,0,4911,4902, - 1,0,0,0,4911,4910,1,0,0,0,4912,413,1,0,0,0,4913,4914,5,694,0,0,4914, - 4915,7,76,0,0,4915,4917,3,708,354,0,4916,4918,7,77,0,0,4917,4916, - 1,0,0,0,4917,4918,1,0,0,0,4918,415,1,0,0,0,4919,4920,5,694,0,0,4920, - 4921,5,378,0,0,4921,4927,3,708,354,0,4922,4925,5,654,0,0,4923,4924, - 5,65,0,0,4924,4926,5,489,0,0,4925,4923,1,0,0,0,4925,4926,1,0,0,0, - 4926,4928,1,0,0,0,4927,4922,1,0,0,0,4927,4928,1,0,0,0,4928,417,1, - 0,0,0,4929,4930,5,694,0,0,4930,4931,5,540,0,0,4931,4932,3,708,354, - 0,4932,419,1,0,0,0,4933,4934,5,694,0,0,4934,4935,5,341,0,0,4935, - 4938,3,708,354,0,4936,4937,5,513,0,0,4937,4939,5,533,0,0,4938,4936, - 1,0,0,0,4938,4939,1,0,0,0,4939,421,1,0,0,0,4940,4941,5,694,0,0,4941, - 4942,5,583,0,0,4942,4943,3,708,354,0,4943,423,1,0,0,0,4944,4945, - 5,694,0,0,4945,4948,5,551,0,0,4946,4947,5,33,0,0,4947,4949,3,708, - 354,0,4948,4946,1,0,0,0,4948,4949,1,0,0,0,4949,425,1,0,0,0,4950, - 4951,5,540,0,0,4951,4952,3,716,358,0,4952,4955,5,68,0,0,4953,4956, - 5,882,0,0,4954,4956,5,892,0,0,4955,4953,1,0,0,0,4955,4954,1,0,0, - 0,4956,427,1,0,0,0,4957,4958,5,717,0,0,4958,4961,3,716,358,0,4959, - 4960,5,188,0,0,4960,4962,3,762,381,0,4961,4959,1,0,0,0,4961,4962, - 1,0,0,0,4962,429,1,0,0,0,4963,4964,7,78,0,0,4964,4965,5,540,0,0, - 4965,4966,3,716,358,0,4966,431,1,0,0,0,4967,4970,3,434,217,0,4968, - 4970,3,4,2,0,4969,4967,1,0,0,0,4969,4968,1,0,0,0,4970,433,1,0,0, - 0,4971,4972,3,716,358,0,4972,4973,5,878,0,0,4973,4975,1,0,0,0,4974, - 4971,1,0,0,0,4974,4975,1,0,0,0,4975,4976,1,0,0,0,4976,4982,5,317, - 0,0,4977,4978,3,454,227,0,4978,4979,5,869,0,0,4979,4981,1,0,0,0, - 4980,4977,1,0,0,0,4981,4984,1,0,0,0,4982,4980,1,0,0,0,4982,4983, - 1,0,0,0,4983,4990,1,0,0,0,4984,4982,1,0,0,0,4985,4986,3,456,228, - 0,4986,4987,5,869,0,0,4987,4989,1,0,0,0,4988,4985,1,0,0,0,4989,4992, - 1,0,0,0,4990,4988,1,0,0,0,4990,4991,1,0,0,0,4991,4998,1,0,0,0,4992, - 4990,1,0,0,0,4993,4994,3,458,229,0,4994,4995,5,869,0,0,4995,4997, - 1,0,0,0,4996,4993,1,0,0,0,4997,5000,1,0,0,0,4998,4996,1,0,0,0,4998, - 4999,1,0,0,0,4999,5006,1,0,0,0,5000,4998,1,0,0,0,5001,5002,3,460, - 230,0,5002,5003,5,869,0,0,5003,5005,1,0,0,0,5004,5001,1,0,0,0,5005, - 5008,1,0,0,0,5006,5004,1,0,0,0,5006,5007,1,0,0,0,5007,5012,1,0,0, - 0,5008,5006,1,0,0,0,5009,5011,3,464,232,0,5010,5009,1,0,0,0,5011, - 5014,1,0,0,0,5012,5010,1,0,0,0,5012,5013,1,0,0,0,5013,5015,1,0,0, - 0,5014,5012,1,0,0,0,5015,5017,5,378,0,0,5016,5018,3,716,358,0,5017, - 5016,1,0,0,0,5017,5018,1,0,0,0,5018,435,1,0,0,0,5019,5022,5,23,0, - 0,5020,5023,3,716,358,0,5021,5023,3,814,407,0,5022,5020,1,0,0,0, - 5022,5021,1,0,0,0,5022,5023,1,0,0,0,5023,5025,1,0,0,0,5024,5026, - 3,466,233,0,5025,5024,1,0,0,0,5026,5027,1,0,0,0,5027,5025,1,0,0, - 0,5027,5028,1,0,0,0,5028,5035,1,0,0,0,5029,5031,5,53,0,0,5030,5032, - 3,464,232,0,5031,5030,1,0,0,0,5032,5033,1,0,0,0,5033,5031,1,0,0, - 0,5033,5034,1,0,0,0,5034,5036,1,0,0,0,5035,5029,1,0,0,0,5035,5036, - 1,0,0,0,5036,5037,1,0,0,0,5037,5038,5,378,0,0,5038,5039,5,23,0,0, - 5039,437,1,0,0,0,5040,5041,5,78,0,0,5041,5042,3,814,407,0,5042,5044, - 5,175,0,0,5043,5045,3,464,232,0,5044,5043,1,0,0,0,5045,5046,1,0, - 0,0,5046,5044,1,0,0,0,5046,5047,1,0,0,0,5047,5051,1,0,0,0,5048,5050, - 3,468,234,0,5049,5048,1,0,0,0,5050,5053,1,0,0,0,5051,5049,1,0,0, - 0,5051,5052,1,0,0,0,5052,5060,1,0,0,0,5053,5051,1,0,0,0,5054,5056, - 5,53,0,0,5055,5057,3,464,232,0,5056,5055,1,0,0,0,5057,5058,1,0,0, - 0,5058,5056,1,0,0,0,5058,5059,1,0,0,0,5059,5061,1,0,0,0,5060,5054, - 1,0,0,0,5060,5061,1,0,0,0,5061,5062,1,0,0,0,5062,5063,5,378,0,0, - 5063,5064,5,78,0,0,5064,439,1,0,0,0,5065,5066,5,90,0,0,5066,5067, - 3,716,358,0,5067,441,1,0,0,0,5068,5069,5,97,0,0,5069,5070,3,716, - 358,0,5070,443,1,0,0,0,5071,5072,3,716,358,0,5072,5073,5,878,0,0, - 5073,5075,1,0,0,0,5074,5071,1,0,0,0,5074,5075,1,0,0,0,5075,5076, - 1,0,0,0,5076,5078,5,106,0,0,5077,5079,3,464,232,0,5078,5077,1,0, - 0,0,5079,5080,1,0,0,0,5080,5078,1,0,0,0,5080,5081,1,0,0,0,5081,5082, - 1,0,0,0,5082,5083,5,378,0,0,5083,5085,5,106,0,0,5084,5086,3,716, - 358,0,5085,5084,1,0,0,0,5085,5086,1,0,0,0,5086,445,1,0,0,0,5087, - 5088,3,716,358,0,5088,5089,5,878,0,0,5089,5091,1,0,0,0,5090,5087, - 1,0,0,0,5090,5091,1,0,0,0,5091,5092,1,0,0,0,5092,5094,5,142,0,0, - 5093,5095,3,464,232,0,5094,5093,1,0,0,0,5095,5096,1,0,0,0,5096,5094, - 1,0,0,0,5096,5097,1,0,0,0,5097,5098,1,0,0,0,5098,5099,5,676,0,0, - 5099,5100,3,814,407,0,5100,5101,5,378,0,0,5101,5103,5,142,0,0,5102, - 5104,3,716,358,0,5103,5102,1,0,0,0,5103,5104,1,0,0,0,5104,447,1, - 0,0,0,5105,5106,5,148,0,0,5106,5107,3,814,407,0,5107,449,1,0,0,0, - 5108,5109,3,716,358,0,5109,5110,5,878,0,0,5110,5112,1,0,0,0,5111, - 5108,1,0,0,0,5111,5112,1,0,0,0,5112,5113,1,0,0,0,5113,5114,5,193, - 0,0,5114,5115,3,814,407,0,5115,5117,5,371,0,0,5116,5118,3,464,232, - 0,5117,5116,1,0,0,0,5118,5119,1,0,0,0,5119,5117,1,0,0,0,5119,5120, - 1,0,0,0,5120,5121,1,0,0,0,5121,5122,5,378,0,0,5122,5124,5,193,0, - 0,5123,5125,3,716,358,0,5124,5123,1,0,0,0,5124,5125,1,0,0,0,5125, - 451,1,0,0,0,5126,5127,5,334,0,0,5127,5142,3,716,358,0,5128,5133, - 5,64,0,0,5129,5131,5,501,0,0,5130,5129,1,0,0,0,5130,5131,1,0,0,0, - 5131,5132,1,0,0,0,5132,5134,5,68,0,0,5133,5130,1,0,0,0,5133,5134, - 1,0,0,0,5134,5135,1,0,0,0,5135,5136,3,716,358,0,5136,5137,5,88,0, - 0,5137,5138,3,714,357,0,5138,5142,1,0,0,0,5139,5140,5,516,0,0,5140, - 5142,3,716,358,0,5141,5126,1,0,0,0,5141,5128,1,0,0,0,5141,5139,1, - 0,0,0,5142,453,1,0,0,0,5143,5144,5,41,0,0,5144,5145,3,714,357,0, - 5145,5148,3,736,368,0,5146,5147,5,42,0,0,5147,5149,3,814,407,0,5148, - 5146,1,0,0,0,5148,5149,1,0,0,0,5149,455,1,0,0,0,5150,5151,5,41,0, - 0,5151,5152,3,716,358,0,5152,5153,5,30,0,0,5153,5160,5,65,0,0,5154, - 5161,3,722,361,0,5155,5157,5,164,0,0,5156,5158,5,682,0,0,5157,5156, - 1,0,0,0,5157,5158,1,0,0,0,5158,5159,1,0,0,0,5159,5161,5,882,0,0, - 5160,5154,1,0,0,0,5160,5155,1,0,0,0,5161,457,1,0,0,0,5162,5163,5, - 41,0,0,5163,5164,3,716,358,0,5164,5165,5,38,0,0,5165,5166,5,65,0, - 0,5166,5167,3,210,105,0,5167,459,1,0,0,0,5168,5169,5,41,0,0,5169, - 5170,7,79,0,0,5170,5171,5,417,0,0,5171,5172,5,65,0,0,5172,5177,3, - 462,231,0,5173,5174,5,868,0,0,5174,5176,3,462,231,0,5175,5173,1, - 0,0,0,5176,5179,1,0,0,0,5177,5175,1,0,0,0,5177,5178,1,0,0,0,5178, - 5180,1,0,0,0,5179,5177,1,0,0,0,5180,5181,3,432,216,0,5181,461,1, - 0,0,0,5182,5194,3,722,361,0,5183,5185,5,164,0,0,5184,5186,5,682, - 0,0,5185,5184,1,0,0,0,5185,5186,1,0,0,0,5186,5187,1,0,0,0,5187,5194, - 5,882,0,0,5188,5194,3,716,358,0,5189,5194,5,165,0,0,5190,5191,5, - 114,0,0,5191,5194,5,407,0,0,5192,5194,5,163,0,0,5193,5182,1,0,0, - 0,5193,5183,1,0,0,0,5193,5188,1,0,0,0,5193,5189,1,0,0,0,5193,5190, - 1,0,0,0,5193,5192,1,0,0,0,5194,463,1,0,0,0,5195,5198,3,18,9,0,5196, - 5198,3,4,2,0,5197,5195,1,0,0,0,5197,5196,1,0,0,0,5198,5199,1,0,0, - 0,5199,5200,5,869,0,0,5200,465,1,0,0,0,5201,5204,5,191,0,0,5202, - 5205,3,734,367,0,5203,5205,3,814,407,0,5204,5202,1,0,0,0,5204,5203, - 1,0,0,0,5205,5206,1,0,0,0,5206,5208,5,175,0,0,5207,5209,3,464,232, - 0,5208,5207,1,0,0,0,5209,5210,1,0,0,0,5210,5208,1,0,0,0,5210,5211, - 1,0,0,0,5211,467,1,0,0,0,5212,5213,5,54,0,0,5213,5214,3,814,407, - 0,5214,5216,5,175,0,0,5215,5217,3,464,232,0,5216,5215,1,0,0,0,5217, - 5218,1,0,0,0,5218,5216,1,0,0,0,5218,5219,1,0,0,0,5219,469,1,0,0, - 0,5220,5221,5,8,0,0,5221,5223,5,678,0,0,5222,5224,3,768,384,0,5223, - 5222,1,0,0,0,5223,5224,1,0,0,0,5224,5281,1,0,0,0,5225,5230,3,502, - 251,0,5226,5227,5,868,0,0,5227,5229,3,502,251,0,5228,5226,1,0,0, - 0,5229,5232,1,0,0,0,5230,5228,1,0,0,0,5230,5231,1,0,0,0,5231,5282, - 1,0,0,0,5232,5230,1,0,0,0,5233,5238,3,504,252,0,5234,5235,5,868, - 0,0,5235,5237,3,504,252,0,5236,5234,1,0,0,0,5237,5240,1,0,0,0,5238, - 5236,1,0,0,0,5238,5239,1,0,0,0,5239,5255,1,0,0,0,5240,5238,1,0,0, - 0,5241,5253,5,144,0,0,5242,5254,5,505,0,0,5243,5250,3,516,258,0, - 5244,5246,5,11,0,0,5245,5244,1,0,0,0,5245,5246,1,0,0,0,5246,5247, - 1,0,0,0,5247,5249,3,516,258,0,5248,5245,1,0,0,0,5249,5252,1,0,0, - 0,5250,5248,1,0,0,0,5250,5251,1,0,0,0,5251,5254,1,0,0,0,5252,5250, - 1,0,0,0,5253,5242,1,0,0,0,5253,5243,1,0,0,0,5254,5256,1,0,0,0,5255, - 5241,1,0,0,0,5255,5256,1,0,0,0,5256,5263,1,0,0,0,5257,5259,5,194, - 0,0,5258,5260,3,518,259,0,5259,5258,1,0,0,0,5260,5261,1,0,0,0,5261, - 5259,1,0,0,0,5261,5262,1,0,0,0,5262,5264,1,0,0,0,5263,5257,1,0,0, - 0,5263,5264,1,0,0,0,5264,5269,1,0,0,0,5265,5268,3,520,260,0,5266, - 5268,3,522,261,0,5267,5265,1,0,0,0,5267,5266,1,0,0,0,5268,5271,1, - 0,0,0,5269,5267,1,0,0,0,5269,5270,1,0,0,0,5270,5274,1,0,0,0,5271, - 5269,1,0,0,0,5272,5273,7,80,0,0,5273,5275,5,882,0,0,5274,5272,1, - 0,0,0,5274,5275,1,0,0,0,5275,5282,1,0,0,0,5276,5277,3,666,333,0, - 5277,5278,5,42,0,0,5278,5279,5,582,0,0,5279,5280,3,478,239,0,5280, - 5282,1,0,0,0,5281,5225,1,0,0,0,5281,5233,1,0,0,0,5281,5276,1,0,0, - 0,5282,471,1,0,0,0,5283,5284,5,34,0,0,5284,5286,5,678,0,0,5285,5287, - 3,770,385,0,5286,5285,1,0,0,0,5286,5287,1,0,0,0,5287,5288,1,0,0, - 0,5288,5290,3,694,347,0,5289,5291,3,506,253,0,5290,5289,1,0,0,0, - 5290,5291,1,0,0,0,5291,5299,1,0,0,0,5292,5293,5,868,0,0,5293,5295, - 3,694,347,0,5294,5296,3,506,253,0,5295,5294,1,0,0,0,5295,5296,1, - 0,0,0,5296,5298,1,0,0,0,5297,5292,1,0,0,0,5298,5301,1,0,0,0,5299, - 5297,1,0,0,0,5299,5300,1,0,0,0,5300,5305,1,0,0,0,5301,5299,1,0,0, - 0,5302,5303,5,42,0,0,5303,5304,5,582,0,0,5304,5306,3,478,239,0,5305, - 5302,1,0,0,0,5305,5306,1,0,0,0,5306,5321,1,0,0,0,5307,5319,5,144, - 0,0,5308,5320,5,505,0,0,5309,5316,3,516,258,0,5310,5312,5,11,0,0, - 5311,5310,1,0,0,0,5311,5312,1,0,0,0,5312,5313,1,0,0,0,5313,5315, - 3,516,258,0,5314,5311,1,0,0,0,5315,5318,1,0,0,0,5316,5314,1,0,0, - 0,5316,5317,1,0,0,0,5317,5320,1,0,0,0,5318,5316,1,0,0,0,5319,5308, - 1,0,0,0,5319,5309,1,0,0,0,5320,5322,1,0,0,0,5321,5307,1,0,0,0,5321, - 5322,1,0,0,0,5322,5329,1,0,0,0,5323,5325,5,194,0,0,5324,5326,3,518, - 259,0,5325,5324,1,0,0,0,5326,5327,1,0,0,0,5327,5325,1,0,0,0,5327, - 5328,1,0,0,0,5328,5330,1,0,0,0,5329,5323,1,0,0,0,5329,5330,1,0,0, - 0,5330,5335,1,0,0,0,5331,5334,3,520,260,0,5332,5334,3,522,261,0, - 5333,5331,1,0,0,0,5333,5332,1,0,0,0,5334,5337,1,0,0,0,5335,5333, - 1,0,0,0,5335,5336,1,0,0,0,5336,5340,1,0,0,0,5337,5335,1,0,0,0,5338, - 5339,7,80,0,0,5339,5341,5,882,0,0,5340,5338,1,0,0,0,5340,5341,1, - 0,0,0,5341,473,1,0,0,0,5342,5343,5,51,0,0,5343,5345,5,678,0,0,5344, - 5346,3,768,384,0,5345,5344,1,0,0,0,5345,5346,1,0,0,0,5346,5347,1, - 0,0,0,5347,5352,3,694,347,0,5348,5349,5,868,0,0,5349,5351,3,694, - 347,0,5350,5348,1,0,0,0,5351,5354,1,0,0,0,5352,5350,1,0,0,0,5352, - 5353,1,0,0,0,5353,475,1,0,0,0,5354,5352,1,0,0,0,5355,5356,5,73,0, - 0,5356,5361,3,530,265,0,5357,5358,5,868,0,0,5358,5360,3,530,265, - 0,5359,5357,1,0,0,0,5360,5363,1,0,0,0,5361,5359,1,0,0,0,5361,5362, - 1,0,0,0,5362,5364,1,0,0,0,5363,5361,1,0,0,0,5364,5366,5,119,0,0, - 5365,5367,3,498,249,0,5366,5365,1,0,0,0,5366,5367,1,0,0,0,5367,5368, - 1,0,0,0,5368,5369,3,534,267,0,5369,5379,5,176,0,0,5370,5375,3,510, - 255,0,5371,5372,5,868,0,0,5372,5374,3,510,255,0,5373,5371,1,0,0, - 0,5374,5377,1,0,0,0,5375,5373,1,0,0,0,5375,5376,1,0,0,0,5376,5380, - 1,0,0,0,5377,5375,1,0,0,0,5378,5380,3,664,332,0,5379,5370,1,0,0, - 0,5379,5378,1,0,0,0,5380,5395,1,0,0,0,5381,5393,5,144,0,0,5382,5394, - 5,505,0,0,5383,5390,3,516,258,0,5384,5386,5,11,0,0,5385,5384,1,0, - 0,0,5385,5386,1,0,0,0,5386,5387,1,0,0,0,5387,5389,3,516,258,0,5388, - 5385,1,0,0,0,5389,5392,1,0,0,0,5390,5388,1,0,0,0,5390,5391,1,0,0, - 0,5391,5394,1,0,0,0,5392,5390,1,0,0,0,5393,5382,1,0,0,0,5393,5383, - 1,0,0,0,5394,5396,1,0,0,0,5395,5381,1,0,0,0,5395,5396,1,0,0,0,5396, - 5406,1,0,0,0,5397,5403,5,194,0,0,5398,5399,5,73,0,0,5399,5402,5, - 121,0,0,5400,5402,3,518,259,0,5401,5398,1,0,0,0,5401,5400,1,0,0, - 0,5402,5405,1,0,0,0,5403,5401,1,0,0,0,5403,5404,1,0,0,0,5404,5407, - 1,0,0,0,5405,5403,1,0,0,0,5406,5397,1,0,0,0,5406,5407,1,0,0,0,5407, - 5415,1,0,0,0,5408,5409,5,13,0,0,5409,5413,3,694,347,0,5410,5411, - 5,194,0,0,5411,5412,5,582,0,0,5412,5414,3,478,239,0,5413,5410,1, - 0,0,0,5413,5414,1,0,0,0,5414,5416,1,0,0,0,5415,5408,1,0,0,0,5415, - 5416,1,0,0,0,5416,5445,1,0,0,0,5417,5420,5,73,0,0,5418,5419,5,547, - 0,0,5419,5421,5,119,0,0,5420,5418,1,0,0,0,5420,5421,1,0,0,0,5421, - 5422,1,0,0,0,5422,5427,3,666,333,0,5423,5424,5,868,0,0,5424,5426, - 3,666,333,0,5425,5423,1,0,0,0,5426,5429,1,0,0,0,5427,5425,1,0,0, - 0,5427,5428,1,0,0,0,5428,5430,1,0,0,0,5429,5427,1,0,0,0,5430,5431, - 5,176,0,0,5431,5436,3,666,333,0,5432,5433,5,868,0,0,5433,5435,3, - 666,333,0,5434,5432,1,0,0,0,5435,5438,1,0,0,0,5436,5434,1,0,0,0, - 5436,5437,1,0,0,0,5437,5442,1,0,0,0,5438,5436,1,0,0,0,5439,5440, - 5,194,0,0,5440,5441,5,704,0,0,5441,5443,5,121,0,0,5442,5439,1,0, - 0,0,5442,5443,1,0,0,0,5443,5445,1,0,0,0,5444,5355,1,0,0,0,5444,5417, - 1,0,0,0,5445,477,1,0,0,0,5446,5455,5,42,0,0,5447,5455,5,505,0,0, - 5448,5451,5,7,0,0,5449,5450,5,59,0,0,5450,5452,3,664,332,0,5451, - 5449,1,0,0,0,5451,5452,1,0,0,0,5452,5455,1,0,0,0,5453,5455,3,664, - 332,0,5454,5446,1,0,0,0,5454,5447,1,0,0,0,5454,5448,1,0,0,0,5454, - 5453,1,0,0,0,5455,479,1,0,0,0,5456,5457,5,73,0,0,5457,5458,5,547, - 0,0,5458,5459,5,119,0,0,5459,5460,3,694,347,0,5460,5461,5,176,0, - 0,5461,5466,3,694,347,0,5462,5463,5,868,0,0,5463,5465,3,694,347, - 0,5464,5462,1,0,0,0,5465,5468,1,0,0,0,5466,5464,1,0,0,0,5466,5467, - 1,0,0,0,5467,5472,1,0,0,0,5468,5466,1,0,0,0,5469,5470,5,194,0,0, - 5470,5471,5,73,0,0,5471,5473,5,121,0,0,5472,5469,1,0,0,0,5472,5473, - 1,0,0,0,5473,481,1,0,0,0,5474,5475,5,8,0,0,5475,5476,5,739,0,0,5476, - 5477,5,74,0,0,5477,5483,3,656,328,0,5478,5480,5,190,0,0,5479,5481, - 5,857,0,0,5480,5479,1,0,0,0,5480,5481,1,0,0,0,5481,5482,1,0,0,0, - 5482,5484,3,490,245,0,5483,5478,1,0,0,0,5483,5484,1,0,0,0,5484,5490, - 1,0,0,0,5485,5487,5,837,0,0,5486,5488,5,857,0,0,5487,5486,1,0,0, - 0,5487,5488,1,0,0,0,5488,5489,1,0,0,0,5489,5491,3,722,361,0,5490, - 5485,1,0,0,0,5490,5491,1,0,0,0,5491,5496,1,0,0,0,5492,5494,7,39, - 0,0,5493,5495,5,66,0,0,5494,5493,1,0,0,0,5494,5495,1,0,0,0,5495, - 5497,1,0,0,0,5496,5492,1,0,0,0,5496,5497,1,0,0,0,5497,483,1,0,0, - 0,5498,5499,5,34,0,0,5499,5500,5,739,0,0,5500,5501,5,74,0,0,5501, - 5502,3,654,327,0,5502,5503,5,839,0,0,5503,5504,5,857,0,0,5504,5510, - 7,81,0,0,5505,5507,5,190,0,0,5506,5508,5,857,0,0,5507,5506,1,0,0, - 0,5507,5508,1,0,0,0,5508,5509,1,0,0,0,5509,5511,3,490,245,0,5510, - 5505,1,0,0,0,5510,5511,1,0,0,0,5511,5517,1,0,0,0,5512,5514,5,837, - 0,0,5513,5515,5,857,0,0,5514,5513,1,0,0,0,5514,5515,1,0,0,0,5515, - 5516,1,0,0,0,5516,5518,3,722,361,0,5517,5512,1,0,0,0,5517,5518,1, - 0,0,0,5518,5520,1,0,0,0,5519,5521,7,39,0,0,5520,5519,1,0,0,0,5520, - 5521,1,0,0,0,5521,485,1,0,0,0,5522,5523,5,51,0,0,5523,5524,5,739, - 0,0,5524,5525,5,74,0,0,5525,5527,3,656,328,0,5526,5528,5,66,0,0, - 5527,5526,1,0,0,0,5527,5528,1,0,0,0,5528,487,1,0,0,0,5529,5530,5, - 155,0,0,5530,5531,5,739,0,0,5531,5532,5,74,0,0,5532,5542,3,656,328, - 0,5533,5534,5,65,0,0,5534,5539,3,722,361,0,5535,5536,5,868,0,0,5536, - 5538,3,722,361,0,5537,5535,1,0,0,0,5538,5541,1,0,0,0,5539,5537,1, - 0,0,0,5539,5540,1,0,0,0,5540,5543,1,0,0,0,5541,5539,1,0,0,0,5542, - 5533,1,0,0,0,5542,5543,1,0,0,0,5543,489,1,0,0,0,5544,5550,3,722, - 361,0,5545,5546,3,722,361,0,5546,5547,5,854,0,0,5547,5548,3,722, - 361,0,5548,5550,1,0,0,0,5549,5544,1,0,0,0,5549,5545,1,0,0,0,5550, - 5555,1,0,0,0,5551,5552,5,868,0,0,5552,5554,3,490,245,0,5553,5551, - 1,0,0,0,5554,5557,1,0,0,0,5555,5553,1,0,0,0,5555,5556,1,0,0,0,5556, - 491,1,0,0,0,5557,5555,1,0,0,0,5558,5559,5,141,0,0,5559,5560,5,678, - 0,0,5560,5565,3,536,268,0,5561,5562,5,868,0,0,5562,5564,3,536,268, - 0,5563,5561,1,0,0,0,5564,5567,1,0,0,0,5565,5563,1,0,0,0,5565,5566, - 1,0,0,0,5566,493,1,0,0,0,5567,5565,1,0,0,0,5568,5570,5,149,0,0,5569, - 5571,3,768,384,0,5570,5569,1,0,0,0,5570,5571,1,0,0,0,5571,5572,1, - 0,0,0,5572,5577,3,530,265,0,5573,5574,5,868,0,0,5574,5576,3,530, - 265,0,5575,5573,1,0,0,0,5576,5579,1,0,0,0,5577,5575,1,0,0,0,5577, - 5578,1,0,0,0,5578,5580,1,0,0,0,5579,5577,1,0,0,0,5580,5582,5,119, - 0,0,5581,5583,3,498,249,0,5582,5581,1,0,0,0,5582,5583,1,0,0,0,5583, - 5584,1,0,0,0,5584,5585,3,534,267,0,5585,5586,5,68,0,0,5586,5588, - 3,664,332,0,5587,5589,3,496,248,0,5588,5587,1,0,0,0,5588,5589,1, - 0,0,0,5589,5621,1,0,0,0,5590,5592,5,149,0,0,5591,5593,3,768,384, - 0,5592,5591,1,0,0,0,5592,5593,1,0,0,0,5593,5594,1,0,0,0,5594,5596, - 5,7,0,0,5595,5597,5,734,0,0,5596,5595,1,0,0,0,5596,5597,1,0,0,0, - 5597,5598,1,0,0,0,5598,5599,5,868,0,0,5599,5600,5,73,0,0,5600,5601, - 5,121,0,0,5601,5602,5,68,0,0,5602,5604,3,664,332,0,5603,5605,3,496, - 248,0,5604,5603,1,0,0,0,5604,5605,1,0,0,0,5605,5621,1,0,0,0,5606, - 5608,5,149,0,0,5607,5609,3,768,384,0,5608,5607,1,0,0,0,5608,5609, - 1,0,0,0,5609,5612,1,0,0,0,5610,5611,5,547,0,0,5611,5613,5,119,0, - 0,5612,5610,1,0,0,0,5612,5613,1,0,0,0,5613,5614,1,0,0,0,5614,5615, - 3,664,332,0,5615,5616,5,68,0,0,5616,5618,3,664,332,0,5617,5619,3, - 496,248,0,5618,5617,1,0,0,0,5618,5619,1,0,0,0,5619,5621,1,0,0,0, - 5620,5568,1,0,0,0,5620,5590,1,0,0,0,5620,5606,1,0,0,0,5621,495,1, - 0,0,0,5622,5623,5,79,0,0,5623,5624,5,674,0,0,5624,5625,5,678,0,0, - 5625,497,1,0,0,0,5626,5627,7,82,0,0,5627,499,1,0,0,0,5628,5629,5, - 155,0,0,5629,5632,5,529,0,0,5630,5631,5,65,0,0,5631,5633,3,694,347, - 0,5632,5630,1,0,0,0,5632,5633,1,0,0,0,5633,5634,1,0,0,0,5634,5637, - 5,857,0,0,5635,5638,3,808,404,0,5636,5638,5,882,0,0,5637,5635,1, - 0,0,0,5637,5636,1,0,0,0,5638,5661,1,0,0,0,5639,5640,5,155,0,0,5640, - 5643,5,529,0,0,5641,5642,5,65,0,0,5642,5644,3,694,347,0,5643,5641, - 1,0,0,0,5643,5644,1,0,0,0,5644,5649,1,0,0,0,5645,5646,5,176,0,0, - 5646,5650,5,829,0,0,5647,5648,5,857,0,0,5648,5650,5,882,0,0,5649, - 5645,1,0,0,0,5649,5647,1,0,0,0,5650,5653,1,0,0,0,5651,5652,5,143, - 0,0,5652,5654,5,882,0,0,5653,5651,1,0,0,0,5653,5654,1,0,0,0,5654, - 5658,1,0,0,0,5655,5656,5,147,0,0,5656,5657,5,36,0,0,5657,5659,5, - 529,0,0,5658,5655,1,0,0,0,5658,5659,1,0,0,0,5659,5661,1,0,0,0,5660, - 5628,1,0,0,0,5660,5639,1,0,0,0,5661,501,1,0,0,0,5662,5663,3,694, - 347,0,5663,5664,3,520,260,0,5664,503,1,0,0,0,5665,5691,3,694,347, - 0,5666,5667,5,423,0,0,5667,5668,5,20,0,0,5668,5669,5,882,0,0,5669, - 5692,3,512,256,0,5670,5671,5,423,0,0,5671,5672,5,20,0,0,5672,5673, - 5,829,0,0,5673,5674,5,529,0,0,5674,5692,3,512,256,0,5675,5676,5, - 423,0,0,5676,5677,5,194,0,0,5677,5692,3,514,257,0,5678,5679,5,369, - 0,0,5679,5680,5,511,0,0,5680,5692,5,529,0,0,5681,5682,7,83,0,0,5682, - 5684,3,528,264,0,5683,5685,3,524,262,0,5684,5683,1,0,0,0,5684,5685, - 1,0,0,0,5685,5687,1,0,0,0,5686,5681,1,0,0,0,5687,5688,1,0,0,0,5688, - 5686,1,0,0,0,5688,5689,1,0,0,0,5689,5692,1,0,0,0,5690,5692,3,526, - 263,0,5691,5666,1,0,0,0,5691,5670,1,0,0,0,5691,5675,1,0,0,0,5691, - 5678,1,0,0,0,5691,5686,1,0,0,0,5691,5690,1,0,0,0,5691,5692,1,0,0, - 0,5692,505,1,0,0,0,5693,5694,5,423,0,0,5694,5700,5,20,0,0,5695,5701, - 5,882,0,0,5696,5697,5,829,0,0,5697,5701,5,529,0,0,5698,5699,5,529, - 0,0,5699,5701,5,882,0,0,5700,5695,1,0,0,0,5700,5696,1,0,0,0,5700, - 5698,1,0,0,0,5701,5704,1,0,0,0,5702,5703,5,11,0,0,5703,5705,3,506, - 253,0,5704,5702,1,0,0,0,5704,5705,1,0,0,0,5705,5730,1,0,0,0,5706, - 5707,5,423,0,0,5707,5708,5,194,0,0,5708,5717,3,716,358,0,5709,5713, - 5,20,0,0,5710,5714,5,882,0,0,5711,5712,5,829,0,0,5712,5714,5,529, - 0,0,5713,5710,1,0,0,0,5713,5711,1,0,0,0,5714,5718,1,0,0,0,5715,5716, - 5,13,0,0,5716,5718,5,882,0,0,5717,5709,1,0,0,0,5717,5715,1,0,0,0, - 5717,5718,1,0,0,0,5718,5721,1,0,0,0,5719,5720,5,11,0,0,5720,5722, - 3,506,253,0,5721,5719,1,0,0,0,5721,5722,1,0,0,0,5722,5730,1,0,0, - 0,5723,5724,5,423,0,0,5724,5725,5,194,0,0,5725,5727,3,716,358,0, - 5726,5728,3,508,254,0,5727,5726,1,0,0,0,5727,5728,1,0,0,0,5728,5730, - 1,0,0,0,5729,5693,1,0,0,0,5729,5706,1,0,0,0,5729,5723,1,0,0,0,5730, - 507,1,0,0,0,5731,5732,5,427,0,0,5732,5733,5,708,0,0,5733,5734,5, - 423,0,0,5734,5738,5,20,0,0,5735,5736,5,829,0,0,5736,5739,5,529,0, - 0,5737,5739,5,882,0,0,5738,5735,1,0,0,0,5738,5737,1,0,0,0,5739,5749, - 1,0,0,0,5740,5741,5,427,0,0,5741,5742,5,708,0,0,5742,5743,5,423, - 0,0,5743,5744,5,194,0,0,5744,5745,3,716,358,0,5745,5746,5,13,0,0, - 5746,5747,5,882,0,0,5747,5749,1,0,0,0,5748,5731,1,0,0,0,5748,5740, - 1,0,0,0,5749,509,1,0,0,0,5750,5751,3,694,347,0,5751,5752,5,423,0, - 0,5752,5753,5,20,0,0,5753,5754,5,529,0,0,5754,5755,5,882,0,0,5755, - 5776,1,0,0,0,5756,5757,3,694,347,0,5757,5758,5,423,0,0,5758,5759, - 5,20,0,0,5759,5760,5,829,0,0,5760,5761,5,529,0,0,5761,5762,3,512, - 256,0,5762,5776,1,0,0,0,5763,5764,3,694,347,0,5764,5765,5,423,0, - 0,5765,5766,5,20,0,0,5766,5767,5,882,0,0,5767,5768,3,512,256,0,5768, - 5776,1,0,0,0,5769,5770,3,694,347,0,5770,5771,5,423,0,0,5771,5772, - 5,194,0,0,5772,5773,3,514,257,0,5773,5776,1,0,0,0,5774,5776,3,694, - 347,0,5775,5750,1,0,0,0,5775,5756,1,0,0,0,5775,5763,1,0,0,0,5775, - 5769,1,0,0,0,5775,5774,1,0,0,0,5776,511,1,0,0,0,5777,5778,5,143, - 0,0,5778,5780,5,882,0,0,5779,5777,1,0,0,0,5779,5780,1,0,0,0,5780, - 5784,1,0,0,0,5781,5782,5,147,0,0,5782,5783,5,36,0,0,5783,5785,5, - 529,0,0,5784,5781,1,0,0,0,5784,5785,1,0,0,0,5785,513,1,0,0,0,5786, - 5794,3,716,358,0,5787,5791,7,84,0,0,5788,5792,5,882,0,0,5789,5790, - 5,829,0,0,5790,5792,5,529,0,0,5791,5788,1,0,0,0,5791,5789,1,0,0, - 0,5792,5793,1,0,0,0,5793,5795,3,512,256,0,5794,5787,1,0,0,0,5794, - 5795,1,0,0,0,5795,5801,1,0,0,0,5796,5797,3,716,358,0,5797,5798,5, - 188,0,0,5798,5799,3,808,404,0,5799,5801,1,0,0,0,5800,5786,1,0,0, - 0,5800,5796,1,0,0,0,5801,515,1,0,0,0,5802,5811,5,169,0,0,5803,5811, - 5,693,0,0,5804,5805,5,331,0,0,5805,5811,5,882,0,0,5806,5807,5,441, - 0,0,5807,5811,5,882,0,0,5808,5809,5,651,0,0,5809,5811,5,882,0,0, - 5810,5802,1,0,0,0,5810,5803,1,0,0,0,5810,5804,1,0,0,0,5810,5806, - 1,0,0,0,5810,5808,1,0,0,0,5811,517,1,0,0,0,5812,5813,5,479,0,0,5813, - 5821,3,722,361,0,5814,5815,5,482,0,0,5815,5821,3,722,361,0,5816, - 5817,5,478,0,0,5817,5821,3,722,361,0,5818,5819,5,483,0,0,5819,5821, - 3,722,361,0,5820,5812,1,0,0,0,5820,5814,1,0,0,0,5820,5816,1,0,0, - 0,5820,5818,1,0,0,0,5821,519,1,0,0,0,5822,5823,5,529,0,0,5823,5830, - 5,390,0,0,5824,5831,5,42,0,0,5825,5831,5,500,0,0,5826,5827,5,87, - 0,0,5827,5828,3,722,361,0,5828,5829,5,698,0,0,5829,5831,1,0,0,0, - 5830,5824,1,0,0,0,5830,5825,1,0,0,0,5830,5826,1,0,0,0,5830,5831, - 1,0,0,0,5831,5861,1,0,0,0,5832,5833,5,529,0,0,5833,5836,5,420,0, - 0,5834,5837,5,42,0,0,5835,5837,3,722,361,0,5836,5834,1,0,0,0,5836, - 5835,1,0,0,0,5837,5861,1,0,0,0,5838,5839,5,529,0,0,5839,5840,5,581, - 0,0,5840,5845,5,87,0,0,5841,5846,5,42,0,0,5842,5843,3,722,361,0, - 5843,5844,5,698,0,0,5844,5846,1,0,0,0,5845,5841,1,0,0,0,5845,5842, - 1,0,0,0,5846,5861,1,0,0,0,5847,5848,5,529,0,0,5848,5849,5,144,0, - 0,5849,5851,5,36,0,0,5850,5852,7,85,0,0,5851,5850,1,0,0,0,5851,5852, - 1,0,0,0,5852,5861,1,0,0,0,5853,5854,5,395,0,0,5854,5861,3,722,361, - 0,5855,5858,5,530,0,0,5856,5859,3,722,361,0,5857,5859,5,669,0,0, - 5858,5856,1,0,0,0,5858,5857,1,0,0,0,5859,5861,1,0,0,0,5860,5822, - 1,0,0,0,5860,5832,1,0,0,0,5860,5838,1,0,0,0,5860,5847,1,0,0,0,5860, - 5853,1,0,0,0,5860,5855,1,0,0,0,5861,521,1,0,0,0,5862,5863,5,304, - 0,0,5863,5864,7,86,0,0,5864,523,1,0,0,0,5865,5868,5,423,0,0,5866, - 5867,5,194,0,0,5867,5869,3,716,358,0,5868,5866,1,0,0,0,5868,5869, - 1,0,0,0,5869,5878,1,0,0,0,5870,5874,5,20,0,0,5871,5875,5,882,0,0, - 5872,5873,5,829,0,0,5873,5875,5,529,0,0,5874,5871,1,0,0,0,5874,5872, - 1,0,0,0,5875,5879,1,0,0,0,5876,5877,5,13,0,0,5877,5879,5,882,0,0, - 5878,5870,1,0,0,0,5878,5876,1,0,0,0,5879,525,1,0,0,0,5880,5881,3, - 528,264,0,5881,5882,5,429,0,0,5882,5883,5,555,0,0,5883,5896,1,0, - 0,0,5884,5885,3,528,264,0,5885,5886,5,401,0,0,5886,5887,5,555,0, - 0,5887,5888,5,155,0,0,5888,5889,5,330,0,0,5889,5890,5,13,0,0,5890, - 5891,5,882,0,0,5891,5896,1,0,0,0,5892,5893,3,528,264,0,5893,5894, - 5,675,0,0,5894,5896,1,0,0,0,5895,5880,1,0,0,0,5895,5884,1,0,0,0, - 5895,5892,1,0,0,0,5896,527,1,0,0,0,5897,5898,7,87,0,0,5898,5899, - 5,394,0,0,5899,529,1,0,0,0,5900,5905,3,532,266,0,5901,5902,5,866, - 0,0,5902,5903,3,670,335,0,5903,5904,5,867,0,0,5904,5906,1,0,0,0, - 5905,5901,1,0,0,0,5905,5906,1,0,0,0,5906,531,1,0,0,0,5907,5909,5, - 7,0,0,5908,5910,5,734,0,0,5909,5908,1,0,0,0,5909,5910,1,0,0,0,5910, - 6001,1,0,0,0,5911,5913,5,8,0,0,5912,5914,5,743,0,0,5913,5912,1,0, - 0,0,5913,5914,1,0,0,0,5914,6001,1,0,0,0,5915,5923,5,34,0,0,5916, - 5917,5,660,0,0,5917,5924,5,752,0,0,5918,5924,5,743,0,0,5919,5924, - 5,684,0,0,5920,5924,5,678,0,0,5921,5924,5,658,0,0,5922,5924,5,582, - 0,0,5923,5916,1,0,0,0,5923,5918,1,0,0,0,5923,5919,1,0,0,0,5923,5920, - 1,0,0,0,5923,5921,1,0,0,0,5923,5922,1,0,0,0,5923,5924,1,0,0,0,5924, - 6001,1,0,0,0,5925,6001,5,44,0,0,5926,5928,5,51,0,0,5927,5929,5,582, - 0,0,5928,5927,1,0,0,0,5928,5929,1,0,0,0,5929,6001,1,0,0,0,5930,6001, - 5,385,0,0,5931,6001,5,717,0,0,5932,6001,5,718,0,0,5933,5934,5,73, - 0,0,5934,6001,5,121,0,0,5935,6001,5,82,0,0,5936,6001,5,86,0,0,5937, - 5938,5,104,0,0,5938,6001,5,752,0,0,5939,6001,5,735,0,0,5940,6001, - 5,547,0,0,5941,6001,5,138,0,0,5942,6001,5,736,0,0,5943,5944,5,572, - 0,0,5944,6001,7,88,0,0,5945,6001,5,154,0,0,5946,5947,5,157,0,0,5947, - 6001,7,89,0,0,5948,6001,5,749,0,0,5949,6001,5,750,0,0,5950,6001, - 5,178,0,0,5951,6001,5,185,0,0,5952,6001,5,186,0,0,5953,6001,5,705, - 0,0,5954,6001,5,706,0,0,5955,6001,5,707,0,0,5956,6001,5,709,0,0, - 5957,6001,5,710,0,0,5958,6001,5,711,0,0,5959,6001,5,712,0,0,5960, - 6001,5,714,0,0,5961,6001,5,715,0,0,5962,6001,5,716,0,0,5963,6001, - 5,719,0,0,5964,6001,5,720,0,0,5965,6001,5,721,0,0,5966,6001,5,722, - 0,0,5967,6001,5,723,0,0,5968,6001,5,724,0,0,5969,6001,5,725,0,0, - 5970,6001,5,726,0,0,5971,6001,5,727,0,0,5972,6001,5,728,0,0,5973, - 6001,5,731,0,0,5974,6001,5,732,0,0,5975,6001,5,733,0,0,5976,6001, - 5,737,0,0,5977,6001,5,738,0,0,5978,6001,5,740,0,0,5979,6001,5,741, - 0,0,5980,6001,5,742,0,0,5981,6001,5,745,0,0,5982,6001,5,746,0,0, - 5983,6001,5,747,0,0,5984,6001,5,160,0,0,5985,6001,5,748,0,0,5986, - 6001,5,836,0,0,5987,6001,5,751,0,0,5988,6001,5,753,0,0,5989,6001, - 5,838,0,0,5990,6001,5,754,0,0,5991,6001,5,755,0,0,5992,5993,5,103, - 0,0,5993,5994,5,68,0,0,5994,6001,5,744,0,0,5995,5996,5,154,0,0,5996, - 5997,5,88,0,0,5997,6001,5,744,0,0,5998,5999,5,729,0,0,5999,6001, - 5,730,0,0,6000,5907,1,0,0,0,6000,5911,1,0,0,0,6000,5915,1,0,0,0, - 6000,5925,1,0,0,0,6000,5926,1,0,0,0,6000,5930,1,0,0,0,6000,5931, - 1,0,0,0,6000,5932,1,0,0,0,6000,5933,1,0,0,0,6000,5935,1,0,0,0,6000, - 5936,1,0,0,0,6000,5937,1,0,0,0,6000,5939,1,0,0,0,6000,5940,1,0,0, - 0,6000,5941,1,0,0,0,6000,5942,1,0,0,0,6000,5943,1,0,0,0,6000,5945, - 1,0,0,0,6000,5946,1,0,0,0,6000,5948,1,0,0,0,6000,5949,1,0,0,0,6000, - 5950,1,0,0,0,6000,5951,1,0,0,0,6000,5952,1,0,0,0,6000,5953,1,0,0, - 0,6000,5954,1,0,0,0,6000,5955,1,0,0,0,6000,5956,1,0,0,0,6000,5957, - 1,0,0,0,6000,5958,1,0,0,0,6000,5959,1,0,0,0,6000,5960,1,0,0,0,6000, - 5961,1,0,0,0,6000,5962,1,0,0,0,6000,5963,1,0,0,0,6000,5964,1,0,0, - 0,6000,5965,1,0,0,0,6000,5966,1,0,0,0,6000,5967,1,0,0,0,6000,5968, - 1,0,0,0,6000,5969,1,0,0,0,6000,5970,1,0,0,0,6000,5971,1,0,0,0,6000, - 5972,1,0,0,0,6000,5973,1,0,0,0,6000,5974,1,0,0,0,6000,5975,1,0,0, - 0,6000,5976,1,0,0,0,6000,5977,1,0,0,0,6000,5978,1,0,0,0,6000,5979, - 1,0,0,0,6000,5980,1,0,0,0,6000,5981,1,0,0,0,6000,5982,1,0,0,0,6000, - 5983,1,0,0,0,6000,5984,1,0,0,0,6000,5985,1,0,0,0,6000,5986,1,0,0, - 0,6000,5987,1,0,0,0,6000,5988,1,0,0,0,6000,5989,1,0,0,0,6000,5990, - 1,0,0,0,6000,5991,1,0,0,0,6000,5992,1,0,0,0,6000,5995,1,0,0,0,6000, - 5998,1,0,0,0,6001,533,1,0,0,0,6002,6019,5,850,0,0,6003,6004,5,850, - 0,0,6004,6005,5,865,0,0,6005,6019,5,850,0,0,6006,6007,3,716,358, - 0,6007,6008,5,865,0,0,6008,6009,5,850,0,0,6009,6019,1,0,0,0,6010, - 6011,3,716,358,0,6011,6012,5,865,0,0,6012,6013,3,716,358,0,6013, - 6019,1,0,0,0,6014,6015,3,716,358,0,6015,6016,3,720,360,0,6016,6019, - 1,0,0,0,6017,6019,3,716,358,0,6018,6002,1,0,0,0,6018,6003,1,0,0, - 0,6018,6006,1,0,0,0,6018,6010,1,0,0,0,6018,6014,1,0,0,0,6018,6017, - 1,0,0,0,6019,535,1,0,0,0,6020,6021,3,694,347,0,6021,6022,5,176,0, - 0,6022,6023,3,694,347,0,6023,537,1,0,0,0,6024,6026,5,10,0,0,6025, - 6027,3,548,274,0,6026,6025,1,0,0,0,6026,6027,1,0,0,0,6027,6028,1, - 0,0,0,6028,6029,5,173,0,0,6029,6073,3,660,330,0,6030,6032,5,10,0, - 0,6031,6033,3,548,274,0,6032,6031,1,0,0,0,6032,6033,1,0,0,0,6033, - 6034,1,0,0,0,6034,6035,5,173,0,0,6035,6036,3,662,331,0,6036,6037, - 5,185,0,0,6037,6038,5,77,0,0,6038,6039,5,119,0,0,6039,6044,3,670, - 335,0,6040,6041,5,194,0,0,6041,6042,3,722,361,0,6042,6043,5,19,0, - 0,6043,6045,1,0,0,0,6044,6040,1,0,0,0,6044,6045,1,0,0,0,6045,6073, - 1,0,0,0,6046,6048,5,10,0,0,6047,6049,3,548,274,0,6048,6047,1,0,0, - 0,6048,6049,1,0,0,0,6049,6050,1,0,0,0,6050,6051,5,173,0,0,6051,6052, - 3,662,331,0,6052,6053,5,185,0,0,6053,6054,5,77,0,0,6054,6055,5,119, - 0,0,6055,6059,3,672,336,0,6056,6057,5,188,0,0,6057,6058,5,360,0, - 0,6058,6060,5,882,0,0,6059,6056,1,0,0,0,6059,6060,1,0,0,0,6060,6073, - 1,0,0,0,6061,6063,5,10,0,0,6062,6064,3,548,274,0,6063,6062,1,0,0, - 0,6063,6064,1,0,0,0,6064,6065,1,0,0,0,6065,6066,5,173,0,0,6066,6067, - 3,662,331,0,6067,6068,5,51,0,0,6068,6069,5,77,0,0,6069,6070,5,119, - 0,0,6070,6071,3,670,335,0,6071,6073,1,0,0,0,6072,6024,1,0,0,0,6072, - 6030,1,0,0,0,6072,6046,1,0,0,0,6072,6061,1,0,0,0,6073,539,1,0,0, - 0,6074,6075,5,27,0,0,6075,6076,5,173,0,0,6076,6080,3,660,330,0,6077, - 6079,3,550,275,0,6078,6077,1,0,0,0,6079,6082,1,0,0,0,6080,6078,1, - 0,0,0,6080,6081,1,0,0,0,6081,541,1,0,0,0,6082,6080,1,0,0,0,6083, - 6084,5,329,0,0,6084,6085,5,173,0,0,6085,6087,3,660,330,0,6086,6088, - 7,90,0,0,6087,6086,1,0,0,0,6087,6088,1,0,0,0,6088,543,1,0,0,0,6089, - 6091,5,120,0,0,6090,6092,3,548,274,0,6091,6090,1,0,0,0,6091,6092, - 1,0,0,0,6092,6093,1,0,0,0,6093,6094,7,61,0,0,6094,6095,3,660,330, - 0,6095,545,1,0,0,0,6096,6098,5,562,0,0,6097,6099,3,548,274,0,6098, - 6097,1,0,0,0,6098,6099,1,0,0,0,6099,6100,1,0,0,0,6100,6101,5,173, - 0,0,6101,6103,3,660,330,0,6102,6104,5,549,0,0,6103,6102,1,0,0,0, - 6103,6104,1,0,0,0,6104,6106,1,0,0,0,6105,6107,5,392,0,0,6106,6105, - 1,0,0,0,6106,6107,1,0,0,0,6107,6109,1,0,0,0,6108,6110,5,679,0,0, - 6109,6108,1,0,0,0,6109,6110,1,0,0,0,6110,547,1,0,0,0,6111,6112,7, - 91,0,0,6112,549,1,0,0,0,6113,6114,5,65,0,0,6114,6121,5,677,0,0,6115, - 6121,5,549,0,0,6116,6121,5,396,0,0,6117,6121,5,484,0,0,6118,6121, - 5,392,0,0,6119,6121,5,327,0,0,6120,6113,1,0,0,0,6120,6115,1,0,0, - 0,6120,6116,1,0,0,0,6120,6117,1,0,0,0,6120,6118,1,0,0,0,6120,6119, - 1,0,0,0,6121,551,1,0,0,0,6122,6123,5,432,0,0,6123,6124,5,344,0,0, - 6124,6129,3,716,358,0,6125,6126,5,868,0,0,6126,6128,3,716,358,0, - 6127,6125,1,0,0,0,6128,6131,1,0,0,0,6129,6127,1,0,0,0,6129,6130, - 1,0,0,0,6130,6141,1,0,0,0,6131,6129,1,0,0,0,6132,6133,5,155,0,0, - 6133,6138,3,554,277,0,6134,6135,5,868,0,0,6135,6137,3,554,277,0, - 6136,6134,1,0,0,0,6137,6140,1,0,0,0,6138,6136,1,0,0,0,6138,6139, - 1,0,0,0,6139,6142,1,0,0,0,6140,6138,1,0,0,0,6141,6132,1,0,0,0,6141, - 6142,1,0,0,0,6142,553,1,0,0,0,6143,6144,7,92,0,0,6144,6145,3,712, - 356,0,6145,6146,5,857,0,0,6146,6147,3,814,407,0,6147,555,1,0,0,0, - 6148,6149,5,673,0,0,6149,6150,5,344,0,0,6150,6155,3,716,358,0,6151, - 6152,5,868,0,0,6152,6154,3,716,358,0,6153,6151,1,0,0,0,6154,6157, - 1,0,0,0,6155,6153,1,0,0,0,6155,6156,1,0,0,0,6156,557,1,0,0,0,6157, - 6155,1,0,0,0,6158,6159,5,432,0,0,6159,6160,5,534,0,0,6160,6161,3, - 716,358,0,6161,6162,5,603,0,0,6162,6163,5,882,0,0,6163,559,1,0,0, - 0,6164,6165,5,673,0,0,6165,6166,5,534,0,0,6166,6167,3,716,358,0, - 6167,561,1,0,0,0,6168,6169,5,713,0,0,6169,6170,5,450,0,0,6170,6171, - 5,360,0,0,6171,6173,5,367,0,0,6172,6174,5,857,0,0,6173,6172,1,0, - 0,0,6173,6174,1,0,0,0,6174,6175,1,0,0,0,6175,6199,5,882,0,0,6176, - 6177,5,713,0,0,6177,6178,5,433,0,0,6178,6179,5,68,0,0,6179,6180, - 3,686,343,0,6180,6181,5,423,0,0,6181,6182,5,20,0,0,6182,6189,5,882, - 0,0,6183,6184,5,360,0,0,6184,6186,5,367,0,0,6185,6187,5,857,0,0, - 6186,6185,1,0,0,0,6186,6187,1,0,0,0,6187,6188,1,0,0,0,6188,6190, - 5,882,0,0,6189,6183,1,0,0,0,6189,6190,1,0,0,0,6190,6196,1,0,0,0, - 6191,6193,5,144,0,0,6192,6194,5,502,0,0,6193,6192,1,0,0,0,6193,6194, - 1,0,0,0,6194,6195,1,0,0,0,6195,6197,5,169,0,0,6196,6191,1,0,0,0, - 6196,6197,1,0,0,0,6197,6199,1,0,0,0,6198,6168,1,0,0,0,6198,6176, - 1,0,0,0,6199,563,1,0,0,0,6200,6201,5,155,0,0,6201,6202,3,568,284, - 0,6202,6205,7,93,0,0,6203,6206,3,814,407,0,6204,6206,5,119,0,0,6205, - 6203,1,0,0,0,6205,6204,1,0,0,0,6206,6216,1,0,0,0,6207,6208,5,868, - 0,0,6208,6209,3,568,284,0,6209,6212,7,93,0,0,6210,6213,3,814,407, - 0,6211,6213,5,119,0,0,6212,6210,1,0,0,0,6212,6211,1,0,0,0,6213,6215, - 1,0,0,0,6214,6207,1,0,0,0,6215,6218,1,0,0,0,6216,6214,1,0,0,0,6216, - 6217,1,0,0,0,6217,6253,1,0,0,0,6218,6216,1,0,0,0,6219,6220,5,155, - 0,0,6220,6223,3,58,29,0,6221,6224,3,698,349,0,6222,6224,5,42,0,0, - 6223,6221,1,0,0,0,6223,6222,1,0,0,0,6224,6253,1,0,0,0,6225,6226, - 5,155,0,0,6226,6233,5,497,0,0,6227,6230,3,698,349,0,6228,6229,5, - 28,0,0,6229,6231,3,700,350,0,6230,6228,1,0,0,0,6230,6231,1,0,0,0, - 6231,6234,1,0,0,0,6232,6234,5,42,0,0,6233,6227,1,0,0,0,6233,6232, - 1,0,0,0,6234,6253,1,0,0,0,6235,6253,3,500,250,0,6236,6253,3,352, - 176,0,6237,6253,3,350,175,0,6238,6239,5,155,0,0,6239,6240,3,712, - 356,0,6240,6241,7,93,0,0,6241,6249,3,814,407,0,6242,6243,5,868,0, - 0,6243,6244,3,712,356,0,6244,6245,7,93,0,0,6245,6246,3,814,407,0, - 6246,6248,1,0,0,0,6247,6242,1,0,0,0,6248,6251,1,0,0,0,6249,6247, - 1,0,0,0,6249,6250,1,0,0,0,6250,6253,1,0,0,0,6251,6249,1,0,0,0,6252, - 6200,1,0,0,0,6252,6219,1,0,0,0,6252,6225,1,0,0,0,6252,6235,1,0,0, - 0,6252,6236,1,0,0,0,6252,6237,1,0,0,0,6252,6238,1,0,0,0,6253,565, - 1,0,0,0,6254,6255,5,157,0,0,6255,6256,7,63,0,0,6256,6439,5,452,0, - 0,6257,6258,5,157,0,0,6258,6259,7,94,0,0,6259,6262,5,386,0,0,6260, - 6261,5,80,0,0,6261,6263,5,882,0,0,6262,6260,1,0,0,0,6262,6263,1, - 0,0,0,6263,6266,1,0,0,0,6264,6265,5,68,0,0,6265,6267,3,722,361,0, - 6266,6264,1,0,0,0,6266,6267,1,0,0,0,6267,6275,1,0,0,0,6268,6272, - 5,100,0,0,6269,6270,3,722,361,0,6270,6271,5,868,0,0,6271,6273,1, - 0,0,0,6272,6269,1,0,0,0,6272,6273,1,0,0,0,6273,6274,1,0,0,0,6274, - 6276,3,722,361,0,6275,6268,1,0,0,0,6275,6276,1,0,0,0,6276,6278,1, - 0,0,0,6277,6279,3,400,200,0,6278,6277,1,0,0,0,6278,6279,1,0,0,0, - 6279,6439,1,0,0,0,6280,6281,5,157,0,0,6281,6283,3,570,285,0,6282, - 6284,3,572,286,0,6283,6282,1,0,0,0,6283,6284,1,0,0,0,6284,6439,1, - 0,0,0,6285,6287,5,157,0,0,6286,6288,5,392,0,0,6287,6286,1,0,0,0, - 6287,6288,1,0,0,0,6288,6290,1,0,0,0,6289,6291,5,408,0,0,6290,6289, - 1,0,0,0,6290,6291,1,0,0,0,6291,6292,1,0,0,0,6292,6293,7,47,0,0,6293, - 6294,7,95,0,0,6294,6297,3,662,331,0,6295,6296,7,95,0,0,6296,6298, - 3,638,319,0,6297,6295,1,0,0,0,6297,6298,1,0,0,0,6298,6300,1,0,0, - 0,6299,6301,3,572,286,0,6300,6299,1,0,0,0,6300,6301,1,0,0,0,6301, - 6439,1,0,0,0,6302,6303,5,157,0,0,6303,6304,5,34,0,0,6304,6306,7, - 0,0,0,6305,6307,3,770,385,0,6306,6305,1,0,0,0,6306,6307,1,0,0,0, - 6307,6308,1,0,0,0,6308,6439,3,638,319,0,6309,6310,5,157,0,0,6310, - 6311,5,34,0,0,6311,6312,7,96,0,0,6312,6439,3,712,356,0,6313,6314, - 5,157,0,0,6314,6315,5,34,0,0,6315,6316,5,409,0,0,6316,6439,3,642, - 321,0,6317,6318,5,157,0,0,6318,6319,5,34,0,0,6319,6320,5,684,0,0, - 6320,6439,3,646,323,0,6321,6322,5,157,0,0,6322,6323,5,34,0,0,6323, - 6324,5,173,0,0,6324,6439,3,662,331,0,6325,6326,5,157,0,0,6326,6327, - 5,34,0,0,6327,6328,5,678,0,0,6328,6439,3,694,347,0,6329,6330,5,157, - 0,0,6330,6331,5,380,0,0,6331,6332,3,702,351,0,6332,6333,7,97,0,0, - 6333,6439,1,0,0,0,6334,6335,5,157,0,0,6335,6439,3,574,287,0,6336, - 6337,5,157,0,0,6337,6345,7,98,0,0,6338,6342,5,100,0,0,6339,6340, - 3,722,361,0,6340,6341,5,868,0,0,6341,6343,1,0,0,0,6342,6339,1,0, - 0,0,6342,6343,1,0,0,0,6343,6344,1,0,0,0,6344,6346,3,722,361,0,6345, - 6338,1,0,0,0,6345,6346,1,0,0,0,6346,6439,1,0,0,0,6347,6348,5,157, - 0,0,6348,6349,5,262,0,0,6349,6350,5,866,0,0,6350,6351,5,850,0,0, - 6351,6352,5,867,0,0,6352,6439,7,98,0,0,6353,6354,5,157,0,0,6354, - 6357,3,576,288,0,6355,6356,7,95,0,0,6356,6358,3,638,319,0,6357,6355, - 1,0,0,0,6357,6358,1,0,0,0,6358,6360,1,0,0,0,6359,6361,3,572,286, - 0,6360,6359,1,0,0,0,6360,6361,1,0,0,0,6361,6439,1,0,0,0,6362,6363, - 5,157,0,0,6363,6364,5,132,0,0,6364,6365,5,336,0,0,6365,6439,3,712, - 356,0,6366,6367,5,157,0,0,6367,6368,5,409,0,0,6368,6369,5,336,0, - 0,6369,6439,3,642,321,0,6370,6371,5,157,0,0,6371,6378,5,414,0,0, - 6372,6373,5,65,0,0,6373,6376,3,666,333,0,6374,6375,5,188,0,0,6375, - 6377,3,664,332,0,6376,6374,1,0,0,0,6376,6377,1,0,0,0,6377,6379,1, - 0,0,0,6378,6372,1,0,0,0,6378,6379,1,0,0,0,6379,6439,1,0,0,0,6380, - 6382,5,157,0,0,6381,6383,5,392,0,0,6382,6381,1,0,0,0,6382,6383,1, - 0,0,0,6383,6384,1,0,0,0,6384,6385,7,99,0,0,6385,6386,7,95,0,0,6386, - 6389,3,662,331,0,6387,6388,7,95,0,0,6388,6390,3,638,319,0,6389,6387, - 1,0,0,0,6389,6390,1,0,0,0,6390,6393,1,0,0,0,6391,6392,5,192,0,0, - 6392,6394,3,814,407,0,6393,6391,1,0,0,0,6393,6394,1,0,0,0,6394,6439, - 1,0,0,0,6395,6396,5,157,0,0,6396,6397,5,516,0,0,6397,6400,5,752, - 0,0,6398,6399,7,95,0,0,6399,6401,3,638,319,0,6400,6398,1,0,0,0,6400, - 6401,1,0,0,0,6401,6403,1,0,0,0,6402,6404,3,572,286,0,6403,6402,1, - 0,0,0,6403,6404,1,0,0,0,6404,6439,1,0,0,0,6405,6406,5,157,0,0,6406, - 6415,5,545,0,0,6407,6412,3,578,289,0,6408,6409,5,868,0,0,6409,6411, - 3,578,289,0,6410,6408,1,0,0,0,6411,6414,1,0,0,0,6412,6410,1,0,0, - 0,6412,6413,1,0,0,0,6413,6416,1,0,0,0,6414,6412,1,0,0,0,6415,6407, - 1,0,0,0,6415,6416,1,0,0,0,6416,6420,1,0,0,0,6417,6418,5,65,0,0,6418, - 6419,5,548,0,0,6419,6421,3,722,361,0,6420,6417,1,0,0,0,6420,6421, - 1,0,0,0,6421,6428,1,0,0,0,6422,6423,5,100,0,0,6423,6426,3,722,361, - 0,6424,6425,5,509,0,0,6425,6427,3,722,361,0,6426,6424,1,0,0,0,6426, - 6427,1,0,0,0,6427,6429,1,0,0,0,6428,6422,1,0,0,0,6428,6429,1,0,0, - 0,6429,6439,1,0,0,0,6430,6431,5,157,0,0,6431,6432,7,64,0,0,6432, - 6434,5,645,0,0,6433,6435,3,400,200,0,6434,6433,1,0,0,0,6434,6435, - 1,0,0,0,6435,6439,1,0,0,0,6436,6437,5,157,0,0,6437,6439,5,564,0, - 0,6438,6254,1,0,0,0,6438,6257,1,0,0,0,6438,6280,1,0,0,0,6438,6285, - 1,0,0,0,6438,6302,1,0,0,0,6438,6309,1,0,0,0,6438,6313,1,0,0,0,6438, - 6317,1,0,0,0,6438,6321,1,0,0,0,6438,6325,1,0,0,0,6438,6329,1,0,0, - 0,6438,6334,1,0,0,0,6438,6336,1,0,0,0,6438,6347,1,0,0,0,6438,6353, - 1,0,0,0,6438,6362,1,0,0,0,6438,6366,1,0,0,0,6438,6370,1,0,0,0,6438, - 6380,1,0,0,0,6438,6395,1,0,0,0,6438,6405,1,0,0,0,6438,6430,1,0,0, - 0,6438,6436,1,0,0,0,6439,567,1,0,0,0,6440,6451,5,892,0,0,6441,6451, - 5,893,0,0,6442,6443,5,870,0,0,6443,6445,5,870,0,0,6444,6442,1,0, - 0,0,6444,6445,1,0,0,0,6445,6446,1,0,0,0,6446,6448,7,100,0,0,6447, - 6444,1,0,0,0,6447,6448,1,0,0,0,6448,6449,1,0,0,0,6449,6451,3,716, - 358,0,6450,6440,1,0,0,0,6450,6441,1,0,0,0,6450,6447,1,0,0,0,6451, - 569,1,0,0,0,6452,6453,5,26,0,0,6453,6467,5,155,0,0,6454,6467,5,823, - 0,0,6455,6467,5,824,0,0,6456,6467,5,40,0,0,6457,6467,5,153,0,0,6458, - 6459,5,409,0,0,6459,6467,5,645,0,0,6460,6461,5,132,0,0,6461,6467, - 5,645,0,0,6462,6464,7,62,0,0,6463,6462,1,0,0,0,6463,6464,1,0,0,0, - 6464,6465,1,0,0,0,6465,6467,7,101,0,0,6466,6452,1,0,0,0,6466,6454, - 1,0,0,0,6466,6455,1,0,0,0,6466,6456,1,0,0,0,6466,6457,1,0,0,0,6466, - 6458,1,0,0,0,6466,6460,1,0,0,0,6466,6463,1,0,0,0,6467,571,1,0,0, - 0,6468,6469,5,99,0,0,6469,6473,5,882,0,0,6470,6471,5,192,0,0,6471, - 6473,3,814,407,0,6472,6468,1,0,0,0,6472,6470,1,0,0,0,6473,573,1, - 0,0,0,6474,6476,5,647,0,0,6475,6474,1,0,0,0,6475,6476,1,0,0,0,6476, - 6477,1,0,0,0,6477,6492,5,381,0,0,6478,6479,5,453,0,0,6479,6492,5, - 645,0,0,6480,6492,5,536,0,0,6481,6492,5,734,0,0,6482,6484,5,408, - 0,0,6483,6482,1,0,0,0,6483,6484,1,0,0,0,6484,6485,1,0,0,0,6485,6492, - 5,544,0,0,6486,6492,5,546,0,0,6487,6488,5,598,0,0,6488,6492,5,422, - 0,0,6489,6492,5,312,0,0,6490,6492,5,356,0,0,6491,6475,1,0,0,0,6491, - 6478,1,0,0,0,6491,6480,1,0,0,0,6491,6481,1,0,0,0,6491,6483,1,0,0, - 0,6491,6486,1,0,0,0,6491,6487,1,0,0,0,6491,6489,1,0,0,0,6491,6490, - 1,0,0,0,6492,575,1,0,0,0,6493,6505,5,386,0,0,6494,6495,5,173,0,0, - 6495,6505,5,645,0,0,6496,6498,5,392,0,0,6497,6496,1,0,0,0,6497,6498, - 1,0,0,0,6498,6500,1,0,0,0,6499,6501,5,408,0,0,6500,6499,1,0,0,0, - 6500,6501,1,0,0,0,6501,6502,1,0,0,0,6502,6505,5,752,0,0,6503,6505, - 5,667,0,0,6504,6493,1,0,0,0,6504,6494,1,0,0,0,6504,6497,1,0,0,0, - 6504,6503,1,0,0,0,6505,577,1,0,0,0,6506,6519,5,7,0,0,6507,6508,5, - 320,0,0,6508,6519,5,437,0,0,6509,6510,5,355,0,0,6510,6519,5,656, - 0,0,6511,6519,5,358,0,0,6512,6519,5,439,0,0,6513,6519,5,802,0,0, - 6514,6515,5,521,0,0,6515,6519,5,397,0,0,6516,6519,5,605,0,0,6517, - 6519,5,655,0,0,6518,6506,1,0,0,0,6518,6507,1,0,0,0,6518,6509,1,0, - 0,0,6518,6511,1,0,0,0,6518,6512,1,0,0,0,6518,6513,1,0,0,0,6518,6514, - 1,0,0,0,6518,6516,1,0,0,0,6518,6517,1,0,0,0,6519,579,1,0,0,0,6520, - 6521,5,318,0,0,6521,6522,5,882,0,0,6522,581,1,0,0,0,6523,6524,5, - 324,0,0,6524,6542,5,82,0,0,6525,6530,3,602,301,0,6526,6527,5,868, - 0,0,6527,6529,3,602,301,0,6528,6526,1,0,0,0,6529,6532,1,0,0,0,6530, - 6528,1,0,0,0,6530,6531,1,0,0,0,6531,6543,1,0,0,0,6532,6530,1,0,0, - 0,6533,6534,3,662,331,0,6534,6535,5,130,0,0,6535,6538,5,866,0,0, - 6536,6539,3,680,340,0,6537,6539,5,7,0,0,6538,6536,1,0,0,0,6538,6537, - 1,0,0,0,6539,6540,1,0,0,0,6540,6541,5,867,0,0,6541,6543,1,0,0,0, - 6542,6525,1,0,0,0,6542,6533,1,0,0,0,6543,6544,1,0,0,0,6544,6545, - 5,80,0,0,6545,6546,3,638,319,0,6546,583,1,0,0,0,6547,6549,5,404, - 0,0,6548,6550,3,548,274,0,6549,6548,1,0,0,0,6549,6550,1,0,0,0,6550, - 6551,1,0,0,0,6551,6556,3,604,302,0,6552,6553,5,868,0,0,6553,6555, - 3,604,302,0,6554,6552,1,0,0,0,6555,6558,1,0,0,0,6556,6554,1,0,0, - 0,6556,6557,1,0,0,0,6557,585,1,0,0,0,6558,6556,1,0,0,0,6559,6561, - 5,94,0,0,6560,6562,7,102,0,0,6561,6560,1,0,0,0,6561,6562,1,0,0,0, - 6562,6563,1,0,0,0,6563,6564,3,814,407,0,6564,587,1,0,0,0,6565,6566, - 5,103,0,0,6566,6567,5,82,0,0,6567,6568,5,88,0,0,6568,6569,5,324, - 0,0,6569,6574,3,608,304,0,6570,6571,5,868,0,0,6571,6573,3,608,304, - 0,6572,6570,1,0,0,0,6573,6576,1,0,0,0,6574,6572,1,0,0,0,6574,6575, - 1,0,0,0,6575,589,1,0,0,0,6576,6574,1,0,0,0,6577,6578,5,575,0,0,6578, - 6583,3,592,296,0,6579,6580,5,868,0,0,6580,6582,3,592,296,0,6581, - 6579,1,0,0,0,6582,6585,1,0,0,0,6583,6581,1,0,0,0,6583,6584,1,0,0, - 0,6584,591,1,0,0,0,6585,6583,1,0,0,0,6586,6592,5,453,0,0,6587,6592, - 5,563,0,0,6588,6589,5,548,0,0,6589,6592,5,324,0,0,6590,6592,5,598, - 0,0,6591,6586,1,0,0,0,6591,6587,1,0,0,0,6591,6588,1,0,0,0,6591,6590, - 1,0,0,0,6592,593,1,0,0,0,6593,6594,5,575,0,0,6594,6599,5,531,0,0, - 6595,6597,3,768,384,0,6596,6595,1,0,0,0,6596,6597,1,0,0,0,6597,6598, - 1,0,0,0,6598,6600,3,716,358,0,6599,6596,1,0,0,0,6599,6600,1,0,0, - 0,6600,595,1,0,0,0,6601,6602,5,575,0,0,6602,6604,7,64,0,0,6603,6605, - 5,7,0,0,6604,6603,1,0,0,0,6604,6605,1,0,0,0,6605,6607,1,0,0,0,6606, - 6608,3,400,200,0,6607,6606,1,0,0,0,6607,6608,1,0,0,0,6608,597,1, - 0,0,0,6609,6610,5,576,0,0,6610,599,1,0,0,0,6611,6612,5,749,0,0,6612, - 601,1,0,0,0,6613,6619,3,662,331,0,6614,6615,7,19,0,0,6615,6616,5, - 866,0,0,6616,6617,3,650,325,0,6617,6618,5,867,0,0,6618,6620,1,0, - 0,0,6619,6614,1,0,0,0,6619,6620,1,0,0,0,6620,603,1,0,0,0,6621,6640, - 5,366,0,0,6622,6640,5,422,0,0,6623,6625,7,103,0,0,6624,6623,1,0, - 0,0,6624,6625,1,0,0,0,6625,6626,1,0,0,0,6626,6640,5,452,0,0,6627, - 6640,5,517,0,0,6628,6640,5,734,0,0,6629,6630,5,548,0,0,6630,6640, - 5,324,0,0,6631,6640,5,645,0,0,6632,6640,5,680,0,0,6633,6637,5,752, - 0,0,6634,6635,5,194,0,0,6635,6636,5,135,0,0,6636,6638,5,104,0,0, - 6637,6634,1,0,0,0,6637,6638,1,0,0,0,6638,6640,1,0,0,0,6639,6621, - 1,0,0,0,6639,6622,1,0,0,0,6639,6624,1,0,0,0,6639,6627,1,0,0,0,6639, - 6628,1,0,0,0,6639,6629,1,0,0,0,6639,6631,1,0,0,0,6639,6632,1,0,0, - 0,6639,6633,1,0,0,0,6640,6654,1,0,0,0,6641,6642,5,556,0,0,6642,6644, - 5,452,0,0,6643,6645,3,400,200,0,6644,6643,1,0,0,0,6644,6645,1,0, - 0,0,6645,6654,1,0,0,0,6646,6648,7,61,0,0,6647,6649,3,660,330,0,6648, - 6647,1,0,0,0,6648,6649,1,0,0,0,6649,6651,1,0,0,0,6650,6652,3,606, - 303,0,6651,6650,1,0,0,0,6651,6652,1,0,0,0,6652,6654,1,0,0,0,6653, - 6639,1,0,0,0,6653,6641,1,0,0,0,6653,6646,1,0,0,0,6654,605,1,0,0, - 0,6655,6656,5,194,0,0,6656,6657,5,135,0,0,6657,6661,5,104,0,0,6658, - 6659,5,65,0,0,6659,6661,5,391,0,0,6660,6655,1,0,0,0,6660,6658,1, - 0,0,0,6661,607,1,0,0,0,6662,6670,3,662,331,0,6663,6664,5,130,0,0, - 6664,6667,5,866,0,0,6665,6668,3,680,340,0,6666,6668,5,7,0,0,6667, - 6665,1,0,0,0,6667,6666,1,0,0,0,6668,6669,1,0,0,0,6669,6671,5,867, - 0,0,6670,6663,1,0,0,0,6670,6671,1,0,0,0,6671,6679,1,0,0,0,6672,6674, - 7,19,0,0,6673,6672,1,0,0,0,6673,6674,1,0,0,0,6674,6675,1,0,0,0,6675, - 6676,5,866,0,0,6676,6677,3,650,325,0,6677,6678,5,867,0,0,6678,6680, - 1,0,0,0,6679,6673,1,0,0,0,6679,6680,1,0,0,0,6680,6683,1,0,0,0,6681, - 6682,5,79,0,0,6682,6684,5,446,0,0,6683,6681,1,0,0,0,6683,6684,1, - 0,0,0,6684,609,1,0,0,0,6685,6686,7,104,0,0,6686,6689,3,662,331,0, - 6687,6690,3,672,336,0,6688,6690,5,882,0,0,6689,6687,1,0,0,0,6689, - 6688,1,0,0,0,6689,6690,1,0,0,0,6690,611,1,0,0,0,6691,6697,7,104, - 0,0,6692,6698,5,392,0,0,6693,6698,5,528,0,0,6694,6695,5,826,0,0, - 6695,6696,5,857,0,0,6696,6698,7,105,0,0,6697,6692,1,0,0,0,6697,6693, - 1,0,0,0,6697,6694,1,0,0,0,6697,6698,1,0,0,0,6698,6699,1,0,0,0,6699, - 6700,3,634,317,0,6700,613,1,0,0,0,6701,6702,7,104,0,0,6702,6706, - 5,10,0,0,6703,6704,5,826,0,0,6704,6705,5,857,0,0,6705,6707,5,666, - 0,0,6706,6703,1,0,0,0,6706,6707,1,0,0,0,6707,6708,1,0,0,0,6708,6709, - 3,210,105,0,6709,615,1,0,0,0,6710,6711,5,419,0,0,6711,6712,5,882, - 0,0,6712,617,1,0,0,0,6713,6714,5,187,0,0,6714,6715,3,638,319,0,6715, - 619,1,0,0,0,6716,6724,5,158,0,0,6717,6719,5,164,0,0,6718,6720,5, - 682,0,0,6719,6718,1,0,0,0,6719,6720,1,0,0,0,6720,6721,1,0,0,0,6721, - 6725,3,726,363,0,6722,6725,5,889,0,0,6723,6725,5,890,0,0,6724,6717, - 1,0,0,0,6724,6722,1,0,0,0,6724,6723,1,0,0,0,6725,6735,1,0,0,0,6726, - 6727,5,155,0,0,6727,6732,3,624,312,0,6728,6729,5,868,0,0,6729,6731, - 3,624,312,0,6730,6728,1,0,0,0,6731,6734,1,0,0,0,6732,6730,1,0,0, - 0,6732,6733,1,0,0,0,6733,6736,1,0,0,0,6734,6732,1,0,0,0,6735,6726, - 1,0,0,0,6735,6736,1,0,0,0,6736,621,1,0,0,0,6737,6745,5,145,0,0,6738, - 6740,5,164,0,0,6739,6741,5,682,0,0,6740,6739,1,0,0,0,6740,6741,1, - 0,0,0,6741,6742,1,0,0,0,6742,6746,3,726,363,0,6743,6746,5,889,0, - 0,6744,6746,5,890,0,0,6745,6738,1,0,0,0,6745,6743,1,0,0,0,6745,6744, - 1,0,0,0,6745,6746,1,0,0,0,6746,6756,1,0,0,0,6747,6748,5,155,0,0, - 6748,6753,3,624,312,0,6749,6750,5,868,0,0,6750,6752,3,624,312,0, - 6751,6749,1,0,0,0,6752,6755,1,0,0,0,6753,6751,1,0,0,0,6753,6754, - 1,0,0,0,6754,6757,1,0,0,0,6755,6753,1,0,0,0,6756,6747,1,0,0,0,6756, - 6757,1,0,0,0,6757,623,1,0,0,0,6758,6759,7,106,0,0,6759,6764,5,857, - 0,0,6760,6765,3,726,363,0,6761,6765,5,883,0,0,6762,6765,3,696,348, - 0,6763,6765,3,718,359,0,6764,6760,1,0,0,0,6764,6761,1,0,0,0,6764, - 6762,1,0,0,0,6764,6763,1,0,0,0,6765,625,1,0,0,0,6766,6768,5,194, - 0,0,6767,6769,5,552,0,0,6768,6767,1,0,0,0,6768,6769,1,0,0,0,6769, - 6770,1,0,0,0,6770,6775,3,52,26,0,6771,6772,5,868,0,0,6772,6774,3, - 52,26,0,6773,6771,1,0,0,0,6774,6777,1,0,0,0,6775,6773,1,0,0,0,6775, - 6776,1,0,0,0,6776,627,1,0,0,0,6777,6775,1,0,0,0,6778,6779,5,173, - 0,0,6779,6781,3,662,331,0,6780,6782,3,258,129,0,6781,6780,1,0,0, - 0,6781,6782,1,0,0,0,6782,6784,1,0,0,0,6783,6785,3,328,164,0,6784, - 6783,1,0,0,0,6784,6785,1,0,0,0,6785,629,1,0,0,0,6786,6788,5,72,0, - 0,6787,6789,7,107,0,0,6788,6787,1,0,0,0,6788,6789,1,0,0,0,6789,6790, - 1,0,0,0,6790,6822,5,48,0,0,6791,6792,3,568,284,0,6792,6793,5,857, - 0,0,6793,6801,7,108,0,0,6794,6795,5,868,0,0,6795,6796,3,568,284, - 0,6796,6797,5,857,0,0,6797,6798,7,108,0,0,6798,6800,1,0,0,0,6799, - 6794,1,0,0,0,6800,6803,1,0,0,0,6801,6799,1,0,0,0,6801,6802,1,0,0, - 0,6802,6823,1,0,0,0,6803,6801,1,0,0,0,6804,6807,5,30,0,0,6805,6808, - 3,722,361,0,6806,6808,3,568,284,0,6807,6805,1,0,0,0,6807,6806,1, - 0,0,0,6808,6809,1,0,0,0,6809,6810,3,568,284,0,6810,6811,5,857,0, - 0,6811,6819,3,632,316,0,6812,6813,5,868,0,0,6813,6814,3,568,284, - 0,6814,6815,5,857,0,0,6815,6816,3,632,316,0,6816,6818,1,0,0,0,6817, - 6812,1,0,0,0,6818,6821,1,0,0,0,6819,6817,1,0,0,0,6819,6820,1,0,0, - 0,6820,6823,1,0,0,0,6821,6819,1,0,0,0,6822,6791,1,0,0,0,6822,6804, - 1,0,0,0,6823,631,1,0,0,0,6824,6825,7,109,0,0,6825,633,1,0,0,0,6826, - 6832,3,210,105,0,6827,6832,3,186,93,0,6828,6832,3,192,96,0,6829, - 6832,3,208,104,0,6830,6832,3,220,110,0,6831,6826,1,0,0,0,6831,6827, - 1,0,0,0,6831,6828,1,0,0,0,6831,6829,1,0,0,0,6831,6830,1,0,0,0,6832, - 6837,1,0,0,0,6833,6834,5,65,0,0,6834,6835,5,349,0,0,6835,6837,3, - 716,358,0,6836,6831,1,0,0,0,6836,6833,1,0,0,0,6837,635,1,0,0,0,6838, - 6839,3,712,356,0,6839,637,1,0,0,0,6840,6841,3,712,356,0,6841,639, - 1,0,0,0,6842,6843,3,712,356,0,6843,641,1,0,0,0,6844,6845,3,712,356, - 0,6845,643,1,0,0,0,6846,6847,3,712,356,0,6847,645,1,0,0,0,6848,6849, - 3,712,356,0,6849,647,1,0,0,0,6850,6851,3,716,358,0,6851,649,1,0, - 0,0,6852,6857,3,652,326,0,6853,6854,5,868,0,0,6854,6856,3,652,326, - 0,6855,6853,1,0,0,0,6856,6859,1,0,0,0,6857,6855,1,0,0,0,6857,6858, - 1,0,0,0,6858,651,1,0,0,0,6859,6857,1,0,0,0,6860,6861,3,716,358,0, - 6861,653,1,0,0,0,6862,6863,3,716,358,0,6863,655,1,0,0,0,6864,6865, - 3,716,358,0,6865,657,1,0,0,0,6866,6867,3,712,356,0,6867,659,1,0, - 0,0,6868,6873,3,662,331,0,6869,6870,5,868,0,0,6870,6872,3,662,331, - 0,6871,6869,1,0,0,0,6872,6875,1,0,0,0,6873,6871,1,0,0,0,6873,6874, - 1,0,0,0,6874,661,1,0,0,0,6875,6873,1,0,0,0,6876,6877,3,712,356,0, - 6877,663,1,0,0,0,6878,6883,3,666,333,0,6879,6880,5,868,0,0,6880, - 6882,3,666,333,0,6881,6879,1,0,0,0,6882,6885,1,0,0,0,6883,6881,1, - 0,0,0,6883,6884,1,0,0,0,6884,665,1,0,0,0,6885,6883,1,0,0,0,6886, - 6889,3,694,347,0,6887,6889,3,716,358,0,6888,6886,1,0,0,0,6888,6887, - 1,0,0,0,6889,667,1,0,0,0,6890,6895,3,716,358,0,6891,6893,3,720,360, - 0,6892,6894,3,720,360,0,6893,6892,1,0,0,0,6893,6894,1,0,0,0,6894, - 6896,1,0,0,0,6895,6891,1,0,0,0,6895,6896,1,0,0,0,6896,6905,1,0,0, - 0,6897,6899,9,0,0,0,6898,6897,1,0,0,0,6898,6899,1,0,0,0,6899,6900, - 1,0,0,0,6900,6902,3,720,360,0,6901,6903,3,720,360,0,6902,6901,1, - 0,0,0,6902,6903,1,0,0,0,6903,6905,1,0,0,0,6904,6890,1,0,0,0,6904, - 6898,1,0,0,0,6905,669,1,0,0,0,6906,6911,3,672,336,0,6907,6908,5, - 868,0,0,6908,6910,3,672,336,0,6909,6907,1,0,0,0,6910,6913,1,0,0, - 0,6911,6909,1,0,0,0,6911,6912,1,0,0,0,6912,671,1,0,0,0,6913,6911, - 1,0,0,0,6914,6919,3,716,358,0,6915,6917,3,720,360,0,6916,6918,3, - 720,360,0,6917,6916,1,0,0,0,6917,6918,1,0,0,0,6918,6920,1,0,0,0, - 6919,6915,1,0,0,0,6919,6920,1,0,0,0,6920,6930,1,0,0,0,6921,6923, - 9,0,0,0,6922,6921,1,0,0,0,6922,6923,1,0,0,0,6923,6924,1,0,0,0,6924, - 6926,3,720,360,0,6925,6927,3,720,360,0,6926,6925,1,0,0,0,6926,6927, - 1,0,0,0,6927,6930,1,0,0,0,6928,6930,4,336,3,0,6929,6914,1,0,0,0, - 6929,6922,1,0,0,0,6929,6928,1,0,0,0,6930,673,1,0,0,0,6931,6932,3, - 716,358,0,6932,675,1,0,0,0,6933,6934,3,716,358,0,6934,677,1,0,0, - 0,6935,6936,3,716,358,0,6936,679,1,0,0,0,6937,6942,3,682,341,0,6938, - 6939,5,868,0,0,6939,6941,3,682,341,0,6940,6938,1,0,0,0,6941,6944, - 1,0,0,0,6942,6940,1,0,0,0,6942,6943,1,0,0,0,6943,681,1,0,0,0,6944, - 6942,1,0,0,0,6945,6946,3,716,358,0,6946,683,1,0,0,0,6947,6952,3, - 716,358,0,6948,6949,5,866,0,0,6949,6950,3,722,361,0,6950,6951,5, - 867,0,0,6951,6953,1,0,0,0,6952,6948,1,0,0,0,6952,6953,1,0,0,0,6953, - 6956,1,0,0,0,6954,6956,3,814,407,0,6955,6947,1,0,0,0,6955,6954,1, - 0,0,0,6956,6958,1,0,0,0,6957,6959,7,55,0,0,6958,6957,1,0,0,0,6958, - 6959,1,0,0,0,6959,685,1,0,0,0,6960,6961,3,688,344,0,6961,6962,5, - 878,0,0,6962,6963,3,722,361,0,6963,687,1,0,0,0,6964,6965,3,690,345, - 0,6965,6966,5,891,0,0,6966,689,1,0,0,0,6967,6972,5,882,0,0,6968, - 6972,5,889,0,0,6969,6972,5,704,0,0,6970,6972,3,844,422,0,6971,6967, - 1,0,0,0,6971,6968,1,0,0,0,6971,6969,1,0,0,0,6971,6970,1,0,0,0,6972, - 691,1,0,0,0,6973,6974,7,110,0,0,6974,693,1,0,0,0,6975,6977,3,690, - 345,0,6976,6978,3,692,346,0,6977,6976,1,0,0,0,6977,6978,1,0,0,0, - 6978,6981,1,0,0,0,6979,6981,3,60,30,0,6980,6975,1,0,0,0,6980,6979, - 1,0,0,0,6981,695,1,0,0,0,6982,6983,7,111,0,0,6983,697,1,0,0,0,6984, - 6989,5,228,0,0,6985,6989,3,834,417,0,6986,6989,5,882,0,0,6987,6989, - 5,879,0,0,6988,6984,1,0,0,0,6988,6985,1,0,0,0,6988,6986,1,0,0,0, - 6988,6987,1,0,0,0,6989,699,1,0,0,0,6990,6991,3,716,358,0,6991,701, - 1,0,0,0,6992,6996,3,704,352,0,6993,6996,5,889,0,0,6994,6996,5,882, - 0,0,6995,6992,1,0,0,0,6995,6993,1,0,0,0,6995,6994,1,0,0,0,6996,703, - 1,0,0,0,6997,6998,7,112,0,0,6998,705,1,0,0,0,6999,7000,3,722,361, - 0,7000,7001,5,854,0,0,7001,7002,3,722,361,0,7002,7003,5,854,0,0, - 7003,7004,3,722,361,0,7004,7005,5,854,0,0,7005,7006,3,722,361,0, - 7006,7007,5,854,0,0,7007,7013,3,722,361,0,7008,7009,5,878,0,0,7009, - 7010,3,722,361,0,7010,7011,5,854,0,0,7011,7012,3,722,361,0,7012, - 7014,1,0,0,0,7013,7008,1,0,0,0,7014,7015,1,0,0,0,7015,7013,1,0,0, - 0,7015,7016,1,0,0,0,7016,707,1,0,0,0,7017,7024,3,710,355,0,7018, - 7019,5,868,0,0,7019,7022,3,710,355,0,7020,7021,5,868,0,0,7021,7023, - 3,722,361,0,7022,7020,1,0,0,0,7022,7023,1,0,0,0,7023,7025,1,0,0, - 0,7024,7018,1,0,0,0,7024,7025,1,0,0,0,7025,709,1,0,0,0,7026,7034, - 5,882,0,0,7027,7034,5,887,0,0,7028,7030,5,884,0,0,7029,7028,1,0, - 0,0,7030,7031,1,0,0,0,7031,7029,1,0,0,0,7031,7032,1,0,0,0,7032,7034, - 1,0,0,0,7033,7026,1,0,0,0,7033,7027,1,0,0,0,7033,7029,1,0,0,0,7034, - 711,1,0,0,0,7035,7037,3,716,358,0,7036,7038,3,720,360,0,7037,7036, - 1,0,0,0,7037,7038,1,0,0,0,7038,713,1,0,0,0,7039,7044,3,716,358,0, - 7040,7041,5,868,0,0,7041,7043,3,716,358,0,7042,7040,1,0,0,0,7043, - 7046,1,0,0,0,7044,7042,1,0,0,0,7044,7045,1,0,0,0,7045,715,1,0,0, - 0,7046,7044,1,0,0,0,7047,7051,3,718,359,0,7048,7051,5,879,0,0,7049, - 7051,5,882,0,0,7050,7047,1,0,0,0,7050,7048,1,0,0,0,7050,7049,1,0, - 0,0,7051,717,1,0,0,0,7052,7062,5,889,0,0,7053,7062,3,834,417,0,7054, - 7062,3,836,418,0,7055,7062,3,704,352,0,7056,7062,3,838,419,0,7057, - 7062,3,840,420,0,7058,7062,3,842,421,0,7059,7062,3,844,422,0,7060, - 7062,3,806,403,0,7061,7052,1,0,0,0,7061,7053,1,0,0,0,7061,7054,1, - 0,0,0,7061,7055,1,0,0,0,7061,7056,1,0,0,0,7061,7057,1,0,0,0,7061, - 7058,1,0,0,0,7061,7059,1,0,0,0,7061,7060,1,0,0,0,7062,719,1,0,0, - 0,7063,7064,5,865,0,0,7064,7068,5,889,0,0,7065,7066,5,865,0,0,7066, - 7068,3,716,358,0,7067,7063,1,0,0,0,7067,7065,1,0,0,0,7068,721,1, - 0,0,0,7069,7070,7,113,0,0,7070,723,1,0,0,0,7071,7074,5,880,0,0,7072, - 7074,3,722,361,0,7073,7071,1,0,0,0,7073,7072,1,0,0,0,7074,725,1, - 0,0,0,7075,7077,5,888,0,0,7076,7075,1,0,0,0,7076,7077,1,0,0,0,7077, - 7078,1,0,0,0,7078,7081,5,882,0,0,7079,7081,5,881,0,0,7080,7076,1, - 0,0,0,7080,7079,1,0,0,0,7081,7083,1,0,0,0,7082,7084,5,882,0,0,7083, - 7082,1,0,0,0,7084,7085,1,0,0,0,7085,7083,1,0,0,0,7085,7086,1,0,0, - 0,7086,7099,1,0,0,0,7087,7089,5,888,0,0,7088,7087,1,0,0,0,7088,7089, - 1,0,0,0,7089,7090,1,0,0,0,7090,7093,5,882,0,0,7091,7093,5,881,0, - 0,7092,7088,1,0,0,0,7092,7091,1,0,0,0,7093,7096,1,0,0,0,7094,7095, - 5,28,0,0,7095,7097,3,700,350,0,7096,7094,1,0,0,0,7096,7097,1,0,0, - 0,7097,7099,1,0,0,0,7098,7080,1,0,0,0,7098,7092,1,0,0,0,7099,727, - 1,0,0,0,7100,7101,7,114,0,0,7101,729,1,0,0,0,7102,7104,5,888,0,0, - 7103,7102,1,0,0,0,7103,7104,1,0,0,0,7104,7105,1,0,0,0,7105,7106, - 5,884,0,0,7106,731,1,0,0,0,7107,7109,5,114,0,0,7108,7107,1,0,0,0, - 7108,7109,1,0,0,0,7109,7110,1,0,0,0,7110,7111,7,115,0,0,7111,733, - 1,0,0,0,7112,7125,3,726,363,0,7113,7125,3,722,361,0,7114,7115,5, - 854,0,0,7115,7125,3,722,361,0,7116,7125,3,730,365,0,7117,7125,3, - 728,364,0,7118,7125,5,885,0,0,7119,7125,5,887,0,0,7120,7122,5,114, - 0,0,7121,7120,1,0,0,0,7121,7122,1,0,0,0,7122,7123,1,0,0,0,7123,7125, - 7,115,0,0,7124,7112,1,0,0,0,7124,7113,1,0,0,0,7124,7114,1,0,0,0, - 7124,7116,1,0,0,0,7124,7117,1,0,0,0,7124,7118,1,0,0,0,7124,7119, - 1,0,0,0,7124,7121,1,0,0,0,7125,735,1,0,0,0,7126,7128,7,116,0,0,7127, - 7129,5,240,0,0,7128,7127,1,0,0,0,7128,7129,1,0,0,0,7129,7131,1,0, - 0,0,7130,7132,3,742,371,0,7131,7130,1,0,0,0,7131,7132,1,0,0,0,7132, - 7134,1,0,0,0,7133,7135,5,228,0,0,7134,7133,1,0,0,0,7134,7135,1,0, - 0,0,7135,7139,1,0,0,0,7136,7137,3,58,29,0,7137,7138,3,698,349,0, - 7138,7140,1,0,0,0,7139,7136,1,0,0,0,7139,7140,1,0,0,0,7140,7144, - 1,0,0,0,7141,7142,5,28,0,0,7142,7145,3,700,350,0,7143,7145,5,228, - 0,0,7144,7141,1,0,0,0,7144,7143,1,0,0,0,7144,7145,1,0,0,0,7145,7253, - 1,0,0,0,7146,7147,5,227,0,0,7147,7148,7,117,0,0,7148,7150,5,240, - 0,0,7149,7151,3,742,371,0,7150,7149,1,0,0,0,7150,7151,1,0,0,0,7151, - 7153,1,0,0,0,7152,7154,5,228,0,0,7153,7152,1,0,0,0,7153,7154,1,0, - 0,0,7154,7253,1,0,0,0,7155,7156,5,227,0,0,7156,7158,7,118,0,0,7157, - 7159,3,742,371,0,7158,7157,1,0,0,0,7158,7159,1,0,0,0,7159,7161,1, - 0,0,0,7160,7162,5,228,0,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162, - 7253,1,0,0,0,7163,7164,5,498,0,0,7164,7166,5,225,0,0,7165,7167,3, - 742,371,0,7166,7165,1,0,0,0,7166,7167,1,0,0,0,7167,7169,1,0,0,0, - 7168,7170,5,228,0,0,7169,7168,1,0,0,0,7169,7170,1,0,0,0,7170,7253, - 1,0,0,0,7171,7173,7,119,0,0,7172,7174,3,742,371,0,7173,7172,1,0, - 0,0,7173,7174,1,0,0,0,7174,7178,1,0,0,0,7175,7177,7,120,0,0,7176, - 7175,1,0,0,0,7177,7180,1,0,0,0,7178,7176,1,0,0,0,7178,7179,1,0,0, - 0,7179,7253,1,0,0,0,7180,7178,1,0,0,0,7181,7183,5,210,0,0,7182,7184, - 3,744,372,0,7183,7182,1,0,0,0,7183,7184,1,0,0,0,7184,7188,1,0,0, - 0,7185,7187,7,120,0,0,7186,7185,1,0,0,0,7187,7190,1,0,0,0,7188,7186, - 1,0,0,0,7188,7189,1,0,0,0,7189,7253,1,0,0,0,7190,7188,1,0,0,0,7191, - 7193,5,211,0,0,7192,7194,5,212,0,0,7193,7192,1,0,0,0,7193,7194,1, - 0,0,0,7194,7196,1,0,0,0,7195,7197,3,744,372,0,7196,7195,1,0,0,0, - 7196,7197,1,0,0,0,7197,7201,1,0,0,0,7198,7200,7,120,0,0,7199,7198, - 1,0,0,0,7200,7203,1,0,0,0,7201,7199,1,0,0,0,7201,7202,1,0,0,0,7202, - 7253,1,0,0,0,7203,7201,1,0,0,0,7204,7206,7,121,0,0,7205,7207,3,746, - 373,0,7206,7205,1,0,0,0,7206,7207,1,0,0,0,7207,7211,1,0,0,0,7208, - 7210,7,120,0,0,7209,7208,1,0,0,0,7210,7213,1,0,0,0,7211,7209,1,0, - 0,0,7211,7212,1,0,0,0,7212,7253,1,0,0,0,7213,7211,1,0,0,0,7214,7253, - 7,122,0,0,7215,7217,7,123,0,0,7216,7218,3,742,371,0,7217,7216,1, - 0,0,0,7217,7218,1,0,0,0,7218,7253,1,0,0,0,7219,7220,7,124,0,0,7220, - 7222,3,738,369,0,7221,7223,5,228,0,0,7222,7221,1,0,0,0,7222,7223, - 1,0,0,0,7223,7227,1,0,0,0,7224,7225,3,58,29,0,7225,7226,3,698,349, - 0,7226,7228,1,0,0,0,7227,7224,1,0,0,0,7227,7228,1,0,0,0,7228,7253, - 1,0,0,0,7229,7232,7,125,0,0,7230,7231,5,834,0,0,7231,7233,3,722, - 361,0,7232,7230,1,0,0,0,7232,7233,1,0,0,0,7233,7253,1,0,0,0,7234, - 7236,5,233,0,0,7235,7237,5,225,0,0,7236,7235,1,0,0,0,7236,7237,1, - 0,0,0,7237,7239,1,0,0,0,7238,7240,5,228,0,0,7239,7238,1,0,0,0,7239, - 7240,1,0,0,0,7240,7244,1,0,0,0,7241,7242,3,58,29,0,7242,7243,3,698, - 349,0,7243,7245,1,0,0,0,7244,7241,1,0,0,0,7244,7245,1,0,0,0,7245, - 7248,1,0,0,0,7246,7247,5,28,0,0,7247,7249,3,700,350,0,7248,7246, - 1,0,0,0,7248,7249,1,0,0,0,7249,7253,1,0,0,0,7250,7251,5,233,0,0, - 7251,7253,5,229,0,0,7252,7126,1,0,0,0,7252,7146,1,0,0,0,7252,7155, - 1,0,0,0,7252,7163,1,0,0,0,7252,7171,1,0,0,0,7252,7181,1,0,0,0,7252, - 7191,1,0,0,0,7252,7204,1,0,0,0,7252,7214,1,0,0,0,7252,7215,1,0,0, - 0,7252,7219,1,0,0,0,7252,7229,1,0,0,0,7252,7234,1,0,0,0,7252,7250, - 1,0,0,0,7253,737,1,0,0,0,7254,7255,5,866,0,0,7255,7260,5,882,0,0, - 7256,7257,5,868,0,0,7257,7259,5,882,0,0,7258,7256,1,0,0,0,7259,7262, - 1,0,0,0,7260,7258,1,0,0,0,7260,7261,1,0,0,0,7261,7263,1,0,0,0,7262, - 7260,1,0,0,0,7263,7264,5,867,0,0,7264,739,1,0,0,0,7265,7267,7,126, - 0,0,7266,7268,3,742,371,0,7267,7266,1,0,0,0,7267,7268,1,0,0,0,7268, - 7288,1,0,0,0,7269,7271,5,224,0,0,7270,7272,3,742,371,0,7271,7270, - 1,0,0,0,7271,7272,1,0,0,0,7272,7276,1,0,0,0,7273,7274,3,58,29,0, - 7274,7275,3,698,349,0,7275,7277,1,0,0,0,7276,7273,1,0,0,0,7276,7277, - 1,0,0,0,7277,7288,1,0,0,0,7278,7288,7,127,0,0,7279,7281,7,128,0, - 0,7280,7282,3,746,373,0,7281,7280,1,0,0,0,7281,7282,1,0,0,0,7282, - 7288,1,0,0,0,7283,7285,7,129,0,0,7284,7286,7,130,0,0,7285,7284,1, - 0,0,0,7285,7286,1,0,0,0,7286,7288,1,0,0,0,7287,7265,1,0,0,0,7287, - 7269,1,0,0,0,7287,7278,1,0,0,0,7287,7279,1,0,0,0,7287,7283,1,0,0, - 0,7288,7290,1,0,0,0,7289,7291,5,12,0,0,7290,7289,1,0,0,0,7290,7291, - 1,0,0,0,7291,741,1,0,0,0,7292,7293,5,866,0,0,7293,7294,3,722,361, - 0,7294,7295,5,867,0,0,7295,743,1,0,0,0,7296,7297,5,866,0,0,7297, - 7298,3,722,361,0,7298,7299,5,868,0,0,7299,7300,3,722,361,0,7300, - 7301,5,867,0,0,7301,745,1,0,0,0,7302,7303,5,866,0,0,7303,7306,3, - 722,361,0,7304,7305,5,868,0,0,7305,7307,3,722,361,0,7306,7304,1, - 0,0,0,7306,7307,1,0,0,0,7307,7308,1,0,0,0,7308,7309,5,867,0,0,7309, - 747,1,0,0,0,7310,7311,5,866,0,0,7311,7316,3,684,342,0,7312,7313, - 5,868,0,0,7313,7315,3,684,342,0,7314,7312,1,0,0,0,7315,7318,1,0, - 0,0,7316,7314,1,0,0,0,7316,7317,1,0,0,0,7317,7319,1,0,0,0,7318,7316, - 1,0,0,0,7319,7320,5,867,0,0,7320,749,1,0,0,0,7321,7326,3,814,407, - 0,7322,7323,5,868,0,0,7323,7325,3,814,407,0,7324,7322,1,0,0,0,7325, - 7328,1,0,0,0,7326,7324,1,0,0,0,7326,7327,1,0,0,0,7327,751,1,0,0, - 0,7328,7326,1,0,0,0,7329,7330,7,131,0,0,7330,7335,3,754,377,0,7331, - 7332,5,868,0,0,7332,7334,3,754,377,0,7333,7331,1,0,0,0,7334,7337, - 1,0,0,0,7335,7333,1,0,0,0,7335,7336,1,0,0,0,7336,753,1,0,0,0,7337, - 7335,1,0,0,0,7338,7339,5,866,0,0,7339,7344,3,756,378,0,7340,7341, - 5,868,0,0,7341,7343,3,756,378,0,7342,7340,1,0,0,0,7343,7346,1,0, - 0,0,7344,7342,1,0,0,0,7344,7345,1,0,0,0,7345,7347,1,0,0,0,7346,7344, - 1,0,0,0,7347,7348,5,867,0,0,7348,755,1,0,0,0,7349,7352,3,814,407, - 0,7350,7352,5,42,0,0,7351,7349,1,0,0,0,7351,7350,1,0,0,0,7352,757, - 1,0,0,0,7353,7358,3,734,367,0,7354,7355,5,868,0,0,7355,7357,3,734, - 367,0,7356,7354,1,0,0,0,7357,7360,1,0,0,0,7358,7356,1,0,0,0,7358, - 7359,1,0,0,0,7359,759,1,0,0,0,7360,7358,1,0,0,0,7361,7366,5,882, - 0,0,7362,7363,5,868,0,0,7363,7365,5,882,0,0,7364,7362,1,0,0,0,7365, - 7368,1,0,0,0,7366,7364,1,0,0,0,7366,7367,1,0,0,0,7367,761,1,0,0, - 0,7368,7366,1,0,0,0,7369,7374,5,892,0,0,7370,7371,5,868,0,0,7371, - 7373,5,892,0,0,7372,7370,1,0,0,0,7373,7376,1,0,0,0,7374,7372,1,0, - 0,0,7374,7375,1,0,0,0,7375,763,1,0,0,0,7376,7374,1,0,0,0,7377,7404, - 5,116,0,0,7378,7379,5,24,0,0,7379,7380,5,866,0,0,7380,7381,3,814, - 407,0,7381,7382,5,13,0,0,7382,7383,3,740,370,0,7383,7384,5,867,0, - 0,7384,7404,1,0,0,0,7385,7387,3,820,410,0,7386,7385,1,0,0,0,7386, - 7387,1,0,0,0,7387,7388,1,0,0,0,7388,7404,3,734,367,0,7389,7393,3, - 766,383,0,7390,7391,5,119,0,0,7391,7392,5,185,0,0,7392,7394,3,766, - 383,0,7393,7390,1,0,0,0,7393,7394,1,0,0,0,7394,7404,1,0,0,0,7395, - 7396,5,866,0,0,7396,7397,3,814,407,0,7397,7398,5,867,0,0,7398,7404, - 1,0,0,0,7399,7400,5,866,0,0,7400,7401,3,712,356,0,7401,7402,5,867, - 0,0,7402,7404,1,0,0,0,7403,7377,1,0,0,0,7403,7378,1,0,0,0,7403,7386, - 1,0,0,0,7403,7389,1,0,0,0,7403,7395,1,0,0,0,7403,7399,1,0,0,0,7404, - 765,1,0,0,0,7405,7411,7,132,0,0,7406,7408,5,866,0,0,7407,7409,3, - 722,361,0,7408,7407,1,0,0,0,7408,7409,1,0,0,0,7409,7410,1,0,0,0, - 7410,7412,5,867,0,0,7411,7406,1,0,0,0,7411,7412,1,0,0,0,7412,7420, - 1,0,0,0,7413,7414,5,295,0,0,7414,7416,5,866,0,0,7415,7417,3,722, - 361,0,7416,7415,1,0,0,0,7416,7417,1,0,0,0,7417,7418,1,0,0,0,7418, - 7420,5,867,0,0,7419,7405,1,0,0,0,7419,7413,1,0,0,0,7420,767,1,0, - 0,0,7421,7422,5,78,0,0,7422,7423,5,60,0,0,7423,769,1,0,0,0,7424, - 7425,5,78,0,0,7425,7426,5,114,0,0,7426,7427,5,60,0,0,7427,771,1, - 0,0,0,7428,7429,5,124,0,0,7429,7430,5,143,0,0,7430,773,1,0,0,0,7431, - 7454,3,776,388,0,7432,7454,3,784,392,0,7433,7454,3,786,393,0,7434, - 7441,3,806,403,0,7435,7436,5,866,0,0,7436,7442,5,867,0,0,7437,7438, - 5,866,0,0,7438,7439,3,810,405,0,7439,7440,5,867,0,0,7440,7442,1, - 0,0,0,7441,7435,1,0,0,0,7441,7437,1,0,0,0,7442,7454,1,0,0,0,7443, - 7450,3,642,321,0,7444,7445,5,866,0,0,7445,7451,5,867,0,0,7446,7447, - 5,866,0,0,7447,7448,3,810,405,0,7448,7449,5,867,0,0,7449,7451,1, - 0,0,0,7450,7444,1,0,0,0,7450,7446,1,0,0,0,7451,7454,1,0,0,0,7452, - 7454,3,808,404,0,7453,7431,1,0,0,0,7453,7432,1,0,0,0,7453,7433,1, - 0,0,0,7453,7434,1,0,0,0,7453,7443,1,0,0,0,7453,7452,1,0,0,0,7454, - 775,1,0,0,0,7455,7458,7,133,0,0,7456,7457,5,866,0,0,7457,7459,5, - 867,0,0,7458,7456,1,0,0,0,7458,7459,1,0,0,0,7459,7635,1,0,0,0,7460, - 7635,3,60,30,0,7461,7462,5,33,0,0,7462,7463,5,866,0,0,7463,7464, - 3,814,407,0,7464,7465,5,868,0,0,7465,7466,3,740,370,0,7466,7467, - 5,867,0,0,7467,7635,1,0,0,0,7468,7469,5,33,0,0,7469,7470,5,866,0, - 0,7470,7471,3,814,407,0,7471,7472,5,188,0,0,7472,7473,3,698,349, - 0,7473,7474,5,867,0,0,7474,7635,1,0,0,0,7475,7476,5,24,0,0,7476, - 7477,5,866,0,0,7477,7478,3,814,407,0,7478,7479,5,13,0,0,7479,7480, - 3,740,370,0,7480,7481,5,867,0,0,7481,7635,1,0,0,0,7482,7483,5,189, - 0,0,7483,7484,5,866,0,0,7484,7485,3,672,336,0,7485,7486,5,867,0, - 0,7486,7635,1,0,0,0,7487,7489,5,23,0,0,7488,7490,3,778,389,0,7489, - 7488,1,0,0,0,7490,7491,1,0,0,0,7491,7489,1,0,0,0,7491,7492,1,0,0, - 0,7492,7495,1,0,0,0,7493,7494,5,53,0,0,7494,7496,3,812,406,0,7495, - 7493,1,0,0,0,7495,7496,1,0,0,0,7496,7497,1,0,0,0,7497,7498,5,378, - 0,0,7498,7635,1,0,0,0,7499,7500,5,23,0,0,7500,7502,3,814,407,0,7501, - 7503,3,778,389,0,7502,7501,1,0,0,0,7503,7504,1,0,0,0,7504,7502,1, - 0,0,0,7504,7505,1,0,0,0,7505,7508,1,0,0,0,7506,7507,5,53,0,0,7507, - 7509,3,812,406,0,7508,7506,1,0,0,0,7508,7509,1,0,0,0,7509,7510,1, - 0,0,0,7510,7511,5,378,0,0,7511,7635,1,0,0,0,7512,7513,5,224,0,0, - 7513,7514,5,866,0,0,7514,7517,3,810,405,0,7515,7516,5,188,0,0,7516, - 7518,3,698,349,0,7517,7515,1,0,0,0,7517,7518,1,0,0,0,7518,7519,1, - 0,0,0,7519,7520,5,867,0,0,7520,7635,1,0,0,0,7521,7522,5,296,0,0, - 7522,7525,5,866,0,0,7523,7526,3,726,363,0,7524,7526,3,814,407,0, - 7525,7523,1,0,0,0,7525,7524,1,0,0,0,7526,7527,1,0,0,0,7527,7530, - 5,80,0,0,7528,7531,3,726,363,0,7529,7531,3,814,407,0,7530,7528,1, - 0,0,0,7530,7529,1,0,0,0,7531,7532,1,0,0,0,7532,7533,5,867,0,0,7533, - 7635,1,0,0,0,7534,7535,7,134,0,0,7535,7538,5,866,0,0,7536,7539,3, - 726,363,0,7537,7539,3,814,407,0,7538,7536,1,0,0,0,7538,7537,1,0, - 0,0,7539,7540,1,0,0,0,7540,7543,5,68,0,0,7541,7544,3,722,361,0,7542, - 7544,3,814,407,0,7543,7541,1,0,0,0,7543,7542,1,0,0,0,7544,7550,1, - 0,0,0,7545,7548,5,65,0,0,7546,7549,3,722,361,0,7547,7549,3,814,407, - 0,7548,7546,1,0,0,0,7548,7547,1,0,0,0,7549,7551,1,0,0,0,7550,7545, - 1,0,0,0,7550,7551,1,0,0,0,7551,7552,1,0,0,0,7552,7553,5,867,0,0, - 7553,7635,1,0,0,0,7554,7555,5,300,0,0,7555,7556,5,866,0,0,7556,7559, - 7,135,0,0,7557,7560,3,726,363,0,7558,7560,3,814,407,0,7559,7557, - 1,0,0,0,7559,7558,1,0,0,0,7559,7560,1,0,0,0,7560,7561,1,0,0,0,7561, - 7564,5,68,0,0,7562,7565,3,726,363,0,7563,7565,3,814,407,0,7564,7562, - 1,0,0,0,7564,7563,1,0,0,0,7565,7566,1,0,0,0,7566,7567,5,867,0,0, - 7567,7635,1,0,0,0,7568,7569,5,300,0,0,7569,7572,5,866,0,0,7570,7573, - 3,726,363,0,7571,7573,3,814,407,0,7572,7570,1,0,0,0,7572,7571,1, - 0,0,0,7573,7574,1,0,0,0,7574,7577,5,68,0,0,7575,7578,3,726,363,0, - 7576,7578,3,814,407,0,7577,7575,1,0,0,0,7577,7576,1,0,0,0,7578,7579, - 1,0,0,0,7579,7580,5,867,0,0,7580,7635,1,0,0,0,7581,7582,5,840,0, - 0,7582,7585,5,866,0,0,7583,7586,3,726,363,0,7584,7586,3,814,407, - 0,7585,7583,1,0,0,0,7585,7584,1,0,0,0,7586,7593,1,0,0,0,7587,7588, - 5,13,0,0,7588,7589,7,136,0,0,7589,7590,5,866,0,0,7590,7591,3,722, - 361,0,7591,7592,5,867,0,0,7592,7594,1,0,0,0,7593,7587,1,0,0,0,7593, - 7594,1,0,0,0,7594,7596,1,0,0,0,7595,7597,3,780,390,0,7596,7595,1, - 0,0,0,7596,7597,1,0,0,0,7597,7598,1,0,0,0,7598,7599,5,867,0,0,7599, - 7635,1,0,0,0,7600,7601,5,293,0,0,7601,7602,5,866,0,0,7602,7603,3, - 70,35,0,7603,7606,5,68,0,0,7604,7607,3,726,363,0,7605,7607,3,814, - 407,0,7606,7604,1,0,0,0,7606,7605,1,0,0,0,7607,7608,1,0,0,0,7608, - 7609,5,867,0,0,7609,7635,1,0,0,0,7610,7611,5,827,0,0,7611,7612,5, - 866,0,0,7612,7613,7,137,0,0,7613,7614,5,868,0,0,7614,7615,3,726, - 363,0,7615,7616,5,867,0,0,7616,7635,1,0,0,0,7617,7618,5,254,0,0, - 7618,7619,5,866,0,0,7619,7620,3,814,407,0,7620,7621,5,868,0,0,7621, - 7624,3,814,407,0,7622,7623,5,579,0,0,7623,7625,3,740,370,0,7624, - 7622,1,0,0,0,7624,7625,1,0,0,0,7625,7627,1,0,0,0,7626,7628,3,294, - 147,0,7627,7626,1,0,0,0,7627,7628,1,0,0,0,7628,7630,1,0,0,0,7629, - 7631,3,296,148,0,7630,7629,1,0,0,0,7630,7631,1,0,0,0,7631,7632,1, - 0,0,0,7632,7633,5,867,0,0,7633,7635,1,0,0,0,7634,7455,1,0,0,0,7634, - 7460,1,0,0,0,7634,7461,1,0,0,0,7634,7468,1,0,0,0,7634,7475,1,0,0, - 0,7634,7482,1,0,0,0,7634,7487,1,0,0,0,7634,7499,1,0,0,0,7634,7512, - 1,0,0,0,7634,7521,1,0,0,0,7634,7534,1,0,0,0,7634,7554,1,0,0,0,7634, - 7568,1,0,0,0,7634,7581,1,0,0,0,7634,7600,1,0,0,0,7634,7610,1,0,0, - 0,7634,7617,1,0,0,0,7635,777,1,0,0,0,7636,7637,5,191,0,0,7637,7638, - 3,812,406,0,7638,7639,5,175,0,0,7639,7640,3,812,406,0,7640,779,1, - 0,0,0,7641,7642,5,448,0,0,7642,7647,3,782,391,0,7643,7644,5,868, - 0,0,7644,7646,3,782,391,0,7645,7643,1,0,0,0,7646,7649,1,0,0,0,7647, - 7645,1,0,0,0,7647,7648,1,0,0,0,7648,7656,1,0,0,0,7649,7647,1,0,0, - 0,7650,7651,5,448,0,0,7651,7652,3,722,361,0,7652,7653,5,854,0,0, - 7653,7654,3,722,361,0,7654,7656,1,0,0,0,7655,7641,1,0,0,0,7655,7650, - 1,0,0,0,7656,781,1,0,0,0,7657,7659,3,722,361,0,7658,7660,7,138,0, - 0,7659,7658,1,0,0,0,7659,7660,1,0,0,0,7660,783,1,0,0,0,7661,7662, - 7,139,0,0,7662,7664,5,866,0,0,7663,7665,7,45,0,0,7664,7663,1,0,0, - 0,7664,7665,1,0,0,0,7665,7666,1,0,0,0,7666,7667,3,812,406,0,7667, - 7669,5,867,0,0,7668,7670,3,788,394,0,7669,7668,1,0,0,0,7669,7670, - 1,0,0,0,7670,7721,1,0,0,0,7671,7672,5,262,0,0,7672,7680,5,866,0, - 0,7673,7681,5,850,0,0,7674,7676,5,7,0,0,7675,7674,1,0,0,0,7675,7676, - 1,0,0,0,7676,7677,1,0,0,0,7677,7681,3,812,406,0,7678,7679,5,49,0, - 0,7679,7681,3,810,405,0,7680,7673,1,0,0,0,7680,7675,1,0,0,0,7680, - 7678,1,0,0,0,7681,7682,1,0,0,0,7682,7684,5,867,0,0,7683,7685,3,788, - 394,0,7684,7683,1,0,0,0,7684,7685,1,0,0,0,7685,7721,1,0,0,0,7686, - 7687,7,140,0,0,7687,7689,5,866,0,0,7688,7690,5,7,0,0,7689,7688,1, - 0,0,0,7689,7690,1,0,0,0,7690,7691,1,0,0,0,7691,7692,3,812,406,0, - 7692,7694,5,867,0,0,7693,7695,3,788,394,0,7694,7693,1,0,0,0,7694, - 7695,1,0,0,0,7695,7721,1,0,0,0,7696,7697,5,266,0,0,7697,7699,5,866, - 0,0,7698,7700,5,49,0,0,7699,7698,1,0,0,0,7699,7700,1,0,0,0,7700, - 7701,1,0,0,0,7701,7712,3,810,405,0,7702,7703,5,125,0,0,7703,7704, - 5,20,0,0,7704,7709,3,260,130,0,7705,7706,5,868,0,0,7706,7708,3,260, - 130,0,7707,7705,1,0,0,0,7708,7711,1,0,0,0,7709,7707,1,0,0,0,7709, - 7710,1,0,0,0,7710,7713,1,0,0,0,7711,7709,1,0,0,0,7712,7702,1,0,0, - 0,7712,7713,1,0,0,0,7713,7716,1,0,0,0,7714,7715,5,156,0,0,7715,7717, - 5,882,0,0,7716,7714,1,0,0,0,7716,7717,1,0,0,0,7717,7718,1,0,0,0, - 7718,7719,5,867,0,0,7719,7721,1,0,0,0,7720,7661,1,0,0,0,7720,7671, - 1,0,0,0,7720,7686,1,0,0,0,7720,7696,1,0,0,0,7721,785,1,0,0,0,7722, - 7723,7,141,0,0,7723,7724,5,866,0,0,7724,7727,3,814,407,0,7725,7726, - 5,868,0,0,7726,7728,3,722,361,0,7727,7725,1,0,0,0,7727,7728,1,0, - 0,0,7728,7731,1,0,0,0,7729,7730,5,868,0,0,7730,7732,3,722,361,0, - 7731,7729,1,0,0,0,7731,7732,1,0,0,0,7732,7733,1,0,0,0,7733,7734, - 5,867,0,0,7734,7735,3,788,394,0,7735,7761,1,0,0,0,7736,7737,7,142, - 0,0,7737,7738,5,866,0,0,7738,7739,3,814,407,0,7739,7740,5,867,0, - 0,7740,7741,3,788,394,0,7741,7761,1,0,0,0,7742,7743,7,143,0,0,7743, - 7744,5,866,0,0,7744,7745,5,867,0,0,7745,7761,3,788,394,0,7746,7747, - 5,273,0,0,7747,7748,5,866,0,0,7748,7749,3,814,407,0,7749,7750,5, - 868,0,0,7750,7751,3,722,361,0,7751,7752,5,867,0,0,7752,7753,3,788, - 394,0,7753,7761,1,0,0,0,7754,7755,5,272,0,0,7755,7756,5,866,0,0, - 7756,7757,3,722,361,0,7757,7758,5,867,0,0,7758,7759,3,788,394,0, - 7759,7761,1,0,0,0,7760,7722,1,0,0,0,7760,7736,1,0,0,0,7760,7742, - 1,0,0,0,7760,7746,1,0,0,0,7760,7754,1,0,0,0,7761,787,1,0,0,0,7762, - 7768,5,129,0,0,7763,7764,5,866,0,0,7764,7765,3,790,395,0,7765,7766, - 5,867,0,0,7766,7769,1,0,0,0,7767,7769,3,792,396,0,7768,7763,1,0, - 0,0,7768,7767,1,0,0,0,7769,789,1,0,0,0,7770,7772,3,792,396,0,7771, - 7770,1,0,0,0,7771,7772,1,0,0,0,7772,7774,1,0,0,0,7773,7775,3,804, - 402,0,7774,7773,1,0,0,0,7774,7775,1,0,0,0,7775,7777,1,0,0,0,7776, - 7778,3,258,129,0,7777,7776,1,0,0,0,7777,7778,1,0,0,0,7778,7780,1, - 0,0,0,7779,7781,3,794,397,0,7780,7779,1,0,0,0,7780,7781,1,0,0,0, - 7781,791,1,0,0,0,7782,7783,3,716,358,0,7783,793,1,0,0,0,7784,7785, - 3,796,398,0,7785,7786,3,798,399,0,7786,795,1,0,0,0,7787,7788,7,144, - 0,0,7788,797,1,0,0,0,7789,7792,3,802,401,0,7790,7792,3,800,400,0, - 7791,7789,1,0,0,0,7791,7790,1,0,0,0,7792,799,1,0,0,0,7793,7794,5, - 17,0,0,7794,7795,3,802,401,0,7795,7796,5,11,0,0,7796,7797,3,802, - 401,0,7797,801,1,0,0,0,7798,7799,5,36,0,0,7799,7806,5,586,0,0,7800, - 7801,5,669,0,0,7801,7806,7,145,0,0,7802,7803,3,814,407,0,7803,7804, - 7,145,0,0,7804,7806,1,0,0,0,7805,7798,1,0,0,0,7805,7800,1,0,0,0, - 7805,7802,1,0,0,0,7806,803,1,0,0,0,7807,7808,5,130,0,0,7808,7809, - 5,20,0,0,7809,7814,3,814,407,0,7810,7811,5,868,0,0,7811,7813,3,814, - 407,0,7812,7810,1,0,0,0,7813,7816,1,0,0,0,7814,7812,1,0,0,0,7814, - 7815,1,0,0,0,7815,805,1,0,0,0,7816,7814,1,0,0,0,7817,7842,3,846, - 423,0,7818,7842,5,757,0,0,7819,7842,5,289,0,0,7820,7842,5,285,0, - 0,7821,7842,5,286,0,0,7822,7842,5,287,0,0,7823,7842,5,290,0,0,7824, - 7842,5,291,0,0,7825,7842,5,292,0,0,7826,7842,5,78,0,0,7827,7842, - 5,86,0,0,7828,7842,5,288,0,0,7829,7842,5,294,0,0,7830,7842,5,488, - 0,0,7831,7842,5,295,0,0,7832,7842,5,142,0,0,7833,7842,5,143,0,0, - 7834,7842,5,297,0,0,7835,7842,5,298,0,0,7836,7842,5,299,0,0,7837, - 7842,5,300,0,0,7838,7842,5,301,0,0,7839,7842,5,302,0,0,7840,7842, - 5,303,0,0,7841,7817,1,0,0,0,7841,7818,1,0,0,0,7841,7819,1,0,0,0, - 7841,7820,1,0,0,0,7841,7821,1,0,0,0,7841,7822,1,0,0,0,7841,7823, - 1,0,0,0,7841,7824,1,0,0,0,7841,7825,1,0,0,0,7841,7826,1,0,0,0,7841, - 7827,1,0,0,0,7841,7828,1,0,0,0,7841,7829,1,0,0,0,7841,7830,1,0,0, - 0,7841,7831,1,0,0,0,7841,7832,1,0,0,0,7841,7833,1,0,0,0,7841,7834, - 1,0,0,0,7841,7835,1,0,0,0,7841,7836,1,0,0,0,7841,7837,1,0,0,0,7841, - 7838,1,0,0,0,7841,7839,1,0,0,0,7841,7840,1,0,0,0,7842,807,1,0,0, - 0,7843,7844,7,146,0,0,7844,7845,5,866,0,0,7845,7846,3,812,406,0, - 7846,7847,5,867,0,0,7847,809,1,0,0,0,7848,7853,3,812,406,0,7849, - 7850,5,868,0,0,7850,7852,3,812,406,0,7851,7849,1,0,0,0,7852,7855, - 1,0,0,0,7853,7851,1,0,0,0,7853,7854,1,0,0,0,7854,811,1,0,0,0,7855, - 7853,1,0,0,0,7856,7860,3,734,367,0,7857,7860,3,774,387,0,7858,7860, - 3,814,407,0,7859,7856,1,0,0,0,7859,7857,1,0,0,0,7859,7858,1,0,0, - 0,7860,813,1,0,0,0,7861,7862,6,407,-1,0,7862,7863,7,147,0,0,7863, - 7873,3,814,407,4,7864,7865,3,816,408,0,7865,7867,5,89,0,0,7866,7868, - 5,114,0,0,7867,7866,1,0,0,0,7867,7868,1,0,0,0,7868,7869,1,0,0,0, - 7869,7870,7,148,0,0,7870,7873,1,0,0,0,7871,7873,3,816,408,0,7872, - 7861,1,0,0,0,7872,7864,1,0,0,0,7872,7871,1,0,0,0,7873,7880,1,0,0, - 0,7874,7875,10,3,0,0,7875,7876,3,826,413,0,7876,7877,3,814,407,4, - 7877,7879,1,0,0,0,7878,7874,1,0,0,0,7879,7882,1,0,0,0,7880,7878, - 1,0,0,0,7880,7881,1,0,0,0,7881,815,1,0,0,0,7882,7880,1,0,0,0,7883, - 7884,6,408,-1,0,7884,7885,3,818,409,0,7885,7949,1,0,0,0,7886,7888, - 10,6,0,0,7887,7889,5,114,0,0,7888,7887,1,0,0,0,7888,7889,1,0,0,0, - 7889,7890,1,0,0,0,7890,7891,5,17,0,0,7891,7892,3,816,408,0,7892, - 7893,5,11,0,0,7893,7894,3,816,408,7,7894,7948,1,0,0,0,7895,7896, - 10,5,0,0,7896,7897,5,604,0,0,7897,7898,5,99,0,0,7898,7948,3,816, - 408,6,7899,7901,10,3,0,0,7900,7902,5,114,0,0,7901,7900,1,0,0,0,7901, - 7902,1,0,0,0,7902,7903,1,0,0,0,7903,7904,7,149,0,0,7904,7948,3,816, - 408,4,7905,7907,10,9,0,0,7906,7908,5,114,0,0,7907,7906,1,0,0,0,7907, - 7908,1,0,0,0,7908,7909,1,0,0,0,7909,7910,5,80,0,0,7910,7913,5,866, - 0,0,7911,7914,3,210,105,0,7912,7914,3,750,375,0,7913,7911,1,0,0, - 0,7913,7912,1,0,0,0,7914,7915,1,0,0,0,7915,7916,5,867,0,0,7916,7948, - 1,0,0,0,7917,7918,10,8,0,0,7918,7919,5,89,0,0,7919,7948,3,732,366, - 0,7920,7921,10,7,0,0,7921,7928,3,822,411,0,7922,7923,7,150,0,0,7923, - 7924,5,866,0,0,7924,7925,3,210,105,0,7925,7926,5,867,0,0,7926,7929, - 1,0,0,0,7927,7929,3,816,408,0,7928,7922,1,0,0,0,7928,7927,1,0,0, - 0,7929,7948,1,0,0,0,7930,7932,10,4,0,0,7931,7933,5,114,0,0,7932, - 7931,1,0,0,0,7932,7933,1,0,0,0,7933,7934,1,0,0,0,7934,7935,5,99, - 0,0,7935,7938,3,816,408,0,7936,7937,5,384,0,0,7937,7939,5,882,0, - 0,7938,7936,1,0,0,0,7938,7939,1,0,0,0,7939,7948,1,0,0,0,7940,7941, - 10,2,0,0,7941,7942,5,485,0,0,7942,7943,5,510,0,0,7943,7944,5,866, - 0,0,7944,7945,3,816,408,0,7945,7946,5,867,0,0,7946,7948,1,0,0,0, - 7947,7886,1,0,0,0,7947,7895,1,0,0,0,7947,7899,1,0,0,0,7947,7905, - 1,0,0,0,7947,7917,1,0,0,0,7947,7920,1,0,0,0,7947,7930,1,0,0,0,7947, - 7940,1,0,0,0,7948,7951,1,0,0,0,7949,7947,1,0,0,0,7949,7950,1,0,0, - 0,7950,817,1,0,0,0,7951,7949,1,0,0,0,7952,7953,6,409,-1,0,7953,8001, - 3,734,367,0,7954,8001,3,774,387,0,7955,8001,3,696,348,0,7956,7957, - 3,820,410,0,7957,7958,3,818,409,12,7958,8001,1,0,0,0,7959,7960,5, - 228,0,0,7960,8001,3,818,409,11,7961,7962,5,892,0,0,7962,7963,5,841, - 0,0,7963,8001,3,818,409,10,7964,7965,5,866,0,0,7965,7970,3,814,407, - 0,7966,7967,5,868,0,0,7967,7969,3,814,407,0,7968,7966,1,0,0,0,7969, - 7972,1,0,0,0,7970,7968,1,0,0,0,7970,7971,1,0,0,0,7971,7973,1,0,0, - 0,7972,7970,1,0,0,0,7973,7974,5,867,0,0,7974,8001,1,0,0,0,7975,7976, - 5,586,0,0,7976,7977,5,866,0,0,7977,7980,3,814,407,0,7978,7979,5, - 868,0,0,7979,7981,3,814,407,0,7980,7978,1,0,0,0,7981,7982,1,0,0, - 0,7982,7980,1,0,0,0,7982,7983,1,0,0,0,7983,7984,1,0,0,0,7984,7985, - 5,867,0,0,7985,8001,1,0,0,0,7986,7987,5,60,0,0,7987,7988,5,866,0, - 0,7988,7989,3,210,105,0,7989,7990,5,867,0,0,7990,8001,1,0,0,0,7991, - 7992,5,866,0,0,7992,7993,3,210,105,0,7993,7994,5,867,0,0,7994,8001, - 1,0,0,0,7995,7996,5,87,0,0,7996,7997,3,814,407,0,7997,7998,3,70, - 35,0,7998,8001,1,0,0,0,7999,8001,3,672,336,0,8000,7952,1,0,0,0,8000, - 7954,1,0,0,0,8000,7955,1,0,0,0,8000,7956,1,0,0,0,8000,7959,1,0,0, - 0,8000,7961,1,0,0,0,8000,7964,1,0,0,0,8000,7975,1,0,0,0,8000,7986, - 1,0,0,0,8000,7991,1,0,0,0,8000,7995,1,0,0,0,8000,7999,1,0,0,0,8001, - 8019,1,0,0,0,8002,8003,10,4,0,0,8003,8004,3,832,416,0,8004,8005, - 3,818,409,5,8005,8018,1,0,0,0,8006,8007,10,3,0,0,8007,8008,3,828, - 414,0,8008,8009,3,818,409,4,8009,8018,1,0,0,0,8010,8011,10,2,0,0, - 8011,8012,3,830,415,0,8012,8013,3,818,409,3,8013,8018,1,0,0,0,8014, - 8015,10,14,0,0,8015,8016,5,28,0,0,8016,8018,3,700,350,0,8017,8002, - 1,0,0,0,8017,8006,1,0,0,0,8017,8010,1,0,0,0,8017,8014,1,0,0,0,8018, - 8021,1,0,0,0,8019,8017,1,0,0,0,8019,8020,1,0,0,0,8020,819,1,0,0, - 0,8021,8019,1,0,0,0,8022,8023,7,151,0,0,8023,821,1,0,0,0,8024,8025, - 5,859,0,0,8025,8033,5,858,0,0,8026,8027,5,860,0,0,8027,8033,5,857, - 0,0,8028,8029,5,859,0,0,8029,8030,5,857,0,0,8030,8033,5,858,0,0, - 8031,8033,3,824,412,0,8032,8024,1,0,0,0,8032,8026,1,0,0,0,8032,8028, - 1,0,0,0,8032,8031,1,0,0,0,8033,823,1,0,0,0,8034,8035,5,859,0,0,8035, - 8042,5,857,0,0,8036,8037,5,858,0,0,8037,8042,5,857,0,0,8038,8042, - 5,857,0,0,8039,8042,5,858,0,0,8040,8042,5,859,0,0,8041,8034,1,0, - 0,0,8041,8036,1,0,0,0,8041,8038,1,0,0,0,8041,8039,1,0,0,0,8041,8040, - 1,0,0,0,8042,825,1,0,0,0,8043,8051,5,11,0,0,8044,8045,5,863,0,0, - 8045,8051,5,863,0,0,8046,8051,5,196,0,0,8047,8051,5,124,0,0,8048, - 8049,5,862,0,0,8049,8051,5,862,0,0,8050,8043,1,0,0,0,8050,8044,1, - 0,0,0,8050,8046,1,0,0,0,8050,8047,1,0,0,0,8050,8048,1,0,0,0,8051, - 827,1,0,0,0,8052,8053,5,859,0,0,8053,8060,5,859,0,0,8054,8055,5, - 858,0,0,8055,8060,5,858,0,0,8056,8060,5,863,0,0,8057,8060,5,864, - 0,0,8058,8060,5,862,0,0,8059,8052,1,0,0,0,8059,8054,1,0,0,0,8059, - 8056,1,0,0,0,8059,8057,1,0,0,0,8059,8058,1,0,0,0,8060,829,1,0,0, - 0,8061,8062,7,152,0,0,8062,831,1,0,0,0,8063,8064,5,854,0,0,8064, - 8069,5,858,0,0,8065,8066,5,854,0,0,8066,8067,5,858,0,0,8067,8069, - 5,858,0,0,8068,8063,1,0,0,0,8068,8065,1,0,0,0,8069,833,1,0,0,0,8070, - 8071,7,153,0,0,8071,835,1,0,0,0,8072,8073,7,154,0,0,8073,837,1,0, - 0,0,8074,8075,7,155,0,0,8075,839,1,0,0,0,8076,8077,7,156,0,0,8077, - 841,1,0,0,0,8078,8079,7,157,0,0,8079,843,1,0,0,0,8080,8081,7,158, - 0,0,8081,845,1,0,0,0,8082,8083,7,159,0,0,8083,847,1,0,0,0,1162,851, - 858,861,870,914,933,944,960,965,977,1012,1022,1027,1033,1038,1042, - 1051,1054,1057,1061,1068,1071,1076,1084,1089,1094,1097,1099,1111, - 1114,1118,1121,1125,1128,1132,1135,1138,1142,1145,1149,1155,1159, - 1164,1170,1177,1184,1187,1191,1196,1202,1211,1216,1220,1224,1235, - 1253,1260,1264,1268,1272,1277,1280,1283,1286,1289,1295,1299,1309, - 1313,1317,1323,1328,1331,1334,1336,1340,1347,1351,1354,1359,1363, - 1366,1370,1373,1377,1390,1393,1397,1400,1404,1407,1411,1414,1418, - 1421,1424,1428,1431,1435,1441,1444,1448,1460,1466,1477,1482,1490, - 1494,1499,1502,1507,1517,1522,1527,1533,1538,1542,1544,1547,1551, - 1555,1558,1562,1566,1570,1576,1579,1586,1591,1597,1604,1610,1618, - 1621,1628,1631,1633,1639,1645,1662,1669,1676,1688,1693,1696,1699, - 1712,1725,1730,1746,1754,1764,1767,1773,1778,1781,1787,1791,1796, - 1802,1806,1810,1813,1816,1822,1826,1831,1842,1845,1852,1855,1859, - 1865,1877,1880,1885,1898,1905,1911,1916,1920,1923,1931,1939,1941, - 1951,1955,1958,1962,1967,1972,1977,1981,1985,1989,1993,1997,2001, - 2006,2011,2016,2022,2027,2032,2037,2042,2047,2053,2058,2063,2068, - 2073,2078,2083,2088,2095,2100,2105,2110,2114,2119,2127,2132,2138, - 2150,2157,2159,2167,2172,2175,2183,2189,2193,2206,2218,2220,2223, - 2231,2237,2243,2256,2263,2272,2277,2288,2297,2302,2314,2321,2330, - 2335,2347,2354,2363,2368,2375,2384,2389,2391,2396,2404,2413,2417, - 2420,2424,2429,2435,2441,2446,2451,2456,2461,2464,2469,2474,2484, - 2488,2495,2500,2503,2508,2511,2515,2519,2527,2546,2549,2552,2556, - 2566,2579,2592,2595,2601,2604,2608,2617,2620,2623,2628,2632,2635, - 2639,2643,2646,2650,2653,2657,2660,2666,2669,2674,2682,2688,2692, - 2696,2701,2706,2713,2717,2728,2736,2739,2745,2751,2754,2760,2766, - 2768,2773,2779,2785,2787,2791,2794,2797,2803,2809,2811,2816,2823, - 2832,2835,2839,2844,2854,2863,2871,2874,2882,2885,2892,2897,2905, - 2921,2926,2933,2952,2958,2968,2980,2987,2994,3009,3022,3028,3034, - 3040,3046,3052,3058,3063,3070,3077,3084,3089,3092,3094,3103,3110, - 3117,3124,3133,3139,3143,3147,3151,3157,3160,3165,3172,3179,3183, - 3188,3198,3206,3212,3221,3230,3239,3242,3246,3255,3259,3262,3265, - 3271,3274,3277,3281,3284,3287,3290,3301,3304,3309,3315,3320,3325, - 3328,3332,3337,3340,3345,3355,3360,3366,3368,3374,3376,3382,3390, - 3395,3403,3406,3411,3414,3419,3427,3433,3437,3439,3445,3453,3458, - 3466,3469,3474,3477,3481,3484,3487,3491,3494,3502,3508,3512,3518, - 3523,3527,3529,3535,3539,3542,3545,3548,3554,3559,3562,3565,3568, - 3571,3573,3576,3580,3583,3586,3594,3600,3603,3605,3614,3619,3626, - 3629,3632,3636,3640,3646,3650,3657,3661,3664,3667,3672,3679,3689, - 3698,3707,3717,3720,3724,3730,3734,3737,3740,3745,3748,3755,3759, - 3762,3766,3770,3773,3776,3781,3787,3791,3801,3807,3811,3817,3821, - 3827,3830,3842,3846,3850,3858,3862,3876,3881,3884,3888,3891,3899, - 3904,3907,3910,3914,3917,3926,3931,3940,3945,3952,3959,3967,3973, - 3981,3984,3987,3994,3997,4000,4004,4008,4014,4021,4031,4035,4044, - 4047,4051,4057,4065,4070,4074,4080,4086,4089,4091,4095,4104,4114, - 4120,4125,4129,4132,4135,4138,4141,4144,4147,4151,4155,4163,4167, - 4170,4172,4185,4188,4195,4205,4208,4213,4215,4219,4227,4233,4242, - 4255,4259,4265,4271,4274,4278,4281,4283,4295,4299,4307,4319,4325, - 4327,4333,4335,4337,4343,4351,4359,4363,4367,4376,4381,4401,4406, - 4412,4419,4424,4433,4436,4440,4444,4448,4451,4454,4457,4461,4465, - 4468,4471,4474,4481,4485,4500,4513,4521,4531,4535,4538,4544,4547, - 4550,4559,4568,4578,4582,4592,4596,4607,4611,4620,4629,4632,4636, - 4641,4645,4654,4657,4660,4667,4673,4679,4705,4708,4711,4730,4732, - 4755,4758,4761,4780,4782,4796,4809,4846,4851,4886,4900,4907,4911, - 4917,4925,4927,4938,4948,4955,4961,4969,4974,4982,4990,4998,5006, - 5012,5017,5022,5027,5033,5035,5046,5051,5058,5060,5074,5080,5085, - 5090,5096,5103,5111,5119,5124,5130,5133,5141,5148,5157,5160,5177, - 5185,5193,5197,5204,5210,5218,5223,5230,5238,5245,5250,5253,5255, - 5261,5263,5267,5269,5274,5281,5286,5290,5295,5299,5305,5311,5316, - 5319,5321,5327,5329,5333,5335,5340,5345,5352,5361,5366,5375,5379, - 5385,5390,5393,5395,5401,5403,5406,5413,5415,5420,5427,5436,5442, - 5444,5451,5454,5466,5472,5480,5483,5487,5490,5494,5496,5507,5510, - 5514,5517,5520,5527,5539,5542,5549,5555,5565,5570,5577,5582,5588, - 5592,5596,5604,5608,5612,5618,5620,5632,5637,5643,5649,5653,5658, - 5660,5684,5688,5691,5700,5704,5713,5717,5721,5727,5729,5738,5748, - 5775,5779,5784,5791,5794,5800,5810,5820,5830,5836,5845,5851,5858, - 5860,5868,5874,5878,5895,5905,5909,5913,5923,5928,6000,6018,6026, - 6032,6044,6048,6059,6063,6072,6080,6087,6091,6098,6103,6106,6109, - 6120,6129,6138,6141,6155,6173,6186,6189,6193,6196,6198,6205,6212, - 6216,6223,6230,6233,6249,6252,6262,6266,6272,6275,6278,6283,6287, - 6290,6297,6300,6306,6342,6345,6357,6360,6376,6378,6382,6389,6393, - 6400,6403,6412,6415,6420,6426,6428,6434,6438,6444,6447,6450,6463, - 6466,6472,6475,6483,6491,6497,6500,6504,6518,6530,6538,6542,6549, - 6556,6561,6574,6583,6591,6596,6599,6604,6607,6619,6624,6637,6639, - 6644,6648,6651,6653,6660,6667,6670,6673,6679,6683,6689,6697,6706, - 6719,6724,6732,6735,6740,6745,6753,6756,6764,6768,6775,6781,6784, - 6788,6801,6807,6819,6822,6831,6836,6857,6873,6883,6888,6893,6895, - 6898,6902,6904,6911,6917,6919,6922,6926,6929,6942,6952,6955,6958, - 6971,6977,6980,6988,6995,7015,7022,7024,7031,7033,7037,7044,7050, - 7061,7067,7073,7076,7080,7085,7088,7092,7096,7098,7103,7108,7121, - 7124,7128,7131,7134,7139,7144,7150,7153,7158,7161,7166,7169,7173, - 7178,7183,7188,7193,7196,7201,7206,7211,7217,7222,7227,7232,7236, - 7239,7244,7248,7252,7260,7267,7271,7276,7281,7285,7287,7290,7306, - 7316,7326,7335,7344,7351,7358,7366,7374,7386,7393,7403,7408,7411, - 7416,7419,7441,7450,7453,7458,7491,7495,7504,7508,7517,7525,7530, - 7538,7543,7548,7550,7559,7564,7572,7577,7585,7593,7596,7606,7624, - 7627,7630,7634,7647,7655,7659,7664,7669,7675,7680,7684,7689,7694, - 7699,7709,7712,7716,7720,7727,7731,7760,7768,7771,7774,7777,7780, - 7791,7805,7814,7841,7853,7859,7867,7872,7880,7888,7901,7907,7913, - 7928,7932,7938,7947,7949,7970,7982,8000,8017,8019,8032,8041,8050, - 8059,8068 + 824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854, + 0,160,2,0,39,39,152,152,2,0,508,508,514,514,3,0,69,69,161,161,182, + 182,3,0,42,42,357,357,430,430,4,0,42,42,389,389,505,505,595,595, + 4,0,208,208,210,210,216,216,649,649,2,0,494,494,882,882,2,0,79,79, + 143,143,2,0,16,16,306,306,3,0,44,44,86,86,185,185,2,0,406,406,538, + 538,3,0,486,486,661,661,670,670,2,0,364,364,436,436,2,0,325,325, + 450,450,2,0,42,42,871,872,2,0,37,37,678,678,2,0,323,323,418,418, + 2,0,435,435,686,686,3,0,80,80,85,85,126,126,2,0,82,82,92,92,2,0, + 69,69,161,161,3,0,42,42,374,374,403,403,3,0,42,42,370,370,802,802, + 2,0,648,648,685,685,3,0,408,408,526,526,597,597,2,0,329,329,522, + 522,1,0,871,872,2,0,882,882,889,889,2,0,82,82,360,360,2,0,523,523, + 882,882,2,0,524,524,882,882,3,0,402,402,445,445,502,502,7,0,42,42, + 342,342,345,345,374,374,403,403,554,554,889,889,2,0,494,494,506, + 506,1,0,872,873,2,0,6,6,51,51,2,0,5,5,81,81,2,0,27,27,31,31,4,0, + 42,42,357,357,430,430,434,434,2,0,368,368,375,375,2,0,369,369,425, + 425,2,0,13,13,176,176,2,0,194,194,690,690,2,0,22,22,146,146,3,0, + 43,43,76,76,107,107,2,0,7,7,49,49,2,0,107,107,347,347,2,0,337,337, + 398,398,2,0,102,102,587,587,2,0,43,43,107,107,3,0,59,59,181,181, + 828,828,2,0,185,185,594,594,2,0,159,159,503,503,4,0,402,402,445, + 445,501,501,542,542,2,0,402,402,501,501,2,0,14,14,45,45,3,0,66,66, + 79,79,187,187,2,0,35,35,84,84,2,0,98,98,150,150,2,0,7,7,49,50,1, + 0,637,638,2,0,173,173,752,752,2,0,413,413,593,593,2,0,228,228,453, + 453,2,0,563,563,598,598,8,0,108,108,455,455,459,460,462,462,464, + 464,467,476,499,499,557,557,6,0,456,458,461,461,463,463,465,465, + 477,477,558,558,7,0,109,109,411,411,416,416,454,454,466,466,573, + 573,617,617,2,0,116,116,882,882,2,0,118,119,507,507,7,0,499,499, + 557,557,606,609,611,611,619,619,622,628,630,632,6,0,558,558,610, + 610,612,612,614,616,618,618,620,620,7,0,412,412,416,416,573,573, + 613,613,617,617,621,621,629,629,3,0,70,70,118,119,507,507,2,0,438, + 438,639,639,2,0,633,633,635,635,2,0,317,317,640,640,2,0,91,91,577, + 577,2,0,51,51,362,362,3,0,32,32,61,61,180,180,2,0,15,15,340,340, + 2,0,678,678,835,835,3,0,132,132,173,173,409,409,3,0,6,6,51,51,492, + 492,3,0,13,13,20,20,188,188,2,0,42,42,122,122,2,0,104,104,183,183, + 1,0,873,874,2,0,333,333,598,598,2,0,40,40,684,684,2,0,392,392,549, + 549,2,0,115,115,450,450,3,0,413,413,531,531,893,894,2,0,841,841, + 857,857,2,0,318,318,559,559,2,0,68,68,80,80,3,0,132,132,178,178, + 385,385,2,0,493,493,645,645,2,0,383,383,688,688,3,0,82,82,93,93, + 426,426,4,0,413,413,450,450,531,532,593,593,2,0,645,645,683,683, + 2,0,349,349,548,548,6,0,228,228,380,380,382,382,410,410,556,556, + 599,599,2,0,45,46,62,62,3,0,442,442,663,663,666,666,10,0,332,332, + 339,339,351,353,359,359,487,487,495,495,650,650,657,657,822,822, + 832,832,2,0,36,36,170,170,2,0,117,117,831,831,11,0,332,332,339,339, + 351,353,359,359,487,487,495,495,578,578,650,650,657,657,822,822, + 832,832,2,0,870,870,891,892,1,0,892,893,2,0,348,348,797,808,3,0, + 871,874,883,883,885,885,2,0,63,63,179,179,2,0,116,116,886,886,5, + 0,26,26,224,226,233,233,235,238,498,498,2,0,26,26,224,224,2,0,26, + 26,224,225,1,0,198,209,3,0,184,184,197,197,596,596,2,0,213,218,403, + 403,6,0,219,219,230,230,232,232,234,234,241,241,321,322,4,0,220, + 223,228,229,231,231,319,319,2,0,155,155,239,239,2,0,442,442,813, + 821,2,0,228,228,498,498,5,0,202,202,208,208,219,220,222,222,442, + 442,1,0,216,217,2,0,184,184,596,596,2,0,202,202,208,208,2,0,189, + 189,682,682,2,0,287,288,294,294,3,0,152,152,285,288,303,303,1,0, + 297,298,3,0,18,18,96,96,177,177,2,0,224,224,228,228,2,0,219,220, + 222,222,3,0,14,14,45,45,830,830,3,0,258,258,270,271,281,281,3,0, + 259,261,277,280,282,284,2,0,267,267,269,269,2,0,265,265,268,268, + 2,0,263,264,274,276,2,0,134,134,587,587,2,0,405,405,539,539,2,0, + 512,512,529,529,2,0,114,114,860,860,3,0,63,63,179,179,674,674,2, + 0,139,139,151,151,3,0,7,7,309,309,602,602,3,0,114,114,853,854,860, + 861,1,0,850,856,2,0,228,228,756,796,1,0,809,812,5,0,717,718,734, + 736,743,743,749,750,752,752,1,0,696,703,3,0,219,223,236,236,239, + 239,75,0,12,12,15,15,19,19,30,30,36,37,42,42,48,48,55,55,57,57,59, + 59,74,74,95,95,117,117,122,122,125,125,131,131,160,160,170,170,241, + 241,255,262,266,266,270,271,277,284,304,309,311,329,331,343,345, + 376,378,393,395,400,402,404,406,410,413,415,417,426,428,428,430, + 434,436,454,456,463,465,473,475,476,478,498,500,506,508,510,512, + 522,525,530,533,538,540,542,544,554,556,562,565,572,575,575,577, + 605,633,647,649,665,667,674,676,685,687,688,690,695,704,704,706, + 707,709,712,714,716,719,721,726,727,729,733,737,738,740,742,744, + 744,746,748,751,751,753,755,802,802,822,822,825,825,832,833,838, + 838,24,0,39,39,98,98,150,150,152,152,219,221,223,223,253,254,262, + 265,267,269,272,276,296,296,435,435,686,686,696,703,746,746,813, + 813,816,821,823,824,826,827,829,831,834,834,836,836,840,840,856, + 856,9507,0,859,1,0,0,0,2,869,1,0,0,0,4,878,1,0,0,0,6,880,1,0,0,0, + 8,922,1,0,0,0,10,941,1,0,0,0,12,952,1,0,0,0,14,968,1,0,0,0,16,973, + 1,0,0,0,18,985,1,0,0,0,20,1020,1,0,0,0,22,1030,1,0,0,0,24,1032,1, + 0,0,0,26,1044,1,0,0,0,28,1074,1,0,0,0,30,1110,1,0,0,0,32,1161,1, + 0,0,0,34,1190,1,0,0,0,36,1226,1,0,0,0,38,1240,1,0,0,0,40,1247,1, + 0,0,0,42,1344,1,0,0,0,44,1346,1,0,0,0,46,1383,1,0,0,0,48,1447,1, + 0,0,0,50,1472,1,0,0,0,52,1478,1,0,0,0,54,1500,1,0,0,0,56,1587,1, + 0,0,0,58,1594,1,0,0,0,60,1596,1,0,0,0,62,1601,1,0,0,0,64,1641,1, + 0,0,0,66,1647,1,0,0,0,68,1649,1,0,0,0,70,1670,1,0,0,0,72,1677,1, + 0,0,0,74,1679,1,0,0,0,76,1704,1,0,0,0,78,1707,1,0,0,0,80,1712,1, + 0,0,0,82,1738,1,0,0,0,84,1754,1,0,0,0,86,1756,1,0,0,0,88,1850,1, + 0,0,0,90,1853,1,0,0,0,92,1865,1,0,0,0,94,1869,1,0,0,0,96,1919,1, + 0,0,0,98,1921,1,0,0,0,100,1949,1,0,0,0,102,1959,1,0,0,0,104,2146, + 1,0,0,0,106,2148,1,0,0,0,108,2150,1,0,0,0,110,2153,1,0,0,0,112,2228, + 1,0,0,0,114,2251,1,0,0,0,116,2399,1,0,0,0,118,2404,1,0,0,0,120,2406, + 1,0,0,0,122,2416,1,0,0,0,124,2472,1,0,0,0,126,2492,1,0,0,0,128,2494, + 1,0,0,0,130,2529,1,0,0,0,132,2538,1,0,0,0,134,2545,1,0,0,0,136,2568, + 1,0,0,0,138,2577,1,0,0,0,140,2592,1,0,0,0,142,2614,1,0,0,0,144,2670, + 1,0,0,0,146,2966,1,0,0,0,148,3066,1,0,0,0,150,3068,1,0,0,0,152,3075, + 1,0,0,0,154,3082,1,0,0,0,156,3105,1,0,0,0,158,3115,1,0,0,0,160,3122, + 1,0,0,0,162,3129,1,0,0,0,164,3136,1,0,0,0,166,3145,1,0,0,0,168,3157, + 1,0,0,0,170,3170,1,0,0,0,172,3177,1,0,0,0,174,3193,1,0,0,0,176,3220, + 1,0,0,0,178,3222,1,0,0,0,180,3232,1,0,0,0,182,3236,1,0,0,0,184,3242, + 1,0,0,0,186,3254,1,0,0,0,188,3256,1,0,0,0,190,3263,1,0,0,0,192,3265, + 1,0,0,0,194,3314,1,0,0,0,196,3323,1,0,0,0,198,3325,1,0,0,0,200,3336, + 1,0,0,0,202,3342,1,0,0,0,204,3416,1,0,0,0,206,3479,1,0,0,0,208,3497, + 1,0,0,0,210,3581,1,0,0,0,212,3584,1,0,0,0,214,3596,1,0,0,0,216,3616, + 1,0,0,0,218,3644,1,0,0,0,220,3648,1,0,0,0,222,3650,1,0,0,0,224,3660, + 1,0,0,0,226,3680,1,0,0,0,228,3687,1,0,0,0,230,3689,1,0,0,0,232,3700, + 1,0,0,0,234,3709,1,0,0,0,236,3715,1,0,0,0,238,3738,1,0,0,0,240,3740, + 1,0,0,0,242,3776,1,0,0,0,244,3831,1,0,0,0,246,3840,1,0,0,0,248,3860, + 1,0,0,0,250,3872,1,0,0,0,252,3876,1,0,0,0,254,3887,1,0,0,0,256,3920, + 1,0,0,0,258,3941,1,0,0,0,260,3951,1,0,0,0,262,3955,1,0,0,0,264,3981, + 1,0,0,0,266,4022,1,0,0,0,268,4029,1,0,0,0,270,4031,1,0,0,0,272,4035, + 1,0,0,0,274,4052,1,0,0,0,276,4103,1,0,0,0,278,4115,1,0,0,0,280,4125, + 1,0,0,0,282,4127,1,0,0,0,284,4160,1,0,0,0,286,4168,1,0,0,0,288,4185, + 1,0,0,0,290,4201,1,0,0,0,292,4238,1,0,0,0,294,4244,1,0,0,0,296,4253, + 1,0,0,0,298,4266,1,0,0,0,300,4270,1,0,0,0,302,4294,1,0,0,0,304,4296, + 1,0,0,0,306,4300,1,0,0,0,308,4302,1,0,0,0,310,4310,1,0,0,0,312,4348, + 1,0,0,0,314,4362,1,0,0,0,316,4370,1,0,0,0,318,4374,1,0,0,0,320,4383, + 1,0,0,0,322,4397,1,0,0,0,324,4400,1,0,0,0,326,4418,1,0,0,0,328,4422, + 1,0,0,0,330,4438,1,0,0,0,332,4440,1,0,0,0,334,4452,1,0,0,0,336,4456, + 1,0,0,0,338,4473,1,0,0,0,340,4490,1,0,0,0,342,4493,1,0,0,0,344,4503, + 1,0,0,0,346,4507,1,0,0,0,348,4517,1,0,0,0,350,4520,1,0,0,0,352,4525, + 1,0,0,0,354,4545,1,0,0,0,356,4547,1,0,0,0,358,4564,1,0,0,0,360,4573, + 1,0,0,0,362,4582,1,0,0,0,364,4584,1,0,0,0,366,4598,1,0,0,0,368,4612, + 1,0,0,0,370,4627,1,0,0,0,372,4636,1,0,0,0,374,4661,1,0,0,0,376,4676, + 1,0,0,0,378,4695,1,0,0,0,380,4725,1,0,0,0,382,4727,1,0,0,0,384,4729, + 1,0,0,0,386,4731,1,0,0,0,388,4746,1,0,0,0,390,4775,1,0,0,0,392,4777, + 1,0,0,0,394,4779,1,0,0,0,396,4781,1,0,0,0,398,4796,1,0,0,0,400,4798, + 1,0,0,0,402,4865,1,0,0,0,404,4867,1,0,0,0,406,4873,1,0,0,0,408,4900, + 1,0,0,0,410,4914,1,0,0,0,412,4925,1,0,0,0,414,4927,1,0,0,0,416,4933, + 1,0,0,0,418,4943,1,0,0,0,420,4947,1,0,0,0,422,4954,1,0,0,0,424,4958, + 1,0,0,0,426,4964,1,0,0,0,428,4971,1,0,0,0,430,4977,1,0,0,0,432,4983, + 1,0,0,0,434,4988,1,0,0,0,436,5033,1,0,0,0,438,5054,1,0,0,0,440,5079, + 1,0,0,0,442,5082,1,0,0,0,444,5088,1,0,0,0,446,5104,1,0,0,0,448,5119, + 1,0,0,0,450,5125,1,0,0,0,452,5155,1,0,0,0,454,5157,1,0,0,0,456,5164, + 1,0,0,0,458,5176,1,0,0,0,460,5182,1,0,0,0,462,5207,1,0,0,0,464,5211, + 1,0,0,0,466,5215,1,0,0,0,468,5226,1,0,0,0,470,5234,1,0,0,0,472,5297, + 1,0,0,0,474,5356,1,0,0,0,476,5458,1,0,0,0,478,5468,1,0,0,0,480,5470, + 1,0,0,0,482,5488,1,0,0,0,484,5512,1,0,0,0,486,5536,1,0,0,0,488,5543, + 1,0,0,0,490,5563,1,0,0,0,492,5572,1,0,0,0,494,5634,1,0,0,0,496,5636, + 1,0,0,0,498,5640,1,0,0,0,500,5674,1,0,0,0,502,5676,1,0,0,0,504,5679, + 1,0,0,0,506,5743,1,0,0,0,508,5762,1,0,0,0,510,5789,1,0,0,0,512,5793, + 1,0,0,0,514,5814,1,0,0,0,516,5824,1,0,0,0,518,5834,1,0,0,0,520,5874, + 1,0,0,0,522,5876,1,0,0,0,524,5879,1,0,0,0,526,5909,1,0,0,0,528,5911, + 1,0,0,0,530,5914,1,0,0,0,532,6014,1,0,0,0,534,6032,1,0,0,0,536,6034, + 1,0,0,0,538,6086,1,0,0,0,540,6088,1,0,0,0,542,6097,1,0,0,0,544,6103, + 1,0,0,0,546,6110,1,0,0,0,548,6125,1,0,0,0,550,6134,1,0,0,0,552,6136, + 1,0,0,0,554,6157,1,0,0,0,556,6162,1,0,0,0,558,6172,1,0,0,0,560,6178, + 1,0,0,0,562,6212,1,0,0,0,564,6266,1,0,0,0,566,6452,1,0,0,0,568,6464, + 1,0,0,0,570,6480,1,0,0,0,572,6486,1,0,0,0,574,6505,1,0,0,0,576,6518, + 1,0,0,0,578,6532,1,0,0,0,580,6534,1,0,0,0,582,6537,1,0,0,0,584,6561, + 1,0,0,0,586,6573,1,0,0,0,588,6579,1,0,0,0,590,6591,1,0,0,0,592,6605, + 1,0,0,0,594,6607,1,0,0,0,596,6615,1,0,0,0,598,6623,1,0,0,0,600,6625, + 1,0,0,0,602,6627,1,0,0,0,604,6667,1,0,0,0,606,6674,1,0,0,0,608,6676, + 1,0,0,0,610,6699,1,0,0,0,612,6705,1,0,0,0,614,6715,1,0,0,0,616,6724, + 1,0,0,0,618,6727,1,0,0,0,620,6730,1,0,0,0,622,6751,1,0,0,0,624,6772, + 1,0,0,0,626,6780,1,0,0,0,628,6792,1,0,0,0,630,6800,1,0,0,0,632,6838, + 1,0,0,0,634,6850,1,0,0,0,636,6852,1,0,0,0,638,6854,1,0,0,0,640,6856, + 1,0,0,0,642,6858,1,0,0,0,644,6860,1,0,0,0,646,6862,1,0,0,0,648,6864, + 1,0,0,0,650,6866,1,0,0,0,652,6874,1,0,0,0,654,6876,1,0,0,0,656,6878, + 1,0,0,0,658,6880,1,0,0,0,660,6882,1,0,0,0,662,6890,1,0,0,0,664,6892, + 1,0,0,0,666,6902,1,0,0,0,668,6918,1,0,0,0,670,6920,1,0,0,0,672,6928, + 1,0,0,0,674,6946,1,0,0,0,676,6962,1,0,0,0,678,6973,1,0,0,0,680,6975, + 1,0,0,0,682,6977,1,0,0,0,684,6979,1,0,0,0,686,6981,1,0,0,0,688,6989, + 1,0,0,0,690,6999,1,0,0,0,692,7004,1,0,0,0,694,7008,1,0,0,0,696,7015, + 1,0,0,0,698,7017,1,0,0,0,700,7024,1,0,0,0,702,7026,1,0,0,0,704,7032, + 1,0,0,0,706,7034,1,0,0,0,708,7039,1,0,0,0,710,7041,1,0,0,0,712,7043, + 1,0,0,0,714,7061,1,0,0,0,716,7077,1,0,0,0,718,7079,1,0,0,0,720,7083, + 1,0,0,0,722,7094,1,0,0,0,724,7105,1,0,0,0,726,7111,1,0,0,0,728,7120, + 1,0,0,0,730,7122,1,0,0,0,732,7126,1,0,0,0,734,7151,1,0,0,0,736,7153, + 1,0,0,0,738,7156,1,0,0,0,740,7161,1,0,0,0,742,7177,1,0,0,0,744,7305, + 1,0,0,0,746,7307,1,0,0,0,748,7340,1,0,0,0,750,7345,1,0,0,0,752,7349, + 1,0,0,0,754,7355,1,0,0,0,756,7363,1,0,0,0,758,7374,1,0,0,0,760,7382, + 1,0,0,0,762,7391,1,0,0,0,764,7404,1,0,0,0,766,7406,1,0,0,0,768,7414, + 1,0,0,0,770,7422,1,0,0,0,772,7456,1,0,0,0,774,7472,1,0,0,0,776,7474, + 1,0,0,0,778,7477,1,0,0,0,780,7481,1,0,0,0,782,7506,1,0,0,0,784,7687, + 1,0,0,0,786,7689,1,0,0,0,788,7708,1,0,0,0,790,7710,1,0,0,0,792,7773, + 1,0,0,0,794,7813,1,0,0,0,796,7815,1,0,0,0,798,7824,1,0,0,0,800,7835, + 1,0,0,0,802,7837,1,0,0,0,804,7840,1,0,0,0,806,7844,1,0,0,0,808,7846, + 1,0,0,0,810,7858,1,0,0,0,812,7860,1,0,0,0,814,7894,1,0,0,0,816,7896, + 1,0,0,0,818,7901,1,0,0,0,820,7912,1,0,0,0,822,7925,1,0,0,0,824,7936, + 1,0,0,0,826,8053,1,0,0,0,828,8075,1,0,0,0,830,8085,1,0,0,0,832,8094, + 1,0,0,0,834,8103,1,0,0,0,836,8112,1,0,0,0,838,8114,1,0,0,0,840,8121, + 1,0,0,0,842,8123,1,0,0,0,844,8125,1,0,0,0,846,8127,1,0,0,0,848,8129, + 1,0,0,0,850,8131,1,0,0,0,852,8133,1,0,0,0,854,8135,1,0,0,0,856,858, + 3,2,1,0,857,856,1,0,0,0,858,861,1,0,0,0,859,857,1,0,0,0,859,860, + 1,0,0,0,860,862,1,0,0,0,861,859,1,0,0,0,862,863,5,0,0,1,863,1,1, + 0,0,0,864,866,3,4,2,0,865,867,5,869,0,0,866,865,1,0,0,0,866,867, + 1,0,0,0,867,870,1,0,0,0,868,870,3,6,3,0,869,864,1,0,0,0,869,868, + 1,0,0,0,870,3,1,0,0,0,871,879,3,8,4,0,872,879,3,10,5,0,873,879,3, + 12,6,0,874,879,3,14,7,0,875,879,3,16,8,0,876,879,3,20,10,0,877,879, + 3,22,11,0,878,871,1,0,0,0,878,872,1,0,0,0,878,873,1,0,0,0,878,874, + 1,0,0,0,878,875,1,0,0,0,878,876,1,0,0,0,878,877,1,0,0,0,879,5,1, + 0,0,0,880,881,5,869,0,0,881,7,1,0,0,0,882,923,3,24,12,0,883,923, + 3,26,13,0,884,923,3,28,14,0,885,923,3,30,15,0,886,923,3,32,16,0, + 887,923,3,34,17,0,888,923,3,36,18,0,889,923,3,40,20,0,890,923,3, + 42,21,0,891,923,3,44,22,0,892,923,3,46,23,0,893,923,3,48,24,0,894, + 923,3,54,27,0,895,923,3,38,19,0,896,923,3,126,63,0,897,923,3,128, + 64,0,898,923,3,130,65,0,899,923,3,132,66,0,900,923,3,134,67,0,901, + 923,3,136,68,0,902,923,3,138,69,0,903,923,3,140,70,0,904,923,3,142, + 71,0,905,923,3,144,72,0,906,923,3,150,75,0,907,923,3,152,76,0,908, + 923,3,154,77,0,909,923,3,156,78,0,910,923,3,158,79,0,911,923,3,160, + 80,0,912,923,3,162,81,0,913,923,3,164,82,0,914,923,3,166,83,0,915, + 923,3,168,84,0,916,923,3,170,85,0,917,923,3,172,86,0,918,923,3,174, + 87,0,919,923,3,176,88,0,920,923,3,178,89,0,921,923,3,182,91,0,922, + 882,1,0,0,0,922,883,1,0,0,0,922,884,1,0,0,0,922,885,1,0,0,0,922, + 886,1,0,0,0,922,887,1,0,0,0,922,888,1,0,0,0,922,889,1,0,0,0,922, + 890,1,0,0,0,922,891,1,0,0,0,922,892,1,0,0,0,922,893,1,0,0,0,922, + 894,1,0,0,0,922,895,1,0,0,0,922,896,1,0,0,0,922,897,1,0,0,0,922, + 898,1,0,0,0,922,899,1,0,0,0,922,900,1,0,0,0,922,901,1,0,0,0,922, + 902,1,0,0,0,922,903,1,0,0,0,922,904,1,0,0,0,922,905,1,0,0,0,922, + 906,1,0,0,0,922,907,1,0,0,0,922,908,1,0,0,0,922,909,1,0,0,0,922, + 910,1,0,0,0,922,911,1,0,0,0,922,912,1,0,0,0,922,913,1,0,0,0,922, + 914,1,0,0,0,922,915,1,0,0,0,922,916,1,0,0,0,922,917,1,0,0,0,922, + 918,1,0,0,0,922,919,1,0,0,0,922,920,1,0,0,0,922,921,1,0,0,0,923, + 9,1,0,0,0,924,942,3,210,105,0,925,942,3,212,106,0,926,942,3,192, + 96,0,927,942,3,220,110,0,928,942,3,186,93,0,929,942,3,208,104,0, + 930,942,3,184,92,0,931,942,3,198,99,0,932,942,3,202,101,0,933,942, + 3,204,102,0,934,942,3,206,103,0,935,942,3,188,94,0,936,942,3,190, + 95,0,937,942,3,252,126,0,938,942,3,222,111,0,939,942,3,626,313,0, + 940,942,3,628,314,0,941,924,1,0,0,0,941,925,1,0,0,0,941,926,1,0, + 0,0,941,927,1,0,0,0,941,928,1,0,0,0,941,929,1,0,0,0,941,930,1,0, + 0,0,941,931,1,0,0,0,941,932,1,0,0,0,941,933,1,0,0,0,941,934,1,0, + 0,0,941,935,1,0,0,0,941,936,1,0,0,0,941,937,1,0,0,0,941,938,1,0, + 0,0,941,939,1,0,0,0,941,940,1,0,0,0,942,11,1,0,0,0,943,953,3,332, + 166,0,944,953,3,334,167,0,945,953,3,336,168,0,946,953,3,338,169, + 0,947,953,3,340,170,0,948,953,3,342,171,0,949,953,3,344,172,0,950, + 953,3,346,173,0,951,953,3,348,174,0,952,943,1,0,0,0,952,944,1,0, + 0,0,952,945,1,0,0,0,952,946,1,0,0,0,952,947,1,0,0,0,952,948,1,0, + 0,0,952,949,1,0,0,0,952,950,1,0,0,0,952,951,1,0,0,0,953,13,1,0,0, + 0,954,969,3,364,182,0,955,969,3,366,183,0,956,969,3,368,184,0,957, + 969,3,370,185,0,958,969,3,372,186,0,959,969,3,374,187,0,960,969, + 3,376,188,0,961,969,3,378,189,0,962,969,3,414,207,0,963,969,3,416, + 208,0,964,969,3,418,209,0,965,969,3,420,210,0,966,969,3,422,211, + 0,967,969,3,424,212,0,968,954,1,0,0,0,968,955,1,0,0,0,968,956,1, + 0,0,0,968,957,1,0,0,0,968,958,1,0,0,0,968,959,1,0,0,0,968,960,1, + 0,0,0,968,961,1,0,0,0,968,962,1,0,0,0,968,963,1,0,0,0,968,964,1, + 0,0,0,968,965,1,0,0,0,968,966,1,0,0,0,968,967,1,0,0,0,969,15,1,0, + 0,0,970,974,3,426,213,0,971,974,3,428,214,0,972,974,3,430,215,0, + 973,970,1,0,0,0,973,971,1,0,0,0,973,972,1,0,0,0,974,17,1,0,0,0,975, + 986,3,434,217,0,976,986,3,436,218,0,977,986,3,438,219,0,978,986, + 3,442,221,0,979,986,3,444,222,0,980,986,3,446,223,0,981,986,3,450, + 225,0,982,986,3,440,220,0,983,986,3,448,224,0,984,986,3,452,226, + 0,985,975,1,0,0,0,985,976,1,0,0,0,985,977,1,0,0,0,985,978,1,0,0, + 0,985,979,1,0,0,0,985,980,1,0,0,0,985,981,1,0,0,0,985,982,1,0,0, + 0,985,983,1,0,0,0,985,984,1,0,0,0,986,19,1,0,0,0,987,1021,3,470, + 235,0,988,1021,3,472,236,0,989,1021,3,474,237,0,990,1021,3,476,238, + 0,991,1021,3,480,240,0,992,1021,3,492,246,0,993,1021,3,494,247,0, + 994,1021,3,482,241,0,995,1021,3,484,242,0,996,1021,3,486,243,0,997, + 1021,3,488,244,0,998,1021,3,538,269,0,999,1021,3,540,270,0,1000, + 1021,3,542,271,0,1001,1021,3,544,272,0,1002,1021,3,546,273,0,1003, + 1021,3,552,276,0,1004,1021,3,556,278,0,1005,1021,3,558,279,0,1006, + 1021,3,560,280,0,1007,1021,3,562,281,0,1008,1021,3,564,282,0,1009, + 1021,3,566,283,0,1010,1021,3,580,290,0,1011,1021,3,582,291,0,1012, + 1021,3,584,292,0,1013,1021,3,586,293,0,1014,1021,3,588,294,0,1015, + 1021,3,590,295,0,1016,1021,3,594,297,0,1017,1021,3,596,298,0,1018, + 1021,3,598,299,0,1019,1021,3,600,300,0,1020,987,1,0,0,0,1020,988, + 1,0,0,0,1020,989,1,0,0,0,1020,990,1,0,0,0,1020,991,1,0,0,0,1020, + 992,1,0,0,0,1020,993,1,0,0,0,1020,994,1,0,0,0,1020,995,1,0,0,0,1020, + 996,1,0,0,0,1020,997,1,0,0,0,1020,998,1,0,0,0,1020,999,1,0,0,0,1020, + 1000,1,0,0,0,1020,1001,1,0,0,0,1020,1002,1,0,0,0,1020,1003,1,0,0, + 0,1020,1004,1,0,0,0,1020,1005,1,0,0,0,1020,1006,1,0,0,0,1020,1007, + 1,0,0,0,1020,1008,1,0,0,0,1020,1009,1,0,0,0,1020,1010,1,0,0,0,1020, + 1011,1,0,0,0,1020,1012,1,0,0,0,1020,1013,1,0,0,0,1020,1014,1,0,0, + 0,1020,1015,1,0,0,0,1020,1016,1,0,0,0,1020,1017,1,0,0,0,1020,1018, + 1,0,0,0,1020,1019,1,0,0,0,1021,21,1,0,0,0,1022,1031,3,612,306,0, + 1023,1031,3,610,305,0,1024,1031,3,614,307,0,1025,1031,3,616,308, + 0,1026,1031,3,618,309,0,1027,1031,3,620,310,0,1028,1031,3,622,311, + 0,1029,1031,3,630,315,0,1030,1022,1,0,0,0,1030,1023,1,0,0,0,1030, + 1024,1,0,0,0,1030,1025,1,0,0,0,1030,1026,1,0,0,0,1030,1027,1,0,0, + 0,1030,1028,1,0,0,0,1030,1029,1,0,0,0,1031,23,1,0,0,0,1032,1033, + 5,34,0,0,1033,1035,7,0,0,0,1034,1036,3,778,389,0,1035,1034,1,0,0, + 0,1035,1036,1,0,0,0,1036,1037,1,0,0,0,1037,1041,3,636,318,0,1038, + 1040,3,56,28,0,1039,1038,1,0,0,0,1040,1043,1,0,0,0,1041,1039,1,0, + 0,0,1041,1042,1,0,0,0,1042,25,1,0,0,0,1043,1041,1,0,0,0,1044,1046, + 5,34,0,0,1045,1047,3,62,31,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0, + 1047,1048,1,0,0,0,1048,1050,5,385,0,0,1049,1051,3,778,389,0,1050, + 1049,1,0,0,0,1050,1051,1,0,0,0,1051,1052,1,0,0,0,1052,1053,3,718, + 359,0,1053,1054,5,119,0,0,1054,1055,5,590,0,0,1055,1062,3,64,32, + 0,1056,1057,5,119,0,0,1057,1059,5,343,0,0,1058,1060,5,114,0,0,1059, + 1058,1,0,0,0,1059,1060,1,0,0,0,1060,1061,1,0,0,0,1061,1063,5,541, + 0,0,1062,1056,1,0,0,0,1062,1063,1,0,0,0,1063,1065,1,0,0,0,1064,1066, + 3,72,36,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066,1069,1,0,0,0, + 1067,1068,5,340,0,0,1068,1070,5,882,0,0,1069,1067,1,0,0,0,1069,1070, + 1,0,0,0,1070,1071,1,0,0,0,1071,1072,5,371,0,0,1072,1073,3,432,216, + 0,1073,27,1,0,0,0,1074,1076,5,34,0,0,1075,1077,7,1,0,0,1076,1075, + 1,0,0,0,1076,1077,1,0,0,0,1077,1079,1,0,0,0,1078,1080,7,2,0,0,1079, + 1078,1,0,0,0,1079,1080,1,0,0,0,1080,1081,1,0,0,0,1081,1082,5,82, + 0,0,1082,1084,3,648,324,0,1083,1085,3,74,37,0,1084,1083,1,0,0,0, + 1084,1085,1,0,0,0,1085,1086,1,0,0,0,1086,1087,5,119,0,0,1087,1088, + 3,662,331,0,1088,1092,3,756,378,0,1089,1091,3,76,38,0,1090,1089, + 1,0,0,0,1091,1094,1,0,0,0,1092,1090,1,0,0,0,1092,1093,1,0,0,0,1093, + 1107,1,0,0,0,1094,1092,1,0,0,0,1095,1097,5,308,0,0,1096,1098,5,857, + 0,0,1097,1096,1,0,0,0,1097,1098,1,0,0,0,1098,1099,1,0,0,0,1099,1106, + 7,3,0,0,1100,1102,5,104,0,0,1101,1103,5,857,0,0,1102,1101,1,0,0, + 0,1102,1103,1,0,0,0,1103,1104,1,0,0,0,1104,1106,7,4,0,0,1105,1095, + 1,0,0,0,1105,1100,1,0,0,0,1106,1109,1,0,0,0,1107,1105,1,0,0,0,1107, + 1108,1,0,0,0,1108,29,1,0,0,0,1109,1107,1,0,0,0,1110,1111,5,34,0, + 0,1111,1112,5,451,0,0,1112,1113,5,74,0,0,1113,1114,3,722,361,0,1114, + 1115,5,6,0,0,1115,1116,5,671,0,0,1116,1122,5,882,0,0,1117,1119,5, + 428,0,0,1118,1120,5,857,0,0,1119,1118,1,0,0,0,1119,1120,1,0,0,0, + 1120,1121,1,0,0,0,1121,1123,3,732,366,0,1122,1117,1,0,0,0,1122,1123, + 1,0,0,0,1123,1129,1,0,0,0,1124,1126,5,672,0,0,1125,1127,5,857,0, + 0,1126,1125,1,0,0,0,1126,1127,1,0,0,0,1127,1128,1,0,0,0,1128,1130, + 3,732,366,0,1129,1124,1,0,0,0,1129,1130,1,0,0,0,1130,1136,1,0,0, + 0,1131,1133,5,553,0,0,1132,1134,5,857,0,0,1133,1132,1,0,0,0,1133, + 1134,1,0,0,0,1134,1135,1,0,0,0,1135,1137,3,732,366,0,1136,1131,1, + 0,0,0,1136,1137,1,0,0,0,1137,1143,1,0,0,0,1138,1140,5,504,0,0,1139, + 1141,5,857,0,0,1140,1139,1,0,0,0,1140,1141,1,0,0,0,1141,1142,1,0, + 0,0,1142,1144,3,722,361,0,1143,1138,1,0,0,0,1143,1144,1,0,0,0,1144, + 1146,1,0,0,0,1145,1147,5,687,0,0,1146,1145,1,0,0,0,1146,1147,1,0, + 0,0,1147,1153,1,0,0,0,1148,1150,5,340,0,0,1149,1151,5,857,0,0,1150, + 1149,1,0,0,0,1150,1151,1,0,0,0,1151,1152,1,0,0,0,1152,1154,5,882, + 0,0,1153,1148,1,0,0,0,1153,1154,1,0,0,0,1154,1155,1,0,0,0,1155,1157, + 5,380,0,0,1156,1158,5,857,0,0,1157,1156,1,0,0,0,1157,1158,1,0,0, + 0,1158,1159,1,0,0,0,1159,1160,3,708,354,0,1160,31,1,0,0,0,1161,1163, + 5,34,0,0,1162,1164,3,62,31,0,1163,1162,1,0,0,0,1163,1164,1,0,0,0, + 1164,1165,1,0,0,0,1165,1167,5,132,0,0,1166,1168,3,778,389,0,1167, + 1166,1,0,0,0,1167,1168,1,0,0,0,1168,1169,1,0,0,0,1169,1170,3,718, + 359,0,1170,1172,5,866,0,0,1171,1173,3,78,39,0,1172,1171,1,0,0,0, + 1172,1173,1,0,0,0,1173,1178,1,0,0,0,1174,1175,5,868,0,0,1175,1177, + 3,78,39,0,1176,1174,1,0,0,0,1177,1180,1,0,0,0,1178,1176,1,0,0,0, + 1178,1179,1,0,0,0,1179,1181,1,0,0,0,1180,1178,1,0,0,0,1181,1185, + 5,867,0,0,1182,1184,3,82,41,0,1183,1182,1,0,0,0,1184,1187,1,0,0, + 0,1185,1183,1,0,0,0,1185,1186,1,0,0,0,1186,1188,1,0,0,0,1187,1185, + 1,0,0,0,1188,1189,3,432,216,0,1189,33,1,0,0,0,1190,1192,5,34,0,0, + 1191,1193,3,62,31,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0,1193,1195, + 1,0,0,0,1194,1196,5,307,0,0,1195,1194,1,0,0,0,1195,1196,1,0,0,0, + 1196,1197,1,0,0,0,1197,1199,5,409,0,0,1198,1200,3,778,389,0,1199, + 1198,1,0,0,0,1199,1200,1,0,0,0,1200,1201,1,0,0,0,1201,1202,3,640, + 320,0,1202,1204,5,866,0,0,1203,1205,3,80,40,0,1204,1203,1,0,0,0, + 1204,1205,1,0,0,0,1205,1210,1,0,0,0,1206,1207,5,868,0,0,1207,1209, + 3,80,40,0,1208,1206,1,0,0,0,1209,1212,1,0,0,0,1210,1208,1,0,0,0, + 1210,1211,1,0,0,0,1211,1213,1,0,0,0,1212,1210,1,0,0,0,1213,1214, + 5,867,0,0,1214,1215,5,580,0,0,1215,1219,3,744,372,0,1216,1218,3, + 82,41,0,1217,1216,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219, + 1220,1,0,0,0,1220,1224,1,0,0,0,1221,1219,1,0,0,0,1222,1225,3,432, + 216,0,1223,1225,3,448,224,0,1224,1222,1,0,0,0,1224,1223,1,0,0,0, + 1225,35,1,0,0,0,1226,1228,5,34,0,0,1227,1229,5,307,0,0,1228,1227, + 1,0,0,0,1228,1229,1,0,0,0,1229,1230,1,0,0,0,1230,1232,5,409,0,0, + 1231,1233,3,778,389,0,1232,1231,1,0,0,0,1232,1233,1,0,0,0,1233,1234, + 1,0,0,0,1234,1235,3,640,320,0,1235,1236,5,580,0,0,1236,1237,7,5, + 0,0,1237,1238,5,603,0,0,1238,1239,5,882,0,0,1239,37,1,0,0,0,1240, + 1241,5,34,0,0,1241,1243,5,582,0,0,1242,1244,3,778,389,0,1243,1242, + 1,0,0,0,1243,1244,1,0,0,0,1244,1245,1,0,0,0,1245,1246,3,664,332, + 0,1246,39,1,0,0,0,1247,1248,5,34,0,0,1248,1249,5,592,0,0,1249,1250, + 3,722,361,0,1250,1251,5,67,0,0,1251,1252,5,360,0,0,1252,1253,5,692, + 0,0,1253,1254,7,6,0,0,1254,1255,5,518,0,0,1255,1256,5,866,0,0,1256, + 1261,3,84,42,0,1257,1258,5,868,0,0,1258,1260,3,84,42,0,1259,1257, + 1,0,0,0,1260,1263,1,0,0,0,1261,1259,1,0,0,0,1261,1262,1,0,0,0,1262, + 1264,1,0,0,0,1263,1261,1,0,0,0,1264,1265,5,867,0,0,1265,41,1,0,0, + 0,1266,1268,5,34,0,0,1267,1269,5,660,0,0,1268,1267,1,0,0,0,1268, + 1269,1,0,0,0,1269,1270,1,0,0,0,1270,1272,5,173,0,0,1271,1273,3,778, + 389,0,1272,1271,1,0,0,0,1272,1273,1,0,0,0,1273,1274,1,0,0,0,1274, + 1276,3,658,329,0,1275,1277,3,86,43,0,1276,1275,1,0,0,0,1276,1277, + 1,0,0,0,1277,1288,1,0,0,0,1278,1285,3,104,52,0,1279,1281,5,868,0, + 0,1280,1279,1,0,0,0,1280,1281,1,0,0,0,1281,1282,1,0,0,0,1282,1284, + 3,104,52,0,1283,1280,1,0,0,0,1284,1287,1,0,0,0,1285,1283,1,0,0,0, + 1285,1286,1,0,0,0,1286,1289,1,0,0,0,1287,1285,1,0,0,0,1288,1278, + 1,0,0,0,1288,1289,1,0,0,0,1289,1291,1,0,0,0,1290,1292,3,110,55,0, + 1291,1290,1,0,0,0,1291,1292,1,0,0,0,1292,1294,1,0,0,0,1293,1295, + 7,7,0,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1297,1,0,0,0,1296, + 1298,5,13,0,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1,0, + 0,0,1299,1300,3,210,105,0,1300,1345,1,0,0,0,1301,1303,5,34,0,0,1302, + 1304,5,660,0,0,1303,1302,1,0,0,0,1303,1304,1,0,0,0,1304,1305,1,0, + 0,0,1305,1307,5,173,0,0,1306,1308,3,778,389,0,1307,1306,1,0,0,0, + 1307,1308,1,0,0,0,1308,1309,1,0,0,0,1309,1317,3,658,329,0,1310,1311, + 5,99,0,0,1311,1318,3,662,331,0,1312,1313,5,866,0,0,1313,1314,5,99, + 0,0,1314,1315,3,662,331,0,1315,1316,5,867,0,0,1316,1318,1,0,0,0, + 1317,1310,1,0,0,0,1317,1312,1,0,0,0,1318,1345,1,0,0,0,1319,1321, + 5,34,0,0,1320,1322,5,660,0,0,1321,1320,1,0,0,0,1321,1322,1,0,0,0, + 1322,1323,1,0,0,0,1323,1325,5,173,0,0,1324,1326,3,778,389,0,1325, + 1324,1,0,0,0,1325,1326,1,0,0,0,1326,1327,1,0,0,0,1327,1328,3,658, + 329,0,1328,1339,3,86,43,0,1329,1336,3,104,52,0,1330,1332,5,868,0, + 0,1331,1330,1,0,0,0,1331,1332,1,0,0,0,1332,1333,1,0,0,0,1333,1335, + 3,104,52,0,1334,1331,1,0,0,0,1335,1338,1,0,0,0,1336,1334,1,0,0,0, + 1336,1337,1,0,0,0,1337,1340,1,0,0,0,1338,1336,1,0,0,0,1339,1329, + 1,0,0,0,1339,1340,1,0,0,0,1340,1342,1,0,0,0,1341,1343,3,110,55,0, + 1342,1341,1,0,0,0,1342,1343,1,0,0,0,1343,1345,1,0,0,0,1344,1266, + 1,0,0,0,1344,1301,1,0,0,0,1344,1319,1,0,0,0,1345,43,1,0,0,0,1346, + 1348,5,34,0,0,1347,1349,5,180,0,0,1348,1347,1,0,0,0,1348,1349,1, + 0,0,0,1349,1350,1,0,0,0,1350,1351,5,658,0,0,1351,1355,3,680,340, + 0,1352,1353,5,6,0,0,1353,1354,5,361,0,0,1354,1356,5,882,0,0,1355, + 1352,1,0,0,0,1355,1356,1,0,0,0,1356,1362,1,0,0,0,1357,1359,5,314, + 0,0,1358,1360,5,857,0,0,1359,1358,1,0,0,0,1359,1360,1,0,0,0,1360, + 1361,1,0,0,0,1361,1363,3,732,366,0,1362,1357,1,0,0,0,1362,1363,1, + 0,0,0,1363,1367,1,0,0,0,1364,1365,5,399,0,0,1365,1366,5,857,0,0, + 1366,1368,3,732,366,0,1367,1364,1,0,0,0,1367,1368,1,0,0,0,1368,1374, + 1,0,0,0,1369,1371,5,380,0,0,1370,1372,5,857,0,0,1371,1370,1,0,0, + 0,1371,1372,1,0,0,0,1372,1373,1,0,0,0,1373,1375,3,708,354,0,1374, + 1369,1,0,0,0,1374,1375,1,0,0,0,1375,1381,1,0,0,0,1376,1378,5,825, + 0,0,1377,1379,5,857,0,0,1378,1377,1,0,0,0,1378,1379,1,0,0,0,1379, + 1380,1,0,0,0,1380,1382,5,882,0,0,1381,1376,1,0,0,0,1381,1382,1,0, + 0,0,1382,45,1,0,0,0,1383,1385,5,34,0,0,1384,1386,5,180,0,0,1385, + 1384,1,0,0,0,1385,1386,1,0,0,0,1386,1387,1,0,0,0,1387,1388,5,658, + 0,0,1388,1389,3,680,340,0,1389,1390,5,6,0,0,1390,1391,5,361,0,0, + 1391,1392,5,882,0,0,1392,1393,5,187,0,0,1393,1394,5,451,0,0,1394, + 1395,5,74,0,0,1395,1401,3,722,361,0,1396,1398,5,393,0,0,1397,1399, + 5,857,0,0,1398,1397,1,0,0,0,1398,1399,1,0,0,0,1399,1400,1,0,0,0, + 1400,1402,3,732,366,0,1401,1396,1,0,0,0,1401,1402,1,0,0,0,1402,1408, + 1,0,0,0,1403,1405,5,428,0,0,1404,1406,5,857,0,0,1405,1404,1,0,0, + 0,1405,1406,1,0,0,0,1406,1407,1,0,0,0,1407,1409,3,732,366,0,1408, + 1403,1,0,0,0,1408,1409,1,0,0,0,1409,1415,1,0,0,0,1410,1412,5,314, + 0,0,1411,1413,5,857,0,0,1412,1411,1,0,0,0,1412,1413,1,0,0,0,1413, + 1414,1,0,0,0,1414,1416,3,732,366,0,1415,1410,1,0,0,0,1415,1416,1, + 0,0,0,1416,1422,1,0,0,0,1417,1419,5,481,0,0,1418,1420,5,857,0,0, + 1419,1418,1,0,0,0,1419,1420,1,0,0,0,1420,1421,1,0,0,0,1421,1423, + 3,732,366,0,1422,1417,1,0,0,0,1422,1423,1,0,0,0,1423,1429,1,0,0, + 0,1424,1426,5,504,0,0,1425,1427,5,857,0,0,1426,1425,1,0,0,0,1426, + 1427,1,0,0,0,1427,1428,1,0,0,0,1428,1430,3,722,361,0,1429,1424,1, + 0,0,0,1429,1430,1,0,0,0,1430,1432,1,0,0,0,1431,1433,5,687,0,0,1432, + 1431,1,0,0,0,1432,1433,1,0,0,0,1433,1439,1,0,0,0,1434,1436,5,340, + 0,0,1435,1437,5,857,0,0,1436,1435,1,0,0,0,1436,1437,1,0,0,0,1437, + 1438,1,0,0,0,1438,1440,5,882,0,0,1439,1434,1,0,0,0,1439,1440,1,0, + 0,0,1440,1441,1,0,0,0,1441,1443,5,380,0,0,1442,1444,5,857,0,0,1443, + 1442,1,0,0,0,1443,1444,1,0,0,0,1444,1445,1,0,0,0,1445,1446,3,708, + 354,0,1446,47,1,0,0,0,1447,1449,5,34,0,0,1448,1450,3,62,31,0,1449, + 1448,1,0,0,0,1449,1450,1,0,0,0,1450,1452,1,0,0,0,1451,1453,3,778, + 389,0,1452,1451,1,0,0,0,1452,1453,1,0,0,0,1453,1454,1,0,0,0,1454, + 1456,5,178,0,0,1455,1457,3,778,389,0,1456,1455,1,0,0,0,1456,1457, + 1,0,0,0,1457,1458,1,0,0,0,1458,1459,3,718,359,0,1459,1460,7,8,0, + 0,1460,1461,7,9,0,0,1461,1462,5,119,0,0,1462,1463,3,662,331,0,1463, + 1464,5,65,0,0,1464,1465,5,52,0,0,1465,1468,5,586,0,0,1466,1467,7, + 10,0,0,1467,1469,3,718,359,0,1468,1466,1,0,0,0,1468,1469,1,0,0,0, + 1469,1470,1,0,0,0,1470,1471,3,432,216,0,1471,49,1,0,0,0,1472,1474, + 5,194,0,0,1473,1475,5,552,0,0,1474,1473,1,0,0,0,1474,1475,1,0,0, + 0,1475,1476,1,0,0,0,1476,1477,3,52,26,0,1477,51,1,0,0,0,1478,1490, + 3,722,361,0,1479,1480,5,866,0,0,1480,1485,3,722,361,0,1481,1482, + 5,868,0,0,1482,1484,3,722,361,0,1483,1481,1,0,0,0,1484,1487,1,0, + 0,0,1485,1483,1,0,0,0,1485,1486,1,0,0,0,1486,1488,1,0,0,0,1487,1485, + 1,0,0,0,1488,1489,5,867,0,0,1489,1491,1,0,0,0,1490,1479,1,0,0,0, + 1490,1491,1,0,0,0,1491,1492,1,0,0,0,1492,1493,5,13,0,0,1493,1494, + 5,866,0,0,1494,1495,3,10,5,0,1495,1498,5,867,0,0,1496,1497,5,868, + 0,0,1497,1499,3,52,26,0,1498,1496,1,0,0,0,1498,1499,1,0,0,0,1499, + 53,1,0,0,0,1500,1502,5,34,0,0,1501,1503,3,780,390,0,1502,1501,1, + 0,0,0,1502,1503,1,0,0,0,1503,1507,1,0,0,0,1504,1505,5,308,0,0,1505, + 1506,5,857,0,0,1506,1508,7,11,0,0,1507,1504,1,0,0,0,1507,1508,1, + 0,0,0,1508,1510,1,0,0,0,1509,1511,3,62,31,0,1510,1509,1,0,0,0,1510, + 1511,1,0,0,0,1511,1515,1,0,0,0,1512,1513,5,162,0,0,1513,1514,5,591, + 0,0,1514,1516,7,12,0,0,1515,1512,1,0,0,0,1515,1516,1,0,0,0,1516, + 1517,1,0,0,0,1517,1518,5,684,0,0,1518,1530,3,644,322,0,1519,1520, + 5,866,0,0,1520,1525,3,668,334,0,1521,1522,5,868,0,0,1522,1524,3, + 668,334,0,1523,1521,1,0,0,0,1524,1527,1,0,0,0,1525,1523,1,0,0,0, + 1525,1526,1,0,0,0,1526,1528,1,0,0,0,1527,1525,1,0,0,0,1528,1529, + 5,867,0,0,1529,1531,1,0,0,0,1530,1519,1,0,0,0,1530,1531,1,0,0,0, + 1531,1532,1,0,0,0,1532,1552,5,13,0,0,1533,1535,5,866,0,0,1534,1536, + 3,50,25,0,1535,1534,1,0,0,0,1535,1536,1,0,0,0,1536,1537,1,0,0,0, + 1537,1538,3,210,105,0,1538,1539,5,867,0,0,1539,1553,1,0,0,0,1540, + 1542,3,50,25,0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542,1543,1,0, + 0,0,1543,1550,3,210,105,0,1544,1546,5,194,0,0,1545,1547,7,13,0,0, + 1546,1545,1,0,0,0,1546,1547,1,0,0,0,1547,1548,1,0,0,0,1548,1549, + 5,27,0,0,1549,1551,5,121,0,0,1550,1544,1,0,0,0,1550,1551,1,0,0,0, + 1551,1553,1,0,0,0,1552,1533,1,0,0,0,1552,1541,1,0,0,0,1553,55,1, + 0,0,0,1554,1556,5,42,0,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556, + 1557,1,0,0,0,1557,1559,3,58,29,0,1558,1560,5,857,0,0,1559,1558,1, + 0,0,0,1559,1560,1,0,0,0,1560,1563,1,0,0,0,1561,1564,3,704,352,0, + 1562,1564,5,42,0,0,1563,1561,1,0,0,0,1563,1562,1,0,0,0,1564,1588, + 1,0,0,0,1565,1567,5,42,0,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567, + 1568,1,0,0,0,1568,1570,5,28,0,0,1569,1571,5,857,0,0,1570,1569,1, + 0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1588,3,706,353,0, + 1573,1575,5,42,0,0,1574,1573,1,0,0,0,1574,1575,1,0,0,0,1575,1576, + 1,0,0,0,1576,1578,5,376,0,0,1577,1579,5,857,0,0,1578,1577,1,0,0, + 0,1578,1579,1,0,0,0,1579,1580,1,0,0,0,1580,1588,5,882,0,0,1581,1582, + 5,135,0,0,1582,1584,5,515,0,0,1583,1585,5,857,0,0,1584,1583,1,0, + 0,0,1584,1585,1,0,0,0,1585,1586,1,0,0,0,1586,1588,7,14,0,0,1587, + 1555,1,0,0,0,1587,1566,1,0,0,0,1587,1574,1,0,0,0,1587,1581,1,0,0, + 0,1588,57,1,0,0,0,1589,1590,5,26,0,0,1590,1595,5,155,0,0,1591,1595, + 5,823,0,0,1592,1593,5,224,0,0,1593,1595,5,155,0,0,1594,1589,1,0, + 0,0,1594,1591,1,0,0,0,1594,1592,1,0,0,0,1595,59,1,0,0,0,1596,1599, + 7,15,0,0,1597,1598,5,866,0,0,1598,1600,5,867,0,0,1599,1597,1,0,0, + 0,1599,1600,1,0,0,0,1600,61,1,0,0,0,1601,1602,5,364,0,0,1602,1605, + 5,857,0,0,1603,1606,3,700,350,0,1604,1606,3,60,30,0,1605,1603,1, + 0,0,0,1605,1604,1,0,0,0,1606,63,1,0,0,0,1607,1608,5,311,0,0,1608, + 1612,3,66,33,0,1609,1611,3,68,34,0,1610,1609,1,0,0,0,1611,1614,1, + 0,0,0,1612,1610,1,0,0,0,1612,1613,1,0,0,0,1613,1642,1,0,0,0,1614, + 1612,1,0,0,0,1615,1618,5,387,0,0,1616,1619,3,730,365,0,1617,1619, + 3,822,411,0,1618,1616,1,0,0,0,1618,1617,1,0,0,0,1619,1620,1,0,0, + 0,1620,1629,3,70,35,0,1621,1622,5,641,0,0,1622,1626,3,66,33,0,1623, + 1625,3,68,34,0,1624,1623,1,0,0,0,1625,1628,1,0,0,0,1626,1624,1,0, + 0,0,1626,1627,1,0,0,0,1627,1630,1,0,0,0,1628,1626,1,0,0,0,1629,1621, + 1,0,0,0,1629,1630,1,0,0,0,1630,1639,1,0,0,0,1631,1632,5,379,0,0, + 1632,1636,3,66,33,0,1633,1635,3,68,34,0,1634,1633,1,0,0,0,1635,1638, + 1,0,0,0,1636,1634,1,0,0,0,1636,1637,1,0,0,0,1637,1640,1,0,0,0,1638, + 1636,1,0,0,0,1639,1631,1,0,0,0,1639,1640,1,0,0,0,1640,1642,1,0,0, + 0,1641,1607,1,0,0,0,1641,1615,1,0,0,0,1642,65,1,0,0,0,1643,1648, + 5,287,0,0,1644,1648,3,734,367,0,1645,1648,3,730,365,0,1646,1648, + 3,822,411,0,1647,1643,1,0,0,0,1647,1644,1,0,0,0,1647,1645,1,0,0, + 0,1647,1646,1,0,0,0,1648,67,1,0,0,0,1649,1650,5,853,0,0,1650,1653, + 5,87,0,0,1651,1654,3,730,365,0,1652,1654,3,822,411,0,1653,1651,1, + 0,0,0,1653,1652,1,0,0,0,1654,1655,1,0,0,0,1655,1656,3,70,35,0,1656, + 69,1,0,0,0,1657,1671,3,848,424,0,1658,1671,5,223,0,0,1659,1671,5, + 242,0,0,1660,1671,5,243,0,0,1661,1671,5,244,0,0,1662,1671,5,245, + 0,0,1663,1671,5,246,0,0,1664,1671,5,247,0,0,1665,1671,5,248,0,0, + 1666,1671,5,249,0,0,1667,1671,5,250,0,0,1668,1671,5,251,0,0,1669, + 1671,5,252,0,0,1670,1657,1,0,0,0,1670,1658,1,0,0,0,1670,1659,1,0, + 0,0,1670,1660,1,0,0,0,1670,1661,1,0,0,0,1670,1662,1,0,0,0,1670,1663, + 1,0,0,0,1670,1664,1,0,0,0,1670,1665,1,0,0,0,1670,1666,1,0,0,0,1670, + 1667,1,0,0,0,1670,1668,1,0,0,0,1670,1669,1,0,0,0,1671,71,1,0,0,0, + 1672,1678,5,375,0,0,1673,1678,5,368,0,0,1674,1675,5,368,0,0,1675, + 1676,5,119,0,0,1676,1678,5,598,0,0,1677,1672,1,0,0,0,1677,1673,1, + 0,0,0,1677,1674,1,0,0,0,1678,73,1,0,0,0,1679,1680,5,188,0,0,1680, + 1681,7,16,0,0,1681,75,1,0,0,0,1682,1684,5,443,0,0,1683,1685,5,857, + 0,0,1684,1683,1,0,0,0,1684,1685,1,0,0,0,1685,1686,1,0,0,0,1686,1705, + 3,732,366,0,1687,1705,3,74,37,0,1688,1689,5,194,0,0,1689,1690,5, + 525,0,0,1690,1705,3,722,361,0,1691,1692,5,340,0,0,1692,1705,5,882, + 0,0,1693,1705,7,17,0,0,1694,1696,5,825,0,0,1695,1697,5,857,0,0,1696, + 1695,1,0,0,0,1696,1697,1,0,0,0,1697,1698,1,0,0,0,1698,1705,5,882, + 0,0,1699,1701,5,833,0,0,1700,1702,5,857,0,0,1701,1700,1,0,0,0,1701, + 1702,1,0,0,0,1702,1703,1,0,0,0,1703,1705,5,882,0,0,1704,1682,1,0, + 0,0,1704,1687,1,0,0,0,1704,1688,1,0,0,0,1704,1691,1,0,0,0,1704,1693, + 1,0,0,0,1704,1694,1,0,0,0,1704,1699,1,0,0,0,1705,77,1,0,0,0,1706, + 1708,7,18,0,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708,1709,1,0, + 0,0,1709,1710,3,722,361,0,1710,1711,3,744,372,0,1711,79,1,0,0,0, + 1712,1713,3,722,361,0,1713,1714,3,744,372,0,1714,81,1,0,0,0,1715, + 1716,5,340,0,0,1716,1739,5,882,0,0,1717,1718,5,444,0,0,1718,1739, + 5,162,0,0,1719,1721,5,114,0,0,1720,1719,1,0,0,0,1720,1721,1,0,0, + 0,1721,1722,1,0,0,0,1722,1739,5,47,0,0,1723,1724,5,354,0,0,1724, + 1734,5,162,0,0,1725,1726,5,502,0,0,1726,1734,5,162,0,0,1727,1728, + 5,136,0,0,1728,1729,5,162,0,0,1729,1734,5,360,0,0,1730,1731,5,112, + 0,0,1731,1732,5,162,0,0,1732,1734,5,360,0,0,1733,1723,1,0,0,0,1733, + 1725,1,0,0,0,1733,1727,1,0,0,0,1733,1730,1,0,0,0,1734,1739,1,0,0, + 0,1735,1736,5,162,0,0,1736,1737,5,591,0,0,1737,1739,7,12,0,0,1738, + 1715,1,0,0,0,1738,1717,1,0,0,0,1738,1720,1,0,0,0,1738,1733,1,0,0, + 0,1738,1735,1,0,0,0,1739,83,1,0,0,0,1740,1741,5,421,0,0,1741,1755, + 5,882,0,0,1742,1743,5,39,0,0,1743,1755,5,882,0,0,1744,1745,5,678, + 0,0,1745,1755,5,882,0,0,1746,1747,5,529,0,0,1747,1755,5,882,0,0, + 1748,1749,5,601,0,0,1749,1755,5,882,0,0,1750,1751,5,519,0,0,1751, + 1755,5,882,0,0,1752,1753,5,537,0,0,1753,1755,3,730,365,0,1754,1740, + 1,0,0,0,1754,1742,1,0,0,0,1754,1744,1,0,0,0,1754,1746,1,0,0,0,1754, + 1748,1,0,0,0,1754,1750,1,0,0,0,1754,1752,1,0,0,0,1755,85,1,0,0,0, + 1756,1757,5,866,0,0,1757,1762,3,88,44,0,1758,1759,5,868,0,0,1759, + 1761,3,88,44,0,1760,1758,1,0,0,0,1761,1764,1,0,0,0,1762,1760,1,0, + 0,0,1762,1763,1,0,0,0,1763,1765,1,0,0,0,1764,1762,1,0,0,0,1765,1766, + 5,867,0,0,1766,87,1,0,0,0,1767,1768,3,668,334,0,1768,1769,3,94,47, + 0,1769,1851,1,0,0,0,1770,1772,7,19,0,0,1771,1773,3,652,326,0,1772, + 1771,1,0,0,0,1772,1773,1,0,0,0,1773,1775,1,0,0,0,1774,1776,3,74, + 37,0,1775,1774,1,0,0,0,1775,1776,1,0,0,0,1776,1777,1,0,0,0,1777, + 1781,3,756,378,0,1778,1780,3,76,38,0,1779,1778,1,0,0,0,1780,1783, + 1,0,0,0,1781,1779,1,0,0,0,1781,1782,1,0,0,0,1782,1851,1,0,0,0,1783, + 1781,1,0,0,0,1784,1786,7,20,0,0,1785,1787,7,19,0,0,1786,1785,1,0, + 0,0,1786,1787,1,0,0,0,1787,1789,1,0,0,0,1788,1790,3,652,326,0,1789, + 1788,1,0,0,0,1789,1790,1,0,0,0,1790,1791,1,0,0,0,1791,1795,3,756, + 378,0,1792,1794,3,76,38,0,1793,1792,1,0,0,0,1794,1797,1,0,0,0,1795, + 1793,1,0,0,0,1795,1796,1,0,0,0,1796,1851,1,0,0,0,1797,1795,1,0,0, + 0,1798,1800,3,92,46,0,1799,1798,1,0,0,0,1799,1800,1,0,0,0,1800,1801, + 1,0,0,0,1801,1802,5,131,0,0,1802,1804,5,92,0,0,1803,1805,3,74,37, + 0,1804,1803,1,0,0,0,1804,1805,1,0,0,0,1805,1806,1,0,0,0,1806,1810, + 3,756,378,0,1807,1809,3,76,38,0,1808,1807,1,0,0,0,1809,1812,1,0, + 0,0,1810,1808,1,0,0,0,1810,1811,1,0,0,0,1811,1851,1,0,0,0,1812,1810, + 1,0,0,0,1813,1815,3,92,46,0,1814,1813,1,0,0,0,1814,1815,1,0,0,0, + 1815,1816,1,0,0,0,1816,1818,5,182,0,0,1817,1819,7,19,0,0,1818,1817, + 1,0,0,0,1818,1819,1,0,0,0,1819,1821,1,0,0,0,1820,1822,3,652,326, + 0,1821,1820,1,0,0,0,1821,1822,1,0,0,0,1822,1824,1,0,0,0,1823,1825, + 3,74,37,0,1824,1823,1,0,0,0,1824,1825,1,0,0,0,1825,1826,1,0,0,0, + 1826,1830,3,756,378,0,1827,1829,3,76,38,0,1828,1827,1,0,0,0,1829, + 1832,1,0,0,0,1830,1828,1,0,0,0,1830,1831,1,0,0,0,1831,1851,1,0,0, + 0,1832,1830,1,0,0,0,1833,1835,3,92,46,0,1834,1833,1,0,0,0,1834,1835, + 1,0,0,0,1835,1836,1,0,0,0,1836,1837,5,67,0,0,1837,1839,5,92,0,0, + 1838,1840,3,652,326,0,1839,1838,1,0,0,0,1839,1840,1,0,0,0,1840,1841, + 1,0,0,0,1841,1842,3,756,378,0,1842,1843,3,98,49,0,1843,1851,1,0, + 0,0,1844,1845,5,27,0,0,1845,1846,5,866,0,0,1846,1847,3,822,411,0, + 1847,1848,5,867,0,0,1848,1851,1,0,0,0,1849,1851,3,90,45,0,1850,1767, + 1,0,0,0,1850,1770,1,0,0,0,1850,1784,1,0,0,0,1850,1799,1,0,0,0,1850, + 1814,1,0,0,0,1850,1834,1,0,0,0,1850,1844,1,0,0,0,1850,1849,1,0,0, + 0,1851,89,1,0,0,0,1852,1854,3,92,46,0,1853,1852,1,0,0,0,1853,1854, + 1,0,0,0,1854,1855,1,0,0,0,1855,1856,5,27,0,0,1856,1857,5,866,0,0, + 1857,1858,3,822,411,0,1858,1863,5,867,0,0,1859,1861,5,114,0,0,1860, + 1859,1,0,0,0,1860,1861,1,0,0,0,1861,1862,1,0,0,0,1862,1864,5,57, + 0,0,1863,1860,1,0,0,0,1863,1864,1,0,0,0,1864,91,1,0,0,0,1865,1867, + 5,31,0,0,1866,1868,3,722,361,0,1867,1866,1,0,0,0,1867,1868,1,0,0, + 0,1868,93,1,0,0,0,1869,1873,3,744,372,0,1870,1872,3,96,48,0,1871, + 1870,1,0,0,0,1872,1875,1,0,0,0,1873,1871,1,0,0,0,1873,1874,1,0,0, + 0,1874,95,1,0,0,0,1875,1873,1,0,0,0,1876,1920,3,740,370,0,1877,1878, + 5,42,0,0,1878,1920,3,772,386,0,1879,1920,5,686,0,0,1880,1920,5,435, + 0,0,1881,1886,5,315,0,0,1882,1883,5,119,0,0,1883,1884,5,185,0,0, + 1884,1886,3,774,387,0,1885,1881,1,0,0,0,1885,1882,1,0,0,0,1886,1920, + 1,0,0,0,1887,1889,5,131,0,0,1888,1887,1,0,0,0,1888,1889,1,0,0,0, + 1889,1890,1,0,0,0,1890,1920,5,92,0,0,1891,1893,5,182,0,0,1892,1894, + 5,92,0,0,1893,1892,1,0,0,0,1893,1894,1,0,0,0,1894,1920,1,0,0,0,1895, + 1896,5,340,0,0,1896,1920,5,882,0,0,1897,1898,5,338,0,0,1898,1920, + 7,21,0,0,1899,1900,5,647,0,0,1900,1920,7,22,0,0,1901,1920,3,98,49, + 0,1902,1903,5,28,0,0,1903,1920,3,706,353,0,1904,1905,5,71,0,0,1905, + 1907,5,9,0,0,1906,1904,1,0,0,0,1906,1907,1,0,0,0,1907,1908,1,0,0, + 0,1908,1909,5,13,0,0,1909,1910,5,866,0,0,1910,1911,3,822,411,0,1911, + 1913,5,867,0,0,1912,1914,7,23,0,0,1913,1912,1,0,0,0,1913,1914,1, + 0,0,0,1914,1920,1,0,0,0,1915,1916,5,241,0,0,1916,1917,5,42,0,0,1917, + 1920,5,682,0,0,1918,1920,3,90,45,0,1919,1876,1,0,0,0,1919,1877,1, + 0,0,0,1919,1879,1,0,0,0,1919,1880,1,0,0,0,1919,1885,1,0,0,0,1919, + 1888,1,0,0,0,1919,1891,1,0,0,0,1919,1895,1,0,0,0,1919,1897,1,0,0, + 0,1919,1899,1,0,0,0,1919,1901,1,0,0,0,1919,1902,1,0,0,0,1919,1906, + 1,0,0,0,1919,1915,1,0,0,0,1919,1918,1,0,0,0,1920,97,1,0,0,0,1921, + 1922,5,138,0,0,1922,1924,3,662,331,0,1923,1925,3,756,378,0,1924, + 1923,1,0,0,0,1924,1925,1,0,0,0,1925,1928,1,0,0,0,1926,1927,5,110, + 0,0,1927,1929,7,24,0,0,1928,1926,1,0,0,0,1928,1929,1,0,0,0,1929, + 1931,1,0,0,0,1930,1932,3,100,50,0,1931,1930,1,0,0,0,1931,1932,1, + 0,0,0,1932,99,1,0,0,0,1933,1934,5,119,0,0,1934,1935,5,44,0,0,1935, + 1939,3,102,51,0,1936,1937,5,119,0,0,1937,1938,5,185,0,0,1938,1940, + 3,102,51,0,1939,1936,1,0,0,0,1939,1940,1,0,0,0,1940,1950,1,0,0,0, + 1941,1942,5,119,0,0,1942,1943,5,185,0,0,1943,1947,3,102,51,0,1944, + 1945,5,119,0,0,1945,1946,5,44,0,0,1946,1948,3,102,51,0,1947,1944, + 1,0,0,0,1947,1948,1,0,0,0,1948,1950,1,0,0,0,1949,1933,1,0,0,0,1949, + 1941,1,0,0,0,1950,101,1,0,0,0,1951,1960,5,146,0,0,1952,1960,5,22, + 0,0,1953,1954,5,155,0,0,1954,1960,5,116,0,0,1955,1956,5,502,0,0, + 1956,1960,5,305,0,0,1957,1958,5,155,0,0,1958,1960,5,42,0,0,1959, + 1951,1,0,0,0,1959,1952,1,0,0,0,1959,1953,1,0,0,0,1959,1955,1,0,0, + 0,1959,1957,1,0,0,0,1960,103,1,0,0,0,1961,1963,5,380,0,0,1962,1964, + 5,857,0,0,1963,1962,1,0,0,0,1963,1964,1,0,0,0,1964,1966,1,0,0,0, + 1965,1967,3,708,354,0,1966,1965,1,0,0,0,1966,1967,1,0,0,0,1967,2147, + 1,0,0,0,1968,1970,5,825,0,0,1969,1971,5,857,0,0,1970,1969,1,0,0, + 0,1970,1971,1,0,0,0,1971,1972,1,0,0,0,1972,2147,5,882,0,0,1973,1975, + 5,314,0,0,1974,1976,5,857,0,0,1975,1974,1,0,0,0,1975,1976,1,0,0, + 0,1976,1977,1,0,0,0,1977,2147,3,730,365,0,1978,1980,5,315,0,0,1979, + 1981,5,857,0,0,1980,1979,1,0,0,0,1980,1981,1,0,0,0,1981,1982,1,0, + 0,0,1982,2147,3,730,365,0,1983,1985,5,316,0,0,1984,1986,5,857,0, + 0,1985,1984,1,0,0,0,1985,1986,1,0,0,0,1986,1987,1,0,0,0,1987,2147, + 3,730,365,0,1988,1990,5,42,0,0,1989,1988,1,0,0,0,1989,1990,1,0,0, + 0,1990,1991,1,0,0,0,1991,1993,3,58,29,0,1992,1994,5,857,0,0,1993, + 1992,1,0,0,0,1993,1994,1,0,0,0,1994,1997,1,0,0,0,1995,1998,3,704, + 352,0,1996,1998,5,42,0,0,1997,1995,1,0,0,0,1997,1996,1,0,0,0,1998, + 2147,1,0,0,0,1999,2001,7,25,0,0,2000,2002,5,857,0,0,2001,2000,1, + 0,0,0,2001,2002,1,0,0,0,2002,2003,1,0,0,0,2003,2147,7,26,0,0,2004, + 2006,5,42,0,0,2005,2004,1,0,0,0,2005,2006,1,0,0,0,2006,2007,1,0, + 0,0,2007,2009,5,28,0,0,2008,2010,5,857,0,0,2009,2008,1,0,0,0,2009, + 2010,1,0,0,0,2010,2011,1,0,0,0,2011,2147,3,706,353,0,2012,2014,5, + 340,0,0,2013,2015,5,857,0,0,2014,2013,1,0,0,0,2014,2015,1,0,0,0, + 2015,2016,1,0,0,0,2016,2147,5,882,0,0,2017,2019,5,346,0,0,2018,2020, + 5,857,0,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1,0,0,0, + 2021,2147,7,27,0,0,2022,2024,5,349,0,0,2023,2025,5,857,0,0,2024, + 2023,1,0,0,0,2024,2025,1,0,0,0,2025,2026,1,0,0,0,2026,2147,5,882, + 0,0,2027,2028,7,28,0,0,2028,2030,5,367,0,0,2029,2031,5,857,0,0,2030, + 2029,1,0,0,0,2030,2031,1,0,0,0,2031,2032,1,0,0,0,2032,2147,5,882, + 0,0,2033,2035,5,365,0,0,2034,2036,5,857,0,0,2035,2034,1,0,0,0,2035, + 2036,1,0,0,0,2036,2037,1,0,0,0,2037,2147,7,26,0,0,2038,2040,5,376, + 0,0,2039,2041,5,857,0,0,2040,2039,1,0,0,0,2040,2041,1,0,0,0,2041, + 2042,1,0,0,0,2042,2147,5,882,0,0,2043,2045,7,29,0,0,2044,2046,5, + 857,0,0,2045,2044,1,0,0,0,2045,2046,1,0,0,0,2046,2047,1,0,0,0,2047, + 2147,7,26,0,0,2048,2050,7,30,0,0,2049,2051,5,857,0,0,2050,2049,1, + 0,0,0,2050,2051,1,0,0,0,2051,2052,1,0,0,0,2052,2147,3,730,365,0, + 2053,2055,5,377,0,0,2054,2056,5,857,0,0,2055,2054,1,0,0,0,2055,2056, + 1,0,0,0,2056,2057,1,0,0,0,2057,2147,3,730,365,0,2058,2059,5,82,0, + 0,2059,2061,5,367,0,0,2060,2062,5,857,0,0,2061,2060,1,0,0,0,2061, + 2062,1,0,0,0,2062,2063,1,0,0,0,2063,2147,5,882,0,0,2064,2066,5,431, + 0,0,2065,2067,5,857,0,0,2066,2065,1,0,0,0,2066,2067,1,0,0,0,2067, + 2068,1,0,0,0,2068,2147,7,31,0,0,2069,2071,5,443,0,0,2070,2072,5, + 857,0,0,2071,2070,1,0,0,0,2071,2072,1,0,0,0,2072,2073,1,0,0,0,2073, + 2147,3,732,366,0,2074,2076,5,480,0,0,2075,2077,5,857,0,0,2076,2075, + 1,0,0,0,2076,2077,1,0,0,0,2077,2078,1,0,0,0,2078,2147,3,730,365, + 0,2079,2081,5,490,0,0,2080,2082,5,857,0,0,2081,2080,1,0,0,0,2081, + 2082,1,0,0,0,2082,2083,1,0,0,0,2083,2147,3,730,365,0,2084,2086,5, + 520,0,0,2085,2087,5,857,0,0,2086,2085,1,0,0,0,2086,2087,1,0,0,0, + 2087,2088,1,0,0,0,2088,2147,7,14,0,0,2089,2091,5,529,0,0,2090,2092, + 5,857,0,0,2091,2090,1,0,0,0,2091,2092,1,0,0,0,2092,2093,1,0,0,0, + 2093,2147,5,882,0,0,2094,2096,5,588,0,0,2095,2097,5,857,0,0,2096, + 2095,1,0,0,0,2096,2097,1,0,0,0,2097,2098,1,0,0,0,2098,2147,7,32, + 0,0,2099,2100,5,640,0,0,2100,2147,5,664,0,0,2101,2103,5,833,0,0, + 2102,2104,5,857,0,0,2103,2102,1,0,0,0,2103,2104,1,0,0,0,2104,2105, + 1,0,0,0,2105,2147,5,882,0,0,2106,2108,5,642,0,0,2107,2109,5,857, + 0,0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2110,1,0,0,0,2110,2147, + 7,14,0,0,2111,2113,5,643,0,0,2112,2114,5,857,0,0,2113,2112,1,0,0, + 0,2113,2114,1,0,0,0,2114,2115,1,0,0,0,2115,2147,7,14,0,0,2116,2118, + 5,644,0,0,2117,2119,5,857,0,0,2118,2117,1,0,0,0,2118,2119,1,0,0, + 0,2119,2122,1,0,0,0,2120,2123,5,42,0,0,2121,2123,3,730,365,0,2122, + 2120,1,0,0,0,2122,2121,1,0,0,0,2123,2147,1,0,0,0,2124,2125,5,658, + 0,0,2125,2127,3,682,341,0,2126,2128,3,108,54,0,2127,2126,1,0,0,0, + 2127,2128,1,0,0,0,2128,2147,1,0,0,0,2129,2130,5,659,0,0,2130,2131, + 5,857,0,0,2131,2147,3,106,53,0,2132,2147,3,108,54,0,2133,2135,5, + 665,0,0,2134,2136,5,857,0,0,2135,2134,1,0,0,0,2135,2136,1,0,0,0, + 2136,2137,1,0,0,0,2137,2147,7,26,0,0,2138,2140,5,181,0,0,2139,2141, + 5,857,0,0,2140,2139,1,0,0,0,2140,2141,1,0,0,0,2141,2142,1,0,0,0, + 2142,2143,5,866,0,0,2143,2144,3,660,330,0,2144,2145,5,867,0,0,2145, + 2147,1,0,0,0,2146,1961,1,0,0,0,2146,1968,1,0,0,0,2146,1973,1,0,0, + 0,2146,1978,1,0,0,0,2146,1983,1,0,0,0,2146,1989,1,0,0,0,2146,1999, + 1,0,0,0,2146,2005,1,0,0,0,2146,2012,1,0,0,0,2146,2017,1,0,0,0,2146, + 2022,1,0,0,0,2146,2027,1,0,0,0,2146,2033,1,0,0,0,2146,2038,1,0,0, + 0,2146,2043,1,0,0,0,2146,2048,1,0,0,0,2146,2053,1,0,0,0,2146,2058, + 1,0,0,0,2146,2064,1,0,0,0,2146,2069,1,0,0,0,2146,2074,1,0,0,0,2146, + 2079,1,0,0,0,2146,2084,1,0,0,0,2146,2089,1,0,0,0,2146,2094,1,0,0, + 0,2146,2099,1,0,0,0,2146,2101,1,0,0,0,2146,2106,1,0,0,0,2146,2111, + 1,0,0,0,2146,2116,1,0,0,0,2146,2124,1,0,0,0,2146,2129,1,0,0,0,2146, + 2132,1,0,0,0,2146,2133,1,0,0,0,2146,2138,1,0,0,0,2147,105,1,0,0, + 0,2148,2149,7,33,0,0,2149,107,1,0,0,0,2150,2151,5,647,0,0,2151,2152, + 7,22,0,0,2152,109,1,0,0,0,2153,2154,5,130,0,0,2154,2155,5,20,0,0, + 2155,2158,3,112,56,0,2156,2157,5,528,0,0,2157,2159,3,730,365,0,2158, + 2156,1,0,0,0,2158,2159,1,0,0,0,2159,2167,1,0,0,0,2160,2161,5,652, + 0,0,2161,2162,5,20,0,0,2162,2165,3,114,57,0,2163,2164,5,653,0,0, + 2164,2166,3,730,365,0,2165,2163,1,0,0,0,2165,2166,1,0,0,0,2166,2168, + 1,0,0,0,2167,2160,1,0,0,0,2167,2168,1,0,0,0,2168,2180,1,0,0,0,2169, + 2170,5,866,0,0,2170,2175,3,116,58,0,2171,2172,5,868,0,0,2172,2174, + 3,116,58,0,2173,2171,1,0,0,0,2174,2177,1,0,0,0,2175,2173,1,0,0,0, + 2175,2176,1,0,0,0,2176,2178,1,0,0,0,2177,2175,1,0,0,0,2178,2179, + 5,867,0,0,2179,2181,1,0,0,0,2180,2169,1,0,0,0,2180,2181,1,0,0,0, + 2181,111,1,0,0,0,2182,2184,5,101,0,0,2183,2182,1,0,0,0,2183,2184, + 1,0,0,0,2184,2185,1,0,0,0,2185,2186,5,418,0,0,2186,2187,5,866,0, + 0,2187,2188,3,822,411,0,2188,2189,5,867,0,0,2189,2229,1,0,0,0,2190, + 2192,5,101,0,0,2191,2190,1,0,0,0,2191,2192,1,0,0,0,2192,2193,1,0, + 0,0,2193,2197,5,92,0,0,2194,2195,5,308,0,0,2195,2196,5,857,0,0,2196, + 2198,7,34,0,0,2197,2194,1,0,0,0,2197,2198,1,0,0,0,2198,2199,1,0, + 0,0,2199,2201,5,866,0,0,2200,2202,3,670,335,0,2201,2200,1,0,0,0, + 2201,2202,1,0,0,0,2202,2203,1,0,0,0,2203,2229,5,867,0,0,2204,2214, + 5,134,0,0,2205,2206,5,866,0,0,2206,2207,3,822,411,0,2207,2208,5, + 867,0,0,2208,2215,1,0,0,0,2209,2210,5,337,0,0,2210,2211,5,866,0, + 0,2211,2212,3,670,335,0,2212,2213,5,867,0,0,2213,2215,1,0,0,0,2214, + 2205,1,0,0,0,2214,2209,1,0,0,0,2215,2229,1,0,0,0,2216,2226,5,449, + 0,0,2217,2218,5,866,0,0,2218,2219,3,822,411,0,2219,2220,5,867,0, + 0,2220,2227,1,0,0,0,2221,2222,5,337,0,0,2222,2223,5,866,0,0,2223, + 2224,3,670,335,0,2224,2225,5,867,0,0,2225,2227,1,0,0,0,2226,2217, + 1,0,0,0,2226,2221,1,0,0,0,2227,2229,1,0,0,0,2228,2183,1,0,0,0,2228, + 2191,1,0,0,0,2228,2204,1,0,0,0,2228,2216,1,0,0,0,2229,113,1,0,0, + 0,2230,2232,5,101,0,0,2231,2230,1,0,0,0,2231,2232,1,0,0,0,2232,2233, + 1,0,0,0,2233,2234,5,418,0,0,2234,2235,5,866,0,0,2235,2236,3,822, + 411,0,2236,2237,5,867,0,0,2237,2252,1,0,0,0,2238,2240,5,101,0,0, + 2239,2238,1,0,0,0,2239,2240,1,0,0,0,2240,2241,1,0,0,0,2241,2245, + 5,92,0,0,2242,2243,5,308,0,0,2243,2244,5,857,0,0,2244,2246,7,34, + 0,0,2245,2242,1,0,0,0,2245,2246,1,0,0,0,2246,2247,1,0,0,0,2247,2248, + 5,866,0,0,2248,2249,3,670,335,0,2249,2250,5,867,0,0,2250,2252,1, + 0,0,0,2251,2231,1,0,0,0,2251,2239,1,0,0,0,2252,115,1,0,0,0,2253, + 2254,5,130,0,0,2254,2255,3,688,344,0,2255,2256,5,189,0,0,2256,2257, + 5,447,0,0,2257,2258,5,662,0,0,2258,2259,5,866,0,0,2259,2264,3,118, + 59,0,2260,2261,5,868,0,0,2261,2263,3,118,59,0,2262,2260,1,0,0,0, + 2263,2266,1,0,0,0,2264,2262,1,0,0,0,2264,2265,1,0,0,0,2265,2267, + 1,0,0,0,2266,2264,1,0,0,0,2267,2271,5,867,0,0,2268,2270,3,124,62, + 0,2269,2268,1,0,0,0,2270,2273,1,0,0,0,2271,2269,1,0,0,0,2271,2272, + 1,0,0,0,2272,2285,1,0,0,0,2273,2271,1,0,0,0,2274,2275,5,866,0,0, + 2275,2280,3,122,61,0,2276,2277,5,868,0,0,2277,2279,3,122,61,0,2278, + 2276,1,0,0,0,2279,2282,1,0,0,0,2280,2278,1,0,0,0,2280,2281,1,0,0, + 0,2281,2283,1,0,0,0,2282,2280,1,0,0,0,2283,2284,5,867,0,0,2284,2286, + 1,0,0,0,2285,2274,1,0,0,0,2285,2286,1,0,0,0,2286,2400,1,0,0,0,2287, + 2288,5,130,0,0,2288,2289,3,688,344,0,2289,2290,5,189,0,0,2290,2291, + 5,447,0,0,2291,2292,5,662,0,0,2292,2296,3,118,59,0,2293,2295,3,124, + 62,0,2294,2293,1,0,0,0,2295,2298,1,0,0,0,2296,2294,1,0,0,0,2296, + 2297,1,0,0,0,2297,2310,1,0,0,0,2298,2296,1,0,0,0,2299,2300,5,866, + 0,0,2300,2305,3,122,61,0,2301,2302,5,868,0,0,2302,2304,3,122,61, + 0,2303,2301,1,0,0,0,2304,2307,1,0,0,0,2305,2303,1,0,0,0,2305,2306, + 1,0,0,0,2306,2308,1,0,0,0,2307,2305,1,0,0,0,2308,2309,5,867,0,0, + 2309,2311,1,0,0,0,2310,2299,1,0,0,0,2310,2311,1,0,0,0,2311,2400, + 1,0,0,0,2312,2313,5,130,0,0,2313,2314,3,688,344,0,2314,2315,5,189, + 0,0,2315,2316,5,80,0,0,2316,2317,5,866,0,0,2317,2322,3,118,59,0, + 2318,2319,5,868,0,0,2319,2321,3,118,59,0,2320,2318,1,0,0,0,2321, + 2324,1,0,0,0,2322,2320,1,0,0,0,2322,2323,1,0,0,0,2323,2325,1,0,0, + 0,2324,2322,1,0,0,0,2325,2329,5,867,0,0,2326,2328,3,124,62,0,2327, + 2326,1,0,0,0,2328,2331,1,0,0,0,2329,2327,1,0,0,0,2329,2330,1,0,0, + 0,2330,2343,1,0,0,0,2331,2329,1,0,0,0,2332,2333,5,866,0,0,2333,2338, + 3,122,61,0,2334,2335,5,868,0,0,2335,2337,3,122,61,0,2336,2334,1, + 0,0,0,2337,2340,1,0,0,0,2338,2336,1,0,0,0,2338,2339,1,0,0,0,2339, + 2341,1,0,0,0,2340,2338,1,0,0,0,2341,2342,5,867,0,0,2342,2344,1,0, + 0,0,2343,2332,1,0,0,0,2343,2344,1,0,0,0,2344,2400,1,0,0,0,2345,2346, + 5,130,0,0,2346,2347,3,688,344,0,2347,2348,5,189,0,0,2348,2349,5, + 80,0,0,2349,2350,5,866,0,0,2350,2355,3,120,60,0,2351,2352,5,868, + 0,0,2352,2354,3,120,60,0,2353,2351,1,0,0,0,2354,2357,1,0,0,0,2355, + 2353,1,0,0,0,2355,2356,1,0,0,0,2356,2358,1,0,0,0,2357,2355,1,0,0, + 0,2358,2362,5,867,0,0,2359,2361,3,124,62,0,2360,2359,1,0,0,0,2361, + 2364,1,0,0,0,2362,2360,1,0,0,0,2362,2363,1,0,0,0,2363,2376,1,0,0, + 0,2364,2362,1,0,0,0,2365,2366,5,866,0,0,2366,2371,3,122,61,0,2367, + 2368,5,868,0,0,2368,2370,3,122,61,0,2369,2367,1,0,0,0,2370,2373, + 1,0,0,0,2371,2369,1,0,0,0,2371,2372,1,0,0,0,2372,2374,1,0,0,0,2373, + 2371,1,0,0,0,2374,2375,5,867,0,0,2375,2377,1,0,0,0,2376,2365,1,0, + 0,0,2376,2377,1,0,0,0,2377,2400,1,0,0,0,2378,2379,5,130,0,0,2379, + 2383,3,688,344,0,2380,2382,3,124,62,0,2381,2380,1,0,0,0,2382,2385, + 1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0,0,2384,2397,1,0,0,0,2385, + 2383,1,0,0,0,2386,2387,5,866,0,0,2387,2392,3,122,61,0,2388,2389, + 5,868,0,0,2389,2391,3,122,61,0,2390,2388,1,0,0,0,2391,2394,1,0,0, + 0,2392,2390,1,0,0,0,2392,2393,1,0,0,0,2393,2395,1,0,0,0,2394,2392, + 1,0,0,0,2395,2396,5,867,0,0,2396,2398,1,0,0,0,2397,2386,1,0,0,0, + 2397,2398,1,0,0,0,2398,2400,1,0,0,0,2399,2253,1,0,0,0,2399,2287, + 1,0,0,0,2399,2312,1,0,0,0,2399,2345,1,0,0,0,2399,2378,1,0,0,0,2400, + 117,1,0,0,0,2401,2405,3,742,371,0,2402,2405,3,822,411,0,2403,2405, + 5,111,0,0,2404,2401,1,0,0,0,2404,2402,1,0,0,0,2404,2403,1,0,0,0, + 2405,119,1,0,0,0,2406,2407,5,866,0,0,2407,2410,3,118,59,0,2408,2409, + 5,868,0,0,2409,2411,3,118,59,0,2410,2408,1,0,0,0,2411,2412,1,0,0, + 0,2412,2410,1,0,0,0,2412,2413,1,0,0,0,2413,2414,1,0,0,0,2414,2415, + 5,867,0,0,2415,121,1,0,0,0,2416,2417,5,652,0,0,2417,2421,3,722,361, + 0,2418,2420,3,124,62,0,2419,2418,1,0,0,0,2420,2423,1,0,0,0,2421, + 2419,1,0,0,0,2421,2422,1,0,0,0,2422,123,1,0,0,0,2423,2421,1,0,0, + 0,2424,2426,5,42,0,0,2425,2424,1,0,0,0,2425,2426,1,0,0,0,2426,2428, + 1,0,0,0,2427,2429,5,647,0,0,2428,2427,1,0,0,0,2428,2429,1,0,0,0, + 2429,2430,1,0,0,0,2430,2432,5,380,0,0,2431,2433,5,857,0,0,2432,2431, + 1,0,0,0,2432,2433,1,0,0,0,2433,2434,1,0,0,0,2434,2473,3,708,354, + 0,2435,2437,5,340,0,0,2436,2438,5,857,0,0,2437,2436,1,0,0,0,2437, + 2438,1,0,0,0,2438,2439,1,0,0,0,2439,2473,5,882,0,0,2440,2441,5,360, + 0,0,2441,2443,5,367,0,0,2442,2444,5,857,0,0,2443,2442,1,0,0,0,2443, + 2444,1,0,0,0,2444,2445,1,0,0,0,2445,2473,5,882,0,0,2446,2447,5,82, + 0,0,2447,2449,5,367,0,0,2448,2450,5,857,0,0,2449,2448,1,0,0,0,2449, + 2450,1,0,0,0,2450,2451,1,0,0,0,2451,2473,5,882,0,0,2452,2454,5,480, + 0,0,2453,2455,5,857,0,0,2454,2453,1,0,0,0,2454,2455,1,0,0,0,2455, + 2456,1,0,0,0,2456,2473,3,730,365,0,2457,2459,5,490,0,0,2458,2460, + 5,857,0,0,2459,2458,1,0,0,0,2459,2460,1,0,0,0,2460,2461,1,0,0,0, + 2461,2473,3,730,365,0,2462,2464,5,658,0,0,2463,2465,5,857,0,0,2464, + 2463,1,0,0,0,2464,2465,1,0,0,0,2465,2466,1,0,0,0,2466,2473,3,682, + 341,0,2467,2469,5,504,0,0,2468,2470,5,857,0,0,2469,2468,1,0,0,0, + 2469,2470,1,0,0,0,2470,2471,1,0,0,0,2471,2473,3,722,361,0,2472,2425, + 1,0,0,0,2472,2435,1,0,0,0,2472,2440,1,0,0,0,2472,2446,1,0,0,0,2472, + 2452,1,0,0,0,2472,2457,1,0,0,0,2472,2462,1,0,0,0,2472,2467,1,0,0, + 0,2473,125,1,0,0,0,2474,2475,5,8,0,0,2475,2477,7,0,0,0,2476,2478, + 3,638,319,0,2477,2476,1,0,0,0,2477,2478,1,0,0,0,2478,2480,1,0,0, + 0,2479,2481,3,56,28,0,2480,2479,1,0,0,0,2481,2482,1,0,0,0,2482,2480, + 1,0,0,0,2482,2483,1,0,0,0,2483,2493,1,0,0,0,2484,2485,5,8,0,0,2485, + 2486,7,0,0,0,2486,2487,3,638,319,0,2487,2488,5,677,0,0,2488,2489, + 5,360,0,0,2489,2490,5,367,0,0,2490,2491,5,496,0,0,2491,2493,1,0, + 0,0,2492,2474,1,0,0,0,2492,2484,1,0,0,0,2493,127,1,0,0,0,2494,2496, + 5,8,0,0,2495,2497,3,62,31,0,2496,2495,1,0,0,0,2496,2497,1,0,0,0, + 2497,2498,1,0,0,0,2498,2499,5,385,0,0,2499,2503,3,718,359,0,2500, + 2501,5,119,0,0,2501,2502,5,590,0,0,2502,2504,3,64,32,0,2503,2500, + 1,0,0,0,2503,2504,1,0,0,0,2504,2511,1,0,0,0,2505,2506,5,119,0,0, + 2506,2508,5,343,0,0,2507,2509,5,114,0,0,2508,2507,1,0,0,0,2508,2509, + 1,0,0,0,2509,2510,1,0,0,0,2510,2512,5,541,0,0,2511,2505,1,0,0,0, + 2511,2512,1,0,0,0,2512,2516,1,0,0,0,2513,2514,5,141,0,0,2514,2515, + 5,176,0,0,2515,2517,3,718,359,0,2516,2513,1,0,0,0,2516,2517,1,0, + 0,0,2517,2519,1,0,0,0,2518,2520,3,72,36,0,2519,2518,1,0,0,0,2519, + 2520,1,0,0,0,2520,2523,1,0,0,0,2521,2522,5,340,0,0,2522,2524,5,882, + 0,0,2523,2521,1,0,0,0,2523,2524,1,0,0,0,2524,2527,1,0,0,0,2525,2526, + 5,371,0,0,2526,2528,3,432,216,0,2527,2525,1,0,0,0,2527,2528,1,0, + 0,0,2528,129,1,0,0,0,2529,2530,5,8,0,0,2530,2531,5,409,0,0,2531, + 2535,3,642,321,0,2532,2534,3,82,41,0,2533,2532,1,0,0,0,2534,2537, + 1,0,0,0,2535,2533,1,0,0,0,2535,2536,1,0,0,0,2536,131,1,0,0,0,2537, + 2535,1,0,0,0,2538,2539,5,8,0,0,2539,2540,5,433,0,0,2540,2541,5,585, + 0,0,2541,2542,5,801,0,0,2542,2543,5,453,0,0,2543,2544,5,92,0,0,2544, + 133,1,0,0,0,2545,2546,5,8,0,0,2546,2547,5,451,0,0,2547,2548,5,74, + 0,0,2548,2549,3,722,361,0,2549,2550,5,6,0,0,2550,2551,5,671,0,0, + 2551,2557,5,882,0,0,2552,2554,5,428,0,0,2553,2555,5,857,0,0,2554, + 2553,1,0,0,0,2554,2555,1,0,0,0,2555,2556,1,0,0,0,2556,2558,3,732, + 366,0,2557,2552,1,0,0,0,2557,2558,1,0,0,0,2558,2560,1,0,0,0,2559, + 2561,5,687,0,0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2562,1,0, + 0,0,2562,2564,5,380,0,0,2563,2565,5,857,0,0,2564,2563,1,0,0,0,2564, + 2565,1,0,0,0,2565,2566,1,0,0,0,2566,2567,3,708,354,0,2567,135,1, + 0,0,0,2568,2569,5,8,0,0,2569,2570,5,132,0,0,2570,2574,3,718,359, + 0,2571,2573,3,82,41,0,2572,2571,1,0,0,0,2573,2576,1,0,0,0,2574,2572, + 1,0,0,0,2574,2575,1,0,0,0,2575,137,1,0,0,0,2576,2574,1,0,0,0,2577, + 2578,5,8,0,0,2578,2579,5,592,0,0,2579,2580,3,722,361,0,2580,2581, + 5,518,0,0,2581,2582,5,866,0,0,2582,2587,3,84,42,0,2583,2584,5,868, + 0,0,2584,2586,3,84,42,0,2585,2583,1,0,0,0,2586,2589,1,0,0,0,2587, + 2585,1,0,0,0,2587,2588,1,0,0,0,2588,2590,1,0,0,0,2589,2587,1,0,0, + 0,2590,2591,5,867,0,0,2591,139,1,0,0,0,2592,2593,5,8,0,0,2593,2594, + 5,173,0,0,2594,2603,3,662,331,0,2595,2600,3,146,73,0,2596,2597,5, + 868,0,0,2597,2599,3,146,73,0,2598,2596,1,0,0,0,2599,2602,1,0,0,0, + 2600,2598,1,0,0,0,2600,2601,1,0,0,0,2601,2604,1,0,0,0,2602,2600, + 1,0,0,0,2603,2595,1,0,0,0,2603,2604,1,0,0,0,2604,2612,1,0,0,0,2605, + 2609,3,148,74,0,2606,2608,3,148,74,0,2607,2606,1,0,0,0,2608,2611, + 1,0,0,0,2609,2607,1,0,0,0,2609,2610,1,0,0,0,2610,2613,1,0,0,0,2611, + 2609,1,0,0,0,2612,2605,1,0,0,0,2612,2613,1,0,0,0,2613,141,1,0,0, + 0,2614,2616,5,8,0,0,2615,2617,5,180,0,0,2616,2615,1,0,0,0,2616,2617, + 1,0,0,0,2617,2618,1,0,0,0,2618,2619,5,658,0,0,2619,2620,3,682,341, + 0,2620,2621,7,35,0,0,2621,2622,5,361,0,0,2622,2628,5,882,0,0,2623, + 2625,5,428,0,0,2624,2626,5,857,0,0,2625,2624,1,0,0,0,2625,2626,1, + 0,0,0,2626,2627,1,0,0,0,2627,2629,3,732,366,0,2628,2623,1,0,0,0, + 2628,2629,1,0,0,0,2629,2631,1,0,0,0,2630,2632,5,687,0,0,2631,2630, + 1,0,0,0,2631,2632,1,0,0,0,2632,2636,1,0,0,0,2633,2634,5,141,0,0, + 2634,2635,5,176,0,0,2635,2637,3,680,340,0,2636,2633,1,0,0,0,2636, + 2637,1,0,0,0,2637,2643,1,0,0,0,2638,2640,5,314,0,0,2639,2641,5,857, + 0,0,2640,2639,1,0,0,0,2640,2641,1,0,0,0,2641,2642,1,0,0,0,2642,2644, + 3,732,366,0,2643,2638,1,0,0,0,2643,2644,1,0,0,0,2644,2647,1,0,0, + 0,2645,2646,5,155,0,0,2646,2648,7,36,0,0,2647,2645,1,0,0,0,2647, + 2648,1,0,0,0,2648,2654,1,0,0,0,2649,2651,5,376,0,0,2650,2652,5,857, + 0,0,2651,2650,1,0,0,0,2651,2652,1,0,0,0,2652,2653,1,0,0,0,2653,2655, + 5,882,0,0,2654,2649,1,0,0,0,2654,2655,1,0,0,0,2655,2661,1,0,0,0, + 2656,2658,5,380,0,0,2657,2659,5,857,0,0,2658,2657,1,0,0,0,2658,2659, + 1,0,0,0,2659,2660,1,0,0,0,2660,2662,3,708,354,0,2661,2656,1,0,0, + 0,2661,2662,1,0,0,0,2662,2668,1,0,0,0,2663,2665,5,825,0,0,2664,2666, + 5,857,0,0,2665,2664,1,0,0,0,2665,2666,1,0,0,0,2666,2667,1,0,0,0, + 2667,2669,5,882,0,0,2668,2663,1,0,0,0,2668,2669,1,0,0,0,2669,143, + 1,0,0,0,2670,2674,5,8,0,0,2671,2672,5,308,0,0,2672,2673,5,857,0, + 0,2673,2675,7,11,0,0,2674,2671,1,0,0,0,2674,2675,1,0,0,0,2675,2677, + 1,0,0,0,2676,2678,3,62,31,0,2677,2676,1,0,0,0,2677,2678,1,0,0,0, + 2678,2682,1,0,0,0,2679,2680,5,162,0,0,2680,2681,5,591,0,0,2681,2683, + 7,12,0,0,2682,2679,1,0,0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684, + 2685,5,684,0,0,2685,2690,3,646,323,0,2686,2687,5,866,0,0,2687,2688, + 3,670,335,0,2688,2689,5,867,0,0,2689,2691,1,0,0,0,2690,2686,1,0, + 0,0,2690,2691,1,0,0,0,2691,2692,1,0,0,0,2692,2693,5,13,0,0,2693, + 2700,3,210,105,0,2694,2696,5,194,0,0,2695,2697,7,13,0,0,2696,2695, + 1,0,0,0,2696,2697,1,0,0,0,2697,2698,1,0,0,0,2698,2699,5,27,0,0,2699, + 2701,5,121,0,0,2700,2694,1,0,0,0,2700,2701,1,0,0,0,2701,145,1,0, + 0,0,2702,2709,3,104,52,0,2703,2705,5,868,0,0,2704,2703,1,0,0,0,2704, + 2705,1,0,0,0,2705,2706,1,0,0,0,2706,2708,3,104,52,0,2707,2704,1, + 0,0,0,2708,2711,1,0,0,0,2709,2707,1,0,0,0,2709,2710,1,0,0,0,2710, + 2967,1,0,0,0,2711,2709,1,0,0,0,2712,2714,5,6,0,0,2713,2715,5,29, + 0,0,2714,2713,1,0,0,0,2714,2715,1,0,0,0,2715,2716,1,0,0,0,2716,2717, + 3,674,337,0,2717,2721,3,94,47,0,2718,2722,5,402,0,0,2719,2720,5, + 306,0,0,2720,2722,3,674,337,0,2721,2718,1,0,0,0,2721,2719,1,0,0, + 0,2721,2722,1,0,0,0,2722,2967,1,0,0,0,2723,2725,5,6,0,0,2724,2726, + 5,29,0,0,2725,2724,1,0,0,0,2725,2726,1,0,0,0,2726,2727,1,0,0,0,2727, + 2728,5,866,0,0,2728,2729,3,674,337,0,2729,2736,3,94,47,0,2730,2731, + 5,868,0,0,2731,2732,3,674,337,0,2732,2733,3,94,47,0,2733,2735,1, + 0,0,0,2734,2730,1,0,0,0,2735,2738,1,0,0,0,2736,2734,1,0,0,0,2736, + 2737,1,0,0,0,2737,2739,1,0,0,0,2738,2736,1,0,0,0,2739,2740,5,867, + 0,0,2740,2967,1,0,0,0,2741,2742,5,6,0,0,2742,2744,7,19,0,0,2743, + 2745,3,652,326,0,2744,2743,1,0,0,0,2744,2745,1,0,0,0,2745,2747,1, + 0,0,0,2746,2748,3,74,37,0,2747,2746,1,0,0,0,2747,2748,1,0,0,0,2748, + 2749,1,0,0,0,2749,2753,3,756,378,0,2750,2752,3,76,38,0,2751,2750, + 1,0,0,0,2752,2755,1,0,0,0,2753,2751,1,0,0,0,2753,2754,1,0,0,0,2754, + 2967,1,0,0,0,2755,2753,1,0,0,0,2756,2757,5,6,0,0,2757,2759,7,20, + 0,0,2758,2760,7,19,0,0,2759,2758,1,0,0,0,2759,2760,1,0,0,0,2760, + 2762,1,0,0,0,2761,2763,3,652,326,0,2762,2761,1,0,0,0,2762,2763,1, + 0,0,0,2763,2764,1,0,0,0,2764,2768,3,756,378,0,2765,2767,3,76,38, + 0,2766,2765,1,0,0,0,2767,2770,1,0,0,0,2768,2766,1,0,0,0,2768,2769, + 1,0,0,0,2769,2967,1,0,0,0,2770,2768,1,0,0,0,2771,2776,5,6,0,0,2772, + 2774,5,31,0,0,2773,2775,3,722,361,0,2774,2773,1,0,0,0,2774,2775, + 1,0,0,0,2775,2777,1,0,0,0,2776,2772,1,0,0,0,2776,2777,1,0,0,0,2777, + 2778,1,0,0,0,2778,2779,5,131,0,0,2779,2781,5,92,0,0,2780,2782,3, + 74,37,0,2781,2780,1,0,0,0,2781,2782,1,0,0,0,2782,2783,1,0,0,0,2783, + 2787,3,756,378,0,2784,2786,3,76,38,0,2785,2784,1,0,0,0,2786,2789, + 1,0,0,0,2787,2785,1,0,0,0,2787,2788,1,0,0,0,2788,2967,1,0,0,0,2789, + 2787,1,0,0,0,2790,2795,5,6,0,0,2791,2793,5,31,0,0,2792,2794,3,722, + 361,0,2793,2792,1,0,0,0,2793,2794,1,0,0,0,2794,2796,1,0,0,0,2795, + 2791,1,0,0,0,2795,2796,1,0,0,0,2796,2797,1,0,0,0,2797,2799,5,182, + 0,0,2798,2800,7,19,0,0,2799,2798,1,0,0,0,2799,2800,1,0,0,0,2800, + 2802,1,0,0,0,2801,2803,3,652,326,0,2802,2801,1,0,0,0,2802,2803,1, + 0,0,0,2803,2805,1,0,0,0,2804,2806,3,74,37,0,2805,2804,1,0,0,0,2805, + 2806,1,0,0,0,2806,2807,1,0,0,0,2807,2811,3,756,378,0,2808,2810,3, + 76,38,0,2809,2808,1,0,0,0,2810,2813,1,0,0,0,2811,2809,1,0,0,0,2811, + 2812,1,0,0,0,2812,2967,1,0,0,0,2813,2811,1,0,0,0,2814,2819,5,6,0, + 0,2815,2817,5,31,0,0,2816,2818,3,722,361,0,2817,2816,1,0,0,0,2817, + 2818,1,0,0,0,2818,2820,1,0,0,0,2819,2815,1,0,0,0,2819,2820,1,0,0, + 0,2820,2821,1,0,0,0,2821,2822,5,67,0,0,2822,2824,5,92,0,0,2823,2825, + 3,652,326,0,2824,2823,1,0,0,0,2824,2825,1,0,0,0,2825,2826,1,0,0, + 0,2826,2827,3,756,378,0,2827,2828,3,98,49,0,2828,2967,1,0,0,0,2829, + 2831,5,6,0,0,2830,2832,3,90,45,0,2831,2830,1,0,0,0,2831,2832,1,0, + 0,0,2832,2967,1,0,0,0,2833,2834,5,51,0,0,2834,2835,7,37,0,0,2835, + 2967,3,722,361,0,2836,2837,5,8,0,0,2837,2838,7,37,0,0,2838,2840, + 3,722,361,0,2839,2841,5,114,0,0,2840,2839,1,0,0,0,2840,2841,1,0, + 0,0,2841,2843,1,0,0,0,2842,2844,5,57,0,0,2843,2842,1,0,0,0,2843, + 2844,1,0,0,0,2844,2967,1,0,0,0,2845,2847,5,308,0,0,2846,2848,5,857, + 0,0,2847,2846,1,0,0,0,2847,2848,1,0,0,0,2848,2849,1,0,0,0,2849,2967, + 7,38,0,0,2850,2852,5,8,0,0,2851,2853,5,29,0,0,2852,2851,1,0,0,0, + 2852,2853,1,0,0,0,2853,2854,1,0,0,0,2854,2862,3,674,337,0,2855,2856, + 5,155,0,0,2856,2857,5,42,0,0,2857,2863,3,772,386,0,2858,2859,5,155, + 0,0,2859,2863,7,17,0,0,2860,2861,5,51,0,0,2861,2863,5,42,0,0,2862, + 2855,1,0,0,0,2862,2858,1,0,0,0,2862,2860,1,0,0,0,2863,2967,1,0,0, + 0,2864,2865,5,8,0,0,2865,2866,5,82,0,0,2866,2867,3,652,326,0,2867, + 2868,7,17,0,0,2868,2967,1,0,0,0,2869,2871,5,25,0,0,2870,2872,5,29, + 0,0,2871,2870,1,0,0,0,2871,2872,1,0,0,0,2872,2873,1,0,0,0,2873,2874, + 3,674,337,0,2874,2875,3,668,334,0,2875,2879,3,94,47,0,2876,2880, + 5,402,0,0,2877,2878,5,306,0,0,2878,2880,3,674,337,0,2879,2876,1, + 0,0,0,2879,2877,1,0,0,0,2879,2880,1,0,0,0,2880,2967,1,0,0,0,2881, + 2883,5,42,0,0,2882,2881,1,0,0,0,2882,2883,1,0,0,0,2883,2884,1,0, + 0,0,2884,2885,5,26,0,0,2885,2886,5,155,0,0,2886,2887,5,857,0,0,2887, + 2893,3,704,352,0,2888,2890,5,28,0,0,2889,2891,5,857,0,0,2890,2889, + 1,0,0,0,2890,2891,1,0,0,0,2891,2892,1,0,0,0,2892,2894,3,706,353, + 0,2893,2888,1,0,0,0,2893,2894,1,0,0,0,2894,2967,1,0,0,0,2895,2896, + 5,33,0,0,2896,2900,5,176,0,0,2897,2901,5,823,0,0,2898,2899,5,26, + 0,0,2899,2901,5,155,0,0,2900,2897,1,0,0,0,2900,2898,1,0,0,0,2901, + 2902,1,0,0,0,2902,2905,3,704,352,0,2903,2904,5,28,0,0,2904,2906, + 3,706,353,0,2905,2903,1,0,0,0,2905,2906,1,0,0,0,2906,2967,1,0,0, + 0,2907,2908,7,39,0,0,2908,2967,5,93,0,0,2909,2910,7,40,0,0,2910, + 2967,5,658,0,0,2911,2913,5,51,0,0,2912,2914,5,29,0,0,2913,2912,1, + 0,0,0,2913,2914,1,0,0,0,2914,2915,1,0,0,0,2915,2967,3,674,337,0, + 2916,2917,5,51,0,0,2917,2918,7,19,0,0,2918,2967,3,652,326,0,2919, + 2920,5,51,0,0,2920,2921,5,131,0,0,2921,2967,5,92,0,0,2922,2923,5, + 51,0,0,2923,2924,5,67,0,0,2924,2925,5,92,0,0,2925,2967,3,722,361, + 0,2926,2967,5,66,0,0,2927,2929,5,104,0,0,2928,2930,5,857,0,0,2929, + 2928,1,0,0,0,2929,2930,1,0,0,0,2930,2931,1,0,0,0,2931,2967,7,4,0, + 0,2932,2934,5,492,0,0,2933,2935,5,29,0,0,2934,2933,1,0,0,0,2934, + 2935,1,0,0,0,2935,2936,1,0,0,0,2936,2937,3,674,337,0,2937,2941,3, + 94,47,0,2938,2942,5,402,0,0,2939,2940,5,306,0,0,2940,2942,3,674, + 337,0,2941,2938,1,0,0,0,2941,2939,1,0,0,0,2941,2942,1,0,0,0,2942, + 2967,1,0,0,0,2943,2944,5,125,0,0,2944,2945,5,20,0,0,2945,2967,3, + 670,335,0,2946,2947,5,141,0,0,2947,2948,5,29,0,0,2948,2949,3,674, + 337,0,2949,2950,5,176,0,0,2950,2951,3,668,334,0,2951,2967,1,0,0, + 0,2952,2953,5,141,0,0,2953,2954,7,19,0,0,2954,2955,3,652,326,0,2955, + 2956,5,176,0,0,2956,2957,3,648,324,0,2957,2967,1,0,0,0,2958,2960, + 5,141,0,0,2959,2961,7,41,0,0,2960,2959,1,0,0,0,2960,2961,1,0,0,0, + 2961,2962,1,0,0,0,2962,2967,3,658,329,0,2963,2964,7,42,0,0,2964, + 2967,5,681,0,0,2965,2967,3,148,74,0,2966,2702,1,0,0,0,2966,2712, + 1,0,0,0,2966,2723,1,0,0,0,2966,2741,1,0,0,0,2966,2756,1,0,0,0,2966, + 2771,1,0,0,0,2966,2790,1,0,0,0,2966,2814,1,0,0,0,2966,2829,1,0,0, + 0,2966,2833,1,0,0,0,2966,2836,1,0,0,0,2966,2845,1,0,0,0,2966,2850, + 1,0,0,0,2966,2864,1,0,0,0,2966,2869,1,0,0,0,2966,2882,1,0,0,0,2966, + 2895,1,0,0,0,2966,2907,1,0,0,0,2966,2909,1,0,0,0,2966,2911,1,0,0, + 0,2966,2916,1,0,0,0,2966,2919,1,0,0,0,2966,2922,1,0,0,0,2966,2926, + 1,0,0,0,2966,2927,1,0,0,0,2966,2932,1,0,0,0,2966,2943,1,0,0,0,2966, + 2946,1,0,0,0,2966,2952,1,0,0,0,2966,2958,1,0,0,0,2966,2963,1,0,0, + 0,2966,2965,1,0,0,0,2967,147,1,0,0,0,2968,2969,5,6,0,0,2969,2970, + 5,130,0,0,2970,2971,5,866,0,0,2971,2976,3,116,58,0,2972,2973,5,868, + 0,0,2973,2975,3,116,58,0,2974,2972,1,0,0,0,2975,2978,1,0,0,0,2976, + 2974,1,0,0,0,2976,2977,1,0,0,0,2977,2979,1,0,0,0,2978,2976,1,0,0, + 0,2979,2980,5,867,0,0,2980,3067,1,0,0,0,2981,2982,5,51,0,0,2982, + 2983,5,130,0,0,2983,3067,3,686,343,0,2984,2985,5,369,0,0,2985,2988, + 5,130,0,0,2986,2989,3,686,343,0,2987,2989,5,7,0,0,2988,2986,1,0, + 0,0,2988,2987,1,0,0,0,2989,2990,1,0,0,0,2990,3067,5,658,0,0,2991, + 2992,5,425,0,0,2992,2995,5,130,0,0,2993,2996,3,686,343,0,2994,2996, + 5,7,0,0,2995,2993,1,0,0,0,2995,2994,1,0,0,0,2996,2997,1,0,0,0,2997, + 3067,5,658,0,0,2998,2999,5,668,0,0,2999,3002,5,130,0,0,3000,3003, + 3,686,343,0,3001,3003,5,7,0,0,3002,3000,1,0,0,0,3002,3001,1,0,0, + 0,3003,3067,1,0,0,0,3004,3005,5,335,0,0,3005,3006,5,130,0,0,3006, + 3067,3,730,365,0,3007,3008,5,561,0,0,3008,3009,5,130,0,0,3009,3010, + 3,686,343,0,3010,3011,5,88,0,0,3011,3012,5,866,0,0,3012,3017,3,116, + 58,0,3013,3014,5,868,0,0,3014,3016,3,116,58,0,3015,3013,1,0,0,0, + 3016,3019,1,0,0,0,3017,3015,1,0,0,0,3017,3018,1,0,0,0,3018,3020, + 1,0,0,0,3019,3017,1,0,0,0,3020,3021,5,867,0,0,3021,3067,1,0,0,0, + 3022,3023,5,388,0,0,3023,3024,5,130,0,0,3024,3025,3,688,344,0,3025, + 3026,5,194,0,0,3026,3027,5,173,0,0,3027,3030,3,662,331,0,3028,3029, + 7,42,0,0,3029,3031,5,681,0,0,3030,3028,1,0,0,0,3030,3031,1,0,0,0, + 3031,3067,1,0,0,0,3032,3033,5,10,0,0,3033,3036,5,130,0,0,3034,3037, + 3,686,343,0,3035,3037,5,7,0,0,3036,3034,1,0,0,0,3036,3035,1,0,0, + 0,3037,3067,1,0,0,0,3038,3039,5,27,0,0,3039,3042,5,130,0,0,3040, + 3043,3,686,343,0,3041,3043,5,7,0,0,3042,3040,1,0,0,0,3042,3041,1, + 0,0,0,3043,3067,1,0,0,0,3044,3045,5,120,0,0,3045,3048,5,130,0,0, + 3046,3049,3,686,343,0,3047,3049,5,7,0,0,3048,3046,1,0,0,0,3048,3047, + 1,0,0,0,3049,3067,1,0,0,0,3050,3051,5,550,0,0,3051,3054,5,130,0, + 0,3052,3055,3,686,343,0,3053,3055,5,7,0,0,3054,3052,1,0,0,0,3054, + 3053,1,0,0,0,3055,3067,1,0,0,0,3056,3057,5,562,0,0,3057,3060,5,130, + 0,0,3058,3061,3,686,343,0,3059,3061,5,7,0,0,3060,3058,1,0,0,0,3060, + 3059,1,0,0,0,3061,3067,1,0,0,0,3062,3063,5,560,0,0,3063,3067,5,527, + 0,0,3064,3065,5,677,0,0,3065,3067,5,527,0,0,3066,2968,1,0,0,0,3066, + 2981,1,0,0,0,3066,2984,1,0,0,0,3066,2991,1,0,0,0,3066,2998,1,0,0, + 0,3066,3004,1,0,0,0,3066,3007,1,0,0,0,3066,3022,1,0,0,0,3066,3032, + 1,0,0,0,3066,3038,1,0,0,0,3066,3044,1,0,0,0,3066,3050,1,0,0,0,3066, + 3056,1,0,0,0,3066,3062,1,0,0,0,3066,3064,1,0,0,0,3067,149,1,0,0, + 0,3068,3069,5,51,0,0,3069,3071,7,0,0,0,3070,3072,3,776,388,0,3071, + 3070,1,0,0,0,3071,3072,1,0,0,0,3072,3073,1,0,0,0,3073,3074,3,638, + 319,0,3074,151,1,0,0,0,3075,3076,5,51,0,0,3076,3078,5,385,0,0,3077, + 3079,3,776,388,0,3078,3077,1,0,0,0,3078,3079,1,0,0,0,3079,3080,1, + 0,0,0,3080,3081,3,718,359,0,3081,153,1,0,0,0,3082,3083,5,51,0,0, + 3083,3085,5,82,0,0,3084,3086,7,1,0,0,3085,3084,1,0,0,0,3085,3086, + 1,0,0,0,3086,3087,1,0,0,0,3087,3088,3,652,326,0,3088,3089,5,119, + 0,0,3089,3102,3,662,331,0,3090,3092,5,308,0,0,3091,3093,5,857,0, + 0,3092,3091,1,0,0,0,3092,3093,1,0,0,0,3093,3094,1,0,0,0,3094,3101, + 7,3,0,0,3095,3097,5,104,0,0,3096,3098,5,857,0,0,3097,3096,1,0,0, + 0,3097,3098,1,0,0,0,3098,3099,1,0,0,0,3099,3101,7,4,0,0,3100,3090, + 1,0,0,0,3100,3095,1,0,0,0,3101,3104,1,0,0,0,3102,3100,1,0,0,0,3102, + 3103,1,0,0,0,3103,155,1,0,0,0,3104,3102,1,0,0,0,3105,3106,5,51,0, + 0,3106,3107,5,451,0,0,3107,3108,5,74,0,0,3108,3109,3,722,361,0,3109, + 3111,5,380,0,0,3110,3112,5,857,0,0,3111,3110,1,0,0,0,3111,3112,1, + 0,0,0,3112,3113,1,0,0,0,3113,3114,3,708,354,0,3114,157,1,0,0,0,3115, + 3116,5,51,0,0,3116,3118,5,132,0,0,3117,3119,3,776,388,0,3118,3117, + 1,0,0,0,3118,3119,1,0,0,0,3119,3120,1,0,0,0,3120,3121,3,718,359, + 0,3121,159,1,0,0,0,3122,3123,5,51,0,0,3123,3125,5,409,0,0,3124,3126, + 3,776,388,0,3125,3124,1,0,0,0,3125,3126,1,0,0,0,3126,3127,1,0,0, + 0,3127,3128,3,642,321,0,3128,161,1,0,0,0,3129,3130,5,51,0,0,3130, + 3132,5,592,0,0,3131,3133,3,776,388,0,3132,3131,1,0,0,0,3132,3133, + 1,0,0,0,3133,3134,1,0,0,0,3134,3135,3,722,361,0,3135,163,1,0,0,0, + 3136,3137,5,51,0,0,3137,3138,5,161,0,0,3138,3139,5,137,0,0,3139, + 3141,5,835,0,0,3140,3142,3,776,388,0,3141,3140,1,0,0,0,3141,3142, + 1,0,0,0,3142,3143,1,0,0,0,3143,3144,5,883,0,0,3144,165,1,0,0,0,3145, + 3147,5,51,0,0,3146,3148,5,660,0,0,3147,3146,1,0,0,0,3147,3148,1, + 0,0,0,3148,3149,1,0,0,0,3149,3151,5,173,0,0,3150,3152,3,776,388, + 0,3151,3150,1,0,0,0,3151,3152,1,0,0,0,3152,3153,1,0,0,0,3153,3155, + 3,660,330,0,3154,3156,7,43,0,0,3155,3154,1,0,0,0,3155,3156,1,0,0, + 0,3156,167,1,0,0,0,3157,3159,5,51,0,0,3158,3160,5,180,0,0,3159,3158, + 1,0,0,0,3159,3160,1,0,0,0,3160,3161,1,0,0,0,3161,3162,5,658,0,0, + 3162,3168,3,682,341,0,3163,3165,5,380,0,0,3164,3166,5,857,0,0,3165, + 3164,1,0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3169,3,708, + 354,0,3168,3163,1,0,0,0,3168,3169,1,0,0,0,3169,169,1,0,0,0,3170, + 3171,5,51,0,0,3171,3173,5,178,0,0,3172,3174,3,776,388,0,3173,3172, + 1,0,0,0,3173,3174,1,0,0,0,3174,3175,1,0,0,0,3175,3176,3,718,359, + 0,3176,171,1,0,0,0,3177,3178,5,51,0,0,3178,3180,5,684,0,0,3179,3181, + 3,776,388,0,3180,3179,1,0,0,0,3180,3181,1,0,0,0,3181,3182,1,0,0, + 0,3182,3187,3,646,323,0,3183,3184,5,868,0,0,3184,3186,3,646,323, + 0,3185,3183,1,0,0,0,3186,3189,1,0,0,0,3187,3185,1,0,0,0,3187,3188, + 1,0,0,0,3188,3191,1,0,0,0,3189,3187,1,0,0,0,3190,3192,7,43,0,0,3191, + 3190,1,0,0,0,3191,3192,1,0,0,0,3192,173,1,0,0,0,3193,3194,5,51,0, + 0,3194,3196,5,582,0,0,3195,3197,3,776,388,0,3196,3195,1,0,0,0,3196, + 3197,1,0,0,0,3197,3198,1,0,0,0,3198,3199,3,664,332,0,3199,175,1, + 0,0,0,3200,3201,5,155,0,0,3201,3202,5,42,0,0,3202,3206,5,582,0,0, + 3203,3207,5,505,0,0,3204,3207,5,7,0,0,3205,3207,3,664,332,0,3206, + 3203,1,0,0,0,3206,3204,1,0,0,0,3206,3205,1,0,0,0,3207,3208,1,0,0, + 0,3208,3209,5,176,0,0,3209,3214,3,666,333,0,3210,3211,5,868,0,0, + 3211,3213,3,666,333,0,3212,3210,1,0,0,0,3213,3216,1,0,0,0,3214,3212, + 1,0,0,0,3214,3215,1,0,0,0,3215,3221,1,0,0,0,3216,3214,1,0,0,0,3217, + 3218,5,155,0,0,3218,3219,5,582,0,0,3219,3221,3,478,239,0,3220,3200, + 1,0,0,0,3220,3217,1,0,0,0,3221,177,1,0,0,0,3222,3223,5,141,0,0,3223, + 3224,5,173,0,0,3224,3229,3,180,90,0,3225,3226,5,868,0,0,3226,3228, + 3,180,90,0,3227,3225,1,0,0,0,3228,3231,1,0,0,0,3229,3227,1,0,0,0, + 3229,3230,1,0,0,0,3230,179,1,0,0,0,3231,3229,1,0,0,0,3232,3233,3, + 662,331,0,3233,3234,5,176,0,0,3234,3235,3,658,329,0,3235,181,1,0, + 0,0,3236,3238,5,668,0,0,3237,3239,5,173,0,0,3238,3237,1,0,0,0,3238, + 3239,1,0,0,0,3239,3240,1,0,0,0,3240,3241,3,662,331,0,3241,183,1, + 0,0,0,3242,3243,5,21,0,0,3243,3250,3,718,359,0,3244,3247,5,866,0, + 0,3245,3248,3,766,383,0,3246,3248,3,758,379,0,3247,3245,1,0,0,0, + 3247,3246,1,0,0,0,3247,3248,1,0,0,0,3248,3249,1,0,0,0,3249,3251, + 5,867,0,0,3250,3244,1,0,0,0,3250,3251,1,0,0,0,3251,185,1,0,0,0,3252, + 3255,3,240,120,0,3253,3255,3,242,121,0,3254,3252,1,0,0,0,3254,3253, + 1,0,0,0,3255,187,1,0,0,0,3256,3257,5,371,0,0,3257,3258,3,758,379, + 0,3258,189,1,0,0,0,3259,3264,3,244,122,0,3260,3264,3,246,123,0,3261, + 3264,3,248,124,0,3262,3264,3,250,125,0,3263,3259,1,0,0,0,3263,3260, + 1,0,0,0,3263,3261,1,0,0,0,3263,3262,1,0,0,0,3264,191,1,0,0,0,3265, + 3267,5,86,0,0,3266,3268,7,44,0,0,3267,3266,1,0,0,0,3267,3268,1,0, + 0,0,3268,3270,1,0,0,0,3269,3271,5,79,0,0,3270,3269,1,0,0,0,3270, + 3271,1,0,0,0,3271,3273,1,0,0,0,3272,3274,5,88,0,0,3273,3272,1,0, + 0,0,3273,3274,1,0,0,0,3274,3275,1,0,0,0,3275,3282,3,662,331,0,3276, + 3277,5,130,0,0,3277,3279,5,866,0,0,3278,3280,3,686,343,0,3279,3278, + 1,0,0,0,3279,3280,1,0,0,0,3280,3281,1,0,0,0,3281,3283,5,867,0,0, + 3282,3276,1,0,0,0,3282,3283,1,0,0,0,3283,3295,1,0,0,0,3284,3286, + 3,270,135,0,3285,3284,1,0,0,0,3285,3286,1,0,0,0,3286,3289,1,0,0, + 0,3287,3290,3,760,380,0,3288,3290,3,196,98,0,3289,3287,1,0,0,0,3289, + 3288,1,0,0,0,3289,3290,1,0,0,0,3290,3292,1,0,0,0,3291,3293,3,194, + 97,0,3292,3291,1,0,0,0,3292,3293,1,0,0,0,3293,3296,1,0,0,0,3294, + 3296,3,232,116,0,3295,3285,1,0,0,0,3295,3294,1,0,0,0,3296,3298,1, + 0,0,0,3297,3299,3,194,97,0,3298,3297,1,0,0,0,3298,3299,1,0,0,0,3299, + 3312,1,0,0,0,3300,3301,5,119,0,0,3301,3302,5,373,0,0,3302,3303,5, + 92,0,0,3303,3304,5,185,0,0,3304,3309,3,234,117,0,3305,3306,5,868, + 0,0,3306,3308,3,234,117,0,3307,3305,1,0,0,0,3308,3311,1,0,0,0,3309, + 3307,1,0,0,0,3309,3310,1,0,0,0,3310,3313,1,0,0,0,3311,3309,1,0,0, + 0,3312,3300,1,0,0,0,3312,3313,1,0,0,0,3313,193,1,0,0,0,3314,3315, + 5,13,0,0,3315,3317,3,722,361,0,3316,3318,3,270,135,0,3317,3316,1, + 0,0,0,3317,3318,1,0,0,0,3318,195,1,0,0,0,3319,3324,3,210,105,0,3320, + 3321,5,173,0,0,3321,3324,3,662,331,0,3322,3324,3,230,115,0,3323, + 3319,1,0,0,0,3323,3320,1,0,0,0,3323,3322,1,0,0,0,3324,197,1,0,0, + 0,3325,3331,3,200,100,0,3326,3328,5,828,0,0,3327,3329,7,45,0,0,3328, + 3327,1,0,0,0,3328,3329,1,0,0,0,3329,3330,1,0,0,0,3330,3332,3,200, + 100,0,3331,3326,1,0,0,0,3332,3333,1,0,0,0,3333,3331,1,0,0,0,3333, + 3334,1,0,0,0,3334,199,1,0,0,0,3335,3337,5,866,0,0,3336,3335,1,0, + 0,0,3336,3337,1,0,0,0,3337,3338,1,0,0,0,3338,3340,3,282,141,0,3339, + 3341,5,867,0,0,3340,3339,1,0,0,0,3340,3341,1,0,0,0,3341,201,1,0, + 0,0,3342,3343,5,103,0,0,3343,3345,5,360,0,0,3344,3346,7,46,0,0,3345, + 3344,1,0,0,0,3345,3346,1,0,0,0,3346,3348,1,0,0,0,3347,3349,5,450, + 0,0,3348,3347,1,0,0,0,3348,3349,1,0,0,0,3349,3350,1,0,0,0,3350,3351, + 5,83,0,0,3351,3353,5,882,0,0,3352,3354,7,7,0,0,3353,3352,1,0,0,0, + 3353,3354,1,0,0,0,3354,3355,1,0,0,0,3355,3356,5,88,0,0,3356,3357, + 5,173,0,0,3357,3363,3,662,331,0,3358,3359,5,130,0,0,3359,3360,5, + 866,0,0,3360,3361,3,686,343,0,3361,3362,5,867,0,0,3362,3364,1,0, + 0,0,3363,3358,1,0,0,0,3363,3364,1,0,0,0,3364,3368,1,0,0,0,3365,3366, + 5,26,0,0,3366,3367,5,155,0,0,3367,3369,3,704,352,0,3368,3365,1,0, + 0,0,3368,3369,1,0,0,0,3369,3376,1,0,0,0,3370,3372,7,47,0,0,3371, + 3373,3,314,157,0,3372,3371,1,0,0,0,3373,3374,1,0,0,0,3374,3372,1, + 0,0,0,3374,3375,1,0,0,0,3375,3377,1,0,0,0,3376,3370,1,0,0,0,3376, + 3377,1,0,0,0,3377,3384,1,0,0,0,3378,3380,5,102,0,0,3379,3381,3,316, + 158,0,3380,3379,1,0,0,0,3381,3382,1,0,0,0,3382,3380,1,0,0,0,3382, + 3383,1,0,0,0,3383,3385,1,0,0,0,3384,3378,1,0,0,0,3384,3385,1,0,0, + 0,3385,3390,1,0,0,0,3386,3387,5,79,0,0,3387,3388,3,730,365,0,3388, + 3389,7,48,0,0,3389,3391,1,0,0,0,3390,3386,1,0,0,0,3390,3391,1,0, + 0,0,3391,3403,1,0,0,0,3392,3393,5,866,0,0,3393,3398,3,236,118,0, + 3394,3395,5,868,0,0,3395,3397,3,236,118,0,3396,3394,1,0,0,0,3397, + 3400,1,0,0,0,3398,3396,1,0,0,0,3398,3399,1,0,0,0,3399,3401,1,0,0, + 0,3400,3398,1,0,0,0,3401,3402,5,867,0,0,3402,3404,1,0,0,0,3403,3392, + 1,0,0,0,3403,3404,1,0,0,0,3404,3414,1,0,0,0,3405,3406,5,155,0,0, + 3406,3411,3,234,117,0,3407,3408,5,868,0,0,3408,3410,3,234,117,0, + 3409,3407,1,0,0,0,3410,3413,1,0,0,0,3411,3409,1,0,0,0,3411,3412, + 1,0,0,0,3412,3415,1,0,0,0,3413,3411,1,0,0,0,3414,3405,1,0,0,0,3414, + 3415,1,0,0,0,3415,203,1,0,0,0,3416,3417,5,103,0,0,3417,3419,5,695, + 0,0,3418,3420,7,46,0,0,3419,3418,1,0,0,0,3419,3420,1,0,0,0,3420, + 3422,1,0,0,0,3421,3423,5,450,0,0,3422,3421,1,0,0,0,3422,3423,1,0, + 0,0,3423,3424,1,0,0,0,3424,3425,5,83,0,0,3425,3427,5,882,0,0,3426, + 3428,7,7,0,0,3427,3426,1,0,0,0,3427,3428,1,0,0,0,3428,3429,1,0,0, + 0,3429,3430,5,88,0,0,3430,3431,5,173,0,0,3431,3435,3,662,331,0,3432, + 3433,5,26,0,0,3433,3434,5,155,0,0,3434,3436,3,704,352,0,3435,3432, + 1,0,0,0,3435,3436,1,0,0,0,3436,3447,1,0,0,0,3437,3438,5,587,0,0, + 3438,3439,5,423,0,0,3439,3441,5,20,0,0,3440,3442,5,859,0,0,3441, + 3440,1,0,0,0,3441,3442,1,0,0,0,3442,3443,1,0,0,0,3443,3445,5,882, + 0,0,3444,3446,5,858,0,0,3445,3444,1,0,0,0,3445,3446,1,0,0,0,3446, + 3448,1,0,0,0,3447,3437,1,0,0,0,3447,3448,1,0,0,0,3448,3453,1,0,0, + 0,3449,3450,5,79,0,0,3450,3451,3,730,365,0,3451,3452,7,48,0,0,3452, + 3454,1,0,0,0,3453,3449,1,0,0,0,3453,3454,1,0,0,0,3454,3466,1,0,0, + 0,3455,3456,5,866,0,0,3456,3461,3,236,118,0,3457,3458,5,868,0,0, + 3458,3460,3,236,118,0,3459,3457,1,0,0,0,3460,3463,1,0,0,0,3461,3459, + 1,0,0,0,3461,3462,1,0,0,0,3462,3464,1,0,0,0,3463,3461,1,0,0,0,3464, + 3465,5,867,0,0,3465,3467,1,0,0,0,3466,3455,1,0,0,0,3466,3467,1,0, + 0,0,3467,3477,1,0,0,0,3468,3469,5,155,0,0,3469,3474,3,234,117,0, + 3470,3471,5,868,0,0,3471,3473,3,234,117,0,3472,3470,1,0,0,0,3473, + 3476,1,0,0,0,3474,3472,1,0,0,0,3474,3475,1,0,0,0,3475,3478,1,0,0, + 0,3476,3474,1,0,0,0,3477,3468,1,0,0,0,3477,3478,1,0,0,0,3478,205, + 1,0,0,0,3479,3480,5,866,0,0,3480,3482,3,224,112,0,3481,3483,3,258, + 129,0,3482,3481,1,0,0,0,3482,3483,1,0,0,0,3483,3485,1,0,0,0,3484, + 3486,3,328,164,0,3485,3484,1,0,0,0,3485,3486,1,0,0,0,3486,3487,1, + 0,0,0,3487,3489,5,867,0,0,3488,3490,3,258,129,0,3489,3488,1,0,0, + 0,3489,3490,1,0,0,0,3490,3492,1,0,0,0,3491,3493,3,328,164,0,3492, + 3491,1,0,0,0,3492,3493,1,0,0,0,3493,3495,1,0,0,0,3494,3496,3,312, + 156,0,3495,3494,1,0,0,0,3495,3496,1,0,0,0,3496,207,1,0,0,0,3497, + 3499,5,143,0,0,3498,3500,7,49,0,0,3499,3498,1,0,0,0,3499,3500,1, + 0,0,0,3500,3502,1,0,0,0,3501,3503,5,88,0,0,3502,3501,1,0,0,0,3502, + 3503,1,0,0,0,3503,3504,1,0,0,0,3504,3510,3,662,331,0,3505,3506,5, + 130,0,0,3506,3507,5,866,0,0,3507,3508,3,686,343,0,3508,3509,5,867, + 0,0,3509,3511,1,0,0,0,3510,3505,1,0,0,0,3510,3511,1,0,0,0,3511,3520, + 1,0,0,0,3512,3513,5,866,0,0,3513,3514,3,670,335,0,3514,3515,5,867, + 0,0,3515,3517,1,0,0,0,3516,3512,1,0,0,0,3516,3517,1,0,0,0,3517,3518, + 1,0,0,0,3518,3521,3,228,114,0,3519,3521,3,232,116,0,3520,3516,1, + 0,0,0,3520,3519,1,0,0,0,3521,209,1,0,0,0,3522,3526,3,282,141,0,3523, + 3525,3,284,142,0,3524,3523,1,0,0,0,3525,3528,1,0,0,0,3526,3524,1, + 0,0,0,3526,3527,1,0,0,0,3527,3537,1,0,0,0,3528,3526,1,0,0,0,3529, + 3531,5,181,0,0,3530,3532,7,45,0,0,3531,3530,1,0,0,0,3531,3532,1, + 0,0,0,3532,3535,1,0,0,0,3533,3536,3,282,141,0,3534,3536,3,280,140, + 0,3535,3533,1,0,0,0,3535,3534,1,0,0,0,3536,3538,1,0,0,0,3537,3529, + 1,0,0,0,3537,3538,1,0,0,0,3538,3543,1,0,0,0,3539,3540,5,868,0,0, + 3540,3542,3,286,143,0,3541,3539,1,0,0,0,3542,3545,1,0,0,0,3543,3541, + 1,0,0,0,3543,3544,1,0,0,0,3544,3547,1,0,0,0,3545,3543,1,0,0,0,3546, + 3548,3,258,129,0,3547,3546,1,0,0,0,3547,3548,1,0,0,0,3548,3550,1, + 0,0,0,3549,3551,3,328,164,0,3550,3549,1,0,0,0,3550,3551,1,0,0,0, + 3551,3553,1,0,0,0,3552,3554,3,238,119,0,3553,3552,1,0,0,0,3553,3554, + 1,0,0,0,3554,3556,1,0,0,0,3555,3557,3,312,156,0,3556,3555,1,0,0, + 0,3556,3557,1,0,0,0,3557,3582,1,0,0,0,3558,3562,3,280,140,0,3559, + 3561,3,284,142,0,3560,3559,1,0,0,0,3561,3564,1,0,0,0,3562,3560,1, + 0,0,0,3562,3563,1,0,0,0,3563,3570,1,0,0,0,3564,3562,1,0,0,0,3565, + 3567,5,181,0,0,3566,3568,7,45,0,0,3567,3566,1,0,0,0,3567,3568,1, + 0,0,0,3568,3569,1,0,0,0,3569,3571,3,280,140,0,3570,3565,1,0,0,0, + 3570,3571,1,0,0,0,3571,3573,1,0,0,0,3572,3574,3,258,129,0,3573,3572, + 1,0,0,0,3573,3574,1,0,0,0,3574,3576,1,0,0,0,3575,3577,3,328,164, + 0,3576,3575,1,0,0,0,3576,3577,1,0,0,0,3577,3579,1,0,0,0,3578,3580, + 3,238,119,0,3579,3578,1,0,0,0,3579,3580,1,0,0,0,3580,3582,1,0,0, + 0,3581,3522,1,0,0,0,3581,3558,1,0,0,0,3582,211,1,0,0,0,3583,3585, + 3,50,25,0,3584,3583,1,0,0,0,3584,3585,1,0,0,0,3585,3586,1,0,0,0, + 3586,3588,3,214,107,0,3587,3589,3,258,129,0,3588,3587,1,0,0,0,3588, + 3589,1,0,0,0,3589,3591,1,0,0,0,3590,3592,3,328,164,0,3591,3590,1, + 0,0,0,3591,3592,1,0,0,0,3592,3594,1,0,0,0,3593,3595,3,312,156,0, + 3594,3593,1,0,0,0,3594,3595,1,0,0,0,3595,213,1,0,0,0,3596,3597,6, + 107,-1,0,3597,3598,3,216,108,0,3598,3613,1,0,0,0,3599,3600,10,2, + 0,0,3600,3602,5,181,0,0,3601,3603,7,45,0,0,3602,3601,1,0,0,0,3602, + 3603,1,0,0,0,3603,3604,1,0,0,0,3604,3612,3,216,108,0,3605,3606,10, + 1,0,0,3606,3608,5,59,0,0,3607,3609,7,45,0,0,3608,3607,1,0,0,0,3608, + 3609,1,0,0,0,3609,3610,1,0,0,0,3610,3612,3,216,108,0,3611,3599,1, + 0,0,0,3611,3605,1,0,0,0,3612,3615,1,0,0,0,3613,3611,1,0,0,0,3613, + 3614,1,0,0,0,3614,215,1,0,0,0,3615,3613,1,0,0,0,3616,3617,6,108, + -1,0,3617,3618,3,218,109,0,3618,3627,1,0,0,0,3619,3620,10,1,0,0, + 3620,3622,5,828,0,0,3621,3623,7,45,0,0,3622,3621,1,0,0,0,3622,3623, + 1,0,0,0,3623,3624,1,0,0,0,3624,3626,3,218,109,0,3625,3619,1,0,0, + 0,3626,3629,1,0,0,0,3627,3625,1,0,0,0,3627,3628,1,0,0,0,3628,217, + 1,0,0,0,3629,3627,1,0,0,0,3630,3645,3,226,113,0,3631,3632,5,866, + 0,0,3632,3634,3,214,107,0,3633,3635,3,258,129,0,3634,3633,1,0,0, + 0,3634,3635,1,0,0,0,3635,3637,1,0,0,0,3636,3638,3,328,164,0,3637, + 3636,1,0,0,0,3637,3638,1,0,0,0,3638,3640,1,0,0,0,3639,3641,3,312, + 156,0,3640,3639,1,0,0,0,3640,3641,1,0,0,0,3641,3642,1,0,0,0,3642, + 3643,5,867,0,0,3643,3645,1,0,0,0,3644,3630,1,0,0,0,3644,3631,1,0, + 0,0,3645,219,1,0,0,0,3646,3649,3,254,127,0,3647,3649,3,256,128,0, + 3648,3646,1,0,0,0,3648,3647,1,0,0,0,3649,221,1,0,0,0,3650,3654,3, + 230,115,0,3651,3652,5,125,0,0,3652,3653,5,20,0,0,3653,3655,3,690, + 345,0,3654,3651,1,0,0,0,3654,3655,1,0,0,0,3655,3658,1,0,0,0,3656, + 3657,5,100,0,0,3657,3659,3,330,165,0,3658,3656,1,0,0,0,3658,3659, + 1,0,0,0,3659,223,1,0,0,0,3660,3665,3,226,113,0,3661,3662,7,50,0, + 0,3662,3664,3,226,113,0,3663,3661,1,0,0,0,3664,3667,1,0,0,0,3665, + 3663,1,0,0,0,3665,3666,1,0,0,0,3666,3669,1,0,0,0,3667,3665,1,0,0, + 0,3668,3670,3,258,129,0,3669,3668,1,0,0,0,3669,3670,1,0,0,0,3670, + 3672,1,0,0,0,3671,3673,3,328,164,0,3672,3671,1,0,0,0,3672,3673,1, + 0,0,0,3673,3675,1,0,0,0,3674,3676,3,312,156,0,3675,3674,1,0,0,0, + 3675,3676,1,0,0,0,3676,225,1,0,0,0,3677,3681,3,210,105,0,3678,3681, + 3,628,314,0,3679,3681,3,222,111,0,3680,3677,1,0,0,0,3680,3678,1, + 0,0,0,3680,3679,1,0,0,0,3681,227,1,0,0,0,3682,3688,3,210,105,0,3683, + 3684,5,173,0,0,3684,3688,3,662,331,0,3685,3688,3,760,380,0,3686, + 3688,3,230,115,0,3687,3682,1,0,0,0,3687,3683,1,0,0,0,3687,3685,1, + 0,0,0,3687,3686,1,0,0,0,3688,229,1,0,0,0,3689,3690,5,189,0,0,3690, + 3691,5,586,0,0,3691,3697,3,762,381,0,3692,3693,5,868,0,0,3693,3694, + 5,586,0,0,3694,3696,3,762,381,0,3695,3692,1,0,0,0,3696,3699,1,0, + 0,0,3697,3695,1,0,0,0,3697,3698,1,0,0,0,3698,231,1,0,0,0,3699,3697, + 1,0,0,0,3700,3701,5,155,0,0,3701,3706,3,234,117,0,3702,3703,5,868, + 0,0,3703,3705,3,234,117,0,3704,3702,1,0,0,0,3705,3708,1,0,0,0,3706, + 3704,1,0,0,0,3706,3707,1,0,0,0,3707,233,1,0,0,0,3708,3706,1,0,0, + 0,3709,3710,3,674,337,0,3710,3711,5,857,0,0,3711,3712,3,764,382, + 0,3712,235,1,0,0,0,3713,3716,3,722,361,0,3714,3716,5,892,0,0,3715, + 3713,1,0,0,0,3715,3714,1,0,0,0,3716,237,1,0,0,0,3717,3718,5,65,0, + 0,3718,3728,7,51,0,0,3719,3720,5,510,0,0,3720,3725,3,662,331,0,3721, + 3722,5,868,0,0,3722,3724,3,662,331,0,3723,3721,1,0,0,0,3724,3727, + 1,0,0,0,3725,3723,1,0,0,0,3725,3726,1,0,0,0,3726,3729,1,0,0,0,3727, + 3725,1,0,0,0,3728,3719,1,0,0,0,3728,3729,1,0,0,0,3729,3732,1,0,0, + 0,3730,3731,7,52,0,0,3731,3733,5,105,0,0,3732,3730,1,0,0,0,3732, + 3733,1,0,0,0,3733,3739,1,0,0,0,3734,3735,5,104,0,0,3735,3736,5,80, + 0,0,3736,3737,5,594,0,0,3737,3739,5,491,0,0,3738,3717,1,0,0,0,3738, + 3734,1,0,0,0,3739,239,1,0,0,0,3740,3742,5,44,0,0,3741,3743,5,107, + 0,0,3742,3741,1,0,0,0,3742,3743,1,0,0,0,3743,3745,1,0,0,0,3744,3746, + 5,549,0,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746,3748,1,0,0,0, + 3747,3749,5,79,0,0,3748,3747,1,0,0,0,3748,3749,1,0,0,0,3749,3750, + 1,0,0,0,3750,3751,5,68,0,0,3751,3756,3,662,331,0,3752,3754,5,13, + 0,0,3753,3752,1,0,0,0,3753,3754,1,0,0,0,3754,3755,1,0,0,0,3755,3757, + 3,722,361,0,3756,3753,1,0,0,0,3756,3757,1,0,0,0,3757,3763,1,0,0, + 0,3758,3759,5,130,0,0,3759,3760,5,866,0,0,3760,3761,3,686,343,0, + 3761,3762,5,867,0,0,3762,3764,1,0,0,0,3763,3758,1,0,0,0,3763,3764, + 1,0,0,0,3764,3767,1,0,0,0,3765,3766,5,192,0,0,3766,3768,3,822,411, + 0,3767,3765,1,0,0,0,3767,3768,1,0,0,0,3768,3770,1,0,0,0,3769,3771, + 3,258,129,0,3770,3769,1,0,0,0,3770,3771,1,0,0,0,3771,3774,1,0,0, + 0,3772,3773,5,100,0,0,3773,3775,3,330,165,0,3774,3772,1,0,0,0,3774, + 3775,1,0,0,0,3775,241,1,0,0,0,3776,3778,5,44,0,0,3777,3779,5,107, + 0,0,3778,3777,1,0,0,0,3778,3779,1,0,0,0,3779,3781,1,0,0,0,3780,3782, + 5,549,0,0,3781,3780,1,0,0,0,3781,3782,1,0,0,0,3782,3784,1,0,0,0, + 3783,3785,5,79,0,0,3784,3783,1,0,0,0,3784,3785,1,0,0,0,3785,3825, + 1,0,0,0,3786,3789,3,662,331,0,3787,3788,5,865,0,0,3788,3790,5,850, + 0,0,3789,3787,1,0,0,0,3789,3790,1,0,0,0,3790,3799,1,0,0,0,3791,3792, + 5,868,0,0,3792,3795,3,662,331,0,3793,3794,5,865,0,0,3794,3796,5, + 850,0,0,3795,3793,1,0,0,0,3795,3796,1,0,0,0,3796,3798,1,0,0,0,3797, + 3791,1,0,0,0,3798,3801,1,0,0,0,3799,3797,1,0,0,0,3799,3800,1,0,0, + 0,3800,3802,1,0,0,0,3801,3799,1,0,0,0,3802,3803,5,68,0,0,3803,3804, + 3,262,131,0,3804,3826,1,0,0,0,3805,3806,5,68,0,0,3806,3809,3,662, + 331,0,3807,3808,5,865,0,0,3808,3810,5,850,0,0,3809,3807,1,0,0,0, + 3809,3810,1,0,0,0,3810,3819,1,0,0,0,3811,3812,5,868,0,0,3812,3815, + 3,662,331,0,3813,3814,5,865,0,0,3814,3816,5,850,0,0,3815,3813,1, + 0,0,0,3815,3816,1,0,0,0,3816,3818,1,0,0,0,3817,3811,1,0,0,0,3818, + 3821,1,0,0,0,3819,3817,1,0,0,0,3819,3820,1,0,0,0,3820,3822,1,0,0, + 0,3821,3819,1,0,0,0,3822,3823,5,188,0,0,3823,3824,3,262,131,0,3824, + 3826,1,0,0,0,3825,3786,1,0,0,0,3825,3805,1,0,0,0,3826,3829,1,0,0, + 0,3827,3828,5,192,0,0,3828,3830,3,822,411,0,3829,3827,1,0,0,0,3829, + 3830,1,0,0,0,3830,243,1,0,0,0,3831,3832,5,417,0,0,3832,3833,3,662, + 331,0,3833,3838,5,516,0,0,3834,3836,5,13,0,0,3835,3834,1,0,0,0,3835, + 3836,1,0,0,0,3836,3837,1,0,0,0,3837,3839,3,722,361,0,3838,3835,1, + 0,0,0,3838,3839,1,0,0,0,3839,245,1,0,0,0,3840,3841,5,417,0,0,3841, + 3842,3,662,331,0,3842,3843,5,135,0,0,3843,3850,3,652,326,0,3844, + 3845,3,832,416,0,3845,3846,5,866,0,0,3846,3847,3,766,383,0,3847, + 3848,5,867,0,0,3848,3851,1,0,0,0,3849,3851,7,53,0,0,3850,3844,1, + 0,0,0,3850,3849,1,0,0,0,3851,3854,1,0,0,0,3852,3853,5,192,0,0,3853, + 3855,3,822,411,0,3854,3852,1,0,0,0,3854,3855,1,0,0,0,3855,3858,1, + 0,0,0,3856,3857,5,100,0,0,3857,3859,3,330,165,0,3858,3856,1,0,0, + 0,3858,3859,1,0,0,0,3859,247,1,0,0,0,3860,3861,5,417,0,0,3861,3862, + 3,662,331,0,3862,3863,5,135,0,0,3863,3866,7,54,0,0,3864,3865,5,192, + 0,0,3865,3867,3,822,411,0,3866,3864,1,0,0,0,3866,3867,1,0,0,0,3867, + 3870,1,0,0,0,3868,3869,5,100,0,0,3869,3871,3,330,165,0,3870,3868, + 1,0,0,0,3870,3871,1,0,0,0,3871,249,1,0,0,0,3872,3873,5,417,0,0,3873, + 3874,3,662,331,0,3874,3875,5,334,0,0,3875,251,1,0,0,0,3876,3877, + 5,425,0,0,3877,3878,5,173,0,0,3878,3879,5,68,0,0,3879,3884,3,734, + 367,0,3880,3881,5,868,0,0,3881,3883,3,734,367,0,3882,3880,1,0,0, + 0,3883,3886,1,0,0,0,3884,3882,1,0,0,0,3884,3885,1,0,0,0,3885,253, + 1,0,0,0,3886,3884,1,0,0,0,3887,3889,5,185,0,0,3888,3890,5,107,0, + 0,3889,3888,1,0,0,0,3889,3890,1,0,0,0,3890,3892,1,0,0,0,3891,3893, + 5,79,0,0,3892,3891,1,0,0,0,3892,3893,1,0,0,0,3893,3894,1,0,0,0,3894, + 3899,3,662,331,0,3895,3897,5,13,0,0,3896,3895,1,0,0,0,3896,3897, + 1,0,0,0,3897,3898,1,0,0,0,3898,3900,3,722,361,0,3899,3896,1,0,0, + 0,3899,3900,1,0,0,0,3900,3901,1,0,0,0,3901,3902,5,155,0,0,3902,3907, + 3,234,117,0,3903,3904,5,868,0,0,3904,3906,3,234,117,0,3905,3903, + 1,0,0,0,3906,3909,1,0,0,0,3907,3905,1,0,0,0,3907,3908,1,0,0,0,3908, + 3912,1,0,0,0,3909,3907,1,0,0,0,3910,3911,5,192,0,0,3911,3913,3,822, + 411,0,3912,3910,1,0,0,0,3912,3913,1,0,0,0,3913,3915,1,0,0,0,3914, + 3916,3,258,129,0,3915,3914,1,0,0,0,3915,3916,1,0,0,0,3916,3918,1, + 0,0,0,3917,3919,3,328,164,0,3918,3917,1,0,0,0,3918,3919,1,0,0,0, + 3919,255,1,0,0,0,3920,3922,5,185,0,0,3921,3923,5,107,0,0,3922,3921, + 1,0,0,0,3922,3923,1,0,0,0,3923,3925,1,0,0,0,3924,3926,5,79,0,0,3925, + 3924,1,0,0,0,3925,3926,1,0,0,0,3926,3927,1,0,0,0,3927,3928,3,262, + 131,0,3928,3929,5,155,0,0,3929,3934,3,234,117,0,3930,3931,5,868, + 0,0,3931,3933,3,234,117,0,3932,3930,1,0,0,0,3933,3936,1,0,0,0,3934, + 3932,1,0,0,0,3934,3935,1,0,0,0,3935,3939,1,0,0,0,3936,3934,1,0,0, + 0,3937,3938,5,192,0,0,3938,3940,3,822,411,0,3939,3937,1,0,0,0,3939, + 3940,1,0,0,0,3940,257,1,0,0,0,3941,3942,5,125,0,0,3942,3943,5,20, + 0,0,3943,3948,3,260,130,0,3944,3945,5,868,0,0,3945,3947,3,260,130, + 0,3946,3944,1,0,0,0,3947,3950,1,0,0,0,3948,3946,1,0,0,0,3948,3949, + 1,0,0,0,3949,259,1,0,0,0,3950,3948,1,0,0,0,3951,3953,3,822,411,0, + 3952,3954,7,55,0,0,3953,3952,1,0,0,0,3953,3954,1,0,0,0,3954,261, + 1,0,0,0,3955,3960,3,264,132,0,3956,3957,5,868,0,0,3957,3959,3,264, + 132,0,3958,3956,1,0,0,0,3959,3962,1,0,0,0,3960,3958,1,0,0,0,3960, + 3961,1,0,0,0,3961,263,1,0,0,0,3962,3960,1,0,0,0,3963,3967,3,266, + 133,0,3964,3966,3,276,138,0,3965,3964,1,0,0,0,3966,3969,1,0,0,0, + 3967,3965,1,0,0,0,3967,3968,1,0,0,0,3968,3982,1,0,0,0,3969,3967, + 1,0,0,0,3970,3971,5,866,0,0,3971,3975,3,266,133,0,3972,3974,3,276, + 138,0,3973,3972,1,0,0,0,3974,3977,1,0,0,0,3975,3973,1,0,0,0,3975, + 3976,1,0,0,0,3976,3978,1,0,0,0,3977,3975,1,0,0,0,3978,3979,5,867, + 0,0,3979,3982,1,0,0,0,3980,3982,3,288,144,0,3981,3963,1,0,0,0,3981, + 3970,1,0,0,0,3981,3980,1,0,0,0,3982,265,1,0,0,0,3983,3989,3,662, + 331,0,3984,3985,5,130,0,0,3985,3986,5,866,0,0,3986,3987,3,686,343, + 0,3987,3988,5,867,0,0,3988,3990,1,0,0,0,3989,3984,1,0,0,0,3989,3990, + 1,0,0,0,3990,3995,1,0,0,0,3991,3993,5,13,0,0,3992,3991,1,0,0,0,3992, + 3993,1,0,0,0,3993,3994,1,0,0,0,3994,3996,3,722,361,0,3995,3992,1, + 0,0,0,3995,3996,1,0,0,0,3996,4005,1,0,0,0,3997,4002,3,272,136,0, + 3998,3999,5,868,0,0,3999,4001,3,272,136,0,4000,3998,1,0,0,0,4001, + 4004,1,0,0,0,4002,4000,1,0,0,0,4002,4003,1,0,0,0,4003,4006,1,0,0, + 0,4004,4002,1,0,0,0,4005,3997,1,0,0,0,4005,4006,1,0,0,0,4006,4023, + 1,0,0,0,4007,4009,5,95,0,0,4008,4007,1,0,0,0,4008,4009,1,0,0,0,4009, + 4010,1,0,0,0,4010,4012,3,268,134,0,4011,4013,5,13,0,0,4012,4011, + 1,0,0,0,4012,4013,1,0,0,0,4013,4014,1,0,0,0,4014,4016,3,722,361, + 0,4015,4017,3,270,135,0,4016,4015,1,0,0,0,4016,4017,1,0,0,0,4017, + 4023,1,0,0,0,4018,4019,5,866,0,0,4019,4020,3,262,131,0,4020,4021, + 5,867,0,0,4021,4023,1,0,0,0,4022,3983,1,0,0,0,4022,4008,1,0,0,0, + 4022,4018,1,0,0,0,4023,267,1,0,0,0,4024,4030,3,210,105,0,4025,4026, + 5,866,0,0,4026,4027,3,210,105,0,4027,4028,5,867,0,0,4028,4030,1, + 0,0,0,4029,4024,1,0,0,0,4029,4025,1,0,0,0,4030,269,1,0,0,0,4031, + 4032,5,866,0,0,4032,4033,3,670,335,0,4033,4034,5,867,0,0,4034,271, + 1,0,0,0,4035,4036,7,56,0,0,4036,4039,7,19,0,0,4037,4038,5,65,0,0, + 4038,4040,3,274,137,0,4039,4037,1,0,0,0,4039,4040,1,0,0,0,4040,4041, + 1,0,0,0,4041,4043,5,866,0,0,4042,4044,3,650,325,0,4043,4042,1,0, + 0,0,4043,4044,1,0,0,0,4044,4045,1,0,0,0,4045,4046,5,867,0,0,4046, + 273,1,0,0,0,4047,4053,5,91,0,0,4048,4049,5,125,0,0,4049,4053,5,20, + 0,0,4050,4051,5,74,0,0,4051,4053,5,20,0,0,4052,4047,1,0,0,0,4052, + 4048,1,0,0,0,4052,4050,1,0,0,0,4053,275,1,0,0,0,4054,4056,7,57,0, + 0,4055,4054,1,0,0,0,4055,4056,1,0,0,0,4056,4057,1,0,0,0,4057,4059, + 5,91,0,0,4058,4060,5,95,0,0,4059,4058,1,0,0,0,4059,4060,1,0,0,0, + 4060,4061,1,0,0,0,4061,4065,3,266,133,0,4062,4064,3,278,139,0,4063, + 4062,1,0,0,0,4064,4067,1,0,0,0,4065,4063,1,0,0,0,4065,4066,1,0,0, + 0,4066,4104,1,0,0,0,4067,4065,1,0,0,0,4068,4069,5,172,0,0,4069,4073, + 3,266,133,0,4070,4072,3,278,139,0,4071,4070,1,0,0,0,4072,4075,1, + 0,0,0,4073,4071,1,0,0,0,4073,4074,1,0,0,0,4074,4104,1,0,0,0,4075, + 4073,1,0,0,0,4076,4078,7,58,0,0,4077,4079,5,127,0,0,4078,4077,1, + 0,0,0,4078,4079,1,0,0,0,4079,4080,1,0,0,0,4080,4082,5,91,0,0,4081, + 4083,5,95,0,0,4082,4081,1,0,0,0,4082,4083,1,0,0,0,4083,4084,1,0, + 0,0,4084,4088,3,266,133,0,4085,4087,3,278,139,0,4086,4085,1,0,0, + 0,4087,4090,1,0,0,0,4088,4086,1,0,0,0,4088,4089,1,0,0,0,4089,4104, + 1,0,0,0,4090,4088,1,0,0,0,4091,4099,5,113,0,0,4092,4095,5,84,0,0, + 4093,4095,7,58,0,0,4094,4092,1,0,0,0,4094,4093,1,0,0,0,4095,4097, + 1,0,0,0,4096,4098,5,127,0,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0, + 4098,4100,1,0,0,0,4099,4094,1,0,0,0,4099,4100,1,0,0,0,4100,4101, + 1,0,0,0,4101,4102,5,91,0,0,4102,4104,3,266,133,0,4103,4055,1,0,0, + 0,4103,4068,1,0,0,0,4103,4076,1,0,0,0,4103,4091,1,0,0,0,4104,277, + 1,0,0,0,4105,4108,5,119,0,0,4106,4109,3,822,411,0,4107,4109,3,678, + 339,0,4108,4106,1,0,0,0,4108,4107,1,0,0,0,4109,4116,1,0,0,0,4110, + 4111,5,188,0,0,4111,4112,5,866,0,0,4112,4113,3,670,335,0,4113,4114, + 5,867,0,0,4114,4116,1,0,0,0,4115,4105,1,0,0,0,4115,4110,1,0,0,0, + 4116,279,1,0,0,0,4117,4118,5,866,0,0,4118,4119,3,282,141,0,4119, + 4120,5,867,0,0,4120,4126,1,0,0,0,4121,4122,5,866,0,0,4122,4123,3, + 280,140,0,4123,4124,5,867,0,0,4124,4126,1,0,0,0,4125,4117,1,0,0, + 0,4125,4121,1,0,0,0,4126,281,1,0,0,0,4127,4131,5,154,0,0,4128,4130, + 3,298,149,0,4129,4128,1,0,0,0,4130,4133,1,0,0,0,4131,4129,1,0,0, + 0,4131,4132,1,0,0,0,4132,4134,1,0,0,0,4133,4131,1,0,0,0,4134,4136, + 3,300,150,0,4135,4137,3,312,156,0,4136,4135,1,0,0,0,4136,4137,1, + 0,0,0,4137,4138,1,0,0,0,4138,4140,3,318,159,0,4139,4141,3,320,160, + 0,4140,4139,1,0,0,0,4140,4141,1,0,0,0,4141,4143,1,0,0,0,4142,4144, + 3,322,161,0,4143,4142,1,0,0,0,4143,4144,1,0,0,0,4144,4146,1,0,0, + 0,4145,4147,3,324,162,0,4146,4145,1,0,0,0,4146,4147,1,0,0,0,4147, + 4149,1,0,0,0,4148,4150,3,258,129,0,4149,4148,1,0,0,0,4149,4150,1, + 0,0,0,4150,4152,1,0,0,0,4151,4153,3,328,164,0,4152,4151,1,0,0,0, + 4152,4153,1,0,0,0,4153,4155,1,0,0,0,4154,4156,3,312,156,0,4155,4154, + 1,0,0,0,4155,4156,1,0,0,0,4156,4158,1,0,0,0,4157,4159,3,284,142, + 0,4158,4157,1,0,0,0,4158,4159,1,0,0,0,4159,283,1,0,0,0,4160,4162, + 5,181,0,0,4161,4163,7,45,0,0,4162,4161,1,0,0,0,4162,4163,1,0,0,0, + 4163,4166,1,0,0,0,4164,4167,3,282,141,0,4165,4167,3,280,140,0,4166, + 4164,1,0,0,0,4166,4165,1,0,0,0,4167,285,1,0,0,0,4168,4183,5,95,0, + 0,4169,4184,3,282,141,0,4170,4184,3,280,140,0,4171,4174,5,866,0, + 0,4172,4175,3,282,141,0,4173,4175,3,280,140,0,4174,4172,1,0,0,0, + 4174,4173,1,0,0,0,4175,4176,1,0,0,0,4176,4181,5,867,0,0,4177,4179, + 5,13,0,0,4178,4177,1,0,0,0,4178,4179,1,0,0,0,4179,4180,1,0,0,0,4180, + 4182,3,722,361,0,4181,4178,1,0,0,0,4181,4182,1,0,0,0,4182,4184,1, + 0,0,0,4183,4169,1,0,0,0,4183,4170,1,0,0,0,4183,4171,1,0,0,0,4184, + 287,1,0,0,0,4185,4186,5,253,0,0,4186,4187,5,866,0,0,4187,4188,5, + 882,0,0,4188,4189,5,868,0,0,4189,4190,5,882,0,0,4190,4191,5,337, + 0,0,4191,4192,5,866,0,0,4192,4193,3,290,145,0,4193,4194,5,867,0, + 0,4194,4199,5,867,0,0,4195,4197,5,13,0,0,4196,4195,1,0,0,0,4196, + 4197,1,0,0,0,4197,4198,1,0,0,0,4198,4200,3,722,361,0,4199,4196,1, + 0,0,0,4199,4200,1,0,0,0,4200,289,1,0,0,0,4201,4206,3,292,146,0,4202, + 4203,5,868,0,0,4203,4205,3,292,146,0,4204,4202,1,0,0,0,4205,4208, + 1,0,0,0,4206,4204,1,0,0,0,4206,4207,1,0,0,0,4207,291,1,0,0,0,4208, + 4206,1,0,0,0,4209,4226,3,674,337,0,4210,4211,5,65,0,0,4211,4227, + 5,256,0,0,4212,4224,3,744,372,0,4213,4214,5,257,0,0,4214,4216,5, + 882,0,0,4215,4217,3,294,147,0,4216,4215,1,0,0,0,4216,4217,1,0,0, + 0,4217,4219,1,0,0,0,4218,4220,3,296,148,0,4219,4218,1,0,0,0,4219, + 4220,1,0,0,0,4220,4225,1,0,0,0,4221,4222,5,60,0,0,4222,4223,5,257, + 0,0,4223,4225,5,882,0,0,4224,4213,1,0,0,0,4224,4221,1,0,0,0,4225, + 4227,1,0,0,0,4226,4210,1,0,0,0,4226,4212,1,0,0,0,4227,4239,1,0,0, + 0,4228,4230,5,255,0,0,4229,4231,5,257,0,0,4230,4229,1,0,0,0,4230, + 4231,1,0,0,0,4231,4232,1,0,0,0,4232,4233,5,882,0,0,4233,4234,5,337, + 0,0,4234,4235,5,866,0,0,4235,4236,3,290,145,0,4236,4237,5,867,0, + 0,4237,4239,1,0,0,0,4238,4209,1,0,0,0,4238,4228,1,0,0,0,4239,293, + 1,0,0,0,4240,4245,5,116,0,0,4241,4245,5,382,0,0,4242,4243,5,42,0, + 0,4243,4245,3,772,386,0,4244,4240,1,0,0,0,4244,4241,1,0,0,0,4244, + 4242,1,0,0,0,4245,4246,1,0,0,0,4246,4247,5,119,0,0,4247,4248,5,55, + 0,0,4248,295,1,0,0,0,4249,4254,5,116,0,0,4250,4254,5,382,0,0,4251, + 4252,5,42,0,0,4252,4254,3,772,386,0,4253,4249,1,0,0,0,4253,4250, + 1,0,0,0,4253,4251,1,0,0,0,4254,4255,1,0,0,0,4255,4256,5,119,0,0, + 4256,4257,5,382,0,0,4257,297,1,0,0,0,4258,4267,7,59,0,0,4259,4267, + 5,76,0,0,4260,4267,5,172,0,0,4261,4267,5,168,0,0,4262,4267,5,166, + 0,0,4263,4267,5,636,0,0,4264,4267,7,60,0,0,4265,4267,5,167,0,0,4266, + 4258,1,0,0,0,4266,4259,1,0,0,0,4266,4260,1,0,0,0,4266,4261,1,0,0, + 0,4266,4262,1,0,0,0,4266,4263,1,0,0,0,4266,4264,1,0,0,0,4266,4265, + 1,0,0,0,4267,299,1,0,0,0,4268,4271,3,306,153,0,4269,4271,3,302,151, + 0,4270,4268,1,0,0,0,4270,4269,1,0,0,0,4271,4276,1,0,0,0,4272,4273, + 5,868,0,0,4273,4275,3,302,151,0,4274,4272,1,0,0,0,4275,4278,1,0, + 0,0,4276,4274,1,0,0,0,4276,4277,1,0,0,0,4277,301,1,0,0,0,4278,4276, + 1,0,0,0,4279,4295,3,304,152,0,4280,4285,3,308,154,0,4281,4283,5, + 13,0,0,4282,4281,1,0,0,0,4282,4283,1,0,0,0,4283,4284,1,0,0,0,4284, + 4286,3,722,361,0,4285,4282,1,0,0,0,4285,4286,1,0,0,0,4286,4295,1, + 0,0,0,4287,4292,3,310,155,0,4288,4290,5,13,0,0,4289,4288,1,0,0,0, + 4289,4290,1,0,0,0,4290,4291,1,0,0,0,4291,4293,3,722,361,0,4292,4289, + 1,0,0,0,4292,4293,1,0,0,0,4293,4295,1,0,0,0,4294,4279,1,0,0,0,4294, + 4280,1,0,0,0,4294,4287,1,0,0,0,4295,303,1,0,0,0,4296,4297,3,718, + 359,0,4297,4298,5,865,0,0,4298,4299,5,850,0,0,4299,305,1,0,0,0,4300, + 4301,5,850,0,0,4301,307,1,0,0,0,4302,4303,3,674,337,0,4303,309,1, + 0,0,0,4304,4305,5,892,0,0,4305,4307,5,841,0,0,4306,4304,1,0,0,0, + 4306,4307,1,0,0,0,4307,4308,1,0,0,0,4308,4311,3,822,411,0,4309,4311, + 3,782,391,0,4310,4306,1,0,0,0,4310,4309,1,0,0,0,4311,311,1,0,0,0, + 4312,4313,5,88,0,0,4313,4318,3,236,118,0,4314,4315,5,868,0,0,4315, + 4317,3,236,118,0,4316,4314,1,0,0,0,4317,4320,1,0,0,0,4318,4316,1, + 0,0,0,4318,4319,1,0,0,0,4319,4349,1,0,0,0,4320,4318,1,0,0,0,4321, + 4322,5,88,0,0,4322,4323,5,372,0,0,4323,4349,5,882,0,0,4324,4325, + 5,88,0,0,4325,4326,5,128,0,0,4326,4330,5,882,0,0,4327,4328,5,26, + 0,0,4328,4329,5,155,0,0,4329,4331,3,704,352,0,4330,4327,1,0,0,0, + 4330,4331,1,0,0,0,4331,4338,1,0,0,0,4332,4334,7,47,0,0,4333,4335, + 3,314,157,0,4334,4333,1,0,0,0,4335,4336,1,0,0,0,4336,4334,1,0,0, + 0,4336,4337,1,0,0,0,4337,4339,1,0,0,0,4338,4332,1,0,0,0,4338,4339, + 1,0,0,0,4339,4346,1,0,0,0,4340,4342,5,102,0,0,4341,4343,3,316,158, + 0,4342,4341,1,0,0,0,4343,4344,1,0,0,0,4344,4342,1,0,0,0,4344,4345, + 1,0,0,0,4345,4347,1,0,0,0,4346,4340,1,0,0,0,4346,4347,1,0,0,0,4347, + 4349,1,0,0,0,4348,4312,1,0,0,0,4348,4321,1,0,0,0,4348,4324,1,0,0, + 0,4349,313,1,0,0,0,4350,4351,5,174,0,0,4351,4352,5,20,0,0,4352,4363, + 5,882,0,0,4353,4355,5,123,0,0,4354,4353,1,0,0,0,4354,4355,1,0,0, + 0,4355,4356,1,0,0,0,4356,4357,5,56,0,0,4357,4358,5,20,0,0,4358,4363, + 5,882,0,0,4359,4360,5,58,0,0,4360,4361,5,20,0,0,4361,4363,5,882, + 0,0,4362,4350,1,0,0,0,4362,4354,1,0,0,0,4362,4359,1,0,0,0,4363,315, + 1,0,0,0,4364,4365,5,171,0,0,4365,4366,5,20,0,0,4366,4371,5,882,0, + 0,4367,4368,5,174,0,0,4368,4369,5,20,0,0,4369,4371,5,882,0,0,4370, + 4364,1,0,0,0,4370,4367,1,0,0,0,4371,317,1,0,0,0,4372,4373,5,68,0, + 0,4373,4375,3,262,131,0,4374,4372,1,0,0,0,4374,4375,1,0,0,0,4375, + 4381,1,0,0,0,4376,4379,5,192,0,0,4377,4380,3,822,411,0,4378,4380, + 3,678,339,0,4379,4377,1,0,0,0,4379,4378,1,0,0,0,4380,4382,1,0,0, + 0,4381,4376,1,0,0,0,4381,4382,1,0,0,0,4382,319,1,0,0,0,4383,4384, + 5,74,0,0,4384,4385,5,20,0,0,4385,4390,3,326,163,0,4386,4387,5,868, + 0,0,4387,4389,3,326,163,0,4388,4386,1,0,0,0,4389,4392,1,0,0,0,4390, + 4388,1,0,0,0,4390,4391,1,0,0,0,4391,4395,1,0,0,0,4392,4390,1,0,0, + 0,4393,4394,5,194,0,0,4394,4396,5,584,0,0,4395,4393,1,0,0,0,4395, + 4396,1,0,0,0,4396,321,1,0,0,0,4397,4398,5,75,0,0,4398,4399,3,822, + 411,0,4399,323,1,0,0,0,4400,4401,5,689,0,0,4401,4402,3,800,400,0, + 4402,4403,5,13,0,0,4403,4404,5,866,0,0,4404,4405,3,798,399,0,4405, + 4415,5,867,0,0,4406,4407,5,868,0,0,4407,4408,3,800,400,0,4408,4409, + 5,13,0,0,4409,4410,5,866,0,0,4410,4411,3,798,399,0,4411,4412,5,867, + 0,0,4412,4414,1,0,0,0,4413,4406,1,0,0,0,4414,4417,1,0,0,0,4415,4413, + 1,0,0,0,4415,4416,1,0,0,0,4416,325,1,0,0,0,4417,4415,1,0,0,0,4418, + 4420,3,822,411,0,4419,4421,7,55,0,0,4420,4419,1,0,0,0,4420,4421, + 1,0,0,0,4421,327,1,0,0,0,4422,4433,5,100,0,0,4423,4424,3,330,165, + 0,4424,4425,5,868,0,0,4425,4427,1,0,0,0,4426,4423,1,0,0,0,4426,4427, + 1,0,0,0,4427,4428,1,0,0,0,4428,4434,3,330,165,0,4429,4430,3,330, + 165,0,4430,4431,5,509,0,0,4431,4432,3,330,165,0,4432,4434,1,0,0, + 0,4433,4426,1,0,0,0,4433,4429,1,0,0,0,4434,329,1,0,0,0,4435,4439, + 3,730,365,0,4436,4439,3,702,351,0,4437,4439,3,724,362,0,4438,4435, + 1,0,0,0,4438,4436,1,0,0,0,4438,4437,1,0,0,0,4439,331,1,0,0,0,4440, + 4441,5,640,0,0,4441,4450,5,664,0,0,4442,4447,3,354,177,0,4443,4444, + 5,868,0,0,4444,4446,3,354,177,0,4445,4443,1,0,0,0,4446,4449,1,0, + 0,0,4447,4445,1,0,0,0,4447,4448,1,0,0,0,4448,4451,1,0,0,0,4449,4447, + 1,0,0,0,4450,4442,1,0,0,0,4450,4451,1,0,0,0,4451,333,1,0,0,0,4452, + 4454,5,317,0,0,4453,4455,5,691,0,0,4454,4453,1,0,0,0,4454,4455,1, + 0,0,0,4455,335,1,0,0,0,4456,4458,5,341,0,0,4457,4459,5,691,0,0,4458, + 4457,1,0,0,0,4458,4459,1,0,0,0,4459,4465,1,0,0,0,4460,4462,5,11, + 0,0,4461,4463,5,502,0,0,4462,4461,1,0,0,0,4462,4463,1,0,0,0,4463, + 4464,1,0,0,0,4464,4466,5,326,0,0,4465,4460,1,0,0,0,4465,4466,1,0, + 0,0,4466,4471,1,0,0,0,4467,4469,5,502,0,0,4468,4467,1,0,0,0,4468, + 4469,1,0,0,0,4469,4470,1,0,0,0,4470,4472,5,140,0,0,4471,4468,1,0, + 0,0,4471,4472,1,0,0,0,4472,337,1,0,0,0,4473,4475,5,583,0,0,4474, + 4476,5,691,0,0,4475,4474,1,0,0,0,4475,4476,1,0,0,0,4476,4482,1,0, + 0,0,4477,4479,5,11,0,0,4478,4480,5,502,0,0,4479,4478,1,0,0,0,4479, + 4480,1,0,0,0,4480,4481,1,0,0,0,4481,4483,5,326,0,0,4482,4477,1,0, + 0,0,4482,4483,1,0,0,0,4483,4488,1,0,0,0,4484,4486,5,502,0,0,4485, + 4484,1,0,0,0,4485,4486,1,0,0,0,4486,4487,1,0,0,0,4487,4489,5,140, + 0,0,4488,4485,1,0,0,0,4488,4489,1,0,0,0,4489,339,1,0,0,0,4490,4491, + 5,589,0,0,4491,4492,3,722,361,0,4492,341,1,0,0,0,4493,4495,5,583, + 0,0,4494,4496,5,691,0,0,4495,4494,1,0,0,0,4495,4496,1,0,0,0,4496, + 4497,1,0,0,0,4497,4499,5,176,0,0,4498,4500,5,589,0,0,4499,4498,1, + 0,0,0,4499,4500,1,0,0,0,4500,4501,1,0,0,0,4501,4502,3,722,361,0, + 4502,343,1,0,0,0,4503,4504,5,140,0,0,4504,4505,5,589,0,0,4505,4506, + 3,722,361,0,4506,345,1,0,0,0,4507,4508,5,104,0,0,4508,4509,7,61, + 0,0,4509,4514,3,356,178,0,4510,4511,5,868,0,0,4511,4513,3,356,178, + 0,4512,4510,1,0,0,0,4513,4516,1,0,0,0,4514,4512,1,0,0,0,4514,4515, + 1,0,0,0,4515,347,1,0,0,0,4516,4514,1,0,0,0,4517,4518,5,183,0,0,4518, + 4519,5,752,0,0,4519,349,1,0,0,0,4520,4521,5,155,0,0,4521,4522,5, + 313,0,0,4522,4523,5,857,0,0,4523,4524,7,26,0,0,4524,351,1,0,0,0, + 4525,4527,5,155,0,0,4526,4528,7,62,0,0,4527,4526,1,0,0,0,4527,4528, + 1,0,0,0,4528,4529,1,0,0,0,4529,4530,5,664,0,0,4530,4535,3,360,180, + 0,4531,4532,5,868,0,0,4532,4534,3,360,180,0,4533,4531,1,0,0,0,4534, + 4537,1,0,0,0,4535,4533,1,0,0,0,4535,4536,1,0,0,0,4536,353,1,0,0, + 0,4537,4535,1,0,0,0,4538,4539,5,194,0,0,4539,4540,5,350,0,0,4540, + 4546,5,600,0,0,4541,4542,5,135,0,0,4542,4546,5,195,0,0,4543,4544, + 5,135,0,0,4544,4546,5,515,0,0,4545,4538,1,0,0,0,4545,4541,1,0,0, + 0,4545,4543,1,0,0,0,4546,355,1,0,0,0,4547,4552,3,662,331,0,4548, + 4550,5,13,0,0,4549,4548,1,0,0,0,4549,4550,1,0,0,0,4550,4551,1,0, + 0,0,4551,4553,3,722,361,0,4552,4549,1,0,0,0,4552,4553,1,0,0,0,4553, + 4554,1,0,0,0,4554,4555,3,358,179,0,4555,357,1,0,0,0,4556,4558,5, + 135,0,0,4557,4559,5,450,0,0,4558,4557,1,0,0,0,4558,4559,1,0,0,0, + 4559,4565,1,0,0,0,4560,4562,5,107,0,0,4561,4560,1,0,0,0,4561,4562, + 1,0,0,0,4562,4563,1,0,0,0,4563,4565,5,195,0,0,4564,4556,1,0,0,0, + 4564,4561,1,0,0,0,4565,359,1,0,0,0,4566,4567,5,440,0,0,4567,4568, + 5,448,0,0,4568,4574,3,362,181,0,4569,4570,5,135,0,0,4570,4574,5, + 195,0,0,4571,4572,5,135,0,0,4572,4574,5,515,0,0,4573,4566,1,0,0, + 0,4573,4569,1,0,0,0,4573,4571,1,0,0,0,4574,361,1,0,0,0,4575,4576, + 5,809,0,0,4576,4583,5,135,0,0,4577,4578,5,135,0,0,4578,4583,5,810, + 0,0,4579,4580,5,135,0,0,4580,4583,5,811,0,0,4581,4583,5,812,0,0, + 4582,4575,1,0,0,0,4582,4577,1,0,0,0,4582,4579,1,0,0,0,4582,4581, + 1,0,0,0,4583,363,1,0,0,0,4584,4585,5,25,0,0,4585,4586,5,453,0,0, + 4586,4587,5,176,0,0,4587,4592,3,380,190,0,4588,4589,5,868,0,0,4589, + 4591,3,380,190,0,4590,4588,1,0,0,0,4591,4594,1,0,0,0,4592,4590,1, + 0,0,0,4592,4593,1,0,0,0,4593,4596,1,0,0,0,4594,4592,1,0,0,0,4595, + 4597,3,400,200,0,4596,4595,1,0,0,0,4596,4597,1,0,0,0,4597,365,1, + 0,0,0,4598,4599,5,25,0,0,4599,4600,5,572,0,0,4600,4601,5,400,0,0, + 4601,4606,3,402,201,0,4602,4603,5,868,0,0,4603,4605,3,402,201,0, + 4604,4602,1,0,0,0,4605,4608,1,0,0,0,4606,4604,1,0,0,0,4606,4607, + 1,0,0,0,4607,4610,1,0,0,0,4608,4606,1,0,0,0,4609,4611,3,400,200, + 0,4610,4609,1,0,0,0,4610,4611,1,0,0,0,4611,367,1,0,0,0,4612,4613, + 5,25,0,0,4613,4614,5,572,0,0,4614,4615,5,605,0,0,4615,4616,5,176, + 0,0,4616,4621,3,390,195,0,4617,4618,5,868,0,0,4618,4620,3,390,195, + 0,4619,4617,1,0,0,0,4620,4623,1,0,0,0,4621,4619,1,0,0,0,4621,4622, + 1,0,0,0,4622,4625,1,0,0,0,4623,4621,1,0,0,0,4624,4626,3,400,200, + 0,4625,4624,1,0,0,0,4625,4626,1,0,0,0,4626,369,1,0,0,0,4627,4628, + 5,133,0,0,4628,4629,7,63,0,0,4629,4634,5,452,0,0,4630,4631,5,176, + 0,0,4631,4635,5,882,0,0,4632,4633,5,16,0,0,4633,4635,5,882,0,0,4634, + 4630,1,0,0,0,4634,4632,1,0,0,0,4635,371,1,0,0,0,4636,4637,5,640, + 0,0,4637,4646,7,64,0,0,4638,4643,3,406,203,0,4639,4640,5,868,0,0, + 4640,4642,3,406,203,0,4641,4639,1,0,0,0,4642,4645,1,0,0,0,4643,4641, + 1,0,0,0,4643,4644,1,0,0,0,4644,4647,1,0,0,0,4645,4643,1,0,0,0,4646, + 4638,1,0,0,0,4646,4647,1,0,0,0,4647,4650,1,0,0,0,4648,4649,5,676, + 0,0,4649,4651,3,408,204,0,4650,4648,1,0,0,0,4650,4651,1,0,0,0,4651, + 4655,1,0,0,0,4652,4654,3,410,205,0,4653,4652,1,0,0,0,4654,4657,1, + 0,0,0,4655,4653,1,0,0,0,4655,4656,1,0,0,0,4656,4659,1,0,0,0,4657, + 4655,1,0,0,0,4658,4660,3,400,200,0,4659,4658,1,0,0,0,4659,4660,1, + 0,0,0,4660,373,1,0,0,0,4661,4662,5,646,0,0,4662,4671,7,64,0,0,4663, + 4668,3,406,203,0,4664,4665,5,868,0,0,4665,4667,3,406,203,0,4666, + 4664,1,0,0,0,4667,4670,1,0,0,0,4668,4666,1,0,0,0,4668,4669,1,0,0, + 0,4669,4672,1,0,0,0,4670,4668,1,0,0,0,4671,4663,1,0,0,0,4671,4672, + 1,0,0,0,4672,4674,1,0,0,0,4673,4675,3,400,200,0,4674,4673,1,0,0, + 0,4674,4675,1,0,0,0,4675,375,1,0,0,0,4676,4677,5,640,0,0,4677,4681, + 5,415,0,0,4678,4679,5,678,0,0,4679,4680,5,857,0,0,4680,4682,5,882, + 0,0,4681,4678,1,0,0,0,4681,4682,1,0,0,0,4682,4687,1,0,0,0,4683,4684, + 5,868,0,0,4684,4685,5,529,0,0,4685,4686,5,857,0,0,4686,4688,5,882, + 0,0,4687,4683,1,0,0,0,4687,4688,1,0,0,0,4688,4693,1,0,0,0,4689,4690, + 5,868,0,0,4690,4691,5,363,0,0,4691,4692,5,857,0,0,4692,4694,5,882, + 0,0,4693,4689,1,0,0,0,4693,4694,1,0,0,0,4694,377,1,0,0,0,4695,4696, + 5,646,0,0,4696,4697,5,415,0,0,4697,379,1,0,0,0,4698,4699,3,382,191, + 0,4699,4700,5,857,0,0,4700,4701,5,882,0,0,4701,4726,1,0,0,0,4702, + 4703,3,384,192,0,4703,4704,5,857,0,0,4704,4705,3,730,365,0,4705, + 4726,1,0,0,0,4706,4707,3,386,193,0,4707,4708,5,857,0,0,4708,4709, + 7,26,0,0,4709,4726,1,0,0,0,4710,4726,3,388,194,0,4711,4712,5,424, + 0,0,4712,4713,5,857,0,0,4713,4722,5,866,0,0,4714,4719,3,722,361, + 0,4715,4716,5,868,0,0,4716,4718,3,722,361,0,4717,4715,1,0,0,0,4718, + 4721,1,0,0,0,4719,4717,1,0,0,0,4719,4720,1,0,0,0,4720,4723,1,0,0, + 0,4721,4719,1,0,0,0,4722,4714,1,0,0,0,4722,4723,1,0,0,0,4723,4724, + 1,0,0,0,4724,4726,5,867,0,0,4725,4698,1,0,0,0,4725,4702,1,0,0,0, + 4725,4706,1,0,0,0,4725,4710,1,0,0,0,4725,4711,1,0,0,0,4726,381,1, + 0,0,0,4727,4728,7,65,0,0,4728,383,1,0,0,0,4729,4730,7,66,0,0,4730, + 385,1,0,0,0,4731,4732,7,67,0,0,4732,387,1,0,0,0,4733,4734,5,543, + 0,0,4734,4735,5,857,0,0,4735,4747,7,68,0,0,4736,4737,5,574,0,0,4737, + 4738,5,857,0,0,4738,4747,7,69,0,0,4739,4740,5,310,0,0,4740,4744, + 5,857,0,0,4741,4745,5,507,0,0,4742,4745,5,450,0,0,4743,4745,3,412, + 206,0,4744,4741,1,0,0,0,4744,4742,1,0,0,0,4744,4743,1,0,0,0,4745, + 4747,1,0,0,0,4746,4733,1,0,0,0,4746,4736,1,0,0,0,4746,4739,1,0,0, + 0,4747,389,1,0,0,0,4748,4749,3,392,196,0,4749,4750,5,857,0,0,4750, + 4751,5,882,0,0,4751,4776,1,0,0,0,4752,4753,3,394,197,0,4753,4754, + 5,857,0,0,4754,4755,3,730,365,0,4755,4776,1,0,0,0,4756,4757,3,396, + 198,0,4757,4758,5,857,0,0,4758,4759,7,26,0,0,4759,4776,1,0,0,0,4760, + 4776,3,398,199,0,4761,4762,5,424,0,0,4762,4763,5,857,0,0,4763,4772, + 5,866,0,0,4764,4769,3,722,361,0,4765,4766,5,868,0,0,4766,4768,3, + 722,361,0,4767,4765,1,0,0,0,4768,4771,1,0,0,0,4769,4767,1,0,0,0, + 4769,4770,1,0,0,0,4770,4773,1,0,0,0,4771,4769,1,0,0,0,4772,4764, + 1,0,0,0,4772,4773,1,0,0,0,4773,4774,1,0,0,0,4774,4776,5,867,0,0, + 4775,4748,1,0,0,0,4775,4752,1,0,0,0,4775,4756,1,0,0,0,4775,4760, + 1,0,0,0,4775,4761,1,0,0,0,4776,391,1,0,0,0,4777,4778,7,70,0,0,4778, + 393,1,0,0,0,4779,4780,7,71,0,0,4780,395,1,0,0,0,4781,4782,7,72,0, + 0,4782,397,1,0,0,0,4783,4784,5,543,0,0,4784,4785,5,857,0,0,4785, + 4797,7,68,0,0,4786,4787,5,574,0,0,4787,4788,5,857,0,0,4788,4797, + 7,73,0,0,4789,4790,5,310,0,0,4790,4794,5,857,0,0,4791,4795,5,507, + 0,0,4792,4795,5,450,0,0,4793,4795,3,412,206,0,4794,4791,1,0,0,0, + 4794,4792,1,0,0,0,4794,4793,1,0,0,0,4795,4797,1,0,0,0,4796,4783, + 1,0,0,0,4796,4786,1,0,0,0,4796,4789,1,0,0,0,4797,399,1,0,0,0,4798, + 4799,5,65,0,0,4799,4800,5,328,0,0,4800,4801,5,882,0,0,4801,401,1, + 0,0,0,4802,4803,5,565,0,0,4803,4804,5,857,0,0,4804,4805,5,866,0, + 0,4805,4810,3,638,319,0,4806,4807,5,868,0,0,4807,4809,3,638,319, + 0,4808,4806,1,0,0,0,4809,4812,1,0,0,0,4810,4808,1,0,0,0,4810,4811, + 1,0,0,0,4811,4813,1,0,0,0,4812,4810,1,0,0,0,4813,4814,5,867,0,0, + 4814,4866,1,0,0,0,4815,4816,5,567,0,0,4816,4817,5,857,0,0,4817,4818, + 5,866,0,0,4818,4823,3,638,319,0,4819,4820,5,868,0,0,4820,4822,3, + 638,319,0,4821,4819,1,0,0,0,4822,4825,1,0,0,0,4823,4821,1,0,0,0, + 4823,4824,1,0,0,0,4824,4826,1,0,0,0,4825,4823,1,0,0,0,4826,4827, + 5,867,0,0,4827,4866,1,0,0,0,4828,4829,5,566,0,0,4829,4830,5,857, + 0,0,4830,4831,5,866,0,0,4831,4832,3,660,330,0,4832,4833,5,867,0, + 0,4833,4866,1,0,0,0,4834,4835,5,568,0,0,4835,4836,5,857,0,0,4836, + 4837,5,866,0,0,4837,4838,3,660,330,0,4838,4839,5,867,0,0,4839,4866, + 1,0,0,0,4840,4841,5,570,0,0,4841,4842,5,857,0,0,4842,4843,5,866, + 0,0,4843,4844,3,768,384,0,4844,4845,5,867,0,0,4845,4866,1,0,0,0, + 4846,4847,5,571,0,0,4847,4848,5,857,0,0,4848,4849,5,866,0,0,4849, + 4850,3,768,384,0,4850,4851,5,867,0,0,4851,4866,1,0,0,0,4852,4853, + 5,569,0,0,4853,4854,5,857,0,0,4854,4855,5,866,0,0,4855,4860,3,404, + 202,0,4856,4857,5,868,0,0,4857,4859,3,404,202,0,4858,4856,1,0,0, + 0,4859,4862,1,0,0,0,4860,4858,1,0,0,0,4860,4861,1,0,0,0,4861,4863, + 1,0,0,0,4862,4860,1,0,0,0,4863,4864,5,867,0,0,4864,4866,1,0,0,0, + 4865,4802,1,0,0,0,4865,4815,1,0,0,0,4865,4828,1,0,0,0,4865,4834, + 1,0,0,0,4865,4840,1,0,0,0,4865,4846,1,0,0,0,4865,4852,1,0,0,0,4866, + 403,1,0,0,0,4867,4868,5,866,0,0,4868,4869,3,662,331,0,4869,4870, + 5,868,0,0,4870,4871,3,662,331,0,4871,4872,5,867,0,0,4872,405,1,0, + 0,0,4873,4874,7,74,0,0,4874,407,1,0,0,0,4875,4876,7,75,0,0,4876, + 4877,5,857,0,0,4877,4901,3,412,206,0,4878,4879,5,460,0,0,4879,4880, + 5,857,0,0,4880,4881,5,882,0,0,4881,4882,5,868,0,0,4882,4883,5,461, + 0,0,4883,4884,5,857,0,0,4884,4901,3,730,365,0,4885,4886,5,611,0, + 0,4886,4887,5,857,0,0,4887,4888,5,882,0,0,4888,4889,5,868,0,0,4889, + 4890,5,612,0,0,4890,4891,5,857,0,0,4891,4901,3,730,365,0,4892,4893, + 5,557,0,0,4893,4894,5,857,0,0,4894,4895,5,882,0,0,4895,4896,5,868, + 0,0,4896,4897,5,558,0,0,4897,4898,5,857,0,0,4898,4901,3,730,365, + 0,4899,4901,5,634,0,0,4900,4875,1,0,0,0,4900,4878,1,0,0,0,4900,4885, + 1,0,0,0,4900,4892,1,0,0,0,4900,4899,1,0,0,0,4901,409,1,0,0,0,4902, + 4903,5,678,0,0,4903,4904,5,857,0,0,4904,4915,5,882,0,0,4905,4906, + 5,529,0,0,4906,4907,5,857,0,0,4907,4915,5,882,0,0,4908,4909,5,363, + 0,0,4909,4910,5,857,0,0,4910,4915,5,882,0,0,4911,4912,5,535,0,0, + 4912,4913,5,857,0,0,4913,4915,5,882,0,0,4914,4902,1,0,0,0,4914,4905, + 1,0,0,0,4914,4908,1,0,0,0,4914,4911,1,0,0,0,4915,411,1,0,0,0,4916, + 4921,3,712,356,0,4917,4918,5,868,0,0,4918,4920,3,712,356,0,4919, + 4917,1,0,0,0,4920,4923,1,0,0,0,4921,4919,1,0,0,0,4921,4922,1,0,0, + 0,4922,4926,1,0,0,0,4923,4921,1,0,0,0,4924,4926,5,882,0,0,4925,4916, + 1,0,0,0,4925,4924,1,0,0,0,4926,413,1,0,0,0,4927,4928,5,694,0,0,4928, + 4929,7,76,0,0,4929,4931,3,714,357,0,4930,4932,7,77,0,0,4931,4930, + 1,0,0,0,4931,4932,1,0,0,0,4932,415,1,0,0,0,4933,4934,5,694,0,0,4934, + 4935,5,378,0,0,4935,4941,3,714,357,0,4936,4939,5,654,0,0,4937,4938, + 5,65,0,0,4938,4940,5,489,0,0,4939,4937,1,0,0,0,4939,4940,1,0,0,0, + 4940,4942,1,0,0,0,4941,4936,1,0,0,0,4941,4942,1,0,0,0,4942,417,1, + 0,0,0,4943,4944,5,694,0,0,4944,4945,5,540,0,0,4945,4946,3,714,357, + 0,4946,419,1,0,0,0,4947,4948,5,694,0,0,4948,4949,5,341,0,0,4949, + 4952,3,714,357,0,4950,4951,5,513,0,0,4951,4953,5,533,0,0,4952,4950, + 1,0,0,0,4952,4953,1,0,0,0,4953,421,1,0,0,0,4954,4955,5,694,0,0,4955, + 4956,5,583,0,0,4956,4957,3,714,357,0,4957,423,1,0,0,0,4958,4959, + 5,694,0,0,4959,4962,5,551,0,0,4960,4961,5,33,0,0,4961,4963,3,714, + 357,0,4962,4960,1,0,0,0,4962,4963,1,0,0,0,4963,425,1,0,0,0,4964, + 4965,5,540,0,0,4965,4966,3,722,361,0,4966,4969,5,68,0,0,4967,4970, + 5,882,0,0,4968,4970,5,892,0,0,4969,4967,1,0,0,0,4969,4968,1,0,0, + 0,4970,427,1,0,0,0,4971,4972,5,717,0,0,4972,4975,3,722,361,0,4973, + 4974,5,188,0,0,4974,4976,3,770,385,0,4975,4973,1,0,0,0,4975,4976, + 1,0,0,0,4976,429,1,0,0,0,4977,4978,7,78,0,0,4978,4979,5,540,0,0, + 4979,4980,3,722,361,0,4980,431,1,0,0,0,4981,4984,3,434,217,0,4982, + 4984,3,4,2,0,4983,4981,1,0,0,0,4983,4982,1,0,0,0,4984,433,1,0,0, + 0,4985,4986,3,722,361,0,4986,4987,5,878,0,0,4987,4989,1,0,0,0,4988, + 4985,1,0,0,0,4988,4989,1,0,0,0,4989,4990,1,0,0,0,4990,4996,5,317, + 0,0,4991,4992,3,454,227,0,4992,4993,5,869,0,0,4993,4995,1,0,0,0, + 4994,4991,1,0,0,0,4995,4998,1,0,0,0,4996,4994,1,0,0,0,4996,4997, + 1,0,0,0,4997,5004,1,0,0,0,4998,4996,1,0,0,0,4999,5000,3,456,228, + 0,5000,5001,5,869,0,0,5001,5003,1,0,0,0,5002,4999,1,0,0,0,5003,5006, + 1,0,0,0,5004,5002,1,0,0,0,5004,5005,1,0,0,0,5005,5012,1,0,0,0,5006, + 5004,1,0,0,0,5007,5008,3,458,229,0,5008,5009,5,869,0,0,5009,5011, + 1,0,0,0,5010,5007,1,0,0,0,5011,5014,1,0,0,0,5012,5010,1,0,0,0,5012, + 5013,1,0,0,0,5013,5020,1,0,0,0,5014,5012,1,0,0,0,5015,5016,3,460, + 230,0,5016,5017,5,869,0,0,5017,5019,1,0,0,0,5018,5015,1,0,0,0,5019, + 5022,1,0,0,0,5020,5018,1,0,0,0,5020,5021,1,0,0,0,5021,5026,1,0,0, + 0,5022,5020,1,0,0,0,5023,5025,3,464,232,0,5024,5023,1,0,0,0,5025, + 5028,1,0,0,0,5026,5024,1,0,0,0,5026,5027,1,0,0,0,5027,5029,1,0,0, + 0,5028,5026,1,0,0,0,5029,5031,5,378,0,0,5030,5032,3,722,361,0,5031, + 5030,1,0,0,0,5031,5032,1,0,0,0,5032,435,1,0,0,0,5033,5036,5,23,0, + 0,5034,5037,3,722,361,0,5035,5037,3,822,411,0,5036,5034,1,0,0,0, + 5036,5035,1,0,0,0,5036,5037,1,0,0,0,5037,5039,1,0,0,0,5038,5040, + 3,466,233,0,5039,5038,1,0,0,0,5040,5041,1,0,0,0,5041,5039,1,0,0, + 0,5041,5042,1,0,0,0,5042,5049,1,0,0,0,5043,5045,5,53,0,0,5044,5046, + 3,464,232,0,5045,5044,1,0,0,0,5046,5047,1,0,0,0,5047,5045,1,0,0, + 0,5047,5048,1,0,0,0,5048,5050,1,0,0,0,5049,5043,1,0,0,0,5049,5050, + 1,0,0,0,5050,5051,1,0,0,0,5051,5052,5,378,0,0,5052,5053,5,23,0,0, + 5053,437,1,0,0,0,5054,5055,5,78,0,0,5055,5056,3,822,411,0,5056,5058, + 5,175,0,0,5057,5059,3,464,232,0,5058,5057,1,0,0,0,5059,5060,1,0, + 0,0,5060,5058,1,0,0,0,5060,5061,1,0,0,0,5061,5065,1,0,0,0,5062,5064, + 3,468,234,0,5063,5062,1,0,0,0,5064,5067,1,0,0,0,5065,5063,1,0,0, + 0,5065,5066,1,0,0,0,5066,5074,1,0,0,0,5067,5065,1,0,0,0,5068,5070, + 5,53,0,0,5069,5071,3,464,232,0,5070,5069,1,0,0,0,5071,5072,1,0,0, + 0,5072,5070,1,0,0,0,5072,5073,1,0,0,0,5073,5075,1,0,0,0,5074,5068, + 1,0,0,0,5074,5075,1,0,0,0,5075,5076,1,0,0,0,5076,5077,5,378,0,0, + 5077,5078,5,78,0,0,5078,439,1,0,0,0,5079,5080,5,90,0,0,5080,5081, + 3,722,361,0,5081,441,1,0,0,0,5082,5083,5,97,0,0,5083,5084,3,722, + 361,0,5084,443,1,0,0,0,5085,5086,3,722,361,0,5086,5087,5,878,0,0, + 5087,5089,1,0,0,0,5088,5085,1,0,0,0,5088,5089,1,0,0,0,5089,5090, + 1,0,0,0,5090,5092,5,106,0,0,5091,5093,3,464,232,0,5092,5091,1,0, + 0,0,5093,5094,1,0,0,0,5094,5092,1,0,0,0,5094,5095,1,0,0,0,5095,5096, + 1,0,0,0,5096,5097,5,378,0,0,5097,5099,5,106,0,0,5098,5100,3,722, + 361,0,5099,5098,1,0,0,0,5099,5100,1,0,0,0,5100,445,1,0,0,0,5101, + 5102,3,722,361,0,5102,5103,5,878,0,0,5103,5105,1,0,0,0,5104,5101, + 1,0,0,0,5104,5105,1,0,0,0,5105,5106,1,0,0,0,5106,5108,5,142,0,0, + 5107,5109,3,464,232,0,5108,5107,1,0,0,0,5109,5110,1,0,0,0,5110,5108, + 1,0,0,0,5110,5111,1,0,0,0,5111,5112,1,0,0,0,5112,5113,5,676,0,0, + 5113,5114,3,822,411,0,5114,5115,5,378,0,0,5115,5117,5,142,0,0,5116, + 5118,3,722,361,0,5117,5116,1,0,0,0,5117,5118,1,0,0,0,5118,447,1, + 0,0,0,5119,5120,5,148,0,0,5120,5121,3,822,411,0,5121,449,1,0,0,0, + 5122,5123,3,722,361,0,5123,5124,5,878,0,0,5124,5126,1,0,0,0,5125, + 5122,1,0,0,0,5125,5126,1,0,0,0,5126,5127,1,0,0,0,5127,5128,5,193, + 0,0,5128,5129,3,822,411,0,5129,5131,5,371,0,0,5130,5132,3,464,232, + 0,5131,5130,1,0,0,0,5132,5133,1,0,0,0,5133,5131,1,0,0,0,5133,5134, + 1,0,0,0,5134,5135,1,0,0,0,5135,5136,5,378,0,0,5136,5138,5,193,0, + 0,5137,5139,3,722,361,0,5138,5137,1,0,0,0,5138,5139,1,0,0,0,5139, + 451,1,0,0,0,5140,5141,5,334,0,0,5141,5156,3,722,361,0,5142,5147, + 5,64,0,0,5143,5145,5,501,0,0,5144,5143,1,0,0,0,5144,5145,1,0,0,0, + 5145,5146,1,0,0,0,5146,5148,5,68,0,0,5147,5144,1,0,0,0,5147,5148, + 1,0,0,0,5148,5149,1,0,0,0,5149,5150,3,722,361,0,5150,5151,5,88,0, + 0,5151,5152,3,720,360,0,5152,5156,1,0,0,0,5153,5154,5,516,0,0,5154, + 5156,3,722,361,0,5155,5140,1,0,0,0,5155,5142,1,0,0,0,5155,5153,1, + 0,0,0,5156,453,1,0,0,0,5157,5158,5,41,0,0,5158,5159,3,720,360,0, + 5159,5162,3,744,372,0,5160,5161,5,42,0,0,5161,5163,3,822,411,0,5162, + 5160,1,0,0,0,5162,5163,1,0,0,0,5163,455,1,0,0,0,5164,5165,5,41,0, + 0,5165,5166,3,722,361,0,5166,5167,5,30,0,0,5167,5174,5,65,0,0,5168, + 5175,3,730,365,0,5169,5171,5,164,0,0,5170,5172,5,682,0,0,5171,5170, + 1,0,0,0,5171,5172,1,0,0,0,5172,5173,1,0,0,0,5173,5175,5,882,0,0, + 5174,5168,1,0,0,0,5174,5169,1,0,0,0,5175,457,1,0,0,0,5176,5177,5, + 41,0,0,5177,5178,3,722,361,0,5178,5179,5,38,0,0,5179,5180,5,65,0, + 0,5180,5181,3,210,105,0,5181,459,1,0,0,0,5182,5183,5,41,0,0,5183, + 5184,7,79,0,0,5184,5185,5,417,0,0,5185,5186,5,65,0,0,5186,5191,3, + 462,231,0,5187,5188,5,868,0,0,5188,5190,3,462,231,0,5189,5187,1, + 0,0,0,5190,5193,1,0,0,0,5191,5189,1,0,0,0,5191,5192,1,0,0,0,5192, + 5194,1,0,0,0,5193,5191,1,0,0,0,5194,5195,3,432,216,0,5195,461,1, + 0,0,0,5196,5208,3,730,365,0,5197,5199,5,164,0,0,5198,5200,5,682, + 0,0,5199,5198,1,0,0,0,5199,5200,1,0,0,0,5200,5201,1,0,0,0,5201,5208, + 5,882,0,0,5202,5208,3,722,361,0,5203,5208,5,165,0,0,5204,5205,5, + 114,0,0,5205,5208,5,407,0,0,5206,5208,5,163,0,0,5207,5196,1,0,0, + 0,5207,5197,1,0,0,0,5207,5202,1,0,0,0,5207,5203,1,0,0,0,5207,5204, + 1,0,0,0,5207,5206,1,0,0,0,5208,463,1,0,0,0,5209,5212,3,18,9,0,5210, + 5212,3,4,2,0,5211,5209,1,0,0,0,5211,5210,1,0,0,0,5212,5213,1,0,0, + 0,5213,5214,5,869,0,0,5214,465,1,0,0,0,5215,5218,5,191,0,0,5216, + 5219,3,742,371,0,5217,5219,3,822,411,0,5218,5216,1,0,0,0,5218,5217, + 1,0,0,0,5219,5220,1,0,0,0,5220,5222,5,175,0,0,5221,5223,3,464,232, + 0,5222,5221,1,0,0,0,5223,5224,1,0,0,0,5224,5222,1,0,0,0,5224,5225, + 1,0,0,0,5225,467,1,0,0,0,5226,5227,5,54,0,0,5227,5228,3,822,411, + 0,5228,5230,5,175,0,0,5229,5231,3,464,232,0,5230,5229,1,0,0,0,5231, + 5232,1,0,0,0,5232,5230,1,0,0,0,5232,5233,1,0,0,0,5233,469,1,0,0, + 0,5234,5235,5,8,0,0,5235,5237,5,678,0,0,5236,5238,3,776,388,0,5237, + 5236,1,0,0,0,5237,5238,1,0,0,0,5238,5295,1,0,0,0,5239,5244,3,502, + 251,0,5240,5241,5,868,0,0,5241,5243,3,502,251,0,5242,5240,1,0,0, + 0,5243,5246,1,0,0,0,5244,5242,1,0,0,0,5244,5245,1,0,0,0,5245,5296, + 1,0,0,0,5246,5244,1,0,0,0,5247,5252,3,504,252,0,5248,5249,5,868, + 0,0,5249,5251,3,504,252,0,5250,5248,1,0,0,0,5251,5254,1,0,0,0,5252, + 5250,1,0,0,0,5252,5253,1,0,0,0,5253,5269,1,0,0,0,5254,5252,1,0,0, + 0,5255,5267,5,144,0,0,5256,5268,5,505,0,0,5257,5264,3,516,258,0, + 5258,5260,5,11,0,0,5259,5258,1,0,0,0,5259,5260,1,0,0,0,5260,5261, + 1,0,0,0,5261,5263,3,516,258,0,5262,5259,1,0,0,0,5263,5266,1,0,0, + 0,5264,5262,1,0,0,0,5264,5265,1,0,0,0,5265,5268,1,0,0,0,5266,5264, + 1,0,0,0,5267,5256,1,0,0,0,5267,5257,1,0,0,0,5268,5270,1,0,0,0,5269, + 5255,1,0,0,0,5269,5270,1,0,0,0,5270,5277,1,0,0,0,5271,5273,5,194, + 0,0,5272,5274,3,518,259,0,5273,5272,1,0,0,0,5274,5275,1,0,0,0,5275, + 5273,1,0,0,0,5275,5276,1,0,0,0,5276,5278,1,0,0,0,5277,5271,1,0,0, + 0,5277,5278,1,0,0,0,5278,5283,1,0,0,0,5279,5282,3,520,260,0,5280, + 5282,3,522,261,0,5281,5279,1,0,0,0,5281,5280,1,0,0,0,5282,5285,1, + 0,0,0,5283,5281,1,0,0,0,5283,5284,1,0,0,0,5284,5288,1,0,0,0,5285, + 5283,1,0,0,0,5286,5287,7,80,0,0,5287,5289,5,882,0,0,5288,5286,1, + 0,0,0,5288,5289,1,0,0,0,5289,5296,1,0,0,0,5290,5291,3,666,333,0, + 5291,5292,5,42,0,0,5292,5293,5,582,0,0,5293,5294,3,478,239,0,5294, + 5296,1,0,0,0,5295,5239,1,0,0,0,5295,5247,1,0,0,0,5295,5290,1,0,0, + 0,5296,471,1,0,0,0,5297,5298,5,34,0,0,5298,5300,5,678,0,0,5299,5301, + 3,778,389,0,5300,5299,1,0,0,0,5300,5301,1,0,0,0,5301,5302,1,0,0, + 0,5302,5304,3,700,350,0,5303,5305,3,506,253,0,5304,5303,1,0,0,0, + 5304,5305,1,0,0,0,5305,5313,1,0,0,0,5306,5307,5,868,0,0,5307,5309, + 3,700,350,0,5308,5310,3,506,253,0,5309,5308,1,0,0,0,5309,5310,1, + 0,0,0,5310,5312,1,0,0,0,5311,5306,1,0,0,0,5312,5315,1,0,0,0,5313, + 5311,1,0,0,0,5313,5314,1,0,0,0,5314,5319,1,0,0,0,5315,5313,1,0,0, + 0,5316,5317,5,42,0,0,5317,5318,5,582,0,0,5318,5320,3,478,239,0,5319, + 5316,1,0,0,0,5319,5320,1,0,0,0,5320,5335,1,0,0,0,5321,5333,5,144, + 0,0,5322,5334,5,505,0,0,5323,5330,3,516,258,0,5324,5326,5,11,0,0, + 5325,5324,1,0,0,0,5325,5326,1,0,0,0,5326,5327,1,0,0,0,5327,5329, + 3,516,258,0,5328,5325,1,0,0,0,5329,5332,1,0,0,0,5330,5328,1,0,0, + 0,5330,5331,1,0,0,0,5331,5334,1,0,0,0,5332,5330,1,0,0,0,5333,5322, + 1,0,0,0,5333,5323,1,0,0,0,5334,5336,1,0,0,0,5335,5321,1,0,0,0,5335, + 5336,1,0,0,0,5336,5343,1,0,0,0,5337,5339,5,194,0,0,5338,5340,3,518, + 259,0,5339,5338,1,0,0,0,5340,5341,1,0,0,0,5341,5339,1,0,0,0,5341, + 5342,1,0,0,0,5342,5344,1,0,0,0,5343,5337,1,0,0,0,5343,5344,1,0,0, + 0,5344,5349,1,0,0,0,5345,5348,3,520,260,0,5346,5348,3,522,261,0, + 5347,5345,1,0,0,0,5347,5346,1,0,0,0,5348,5351,1,0,0,0,5349,5347, + 1,0,0,0,5349,5350,1,0,0,0,5350,5354,1,0,0,0,5351,5349,1,0,0,0,5352, + 5353,7,80,0,0,5353,5355,5,882,0,0,5354,5352,1,0,0,0,5354,5355,1, + 0,0,0,5355,473,1,0,0,0,5356,5357,5,51,0,0,5357,5359,5,678,0,0,5358, + 5360,3,776,388,0,5359,5358,1,0,0,0,5359,5360,1,0,0,0,5360,5361,1, + 0,0,0,5361,5366,3,700,350,0,5362,5363,5,868,0,0,5363,5365,3,700, + 350,0,5364,5362,1,0,0,0,5365,5368,1,0,0,0,5366,5364,1,0,0,0,5366, + 5367,1,0,0,0,5367,475,1,0,0,0,5368,5366,1,0,0,0,5369,5370,5,73,0, + 0,5370,5375,3,530,265,0,5371,5372,5,868,0,0,5372,5374,3,530,265, + 0,5373,5371,1,0,0,0,5374,5377,1,0,0,0,5375,5373,1,0,0,0,5375,5376, + 1,0,0,0,5376,5378,1,0,0,0,5377,5375,1,0,0,0,5378,5380,5,119,0,0, + 5379,5381,3,498,249,0,5380,5379,1,0,0,0,5380,5381,1,0,0,0,5381,5382, + 1,0,0,0,5382,5383,3,534,267,0,5383,5393,5,176,0,0,5384,5389,3,510, + 255,0,5385,5386,5,868,0,0,5386,5388,3,510,255,0,5387,5385,1,0,0, + 0,5388,5391,1,0,0,0,5389,5387,1,0,0,0,5389,5390,1,0,0,0,5390,5394, + 1,0,0,0,5391,5389,1,0,0,0,5392,5394,3,664,332,0,5393,5384,1,0,0, + 0,5393,5392,1,0,0,0,5394,5409,1,0,0,0,5395,5407,5,144,0,0,5396,5408, + 5,505,0,0,5397,5404,3,516,258,0,5398,5400,5,11,0,0,5399,5398,1,0, + 0,0,5399,5400,1,0,0,0,5400,5401,1,0,0,0,5401,5403,3,516,258,0,5402, + 5399,1,0,0,0,5403,5406,1,0,0,0,5404,5402,1,0,0,0,5404,5405,1,0,0, + 0,5405,5408,1,0,0,0,5406,5404,1,0,0,0,5407,5396,1,0,0,0,5407,5397, + 1,0,0,0,5408,5410,1,0,0,0,5409,5395,1,0,0,0,5409,5410,1,0,0,0,5410, + 5420,1,0,0,0,5411,5417,5,194,0,0,5412,5413,5,73,0,0,5413,5416,5, + 121,0,0,5414,5416,3,518,259,0,5415,5412,1,0,0,0,5415,5414,1,0,0, + 0,5416,5419,1,0,0,0,5417,5415,1,0,0,0,5417,5418,1,0,0,0,5418,5421, + 1,0,0,0,5419,5417,1,0,0,0,5420,5411,1,0,0,0,5420,5421,1,0,0,0,5421, + 5429,1,0,0,0,5422,5423,5,13,0,0,5423,5427,3,700,350,0,5424,5425, + 5,194,0,0,5425,5426,5,582,0,0,5426,5428,3,478,239,0,5427,5424,1, + 0,0,0,5427,5428,1,0,0,0,5428,5430,1,0,0,0,5429,5422,1,0,0,0,5429, + 5430,1,0,0,0,5430,5459,1,0,0,0,5431,5434,5,73,0,0,5432,5433,5,547, + 0,0,5433,5435,5,119,0,0,5434,5432,1,0,0,0,5434,5435,1,0,0,0,5435, + 5436,1,0,0,0,5436,5441,3,666,333,0,5437,5438,5,868,0,0,5438,5440, + 3,666,333,0,5439,5437,1,0,0,0,5440,5443,1,0,0,0,5441,5439,1,0,0, + 0,5441,5442,1,0,0,0,5442,5444,1,0,0,0,5443,5441,1,0,0,0,5444,5445, + 5,176,0,0,5445,5450,3,666,333,0,5446,5447,5,868,0,0,5447,5449,3, + 666,333,0,5448,5446,1,0,0,0,5449,5452,1,0,0,0,5450,5448,1,0,0,0, + 5450,5451,1,0,0,0,5451,5456,1,0,0,0,5452,5450,1,0,0,0,5453,5454, + 5,194,0,0,5454,5455,5,704,0,0,5455,5457,5,121,0,0,5456,5453,1,0, + 0,0,5456,5457,1,0,0,0,5457,5459,1,0,0,0,5458,5369,1,0,0,0,5458,5431, + 1,0,0,0,5459,477,1,0,0,0,5460,5469,5,42,0,0,5461,5469,5,505,0,0, + 5462,5465,5,7,0,0,5463,5464,5,59,0,0,5464,5466,3,664,332,0,5465, + 5463,1,0,0,0,5465,5466,1,0,0,0,5466,5469,1,0,0,0,5467,5469,3,664, + 332,0,5468,5460,1,0,0,0,5468,5461,1,0,0,0,5468,5462,1,0,0,0,5468, + 5467,1,0,0,0,5469,479,1,0,0,0,5470,5471,5,73,0,0,5471,5472,5,547, + 0,0,5472,5473,5,119,0,0,5473,5474,3,700,350,0,5474,5475,5,176,0, + 0,5475,5480,3,700,350,0,5476,5477,5,868,0,0,5477,5479,3,700,350, + 0,5478,5476,1,0,0,0,5479,5482,1,0,0,0,5480,5478,1,0,0,0,5480,5481, + 1,0,0,0,5481,5486,1,0,0,0,5482,5480,1,0,0,0,5483,5484,5,194,0,0, + 5484,5485,5,73,0,0,5485,5487,5,121,0,0,5486,5483,1,0,0,0,5486,5487, + 1,0,0,0,5487,481,1,0,0,0,5488,5489,5,8,0,0,5489,5490,5,739,0,0,5490, + 5491,5,74,0,0,5491,5497,3,656,328,0,5492,5494,5,190,0,0,5493,5495, + 5,857,0,0,5494,5493,1,0,0,0,5494,5495,1,0,0,0,5495,5496,1,0,0,0, + 5496,5498,3,490,245,0,5497,5492,1,0,0,0,5497,5498,1,0,0,0,5498,5504, + 1,0,0,0,5499,5501,5,837,0,0,5500,5502,5,857,0,0,5501,5500,1,0,0, + 0,5501,5502,1,0,0,0,5502,5503,1,0,0,0,5503,5505,3,730,365,0,5504, + 5499,1,0,0,0,5504,5505,1,0,0,0,5505,5510,1,0,0,0,5506,5508,7,39, + 0,0,5507,5509,5,66,0,0,5508,5507,1,0,0,0,5508,5509,1,0,0,0,5509, + 5511,1,0,0,0,5510,5506,1,0,0,0,5510,5511,1,0,0,0,5511,483,1,0,0, + 0,5512,5513,5,34,0,0,5513,5514,5,739,0,0,5514,5515,5,74,0,0,5515, + 5516,3,654,327,0,5516,5517,5,839,0,0,5517,5518,5,857,0,0,5518,5524, + 7,81,0,0,5519,5521,5,190,0,0,5520,5522,5,857,0,0,5521,5520,1,0,0, + 0,5521,5522,1,0,0,0,5522,5523,1,0,0,0,5523,5525,3,490,245,0,5524, + 5519,1,0,0,0,5524,5525,1,0,0,0,5525,5531,1,0,0,0,5526,5528,5,837, + 0,0,5527,5529,5,857,0,0,5528,5527,1,0,0,0,5528,5529,1,0,0,0,5529, + 5530,1,0,0,0,5530,5532,3,730,365,0,5531,5526,1,0,0,0,5531,5532,1, + 0,0,0,5532,5534,1,0,0,0,5533,5535,7,39,0,0,5534,5533,1,0,0,0,5534, + 5535,1,0,0,0,5535,485,1,0,0,0,5536,5537,5,51,0,0,5537,5538,5,739, + 0,0,5538,5539,5,74,0,0,5539,5541,3,656,328,0,5540,5542,5,66,0,0, + 5541,5540,1,0,0,0,5541,5542,1,0,0,0,5542,487,1,0,0,0,5543,5544,5, + 155,0,0,5544,5545,5,739,0,0,5545,5546,5,74,0,0,5546,5556,3,656,328, + 0,5547,5548,5,65,0,0,5548,5553,3,730,365,0,5549,5550,5,868,0,0,5550, + 5552,3,730,365,0,5551,5549,1,0,0,0,5552,5555,1,0,0,0,5553,5551,1, + 0,0,0,5553,5554,1,0,0,0,5554,5557,1,0,0,0,5555,5553,1,0,0,0,5556, + 5547,1,0,0,0,5556,5557,1,0,0,0,5557,489,1,0,0,0,5558,5564,3,730, + 365,0,5559,5560,3,730,365,0,5560,5561,5,854,0,0,5561,5562,3,730, + 365,0,5562,5564,1,0,0,0,5563,5558,1,0,0,0,5563,5559,1,0,0,0,5564, + 5569,1,0,0,0,5565,5566,5,868,0,0,5566,5568,3,490,245,0,5567,5565, + 1,0,0,0,5568,5571,1,0,0,0,5569,5567,1,0,0,0,5569,5570,1,0,0,0,5570, + 491,1,0,0,0,5571,5569,1,0,0,0,5572,5573,5,141,0,0,5573,5574,5,678, + 0,0,5574,5579,3,536,268,0,5575,5576,5,868,0,0,5576,5578,3,536,268, + 0,5577,5575,1,0,0,0,5578,5581,1,0,0,0,5579,5577,1,0,0,0,5579,5580, + 1,0,0,0,5580,493,1,0,0,0,5581,5579,1,0,0,0,5582,5584,5,149,0,0,5583, + 5585,3,776,388,0,5584,5583,1,0,0,0,5584,5585,1,0,0,0,5585,5586,1, + 0,0,0,5586,5591,3,530,265,0,5587,5588,5,868,0,0,5588,5590,3,530, + 265,0,5589,5587,1,0,0,0,5590,5593,1,0,0,0,5591,5589,1,0,0,0,5591, + 5592,1,0,0,0,5592,5594,1,0,0,0,5593,5591,1,0,0,0,5594,5596,5,119, + 0,0,5595,5597,3,498,249,0,5596,5595,1,0,0,0,5596,5597,1,0,0,0,5597, + 5598,1,0,0,0,5598,5599,3,534,267,0,5599,5600,5,68,0,0,5600,5602, + 3,664,332,0,5601,5603,3,496,248,0,5602,5601,1,0,0,0,5602,5603,1, + 0,0,0,5603,5635,1,0,0,0,5604,5606,5,149,0,0,5605,5607,3,776,388, + 0,5606,5605,1,0,0,0,5606,5607,1,0,0,0,5607,5608,1,0,0,0,5608,5610, + 5,7,0,0,5609,5611,5,734,0,0,5610,5609,1,0,0,0,5610,5611,1,0,0,0, + 5611,5612,1,0,0,0,5612,5613,5,868,0,0,5613,5614,5,73,0,0,5614,5615, + 5,121,0,0,5615,5616,5,68,0,0,5616,5618,3,664,332,0,5617,5619,3,496, + 248,0,5618,5617,1,0,0,0,5618,5619,1,0,0,0,5619,5635,1,0,0,0,5620, + 5622,5,149,0,0,5621,5623,3,776,388,0,5622,5621,1,0,0,0,5622,5623, + 1,0,0,0,5623,5626,1,0,0,0,5624,5625,5,547,0,0,5625,5627,5,119,0, + 0,5626,5624,1,0,0,0,5626,5627,1,0,0,0,5627,5628,1,0,0,0,5628,5629, + 3,664,332,0,5629,5630,5,68,0,0,5630,5632,3,664,332,0,5631,5633,3, + 496,248,0,5632,5631,1,0,0,0,5632,5633,1,0,0,0,5633,5635,1,0,0,0, + 5634,5582,1,0,0,0,5634,5604,1,0,0,0,5634,5620,1,0,0,0,5635,495,1, + 0,0,0,5636,5637,5,79,0,0,5637,5638,5,674,0,0,5638,5639,5,678,0,0, + 5639,497,1,0,0,0,5640,5641,7,82,0,0,5641,499,1,0,0,0,5642,5643,5, + 155,0,0,5643,5646,5,529,0,0,5644,5645,5,65,0,0,5645,5647,3,700,350, + 0,5646,5644,1,0,0,0,5646,5647,1,0,0,0,5647,5648,1,0,0,0,5648,5651, + 5,857,0,0,5649,5652,3,816,408,0,5650,5652,5,882,0,0,5651,5649,1, + 0,0,0,5651,5650,1,0,0,0,5652,5675,1,0,0,0,5653,5654,5,155,0,0,5654, + 5657,5,529,0,0,5655,5656,5,65,0,0,5656,5658,3,700,350,0,5657,5655, + 1,0,0,0,5657,5658,1,0,0,0,5658,5663,1,0,0,0,5659,5660,5,176,0,0, + 5660,5664,5,829,0,0,5661,5662,5,857,0,0,5662,5664,5,882,0,0,5663, + 5659,1,0,0,0,5663,5661,1,0,0,0,5664,5667,1,0,0,0,5665,5666,5,143, + 0,0,5666,5668,5,882,0,0,5667,5665,1,0,0,0,5667,5668,1,0,0,0,5668, + 5672,1,0,0,0,5669,5670,5,147,0,0,5670,5671,5,36,0,0,5671,5673,5, + 529,0,0,5672,5669,1,0,0,0,5672,5673,1,0,0,0,5673,5675,1,0,0,0,5674, + 5642,1,0,0,0,5674,5653,1,0,0,0,5675,501,1,0,0,0,5676,5677,3,700, + 350,0,5677,5678,3,520,260,0,5678,503,1,0,0,0,5679,5705,3,700,350, + 0,5680,5681,5,423,0,0,5681,5682,5,20,0,0,5682,5683,5,882,0,0,5683, + 5706,3,512,256,0,5684,5685,5,423,0,0,5685,5686,5,20,0,0,5686,5687, + 5,829,0,0,5687,5688,5,529,0,0,5688,5706,3,512,256,0,5689,5690,5, + 423,0,0,5690,5691,5,194,0,0,5691,5706,3,514,257,0,5692,5693,5,369, + 0,0,5693,5694,5,511,0,0,5694,5706,5,529,0,0,5695,5696,7,83,0,0,5696, + 5698,3,528,264,0,5697,5699,3,524,262,0,5698,5697,1,0,0,0,5698,5699, + 1,0,0,0,5699,5701,1,0,0,0,5700,5695,1,0,0,0,5701,5702,1,0,0,0,5702, + 5700,1,0,0,0,5702,5703,1,0,0,0,5703,5706,1,0,0,0,5704,5706,3,526, + 263,0,5705,5680,1,0,0,0,5705,5684,1,0,0,0,5705,5689,1,0,0,0,5705, + 5692,1,0,0,0,5705,5700,1,0,0,0,5705,5704,1,0,0,0,5705,5706,1,0,0, + 0,5706,505,1,0,0,0,5707,5708,5,423,0,0,5708,5714,5,20,0,0,5709,5715, + 5,882,0,0,5710,5711,5,829,0,0,5711,5715,5,529,0,0,5712,5713,5,529, + 0,0,5713,5715,5,882,0,0,5714,5709,1,0,0,0,5714,5710,1,0,0,0,5714, + 5712,1,0,0,0,5715,5718,1,0,0,0,5716,5717,5,11,0,0,5717,5719,3,506, + 253,0,5718,5716,1,0,0,0,5718,5719,1,0,0,0,5719,5744,1,0,0,0,5720, + 5721,5,423,0,0,5721,5722,5,194,0,0,5722,5731,3,722,361,0,5723,5727, + 5,20,0,0,5724,5728,5,882,0,0,5725,5726,5,829,0,0,5726,5728,5,529, + 0,0,5727,5724,1,0,0,0,5727,5725,1,0,0,0,5728,5732,1,0,0,0,5729,5730, + 5,13,0,0,5730,5732,5,882,0,0,5731,5723,1,0,0,0,5731,5729,1,0,0,0, + 5731,5732,1,0,0,0,5732,5735,1,0,0,0,5733,5734,5,11,0,0,5734,5736, + 3,506,253,0,5735,5733,1,0,0,0,5735,5736,1,0,0,0,5736,5744,1,0,0, + 0,5737,5738,5,423,0,0,5738,5739,5,194,0,0,5739,5741,3,722,361,0, + 5740,5742,3,508,254,0,5741,5740,1,0,0,0,5741,5742,1,0,0,0,5742,5744, + 1,0,0,0,5743,5707,1,0,0,0,5743,5720,1,0,0,0,5743,5737,1,0,0,0,5744, + 507,1,0,0,0,5745,5746,5,427,0,0,5746,5747,5,708,0,0,5747,5748,5, + 423,0,0,5748,5752,5,20,0,0,5749,5750,5,829,0,0,5750,5753,5,529,0, + 0,5751,5753,5,882,0,0,5752,5749,1,0,0,0,5752,5751,1,0,0,0,5753,5763, + 1,0,0,0,5754,5755,5,427,0,0,5755,5756,5,708,0,0,5756,5757,5,423, + 0,0,5757,5758,5,194,0,0,5758,5759,3,722,361,0,5759,5760,5,13,0,0, + 5760,5761,5,882,0,0,5761,5763,1,0,0,0,5762,5745,1,0,0,0,5762,5754, + 1,0,0,0,5763,509,1,0,0,0,5764,5765,3,700,350,0,5765,5766,5,423,0, + 0,5766,5767,5,20,0,0,5767,5768,5,529,0,0,5768,5769,5,882,0,0,5769, + 5790,1,0,0,0,5770,5771,3,700,350,0,5771,5772,5,423,0,0,5772,5773, + 5,20,0,0,5773,5774,5,829,0,0,5774,5775,5,529,0,0,5775,5776,3,512, + 256,0,5776,5790,1,0,0,0,5777,5778,3,700,350,0,5778,5779,5,423,0, + 0,5779,5780,5,20,0,0,5780,5781,5,882,0,0,5781,5782,3,512,256,0,5782, + 5790,1,0,0,0,5783,5784,3,700,350,0,5784,5785,5,423,0,0,5785,5786, + 5,194,0,0,5786,5787,3,514,257,0,5787,5790,1,0,0,0,5788,5790,3,700, + 350,0,5789,5764,1,0,0,0,5789,5770,1,0,0,0,5789,5777,1,0,0,0,5789, + 5783,1,0,0,0,5789,5788,1,0,0,0,5790,511,1,0,0,0,5791,5792,5,143, + 0,0,5792,5794,5,882,0,0,5793,5791,1,0,0,0,5793,5794,1,0,0,0,5794, + 5798,1,0,0,0,5795,5796,5,147,0,0,5796,5797,5,36,0,0,5797,5799,5, + 529,0,0,5798,5795,1,0,0,0,5798,5799,1,0,0,0,5799,513,1,0,0,0,5800, + 5808,3,722,361,0,5801,5805,7,84,0,0,5802,5806,5,882,0,0,5803,5804, + 5,829,0,0,5804,5806,5,529,0,0,5805,5802,1,0,0,0,5805,5803,1,0,0, + 0,5806,5807,1,0,0,0,5807,5809,3,512,256,0,5808,5801,1,0,0,0,5808, + 5809,1,0,0,0,5809,5815,1,0,0,0,5810,5811,3,722,361,0,5811,5812,5, + 188,0,0,5812,5813,3,816,408,0,5813,5815,1,0,0,0,5814,5800,1,0,0, + 0,5814,5810,1,0,0,0,5815,515,1,0,0,0,5816,5825,5,169,0,0,5817,5825, + 5,693,0,0,5818,5819,5,331,0,0,5819,5825,5,882,0,0,5820,5821,5,441, + 0,0,5821,5825,5,882,0,0,5822,5823,5,651,0,0,5823,5825,5,882,0,0, + 5824,5816,1,0,0,0,5824,5817,1,0,0,0,5824,5818,1,0,0,0,5824,5820, + 1,0,0,0,5824,5822,1,0,0,0,5825,517,1,0,0,0,5826,5827,5,479,0,0,5827, + 5835,3,730,365,0,5828,5829,5,482,0,0,5829,5835,3,730,365,0,5830, + 5831,5,478,0,0,5831,5835,3,730,365,0,5832,5833,5,483,0,0,5833,5835, + 3,730,365,0,5834,5826,1,0,0,0,5834,5828,1,0,0,0,5834,5830,1,0,0, + 0,5834,5832,1,0,0,0,5835,519,1,0,0,0,5836,5837,5,529,0,0,5837,5844, + 5,390,0,0,5838,5845,5,42,0,0,5839,5845,5,500,0,0,5840,5841,5,87, + 0,0,5841,5842,3,730,365,0,5842,5843,5,698,0,0,5843,5845,1,0,0,0, + 5844,5838,1,0,0,0,5844,5839,1,0,0,0,5844,5840,1,0,0,0,5844,5845, + 1,0,0,0,5845,5875,1,0,0,0,5846,5847,5,529,0,0,5847,5850,5,420,0, + 0,5848,5851,5,42,0,0,5849,5851,3,730,365,0,5850,5848,1,0,0,0,5850, + 5849,1,0,0,0,5851,5875,1,0,0,0,5852,5853,5,529,0,0,5853,5854,5,581, + 0,0,5854,5859,5,87,0,0,5855,5860,5,42,0,0,5856,5857,3,730,365,0, + 5857,5858,5,698,0,0,5858,5860,1,0,0,0,5859,5855,1,0,0,0,5859,5856, + 1,0,0,0,5860,5875,1,0,0,0,5861,5862,5,529,0,0,5862,5863,5,144,0, + 0,5863,5865,5,36,0,0,5864,5866,7,85,0,0,5865,5864,1,0,0,0,5865,5866, + 1,0,0,0,5866,5875,1,0,0,0,5867,5868,5,395,0,0,5868,5875,3,730,365, + 0,5869,5872,5,530,0,0,5870,5873,3,730,365,0,5871,5873,5,669,0,0, + 5872,5870,1,0,0,0,5872,5871,1,0,0,0,5873,5875,1,0,0,0,5874,5836, + 1,0,0,0,5874,5846,1,0,0,0,5874,5852,1,0,0,0,5874,5861,1,0,0,0,5874, + 5867,1,0,0,0,5874,5869,1,0,0,0,5875,521,1,0,0,0,5876,5877,5,304, + 0,0,5877,5878,7,86,0,0,5878,523,1,0,0,0,5879,5882,5,423,0,0,5880, + 5881,5,194,0,0,5881,5883,3,722,361,0,5882,5880,1,0,0,0,5882,5883, + 1,0,0,0,5883,5892,1,0,0,0,5884,5888,5,20,0,0,5885,5889,5,882,0,0, + 5886,5887,5,829,0,0,5887,5889,5,529,0,0,5888,5885,1,0,0,0,5888,5886, + 1,0,0,0,5889,5893,1,0,0,0,5890,5891,5,13,0,0,5891,5893,5,882,0,0, + 5892,5884,1,0,0,0,5892,5890,1,0,0,0,5893,525,1,0,0,0,5894,5895,3, + 528,264,0,5895,5896,5,429,0,0,5896,5897,5,555,0,0,5897,5910,1,0, + 0,0,5898,5899,3,528,264,0,5899,5900,5,401,0,0,5900,5901,5,555,0, + 0,5901,5902,5,155,0,0,5902,5903,5,330,0,0,5903,5904,5,13,0,0,5904, + 5905,5,882,0,0,5905,5910,1,0,0,0,5906,5907,3,528,264,0,5907,5908, + 5,675,0,0,5908,5910,1,0,0,0,5909,5894,1,0,0,0,5909,5898,1,0,0,0, + 5909,5906,1,0,0,0,5910,527,1,0,0,0,5911,5912,7,87,0,0,5912,5913, + 5,394,0,0,5913,529,1,0,0,0,5914,5919,3,532,266,0,5915,5916,5,866, + 0,0,5916,5917,3,670,335,0,5917,5918,5,867,0,0,5918,5920,1,0,0,0, + 5919,5915,1,0,0,0,5919,5920,1,0,0,0,5920,531,1,0,0,0,5921,5923,5, + 7,0,0,5922,5924,5,734,0,0,5923,5922,1,0,0,0,5923,5924,1,0,0,0,5924, + 6015,1,0,0,0,5925,5927,5,8,0,0,5926,5928,5,743,0,0,5927,5926,1,0, + 0,0,5927,5928,1,0,0,0,5928,6015,1,0,0,0,5929,5937,5,34,0,0,5930, + 5931,5,660,0,0,5931,5938,5,752,0,0,5932,5938,5,743,0,0,5933,5938, + 5,684,0,0,5934,5938,5,678,0,0,5935,5938,5,658,0,0,5936,5938,5,582, + 0,0,5937,5930,1,0,0,0,5937,5932,1,0,0,0,5937,5933,1,0,0,0,5937,5934, + 1,0,0,0,5937,5935,1,0,0,0,5937,5936,1,0,0,0,5937,5938,1,0,0,0,5938, + 6015,1,0,0,0,5939,6015,5,44,0,0,5940,5942,5,51,0,0,5941,5943,5,582, + 0,0,5942,5941,1,0,0,0,5942,5943,1,0,0,0,5943,6015,1,0,0,0,5944,6015, + 5,385,0,0,5945,6015,5,717,0,0,5946,6015,5,718,0,0,5947,5948,5,73, + 0,0,5948,6015,5,121,0,0,5949,6015,5,82,0,0,5950,6015,5,86,0,0,5951, + 5952,5,104,0,0,5952,6015,5,752,0,0,5953,6015,5,735,0,0,5954,6015, + 5,547,0,0,5955,6015,5,138,0,0,5956,6015,5,736,0,0,5957,5958,5,572, + 0,0,5958,6015,7,88,0,0,5959,6015,5,154,0,0,5960,5961,5,157,0,0,5961, + 6015,7,89,0,0,5962,6015,5,749,0,0,5963,6015,5,750,0,0,5964,6015, + 5,178,0,0,5965,6015,5,185,0,0,5966,6015,5,186,0,0,5967,6015,5,705, + 0,0,5968,6015,5,706,0,0,5969,6015,5,707,0,0,5970,6015,5,709,0,0, + 5971,6015,5,710,0,0,5972,6015,5,711,0,0,5973,6015,5,712,0,0,5974, + 6015,5,714,0,0,5975,6015,5,715,0,0,5976,6015,5,716,0,0,5977,6015, + 5,719,0,0,5978,6015,5,720,0,0,5979,6015,5,721,0,0,5980,6015,5,722, + 0,0,5981,6015,5,723,0,0,5982,6015,5,724,0,0,5983,6015,5,725,0,0, + 5984,6015,5,726,0,0,5985,6015,5,727,0,0,5986,6015,5,728,0,0,5987, + 6015,5,731,0,0,5988,6015,5,732,0,0,5989,6015,5,733,0,0,5990,6015, + 5,737,0,0,5991,6015,5,738,0,0,5992,6015,5,740,0,0,5993,6015,5,741, + 0,0,5994,6015,5,742,0,0,5995,6015,5,745,0,0,5996,6015,5,746,0,0, + 5997,6015,5,747,0,0,5998,6015,5,160,0,0,5999,6015,5,748,0,0,6000, + 6015,5,836,0,0,6001,6015,5,751,0,0,6002,6015,5,753,0,0,6003,6015, + 5,838,0,0,6004,6015,5,754,0,0,6005,6015,5,755,0,0,6006,6007,5,103, + 0,0,6007,6008,5,68,0,0,6008,6015,5,744,0,0,6009,6010,5,154,0,0,6010, + 6011,5,88,0,0,6011,6015,5,744,0,0,6012,6013,5,729,0,0,6013,6015, + 5,730,0,0,6014,5921,1,0,0,0,6014,5925,1,0,0,0,6014,5929,1,0,0,0, + 6014,5939,1,0,0,0,6014,5940,1,0,0,0,6014,5944,1,0,0,0,6014,5945, + 1,0,0,0,6014,5946,1,0,0,0,6014,5947,1,0,0,0,6014,5949,1,0,0,0,6014, + 5950,1,0,0,0,6014,5951,1,0,0,0,6014,5953,1,0,0,0,6014,5954,1,0,0, + 0,6014,5955,1,0,0,0,6014,5956,1,0,0,0,6014,5957,1,0,0,0,6014,5959, + 1,0,0,0,6014,5960,1,0,0,0,6014,5962,1,0,0,0,6014,5963,1,0,0,0,6014, + 5964,1,0,0,0,6014,5965,1,0,0,0,6014,5966,1,0,0,0,6014,5967,1,0,0, + 0,6014,5968,1,0,0,0,6014,5969,1,0,0,0,6014,5970,1,0,0,0,6014,5971, + 1,0,0,0,6014,5972,1,0,0,0,6014,5973,1,0,0,0,6014,5974,1,0,0,0,6014, + 5975,1,0,0,0,6014,5976,1,0,0,0,6014,5977,1,0,0,0,6014,5978,1,0,0, + 0,6014,5979,1,0,0,0,6014,5980,1,0,0,0,6014,5981,1,0,0,0,6014,5982, + 1,0,0,0,6014,5983,1,0,0,0,6014,5984,1,0,0,0,6014,5985,1,0,0,0,6014, + 5986,1,0,0,0,6014,5987,1,0,0,0,6014,5988,1,0,0,0,6014,5989,1,0,0, + 0,6014,5990,1,0,0,0,6014,5991,1,0,0,0,6014,5992,1,0,0,0,6014,5993, + 1,0,0,0,6014,5994,1,0,0,0,6014,5995,1,0,0,0,6014,5996,1,0,0,0,6014, + 5997,1,0,0,0,6014,5998,1,0,0,0,6014,5999,1,0,0,0,6014,6000,1,0,0, + 0,6014,6001,1,0,0,0,6014,6002,1,0,0,0,6014,6003,1,0,0,0,6014,6004, + 1,0,0,0,6014,6005,1,0,0,0,6014,6006,1,0,0,0,6014,6009,1,0,0,0,6014, + 6012,1,0,0,0,6015,533,1,0,0,0,6016,6033,5,850,0,0,6017,6018,5,850, + 0,0,6018,6019,5,865,0,0,6019,6033,5,850,0,0,6020,6021,3,722,361, + 0,6021,6022,5,865,0,0,6022,6023,5,850,0,0,6023,6033,1,0,0,0,6024, + 6025,3,722,361,0,6025,6026,5,865,0,0,6026,6027,3,722,361,0,6027, + 6033,1,0,0,0,6028,6029,3,722,361,0,6029,6030,3,726,363,0,6030,6033, + 1,0,0,0,6031,6033,3,722,361,0,6032,6016,1,0,0,0,6032,6017,1,0,0, + 0,6032,6020,1,0,0,0,6032,6024,1,0,0,0,6032,6028,1,0,0,0,6032,6031, + 1,0,0,0,6033,535,1,0,0,0,6034,6035,3,700,350,0,6035,6036,5,176,0, + 0,6036,6037,3,700,350,0,6037,537,1,0,0,0,6038,6040,5,10,0,0,6039, + 6041,3,548,274,0,6040,6039,1,0,0,0,6040,6041,1,0,0,0,6041,6042,1, + 0,0,0,6042,6043,5,173,0,0,6043,6087,3,660,330,0,6044,6046,5,10,0, + 0,6045,6047,3,548,274,0,6046,6045,1,0,0,0,6046,6047,1,0,0,0,6047, + 6048,1,0,0,0,6048,6049,5,173,0,0,6049,6050,3,662,331,0,6050,6051, + 5,185,0,0,6051,6052,5,77,0,0,6052,6053,5,119,0,0,6053,6058,3,670, + 335,0,6054,6055,5,194,0,0,6055,6056,3,730,365,0,6056,6057,5,19,0, + 0,6057,6059,1,0,0,0,6058,6054,1,0,0,0,6058,6059,1,0,0,0,6059,6087, + 1,0,0,0,6060,6062,5,10,0,0,6061,6063,3,548,274,0,6062,6061,1,0,0, + 0,6062,6063,1,0,0,0,6063,6064,1,0,0,0,6064,6065,5,173,0,0,6065,6066, + 3,662,331,0,6066,6067,5,185,0,0,6067,6068,5,77,0,0,6068,6069,5,119, + 0,0,6069,6073,3,674,337,0,6070,6071,5,188,0,0,6071,6072,5,360,0, + 0,6072,6074,5,882,0,0,6073,6070,1,0,0,0,6073,6074,1,0,0,0,6074,6087, + 1,0,0,0,6075,6077,5,10,0,0,6076,6078,3,548,274,0,6077,6076,1,0,0, + 0,6077,6078,1,0,0,0,6078,6079,1,0,0,0,6079,6080,5,173,0,0,6080,6081, + 3,662,331,0,6081,6082,5,51,0,0,6082,6083,5,77,0,0,6083,6084,5,119, + 0,0,6084,6085,3,670,335,0,6085,6087,1,0,0,0,6086,6038,1,0,0,0,6086, + 6044,1,0,0,0,6086,6060,1,0,0,0,6086,6075,1,0,0,0,6087,539,1,0,0, + 0,6088,6089,5,27,0,0,6089,6090,5,173,0,0,6090,6094,3,660,330,0,6091, + 6093,3,550,275,0,6092,6091,1,0,0,0,6093,6096,1,0,0,0,6094,6092,1, + 0,0,0,6094,6095,1,0,0,0,6095,541,1,0,0,0,6096,6094,1,0,0,0,6097, + 6098,5,329,0,0,6098,6099,5,173,0,0,6099,6101,3,660,330,0,6100,6102, + 7,90,0,0,6101,6100,1,0,0,0,6101,6102,1,0,0,0,6102,543,1,0,0,0,6103, + 6105,5,120,0,0,6104,6106,3,548,274,0,6105,6104,1,0,0,0,6105,6106, + 1,0,0,0,6106,6107,1,0,0,0,6107,6108,7,61,0,0,6108,6109,3,660,330, + 0,6109,545,1,0,0,0,6110,6112,5,562,0,0,6111,6113,3,548,274,0,6112, + 6111,1,0,0,0,6112,6113,1,0,0,0,6113,6114,1,0,0,0,6114,6115,5,173, + 0,0,6115,6117,3,660,330,0,6116,6118,5,549,0,0,6117,6116,1,0,0,0, + 6117,6118,1,0,0,0,6118,6120,1,0,0,0,6119,6121,5,392,0,0,6120,6119, + 1,0,0,0,6120,6121,1,0,0,0,6121,6123,1,0,0,0,6122,6124,5,679,0,0, + 6123,6122,1,0,0,0,6123,6124,1,0,0,0,6124,547,1,0,0,0,6125,6126,7, + 91,0,0,6126,549,1,0,0,0,6127,6128,5,65,0,0,6128,6135,5,677,0,0,6129, + 6135,5,549,0,0,6130,6135,5,396,0,0,6131,6135,5,484,0,0,6132,6135, + 5,392,0,0,6133,6135,5,327,0,0,6134,6127,1,0,0,0,6134,6129,1,0,0, + 0,6134,6130,1,0,0,0,6134,6131,1,0,0,0,6134,6132,1,0,0,0,6134,6133, + 1,0,0,0,6135,551,1,0,0,0,6136,6137,5,432,0,0,6137,6138,5,344,0,0, + 6138,6143,3,722,361,0,6139,6140,5,868,0,0,6140,6142,3,722,361,0, + 6141,6139,1,0,0,0,6142,6145,1,0,0,0,6143,6141,1,0,0,0,6143,6144, + 1,0,0,0,6144,6155,1,0,0,0,6145,6143,1,0,0,0,6146,6147,5,155,0,0, + 6147,6152,3,554,277,0,6148,6149,5,868,0,0,6149,6151,3,554,277,0, + 6150,6148,1,0,0,0,6151,6154,1,0,0,0,6152,6150,1,0,0,0,6152,6153, + 1,0,0,0,6153,6156,1,0,0,0,6154,6152,1,0,0,0,6155,6146,1,0,0,0,6155, + 6156,1,0,0,0,6156,553,1,0,0,0,6157,6158,7,92,0,0,6158,6159,3,718, + 359,0,6159,6160,5,857,0,0,6160,6161,3,822,411,0,6161,555,1,0,0,0, + 6162,6163,5,673,0,0,6163,6164,5,344,0,0,6164,6169,3,722,361,0,6165, + 6166,5,868,0,0,6166,6168,3,722,361,0,6167,6165,1,0,0,0,6168,6171, + 1,0,0,0,6169,6167,1,0,0,0,6169,6170,1,0,0,0,6170,557,1,0,0,0,6171, + 6169,1,0,0,0,6172,6173,5,432,0,0,6173,6174,5,534,0,0,6174,6175,3, + 722,361,0,6175,6176,5,603,0,0,6176,6177,5,882,0,0,6177,559,1,0,0, + 0,6178,6179,5,673,0,0,6179,6180,5,534,0,0,6180,6181,3,722,361,0, + 6181,561,1,0,0,0,6182,6183,5,713,0,0,6183,6184,5,450,0,0,6184,6185, + 5,360,0,0,6185,6187,5,367,0,0,6186,6188,5,857,0,0,6187,6186,1,0, + 0,0,6187,6188,1,0,0,0,6188,6189,1,0,0,0,6189,6213,5,882,0,0,6190, + 6191,5,713,0,0,6191,6192,5,433,0,0,6192,6193,5,68,0,0,6193,6194, + 3,692,346,0,6194,6195,5,423,0,0,6195,6196,5,20,0,0,6196,6203,5,882, + 0,0,6197,6198,5,360,0,0,6198,6200,5,367,0,0,6199,6201,5,857,0,0, + 6200,6199,1,0,0,0,6200,6201,1,0,0,0,6201,6202,1,0,0,0,6202,6204, + 5,882,0,0,6203,6197,1,0,0,0,6203,6204,1,0,0,0,6204,6210,1,0,0,0, + 6205,6207,5,144,0,0,6206,6208,5,502,0,0,6207,6206,1,0,0,0,6207,6208, + 1,0,0,0,6208,6209,1,0,0,0,6209,6211,5,169,0,0,6210,6205,1,0,0,0, + 6210,6211,1,0,0,0,6211,6213,1,0,0,0,6212,6182,1,0,0,0,6212,6190, + 1,0,0,0,6213,563,1,0,0,0,6214,6215,5,155,0,0,6215,6216,3,568,284, + 0,6216,6219,7,93,0,0,6217,6220,3,822,411,0,6218,6220,5,119,0,0,6219, + 6217,1,0,0,0,6219,6218,1,0,0,0,6220,6230,1,0,0,0,6221,6222,5,868, + 0,0,6222,6223,3,568,284,0,6223,6226,7,93,0,0,6224,6227,3,822,411, + 0,6225,6227,5,119,0,0,6226,6224,1,0,0,0,6226,6225,1,0,0,0,6227,6229, + 1,0,0,0,6228,6221,1,0,0,0,6229,6232,1,0,0,0,6230,6228,1,0,0,0,6230, + 6231,1,0,0,0,6231,6267,1,0,0,0,6232,6230,1,0,0,0,6233,6234,5,155, + 0,0,6234,6237,3,58,29,0,6235,6238,3,704,352,0,6236,6238,5,42,0,0, + 6237,6235,1,0,0,0,6237,6236,1,0,0,0,6238,6267,1,0,0,0,6239,6240, + 5,155,0,0,6240,6247,5,497,0,0,6241,6244,3,704,352,0,6242,6243,5, + 28,0,0,6243,6245,3,706,353,0,6244,6242,1,0,0,0,6244,6245,1,0,0,0, + 6245,6248,1,0,0,0,6246,6248,5,42,0,0,6247,6241,1,0,0,0,6247,6246, + 1,0,0,0,6248,6267,1,0,0,0,6249,6267,3,500,250,0,6250,6267,3,352, + 176,0,6251,6267,3,350,175,0,6252,6253,5,155,0,0,6253,6254,3,718, + 359,0,6254,6255,7,93,0,0,6255,6263,3,822,411,0,6256,6257,5,868,0, + 0,6257,6258,3,718,359,0,6258,6259,7,93,0,0,6259,6260,3,822,411,0, + 6260,6262,1,0,0,0,6261,6256,1,0,0,0,6262,6265,1,0,0,0,6263,6261, + 1,0,0,0,6263,6264,1,0,0,0,6264,6267,1,0,0,0,6265,6263,1,0,0,0,6266, + 6214,1,0,0,0,6266,6233,1,0,0,0,6266,6239,1,0,0,0,6266,6249,1,0,0, + 0,6266,6250,1,0,0,0,6266,6251,1,0,0,0,6266,6252,1,0,0,0,6267,565, + 1,0,0,0,6268,6269,5,157,0,0,6269,6270,7,63,0,0,6270,6453,5,452,0, + 0,6271,6272,5,157,0,0,6272,6273,7,94,0,0,6273,6276,5,386,0,0,6274, + 6275,5,80,0,0,6275,6277,5,882,0,0,6276,6274,1,0,0,0,6276,6277,1, + 0,0,0,6277,6280,1,0,0,0,6278,6279,5,68,0,0,6279,6281,3,730,365,0, + 6280,6278,1,0,0,0,6280,6281,1,0,0,0,6281,6289,1,0,0,0,6282,6286, + 5,100,0,0,6283,6284,3,730,365,0,6284,6285,5,868,0,0,6285,6287,1, + 0,0,0,6286,6283,1,0,0,0,6286,6287,1,0,0,0,6287,6288,1,0,0,0,6288, + 6290,3,730,365,0,6289,6282,1,0,0,0,6289,6290,1,0,0,0,6290,6292,1, + 0,0,0,6291,6293,3,400,200,0,6292,6291,1,0,0,0,6292,6293,1,0,0,0, + 6293,6453,1,0,0,0,6294,6295,5,157,0,0,6295,6297,3,570,285,0,6296, + 6298,3,572,286,0,6297,6296,1,0,0,0,6297,6298,1,0,0,0,6298,6453,1, + 0,0,0,6299,6301,5,157,0,0,6300,6302,5,392,0,0,6301,6300,1,0,0,0, + 6301,6302,1,0,0,0,6302,6304,1,0,0,0,6303,6305,5,408,0,0,6304,6303, + 1,0,0,0,6304,6305,1,0,0,0,6305,6306,1,0,0,0,6306,6307,7,47,0,0,6307, + 6308,7,95,0,0,6308,6311,3,662,331,0,6309,6310,7,95,0,0,6310,6312, + 3,638,319,0,6311,6309,1,0,0,0,6311,6312,1,0,0,0,6312,6314,1,0,0, + 0,6313,6315,3,572,286,0,6314,6313,1,0,0,0,6314,6315,1,0,0,0,6315, + 6453,1,0,0,0,6316,6317,5,157,0,0,6317,6318,5,34,0,0,6318,6320,7, + 0,0,0,6319,6321,3,778,389,0,6320,6319,1,0,0,0,6320,6321,1,0,0,0, + 6321,6322,1,0,0,0,6322,6453,3,638,319,0,6323,6324,5,157,0,0,6324, + 6325,5,34,0,0,6325,6326,7,96,0,0,6326,6453,3,718,359,0,6327,6328, + 5,157,0,0,6328,6329,5,34,0,0,6329,6330,5,409,0,0,6330,6453,3,642, + 321,0,6331,6332,5,157,0,0,6332,6333,5,34,0,0,6333,6334,5,684,0,0, + 6334,6453,3,646,323,0,6335,6336,5,157,0,0,6336,6337,5,34,0,0,6337, + 6338,5,173,0,0,6338,6453,3,662,331,0,6339,6340,5,157,0,0,6340,6341, + 5,34,0,0,6341,6342,5,678,0,0,6342,6453,3,700,350,0,6343,6344,5,157, + 0,0,6344,6345,5,380,0,0,6345,6346,3,708,354,0,6346,6347,7,97,0,0, + 6347,6453,1,0,0,0,6348,6349,5,157,0,0,6349,6453,3,574,287,0,6350, + 6351,5,157,0,0,6351,6359,7,98,0,0,6352,6356,5,100,0,0,6353,6354, + 3,730,365,0,6354,6355,5,868,0,0,6355,6357,1,0,0,0,6356,6353,1,0, + 0,0,6356,6357,1,0,0,0,6357,6358,1,0,0,0,6358,6360,3,730,365,0,6359, + 6352,1,0,0,0,6359,6360,1,0,0,0,6360,6453,1,0,0,0,6361,6362,5,157, + 0,0,6362,6363,5,262,0,0,6363,6364,5,866,0,0,6364,6365,5,850,0,0, + 6365,6366,5,867,0,0,6366,6453,7,98,0,0,6367,6368,5,157,0,0,6368, + 6371,3,576,288,0,6369,6370,7,95,0,0,6370,6372,3,638,319,0,6371,6369, + 1,0,0,0,6371,6372,1,0,0,0,6372,6374,1,0,0,0,6373,6375,3,572,286, + 0,6374,6373,1,0,0,0,6374,6375,1,0,0,0,6375,6453,1,0,0,0,6376,6377, + 5,157,0,0,6377,6378,5,132,0,0,6378,6379,5,336,0,0,6379,6453,3,718, + 359,0,6380,6381,5,157,0,0,6381,6382,5,409,0,0,6382,6383,5,336,0, + 0,6383,6453,3,642,321,0,6384,6385,5,157,0,0,6385,6392,5,414,0,0, + 6386,6387,5,65,0,0,6387,6390,3,666,333,0,6388,6389,5,188,0,0,6389, + 6391,3,664,332,0,6390,6388,1,0,0,0,6390,6391,1,0,0,0,6391,6393,1, + 0,0,0,6392,6386,1,0,0,0,6392,6393,1,0,0,0,6393,6453,1,0,0,0,6394, + 6396,5,157,0,0,6395,6397,5,392,0,0,6396,6395,1,0,0,0,6396,6397,1, + 0,0,0,6397,6398,1,0,0,0,6398,6399,7,99,0,0,6399,6400,7,95,0,0,6400, + 6403,3,662,331,0,6401,6402,7,95,0,0,6402,6404,3,638,319,0,6403,6401, + 1,0,0,0,6403,6404,1,0,0,0,6404,6407,1,0,0,0,6405,6406,5,192,0,0, + 6406,6408,3,822,411,0,6407,6405,1,0,0,0,6407,6408,1,0,0,0,6408,6453, + 1,0,0,0,6409,6410,5,157,0,0,6410,6411,5,516,0,0,6411,6414,5,752, + 0,0,6412,6413,7,95,0,0,6413,6415,3,638,319,0,6414,6412,1,0,0,0,6414, + 6415,1,0,0,0,6415,6417,1,0,0,0,6416,6418,3,572,286,0,6417,6416,1, + 0,0,0,6417,6418,1,0,0,0,6418,6453,1,0,0,0,6419,6420,5,157,0,0,6420, + 6429,5,545,0,0,6421,6426,3,578,289,0,6422,6423,5,868,0,0,6423,6425, + 3,578,289,0,6424,6422,1,0,0,0,6425,6428,1,0,0,0,6426,6424,1,0,0, + 0,6426,6427,1,0,0,0,6427,6430,1,0,0,0,6428,6426,1,0,0,0,6429,6421, + 1,0,0,0,6429,6430,1,0,0,0,6430,6434,1,0,0,0,6431,6432,5,65,0,0,6432, + 6433,5,548,0,0,6433,6435,3,730,365,0,6434,6431,1,0,0,0,6434,6435, + 1,0,0,0,6435,6442,1,0,0,0,6436,6437,5,100,0,0,6437,6440,3,730,365, + 0,6438,6439,5,509,0,0,6439,6441,3,730,365,0,6440,6438,1,0,0,0,6440, + 6441,1,0,0,0,6441,6443,1,0,0,0,6442,6436,1,0,0,0,6442,6443,1,0,0, + 0,6443,6453,1,0,0,0,6444,6445,5,157,0,0,6445,6446,7,64,0,0,6446, + 6448,5,645,0,0,6447,6449,3,400,200,0,6448,6447,1,0,0,0,6448,6449, + 1,0,0,0,6449,6453,1,0,0,0,6450,6451,5,157,0,0,6451,6453,5,564,0, + 0,6452,6268,1,0,0,0,6452,6271,1,0,0,0,6452,6294,1,0,0,0,6452,6299, + 1,0,0,0,6452,6316,1,0,0,0,6452,6323,1,0,0,0,6452,6327,1,0,0,0,6452, + 6331,1,0,0,0,6452,6335,1,0,0,0,6452,6339,1,0,0,0,6452,6343,1,0,0, + 0,6452,6348,1,0,0,0,6452,6350,1,0,0,0,6452,6361,1,0,0,0,6452,6367, + 1,0,0,0,6452,6376,1,0,0,0,6452,6380,1,0,0,0,6452,6384,1,0,0,0,6452, + 6394,1,0,0,0,6452,6409,1,0,0,0,6452,6419,1,0,0,0,6452,6444,1,0,0, + 0,6452,6450,1,0,0,0,6453,567,1,0,0,0,6454,6465,5,892,0,0,6455,6465, + 5,893,0,0,6456,6457,5,870,0,0,6457,6459,5,870,0,0,6458,6456,1,0, + 0,0,6458,6459,1,0,0,0,6459,6460,1,0,0,0,6460,6462,7,100,0,0,6461, + 6458,1,0,0,0,6461,6462,1,0,0,0,6462,6463,1,0,0,0,6463,6465,3,722, + 361,0,6464,6454,1,0,0,0,6464,6455,1,0,0,0,6464,6461,1,0,0,0,6465, + 569,1,0,0,0,6466,6467,5,26,0,0,6467,6481,5,155,0,0,6468,6481,5,823, + 0,0,6469,6481,5,824,0,0,6470,6481,5,40,0,0,6471,6481,5,153,0,0,6472, + 6473,5,409,0,0,6473,6481,5,645,0,0,6474,6475,5,132,0,0,6475,6481, + 5,645,0,0,6476,6478,7,62,0,0,6477,6476,1,0,0,0,6477,6478,1,0,0,0, + 6478,6479,1,0,0,0,6479,6481,7,101,0,0,6480,6466,1,0,0,0,6480,6468, + 1,0,0,0,6480,6469,1,0,0,0,6480,6470,1,0,0,0,6480,6471,1,0,0,0,6480, + 6472,1,0,0,0,6480,6474,1,0,0,0,6480,6477,1,0,0,0,6481,571,1,0,0, + 0,6482,6483,5,99,0,0,6483,6487,5,882,0,0,6484,6485,5,192,0,0,6485, + 6487,3,822,411,0,6486,6482,1,0,0,0,6486,6484,1,0,0,0,6487,573,1, + 0,0,0,6488,6490,5,647,0,0,6489,6488,1,0,0,0,6489,6490,1,0,0,0,6490, + 6491,1,0,0,0,6491,6506,5,381,0,0,6492,6493,5,453,0,0,6493,6506,5, + 645,0,0,6494,6506,5,536,0,0,6495,6506,5,734,0,0,6496,6498,5,408, + 0,0,6497,6496,1,0,0,0,6497,6498,1,0,0,0,6498,6499,1,0,0,0,6499,6506, + 5,544,0,0,6500,6506,5,546,0,0,6501,6502,5,598,0,0,6502,6506,5,422, + 0,0,6503,6506,5,312,0,0,6504,6506,5,356,0,0,6505,6489,1,0,0,0,6505, + 6492,1,0,0,0,6505,6494,1,0,0,0,6505,6495,1,0,0,0,6505,6497,1,0,0, + 0,6505,6500,1,0,0,0,6505,6501,1,0,0,0,6505,6503,1,0,0,0,6505,6504, + 1,0,0,0,6506,575,1,0,0,0,6507,6519,5,386,0,0,6508,6509,5,173,0,0, + 6509,6519,5,645,0,0,6510,6512,5,392,0,0,6511,6510,1,0,0,0,6511,6512, + 1,0,0,0,6512,6514,1,0,0,0,6513,6515,5,408,0,0,6514,6513,1,0,0,0, + 6514,6515,1,0,0,0,6515,6516,1,0,0,0,6516,6519,5,752,0,0,6517,6519, + 5,667,0,0,6518,6507,1,0,0,0,6518,6508,1,0,0,0,6518,6511,1,0,0,0, + 6518,6517,1,0,0,0,6519,577,1,0,0,0,6520,6533,5,7,0,0,6521,6522,5, + 320,0,0,6522,6533,5,437,0,0,6523,6524,5,355,0,0,6524,6533,5,656, + 0,0,6525,6533,5,358,0,0,6526,6533,5,439,0,0,6527,6533,5,802,0,0, + 6528,6529,5,521,0,0,6529,6533,5,397,0,0,6530,6533,5,605,0,0,6531, + 6533,5,655,0,0,6532,6520,1,0,0,0,6532,6521,1,0,0,0,6532,6523,1,0, + 0,0,6532,6525,1,0,0,0,6532,6526,1,0,0,0,6532,6527,1,0,0,0,6532,6528, + 1,0,0,0,6532,6530,1,0,0,0,6532,6531,1,0,0,0,6533,579,1,0,0,0,6534, + 6535,5,318,0,0,6535,6536,5,882,0,0,6536,581,1,0,0,0,6537,6538,5, + 324,0,0,6538,6556,5,82,0,0,6539,6544,3,602,301,0,6540,6541,5,868, + 0,0,6541,6543,3,602,301,0,6542,6540,1,0,0,0,6543,6546,1,0,0,0,6544, + 6542,1,0,0,0,6544,6545,1,0,0,0,6545,6557,1,0,0,0,6546,6544,1,0,0, + 0,6547,6548,3,662,331,0,6548,6549,5,130,0,0,6549,6552,5,866,0,0, + 6550,6553,3,686,343,0,6551,6553,5,7,0,0,6552,6550,1,0,0,0,6552,6551, + 1,0,0,0,6553,6554,1,0,0,0,6554,6555,5,867,0,0,6555,6557,1,0,0,0, + 6556,6539,1,0,0,0,6556,6547,1,0,0,0,6557,6558,1,0,0,0,6558,6559, + 5,80,0,0,6559,6560,3,638,319,0,6560,583,1,0,0,0,6561,6563,5,404, + 0,0,6562,6564,3,548,274,0,6563,6562,1,0,0,0,6563,6564,1,0,0,0,6564, + 6565,1,0,0,0,6565,6570,3,604,302,0,6566,6567,5,868,0,0,6567,6569, + 3,604,302,0,6568,6566,1,0,0,0,6569,6572,1,0,0,0,6570,6568,1,0,0, + 0,6570,6571,1,0,0,0,6571,585,1,0,0,0,6572,6570,1,0,0,0,6573,6575, + 5,94,0,0,6574,6576,7,102,0,0,6575,6574,1,0,0,0,6575,6576,1,0,0,0, + 6576,6577,1,0,0,0,6577,6578,3,822,411,0,6578,587,1,0,0,0,6579,6580, + 5,103,0,0,6580,6581,5,82,0,0,6581,6582,5,88,0,0,6582,6583,5,324, + 0,0,6583,6588,3,608,304,0,6584,6585,5,868,0,0,6585,6587,3,608,304, + 0,6586,6584,1,0,0,0,6587,6590,1,0,0,0,6588,6586,1,0,0,0,6588,6589, + 1,0,0,0,6589,589,1,0,0,0,6590,6588,1,0,0,0,6591,6592,5,575,0,0,6592, + 6597,3,592,296,0,6593,6594,5,868,0,0,6594,6596,3,592,296,0,6595, + 6593,1,0,0,0,6596,6599,1,0,0,0,6597,6595,1,0,0,0,6597,6598,1,0,0, + 0,6598,591,1,0,0,0,6599,6597,1,0,0,0,6600,6606,5,453,0,0,6601,6606, + 5,563,0,0,6602,6603,5,548,0,0,6603,6606,5,324,0,0,6604,6606,5,598, + 0,0,6605,6600,1,0,0,0,6605,6601,1,0,0,0,6605,6602,1,0,0,0,6605,6604, + 1,0,0,0,6606,593,1,0,0,0,6607,6608,5,575,0,0,6608,6613,5,531,0,0, + 6609,6611,3,776,388,0,6610,6609,1,0,0,0,6610,6611,1,0,0,0,6611,6612, + 1,0,0,0,6612,6614,3,722,361,0,6613,6610,1,0,0,0,6613,6614,1,0,0, + 0,6614,595,1,0,0,0,6615,6616,5,575,0,0,6616,6618,7,64,0,0,6617,6619, + 5,7,0,0,6618,6617,1,0,0,0,6618,6619,1,0,0,0,6619,6621,1,0,0,0,6620, + 6622,3,400,200,0,6621,6620,1,0,0,0,6621,6622,1,0,0,0,6622,597,1, + 0,0,0,6623,6624,5,576,0,0,6624,599,1,0,0,0,6625,6626,5,749,0,0,6626, + 601,1,0,0,0,6627,6633,3,662,331,0,6628,6629,7,19,0,0,6629,6630,5, + 866,0,0,6630,6631,3,650,325,0,6631,6632,5,867,0,0,6632,6634,1,0, + 0,0,6633,6628,1,0,0,0,6633,6634,1,0,0,0,6634,603,1,0,0,0,6635,6654, + 5,366,0,0,6636,6654,5,422,0,0,6637,6639,7,103,0,0,6638,6637,1,0, + 0,0,6638,6639,1,0,0,0,6639,6640,1,0,0,0,6640,6654,5,452,0,0,6641, + 6654,5,517,0,0,6642,6654,5,734,0,0,6643,6644,5,548,0,0,6644,6654, + 5,324,0,0,6645,6654,5,645,0,0,6646,6654,5,680,0,0,6647,6651,5,752, + 0,0,6648,6649,5,194,0,0,6649,6650,5,135,0,0,6650,6652,5,104,0,0, + 6651,6648,1,0,0,0,6651,6652,1,0,0,0,6652,6654,1,0,0,0,6653,6635, + 1,0,0,0,6653,6636,1,0,0,0,6653,6638,1,0,0,0,6653,6641,1,0,0,0,6653, + 6642,1,0,0,0,6653,6643,1,0,0,0,6653,6645,1,0,0,0,6653,6646,1,0,0, + 0,6653,6647,1,0,0,0,6654,6668,1,0,0,0,6655,6656,5,556,0,0,6656,6658, + 5,452,0,0,6657,6659,3,400,200,0,6658,6657,1,0,0,0,6658,6659,1,0, + 0,0,6659,6668,1,0,0,0,6660,6662,7,61,0,0,6661,6663,3,660,330,0,6662, + 6661,1,0,0,0,6662,6663,1,0,0,0,6663,6665,1,0,0,0,6664,6666,3,606, + 303,0,6665,6664,1,0,0,0,6665,6666,1,0,0,0,6666,6668,1,0,0,0,6667, + 6653,1,0,0,0,6667,6655,1,0,0,0,6667,6660,1,0,0,0,6668,605,1,0,0, + 0,6669,6670,5,194,0,0,6670,6671,5,135,0,0,6671,6675,5,104,0,0,6672, + 6673,5,65,0,0,6673,6675,5,391,0,0,6674,6669,1,0,0,0,6674,6672,1, + 0,0,0,6675,607,1,0,0,0,6676,6684,3,662,331,0,6677,6678,5,130,0,0, + 6678,6681,5,866,0,0,6679,6682,3,686,343,0,6680,6682,5,7,0,0,6681, + 6679,1,0,0,0,6681,6680,1,0,0,0,6682,6683,1,0,0,0,6683,6685,5,867, + 0,0,6684,6677,1,0,0,0,6684,6685,1,0,0,0,6685,6693,1,0,0,0,6686,6688, + 7,19,0,0,6687,6686,1,0,0,0,6687,6688,1,0,0,0,6688,6689,1,0,0,0,6689, + 6690,5,866,0,0,6690,6691,3,650,325,0,6691,6692,5,867,0,0,6692,6694, + 1,0,0,0,6693,6687,1,0,0,0,6693,6694,1,0,0,0,6694,6697,1,0,0,0,6695, + 6696,5,79,0,0,6696,6698,5,446,0,0,6697,6695,1,0,0,0,6697,6698,1, + 0,0,0,6698,609,1,0,0,0,6699,6700,7,104,0,0,6700,6703,3,662,331,0, + 6701,6704,3,674,337,0,6702,6704,5,882,0,0,6703,6701,1,0,0,0,6703, + 6702,1,0,0,0,6703,6704,1,0,0,0,6704,611,1,0,0,0,6705,6711,7,104, + 0,0,6706,6712,5,392,0,0,6707,6712,5,528,0,0,6708,6709,5,826,0,0, + 6709,6710,5,857,0,0,6710,6712,7,105,0,0,6711,6706,1,0,0,0,6711,6707, + 1,0,0,0,6711,6708,1,0,0,0,6711,6712,1,0,0,0,6712,6713,1,0,0,0,6713, + 6714,3,634,317,0,6714,613,1,0,0,0,6715,6716,7,104,0,0,6716,6720, + 5,10,0,0,6717,6718,5,826,0,0,6718,6719,5,857,0,0,6719,6721,5,666, + 0,0,6720,6717,1,0,0,0,6720,6721,1,0,0,0,6721,6722,1,0,0,0,6722,6723, + 3,210,105,0,6723,615,1,0,0,0,6724,6725,5,419,0,0,6725,6726,5,882, + 0,0,6726,617,1,0,0,0,6727,6728,5,187,0,0,6728,6729,3,638,319,0,6729, + 619,1,0,0,0,6730,6738,5,158,0,0,6731,6733,5,164,0,0,6732,6734,5, + 682,0,0,6733,6732,1,0,0,0,6733,6734,1,0,0,0,6734,6735,1,0,0,0,6735, + 6739,3,734,367,0,6736,6739,5,889,0,0,6737,6739,5,890,0,0,6738,6731, + 1,0,0,0,6738,6736,1,0,0,0,6738,6737,1,0,0,0,6739,6749,1,0,0,0,6740, + 6741,5,155,0,0,6741,6746,3,624,312,0,6742,6743,5,868,0,0,6743,6745, + 3,624,312,0,6744,6742,1,0,0,0,6745,6748,1,0,0,0,6746,6744,1,0,0, + 0,6746,6747,1,0,0,0,6747,6750,1,0,0,0,6748,6746,1,0,0,0,6749,6740, + 1,0,0,0,6749,6750,1,0,0,0,6750,621,1,0,0,0,6751,6759,5,145,0,0,6752, + 6754,5,164,0,0,6753,6755,5,682,0,0,6754,6753,1,0,0,0,6754,6755,1, + 0,0,0,6755,6756,1,0,0,0,6756,6760,3,734,367,0,6757,6760,5,889,0, + 0,6758,6760,5,890,0,0,6759,6752,1,0,0,0,6759,6757,1,0,0,0,6759,6758, + 1,0,0,0,6759,6760,1,0,0,0,6760,6770,1,0,0,0,6761,6762,5,155,0,0, + 6762,6767,3,624,312,0,6763,6764,5,868,0,0,6764,6766,3,624,312,0, + 6765,6763,1,0,0,0,6766,6769,1,0,0,0,6767,6765,1,0,0,0,6767,6768, + 1,0,0,0,6768,6771,1,0,0,0,6769,6767,1,0,0,0,6770,6761,1,0,0,0,6770, + 6771,1,0,0,0,6771,623,1,0,0,0,6772,6773,7,106,0,0,6773,6778,5,857, + 0,0,6774,6779,3,734,367,0,6775,6779,5,883,0,0,6776,6779,3,702,351, + 0,6777,6779,3,724,362,0,6778,6774,1,0,0,0,6778,6775,1,0,0,0,6778, + 6776,1,0,0,0,6778,6777,1,0,0,0,6779,625,1,0,0,0,6780,6782,5,194, + 0,0,6781,6783,5,552,0,0,6782,6781,1,0,0,0,6782,6783,1,0,0,0,6783, + 6784,1,0,0,0,6784,6789,3,52,26,0,6785,6786,5,868,0,0,6786,6788,3, + 52,26,0,6787,6785,1,0,0,0,6788,6791,1,0,0,0,6789,6787,1,0,0,0,6789, + 6790,1,0,0,0,6790,627,1,0,0,0,6791,6789,1,0,0,0,6792,6793,5,173, + 0,0,6793,6795,3,662,331,0,6794,6796,3,258,129,0,6795,6794,1,0,0, + 0,6795,6796,1,0,0,0,6796,6798,1,0,0,0,6797,6799,3,328,164,0,6798, + 6797,1,0,0,0,6798,6799,1,0,0,0,6799,629,1,0,0,0,6800,6802,5,72,0, + 0,6801,6803,7,107,0,0,6802,6801,1,0,0,0,6802,6803,1,0,0,0,6803,6804, + 1,0,0,0,6804,6836,5,48,0,0,6805,6806,3,568,284,0,6806,6807,5,857, + 0,0,6807,6815,7,108,0,0,6808,6809,5,868,0,0,6809,6810,3,568,284, + 0,6810,6811,5,857,0,0,6811,6812,7,108,0,0,6812,6814,1,0,0,0,6813, + 6808,1,0,0,0,6814,6817,1,0,0,0,6815,6813,1,0,0,0,6815,6816,1,0,0, + 0,6816,6837,1,0,0,0,6817,6815,1,0,0,0,6818,6821,5,30,0,0,6819,6822, + 3,730,365,0,6820,6822,3,568,284,0,6821,6819,1,0,0,0,6821,6820,1, + 0,0,0,6822,6823,1,0,0,0,6823,6824,3,568,284,0,6824,6825,5,857,0, + 0,6825,6833,3,632,316,0,6826,6827,5,868,0,0,6827,6828,3,568,284, + 0,6828,6829,5,857,0,0,6829,6830,3,632,316,0,6830,6832,1,0,0,0,6831, + 6826,1,0,0,0,6832,6835,1,0,0,0,6833,6831,1,0,0,0,6833,6834,1,0,0, + 0,6834,6837,1,0,0,0,6835,6833,1,0,0,0,6836,6805,1,0,0,0,6836,6818, + 1,0,0,0,6837,631,1,0,0,0,6838,6839,7,109,0,0,6839,633,1,0,0,0,6840, + 6846,3,210,105,0,6841,6846,3,186,93,0,6842,6846,3,192,96,0,6843, + 6846,3,208,104,0,6844,6846,3,220,110,0,6845,6840,1,0,0,0,6845,6841, + 1,0,0,0,6845,6842,1,0,0,0,6845,6843,1,0,0,0,6845,6844,1,0,0,0,6846, + 6851,1,0,0,0,6847,6848,5,65,0,0,6848,6849,5,349,0,0,6849,6851,3, + 722,361,0,6850,6845,1,0,0,0,6850,6847,1,0,0,0,6851,635,1,0,0,0,6852, + 6853,3,718,359,0,6853,637,1,0,0,0,6854,6855,3,718,359,0,6855,639, + 1,0,0,0,6856,6857,3,718,359,0,6857,641,1,0,0,0,6858,6859,3,718,359, + 0,6859,643,1,0,0,0,6860,6861,3,718,359,0,6861,645,1,0,0,0,6862,6863, + 3,718,359,0,6863,647,1,0,0,0,6864,6865,3,722,361,0,6865,649,1,0, + 0,0,6866,6871,3,652,326,0,6867,6868,5,868,0,0,6868,6870,3,652,326, + 0,6869,6867,1,0,0,0,6870,6873,1,0,0,0,6871,6869,1,0,0,0,6871,6872, + 1,0,0,0,6872,651,1,0,0,0,6873,6871,1,0,0,0,6874,6875,3,722,361,0, + 6875,653,1,0,0,0,6876,6877,3,722,361,0,6877,655,1,0,0,0,6878,6879, + 3,722,361,0,6879,657,1,0,0,0,6880,6881,3,718,359,0,6881,659,1,0, + 0,0,6882,6887,3,662,331,0,6883,6884,5,868,0,0,6884,6886,3,662,331, + 0,6885,6883,1,0,0,0,6886,6889,1,0,0,0,6887,6885,1,0,0,0,6887,6888, + 1,0,0,0,6888,661,1,0,0,0,6889,6887,1,0,0,0,6890,6891,3,718,359,0, + 6891,663,1,0,0,0,6892,6897,3,666,333,0,6893,6894,5,868,0,0,6894, + 6896,3,666,333,0,6895,6893,1,0,0,0,6896,6899,1,0,0,0,6897,6895,1, + 0,0,0,6897,6898,1,0,0,0,6898,665,1,0,0,0,6899,6897,1,0,0,0,6900, + 6903,3,700,350,0,6901,6903,3,722,361,0,6902,6900,1,0,0,0,6902,6901, + 1,0,0,0,6903,667,1,0,0,0,6904,6909,3,722,361,0,6905,6907,3,726,363, + 0,6906,6908,3,726,363,0,6907,6906,1,0,0,0,6907,6908,1,0,0,0,6908, + 6910,1,0,0,0,6909,6905,1,0,0,0,6909,6910,1,0,0,0,6910,6919,1,0,0, + 0,6911,6913,9,0,0,0,6912,6911,1,0,0,0,6912,6913,1,0,0,0,6913,6914, + 1,0,0,0,6914,6916,3,726,363,0,6915,6917,3,726,363,0,6916,6915,1, + 0,0,0,6916,6917,1,0,0,0,6917,6919,1,0,0,0,6918,6904,1,0,0,0,6918, + 6912,1,0,0,0,6919,669,1,0,0,0,6920,6925,3,674,337,0,6921,6922,5, + 868,0,0,6922,6924,3,674,337,0,6923,6921,1,0,0,0,6924,6927,1,0,0, + 0,6925,6923,1,0,0,0,6925,6926,1,0,0,0,6926,671,1,0,0,0,6927,6925, + 1,0,0,0,6928,6929,1,0,0,0,6929,673,1,0,0,0,6930,6935,3,722,361,0, + 6931,6933,3,728,364,0,6932,6934,3,728,364,0,6933,6932,1,0,0,0,6933, + 6934,1,0,0,0,6934,6936,1,0,0,0,6935,6931,1,0,0,0,6935,6936,1,0,0, + 0,6936,6947,1,0,0,0,6937,6939,9,0,0,0,6938,6937,1,0,0,0,6938,6939, + 1,0,0,0,6939,6940,1,0,0,0,6940,6942,3,726,363,0,6941,6943,3,726, + 363,0,6942,6941,1,0,0,0,6942,6943,1,0,0,0,6943,6947,1,0,0,0,6944, + 6945,4,337,3,0,6945,6947,3,672,336,0,6946,6930,1,0,0,0,6946,6938, + 1,0,0,0,6946,6944,1,0,0,0,6947,675,1,0,0,0,6948,6953,3,722,361,0, + 6949,6951,3,726,363,0,6950,6952,3,726,363,0,6951,6950,1,0,0,0,6951, + 6952,1,0,0,0,6952,6954,1,0,0,0,6953,6949,1,0,0,0,6953,6954,1,0,0, + 0,6954,6963,1,0,0,0,6955,6957,9,0,0,0,6956,6955,1,0,0,0,6956,6957, + 1,0,0,0,6957,6958,1,0,0,0,6958,6960,3,726,363,0,6959,6961,3,726, + 363,0,6960,6959,1,0,0,0,6960,6961,1,0,0,0,6961,6963,1,0,0,0,6962, + 6948,1,0,0,0,6962,6956,1,0,0,0,6963,677,1,0,0,0,6964,6965,4,339, + 4,0,6965,6974,3,672,336,0,6966,6971,3,722,361,0,6967,6969,3,728, + 364,0,6968,6970,3,728,364,0,6969,6968,1,0,0,0,6969,6970,1,0,0,0, + 6970,6972,1,0,0,0,6971,6967,1,0,0,0,6971,6972,1,0,0,0,6972,6974, + 1,0,0,0,6973,6964,1,0,0,0,6973,6966,1,0,0,0,6974,679,1,0,0,0,6975, + 6976,3,722,361,0,6976,681,1,0,0,0,6977,6978,3,722,361,0,6978,683, + 1,0,0,0,6979,6980,3,722,361,0,6980,685,1,0,0,0,6981,6986,3,688,344, + 0,6982,6983,5,868,0,0,6983,6985,3,688,344,0,6984,6982,1,0,0,0,6985, + 6988,1,0,0,0,6986,6984,1,0,0,0,6986,6987,1,0,0,0,6987,687,1,0,0, + 0,6988,6986,1,0,0,0,6989,6990,3,722,361,0,6990,689,1,0,0,0,6991, + 6996,3,722,361,0,6992,6993,5,866,0,0,6993,6994,3,730,365,0,6994, + 6995,5,867,0,0,6995,6997,1,0,0,0,6996,6992,1,0,0,0,6996,6997,1,0, + 0,0,6997,7000,1,0,0,0,6998,7000,3,822,411,0,6999,6991,1,0,0,0,6999, + 6998,1,0,0,0,7000,7002,1,0,0,0,7001,7003,7,55,0,0,7002,7001,1,0, + 0,0,7002,7003,1,0,0,0,7003,691,1,0,0,0,7004,7005,3,694,347,0,7005, + 7006,5,878,0,0,7006,7007,3,730,365,0,7007,693,1,0,0,0,7008,7009, + 3,696,348,0,7009,7010,5,891,0,0,7010,695,1,0,0,0,7011,7016,5,882, + 0,0,7012,7016,5,889,0,0,7013,7016,5,704,0,0,7014,7016,3,852,426, + 0,7015,7011,1,0,0,0,7015,7012,1,0,0,0,7015,7013,1,0,0,0,7015,7014, + 1,0,0,0,7016,697,1,0,0,0,7017,7018,7,110,0,0,7018,699,1,0,0,0,7019, + 7021,3,696,348,0,7020,7022,3,698,349,0,7021,7020,1,0,0,0,7021,7022, + 1,0,0,0,7022,7025,1,0,0,0,7023,7025,3,60,30,0,7024,7019,1,0,0,0, + 7024,7023,1,0,0,0,7025,701,1,0,0,0,7026,7027,7,111,0,0,7027,703, + 1,0,0,0,7028,7033,5,228,0,0,7029,7033,3,842,421,0,7030,7033,5,882, + 0,0,7031,7033,5,879,0,0,7032,7028,1,0,0,0,7032,7029,1,0,0,0,7032, + 7030,1,0,0,0,7032,7031,1,0,0,0,7033,705,1,0,0,0,7034,7035,3,722, + 361,0,7035,707,1,0,0,0,7036,7040,3,710,355,0,7037,7040,5,889,0,0, + 7038,7040,5,882,0,0,7039,7036,1,0,0,0,7039,7037,1,0,0,0,7039,7038, + 1,0,0,0,7040,709,1,0,0,0,7041,7042,7,112,0,0,7042,711,1,0,0,0,7043, + 7044,3,730,365,0,7044,7045,5,854,0,0,7045,7046,3,730,365,0,7046, + 7047,5,854,0,0,7047,7048,3,730,365,0,7048,7049,5,854,0,0,7049,7050, + 3,730,365,0,7050,7051,5,854,0,0,7051,7057,3,730,365,0,7052,7053, + 5,878,0,0,7053,7054,3,730,365,0,7054,7055,5,854,0,0,7055,7056,3, + 730,365,0,7056,7058,1,0,0,0,7057,7052,1,0,0,0,7058,7059,1,0,0,0, + 7059,7057,1,0,0,0,7059,7060,1,0,0,0,7060,713,1,0,0,0,7061,7068,3, + 716,358,0,7062,7063,5,868,0,0,7063,7066,3,716,358,0,7064,7065,5, + 868,0,0,7065,7067,3,730,365,0,7066,7064,1,0,0,0,7066,7067,1,0,0, + 0,7067,7069,1,0,0,0,7068,7062,1,0,0,0,7068,7069,1,0,0,0,7069,715, + 1,0,0,0,7070,7078,5,882,0,0,7071,7078,5,887,0,0,7072,7074,5,884, + 0,0,7073,7072,1,0,0,0,7074,7075,1,0,0,0,7075,7073,1,0,0,0,7075,7076, + 1,0,0,0,7076,7078,1,0,0,0,7077,7070,1,0,0,0,7077,7071,1,0,0,0,7077, + 7073,1,0,0,0,7078,717,1,0,0,0,7079,7081,3,722,361,0,7080,7082,3, + 726,363,0,7081,7080,1,0,0,0,7081,7082,1,0,0,0,7082,719,1,0,0,0,7083, + 7088,3,722,361,0,7084,7085,5,868,0,0,7085,7087,3,722,361,0,7086, + 7084,1,0,0,0,7087,7090,1,0,0,0,7088,7086,1,0,0,0,7088,7089,1,0,0, + 0,7089,721,1,0,0,0,7090,7088,1,0,0,0,7091,7095,3,724,362,0,7092, + 7095,5,879,0,0,7093,7095,5,882,0,0,7094,7091,1,0,0,0,7094,7092,1, + 0,0,0,7094,7093,1,0,0,0,7095,723,1,0,0,0,7096,7106,5,889,0,0,7097, + 7106,3,842,421,0,7098,7106,3,844,422,0,7099,7106,3,710,355,0,7100, + 7106,3,846,423,0,7101,7106,3,848,424,0,7102,7106,3,850,425,0,7103, + 7106,3,852,426,0,7104,7106,3,814,407,0,7105,7096,1,0,0,0,7105,7097, + 1,0,0,0,7105,7098,1,0,0,0,7105,7099,1,0,0,0,7105,7100,1,0,0,0,7105, + 7101,1,0,0,0,7105,7102,1,0,0,0,7105,7103,1,0,0,0,7105,7104,1,0,0, + 0,7106,725,1,0,0,0,7107,7108,5,865,0,0,7108,7112,5,889,0,0,7109, + 7110,5,865,0,0,7110,7112,3,722,361,0,7111,7107,1,0,0,0,7111,7109, + 1,0,0,0,7112,727,1,0,0,0,7113,7114,5,865,0,0,7114,7121,5,889,0,0, + 7115,7116,5,865,0,0,7116,7121,3,722,361,0,7117,7118,4,364,5,0,7118, + 7119,5,865,0,0,7119,7121,3,672,336,0,7120,7113,1,0,0,0,7120,7115, + 1,0,0,0,7120,7117,1,0,0,0,7121,729,1,0,0,0,7122,7123,7,113,0,0,7123, + 731,1,0,0,0,7124,7127,5,880,0,0,7125,7127,3,730,365,0,7126,7124, + 1,0,0,0,7126,7125,1,0,0,0,7127,733,1,0,0,0,7128,7130,5,888,0,0,7129, + 7128,1,0,0,0,7129,7130,1,0,0,0,7130,7131,1,0,0,0,7131,7134,5,882, + 0,0,7132,7134,5,881,0,0,7133,7129,1,0,0,0,7133,7132,1,0,0,0,7134, + 7136,1,0,0,0,7135,7137,5,882,0,0,7136,7135,1,0,0,0,7137,7138,1,0, + 0,0,7138,7136,1,0,0,0,7138,7139,1,0,0,0,7139,7152,1,0,0,0,7140,7142, + 5,888,0,0,7141,7140,1,0,0,0,7141,7142,1,0,0,0,7142,7143,1,0,0,0, + 7143,7146,5,882,0,0,7144,7146,5,881,0,0,7145,7141,1,0,0,0,7145,7144, + 1,0,0,0,7146,7149,1,0,0,0,7147,7148,5,28,0,0,7148,7150,3,706,353, + 0,7149,7147,1,0,0,0,7149,7150,1,0,0,0,7150,7152,1,0,0,0,7151,7133, + 1,0,0,0,7151,7145,1,0,0,0,7152,735,1,0,0,0,7153,7154,7,114,0,0,7154, + 737,1,0,0,0,7155,7157,5,888,0,0,7156,7155,1,0,0,0,7156,7157,1,0, + 0,0,7157,7158,1,0,0,0,7158,7159,5,884,0,0,7159,739,1,0,0,0,7160, + 7162,5,114,0,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162,7163,1,0, + 0,0,7163,7164,7,115,0,0,7164,741,1,0,0,0,7165,7178,3,734,367,0,7166, + 7178,3,730,365,0,7167,7168,5,854,0,0,7168,7178,3,730,365,0,7169, + 7178,3,738,369,0,7170,7178,3,736,368,0,7171,7178,5,885,0,0,7172, + 7178,5,887,0,0,7173,7175,5,114,0,0,7174,7173,1,0,0,0,7174,7175,1, + 0,0,0,7175,7176,1,0,0,0,7176,7178,7,115,0,0,7177,7165,1,0,0,0,7177, + 7166,1,0,0,0,7177,7167,1,0,0,0,7177,7169,1,0,0,0,7177,7170,1,0,0, + 0,7177,7171,1,0,0,0,7177,7172,1,0,0,0,7177,7174,1,0,0,0,7178,743, + 1,0,0,0,7179,7181,7,116,0,0,7180,7182,5,240,0,0,7181,7180,1,0,0, + 0,7181,7182,1,0,0,0,7182,7184,1,0,0,0,7183,7185,3,750,375,0,7184, + 7183,1,0,0,0,7184,7185,1,0,0,0,7185,7187,1,0,0,0,7186,7188,5,228, + 0,0,7187,7186,1,0,0,0,7187,7188,1,0,0,0,7188,7192,1,0,0,0,7189,7190, + 3,58,29,0,7190,7191,3,704,352,0,7191,7193,1,0,0,0,7192,7189,1,0, + 0,0,7192,7193,1,0,0,0,7193,7197,1,0,0,0,7194,7195,5,28,0,0,7195, + 7198,3,706,353,0,7196,7198,5,228,0,0,7197,7194,1,0,0,0,7197,7196, + 1,0,0,0,7197,7198,1,0,0,0,7198,7306,1,0,0,0,7199,7200,5,227,0,0, + 7200,7201,7,117,0,0,7201,7203,5,240,0,0,7202,7204,3,750,375,0,7203, + 7202,1,0,0,0,7203,7204,1,0,0,0,7204,7206,1,0,0,0,7205,7207,5,228, + 0,0,7206,7205,1,0,0,0,7206,7207,1,0,0,0,7207,7306,1,0,0,0,7208,7209, + 5,227,0,0,7209,7211,7,118,0,0,7210,7212,3,750,375,0,7211,7210,1, + 0,0,0,7211,7212,1,0,0,0,7212,7214,1,0,0,0,7213,7215,5,228,0,0,7214, + 7213,1,0,0,0,7214,7215,1,0,0,0,7215,7306,1,0,0,0,7216,7217,5,498, + 0,0,7217,7219,5,225,0,0,7218,7220,3,750,375,0,7219,7218,1,0,0,0, + 7219,7220,1,0,0,0,7220,7222,1,0,0,0,7221,7223,5,228,0,0,7222,7221, + 1,0,0,0,7222,7223,1,0,0,0,7223,7306,1,0,0,0,7224,7226,7,119,0,0, + 7225,7227,3,750,375,0,7226,7225,1,0,0,0,7226,7227,1,0,0,0,7227,7231, + 1,0,0,0,7228,7230,7,120,0,0,7229,7228,1,0,0,0,7230,7233,1,0,0,0, + 7231,7229,1,0,0,0,7231,7232,1,0,0,0,7232,7306,1,0,0,0,7233,7231, + 1,0,0,0,7234,7236,5,210,0,0,7235,7237,3,752,376,0,7236,7235,1,0, + 0,0,7236,7237,1,0,0,0,7237,7241,1,0,0,0,7238,7240,7,120,0,0,7239, + 7238,1,0,0,0,7240,7243,1,0,0,0,7241,7239,1,0,0,0,7241,7242,1,0,0, + 0,7242,7306,1,0,0,0,7243,7241,1,0,0,0,7244,7246,5,211,0,0,7245,7247, + 5,212,0,0,7246,7245,1,0,0,0,7246,7247,1,0,0,0,7247,7249,1,0,0,0, + 7248,7250,3,752,376,0,7249,7248,1,0,0,0,7249,7250,1,0,0,0,7250,7254, + 1,0,0,0,7251,7253,7,120,0,0,7252,7251,1,0,0,0,7253,7256,1,0,0,0, + 7254,7252,1,0,0,0,7254,7255,1,0,0,0,7255,7306,1,0,0,0,7256,7254, + 1,0,0,0,7257,7259,7,121,0,0,7258,7260,3,754,377,0,7259,7258,1,0, + 0,0,7259,7260,1,0,0,0,7260,7264,1,0,0,0,7261,7263,7,120,0,0,7262, + 7261,1,0,0,0,7263,7266,1,0,0,0,7264,7262,1,0,0,0,7264,7265,1,0,0, + 0,7265,7306,1,0,0,0,7266,7264,1,0,0,0,7267,7306,7,122,0,0,7268,7270, + 7,123,0,0,7269,7271,3,750,375,0,7270,7269,1,0,0,0,7270,7271,1,0, + 0,0,7271,7306,1,0,0,0,7272,7273,7,124,0,0,7273,7275,3,746,373,0, + 7274,7276,5,228,0,0,7275,7274,1,0,0,0,7275,7276,1,0,0,0,7276,7280, + 1,0,0,0,7277,7278,3,58,29,0,7278,7279,3,704,352,0,7279,7281,1,0, + 0,0,7280,7277,1,0,0,0,7280,7281,1,0,0,0,7281,7306,1,0,0,0,7282,7285, + 7,125,0,0,7283,7284,5,834,0,0,7284,7286,3,730,365,0,7285,7283,1, + 0,0,0,7285,7286,1,0,0,0,7286,7306,1,0,0,0,7287,7289,5,233,0,0,7288, + 7290,5,225,0,0,7289,7288,1,0,0,0,7289,7290,1,0,0,0,7290,7292,1,0, + 0,0,7291,7293,5,228,0,0,7292,7291,1,0,0,0,7292,7293,1,0,0,0,7293, + 7297,1,0,0,0,7294,7295,3,58,29,0,7295,7296,3,704,352,0,7296,7298, + 1,0,0,0,7297,7294,1,0,0,0,7297,7298,1,0,0,0,7298,7301,1,0,0,0,7299, + 7300,5,28,0,0,7300,7302,3,706,353,0,7301,7299,1,0,0,0,7301,7302, + 1,0,0,0,7302,7306,1,0,0,0,7303,7304,5,233,0,0,7304,7306,5,229,0, + 0,7305,7179,1,0,0,0,7305,7199,1,0,0,0,7305,7208,1,0,0,0,7305,7216, + 1,0,0,0,7305,7224,1,0,0,0,7305,7234,1,0,0,0,7305,7244,1,0,0,0,7305, + 7257,1,0,0,0,7305,7267,1,0,0,0,7305,7268,1,0,0,0,7305,7272,1,0,0, + 0,7305,7282,1,0,0,0,7305,7287,1,0,0,0,7305,7303,1,0,0,0,7306,745, + 1,0,0,0,7307,7308,5,866,0,0,7308,7313,5,882,0,0,7309,7310,5,868, + 0,0,7310,7312,5,882,0,0,7311,7309,1,0,0,0,7312,7315,1,0,0,0,7313, + 7311,1,0,0,0,7313,7314,1,0,0,0,7314,7316,1,0,0,0,7315,7313,1,0,0, + 0,7316,7317,5,867,0,0,7317,747,1,0,0,0,7318,7320,7,126,0,0,7319, + 7321,3,750,375,0,7320,7319,1,0,0,0,7320,7321,1,0,0,0,7321,7341,1, + 0,0,0,7322,7324,5,224,0,0,7323,7325,3,750,375,0,7324,7323,1,0,0, + 0,7324,7325,1,0,0,0,7325,7329,1,0,0,0,7326,7327,3,58,29,0,7327,7328, + 3,704,352,0,7328,7330,1,0,0,0,7329,7326,1,0,0,0,7329,7330,1,0,0, + 0,7330,7341,1,0,0,0,7331,7341,7,127,0,0,7332,7334,7,128,0,0,7333, + 7335,3,754,377,0,7334,7333,1,0,0,0,7334,7335,1,0,0,0,7335,7341,1, + 0,0,0,7336,7338,7,129,0,0,7337,7339,7,130,0,0,7338,7337,1,0,0,0, + 7338,7339,1,0,0,0,7339,7341,1,0,0,0,7340,7318,1,0,0,0,7340,7322, + 1,0,0,0,7340,7331,1,0,0,0,7340,7332,1,0,0,0,7340,7336,1,0,0,0,7341, + 7343,1,0,0,0,7342,7344,5,12,0,0,7343,7342,1,0,0,0,7343,7344,1,0, + 0,0,7344,749,1,0,0,0,7345,7346,5,866,0,0,7346,7347,3,730,365,0,7347, + 7348,5,867,0,0,7348,751,1,0,0,0,7349,7350,5,866,0,0,7350,7351,3, + 730,365,0,7351,7352,5,868,0,0,7352,7353,3,730,365,0,7353,7354,5, + 867,0,0,7354,753,1,0,0,0,7355,7356,5,866,0,0,7356,7359,3,730,365, + 0,7357,7358,5,868,0,0,7358,7360,3,730,365,0,7359,7357,1,0,0,0,7359, + 7360,1,0,0,0,7360,7361,1,0,0,0,7361,7362,5,867,0,0,7362,755,1,0, + 0,0,7363,7364,5,866,0,0,7364,7369,3,690,345,0,7365,7366,5,868,0, + 0,7366,7368,3,690,345,0,7367,7365,1,0,0,0,7368,7371,1,0,0,0,7369, + 7367,1,0,0,0,7369,7370,1,0,0,0,7370,7372,1,0,0,0,7371,7369,1,0,0, + 0,7372,7373,5,867,0,0,7373,757,1,0,0,0,7374,7379,3,822,411,0,7375, + 7376,5,868,0,0,7376,7378,3,822,411,0,7377,7375,1,0,0,0,7378,7381, + 1,0,0,0,7379,7377,1,0,0,0,7379,7380,1,0,0,0,7380,759,1,0,0,0,7381, + 7379,1,0,0,0,7382,7383,7,131,0,0,7383,7388,3,762,381,0,7384,7385, + 5,868,0,0,7385,7387,3,762,381,0,7386,7384,1,0,0,0,7387,7390,1,0, + 0,0,7388,7386,1,0,0,0,7388,7389,1,0,0,0,7389,761,1,0,0,0,7390,7388, + 1,0,0,0,7391,7392,5,866,0,0,7392,7397,3,764,382,0,7393,7394,5,868, + 0,0,7394,7396,3,764,382,0,7395,7393,1,0,0,0,7396,7399,1,0,0,0,7397, + 7395,1,0,0,0,7397,7398,1,0,0,0,7398,7400,1,0,0,0,7399,7397,1,0,0, + 0,7400,7401,5,867,0,0,7401,763,1,0,0,0,7402,7405,3,822,411,0,7403, + 7405,5,42,0,0,7404,7402,1,0,0,0,7404,7403,1,0,0,0,7405,765,1,0,0, + 0,7406,7411,3,742,371,0,7407,7408,5,868,0,0,7408,7410,3,742,371, + 0,7409,7407,1,0,0,0,7410,7413,1,0,0,0,7411,7409,1,0,0,0,7411,7412, + 1,0,0,0,7412,767,1,0,0,0,7413,7411,1,0,0,0,7414,7419,5,882,0,0,7415, + 7416,5,868,0,0,7416,7418,5,882,0,0,7417,7415,1,0,0,0,7418,7421,1, + 0,0,0,7419,7417,1,0,0,0,7419,7420,1,0,0,0,7420,769,1,0,0,0,7421, + 7419,1,0,0,0,7422,7427,5,892,0,0,7423,7424,5,868,0,0,7424,7426,5, + 892,0,0,7425,7423,1,0,0,0,7426,7429,1,0,0,0,7427,7425,1,0,0,0,7427, + 7428,1,0,0,0,7428,771,1,0,0,0,7429,7427,1,0,0,0,7430,7457,5,116, + 0,0,7431,7432,5,24,0,0,7432,7433,5,866,0,0,7433,7434,3,822,411,0, + 7434,7435,5,13,0,0,7435,7436,3,748,374,0,7436,7437,5,867,0,0,7437, + 7457,1,0,0,0,7438,7440,3,828,414,0,7439,7438,1,0,0,0,7439,7440,1, + 0,0,0,7440,7441,1,0,0,0,7441,7457,3,742,371,0,7442,7446,3,774,387, + 0,7443,7444,5,119,0,0,7444,7445,5,185,0,0,7445,7447,3,774,387,0, + 7446,7443,1,0,0,0,7446,7447,1,0,0,0,7447,7457,1,0,0,0,7448,7449, + 5,866,0,0,7449,7450,3,822,411,0,7450,7451,5,867,0,0,7451,7457,1, + 0,0,0,7452,7453,5,866,0,0,7453,7454,3,718,359,0,7454,7455,5,867, + 0,0,7455,7457,1,0,0,0,7456,7430,1,0,0,0,7456,7431,1,0,0,0,7456,7439, + 1,0,0,0,7456,7442,1,0,0,0,7456,7448,1,0,0,0,7456,7452,1,0,0,0,7457, + 773,1,0,0,0,7458,7464,7,132,0,0,7459,7461,5,866,0,0,7460,7462,3, + 730,365,0,7461,7460,1,0,0,0,7461,7462,1,0,0,0,7462,7463,1,0,0,0, + 7463,7465,5,867,0,0,7464,7459,1,0,0,0,7464,7465,1,0,0,0,7465,7473, + 1,0,0,0,7466,7467,5,295,0,0,7467,7469,5,866,0,0,7468,7470,3,730, + 365,0,7469,7468,1,0,0,0,7469,7470,1,0,0,0,7470,7471,1,0,0,0,7471, + 7473,5,867,0,0,7472,7458,1,0,0,0,7472,7466,1,0,0,0,7473,775,1,0, + 0,0,7474,7475,5,78,0,0,7475,7476,5,60,0,0,7476,777,1,0,0,0,7477, + 7478,5,78,0,0,7478,7479,5,114,0,0,7479,7480,5,60,0,0,7480,779,1, + 0,0,0,7481,7482,5,124,0,0,7482,7483,5,143,0,0,7483,781,1,0,0,0,7484, + 7507,3,784,392,0,7485,7507,3,792,396,0,7486,7507,3,794,397,0,7487, + 7494,3,814,407,0,7488,7489,5,866,0,0,7489,7495,5,867,0,0,7490,7491, + 5,866,0,0,7491,7492,3,818,409,0,7492,7493,5,867,0,0,7493,7495,1, + 0,0,0,7494,7488,1,0,0,0,7494,7490,1,0,0,0,7495,7507,1,0,0,0,7496, + 7503,3,642,321,0,7497,7498,5,866,0,0,7498,7504,5,867,0,0,7499,7500, + 5,866,0,0,7500,7501,3,818,409,0,7501,7502,5,867,0,0,7502,7504,1, + 0,0,0,7503,7497,1,0,0,0,7503,7499,1,0,0,0,7504,7507,1,0,0,0,7505, + 7507,3,816,408,0,7506,7484,1,0,0,0,7506,7485,1,0,0,0,7506,7486,1, + 0,0,0,7506,7487,1,0,0,0,7506,7496,1,0,0,0,7506,7505,1,0,0,0,7507, + 783,1,0,0,0,7508,7511,7,133,0,0,7509,7510,5,866,0,0,7510,7512,5, + 867,0,0,7511,7509,1,0,0,0,7511,7512,1,0,0,0,7512,7688,1,0,0,0,7513, + 7688,3,60,30,0,7514,7515,5,33,0,0,7515,7516,5,866,0,0,7516,7517, + 3,822,411,0,7517,7518,5,868,0,0,7518,7519,3,748,374,0,7519,7520, + 5,867,0,0,7520,7688,1,0,0,0,7521,7522,5,33,0,0,7522,7523,5,866,0, + 0,7523,7524,3,822,411,0,7524,7525,5,188,0,0,7525,7526,3,704,352, + 0,7526,7527,5,867,0,0,7527,7688,1,0,0,0,7528,7529,5,24,0,0,7529, + 7530,5,866,0,0,7530,7531,3,822,411,0,7531,7532,5,13,0,0,7532,7533, + 3,748,374,0,7533,7534,5,867,0,0,7534,7688,1,0,0,0,7535,7536,5,189, + 0,0,7536,7537,5,866,0,0,7537,7538,3,674,337,0,7538,7539,5,867,0, + 0,7539,7688,1,0,0,0,7540,7542,5,23,0,0,7541,7543,3,786,393,0,7542, + 7541,1,0,0,0,7543,7544,1,0,0,0,7544,7542,1,0,0,0,7544,7545,1,0,0, + 0,7545,7548,1,0,0,0,7546,7547,5,53,0,0,7547,7549,3,820,410,0,7548, + 7546,1,0,0,0,7548,7549,1,0,0,0,7549,7550,1,0,0,0,7550,7551,5,378, + 0,0,7551,7688,1,0,0,0,7552,7553,5,23,0,0,7553,7555,3,822,411,0,7554, + 7556,3,786,393,0,7555,7554,1,0,0,0,7556,7557,1,0,0,0,7557,7555,1, + 0,0,0,7557,7558,1,0,0,0,7558,7561,1,0,0,0,7559,7560,5,53,0,0,7560, + 7562,3,820,410,0,7561,7559,1,0,0,0,7561,7562,1,0,0,0,7562,7563,1, + 0,0,0,7563,7564,5,378,0,0,7564,7688,1,0,0,0,7565,7566,5,224,0,0, + 7566,7567,5,866,0,0,7567,7570,3,818,409,0,7568,7569,5,188,0,0,7569, + 7571,3,704,352,0,7570,7568,1,0,0,0,7570,7571,1,0,0,0,7571,7572,1, + 0,0,0,7572,7573,5,867,0,0,7573,7688,1,0,0,0,7574,7575,5,296,0,0, + 7575,7578,5,866,0,0,7576,7579,3,734,367,0,7577,7579,3,822,411,0, + 7578,7576,1,0,0,0,7578,7577,1,0,0,0,7579,7580,1,0,0,0,7580,7583, + 5,80,0,0,7581,7584,3,734,367,0,7582,7584,3,822,411,0,7583,7581,1, + 0,0,0,7583,7582,1,0,0,0,7584,7585,1,0,0,0,7585,7586,5,867,0,0,7586, + 7688,1,0,0,0,7587,7588,7,134,0,0,7588,7591,5,866,0,0,7589,7592,3, + 734,367,0,7590,7592,3,822,411,0,7591,7589,1,0,0,0,7591,7590,1,0, + 0,0,7592,7593,1,0,0,0,7593,7596,5,68,0,0,7594,7597,3,730,365,0,7595, + 7597,3,822,411,0,7596,7594,1,0,0,0,7596,7595,1,0,0,0,7597,7603,1, + 0,0,0,7598,7601,5,65,0,0,7599,7602,3,730,365,0,7600,7602,3,822,411, + 0,7601,7599,1,0,0,0,7601,7600,1,0,0,0,7602,7604,1,0,0,0,7603,7598, + 1,0,0,0,7603,7604,1,0,0,0,7604,7605,1,0,0,0,7605,7606,5,867,0,0, + 7606,7688,1,0,0,0,7607,7608,5,300,0,0,7608,7609,5,866,0,0,7609,7612, + 7,135,0,0,7610,7613,3,734,367,0,7611,7613,3,822,411,0,7612,7610, + 1,0,0,0,7612,7611,1,0,0,0,7612,7613,1,0,0,0,7613,7614,1,0,0,0,7614, + 7617,5,68,0,0,7615,7618,3,734,367,0,7616,7618,3,822,411,0,7617,7615, + 1,0,0,0,7617,7616,1,0,0,0,7618,7619,1,0,0,0,7619,7620,5,867,0,0, + 7620,7688,1,0,0,0,7621,7622,5,300,0,0,7622,7625,5,866,0,0,7623,7626, + 3,734,367,0,7624,7626,3,822,411,0,7625,7623,1,0,0,0,7625,7624,1, + 0,0,0,7626,7627,1,0,0,0,7627,7630,5,68,0,0,7628,7631,3,734,367,0, + 7629,7631,3,822,411,0,7630,7628,1,0,0,0,7630,7629,1,0,0,0,7631,7632, + 1,0,0,0,7632,7633,5,867,0,0,7633,7688,1,0,0,0,7634,7635,5,840,0, + 0,7635,7638,5,866,0,0,7636,7639,3,734,367,0,7637,7639,3,822,411, + 0,7638,7636,1,0,0,0,7638,7637,1,0,0,0,7639,7646,1,0,0,0,7640,7641, + 5,13,0,0,7641,7642,7,136,0,0,7642,7643,5,866,0,0,7643,7644,3,730, + 365,0,7644,7645,5,867,0,0,7645,7647,1,0,0,0,7646,7640,1,0,0,0,7646, + 7647,1,0,0,0,7647,7649,1,0,0,0,7648,7650,3,788,394,0,7649,7648,1, + 0,0,0,7649,7650,1,0,0,0,7650,7651,1,0,0,0,7651,7652,5,867,0,0,7652, + 7688,1,0,0,0,7653,7654,5,293,0,0,7654,7655,5,866,0,0,7655,7656,3, + 70,35,0,7656,7659,5,68,0,0,7657,7660,3,734,367,0,7658,7660,3,822, + 411,0,7659,7657,1,0,0,0,7659,7658,1,0,0,0,7660,7661,1,0,0,0,7661, + 7662,5,867,0,0,7662,7688,1,0,0,0,7663,7664,5,827,0,0,7664,7665,5, + 866,0,0,7665,7666,7,137,0,0,7666,7667,5,868,0,0,7667,7668,3,734, + 367,0,7668,7669,5,867,0,0,7669,7688,1,0,0,0,7670,7671,5,254,0,0, + 7671,7672,5,866,0,0,7672,7673,3,822,411,0,7673,7674,5,868,0,0,7674, + 7677,3,822,411,0,7675,7676,5,579,0,0,7676,7678,3,748,374,0,7677, + 7675,1,0,0,0,7677,7678,1,0,0,0,7678,7680,1,0,0,0,7679,7681,3,294, + 147,0,7680,7679,1,0,0,0,7680,7681,1,0,0,0,7681,7683,1,0,0,0,7682, + 7684,3,296,148,0,7683,7682,1,0,0,0,7683,7684,1,0,0,0,7684,7685,1, + 0,0,0,7685,7686,5,867,0,0,7686,7688,1,0,0,0,7687,7508,1,0,0,0,7687, + 7513,1,0,0,0,7687,7514,1,0,0,0,7687,7521,1,0,0,0,7687,7528,1,0,0, + 0,7687,7535,1,0,0,0,7687,7540,1,0,0,0,7687,7552,1,0,0,0,7687,7565, + 1,0,0,0,7687,7574,1,0,0,0,7687,7587,1,0,0,0,7687,7607,1,0,0,0,7687, + 7621,1,0,0,0,7687,7634,1,0,0,0,7687,7653,1,0,0,0,7687,7663,1,0,0, + 0,7687,7670,1,0,0,0,7688,785,1,0,0,0,7689,7690,5,191,0,0,7690,7691, + 3,820,410,0,7691,7692,5,175,0,0,7692,7693,3,820,410,0,7693,787,1, + 0,0,0,7694,7695,5,448,0,0,7695,7700,3,790,395,0,7696,7697,5,868, + 0,0,7697,7699,3,790,395,0,7698,7696,1,0,0,0,7699,7702,1,0,0,0,7700, + 7698,1,0,0,0,7700,7701,1,0,0,0,7701,7709,1,0,0,0,7702,7700,1,0,0, + 0,7703,7704,5,448,0,0,7704,7705,3,730,365,0,7705,7706,5,854,0,0, + 7706,7707,3,730,365,0,7707,7709,1,0,0,0,7708,7694,1,0,0,0,7708,7703, + 1,0,0,0,7709,789,1,0,0,0,7710,7712,3,730,365,0,7711,7713,7,138,0, + 0,7712,7711,1,0,0,0,7712,7713,1,0,0,0,7713,791,1,0,0,0,7714,7715, + 7,139,0,0,7715,7717,5,866,0,0,7716,7718,7,45,0,0,7717,7716,1,0,0, + 0,7717,7718,1,0,0,0,7718,7719,1,0,0,0,7719,7720,3,820,410,0,7720, + 7722,5,867,0,0,7721,7723,3,796,398,0,7722,7721,1,0,0,0,7722,7723, + 1,0,0,0,7723,7774,1,0,0,0,7724,7725,5,262,0,0,7725,7733,5,866,0, + 0,7726,7734,5,850,0,0,7727,7729,5,7,0,0,7728,7727,1,0,0,0,7728,7729, + 1,0,0,0,7729,7730,1,0,0,0,7730,7734,3,820,410,0,7731,7732,5,49,0, + 0,7732,7734,3,818,409,0,7733,7726,1,0,0,0,7733,7728,1,0,0,0,7733, + 7731,1,0,0,0,7734,7735,1,0,0,0,7735,7737,5,867,0,0,7736,7738,3,796, + 398,0,7737,7736,1,0,0,0,7737,7738,1,0,0,0,7738,7774,1,0,0,0,7739, + 7740,7,140,0,0,7740,7742,5,866,0,0,7741,7743,5,7,0,0,7742,7741,1, + 0,0,0,7742,7743,1,0,0,0,7743,7744,1,0,0,0,7744,7745,3,820,410,0, + 7745,7747,5,867,0,0,7746,7748,3,796,398,0,7747,7746,1,0,0,0,7747, + 7748,1,0,0,0,7748,7774,1,0,0,0,7749,7750,5,266,0,0,7750,7752,5,866, + 0,0,7751,7753,5,49,0,0,7752,7751,1,0,0,0,7752,7753,1,0,0,0,7753, + 7754,1,0,0,0,7754,7765,3,818,409,0,7755,7756,5,125,0,0,7756,7757, + 5,20,0,0,7757,7762,3,260,130,0,7758,7759,5,868,0,0,7759,7761,3,260, + 130,0,7760,7758,1,0,0,0,7761,7764,1,0,0,0,7762,7760,1,0,0,0,7762, + 7763,1,0,0,0,7763,7766,1,0,0,0,7764,7762,1,0,0,0,7765,7755,1,0,0, + 0,7765,7766,1,0,0,0,7766,7769,1,0,0,0,7767,7768,5,156,0,0,7768,7770, + 5,882,0,0,7769,7767,1,0,0,0,7769,7770,1,0,0,0,7770,7771,1,0,0,0, + 7771,7772,5,867,0,0,7772,7774,1,0,0,0,7773,7714,1,0,0,0,7773,7724, + 1,0,0,0,7773,7739,1,0,0,0,7773,7749,1,0,0,0,7774,793,1,0,0,0,7775, + 7776,7,141,0,0,7776,7777,5,866,0,0,7777,7780,3,822,411,0,7778,7779, + 5,868,0,0,7779,7781,3,730,365,0,7780,7778,1,0,0,0,7780,7781,1,0, + 0,0,7781,7784,1,0,0,0,7782,7783,5,868,0,0,7783,7785,3,730,365,0, + 7784,7782,1,0,0,0,7784,7785,1,0,0,0,7785,7786,1,0,0,0,7786,7787, + 5,867,0,0,7787,7788,3,796,398,0,7788,7814,1,0,0,0,7789,7790,7,142, + 0,0,7790,7791,5,866,0,0,7791,7792,3,822,411,0,7792,7793,5,867,0, + 0,7793,7794,3,796,398,0,7794,7814,1,0,0,0,7795,7796,7,143,0,0,7796, + 7797,5,866,0,0,7797,7798,5,867,0,0,7798,7814,3,796,398,0,7799,7800, + 5,273,0,0,7800,7801,5,866,0,0,7801,7802,3,822,411,0,7802,7803,5, + 868,0,0,7803,7804,3,730,365,0,7804,7805,5,867,0,0,7805,7806,3,796, + 398,0,7806,7814,1,0,0,0,7807,7808,5,272,0,0,7808,7809,5,866,0,0, + 7809,7810,3,730,365,0,7810,7811,5,867,0,0,7811,7812,3,796,398,0, + 7812,7814,1,0,0,0,7813,7775,1,0,0,0,7813,7789,1,0,0,0,7813,7795, + 1,0,0,0,7813,7799,1,0,0,0,7813,7807,1,0,0,0,7814,795,1,0,0,0,7815, + 7821,5,129,0,0,7816,7817,5,866,0,0,7817,7818,3,798,399,0,7818,7819, + 5,867,0,0,7819,7822,1,0,0,0,7820,7822,3,800,400,0,7821,7816,1,0, + 0,0,7821,7820,1,0,0,0,7822,797,1,0,0,0,7823,7825,3,800,400,0,7824, + 7823,1,0,0,0,7824,7825,1,0,0,0,7825,7827,1,0,0,0,7826,7828,3,812, + 406,0,7827,7826,1,0,0,0,7827,7828,1,0,0,0,7828,7830,1,0,0,0,7829, + 7831,3,258,129,0,7830,7829,1,0,0,0,7830,7831,1,0,0,0,7831,7833,1, + 0,0,0,7832,7834,3,802,401,0,7833,7832,1,0,0,0,7833,7834,1,0,0,0, + 7834,799,1,0,0,0,7835,7836,3,722,361,0,7836,801,1,0,0,0,7837,7838, + 3,804,402,0,7838,7839,3,806,403,0,7839,803,1,0,0,0,7840,7841,7,144, + 0,0,7841,805,1,0,0,0,7842,7845,3,810,405,0,7843,7845,3,808,404,0, + 7844,7842,1,0,0,0,7844,7843,1,0,0,0,7845,807,1,0,0,0,7846,7847,5, + 17,0,0,7847,7848,3,810,405,0,7848,7849,5,11,0,0,7849,7850,3,810, + 405,0,7850,809,1,0,0,0,7851,7852,5,36,0,0,7852,7859,5,586,0,0,7853, + 7854,5,669,0,0,7854,7859,7,145,0,0,7855,7856,3,822,411,0,7856,7857, + 7,145,0,0,7857,7859,1,0,0,0,7858,7851,1,0,0,0,7858,7853,1,0,0,0, + 7858,7855,1,0,0,0,7859,811,1,0,0,0,7860,7861,5,130,0,0,7861,7862, + 5,20,0,0,7862,7867,3,822,411,0,7863,7864,5,868,0,0,7864,7866,3,822, + 411,0,7865,7863,1,0,0,0,7866,7869,1,0,0,0,7867,7865,1,0,0,0,7867, + 7868,1,0,0,0,7868,813,1,0,0,0,7869,7867,1,0,0,0,7870,7895,3,854, + 427,0,7871,7895,5,757,0,0,7872,7895,5,289,0,0,7873,7895,5,285,0, + 0,7874,7895,5,286,0,0,7875,7895,5,287,0,0,7876,7895,5,290,0,0,7877, + 7895,5,291,0,0,7878,7895,5,292,0,0,7879,7895,5,78,0,0,7880,7895, + 5,86,0,0,7881,7895,5,288,0,0,7882,7895,5,294,0,0,7883,7895,5,488, + 0,0,7884,7895,5,295,0,0,7885,7895,5,142,0,0,7886,7895,5,143,0,0, + 7887,7895,5,297,0,0,7888,7895,5,298,0,0,7889,7895,5,299,0,0,7890, + 7895,5,300,0,0,7891,7895,5,301,0,0,7892,7895,5,302,0,0,7893,7895, + 5,303,0,0,7894,7870,1,0,0,0,7894,7871,1,0,0,0,7894,7872,1,0,0,0, + 7894,7873,1,0,0,0,7894,7874,1,0,0,0,7894,7875,1,0,0,0,7894,7876, + 1,0,0,0,7894,7877,1,0,0,0,7894,7878,1,0,0,0,7894,7879,1,0,0,0,7894, + 7880,1,0,0,0,7894,7881,1,0,0,0,7894,7882,1,0,0,0,7894,7883,1,0,0, + 0,7894,7884,1,0,0,0,7894,7885,1,0,0,0,7894,7886,1,0,0,0,7894,7887, + 1,0,0,0,7894,7888,1,0,0,0,7894,7889,1,0,0,0,7894,7890,1,0,0,0,7894, + 7891,1,0,0,0,7894,7892,1,0,0,0,7894,7893,1,0,0,0,7895,815,1,0,0, + 0,7896,7897,7,146,0,0,7897,7898,5,866,0,0,7898,7899,3,820,410,0, + 7899,7900,5,867,0,0,7900,817,1,0,0,0,7901,7906,3,820,410,0,7902, + 7903,5,868,0,0,7903,7905,3,820,410,0,7904,7902,1,0,0,0,7905,7908, + 1,0,0,0,7906,7904,1,0,0,0,7906,7907,1,0,0,0,7907,819,1,0,0,0,7908, + 7906,1,0,0,0,7909,7913,3,742,371,0,7910,7913,3,782,391,0,7911,7913, + 3,822,411,0,7912,7909,1,0,0,0,7912,7910,1,0,0,0,7912,7911,1,0,0, + 0,7913,821,1,0,0,0,7914,7915,6,411,-1,0,7915,7916,7,147,0,0,7916, + 7926,3,822,411,4,7917,7918,3,824,412,0,7918,7920,5,89,0,0,7919,7921, + 5,114,0,0,7920,7919,1,0,0,0,7920,7921,1,0,0,0,7921,7922,1,0,0,0, + 7922,7923,7,148,0,0,7923,7926,1,0,0,0,7924,7926,3,824,412,0,7925, + 7914,1,0,0,0,7925,7917,1,0,0,0,7925,7924,1,0,0,0,7926,7933,1,0,0, + 0,7927,7928,10,3,0,0,7928,7929,3,834,417,0,7929,7930,3,822,411,4, + 7930,7932,1,0,0,0,7931,7927,1,0,0,0,7932,7935,1,0,0,0,7933,7931, + 1,0,0,0,7933,7934,1,0,0,0,7934,823,1,0,0,0,7935,7933,1,0,0,0,7936, + 7937,6,412,-1,0,7937,7938,3,826,413,0,7938,8002,1,0,0,0,7939,7941, + 10,6,0,0,7940,7942,5,114,0,0,7941,7940,1,0,0,0,7941,7942,1,0,0,0, + 7942,7943,1,0,0,0,7943,7944,5,17,0,0,7944,7945,3,824,412,0,7945, + 7946,5,11,0,0,7946,7947,3,824,412,7,7947,8001,1,0,0,0,7948,7949, + 10,5,0,0,7949,7950,5,604,0,0,7950,7951,5,99,0,0,7951,8001,3,824, + 412,6,7952,7954,10,3,0,0,7953,7955,5,114,0,0,7954,7953,1,0,0,0,7954, + 7955,1,0,0,0,7955,7956,1,0,0,0,7956,7957,7,149,0,0,7957,8001,3,824, + 412,4,7958,7960,10,9,0,0,7959,7961,5,114,0,0,7960,7959,1,0,0,0,7960, + 7961,1,0,0,0,7961,7962,1,0,0,0,7962,7963,5,80,0,0,7963,7966,5,866, + 0,0,7964,7967,3,210,105,0,7965,7967,3,758,379,0,7966,7964,1,0,0, + 0,7966,7965,1,0,0,0,7967,7968,1,0,0,0,7968,7969,5,867,0,0,7969,8001, + 1,0,0,0,7970,7971,10,8,0,0,7971,7972,5,89,0,0,7972,8001,3,740,370, + 0,7973,7974,10,7,0,0,7974,7981,3,830,415,0,7975,7976,7,150,0,0,7976, + 7977,5,866,0,0,7977,7978,3,210,105,0,7978,7979,5,867,0,0,7979,7982, + 1,0,0,0,7980,7982,3,824,412,0,7981,7975,1,0,0,0,7981,7980,1,0,0, + 0,7982,8001,1,0,0,0,7983,7985,10,4,0,0,7984,7986,5,114,0,0,7985, + 7984,1,0,0,0,7985,7986,1,0,0,0,7986,7987,1,0,0,0,7987,7988,5,99, + 0,0,7988,7991,3,824,412,0,7989,7990,5,384,0,0,7990,7992,5,882,0, + 0,7991,7989,1,0,0,0,7991,7992,1,0,0,0,7992,8001,1,0,0,0,7993,7994, + 10,2,0,0,7994,7995,5,485,0,0,7995,7996,5,510,0,0,7996,7997,5,866, + 0,0,7997,7998,3,824,412,0,7998,7999,5,867,0,0,7999,8001,1,0,0,0, + 8000,7939,1,0,0,0,8000,7948,1,0,0,0,8000,7952,1,0,0,0,8000,7958, + 1,0,0,0,8000,7970,1,0,0,0,8000,7973,1,0,0,0,8000,7983,1,0,0,0,8000, + 7993,1,0,0,0,8001,8004,1,0,0,0,8002,8000,1,0,0,0,8002,8003,1,0,0, + 0,8003,825,1,0,0,0,8004,8002,1,0,0,0,8005,8006,6,413,-1,0,8006,8054, + 3,742,371,0,8007,8054,3,782,391,0,8008,8054,3,702,351,0,8009,8010, + 3,828,414,0,8010,8011,3,826,413,12,8011,8054,1,0,0,0,8012,8013,5, + 228,0,0,8013,8054,3,826,413,11,8014,8015,5,892,0,0,8015,8016,5,841, + 0,0,8016,8054,3,826,413,10,8017,8018,5,866,0,0,8018,8023,3,822,411, + 0,8019,8020,5,868,0,0,8020,8022,3,822,411,0,8021,8019,1,0,0,0,8022, + 8025,1,0,0,0,8023,8021,1,0,0,0,8023,8024,1,0,0,0,8024,8026,1,0,0, + 0,8025,8023,1,0,0,0,8026,8027,5,867,0,0,8027,8054,1,0,0,0,8028,8029, + 5,586,0,0,8029,8030,5,866,0,0,8030,8033,3,822,411,0,8031,8032,5, + 868,0,0,8032,8034,3,822,411,0,8033,8031,1,0,0,0,8034,8035,1,0,0, + 0,8035,8033,1,0,0,0,8035,8036,1,0,0,0,8036,8037,1,0,0,0,8037,8038, + 5,867,0,0,8038,8054,1,0,0,0,8039,8040,5,60,0,0,8040,8041,5,866,0, + 0,8041,8042,3,210,105,0,8042,8043,5,867,0,0,8043,8054,1,0,0,0,8044, + 8045,5,866,0,0,8045,8046,3,210,105,0,8046,8047,5,867,0,0,8047,8054, + 1,0,0,0,8048,8049,5,87,0,0,8049,8050,3,822,411,0,8050,8051,3,70, + 35,0,8051,8054,1,0,0,0,8052,8054,3,676,338,0,8053,8005,1,0,0,0,8053, + 8007,1,0,0,0,8053,8008,1,0,0,0,8053,8009,1,0,0,0,8053,8012,1,0,0, + 0,8053,8014,1,0,0,0,8053,8017,1,0,0,0,8053,8028,1,0,0,0,8053,8039, + 1,0,0,0,8053,8044,1,0,0,0,8053,8048,1,0,0,0,8053,8052,1,0,0,0,8054, + 8072,1,0,0,0,8055,8056,10,4,0,0,8056,8057,3,840,420,0,8057,8058, + 3,826,413,5,8058,8071,1,0,0,0,8059,8060,10,3,0,0,8060,8061,3,836, + 418,0,8061,8062,3,826,413,4,8062,8071,1,0,0,0,8063,8064,10,2,0,0, + 8064,8065,3,838,419,0,8065,8066,3,826,413,3,8066,8071,1,0,0,0,8067, + 8068,10,14,0,0,8068,8069,5,28,0,0,8069,8071,3,706,353,0,8070,8055, + 1,0,0,0,8070,8059,1,0,0,0,8070,8063,1,0,0,0,8070,8067,1,0,0,0,8071, + 8074,1,0,0,0,8072,8070,1,0,0,0,8072,8073,1,0,0,0,8073,827,1,0,0, + 0,8074,8072,1,0,0,0,8075,8076,7,151,0,0,8076,829,1,0,0,0,8077,8078, + 5,859,0,0,8078,8086,5,858,0,0,8079,8080,5,860,0,0,8080,8086,5,857, + 0,0,8081,8082,5,859,0,0,8082,8083,5,857,0,0,8083,8086,5,858,0,0, + 8084,8086,3,832,416,0,8085,8077,1,0,0,0,8085,8079,1,0,0,0,8085,8081, + 1,0,0,0,8085,8084,1,0,0,0,8086,831,1,0,0,0,8087,8088,5,859,0,0,8088, + 8095,5,857,0,0,8089,8090,5,858,0,0,8090,8095,5,857,0,0,8091,8095, + 5,857,0,0,8092,8095,5,858,0,0,8093,8095,5,859,0,0,8094,8087,1,0, + 0,0,8094,8089,1,0,0,0,8094,8091,1,0,0,0,8094,8092,1,0,0,0,8094,8093, + 1,0,0,0,8095,833,1,0,0,0,8096,8104,5,11,0,0,8097,8098,5,863,0,0, + 8098,8104,5,863,0,0,8099,8104,5,196,0,0,8100,8104,5,124,0,0,8101, + 8102,5,862,0,0,8102,8104,5,862,0,0,8103,8096,1,0,0,0,8103,8097,1, + 0,0,0,8103,8099,1,0,0,0,8103,8100,1,0,0,0,8103,8101,1,0,0,0,8104, + 835,1,0,0,0,8105,8106,5,859,0,0,8106,8113,5,859,0,0,8107,8108,5, + 858,0,0,8108,8113,5,858,0,0,8109,8113,5,863,0,0,8110,8113,5,864, + 0,0,8111,8113,5,862,0,0,8112,8105,1,0,0,0,8112,8107,1,0,0,0,8112, + 8109,1,0,0,0,8112,8110,1,0,0,0,8112,8111,1,0,0,0,8113,837,1,0,0, + 0,8114,8115,7,152,0,0,8115,839,1,0,0,0,8116,8117,5,854,0,0,8117, + 8122,5,858,0,0,8118,8119,5,854,0,0,8119,8120,5,858,0,0,8120,8122, + 5,858,0,0,8121,8116,1,0,0,0,8121,8118,1,0,0,0,8122,841,1,0,0,0,8123, + 8124,7,153,0,0,8124,843,1,0,0,0,8125,8126,7,154,0,0,8126,845,1,0, + 0,0,8127,8128,7,155,0,0,8128,847,1,0,0,0,8129,8130,7,156,0,0,8130, + 849,1,0,0,0,8131,8132,7,157,0,0,8132,851,1,0,0,0,8133,8134,7,158, + 0,0,8134,853,1,0,0,0,8135,8136,7,159,0,0,8136,855,1,0,0,0,1173,859, + 866,869,878,922,941,952,968,973,985,1020,1030,1035,1041,1046,1050, + 1059,1062,1065,1069,1076,1079,1084,1092,1097,1102,1105,1107,1119, + 1122,1126,1129,1133,1136,1140,1143,1146,1150,1153,1157,1163,1167, + 1172,1178,1185,1192,1195,1199,1204,1210,1219,1224,1228,1232,1243, + 1261,1268,1272,1276,1280,1285,1288,1291,1294,1297,1303,1307,1317, + 1321,1325,1331,1336,1339,1342,1344,1348,1355,1359,1362,1367,1371, + 1374,1378,1381,1385,1398,1401,1405,1408,1412,1415,1419,1422,1426, + 1429,1432,1436,1439,1443,1449,1452,1456,1468,1474,1485,1490,1498, + 1502,1507,1510,1515,1525,1530,1535,1541,1546,1550,1552,1555,1559, + 1563,1566,1570,1574,1578,1584,1587,1594,1599,1605,1612,1618,1626, + 1629,1636,1639,1641,1647,1653,1670,1677,1684,1696,1701,1704,1707, + 1720,1733,1738,1754,1762,1772,1775,1781,1786,1789,1795,1799,1804, + 1810,1814,1818,1821,1824,1830,1834,1839,1850,1853,1860,1863,1867, + 1873,1885,1888,1893,1906,1913,1919,1924,1928,1931,1939,1947,1949, + 1959,1963,1966,1970,1975,1980,1985,1989,1993,1997,2001,2005,2009, + 2014,2019,2024,2030,2035,2040,2045,2050,2055,2061,2066,2071,2076, + 2081,2086,2091,2096,2103,2108,2113,2118,2122,2127,2135,2140,2146, + 2158,2165,2167,2175,2180,2183,2191,2197,2201,2214,2226,2228,2231, + 2239,2245,2251,2264,2271,2280,2285,2296,2305,2310,2322,2329,2338, + 2343,2355,2362,2371,2376,2383,2392,2397,2399,2404,2412,2421,2425, + 2428,2432,2437,2443,2449,2454,2459,2464,2469,2472,2477,2482,2492, + 2496,2503,2508,2511,2516,2519,2523,2527,2535,2554,2557,2560,2564, + 2574,2587,2600,2603,2609,2612,2616,2625,2628,2631,2636,2640,2643, + 2647,2651,2654,2658,2661,2665,2668,2674,2677,2682,2690,2696,2700, + 2704,2709,2714,2721,2725,2736,2744,2747,2753,2759,2762,2768,2774, + 2776,2781,2787,2793,2795,2799,2802,2805,2811,2817,2819,2824,2831, + 2840,2843,2847,2852,2862,2871,2879,2882,2890,2893,2900,2905,2913, + 2929,2934,2941,2960,2966,2976,2988,2995,3002,3017,3030,3036,3042, + 3048,3054,3060,3066,3071,3078,3085,3092,3097,3100,3102,3111,3118, + 3125,3132,3141,3147,3151,3155,3159,3165,3168,3173,3180,3187,3191, + 3196,3206,3214,3220,3229,3238,3247,3250,3254,3263,3267,3270,3273, + 3279,3282,3285,3289,3292,3295,3298,3309,3312,3317,3323,3328,3333, + 3336,3340,3345,3348,3353,3363,3368,3374,3376,3382,3384,3390,3398, + 3403,3411,3414,3419,3422,3427,3435,3441,3445,3447,3453,3461,3466, + 3474,3477,3482,3485,3489,3492,3495,3499,3502,3510,3516,3520,3526, + 3531,3535,3537,3543,3547,3550,3553,3556,3562,3567,3570,3573,3576, + 3579,3581,3584,3588,3591,3594,3602,3608,3611,3613,3622,3627,3634, + 3637,3640,3644,3648,3654,3658,3665,3669,3672,3675,3680,3687,3697, + 3706,3715,3725,3728,3732,3738,3742,3745,3748,3753,3756,3763,3767, + 3770,3774,3778,3781,3784,3789,3795,3799,3809,3815,3819,3825,3829, + 3835,3838,3850,3854,3858,3866,3870,3884,3889,3892,3896,3899,3907, + 3912,3915,3918,3922,3925,3934,3939,3948,3953,3960,3967,3975,3981, + 3989,3992,3995,4002,4005,4008,4012,4016,4022,4029,4039,4043,4052, + 4055,4059,4065,4073,4078,4082,4088,4094,4097,4099,4103,4108,4115, + 4125,4131,4136,4140,4143,4146,4149,4152,4155,4158,4162,4166,4174, + 4178,4181,4183,4196,4199,4206,4216,4219,4224,4226,4230,4238,4244, + 4253,4266,4270,4276,4282,4285,4289,4292,4294,4306,4310,4318,4330, + 4336,4338,4344,4346,4348,4354,4362,4370,4374,4379,4381,4390,4395, + 4415,4420,4426,4433,4438,4447,4450,4454,4458,4462,4465,4468,4471, + 4475,4479,4482,4485,4488,4495,4499,4514,4527,4535,4545,4549,4552, + 4558,4561,4564,4573,4582,4592,4596,4606,4610,4621,4625,4634,4643, + 4646,4650,4655,4659,4668,4671,4674,4681,4687,4693,4719,4722,4725, + 4744,4746,4769,4772,4775,4794,4796,4810,4823,4860,4865,4900,4914, + 4921,4925,4931,4939,4941,4952,4962,4969,4975,4983,4988,4996,5004, + 5012,5020,5026,5031,5036,5041,5047,5049,5060,5065,5072,5074,5088, + 5094,5099,5104,5110,5117,5125,5133,5138,5144,5147,5155,5162,5171, + 5174,5191,5199,5207,5211,5218,5224,5232,5237,5244,5252,5259,5264, + 5267,5269,5275,5277,5281,5283,5288,5295,5300,5304,5309,5313,5319, + 5325,5330,5333,5335,5341,5343,5347,5349,5354,5359,5366,5375,5380, + 5389,5393,5399,5404,5407,5409,5415,5417,5420,5427,5429,5434,5441, + 5450,5456,5458,5465,5468,5480,5486,5494,5497,5501,5504,5508,5510, + 5521,5524,5528,5531,5534,5541,5553,5556,5563,5569,5579,5584,5591, + 5596,5602,5606,5610,5618,5622,5626,5632,5634,5646,5651,5657,5663, + 5667,5672,5674,5698,5702,5705,5714,5718,5727,5731,5735,5741,5743, + 5752,5762,5789,5793,5798,5805,5808,5814,5824,5834,5844,5850,5859, + 5865,5872,5874,5882,5888,5892,5909,5919,5923,5927,5937,5942,6014, + 6032,6040,6046,6058,6062,6073,6077,6086,6094,6101,6105,6112,6117, + 6120,6123,6134,6143,6152,6155,6169,6187,6200,6203,6207,6210,6212, + 6219,6226,6230,6237,6244,6247,6263,6266,6276,6280,6286,6289,6292, + 6297,6301,6304,6311,6314,6320,6356,6359,6371,6374,6390,6392,6396, + 6403,6407,6414,6417,6426,6429,6434,6440,6442,6448,6452,6458,6461, + 6464,6477,6480,6486,6489,6497,6505,6511,6514,6518,6532,6544,6552, + 6556,6563,6570,6575,6588,6597,6605,6610,6613,6618,6621,6633,6638, + 6651,6653,6658,6662,6665,6667,6674,6681,6684,6687,6693,6697,6703, + 6711,6720,6733,6738,6746,6749,6754,6759,6767,6770,6778,6782,6789, + 6795,6798,6802,6815,6821,6833,6836,6845,6850,6871,6887,6897,6902, + 6907,6909,6912,6916,6918,6925,6933,6935,6938,6942,6946,6951,6953, + 6956,6960,6962,6969,6971,6973,6986,6996,6999,7002,7015,7021,7024, + 7032,7039,7059,7066,7068,7075,7077,7081,7088,7094,7105,7111,7120, + 7126,7129,7133,7138,7141,7145,7149,7151,7156,7161,7174,7177,7181, + 7184,7187,7192,7197,7203,7206,7211,7214,7219,7222,7226,7231,7236, + 7241,7246,7249,7254,7259,7264,7270,7275,7280,7285,7289,7292,7297, + 7301,7305,7313,7320,7324,7329,7334,7338,7340,7343,7359,7369,7379, + 7388,7397,7404,7411,7419,7427,7439,7446,7456,7461,7464,7469,7472, + 7494,7503,7506,7511,7544,7548,7557,7561,7570,7578,7583,7591,7596, + 7601,7603,7612,7617,7625,7630,7638,7646,7649,7659,7677,7680,7683, + 7687,7700,7708,7712,7717,7722,7728,7733,7737,7742,7747,7752,7762, + 7765,7769,7773,7780,7784,7813,7821,7824,7827,7830,7833,7844,7858, + 7867,7894,7906,7912,7920,7925,7933,7941,7954,7960,7966,7981,7985, + 7991,8000,8002,8023,8035,8053,8070,8072,8085,8094,8103,8112,8121 ]; private static __ATN: antlr.ATN; @@ -65256,6 +65549,9 @@ export class JoinSpecContext extends antlr.ParserRuleContext { public expression(): ExpressionContext | null { return this.getRuleContext(0, ExpressionContext); } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNamePathAllowEmptyContext); + } public KW_USING(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_USING, 0); } @@ -66355,6 +66651,9 @@ export class FromClauseContext extends antlr.ParserRuleContext { public KW_WHERE(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_WHERE, 0); } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNamePathAllowEmptyContext); + } public expression(): ExpressionContext | null { return this.getRuleContext(0, ExpressionContext); } @@ -78447,6 +78746,33 @@ export class ColumnNamesContext extends antlr.ParserRuleContext { } +export class EmptyColumnContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return MySqlParser.RULE_emptyColumn; + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterEmptyColumn) { + listener.enterEmptyColumn(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitEmptyColumn) { + listener.exitEmptyColumn(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitEmptyColumn) { + return visitor.visitEmptyColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -78454,6 +78780,15 @@ export class ColumnNameContext extends antlr.ParserRuleContext { public uid(): UidContext | null { return this.getRuleContext(0, UidContext); } + public dottedIdAllowEmpty(): DottedIdAllowEmptyContext[]; + public dottedIdAllowEmpty(i: number): DottedIdAllowEmptyContext | null; + public dottedIdAllowEmpty(i?: number): DottedIdAllowEmptyContext[] | DottedIdAllowEmptyContext | null { + if (i === undefined) { + return this.getRuleContexts(DottedIdAllowEmptyContext); + } + + return this.getRuleContext(i, DottedIdAllowEmptyContext); + } public dottedId(): DottedIdContext[]; public dottedId(i: number): DottedIdContext | null; public dottedId(i?: number): DottedIdContext[] | DottedIdContext | null { @@ -78463,6 +78798,9 @@ export class ColumnNameContext extends antlr.ParserRuleContext { return this.getRuleContext(i, DottedIdContext); } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } public override get ruleIndex(): number { return MySqlParser.RULE_columnName; } @@ -78486,6 +78824,87 @@ export class ColumnNameContext extends antlr.ParserRuleContext { } +export class ColumnNamePathContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public dottedId(): DottedIdContext[]; + public dottedId(i: number): DottedIdContext | null; + public dottedId(i?: number): DottedIdContext[] | DottedIdContext | null { + if (i === undefined) { + return this.getRuleContexts(DottedIdContext); + } + + return this.getRuleContext(i, DottedIdContext); + } + public override get ruleIndex(): number { + return MySqlParser.RULE_columnNamePath; + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterColumnNamePath) { + listener.enterColumnNamePath(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitColumnNamePath) { + listener.exitColumnNamePath(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath) { + return visitor.visitColumnNamePath(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ColumnNamePathAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public dottedIdAllowEmpty(): DottedIdAllowEmptyContext[]; + public dottedIdAllowEmpty(i: number): DottedIdAllowEmptyContext | null; + public dottedIdAllowEmpty(i?: number): DottedIdAllowEmptyContext[] | DottedIdAllowEmptyContext | null { + if (i === undefined) { + return this.getRuleContexts(DottedIdAllowEmptyContext); + } + + return this.getRuleContext(i, DottedIdAllowEmptyContext); + } + public override get ruleIndex(): number { + return MySqlParser.RULE_columnNamePathAllowEmpty; + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterColumnNamePathAllowEmpty) { + listener.enterColumnNamePathAllowEmpty(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitColumnNamePathAllowEmpty) { + listener.exitColumnNamePathAllowEmpty(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitColumnNamePathAllowEmpty) { + return visitor.visitColumnNamePathAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TableSpaceNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -79435,6 +79854,45 @@ export class DottedIdContext extends antlr.ParserRuleContext { } +export class DottedIdAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public DOT(): antlr.TerminalNode { + return this.getToken(MySqlParser.DOT, 0)!; + } + public ID(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.ID, 0); + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public override get ruleIndex(): number { + return MySqlParser.RULE_dottedIdAllowEmpty; + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterDottedIdAllowEmpty) { + listener.enterDottedIdAllowEmpty(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitDottedIdAllowEmpty) { + listener.exitDottedIdAllowEmpty(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitDottedIdAllowEmpty) { + return visitor.visitDottedIdAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class DecimalLiteralContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -83603,8 +84061,8 @@ export class ColumnNameExpressionAtomContext extends ExpressionAtomContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnName(): ColumnNameContext { - return this.getRuleContext(0, ColumnNameContext)!; + public columnNamePath(): ColumnNamePathContext { + return this.getRuleContext(0, ColumnNamePathContext)!; } public override enterRule(listener: MySqlParserListener): void { if(listener.enterColumnNameExpressionAtom) { diff --git a/src/lib/mysql/MySqlParserListener.ts b/src/lib/mysql/MySqlParserListener.ts index 3f3b832f..bf8ee237 100644 --- a/src/lib/mysql/MySqlParserListener.ts +++ b/src/lib/mysql/MySqlParserListener.ts @@ -541,7 +541,10 @@ import { UserOrRoleNamesContext } from "./MySqlParser.js"; import { UserOrRoleNameContext } from "./MySqlParser.js"; import { ColumnNameCreateContext } from "./MySqlParser.js"; import { ColumnNamesContext } from "./MySqlParser.js"; +import { EmptyColumnContext } from "./MySqlParser.js"; import { ColumnNameContext } from "./MySqlParser.js"; +import { ColumnNamePathContext } from "./MySqlParser.js"; +import { ColumnNamePathAllowEmptyContext } from "./MySqlParser.js"; import { TableSpaceNameCreateContext } from "./MySqlParser.js"; import { TableSpaceNameContext } from "./MySqlParser.js"; import { PartitionNameCreateContext } from "./MySqlParser.js"; @@ -566,6 +569,7 @@ import { UidListContext } from "./MySqlParser.js"; import { UidContext } from "./MySqlParser.js"; import { SimpleIdContext } from "./MySqlParser.js"; import { DottedIdContext } from "./MySqlParser.js"; +import { DottedIdAllowEmptyContext } from "./MySqlParser.js"; import { DecimalLiteralContext } from "./MySqlParser.js"; import { FileSizeLiteralContext } from "./MySqlParser.js"; import { StringLiteralContext } from "./MySqlParser.js"; @@ -6481,6 +6485,16 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnNames?: (ctx: ColumnNamesContext) => void; + /** + * Enter a parse tree produced by `MySqlParser.emptyColumn`. + * @param ctx the parse tree + */ + enterEmptyColumn?: (ctx: EmptyColumnContext) => void; + /** + * Exit a parse tree produced by `MySqlParser.emptyColumn`. + * @param ctx the parse tree + */ + exitEmptyColumn?: (ctx: EmptyColumnContext) => void; /** * Enter a parse tree produced by `MySqlParser.columnName`. * @param ctx the parse tree @@ -6491,6 +6505,26 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnName?: (ctx: ColumnNameContext) => void; + /** + * Enter a parse tree produced by `MySqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Exit a parse tree produced by `MySqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Enter a parse tree produced by `MySqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + */ + enterColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `MySqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + */ + exitColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => void; /** * Enter a parse tree produced by `MySqlParser.tableSpaceNameCreate`. * @param ctx the parse tree @@ -6731,6 +6765,16 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDottedId?: (ctx: DottedIdContext) => void; + /** + * Enter a parse tree produced by `MySqlParser.dottedIdAllowEmpty`. + * @param ctx the parse tree + */ + enterDottedIdAllowEmpty?: (ctx: DottedIdAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `MySqlParser.dottedIdAllowEmpty`. + * @param ctx the parse tree + */ + exitDottedIdAllowEmpty?: (ctx: DottedIdAllowEmptyContext) => void; /** * Enter a parse tree produced by `MySqlParser.decimalLiteral`. * @param ctx the parse tree diff --git a/src/lib/mysql/MySqlParserVisitor.ts b/src/lib/mysql/MySqlParserVisitor.ts index 7fa6248c..d4d967a2 100644 --- a/src/lib/mysql/MySqlParserVisitor.ts +++ b/src/lib/mysql/MySqlParserVisitor.ts @@ -541,7 +541,10 @@ import { UserOrRoleNamesContext } from "./MySqlParser.js"; import { UserOrRoleNameContext } from "./MySqlParser.js"; import { ColumnNameCreateContext } from "./MySqlParser.js"; import { ColumnNamesContext } from "./MySqlParser.js"; +import { EmptyColumnContext } from "./MySqlParser.js"; import { ColumnNameContext } from "./MySqlParser.js"; +import { ColumnNamePathContext } from "./MySqlParser.js"; +import { ColumnNamePathAllowEmptyContext } from "./MySqlParser.js"; import { TableSpaceNameCreateContext } from "./MySqlParser.js"; import { TableSpaceNameContext } from "./MySqlParser.js"; import { PartitionNameCreateContext } from "./MySqlParser.js"; @@ -566,6 +569,7 @@ import { UidListContext } from "./MySqlParser.js"; import { UidContext } from "./MySqlParser.js"; import { SimpleIdContext } from "./MySqlParser.js"; import { DottedIdContext } from "./MySqlParser.js"; +import { DottedIdAllowEmptyContext } from "./MySqlParser.js"; import { DecimalLiteralContext } from "./MySqlParser.js"; import { FileSizeLiteralContext } from "./MySqlParser.js"; import { StringLiteralContext } from "./MySqlParser.js"; @@ -4121,12 +4125,30 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitColumnNames?: (ctx: ColumnNamesContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.emptyColumn`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEmptyColumn?: (ctx: EmptyColumnContext) => Result; /** * Visit a parse tree produced by `MySqlParser.columnName`. * @param ctx the parse tree * @return the visitor result */ visitColumnName?: (ctx: ColumnNameContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath?: (ctx: ColumnNamePathContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => Result; /** * Visit a parse tree produced by `MySqlParser.tableSpaceNameCreate`. * @param ctx the parse tree @@ -4271,6 +4293,12 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitDottedId?: (ctx: DottedIdContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.dottedIdAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDottedIdAllowEmpty?: (ctx: DottedIdAllowEmptyContext) => Result; /** * Visit a parse tree produced by `MySqlParser.decimalLiteral`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParser.interp b/src/lib/postgresql/PostgreSqlParser.interp index 81d54640..7d57030a 100644 --- a/src/lib/postgresql/PostgreSqlParser.interp +++ b/src/lib/postgresql/PostgreSqlParser.interp @@ -1591,6 +1591,7 @@ routineNameCreate routineName procedureName procedureNameCreate +emptyColumn columnName columnNamePath columnNameCreate @@ -1661,4 +1662,4 @@ sqlExpression atn: -[4, 1, 592, 8511, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 1, 0, 5, 0, 940, 8, 0, 10, 0, 12, 0, 943, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 949, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1069, 8, 2, 3, 2, 1071, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1080, 8, 4, 1, 4, 5, 4, 1083, 8, 4, 10, 4, 12, 4, 1086, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1091, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1126, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1136, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1142, 8, 7, 1, 7, 5, 7, 1145, 8, 7, 10, 7, 12, 7, 1148, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1154, 8, 8, 1, 8, 5, 8, 1157, 8, 8, 10, 8, 12, 8, 1160, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1166, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1177, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1183, 8, 11, 10, 11, 12, 11, 1186, 9, 11, 1, 11, 3, 11, 1189, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1201, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1207, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1213, 8, 12, 1, 12, 1, 12, 3, 12, 1217, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1222, 8, 12, 1, 12, 1, 12, 3, 12, 1226, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1239, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1249, 8, 12, 3, 12, 1251, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1257, 8, 13, 1, 13, 5, 13, 1260, 8, 13, 10, 13, 12, 13, 1263, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1275, 8, 15, 1, 15, 3, 15, 1278, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1283, 8, 15, 1, 15, 5, 15, 1286, 8, 15, 10, 15, 12, 15, 1289, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1299, 8, 17, 1, 18, 1, 18, 3, 18, 1303, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1315, 8, 19, 1, 20, 1, 20, 3, 20, 1319, 8, 20, 1, 20, 3, 20, 1322, 8, 20, 1, 20, 1, 20, 3, 20, 1326, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1338, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1356, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1361, 8, 22, 10, 22, 12, 22, 1364, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1369, 8, 23, 10, 23, 12, 23, 1372, 9, 23, 1, 24, 1, 24, 3, 24, 1376, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1383, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1391, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1397, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1405, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1413, 8, 28, 1, 29, 1, 29, 3, 29, 1417, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1431, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1436, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1441, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1453, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1459, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1471, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1476, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1486, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1492, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1497, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1506, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1513, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1518, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1523, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1533, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1538, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1543, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1550, 8, 38, 1, 38, 1, 38, 3, 38, 1554, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1568, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1574, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1580, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1585, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1590, 8, 39, 10, 39, 12, 39, 1593, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1601, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1610, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1617, 8, 42, 10, 42, 12, 42, 1620, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1628, 8, 42, 1, 42, 1, 42, 3, 42, 1632, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1644, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1652, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1662, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1682, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1687, 8, 42, 1, 42, 3, 42, 1690, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1697, 8, 42, 1, 42, 3, 42, 1700, 8, 42, 1, 42, 1, 42, 3, 42, 1704, 8, 42, 1, 42, 1, 42, 3, 42, 1708, 8, 42, 1, 42, 3, 42, 1711, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1716, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1721, 8, 42, 1, 42, 1, 42, 3, 42, 1725, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1734, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1740, 8, 42, 1, 42, 1, 42, 3, 42, 1744, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1753, 8, 42, 1, 42, 3, 42, 1756, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1762, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1771, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1781, 8, 42, 11, 42, 12, 42, 1782, 1, 42, 1, 42, 3, 42, 1787, 8, 42, 1, 42, 1, 42, 3, 42, 1791, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1796, 8, 42, 1, 42, 3, 42, 1799, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1805, 8, 42, 4, 42, 1807, 8, 42, 11, 42, 12, 42, 1808, 1, 42, 1, 42, 3, 42, 1813, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1819, 8, 42, 1, 42, 1, 42, 3, 42, 1823, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1828, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1833, 8, 42, 1, 42, 1, 42, 3, 42, 1837, 8, 42, 1, 42, 3, 42, 1840, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1847, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1858, 8, 46, 10, 46, 12, 46, 1861, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1873, 8, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1898, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1906, 8, 50, 10, 50, 12, 50, 1909, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1915, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1920, 8, 51, 1, 51, 1, 51, 3, 51, 1924, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1931, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1936, 8, 51, 1, 51, 3, 51, 1939, 8, 51, 3, 51, 1941, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1946, 8, 52, 1, 53, 1, 53, 3, 53, 1950, 8, 53, 1, 53, 1, 53, 3, 53, 1954, 8, 53, 1, 53, 1, 53, 3, 53, 1958, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1963, 8, 53, 1, 53, 3, 53, 1966, 8, 53, 1, 53, 1, 53, 3, 53, 1970, 8, 53, 1, 53, 3, 53, 1973, 8, 53, 1, 53, 1, 53, 3, 53, 1977, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1985, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1990, 8, 53, 1, 53, 3, 53, 1993, 8, 53, 1, 53, 1, 53, 3, 53, 1997, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2003, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2012, 8, 54, 1, 54, 1, 54, 3, 54, 2016, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2026, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2031, 8, 54, 5, 54, 2033, 8, 54, 10, 54, 12, 54, 2036, 9, 54, 1, 54, 3, 54, 2039, 8, 54, 5, 54, 2041, 8, 54, 10, 54, 12, 54, 2044, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2050, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2055, 8, 55, 5, 55, 2057, 8, 55, 10, 55, 12, 55, 2060, 9, 55, 1, 55, 1, 55, 3, 55, 2064, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2074, 8, 56, 10, 56, 12, 56, 2077, 9, 56, 1, 56, 1, 56, 3, 56, 2081, 8, 56, 1, 57, 1, 57, 3, 57, 2085, 8, 57, 1, 57, 1, 57, 3, 57, 2089, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2094, 8, 57, 1, 57, 1, 57, 3, 57, 2098, 8, 57, 1, 57, 3, 57, 2101, 8, 57, 1, 57, 3, 57, 2104, 8, 57, 1, 57, 3, 57, 2107, 8, 57, 1, 57, 3, 57, 2110, 8, 57, 1, 57, 3, 57, 2113, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 3, 57, 2130, 8, 57, 1, 57, 3, 57, 2133, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2139, 8, 57, 1, 57, 1, 57, 3, 57, 2143, 8, 57, 1, 57, 3, 57, 2146, 8, 57, 1, 57, 3, 57, 2149, 8, 57, 1, 57, 3, 57, 2152, 8, 57, 1, 57, 3, 57, 2155, 8, 57, 3, 57, 2157, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2164, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2170, 8, 59, 10, 59, 12, 59, 2173, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2180, 8, 60, 10, 60, 12, 60, 2183, 9, 60, 1, 61, 1, 61, 3, 61, 2187, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2195, 8, 61, 10, 61, 12, 61, 2198, 9, 61, 3, 61, 2200, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2205, 8, 62, 1, 62, 5, 62, 2208, 8, 62, 10, 62, 12, 62, 2211, 9, 62, 1, 62, 1, 62, 3, 62, 2215, 8, 62, 1, 62, 3, 62, 2218, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2223, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2232, 8, 63, 3, 63, 2234, 8, 63, 1, 63, 1, 63, 3, 63, 2238, 8, 63, 1, 63, 3, 63, 2241, 8, 63, 1, 63, 1, 63, 3, 63, 2245, 8, 63, 1, 63, 5, 63, 2248, 8, 63, 10, 63, 12, 63, 2251, 9, 63, 1, 64, 1, 64, 3, 64, 2255, 8, 64, 1, 64, 1, 64, 3, 64, 2259, 8, 64, 1, 64, 3, 64, 2262, 8, 64, 1, 64, 1, 64, 3, 64, 2266, 8, 64, 1, 65, 3, 65, 2269, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2274, 8, 65, 1, 65, 3, 65, 2277, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2282, 8, 65, 1, 65, 3, 65, 2285, 8, 65, 1, 65, 1, 65, 3, 65, 2289, 8, 65, 1, 65, 3, 65, 2292, 8, 65, 1, 65, 3, 65, 2295, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2300, 8, 65, 1, 65, 3, 65, 2303, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2311, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2321, 8, 65, 11, 65, 12, 65, 2322, 1, 65, 1, 65, 3, 65, 2327, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2334, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2339, 8, 65, 1, 65, 3, 65, 2342, 8, 65, 1, 65, 3, 65, 2345, 8, 65, 1, 65, 3, 65, 2348, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2353, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2362, 8, 68, 10, 68, 12, 68, 2365, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2370, 8, 68, 1, 68, 1, 68, 3, 68, 2374, 8, 68, 1, 68, 3, 68, 2377, 8, 68, 1, 68, 3, 68, 2380, 8, 68, 1, 68, 5, 68, 2383, 8, 68, 10, 68, 12, 68, 2386, 9, 68, 1, 68, 1, 68, 5, 68, 2390, 8, 68, 10, 68, 12, 68, 2393, 9, 68, 3, 68, 2395, 8, 68, 1, 68, 1, 68, 3, 68, 2399, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2405, 8, 68, 10, 68, 12, 68, 2408, 9, 68, 1, 68, 1, 68, 3, 68, 2412, 8, 68, 1, 68, 3, 68, 2415, 8, 68, 1, 68, 3, 68, 2418, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2425, 8, 68, 1, 68, 5, 68, 2428, 8, 68, 10, 68, 12, 68, 2431, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2439, 8, 68, 1, 68, 3, 68, 2442, 8, 68, 1, 68, 3, 68, 2445, 8, 68, 1, 68, 5, 68, 2448, 8, 68, 10, 68, 12, 68, 2451, 9, 68, 3, 68, 2453, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2463, 8, 70, 10, 70, 12, 70, 2466, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2473, 8, 71, 10, 71, 12, 71, 2476, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2492, 8, 74, 1, 75, 1, 75, 3, 75, 2496, 8, 75, 1, 75, 1, 75, 3, 75, 2500, 8, 75, 3, 75, 2502, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2519, 8, 78, 3, 78, 2521, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2535, 8, 80, 10, 80, 12, 80, 2538, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2548, 8, 81, 1, 81, 3, 81, 2551, 8, 81, 1, 81, 3, 81, 2554, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2563, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2572, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2588, 8, 88, 1, 88, 3, 88, 2591, 8, 88, 1, 88, 3, 88, 2594, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2600, 8, 88, 10, 88, 12, 88, 2603, 9, 88, 1, 88, 3, 88, 2606, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2613, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2622, 8, 90, 1, 90, 1, 90, 3, 90, 2626, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2632, 8, 90, 1, 91, 1, 91, 3, 91, 2636, 8, 91, 1, 91, 3, 91, 2639, 8, 91, 1, 91, 3, 91, 2642, 8, 91, 1, 91, 3, 91, 2645, 8, 91, 1, 91, 3, 91, 2648, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2654, 8, 92, 1, 93, 1, 93, 3, 93, 2658, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2663, 8, 93, 1, 93, 1, 93, 3, 93, 2667, 8, 93, 1, 93, 3, 93, 2670, 8, 93, 1, 93, 3, 93, 2673, 8, 93, 1, 93, 3, 93, 2676, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2681, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2687, 8, 94, 1, 94, 1, 94, 3, 94, 2691, 8, 94, 1, 95, 1, 95, 3, 95, 2695, 8, 95, 1, 95, 1, 95, 3, 95, 2699, 8, 95, 1, 95, 1, 95, 4, 95, 2703, 8, 95, 11, 95, 12, 95, 2704, 3, 95, 2707, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2712, 8, 96, 1, 96, 1, 96, 4, 96, 2716, 8, 96, 11, 96, 12, 96, 2717, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2724, 8, 97, 1, 97, 1, 97, 3, 97, 2728, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2743, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2748, 8, 97, 1, 97, 3, 97, 2751, 8, 97, 3, 97, 2753, 8, 97, 1, 98, 3, 98, 2756, 8, 98, 1, 98, 1, 98, 3, 98, 2760, 8, 98, 1, 99, 1, 99, 3, 99, 2764, 8, 99, 1, 99, 3, 99, 2767, 8, 99, 1, 99, 3, 99, 2770, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2778, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2784, 8, 99, 3, 99, 2786, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2792, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2797, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2802, 8, 101, 1, 101, 1, 101, 3, 101, 2806, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2813, 8, 101, 10, 101, 12, 101, 2816, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2824, 8, 102, 10, 102, 12, 102, 2827, 9, 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, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2865, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2873, 8, 104, 11, 104, 12, 104, 2874, 3, 104, 2877, 8, 104, 1, 104, 3, 104, 2880, 8, 104, 1, 105, 1, 105, 3, 105, 2884, 8, 105, 1, 105, 1, 105, 3, 105, 2888, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2896, 8, 106, 11, 106, 12, 106, 2897, 3, 106, 2900, 8, 106, 1, 106, 1, 106, 4, 106, 2904, 8, 106, 11, 106, 12, 106, 2905, 3, 106, 2908, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2915, 8, 107, 10, 107, 12, 107, 2918, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2927, 8, 108, 10, 108, 12, 108, 2930, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2943, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2948, 8, 111, 1, 111, 3, 111, 2951, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2958, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2963, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2971, 8, 113, 3, 113, 2973, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2979, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2984, 8, 114, 1, 114, 1, 114, 3, 114, 2988, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2993, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2999, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3006, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3012, 8, 114, 3, 114, 3014, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3023, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3029, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3037, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3043, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3048, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3053, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3061, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3076, 8, 118, 3, 118, 3078, 8, 118, 1, 118, 1, 118, 3, 118, 3082, 8, 118, 1, 118, 1, 118, 3, 118, 3086, 8, 118, 1, 118, 3, 118, 3089, 8, 118, 1, 118, 3, 118, 3092, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3101, 8, 119, 1, 119, 3, 119, 3104, 8, 119, 1, 119, 3, 119, 3107, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3113, 8, 120, 1, 120, 1, 120, 5, 120, 3117, 8, 120, 10, 120, 12, 120, 3120, 9, 120, 1, 120, 3, 120, 3123, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3135, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3141, 8, 120, 1, 121, 3, 121, 3144, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3149, 8, 121, 1, 121, 1, 121, 3, 121, 3153, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3160, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3170, 8, 121, 3, 121, 3172, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3196, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3208, 8, 125, 1, 125, 4, 125, 3211, 8, 125, 11, 125, 12, 125, 3212, 3, 125, 3215, 8, 125, 1, 125, 1, 125, 3, 125, 3219, 8, 125, 1, 125, 3, 125, 3222, 8, 125, 1, 125, 3, 125, 3225, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3235, 8, 125, 1, 125, 3, 125, 3238, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3248, 8, 125, 1, 125, 5, 125, 3251, 8, 125, 10, 125, 12, 125, 3254, 9, 125, 1, 125, 1, 125, 3, 125, 3258, 8, 125, 1, 125, 3, 125, 3261, 8, 125, 1, 125, 3, 125, 3264, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3272, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3278, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3283, 8, 127, 10, 127, 12, 127, 3286, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3293, 8, 128, 1, 128, 3, 128, 3296, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3307, 8, 130, 1, 131, 1, 131, 3, 131, 3311, 8, 131, 1, 131, 1, 131, 5, 131, 3315, 8, 131, 10, 131, 12, 131, 3318, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3324, 8, 132, 1, 133, 3, 133, 3327, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3336, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3348, 8, 134, 10, 134, 12, 134, 3351, 9, 134, 3, 134, 3353, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3365, 8, 135, 10, 135, 12, 135, 3368, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3378, 8, 136, 1, 136, 3, 136, 3381, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3391, 8, 137, 10, 137, 12, 137, 3394, 9, 137, 1, 138, 1, 138, 3, 138, 3398, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3409, 8, 138, 10, 138, 12, 138, 3412, 9, 138, 1, 138, 1, 138, 3, 138, 3416, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3429, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3436, 8, 138, 10, 138, 12, 138, 3439, 9, 138, 3, 138, 3441, 8, 138, 1, 138, 3, 138, 3444, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3451, 8, 138, 1, 138, 3, 138, 3454, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3466, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3472, 8, 138, 3, 138, 3474, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3480, 8, 139, 10, 139, 12, 139, 3483, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3490, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3498, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3510, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3515, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3526, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3537, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3545, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3551, 8, 145, 10, 145, 12, 145, 3554, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3560, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3567, 8, 146, 3, 146, 3569, 8, 146, 1, 146, 3, 146, 3572, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3577, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3582, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3599, 8, 148, 10, 148, 12, 148, 3602, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3608, 8, 148, 10, 148, 12, 148, 3611, 9, 148, 3, 148, 3613, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 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, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3640, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3649, 8, 151, 1, 151, 3, 151, 3652, 8, 151, 1, 151, 1, 151, 3, 151, 3656, 8, 151, 1, 151, 1, 151, 3, 151, 3660, 8, 151, 1, 151, 1, 151, 3, 151, 3664, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3669, 8, 151, 10, 151, 12, 151, 3672, 9, 151, 1, 151, 3, 151, 3675, 8, 151, 1, 151, 1, 151, 3, 151, 3679, 8, 151, 1, 151, 1, 151, 3, 151, 3683, 8, 151, 1, 151, 1, 151, 3, 151, 3687, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3692, 8, 151, 1, 151, 1, 151, 3, 151, 3696, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3701, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3707, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3712, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3717, 8, 151, 10, 151, 12, 151, 3720, 9, 151, 1, 151, 3, 151, 3723, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3729, 8, 151, 1, 151, 1, 151, 3, 151, 3733, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3738, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3746, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3752, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3757, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3764, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3769, 8, 151, 1, 151, 1, 151, 3, 151, 3773, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3778, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3784, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3791, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3796, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3803, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3808, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3815, 8, 151, 1, 151, 1, 151, 3, 151, 3819, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3825, 8, 151, 10, 151, 12, 151, 3828, 9, 151, 1, 151, 3, 151, 3831, 8, 151, 3, 151, 3833, 8, 151, 1, 152, 3, 152, 3836, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3841, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3851, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3866, 8, 153, 1, 153, 3, 153, 3869, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3877, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3882, 8, 154, 10, 154, 12, 154, 3885, 9, 154, 1, 155, 1, 155, 3, 155, 3889, 8, 155, 1, 156, 1, 156, 4, 156, 3893, 8, 156, 11, 156, 12, 156, 3894, 1, 157, 1, 157, 3, 157, 3899, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3904, 8, 157, 10, 157, 12, 157, 3907, 9, 157, 1, 157, 1, 157, 3, 157, 3911, 8, 157, 1, 157, 3, 157, 3914, 8, 157, 1, 158, 3, 158, 3917, 8, 158, 1, 158, 1, 158, 3, 158, 3921, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3930, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3948, 8, 159, 1, 159, 3, 159, 3951, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3983, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3988, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3994, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4014, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4019, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4025, 8, 162, 1, 162, 3, 162, 4028, 8, 162, 1, 162, 1, 162, 3, 162, 4032, 8, 162, 1, 162, 1, 162, 3, 162, 4036, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4042, 8, 162, 1, 162, 3, 162, 4045, 8, 162, 1, 162, 1, 162, 3, 162, 4049, 8, 162, 1, 162, 1, 162, 3, 162, 4053, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4058, 8, 162, 1, 162, 3, 162, 4061, 8, 162, 1, 162, 3, 162, 4064, 8, 162, 1, 162, 3, 162, 4067, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4080, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4086, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4094, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4099, 8, 166, 10, 166, 12, 166, 4102, 9, 166, 1, 166, 1, 166, 3, 166, 4106, 8, 166, 1, 166, 3, 166, 4109, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4114, 8, 166, 10, 166, 12, 166, 4117, 9, 166, 3, 166, 4119, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4127, 8, 168, 1, 168, 3, 168, 4130, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4135, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4142, 8, 169, 1, 169, 3, 169, 4145, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4163, 8, 169, 10, 169, 12, 169, 4166, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4177, 8, 169, 1, 170, 3, 170, 4180, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4186, 8, 170, 1, 170, 5, 170, 4189, 8, 170, 10, 170, 12, 170, 4192, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4198, 8, 171, 10, 171, 12, 171, 4201, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4208, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4213, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4219, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4224, 8, 172, 10, 172, 12, 172, 4227, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4234, 8, 172, 1, 172, 3, 172, 4237, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4248, 8, 173, 10, 173, 12, 173, 4251, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4264, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4270, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4278, 8, 174, 3, 174, 4280, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4286, 8, 176, 1, 176, 1, 176, 3, 176, 4290, 8, 176, 1, 176, 3, 176, 4293, 8, 176, 1, 176, 3, 176, 4296, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4301, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4306, 8, 176, 1, 176, 1, 176, 3, 176, 4310, 8, 176, 1, 176, 3, 176, 4313, 8, 176, 1, 176, 3, 176, 4316, 8, 176, 1, 176, 3, 176, 4319, 8, 176, 1, 176, 3, 176, 4322, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4328, 8, 177, 10, 177, 12, 177, 4331, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4341, 8, 178, 1, 178, 3, 178, 4344, 8, 178, 1, 178, 3, 178, 4347, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4352, 8, 178, 1, 178, 3, 178, 4355, 8, 178, 1, 178, 1, 178, 3, 178, 4359, 8, 178, 1, 179, 1, 179, 3, 179, 4363, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4369, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4375, 8, 179, 10, 179, 12, 179, 4378, 9, 179, 3, 179, 4380, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4391, 8, 179, 10, 179, 12, 179, 4394, 9, 179, 1, 179, 1, 179, 3, 179, 4398, 8, 179, 3, 179, 4400, 8, 179, 1, 179, 4, 179, 4403, 8, 179, 11, 179, 12, 179, 4404, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4412, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4419, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4426, 8, 182, 10, 182, 12, 182, 4429, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4434, 8, 183, 10, 183, 12, 183, 4437, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4444, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4449, 8, 185, 10, 185, 12, 185, 4452, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4459, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4464, 8, 187, 10, 187, 12, 187, 4467, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4474, 8, 188, 1, 189, 1, 189, 3, 189, 4478, 8, 189, 1, 189, 1, 189, 3, 189, 4482, 8, 189, 3, 189, 4484, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4490, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4495, 8, 190, 1, 191, 1, 191, 3, 191, 4499, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4506, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4511, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4516, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4521, 8, 193, 3, 193, 4523, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4533, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4543, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4559, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4575, 8, 196, 10, 196, 12, 196, 4578, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4589, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4596, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4611, 8, 199, 1, 199, 4, 199, 4614, 8, 199, 11, 199, 12, 199, 4615, 1, 199, 3, 199, 4619, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4624, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4629, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4634, 8, 200, 1, 200, 3, 200, 4637, 8, 200, 1, 200, 3, 200, 4640, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4645, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4650, 8, 201, 10, 201, 12, 201, 4653, 9, 201, 1, 201, 3, 201, 4656, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4661, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4666, 8, 202, 10, 202, 12, 202, 4669, 9, 202, 1, 202, 3, 202, 4672, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4678, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4687, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4694, 8, 204, 10, 204, 12, 204, 4697, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4708, 8, 206, 11, 206, 12, 206, 4709, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4723, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4729, 8, 207, 1, 207, 1, 207, 3, 207, 4733, 8, 207, 3, 207, 4735, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4742, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4755, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4762, 8, 209, 3, 209, 4764, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4778, 8, 211, 10, 211, 12, 211, 4781, 9, 211, 1, 211, 3, 211, 4784, 8, 211, 1, 211, 1, 211, 3, 211, 4788, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4793, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4798, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4803, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4808, 8, 211, 1, 211, 3, 211, 4811, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4823, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4876, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4885, 8, 213, 1, 213, 1, 213, 3, 213, 4889, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4898, 8, 213, 1, 213, 1, 213, 3, 213, 4902, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4911, 8, 213, 1, 213, 1, 213, 3, 213, 4915, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4920, 8, 213, 1, 213, 3, 213, 4923, 8, 213, 1, 213, 1, 213, 3, 213, 4927, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4932, 8, 213, 3, 213, 4934, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4943, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4948, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4959, 8, 213, 1, 213, 1, 213, 3, 213, 4963, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4977, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4985, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5023, 8, 213, 3, 213, 5025, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5044, 8, 214, 1, 214, 3, 214, 5047, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5074, 8, 215, 1, 215, 1, 215, 3, 215, 5078, 8, 215, 1, 215, 1, 215, 3, 215, 5082, 8, 215, 1, 215, 1, 215, 3, 215, 5086, 8, 215, 1, 215, 1, 215, 3, 215, 5090, 8, 215, 1, 215, 3, 215, 5093, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5108, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5115, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5127, 8, 217, 10, 217, 12, 217, 5130, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5142, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5167, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5186, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5201, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5217, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5224, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5235, 8, 221, 1, 221, 3, 221, 5238, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5255, 8, 222, 10, 222, 12, 222, 5258, 9, 222, 3, 222, 5260, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5271, 8, 223, 10, 223, 12, 223, 5274, 9, 223, 1, 223, 3, 223, 5277, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5297, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5307, 8, 224, 10, 224, 12, 224, 5310, 9, 224, 1, 224, 3, 224, 5313, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5335, 8, 224, 1, 225, 1, 225, 3, 225, 5339, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5349, 8, 225, 1, 225, 1, 225, 3, 225, 5353, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5359, 8, 225, 1, 225, 1, 225, 3, 225, 5363, 8, 225, 5, 225, 5365, 8, 225, 10, 225, 12, 225, 5368, 9, 225, 1, 225, 3, 225, 5371, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5378, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5383, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5394, 8, 230, 1, 231, 1, 231, 3, 231, 5398, 8, 231, 1, 231, 3, 231, 5401, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5406, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5412, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5423, 8, 231, 1, 231, 1, 231, 3, 231, 5427, 8, 231, 1, 231, 3, 231, 5430, 8, 231, 1, 231, 1, 231, 3, 231, 5434, 8, 231, 1, 231, 1, 231, 3, 231, 5438, 8, 231, 1, 231, 3, 231, 5441, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5451, 8, 233, 1, 233, 3, 233, 5454, 8, 233, 1, 234, 1, 234, 3, 234, 5458, 8, 234, 1, 234, 5, 234, 5461, 8, 234, 10, 234, 12, 234, 5464, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5469, 8, 235, 1, 235, 3, 235, 5472, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5477, 8, 235, 1, 235, 3, 235, 5480, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5487, 8, 235, 3, 235, 5489, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5495, 8, 235, 1, 235, 1, 235, 3, 235, 5499, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5508, 8, 237, 1, 237, 4, 237, 5511, 8, 237, 11, 237, 12, 237, 5512, 3, 237, 5515, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5525, 8, 238, 1, 238, 3, 238, 5528, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5533, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5541, 8, 239, 1, 239, 3, 239, 5544, 8, 239, 1, 239, 4, 239, 5547, 8, 239, 11, 239, 12, 239, 5548, 3, 239, 5551, 8, 239, 3, 239, 5553, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5559, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5576, 8, 243, 1, 243, 1, 243, 5, 243, 5580, 8, 243, 10, 243, 12, 243, 5583, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5595, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5601, 8, 244, 1, 244, 1, 244, 3, 244, 5605, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5610, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5640, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5655, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5660, 8, 246, 1, 247, 1, 247, 3, 247, 5664, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5677, 8, 248, 1, 248, 1, 248, 3, 248, 5681, 8, 248, 3, 248, 5683, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5690, 8, 248, 10, 248, 12, 248, 5693, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5698, 8, 248, 3, 248, 5700, 8, 248, 1, 249, 1, 249, 3, 249, 5704, 8, 249, 1, 249, 3, 249, 5707, 8, 249, 1, 249, 3, 249, 5710, 8, 249, 1, 249, 3, 249, 5713, 8, 249, 1, 249, 3, 249, 5716, 8, 249, 3, 249, 5718, 8, 249, 1, 249, 3, 249, 5721, 8, 249, 1, 250, 1, 250, 3, 250, 5725, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5731, 8, 250, 10, 250, 12, 250, 5734, 9, 250, 1, 250, 1, 250, 3, 250, 5738, 8, 250, 1, 250, 3, 250, 5741, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5747, 8, 252, 1, 252, 1, 252, 3, 252, 5751, 8, 252, 1, 253, 1, 253, 3, 253, 5755, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5760, 8, 253, 3, 253, 5762, 8, 253, 1, 254, 1, 254, 3, 254, 5766, 8, 254, 1, 255, 1, 255, 3, 255, 5770, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5775, 8, 256, 10, 256, 12, 256, 5778, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5783, 8, 257, 1, 257, 1, 257, 3, 257, 5787, 8, 257, 3, 257, 5789, 8, 257, 3, 257, 5791, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5804, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5810, 8, 259, 10, 259, 12, 259, 5813, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5820, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5829, 8, 261, 10, 261, 12, 261, 5832, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5841, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5846, 8, 263, 1, 263, 1, 263, 3, 263, 5850, 8, 263, 1, 263, 1, 263, 3, 263, 5854, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5861, 8, 263, 1, 263, 3, 263, 5864, 8, 263, 3, 263, 5866, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5874, 8, 265, 1, 265, 1, 265, 3, 265, 5878, 8, 265, 1, 266, 3, 266, 5881, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5888, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5895, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5900, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5907, 8, 266, 1, 266, 3, 266, 5910, 8, 266, 3, 266, 5912, 8, 266, 1, 266, 3, 266, 5915, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5921, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5926, 8, 267, 1, 267, 1, 267, 3, 267, 5930, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5935, 8, 268, 10, 268, 12, 268, 5938, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5947, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5954, 8, 271, 1, 271, 3, 271, 5957, 8, 271, 1, 271, 3, 271, 5960, 8, 271, 1, 272, 1, 272, 3, 272, 5964, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5975, 8, 272, 1, 272, 3, 272, 5978, 8, 272, 1, 272, 3, 272, 5981, 8, 272, 1, 272, 3, 272, 5984, 8, 272, 1, 273, 3, 273, 5987, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5994, 8, 273, 1, 273, 3, 273, 5997, 8, 273, 1, 273, 3, 273, 6000, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 6005, 8, 274, 10, 274, 12, 274, 6008, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6019, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6026, 8, 275, 3, 275, 6028, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6033, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6038, 8, 276, 10, 276, 12, 276, 6041, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6046, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6053, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6058, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6063, 8, 279, 1, 279, 1, 279, 3, 279, 6067, 8, 279, 1, 279, 1, 279, 3, 279, 6071, 8, 279, 1, 279, 1, 279, 3, 279, 6075, 8, 279, 3, 279, 6077, 8, 279, 1, 280, 1, 280, 3, 280, 6081, 8, 280, 1, 281, 1, 281, 3, 281, 6085, 8, 281, 1, 281, 3, 281, 6088, 8, 281, 1, 281, 3, 281, 6091, 8, 281, 3, 281, 6093, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6103, 8, 281, 3, 281, 6105, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6110, 8, 281, 5, 281, 6112, 8, 281, 10, 281, 12, 281, 6115, 9, 281, 1, 282, 1, 282, 3, 282, 6119, 8, 282, 1, 283, 1, 283, 3, 283, 6123, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6128, 8, 283, 10, 283, 12, 283, 6131, 9, 283, 1, 284, 1, 284, 3, 284, 6135, 8, 284, 1, 284, 1, 284, 3, 284, 6139, 8, 284, 1, 284, 3, 284, 6142, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6148, 8, 284, 1, 284, 3, 284, 6151, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6170, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6177, 8, 287, 1, 287, 1, 287, 3, 287, 6181, 8, 287, 1, 288, 3, 288, 6184, 8, 288, 1, 288, 1, 288, 3, 288, 6188, 8, 288, 1, 288, 1, 288, 3, 288, 6192, 8, 288, 1, 288, 3, 288, 6195, 8, 288, 1, 288, 3, 288, 6198, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6203, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6210, 8, 290, 10, 290, 12, 290, 6213, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6219, 8, 291, 1, 291, 1, 291, 3, 291, 6223, 8, 291, 1, 292, 1, 292, 3, 292, 6227, 8, 292, 1, 292, 1, 292, 3, 292, 6231, 8, 292, 1, 292, 3, 292, 6234, 8, 292, 3, 292, 6236, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6241, 8, 293, 1, 293, 1, 293, 3, 293, 6245, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6250, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6256, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6263, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6268, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6273, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6280, 8, 298, 10, 298, 12, 298, 6283, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6289, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6295, 8, 299, 10, 299, 12, 299, 6298, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6308, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6313, 8, 300, 1, 300, 1, 300, 3, 300, 6317, 8, 300, 1, 300, 3, 300, 6320, 8, 300, 1, 300, 1, 300, 3, 300, 6324, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6329, 8, 300, 4, 300, 6331, 8, 300, 11, 300, 12, 300, 6332, 1, 300, 1, 300, 1, 300, 3, 300, 6338, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6344, 8, 301, 10, 301, 12, 301, 6347, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6355, 8, 303, 10, 303, 12, 303, 6358, 9, 303, 1, 304, 1, 304, 3, 304, 6362, 8, 304, 1, 304, 1, 304, 3, 304, 6366, 8, 304, 1, 304, 3, 304, 6369, 8, 304, 1, 304, 3, 304, 6372, 8, 304, 3, 304, 6374, 8, 304, 1, 304, 3, 304, 6377, 8, 304, 1, 304, 3, 304, 6380, 8, 304, 1, 304, 3, 304, 6383, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6393, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6398, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6404, 8, 304, 1, 304, 1, 304, 3, 304, 6408, 8, 304, 3, 304, 6410, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6417, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6422, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6428, 8, 304, 10, 304, 12, 304, 6431, 9, 304, 1, 305, 1, 305, 3, 305, 6435, 8, 305, 1, 305, 1, 305, 3, 305, 6439, 8, 305, 1, 305, 1, 305, 3, 305, 6443, 8, 305, 3, 305, 6445, 8, 305, 1, 306, 3, 306, 6448, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6455, 8, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6460, 8, 307, 1, 307, 3, 307, 6463, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6469, 8, 307, 1, 308, 1, 308, 3, 308, 6473, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6479, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6488, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6494, 8, 310, 3, 310, 6496, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6501, 8, 311, 1, 311, 3, 311, 6504, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6513, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6520, 8, 311, 3, 311, 6522, 8, 311, 1, 312, 1, 312, 1, 312, 5, 312, 6527, 8, 312, 10, 312, 12, 312, 6530, 9, 312, 1, 313, 1, 313, 3, 313, 6534, 8, 313, 1, 313, 3, 313, 6537, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 6547, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6556, 8, 315, 10, 315, 12, 315, 6559, 9, 315, 1, 315, 1, 315, 3, 315, 6563, 8, 315, 1, 315, 1, 315, 3, 315, 6567, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 6575, 8, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6585, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 6590, 8, 319, 10, 319, 12, 319, 6593, 9, 319, 1, 320, 1, 320, 1, 320, 3, 320, 6598, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6607, 8, 321, 10, 321, 12, 321, 6610, 9, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6615, 8, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6623, 8, 321, 10, 321, 12, 321, 6626, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6634, 8, 322, 1, 322, 1, 322, 3, 322, 6638, 8, 322, 1, 322, 4, 322, 6641, 8, 322, 11, 322, 12, 322, 6642, 3, 322, 6645, 8, 322, 1, 322, 1, 322, 3, 322, 6649, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6657, 8, 323, 1, 324, 3, 324, 6660, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6665, 8, 324, 1, 324, 5, 324, 6668, 8, 324, 10, 324, 12, 324, 6671, 9, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6677, 8, 324, 3, 324, 6679, 8, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6685, 8, 324, 1, 325, 1, 325, 3, 325, 6689, 8, 325, 1, 325, 3, 325, 6692, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6697, 8, 325, 1, 325, 3, 325, 6700, 8, 325, 3, 325, 6702, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6708, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6717, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6723, 8, 327, 1, 327, 3, 327, 6726, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 6734, 8, 329, 1, 329, 3, 329, 6737, 8, 329, 1, 330, 1, 330, 3, 330, 6741, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6747, 8, 330, 3, 330, 6749, 8, 330, 1, 330, 3, 330, 6752, 8, 330, 1, 331, 1, 331, 3, 331, 6756, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6761, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6768, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6775, 8, 332, 3, 332, 6777, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6783, 8, 332, 3, 332, 6785, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6790, 8, 332, 3, 332, 6792, 8, 332, 1, 333, 1, 333, 3, 333, 6796, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 3, 336, 6805, 8, 336, 1, 336, 1, 336, 3, 336, 6809, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6817, 8, 336, 10, 336, 12, 336, 6820, 9, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6833, 8, 337, 1, 337, 3, 337, 6836, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6844, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6851, 8, 337, 10, 337, 12, 337, 6854, 9, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6859, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6864, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6872, 8, 337, 3, 337, 6874, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6879, 8, 337, 1, 337, 1, 337, 3, 337, 6883, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6888, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6893, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6899, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 6915, 8, 338, 10, 338, 12, 338, 6918, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6926, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6941, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6946, 8, 339, 1, 339, 3, 339, 6949, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6955, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6960, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6973, 8, 339, 1, 339, 4, 339, 6976, 8, 339, 11, 339, 12, 339, 6977, 1, 339, 1, 339, 3, 339, 6982, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6989, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7008, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7020, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7025, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7033, 8, 339, 5, 339, 7035, 8, 339, 10, 339, 12, 339, 7038, 9, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7046, 8, 340, 1, 340, 3, 340, 7049, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7054, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7059, 8, 340, 1, 340, 3, 340, 7062, 8, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7073, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7081, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7086, 8, 341, 3, 341, 7088, 8, 341, 1, 341, 3, 341, 7091, 8, 341, 1, 342, 1, 342, 3, 342, 7095, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7106, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7127, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7135, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7148, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7158, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7164, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7170, 8, 343, 1, 343, 3, 343, 7173, 8, 343, 1, 343, 3, 343, 7176, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7202, 8, 343, 3, 343, 7204, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7225, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7235, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7248, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7253, 8, 343, 1, 343, 1, 343, 3, 343, 7257, 8, 343, 3, 343, 7259, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7271, 8, 343, 1, 344, 1, 344, 1, 344, 5, 344, 7276, 8, 344, 10, 344, 12, 344, 7279, 9, 344, 1, 345, 1, 345, 1, 345, 3, 345, 7284, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 3, 347, 7290, 8, 347, 1, 347, 1, 347, 3, 347, 7294, 8, 347, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 5, 349, 7303, 8, 349, 10, 349, 12, 349, 7306, 9, 349, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 3, 352, 7318, 8, 352, 1, 353, 1, 353, 3, 353, 7322, 8, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7327, 8, 353, 1, 353, 3, 353, 7330, 8, 353, 1, 353, 3, 353, 7333, 8, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7342, 8, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7353, 8, 354, 3, 354, 7355, 8, 354, 1, 355, 1, 355, 3, 355, 7359, 8, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7364, 8, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7373, 8, 356, 1, 357, 1, 357, 1, 357, 3, 357, 7378, 8, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 359, 1, 359, 3, 359, 7386, 8, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7396, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7404, 8, 362, 1, 363, 1, 363, 3, 363, 7408, 8, 363, 1, 363, 3, 363, 7411, 8, 363, 1, 364, 1, 364, 1, 364, 5, 364, 7416, 8, 364, 10, 364, 12, 364, 7419, 9, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7430, 8, 367, 1, 368, 1, 368, 3, 368, 7434, 8, 368, 1, 369, 1, 369, 1, 369, 5, 369, 7439, 8, 369, 10, 369, 12, 369, 7442, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7449, 8, 370, 3, 370, 7451, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 5, 371, 7458, 8, 371, 10, 371, 12, 371, 7461, 9, 371, 3, 371, 7463, 8, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7475, 8, 372, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7484, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7491, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7500, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 3, 376, 7510, 8, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7515, 8, 376, 1, 376, 1, 376, 3, 376, 7519, 8, 376, 3, 376, 7521, 8, 376, 1, 376, 3, 376, 7524, 8, 376, 1, 377, 4, 377, 7527, 8, 377, 11, 377, 12, 377, 7528, 1, 378, 5, 378, 7532, 8, 378, 10, 378, 12, 378, 7535, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7540, 8, 379, 10, 379, 12, 379, 7543, 9, 379, 1, 380, 1, 380, 1, 380, 3, 380, 7548, 8, 380, 1, 380, 3, 380, 7551, 8, 380, 1, 380, 1, 380, 3, 380, 7555, 8, 380, 3, 380, 7557, 8, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7562, 8, 381, 10, 381, 12, 381, 7565, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7572, 8, 382, 10, 382, 12, 382, 7575, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7580, 8, 383, 10, 383, 12, 383, 7583, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7588, 8, 384, 10, 384, 12, 384, 7591, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7596, 8, 385, 10, 385, 12, 385, 7599, 9, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7615, 8, 392, 1, 393, 1, 393, 1, 393, 5, 393, 7620, 8, 393, 10, 393, 12, 393, 7623, 9, 393, 1, 394, 1, 394, 1, 394, 5, 394, 7628, 8, 394, 10, 394, 12, 394, 7631, 9, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7647, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7653, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7659, 8, 402, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7670, 8, 405, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7676, 8, 406, 1, 407, 1, 407, 1, 407, 3, 407, 7681, 8, 407, 1, 408, 1, 408, 1, 408, 1, 408, 5, 408, 7687, 8, 408, 10, 408, 12, 408, 7690, 9, 408, 1, 408, 1, 408, 3, 408, 7694, 8, 408, 1, 409, 3, 409, 7697, 8, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 3, 410, 7706, 8, 410, 1, 411, 1, 411, 1, 411, 5, 411, 7711, 8, 411, 10, 411, 12, 411, 7714, 9, 411, 1, 412, 1, 412, 3, 412, 7718, 8, 412, 1, 413, 1, 413, 3, 413, 7722, 8, 413, 1, 414, 1, 414, 1, 414, 3, 414, 7727, 8, 414, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 7733, 8, 415, 1, 416, 1, 416, 1, 416, 3, 416, 7738, 8, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 7746, 8, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7801, 8, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 421, 3, 421, 7808, 8, 421, 1, 421, 1, 421, 1, 421, 1, 421, 4, 421, 7814, 8, 421, 11, 421, 12, 421, 7815, 3, 421, 7818, 8, 421, 3, 421, 7820, 8, 421, 1, 421, 1, 421, 5, 421, 7824, 8, 421, 10, 421, 12, 421, 7827, 9, 421, 1, 421, 3, 421, 7830, 8, 421, 1, 421, 1, 421, 3, 421, 7834, 8, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 3, 423, 7845, 8, 423, 1, 423, 3, 423, 7848, 8, 423, 1, 423, 1, 423, 3, 423, 7852, 8, 423, 1, 423, 1, 423, 3, 423, 7856, 8, 423, 1, 423, 1, 423, 3, 423, 7860, 8, 423, 1, 423, 3, 423, 7863, 8, 423, 1, 423, 3, 423, 7866, 8, 423, 1, 423, 3, 423, 7869, 8, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 5, 423, 7876, 8, 423, 10, 423, 12, 423, 7879, 9, 423, 1, 423, 1, 423, 3, 423, 7883, 8, 423, 1, 423, 1, 423, 3, 423, 7887, 8, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 3, 426, 7920, 8, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, 7930, 8, 428, 1, 428, 1, 428, 3, 428, 7934, 8, 428, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, 7940, 8, 428, 1, 428, 1, 428, 1, 428, 3, 428, 7945, 8, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 3, 430, 7954, 8, 430, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 7960, 8, 430, 10, 430, 12, 430, 7963, 9, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 3, 432, 7973, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 7979, 8, 432, 10, 432, 12, 432, 7982, 9, 432, 1, 433, 1, 433, 1, 433, 1, 433, 5, 433, 7988, 8, 433, 10, 433, 12, 433, 7991, 9, 433, 1, 433, 1, 433, 1, 433, 1, 433, 5, 433, 7997, 8, 433, 10, 433, 12, 433, 8000, 9, 433, 5, 433, 8002, 8, 433, 10, 433, 12, 433, 8005, 9, 433, 1, 433, 3, 433, 8008, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 5, 434, 8016, 8, 434, 10, 434, 12, 434, 8019, 9, 434, 1, 435, 1, 435, 3, 435, 8023, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 5, 435, 8029, 8, 435, 10, 435, 12, 435, 8032, 9, 435, 4, 435, 8034, 8, 435, 11, 435, 12, 435, 8035, 1, 435, 3, 435, 8039, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 3, 436, 8046, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8052, 8, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8060, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8068, 8, 437, 1, 437, 3, 437, 8071, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8078, 8, 437, 3, 437, 8080, 8, 437, 1, 438, 3, 438, 8083, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8089, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 3, 439, 8098, 8, 439, 1, 439, 1, 439, 3, 439, 8102, 8, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8116, 8, 440, 1, 440, 3, 440, 8119, 8, 440, 3, 440, 8121, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8127, 8, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 4, 441, 8135, 8, 441, 11, 441, 12, 441, 8136, 3, 441, 8139, 8, 441, 3, 441, 8141, 8, 441, 1, 441, 1, 441, 1, 441, 1, 441, 5, 441, 8147, 8, 441, 10, 441, 12, 441, 8150, 9, 441, 3, 441, 8152, 8, 441, 1, 441, 3, 441, 8155, 8, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 8165, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 5, 444, 8171, 8, 444, 10, 444, 12, 444, 8174, 9, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8179, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 3, 445, 8185, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 3, 446, 8192, 8, 446, 1, 446, 1, 446, 3, 446, 8196, 8, 446, 1, 446, 1, 446, 3, 446, 8200, 8, 446, 1, 446, 3, 446, 8203, 8, 446, 1, 446, 3, 446, 8206, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8212, 8, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 3, 448, 8219, 8, 448, 1, 448, 3, 448, 8222, 8, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 8230, 8, 448, 3, 448, 8232, 8, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 5, 448, 8239, 8, 448, 10, 448, 12, 448, 8242, 9, 448, 1, 448, 1, 448, 3, 448, 8246, 8, 448, 3, 448, 8248, 8, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 3, 449, 8255, 8, 449, 1, 449, 1, 449, 1, 450, 1, 450, 3, 450, 8261, 8, 450, 1, 450, 3, 450, 8264, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8276, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8283, 8, 451, 3, 451, 8285, 8, 451, 1, 452, 1, 452, 3, 452, 8289, 8, 452, 1, 452, 1, 452, 1, 452, 1, 453, 3, 453, 8295, 8, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8300, 8, 453, 1, 453, 1, 453, 3, 453, 8304, 8, 453, 1, 453, 3, 453, 8307, 8, 453, 1, 453, 3, 453, 8310, 8, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 4, 453, 8317, 8, 453, 11, 453, 12, 453, 8318, 1, 453, 3, 453, 8322, 8, 453, 1, 454, 3, 454, 8325, 8, 454, 1, 454, 1, 454, 3, 454, 8329, 8, 454, 1, 454, 1, 454, 3, 454, 8333, 8, 454, 3, 454, 8335, 8, 454, 1, 454, 3, 454, 8338, 8, 454, 1, 454, 3, 454, 8341, 8, 454, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8347, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8354, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8361, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8367, 8, 455, 3, 455, 8369, 8, 455, 1, 456, 1, 456, 3, 456, 8373, 8, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8378, 8, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 5, 457, 8394, 8, 457, 10, 457, 12, 457, 8397, 9, 457, 1, 457, 1, 457, 4, 457, 8401, 8, 457, 11, 457, 12, 457, 8402, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 5, 458, 8410, 8, 458, 10, 458, 12, 458, 8413, 9, 458, 1, 458, 1, 458, 1, 458, 1, 458, 3, 458, 8419, 8, 458, 1, 459, 1, 459, 3, 459, 8423, 8, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 3, 462, 8435, 8, 462, 1, 462, 3, 462, 8438, 8, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 3, 463, 8451, 8, 463, 1, 463, 3, 463, 8454, 8, 463, 1, 464, 1, 464, 3, 464, 8458, 8, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 5, 465, 8465, 8, 465, 10, 465, 12, 465, 8468, 9, 465, 1, 465, 1, 465, 5, 465, 8472, 8, 465, 10, 465, 12, 465, 8475, 9, 465, 4, 465, 8477, 8, 465, 11, 465, 12, 465, 8478, 1, 466, 1, 466, 1, 466, 3, 466, 8484, 8, 466, 1, 467, 1, 467, 3, 467, 8488, 8, 467, 1, 468, 3, 468, 8491, 8, 468, 1, 468, 3, 468, 8494, 8, 468, 1, 468, 3, 468, 8497, 8, 468, 1, 468, 3, 468, 8500, 8, 468, 1, 468, 3, 468, 8503, 8, 468, 1, 468, 3, 468, 8506, 8, 468, 1, 468, 3, 468, 8509, 8, 468, 1, 468, 0, 3, 672, 676, 678, 469, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 0, 119, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 158, 158, 277, 277, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 1, 0, 549, 551, 2, 0, 213, 213, 254, 254, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 574, 574, 576, 576, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9947, 0, 941, 1, 0, 0, 0, 2, 946, 1, 0, 0, 0, 4, 1070, 1, 0, 0, 0, 6, 1072, 1, 0, 0, 0, 8, 1075, 1, 0, 0, 0, 10, 1125, 1, 0, 0, 0, 12, 1135, 1, 0, 0, 0, 14, 1137, 1, 0, 0, 0, 16, 1149, 1, 0, 0, 0, 18, 1161, 1, 0, 0, 0, 20, 1172, 1, 0, 0, 0, 22, 1206, 1, 0, 0, 0, 24, 1250, 1, 0, 0, 0, 26, 1252, 1, 0, 0, 0, 28, 1264, 1, 0, 0, 0, 30, 1271, 1, 0, 0, 0, 32, 1290, 1, 0, 0, 0, 34, 1298, 1, 0, 0, 0, 36, 1300, 1, 0, 0, 0, 38, 1314, 1, 0, 0, 0, 40, 1318, 1, 0, 0, 0, 42, 1355, 1, 0, 0, 0, 44, 1357, 1, 0, 0, 0, 46, 1365, 1, 0, 0, 0, 48, 1375, 1, 0, 0, 0, 50, 1382, 1, 0, 0, 0, 52, 1390, 1, 0, 0, 0, 54, 1396, 1, 0, 0, 0, 56, 1412, 1, 0, 0, 0, 58, 1416, 1, 0, 0, 0, 60, 1418, 1, 0, 0, 0, 62, 1430, 1, 0, 0, 0, 64, 1435, 1, 0, 0, 0, 66, 1440, 1, 0, 0, 0, 68, 1442, 1, 0, 0, 0, 70, 1454, 1, 0, 0, 0, 72, 1462, 1, 0, 0, 0, 74, 1464, 1, 0, 0, 0, 76, 1584, 1, 0, 0, 0, 78, 1586, 1, 0, 0, 0, 80, 1600, 1, 0, 0, 0, 82, 1602, 1, 0, 0, 0, 84, 1839, 1, 0, 0, 0, 86, 1846, 1, 0, 0, 0, 88, 1848, 1, 0, 0, 0, 90, 1850, 1, 0, 0, 0, 92, 1853, 1, 0, 0, 0, 94, 1864, 1, 0, 0, 0, 96, 1867, 1, 0, 0, 0, 98, 1897, 1, 0, 0, 0, 100, 1899, 1, 0, 0, 0, 102, 1940, 1, 0, 0, 0, 104, 1942, 1, 0, 0, 0, 106, 1996, 1, 0, 0, 0, 108, 2042, 1, 0, 0, 0, 110, 2063, 1, 0, 0, 0, 112, 2065, 1, 0, 0, 0, 114, 2082, 1, 0, 0, 0, 116, 2163, 1, 0, 0, 0, 118, 2165, 1, 0, 0, 0, 120, 2176, 1, 0, 0, 0, 122, 2199, 1, 0, 0, 0, 124, 2217, 1, 0, 0, 0, 126, 2219, 1, 0, 0, 0, 128, 2254, 1, 0, 0, 0, 130, 2347, 1, 0, 0, 0, 132, 2352, 1, 0, 0, 0, 134, 2354, 1, 0, 0, 0, 136, 2452, 1, 0, 0, 0, 138, 2454, 1, 0, 0, 0, 140, 2458, 1, 0, 0, 0, 142, 2469, 1, 0, 0, 0, 144, 2477, 1, 0, 0, 0, 146, 2480, 1, 0, 0, 0, 148, 2483, 1, 0, 0, 0, 150, 2501, 1, 0, 0, 0, 152, 2503, 1, 0, 0, 0, 154, 2507, 1, 0, 0, 0, 156, 2520, 1, 0, 0, 0, 158, 2522, 1, 0, 0, 0, 160, 2527, 1, 0, 0, 0, 162, 2547, 1, 0, 0, 0, 164, 2555, 1, 0, 0, 0, 166, 2562, 1, 0, 0, 0, 168, 2564, 1, 0, 0, 0, 170, 2573, 1, 0, 0, 0, 172, 2576, 1, 0, 0, 0, 174, 2580, 1, 0, 0, 0, 176, 2584, 1, 0, 0, 0, 178, 2609, 1, 0, 0, 0, 180, 2619, 1, 0, 0, 0, 182, 2633, 1, 0, 0, 0, 184, 2649, 1, 0, 0, 0, 186, 2655, 1, 0, 0, 0, 188, 2682, 1, 0, 0, 0, 190, 2692, 1, 0, 0, 0, 192, 2708, 1, 0, 0, 0, 194, 2752, 1, 0, 0, 0, 196, 2759, 1, 0, 0, 0, 198, 2761, 1, 0, 0, 0, 200, 2787, 1, 0, 0, 0, 202, 2798, 1, 0, 0, 0, 204, 2817, 1, 0, 0, 0, 206, 2828, 1, 0, 0, 0, 208, 2866, 1, 0, 0, 0, 210, 2887, 1, 0, 0, 0, 212, 2889, 1, 0, 0, 0, 214, 2909, 1, 0, 0, 0, 216, 2921, 1, 0, 0, 0, 218, 2933, 1, 0, 0, 0, 220, 2936, 1, 0, 0, 0, 222, 2939, 1, 0, 0, 0, 224, 2959, 1, 0, 0, 0, 226, 2964, 1, 0, 0, 0, 228, 3013, 1, 0, 0, 0, 230, 3015, 1, 0, 0, 0, 232, 3038, 1, 0, 0, 0, 234, 3054, 1, 0, 0, 0, 236, 3066, 1, 0, 0, 0, 238, 3093, 1, 0, 0, 0, 240, 3108, 1, 0, 0, 0, 242, 3171, 1, 0, 0, 0, 244, 3173, 1, 0, 0, 0, 246, 3178, 1, 0, 0, 0, 248, 3184, 1, 0, 0, 0, 250, 3271, 1, 0, 0, 0, 252, 3277, 1, 0, 0, 0, 254, 3279, 1, 0, 0, 0, 256, 3295, 1, 0, 0, 0, 258, 3297, 1, 0, 0, 0, 260, 3306, 1, 0, 0, 0, 262, 3310, 1, 0, 0, 0, 264, 3323, 1, 0, 0, 0, 266, 3335, 1, 0, 0, 0, 268, 3337, 1, 0, 0, 0, 270, 3359, 1, 0, 0, 0, 272, 3371, 1, 0, 0, 0, 274, 3382, 1, 0, 0, 0, 276, 3473, 1, 0, 0, 0, 278, 3475, 1, 0, 0, 0, 280, 3486, 1, 0, 0, 0, 282, 3497, 1, 0, 0, 0, 284, 3499, 1, 0, 0, 0, 286, 3525, 1, 0, 0, 0, 288, 3527, 1, 0, 0, 0, 290, 3531, 1, 0, 0, 0, 292, 3581, 1, 0, 0, 0, 294, 3583, 1, 0, 0, 0, 296, 3589, 1, 0, 0, 0, 298, 3614, 1, 0, 0, 0, 300, 3618, 1, 0, 0, 0, 302, 3832, 1, 0, 0, 0, 304, 3850, 1, 0, 0, 0, 306, 3876, 1, 0, 0, 0, 308, 3878, 1, 0, 0, 0, 310, 3886, 1, 0, 0, 0, 312, 3892, 1, 0, 0, 0, 314, 3896, 1, 0, 0, 0, 316, 3916, 1, 0, 0, 0, 318, 3922, 1, 0, 0, 0, 320, 3989, 1, 0, 0, 0, 322, 4020, 1, 0, 0, 0, 324, 4066, 1, 0, 0, 0, 326, 4068, 1, 0, 0, 0, 328, 4070, 1, 0, 0, 0, 330, 4081, 1, 0, 0, 0, 332, 4118, 1, 0, 0, 0, 334, 4120, 1, 0, 0, 0, 336, 4126, 1, 0, 0, 0, 338, 4176, 1, 0, 0, 0, 340, 4179, 1, 0, 0, 0, 342, 4193, 1, 0, 0, 0, 344, 4214, 1, 0, 0, 0, 346, 4238, 1, 0, 0, 0, 348, 4279, 1, 0, 0, 0, 350, 4281, 1, 0, 0, 0, 352, 4283, 1, 0, 0, 0, 354, 4323, 1, 0, 0, 0, 356, 4340, 1, 0, 0, 0, 358, 4360, 1, 0, 0, 0, 360, 4413, 1, 0, 0, 0, 362, 4416, 1, 0, 0, 0, 364, 4422, 1, 0, 0, 0, 366, 4430, 1, 0, 0, 0, 368, 4443, 1, 0, 0, 0, 370, 4445, 1, 0, 0, 0, 372, 4458, 1, 0, 0, 0, 374, 4460, 1, 0, 0, 0, 376, 4473, 1, 0, 0, 0, 378, 4483, 1, 0, 0, 0, 380, 4494, 1, 0, 0, 0, 382, 4505, 1, 0, 0, 0, 384, 4507, 1, 0, 0, 0, 386, 4512, 1, 0, 0, 0, 388, 4526, 1, 0, 0, 0, 390, 4558, 1, 0, 0, 0, 392, 4595, 1, 0, 0, 0, 394, 4597, 1, 0, 0, 0, 396, 4600, 1, 0, 0, 0, 398, 4603, 1, 0, 0, 0, 400, 4620, 1, 0, 0, 0, 402, 4641, 1, 0, 0, 0, 404, 4657, 1, 0, 0, 0, 406, 4673, 1, 0, 0, 0, 408, 4695, 1, 0, 0, 0, 410, 4700, 1, 0, 0, 0, 412, 4703, 1, 0, 0, 0, 414, 4711, 1, 0, 0, 0, 416, 4736, 1, 0, 0, 0, 418, 4739, 1, 0, 0, 0, 420, 4767, 1, 0, 0, 0, 422, 4772, 1, 0, 0, 0, 424, 4812, 1, 0, 0, 0, 426, 5024, 1, 0, 0, 0, 428, 5026, 1, 0, 0, 0, 430, 5114, 1, 0, 0, 0, 432, 5116, 1, 0, 0, 0, 434, 5122, 1, 0, 0, 0, 436, 5133, 1, 0, 0, 0, 438, 5143, 1, 0, 0, 0, 440, 5223, 1, 0, 0, 0, 442, 5225, 1, 0, 0, 0, 444, 5239, 1, 0, 0, 0, 446, 5261, 1, 0, 0, 0, 448, 5334, 1, 0, 0, 0, 450, 5336, 1, 0, 0, 0, 452, 5377, 1, 0, 0, 0, 454, 5379, 1, 0, 0, 0, 456, 5384, 1, 0, 0, 0, 458, 5387, 1, 0, 0, 0, 460, 5390, 1, 0, 0, 0, 462, 5440, 1, 0, 0, 0, 464, 5442, 1, 0, 0, 0, 466, 5453, 1, 0, 0, 0, 468, 5455, 1, 0, 0, 0, 470, 5465, 1, 0, 0, 0, 472, 5500, 1, 0, 0, 0, 474, 5503, 1, 0, 0, 0, 476, 5524, 1, 0, 0, 0, 478, 5534, 1, 0, 0, 0, 480, 5554, 1, 0, 0, 0, 482, 5560, 1, 0, 0, 0, 484, 5566, 1, 0, 0, 0, 486, 5571, 1, 0, 0, 0, 488, 5584, 1, 0, 0, 0, 490, 5611, 1, 0, 0, 0, 492, 5659, 1, 0, 0, 0, 494, 5661, 1, 0, 0, 0, 496, 5699, 1, 0, 0, 0, 498, 5701, 1, 0, 0, 0, 500, 5722, 1, 0, 0, 0, 502, 5742, 1, 0, 0, 0, 504, 5746, 1, 0, 0, 0, 506, 5761, 1, 0, 0, 0, 508, 5763, 1, 0, 0, 0, 510, 5767, 1, 0, 0, 0, 512, 5771, 1, 0, 0, 0, 514, 5779, 1, 0, 0, 0, 516, 5803, 1, 0, 0, 0, 518, 5805, 1, 0, 0, 0, 520, 5816, 1, 0, 0, 0, 522, 5824, 1, 0, 0, 0, 524, 5840, 1, 0, 0, 0, 526, 5865, 1, 0, 0, 0, 528, 5867, 1, 0, 0, 0, 530, 5871, 1, 0, 0, 0, 532, 5880, 1, 0, 0, 0, 534, 5920, 1, 0, 0, 0, 536, 5931, 1, 0, 0, 0, 538, 5939, 1, 0, 0, 0, 540, 5942, 1, 0, 0, 0, 542, 5946, 1, 0, 0, 0, 544, 5961, 1, 0, 0, 0, 546, 5986, 1, 0, 0, 0, 548, 6001, 1, 0, 0, 0, 550, 6027, 1, 0, 0, 0, 552, 6029, 1, 0, 0, 0, 554, 6052, 1, 0, 0, 0, 556, 6054, 1, 0, 0, 0, 558, 6062, 1, 0, 0, 0, 560, 6080, 1, 0, 0, 0, 562, 6104, 1, 0, 0, 0, 564, 6116, 1, 0, 0, 0, 566, 6120, 1, 0, 0, 0, 568, 6132, 1, 0, 0, 0, 570, 6152, 1, 0, 0, 0, 572, 6160, 1, 0, 0, 0, 574, 6174, 1, 0, 0, 0, 576, 6197, 1, 0, 0, 0, 578, 6199, 1, 0, 0, 0, 580, 6204, 1, 0, 0, 0, 582, 6214, 1, 0, 0, 0, 584, 6235, 1, 0, 0, 0, 586, 6237, 1, 0, 0, 0, 588, 6246, 1, 0, 0, 0, 590, 6257, 1, 0, 0, 0, 592, 6267, 1, 0, 0, 0, 594, 6269, 1, 0, 0, 0, 596, 6276, 1, 0, 0, 0, 598, 6307, 1, 0, 0, 0, 600, 6337, 1, 0, 0, 0, 602, 6339, 1, 0, 0, 0, 604, 6348, 1, 0, 0, 0, 606, 6351, 1, 0, 0, 0, 608, 6409, 1, 0, 0, 0, 610, 6444, 1, 0, 0, 0, 612, 6447, 1, 0, 0, 0, 614, 6468, 1, 0, 0, 0, 616, 6470, 1, 0, 0, 0, 618, 6478, 1, 0, 0, 0, 620, 6495, 1, 0, 0, 0, 622, 6521, 1, 0, 0, 0, 624, 6523, 1, 0, 0, 0, 626, 6531, 1, 0, 0, 0, 628, 6538, 1, 0, 0, 0, 630, 6562, 1, 0, 0, 0, 632, 6568, 1, 0, 0, 0, 634, 6576, 1, 0, 0, 0, 636, 6579, 1, 0, 0, 0, 638, 6586, 1, 0, 0, 0, 640, 6594, 1, 0, 0, 0, 642, 6599, 1, 0, 0, 0, 644, 6629, 1, 0, 0, 0, 646, 6656, 1, 0, 0, 0, 648, 6684, 1, 0, 0, 0, 650, 6701, 1, 0, 0, 0, 652, 6707, 1, 0, 0, 0, 654, 6725, 1, 0, 0, 0, 656, 6727, 1, 0, 0, 0, 658, 6731, 1, 0, 0, 0, 660, 6748, 1, 0, 0, 0, 662, 6753, 1, 0, 0, 0, 664, 6791, 1, 0, 0, 0, 666, 6793, 1, 0, 0, 0, 668, 6797, 1, 0, 0, 0, 670, 6799, 1, 0, 0, 0, 672, 6808, 1, 0, 0, 0, 674, 6892, 1, 0, 0, 0, 676, 6898, 1, 0, 0, 0, 678, 7007, 1, 0, 0, 0, 680, 7039, 1, 0, 0, 0, 682, 7090, 1, 0, 0, 0, 684, 7094, 1, 0, 0, 0, 686, 7270, 1, 0, 0, 0, 688, 7272, 1, 0, 0, 0, 690, 7280, 1, 0, 0, 0, 692, 7285, 1, 0, 0, 0, 694, 7287, 1, 0, 0, 0, 696, 7295, 1, 0, 0, 0, 698, 7298, 1, 0, 0, 0, 700, 7307, 1, 0, 0, 0, 702, 7310, 1, 0, 0, 0, 704, 7314, 1, 0, 0, 0, 706, 7319, 1, 0, 0, 0, 708, 7336, 1, 0, 0, 0, 710, 7363, 1, 0, 0, 0, 712, 7372, 1, 0, 0, 0, 714, 7374, 1, 0, 0, 0, 716, 7381, 1, 0, 0, 0, 718, 7385, 1, 0, 0, 0, 720, 7387, 1, 0, 0, 0, 722, 7395, 1, 0, 0, 0, 724, 7403, 1, 0, 0, 0, 726, 7410, 1, 0, 0, 0, 728, 7412, 1, 0, 0, 0, 730, 7420, 1, 0, 0, 0, 732, 7422, 1, 0, 0, 0, 734, 7429, 1, 0, 0, 0, 736, 7433, 1, 0, 0, 0, 738, 7435, 1, 0, 0, 0, 740, 7450, 1, 0, 0, 0, 742, 7452, 1, 0, 0, 0, 744, 7474, 1, 0, 0, 0, 746, 7476, 1, 0, 0, 0, 748, 7499, 1, 0, 0, 0, 750, 7501, 1, 0, 0, 0, 752, 7523, 1, 0, 0, 0, 754, 7526, 1, 0, 0, 0, 756, 7533, 1, 0, 0, 0, 758, 7536, 1, 0, 0, 0, 760, 7556, 1, 0, 0, 0, 762, 7563, 1, 0, 0, 0, 764, 7568, 1, 0, 0, 0, 766, 7576, 1, 0, 0, 0, 768, 7584, 1, 0, 0, 0, 770, 7592, 1, 0, 0, 0, 772, 7600, 1, 0, 0, 0, 774, 7602, 1, 0, 0, 0, 776, 7604, 1, 0, 0, 0, 778, 7606, 1, 0, 0, 0, 780, 7608, 1, 0, 0, 0, 782, 7610, 1, 0, 0, 0, 784, 7612, 1, 0, 0, 0, 786, 7616, 1, 0, 0, 0, 788, 7624, 1, 0, 0, 0, 790, 7632, 1, 0, 0, 0, 792, 7634, 1, 0, 0, 0, 794, 7636, 1, 0, 0, 0, 796, 7638, 1, 0, 0, 0, 798, 7640, 1, 0, 0, 0, 800, 7646, 1, 0, 0, 0, 802, 7652, 1, 0, 0, 0, 804, 7658, 1, 0, 0, 0, 806, 7660, 1, 0, 0, 0, 808, 7663, 1, 0, 0, 0, 810, 7669, 1, 0, 0, 0, 812, 7675, 1, 0, 0, 0, 814, 7677, 1, 0, 0, 0, 816, 7693, 1, 0, 0, 0, 818, 7696, 1, 0, 0, 0, 820, 7705, 1, 0, 0, 0, 822, 7707, 1, 0, 0, 0, 824, 7717, 1, 0, 0, 0, 826, 7721, 1, 0, 0, 0, 828, 7726, 1, 0, 0, 0, 830, 7732, 1, 0, 0, 0, 832, 7745, 1, 0, 0, 0, 834, 7747, 1, 0, 0, 0, 836, 7800, 1, 0, 0, 0, 838, 7802, 1, 0, 0, 0, 840, 7804, 1, 0, 0, 0, 842, 7807, 1, 0, 0, 0, 844, 7835, 1, 0, 0, 0, 846, 7839, 1, 0, 0, 0, 848, 7890, 1, 0, 0, 0, 850, 7893, 1, 0, 0, 0, 852, 7919, 1, 0, 0, 0, 854, 7921, 1, 0, 0, 0, 856, 7944, 1, 0, 0, 0, 858, 7946, 1, 0, 0, 0, 860, 7951, 1, 0, 0, 0, 862, 7966, 1, 0, 0, 0, 864, 7972, 1, 0, 0, 0, 866, 7983, 1, 0, 0, 0, 868, 8013, 1, 0, 0, 0, 870, 8020, 1, 0, 0, 0, 872, 8045, 1, 0, 0, 0, 874, 8055, 1, 0, 0, 0, 876, 8082, 1, 0, 0, 0, 878, 8095, 1, 0, 0, 0, 880, 8105, 1, 0, 0, 0, 882, 8124, 1, 0, 0, 0, 884, 8156, 1, 0, 0, 0, 886, 8160, 1, 0, 0, 0, 888, 8168, 1, 0, 0, 0, 890, 8182, 1, 0, 0, 0, 892, 8188, 1, 0, 0, 0, 894, 8209, 1, 0, 0, 0, 896, 8215, 1, 0, 0, 0, 898, 8254, 1, 0, 0, 0, 900, 8258, 1, 0, 0, 0, 902, 8284, 1, 0, 0, 0, 904, 8286, 1, 0, 0, 0, 906, 8294, 1, 0, 0, 0, 908, 8334, 1, 0, 0, 0, 910, 8368, 1, 0, 0, 0, 912, 8370, 1, 0, 0, 0, 914, 8381, 1, 0, 0, 0, 916, 8418, 1, 0, 0, 0, 918, 8422, 1, 0, 0, 0, 920, 8424, 1, 0, 0, 0, 922, 8428, 1, 0, 0, 0, 924, 8431, 1, 0, 0, 0, 926, 8453, 1, 0, 0, 0, 928, 8457, 1, 0, 0, 0, 930, 8459, 1, 0, 0, 0, 932, 8483, 1, 0, 0, 0, 934, 8487, 1, 0, 0, 0, 936, 8490, 1, 0, 0, 0, 938, 940, 3, 2, 1, 0, 939, 938, 1, 0, 0, 0, 940, 943, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 944, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 944, 945, 5, 0, 0, 1, 945, 1, 1, 0, 0, 0, 946, 948, 3, 4, 2, 0, 947, 949, 5, 7, 0, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 3, 1, 0, 0, 0, 950, 1071, 3, 272, 136, 0, 951, 1071, 3, 482, 241, 0, 952, 1071, 3, 478, 239, 0, 953, 1071, 3, 480, 240, 0, 954, 1071, 3, 346, 173, 0, 955, 1071, 3, 488, 244, 0, 956, 1071, 3, 286, 143, 0, 957, 1071, 3, 204, 102, 0, 958, 1071, 3, 206, 103, 0, 959, 1071, 3, 212, 106, 0, 960, 1071, 3, 226, 113, 0, 961, 1071, 3, 398, 199, 0, 962, 1071, 3, 28, 14, 0, 963, 1071, 3, 428, 214, 0, 964, 1071, 3, 430, 215, 0, 965, 1071, 3, 440, 220, 0, 966, 1071, 3, 432, 216, 0, 967, 1071, 3, 438, 219, 0, 968, 1071, 3, 238, 119, 0, 969, 1071, 3, 240, 120, 0, 970, 1071, 3, 192, 96, 0, 971, 1071, 3, 484, 242, 0, 972, 1071, 3, 76, 38, 0, 973, 1071, 3, 424, 212, 0, 974, 1071, 3, 100, 50, 0, 975, 1071, 3, 444, 222, 0, 976, 1071, 3, 18, 9, 0, 977, 1071, 3, 20, 10, 0, 978, 1071, 3, 16, 8, 0, 979, 1071, 3, 448, 224, 0, 980, 1071, 3, 178, 89, 0, 981, 1071, 3, 492, 246, 0, 982, 1071, 3, 490, 245, 0, 983, 1071, 3, 234, 117, 0, 984, 1071, 3, 500, 250, 0, 985, 1071, 3, 6, 3, 0, 986, 1071, 3, 72, 36, 0, 987, 1071, 3, 104, 52, 0, 988, 1071, 3, 496, 248, 0, 989, 1071, 3, 318, 159, 0, 990, 1071, 3, 70, 35, 0, 991, 1071, 3, 106, 53, 0, 992, 1071, 3, 248, 124, 0, 993, 1071, 3, 180, 90, 0, 994, 1071, 3, 274, 137, 0, 995, 1071, 3, 414, 207, 0, 996, 1071, 3, 494, 247, 0, 997, 1071, 3, 486, 243, 0, 998, 1071, 3, 202, 101, 0, 999, 1071, 3, 208, 104, 0, 1000, 1071, 3, 222, 111, 0, 1001, 1071, 3, 228, 114, 0, 1002, 1071, 3, 358, 179, 0, 1003, 1071, 3, 26, 13, 0, 1004, 1071, 3, 186, 93, 0, 1005, 1071, 3, 290, 145, 0, 1006, 1071, 3, 294, 147, 0, 1007, 1071, 3, 442, 221, 0, 1008, 1071, 3, 296, 148, 0, 1009, 1071, 3, 236, 118, 0, 1010, 1071, 3, 198, 99, 0, 1011, 1071, 3, 30, 15, 0, 1012, 1071, 3, 190, 95, 0, 1013, 1071, 3, 114, 57, 0, 1014, 1071, 3, 446, 223, 0, 1015, 1071, 3, 176, 88, 0, 1016, 1071, 3, 200, 100, 0, 1017, 1071, 3, 418, 209, 0, 1018, 1071, 3, 250, 125, 0, 1019, 1071, 3, 268, 134, 0, 1020, 1071, 3, 8, 4, 0, 1021, 1071, 3, 14, 7, 0, 1022, 1071, 3, 232, 116, 0, 1023, 1071, 3, 474, 237, 0, 1024, 1071, 3, 530, 265, 0, 1025, 1071, 3, 552, 276, 0, 1026, 1071, 3, 276, 138, 0, 1027, 1071, 3, 542, 271, 0, 1028, 1071, 3, 74, 37, 0, 1029, 1071, 3, 412, 206, 0, 1030, 1071, 3, 302, 151, 0, 1031, 1071, 3, 526, 263, 0, 1032, 1071, 3, 514, 257, 0, 1033, 1071, 3, 322, 161, 0, 1034, 1071, 3, 328, 164, 0, 1035, 1071, 3, 342, 171, 0, 1036, 1071, 3, 906, 453, 0, 1037, 1071, 3, 230, 115, 0, 1038, 1071, 3, 352, 176, 0, 1039, 1071, 3, 532, 266, 0, 1040, 1071, 3, 458, 229, 0, 1041, 1071, 3, 188, 94, 0, 1042, 1071, 3, 472, 236, 0, 1043, 1071, 3, 544, 272, 0, 1044, 1071, 3, 454, 227, 0, 1045, 1071, 3, 520, 260, 0, 1046, 1071, 3, 300, 150, 0, 1047, 1071, 3, 422, 211, 0, 1048, 1071, 3, 402, 201, 0, 1049, 1071, 3, 400, 200, 0, 1050, 1071, 3, 404, 202, 0, 1051, 1071, 3, 426, 213, 0, 1052, 1071, 3, 330, 165, 0, 1053, 1071, 3, 344, 172, 0, 1054, 1071, 3, 450, 225, 0, 1055, 1071, 3, 320, 160, 0, 1056, 1071, 3, 554, 277, 0, 1057, 1071, 3, 462, 231, 0, 1058, 1071, 3, 314, 157, 0, 1059, 1071, 3, 460, 230, 0, 1060, 1071, 3, 546, 273, 0, 1061, 1071, 3, 498, 249, 0, 1062, 1071, 3, 60, 30, 0, 1063, 1071, 3, 36, 18, 0, 1064, 1071, 3, 68, 34, 0, 1065, 1071, 3, 470, 235, 0, 1066, 1068, 5, 583, 0, 0, 1067, 1069, 5, 584, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 1, 0, 0, 0, 1070, 950, 1, 0, 0, 0, 1070, 951, 1, 0, 0, 0, 1070, 952, 1, 0, 0, 0, 1070, 953, 1, 0, 0, 0, 1070, 954, 1, 0, 0, 0, 1070, 955, 1, 0, 0, 0, 1070, 956, 1, 0, 0, 0, 1070, 957, 1, 0, 0, 0, 1070, 958, 1, 0, 0, 0, 1070, 959, 1, 0, 0, 0, 1070, 960, 1, 0, 0, 0, 1070, 961, 1, 0, 0, 0, 1070, 962, 1, 0, 0, 0, 1070, 963, 1, 0, 0, 0, 1070, 964, 1, 0, 0, 0, 1070, 965, 1, 0, 0, 0, 1070, 966, 1, 0, 0, 0, 1070, 967, 1, 0, 0, 0, 1070, 968, 1, 0, 0, 0, 1070, 969, 1, 0, 0, 0, 1070, 970, 1, 0, 0, 0, 1070, 971, 1, 0, 0, 0, 1070, 972, 1, 0, 0, 0, 1070, 973, 1, 0, 0, 0, 1070, 974, 1, 0, 0, 0, 1070, 975, 1, 0, 0, 0, 1070, 976, 1, 0, 0, 0, 1070, 977, 1, 0, 0, 0, 1070, 978, 1, 0, 0, 0, 1070, 979, 1, 0, 0, 0, 1070, 980, 1, 0, 0, 0, 1070, 981, 1, 0, 0, 0, 1070, 982, 1, 0, 0, 0, 1070, 983, 1, 0, 0, 0, 1070, 984, 1, 0, 0, 0, 1070, 985, 1, 0, 0, 0, 1070, 986, 1, 0, 0, 0, 1070, 987, 1, 0, 0, 0, 1070, 988, 1, 0, 0, 0, 1070, 989, 1, 0, 0, 0, 1070, 990, 1, 0, 0, 0, 1070, 991, 1, 0, 0, 0, 1070, 992, 1, 0, 0, 0, 1070, 993, 1, 0, 0, 0, 1070, 994, 1, 0, 0, 0, 1070, 995, 1, 0, 0, 0, 1070, 996, 1, 0, 0, 0, 1070, 997, 1, 0, 0, 0, 1070, 998, 1, 0, 0, 0, 1070, 999, 1, 0, 0, 0, 1070, 1000, 1, 0, 0, 0, 1070, 1001, 1, 0, 0, 0, 1070, 1002, 1, 0, 0, 0, 1070, 1003, 1, 0, 0, 0, 1070, 1004, 1, 0, 0, 0, 1070, 1005, 1, 0, 0, 0, 1070, 1006, 1, 0, 0, 0, 1070, 1007, 1, 0, 0, 0, 1070, 1008, 1, 0, 0, 0, 1070, 1009, 1, 0, 0, 0, 1070, 1010, 1, 0, 0, 0, 1070, 1011, 1, 0, 0, 0, 1070, 1012, 1, 0, 0, 0, 1070, 1013, 1, 0, 0, 0, 1070, 1014, 1, 0, 0, 0, 1070, 1015, 1, 0, 0, 0, 1070, 1016, 1, 0, 0, 0, 1070, 1017, 1, 0, 0, 0, 1070, 1018, 1, 0, 0, 0, 1070, 1019, 1, 0, 0, 0, 1070, 1020, 1, 0, 0, 0, 1070, 1021, 1, 0, 0, 0, 1070, 1022, 1, 0, 0, 0, 1070, 1023, 1, 0, 0, 0, 1070, 1024, 1, 0, 0, 0, 1070, 1025, 1, 0, 0, 0, 1070, 1026, 1, 0, 0, 0, 1070, 1027, 1, 0, 0, 0, 1070, 1028, 1, 0, 0, 0, 1070, 1029, 1, 0, 0, 0, 1070, 1030, 1, 0, 0, 0, 1070, 1031, 1, 0, 0, 0, 1070, 1032, 1, 0, 0, 0, 1070, 1033, 1, 0, 0, 0, 1070, 1034, 1, 0, 0, 0, 1070, 1035, 1, 0, 0, 0, 1070, 1036, 1, 0, 0, 0, 1070, 1037, 1, 0, 0, 0, 1070, 1038, 1, 0, 0, 0, 1070, 1039, 1, 0, 0, 0, 1070, 1040, 1, 0, 0, 0, 1070, 1041, 1, 0, 0, 0, 1070, 1042, 1, 0, 0, 0, 1070, 1043, 1, 0, 0, 0, 1070, 1044, 1, 0, 0, 0, 1070, 1045, 1, 0, 0, 0, 1070, 1046, 1, 0, 0, 0, 1070, 1047, 1, 0, 0, 0, 1070, 1048, 1, 0, 0, 0, 1070, 1049, 1, 0, 0, 0, 1070, 1050, 1, 0, 0, 0, 1070, 1051, 1, 0, 0, 0, 1070, 1052, 1, 0, 0, 0, 1070, 1053, 1, 0, 0, 0, 1070, 1054, 1, 0, 0, 0, 1070, 1055, 1, 0, 0, 0, 1070, 1056, 1, 0, 0, 0, 1070, 1057, 1, 0, 0, 0, 1070, 1058, 1, 0, 0, 0, 1070, 1059, 1, 0, 0, 0, 1070, 1060, 1, 0, 0, 0, 1070, 1061, 1, 0, 0, 0, 1070, 1062, 1, 0, 0, 0, 1070, 1063, 1, 0, 0, 0, 1070, 1064, 1, 0, 0, 0, 1070, 1065, 1, 0, 0, 0, 1070, 1066, 1, 0, 0, 0, 1071, 5, 1, 0, 0, 0, 1072, 1073, 5, 433, 0, 0, 1073, 1074, 3, 680, 340, 0, 1074, 7, 1, 0, 0, 0, 1075, 1076, 5, 46, 0, 0, 1076, 1077, 5, 318, 0, 0, 1077, 1079, 3, 820, 410, 0, 1078, 1080, 5, 105, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1084, 1, 0, 0, 0, 1081, 1083, 3, 12, 6, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 9, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1090, 5, 287, 0, 0, 1088, 1091, 3, 814, 407, 0, 1089, 1091, 5, 78, 0, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1089, 1, 0, 0, 0, 1091, 1126, 1, 0, 0, 0, 1092, 1093, 7, 0, 0, 0, 1093, 1094, 5, 287, 0, 0, 1094, 1126, 3, 814, 407, 0, 1095, 1126, 5, 228, 0, 0, 1096, 1126, 5, 229, 0, 0, 1097, 1126, 5, 236, 0, 0, 1098, 1126, 5, 237, 0, 0, 1099, 1126, 5, 234, 0, 0, 1100, 1126, 5, 235, 0, 0, 1101, 1126, 5, 232, 0, 0, 1102, 1126, 5, 233, 0, 0, 1103, 1126, 5, 230, 0, 0, 1104, 1126, 5, 231, 0, 0, 1105, 1126, 5, 535, 0, 0, 1106, 1126, 5, 536, 0, 0, 1107, 1126, 5, 537, 0, 0, 1108, 1126, 5, 538, 0, 0, 1109, 1126, 5, 539, 0, 0, 1110, 1126, 5, 540, 0, 0, 1111, 1112, 5, 164, 0, 0, 1112, 1113, 5, 74, 0, 0, 1113, 1126, 3, 818, 409, 0, 1114, 1115, 5, 371, 0, 0, 1115, 1116, 5, 368, 0, 0, 1116, 1126, 3, 814, 407, 0, 1117, 1118, 5, 68, 0, 0, 1118, 1119, 7, 1, 0, 0, 1119, 1126, 3, 788, 394, 0, 1120, 1121, 7, 2, 0, 0, 1121, 1126, 3, 822, 411, 0, 1122, 1123, 5, 134, 0, 0, 1123, 1126, 3, 788, 394, 0, 1124, 1126, 3, 832, 416, 0, 1125, 1087, 1, 0, 0, 0, 1125, 1092, 1, 0, 0, 0, 1125, 1095, 1, 0, 0, 0, 1125, 1096, 1, 0, 0, 0, 1125, 1097, 1, 0, 0, 0, 1125, 1098, 1, 0, 0, 0, 1125, 1099, 1, 0, 0, 0, 1125, 1100, 1, 0, 0, 0, 1125, 1101, 1, 0, 0, 0, 1125, 1102, 1, 0, 0, 0, 1125, 1103, 1, 0, 0, 0, 1125, 1104, 1, 0, 0, 0, 1125, 1105, 1, 0, 0, 0, 1125, 1106, 1, 0, 0, 0, 1125, 1107, 1, 0, 0, 0, 1125, 1108, 1, 0, 0, 0, 1125, 1109, 1, 0, 0, 0, 1125, 1110, 1, 0, 0, 0, 1125, 1111, 1, 0, 0, 0, 1125, 1114, 1, 0, 0, 0, 1125, 1117, 1, 0, 0, 0, 1125, 1120, 1, 0, 0, 0, 1125, 1122, 1, 0, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 11, 1, 0, 0, 0, 1127, 1136, 3, 10, 5, 0, 1128, 1129, 5, 348, 0, 0, 1129, 1136, 5, 574, 0, 0, 1130, 1131, 7, 3, 0, 0, 1131, 1136, 3, 822, 411, 0, 1132, 1133, 5, 68, 0, 0, 1133, 1134, 7, 1, 0, 0, 1134, 1136, 3, 822, 411, 0, 1135, 1127, 1, 0, 0, 0, 1135, 1128, 1, 0, 0, 0, 1135, 1130, 1, 0, 0, 0, 1135, 1132, 1, 0, 0, 0, 1136, 13, 1, 0, 0, 0, 1137, 1138, 5, 46, 0, 0, 1138, 1139, 5, 99, 0, 0, 1139, 1141, 3, 820, 410, 0, 1140, 1142, 5, 105, 0, 0, 1141, 1140, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1146, 1, 0, 0, 0, 1143, 1145, 3, 12, 6, 0, 1144, 1143, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 15, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1150, 5, 138, 0, 0, 1150, 1151, 7, 2, 0, 0, 1151, 1153, 3, 820, 410, 0, 1152, 1154, 5, 105, 0, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1158, 1, 0, 0, 0, 1155, 1157, 3, 10, 5, 0, 1156, 1155, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 17, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1161, 1162, 5, 138, 0, 0, 1162, 1165, 7, 2, 0, 0, 1163, 1166, 5, 30, 0, 0, 1164, 1166, 3, 820, 410, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 5, 68, 0, 0, 1168, 1169, 5, 175, 0, 0, 1169, 1170, 3, 792, 396, 0, 1170, 1171, 3, 64, 32, 0, 1171, 19, 1, 0, 0, 0, 1172, 1173, 5, 138, 0, 0, 1173, 1174, 5, 442, 0, 0, 1174, 1176, 3, 798, 399, 0, 1175, 1177, 3, 362, 181, 0, 1176, 1175, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 3, 22, 11, 0, 1179, 21, 1, 0, 0, 0, 1180, 1184, 3, 24, 12, 0, 1181, 1183, 3, 24, 12, 0, 1182, 1181, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1189, 5, 315, 0, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1207, 1, 0, 0, 0, 1190, 1191, 5, 309, 0, 0, 1191, 1192, 5, 94, 0, 0, 1192, 1207, 3, 796, 398, 0, 1193, 1194, 5, 282, 0, 0, 1194, 1195, 5, 94, 0, 0, 1195, 1207, 3, 820, 410, 0, 1196, 1197, 5, 333, 0, 0, 1197, 1198, 5, 323, 0, 0, 1198, 1207, 3, 32, 16, 0, 1199, 1201, 5, 269, 0, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 5, 462, 0, 0, 1203, 1204, 5, 80, 0, 0, 1204, 1205, 5, 204, 0, 0, 1205, 1207, 3, 824, 412, 0, 1206, 1180, 1, 0, 0, 0, 1206, 1190, 1, 0, 0, 0, 1206, 1193, 1, 0, 0, 0, 1206, 1196, 1, 0, 0, 0, 1206, 1200, 1, 0, 0, 0, 1207, 23, 1, 0, 0, 0, 1208, 1251, 5, 222, 0, 0, 1209, 1251, 5, 338, 0, 0, 1210, 1251, 5, 377, 0, 0, 1211, 1213, 5, 77, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1251, 5, 250, 0, 0, 1215, 1217, 5, 205, 0, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 5, 327, 0, 0, 1219, 1226, 5, 243, 0, 0, 1220, 1222, 5, 205, 0, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1224, 5, 327, 0, 0, 1224, 1226, 5, 181, 0, 0, 1225, 1216, 1, 0, 0, 0, 1225, 1221, 1, 0, 0, 0, 1226, 1251, 1, 0, 0, 0, 1227, 1228, 5, 460, 0, 0, 1228, 1251, 7, 4, 0, 0, 1229, 1230, 5, 170, 0, 0, 1230, 1251, 3, 830, 415, 0, 1231, 1232, 5, 320, 0, 0, 1232, 1251, 3, 824, 412, 0, 1233, 1234, 5, 333, 0, 0, 1234, 1235, 3, 824, 412, 0, 1235, 1238, 7, 5, 0, 0, 1236, 1239, 3, 824, 412, 0, 1237, 1239, 5, 53, 0, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1237, 1, 0, 0, 0, 1239, 1251, 1, 0, 0, 0, 1240, 1241, 5, 333, 0, 0, 1241, 1242, 3, 824, 412, 0, 1242, 1243, 5, 64, 0, 0, 1243, 1244, 5, 434, 0, 0, 1244, 1251, 1, 0, 0, 0, 1245, 1248, 5, 313, 0, 0, 1246, 1249, 3, 824, 412, 0, 1247, 1249, 5, 30, 0, 0, 1248, 1246, 1, 0, 0, 0, 1248, 1247, 1, 0, 0, 0, 1249, 1251, 1, 0, 0, 0, 1250, 1208, 1, 0, 0, 0, 1250, 1209, 1, 0, 0, 0, 1250, 1210, 1, 0, 0, 0, 1250, 1212, 1, 0, 0, 0, 1250, 1225, 1, 0, 0, 0, 1250, 1227, 1, 0, 0, 0, 1250, 1229, 1, 0, 0, 0, 1250, 1231, 1, 0, 0, 0, 1250, 1233, 1, 0, 0, 0, 1250, 1240, 1, 0, 0, 0, 1250, 1245, 1, 0, 0, 0, 1251, 25, 1, 0, 0, 0, 1252, 1253, 5, 46, 0, 0, 1253, 1254, 5, 66, 0, 0, 1254, 1256, 3, 820, 410, 0, 1255, 1257, 5, 105, 0, 0, 1256, 1255, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1261, 1, 0, 0, 0, 1258, 1260, 3, 12, 6, 0, 1259, 1258, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 27, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1264, 1265, 5, 138, 0, 0, 1265, 1266, 5, 66, 0, 0, 1266, 1267, 3, 820, 410, 0, 1267, 1268, 7, 6, 0, 0, 1268, 1269, 5, 99, 0, 0, 1269, 1270, 3, 822, 411, 0, 1270, 29, 1, 0, 0, 0, 1271, 1272, 5, 46, 0, 0, 1272, 1274, 5, 323, 0, 0, 1273, 1275, 3, 288, 144, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1282, 1, 0, 0, 0, 1276, 1278, 3, 32, 16, 0, 1277, 1276, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1280, 5, 106, 0, 0, 1280, 1283, 3, 820, 410, 0, 1281, 1283, 3, 32, 16, 0, 1282, 1277, 1, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1287, 1, 0, 0, 0, 1284, 1286, 3, 34, 17, 0, 1285, 1284, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 31, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1291, 3, 310, 155, 0, 1291, 33, 1, 0, 0, 0, 1292, 1299, 3, 114, 57, 0, 1293, 1299, 3, 352, 176, 0, 1294, 1299, 3, 190, 95, 0, 1295, 1299, 3, 250, 125, 0, 1296, 1299, 3, 328, 164, 0, 1297, 1299, 3, 470, 235, 0, 1298, 1292, 1, 0, 0, 0, 1298, 1293, 1, 0, 0, 0, 1298, 1294, 1, 0, 0, 0, 1298, 1295, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1298, 1297, 1, 0, 0, 0, 1299, 35, 1, 0, 0, 0, 1300, 1302, 5, 333, 0, 0, 1301, 1303, 7, 7, 0, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 3, 38, 19, 0, 1305, 37, 1, 0, 0, 0, 1306, 1307, 5, 356, 0, 0, 1307, 1315, 3, 468, 234, 0, 1308, 1309, 5, 332, 0, 0, 1309, 1310, 5, 154, 0, 0, 1310, 1311, 5, 36, 0, 0, 1311, 1312, 5, 356, 0, 0, 1312, 1315, 3, 468, 234, 0, 1313, 1315, 3, 42, 21, 0, 1314, 1306, 1, 0, 0, 0, 1314, 1308, 1, 0, 0, 0, 1314, 1313, 1, 0, 0, 0, 1315, 39, 1, 0, 0, 0, 1316, 1319, 5, 30, 0, 0, 1317, 1319, 3, 44, 22, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1317, 1, 0, 0, 0, 1319, 1321, 1, 0, 0, 0, 1320, 1322, 7, 5, 0, 0, 1321, 1320, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1325, 1, 0, 0, 0, 1323, 1326, 5, 53, 0, 0, 1324, 1326, 3, 46, 23, 0, 1325, 1323, 1, 0, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 41, 1, 0, 0, 0, 1327, 1328, 5, 418, 0, 0, 1328, 1329, 5, 386, 0, 0, 1329, 1356, 3, 56, 28, 0, 1330, 1331, 5, 152, 0, 0, 1331, 1356, 3, 814, 407, 0, 1332, 1333, 5, 323, 0, 0, 1333, 1356, 3, 794, 397, 0, 1334, 1337, 5, 267, 0, 0, 1335, 1338, 3, 814, 407, 0, 1336, 1338, 5, 53, 0, 0, 1337, 1335, 1, 0, 0, 0, 1337, 1336, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1356, 1, 0, 0, 0, 1339, 1340, 5, 318, 0, 0, 1340, 1356, 3, 58, 29, 0, 1341, 1342, 5, 332, 0, 0, 1342, 1343, 5, 106, 0, 0, 1343, 1356, 3, 58, 29, 0, 1344, 1345, 5, 383, 0, 0, 1345, 1346, 5, 279, 0, 0, 1346, 1356, 3, 692, 346, 0, 1347, 1348, 5, 356, 0, 0, 1348, 1349, 5, 337, 0, 0, 1349, 1356, 3, 814, 407, 0, 1350, 1351, 3, 44, 22, 0, 1351, 1352, 5, 64, 0, 0, 1352, 1353, 5, 434, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1356, 3, 40, 20, 0, 1355, 1327, 1, 0, 0, 0, 1355, 1330, 1, 0, 0, 0, 1355, 1332, 1, 0, 0, 0, 1355, 1334, 1, 0, 0, 0, 1355, 1339, 1, 0, 0, 0, 1355, 1341, 1, 0, 0, 0, 1355, 1344, 1, 0, 0, 0, 1355, 1347, 1, 0, 0, 0, 1355, 1350, 1, 0, 0, 0, 1355, 1354, 1, 0, 0, 0, 1356, 43, 1, 0, 0, 0, 1357, 1362, 3, 824, 412, 0, 1358, 1359, 5, 11, 0, 0, 1359, 1361, 3, 824, 412, 0, 1360, 1358, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 45, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1370, 3, 48, 24, 0, 1366, 1367, 5, 6, 0, 0, 1367, 1369, 3, 48, 24, 0, 1368, 1366, 1, 0, 0, 0, 1369, 1372, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 47, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1373, 1376, 3, 54, 27, 0, 1374, 1376, 3, 196, 98, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1374, 1, 0, 0, 0, 1376, 49, 1, 0, 0, 0, 1377, 1378, 5, 300, 0, 0, 1378, 1383, 7, 8, 0, 0, 1379, 1380, 5, 310, 0, 0, 1380, 1383, 5, 300, 0, 0, 1381, 1383, 5, 330, 0, 0, 1382, 1377, 1, 0, 0, 0, 1382, 1379, 1, 0, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 51, 1, 0, 0, 0, 1384, 1391, 5, 96, 0, 0, 1385, 1391, 5, 60, 0, 0, 1386, 1391, 5, 80, 0, 0, 1387, 1391, 3, 804, 402, 0, 1388, 1391, 3, 838, 419, 0, 1389, 1391, 3, 814, 407, 0, 1390, 1384, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1387, 1, 0, 0, 0, 1390, 1388, 1, 0, 0, 0, 1390, 1389, 1, 0, 0, 0, 1391, 53, 1, 0, 0, 0, 1392, 1397, 5, 96, 0, 0, 1393, 1397, 5, 60, 0, 0, 1394, 1397, 5, 80, 0, 0, 1395, 1397, 3, 58, 29, 0, 1396, 1392, 1, 0, 0, 0, 1396, 1393, 1, 0, 0, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1395, 1, 0, 0, 0, 1397, 55, 1, 0, 0, 0, 1398, 1413, 3, 814, 407, 0, 1399, 1413, 5, 53, 0, 0, 1400, 1413, 3, 832, 416, 0, 1401, 1402, 5, 403, 0, 0, 1402, 1404, 3, 814, 407, 0, 1403, 1405, 3, 664, 332, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1413, 1, 0, 0, 0, 1406, 1407, 5, 403, 0, 0, 1407, 1408, 3, 656, 328, 0, 1408, 1409, 3, 814, 407, 0, 1409, 1413, 1, 0, 0, 0, 1410, 1413, 3, 196, 98, 0, 1411, 1413, 5, 254, 0, 0, 1412, 1398, 1, 0, 0, 0, 1412, 1399, 1, 0, 0, 0, 1412, 1400, 1, 0, 0, 0, 1412, 1401, 1, 0, 0, 0, 1412, 1406, 1, 0, 0, 0, 1412, 1410, 1, 0, 0, 0, 1412, 1411, 1, 0, 0, 0, 1413, 57, 1, 0, 0, 0, 1414, 1417, 3, 828, 414, 0, 1415, 1417, 3, 814, 407, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 59, 1, 0, 0, 0, 1418, 1419, 5, 313, 0, 0, 1419, 1420, 3, 62, 31, 0, 1420, 61, 1, 0, 0, 0, 1421, 1422, 5, 418, 0, 0, 1422, 1431, 5, 386, 0, 0, 1423, 1424, 5, 356, 0, 0, 1424, 1425, 5, 244, 0, 0, 1425, 1431, 5, 251, 0, 0, 1426, 1427, 5, 332, 0, 0, 1427, 1431, 5, 106, 0, 0, 1428, 1431, 5, 30, 0, 0, 1429, 1431, 3, 44, 22, 0, 1430, 1421, 1, 0, 0, 0, 1430, 1423, 1, 0, 0, 0, 1430, 1426, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 63, 1, 0, 0, 0, 1432, 1433, 5, 333, 0, 0, 1433, 1436, 3, 38, 19, 0, 1434, 1436, 3, 60, 30, 0, 1435, 1432, 1, 0, 0, 0, 1435, 1434, 1, 0, 0, 0, 1436, 65, 1, 0, 0, 0, 1437, 1438, 5, 333, 0, 0, 1438, 1441, 3, 42, 21, 0, 1439, 1441, 3, 60, 30, 0, 1440, 1437, 1, 0, 0, 0, 1440, 1439, 1, 0, 0, 0, 1441, 67, 1, 0, 0, 0, 1442, 1452, 5, 335, 0, 0, 1443, 1453, 3, 44, 22, 0, 1444, 1445, 5, 418, 0, 0, 1445, 1453, 5, 386, 0, 0, 1446, 1447, 5, 356, 0, 0, 1447, 1448, 5, 244, 0, 0, 1448, 1453, 5, 251, 0, 0, 1449, 1450, 5, 332, 0, 0, 1450, 1453, 5, 106, 0, 0, 1451, 1453, 5, 30, 0, 0, 1452, 1443, 1, 0, 0, 0, 1452, 1444, 1, 0, 0, 0, 1452, 1446, 1, 0, 0, 0, 1452, 1449, 1, 0, 0, 0, 1452, 1451, 1, 0, 0, 0, 1453, 69, 1, 0, 0, 0, 1454, 1455, 5, 333, 0, 0, 1455, 1458, 5, 165, 0, 0, 1456, 1459, 5, 30, 0, 0, 1457, 1459, 3, 764, 382, 0, 1458, 1456, 1, 0, 0, 0, 1458, 1457, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 7, 9, 0, 0, 1461, 71, 1, 0, 0, 0, 1462, 1463, 5, 155, 0, 0, 1463, 73, 1, 0, 0, 0, 1464, 1465, 5, 187, 0, 0, 1465, 1466, 7, 10, 0, 0, 1466, 75, 1, 0, 0, 0, 1467, 1468, 5, 138, 0, 0, 1468, 1470, 5, 92, 0, 0, 1469, 1471, 3, 416, 208, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1475, 3, 620, 310, 0, 1473, 1476, 3, 78, 39, 0, 1474, 1476, 3, 80, 40, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1474, 1, 0, 0, 0, 1476, 1585, 1, 0, 0, 0, 1477, 1478, 5, 138, 0, 0, 1478, 1479, 5, 92, 0, 0, 1479, 1480, 5, 30, 0, 0, 1480, 1481, 5, 68, 0, 0, 1481, 1485, 3, 170, 85, 0, 1482, 1483, 5, 281, 0, 0, 1483, 1484, 5, 147, 0, 0, 1484, 1486, 3, 822, 411, 0, 1485, 1482, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 5, 333, 0, 0, 1488, 1489, 5, 351, 0, 0, 1489, 1491, 3, 774, 387, 0, 1490, 1492, 5, 272, 0, 0, 1491, 1490, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1585, 1, 0, 0, 0, 1493, 1494, 5, 138, 0, 0, 1494, 1496, 5, 92, 0, 0, 1495, 1497, 3, 416, 208, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 3, 778, 389, 0, 1499, 1500, 3, 82, 41, 0, 1500, 1501, 3, 98, 49, 0, 1501, 1585, 1, 0, 0, 0, 1502, 1503, 5, 138, 0, 0, 1503, 1505, 5, 92, 0, 0, 1504, 1506, 3, 416, 208, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 3, 778, 389, 0, 1508, 1509, 5, 436, 0, 0, 1509, 1510, 5, 285, 0, 0, 1510, 1512, 3, 784, 392, 0, 1511, 1513, 7, 11, 0, 0, 1512, 1511, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1585, 1, 0, 0, 0, 1514, 1515, 5, 138, 0, 0, 1515, 1517, 5, 226, 0, 0, 1516, 1518, 3, 416, 208, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1522, 3, 784, 392, 0, 1520, 1523, 3, 78, 39, 0, 1521, 1523, 3, 82, 41, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1521, 1, 0, 0, 0, 1523, 1585, 1, 0, 0, 0, 1524, 1525, 5, 138, 0, 0, 1525, 1526, 5, 226, 0, 0, 1526, 1527, 5, 30, 0, 0, 1527, 1528, 5, 68, 0, 0, 1528, 1532, 3, 170, 85, 0, 1529, 1530, 5, 281, 0, 0, 1530, 1531, 5, 147, 0, 0, 1531, 1533, 3, 822, 411, 0, 1532, 1529, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 5, 333, 0, 0, 1535, 1537, 3, 170, 85, 0, 1536, 1538, 5, 272, 0, 0, 1537, 1536, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1585, 1, 0, 0, 0, 1539, 1540, 5, 138, 0, 0, 1540, 1542, 5, 328, 0, 0, 1541, 1543, 3, 416, 208, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 3, 784, 392, 0, 1545, 1546, 3, 78, 39, 0, 1546, 1585, 1, 0, 0, 0, 1547, 1549, 5, 138, 0, 0, 1548, 1550, 5, 259, 0, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 5, 376, 0, 0, 1552, 1554, 3, 416, 208, 0, 1553, 1552, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 3, 782, 391, 0, 1556, 1557, 3, 78, 39, 0, 1557, 1585, 1, 0, 0, 0, 1558, 1559, 5, 138, 0, 0, 1559, 1560, 5, 259, 0, 0, 1560, 1561, 5, 376, 0, 0, 1561, 1562, 5, 30, 0, 0, 1562, 1563, 5, 68, 0, 0, 1563, 1567, 3, 170, 85, 0, 1564, 1565, 5, 281, 0, 0, 1565, 1566, 5, 147, 0, 0, 1566, 1568, 3, 822, 411, 0, 1567, 1564, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 5, 333, 0, 0, 1570, 1571, 5, 351, 0, 0, 1571, 1573, 3, 774, 387, 0, 1572, 1574, 5, 272, 0, 0, 1573, 1572, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1585, 1, 0, 0, 0, 1575, 1576, 5, 138, 0, 0, 1576, 1577, 5, 63, 0, 0, 1577, 1579, 5, 92, 0, 0, 1578, 1580, 3, 416, 208, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 3, 620, 310, 0, 1582, 1583, 3, 78, 39, 0, 1583, 1585, 1, 0, 0, 0, 1584, 1467, 1, 0, 0, 0, 1584, 1477, 1, 0, 0, 0, 1584, 1493, 1, 0, 0, 0, 1584, 1502, 1, 0, 0, 0, 1584, 1514, 1, 0, 0, 0, 1584, 1524, 1, 0, 0, 0, 1584, 1539, 1, 0, 0, 0, 1584, 1547, 1, 0, 0, 0, 1584, 1558, 1, 0, 0, 0, 1584, 1575, 1, 0, 0, 0, 1585, 77, 1, 0, 0, 0, 1586, 1591, 3, 84, 42, 0, 1587, 1588, 5, 6, 0, 0, 1588, 1590, 3, 84, 42, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 79, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 82, 41, 0, 1595, 1596, 3, 98, 49, 0, 1596, 1601, 1, 0, 0, 0, 1597, 1598, 5, 436, 0, 0, 1598, 1599, 5, 285, 0, 0, 1599, 1601, 3, 784, 392, 0, 1600, 1594, 1, 0, 0, 0, 1600, 1597, 1, 0, 0, 0, 1601, 81, 1, 0, 0, 0, 1602, 1603, 5, 435, 0, 0, 1603, 1604, 5, 285, 0, 0, 1604, 1605, 3, 784, 392, 0, 1605, 83, 1, 0, 0, 0, 1606, 1609, 5, 133, 0, 0, 1607, 1608, 5, 45, 0, 0, 1608, 1610, 3, 824, 412, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1840, 3, 136, 68, 0, 1612, 1613, 5, 138, 0, 0, 1613, 1614, 5, 45, 0, 0, 1614, 1618, 3, 824, 412, 0, 1615, 1617, 3, 266, 133, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1840, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1622, 5, 372, 0, 0, 1622, 1623, 5, 45, 0, 0, 1623, 1840, 3, 824, 412, 0, 1624, 1625, 5, 191, 0, 0, 1625, 1627, 5, 45, 0, 0, 1626, 1628, 3, 416, 208, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1631, 3, 824, 412, 0, 1630, 1632, 3, 88, 44, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1840, 1, 0, 0, 0, 1633, 1634, 5, 333, 0, 0, 1634, 1635, 5, 379, 0, 0, 1635, 1840, 7, 12, 0, 0, 1636, 1637, 5, 158, 0, 0, 1637, 1638, 5, 80, 0, 0, 1638, 1840, 3, 824, 412, 0, 1639, 1640, 5, 333, 0, 0, 1640, 1840, 7, 13, 0, 0, 1641, 1643, 5, 193, 0, 0, 1642, 1644, 7, 14, 0, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1840, 5, 357, 0, 0, 1646, 1647, 5, 186, 0, 0, 1647, 1651, 5, 357, 0, 0, 1648, 1652, 5, 30, 0, 0, 1649, 1652, 5, 99, 0, 0, 1650, 1652, 3, 824, 412, 0, 1651, 1648, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1650, 1, 0, 0, 0, 1652, 1840, 1, 0, 0, 0, 1653, 1654, 5, 193, 0, 0, 1654, 1655, 7, 14, 0, 0, 1655, 1656, 5, 321, 0, 0, 1656, 1840, 3, 824, 412, 0, 1657, 1658, 5, 186, 0, 0, 1658, 1659, 5, 321, 0, 0, 1659, 1840, 3, 824, 412, 0, 1660, 1662, 5, 269, 0, 0, 1661, 1660, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1664, 5, 228, 0, 0, 1664, 1840, 3, 784, 392, 0, 1665, 1666, 5, 275, 0, 0, 1666, 1840, 3, 310, 155, 0, 1667, 1668, 5, 77, 0, 0, 1668, 1840, 5, 275, 0, 0, 1669, 1670, 5, 282, 0, 0, 1670, 1671, 5, 94, 0, 0, 1671, 1840, 3, 820, 410, 0, 1672, 1673, 5, 333, 0, 0, 1673, 1674, 5, 351, 0, 0, 1674, 1840, 3, 774, 387, 0, 1675, 1676, 5, 312, 0, 0, 1676, 1681, 5, 219, 0, 0, 1677, 1682, 5, 270, 0, 0, 1678, 1682, 5, 113, 0, 0, 1679, 1682, 5, 53, 0, 0, 1680, 1682, 3, 174, 87, 0, 1681, 1677, 1, 0, 0, 0, 1681, 1678, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1681, 1680, 1, 0, 0, 0, 1682, 1840, 1, 0, 0, 0, 1683, 1690, 5, 193, 0, 0, 1684, 1690, 5, 186, 0, 0, 1685, 1687, 5, 269, 0, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1690, 5, 209, 0, 0, 1689, 1683, 1, 0, 0, 0, 1689, 1684, 1, 0, 0, 0, 1689, 1686, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 5, 414, 0, 0, 1692, 1693, 5, 251, 0, 0, 1693, 1840, 5, 327, 0, 0, 1694, 1696, 5, 191, 0, 0, 1695, 1697, 5, 44, 0, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1699, 1, 0, 0, 0, 1698, 1700, 3, 416, 208, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1703, 3, 804, 402, 0, 1702, 1704, 3, 88, 44, 0, 1703, 1702, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1840, 1, 0, 0, 0, 1705, 1707, 5, 133, 0, 0, 1706, 1708, 5, 44, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1711, 3, 288, 144, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1840, 3, 126, 63, 0, 1713, 1715, 5, 138, 0, 0, 1714, 1716, 5, 44, 0, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1720, 3, 804, 402, 0, 1718, 1721, 3, 86, 43, 0, 1719, 1721, 3, 216, 108, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1719, 1, 0, 0, 0, 1721, 1840, 1, 0, 0, 0, 1722, 1724, 5, 138, 0, 0, 1723, 1725, 5, 44, 0, 0, 1724, 1723, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 3, 804, 402, 0, 1727, 1728, 7, 15, 0, 0, 1728, 1729, 5, 77, 0, 0, 1729, 1730, 5, 78, 0, 0, 1730, 1840, 1, 0, 0, 0, 1731, 1733, 5, 138, 0, 0, 1732, 1734, 5, 44, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 3, 804, 402, 0, 1736, 1737, 5, 191, 0, 0, 1737, 1739, 5, 437, 0, 0, 1738, 1740, 3, 416, 208, 0, 1739, 1738, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1840, 1, 0, 0, 0, 1741, 1743, 5, 138, 0, 0, 1742, 1744, 5, 44, 0, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 3, 804, 402, 0, 1746, 1747, 5, 333, 0, 0, 1747, 1748, 5, 342, 0, 0, 1748, 1749, 3, 818, 409, 0, 1749, 1840, 1, 0, 0, 0, 1750, 1752, 5, 138, 0, 0, 1751, 1753, 5, 44, 0, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1756, 3, 804, 402, 0, 1755, 1750, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 7, 16, 0, 0, 1758, 1840, 3, 92, 46, 0, 1759, 1761, 5, 138, 0, 0, 1760, 1762, 5, 44, 0, 0, 1761, 1760, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 3, 804, 402, 0, 1764, 1765, 5, 333, 0, 0, 1765, 1766, 5, 345, 0, 0, 1766, 1767, 3, 824, 412, 0, 1767, 1840, 1, 0, 0, 0, 1768, 1770, 5, 138, 0, 0, 1769, 1771, 5, 44, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 3, 804, 402, 0, 1773, 1774, 5, 133, 0, 0, 1774, 1775, 5, 438, 0, 0, 1775, 1776, 3, 132, 66, 0, 1776, 1777, 5, 36, 0, 0, 1777, 1786, 5, 219, 0, 0, 1778, 1780, 5, 2, 0, 0, 1779, 1781, 3, 194, 97, 0, 1780, 1779, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1780, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 5, 3, 0, 0, 1785, 1787, 1, 0, 0, 0, 1786, 1778, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1840, 1, 0, 0, 0, 1788, 1790, 5, 138, 0, 0, 1789, 1791, 5, 44, 0, 0, 1790, 1789, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1806, 3, 804, 402, 0, 1793, 1798, 5, 314, 0, 0, 1794, 1796, 5, 105, 0, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1799, 3, 196, 98, 0, 1798, 1795, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1807, 1, 0, 0, 0, 1800, 1804, 5, 333, 0, 0, 1801, 1805, 3, 194, 97, 0, 1802, 1803, 5, 438, 0, 0, 1803, 1805, 3, 132, 66, 0, 1804, 1801, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1805, 1807, 1, 0, 0, 0, 1806, 1793, 1, 0, 0, 0, 1806, 1800, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1840, 1, 0, 0, 0, 1810, 1812, 5, 138, 0, 0, 1811, 1813, 5, 44, 0, 0, 1812, 1811, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1815, 3, 804, 402, 0, 1815, 1816, 5, 191, 0, 0, 1816, 1818, 5, 219, 0, 0, 1817, 1819, 3, 416, 208, 0, 1818, 1817, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1840, 1, 0, 0, 0, 1820, 1822, 5, 138, 0, 0, 1821, 1823, 5, 44, 0, 0, 1822, 1821, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1827, 3, 804, 402, 0, 1825, 1826, 5, 333, 0, 0, 1826, 1828, 5, 174, 0, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 5, 360, 0, 0, 1830, 1832, 3, 648, 324, 0, 1831, 1833, 3, 90, 45, 0, 1832, 1831, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1836, 1, 0, 0, 0, 1834, 1835, 5, 100, 0, 0, 1835, 1837, 3, 670, 335, 0, 1836, 1834, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1840, 1, 0, 0, 0, 1838, 1840, 3, 216, 108, 0, 1839, 1606, 1, 0, 0, 0, 1839, 1612, 1, 0, 0, 0, 1839, 1621, 1, 0, 0, 0, 1839, 1624, 1, 0, 0, 0, 1839, 1633, 1, 0, 0, 0, 1839, 1636, 1, 0, 0, 0, 1839, 1639, 1, 0, 0, 0, 1839, 1641, 1, 0, 0, 0, 1839, 1646, 1, 0, 0, 0, 1839, 1653, 1, 0, 0, 0, 1839, 1657, 1, 0, 0, 0, 1839, 1661, 1, 0, 0, 0, 1839, 1665, 1, 0, 0, 0, 1839, 1667, 1, 0, 0, 0, 1839, 1669, 1, 0, 0, 0, 1839, 1672, 1, 0, 0, 0, 1839, 1675, 1, 0, 0, 0, 1839, 1689, 1, 0, 0, 0, 1839, 1694, 1, 0, 0, 0, 1839, 1705, 1, 0, 0, 0, 1839, 1713, 1, 0, 0, 0, 1839, 1722, 1, 0, 0, 0, 1839, 1731, 1, 0, 0, 0, 1839, 1741, 1, 0, 0, 0, 1839, 1755, 1, 0, 0, 0, 1839, 1759, 1, 0, 0, 0, 1839, 1768, 1, 0, 0, 0, 1839, 1788, 1, 0, 0, 0, 1839, 1810, 1, 0, 0, 0, 1839, 1820, 1, 0, 0, 0, 1839, 1838, 1, 0, 0, 0, 1840, 85, 1, 0, 0, 0, 1841, 1842, 5, 333, 0, 0, 1842, 1843, 5, 53, 0, 0, 1843, 1847, 3, 670, 335, 0, 1844, 1845, 5, 191, 0, 0, 1845, 1847, 5, 53, 0, 0, 1846, 1841, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1847, 87, 1, 0, 0, 0, 1848, 1849, 7, 17, 0, 0, 1849, 89, 1, 0, 0, 0, 1850, 1851, 5, 43, 0, 0, 1851, 1852, 3, 310, 155, 0, 1852, 91, 1, 0, 0, 0, 1853, 1854, 5, 2, 0, 0, 1854, 1859, 3, 96, 48, 0, 1855, 1856, 5, 6, 0, 0, 1856, 1858, 3, 96, 48, 0, 1857, 1855, 1, 0, 0, 0, 1858, 1861, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1862, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1863, 5, 3, 0, 0, 1863, 93, 1, 0, 0, 0, 1864, 1865, 5, 105, 0, 0, 1865, 1866, 3, 92, 46, 0, 1866, 95, 1, 0, 0, 0, 1867, 1872, 3, 830, 415, 0, 1868, 1869, 5, 10, 0, 0, 1869, 1873, 3, 282, 141, 0, 1870, 1871, 5, 11, 0, 0, 1871, 1873, 3, 280, 140, 0, 1872, 1868, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 97, 1, 0, 0, 0, 1874, 1875, 5, 62, 0, 0, 1875, 1876, 5, 422, 0, 0, 1876, 1877, 5, 105, 0, 0, 1877, 1878, 5, 2, 0, 0, 1878, 1879, 5, 533, 0, 0, 1879, 1880, 3, 196, 98, 0, 1880, 1881, 5, 6, 0, 0, 1881, 1882, 5, 534, 0, 0, 1882, 1883, 3, 196, 98, 0, 1883, 1884, 5, 3, 0, 0, 1884, 1898, 1, 0, 0, 0, 1885, 1886, 5, 62, 0, 0, 1886, 1887, 5, 422, 0, 0, 1887, 1888, 5, 68, 0, 0, 1888, 1898, 3, 528, 264, 0, 1889, 1890, 5, 62, 0, 0, 1890, 1891, 5, 422, 0, 0, 1891, 1892, 5, 64, 0, 0, 1892, 1893, 3, 528, 264, 0, 1893, 1894, 5, 94, 0, 0, 1894, 1895, 3, 528, 264, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1898, 5, 53, 0, 0, 1897, 1874, 1, 0, 0, 0, 1897, 1885, 1, 0, 0, 0, 1897, 1889, 1, 0, 0, 0, 1897, 1896, 1, 0, 0, 0, 1898, 99, 1, 0, 0, 0, 1899, 1900, 5, 138, 0, 0, 1900, 1901, 5, 360, 0, 0, 1901, 1902, 3, 310, 155, 0, 1902, 1907, 3, 102, 51, 0, 1903, 1904, 5, 6, 0, 0, 1904, 1906, 3, 102, 51, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1909, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 101, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1911, 5, 133, 0, 0, 1911, 1912, 5, 143, 0, 0, 1912, 1914, 3, 640, 320, 0, 1913, 1915, 3, 88, 44, 0, 1914, 1913, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1941, 1, 0, 0, 0, 1916, 1917, 5, 191, 0, 0, 1917, 1919, 5, 143, 0, 0, 1918, 1920, 3, 416, 208, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 3, 824, 412, 0, 1922, 1924, 3, 88, 44, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1941, 1, 0, 0, 0, 1925, 1926, 5, 138, 0, 0, 1926, 1927, 5, 143, 0, 0, 1927, 1930, 3, 824, 412, 0, 1928, 1929, 5, 333, 0, 0, 1929, 1931, 5, 174, 0, 0, 1930, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 5, 360, 0, 0, 1933, 1935, 3, 648, 324, 0, 1934, 1936, 3, 90, 45, 0, 1935, 1934, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1939, 3, 88, 44, 0, 1938, 1937, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 1, 0, 0, 0, 1940, 1910, 1, 0, 0, 0, 1940, 1916, 1, 0, 0, 0, 1940, 1925, 1, 0, 0, 0, 1941, 103, 1, 0, 0, 0, 1942, 1945, 5, 157, 0, 0, 1943, 1946, 3, 824, 412, 0, 1944, 1946, 5, 30, 0, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1944, 1, 0, 0, 0, 1946, 105, 1, 0, 0, 0, 1947, 1949, 5, 169, 0, 0, 1948, 1950, 5, 107, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1953, 3, 778, 389, 0, 1952, 1954, 3, 138, 69, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1957, 7, 18, 0, 0, 1956, 1958, 5, 297, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1962, 1, 0, 0, 0, 1959, 1963, 3, 814, 407, 0, 1960, 1963, 5, 343, 0, 0, 1961, 1963, 5, 344, 0, 0, 1962, 1959, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1961, 1, 0, 0, 0, 1963, 1969, 1, 0, 0, 0, 1964, 1966, 5, 100, 0, 0, 1965, 1964, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 5, 184, 0, 0, 1968, 1970, 3, 814, 407, 0, 1969, 1965, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1972, 1, 0, 0, 0, 1971, 1973, 5, 105, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 3, 110, 55, 0, 1975, 1977, 3, 634, 317, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1997, 1, 0, 0, 0, 1978, 1979, 5, 169, 0, 0, 1979, 1980, 5, 2, 0, 0, 1980, 1981, 3, 524, 262, 0, 1981, 1982, 5, 3, 0, 0, 1982, 1984, 5, 94, 0, 0, 1983, 1985, 5, 297, 0, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1989, 1, 0, 0, 0, 1986, 1990, 3, 814, 407, 0, 1987, 1990, 5, 343, 0, 0, 1988, 1990, 5, 344, 0, 0, 1989, 1986, 1, 0, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1988, 1, 0, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1993, 5, 105, 0, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 3, 110, 55, 0, 1995, 1997, 1, 0, 0, 0, 1996, 1947, 1, 0, 0, 0, 1996, 1978, 1, 0, 0, 0, 1997, 107, 1, 0, 0, 0, 1998, 2041, 5, 107, 0, 0, 1999, 2041, 5, 112, 0, 0, 2000, 2002, 7, 19, 0, 0, 2001, 2003, 5, 36, 0, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2041, 3, 814, 407, 0, 2005, 2041, 5, 171, 0, 0, 2006, 2041, 5, 216, 0, 0, 2007, 2008, 5, 209, 0, 0, 2008, 2011, 5, 298, 0, 0, 2009, 2012, 3, 142, 71, 0, 2010, 2012, 5, 9, 0, 0, 2011, 2009, 1, 0, 0, 0, 2011, 2010, 1, 0, 0, 0, 2012, 2041, 1, 0, 0, 0, 2013, 2015, 5, 209, 0, 0, 2014, 2016, 5, 77, 0, 0, 2015, 2014, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 5, 78, 0, 0, 2018, 2041, 3, 142, 71, 0, 2019, 2020, 5, 194, 0, 0, 2020, 2041, 3, 814, 407, 0, 2021, 2038, 7, 20, 0, 0, 2022, 2025, 5, 2, 0, 0, 2023, 2026, 3, 142, 71, 0, 2024, 2026, 5, 9, 0, 0, 2025, 2023, 1, 0, 0, 0, 2025, 2024, 1, 0, 0, 0, 2026, 2034, 1, 0, 0, 0, 2027, 2030, 5, 6, 0, 0, 2028, 2031, 3, 142, 71, 0, 2029, 2031, 5, 9, 0, 0, 2030, 2028, 1, 0, 0, 0, 2030, 2029, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 2027, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2039, 5, 3, 0, 0, 2038, 2022, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 1, 0, 0, 0, 2040, 1998, 1, 0, 0, 0, 2040, 1999, 1, 0, 0, 0, 2040, 2000, 1, 0, 0, 0, 2040, 2005, 1, 0, 0, 0, 2040, 2006, 1, 0, 0, 0, 2040, 2007, 1, 0, 0, 0, 2040, 2013, 1, 0, 0, 0, 2040, 2019, 1, 0, 0, 0, 2040, 2021, 1, 0, 0, 0, 2041, 2044, 1, 0, 0, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 109, 1, 0, 0, 0, 2044, 2042, 1, 0, 0, 0, 2045, 2064, 3, 108, 54, 0, 2046, 2049, 5, 2, 0, 0, 2047, 2050, 3, 108, 54, 0, 2048, 2050, 3, 112, 56, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2048, 1, 0, 0, 0, 2050, 2058, 1, 0, 0, 0, 2051, 2054, 5, 6, 0, 0, 2052, 2055, 3, 108, 54, 0, 2053, 2055, 3, 112, 56, 0, 2054, 2052, 1, 0, 0, 0, 2054, 2053, 1, 0, 0, 0, 2055, 2057, 1, 0, 0, 0, 2056, 2051, 1, 0, 0, 0, 2057, 2060, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2061, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2062, 5, 3, 0, 0, 2062, 2064, 1, 0, 0, 0, 2063, 2045, 1, 0, 0, 0, 2063, 2046, 1, 0, 0, 0, 2064, 111, 1, 0, 0, 0, 2065, 2080, 3, 830, 415, 0, 2066, 2081, 3, 54, 27, 0, 2067, 2081, 3, 196, 98, 0, 2068, 2081, 5, 9, 0, 0, 2069, 2070, 5, 2, 0, 0, 2070, 2075, 3, 52, 26, 0, 2071, 2072, 5, 6, 0, 0, 2072, 2074, 3, 52, 26, 0, 2073, 2071, 1, 0, 0, 0, 2074, 2077, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2075, 1, 0, 0, 0, 2078, 2079, 5, 3, 0, 0, 2079, 2081, 1, 0, 0, 0, 2080, 2066, 1, 0, 0, 0, 2080, 2067, 1, 0, 0, 0, 2080, 2068, 1, 0, 0, 0, 2080, 2069, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 113, 1, 0, 0, 0, 2082, 2084, 5, 46, 0, 0, 2083, 2085, 3, 116, 58, 0, 2084, 2083, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2088, 5, 92, 0, 0, 2087, 2089, 3, 288, 144, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2156, 3, 776, 388, 0, 2091, 2093, 5, 2, 0, 0, 2092, 2094, 3, 120, 60, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 5, 3, 0, 0, 2096, 2098, 3, 158, 79, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2101, 3, 160, 80, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2103, 1, 0, 0, 0, 2102, 2104, 3, 164, 82, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2107, 3, 166, 83, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2109, 1, 0, 0, 0, 2108, 2110, 3, 168, 84, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 170, 85, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2157, 1, 0, 0, 0, 2114, 2115, 5, 275, 0, 0, 2115, 2117, 3, 310, 155, 0, 2116, 2118, 3, 118, 59, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 160, 80, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 164, 82, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 166, 83, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2130, 3, 168, 84, 0, 2129, 2128, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2132, 1, 0, 0, 0, 2131, 2133, 3, 170, 85, 0, 2132, 2131, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2157, 1, 0, 0, 0, 2134, 2135, 5, 285, 0, 0, 2135, 2136, 5, 275, 0, 0, 2136, 2138, 3, 784, 392, 0, 2137, 2139, 3, 118, 59, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 3, 98, 49, 0, 2141, 2143, 3, 160, 80, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 164, 82, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 1, 0, 0, 0, 2147, 2149, 3, 166, 83, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2152, 3, 168, 84, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2154, 1, 0, 0, 0, 2153, 2155, 3, 170, 85, 0, 2154, 2153, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 1, 0, 0, 0, 2156, 2091, 1, 0, 0, 0, 2156, 2114, 1, 0, 0, 0, 2156, 2134, 1, 0, 0, 0, 2157, 115, 1, 0, 0, 0, 2158, 2164, 5, 354, 0, 0, 2159, 2164, 5, 352, 0, 0, 2160, 2161, 7, 21, 0, 0, 2161, 2164, 7, 22, 0, 0, 2162, 2164, 5, 367, 0, 0, 2163, 2158, 1, 0, 0, 0, 2163, 2159, 1, 0, 0, 0, 2163, 2160, 1, 0, 0, 0, 2163, 2162, 1, 0, 0, 0, 2164, 117, 1, 0, 0, 0, 2165, 2166, 5, 2, 0, 0, 2166, 2171, 3, 124, 62, 0, 2167, 2168, 5, 6, 0, 0, 2168, 2170, 3, 124, 62, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2173, 1, 0, 0, 0, 2171, 2169, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2175, 5, 3, 0, 0, 2175, 119, 1, 0, 0, 0, 2176, 2181, 3, 122, 61, 0, 2177, 2178, 5, 6, 0, 0, 2178, 2180, 3, 122, 61, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2183, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 121, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2185, 5, 45, 0, 0, 2185, 2187, 3, 824, 412, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2200, 3, 136, 68, 0, 2189, 2200, 3, 126, 63, 0, 2190, 2191, 5, 120, 0, 0, 2191, 2196, 3, 784, 392, 0, 2192, 2193, 7, 23, 0, 0, 2193, 2195, 3, 134, 67, 0, 2194, 2192, 1, 0, 0, 0, 2195, 2198, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2186, 1, 0, 0, 0, 2199, 2189, 1, 0, 0, 0, 2199, 2190, 1, 0, 0, 0, 2200, 123, 1, 0, 0, 0, 2201, 2204, 3, 808, 404, 0, 2202, 2203, 5, 105, 0, 0, 2203, 2205, 5, 280, 0, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 2209, 1, 0, 0, 0, 2206, 2208, 3, 128, 64, 0, 2207, 2206, 1, 0, 0, 0, 2208, 2211, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2218, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2212, 2213, 5, 45, 0, 0, 2213, 2215, 3, 824, 412, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2218, 3, 136, 68, 0, 2217, 2201, 1, 0, 0, 0, 2217, 2214, 1, 0, 0, 0, 2218, 125, 1, 0, 0, 0, 2219, 2220, 3, 808, 404, 0, 2220, 2222, 3, 648, 324, 0, 2221, 2223, 3, 214, 107, 0, 2222, 2221, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2233, 1, 0, 0, 0, 2224, 2231, 5, 345, 0, 0, 2225, 2232, 5, 544, 0, 0, 2226, 2232, 5, 205, 0, 0, 2227, 2232, 5, 545, 0, 0, 2228, 2232, 5, 546, 0, 0, 2229, 2232, 5, 53, 0, 0, 2230, 2232, 3, 824, 412, 0, 2231, 2225, 1, 0, 0, 0, 2231, 2226, 1, 0, 0, 0, 2231, 2227, 1, 0, 0, 0, 2231, 2228, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2231, 2230, 1, 0, 0, 0, 2232, 2234, 1, 0, 0, 0, 2233, 2224, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2237, 1, 0, 0, 0, 2235, 2236, 5, 543, 0, 0, 2236, 2238, 3, 824, 412, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2240, 1, 0, 0, 0, 2239, 2241, 3, 90, 45, 0, 2240, 2239, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2244, 1, 0, 0, 0, 2242, 2243, 5, 105, 0, 0, 2243, 2245, 5, 280, 0, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2249, 1, 0, 0, 0, 2246, 2248, 3, 128, 64, 0, 2247, 2246, 1, 0, 0, 0, 2248, 2251, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 127, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2253, 5, 45, 0, 0, 2253, 2255, 3, 824, 412, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2261, 3, 130, 65, 0, 2257, 2259, 5, 77, 0, 0, 2258, 2257, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2262, 5, 54, 0, 0, 2261, 2258, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2264, 5, 69, 0, 0, 2264, 2266, 7, 9, 0, 0, 2265, 2263, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 129, 1, 0, 0, 0, 2267, 2269, 5, 77, 0, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2348, 5, 78, 0, 0, 2271, 2273, 5, 98, 0, 0, 2272, 2274, 3, 394, 197, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2276, 1, 0, 0, 0, 2275, 2277, 3, 172, 86, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2348, 1, 0, 0, 0, 2278, 2284, 5, 98, 0, 0, 2279, 2281, 5, 273, 0, 0, 2280, 2282, 5, 77, 0, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2285, 5, 56, 0, 0, 2284, 2279, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2287, 5, 441, 0, 0, 2287, 2289, 3, 354, 177, 0, 2288, 2286, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2291, 1, 0, 0, 0, 2290, 2292, 3, 566, 283, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2295, 3, 172, 86, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2348, 1, 0, 0, 0, 2296, 2297, 5, 85, 0, 0, 2297, 2299, 5, 245, 0, 0, 2298, 2300, 3, 394, 197, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 3, 172, 86, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2348, 1, 0, 0, 0, 2304, 2305, 5, 42, 0, 0, 2305, 2306, 5, 2, 0, 0, 2306, 2307, 3, 670, 335, 0, 2307, 2310, 5, 3, 0, 0, 2308, 2309, 5, 269, 0, 0, 2309, 2311, 5, 228, 0, 0, 2310, 2308, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2348, 1, 0, 0, 0, 2312, 2313, 5, 53, 0, 0, 2313, 2348, 3, 678, 339, 0, 2314, 2315, 5, 438, 0, 0, 2315, 2316, 3, 132, 66, 0, 2316, 2333, 5, 36, 0, 0, 2317, 2326, 5, 219, 0, 0, 2318, 2320, 5, 2, 0, 0, 2319, 2321, 3, 194, 97, 0, 2320, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2325, 5, 3, 0, 0, 2325, 2327, 1, 0, 0, 0, 2326, 2318, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2334, 1, 0, 0, 0, 2328, 2329, 5, 2, 0, 0, 2329, 2330, 3, 670, 335, 0, 2330, 2331, 5, 3, 0, 0, 2331, 2332, 5, 440, 0, 0, 2332, 2334, 1, 0, 0, 0, 2333, 2317, 1, 0, 0, 0, 2333, 2328, 1, 0, 0, 0, 2334, 2348, 1, 0, 0, 0, 2335, 2336, 5, 86, 0, 0, 2336, 2338, 3, 784, 392, 0, 2337, 2339, 3, 138, 69, 0, 2338, 2337, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2341, 1, 0, 0, 0, 2340, 2342, 3, 146, 73, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2344, 1, 0, 0, 0, 2343, 2345, 3, 150, 75, 0, 2344, 2343, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2348, 3, 90, 45, 0, 2347, 2268, 1, 0, 0, 0, 2347, 2271, 1, 0, 0, 0, 2347, 2278, 1, 0, 0, 0, 2347, 2296, 1, 0, 0, 0, 2347, 2304, 1, 0, 0, 0, 2347, 2312, 1, 0, 0, 0, 2347, 2314, 1, 0, 0, 0, 2347, 2335, 1, 0, 0, 0, 2347, 2346, 1, 0, 0, 0, 2348, 131, 1, 0, 0, 0, 2349, 2353, 5, 139, 0, 0, 2350, 2351, 5, 147, 0, 0, 2351, 2353, 5, 53, 0, 0, 2352, 2349, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2353, 133, 1, 0, 0, 0, 2354, 2355, 7, 24, 0, 0, 2355, 135, 1, 0, 0, 0, 2356, 2357, 5, 42, 0, 0, 2357, 2358, 5, 2, 0, 0, 2358, 2359, 3, 670, 335, 0, 2359, 2363, 5, 3, 0, 0, 2360, 2362, 3, 266, 133, 0, 2361, 2360, 1, 0, 0, 0, 2362, 2365, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2453, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2370, 5, 98, 0, 0, 2367, 2368, 5, 85, 0, 0, 2368, 2370, 5, 245, 0, 0, 2369, 2366, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2394, 1, 0, 0, 0, 2371, 2373, 3, 138, 69, 0, 2372, 2374, 3, 144, 72, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2376, 1, 0, 0, 0, 2375, 2377, 3, 394, 197, 0, 2376, 2375, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 1, 0, 0, 0, 2378, 2380, 3, 172, 86, 0, 2379, 2378, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2384, 1, 0, 0, 0, 2381, 2383, 3, 266, 133, 0, 2382, 2381, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2395, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2387, 2391, 3, 174, 87, 0, 2388, 2390, 3, 266, 133, 0, 2389, 2388, 1, 0, 0, 0, 2390, 2393, 1, 0, 0, 0, 2391, 2389, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2395, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2394, 2371, 1, 0, 0, 0, 2394, 2387, 1, 0, 0, 0, 2395, 2453, 1, 0, 0, 0, 2396, 2398, 5, 199, 0, 0, 2397, 2399, 3, 164, 82, 0, 2398, 2397, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 5, 2, 0, 0, 2401, 2406, 3, 148, 74, 0, 2402, 2403, 5, 6, 0, 0, 2403, 2405, 3, 148, 74, 0, 2404, 2402, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2411, 5, 3, 0, 0, 2410, 2412, 3, 144, 72, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 1, 0, 0, 0, 2413, 2415, 3, 394, 197, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2418, 3, 172, 86, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2424, 1, 0, 0, 0, 2419, 2420, 5, 103, 0, 0, 2420, 2421, 5, 2, 0, 0, 2421, 2422, 3, 670, 335, 0, 2422, 2423, 5, 3, 0, 0, 2423, 2425, 1, 0, 0, 0, 2424, 2419, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2429, 1, 0, 0, 0, 2426, 2428, 3, 266, 133, 0, 2427, 2426, 1, 0, 0, 0, 2428, 2431, 1, 0, 0, 0, 2429, 2427, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2453, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2432, 2433, 5, 63, 0, 0, 2433, 2434, 5, 245, 0, 0, 2434, 2435, 3, 138, 69, 0, 2435, 2436, 5, 86, 0, 0, 2436, 2438, 3, 784, 392, 0, 2437, 2439, 3, 138, 69, 0, 2438, 2437, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 1, 0, 0, 0, 2440, 2442, 3, 146, 73, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2444, 1, 0, 0, 0, 2443, 2445, 3, 150, 75, 0, 2444, 2443, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2449, 1, 0, 0, 0, 2446, 2448, 3, 266, 133, 0, 2447, 2446, 1, 0, 0, 0, 2448, 2451, 1, 0, 0, 0, 2449, 2447, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2453, 1, 0, 0, 0, 2451, 2449, 1, 0, 0, 0, 2452, 2356, 1, 0, 0, 0, 2452, 2369, 1, 0, 0, 0, 2452, 2396, 1, 0, 0, 0, 2452, 2432, 1, 0, 0, 0, 2453, 137, 1, 0, 0, 0, 2454, 2455, 5, 2, 0, 0, 2455, 2456, 3, 142, 71, 0, 2456, 2457, 5, 3, 0, 0, 2457, 139, 1, 0, 0, 0, 2458, 2459, 5, 2, 0, 0, 2459, 2464, 3, 808, 404, 0, 2460, 2461, 5, 6, 0, 0, 2461, 2463, 3, 808, 404, 0, 2462, 2460, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2467, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2468, 5, 3, 0, 0, 2468, 141, 1, 0, 0, 0, 2469, 2474, 3, 804, 402, 0, 2470, 2471, 5, 6, 0, 0, 2471, 2473, 3, 804, 402, 0, 2472, 2470, 1, 0, 0, 0, 2473, 2476, 1, 0, 0, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 143, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2477, 2478, 5, 441, 0, 0, 2478, 2479, 3, 138, 69, 0, 2479, 145, 1, 0, 0, 0, 2480, 2481, 5, 258, 0, 0, 2481, 2482, 7, 25, 0, 0, 2482, 147, 1, 0, 0, 0, 2483, 2484, 3, 356, 178, 0, 2484, 2491, 5, 105, 0, 0, 2485, 2492, 3, 408, 204, 0, 2486, 2487, 5, 278, 0, 0, 2487, 2488, 5, 2, 0, 0, 2488, 2489, 3, 408, 204, 0, 2489, 2490, 5, 3, 0, 0, 2490, 2492, 1, 0, 0, 0, 2491, 2485, 1, 0, 0, 0, 2491, 2486, 1, 0, 0, 0, 2492, 149, 1, 0, 0, 0, 2493, 2495, 3, 152, 76, 0, 2494, 2496, 3, 154, 77, 0, 2495, 2494, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2502, 1, 0, 0, 0, 2497, 2499, 3, 154, 77, 0, 2498, 2500, 3, 152, 76, 0, 2499, 2498, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2502, 1, 0, 0, 0, 2501, 2493, 1, 0, 0, 0, 2501, 2497, 1, 0, 0, 0, 2502, 151, 1, 0, 0, 0, 2503, 2504, 5, 80, 0, 0, 2504, 2505, 5, 369, 0, 0, 2505, 2506, 3, 156, 78, 0, 2506, 153, 1, 0, 0, 0, 2507, 2508, 5, 80, 0, 0, 2508, 2509, 5, 182, 0, 0, 2509, 2510, 3, 156, 78, 0, 2510, 155, 1, 0, 0, 0, 2511, 2512, 5, 269, 0, 0, 2512, 2521, 5, 132, 0, 0, 2513, 2521, 5, 315, 0, 0, 2514, 2521, 5, 150, 0, 0, 2515, 2516, 5, 333, 0, 0, 2516, 2518, 7, 26, 0, 0, 2517, 2519, 3, 142, 71, 0, 2518, 2517, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2521, 1, 0, 0, 0, 2520, 2511, 1, 0, 0, 0, 2520, 2513, 1, 0, 0, 0, 2520, 2514, 1, 0, 0, 0, 2520, 2515, 1, 0, 0, 0, 2521, 157, 1, 0, 0, 0, 2522, 2523, 5, 238, 0, 0, 2523, 2524, 5, 2, 0, 0, 2524, 2525, 3, 764, 382, 0, 2525, 2526, 5, 3, 0, 0, 2526, 159, 1, 0, 0, 0, 2527, 2528, 5, 285, 0, 0, 2528, 2529, 5, 147, 0, 0, 2529, 2530, 3, 824, 412, 0, 2530, 2531, 5, 2, 0, 0, 2531, 2536, 3, 162, 81, 0, 2532, 2533, 5, 6, 0, 0, 2533, 2535, 3, 162, 81, 0, 2534, 2532, 1, 0, 0, 0, 2535, 2538, 1, 0, 0, 0, 2536, 2534, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2539, 2540, 5, 3, 0, 0, 2540, 161, 1, 0, 0, 0, 2541, 2548, 3, 804, 402, 0, 2542, 2548, 3, 684, 342, 0, 2543, 2544, 5, 2, 0, 0, 2544, 2545, 3, 670, 335, 0, 2545, 2546, 5, 3, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2541, 1, 0, 0, 0, 2547, 2542, 1, 0, 0, 0, 2547, 2543, 1, 0, 0, 0, 2548, 2550, 1, 0, 0, 0, 2549, 2551, 3, 90, 45, 0, 2550, 2549, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2553, 1, 0, 0, 0, 2552, 2554, 3, 310, 155, 0, 2553, 2552, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 163, 1, 0, 0, 0, 2555, 2556, 5, 100, 0, 0, 2556, 2557, 3, 824, 412, 0, 2557, 165, 1, 0, 0, 0, 2558, 2559, 5, 105, 0, 0, 2559, 2563, 3, 92, 46, 0, 2560, 2561, 7, 27, 0, 0, 2561, 2563, 5, 277, 0, 0, 2562, 2558, 1, 0, 0, 0, 2562, 2560, 1, 0, 0, 0, 2563, 167, 1, 0, 0, 0, 2564, 2565, 5, 80, 0, 0, 2565, 2571, 5, 161, 0, 0, 2566, 2572, 5, 191, 0, 0, 2567, 2568, 5, 182, 0, 0, 2568, 2572, 5, 320, 0, 0, 2569, 2570, 5, 292, 0, 0, 2570, 2572, 5, 320, 0, 0, 2571, 2566, 1, 0, 0, 0, 2571, 2567, 1, 0, 0, 0, 2571, 2569, 1, 0, 0, 0, 2572, 169, 1, 0, 0, 0, 2573, 2574, 5, 351, 0, 0, 2574, 2575, 3, 774, 387, 0, 2575, 171, 1, 0, 0, 0, 2576, 2577, 5, 100, 0, 0, 2577, 2578, 5, 226, 0, 0, 2578, 2579, 3, 170, 85, 0, 2579, 173, 1, 0, 0, 0, 2580, 2581, 5, 100, 0, 0, 2581, 2582, 5, 226, 0, 0, 2582, 2583, 3, 824, 412, 0, 2583, 175, 1, 0, 0, 0, 2584, 2585, 5, 46, 0, 0, 2585, 2590, 5, 342, 0, 0, 2586, 2588, 3, 288, 144, 0, 2587, 2586, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 3, 310, 155, 0, 2590, 2587, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2593, 1, 0, 0, 0, 2592, 2594, 3, 138, 69, 0, 2593, 2592, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2605, 5, 80, 0, 0, 2596, 2601, 3, 734, 367, 0, 2597, 2598, 5, 6, 0, 0, 2598, 2600, 3, 734, 367, 0, 2599, 2597, 1, 0, 0, 0, 2600, 2603, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2606, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2604, 2606, 3, 728, 364, 0, 2605, 2596, 1, 0, 0, 0, 2605, 2604, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2608, 3, 604, 302, 0, 2608, 177, 1, 0, 0, 0, 2609, 2610, 5, 138, 0, 0, 2610, 2612, 5, 342, 0, 0, 2611, 2613, 3, 416, 208, 0, 2612, 2611, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 3, 310, 155, 0, 2615, 2616, 5, 333, 0, 0, 2616, 2617, 5, 342, 0, 0, 2617, 2618, 3, 818, 409, 0, 2618, 179, 1, 0, 0, 0, 2619, 2621, 5, 46, 0, 0, 2620, 2622, 3, 116, 58, 0, 2621, 2620, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2625, 5, 92, 0, 0, 2624, 2626, 3, 288, 144, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2628, 3, 182, 91, 0, 2628, 2629, 5, 36, 0, 0, 2629, 2631, 3, 554, 277, 0, 2630, 2632, 3, 184, 92, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 181, 1, 0, 0, 0, 2633, 2635, 3, 776, 388, 0, 2634, 2636, 3, 140, 70, 0, 2635, 2634, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2638, 1, 0, 0, 0, 2637, 2639, 3, 164, 82, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2641, 1, 0, 0, 0, 2640, 2642, 3, 166, 83, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2645, 3, 168, 84, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2648, 3, 170, 85, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 183, 1, 0, 0, 0, 2649, 2653, 5, 105, 0, 0, 2650, 2654, 5, 174, 0, 0, 2651, 2652, 5, 269, 0, 0, 2652, 2654, 5, 174, 0, 0, 2653, 2650, 1, 0, 0, 0, 2653, 2651, 1, 0, 0, 0, 2654, 185, 1, 0, 0, 0, 2655, 2657, 5, 46, 0, 0, 2656, 2658, 5, 367, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 5, 259, 0, 0, 2660, 2662, 5, 376, 0, 0, 2661, 2663, 3, 288, 144, 0, 2662, 2661, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2666, 3, 780, 390, 0, 2665, 2667, 3, 140, 70, 0, 2666, 2665, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2669, 1, 0, 0, 0, 2668, 2670, 3, 164, 82, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2673, 3, 94, 47, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2676, 3, 170, 85, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 5, 36, 0, 0, 2678, 2680, 3, 554, 277, 0, 2679, 2681, 3, 184, 92, 0, 2680, 2679, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 187, 1, 0, 0, 0, 2682, 2683, 5, 305, 0, 0, 2683, 2684, 5, 259, 0, 0, 2684, 2686, 5, 376, 0, 0, 2685, 2687, 5, 109, 0, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 3, 782, 391, 0, 2689, 2691, 3, 184, 92, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 189, 1, 0, 0, 0, 2692, 2694, 5, 46, 0, 0, 2693, 2695, 3, 116, 58, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2698, 5, 328, 0, 0, 2697, 2699, 3, 288, 144, 0, 2698, 2697, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2706, 3, 784, 392, 0, 2701, 2703, 3, 194, 97, 0, 2702, 2701, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2707, 1, 0, 0, 0, 2706, 2702, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 191, 1, 0, 0, 0, 2708, 2709, 5, 138, 0, 0, 2709, 2711, 5, 328, 0, 0, 2710, 2712, 3, 416, 208, 0, 2711, 2710, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2715, 3, 784, 392, 0, 2714, 2716, 3, 194, 97, 0, 2715, 2714, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2715, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 193, 1, 0, 0, 0, 2719, 2720, 5, 36, 0, 0, 2720, 2753, 3, 650, 325, 0, 2721, 2723, 5, 148, 0, 0, 2722, 2724, 3, 196, 98, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2753, 1, 0, 0, 0, 2725, 2727, 5, 225, 0, 0, 2726, 2728, 5, 147, 0, 0, 2727, 2726, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 2753, 3, 196, 98, 0, 2730, 2731, 7, 28, 0, 0, 2731, 2753, 3, 196, 98, 0, 2732, 2733, 5, 269, 0, 0, 2733, 2753, 7, 29, 0, 0, 2734, 2735, 5, 281, 0, 0, 2735, 2736, 5, 147, 0, 0, 2736, 2753, 3, 804, 402, 0, 2737, 2738, 5, 328, 0, 0, 2738, 2739, 5, 266, 0, 0, 2739, 2753, 3, 310, 155, 0, 2740, 2742, 5, 340, 0, 0, 2741, 2743, 5, 105, 0, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2753, 3, 196, 98, 0, 2745, 2747, 5, 314, 0, 0, 2746, 2748, 5, 105, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2750, 1, 0, 0, 0, 2749, 2751, 3, 196, 98, 0, 2750, 2749, 1, 0, 0, 0, 2750, 2751, 1, 0, 0, 0, 2751, 2753, 1, 0, 0, 0, 2752, 2719, 1, 0, 0, 0, 2752, 2721, 1, 0, 0, 0, 2752, 2725, 1, 0, 0, 0, 2752, 2730, 1, 0, 0, 0, 2752, 2732, 1, 0, 0, 0, 2752, 2734, 1, 0, 0, 0, 2752, 2737, 1, 0, 0, 0, 2752, 2740, 1, 0, 0, 0, 2752, 2745, 1, 0, 0, 0, 2753, 195, 1, 0, 0, 0, 2754, 2756, 7, 30, 0, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2760, 5, 576, 0, 0, 2758, 2760, 3, 818, 409, 0, 2759, 2755, 1, 0, 0, 0, 2759, 2758, 1, 0, 0, 0, 2760, 197, 1, 0, 0, 0, 2761, 2763, 5, 46, 0, 0, 2762, 2764, 3, 360, 180, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2766, 1, 0, 0, 0, 2765, 2767, 5, 359, 0, 0, 2766, 2765, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2770, 5, 295, 0, 0, 2769, 2768, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2772, 5, 247, 0, 0, 2772, 2785, 3, 824, 412, 0, 2773, 2774, 5, 215, 0, 0, 2774, 2777, 3, 310, 155, 0, 2775, 2776, 5, 239, 0, 0, 2776, 2778, 3, 310, 155, 0, 2777, 2775, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2783, 1, 0, 0, 0, 2779, 2780, 5, 373, 0, 0, 2780, 2784, 3, 310, 155, 0, 2781, 2782, 5, 269, 0, 0, 2782, 2784, 5, 373, 0, 0, 2783, 2779, 1, 0, 0, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2786, 1, 0, 0, 0, 2785, 2773, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 199, 1, 0, 0, 0, 2787, 2788, 5, 46, 0, 0, 2788, 2791, 3, 170, 85, 0, 2789, 2790, 5, 282, 0, 0, 2790, 2792, 3, 820, 410, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 5, 255, 0, 0, 2794, 2796, 3, 814, 407, 0, 2795, 2797, 3, 94, 47, 0, 2796, 2795, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 201, 1, 0, 0, 0, 2798, 2799, 5, 46, 0, 0, 2799, 2801, 5, 204, 0, 0, 2800, 2802, 3, 288, 144, 0, 2801, 2800, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2805, 3, 824, 412, 0, 2804, 2806, 5, 105, 0, 0, 2805, 2804, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2814, 1, 0, 0, 0, 2807, 2808, 5, 323, 0, 0, 2808, 2813, 3, 794, 397, 0, 2809, 2810, 7, 31, 0, 0, 2810, 2813, 3, 58, 29, 0, 2811, 2813, 5, 150, 0, 0, 2812, 2807, 1, 0, 0, 0, 2812, 2809, 1, 0, 0, 0, 2812, 2811, 1, 0, 0, 0, 2813, 2816, 1, 0, 0, 0, 2814, 2812, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 203, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2817, 2818, 5, 138, 0, 0, 2818, 2819, 5, 204, 0, 0, 2819, 2820, 3, 824, 412, 0, 2820, 2825, 5, 369, 0, 0, 2821, 2822, 5, 94, 0, 0, 2822, 2824, 3, 58, 29, 0, 2823, 2821, 1, 0, 0, 0, 2824, 2827, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 205, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2828, 2829, 5, 138, 0, 0, 2829, 2830, 5, 204, 0, 0, 2830, 2831, 3, 824, 412, 0, 2831, 2864, 7, 6, 0, 0, 2832, 2833, 5, 443, 0, 0, 2833, 2834, 5, 62, 0, 0, 2834, 2835, 3, 648, 324, 0, 2835, 2836, 5, 247, 0, 0, 2836, 2837, 3, 824, 412, 0, 2837, 2865, 1, 0, 0, 0, 2838, 2839, 5, 442, 0, 0, 2839, 2865, 3, 368, 184, 0, 2840, 2841, 5, 296, 0, 0, 2841, 2865, 3, 372, 186, 0, 2842, 2843, 5, 278, 0, 0, 2843, 2844, 7, 32, 0, 0, 2844, 2845, 3, 310, 155, 0, 2845, 2846, 3, 164, 82, 0, 2846, 2865, 1, 0, 0, 0, 2847, 2848, 5, 278, 0, 0, 2848, 2865, 3, 410, 205, 0, 2849, 2850, 5, 211, 0, 0, 2850, 2865, 3, 376, 188, 0, 2851, 2852, 7, 33, 0, 0, 2852, 2865, 3, 648, 324, 0, 2853, 2854, 5, 41, 0, 0, 2854, 2855, 5, 2, 0, 0, 2855, 2856, 3, 648, 324, 0, 2856, 2857, 5, 36, 0, 0, 2857, 2858, 3, 648, 324, 0, 2858, 2859, 5, 3, 0, 0, 2859, 2865, 1, 0, 0, 0, 2860, 2861, 5, 136, 0, 0, 2861, 2865, 3, 388, 194, 0, 2862, 2865, 3, 306, 153, 0, 2863, 2865, 3, 304, 152, 0, 2864, 2832, 1, 0, 0, 0, 2864, 2838, 1, 0, 0, 0, 2864, 2840, 1, 0, 0, 0, 2864, 2842, 1, 0, 0, 0, 2864, 2847, 1, 0, 0, 0, 2864, 2849, 1, 0, 0, 0, 2864, 2851, 1, 0, 0, 0, 2864, 2853, 1, 0, 0, 0, 2864, 2860, 1, 0, 0, 0, 2864, 2862, 1, 0, 0, 0, 2864, 2863, 1, 0, 0, 0, 2865, 207, 1, 0, 0, 0, 2866, 2867, 5, 46, 0, 0, 2867, 2868, 5, 63, 0, 0, 2868, 2869, 5, 174, 0, 0, 2869, 2870, 5, 381, 0, 0, 2870, 2876, 3, 824, 412, 0, 2871, 2873, 3, 210, 105, 0, 2872, 2871, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2872, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2877, 1, 0, 0, 0, 2876, 2872, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2879, 1, 0, 0, 0, 2878, 2880, 3, 214, 107, 0, 2879, 2878, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 209, 1, 0, 0, 0, 2881, 2883, 7, 34, 0, 0, 2882, 2884, 3, 310, 155, 0, 2883, 2882, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2888, 1, 0, 0, 0, 2885, 2886, 5, 269, 0, 0, 2886, 2888, 7, 34, 0, 0, 2887, 2881, 1, 0, 0, 0, 2887, 2885, 1, 0, 0, 0, 2888, 211, 1, 0, 0, 0, 2889, 2890, 5, 138, 0, 0, 2890, 2891, 5, 63, 0, 0, 2891, 2892, 5, 174, 0, 0, 2892, 2893, 5, 381, 0, 0, 2893, 2907, 3, 824, 412, 0, 2894, 2896, 3, 210, 105, 0, 2895, 2894, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2895, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2908, 3, 216, 108, 0, 2902, 2904, 3, 210, 105, 0, 2903, 2902, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 2903, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2908, 1, 0, 0, 0, 2907, 2899, 1, 0, 0, 0, 2907, 2903, 1, 0, 0, 0, 2908, 213, 1, 0, 0, 0, 2909, 2910, 5, 280, 0, 0, 2910, 2911, 5, 2, 0, 0, 2911, 2916, 3, 220, 110, 0, 2912, 2913, 5, 6, 0, 0, 2913, 2915, 3, 220, 110, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2918, 1, 0, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2919, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2920, 5, 3, 0, 0, 2920, 215, 1, 0, 0, 0, 2921, 2922, 5, 280, 0, 0, 2922, 2923, 5, 2, 0, 0, 2923, 2928, 3, 218, 109, 0, 2924, 2925, 5, 6, 0, 0, 2925, 2927, 3, 218, 109, 0, 2926, 2924, 1, 0, 0, 0, 2927, 2930, 1, 0, 0, 0, 2928, 2926, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2931, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2931, 2932, 5, 3, 0, 0, 2932, 217, 1, 0, 0, 0, 2933, 2934, 7, 35, 0, 0, 2934, 2935, 3, 220, 110, 0, 2935, 219, 1, 0, 0, 0, 2936, 2937, 3, 830, 415, 0, 2937, 2938, 3, 814, 407, 0, 2938, 221, 1, 0, 0, 0, 2939, 2940, 5, 46, 0, 0, 2940, 2942, 5, 331, 0, 0, 2941, 2943, 3, 288, 144, 0, 2942, 2941, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2947, 3, 824, 412, 0, 2945, 2946, 5, 360, 0, 0, 2946, 2948, 3, 814, 407, 0, 2947, 2945, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2950, 1, 0, 0, 0, 2949, 2951, 3, 224, 112, 0, 2950, 2949, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2953, 5, 63, 0, 0, 2953, 2954, 5, 174, 0, 0, 2954, 2955, 5, 381, 0, 0, 2955, 2957, 3, 824, 412, 0, 2956, 2958, 3, 214, 107, 0, 2957, 2956, 1, 0, 0, 0, 2957, 2958, 1, 0, 0, 0, 2958, 223, 1, 0, 0, 0, 2959, 2962, 5, 375, 0, 0, 2960, 2963, 3, 814, 407, 0, 2961, 2963, 5, 78, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2961, 1, 0, 0, 0, 2963, 225, 1, 0, 0, 0, 2964, 2965, 5, 138, 0, 0, 2965, 2966, 5, 331, 0, 0, 2966, 2972, 3, 824, 412, 0, 2967, 2973, 3, 216, 108, 0, 2968, 2970, 3, 224, 112, 0, 2969, 2971, 3, 216, 108, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2973, 1, 0, 0, 0, 2972, 2967, 1, 0, 0, 0, 2972, 2968, 1, 0, 0, 0, 2973, 227, 1, 0, 0, 0, 2974, 2975, 5, 46, 0, 0, 2975, 2976, 5, 63, 0, 0, 2976, 2978, 5, 92, 0, 0, 2977, 2979, 3, 288, 144, 0, 2978, 2977, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2981, 3, 776, 388, 0, 2981, 2983, 5, 2, 0, 0, 2982, 2984, 3, 120, 60, 0, 2983, 2982, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2987, 5, 3, 0, 0, 2986, 2988, 3, 158, 79, 0, 2987, 2986, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2990, 5, 331, 0, 0, 2990, 2992, 3, 824, 412, 0, 2991, 2993, 3, 214, 107, 0, 2992, 2991, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 3014, 1, 0, 0, 0, 2994, 2995, 5, 46, 0, 0, 2995, 2996, 5, 63, 0, 0, 2996, 2998, 5, 92, 0, 0, 2997, 2999, 3, 288, 144, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3001, 3, 776, 388, 0, 3001, 3002, 5, 285, 0, 0, 3002, 3003, 5, 275, 0, 0, 3003, 3005, 3, 778, 389, 0, 3004, 3006, 3, 118, 59, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 3, 98, 49, 0, 3008, 3009, 5, 331, 0, 0, 3009, 3011, 3, 824, 412, 0, 3010, 3012, 3, 214, 107, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3014, 1, 0, 0, 0, 3013, 2974, 1, 0, 0, 0, 3013, 2994, 1, 0, 0, 0, 3014, 229, 1, 0, 0, 0, 3015, 3016, 5, 444, 0, 0, 3016, 3017, 5, 63, 0, 0, 3017, 3018, 5, 323, 0, 0, 3018, 3028, 3, 794, 397, 0, 3019, 3020, 5, 74, 0, 0, 3020, 3023, 5, 94, 0, 0, 3021, 3023, 5, 59, 0, 0, 3022, 3019, 1, 0, 0, 0, 3022, 3021, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 5, 2, 0, 0, 3025, 3026, 3, 624, 312, 0, 3026, 3027, 5, 3, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3022, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3031, 5, 64, 0, 0, 3031, 3032, 5, 331, 0, 0, 3032, 3033, 3, 824, 412, 0, 3033, 3034, 5, 71, 0, 0, 3034, 3036, 3, 824, 412, 0, 3035, 3037, 3, 214, 107, 0, 3036, 3035, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 231, 1, 0, 0, 0, 3038, 3039, 5, 46, 0, 0, 3039, 3040, 5, 99, 0, 0, 3040, 3042, 5, 257, 0, 0, 3041, 3043, 3, 288, 144, 0, 3042, 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 1, 0, 0, 0, 3044, 3047, 5, 62, 0, 0, 3045, 3048, 3, 820, 410, 0, 3046, 3048, 5, 99, 0, 0, 3047, 3045, 1, 0, 0, 0, 3047, 3046, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3050, 5, 331, 0, 0, 3050, 3052, 3, 824, 412, 0, 3051, 3053, 3, 214, 107, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 233, 1, 0, 0, 0, 3054, 3055, 5, 138, 0, 0, 3055, 3056, 5, 99, 0, 0, 3056, 3057, 5, 257, 0, 0, 3057, 3060, 5, 62, 0, 0, 3058, 3061, 3, 820, 410, 0, 3059, 3061, 5, 99, 0, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3059, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 5, 331, 0, 0, 3063, 3064, 3, 824, 412, 0, 3064, 3065, 3, 216, 108, 0, 3065, 235, 1, 0, 0, 0, 3066, 3067, 5, 46, 0, 0, 3067, 3068, 5, 445, 0, 0, 3068, 3069, 3, 824, 412, 0, 3069, 3070, 5, 80, 0, 0, 3070, 3077, 3, 784, 392, 0, 3071, 3075, 5, 36, 0, 0, 3072, 3076, 5, 541, 0, 0, 3073, 3076, 5, 542, 0, 0, 3074, 3076, 3, 832, 416, 0, 3075, 3072, 1, 0, 0, 0, 3075, 3073, 1, 0, 0, 0, 3075, 3074, 1, 0, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3071, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3081, 1, 0, 0, 0, 3079, 3080, 5, 62, 0, 0, 3080, 3082, 7, 36, 0, 0, 3081, 3079, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3085, 1, 0, 0, 0, 3083, 3084, 5, 94, 0, 0, 3084, 3086, 3, 822, 411, 0, 3085, 3083, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3088, 1, 0, 0, 0, 3087, 3089, 3, 244, 122, 0, 3088, 3087, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3092, 3, 246, 123, 0, 3091, 3090, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 237, 1, 0, 0, 0, 3093, 3094, 5, 138, 0, 0, 3094, 3095, 5, 445, 0, 0, 3095, 3096, 3, 824, 412, 0, 3096, 3097, 5, 80, 0, 0, 3097, 3100, 3, 784, 392, 0, 3098, 3099, 5, 94, 0, 0, 3099, 3101, 3, 822, 411, 0, 3100, 3098, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3103, 1, 0, 0, 0, 3102, 3104, 3, 244, 122, 0, 3103, 3102, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 3106, 1, 0, 0, 0, 3105, 3107, 3, 246, 123, 0, 3106, 3105, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 239, 1, 0, 0, 0, 3108, 3109, 5, 138, 0, 0, 3109, 3110, 5, 296, 0, 0, 3110, 3112, 3, 800, 400, 0, 3111, 3113, 3, 362, 181, 0, 3112, 3111, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3140, 1, 0, 0, 0, 3114, 3118, 3, 242, 121, 0, 3115, 3117, 3, 242, 121, 0, 3116, 3115, 1, 0, 0, 0, 3117, 3120, 1, 0, 0, 0, 3118, 3116, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3122, 1, 0, 0, 0, 3120, 3118, 1, 0, 0, 0, 3121, 3123, 5, 315, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3141, 1, 0, 0, 0, 3124, 3125, 5, 309, 0, 0, 3125, 3126, 5, 94, 0, 0, 3126, 3141, 3, 802, 401, 0, 3127, 3128, 5, 282, 0, 0, 3128, 3129, 5, 94, 0, 0, 3129, 3141, 3, 820, 410, 0, 3130, 3131, 5, 333, 0, 0, 3131, 3132, 5, 323, 0, 0, 3132, 3141, 3, 32, 16, 0, 3133, 3135, 5, 269, 0, 0, 3134, 3133, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 5, 462, 0, 0, 3137, 3138, 5, 80, 0, 0, 3138, 3139, 5, 204, 0, 0, 3139, 3141, 3, 824, 412, 0, 3140, 3114, 1, 0, 0, 0, 3140, 3124, 1, 0, 0, 0, 3140, 3127, 1, 0, 0, 0, 3140, 3130, 1, 0, 0, 0, 3140, 3134, 1, 0, 0, 0, 3141, 241, 1, 0, 0, 0, 3142, 3144, 5, 205, 0, 0, 3143, 3142, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3146, 5, 327, 0, 0, 3146, 3153, 5, 243, 0, 0, 3147, 3149, 5, 205, 0, 0, 3148, 3147, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 5, 327, 0, 0, 3151, 3153, 5, 181, 0, 0, 3152, 3143, 1, 0, 0, 0, 3152, 3148, 1, 0, 0, 0, 3153, 3172, 1, 0, 0, 0, 3154, 3155, 5, 333, 0, 0, 3155, 3156, 3, 824, 412, 0, 3156, 3159, 7, 37, 0, 0, 3157, 3160, 3, 824, 412, 0, 3158, 3160, 5, 53, 0, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3158, 1, 0, 0, 0, 3160, 3172, 1, 0, 0, 0, 3161, 3162, 5, 333, 0, 0, 3162, 3163, 3, 824, 412, 0, 3163, 3164, 5, 64, 0, 0, 3164, 3165, 5, 434, 0, 0, 3165, 3172, 1, 0, 0, 0, 3166, 3169, 5, 313, 0, 0, 3167, 3170, 3, 824, 412, 0, 3168, 3170, 5, 30, 0, 0, 3169, 3167, 1, 0, 0, 0, 3169, 3168, 1, 0, 0, 0, 3170, 3172, 1, 0, 0, 0, 3171, 3152, 1, 0, 0, 0, 3171, 3154, 1, 0, 0, 0, 3171, 3161, 1, 0, 0, 0, 3171, 3166, 1, 0, 0, 0, 3172, 243, 1, 0, 0, 0, 3173, 3174, 5, 100, 0, 0, 3174, 3175, 5, 2, 0, 0, 3175, 3176, 3, 670, 335, 0, 3176, 3177, 5, 3, 0, 0, 3177, 245, 1, 0, 0, 0, 3178, 3179, 5, 105, 0, 0, 3179, 3180, 5, 42, 0, 0, 3180, 3181, 5, 2, 0, 0, 3181, 3182, 3, 670, 335, 0, 3182, 3183, 5, 3, 0, 0, 3183, 247, 1, 0, 0, 0, 3184, 3185, 5, 46, 0, 0, 3185, 3186, 5, 131, 0, 0, 3186, 3187, 5, 446, 0, 0, 3187, 3188, 3, 824, 412, 0, 3188, 3189, 5, 360, 0, 0, 3189, 3190, 7, 38, 0, 0, 3190, 3191, 5, 215, 0, 0, 3191, 3192, 3, 310, 155, 0, 3192, 249, 1, 0, 0, 0, 3193, 3195, 5, 46, 0, 0, 3194, 3196, 3, 360, 180, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3198, 5, 357, 0, 0, 3198, 3199, 3, 824, 412, 0, 3199, 3200, 3, 252, 126, 0, 3200, 3201, 3, 254, 127, 0, 3201, 3202, 5, 80, 0, 0, 3202, 3214, 3, 778, 389, 0, 3203, 3210, 5, 447, 0, 0, 3204, 3205, 7, 39, 0, 0, 3205, 3207, 7, 40, 0, 0, 3206, 3208, 5, 36, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3211, 3, 824, 412, 0, 3210, 3204, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3210, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3215, 1, 0, 0, 0, 3214, 3203, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3221, 1, 0, 0, 0, 3216, 3218, 5, 62, 0, 0, 3217, 3219, 5, 192, 0, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3222, 7, 41, 0, 0, 3221, 3216, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 1, 0, 0, 0, 3223, 3225, 3, 258, 129, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3227, 5, 202, 0, 0, 3227, 3228, 3, 260, 130, 0, 3228, 3229, 5, 2, 0, 0, 3229, 3230, 3, 262, 131, 0, 3230, 3231, 5, 3, 0, 0, 3231, 3272, 1, 0, 0, 0, 3232, 3234, 5, 46, 0, 0, 3233, 3235, 3, 360, 180, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 5, 45, 0, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3240, 5, 357, 0, 0, 3240, 3241, 3, 824, 412, 0, 3241, 3242, 3, 252, 126, 0, 3242, 3243, 3, 254, 127, 0, 3243, 3244, 5, 80, 0, 0, 3244, 3247, 3, 778, 389, 0, 3245, 3246, 5, 64, 0, 0, 3246, 3248, 3, 784, 392, 0, 3247, 3245, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3252, 1, 0, 0, 0, 3249, 3251, 3, 266, 133, 0, 3250, 3249, 1, 0, 0, 0, 3251, 3254, 1, 0, 0, 0, 3252, 3250, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3260, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3255, 3257, 5, 62, 0, 0, 3256, 3258, 5, 192, 0, 0, 3257, 3256, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 7, 41, 0, 0, 3260, 3255, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3263, 1, 0, 0, 0, 3262, 3264, 3, 258, 129, 0, 3263, 3262, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3266, 5, 202, 0, 0, 3266, 3267, 3, 260, 130, 0, 3267, 3268, 5, 2, 0, 0, 3268, 3269, 3, 262, 131, 0, 3269, 3270, 5, 3, 0, 0, 3270, 3272, 1, 0, 0, 0, 3271, 3193, 1, 0, 0, 0, 3271, 3232, 1, 0, 0, 0, 3272, 251, 1, 0, 0, 0, 3273, 3278, 5, 145, 0, 0, 3274, 3278, 5, 135, 0, 0, 3275, 3276, 5, 242, 0, 0, 3276, 3278, 5, 275, 0, 0, 3277, 3273, 1, 0, 0, 0, 3277, 3274, 1, 0, 0, 0, 3277, 3275, 1, 0, 0, 0, 3278, 253, 1, 0, 0, 0, 3279, 3284, 3, 256, 128, 0, 3280, 3281, 5, 82, 0, 0, 3281, 3283, 3, 256, 128, 0, 3282, 3280, 1, 0, 0, 0, 3283, 3286, 1, 0, 0, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 255, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3287, 3296, 5, 241, 0, 0, 3288, 3296, 5, 182, 0, 0, 3289, 3292, 5, 369, 0, 0, 3290, 3291, 5, 275, 0, 0, 3291, 3293, 3, 142, 71, 0, 3292, 3290, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3296, 1, 0, 0, 0, 3294, 3296, 5, 358, 0, 0, 3295, 3287, 1, 0, 0, 0, 3295, 3288, 1, 0, 0, 0, 3295, 3289, 1, 0, 0, 0, 3295, 3294, 1, 0, 0, 0, 3296, 257, 1, 0, 0, 0, 3297, 3298, 5, 102, 0, 0, 3298, 3299, 5, 2, 0, 0, 3299, 3300, 3, 670, 335, 0, 3300, 3301, 5, 3, 0, 0, 3301, 259, 1, 0, 0, 0, 3302, 3303, 5, 211, 0, 0, 3303, 3307, 3, 812, 406, 0, 3304, 3305, 5, 296, 0, 0, 3305, 3307, 3, 800, 400, 0, 3306, 3302, 1, 0, 0, 0, 3306, 3304, 1, 0, 0, 0, 3307, 261, 1, 0, 0, 0, 3308, 3311, 3, 264, 132, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3310, 3309, 1, 0, 0, 0, 3311, 3316, 1, 0, 0, 0, 3312, 3313, 5, 6, 0, 0, 3313, 3315, 3, 264, 132, 0, 3314, 3312, 1, 0, 0, 0, 3315, 3318, 1, 0, 0, 0, 3316, 3314, 1, 0, 0, 0, 3316, 3317, 1, 0, 0, 0, 3317, 263, 1, 0, 0, 0, 3318, 3316, 1, 0, 0, 0, 3319, 3324, 5, 574, 0, 0, 3320, 3324, 5, 576, 0, 0, 3321, 3324, 3, 814, 407, 0, 3322, 3324, 3, 830, 415, 0, 3323, 3319, 1, 0, 0, 0, 3323, 3320, 1, 0, 0, 0, 3323, 3321, 1, 0, 0, 0, 3323, 3322, 1, 0, 0, 0, 3324, 265, 1, 0, 0, 0, 3325, 3327, 5, 77, 0, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3336, 5, 54, 0, 0, 3329, 3330, 5, 69, 0, 0, 3330, 3336, 7, 9, 0, 0, 3331, 3332, 5, 77, 0, 0, 3332, 3336, 5, 371, 0, 0, 3333, 3334, 5, 269, 0, 0, 3334, 3336, 5, 228, 0, 0, 3335, 3326, 1, 0, 0, 0, 3335, 3329, 1, 0, 0, 0, 3335, 3331, 1, 0, 0, 0, 3335, 3333, 1, 0, 0, 0, 3336, 267, 1, 0, 0, 0, 3337, 3338, 5, 46, 0, 0, 3338, 3339, 5, 198, 0, 0, 3339, 3340, 5, 357, 0, 0, 3340, 3341, 3, 824, 412, 0, 3341, 3342, 5, 80, 0, 0, 3342, 3352, 3, 830, 415, 0, 3343, 3344, 5, 102, 0, 0, 3344, 3349, 3, 270, 135, 0, 3345, 3346, 5, 33, 0, 0, 3346, 3348, 3, 270, 135, 0, 3347, 3345, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3353, 1, 0, 0, 0, 3351, 3349, 1, 0, 0, 0, 3352, 3343, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3355, 5, 202, 0, 0, 3355, 3356, 3, 260, 130, 0, 3356, 3357, 5, 2, 0, 0, 3357, 3358, 5, 3, 0, 0, 3358, 269, 1, 0, 0, 0, 3359, 3360, 3, 824, 412, 0, 3360, 3361, 5, 68, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3366, 3, 814, 407, 0, 3363, 3365, 3, 456, 228, 0, 3364, 3363, 1, 0, 0, 0, 3365, 3368, 1, 0, 0, 0, 3366, 3364, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3369, 1, 0, 0, 0, 3368, 3366, 1, 0, 0, 0, 3369, 3370, 5, 3, 0, 0, 3370, 271, 1, 0, 0, 0, 3371, 3372, 5, 138, 0, 0, 3372, 3373, 5, 198, 0, 0, 3373, 3374, 5, 357, 0, 0, 3374, 3380, 3, 824, 412, 0, 3375, 3377, 5, 193, 0, 0, 3376, 3378, 7, 14, 0, 0, 3377, 3376, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3381, 1, 0, 0, 0, 3379, 3381, 5, 186, 0, 0, 3380, 3375, 1, 0, 0, 0, 3380, 3379, 1, 0, 0, 0, 3381, 273, 1, 0, 0, 0, 3382, 3383, 5, 46, 0, 0, 3383, 3384, 5, 140, 0, 0, 3384, 3385, 3, 310, 155, 0, 3385, 3386, 5, 42, 0, 0, 3386, 3387, 5, 2, 0, 0, 3387, 3388, 3, 670, 335, 0, 3388, 3392, 5, 3, 0, 0, 3389, 3391, 3, 266, 133, 0, 3390, 3389, 1, 0, 0, 0, 3391, 3394, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3392, 3393, 1, 0, 0, 0, 3393, 275, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3395, 3397, 5, 46, 0, 0, 3396, 3398, 3, 360, 180, 0, 3397, 3396, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 5, 136, 0, 0, 3400, 3415, 3, 812, 406, 0, 3401, 3402, 3, 386, 193, 0, 3402, 3403, 3, 278, 139, 0, 3403, 3416, 1, 0, 0, 0, 3404, 3405, 5, 2, 0, 0, 3405, 3410, 3, 284, 142, 0, 3406, 3407, 5, 6, 0, 0, 3407, 3409, 3, 284, 142, 0, 3408, 3406, 1, 0, 0, 0, 3409, 3412, 1, 0, 0, 0, 3410, 3408, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3413, 1, 0, 0, 0, 3412, 3410, 1, 0, 0, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3416, 1, 0, 0, 0, 3415, 3401, 1, 0, 0, 0, 3415, 3404, 1, 0, 0, 0, 3416, 3474, 1, 0, 0, 0, 3417, 3418, 5, 46, 0, 0, 3418, 3419, 5, 278, 0, 0, 3419, 3420, 3, 408, 204, 0, 3420, 3421, 3, 278, 139, 0, 3421, 3474, 1, 0, 0, 0, 3422, 3423, 5, 46, 0, 0, 3423, 3424, 5, 360, 0, 0, 3424, 3425, 3, 310, 155, 0, 3425, 3443, 5, 36, 0, 0, 3426, 3428, 5, 2, 0, 0, 3427, 3429, 3, 638, 319, 0, 3428, 3427, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3444, 5, 3, 0, 0, 3431, 3432, 5, 196, 0, 0, 3432, 3440, 5, 2, 0, 0, 3433, 3437, 3, 814, 407, 0, 3434, 3436, 3, 456, 228, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3441, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3433, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3444, 5, 3, 0, 0, 3443, 3426, 1, 0, 0, 0, 3443, 3431, 1, 0, 0, 0, 3444, 3474, 1, 0, 0, 0, 3445, 3446, 5, 46, 0, 0, 3446, 3447, 5, 360, 0, 0, 3447, 3453, 3, 310, 155, 0, 3448, 3449, 5, 36, 0, 0, 3449, 3451, 5, 299, 0, 0, 3450, 3448, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3454, 3, 278, 139, 0, 3453, 3450, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3474, 1, 0, 0, 0, 3455, 3456, 5, 46, 0, 0, 3456, 3457, 5, 355, 0, 0, 3457, 3458, 5, 325, 0, 0, 3458, 3459, 7, 42, 0, 0, 3459, 3460, 3, 310, 155, 0, 3460, 3461, 3, 278, 139, 0, 3461, 3474, 1, 0, 0, 0, 3462, 3463, 5, 46, 0, 0, 3463, 3465, 5, 108, 0, 0, 3464, 3466, 3, 288, 144, 0, 3465, 3464, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3471, 3, 310, 155, 0, 3468, 3472, 3, 278, 139, 0, 3469, 3470, 5, 64, 0, 0, 3470, 3472, 3, 310, 155, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3472, 3474, 1, 0, 0, 0, 3473, 3395, 1, 0, 0, 0, 3473, 3417, 1, 0, 0, 0, 3473, 3422, 1, 0, 0, 0, 3473, 3445, 1, 0, 0, 0, 3473, 3455, 1, 0, 0, 0, 3473, 3462, 1, 0, 0, 0, 3474, 277, 1, 0, 0, 0, 3475, 3476, 5, 2, 0, 0, 3476, 3481, 3, 280, 140, 0, 3477, 3478, 5, 6, 0, 0, 3478, 3480, 3, 280, 140, 0, 3479, 3477, 1, 0, 0, 0, 3480, 3483, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3484, 3485, 5, 3, 0, 0, 3485, 279, 1, 0, 0, 0, 3486, 3489, 3, 830, 415, 0, 3487, 3488, 5, 10, 0, 0, 3488, 3490, 3, 282, 141, 0, 3489, 3487, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 281, 1, 0, 0, 0, 3491, 3498, 3, 382, 191, 0, 3492, 3498, 3, 840, 420, 0, 3493, 3498, 3, 724, 362, 0, 3494, 3498, 3, 196, 98, 0, 3495, 3498, 3, 814, 407, 0, 3496, 3498, 5, 407, 0, 0, 3497, 3491, 1, 0, 0, 0, 3497, 3492, 1, 0, 0, 0, 3497, 3493, 1, 0, 0, 0, 3497, 3494, 1, 0, 0, 0, 3497, 3495, 1, 0, 0, 0, 3497, 3496, 1, 0, 0, 0, 3498, 283, 1, 0, 0, 0, 3499, 3500, 3, 832, 416, 0, 3500, 3501, 5, 10, 0, 0, 3501, 3502, 3, 282, 141, 0, 3502, 285, 1, 0, 0, 0, 3503, 3504, 5, 138, 0, 0, 3504, 3505, 5, 360, 0, 0, 3505, 3506, 3, 310, 155, 0, 3506, 3507, 5, 133, 0, 0, 3507, 3509, 5, 450, 0, 0, 3508, 3510, 3, 288, 144, 0, 3509, 3508, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3514, 3, 814, 407, 0, 3512, 3513, 7, 43, 0, 0, 3513, 3515, 3, 814, 407, 0, 3514, 3512, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3526, 1, 0, 0, 0, 3516, 3517, 5, 138, 0, 0, 3517, 3518, 5, 360, 0, 0, 3518, 3519, 3, 310, 155, 0, 3519, 3520, 5, 309, 0, 0, 3520, 3521, 5, 450, 0, 0, 3521, 3522, 3, 814, 407, 0, 3522, 3523, 5, 94, 0, 0, 3523, 3524, 3, 814, 407, 0, 3524, 3526, 1, 0, 0, 0, 3525, 3503, 1, 0, 0, 0, 3525, 3516, 1, 0, 0, 0, 3526, 287, 1, 0, 0, 0, 3527, 3528, 5, 220, 0, 0, 3528, 3529, 5, 77, 0, 0, 3529, 3530, 5, 396, 0, 0, 3530, 289, 1, 0, 0, 0, 3531, 3532, 5, 46, 0, 0, 3532, 3533, 5, 278, 0, 0, 3533, 3534, 5, 156, 0, 0, 3534, 3536, 3, 310, 155, 0, 3535, 3537, 5, 53, 0, 0, 3536, 3535, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3539, 5, 62, 0, 0, 3539, 3540, 5, 360, 0, 0, 3540, 3541, 3, 648, 324, 0, 3541, 3544, 3, 164, 82, 0, 3542, 3543, 5, 206, 0, 0, 3543, 3545, 3, 310, 155, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3547, 5, 36, 0, 0, 3547, 3552, 3, 292, 146, 0, 3548, 3549, 5, 6, 0, 0, 3549, 3551, 3, 292, 146, 0, 3550, 3548, 1, 0, 0, 0, 3551, 3554, 1, 0, 0, 0, 3552, 3550, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 291, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3555, 3556, 5, 278, 0, 0, 3556, 3557, 5, 574, 0, 0, 3557, 3559, 3, 408, 204, 0, 3558, 3560, 3, 406, 203, 0, 3559, 3558, 1, 0, 0, 0, 3559, 3560, 1, 0, 0, 0, 3560, 3568, 1, 0, 0, 0, 3561, 3566, 5, 62, 0, 0, 3562, 3567, 5, 325, 0, 0, 3563, 3564, 5, 83, 0, 0, 3564, 3565, 5, 147, 0, 0, 3565, 3567, 3, 310, 155, 0, 3566, 3562, 1, 0, 0, 0, 3566, 3563, 1, 0, 0, 0, 3567, 3569, 1, 0, 0, 0, 3568, 3561, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3572, 5, 302, 0, 0, 3571, 3570, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3582, 1, 0, 0, 0, 3573, 3574, 5, 211, 0, 0, 3574, 3576, 5, 574, 0, 0, 3575, 3577, 3, 522, 261, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3582, 3, 376, 188, 0, 3579, 3580, 5, 345, 0, 0, 3580, 3582, 3, 648, 324, 0, 3581, 3555, 1, 0, 0, 0, 3581, 3573, 1, 0, 0, 0, 3581, 3579, 1, 0, 0, 0, 3582, 293, 1, 0, 0, 0, 3583, 3584, 5, 46, 0, 0, 3584, 3585, 5, 278, 0, 0, 3585, 3586, 5, 206, 0, 0, 3586, 3587, 3, 310, 155, 0, 3587, 3588, 3, 164, 82, 0, 3588, 295, 1, 0, 0, 0, 3589, 3590, 5, 138, 0, 0, 3590, 3591, 5, 278, 0, 0, 3591, 3592, 5, 206, 0, 0, 3592, 3593, 3, 310, 155, 0, 3593, 3612, 3, 164, 82, 0, 3594, 3595, 5, 133, 0, 0, 3595, 3600, 3, 292, 146, 0, 3596, 3597, 5, 6, 0, 0, 3597, 3599, 3, 292, 146, 0, 3598, 3596, 1, 0, 0, 0, 3599, 3602, 1, 0, 0, 0, 3600, 3598, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3613, 1, 0, 0, 0, 3602, 3600, 1, 0, 0, 0, 3603, 3604, 5, 191, 0, 0, 3604, 3609, 3, 298, 149, 0, 3605, 3606, 5, 6, 0, 0, 3606, 3608, 3, 298, 149, 0, 3607, 3605, 1, 0, 0, 0, 3608, 3611, 1, 0, 0, 0, 3609, 3607, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3594, 1, 0, 0, 0, 3612, 3603, 1, 0, 0, 0, 3613, 297, 1, 0, 0, 0, 3614, 3615, 7, 44, 0, 0, 3615, 3616, 5, 574, 0, 0, 3616, 3617, 3, 522, 261, 0, 3617, 299, 1, 0, 0, 0, 3618, 3619, 5, 301, 0, 0, 3619, 3620, 5, 281, 0, 0, 3620, 3621, 5, 147, 0, 0, 3621, 3622, 3, 822, 411, 0, 3622, 3623, 5, 94, 0, 0, 3623, 3624, 3, 820, 410, 0, 3624, 301, 1, 0, 0, 0, 3625, 3648, 5, 191, 0, 0, 3626, 3649, 5, 328, 0, 0, 3627, 3649, 5, 226, 0, 0, 3628, 3649, 5, 108, 0, 0, 3629, 3649, 5, 168, 0, 0, 3630, 3649, 5, 342, 0, 0, 3631, 3649, 5, 452, 0, 0, 3632, 3649, 5, 331, 0, 0, 3633, 3634, 5, 131, 0, 0, 3634, 3649, 5, 446, 0, 0, 3635, 3636, 5, 198, 0, 0, 3636, 3649, 5, 357, 0, 0, 3637, 3649, 5, 204, 0, 0, 3638, 3640, 5, 295, 0, 0, 3639, 3638, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3649, 5, 247, 0, 0, 3642, 3643, 5, 63, 0, 0, 3643, 3644, 5, 174, 0, 0, 3644, 3649, 5, 381, 0, 0, 3645, 3646, 5, 355, 0, 0, 3646, 3647, 5, 325, 0, 0, 3647, 3649, 7, 42, 0, 0, 3648, 3626, 1, 0, 0, 0, 3648, 3627, 1, 0, 0, 0, 3648, 3628, 1, 0, 0, 0, 3648, 3629, 1, 0, 0, 0, 3648, 3630, 1, 0, 0, 0, 3648, 3631, 1, 0, 0, 0, 3648, 3632, 1, 0, 0, 0, 3648, 3633, 1, 0, 0, 0, 3648, 3635, 1, 0, 0, 0, 3648, 3637, 1, 0, 0, 0, 3648, 3639, 1, 0, 0, 0, 3648, 3642, 1, 0, 0, 0, 3648, 3645, 1, 0, 0, 0, 3649, 3651, 1, 0, 0, 0, 3650, 3652, 3, 416, 208, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3655, 3, 788, 394, 0, 3654, 3656, 3, 88, 44, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3833, 1, 0, 0, 0, 3657, 3659, 5, 191, 0, 0, 3658, 3660, 5, 259, 0, 0, 3659, 3658, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3661, 1, 0, 0, 0, 3661, 3663, 5, 376, 0, 0, 3662, 3664, 3, 416, 208, 0, 3663, 3662, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3670, 3, 782, 391, 0, 3666, 3667, 5, 6, 0, 0, 3667, 3669, 3, 782, 391, 0, 3668, 3666, 1, 0, 0, 0, 3669, 3672, 1, 0, 0, 0, 3670, 3668, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3674, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3675, 3, 88, 44, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3833, 1, 0, 0, 0, 3676, 3678, 5, 191, 0, 0, 3677, 3679, 5, 63, 0, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3682, 5, 92, 0, 0, 3681, 3683, 3, 416, 208, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3686, 3, 766, 383, 0, 3685, 3687, 3, 88, 44, 0, 3686, 3685, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, 3833, 1, 0, 0, 0, 3688, 3689, 5, 191, 0, 0, 3689, 3691, 5, 323, 0, 0, 3690, 3692, 3, 416, 208, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 3, 768, 384, 0, 3694, 3696, 3, 88, 44, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 3833, 1, 0, 0, 0, 3697, 3698, 5, 191, 0, 0, 3698, 3700, 7, 45, 0, 0, 3699, 3701, 3, 416, 208, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3702, 3703, 3, 824, 412, 0, 3703, 3704, 5, 80, 0, 0, 3704, 3706, 3, 310, 155, 0, 3705, 3707, 3, 88, 44, 0, 3706, 3705, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3833, 1, 0, 0, 0, 3708, 3709, 5, 191, 0, 0, 3709, 3711, 7, 33, 0, 0, 3710, 3712, 3, 416, 208, 0, 3711, 3710, 1, 0, 0, 0, 3711, 3712, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3718, 3, 648, 324, 0, 3714, 3715, 5, 6, 0, 0, 3715, 3717, 3, 648, 324, 0, 3716, 3714, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3723, 3, 88, 44, 0, 3722, 3721, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3833, 1, 0, 0, 0, 3724, 3725, 5, 191, 0, 0, 3725, 3726, 5, 226, 0, 0, 3726, 3728, 5, 109, 0, 0, 3727, 3729, 3, 416, 208, 0, 3728, 3727, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3732, 3, 308, 154, 0, 3731, 3733, 3, 88, 44, 0, 3732, 3731, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3833, 1, 0, 0, 0, 3734, 3735, 5, 191, 0, 0, 3735, 3737, 5, 41, 0, 0, 3736, 3738, 3, 416, 208, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3740, 5, 2, 0, 0, 3740, 3741, 3, 648, 324, 0, 3741, 3742, 5, 36, 0, 0, 3742, 3743, 3, 648, 324, 0, 3743, 3745, 5, 3, 0, 0, 3744, 3746, 3, 88, 44, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3833, 1, 0, 0, 0, 3747, 3748, 5, 191, 0, 0, 3748, 3749, 5, 278, 0, 0, 3749, 3751, 7, 32, 0, 0, 3750, 3752, 3, 416, 208, 0, 3751, 3750, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3754, 3, 310, 155, 0, 3754, 3756, 3, 164, 82, 0, 3755, 3757, 3, 88, 44, 0, 3756, 3755, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3833, 1, 0, 0, 0, 3758, 3759, 5, 191, 0, 0, 3759, 3760, 5, 281, 0, 0, 3760, 3761, 5, 147, 0, 0, 3761, 3763, 3, 822, 411, 0, 3762, 3764, 3, 88, 44, 0, 3763, 3762, 1, 0, 0, 0, 3763, 3764, 1, 0, 0, 0, 3764, 3833, 1, 0, 0, 0, 3765, 3766, 5, 191, 0, 0, 3766, 3768, 5, 451, 0, 0, 3767, 3769, 3, 416, 208, 0, 3768, 3767, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3772, 3, 824, 412, 0, 3771, 3773, 3, 88, 44, 0, 3772, 3771, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3833, 1, 0, 0, 0, 3774, 3775, 5, 191, 0, 0, 3775, 3777, 5, 351, 0, 0, 3776, 3778, 3, 416, 208, 0, 3777, 3776, 1, 0, 0, 0, 3777, 3778, 1, 0, 0, 0, 3778, 3779, 1, 0, 0, 0, 3779, 3833, 3, 774, 387, 0, 3780, 3781, 5, 191, 0, 0, 3781, 3783, 5, 443, 0, 0, 3782, 3784, 3, 416, 208, 0, 3783, 3782, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3786, 5, 62, 0, 0, 3786, 3787, 3, 648, 324, 0, 3787, 3788, 5, 247, 0, 0, 3788, 3790, 3, 824, 412, 0, 3789, 3791, 3, 88, 44, 0, 3790, 3789, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3833, 1, 0, 0, 0, 3792, 3793, 5, 191, 0, 0, 3793, 3795, 7, 46, 0, 0, 3794, 3796, 3, 416, 208, 0, 3795, 3794, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 3833, 3, 822, 411, 0, 3798, 3799, 5, 191, 0, 0, 3799, 3800, 5, 99, 0, 0, 3800, 3802, 5, 257, 0, 0, 3801, 3803, 3, 416, 208, 0, 3802, 3801, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3807, 5, 62, 0, 0, 3805, 3808, 3, 820, 410, 0, 3806, 3808, 5, 99, 0, 0, 3807, 3805, 1, 0, 0, 0, 3807, 3806, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3810, 5, 331, 0, 0, 3810, 3833, 3, 824, 412, 0, 3811, 3812, 5, 191, 0, 0, 3812, 3814, 5, 175, 0, 0, 3813, 3815, 3, 416, 208, 0, 3814, 3813, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3830, 3, 792, 396, 0, 3817, 3819, 5, 105, 0, 0, 3818, 3817, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3821, 5, 2, 0, 0, 3821, 3826, 5, 209, 0, 0, 3822, 3823, 5, 6, 0, 0, 3823, 3825, 5, 209, 0, 0, 3824, 3822, 1, 0, 0, 0, 3825, 3828, 1, 0, 0, 0, 3826, 3824, 1, 0, 0, 0, 3826, 3827, 1, 0, 0, 0, 3827, 3829, 1, 0, 0, 0, 3828, 3826, 1, 0, 0, 0, 3829, 3831, 5, 3, 0, 0, 3830, 3818, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3833, 1, 0, 0, 0, 3832, 3625, 1, 0, 0, 0, 3832, 3657, 1, 0, 0, 0, 3832, 3676, 1, 0, 0, 0, 3832, 3688, 1, 0, 0, 0, 3832, 3697, 1, 0, 0, 0, 3832, 3708, 1, 0, 0, 0, 3832, 3724, 1, 0, 0, 0, 3832, 3734, 1, 0, 0, 0, 3832, 3747, 1, 0, 0, 0, 3832, 3758, 1, 0, 0, 0, 3832, 3765, 1, 0, 0, 0, 3832, 3774, 1, 0, 0, 0, 3832, 3780, 1, 0, 0, 0, 3832, 3792, 1, 0, 0, 0, 3832, 3798, 1, 0, 0, 0, 3832, 3811, 1, 0, 0, 0, 3833, 303, 1, 0, 0, 0, 3834, 3836, 5, 63, 0, 0, 3835, 3834, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3838, 5, 92, 0, 0, 3838, 3851, 3, 778, 389, 0, 3839, 3841, 5, 259, 0, 0, 3840, 3839, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3842, 1, 0, 0, 0, 3842, 3843, 5, 376, 0, 0, 3843, 3851, 3, 782, 391, 0, 3844, 3845, 7, 47, 0, 0, 3845, 3851, 3, 310, 155, 0, 3846, 3847, 5, 355, 0, 0, 3847, 3848, 5, 325, 0, 0, 3848, 3849, 7, 42, 0, 0, 3849, 3851, 3, 310, 155, 0, 3850, 3835, 1, 0, 0, 0, 3850, 3840, 1, 0, 0, 0, 3850, 3844, 1, 0, 0, 0, 3850, 3846, 1, 0, 0, 0, 3851, 305, 1, 0, 0, 0, 3852, 3853, 5, 198, 0, 0, 3853, 3869, 5, 357, 0, 0, 3854, 3855, 5, 131, 0, 0, 3855, 3869, 5, 446, 0, 0, 3856, 3869, 5, 204, 0, 0, 3857, 3869, 5, 452, 0, 0, 3858, 3869, 5, 331, 0, 0, 3859, 3869, 5, 318, 0, 0, 3860, 3869, 5, 451, 0, 0, 3861, 3862, 5, 63, 0, 0, 3862, 3863, 5, 174, 0, 0, 3863, 3869, 5, 381, 0, 0, 3864, 3866, 5, 295, 0, 0, 3865, 3864, 1, 0, 0, 0, 3865, 3866, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 3869, 5, 247, 0, 0, 3868, 3852, 1, 0, 0, 0, 3868, 3854, 1, 0, 0, 0, 3868, 3856, 1, 0, 0, 0, 3868, 3857, 1, 0, 0, 0, 3868, 3858, 1, 0, 0, 0, 3868, 3859, 1, 0, 0, 0, 3868, 3860, 1, 0, 0, 0, 3868, 3861, 1, 0, 0, 0, 3868, 3865, 1, 0, 0, 0, 3869, 3870, 1, 0, 0, 0, 3870, 3877, 3, 824, 412, 0, 3871, 3872, 5, 323, 0, 0, 3872, 3877, 3, 794, 397, 0, 3873, 3874, 5, 175, 0, 0, 3874, 3877, 3, 792, 396, 0, 3875, 3877, 3, 170, 85, 0, 3876, 3868, 1, 0, 0, 0, 3876, 3871, 1, 0, 0, 0, 3876, 3873, 1, 0, 0, 0, 3876, 3875, 1, 0, 0, 0, 3877, 307, 1, 0, 0, 0, 3878, 3883, 3, 310, 155, 0, 3879, 3880, 5, 6, 0, 0, 3880, 3882, 3, 310, 155, 0, 3881, 3879, 1, 0, 0, 0, 3882, 3885, 1, 0, 0, 0, 3883, 3881, 1, 0, 0, 0, 3883, 3884, 1, 0, 0, 0, 3884, 309, 1, 0, 0, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3888, 3, 824, 412, 0, 3887, 3889, 3, 312, 156, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 311, 1, 0, 0, 0, 3890, 3891, 5, 11, 0, 0, 3891, 3893, 3, 830, 415, 0, 3892, 3890, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3892, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 313, 1, 0, 0, 0, 3896, 3898, 5, 358, 0, 0, 3897, 3899, 5, 92, 0, 0, 3898, 3897, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3905, 3, 316, 158, 0, 3901, 3902, 5, 6, 0, 0, 3902, 3904, 3, 316, 158, 0, 3903, 3901, 1, 0, 0, 0, 3904, 3907, 1, 0, 0, 0, 3905, 3903, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3910, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3908, 3909, 7, 48, 0, 0, 3909, 3911, 5, 219, 0, 0, 3910, 3908, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3913, 1, 0, 0, 0, 3912, 3914, 3, 88, 44, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 315, 1, 0, 0, 0, 3915, 3917, 5, 81, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3920, 3, 778, 389, 0, 3919, 3921, 5, 9, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 317, 1, 0, 0, 0, 3922, 3923, 5, 159, 0, 0, 3923, 3982, 5, 80, 0, 0, 3924, 3983, 3, 304, 152, 0, 3925, 3983, 3, 306, 153, 0, 3926, 3927, 5, 44, 0, 0, 3927, 3929, 3, 824, 412, 0, 3928, 3930, 3, 312, 156, 0, 3929, 3928, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 3932, 5, 11, 0, 0, 3932, 3933, 3, 804, 402, 0, 3933, 3983, 1, 0, 0, 0, 3934, 3935, 7, 33, 0, 0, 3935, 3983, 3, 648, 324, 0, 3936, 3937, 5, 136, 0, 0, 3937, 3983, 3, 388, 194, 0, 3938, 3939, 5, 211, 0, 0, 3939, 3983, 3, 376, 188, 0, 3940, 3941, 5, 278, 0, 0, 3941, 3983, 3, 410, 205, 0, 3942, 3943, 5, 45, 0, 0, 3943, 3944, 3, 824, 412, 0, 3944, 3950, 5, 80, 0, 0, 3945, 3951, 3, 778, 389, 0, 3946, 3948, 5, 189, 0, 0, 3947, 3946, 1, 0, 0, 0, 3947, 3948, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3951, 3, 310, 155, 0, 3950, 3945, 1, 0, 0, 0, 3950, 3947, 1, 0, 0, 0, 3951, 3983, 1, 0, 0, 0, 3952, 3953, 7, 45, 0, 0, 3953, 3954, 3, 824, 412, 0, 3954, 3955, 5, 80, 0, 0, 3955, 3956, 3, 310, 155, 0, 3956, 3983, 1, 0, 0, 0, 3957, 3958, 5, 296, 0, 0, 3958, 3983, 3, 372, 186, 0, 3959, 3960, 5, 442, 0, 0, 3960, 3983, 3, 368, 184, 0, 3961, 3962, 5, 443, 0, 0, 3962, 3963, 5, 62, 0, 0, 3963, 3964, 3, 648, 324, 0, 3964, 3965, 5, 247, 0, 0, 3965, 3966, 3, 824, 412, 0, 3966, 3983, 1, 0, 0, 0, 3967, 3968, 5, 278, 0, 0, 3968, 3969, 7, 32, 0, 0, 3969, 3970, 3, 310, 155, 0, 3970, 3971, 3, 164, 82, 0, 3971, 3983, 1, 0, 0, 0, 3972, 3973, 5, 248, 0, 0, 3973, 3974, 5, 274, 0, 0, 3974, 3983, 3, 196, 98, 0, 3975, 3976, 5, 41, 0, 0, 3976, 3977, 5, 2, 0, 0, 3977, 3978, 3, 648, 324, 0, 3978, 3979, 5, 36, 0, 0, 3979, 3980, 3, 648, 324, 0, 3980, 3981, 5, 3, 0, 0, 3981, 3983, 1, 0, 0, 0, 3982, 3924, 1, 0, 0, 0, 3982, 3925, 1, 0, 0, 0, 3982, 3926, 1, 0, 0, 0, 3982, 3934, 1, 0, 0, 0, 3982, 3936, 1, 0, 0, 0, 3982, 3938, 1, 0, 0, 0, 3982, 3940, 1, 0, 0, 0, 3982, 3942, 1, 0, 0, 0, 3982, 3952, 1, 0, 0, 0, 3982, 3957, 1, 0, 0, 0, 3982, 3959, 1, 0, 0, 0, 3982, 3961, 1, 0, 0, 0, 3982, 3967, 1, 0, 0, 0, 3982, 3972, 1, 0, 0, 0, 3982, 3975, 1, 0, 0, 0, 3983, 3984, 1, 0, 0, 0, 3984, 3987, 5, 116, 0, 0, 3985, 3988, 3, 814, 407, 0, 3986, 3988, 5, 78, 0, 0, 3987, 3985, 1, 0, 0, 0, 3987, 3986, 1, 0, 0, 0, 3988, 319, 1, 0, 0, 0, 3989, 3990, 5, 327, 0, 0, 3990, 3993, 5, 246, 0, 0, 3991, 3992, 5, 62, 0, 0, 3992, 3994, 3, 58, 29, 0, 3993, 3991, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 4013, 5, 80, 0, 0, 3996, 3997, 7, 33, 0, 0, 3997, 4014, 3, 648, 324, 0, 3998, 3999, 5, 136, 0, 0, 3999, 4014, 3, 388, 194, 0, 4000, 4001, 5, 44, 0, 0, 4001, 4014, 3, 804, 402, 0, 4002, 4003, 5, 211, 0, 0, 4003, 4014, 3, 376, 188, 0, 4004, 4005, 5, 248, 0, 0, 4005, 4006, 5, 274, 0, 0, 4006, 4014, 3, 196, 98, 0, 4007, 4008, 5, 296, 0, 0, 4008, 4014, 3, 372, 186, 0, 4009, 4010, 5, 442, 0, 0, 4010, 4014, 3, 368, 184, 0, 4011, 4014, 3, 304, 152, 0, 4012, 4014, 3, 306, 153, 0, 4013, 3996, 1, 0, 0, 0, 4013, 3998, 1, 0, 0, 0, 4013, 4000, 1, 0, 0, 0, 4013, 4002, 1, 0, 0, 0, 4013, 4004, 1, 0, 0, 0, 4013, 4007, 1, 0, 0, 0, 4013, 4009, 1, 0, 0, 0, 4013, 4011, 1, 0, 0, 0, 4013, 4012, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 4018, 5, 116, 0, 0, 4016, 4019, 3, 814, 407, 0, 4017, 4019, 5, 78, 0, 0, 4018, 4016, 1, 0, 0, 0, 4018, 4017, 1, 0, 0, 0, 4019, 321, 1, 0, 0, 0, 4020, 4021, 7, 49, 0, 0, 4021, 4022, 3, 324, 162, 0, 4022, 323, 1, 0, 0, 0, 4023, 4025, 7, 50, 0, 0, 4024, 4023, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 1, 0, 0, 0, 4026, 4028, 3, 326, 163, 0, 4027, 4026, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4067, 3, 824, 412, 0, 4030, 4032, 7, 51, 0, 0, 4031, 4030, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4035, 3, 818, 409, 0, 4034, 4036, 3, 326, 163, 0, 4035, 4034, 1, 0, 0, 0, 4035, 4036, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 3, 824, 412, 0, 4038, 4067, 1, 0, 0, 0, 4039, 4041, 5, 210, 0, 0, 4040, 4042, 3, 818, 409, 0, 4041, 4040, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 1, 0, 0, 0, 4043, 4045, 3, 326, 163, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4067, 3, 824, 412, 0, 4047, 4049, 5, 210, 0, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4052, 5, 30, 0, 0, 4051, 4053, 3, 326, 163, 0, 4052, 4051, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4054, 1, 0, 0, 0, 4054, 4067, 3, 824, 412, 0, 4055, 4060, 5, 144, 0, 0, 4056, 4058, 5, 30, 0, 0, 4057, 4056, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4061, 1, 0, 0, 0, 4059, 4061, 3, 818, 409, 0, 4060, 4057, 1, 0, 0, 0, 4060, 4059, 1, 0, 0, 0, 4061, 4063, 1, 0, 0, 0, 4062, 4064, 3, 326, 163, 0, 4063, 4062, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4065, 1, 0, 0, 0, 4065, 4067, 3, 824, 412, 0, 4066, 4024, 1, 0, 0, 0, 4066, 4031, 1, 0, 0, 0, 4066, 4039, 1, 0, 0, 0, 4066, 4048, 1, 0, 0, 0, 4066, 4055, 1, 0, 0, 0, 4067, 325, 1, 0, 0, 0, 4068, 4069, 7, 52, 0, 0, 4069, 327, 1, 0, 0, 0, 4070, 4071, 5, 65, 0, 0, 4071, 4072, 3, 332, 166, 0, 4072, 4073, 5, 80, 0, 0, 4073, 4074, 3, 338, 169, 0, 4074, 4075, 5, 94, 0, 0, 4075, 4079, 3, 340, 170, 0, 4076, 4077, 5, 105, 0, 0, 4077, 4078, 5, 65, 0, 0, 4078, 4080, 5, 279, 0, 0, 4079, 4076, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 329, 1, 0, 0, 0, 4081, 4085, 5, 317, 0, 0, 4082, 4083, 5, 65, 0, 0, 4083, 4084, 5, 279, 0, 0, 4084, 4086, 5, 62, 0, 0, 4085, 4082, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 4087, 1, 0, 0, 0, 4087, 4088, 3, 332, 166, 0, 4088, 4089, 5, 80, 0, 0, 4089, 4090, 3, 338, 169, 0, 4090, 4091, 5, 64, 0, 0, 4091, 4093, 3, 340, 170, 0, 4092, 4094, 3, 88, 44, 0, 4093, 4092, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 331, 1, 0, 0, 0, 4095, 4100, 3, 336, 168, 0, 4096, 4097, 5, 6, 0, 0, 4097, 4099, 3, 336, 168, 0, 4098, 4096, 1, 0, 0, 0, 4099, 4102, 1, 0, 0, 0, 4100, 4098, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4119, 1, 0, 0, 0, 4102, 4100, 1, 0, 0, 0, 4103, 4105, 5, 30, 0, 0, 4104, 4106, 5, 294, 0, 0, 4105, 4104, 1, 0, 0, 0, 4105, 4106, 1, 0, 0, 0, 4106, 4108, 1, 0, 0, 0, 4107, 4109, 3, 138, 69, 0, 4108, 4107, 1, 0, 0, 0, 4108, 4109, 1, 0, 0, 0, 4109, 4119, 1, 0, 0, 0, 4110, 4115, 3, 334, 167, 0, 4111, 4112, 5, 6, 0, 0, 4112, 4114, 3, 334, 167, 0, 4113, 4111, 1, 0, 0, 0, 4114, 4117, 1, 0, 0, 0, 4115, 4113, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4119, 1, 0, 0, 0, 4117, 4115, 1, 0, 0, 0, 4118, 4095, 1, 0, 0, 0, 4118, 4103, 1, 0, 0, 0, 4118, 4110, 1, 0, 0, 0, 4119, 333, 1, 0, 0, 0, 4120, 4121, 7, 53, 0, 0, 4121, 335, 1, 0, 0, 0, 4122, 4127, 5, 88, 0, 0, 4123, 4127, 5, 86, 0, 0, 4124, 4127, 5, 46, 0, 0, 4125, 4127, 3, 824, 412, 0, 4126, 4122, 1, 0, 0, 0, 4126, 4123, 1, 0, 0, 0, 4126, 4124, 1, 0, 0, 0, 4126, 4125, 1, 0, 0, 0, 4127, 4129, 1, 0, 0, 0, 4128, 4130, 3, 138, 69, 0, 4129, 4128, 1, 0, 0, 0, 4129, 4130, 1, 0, 0, 0, 4130, 337, 1, 0, 0, 0, 4131, 4132, 5, 92, 0, 0, 4132, 4177, 3, 766, 383, 0, 4133, 4135, 5, 328, 0, 0, 4134, 4133, 1, 0, 0, 0, 4134, 4135, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4177, 3, 764, 382, 0, 4137, 4141, 5, 63, 0, 0, 4138, 4139, 5, 174, 0, 0, 4139, 4142, 5, 381, 0, 0, 4140, 4142, 5, 331, 0, 0, 4141, 4138, 1, 0, 0, 0, 4141, 4140, 1, 0, 0, 0, 4142, 4145, 1, 0, 0, 0, 4143, 4145, 5, 247, 0, 0, 4144, 4137, 1, 0, 0, 0, 4144, 4143, 1, 0, 0, 0, 4145, 4146, 1, 0, 0, 0, 4146, 4177, 3, 788, 394, 0, 4147, 4148, 5, 211, 0, 0, 4148, 4177, 3, 374, 187, 0, 4149, 4150, 5, 296, 0, 0, 4150, 4177, 3, 370, 185, 0, 4151, 4152, 5, 442, 0, 0, 4152, 4177, 3, 366, 183, 0, 4153, 4154, 5, 175, 0, 0, 4154, 4177, 3, 770, 385, 0, 4155, 4156, 7, 33, 0, 0, 4156, 4177, 3, 308, 154, 0, 4157, 4158, 5, 248, 0, 0, 4158, 4159, 5, 274, 0, 0, 4159, 4164, 3, 196, 98, 0, 4160, 4161, 5, 6, 0, 0, 4161, 4163, 3, 196, 98, 0, 4162, 4160, 1, 0, 0, 0, 4163, 4166, 1, 0, 0, 0, 4164, 4162, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4177, 1, 0, 0, 0, 4166, 4164, 1, 0, 0, 0, 4167, 4168, 5, 323, 0, 0, 4168, 4177, 3, 768, 384, 0, 4169, 4170, 5, 351, 0, 0, 4170, 4177, 3, 786, 393, 0, 4171, 4172, 5, 30, 0, 0, 4172, 4173, 7, 54, 0, 0, 4173, 4174, 5, 68, 0, 0, 4174, 4175, 5, 323, 0, 0, 4175, 4177, 3, 768, 384, 0, 4176, 4131, 1, 0, 0, 0, 4176, 4134, 1, 0, 0, 0, 4176, 4144, 1, 0, 0, 0, 4176, 4147, 1, 0, 0, 0, 4176, 4149, 1, 0, 0, 0, 4176, 4151, 1, 0, 0, 0, 4176, 4153, 1, 0, 0, 0, 4176, 4155, 1, 0, 0, 0, 4176, 4157, 1, 0, 0, 0, 4176, 4167, 1, 0, 0, 0, 4176, 4169, 1, 0, 0, 0, 4176, 4171, 1, 0, 0, 0, 4177, 339, 1, 0, 0, 0, 4178, 4180, 5, 66, 0, 0, 4179, 4178, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4182, 3, 820, 410, 0, 4182, 4190, 1, 0, 0, 0, 4183, 4185, 5, 6, 0, 0, 4184, 4186, 5, 66, 0, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4189, 3, 820, 410, 0, 4188, 4183, 1, 0, 0, 0, 4189, 4192, 1, 0, 0, 0, 4190, 4188, 1, 0, 0, 0, 4190, 4191, 1, 0, 0, 0, 4191, 341, 1, 0, 0, 0, 4192, 4190, 1, 0, 0, 0, 4193, 4194, 5, 65, 0, 0, 4194, 4199, 3, 336, 168, 0, 4195, 4196, 5, 6, 0, 0, 4196, 4198, 3, 336, 168, 0, 4197, 4195, 1, 0, 0, 0, 4198, 4201, 1, 0, 0, 0, 4199, 4197, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4202, 1, 0, 0, 0, 4201, 4199, 1, 0, 0, 0, 4202, 4203, 5, 94, 0, 0, 4203, 4207, 3, 822, 411, 0, 4204, 4205, 5, 105, 0, 0, 4205, 4206, 5, 134, 0, 0, 4206, 4208, 5, 279, 0, 0, 4207, 4204, 1, 0, 0, 0, 4207, 4208, 1, 0, 0, 0, 4208, 4212, 1, 0, 0, 0, 4209, 4210, 5, 214, 0, 0, 4210, 4211, 5, 147, 0, 0, 4211, 4213, 3, 820, 410, 0, 4212, 4209, 1, 0, 0, 0, 4212, 4213, 1, 0, 0, 0, 4213, 343, 1, 0, 0, 0, 4214, 4218, 5, 317, 0, 0, 4215, 4216, 5, 134, 0, 0, 4216, 4217, 5, 279, 0, 0, 4217, 4219, 5, 62, 0, 0, 4218, 4215, 1, 0, 0, 0, 4218, 4219, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4225, 3, 336, 168, 0, 4221, 4222, 5, 6, 0, 0, 4222, 4224, 3, 336, 168, 0, 4223, 4221, 1, 0, 0, 0, 4224, 4227, 1, 0, 0, 0, 4225, 4223, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4225, 1, 0, 0, 0, 4228, 4229, 5, 64, 0, 0, 4229, 4233, 3, 822, 411, 0, 4230, 4231, 5, 214, 0, 0, 4231, 4232, 5, 147, 0, 0, 4232, 4234, 3, 820, 410, 0, 4233, 4230, 1, 0, 0, 0, 4233, 4234, 1, 0, 0, 0, 4234, 4236, 1, 0, 0, 0, 4235, 4237, 3, 88, 44, 0, 4236, 4235, 1, 0, 0, 0, 4236, 4237, 1, 0, 0, 0, 4237, 345, 1, 0, 0, 0, 4238, 4239, 5, 138, 0, 0, 4239, 4240, 5, 53, 0, 0, 4240, 4249, 5, 294, 0, 0, 4241, 4242, 5, 68, 0, 0, 4242, 4243, 5, 323, 0, 0, 4243, 4248, 3, 768, 384, 0, 4244, 4245, 5, 62, 0, 0, 4245, 4246, 7, 2, 0, 0, 4246, 4248, 3, 822, 411, 0, 4247, 4241, 1, 0, 0, 0, 4247, 4244, 1, 0, 0, 0, 4248, 4251, 1, 0, 0, 0, 4249, 4247, 1, 0, 0, 0, 4249, 4250, 1, 0, 0, 0, 4250, 4252, 1, 0, 0, 0, 4251, 4249, 1, 0, 0, 0, 4252, 4253, 3, 348, 174, 0, 4253, 347, 1, 0, 0, 0, 4254, 4255, 5, 65, 0, 0, 4255, 4256, 3, 332, 166, 0, 4256, 4257, 5, 80, 0, 0, 4257, 4258, 3, 350, 175, 0, 4258, 4259, 5, 94, 0, 0, 4259, 4263, 3, 340, 170, 0, 4260, 4261, 5, 105, 0, 0, 4261, 4262, 5, 65, 0, 0, 4262, 4264, 5, 279, 0, 0, 4263, 4260, 1, 0, 0, 0, 4263, 4264, 1, 0, 0, 0, 4264, 4280, 1, 0, 0, 0, 4265, 4269, 5, 317, 0, 0, 4266, 4267, 5, 65, 0, 0, 4267, 4268, 5, 279, 0, 0, 4268, 4270, 5, 62, 0, 0, 4269, 4266, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4271, 1, 0, 0, 0, 4271, 4272, 3, 332, 166, 0, 4272, 4273, 5, 80, 0, 0, 4273, 4274, 3, 350, 175, 0, 4274, 4275, 5, 64, 0, 0, 4275, 4277, 3, 340, 170, 0, 4276, 4278, 3, 88, 44, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4280, 1, 0, 0, 0, 4279, 4254, 1, 0, 0, 0, 4279, 4265, 1, 0, 0, 0, 4280, 349, 1, 0, 0, 0, 4281, 4282, 7, 55, 0, 0, 4282, 351, 1, 0, 0, 0, 4283, 4285, 5, 46, 0, 0, 4284, 4286, 5, 98, 0, 0, 4285, 4284, 1, 0, 0, 0, 4285, 4286, 1, 0, 0, 0, 4286, 4287, 1, 0, 0, 0, 4287, 4289, 5, 226, 0, 0, 4288, 4290, 5, 109, 0, 0, 4289, 4288, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4292, 1, 0, 0, 0, 4291, 4293, 3, 288, 144, 0, 4292, 4291, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4295, 1, 0, 0, 0, 4294, 4296, 3, 824, 412, 0, 4295, 4294, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4298, 5, 80, 0, 0, 4298, 4300, 3, 620, 310, 0, 4299, 4301, 3, 164, 82, 0, 4300, 4299, 1, 0, 0, 0, 4300, 4301, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 4305, 3, 354, 177, 0, 4303, 4304, 5, 441, 0, 0, 4304, 4306, 3, 354, 177, 0, 4305, 4303, 1, 0, 0, 0, 4305, 4306, 1, 0, 0, 0, 4306, 4312, 1, 0, 0, 0, 4307, 4309, 5, 273, 0, 0, 4308, 4310, 5, 77, 0, 0, 4309, 4308, 1, 0, 0, 0, 4309, 4310, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4313, 5, 56, 0, 0, 4312, 4307, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4315, 1, 0, 0, 0, 4314, 4316, 3, 94, 47, 0, 4315, 4314, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 4318, 1, 0, 0, 0, 4317, 4319, 3, 170, 85, 0, 4318, 4317, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4321, 1, 0, 0, 0, 4320, 4322, 3, 634, 317, 0, 4321, 4320, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 353, 1, 0, 0, 0, 4323, 4324, 5, 2, 0, 0, 4324, 4329, 3, 356, 178, 0, 4325, 4326, 5, 6, 0, 0, 4326, 4328, 3, 356, 178, 0, 4327, 4325, 1, 0, 0, 0, 4328, 4331, 1, 0, 0, 0, 4329, 4327, 1, 0, 0, 0, 4329, 4330, 1, 0, 0, 0, 4330, 4332, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4332, 4333, 5, 3, 0, 0, 4333, 355, 1, 0, 0, 0, 4334, 4341, 3, 804, 402, 0, 4335, 4341, 3, 684, 342, 0, 4336, 4337, 5, 2, 0, 0, 4337, 4338, 3, 670, 335, 0, 4338, 4339, 5, 3, 0, 0, 4339, 4341, 1, 0, 0, 0, 4340, 4334, 1, 0, 0, 0, 4340, 4335, 1, 0, 0, 0, 4340, 4336, 1, 0, 0, 0, 4341, 4343, 1, 0, 0, 0, 4342, 4344, 3, 90, 45, 0, 4343, 4342, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 4351, 1, 0, 0, 0, 4345, 4347, 3, 310, 155, 0, 4346, 4345, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4352, 1, 0, 0, 0, 4348, 4349, 3, 310, 155, 0, 4349, 4350, 3, 92, 46, 0, 4350, 4352, 1, 0, 0, 0, 4351, 4346, 1, 0, 0, 0, 4351, 4348, 1, 0, 0, 0, 4352, 4354, 1, 0, 0, 0, 4353, 4355, 7, 56, 0, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4358, 1, 0, 0, 0, 4356, 4357, 5, 273, 0, 0, 4357, 4359, 7, 57, 0, 0, 4358, 4356, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 357, 1, 0, 0, 0, 4360, 4362, 5, 46, 0, 0, 4361, 4363, 3, 360, 180, 0, 4362, 4361, 1, 0, 0, 0, 4362, 4363, 1, 0, 0, 0, 4363, 4368, 1, 0, 0, 0, 4364, 4365, 5, 211, 0, 0, 4365, 4369, 3, 810, 405, 0, 4366, 4367, 5, 296, 0, 0, 4367, 4369, 3, 802, 401, 0, 4368, 4364, 1, 0, 0, 0, 4368, 4366, 1, 0, 0, 0, 4369, 4370, 1, 0, 0, 0, 4370, 4379, 5, 2, 0, 0, 4371, 4376, 3, 384, 192, 0, 4372, 4373, 5, 6, 0, 0, 4373, 4375, 3, 384, 192, 0, 4374, 4372, 1, 0, 0, 0, 4375, 4378, 1, 0, 0, 0, 4376, 4374, 1, 0, 0, 0, 4376, 4377, 1, 0, 0, 0, 4377, 4380, 1, 0, 0, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4371, 1, 0, 0, 0, 4379, 4380, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 4382, 5, 3, 0, 0, 4382, 4399, 1, 0, 0, 0, 4383, 4397, 5, 316, 0, 0, 4384, 4398, 3, 382, 191, 0, 4385, 4386, 5, 92, 0, 0, 4386, 4387, 5, 2, 0, 0, 4387, 4392, 3, 396, 198, 0, 4388, 4389, 5, 6, 0, 0, 4389, 4391, 3, 396, 198, 0, 4390, 4388, 1, 0, 0, 0, 4391, 4394, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4392, 4393, 1, 0, 0, 0, 4393, 4395, 1, 0, 0, 0, 4394, 4392, 1, 0, 0, 0, 4395, 4396, 5, 3, 0, 0, 4396, 4398, 1, 0, 0, 0, 4397, 4384, 1, 0, 0, 0, 4397, 4385, 1, 0, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4383, 1, 0, 0, 0, 4399, 4400, 1, 0, 0, 0, 4400, 4402, 1, 0, 0, 0, 4401, 4403, 3, 392, 196, 0, 4402, 4401, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4402, 1, 0, 0, 0, 4404, 4405, 1, 0, 0, 0, 4405, 4411, 1, 0, 0, 0, 4406, 4407, 5, 105, 0, 0, 4407, 4408, 5, 2, 0, 0, 4408, 4409, 3, 788, 394, 0, 4409, 4410, 5, 3, 0, 0, 4410, 4412, 1, 0, 0, 0, 4411, 4406, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 359, 1, 0, 0, 0, 4413, 4414, 5, 82, 0, 0, 4414, 4415, 5, 311, 0, 0, 4415, 361, 1, 0, 0, 0, 4416, 4418, 5, 2, 0, 0, 4417, 4419, 3, 364, 182, 0, 4418, 4417, 1, 0, 0, 0, 4418, 4419, 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 4421, 5, 3, 0, 0, 4421, 363, 1, 0, 0, 0, 4422, 4427, 3, 378, 189, 0, 4423, 4424, 5, 6, 0, 0, 4424, 4426, 3, 378, 189, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4429, 1, 0, 0, 0, 4427, 4425, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 365, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4435, 3, 368, 184, 0, 4431, 4432, 5, 6, 0, 0, 4432, 4434, 3, 368, 184, 0, 4433, 4431, 1, 0, 0, 0, 4434, 4437, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4435, 4436, 1, 0, 0, 0, 4436, 367, 1, 0, 0, 0, 4437, 4435, 1, 0, 0, 0, 4438, 4439, 3, 798, 399, 0, 4439, 4440, 3, 362, 181, 0, 4440, 4444, 1, 0, 0, 0, 4441, 4444, 3, 838, 419, 0, 4442, 4444, 3, 784, 392, 0, 4443, 4438, 1, 0, 0, 0, 4443, 4441, 1, 0, 0, 0, 4443, 4442, 1, 0, 0, 0, 4444, 369, 1, 0, 0, 0, 4445, 4450, 3, 372, 186, 0, 4446, 4447, 5, 6, 0, 0, 4447, 4449, 3, 372, 186, 0, 4448, 4446, 1, 0, 0, 0, 4449, 4452, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4451, 1, 0, 0, 0, 4451, 371, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4453, 4454, 3, 800, 400, 0, 4454, 4455, 3, 362, 181, 0, 4455, 4459, 1, 0, 0, 0, 4456, 4459, 3, 838, 419, 0, 4457, 4459, 3, 784, 392, 0, 4458, 4453, 1, 0, 0, 0, 4458, 4456, 1, 0, 0, 0, 4458, 4457, 1, 0, 0, 0, 4459, 373, 1, 0, 0, 0, 4460, 4465, 3, 376, 188, 0, 4461, 4462, 5, 6, 0, 0, 4462, 4464, 3, 376, 188, 0, 4463, 4461, 1, 0, 0, 0, 4464, 4467, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 375, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4468, 4469, 3, 812, 406, 0, 4469, 4470, 3, 362, 181, 0, 4470, 4474, 1, 0, 0, 0, 4471, 4474, 3, 838, 419, 0, 4472, 4474, 3, 784, 392, 0, 4473, 4468, 1, 0, 0, 0, 4473, 4471, 1, 0, 0, 0, 4473, 4472, 1, 0, 0, 0, 4474, 377, 1, 0, 0, 0, 4475, 4477, 3, 380, 190, 0, 4476, 4478, 3, 826, 413, 0, 4477, 4476, 1, 0, 0, 0, 4477, 4478, 1, 0, 0, 0, 4478, 4484, 1, 0, 0, 0, 4479, 4481, 3, 826, 413, 0, 4480, 4482, 3, 380, 190, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4484, 1, 0, 0, 0, 4483, 4475, 1, 0, 0, 0, 4483, 4479, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 4485, 1, 0, 0, 0, 4485, 4486, 3, 382, 191, 0, 4486, 379, 1, 0, 0, 0, 4487, 4489, 5, 68, 0, 0, 4488, 4490, 5, 453, 0, 0, 4489, 4488, 1, 0, 0, 0, 4489, 4490, 1, 0, 0, 0, 4490, 4495, 1, 0, 0, 0, 4491, 4495, 5, 453, 0, 0, 4492, 4495, 5, 400, 0, 0, 4493, 4495, 5, 101, 0, 0, 4494, 4487, 1, 0, 0, 0, 4494, 4491, 1, 0, 0, 0, 4494, 4492, 1, 0, 0, 0, 4494, 4493, 1, 0, 0, 0, 4495, 381, 1, 0, 0, 0, 4496, 4506, 3, 648, 324, 0, 4497, 4499, 5, 415, 0, 0, 4498, 4497, 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 4500, 1, 0, 0, 0, 4500, 4501, 3, 826, 413, 0, 4501, 4502, 3, 312, 156, 0, 4502, 4503, 5, 27, 0, 0, 4503, 4504, 5, 360, 0, 0, 4504, 4506, 1, 0, 0, 0, 4505, 4496, 1, 0, 0, 0, 4505, 4498, 1, 0, 0, 0, 4506, 383, 1, 0, 0, 0, 4507, 4510, 3, 378, 189, 0, 4508, 4509, 7, 58, 0, 0, 4509, 4511, 3, 670, 335, 0, 4510, 4508, 1, 0, 0, 0, 4510, 4511, 1, 0, 0, 0, 4511, 385, 1, 0, 0, 0, 4512, 4522, 5, 2, 0, 0, 4513, 4523, 5, 9, 0, 0, 4514, 4516, 3, 364, 182, 0, 4515, 4514, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4520, 1, 0, 0, 0, 4517, 4518, 5, 83, 0, 0, 4518, 4519, 5, 147, 0, 0, 4519, 4521, 3, 364, 182, 0, 4520, 4517, 1, 0, 0, 0, 4520, 4521, 1, 0, 0, 0, 4521, 4523, 1, 0, 0, 0, 4522, 4513, 1, 0, 0, 0, 4522, 4515, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 4525, 5, 3, 0, 0, 4525, 387, 1, 0, 0, 0, 4526, 4527, 3, 812, 406, 0, 4527, 4528, 3, 386, 193, 0, 4528, 389, 1, 0, 0, 0, 4529, 4530, 5, 316, 0, 0, 4530, 4533, 5, 78, 0, 0, 4531, 4533, 5, 149, 0, 0, 4532, 4529, 1, 0, 0, 0, 4532, 4531, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 4535, 5, 80, 0, 0, 4535, 4536, 5, 78, 0, 0, 4536, 4559, 5, 458, 0, 0, 4537, 4559, 5, 346, 0, 0, 4538, 4559, 5, 222, 0, 0, 4539, 4559, 5, 338, 0, 0, 4540, 4559, 5, 377, 0, 0, 4541, 4543, 5, 205, 0, 0, 4542, 4541, 1, 0, 0, 0, 4542, 4543, 1, 0, 0, 0, 4543, 4544, 1, 0, 0, 0, 4544, 4545, 5, 327, 0, 0, 4545, 4559, 7, 59, 0, 0, 4546, 4559, 5, 250, 0, 0, 4547, 4548, 5, 77, 0, 0, 4548, 4559, 5, 250, 0, 0, 4549, 4550, 7, 60, 0, 0, 4550, 4559, 3, 196, 98, 0, 4551, 4552, 5, 459, 0, 0, 4552, 4559, 3, 310, 155, 0, 4553, 4554, 5, 333, 0, 0, 4554, 4559, 3, 42, 21, 0, 4555, 4559, 3, 60, 30, 0, 4556, 4557, 5, 460, 0, 0, 4557, 4559, 3, 824, 412, 0, 4558, 4532, 1, 0, 0, 0, 4558, 4537, 1, 0, 0, 0, 4558, 4538, 1, 0, 0, 0, 4558, 4539, 1, 0, 0, 0, 4558, 4540, 1, 0, 0, 0, 4558, 4542, 1, 0, 0, 0, 4558, 4546, 1, 0, 0, 0, 4558, 4547, 1, 0, 0, 0, 4558, 4549, 1, 0, 0, 0, 4558, 4551, 1, 0, 0, 0, 4558, 4553, 1, 0, 0, 0, 4558, 4555, 1, 0, 0, 0, 4558, 4556, 1, 0, 0, 0, 4559, 391, 1, 0, 0, 0, 4560, 4561, 5, 36, 0, 0, 4561, 4562, 3, 814, 407, 0, 4562, 4563, 3, 456, 228, 0, 4563, 4596, 1, 0, 0, 0, 4564, 4565, 5, 247, 0, 0, 4565, 4596, 3, 58, 29, 0, 4566, 4567, 5, 443, 0, 0, 4567, 4568, 5, 62, 0, 0, 4568, 4569, 5, 360, 0, 0, 4569, 4576, 3, 648, 324, 0, 4570, 4571, 5, 6, 0, 0, 4571, 4572, 5, 62, 0, 0, 4572, 4573, 5, 360, 0, 0, 4573, 4575, 3, 648, 324, 0, 4574, 4570, 1, 0, 0, 0, 4575, 4578, 1, 0, 0, 0, 4576, 4574, 1, 0, 0, 0, 4576, 4577, 1, 0, 0, 0, 4577, 4596, 1, 0, 0, 0, 4578, 4576, 1, 0, 0, 0, 4579, 4596, 5, 104, 0, 0, 4580, 4581, 5, 333, 0, 0, 4581, 4588, 3, 824, 412, 0, 4582, 4583, 5, 94, 0, 0, 4583, 4589, 3, 824, 412, 0, 4584, 4585, 5, 10, 0, 0, 4585, 4589, 3, 824, 412, 0, 4586, 4587, 5, 64, 0, 0, 4587, 4589, 5, 434, 0, 0, 4588, 4582, 1, 0, 0, 0, 4588, 4584, 1, 0, 0, 0, 4588, 4586, 1, 0, 0, 0, 4589, 4596, 1, 0, 0, 0, 4590, 4591, 5, 36, 0, 0, 4591, 4596, 3, 824, 412, 0, 4592, 4596, 3, 4, 2, 0, 4593, 4596, 3, 390, 195, 0, 4594, 4596, 3, 824, 412, 0, 4595, 4560, 1, 0, 0, 0, 4595, 4564, 1, 0, 0, 0, 4595, 4566, 1, 0, 0, 0, 4595, 4579, 1, 0, 0, 0, 4595, 4580, 1, 0, 0, 0, 4595, 4590, 1, 0, 0, 0, 4595, 4592, 1, 0, 0, 0, 4595, 4593, 1, 0, 0, 0, 4595, 4594, 1, 0, 0, 0, 4596, 393, 1, 0, 0, 0, 4597, 4598, 5, 105, 0, 0, 4598, 4599, 3, 278, 139, 0, 4599, 395, 1, 0, 0, 0, 4600, 4601, 3, 804, 402, 0, 4601, 4602, 3, 382, 191, 0, 4602, 397, 1, 0, 0, 0, 4603, 4610, 5, 138, 0, 0, 4604, 4605, 5, 211, 0, 0, 4605, 4611, 3, 376, 188, 0, 4606, 4607, 5, 296, 0, 0, 4607, 4611, 3, 372, 186, 0, 4608, 4609, 5, 442, 0, 0, 4609, 4611, 3, 368, 184, 0, 4610, 4604, 1, 0, 0, 0, 4610, 4606, 1, 0, 0, 0, 4610, 4608, 1, 0, 0, 0, 4611, 4613, 1, 0, 0, 0, 4612, 4614, 3, 390, 195, 0, 4613, 4612, 1, 0, 0, 0, 4614, 4615, 1, 0, 0, 0, 4615, 4613, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4618, 1, 0, 0, 0, 4617, 4619, 5, 315, 0, 0, 4618, 4617, 1, 0, 0, 0, 4618, 4619, 1, 0, 0, 0, 4619, 399, 1, 0, 0, 0, 4620, 4636, 5, 191, 0, 0, 4621, 4623, 5, 211, 0, 0, 4622, 4624, 3, 416, 208, 0, 4623, 4622, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4637, 3, 374, 187, 0, 4626, 4628, 5, 296, 0, 0, 4627, 4629, 3, 416, 208, 0, 4628, 4627, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4630, 1, 0, 0, 0, 4630, 4637, 3, 370, 185, 0, 4631, 4633, 5, 442, 0, 0, 4632, 4634, 3, 416, 208, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4635, 1, 0, 0, 0, 4635, 4637, 3, 366, 183, 0, 4636, 4621, 1, 0, 0, 0, 4636, 4626, 1, 0, 0, 0, 4636, 4631, 1, 0, 0, 0, 4637, 4639, 1, 0, 0, 0, 4638, 4640, 3, 88, 44, 0, 4639, 4638, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 401, 1, 0, 0, 0, 4641, 4642, 5, 191, 0, 0, 4642, 4644, 5, 136, 0, 0, 4643, 4645, 3, 416, 208, 0, 4644, 4643, 1, 0, 0, 0, 4644, 4645, 1, 0, 0, 0, 4645, 4646, 1, 0, 0, 0, 4646, 4651, 3, 388, 194, 0, 4647, 4648, 5, 6, 0, 0, 4648, 4650, 3, 388, 194, 0, 4649, 4647, 1, 0, 0, 0, 4650, 4653, 1, 0, 0, 0, 4651, 4649, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4655, 1, 0, 0, 0, 4653, 4651, 1, 0, 0, 0, 4654, 4656, 3, 88, 44, 0, 4655, 4654, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 403, 1, 0, 0, 0, 4657, 4658, 5, 191, 0, 0, 4658, 4660, 5, 278, 0, 0, 4659, 4661, 3, 416, 208, 0, 4660, 4659, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 4662, 1, 0, 0, 0, 4662, 4667, 3, 410, 205, 0, 4663, 4664, 5, 6, 0, 0, 4664, 4666, 3, 410, 205, 0, 4665, 4663, 1, 0, 0, 0, 4666, 4669, 1, 0, 0, 0, 4667, 4665, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4671, 1, 0, 0, 0, 4669, 4667, 1, 0, 0, 0, 4670, 4672, 3, 88, 44, 0, 4671, 4670, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 405, 1, 0, 0, 0, 4673, 4686, 5, 2, 0, 0, 4674, 4677, 3, 648, 324, 0, 4675, 4676, 5, 6, 0, 0, 4676, 4678, 3, 648, 324, 0, 4677, 4675, 1, 0, 0, 0, 4677, 4678, 1, 0, 0, 0, 4678, 4687, 1, 0, 0, 0, 4679, 4680, 5, 407, 0, 0, 4680, 4681, 5, 6, 0, 0, 4681, 4687, 3, 648, 324, 0, 4682, 4683, 3, 648, 324, 0, 4683, 4684, 5, 6, 0, 0, 4684, 4685, 5, 407, 0, 0, 4685, 4687, 1, 0, 0, 0, 4686, 4674, 1, 0, 0, 0, 4686, 4679, 1, 0, 0, 0, 4686, 4682, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4689, 5, 3, 0, 0, 4689, 407, 1, 0, 0, 0, 4690, 4691, 3, 824, 412, 0, 4691, 4692, 5, 11, 0, 0, 4692, 4694, 1, 0, 0, 0, 4693, 4690, 1, 0, 0, 0, 4694, 4697, 1, 0, 0, 0, 4695, 4693, 1, 0, 0, 0, 4695, 4696, 1, 0, 0, 0, 4696, 4698, 1, 0, 0, 0, 4697, 4695, 1, 0, 0, 0, 4698, 4699, 3, 718, 359, 0, 4699, 409, 1, 0, 0, 0, 4700, 4701, 3, 408, 204, 0, 4701, 4702, 3, 406, 203, 0, 4702, 411, 1, 0, 0, 0, 4703, 4707, 5, 57, 0, 0, 4704, 4708, 3, 814, 407, 0, 4705, 4706, 5, 247, 0, 0, 4706, 4708, 3, 58, 29, 0, 4707, 4704, 1, 0, 0, 0, 4707, 4705, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4707, 1, 0, 0, 0, 4709, 4710, 1, 0, 0, 0, 4710, 413, 1, 0, 0, 0, 4711, 4712, 5, 46, 0, 0, 4712, 4713, 5, 41, 0, 0, 4713, 4714, 5, 2, 0, 0, 4714, 4715, 3, 648, 324, 0, 4715, 4716, 5, 36, 0, 0, 4716, 4717, 3, 648, 324, 0, 4717, 4734, 5, 3, 0, 0, 4718, 4719, 5, 379, 0, 0, 4719, 4722, 5, 211, 0, 0, 4720, 4721, 5, 36, 0, 0, 4721, 4723, 7, 61, 0, 0, 4722, 4720, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 4735, 1, 0, 0, 0, 4724, 4728, 5, 105, 0, 0, 4725, 4726, 5, 211, 0, 0, 4726, 4729, 3, 376, 188, 0, 4727, 4729, 5, 400, 0, 0, 4728, 4725, 1, 0, 0, 0, 4728, 4727, 1, 0, 0, 0, 4729, 4732, 1, 0, 0, 0, 4730, 4731, 5, 36, 0, 0, 4731, 4733, 7, 61, 0, 0, 4732, 4730, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 4735, 1, 0, 0, 0, 4734, 4718, 1, 0, 0, 0, 4734, 4724, 1, 0, 0, 0, 4735, 415, 1, 0, 0, 0, 4736, 4737, 5, 220, 0, 0, 4737, 4738, 5, 396, 0, 0, 4738, 417, 1, 0, 0, 0, 4739, 4741, 5, 46, 0, 0, 4740, 4742, 3, 360, 180, 0, 4741, 4740, 1, 0, 0, 0, 4741, 4742, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4744, 5, 443, 0, 0, 4744, 4745, 5, 62, 0, 0, 4745, 4746, 3, 648, 324, 0, 4746, 4747, 5, 247, 0, 0, 4747, 4748, 3, 824, 412, 0, 4748, 4763, 5, 2, 0, 0, 4749, 4750, 5, 64, 0, 0, 4750, 4754, 3, 420, 210, 0, 4751, 4752, 5, 6, 0, 0, 4752, 4753, 5, 94, 0, 0, 4753, 4755, 3, 420, 210, 0, 4754, 4751, 1, 0, 0, 0, 4754, 4755, 1, 0, 0, 0, 4755, 4764, 1, 0, 0, 0, 4756, 4757, 5, 94, 0, 0, 4757, 4761, 3, 420, 210, 0, 4758, 4759, 5, 6, 0, 0, 4759, 4760, 5, 64, 0, 0, 4760, 4762, 3, 420, 210, 0, 4761, 4758, 1, 0, 0, 0, 4761, 4762, 1, 0, 0, 0, 4762, 4764, 1, 0, 0, 0, 4763, 4749, 1, 0, 0, 0, 4763, 4756, 1, 0, 0, 0, 4764, 4765, 1, 0, 0, 0, 4765, 4766, 5, 3, 0, 0, 4766, 419, 1, 0, 0, 0, 4767, 4768, 5, 461, 0, 0, 4768, 4769, 5, 105, 0, 0, 4769, 4770, 5, 211, 0, 0, 4770, 4771, 3, 376, 188, 0, 4771, 421, 1, 0, 0, 0, 4772, 4783, 5, 306, 0, 0, 4773, 4774, 5, 2, 0, 0, 4774, 4779, 5, 128, 0, 0, 4775, 4776, 5, 6, 0, 0, 4776, 4778, 5, 128, 0, 0, 4777, 4775, 1, 0, 0, 0, 4778, 4781, 1, 0, 0, 0, 4779, 4777, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 4782, 1, 0, 0, 0, 4781, 4779, 1, 0, 0, 0, 4782, 4784, 5, 3, 0, 0, 4783, 4773, 1, 0, 0, 0, 4783, 4784, 1, 0, 0, 0, 4784, 4810, 1, 0, 0, 0, 4785, 4787, 5, 226, 0, 0, 4786, 4788, 5, 109, 0, 0, 4787, 4786, 1, 0, 0, 0, 4787, 4788, 1, 0, 0, 0, 4788, 4789, 1, 0, 0, 0, 4789, 4811, 3, 784, 392, 0, 4790, 4792, 5, 92, 0, 0, 4791, 4793, 5, 109, 0, 0, 4792, 4791, 1, 0, 0, 0, 4792, 4793, 1, 0, 0, 0, 4793, 4794, 1, 0, 0, 0, 4794, 4811, 3, 778, 389, 0, 4795, 4797, 5, 323, 0, 0, 4796, 4798, 5, 109, 0, 0, 4797, 4796, 1, 0, 0, 0, 4797, 4798, 1, 0, 0, 0, 4798, 4799, 1, 0, 0, 0, 4799, 4811, 3, 794, 397, 0, 4800, 4802, 5, 349, 0, 0, 4801, 4803, 5, 109, 0, 0, 4802, 4801, 1, 0, 0, 0, 4802, 4803, 1, 0, 0, 0, 4803, 4804, 1, 0, 0, 0, 4804, 4811, 3, 824, 412, 0, 4805, 4807, 5, 175, 0, 0, 4806, 4808, 5, 109, 0, 0, 4807, 4806, 1, 0, 0, 0, 4807, 4808, 1, 0, 0, 0, 4808, 4809, 1, 0, 0, 0, 4809, 4811, 3, 792, 396, 0, 4810, 4785, 1, 0, 0, 0, 4810, 4790, 1, 0, 0, 0, 4810, 4795, 1, 0, 0, 0, 4810, 4800, 1, 0, 0, 0, 4810, 4805, 1, 0, 0, 0, 4811, 423, 1, 0, 0, 0, 4812, 4813, 5, 138, 0, 0, 4813, 4814, 3, 170, 85, 0, 4814, 4815, 7, 16, 0, 0, 4815, 4816, 3, 92, 46, 0, 4816, 425, 1, 0, 0, 0, 4817, 4822, 5, 138, 0, 0, 4818, 4819, 5, 136, 0, 0, 4819, 4823, 3, 388, 194, 0, 4820, 4821, 5, 442, 0, 0, 4821, 4823, 3, 368, 184, 0, 4822, 4818, 1, 0, 0, 0, 4822, 4820, 1, 0, 0, 0, 4823, 4824, 1, 0, 0, 0, 4824, 4825, 5, 309, 0, 0, 4825, 4826, 5, 94, 0, 0, 4826, 4827, 3, 824, 412, 0, 4827, 5025, 1, 0, 0, 0, 4828, 4829, 5, 138, 0, 0, 4829, 4830, 5, 175, 0, 0, 4830, 4831, 3, 792, 396, 0, 4831, 4832, 5, 309, 0, 0, 4832, 4833, 5, 94, 0, 0, 4833, 4834, 3, 790, 395, 0, 4834, 5025, 1, 0, 0, 0, 4835, 4836, 5, 138, 0, 0, 4836, 4837, 7, 62, 0, 0, 4837, 4838, 3, 310, 155, 0, 4838, 4839, 5, 309, 0, 0, 4839, 4840, 5, 94, 0, 0, 4840, 4841, 3, 824, 412, 0, 4841, 5025, 1, 0, 0, 0, 4842, 4843, 5, 138, 0, 0, 4843, 4844, 5, 211, 0, 0, 4844, 4845, 3, 376, 188, 0, 4845, 4846, 5, 309, 0, 0, 4846, 4847, 5, 94, 0, 0, 4847, 4848, 3, 810, 405, 0, 4848, 5025, 1, 0, 0, 0, 4849, 4850, 5, 138, 0, 0, 4850, 4851, 5, 278, 0, 0, 4851, 4852, 7, 32, 0, 0, 4852, 4853, 3, 310, 155, 0, 4853, 4854, 3, 164, 82, 0, 4854, 4855, 5, 309, 0, 0, 4855, 4856, 5, 94, 0, 0, 4856, 4857, 3, 824, 412, 0, 4857, 5025, 1, 0, 0, 0, 4858, 4859, 5, 138, 0, 0, 4859, 4860, 5, 296, 0, 0, 4860, 4861, 3, 372, 186, 0, 4861, 4862, 5, 309, 0, 0, 4862, 4863, 5, 94, 0, 0, 4863, 4864, 3, 802, 401, 0, 4864, 5025, 1, 0, 0, 0, 4865, 4866, 5, 138, 0, 0, 4866, 4867, 5, 323, 0, 0, 4867, 4868, 3, 794, 397, 0, 4868, 4869, 5, 309, 0, 0, 4869, 4870, 5, 94, 0, 0, 4870, 4871, 3, 32, 16, 0, 4871, 5025, 1, 0, 0, 0, 4872, 4873, 5, 138, 0, 0, 4873, 4875, 7, 63, 0, 0, 4874, 4876, 3, 416, 208, 0, 4875, 4874, 1, 0, 0, 0, 4875, 4876, 1, 0, 0, 0, 4876, 4877, 1, 0, 0, 0, 4877, 4878, 3, 784, 392, 0, 4878, 4879, 5, 309, 0, 0, 4879, 4880, 5, 94, 0, 0, 4880, 4881, 3, 824, 412, 0, 4881, 5025, 1, 0, 0, 0, 4882, 4884, 5, 138, 0, 0, 4883, 4885, 5, 259, 0, 0, 4884, 4883, 1, 0, 0, 0, 4884, 4885, 1, 0, 0, 0, 4885, 4886, 1, 0, 0, 0, 4886, 4888, 5, 376, 0, 0, 4887, 4889, 3, 416, 208, 0, 4888, 4887, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 3, 782, 391, 0, 4891, 4892, 5, 309, 0, 0, 4892, 4893, 5, 94, 0, 0, 4893, 4894, 3, 780, 390, 0, 4894, 5025, 1, 0, 0, 0, 4895, 4897, 5, 138, 0, 0, 4896, 4898, 5, 63, 0, 0, 4897, 4896, 1, 0, 0, 0, 4897, 4898, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4901, 5, 92, 0, 0, 4900, 4902, 3, 416, 208, 0, 4901, 4900, 1, 0, 0, 0, 4901, 4902, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 3, 620, 310, 0, 4904, 4905, 5, 309, 0, 0, 4905, 4906, 5, 94, 0, 0, 4906, 4907, 3, 776, 388, 0, 4907, 5025, 1, 0, 0, 0, 4908, 4933, 5, 138, 0, 0, 4909, 4911, 5, 63, 0, 0, 4910, 4909, 1, 0, 0, 0, 4910, 4911, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4914, 5, 92, 0, 0, 4913, 4915, 3, 416, 208, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4917, 3, 620, 310, 0, 4917, 4919, 5, 309, 0, 0, 4918, 4920, 5, 44, 0, 0, 4919, 4918, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4934, 1, 0, 0, 0, 4921, 4923, 5, 259, 0, 0, 4922, 4921, 1, 0, 0, 0, 4922, 4923, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4926, 5, 376, 0, 0, 4925, 4927, 3, 416, 208, 0, 4926, 4925, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 4929, 3, 782, 391, 0, 4929, 4931, 5, 309, 0, 0, 4930, 4932, 5, 44, 0, 0, 4931, 4930, 1, 0, 0, 0, 4931, 4932, 1, 0, 0, 0, 4932, 4934, 1, 0, 0, 0, 4933, 4910, 1, 0, 0, 0, 4933, 4922, 1, 0, 0, 0, 4934, 4935, 1, 0, 0, 0, 4935, 4936, 3, 804, 402, 0, 4936, 4937, 5, 94, 0, 0, 4937, 4938, 3, 808, 404, 0, 4938, 5025, 1, 0, 0, 0, 4939, 4947, 5, 138, 0, 0, 4940, 4942, 5, 92, 0, 0, 4941, 4943, 3, 416, 208, 0, 4942, 4941, 1, 0, 0, 0, 4942, 4943, 1, 0, 0, 0, 4943, 4944, 1, 0, 0, 0, 4944, 4948, 3, 620, 310, 0, 4945, 4946, 5, 189, 0, 0, 4946, 4948, 3, 310, 155, 0, 4947, 4940, 1, 0, 0, 0, 4947, 4945, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 4950, 5, 309, 0, 0, 4950, 4951, 5, 45, 0, 0, 4951, 4952, 3, 824, 412, 0, 4952, 4953, 5, 94, 0, 0, 4953, 4954, 3, 824, 412, 0, 4954, 5025, 1, 0, 0, 0, 4955, 4962, 5, 138, 0, 0, 4956, 4958, 5, 445, 0, 0, 4957, 4959, 3, 416, 208, 0, 4958, 4957, 1, 0, 0, 0, 4958, 4959, 1, 0, 0, 0, 4959, 4963, 1, 0, 0, 0, 4960, 4963, 5, 321, 0, 0, 4961, 4963, 5, 357, 0, 0, 4962, 4956, 1, 0, 0, 0, 4962, 4960, 1, 0, 0, 0, 4962, 4961, 1, 0, 0, 0, 4963, 4964, 1, 0, 0, 0, 4964, 4965, 3, 824, 412, 0, 4965, 4966, 5, 80, 0, 0, 4966, 4967, 3, 784, 392, 0, 4967, 4968, 5, 309, 0, 0, 4968, 4969, 5, 94, 0, 0, 4969, 4970, 3, 824, 412, 0, 4970, 5025, 1, 0, 0, 0, 4971, 4984, 5, 138, 0, 0, 4972, 4973, 5, 63, 0, 0, 4973, 4974, 5, 174, 0, 0, 4974, 4985, 5, 381, 0, 0, 4975, 4977, 5, 295, 0, 0, 4976, 4975, 1, 0, 0, 0, 4976, 4977, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4985, 5, 247, 0, 0, 4979, 4985, 5, 452, 0, 0, 4980, 4985, 5, 331, 0, 0, 4981, 4985, 5, 451, 0, 0, 4982, 4983, 5, 198, 0, 0, 4983, 4985, 5, 357, 0, 0, 4984, 4972, 1, 0, 0, 0, 4984, 4976, 1, 0, 0, 0, 4984, 4979, 1, 0, 0, 0, 4984, 4980, 1, 0, 0, 0, 4984, 4981, 1, 0, 0, 0, 4984, 4982, 1, 0, 0, 0, 4985, 4986, 1, 0, 0, 0, 4986, 4987, 3, 824, 412, 0, 4987, 4988, 5, 309, 0, 0, 4988, 4989, 5, 94, 0, 0, 4989, 4990, 3, 824, 412, 0, 4990, 5025, 1, 0, 0, 0, 4991, 4992, 5, 138, 0, 0, 4992, 4993, 7, 46, 0, 0, 4993, 4994, 3, 820, 410, 0, 4994, 4995, 5, 309, 0, 0, 4995, 4996, 5, 94, 0, 0, 4996, 4997, 3, 820, 410, 0, 4997, 5025, 1, 0, 0, 0, 4998, 4999, 5, 138, 0, 0, 4999, 5000, 3, 170, 85, 0, 5000, 5001, 5, 309, 0, 0, 5001, 5002, 5, 94, 0, 0, 5002, 5003, 3, 774, 387, 0, 5003, 5025, 1, 0, 0, 0, 5004, 5005, 5, 138, 0, 0, 5005, 5006, 5, 355, 0, 0, 5006, 5007, 5, 325, 0, 0, 5007, 5008, 7, 42, 0, 0, 5008, 5009, 3, 310, 155, 0, 5009, 5010, 5, 309, 0, 0, 5010, 5011, 5, 94, 0, 0, 5011, 5012, 3, 824, 412, 0, 5012, 5025, 1, 0, 0, 0, 5013, 5014, 5, 138, 0, 0, 5014, 5015, 5, 360, 0, 0, 5015, 5016, 3, 310, 155, 0, 5016, 5017, 5, 309, 0, 0, 5017, 5018, 5, 143, 0, 0, 5018, 5019, 3, 824, 412, 0, 5019, 5020, 5, 94, 0, 0, 5020, 5022, 3, 824, 412, 0, 5021, 5023, 3, 88, 44, 0, 5022, 5021, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5025, 1, 0, 0, 0, 5024, 4817, 1, 0, 0, 0, 5024, 4828, 1, 0, 0, 0, 5024, 4835, 1, 0, 0, 0, 5024, 4842, 1, 0, 0, 0, 5024, 4849, 1, 0, 0, 0, 5024, 4858, 1, 0, 0, 0, 5024, 4865, 1, 0, 0, 0, 5024, 4872, 1, 0, 0, 0, 5024, 4882, 1, 0, 0, 0, 5024, 4895, 1, 0, 0, 0, 5024, 4908, 1, 0, 0, 0, 5024, 4939, 1, 0, 0, 0, 5024, 4955, 1, 0, 0, 0, 5024, 4971, 1, 0, 0, 0, 5024, 4991, 1, 0, 0, 0, 5024, 4998, 1, 0, 0, 0, 5024, 5004, 1, 0, 0, 0, 5024, 5013, 1, 0, 0, 0, 5025, 427, 1, 0, 0, 0, 5026, 5043, 5, 138, 0, 0, 5027, 5028, 5, 211, 0, 0, 5028, 5044, 3, 376, 188, 0, 5029, 5030, 5, 296, 0, 0, 5030, 5044, 3, 372, 186, 0, 5031, 5032, 5, 442, 0, 0, 5032, 5044, 3, 368, 184, 0, 5033, 5034, 5, 357, 0, 0, 5034, 5035, 3, 824, 412, 0, 5035, 5036, 5, 80, 0, 0, 5036, 5037, 3, 784, 392, 0, 5037, 5044, 1, 0, 0, 0, 5038, 5039, 5, 259, 0, 0, 5039, 5040, 5, 376, 0, 0, 5040, 5044, 3, 782, 391, 0, 5041, 5042, 5, 226, 0, 0, 5042, 5044, 3, 784, 392, 0, 5043, 5027, 1, 0, 0, 0, 5043, 5029, 1, 0, 0, 0, 5043, 5031, 1, 0, 0, 0, 5043, 5033, 1, 0, 0, 0, 5043, 5038, 1, 0, 0, 0, 5043, 5041, 1, 0, 0, 0, 5044, 5046, 1, 0, 0, 0, 5045, 5047, 5, 269, 0, 0, 5046, 5045, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5049, 5, 462, 0, 0, 5049, 5050, 5, 80, 0, 0, 5050, 5051, 5, 204, 0, 0, 5051, 5052, 3, 824, 412, 0, 5052, 429, 1, 0, 0, 0, 5053, 5092, 5, 138, 0, 0, 5054, 5055, 5, 136, 0, 0, 5055, 5093, 3, 388, 194, 0, 5056, 5057, 5, 204, 0, 0, 5057, 5093, 3, 824, 412, 0, 5058, 5059, 5, 211, 0, 0, 5059, 5093, 3, 376, 188, 0, 5060, 5061, 5, 278, 0, 0, 5061, 5093, 3, 410, 205, 0, 5062, 5063, 5, 278, 0, 0, 5063, 5064, 7, 32, 0, 0, 5064, 5065, 3, 310, 155, 0, 5065, 5066, 3, 164, 82, 0, 5066, 5093, 1, 0, 0, 0, 5067, 5068, 5, 296, 0, 0, 5068, 5093, 3, 372, 186, 0, 5069, 5070, 5, 442, 0, 0, 5070, 5093, 3, 368, 184, 0, 5071, 5073, 5, 328, 0, 0, 5072, 5074, 3, 416, 208, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5093, 3, 784, 392, 0, 5076, 5078, 5, 259, 0, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 5, 376, 0, 0, 5080, 5082, 3, 416, 208, 0, 5081, 5080, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5093, 3, 782, 391, 0, 5084, 5086, 5, 63, 0, 0, 5085, 5084, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 5089, 5, 92, 0, 0, 5088, 5090, 3, 416, 208, 0, 5089, 5088, 1, 0, 0, 0, 5089, 5090, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 5093, 3, 620, 310, 0, 5092, 5054, 1, 0, 0, 0, 5092, 5056, 1, 0, 0, 0, 5092, 5058, 1, 0, 0, 0, 5092, 5060, 1, 0, 0, 0, 5092, 5062, 1, 0, 0, 0, 5092, 5067, 1, 0, 0, 0, 5092, 5069, 1, 0, 0, 0, 5092, 5071, 1, 0, 0, 0, 5092, 5077, 1, 0, 0, 0, 5092, 5085, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5095, 5, 333, 0, 0, 5095, 5096, 5, 323, 0, 0, 5096, 5097, 3, 794, 397, 0, 5097, 5115, 1, 0, 0, 0, 5098, 5107, 5, 138, 0, 0, 5099, 5100, 5, 355, 0, 0, 5100, 5101, 5, 325, 0, 0, 5101, 5108, 7, 42, 0, 0, 5102, 5108, 5, 108, 0, 0, 5103, 5108, 5, 168, 0, 0, 5104, 5108, 5, 189, 0, 0, 5105, 5108, 5, 342, 0, 0, 5106, 5108, 5, 360, 0, 0, 5107, 5099, 1, 0, 0, 0, 5107, 5102, 1, 0, 0, 0, 5107, 5103, 1, 0, 0, 0, 5107, 5104, 1, 0, 0, 0, 5107, 5105, 1, 0, 0, 0, 5107, 5106, 1, 0, 0, 0, 5108, 5109, 1, 0, 0, 0, 5109, 5110, 3, 310, 155, 0, 5110, 5111, 5, 333, 0, 0, 5111, 5112, 5, 323, 0, 0, 5112, 5113, 3, 794, 397, 0, 5113, 5115, 1, 0, 0, 0, 5114, 5053, 1, 0, 0, 0, 5114, 5098, 1, 0, 0, 0, 5115, 431, 1, 0, 0, 0, 5116, 5117, 5, 138, 0, 0, 5117, 5118, 5, 278, 0, 0, 5118, 5119, 3, 410, 205, 0, 5119, 5120, 5, 333, 0, 0, 5120, 5121, 3, 434, 217, 0, 5121, 433, 1, 0, 0, 0, 5122, 5123, 5, 2, 0, 0, 5123, 5128, 3, 436, 218, 0, 5124, 5125, 5, 6, 0, 0, 5125, 5127, 3, 436, 218, 0, 5126, 5124, 1, 0, 0, 0, 5127, 5130, 1, 0, 0, 0, 5128, 5126, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 5131, 1, 0, 0, 0, 5130, 5128, 1, 0, 0, 0, 5131, 5132, 5, 3, 0, 0, 5132, 435, 1, 0, 0, 0, 5133, 5134, 3, 830, 415, 0, 5134, 5141, 5, 10, 0, 0, 5135, 5142, 5, 407, 0, 0, 5136, 5142, 3, 382, 191, 0, 5137, 5142, 3, 840, 420, 0, 5138, 5142, 3, 724, 362, 0, 5139, 5142, 3, 196, 98, 0, 5140, 5142, 3, 814, 407, 0, 5141, 5135, 1, 0, 0, 0, 5141, 5136, 1, 0, 0, 0, 5141, 5137, 1, 0, 0, 0, 5141, 5138, 1, 0, 0, 0, 5141, 5139, 1, 0, 0, 0, 5141, 5140, 1, 0, 0, 0, 5142, 437, 1, 0, 0, 0, 5143, 5144, 5, 138, 0, 0, 5144, 5145, 5, 360, 0, 0, 5145, 5146, 3, 310, 155, 0, 5146, 5147, 5, 333, 0, 0, 5147, 5148, 3, 434, 217, 0, 5148, 439, 1, 0, 0, 0, 5149, 5150, 5, 138, 0, 0, 5150, 5151, 5, 278, 0, 0, 5151, 5152, 7, 32, 0, 0, 5152, 5153, 3, 310, 155, 0, 5153, 5154, 3, 164, 82, 0, 5154, 5155, 5, 282, 0, 0, 5155, 5156, 5, 94, 0, 0, 5156, 5157, 3, 820, 410, 0, 5157, 5224, 1, 0, 0, 0, 5158, 5185, 5, 138, 0, 0, 5159, 5160, 5, 136, 0, 0, 5160, 5186, 3, 388, 194, 0, 5161, 5162, 5, 175, 0, 0, 5162, 5186, 3, 792, 396, 0, 5163, 5164, 5, 211, 0, 0, 5164, 5186, 3, 376, 188, 0, 5165, 5167, 5, 295, 0, 0, 5166, 5165, 1, 0, 0, 0, 5166, 5167, 1, 0, 0, 0, 5167, 5168, 1, 0, 0, 0, 5168, 5169, 5, 247, 0, 0, 5169, 5186, 3, 824, 412, 0, 5170, 5171, 5, 248, 0, 0, 5171, 5172, 5, 274, 0, 0, 5172, 5186, 3, 196, 98, 0, 5173, 5174, 5, 248, 0, 0, 5174, 5175, 5, 274, 0, 0, 5175, 5186, 3, 196, 98, 0, 5176, 5177, 5, 278, 0, 0, 5177, 5186, 3, 410, 205, 0, 5178, 5179, 5, 296, 0, 0, 5179, 5186, 3, 372, 186, 0, 5180, 5181, 5, 442, 0, 0, 5181, 5186, 3, 368, 184, 0, 5182, 5183, 5, 323, 0, 0, 5183, 5186, 3, 794, 397, 0, 5184, 5186, 3, 170, 85, 0, 5185, 5159, 1, 0, 0, 0, 5185, 5161, 1, 0, 0, 0, 5185, 5163, 1, 0, 0, 0, 5185, 5166, 1, 0, 0, 0, 5185, 5170, 1, 0, 0, 0, 5185, 5173, 1, 0, 0, 0, 5185, 5176, 1, 0, 0, 0, 5185, 5178, 1, 0, 0, 0, 5185, 5180, 1, 0, 0, 0, 5185, 5182, 1, 0, 0, 0, 5185, 5184, 1, 0, 0, 0, 5186, 5187, 1, 0, 0, 0, 5187, 5188, 5, 282, 0, 0, 5188, 5189, 5, 94, 0, 0, 5189, 5190, 3, 820, 410, 0, 5190, 5224, 1, 0, 0, 0, 5191, 5200, 5, 138, 0, 0, 5192, 5193, 5, 355, 0, 0, 5193, 5194, 5, 325, 0, 0, 5194, 5201, 7, 64, 0, 0, 5195, 5201, 5, 108, 0, 0, 5196, 5201, 5, 168, 0, 0, 5197, 5201, 5, 189, 0, 0, 5198, 5201, 5, 360, 0, 0, 5199, 5201, 5, 342, 0, 0, 5200, 5192, 1, 0, 0, 0, 5200, 5195, 1, 0, 0, 0, 5200, 5196, 1, 0, 0, 0, 5200, 5197, 1, 0, 0, 0, 5200, 5198, 1, 0, 0, 0, 5200, 5199, 1, 0, 0, 0, 5201, 5202, 1, 0, 0, 0, 5202, 5203, 3, 310, 155, 0, 5203, 5204, 5, 282, 0, 0, 5204, 5205, 5, 94, 0, 0, 5205, 5206, 3, 820, 410, 0, 5206, 5224, 1, 0, 0, 0, 5207, 5216, 5, 138, 0, 0, 5208, 5217, 5, 331, 0, 0, 5209, 5210, 5, 63, 0, 0, 5210, 5211, 5, 174, 0, 0, 5211, 5217, 5, 381, 0, 0, 5212, 5213, 5, 198, 0, 0, 5213, 5217, 5, 357, 0, 0, 5214, 5217, 5, 452, 0, 0, 5215, 5217, 5, 451, 0, 0, 5216, 5208, 1, 0, 0, 0, 5216, 5209, 1, 0, 0, 0, 5216, 5212, 1, 0, 0, 0, 5216, 5214, 1, 0, 0, 0, 5216, 5215, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5219, 3, 824, 412, 0, 5219, 5220, 5, 282, 0, 0, 5220, 5221, 5, 94, 0, 0, 5221, 5222, 3, 820, 410, 0, 5222, 5224, 1, 0, 0, 0, 5223, 5149, 1, 0, 0, 0, 5223, 5158, 1, 0, 0, 0, 5223, 5191, 1, 0, 0, 0, 5223, 5207, 1, 0, 0, 0, 5224, 441, 1, 0, 0, 0, 5225, 5226, 5, 46, 0, 0, 5226, 5227, 5, 452, 0, 0, 5227, 5234, 3, 824, 412, 0, 5228, 5229, 5, 62, 0, 0, 5229, 5230, 5, 92, 0, 0, 5230, 5235, 3, 624, 312, 0, 5231, 5232, 5, 62, 0, 0, 5232, 5233, 5, 30, 0, 0, 5233, 5235, 5, 350, 0, 0, 5234, 5228, 1, 0, 0, 0, 5234, 5231, 1, 0, 0, 0, 5234, 5235, 1, 0, 0, 0, 5235, 5237, 1, 0, 0, 0, 5236, 5238, 3, 394, 197, 0, 5237, 5236, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 443, 1, 0, 0, 0, 5239, 5240, 5, 138, 0, 0, 5240, 5241, 5, 452, 0, 0, 5241, 5259, 3, 824, 412, 0, 5242, 5243, 5, 282, 0, 0, 5243, 5244, 5, 94, 0, 0, 5244, 5260, 3, 820, 410, 0, 5245, 5246, 5, 333, 0, 0, 5246, 5260, 3, 278, 139, 0, 5247, 5248, 5, 309, 0, 0, 5248, 5249, 5, 94, 0, 0, 5249, 5260, 3, 824, 412, 0, 5250, 5251, 7, 35, 0, 0, 5251, 5256, 3, 622, 311, 0, 5252, 5253, 5, 6, 0, 0, 5253, 5255, 3, 622, 311, 0, 5254, 5252, 1, 0, 0, 0, 5255, 5258, 1, 0, 0, 0, 5256, 5254, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, 0, 5257, 5260, 1, 0, 0, 0, 5258, 5256, 1, 0, 0, 0, 5259, 5242, 1, 0, 0, 0, 5259, 5245, 1, 0, 0, 0, 5259, 5247, 1, 0, 0, 0, 5259, 5250, 1, 0, 0, 0, 5260, 445, 1, 0, 0, 0, 5261, 5262, 5, 46, 0, 0, 5262, 5263, 5, 451, 0, 0, 5263, 5264, 3, 824, 412, 0, 5264, 5265, 5, 164, 0, 0, 5265, 5266, 3, 814, 407, 0, 5266, 5267, 5, 452, 0, 0, 5267, 5272, 3, 830, 415, 0, 5268, 5269, 5, 6, 0, 0, 5269, 5271, 3, 830, 415, 0, 5270, 5268, 1, 0, 0, 0, 5271, 5274, 1, 0, 0, 0, 5272, 5270, 1, 0, 0, 0, 5272, 5273, 1, 0, 0, 0, 5273, 5276, 1, 0, 0, 0, 5274, 5272, 1, 0, 0, 0, 5275, 5277, 3, 394, 197, 0, 5276, 5275, 1, 0, 0, 0, 5276, 5277, 1, 0, 0, 0, 5277, 447, 1, 0, 0, 0, 5278, 5279, 5, 138, 0, 0, 5279, 5280, 5, 451, 0, 0, 5280, 5281, 3, 824, 412, 0, 5281, 5282, 5, 333, 0, 0, 5282, 5283, 3, 278, 139, 0, 5283, 5335, 1, 0, 0, 0, 5284, 5285, 5, 138, 0, 0, 5285, 5286, 5, 451, 0, 0, 5286, 5287, 3, 824, 412, 0, 5287, 5288, 5, 164, 0, 0, 5288, 5289, 3, 814, 407, 0, 5289, 5335, 1, 0, 0, 0, 5290, 5291, 5, 138, 0, 0, 5291, 5292, 5, 451, 0, 0, 5292, 5293, 3, 824, 412, 0, 5293, 5294, 5, 305, 0, 0, 5294, 5296, 5, 452, 0, 0, 5295, 5297, 3, 394, 197, 0, 5296, 5295, 1, 0, 0, 0, 5296, 5297, 1, 0, 0, 0, 5297, 5335, 1, 0, 0, 0, 5298, 5299, 5, 138, 0, 0, 5299, 5300, 5, 451, 0, 0, 5300, 5301, 3, 824, 412, 0, 5301, 5302, 7, 35, 0, 0, 5302, 5303, 5, 452, 0, 0, 5303, 5308, 3, 830, 415, 0, 5304, 5305, 5, 6, 0, 0, 5305, 5307, 3, 830, 415, 0, 5306, 5304, 1, 0, 0, 0, 5307, 5310, 1, 0, 0, 0, 5308, 5306, 1, 0, 0, 0, 5308, 5309, 1, 0, 0, 0, 5309, 5312, 1, 0, 0, 0, 5310, 5308, 1, 0, 0, 0, 5311, 5313, 3, 394, 197, 0, 5312, 5311, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5335, 1, 0, 0, 0, 5314, 5315, 5, 138, 0, 0, 5315, 5316, 5, 451, 0, 0, 5316, 5317, 3, 824, 412, 0, 5317, 5318, 7, 65, 0, 0, 5318, 5335, 1, 0, 0, 0, 5319, 5320, 5, 138, 0, 0, 5320, 5321, 5, 451, 0, 0, 5321, 5322, 3, 824, 412, 0, 5322, 5323, 5, 465, 0, 0, 5323, 5324, 5, 2, 0, 0, 5324, 5325, 3, 284, 142, 0, 5325, 5326, 5, 3, 0, 0, 5326, 5335, 1, 0, 0, 0, 5327, 5328, 5, 138, 0, 0, 5328, 5329, 5, 451, 0, 0, 5329, 5330, 3, 824, 412, 0, 5330, 5331, 5, 282, 0, 0, 5331, 5332, 5, 94, 0, 0, 5332, 5333, 3, 820, 410, 0, 5333, 5335, 1, 0, 0, 0, 5334, 5278, 1, 0, 0, 0, 5334, 5284, 1, 0, 0, 0, 5334, 5290, 1, 0, 0, 0, 5334, 5298, 1, 0, 0, 0, 5334, 5314, 1, 0, 0, 0, 5334, 5319, 1, 0, 0, 0, 5334, 5327, 1, 0, 0, 0, 5335, 449, 1, 0, 0, 0, 5336, 5338, 5, 46, 0, 0, 5337, 5339, 3, 360, 180, 0, 5338, 5337, 1, 0, 0, 0, 5338, 5339, 1, 0, 0, 0, 5339, 5340, 1, 0, 0, 0, 5340, 5341, 5, 321, 0, 0, 5341, 5342, 3, 824, 412, 0, 5342, 5343, 5, 36, 0, 0, 5343, 5344, 5, 80, 0, 0, 5344, 5345, 7, 66, 0, 0, 5345, 5346, 5, 94, 0, 0, 5346, 5348, 3, 784, 392, 0, 5347, 5349, 3, 634, 317, 0, 5348, 5347, 1, 0, 0, 0, 5348, 5349, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 5352, 5, 57, 0, 0, 5351, 5353, 7, 67, 0, 0, 5352, 5351, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5370, 1, 0, 0, 0, 5354, 5371, 5, 270, 0, 0, 5355, 5371, 3, 452, 226, 0, 5356, 5358, 5, 2, 0, 0, 5357, 5359, 3, 452, 226, 0, 5358, 5357, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5366, 1, 0, 0, 0, 5360, 5362, 5, 7, 0, 0, 5361, 5363, 3, 452, 226, 0, 5362, 5361, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5365, 1, 0, 0, 0, 5364, 5360, 1, 0, 0, 0, 5365, 5368, 1, 0, 0, 0, 5366, 5364, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 5369, 1, 0, 0, 0, 5368, 5366, 1, 0, 0, 0, 5369, 5371, 5, 3, 0, 0, 5370, 5354, 1, 0, 0, 0, 5370, 5355, 1, 0, 0, 0, 5370, 5356, 1, 0, 0, 0, 5371, 451, 1, 0, 0, 0, 5372, 5378, 3, 554, 277, 0, 5373, 5378, 3, 532, 266, 0, 5374, 5378, 3, 546, 273, 0, 5375, 5378, 3, 542, 271, 0, 5376, 5378, 3, 454, 227, 0, 5377, 5372, 1, 0, 0, 0, 5377, 5373, 1, 0, 0, 0, 5377, 5374, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5377, 5376, 1, 0, 0, 0, 5378, 453, 1, 0, 0, 0, 5379, 5380, 5, 271, 0, 0, 5380, 5382, 3, 824, 412, 0, 5381, 5383, 3, 456, 228, 0, 5382, 5381, 1, 0, 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 455, 1, 0, 0, 0, 5384, 5385, 5, 6, 0, 0, 5385, 5386, 3, 814, 407, 0, 5386, 457, 1, 0, 0, 0, 5387, 5388, 5, 252, 0, 0, 5388, 5389, 3, 824, 412, 0, 5389, 459, 1, 0, 0, 0, 5390, 5393, 5, 366, 0, 0, 5391, 5394, 3, 824, 412, 0, 5392, 5394, 5, 9, 0, 0, 5393, 5391, 1, 0, 0, 0, 5393, 5392, 1, 0, 0, 0, 5394, 461, 1, 0, 0, 0, 5395, 5397, 5, 146, 0, 0, 5396, 5398, 3, 464, 232, 0, 5397, 5396, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5400, 1, 0, 0, 0, 5399, 5401, 3, 468, 234, 0, 5400, 5399, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5441, 1, 0, 0, 0, 5402, 5403, 5, 340, 0, 0, 5403, 5405, 5, 356, 0, 0, 5404, 5406, 3, 468, 234, 0, 5405, 5404, 1, 0, 0, 0, 5405, 5406, 1, 0, 0, 0, 5406, 5441, 1, 0, 0, 0, 5407, 5408, 5, 322, 0, 0, 5408, 5441, 3, 824, 412, 0, 5409, 5411, 5, 308, 0, 0, 5410, 5412, 5, 322, 0, 0, 5411, 5410, 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5413, 1, 0, 0, 0, 5413, 5441, 3, 824, 412, 0, 5414, 5415, 5, 290, 0, 0, 5415, 5416, 5, 356, 0, 0, 5416, 5441, 3, 814, 407, 0, 5417, 5418, 7, 68, 0, 0, 5418, 5419, 5, 291, 0, 0, 5419, 5441, 3, 814, 407, 0, 5420, 5422, 7, 69, 0, 0, 5421, 5423, 3, 464, 232, 0, 5422, 5421, 1, 0, 0, 0, 5422, 5423, 1, 0, 0, 0, 5423, 5429, 1, 0, 0, 0, 5424, 5426, 5, 33, 0, 0, 5425, 5427, 5, 269, 0, 0, 5426, 5425, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5430, 5, 153, 0, 0, 5429, 5424, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5441, 1, 0, 0, 0, 5431, 5433, 5, 319, 0, 0, 5432, 5434, 3, 464, 232, 0, 5433, 5432, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5435, 1, 0, 0, 0, 5435, 5437, 5, 94, 0, 0, 5436, 5438, 5, 322, 0, 0, 5437, 5436, 1, 0, 0, 0, 5437, 5438, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5441, 3, 824, 412, 0, 5440, 5395, 1, 0, 0, 0, 5440, 5402, 1, 0, 0, 0, 5440, 5407, 1, 0, 0, 0, 5440, 5409, 1, 0, 0, 0, 5440, 5414, 1, 0, 0, 0, 5440, 5417, 1, 0, 0, 0, 5440, 5420, 1, 0, 0, 0, 5440, 5431, 1, 0, 0, 0, 5441, 463, 1, 0, 0, 0, 5442, 5443, 7, 70, 0, 0, 5443, 465, 1, 0, 0, 0, 5444, 5445, 5, 244, 0, 0, 5445, 5446, 5, 251, 0, 0, 5446, 5454, 3, 50, 25, 0, 5447, 5448, 5, 300, 0, 0, 5448, 5454, 7, 71, 0, 0, 5449, 5451, 5, 77, 0, 0, 5450, 5449, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 5454, 5, 54, 0, 0, 5453, 5444, 1, 0, 0, 0, 5453, 5447, 1, 0, 0, 0, 5453, 5450, 1, 0, 0, 0, 5454, 467, 1, 0, 0, 0, 5455, 5462, 3, 466, 233, 0, 5456, 5458, 5, 6, 0, 0, 5457, 5456, 1, 0, 0, 0, 5457, 5458, 1, 0, 0, 0, 5458, 5459, 1, 0, 0, 0, 5459, 5461, 3, 466, 233, 0, 5460, 5457, 1, 0, 0, 0, 5461, 5464, 1, 0, 0, 0, 5462, 5460, 1, 0, 0, 0, 5462, 5463, 1, 0, 0, 0, 5463, 469, 1, 0, 0, 0, 5464, 5462, 1, 0, 0, 0, 5465, 5468, 5, 46, 0, 0, 5466, 5467, 5, 82, 0, 0, 5467, 5469, 5, 311, 0, 0, 5468, 5466, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 1, 0, 0, 0, 5470, 5472, 3, 116, 58, 0, 5471, 5470, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5488, 1, 0, 0, 0, 5473, 5474, 5, 376, 0, 0, 5474, 5476, 3, 780, 390, 0, 5475, 5477, 3, 140, 70, 0, 5476, 5475, 1, 0, 0, 0, 5476, 5477, 1, 0, 0, 0, 5477, 5479, 1, 0, 0, 0, 5478, 5480, 3, 94, 47, 0, 5479, 5478, 1, 0, 0, 0, 5479, 5480, 1, 0, 0, 0, 5480, 5489, 1, 0, 0, 0, 5481, 5482, 5, 303, 0, 0, 5482, 5483, 5, 376, 0, 0, 5483, 5484, 3, 780, 390, 0, 5484, 5486, 3, 138, 69, 0, 5485, 5487, 3, 94, 47, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5489, 1, 0, 0, 0, 5488, 5473, 1, 0, 0, 0, 5488, 5481, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 5491, 5, 36, 0, 0, 5491, 5498, 3, 554, 277, 0, 5492, 5494, 5, 105, 0, 0, 5493, 5495, 7, 72, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5497, 5, 42, 0, 0, 5497, 5499, 5, 279, 0, 0, 5498, 5492, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, 471, 1, 0, 0, 0, 5500, 5501, 5, 253, 0, 0, 5501, 5502, 3, 814, 407, 0, 5502, 473, 1, 0, 0, 0, 5503, 5504, 5, 46, 0, 0, 5504, 5505, 5, 175, 0, 0, 5505, 5507, 3, 790, 395, 0, 5506, 5508, 5, 105, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 5514, 1, 0, 0, 0, 5509, 5511, 3, 476, 238, 0, 5510, 5509, 1, 0, 0, 0, 5511, 5512, 1, 0, 0, 0, 5512, 5510, 1, 0, 0, 0, 5512, 5513, 1, 0, 0, 0, 5513, 5515, 1, 0, 0, 0, 5514, 5510, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 475, 1, 0, 0, 0, 5516, 5517, 5, 164, 0, 0, 5517, 5525, 5, 74, 0, 0, 5518, 5525, 5, 194, 0, 0, 5519, 5525, 5, 255, 0, 0, 5520, 5525, 5, 282, 0, 0, 5521, 5525, 5, 351, 0, 0, 5522, 5525, 5, 353, 0, 0, 5523, 5525, 3, 832, 416, 0, 5524, 5516, 1, 0, 0, 0, 5524, 5518, 1, 0, 0, 0, 5524, 5519, 1, 0, 0, 0, 5524, 5520, 1, 0, 0, 0, 5524, 5521, 1, 0, 0, 0, 5524, 5522, 1, 0, 0, 0, 5524, 5523, 1, 0, 0, 0, 5525, 5527, 1, 0, 0, 0, 5526, 5528, 5, 10, 0, 0, 5527, 5526, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 5532, 1, 0, 0, 0, 5529, 5533, 3, 818, 409, 0, 5530, 5533, 3, 54, 27, 0, 5531, 5533, 5, 53, 0, 0, 5532, 5529, 1, 0, 0, 0, 5532, 5530, 1, 0, 0, 0, 5532, 5531, 1, 0, 0, 0, 5533, 477, 1, 0, 0, 0, 5534, 5535, 5, 138, 0, 0, 5535, 5536, 5, 175, 0, 0, 5536, 5552, 3, 792, 396, 0, 5537, 5538, 5, 333, 0, 0, 5538, 5539, 5, 351, 0, 0, 5539, 5541, 3, 774, 387, 0, 5540, 5537, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5553, 1, 0, 0, 0, 5542, 5544, 5, 105, 0, 0, 5543, 5542, 1, 0, 0, 0, 5543, 5544, 1, 0, 0, 0, 5544, 5546, 1, 0, 0, 0, 5545, 5547, 3, 476, 238, 0, 5546, 5545, 1, 0, 0, 0, 5547, 5548, 1, 0, 0, 0, 5548, 5546, 1, 0, 0, 0, 5548, 5549, 1, 0, 0, 0, 5549, 5551, 1, 0, 0, 0, 5550, 5543, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 5553, 1, 0, 0, 0, 5552, 5540, 1, 0, 0, 0, 5552, 5550, 1, 0, 0, 0, 5553, 479, 1, 0, 0, 0, 5554, 5555, 5, 138, 0, 0, 5555, 5556, 5, 175, 0, 0, 5556, 5558, 3, 792, 396, 0, 5557, 5559, 3, 64, 32, 0, 5558, 5557, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, 481, 1, 0, 0, 0, 5560, 5561, 5, 138, 0, 0, 5561, 5562, 5, 108, 0, 0, 5562, 5563, 3, 310, 155, 0, 5563, 5564, 5, 305, 0, 0, 5564, 5565, 5, 375, 0, 0, 5565, 483, 1, 0, 0, 0, 5566, 5567, 5, 138, 0, 0, 5567, 5568, 5, 349, 0, 0, 5568, 5569, 7, 16, 0, 0, 5569, 5570, 3, 40, 20, 0, 5570, 485, 1, 0, 0, 0, 5571, 5572, 5, 46, 0, 0, 5572, 5573, 5, 189, 0, 0, 5573, 5575, 3, 310, 155, 0, 5574, 5576, 5, 36, 0, 0, 5575, 5574, 1, 0, 0, 0, 5575, 5576, 1, 0, 0, 0, 5576, 5577, 1, 0, 0, 0, 5577, 5581, 3, 648, 324, 0, 5578, 5580, 3, 128, 64, 0, 5579, 5578, 1, 0, 0, 0, 5580, 5583, 1, 0, 0, 0, 5581, 5579, 1, 0, 0, 0, 5581, 5582, 1, 0, 0, 0, 5582, 487, 1, 0, 0, 0, 5583, 5581, 1, 0, 0, 0, 5584, 5585, 5, 138, 0, 0, 5585, 5586, 5, 189, 0, 0, 5586, 5609, 3, 310, 155, 0, 5587, 5610, 3, 86, 43, 0, 5588, 5589, 7, 15, 0, 0, 5589, 5590, 5, 77, 0, 0, 5590, 5610, 5, 78, 0, 0, 5591, 5594, 5, 133, 0, 0, 5592, 5593, 5, 45, 0, 0, 5593, 5595, 3, 824, 412, 0, 5594, 5592, 1, 0, 0, 0, 5594, 5595, 1, 0, 0, 0, 5595, 5596, 1, 0, 0, 0, 5596, 5610, 3, 136, 68, 0, 5597, 5598, 5, 191, 0, 0, 5598, 5600, 5, 45, 0, 0, 5599, 5601, 3, 416, 208, 0, 5600, 5599, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5602, 1, 0, 0, 0, 5602, 5604, 3, 824, 412, 0, 5603, 5605, 3, 88, 44, 0, 5604, 5603, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5610, 1, 0, 0, 0, 5606, 5607, 5, 372, 0, 0, 5607, 5608, 5, 45, 0, 0, 5608, 5610, 3, 824, 412, 0, 5609, 5587, 1, 0, 0, 0, 5609, 5588, 1, 0, 0, 0, 5609, 5591, 1, 0, 0, 0, 5609, 5597, 1, 0, 0, 0, 5609, 5606, 1, 0, 0, 0, 5610, 489, 1, 0, 0, 0, 5611, 5612, 5, 138, 0, 0, 5612, 5613, 5, 355, 0, 0, 5613, 5614, 5, 325, 0, 0, 5614, 5615, 5, 185, 0, 0, 5615, 5616, 3, 310, 155, 0, 5616, 5617, 3, 278, 139, 0, 5617, 491, 1, 0, 0, 0, 5618, 5619, 5, 138, 0, 0, 5619, 5620, 5, 355, 0, 0, 5620, 5621, 5, 325, 0, 0, 5621, 5622, 5, 163, 0, 0, 5622, 5623, 3, 310, 155, 0, 5623, 5624, 7, 73, 0, 0, 5624, 5625, 5, 257, 0, 0, 5625, 5626, 5, 62, 0, 0, 5626, 5627, 3, 788, 394, 0, 5627, 5628, 5, 105, 0, 0, 5628, 5629, 3, 308, 154, 0, 5629, 5660, 1, 0, 0, 0, 5630, 5631, 5, 138, 0, 0, 5631, 5632, 5, 355, 0, 0, 5632, 5633, 5, 325, 0, 0, 5633, 5634, 5, 163, 0, 0, 5634, 5635, 3, 310, 155, 0, 5635, 5636, 5, 138, 0, 0, 5636, 5639, 5, 257, 0, 0, 5637, 5638, 5, 62, 0, 0, 5638, 5640, 3, 788, 394, 0, 5639, 5637, 1, 0, 0, 0, 5639, 5640, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5642, 5, 311, 0, 0, 5642, 5643, 3, 310, 155, 0, 5643, 5644, 5, 105, 0, 0, 5644, 5645, 3, 310, 155, 0, 5645, 5660, 1, 0, 0, 0, 5646, 5647, 5, 138, 0, 0, 5647, 5648, 5, 355, 0, 0, 5648, 5649, 5, 325, 0, 0, 5649, 5650, 5, 163, 0, 0, 5650, 5651, 3, 310, 155, 0, 5651, 5652, 5, 191, 0, 0, 5652, 5654, 5, 257, 0, 0, 5653, 5655, 3, 416, 208, 0, 5654, 5653, 1, 0, 0, 0, 5654, 5655, 1, 0, 0, 0, 5655, 5656, 1, 0, 0, 0, 5656, 5657, 5, 62, 0, 0, 5657, 5658, 3, 788, 394, 0, 5658, 5660, 1, 0, 0, 0, 5659, 5618, 1, 0, 0, 0, 5659, 5630, 1, 0, 0, 0, 5659, 5646, 1, 0, 0, 0, 5660, 493, 1, 0, 0, 0, 5661, 5663, 5, 46, 0, 0, 5662, 5664, 5, 53, 0, 0, 5663, 5662, 1, 0, 0, 0, 5663, 5664, 1, 0, 0, 0, 5664, 5665, 1, 0, 0, 0, 5665, 5666, 5, 168, 0, 0, 5666, 5667, 3, 310, 155, 0, 5667, 5668, 5, 62, 0, 0, 5668, 5669, 3, 814, 407, 0, 5669, 5670, 5, 94, 0, 0, 5670, 5671, 3, 814, 407, 0, 5671, 5672, 5, 64, 0, 0, 5672, 5673, 3, 310, 155, 0, 5673, 495, 1, 0, 0, 0, 5674, 5676, 5, 158, 0, 0, 5675, 5677, 3, 508, 254, 0, 5676, 5675, 1, 0, 0, 0, 5676, 5677, 1, 0, 0, 0, 5677, 5682, 1, 0, 0, 0, 5678, 5680, 3, 778, 389, 0, 5679, 5681, 3, 164, 82, 0, 5680, 5679, 1, 0, 0, 0, 5680, 5681, 1, 0, 0, 0, 5681, 5683, 1, 0, 0, 0, 5682, 5678, 1, 0, 0, 0, 5682, 5683, 1, 0, 0, 0, 5683, 5700, 1, 0, 0, 0, 5684, 5685, 5, 158, 0, 0, 5685, 5686, 5, 2, 0, 0, 5686, 5691, 3, 508, 254, 0, 5687, 5688, 5, 6, 0, 0, 5688, 5690, 3, 508, 254, 0, 5689, 5687, 1, 0, 0, 0, 5690, 5693, 1, 0, 0, 0, 5691, 5689, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 5694, 1, 0, 0, 0, 5693, 5691, 1, 0, 0, 0, 5694, 5695, 5, 3, 0, 0, 5695, 5697, 3, 778, 389, 0, 5696, 5698, 3, 164, 82, 0, 5697, 5696, 1, 0, 0, 0, 5697, 5698, 1, 0, 0, 0, 5698, 5700, 1, 0, 0, 0, 5699, 5674, 1, 0, 0, 0, 5699, 5684, 1, 0, 0, 0, 5700, 497, 1, 0, 0, 0, 5701, 5717, 5, 370, 0, 0, 5702, 5704, 5, 113, 0, 0, 5703, 5702, 1, 0, 0, 0, 5703, 5704, 1, 0, 0, 0, 5704, 5706, 1, 0, 0, 0, 5705, 5707, 5, 112, 0, 0, 5706, 5705, 1, 0, 0, 0, 5706, 5707, 1, 0, 0, 0, 5707, 5709, 1, 0, 0, 0, 5708, 5710, 3, 508, 254, 0, 5709, 5708, 1, 0, 0, 0, 5709, 5710, 1, 0, 0, 0, 5710, 5712, 1, 0, 0, 0, 5711, 5713, 3, 502, 251, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5718, 1, 0, 0, 0, 5714, 5716, 3, 518, 259, 0, 5715, 5714, 1, 0, 0, 0, 5715, 5716, 1, 0, 0, 0, 5716, 5718, 1, 0, 0, 0, 5717, 5703, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5718, 5720, 1, 0, 0, 0, 5719, 5721, 3, 512, 256, 0, 5720, 5719, 1, 0, 0, 0, 5720, 5721, 1, 0, 0, 0, 5721, 499, 1, 0, 0, 0, 5722, 5737, 3, 502, 251, 0, 5723, 5725, 3, 508, 254, 0, 5724, 5723, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5738, 1, 0, 0, 0, 5726, 5727, 5, 2, 0, 0, 5727, 5732, 3, 506, 253, 0, 5728, 5729, 5, 6, 0, 0, 5729, 5731, 3, 506, 253, 0, 5730, 5728, 1, 0, 0, 0, 5731, 5734, 1, 0, 0, 0, 5732, 5730, 1, 0, 0, 0, 5732, 5733, 1, 0, 0, 0, 5733, 5735, 1, 0, 0, 0, 5734, 5732, 1, 0, 0, 0, 5735, 5736, 5, 3, 0, 0, 5736, 5738, 1, 0, 0, 0, 5737, 5724, 1, 0, 0, 0, 5737, 5726, 1, 0, 0, 0, 5738, 5740, 1, 0, 0, 0, 5739, 5741, 3, 512, 256, 0, 5740, 5739, 1, 0, 0, 0, 5740, 5741, 1, 0, 0, 0, 5741, 501, 1, 0, 0, 0, 5742, 5743, 7, 74, 0, 0, 5743, 503, 1, 0, 0, 0, 5744, 5747, 3, 828, 414, 0, 5745, 5747, 3, 502, 251, 0, 5746, 5744, 1, 0, 0, 0, 5746, 5745, 1, 0, 0, 0, 5747, 5750, 1, 0, 0, 0, 5748, 5751, 3, 54, 27, 0, 5749, 5751, 3, 196, 98, 0, 5750, 5748, 1, 0, 0, 0, 5750, 5749, 1, 0, 0, 0, 5750, 5751, 1, 0, 0, 0, 5751, 505, 1, 0, 0, 0, 5752, 5754, 7, 75, 0, 0, 5753, 5755, 7, 76, 0, 0, 5754, 5753, 1, 0, 0, 0, 5754, 5755, 1, 0, 0, 0, 5755, 5762, 1, 0, 0, 0, 5756, 5759, 5, 548, 0, 0, 5757, 5760, 3, 196, 98, 0, 5758, 5760, 3, 814, 407, 0, 5759, 5757, 1, 0, 0, 0, 5759, 5758, 1, 0, 0, 0, 5760, 5762, 1, 0, 0, 0, 5761, 5752, 1, 0, 0, 0, 5761, 5756, 1, 0, 0, 0, 5762, 507, 1, 0, 0, 0, 5763, 5765, 5, 128, 0, 0, 5764, 5766, 7, 76, 0, 0, 5765, 5764, 1, 0, 0, 0, 5765, 5766, 1, 0, 0, 0, 5766, 509, 1, 0, 0, 0, 5767, 5769, 3, 778, 389, 0, 5768, 5770, 3, 138, 69, 0, 5769, 5768, 1, 0, 0, 0, 5769, 5770, 1, 0, 0, 0, 5770, 511, 1, 0, 0, 0, 5771, 5776, 3, 510, 255, 0, 5772, 5773, 5, 6, 0, 0, 5773, 5775, 3, 510, 255, 0, 5774, 5772, 1, 0, 0, 0, 5775, 5778, 1, 0, 0, 0, 5776, 5774, 1, 0, 0, 0, 5776, 5777, 1, 0, 0, 0, 5777, 513, 1, 0, 0, 0, 5778, 5776, 1, 0, 0, 0, 5779, 5790, 5, 203, 0, 0, 5780, 5791, 3, 518, 259, 0, 5781, 5783, 5, 128, 0, 0, 5782, 5781, 1, 0, 0, 0, 5782, 5783, 1, 0, 0, 0, 5783, 5791, 1, 0, 0, 0, 5784, 5786, 3, 502, 251, 0, 5785, 5787, 3, 508, 254, 0, 5786, 5785, 1, 0, 0, 0, 5786, 5787, 1, 0, 0, 0, 5787, 5789, 1, 0, 0, 0, 5788, 5784, 1, 0, 0, 0, 5788, 5789, 1, 0, 0, 0, 5789, 5791, 1, 0, 0, 0, 5790, 5780, 1, 0, 0, 0, 5790, 5782, 1, 0, 0, 0, 5790, 5788, 1, 0, 0, 0, 5791, 5792, 1, 0, 0, 0, 5792, 5793, 3, 516, 258, 0, 5793, 515, 1, 0, 0, 0, 5794, 5804, 3, 554, 277, 0, 5795, 5804, 3, 532, 266, 0, 5796, 5804, 3, 546, 273, 0, 5797, 5804, 3, 542, 271, 0, 5798, 5804, 3, 552, 276, 0, 5799, 5804, 3, 180, 90, 0, 5800, 5804, 3, 186, 93, 0, 5801, 5804, 3, 188, 94, 0, 5802, 5804, 3, 526, 263, 0, 5803, 5794, 1, 0, 0, 0, 5803, 5795, 1, 0, 0, 0, 5803, 5796, 1, 0, 0, 0, 5803, 5797, 1, 0, 0, 0, 5803, 5798, 1, 0, 0, 0, 5803, 5799, 1, 0, 0, 0, 5803, 5800, 1, 0, 0, 0, 5803, 5801, 1, 0, 0, 0, 5803, 5802, 1, 0, 0, 0, 5804, 517, 1, 0, 0, 0, 5805, 5806, 5, 2, 0, 0, 5806, 5811, 3, 504, 252, 0, 5807, 5808, 5, 6, 0, 0, 5808, 5810, 3, 504, 252, 0, 5809, 5807, 1, 0, 0, 0, 5810, 5813, 1, 0, 0, 0, 5811, 5809, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 5814, 1, 0, 0, 0, 5813, 5811, 1, 0, 0, 0, 5814, 5815, 5, 3, 0, 0, 5815, 519, 1, 0, 0, 0, 5816, 5817, 5, 290, 0, 0, 5817, 5819, 3, 824, 412, 0, 5818, 5820, 3, 522, 261, 0, 5819, 5818, 1, 0, 0, 0, 5819, 5820, 1, 0, 0, 0, 5820, 5821, 1, 0, 0, 0, 5821, 5822, 5, 36, 0, 0, 5822, 5823, 3, 524, 262, 0, 5823, 521, 1, 0, 0, 0, 5824, 5825, 5, 2, 0, 0, 5825, 5830, 3, 648, 324, 0, 5826, 5827, 5, 6, 0, 0, 5827, 5829, 3, 648, 324, 0, 5828, 5826, 1, 0, 0, 0, 5829, 5832, 1, 0, 0, 0, 5830, 5828, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, 5831, 5833, 1, 0, 0, 0, 5832, 5830, 1, 0, 0, 0, 5833, 5834, 5, 3, 0, 0, 5834, 523, 1, 0, 0, 0, 5835, 5841, 3, 554, 277, 0, 5836, 5841, 3, 532, 266, 0, 5837, 5841, 3, 546, 273, 0, 5838, 5841, 3, 542, 271, 0, 5839, 5841, 3, 906, 453, 0, 5840, 5835, 1, 0, 0, 0, 5840, 5836, 1, 0, 0, 0, 5840, 5837, 1, 0, 0, 0, 5840, 5838, 1, 0, 0, 0, 5840, 5839, 1, 0, 0, 0, 5841, 525, 1, 0, 0, 0, 5842, 5843, 5, 202, 0, 0, 5843, 5845, 3, 824, 412, 0, 5844, 5846, 3, 528, 264, 0, 5845, 5844, 1, 0, 0, 0, 5845, 5846, 1, 0, 0, 0, 5846, 5866, 1, 0, 0, 0, 5847, 5849, 5, 46, 0, 0, 5848, 5850, 3, 116, 58, 0, 5849, 5848, 1, 0, 0, 0, 5849, 5850, 1, 0, 0, 0, 5850, 5851, 1, 0, 0, 0, 5851, 5853, 5, 92, 0, 0, 5852, 5854, 3, 288, 144, 0, 5853, 5852, 1, 0, 0, 0, 5853, 5854, 1, 0, 0, 0, 5854, 5855, 1, 0, 0, 0, 5855, 5856, 3, 182, 91, 0, 5856, 5857, 5, 36, 0, 0, 5857, 5858, 5, 202, 0, 0, 5858, 5860, 3, 824, 412, 0, 5859, 5861, 3, 528, 264, 0, 5860, 5859, 1, 0, 0, 0, 5860, 5861, 1, 0, 0, 0, 5861, 5863, 1, 0, 0, 0, 5862, 5864, 3, 184, 92, 0, 5863, 5862, 1, 0, 0, 0, 5863, 5864, 1, 0, 0, 0, 5864, 5866, 1, 0, 0, 0, 5865, 5842, 1, 0, 0, 0, 5865, 5847, 1, 0, 0, 0, 5866, 527, 1, 0, 0, 0, 5867, 5868, 5, 2, 0, 0, 5868, 5869, 3, 728, 364, 0, 5869, 5870, 5, 3, 0, 0, 5870, 529, 1, 0, 0, 0, 5871, 5873, 5, 177, 0, 0, 5872, 5874, 5, 290, 0, 0, 5873, 5872, 1, 0, 0, 0, 5873, 5874, 1, 0, 0, 0, 5874, 5877, 1, 0, 0, 0, 5875, 5878, 3, 824, 412, 0, 5876, 5878, 5, 30, 0, 0, 5877, 5875, 1, 0, 0, 0, 5877, 5876, 1, 0, 0, 0, 5878, 531, 1, 0, 0, 0, 5879, 5881, 3, 566, 283, 0, 5880, 5879, 1, 0, 0, 0, 5880, 5881, 1, 0, 0, 0, 5881, 5882, 1, 0, 0, 0, 5882, 5883, 5, 241, 0, 0, 5883, 5884, 5, 71, 0, 0, 5884, 5887, 3, 778, 389, 0, 5885, 5886, 5, 36, 0, 0, 5886, 5888, 3, 824, 412, 0, 5887, 5885, 1, 0, 0, 0, 5887, 5888, 1, 0, 0, 0, 5888, 5889, 1, 0, 0, 0, 5889, 5911, 3, 534, 267, 0, 5890, 5891, 5, 80, 0, 0, 5891, 5899, 5, 464, 0, 0, 5892, 5894, 3, 354, 177, 0, 5893, 5895, 3, 634, 317, 0, 5894, 5893, 1, 0, 0, 0, 5894, 5895, 1, 0, 0, 0, 5895, 5900, 1, 0, 0, 0, 5896, 5897, 5, 80, 0, 0, 5897, 5898, 5, 45, 0, 0, 5898, 5900, 3, 824, 412, 0, 5899, 5892, 1, 0, 0, 0, 5899, 5896, 1, 0, 0, 0, 5899, 5900, 1, 0, 0, 0, 5900, 5901, 1, 0, 0, 0, 5901, 5909, 5, 57, 0, 0, 5902, 5903, 5, 369, 0, 0, 5903, 5904, 5, 333, 0, 0, 5904, 5906, 3, 548, 274, 0, 5905, 5907, 3, 634, 317, 0, 5906, 5905, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 5910, 1, 0, 0, 0, 5908, 5910, 5, 270, 0, 0, 5909, 5902, 1, 0, 0, 0, 5909, 5908, 1, 0, 0, 0, 5910, 5912, 1, 0, 0, 0, 5911, 5890, 1, 0, 0, 0, 5911, 5912, 1, 0, 0, 0, 5912, 5914, 1, 0, 0, 0, 5913, 5915, 3, 540, 270, 0, 5914, 5913, 1, 0, 0, 0, 5914, 5915, 1, 0, 0, 0, 5915, 533, 1, 0, 0, 0, 5916, 5917, 5, 2, 0, 0, 5917, 5918, 3, 536, 268, 0, 5918, 5919, 5, 3, 0, 0, 5919, 5921, 1, 0, 0, 0, 5920, 5916, 1, 0, 0, 0, 5920, 5921, 1, 0, 0, 0, 5921, 5925, 1, 0, 0, 0, 5922, 5923, 5, 463, 0, 0, 5923, 5924, 7, 77, 0, 0, 5924, 5926, 5, 450, 0, 0, 5925, 5922, 1, 0, 0, 0, 5925, 5926, 1, 0, 0, 0, 5926, 5929, 1, 0, 0, 0, 5927, 5930, 3, 916, 458, 0, 5928, 5930, 3, 554, 277, 0, 5929, 5927, 1, 0, 0, 0, 5929, 5928, 1, 0, 0, 0, 5930, 535, 1, 0, 0, 0, 5931, 5936, 3, 538, 269, 0, 5932, 5933, 5, 6, 0, 0, 5933, 5935, 3, 538, 269, 0, 5934, 5932, 1, 0, 0, 0, 5935, 5938, 1, 0, 0, 0, 5936, 5934, 1, 0, 0, 0, 5936, 5937, 1, 0, 0, 0, 5937, 537, 1, 0, 0, 0, 5938, 5936, 1, 0, 0, 0, 5939, 5940, 3, 804, 402, 0, 5940, 5941, 3, 756, 378, 0, 5941, 539, 1, 0, 0, 0, 5942, 5943, 5, 87, 0, 0, 5943, 5944, 3, 758, 379, 0, 5944, 541, 1, 0, 0, 0, 5945, 5947, 3, 566, 283, 0, 5946, 5945, 1, 0, 0, 0, 5946, 5947, 1, 0, 0, 0, 5947, 5948, 1, 0, 0, 0, 5948, 5949, 5, 182, 0, 0, 5949, 5950, 5, 64, 0, 0, 5950, 5953, 3, 626, 313, 0, 5951, 5952, 5, 100, 0, 0, 5952, 5954, 3, 606, 303, 0, 5953, 5951, 1, 0, 0, 0, 5953, 5954, 1, 0, 0, 0, 5954, 5956, 1, 0, 0, 0, 5955, 5957, 3, 636, 318, 0, 5956, 5955, 1, 0, 0, 0, 5956, 5957, 1, 0, 0, 0, 5957, 5959, 1, 0, 0, 0, 5958, 5960, 3, 540, 270, 0, 5959, 5958, 1, 0, 0, 0, 5959, 5960, 1, 0, 0, 0, 5960, 543, 1, 0, 0, 0, 5961, 5963, 5, 256, 0, 0, 5962, 5964, 5, 92, 0, 0, 5963, 5962, 1, 0, 0, 0, 5963, 5964, 1, 0, 0, 0, 5964, 5965, 1, 0, 0, 0, 5965, 5980, 3, 624, 312, 0, 5966, 5977, 5, 68, 0, 0, 5967, 5968, 7, 78, 0, 0, 5968, 5978, 7, 79, 0, 0, 5969, 5974, 5, 334, 0, 0, 5970, 5971, 5, 369, 0, 0, 5971, 5975, 5, 201, 0, 0, 5972, 5973, 5, 414, 0, 0, 5973, 5975, 5, 201, 0, 0, 5974, 5970, 1, 0, 0, 0, 5974, 5972, 1, 0, 0, 0, 5974, 5975, 1, 0, 0, 0, 5975, 5978, 1, 0, 0, 0, 5976, 5978, 5, 201, 0, 0, 5977, 5967, 1, 0, 0, 0, 5977, 5969, 1, 0, 0, 0, 5977, 5976, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 5981, 5, 263, 0, 0, 5980, 5966, 1, 0, 0, 0, 5980, 5981, 1, 0, 0, 0, 5981, 5983, 1, 0, 0, 0, 5982, 5984, 5, 272, 0, 0, 5983, 5982, 1, 0, 0, 0, 5983, 5984, 1, 0, 0, 0, 5984, 545, 1, 0, 0, 0, 5985, 5987, 3, 566, 283, 0, 5986, 5985, 1, 0, 0, 0, 5986, 5987, 1, 0, 0, 0, 5987, 5988, 1, 0, 0, 0, 5988, 5989, 5, 369, 0, 0, 5989, 5990, 3, 626, 313, 0, 5990, 5991, 5, 333, 0, 0, 5991, 5993, 3, 548, 274, 0, 5992, 5994, 3, 604, 302, 0, 5993, 5992, 1, 0, 0, 0, 5993, 5994, 1, 0, 0, 0, 5994, 5996, 1, 0, 0, 0, 5995, 5997, 3, 636, 318, 0, 5996, 5995, 1, 0, 0, 0, 5996, 5997, 1, 0, 0, 0, 5997, 5999, 1, 0, 0, 0, 5998, 6000, 3, 540, 270, 0, 5999, 5998, 1, 0, 0, 0, 5999, 6000, 1, 0, 0, 0, 6000, 547, 1, 0, 0, 0, 6001, 6006, 3, 550, 275, 0, 6002, 6003, 5, 6, 0, 0, 6003, 6005, 3, 550, 275, 0, 6004, 6002, 1, 0, 0, 0, 6005, 6008, 1, 0, 0, 0, 6006, 6004, 1, 0, 0, 0, 6006, 6007, 1, 0, 0, 0, 6007, 549, 1, 0, 0, 0, 6008, 6006, 1, 0, 0, 0, 6009, 6010, 3, 538, 269, 0, 6010, 6011, 5, 10, 0, 0, 6011, 6012, 3, 670, 335, 0, 6012, 6028, 1, 0, 0, 0, 6013, 6014, 5, 2, 0, 0, 6014, 6015, 3, 536, 268, 0, 6015, 6016, 5, 3, 0, 0, 6016, 6025, 5, 10, 0, 0, 6017, 6019, 5, 414, 0, 0, 6018, 6017, 1, 0, 0, 0, 6018, 6019, 1, 0, 0, 0, 6019, 6020, 1, 0, 0, 0, 6020, 6026, 3, 670, 335, 0, 6021, 6022, 5, 2, 0, 0, 6022, 6023, 3, 560, 280, 0, 6023, 6024, 5, 3, 0, 0, 6024, 6026, 1, 0, 0, 0, 6025, 6018, 1, 0, 0, 0, 6025, 6021, 1, 0, 0, 0, 6026, 6028, 1, 0, 0, 0, 6027, 6009, 1, 0, 0, 0, 6027, 6013, 1, 0, 0, 0, 6028, 551, 1, 0, 0, 0, 6029, 6030, 5, 178, 0, 0, 6030, 6039, 3, 824, 412, 0, 6031, 6033, 5, 269, 0, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6034, 1, 0, 0, 0, 6034, 6038, 5, 324, 0, 0, 6035, 6038, 5, 107, 0, 0, 6036, 6038, 5, 240, 0, 0, 6037, 6032, 1, 0, 0, 0, 6037, 6035, 1, 0, 0, 0, 6037, 6036, 1, 0, 0, 0, 6038, 6041, 1, 0, 0, 0, 6039, 6037, 1, 0, 0, 0, 6039, 6040, 1, 0, 0, 0, 6040, 6042, 1, 0, 0, 0, 6041, 6039, 1, 0, 0, 0, 6042, 6045, 5, 172, 0, 0, 6043, 6044, 7, 27, 0, 0, 6044, 6046, 5, 217, 0, 0, 6045, 6043, 1, 0, 0, 0, 6045, 6046, 1, 0, 0, 0, 6046, 6047, 1, 0, 0, 0, 6047, 6048, 5, 62, 0, 0, 6048, 6049, 3, 554, 277, 0, 6049, 553, 1, 0, 0, 0, 6050, 6053, 3, 558, 279, 0, 6051, 6053, 3, 556, 278, 0, 6052, 6050, 1, 0, 0, 0, 6052, 6051, 1, 0, 0, 0, 6053, 555, 1, 0, 0, 0, 6054, 6057, 5, 2, 0, 0, 6055, 6058, 3, 558, 279, 0, 6056, 6058, 3, 556, 278, 0, 6057, 6055, 1, 0, 0, 0, 6057, 6056, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6060, 5, 3, 0, 0, 6060, 557, 1, 0, 0, 0, 6061, 6063, 3, 566, 283, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6066, 3, 560, 280, 0, 6065, 6067, 3, 580, 290, 0, 6066, 6065, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6076, 1, 0, 0, 0, 6068, 6070, 3, 600, 300, 0, 6069, 6071, 3, 584, 292, 0, 6070, 6069, 1, 0, 0, 0, 6070, 6071, 1, 0, 0, 0, 6071, 6077, 1, 0, 0, 0, 6072, 6074, 3, 584, 292, 0, 6073, 6075, 3, 600, 300, 0, 6074, 6073, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 6077, 1, 0, 0, 0, 6076, 6068, 1, 0, 0, 0, 6076, 6072, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 559, 1, 0, 0, 0, 6078, 6081, 3, 562, 281, 0, 6079, 6081, 3, 556, 278, 0, 6080, 6078, 1, 0, 0, 0, 6080, 6079, 1, 0, 0, 0, 6081, 561, 1, 0, 0, 0, 6082, 6092, 5, 88, 0, 0, 6083, 6085, 5, 30, 0, 0, 6084, 6083, 1, 0, 0, 0, 6084, 6085, 1, 0, 0, 0, 6085, 6087, 1, 0, 0, 0, 6086, 6088, 3, 574, 287, 0, 6087, 6086, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 6093, 1, 0, 0, 0, 6089, 6091, 3, 578, 289, 0, 6090, 6089, 1, 0, 0, 0, 6090, 6091, 1, 0, 0, 0, 6091, 6093, 1, 0, 0, 0, 6092, 6084, 1, 0, 0, 0, 6092, 6090, 1, 0, 0, 0, 6093, 6094, 1, 0, 0, 0, 6094, 6105, 3, 936, 468, 0, 6095, 6105, 3, 602, 301, 0, 6096, 6097, 5, 92, 0, 0, 6097, 6105, 3, 620, 310, 0, 6098, 6099, 3, 556, 278, 0, 6099, 6102, 3, 564, 282, 0, 6100, 6103, 3, 562, 281, 0, 6101, 6103, 3, 556, 278, 0, 6102, 6100, 1, 0, 0, 0, 6102, 6101, 1, 0, 0, 0, 6103, 6105, 1, 0, 0, 0, 6104, 6082, 1, 0, 0, 0, 6104, 6095, 1, 0, 0, 0, 6104, 6096, 1, 0, 0, 0, 6104, 6098, 1, 0, 0, 0, 6105, 6113, 1, 0, 0, 0, 6106, 6109, 3, 564, 282, 0, 6107, 6110, 3, 562, 281, 0, 6108, 6110, 3, 556, 278, 0, 6109, 6107, 1, 0, 0, 0, 6109, 6108, 1, 0, 0, 0, 6110, 6112, 1, 0, 0, 0, 6111, 6106, 1, 0, 0, 0, 6112, 6115, 1, 0, 0, 0, 6113, 6111, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 563, 1, 0, 0, 0, 6115, 6113, 1, 0, 0, 0, 6116, 6118, 7, 80, 0, 0, 6117, 6119, 7, 81, 0, 0, 6118, 6117, 1, 0, 0, 0, 6118, 6119, 1, 0, 0, 0, 6119, 565, 1, 0, 0, 0, 6120, 6122, 5, 105, 0, 0, 6121, 6123, 5, 303, 0, 0, 6122, 6121, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6129, 3, 568, 284, 0, 6125, 6126, 5, 6, 0, 0, 6126, 6128, 3, 568, 284, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6131, 1, 0, 0, 0, 6129, 6127, 1, 0, 0, 0, 6129, 6130, 1, 0, 0, 0, 6130, 567, 1, 0, 0, 0, 6131, 6129, 1, 0, 0, 0, 6132, 6134, 3, 824, 412, 0, 6133, 6135, 3, 138, 69, 0, 6134, 6133, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 1, 0, 0, 0, 6136, 6141, 5, 36, 0, 0, 6137, 6139, 5, 77, 0, 0, 6138, 6137, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6142, 5, 259, 0, 0, 6141, 6138, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 6144, 5, 2, 0, 0, 6144, 6145, 3, 524, 262, 0, 6145, 6147, 5, 3, 0, 0, 6146, 6148, 3, 570, 285, 0, 6147, 6146, 1, 0, 0, 0, 6147, 6148, 1, 0, 0, 0, 6148, 6150, 1, 0, 0, 0, 6149, 6151, 3, 572, 286, 0, 6150, 6149, 1, 0, 0, 0, 6150, 6151, 1, 0, 0, 0, 6151, 569, 1, 0, 0, 0, 6152, 6153, 5, 325, 0, 0, 6153, 6154, 7, 82, 0, 0, 6154, 6155, 5, 207, 0, 0, 6155, 6156, 5, 147, 0, 0, 6156, 6157, 3, 142, 71, 0, 6157, 6158, 5, 333, 0, 0, 6158, 6159, 3, 804, 402, 0, 6159, 571, 1, 0, 0, 0, 6160, 6161, 5, 173, 0, 0, 6161, 6162, 3, 142, 71, 0, 6162, 6163, 5, 333, 0, 0, 6163, 6169, 3, 804, 402, 0, 6164, 6165, 5, 94, 0, 0, 6165, 6166, 3, 824, 412, 0, 6166, 6167, 5, 53, 0, 0, 6167, 6168, 3, 824, 412, 0, 6168, 6170, 1, 0, 0, 0, 6169, 6164, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 6171, 1, 0, 0, 0, 6171, 6172, 5, 100, 0, 0, 6172, 6173, 3, 804, 402, 0, 6173, 573, 1, 0, 0, 0, 6174, 6180, 5, 71, 0, 0, 6175, 6177, 5, 346, 0, 0, 6176, 6175, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6178, 1, 0, 0, 0, 6178, 6181, 3, 576, 288, 0, 6179, 6181, 3, 728, 364, 0, 6180, 6176, 1, 0, 0, 0, 6180, 6179, 1, 0, 0, 0, 6181, 575, 1, 0, 0, 0, 6182, 6184, 7, 21, 0, 0, 6183, 6182, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6185, 1, 0, 0, 0, 6185, 6187, 7, 22, 0, 0, 6186, 6188, 5, 92, 0, 0, 6187, 6186, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6198, 3, 776, 388, 0, 6190, 6192, 5, 367, 0, 0, 6191, 6190, 1, 0, 0, 0, 6191, 6192, 1, 0, 0, 0, 6192, 6194, 1, 0, 0, 0, 6193, 6195, 5, 92, 0, 0, 6194, 6193, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 6196, 1, 0, 0, 0, 6196, 6198, 3, 776, 388, 0, 6197, 6183, 1, 0, 0, 0, 6197, 6191, 1, 0, 0, 0, 6198, 577, 1, 0, 0, 0, 6199, 6202, 5, 56, 0, 0, 6200, 6201, 5, 80, 0, 0, 6201, 6203, 3, 528, 264, 0, 6202, 6200, 1, 0, 0, 0, 6202, 6203, 1, 0, 0, 0, 6203, 579, 1, 0, 0, 0, 6204, 6205, 5, 83, 0, 0, 6205, 6206, 5, 147, 0, 0, 6206, 6211, 3, 582, 291, 0, 6207, 6208, 5, 6, 0, 0, 6208, 6210, 3, 582, 291, 0, 6209, 6207, 1, 0, 0, 0, 6210, 6213, 1, 0, 0, 0, 6211, 6209, 1, 0, 0, 0, 6211, 6212, 1, 0, 0, 0, 6212, 581, 1, 0, 0, 0, 6213, 6211, 1, 0, 0, 0, 6214, 6218, 3, 736, 368, 0, 6215, 6216, 5, 100, 0, 0, 6216, 6219, 3, 724, 362, 0, 6217, 6219, 7, 56, 0, 0, 6218, 6215, 1, 0, 0, 0, 6218, 6217, 1, 0, 0, 0, 6218, 6219, 1, 0, 0, 0, 6219, 6222, 1, 0, 0, 0, 6220, 6221, 5, 273, 0, 0, 6221, 6223, 7, 57, 0, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6223, 1, 0, 0, 0, 6223, 583, 1, 0, 0, 0, 6224, 6226, 3, 590, 295, 0, 6225, 6227, 3, 588, 294, 0, 6226, 6225, 1, 0, 0, 0, 6226, 6227, 1, 0, 0, 0, 6227, 6236, 1, 0, 0, 0, 6228, 6231, 3, 586, 293, 0, 6229, 6231, 3, 588, 294, 0, 6230, 6228, 1, 0, 0, 0, 6230, 6229, 1, 0, 0, 0, 6231, 6233, 1, 0, 0, 0, 6232, 6234, 3, 590, 295, 0, 6233, 6232, 1, 0, 0, 0, 6233, 6234, 1, 0, 0, 0, 6234, 6236, 1, 0, 0, 0, 6235, 6224, 1, 0, 0, 0, 6235, 6230, 1, 0, 0, 0, 6236, 585, 1, 0, 0, 0, 6237, 6240, 5, 74, 0, 0, 6238, 6241, 3, 670, 335, 0, 6239, 6241, 5, 30, 0, 0, 6240, 6238, 1, 0, 0, 0, 6240, 6239, 1, 0, 0, 0, 6241, 6244, 1, 0, 0, 0, 6242, 6243, 5, 6, 0, 0, 6243, 6245, 3, 670, 335, 0, 6244, 6242, 1, 0, 0, 0, 6244, 6245, 1, 0, 0, 0, 6245, 587, 1, 0, 0, 0, 6246, 6247, 5, 61, 0, 0, 6247, 6249, 7, 83, 0, 0, 6248, 6250, 3, 592, 296, 0, 6249, 6248, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6251, 1, 0, 0, 0, 6251, 6255, 7, 84, 0, 0, 6252, 6256, 5, 81, 0, 0, 6253, 6254, 5, 105, 0, 0, 6254, 6256, 5, 467, 0, 0, 6255, 6252, 1, 0, 0, 0, 6255, 6253, 1, 0, 0, 0, 6256, 589, 1, 0, 0, 0, 6257, 6262, 5, 79, 0, 0, 6258, 6259, 3, 592, 296, 0, 6259, 6260, 7, 84, 0, 0, 6260, 6263, 1, 0, 0, 0, 6261, 6263, 3, 670, 335, 0, 6262, 6258, 1, 0, 0, 0, 6262, 6261, 1, 0, 0, 0, 6263, 591, 1, 0, 0, 0, 6264, 6265, 7, 30, 0, 0, 6265, 6268, 7, 85, 0, 0, 6266, 6268, 3, 678, 339, 0, 6267, 6264, 1, 0, 0, 0, 6267, 6266, 1, 0, 0, 0, 6268, 593, 1, 0, 0, 0, 6269, 6270, 5, 66, 0, 0, 6270, 6272, 5, 147, 0, 0, 6271, 6273, 7, 81, 0, 0, 6272, 6271, 1, 0, 0, 0, 6272, 6273, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6275, 3, 596, 298, 0, 6275, 595, 1, 0, 0, 0, 6276, 6281, 3, 598, 299, 0, 6277, 6278, 5, 6, 0, 0, 6278, 6280, 3, 598, 299, 0, 6279, 6277, 1, 0, 0, 0, 6280, 6283, 1, 0, 0, 0, 6281, 6279, 1, 0, 0, 0, 6281, 6282, 1, 0, 0, 0, 6282, 597, 1, 0, 0, 0, 6283, 6281, 1, 0, 0, 0, 6284, 6308, 3, 736, 368, 0, 6285, 6286, 5, 2, 0, 0, 6286, 6308, 5, 3, 0, 0, 6287, 6289, 7, 86, 0, 0, 6288, 6287, 1, 0, 0, 0, 6288, 6289, 1, 0, 0, 0, 6289, 6290, 1, 0, 0, 0, 6290, 6291, 5, 2, 0, 0, 6291, 6296, 3, 736, 368, 0, 6292, 6293, 5, 6, 0, 0, 6293, 6295, 3, 736, 368, 0, 6294, 6292, 1, 0, 0, 0, 6295, 6298, 1, 0, 0, 0, 6296, 6294, 1, 0, 0, 0, 6296, 6297, 1, 0, 0, 0, 6297, 6299, 1, 0, 0, 0, 6298, 6296, 1, 0, 0, 0, 6299, 6300, 5, 3, 0, 0, 6300, 6308, 1, 0, 0, 0, 6301, 6302, 5, 470, 0, 0, 6302, 6303, 5, 471, 0, 0, 6303, 6304, 5, 2, 0, 0, 6304, 6305, 3, 596, 298, 0, 6305, 6306, 5, 3, 0, 0, 6306, 6308, 1, 0, 0, 0, 6307, 6284, 1, 0, 0, 0, 6307, 6285, 1, 0, 0, 0, 6307, 6288, 1, 0, 0, 0, 6307, 6301, 1, 0, 0, 0, 6308, 599, 1, 0, 0, 0, 6309, 6319, 5, 62, 0, 0, 6310, 6311, 5, 269, 0, 0, 6311, 6313, 5, 245, 0, 0, 6312, 6310, 1, 0, 0, 0, 6312, 6313, 1, 0, 0, 0, 6313, 6314, 1, 0, 0, 0, 6314, 6320, 5, 369, 0, 0, 6315, 6317, 5, 245, 0, 0, 6316, 6315, 1, 0, 0, 0, 6316, 6317, 1, 0, 0, 0, 6317, 6318, 1, 0, 0, 0, 6318, 6320, 5, 334, 0, 0, 6319, 6312, 1, 0, 0, 0, 6319, 6316, 1, 0, 0, 0, 6320, 6323, 1, 0, 0, 0, 6321, 6322, 5, 275, 0, 0, 6322, 6324, 3, 764, 382, 0, 6323, 6321, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6328, 1, 0, 0, 0, 6325, 6329, 5, 272, 0, 0, 6326, 6327, 5, 465, 0, 0, 6327, 6329, 5, 466, 0, 0, 6328, 6325, 1, 0, 0, 0, 6328, 6326, 1, 0, 0, 0, 6328, 6329, 1, 0, 0, 0, 6329, 6331, 1, 0, 0, 0, 6330, 6309, 1, 0, 0, 0, 6331, 6332, 1, 0, 0, 0, 6332, 6330, 1, 0, 0, 0, 6332, 6333, 1, 0, 0, 0, 6333, 6338, 1, 0, 0, 0, 6334, 6335, 5, 62, 0, 0, 6335, 6336, 5, 300, 0, 0, 6336, 6338, 5, 81, 0, 0, 6337, 6330, 1, 0, 0, 0, 6337, 6334, 1, 0, 0, 0, 6338, 601, 1, 0, 0, 0, 6339, 6340, 5, 422, 0, 0, 6340, 6345, 3, 528, 264, 0, 6341, 6342, 5, 6, 0, 0, 6342, 6344, 3, 528, 264, 0, 6343, 6341, 1, 0, 0, 0, 6344, 6347, 1, 0, 0, 0, 6345, 6343, 1, 0, 0, 0, 6345, 6346, 1, 0, 0, 0, 6346, 603, 1, 0, 0, 0, 6347, 6345, 1, 0, 0, 0, 6348, 6349, 5, 64, 0, 0, 6349, 6350, 3, 606, 303, 0, 6350, 605, 1, 0, 0, 0, 6351, 6356, 3, 608, 304, 0, 6352, 6353, 5, 6, 0, 0, 6353, 6355, 3, 608, 304, 0, 6354, 6352, 1, 0, 0, 0, 6355, 6358, 1, 0, 0, 0, 6356, 6354, 1, 0, 0, 0, 6356, 6357, 1, 0, 0, 0, 6357, 607, 1, 0, 0, 0, 6358, 6356, 1, 0, 0, 0, 6359, 6374, 3, 620, 310, 0, 6360, 6362, 5, 81, 0, 0, 6361, 6360, 1, 0, 0, 0, 6361, 6362, 1, 0, 0, 0, 6362, 6363, 1, 0, 0, 0, 6363, 6365, 3, 782, 391, 0, 6364, 6366, 5, 9, 0, 0, 6365, 6364, 1, 0, 0, 0, 6365, 6366, 1, 0, 0, 0, 6366, 6368, 1, 0, 0, 0, 6367, 6369, 3, 142, 71, 0, 6368, 6367, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 6371, 1, 0, 0, 0, 6370, 6372, 3, 634, 317, 0, 6371, 6370, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6374, 1, 0, 0, 0, 6373, 6359, 1, 0, 0, 0, 6373, 6361, 1, 0, 0, 0, 6374, 6376, 1, 0, 0, 0, 6375, 6377, 3, 612, 306, 0, 6376, 6375, 1, 0, 0, 0, 6376, 6377, 1, 0, 0, 0, 6377, 6379, 1, 0, 0, 0, 6378, 6380, 3, 628, 314, 0, 6379, 6378, 1, 0, 0, 0, 6379, 6380, 1, 0, 0, 0, 6380, 6410, 1, 0, 0, 0, 6381, 6383, 5, 72, 0, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6384, 1, 0, 0, 0, 6384, 6410, 3, 610, 305, 0, 6385, 6386, 5, 2, 0, 0, 6386, 6403, 3, 608, 304, 0, 6387, 6388, 5, 110, 0, 0, 6388, 6389, 5, 118, 0, 0, 6389, 6404, 3, 608, 304, 0, 6390, 6392, 5, 121, 0, 0, 6391, 6393, 3, 616, 308, 0, 6392, 6391, 1, 0, 0, 0, 6392, 6393, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6395, 5, 118, 0, 0, 6395, 6404, 3, 608, 304, 0, 6396, 6398, 3, 616, 308, 0, 6397, 6396, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6400, 5, 118, 0, 0, 6400, 6401, 3, 608, 304, 0, 6401, 6402, 3, 618, 309, 0, 6402, 6404, 1, 0, 0, 0, 6403, 6387, 1, 0, 0, 0, 6403, 6390, 1, 0, 0, 0, 6403, 6397, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6405, 1, 0, 0, 0, 6405, 6407, 5, 3, 0, 0, 6406, 6408, 3, 612, 306, 0, 6407, 6406, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6410, 1, 0, 0, 0, 6409, 6373, 1, 0, 0, 0, 6409, 6382, 1, 0, 0, 0, 6409, 6385, 1, 0, 0, 0, 6410, 6429, 1, 0, 0, 0, 6411, 6412, 5, 110, 0, 0, 6412, 6413, 5, 118, 0, 0, 6413, 6428, 3, 608, 304, 0, 6414, 6416, 5, 121, 0, 0, 6415, 6417, 3, 616, 308, 0, 6416, 6415, 1, 0, 0, 0, 6416, 6417, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6419, 5, 118, 0, 0, 6419, 6428, 3, 608, 304, 0, 6420, 6422, 3, 616, 308, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 5, 118, 0, 0, 6424, 6425, 3, 608, 304, 0, 6425, 6426, 3, 618, 309, 0, 6426, 6428, 1, 0, 0, 0, 6427, 6411, 1, 0, 0, 0, 6427, 6414, 1, 0, 0, 0, 6427, 6421, 1, 0, 0, 0, 6428, 6431, 1, 0, 0, 0, 6429, 6427, 1, 0, 0, 0, 6429, 6430, 1, 0, 0, 0, 6430, 609, 1, 0, 0, 0, 6431, 6429, 1, 0, 0, 0, 6432, 6434, 3, 642, 321, 0, 6433, 6435, 3, 612, 306, 0, 6434, 6433, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6445, 1, 0, 0, 0, 6436, 6438, 3, 630, 315, 0, 6437, 6439, 3, 614, 307, 0, 6438, 6437, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 6445, 1, 0, 0, 0, 6440, 6442, 3, 556, 278, 0, 6441, 6443, 3, 612, 306, 0, 6442, 6441, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 6445, 1, 0, 0, 0, 6444, 6432, 1, 0, 0, 0, 6444, 6436, 1, 0, 0, 0, 6444, 6440, 1, 0, 0, 0, 6445, 611, 1, 0, 0, 0, 6446, 6448, 5, 36, 0, 0, 6447, 6446, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6449, 1, 0, 0, 0, 6449, 6454, 3, 824, 412, 0, 6450, 6451, 5, 2, 0, 0, 6451, 6452, 3, 788, 394, 0, 6452, 6453, 5, 3, 0, 0, 6453, 6455, 1, 0, 0, 0, 6454, 6450, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 613, 1, 0, 0, 0, 6456, 6469, 3, 612, 306, 0, 6457, 6459, 5, 36, 0, 0, 6458, 6460, 3, 824, 412, 0, 6459, 6458, 1, 0, 0, 0, 6459, 6460, 1, 0, 0, 0, 6460, 6463, 1, 0, 0, 0, 6461, 6463, 3, 824, 412, 0, 6462, 6457, 1, 0, 0, 0, 6462, 6461, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6465, 5, 2, 0, 0, 6465, 6466, 3, 638, 319, 0, 6466, 6467, 5, 3, 0, 0, 6467, 6469, 1, 0, 0, 0, 6468, 6456, 1, 0, 0, 0, 6468, 6462, 1, 0, 0, 0, 6469, 615, 1, 0, 0, 0, 6470, 6472, 7, 87, 0, 0, 6471, 6473, 5, 123, 0, 0, 6472, 6471, 1, 0, 0, 0, 6472, 6473, 1, 0, 0, 0, 6473, 617, 1, 0, 0, 0, 6474, 6475, 5, 100, 0, 0, 6475, 6479, 3, 138, 69, 0, 6476, 6477, 5, 80, 0, 0, 6477, 6479, 3, 670, 335, 0, 6478, 6474, 1, 0, 0, 0, 6478, 6476, 1, 0, 0, 0, 6479, 619, 1, 0, 0, 0, 6480, 6496, 3, 316, 158, 0, 6481, 6487, 5, 81, 0, 0, 6482, 6488, 3, 778, 389, 0, 6483, 6484, 5, 2, 0, 0, 6484, 6485, 3, 778, 389, 0, 6485, 6486, 5, 3, 0, 0, 6486, 6488, 1, 0, 0, 0, 6487, 6482, 1, 0, 0, 0, 6487, 6483, 1, 0, 0, 0, 6488, 6496, 1, 0, 0, 0, 6489, 6490, 5, 68, 0, 0, 6490, 6493, 5, 323, 0, 0, 6491, 6494, 3, 794, 397, 0, 6492, 6494, 5, 111, 0, 0, 6493, 6491, 1, 0, 0, 0, 6493, 6492, 1, 0, 0, 0, 6494, 6496, 1, 0, 0, 0, 6495, 6480, 1, 0, 0, 0, 6495, 6481, 1, 0, 0, 0, 6495, 6489, 1, 0, 0, 0, 6496, 621, 1, 0, 0, 0, 6497, 6498, 5, 92, 0, 0, 6498, 6500, 3, 316, 158, 0, 6499, 6501, 3, 138, 69, 0, 6500, 6499, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6503, 1, 0, 0, 0, 6502, 6504, 3, 634, 317, 0, 6503, 6502, 1, 0, 0, 0, 6503, 6504, 1, 0, 0, 0, 6504, 6522, 1, 0, 0, 0, 6505, 6506, 5, 92, 0, 0, 6506, 6512, 5, 81, 0, 0, 6507, 6513, 3, 778, 389, 0, 6508, 6509, 5, 2, 0, 0, 6509, 6510, 3, 778, 389, 0, 6510, 6511, 5, 3, 0, 0, 6511, 6513, 1, 0, 0, 0, 6512, 6507, 1, 0, 0, 0, 6512, 6508, 1, 0, 0, 0, 6513, 6522, 1, 0, 0, 0, 6514, 6515, 5, 350, 0, 0, 6515, 6516, 5, 68, 0, 0, 6516, 6519, 5, 323, 0, 0, 6517, 6520, 3, 794, 397, 0, 6518, 6520, 5, 111, 0, 0, 6519, 6517, 1, 0, 0, 0, 6519, 6518, 1, 0, 0, 0, 6520, 6522, 1, 0, 0, 0, 6521, 6497, 1, 0, 0, 0, 6521, 6505, 1, 0, 0, 0, 6521, 6514, 1, 0, 0, 0, 6522, 623, 1, 0, 0, 0, 6523, 6528, 3, 620, 310, 0, 6524, 6525, 5, 6, 0, 0, 6525, 6527, 3, 620, 310, 0, 6526, 6524, 1, 0, 0, 0, 6527, 6530, 1, 0, 0, 0, 6528, 6526, 1, 0, 0, 0, 6528, 6529, 1, 0, 0, 0, 6529, 625, 1, 0, 0, 0, 6530, 6528, 1, 0, 0, 0, 6531, 6536, 3, 620, 310, 0, 6532, 6534, 5, 36, 0, 0, 6533, 6532, 1, 0, 0, 0, 6533, 6534, 1, 0, 0, 0, 6534, 6535, 1, 0, 0, 0, 6535, 6537, 3, 824, 412, 0, 6536, 6533, 1, 0, 0, 0, 6536, 6537, 1, 0, 0, 0, 6537, 627, 1, 0, 0, 0, 6538, 6539, 5, 472, 0, 0, 6539, 6540, 3, 812, 406, 0, 6540, 6546, 3, 528, 264, 0, 6541, 6542, 5, 310, 0, 0, 6542, 6543, 5, 2, 0, 0, 6543, 6544, 3, 670, 335, 0, 6544, 6545, 5, 3, 0, 0, 6545, 6547, 1, 0, 0, 0, 6546, 6541, 1, 0, 0, 0, 6546, 6547, 1, 0, 0, 0, 6547, 629, 1, 0, 0, 0, 6548, 6563, 3, 684, 342, 0, 6549, 6550, 5, 320, 0, 0, 6550, 6551, 5, 64, 0, 0, 6551, 6552, 5, 2, 0, 0, 6552, 6557, 3, 632, 316, 0, 6553, 6554, 5, 6, 0, 0, 6554, 6556, 3, 632, 316, 0, 6555, 6553, 1, 0, 0, 0, 6556, 6559, 1, 0, 0, 0, 6557, 6555, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 6560, 1, 0, 0, 0, 6559, 6557, 1, 0, 0, 0, 6560, 6561, 5, 3, 0, 0, 6561, 6563, 1, 0, 0, 0, 6562, 6548, 1, 0, 0, 0, 6562, 6549, 1, 0, 0, 0, 6563, 6566, 1, 0, 0, 0, 6564, 6565, 5, 105, 0, 0, 6565, 6567, 5, 473, 0, 0, 6566, 6564, 1, 0, 0, 0, 6566, 6567, 1, 0, 0, 0, 6567, 631, 1, 0, 0, 0, 6568, 6574, 3, 684, 342, 0, 6569, 6570, 5, 36, 0, 0, 6570, 6571, 5, 2, 0, 0, 6571, 6572, 3, 638, 319, 0, 6572, 6573, 5, 3, 0, 0, 6573, 6575, 1, 0, 0, 0, 6574, 6569, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 633, 1, 0, 0, 0, 6576, 6577, 5, 103, 0, 0, 6577, 6578, 3, 736, 368, 0, 6578, 635, 1, 0, 0, 0, 6579, 6584, 5, 103, 0, 0, 6580, 6581, 5, 434, 0, 0, 6581, 6582, 5, 275, 0, 0, 6582, 6585, 3, 824, 412, 0, 6583, 6585, 3, 670, 335, 0, 6584, 6580, 1, 0, 0, 0, 6584, 6583, 1, 0, 0, 0, 6585, 637, 1, 0, 0, 0, 6586, 6591, 3, 640, 320, 0, 6587, 6588, 5, 6, 0, 0, 6588, 6590, 3, 640, 320, 0, 6589, 6587, 1, 0, 0, 0, 6590, 6593, 1, 0, 0, 0, 6591, 6589, 1, 0, 0, 0, 6591, 6592, 1, 0, 0, 0, 6592, 639, 1, 0, 0, 0, 6593, 6591, 1, 0, 0, 0, 6594, 6595, 3, 824, 412, 0, 6595, 6597, 3, 648, 324, 0, 6596, 6598, 3, 90, 45, 0, 6597, 6596, 1, 0, 0, 0, 6597, 6598, 1, 0, 0, 0, 6598, 641, 1, 0, 0, 0, 6599, 6600, 5, 474, 0, 0, 6600, 6614, 5, 2, 0, 0, 6601, 6602, 5, 476, 0, 0, 6602, 6603, 5, 2, 0, 0, 6603, 6608, 3, 646, 323, 0, 6604, 6605, 5, 6, 0, 0, 6605, 6607, 3, 646, 323, 0, 6606, 6604, 1, 0, 0, 0, 6607, 6610, 1, 0, 0, 0, 6608, 6606, 1, 0, 0, 0, 6608, 6609, 1, 0, 0, 0, 6609, 6611, 1, 0, 0, 0, 6610, 6608, 1, 0, 0, 0, 6611, 6612, 5, 3, 0, 0, 6612, 6613, 5, 6, 0, 0, 6613, 6615, 1, 0, 0, 0, 6614, 6601, 1, 0, 0, 0, 6614, 6615, 1, 0, 0, 0, 6615, 6616, 1, 0, 0, 0, 6616, 6617, 3, 678, 339, 0, 6617, 6618, 3, 694, 347, 0, 6618, 6619, 5, 475, 0, 0, 6619, 6624, 3, 644, 322, 0, 6620, 6621, 5, 6, 0, 0, 6621, 6623, 3, 644, 322, 0, 6622, 6620, 1, 0, 0, 0, 6623, 6626, 1, 0, 0, 0, 6624, 6622, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6627, 1, 0, 0, 0, 6626, 6624, 1, 0, 0, 0, 6627, 6628, 5, 3, 0, 0, 6628, 643, 1, 0, 0, 0, 6629, 6648, 3, 824, 412, 0, 6630, 6644, 3, 648, 324, 0, 6631, 6634, 5, 53, 0, 0, 6632, 6634, 3, 832, 416, 0, 6633, 6631, 1, 0, 0, 0, 6633, 6632, 1, 0, 0, 0, 6634, 6635, 1, 0, 0, 0, 6635, 6641, 3, 670, 335, 0, 6636, 6638, 5, 77, 0, 0, 6637, 6636, 1, 0, 0, 0, 6637, 6638, 1, 0, 0, 0, 6638, 6639, 1, 0, 0, 0, 6639, 6641, 5, 78, 0, 0, 6640, 6633, 1, 0, 0, 0, 6640, 6637, 1, 0, 0, 0, 6641, 6642, 1, 0, 0, 0, 6642, 6640, 1, 0, 0, 0, 6642, 6643, 1, 0, 0, 0, 6643, 6645, 1, 0, 0, 0, 6644, 6640, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 6649, 1, 0, 0, 0, 6646, 6647, 5, 62, 0, 0, 6647, 6649, 5, 473, 0, 0, 6648, 6630, 1, 0, 0, 0, 6648, 6646, 1, 0, 0, 0, 6649, 645, 1, 0, 0, 0, 6650, 6651, 3, 678, 339, 0, 6651, 6652, 5, 36, 0, 0, 6652, 6653, 3, 830, 415, 0, 6653, 6657, 1, 0, 0, 0, 6654, 6655, 5, 53, 0, 0, 6655, 6657, 3, 678, 339, 0, 6656, 6650, 1, 0, 0, 0, 6656, 6654, 1, 0, 0, 0, 6657, 647, 1, 0, 0, 0, 6658, 6660, 5, 415, 0, 0, 6659, 6658, 1, 0, 0, 0, 6659, 6660, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6678, 3, 650, 325, 0, 6662, 6664, 5, 4, 0, 0, 6663, 6665, 5, 574, 0, 0, 6664, 6663, 1, 0, 0, 0, 6664, 6665, 1, 0, 0, 0, 6665, 6666, 1, 0, 0, 0, 6666, 6668, 5, 5, 0, 0, 6667, 6662, 1, 0, 0, 0, 6668, 6671, 1, 0, 0, 0, 6669, 6667, 1, 0, 0, 0, 6669, 6670, 1, 0, 0, 0, 6670, 6679, 1, 0, 0, 0, 6671, 6669, 1, 0, 0, 0, 6672, 6676, 5, 35, 0, 0, 6673, 6674, 5, 4, 0, 0, 6674, 6675, 5, 574, 0, 0, 6675, 6677, 5, 5, 0, 0, 6676, 6673, 1, 0, 0, 0, 6676, 6677, 1, 0, 0, 0, 6677, 6679, 1, 0, 0, 0, 6678, 6669, 1, 0, 0, 0, 6678, 6672, 1, 0, 0, 0, 6679, 6685, 1, 0, 0, 0, 6680, 6681, 3, 784, 392, 0, 6681, 6682, 5, 27, 0, 0, 6682, 6683, 7, 88, 0, 0, 6683, 6685, 1, 0, 0, 0, 6684, 6659, 1, 0, 0, 0, 6684, 6680, 1, 0, 0, 0, 6685, 649, 1, 0, 0, 0, 6686, 6688, 3, 826, 413, 0, 6687, 6689, 3, 312, 156, 0, 6688, 6687, 1, 0, 0, 0, 6688, 6689, 1, 0, 0, 0, 6689, 6691, 1, 0, 0, 0, 6690, 6692, 3, 528, 264, 0, 6691, 6690, 1, 0, 0, 0, 6691, 6692, 1, 0, 0, 0, 6692, 6702, 1, 0, 0, 0, 6693, 6702, 3, 652, 326, 0, 6694, 6699, 5, 403, 0, 0, 6695, 6697, 3, 664, 332, 0, 6696, 6695, 1, 0, 0, 0, 6696, 6697, 1, 0, 0, 0, 6697, 6700, 1, 0, 0, 0, 6698, 6700, 3, 656, 328, 0, 6699, 6696, 1, 0, 0, 0, 6699, 6698, 1, 0, 0, 0, 6700, 6702, 1, 0, 0, 0, 6701, 6686, 1, 0, 0, 0, 6701, 6693, 1, 0, 0, 0, 6701, 6694, 1, 0, 0, 0, 6702, 651, 1, 0, 0, 0, 6703, 6708, 3, 654, 327, 0, 6704, 6708, 3, 658, 329, 0, 6705, 6708, 3, 660, 330, 0, 6706, 6708, 3, 662, 331, 0, 6707, 6703, 1, 0, 0, 0, 6707, 6704, 1, 0, 0, 0, 6707, 6705, 1, 0, 0, 0, 6707, 6706, 1, 0, 0, 0, 6708, 653, 1, 0, 0, 0, 6709, 6726, 5, 401, 0, 0, 6710, 6726, 5, 402, 0, 0, 6711, 6726, 5, 416, 0, 0, 6712, 6726, 5, 388, 0, 0, 6713, 6726, 5, 413, 0, 0, 6714, 6716, 5, 398, 0, 0, 6715, 6717, 3, 656, 328, 0, 6716, 6715, 1, 0, 0, 0, 6716, 6717, 1, 0, 0, 0, 6717, 6726, 1, 0, 0, 0, 6718, 6719, 5, 190, 0, 0, 6719, 6726, 5, 412, 0, 0, 6720, 6722, 7, 89, 0, 0, 6721, 6723, 3, 528, 264, 0, 6722, 6721, 1, 0, 0, 0, 6722, 6723, 1, 0, 0, 0, 6723, 6726, 1, 0, 0, 0, 6724, 6726, 5, 390, 0, 0, 6725, 6709, 1, 0, 0, 0, 6725, 6710, 1, 0, 0, 0, 6725, 6711, 1, 0, 0, 0, 6725, 6712, 1, 0, 0, 0, 6725, 6713, 1, 0, 0, 0, 6725, 6714, 1, 0, 0, 0, 6725, 6718, 1, 0, 0, 0, 6725, 6720, 1, 0, 0, 0, 6725, 6724, 1, 0, 0, 0, 6726, 655, 1, 0, 0, 0, 6727, 6728, 5, 2, 0, 0, 6728, 6729, 5, 574, 0, 0, 6729, 6730, 5, 3, 0, 0, 6730, 657, 1, 0, 0, 0, 6731, 6733, 5, 389, 0, 0, 6732, 6734, 5, 374, 0, 0, 6733, 6732, 1, 0, 0, 0, 6733, 6734, 1, 0, 0, 0, 6734, 6736, 1, 0, 0, 0, 6735, 6737, 3, 528, 264, 0, 6736, 6735, 1, 0, 0, 0, 6736, 6737, 1, 0, 0, 0, 6737, 659, 1, 0, 0, 0, 6738, 6740, 7, 90, 0, 0, 6739, 6741, 5, 374, 0, 0, 6740, 6739, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 6749, 1, 0, 0, 0, 6742, 6749, 5, 423, 0, 0, 6743, 6744, 5, 405, 0, 0, 6744, 6746, 7, 91, 0, 0, 6745, 6747, 5, 374, 0, 0, 6746, 6745, 1, 0, 0, 0, 6746, 6747, 1, 0, 0, 0, 6747, 6749, 1, 0, 0, 0, 6748, 6738, 1, 0, 0, 0, 6748, 6742, 1, 0, 0, 0, 6748, 6743, 1, 0, 0, 0, 6749, 6751, 1, 0, 0, 0, 6750, 6752, 3, 656, 328, 0, 6751, 6750, 1, 0, 0, 0, 6751, 6752, 1, 0, 0, 0, 6752, 661, 1, 0, 0, 0, 6753, 6755, 7, 92, 0, 0, 6754, 6756, 3, 656, 328, 0, 6755, 6754, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 6760, 1, 0, 0, 0, 6757, 6758, 7, 27, 0, 0, 6758, 6759, 5, 418, 0, 0, 6759, 6761, 5, 386, 0, 0, 6760, 6757, 1, 0, 0, 0, 6760, 6761, 1, 0, 0, 0, 6761, 663, 1, 0, 0, 0, 6762, 6792, 5, 264, 0, 0, 6763, 6792, 3, 666, 333, 0, 6764, 6767, 5, 384, 0, 0, 6765, 6766, 5, 94, 0, 0, 6766, 6768, 5, 264, 0, 0, 6767, 6765, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6792, 1, 0, 0, 0, 6769, 6776, 5, 176, 0, 0, 6770, 6774, 5, 94, 0, 0, 6771, 6775, 5, 218, 0, 0, 6772, 6775, 5, 261, 0, 0, 6773, 6775, 3, 666, 333, 0, 6774, 6771, 1, 0, 0, 0, 6774, 6772, 1, 0, 0, 0, 6774, 6773, 1, 0, 0, 0, 6775, 6777, 1, 0, 0, 0, 6776, 6770, 1, 0, 0, 0, 6776, 6777, 1, 0, 0, 0, 6777, 6792, 1, 0, 0, 0, 6778, 6784, 5, 218, 0, 0, 6779, 6782, 5, 94, 0, 0, 6780, 6783, 5, 261, 0, 0, 6781, 6783, 3, 666, 333, 0, 6782, 6780, 1, 0, 0, 0, 6782, 6781, 1, 0, 0, 0, 6783, 6785, 1, 0, 0, 0, 6784, 6779, 1, 0, 0, 0, 6784, 6785, 1, 0, 0, 0, 6785, 6792, 1, 0, 0, 0, 6786, 6789, 5, 261, 0, 0, 6787, 6788, 5, 94, 0, 0, 6788, 6790, 3, 666, 333, 0, 6789, 6787, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 6792, 1, 0, 0, 0, 6791, 6762, 1, 0, 0, 0, 6791, 6763, 1, 0, 0, 0, 6791, 6764, 1, 0, 0, 0, 6791, 6769, 1, 0, 0, 0, 6791, 6778, 1, 0, 0, 0, 6791, 6786, 1, 0, 0, 0, 6792, 665, 1, 0, 0, 0, 6793, 6795, 5, 326, 0, 0, 6794, 6796, 3, 656, 328, 0, 6795, 6794, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 667, 1, 0, 0, 0, 6797, 6798, 7, 93, 0, 0, 6798, 669, 1, 0, 0, 0, 6799, 6800, 3, 672, 336, 0, 6800, 671, 1, 0, 0, 0, 6801, 6802, 6, 336, -1, 0, 6802, 6804, 3, 676, 338, 0, 6803, 6805, 3, 674, 337, 0, 6804, 6803, 1, 0, 0, 0, 6804, 6805, 1, 0, 0, 0, 6805, 6809, 1, 0, 0, 0, 6806, 6807, 5, 77, 0, 0, 6807, 6809, 3, 672, 336, 3, 6808, 6801, 1, 0, 0, 0, 6808, 6806, 1, 0, 0, 0, 6809, 6818, 1, 0, 0, 0, 6810, 6811, 10, 2, 0, 0, 6811, 6812, 5, 33, 0, 0, 6812, 6817, 3, 672, 336, 3, 6813, 6814, 10, 1, 0, 0, 6814, 6815, 5, 82, 0, 0, 6815, 6817, 3, 672, 336, 2, 6816, 6810, 1, 0, 0, 0, 6816, 6813, 1, 0, 0, 0, 6817, 6820, 1, 0, 0, 0, 6818, 6816, 1, 0, 0, 0, 6818, 6819, 1, 0, 0, 0, 6819, 673, 1, 0, 0, 0, 6820, 6818, 1, 0, 0, 0, 6821, 6822, 3, 668, 334, 0, 6822, 6823, 3, 676, 338, 0, 6823, 6893, 1, 0, 0, 0, 6824, 6825, 3, 668, 334, 0, 6825, 6826, 3, 726, 363, 0, 6826, 6832, 3, 716, 358, 0, 6827, 6833, 3, 556, 278, 0, 6828, 6829, 5, 2, 0, 0, 6829, 6830, 3, 670, 335, 0, 6830, 6831, 5, 3, 0, 0, 6831, 6833, 1, 0, 0, 0, 6832, 6827, 1, 0, 0, 0, 6832, 6828, 1, 0, 0, 0, 6833, 6893, 1, 0, 0, 0, 6834, 6836, 5, 77, 0, 0, 6835, 6834, 1, 0, 0, 0, 6835, 6836, 1, 0, 0, 0, 6836, 6837, 1, 0, 0, 0, 6837, 6838, 5, 387, 0, 0, 6838, 6839, 3, 676, 338, 0, 6839, 6840, 5, 33, 0, 0, 6840, 6841, 3, 676, 338, 0, 6841, 6893, 1, 0, 0, 0, 6842, 6844, 5, 77, 0, 0, 6843, 6842, 1, 0, 0, 0, 6843, 6844, 1, 0, 0, 0, 6844, 6845, 1, 0, 0, 0, 6845, 6846, 5, 68, 0, 0, 6846, 6847, 5, 2, 0, 0, 6847, 6852, 3, 670, 335, 0, 6848, 6849, 5, 6, 0, 0, 6849, 6851, 3, 670, 335, 0, 6850, 6848, 1, 0, 0, 0, 6851, 6854, 1, 0, 0, 0, 6852, 6850, 1, 0, 0, 0, 6852, 6853, 1, 0, 0, 0, 6853, 6855, 1, 0, 0, 0, 6854, 6852, 1, 0, 0, 0, 6855, 6856, 5, 3, 0, 0, 6856, 6893, 1, 0, 0, 0, 6857, 6859, 5, 77, 0, 0, 6858, 6857, 1, 0, 0, 0, 6858, 6859, 1, 0, 0, 0, 6859, 6860, 1, 0, 0, 0, 6860, 6861, 5, 68, 0, 0, 6861, 6893, 3, 556, 278, 0, 6862, 6864, 5, 77, 0, 0, 6863, 6862, 1, 0, 0, 0, 6863, 6864, 1, 0, 0, 0, 6864, 6873, 1, 0, 0, 0, 6865, 6874, 5, 120, 0, 0, 6866, 6874, 5, 114, 0, 0, 6867, 6868, 5, 127, 0, 0, 6868, 6874, 5, 94, 0, 0, 6869, 6871, 5, 387, 0, 0, 6870, 6872, 5, 91, 0, 0, 6871, 6870, 1, 0, 0, 0, 6871, 6872, 1, 0, 0, 0, 6872, 6874, 1, 0, 0, 0, 6873, 6865, 1, 0, 0, 0, 6873, 6866, 1, 0, 0, 0, 6873, 6867, 1, 0, 0, 0, 6873, 6869, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6878, 3, 676, 338, 0, 6876, 6877, 5, 197, 0, 0, 6877, 6879, 3, 676, 338, 0, 6878, 6876, 1, 0, 0, 0, 6878, 6879, 1, 0, 0, 0, 6879, 6893, 1, 0, 0, 0, 6880, 6882, 5, 116, 0, 0, 6881, 6883, 5, 77, 0, 0, 6882, 6881, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6884, 1, 0, 0, 0, 6884, 6893, 5, 78, 0, 0, 6885, 6887, 5, 116, 0, 0, 6886, 6888, 5, 77, 0, 0, 6887, 6886, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 6889, 1, 0, 0, 0, 6889, 6890, 5, 56, 0, 0, 6890, 6891, 5, 64, 0, 0, 6891, 6893, 3, 676, 338, 0, 6892, 6821, 1, 0, 0, 0, 6892, 6824, 1, 0, 0, 0, 6892, 6835, 1, 0, 0, 0, 6892, 6843, 1, 0, 0, 0, 6892, 6858, 1, 0, 0, 0, 6892, 6863, 1, 0, 0, 0, 6892, 6880, 1, 0, 0, 0, 6892, 6885, 1, 0, 0, 0, 6893, 675, 1, 0, 0, 0, 6894, 6895, 6, 338, -1, 0, 6895, 6899, 3, 678, 339, 0, 6896, 6897, 7, 30, 0, 0, 6897, 6899, 3, 676, 338, 4, 6898, 6894, 1, 0, 0, 0, 6898, 6896, 1, 0, 0, 0, 6899, 6916, 1, 0, 0, 0, 6900, 6901, 10, 3, 0, 0, 6901, 6902, 7, 94, 0, 0, 6902, 6915, 3, 676, 338, 4, 6903, 6904, 10, 2, 0, 0, 6904, 6905, 7, 30, 0, 0, 6905, 6915, 3, 676, 338, 3, 6906, 6907, 10, 1, 0, 0, 6907, 6908, 5, 15, 0, 0, 6908, 6915, 3, 676, 338, 2, 6909, 6910, 10, 5, 0, 0, 6910, 6911, 5, 142, 0, 0, 6911, 6912, 5, 418, 0, 0, 6912, 6913, 5, 386, 0, 0, 6913, 6915, 3, 670, 335, 0, 6914, 6900, 1, 0, 0, 0, 6914, 6903, 1, 0, 0, 0, 6914, 6906, 1, 0, 0, 0, 6914, 6909, 1, 0, 0, 0, 6915, 6918, 1, 0, 0, 0, 6916, 6914, 1, 0, 0, 0, 6916, 6917, 1, 0, 0, 0, 6917, 677, 1, 0, 0, 0, 6918, 6916, 1, 0, 0, 0, 6919, 6920, 6, 339, -1, 0, 6920, 6921, 7, 95, 0, 0, 6921, 7008, 3, 556, 278, 0, 6922, 6925, 5, 35, 0, 0, 6923, 6926, 3, 556, 278, 0, 6924, 6926, 3, 742, 371, 0, 6925, 6923, 1, 0, 0, 0, 6925, 6924, 1, 0, 0, 0, 6926, 7008, 1, 0, 0, 0, 6927, 6928, 5, 28, 0, 0, 6928, 7008, 3, 756, 378, 0, 6929, 6930, 5, 470, 0, 0, 6930, 7008, 3, 528, 264, 0, 6931, 7008, 5, 574, 0, 0, 6932, 7008, 5, 576, 0, 0, 6933, 7008, 5, 566, 0, 0, 6934, 7008, 5, 570, 0, 0, 6935, 6945, 3, 812, 406, 0, 6936, 6946, 3, 814, 407, 0, 6937, 6938, 5, 2, 0, 0, 6938, 6940, 3, 738, 369, 0, 6939, 6941, 3, 580, 290, 0, 6940, 6939, 1, 0, 0, 0, 6940, 6941, 1, 0, 0, 0, 6941, 6942, 1, 0, 0, 0, 6942, 6943, 5, 3, 0, 0, 6943, 6944, 3, 814, 407, 0, 6944, 6946, 1, 0, 0, 0, 6945, 6936, 1, 0, 0, 0, 6945, 6937, 1, 0, 0, 0, 6946, 7008, 1, 0, 0, 0, 6947, 6949, 3, 652, 326, 0, 6948, 6947, 1, 0, 0, 0, 6948, 6949, 1, 0, 0, 0, 6949, 6950, 1, 0, 0, 0, 6950, 7008, 3, 814, 407, 0, 6951, 6959, 5, 403, 0, 0, 6952, 6954, 3, 814, 407, 0, 6953, 6955, 3, 664, 332, 0, 6954, 6953, 1, 0, 0, 0, 6954, 6955, 1, 0, 0, 0, 6955, 6960, 1, 0, 0, 0, 6956, 6957, 3, 656, 328, 0, 6957, 6958, 3, 814, 407, 0, 6958, 6960, 1, 0, 0, 0, 6959, 6952, 1, 0, 0, 0, 6959, 6956, 1, 0, 0, 0, 6960, 7008, 1, 0, 0, 0, 6961, 7008, 5, 96, 0, 0, 6962, 7008, 5, 60, 0, 0, 6963, 7008, 5, 78, 0, 0, 6964, 7008, 5, 577, 0, 0, 6965, 6966, 5, 2, 0, 0, 6966, 6967, 3, 670, 335, 0, 6967, 6968, 5, 3, 0, 0, 6968, 6969, 3, 756, 378, 0, 6969, 7008, 1, 0, 0, 0, 6970, 6972, 5, 40, 0, 0, 6971, 6973, 3, 670, 335, 0, 6972, 6971, 1, 0, 0, 0, 6972, 6973, 1, 0, 0, 0, 6973, 6975, 1, 0, 0, 0, 6974, 6976, 3, 750, 375, 0, 6975, 6974, 1, 0, 0, 0, 6976, 6977, 1, 0, 0, 0, 6977, 6975, 1, 0, 0, 0, 6977, 6978, 1, 0, 0, 0, 6978, 6981, 1, 0, 0, 0, 6979, 6980, 5, 58, 0, 0, 6980, 6982, 3, 670, 335, 0, 6981, 6979, 1, 0, 0, 0, 6981, 6982, 1, 0, 0, 0, 6982, 6983, 1, 0, 0, 0, 6983, 6984, 5, 454, 0, 0, 6984, 7008, 1, 0, 0, 0, 6985, 7008, 3, 682, 341, 0, 6986, 6988, 3, 556, 278, 0, 6987, 6989, 3, 754, 377, 0, 6988, 6987, 1, 0, 0, 0, 6988, 6989, 1, 0, 0, 0, 6989, 7008, 1, 0, 0, 0, 6990, 7008, 3, 714, 357, 0, 6991, 6992, 5, 2, 0, 0, 6992, 6993, 3, 670, 335, 0, 6993, 6994, 5, 6, 0, 0, 6994, 6995, 3, 728, 364, 0, 6995, 6996, 5, 3, 0, 0, 6996, 7008, 1, 0, 0, 0, 6997, 6998, 3, 712, 356, 0, 6998, 6999, 5, 125, 0, 0, 6999, 7000, 3, 712, 356, 0, 7000, 7008, 1, 0, 0, 0, 7001, 7008, 3, 806, 403, 0, 7002, 7003, 7, 30, 0, 0, 7003, 7008, 3, 678, 339, 5, 7004, 7005, 3, 722, 361, 0, 7005, 7006, 3, 678, 339, 2, 7006, 7008, 1, 0, 0, 0, 7007, 6919, 1, 0, 0, 0, 7007, 6922, 1, 0, 0, 0, 7007, 6927, 1, 0, 0, 0, 7007, 6929, 1, 0, 0, 0, 7007, 6931, 1, 0, 0, 0, 7007, 6932, 1, 0, 0, 0, 7007, 6933, 1, 0, 0, 0, 7007, 6934, 1, 0, 0, 0, 7007, 6935, 1, 0, 0, 0, 7007, 6948, 1, 0, 0, 0, 7007, 6951, 1, 0, 0, 0, 7007, 6961, 1, 0, 0, 0, 7007, 6962, 1, 0, 0, 0, 7007, 6963, 1, 0, 0, 0, 7007, 6964, 1, 0, 0, 0, 7007, 6965, 1, 0, 0, 0, 7007, 6970, 1, 0, 0, 0, 7007, 6985, 1, 0, 0, 0, 7007, 6986, 1, 0, 0, 0, 7007, 6990, 1, 0, 0, 0, 7007, 6991, 1, 0, 0, 0, 7007, 6997, 1, 0, 0, 0, 7007, 7001, 1, 0, 0, 0, 7007, 7002, 1, 0, 0, 0, 7007, 7004, 1, 0, 0, 0, 7008, 7036, 1, 0, 0, 0, 7009, 7010, 10, 3, 0, 0, 7010, 7011, 3, 720, 360, 0, 7011, 7012, 3, 678, 339, 4, 7012, 7035, 1, 0, 0, 0, 7013, 7014, 10, 6, 0, 0, 7014, 7015, 5, 26, 0, 0, 7015, 7035, 3, 648, 324, 0, 7016, 7017, 10, 4, 0, 0, 7017, 7019, 3, 722, 361, 0, 7018, 7020, 3, 678, 339, 0, 7019, 7018, 1, 0, 0, 0, 7019, 7020, 1, 0, 0, 0, 7020, 7035, 1, 0, 0, 0, 7021, 7022, 10, 1, 0, 0, 7022, 7024, 5, 116, 0, 0, 7023, 7025, 5, 77, 0, 0, 7024, 7023, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 7032, 1, 0, 0, 0, 7026, 7027, 5, 56, 0, 0, 7027, 7028, 5, 64, 0, 0, 7028, 7033, 3, 678, 339, 0, 7029, 7030, 5, 275, 0, 0, 7030, 7033, 3, 522, 261, 0, 7031, 7033, 5, 188, 0, 0, 7032, 7026, 1, 0, 0, 0, 7032, 7029, 1, 0, 0, 0, 7032, 7031, 1, 0, 0, 0, 7033, 7035, 1, 0, 0, 0, 7034, 7009, 1, 0, 0, 0, 7034, 7013, 1, 0, 0, 0, 7034, 7016, 1, 0, 0, 0, 7034, 7021, 1, 0, 0, 0, 7035, 7038, 1, 0, 0, 0, 7036, 7034, 1, 0, 0, 0, 7036, 7037, 1, 0, 0, 0, 7037, 679, 1, 0, 0, 0, 7038, 7036, 1, 0, 0, 0, 7039, 7040, 3, 812, 406, 0, 7040, 7061, 5, 2, 0, 0, 7041, 7045, 3, 738, 369, 0, 7042, 7043, 5, 6, 0, 0, 7043, 7044, 5, 101, 0, 0, 7044, 7046, 3, 740, 370, 0, 7045, 7042, 1, 0, 0, 0, 7045, 7046, 1, 0, 0, 0, 7046, 7048, 1, 0, 0, 0, 7047, 7049, 3, 580, 290, 0, 7048, 7047, 1, 0, 0, 0, 7048, 7049, 1, 0, 0, 0, 7049, 7062, 1, 0, 0, 0, 7050, 7051, 5, 101, 0, 0, 7051, 7053, 3, 740, 370, 0, 7052, 7054, 3, 580, 290, 0, 7053, 7052, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7062, 1, 0, 0, 0, 7055, 7056, 7, 81, 0, 0, 7056, 7058, 3, 738, 369, 0, 7057, 7059, 3, 580, 290, 0, 7058, 7057, 1, 0, 0, 0, 7058, 7059, 1, 0, 0, 0, 7059, 7062, 1, 0, 0, 0, 7060, 7062, 5, 9, 0, 0, 7061, 7041, 1, 0, 0, 0, 7061, 7050, 1, 0, 0, 0, 7061, 7055, 1, 0, 0, 0, 7061, 7060, 1, 0, 0, 0, 7061, 7062, 1, 0, 0, 0, 7062, 7063, 1, 0, 0, 0, 7063, 7064, 5, 3, 0, 0, 7064, 681, 1, 0, 0, 0, 7065, 7072, 3, 680, 340, 0, 7066, 7067, 5, 479, 0, 0, 7067, 7068, 5, 66, 0, 0, 7068, 7069, 5, 2, 0, 0, 7069, 7070, 3, 580, 290, 0, 7070, 7071, 5, 3, 0, 0, 7071, 7073, 1, 0, 0, 0, 7072, 7066, 1, 0, 0, 0, 7072, 7073, 1, 0, 0, 0, 7073, 7080, 1, 0, 0, 0, 7074, 7075, 5, 480, 0, 0, 7075, 7076, 5, 2, 0, 0, 7076, 7077, 5, 103, 0, 0, 7077, 7078, 3, 670, 335, 0, 7078, 7079, 5, 3, 0, 0, 7079, 7081, 1, 0, 0, 0, 7080, 7074, 1, 0, 0, 0, 7080, 7081, 1, 0, 0, 0, 7081, 7087, 1, 0, 0, 0, 7082, 7085, 5, 124, 0, 0, 7083, 7086, 3, 706, 353, 0, 7084, 7086, 3, 824, 412, 0, 7085, 7083, 1, 0, 0, 0, 7085, 7084, 1, 0, 0, 0, 7086, 7088, 1, 0, 0, 0, 7087, 7082, 1, 0, 0, 0, 7087, 7088, 1, 0, 0, 0, 7088, 7091, 1, 0, 0, 0, 7089, 7091, 3, 686, 343, 0, 7090, 7065, 1, 0, 0, 0, 7090, 7089, 1, 0, 0, 0, 7091, 683, 1, 0, 0, 0, 7092, 7095, 3, 680, 340, 0, 7093, 7095, 3, 686, 343, 0, 7094, 7092, 1, 0, 0, 0, 7094, 7093, 1, 0, 0, 0, 7095, 685, 1, 0, 0, 0, 7096, 7097, 5, 108, 0, 0, 7097, 7098, 5, 62, 0, 0, 7098, 7099, 5, 2, 0, 0, 7099, 7100, 3, 670, 335, 0, 7100, 7101, 5, 3, 0, 0, 7101, 7271, 1, 0, 0, 0, 7102, 7271, 5, 48, 0, 0, 7103, 7105, 7, 96, 0, 0, 7104, 7106, 3, 656, 328, 0, 7105, 7104, 1, 0, 0, 0, 7105, 7106, 1, 0, 0, 0, 7106, 7271, 1, 0, 0, 0, 7107, 7271, 5, 49, 0, 0, 7108, 7271, 5, 52, 0, 0, 7109, 7271, 5, 89, 0, 0, 7110, 7271, 5, 99, 0, 0, 7111, 7271, 5, 47, 0, 0, 7112, 7271, 5, 111, 0, 0, 7113, 7114, 7, 97, 0, 0, 7114, 7115, 5, 2, 0, 0, 7115, 7116, 3, 670, 335, 0, 7116, 7117, 5, 36, 0, 0, 7117, 7118, 3, 648, 324, 0, 7118, 7119, 5, 3, 0, 0, 7119, 7271, 1, 0, 0, 0, 7120, 7121, 5, 397, 0, 0, 7121, 7126, 5, 2, 0, 0, 7122, 7123, 3, 744, 372, 0, 7123, 7124, 5, 64, 0, 0, 7124, 7125, 3, 670, 335, 0, 7125, 7127, 1, 0, 0, 0, 7126, 7122, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7128, 1, 0, 0, 0, 7128, 7271, 5, 3, 0, 0, 7129, 7130, 5, 489, 0, 0, 7130, 7131, 5, 2, 0, 0, 7131, 7134, 3, 670, 335, 0, 7132, 7133, 5, 6, 0, 0, 7133, 7135, 3, 746, 373, 0, 7134, 7132, 1, 0, 0, 0, 7134, 7135, 1, 0, 0, 0, 7135, 7136, 1, 0, 0, 0, 7136, 7137, 5, 3, 0, 0, 7137, 7271, 1, 0, 0, 0, 7138, 7139, 5, 410, 0, 0, 7139, 7140, 5, 2, 0, 0, 7140, 7141, 3, 670, 335, 0, 7141, 7142, 5, 84, 0, 0, 7142, 7143, 3, 670, 335, 0, 7143, 7144, 5, 64, 0, 0, 7144, 7147, 3, 670, 335, 0, 7145, 7146, 5, 62, 0, 0, 7146, 7148, 3, 670, 335, 0, 7147, 7145, 1, 0, 0, 0, 7147, 7148, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7150, 5, 3, 0, 0, 7150, 7271, 1, 0, 0, 0, 7151, 7152, 5, 411, 0, 0, 7152, 7157, 5, 2, 0, 0, 7153, 7154, 3, 678, 339, 0, 7154, 7155, 5, 68, 0, 0, 7155, 7156, 3, 678, 339, 0, 7156, 7158, 1, 0, 0, 0, 7157, 7153, 1, 0, 0, 0, 7157, 7158, 1, 0, 0, 0, 7158, 7159, 1, 0, 0, 0, 7159, 7271, 5, 3, 0, 0, 7160, 7161, 5, 417, 0, 0, 7161, 7163, 5, 2, 0, 0, 7162, 7164, 3, 748, 374, 0, 7163, 7162, 1, 0, 0, 0, 7163, 7164, 1, 0, 0, 0, 7164, 7165, 1, 0, 0, 0, 7165, 7271, 5, 3, 0, 0, 7166, 7167, 5, 421, 0, 0, 7167, 7169, 5, 2, 0, 0, 7168, 7170, 7, 98, 0, 0, 7169, 7168, 1, 0, 0, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7175, 1, 0, 0, 0, 7171, 7173, 3, 670, 335, 0, 7172, 7171, 1, 0, 0, 0, 7172, 7173, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7176, 5, 64, 0, 0, 7175, 7172, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7178, 3, 728, 364, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7180, 5, 3, 0, 0, 7180, 7271, 1, 0, 0, 0, 7181, 7182, 5, 408, 0, 0, 7182, 7183, 5, 2, 0, 0, 7183, 7184, 3, 670, 335, 0, 7184, 7185, 5, 6, 0, 0, 7185, 7186, 3, 670, 335, 0, 7186, 7187, 5, 3, 0, 0, 7187, 7271, 1, 0, 0, 0, 7188, 7189, 7, 99, 0, 0, 7189, 7271, 3, 528, 264, 0, 7190, 7191, 5, 426, 0, 0, 7191, 7192, 5, 2, 0, 0, 7192, 7193, 5, 266, 0, 0, 7193, 7203, 3, 830, 415, 0, 7194, 7201, 5, 6, 0, 0, 7195, 7196, 5, 424, 0, 0, 7196, 7197, 5, 2, 0, 0, 7197, 7198, 3, 688, 344, 0, 7198, 7199, 5, 3, 0, 0, 7199, 7202, 1, 0, 0, 0, 7200, 7202, 3, 728, 364, 0, 7201, 7195, 1, 0, 0, 0, 7201, 7200, 1, 0, 0, 0, 7202, 7204, 1, 0, 0, 0, 7203, 7194, 1, 0, 0, 0, 7203, 7204, 1, 0, 0, 0, 7204, 7205, 1, 0, 0, 0, 7205, 7206, 5, 3, 0, 0, 7206, 7271, 1, 0, 0, 0, 7207, 7208, 5, 427, 0, 0, 7208, 7209, 5, 2, 0, 0, 7209, 7210, 3, 678, 339, 0, 7210, 7211, 3, 694, 347, 0, 7211, 7212, 5, 3, 0, 0, 7212, 7271, 1, 0, 0, 0, 7213, 7214, 5, 428, 0, 0, 7214, 7215, 5, 2, 0, 0, 7215, 7216, 3, 688, 344, 0, 7216, 7217, 5, 3, 0, 0, 7217, 7271, 1, 0, 0, 0, 7218, 7219, 5, 429, 0, 0, 7219, 7220, 5, 2, 0, 0, 7220, 7221, 3, 692, 346, 0, 7221, 7224, 3, 670, 335, 0, 7222, 7223, 7, 100, 0, 0, 7223, 7225, 5, 378, 0, 0, 7224, 7222, 1, 0, 0, 0, 7224, 7225, 1, 0, 0, 0, 7225, 7226, 1, 0, 0, 0, 7226, 7227, 5, 3, 0, 0, 7227, 7271, 1, 0, 0, 0, 7228, 7229, 5, 430, 0, 0, 7229, 7230, 5, 2, 0, 0, 7230, 7231, 5, 266, 0, 0, 7231, 7234, 3, 830, 415, 0, 7232, 7233, 5, 6, 0, 0, 7233, 7235, 3, 670, 335, 0, 7234, 7232, 1, 0, 0, 0, 7234, 7235, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7237, 5, 3, 0, 0, 7237, 7271, 1, 0, 0, 0, 7238, 7239, 5, 431, 0, 0, 7239, 7240, 5, 2, 0, 0, 7240, 7241, 5, 383, 0, 0, 7241, 7242, 3, 670, 335, 0, 7242, 7243, 5, 6, 0, 0, 7243, 7247, 5, 375, 0, 0, 7244, 7245, 5, 269, 0, 0, 7245, 7248, 5, 450, 0, 0, 7246, 7248, 3, 670, 335, 0, 7247, 7244, 1, 0, 0, 0, 7247, 7246, 1, 0, 0, 0, 7248, 7258, 1, 0, 0, 0, 7249, 7250, 5, 6, 0, 0, 7250, 7256, 5, 339, 0, 0, 7251, 7253, 5, 269, 0, 0, 7252, 7251, 1, 0, 0, 0, 7252, 7253, 1, 0, 0, 0, 7253, 7254, 1, 0, 0, 0, 7254, 7257, 5, 450, 0, 0, 7255, 7257, 5, 385, 0, 0, 7256, 7252, 1, 0, 0, 0, 7256, 7255, 1, 0, 0, 0, 7257, 7259, 1, 0, 0, 0, 7258, 7249, 1, 0, 0, 0, 7258, 7259, 1, 0, 0, 0, 7259, 7260, 1, 0, 0, 0, 7260, 7261, 5, 3, 0, 0, 7261, 7271, 1, 0, 0, 0, 7262, 7263, 5, 432, 0, 0, 7263, 7264, 5, 2, 0, 0, 7264, 7265, 3, 692, 346, 0, 7265, 7266, 3, 670, 335, 0, 7266, 7267, 5, 36, 0, 0, 7267, 7268, 3, 650, 325, 0, 7268, 7269, 5, 3, 0, 0, 7269, 7271, 1, 0, 0, 0, 7270, 7096, 1, 0, 0, 0, 7270, 7102, 1, 0, 0, 0, 7270, 7103, 1, 0, 0, 0, 7270, 7107, 1, 0, 0, 0, 7270, 7108, 1, 0, 0, 0, 7270, 7109, 1, 0, 0, 0, 7270, 7110, 1, 0, 0, 0, 7270, 7111, 1, 0, 0, 0, 7270, 7112, 1, 0, 0, 0, 7270, 7113, 1, 0, 0, 0, 7270, 7120, 1, 0, 0, 0, 7270, 7129, 1, 0, 0, 0, 7270, 7138, 1, 0, 0, 0, 7270, 7151, 1, 0, 0, 0, 7270, 7160, 1, 0, 0, 0, 7270, 7166, 1, 0, 0, 0, 7270, 7181, 1, 0, 0, 0, 7270, 7188, 1, 0, 0, 0, 7270, 7190, 1, 0, 0, 0, 7270, 7207, 1, 0, 0, 0, 7270, 7213, 1, 0, 0, 0, 7270, 7218, 1, 0, 0, 0, 7270, 7228, 1, 0, 0, 0, 7270, 7238, 1, 0, 0, 0, 7270, 7262, 1, 0, 0, 0, 7271, 687, 1, 0, 0, 0, 7272, 7277, 3, 690, 345, 0, 7273, 7274, 5, 6, 0, 0, 7274, 7276, 3, 690, 345, 0, 7275, 7273, 1, 0, 0, 0, 7276, 7279, 1, 0, 0, 0, 7277, 7275, 1, 0, 0, 0, 7277, 7278, 1, 0, 0, 0, 7278, 689, 1, 0, 0, 0, 7279, 7277, 1, 0, 0, 0, 7280, 7283, 3, 670, 335, 0, 7281, 7282, 5, 36, 0, 0, 7282, 7284, 3, 830, 415, 0, 7283, 7281, 1, 0, 0, 0, 7283, 7284, 1, 0, 0, 0, 7284, 691, 1, 0, 0, 0, 7285, 7286, 7, 101, 0, 0, 7286, 693, 1, 0, 0, 0, 7287, 7289, 5, 286, 0, 0, 7288, 7290, 3, 696, 348, 0, 7289, 7288, 1, 0, 0, 0, 7289, 7290, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 7293, 3, 678, 339, 0, 7292, 7294, 3, 696, 348, 0, 7293, 7292, 1, 0, 0, 0, 7293, 7294, 1, 0, 0, 0, 7294, 695, 1, 0, 0, 0, 7295, 7296, 5, 147, 0, 0, 7296, 7297, 7, 102, 0, 0, 7297, 697, 1, 0, 0, 0, 7298, 7299, 5, 104, 0, 0, 7299, 7304, 3, 702, 351, 0, 7300, 7301, 5, 6, 0, 0, 7301, 7303, 3, 702, 351, 0, 7302, 7300, 1, 0, 0, 0, 7303, 7306, 1, 0, 0, 0, 7304, 7302, 1, 0, 0, 0, 7304, 7305, 1, 0, 0, 0, 7305, 699, 1, 0, 0, 0, 7306, 7304, 1, 0, 0, 0, 7307, 7308, 5, 67, 0, 0, 7308, 7309, 3, 670, 335, 0, 7309, 701, 1, 0, 0, 0, 7310, 7311, 3, 824, 412, 0, 7311, 7312, 5, 36, 0, 0, 7312, 7313, 3, 706, 353, 0, 7313, 703, 1, 0, 0, 0, 7314, 7317, 5, 124, 0, 0, 7315, 7318, 3, 706, 353, 0, 7316, 7318, 3, 824, 412, 0, 7317, 7315, 1, 0, 0, 0, 7317, 7316, 1, 0, 0, 0, 7318, 705, 1, 0, 0, 0, 7319, 7321, 5, 2, 0, 0, 7320, 7322, 3, 824, 412, 0, 7321, 7320, 1, 0, 0, 0, 7321, 7322, 1, 0, 0, 0, 7322, 7326, 1, 0, 0, 0, 7323, 7324, 5, 285, 0, 0, 7324, 7325, 5, 147, 0, 0, 7325, 7327, 3, 728, 364, 0, 7326, 7323, 1, 0, 0, 0, 7326, 7327, 1, 0, 0, 0, 7327, 7329, 1, 0, 0, 0, 7328, 7330, 3, 580, 290, 0, 7329, 7328, 1, 0, 0, 0, 7329, 7330, 1, 0, 0, 0, 7330, 7332, 1, 0, 0, 0, 7331, 7333, 3, 708, 354, 0, 7332, 7331, 1, 0, 0, 0, 7332, 7333, 1, 0, 0, 0, 7333, 7334, 1, 0, 0, 0, 7334, 7335, 5, 3, 0, 0, 7335, 707, 1, 0, 0, 0, 7336, 7341, 7, 103, 0, 0, 7337, 7338, 5, 387, 0, 0, 7338, 7339, 3, 710, 355, 0, 7339, 7340, 5, 33, 0, 0, 7340, 7342, 1, 0, 0, 0, 7341, 7337, 1, 0, 0, 0, 7341, 7342, 1, 0, 0, 0, 7342, 7343, 1, 0, 0, 0, 7343, 7344, 3, 710, 355, 0, 7344, 7354, 1, 0, 0, 0, 7345, 7352, 5, 199, 0, 0, 7346, 7347, 5, 434, 0, 0, 7347, 7353, 5, 414, 0, 0, 7348, 7353, 5, 66, 0, 0, 7349, 7353, 5, 467, 0, 0, 7350, 7351, 5, 269, 0, 0, 7351, 7353, 5, 482, 0, 0, 7352, 7346, 1, 0, 0, 0, 7352, 7348, 1, 0, 0, 0, 7352, 7349, 1, 0, 0, 0, 7352, 7350, 1, 0, 0, 0, 7353, 7355, 1, 0, 0, 0, 7354, 7345, 1, 0, 0, 0, 7354, 7355, 1, 0, 0, 0, 7355, 709, 1, 0, 0, 0, 7356, 7359, 5, 362, 0, 0, 7357, 7359, 3, 670, 335, 0, 7358, 7356, 1, 0, 0, 0, 7358, 7357, 1, 0, 0, 0, 7359, 7360, 1, 0, 0, 0, 7360, 7364, 7, 104, 0, 0, 7361, 7362, 5, 434, 0, 0, 7362, 7364, 5, 414, 0, 0, 7363, 7358, 1, 0, 0, 0, 7363, 7361, 1, 0, 0, 0, 7364, 711, 1, 0, 0, 0, 7365, 7373, 3, 714, 357, 0, 7366, 7367, 5, 2, 0, 0, 7367, 7368, 3, 728, 364, 0, 7368, 7369, 5, 6, 0, 0, 7369, 7370, 3, 670, 335, 0, 7370, 7371, 5, 3, 0, 0, 7371, 7373, 1, 0, 0, 0, 7372, 7365, 1, 0, 0, 0, 7372, 7366, 1, 0, 0, 0, 7373, 713, 1, 0, 0, 0, 7374, 7375, 5, 414, 0, 0, 7375, 7377, 5, 2, 0, 0, 7376, 7378, 3, 728, 364, 0, 7377, 7376, 1, 0, 0, 0, 7377, 7378, 1, 0, 0, 0, 7378, 7379, 1, 0, 0, 0, 7379, 7380, 5, 3, 0, 0, 7380, 715, 1, 0, 0, 0, 7381, 7382, 7, 105, 0, 0, 7382, 717, 1, 0, 0, 0, 7383, 7386, 5, 29, 0, 0, 7384, 7386, 3, 720, 360, 0, 7385, 7383, 1, 0, 0, 0, 7385, 7384, 1, 0, 0, 0, 7386, 719, 1, 0, 0, 0, 7387, 7388, 7, 106, 0, 0, 7388, 721, 1, 0, 0, 0, 7389, 7396, 5, 29, 0, 0, 7390, 7391, 5, 278, 0, 0, 7391, 7392, 5, 2, 0, 0, 7392, 7393, 3, 408, 204, 0, 7393, 7394, 5, 3, 0, 0, 7394, 7396, 1, 0, 0, 0, 7395, 7389, 1, 0, 0, 0, 7395, 7390, 1, 0, 0, 0, 7396, 723, 1, 0, 0, 0, 7397, 7404, 3, 718, 359, 0, 7398, 7399, 5, 278, 0, 0, 7399, 7400, 5, 2, 0, 0, 7400, 7401, 3, 408, 204, 0, 7401, 7402, 5, 3, 0, 0, 7402, 7404, 1, 0, 0, 0, 7403, 7397, 1, 0, 0, 0, 7403, 7398, 1, 0, 0, 0, 7404, 725, 1, 0, 0, 0, 7405, 7411, 3, 724, 362, 0, 7406, 7408, 5, 77, 0, 0, 7407, 7406, 1, 0, 0, 0, 7407, 7408, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 7411, 7, 107, 0, 0, 7410, 7405, 1, 0, 0, 0, 7410, 7407, 1, 0, 0, 0, 7411, 727, 1, 0, 0, 0, 7412, 7417, 3, 670, 335, 0, 7413, 7414, 5, 6, 0, 0, 7414, 7416, 3, 670, 335, 0, 7415, 7413, 1, 0, 0, 0, 7416, 7419, 1, 0, 0, 0, 7417, 7415, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 729, 1, 0, 0, 0, 7419, 7417, 1, 0, 0, 0, 7420, 7421, 3, 670, 335, 0, 7421, 731, 1, 0, 0, 0, 7422, 7423, 3, 804, 402, 0, 7423, 733, 1, 0, 0, 0, 7424, 7425, 5, 2, 0, 0, 7425, 7426, 3, 670, 335, 0, 7426, 7427, 5, 3, 0, 0, 7427, 7430, 1, 0, 0, 0, 7428, 7430, 3, 804, 402, 0, 7429, 7424, 1, 0, 0, 0, 7429, 7428, 1, 0, 0, 0, 7430, 735, 1, 0, 0, 0, 7431, 7434, 3, 670, 335, 0, 7432, 7434, 3, 804, 402, 0, 7433, 7431, 1, 0, 0, 0, 7433, 7432, 1, 0, 0, 0, 7434, 737, 1, 0, 0, 0, 7435, 7440, 3, 740, 370, 0, 7436, 7437, 5, 6, 0, 0, 7437, 7439, 3, 740, 370, 0, 7438, 7436, 1, 0, 0, 0, 7439, 7442, 1, 0, 0, 0, 7440, 7438, 1, 0, 0, 0, 7440, 7441, 1, 0, 0, 0, 7441, 739, 1, 0, 0, 0, 7442, 7440, 1, 0, 0, 0, 7443, 7451, 3, 804, 402, 0, 7444, 7451, 3, 670, 335, 0, 7445, 7448, 3, 826, 413, 0, 7446, 7447, 7, 108, 0, 0, 7447, 7449, 3, 670, 335, 0, 7448, 7446, 1, 0, 0, 0, 7448, 7449, 1, 0, 0, 0, 7449, 7451, 1, 0, 0, 0, 7450, 7443, 1, 0, 0, 0, 7450, 7444, 1, 0, 0, 0, 7450, 7445, 1, 0, 0, 0, 7451, 741, 1, 0, 0, 0, 7452, 7462, 5, 4, 0, 0, 7453, 7463, 3, 728, 364, 0, 7454, 7459, 3, 742, 371, 0, 7455, 7456, 5, 6, 0, 0, 7456, 7458, 3, 742, 371, 0, 7457, 7455, 1, 0, 0, 0, 7458, 7461, 1, 0, 0, 0, 7459, 7457, 1, 0, 0, 0, 7459, 7460, 1, 0, 0, 0, 7460, 7463, 1, 0, 0, 0, 7461, 7459, 1, 0, 0, 0, 7462, 7453, 1, 0, 0, 0, 7462, 7454, 1, 0, 0, 0, 7462, 7463, 1, 0, 0, 0, 7463, 7464, 1, 0, 0, 0, 7464, 7465, 5, 5, 0, 0, 7465, 743, 1, 0, 0, 0, 7466, 7475, 3, 832, 416, 0, 7467, 7475, 5, 384, 0, 0, 7468, 7475, 5, 264, 0, 0, 7469, 7475, 5, 176, 0, 0, 7470, 7475, 5, 218, 0, 0, 7471, 7475, 5, 261, 0, 0, 7472, 7475, 5, 326, 0, 0, 7473, 7475, 3, 814, 407, 0, 7474, 7466, 1, 0, 0, 0, 7474, 7467, 1, 0, 0, 0, 7474, 7468, 1, 0, 0, 0, 7474, 7469, 1, 0, 0, 0, 7474, 7470, 1, 0, 0, 0, 7474, 7471, 1, 0, 0, 0, 7474, 7472, 1, 0, 0, 0, 7474, 7473, 1, 0, 0, 0, 7475, 745, 1, 0, 0, 0, 7476, 7477, 7, 109, 0, 0, 7477, 747, 1, 0, 0, 0, 7478, 7479, 3, 670, 335, 0, 7479, 7480, 5, 64, 0, 0, 7480, 7483, 3, 670, 335, 0, 7481, 7482, 5, 62, 0, 0, 7482, 7484, 3, 670, 335, 0, 7483, 7481, 1, 0, 0, 0, 7483, 7484, 1, 0, 0, 0, 7484, 7500, 1, 0, 0, 0, 7485, 7486, 3, 670, 335, 0, 7486, 7487, 5, 62, 0, 0, 7487, 7490, 3, 670, 335, 0, 7488, 7489, 5, 64, 0, 0, 7489, 7491, 3, 670, 335, 0, 7490, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7500, 1, 0, 0, 0, 7492, 7493, 3, 670, 335, 0, 7493, 7494, 5, 127, 0, 0, 7494, 7495, 3, 670, 335, 0, 7495, 7496, 5, 197, 0, 0, 7496, 7497, 3, 670, 335, 0, 7497, 7500, 1, 0, 0, 0, 7498, 7500, 3, 728, 364, 0, 7499, 7478, 1, 0, 0, 0, 7499, 7485, 1, 0, 0, 0, 7499, 7492, 1, 0, 0, 0, 7499, 7498, 1, 0, 0, 0, 7500, 749, 1, 0, 0, 0, 7501, 7502, 5, 102, 0, 0, 7502, 7503, 3, 670, 335, 0, 7503, 7504, 5, 93, 0, 0, 7504, 7505, 3, 670, 335, 0, 7505, 751, 1, 0, 0, 0, 7506, 7509, 5, 11, 0, 0, 7507, 7510, 3, 830, 415, 0, 7508, 7510, 5, 9, 0, 0, 7509, 7507, 1, 0, 0, 0, 7509, 7508, 1, 0, 0, 0, 7510, 7524, 1, 0, 0, 0, 7511, 7520, 5, 4, 0, 0, 7512, 7521, 3, 670, 335, 0, 7513, 7515, 3, 670, 335, 0, 7514, 7513, 1, 0, 0, 0, 7514, 7515, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 7518, 5, 8, 0, 0, 7517, 7519, 3, 670, 335, 0, 7518, 7517, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7521, 1, 0, 0, 0, 7520, 7512, 1, 0, 0, 0, 7520, 7514, 1, 0, 0, 0, 7521, 7522, 1, 0, 0, 0, 7522, 7524, 5, 5, 0, 0, 7523, 7506, 1, 0, 0, 0, 7523, 7511, 1, 0, 0, 0, 7524, 753, 1, 0, 0, 0, 7525, 7527, 3, 752, 376, 0, 7526, 7525, 1, 0, 0, 0, 7527, 7528, 1, 0, 0, 0, 7528, 7526, 1, 0, 0, 0, 7528, 7529, 1, 0, 0, 0, 7529, 755, 1, 0, 0, 0, 7530, 7532, 3, 752, 376, 0, 7531, 7530, 1, 0, 0, 0, 7532, 7535, 1, 0, 0, 0, 7533, 7531, 1, 0, 0, 0, 7533, 7534, 1, 0, 0, 0, 7534, 757, 1, 0, 0, 0, 7535, 7533, 1, 0, 0, 0, 7536, 7541, 3, 760, 380, 0, 7537, 7538, 5, 6, 0, 0, 7538, 7540, 3, 760, 380, 0, 7539, 7537, 1, 0, 0, 0, 7540, 7543, 1, 0, 0, 0, 7541, 7539, 1, 0, 0, 0, 7541, 7542, 1, 0, 0, 0, 7542, 759, 1, 0, 0, 0, 7543, 7541, 1, 0, 0, 0, 7544, 7557, 3, 762, 381, 0, 7545, 7548, 3, 732, 366, 0, 7546, 7548, 3, 730, 365, 0, 7547, 7545, 1, 0, 0, 0, 7547, 7546, 1, 0, 0, 0, 7548, 7554, 1, 0, 0, 0, 7549, 7551, 5, 36, 0, 0, 7550, 7549, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7552, 1, 0, 0, 0, 7552, 7555, 3, 832, 416, 0, 7553, 7555, 1, 0, 0, 0, 7554, 7550, 1, 0, 0, 0, 7554, 7553, 1, 0, 0, 0, 7555, 7557, 1, 0, 0, 0, 7556, 7544, 1, 0, 0, 0, 7556, 7547, 1, 0, 0, 0, 7557, 761, 1, 0, 0, 0, 7558, 7559, 3, 824, 412, 0, 7559, 7560, 5, 11, 0, 0, 7560, 7562, 1, 0, 0, 0, 7561, 7558, 1, 0, 0, 0, 7562, 7565, 1, 0, 0, 0, 7563, 7561, 1, 0, 0, 0, 7563, 7564, 1, 0, 0, 0, 7564, 7566, 1, 0, 0, 0, 7565, 7563, 1, 0, 0, 0, 7566, 7567, 5, 9, 0, 0, 7567, 763, 1, 0, 0, 0, 7568, 7573, 3, 784, 392, 0, 7569, 7570, 5, 6, 0, 0, 7570, 7572, 3, 784, 392, 0, 7571, 7569, 1, 0, 0, 0, 7572, 7575, 1, 0, 0, 0, 7573, 7571, 1, 0, 0, 0, 7573, 7574, 1, 0, 0, 0, 7574, 765, 1, 0, 0, 0, 7575, 7573, 1, 0, 0, 0, 7576, 7581, 3, 778, 389, 0, 7577, 7578, 5, 6, 0, 0, 7578, 7580, 3, 778, 389, 0, 7579, 7577, 1, 0, 0, 0, 7580, 7583, 1, 0, 0, 0, 7581, 7579, 1, 0, 0, 0, 7581, 7582, 1, 0, 0, 0, 7582, 767, 1, 0, 0, 0, 7583, 7581, 1, 0, 0, 0, 7584, 7589, 3, 794, 397, 0, 7585, 7586, 5, 6, 0, 0, 7586, 7588, 3, 794, 397, 0, 7587, 7585, 1, 0, 0, 0, 7588, 7591, 1, 0, 0, 0, 7589, 7587, 1, 0, 0, 0, 7589, 7590, 1, 0, 0, 0, 7590, 769, 1, 0, 0, 0, 7591, 7589, 1, 0, 0, 0, 7592, 7597, 3, 792, 396, 0, 7593, 7594, 5, 6, 0, 0, 7594, 7596, 3, 792, 396, 0, 7595, 7593, 1, 0, 0, 0, 7596, 7599, 1, 0, 0, 0, 7597, 7595, 1, 0, 0, 0, 7597, 7598, 1, 0, 0, 0, 7598, 771, 1, 0, 0, 0, 7599, 7597, 1, 0, 0, 0, 7600, 7601, 3, 784, 392, 0, 7601, 773, 1, 0, 0, 0, 7602, 7603, 3, 784, 392, 0, 7603, 775, 1, 0, 0, 0, 7604, 7605, 3, 784, 392, 0, 7605, 777, 1, 0, 0, 0, 7606, 7607, 3, 784, 392, 0, 7607, 779, 1, 0, 0, 0, 7608, 7609, 3, 784, 392, 0, 7609, 781, 1, 0, 0, 0, 7610, 7611, 3, 310, 155, 0, 7611, 783, 1, 0, 0, 0, 7612, 7614, 3, 824, 412, 0, 7613, 7615, 3, 754, 377, 0, 7614, 7613, 1, 0, 0, 0, 7614, 7615, 1, 0, 0, 0, 7615, 785, 1, 0, 0, 0, 7616, 7621, 3, 774, 387, 0, 7617, 7618, 5, 6, 0, 0, 7618, 7620, 3, 774, 387, 0, 7619, 7617, 1, 0, 0, 0, 7620, 7623, 1, 0, 0, 0, 7621, 7619, 1, 0, 0, 0, 7621, 7622, 1, 0, 0, 0, 7622, 787, 1, 0, 0, 0, 7623, 7621, 1, 0, 0, 0, 7624, 7629, 3, 824, 412, 0, 7625, 7626, 5, 6, 0, 0, 7626, 7628, 3, 824, 412, 0, 7627, 7625, 1, 0, 0, 0, 7628, 7631, 1, 0, 0, 0, 7629, 7627, 1, 0, 0, 0, 7629, 7630, 1, 0, 0, 0, 7630, 789, 1, 0, 0, 0, 7631, 7629, 1, 0, 0, 0, 7632, 7633, 3, 310, 155, 0, 7633, 791, 1, 0, 0, 0, 7634, 7635, 3, 310, 155, 0, 7635, 793, 1, 0, 0, 0, 7636, 7637, 3, 310, 155, 0, 7637, 795, 1, 0, 0, 0, 7638, 7639, 3, 824, 412, 0, 7639, 797, 1, 0, 0, 0, 7640, 7641, 3, 824, 412, 0, 7641, 799, 1, 0, 0, 0, 7642, 7647, 3, 826, 413, 0, 7643, 7644, 3, 824, 412, 0, 7644, 7645, 3, 754, 377, 0, 7645, 7647, 1, 0, 0, 0, 7646, 7642, 1, 0, 0, 0, 7646, 7643, 1, 0, 0, 0, 7647, 801, 1, 0, 0, 0, 7648, 7653, 3, 826, 413, 0, 7649, 7650, 3, 824, 412, 0, 7650, 7651, 3, 754, 377, 0, 7651, 7653, 1, 0, 0, 0, 7652, 7648, 1, 0, 0, 0, 7652, 7649, 1, 0, 0, 0, 7653, 803, 1, 0, 0, 0, 7654, 7655, 3, 824, 412, 0, 7655, 7656, 3, 756, 378, 0, 7656, 7659, 1, 0, 0, 0, 7657, 7659, 4, 402, 10, 0, 7658, 7654, 1, 0, 0, 0, 7658, 7657, 1, 0, 0, 0, 7659, 805, 1, 0, 0, 0, 7660, 7661, 3, 824, 412, 0, 7661, 7662, 3, 756, 378, 0, 7662, 807, 1, 0, 0, 0, 7663, 7664, 3, 824, 412, 0, 7664, 809, 1, 0, 0, 0, 7665, 7670, 3, 826, 413, 0, 7666, 7667, 3, 824, 412, 0, 7667, 7668, 3, 754, 377, 0, 7668, 7670, 1, 0, 0, 0, 7669, 7665, 1, 0, 0, 0, 7669, 7666, 1, 0, 0, 0, 7670, 811, 1, 0, 0, 0, 7671, 7676, 3, 826, 413, 0, 7672, 7673, 3, 824, 412, 0, 7673, 7674, 3, 754, 377, 0, 7674, 7676, 1, 0, 0, 0, 7675, 7671, 1, 0, 0, 0, 7675, 7672, 1, 0, 0, 0, 7676, 813, 1, 0, 0, 0, 7677, 7680, 3, 816, 408, 0, 7678, 7679, 5, 487, 0, 0, 7679, 7681, 3, 816, 408, 0, 7680, 7678, 1, 0, 0, 0, 7680, 7681, 1, 0, 0, 0, 7681, 815, 1, 0, 0, 0, 7682, 7694, 5, 561, 0, 0, 7683, 7694, 5, 563, 0, 0, 7684, 7688, 5, 565, 0, 0, 7685, 7687, 5, 590, 0, 0, 7686, 7685, 1, 0, 0, 0, 7687, 7690, 1, 0, 0, 0, 7688, 7686, 1, 0, 0, 0, 7688, 7689, 1, 0, 0, 0, 7689, 7691, 1, 0, 0, 0, 7690, 7688, 1, 0, 0, 0, 7691, 7694, 5, 591, 0, 0, 7692, 7694, 5, 586, 0, 0, 7693, 7682, 1, 0, 0, 0, 7693, 7683, 1, 0, 0, 0, 7693, 7684, 1, 0, 0, 0, 7693, 7692, 1, 0, 0, 0, 7694, 817, 1, 0, 0, 0, 7695, 7697, 7, 30, 0, 0, 7696, 7695, 1, 0, 0, 0, 7696, 7697, 1, 0, 0, 0, 7697, 7698, 1, 0, 0, 0, 7698, 7699, 5, 574, 0, 0, 7699, 819, 1, 0, 0, 0, 7700, 7706, 3, 828, 414, 0, 7701, 7706, 5, 52, 0, 0, 7702, 7706, 5, 49, 0, 0, 7703, 7706, 5, 89, 0, 0, 7704, 7706, 5, 524, 0, 0, 7705, 7700, 1, 0, 0, 0, 7705, 7701, 1, 0, 0, 0, 7705, 7702, 1, 0, 0, 0, 7705, 7703, 1, 0, 0, 0, 7705, 7704, 1, 0, 0, 0, 7706, 821, 1, 0, 0, 0, 7707, 7712, 3, 820, 410, 0, 7708, 7709, 5, 6, 0, 0, 7709, 7711, 3, 820, 410, 0, 7710, 7708, 1, 0, 0, 0, 7711, 7714, 1, 0, 0, 0, 7712, 7710, 1, 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 823, 1, 0, 0, 0, 7714, 7712, 1, 0, 0, 0, 7715, 7718, 3, 832, 416, 0, 7716, 7718, 3, 836, 418, 0, 7717, 7715, 1, 0, 0, 0, 7717, 7716, 1, 0, 0, 0, 7718, 825, 1, 0, 0, 0, 7719, 7722, 3, 832, 416, 0, 7720, 7722, 3, 838, 419, 0, 7721, 7719, 1, 0, 0, 0, 7721, 7720, 1, 0, 0, 0, 7722, 827, 1, 0, 0, 0, 7723, 7727, 3, 832, 416, 0, 7724, 7727, 3, 836, 418, 0, 7725, 7727, 3, 838, 419, 0, 7726, 7723, 1, 0, 0, 0, 7726, 7724, 1, 0, 0, 0, 7726, 7725, 1, 0, 0, 0, 7727, 829, 1, 0, 0, 0, 7728, 7733, 3, 832, 416, 0, 7729, 7733, 3, 836, 418, 0, 7730, 7733, 3, 838, 419, 0, 7731, 7733, 3, 840, 420, 0, 7732, 7728, 1, 0, 0, 0, 7732, 7729, 1, 0, 0, 0, 7732, 7730, 1, 0, 0, 0, 7732, 7731, 1, 0, 0, 0, 7733, 831, 1, 0, 0, 0, 7734, 7737, 5, 552, 0, 0, 7735, 7736, 5, 487, 0, 0, 7736, 7738, 3, 816, 408, 0, 7737, 7735, 1, 0, 0, 0, 7737, 7738, 1, 0, 0, 0, 7738, 7746, 1, 0, 0, 0, 7739, 7746, 3, 814, 407, 0, 7740, 7746, 5, 553, 0, 0, 7741, 7746, 5, 557, 0, 0, 7742, 7746, 5, 577, 0, 0, 7743, 7746, 5, 578, 0, 0, 7744, 7746, 3, 834, 417, 0, 7745, 7734, 1, 0, 0, 0, 7745, 7739, 1, 0, 0, 0, 7745, 7740, 1, 0, 0, 0, 7745, 7741, 1, 0, 0, 0, 7745, 7742, 1, 0, 0, 0, 7745, 7743, 1, 0, 0, 0, 7745, 7744, 1, 0, 0, 0, 7746, 833, 1, 0, 0, 0, 7747, 7748, 7, 110, 0, 0, 7748, 835, 1, 0, 0, 0, 7749, 7801, 5, 387, 0, 0, 7750, 7801, 5, 388, 0, 0, 7751, 7801, 3, 658, 329, 0, 7752, 7801, 5, 390, 0, 0, 7753, 7801, 5, 391, 0, 0, 7754, 7801, 3, 660, 330, 0, 7755, 7801, 5, 393, 0, 0, 7756, 7801, 5, 394, 0, 0, 7757, 7801, 5, 395, 0, 0, 7758, 7801, 5, 396, 0, 0, 7759, 7801, 5, 397, 0, 0, 7760, 7801, 5, 398, 0, 0, 7761, 7801, 5, 399, 0, 0, 7762, 7801, 5, 470, 0, 0, 7763, 7801, 5, 400, 0, 0, 7764, 7801, 5, 401, 0, 0, 7765, 7801, 5, 402, 0, 0, 7766, 7801, 5, 403, 0, 0, 7767, 7801, 5, 404, 0, 0, 7768, 7801, 5, 405, 0, 0, 7769, 7801, 5, 406, 0, 0, 7770, 7801, 5, 407, 0, 0, 7771, 7801, 5, 489, 0, 0, 7772, 7801, 5, 408, 0, 0, 7773, 7801, 3, 654, 327, 0, 7774, 7801, 5, 453, 0, 0, 7775, 7801, 5, 410, 0, 0, 7776, 7801, 5, 411, 0, 0, 7777, 7801, 5, 412, 0, 0, 7778, 7801, 5, 413, 0, 0, 7779, 7801, 5, 414, 0, 0, 7780, 7801, 5, 415, 0, 0, 7781, 7801, 5, 416, 0, 0, 7782, 7801, 5, 417, 0, 0, 7783, 7801, 5, 418, 0, 0, 7784, 7801, 5, 419, 0, 0, 7785, 7801, 5, 420, 0, 0, 7786, 7801, 5, 421, 0, 0, 7787, 7801, 5, 422, 0, 0, 7788, 7801, 5, 423, 0, 0, 7789, 7801, 5, 424, 0, 0, 7790, 7801, 5, 425, 0, 0, 7791, 7801, 5, 426, 0, 0, 7792, 7801, 5, 427, 0, 0, 7793, 7801, 5, 428, 0, 0, 7794, 7801, 5, 476, 0, 0, 7795, 7801, 5, 429, 0, 0, 7796, 7801, 5, 430, 0, 0, 7797, 7801, 5, 431, 0, 0, 7798, 7801, 5, 432, 0, 0, 7799, 7801, 5, 474, 0, 0, 7800, 7749, 1, 0, 0, 0, 7800, 7750, 1, 0, 0, 0, 7800, 7751, 1, 0, 0, 0, 7800, 7752, 1, 0, 0, 0, 7800, 7753, 1, 0, 0, 0, 7800, 7754, 1, 0, 0, 0, 7800, 7755, 1, 0, 0, 0, 7800, 7756, 1, 0, 0, 0, 7800, 7757, 1, 0, 0, 0, 7800, 7758, 1, 0, 0, 0, 7800, 7759, 1, 0, 0, 0, 7800, 7760, 1, 0, 0, 0, 7800, 7761, 1, 0, 0, 0, 7800, 7762, 1, 0, 0, 0, 7800, 7763, 1, 0, 0, 0, 7800, 7764, 1, 0, 0, 0, 7800, 7765, 1, 0, 0, 0, 7800, 7766, 1, 0, 0, 0, 7800, 7767, 1, 0, 0, 0, 7800, 7768, 1, 0, 0, 0, 7800, 7769, 1, 0, 0, 0, 7800, 7770, 1, 0, 0, 0, 7800, 7771, 1, 0, 0, 0, 7800, 7772, 1, 0, 0, 0, 7800, 7773, 1, 0, 0, 0, 7800, 7774, 1, 0, 0, 0, 7800, 7775, 1, 0, 0, 0, 7800, 7776, 1, 0, 0, 0, 7800, 7777, 1, 0, 0, 0, 7800, 7778, 1, 0, 0, 0, 7800, 7779, 1, 0, 0, 0, 7800, 7780, 1, 0, 0, 0, 7800, 7781, 1, 0, 0, 0, 7800, 7782, 1, 0, 0, 0, 7800, 7783, 1, 0, 0, 0, 7800, 7784, 1, 0, 0, 0, 7800, 7785, 1, 0, 0, 0, 7800, 7786, 1, 0, 0, 0, 7800, 7787, 1, 0, 0, 0, 7800, 7788, 1, 0, 0, 0, 7800, 7789, 1, 0, 0, 0, 7800, 7790, 1, 0, 0, 0, 7800, 7791, 1, 0, 0, 0, 7800, 7792, 1, 0, 0, 0, 7800, 7793, 1, 0, 0, 0, 7800, 7794, 1, 0, 0, 0, 7800, 7795, 1, 0, 0, 0, 7800, 7796, 1, 0, 0, 0, 7800, 7797, 1, 0, 0, 0, 7800, 7798, 1, 0, 0, 0, 7800, 7799, 1, 0, 0, 0, 7801, 837, 1, 0, 0, 0, 7802, 7803, 7, 111, 0, 0, 7803, 839, 1, 0, 0, 0, 7804, 7805, 7, 112, 0, 0, 7805, 841, 1, 0, 0, 0, 7806, 7808, 3, 844, 422, 0, 7807, 7806, 1, 0, 0, 0, 7807, 7808, 1, 0, 0, 0, 7808, 7819, 1, 0, 0, 0, 7809, 7817, 5, 178, 0, 0, 7810, 7814, 3, 846, 423, 0, 7811, 7814, 5, 178, 0, 0, 7812, 7814, 3, 844, 422, 0, 7813, 7810, 1, 0, 0, 0, 7813, 7811, 1, 0, 0, 0, 7813, 7812, 1, 0, 0, 0, 7814, 7815, 1, 0, 0, 0, 7815, 7813, 1, 0, 0, 0, 7815, 7816, 1, 0, 0, 0, 7816, 7818, 1, 0, 0, 0, 7817, 7813, 1, 0, 0, 0, 7817, 7818, 1, 0, 0, 0, 7818, 7820, 1, 0, 0, 0, 7819, 7809, 1, 0, 0, 0, 7819, 7820, 1, 0, 0, 0, 7820, 7821, 1, 0, 0, 0, 7821, 7825, 5, 146, 0, 0, 7822, 7824, 3, 852, 426, 0, 7823, 7822, 1, 0, 0, 0, 7824, 7827, 1, 0, 0, 0, 7825, 7823, 1, 0, 0, 0, 7825, 7826, 1, 0, 0, 0, 7826, 7829, 1, 0, 0, 0, 7827, 7825, 1, 0, 0, 0, 7828, 7830, 3, 930, 465, 0, 7829, 7828, 1, 0, 0, 0, 7829, 7830, 1, 0, 0, 0, 7830, 7831, 1, 0, 0, 0, 7831, 7833, 5, 454, 0, 0, 7832, 7834, 3, 934, 467, 0, 7833, 7832, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 843, 1, 0, 0, 0, 7835, 7836, 5, 18, 0, 0, 7836, 7837, 3, 934, 467, 0, 7837, 7838, 5, 19, 0, 0, 7838, 845, 1, 0, 0, 0, 7839, 7886, 3, 934, 467, 0, 7840, 7841, 5, 496, 0, 0, 7841, 7844, 5, 62, 0, 0, 7842, 7845, 5, 28, 0, 0, 7843, 7845, 3, 824, 412, 0, 7844, 7842, 1, 0, 0, 0, 7844, 7843, 1, 0, 0, 0, 7845, 7887, 1, 0, 0, 0, 7846, 7848, 5, 497, 0, 0, 7847, 7846, 1, 0, 0, 0, 7847, 7848, 1, 0, 0, 0, 7848, 7849, 1, 0, 0, 0, 7849, 7851, 3, 648, 324, 0, 7850, 7852, 3, 90, 45, 0, 7851, 7850, 1, 0, 0, 0, 7851, 7852, 1, 0, 0, 0, 7852, 7855, 1, 0, 0, 0, 7853, 7854, 5, 77, 0, 0, 7854, 7856, 5, 78, 0, 0, 7855, 7853, 1, 0, 0, 0, 7855, 7856, 1, 0, 0, 0, 7856, 7862, 1, 0, 0, 0, 7857, 7860, 3, 850, 425, 0, 7858, 7860, 5, 53, 0, 0, 7859, 7857, 1, 0, 0, 0, 7859, 7858, 1, 0, 0, 0, 7860, 7861, 1, 0, 0, 0, 7861, 7863, 3, 936, 468, 0, 7862, 7859, 1, 0, 0, 0, 7862, 7863, 1, 0, 0, 0, 7863, 7887, 1, 0, 0, 0, 7864, 7866, 5, 269, 0, 0, 7865, 7864, 1, 0, 0, 0, 7865, 7866, 1, 0, 0, 0, 7866, 7867, 1, 0, 0, 0, 7867, 7869, 5, 324, 0, 0, 7868, 7865, 1, 0, 0, 0, 7868, 7869, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7882, 5, 172, 0, 0, 7871, 7872, 5, 2, 0, 0, 7872, 7877, 3, 848, 424, 0, 7873, 7874, 5, 6, 0, 0, 7874, 7876, 3, 848, 424, 0, 7875, 7873, 1, 0, 0, 0, 7876, 7879, 1, 0, 0, 0, 7877, 7875, 1, 0, 0, 0, 7877, 7878, 1, 0, 0, 0, 7878, 7880, 1, 0, 0, 0, 7879, 7877, 1, 0, 0, 0, 7880, 7881, 5, 3, 0, 0, 7881, 7883, 1, 0, 0, 0, 7882, 7871, 1, 0, 0, 0, 7882, 7883, 1, 0, 0, 0, 7883, 7884, 1, 0, 0, 0, 7884, 7885, 7, 113, 0, 0, 7885, 7887, 3, 554, 277, 0, 7886, 7840, 1, 0, 0, 0, 7886, 7847, 1, 0, 0, 0, 7886, 7868, 1, 0, 0, 0, 7887, 7888, 1, 0, 0, 0, 7888, 7889, 5, 7, 0, 0, 7889, 847, 1, 0, 0, 0, 7890, 7891, 3, 934, 467, 0, 7891, 7892, 3, 648, 324, 0, 7892, 849, 1, 0, 0, 0, 7893, 7894, 7, 114, 0, 0, 7894, 851, 1, 0, 0, 0, 7895, 7896, 3, 842, 421, 0, 7896, 7897, 5, 7, 0, 0, 7897, 7920, 1, 0, 0, 0, 7898, 7920, 3, 880, 440, 0, 7899, 7920, 3, 882, 441, 0, 7900, 7920, 3, 858, 429, 0, 7901, 7920, 3, 866, 433, 0, 7902, 7920, 3, 870, 435, 0, 7903, 7920, 3, 872, 436, 0, 7904, 7920, 3, 876, 438, 0, 7905, 7920, 3, 878, 439, 0, 7906, 7920, 3, 886, 443, 0, 7907, 7920, 3, 890, 445, 0, 7908, 7920, 3, 892, 446, 0, 7909, 7920, 3, 854, 427, 0, 7910, 7920, 3, 856, 428, 0, 7911, 7920, 3, 860, 430, 0, 7912, 7920, 3, 896, 448, 0, 7913, 7920, 3, 900, 450, 0, 7914, 7920, 3, 904, 452, 0, 7915, 7920, 3, 920, 460, 0, 7916, 7920, 3, 922, 461, 0, 7917, 7920, 3, 924, 462, 0, 7918, 7920, 3, 926, 463, 0, 7919, 7895, 1, 0, 0, 0, 7919, 7898, 1, 0, 0, 0, 7919, 7899, 1, 0, 0, 0, 7919, 7900, 1, 0, 0, 0, 7919, 7901, 1, 0, 0, 0, 7919, 7902, 1, 0, 0, 0, 7919, 7903, 1, 0, 0, 0, 7919, 7904, 1, 0, 0, 0, 7919, 7905, 1, 0, 0, 0, 7919, 7906, 1, 0, 0, 0, 7919, 7907, 1, 0, 0, 0, 7919, 7908, 1, 0, 0, 0, 7919, 7909, 1, 0, 0, 0, 7919, 7910, 1, 0, 0, 0, 7919, 7911, 1, 0, 0, 0, 7919, 7912, 1, 0, 0, 0, 7919, 7913, 1, 0, 0, 0, 7919, 7914, 1, 0, 0, 0, 7919, 7915, 1, 0, 0, 0, 7919, 7916, 1, 0, 0, 0, 7919, 7917, 1, 0, 0, 0, 7919, 7918, 1, 0, 0, 0, 7920, 853, 1, 0, 0, 0, 7921, 7922, 5, 498, 0, 0, 7922, 7923, 3, 936, 468, 0, 7923, 7924, 5, 7, 0, 0, 7924, 855, 1, 0, 0, 0, 7925, 7926, 5, 433, 0, 0, 7926, 7933, 3, 934, 467, 0, 7927, 7929, 5, 2, 0, 0, 7928, 7930, 3, 728, 364, 0, 7929, 7928, 1, 0, 0, 0, 7929, 7930, 1, 0, 0, 0, 7930, 7931, 1, 0, 0, 0, 7931, 7932, 5, 3, 0, 0, 7932, 7934, 5, 7, 0, 0, 7933, 7927, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 7945, 1, 0, 0, 0, 7935, 7936, 5, 57, 0, 0, 7936, 7937, 3, 934, 467, 0, 7937, 7939, 5, 2, 0, 0, 7938, 7940, 3, 728, 364, 0, 7939, 7938, 1, 0, 0, 0, 7939, 7940, 1, 0, 0, 0, 7940, 7941, 1, 0, 0, 0, 7941, 7942, 5, 3, 0, 0, 7942, 7943, 5, 7, 0, 0, 7943, 7945, 1, 0, 0, 0, 7944, 7925, 1, 0, 0, 0, 7944, 7935, 1, 0, 0, 0, 7945, 857, 1, 0, 0, 0, 7946, 7947, 3, 864, 432, 0, 7947, 7948, 3, 850, 425, 0, 7948, 7949, 3, 936, 468, 0, 7949, 7950, 5, 7, 0, 0, 7950, 859, 1, 0, 0, 0, 7951, 7953, 5, 499, 0, 0, 7952, 7954, 7, 115, 0, 0, 7953, 7952, 1, 0, 0, 0, 7953, 7954, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7956, 5, 500, 0, 0, 7956, 7961, 3, 862, 431, 0, 7957, 7958, 5, 6, 0, 0, 7958, 7960, 3, 862, 431, 0, 7959, 7957, 1, 0, 0, 0, 7960, 7963, 1, 0, 0, 0, 7961, 7959, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7964, 1, 0, 0, 0, 7963, 7961, 1, 0, 0, 0, 7964, 7965, 5, 7, 0, 0, 7965, 861, 1, 0, 0, 0, 7966, 7967, 3, 864, 432, 0, 7967, 7968, 3, 850, 425, 0, 7968, 7969, 3, 824, 412, 0, 7969, 863, 1, 0, 0, 0, 7970, 7973, 3, 310, 155, 0, 7971, 7973, 5, 28, 0, 0, 7972, 7970, 1, 0, 0, 0, 7972, 7971, 1, 0, 0, 0, 7973, 7980, 1, 0, 0, 0, 7974, 7975, 5, 4, 0, 0, 7975, 7976, 3, 670, 335, 0, 7976, 7977, 5, 5, 0, 0, 7977, 7979, 1, 0, 0, 0, 7978, 7974, 1, 0, 0, 0, 7979, 7982, 1, 0, 0, 0, 7980, 7978, 1, 0, 0, 0, 7980, 7981, 1, 0, 0, 0, 7981, 865, 1, 0, 0, 0, 7982, 7980, 1, 0, 0, 0, 7983, 7984, 5, 220, 0, 0, 7984, 7985, 3, 936, 468, 0, 7985, 7989, 5, 93, 0, 0, 7986, 7988, 3, 852, 426, 0, 7987, 7986, 1, 0, 0, 0, 7988, 7991, 1, 0, 0, 0, 7989, 7987, 1, 0, 0, 0, 7989, 7990, 1, 0, 0, 0, 7990, 8003, 1, 0, 0, 0, 7991, 7989, 1, 0, 0, 0, 7992, 7993, 5, 502, 0, 0, 7993, 7994, 3, 670, 335, 0, 7994, 7998, 5, 93, 0, 0, 7995, 7997, 3, 852, 426, 0, 7996, 7995, 1, 0, 0, 0, 7997, 8000, 1, 0, 0, 0, 7998, 7996, 1, 0, 0, 0, 7998, 7999, 1, 0, 0, 0, 7999, 8002, 1, 0, 0, 0, 8000, 7998, 1, 0, 0, 0, 8001, 7992, 1, 0, 0, 0, 8002, 8005, 1, 0, 0, 0, 8003, 8001, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 8007, 1, 0, 0, 0, 8005, 8003, 1, 0, 0, 0, 8006, 8008, 3, 868, 434, 0, 8007, 8006, 1, 0, 0, 0, 8007, 8008, 1, 0, 0, 0, 8008, 8009, 1, 0, 0, 0, 8009, 8010, 5, 454, 0, 0, 8010, 8011, 5, 220, 0, 0, 8011, 8012, 5, 7, 0, 0, 8012, 867, 1, 0, 0, 0, 8013, 8017, 5, 58, 0, 0, 8014, 8016, 3, 852, 426, 0, 8015, 8014, 1, 0, 0, 0, 8016, 8019, 1, 0, 0, 0, 8017, 8015, 1, 0, 0, 0, 8017, 8018, 1, 0, 0, 0, 8018, 869, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8020, 8022, 5, 40, 0, 0, 8021, 8023, 3, 936, 468, 0, 8022, 8021, 1, 0, 0, 0, 8022, 8023, 1, 0, 0, 0, 8023, 8033, 1, 0, 0, 0, 8024, 8025, 5, 102, 0, 0, 8025, 8026, 3, 728, 364, 0, 8026, 8030, 5, 93, 0, 0, 8027, 8029, 3, 852, 426, 0, 8028, 8027, 1, 0, 0, 0, 8029, 8032, 1, 0, 0, 0, 8030, 8028, 1, 0, 0, 0, 8030, 8031, 1, 0, 0, 0, 8031, 8034, 1, 0, 0, 0, 8032, 8030, 1, 0, 0, 0, 8033, 8024, 1, 0, 0, 0, 8034, 8035, 1, 0, 0, 0, 8035, 8033, 1, 0, 0, 0, 8035, 8036, 1, 0, 0, 0, 8036, 8038, 1, 0, 0, 0, 8037, 8039, 3, 868, 434, 0, 8038, 8037, 1, 0, 0, 0, 8038, 8039, 1, 0, 0, 0, 8039, 8040, 1, 0, 0, 0, 8040, 8041, 5, 454, 0, 0, 8041, 8042, 5, 40, 0, 0, 8042, 8043, 5, 7, 0, 0, 8043, 871, 1, 0, 0, 0, 8044, 8046, 3, 844, 422, 0, 8045, 8044, 1, 0, 0, 0, 8045, 8046, 1, 0, 0, 0, 8046, 8051, 1, 0, 0, 0, 8047, 8048, 5, 503, 0, 0, 8048, 8052, 3, 670, 335, 0, 8049, 8050, 5, 62, 0, 0, 8050, 8052, 3, 874, 437, 0, 8051, 8047, 1, 0, 0, 0, 8051, 8049, 1, 0, 0, 0, 8051, 8052, 1, 0, 0, 0, 8052, 8053, 1, 0, 0, 0, 8053, 8054, 3, 888, 444, 0, 8054, 873, 1, 0, 0, 0, 8055, 8056, 3, 308, 154, 0, 8056, 8079, 5, 68, 0, 0, 8057, 8059, 3, 824, 412, 0, 8058, 8060, 3, 528, 264, 0, 8059, 8058, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8080, 1, 0, 0, 0, 8061, 8080, 3, 554, 277, 0, 8062, 8080, 3, 514, 257, 0, 8063, 8064, 5, 202, 0, 0, 8064, 8067, 3, 670, 335, 0, 8065, 8066, 5, 100, 0, 0, 8066, 8068, 3, 728, 364, 0, 8067, 8065, 1, 0, 0, 0, 8067, 8068, 1, 0, 0, 0, 8068, 8080, 1, 0, 0, 0, 8069, 8071, 5, 504, 0, 0, 8070, 8069, 1, 0, 0, 0, 8070, 8071, 1, 0, 0, 0, 8071, 8072, 1, 0, 0, 0, 8072, 8073, 3, 670, 335, 0, 8073, 8074, 5, 24, 0, 0, 8074, 8077, 3, 670, 335, 0, 8075, 8076, 5, 147, 0, 0, 8076, 8078, 3, 670, 335, 0, 8077, 8075, 1, 0, 0, 0, 8077, 8078, 1, 0, 0, 0, 8078, 8080, 1, 0, 0, 0, 8079, 8057, 1, 0, 0, 0, 8079, 8061, 1, 0, 0, 0, 8079, 8062, 1, 0, 0, 0, 8079, 8063, 1, 0, 0, 0, 8079, 8070, 1, 0, 0, 0, 8080, 875, 1, 0, 0, 0, 8081, 8083, 3, 844, 422, 0, 8082, 8081, 1, 0, 0, 0, 8082, 8083, 1, 0, 0, 0, 8083, 8084, 1, 0, 0, 0, 8084, 8085, 5, 505, 0, 0, 8085, 8088, 3, 308, 154, 0, 8086, 8087, 5, 506, 0, 0, 8087, 8089, 5, 574, 0, 0, 8088, 8086, 1, 0, 0, 0, 8088, 8089, 1, 0, 0, 0, 8089, 8090, 1, 0, 0, 0, 8090, 8091, 5, 68, 0, 0, 8091, 8092, 5, 35, 0, 0, 8092, 8093, 3, 670, 335, 0, 8093, 8094, 3, 888, 444, 0, 8094, 877, 1, 0, 0, 0, 8095, 8097, 7, 116, 0, 0, 8096, 8098, 3, 934, 467, 0, 8097, 8096, 1, 0, 0, 0, 8097, 8098, 1, 0, 0, 0, 8098, 8101, 1, 0, 0, 0, 8099, 8100, 5, 102, 0, 0, 8100, 8102, 3, 936, 468, 0, 8101, 8099, 1, 0, 0, 0, 8101, 8102, 1, 0, 0, 0, 8102, 8103, 1, 0, 0, 0, 8103, 8104, 5, 7, 0, 0, 8104, 879, 1, 0, 0, 0, 8105, 8120, 5, 508, 0, 0, 8106, 8107, 5, 268, 0, 0, 8107, 8121, 3, 936, 468, 0, 8108, 8115, 5, 509, 0, 0, 8109, 8110, 5, 202, 0, 0, 8110, 8111, 3, 670, 335, 0, 8111, 8112, 5, 100, 0, 0, 8112, 8113, 3, 728, 364, 0, 8113, 8116, 1, 0, 0, 0, 8114, 8116, 3, 554, 277, 0, 8115, 8109, 1, 0, 0, 0, 8115, 8114, 1, 0, 0, 0, 8116, 8121, 1, 0, 0, 0, 8117, 8119, 3, 936, 468, 0, 8118, 8117, 1, 0, 0, 0, 8118, 8119, 1, 0, 0, 0, 8119, 8121, 1, 0, 0, 0, 8120, 8106, 1, 0, 0, 0, 8120, 8108, 1, 0, 0, 0, 8120, 8118, 1, 0, 0, 0, 8121, 8122, 1, 0, 0, 0, 8122, 8123, 5, 7, 0, 0, 8123, 881, 1, 0, 0, 0, 8124, 8154, 5, 510, 0, 0, 8125, 8127, 7, 117, 0, 0, 8126, 8125, 1, 0, 0, 0, 8126, 8127, 1, 0, 0, 0, 8127, 8140, 1, 0, 0, 0, 8128, 8141, 3, 832, 416, 0, 8129, 8130, 5, 511, 0, 0, 8130, 8141, 3, 814, 407, 0, 8131, 8138, 3, 814, 407, 0, 8132, 8133, 5, 6, 0, 0, 8133, 8135, 3, 670, 335, 0, 8134, 8132, 1, 0, 0, 0, 8135, 8136, 1, 0, 0, 0, 8136, 8134, 1, 0, 0, 0, 8136, 8137, 1, 0, 0, 0, 8137, 8139, 1, 0, 0, 0, 8138, 8134, 1, 0, 0, 0, 8138, 8139, 1, 0, 0, 0, 8139, 8141, 1, 0, 0, 0, 8140, 8128, 1, 0, 0, 0, 8140, 8129, 1, 0, 0, 0, 8140, 8131, 1, 0, 0, 0, 8140, 8141, 1, 0, 0, 0, 8141, 8151, 1, 0, 0, 0, 8142, 8143, 5, 100, 0, 0, 8143, 8148, 3, 884, 442, 0, 8144, 8145, 5, 6, 0, 0, 8145, 8147, 3, 884, 442, 0, 8146, 8144, 1, 0, 0, 0, 8147, 8150, 1, 0, 0, 0, 8148, 8146, 1, 0, 0, 0, 8148, 8149, 1, 0, 0, 0, 8149, 8152, 1, 0, 0, 0, 8150, 8148, 1, 0, 0, 0, 8151, 8142, 1, 0, 0, 0, 8151, 8152, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8155, 5, 7, 0, 0, 8154, 8126, 1, 0, 0, 0, 8154, 8155, 1, 0, 0, 0, 8155, 883, 1, 0, 0, 0, 8156, 8157, 3, 832, 416, 0, 8157, 8158, 5, 10, 0, 0, 8158, 8159, 3, 670, 335, 0, 8159, 885, 1, 0, 0, 0, 8160, 8161, 5, 518, 0, 0, 8161, 8164, 3, 936, 468, 0, 8162, 8163, 5, 6, 0, 0, 8163, 8165, 3, 936, 468, 0, 8164, 8162, 1, 0, 0, 0, 8164, 8165, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8167, 5, 7, 0, 0, 8167, 887, 1, 0, 0, 0, 8168, 8172, 5, 519, 0, 0, 8169, 8171, 3, 852, 426, 0, 8170, 8169, 1, 0, 0, 0, 8171, 8174, 1, 0, 0, 0, 8172, 8170, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8175, 1, 0, 0, 0, 8174, 8172, 1, 0, 0, 0, 8175, 8176, 5, 454, 0, 0, 8176, 8178, 5, 519, 0, 0, 8177, 8179, 3, 934, 467, 0, 8178, 8177, 1, 0, 0, 0, 8178, 8179, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 8181, 5, 7, 0, 0, 8181, 889, 1, 0, 0, 0, 8182, 8184, 3, 4, 2, 0, 8183, 8185, 3, 894, 447, 0, 8184, 8183, 1, 0, 0, 0, 8184, 8185, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8187, 5, 7, 0, 0, 8187, 891, 1, 0, 0, 0, 8188, 8189, 5, 202, 0, 0, 8189, 8205, 3, 670, 335, 0, 8190, 8192, 3, 894, 447, 0, 8191, 8190, 1, 0, 0, 0, 8191, 8192, 1, 0, 0, 0, 8192, 8195, 1, 0, 0, 0, 8193, 8194, 5, 100, 0, 0, 8194, 8196, 3, 728, 364, 0, 8195, 8193, 1, 0, 0, 0, 8195, 8196, 1, 0, 0, 0, 8196, 8206, 1, 0, 0, 0, 8197, 8198, 5, 100, 0, 0, 8198, 8200, 3, 728, 364, 0, 8199, 8197, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8202, 1, 0, 0, 0, 8201, 8203, 3, 894, 447, 0, 8202, 8201, 1, 0, 0, 0, 8202, 8203, 1, 0, 0, 0, 8203, 8206, 1, 0, 0, 0, 8204, 8206, 1, 0, 0, 0, 8205, 8191, 1, 0, 0, 0, 8205, 8199, 1, 0, 0, 0, 8205, 8204, 1, 0, 0, 0, 8206, 8207, 1, 0, 0, 0, 8207, 8208, 5, 7, 0, 0, 8208, 893, 1, 0, 0, 0, 8209, 8211, 5, 71, 0, 0, 8210, 8212, 5, 346, 0, 0, 8211, 8210, 1, 0, 0, 0, 8211, 8212, 1, 0, 0, 0, 8212, 8213, 1, 0, 0, 0, 8213, 8214, 3, 728, 364, 0, 8214, 895, 1, 0, 0, 0, 8215, 8247, 5, 520, 0, 0, 8216, 8221, 3, 928, 464, 0, 8217, 8219, 5, 269, 0, 0, 8218, 8217, 1, 0, 0, 0, 8218, 8219, 1, 0, 0, 0, 8219, 8220, 1, 0, 0, 0, 8220, 8222, 5, 324, 0, 0, 8221, 8218, 1, 0, 0, 0, 8221, 8222, 1, 0, 0, 0, 8222, 8223, 1, 0, 0, 0, 8223, 8231, 5, 62, 0, 0, 8224, 8232, 3, 554, 277, 0, 8225, 8226, 5, 202, 0, 0, 8226, 8229, 3, 936, 468, 0, 8227, 8228, 5, 100, 0, 0, 8228, 8230, 3, 728, 364, 0, 8229, 8227, 1, 0, 0, 0, 8229, 8230, 1, 0, 0, 0, 8230, 8232, 1, 0, 0, 0, 8231, 8224, 1, 0, 0, 0, 8231, 8225, 1, 0, 0, 0, 8232, 8248, 1, 0, 0, 0, 8233, 8245, 3, 824, 412, 0, 8234, 8235, 5, 2, 0, 0, 8235, 8240, 3, 898, 449, 0, 8236, 8237, 5, 6, 0, 0, 8237, 8239, 3, 898, 449, 0, 8238, 8236, 1, 0, 0, 0, 8239, 8242, 1, 0, 0, 0, 8240, 8238, 1, 0, 0, 0, 8240, 8241, 1, 0, 0, 0, 8241, 8243, 1, 0, 0, 0, 8242, 8240, 1, 0, 0, 0, 8243, 8244, 5, 3, 0, 0, 8244, 8246, 1, 0, 0, 0, 8245, 8234, 1, 0, 0, 0, 8245, 8246, 1, 0, 0, 0, 8246, 8248, 1, 0, 0, 0, 8247, 8216, 1, 0, 0, 0, 8247, 8233, 1, 0, 0, 0, 8248, 8249, 1, 0, 0, 0, 8249, 8250, 5, 7, 0, 0, 8250, 897, 1, 0, 0, 0, 8251, 8252, 3, 824, 412, 0, 8252, 8253, 5, 20, 0, 0, 8253, 8255, 1, 0, 0, 0, 8254, 8251, 1, 0, 0, 0, 8254, 8255, 1, 0, 0, 0, 8255, 8256, 1, 0, 0, 0, 8256, 8257, 3, 670, 335, 0, 8257, 899, 1, 0, 0, 0, 8258, 8260, 5, 61, 0, 0, 8259, 8261, 3, 902, 451, 0, 8260, 8259, 1, 0, 0, 0, 8260, 8261, 1, 0, 0, 0, 8261, 8263, 1, 0, 0, 0, 8262, 8264, 3, 326, 163, 0, 8263, 8262, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, 8265, 1, 0, 0, 0, 8265, 8266, 3, 928, 464, 0, 8266, 8267, 5, 71, 0, 0, 8267, 8268, 3, 728, 364, 0, 8268, 8269, 5, 7, 0, 0, 8269, 901, 1, 0, 0, 0, 8270, 8285, 5, 268, 0, 0, 8271, 8285, 5, 293, 0, 0, 8272, 8285, 5, 207, 0, 0, 8273, 8285, 5, 249, 0, 0, 8274, 8276, 7, 51, 0, 0, 8275, 8274, 1, 0, 0, 0, 8275, 8276, 1, 0, 0, 0, 8276, 8277, 1, 0, 0, 0, 8277, 8285, 3, 670, 335, 0, 8278, 8285, 5, 30, 0, 0, 8279, 8282, 7, 118, 0, 0, 8280, 8283, 3, 670, 335, 0, 8281, 8283, 5, 30, 0, 0, 8282, 8280, 1, 0, 0, 0, 8282, 8281, 1, 0, 0, 0, 8282, 8283, 1, 0, 0, 0, 8283, 8285, 1, 0, 0, 0, 8284, 8270, 1, 0, 0, 0, 8284, 8271, 1, 0, 0, 0, 8284, 8272, 1, 0, 0, 0, 8284, 8273, 1, 0, 0, 0, 8284, 8275, 1, 0, 0, 0, 8284, 8278, 1, 0, 0, 0, 8284, 8279, 1, 0, 0, 0, 8285, 903, 1, 0, 0, 0, 8286, 8288, 5, 265, 0, 0, 8287, 8289, 3, 902, 451, 0, 8288, 8287, 1, 0, 0, 0, 8288, 8289, 1, 0, 0, 0, 8289, 8290, 1, 0, 0, 0, 8290, 8291, 3, 928, 464, 0, 8291, 8292, 5, 7, 0, 0, 8292, 905, 1, 0, 0, 0, 8293, 8295, 3, 566, 283, 0, 8294, 8293, 1, 0, 0, 0, 8294, 8295, 1, 0, 0, 0, 8295, 8296, 1, 0, 0, 0, 8296, 8297, 5, 525, 0, 0, 8297, 8299, 5, 71, 0, 0, 8298, 8300, 5, 81, 0, 0, 8299, 8298, 1, 0, 0, 0, 8299, 8300, 1, 0, 0, 0, 8300, 8301, 1, 0, 0, 0, 8301, 8303, 3, 778, 389, 0, 8302, 8304, 5, 9, 0, 0, 8303, 8302, 1, 0, 0, 0, 8303, 8304, 1, 0, 0, 0, 8304, 8309, 1, 0, 0, 0, 8305, 8307, 5, 36, 0, 0, 8306, 8305, 1, 0, 0, 0, 8306, 8307, 1, 0, 0, 0, 8307, 8308, 1, 0, 0, 0, 8308, 8310, 3, 824, 412, 0, 8309, 8306, 1, 0, 0, 0, 8309, 8310, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8312, 5, 100, 0, 0, 8312, 8313, 3, 908, 454, 0, 8313, 8314, 5, 80, 0, 0, 8314, 8316, 3, 670, 335, 0, 8315, 8317, 3, 910, 455, 0, 8316, 8315, 1, 0, 0, 0, 8317, 8318, 1, 0, 0, 0, 8318, 8316, 1, 0, 0, 0, 8318, 8319, 1, 0, 0, 0, 8319, 8321, 1, 0, 0, 0, 8320, 8322, 3, 540, 270, 0, 8321, 8320, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 907, 1, 0, 0, 0, 8323, 8325, 5, 81, 0, 0, 8324, 8323, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8326, 1, 0, 0, 0, 8326, 8328, 3, 778, 389, 0, 8327, 8329, 5, 9, 0, 0, 8328, 8327, 1, 0, 0, 0, 8328, 8329, 1, 0, 0, 0, 8329, 8335, 1, 0, 0, 0, 8330, 8333, 3, 558, 279, 0, 8331, 8333, 3, 602, 301, 0, 8332, 8330, 1, 0, 0, 0, 8332, 8331, 1, 0, 0, 0, 8333, 8335, 1, 0, 0, 0, 8334, 8324, 1, 0, 0, 0, 8334, 8332, 1, 0, 0, 0, 8335, 8340, 1, 0, 0, 0, 8336, 8338, 5, 36, 0, 0, 8337, 8336, 1, 0, 0, 0, 8337, 8338, 1, 0, 0, 0, 8338, 8339, 1, 0, 0, 0, 8339, 8341, 3, 824, 412, 0, 8340, 8337, 1, 0, 0, 0, 8340, 8341, 1, 0, 0, 0, 8341, 909, 1, 0, 0, 0, 8342, 8343, 5, 102, 0, 0, 8343, 8346, 5, 526, 0, 0, 8344, 8345, 5, 33, 0, 0, 8345, 8347, 3, 670, 335, 0, 8346, 8344, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8348, 1, 0, 0, 0, 8348, 8353, 5, 93, 0, 0, 8349, 8354, 3, 914, 457, 0, 8350, 8354, 5, 182, 0, 0, 8351, 8352, 5, 57, 0, 0, 8352, 8354, 5, 270, 0, 0, 8353, 8349, 1, 0, 0, 0, 8353, 8350, 1, 0, 0, 0, 8353, 8351, 1, 0, 0, 0, 8354, 8369, 1, 0, 0, 0, 8355, 8356, 5, 102, 0, 0, 8356, 8357, 5, 77, 0, 0, 8357, 8360, 5, 526, 0, 0, 8358, 8359, 5, 33, 0, 0, 8359, 8361, 3, 670, 335, 0, 8360, 8358, 1, 0, 0, 0, 8360, 8361, 1, 0, 0, 0, 8361, 8362, 1, 0, 0, 0, 8362, 8366, 5, 93, 0, 0, 8363, 8367, 3, 912, 456, 0, 8364, 8365, 5, 57, 0, 0, 8365, 8367, 5, 270, 0, 0, 8366, 8363, 1, 0, 0, 0, 8366, 8364, 1, 0, 0, 0, 8367, 8369, 1, 0, 0, 0, 8368, 8342, 1, 0, 0, 0, 8368, 8355, 1, 0, 0, 0, 8369, 911, 1, 0, 0, 0, 8370, 8372, 5, 241, 0, 0, 8371, 8373, 3, 138, 69, 0, 8372, 8371, 1, 0, 0, 0, 8372, 8373, 1, 0, 0, 0, 8373, 8377, 1, 0, 0, 0, 8374, 8375, 5, 463, 0, 0, 8375, 8376, 7, 77, 0, 0, 8376, 8378, 5, 450, 0, 0, 8377, 8374, 1, 0, 0, 0, 8377, 8378, 1, 0, 0, 0, 8378, 8379, 1, 0, 0, 0, 8379, 8380, 3, 916, 458, 0, 8380, 913, 1, 0, 0, 0, 8381, 8382, 5, 369, 0, 0, 8382, 8400, 5, 333, 0, 0, 8383, 8384, 3, 804, 402, 0, 8384, 8385, 5, 10, 0, 0, 8385, 8386, 3, 918, 459, 0, 8386, 8401, 1, 0, 0, 0, 8387, 8388, 3, 138, 69, 0, 8388, 8389, 5, 10, 0, 0, 8389, 8390, 5, 2, 0, 0, 8390, 8395, 3, 918, 459, 0, 8391, 8392, 5, 6, 0, 0, 8392, 8394, 3, 918, 459, 0, 8393, 8391, 1, 0, 0, 0, 8394, 8397, 1, 0, 0, 0, 8395, 8393, 1, 0, 0, 0, 8395, 8396, 1, 0, 0, 0, 8396, 8398, 1, 0, 0, 0, 8397, 8395, 1, 0, 0, 0, 8398, 8399, 5, 3, 0, 0, 8399, 8401, 1, 0, 0, 0, 8400, 8383, 1, 0, 0, 0, 8400, 8387, 1, 0, 0, 0, 8401, 8402, 1, 0, 0, 0, 8402, 8400, 1, 0, 0, 0, 8402, 8403, 1, 0, 0, 0, 8403, 915, 1, 0, 0, 0, 8404, 8405, 5, 422, 0, 0, 8405, 8406, 5, 2, 0, 0, 8406, 8411, 3, 918, 459, 0, 8407, 8408, 5, 6, 0, 0, 8408, 8410, 3, 918, 459, 0, 8409, 8407, 1, 0, 0, 0, 8410, 8413, 1, 0, 0, 0, 8411, 8409, 1, 0, 0, 0, 8411, 8412, 1, 0, 0, 0, 8412, 8414, 1, 0, 0, 0, 8413, 8411, 1, 0, 0, 0, 8414, 8415, 5, 3, 0, 0, 8415, 8419, 1, 0, 0, 0, 8416, 8417, 5, 53, 0, 0, 8417, 8419, 5, 422, 0, 0, 8418, 8404, 1, 0, 0, 0, 8418, 8416, 1, 0, 0, 0, 8419, 917, 1, 0, 0, 0, 8420, 8423, 3, 582, 291, 0, 8421, 8423, 5, 53, 0, 0, 8422, 8420, 1, 0, 0, 0, 8422, 8421, 1, 0, 0, 0, 8423, 919, 1, 0, 0, 0, 8424, 8425, 5, 157, 0, 0, 8425, 8426, 3, 928, 464, 0, 8426, 8427, 5, 7, 0, 0, 8427, 921, 1, 0, 0, 0, 8428, 8429, 5, 78, 0, 0, 8429, 8430, 5, 7, 0, 0, 8430, 923, 1, 0, 0, 0, 8431, 8437, 7, 68, 0, 0, 8432, 8434, 5, 33, 0, 0, 8433, 8435, 5, 269, 0, 0, 8434, 8433, 1, 0, 0, 0, 8434, 8435, 1, 0, 0, 0, 8435, 8436, 1, 0, 0, 0, 8436, 8438, 5, 153, 0, 0, 8437, 8432, 1, 0, 0, 0, 8437, 8438, 1, 0, 0, 0, 8438, 8439, 1, 0, 0, 0, 8439, 8440, 5, 7, 0, 0, 8440, 925, 1, 0, 0, 0, 8441, 8442, 5, 333, 0, 0, 8442, 8443, 3, 310, 155, 0, 8443, 8444, 5, 94, 0, 0, 8444, 8445, 5, 53, 0, 0, 8445, 8446, 5, 7, 0, 0, 8446, 8454, 1, 0, 0, 0, 8447, 8450, 5, 313, 0, 0, 8448, 8451, 3, 310, 155, 0, 8449, 8451, 5, 30, 0, 0, 8450, 8448, 1, 0, 0, 0, 8450, 8449, 1, 0, 0, 0, 8451, 8452, 1, 0, 0, 0, 8452, 8454, 5, 7, 0, 0, 8453, 8441, 1, 0, 0, 0, 8453, 8447, 1, 0, 0, 0, 8454, 927, 1, 0, 0, 0, 8455, 8458, 3, 824, 412, 0, 8456, 8458, 5, 28, 0, 0, 8457, 8455, 1, 0, 0, 0, 8457, 8456, 1, 0, 0, 0, 8458, 929, 1, 0, 0, 0, 8459, 8476, 5, 517, 0, 0, 8460, 8461, 5, 102, 0, 0, 8461, 8466, 3, 932, 466, 0, 8462, 8463, 5, 82, 0, 0, 8463, 8465, 3, 932, 466, 0, 8464, 8462, 1, 0, 0, 0, 8465, 8468, 1, 0, 0, 0, 8466, 8464, 1, 0, 0, 0, 8466, 8467, 1, 0, 0, 0, 8467, 8469, 1, 0, 0, 0, 8468, 8466, 1, 0, 0, 0, 8469, 8473, 5, 93, 0, 0, 8470, 8472, 3, 852, 426, 0, 8471, 8470, 1, 0, 0, 0, 8472, 8475, 1, 0, 0, 0, 8473, 8471, 1, 0, 0, 0, 8473, 8474, 1, 0, 0, 0, 8474, 8477, 1, 0, 0, 0, 8475, 8473, 1, 0, 0, 0, 8476, 8460, 1, 0, 0, 0, 8477, 8478, 1, 0, 0, 0, 8478, 8476, 1, 0, 0, 0, 8478, 8479, 1, 0, 0, 0, 8479, 931, 1, 0, 0, 0, 8480, 8484, 3, 934, 467, 0, 8481, 8482, 5, 511, 0, 0, 8482, 8484, 3, 814, 407, 0, 8483, 8480, 1, 0, 0, 0, 8483, 8481, 1, 0, 0, 0, 8484, 933, 1, 0, 0, 0, 8485, 8488, 3, 824, 412, 0, 8486, 8488, 3, 834, 417, 0, 8487, 8485, 1, 0, 0, 0, 8487, 8486, 1, 0, 0, 0, 8488, 935, 1, 0, 0, 0, 8489, 8491, 3, 758, 379, 0, 8490, 8489, 1, 0, 0, 0, 8490, 8491, 1, 0, 0, 0, 8491, 8493, 1, 0, 0, 0, 8492, 8494, 3, 574, 287, 0, 8493, 8492, 1, 0, 0, 0, 8493, 8494, 1, 0, 0, 0, 8494, 8496, 1, 0, 0, 0, 8495, 8497, 3, 604, 302, 0, 8496, 8495, 1, 0, 0, 0, 8496, 8497, 1, 0, 0, 0, 8497, 8499, 1, 0, 0, 0, 8498, 8500, 3, 634, 317, 0, 8499, 8498, 1, 0, 0, 0, 8499, 8500, 1, 0, 0, 0, 8500, 8502, 1, 0, 0, 0, 8501, 8503, 3, 594, 297, 0, 8502, 8501, 1, 0, 0, 0, 8502, 8503, 1, 0, 0, 0, 8503, 8505, 1, 0, 0, 0, 8504, 8506, 3, 700, 350, 0, 8505, 8504, 1, 0, 0, 0, 8505, 8506, 1, 0, 0, 0, 8506, 8508, 1, 0, 0, 0, 8507, 8509, 3, 698, 349, 0, 8508, 8507, 1, 0, 0, 0, 8508, 8509, 1, 0, 0, 0, 8509, 937, 1, 0, 0, 0, 1193, 941, 948, 1068, 1070, 1079, 1084, 1090, 1125, 1135, 1141, 1146, 1153, 1158, 1165, 1176, 1184, 1188, 1200, 1206, 1212, 1216, 1221, 1225, 1238, 1248, 1250, 1256, 1261, 1274, 1277, 1282, 1287, 1298, 1302, 1314, 1318, 1321, 1325, 1337, 1355, 1362, 1370, 1375, 1382, 1390, 1396, 1404, 1412, 1416, 1430, 1435, 1440, 1452, 1458, 1470, 1475, 1485, 1491, 1496, 1505, 1512, 1517, 1522, 1532, 1537, 1542, 1549, 1553, 1567, 1573, 1579, 1584, 1591, 1600, 1609, 1618, 1627, 1631, 1643, 1651, 1661, 1681, 1686, 1689, 1696, 1699, 1703, 1707, 1710, 1715, 1720, 1724, 1733, 1739, 1743, 1752, 1755, 1761, 1770, 1782, 1786, 1790, 1795, 1798, 1804, 1806, 1808, 1812, 1818, 1822, 1827, 1832, 1836, 1839, 1846, 1859, 1872, 1897, 1907, 1914, 1919, 1923, 1930, 1935, 1938, 1940, 1945, 1949, 1953, 1957, 1962, 1965, 1969, 1972, 1976, 1984, 1989, 1992, 1996, 2002, 2011, 2015, 2025, 2030, 2034, 2038, 2040, 2042, 2049, 2054, 2058, 2063, 2075, 2080, 2084, 2088, 2093, 2097, 2100, 2103, 2106, 2109, 2112, 2117, 2120, 2123, 2126, 2129, 2132, 2138, 2142, 2145, 2148, 2151, 2154, 2156, 2163, 2171, 2181, 2186, 2196, 2199, 2204, 2209, 2214, 2217, 2222, 2231, 2233, 2237, 2240, 2244, 2249, 2254, 2258, 2261, 2265, 2268, 2273, 2276, 2281, 2284, 2288, 2291, 2294, 2299, 2302, 2310, 2322, 2326, 2333, 2338, 2341, 2344, 2347, 2352, 2363, 2369, 2373, 2376, 2379, 2384, 2391, 2394, 2398, 2406, 2411, 2414, 2417, 2424, 2429, 2438, 2441, 2444, 2449, 2452, 2464, 2474, 2491, 2495, 2499, 2501, 2518, 2520, 2536, 2547, 2550, 2553, 2562, 2571, 2587, 2590, 2593, 2601, 2605, 2612, 2621, 2625, 2631, 2635, 2638, 2641, 2644, 2647, 2653, 2657, 2662, 2666, 2669, 2672, 2675, 2680, 2686, 2690, 2694, 2698, 2704, 2706, 2711, 2717, 2723, 2727, 2742, 2747, 2750, 2752, 2755, 2759, 2763, 2766, 2769, 2777, 2783, 2785, 2791, 2796, 2801, 2805, 2812, 2814, 2825, 2864, 2874, 2876, 2879, 2883, 2887, 2897, 2899, 2905, 2907, 2916, 2928, 2942, 2947, 2950, 2957, 2962, 2970, 2972, 2978, 2983, 2987, 2992, 2998, 3005, 3011, 3013, 3022, 3028, 3036, 3042, 3047, 3052, 3060, 3075, 3077, 3081, 3085, 3088, 3091, 3100, 3103, 3106, 3112, 3118, 3122, 3134, 3140, 3143, 3148, 3152, 3159, 3169, 3171, 3195, 3207, 3212, 3214, 3218, 3221, 3224, 3234, 3237, 3247, 3252, 3257, 3260, 3263, 3271, 3277, 3284, 3292, 3295, 3306, 3310, 3316, 3323, 3326, 3335, 3349, 3352, 3366, 3377, 3380, 3392, 3397, 3410, 3415, 3428, 3437, 3440, 3443, 3450, 3453, 3465, 3471, 3473, 3481, 3489, 3497, 3509, 3514, 3525, 3536, 3544, 3552, 3559, 3566, 3568, 3571, 3576, 3581, 3600, 3609, 3612, 3639, 3648, 3651, 3655, 3659, 3663, 3670, 3674, 3678, 3682, 3686, 3691, 3695, 3700, 3706, 3711, 3718, 3722, 3728, 3732, 3737, 3745, 3751, 3756, 3763, 3768, 3772, 3777, 3783, 3790, 3795, 3802, 3807, 3814, 3818, 3826, 3830, 3832, 3835, 3840, 3850, 3865, 3868, 3876, 3883, 3888, 3894, 3898, 3905, 3910, 3913, 3916, 3920, 3929, 3947, 3950, 3982, 3987, 3993, 4013, 4018, 4024, 4027, 4031, 4035, 4041, 4044, 4048, 4052, 4057, 4060, 4063, 4066, 4079, 4085, 4093, 4100, 4105, 4108, 4115, 4118, 4126, 4129, 4134, 4141, 4144, 4164, 4176, 4179, 4185, 4190, 4199, 4207, 4212, 4218, 4225, 4233, 4236, 4247, 4249, 4263, 4269, 4277, 4279, 4285, 4289, 4292, 4295, 4300, 4305, 4309, 4312, 4315, 4318, 4321, 4329, 4340, 4343, 4346, 4351, 4354, 4358, 4362, 4368, 4376, 4379, 4392, 4397, 4399, 4404, 4411, 4418, 4427, 4435, 4443, 4450, 4458, 4465, 4473, 4477, 4481, 4483, 4489, 4494, 4498, 4505, 4510, 4515, 4520, 4522, 4532, 4542, 4558, 4576, 4588, 4595, 4610, 4615, 4618, 4623, 4628, 4633, 4636, 4639, 4644, 4651, 4655, 4660, 4667, 4671, 4677, 4686, 4695, 4707, 4709, 4722, 4728, 4732, 4734, 4741, 4754, 4761, 4763, 4779, 4783, 4787, 4792, 4797, 4802, 4807, 4810, 4822, 4875, 4884, 4888, 4897, 4901, 4910, 4914, 4919, 4922, 4926, 4931, 4933, 4942, 4947, 4958, 4962, 4976, 4984, 5022, 5024, 5043, 5046, 5073, 5077, 5081, 5085, 5089, 5092, 5107, 5114, 5128, 5141, 5166, 5185, 5200, 5216, 5223, 5234, 5237, 5256, 5259, 5272, 5276, 5296, 5308, 5312, 5334, 5338, 5348, 5352, 5358, 5362, 5366, 5370, 5377, 5382, 5393, 5397, 5400, 5405, 5411, 5422, 5426, 5429, 5433, 5437, 5440, 5450, 5453, 5457, 5462, 5468, 5471, 5476, 5479, 5486, 5488, 5494, 5498, 5507, 5512, 5514, 5524, 5527, 5532, 5540, 5543, 5548, 5550, 5552, 5558, 5575, 5581, 5594, 5600, 5604, 5609, 5639, 5654, 5659, 5663, 5676, 5680, 5682, 5691, 5697, 5699, 5703, 5706, 5709, 5712, 5715, 5717, 5720, 5724, 5732, 5737, 5740, 5746, 5750, 5754, 5759, 5761, 5765, 5769, 5776, 5782, 5786, 5788, 5790, 5803, 5811, 5819, 5830, 5840, 5845, 5849, 5853, 5860, 5863, 5865, 5873, 5877, 5880, 5887, 5894, 5899, 5906, 5909, 5911, 5914, 5920, 5925, 5929, 5936, 5946, 5953, 5956, 5959, 5963, 5974, 5977, 5980, 5983, 5986, 5993, 5996, 5999, 6006, 6018, 6025, 6027, 6032, 6037, 6039, 6045, 6052, 6057, 6062, 6066, 6070, 6074, 6076, 6080, 6084, 6087, 6090, 6092, 6102, 6104, 6109, 6113, 6118, 6122, 6129, 6134, 6138, 6141, 6147, 6150, 6169, 6176, 6180, 6183, 6187, 6191, 6194, 6197, 6202, 6211, 6218, 6222, 6226, 6230, 6233, 6235, 6240, 6244, 6249, 6255, 6262, 6267, 6272, 6281, 6288, 6296, 6307, 6312, 6316, 6319, 6323, 6328, 6332, 6337, 6345, 6356, 6361, 6365, 6368, 6371, 6373, 6376, 6379, 6382, 6392, 6397, 6403, 6407, 6409, 6416, 6421, 6427, 6429, 6434, 6438, 6442, 6444, 6447, 6454, 6459, 6462, 6468, 6472, 6478, 6487, 6493, 6495, 6500, 6503, 6512, 6519, 6521, 6528, 6533, 6536, 6546, 6557, 6562, 6566, 6574, 6584, 6591, 6597, 6608, 6614, 6624, 6633, 6637, 6640, 6642, 6644, 6648, 6656, 6659, 6664, 6669, 6676, 6678, 6684, 6688, 6691, 6696, 6699, 6701, 6707, 6716, 6722, 6725, 6733, 6736, 6740, 6746, 6748, 6751, 6755, 6760, 6767, 6774, 6776, 6782, 6784, 6789, 6791, 6795, 6804, 6808, 6816, 6818, 6832, 6835, 6843, 6852, 6858, 6863, 6871, 6873, 6878, 6882, 6887, 6892, 6898, 6914, 6916, 6925, 6940, 6945, 6948, 6954, 6959, 6972, 6977, 6981, 6988, 7007, 7019, 7024, 7032, 7034, 7036, 7045, 7048, 7053, 7058, 7061, 7072, 7080, 7085, 7087, 7090, 7094, 7105, 7126, 7134, 7147, 7157, 7163, 7169, 7172, 7175, 7201, 7203, 7224, 7234, 7247, 7252, 7256, 7258, 7270, 7277, 7283, 7289, 7293, 7304, 7317, 7321, 7326, 7329, 7332, 7341, 7352, 7354, 7358, 7363, 7372, 7377, 7385, 7395, 7403, 7407, 7410, 7417, 7429, 7433, 7440, 7448, 7450, 7459, 7462, 7474, 7483, 7490, 7499, 7509, 7514, 7518, 7520, 7523, 7528, 7533, 7541, 7547, 7550, 7554, 7556, 7563, 7573, 7581, 7589, 7597, 7614, 7621, 7629, 7646, 7652, 7658, 7669, 7675, 7680, 7688, 7693, 7696, 7705, 7712, 7717, 7721, 7726, 7732, 7737, 7745, 7800, 7807, 7813, 7815, 7817, 7819, 7825, 7829, 7833, 7844, 7847, 7851, 7855, 7859, 7862, 7865, 7868, 7877, 7882, 7886, 7919, 7929, 7933, 7939, 7944, 7953, 7961, 7972, 7980, 7989, 7998, 8003, 8007, 8017, 8022, 8030, 8035, 8038, 8045, 8051, 8059, 8067, 8070, 8077, 8079, 8082, 8088, 8097, 8101, 8115, 8118, 8120, 8126, 8136, 8138, 8140, 8148, 8151, 8154, 8164, 8172, 8178, 8184, 8191, 8195, 8199, 8202, 8205, 8211, 8218, 8221, 8229, 8231, 8240, 8245, 8247, 8254, 8260, 8263, 8275, 8282, 8284, 8288, 8294, 8299, 8303, 8306, 8309, 8318, 8321, 8324, 8328, 8332, 8334, 8337, 8340, 8346, 8353, 8360, 8366, 8368, 8372, 8377, 8395, 8400, 8402, 8411, 8418, 8422, 8434, 8437, 8450, 8453, 8457, 8466, 8473, 8478, 8483, 8487, 8490, 8493, 8496, 8499, 8502, 8505, 8508] \ No newline at end of file +[4, 1, 592, 8532, 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, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 1, 0, 5, 0, 942, 8, 0, 10, 0, 12, 0, 945, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 951, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1071, 8, 2, 3, 2, 1073, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1082, 8, 4, 1, 4, 5, 4, 1085, 8, 4, 10, 4, 12, 4, 1088, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1093, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1128, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1138, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1144, 8, 7, 1, 7, 5, 7, 1147, 8, 7, 10, 7, 12, 7, 1150, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1156, 8, 8, 1, 8, 5, 8, 1159, 8, 8, 10, 8, 12, 8, 1162, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1168, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1179, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1185, 8, 11, 10, 11, 12, 11, 1188, 9, 11, 1, 11, 3, 11, 1191, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1203, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1209, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1215, 8, 12, 1, 12, 1, 12, 3, 12, 1219, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1224, 8, 12, 1, 12, 1, 12, 3, 12, 1228, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1241, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1251, 8, 12, 3, 12, 1253, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1259, 8, 13, 1, 13, 5, 13, 1262, 8, 13, 10, 13, 12, 13, 1265, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1277, 8, 15, 1, 15, 3, 15, 1280, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1285, 8, 15, 1, 15, 5, 15, 1288, 8, 15, 10, 15, 12, 15, 1291, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1301, 8, 17, 1, 18, 1, 18, 3, 18, 1305, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1317, 8, 19, 1, 20, 1, 20, 3, 20, 1321, 8, 20, 1, 20, 3, 20, 1324, 8, 20, 1, 20, 1, 20, 3, 20, 1328, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1340, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1358, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1363, 8, 22, 10, 22, 12, 22, 1366, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1371, 8, 23, 10, 23, 12, 23, 1374, 9, 23, 1, 24, 1, 24, 3, 24, 1378, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1385, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1393, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1399, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1407, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1415, 8, 28, 1, 29, 1, 29, 3, 29, 1419, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1433, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1438, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1443, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1455, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1461, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1473, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1478, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1488, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1494, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1499, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1508, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1515, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1520, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1525, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1535, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1540, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1545, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1552, 8, 38, 1, 38, 1, 38, 3, 38, 1556, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1570, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1576, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1582, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1587, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1592, 8, 39, 10, 39, 12, 39, 1595, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1603, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1612, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1619, 8, 42, 10, 42, 12, 42, 1622, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1630, 8, 42, 1, 42, 1, 42, 3, 42, 1634, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1646, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1654, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1664, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1684, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1689, 8, 42, 1, 42, 3, 42, 1692, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1699, 8, 42, 1, 42, 3, 42, 1702, 8, 42, 1, 42, 1, 42, 3, 42, 1706, 8, 42, 1, 42, 1, 42, 3, 42, 1710, 8, 42, 1, 42, 3, 42, 1713, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1718, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1723, 8, 42, 1, 42, 1, 42, 3, 42, 1727, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1736, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1742, 8, 42, 1, 42, 1, 42, 3, 42, 1746, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1755, 8, 42, 1, 42, 3, 42, 1758, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1764, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1773, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1783, 8, 42, 11, 42, 12, 42, 1784, 1, 42, 1, 42, 3, 42, 1789, 8, 42, 1, 42, 1, 42, 3, 42, 1793, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1798, 8, 42, 1, 42, 3, 42, 1801, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1807, 8, 42, 4, 42, 1809, 8, 42, 11, 42, 12, 42, 1810, 1, 42, 1, 42, 3, 42, 1815, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1821, 8, 42, 1, 42, 1, 42, 3, 42, 1825, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1830, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1835, 8, 42, 1, 42, 1, 42, 3, 42, 1839, 8, 42, 1, 42, 3, 42, 1842, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1849, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1860, 8, 46, 10, 46, 12, 46, 1863, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1875, 8, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1900, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1908, 8, 50, 10, 50, 12, 50, 1911, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1917, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1922, 8, 51, 1, 51, 1, 51, 3, 51, 1926, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1933, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1938, 8, 51, 1, 51, 3, 51, 1941, 8, 51, 3, 51, 1943, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1948, 8, 52, 1, 53, 1, 53, 3, 53, 1952, 8, 53, 1, 53, 1, 53, 3, 53, 1956, 8, 53, 1, 53, 1, 53, 3, 53, 1960, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1965, 8, 53, 1, 53, 3, 53, 1968, 8, 53, 1, 53, 1, 53, 3, 53, 1972, 8, 53, 1, 53, 3, 53, 1975, 8, 53, 1, 53, 1, 53, 3, 53, 1979, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1987, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1992, 8, 53, 1, 53, 3, 53, 1995, 8, 53, 1, 53, 1, 53, 3, 53, 1999, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2005, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2014, 8, 54, 1, 54, 1, 54, 3, 54, 2018, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2028, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2033, 8, 54, 5, 54, 2035, 8, 54, 10, 54, 12, 54, 2038, 9, 54, 1, 54, 3, 54, 2041, 8, 54, 5, 54, 2043, 8, 54, 10, 54, 12, 54, 2046, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2052, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2057, 8, 55, 5, 55, 2059, 8, 55, 10, 55, 12, 55, 2062, 9, 55, 1, 55, 1, 55, 3, 55, 2066, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2076, 8, 56, 10, 56, 12, 56, 2079, 9, 56, 1, 56, 1, 56, 3, 56, 2083, 8, 56, 1, 57, 1, 57, 3, 57, 2087, 8, 57, 1, 57, 1, 57, 3, 57, 2091, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 1, 57, 3, 57, 2100, 8, 57, 1, 57, 3, 57, 2103, 8, 57, 1, 57, 3, 57, 2106, 8, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 3, 57, 2112, 8, 57, 1, 57, 3, 57, 2115, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2120, 8, 57, 1, 57, 3, 57, 2123, 8, 57, 1, 57, 3, 57, 2126, 8, 57, 1, 57, 3, 57, 2129, 8, 57, 1, 57, 3, 57, 2132, 8, 57, 1, 57, 3, 57, 2135, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2141, 8, 57, 1, 57, 1, 57, 3, 57, 2145, 8, 57, 1, 57, 3, 57, 2148, 8, 57, 1, 57, 3, 57, 2151, 8, 57, 1, 57, 3, 57, 2154, 8, 57, 1, 57, 3, 57, 2157, 8, 57, 3, 57, 2159, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2166, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2172, 8, 59, 10, 59, 12, 59, 2175, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2182, 8, 60, 10, 60, 12, 60, 2185, 9, 60, 1, 61, 1, 61, 3, 61, 2189, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2197, 8, 61, 10, 61, 12, 61, 2200, 9, 61, 3, 61, 2202, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2207, 8, 62, 1, 62, 5, 62, 2210, 8, 62, 10, 62, 12, 62, 2213, 9, 62, 1, 62, 1, 62, 3, 62, 2217, 8, 62, 1, 62, 3, 62, 2220, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2225, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2234, 8, 63, 3, 63, 2236, 8, 63, 1, 63, 1, 63, 3, 63, 2240, 8, 63, 1, 63, 3, 63, 2243, 8, 63, 1, 63, 1, 63, 3, 63, 2247, 8, 63, 1, 63, 5, 63, 2250, 8, 63, 10, 63, 12, 63, 2253, 9, 63, 1, 64, 1, 64, 3, 64, 2257, 8, 64, 1, 64, 1, 64, 3, 64, 2261, 8, 64, 1, 64, 3, 64, 2264, 8, 64, 1, 64, 1, 64, 3, 64, 2268, 8, 64, 1, 65, 3, 65, 2271, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2276, 8, 65, 1, 65, 3, 65, 2279, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2284, 8, 65, 1, 65, 3, 65, 2287, 8, 65, 1, 65, 1, 65, 3, 65, 2291, 8, 65, 1, 65, 3, 65, 2294, 8, 65, 1, 65, 3, 65, 2297, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2302, 8, 65, 1, 65, 3, 65, 2305, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2313, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2323, 8, 65, 11, 65, 12, 65, 2324, 1, 65, 1, 65, 3, 65, 2329, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2336, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2341, 8, 65, 1, 65, 3, 65, 2344, 8, 65, 1, 65, 3, 65, 2347, 8, 65, 1, 65, 3, 65, 2350, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2355, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2364, 8, 68, 10, 68, 12, 68, 2367, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2372, 8, 68, 1, 68, 1, 68, 3, 68, 2376, 8, 68, 1, 68, 3, 68, 2379, 8, 68, 1, 68, 3, 68, 2382, 8, 68, 1, 68, 5, 68, 2385, 8, 68, 10, 68, 12, 68, 2388, 9, 68, 1, 68, 1, 68, 5, 68, 2392, 8, 68, 10, 68, 12, 68, 2395, 9, 68, 3, 68, 2397, 8, 68, 1, 68, 1, 68, 3, 68, 2401, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2407, 8, 68, 10, 68, 12, 68, 2410, 9, 68, 1, 68, 1, 68, 3, 68, 2414, 8, 68, 1, 68, 3, 68, 2417, 8, 68, 1, 68, 3, 68, 2420, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2427, 8, 68, 1, 68, 5, 68, 2430, 8, 68, 10, 68, 12, 68, 2433, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2441, 8, 68, 1, 68, 3, 68, 2444, 8, 68, 1, 68, 3, 68, 2447, 8, 68, 1, 68, 5, 68, 2450, 8, 68, 10, 68, 12, 68, 2453, 9, 68, 3, 68, 2455, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2465, 8, 70, 10, 70, 12, 70, 2468, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2475, 8, 71, 10, 71, 12, 71, 2478, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2494, 8, 74, 1, 75, 1, 75, 3, 75, 2498, 8, 75, 1, 75, 1, 75, 3, 75, 2502, 8, 75, 3, 75, 2504, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2521, 8, 78, 3, 78, 2523, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2537, 8, 80, 10, 80, 12, 80, 2540, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2550, 8, 81, 1, 81, 3, 81, 2553, 8, 81, 1, 81, 3, 81, 2556, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2565, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2574, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2590, 8, 88, 1, 88, 3, 88, 2593, 8, 88, 1, 88, 3, 88, 2596, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2602, 8, 88, 10, 88, 12, 88, 2605, 9, 88, 1, 88, 3, 88, 2608, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2615, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2624, 8, 90, 1, 90, 1, 90, 3, 90, 2628, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2634, 8, 90, 1, 91, 1, 91, 3, 91, 2638, 8, 91, 1, 91, 3, 91, 2641, 8, 91, 1, 91, 3, 91, 2644, 8, 91, 1, 91, 3, 91, 2647, 8, 91, 1, 91, 3, 91, 2650, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2656, 8, 92, 1, 93, 1, 93, 3, 93, 2660, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2665, 8, 93, 1, 93, 1, 93, 3, 93, 2669, 8, 93, 1, 93, 3, 93, 2672, 8, 93, 1, 93, 3, 93, 2675, 8, 93, 1, 93, 3, 93, 2678, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2683, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2689, 8, 94, 1, 94, 1, 94, 3, 94, 2693, 8, 94, 1, 95, 1, 95, 3, 95, 2697, 8, 95, 1, 95, 1, 95, 3, 95, 2701, 8, 95, 1, 95, 1, 95, 4, 95, 2705, 8, 95, 11, 95, 12, 95, 2706, 3, 95, 2709, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2714, 8, 96, 1, 96, 1, 96, 4, 96, 2718, 8, 96, 11, 96, 12, 96, 2719, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2726, 8, 97, 1, 97, 1, 97, 3, 97, 2730, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2745, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2750, 8, 97, 1, 97, 3, 97, 2753, 8, 97, 3, 97, 2755, 8, 97, 1, 98, 3, 98, 2758, 8, 98, 1, 98, 1, 98, 3, 98, 2762, 8, 98, 1, 99, 1, 99, 3, 99, 2766, 8, 99, 1, 99, 3, 99, 2769, 8, 99, 1, 99, 3, 99, 2772, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2780, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2786, 8, 99, 3, 99, 2788, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2794, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2799, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2804, 8, 101, 1, 101, 1, 101, 3, 101, 2808, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2815, 8, 101, 10, 101, 12, 101, 2818, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2826, 8, 102, 10, 102, 12, 102, 2829, 9, 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, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2867, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2875, 8, 104, 11, 104, 12, 104, 2876, 3, 104, 2879, 8, 104, 1, 104, 3, 104, 2882, 8, 104, 1, 105, 1, 105, 3, 105, 2886, 8, 105, 1, 105, 1, 105, 3, 105, 2890, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2898, 8, 106, 11, 106, 12, 106, 2899, 3, 106, 2902, 8, 106, 1, 106, 1, 106, 4, 106, 2906, 8, 106, 11, 106, 12, 106, 2907, 3, 106, 2910, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2917, 8, 107, 10, 107, 12, 107, 2920, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2929, 8, 108, 10, 108, 12, 108, 2932, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2945, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2950, 8, 111, 1, 111, 3, 111, 2953, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2960, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2965, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2973, 8, 113, 3, 113, 2975, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2981, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2986, 8, 114, 1, 114, 1, 114, 3, 114, 2990, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2995, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3001, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3008, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3014, 8, 114, 3, 114, 3016, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3025, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3031, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3039, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3045, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3050, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3055, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3063, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3078, 8, 118, 3, 118, 3080, 8, 118, 1, 118, 1, 118, 3, 118, 3084, 8, 118, 1, 118, 1, 118, 3, 118, 3088, 8, 118, 1, 118, 3, 118, 3091, 8, 118, 1, 118, 3, 118, 3094, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3103, 8, 119, 1, 119, 3, 119, 3106, 8, 119, 1, 119, 3, 119, 3109, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3115, 8, 120, 1, 120, 1, 120, 5, 120, 3119, 8, 120, 10, 120, 12, 120, 3122, 9, 120, 1, 120, 3, 120, 3125, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3137, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3143, 8, 120, 1, 121, 3, 121, 3146, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3151, 8, 121, 1, 121, 1, 121, 3, 121, 3155, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3162, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3172, 8, 121, 3, 121, 3174, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3198, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3210, 8, 125, 1, 125, 4, 125, 3213, 8, 125, 11, 125, 12, 125, 3214, 3, 125, 3217, 8, 125, 1, 125, 1, 125, 3, 125, 3221, 8, 125, 1, 125, 3, 125, 3224, 8, 125, 1, 125, 3, 125, 3227, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3237, 8, 125, 1, 125, 3, 125, 3240, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3250, 8, 125, 1, 125, 5, 125, 3253, 8, 125, 10, 125, 12, 125, 3256, 9, 125, 1, 125, 1, 125, 3, 125, 3260, 8, 125, 1, 125, 3, 125, 3263, 8, 125, 1, 125, 3, 125, 3266, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3274, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3280, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3285, 8, 127, 10, 127, 12, 127, 3288, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3295, 8, 128, 1, 128, 3, 128, 3298, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3309, 8, 130, 1, 131, 1, 131, 3, 131, 3313, 8, 131, 1, 131, 1, 131, 5, 131, 3317, 8, 131, 10, 131, 12, 131, 3320, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3326, 8, 132, 1, 133, 3, 133, 3329, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3338, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3350, 8, 134, 10, 134, 12, 134, 3353, 9, 134, 3, 134, 3355, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3367, 8, 135, 10, 135, 12, 135, 3370, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3380, 8, 136, 1, 136, 3, 136, 3383, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3393, 8, 137, 10, 137, 12, 137, 3396, 9, 137, 1, 138, 1, 138, 3, 138, 3400, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3411, 8, 138, 10, 138, 12, 138, 3414, 9, 138, 1, 138, 1, 138, 3, 138, 3418, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3431, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3438, 8, 138, 10, 138, 12, 138, 3441, 9, 138, 3, 138, 3443, 8, 138, 1, 138, 3, 138, 3446, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3453, 8, 138, 1, 138, 3, 138, 3456, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3468, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3474, 8, 138, 3, 138, 3476, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3482, 8, 139, 10, 139, 12, 139, 3485, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3492, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3500, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3512, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3517, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3528, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3539, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3547, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3553, 8, 145, 10, 145, 12, 145, 3556, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3562, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3569, 8, 146, 3, 146, 3571, 8, 146, 1, 146, 3, 146, 3574, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3579, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3584, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3601, 8, 148, 10, 148, 12, 148, 3604, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3610, 8, 148, 10, 148, 12, 148, 3613, 9, 148, 3, 148, 3615, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 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, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3642, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3651, 8, 151, 1, 151, 3, 151, 3654, 8, 151, 1, 151, 1, 151, 3, 151, 3658, 8, 151, 1, 151, 1, 151, 3, 151, 3662, 8, 151, 1, 151, 1, 151, 3, 151, 3666, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3671, 8, 151, 10, 151, 12, 151, 3674, 9, 151, 1, 151, 3, 151, 3677, 8, 151, 1, 151, 1, 151, 3, 151, 3681, 8, 151, 1, 151, 1, 151, 3, 151, 3685, 8, 151, 1, 151, 1, 151, 3, 151, 3689, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3694, 8, 151, 1, 151, 1, 151, 3, 151, 3698, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3703, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3709, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3714, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3719, 8, 151, 10, 151, 12, 151, 3722, 9, 151, 1, 151, 3, 151, 3725, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3731, 8, 151, 1, 151, 1, 151, 3, 151, 3735, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3740, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3748, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3754, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3759, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3766, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3771, 8, 151, 1, 151, 1, 151, 3, 151, 3775, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3780, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3786, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3793, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3798, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3805, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3810, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3817, 8, 151, 1, 151, 1, 151, 3, 151, 3821, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3827, 8, 151, 10, 151, 12, 151, 3830, 9, 151, 1, 151, 3, 151, 3833, 8, 151, 3, 151, 3835, 8, 151, 1, 152, 3, 152, 3838, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3843, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3853, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3868, 8, 153, 1, 153, 3, 153, 3871, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3879, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3884, 8, 154, 10, 154, 12, 154, 3887, 9, 154, 1, 155, 1, 155, 3, 155, 3891, 8, 155, 1, 156, 1, 156, 4, 156, 3895, 8, 156, 11, 156, 12, 156, 3896, 1, 157, 1, 157, 3, 157, 3901, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3906, 8, 157, 10, 157, 12, 157, 3909, 9, 157, 1, 157, 1, 157, 3, 157, 3913, 8, 157, 1, 157, 3, 157, 3916, 8, 157, 1, 158, 3, 158, 3919, 8, 158, 1, 158, 1, 158, 3, 158, 3923, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3932, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3950, 8, 159, 1, 159, 3, 159, 3953, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3985, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3990, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3996, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4016, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4021, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4027, 8, 162, 1, 162, 3, 162, 4030, 8, 162, 1, 162, 1, 162, 3, 162, 4034, 8, 162, 1, 162, 1, 162, 3, 162, 4038, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4044, 8, 162, 1, 162, 3, 162, 4047, 8, 162, 1, 162, 1, 162, 3, 162, 4051, 8, 162, 1, 162, 1, 162, 3, 162, 4055, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4060, 8, 162, 1, 162, 3, 162, 4063, 8, 162, 1, 162, 3, 162, 4066, 8, 162, 1, 162, 3, 162, 4069, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4082, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4088, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4096, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4101, 8, 166, 10, 166, 12, 166, 4104, 9, 166, 1, 166, 1, 166, 3, 166, 4108, 8, 166, 1, 166, 3, 166, 4111, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4116, 8, 166, 10, 166, 12, 166, 4119, 9, 166, 3, 166, 4121, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4129, 8, 168, 1, 168, 3, 168, 4132, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4137, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4144, 8, 169, 1, 169, 3, 169, 4147, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4165, 8, 169, 10, 169, 12, 169, 4168, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4179, 8, 169, 1, 170, 3, 170, 4182, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4188, 8, 170, 1, 170, 5, 170, 4191, 8, 170, 10, 170, 12, 170, 4194, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4200, 8, 171, 10, 171, 12, 171, 4203, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4210, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4215, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4221, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4226, 8, 172, 10, 172, 12, 172, 4229, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4236, 8, 172, 1, 172, 3, 172, 4239, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4250, 8, 173, 10, 173, 12, 173, 4253, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4266, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4272, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4280, 8, 174, 3, 174, 4282, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4288, 8, 176, 1, 176, 1, 176, 3, 176, 4292, 8, 176, 1, 176, 3, 176, 4295, 8, 176, 1, 176, 3, 176, 4298, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4303, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4308, 8, 176, 1, 176, 1, 176, 3, 176, 4312, 8, 176, 1, 176, 3, 176, 4315, 8, 176, 1, 176, 3, 176, 4318, 8, 176, 1, 176, 3, 176, 4321, 8, 176, 1, 176, 3, 176, 4324, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4330, 8, 177, 10, 177, 12, 177, 4333, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4343, 8, 178, 1, 178, 3, 178, 4346, 8, 178, 1, 178, 3, 178, 4349, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4354, 8, 178, 1, 178, 3, 178, 4357, 8, 178, 1, 178, 1, 178, 3, 178, 4361, 8, 178, 1, 179, 1, 179, 3, 179, 4365, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4371, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4377, 8, 179, 10, 179, 12, 179, 4380, 9, 179, 3, 179, 4382, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4393, 8, 179, 10, 179, 12, 179, 4396, 9, 179, 1, 179, 1, 179, 3, 179, 4400, 8, 179, 3, 179, 4402, 8, 179, 1, 179, 4, 179, 4405, 8, 179, 11, 179, 12, 179, 4406, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4414, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4421, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4428, 8, 182, 10, 182, 12, 182, 4431, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4436, 8, 183, 10, 183, 12, 183, 4439, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4446, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4451, 8, 185, 10, 185, 12, 185, 4454, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4461, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4466, 8, 187, 10, 187, 12, 187, 4469, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4476, 8, 188, 1, 189, 1, 189, 3, 189, 4480, 8, 189, 1, 189, 1, 189, 3, 189, 4484, 8, 189, 3, 189, 4486, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4492, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4497, 8, 190, 1, 191, 1, 191, 3, 191, 4501, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4508, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4513, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4518, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4523, 8, 193, 3, 193, 4525, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4535, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4545, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4561, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4577, 8, 196, 10, 196, 12, 196, 4580, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4591, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4598, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4613, 8, 199, 1, 199, 4, 199, 4616, 8, 199, 11, 199, 12, 199, 4617, 1, 199, 3, 199, 4621, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4626, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4631, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4636, 8, 200, 1, 200, 3, 200, 4639, 8, 200, 1, 200, 3, 200, 4642, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4647, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4652, 8, 201, 10, 201, 12, 201, 4655, 9, 201, 1, 201, 3, 201, 4658, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4663, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4668, 8, 202, 10, 202, 12, 202, 4671, 9, 202, 1, 202, 3, 202, 4674, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4680, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4689, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4696, 8, 204, 10, 204, 12, 204, 4699, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4710, 8, 206, 11, 206, 12, 206, 4711, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4725, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4731, 8, 207, 1, 207, 1, 207, 3, 207, 4735, 8, 207, 3, 207, 4737, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4744, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4757, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4764, 8, 209, 3, 209, 4766, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4780, 8, 211, 10, 211, 12, 211, 4783, 9, 211, 1, 211, 3, 211, 4786, 8, 211, 1, 211, 1, 211, 3, 211, 4790, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4795, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4800, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4805, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4810, 8, 211, 1, 211, 3, 211, 4813, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4825, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4878, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4887, 8, 213, 1, 213, 1, 213, 3, 213, 4891, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4900, 8, 213, 1, 213, 1, 213, 3, 213, 4904, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4913, 8, 213, 1, 213, 1, 213, 3, 213, 4917, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4922, 8, 213, 1, 213, 3, 213, 4925, 8, 213, 1, 213, 1, 213, 3, 213, 4929, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4934, 8, 213, 3, 213, 4936, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4945, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4950, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4961, 8, 213, 1, 213, 1, 213, 3, 213, 4965, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4979, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4987, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5025, 8, 213, 3, 213, 5027, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5046, 8, 214, 1, 214, 3, 214, 5049, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5076, 8, 215, 1, 215, 1, 215, 3, 215, 5080, 8, 215, 1, 215, 1, 215, 3, 215, 5084, 8, 215, 1, 215, 1, 215, 3, 215, 5088, 8, 215, 1, 215, 1, 215, 3, 215, 5092, 8, 215, 1, 215, 3, 215, 5095, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5110, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5117, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5129, 8, 217, 10, 217, 12, 217, 5132, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5144, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5169, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5188, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5203, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5219, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5226, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5237, 8, 221, 1, 221, 3, 221, 5240, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5257, 8, 222, 10, 222, 12, 222, 5260, 9, 222, 3, 222, 5262, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5273, 8, 223, 10, 223, 12, 223, 5276, 9, 223, 1, 223, 3, 223, 5279, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5299, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5309, 8, 224, 10, 224, 12, 224, 5312, 9, 224, 1, 224, 3, 224, 5315, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5337, 8, 224, 1, 225, 1, 225, 3, 225, 5341, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5351, 8, 225, 1, 225, 1, 225, 3, 225, 5355, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5361, 8, 225, 1, 225, 1, 225, 3, 225, 5365, 8, 225, 5, 225, 5367, 8, 225, 10, 225, 12, 225, 5370, 9, 225, 1, 225, 3, 225, 5373, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5380, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5385, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5396, 8, 230, 1, 231, 1, 231, 3, 231, 5400, 8, 231, 1, 231, 3, 231, 5403, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5408, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5414, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5425, 8, 231, 1, 231, 1, 231, 3, 231, 5429, 8, 231, 1, 231, 3, 231, 5432, 8, 231, 1, 231, 1, 231, 3, 231, 5436, 8, 231, 1, 231, 1, 231, 3, 231, 5440, 8, 231, 1, 231, 3, 231, 5443, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5453, 8, 233, 1, 233, 3, 233, 5456, 8, 233, 1, 234, 1, 234, 3, 234, 5460, 8, 234, 1, 234, 5, 234, 5463, 8, 234, 10, 234, 12, 234, 5466, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5471, 8, 235, 1, 235, 3, 235, 5474, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5479, 8, 235, 1, 235, 3, 235, 5482, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5489, 8, 235, 3, 235, 5491, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5497, 8, 235, 1, 235, 1, 235, 3, 235, 5501, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5510, 8, 237, 1, 237, 4, 237, 5513, 8, 237, 11, 237, 12, 237, 5514, 3, 237, 5517, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5527, 8, 238, 1, 238, 3, 238, 5530, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5535, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5543, 8, 239, 1, 239, 3, 239, 5546, 8, 239, 1, 239, 4, 239, 5549, 8, 239, 11, 239, 12, 239, 5550, 3, 239, 5553, 8, 239, 3, 239, 5555, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5561, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5578, 8, 243, 1, 243, 1, 243, 5, 243, 5582, 8, 243, 10, 243, 12, 243, 5585, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5597, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5603, 8, 244, 1, 244, 1, 244, 3, 244, 5607, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5612, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5642, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5657, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5662, 8, 246, 1, 247, 1, 247, 3, 247, 5666, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5679, 8, 248, 1, 248, 1, 248, 3, 248, 5683, 8, 248, 3, 248, 5685, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5692, 8, 248, 10, 248, 12, 248, 5695, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5700, 8, 248, 3, 248, 5702, 8, 248, 1, 249, 1, 249, 3, 249, 5706, 8, 249, 1, 249, 3, 249, 5709, 8, 249, 1, 249, 3, 249, 5712, 8, 249, 1, 249, 3, 249, 5715, 8, 249, 1, 249, 3, 249, 5718, 8, 249, 3, 249, 5720, 8, 249, 1, 249, 3, 249, 5723, 8, 249, 1, 250, 1, 250, 3, 250, 5727, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5733, 8, 250, 10, 250, 12, 250, 5736, 9, 250, 1, 250, 1, 250, 3, 250, 5740, 8, 250, 1, 250, 3, 250, 5743, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5749, 8, 252, 1, 252, 1, 252, 3, 252, 5753, 8, 252, 1, 253, 1, 253, 3, 253, 5757, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5762, 8, 253, 3, 253, 5764, 8, 253, 1, 254, 1, 254, 3, 254, 5768, 8, 254, 1, 255, 1, 255, 3, 255, 5772, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5777, 8, 256, 10, 256, 12, 256, 5780, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5785, 8, 257, 1, 257, 1, 257, 3, 257, 5789, 8, 257, 3, 257, 5791, 8, 257, 3, 257, 5793, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5806, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5812, 8, 259, 10, 259, 12, 259, 5815, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5822, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5831, 8, 261, 10, 261, 12, 261, 5834, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5843, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5848, 8, 263, 1, 263, 1, 263, 3, 263, 5852, 8, 263, 1, 263, 1, 263, 3, 263, 5856, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5863, 8, 263, 1, 263, 3, 263, 5866, 8, 263, 3, 263, 5868, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5876, 8, 265, 1, 265, 1, 265, 3, 265, 5880, 8, 265, 1, 266, 3, 266, 5883, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5890, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5897, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5902, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5909, 8, 266, 1, 266, 3, 266, 5912, 8, 266, 3, 266, 5914, 8, 266, 1, 266, 3, 266, 5917, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5923, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5928, 8, 267, 1, 267, 1, 267, 3, 267, 5932, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5937, 8, 268, 10, 268, 12, 268, 5940, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5949, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5956, 8, 271, 1, 271, 3, 271, 5959, 8, 271, 1, 271, 3, 271, 5962, 8, 271, 1, 272, 1, 272, 3, 272, 5966, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5977, 8, 272, 1, 272, 3, 272, 5980, 8, 272, 1, 272, 3, 272, 5983, 8, 272, 1, 272, 3, 272, 5986, 8, 272, 1, 273, 3, 273, 5989, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5996, 8, 273, 1, 273, 3, 273, 5999, 8, 273, 1, 273, 3, 273, 6002, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 6007, 8, 274, 10, 274, 12, 274, 6010, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6021, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6028, 8, 275, 3, 275, 6030, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6035, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6040, 8, 276, 10, 276, 12, 276, 6043, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6048, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6055, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6060, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6065, 8, 279, 1, 279, 1, 279, 3, 279, 6069, 8, 279, 1, 279, 1, 279, 3, 279, 6073, 8, 279, 1, 279, 1, 279, 3, 279, 6077, 8, 279, 3, 279, 6079, 8, 279, 1, 280, 1, 280, 3, 280, 6083, 8, 280, 1, 281, 1, 281, 3, 281, 6087, 8, 281, 1, 281, 3, 281, 6090, 8, 281, 1, 281, 3, 281, 6093, 8, 281, 3, 281, 6095, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6105, 8, 281, 3, 281, 6107, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6112, 8, 281, 5, 281, 6114, 8, 281, 10, 281, 12, 281, 6117, 9, 281, 1, 282, 1, 282, 3, 282, 6121, 8, 282, 1, 283, 1, 283, 3, 283, 6125, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6130, 8, 283, 10, 283, 12, 283, 6133, 9, 283, 1, 284, 1, 284, 3, 284, 6137, 8, 284, 1, 284, 1, 284, 3, 284, 6141, 8, 284, 1, 284, 3, 284, 6144, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6150, 8, 284, 1, 284, 3, 284, 6153, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6172, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6179, 8, 287, 1, 287, 1, 287, 3, 287, 6183, 8, 287, 1, 288, 3, 288, 6186, 8, 288, 1, 288, 1, 288, 3, 288, 6190, 8, 288, 1, 288, 1, 288, 3, 288, 6194, 8, 288, 1, 288, 3, 288, 6197, 8, 288, 1, 288, 3, 288, 6200, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6205, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6212, 8, 290, 10, 290, 12, 290, 6215, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6221, 8, 291, 1, 291, 1, 291, 3, 291, 6225, 8, 291, 1, 292, 1, 292, 3, 292, 6229, 8, 292, 1, 292, 1, 292, 3, 292, 6233, 8, 292, 1, 292, 3, 292, 6236, 8, 292, 3, 292, 6238, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6243, 8, 293, 1, 293, 1, 293, 3, 293, 6247, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6252, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6258, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6265, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6270, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6275, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6282, 8, 298, 10, 298, 12, 298, 6285, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6291, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6297, 8, 299, 10, 299, 12, 299, 6300, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6310, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6315, 8, 300, 1, 300, 1, 300, 3, 300, 6319, 8, 300, 1, 300, 3, 300, 6322, 8, 300, 1, 300, 1, 300, 3, 300, 6326, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6331, 8, 300, 4, 300, 6333, 8, 300, 11, 300, 12, 300, 6334, 1, 300, 1, 300, 1, 300, 3, 300, 6340, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6346, 8, 301, 10, 301, 12, 301, 6349, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6357, 8, 303, 10, 303, 12, 303, 6360, 9, 303, 1, 304, 1, 304, 3, 304, 6364, 8, 304, 1, 304, 1, 304, 3, 304, 6368, 8, 304, 1, 304, 3, 304, 6371, 8, 304, 1, 304, 3, 304, 6374, 8, 304, 3, 304, 6376, 8, 304, 1, 304, 3, 304, 6379, 8, 304, 1, 304, 3, 304, 6382, 8, 304, 1, 304, 3, 304, 6385, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6395, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6400, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6406, 8, 304, 1, 304, 1, 304, 3, 304, 6410, 8, 304, 3, 304, 6412, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6419, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6424, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6430, 8, 304, 10, 304, 12, 304, 6433, 9, 304, 1, 305, 1, 305, 3, 305, 6437, 8, 305, 1, 305, 1, 305, 3, 305, 6441, 8, 305, 1, 305, 1, 305, 3, 305, 6445, 8, 305, 3, 305, 6447, 8, 305, 1, 306, 3, 306, 6450, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6457, 8, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6462, 8, 307, 1, 307, 3, 307, 6465, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6471, 8, 307, 1, 308, 1, 308, 3, 308, 6475, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6481, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6490, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6496, 8, 310, 3, 310, 6498, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6503, 8, 311, 1, 311, 3, 311, 6506, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6515, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6522, 8, 311, 3, 311, 6524, 8, 311, 1, 312, 1, 312, 1, 312, 5, 312, 6529, 8, 312, 10, 312, 12, 312, 6532, 9, 312, 1, 313, 1, 313, 3, 313, 6536, 8, 313, 1, 313, 3, 313, 6539, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 6549, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6558, 8, 315, 10, 315, 12, 315, 6561, 9, 315, 1, 315, 1, 315, 3, 315, 6565, 8, 315, 1, 315, 1, 315, 3, 315, 6569, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 6577, 8, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6587, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 6592, 8, 319, 10, 319, 12, 319, 6595, 9, 319, 1, 320, 1, 320, 1, 320, 3, 320, 6600, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6609, 8, 321, 10, 321, 12, 321, 6612, 9, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6617, 8, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6625, 8, 321, 10, 321, 12, 321, 6628, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6636, 8, 322, 1, 322, 1, 322, 3, 322, 6640, 8, 322, 1, 322, 4, 322, 6643, 8, 322, 11, 322, 12, 322, 6644, 3, 322, 6647, 8, 322, 1, 322, 1, 322, 3, 322, 6651, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6659, 8, 323, 1, 324, 3, 324, 6662, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6667, 8, 324, 1, 324, 5, 324, 6670, 8, 324, 10, 324, 12, 324, 6673, 9, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6679, 8, 324, 3, 324, 6681, 8, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6687, 8, 324, 1, 325, 1, 325, 3, 325, 6691, 8, 325, 1, 325, 3, 325, 6694, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6699, 8, 325, 1, 325, 3, 325, 6702, 8, 325, 3, 325, 6704, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6710, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6719, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6725, 8, 327, 1, 327, 3, 327, 6728, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 6736, 8, 329, 1, 329, 3, 329, 6739, 8, 329, 1, 330, 1, 330, 3, 330, 6743, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6749, 8, 330, 3, 330, 6751, 8, 330, 1, 330, 3, 330, 6754, 8, 330, 1, 331, 1, 331, 3, 331, 6758, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6763, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6770, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6777, 8, 332, 3, 332, 6779, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6785, 8, 332, 3, 332, 6787, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6792, 8, 332, 3, 332, 6794, 8, 332, 1, 333, 1, 333, 3, 333, 6798, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 3, 336, 6807, 8, 336, 1, 336, 1, 336, 3, 336, 6811, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6819, 8, 336, 10, 336, 12, 336, 6822, 9, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6835, 8, 337, 1, 337, 3, 337, 6838, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6846, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6853, 8, 337, 10, 337, 12, 337, 6856, 9, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6861, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6866, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6874, 8, 337, 3, 337, 6876, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6881, 8, 337, 1, 337, 1, 337, 3, 337, 6885, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6890, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6895, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6901, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 6917, 8, 338, 10, 338, 12, 338, 6920, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6928, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6943, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6948, 8, 339, 1, 339, 3, 339, 6951, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6957, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6962, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6975, 8, 339, 1, 339, 4, 339, 6978, 8, 339, 11, 339, 12, 339, 6979, 1, 339, 1, 339, 3, 339, 6984, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6991, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7010, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7022, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7027, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7035, 8, 339, 5, 339, 7037, 8, 339, 10, 339, 12, 339, 7040, 9, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7048, 8, 340, 1, 340, 3, 340, 7051, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7056, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7061, 8, 340, 1, 340, 3, 340, 7064, 8, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7075, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7083, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7088, 8, 341, 3, 341, 7090, 8, 341, 1, 341, 3, 341, 7093, 8, 341, 1, 342, 1, 342, 3, 342, 7097, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7108, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7129, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7137, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7150, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7160, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7166, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7172, 8, 343, 1, 343, 3, 343, 7175, 8, 343, 1, 343, 3, 343, 7178, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7204, 8, 343, 3, 343, 7206, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7227, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7237, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7250, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7255, 8, 343, 1, 343, 1, 343, 3, 343, 7259, 8, 343, 3, 343, 7261, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7273, 8, 343, 1, 344, 1, 344, 1, 344, 5, 344, 7278, 8, 344, 10, 344, 12, 344, 7281, 9, 344, 1, 345, 1, 345, 1, 345, 3, 345, 7286, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 3, 347, 7292, 8, 347, 1, 347, 1, 347, 3, 347, 7296, 8, 347, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 5, 349, 7305, 8, 349, 10, 349, 12, 349, 7308, 9, 349, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 3, 352, 7320, 8, 352, 1, 353, 1, 353, 3, 353, 7324, 8, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7329, 8, 353, 1, 353, 3, 353, 7332, 8, 353, 1, 353, 3, 353, 7335, 8, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7344, 8, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7355, 8, 354, 3, 354, 7357, 8, 354, 1, 355, 1, 355, 3, 355, 7361, 8, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7366, 8, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7375, 8, 356, 1, 357, 1, 357, 1, 357, 3, 357, 7380, 8, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 359, 1, 359, 3, 359, 7388, 8, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7398, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7406, 8, 362, 1, 363, 1, 363, 3, 363, 7410, 8, 363, 1, 363, 3, 363, 7413, 8, 363, 1, 364, 1, 364, 1, 364, 5, 364, 7418, 8, 364, 10, 364, 12, 364, 7421, 9, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7432, 8, 367, 1, 368, 1, 368, 3, 368, 7436, 8, 368, 1, 369, 1, 369, 1, 369, 5, 369, 7441, 8, 369, 10, 369, 12, 369, 7444, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7451, 8, 370, 3, 370, 7453, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 5, 371, 7460, 8, 371, 10, 371, 12, 371, 7463, 9, 371, 3, 371, 7465, 8, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7477, 8, 372, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7486, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7493, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7502, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 3, 376, 7512, 8, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7517, 8, 376, 1, 376, 1, 376, 3, 376, 7521, 8, 376, 3, 376, 7523, 8, 376, 1, 376, 3, 376, 7526, 8, 376, 1, 377, 4, 377, 7529, 8, 377, 11, 377, 12, 377, 7530, 1, 378, 5, 378, 7534, 8, 378, 10, 378, 12, 378, 7537, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7542, 8, 379, 10, 379, 12, 379, 7545, 9, 379, 1, 380, 1, 380, 1, 380, 3, 380, 7550, 8, 380, 1, 380, 3, 380, 7553, 8, 380, 1, 380, 1, 380, 3, 380, 7557, 8, 380, 3, 380, 7559, 8, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7564, 8, 381, 10, 381, 12, 381, 7567, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7574, 8, 382, 10, 382, 12, 382, 7577, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7582, 8, 383, 10, 383, 12, 383, 7585, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7590, 8, 384, 10, 384, 12, 384, 7593, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7598, 8, 385, 10, 385, 12, 385, 7601, 9, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7617, 8, 392, 1, 393, 1, 393, 1, 393, 5, 393, 7622, 8, 393, 10, 393, 12, 393, 7625, 9, 393, 1, 394, 1, 394, 1, 394, 5, 394, 7630, 8, 394, 10, 394, 12, 394, 7633, 9, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7649, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7655, 8, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7668, 8, 403, 3, 403, 7670, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7681, 8, 404, 3, 404, 7683, 8, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7691, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7697, 8, 407, 1, 408, 1, 408, 1, 408, 3, 408, 7702, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 7708, 8, 409, 10, 409, 12, 409, 7711, 9, 409, 1, 409, 1, 409, 3, 409, 7715, 8, 409, 1, 410, 3, 410, 7718, 8, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7727, 8, 411, 1, 412, 1, 412, 1, 412, 5, 412, 7732, 8, 412, 10, 412, 12, 412, 7735, 9, 412, 1, 413, 1, 413, 3, 413, 7739, 8, 413, 1, 414, 1, 414, 3, 414, 7743, 8, 414, 1, 415, 1, 415, 1, 415, 3, 415, 7748, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 7754, 8, 416, 1, 417, 1, 417, 1, 417, 3, 417, 7759, 8, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 7767, 8, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7822, 8, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 3, 422, 7829, 8, 422, 1, 422, 1, 422, 1, 422, 1, 422, 4, 422, 7835, 8, 422, 11, 422, 12, 422, 7836, 3, 422, 7839, 8, 422, 3, 422, 7841, 8, 422, 1, 422, 1, 422, 5, 422, 7845, 8, 422, 10, 422, 12, 422, 7848, 9, 422, 1, 422, 3, 422, 7851, 8, 422, 1, 422, 1, 422, 3, 422, 7855, 8, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7866, 8, 424, 1, 424, 3, 424, 7869, 8, 424, 1, 424, 1, 424, 3, 424, 7873, 8, 424, 1, 424, 1, 424, 3, 424, 7877, 8, 424, 1, 424, 1, 424, 3, 424, 7881, 8, 424, 1, 424, 3, 424, 7884, 8, 424, 1, 424, 3, 424, 7887, 8, 424, 1, 424, 3, 424, 7890, 8, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 5, 424, 7897, 8, 424, 10, 424, 12, 424, 7900, 9, 424, 1, 424, 1, 424, 3, 424, 7904, 8, 424, 1, 424, 1, 424, 3, 424, 7908, 8, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 3, 427, 7941, 8, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 3, 429, 7951, 8, 429, 1, 429, 1, 429, 3, 429, 7955, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 3, 429, 7961, 8, 429, 1, 429, 1, 429, 1, 429, 3, 429, 7966, 8, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 3, 431, 7975, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 7981, 8, 431, 10, 431, 12, 431, 7984, 9, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 3, 433, 7994, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 5, 433, 8000, 8, 433, 10, 433, 12, 433, 8003, 9, 433, 1, 434, 1, 434, 1, 434, 1, 434, 5, 434, 8009, 8, 434, 10, 434, 12, 434, 8012, 9, 434, 1, 434, 1, 434, 1, 434, 1, 434, 5, 434, 8018, 8, 434, 10, 434, 12, 434, 8021, 9, 434, 5, 434, 8023, 8, 434, 10, 434, 12, 434, 8026, 9, 434, 1, 434, 3, 434, 8029, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 5, 435, 8037, 8, 435, 10, 435, 12, 435, 8040, 9, 435, 1, 436, 1, 436, 3, 436, 8044, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 5, 436, 8050, 8, 436, 10, 436, 12, 436, 8053, 9, 436, 4, 436, 8055, 8, 436, 11, 436, 12, 436, 8056, 1, 436, 3, 436, 8060, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 3, 437, 8067, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8073, 8, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8081, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8089, 8, 438, 1, 438, 3, 438, 8092, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8099, 8, 438, 3, 438, 8101, 8, 438, 1, 439, 3, 439, 8104, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8110, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 8119, 8, 440, 1, 440, 1, 440, 3, 440, 8123, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 3, 441, 8137, 8, 441, 1, 441, 3, 441, 8140, 8, 441, 3, 441, 8142, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 3, 442, 8148, 8, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 4, 442, 8156, 8, 442, 11, 442, 12, 442, 8157, 3, 442, 8160, 8, 442, 3, 442, 8162, 8, 442, 1, 442, 1, 442, 1, 442, 1, 442, 5, 442, 8168, 8, 442, 10, 442, 12, 442, 8171, 9, 442, 3, 442, 8173, 8, 442, 1, 442, 3, 442, 8176, 8, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8186, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 5, 445, 8192, 8, 445, 10, 445, 12, 445, 8195, 9, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8200, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 3, 446, 8206, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 3, 447, 8213, 8, 447, 1, 447, 1, 447, 3, 447, 8217, 8, 447, 1, 447, 1, 447, 3, 447, 8221, 8, 447, 1, 447, 3, 447, 8224, 8, 447, 1, 447, 3, 447, 8227, 8, 447, 1, 447, 1, 447, 1, 448, 1, 448, 3, 448, 8233, 8, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 3, 449, 8240, 8, 449, 1, 449, 3, 449, 8243, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8251, 8, 449, 3, 449, 8253, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 5, 449, 8260, 8, 449, 10, 449, 12, 449, 8263, 9, 449, 1, 449, 1, 449, 3, 449, 8267, 8, 449, 3, 449, 8269, 8, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 3, 450, 8276, 8, 450, 1, 450, 1, 450, 1, 451, 1, 451, 3, 451, 8282, 8, 451, 1, 451, 3, 451, 8285, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8297, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8304, 8, 452, 3, 452, 8306, 8, 452, 1, 453, 1, 453, 3, 453, 8310, 8, 453, 1, 453, 1, 453, 1, 453, 1, 454, 3, 454, 8316, 8, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8321, 8, 454, 1, 454, 1, 454, 3, 454, 8325, 8, 454, 1, 454, 3, 454, 8328, 8, 454, 1, 454, 3, 454, 8331, 8, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 4, 454, 8338, 8, 454, 11, 454, 12, 454, 8339, 1, 454, 3, 454, 8343, 8, 454, 1, 455, 3, 455, 8346, 8, 455, 1, 455, 1, 455, 3, 455, 8350, 8, 455, 1, 455, 1, 455, 3, 455, 8354, 8, 455, 3, 455, 8356, 8, 455, 1, 455, 3, 455, 8359, 8, 455, 1, 455, 3, 455, 8362, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8368, 8, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8375, 8, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8382, 8, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8388, 8, 456, 3, 456, 8390, 8, 456, 1, 457, 1, 457, 3, 457, 8394, 8, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8399, 8, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 5, 458, 8415, 8, 458, 10, 458, 12, 458, 8418, 9, 458, 1, 458, 1, 458, 4, 458, 8422, 8, 458, 11, 458, 12, 458, 8423, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 5, 459, 8431, 8, 459, 10, 459, 12, 459, 8434, 9, 459, 1, 459, 1, 459, 1, 459, 1, 459, 3, 459, 8440, 8, 459, 1, 460, 1, 460, 3, 460, 8444, 8, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 3, 463, 8456, 8, 463, 1, 463, 3, 463, 8459, 8, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8472, 8, 464, 1, 464, 3, 464, 8475, 8, 464, 1, 465, 1, 465, 3, 465, 8479, 8, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 5, 466, 8486, 8, 466, 10, 466, 12, 466, 8489, 9, 466, 1, 466, 1, 466, 5, 466, 8493, 8, 466, 10, 466, 12, 466, 8496, 9, 466, 4, 466, 8498, 8, 466, 11, 466, 12, 466, 8499, 1, 467, 1, 467, 1, 467, 3, 467, 8505, 8, 467, 1, 468, 1, 468, 3, 468, 8509, 8, 468, 1, 469, 3, 469, 8512, 8, 469, 1, 469, 3, 469, 8515, 8, 469, 1, 469, 3, 469, 8518, 8, 469, 1, 469, 3, 469, 8521, 8, 469, 1, 469, 3, 469, 8524, 8, 469, 1, 469, 3, 469, 8527, 8, 469, 1, 469, 3, 469, 8530, 8, 469, 1, 469, 0, 3, 672, 676, 678, 470, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 0, 119, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 158, 158, 277, 277, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 1, 0, 549, 551, 2, 0, 213, 213, 254, 254, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 574, 574, 576, 576, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9970, 0, 943, 1, 0, 0, 0, 2, 948, 1, 0, 0, 0, 4, 1072, 1, 0, 0, 0, 6, 1074, 1, 0, 0, 0, 8, 1077, 1, 0, 0, 0, 10, 1127, 1, 0, 0, 0, 12, 1137, 1, 0, 0, 0, 14, 1139, 1, 0, 0, 0, 16, 1151, 1, 0, 0, 0, 18, 1163, 1, 0, 0, 0, 20, 1174, 1, 0, 0, 0, 22, 1208, 1, 0, 0, 0, 24, 1252, 1, 0, 0, 0, 26, 1254, 1, 0, 0, 0, 28, 1266, 1, 0, 0, 0, 30, 1273, 1, 0, 0, 0, 32, 1292, 1, 0, 0, 0, 34, 1300, 1, 0, 0, 0, 36, 1302, 1, 0, 0, 0, 38, 1316, 1, 0, 0, 0, 40, 1320, 1, 0, 0, 0, 42, 1357, 1, 0, 0, 0, 44, 1359, 1, 0, 0, 0, 46, 1367, 1, 0, 0, 0, 48, 1377, 1, 0, 0, 0, 50, 1384, 1, 0, 0, 0, 52, 1392, 1, 0, 0, 0, 54, 1398, 1, 0, 0, 0, 56, 1414, 1, 0, 0, 0, 58, 1418, 1, 0, 0, 0, 60, 1420, 1, 0, 0, 0, 62, 1432, 1, 0, 0, 0, 64, 1437, 1, 0, 0, 0, 66, 1442, 1, 0, 0, 0, 68, 1444, 1, 0, 0, 0, 70, 1456, 1, 0, 0, 0, 72, 1464, 1, 0, 0, 0, 74, 1466, 1, 0, 0, 0, 76, 1586, 1, 0, 0, 0, 78, 1588, 1, 0, 0, 0, 80, 1602, 1, 0, 0, 0, 82, 1604, 1, 0, 0, 0, 84, 1841, 1, 0, 0, 0, 86, 1848, 1, 0, 0, 0, 88, 1850, 1, 0, 0, 0, 90, 1852, 1, 0, 0, 0, 92, 1855, 1, 0, 0, 0, 94, 1866, 1, 0, 0, 0, 96, 1869, 1, 0, 0, 0, 98, 1899, 1, 0, 0, 0, 100, 1901, 1, 0, 0, 0, 102, 1942, 1, 0, 0, 0, 104, 1944, 1, 0, 0, 0, 106, 1998, 1, 0, 0, 0, 108, 2044, 1, 0, 0, 0, 110, 2065, 1, 0, 0, 0, 112, 2067, 1, 0, 0, 0, 114, 2084, 1, 0, 0, 0, 116, 2165, 1, 0, 0, 0, 118, 2167, 1, 0, 0, 0, 120, 2178, 1, 0, 0, 0, 122, 2201, 1, 0, 0, 0, 124, 2219, 1, 0, 0, 0, 126, 2221, 1, 0, 0, 0, 128, 2256, 1, 0, 0, 0, 130, 2349, 1, 0, 0, 0, 132, 2354, 1, 0, 0, 0, 134, 2356, 1, 0, 0, 0, 136, 2454, 1, 0, 0, 0, 138, 2456, 1, 0, 0, 0, 140, 2460, 1, 0, 0, 0, 142, 2471, 1, 0, 0, 0, 144, 2479, 1, 0, 0, 0, 146, 2482, 1, 0, 0, 0, 148, 2485, 1, 0, 0, 0, 150, 2503, 1, 0, 0, 0, 152, 2505, 1, 0, 0, 0, 154, 2509, 1, 0, 0, 0, 156, 2522, 1, 0, 0, 0, 158, 2524, 1, 0, 0, 0, 160, 2529, 1, 0, 0, 0, 162, 2549, 1, 0, 0, 0, 164, 2557, 1, 0, 0, 0, 166, 2564, 1, 0, 0, 0, 168, 2566, 1, 0, 0, 0, 170, 2575, 1, 0, 0, 0, 172, 2578, 1, 0, 0, 0, 174, 2582, 1, 0, 0, 0, 176, 2586, 1, 0, 0, 0, 178, 2611, 1, 0, 0, 0, 180, 2621, 1, 0, 0, 0, 182, 2635, 1, 0, 0, 0, 184, 2651, 1, 0, 0, 0, 186, 2657, 1, 0, 0, 0, 188, 2684, 1, 0, 0, 0, 190, 2694, 1, 0, 0, 0, 192, 2710, 1, 0, 0, 0, 194, 2754, 1, 0, 0, 0, 196, 2761, 1, 0, 0, 0, 198, 2763, 1, 0, 0, 0, 200, 2789, 1, 0, 0, 0, 202, 2800, 1, 0, 0, 0, 204, 2819, 1, 0, 0, 0, 206, 2830, 1, 0, 0, 0, 208, 2868, 1, 0, 0, 0, 210, 2889, 1, 0, 0, 0, 212, 2891, 1, 0, 0, 0, 214, 2911, 1, 0, 0, 0, 216, 2923, 1, 0, 0, 0, 218, 2935, 1, 0, 0, 0, 220, 2938, 1, 0, 0, 0, 222, 2941, 1, 0, 0, 0, 224, 2961, 1, 0, 0, 0, 226, 2966, 1, 0, 0, 0, 228, 3015, 1, 0, 0, 0, 230, 3017, 1, 0, 0, 0, 232, 3040, 1, 0, 0, 0, 234, 3056, 1, 0, 0, 0, 236, 3068, 1, 0, 0, 0, 238, 3095, 1, 0, 0, 0, 240, 3110, 1, 0, 0, 0, 242, 3173, 1, 0, 0, 0, 244, 3175, 1, 0, 0, 0, 246, 3180, 1, 0, 0, 0, 248, 3186, 1, 0, 0, 0, 250, 3273, 1, 0, 0, 0, 252, 3279, 1, 0, 0, 0, 254, 3281, 1, 0, 0, 0, 256, 3297, 1, 0, 0, 0, 258, 3299, 1, 0, 0, 0, 260, 3308, 1, 0, 0, 0, 262, 3312, 1, 0, 0, 0, 264, 3325, 1, 0, 0, 0, 266, 3337, 1, 0, 0, 0, 268, 3339, 1, 0, 0, 0, 270, 3361, 1, 0, 0, 0, 272, 3373, 1, 0, 0, 0, 274, 3384, 1, 0, 0, 0, 276, 3475, 1, 0, 0, 0, 278, 3477, 1, 0, 0, 0, 280, 3488, 1, 0, 0, 0, 282, 3499, 1, 0, 0, 0, 284, 3501, 1, 0, 0, 0, 286, 3527, 1, 0, 0, 0, 288, 3529, 1, 0, 0, 0, 290, 3533, 1, 0, 0, 0, 292, 3583, 1, 0, 0, 0, 294, 3585, 1, 0, 0, 0, 296, 3591, 1, 0, 0, 0, 298, 3616, 1, 0, 0, 0, 300, 3620, 1, 0, 0, 0, 302, 3834, 1, 0, 0, 0, 304, 3852, 1, 0, 0, 0, 306, 3878, 1, 0, 0, 0, 308, 3880, 1, 0, 0, 0, 310, 3888, 1, 0, 0, 0, 312, 3894, 1, 0, 0, 0, 314, 3898, 1, 0, 0, 0, 316, 3918, 1, 0, 0, 0, 318, 3924, 1, 0, 0, 0, 320, 3991, 1, 0, 0, 0, 322, 4022, 1, 0, 0, 0, 324, 4068, 1, 0, 0, 0, 326, 4070, 1, 0, 0, 0, 328, 4072, 1, 0, 0, 0, 330, 4083, 1, 0, 0, 0, 332, 4120, 1, 0, 0, 0, 334, 4122, 1, 0, 0, 0, 336, 4128, 1, 0, 0, 0, 338, 4178, 1, 0, 0, 0, 340, 4181, 1, 0, 0, 0, 342, 4195, 1, 0, 0, 0, 344, 4216, 1, 0, 0, 0, 346, 4240, 1, 0, 0, 0, 348, 4281, 1, 0, 0, 0, 350, 4283, 1, 0, 0, 0, 352, 4285, 1, 0, 0, 0, 354, 4325, 1, 0, 0, 0, 356, 4342, 1, 0, 0, 0, 358, 4362, 1, 0, 0, 0, 360, 4415, 1, 0, 0, 0, 362, 4418, 1, 0, 0, 0, 364, 4424, 1, 0, 0, 0, 366, 4432, 1, 0, 0, 0, 368, 4445, 1, 0, 0, 0, 370, 4447, 1, 0, 0, 0, 372, 4460, 1, 0, 0, 0, 374, 4462, 1, 0, 0, 0, 376, 4475, 1, 0, 0, 0, 378, 4485, 1, 0, 0, 0, 380, 4496, 1, 0, 0, 0, 382, 4507, 1, 0, 0, 0, 384, 4509, 1, 0, 0, 0, 386, 4514, 1, 0, 0, 0, 388, 4528, 1, 0, 0, 0, 390, 4560, 1, 0, 0, 0, 392, 4597, 1, 0, 0, 0, 394, 4599, 1, 0, 0, 0, 396, 4602, 1, 0, 0, 0, 398, 4605, 1, 0, 0, 0, 400, 4622, 1, 0, 0, 0, 402, 4643, 1, 0, 0, 0, 404, 4659, 1, 0, 0, 0, 406, 4675, 1, 0, 0, 0, 408, 4697, 1, 0, 0, 0, 410, 4702, 1, 0, 0, 0, 412, 4705, 1, 0, 0, 0, 414, 4713, 1, 0, 0, 0, 416, 4738, 1, 0, 0, 0, 418, 4741, 1, 0, 0, 0, 420, 4769, 1, 0, 0, 0, 422, 4774, 1, 0, 0, 0, 424, 4814, 1, 0, 0, 0, 426, 5026, 1, 0, 0, 0, 428, 5028, 1, 0, 0, 0, 430, 5116, 1, 0, 0, 0, 432, 5118, 1, 0, 0, 0, 434, 5124, 1, 0, 0, 0, 436, 5135, 1, 0, 0, 0, 438, 5145, 1, 0, 0, 0, 440, 5225, 1, 0, 0, 0, 442, 5227, 1, 0, 0, 0, 444, 5241, 1, 0, 0, 0, 446, 5263, 1, 0, 0, 0, 448, 5336, 1, 0, 0, 0, 450, 5338, 1, 0, 0, 0, 452, 5379, 1, 0, 0, 0, 454, 5381, 1, 0, 0, 0, 456, 5386, 1, 0, 0, 0, 458, 5389, 1, 0, 0, 0, 460, 5392, 1, 0, 0, 0, 462, 5442, 1, 0, 0, 0, 464, 5444, 1, 0, 0, 0, 466, 5455, 1, 0, 0, 0, 468, 5457, 1, 0, 0, 0, 470, 5467, 1, 0, 0, 0, 472, 5502, 1, 0, 0, 0, 474, 5505, 1, 0, 0, 0, 476, 5526, 1, 0, 0, 0, 478, 5536, 1, 0, 0, 0, 480, 5556, 1, 0, 0, 0, 482, 5562, 1, 0, 0, 0, 484, 5568, 1, 0, 0, 0, 486, 5573, 1, 0, 0, 0, 488, 5586, 1, 0, 0, 0, 490, 5613, 1, 0, 0, 0, 492, 5661, 1, 0, 0, 0, 494, 5663, 1, 0, 0, 0, 496, 5701, 1, 0, 0, 0, 498, 5703, 1, 0, 0, 0, 500, 5724, 1, 0, 0, 0, 502, 5744, 1, 0, 0, 0, 504, 5748, 1, 0, 0, 0, 506, 5763, 1, 0, 0, 0, 508, 5765, 1, 0, 0, 0, 510, 5769, 1, 0, 0, 0, 512, 5773, 1, 0, 0, 0, 514, 5781, 1, 0, 0, 0, 516, 5805, 1, 0, 0, 0, 518, 5807, 1, 0, 0, 0, 520, 5818, 1, 0, 0, 0, 522, 5826, 1, 0, 0, 0, 524, 5842, 1, 0, 0, 0, 526, 5867, 1, 0, 0, 0, 528, 5869, 1, 0, 0, 0, 530, 5873, 1, 0, 0, 0, 532, 5882, 1, 0, 0, 0, 534, 5922, 1, 0, 0, 0, 536, 5933, 1, 0, 0, 0, 538, 5941, 1, 0, 0, 0, 540, 5944, 1, 0, 0, 0, 542, 5948, 1, 0, 0, 0, 544, 5963, 1, 0, 0, 0, 546, 5988, 1, 0, 0, 0, 548, 6003, 1, 0, 0, 0, 550, 6029, 1, 0, 0, 0, 552, 6031, 1, 0, 0, 0, 554, 6054, 1, 0, 0, 0, 556, 6056, 1, 0, 0, 0, 558, 6064, 1, 0, 0, 0, 560, 6082, 1, 0, 0, 0, 562, 6106, 1, 0, 0, 0, 564, 6118, 1, 0, 0, 0, 566, 6122, 1, 0, 0, 0, 568, 6134, 1, 0, 0, 0, 570, 6154, 1, 0, 0, 0, 572, 6162, 1, 0, 0, 0, 574, 6176, 1, 0, 0, 0, 576, 6199, 1, 0, 0, 0, 578, 6201, 1, 0, 0, 0, 580, 6206, 1, 0, 0, 0, 582, 6216, 1, 0, 0, 0, 584, 6237, 1, 0, 0, 0, 586, 6239, 1, 0, 0, 0, 588, 6248, 1, 0, 0, 0, 590, 6259, 1, 0, 0, 0, 592, 6269, 1, 0, 0, 0, 594, 6271, 1, 0, 0, 0, 596, 6278, 1, 0, 0, 0, 598, 6309, 1, 0, 0, 0, 600, 6339, 1, 0, 0, 0, 602, 6341, 1, 0, 0, 0, 604, 6350, 1, 0, 0, 0, 606, 6353, 1, 0, 0, 0, 608, 6411, 1, 0, 0, 0, 610, 6446, 1, 0, 0, 0, 612, 6449, 1, 0, 0, 0, 614, 6470, 1, 0, 0, 0, 616, 6472, 1, 0, 0, 0, 618, 6480, 1, 0, 0, 0, 620, 6497, 1, 0, 0, 0, 622, 6523, 1, 0, 0, 0, 624, 6525, 1, 0, 0, 0, 626, 6533, 1, 0, 0, 0, 628, 6540, 1, 0, 0, 0, 630, 6564, 1, 0, 0, 0, 632, 6570, 1, 0, 0, 0, 634, 6578, 1, 0, 0, 0, 636, 6581, 1, 0, 0, 0, 638, 6588, 1, 0, 0, 0, 640, 6596, 1, 0, 0, 0, 642, 6601, 1, 0, 0, 0, 644, 6631, 1, 0, 0, 0, 646, 6658, 1, 0, 0, 0, 648, 6686, 1, 0, 0, 0, 650, 6703, 1, 0, 0, 0, 652, 6709, 1, 0, 0, 0, 654, 6727, 1, 0, 0, 0, 656, 6729, 1, 0, 0, 0, 658, 6733, 1, 0, 0, 0, 660, 6750, 1, 0, 0, 0, 662, 6755, 1, 0, 0, 0, 664, 6793, 1, 0, 0, 0, 666, 6795, 1, 0, 0, 0, 668, 6799, 1, 0, 0, 0, 670, 6801, 1, 0, 0, 0, 672, 6810, 1, 0, 0, 0, 674, 6894, 1, 0, 0, 0, 676, 6900, 1, 0, 0, 0, 678, 7009, 1, 0, 0, 0, 680, 7041, 1, 0, 0, 0, 682, 7092, 1, 0, 0, 0, 684, 7096, 1, 0, 0, 0, 686, 7272, 1, 0, 0, 0, 688, 7274, 1, 0, 0, 0, 690, 7282, 1, 0, 0, 0, 692, 7287, 1, 0, 0, 0, 694, 7289, 1, 0, 0, 0, 696, 7297, 1, 0, 0, 0, 698, 7300, 1, 0, 0, 0, 700, 7309, 1, 0, 0, 0, 702, 7312, 1, 0, 0, 0, 704, 7316, 1, 0, 0, 0, 706, 7321, 1, 0, 0, 0, 708, 7338, 1, 0, 0, 0, 710, 7365, 1, 0, 0, 0, 712, 7374, 1, 0, 0, 0, 714, 7376, 1, 0, 0, 0, 716, 7383, 1, 0, 0, 0, 718, 7387, 1, 0, 0, 0, 720, 7389, 1, 0, 0, 0, 722, 7397, 1, 0, 0, 0, 724, 7405, 1, 0, 0, 0, 726, 7412, 1, 0, 0, 0, 728, 7414, 1, 0, 0, 0, 730, 7422, 1, 0, 0, 0, 732, 7424, 1, 0, 0, 0, 734, 7431, 1, 0, 0, 0, 736, 7435, 1, 0, 0, 0, 738, 7437, 1, 0, 0, 0, 740, 7452, 1, 0, 0, 0, 742, 7454, 1, 0, 0, 0, 744, 7476, 1, 0, 0, 0, 746, 7478, 1, 0, 0, 0, 748, 7501, 1, 0, 0, 0, 750, 7503, 1, 0, 0, 0, 752, 7525, 1, 0, 0, 0, 754, 7528, 1, 0, 0, 0, 756, 7535, 1, 0, 0, 0, 758, 7538, 1, 0, 0, 0, 760, 7558, 1, 0, 0, 0, 762, 7565, 1, 0, 0, 0, 764, 7570, 1, 0, 0, 0, 766, 7578, 1, 0, 0, 0, 768, 7586, 1, 0, 0, 0, 770, 7594, 1, 0, 0, 0, 772, 7602, 1, 0, 0, 0, 774, 7604, 1, 0, 0, 0, 776, 7606, 1, 0, 0, 0, 778, 7608, 1, 0, 0, 0, 780, 7610, 1, 0, 0, 0, 782, 7612, 1, 0, 0, 0, 784, 7614, 1, 0, 0, 0, 786, 7618, 1, 0, 0, 0, 788, 7626, 1, 0, 0, 0, 790, 7634, 1, 0, 0, 0, 792, 7636, 1, 0, 0, 0, 794, 7638, 1, 0, 0, 0, 796, 7640, 1, 0, 0, 0, 798, 7642, 1, 0, 0, 0, 800, 7648, 1, 0, 0, 0, 802, 7654, 1, 0, 0, 0, 804, 7656, 1, 0, 0, 0, 806, 7669, 1, 0, 0, 0, 808, 7682, 1, 0, 0, 0, 810, 7684, 1, 0, 0, 0, 812, 7690, 1, 0, 0, 0, 814, 7696, 1, 0, 0, 0, 816, 7698, 1, 0, 0, 0, 818, 7714, 1, 0, 0, 0, 820, 7717, 1, 0, 0, 0, 822, 7726, 1, 0, 0, 0, 824, 7728, 1, 0, 0, 0, 826, 7738, 1, 0, 0, 0, 828, 7742, 1, 0, 0, 0, 830, 7747, 1, 0, 0, 0, 832, 7753, 1, 0, 0, 0, 834, 7766, 1, 0, 0, 0, 836, 7768, 1, 0, 0, 0, 838, 7821, 1, 0, 0, 0, 840, 7823, 1, 0, 0, 0, 842, 7825, 1, 0, 0, 0, 844, 7828, 1, 0, 0, 0, 846, 7856, 1, 0, 0, 0, 848, 7860, 1, 0, 0, 0, 850, 7911, 1, 0, 0, 0, 852, 7914, 1, 0, 0, 0, 854, 7940, 1, 0, 0, 0, 856, 7942, 1, 0, 0, 0, 858, 7965, 1, 0, 0, 0, 860, 7967, 1, 0, 0, 0, 862, 7972, 1, 0, 0, 0, 864, 7987, 1, 0, 0, 0, 866, 7993, 1, 0, 0, 0, 868, 8004, 1, 0, 0, 0, 870, 8034, 1, 0, 0, 0, 872, 8041, 1, 0, 0, 0, 874, 8066, 1, 0, 0, 0, 876, 8076, 1, 0, 0, 0, 878, 8103, 1, 0, 0, 0, 880, 8116, 1, 0, 0, 0, 882, 8126, 1, 0, 0, 0, 884, 8145, 1, 0, 0, 0, 886, 8177, 1, 0, 0, 0, 888, 8181, 1, 0, 0, 0, 890, 8189, 1, 0, 0, 0, 892, 8203, 1, 0, 0, 0, 894, 8209, 1, 0, 0, 0, 896, 8230, 1, 0, 0, 0, 898, 8236, 1, 0, 0, 0, 900, 8275, 1, 0, 0, 0, 902, 8279, 1, 0, 0, 0, 904, 8305, 1, 0, 0, 0, 906, 8307, 1, 0, 0, 0, 908, 8315, 1, 0, 0, 0, 910, 8355, 1, 0, 0, 0, 912, 8389, 1, 0, 0, 0, 914, 8391, 1, 0, 0, 0, 916, 8402, 1, 0, 0, 0, 918, 8439, 1, 0, 0, 0, 920, 8443, 1, 0, 0, 0, 922, 8445, 1, 0, 0, 0, 924, 8449, 1, 0, 0, 0, 926, 8452, 1, 0, 0, 0, 928, 8474, 1, 0, 0, 0, 930, 8478, 1, 0, 0, 0, 932, 8480, 1, 0, 0, 0, 934, 8504, 1, 0, 0, 0, 936, 8508, 1, 0, 0, 0, 938, 8511, 1, 0, 0, 0, 940, 942, 3, 2, 1, 0, 941, 940, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 946, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 946, 947, 5, 0, 0, 1, 947, 1, 1, 0, 0, 0, 948, 950, 3, 4, 2, 0, 949, 951, 5, 7, 0, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 3, 1, 0, 0, 0, 952, 1073, 3, 272, 136, 0, 953, 1073, 3, 482, 241, 0, 954, 1073, 3, 478, 239, 0, 955, 1073, 3, 480, 240, 0, 956, 1073, 3, 346, 173, 0, 957, 1073, 3, 488, 244, 0, 958, 1073, 3, 286, 143, 0, 959, 1073, 3, 204, 102, 0, 960, 1073, 3, 206, 103, 0, 961, 1073, 3, 212, 106, 0, 962, 1073, 3, 226, 113, 0, 963, 1073, 3, 398, 199, 0, 964, 1073, 3, 28, 14, 0, 965, 1073, 3, 428, 214, 0, 966, 1073, 3, 430, 215, 0, 967, 1073, 3, 440, 220, 0, 968, 1073, 3, 432, 216, 0, 969, 1073, 3, 438, 219, 0, 970, 1073, 3, 238, 119, 0, 971, 1073, 3, 240, 120, 0, 972, 1073, 3, 192, 96, 0, 973, 1073, 3, 484, 242, 0, 974, 1073, 3, 76, 38, 0, 975, 1073, 3, 424, 212, 0, 976, 1073, 3, 100, 50, 0, 977, 1073, 3, 444, 222, 0, 978, 1073, 3, 18, 9, 0, 979, 1073, 3, 20, 10, 0, 980, 1073, 3, 16, 8, 0, 981, 1073, 3, 448, 224, 0, 982, 1073, 3, 178, 89, 0, 983, 1073, 3, 492, 246, 0, 984, 1073, 3, 490, 245, 0, 985, 1073, 3, 234, 117, 0, 986, 1073, 3, 500, 250, 0, 987, 1073, 3, 6, 3, 0, 988, 1073, 3, 72, 36, 0, 989, 1073, 3, 104, 52, 0, 990, 1073, 3, 496, 248, 0, 991, 1073, 3, 318, 159, 0, 992, 1073, 3, 70, 35, 0, 993, 1073, 3, 106, 53, 0, 994, 1073, 3, 248, 124, 0, 995, 1073, 3, 180, 90, 0, 996, 1073, 3, 274, 137, 0, 997, 1073, 3, 414, 207, 0, 998, 1073, 3, 494, 247, 0, 999, 1073, 3, 486, 243, 0, 1000, 1073, 3, 202, 101, 0, 1001, 1073, 3, 208, 104, 0, 1002, 1073, 3, 222, 111, 0, 1003, 1073, 3, 228, 114, 0, 1004, 1073, 3, 358, 179, 0, 1005, 1073, 3, 26, 13, 0, 1006, 1073, 3, 186, 93, 0, 1007, 1073, 3, 290, 145, 0, 1008, 1073, 3, 294, 147, 0, 1009, 1073, 3, 442, 221, 0, 1010, 1073, 3, 296, 148, 0, 1011, 1073, 3, 236, 118, 0, 1012, 1073, 3, 198, 99, 0, 1013, 1073, 3, 30, 15, 0, 1014, 1073, 3, 190, 95, 0, 1015, 1073, 3, 114, 57, 0, 1016, 1073, 3, 446, 223, 0, 1017, 1073, 3, 176, 88, 0, 1018, 1073, 3, 200, 100, 0, 1019, 1073, 3, 418, 209, 0, 1020, 1073, 3, 250, 125, 0, 1021, 1073, 3, 268, 134, 0, 1022, 1073, 3, 8, 4, 0, 1023, 1073, 3, 14, 7, 0, 1024, 1073, 3, 232, 116, 0, 1025, 1073, 3, 474, 237, 0, 1026, 1073, 3, 530, 265, 0, 1027, 1073, 3, 552, 276, 0, 1028, 1073, 3, 276, 138, 0, 1029, 1073, 3, 542, 271, 0, 1030, 1073, 3, 74, 37, 0, 1031, 1073, 3, 412, 206, 0, 1032, 1073, 3, 302, 151, 0, 1033, 1073, 3, 526, 263, 0, 1034, 1073, 3, 514, 257, 0, 1035, 1073, 3, 322, 161, 0, 1036, 1073, 3, 328, 164, 0, 1037, 1073, 3, 342, 171, 0, 1038, 1073, 3, 908, 454, 0, 1039, 1073, 3, 230, 115, 0, 1040, 1073, 3, 352, 176, 0, 1041, 1073, 3, 532, 266, 0, 1042, 1073, 3, 458, 229, 0, 1043, 1073, 3, 188, 94, 0, 1044, 1073, 3, 472, 236, 0, 1045, 1073, 3, 544, 272, 0, 1046, 1073, 3, 454, 227, 0, 1047, 1073, 3, 520, 260, 0, 1048, 1073, 3, 300, 150, 0, 1049, 1073, 3, 422, 211, 0, 1050, 1073, 3, 402, 201, 0, 1051, 1073, 3, 400, 200, 0, 1052, 1073, 3, 404, 202, 0, 1053, 1073, 3, 426, 213, 0, 1054, 1073, 3, 330, 165, 0, 1055, 1073, 3, 344, 172, 0, 1056, 1073, 3, 450, 225, 0, 1057, 1073, 3, 320, 160, 0, 1058, 1073, 3, 554, 277, 0, 1059, 1073, 3, 462, 231, 0, 1060, 1073, 3, 314, 157, 0, 1061, 1073, 3, 460, 230, 0, 1062, 1073, 3, 546, 273, 0, 1063, 1073, 3, 498, 249, 0, 1064, 1073, 3, 60, 30, 0, 1065, 1073, 3, 36, 18, 0, 1066, 1073, 3, 68, 34, 0, 1067, 1073, 3, 470, 235, 0, 1068, 1070, 5, 583, 0, 0, 1069, 1071, 5, 584, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1073, 1, 0, 0, 0, 1072, 952, 1, 0, 0, 0, 1072, 953, 1, 0, 0, 0, 1072, 954, 1, 0, 0, 0, 1072, 955, 1, 0, 0, 0, 1072, 956, 1, 0, 0, 0, 1072, 957, 1, 0, 0, 0, 1072, 958, 1, 0, 0, 0, 1072, 959, 1, 0, 0, 0, 1072, 960, 1, 0, 0, 0, 1072, 961, 1, 0, 0, 0, 1072, 962, 1, 0, 0, 0, 1072, 963, 1, 0, 0, 0, 1072, 964, 1, 0, 0, 0, 1072, 965, 1, 0, 0, 0, 1072, 966, 1, 0, 0, 0, 1072, 967, 1, 0, 0, 0, 1072, 968, 1, 0, 0, 0, 1072, 969, 1, 0, 0, 0, 1072, 970, 1, 0, 0, 0, 1072, 971, 1, 0, 0, 0, 1072, 972, 1, 0, 0, 0, 1072, 973, 1, 0, 0, 0, 1072, 974, 1, 0, 0, 0, 1072, 975, 1, 0, 0, 0, 1072, 976, 1, 0, 0, 0, 1072, 977, 1, 0, 0, 0, 1072, 978, 1, 0, 0, 0, 1072, 979, 1, 0, 0, 0, 1072, 980, 1, 0, 0, 0, 1072, 981, 1, 0, 0, 0, 1072, 982, 1, 0, 0, 0, 1072, 983, 1, 0, 0, 0, 1072, 984, 1, 0, 0, 0, 1072, 985, 1, 0, 0, 0, 1072, 986, 1, 0, 0, 0, 1072, 987, 1, 0, 0, 0, 1072, 988, 1, 0, 0, 0, 1072, 989, 1, 0, 0, 0, 1072, 990, 1, 0, 0, 0, 1072, 991, 1, 0, 0, 0, 1072, 992, 1, 0, 0, 0, 1072, 993, 1, 0, 0, 0, 1072, 994, 1, 0, 0, 0, 1072, 995, 1, 0, 0, 0, 1072, 996, 1, 0, 0, 0, 1072, 997, 1, 0, 0, 0, 1072, 998, 1, 0, 0, 0, 1072, 999, 1, 0, 0, 0, 1072, 1000, 1, 0, 0, 0, 1072, 1001, 1, 0, 0, 0, 1072, 1002, 1, 0, 0, 0, 1072, 1003, 1, 0, 0, 0, 1072, 1004, 1, 0, 0, 0, 1072, 1005, 1, 0, 0, 0, 1072, 1006, 1, 0, 0, 0, 1072, 1007, 1, 0, 0, 0, 1072, 1008, 1, 0, 0, 0, 1072, 1009, 1, 0, 0, 0, 1072, 1010, 1, 0, 0, 0, 1072, 1011, 1, 0, 0, 0, 1072, 1012, 1, 0, 0, 0, 1072, 1013, 1, 0, 0, 0, 1072, 1014, 1, 0, 0, 0, 1072, 1015, 1, 0, 0, 0, 1072, 1016, 1, 0, 0, 0, 1072, 1017, 1, 0, 0, 0, 1072, 1018, 1, 0, 0, 0, 1072, 1019, 1, 0, 0, 0, 1072, 1020, 1, 0, 0, 0, 1072, 1021, 1, 0, 0, 0, 1072, 1022, 1, 0, 0, 0, 1072, 1023, 1, 0, 0, 0, 1072, 1024, 1, 0, 0, 0, 1072, 1025, 1, 0, 0, 0, 1072, 1026, 1, 0, 0, 0, 1072, 1027, 1, 0, 0, 0, 1072, 1028, 1, 0, 0, 0, 1072, 1029, 1, 0, 0, 0, 1072, 1030, 1, 0, 0, 0, 1072, 1031, 1, 0, 0, 0, 1072, 1032, 1, 0, 0, 0, 1072, 1033, 1, 0, 0, 0, 1072, 1034, 1, 0, 0, 0, 1072, 1035, 1, 0, 0, 0, 1072, 1036, 1, 0, 0, 0, 1072, 1037, 1, 0, 0, 0, 1072, 1038, 1, 0, 0, 0, 1072, 1039, 1, 0, 0, 0, 1072, 1040, 1, 0, 0, 0, 1072, 1041, 1, 0, 0, 0, 1072, 1042, 1, 0, 0, 0, 1072, 1043, 1, 0, 0, 0, 1072, 1044, 1, 0, 0, 0, 1072, 1045, 1, 0, 0, 0, 1072, 1046, 1, 0, 0, 0, 1072, 1047, 1, 0, 0, 0, 1072, 1048, 1, 0, 0, 0, 1072, 1049, 1, 0, 0, 0, 1072, 1050, 1, 0, 0, 0, 1072, 1051, 1, 0, 0, 0, 1072, 1052, 1, 0, 0, 0, 1072, 1053, 1, 0, 0, 0, 1072, 1054, 1, 0, 0, 0, 1072, 1055, 1, 0, 0, 0, 1072, 1056, 1, 0, 0, 0, 1072, 1057, 1, 0, 0, 0, 1072, 1058, 1, 0, 0, 0, 1072, 1059, 1, 0, 0, 0, 1072, 1060, 1, 0, 0, 0, 1072, 1061, 1, 0, 0, 0, 1072, 1062, 1, 0, 0, 0, 1072, 1063, 1, 0, 0, 0, 1072, 1064, 1, 0, 0, 0, 1072, 1065, 1, 0, 0, 0, 1072, 1066, 1, 0, 0, 0, 1072, 1067, 1, 0, 0, 0, 1072, 1068, 1, 0, 0, 0, 1073, 5, 1, 0, 0, 0, 1074, 1075, 5, 433, 0, 0, 1075, 1076, 3, 680, 340, 0, 1076, 7, 1, 0, 0, 0, 1077, 1078, 5, 46, 0, 0, 1078, 1079, 5, 318, 0, 0, 1079, 1081, 3, 822, 411, 0, 1080, 1082, 5, 105, 0, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1086, 1, 0, 0, 0, 1083, 1085, 3, 12, 6, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 9, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1092, 5, 287, 0, 0, 1090, 1093, 3, 816, 408, 0, 1091, 1093, 5, 78, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1091, 1, 0, 0, 0, 1093, 1128, 1, 0, 0, 0, 1094, 1095, 7, 0, 0, 0, 1095, 1096, 5, 287, 0, 0, 1096, 1128, 3, 816, 408, 0, 1097, 1128, 5, 228, 0, 0, 1098, 1128, 5, 229, 0, 0, 1099, 1128, 5, 236, 0, 0, 1100, 1128, 5, 237, 0, 0, 1101, 1128, 5, 234, 0, 0, 1102, 1128, 5, 235, 0, 0, 1103, 1128, 5, 232, 0, 0, 1104, 1128, 5, 233, 0, 0, 1105, 1128, 5, 230, 0, 0, 1106, 1128, 5, 231, 0, 0, 1107, 1128, 5, 535, 0, 0, 1108, 1128, 5, 536, 0, 0, 1109, 1128, 5, 537, 0, 0, 1110, 1128, 5, 538, 0, 0, 1111, 1128, 5, 539, 0, 0, 1112, 1128, 5, 540, 0, 0, 1113, 1114, 5, 164, 0, 0, 1114, 1115, 5, 74, 0, 0, 1115, 1128, 3, 820, 410, 0, 1116, 1117, 5, 371, 0, 0, 1117, 1118, 5, 368, 0, 0, 1118, 1128, 3, 816, 408, 0, 1119, 1120, 5, 68, 0, 0, 1120, 1121, 7, 1, 0, 0, 1121, 1128, 3, 788, 394, 0, 1122, 1123, 7, 2, 0, 0, 1123, 1128, 3, 824, 412, 0, 1124, 1125, 5, 134, 0, 0, 1125, 1128, 3, 788, 394, 0, 1126, 1128, 3, 834, 417, 0, 1127, 1089, 1, 0, 0, 0, 1127, 1094, 1, 0, 0, 0, 1127, 1097, 1, 0, 0, 0, 1127, 1098, 1, 0, 0, 0, 1127, 1099, 1, 0, 0, 0, 1127, 1100, 1, 0, 0, 0, 1127, 1101, 1, 0, 0, 0, 1127, 1102, 1, 0, 0, 0, 1127, 1103, 1, 0, 0, 0, 1127, 1104, 1, 0, 0, 0, 1127, 1105, 1, 0, 0, 0, 1127, 1106, 1, 0, 0, 0, 1127, 1107, 1, 0, 0, 0, 1127, 1108, 1, 0, 0, 0, 1127, 1109, 1, 0, 0, 0, 1127, 1110, 1, 0, 0, 0, 1127, 1111, 1, 0, 0, 0, 1127, 1112, 1, 0, 0, 0, 1127, 1113, 1, 0, 0, 0, 1127, 1116, 1, 0, 0, 0, 1127, 1119, 1, 0, 0, 0, 1127, 1122, 1, 0, 0, 0, 1127, 1124, 1, 0, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 11, 1, 0, 0, 0, 1129, 1138, 3, 10, 5, 0, 1130, 1131, 5, 348, 0, 0, 1131, 1138, 5, 574, 0, 0, 1132, 1133, 7, 3, 0, 0, 1133, 1138, 3, 824, 412, 0, 1134, 1135, 5, 68, 0, 0, 1135, 1136, 7, 1, 0, 0, 1136, 1138, 3, 824, 412, 0, 1137, 1129, 1, 0, 0, 0, 1137, 1130, 1, 0, 0, 0, 1137, 1132, 1, 0, 0, 0, 1137, 1134, 1, 0, 0, 0, 1138, 13, 1, 0, 0, 0, 1139, 1140, 5, 46, 0, 0, 1140, 1141, 5, 99, 0, 0, 1141, 1143, 3, 822, 411, 0, 1142, 1144, 5, 105, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1148, 1, 0, 0, 0, 1145, 1147, 3, 12, 6, 0, 1146, 1145, 1, 0, 0, 0, 1147, 1150, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 15, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1151, 1152, 5, 138, 0, 0, 1152, 1153, 7, 2, 0, 0, 1153, 1155, 3, 822, 411, 0, 1154, 1156, 5, 105, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1160, 1, 0, 0, 0, 1157, 1159, 3, 10, 5, 0, 1158, 1157, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 17, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1164, 5, 138, 0, 0, 1164, 1167, 7, 2, 0, 0, 1165, 1168, 5, 30, 0, 0, 1166, 1168, 3, 822, 411, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 5, 68, 0, 0, 1170, 1171, 5, 175, 0, 0, 1171, 1172, 3, 792, 396, 0, 1172, 1173, 3, 64, 32, 0, 1173, 19, 1, 0, 0, 0, 1174, 1175, 5, 138, 0, 0, 1175, 1176, 5, 442, 0, 0, 1176, 1178, 3, 798, 399, 0, 1177, 1179, 3, 362, 181, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 3, 22, 11, 0, 1181, 21, 1, 0, 0, 0, 1182, 1186, 3, 24, 12, 0, 1183, 1185, 3, 24, 12, 0, 1184, 1183, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1191, 5, 315, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1209, 1, 0, 0, 0, 1192, 1193, 5, 309, 0, 0, 1193, 1194, 5, 94, 0, 0, 1194, 1209, 3, 796, 398, 0, 1195, 1196, 5, 282, 0, 0, 1196, 1197, 5, 94, 0, 0, 1197, 1209, 3, 822, 411, 0, 1198, 1199, 5, 333, 0, 0, 1199, 1200, 5, 323, 0, 0, 1200, 1209, 3, 32, 16, 0, 1201, 1203, 5, 269, 0, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 5, 462, 0, 0, 1205, 1206, 5, 80, 0, 0, 1206, 1207, 5, 204, 0, 0, 1207, 1209, 3, 826, 413, 0, 1208, 1182, 1, 0, 0, 0, 1208, 1192, 1, 0, 0, 0, 1208, 1195, 1, 0, 0, 0, 1208, 1198, 1, 0, 0, 0, 1208, 1202, 1, 0, 0, 0, 1209, 23, 1, 0, 0, 0, 1210, 1253, 5, 222, 0, 0, 1211, 1253, 5, 338, 0, 0, 1212, 1253, 5, 377, 0, 0, 1213, 1215, 5, 77, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1253, 5, 250, 0, 0, 1217, 1219, 5, 205, 0, 0, 1218, 1217, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1221, 5, 327, 0, 0, 1221, 1228, 5, 243, 0, 0, 1222, 1224, 5, 205, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 5, 327, 0, 0, 1226, 1228, 5, 181, 0, 0, 1227, 1218, 1, 0, 0, 0, 1227, 1223, 1, 0, 0, 0, 1228, 1253, 1, 0, 0, 0, 1229, 1230, 5, 460, 0, 0, 1230, 1253, 7, 4, 0, 0, 1231, 1232, 5, 170, 0, 0, 1232, 1253, 3, 832, 416, 0, 1233, 1234, 5, 320, 0, 0, 1234, 1253, 3, 826, 413, 0, 1235, 1236, 5, 333, 0, 0, 1236, 1237, 3, 826, 413, 0, 1237, 1240, 7, 5, 0, 0, 1238, 1241, 3, 826, 413, 0, 1239, 1241, 5, 53, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1239, 1, 0, 0, 0, 1241, 1253, 1, 0, 0, 0, 1242, 1243, 5, 333, 0, 0, 1243, 1244, 3, 826, 413, 0, 1244, 1245, 5, 64, 0, 0, 1245, 1246, 5, 434, 0, 0, 1246, 1253, 1, 0, 0, 0, 1247, 1250, 5, 313, 0, 0, 1248, 1251, 3, 826, 413, 0, 1249, 1251, 5, 30, 0, 0, 1250, 1248, 1, 0, 0, 0, 1250, 1249, 1, 0, 0, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1210, 1, 0, 0, 0, 1252, 1211, 1, 0, 0, 0, 1252, 1212, 1, 0, 0, 0, 1252, 1214, 1, 0, 0, 0, 1252, 1227, 1, 0, 0, 0, 1252, 1229, 1, 0, 0, 0, 1252, 1231, 1, 0, 0, 0, 1252, 1233, 1, 0, 0, 0, 1252, 1235, 1, 0, 0, 0, 1252, 1242, 1, 0, 0, 0, 1252, 1247, 1, 0, 0, 0, 1253, 25, 1, 0, 0, 0, 1254, 1255, 5, 46, 0, 0, 1255, 1256, 5, 66, 0, 0, 1256, 1258, 3, 822, 411, 0, 1257, 1259, 5, 105, 0, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1263, 1, 0, 0, 0, 1260, 1262, 3, 12, 6, 0, 1261, 1260, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 27, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1267, 5, 138, 0, 0, 1267, 1268, 5, 66, 0, 0, 1268, 1269, 3, 822, 411, 0, 1269, 1270, 7, 6, 0, 0, 1270, 1271, 5, 99, 0, 0, 1271, 1272, 3, 824, 412, 0, 1272, 29, 1, 0, 0, 0, 1273, 1274, 5, 46, 0, 0, 1274, 1276, 5, 323, 0, 0, 1275, 1277, 3, 288, 144, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1284, 1, 0, 0, 0, 1278, 1280, 3, 32, 16, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 5, 106, 0, 0, 1282, 1285, 3, 822, 411, 0, 1283, 1285, 3, 32, 16, 0, 1284, 1279, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1289, 1, 0, 0, 0, 1286, 1288, 3, 34, 17, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 31, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 3, 310, 155, 0, 1293, 33, 1, 0, 0, 0, 1294, 1301, 3, 114, 57, 0, 1295, 1301, 3, 352, 176, 0, 1296, 1301, 3, 190, 95, 0, 1297, 1301, 3, 250, 125, 0, 1298, 1301, 3, 328, 164, 0, 1299, 1301, 3, 470, 235, 0, 1300, 1294, 1, 0, 0, 0, 1300, 1295, 1, 0, 0, 0, 1300, 1296, 1, 0, 0, 0, 1300, 1297, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1299, 1, 0, 0, 0, 1301, 35, 1, 0, 0, 0, 1302, 1304, 5, 333, 0, 0, 1303, 1305, 7, 7, 0, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 3, 38, 19, 0, 1307, 37, 1, 0, 0, 0, 1308, 1309, 5, 356, 0, 0, 1309, 1317, 3, 468, 234, 0, 1310, 1311, 5, 332, 0, 0, 1311, 1312, 5, 154, 0, 0, 1312, 1313, 5, 36, 0, 0, 1313, 1314, 5, 356, 0, 0, 1314, 1317, 3, 468, 234, 0, 1315, 1317, 3, 42, 21, 0, 1316, 1308, 1, 0, 0, 0, 1316, 1310, 1, 0, 0, 0, 1316, 1315, 1, 0, 0, 0, 1317, 39, 1, 0, 0, 0, 1318, 1321, 5, 30, 0, 0, 1319, 1321, 3, 44, 22, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1319, 1, 0, 0, 0, 1321, 1323, 1, 0, 0, 0, 1322, 1324, 7, 5, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1327, 1, 0, 0, 0, 1325, 1328, 5, 53, 0, 0, 1326, 1328, 3, 46, 23, 0, 1327, 1325, 1, 0, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 41, 1, 0, 0, 0, 1329, 1330, 5, 418, 0, 0, 1330, 1331, 5, 386, 0, 0, 1331, 1358, 3, 56, 28, 0, 1332, 1333, 5, 152, 0, 0, 1333, 1358, 3, 816, 408, 0, 1334, 1335, 5, 323, 0, 0, 1335, 1358, 3, 794, 397, 0, 1336, 1339, 5, 267, 0, 0, 1337, 1340, 3, 816, 408, 0, 1338, 1340, 5, 53, 0, 0, 1339, 1337, 1, 0, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1358, 1, 0, 0, 0, 1341, 1342, 5, 318, 0, 0, 1342, 1358, 3, 58, 29, 0, 1343, 1344, 5, 332, 0, 0, 1344, 1345, 5, 106, 0, 0, 1345, 1358, 3, 58, 29, 0, 1346, 1347, 5, 383, 0, 0, 1347, 1348, 5, 279, 0, 0, 1348, 1358, 3, 692, 346, 0, 1349, 1350, 5, 356, 0, 0, 1350, 1351, 5, 337, 0, 0, 1351, 1358, 3, 816, 408, 0, 1352, 1353, 3, 44, 22, 0, 1353, 1354, 5, 64, 0, 0, 1354, 1355, 5, 434, 0, 0, 1355, 1358, 1, 0, 0, 0, 1356, 1358, 3, 40, 20, 0, 1357, 1329, 1, 0, 0, 0, 1357, 1332, 1, 0, 0, 0, 1357, 1334, 1, 0, 0, 0, 1357, 1336, 1, 0, 0, 0, 1357, 1341, 1, 0, 0, 0, 1357, 1343, 1, 0, 0, 0, 1357, 1346, 1, 0, 0, 0, 1357, 1349, 1, 0, 0, 0, 1357, 1352, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 43, 1, 0, 0, 0, 1359, 1364, 3, 826, 413, 0, 1360, 1361, 5, 11, 0, 0, 1361, 1363, 3, 826, 413, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1366, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 45, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1372, 3, 48, 24, 0, 1368, 1369, 5, 6, 0, 0, 1369, 1371, 3, 48, 24, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1374, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 47, 1, 0, 0, 0, 1374, 1372, 1, 0, 0, 0, 1375, 1378, 3, 54, 27, 0, 1376, 1378, 3, 196, 98, 0, 1377, 1375, 1, 0, 0, 0, 1377, 1376, 1, 0, 0, 0, 1378, 49, 1, 0, 0, 0, 1379, 1380, 5, 300, 0, 0, 1380, 1385, 7, 8, 0, 0, 1381, 1382, 5, 310, 0, 0, 1382, 1385, 5, 300, 0, 0, 1383, 1385, 5, 330, 0, 0, 1384, 1379, 1, 0, 0, 0, 1384, 1381, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 51, 1, 0, 0, 0, 1386, 1393, 5, 96, 0, 0, 1387, 1393, 5, 60, 0, 0, 1388, 1393, 5, 80, 0, 0, 1389, 1393, 3, 806, 403, 0, 1390, 1393, 3, 840, 420, 0, 1391, 1393, 3, 816, 408, 0, 1392, 1386, 1, 0, 0, 0, 1392, 1387, 1, 0, 0, 0, 1392, 1388, 1, 0, 0, 0, 1392, 1389, 1, 0, 0, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1391, 1, 0, 0, 0, 1393, 53, 1, 0, 0, 0, 1394, 1399, 5, 96, 0, 0, 1395, 1399, 5, 60, 0, 0, 1396, 1399, 5, 80, 0, 0, 1397, 1399, 3, 58, 29, 0, 1398, 1394, 1, 0, 0, 0, 1398, 1395, 1, 0, 0, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1397, 1, 0, 0, 0, 1399, 55, 1, 0, 0, 0, 1400, 1415, 3, 816, 408, 0, 1401, 1415, 5, 53, 0, 0, 1402, 1415, 3, 834, 417, 0, 1403, 1404, 5, 403, 0, 0, 1404, 1406, 3, 816, 408, 0, 1405, 1407, 3, 664, 332, 0, 1406, 1405, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1415, 1, 0, 0, 0, 1408, 1409, 5, 403, 0, 0, 1409, 1410, 3, 656, 328, 0, 1410, 1411, 3, 816, 408, 0, 1411, 1415, 1, 0, 0, 0, 1412, 1415, 3, 196, 98, 0, 1413, 1415, 5, 254, 0, 0, 1414, 1400, 1, 0, 0, 0, 1414, 1401, 1, 0, 0, 0, 1414, 1402, 1, 0, 0, 0, 1414, 1403, 1, 0, 0, 0, 1414, 1408, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1413, 1, 0, 0, 0, 1415, 57, 1, 0, 0, 0, 1416, 1419, 3, 830, 415, 0, 1417, 1419, 3, 816, 408, 0, 1418, 1416, 1, 0, 0, 0, 1418, 1417, 1, 0, 0, 0, 1419, 59, 1, 0, 0, 0, 1420, 1421, 5, 313, 0, 0, 1421, 1422, 3, 62, 31, 0, 1422, 61, 1, 0, 0, 0, 1423, 1424, 5, 418, 0, 0, 1424, 1433, 5, 386, 0, 0, 1425, 1426, 5, 356, 0, 0, 1426, 1427, 5, 244, 0, 0, 1427, 1433, 5, 251, 0, 0, 1428, 1429, 5, 332, 0, 0, 1429, 1433, 5, 106, 0, 0, 1430, 1433, 5, 30, 0, 0, 1431, 1433, 3, 44, 22, 0, 1432, 1423, 1, 0, 0, 0, 1432, 1425, 1, 0, 0, 0, 1432, 1428, 1, 0, 0, 0, 1432, 1430, 1, 0, 0, 0, 1432, 1431, 1, 0, 0, 0, 1433, 63, 1, 0, 0, 0, 1434, 1435, 5, 333, 0, 0, 1435, 1438, 3, 38, 19, 0, 1436, 1438, 3, 60, 30, 0, 1437, 1434, 1, 0, 0, 0, 1437, 1436, 1, 0, 0, 0, 1438, 65, 1, 0, 0, 0, 1439, 1440, 5, 333, 0, 0, 1440, 1443, 3, 42, 21, 0, 1441, 1443, 3, 60, 30, 0, 1442, 1439, 1, 0, 0, 0, 1442, 1441, 1, 0, 0, 0, 1443, 67, 1, 0, 0, 0, 1444, 1454, 5, 335, 0, 0, 1445, 1455, 3, 44, 22, 0, 1446, 1447, 5, 418, 0, 0, 1447, 1455, 5, 386, 0, 0, 1448, 1449, 5, 356, 0, 0, 1449, 1450, 5, 244, 0, 0, 1450, 1455, 5, 251, 0, 0, 1451, 1452, 5, 332, 0, 0, 1452, 1455, 5, 106, 0, 0, 1453, 1455, 5, 30, 0, 0, 1454, 1445, 1, 0, 0, 0, 1454, 1446, 1, 0, 0, 0, 1454, 1448, 1, 0, 0, 0, 1454, 1451, 1, 0, 0, 0, 1454, 1453, 1, 0, 0, 0, 1455, 69, 1, 0, 0, 0, 1456, 1457, 5, 333, 0, 0, 1457, 1460, 5, 165, 0, 0, 1458, 1461, 5, 30, 0, 0, 1459, 1461, 3, 764, 382, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1459, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 7, 9, 0, 0, 1463, 71, 1, 0, 0, 0, 1464, 1465, 5, 155, 0, 0, 1465, 73, 1, 0, 0, 0, 1466, 1467, 5, 187, 0, 0, 1467, 1468, 7, 10, 0, 0, 1468, 75, 1, 0, 0, 0, 1469, 1470, 5, 138, 0, 0, 1470, 1472, 5, 92, 0, 0, 1471, 1473, 3, 416, 208, 0, 1472, 1471, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1477, 3, 620, 310, 0, 1475, 1478, 3, 78, 39, 0, 1476, 1478, 3, 80, 40, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1476, 1, 0, 0, 0, 1478, 1587, 1, 0, 0, 0, 1479, 1480, 5, 138, 0, 0, 1480, 1481, 5, 92, 0, 0, 1481, 1482, 5, 30, 0, 0, 1482, 1483, 5, 68, 0, 0, 1483, 1487, 3, 170, 85, 0, 1484, 1485, 5, 281, 0, 0, 1485, 1486, 5, 147, 0, 0, 1486, 1488, 3, 824, 412, 0, 1487, 1484, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 5, 333, 0, 0, 1490, 1491, 5, 351, 0, 0, 1491, 1493, 3, 774, 387, 0, 1492, 1494, 5, 272, 0, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1587, 1, 0, 0, 0, 1495, 1496, 5, 138, 0, 0, 1496, 1498, 5, 92, 0, 0, 1497, 1499, 3, 416, 208, 0, 1498, 1497, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 3, 778, 389, 0, 1501, 1502, 3, 82, 41, 0, 1502, 1503, 3, 98, 49, 0, 1503, 1587, 1, 0, 0, 0, 1504, 1505, 5, 138, 0, 0, 1505, 1507, 5, 92, 0, 0, 1506, 1508, 3, 416, 208, 0, 1507, 1506, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 3, 778, 389, 0, 1510, 1511, 5, 436, 0, 0, 1511, 1512, 5, 285, 0, 0, 1512, 1514, 3, 784, 392, 0, 1513, 1515, 7, 11, 0, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1587, 1, 0, 0, 0, 1516, 1517, 5, 138, 0, 0, 1517, 1519, 5, 226, 0, 0, 1518, 1520, 3, 416, 208, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1524, 3, 784, 392, 0, 1522, 1525, 3, 78, 39, 0, 1523, 1525, 3, 82, 41, 0, 1524, 1522, 1, 0, 0, 0, 1524, 1523, 1, 0, 0, 0, 1525, 1587, 1, 0, 0, 0, 1526, 1527, 5, 138, 0, 0, 1527, 1528, 5, 226, 0, 0, 1528, 1529, 5, 30, 0, 0, 1529, 1530, 5, 68, 0, 0, 1530, 1534, 3, 170, 85, 0, 1531, 1532, 5, 281, 0, 0, 1532, 1533, 5, 147, 0, 0, 1533, 1535, 3, 824, 412, 0, 1534, 1531, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 5, 333, 0, 0, 1537, 1539, 3, 170, 85, 0, 1538, 1540, 5, 272, 0, 0, 1539, 1538, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1587, 1, 0, 0, 0, 1541, 1542, 5, 138, 0, 0, 1542, 1544, 5, 328, 0, 0, 1543, 1545, 3, 416, 208, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 3, 784, 392, 0, 1547, 1548, 3, 78, 39, 0, 1548, 1587, 1, 0, 0, 0, 1549, 1551, 5, 138, 0, 0, 1550, 1552, 5, 259, 0, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 5, 376, 0, 0, 1554, 1556, 3, 416, 208, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 3, 782, 391, 0, 1558, 1559, 3, 78, 39, 0, 1559, 1587, 1, 0, 0, 0, 1560, 1561, 5, 138, 0, 0, 1561, 1562, 5, 259, 0, 0, 1562, 1563, 5, 376, 0, 0, 1563, 1564, 5, 30, 0, 0, 1564, 1565, 5, 68, 0, 0, 1565, 1569, 3, 170, 85, 0, 1566, 1567, 5, 281, 0, 0, 1567, 1568, 5, 147, 0, 0, 1568, 1570, 3, 824, 412, 0, 1569, 1566, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 5, 333, 0, 0, 1572, 1573, 5, 351, 0, 0, 1573, 1575, 3, 774, 387, 0, 1574, 1576, 5, 272, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1587, 1, 0, 0, 0, 1577, 1578, 5, 138, 0, 0, 1578, 1579, 5, 63, 0, 0, 1579, 1581, 5, 92, 0, 0, 1580, 1582, 3, 416, 208, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 3, 620, 310, 0, 1584, 1585, 3, 78, 39, 0, 1585, 1587, 1, 0, 0, 0, 1586, 1469, 1, 0, 0, 0, 1586, 1479, 1, 0, 0, 0, 1586, 1495, 1, 0, 0, 0, 1586, 1504, 1, 0, 0, 0, 1586, 1516, 1, 0, 0, 0, 1586, 1526, 1, 0, 0, 0, 1586, 1541, 1, 0, 0, 0, 1586, 1549, 1, 0, 0, 0, 1586, 1560, 1, 0, 0, 0, 1586, 1577, 1, 0, 0, 0, 1587, 77, 1, 0, 0, 0, 1588, 1593, 3, 84, 42, 0, 1589, 1590, 5, 6, 0, 0, 1590, 1592, 3, 84, 42, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 79, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 3, 82, 41, 0, 1597, 1598, 3, 98, 49, 0, 1598, 1603, 1, 0, 0, 0, 1599, 1600, 5, 436, 0, 0, 1600, 1601, 5, 285, 0, 0, 1601, 1603, 3, 784, 392, 0, 1602, 1596, 1, 0, 0, 0, 1602, 1599, 1, 0, 0, 0, 1603, 81, 1, 0, 0, 0, 1604, 1605, 5, 435, 0, 0, 1605, 1606, 5, 285, 0, 0, 1606, 1607, 3, 784, 392, 0, 1607, 83, 1, 0, 0, 0, 1608, 1611, 5, 133, 0, 0, 1609, 1610, 5, 45, 0, 0, 1610, 1612, 3, 826, 413, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1842, 3, 136, 68, 0, 1614, 1615, 5, 138, 0, 0, 1615, 1616, 5, 45, 0, 0, 1616, 1620, 3, 826, 413, 0, 1617, 1619, 3, 266, 133, 0, 1618, 1617, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1842, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1623, 1624, 5, 372, 0, 0, 1624, 1625, 5, 45, 0, 0, 1625, 1842, 3, 826, 413, 0, 1626, 1627, 5, 191, 0, 0, 1627, 1629, 5, 45, 0, 0, 1628, 1630, 3, 416, 208, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 3, 826, 413, 0, 1632, 1634, 3, 88, 44, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1842, 1, 0, 0, 0, 1635, 1636, 5, 333, 0, 0, 1636, 1637, 5, 379, 0, 0, 1637, 1842, 7, 12, 0, 0, 1638, 1639, 5, 158, 0, 0, 1639, 1640, 5, 80, 0, 0, 1640, 1842, 3, 826, 413, 0, 1641, 1642, 5, 333, 0, 0, 1642, 1842, 7, 13, 0, 0, 1643, 1645, 5, 193, 0, 0, 1644, 1646, 7, 14, 0, 0, 1645, 1644, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1842, 5, 357, 0, 0, 1648, 1649, 5, 186, 0, 0, 1649, 1653, 5, 357, 0, 0, 1650, 1654, 5, 30, 0, 0, 1651, 1654, 5, 99, 0, 0, 1652, 1654, 3, 826, 413, 0, 1653, 1650, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1842, 1, 0, 0, 0, 1655, 1656, 5, 193, 0, 0, 1656, 1657, 7, 14, 0, 0, 1657, 1658, 5, 321, 0, 0, 1658, 1842, 3, 826, 413, 0, 1659, 1660, 5, 186, 0, 0, 1660, 1661, 5, 321, 0, 0, 1661, 1842, 3, 826, 413, 0, 1662, 1664, 5, 269, 0, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 5, 228, 0, 0, 1666, 1842, 3, 784, 392, 0, 1667, 1668, 5, 275, 0, 0, 1668, 1842, 3, 310, 155, 0, 1669, 1670, 5, 77, 0, 0, 1670, 1842, 5, 275, 0, 0, 1671, 1672, 5, 282, 0, 0, 1672, 1673, 5, 94, 0, 0, 1673, 1842, 3, 822, 411, 0, 1674, 1675, 5, 333, 0, 0, 1675, 1676, 5, 351, 0, 0, 1676, 1842, 3, 774, 387, 0, 1677, 1678, 5, 312, 0, 0, 1678, 1683, 5, 219, 0, 0, 1679, 1684, 5, 270, 0, 0, 1680, 1684, 5, 113, 0, 0, 1681, 1684, 5, 53, 0, 0, 1682, 1684, 3, 174, 87, 0, 1683, 1679, 1, 0, 0, 0, 1683, 1680, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1683, 1682, 1, 0, 0, 0, 1684, 1842, 1, 0, 0, 0, 1685, 1692, 5, 193, 0, 0, 1686, 1692, 5, 186, 0, 0, 1687, 1689, 5, 269, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1692, 5, 209, 0, 0, 1691, 1685, 1, 0, 0, 0, 1691, 1686, 1, 0, 0, 0, 1691, 1688, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 5, 414, 0, 0, 1694, 1695, 5, 251, 0, 0, 1695, 1842, 5, 327, 0, 0, 1696, 1698, 5, 191, 0, 0, 1697, 1699, 5, 44, 0, 0, 1698, 1697, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1701, 1, 0, 0, 0, 1700, 1702, 3, 416, 208, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1705, 3, 806, 403, 0, 1704, 1706, 3, 88, 44, 0, 1705, 1704, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 1842, 1, 0, 0, 0, 1707, 1709, 5, 133, 0, 0, 1708, 1710, 5, 44, 0, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 288, 144, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1842, 3, 126, 63, 0, 1715, 1717, 5, 138, 0, 0, 1716, 1718, 5, 44, 0, 0, 1717, 1716, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1722, 3, 806, 403, 0, 1720, 1723, 3, 86, 43, 0, 1721, 1723, 3, 216, 108, 0, 1722, 1720, 1, 0, 0, 0, 1722, 1721, 1, 0, 0, 0, 1723, 1842, 1, 0, 0, 0, 1724, 1726, 5, 138, 0, 0, 1725, 1727, 5, 44, 0, 0, 1726, 1725, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 3, 806, 403, 0, 1729, 1730, 7, 15, 0, 0, 1730, 1731, 5, 77, 0, 0, 1731, 1732, 5, 78, 0, 0, 1732, 1842, 1, 0, 0, 0, 1733, 1735, 5, 138, 0, 0, 1734, 1736, 5, 44, 0, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 3, 806, 403, 0, 1738, 1739, 5, 191, 0, 0, 1739, 1741, 5, 437, 0, 0, 1740, 1742, 3, 416, 208, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1842, 1, 0, 0, 0, 1743, 1745, 5, 138, 0, 0, 1744, 1746, 5, 44, 0, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 3, 806, 403, 0, 1748, 1749, 5, 333, 0, 0, 1749, 1750, 5, 342, 0, 0, 1750, 1751, 3, 820, 410, 0, 1751, 1842, 1, 0, 0, 0, 1752, 1754, 5, 138, 0, 0, 1753, 1755, 5, 44, 0, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1758, 3, 806, 403, 0, 1757, 1752, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 7, 16, 0, 0, 1760, 1842, 3, 92, 46, 0, 1761, 1763, 5, 138, 0, 0, 1762, 1764, 5, 44, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 3, 806, 403, 0, 1766, 1767, 5, 333, 0, 0, 1767, 1768, 5, 345, 0, 0, 1768, 1769, 3, 826, 413, 0, 1769, 1842, 1, 0, 0, 0, 1770, 1772, 5, 138, 0, 0, 1771, 1773, 5, 44, 0, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 3, 806, 403, 0, 1775, 1776, 5, 133, 0, 0, 1776, 1777, 5, 438, 0, 0, 1777, 1778, 3, 132, 66, 0, 1778, 1779, 5, 36, 0, 0, 1779, 1788, 5, 219, 0, 0, 1780, 1782, 5, 2, 0, 0, 1781, 1783, 3, 194, 97, 0, 1782, 1781, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1782, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 5, 3, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1780, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1842, 1, 0, 0, 0, 1790, 1792, 5, 138, 0, 0, 1791, 1793, 5, 44, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1808, 3, 806, 403, 0, 1795, 1800, 5, 314, 0, 0, 1796, 1798, 5, 105, 0, 0, 1797, 1796, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1801, 3, 196, 98, 0, 1800, 1797, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1809, 1, 0, 0, 0, 1802, 1806, 5, 333, 0, 0, 1803, 1807, 3, 194, 97, 0, 1804, 1805, 5, 438, 0, 0, 1805, 1807, 3, 132, 66, 0, 1806, 1803, 1, 0, 0, 0, 1806, 1804, 1, 0, 0, 0, 1807, 1809, 1, 0, 0, 0, 1808, 1795, 1, 0, 0, 0, 1808, 1802, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1842, 1, 0, 0, 0, 1812, 1814, 5, 138, 0, 0, 1813, 1815, 5, 44, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 3, 806, 403, 0, 1817, 1818, 5, 191, 0, 0, 1818, 1820, 5, 219, 0, 0, 1819, 1821, 3, 416, 208, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1842, 1, 0, 0, 0, 1822, 1824, 5, 138, 0, 0, 1823, 1825, 5, 44, 0, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1829, 3, 806, 403, 0, 1827, 1828, 5, 333, 0, 0, 1828, 1830, 5, 174, 0, 0, 1829, 1827, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1832, 5, 360, 0, 0, 1832, 1834, 3, 648, 324, 0, 1833, 1835, 3, 90, 45, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1838, 1, 0, 0, 0, 1836, 1837, 5, 100, 0, 0, 1837, 1839, 3, 670, 335, 0, 1838, 1836, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1842, 3, 216, 108, 0, 1841, 1608, 1, 0, 0, 0, 1841, 1614, 1, 0, 0, 0, 1841, 1623, 1, 0, 0, 0, 1841, 1626, 1, 0, 0, 0, 1841, 1635, 1, 0, 0, 0, 1841, 1638, 1, 0, 0, 0, 1841, 1641, 1, 0, 0, 0, 1841, 1643, 1, 0, 0, 0, 1841, 1648, 1, 0, 0, 0, 1841, 1655, 1, 0, 0, 0, 1841, 1659, 1, 0, 0, 0, 1841, 1663, 1, 0, 0, 0, 1841, 1667, 1, 0, 0, 0, 1841, 1669, 1, 0, 0, 0, 1841, 1671, 1, 0, 0, 0, 1841, 1674, 1, 0, 0, 0, 1841, 1677, 1, 0, 0, 0, 1841, 1691, 1, 0, 0, 0, 1841, 1696, 1, 0, 0, 0, 1841, 1707, 1, 0, 0, 0, 1841, 1715, 1, 0, 0, 0, 1841, 1724, 1, 0, 0, 0, 1841, 1733, 1, 0, 0, 0, 1841, 1743, 1, 0, 0, 0, 1841, 1757, 1, 0, 0, 0, 1841, 1761, 1, 0, 0, 0, 1841, 1770, 1, 0, 0, 0, 1841, 1790, 1, 0, 0, 0, 1841, 1812, 1, 0, 0, 0, 1841, 1822, 1, 0, 0, 0, 1841, 1840, 1, 0, 0, 0, 1842, 85, 1, 0, 0, 0, 1843, 1844, 5, 333, 0, 0, 1844, 1845, 5, 53, 0, 0, 1845, 1849, 3, 670, 335, 0, 1846, 1847, 5, 191, 0, 0, 1847, 1849, 5, 53, 0, 0, 1848, 1843, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1849, 87, 1, 0, 0, 0, 1850, 1851, 7, 17, 0, 0, 1851, 89, 1, 0, 0, 0, 1852, 1853, 5, 43, 0, 0, 1853, 1854, 3, 310, 155, 0, 1854, 91, 1, 0, 0, 0, 1855, 1856, 5, 2, 0, 0, 1856, 1861, 3, 96, 48, 0, 1857, 1858, 5, 6, 0, 0, 1858, 1860, 3, 96, 48, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1863, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1864, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1864, 1865, 5, 3, 0, 0, 1865, 93, 1, 0, 0, 0, 1866, 1867, 5, 105, 0, 0, 1867, 1868, 3, 92, 46, 0, 1868, 95, 1, 0, 0, 0, 1869, 1874, 3, 832, 416, 0, 1870, 1871, 5, 10, 0, 0, 1871, 1875, 3, 282, 141, 0, 1872, 1873, 5, 11, 0, 0, 1873, 1875, 3, 280, 140, 0, 1874, 1870, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 97, 1, 0, 0, 0, 1876, 1877, 5, 62, 0, 0, 1877, 1878, 5, 422, 0, 0, 1878, 1879, 5, 105, 0, 0, 1879, 1880, 5, 2, 0, 0, 1880, 1881, 5, 533, 0, 0, 1881, 1882, 3, 196, 98, 0, 1882, 1883, 5, 6, 0, 0, 1883, 1884, 5, 534, 0, 0, 1884, 1885, 3, 196, 98, 0, 1885, 1886, 5, 3, 0, 0, 1886, 1900, 1, 0, 0, 0, 1887, 1888, 5, 62, 0, 0, 1888, 1889, 5, 422, 0, 0, 1889, 1890, 5, 68, 0, 0, 1890, 1900, 3, 528, 264, 0, 1891, 1892, 5, 62, 0, 0, 1892, 1893, 5, 422, 0, 0, 1893, 1894, 5, 64, 0, 0, 1894, 1895, 3, 528, 264, 0, 1895, 1896, 5, 94, 0, 0, 1896, 1897, 3, 528, 264, 0, 1897, 1900, 1, 0, 0, 0, 1898, 1900, 5, 53, 0, 0, 1899, 1876, 1, 0, 0, 0, 1899, 1887, 1, 0, 0, 0, 1899, 1891, 1, 0, 0, 0, 1899, 1898, 1, 0, 0, 0, 1900, 99, 1, 0, 0, 0, 1901, 1902, 5, 138, 0, 0, 1902, 1903, 5, 360, 0, 0, 1903, 1904, 3, 310, 155, 0, 1904, 1909, 3, 102, 51, 0, 1905, 1906, 5, 6, 0, 0, 1906, 1908, 3, 102, 51, 0, 1907, 1905, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 101, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1912, 1913, 5, 133, 0, 0, 1913, 1914, 5, 143, 0, 0, 1914, 1916, 3, 640, 320, 0, 1915, 1917, 3, 88, 44, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1943, 1, 0, 0, 0, 1918, 1919, 5, 191, 0, 0, 1919, 1921, 5, 143, 0, 0, 1920, 1922, 3, 416, 208, 0, 1921, 1920, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1925, 3, 826, 413, 0, 1924, 1926, 3, 88, 44, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1943, 1, 0, 0, 0, 1927, 1928, 5, 138, 0, 0, 1928, 1929, 5, 143, 0, 0, 1929, 1932, 3, 826, 413, 0, 1930, 1931, 5, 333, 0, 0, 1931, 1933, 5, 174, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 5, 360, 0, 0, 1935, 1937, 3, 648, 324, 0, 1936, 1938, 3, 90, 45, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1940, 1, 0, 0, 0, 1939, 1941, 3, 88, 44, 0, 1940, 1939, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1943, 1, 0, 0, 0, 1942, 1912, 1, 0, 0, 0, 1942, 1918, 1, 0, 0, 0, 1942, 1927, 1, 0, 0, 0, 1943, 103, 1, 0, 0, 0, 1944, 1947, 5, 157, 0, 0, 1945, 1948, 3, 826, 413, 0, 1946, 1948, 5, 30, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1946, 1, 0, 0, 0, 1948, 105, 1, 0, 0, 0, 1949, 1951, 5, 169, 0, 0, 1950, 1952, 5, 107, 0, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1955, 3, 778, 389, 0, 1954, 1956, 3, 138, 69, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1959, 7, 18, 0, 0, 1958, 1960, 5, 297, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1964, 1, 0, 0, 0, 1961, 1965, 3, 816, 408, 0, 1962, 1965, 5, 343, 0, 0, 1963, 1965, 5, 344, 0, 0, 1964, 1961, 1, 0, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1963, 1, 0, 0, 0, 1965, 1971, 1, 0, 0, 0, 1966, 1968, 5, 100, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 5, 184, 0, 0, 1970, 1972, 3, 816, 408, 0, 1971, 1967, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 5, 105, 0, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 3, 110, 55, 0, 1977, 1979, 3, 634, 317, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1999, 1, 0, 0, 0, 1980, 1981, 5, 169, 0, 0, 1981, 1982, 5, 2, 0, 0, 1982, 1983, 3, 524, 262, 0, 1983, 1984, 5, 3, 0, 0, 1984, 1986, 5, 94, 0, 0, 1985, 1987, 5, 297, 0, 0, 1986, 1985, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1991, 1, 0, 0, 0, 1988, 1992, 3, 816, 408, 0, 1989, 1992, 5, 343, 0, 0, 1990, 1992, 5, 344, 0, 0, 1991, 1988, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1990, 1, 0, 0, 0, 1992, 1994, 1, 0, 0, 0, 1993, 1995, 5, 105, 0, 0, 1994, 1993, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 3, 110, 55, 0, 1997, 1999, 1, 0, 0, 0, 1998, 1949, 1, 0, 0, 0, 1998, 1980, 1, 0, 0, 0, 1999, 107, 1, 0, 0, 0, 2000, 2043, 5, 107, 0, 0, 2001, 2043, 5, 112, 0, 0, 2002, 2004, 7, 19, 0, 0, 2003, 2005, 5, 36, 0, 0, 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2043, 3, 816, 408, 0, 2007, 2043, 5, 171, 0, 0, 2008, 2043, 5, 216, 0, 0, 2009, 2010, 5, 209, 0, 0, 2010, 2013, 5, 298, 0, 0, 2011, 2014, 3, 142, 71, 0, 2012, 2014, 5, 9, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 2043, 1, 0, 0, 0, 2015, 2017, 5, 209, 0, 0, 2016, 2018, 5, 77, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2020, 5, 78, 0, 0, 2020, 2043, 3, 142, 71, 0, 2021, 2022, 5, 194, 0, 0, 2022, 2043, 3, 816, 408, 0, 2023, 2040, 7, 20, 0, 0, 2024, 2027, 5, 2, 0, 0, 2025, 2028, 3, 142, 71, 0, 2026, 2028, 5, 9, 0, 0, 2027, 2025, 1, 0, 0, 0, 2027, 2026, 1, 0, 0, 0, 2028, 2036, 1, 0, 0, 0, 2029, 2032, 5, 6, 0, 0, 2030, 2033, 3, 142, 71, 0, 2031, 2033, 5, 9, 0, 0, 2032, 2030, 1, 0, 0, 0, 2032, 2031, 1, 0, 0, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2029, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2039, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2039, 2041, 5, 3, 0, 0, 2040, 2024, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2000, 1, 0, 0, 0, 2042, 2001, 1, 0, 0, 0, 2042, 2002, 1, 0, 0, 0, 2042, 2007, 1, 0, 0, 0, 2042, 2008, 1, 0, 0, 0, 2042, 2009, 1, 0, 0, 0, 2042, 2015, 1, 0, 0, 0, 2042, 2021, 1, 0, 0, 0, 2042, 2023, 1, 0, 0, 0, 2043, 2046, 1, 0, 0, 0, 2044, 2042, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 109, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2047, 2066, 3, 108, 54, 0, 2048, 2051, 5, 2, 0, 0, 2049, 2052, 3, 108, 54, 0, 2050, 2052, 3, 112, 56, 0, 2051, 2049, 1, 0, 0, 0, 2051, 2050, 1, 0, 0, 0, 2052, 2060, 1, 0, 0, 0, 2053, 2056, 5, 6, 0, 0, 2054, 2057, 3, 108, 54, 0, 2055, 2057, 3, 112, 56, 0, 2056, 2054, 1, 0, 0, 0, 2056, 2055, 1, 0, 0, 0, 2057, 2059, 1, 0, 0, 0, 2058, 2053, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2063, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2063, 2064, 5, 3, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2047, 1, 0, 0, 0, 2065, 2048, 1, 0, 0, 0, 2066, 111, 1, 0, 0, 0, 2067, 2082, 3, 832, 416, 0, 2068, 2083, 3, 54, 27, 0, 2069, 2083, 3, 196, 98, 0, 2070, 2083, 5, 9, 0, 0, 2071, 2072, 5, 2, 0, 0, 2072, 2077, 3, 52, 26, 0, 2073, 2074, 5, 6, 0, 0, 2074, 2076, 3, 52, 26, 0, 2075, 2073, 1, 0, 0, 0, 2076, 2079, 1, 0, 0, 0, 2077, 2075, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2080, 2081, 5, 3, 0, 0, 2081, 2083, 1, 0, 0, 0, 2082, 2068, 1, 0, 0, 0, 2082, 2069, 1, 0, 0, 0, 2082, 2070, 1, 0, 0, 0, 2082, 2071, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 113, 1, 0, 0, 0, 2084, 2086, 5, 46, 0, 0, 2085, 2087, 3, 116, 58, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2090, 5, 92, 0, 0, 2089, 2091, 3, 288, 144, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2158, 3, 776, 388, 0, 2093, 2095, 5, 2, 0, 0, 2094, 2096, 3, 120, 60, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2099, 5, 3, 0, 0, 2098, 2100, 3, 158, 79, 0, 2099, 2098, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2103, 3, 160, 80, 0, 2102, 2101, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 2105, 1, 0, 0, 0, 2104, 2106, 3, 164, 82, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2108, 1, 0, 0, 0, 2107, 2109, 3, 166, 83, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2111, 1, 0, 0, 0, 2110, 2112, 3, 168, 84, 0, 2111, 2110, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2114, 1, 0, 0, 0, 2113, 2115, 3, 170, 85, 0, 2114, 2113, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2159, 1, 0, 0, 0, 2116, 2117, 5, 275, 0, 0, 2117, 2119, 3, 310, 155, 0, 2118, 2120, 3, 118, 59, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2123, 3, 160, 80, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2126, 3, 164, 82, 0, 2125, 2124, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2128, 1, 0, 0, 0, 2127, 2129, 3, 166, 83, 0, 2128, 2127, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2132, 3, 168, 84, 0, 2131, 2130, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 1, 0, 0, 0, 2133, 2135, 3, 170, 85, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2159, 1, 0, 0, 0, 2136, 2137, 5, 285, 0, 0, 2137, 2138, 5, 275, 0, 0, 2138, 2140, 3, 784, 392, 0, 2139, 2141, 3, 118, 59, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2144, 3, 98, 49, 0, 2143, 2145, 3, 160, 80, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2148, 3, 164, 82, 0, 2147, 2146, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2151, 3, 166, 83, 0, 2150, 2149, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2153, 1, 0, 0, 0, 2152, 2154, 3, 168, 84, 0, 2153, 2152, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2156, 1, 0, 0, 0, 2155, 2157, 3, 170, 85, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2093, 1, 0, 0, 0, 2158, 2116, 1, 0, 0, 0, 2158, 2136, 1, 0, 0, 0, 2159, 115, 1, 0, 0, 0, 2160, 2166, 5, 354, 0, 0, 2161, 2166, 5, 352, 0, 0, 2162, 2163, 7, 21, 0, 0, 2163, 2166, 7, 22, 0, 0, 2164, 2166, 5, 367, 0, 0, 2165, 2160, 1, 0, 0, 0, 2165, 2161, 1, 0, 0, 0, 2165, 2162, 1, 0, 0, 0, 2165, 2164, 1, 0, 0, 0, 2166, 117, 1, 0, 0, 0, 2167, 2168, 5, 2, 0, 0, 2168, 2173, 3, 124, 62, 0, 2169, 2170, 5, 6, 0, 0, 2170, 2172, 3, 124, 62, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2176, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 5, 3, 0, 0, 2177, 119, 1, 0, 0, 0, 2178, 2183, 3, 122, 61, 0, 2179, 2180, 5, 6, 0, 0, 2180, 2182, 3, 122, 61, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 121, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 5, 45, 0, 0, 2187, 2189, 3, 826, 413, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2202, 3, 136, 68, 0, 2191, 2202, 3, 126, 63, 0, 2192, 2193, 5, 120, 0, 0, 2193, 2198, 3, 784, 392, 0, 2194, 2195, 7, 23, 0, 0, 2195, 2197, 3, 134, 67, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2202, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2201, 2188, 1, 0, 0, 0, 2201, 2191, 1, 0, 0, 0, 2201, 2192, 1, 0, 0, 0, 2202, 123, 1, 0, 0, 0, 2203, 2206, 3, 810, 405, 0, 2204, 2205, 5, 105, 0, 0, 2205, 2207, 5, 280, 0, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2211, 1, 0, 0, 0, 2208, 2210, 3, 128, 64, 0, 2209, 2208, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2220, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2215, 5, 45, 0, 0, 2215, 2217, 3, 826, 413, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2220, 3, 136, 68, 0, 2219, 2203, 1, 0, 0, 0, 2219, 2216, 1, 0, 0, 0, 2220, 125, 1, 0, 0, 0, 2221, 2222, 3, 810, 405, 0, 2222, 2224, 3, 648, 324, 0, 2223, 2225, 3, 214, 107, 0, 2224, 2223, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2235, 1, 0, 0, 0, 2226, 2233, 5, 345, 0, 0, 2227, 2234, 5, 544, 0, 0, 2228, 2234, 5, 205, 0, 0, 2229, 2234, 5, 545, 0, 0, 2230, 2234, 5, 546, 0, 0, 2231, 2234, 5, 53, 0, 0, 2232, 2234, 3, 826, 413, 0, 2233, 2227, 1, 0, 0, 0, 2233, 2228, 1, 0, 0, 0, 2233, 2229, 1, 0, 0, 0, 2233, 2230, 1, 0, 0, 0, 2233, 2231, 1, 0, 0, 0, 2233, 2232, 1, 0, 0, 0, 2234, 2236, 1, 0, 0, 0, 2235, 2226, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2239, 1, 0, 0, 0, 2237, 2238, 5, 543, 0, 0, 2238, 2240, 3, 826, 413, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2242, 1, 0, 0, 0, 2241, 2243, 3, 90, 45, 0, 2242, 2241, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2246, 1, 0, 0, 0, 2244, 2245, 5, 105, 0, 0, 2245, 2247, 5, 280, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2251, 1, 0, 0, 0, 2248, 2250, 3, 128, 64, 0, 2249, 2248, 1, 0, 0, 0, 2250, 2253, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 127, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2255, 5, 45, 0, 0, 2255, 2257, 3, 826, 413, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2263, 3, 130, 65, 0, 2259, 2261, 5, 77, 0, 0, 2260, 2259, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2264, 5, 54, 0, 0, 2263, 2260, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2267, 1, 0, 0, 0, 2265, 2266, 5, 69, 0, 0, 2266, 2268, 7, 9, 0, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 129, 1, 0, 0, 0, 2269, 2271, 5, 77, 0, 0, 2270, 2269, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2350, 5, 78, 0, 0, 2273, 2275, 5, 98, 0, 0, 2274, 2276, 3, 394, 197, 0, 2275, 2274, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2279, 3, 172, 86, 0, 2278, 2277, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2350, 1, 0, 0, 0, 2280, 2286, 5, 98, 0, 0, 2281, 2283, 5, 273, 0, 0, 2282, 2284, 5, 77, 0, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2287, 5, 56, 0, 0, 2286, 2281, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2290, 1, 0, 0, 0, 2288, 2289, 5, 441, 0, 0, 2289, 2291, 3, 354, 177, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2293, 1, 0, 0, 0, 2292, 2294, 3, 566, 283, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2296, 1, 0, 0, 0, 2295, 2297, 3, 172, 86, 0, 2296, 2295, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2350, 1, 0, 0, 0, 2298, 2299, 5, 85, 0, 0, 2299, 2301, 5, 245, 0, 0, 2300, 2302, 3, 394, 197, 0, 2301, 2300, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2305, 3, 172, 86, 0, 2304, 2303, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2350, 1, 0, 0, 0, 2306, 2307, 5, 42, 0, 0, 2307, 2308, 5, 2, 0, 0, 2308, 2309, 3, 670, 335, 0, 2309, 2312, 5, 3, 0, 0, 2310, 2311, 5, 269, 0, 0, 2311, 2313, 5, 228, 0, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2350, 1, 0, 0, 0, 2314, 2315, 5, 53, 0, 0, 2315, 2350, 3, 678, 339, 0, 2316, 2317, 5, 438, 0, 0, 2317, 2318, 3, 132, 66, 0, 2318, 2335, 5, 36, 0, 0, 2319, 2328, 5, 219, 0, 0, 2320, 2322, 5, 2, 0, 0, 2321, 2323, 3, 194, 97, 0, 2322, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2327, 5, 3, 0, 0, 2327, 2329, 1, 0, 0, 0, 2328, 2320, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2336, 1, 0, 0, 0, 2330, 2331, 5, 2, 0, 0, 2331, 2332, 3, 670, 335, 0, 2332, 2333, 5, 3, 0, 0, 2333, 2334, 5, 440, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2319, 1, 0, 0, 0, 2335, 2330, 1, 0, 0, 0, 2336, 2350, 1, 0, 0, 0, 2337, 2338, 5, 86, 0, 0, 2338, 2340, 3, 784, 392, 0, 2339, 2341, 3, 138, 69, 0, 2340, 2339, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2343, 1, 0, 0, 0, 2342, 2344, 3, 146, 73, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, 1, 0, 0, 0, 2345, 2347, 3, 150, 75, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2350, 3, 90, 45, 0, 2349, 2270, 1, 0, 0, 0, 2349, 2273, 1, 0, 0, 0, 2349, 2280, 1, 0, 0, 0, 2349, 2298, 1, 0, 0, 0, 2349, 2306, 1, 0, 0, 0, 2349, 2314, 1, 0, 0, 0, 2349, 2316, 1, 0, 0, 0, 2349, 2337, 1, 0, 0, 0, 2349, 2348, 1, 0, 0, 0, 2350, 131, 1, 0, 0, 0, 2351, 2355, 5, 139, 0, 0, 2352, 2353, 5, 147, 0, 0, 2353, 2355, 5, 53, 0, 0, 2354, 2351, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 133, 1, 0, 0, 0, 2356, 2357, 7, 24, 0, 0, 2357, 135, 1, 0, 0, 0, 2358, 2359, 5, 42, 0, 0, 2359, 2360, 5, 2, 0, 0, 2360, 2361, 3, 670, 335, 0, 2361, 2365, 5, 3, 0, 0, 2362, 2364, 3, 266, 133, 0, 2363, 2362, 1, 0, 0, 0, 2364, 2367, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2455, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2368, 2372, 5, 98, 0, 0, 2369, 2370, 5, 85, 0, 0, 2370, 2372, 5, 245, 0, 0, 2371, 2368, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2372, 2396, 1, 0, 0, 0, 2373, 2375, 3, 138, 69, 0, 2374, 2376, 3, 144, 72, 0, 2375, 2374, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2378, 1, 0, 0, 0, 2377, 2379, 3, 394, 197, 0, 2378, 2377, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2381, 1, 0, 0, 0, 2380, 2382, 3, 172, 86, 0, 2381, 2380, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2386, 1, 0, 0, 0, 2383, 2385, 3, 266, 133, 0, 2384, 2383, 1, 0, 0, 0, 2385, 2388, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2397, 1, 0, 0, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2393, 3, 174, 87, 0, 2390, 2392, 3, 266, 133, 0, 2391, 2390, 1, 0, 0, 0, 2392, 2395, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2373, 1, 0, 0, 0, 2396, 2389, 1, 0, 0, 0, 2397, 2455, 1, 0, 0, 0, 2398, 2400, 5, 199, 0, 0, 2399, 2401, 3, 164, 82, 0, 2400, 2399, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2403, 5, 2, 0, 0, 2403, 2408, 3, 148, 74, 0, 2404, 2405, 5, 6, 0, 0, 2405, 2407, 3, 148, 74, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2410, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2413, 5, 3, 0, 0, 2412, 2414, 3, 144, 72, 0, 2413, 2412, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2416, 1, 0, 0, 0, 2415, 2417, 3, 394, 197, 0, 2416, 2415, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2419, 1, 0, 0, 0, 2418, 2420, 3, 172, 86, 0, 2419, 2418, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2426, 1, 0, 0, 0, 2421, 2422, 5, 103, 0, 0, 2422, 2423, 5, 2, 0, 0, 2423, 2424, 3, 670, 335, 0, 2424, 2425, 5, 3, 0, 0, 2425, 2427, 1, 0, 0, 0, 2426, 2421, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2431, 1, 0, 0, 0, 2428, 2430, 3, 266, 133, 0, 2429, 2428, 1, 0, 0, 0, 2430, 2433, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2455, 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2434, 2435, 5, 63, 0, 0, 2435, 2436, 5, 245, 0, 0, 2436, 2437, 3, 138, 69, 0, 2437, 2438, 5, 86, 0, 0, 2438, 2440, 3, 784, 392, 0, 2439, 2441, 3, 138, 69, 0, 2440, 2439, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2443, 1, 0, 0, 0, 2442, 2444, 3, 146, 73, 0, 2443, 2442, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2446, 1, 0, 0, 0, 2445, 2447, 3, 150, 75, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2451, 1, 0, 0, 0, 2448, 2450, 3, 266, 133, 0, 2449, 2448, 1, 0, 0, 0, 2450, 2453, 1, 0, 0, 0, 2451, 2449, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2455, 1, 0, 0, 0, 2453, 2451, 1, 0, 0, 0, 2454, 2358, 1, 0, 0, 0, 2454, 2371, 1, 0, 0, 0, 2454, 2398, 1, 0, 0, 0, 2454, 2434, 1, 0, 0, 0, 2455, 137, 1, 0, 0, 0, 2456, 2457, 5, 2, 0, 0, 2457, 2458, 3, 142, 71, 0, 2458, 2459, 5, 3, 0, 0, 2459, 139, 1, 0, 0, 0, 2460, 2461, 5, 2, 0, 0, 2461, 2466, 3, 810, 405, 0, 2462, 2463, 5, 6, 0, 0, 2463, 2465, 3, 810, 405, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2469, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2470, 5, 3, 0, 0, 2470, 141, 1, 0, 0, 0, 2471, 2476, 3, 806, 403, 0, 2472, 2473, 5, 6, 0, 0, 2473, 2475, 3, 806, 403, 0, 2474, 2472, 1, 0, 0, 0, 2475, 2478, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 143, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2480, 5, 441, 0, 0, 2480, 2481, 3, 138, 69, 0, 2481, 145, 1, 0, 0, 0, 2482, 2483, 5, 258, 0, 0, 2483, 2484, 7, 25, 0, 0, 2484, 147, 1, 0, 0, 0, 2485, 2486, 3, 356, 178, 0, 2486, 2493, 5, 105, 0, 0, 2487, 2494, 3, 408, 204, 0, 2488, 2489, 5, 278, 0, 0, 2489, 2490, 5, 2, 0, 0, 2490, 2491, 3, 408, 204, 0, 2491, 2492, 5, 3, 0, 0, 2492, 2494, 1, 0, 0, 0, 2493, 2487, 1, 0, 0, 0, 2493, 2488, 1, 0, 0, 0, 2494, 149, 1, 0, 0, 0, 2495, 2497, 3, 152, 76, 0, 2496, 2498, 3, 154, 77, 0, 2497, 2496, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2504, 1, 0, 0, 0, 2499, 2501, 3, 154, 77, 0, 2500, 2502, 3, 152, 76, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2504, 1, 0, 0, 0, 2503, 2495, 1, 0, 0, 0, 2503, 2499, 1, 0, 0, 0, 2504, 151, 1, 0, 0, 0, 2505, 2506, 5, 80, 0, 0, 2506, 2507, 5, 369, 0, 0, 2507, 2508, 3, 156, 78, 0, 2508, 153, 1, 0, 0, 0, 2509, 2510, 5, 80, 0, 0, 2510, 2511, 5, 182, 0, 0, 2511, 2512, 3, 156, 78, 0, 2512, 155, 1, 0, 0, 0, 2513, 2514, 5, 269, 0, 0, 2514, 2523, 5, 132, 0, 0, 2515, 2523, 5, 315, 0, 0, 2516, 2523, 5, 150, 0, 0, 2517, 2518, 5, 333, 0, 0, 2518, 2520, 7, 26, 0, 0, 2519, 2521, 3, 142, 71, 0, 2520, 2519, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 1, 0, 0, 0, 2522, 2513, 1, 0, 0, 0, 2522, 2515, 1, 0, 0, 0, 2522, 2516, 1, 0, 0, 0, 2522, 2517, 1, 0, 0, 0, 2523, 157, 1, 0, 0, 0, 2524, 2525, 5, 238, 0, 0, 2525, 2526, 5, 2, 0, 0, 2526, 2527, 3, 764, 382, 0, 2527, 2528, 5, 3, 0, 0, 2528, 159, 1, 0, 0, 0, 2529, 2530, 5, 285, 0, 0, 2530, 2531, 5, 147, 0, 0, 2531, 2532, 3, 826, 413, 0, 2532, 2533, 5, 2, 0, 0, 2533, 2538, 3, 162, 81, 0, 2534, 2535, 5, 6, 0, 0, 2535, 2537, 3, 162, 81, 0, 2536, 2534, 1, 0, 0, 0, 2537, 2540, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2541, 1, 0, 0, 0, 2540, 2538, 1, 0, 0, 0, 2541, 2542, 5, 3, 0, 0, 2542, 161, 1, 0, 0, 0, 2543, 2550, 3, 806, 403, 0, 2544, 2550, 3, 684, 342, 0, 2545, 2546, 5, 2, 0, 0, 2546, 2547, 3, 670, 335, 0, 2547, 2548, 5, 3, 0, 0, 2548, 2550, 1, 0, 0, 0, 2549, 2543, 1, 0, 0, 0, 2549, 2544, 1, 0, 0, 0, 2549, 2545, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 3, 90, 45, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2556, 3, 310, 155, 0, 2555, 2554, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 163, 1, 0, 0, 0, 2557, 2558, 5, 100, 0, 0, 2558, 2559, 3, 826, 413, 0, 2559, 165, 1, 0, 0, 0, 2560, 2561, 5, 105, 0, 0, 2561, 2565, 3, 92, 46, 0, 2562, 2563, 7, 27, 0, 0, 2563, 2565, 5, 277, 0, 0, 2564, 2560, 1, 0, 0, 0, 2564, 2562, 1, 0, 0, 0, 2565, 167, 1, 0, 0, 0, 2566, 2567, 5, 80, 0, 0, 2567, 2573, 5, 161, 0, 0, 2568, 2574, 5, 191, 0, 0, 2569, 2570, 5, 182, 0, 0, 2570, 2574, 5, 320, 0, 0, 2571, 2572, 5, 292, 0, 0, 2572, 2574, 5, 320, 0, 0, 2573, 2568, 1, 0, 0, 0, 2573, 2569, 1, 0, 0, 0, 2573, 2571, 1, 0, 0, 0, 2574, 169, 1, 0, 0, 0, 2575, 2576, 5, 351, 0, 0, 2576, 2577, 3, 774, 387, 0, 2577, 171, 1, 0, 0, 0, 2578, 2579, 5, 100, 0, 0, 2579, 2580, 5, 226, 0, 0, 2580, 2581, 3, 170, 85, 0, 2581, 173, 1, 0, 0, 0, 2582, 2583, 5, 100, 0, 0, 2583, 2584, 5, 226, 0, 0, 2584, 2585, 3, 826, 413, 0, 2585, 175, 1, 0, 0, 0, 2586, 2587, 5, 46, 0, 0, 2587, 2592, 5, 342, 0, 0, 2588, 2590, 3, 288, 144, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2593, 3, 310, 155, 0, 2592, 2589, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 138, 69, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2607, 5, 80, 0, 0, 2598, 2603, 3, 734, 367, 0, 2599, 2600, 5, 6, 0, 0, 2600, 2602, 3, 734, 367, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2608, 1, 0, 0, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2608, 3, 728, 364, 0, 2607, 2598, 1, 0, 0, 0, 2607, 2606, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 3, 604, 302, 0, 2610, 177, 1, 0, 0, 0, 2611, 2612, 5, 138, 0, 0, 2612, 2614, 5, 342, 0, 0, 2613, 2615, 3, 416, 208, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2617, 3, 310, 155, 0, 2617, 2618, 5, 333, 0, 0, 2618, 2619, 5, 342, 0, 0, 2619, 2620, 3, 820, 410, 0, 2620, 179, 1, 0, 0, 0, 2621, 2623, 5, 46, 0, 0, 2622, 2624, 3, 116, 58, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2627, 5, 92, 0, 0, 2626, 2628, 3, 288, 144, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2630, 3, 182, 91, 0, 2630, 2631, 5, 36, 0, 0, 2631, 2633, 3, 554, 277, 0, 2632, 2634, 3, 184, 92, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 181, 1, 0, 0, 0, 2635, 2637, 3, 776, 388, 0, 2636, 2638, 3, 140, 70, 0, 2637, 2636, 1, 0, 0, 0, 2637, 2638, 1, 0, 0, 0, 2638, 2640, 1, 0, 0, 0, 2639, 2641, 3, 164, 82, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2643, 1, 0, 0, 0, 2642, 2644, 3, 166, 83, 0, 2643, 2642, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2646, 1, 0, 0, 0, 2645, 2647, 3, 168, 84, 0, 2646, 2645, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2650, 3, 170, 85, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 183, 1, 0, 0, 0, 2651, 2655, 5, 105, 0, 0, 2652, 2656, 5, 174, 0, 0, 2653, 2654, 5, 269, 0, 0, 2654, 2656, 5, 174, 0, 0, 2655, 2652, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2656, 185, 1, 0, 0, 0, 2657, 2659, 5, 46, 0, 0, 2658, 2660, 5, 367, 0, 0, 2659, 2658, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2662, 5, 259, 0, 0, 2662, 2664, 5, 376, 0, 0, 2663, 2665, 3, 288, 144, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 3, 780, 390, 0, 2667, 2669, 3, 140, 70, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 1, 0, 0, 0, 2670, 2672, 3, 164, 82, 0, 2671, 2670, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2674, 1, 0, 0, 0, 2673, 2675, 3, 94, 47, 0, 2674, 2673, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2678, 3, 170, 85, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 5, 36, 0, 0, 2680, 2682, 3, 554, 277, 0, 2681, 2683, 3, 184, 92, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 187, 1, 0, 0, 0, 2684, 2685, 5, 305, 0, 0, 2685, 2686, 5, 259, 0, 0, 2686, 2688, 5, 376, 0, 0, 2687, 2689, 5, 109, 0, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2692, 3, 782, 391, 0, 2691, 2693, 3, 184, 92, 0, 2692, 2691, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 189, 1, 0, 0, 0, 2694, 2696, 5, 46, 0, 0, 2695, 2697, 3, 116, 58, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2700, 5, 328, 0, 0, 2699, 2701, 3, 288, 144, 0, 2700, 2699, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2708, 3, 784, 392, 0, 2703, 2705, 3, 194, 97, 0, 2704, 2703, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2709, 1, 0, 0, 0, 2708, 2704, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 191, 1, 0, 0, 0, 2710, 2711, 5, 138, 0, 0, 2711, 2713, 5, 328, 0, 0, 2712, 2714, 3, 416, 208, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2717, 3, 784, 392, 0, 2716, 2718, 3, 194, 97, 0, 2717, 2716, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2717, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 193, 1, 0, 0, 0, 2721, 2722, 5, 36, 0, 0, 2722, 2755, 3, 650, 325, 0, 2723, 2725, 5, 148, 0, 0, 2724, 2726, 3, 196, 98, 0, 2725, 2724, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2755, 1, 0, 0, 0, 2727, 2729, 5, 225, 0, 0, 2728, 2730, 5, 147, 0, 0, 2729, 2728, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2755, 3, 196, 98, 0, 2732, 2733, 7, 28, 0, 0, 2733, 2755, 3, 196, 98, 0, 2734, 2735, 5, 269, 0, 0, 2735, 2755, 7, 29, 0, 0, 2736, 2737, 5, 281, 0, 0, 2737, 2738, 5, 147, 0, 0, 2738, 2755, 3, 806, 403, 0, 2739, 2740, 5, 328, 0, 0, 2740, 2741, 5, 266, 0, 0, 2741, 2755, 3, 310, 155, 0, 2742, 2744, 5, 340, 0, 0, 2743, 2745, 5, 105, 0, 0, 2744, 2743, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2755, 3, 196, 98, 0, 2747, 2749, 5, 314, 0, 0, 2748, 2750, 5, 105, 0, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2753, 3, 196, 98, 0, 2752, 2751, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2755, 1, 0, 0, 0, 2754, 2721, 1, 0, 0, 0, 2754, 2723, 1, 0, 0, 0, 2754, 2727, 1, 0, 0, 0, 2754, 2732, 1, 0, 0, 0, 2754, 2734, 1, 0, 0, 0, 2754, 2736, 1, 0, 0, 0, 2754, 2739, 1, 0, 0, 0, 2754, 2742, 1, 0, 0, 0, 2754, 2747, 1, 0, 0, 0, 2755, 195, 1, 0, 0, 0, 2756, 2758, 7, 30, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2762, 5, 576, 0, 0, 2760, 2762, 3, 820, 410, 0, 2761, 2757, 1, 0, 0, 0, 2761, 2760, 1, 0, 0, 0, 2762, 197, 1, 0, 0, 0, 2763, 2765, 5, 46, 0, 0, 2764, 2766, 3, 360, 180, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2768, 1, 0, 0, 0, 2767, 2769, 5, 359, 0, 0, 2768, 2767, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2771, 1, 0, 0, 0, 2770, 2772, 5, 295, 0, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2774, 5, 247, 0, 0, 2774, 2787, 3, 826, 413, 0, 2775, 2776, 5, 215, 0, 0, 2776, 2779, 3, 310, 155, 0, 2777, 2778, 5, 239, 0, 0, 2778, 2780, 3, 310, 155, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2785, 1, 0, 0, 0, 2781, 2782, 5, 373, 0, 0, 2782, 2786, 3, 310, 155, 0, 2783, 2784, 5, 269, 0, 0, 2784, 2786, 5, 373, 0, 0, 2785, 2781, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2788, 1, 0, 0, 0, 2787, 2775, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 199, 1, 0, 0, 0, 2789, 2790, 5, 46, 0, 0, 2790, 2793, 3, 170, 85, 0, 2791, 2792, 5, 282, 0, 0, 2792, 2794, 3, 822, 411, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2796, 5, 255, 0, 0, 2796, 2798, 3, 816, 408, 0, 2797, 2799, 3, 94, 47, 0, 2798, 2797, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 201, 1, 0, 0, 0, 2800, 2801, 5, 46, 0, 0, 2801, 2803, 5, 204, 0, 0, 2802, 2804, 3, 288, 144, 0, 2803, 2802, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2807, 3, 826, 413, 0, 2806, 2808, 5, 105, 0, 0, 2807, 2806, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2816, 1, 0, 0, 0, 2809, 2810, 5, 323, 0, 0, 2810, 2815, 3, 794, 397, 0, 2811, 2812, 7, 31, 0, 0, 2812, 2815, 3, 58, 29, 0, 2813, 2815, 5, 150, 0, 0, 2814, 2809, 1, 0, 0, 0, 2814, 2811, 1, 0, 0, 0, 2814, 2813, 1, 0, 0, 0, 2815, 2818, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 203, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2819, 2820, 5, 138, 0, 0, 2820, 2821, 5, 204, 0, 0, 2821, 2822, 3, 826, 413, 0, 2822, 2827, 5, 369, 0, 0, 2823, 2824, 5, 94, 0, 0, 2824, 2826, 3, 58, 29, 0, 2825, 2823, 1, 0, 0, 0, 2826, 2829, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 205, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2831, 5, 138, 0, 0, 2831, 2832, 5, 204, 0, 0, 2832, 2833, 3, 826, 413, 0, 2833, 2866, 7, 6, 0, 0, 2834, 2835, 5, 443, 0, 0, 2835, 2836, 5, 62, 0, 0, 2836, 2837, 3, 648, 324, 0, 2837, 2838, 5, 247, 0, 0, 2838, 2839, 3, 826, 413, 0, 2839, 2867, 1, 0, 0, 0, 2840, 2841, 5, 442, 0, 0, 2841, 2867, 3, 368, 184, 0, 2842, 2843, 5, 296, 0, 0, 2843, 2867, 3, 372, 186, 0, 2844, 2845, 5, 278, 0, 0, 2845, 2846, 7, 32, 0, 0, 2846, 2847, 3, 310, 155, 0, 2847, 2848, 3, 164, 82, 0, 2848, 2867, 1, 0, 0, 0, 2849, 2850, 5, 278, 0, 0, 2850, 2867, 3, 410, 205, 0, 2851, 2852, 5, 211, 0, 0, 2852, 2867, 3, 376, 188, 0, 2853, 2854, 7, 33, 0, 0, 2854, 2867, 3, 648, 324, 0, 2855, 2856, 5, 41, 0, 0, 2856, 2857, 5, 2, 0, 0, 2857, 2858, 3, 648, 324, 0, 2858, 2859, 5, 36, 0, 0, 2859, 2860, 3, 648, 324, 0, 2860, 2861, 5, 3, 0, 0, 2861, 2867, 1, 0, 0, 0, 2862, 2863, 5, 136, 0, 0, 2863, 2867, 3, 388, 194, 0, 2864, 2867, 3, 306, 153, 0, 2865, 2867, 3, 304, 152, 0, 2866, 2834, 1, 0, 0, 0, 2866, 2840, 1, 0, 0, 0, 2866, 2842, 1, 0, 0, 0, 2866, 2844, 1, 0, 0, 0, 2866, 2849, 1, 0, 0, 0, 2866, 2851, 1, 0, 0, 0, 2866, 2853, 1, 0, 0, 0, 2866, 2855, 1, 0, 0, 0, 2866, 2862, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 207, 1, 0, 0, 0, 2868, 2869, 5, 46, 0, 0, 2869, 2870, 5, 63, 0, 0, 2870, 2871, 5, 174, 0, 0, 2871, 2872, 5, 381, 0, 0, 2872, 2878, 3, 826, 413, 0, 2873, 2875, 3, 210, 105, 0, 2874, 2873, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2879, 1, 0, 0, 0, 2878, 2874, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2881, 1, 0, 0, 0, 2880, 2882, 3, 214, 107, 0, 2881, 2880, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 209, 1, 0, 0, 0, 2883, 2885, 7, 34, 0, 0, 2884, 2886, 3, 310, 155, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2890, 1, 0, 0, 0, 2887, 2888, 5, 269, 0, 0, 2888, 2890, 7, 34, 0, 0, 2889, 2883, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2890, 211, 1, 0, 0, 0, 2891, 2892, 5, 138, 0, 0, 2892, 2893, 5, 63, 0, 0, 2893, 2894, 5, 174, 0, 0, 2894, 2895, 5, 381, 0, 0, 2895, 2909, 3, 826, 413, 0, 2896, 2898, 3, 210, 105, 0, 2897, 2896, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2897, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 1, 0, 0, 0, 2901, 2897, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2910, 3, 216, 108, 0, 2904, 2906, 3, 210, 105, 0, 2905, 2904, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2905, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2910, 1, 0, 0, 0, 2909, 2901, 1, 0, 0, 0, 2909, 2905, 1, 0, 0, 0, 2910, 213, 1, 0, 0, 0, 2911, 2912, 5, 280, 0, 0, 2912, 2913, 5, 2, 0, 0, 2913, 2918, 3, 220, 110, 0, 2914, 2915, 5, 6, 0, 0, 2915, 2917, 3, 220, 110, 0, 2916, 2914, 1, 0, 0, 0, 2917, 2920, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2921, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2921, 2922, 5, 3, 0, 0, 2922, 215, 1, 0, 0, 0, 2923, 2924, 5, 280, 0, 0, 2924, 2925, 5, 2, 0, 0, 2925, 2930, 3, 218, 109, 0, 2926, 2927, 5, 6, 0, 0, 2927, 2929, 3, 218, 109, 0, 2928, 2926, 1, 0, 0, 0, 2929, 2932, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2933, 1, 0, 0, 0, 2932, 2930, 1, 0, 0, 0, 2933, 2934, 5, 3, 0, 0, 2934, 217, 1, 0, 0, 0, 2935, 2936, 7, 35, 0, 0, 2936, 2937, 3, 220, 110, 0, 2937, 219, 1, 0, 0, 0, 2938, 2939, 3, 832, 416, 0, 2939, 2940, 3, 816, 408, 0, 2940, 221, 1, 0, 0, 0, 2941, 2942, 5, 46, 0, 0, 2942, 2944, 5, 331, 0, 0, 2943, 2945, 3, 288, 144, 0, 2944, 2943, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2949, 3, 826, 413, 0, 2947, 2948, 5, 360, 0, 0, 2948, 2950, 3, 816, 408, 0, 2949, 2947, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 2952, 1, 0, 0, 0, 2951, 2953, 3, 224, 112, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2955, 5, 63, 0, 0, 2955, 2956, 5, 174, 0, 0, 2956, 2957, 5, 381, 0, 0, 2957, 2959, 3, 826, 413, 0, 2958, 2960, 3, 214, 107, 0, 2959, 2958, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 223, 1, 0, 0, 0, 2961, 2964, 5, 375, 0, 0, 2962, 2965, 3, 816, 408, 0, 2963, 2965, 5, 78, 0, 0, 2964, 2962, 1, 0, 0, 0, 2964, 2963, 1, 0, 0, 0, 2965, 225, 1, 0, 0, 0, 2966, 2967, 5, 138, 0, 0, 2967, 2968, 5, 331, 0, 0, 2968, 2974, 3, 826, 413, 0, 2969, 2975, 3, 216, 108, 0, 2970, 2972, 3, 224, 112, 0, 2971, 2973, 3, 216, 108, 0, 2972, 2971, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 1, 0, 0, 0, 2974, 2969, 1, 0, 0, 0, 2974, 2970, 1, 0, 0, 0, 2975, 227, 1, 0, 0, 0, 2976, 2977, 5, 46, 0, 0, 2977, 2978, 5, 63, 0, 0, 2978, 2980, 5, 92, 0, 0, 2979, 2981, 3, 288, 144, 0, 2980, 2979, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2983, 3, 776, 388, 0, 2983, 2985, 5, 2, 0, 0, 2984, 2986, 3, 120, 60, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2989, 5, 3, 0, 0, 2988, 2990, 3, 158, 79, 0, 2989, 2988, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 5, 331, 0, 0, 2992, 2994, 3, 826, 413, 0, 2993, 2995, 3, 214, 107, 0, 2994, 2993, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 3016, 1, 0, 0, 0, 2996, 2997, 5, 46, 0, 0, 2997, 2998, 5, 63, 0, 0, 2998, 3000, 5, 92, 0, 0, 2999, 3001, 3, 288, 144, 0, 3000, 2999, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 3, 776, 388, 0, 3003, 3004, 5, 285, 0, 0, 3004, 3005, 5, 275, 0, 0, 3005, 3007, 3, 778, 389, 0, 3006, 3008, 3, 118, 59, 0, 3007, 3006, 1, 0, 0, 0, 3007, 3008, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 3, 98, 49, 0, 3010, 3011, 5, 331, 0, 0, 3011, 3013, 3, 826, 413, 0, 3012, 3014, 3, 214, 107, 0, 3013, 3012, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3016, 1, 0, 0, 0, 3015, 2976, 1, 0, 0, 0, 3015, 2996, 1, 0, 0, 0, 3016, 229, 1, 0, 0, 0, 3017, 3018, 5, 444, 0, 0, 3018, 3019, 5, 63, 0, 0, 3019, 3020, 5, 323, 0, 0, 3020, 3030, 3, 794, 397, 0, 3021, 3022, 5, 74, 0, 0, 3022, 3025, 5, 94, 0, 0, 3023, 3025, 5, 59, 0, 0, 3024, 3021, 1, 0, 0, 0, 3024, 3023, 1, 0, 0, 0, 3025, 3026, 1, 0, 0, 0, 3026, 3027, 5, 2, 0, 0, 3027, 3028, 3, 624, 312, 0, 3028, 3029, 5, 3, 0, 0, 3029, 3031, 1, 0, 0, 0, 3030, 3024, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3033, 5, 64, 0, 0, 3033, 3034, 5, 331, 0, 0, 3034, 3035, 3, 826, 413, 0, 3035, 3036, 5, 71, 0, 0, 3036, 3038, 3, 826, 413, 0, 3037, 3039, 3, 214, 107, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 231, 1, 0, 0, 0, 3040, 3041, 5, 46, 0, 0, 3041, 3042, 5, 99, 0, 0, 3042, 3044, 5, 257, 0, 0, 3043, 3045, 3, 288, 144, 0, 3044, 3043, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3049, 5, 62, 0, 0, 3047, 3050, 3, 822, 411, 0, 3048, 3050, 5, 99, 0, 0, 3049, 3047, 1, 0, 0, 0, 3049, 3048, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3052, 5, 331, 0, 0, 3052, 3054, 3, 826, 413, 0, 3053, 3055, 3, 214, 107, 0, 3054, 3053, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 233, 1, 0, 0, 0, 3056, 3057, 5, 138, 0, 0, 3057, 3058, 5, 99, 0, 0, 3058, 3059, 5, 257, 0, 0, 3059, 3062, 5, 62, 0, 0, 3060, 3063, 3, 822, 411, 0, 3061, 3063, 5, 99, 0, 0, 3062, 3060, 1, 0, 0, 0, 3062, 3061, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3065, 5, 331, 0, 0, 3065, 3066, 3, 826, 413, 0, 3066, 3067, 3, 216, 108, 0, 3067, 235, 1, 0, 0, 0, 3068, 3069, 5, 46, 0, 0, 3069, 3070, 5, 445, 0, 0, 3070, 3071, 3, 826, 413, 0, 3071, 3072, 5, 80, 0, 0, 3072, 3079, 3, 784, 392, 0, 3073, 3077, 5, 36, 0, 0, 3074, 3078, 5, 541, 0, 0, 3075, 3078, 5, 542, 0, 0, 3076, 3078, 3, 834, 417, 0, 3077, 3074, 1, 0, 0, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3076, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3073, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3083, 1, 0, 0, 0, 3081, 3082, 5, 62, 0, 0, 3082, 3084, 7, 36, 0, 0, 3083, 3081, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3087, 1, 0, 0, 0, 3085, 3086, 5, 94, 0, 0, 3086, 3088, 3, 824, 412, 0, 3087, 3085, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3091, 3, 244, 122, 0, 3090, 3089, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3093, 1, 0, 0, 0, 3092, 3094, 3, 246, 123, 0, 3093, 3092, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 237, 1, 0, 0, 0, 3095, 3096, 5, 138, 0, 0, 3096, 3097, 5, 445, 0, 0, 3097, 3098, 3, 826, 413, 0, 3098, 3099, 5, 80, 0, 0, 3099, 3102, 3, 784, 392, 0, 3100, 3101, 5, 94, 0, 0, 3101, 3103, 3, 824, 412, 0, 3102, 3100, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 3105, 1, 0, 0, 0, 3104, 3106, 3, 244, 122, 0, 3105, 3104, 1, 0, 0, 0, 3105, 3106, 1, 0, 0, 0, 3106, 3108, 1, 0, 0, 0, 3107, 3109, 3, 246, 123, 0, 3108, 3107, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 239, 1, 0, 0, 0, 3110, 3111, 5, 138, 0, 0, 3111, 3112, 5, 296, 0, 0, 3112, 3114, 3, 800, 400, 0, 3113, 3115, 3, 362, 181, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3142, 1, 0, 0, 0, 3116, 3120, 3, 242, 121, 0, 3117, 3119, 3, 242, 121, 0, 3118, 3117, 1, 0, 0, 0, 3119, 3122, 1, 0, 0, 0, 3120, 3118, 1, 0, 0, 0, 3120, 3121, 1, 0, 0, 0, 3121, 3124, 1, 0, 0, 0, 3122, 3120, 1, 0, 0, 0, 3123, 3125, 5, 315, 0, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3143, 1, 0, 0, 0, 3126, 3127, 5, 309, 0, 0, 3127, 3128, 5, 94, 0, 0, 3128, 3143, 3, 802, 401, 0, 3129, 3130, 5, 282, 0, 0, 3130, 3131, 5, 94, 0, 0, 3131, 3143, 3, 822, 411, 0, 3132, 3133, 5, 333, 0, 0, 3133, 3134, 5, 323, 0, 0, 3134, 3143, 3, 32, 16, 0, 3135, 3137, 5, 269, 0, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 5, 462, 0, 0, 3139, 3140, 5, 80, 0, 0, 3140, 3141, 5, 204, 0, 0, 3141, 3143, 3, 826, 413, 0, 3142, 3116, 1, 0, 0, 0, 3142, 3126, 1, 0, 0, 0, 3142, 3129, 1, 0, 0, 0, 3142, 3132, 1, 0, 0, 0, 3142, 3136, 1, 0, 0, 0, 3143, 241, 1, 0, 0, 0, 3144, 3146, 5, 205, 0, 0, 3145, 3144, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 5, 327, 0, 0, 3148, 3155, 5, 243, 0, 0, 3149, 3151, 5, 205, 0, 0, 3150, 3149, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 5, 327, 0, 0, 3153, 3155, 5, 181, 0, 0, 3154, 3145, 1, 0, 0, 0, 3154, 3150, 1, 0, 0, 0, 3155, 3174, 1, 0, 0, 0, 3156, 3157, 5, 333, 0, 0, 3157, 3158, 3, 826, 413, 0, 3158, 3161, 7, 37, 0, 0, 3159, 3162, 3, 826, 413, 0, 3160, 3162, 5, 53, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3162, 3174, 1, 0, 0, 0, 3163, 3164, 5, 333, 0, 0, 3164, 3165, 3, 826, 413, 0, 3165, 3166, 5, 64, 0, 0, 3166, 3167, 5, 434, 0, 0, 3167, 3174, 1, 0, 0, 0, 3168, 3171, 5, 313, 0, 0, 3169, 3172, 3, 826, 413, 0, 3170, 3172, 5, 30, 0, 0, 3171, 3169, 1, 0, 0, 0, 3171, 3170, 1, 0, 0, 0, 3172, 3174, 1, 0, 0, 0, 3173, 3154, 1, 0, 0, 0, 3173, 3156, 1, 0, 0, 0, 3173, 3163, 1, 0, 0, 0, 3173, 3168, 1, 0, 0, 0, 3174, 243, 1, 0, 0, 0, 3175, 3176, 5, 100, 0, 0, 3176, 3177, 5, 2, 0, 0, 3177, 3178, 3, 670, 335, 0, 3178, 3179, 5, 3, 0, 0, 3179, 245, 1, 0, 0, 0, 3180, 3181, 5, 105, 0, 0, 3181, 3182, 5, 42, 0, 0, 3182, 3183, 5, 2, 0, 0, 3183, 3184, 3, 670, 335, 0, 3184, 3185, 5, 3, 0, 0, 3185, 247, 1, 0, 0, 0, 3186, 3187, 5, 46, 0, 0, 3187, 3188, 5, 131, 0, 0, 3188, 3189, 5, 446, 0, 0, 3189, 3190, 3, 826, 413, 0, 3190, 3191, 5, 360, 0, 0, 3191, 3192, 7, 38, 0, 0, 3192, 3193, 5, 215, 0, 0, 3193, 3194, 3, 310, 155, 0, 3194, 249, 1, 0, 0, 0, 3195, 3197, 5, 46, 0, 0, 3196, 3198, 3, 360, 180, 0, 3197, 3196, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 5, 357, 0, 0, 3200, 3201, 3, 826, 413, 0, 3201, 3202, 3, 252, 126, 0, 3202, 3203, 3, 254, 127, 0, 3203, 3204, 5, 80, 0, 0, 3204, 3216, 3, 778, 389, 0, 3205, 3212, 5, 447, 0, 0, 3206, 3207, 7, 39, 0, 0, 3207, 3209, 7, 40, 0, 0, 3208, 3210, 5, 36, 0, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 3, 826, 413, 0, 3212, 3206, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 1, 0, 0, 0, 3216, 3205, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3223, 1, 0, 0, 0, 3218, 3220, 5, 62, 0, 0, 3219, 3221, 5, 192, 0, 0, 3220, 3219, 1, 0, 0, 0, 3220, 3221, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 7, 41, 0, 0, 3223, 3218, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3226, 1, 0, 0, 0, 3225, 3227, 3, 258, 129, 0, 3226, 3225, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3229, 5, 202, 0, 0, 3229, 3230, 3, 260, 130, 0, 3230, 3231, 5, 2, 0, 0, 3231, 3232, 3, 262, 131, 0, 3232, 3233, 5, 3, 0, 0, 3233, 3274, 1, 0, 0, 0, 3234, 3236, 5, 46, 0, 0, 3235, 3237, 3, 360, 180, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3239, 1, 0, 0, 0, 3238, 3240, 5, 45, 0, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3242, 5, 357, 0, 0, 3242, 3243, 3, 826, 413, 0, 3243, 3244, 3, 252, 126, 0, 3244, 3245, 3, 254, 127, 0, 3245, 3246, 5, 80, 0, 0, 3246, 3249, 3, 778, 389, 0, 3247, 3248, 5, 64, 0, 0, 3248, 3250, 3, 784, 392, 0, 3249, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3254, 1, 0, 0, 0, 3251, 3253, 3, 266, 133, 0, 3252, 3251, 1, 0, 0, 0, 3253, 3256, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3262, 1, 0, 0, 0, 3256, 3254, 1, 0, 0, 0, 3257, 3259, 5, 62, 0, 0, 3258, 3260, 5, 192, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3263, 7, 41, 0, 0, 3262, 3257, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3266, 3, 258, 129, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3268, 5, 202, 0, 0, 3268, 3269, 3, 260, 130, 0, 3269, 3270, 5, 2, 0, 0, 3270, 3271, 3, 262, 131, 0, 3271, 3272, 5, 3, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3195, 1, 0, 0, 0, 3273, 3234, 1, 0, 0, 0, 3274, 251, 1, 0, 0, 0, 3275, 3280, 5, 145, 0, 0, 3276, 3280, 5, 135, 0, 0, 3277, 3278, 5, 242, 0, 0, 3278, 3280, 5, 275, 0, 0, 3279, 3275, 1, 0, 0, 0, 3279, 3276, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3280, 253, 1, 0, 0, 0, 3281, 3286, 3, 256, 128, 0, 3282, 3283, 5, 82, 0, 0, 3283, 3285, 3, 256, 128, 0, 3284, 3282, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 255, 1, 0, 0, 0, 3288, 3286, 1, 0, 0, 0, 3289, 3298, 5, 241, 0, 0, 3290, 3298, 5, 182, 0, 0, 3291, 3294, 5, 369, 0, 0, 3292, 3293, 5, 275, 0, 0, 3293, 3295, 3, 142, 71, 0, 3294, 3292, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 3298, 1, 0, 0, 0, 3296, 3298, 5, 358, 0, 0, 3297, 3289, 1, 0, 0, 0, 3297, 3290, 1, 0, 0, 0, 3297, 3291, 1, 0, 0, 0, 3297, 3296, 1, 0, 0, 0, 3298, 257, 1, 0, 0, 0, 3299, 3300, 5, 102, 0, 0, 3300, 3301, 5, 2, 0, 0, 3301, 3302, 3, 670, 335, 0, 3302, 3303, 5, 3, 0, 0, 3303, 259, 1, 0, 0, 0, 3304, 3305, 5, 211, 0, 0, 3305, 3309, 3, 814, 407, 0, 3306, 3307, 5, 296, 0, 0, 3307, 3309, 3, 800, 400, 0, 3308, 3304, 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3309, 261, 1, 0, 0, 0, 3310, 3313, 3, 264, 132, 0, 3311, 3313, 1, 0, 0, 0, 3312, 3310, 1, 0, 0, 0, 3312, 3311, 1, 0, 0, 0, 3313, 3318, 1, 0, 0, 0, 3314, 3315, 5, 6, 0, 0, 3315, 3317, 3, 264, 132, 0, 3316, 3314, 1, 0, 0, 0, 3317, 3320, 1, 0, 0, 0, 3318, 3316, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 263, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3326, 5, 574, 0, 0, 3322, 3326, 5, 576, 0, 0, 3323, 3326, 3, 816, 408, 0, 3324, 3326, 3, 832, 416, 0, 3325, 3321, 1, 0, 0, 0, 3325, 3322, 1, 0, 0, 0, 3325, 3323, 1, 0, 0, 0, 3325, 3324, 1, 0, 0, 0, 3326, 265, 1, 0, 0, 0, 3327, 3329, 5, 77, 0, 0, 3328, 3327, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3338, 5, 54, 0, 0, 3331, 3332, 5, 69, 0, 0, 3332, 3338, 7, 9, 0, 0, 3333, 3334, 5, 77, 0, 0, 3334, 3338, 5, 371, 0, 0, 3335, 3336, 5, 269, 0, 0, 3336, 3338, 5, 228, 0, 0, 3337, 3328, 1, 0, 0, 0, 3337, 3331, 1, 0, 0, 0, 3337, 3333, 1, 0, 0, 0, 3337, 3335, 1, 0, 0, 0, 3338, 267, 1, 0, 0, 0, 3339, 3340, 5, 46, 0, 0, 3340, 3341, 5, 198, 0, 0, 3341, 3342, 5, 357, 0, 0, 3342, 3343, 3, 826, 413, 0, 3343, 3344, 5, 80, 0, 0, 3344, 3354, 3, 832, 416, 0, 3345, 3346, 5, 102, 0, 0, 3346, 3351, 3, 270, 135, 0, 3347, 3348, 5, 33, 0, 0, 3348, 3350, 3, 270, 135, 0, 3349, 3347, 1, 0, 0, 0, 3350, 3353, 1, 0, 0, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3355, 1, 0, 0, 0, 3353, 3351, 1, 0, 0, 0, 3354, 3345, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3357, 5, 202, 0, 0, 3357, 3358, 3, 260, 130, 0, 3358, 3359, 5, 2, 0, 0, 3359, 3360, 5, 3, 0, 0, 3360, 269, 1, 0, 0, 0, 3361, 3362, 3, 826, 413, 0, 3362, 3363, 5, 68, 0, 0, 3363, 3364, 5, 2, 0, 0, 3364, 3368, 3, 816, 408, 0, 3365, 3367, 3, 456, 228, 0, 3366, 3365, 1, 0, 0, 0, 3367, 3370, 1, 0, 0, 0, 3368, 3366, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3371, 1, 0, 0, 0, 3370, 3368, 1, 0, 0, 0, 3371, 3372, 5, 3, 0, 0, 3372, 271, 1, 0, 0, 0, 3373, 3374, 5, 138, 0, 0, 3374, 3375, 5, 198, 0, 0, 3375, 3376, 5, 357, 0, 0, 3376, 3382, 3, 826, 413, 0, 3377, 3379, 5, 193, 0, 0, 3378, 3380, 7, 14, 0, 0, 3379, 3378, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3383, 1, 0, 0, 0, 3381, 3383, 5, 186, 0, 0, 3382, 3377, 1, 0, 0, 0, 3382, 3381, 1, 0, 0, 0, 3383, 273, 1, 0, 0, 0, 3384, 3385, 5, 46, 0, 0, 3385, 3386, 5, 140, 0, 0, 3386, 3387, 3, 310, 155, 0, 3387, 3388, 5, 42, 0, 0, 3388, 3389, 5, 2, 0, 0, 3389, 3390, 3, 670, 335, 0, 3390, 3394, 5, 3, 0, 0, 3391, 3393, 3, 266, 133, 0, 3392, 3391, 1, 0, 0, 0, 3393, 3396, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 275, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3399, 5, 46, 0, 0, 3398, 3400, 3, 360, 180, 0, 3399, 3398, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 5, 136, 0, 0, 3402, 3417, 3, 814, 407, 0, 3403, 3404, 3, 386, 193, 0, 3404, 3405, 3, 278, 139, 0, 3405, 3418, 1, 0, 0, 0, 3406, 3407, 5, 2, 0, 0, 3407, 3412, 3, 284, 142, 0, 3408, 3409, 5, 6, 0, 0, 3409, 3411, 3, 284, 142, 0, 3410, 3408, 1, 0, 0, 0, 3411, 3414, 1, 0, 0, 0, 3412, 3410, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3415, 1, 0, 0, 0, 3414, 3412, 1, 0, 0, 0, 3415, 3416, 5, 3, 0, 0, 3416, 3418, 1, 0, 0, 0, 3417, 3403, 1, 0, 0, 0, 3417, 3406, 1, 0, 0, 0, 3418, 3476, 1, 0, 0, 0, 3419, 3420, 5, 46, 0, 0, 3420, 3421, 5, 278, 0, 0, 3421, 3422, 3, 408, 204, 0, 3422, 3423, 3, 278, 139, 0, 3423, 3476, 1, 0, 0, 0, 3424, 3425, 5, 46, 0, 0, 3425, 3426, 5, 360, 0, 0, 3426, 3427, 3, 310, 155, 0, 3427, 3445, 5, 36, 0, 0, 3428, 3430, 5, 2, 0, 0, 3429, 3431, 3, 638, 319, 0, 3430, 3429, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3446, 5, 3, 0, 0, 3433, 3434, 5, 196, 0, 0, 3434, 3442, 5, 2, 0, 0, 3435, 3439, 3, 816, 408, 0, 3436, 3438, 3, 456, 228, 0, 3437, 3436, 1, 0, 0, 0, 3438, 3441, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3443, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3442, 3435, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 5, 3, 0, 0, 3445, 3428, 1, 0, 0, 0, 3445, 3433, 1, 0, 0, 0, 3446, 3476, 1, 0, 0, 0, 3447, 3448, 5, 46, 0, 0, 3448, 3449, 5, 360, 0, 0, 3449, 3455, 3, 310, 155, 0, 3450, 3451, 5, 36, 0, 0, 3451, 3453, 5, 299, 0, 0, 3452, 3450, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3456, 3, 278, 139, 0, 3455, 3452, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3476, 1, 0, 0, 0, 3457, 3458, 5, 46, 0, 0, 3458, 3459, 5, 355, 0, 0, 3459, 3460, 5, 325, 0, 0, 3460, 3461, 7, 42, 0, 0, 3461, 3462, 3, 310, 155, 0, 3462, 3463, 3, 278, 139, 0, 3463, 3476, 1, 0, 0, 0, 3464, 3465, 5, 46, 0, 0, 3465, 3467, 5, 108, 0, 0, 3466, 3468, 3, 288, 144, 0, 3467, 3466, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3473, 3, 310, 155, 0, 3470, 3474, 3, 278, 139, 0, 3471, 3472, 5, 64, 0, 0, 3472, 3474, 3, 310, 155, 0, 3473, 3470, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3397, 1, 0, 0, 0, 3475, 3419, 1, 0, 0, 0, 3475, 3424, 1, 0, 0, 0, 3475, 3447, 1, 0, 0, 0, 3475, 3457, 1, 0, 0, 0, 3475, 3464, 1, 0, 0, 0, 3476, 277, 1, 0, 0, 0, 3477, 3478, 5, 2, 0, 0, 3478, 3483, 3, 280, 140, 0, 3479, 3480, 5, 6, 0, 0, 3480, 3482, 3, 280, 140, 0, 3481, 3479, 1, 0, 0, 0, 3482, 3485, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3483, 3484, 1, 0, 0, 0, 3484, 3486, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3486, 3487, 5, 3, 0, 0, 3487, 279, 1, 0, 0, 0, 3488, 3491, 3, 832, 416, 0, 3489, 3490, 5, 10, 0, 0, 3490, 3492, 3, 282, 141, 0, 3491, 3489, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 281, 1, 0, 0, 0, 3493, 3500, 3, 382, 191, 0, 3494, 3500, 3, 842, 421, 0, 3495, 3500, 3, 724, 362, 0, 3496, 3500, 3, 196, 98, 0, 3497, 3500, 3, 816, 408, 0, 3498, 3500, 5, 407, 0, 0, 3499, 3493, 1, 0, 0, 0, 3499, 3494, 1, 0, 0, 0, 3499, 3495, 1, 0, 0, 0, 3499, 3496, 1, 0, 0, 0, 3499, 3497, 1, 0, 0, 0, 3499, 3498, 1, 0, 0, 0, 3500, 283, 1, 0, 0, 0, 3501, 3502, 3, 834, 417, 0, 3502, 3503, 5, 10, 0, 0, 3503, 3504, 3, 282, 141, 0, 3504, 285, 1, 0, 0, 0, 3505, 3506, 5, 138, 0, 0, 3506, 3507, 5, 360, 0, 0, 3507, 3508, 3, 310, 155, 0, 3508, 3509, 5, 133, 0, 0, 3509, 3511, 5, 450, 0, 0, 3510, 3512, 3, 288, 144, 0, 3511, 3510, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3516, 3, 816, 408, 0, 3514, 3515, 7, 43, 0, 0, 3515, 3517, 3, 816, 408, 0, 3516, 3514, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3528, 1, 0, 0, 0, 3518, 3519, 5, 138, 0, 0, 3519, 3520, 5, 360, 0, 0, 3520, 3521, 3, 310, 155, 0, 3521, 3522, 5, 309, 0, 0, 3522, 3523, 5, 450, 0, 0, 3523, 3524, 3, 816, 408, 0, 3524, 3525, 5, 94, 0, 0, 3525, 3526, 3, 816, 408, 0, 3526, 3528, 1, 0, 0, 0, 3527, 3505, 1, 0, 0, 0, 3527, 3518, 1, 0, 0, 0, 3528, 287, 1, 0, 0, 0, 3529, 3530, 5, 220, 0, 0, 3530, 3531, 5, 77, 0, 0, 3531, 3532, 5, 396, 0, 0, 3532, 289, 1, 0, 0, 0, 3533, 3534, 5, 46, 0, 0, 3534, 3535, 5, 278, 0, 0, 3535, 3536, 5, 156, 0, 0, 3536, 3538, 3, 310, 155, 0, 3537, 3539, 5, 53, 0, 0, 3538, 3537, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3541, 5, 62, 0, 0, 3541, 3542, 5, 360, 0, 0, 3542, 3543, 3, 648, 324, 0, 3543, 3546, 3, 164, 82, 0, 3544, 3545, 5, 206, 0, 0, 3545, 3547, 3, 310, 155, 0, 3546, 3544, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 3549, 5, 36, 0, 0, 3549, 3554, 3, 292, 146, 0, 3550, 3551, 5, 6, 0, 0, 3551, 3553, 3, 292, 146, 0, 3552, 3550, 1, 0, 0, 0, 3553, 3556, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 291, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3557, 3558, 5, 278, 0, 0, 3558, 3559, 5, 574, 0, 0, 3559, 3561, 3, 408, 204, 0, 3560, 3562, 3, 406, 203, 0, 3561, 3560, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3570, 1, 0, 0, 0, 3563, 3568, 5, 62, 0, 0, 3564, 3569, 5, 325, 0, 0, 3565, 3566, 5, 83, 0, 0, 3566, 3567, 5, 147, 0, 0, 3567, 3569, 3, 310, 155, 0, 3568, 3564, 1, 0, 0, 0, 3568, 3565, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3563, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3574, 5, 302, 0, 0, 3573, 3572, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3584, 1, 0, 0, 0, 3575, 3576, 5, 211, 0, 0, 3576, 3578, 5, 574, 0, 0, 3577, 3579, 3, 522, 261, 0, 3578, 3577, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3584, 3, 376, 188, 0, 3581, 3582, 5, 345, 0, 0, 3582, 3584, 3, 648, 324, 0, 3583, 3557, 1, 0, 0, 0, 3583, 3575, 1, 0, 0, 0, 3583, 3581, 1, 0, 0, 0, 3584, 293, 1, 0, 0, 0, 3585, 3586, 5, 46, 0, 0, 3586, 3587, 5, 278, 0, 0, 3587, 3588, 5, 206, 0, 0, 3588, 3589, 3, 310, 155, 0, 3589, 3590, 3, 164, 82, 0, 3590, 295, 1, 0, 0, 0, 3591, 3592, 5, 138, 0, 0, 3592, 3593, 5, 278, 0, 0, 3593, 3594, 5, 206, 0, 0, 3594, 3595, 3, 310, 155, 0, 3595, 3614, 3, 164, 82, 0, 3596, 3597, 5, 133, 0, 0, 3597, 3602, 3, 292, 146, 0, 3598, 3599, 5, 6, 0, 0, 3599, 3601, 3, 292, 146, 0, 3600, 3598, 1, 0, 0, 0, 3601, 3604, 1, 0, 0, 0, 3602, 3600, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3615, 1, 0, 0, 0, 3604, 3602, 1, 0, 0, 0, 3605, 3606, 5, 191, 0, 0, 3606, 3611, 3, 298, 149, 0, 3607, 3608, 5, 6, 0, 0, 3608, 3610, 3, 298, 149, 0, 3609, 3607, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3596, 1, 0, 0, 0, 3614, 3605, 1, 0, 0, 0, 3615, 297, 1, 0, 0, 0, 3616, 3617, 7, 44, 0, 0, 3617, 3618, 5, 574, 0, 0, 3618, 3619, 3, 522, 261, 0, 3619, 299, 1, 0, 0, 0, 3620, 3621, 5, 301, 0, 0, 3621, 3622, 5, 281, 0, 0, 3622, 3623, 5, 147, 0, 0, 3623, 3624, 3, 824, 412, 0, 3624, 3625, 5, 94, 0, 0, 3625, 3626, 3, 822, 411, 0, 3626, 301, 1, 0, 0, 0, 3627, 3650, 5, 191, 0, 0, 3628, 3651, 5, 328, 0, 0, 3629, 3651, 5, 226, 0, 0, 3630, 3651, 5, 108, 0, 0, 3631, 3651, 5, 168, 0, 0, 3632, 3651, 5, 342, 0, 0, 3633, 3651, 5, 452, 0, 0, 3634, 3651, 5, 331, 0, 0, 3635, 3636, 5, 131, 0, 0, 3636, 3651, 5, 446, 0, 0, 3637, 3638, 5, 198, 0, 0, 3638, 3651, 5, 357, 0, 0, 3639, 3651, 5, 204, 0, 0, 3640, 3642, 5, 295, 0, 0, 3641, 3640, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3643, 1, 0, 0, 0, 3643, 3651, 5, 247, 0, 0, 3644, 3645, 5, 63, 0, 0, 3645, 3646, 5, 174, 0, 0, 3646, 3651, 5, 381, 0, 0, 3647, 3648, 5, 355, 0, 0, 3648, 3649, 5, 325, 0, 0, 3649, 3651, 7, 42, 0, 0, 3650, 3628, 1, 0, 0, 0, 3650, 3629, 1, 0, 0, 0, 3650, 3630, 1, 0, 0, 0, 3650, 3631, 1, 0, 0, 0, 3650, 3632, 1, 0, 0, 0, 3650, 3633, 1, 0, 0, 0, 3650, 3634, 1, 0, 0, 0, 3650, 3635, 1, 0, 0, 0, 3650, 3637, 1, 0, 0, 0, 3650, 3639, 1, 0, 0, 0, 3650, 3641, 1, 0, 0, 0, 3650, 3644, 1, 0, 0, 0, 3650, 3647, 1, 0, 0, 0, 3651, 3653, 1, 0, 0, 0, 3652, 3654, 3, 416, 208, 0, 3653, 3652, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3657, 3, 788, 394, 0, 3656, 3658, 3, 88, 44, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3835, 1, 0, 0, 0, 3659, 3661, 5, 191, 0, 0, 3660, 3662, 5, 259, 0, 0, 3661, 3660, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3665, 5, 376, 0, 0, 3664, 3666, 3, 416, 208, 0, 3665, 3664, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3672, 3, 782, 391, 0, 3668, 3669, 5, 6, 0, 0, 3669, 3671, 3, 782, 391, 0, 3670, 3668, 1, 0, 0, 0, 3671, 3674, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3676, 1, 0, 0, 0, 3674, 3672, 1, 0, 0, 0, 3675, 3677, 3, 88, 44, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3835, 1, 0, 0, 0, 3678, 3680, 5, 191, 0, 0, 3679, 3681, 5, 63, 0, 0, 3680, 3679, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 3684, 5, 92, 0, 0, 3683, 3685, 3, 416, 208, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 3688, 3, 766, 383, 0, 3687, 3689, 3, 88, 44, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3835, 1, 0, 0, 0, 3690, 3691, 5, 191, 0, 0, 3691, 3693, 5, 323, 0, 0, 3692, 3694, 3, 416, 208, 0, 3693, 3692, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 1, 0, 0, 0, 3695, 3697, 3, 768, 384, 0, 3696, 3698, 3, 88, 44, 0, 3697, 3696, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3835, 1, 0, 0, 0, 3699, 3700, 5, 191, 0, 0, 3700, 3702, 7, 45, 0, 0, 3701, 3703, 3, 416, 208, 0, 3702, 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3705, 3, 826, 413, 0, 3705, 3706, 5, 80, 0, 0, 3706, 3708, 3, 310, 155, 0, 3707, 3709, 3, 88, 44, 0, 3708, 3707, 1, 0, 0, 0, 3708, 3709, 1, 0, 0, 0, 3709, 3835, 1, 0, 0, 0, 3710, 3711, 5, 191, 0, 0, 3711, 3713, 7, 33, 0, 0, 3712, 3714, 3, 416, 208, 0, 3713, 3712, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3720, 3, 648, 324, 0, 3716, 3717, 5, 6, 0, 0, 3717, 3719, 3, 648, 324, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3725, 3, 88, 44, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3835, 1, 0, 0, 0, 3726, 3727, 5, 191, 0, 0, 3727, 3728, 5, 226, 0, 0, 3728, 3730, 5, 109, 0, 0, 3729, 3731, 3, 416, 208, 0, 3730, 3729, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3734, 3, 308, 154, 0, 3733, 3735, 3, 88, 44, 0, 3734, 3733, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3835, 1, 0, 0, 0, 3736, 3737, 5, 191, 0, 0, 3737, 3739, 5, 41, 0, 0, 3738, 3740, 3, 416, 208, 0, 3739, 3738, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3742, 5, 2, 0, 0, 3742, 3743, 3, 648, 324, 0, 3743, 3744, 5, 36, 0, 0, 3744, 3745, 3, 648, 324, 0, 3745, 3747, 5, 3, 0, 0, 3746, 3748, 3, 88, 44, 0, 3747, 3746, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3835, 1, 0, 0, 0, 3749, 3750, 5, 191, 0, 0, 3750, 3751, 5, 278, 0, 0, 3751, 3753, 7, 32, 0, 0, 3752, 3754, 3, 416, 208, 0, 3753, 3752, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3756, 3, 310, 155, 0, 3756, 3758, 3, 164, 82, 0, 3757, 3759, 3, 88, 44, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3835, 1, 0, 0, 0, 3760, 3761, 5, 191, 0, 0, 3761, 3762, 5, 281, 0, 0, 3762, 3763, 5, 147, 0, 0, 3763, 3765, 3, 824, 412, 0, 3764, 3766, 3, 88, 44, 0, 3765, 3764, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3835, 1, 0, 0, 0, 3767, 3768, 5, 191, 0, 0, 3768, 3770, 5, 451, 0, 0, 3769, 3771, 3, 416, 208, 0, 3770, 3769, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3774, 3, 826, 413, 0, 3773, 3775, 3, 88, 44, 0, 3774, 3773, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3835, 1, 0, 0, 0, 3776, 3777, 5, 191, 0, 0, 3777, 3779, 5, 351, 0, 0, 3778, 3780, 3, 416, 208, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3835, 3, 774, 387, 0, 3782, 3783, 5, 191, 0, 0, 3783, 3785, 5, 443, 0, 0, 3784, 3786, 3, 416, 208, 0, 3785, 3784, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3787, 1, 0, 0, 0, 3787, 3788, 5, 62, 0, 0, 3788, 3789, 3, 648, 324, 0, 3789, 3790, 5, 247, 0, 0, 3790, 3792, 3, 826, 413, 0, 3791, 3793, 3, 88, 44, 0, 3792, 3791, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3835, 1, 0, 0, 0, 3794, 3795, 5, 191, 0, 0, 3795, 3797, 7, 46, 0, 0, 3796, 3798, 3, 416, 208, 0, 3797, 3796, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3799, 1, 0, 0, 0, 3799, 3835, 3, 824, 412, 0, 3800, 3801, 5, 191, 0, 0, 3801, 3802, 5, 99, 0, 0, 3802, 3804, 5, 257, 0, 0, 3803, 3805, 3, 416, 208, 0, 3804, 3803, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3809, 5, 62, 0, 0, 3807, 3810, 3, 822, 411, 0, 3808, 3810, 5, 99, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3808, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3812, 5, 331, 0, 0, 3812, 3835, 3, 826, 413, 0, 3813, 3814, 5, 191, 0, 0, 3814, 3816, 5, 175, 0, 0, 3815, 3817, 3, 416, 208, 0, 3816, 3815, 1, 0, 0, 0, 3816, 3817, 1, 0, 0, 0, 3817, 3818, 1, 0, 0, 0, 3818, 3832, 3, 792, 396, 0, 3819, 3821, 5, 105, 0, 0, 3820, 3819, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3823, 5, 2, 0, 0, 3823, 3828, 5, 209, 0, 0, 3824, 3825, 5, 6, 0, 0, 3825, 3827, 5, 209, 0, 0, 3826, 3824, 1, 0, 0, 0, 3827, 3830, 1, 0, 0, 0, 3828, 3826, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3831, 1, 0, 0, 0, 3830, 3828, 1, 0, 0, 0, 3831, 3833, 5, 3, 0, 0, 3832, 3820, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3835, 1, 0, 0, 0, 3834, 3627, 1, 0, 0, 0, 3834, 3659, 1, 0, 0, 0, 3834, 3678, 1, 0, 0, 0, 3834, 3690, 1, 0, 0, 0, 3834, 3699, 1, 0, 0, 0, 3834, 3710, 1, 0, 0, 0, 3834, 3726, 1, 0, 0, 0, 3834, 3736, 1, 0, 0, 0, 3834, 3749, 1, 0, 0, 0, 3834, 3760, 1, 0, 0, 0, 3834, 3767, 1, 0, 0, 0, 3834, 3776, 1, 0, 0, 0, 3834, 3782, 1, 0, 0, 0, 3834, 3794, 1, 0, 0, 0, 3834, 3800, 1, 0, 0, 0, 3834, 3813, 1, 0, 0, 0, 3835, 303, 1, 0, 0, 0, 3836, 3838, 5, 63, 0, 0, 3837, 3836, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 3839, 1, 0, 0, 0, 3839, 3840, 5, 92, 0, 0, 3840, 3853, 3, 778, 389, 0, 3841, 3843, 5, 259, 0, 0, 3842, 3841, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3845, 5, 376, 0, 0, 3845, 3853, 3, 782, 391, 0, 3846, 3847, 7, 47, 0, 0, 3847, 3853, 3, 310, 155, 0, 3848, 3849, 5, 355, 0, 0, 3849, 3850, 5, 325, 0, 0, 3850, 3851, 7, 42, 0, 0, 3851, 3853, 3, 310, 155, 0, 3852, 3837, 1, 0, 0, 0, 3852, 3842, 1, 0, 0, 0, 3852, 3846, 1, 0, 0, 0, 3852, 3848, 1, 0, 0, 0, 3853, 305, 1, 0, 0, 0, 3854, 3855, 5, 198, 0, 0, 3855, 3871, 5, 357, 0, 0, 3856, 3857, 5, 131, 0, 0, 3857, 3871, 5, 446, 0, 0, 3858, 3871, 5, 204, 0, 0, 3859, 3871, 5, 452, 0, 0, 3860, 3871, 5, 331, 0, 0, 3861, 3871, 5, 318, 0, 0, 3862, 3871, 5, 451, 0, 0, 3863, 3864, 5, 63, 0, 0, 3864, 3865, 5, 174, 0, 0, 3865, 3871, 5, 381, 0, 0, 3866, 3868, 5, 295, 0, 0, 3867, 3866, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3871, 5, 247, 0, 0, 3870, 3854, 1, 0, 0, 0, 3870, 3856, 1, 0, 0, 0, 3870, 3858, 1, 0, 0, 0, 3870, 3859, 1, 0, 0, 0, 3870, 3860, 1, 0, 0, 0, 3870, 3861, 1, 0, 0, 0, 3870, 3862, 1, 0, 0, 0, 3870, 3863, 1, 0, 0, 0, 3870, 3867, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3879, 3, 826, 413, 0, 3873, 3874, 5, 323, 0, 0, 3874, 3879, 3, 794, 397, 0, 3875, 3876, 5, 175, 0, 0, 3876, 3879, 3, 792, 396, 0, 3877, 3879, 3, 170, 85, 0, 3878, 3870, 1, 0, 0, 0, 3878, 3873, 1, 0, 0, 0, 3878, 3875, 1, 0, 0, 0, 3878, 3877, 1, 0, 0, 0, 3879, 307, 1, 0, 0, 0, 3880, 3885, 3, 310, 155, 0, 3881, 3882, 5, 6, 0, 0, 3882, 3884, 3, 310, 155, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3887, 1, 0, 0, 0, 3885, 3883, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 309, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3888, 3890, 3, 826, 413, 0, 3889, 3891, 3, 312, 156, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 311, 1, 0, 0, 0, 3892, 3893, 5, 11, 0, 0, 3893, 3895, 3, 832, 416, 0, 3894, 3892, 1, 0, 0, 0, 3895, 3896, 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 313, 1, 0, 0, 0, 3898, 3900, 5, 358, 0, 0, 3899, 3901, 5, 92, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3907, 3, 316, 158, 0, 3903, 3904, 5, 6, 0, 0, 3904, 3906, 3, 316, 158, 0, 3905, 3903, 1, 0, 0, 0, 3906, 3909, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3912, 1, 0, 0, 0, 3909, 3907, 1, 0, 0, 0, 3910, 3911, 7, 48, 0, 0, 3911, 3913, 5, 219, 0, 0, 3912, 3910, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3915, 1, 0, 0, 0, 3914, 3916, 3, 88, 44, 0, 3915, 3914, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 315, 1, 0, 0, 0, 3917, 3919, 5, 81, 0, 0, 3918, 3917, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3920, 1, 0, 0, 0, 3920, 3922, 3, 778, 389, 0, 3921, 3923, 5, 9, 0, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 317, 1, 0, 0, 0, 3924, 3925, 5, 159, 0, 0, 3925, 3984, 5, 80, 0, 0, 3926, 3985, 3, 304, 152, 0, 3927, 3985, 3, 306, 153, 0, 3928, 3929, 5, 44, 0, 0, 3929, 3931, 3, 826, 413, 0, 3930, 3932, 3, 312, 156, 0, 3931, 3930, 1, 0, 0, 0, 3931, 3932, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 5, 11, 0, 0, 3934, 3935, 3, 806, 403, 0, 3935, 3985, 1, 0, 0, 0, 3936, 3937, 7, 33, 0, 0, 3937, 3985, 3, 648, 324, 0, 3938, 3939, 5, 136, 0, 0, 3939, 3985, 3, 388, 194, 0, 3940, 3941, 5, 211, 0, 0, 3941, 3985, 3, 376, 188, 0, 3942, 3943, 5, 278, 0, 0, 3943, 3985, 3, 410, 205, 0, 3944, 3945, 5, 45, 0, 0, 3945, 3946, 3, 826, 413, 0, 3946, 3952, 5, 80, 0, 0, 3947, 3953, 3, 778, 389, 0, 3948, 3950, 5, 189, 0, 0, 3949, 3948, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3951, 1, 0, 0, 0, 3951, 3953, 3, 310, 155, 0, 3952, 3947, 1, 0, 0, 0, 3952, 3949, 1, 0, 0, 0, 3953, 3985, 1, 0, 0, 0, 3954, 3955, 7, 45, 0, 0, 3955, 3956, 3, 826, 413, 0, 3956, 3957, 5, 80, 0, 0, 3957, 3958, 3, 310, 155, 0, 3958, 3985, 1, 0, 0, 0, 3959, 3960, 5, 296, 0, 0, 3960, 3985, 3, 372, 186, 0, 3961, 3962, 5, 442, 0, 0, 3962, 3985, 3, 368, 184, 0, 3963, 3964, 5, 443, 0, 0, 3964, 3965, 5, 62, 0, 0, 3965, 3966, 3, 648, 324, 0, 3966, 3967, 5, 247, 0, 0, 3967, 3968, 3, 826, 413, 0, 3968, 3985, 1, 0, 0, 0, 3969, 3970, 5, 278, 0, 0, 3970, 3971, 7, 32, 0, 0, 3971, 3972, 3, 310, 155, 0, 3972, 3973, 3, 164, 82, 0, 3973, 3985, 1, 0, 0, 0, 3974, 3975, 5, 248, 0, 0, 3975, 3976, 5, 274, 0, 0, 3976, 3985, 3, 196, 98, 0, 3977, 3978, 5, 41, 0, 0, 3978, 3979, 5, 2, 0, 0, 3979, 3980, 3, 648, 324, 0, 3980, 3981, 5, 36, 0, 0, 3981, 3982, 3, 648, 324, 0, 3982, 3983, 5, 3, 0, 0, 3983, 3985, 1, 0, 0, 0, 3984, 3926, 1, 0, 0, 0, 3984, 3927, 1, 0, 0, 0, 3984, 3928, 1, 0, 0, 0, 3984, 3936, 1, 0, 0, 0, 3984, 3938, 1, 0, 0, 0, 3984, 3940, 1, 0, 0, 0, 3984, 3942, 1, 0, 0, 0, 3984, 3944, 1, 0, 0, 0, 3984, 3954, 1, 0, 0, 0, 3984, 3959, 1, 0, 0, 0, 3984, 3961, 1, 0, 0, 0, 3984, 3963, 1, 0, 0, 0, 3984, 3969, 1, 0, 0, 0, 3984, 3974, 1, 0, 0, 0, 3984, 3977, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3989, 5, 116, 0, 0, 3987, 3990, 3, 816, 408, 0, 3988, 3990, 5, 78, 0, 0, 3989, 3987, 1, 0, 0, 0, 3989, 3988, 1, 0, 0, 0, 3990, 319, 1, 0, 0, 0, 3991, 3992, 5, 327, 0, 0, 3992, 3995, 5, 246, 0, 0, 3993, 3994, 5, 62, 0, 0, 3994, 3996, 3, 58, 29, 0, 3995, 3993, 1, 0, 0, 0, 3995, 3996, 1, 0, 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 4015, 5, 80, 0, 0, 3998, 3999, 7, 33, 0, 0, 3999, 4016, 3, 648, 324, 0, 4000, 4001, 5, 136, 0, 0, 4001, 4016, 3, 388, 194, 0, 4002, 4003, 5, 44, 0, 0, 4003, 4016, 3, 806, 403, 0, 4004, 4005, 5, 211, 0, 0, 4005, 4016, 3, 376, 188, 0, 4006, 4007, 5, 248, 0, 0, 4007, 4008, 5, 274, 0, 0, 4008, 4016, 3, 196, 98, 0, 4009, 4010, 5, 296, 0, 0, 4010, 4016, 3, 372, 186, 0, 4011, 4012, 5, 442, 0, 0, 4012, 4016, 3, 368, 184, 0, 4013, 4016, 3, 304, 152, 0, 4014, 4016, 3, 306, 153, 0, 4015, 3998, 1, 0, 0, 0, 4015, 4000, 1, 0, 0, 0, 4015, 4002, 1, 0, 0, 0, 4015, 4004, 1, 0, 0, 0, 4015, 4006, 1, 0, 0, 0, 4015, 4009, 1, 0, 0, 0, 4015, 4011, 1, 0, 0, 0, 4015, 4013, 1, 0, 0, 0, 4015, 4014, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4020, 5, 116, 0, 0, 4018, 4021, 3, 816, 408, 0, 4019, 4021, 5, 78, 0, 0, 4020, 4018, 1, 0, 0, 0, 4020, 4019, 1, 0, 0, 0, 4021, 321, 1, 0, 0, 0, 4022, 4023, 7, 49, 0, 0, 4023, 4024, 3, 324, 162, 0, 4024, 323, 1, 0, 0, 0, 4025, 4027, 7, 50, 0, 0, 4026, 4025, 1, 0, 0, 0, 4026, 4027, 1, 0, 0, 0, 4027, 4029, 1, 0, 0, 0, 4028, 4030, 3, 326, 163, 0, 4029, 4028, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 4031, 1, 0, 0, 0, 4031, 4069, 3, 826, 413, 0, 4032, 4034, 7, 51, 0, 0, 4033, 4032, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4035, 1, 0, 0, 0, 4035, 4037, 3, 820, 410, 0, 4036, 4038, 3, 326, 163, 0, 4037, 4036, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4040, 3, 826, 413, 0, 4040, 4069, 1, 0, 0, 0, 4041, 4043, 5, 210, 0, 0, 4042, 4044, 3, 820, 410, 0, 4043, 4042, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4047, 3, 326, 163, 0, 4046, 4045, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4069, 3, 826, 413, 0, 4049, 4051, 5, 210, 0, 0, 4050, 4049, 1, 0, 0, 0, 4050, 4051, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4054, 5, 30, 0, 0, 4053, 4055, 3, 326, 163, 0, 4054, 4053, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4069, 3, 826, 413, 0, 4057, 4062, 5, 144, 0, 0, 4058, 4060, 5, 30, 0, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4063, 1, 0, 0, 0, 4061, 4063, 3, 820, 410, 0, 4062, 4059, 1, 0, 0, 0, 4062, 4061, 1, 0, 0, 0, 4063, 4065, 1, 0, 0, 0, 4064, 4066, 3, 326, 163, 0, 4065, 4064, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4069, 3, 826, 413, 0, 4068, 4026, 1, 0, 0, 0, 4068, 4033, 1, 0, 0, 0, 4068, 4041, 1, 0, 0, 0, 4068, 4050, 1, 0, 0, 0, 4068, 4057, 1, 0, 0, 0, 4069, 325, 1, 0, 0, 0, 4070, 4071, 7, 52, 0, 0, 4071, 327, 1, 0, 0, 0, 4072, 4073, 5, 65, 0, 0, 4073, 4074, 3, 332, 166, 0, 4074, 4075, 5, 80, 0, 0, 4075, 4076, 3, 338, 169, 0, 4076, 4077, 5, 94, 0, 0, 4077, 4081, 3, 340, 170, 0, 4078, 4079, 5, 105, 0, 0, 4079, 4080, 5, 65, 0, 0, 4080, 4082, 5, 279, 0, 0, 4081, 4078, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 329, 1, 0, 0, 0, 4083, 4087, 5, 317, 0, 0, 4084, 4085, 5, 65, 0, 0, 4085, 4086, 5, 279, 0, 0, 4086, 4088, 5, 62, 0, 0, 4087, 4084, 1, 0, 0, 0, 4087, 4088, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4090, 3, 332, 166, 0, 4090, 4091, 5, 80, 0, 0, 4091, 4092, 3, 338, 169, 0, 4092, 4093, 5, 64, 0, 0, 4093, 4095, 3, 340, 170, 0, 4094, 4096, 3, 88, 44, 0, 4095, 4094, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 331, 1, 0, 0, 0, 4097, 4102, 3, 336, 168, 0, 4098, 4099, 5, 6, 0, 0, 4099, 4101, 3, 336, 168, 0, 4100, 4098, 1, 0, 0, 0, 4101, 4104, 1, 0, 0, 0, 4102, 4100, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4121, 1, 0, 0, 0, 4104, 4102, 1, 0, 0, 0, 4105, 4107, 5, 30, 0, 0, 4106, 4108, 5, 294, 0, 0, 4107, 4106, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 4110, 1, 0, 0, 0, 4109, 4111, 3, 138, 69, 0, 4110, 4109, 1, 0, 0, 0, 4110, 4111, 1, 0, 0, 0, 4111, 4121, 1, 0, 0, 0, 4112, 4117, 3, 334, 167, 0, 4113, 4114, 5, 6, 0, 0, 4114, 4116, 3, 334, 167, 0, 4115, 4113, 1, 0, 0, 0, 4116, 4119, 1, 0, 0, 0, 4117, 4115, 1, 0, 0, 0, 4117, 4118, 1, 0, 0, 0, 4118, 4121, 1, 0, 0, 0, 4119, 4117, 1, 0, 0, 0, 4120, 4097, 1, 0, 0, 0, 4120, 4105, 1, 0, 0, 0, 4120, 4112, 1, 0, 0, 0, 4121, 333, 1, 0, 0, 0, 4122, 4123, 7, 53, 0, 0, 4123, 335, 1, 0, 0, 0, 4124, 4129, 5, 88, 0, 0, 4125, 4129, 5, 86, 0, 0, 4126, 4129, 5, 46, 0, 0, 4127, 4129, 3, 826, 413, 0, 4128, 4124, 1, 0, 0, 0, 4128, 4125, 1, 0, 0, 0, 4128, 4126, 1, 0, 0, 0, 4128, 4127, 1, 0, 0, 0, 4129, 4131, 1, 0, 0, 0, 4130, 4132, 3, 138, 69, 0, 4131, 4130, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 337, 1, 0, 0, 0, 4133, 4134, 5, 92, 0, 0, 4134, 4179, 3, 766, 383, 0, 4135, 4137, 5, 328, 0, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4179, 3, 764, 382, 0, 4139, 4143, 5, 63, 0, 0, 4140, 4141, 5, 174, 0, 0, 4141, 4144, 5, 381, 0, 0, 4142, 4144, 5, 331, 0, 0, 4143, 4140, 1, 0, 0, 0, 4143, 4142, 1, 0, 0, 0, 4144, 4147, 1, 0, 0, 0, 4145, 4147, 5, 247, 0, 0, 4146, 4139, 1, 0, 0, 0, 4146, 4145, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4179, 3, 788, 394, 0, 4149, 4150, 5, 211, 0, 0, 4150, 4179, 3, 374, 187, 0, 4151, 4152, 5, 296, 0, 0, 4152, 4179, 3, 370, 185, 0, 4153, 4154, 5, 442, 0, 0, 4154, 4179, 3, 366, 183, 0, 4155, 4156, 5, 175, 0, 0, 4156, 4179, 3, 770, 385, 0, 4157, 4158, 7, 33, 0, 0, 4158, 4179, 3, 308, 154, 0, 4159, 4160, 5, 248, 0, 0, 4160, 4161, 5, 274, 0, 0, 4161, 4166, 3, 196, 98, 0, 4162, 4163, 5, 6, 0, 0, 4163, 4165, 3, 196, 98, 0, 4164, 4162, 1, 0, 0, 0, 4165, 4168, 1, 0, 0, 0, 4166, 4164, 1, 0, 0, 0, 4166, 4167, 1, 0, 0, 0, 4167, 4179, 1, 0, 0, 0, 4168, 4166, 1, 0, 0, 0, 4169, 4170, 5, 323, 0, 0, 4170, 4179, 3, 768, 384, 0, 4171, 4172, 5, 351, 0, 0, 4172, 4179, 3, 786, 393, 0, 4173, 4174, 5, 30, 0, 0, 4174, 4175, 7, 54, 0, 0, 4175, 4176, 5, 68, 0, 0, 4176, 4177, 5, 323, 0, 0, 4177, 4179, 3, 768, 384, 0, 4178, 4133, 1, 0, 0, 0, 4178, 4136, 1, 0, 0, 0, 4178, 4146, 1, 0, 0, 0, 4178, 4149, 1, 0, 0, 0, 4178, 4151, 1, 0, 0, 0, 4178, 4153, 1, 0, 0, 0, 4178, 4155, 1, 0, 0, 0, 4178, 4157, 1, 0, 0, 0, 4178, 4159, 1, 0, 0, 0, 4178, 4169, 1, 0, 0, 0, 4178, 4171, 1, 0, 0, 0, 4178, 4173, 1, 0, 0, 0, 4179, 339, 1, 0, 0, 0, 4180, 4182, 5, 66, 0, 0, 4181, 4180, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4184, 3, 822, 411, 0, 4184, 4192, 1, 0, 0, 0, 4185, 4187, 5, 6, 0, 0, 4186, 4188, 5, 66, 0, 0, 4187, 4186, 1, 0, 0, 0, 4187, 4188, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4191, 3, 822, 411, 0, 4190, 4185, 1, 0, 0, 0, 4191, 4194, 1, 0, 0, 0, 4192, 4190, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 341, 1, 0, 0, 0, 4194, 4192, 1, 0, 0, 0, 4195, 4196, 5, 65, 0, 0, 4196, 4201, 3, 336, 168, 0, 4197, 4198, 5, 6, 0, 0, 4198, 4200, 3, 336, 168, 0, 4199, 4197, 1, 0, 0, 0, 4200, 4203, 1, 0, 0, 0, 4201, 4199, 1, 0, 0, 0, 4201, 4202, 1, 0, 0, 0, 4202, 4204, 1, 0, 0, 0, 4203, 4201, 1, 0, 0, 0, 4204, 4205, 5, 94, 0, 0, 4205, 4209, 3, 824, 412, 0, 4206, 4207, 5, 105, 0, 0, 4207, 4208, 5, 134, 0, 0, 4208, 4210, 5, 279, 0, 0, 4209, 4206, 1, 0, 0, 0, 4209, 4210, 1, 0, 0, 0, 4210, 4214, 1, 0, 0, 0, 4211, 4212, 5, 214, 0, 0, 4212, 4213, 5, 147, 0, 0, 4213, 4215, 3, 822, 411, 0, 4214, 4211, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 343, 1, 0, 0, 0, 4216, 4220, 5, 317, 0, 0, 4217, 4218, 5, 134, 0, 0, 4218, 4219, 5, 279, 0, 0, 4219, 4221, 5, 62, 0, 0, 4220, 4217, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4222, 1, 0, 0, 0, 4222, 4227, 3, 336, 168, 0, 4223, 4224, 5, 6, 0, 0, 4224, 4226, 3, 336, 168, 0, 4225, 4223, 1, 0, 0, 0, 4226, 4229, 1, 0, 0, 0, 4227, 4225, 1, 0, 0, 0, 4227, 4228, 1, 0, 0, 0, 4228, 4230, 1, 0, 0, 0, 4229, 4227, 1, 0, 0, 0, 4230, 4231, 5, 64, 0, 0, 4231, 4235, 3, 824, 412, 0, 4232, 4233, 5, 214, 0, 0, 4233, 4234, 5, 147, 0, 0, 4234, 4236, 3, 822, 411, 0, 4235, 4232, 1, 0, 0, 0, 4235, 4236, 1, 0, 0, 0, 4236, 4238, 1, 0, 0, 0, 4237, 4239, 3, 88, 44, 0, 4238, 4237, 1, 0, 0, 0, 4238, 4239, 1, 0, 0, 0, 4239, 345, 1, 0, 0, 0, 4240, 4241, 5, 138, 0, 0, 4241, 4242, 5, 53, 0, 0, 4242, 4251, 5, 294, 0, 0, 4243, 4244, 5, 68, 0, 0, 4244, 4245, 5, 323, 0, 0, 4245, 4250, 3, 768, 384, 0, 4246, 4247, 5, 62, 0, 0, 4247, 4248, 7, 2, 0, 0, 4248, 4250, 3, 824, 412, 0, 4249, 4243, 1, 0, 0, 0, 4249, 4246, 1, 0, 0, 0, 4250, 4253, 1, 0, 0, 0, 4251, 4249, 1, 0, 0, 0, 4251, 4252, 1, 0, 0, 0, 4252, 4254, 1, 0, 0, 0, 4253, 4251, 1, 0, 0, 0, 4254, 4255, 3, 348, 174, 0, 4255, 347, 1, 0, 0, 0, 4256, 4257, 5, 65, 0, 0, 4257, 4258, 3, 332, 166, 0, 4258, 4259, 5, 80, 0, 0, 4259, 4260, 3, 350, 175, 0, 4260, 4261, 5, 94, 0, 0, 4261, 4265, 3, 340, 170, 0, 4262, 4263, 5, 105, 0, 0, 4263, 4264, 5, 65, 0, 0, 4264, 4266, 5, 279, 0, 0, 4265, 4262, 1, 0, 0, 0, 4265, 4266, 1, 0, 0, 0, 4266, 4282, 1, 0, 0, 0, 4267, 4271, 5, 317, 0, 0, 4268, 4269, 5, 65, 0, 0, 4269, 4270, 5, 279, 0, 0, 4270, 4272, 5, 62, 0, 0, 4271, 4268, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4274, 3, 332, 166, 0, 4274, 4275, 5, 80, 0, 0, 4275, 4276, 3, 350, 175, 0, 4276, 4277, 5, 64, 0, 0, 4277, 4279, 3, 340, 170, 0, 4278, 4280, 3, 88, 44, 0, 4279, 4278, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 1, 0, 0, 0, 4281, 4256, 1, 0, 0, 0, 4281, 4267, 1, 0, 0, 0, 4282, 349, 1, 0, 0, 0, 4283, 4284, 7, 55, 0, 0, 4284, 351, 1, 0, 0, 0, 4285, 4287, 5, 46, 0, 0, 4286, 4288, 5, 98, 0, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4291, 5, 226, 0, 0, 4290, 4292, 5, 109, 0, 0, 4291, 4290, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 4294, 1, 0, 0, 0, 4293, 4295, 3, 288, 144, 0, 4294, 4293, 1, 0, 0, 0, 4294, 4295, 1, 0, 0, 0, 4295, 4297, 1, 0, 0, 0, 4296, 4298, 3, 826, 413, 0, 4297, 4296, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4300, 5, 80, 0, 0, 4300, 4302, 3, 620, 310, 0, 4301, 4303, 3, 164, 82, 0, 4302, 4301, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4304, 1, 0, 0, 0, 4304, 4307, 3, 354, 177, 0, 4305, 4306, 5, 441, 0, 0, 4306, 4308, 3, 354, 177, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4314, 1, 0, 0, 0, 4309, 4311, 5, 273, 0, 0, 4310, 4312, 5, 77, 0, 0, 4311, 4310, 1, 0, 0, 0, 4311, 4312, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4315, 5, 56, 0, 0, 4314, 4309, 1, 0, 0, 0, 4314, 4315, 1, 0, 0, 0, 4315, 4317, 1, 0, 0, 0, 4316, 4318, 3, 94, 47, 0, 4317, 4316, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 4320, 1, 0, 0, 0, 4319, 4321, 3, 170, 85, 0, 4320, 4319, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4323, 1, 0, 0, 0, 4322, 4324, 3, 634, 317, 0, 4323, 4322, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 353, 1, 0, 0, 0, 4325, 4326, 5, 2, 0, 0, 4326, 4331, 3, 356, 178, 0, 4327, 4328, 5, 6, 0, 0, 4328, 4330, 3, 356, 178, 0, 4329, 4327, 1, 0, 0, 0, 4330, 4333, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4334, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4335, 5, 3, 0, 0, 4335, 355, 1, 0, 0, 0, 4336, 4343, 3, 806, 403, 0, 4337, 4343, 3, 684, 342, 0, 4338, 4339, 5, 2, 0, 0, 4339, 4340, 3, 670, 335, 0, 4340, 4341, 5, 3, 0, 0, 4341, 4343, 1, 0, 0, 0, 4342, 4336, 1, 0, 0, 0, 4342, 4337, 1, 0, 0, 0, 4342, 4338, 1, 0, 0, 0, 4343, 4345, 1, 0, 0, 0, 4344, 4346, 3, 90, 45, 0, 4345, 4344, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, 4346, 4353, 1, 0, 0, 0, 4347, 4349, 3, 310, 155, 0, 4348, 4347, 1, 0, 0, 0, 4348, 4349, 1, 0, 0, 0, 4349, 4354, 1, 0, 0, 0, 4350, 4351, 3, 310, 155, 0, 4351, 4352, 3, 92, 46, 0, 4352, 4354, 1, 0, 0, 0, 4353, 4348, 1, 0, 0, 0, 4353, 4350, 1, 0, 0, 0, 4354, 4356, 1, 0, 0, 0, 4355, 4357, 7, 56, 0, 0, 4356, 4355, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4360, 1, 0, 0, 0, 4358, 4359, 5, 273, 0, 0, 4359, 4361, 7, 57, 0, 0, 4360, 4358, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 357, 1, 0, 0, 0, 4362, 4364, 5, 46, 0, 0, 4363, 4365, 3, 360, 180, 0, 4364, 4363, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 4370, 1, 0, 0, 0, 4366, 4367, 5, 211, 0, 0, 4367, 4371, 3, 812, 406, 0, 4368, 4369, 5, 296, 0, 0, 4369, 4371, 3, 802, 401, 0, 4370, 4366, 1, 0, 0, 0, 4370, 4368, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4381, 5, 2, 0, 0, 4373, 4378, 3, 384, 192, 0, 4374, 4375, 5, 6, 0, 0, 4375, 4377, 3, 384, 192, 0, 4376, 4374, 1, 0, 0, 0, 4377, 4380, 1, 0, 0, 0, 4378, 4376, 1, 0, 0, 0, 4378, 4379, 1, 0, 0, 0, 4379, 4382, 1, 0, 0, 0, 4380, 4378, 1, 0, 0, 0, 4381, 4373, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 4383, 1, 0, 0, 0, 4383, 4384, 5, 3, 0, 0, 4384, 4401, 1, 0, 0, 0, 4385, 4399, 5, 316, 0, 0, 4386, 4400, 3, 382, 191, 0, 4387, 4388, 5, 92, 0, 0, 4388, 4389, 5, 2, 0, 0, 4389, 4394, 3, 396, 198, 0, 4390, 4391, 5, 6, 0, 0, 4391, 4393, 3, 396, 198, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4396, 1, 0, 0, 0, 4394, 4392, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, 4397, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4397, 4398, 5, 3, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4386, 1, 0, 0, 0, 4399, 4387, 1, 0, 0, 0, 4400, 4402, 1, 0, 0, 0, 4401, 4385, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 4404, 1, 0, 0, 0, 4403, 4405, 3, 392, 196, 0, 4404, 4403, 1, 0, 0, 0, 4405, 4406, 1, 0, 0, 0, 4406, 4404, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 4413, 1, 0, 0, 0, 4408, 4409, 5, 105, 0, 0, 4409, 4410, 5, 2, 0, 0, 4410, 4411, 3, 788, 394, 0, 4411, 4412, 5, 3, 0, 0, 4412, 4414, 1, 0, 0, 0, 4413, 4408, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 359, 1, 0, 0, 0, 4415, 4416, 5, 82, 0, 0, 4416, 4417, 5, 311, 0, 0, 4417, 361, 1, 0, 0, 0, 4418, 4420, 5, 2, 0, 0, 4419, 4421, 3, 364, 182, 0, 4420, 4419, 1, 0, 0, 0, 4420, 4421, 1, 0, 0, 0, 4421, 4422, 1, 0, 0, 0, 4422, 4423, 5, 3, 0, 0, 4423, 363, 1, 0, 0, 0, 4424, 4429, 3, 378, 189, 0, 4425, 4426, 5, 6, 0, 0, 4426, 4428, 3, 378, 189, 0, 4427, 4425, 1, 0, 0, 0, 4428, 4431, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4429, 4430, 1, 0, 0, 0, 4430, 365, 1, 0, 0, 0, 4431, 4429, 1, 0, 0, 0, 4432, 4437, 3, 368, 184, 0, 4433, 4434, 5, 6, 0, 0, 4434, 4436, 3, 368, 184, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4439, 1, 0, 0, 0, 4437, 4435, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 367, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 4441, 3, 798, 399, 0, 4441, 4442, 3, 362, 181, 0, 4442, 4446, 1, 0, 0, 0, 4443, 4446, 3, 840, 420, 0, 4444, 4446, 3, 784, 392, 0, 4445, 4440, 1, 0, 0, 0, 4445, 4443, 1, 0, 0, 0, 4445, 4444, 1, 0, 0, 0, 4446, 369, 1, 0, 0, 0, 4447, 4452, 3, 372, 186, 0, 4448, 4449, 5, 6, 0, 0, 4449, 4451, 3, 372, 186, 0, 4450, 4448, 1, 0, 0, 0, 4451, 4454, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 371, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4456, 3, 800, 400, 0, 4456, 4457, 3, 362, 181, 0, 4457, 4461, 1, 0, 0, 0, 4458, 4461, 3, 840, 420, 0, 4459, 4461, 3, 784, 392, 0, 4460, 4455, 1, 0, 0, 0, 4460, 4458, 1, 0, 0, 0, 4460, 4459, 1, 0, 0, 0, 4461, 373, 1, 0, 0, 0, 4462, 4467, 3, 376, 188, 0, 4463, 4464, 5, 6, 0, 0, 4464, 4466, 3, 376, 188, 0, 4465, 4463, 1, 0, 0, 0, 4466, 4469, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4467, 4468, 1, 0, 0, 0, 4468, 375, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4471, 3, 814, 407, 0, 4471, 4472, 3, 362, 181, 0, 4472, 4476, 1, 0, 0, 0, 4473, 4476, 3, 840, 420, 0, 4474, 4476, 3, 784, 392, 0, 4475, 4470, 1, 0, 0, 0, 4475, 4473, 1, 0, 0, 0, 4475, 4474, 1, 0, 0, 0, 4476, 377, 1, 0, 0, 0, 4477, 4479, 3, 380, 190, 0, 4478, 4480, 3, 828, 414, 0, 4479, 4478, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 4486, 1, 0, 0, 0, 4481, 4483, 3, 828, 414, 0, 4482, 4484, 3, 380, 190, 0, 4483, 4482, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 4486, 1, 0, 0, 0, 4485, 4477, 1, 0, 0, 0, 4485, 4481, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4488, 3, 382, 191, 0, 4488, 379, 1, 0, 0, 0, 4489, 4491, 5, 68, 0, 0, 4490, 4492, 5, 453, 0, 0, 4491, 4490, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4497, 1, 0, 0, 0, 4493, 4497, 5, 453, 0, 0, 4494, 4497, 5, 400, 0, 0, 4495, 4497, 5, 101, 0, 0, 4496, 4489, 1, 0, 0, 0, 4496, 4493, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4496, 4495, 1, 0, 0, 0, 4497, 381, 1, 0, 0, 0, 4498, 4508, 3, 648, 324, 0, 4499, 4501, 5, 415, 0, 0, 4500, 4499, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 4503, 3, 828, 414, 0, 4503, 4504, 3, 312, 156, 0, 4504, 4505, 5, 27, 0, 0, 4505, 4506, 5, 360, 0, 0, 4506, 4508, 1, 0, 0, 0, 4507, 4498, 1, 0, 0, 0, 4507, 4500, 1, 0, 0, 0, 4508, 383, 1, 0, 0, 0, 4509, 4512, 3, 378, 189, 0, 4510, 4511, 7, 58, 0, 0, 4511, 4513, 3, 670, 335, 0, 4512, 4510, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 385, 1, 0, 0, 0, 4514, 4524, 5, 2, 0, 0, 4515, 4525, 5, 9, 0, 0, 4516, 4518, 3, 364, 182, 0, 4517, 4516, 1, 0, 0, 0, 4517, 4518, 1, 0, 0, 0, 4518, 4522, 1, 0, 0, 0, 4519, 4520, 5, 83, 0, 0, 4520, 4521, 5, 147, 0, 0, 4521, 4523, 3, 364, 182, 0, 4522, 4519, 1, 0, 0, 0, 4522, 4523, 1, 0, 0, 0, 4523, 4525, 1, 0, 0, 0, 4524, 4515, 1, 0, 0, 0, 4524, 4517, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4527, 5, 3, 0, 0, 4527, 387, 1, 0, 0, 0, 4528, 4529, 3, 814, 407, 0, 4529, 4530, 3, 386, 193, 0, 4530, 389, 1, 0, 0, 0, 4531, 4532, 5, 316, 0, 0, 4532, 4535, 5, 78, 0, 0, 4533, 4535, 5, 149, 0, 0, 4534, 4531, 1, 0, 0, 0, 4534, 4533, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 5, 80, 0, 0, 4537, 4538, 5, 78, 0, 0, 4538, 4561, 5, 458, 0, 0, 4539, 4561, 5, 346, 0, 0, 4540, 4561, 5, 222, 0, 0, 4541, 4561, 5, 338, 0, 0, 4542, 4561, 5, 377, 0, 0, 4543, 4545, 5, 205, 0, 0, 4544, 4543, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4546, 1, 0, 0, 0, 4546, 4547, 5, 327, 0, 0, 4547, 4561, 7, 59, 0, 0, 4548, 4561, 5, 250, 0, 0, 4549, 4550, 5, 77, 0, 0, 4550, 4561, 5, 250, 0, 0, 4551, 4552, 7, 60, 0, 0, 4552, 4561, 3, 196, 98, 0, 4553, 4554, 5, 459, 0, 0, 4554, 4561, 3, 310, 155, 0, 4555, 4556, 5, 333, 0, 0, 4556, 4561, 3, 42, 21, 0, 4557, 4561, 3, 60, 30, 0, 4558, 4559, 5, 460, 0, 0, 4559, 4561, 3, 826, 413, 0, 4560, 4534, 1, 0, 0, 0, 4560, 4539, 1, 0, 0, 0, 4560, 4540, 1, 0, 0, 0, 4560, 4541, 1, 0, 0, 0, 4560, 4542, 1, 0, 0, 0, 4560, 4544, 1, 0, 0, 0, 4560, 4548, 1, 0, 0, 0, 4560, 4549, 1, 0, 0, 0, 4560, 4551, 1, 0, 0, 0, 4560, 4553, 1, 0, 0, 0, 4560, 4555, 1, 0, 0, 0, 4560, 4557, 1, 0, 0, 0, 4560, 4558, 1, 0, 0, 0, 4561, 391, 1, 0, 0, 0, 4562, 4563, 5, 36, 0, 0, 4563, 4564, 3, 816, 408, 0, 4564, 4565, 3, 456, 228, 0, 4565, 4598, 1, 0, 0, 0, 4566, 4567, 5, 247, 0, 0, 4567, 4598, 3, 58, 29, 0, 4568, 4569, 5, 443, 0, 0, 4569, 4570, 5, 62, 0, 0, 4570, 4571, 5, 360, 0, 0, 4571, 4578, 3, 648, 324, 0, 4572, 4573, 5, 6, 0, 0, 4573, 4574, 5, 62, 0, 0, 4574, 4575, 5, 360, 0, 0, 4575, 4577, 3, 648, 324, 0, 4576, 4572, 1, 0, 0, 0, 4577, 4580, 1, 0, 0, 0, 4578, 4576, 1, 0, 0, 0, 4578, 4579, 1, 0, 0, 0, 4579, 4598, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4598, 5, 104, 0, 0, 4582, 4583, 5, 333, 0, 0, 4583, 4590, 3, 826, 413, 0, 4584, 4585, 5, 94, 0, 0, 4585, 4591, 3, 826, 413, 0, 4586, 4587, 5, 10, 0, 0, 4587, 4591, 3, 826, 413, 0, 4588, 4589, 5, 64, 0, 0, 4589, 4591, 5, 434, 0, 0, 4590, 4584, 1, 0, 0, 0, 4590, 4586, 1, 0, 0, 0, 4590, 4588, 1, 0, 0, 0, 4591, 4598, 1, 0, 0, 0, 4592, 4593, 5, 36, 0, 0, 4593, 4598, 3, 826, 413, 0, 4594, 4598, 3, 4, 2, 0, 4595, 4598, 3, 390, 195, 0, 4596, 4598, 3, 826, 413, 0, 4597, 4562, 1, 0, 0, 0, 4597, 4566, 1, 0, 0, 0, 4597, 4568, 1, 0, 0, 0, 4597, 4581, 1, 0, 0, 0, 4597, 4582, 1, 0, 0, 0, 4597, 4592, 1, 0, 0, 0, 4597, 4594, 1, 0, 0, 0, 4597, 4595, 1, 0, 0, 0, 4597, 4596, 1, 0, 0, 0, 4598, 393, 1, 0, 0, 0, 4599, 4600, 5, 105, 0, 0, 4600, 4601, 3, 278, 139, 0, 4601, 395, 1, 0, 0, 0, 4602, 4603, 3, 806, 403, 0, 4603, 4604, 3, 382, 191, 0, 4604, 397, 1, 0, 0, 0, 4605, 4612, 5, 138, 0, 0, 4606, 4607, 5, 211, 0, 0, 4607, 4613, 3, 376, 188, 0, 4608, 4609, 5, 296, 0, 0, 4609, 4613, 3, 372, 186, 0, 4610, 4611, 5, 442, 0, 0, 4611, 4613, 3, 368, 184, 0, 4612, 4606, 1, 0, 0, 0, 4612, 4608, 1, 0, 0, 0, 4612, 4610, 1, 0, 0, 0, 4613, 4615, 1, 0, 0, 0, 4614, 4616, 3, 390, 195, 0, 4615, 4614, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4615, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4620, 1, 0, 0, 0, 4619, 4621, 5, 315, 0, 0, 4620, 4619, 1, 0, 0, 0, 4620, 4621, 1, 0, 0, 0, 4621, 399, 1, 0, 0, 0, 4622, 4638, 5, 191, 0, 0, 4623, 4625, 5, 211, 0, 0, 4624, 4626, 3, 416, 208, 0, 4625, 4624, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4639, 3, 374, 187, 0, 4628, 4630, 5, 296, 0, 0, 4629, 4631, 3, 416, 208, 0, 4630, 4629, 1, 0, 0, 0, 4630, 4631, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 4639, 3, 370, 185, 0, 4633, 4635, 5, 442, 0, 0, 4634, 4636, 3, 416, 208, 0, 4635, 4634, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4639, 3, 366, 183, 0, 4638, 4623, 1, 0, 0, 0, 4638, 4628, 1, 0, 0, 0, 4638, 4633, 1, 0, 0, 0, 4639, 4641, 1, 0, 0, 0, 4640, 4642, 3, 88, 44, 0, 4641, 4640, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 401, 1, 0, 0, 0, 4643, 4644, 5, 191, 0, 0, 4644, 4646, 5, 136, 0, 0, 4645, 4647, 3, 416, 208, 0, 4646, 4645, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 4653, 3, 388, 194, 0, 4649, 4650, 5, 6, 0, 0, 4650, 4652, 3, 388, 194, 0, 4651, 4649, 1, 0, 0, 0, 4652, 4655, 1, 0, 0, 0, 4653, 4651, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4657, 1, 0, 0, 0, 4655, 4653, 1, 0, 0, 0, 4656, 4658, 3, 88, 44, 0, 4657, 4656, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 403, 1, 0, 0, 0, 4659, 4660, 5, 191, 0, 0, 4660, 4662, 5, 278, 0, 0, 4661, 4663, 3, 416, 208, 0, 4662, 4661, 1, 0, 0, 0, 4662, 4663, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 4669, 3, 410, 205, 0, 4665, 4666, 5, 6, 0, 0, 4666, 4668, 3, 410, 205, 0, 4667, 4665, 1, 0, 0, 0, 4668, 4671, 1, 0, 0, 0, 4669, 4667, 1, 0, 0, 0, 4669, 4670, 1, 0, 0, 0, 4670, 4673, 1, 0, 0, 0, 4671, 4669, 1, 0, 0, 0, 4672, 4674, 3, 88, 44, 0, 4673, 4672, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 405, 1, 0, 0, 0, 4675, 4688, 5, 2, 0, 0, 4676, 4679, 3, 648, 324, 0, 4677, 4678, 5, 6, 0, 0, 4678, 4680, 3, 648, 324, 0, 4679, 4677, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 4689, 1, 0, 0, 0, 4681, 4682, 5, 407, 0, 0, 4682, 4683, 5, 6, 0, 0, 4683, 4689, 3, 648, 324, 0, 4684, 4685, 3, 648, 324, 0, 4685, 4686, 5, 6, 0, 0, 4686, 4687, 5, 407, 0, 0, 4687, 4689, 1, 0, 0, 0, 4688, 4676, 1, 0, 0, 0, 4688, 4681, 1, 0, 0, 0, 4688, 4684, 1, 0, 0, 0, 4689, 4690, 1, 0, 0, 0, 4690, 4691, 5, 3, 0, 0, 4691, 407, 1, 0, 0, 0, 4692, 4693, 3, 826, 413, 0, 4693, 4694, 5, 11, 0, 0, 4694, 4696, 1, 0, 0, 0, 4695, 4692, 1, 0, 0, 0, 4696, 4699, 1, 0, 0, 0, 4697, 4695, 1, 0, 0, 0, 4697, 4698, 1, 0, 0, 0, 4698, 4700, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 4700, 4701, 3, 718, 359, 0, 4701, 409, 1, 0, 0, 0, 4702, 4703, 3, 408, 204, 0, 4703, 4704, 3, 406, 203, 0, 4704, 411, 1, 0, 0, 0, 4705, 4709, 5, 57, 0, 0, 4706, 4710, 3, 816, 408, 0, 4707, 4708, 5, 247, 0, 0, 4708, 4710, 3, 58, 29, 0, 4709, 4706, 1, 0, 0, 0, 4709, 4707, 1, 0, 0, 0, 4710, 4711, 1, 0, 0, 0, 4711, 4709, 1, 0, 0, 0, 4711, 4712, 1, 0, 0, 0, 4712, 413, 1, 0, 0, 0, 4713, 4714, 5, 46, 0, 0, 4714, 4715, 5, 41, 0, 0, 4715, 4716, 5, 2, 0, 0, 4716, 4717, 3, 648, 324, 0, 4717, 4718, 5, 36, 0, 0, 4718, 4719, 3, 648, 324, 0, 4719, 4736, 5, 3, 0, 0, 4720, 4721, 5, 379, 0, 0, 4721, 4724, 5, 211, 0, 0, 4722, 4723, 5, 36, 0, 0, 4723, 4725, 7, 61, 0, 0, 4724, 4722, 1, 0, 0, 0, 4724, 4725, 1, 0, 0, 0, 4725, 4737, 1, 0, 0, 0, 4726, 4730, 5, 105, 0, 0, 4727, 4728, 5, 211, 0, 0, 4728, 4731, 3, 376, 188, 0, 4729, 4731, 5, 400, 0, 0, 4730, 4727, 1, 0, 0, 0, 4730, 4729, 1, 0, 0, 0, 4731, 4734, 1, 0, 0, 0, 4732, 4733, 5, 36, 0, 0, 4733, 4735, 7, 61, 0, 0, 4734, 4732, 1, 0, 0, 0, 4734, 4735, 1, 0, 0, 0, 4735, 4737, 1, 0, 0, 0, 4736, 4720, 1, 0, 0, 0, 4736, 4726, 1, 0, 0, 0, 4737, 415, 1, 0, 0, 0, 4738, 4739, 5, 220, 0, 0, 4739, 4740, 5, 396, 0, 0, 4740, 417, 1, 0, 0, 0, 4741, 4743, 5, 46, 0, 0, 4742, 4744, 3, 360, 180, 0, 4743, 4742, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4745, 1, 0, 0, 0, 4745, 4746, 5, 443, 0, 0, 4746, 4747, 5, 62, 0, 0, 4747, 4748, 3, 648, 324, 0, 4748, 4749, 5, 247, 0, 0, 4749, 4750, 3, 826, 413, 0, 4750, 4765, 5, 2, 0, 0, 4751, 4752, 5, 64, 0, 0, 4752, 4756, 3, 420, 210, 0, 4753, 4754, 5, 6, 0, 0, 4754, 4755, 5, 94, 0, 0, 4755, 4757, 3, 420, 210, 0, 4756, 4753, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4766, 1, 0, 0, 0, 4758, 4759, 5, 94, 0, 0, 4759, 4763, 3, 420, 210, 0, 4760, 4761, 5, 6, 0, 0, 4761, 4762, 5, 64, 0, 0, 4762, 4764, 3, 420, 210, 0, 4763, 4760, 1, 0, 0, 0, 4763, 4764, 1, 0, 0, 0, 4764, 4766, 1, 0, 0, 0, 4765, 4751, 1, 0, 0, 0, 4765, 4758, 1, 0, 0, 0, 4766, 4767, 1, 0, 0, 0, 4767, 4768, 5, 3, 0, 0, 4768, 419, 1, 0, 0, 0, 4769, 4770, 5, 461, 0, 0, 4770, 4771, 5, 105, 0, 0, 4771, 4772, 5, 211, 0, 0, 4772, 4773, 3, 376, 188, 0, 4773, 421, 1, 0, 0, 0, 4774, 4785, 5, 306, 0, 0, 4775, 4776, 5, 2, 0, 0, 4776, 4781, 5, 128, 0, 0, 4777, 4778, 5, 6, 0, 0, 4778, 4780, 5, 128, 0, 0, 4779, 4777, 1, 0, 0, 0, 4780, 4783, 1, 0, 0, 0, 4781, 4779, 1, 0, 0, 0, 4781, 4782, 1, 0, 0, 0, 4782, 4784, 1, 0, 0, 0, 4783, 4781, 1, 0, 0, 0, 4784, 4786, 5, 3, 0, 0, 4785, 4775, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4812, 1, 0, 0, 0, 4787, 4789, 5, 226, 0, 0, 4788, 4790, 5, 109, 0, 0, 4789, 4788, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4813, 3, 784, 392, 0, 4792, 4794, 5, 92, 0, 0, 4793, 4795, 5, 109, 0, 0, 4794, 4793, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 4813, 3, 778, 389, 0, 4797, 4799, 5, 323, 0, 0, 4798, 4800, 5, 109, 0, 0, 4799, 4798, 1, 0, 0, 0, 4799, 4800, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4813, 3, 794, 397, 0, 4802, 4804, 5, 349, 0, 0, 4803, 4805, 5, 109, 0, 0, 4804, 4803, 1, 0, 0, 0, 4804, 4805, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 4813, 3, 826, 413, 0, 4807, 4809, 5, 175, 0, 0, 4808, 4810, 5, 109, 0, 0, 4809, 4808, 1, 0, 0, 0, 4809, 4810, 1, 0, 0, 0, 4810, 4811, 1, 0, 0, 0, 4811, 4813, 3, 792, 396, 0, 4812, 4787, 1, 0, 0, 0, 4812, 4792, 1, 0, 0, 0, 4812, 4797, 1, 0, 0, 0, 4812, 4802, 1, 0, 0, 0, 4812, 4807, 1, 0, 0, 0, 4813, 423, 1, 0, 0, 0, 4814, 4815, 5, 138, 0, 0, 4815, 4816, 3, 170, 85, 0, 4816, 4817, 7, 16, 0, 0, 4817, 4818, 3, 92, 46, 0, 4818, 425, 1, 0, 0, 0, 4819, 4824, 5, 138, 0, 0, 4820, 4821, 5, 136, 0, 0, 4821, 4825, 3, 388, 194, 0, 4822, 4823, 5, 442, 0, 0, 4823, 4825, 3, 368, 184, 0, 4824, 4820, 1, 0, 0, 0, 4824, 4822, 1, 0, 0, 0, 4825, 4826, 1, 0, 0, 0, 4826, 4827, 5, 309, 0, 0, 4827, 4828, 5, 94, 0, 0, 4828, 4829, 3, 826, 413, 0, 4829, 5027, 1, 0, 0, 0, 4830, 4831, 5, 138, 0, 0, 4831, 4832, 5, 175, 0, 0, 4832, 4833, 3, 792, 396, 0, 4833, 4834, 5, 309, 0, 0, 4834, 4835, 5, 94, 0, 0, 4835, 4836, 3, 790, 395, 0, 4836, 5027, 1, 0, 0, 0, 4837, 4838, 5, 138, 0, 0, 4838, 4839, 7, 62, 0, 0, 4839, 4840, 3, 310, 155, 0, 4840, 4841, 5, 309, 0, 0, 4841, 4842, 5, 94, 0, 0, 4842, 4843, 3, 826, 413, 0, 4843, 5027, 1, 0, 0, 0, 4844, 4845, 5, 138, 0, 0, 4845, 4846, 5, 211, 0, 0, 4846, 4847, 3, 376, 188, 0, 4847, 4848, 5, 309, 0, 0, 4848, 4849, 5, 94, 0, 0, 4849, 4850, 3, 812, 406, 0, 4850, 5027, 1, 0, 0, 0, 4851, 4852, 5, 138, 0, 0, 4852, 4853, 5, 278, 0, 0, 4853, 4854, 7, 32, 0, 0, 4854, 4855, 3, 310, 155, 0, 4855, 4856, 3, 164, 82, 0, 4856, 4857, 5, 309, 0, 0, 4857, 4858, 5, 94, 0, 0, 4858, 4859, 3, 826, 413, 0, 4859, 5027, 1, 0, 0, 0, 4860, 4861, 5, 138, 0, 0, 4861, 4862, 5, 296, 0, 0, 4862, 4863, 3, 372, 186, 0, 4863, 4864, 5, 309, 0, 0, 4864, 4865, 5, 94, 0, 0, 4865, 4866, 3, 802, 401, 0, 4866, 5027, 1, 0, 0, 0, 4867, 4868, 5, 138, 0, 0, 4868, 4869, 5, 323, 0, 0, 4869, 4870, 3, 794, 397, 0, 4870, 4871, 5, 309, 0, 0, 4871, 4872, 5, 94, 0, 0, 4872, 4873, 3, 32, 16, 0, 4873, 5027, 1, 0, 0, 0, 4874, 4875, 5, 138, 0, 0, 4875, 4877, 7, 63, 0, 0, 4876, 4878, 3, 416, 208, 0, 4877, 4876, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 4879, 1, 0, 0, 0, 4879, 4880, 3, 784, 392, 0, 4880, 4881, 5, 309, 0, 0, 4881, 4882, 5, 94, 0, 0, 4882, 4883, 3, 826, 413, 0, 4883, 5027, 1, 0, 0, 0, 4884, 4886, 5, 138, 0, 0, 4885, 4887, 5, 259, 0, 0, 4886, 4885, 1, 0, 0, 0, 4886, 4887, 1, 0, 0, 0, 4887, 4888, 1, 0, 0, 0, 4888, 4890, 5, 376, 0, 0, 4889, 4891, 3, 416, 208, 0, 4890, 4889, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4892, 1, 0, 0, 0, 4892, 4893, 3, 782, 391, 0, 4893, 4894, 5, 309, 0, 0, 4894, 4895, 5, 94, 0, 0, 4895, 4896, 3, 780, 390, 0, 4896, 5027, 1, 0, 0, 0, 4897, 4899, 5, 138, 0, 0, 4898, 4900, 5, 63, 0, 0, 4899, 4898, 1, 0, 0, 0, 4899, 4900, 1, 0, 0, 0, 4900, 4901, 1, 0, 0, 0, 4901, 4903, 5, 92, 0, 0, 4902, 4904, 3, 416, 208, 0, 4903, 4902, 1, 0, 0, 0, 4903, 4904, 1, 0, 0, 0, 4904, 4905, 1, 0, 0, 0, 4905, 4906, 3, 620, 310, 0, 4906, 4907, 5, 309, 0, 0, 4907, 4908, 5, 94, 0, 0, 4908, 4909, 3, 776, 388, 0, 4909, 5027, 1, 0, 0, 0, 4910, 4935, 5, 138, 0, 0, 4911, 4913, 5, 63, 0, 0, 4912, 4911, 1, 0, 0, 0, 4912, 4913, 1, 0, 0, 0, 4913, 4914, 1, 0, 0, 0, 4914, 4916, 5, 92, 0, 0, 4915, 4917, 3, 416, 208, 0, 4916, 4915, 1, 0, 0, 0, 4916, 4917, 1, 0, 0, 0, 4917, 4918, 1, 0, 0, 0, 4918, 4919, 3, 620, 310, 0, 4919, 4921, 5, 309, 0, 0, 4920, 4922, 5, 44, 0, 0, 4921, 4920, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 4936, 1, 0, 0, 0, 4923, 4925, 5, 259, 0, 0, 4924, 4923, 1, 0, 0, 0, 4924, 4925, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 4928, 5, 376, 0, 0, 4927, 4929, 3, 416, 208, 0, 4928, 4927, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 4931, 3, 782, 391, 0, 4931, 4933, 5, 309, 0, 0, 4932, 4934, 5, 44, 0, 0, 4933, 4932, 1, 0, 0, 0, 4933, 4934, 1, 0, 0, 0, 4934, 4936, 1, 0, 0, 0, 4935, 4912, 1, 0, 0, 0, 4935, 4924, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4938, 3, 806, 403, 0, 4938, 4939, 5, 94, 0, 0, 4939, 4940, 3, 810, 405, 0, 4940, 5027, 1, 0, 0, 0, 4941, 4949, 5, 138, 0, 0, 4942, 4944, 5, 92, 0, 0, 4943, 4945, 3, 416, 208, 0, 4944, 4943, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 4950, 3, 620, 310, 0, 4947, 4948, 5, 189, 0, 0, 4948, 4950, 3, 310, 155, 0, 4949, 4942, 1, 0, 0, 0, 4949, 4947, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4952, 5, 309, 0, 0, 4952, 4953, 5, 45, 0, 0, 4953, 4954, 3, 826, 413, 0, 4954, 4955, 5, 94, 0, 0, 4955, 4956, 3, 826, 413, 0, 4956, 5027, 1, 0, 0, 0, 4957, 4964, 5, 138, 0, 0, 4958, 4960, 5, 445, 0, 0, 4959, 4961, 3, 416, 208, 0, 4960, 4959, 1, 0, 0, 0, 4960, 4961, 1, 0, 0, 0, 4961, 4965, 1, 0, 0, 0, 4962, 4965, 5, 321, 0, 0, 4963, 4965, 5, 357, 0, 0, 4964, 4958, 1, 0, 0, 0, 4964, 4962, 1, 0, 0, 0, 4964, 4963, 1, 0, 0, 0, 4965, 4966, 1, 0, 0, 0, 4966, 4967, 3, 826, 413, 0, 4967, 4968, 5, 80, 0, 0, 4968, 4969, 3, 784, 392, 0, 4969, 4970, 5, 309, 0, 0, 4970, 4971, 5, 94, 0, 0, 4971, 4972, 3, 826, 413, 0, 4972, 5027, 1, 0, 0, 0, 4973, 4986, 5, 138, 0, 0, 4974, 4975, 5, 63, 0, 0, 4975, 4976, 5, 174, 0, 0, 4976, 4987, 5, 381, 0, 0, 4977, 4979, 5, 295, 0, 0, 4978, 4977, 1, 0, 0, 0, 4978, 4979, 1, 0, 0, 0, 4979, 4980, 1, 0, 0, 0, 4980, 4987, 5, 247, 0, 0, 4981, 4987, 5, 452, 0, 0, 4982, 4987, 5, 331, 0, 0, 4983, 4987, 5, 451, 0, 0, 4984, 4985, 5, 198, 0, 0, 4985, 4987, 5, 357, 0, 0, 4986, 4974, 1, 0, 0, 0, 4986, 4978, 1, 0, 0, 0, 4986, 4981, 1, 0, 0, 0, 4986, 4982, 1, 0, 0, 0, 4986, 4983, 1, 0, 0, 0, 4986, 4984, 1, 0, 0, 0, 4987, 4988, 1, 0, 0, 0, 4988, 4989, 3, 826, 413, 0, 4989, 4990, 5, 309, 0, 0, 4990, 4991, 5, 94, 0, 0, 4991, 4992, 3, 826, 413, 0, 4992, 5027, 1, 0, 0, 0, 4993, 4994, 5, 138, 0, 0, 4994, 4995, 7, 46, 0, 0, 4995, 4996, 3, 822, 411, 0, 4996, 4997, 5, 309, 0, 0, 4997, 4998, 5, 94, 0, 0, 4998, 4999, 3, 822, 411, 0, 4999, 5027, 1, 0, 0, 0, 5000, 5001, 5, 138, 0, 0, 5001, 5002, 3, 170, 85, 0, 5002, 5003, 5, 309, 0, 0, 5003, 5004, 5, 94, 0, 0, 5004, 5005, 3, 774, 387, 0, 5005, 5027, 1, 0, 0, 0, 5006, 5007, 5, 138, 0, 0, 5007, 5008, 5, 355, 0, 0, 5008, 5009, 5, 325, 0, 0, 5009, 5010, 7, 42, 0, 0, 5010, 5011, 3, 310, 155, 0, 5011, 5012, 5, 309, 0, 0, 5012, 5013, 5, 94, 0, 0, 5013, 5014, 3, 826, 413, 0, 5014, 5027, 1, 0, 0, 0, 5015, 5016, 5, 138, 0, 0, 5016, 5017, 5, 360, 0, 0, 5017, 5018, 3, 310, 155, 0, 5018, 5019, 5, 309, 0, 0, 5019, 5020, 5, 143, 0, 0, 5020, 5021, 3, 826, 413, 0, 5021, 5022, 5, 94, 0, 0, 5022, 5024, 3, 826, 413, 0, 5023, 5025, 3, 88, 44, 0, 5024, 5023, 1, 0, 0, 0, 5024, 5025, 1, 0, 0, 0, 5025, 5027, 1, 0, 0, 0, 5026, 4819, 1, 0, 0, 0, 5026, 4830, 1, 0, 0, 0, 5026, 4837, 1, 0, 0, 0, 5026, 4844, 1, 0, 0, 0, 5026, 4851, 1, 0, 0, 0, 5026, 4860, 1, 0, 0, 0, 5026, 4867, 1, 0, 0, 0, 5026, 4874, 1, 0, 0, 0, 5026, 4884, 1, 0, 0, 0, 5026, 4897, 1, 0, 0, 0, 5026, 4910, 1, 0, 0, 0, 5026, 4941, 1, 0, 0, 0, 5026, 4957, 1, 0, 0, 0, 5026, 4973, 1, 0, 0, 0, 5026, 4993, 1, 0, 0, 0, 5026, 5000, 1, 0, 0, 0, 5026, 5006, 1, 0, 0, 0, 5026, 5015, 1, 0, 0, 0, 5027, 427, 1, 0, 0, 0, 5028, 5045, 5, 138, 0, 0, 5029, 5030, 5, 211, 0, 0, 5030, 5046, 3, 376, 188, 0, 5031, 5032, 5, 296, 0, 0, 5032, 5046, 3, 372, 186, 0, 5033, 5034, 5, 442, 0, 0, 5034, 5046, 3, 368, 184, 0, 5035, 5036, 5, 357, 0, 0, 5036, 5037, 3, 826, 413, 0, 5037, 5038, 5, 80, 0, 0, 5038, 5039, 3, 784, 392, 0, 5039, 5046, 1, 0, 0, 0, 5040, 5041, 5, 259, 0, 0, 5041, 5042, 5, 376, 0, 0, 5042, 5046, 3, 782, 391, 0, 5043, 5044, 5, 226, 0, 0, 5044, 5046, 3, 784, 392, 0, 5045, 5029, 1, 0, 0, 0, 5045, 5031, 1, 0, 0, 0, 5045, 5033, 1, 0, 0, 0, 5045, 5035, 1, 0, 0, 0, 5045, 5040, 1, 0, 0, 0, 5045, 5043, 1, 0, 0, 0, 5046, 5048, 1, 0, 0, 0, 5047, 5049, 5, 269, 0, 0, 5048, 5047, 1, 0, 0, 0, 5048, 5049, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5051, 5, 462, 0, 0, 5051, 5052, 5, 80, 0, 0, 5052, 5053, 5, 204, 0, 0, 5053, 5054, 3, 826, 413, 0, 5054, 429, 1, 0, 0, 0, 5055, 5094, 5, 138, 0, 0, 5056, 5057, 5, 136, 0, 0, 5057, 5095, 3, 388, 194, 0, 5058, 5059, 5, 204, 0, 0, 5059, 5095, 3, 826, 413, 0, 5060, 5061, 5, 211, 0, 0, 5061, 5095, 3, 376, 188, 0, 5062, 5063, 5, 278, 0, 0, 5063, 5095, 3, 410, 205, 0, 5064, 5065, 5, 278, 0, 0, 5065, 5066, 7, 32, 0, 0, 5066, 5067, 3, 310, 155, 0, 5067, 5068, 3, 164, 82, 0, 5068, 5095, 1, 0, 0, 0, 5069, 5070, 5, 296, 0, 0, 5070, 5095, 3, 372, 186, 0, 5071, 5072, 5, 442, 0, 0, 5072, 5095, 3, 368, 184, 0, 5073, 5075, 5, 328, 0, 0, 5074, 5076, 3, 416, 208, 0, 5075, 5074, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5077, 1, 0, 0, 0, 5077, 5095, 3, 784, 392, 0, 5078, 5080, 5, 259, 0, 0, 5079, 5078, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5083, 5, 376, 0, 0, 5082, 5084, 3, 416, 208, 0, 5083, 5082, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 5085, 1, 0, 0, 0, 5085, 5095, 3, 782, 391, 0, 5086, 5088, 5, 63, 0, 0, 5087, 5086, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5091, 5, 92, 0, 0, 5090, 5092, 3, 416, 208, 0, 5091, 5090, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5095, 3, 620, 310, 0, 5094, 5056, 1, 0, 0, 0, 5094, 5058, 1, 0, 0, 0, 5094, 5060, 1, 0, 0, 0, 5094, 5062, 1, 0, 0, 0, 5094, 5064, 1, 0, 0, 0, 5094, 5069, 1, 0, 0, 0, 5094, 5071, 1, 0, 0, 0, 5094, 5073, 1, 0, 0, 0, 5094, 5079, 1, 0, 0, 0, 5094, 5087, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5097, 5, 333, 0, 0, 5097, 5098, 5, 323, 0, 0, 5098, 5099, 3, 794, 397, 0, 5099, 5117, 1, 0, 0, 0, 5100, 5109, 5, 138, 0, 0, 5101, 5102, 5, 355, 0, 0, 5102, 5103, 5, 325, 0, 0, 5103, 5110, 7, 42, 0, 0, 5104, 5110, 5, 108, 0, 0, 5105, 5110, 5, 168, 0, 0, 5106, 5110, 5, 189, 0, 0, 5107, 5110, 5, 342, 0, 0, 5108, 5110, 5, 360, 0, 0, 5109, 5101, 1, 0, 0, 0, 5109, 5104, 1, 0, 0, 0, 5109, 5105, 1, 0, 0, 0, 5109, 5106, 1, 0, 0, 0, 5109, 5107, 1, 0, 0, 0, 5109, 5108, 1, 0, 0, 0, 5110, 5111, 1, 0, 0, 0, 5111, 5112, 3, 310, 155, 0, 5112, 5113, 5, 333, 0, 0, 5113, 5114, 5, 323, 0, 0, 5114, 5115, 3, 794, 397, 0, 5115, 5117, 1, 0, 0, 0, 5116, 5055, 1, 0, 0, 0, 5116, 5100, 1, 0, 0, 0, 5117, 431, 1, 0, 0, 0, 5118, 5119, 5, 138, 0, 0, 5119, 5120, 5, 278, 0, 0, 5120, 5121, 3, 410, 205, 0, 5121, 5122, 5, 333, 0, 0, 5122, 5123, 3, 434, 217, 0, 5123, 433, 1, 0, 0, 0, 5124, 5125, 5, 2, 0, 0, 5125, 5130, 3, 436, 218, 0, 5126, 5127, 5, 6, 0, 0, 5127, 5129, 3, 436, 218, 0, 5128, 5126, 1, 0, 0, 0, 5129, 5132, 1, 0, 0, 0, 5130, 5128, 1, 0, 0, 0, 5130, 5131, 1, 0, 0, 0, 5131, 5133, 1, 0, 0, 0, 5132, 5130, 1, 0, 0, 0, 5133, 5134, 5, 3, 0, 0, 5134, 435, 1, 0, 0, 0, 5135, 5136, 3, 832, 416, 0, 5136, 5143, 5, 10, 0, 0, 5137, 5144, 5, 407, 0, 0, 5138, 5144, 3, 382, 191, 0, 5139, 5144, 3, 842, 421, 0, 5140, 5144, 3, 724, 362, 0, 5141, 5144, 3, 196, 98, 0, 5142, 5144, 3, 816, 408, 0, 5143, 5137, 1, 0, 0, 0, 5143, 5138, 1, 0, 0, 0, 5143, 5139, 1, 0, 0, 0, 5143, 5140, 1, 0, 0, 0, 5143, 5141, 1, 0, 0, 0, 5143, 5142, 1, 0, 0, 0, 5144, 437, 1, 0, 0, 0, 5145, 5146, 5, 138, 0, 0, 5146, 5147, 5, 360, 0, 0, 5147, 5148, 3, 310, 155, 0, 5148, 5149, 5, 333, 0, 0, 5149, 5150, 3, 434, 217, 0, 5150, 439, 1, 0, 0, 0, 5151, 5152, 5, 138, 0, 0, 5152, 5153, 5, 278, 0, 0, 5153, 5154, 7, 32, 0, 0, 5154, 5155, 3, 310, 155, 0, 5155, 5156, 3, 164, 82, 0, 5156, 5157, 5, 282, 0, 0, 5157, 5158, 5, 94, 0, 0, 5158, 5159, 3, 822, 411, 0, 5159, 5226, 1, 0, 0, 0, 5160, 5187, 5, 138, 0, 0, 5161, 5162, 5, 136, 0, 0, 5162, 5188, 3, 388, 194, 0, 5163, 5164, 5, 175, 0, 0, 5164, 5188, 3, 792, 396, 0, 5165, 5166, 5, 211, 0, 0, 5166, 5188, 3, 376, 188, 0, 5167, 5169, 5, 295, 0, 0, 5168, 5167, 1, 0, 0, 0, 5168, 5169, 1, 0, 0, 0, 5169, 5170, 1, 0, 0, 0, 5170, 5171, 5, 247, 0, 0, 5171, 5188, 3, 826, 413, 0, 5172, 5173, 5, 248, 0, 0, 5173, 5174, 5, 274, 0, 0, 5174, 5188, 3, 196, 98, 0, 5175, 5176, 5, 248, 0, 0, 5176, 5177, 5, 274, 0, 0, 5177, 5188, 3, 196, 98, 0, 5178, 5179, 5, 278, 0, 0, 5179, 5188, 3, 410, 205, 0, 5180, 5181, 5, 296, 0, 0, 5181, 5188, 3, 372, 186, 0, 5182, 5183, 5, 442, 0, 0, 5183, 5188, 3, 368, 184, 0, 5184, 5185, 5, 323, 0, 0, 5185, 5188, 3, 794, 397, 0, 5186, 5188, 3, 170, 85, 0, 5187, 5161, 1, 0, 0, 0, 5187, 5163, 1, 0, 0, 0, 5187, 5165, 1, 0, 0, 0, 5187, 5168, 1, 0, 0, 0, 5187, 5172, 1, 0, 0, 0, 5187, 5175, 1, 0, 0, 0, 5187, 5178, 1, 0, 0, 0, 5187, 5180, 1, 0, 0, 0, 5187, 5182, 1, 0, 0, 0, 5187, 5184, 1, 0, 0, 0, 5187, 5186, 1, 0, 0, 0, 5188, 5189, 1, 0, 0, 0, 5189, 5190, 5, 282, 0, 0, 5190, 5191, 5, 94, 0, 0, 5191, 5192, 3, 822, 411, 0, 5192, 5226, 1, 0, 0, 0, 5193, 5202, 5, 138, 0, 0, 5194, 5195, 5, 355, 0, 0, 5195, 5196, 5, 325, 0, 0, 5196, 5203, 7, 64, 0, 0, 5197, 5203, 5, 108, 0, 0, 5198, 5203, 5, 168, 0, 0, 5199, 5203, 5, 189, 0, 0, 5200, 5203, 5, 360, 0, 0, 5201, 5203, 5, 342, 0, 0, 5202, 5194, 1, 0, 0, 0, 5202, 5197, 1, 0, 0, 0, 5202, 5198, 1, 0, 0, 0, 5202, 5199, 1, 0, 0, 0, 5202, 5200, 1, 0, 0, 0, 5202, 5201, 1, 0, 0, 0, 5203, 5204, 1, 0, 0, 0, 5204, 5205, 3, 310, 155, 0, 5205, 5206, 5, 282, 0, 0, 5206, 5207, 5, 94, 0, 0, 5207, 5208, 3, 822, 411, 0, 5208, 5226, 1, 0, 0, 0, 5209, 5218, 5, 138, 0, 0, 5210, 5219, 5, 331, 0, 0, 5211, 5212, 5, 63, 0, 0, 5212, 5213, 5, 174, 0, 0, 5213, 5219, 5, 381, 0, 0, 5214, 5215, 5, 198, 0, 0, 5215, 5219, 5, 357, 0, 0, 5216, 5219, 5, 452, 0, 0, 5217, 5219, 5, 451, 0, 0, 5218, 5210, 1, 0, 0, 0, 5218, 5211, 1, 0, 0, 0, 5218, 5214, 1, 0, 0, 0, 5218, 5216, 1, 0, 0, 0, 5218, 5217, 1, 0, 0, 0, 5219, 5220, 1, 0, 0, 0, 5220, 5221, 3, 826, 413, 0, 5221, 5222, 5, 282, 0, 0, 5222, 5223, 5, 94, 0, 0, 5223, 5224, 3, 822, 411, 0, 5224, 5226, 1, 0, 0, 0, 5225, 5151, 1, 0, 0, 0, 5225, 5160, 1, 0, 0, 0, 5225, 5193, 1, 0, 0, 0, 5225, 5209, 1, 0, 0, 0, 5226, 441, 1, 0, 0, 0, 5227, 5228, 5, 46, 0, 0, 5228, 5229, 5, 452, 0, 0, 5229, 5236, 3, 826, 413, 0, 5230, 5231, 5, 62, 0, 0, 5231, 5232, 5, 92, 0, 0, 5232, 5237, 3, 624, 312, 0, 5233, 5234, 5, 62, 0, 0, 5234, 5235, 5, 30, 0, 0, 5235, 5237, 5, 350, 0, 0, 5236, 5230, 1, 0, 0, 0, 5236, 5233, 1, 0, 0, 0, 5236, 5237, 1, 0, 0, 0, 5237, 5239, 1, 0, 0, 0, 5238, 5240, 3, 394, 197, 0, 5239, 5238, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, 5240, 443, 1, 0, 0, 0, 5241, 5242, 5, 138, 0, 0, 5242, 5243, 5, 452, 0, 0, 5243, 5261, 3, 826, 413, 0, 5244, 5245, 5, 282, 0, 0, 5245, 5246, 5, 94, 0, 0, 5246, 5262, 3, 822, 411, 0, 5247, 5248, 5, 333, 0, 0, 5248, 5262, 3, 278, 139, 0, 5249, 5250, 5, 309, 0, 0, 5250, 5251, 5, 94, 0, 0, 5251, 5262, 3, 826, 413, 0, 5252, 5253, 7, 35, 0, 0, 5253, 5258, 3, 622, 311, 0, 5254, 5255, 5, 6, 0, 0, 5255, 5257, 3, 622, 311, 0, 5256, 5254, 1, 0, 0, 0, 5257, 5260, 1, 0, 0, 0, 5258, 5256, 1, 0, 0, 0, 5258, 5259, 1, 0, 0, 0, 5259, 5262, 1, 0, 0, 0, 5260, 5258, 1, 0, 0, 0, 5261, 5244, 1, 0, 0, 0, 5261, 5247, 1, 0, 0, 0, 5261, 5249, 1, 0, 0, 0, 5261, 5252, 1, 0, 0, 0, 5262, 445, 1, 0, 0, 0, 5263, 5264, 5, 46, 0, 0, 5264, 5265, 5, 451, 0, 0, 5265, 5266, 3, 826, 413, 0, 5266, 5267, 5, 164, 0, 0, 5267, 5268, 3, 816, 408, 0, 5268, 5269, 5, 452, 0, 0, 5269, 5274, 3, 832, 416, 0, 5270, 5271, 5, 6, 0, 0, 5271, 5273, 3, 832, 416, 0, 5272, 5270, 1, 0, 0, 0, 5273, 5276, 1, 0, 0, 0, 5274, 5272, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5278, 1, 0, 0, 0, 5276, 5274, 1, 0, 0, 0, 5277, 5279, 3, 394, 197, 0, 5278, 5277, 1, 0, 0, 0, 5278, 5279, 1, 0, 0, 0, 5279, 447, 1, 0, 0, 0, 5280, 5281, 5, 138, 0, 0, 5281, 5282, 5, 451, 0, 0, 5282, 5283, 3, 826, 413, 0, 5283, 5284, 5, 333, 0, 0, 5284, 5285, 3, 278, 139, 0, 5285, 5337, 1, 0, 0, 0, 5286, 5287, 5, 138, 0, 0, 5287, 5288, 5, 451, 0, 0, 5288, 5289, 3, 826, 413, 0, 5289, 5290, 5, 164, 0, 0, 5290, 5291, 3, 816, 408, 0, 5291, 5337, 1, 0, 0, 0, 5292, 5293, 5, 138, 0, 0, 5293, 5294, 5, 451, 0, 0, 5294, 5295, 3, 826, 413, 0, 5295, 5296, 5, 305, 0, 0, 5296, 5298, 5, 452, 0, 0, 5297, 5299, 3, 394, 197, 0, 5298, 5297, 1, 0, 0, 0, 5298, 5299, 1, 0, 0, 0, 5299, 5337, 1, 0, 0, 0, 5300, 5301, 5, 138, 0, 0, 5301, 5302, 5, 451, 0, 0, 5302, 5303, 3, 826, 413, 0, 5303, 5304, 7, 35, 0, 0, 5304, 5305, 5, 452, 0, 0, 5305, 5310, 3, 832, 416, 0, 5306, 5307, 5, 6, 0, 0, 5307, 5309, 3, 832, 416, 0, 5308, 5306, 1, 0, 0, 0, 5309, 5312, 1, 0, 0, 0, 5310, 5308, 1, 0, 0, 0, 5310, 5311, 1, 0, 0, 0, 5311, 5314, 1, 0, 0, 0, 5312, 5310, 1, 0, 0, 0, 5313, 5315, 3, 394, 197, 0, 5314, 5313, 1, 0, 0, 0, 5314, 5315, 1, 0, 0, 0, 5315, 5337, 1, 0, 0, 0, 5316, 5317, 5, 138, 0, 0, 5317, 5318, 5, 451, 0, 0, 5318, 5319, 3, 826, 413, 0, 5319, 5320, 7, 65, 0, 0, 5320, 5337, 1, 0, 0, 0, 5321, 5322, 5, 138, 0, 0, 5322, 5323, 5, 451, 0, 0, 5323, 5324, 3, 826, 413, 0, 5324, 5325, 5, 465, 0, 0, 5325, 5326, 5, 2, 0, 0, 5326, 5327, 3, 284, 142, 0, 5327, 5328, 5, 3, 0, 0, 5328, 5337, 1, 0, 0, 0, 5329, 5330, 5, 138, 0, 0, 5330, 5331, 5, 451, 0, 0, 5331, 5332, 3, 826, 413, 0, 5332, 5333, 5, 282, 0, 0, 5333, 5334, 5, 94, 0, 0, 5334, 5335, 3, 822, 411, 0, 5335, 5337, 1, 0, 0, 0, 5336, 5280, 1, 0, 0, 0, 5336, 5286, 1, 0, 0, 0, 5336, 5292, 1, 0, 0, 0, 5336, 5300, 1, 0, 0, 0, 5336, 5316, 1, 0, 0, 0, 5336, 5321, 1, 0, 0, 0, 5336, 5329, 1, 0, 0, 0, 5337, 449, 1, 0, 0, 0, 5338, 5340, 5, 46, 0, 0, 5339, 5341, 3, 360, 180, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5343, 5, 321, 0, 0, 5343, 5344, 3, 826, 413, 0, 5344, 5345, 5, 36, 0, 0, 5345, 5346, 5, 80, 0, 0, 5346, 5347, 7, 66, 0, 0, 5347, 5348, 5, 94, 0, 0, 5348, 5350, 3, 784, 392, 0, 5349, 5351, 3, 634, 317, 0, 5350, 5349, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 5352, 1, 0, 0, 0, 5352, 5354, 5, 57, 0, 0, 5353, 5355, 7, 67, 0, 0, 5354, 5353, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5372, 1, 0, 0, 0, 5356, 5373, 5, 270, 0, 0, 5357, 5373, 3, 452, 226, 0, 5358, 5360, 5, 2, 0, 0, 5359, 5361, 3, 452, 226, 0, 5360, 5359, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 5368, 1, 0, 0, 0, 5362, 5364, 5, 7, 0, 0, 5363, 5365, 3, 452, 226, 0, 5364, 5363, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5367, 1, 0, 0, 0, 5366, 5362, 1, 0, 0, 0, 5367, 5370, 1, 0, 0, 0, 5368, 5366, 1, 0, 0, 0, 5368, 5369, 1, 0, 0, 0, 5369, 5371, 1, 0, 0, 0, 5370, 5368, 1, 0, 0, 0, 5371, 5373, 5, 3, 0, 0, 5372, 5356, 1, 0, 0, 0, 5372, 5357, 1, 0, 0, 0, 5372, 5358, 1, 0, 0, 0, 5373, 451, 1, 0, 0, 0, 5374, 5380, 3, 554, 277, 0, 5375, 5380, 3, 532, 266, 0, 5376, 5380, 3, 546, 273, 0, 5377, 5380, 3, 542, 271, 0, 5378, 5380, 3, 454, 227, 0, 5379, 5374, 1, 0, 0, 0, 5379, 5375, 1, 0, 0, 0, 5379, 5376, 1, 0, 0, 0, 5379, 5377, 1, 0, 0, 0, 5379, 5378, 1, 0, 0, 0, 5380, 453, 1, 0, 0, 0, 5381, 5382, 5, 271, 0, 0, 5382, 5384, 3, 826, 413, 0, 5383, 5385, 3, 456, 228, 0, 5384, 5383, 1, 0, 0, 0, 5384, 5385, 1, 0, 0, 0, 5385, 455, 1, 0, 0, 0, 5386, 5387, 5, 6, 0, 0, 5387, 5388, 3, 816, 408, 0, 5388, 457, 1, 0, 0, 0, 5389, 5390, 5, 252, 0, 0, 5390, 5391, 3, 826, 413, 0, 5391, 459, 1, 0, 0, 0, 5392, 5395, 5, 366, 0, 0, 5393, 5396, 3, 826, 413, 0, 5394, 5396, 5, 9, 0, 0, 5395, 5393, 1, 0, 0, 0, 5395, 5394, 1, 0, 0, 0, 5396, 461, 1, 0, 0, 0, 5397, 5399, 5, 146, 0, 0, 5398, 5400, 3, 464, 232, 0, 5399, 5398, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5402, 1, 0, 0, 0, 5401, 5403, 3, 468, 234, 0, 5402, 5401, 1, 0, 0, 0, 5402, 5403, 1, 0, 0, 0, 5403, 5443, 1, 0, 0, 0, 5404, 5405, 5, 340, 0, 0, 5405, 5407, 5, 356, 0, 0, 5406, 5408, 3, 468, 234, 0, 5407, 5406, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5443, 1, 0, 0, 0, 5409, 5410, 5, 322, 0, 0, 5410, 5443, 3, 826, 413, 0, 5411, 5413, 5, 308, 0, 0, 5412, 5414, 5, 322, 0, 0, 5413, 5412, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5443, 3, 826, 413, 0, 5416, 5417, 5, 290, 0, 0, 5417, 5418, 5, 356, 0, 0, 5418, 5443, 3, 816, 408, 0, 5419, 5420, 7, 68, 0, 0, 5420, 5421, 5, 291, 0, 0, 5421, 5443, 3, 816, 408, 0, 5422, 5424, 7, 69, 0, 0, 5423, 5425, 3, 464, 232, 0, 5424, 5423, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5431, 1, 0, 0, 0, 5426, 5428, 5, 33, 0, 0, 5427, 5429, 5, 269, 0, 0, 5428, 5427, 1, 0, 0, 0, 5428, 5429, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5432, 5, 153, 0, 0, 5431, 5426, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5443, 1, 0, 0, 0, 5433, 5435, 5, 319, 0, 0, 5434, 5436, 3, 464, 232, 0, 5435, 5434, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 5439, 5, 94, 0, 0, 5438, 5440, 5, 322, 0, 0, 5439, 5438, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5443, 3, 826, 413, 0, 5442, 5397, 1, 0, 0, 0, 5442, 5404, 1, 0, 0, 0, 5442, 5409, 1, 0, 0, 0, 5442, 5411, 1, 0, 0, 0, 5442, 5416, 1, 0, 0, 0, 5442, 5419, 1, 0, 0, 0, 5442, 5422, 1, 0, 0, 0, 5442, 5433, 1, 0, 0, 0, 5443, 463, 1, 0, 0, 0, 5444, 5445, 7, 70, 0, 0, 5445, 465, 1, 0, 0, 0, 5446, 5447, 5, 244, 0, 0, 5447, 5448, 5, 251, 0, 0, 5448, 5456, 3, 50, 25, 0, 5449, 5450, 5, 300, 0, 0, 5450, 5456, 7, 71, 0, 0, 5451, 5453, 5, 77, 0, 0, 5452, 5451, 1, 0, 0, 0, 5452, 5453, 1, 0, 0, 0, 5453, 5454, 1, 0, 0, 0, 5454, 5456, 5, 54, 0, 0, 5455, 5446, 1, 0, 0, 0, 5455, 5449, 1, 0, 0, 0, 5455, 5452, 1, 0, 0, 0, 5456, 467, 1, 0, 0, 0, 5457, 5464, 3, 466, 233, 0, 5458, 5460, 5, 6, 0, 0, 5459, 5458, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5463, 3, 466, 233, 0, 5462, 5459, 1, 0, 0, 0, 5463, 5466, 1, 0, 0, 0, 5464, 5462, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 469, 1, 0, 0, 0, 5466, 5464, 1, 0, 0, 0, 5467, 5470, 5, 46, 0, 0, 5468, 5469, 5, 82, 0, 0, 5469, 5471, 5, 311, 0, 0, 5470, 5468, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5473, 1, 0, 0, 0, 5472, 5474, 3, 116, 58, 0, 5473, 5472, 1, 0, 0, 0, 5473, 5474, 1, 0, 0, 0, 5474, 5490, 1, 0, 0, 0, 5475, 5476, 5, 376, 0, 0, 5476, 5478, 3, 780, 390, 0, 5477, 5479, 3, 140, 70, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5481, 1, 0, 0, 0, 5480, 5482, 3, 94, 47, 0, 5481, 5480, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5491, 1, 0, 0, 0, 5483, 5484, 5, 303, 0, 0, 5484, 5485, 5, 376, 0, 0, 5485, 5486, 3, 780, 390, 0, 5486, 5488, 3, 138, 69, 0, 5487, 5489, 3, 94, 47, 0, 5488, 5487, 1, 0, 0, 0, 5488, 5489, 1, 0, 0, 0, 5489, 5491, 1, 0, 0, 0, 5490, 5475, 1, 0, 0, 0, 5490, 5483, 1, 0, 0, 0, 5491, 5492, 1, 0, 0, 0, 5492, 5493, 5, 36, 0, 0, 5493, 5500, 3, 554, 277, 0, 5494, 5496, 5, 105, 0, 0, 5495, 5497, 7, 72, 0, 0, 5496, 5495, 1, 0, 0, 0, 5496, 5497, 1, 0, 0, 0, 5497, 5498, 1, 0, 0, 0, 5498, 5499, 5, 42, 0, 0, 5499, 5501, 5, 279, 0, 0, 5500, 5494, 1, 0, 0, 0, 5500, 5501, 1, 0, 0, 0, 5501, 471, 1, 0, 0, 0, 5502, 5503, 5, 253, 0, 0, 5503, 5504, 3, 816, 408, 0, 5504, 473, 1, 0, 0, 0, 5505, 5506, 5, 46, 0, 0, 5506, 5507, 5, 175, 0, 0, 5507, 5509, 3, 790, 395, 0, 5508, 5510, 5, 105, 0, 0, 5509, 5508, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, 5516, 1, 0, 0, 0, 5511, 5513, 3, 476, 238, 0, 5512, 5511, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5512, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 5517, 1, 0, 0, 0, 5516, 5512, 1, 0, 0, 0, 5516, 5517, 1, 0, 0, 0, 5517, 475, 1, 0, 0, 0, 5518, 5519, 5, 164, 0, 0, 5519, 5527, 5, 74, 0, 0, 5520, 5527, 5, 194, 0, 0, 5521, 5527, 5, 255, 0, 0, 5522, 5527, 5, 282, 0, 0, 5523, 5527, 5, 351, 0, 0, 5524, 5527, 5, 353, 0, 0, 5525, 5527, 3, 834, 417, 0, 5526, 5518, 1, 0, 0, 0, 5526, 5520, 1, 0, 0, 0, 5526, 5521, 1, 0, 0, 0, 5526, 5522, 1, 0, 0, 0, 5526, 5523, 1, 0, 0, 0, 5526, 5524, 1, 0, 0, 0, 5526, 5525, 1, 0, 0, 0, 5527, 5529, 1, 0, 0, 0, 5528, 5530, 5, 10, 0, 0, 5529, 5528, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 5534, 1, 0, 0, 0, 5531, 5535, 3, 820, 410, 0, 5532, 5535, 3, 54, 27, 0, 5533, 5535, 5, 53, 0, 0, 5534, 5531, 1, 0, 0, 0, 5534, 5532, 1, 0, 0, 0, 5534, 5533, 1, 0, 0, 0, 5535, 477, 1, 0, 0, 0, 5536, 5537, 5, 138, 0, 0, 5537, 5538, 5, 175, 0, 0, 5538, 5554, 3, 792, 396, 0, 5539, 5540, 5, 333, 0, 0, 5540, 5541, 5, 351, 0, 0, 5541, 5543, 3, 774, 387, 0, 5542, 5539, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5555, 1, 0, 0, 0, 5544, 5546, 5, 105, 0, 0, 5545, 5544, 1, 0, 0, 0, 5545, 5546, 1, 0, 0, 0, 5546, 5548, 1, 0, 0, 0, 5547, 5549, 3, 476, 238, 0, 5548, 5547, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 5548, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 5553, 1, 0, 0, 0, 5552, 5545, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 5555, 1, 0, 0, 0, 5554, 5542, 1, 0, 0, 0, 5554, 5552, 1, 0, 0, 0, 5555, 479, 1, 0, 0, 0, 5556, 5557, 5, 138, 0, 0, 5557, 5558, 5, 175, 0, 0, 5558, 5560, 3, 792, 396, 0, 5559, 5561, 3, 64, 32, 0, 5560, 5559, 1, 0, 0, 0, 5560, 5561, 1, 0, 0, 0, 5561, 481, 1, 0, 0, 0, 5562, 5563, 5, 138, 0, 0, 5563, 5564, 5, 108, 0, 0, 5564, 5565, 3, 310, 155, 0, 5565, 5566, 5, 305, 0, 0, 5566, 5567, 5, 375, 0, 0, 5567, 483, 1, 0, 0, 0, 5568, 5569, 5, 138, 0, 0, 5569, 5570, 5, 349, 0, 0, 5570, 5571, 7, 16, 0, 0, 5571, 5572, 3, 40, 20, 0, 5572, 485, 1, 0, 0, 0, 5573, 5574, 5, 46, 0, 0, 5574, 5575, 5, 189, 0, 0, 5575, 5577, 3, 310, 155, 0, 5576, 5578, 5, 36, 0, 0, 5577, 5576, 1, 0, 0, 0, 5577, 5578, 1, 0, 0, 0, 5578, 5579, 1, 0, 0, 0, 5579, 5583, 3, 648, 324, 0, 5580, 5582, 3, 128, 64, 0, 5581, 5580, 1, 0, 0, 0, 5582, 5585, 1, 0, 0, 0, 5583, 5581, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 487, 1, 0, 0, 0, 5585, 5583, 1, 0, 0, 0, 5586, 5587, 5, 138, 0, 0, 5587, 5588, 5, 189, 0, 0, 5588, 5611, 3, 310, 155, 0, 5589, 5612, 3, 86, 43, 0, 5590, 5591, 7, 15, 0, 0, 5591, 5592, 5, 77, 0, 0, 5592, 5612, 5, 78, 0, 0, 5593, 5596, 5, 133, 0, 0, 5594, 5595, 5, 45, 0, 0, 5595, 5597, 3, 826, 413, 0, 5596, 5594, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 1, 0, 0, 0, 5598, 5612, 3, 136, 68, 0, 5599, 5600, 5, 191, 0, 0, 5600, 5602, 5, 45, 0, 0, 5601, 5603, 3, 416, 208, 0, 5602, 5601, 1, 0, 0, 0, 5602, 5603, 1, 0, 0, 0, 5603, 5604, 1, 0, 0, 0, 5604, 5606, 3, 826, 413, 0, 5605, 5607, 3, 88, 44, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5612, 1, 0, 0, 0, 5608, 5609, 5, 372, 0, 0, 5609, 5610, 5, 45, 0, 0, 5610, 5612, 3, 826, 413, 0, 5611, 5589, 1, 0, 0, 0, 5611, 5590, 1, 0, 0, 0, 5611, 5593, 1, 0, 0, 0, 5611, 5599, 1, 0, 0, 0, 5611, 5608, 1, 0, 0, 0, 5612, 489, 1, 0, 0, 0, 5613, 5614, 5, 138, 0, 0, 5614, 5615, 5, 355, 0, 0, 5615, 5616, 5, 325, 0, 0, 5616, 5617, 5, 185, 0, 0, 5617, 5618, 3, 310, 155, 0, 5618, 5619, 3, 278, 139, 0, 5619, 491, 1, 0, 0, 0, 5620, 5621, 5, 138, 0, 0, 5621, 5622, 5, 355, 0, 0, 5622, 5623, 5, 325, 0, 0, 5623, 5624, 5, 163, 0, 0, 5624, 5625, 3, 310, 155, 0, 5625, 5626, 7, 73, 0, 0, 5626, 5627, 5, 257, 0, 0, 5627, 5628, 5, 62, 0, 0, 5628, 5629, 3, 788, 394, 0, 5629, 5630, 5, 105, 0, 0, 5630, 5631, 3, 308, 154, 0, 5631, 5662, 1, 0, 0, 0, 5632, 5633, 5, 138, 0, 0, 5633, 5634, 5, 355, 0, 0, 5634, 5635, 5, 325, 0, 0, 5635, 5636, 5, 163, 0, 0, 5636, 5637, 3, 310, 155, 0, 5637, 5638, 5, 138, 0, 0, 5638, 5641, 5, 257, 0, 0, 5639, 5640, 5, 62, 0, 0, 5640, 5642, 3, 788, 394, 0, 5641, 5639, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5643, 1, 0, 0, 0, 5643, 5644, 5, 311, 0, 0, 5644, 5645, 3, 310, 155, 0, 5645, 5646, 5, 105, 0, 0, 5646, 5647, 3, 310, 155, 0, 5647, 5662, 1, 0, 0, 0, 5648, 5649, 5, 138, 0, 0, 5649, 5650, 5, 355, 0, 0, 5650, 5651, 5, 325, 0, 0, 5651, 5652, 5, 163, 0, 0, 5652, 5653, 3, 310, 155, 0, 5653, 5654, 5, 191, 0, 0, 5654, 5656, 5, 257, 0, 0, 5655, 5657, 3, 416, 208, 0, 5656, 5655, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5659, 5, 62, 0, 0, 5659, 5660, 3, 788, 394, 0, 5660, 5662, 1, 0, 0, 0, 5661, 5620, 1, 0, 0, 0, 5661, 5632, 1, 0, 0, 0, 5661, 5648, 1, 0, 0, 0, 5662, 493, 1, 0, 0, 0, 5663, 5665, 5, 46, 0, 0, 5664, 5666, 5, 53, 0, 0, 5665, 5664, 1, 0, 0, 0, 5665, 5666, 1, 0, 0, 0, 5666, 5667, 1, 0, 0, 0, 5667, 5668, 5, 168, 0, 0, 5668, 5669, 3, 310, 155, 0, 5669, 5670, 5, 62, 0, 0, 5670, 5671, 3, 816, 408, 0, 5671, 5672, 5, 94, 0, 0, 5672, 5673, 3, 816, 408, 0, 5673, 5674, 5, 64, 0, 0, 5674, 5675, 3, 310, 155, 0, 5675, 495, 1, 0, 0, 0, 5676, 5678, 5, 158, 0, 0, 5677, 5679, 3, 508, 254, 0, 5678, 5677, 1, 0, 0, 0, 5678, 5679, 1, 0, 0, 0, 5679, 5684, 1, 0, 0, 0, 5680, 5682, 3, 778, 389, 0, 5681, 5683, 3, 164, 82, 0, 5682, 5681, 1, 0, 0, 0, 5682, 5683, 1, 0, 0, 0, 5683, 5685, 1, 0, 0, 0, 5684, 5680, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 5702, 1, 0, 0, 0, 5686, 5687, 5, 158, 0, 0, 5687, 5688, 5, 2, 0, 0, 5688, 5693, 3, 508, 254, 0, 5689, 5690, 5, 6, 0, 0, 5690, 5692, 3, 508, 254, 0, 5691, 5689, 1, 0, 0, 0, 5692, 5695, 1, 0, 0, 0, 5693, 5691, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5696, 1, 0, 0, 0, 5695, 5693, 1, 0, 0, 0, 5696, 5697, 5, 3, 0, 0, 5697, 5699, 3, 778, 389, 0, 5698, 5700, 3, 164, 82, 0, 5699, 5698, 1, 0, 0, 0, 5699, 5700, 1, 0, 0, 0, 5700, 5702, 1, 0, 0, 0, 5701, 5676, 1, 0, 0, 0, 5701, 5686, 1, 0, 0, 0, 5702, 497, 1, 0, 0, 0, 5703, 5719, 5, 370, 0, 0, 5704, 5706, 5, 113, 0, 0, 5705, 5704, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 5708, 1, 0, 0, 0, 5707, 5709, 5, 112, 0, 0, 5708, 5707, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 5711, 1, 0, 0, 0, 5710, 5712, 3, 508, 254, 0, 5711, 5710, 1, 0, 0, 0, 5711, 5712, 1, 0, 0, 0, 5712, 5714, 1, 0, 0, 0, 5713, 5715, 3, 502, 251, 0, 5714, 5713, 1, 0, 0, 0, 5714, 5715, 1, 0, 0, 0, 5715, 5720, 1, 0, 0, 0, 5716, 5718, 3, 518, 259, 0, 5717, 5716, 1, 0, 0, 0, 5717, 5718, 1, 0, 0, 0, 5718, 5720, 1, 0, 0, 0, 5719, 5705, 1, 0, 0, 0, 5719, 5717, 1, 0, 0, 0, 5720, 5722, 1, 0, 0, 0, 5721, 5723, 3, 512, 256, 0, 5722, 5721, 1, 0, 0, 0, 5722, 5723, 1, 0, 0, 0, 5723, 499, 1, 0, 0, 0, 5724, 5739, 3, 502, 251, 0, 5725, 5727, 3, 508, 254, 0, 5726, 5725, 1, 0, 0, 0, 5726, 5727, 1, 0, 0, 0, 5727, 5740, 1, 0, 0, 0, 5728, 5729, 5, 2, 0, 0, 5729, 5734, 3, 506, 253, 0, 5730, 5731, 5, 6, 0, 0, 5731, 5733, 3, 506, 253, 0, 5732, 5730, 1, 0, 0, 0, 5733, 5736, 1, 0, 0, 0, 5734, 5732, 1, 0, 0, 0, 5734, 5735, 1, 0, 0, 0, 5735, 5737, 1, 0, 0, 0, 5736, 5734, 1, 0, 0, 0, 5737, 5738, 5, 3, 0, 0, 5738, 5740, 1, 0, 0, 0, 5739, 5726, 1, 0, 0, 0, 5739, 5728, 1, 0, 0, 0, 5740, 5742, 1, 0, 0, 0, 5741, 5743, 3, 512, 256, 0, 5742, 5741, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 501, 1, 0, 0, 0, 5744, 5745, 7, 74, 0, 0, 5745, 503, 1, 0, 0, 0, 5746, 5749, 3, 830, 415, 0, 5747, 5749, 3, 502, 251, 0, 5748, 5746, 1, 0, 0, 0, 5748, 5747, 1, 0, 0, 0, 5749, 5752, 1, 0, 0, 0, 5750, 5753, 3, 54, 27, 0, 5751, 5753, 3, 196, 98, 0, 5752, 5750, 1, 0, 0, 0, 5752, 5751, 1, 0, 0, 0, 5752, 5753, 1, 0, 0, 0, 5753, 505, 1, 0, 0, 0, 5754, 5756, 7, 75, 0, 0, 5755, 5757, 7, 76, 0, 0, 5756, 5755, 1, 0, 0, 0, 5756, 5757, 1, 0, 0, 0, 5757, 5764, 1, 0, 0, 0, 5758, 5761, 5, 548, 0, 0, 5759, 5762, 3, 196, 98, 0, 5760, 5762, 3, 816, 408, 0, 5761, 5759, 1, 0, 0, 0, 5761, 5760, 1, 0, 0, 0, 5762, 5764, 1, 0, 0, 0, 5763, 5754, 1, 0, 0, 0, 5763, 5758, 1, 0, 0, 0, 5764, 507, 1, 0, 0, 0, 5765, 5767, 5, 128, 0, 0, 5766, 5768, 7, 76, 0, 0, 5767, 5766, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, 0, 5768, 509, 1, 0, 0, 0, 5769, 5771, 3, 778, 389, 0, 5770, 5772, 3, 138, 69, 0, 5771, 5770, 1, 0, 0, 0, 5771, 5772, 1, 0, 0, 0, 5772, 511, 1, 0, 0, 0, 5773, 5778, 3, 510, 255, 0, 5774, 5775, 5, 6, 0, 0, 5775, 5777, 3, 510, 255, 0, 5776, 5774, 1, 0, 0, 0, 5777, 5780, 1, 0, 0, 0, 5778, 5776, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 513, 1, 0, 0, 0, 5780, 5778, 1, 0, 0, 0, 5781, 5792, 5, 203, 0, 0, 5782, 5793, 3, 518, 259, 0, 5783, 5785, 5, 128, 0, 0, 5784, 5783, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 5793, 1, 0, 0, 0, 5786, 5788, 3, 502, 251, 0, 5787, 5789, 3, 508, 254, 0, 5788, 5787, 1, 0, 0, 0, 5788, 5789, 1, 0, 0, 0, 5789, 5791, 1, 0, 0, 0, 5790, 5786, 1, 0, 0, 0, 5790, 5791, 1, 0, 0, 0, 5791, 5793, 1, 0, 0, 0, 5792, 5782, 1, 0, 0, 0, 5792, 5784, 1, 0, 0, 0, 5792, 5790, 1, 0, 0, 0, 5793, 5794, 1, 0, 0, 0, 5794, 5795, 3, 516, 258, 0, 5795, 515, 1, 0, 0, 0, 5796, 5806, 3, 554, 277, 0, 5797, 5806, 3, 532, 266, 0, 5798, 5806, 3, 546, 273, 0, 5799, 5806, 3, 542, 271, 0, 5800, 5806, 3, 552, 276, 0, 5801, 5806, 3, 180, 90, 0, 5802, 5806, 3, 186, 93, 0, 5803, 5806, 3, 188, 94, 0, 5804, 5806, 3, 526, 263, 0, 5805, 5796, 1, 0, 0, 0, 5805, 5797, 1, 0, 0, 0, 5805, 5798, 1, 0, 0, 0, 5805, 5799, 1, 0, 0, 0, 5805, 5800, 1, 0, 0, 0, 5805, 5801, 1, 0, 0, 0, 5805, 5802, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5805, 5804, 1, 0, 0, 0, 5806, 517, 1, 0, 0, 0, 5807, 5808, 5, 2, 0, 0, 5808, 5813, 3, 504, 252, 0, 5809, 5810, 5, 6, 0, 0, 5810, 5812, 3, 504, 252, 0, 5811, 5809, 1, 0, 0, 0, 5812, 5815, 1, 0, 0, 0, 5813, 5811, 1, 0, 0, 0, 5813, 5814, 1, 0, 0, 0, 5814, 5816, 1, 0, 0, 0, 5815, 5813, 1, 0, 0, 0, 5816, 5817, 5, 3, 0, 0, 5817, 519, 1, 0, 0, 0, 5818, 5819, 5, 290, 0, 0, 5819, 5821, 3, 826, 413, 0, 5820, 5822, 3, 522, 261, 0, 5821, 5820, 1, 0, 0, 0, 5821, 5822, 1, 0, 0, 0, 5822, 5823, 1, 0, 0, 0, 5823, 5824, 5, 36, 0, 0, 5824, 5825, 3, 524, 262, 0, 5825, 521, 1, 0, 0, 0, 5826, 5827, 5, 2, 0, 0, 5827, 5832, 3, 648, 324, 0, 5828, 5829, 5, 6, 0, 0, 5829, 5831, 3, 648, 324, 0, 5830, 5828, 1, 0, 0, 0, 5831, 5834, 1, 0, 0, 0, 5832, 5830, 1, 0, 0, 0, 5832, 5833, 1, 0, 0, 0, 5833, 5835, 1, 0, 0, 0, 5834, 5832, 1, 0, 0, 0, 5835, 5836, 5, 3, 0, 0, 5836, 523, 1, 0, 0, 0, 5837, 5843, 3, 554, 277, 0, 5838, 5843, 3, 532, 266, 0, 5839, 5843, 3, 546, 273, 0, 5840, 5843, 3, 542, 271, 0, 5841, 5843, 3, 908, 454, 0, 5842, 5837, 1, 0, 0, 0, 5842, 5838, 1, 0, 0, 0, 5842, 5839, 1, 0, 0, 0, 5842, 5840, 1, 0, 0, 0, 5842, 5841, 1, 0, 0, 0, 5843, 525, 1, 0, 0, 0, 5844, 5845, 5, 202, 0, 0, 5845, 5847, 3, 826, 413, 0, 5846, 5848, 3, 528, 264, 0, 5847, 5846, 1, 0, 0, 0, 5847, 5848, 1, 0, 0, 0, 5848, 5868, 1, 0, 0, 0, 5849, 5851, 5, 46, 0, 0, 5850, 5852, 3, 116, 58, 0, 5851, 5850, 1, 0, 0, 0, 5851, 5852, 1, 0, 0, 0, 5852, 5853, 1, 0, 0, 0, 5853, 5855, 5, 92, 0, 0, 5854, 5856, 3, 288, 144, 0, 5855, 5854, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5857, 1, 0, 0, 0, 5857, 5858, 3, 182, 91, 0, 5858, 5859, 5, 36, 0, 0, 5859, 5860, 5, 202, 0, 0, 5860, 5862, 3, 826, 413, 0, 5861, 5863, 3, 528, 264, 0, 5862, 5861, 1, 0, 0, 0, 5862, 5863, 1, 0, 0, 0, 5863, 5865, 1, 0, 0, 0, 5864, 5866, 3, 184, 92, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5868, 1, 0, 0, 0, 5867, 5844, 1, 0, 0, 0, 5867, 5849, 1, 0, 0, 0, 5868, 527, 1, 0, 0, 0, 5869, 5870, 5, 2, 0, 0, 5870, 5871, 3, 728, 364, 0, 5871, 5872, 5, 3, 0, 0, 5872, 529, 1, 0, 0, 0, 5873, 5875, 5, 177, 0, 0, 5874, 5876, 5, 290, 0, 0, 5875, 5874, 1, 0, 0, 0, 5875, 5876, 1, 0, 0, 0, 5876, 5879, 1, 0, 0, 0, 5877, 5880, 3, 826, 413, 0, 5878, 5880, 5, 30, 0, 0, 5879, 5877, 1, 0, 0, 0, 5879, 5878, 1, 0, 0, 0, 5880, 531, 1, 0, 0, 0, 5881, 5883, 3, 566, 283, 0, 5882, 5881, 1, 0, 0, 0, 5882, 5883, 1, 0, 0, 0, 5883, 5884, 1, 0, 0, 0, 5884, 5885, 5, 241, 0, 0, 5885, 5886, 5, 71, 0, 0, 5886, 5889, 3, 778, 389, 0, 5887, 5888, 5, 36, 0, 0, 5888, 5890, 3, 826, 413, 0, 5889, 5887, 1, 0, 0, 0, 5889, 5890, 1, 0, 0, 0, 5890, 5891, 1, 0, 0, 0, 5891, 5913, 3, 534, 267, 0, 5892, 5893, 5, 80, 0, 0, 5893, 5901, 5, 464, 0, 0, 5894, 5896, 3, 354, 177, 0, 5895, 5897, 3, 634, 317, 0, 5896, 5895, 1, 0, 0, 0, 5896, 5897, 1, 0, 0, 0, 5897, 5902, 1, 0, 0, 0, 5898, 5899, 5, 80, 0, 0, 5899, 5900, 5, 45, 0, 0, 5900, 5902, 3, 826, 413, 0, 5901, 5894, 1, 0, 0, 0, 5901, 5898, 1, 0, 0, 0, 5901, 5902, 1, 0, 0, 0, 5902, 5903, 1, 0, 0, 0, 5903, 5911, 5, 57, 0, 0, 5904, 5905, 5, 369, 0, 0, 5905, 5906, 5, 333, 0, 0, 5906, 5908, 3, 548, 274, 0, 5907, 5909, 3, 634, 317, 0, 5908, 5907, 1, 0, 0, 0, 5908, 5909, 1, 0, 0, 0, 5909, 5912, 1, 0, 0, 0, 5910, 5912, 5, 270, 0, 0, 5911, 5904, 1, 0, 0, 0, 5911, 5910, 1, 0, 0, 0, 5912, 5914, 1, 0, 0, 0, 5913, 5892, 1, 0, 0, 0, 5913, 5914, 1, 0, 0, 0, 5914, 5916, 1, 0, 0, 0, 5915, 5917, 3, 540, 270, 0, 5916, 5915, 1, 0, 0, 0, 5916, 5917, 1, 0, 0, 0, 5917, 533, 1, 0, 0, 0, 5918, 5919, 5, 2, 0, 0, 5919, 5920, 3, 536, 268, 0, 5920, 5921, 5, 3, 0, 0, 5921, 5923, 1, 0, 0, 0, 5922, 5918, 1, 0, 0, 0, 5922, 5923, 1, 0, 0, 0, 5923, 5927, 1, 0, 0, 0, 5924, 5925, 5, 463, 0, 0, 5925, 5926, 7, 77, 0, 0, 5926, 5928, 5, 450, 0, 0, 5927, 5924, 1, 0, 0, 0, 5927, 5928, 1, 0, 0, 0, 5928, 5931, 1, 0, 0, 0, 5929, 5932, 3, 918, 459, 0, 5930, 5932, 3, 554, 277, 0, 5931, 5929, 1, 0, 0, 0, 5931, 5930, 1, 0, 0, 0, 5932, 535, 1, 0, 0, 0, 5933, 5938, 3, 538, 269, 0, 5934, 5935, 5, 6, 0, 0, 5935, 5937, 3, 538, 269, 0, 5936, 5934, 1, 0, 0, 0, 5937, 5940, 1, 0, 0, 0, 5938, 5936, 1, 0, 0, 0, 5938, 5939, 1, 0, 0, 0, 5939, 537, 1, 0, 0, 0, 5940, 5938, 1, 0, 0, 0, 5941, 5942, 3, 806, 403, 0, 5942, 5943, 3, 756, 378, 0, 5943, 539, 1, 0, 0, 0, 5944, 5945, 5, 87, 0, 0, 5945, 5946, 3, 758, 379, 0, 5946, 541, 1, 0, 0, 0, 5947, 5949, 3, 566, 283, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5950, 1, 0, 0, 0, 5950, 5951, 5, 182, 0, 0, 5951, 5952, 5, 64, 0, 0, 5952, 5955, 3, 626, 313, 0, 5953, 5954, 5, 100, 0, 0, 5954, 5956, 3, 606, 303, 0, 5955, 5953, 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 5958, 1, 0, 0, 0, 5957, 5959, 3, 636, 318, 0, 5958, 5957, 1, 0, 0, 0, 5958, 5959, 1, 0, 0, 0, 5959, 5961, 1, 0, 0, 0, 5960, 5962, 3, 540, 270, 0, 5961, 5960, 1, 0, 0, 0, 5961, 5962, 1, 0, 0, 0, 5962, 543, 1, 0, 0, 0, 5963, 5965, 5, 256, 0, 0, 5964, 5966, 5, 92, 0, 0, 5965, 5964, 1, 0, 0, 0, 5965, 5966, 1, 0, 0, 0, 5966, 5967, 1, 0, 0, 0, 5967, 5982, 3, 624, 312, 0, 5968, 5979, 5, 68, 0, 0, 5969, 5970, 7, 78, 0, 0, 5970, 5980, 7, 79, 0, 0, 5971, 5976, 5, 334, 0, 0, 5972, 5973, 5, 369, 0, 0, 5973, 5977, 5, 201, 0, 0, 5974, 5975, 5, 414, 0, 0, 5975, 5977, 5, 201, 0, 0, 5976, 5972, 1, 0, 0, 0, 5976, 5974, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, 5977, 5980, 1, 0, 0, 0, 5978, 5980, 5, 201, 0, 0, 5979, 5969, 1, 0, 0, 0, 5979, 5971, 1, 0, 0, 0, 5979, 5978, 1, 0, 0, 0, 5980, 5981, 1, 0, 0, 0, 5981, 5983, 5, 263, 0, 0, 5982, 5968, 1, 0, 0, 0, 5982, 5983, 1, 0, 0, 0, 5983, 5985, 1, 0, 0, 0, 5984, 5986, 5, 272, 0, 0, 5985, 5984, 1, 0, 0, 0, 5985, 5986, 1, 0, 0, 0, 5986, 545, 1, 0, 0, 0, 5987, 5989, 3, 566, 283, 0, 5988, 5987, 1, 0, 0, 0, 5988, 5989, 1, 0, 0, 0, 5989, 5990, 1, 0, 0, 0, 5990, 5991, 5, 369, 0, 0, 5991, 5992, 3, 626, 313, 0, 5992, 5993, 5, 333, 0, 0, 5993, 5995, 3, 548, 274, 0, 5994, 5996, 3, 604, 302, 0, 5995, 5994, 1, 0, 0, 0, 5995, 5996, 1, 0, 0, 0, 5996, 5998, 1, 0, 0, 0, 5997, 5999, 3, 636, 318, 0, 5998, 5997, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 6001, 1, 0, 0, 0, 6000, 6002, 3, 540, 270, 0, 6001, 6000, 1, 0, 0, 0, 6001, 6002, 1, 0, 0, 0, 6002, 547, 1, 0, 0, 0, 6003, 6008, 3, 550, 275, 0, 6004, 6005, 5, 6, 0, 0, 6005, 6007, 3, 550, 275, 0, 6006, 6004, 1, 0, 0, 0, 6007, 6010, 1, 0, 0, 0, 6008, 6006, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 549, 1, 0, 0, 0, 6010, 6008, 1, 0, 0, 0, 6011, 6012, 3, 538, 269, 0, 6012, 6013, 5, 10, 0, 0, 6013, 6014, 3, 670, 335, 0, 6014, 6030, 1, 0, 0, 0, 6015, 6016, 5, 2, 0, 0, 6016, 6017, 3, 536, 268, 0, 6017, 6018, 5, 3, 0, 0, 6018, 6027, 5, 10, 0, 0, 6019, 6021, 5, 414, 0, 0, 6020, 6019, 1, 0, 0, 0, 6020, 6021, 1, 0, 0, 0, 6021, 6022, 1, 0, 0, 0, 6022, 6028, 3, 670, 335, 0, 6023, 6024, 5, 2, 0, 0, 6024, 6025, 3, 560, 280, 0, 6025, 6026, 5, 3, 0, 0, 6026, 6028, 1, 0, 0, 0, 6027, 6020, 1, 0, 0, 0, 6027, 6023, 1, 0, 0, 0, 6028, 6030, 1, 0, 0, 0, 6029, 6011, 1, 0, 0, 0, 6029, 6015, 1, 0, 0, 0, 6030, 551, 1, 0, 0, 0, 6031, 6032, 5, 178, 0, 0, 6032, 6041, 3, 826, 413, 0, 6033, 6035, 5, 269, 0, 0, 6034, 6033, 1, 0, 0, 0, 6034, 6035, 1, 0, 0, 0, 6035, 6036, 1, 0, 0, 0, 6036, 6040, 5, 324, 0, 0, 6037, 6040, 5, 107, 0, 0, 6038, 6040, 5, 240, 0, 0, 6039, 6034, 1, 0, 0, 0, 6039, 6037, 1, 0, 0, 0, 6039, 6038, 1, 0, 0, 0, 6040, 6043, 1, 0, 0, 0, 6041, 6039, 1, 0, 0, 0, 6041, 6042, 1, 0, 0, 0, 6042, 6044, 1, 0, 0, 0, 6043, 6041, 1, 0, 0, 0, 6044, 6047, 5, 172, 0, 0, 6045, 6046, 7, 27, 0, 0, 6046, 6048, 5, 217, 0, 0, 6047, 6045, 1, 0, 0, 0, 6047, 6048, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6050, 5, 62, 0, 0, 6050, 6051, 3, 554, 277, 0, 6051, 553, 1, 0, 0, 0, 6052, 6055, 3, 558, 279, 0, 6053, 6055, 3, 556, 278, 0, 6054, 6052, 1, 0, 0, 0, 6054, 6053, 1, 0, 0, 0, 6055, 555, 1, 0, 0, 0, 6056, 6059, 5, 2, 0, 0, 6057, 6060, 3, 558, 279, 0, 6058, 6060, 3, 556, 278, 0, 6059, 6057, 1, 0, 0, 0, 6059, 6058, 1, 0, 0, 0, 6060, 6061, 1, 0, 0, 0, 6061, 6062, 5, 3, 0, 0, 6062, 557, 1, 0, 0, 0, 6063, 6065, 3, 566, 283, 0, 6064, 6063, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, 0, 6065, 6066, 1, 0, 0, 0, 6066, 6068, 3, 560, 280, 0, 6067, 6069, 3, 580, 290, 0, 6068, 6067, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6078, 1, 0, 0, 0, 6070, 6072, 3, 600, 300, 0, 6071, 6073, 3, 584, 292, 0, 6072, 6071, 1, 0, 0, 0, 6072, 6073, 1, 0, 0, 0, 6073, 6079, 1, 0, 0, 0, 6074, 6076, 3, 584, 292, 0, 6075, 6077, 3, 600, 300, 0, 6076, 6075, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 6079, 1, 0, 0, 0, 6078, 6070, 1, 0, 0, 0, 6078, 6074, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 559, 1, 0, 0, 0, 6080, 6083, 3, 562, 281, 0, 6081, 6083, 3, 556, 278, 0, 6082, 6080, 1, 0, 0, 0, 6082, 6081, 1, 0, 0, 0, 6083, 561, 1, 0, 0, 0, 6084, 6094, 5, 88, 0, 0, 6085, 6087, 5, 30, 0, 0, 6086, 6085, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6089, 1, 0, 0, 0, 6088, 6090, 3, 574, 287, 0, 6089, 6088, 1, 0, 0, 0, 6089, 6090, 1, 0, 0, 0, 6090, 6095, 1, 0, 0, 0, 6091, 6093, 3, 578, 289, 0, 6092, 6091, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6095, 1, 0, 0, 0, 6094, 6086, 1, 0, 0, 0, 6094, 6092, 1, 0, 0, 0, 6095, 6096, 1, 0, 0, 0, 6096, 6107, 3, 938, 469, 0, 6097, 6107, 3, 602, 301, 0, 6098, 6099, 5, 92, 0, 0, 6099, 6107, 3, 620, 310, 0, 6100, 6101, 3, 556, 278, 0, 6101, 6104, 3, 564, 282, 0, 6102, 6105, 3, 562, 281, 0, 6103, 6105, 3, 556, 278, 0, 6104, 6102, 1, 0, 0, 0, 6104, 6103, 1, 0, 0, 0, 6105, 6107, 1, 0, 0, 0, 6106, 6084, 1, 0, 0, 0, 6106, 6097, 1, 0, 0, 0, 6106, 6098, 1, 0, 0, 0, 6106, 6100, 1, 0, 0, 0, 6107, 6115, 1, 0, 0, 0, 6108, 6111, 3, 564, 282, 0, 6109, 6112, 3, 562, 281, 0, 6110, 6112, 3, 556, 278, 0, 6111, 6109, 1, 0, 0, 0, 6111, 6110, 1, 0, 0, 0, 6112, 6114, 1, 0, 0, 0, 6113, 6108, 1, 0, 0, 0, 6114, 6117, 1, 0, 0, 0, 6115, 6113, 1, 0, 0, 0, 6115, 6116, 1, 0, 0, 0, 6116, 563, 1, 0, 0, 0, 6117, 6115, 1, 0, 0, 0, 6118, 6120, 7, 80, 0, 0, 6119, 6121, 7, 81, 0, 0, 6120, 6119, 1, 0, 0, 0, 6120, 6121, 1, 0, 0, 0, 6121, 565, 1, 0, 0, 0, 6122, 6124, 5, 105, 0, 0, 6123, 6125, 5, 303, 0, 0, 6124, 6123, 1, 0, 0, 0, 6124, 6125, 1, 0, 0, 0, 6125, 6126, 1, 0, 0, 0, 6126, 6131, 3, 568, 284, 0, 6127, 6128, 5, 6, 0, 0, 6128, 6130, 3, 568, 284, 0, 6129, 6127, 1, 0, 0, 0, 6130, 6133, 1, 0, 0, 0, 6131, 6129, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 567, 1, 0, 0, 0, 6133, 6131, 1, 0, 0, 0, 6134, 6136, 3, 826, 413, 0, 6135, 6137, 3, 138, 69, 0, 6136, 6135, 1, 0, 0, 0, 6136, 6137, 1, 0, 0, 0, 6137, 6138, 1, 0, 0, 0, 6138, 6143, 5, 36, 0, 0, 6139, 6141, 5, 77, 0, 0, 6140, 6139, 1, 0, 0, 0, 6140, 6141, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 6144, 5, 259, 0, 0, 6143, 6140, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6145, 1, 0, 0, 0, 6145, 6146, 5, 2, 0, 0, 6146, 6147, 3, 524, 262, 0, 6147, 6149, 5, 3, 0, 0, 6148, 6150, 3, 570, 285, 0, 6149, 6148, 1, 0, 0, 0, 6149, 6150, 1, 0, 0, 0, 6150, 6152, 1, 0, 0, 0, 6151, 6153, 3, 572, 286, 0, 6152, 6151, 1, 0, 0, 0, 6152, 6153, 1, 0, 0, 0, 6153, 569, 1, 0, 0, 0, 6154, 6155, 5, 325, 0, 0, 6155, 6156, 7, 82, 0, 0, 6156, 6157, 5, 207, 0, 0, 6157, 6158, 5, 147, 0, 0, 6158, 6159, 3, 142, 71, 0, 6159, 6160, 5, 333, 0, 0, 6160, 6161, 3, 806, 403, 0, 6161, 571, 1, 0, 0, 0, 6162, 6163, 5, 173, 0, 0, 6163, 6164, 3, 142, 71, 0, 6164, 6165, 5, 333, 0, 0, 6165, 6171, 3, 806, 403, 0, 6166, 6167, 5, 94, 0, 0, 6167, 6168, 3, 826, 413, 0, 6168, 6169, 5, 53, 0, 0, 6169, 6170, 3, 826, 413, 0, 6170, 6172, 1, 0, 0, 0, 6171, 6166, 1, 0, 0, 0, 6171, 6172, 1, 0, 0, 0, 6172, 6173, 1, 0, 0, 0, 6173, 6174, 5, 100, 0, 0, 6174, 6175, 3, 806, 403, 0, 6175, 573, 1, 0, 0, 0, 6176, 6182, 5, 71, 0, 0, 6177, 6179, 5, 346, 0, 0, 6178, 6177, 1, 0, 0, 0, 6178, 6179, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6183, 3, 576, 288, 0, 6181, 6183, 3, 728, 364, 0, 6182, 6178, 1, 0, 0, 0, 6182, 6181, 1, 0, 0, 0, 6183, 575, 1, 0, 0, 0, 6184, 6186, 7, 21, 0, 0, 6185, 6184, 1, 0, 0, 0, 6185, 6186, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6189, 7, 22, 0, 0, 6188, 6190, 5, 92, 0, 0, 6189, 6188, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 6191, 1, 0, 0, 0, 6191, 6200, 3, 776, 388, 0, 6192, 6194, 5, 367, 0, 0, 6193, 6192, 1, 0, 0, 0, 6193, 6194, 1, 0, 0, 0, 6194, 6196, 1, 0, 0, 0, 6195, 6197, 5, 92, 0, 0, 6196, 6195, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6198, 1, 0, 0, 0, 6198, 6200, 3, 776, 388, 0, 6199, 6185, 1, 0, 0, 0, 6199, 6193, 1, 0, 0, 0, 6200, 577, 1, 0, 0, 0, 6201, 6204, 5, 56, 0, 0, 6202, 6203, 5, 80, 0, 0, 6203, 6205, 3, 528, 264, 0, 6204, 6202, 1, 0, 0, 0, 6204, 6205, 1, 0, 0, 0, 6205, 579, 1, 0, 0, 0, 6206, 6207, 5, 83, 0, 0, 6207, 6208, 5, 147, 0, 0, 6208, 6213, 3, 582, 291, 0, 6209, 6210, 5, 6, 0, 0, 6210, 6212, 3, 582, 291, 0, 6211, 6209, 1, 0, 0, 0, 6212, 6215, 1, 0, 0, 0, 6213, 6211, 1, 0, 0, 0, 6213, 6214, 1, 0, 0, 0, 6214, 581, 1, 0, 0, 0, 6215, 6213, 1, 0, 0, 0, 6216, 6220, 3, 736, 368, 0, 6217, 6218, 5, 100, 0, 0, 6218, 6221, 3, 724, 362, 0, 6219, 6221, 7, 56, 0, 0, 6220, 6217, 1, 0, 0, 0, 6220, 6219, 1, 0, 0, 0, 6220, 6221, 1, 0, 0, 0, 6221, 6224, 1, 0, 0, 0, 6222, 6223, 5, 273, 0, 0, 6223, 6225, 7, 57, 0, 0, 6224, 6222, 1, 0, 0, 0, 6224, 6225, 1, 0, 0, 0, 6225, 583, 1, 0, 0, 0, 6226, 6228, 3, 590, 295, 0, 6227, 6229, 3, 588, 294, 0, 6228, 6227, 1, 0, 0, 0, 6228, 6229, 1, 0, 0, 0, 6229, 6238, 1, 0, 0, 0, 6230, 6233, 3, 586, 293, 0, 6231, 6233, 3, 588, 294, 0, 6232, 6230, 1, 0, 0, 0, 6232, 6231, 1, 0, 0, 0, 6233, 6235, 1, 0, 0, 0, 6234, 6236, 3, 590, 295, 0, 6235, 6234, 1, 0, 0, 0, 6235, 6236, 1, 0, 0, 0, 6236, 6238, 1, 0, 0, 0, 6237, 6226, 1, 0, 0, 0, 6237, 6232, 1, 0, 0, 0, 6238, 585, 1, 0, 0, 0, 6239, 6242, 5, 74, 0, 0, 6240, 6243, 3, 670, 335, 0, 6241, 6243, 5, 30, 0, 0, 6242, 6240, 1, 0, 0, 0, 6242, 6241, 1, 0, 0, 0, 6243, 6246, 1, 0, 0, 0, 6244, 6245, 5, 6, 0, 0, 6245, 6247, 3, 670, 335, 0, 6246, 6244, 1, 0, 0, 0, 6246, 6247, 1, 0, 0, 0, 6247, 587, 1, 0, 0, 0, 6248, 6249, 5, 61, 0, 0, 6249, 6251, 7, 83, 0, 0, 6250, 6252, 3, 592, 296, 0, 6251, 6250, 1, 0, 0, 0, 6251, 6252, 1, 0, 0, 0, 6252, 6253, 1, 0, 0, 0, 6253, 6257, 7, 84, 0, 0, 6254, 6258, 5, 81, 0, 0, 6255, 6256, 5, 105, 0, 0, 6256, 6258, 5, 467, 0, 0, 6257, 6254, 1, 0, 0, 0, 6257, 6255, 1, 0, 0, 0, 6258, 589, 1, 0, 0, 0, 6259, 6264, 5, 79, 0, 0, 6260, 6261, 3, 592, 296, 0, 6261, 6262, 7, 84, 0, 0, 6262, 6265, 1, 0, 0, 0, 6263, 6265, 3, 670, 335, 0, 6264, 6260, 1, 0, 0, 0, 6264, 6263, 1, 0, 0, 0, 6265, 591, 1, 0, 0, 0, 6266, 6267, 7, 30, 0, 0, 6267, 6270, 7, 85, 0, 0, 6268, 6270, 3, 678, 339, 0, 6269, 6266, 1, 0, 0, 0, 6269, 6268, 1, 0, 0, 0, 6270, 593, 1, 0, 0, 0, 6271, 6272, 5, 66, 0, 0, 6272, 6274, 5, 147, 0, 0, 6273, 6275, 7, 81, 0, 0, 6274, 6273, 1, 0, 0, 0, 6274, 6275, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6277, 3, 596, 298, 0, 6277, 595, 1, 0, 0, 0, 6278, 6283, 3, 598, 299, 0, 6279, 6280, 5, 6, 0, 0, 6280, 6282, 3, 598, 299, 0, 6281, 6279, 1, 0, 0, 0, 6282, 6285, 1, 0, 0, 0, 6283, 6281, 1, 0, 0, 0, 6283, 6284, 1, 0, 0, 0, 6284, 597, 1, 0, 0, 0, 6285, 6283, 1, 0, 0, 0, 6286, 6310, 3, 736, 368, 0, 6287, 6288, 5, 2, 0, 0, 6288, 6310, 5, 3, 0, 0, 6289, 6291, 7, 86, 0, 0, 6290, 6289, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6292, 1, 0, 0, 0, 6292, 6293, 5, 2, 0, 0, 6293, 6298, 3, 736, 368, 0, 6294, 6295, 5, 6, 0, 0, 6295, 6297, 3, 736, 368, 0, 6296, 6294, 1, 0, 0, 0, 6297, 6300, 1, 0, 0, 0, 6298, 6296, 1, 0, 0, 0, 6298, 6299, 1, 0, 0, 0, 6299, 6301, 1, 0, 0, 0, 6300, 6298, 1, 0, 0, 0, 6301, 6302, 5, 3, 0, 0, 6302, 6310, 1, 0, 0, 0, 6303, 6304, 5, 470, 0, 0, 6304, 6305, 5, 471, 0, 0, 6305, 6306, 5, 2, 0, 0, 6306, 6307, 3, 596, 298, 0, 6307, 6308, 5, 3, 0, 0, 6308, 6310, 1, 0, 0, 0, 6309, 6286, 1, 0, 0, 0, 6309, 6287, 1, 0, 0, 0, 6309, 6290, 1, 0, 0, 0, 6309, 6303, 1, 0, 0, 0, 6310, 599, 1, 0, 0, 0, 6311, 6321, 5, 62, 0, 0, 6312, 6313, 5, 269, 0, 0, 6313, 6315, 5, 245, 0, 0, 6314, 6312, 1, 0, 0, 0, 6314, 6315, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6322, 5, 369, 0, 0, 6317, 6319, 5, 245, 0, 0, 6318, 6317, 1, 0, 0, 0, 6318, 6319, 1, 0, 0, 0, 6319, 6320, 1, 0, 0, 0, 6320, 6322, 5, 334, 0, 0, 6321, 6314, 1, 0, 0, 0, 6321, 6318, 1, 0, 0, 0, 6322, 6325, 1, 0, 0, 0, 6323, 6324, 5, 275, 0, 0, 6324, 6326, 3, 764, 382, 0, 6325, 6323, 1, 0, 0, 0, 6325, 6326, 1, 0, 0, 0, 6326, 6330, 1, 0, 0, 0, 6327, 6331, 5, 272, 0, 0, 6328, 6329, 5, 465, 0, 0, 6329, 6331, 5, 466, 0, 0, 6330, 6327, 1, 0, 0, 0, 6330, 6328, 1, 0, 0, 0, 6330, 6331, 1, 0, 0, 0, 6331, 6333, 1, 0, 0, 0, 6332, 6311, 1, 0, 0, 0, 6333, 6334, 1, 0, 0, 0, 6334, 6332, 1, 0, 0, 0, 6334, 6335, 1, 0, 0, 0, 6335, 6340, 1, 0, 0, 0, 6336, 6337, 5, 62, 0, 0, 6337, 6338, 5, 300, 0, 0, 6338, 6340, 5, 81, 0, 0, 6339, 6332, 1, 0, 0, 0, 6339, 6336, 1, 0, 0, 0, 6340, 601, 1, 0, 0, 0, 6341, 6342, 5, 422, 0, 0, 6342, 6347, 3, 528, 264, 0, 6343, 6344, 5, 6, 0, 0, 6344, 6346, 3, 528, 264, 0, 6345, 6343, 1, 0, 0, 0, 6346, 6349, 1, 0, 0, 0, 6347, 6345, 1, 0, 0, 0, 6347, 6348, 1, 0, 0, 0, 6348, 603, 1, 0, 0, 0, 6349, 6347, 1, 0, 0, 0, 6350, 6351, 5, 64, 0, 0, 6351, 6352, 3, 606, 303, 0, 6352, 605, 1, 0, 0, 0, 6353, 6358, 3, 608, 304, 0, 6354, 6355, 5, 6, 0, 0, 6355, 6357, 3, 608, 304, 0, 6356, 6354, 1, 0, 0, 0, 6357, 6360, 1, 0, 0, 0, 6358, 6356, 1, 0, 0, 0, 6358, 6359, 1, 0, 0, 0, 6359, 607, 1, 0, 0, 0, 6360, 6358, 1, 0, 0, 0, 6361, 6376, 3, 620, 310, 0, 6362, 6364, 5, 81, 0, 0, 6363, 6362, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6365, 1, 0, 0, 0, 6365, 6367, 3, 782, 391, 0, 6366, 6368, 5, 9, 0, 0, 6367, 6366, 1, 0, 0, 0, 6367, 6368, 1, 0, 0, 0, 6368, 6370, 1, 0, 0, 0, 6369, 6371, 3, 142, 71, 0, 6370, 6369, 1, 0, 0, 0, 6370, 6371, 1, 0, 0, 0, 6371, 6373, 1, 0, 0, 0, 6372, 6374, 3, 634, 317, 0, 6373, 6372, 1, 0, 0, 0, 6373, 6374, 1, 0, 0, 0, 6374, 6376, 1, 0, 0, 0, 6375, 6361, 1, 0, 0, 0, 6375, 6363, 1, 0, 0, 0, 6376, 6378, 1, 0, 0, 0, 6377, 6379, 3, 612, 306, 0, 6378, 6377, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6381, 1, 0, 0, 0, 6380, 6382, 3, 628, 314, 0, 6381, 6380, 1, 0, 0, 0, 6381, 6382, 1, 0, 0, 0, 6382, 6412, 1, 0, 0, 0, 6383, 6385, 5, 72, 0, 0, 6384, 6383, 1, 0, 0, 0, 6384, 6385, 1, 0, 0, 0, 6385, 6386, 1, 0, 0, 0, 6386, 6412, 3, 610, 305, 0, 6387, 6388, 5, 2, 0, 0, 6388, 6405, 3, 608, 304, 0, 6389, 6390, 5, 110, 0, 0, 6390, 6391, 5, 118, 0, 0, 6391, 6406, 3, 608, 304, 0, 6392, 6394, 5, 121, 0, 0, 6393, 6395, 3, 616, 308, 0, 6394, 6393, 1, 0, 0, 0, 6394, 6395, 1, 0, 0, 0, 6395, 6396, 1, 0, 0, 0, 6396, 6397, 5, 118, 0, 0, 6397, 6406, 3, 608, 304, 0, 6398, 6400, 3, 616, 308, 0, 6399, 6398, 1, 0, 0, 0, 6399, 6400, 1, 0, 0, 0, 6400, 6401, 1, 0, 0, 0, 6401, 6402, 5, 118, 0, 0, 6402, 6403, 3, 608, 304, 0, 6403, 6404, 3, 618, 309, 0, 6404, 6406, 1, 0, 0, 0, 6405, 6389, 1, 0, 0, 0, 6405, 6392, 1, 0, 0, 0, 6405, 6399, 1, 0, 0, 0, 6405, 6406, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6409, 5, 3, 0, 0, 6408, 6410, 3, 612, 306, 0, 6409, 6408, 1, 0, 0, 0, 6409, 6410, 1, 0, 0, 0, 6410, 6412, 1, 0, 0, 0, 6411, 6375, 1, 0, 0, 0, 6411, 6384, 1, 0, 0, 0, 6411, 6387, 1, 0, 0, 0, 6412, 6431, 1, 0, 0, 0, 6413, 6414, 5, 110, 0, 0, 6414, 6415, 5, 118, 0, 0, 6415, 6430, 3, 608, 304, 0, 6416, 6418, 5, 121, 0, 0, 6417, 6419, 3, 616, 308, 0, 6418, 6417, 1, 0, 0, 0, 6418, 6419, 1, 0, 0, 0, 6419, 6420, 1, 0, 0, 0, 6420, 6421, 5, 118, 0, 0, 6421, 6430, 3, 608, 304, 0, 6422, 6424, 3, 616, 308, 0, 6423, 6422, 1, 0, 0, 0, 6423, 6424, 1, 0, 0, 0, 6424, 6425, 1, 0, 0, 0, 6425, 6426, 5, 118, 0, 0, 6426, 6427, 3, 608, 304, 0, 6427, 6428, 3, 618, 309, 0, 6428, 6430, 1, 0, 0, 0, 6429, 6413, 1, 0, 0, 0, 6429, 6416, 1, 0, 0, 0, 6429, 6423, 1, 0, 0, 0, 6430, 6433, 1, 0, 0, 0, 6431, 6429, 1, 0, 0, 0, 6431, 6432, 1, 0, 0, 0, 6432, 609, 1, 0, 0, 0, 6433, 6431, 1, 0, 0, 0, 6434, 6436, 3, 642, 321, 0, 6435, 6437, 3, 612, 306, 0, 6436, 6435, 1, 0, 0, 0, 6436, 6437, 1, 0, 0, 0, 6437, 6447, 1, 0, 0, 0, 6438, 6440, 3, 630, 315, 0, 6439, 6441, 3, 614, 307, 0, 6440, 6439, 1, 0, 0, 0, 6440, 6441, 1, 0, 0, 0, 6441, 6447, 1, 0, 0, 0, 6442, 6444, 3, 556, 278, 0, 6443, 6445, 3, 612, 306, 0, 6444, 6443, 1, 0, 0, 0, 6444, 6445, 1, 0, 0, 0, 6445, 6447, 1, 0, 0, 0, 6446, 6434, 1, 0, 0, 0, 6446, 6438, 1, 0, 0, 0, 6446, 6442, 1, 0, 0, 0, 6447, 611, 1, 0, 0, 0, 6448, 6450, 5, 36, 0, 0, 6449, 6448, 1, 0, 0, 0, 6449, 6450, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6456, 3, 826, 413, 0, 6452, 6453, 5, 2, 0, 0, 6453, 6454, 3, 788, 394, 0, 6454, 6455, 5, 3, 0, 0, 6455, 6457, 1, 0, 0, 0, 6456, 6452, 1, 0, 0, 0, 6456, 6457, 1, 0, 0, 0, 6457, 613, 1, 0, 0, 0, 6458, 6471, 3, 612, 306, 0, 6459, 6461, 5, 36, 0, 0, 6460, 6462, 3, 826, 413, 0, 6461, 6460, 1, 0, 0, 0, 6461, 6462, 1, 0, 0, 0, 6462, 6465, 1, 0, 0, 0, 6463, 6465, 3, 826, 413, 0, 6464, 6459, 1, 0, 0, 0, 6464, 6463, 1, 0, 0, 0, 6465, 6466, 1, 0, 0, 0, 6466, 6467, 5, 2, 0, 0, 6467, 6468, 3, 638, 319, 0, 6468, 6469, 5, 3, 0, 0, 6469, 6471, 1, 0, 0, 0, 6470, 6458, 1, 0, 0, 0, 6470, 6464, 1, 0, 0, 0, 6471, 615, 1, 0, 0, 0, 6472, 6474, 7, 87, 0, 0, 6473, 6475, 5, 123, 0, 0, 6474, 6473, 1, 0, 0, 0, 6474, 6475, 1, 0, 0, 0, 6475, 617, 1, 0, 0, 0, 6476, 6477, 5, 100, 0, 0, 6477, 6481, 3, 138, 69, 0, 6478, 6479, 5, 80, 0, 0, 6479, 6481, 3, 670, 335, 0, 6480, 6476, 1, 0, 0, 0, 6480, 6478, 1, 0, 0, 0, 6481, 619, 1, 0, 0, 0, 6482, 6498, 3, 316, 158, 0, 6483, 6489, 5, 81, 0, 0, 6484, 6490, 3, 778, 389, 0, 6485, 6486, 5, 2, 0, 0, 6486, 6487, 3, 778, 389, 0, 6487, 6488, 5, 3, 0, 0, 6488, 6490, 1, 0, 0, 0, 6489, 6484, 1, 0, 0, 0, 6489, 6485, 1, 0, 0, 0, 6490, 6498, 1, 0, 0, 0, 6491, 6492, 5, 68, 0, 0, 6492, 6495, 5, 323, 0, 0, 6493, 6496, 3, 794, 397, 0, 6494, 6496, 5, 111, 0, 0, 6495, 6493, 1, 0, 0, 0, 6495, 6494, 1, 0, 0, 0, 6496, 6498, 1, 0, 0, 0, 6497, 6482, 1, 0, 0, 0, 6497, 6483, 1, 0, 0, 0, 6497, 6491, 1, 0, 0, 0, 6498, 621, 1, 0, 0, 0, 6499, 6500, 5, 92, 0, 0, 6500, 6502, 3, 316, 158, 0, 6501, 6503, 3, 138, 69, 0, 6502, 6501, 1, 0, 0, 0, 6502, 6503, 1, 0, 0, 0, 6503, 6505, 1, 0, 0, 0, 6504, 6506, 3, 634, 317, 0, 6505, 6504, 1, 0, 0, 0, 6505, 6506, 1, 0, 0, 0, 6506, 6524, 1, 0, 0, 0, 6507, 6508, 5, 92, 0, 0, 6508, 6514, 5, 81, 0, 0, 6509, 6515, 3, 778, 389, 0, 6510, 6511, 5, 2, 0, 0, 6511, 6512, 3, 778, 389, 0, 6512, 6513, 5, 3, 0, 0, 6513, 6515, 1, 0, 0, 0, 6514, 6509, 1, 0, 0, 0, 6514, 6510, 1, 0, 0, 0, 6515, 6524, 1, 0, 0, 0, 6516, 6517, 5, 350, 0, 0, 6517, 6518, 5, 68, 0, 0, 6518, 6521, 5, 323, 0, 0, 6519, 6522, 3, 794, 397, 0, 6520, 6522, 5, 111, 0, 0, 6521, 6519, 1, 0, 0, 0, 6521, 6520, 1, 0, 0, 0, 6522, 6524, 1, 0, 0, 0, 6523, 6499, 1, 0, 0, 0, 6523, 6507, 1, 0, 0, 0, 6523, 6516, 1, 0, 0, 0, 6524, 623, 1, 0, 0, 0, 6525, 6530, 3, 620, 310, 0, 6526, 6527, 5, 6, 0, 0, 6527, 6529, 3, 620, 310, 0, 6528, 6526, 1, 0, 0, 0, 6529, 6532, 1, 0, 0, 0, 6530, 6528, 1, 0, 0, 0, 6530, 6531, 1, 0, 0, 0, 6531, 625, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6533, 6538, 3, 620, 310, 0, 6534, 6536, 5, 36, 0, 0, 6535, 6534, 1, 0, 0, 0, 6535, 6536, 1, 0, 0, 0, 6536, 6537, 1, 0, 0, 0, 6537, 6539, 3, 826, 413, 0, 6538, 6535, 1, 0, 0, 0, 6538, 6539, 1, 0, 0, 0, 6539, 627, 1, 0, 0, 0, 6540, 6541, 5, 472, 0, 0, 6541, 6542, 3, 814, 407, 0, 6542, 6548, 3, 528, 264, 0, 6543, 6544, 5, 310, 0, 0, 6544, 6545, 5, 2, 0, 0, 6545, 6546, 3, 670, 335, 0, 6546, 6547, 5, 3, 0, 0, 6547, 6549, 1, 0, 0, 0, 6548, 6543, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 629, 1, 0, 0, 0, 6550, 6565, 3, 684, 342, 0, 6551, 6552, 5, 320, 0, 0, 6552, 6553, 5, 64, 0, 0, 6553, 6554, 5, 2, 0, 0, 6554, 6559, 3, 632, 316, 0, 6555, 6556, 5, 6, 0, 0, 6556, 6558, 3, 632, 316, 0, 6557, 6555, 1, 0, 0, 0, 6558, 6561, 1, 0, 0, 0, 6559, 6557, 1, 0, 0, 0, 6559, 6560, 1, 0, 0, 0, 6560, 6562, 1, 0, 0, 0, 6561, 6559, 1, 0, 0, 0, 6562, 6563, 5, 3, 0, 0, 6563, 6565, 1, 0, 0, 0, 6564, 6550, 1, 0, 0, 0, 6564, 6551, 1, 0, 0, 0, 6565, 6568, 1, 0, 0, 0, 6566, 6567, 5, 105, 0, 0, 6567, 6569, 5, 473, 0, 0, 6568, 6566, 1, 0, 0, 0, 6568, 6569, 1, 0, 0, 0, 6569, 631, 1, 0, 0, 0, 6570, 6576, 3, 684, 342, 0, 6571, 6572, 5, 36, 0, 0, 6572, 6573, 5, 2, 0, 0, 6573, 6574, 3, 638, 319, 0, 6574, 6575, 5, 3, 0, 0, 6575, 6577, 1, 0, 0, 0, 6576, 6571, 1, 0, 0, 0, 6576, 6577, 1, 0, 0, 0, 6577, 633, 1, 0, 0, 0, 6578, 6579, 5, 103, 0, 0, 6579, 6580, 3, 736, 368, 0, 6580, 635, 1, 0, 0, 0, 6581, 6586, 5, 103, 0, 0, 6582, 6583, 5, 434, 0, 0, 6583, 6584, 5, 275, 0, 0, 6584, 6587, 3, 826, 413, 0, 6585, 6587, 3, 670, 335, 0, 6586, 6582, 1, 0, 0, 0, 6586, 6585, 1, 0, 0, 0, 6587, 637, 1, 0, 0, 0, 6588, 6593, 3, 640, 320, 0, 6589, 6590, 5, 6, 0, 0, 6590, 6592, 3, 640, 320, 0, 6591, 6589, 1, 0, 0, 0, 6592, 6595, 1, 0, 0, 0, 6593, 6591, 1, 0, 0, 0, 6593, 6594, 1, 0, 0, 0, 6594, 639, 1, 0, 0, 0, 6595, 6593, 1, 0, 0, 0, 6596, 6597, 3, 826, 413, 0, 6597, 6599, 3, 648, 324, 0, 6598, 6600, 3, 90, 45, 0, 6599, 6598, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 641, 1, 0, 0, 0, 6601, 6602, 5, 474, 0, 0, 6602, 6616, 5, 2, 0, 0, 6603, 6604, 5, 476, 0, 0, 6604, 6605, 5, 2, 0, 0, 6605, 6610, 3, 646, 323, 0, 6606, 6607, 5, 6, 0, 0, 6607, 6609, 3, 646, 323, 0, 6608, 6606, 1, 0, 0, 0, 6609, 6612, 1, 0, 0, 0, 6610, 6608, 1, 0, 0, 0, 6610, 6611, 1, 0, 0, 0, 6611, 6613, 1, 0, 0, 0, 6612, 6610, 1, 0, 0, 0, 6613, 6614, 5, 3, 0, 0, 6614, 6615, 5, 6, 0, 0, 6615, 6617, 1, 0, 0, 0, 6616, 6603, 1, 0, 0, 0, 6616, 6617, 1, 0, 0, 0, 6617, 6618, 1, 0, 0, 0, 6618, 6619, 3, 678, 339, 0, 6619, 6620, 3, 694, 347, 0, 6620, 6621, 5, 475, 0, 0, 6621, 6626, 3, 644, 322, 0, 6622, 6623, 5, 6, 0, 0, 6623, 6625, 3, 644, 322, 0, 6624, 6622, 1, 0, 0, 0, 6625, 6628, 1, 0, 0, 0, 6626, 6624, 1, 0, 0, 0, 6626, 6627, 1, 0, 0, 0, 6627, 6629, 1, 0, 0, 0, 6628, 6626, 1, 0, 0, 0, 6629, 6630, 5, 3, 0, 0, 6630, 643, 1, 0, 0, 0, 6631, 6650, 3, 826, 413, 0, 6632, 6646, 3, 648, 324, 0, 6633, 6636, 5, 53, 0, 0, 6634, 6636, 3, 834, 417, 0, 6635, 6633, 1, 0, 0, 0, 6635, 6634, 1, 0, 0, 0, 6636, 6637, 1, 0, 0, 0, 6637, 6643, 3, 670, 335, 0, 6638, 6640, 5, 77, 0, 0, 6639, 6638, 1, 0, 0, 0, 6639, 6640, 1, 0, 0, 0, 6640, 6641, 1, 0, 0, 0, 6641, 6643, 5, 78, 0, 0, 6642, 6635, 1, 0, 0, 0, 6642, 6639, 1, 0, 0, 0, 6643, 6644, 1, 0, 0, 0, 6644, 6642, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 6647, 1, 0, 0, 0, 6646, 6642, 1, 0, 0, 0, 6646, 6647, 1, 0, 0, 0, 6647, 6651, 1, 0, 0, 0, 6648, 6649, 5, 62, 0, 0, 6649, 6651, 5, 473, 0, 0, 6650, 6632, 1, 0, 0, 0, 6650, 6648, 1, 0, 0, 0, 6651, 645, 1, 0, 0, 0, 6652, 6653, 3, 678, 339, 0, 6653, 6654, 5, 36, 0, 0, 6654, 6655, 3, 832, 416, 0, 6655, 6659, 1, 0, 0, 0, 6656, 6657, 5, 53, 0, 0, 6657, 6659, 3, 678, 339, 0, 6658, 6652, 1, 0, 0, 0, 6658, 6656, 1, 0, 0, 0, 6659, 647, 1, 0, 0, 0, 6660, 6662, 5, 415, 0, 0, 6661, 6660, 1, 0, 0, 0, 6661, 6662, 1, 0, 0, 0, 6662, 6663, 1, 0, 0, 0, 6663, 6680, 3, 650, 325, 0, 6664, 6666, 5, 4, 0, 0, 6665, 6667, 5, 574, 0, 0, 6666, 6665, 1, 0, 0, 0, 6666, 6667, 1, 0, 0, 0, 6667, 6668, 1, 0, 0, 0, 6668, 6670, 5, 5, 0, 0, 6669, 6664, 1, 0, 0, 0, 6670, 6673, 1, 0, 0, 0, 6671, 6669, 1, 0, 0, 0, 6671, 6672, 1, 0, 0, 0, 6672, 6681, 1, 0, 0, 0, 6673, 6671, 1, 0, 0, 0, 6674, 6678, 5, 35, 0, 0, 6675, 6676, 5, 4, 0, 0, 6676, 6677, 5, 574, 0, 0, 6677, 6679, 5, 5, 0, 0, 6678, 6675, 1, 0, 0, 0, 6678, 6679, 1, 0, 0, 0, 6679, 6681, 1, 0, 0, 0, 6680, 6671, 1, 0, 0, 0, 6680, 6674, 1, 0, 0, 0, 6681, 6687, 1, 0, 0, 0, 6682, 6683, 3, 784, 392, 0, 6683, 6684, 5, 27, 0, 0, 6684, 6685, 7, 88, 0, 0, 6685, 6687, 1, 0, 0, 0, 6686, 6661, 1, 0, 0, 0, 6686, 6682, 1, 0, 0, 0, 6687, 649, 1, 0, 0, 0, 6688, 6690, 3, 828, 414, 0, 6689, 6691, 3, 312, 156, 0, 6690, 6689, 1, 0, 0, 0, 6690, 6691, 1, 0, 0, 0, 6691, 6693, 1, 0, 0, 0, 6692, 6694, 3, 528, 264, 0, 6693, 6692, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6704, 1, 0, 0, 0, 6695, 6704, 3, 652, 326, 0, 6696, 6701, 5, 403, 0, 0, 6697, 6699, 3, 664, 332, 0, 6698, 6697, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6702, 1, 0, 0, 0, 6700, 6702, 3, 656, 328, 0, 6701, 6698, 1, 0, 0, 0, 6701, 6700, 1, 0, 0, 0, 6702, 6704, 1, 0, 0, 0, 6703, 6688, 1, 0, 0, 0, 6703, 6695, 1, 0, 0, 0, 6703, 6696, 1, 0, 0, 0, 6704, 651, 1, 0, 0, 0, 6705, 6710, 3, 654, 327, 0, 6706, 6710, 3, 658, 329, 0, 6707, 6710, 3, 660, 330, 0, 6708, 6710, 3, 662, 331, 0, 6709, 6705, 1, 0, 0, 0, 6709, 6706, 1, 0, 0, 0, 6709, 6707, 1, 0, 0, 0, 6709, 6708, 1, 0, 0, 0, 6710, 653, 1, 0, 0, 0, 6711, 6728, 5, 401, 0, 0, 6712, 6728, 5, 402, 0, 0, 6713, 6728, 5, 416, 0, 0, 6714, 6728, 5, 388, 0, 0, 6715, 6728, 5, 413, 0, 0, 6716, 6718, 5, 398, 0, 0, 6717, 6719, 3, 656, 328, 0, 6718, 6717, 1, 0, 0, 0, 6718, 6719, 1, 0, 0, 0, 6719, 6728, 1, 0, 0, 0, 6720, 6721, 5, 190, 0, 0, 6721, 6728, 5, 412, 0, 0, 6722, 6724, 7, 89, 0, 0, 6723, 6725, 3, 528, 264, 0, 6724, 6723, 1, 0, 0, 0, 6724, 6725, 1, 0, 0, 0, 6725, 6728, 1, 0, 0, 0, 6726, 6728, 5, 390, 0, 0, 6727, 6711, 1, 0, 0, 0, 6727, 6712, 1, 0, 0, 0, 6727, 6713, 1, 0, 0, 0, 6727, 6714, 1, 0, 0, 0, 6727, 6715, 1, 0, 0, 0, 6727, 6716, 1, 0, 0, 0, 6727, 6720, 1, 0, 0, 0, 6727, 6722, 1, 0, 0, 0, 6727, 6726, 1, 0, 0, 0, 6728, 655, 1, 0, 0, 0, 6729, 6730, 5, 2, 0, 0, 6730, 6731, 5, 574, 0, 0, 6731, 6732, 5, 3, 0, 0, 6732, 657, 1, 0, 0, 0, 6733, 6735, 5, 389, 0, 0, 6734, 6736, 5, 374, 0, 0, 6735, 6734, 1, 0, 0, 0, 6735, 6736, 1, 0, 0, 0, 6736, 6738, 1, 0, 0, 0, 6737, 6739, 3, 528, 264, 0, 6738, 6737, 1, 0, 0, 0, 6738, 6739, 1, 0, 0, 0, 6739, 659, 1, 0, 0, 0, 6740, 6742, 7, 90, 0, 0, 6741, 6743, 5, 374, 0, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 6751, 1, 0, 0, 0, 6744, 6751, 5, 423, 0, 0, 6745, 6746, 5, 405, 0, 0, 6746, 6748, 7, 91, 0, 0, 6747, 6749, 5, 374, 0, 0, 6748, 6747, 1, 0, 0, 0, 6748, 6749, 1, 0, 0, 0, 6749, 6751, 1, 0, 0, 0, 6750, 6740, 1, 0, 0, 0, 6750, 6744, 1, 0, 0, 0, 6750, 6745, 1, 0, 0, 0, 6751, 6753, 1, 0, 0, 0, 6752, 6754, 3, 656, 328, 0, 6753, 6752, 1, 0, 0, 0, 6753, 6754, 1, 0, 0, 0, 6754, 661, 1, 0, 0, 0, 6755, 6757, 7, 92, 0, 0, 6756, 6758, 3, 656, 328, 0, 6757, 6756, 1, 0, 0, 0, 6757, 6758, 1, 0, 0, 0, 6758, 6762, 1, 0, 0, 0, 6759, 6760, 7, 27, 0, 0, 6760, 6761, 5, 418, 0, 0, 6761, 6763, 5, 386, 0, 0, 6762, 6759, 1, 0, 0, 0, 6762, 6763, 1, 0, 0, 0, 6763, 663, 1, 0, 0, 0, 6764, 6794, 5, 264, 0, 0, 6765, 6794, 3, 666, 333, 0, 6766, 6769, 5, 384, 0, 0, 6767, 6768, 5, 94, 0, 0, 6768, 6770, 5, 264, 0, 0, 6769, 6767, 1, 0, 0, 0, 6769, 6770, 1, 0, 0, 0, 6770, 6794, 1, 0, 0, 0, 6771, 6778, 5, 176, 0, 0, 6772, 6776, 5, 94, 0, 0, 6773, 6777, 5, 218, 0, 0, 6774, 6777, 5, 261, 0, 0, 6775, 6777, 3, 666, 333, 0, 6776, 6773, 1, 0, 0, 0, 6776, 6774, 1, 0, 0, 0, 6776, 6775, 1, 0, 0, 0, 6777, 6779, 1, 0, 0, 0, 6778, 6772, 1, 0, 0, 0, 6778, 6779, 1, 0, 0, 0, 6779, 6794, 1, 0, 0, 0, 6780, 6786, 5, 218, 0, 0, 6781, 6784, 5, 94, 0, 0, 6782, 6785, 5, 261, 0, 0, 6783, 6785, 3, 666, 333, 0, 6784, 6782, 1, 0, 0, 0, 6784, 6783, 1, 0, 0, 0, 6785, 6787, 1, 0, 0, 0, 6786, 6781, 1, 0, 0, 0, 6786, 6787, 1, 0, 0, 0, 6787, 6794, 1, 0, 0, 0, 6788, 6791, 5, 261, 0, 0, 6789, 6790, 5, 94, 0, 0, 6790, 6792, 3, 666, 333, 0, 6791, 6789, 1, 0, 0, 0, 6791, 6792, 1, 0, 0, 0, 6792, 6794, 1, 0, 0, 0, 6793, 6764, 1, 0, 0, 0, 6793, 6765, 1, 0, 0, 0, 6793, 6766, 1, 0, 0, 0, 6793, 6771, 1, 0, 0, 0, 6793, 6780, 1, 0, 0, 0, 6793, 6788, 1, 0, 0, 0, 6794, 665, 1, 0, 0, 0, 6795, 6797, 5, 326, 0, 0, 6796, 6798, 3, 656, 328, 0, 6797, 6796, 1, 0, 0, 0, 6797, 6798, 1, 0, 0, 0, 6798, 667, 1, 0, 0, 0, 6799, 6800, 7, 93, 0, 0, 6800, 669, 1, 0, 0, 0, 6801, 6802, 3, 672, 336, 0, 6802, 671, 1, 0, 0, 0, 6803, 6804, 6, 336, -1, 0, 6804, 6806, 3, 676, 338, 0, 6805, 6807, 3, 674, 337, 0, 6806, 6805, 1, 0, 0, 0, 6806, 6807, 1, 0, 0, 0, 6807, 6811, 1, 0, 0, 0, 6808, 6809, 5, 77, 0, 0, 6809, 6811, 3, 672, 336, 3, 6810, 6803, 1, 0, 0, 0, 6810, 6808, 1, 0, 0, 0, 6811, 6820, 1, 0, 0, 0, 6812, 6813, 10, 2, 0, 0, 6813, 6814, 5, 33, 0, 0, 6814, 6819, 3, 672, 336, 3, 6815, 6816, 10, 1, 0, 0, 6816, 6817, 5, 82, 0, 0, 6817, 6819, 3, 672, 336, 2, 6818, 6812, 1, 0, 0, 0, 6818, 6815, 1, 0, 0, 0, 6819, 6822, 1, 0, 0, 0, 6820, 6818, 1, 0, 0, 0, 6820, 6821, 1, 0, 0, 0, 6821, 673, 1, 0, 0, 0, 6822, 6820, 1, 0, 0, 0, 6823, 6824, 3, 668, 334, 0, 6824, 6825, 3, 676, 338, 0, 6825, 6895, 1, 0, 0, 0, 6826, 6827, 3, 668, 334, 0, 6827, 6828, 3, 726, 363, 0, 6828, 6834, 3, 716, 358, 0, 6829, 6835, 3, 556, 278, 0, 6830, 6831, 5, 2, 0, 0, 6831, 6832, 3, 670, 335, 0, 6832, 6833, 5, 3, 0, 0, 6833, 6835, 1, 0, 0, 0, 6834, 6829, 1, 0, 0, 0, 6834, 6830, 1, 0, 0, 0, 6835, 6895, 1, 0, 0, 0, 6836, 6838, 5, 77, 0, 0, 6837, 6836, 1, 0, 0, 0, 6837, 6838, 1, 0, 0, 0, 6838, 6839, 1, 0, 0, 0, 6839, 6840, 5, 387, 0, 0, 6840, 6841, 3, 676, 338, 0, 6841, 6842, 5, 33, 0, 0, 6842, 6843, 3, 676, 338, 0, 6843, 6895, 1, 0, 0, 0, 6844, 6846, 5, 77, 0, 0, 6845, 6844, 1, 0, 0, 0, 6845, 6846, 1, 0, 0, 0, 6846, 6847, 1, 0, 0, 0, 6847, 6848, 5, 68, 0, 0, 6848, 6849, 5, 2, 0, 0, 6849, 6854, 3, 670, 335, 0, 6850, 6851, 5, 6, 0, 0, 6851, 6853, 3, 670, 335, 0, 6852, 6850, 1, 0, 0, 0, 6853, 6856, 1, 0, 0, 0, 6854, 6852, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6857, 1, 0, 0, 0, 6856, 6854, 1, 0, 0, 0, 6857, 6858, 5, 3, 0, 0, 6858, 6895, 1, 0, 0, 0, 6859, 6861, 5, 77, 0, 0, 6860, 6859, 1, 0, 0, 0, 6860, 6861, 1, 0, 0, 0, 6861, 6862, 1, 0, 0, 0, 6862, 6863, 5, 68, 0, 0, 6863, 6895, 3, 556, 278, 0, 6864, 6866, 5, 77, 0, 0, 6865, 6864, 1, 0, 0, 0, 6865, 6866, 1, 0, 0, 0, 6866, 6875, 1, 0, 0, 0, 6867, 6876, 5, 120, 0, 0, 6868, 6876, 5, 114, 0, 0, 6869, 6870, 5, 127, 0, 0, 6870, 6876, 5, 94, 0, 0, 6871, 6873, 5, 387, 0, 0, 6872, 6874, 5, 91, 0, 0, 6873, 6872, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 6876, 1, 0, 0, 0, 6875, 6867, 1, 0, 0, 0, 6875, 6868, 1, 0, 0, 0, 6875, 6869, 1, 0, 0, 0, 6875, 6871, 1, 0, 0, 0, 6876, 6877, 1, 0, 0, 0, 6877, 6880, 3, 676, 338, 0, 6878, 6879, 5, 197, 0, 0, 6879, 6881, 3, 676, 338, 0, 6880, 6878, 1, 0, 0, 0, 6880, 6881, 1, 0, 0, 0, 6881, 6895, 1, 0, 0, 0, 6882, 6884, 5, 116, 0, 0, 6883, 6885, 5, 77, 0, 0, 6884, 6883, 1, 0, 0, 0, 6884, 6885, 1, 0, 0, 0, 6885, 6886, 1, 0, 0, 0, 6886, 6895, 5, 78, 0, 0, 6887, 6889, 5, 116, 0, 0, 6888, 6890, 5, 77, 0, 0, 6889, 6888, 1, 0, 0, 0, 6889, 6890, 1, 0, 0, 0, 6890, 6891, 1, 0, 0, 0, 6891, 6892, 5, 56, 0, 0, 6892, 6893, 5, 64, 0, 0, 6893, 6895, 3, 676, 338, 0, 6894, 6823, 1, 0, 0, 0, 6894, 6826, 1, 0, 0, 0, 6894, 6837, 1, 0, 0, 0, 6894, 6845, 1, 0, 0, 0, 6894, 6860, 1, 0, 0, 0, 6894, 6865, 1, 0, 0, 0, 6894, 6882, 1, 0, 0, 0, 6894, 6887, 1, 0, 0, 0, 6895, 675, 1, 0, 0, 0, 6896, 6897, 6, 338, -1, 0, 6897, 6901, 3, 678, 339, 0, 6898, 6899, 7, 30, 0, 0, 6899, 6901, 3, 676, 338, 4, 6900, 6896, 1, 0, 0, 0, 6900, 6898, 1, 0, 0, 0, 6901, 6918, 1, 0, 0, 0, 6902, 6903, 10, 3, 0, 0, 6903, 6904, 7, 94, 0, 0, 6904, 6917, 3, 676, 338, 4, 6905, 6906, 10, 2, 0, 0, 6906, 6907, 7, 30, 0, 0, 6907, 6917, 3, 676, 338, 3, 6908, 6909, 10, 1, 0, 0, 6909, 6910, 5, 15, 0, 0, 6910, 6917, 3, 676, 338, 2, 6911, 6912, 10, 5, 0, 0, 6912, 6913, 5, 142, 0, 0, 6913, 6914, 5, 418, 0, 0, 6914, 6915, 5, 386, 0, 0, 6915, 6917, 3, 670, 335, 0, 6916, 6902, 1, 0, 0, 0, 6916, 6905, 1, 0, 0, 0, 6916, 6908, 1, 0, 0, 0, 6916, 6911, 1, 0, 0, 0, 6917, 6920, 1, 0, 0, 0, 6918, 6916, 1, 0, 0, 0, 6918, 6919, 1, 0, 0, 0, 6919, 677, 1, 0, 0, 0, 6920, 6918, 1, 0, 0, 0, 6921, 6922, 6, 339, -1, 0, 6922, 6923, 7, 95, 0, 0, 6923, 7010, 3, 556, 278, 0, 6924, 6927, 5, 35, 0, 0, 6925, 6928, 3, 556, 278, 0, 6926, 6928, 3, 742, 371, 0, 6927, 6925, 1, 0, 0, 0, 6927, 6926, 1, 0, 0, 0, 6928, 7010, 1, 0, 0, 0, 6929, 6930, 5, 28, 0, 0, 6930, 7010, 3, 756, 378, 0, 6931, 6932, 5, 470, 0, 0, 6932, 7010, 3, 528, 264, 0, 6933, 7010, 5, 574, 0, 0, 6934, 7010, 5, 576, 0, 0, 6935, 7010, 5, 566, 0, 0, 6936, 7010, 5, 570, 0, 0, 6937, 6947, 3, 814, 407, 0, 6938, 6948, 3, 816, 408, 0, 6939, 6940, 5, 2, 0, 0, 6940, 6942, 3, 738, 369, 0, 6941, 6943, 3, 580, 290, 0, 6942, 6941, 1, 0, 0, 0, 6942, 6943, 1, 0, 0, 0, 6943, 6944, 1, 0, 0, 0, 6944, 6945, 5, 3, 0, 0, 6945, 6946, 3, 816, 408, 0, 6946, 6948, 1, 0, 0, 0, 6947, 6938, 1, 0, 0, 0, 6947, 6939, 1, 0, 0, 0, 6948, 7010, 1, 0, 0, 0, 6949, 6951, 3, 652, 326, 0, 6950, 6949, 1, 0, 0, 0, 6950, 6951, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 7010, 3, 816, 408, 0, 6953, 6961, 5, 403, 0, 0, 6954, 6956, 3, 816, 408, 0, 6955, 6957, 3, 664, 332, 0, 6956, 6955, 1, 0, 0, 0, 6956, 6957, 1, 0, 0, 0, 6957, 6962, 1, 0, 0, 0, 6958, 6959, 3, 656, 328, 0, 6959, 6960, 3, 816, 408, 0, 6960, 6962, 1, 0, 0, 0, 6961, 6954, 1, 0, 0, 0, 6961, 6958, 1, 0, 0, 0, 6962, 7010, 1, 0, 0, 0, 6963, 7010, 5, 96, 0, 0, 6964, 7010, 5, 60, 0, 0, 6965, 7010, 5, 78, 0, 0, 6966, 7010, 5, 577, 0, 0, 6967, 6968, 5, 2, 0, 0, 6968, 6969, 3, 670, 335, 0, 6969, 6970, 5, 3, 0, 0, 6970, 6971, 3, 756, 378, 0, 6971, 7010, 1, 0, 0, 0, 6972, 6974, 5, 40, 0, 0, 6973, 6975, 3, 670, 335, 0, 6974, 6973, 1, 0, 0, 0, 6974, 6975, 1, 0, 0, 0, 6975, 6977, 1, 0, 0, 0, 6976, 6978, 3, 750, 375, 0, 6977, 6976, 1, 0, 0, 0, 6978, 6979, 1, 0, 0, 0, 6979, 6977, 1, 0, 0, 0, 6979, 6980, 1, 0, 0, 0, 6980, 6983, 1, 0, 0, 0, 6981, 6982, 5, 58, 0, 0, 6982, 6984, 3, 670, 335, 0, 6983, 6981, 1, 0, 0, 0, 6983, 6984, 1, 0, 0, 0, 6984, 6985, 1, 0, 0, 0, 6985, 6986, 5, 454, 0, 0, 6986, 7010, 1, 0, 0, 0, 6987, 7010, 3, 682, 341, 0, 6988, 6990, 3, 556, 278, 0, 6989, 6991, 3, 754, 377, 0, 6990, 6989, 1, 0, 0, 0, 6990, 6991, 1, 0, 0, 0, 6991, 7010, 1, 0, 0, 0, 6992, 7010, 3, 714, 357, 0, 6993, 6994, 5, 2, 0, 0, 6994, 6995, 3, 670, 335, 0, 6995, 6996, 5, 6, 0, 0, 6996, 6997, 3, 728, 364, 0, 6997, 6998, 5, 3, 0, 0, 6998, 7010, 1, 0, 0, 0, 6999, 7000, 3, 712, 356, 0, 7000, 7001, 5, 125, 0, 0, 7001, 7002, 3, 712, 356, 0, 7002, 7010, 1, 0, 0, 0, 7003, 7010, 3, 808, 404, 0, 7004, 7005, 7, 30, 0, 0, 7005, 7010, 3, 678, 339, 5, 7006, 7007, 3, 722, 361, 0, 7007, 7008, 3, 678, 339, 2, 7008, 7010, 1, 0, 0, 0, 7009, 6921, 1, 0, 0, 0, 7009, 6924, 1, 0, 0, 0, 7009, 6929, 1, 0, 0, 0, 7009, 6931, 1, 0, 0, 0, 7009, 6933, 1, 0, 0, 0, 7009, 6934, 1, 0, 0, 0, 7009, 6935, 1, 0, 0, 0, 7009, 6936, 1, 0, 0, 0, 7009, 6937, 1, 0, 0, 0, 7009, 6950, 1, 0, 0, 0, 7009, 6953, 1, 0, 0, 0, 7009, 6963, 1, 0, 0, 0, 7009, 6964, 1, 0, 0, 0, 7009, 6965, 1, 0, 0, 0, 7009, 6966, 1, 0, 0, 0, 7009, 6967, 1, 0, 0, 0, 7009, 6972, 1, 0, 0, 0, 7009, 6987, 1, 0, 0, 0, 7009, 6988, 1, 0, 0, 0, 7009, 6992, 1, 0, 0, 0, 7009, 6993, 1, 0, 0, 0, 7009, 6999, 1, 0, 0, 0, 7009, 7003, 1, 0, 0, 0, 7009, 7004, 1, 0, 0, 0, 7009, 7006, 1, 0, 0, 0, 7010, 7038, 1, 0, 0, 0, 7011, 7012, 10, 3, 0, 0, 7012, 7013, 3, 720, 360, 0, 7013, 7014, 3, 678, 339, 4, 7014, 7037, 1, 0, 0, 0, 7015, 7016, 10, 6, 0, 0, 7016, 7017, 5, 26, 0, 0, 7017, 7037, 3, 648, 324, 0, 7018, 7019, 10, 4, 0, 0, 7019, 7021, 3, 722, 361, 0, 7020, 7022, 3, 678, 339, 0, 7021, 7020, 1, 0, 0, 0, 7021, 7022, 1, 0, 0, 0, 7022, 7037, 1, 0, 0, 0, 7023, 7024, 10, 1, 0, 0, 7024, 7026, 5, 116, 0, 0, 7025, 7027, 5, 77, 0, 0, 7026, 7025, 1, 0, 0, 0, 7026, 7027, 1, 0, 0, 0, 7027, 7034, 1, 0, 0, 0, 7028, 7029, 5, 56, 0, 0, 7029, 7030, 5, 64, 0, 0, 7030, 7035, 3, 678, 339, 0, 7031, 7032, 5, 275, 0, 0, 7032, 7035, 3, 522, 261, 0, 7033, 7035, 5, 188, 0, 0, 7034, 7028, 1, 0, 0, 0, 7034, 7031, 1, 0, 0, 0, 7034, 7033, 1, 0, 0, 0, 7035, 7037, 1, 0, 0, 0, 7036, 7011, 1, 0, 0, 0, 7036, 7015, 1, 0, 0, 0, 7036, 7018, 1, 0, 0, 0, 7036, 7023, 1, 0, 0, 0, 7037, 7040, 1, 0, 0, 0, 7038, 7036, 1, 0, 0, 0, 7038, 7039, 1, 0, 0, 0, 7039, 679, 1, 0, 0, 0, 7040, 7038, 1, 0, 0, 0, 7041, 7042, 3, 814, 407, 0, 7042, 7063, 5, 2, 0, 0, 7043, 7047, 3, 738, 369, 0, 7044, 7045, 5, 6, 0, 0, 7045, 7046, 5, 101, 0, 0, 7046, 7048, 3, 740, 370, 0, 7047, 7044, 1, 0, 0, 0, 7047, 7048, 1, 0, 0, 0, 7048, 7050, 1, 0, 0, 0, 7049, 7051, 3, 580, 290, 0, 7050, 7049, 1, 0, 0, 0, 7050, 7051, 1, 0, 0, 0, 7051, 7064, 1, 0, 0, 0, 7052, 7053, 5, 101, 0, 0, 7053, 7055, 3, 740, 370, 0, 7054, 7056, 3, 580, 290, 0, 7055, 7054, 1, 0, 0, 0, 7055, 7056, 1, 0, 0, 0, 7056, 7064, 1, 0, 0, 0, 7057, 7058, 7, 81, 0, 0, 7058, 7060, 3, 738, 369, 0, 7059, 7061, 3, 580, 290, 0, 7060, 7059, 1, 0, 0, 0, 7060, 7061, 1, 0, 0, 0, 7061, 7064, 1, 0, 0, 0, 7062, 7064, 5, 9, 0, 0, 7063, 7043, 1, 0, 0, 0, 7063, 7052, 1, 0, 0, 0, 7063, 7057, 1, 0, 0, 0, 7063, 7062, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7066, 5, 3, 0, 0, 7066, 681, 1, 0, 0, 0, 7067, 7074, 3, 680, 340, 0, 7068, 7069, 5, 479, 0, 0, 7069, 7070, 5, 66, 0, 0, 7070, 7071, 5, 2, 0, 0, 7071, 7072, 3, 580, 290, 0, 7072, 7073, 5, 3, 0, 0, 7073, 7075, 1, 0, 0, 0, 7074, 7068, 1, 0, 0, 0, 7074, 7075, 1, 0, 0, 0, 7075, 7082, 1, 0, 0, 0, 7076, 7077, 5, 480, 0, 0, 7077, 7078, 5, 2, 0, 0, 7078, 7079, 5, 103, 0, 0, 7079, 7080, 3, 670, 335, 0, 7080, 7081, 5, 3, 0, 0, 7081, 7083, 1, 0, 0, 0, 7082, 7076, 1, 0, 0, 0, 7082, 7083, 1, 0, 0, 0, 7083, 7089, 1, 0, 0, 0, 7084, 7087, 5, 124, 0, 0, 7085, 7088, 3, 706, 353, 0, 7086, 7088, 3, 826, 413, 0, 7087, 7085, 1, 0, 0, 0, 7087, 7086, 1, 0, 0, 0, 7088, 7090, 1, 0, 0, 0, 7089, 7084, 1, 0, 0, 0, 7089, 7090, 1, 0, 0, 0, 7090, 7093, 1, 0, 0, 0, 7091, 7093, 3, 686, 343, 0, 7092, 7067, 1, 0, 0, 0, 7092, 7091, 1, 0, 0, 0, 7093, 683, 1, 0, 0, 0, 7094, 7097, 3, 680, 340, 0, 7095, 7097, 3, 686, 343, 0, 7096, 7094, 1, 0, 0, 0, 7096, 7095, 1, 0, 0, 0, 7097, 685, 1, 0, 0, 0, 7098, 7099, 5, 108, 0, 0, 7099, 7100, 5, 62, 0, 0, 7100, 7101, 5, 2, 0, 0, 7101, 7102, 3, 670, 335, 0, 7102, 7103, 5, 3, 0, 0, 7103, 7273, 1, 0, 0, 0, 7104, 7273, 5, 48, 0, 0, 7105, 7107, 7, 96, 0, 0, 7106, 7108, 3, 656, 328, 0, 7107, 7106, 1, 0, 0, 0, 7107, 7108, 1, 0, 0, 0, 7108, 7273, 1, 0, 0, 0, 7109, 7273, 5, 49, 0, 0, 7110, 7273, 5, 52, 0, 0, 7111, 7273, 5, 89, 0, 0, 7112, 7273, 5, 99, 0, 0, 7113, 7273, 5, 47, 0, 0, 7114, 7273, 5, 111, 0, 0, 7115, 7116, 7, 97, 0, 0, 7116, 7117, 5, 2, 0, 0, 7117, 7118, 3, 670, 335, 0, 7118, 7119, 5, 36, 0, 0, 7119, 7120, 3, 648, 324, 0, 7120, 7121, 5, 3, 0, 0, 7121, 7273, 1, 0, 0, 0, 7122, 7123, 5, 397, 0, 0, 7123, 7128, 5, 2, 0, 0, 7124, 7125, 3, 744, 372, 0, 7125, 7126, 5, 64, 0, 0, 7126, 7127, 3, 670, 335, 0, 7127, 7129, 1, 0, 0, 0, 7128, 7124, 1, 0, 0, 0, 7128, 7129, 1, 0, 0, 0, 7129, 7130, 1, 0, 0, 0, 7130, 7273, 5, 3, 0, 0, 7131, 7132, 5, 489, 0, 0, 7132, 7133, 5, 2, 0, 0, 7133, 7136, 3, 670, 335, 0, 7134, 7135, 5, 6, 0, 0, 7135, 7137, 3, 746, 373, 0, 7136, 7134, 1, 0, 0, 0, 7136, 7137, 1, 0, 0, 0, 7137, 7138, 1, 0, 0, 0, 7138, 7139, 5, 3, 0, 0, 7139, 7273, 1, 0, 0, 0, 7140, 7141, 5, 410, 0, 0, 7141, 7142, 5, 2, 0, 0, 7142, 7143, 3, 670, 335, 0, 7143, 7144, 5, 84, 0, 0, 7144, 7145, 3, 670, 335, 0, 7145, 7146, 5, 64, 0, 0, 7146, 7149, 3, 670, 335, 0, 7147, 7148, 5, 62, 0, 0, 7148, 7150, 3, 670, 335, 0, 7149, 7147, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7152, 5, 3, 0, 0, 7152, 7273, 1, 0, 0, 0, 7153, 7154, 5, 411, 0, 0, 7154, 7159, 5, 2, 0, 0, 7155, 7156, 3, 678, 339, 0, 7156, 7157, 5, 68, 0, 0, 7157, 7158, 3, 678, 339, 0, 7158, 7160, 1, 0, 0, 0, 7159, 7155, 1, 0, 0, 0, 7159, 7160, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7273, 5, 3, 0, 0, 7162, 7163, 5, 417, 0, 0, 7163, 7165, 5, 2, 0, 0, 7164, 7166, 3, 748, 374, 0, 7165, 7164, 1, 0, 0, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7273, 5, 3, 0, 0, 7168, 7169, 5, 421, 0, 0, 7169, 7171, 5, 2, 0, 0, 7170, 7172, 7, 98, 0, 0, 7171, 7170, 1, 0, 0, 0, 7171, 7172, 1, 0, 0, 0, 7172, 7177, 1, 0, 0, 0, 7173, 7175, 3, 670, 335, 0, 7174, 7173, 1, 0, 0, 0, 7174, 7175, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7178, 5, 64, 0, 0, 7177, 7174, 1, 0, 0, 0, 7177, 7178, 1, 0, 0, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7180, 3, 728, 364, 0, 7180, 7181, 1, 0, 0, 0, 7181, 7182, 5, 3, 0, 0, 7182, 7273, 1, 0, 0, 0, 7183, 7184, 5, 408, 0, 0, 7184, 7185, 5, 2, 0, 0, 7185, 7186, 3, 670, 335, 0, 7186, 7187, 5, 6, 0, 0, 7187, 7188, 3, 670, 335, 0, 7188, 7189, 5, 3, 0, 0, 7189, 7273, 1, 0, 0, 0, 7190, 7191, 7, 99, 0, 0, 7191, 7273, 3, 528, 264, 0, 7192, 7193, 5, 426, 0, 0, 7193, 7194, 5, 2, 0, 0, 7194, 7195, 5, 266, 0, 0, 7195, 7205, 3, 832, 416, 0, 7196, 7203, 5, 6, 0, 0, 7197, 7198, 5, 424, 0, 0, 7198, 7199, 5, 2, 0, 0, 7199, 7200, 3, 688, 344, 0, 7200, 7201, 5, 3, 0, 0, 7201, 7204, 1, 0, 0, 0, 7202, 7204, 3, 728, 364, 0, 7203, 7197, 1, 0, 0, 0, 7203, 7202, 1, 0, 0, 0, 7204, 7206, 1, 0, 0, 0, 7205, 7196, 1, 0, 0, 0, 7205, 7206, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7208, 5, 3, 0, 0, 7208, 7273, 1, 0, 0, 0, 7209, 7210, 5, 427, 0, 0, 7210, 7211, 5, 2, 0, 0, 7211, 7212, 3, 678, 339, 0, 7212, 7213, 3, 694, 347, 0, 7213, 7214, 5, 3, 0, 0, 7214, 7273, 1, 0, 0, 0, 7215, 7216, 5, 428, 0, 0, 7216, 7217, 5, 2, 0, 0, 7217, 7218, 3, 688, 344, 0, 7218, 7219, 5, 3, 0, 0, 7219, 7273, 1, 0, 0, 0, 7220, 7221, 5, 429, 0, 0, 7221, 7222, 5, 2, 0, 0, 7222, 7223, 3, 692, 346, 0, 7223, 7226, 3, 670, 335, 0, 7224, 7225, 7, 100, 0, 0, 7225, 7227, 5, 378, 0, 0, 7226, 7224, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 7229, 5, 3, 0, 0, 7229, 7273, 1, 0, 0, 0, 7230, 7231, 5, 430, 0, 0, 7231, 7232, 5, 2, 0, 0, 7232, 7233, 5, 266, 0, 0, 7233, 7236, 3, 832, 416, 0, 7234, 7235, 5, 6, 0, 0, 7235, 7237, 3, 670, 335, 0, 7236, 7234, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7238, 1, 0, 0, 0, 7238, 7239, 5, 3, 0, 0, 7239, 7273, 1, 0, 0, 0, 7240, 7241, 5, 431, 0, 0, 7241, 7242, 5, 2, 0, 0, 7242, 7243, 5, 383, 0, 0, 7243, 7244, 3, 670, 335, 0, 7244, 7245, 5, 6, 0, 0, 7245, 7249, 5, 375, 0, 0, 7246, 7247, 5, 269, 0, 0, 7247, 7250, 5, 450, 0, 0, 7248, 7250, 3, 670, 335, 0, 7249, 7246, 1, 0, 0, 0, 7249, 7248, 1, 0, 0, 0, 7250, 7260, 1, 0, 0, 0, 7251, 7252, 5, 6, 0, 0, 7252, 7258, 5, 339, 0, 0, 7253, 7255, 5, 269, 0, 0, 7254, 7253, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7256, 1, 0, 0, 0, 7256, 7259, 5, 450, 0, 0, 7257, 7259, 5, 385, 0, 0, 7258, 7254, 1, 0, 0, 0, 7258, 7257, 1, 0, 0, 0, 7259, 7261, 1, 0, 0, 0, 7260, 7251, 1, 0, 0, 0, 7260, 7261, 1, 0, 0, 0, 7261, 7262, 1, 0, 0, 0, 7262, 7263, 5, 3, 0, 0, 7263, 7273, 1, 0, 0, 0, 7264, 7265, 5, 432, 0, 0, 7265, 7266, 5, 2, 0, 0, 7266, 7267, 3, 692, 346, 0, 7267, 7268, 3, 670, 335, 0, 7268, 7269, 5, 36, 0, 0, 7269, 7270, 3, 650, 325, 0, 7270, 7271, 5, 3, 0, 0, 7271, 7273, 1, 0, 0, 0, 7272, 7098, 1, 0, 0, 0, 7272, 7104, 1, 0, 0, 0, 7272, 7105, 1, 0, 0, 0, 7272, 7109, 1, 0, 0, 0, 7272, 7110, 1, 0, 0, 0, 7272, 7111, 1, 0, 0, 0, 7272, 7112, 1, 0, 0, 0, 7272, 7113, 1, 0, 0, 0, 7272, 7114, 1, 0, 0, 0, 7272, 7115, 1, 0, 0, 0, 7272, 7122, 1, 0, 0, 0, 7272, 7131, 1, 0, 0, 0, 7272, 7140, 1, 0, 0, 0, 7272, 7153, 1, 0, 0, 0, 7272, 7162, 1, 0, 0, 0, 7272, 7168, 1, 0, 0, 0, 7272, 7183, 1, 0, 0, 0, 7272, 7190, 1, 0, 0, 0, 7272, 7192, 1, 0, 0, 0, 7272, 7209, 1, 0, 0, 0, 7272, 7215, 1, 0, 0, 0, 7272, 7220, 1, 0, 0, 0, 7272, 7230, 1, 0, 0, 0, 7272, 7240, 1, 0, 0, 0, 7272, 7264, 1, 0, 0, 0, 7273, 687, 1, 0, 0, 0, 7274, 7279, 3, 690, 345, 0, 7275, 7276, 5, 6, 0, 0, 7276, 7278, 3, 690, 345, 0, 7277, 7275, 1, 0, 0, 0, 7278, 7281, 1, 0, 0, 0, 7279, 7277, 1, 0, 0, 0, 7279, 7280, 1, 0, 0, 0, 7280, 689, 1, 0, 0, 0, 7281, 7279, 1, 0, 0, 0, 7282, 7285, 3, 670, 335, 0, 7283, 7284, 5, 36, 0, 0, 7284, 7286, 3, 832, 416, 0, 7285, 7283, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 691, 1, 0, 0, 0, 7287, 7288, 7, 101, 0, 0, 7288, 693, 1, 0, 0, 0, 7289, 7291, 5, 286, 0, 0, 7290, 7292, 3, 696, 348, 0, 7291, 7290, 1, 0, 0, 0, 7291, 7292, 1, 0, 0, 0, 7292, 7293, 1, 0, 0, 0, 7293, 7295, 3, 678, 339, 0, 7294, 7296, 3, 696, 348, 0, 7295, 7294, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 695, 1, 0, 0, 0, 7297, 7298, 5, 147, 0, 0, 7298, 7299, 7, 102, 0, 0, 7299, 697, 1, 0, 0, 0, 7300, 7301, 5, 104, 0, 0, 7301, 7306, 3, 702, 351, 0, 7302, 7303, 5, 6, 0, 0, 7303, 7305, 3, 702, 351, 0, 7304, 7302, 1, 0, 0, 0, 7305, 7308, 1, 0, 0, 0, 7306, 7304, 1, 0, 0, 0, 7306, 7307, 1, 0, 0, 0, 7307, 699, 1, 0, 0, 0, 7308, 7306, 1, 0, 0, 0, 7309, 7310, 5, 67, 0, 0, 7310, 7311, 3, 670, 335, 0, 7311, 701, 1, 0, 0, 0, 7312, 7313, 3, 826, 413, 0, 7313, 7314, 5, 36, 0, 0, 7314, 7315, 3, 706, 353, 0, 7315, 703, 1, 0, 0, 0, 7316, 7319, 5, 124, 0, 0, 7317, 7320, 3, 706, 353, 0, 7318, 7320, 3, 826, 413, 0, 7319, 7317, 1, 0, 0, 0, 7319, 7318, 1, 0, 0, 0, 7320, 705, 1, 0, 0, 0, 7321, 7323, 5, 2, 0, 0, 7322, 7324, 3, 826, 413, 0, 7323, 7322, 1, 0, 0, 0, 7323, 7324, 1, 0, 0, 0, 7324, 7328, 1, 0, 0, 0, 7325, 7326, 5, 285, 0, 0, 7326, 7327, 5, 147, 0, 0, 7327, 7329, 3, 728, 364, 0, 7328, 7325, 1, 0, 0, 0, 7328, 7329, 1, 0, 0, 0, 7329, 7331, 1, 0, 0, 0, 7330, 7332, 3, 580, 290, 0, 7331, 7330, 1, 0, 0, 0, 7331, 7332, 1, 0, 0, 0, 7332, 7334, 1, 0, 0, 0, 7333, 7335, 3, 708, 354, 0, 7334, 7333, 1, 0, 0, 0, 7334, 7335, 1, 0, 0, 0, 7335, 7336, 1, 0, 0, 0, 7336, 7337, 5, 3, 0, 0, 7337, 707, 1, 0, 0, 0, 7338, 7343, 7, 103, 0, 0, 7339, 7340, 5, 387, 0, 0, 7340, 7341, 3, 710, 355, 0, 7341, 7342, 5, 33, 0, 0, 7342, 7344, 1, 0, 0, 0, 7343, 7339, 1, 0, 0, 0, 7343, 7344, 1, 0, 0, 0, 7344, 7345, 1, 0, 0, 0, 7345, 7346, 3, 710, 355, 0, 7346, 7356, 1, 0, 0, 0, 7347, 7354, 5, 199, 0, 0, 7348, 7349, 5, 434, 0, 0, 7349, 7355, 5, 414, 0, 0, 7350, 7355, 5, 66, 0, 0, 7351, 7355, 5, 467, 0, 0, 7352, 7353, 5, 269, 0, 0, 7353, 7355, 5, 482, 0, 0, 7354, 7348, 1, 0, 0, 0, 7354, 7350, 1, 0, 0, 0, 7354, 7351, 1, 0, 0, 0, 7354, 7352, 1, 0, 0, 0, 7355, 7357, 1, 0, 0, 0, 7356, 7347, 1, 0, 0, 0, 7356, 7357, 1, 0, 0, 0, 7357, 709, 1, 0, 0, 0, 7358, 7361, 5, 362, 0, 0, 7359, 7361, 3, 670, 335, 0, 7360, 7358, 1, 0, 0, 0, 7360, 7359, 1, 0, 0, 0, 7361, 7362, 1, 0, 0, 0, 7362, 7366, 7, 104, 0, 0, 7363, 7364, 5, 434, 0, 0, 7364, 7366, 5, 414, 0, 0, 7365, 7360, 1, 0, 0, 0, 7365, 7363, 1, 0, 0, 0, 7366, 711, 1, 0, 0, 0, 7367, 7375, 3, 714, 357, 0, 7368, 7369, 5, 2, 0, 0, 7369, 7370, 3, 728, 364, 0, 7370, 7371, 5, 6, 0, 0, 7371, 7372, 3, 670, 335, 0, 7372, 7373, 5, 3, 0, 0, 7373, 7375, 1, 0, 0, 0, 7374, 7367, 1, 0, 0, 0, 7374, 7368, 1, 0, 0, 0, 7375, 713, 1, 0, 0, 0, 7376, 7377, 5, 414, 0, 0, 7377, 7379, 5, 2, 0, 0, 7378, 7380, 3, 728, 364, 0, 7379, 7378, 1, 0, 0, 0, 7379, 7380, 1, 0, 0, 0, 7380, 7381, 1, 0, 0, 0, 7381, 7382, 5, 3, 0, 0, 7382, 715, 1, 0, 0, 0, 7383, 7384, 7, 105, 0, 0, 7384, 717, 1, 0, 0, 0, 7385, 7388, 5, 29, 0, 0, 7386, 7388, 3, 720, 360, 0, 7387, 7385, 1, 0, 0, 0, 7387, 7386, 1, 0, 0, 0, 7388, 719, 1, 0, 0, 0, 7389, 7390, 7, 106, 0, 0, 7390, 721, 1, 0, 0, 0, 7391, 7398, 5, 29, 0, 0, 7392, 7393, 5, 278, 0, 0, 7393, 7394, 5, 2, 0, 0, 7394, 7395, 3, 408, 204, 0, 7395, 7396, 5, 3, 0, 0, 7396, 7398, 1, 0, 0, 0, 7397, 7391, 1, 0, 0, 0, 7397, 7392, 1, 0, 0, 0, 7398, 723, 1, 0, 0, 0, 7399, 7406, 3, 718, 359, 0, 7400, 7401, 5, 278, 0, 0, 7401, 7402, 5, 2, 0, 0, 7402, 7403, 3, 408, 204, 0, 7403, 7404, 5, 3, 0, 0, 7404, 7406, 1, 0, 0, 0, 7405, 7399, 1, 0, 0, 0, 7405, 7400, 1, 0, 0, 0, 7406, 725, 1, 0, 0, 0, 7407, 7413, 3, 724, 362, 0, 7408, 7410, 5, 77, 0, 0, 7409, 7408, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 7411, 1, 0, 0, 0, 7411, 7413, 7, 107, 0, 0, 7412, 7407, 1, 0, 0, 0, 7412, 7409, 1, 0, 0, 0, 7413, 727, 1, 0, 0, 0, 7414, 7419, 3, 670, 335, 0, 7415, 7416, 5, 6, 0, 0, 7416, 7418, 3, 670, 335, 0, 7417, 7415, 1, 0, 0, 0, 7418, 7421, 1, 0, 0, 0, 7419, 7417, 1, 0, 0, 0, 7419, 7420, 1, 0, 0, 0, 7420, 729, 1, 0, 0, 0, 7421, 7419, 1, 0, 0, 0, 7422, 7423, 3, 670, 335, 0, 7423, 731, 1, 0, 0, 0, 7424, 7425, 3, 806, 403, 0, 7425, 733, 1, 0, 0, 0, 7426, 7427, 5, 2, 0, 0, 7427, 7428, 3, 670, 335, 0, 7428, 7429, 5, 3, 0, 0, 7429, 7432, 1, 0, 0, 0, 7430, 7432, 3, 806, 403, 0, 7431, 7426, 1, 0, 0, 0, 7431, 7430, 1, 0, 0, 0, 7432, 735, 1, 0, 0, 0, 7433, 7436, 3, 670, 335, 0, 7434, 7436, 3, 806, 403, 0, 7435, 7433, 1, 0, 0, 0, 7435, 7434, 1, 0, 0, 0, 7436, 737, 1, 0, 0, 0, 7437, 7442, 3, 740, 370, 0, 7438, 7439, 5, 6, 0, 0, 7439, 7441, 3, 740, 370, 0, 7440, 7438, 1, 0, 0, 0, 7441, 7444, 1, 0, 0, 0, 7442, 7440, 1, 0, 0, 0, 7442, 7443, 1, 0, 0, 0, 7443, 739, 1, 0, 0, 0, 7444, 7442, 1, 0, 0, 0, 7445, 7453, 3, 806, 403, 0, 7446, 7453, 3, 670, 335, 0, 7447, 7450, 3, 828, 414, 0, 7448, 7449, 7, 108, 0, 0, 7449, 7451, 3, 670, 335, 0, 7450, 7448, 1, 0, 0, 0, 7450, 7451, 1, 0, 0, 0, 7451, 7453, 1, 0, 0, 0, 7452, 7445, 1, 0, 0, 0, 7452, 7446, 1, 0, 0, 0, 7452, 7447, 1, 0, 0, 0, 7453, 741, 1, 0, 0, 0, 7454, 7464, 5, 4, 0, 0, 7455, 7465, 3, 728, 364, 0, 7456, 7461, 3, 742, 371, 0, 7457, 7458, 5, 6, 0, 0, 7458, 7460, 3, 742, 371, 0, 7459, 7457, 1, 0, 0, 0, 7460, 7463, 1, 0, 0, 0, 7461, 7459, 1, 0, 0, 0, 7461, 7462, 1, 0, 0, 0, 7462, 7465, 1, 0, 0, 0, 7463, 7461, 1, 0, 0, 0, 7464, 7455, 1, 0, 0, 0, 7464, 7456, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7466, 1, 0, 0, 0, 7466, 7467, 5, 5, 0, 0, 7467, 743, 1, 0, 0, 0, 7468, 7477, 3, 834, 417, 0, 7469, 7477, 5, 384, 0, 0, 7470, 7477, 5, 264, 0, 0, 7471, 7477, 5, 176, 0, 0, 7472, 7477, 5, 218, 0, 0, 7473, 7477, 5, 261, 0, 0, 7474, 7477, 5, 326, 0, 0, 7475, 7477, 3, 816, 408, 0, 7476, 7468, 1, 0, 0, 0, 7476, 7469, 1, 0, 0, 0, 7476, 7470, 1, 0, 0, 0, 7476, 7471, 1, 0, 0, 0, 7476, 7472, 1, 0, 0, 0, 7476, 7473, 1, 0, 0, 0, 7476, 7474, 1, 0, 0, 0, 7476, 7475, 1, 0, 0, 0, 7477, 745, 1, 0, 0, 0, 7478, 7479, 7, 109, 0, 0, 7479, 747, 1, 0, 0, 0, 7480, 7481, 3, 670, 335, 0, 7481, 7482, 5, 64, 0, 0, 7482, 7485, 3, 670, 335, 0, 7483, 7484, 5, 62, 0, 0, 7484, 7486, 3, 670, 335, 0, 7485, 7483, 1, 0, 0, 0, 7485, 7486, 1, 0, 0, 0, 7486, 7502, 1, 0, 0, 0, 7487, 7488, 3, 670, 335, 0, 7488, 7489, 5, 62, 0, 0, 7489, 7492, 3, 670, 335, 0, 7490, 7491, 5, 64, 0, 0, 7491, 7493, 3, 670, 335, 0, 7492, 7490, 1, 0, 0, 0, 7492, 7493, 1, 0, 0, 0, 7493, 7502, 1, 0, 0, 0, 7494, 7495, 3, 670, 335, 0, 7495, 7496, 5, 127, 0, 0, 7496, 7497, 3, 670, 335, 0, 7497, 7498, 5, 197, 0, 0, 7498, 7499, 3, 670, 335, 0, 7499, 7502, 1, 0, 0, 0, 7500, 7502, 3, 728, 364, 0, 7501, 7480, 1, 0, 0, 0, 7501, 7487, 1, 0, 0, 0, 7501, 7494, 1, 0, 0, 0, 7501, 7500, 1, 0, 0, 0, 7502, 749, 1, 0, 0, 0, 7503, 7504, 5, 102, 0, 0, 7504, 7505, 3, 670, 335, 0, 7505, 7506, 5, 93, 0, 0, 7506, 7507, 3, 670, 335, 0, 7507, 751, 1, 0, 0, 0, 7508, 7511, 5, 11, 0, 0, 7509, 7512, 3, 832, 416, 0, 7510, 7512, 5, 9, 0, 0, 7511, 7509, 1, 0, 0, 0, 7511, 7510, 1, 0, 0, 0, 7512, 7526, 1, 0, 0, 0, 7513, 7522, 5, 4, 0, 0, 7514, 7523, 3, 670, 335, 0, 7515, 7517, 3, 670, 335, 0, 7516, 7515, 1, 0, 0, 0, 7516, 7517, 1, 0, 0, 0, 7517, 7518, 1, 0, 0, 0, 7518, 7520, 5, 8, 0, 0, 7519, 7521, 3, 670, 335, 0, 7520, 7519, 1, 0, 0, 0, 7520, 7521, 1, 0, 0, 0, 7521, 7523, 1, 0, 0, 0, 7522, 7514, 1, 0, 0, 0, 7522, 7516, 1, 0, 0, 0, 7523, 7524, 1, 0, 0, 0, 7524, 7526, 5, 5, 0, 0, 7525, 7508, 1, 0, 0, 0, 7525, 7513, 1, 0, 0, 0, 7526, 753, 1, 0, 0, 0, 7527, 7529, 3, 752, 376, 0, 7528, 7527, 1, 0, 0, 0, 7529, 7530, 1, 0, 0, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7531, 1, 0, 0, 0, 7531, 755, 1, 0, 0, 0, 7532, 7534, 3, 752, 376, 0, 7533, 7532, 1, 0, 0, 0, 7534, 7537, 1, 0, 0, 0, 7535, 7533, 1, 0, 0, 0, 7535, 7536, 1, 0, 0, 0, 7536, 757, 1, 0, 0, 0, 7537, 7535, 1, 0, 0, 0, 7538, 7543, 3, 760, 380, 0, 7539, 7540, 5, 6, 0, 0, 7540, 7542, 3, 760, 380, 0, 7541, 7539, 1, 0, 0, 0, 7542, 7545, 1, 0, 0, 0, 7543, 7541, 1, 0, 0, 0, 7543, 7544, 1, 0, 0, 0, 7544, 759, 1, 0, 0, 0, 7545, 7543, 1, 0, 0, 0, 7546, 7559, 3, 762, 381, 0, 7547, 7550, 3, 732, 366, 0, 7548, 7550, 3, 730, 365, 0, 7549, 7547, 1, 0, 0, 0, 7549, 7548, 1, 0, 0, 0, 7550, 7556, 1, 0, 0, 0, 7551, 7553, 5, 36, 0, 0, 7552, 7551, 1, 0, 0, 0, 7552, 7553, 1, 0, 0, 0, 7553, 7554, 1, 0, 0, 0, 7554, 7557, 3, 834, 417, 0, 7555, 7557, 1, 0, 0, 0, 7556, 7552, 1, 0, 0, 0, 7556, 7555, 1, 0, 0, 0, 7557, 7559, 1, 0, 0, 0, 7558, 7546, 1, 0, 0, 0, 7558, 7549, 1, 0, 0, 0, 7559, 761, 1, 0, 0, 0, 7560, 7561, 3, 826, 413, 0, 7561, 7562, 5, 11, 0, 0, 7562, 7564, 1, 0, 0, 0, 7563, 7560, 1, 0, 0, 0, 7564, 7567, 1, 0, 0, 0, 7565, 7563, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7568, 1, 0, 0, 0, 7567, 7565, 1, 0, 0, 0, 7568, 7569, 5, 9, 0, 0, 7569, 763, 1, 0, 0, 0, 7570, 7575, 3, 784, 392, 0, 7571, 7572, 5, 6, 0, 0, 7572, 7574, 3, 784, 392, 0, 7573, 7571, 1, 0, 0, 0, 7574, 7577, 1, 0, 0, 0, 7575, 7573, 1, 0, 0, 0, 7575, 7576, 1, 0, 0, 0, 7576, 765, 1, 0, 0, 0, 7577, 7575, 1, 0, 0, 0, 7578, 7583, 3, 778, 389, 0, 7579, 7580, 5, 6, 0, 0, 7580, 7582, 3, 778, 389, 0, 7581, 7579, 1, 0, 0, 0, 7582, 7585, 1, 0, 0, 0, 7583, 7581, 1, 0, 0, 0, 7583, 7584, 1, 0, 0, 0, 7584, 767, 1, 0, 0, 0, 7585, 7583, 1, 0, 0, 0, 7586, 7591, 3, 794, 397, 0, 7587, 7588, 5, 6, 0, 0, 7588, 7590, 3, 794, 397, 0, 7589, 7587, 1, 0, 0, 0, 7590, 7593, 1, 0, 0, 0, 7591, 7589, 1, 0, 0, 0, 7591, 7592, 1, 0, 0, 0, 7592, 769, 1, 0, 0, 0, 7593, 7591, 1, 0, 0, 0, 7594, 7599, 3, 792, 396, 0, 7595, 7596, 5, 6, 0, 0, 7596, 7598, 3, 792, 396, 0, 7597, 7595, 1, 0, 0, 0, 7598, 7601, 1, 0, 0, 0, 7599, 7597, 1, 0, 0, 0, 7599, 7600, 1, 0, 0, 0, 7600, 771, 1, 0, 0, 0, 7601, 7599, 1, 0, 0, 0, 7602, 7603, 3, 784, 392, 0, 7603, 773, 1, 0, 0, 0, 7604, 7605, 3, 784, 392, 0, 7605, 775, 1, 0, 0, 0, 7606, 7607, 3, 784, 392, 0, 7607, 777, 1, 0, 0, 0, 7608, 7609, 3, 784, 392, 0, 7609, 779, 1, 0, 0, 0, 7610, 7611, 3, 784, 392, 0, 7611, 781, 1, 0, 0, 0, 7612, 7613, 3, 310, 155, 0, 7613, 783, 1, 0, 0, 0, 7614, 7616, 3, 826, 413, 0, 7615, 7617, 3, 754, 377, 0, 7616, 7615, 1, 0, 0, 0, 7616, 7617, 1, 0, 0, 0, 7617, 785, 1, 0, 0, 0, 7618, 7623, 3, 774, 387, 0, 7619, 7620, 5, 6, 0, 0, 7620, 7622, 3, 774, 387, 0, 7621, 7619, 1, 0, 0, 0, 7622, 7625, 1, 0, 0, 0, 7623, 7621, 1, 0, 0, 0, 7623, 7624, 1, 0, 0, 0, 7624, 787, 1, 0, 0, 0, 7625, 7623, 1, 0, 0, 0, 7626, 7631, 3, 826, 413, 0, 7627, 7628, 5, 6, 0, 0, 7628, 7630, 3, 826, 413, 0, 7629, 7627, 1, 0, 0, 0, 7630, 7633, 1, 0, 0, 0, 7631, 7629, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 789, 1, 0, 0, 0, 7633, 7631, 1, 0, 0, 0, 7634, 7635, 3, 310, 155, 0, 7635, 791, 1, 0, 0, 0, 7636, 7637, 3, 310, 155, 0, 7637, 793, 1, 0, 0, 0, 7638, 7639, 3, 310, 155, 0, 7639, 795, 1, 0, 0, 0, 7640, 7641, 3, 826, 413, 0, 7641, 797, 1, 0, 0, 0, 7642, 7643, 3, 826, 413, 0, 7643, 799, 1, 0, 0, 0, 7644, 7649, 3, 828, 414, 0, 7645, 7646, 3, 826, 413, 0, 7646, 7647, 3, 754, 377, 0, 7647, 7649, 1, 0, 0, 0, 7648, 7644, 1, 0, 0, 0, 7648, 7645, 1, 0, 0, 0, 7649, 801, 1, 0, 0, 0, 7650, 7655, 3, 828, 414, 0, 7651, 7652, 3, 826, 413, 0, 7652, 7653, 3, 754, 377, 0, 7653, 7655, 1, 0, 0, 0, 7654, 7650, 1, 0, 0, 0, 7654, 7651, 1, 0, 0, 0, 7655, 803, 1, 0, 0, 0, 7656, 7657, 1, 0, 0, 0, 7657, 805, 1, 0, 0, 0, 7658, 7659, 3, 826, 413, 0, 7659, 7660, 3, 756, 378, 0, 7660, 7670, 1, 0, 0, 0, 7661, 7667, 4, 403, 10, 0, 7662, 7663, 3, 826, 413, 0, 7663, 7664, 5, 11, 0, 0, 7664, 7665, 3, 804, 402, 0, 7665, 7668, 1, 0, 0, 0, 7666, 7668, 3, 804, 402, 0, 7667, 7662, 1, 0, 0, 0, 7667, 7666, 1, 0, 0, 0, 7668, 7670, 1, 0, 0, 0, 7669, 7658, 1, 0, 0, 0, 7669, 7661, 1, 0, 0, 0, 7670, 807, 1, 0, 0, 0, 7671, 7672, 3, 826, 413, 0, 7672, 7673, 3, 756, 378, 0, 7673, 7683, 1, 0, 0, 0, 7674, 7680, 4, 404, 11, 0, 7675, 7676, 3, 826, 413, 0, 7676, 7677, 5, 11, 0, 0, 7677, 7678, 3, 804, 402, 0, 7678, 7681, 1, 0, 0, 0, 7679, 7681, 3, 804, 402, 0, 7680, 7675, 1, 0, 0, 0, 7680, 7679, 1, 0, 0, 0, 7681, 7683, 1, 0, 0, 0, 7682, 7671, 1, 0, 0, 0, 7682, 7674, 1, 0, 0, 0, 7683, 809, 1, 0, 0, 0, 7684, 7685, 3, 826, 413, 0, 7685, 811, 1, 0, 0, 0, 7686, 7691, 3, 828, 414, 0, 7687, 7688, 3, 826, 413, 0, 7688, 7689, 3, 754, 377, 0, 7689, 7691, 1, 0, 0, 0, 7690, 7686, 1, 0, 0, 0, 7690, 7687, 1, 0, 0, 0, 7691, 813, 1, 0, 0, 0, 7692, 7697, 3, 828, 414, 0, 7693, 7694, 3, 826, 413, 0, 7694, 7695, 3, 754, 377, 0, 7695, 7697, 1, 0, 0, 0, 7696, 7692, 1, 0, 0, 0, 7696, 7693, 1, 0, 0, 0, 7697, 815, 1, 0, 0, 0, 7698, 7701, 3, 818, 409, 0, 7699, 7700, 5, 487, 0, 0, 7700, 7702, 3, 818, 409, 0, 7701, 7699, 1, 0, 0, 0, 7701, 7702, 1, 0, 0, 0, 7702, 817, 1, 0, 0, 0, 7703, 7715, 5, 561, 0, 0, 7704, 7715, 5, 563, 0, 0, 7705, 7709, 5, 565, 0, 0, 7706, 7708, 5, 590, 0, 0, 7707, 7706, 1, 0, 0, 0, 7708, 7711, 1, 0, 0, 0, 7709, 7707, 1, 0, 0, 0, 7709, 7710, 1, 0, 0, 0, 7710, 7712, 1, 0, 0, 0, 7711, 7709, 1, 0, 0, 0, 7712, 7715, 5, 591, 0, 0, 7713, 7715, 5, 586, 0, 0, 7714, 7703, 1, 0, 0, 0, 7714, 7704, 1, 0, 0, 0, 7714, 7705, 1, 0, 0, 0, 7714, 7713, 1, 0, 0, 0, 7715, 819, 1, 0, 0, 0, 7716, 7718, 7, 30, 0, 0, 7717, 7716, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 7719, 1, 0, 0, 0, 7719, 7720, 5, 574, 0, 0, 7720, 821, 1, 0, 0, 0, 7721, 7727, 3, 830, 415, 0, 7722, 7727, 5, 52, 0, 0, 7723, 7727, 5, 49, 0, 0, 7724, 7727, 5, 89, 0, 0, 7725, 7727, 5, 524, 0, 0, 7726, 7721, 1, 0, 0, 0, 7726, 7722, 1, 0, 0, 0, 7726, 7723, 1, 0, 0, 0, 7726, 7724, 1, 0, 0, 0, 7726, 7725, 1, 0, 0, 0, 7727, 823, 1, 0, 0, 0, 7728, 7733, 3, 822, 411, 0, 7729, 7730, 5, 6, 0, 0, 7730, 7732, 3, 822, 411, 0, 7731, 7729, 1, 0, 0, 0, 7732, 7735, 1, 0, 0, 0, 7733, 7731, 1, 0, 0, 0, 7733, 7734, 1, 0, 0, 0, 7734, 825, 1, 0, 0, 0, 7735, 7733, 1, 0, 0, 0, 7736, 7739, 3, 834, 417, 0, 7737, 7739, 3, 838, 419, 0, 7738, 7736, 1, 0, 0, 0, 7738, 7737, 1, 0, 0, 0, 7739, 827, 1, 0, 0, 0, 7740, 7743, 3, 834, 417, 0, 7741, 7743, 3, 840, 420, 0, 7742, 7740, 1, 0, 0, 0, 7742, 7741, 1, 0, 0, 0, 7743, 829, 1, 0, 0, 0, 7744, 7748, 3, 834, 417, 0, 7745, 7748, 3, 838, 419, 0, 7746, 7748, 3, 840, 420, 0, 7747, 7744, 1, 0, 0, 0, 7747, 7745, 1, 0, 0, 0, 7747, 7746, 1, 0, 0, 0, 7748, 831, 1, 0, 0, 0, 7749, 7754, 3, 834, 417, 0, 7750, 7754, 3, 838, 419, 0, 7751, 7754, 3, 840, 420, 0, 7752, 7754, 3, 842, 421, 0, 7753, 7749, 1, 0, 0, 0, 7753, 7750, 1, 0, 0, 0, 7753, 7751, 1, 0, 0, 0, 7753, 7752, 1, 0, 0, 0, 7754, 833, 1, 0, 0, 0, 7755, 7758, 5, 552, 0, 0, 7756, 7757, 5, 487, 0, 0, 7757, 7759, 3, 818, 409, 0, 7758, 7756, 1, 0, 0, 0, 7758, 7759, 1, 0, 0, 0, 7759, 7767, 1, 0, 0, 0, 7760, 7767, 3, 816, 408, 0, 7761, 7767, 5, 553, 0, 0, 7762, 7767, 5, 557, 0, 0, 7763, 7767, 5, 577, 0, 0, 7764, 7767, 5, 578, 0, 0, 7765, 7767, 3, 836, 418, 0, 7766, 7755, 1, 0, 0, 0, 7766, 7760, 1, 0, 0, 0, 7766, 7761, 1, 0, 0, 0, 7766, 7762, 1, 0, 0, 0, 7766, 7763, 1, 0, 0, 0, 7766, 7764, 1, 0, 0, 0, 7766, 7765, 1, 0, 0, 0, 7767, 835, 1, 0, 0, 0, 7768, 7769, 7, 110, 0, 0, 7769, 837, 1, 0, 0, 0, 7770, 7822, 5, 387, 0, 0, 7771, 7822, 5, 388, 0, 0, 7772, 7822, 3, 658, 329, 0, 7773, 7822, 5, 390, 0, 0, 7774, 7822, 5, 391, 0, 0, 7775, 7822, 3, 660, 330, 0, 7776, 7822, 5, 393, 0, 0, 7777, 7822, 5, 394, 0, 0, 7778, 7822, 5, 395, 0, 0, 7779, 7822, 5, 396, 0, 0, 7780, 7822, 5, 397, 0, 0, 7781, 7822, 5, 398, 0, 0, 7782, 7822, 5, 399, 0, 0, 7783, 7822, 5, 470, 0, 0, 7784, 7822, 5, 400, 0, 0, 7785, 7822, 5, 401, 0, 0, 7786, 7822, 5, 402, 0, 0, 7787, 7822, 5, 403, 0, 0, 7788, 7822, 5, 404, 0, 0, 7789, 7822, 5, 405, 0, 0, 7790, 7822, 5, 406, 0, 0, 7791, 7822, 5, 407, 0, 0, 7792, 7822, 5, 489, 0, 0, 7793, 7822, 5, 408, 0, 0, 7794, 7822, 3, 654, 327, 0, 7795, 7822, 5, 453, 0, 0, 7796, 7822, 5, 410, 0, 0, 7797, 7822, 5, 411, 0, 0, 7798, 7822, 5, 412, 0, 0, 7799, 7822, 5, 413, 0, 0, 7800, 7822, 5, 414, 0, 0, 7801, 7822, 5, 415, 0, 0, 7802, 7822, 5, 416, 0, 0, 7803, 7822, 5, 417, 0, 0, 7804, 7822, 5, 418, 0, 0, 7805, 7822, 5, 419, 0, 0, 7806, 7822, 5, 420, 0, 0, 7807, 7822, 5, 421, 0, 0, 7808, 7822, 5, 422, 0, 0, 7809, 7822, 5, 423, 0, 0, 7810, 7822, 5, 424, 0, 0, 7811, 7822, 5, 425, 0, 0, 7812, 7822, 5, 426, 0, 0, 7813, 7822, 5, 427, 0, 0, 7814, 7822, 5, 428, 0, 0, 7815, 7822, 5, 476, 0, 0, 7816, 7822, 5, 429, 0, 0, 7817, 7822, 5, 430, 0, 0, 7818, 7822, 5, 431, 0, 0, 7819, 7822, 5, 432, 0, 0, 7820, 7822, 5, 474, 0, 0, 7821, 7770, 1, 0, 0, 0, 7821, 7771, 1, 0, 0, 0, 7821, 7772, 1, 0, 0, 0, 7821, 7773, 1, 0, 0, 0, 7821, 7774, 1, 0, 0, 0, 7821, 7775, 1, 0, 0, 0, 7821, 7776, 1, 0, 0, 0, 7821, 7777, 1, 0, 0, 0, 7821, 7778, 1, 0, 0, 0, 7821, 7779, 1, 0, 0, 0, 7821, 7780, 1, 0, 0, 0, 7821, 7781, 1, 0, 0, 0, 7821, 7782, 1, 0, 0, 0, 7821, 7783, 1, 0, 0, 0, 7821, 7784, 1, 0, 0, 0, 7821, 7785, 1, 0, 0, 0, 7821, 7786, 1, 0, 0, 0, 7821, 7787, 1, 0, 0, 0, 7821, 7788, 1, 0, 0, 0, 7821, 7789, 1, 0, 0, 0, 7821, 7790, 1, 0, 0, 0, 7821, 7791, 1, 0, 0, 0, 7821, 7792, 1, 0, 0, 0, 7821, 7793, 1, 0, 0, 0, 7821, 7794, 1, 0, 0, 0, 7821, 7795, 1, 0, 0, 0, 7821, 7796, 1, 0, 0, 0, 7821, 7797, 1, 0, 0, 0, 7821, 7798, 1, 0, 0, 0, 7821, 7799, 1, 0, 0, 0, 7821, 7800, 1, 0, 0, 0, 7821, 7801, 1, 0, 0, 0, 7821, 7802, 1, 0, 0, 0, 7821, 7803, 1, 0, 0, 0, 7821, 7804, 1, 0, 0, 0, 7821, 7805, 1, 0, 0, 0, 7821, 7806, 1, 0, 0, 0, 7821, 7807, 1, 0, 0, 0, 7821, 7808, 1, 0, 0, 0, 7821, 7809, 1, 0, 0, 0, 7821, 7810, 1, 0, 0, 0, 7821, 7811, 1, 0, 0, 0, 7821, 7812, 1, 0, 0, 0, 7821, 7813, 1, 0, 0, 0, 7821, 7814, 1, 0, 0, 0, 7821, 7815, 1, 0, 0, 0, 7821, 7816, 1, 0, 0, 0, 7821, 7817, 1, 0, 0, 0, 7821, 7818, 1, 0, 0, 0, 7821, 7819, 1, 0, 0, 0, 7821, 7820, 1, 0, 0, 0, 7822, 839, 1, 0, 0, 0, 7823, 7824, 7, 111, 0, 0, 7824, 841, 1, 0, 0, 0, 7825, 7826, 7, 112, 0, 0, 7826, 843, 1, 0, 0, 0, 7827, 7829, 3, 846, 423, 0, 7828, 7827, 1, 0, 0, 0, 7828, 7829, 1, 0, 0, 0, 7829, 7840, 1, 0, 0, 0, 7830, 7838, 5, 178, 0, 0, 7831, 7835, 3, 848, 424, 0, 7832, 7835, 5, 178, 0, 0, 7833, 7835, 3, 846, 423, 0, 7834, 7831, 1, 0, 0, 0, 7834, 7832, 1, 0, 0, 0, 7834, 7833, 1, 0, 0, 0, 7835, 7836, 1, 0, 0, 0, 7836, 7834, 1, 0, 0, 0, 7836, 7837, 1, 0, 0, 0, 7837, 7839, 1, 0, 0, 0, 7838, 7834, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7841, 1, 0, 0, 0, 7840, 7830, 1, 0, 0, 0, 7840, 7841, 1, 0, 0, 0, 7841, 7842, 1, 0, 0, 0, 7842, 7846, 5, 146, 0, 0, 7843, 7845, 3, 854, 427, 0, 7844, 7843, 1, 0, 0, 0, 7845, 7848, 1, 0, 0, 0, 7846, 7844, 1, 0, 0, 0, 7846, 7847, 1, 0, 0, 0, 7847, 7850, 1, 0, 0, 0, 7848, 7846, 1, 0, 0, 0, 7849, 7851, 3, 932, 466, 0, 7850, 7849, 1, 0, 0, 0, 7850, 7851, 1, 0, 0, 0, 7851, 7852, 1, 0, 0, 0, 7852, 7854, 5, 454, 0, 0, 7853, 7855, 3, 936, 468, 0, 7854, 7853, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 845, 1, 0, 0, 0, 7856, 7857, 5, 18, 0, 0, 7857, 7858, 3, 936, 468, 0, 7858, 7859, 5, 19, 0, 0, 7859, 847, 1, 0, 0, 0, 7860, 7907, 3, 936, 468, 0, 7861, 7862, 5, 496, 0, 0, 7862, 7865, 5, 62, 0, 0, 7863, 7866, 5, 28, 0, 0, 7864, 7866, 3, 826, 413, 0, 7865, 7863, 1, 0, 0, 0, 7865, 7864, 1, 0, 0, 0, 7866, 7908, 1, 0, 0, 0, 7867, 7869, 5, 497, 0, 0, 7868, 7867, 1, 0, 0, 0, 7868, 7869, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7872, 3, 648, 324, 0, 7871, 7873, 3, 90, 45, 0, 7872, 7871, 1, 0, 0, 0, 7872, 7873, 1, 0, 0, 0, 7873, 7876, 1, 0, 0, 0, 7874, 7875, 5, 77, 0, 0, 7875, 7877, 5, 78, 0, 0, 7876, 7874, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 7883, 1, 0, 0, 0, 7878, 7881, 3, 852, 426, 0, 7879, 7881, 5, 53, 0, 0, 7880, 7878, 1, 0, 0, 0, 7880, 7879, 1, 0, 0, 0, 7881, 7882, 1, 0, 0, 0, 7882, 7884, 3, 938, 469, 0, 7883, 7880, 1, 0, 0, 0, 7883, 7884, 1, 0, 0, 0, 7884, 7908, 1, 0, 0, 0, 7885, 7887, 5, 269, 0, 0, 7886, 7885, 1, 0, 0, 0, 7886, 7887, 1, 0, 0, 0, 7887, 7888, 1, 0, 0, 0, 7888, 7890, 5, 324, 0, 0, 7889, 7886, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7891, 1, 0, 0, 0, 7891, 7903, 5, 172, 0, 0, 7892, 7893, 5, 2, 0, 0, 7893, 7898, 3, 850, 425, 0, 7894, 7895, 5, 6, 0, 0, 7895, 7897, 3, 850, 425, 0, 7896, 7894, 1, 0, 0, 0, 7897, 7900, 1, 0, 0, 0, 7898, 7896, 1, 0, 0, 0, 7898, 7899, 1, 0, 0, 0, 7899, 7901, 1, 0, 0, 0, 7900, 7898, 1, 0, 0, 0, 7901, 7902, 5, 3, 0, 0, 7902, 7904, 1, 0, 0, 0, 7903, 7892, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 1, 0, 0, 0, 7905, 7906, 7, 113, 0, 0, 7906, 7908, 3, 554, 277, 0, 7907, 7861, 1, 0, 0, 0, 7907, 7868, 1, 0, 0, 0, 7907, 7889, 1, 0, 0, 0, 7908, 7909, 1, 0, 0, 0, 7909, 7910, 5, 7, 0, 0, 7910, 849, 1, 0, 0, 0, 7911, 7912, 3, 936, 468, 0, 7912, 7913, 3, 648, 324, 0, 7913, 851, 1, 0, 0, 0, 7914, 7915, 7, 114, 0, 0, 7915, 853, 1, 0, 0, 0, 7916, 7917, 3, 844, 422, 0, 7917, 7918, 5, 7, 0, 0, 7918, 7941, 1, 0, 0, 0, 7919, 7941, 3, 882, 441, 0, 7920, 7941, 3, 884, 442, 0, 7921, 7941, 3, 860, 430, 0, 7922, 7941, 3, 868, 434, 0, 7923, 7941, 3, 872, 436, 0, 7924, 7941, 3, 874, 437, 0, 7925, 7941, 3, 878, 439, 0, 7926, 7941, 3, 880, 440, 0, 7927, 7941, 3, 888, 444, 0, 7928, 7941, 3, 892, 446, 0, 7929, 7941, 3, 894, 447, 0, 7930, 7941, 3, 856, 428, 0, 7931, 7941, 3, 858, 429, 0, 7932, 7941, 3, 862, 431, 0, 7933, 7941, 3, 898, 449, 0, 7934, 7941, 3, 902, 451, 0, 7935, 7941, 3, 906, 453, 0, 7936, 7941, 3, 922, 461, 0, 7937, 7941, 3, 924, 462, 0, 7938, 7941, 3, 926, 463, 0, 7939, 7941, 3, 928, 464, 0, 7940, 7916, 1, 0, 0, 0, 7940, 7919, 1, 0, 0, 0, 7940, 7920, 1, 0, 0, 0, 7940, 7921, 1, 0, 0, 0, 7940, 7922, 1, 0, 0, 0, 7940, 7923, 1, 0, 0, 0, 7940, 7924, 1, 0, 0, 0, 7940, 7925, 1, 0, 0, 0, 7940, 7926, 1, 0, 0, 0, 7940, 7927, 1, 0, 0, 0, 7940, 7928, 1, 0, 0, 0, 7940, 7929, 1, 0, 0, 0, 7940, 7930, 1, 0, 0, 0, 7940, 7931, 1, 0, 0, 0, 7940, 7932, 1, 0, 0, 0, 7940, 7933, 1, 0, 0, 0, 7940, 7934, 1, 0, 0, 0, 7940, 7935, 1, 0, 0, 0, 7940, 7936, 1, 0, 0, 0, 7940, 7937, 1, 0, 0, 0, 7940, 7938, 1, 0, 0, 0, 7940, 7939, 1, 0, 0, 0, 7941, 855, 1, 0, 0, 0, 7942, 7943, 5, 498, 0, 0, 7943, 7944, 3, 938, 469, 0, 7944, 7945, 5, 7, 0, 0, 7945, 857, 1, 0, 0, 0, 7946, 7947, 5, 433, 0, 0, 7947, 7954, 3, 936, 468, 0, 7948, 7950, 5, 2, 0, 0, 7949, 7951, 3, 728, 364, 0, 7950, 7949, 1, 0, 0, 0, 7950, 7951, 1, 0, 0, 0, 7951, 7952, 1, 0, 0, 0, 7952, 7953, 5, 3, 0, 0, 7953, 7955, 5, 7, 0, 0, 7954, 7948, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7966, 1, 0, 0, 0, 7956, 7957, 5, 57, 0, 0, 7957, 7958, 3, 936, 468, 0, 7958, 7960, 5, 2, 0, 0, 7959, 7961, 3, 728, 364, 0, 7960, 7959, 1, 0, 0, 0, 7960, 7961, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7963, 5, 3, 0, 0, 7963, 7964, 5, 7, 0, 0, 7964, 7966, 1, 0, 0, 0, 7965, 7946, 1, 0, 0, 0, 7965, 7956, 1, 0, 0, 0, 7966, 859, 1, 0, 0, 0, 7967, 7968, 3, 866, 433, 0, 7968, 7969, 3, 852, 426, 0, 7969, 7970, 3, 938, 469, 0, 7970, 7971, 5, 7, 0, 0, 7971, 861, 1, 0, 0, 0, 7972, 7974, 5, 499, 0, 0, 7973, 7975, 7, 115, 0, 0, 7974, 7973, 1, 0, 0, 0, 7974, 7975, 1, 0, 0, 0, 7975, 7976, 1, 0, 0, 0, 7976, 7977, 5, 500, 0, 0, 7977, 7982, 3, 864, 432, 0, 7978, 7979, 5, 6, 0, 0, 7979, 7981, 3, 864, 432, 0, 7980, 7978, 1, 0, 0, 0, 7981, 7984, 1, 0, 0, 0, 7982, 7980, 1, 0, 0, 0, 7982, 7983, 1, 0, 0, 0, 7983, 7985, 1, 0, 0, 0, 7984, 7982, 1, 0, 0, 0, 7985, 7986, 5, 7, 0, 0, 7986, 863, 1, 0, 0, 0, 7987, 7988, 3, 866, 433, 0, 7988, 7989, 3, 852, 426, 0, 7989, 7990, 3, 826, 413, 0, 7990, 865, 1, 0, 0, 0, 7991, 7994, 3, 310, 155, 0, 7992, 7994, 5, 28, 0, 0, 7993, 7991, 1, 0, 0, 0, 7993, 7992, 1, 0, 0, 0, 7994, 8001, 1, 0, 0, 0, 7995, 7996, 5, 4, 0, 0, 7996, 7997, 3, 670, 335, 0, 7997, 7998, 5, 5, 0, 0, 7998, 8000, 1, 0, 0, 0, 7999, 7995, 1, 0, 0, 0, 8000, 8003, 1, 0, 0, 0, 8001, 7999, 1, 0, 0, 0, 8001, 8002, 1, 0, 0, 0, 8002, 867, 1, 0, 0, 0, 8003, 8001, 1, 0, 0, 0, 8004, 8005, 5, 220, 0, 0, 8005, 8006, 3, 938, 469, 0, 8006, 8010, 5, 93, 0, 0, 8007, 8009, 3, 854, 427, 0, 8008, 8007, 1, 0, 0, 0, 8009, 8012, 1, 0, 0, 0, 8010, 8008, 1, 0, 0, 0, 8010, 8011, 1, 0, 0, 0, 8011, 8024, 1, 0, 0, 0, 8012, 8010, 1, 0, 0, 0, 8013, 8014, 5, 502, 0, 0, 8014, 8015, 3, 670, 335, 0, 8015, 8019, 5, 93, 0, 0, 8016, 8018, 3, 854, 427, 0, 8017, 8016, 1, 0, 0, 0, 8018, 8021, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 8023, 1, 0, 0, 0, 8021, 8019, 1, 0, 0, 0, 8022, 8013, 1, 0, 0, 0, 8023, 8026, 1, 0, 0, 0, 8024, 8022, 1, 0, 0, 0, 8024, 8025, 1, 0, 0, 0, 8025, 8028, 1, 0, 0, 0, 8026, 8024, 1, 0, 0, 0, 8027, 8029, 3, 870, 435, 0, 8028, 8027, 1, 0, 0, 0, 8028, 8029, 1, 0, 0, 0, 8029, 8030, 1, 0, 0, 0, 8030, 8031, 5, 454, 0, 0, 8031, 8032, 5, 220, 0, 0, 8032, 8033, 5, 7, 0, 0, 8033, 869, 1, 0, 0, 0, 8034, 8038, 5, 58, 0, 0, 8035, 8037, 3, 854, 427, 0, 8036, 8035, 1, 0, 0, 0, 8037, 8040, 1, 0, 0, 0, 8038, 8036, 1, 0, 0, 0, 8038, 8039, 1, 0, 0, 0, 8039, 871, 1, 0, 0, 0, 8040, 8038, 1, 0, 0, 0, 8041, 8043, 5, 40, 0, 0, 8042, 8044, 3, 938, 469, 0, 8043, 8042, 1, 0, 0, 0, 8043, 8044, 1, 0, 0, 0, 8044, 8054, 1, 0, 0, 0, 8045, 8046, 5, 102, 0, 0, 8046, 8047, 3, 728, 364, 0, 8047, 8051, 5, 93, 0, 0, 8048, 8050, 3, 854, 427, 0, 8049, 8048, 1, 0, 0, 0, 8050, 8053, 1, 0, 0, 0, 8051, 8049, 1, 0, 0, 0, 8051, 8052, 1, 0, 0, 0, 8052, 8055, 1, 0, 0, 0, 8053, 8051, 1, 0, 0, 0, 8054, 8045, 1, 0, 0, 0, 8055, 8056, 1, 0, 0, 0, 8056, 8054, 1, 0, 0, 0, 8056, 8057, 1, 0, 0, 0, 8057, 8059, 1, 0, 0, 0, 8058, 8060, 3, 870, 435, 0, 8059, 8058, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8061, 1, 0, 0, 0, 8061, 8062, 5, 454, 0, 0, 8062, 8063, 5, 40, 0, 0, 8063, 8064, 5, 7, 0, 0, 8064, 873, 1, 0, 0, 0, 8065, 8067, 3, 846, 423, 0, 8066, 8065, 1, 0, 0, 0, 8066, 8067, 1, 0, 0, 0, 8067, 8072, 1, 0, 0, 0, 8068, 8069, 5, 503, 0, 0, 8069, 8073, 3, 670, 335, 0, 8070, 8071, 5, 62, 0, 0, 8071, 8073, 3, 876, 438, 0, 8072, 8068, 1, 0, 0, 0, 8072, 8070, 1, 0, 0, 0, 8072, 8073, 1, 0, 0, 0, 8073, 8074, 1, 0, 0, 0, 8074, 8075, 3, 890, 445, 0, 8075, 875, 1, 0, 0, 0, 8076, 8077, 3, 308, 154, 0, 8077, 8100, 5, 68, 0, 0, 8078, 8080, 3, 826, 413, 0, 8079, 8081, 3, 528, 264, 0, 8080, 8079, 1, 0, 0, 0, 8080, 8081, 1, 0, 0, 0, 8081, 8101, 1, 0, 0, 0, 8082, 8101, 3, 554, 277, 0, 8083, 8101, 3, 514, 257, 0, 8084, 8085, 5, 202, 0, 0, 8085, 8088, 3, 670, 335, 0, 8086, 8087, 5, 100, 0, 0, 8087, 8089, 3, 728, 364, 0, 8088, 8086, 1, 0, 0, 0, 8088, 8089, 1, 0, 0, 0, 8089, 8101, 1, 0, 0, 0, 8090, 8092, 5, 504, 0, 0, 8091, 8090, 1, 0, 0, 0, 8091, 8092, 1, 0, 0, 0, 8092, 8093, 1, 0, 0, 0, 8093, 8094, 3, 670, 335, 0, 8094, 8095, 5, 24, 0, 0, 8095, 8098, 3, 670, 335, 0, 8096, 8097, 5, 147, 0, 0, 8097, 8099, 3, 670, 335, 0, 8098, 8096, 1, 0, 0, 0, 8098, 8099, 1, 0, 0, 0, 8099, 8101, 1, 0, 0, 0, 8100, 8078, 1, 0, 0, 0, 8100, 8082, 1, 0, 0, 0, 8100, 8083, 1, 0, 0, 0, 8100, 8084, 1, 0, 0, 0, 8100, 8091, 1, 0, 0, 0, 8101, 877, 1, 0, 0, 0, 8102, 8104, 3, 846, 423, 0, 8103, 8102, 1, 0, 0, 0, 8103, 8104, 1, 0, 0, 0, 8104, 8105, 1, 0, 0, 0, 8105, 8106, 5, 505, 0, 0, 8106, 8109, 3, 308, 154, 0, 8107, 8108, 5, 506, 0, 0, 8108, 8110, 5, 574, 0, 0, 8109, 8107, 1, 0, 0, 0, 8109, 8110, 1, 0, 0, 0, 8110, 8111, 1, 0, 0, 0, 8111, 8112, 5, 68, 0, 0, 8112, 8113, 5, 35, 0, 0, 8113, 8114, 3, 670, 335, 0, 8114, 8115, 3, 890, 445, 0, 8115, 879, 1, 0, 0, 0, 8116, 8118, 7, 116, 0, 0, 8117, 8119, 3, 936, 468, 0, 8118, 8117, 1, 0, 0, 0, 8118, 8119, 1, 0, 0, 0, 8119, 8122, 1, 0, 0, 0, 8120, 8121, 5, 102, 0, 0, 8121, 8123, 3, 938, 469, 0, 8122, 8120, 1, 0, 0, 0, 8122, 8123, 1, 0, 0, 0, 8123, 8124, 1, 0, 0, 0, 8124, 8125, 5, 7, 0, 0, 8125, 881, 1, 0, 0, 0, 8126, 8141, 5, 508, 0, 0, 8127, 8128, 5, 268, 0, 0, 8128, 8142, 3, 938, 469, 0, 8129, 8136, 5, 509, 0, 0, 8130, 8131, 5, 202, 0, 0, 8131, 8132, 3, 670, 335, 0, 8132, 8133, 5, 100, 0, 0, 8133, 8134, 3, 728, 364, 0, 8134, 8137, 1, 0, 0, 0, 8135, 8137, 3, 554, 277, 0, 8136, 8130, 1, 0, 0, 0, 8136, 8135, 1, 0, 0, 0, 8137, 8142, 1, 0, 0, 0, 8138, 8140, 3, 938, 469, 0, 8139, 8138, 1, 0, 0, 0, 8139, 8140, 1, 0, 0, 0, 8140, 8142, 1, 0, 0, 0, 8141, 8127, 1, 0, 0, 0, 8141, 8129, 1, 0, 0, 0, 8141, 8139, 1, 0, 0, 0, 8142, 8143, 1, 0, 0, 0, 8143, 8144, 5, 7, 0, 0, 8144, 883, 1, 0, 0, 0, 8145, 8175, 5, 510, 0, 0, 8146, 8148, 7, 117, 0, 0, 8147, 8146, 1, 0, 0, 0, 8147, 8148, 1, 0, 0, 0, 8148, 8161, 1, 0, 0, 0, 8149, 8162, 3, 834, 417, 0, 8150, 8151, 5, 511, 0, 0, 8151, 8162, 3, 816, 408, 0, 8152, 8159, 3, 816, 408, 0, 8153, 8154, 5, 6, 0, 0, 8154, 8156, 3, 670, 335, 0, 8155, 8153, 1, 0, 0, 0, 8156, 8157, 1, 0, 0, 0, 8157, 8155, 1, 0, 0, 0, 8157, 8158, 1, 0, 0, 0, 8158, 8160, 1, 0, 0, 0, 8159, 8155, 1, 0, 0, 0, 8159, 8160, 1, 0, 0, 0, 8160, 8162, 1, 0, 0, 0, 8161, 8149, 1, 0, 0, 0, 8161, 8150, 1, 0, 0, 0, 8161, 8152, 1, 0, 0, 0, 8161, 8162, 1, 0, 0, 0, 8162, 8172, 1, 0, 0, 0, 8163, 8164, 5, 100, 0, 0, 8164, 8169, 3, 886, 443, 0, 8165, 8166, 5, 6, 0, 0, 8166, 8168, 3, 886, 443, 0, 8167, 8165, 1, 0, 0, 0, 8168, 8171, 1, 0, 0, 0, 8169, 8167, 1, 0, 0, 0, 8169, 8170, 1, 0, 0, 0, 8170, 8173, 1, 0, 0, 0, 8171, 8169, 1, 0, 0, 0, 8172, 8163, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8174, 1, 0, 0, 0, 8174, 8176, 5, 7, 0, 0, 8175, 8147, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 885, 1, 0, 0, 0, 8177, 8178, 3, 834, 417, 0, 8178, 8179, 5, 10, 0, 0, 8179, 8180, 3, 670, 335, 0, 8180, 887, 1, 0, 0, 0, 8181, 8182, 5, 518, 0, 0, 8182, 8185, 3, 938, 469, 0, 8183, 8184, 5, 6, 0, 0, 8184, 8186, 3, 938, 469, 0, 8185, 8183, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8188, 5, 7, 0, 0, 8188, 889, 1, 0, 0, 0, 8189, 8193, 5, 519, 0, 0, 8190, 8192, 3, 854, 427, 0, 8191, 8190, 1, 0, 0, 0, 8192, 8195, 1, 0, 0, 0, 8193, 8191, 1, 0, 0, 0, 8193, 8194, 1, 0, 0, 0, 8194, 8196, 1, 0, 0, 0, 8195, 8193, 1, 0, 0, 0, 8196, 8197, 5, 454, 0, 0, 8197, 8199, 5, 519, 0, 0, 8198, 8200, 3, 936, 468, 0, 8199, 8198, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8201, 1, 0, 0, 0, 8201, 8202, 5, 7, 0, 0, 8202, 891, 1, 0, 0, 0, 8203, 8205, 3, 4, 2, 0, 8204, 8206, 3, 896, 448, 0, 8205, 8204, 1, 0, 0, 0, 8205, 8206, 1, 0, 0, 0, 8206, 8207, 1, 0, 0, 0, 8207, 8208, 5, 7, 0, 0, 8208, 893, 1, 0, 0, 0, 8209, 8210, 5, 202, 0, 0, 8210, 8226, 3, 670, 335, 0, 8211, 8213, 3, 896, 448, 0, 8212, 8211, 1, 0, 0, 0, 8212, 8213, 1, 0, 0, 0, 8213, 8216, 1, 0, 0, 0, 8214, 8215, 5, 100, 0, 0, 8215, 8217, 3, 728, 364, 0, 8216, 8214, 1, 0, 0, 0, 8216, 8217, 1, 0, 0, 0, 8217, 8227, 1, 0, 0, 0, 8218, 8219, 5, 100, 0, 0, 8219, 8221, 3, 728, 364, 0, 8220, 8218, 1, 0, 0, 0, 8220, 8221, 1, 0, 0, 0, 8221, 8223, 1, 0, 0, 0, 8222, 8224, 3, 896, 448, 0, 8223, 8222, 1, 0, 0, 0, 8223, 8224, 1, 0, 0, 0, 8224, 8227, 1, 0, 0, 0, 8225, 8227, 1, 0, 0, 0, 8226, 8212, 1, 0, 0, 0, 8226, 8220, 1, 0, 0, 0, 8226, 8225, 1, 0, 0, 0, 8227, 8228, 1, 0, 0, 0, 8228, 8229, 5, 7, 0, 0, 8229, 895, 1, 0, 0, 0, 8230, 8232, 5, 71, 0, 0, 8231, 8233, 5, 346, 0, 0, 8232, 8231, 1, 0, 0, 0, 8232, 8233, 1, 0, 0, 0, 8233, 8234, 1, 0, 0, 0, 8234, 8235, 3, 728, 364, 0, 8235, 897, 1, 0, 0, 0, 8236, 8268, 5, 520, 0, 0, 8237, 8242, 3, 930, 465, 0, 8238, 8240, 5, 269, 0, 0, 8239, 8238, 1, 0, 0, 0, 8239, 8240, 1, 0, 0, 0, 8240, 8241, 1, 0, 0, 0, 8241, 8243, 5, 324, 0, 0, 8242, 8239, 1, 0, 0, 0, 8242, 8243, 1, 0, 0, 0, 8243, 8244, 1, 0, 0, 0, 8244, 8252, 5, 62, 0, 0, 8245, 8253, 3, 554, 277, 0, 8246, 8247, 5, 202, 0, 0, 8247, 8250, 3, 938, 469, 0, 8248, 8249, 5, 100, 0, 0, 8249, 8251, 3, 728, 364, 0, 8250, 8248, 1, 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 8253, 1, 0, 0, 0, 8252, 8245, 1, 0, 0, 0, 8252, 8246, 1, 0, 0, 0, 8253, 8269, 1, 0, 0, 0, 8254, 8266, 3, 826, 413, 0, 8255, 8256, 5, 2, 0, 0, 8256, 8261, 3, 900, 450, 0, 8257, 8258, 5, 6, 0, 0, 8258, 8260, 3, 900, 450, 0, 8259, 8257, 1, 0, 0, 0, 8260, 8263, 1, 0, 0, 0, 8261, 8259, 1, 0, 0, 0, 8261, 8262, 1, 0, 0, 0, 8262, 8264, 1, 0, 0, 0, 8263, 8261, 1, 0, 0, 0, 8264, 8265, 5, 3, 0, 0, 8265, 8267, 1, 0, 0, 0, 8266, 8255, 1, 0, 0, 0, 8266, 8267, 1, 0, 0, 0, 8267, 8269, 1, 0, 0, 0, 8268, 8237, 1, 0, 0, 0, 8268, 8254, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8271, 5, 7, 0, 0, 8271, 899, 1, 0, 0, 0, 8272, 8273, 3, 826, 413, 0, 8273, 8274, 5, 20, 0, 0, 8274, 8276, 1, 0, 0, 0, 8275, 8272, 1, 0, 0, 0, 8275, 8276, 1, 0, 0, 0, 8276, 8277, 1, 0, 0, 0, 8277, 8278, 3, 670, 335, 0, 8278, 901, 1, 0, 0, 0, 8279, 8281, 5, 61, 0, 0, 8280, 8282, 3, 904, 452, 0, 8281, 8280, 1, 0, 0, 0, 8281, 8282, 1, 0, 0, 0, 8282, 8284, 1, 0, 0, 0, 8283, 8285, 3, 326, 163, 0, 8284, 8283, 1, 0, 0, 0, 8284, 8285, 1, 0, 0, 0, 8285, 8286, 1, 0, 0, 0, 8286, 8287, 3, 930, 465, 0, 8287, 8288, 5, 71, 0, 0, 8288, 8289, 3, 728, 364, 0, 8289, 8290, 5, 7, 0, 0, 8290, 903, 1, 0, 0, 0, 8291, 8306, 5, 268, 0, 0, 8292, 8306, 5, 293, 0, 0, 8293, 8306, 5, 207, 0, 0, 8294, 8306, 5, 249, 0, 0, 8295, 8297, 7, 51, 0, 0, 8296, 8295, 1, 0, 0, 0, 8296, 8297, 1, 0, 0, 0, 8297, 8298, 1, 0, 0, 0, 8298, 8306, 3, 670, 335, 0, 8299, 8306, 5, 30, 0, 0, 8300, 8303, 7, 118, 0, 0, 8301, 8304, 3, 670, 335, 0, 8302, 8304, 5, 30, 0, 0, 8303, 8301, 1, 0, 0, 0, 8303, 8302, 1, 0, 0, 0, 8303, 8304, 1, 0, 0, 0, 8304, 8306, 1, 0, 0, 0, 8305, 8291, 1, 0, 0, 0, 8305, 8292, 1, 0, 0, 0, 8305, 8293, 1, 0, 0, 0, 8305, 8294, 1, 0, 0, 0, 8305, 8296, 1, 0, 0, 0, 8305, 8299, 1, 0, 0, 0, 8305, 8300, 1, 0, 0, 0, 8306, 905, 1, 0, 0, 0, 8307, 8309, 5, 265, 0, 0, 8308, 8310, 3, 904, 452, 0, 8309, 8308, 1, 0, 0, 0, 8309, 8310, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8312, 3, 930, 465, 0, 8312, 8313, 5, 7, 0, 0, 8313, 907, 1, 0, 0, 0, 8314, 8316, 3, 566, 283, 0, 8315, 8314, 1, 0, 0, 0, 8315, 8316, 1, 0, 0, 0, 8316, 8317, 1, 0, 0, 0, 8317, 8318, 5, 525, 0, 0, 8318, 8320, 5, 71, 0, 0, 8319, 8321, 5, 81, 0, 0, 8320, 8319, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 8324, 3, 778, 389, 0, 8323, 8325, 5, 9, 0, 0, 8324, 8323, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8330, 1, 0, 0, 0, 8326, 8328, 5, 36, 0, 0, 8327, 8326, 1, 0, 0, 0, 8327, 8328, 1, 0, 0, 0, 8328, 8329, 1, 0, 0, 0, 8329, 8331, 3, 826, 413, 0, 8330, 8327, 1, 0, 0, 0, 8330, 8331, 1, 0, 0, 0, 8331, 8332, 1, 0, 0, 0, 8332, 8333, 5, 100, 0, 0, 8333, 8334, 3, 910, 455, 0, 8334, 8335, 5, 80, 0, 0, 8335, 8337, 3, 670, 335, 0, 8336, 8338, 3, 912, 456, 0, 8337, 8336, 1, 0, 0, 0, 8338, 8339, 1, 0, 0, 0, 8339, 8337, 1, 0, 0, 0, 8339, 8340, 1, 0, 0, 0, 8340, 8342, 1, 0, 0, 0, 8341, 8343, 3, 540, 270, 0, 8342, 8341, 1, 0, 0, 0, 8342, 8343, 1, 0, 0, 0, 8343, 909, 1, 0, 0, 0, 8344, 8346, 5, 81, 0, 0, 8345, 8344, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8349, 3, 778, 389, 0, 8348, 8350, 5, 9, 0, 0, 8349, 8348, 1, 0, 0, 0, 8349, 8350, 1, 0, 0, 0, 8350, 8356, 1, 0, 0, 0, 8351, 8354, 3, 558, 279, 0, 8352, 8354, 3, 602, 301, 0, 8353, 8351, 1, 0, 0, 0, 8353, 8352, 1, 0, 0, 0, 8354, 8356, 1, 0, 0, 0, 8355, 8345, 1, 0, 0, 0, 8355, 8353, 1, 0, 0, 0, 8356, 8361, 1, 0, 0, 0, 8357, 8359, 5, 36, 0, 0, 8358, 8357, 1, 0, 0, 0, 8358, 8359, 1, 0, 0, 0, 8359, 8360, 1, 0, 0, 0, 8360, 8362, 3, 826, 413, 0, 8361, 8358, 1, 0, 0, 0, 8361, 8362, 1, 0, 0, 0, 8362, 911, 1, 0, 0, 0, 8363, 8364, 5, 102, 0, 0, 8364, 8367, 5, 526, 0, 0, 8365, 8366, 5, 33, 0, 0, 8366, 8368, 3, 670, 335, 0, 8367, 8365, 1, 0, 0, 0, 8367, 8368, 1, 0, 0, 0, 8368, 8369, 1, 0, 0, 0, 8369, 8374, 5, 93, 0, 0, 8370, 8375, 3, 916, 458, 0, 8371, 8375, 5, 182, 0, 0, 8372, 8373, 5, 57, 0, 0, 8373, 8375, 5, 270, 0, 0, 8374, 8370, 1, 0, 0, 0, 8374, 8371, 1, 0, 0, 0, 8374, 8372, 1, 0, 0, 0, 8375, 8390, 1, 0, 0, 0, 8376, 8377, 5, 102, 0, 0, 8377, 8378, 5, 77, 0, 0, 8378, 8381, 5, 526, 0, 0, 8379, 8380, 5, 33, 0, 0, 8380, 8382, 3, 670, 335, 0, 8381, 8379, 1, 0, 0, 0, 8381, 8382, 1, 0, 0, 0, 8382, 8383, 1, 0, 0, 0, 8383, 8387, 5, 93, 0, 0, 8384, 8388, 3, 914, 457, 0, 8385, 8386, 5, 57, 0, 0, 8386, 8388, 5, 270, 0, 0, 8387, 8384, 1, 0, 0, 0, 8387, 8385, 1, 0, 0, 0, 8388, 8390, 1, 0, 0, 0, 8389, 8363, 1, 0, 0, 0, 8389, 8376, 1, 0, 0, 0, 8390, 913, 1, 0, 0, 0, 8391, 8393, 5, 241, 0, 0, 8392, 8394, 3, 138, 69, 0, 8393, 8392, 1, 0, 0, 0, 8393, 8394, 1, 0, 0, 0, 8394, 8398, 1, 0, 0, 0, 8395, 8396, 5, 463, 0, 0, 8396, 8397, 7, 77, 0, 0, 8397, 8399, 5, 450, 0, 0, 8398, 8395, 1, 0, 0, 0, 8398, 8399, 1, 0, 0, 0, 8399, 8400, 1, 0, 0, 0, 8400, 8401, 3, 918, 459, 0, 8401, 915, 1, 0, 0, 0, 8402, 8403, 5, 369, 0, 0, 8403, 8421, 5, 333, 0, 0, 8404, 8405, 3, 806, 403, 0, 8405, 8406, 5, 10, 0, 0, 8406, 8407, 3, 920, 460, 0, 8407, 8422, 1, 0, 0, 0, 8408, 8409, 3, 138, 69, 0, 8409, 8410, 5, 10, 0, 0, 8410, 8411, 5, 2, 0, 0, 8411, 8416, 3, 920, 460, 0, 8412, 8413, 5, 6, 0, 0, 8413, 8415, 3, 920, 460, 0, 8414, 8412, 1, 0, 0, 0, 8415, 8418, 1, 0, 0, 0, 8416, 8414, 1, 0, 0, 0, 8416, 8417, 1, 0, 0, 0, 8417, 8419, 1, 0, 0, 0, 8418, 8416, 1, 0, 0, 0, 8419, 8420, 5, 3, 0, 0, 8420, 8422, 1, 0, 0, 0, 8421, 8404, 1, 0, 0, 0, 8421, 8408, 1, 0, 0, 0, 8422, 8423, 1, 0, 0, 0, 8423, 8421, 1, 0, 0, 0, 8423, 8424, 1, 0, 0, 0, 8424, 917, 1, 0, 0, 0, 8425, 8426, 5, 422, 0, 0, 8426, 8427, 5, 2, 0, 0, 8427, 8432, 3, 920, 460, 0, 8428, 8429, 5, 6, 0, 0, 8429, 8431, 3, 920, 460, 0, 8430, 8428, 1, 0, 0, 0, 8431, 8434, 1, 0, 0, 0, 8432, 8430, 1, 0, 0, 0, 8432, 8433, 1, 0, 0, 0, 8433, 8435, 1, 0, 0, 0, 8434, 8432, 1, 0, 0, 0, 8435, 8436, 5, 3, 0, 0, 8436, 8440, 1, 0, 0, 0, 8437, 8438, 5, 53, 0, 0, 8438, 8440, 5, 422, 0, 0, 8439, 8425, 1, 0, 0, 0, 8439, 8437, 1, 0, 0, 0, 8440, 919, 1, 0, 0, 0, 8441, 8444, 3, 582, 291, 0, 8442, 8444, 5, 53, 0, 0, 8443, 8441, 1, 0, 0, 0, 8443, 8442, 1, 0, 0, 0, 8444, 921, 1, 0, 0, 0, 8445, 8446, 5, 157, 0, 0, 8446, 8447, 3, 930, 465, 0, 8447, 8448, 5, 7, 0, 0, 8448, 923, 1, 0, 0, 0, 8449, 8450, 5, 78, 0, 0, 8450, 8451, 5, 7, 0, 0, 8451, 925, 1, 0, 0, 0, 8452, 8458, 7, 68, 0, 0, 8453, 8455, 5, 33, 0, 0, 8454, 8456, 5, 269, 0, 0, 8455, 8454, 1, 0, 0, 0, 8455, 8456, 1, 0, 0, 0, 8456, 8457, 1, 0, 0, 0, 8457, 8459, 5, 153, 0, 0, 8458, 8453, 1, 0, 0, 0, 8458, 8459, 1, 0, 0, 0, 8459, 8460, 1, 0, 0, 0, 8460, 8461, 5, 7, 0, 0, 8461, 927, 1, 0, 0, 0, 8462, 8463, 5, 333, 0, 0, 8463, 8464, 3, 310, 155, 0, 8464, 8465, 5, 94, 0, 0, 8465, 8466, 5, 53, 0, 0, 8466, 8467, 5, 7, 0, 0, 8467, 8475, 1, 0, 0, 0, 8468, 8471, 5, 313, 0, 0, 8469, 8472, 3, 310, 155, 0, 8470, 8472, 5, 30, 0, 0, 8471, 8469, 1, 0, 0, 0, 8471, 8470, 1, 0, 0, 0, 8472, 8473, 1, 0, 0, 0, 8473, 8475, 5, 7, 0, 0, 8474, 8462, 1, 0, 0, 0, 8474, 8468, 1, 0, 0, 0, 8475, 929, 1, 0, 0, 0, 8476, 8479, 3, 826, 413, 0, 8477, 8479, 5, 28, 0, 0, 8478, 8476, 1, 0, 0, 0, 8478, 8477, 1, 0, 0, 0, 8479, 931, 1, 0, 0, 0, 8480, 8497, 5, 517, 0, 0, 8481, 8482, 5, 102, 0, 0, 8482, 8487, 3, 934, 467, 0, 8483, 8484, 5, 82, 0, 0, 8484, 8486, 3, 934, 467, 0, 8485, 8483, 1, 0, 0, 0, 8486, 8489, 1, 0, 0, 0, 8487, 8485, 1, 0, 0, 0, 8487, 8488, 1, 0, 0, 0, 8488, 8490, 1, 0, 0, 0, 8489, 8487, 1, 0, 0, 0, 8490, 8494, 5, 93, 0, 0, 8491, 8493, 3, 854, 427, 0, 8492, 8491, 1, 0, 0, 0, 8493, 8496, 1, 0, 0, 0, 8494, 8492, 1, 0, 0, 0, 8494, 8495, 1, 0, 0, 0, 8495, 8498, 1, 0, 0, 0, 8496, 8494, 1, 0, 0, 0, 8497, 8481, 1, 0, 0, 0, 8498, 8499, 1, 0, 0, 0, 8499, 8497, 1, 0, 0, 0, 8499, 8500, 1, 0, 0, 0, 8500, 933, 1, 0, 0, 0, 8501, 8505, 3, 936, 468, 0, 8502, 8503, 5, 511, 0, 0, 8503, 8505, 3, 816, 408, 0, 8504, 8501, 1, 0, 0, 0, 8504, 8502, 1, 0, 0, 0, 8505, 935, 1, 0, 0, 0, 8506, 8509, 3, 826, 413, 0, 8507, 8509, 3, 836, 418, 0, 8508, 8506, 1, 0, 0, 0, 8508, 8507, 1, 0, 0, 0, 8509, 937, 1, 0, 0, 0, 8510, 8512, 3, 758, 379, 0, 8511, 8510, 1, 0, 0, 0, 8511, 8512, 1, 0, 0, 0, 8512, 8514, 1, 0, 0, 0, 8513, 8515, 3, 574, 287, 0, 8514, 8513, 1, 0, 0, 0, 8514, 8515, 1, 0, 0, 0, 8515, 8517, 1, 0, 0, 0, 8516, 8518, 3, 604, 302, 0, 8517, 8516, 1, 0, 0, 0, 8517, 8518, 1, 0, 0, 0, 8518, 8520, 1, 0, 0, 0, 8519, 8521, 3, 634, 317, 0, 8520, 8519, 1, 0, 0, 0, 8520, 8521, 1, 0, 0, 0, 8521, 8523, 1, 0, 0, 0, 8522, 8524, 3, 594, 297, 0, 8523, 8522, 1, 0, 0, 0, 8523, 8524, 1, 0, 0, 0, 8524, 8526, 1, 0, 0, 0, 8525, 8527, 3, 700, 350, 0, 8526, 8525, 1, 0, 0, 0, 8526, 8527, 1, 0, 0, 0, 8527, 8529, 1, 0, 0, 0, 8528, 8530, 3, 698, 349, 0, 8529, 8528, 1, 0, 0, 0, 8529, 8530, 1, 0, 0, 0, 8530, 939, 1, 0, 0, 0, 1196, 943, 950, 1070, 1072, 1081, 1086, 1092, 1127, 1137, 1143, 1148, 1155, 1160, 1167, 1178, 1186, 1190, 1202, 1208, 1214, 1218, 1223, 1227, 1240, 1250, 1252, 1258, 1263, 1276, 1279, 1284, 1289, 1300, 1304, 1316, 1320, 1323, 1327, 1339, 1357, 1364, 1372, 1377, 1384, 1392, 1398, 1406, 1414, 1418, 1432, 1437, 1442, 1454, 1460, 1472, 1477, 1487, 1493, 1498, 1507, 1514, 1519, 1524, 1534, 1539, 1544, 1551, 1555, 1569, 1575, 1581, 1586, 1593, 1602, 1611, 1620, 1629, 1633, 1645, 1653, 1663, 1683, 1688, 1691, 1698, 1701, 1705, 1709, 1712, 1717, 1722, 1726, 1735, 1741, 1745, 1754, 1757, 1763, 1772, 1784, 1788, 1792, 1797, 1800, 1806, 1808, 1810, 1814, 1820, 1824, 1829, 1834, 1838, 1841, 1848, 1861, 1874, 1899, 1909, 1916, 1921, 1925, 1932, 1937, 1940, 1942, 1947, 1951, 1955, 1959, 1964, 1967, 1971, 1974, 1978, 1986, 1991, 1994, 1998, 2004, 2013, 2017, 2027, 2032, 2036, 2040, 2042, 2044, 2051, 2056, 2060, 2065, 2077, 2082, 2086, 2090, 2095, 2099, 2102, 2105, 2108, 2111, 2114, 2119, 2122, 2125, 2128, 2131, 2134, 2140, 2144, 2147, 2150, 2153, 2156, 2158, 2165, 2173, 2183, 2188, 2198, 2201, 2206, 2211, 2216, 2219, 2224, 2233, 2235, 2239, 2242, 2246, 2251, 2256, 2260, 2263, 2267, 2270, 2275, 2278, 2283, 2286, 2290, 2293, 2296, 2301, 2304, 2312, 2324, 2328, 2335, 2340, 2343, 2346, 2349, 2354, 2365, 2371, 2375, 2378, 2381, 2386, 2393, 2396, 2400, 2408, 2413, 2416, 2419, 2426, 2431, 2440, 2443, 2446, 2451, 2454, 2466, 2476, 2493, 2497, 2501, 2503, 2520, 2522, 2538, 2549, 2552, 2555, 2564, 2573, 2589, 2592, 2595, 2603, 2607, 2614, 2623, 2627, 2633, 2637, 2640, 2643, 2646, 2649, 2655, 2659, 2664, 2668, 2671, 2674, 2677, 2682, 2688, 2692, 2696, 2700, 2706, 2708, 2713, 2719, 2725, 2729, 2744, 2749, 2752, 2754, 2757, 2761, 2765, 2768, 2771, 2779, 2785, 2787, 2793, 2798, 2803, 2807, 2814, 2816, 2827, 2866, 2876, 2878, 2881, 2885, 2889, 2899, 2901, 2907, 2909, 2918, 2930, 2944, 2949, 2952, 2959, 2964, 2972, 2974, 2980, 2985, 2989, 2994, 3000, 3007, 3013, 3015, 3024, 3030, 3038, 3044, 3049, 3054, 3062, 3077, 3079, 3083, 3087, 3090, 3093, 3102, 3105, 3108, 3114, 3120, 3124, 3136, 3142, 3145, 3150, 3154, 3161, 3171, 3173, 3197, 3209, 3214, 3216, 3220, 3223, 3226, 3236, 3239, 3249, 3254, 3259, 3262, 3265, 3273, 3279, 3286, 3294, 3297, 3308, 3312, 3318, 3325, 3328, 3337, 3351, 3354, 3368, 3379, 3382, 3394, 3399, 3412, 3417, 3430, 3439, 3442, 3445, 3452, 3455, 3467, 3473, 3475, 3483, 3491, 3499, 3511, 3516, 3527, 3538, 3546, 3554, 3561, 3568, 3570, 3573, 3578, 3583, 3602, 3611, 3614, 3641, 3650, 3653, 3657, 3661, 3665, 3672, 3676, 3680, 3684, 3688, 3693, 3697, 3702, 3708, 3713, 3720, 3724, 3730, 3734, 3739, 3747, 3753, 3758, 3765, 3770, 3774, 3779, 3785, 3792, 3797, 3804, 3809, 3816, 3820, 3828, 3832, 3834, 3837, 3842, 3852, 3867, 3870, 3878, 3885, 3890, 3896, 3900, 3907, 3912, 3915, 3918, 3922, 3931, 3949, 3952, 3984, 3989, 3995, 4015, 4020, 4026, 4029, 4033, 4037, 4043, 4046, 4050, 4054, 4059, 4062, 4065, 4068, 4081, 4087, 4095, 4102, 4107, 4110, 4117, 4120, 4128, 4131, 4136, 4143, 4146, 4166, 4178, 4181, 4187, 4192, 4201, 4209, 4214, 4220, 4227, 4235, 4238, 4249, 4251, 4265, 4271, 4279, 4281, 4287, 4291, 4294, 4297, 4302, 4307, 4311, 4314, 4317, 4320, 4323, 4331, 4342, 4345, 4348, 4353, 4356, 4360, 4364, 4370, 4378, 4381, 4394, 4399, 4401, 4406, 4413, 4420, 4429, 4437, 4445, 4452, 4460, 4467, 4475, 4479, 4483, 4485, 4491, 4496, 4500, 4507, 4512, 4517, 4522, 4524, 4534, 4544, 4560, 4578, 4590, 4597, 4612, 4617, 4620, 4625, 4630, 4635, 4638, 4641, 4646, 4653, 4657, 4662, 4669, 4673, 4679, 4688, 4697, 4709, 4711, 4724, 4730, 4734, 4736, 4743, 4756, 4763, 4765, 4781, 4785, 4789, 4794, 4799, 4804, 4809, 4812, 4824, 4877, 4886, 4890, 4899, 4903, 4912, 4916, 4921, 4924, 4928, 4933, 4935, 4944, 4949, 4960, 4964, 4978, 4986, 5024, 5026, 5045, 5048, 5075, 5079, 5083, 5087, 5091, 5094, 5109, 5116, 5130, 5143, 5168, 5187, 5202, 5218, 5225, 5236, 5239, 5258, 5261, 5274, 5278, 5298, 5310, 5314, 5336, 5340, 5350, 5354, 5360, 5364, 5368, 5372, 5379, 5384, 5395, 5399, 5402, 5407, 5413, 5424, 5428, 5431, 5435, 5439, 5442, 5452, 5455, 5459, 5464, 5470, 5473, 5478, 5481, 5488, 5490, 5496, 5500, 5509, 5514, 5516, 5526, 5529, 5534, 5542, 5545, 5550, 5552, 5554, 5560, 5577, 5583, 5596, 5602, 5606, 5611, 5641, 5656, 5661, 5665, 5678, 5682, 5684, 5693, 5699, 5701, 5705, 5708, 5711, 5714, 5717, 5719, 5722, 5726, 5734, 5739, 5742, 5748, 5752, 5756, 5761, 5763, 5767, 5771, 5778, 5784, 5788, 5790, 5792, 5805, 5813, 5821, 5832, 5842, 5847, 5851, 5855, 5862, 5865, 5867, 5875, 5879, 5882, 5889, 5896, 5901, 5908, 5911, 5913, 5916, 5922, 5927, 5931, 5938, 5948, 5955, 5958, 5961, 5965, 5976, 5979, 5982, 5985, 5988, 5995, 5998, 6001, 6008, 6020, 6027, 6029, 6034, 6039, 6041, 6047, 6054, 6059, 6064, 6068, 6072, 6076, 6078, 6082, 6086, 6089, 6092, 6094, 6104, 6106, 6111, 6115, 6120, 6124, 6131, 6136, 6140, 6143, 6149, 6152, 6171, 6178, 6182, 6185, 6189, 6193, 6196, 6199, 6204, 6213, 6220, 6224, 6228, 6232, 6235, 6237, 6242, 6246, 6251, 6257, 6264, 6269, 6274, 6283, 6290, 6298, 6309, 6314, 6318, 6321, 6325, 6330, 6334, 6339, 6347, 6358, 6363, 6367, 6370, 6373, 6375, 6378, 6381, 6384, 6394, 6399, 6405, 6409, 6411, 6418, 6423, 6429, 6431, 6436, 6440, 6444, 6446, 6449, 6456, 6461, 6464, 6470, 6474, 6480, 6489, 6495, 6497, 6502, 6505, 6514, 6521, 6523, 6530, 6535, 6538, 6548, 6559, 6564, 6568, 6576, 6586, 6593, 6599, 6610, 6616, 6626, 6635, 6639, 6642, 6644, 6646, 6650, 6658, 6661, 6666, 6671, 6678, 6680, 6686, 6690, 6693, 6698, 6701, 6703, 6709, 6718, 6724, 6727, 6735, 6738, 6742, 6748, 6750, 6753, 6757, 6762, 6769, 6776, 6778, 6784, 6786, 6791, 6793, 6797, 6806, 6810, 6818, 6820, 6834, 6837, 6845, 6854, 6860, 6865, 6873, 6875, 6880, 6884, 6889, 6894, 6900, 6916, 6918, 6927, 6942, 6947, 6950, 6956, 6961, 6974, 6979, 6983, 6990, 7009, 7021, 7026, 7034, 7036, 7038, 7047, 7050, 7055, 7060, 7063, 7074, 7082, 7087, 7089, 7092, 7096, 7107, 7128, 7136, 7149, 7159, 7165, 7171, 7174, 7177, 7203, 7205, 7226, 7236, 7249, 7254, 7258, 7260, 7272, 7279, 7285, 7291, 7295, 7306, 7319, 7323, 7328, 7331, 7334, 7343, 7354, 7356, 7360, 7365, 7374, 7379, 7387, 7397, 7405, 7409, 7412, 7419, 7431, 7435, 7442, 7450, 7452, 7461, 7464, 7476, 7485, 7492, 7501, 7511, 7516, 7520, 7522, 7525, 7530, 7535, 7543, 7549, 7552, 7556, 7558, 7565, 7575, 7583, 7591, 7599, 7616, 7623, 7631, 7648, 7654, 7667, 7669, 7680, 7682, 7690, 7696, 7701, 7709, 7714, 7717, 7726, 7733, 7738, 7742, 7747, 7753, 7758, 7766, 7821, 7828, 7834, 7836, 7838, 7840, 7846, 7850, 7854, 7865, 7868, 7872, 7876, 7880, 7883, 7886, 7889, 7898, 7903, 7907, 7940, 7950, 7954, 7960, 7965, 7974, 7982, 7993, 8001, 8010, 8019, 8024, 8028, 8038, 8043, 8051, 8056, 8059, 8066, 8072, 8080, 8088, 8091, 8098, 8100, 8103, 8109, 8118, 8122, 8136, 8139, 8141, 8147, 8157, 8159, 8161, 8169, 8172, 8175, 8185, 8193, 8199, 8205, 8212, 8216, 8220, 8223, 8226, 8232, 8239, 8242, 8250, 8252, 8261, 8266, 8268, 8275, 8281, 8284, 8296, 8303, 8305, 8309, 8315, 8320, 8324, 8327, 8330, 8339, 8342, 8345, 8349, 8353, 8355, 8358, 8361, 8367, 8374, 8381, 8387, 8389, 8393, 8398, 8416, 8421, 8423, 8432, 8439, 8443, 8455, 8458, 8471, 8474, 8478, 8487, 8494, 8499, 8504, 8508, 8511, 8514, 8517, 8520, 8523, 8526, 8529] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlParser.ts b/src/lib/postgresql/PostgreSqlParser.ts index c5dae09a..c8b80d4b 100644 --- a/src/lib/postgresql/PostgreSqlParser.ts +++ b/src/lib/postgresql/PostgreSqlParser.ts @@ -1011,73 +1011,74 @@ export class PostgreSqlParser extends SQLParserBase { public static readonly RULE_routineName = 399; public static readonly RULE_procedureName = 400; public static readonly RULE_procedureNameCreate = 401; - public static readonly RULE_columnName = 402; - public static readonly RULE_columnNamePath = 403; - public static readonly RULE_columnNameCreate = 404; - public static readonly RULE_functionNameCreate = 405; - public static readonly RULE_functionName = 406; - public static readonly RULE_stringConst = 407; - public static readonly RULE_anysconst = 408; - public static readonly RULE_signedConst = 409; - public static readonly RULE_roleSpec = 410; - public static readonly RULE_roleList = 411; - public static readonly RULE_colId = 412; - public static readonly RULE_typeFunctionName = 413; - public static readonly RULE_nonReservedWord = 414; - public static readonly RULE_colLabel = 415; - public static readonly RULE_identifier = 416; - public static readonly RULE_unreservedKeyword = 417; - public static readonly RULE_colNameKeyword = 418; - public static readonly RULE_typeFuncNameKeyword = 419; - public static readonly RULE_reservedKeyword = 420; - public static readonly RULE_plBlock = 421; - public static readonly RULE_labelDecl = 422; - public static readonly RULE_declStatement = 423; - public static readonly RULE_declCursorArg = 424; - public static readonly RULE_assignOperator = 425; - public static readonly RULE_procStmt = 426; - public static readonly RULE_stmtPerform = 427; - public static readonly RULE_stmtCall = 428; - public static readonly RULE_stmtAssign = 429; - public static readonly RULE_stmtGetdiag = 430; - public static readonly RULE_getdiagListItem = 431; - public static readonly RULE_assignVar = 432; - public static readonly RULE_stmtIf = 433; - public static readonly RULE_stmtElse = 434; - public static readonly RULE_stmtCase = 435; - public static readonly RULE_stmtLoopWhileFor = 436; - public static readonly RULE_forControl = 437; - public static readonly RULE_stmtForeach = 438; - public static readonly RULE_stmtExit = 439; - public static readonly RULE_stmtReturn = 440; - public static readonly RULE_stmtRaise = 441; - public static readonly RULE_optRaiseUsingElem = 442; - public static readonly RULE_stmtAssert = 443; - public static readonly RULE_loopBody = 444; - public static readonly RULE_stmtExecsql = 445; - public static readonly RULE_stmtDynexecute = 446; - public static readonly RULE_optExecuteInto = 447; - public static readonly RULE_stmtOpen = 448; - public static readonly RULE_optOpenBoundListItem = 449; - public static readonly RULE_stmtFetch = 450; - public static readonly RULE_optFetchFirection = 451; - public static readonly RULE_stmtMove = 452; - public static readonly RULE_mergeStmt = 453; - public static readonly RULE_dataSource = 454; - public static readonly RULE_mergeWhenClause = 455; - public static readonly RULE_mergeInsert = 456; - public static readonly RULE_mergeUpdate = 457; - public static readonly RULE_defaultValuesOrValues = 458; - public static readonly RULE_exprofdefault = 459; - public static readonly RULE_stmtClose = 460; - public static readonly RULE_stmtNull = 461; - public static readonly RULE_stmtCommitOrRollback = 462; - public static readonly RULE_stmtSet = 463; - public static readonly RULE_cursorVariable = 464; - public static readonly RULE_exceptionSect = 465; - public static readonly RULE_procCondition = 466; - public static readonly RULE_anyIdentifier = 467; - public static readonly RULE_sqlExpression = 468; + public static readonly RULE_emptyColumn = 402; + public static readonly RULE_columnName = 403; + public static readonly RULE_columnNamePath = 404; + public static readonly RULE_columnNameCreate = 405; + public static readonly RULE_functionNameCreate = 406; + public static readonly RULE_functionName = 407; + public static readonly RULE_stringConst = 408; + public static readonly RULE_anysconst = 409; + public static readonly RULE_signedConst = 410; + public static readonly RULE_roleSpec = 411; + public static readonly RULE_roleList = 412; + public static readonly RULE_colId = 413; + public static readonly RULE_typeFunctionName = 414; + public static readonly RULE_nonReservedWord = 415; + public static readonly RULE_colLabel = 416; + public static readonly RULE_identifier = 417; + public static readonly RULE_unreservedKeyword = 418; + public static readonly RULE_colNameKeyword = 419; + public static readonly RULE_typeFuncNameKeyword = 420; + public static readonly RULE_reservedKeyword = 421; + public static readonly RULE_plBlock = 422; + public static readonly RULE_labelDecl = 423; + public static readonly RULE_declStatement = 424; + public static readonly RULE_declCursorArg = 425; + public static readonly RULE_assignOperator = 426; + public static readonly RULE_procStmt = 427; + public static readonly RULE_stmtPerform = 428; + public static readonly RULE_stmtCall = 429; + public static readonly RULE_stmtAssign = 430; + public static readonly RULE_stmtGetdiag = 431; + public static readonly RULE_getdiagListItem = 432; + public static readonly RULE_assignVar = 433; + public static readonly RULE_stmtIf = 434; + public static readonly RULE_stmtElse = 435; + public static readonly RULE_stmtCase = 436; + public static readonly RULE_stmtLoopWhileFor = 437; + public static readonly RULE_forControl = 438; + public static readonly RULE_stmtForeach = 439; + public static readonly RULE_stmtExit = 440; + public static readonly RULE_stmtReturn = 441; + public static readonly RULE_stmtRaise = 442; + public static readonly RULE_optRaiseUsingElem = 443; + public static readonly RULE_stmtAssert = 444; + public static readonly RULE_loopBody = 445; + public static readonly RULE_stmtExecsql = 446; + public static readonly RULE_stmtDynexecute = 447; + public static readonly RULE_optExecuteInto = 448; + public static readonly RULE_stmtOpen = 449; + public static readonly RULE_optOpenBoundListItem = 450; + public static readonly RULE_stmtFetch = 451; + public static readonly RULE_optFetchFirection = 452; + public static readonly RULE_stmtMove = 453; + public static readonly RULE_mergeStmt = 454; + public static readonly RULE_dataSource = 455; + public static readonly RULE_mergeWhenClause = 456; + public static readonly RULE_mergeInsert = 457; + public static readonly RULE_mergeUpdate = 458; + public static readonly RULE_defaultValuesOrValues = 459; + public static readonly RULE_exprofdefault = 460; + public static readonly RULE_stmtClose = 461; + public static readonly RULE_stmtNull = 462; + public static readonly RULE_stmtCommitOrRollback = 463; + public static readonly RULE_stmtSet = 464; + public static readonly RULE_cursorVariable = 465; + public static readonly RULE_exceptionSect = 466; + public static readonly RULE_procCondition = 467; + public static readonly RULE_anyIdentifier = 468; + public static readonly RULE_sqlExpression = 469; public static readonly literalNames = [ null, "'$'", "'('", "')'", "'['", "']'", "','", "';'", "':'", "'*'", @@ -1409,9 +1410,9 @@ export class PostgreSqlParser extends SQLParserBase { "tableNameCreate", "tableName", "viewNameCreate", "viewName", "qualifiedName", "tableSpaceNameList", "nameList", "databaseNameCreate", "databaseName", "schemaName", "routineNameCreate", "routineName", "procedureName", - "procedureNameCreate", "columnName", "columnNamePath", "columnNameCreate", - "functionNameCreate", "functionName", "stringConst", "anysconst", - "signedConst", "roleSpec", "roleList", "colId", "typeFunctionName", + "procedureNameCreate", "emptyColumn", "columnName", "columnNamePath", + "columnNameCreate", "functionNameCreate", "functionName", "stringConst", + "anysconst", "signedConst", "roleSpec", "roleList", "colId", "typeFunctionName", "nonReservedWord", "colLabel", "identifier", "unreservedKeyword", "colNameKeyword", "typeFuncNameKeyword", "reservedKeyword", "plBlock", "labelDecl", "declStatement", "declCursorArg", "assignOperator", @@ -1448,21 +1449,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 941; + this.state = 943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 2 || _la === 31 || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 570441729) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 142606337) !== 0) || _la === 105 || _la === 129 || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 2159673601) !== 0) || ((((_la - 177)) & ~0x1F) === 0 && ((1 << (_la - 177)) & 100680739) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1090557953) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 679839745) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 272417) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 6401) !== 0) || ((((_la - 422)) & ~0x1F) === 0 && ((1 << (_la - 422)) & 4196353) !== 0) || _la === 454 || _la === 525 || _la === 583) { { { - this.state = 938; + this.state = 940; this.singleStmt(); } } - this.state = 943; + this.state = 945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 944; + this.state = 946; this.match(PostgreSqlParser.EOF); } } @@ -1487,14 +1488,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 946; - this.stmt(); this.state = 948; + this.stmt(); + this.state = 950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 947; + this.state = 949; this.match(PostgreSqlParser.SEMI); } } @@ -1520,832 +1521,832 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 4, PostgreSqlParser.RULE_stmt); let _la: number; try { - this.state = 1070; + this.state = 1072; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 950; + this.state = 952; this.alterEventTrigStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 951; + this.state = 953; this.alterCollationStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 952; + this.state = 954; this.alterDatabaseStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 953; + this.state = 955; this.alterDatabaseSetStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 954; + this.state = 956; this.alterDefaultPrivilegesStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 955; + this.state = 957; this.alterDomainStmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 956; + this.state = 958; this.alterEnumStmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 957; + this.state = 959; this.alterExtensionStmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 958; + this.state = 960; this.alterExtensionContentsStmt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 959; + this.state = 961; this.alterFdwStmt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 960; + this.state = 962; this.alterForeignServerStmt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 961; + this.state = 963; this.alterFunctionStmt(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 962; + this.state = 964; this.alterGroupStmt(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 963; + this.state = 965; this.alterObjectDependsStmt(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 964; + this.state = 966; this.alterObjectSchemaStmt(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 965; + this.state = 967; this.alterOwnerStmt(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 966; + this.state = 968; this.alterOperatorStmt(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 967; + this.state = 969; this.alterTypeStmt(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 968; + this.state = 970; this.alterPolicyStmt(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 969; + this.state = 971; this.alterProcedureStmt(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 970; + this.state = 972; this.alterSeqStmt(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 971; + this.state = 973; this.alterSystemStmt(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 972; + this.state = 974; this.alterTableStmt(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 973; + this.state = 975; this.alterTblSpcStmt(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 974; + this.state = 976; this.alterCompositeTypeStmt(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 975; + this.state = 977; this.alterPublicationStmt(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 976; + this.state = 978; this.alterRoleSetStmt(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 977; + this.state = 979; this.alterRoutineStmt(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 978; + this.state = 980; this.alterRoleStmt(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 979; + this.state = 981; this.alterSubscriptionStmt(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 980; + this.state = 982; this.alterStatsStmt(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 981; + this.state = 983; this.alterSearchConfigurationStmt(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 982; + this.state = 984; this.alterSearchDictionaryStmt(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 983; + this.state = 985; this.alterUserMappingStmt(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 984; + this.state = 986; this.analyzeStmt(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 985; + this.state = 987; this.callStmt(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 986; + this.state = 988; this.checkPointStmt(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 987; + this.state = 989; this.closePortalStmt(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 988; + this.state = 990; this.clusterStmt(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 989; + this.state = 991; this.commentStmt(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 990; + this.state = 992; this.constraintsSetStmt(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 991; + this.state = 993; this.copyStmt(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 992; + this.state = 994; this.createAccessMethodStmt(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 993; + this.state = 995; this.createAsStmt(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 994; + this.state = 996; this.createAssertionStmt(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 995; + this.state = 997; this.createCastStmt(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 996; + this.state = 998; this.createConversionStmt(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 997; + this.state = 999; this.createDomainStmt(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 998; + this.state = 1000; this.createExtensionStmt(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 999; + this.state = 1001; this.createFdwStmt(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1000; + this.state = 1002; this.createForeignServerStmt(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1001; + this.state = 1003; this.createForeignTableStmt(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1002; + this.state = 1004; this.createFunctionStmt(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1003; + this.state = 1005; this.createGroupStmt(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1004; + this.state = 1006; this.createMaterializedViewStmt(); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1005; + this.state = 1007; this.createOperatorClassStmt(); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1006; + this.state = 1008; this.createOperatorFamilyStmt(); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1007; + this.state = 1009; this.createPublicationStmt(); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1008; + this.state = 1010; this.alterOperatorFamilyStmt(); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1009; + this.state = 1011; this.createPolicyStmt(); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1010; + this.state = 1012; this.createProceduralLangStmt(); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1011; + this.state = 1013; this.createSchemaStmt(); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1012; + this.state = 1014; this.createSeqStmt(); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1013; + this.state = 1015; this.createStmt(); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1014; + this.state = 1016; this.createSubscriptionStmt(); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1015; + this.state = 1017; this.createStatsStmt(); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1016; + this.state = 1018; this.createTableSpaceStmt(); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1017; + this.state = 1019; this.createTransformStmt(); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1018; + this.state = 1020; this.createTrigStmt(); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1019; + this.state = 1021; this.createEventTrigStmt(); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1020; + this.state = 1022; this.createRoleStmt(); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1021; + this.state = 1023; this.createUserStmt(); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1022; + this.state = 1024; this.createUserMappingStmt(); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1023; + this.state = 1025; this.createDbStmt(); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1024; + this.state = 1026; this.dealLocateStmt(); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1025; + this.state = 1027; this.declareCursorStmt(); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1026; + this.state = 1028; this.defineStmt(); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1027; + this.state = 1029; this.deleteStmt(); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1028; + this.state = 1030; this.discardStmt(); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1029; + this.state = 1031; this.doStmt(); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1030; + this.state = 1032; this.dropStmt(); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1031; + this.state = 1033; this.executeStmt(); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1032; + this.state = 1034; this.explainStmt(); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1033; + this.state = 1035; this.fetchStmt(); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1034; + this.state = 1036; this.grantStmt(); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1035; + this.state = 1037; this.grantRoleStmt(); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1036; + this.state = 1038; this.mergeStmt(); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1037; + this.state = 1039; this.importForeignSchemaStmt(); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1038; + this.state = 1040; this.indexStmt(); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1039; + this.state = 1041; this.insertStmt(); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1040; + this.state = 1042; this.listenStmt(); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1041; + this.state = 1043; this.refreshMaterializedViewStmt(); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1042; + this.state = 1044; this.loadStmt(); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1043; + this.state = 1045; this.lockStmt(); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1044; + this.state = 1046; this.notifyStmt(); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1045; + this.state = 1047; this.prepareStmt(); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1046; + this.state = 1048; this.reassignOwnedStmt(); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1047; + this.state = 1049; this.reindexStmt(); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1048; + this.state = 1050; this.removeAggregateStmt(); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1049; + this.state = 1051; this.removeFuncStmt(); } break; case 101: this.enterOuterAlt(localContext, 101); { - this.state = 1050; + this.state = 1052; this.removeOperatorStmt(); } break; case 102: this.enterOuterAlt(localContext, 102); { - this.state = 1051; + this.state = 1053; this.renameStmt(); } break; case 103: this.enterOuterAlt(localContext, 103); { - this.state = 1052; + this.state = 1054; this.revokeStmt(); } break; case 104: this.enterOuterAlt(localContext, 104); { - this.state = 1053; + this.state = 1055; this.revokeRoleStmt(); } break; case 105: this.enterOuterAlt(localContext, 105); { - this.state = 1054; + this.state = 1056; this.ruleStmt(); } break; case 106: this.enterOuterAlt(localContext, 106); { - this.state = 1055; + this.state = 1057; this.secLabelStmt(); } break; case 107: this.enterOuterAlt(localContext, 107); { - this.state = 1056; + this.state = 1058; this.selectStmt(); } break; case 108: this.enterOuterAlt(localContext, 108); { - this.state = 1057; + this.state = 1059; this.transactionStmt(); } break; case 109: this.enterOuterAlt(localContext, 109); { - this.state = 1058; + this.state = 1060; this.truncateStmt(); } break; case 110: this.enterOuterAlt(localContext, 110); { - this.state = 1059; + this.state = 1061; this.unListenStmt(); } break; case 111: this.enterOuterAlt(localContext, 111); { - this.state = 1060; + this.state = 1062; this.updateStmt(); } break; case 112: this.enterOuterAlt(localContext, 112); { - this.state = 1061; + this.state = 1063; this.vacuumStmt(); } break; case 113: this.enterOuterAlt(localContext, 113); { - this.state = 1062; + this.state = 1064; this.variableResetStmt(); } break; case 114: this.enterOuterAlt(localContext, 114); { - this.state = 1063; + this.state = 1065; this.variableSetStmt(); } break; case 115: this.enterOuterAlt(localContext, 115); { - this.state = 1064; + this.state = 1066; this.variableShowStmt(); } break; case 116: this.enterOuterAlt(localContext, 116); { - this.state = 1065; + this.state = 1067; this.viewStmt(); } break; case 117: this.enterOuterAlt(localContext, 117); { - this.state = 1066; - this.match(PostgreSqlParser.MetaCommand); this.state = 1068; + this.match(PostgreSqlParser.MetaCommand); + this.state = 1070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 584) { { - this.state = 1067; + this.state = 1069; this.match(PostgreSqlParser.EndMetaCommand); } } @@ -2374,9 +2375,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1072; + this.state = 1074; this.match(PostgreSqlParser.KW_CALL); - this.state = 1073; + this.state = 1075; this.funcApplication(); } } @@ -2401,35 +2402,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1075; + this.state = 1077; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1076; + this.state = 1078; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1077; - this.roleSpec(); this.state = 1079; + this.roleSpec(); + this.state = 1081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 1078; + this.state = 1080; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1084; + this.state = 1086; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1081; + this.state = 1083; this.createOperatorRoleElem(); } } } - this.state = 1086; + this.state = 1088; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); } @@ -2454,15 +2455,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 10, PostgreSqlParser.RULE_alterOperatorRoleElem); let _la: number; try { - this.state = 1125; + this.state = 1127; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1087; + this.state = 1089; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1090; + this.state = 1092; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -2470,13 +2471,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1088; + this.state = 1090; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 1089; + this.state = 1091; this.match(PostgreSqlParser.KW_NULL); } break; @@ -2488,7 +2489,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1092; + this.state = 1094; _la = this.tokenStream.LA(1); if(!(_la === 195 || _la === 364)) { this.errorHandler.recoverInline(this); @@ -2497,152 +2498,152 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1093; + this.state = 1095; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1094; + this.state = 1096; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1095; + this.state = 1097; this.match(PostgreSqlParser.KW_INHERIT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1096; + this.state = 1098; this.match(PostgreSqlParser.KW_NOINHERIT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1097; + this.state = 1099; this.match(PostgreSqlParser.KW_CREATEUSER); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1098; + this.state = 1100; this.match(PostgreSqlParser.KW_NOCREATEUSER); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1099; + this.state = 1101; this.match(PostgreSqlParser.KW_CREATEROLE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1100; + this.state = 1102; this.match(PostgreSqlParser.KW_NOCREATEROLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1101; + this.state = 1103; this.match(PostgreSqlParser.KW_CREATEDB); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1102; + this.state = 1104; this.match(PostgreSqlParser.KW_NOCREATEDB); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1103; + this.state = 1105; this.match(PostgreSqlParser.KW_SUPERUSER); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1104; + this.state = 1106; this.match(PostgreSqlParser.KW_NOSUPERUSER); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1105; + this.state = 1107; this.match(PostgreSqlParser.KW_LOGIN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1106; + this.state = 1108; this.match(PostgreSqlParser.KW_NOLOGIN); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1107; + this.state = 1109; this.match(PostgreSqlParser.KW_REPLICATION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1108; + this.state = 1110; this.match(PostgreSqlParser.KW_NOREPLICATION); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1109; + this.state = 1111; this.match(PostgreSqlParser.KW_BYPASSRLS); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1110; + this.state = 1112; this.match(PostgreSqlParser.KW_NOBYPASSRLS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1111; + this.state = 1113; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 1112; + this.state = 1114; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 1113; + this.state = 1115; this.signedConst(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1114; + this.state = 1116; this.match(PostgreSqlParser.KW_VALID); - this.state = 1115; + this.state = 1117; this.match(PostgreSqlParser.KW_UNTIL); - this.state = 1116; + this.state = 1118; this.stringConst(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1117; + this.state = 1119; this.match(PostgreSqlParser.KW_IN); - this.state = 1118; + this.state = 1120; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2651,14 +2652,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1119; + this.state = 1121; this.nameList(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1120; + this.state = 1122; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2667,23 +2668,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1121; + this.state = 1123; this.roleList(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1122; + this.state = 1124; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 1123; + this.state = 1125; this.nameList(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1124; + this.state = 1126; this.identifier(); } break; @@ -2708,29 +2709,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 12, PostgreSqlParser.RULE_createOperatorRoleElem); let _la: number; try { - this.state = 1135; + this.state = 1137; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1127; + this.state = 1129; this.alterOperatorRoleElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1128; + this.state = 1130; this.match(PostgreSqlParser.KW_SYSID); - this.state = 1129; + this.state = 1131; this.match(PostgreSqlParser.Integral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1130; + this.state = 1132; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2739,16 +2740,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1131; + this.state = 1133; this.roleList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1132; + this.state = 1134; this.match(PostgreSqlParser.KW_IN); - this.state = 1133; + this.state = 1135; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2757,7 +2758,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1134; + this.state = 1136; this.roleList(); } break; @@ -2784,35 +2785,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1137; + this.state = 1139; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1138; + this.state = 1140; this.match(PostgreSqlParser.KW_USER); - this.state = 1139; - this.roleSpec(); this.state = 1141; + this.roleSpec(); + this.state = 1143; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 1140; + this.state = 1142; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1146; + this.state = 1148; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1143; + this.state = 1145; this.createOperatorRoleElem(); } } } - this.state = 1148; + this.state = 1150; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); } @@ -2840,9 +2841,9 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1149; + this.state = 1151; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1150; + this.state = 1152; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2851,31 +2852,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1151; - this.roleSpec(); this.state = 1153; + this.roleSpec(); + this.state = 1155; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: { - this.state = 1152; + this.state = 1154; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1158; + this.state = 1160; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1155; + this.state = 1157; this.alterOperatorRoleElem(); } } } - this.state = 1160; + this.state = 1162; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); } @@ -2902,9 +2903,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1161; + this.state = 1163; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1162; + this.state = 1164; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2913,12 +2914,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1165; + this.state = 1167; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1163; + this.state = 1165; this.match(PostgreSqlParser.KW_ALL); } break; @@ -3341,20 +3342,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1164; + this.state = 1166; this.roleSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1167; + this.state = 1169; this.match(PostgreSqlParser.KW_IN); - this.state = 1168; + this.state = 1170; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 1169; + this.state = 1171; this.databaseName(); - this.state = 1170; + this.state = 1172; this.setOrResetClause(); } } @@ -3379,23 +3380,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1172; + this.state = 1174; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1173; + this.state = 1175; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 1174; - this.routineName(); this.state = 1176; + this.routineName(); + this.state = 1178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1175; + this.state = 1177; this.funcArgs(); } } - this.state = 1178; + this.state = 1180; this.alterRoutineClause(); } } @@ -3419,36 +3420,36 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1206; + this.state = 1208; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1180; + this.state = 1182; this.routineAction(); - this.state = 1184; + this.state = 1186; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1181; + this.state = 1183; this.routineAction(); } } } - this.state = 1186; + this.state = 1188; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); } - this.state = 1188; + this.state = 1190; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 1187; + this.state = 1189; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -3458,56 +3459,56 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1190; + this.state = 1192; this.match(PostgreSqlParser.KW_RENAME); - this.state = 1191; + this.state = 1193; this.match(PostgreSqlParser.KW_TO); - this.state = 1192; + this.state = 1194; this.routineNameCreate(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1193; + this.state = 1195; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1194; + this.state = 1196; this.match(PostgreSqlParser.KW_TO); - this.state = 1195; + this.state = 1197; this.roleSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1196; + this.state = 1198; this.match(PostgreSqlParser.KW_SET); - this.state = 1197; + this.state = 1199; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1198; + this.state = 1200; this.schemaNameCreate(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1200; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1199; + this.state = 1201; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1202; + this.state = 1204; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 1203; + this.state = 1205; this.match(PostgreSqlParser.KW_ON); - this.state = 1204; + this.state = 1206; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 1205; + this.state = 1207; this.colId(); } break; @@ -3532,86 +3533,86 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 24, PostgreSqlParser.RULE_routineAction); let _la: number; try { - this.state = 1250; + this.state = 1252; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1208; + this.state = 1210; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1209; + this.state = 1211; this.match(PostgreSqlParser.KW_STABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1210; + this.state = 1212; this.match(PostgreSqlParser.KW_VOLATILE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1212; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 1211; + this.state = 1213; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 1214; + this.state = 1216; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1225; + this.state = 1227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 1216; + this.state = 1218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1215; + this.state = 1217; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1218; + this.state = 1220; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1219; + this.state = 1221; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 1221; + this.state = 1223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1220; + this.state = 1222; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1223; + this.state = 1225; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1224; + this.state = 1226; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -3621,9 +3622,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1227; + this.state = 1229; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 1228; + this.state = 1230; _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -3637,29 +3638,29 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1229; + this.state = 1231; this.match(PostgreSqlParser.KW_COST); - this.state = 1230; + this.state = 1232; this.colLabel(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1231; + this.state = 1233; this.match(PostgreSqlParser.KW_ROWS); - this.state = 1232; + this.state = 1234; this.colId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1233; + this.state = 1235; this.match(PostgreSqlParser.KW_SET); - this.state = 1234; + this.state = 1236; this.colId(); - this.state = 1235; + this.state = 1237; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -3668,18 +3669,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1238; + this.state = 1240; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 1236; + this.state = 1238; this.colId(); } break; case 2: { - this.state = 1237; + this.state = 1239; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -3689,22 +3690,22 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1240; + this.state = 1242; this.match(PostgreSqlParser.KW_SET); - this.state = 1241; + this.state = 1243; this.colId(); - this.state = 1242; + this.state = 1244; this.match(PostgreSqlParser.KW_FROM); - this.state = 1243; + this.state = 1245; this.match(PostgreSqlParser.KW_CURRENT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1245; + this.state = 1247; this.match(PostgreSqlParser.KW_RESET); - this.state = 1248; + this.state = 1250; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -4102,13 +4103,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1246; + this.state = 1248; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1247; + this.state = 1249; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4140,35 +4141,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1252; + this.state = 1254; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1253; + this.state = 1255; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1254; - this.roleSpec(); this.state = 1256; + this.roleSpec(); + this.state = 1258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 1255; + this.state = 1257; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1261; + this.state = 1263; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1258; + this.state = 1260; this.createOperatorRoleElem(); } } } - this.state = 1263; + this.state = 1265; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -4195,13 +4196,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1264; + this.state = 1266; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1265; + this.state = 1267; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1266; + this.state = 1268; this.roleSpec(); - this.state = 1267; + this.state = 1269; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -4210,9 +4211,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1268; + this.state = 1270; this.match(PostgreSqlParser.KW_USER); - this.state = 1269; + this.state = 1271; this.roleList(); } } @@ -4238,61 +4239,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1273; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1272; - this.match(PostgreSqlParser.KW_SCHEMA); this.state = 1274; + this.match(PostgreSqlParser.KW_SCHEMA); + this.state = 1276; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 1273; + this.state = 1275; this.ifNotExists(); } break; } - this.state = 1282; + this.state = 1284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 1277; + this.state = 1279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 1276; + this.state = 1278; this.schemaNameCreate(); } } - this.state = 1279; + this.state = 1281; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1280; + this.state = 1282; this.roleSpec(); } break; case 2: { - this.state = 1281; + this.state = 1283; this.schemaNameCreate(); } break; } - this.state = 1287; + this.state = 1289; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1284; + this.state = 1286; this.schemaStmt(); } } } - this.state = 1289; + this.state = 1291; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } @@ -4318,7 +4319,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1290; + this.state = 1292; this.anyName(); } } @@ -4340,48 +4341,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SchemaStmtContext(this.context, this.state); this.enterRule(localContext, 34, PostgreSqlParser.RULE_schemaStmt); try { - this.state = 1298; + this.state = 1300; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1292; + this.state = 1294; this.createStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1293; + this.state = 1295; this.indexStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1294; + this.state = 1296; this.createSeqStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1295; + this.state = 1297; this.createTrigStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1296; + this.state = 1298; this.grantStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1297; + this.state = 1299; this.viewStmt(); } break; @@ -4408,14 +4409,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1300; - this.match(PostgreSqlParser.KW_SET); this.state = 1302; + this.match(PostgreSqlParser.KW_SET); + this.state = 1304; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 1301; + this.state = 1303; _la = this.tokenStream.LA(1); if(!(_la === 254 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -4427,7 +4428,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 1304; + this.state = 1306; this.setRest(); } } @@ -4449,37 +4450,37 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetRestContext(this.context, this.state); this.enterRule(localContext, 38, PostgreSqlParser.RULE_setRest); try { - this.state = 1314; + this.state = 1316; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1306; + this.state = 1308; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1307; + this.state = 1309; this.transactionModeList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1308; + this.state = 1310; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1309; + this.state = 1311; this.match(PostgreSqlParser.KW_CHARACTERISTICS); - this.state = 1310; + this.state = 1312; this.match(PostgreSqlParser.KW_AS); - this.state = 1311; + this.state = 1313; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1312; + this.state = 1314; this.transactionModeList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1313; + this.state = 1315; this.setRestMore(); } break; @@ -4506,12 +4507,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1318; + this.state = 1320; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1316; + this.state = 1318; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4910,19 +4911,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1317; + this.state = 1319; this.varName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1321; + this.state = 1323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 94) { { - this.state = 1320; + this.state = 1322; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -4934,18 +4935,18 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1325; + this.state = 1327; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 1323; + this.state = 1325; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 1324; + this.state = 1326; this.varList(); } break; @@ -4970,55 +4971,55 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetRestMoreContext(this.context, this.state); this.enterRule(localContext, 42, PostgreSqlParser.RULE_setRestMore); try { - this.state = 1355; + this.state = 1357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1327; + this.state = 1329; this.match(PostgreSqlParser.KW_TIME); - this.state = 1328; + this.state = 1330; this.match(PostgreSqlParser.KW_ZONE); - this.state = 1329; + this.state = 1331; this.zoneValue(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1330; + this.state = 1332; this.match(PostgreSqlParser.KW_CATALOG); - this.state = 1331; + this.state = 1333; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1332; + this.state = 1334; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1333; + this.state = 1335; this.schemaName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1334; + this.state = 1336; this.match(PostgreSqlParser.KW_NAMES); - this.state = 1337; + this.state = 1339; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 1335; + this.state = 1337; this.stringConst(); } break; case 2: { - this.state = 1336; + this.state = 1338; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -5028,60 +5029,60 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1339; + this.state = 1341; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1340; + this.state = 1342; this.nonReservedWordOrStringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1341; + this.state = 1343; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1342; + this.state = 1344; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1343; + this.state = 1345; this.nonReservedWordOrStringConst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1344; + this.state = 1346; this.match(PostgreSqlParser.KW_XML); - this.state = 1345; + this.state = 1347; this.match(PostgreSqlParser.KW_OPTION); - this.state = 1346; + this.state = 1348; this.documentOrContent(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1347; + this.state = 1349; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1348; + this.state = 1350; this.match(PostgreSqlParser.KW_SNAPSHOT); - this.state = 1349; + this.state = 1351; this.stringConst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1350; + this.state = 1352; this.varName(); - this.state = 1351; + this.state = 1353; this.match(PostgreSqlParser.KW_FROM); - this.state = 1352; + this.state = 1354; this.match(PostgreSqlParser.KW_CURRENT); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1354; + this.state = 1356; this.genericSet(); } break; @@ -5108,21 +5109,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1357; + this.state = 1359; this.colId(); - this.state = 1362; + this.state = 1364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 1358; + this.state = 1360; this.match(PostgreSqlParser.DOT); - this.state = 1359; + this.state = 1361; this.colId(); } } - this.state = 1364; + this.state = 1366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5149,21 +5150,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1365; + this.state = 1367; this.varValue(); - this.state = 1370; + this.state = 1372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1366; + this.state = 1368; this.match(PostgreSqlParser.COMMA); - this.state = 1367; + this.state = 1369; this.varValue(); } } - this.state = 1372; + this.state = 1374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5187,7 +5188,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new VarValueContext(this.context, this.state); this.enterRule(localContext, 48, PostgreSqlParser.RULE_varValue); try { - this.state = 1375; + this.state = 1377; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -5610,7 +5611,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 1373; + this.state = 1375; this.booleanOrString(); } break; @@ -5620,7 +5621,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 1374; + this.state = 1376; this.numericOnly(); } break; @@ -5647,15 +5648,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 50, PostgreSqlParser.RULE_isoLevel); let _la: number; try { - this.state = 1382; + this.state = 1384; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 1377; + this.state = 1379; this.match(PostgreSqlParser.KW_READ); - this.state = 1378; + this.state = 1380; _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 363)) { this.errorHandler.recoverInline(this); @@ -5669,16 +5670,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REPEATABLE: this.enterOuterAlt(localContext, 2); { - this.state = 1379; + this.state = 1381; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 1380; + this.state = 1382; this.match(PostgreSqlParser.KW_READ); } break; case PostgreSqlParser.KW_SERIALIZABLE: this.enterOuterAlt(localContext, 3); { - this.state = 1381; + this.state = 1383; this.match(PostgreSqlParser.KW_SERIALIZABLE); } break; @@ -5704,48 +5705,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new OptBooleanOrStringColumnContext(this.context, this.state); this.enterRule(localContext, 52, PostgreSqlParser.RULE_optBooleanOrStringColumn); try { - this.state = 1390; + this.state = 1392; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1386; this.match(PostgreSqlParser.KW_TRUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1385; + this.state = 1387; this.match(PostgreSqlParser.KW_FALSE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1386; + this.state = 1388; this.match(PostgreSqlParser.KW_ON); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1387; + this.state = 1389; this.columnName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1388; + this.state = 1390; this.typeFuncNameKeyword(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1389; + this.state = 1391; this.stringConst(); } break; @@ -5769,27 +5770,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new BooleanOrStringContext(this.context, this.state); this.enterRule(localContext, 54, PostgreSqlParser.RULE_booleanOrString); try { - this.state = 1396; + this.state = 1398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1394; this.match(PostgreSqlParser.KW_TRUE); } break; case PostgreSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 2); { - this.state = 1393; + this.state = 1395; this.match(PostgreSqlParser.KW_FALSE); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 3); { - this.state = 1394; + this.state = 1396; this.match(PostgreSqlParser.KW_ON); } break; @@ -6210,7 +6211,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 1395; + this.state = 1397; this.nonReservedWordOrStringConst(); } break; @@ -6236,43 +6237,43 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ZoneValueContext(this.context, this.state); this.enterRule(localContext, 56, PostgreSqlParser.RULE_zoneValue); try { - this.state = 1412; + this.state = 1414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1398; + this.state = 1400; this.stringConst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1399; + this.state = 1401; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1400; + this.state = 1402; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1401; + this.state = 1403; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1402; - this.stringConst(); this.state = 1404; + this.stringConst(); + this.state = 1406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: { - this.state = 1403; + this.state = 1405; this.optInterval(); } break; @@ -6282,25 +6283,25 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1406; + this.state = 1408; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1407; + this.state = 1409; this.optFloat(); - this.state = 1408; + this.state = 1410; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1410; + this.state = 1412; this.numericOnly(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1411; + this.state = 1413; this.match(PostgreSqlParser.KW_LOCAL); } break; @@ -6324,20 +6325,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new NonReservedWordOrStringConstContext(this.context, this.state); this.enterRule(localContext, 58, PostgreSqlParser.RULE_nonReservedWordOrStringConst); try { - this.state = 1416; + this.state = 1418; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1414; + this.state = 1416; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1415; + this.state = 1417; this.stringConst(); } break; @@ -6363,9 +6364,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1418; + this.state = 1420; this.match(PostgreSqlParser.KW_RESET); - this.state = 1419; + this.state = 1421; this.resetRest(); } } @@ -6387,49 +6388,49 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ResetRestContext(this.context, this.state); this.enterRule(localContext, 62, PostgreSqlParser.RULE_resetRest); try { - this.state = 1430; + this.state = 1432; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1421; + this.state = 1423; this.match(PostgreSqlParser.KW_TIME); - this.state = 1422; + this.state = 1424; this.match(PostgreSqlParser.KW_ZONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1423; + this.state = 1425; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1424; + this.state = 1426; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1425; + this.state = 1427; this.match(PostgreSqlParser.KW_LEVEL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1426; + this.state = 1428; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1427; + this.state = 1429; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1428; + this.state = 1430; this.match(PostgreSqlParser.KW_ALL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1429; + this.state = 1431; this.varName(); } break; @@ -6453,22 +6454,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetOrResetClauseContext(this.context, this.state); this.enterRule(localContext, 64, PostgreSqlParser.RULE_setOrResetClause); try { - this.state = 1435; + this.state = 1437; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1432; + this.state = 1434; this.match(PostgreSqlParser.KW_SET); - this.state = 1433; + this.state = 1435; this.setRest(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 1434; + this.state = 1436; this.variableResetStmt(); } break; @@ -6494,22 +6495,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionSetOrResetClauseContext(this.context, this.state); this.enterRule(localContext, 66, PostgreSqlParser.RULE_functionSetOrResetClause); try { - this.state = 1440; + this.state = 1442; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1437; + this.state = 1439; this.match(PostgreSqlParser.KW_SET); - this.state = 1438; + this.state = 1440; this.setRestMore(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 1439; + this.state = 1441; this.variableResetStmt(); } break; @@ -6537,46 +6538,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1442; + this.state = 1444; this.match(PostgreSqlParser.KW_SHOW); - this.state = 1452; + this.state = 1454; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 52, this.context) ) { case 1: { - this.state = 1443; + this.state = 1445; this.varName(); } break; case 2: { - this.state = 1444; + this.state = 1446; this.match(PostgreSqlParser.KW_TIME); - this.state = 1445; + this.state = 1447; this.match(PostgreSqlParser.KW_ZONE); } break; case 3: { - this.state = 1446; + this.state = 1448; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1447; + this.state = 1449; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1448; + this.state = 1450; this.match(PostgreSqlParser.KW_LEVEL); } break; case 4: { - this.state = 1449; + this.state = 1451; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1450; + this.state = 1452; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 5: { - this.state = 1451; + this.state = 1453; this.match(PostgreSqlParser.KW_ALL); } break; @@ -6604,16 +6605,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1456; this.match(PostgreSqlParser.KW_SET); - this.state = 1455; + this.state = 1457; this.match(PostgreSqlParser.KW_CONSTRAINTS); - this.state = 1458; + this.state = 1460; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1456; + this.state = 1458; this.match(PostgreSqlParser.KW_ALL); } break; @@ -7012,14 +7013,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1457; + this.state = 1459; this.qualifiedNameList(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1460; + this.state = 1462; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -7050,7 +7051,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1462; + this.state = 1464; this.match(PostgreSqlParser.KW_CHECKPOINT); } } @@ -7075,9 +7076,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1466; this.match(PostgreSqlParser.KW_DISCARD); - this.state = 1465; + this.state = 1467; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 288 || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 41943041) !== 0))) { this.errorHandler.recoverInline(this); @@ -7107,29 +7108,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 76, PostgreSqlParser.RULE_alterTableStmt); let _la: number; try { - this.state = 1584; + this.state = 1586; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1467; + this.state = 1469; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1468; - this.match(PostgreSqlParser.KW_TABLE); this.state = 1470; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 1472; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1469; + this.state = 1471; this.ifExists(); } break; } - this.state = 1472; + this.state = 1474; this.relationExpr(); - this.state = 1475; + this.state = 1477; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7150,14 +7151,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1473; + this.state = 1475; this.alterTableCmds(); } break; case PostgreSqlParser.KW_ATTACH: case PostgreSqlParser.KW_DETACH: { - this.state = 1474; + this.state = 1476; this.partitionCmd(); } break; @@ -7169,42 +7170,42 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1477; + this.state = 1479; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1478; + this.state = 1480; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1479; + this.state = 1481; this.match(PostgreSqlParser.KW_ALL); - this.state = 1480; + this.state = 1482; this.match(PostgreSqlParser.KW_IN); - this.state = 1481; + this.state = 1483; this.optTableSpace(); - this.state = 1485; + this.state = 1487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1482; + this.state = 1484; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1483; + this.state = 1485; this.match(PostgreSqlParser.KW_BY); - this.state = 1484; + this.state = 1486; this.roleList(); } } - this.state = 1487; + this.state = 1489; this.match(PostgreSqlParser.KW_SET); - this.state = 1488; + this.state = 1490; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1489; - this.tableSpaceName(); this.state = 1491; + this.tableSpaceName(); + this.state = 1493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1490; + this.state = 1492; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7214,59 +7215,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1493; + this.state = 1495; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1494; - this.match(PostgreSqlParser.KW_TABLE); this.state = 1496; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 1498; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1495; + this.state = 1497; this.ifExists(); } break; } - this.state = 1498; + this.state = 1500; this.tableName(); - this.state = 1499; + this.state = 1501; this.indexPartitionCmd(); - this.state = 1500; + this.state = 1502; this.partitionBoundSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1502; + this.state = 1504; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1503; - this.match(PostgreSqlParser.KW_TABLE); this.state = 1505; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 1507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1504; + this.state = 1506; this.ifExists(); } break; } - this.state = 1507; + this.state = 1509; this.tableName(); - this.state = 1508; + this.state = 1510; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1509; + this.state = 1511; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1510; - this.qualifiedName(); this.state = 1512; + this.qualifiedName(); + this.state = 1514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109 || _la === 532) { { - this.state = 1511; + this.state = 1513; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 532)) { this.errorHandler.recoverInline(this); @@ -7283,23 +7284,23 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1514; + this.state = 1516; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1515; - this.match(PostgreSqlParser.KW_INDEX); this.state = 1517; + this.match(PostgreSqlParser.KW_INDEX); + this.state = 1519; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 1516; + this.state = 1518; this.ifExists(); } break; } - this.state = 1519; + this.state = 1521; this.qualifiedName(); - this.state = 1522; + this.state = 1524; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7320,13 +7321,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1520; + this.state = 1522; this.alterTableCmds(); } break; case PostgreSqlParser.KW_ATTACH: { - this.state = 1521; + this.state = 1523; this.indexPartitionCmd(); } break; @@ -7338,40 +7339,40 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1524; + this.state = 1526; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1525; + this.state = 1527; this.match(PostgreSqlParser.KW_INDEX); - this.state = 1526; + this.state = 1528; this.match(PostgreSqlParser.KW_ALL); - this.state = 1527; + this.state = 1529; this.match(PostgreSqlParser.KW_IN); - this.state = 1528; + this.state = 1530; this.optTableSpace(); - this.state = 1532; + this.state = 1534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1529; + this.state = 1531; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1530; + this.state = 1532; this.match(PostgreSqlParser.KW_BY); - this.state = 1531; + this.state = 1533; this.roleList(); } } - this.state = 1534; + this.state = 1536; this.match(PostgreSqlParser.KW_SET); - this.state = 1535; - this.optTableSpace(); this.state = 1537; + this.optTableSpace(); + this.state = 1539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1536; + this.state = 1538; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7381,100 +7382,100 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1539; + this.state = 1541; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1540; - this.match(PostgreSqlParser.KW_SEQUENCE); this.state = 1542; + this.match(PostgreSqlParser.KW_SEQUENCE); + this.state = 1544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1541; + this.state = 1543; this.ifExists(); } break; } - this.state = 1544; + this.state = 1546; this.qualifiedName(); - this.state = 1545; + this.state = 1547; this.alterTableCmds(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1547; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1549; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1548; + this.state = 1550; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 1551; - this.match(PostgreSqlParser.KW_VIEW); this.state = 1553; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 1555; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 1552; + this.state = 1554; this.ifExists(); } break; } - this.state = 1555; + this.state = 1557; this.viewName(); - this.state = 1556; + this.state = 1558; this.alterTableCmds(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1558; + this.state = 1560; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1559; + this.state = 1561; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 1560; + this.state = 1562; this.match(PostgreSqlParser.KW_VIEW); - this.state = 1561; + this.state = 1563; this.match(PostgreSqlParser.KW_ALL); - this.state = 1562; + this.state = 1564; this.match(PostgreSqlParser.KW_IN); - this.state = 1563; + this.state = 1565; this.optTableSpace(); - this.state = 1567; + this.state = 1569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1564; + this.state = 1566; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1565; + this.state = 1567; this.match(PostgreSqlParser.KW_BY); - this.state = 1566; + this.state = 1568; this.roleList(); } } - this.state = 1569; + this.state = 1571; this.match(PostgreSqlParser.KW_SET); - this.state = 1570; + this.state = 1572; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1571; - this.tableSpaceName(); this.state = 1573; + this.tableSpaceName(); + this.state = 1575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1572; + this.state = 1574; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7484,25 +7485,25 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1575; + this.state = 1577; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1576; + this.state = 1578; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 1577; - this.match(PostgreSqlParser.KW_TABLE); this.state = 1579; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 1581; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1578; + this.state = 1580; this.ifExists(); } break; } - this.state = 1581; + this.state = 1583; this.relationExpr(); - this.state = 1582; + this.state = 1584; this.alterTableCmds(); } break; @@ -7529,21 +7530,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1586; + this.state = 1588; this.alterTableCmd(); - this.state = 1591; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1587; + this.state = 1589; this.match(PostgreSqlParser.COMMA); - this.state = 1588; + this.state = 1590; this.alterTableCmd(); } } - this.state = 1593; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7567,26 +7568,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionCmdContext(this.context, this.state); this.enterRule(localContext, 80, PostgreSqlParser.RULE_partitionCmd); try { - this.state = 1600; + this.state = 1602; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ATTACH: this.enterOuterAlt(localContext, 1); { - this.state = 1594; + this.state = 1596; this.indexPartitionCmd(); - this.state = 1595; + this.state = 1597; this.partitionBoundSpec(); } break; case PostgreSqlParser.KW_DETACH: this.enterOuterAlt(localContext, 2); { - this.state = 1597; + this.state = 1599; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1598; + this.state = 1600; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1599; + this.state = 1601; this.qualifiedName(); } break; @@ -7614,11 +7615,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1602; + this.state = 1604; this.match(PostgreSqlParser.KW_ATTACH); - this.state = 1603; + this.state = 1605; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1604; + this.state = 1606; this.qualifiedName(); } } @@ -7642,52 +7643,52 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1839; + this.state = 1841; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1606; + this.state = 1608; this.match(PostgreSqlParser.KW_ADD); - this.state = 1609; + this.state = 1611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 1607; + this.state = 1609; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1608; + this.state = 1610; this.colId(); } } - this.state = 1611; + this.state = 1613; this.constraintElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1612; + this.state = 1614; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1613; + this.state = 1615; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1614; + this.state = 1616; this.colId(); - this.state = 1618; + this.state = 1620; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1615; + this.state = 1617; this.constraintAttributeElem(); } } } - this.state = 1620; + this.state = 1622; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); } @@ -7696,39 +7697,39 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1621; + this.state = 1623; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 1622; + this.state = 1624; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1623; + this.state = 1625; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1624; + this.state = 1626; this.match(PostgreSqlParser.KW_DROP); - this.state = 1625; - this.match(PostgreSqlParser.KW_CONSTRAINT); this.state = 1627; + this.match(PostgreSqlParser.KW_CONSTRAINT); + this.state = 1629; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 1626; + this.state = 1628; this.ifExists(); } break; } - this.state = 1629; - this.colId(); this.state = 1631; + this.colId(); + this.state = 1633; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1630; + this.state = 1632; this.optDropBehavior(); } break; @@ -7738,11 +7739,11 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1633; + this.state = 1635; this.match(PostgreSqlParser.KW_SET); - this.state = 1634; + this.state = 1636; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 1635; + this.state = 1637; _la = this.tokenStream.LA(1); if(!(_la === 158 || _la === 277)) { this.errorHandler.recoverInline(this); @@ -7756,20 +7757,20 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1636; + this.state = 1638; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 1637; + this.state = 1639; this.match(PostgreSqlParser.KW_ON); - this.state = 1638; + this.state = 1640; this.colId(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1639; + this.state = 1641; this.match(PostgreSqlParser.KW_SET); - this.state = 1640; + this.state = 1642; _la = this.tokenStream.LA(1); if(!(_la === 367 || _la === 439)) { this.errorHandler.recoverInline(this); @@ -7783,14 +7784,14 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1641; - this.match(PostgreSqlParser.KW_ENABLE); this.state = 1643; + this.match(PostgreSqlParser.KW_ENABLE); + this.state = 1645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 312) { { - this.state = 1642; + this.state = 1644; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -7802,29 +7803,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1645; + this.state = 1647; this.match(PostgreSqlParser.KW_TRIGGER); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1646; + this.state = 1648; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1647; + this.state = 1649; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 1651; + this.state = 1653; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1648; + this.state = 1650; this.match(PostgreSqlParser.KW_ALL); } break; case PostgreSqlParser.KW_USER: { - this.state = 1649; + this.state = 1651; this.match(PostgreSqlParser.KW_USER); } break; @@ -8223,7 +8224,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1650; + this.state = 1652; this.colId(); } break; @@ -8235,9 +8236,9 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1653; + this.state = 1655; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 1654; + this.state = 1656; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -8246,113 +8247,113 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1655; + this.state = 1657; this.match(PostgreSqlParser.KW_RULE); - this.state = 1656; + this.state = 1658; this.colId(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1657; + this.state = 1659; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1658; + this.state = 1660; this.match(PostgreSqlParser.KW_RULE); - this.state = 1659; + this.state = 1661; this.colId(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1661; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1660; + this.state = 1662; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1663; + this.state = 1665; this.match(PostgreSqlParser.KW_INHERIT); - this.state = 1664; + this.state = 1666; this.qualifiedName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1665; + this.state = 1667; this.match(PostgreSqlParser.KW_OF); - this.state = 1666; + this.state = 1668; this.anyName(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1667; + this.state = 1669; this.match(PostgreSqlParser.KW_NOT); - this.state = 1668; + this.state = 1670; this.match(PostgreSqlParser.KW_OF); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1669; + this.state = 1671; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1670; + this.state = 1672; this.match(PostgreSqlParser.KW_TO); - this.state = 1671; + this.state = 1673; this.roleSpec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1672; + this.state = 1674; this.match(PostgreSqlParser.KW_SET); - this.state = 1673; + this.state = 1675; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1674; + this.state = 1676; this.tableSpaceName(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1675; + this.state = 1677; this.match(PostgreSqlParser.KW_REPLICA); - this.state = 1676; + this.state = 1678; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1681; + this.state = 1683; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOTHING: { - this.state = 1677; + this.state = 1679; this.match(PostgreSqlParser.KW_NOTHING); } break; case PostgreSqlParser.KW_FULL: { - this.state = 1678; + this.state = 1680; this.match(PostgreSqlParser.KW_FULL); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 1679; + this.state = 1681; this.match(PostgreSqlParser.KW_DEFAULT); } break; case PostgreSqlParser.KW_USING: { - this.state = 1680; + this.state = 1682; this.existingIndex(); } break; @@ -8364,18 +8365,18 @@ export class PostgreSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1689; + this.state = 1691; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 1683; + this.state = 1685; this.match(PostgreSqlParser.KW_ENABLE); } break; case PostgreSqlParser.KW_DISABLE: { - this.state = 1684; + this.state = 1686; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -8383,17 +8384,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: { { - this.state = 1686; + this.state = 1688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1685; + this.state = 1687; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1688; + this.state = 1690; this.match(PostgreSqlParser.KW_FORCE); } } @@ -8401,47 +8402,47 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1691; + this.state = 1693; this.match(PostgreSqlParser.KW_ROW); - this.state = 1692; + this.state = 1694; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 1693; + this.state = 1695; this.match(PostgreSqlParser.KW_SECURITY); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1694; - this.match(PostgreSqlParser.KW_DROP); this.state = 1696; + this.match(PostgreSqlParser.KW_DROP); + this.state = 1698; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 1695; + this.state = 1697; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1699; + this.state = 1701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { case 1: { - this.state = 1698; + this.state = 1700; this.ifExists(); } break; } - this.state = 1701; - this.columnName(); this.state = 1703; + this.columnName(); + this.state = 1705; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 1702; + this.state = 1704; this.optDropBehavior(); } break; @@ -8451,62 +8452,62 @@ export class PostgreSqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1705; - this.match(PostgreSqlParser.KW_ADD); this.state = 1707; + this.match(PostgreSqlParser.KW_ADD); + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1706; + this.state = 1708; this.match(PostgreSqlParser.KW_COLUMN); } } - this.state = 1710; + this.state = 1712; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 1709; + this.state = 1711; this.ifNotExists(); } break; } - this.state = 1712; + this.state = 1714; this.column_def(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1713; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1715; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1717; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1714; + this.state = 1716; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1717; + this.state = 1719; this.columnName(); - this.state = 1720; + this.state = 1722; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: case PostgreSqlParser.KW_SET: { - this.state = 1718; + this.state = 1720; this.alterColumnDefault(); } break; case PostgreSqlParser.KW_OPTIONS: { - this.state = 1719; + this.state = 1721; this.alterGenericOptions(); } break; @@ -8518,21 +8519,21 @@ export class PostgreSqlParser extends SQLParserBase { case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1722; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1724; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1726; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1723; + this.state = 1725; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1726; + this.state = 1728; this.columnName(); - this.state = 1727; + this.state = 1729; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8541,39 +8542,39 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1728; + this.state = 1730; this.match(PostgreSqlParser.KW_NOT); - this.state = 1729; + this.state = 1731; this.match(PostgreSqlParser.KW_NULL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1731; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1733; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1735; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1732; + this.state = 1734; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1735; + this.state = 1737; this.columnName(); - this.state = 1736; + this.state = 1738; this.match(PostgreSqlParser.KW_DROP); - this.state = 1737; - this.match(PostgreSqlParser.KW_EXPRESSION); this.state = 1739; + this.match(PostgreSqlParser.KW_EXPRESSION); + this.state = 1741; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1738; + this.state = 1740; this.ifExists(); } break; @@ -8583,54 +8584,54 @@ export class PostgreSqlParser extends SQLParserBase { case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1741; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1743; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1745; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1742; + this.state = 1744; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1745; + this.state = 1747; this.columnName(); - this.state = 1746; + this.state = 1748; this.match(PostgreSqlParser.KW_SET); - this.state = 1747; + this.state = 1749; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 1748; + this.state = 1750; this.signedConst(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1755; + this.state = 1757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1750; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1752; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1754; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: { - this.state = 1751; + this.state = 1753; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1754; + this.state = 1756; this.columnName(); } } - this.state = 1757; + this.state = 1759; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8639,84 +8640,84 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1758; + this.state = 1760; this.relOptions(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1759; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1761; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1763; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: { - this.state = 1760; + this.state = 1762; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1763; + this.state = 1765; this.columnName(); - this.state = 1764; + this.state = 1766; this.match(PostgreSqlParser.KW_SET); - this.state = 1765; + this.state = 1767; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 1766; + this.state = 1768; this.colId(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1768; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1770; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { case 1: { - this.state = 1769; + this.state = 1771; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1772; + this.state = 1774; this.columnName(); - this.state = 1773; + this.state = 1775; this.match(PostgreSqlParser.KW_ADD); - this.state = 1774; + this.state = 1776; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1775; + this.state = 1777; this.generatedWhen(); - this.state = 1776; + this.state = 1778; this.match(PostgreSqlParser.KW_AS); - this.state = 1777; + this.state = 1779; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1786; + this.state = 1788; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1778; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 1780; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 1782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1779; + this.state = 1781; this.seqOptElem(); } } - this.state = 1782; + this.state = 1784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 1784; + this.state = 1786; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -8726,50 +8727,50 @@ export class PostgreSqlParser extends SQLParserBase { case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1788; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1790; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1792; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1789; + this.state = 1791; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1792; + this.state = 1794; this.columnName(); - this.state = 1806; + this.state = 1808; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 1806; + this.state = 1808; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RESTART: { - this.state = 1793; + this.state = 1795; this.match(PostgreSqlParser.KW_RESTART); - this.state = 1798; + this.state = 1800; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1795; + this.state = 1797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 1794; + this.state = 1796; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 1797; + this.state = 1799; this.numericOnly(); } break; @@ -8778,9 +8779,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SET: { - this.state = 1800; + this.state = 1802; this.match(PostgreSqlParser.KW_SET); - this.state = 1804; + this.state = 1806; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: @@ -8794,15 +8795,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SEQUENCE: case PostgreSqlParser.KW_START: { - this.state = 1801; + this.state = 1803; this.seqOptElem(); } break; case PostgreSqlParser.KW_GENERATED: { - this.state = 1802; + this.state = 1804; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1803; + this.state = 1805; this.generatedWhen(); } break; @@ -8819,7 +8820,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1808; + this.state = 1810; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 106, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -8828,30 +8829,30 @@ export class PostgreSqlParser extends SQLParserBase { case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1810; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1812; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1814; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1811; + this.state = 1813; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1814; + this.state = 1816; this.columnName(); - this.state = 1815; + this.state = 1817; this.match(PostgreSqlParser.KW_DROP); - this.state = 1816; - this.match(PostgreSqlParser.KW_IDENTITY); this.state = 1818; + this.match(PostgreSqlParser.KW_IDENTITY); + this.state = 1820; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1817; + this.state = 1819; this.ifExists(); } break; @@ -8861,54 +8862,54 @@ export class PostgreSqlParser extends SQLParserBase { case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1820; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1822; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1824; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1821; + this.state = 1823; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1824; + this.state = 1826; this.columnName(); - this.state = 1827; + this.state = 1829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1825; + this.state = 1827; this.match(PostgreSqlParser.KW_SET); - this.state = 1826; + this.state = 1828; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1829; + this.state = 1831; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1830; - this.typename(); this.state = 1832; + this.typename(); + this.state = 1834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1831; + this.state = 1833; this.collateClause(); } } - this.state = 1836; + this.state = 1838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1834; + this.state = 1836; this.match(PostgreSqlParser.KW_USING); - this.state = 1835; + this.state = 1837; this.expression(); } } @@ -8918,7 +8919,7 @@ export class PostgreSqlParser extends SQLParserBase { case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1838; + this.state = 1840; this.alterGenericOptions(); } break; @@ -8942,26 +8943,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AlterColumnDefaultContext(this.context, this.state); this.enterRule(localContext, 86, PostgreSqlParser.RULE_alterColumnDefault); try { - this.state = 1846; + this.state = 1848; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1843; this.match(PostgreSqlParser.KW_SET); - this.state = 1842; + this.state = 1844; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 1843; + this.state = 1845; this.expression(); } break; case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1844; + this.state = 1846; this.match(PostgreSqlParser.KW_DROP); - this.state = 1845; + this.state = 1847; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -8990,7 +8991,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1848; + this.state = 1850; _la = this.tokenStream.LA(1); if(!(_la === 150 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -9021,9 +9022,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1850; + this.state = 1852; this.match(PostgreSqlParser.KW_COLLATE); - this.state = 1851; + this.state = 1853; this.anyName(); } } @@ -9048,27 +9049,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1855; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1854; + this.state = 1856; this.relOptionElem(); - this.state = 1859; + this.state = 1861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1855; + this.state = 1857; this.match(PostgreSqlParser.COMMA); - this.state = 1856; + this.state = 1858; this.relOptionElem(); } } - this.state = 1861; + this.state = 1863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1862; + this.state = 1864; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -9092,9 +9093,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1864; + this.state = 1866; this.match(PostgreSqlParser.KW_WITH); - this.state = 1865; + this.state = 1867; this.relOptions(); } } @@ -9118,24 +9119,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1867; + this.state = 1869; this.colLabel(); - this.state = 1872; + this.state = 1874; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: { - this.state = 1868; + this.state = 1870; this.match(PostgreSqlParser.EQUAL); - this.state = 1869; + this.state = 1871; this.defArg(); } break; case PostgreSqlParser.DOT: { - this.state = 1870; + this.state = 1872; this.match(PostgreSqlParser.DOT); - this.state = 1871; + this.state = 1873; this.defElem(); } break; @@ -9165,68 +9166,68 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionBoundSpecContext(this.context, this.state); this.enterRule(localContext, 98, PostgreSqlParser.RULE_partitionBoundSpec); try { - this.state = 1897; + this.state = 1899; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1874; + this.state = 1876; this.match(PostgreSqlParser.KW_FOR); - this.state = 1875; + this.state = 1877; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1876; + this.state = 1878; this.match(PostgreSqlParser.KW_WITH); - this.state = 1877; + this.state = 1879; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1878; + this.state = 1880; this.match(PostgreSqlParser.KW_MODULUS); - this.state = 1879; + this.state = 1881; this.numericOnly(); - this.state = 1880; + this.state = 1882; this.match(PostgreSqlParser.COMMA); - this.state = 1881; + this.state = 1883; this.match(PostgreSqlParser.KW_REMAINDER); - this.state = 1882; + this.state = 1884; this.numericOnly(); - this.state = 1883; + this.state = 1885; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1885; + this.state = 1887; this.match(PostgreSqlParser.KW_FOR); - this.state = 1886; + this.state = 1888; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1887; + this.state = 1889; this.match(PostgreSqlParser.KW_IN); - this.state = 1888; + this.state = 1890; this.executeParamClause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1889; + this.state = 1891; this.match(PostgreSqlParser.KW_FOR); - this.state = 1890; + this.state = 1892; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1891; + this.state = 1893; this.match(PostgreSqlParser.KW_FROM); - this.state = 1892; + this.state = 1894; this.executeParamClause(); - this.state = 1893; + this.state = 1895; this.match(PostgreSqlParser.KW_TO); - this.state = 1894; + this.state = 1896; this.executeParamClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1896; + this.state = 1898; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -9253,27 +9254,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1899; + this.state = 1901; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1900; + this.state = 1902; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1901; + this.state = 1903; this.anyName(); - this.state = 1902; + this.state = 1904; this.alterTypeCmd(); - this.state = 1907; + this.state = 1909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1903; + this.state = 1905; this.match(PostgreSqlParser.COMMA); - this.state = 1904; + this.state = 1906; this.alterTypeCmd(); } } - this.state = 1909; + this.state = 1911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9298,24 +9299,24 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 102, PostgreSqlParser.RULE_alterTypeCmd); let _la: number; try { - this.state = 1940; + this.state = 1942; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1912; this.match(PostgreSqlParser.KW_ADD); - this.state = 1911; + this.state = 1913; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1912; - this.tableFuncElement(); this.state = 1914; + this.tableFuncElement(); + this.state = 1916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1913; + this.state = 1915; this.optDropBehavior(); } break; @@ -9325,28 +9326,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1916; + this.state = 1918; this.match(PostgreSqlParser.KW_DROP); - this.state = 1917; - this.match(PostgreSqlParser.KW_ATTRIBUTE); this.state = 1919; + this.match(PostgreSqlParser.KW_ATTRIBUTE); + this.state = 1921; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1918; + this.state = 1920; this.ifExists(); } break; } - this.state = 1921; - this.colId(); this.state = 1923; + this.colId(); + this.state = 1925; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1922; + this.state = 1924; this.optDropBehavior(); } break; @@ -9356,44 +9357,44 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 3); { - this.state = 1925; + this.state = 1927; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1926; + this.state = 1928; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1927; + this.state = 1929; this.colId(); - this.state = 1930; + this.state = 1932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1928; + this.state = 1930; this.match(PostgreSqlParser.KW_SET); - this.state = 1929; + this.state = 1931; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1932; + this.state = 1934; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1933; - this.typename(); this.state = 1935; + this.typename(); + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1934; + this.state = 1936; this.collateClause(); } } - this.state = 1938; + this.state = 1940; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: { - this.state = 1937; + this.state = 1939; this.optDropBehavior(); } break; @@ -9424,9 +9425,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1942; + this.state = 1944; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 1945; + this.state = 1947; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -9824,13 +9825,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1943; + this.state = 1945; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1944; + this.state = 1946; this.match(PostgreSqlParser.KW_ALL); } break; @@ -9858,37 +9859,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 106, PostgreSqlParser.RULE_copyStmt); let _la: number; try { - this.state = 1996; + this.state = 1998; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1947; - this.match(PostgreSqlParser.KW_COPY); this.state = 1949; + this.match(PostgreSqlParser.KW_COPY); + this.state = 1951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 1948; + this.state = 1950; this.match(PostgreSqlParser.KW_BINARY); } } - this.state = 1951; - this.tableName(); this.state = 1953; + this.tableName(); + this.state = 1955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1952; + this.state = 1954; this.optColumnList(); } } - this.state = 1955; + this.state = 1957; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -9897,17 +9898,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1957; + this.state = 1959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1956; + this.state = 1958; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1962; + this.state = 1964; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -9915,65 +9916,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1959; + this.state = 1961; this.stringConst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1960; + this.state = 1962; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1961; + this.state = 1963; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1969; + this.state = 1971; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1965; + this.state = 1967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1964; + this.state = 1966; this.match(PostgreSqlParser.KW_USING); } } - this.state = 1967; + this.state = 1969; this.match(PostgreSqlParser.KW_DELIMITERS); - this.state = 1968; + this.state = 1970; this.stringConst(); } break; } - this.state = 1972; + this.state = 1974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1971; + this.state = 1973; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1974; - this.copyOptions(); this.state = 1976; + this.copyOptions(); + this.state = 1978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 1975; + this.state = 1977; this.whereClause(); } } @@ -9983,27 +9984,27 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1978; + this.state = 1980; this.match(PostgreSqlParser.KW_COPY); - this.state = 1979; + this.state = 1981; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1980; + this.state = 1982; this.preParableStmt(); - this.state = 1981; + this.state = 1983; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 1982; - this.match(PostgreSqlParser.KW_TO); this.state = 1984; + this.match(PostgreSqlParser.KW_TO); + this.state = 1986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1983; + this.state = 1985; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1989; + this.state = 1991; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -10011,36 +10012,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1986; + this.state = 1988; this.stringConst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1987; + this.state = 1989; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1988; + this.state = 1990; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1992; + this.state = 1994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1991; + this.state = 1993; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1994; + this.state = 1996; this.copyOptions(); } break; @@ -10068,30 +10069,30 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2042; + this.state = 2044; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2040; + this.state = 2042; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1998; + this.state = 2000; this.match(PostgreSqlParser.KW_BINARY); } break; case 2: { - this.state = 1999; + this.state = 2001; this.match(PostgreSqlParser.KW_FREEZE); } break; case 3: { - this.state = 2000; + this.state = 2002; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 183 || _la === 197 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -10100,50 +10101,50 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2002; + this.state = 2004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2001; + this.state = 2003; this.match(PostgreSqlParser.KW_AS); } } - this.state = 2004; + this.state = 2006; this.stringConst(); } break; case 4: { - this.state = 2005; + this.state = 2007; this.match(PostgreSqlParser.KW_CSV); } break; case 5: { - this.state = 2006; + this.state = 2008; this.match(PostgreSqlParser.KW_HEADER); } break; case 6: { - this.state = 2007; + this.state = 2009; this.match(PostgreSqlParser.KW_FORCE); - this.state = 2008; + this.state = 2010; this.match(PostgreSqlParser.KW_QUOTE); - this.state = 2011; + this.state = 2013; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 2009; + this.state = 2011; this.columnList(); } break; case 2: { - this.state = 2010; + this.state = 2012; this.match(PostgreSqlParser.STAR); } break; @@ -10152,35 +10153,35 @@ export class PostgreSqlParser extends SQLParserBase { break; case 7: { - this.state = 2013; - this.match(PostgreSqlParser.KW_FORCE); this.state = 2015; + this.match(PostgreSqlParser.KW_FORCE); + this.state = 2017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2014; + this.state = 2016; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2017; + this.state = 2019; this.match(PostgreSqlParser.KW_NULL); - this.state = 2018; + this.state = 2020; this.columnList(); } break; case 8: { - this.state = 2019; + this.state = 2021; this.match(PostgreSqlParser.KW_ENCODING); - this.state = 2020; + this.state = 2022; this.stringConst(); } break; case 9: { - this.state = 2021; + this.state = 2023; _la = this.tokenStream.LA(1); if(!(((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -10189,60 +10190,60 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2038; + this.state = 2040; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { case 1: { - this.state = 2022; + this.state = 2024; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2025; + this.state = 2027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: { - this.state = 2023; + this.state = 2025; this.columnList(); } break; case 2: { - this.state = 2024; + this.state = 2026; this.match(PostgreSqlParser.STAR); } break; } - this.state = 2034; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2027; + this.state = 2029; this.match(PostgreSqlParser.COMMA); - this.state = 2030; + this.state = 2032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 2028; + this.state = 2030; this.columnList(); } break; case 2: { - this.state = 2029; + this.state = 2031; this.match(PostgreSqlParser.STAR); } break; } } } - this.state = 2036; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2037; + this.state = 2039; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10252,7 +10253,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2044; + this.state = 2046; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); } @@ -10277,68 +10278,68 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 110, PostgreSqlParser.RULE_copyOptions); let _la: number; try { - this.state = 2063; + this.state = 2065; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2047; this.copyOptionsNoparens(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2046; + this.state = 2048; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2049; + this.state = 2051; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 2047; + this.state = 2049; this.copyOptionsNoparens(); } break; case 2: { - this.state = 2048; + this.state = 2050; this.copyGenericOptElem(); } break; } - this.state = 2058; + this.state = 2060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2051; + this.state = 2053; this.match(PostgreSqlParser.COMMA); - this.state = 2054; + this.state = 2056; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 2052; + this.state = 2054; this.copyOptionsNoparens(); } break; case 2: { - this.state = 2053; + this.state = 2055; this.copyGenericOptElem(); } break; } } } - this.state = 2060; + this.state = 2062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2061; + this.state = 2063; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10365,9 +10366,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2065; + this.state = 2067; this.colLabel(); - this.state = 2080; + this.state = 2082; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -10789,7 +10790,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2066; + this.state = 2068; this.booleanOrString(); } break; @@ -10798,39 +10799,39 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 2067; + this.state = 2069; this.numericOnly(); } break; case PostgreSqlParser.STAR: { - this.state = 2068; + this.state = 2070; this.match(PostgreSqlParser.STAR); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2069; + this.state = 2071; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2070; + this.state = 2072; this.optBooleanOrStringColumn(); - this.state = 2075; + this.state = 2077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2071; + this.state = 2073; this.match(PostgreSqlParser.COMMA); - this.state = 2072; + this.state = 2074; this.optBooleanOrStringColumn(); } } - this.state = 2077; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2078; + this.state = 2080; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10864,107 +10865,107 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2082; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2084; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2083; + this.state = 2085; this.optTemp(); } } - this.state = 2086; - this.match(PostgreSqlParser.KW_TABLE); this.state = 2088; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 2090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 2087; + this.state = 2089; this.ifNotExists(); } break; } - this.state = 2090; + this.state = 2092; this.tableNameCreate(); - this.state = 2156; + this.state = 2158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2091; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2093; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2092; + this.state = 2094; this.tableElementList(); } } - this.state = 2095; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 2097; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { - this.state = 2096; + this.state = 2098; this.optInherit(); } break; } - this.state = 2100; + this.state = 2102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 2099; + this.state = 2101; this.partitionSpec(); } break; } - this.state = 2103; + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2102; + this.state = 2104; this.tableAccessMethodClause(); } } - this.state = 2106; + this.state = 2108; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 2105; + this.state = 2107; this.optWith(); } break; } - this.state = 2109; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2108; + this.state = 2110; this.onCommitOption(); } } - this.state = 2112; + this.state = 2114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 2111; + this.state = 2113; this.optTableSpace(); } break; @@ -10973,66 +10974,66 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_OF: { - this.state = 2114; + this.state = 2116; this.match(PostgreSqlParser.KW_OF); - this.state = 2115; - this.anyName(); this.state = 2117; + this.anyName(); + this.state = 2119; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: { - this.state = 2116; + this.state = 2118; this.optTypedTableElEmentList(); } break; } - this.state = 2120; + this.state = 2122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 2119; + this.state = 2121; this.partitionSpec(); } break; } - this.state = 2123; + this.state = 2125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2122; + this.state = 2124; this.tableAccessMethodClause(); } } - this.state = 2126; + this.state = 2128; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 2125; + this.state = 2127; this.optWith(); } break; } - this.state = 2129; + this.state = 2131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2128; + this.state = 2130; this.onCommitOption(); } } - this.state = 2132; + this.state = 2134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 2131; + this.state = 2133; this.optTableSpace(); } break; @@ -11041,70 +11042,70 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_PARTITION: { - this.state = 2134; + this.state = 2136; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2135; + this.state = 2137; this.match(PostgreSqlParser.KW_OF); - this.state = 2136; - this.qualifiedName(); this.state = 2138; + this.qualifiedName(); + this.state = 2140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2137; + this.state = 2139; this.optTypedTableElEmentList(); } } - this.state = 2140; - this.partitionBoundSpec(); this.state = 2142; + this.partitionBoundSpec(); + this.state = 2144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 2141; + this.state = 2143; this.partitionSpec(); } break; } - this.state = 2145; + this.state = 2147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2144; + this.state = 2146; this.tableAccessMethodClause(); } } - this.state = 2148; + this.state = 2150; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 2147; + this.state = 2149; this.optWith(); } break; } - this.state = 2151; + this.state = 2153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2150; + this.state = 2152; this.onCommitOption(); } } - this.state = 2154; + this.state = 2156; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 2153; + this.state = 2155; this.optTableSpace(); } break; @@ -11135,20 +11136,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 116, PostgreSqlParser.RULE_optTemp); let _la: number; try { - this.state = 2163; + this.state = 2165; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEMPORARY: this.enterOuterAlt(localContext, 1); { - this.state = 2158; + this.state = 2160; this.match(PostgreSqlParser.KW_TEMPORARY); } break; case PostgreSqlParser.KW_TEMP: this.enterOuterAlt(localContext, 2); { - this.state = 2159; + this.state = 2161; this.match(PostgreSqlParser.KW_TEMP); } break; @@ -11156,7 +11157,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 3); { - this.state = 2160; + this.state = 2162; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11165,7 +11166,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2161; + this.state = 2163; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -11179,7 +11180,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNLOGGED: this.enterOuterAlt(localContext, 4); { - this.state = 2162; + this.state = 2164; this.match(PostgreSqlParser.KW_UNLOGGED); } break; @@ -11208,27 +11209,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2167; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2166; + this.state = 2168; this.typedTableElement(); - this.state = 2171; + this.state = 2173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2167; + this.state = 2169; this.match(PostgreSqlParser.COMMA); - this.state = 2168; + this.state = 2170; this.typedTableElement(); } } - this.state = 2173; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2174; + this.state = 2176; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -11253,21 +11254,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2176; + this.state = 2178; this.tableElement(); - this.state = 2181; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2177; + this.state = 2179; this.match(PostgreSqlParser.COMMA); - this.state = 2178; + this.state = 2180; this.tableElement(); } } - this.state = 2183; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11292,49 +11293,49 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 122, PostgreSqlParser.RULE_tableElement); let _la: number; try { - this.state = 2199; + this.state = 2201; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2186; + this.state = 2188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2184; + this.state = 2186; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2185; + this.state = 2187; this.colId(); } } - this.state = 2188; + this.state = 2190; this.constraintElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2189; + this.state = 2191; this.column_def(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2190; + this.state = 2192; this.match(PostgreSqlParser.KW_LIKE); - this.state = 2191; + this.state = 2193; this.qualifiedName(); - this.state = 2196; + this.state = 2198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 200 || _la === 224) { { { - this.state = 2192; + this.state = 2194; _la = this.tokenStream.LA(1); if(!(_la === 200 || _la === 224)) { this.errorHandler.recoverInline(this); @@ -11343,11 +11344,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2193; + this.state = 2195; this.tableLikeOption(); } } - this.state = 2198; + this.state = 2200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11374,37 +11375,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 124, PostgreSqlParser.RULE_typedTableElement); let _la: number; try { - this.state = 2217; + this.state = 2219; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2203; this.columnNameCreate(); - this.state = 2204; + this.state = 2206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2202; + this.state = 2204; this.match(PostgreSqlParser.KW_WITH); - this.state = 2203; + this.state = 2205; this.match(PostgreSqlParser.KW_OPTIONS); } } - this.state = 2209; + this.state = 2211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2059) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 2097923) !== 0) || _la === 438) { { { - this.state = 2206; + this.state = 2208; this.colConstraint(); } } - this.state = 2211; + this.state = 2213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11413,19 +11414,19 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2214; + this.state = 2216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2212; + this.state = 2214; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2213; + this.state = 2215; this.colId(); } } - this.state = 2216; + this.state = 2218; this.constraintElem(); } break; @@ -11453,63 +11454,63 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2221; this.columnNameCreate(); - this.state = 2220; - localContext._colType = this.typename(); this.state = 2222; + localContext._colType = this.typename(); + this.state = 2224; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 2221; + this.state = 2223; this.createGenericOptions(); } break; } - this.state = 2233; + this.state = 2235; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 2224; + this.state = 2226; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 2231; + this.state = 2233; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 2225; + this.state = 2227; this.match(PostgreSqlParser.KW_PLAIN); } break; case 2: { - this.state = 2226; + this.state = 2228; this.match(PostgreSqlParser.KW_EXTERNAL); } break; case 3: { - this.state = 2227; + this.state = 2229; this.match(PostgreSqlParser.KW_EXTENDED); } break; case 4: { - this.state = 2228; + this.state = 2230; this.match(PostgreSqlParser.KW_MAIN); } break; case 5: { - this.state = 2229; + this.state = 2231; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 6: { - this.state = 2230; + this.state = 2232; this.colId(); } break; @@ -11517,53 +11518,53 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 2237; + this.state = 2239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 543) { { - this.state = 2235; + this.state = 2237; this.match(PostgreSqlParser.KW_COMPRESSION); - this.state = 2236; + this.state = 2238; this.colId(); } } - this.state = 2240; + this.state = 2242; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 2239; + this.state = 2241; this.collateClause(); } break; } - this.state = 2244; + this.state = 2246; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 2242; + this.state = 2244; this.match(PostgreSqlParser.KW_WITH); - this.state = 2243; + this.state = 2245; this.match(PostgreSqlParser.KW_OPTIONS); } break; } - this.state = 2249; + this.state = 2251; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2246; + this.state = 2248; this.colConstraint(); } } } - this.state = 2251; + this.state = 2253; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } @@ -11590,48 +11591,48 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2254; + this.state = 2256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2252; + this.state = 2254; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2253; + this.state = 2255; this.colId(); } } - this.state = 2256; + this.state = 2258; this.colConstraintElem(); - this.state = 2261; + this.state = 2263; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 2258; + this.state = 2260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2257; + this.state = 2259; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2260; + this.state = 2262; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; } - this.state = 2265; + this.state = 2267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 2263; + this.state = 2265; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 2264; + this.state = 2266; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -11664,47 +11665,47 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 130, PostgreSqlParser.RULE_colConstraintElem); let _la: number; try { - this.state = 2347; + this.state = 2349; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2268; + this.state = 2270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2267; + this.state = 2269; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2270; + this.state = 2272; this.match(PostgreSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2271; - this.match(PostgreSqlParser.KW_UNIQUE); this.state = 2273; + this.match(PostgreSqlParser.KW_UNIQUE); + this.state = 2275; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 2272; + this.state = 2274; this.optDefinition(); } break; } - this.state = 2276; + this.state = 2278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2275; + this.state = 2277; this.optConstableSpace(); } } @@ -11714,59 +11715,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2278; + this.state = 2280; this.match(PostgreSqlParser.KW_UNIQUE); - this.state = 2284; + this.state = 2286; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2279; - this.match(PostgreSqlParser.KW_NULLS); this.state = 2281; + this.match(PostgreSqlParser.KW_NULLS); + this.state = 2283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2280; + this.state = 2282; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2283; + this.state = 2285; this.match(PostgreSqlParser.KW_DISTINCT); } break; } { - this.state = 2288; + this.state = 2290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 2286; + this.state = 2288; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2287; + this.state = 2289; this.indexParams(); } break; } - this.state = 2291; + this.state = 2293; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { - this.state = 2290; + this.state = 2292; this.withClause(); } break; } - this.state = 2294; + this.state = 2296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2293; + this.state = 2295; this.optConstableSpace(); } } @@ -11777,26 +11778,26 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2296; + this.state = 2298; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2297; - this.match(PostgreSqlParser.KW_KEY); this.state = 2299; + this.match(PostgreSqlParser.KW_KEY); + this.state = 2301; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { case 1: { - this.state = 2298; + this.state = 2300; this.optDefinition(); } break; } - this.state = 2302; + this.state = 2304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2301; + this.state = 2303; this.optConstableSpace(); } } @@ -11806,22 +11807,22 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2304; + this.state = 2306; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2305; + this.state = 2307; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2306; + this.state = 2308; this.expression(); - this.state = 2307; + this.state = 2309; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2310; + this.state = 2312; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 2308; + this.state = 2310; this.match(PostgreSqlParser.KW_NO); - this.state = 2309; + this.state = 2311; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -11831,50 +11832,50 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2312; + this.state = 2314; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 2313; + this.state = 2315; this.primaryExpression(0); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2314; + this.state = 2316; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 2315; + this.state = 2317; this.generatedWhen(); - this.state = 2316; + this.state = 2318; this.match(PostgreSqlParser.KW_AS); - this.state = 2333; + this.state = 2335; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IDENTITY: { - this.state = 2317; + this.state = 2319; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 2326; + this.state = 2328; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2318; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2320; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2319; + this.state = 2321; this.seqOptElem(); } } - this.state = 2322; + this.state = 2324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 2324; + this.state = 2326; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -11883,13 +11884,13 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2328; + this.state = 2330; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2329; + this.state = 2331; this.expression(); - this.state = 2330; + this.state = 2332; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2331; + this.state = 2333; this.match(PostgreSqlParser.KW_STORED); } break; @@ -11901,36 +11902,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2335; + this.state = 2337; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2336; - this.qualifiedName(); this.state = 2338; + this.qualifiedName(); + this.state = 2340; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 2337; + this.state = 2339; this.optColumnList(); } break; } - this.state = 2341; + this.state = 2343; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { - this.state = 2340; + this.state = 2342; this.keyMatch(); } break; } - this.state = 2344; + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2343; + this.state = 2345; this.keyActions(); } } @@ -11940,7 +11941,7 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2346; + this.state = 2348; this.collateClause(); } break; @@ -11964,22 +11965,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new GeneratedWhenContext(this.context, this.state); this.enterRule(localContext, 132, PostgreSqlParser.RULE_generatedWhen); try { - this.state = 2352; + this.state = 2354; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALWAYS: this.enterOuterAlt(localContext, 1); { - this.state = 2349; + this.state = 2351; this.match(PostgreSqlParser.KW_ALWAYS); } break; case PostgreSqlParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 2350; + this.state = 2352; this.match(PostgreSqlParser.KW_BY); - this.state = 2351; + this.state = 2353; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -12008,7 +12009,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2354; + this.state = 2356; _la = this.tokenStream.LA(1); if(!(_la === 30 || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 524321) !== 0) || _la === 219 || _la === 227 || _la === 342 || _la === 345 || _la === 438)) { this.errorHandler.recoverInline(this); @@ -12039,33 +12040,33 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2452; + this.state = 2454; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 1); { - this.state = 2356; + this.state = 2358; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2357; + this.state = 2359; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2358; + this.state = 2360; this.expression(); - this.state = 2359; + this.state = 2361; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2363; + this.state = 2365; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2360; + this.state = 2362; this.constraintAttributeElem(); } } } - this.state = 2365; + this.state = 2367; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } @@ -12075,21 +12076,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2369; + this.state = 2371; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UNIQUE: { - this.state = 2366; + this.state = 2368; this.match(PostgreSqlParser.KW_UNIQUE); } break; case PostgreSqlParser.KW_PRIMARY: { { - this.state = 2367; + this.state = 2369; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2368; + this.state = 2370; this.match(PostgreSqlParser.KW_KEY); } } @@ -12097,56 +12098,56 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2394; + this.state = 2396; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2371; - this.optColumnList(); this.state = 2373; + this.optColumnList(); + this.state = 2375; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2372; + this.state = 2374; this.columnListInclude(); } break; } - this.state = 2376; + this.state = 2378; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 2375; + this.state = 2377; this.optDefinition(); } break; } - this.state = 2379; + this.state = 2381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2378; + this.state = 2380; this.optConstableSpace(); } } - this.state = 2384; + this.state = 2386; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 221, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2381; + this.state = 2383; this.constraintAttributeElem(); } } } - this.state = 2386; + this.state = 2388; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 221, this.context); } @@ -12154,21 +12155,21 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_USING: { - this.state = 2387; + this.state = 2389; this.existingIndex(); - this.state = 2391; + this.state = 2393; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2388; + this.state = 2390; this.constraintAttributeElem(); } } } - this.state = 2393; + this.state = 2395; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); } @@ -12182,99 +12183,99 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 3); { - this.state = 2396; - this.match(PostgreSqlParser.KW_EXCLUDE); this.state = 2398; + this.match(PostgreSqlParser.KW_EXCLUDE); + this.state = 2400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2397; + this.state = 2399; this.tableAccessMethodClause(); } } - this.state = 2400; + this.state = 2402; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2401; + this.state = 2403; this.exclusionConstraintElem(); - this.state = 2406; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2402; + this.state = 2404; this.match(PostgreSqlParser.COMMA); - this.state = 2403; + this.state = 2405; this.exclusionConstraintElem(); } } - this.state = 2408; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2409; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 2411; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2413; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 226, this.context) ) { case 1: { - this.state = 2410; + this.state = 2412; this.columnListInclude(); } break; } - this.state = 2414; + this.state = 2416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 2413; + this.state = 2415; this.optDefinition(); } break; } - this.state = 2417; + this.state = 2419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2416; + this.state = 2418; this.optConstableSpace(); } } - this.state = 2424; + this.state = 2426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2419; + this.state = 2421; this.match(PostgreSqlParser.KW_WHERE); - this.state = 2420; + this.state = 2422; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2421; + this.state = 2423; this.expression(); - this.state = 2422; + this.state = 2424; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 2429; + this.state = 2431; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2426; + this.state = 2428; this.constraintAttributeElem(); } } } - this.state = 2431; + this.state = 2433; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } @@ -12283,59 +12284,59 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOREIGN: this.enterOuterAlt(localContext, 4); { - this.state = 2432; + this.state = 2434; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2433; + this.state = 2435; this.match(PostgreSqlParser.KW_KEY); - this.state = 2434; + this.state = 2436; this.optColumnList(); - this.state = 2435; + this.state = 2437; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2436; - this.qualifiedName(); this.state = 2438; + this.qualifiedName(); + this.state = 2440; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2437; + this.state = 2439; this.optColumnList(); } break; } - this.state = 2441; + this.state = 2443; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2440; + this.state = 2442; this.keyMatch(); } break; } - this.state = 2444; + this.state = 2446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2443; + this.state = 2445; this.keyActions(); } } - this.state = 2449; + this.state = 2451; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2446; + this.state = 2448; this.constraintAttributeElem(); } } } - this.state = 2451; + this.state = 2453; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); } @@ -12365,11 +12366,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2454; + this.state = 2456; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2455; + this.state = 2457; this.columnList(); - this.state = 2456; + this.state = 2458; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12394,27 +12395,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2458; + this.state = 2460; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2459; + this.state = 2461; this.columnNameCreate(); - this.state = 2464; + this.state = 2466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2460; + this.state = 2462; this.match(PostgreSqlParser.COMMA); - this.state = 2461; + this.state = 2463; this.columnNameCreate(); } } - this.state = 2466; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2467; + this.state = 2469; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12439,23 +12440,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2469; + this.state = 2471; this.columnName(); - this.state = 2474; + this.state = 2476; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2470; + this.state = 2472; this.match(PostgreSqlParser.COMMA); - this.state = 2471; + this.state = 2473; this.columnName(); } } } - this.state = 2476; + this.state = 2478; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } @@ -12481,9 +12482,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2477; + this.state = 2479; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2478; + this.state = 2480; this.optColumnList(); } } @@ -12508,9 +12509,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2480; + this.state = 2482; this.match(PostgreSqlParser.KW_MATCH); - this.state = 2481; + this.state = 2483; _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 284 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -12541,28 +12542,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2483; + this.state = 2485; this.indexElem(); - this.state = 2484; + this.state = 2486; this.match(PostgreSqlParser.KW_WITH); - this.state = 2491; + this.state = 2493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2485; + this.state = 2487; this.anyOperator(); } break; case 2: { - this.state = 2486; + this.state = 2488; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2487; + this.state = 2489; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2488; + this.state = 2490; this.anyOperator(); - this.state = 2489; + this.state = 2491; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -12588,20 +12589,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 150, PostgreSqlParser.RULE_keyActions); let _la: number; try { - this.state = 2501; + this.state = 2503; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2493; - this.keyUpdate(); this.state = 2495; + this.keyUpdate(); + this.state = 2497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2494; + this.state = 2496; this.keyDelete(); } } @@ -12611,14 +12612,14 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2497; - this.keyDelete(); this.state = 2499; + this.keyDelete(); + this.state = 2501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2498; + this.state = 2500; this.keyUpdate(); } } @@ -12647,11 +12648,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2503; + this.state = 2505; this.match(PostgreSqlParser.KW_ON); - this.state = 2504; + this.state = 2506; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2505; + this.state = 2507; this.keyAction(); } } @@ -12675,11 +12676,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2507; + this.state = 2509; this.match(PostgreSqlParser.KW_ON); - this.state = 2508; + this.state = 2510; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2509; + this.state = 2511; this.keyAction(); } } @@ -12702,38 +12703,38 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 156, PostgreSqlParser.RULE_keyAction); let _la: number; try { - this.state = 2520; + this.state = 2522; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 1); { - this.state = 2511; + this.state = 2513; this.match(PostgreSqlParser.KW_NO); - this.state = 2512; + this.state = 2514; this.match(PostgreSqlParser.KW_ACTION); } break; case PostgreSqlParser.KW_RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 2513; + this.state = 2515; this.match(PostgreSqlParser.KW_RESTRICT); } break; case PostgreSqlParser.KW_CASCADE: this.enterOuterAlt(localContext, 3); { - this.state = 2514; + this.state = 2516; this.match(PostgreSqlParser.KW_CASCADE); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2515; + this.state = 2517; this.match(PostgreSqlParser.KW_SET); - this.state = 2516; + this.state = 2518; _la = this.tokenStream.LA(1); if(!(_la === 53 || _la === 78)) { this.errorHandler.recoverInline(this); @@ -12742,12 +12743,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2518; + this.state = 2520; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2517; + this.state = 2519; this.columnList(); } break; @@ -12778,13 +12779,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2522; + this.state = 2524; this.match(PostgreSqlParser.KW_INHERITS); - this.state = 2523; + this.state = 2525; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2524; + this.state = 2526; this.qualifiedNameList(); - this.state = 2525; + this.state = 2527; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12809,33 +12810,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2527; + this.state = 2529; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2528; + this.state = 2530; this.match(PostgreSqlParser.KW_BY); - this.state = 2529; + this.state = 2531; this.colId(); - this.state = 2530; + this.state = 2532; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2531; + this.state = 2533; this.partElem(); - this.state = 2536; + this.state = 2538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2532; + this.state = 2534; this.match(PostgreSqlParser.COMMA); - this.state = 2533; + this.state = 2535; this.partElem(); } } - this.state = 2538; + this.state = 2540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2539; + this.state = 2541; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12860,50 +12861,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2547; + this.state = 2549; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2541; + this.state = 2543; this.columnName(); } break; case 2: { - this.state = 2542; + this.state = 2544; this.funcExprWindowless(); } break; case 3: { { - this.state = 2543; + this.state = 2545; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2544; + this.state = 2546; this.expression(); - this.state = 2545; + this.state = 2547; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 2550; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 2549; + this.state = 2551; this.collateClause(); } } - this.state = 2553; + this.state = 2555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2552; + this.state = 2554; this.anyName(); } } @@ -12930,9 +12931,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2555; + this.state = 2557; this.match(PostgreSqlParser.KW_USING); - this.state = 2556; + this.state = 2558; this.colId(); } } @@ -12955,22 +12956,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 166, PostgreSqlParser.RULE_optWith); let _la: number; try { - this.state = 2562; + this.state = 2564; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2558; + this.state = 2560; this.match(PostgreSqlParser.KW_WITH); - this.state = 2559; + this.state = 2561; this.relOptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2560; + this.state = 2562; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -12979,7 +12980,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2561; + this.state = 2563; this.match(PostgreSqlParser.KW_OIDS); } break; @@ -13005,32 +13006,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2564; + this.state = 2566; this.match(PostgreSqlParser.KW_ON); - this.state = 2565; + this.state = 2567; this.match(PostgreSqlParser.KW_COMMIT); - this.state = 2571; + this.state = 2573; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: { - this.state = 2566; + this.state = 2568; this.match(PostgreSqlParser.KW_DROP); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 2567; + this.state = 2569; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2568; + this.state = 2570; this.match(PostgreSqlParser.KW_ROWS); } break; case PostgreSqlParser.KW_PRESERVE: { - this.state = 2569; + this.state = 2571; this.match(PostgreSqlParser.KW_PRESERVE); - this.state = 2570; + this.state = 2572; this.match(PostgreSqlParser.KW_ROWS); } break; @@ -13059,9 +13060,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2573; + this.state = 2575; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 2574; + this.state = 2576; this.tableSpaceName(); } } @@ -13085,11 +13086,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2576; + this.state = 2578; this.match(PostgreSqlParser.KW_USING); - this.state = 2577; + this.state = 2579; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2578; + this.state = 2580; this.optTableSpace(); } } @@ -13113,11 +13114,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2582; this.match(PostgreSqlParser.KW_USING); - this.state = 2581; + this.state = 2583; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2582; + this.state = 2584; this.colId(); } } @@ -13142,62 +13143,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2584; + this.state = 2586; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2585; + this.state = 2587; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2590; + this.state = 2592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2587; + this.state = 2589; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2586; + this.state = 2588; this.ifNotExists(); } break; } - this.state = 2589; + this.state = 2591; this.anyName(); } } - this.state = 2593; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2592; + this.state = 2594; this.optColumnList(); } } - this.state = 2595; + this.state = 2597; this.match(PostgreSqlParser.KW_ON); - this.state = 2605; + this.state = 2607; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2596; + this.state = 2598; this.columnExpr(); - this.state = 2601; + this.state = 2603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2597; + this.state = 2599; this.match(PostgreSqlParser.COMMA); - this.state = 2598; + this.state = 2600; this.columnExpr(); } } - this.state = 2603; + this.state = 2605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13205,12 +13206,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 2604; + this.state = 2606; this.exprList(); } break; } - this.state = 2607; + this.state = 2609; this.fromClause(); } } @@ -13234,27 +13235,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2609; + this.state = 2611; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2610; - this.match(PostgreSqlParser.KW_STATISTICS); this.state = 2612; + this.match(PostgreSqlParser.KW_STATISTICS); + this.state = 2614; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2611; + this.state = 2613; this.ifExists(); } break; } - this.state = 2614; + this.state = 2616; this.anyName(); - this.state = 2615; + this.state = 2617; this.match(PostgreSqlParser.KW_SET); - this.state = 2616; + this.state = 2618; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2617; + this.state = 2619; this.signedConst(); } } @@ -13280,42 +13281,42 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2619; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2621; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2620; + this.state = 2622; this.optTemp(); } } - this.state = 2623; - this.match(PostgreSqlParser.KW_TABLE); this.state = 2625; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 2627; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2624; + this.state = 2626; this.ifNotExists(); } break; } - this.state = 2627; + this.state = 2629; this.createAsTarget(); - this.state = 2628; + this.state = 2630; this.match(PostgreSqlParser.KW_AS); - this.state = 2629; - this.selectStmt(); this.state = 2631; + this.selectStmt(); + this.state = 2633; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2630; + this.state = 2632; this.optWithData(); } break; @@ -13343,54 +13344,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2633; - this.tableNameCreate(); this.state = 2635; + this.tableNameCreate(); + this.state = 2637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2634; + this.state = 2636; this.columnListCreate(); } } - this.state = 2638; + this.state = 2640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2637; + this.state = 2639; this.tableAccessMethodClause(); } } - this.state = 2641; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 2640; + this.state = 2642; this.optWith(); } } - this.state = 2644; + this.state = 2646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2643; + this.state = 2645; this.onCommitOption(); } } - this.state = 2647; + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2646; + this.state = 2648; this.optTableSpace(); } } @@ -13417,22 +13418,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2649; + this.state = 2651; this.match(PostgreSqlParser.KW_WITH); - this.state = 2653; + this.state = 2655; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 2650; + this.state = 2652; this.match(PostgreSqlParser.KW_DATA); } break; case PostgreSqlParser.KW_NO: { - this.state = 2651; + this.state = 2653; this.match(PostgreSqlParser.KW_NO); - this.state = 2652; + this.state = 2654; this.match(PostgreSqlParser.KW_DATA); } break; @@ -13463,84 +13464,84 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2655; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2657; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 2656; + this.state = 2658; this.match(PostgreSqlParser.KW_UNLOGGED); } } - this.state = 2659; + this.state = 2661; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2660; - this.match(PostgreSqlParser.KW_VIEW); this.state = 2662; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 2664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2661; + this.state = 2663; this.ifNotExists(); } break; } - this.state = 2664; - this.viewNameCreate(); this.state = 2666; + this.viewNameCreate(); + this.state = 2668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2665; + this.state = 2667; this.columnListCreate(); } } - this.state = 2669; + this.state = 2671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2668; + this.state = 2670; this.tableAccessMethodClause(); } } - this.state = 2672; + this.state = 2674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2671; + this.state = 2673; this.optRelOptions(); } } - this.state = 2675; + this.state = 2677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2674; + this.state = 2676; this.optTableSpace(); } } - this.state = 2677; + this.state = 2679; this.match(PostgreSqlParser.KW_AS); - this.state = 2678; - this.selectStmt(); this.state = 2680; + this.selectStmt(); + this.state = 2682; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2679; + this.state = 2681; this.optWithData(); } break; @@ -13568,30 +13569,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2682; + this.state = 2684; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 2683; + this.state = 2685; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2684; - this.match(PostgreSqlParser.KW_VIEW); this.state = 2686; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 2688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 2685; + this.state = 2687; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 2688; - this.viewName(); this.state = 2690; + this.viewName(); + this.state = 2692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2689; + this.state = 2691; this.optWithData(); } break; @@ -13620,38 +13621,38 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2692; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2694; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2693; + this.state = 2695; this.optTemp(); } } - this.state = 2696; - this.match(PostgreSqlParser.KW_SEQUENCE); this.state = 2698; + this.match(PostgreSqlParser.KW_SEQUENCE); + this.state = 2700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2697; + this.state = 2699; this.ifNotExists(); } break; } - this.state = 2700; + this.state = 2702; this.qualifiedName(); - this.state = 2706; + this.state = 2708; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2702; + this.state = 2704; this.errorHandler.sync(this); alternative = 1; do { @@ -13659,7 +13660,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2701; + this.state = 2703; this.seqOptElem(); } } @@ -13667,7 +13668,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2704; + this.state = 2706; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13697,23 +13698,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2708; + this.state = 2710; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2709; - this.match(PostgreSqlParser.KW_SEQUENCE); this.state = 2711; + this.match(PostgreSqlParser.KW_SEQUENCE); + this.state = 2713; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { - this.state = 2710; + this.state = 2712; this.ifExists(); } break; } - this.state = 2713; - this.qualifiedName(); this.state = 2715; + this.qualifiedName(); + this.state = 2717; this.errorHandler.sync(this); alternative = 1; do { @@ -13721,7 +13722,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2714; + this.state = 2716; this.seqOptElem(); } } @@ -13729,7 +13730,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2717; + this.state = 2719; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13754,29 +13755,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 194, PostgreSqlParser.RULE_seqOptElem); let _la: number; try { - this.state = 2752; + this.state = 2754; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: this.enterOuterAlt(localContext, 1); { - this.state = 2719; + this.state = 2721; this.match(PostgreSqlParser.KW_AS); - this.state = 2720; + this.state = 2722; this.simpleTypeName(); } break; case PostgreSqlParser.KW_CACHE: this.enterOuterAlt(localContext, 2); { - this.state = 2721; - this.match(PostgreSqlParser.KW_CACHE); this.state = 2723; + this.match(PostgreSqlParser.KW_CACHE); + this.state = 2725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574 || _la === 576) { { - this.state = 2722; + this.state = 2724; this.numericOnly(); } } @@ -13786,19 +13787,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_INCREMENT: this.enterOuterAlt(localContext, 3); { - this.state = 2725; - this.match(PostgreSqlParser.KW_INCREMENT); this.state = 2727; + this.match(PostgreSqlParser.KW_INCREMENT); + this.state = 2729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 2726; + this.state = 2728; this.match(PostgreSqlParser.KW_BY); } } - this.state = 2729; + this.state = 2731; this.numericOnly(); } break; @@ -13806,7 +13807,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINVALUE: this.enterOuterAlt(localContext, 4); { - this.state = 2730; + this.state = 2732; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13815,16 +13816,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2731; + this.state = 2733; this.numericOnly(); } break; case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 5); { - this.state = 2732; + this.state = 2734; this.match(PostgreSqlParser.KW_NO); - this.state = 2733; + this.state = 2735; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13838,65 +13839,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OWNED: this.enterOuterAlt(localContext, 6); { - this.state = 2734; + this.state = 2736; this.match(PostgreSqlParser.KW_OWNED); - this.state = 2735; + this.state = 2737; this.match(PostgreSqlParser.KW_BY); - this.state = 2736; + this.state = 2738; this.columnName(); } break; case PostgreSqlParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 7); { - this.state = 2737; + this.state = 2739; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2738; + this.state = 2740; this.match(PostgreSqlParser.KW_NAME); - this.state = 2739; + this.state = 2741; this.anyName(); } break; case PostgreSqlParser.KW_START: this.enterOuterAlt(localContext, 8); { - this.state = 2740; - this.match(PostgreSqlParser.KW_START); this.state = 2742; + this.match(PostgreSqlParser.KW_START); + this.state = 2744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2741; + this.state = 2743; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 2744; + this.state = 2746; this.numericOnly(); } break; case PostgreSqlParser.KW_RESTART: this.enterOuterAlt(localContext, 9); { - this.state = 2745; - this.match(PostgreSqlParser.KW_RESTART); this.state = 2747; + this.match(PostgreSqlParser.KW_RESTART); + this.state = 2749; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2746; + this.state = 2748; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2750; + this.state = 2752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574 || _la === 576) { { - this.state = 2749; + this.state = 2751; this.numericOnly(); } } @@ -13926,18 +13927,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 196, PostgreSqlParser.RULE_numericOnly); let _la: number; try { - this.state = 2759; + this.state = 2761; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2755; + this.state = 2757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 2754; + this.state = 2756; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -13949,14 +13950,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 2757; + this.state = 2759; this.match(PostgreSqlParser.Numeric); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2758; + this.state = 2760; this.signedConst(); } break; @@ -13983,79 +13984,79 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2761; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2763; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 2762; + this.state = 2764; this.orReplaceOpt(); } } - this.state = 2766; + this.state = 2768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 359) { { - this.state = 2765; + this.state = 2767; this.match(PostgreSqlParser.KW_TRUSTED); } } - this.state = 2769; + this.state = 2771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 2768; + this.state = 2770; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 2771; + this.state = 2773; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2772; + this.state = 2774; this.colId(); - this.state = 2785; + this.state = 2787; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2773; + this.state = 2775; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 2774; + this.state = 2776; this.anyName(); - this.state = 2777; + this.state = 2779; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2775; + this.state = 2777; this.match(PostgreSqlParser.KW_INLINE); - this.state = 2776; + this.state = 2778; this.anyName(); } break; } - this.state = 2783; + this.state = 2785; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2779; + this.state = 2781; this.match(PostgreSqlParser.KW_VALIDATOR); - this.state = 2780; + this.state = 2782; this.anyName(); } break; case 2: { - this.state = 2781; + this.state = 2783; this.match(PostgreSqlParser.KW_NO); - this.state = 2782; + this.state = 2784; this.match(PostgreSqlParser.KW_VALIDATOR); } break; @@ -14086,32 +14087,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2787; + this.state = 2789; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2788; + this.state = 2790; this.optTableSpace(); - this.state = 2791; + this.state = 2793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 282) { { - this.state = 2789; + this.state = 2791; this.match(PostgreSqlParser.KW_OWNER); - this.state = 2790; + this.state = 2792; this.roleSpec(); } } - this.state = 2793; + this.state = 2795; this.match(PostgreSqlParser.KW_LOCATION); - this.state = 2794; - this.stringConst(); this.state = 2796; + this.stringConst(); + this.state = 2798; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { - this.state = 2795; + this.state = 2797; this.optRelOptions(); } break; @@ -14140,53 +14141,53 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2798; + this.state = 2800; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2799; - this.match(PostgreSqlParser.KW_EXTENSION); this.state = 2801; + this.match(PostgreSqlParser.KW_EXTENSION); + this.state = 2803; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2800; + this.state = 2802; this.ifNotExists(); } break; } - this.state = 2803; - this.colId(); this.state = 2805; + this.colId(); + this.state = 2807; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2804; + this.state = 2806; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2814; + this.state = 2816; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 299, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2812; + this.state = 2814; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SCHEMA: { - this.state = 2807; + this.state = 2809; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 2808; + this.state = 2810; this.schemaName(); } break; case PostgreSqlParser.KW_FROM: case PostgreSqlParser.KW_VERSION: { - this.state = 2809; + this.state = 2811; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -14195,13 +14196,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2810; + this.state = 2812; this.nonReservedWordOrStringConst(); } break; case PostgreSqlParser.KW_CASCADE: { - this.state = 2811; + this.state = 2813; this.match(PostgreSqlParser.KW_CASCADE); } break; @@ -14210,7 +14211,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2816; + this.state = 2818; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 299, this.context); } @@ -14237,27 +14238,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2817; + this.state = 2819; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2818; + this.state = 2820; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2819; + this.state = 2821; this.colId(); - this.state = 2820; + this.state = 2822; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2825; + this.state = 2827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 94) { { { - this.state = 2821; + this.state = 2823; this.match(PostgreSqlParser.KW_TO); - this.state = 2822; + this.state = 2824; this.nonReservedWordOrStringConst(); } } - this.state = 2827; + this.state = 2829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14284,13 +14285,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2828; + this.state = 2830; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2829; + this.state = 2831; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2830; + this.state = 2832; this.colId(); - this.state = 2831; + this.state = 2833; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -14299,44 +14300,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2864; + this.state = 2866; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2832; + this.state = 2834; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 2833; + this.state = 2835; this.match(PostgreSqlParser.KW_FOR); - this.state = 2834; + this.state = 2836; this.typename(); - this.state = 2835; + this.state = 2837; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2836; + this.state = 2838; this.colId(); } break; case 2: { - this.state = 2838; + this.state = 2840; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 2839; + this.state = 2841; this.routineWithArgTypes(); } break; case 3: { - this.state = 2840; + this.state = 2842; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 2841; + this.state = 2843; this.procedureWithArgTypes(); } break; case 4: { - this.state = 2842; + this.state = 2844; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2843; + this.state = 2845; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -14345,31 +14346,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2844; + this.state = 2846; this.anyName(); - this.state = 2845; + this.state = 2847; this.tableAccessMethodClause(); } break; case 5: { - this.state = 2847; + this.state = 2849; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2848; + this.state = 2850; this.operatorWithArgTypes(); } break; case 6: { - this.state = 2849; + this.state = 2851; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 2850; + this.state = 2852; this.functionWithArgTypes(); } break; case 7: { - this.state = 2851; + this.state = 2853; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14378,43 +14379,43 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2852; + this.state = 2854; this.typename(); } break; case 8: { - this.state = 2853; - this.match(PostgreSqlParser.KW_CAST); - this.state = 2854; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2855; - this.typename(); + this.match(PostgreSqlParser.KW_CAST); this.state = 2856; - this.match(PostgreSqlParser.KW_AS); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2857; this.typename(); this.state = 2858; + this.match(PostgreSqlParser.KW_AS); + this.state = 2859; + this.typename(); + this.state = 2860; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 9: { - this.state = 2860; + this.state = 2862; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 2861; + this.state = 2863; this.aggregateWithArgTypes(); } break; case 10: { - this.state = 2862; + this.state = 2864; this.objectTypeName(); } break; case 11: { - this.state = 2863; + this.state = 2865; this.objectTypeAnyName(); } break; @@ -14442,22 +14443,22 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2866; + this.state = 2868; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2867; + this.state = 2869; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2868; + this.state = 2870; this.match(PostgreSqlParser.KW_DATA); - this.state = 2869; + this.state = 2871; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2870; + this.state = 2872; this.colId(); - this.state = 2876; + this.state = 2878; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2872; + this.state = 2874; this.errorHandler.sync(this); alternative = 1; do { @@ -14465,7 +14466,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2871; + this.state = 2873; this.fdwOption(); } } @@ -14473,19 +14474,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2874; + this.state = 2876; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 302, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 2879; + this.state = 2881; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2878; + this.state = 2880; this.createGenericOptions(); } break; @@ -14511,14 +14512,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 210, PostgreSqlParser.RULE_fdwOption); let _la: number; try { - this.state = 2887; + this.state = 2889; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HANDLER: case PostgreSqlParser.KW_VALIDATOR: this.enterOuterAlt(localContext, 1); { - this.state = 2881; + this.state = 2883; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14527,12 +14528,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2883; + this.state = 2885; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2882; + this.state = 2884; this.anyName(); } break; @@ -14542,9 +14543,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 2885; + this.state = 2887; this.match(PostgreSqlParser.KW_NO); - this.state = 2886; + this.state = 2888; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14581,50 +14582,50 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2889; + this.state = 2891; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2890; + this.state = 2892; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2891; + this.state = 2893; this.match(PostgreSqlParser.KW_DATA); - this.state = 2892; + this.state = 2894; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2893; + this.state = 2895; this.colId(); - this.state = 2907; + this.state = 2909; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2899; + this.state = 2901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215 || _la === 269 || _la === 373) { { - this.state = 2895; + this.state = 2897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2894; + this.state = 2896; this.fdwOption(); } } - this.state = 2897; + this.state = 2899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 215 || _la === 269 || _la === 373); } } - this.state = 2901; + this.state = 2903; this.alterGenericOptions(); } break; case 2: { - this.state = 2903; + this.state = 2905; this.errorHandler.sync(this); alternative = 1; do { @@ -14632,7 +14633,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2902; + this.state = 2904; this.fdwOption(); } } @@ -14640,7 +14641,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2905; + this.state = 2907; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 309, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -14670,29 +14671,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2909; + this.state = 2911; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2910; + this.state = 2912; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2911; + this.state = 2913; this.genericOptionElem(); - this.state = 2916; + this.state = 2918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2912; + this.state = 2914; this.match(PostgreSqlParser.COMMA); - this.state = 2913; + this.state = 2915; this.genericOptionElem(); } } - this.state = 2918; + this.state = 2920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2919; + this.state = 2921; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14717,29 +14718,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2921; + this.state = 2923; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2922; + this.state = 2924; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2923; + this.state = 2925; this.alterGenericOptionElem(); - this.state = 2928; + this.state = 2930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2924; + this.state = 2926; this.match(PostgreSqlParser.COMMA); - this.state = 2925; + this.state = 2927; this.alterGenericOptionElem(); } } - this.state = 2930; + this.state = 2932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2931; + this.state = 2933; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14764,7 +14765,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2933; + this.state = 2935; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -14773,7 +14774,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2934; + this.state = 2936; this.genericOptionElem(); } } @@ -14797,9 +14798,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2936; + this.state = 2938; this.colLabel(); - this.state = 2937; + this.state = 2939; this.stringConst(); } } @@ -14824,58 +14825,58 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2939; + this.state = 2941; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2940; - this.match(PostgreSqlParser.KW_SERVER); this.state = 2942; + this.match(PostgreSqlParser.KW_SERVER); + this.state = 2944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2941; + this.state = 2943; this.ifNotExists(); } break; } - this.state = 2944; + this.state = 2946; this.colId(); - this.state = 2947; + this.state = 2949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 2945; + this.state = 2947; this.match(PostgreSqlParser.KW_TYPE); - this.state = 2946; + this.state = 2948; this.stringConst(); } } - this.state = 2950; + this.state = 2952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 375) { { - this.state = 2949; + this.state = 2951; this.foreignServerVersion(); } } - this.state = 2952; + this.state = 2954; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2953; + this.state = 2955; this.match(PostgreSqlParser.KW_DATA); - this.state = 2954; + this.state = 2956; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2955; - this.colId(); this.state = 2957; + this.colId(); + this.state = 2959; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2956; + this.state = 2958; this.createGenericOptions(); } break; @@ -14902,9 +14903,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2959; + this.state = 2961; this.match(PostgreSqlParser.KW_VERSION); - this.state = 2962; + this.state = 2964; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -14912,13 +14913,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2960; + this.state = 2962; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 2961; + this.state = 2963; this.match(PostgreSqlParser.KW_NULL); } break; @@ -14947,31 +14948,31 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2964; + this.state = 2966; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2965; + this.state = 2967; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2966; + this.state = 2968; this.colId(); - this.state = 2972; + this.state = 2974; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPTIONS: { - this.state = 2967; + this.state = 2969; this.alterGenericOptions(); } break; case PostgreSqlParser.KW_VERSION: { - this.state = 2968; - this.foreignServerVersion(); this.state = 2970; + this.foreignServerVersion(); + this.state = 2972; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2969; + this.state = 2971; this.alterGenericOptions(); } break; @@ -15002,65 +15003,65 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 228, PostgreSqlParser.RULE_createForeignTableStmt); let _la: number; try { - this.state = 3013; + this.state = 3015; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: localContext = new CreateForeignTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2974; + this.state = 2976; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2975; + this.state = 2977; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2976; - this.match(PostgreSqlParser.KW_TABLE); this.state = 2978; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 2980; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2977; + this.state = 2979; this.ifNotExists(); } break; } - this.state = 2980; + this.state = 2982; this.tableNameCreate(); - this.state = 2981; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2983; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2982; + this.state = 2984; this.tableElementList(); } } - this.state = 2985; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 2987; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 2986; + this.state = 2988; this.optInherit(); } } - this.state = 2989; + this.state = 2991; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2990; - this.colId(); this.state = 2992; + this.colId(); + this.state = 2994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2991; + this.state = 2993; this.createGenericOptions(); } break; @@ -15071,52 +15072,52 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreatePartitionForeignTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2994; + this.state = 2996; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2995; + this.state = 2997; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2996; - this.match(PostgreSqlParser.KW_TABLE); this.state = 2998; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 3000; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2997; + this.state = 2999; this.ifNotExists(); } break; } - this.state = 3000; + this.state = 3002; this.tableNameCreate(); - this.state = 3001; + this.state = 3003; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 3002; + this.state = 3004; this.match(PostgreSqlParser.KW_OF); - this.state = 3003; - this.tableName(); this.state = 3005; + this.tableName(); + this.state = 3007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3004; + this.state = 3006; this.optTypedTableElEmentList(); } } - this.state = 3007; + this.state = 3009; this.partitionBoundSpec(); - this.state = 3008; + this.state = 3010; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3009; - this.colId(); this.state = 3011; + this.colId(); + this.state = 3013; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 3010; + this.state = 3012; this.createGenericOptions(); } break; @@ -15146,64 +15147,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3015; + this.state = 3017; this.match(PostgreSqlParser.KW_IMPORT); - this.state = 3016; + this.state = 3018; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3017; + this.state = 3019; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3018; + this.state = 3020; this.schemaName(); - this.state = 3028; + this.state = 3030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59 || _la === 74) { { - this.state = 3022; + this.state = 3024; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 3019; + this.state = 3021; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 3020; + this.state = 3022; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_EXCEPT: { - this.state = 3021; + this.state = 3023; this.match(PostgreSqlParser.KW_EXCEPT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3024; + this.state = 3026; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3025; + this.state = 3027; this.relationExprList(); - this.state = 3026; + this.state = 3028; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 3030; - this.match(PostgreSqlParser.KW_FROM); - this.state = 3031; - this.match(PostgreSqlParser.KW_SERVER); this.state = 3032; - this.colId(); + this.match(PostgreSqlParser.KW_FROM); this.state = 3033; - this.match(PostgreSqlParser.KW_INTO); + this.match(PostgreSqlParser.KW_SERVER); this.state = 3034; this.colId(); + this.state = 3035; + this.match(PostgreSqlParser.KW_INTO); this.state = 3036; + this.colId(); + this.state = 3038; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 3035; + this.state = 3037; this.createGenericOptions(); } break; @@ -15231,25 +15232,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3038; + this.state = 3040; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3039; + this.state = 3041; this.match(PostgreSqlParser.KW_USER); - this.state = 3040; - this.match(PostgreSqlParser.KW_MAPPING); this.state = 3042; + this.match(PostgreSqlParser.KW_MAPPING); + this.state = 3044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3041; + this.state = 3043; this.ifNotExists(); } } - this.state = 3044; + this.state = 3046; this.match(PostgreSqlParser.KW_FOR); - this.state = 3047; + this.state = 3049; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -15671,29 +15672,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3045; + this.state = 3047; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3046; + this.state = 3048; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3049; + this.state = 3051; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3050; - this.colId(); this.state = 3052; + this.colId(); + this.state = 3054; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 3051; + this.state = 3053; this.createGenericOptions(); } break; @@ -15720,15 +15721,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3054; + this.state = 3056; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3055; + this.state = 3057; this.match(PostgreSqlParser.KW_USER); - this.state = 3056; + this.state = 3058; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3057; + this.state = 3059; this.match(PostgreSqlParser.KW_FOR); - this.state = 3060; + this.state = 3062; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -16150,24 +16151,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3058; + this.state = 3060; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3059; + this.state = 3061; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3062; + this.state = 3064; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3063; + this.state = 3065; this.colId(); - this.state = 3064; + this.state = 3066; this.alterGenericOptions(); } } @@ -16192,35 +16193,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3066; + this.state = 3068; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3067; + this.state = 3069; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3068; + this.state = 3070; this.colId(); - this.state = 3069; + this.state = 3071; this.match(PostgreSqlParser.KW_ON); - this.state = 3070; + this.state = 3072; this.qualifiedName(); - this.state = 3077; + this.state = 3079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 3071; + this.state = 3073; this.match(PostgreSqlParser.KW_AS); - this.state = 3075; + this.state = 3077; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_PERMISSIVE: { - this.state = 3072; + this.state = 3074; this.match(PostgreSqlParser.KW_PERMISSIVE); } break; case PostgreSqlParser.KW_RESTRICTIVE: { - this.state = 3073; + this.state = 3075; this.match(PostgreSqlParser.KW_RESTRICTIVE); } break; @@ -16568,7 +16569,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3074; + this.state = 3076; this.identifier(); } break; @@ -16578,14 +16579,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 3081; + this.state = 3083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3079; + this.state = 3081; this.match(PostgreSqlParser.KW_FOR); - this.state = 3080; + this.state = 3082; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -16597,34 +16598,34 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3085; + this.state = 3087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3083; + this.state = 3085; this.match(PostgreSqlParser.KW_TO); - this.state = 3084; + this.state = 3086; this.roleList(); } } - this.state = 3088; + this.state = 3090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3087; + this.state = 3089; this.rowSecurityOptionalExpr(); } } - this.state = 3091; + this.state = 3093; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: { - this.state = 3090; + this.state = 3092; this.rowSecurityOptionalWithCheck(); } break; @@ -16652,44 +16653,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3093; + this.state = 3095; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3094; + this.state = 3096; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3095; + this.state = 3097; this.colId(); - this.state = 3096; + this.state = 3098; this.match(PostgreSqlParser.KW_ON); - this.state = 3097; + this.state = 3099; this.qualifiedName(); - this.state = 3100; + this.state = 3102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3098; + this.state = 3100; this.match(PostgreSqlParser.KW_TO); - this.state = 3099; + this.state = 3101; this.roleList(); } } - this.state = 3103; + this.state = 3105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3102; + this.state = 3104; this.rowSecurityOptionalExpr(); } } - this.state = 3106; + this.state = 3108; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 3105; + this.state = 3107; this.rowSecurityOptionalWithCheck(); } break; @@ -16718,51 +16719,51 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3108; + this.state = 3110; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3109; + this.state = 3111; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3110; - this.procedureName(); this.state = 3112; + this.procedureName(); + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3111; + this.state = 3113; this.funcArgs(); } } - this.state = 3140; + this.state = 3142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: { - this.state = 3114; + this.state = 3116; this.procedureAction(); - this.state = 3118; + this.state = 3120; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3115; + this.state = 3117; this.procedureAction(); } } } - this.state = 3120; + this.state = 3122; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); } - this.state = 3122; + this.state = 3124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 3121; + this.state = 3123; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -16771,53 +16772,53 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 3124; + this.state = 3126; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3125; + this.state = 3127; this.match(PostgreSqlParser.KW_TO); - this.state = 3126; + this.state = 3128; this.procedureNameCreate(); } break; case 3: { - this.state = 3127; + this.state = 3129; this.match(PostgreSqlParser.KW_OWNER); - this.state = 3128; + this.state = 3130; this.match(PostgreSqlParser.KW_TO); - this.state = 3129; + this.state = 3131; this.roleSpec(); } break; case 4: { - this.state = 3130; + this.state = 3132; this.match(PostgreSqlParser.KW_SET); - this.state = 3131; + this.state = 3133; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3132; + this.state = 3134; this.schemaNameCreate(); } break; case 5: { - this.state = 3134; + this.state = 3136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 3133; + this.state = 3135; this.match(PostgreSqlParser.KW_NO); } } - this.state = 3136; + this.state = 3138; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 3137; + this.state = 3139; this.match(PostgreSqlParser.KW_ON); - this.state = 3138; + this.state = 3140; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 3139; + this.state = 3141; this.colId(); } break; @@ -16843,48 +16844,48 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 242, PostgreSqlParser.RULE_procedureAction); let _la: number; try { - this.state = 3171; + this.state = 3173; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3152; + this.state = 3154; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 3143; + this.state = 3145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3142; + this.state = 3144; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3145; + this.state = 3147; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3146; + this.state = 3148; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 3148; + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3147; + this.state = 3149; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3150; + this.state = 3152; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3151; + this.state = 3153; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -16894,11 +16895,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3154; + this.state = 3156; this.match(PostgreSqlParser.KW_SET); - this.state = 3155; + this.state = 3157; this.colId(); - this.state = 3156; + this.state = 3158; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -16907,18 +16908,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3159; + this.state = 3161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 3157; + this.state = 3159; this.colId(); } break; case 2: { - this.state = 3158; + this.state = 3160; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -16928,22 +16929,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3161; + this.state = 3163; this.match(PostgreSqlParser.KW_SET); - this.state = 3162; + this.state = 3164; this.colId(); - this.state = 3163; + this.state = 3165; this.match(PostgreSqlParser.KW_FROM); - this.state = 3164; + this.state = 3166; this.match(PostgreSqlParser.KW_CURRENT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3166; + this.state = 3168; this.match(PostgreSqlParser.KW_RESET); - this.state = 3169; + this.state = 3171; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -17341,13 +17342,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3167; + this.state = 3169; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 3168; + this.state = 3170; this.match(PostgreSqlParser.KW_ALL); } break; @@ -17378,13 +17379,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3173; + this.state = 3175; this.match(PostgreSqlParser.KW_USING); - this.state = 3174; + this.state = 3176; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3175; + this.state = 3177; this.expression(); - this.state = 3176; + this.state = 3178; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17408,15 +17409,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3178; + this.state = 3180; this.match(PostgreSqlParser.KW_WITH); - this.state = 3179; + this.state = 3181; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3180; + this.state = 3182; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3181; + this.state = 3183; this.expression(); - this.state = 3182; + this.state = 3184; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17441,17 +17442,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3184; + this.state = 3186; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3185; + this.state = 3187; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3186; + this.state = 3188; this.match(PostgreSqlParser.KW_METHOD); - this.state = 3187; + this.state = 3189; this.colId(); - this.state = 3188; + this.state = 3190; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3189; + this.state = 3191; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 226)) { this.errorHandler.recoverInline(this); @@ -17460,9 +17461,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3190; + this.state = 3192; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 3191; + this.state = 3193; this.anyName(); } } @@ -17485,50 +17486,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 250, PostgreSqlParser.RULE_createTrigStmt); let _la: number; try { - this.state = 3271; + this.state = 3273; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3193; - this.match(PostgreSqlParser.KW_CREATE); this.state = 3195; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 3197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3194; + this.state = 3196; this.orReplaceOpt(); } } - this.state = 3197; + this.state = 3199; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3198; + this.state = 3200; this.colId(); - this.state = 3199; + this.state = 3201; this.triggerActionTime(); - this.state = 3200; + this.state = 3202; this.triggerEvents(); - this.state = 3201; + this.state = 3203; this.match(PostgreSqlParser.KW_ON); - this.state = 3202; + this.state = 3204; this.tableName(); - this.state = 3214; + this.state = 3216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 447) { { - this.state = 3203; + this.state = 3205; this.match(PostgreSqlParser.KW_REFERENCING); - this.state = 3210; + this.state = 3212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3204; + this.state = 3206; _la = this.tokenStream.LA(1); if(!(_la === 448 || _la === 449)) { this.errorHandler.recoverInline(this); @@ -17537,7 +17538,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3205; + this.state = 3207; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17546,45 +17547,45 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3207; + this.state = 3209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3206; + this.state = 3208; this.match(PostgreSqlParser.KW_AS); } } - this.state = 3209; + this.state = 3211; this.colId(); } } - this.state = 3212; + this.state = 3214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 448 || _la === 449); } } - this.state = 3221; + this.state = 3223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3216; - this.match(PostgreSqlParser.KW_FOR); this.state = 3218; + this.match(PostgreSqlParser.KW_FOR); + this.state = 3220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3217; + this.state = 3219; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3220; + this.state = 3222; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17596,109 +17597,109 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3224; + this.state = 3226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3223; + this.state = 3225; this.triggerWhen(); } } - this.state = 3226; + this.state = 3228; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3227; + this.state = 3229; this.functionOrProcedure(); - this.state = 3228; + this.state = 3230; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3229; + this.state = 3231; this.triggerFuncArgs(); - this.state = 3230; + this.state = 3232; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3232; - this.match(PostgreSqlParser.KW_CREATE); this.state = 3234; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 3236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3233; + this.state = 3235; this.orReplaceOpt(); } } - this.state = 3237; + this.state = 3239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 3236; + this.state = 3238; this.match(PostgreSqlParser.KW_CONSTRAINT); } } - this.state = 3239; + this.state = 3241; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3240; + this.state = 3242; this.colId(); - this.state = 3241; + this.state = 3243; this.triggerActionTime(); - this.state = 3242; + this.state = 3244; this.triggerEvents(); - this.state = 3243; + this.state = 3245; this.match(PostgreSqlParser.KW_ON); - this.state = 3244; + this.state = 3246; this.tableName(); - this.state = 3247; + this.state = 3249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 3245; + this.state = 3247; this.match(PostgreSqlParser.KW_FROM); - this.state = 3246; + this.state = 3248; this.qualifiedName(); } } - this.state = 3252; + this.state = 3254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 54)) & ~0x1F) === 0 && ((1 << (_la - 54)) & 8421377) !== 0) || _la === 269) { { { - this.state = 3249; + this.state = 3251; this.constraintAttributeElem(); } } - this.state = 3254; + this.state = 3256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3260; + this.state = 3262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3255; - this.match(PostgreSqlParser.KW_FOR); this.state = 3257; + this.match(PostgreSqlParser.KW_FOR); + this.state = 3259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3256; + this.state = 3258; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3259; + this.state = 3261; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17710,25 +17711,25 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3263; + this.state = 3265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3262; + this.state = 3264; this.triggerWhen(); } } - this.state = 3265; + this.state = 3267; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3266; + this.state = 3268; this.functionOrProcedure(); - this.state = 3267; + this.state = 3269; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3268; + this.state = 3270; this.triggerFuncArgs(); - this.state = 3269; + this.state = 3271; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -17752,29 +17753,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerActionTimeContext(this.context, this.state); this.enterRule(localContext, 252, PostgreSqlParser.RULE_triggerActionTime); try { - this.state = 3277; + this.state = 3279; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_BEFORE: this.enterOuterAlt(localContext, 1); { - this.state = 3273; + this.state = 3275; this.match(PostgreSqlParser.KW_BEFORE); } break; case PostgreSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3274; + this.state = 3276; this.match(PostgreSqlParser.KW_AFTER); } break; case PostgreSqlParser.KW_INSTEAD: this.enterOuterAlt(localContext, 3); { - this.state = 3275; + this.state = 3277; this.match(PostgreSqlParser.KW_INSTEAD); - this.state = 3276; + this.state = 3278; this.match(PostgreSqlParser.KW_OF); } break; @@ -17803,21 +17804,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3279; + this.state = 3281; this.triggerOneEvent(); - this.state = 3284; + this.state = 3286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 3280; + this.state = 3282; this.match(PostgreSqlParser.KW_OR); - this.state = 3281; + this.state = 3283; this.triggerOneEvent(); } } - this.state = 3286; + this.state = 3288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17842,36 +17843,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 256, PostgreSqlParser.RULE_triggerOneEvent); let _la: number; try { - this.state = 3295; + this.state = 3297; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 1); { - this.state = 3287; + this.state = 3289; this.match(PostgreSqlParser.KW_INSERT); } break; case PostgreSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 2); { - this.state = 3288; + this.state = 3290; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 3); { - this.state = 3289; + this.state = 3291; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 3292; + this.state = 3294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 275) { { - this.state = 3290; + this.state = 3292; this.match(PostgreSqlParser.KW_OF); - this.state = 3291; + this.state = 3293; this.columnList(); } } @@ -17881,7 +17882,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 4); { - this.state = 3294; + this.state = 3296; this.match(PostgreSqlParser.KW_TRUNCATE); } break; @@ -17909,13 +17910,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3297; + this.state = 3299; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3298; + this.state = 3300; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3299; + this.state = 3301; this.expression(); - this.state = 3300; + this.state = 3302; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17937,24 +17938,24 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionOrProcedureContext(this.context, this.state); this.enterRule(localContext, 260, PostgreSqlParser.RULE_functionOrProcedure); try { - this.state = 3306; + this.state = 3308; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 3302; + this.state = 3304; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3303; + this.state = 3305; this.functionName(); } break; case PostgreSqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 3304; + this.state = 3306; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3305; + this.state = 3307; this.procedureName(); } break; @@ -17983,7 +17984,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3310; + this.state = 3312; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -18479,7 +18480,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3308; + this.state = 3310; this.triggerFuncArg(); } break; @@ -18492,19 +18493,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3316; + this.state = 3318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3312; + this.state = 3314; this.match(PostgreSqlParser.COMMA); - this.state = 3313; + this.state = 3315; this.triggerFuncArg(); } } - this.state = 3318; + this.state = 3320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18528,34 +18529,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerFuncArgContext(this.context, this.state); this.enterRule(localContext, 264, PostgreSqlParser.RULE_triggerFuncArg); try { - this.state = 3323; + this.state = 3325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3319; + this.state = 3321; this.match(PostgreSqlParser.Integral); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3320; + this.state = 3322; this.match(PostgreSqlParser.Numeric); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3321; + this.state = 3323; this.stringConst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3322; + this.state = 3324; this.colLabel(); } break; @@ -18580,32 +18581,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 266, PostgreSqlParser.RULE_constraintAttributeElem); let _la: number; try { - this.state = 3335; + this.state = 3337; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3326; + this.state = 3328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 3325; + this.state = 3327; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 3328; + this.state = 3330; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3329; + this.state = 3331; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 3330; + this.state = 3332; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -18619,18 +18620,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3331; + this.state = 3333; this.match(PostgreSqlParser.KW_NOT); - this.state = 3332; + this.state = 3334; this.match(PostgreSqlParser.KW_VALID); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3333; + this.state = 3335; this.match(PostgreSqlParser.KW_NO); - this.state = 3334; + this.state = 3336; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -18657,53 +18658,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3337; + this.state = 3339; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3338; + this.state = 3340; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3339; + this.state = 3341; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3340; + this.state = 3342; this.colId(); - this.state = 3341; + this.state = 3343; this.match(PostgreSqlParser.KW_ON); - this.state = 3342; + this.state = 3344; this.colLabel(); - this.state = 3352; + this.state = 3354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3343; + this.state = 3345; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3344; + this.state = 3346; this.eventTriggerWhenItem(); - this.state = 3349; + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 33) { { { - this.state = 3345; + this.state = 3347; this.match(PostgreSqlParser.KW_AND); - this.state = 3346; + this.state = 3348; this.eventTriggerWhenItem(); } } - this.state = 3351; + this.state = 3353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3354; + this.state = 3356; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3355; + this.state = 3357; this.functionOrProcedure(); - this.state = 3356; + this.state = 3358; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3357; + this.state = 3359; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18728,29 +18729,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3359; + this.state = 3361; this.colId(); - this.state = 3360; + this.state = 3362; this.match(PostgreSqlParser.KW_IN); - this.state = 3361; + this.state = 3363; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3362; + this.state = 3364; this.stringConst(); - this.state = 3366; + this.state = 3368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3363; + this.state = 3365; this.notifyPayload(); } } - this.state = 3368; + this.state = 3370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3369; + this.state = 3371; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18775,27 +18776,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3371; + this.state = 3373; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3372; + this.state = 3374; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3373; + this.state = 3375; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3374; + this.state = 3376; this.colId(); - this.state = 3380; + this.state = 3382; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 3375; - this.match(PostgreSqlParser.KW_ENABLE); this.state = 3377; + this.match(PostgreSqlParser.KW_ENABLE); + this.state = 3379; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 3376; + this.state = 3378; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -18811,7 +18812,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DISABLE: { - this.state = 3379; + this.state = 3381; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -18841,33 +18842,33 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3382; + this.state = 3384; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3383; + this.state = 3385; this.match(PostgreSqlParser.KW_ASSERTION); - this.state = 3384; + this.state = 3386; this.anyName(); - this.state = 3385; + this.state = 3387; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3386; + this.state = 3388; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3387; + this.state = 3389; this.expression(); - this.state = 3388; + this.state = 3390; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3392; + this.state = 3394; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 385, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3389; + this.state = 3391; this.constraintAttributeElem(); } } } - this.state = 3394; + this.state = 3396; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 385, this.context); } @@ -18892,64 +18893,64 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 276, PostgreSqlParser.RULE_defineStmt); let _la: number; try { - this.state = 3473; + this.state = 3475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3395; - this.match(PostgreSqlParser.KW_CREATE); this.state = 3397; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 3399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3396; + this.state = 3398; this.orReplaceOpt(); } } - this.state = 3399; + this.state = 3401; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3400; + this.state = 3402; this.functionName(); - this.state = 3415; + this.state = 3417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { { - this.state = 3401; + this.state = 3403; this.aggregateArgs(); - this.state = 3402; + this.state = 3404; this.definition(); } } break; case 2: { - this.state = 3404; + this.state = 3406; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3405; + this.state = 3407; this.oldAggregateElem(); - this.state = 3410; + this.state = 3412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3406; + this.state = 3408; this.match(PostgreSqlParser.COMMA); - this.state = 3407; + this.state = 3409; this.oldAggregateElem(); } } - this.state = 3412; + this.state = 3414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3413; + this.state = 3415; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -18959,79 +18960,79 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3417; + this.state = 3419; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3418; + this.state = 3420; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3419; + this.state = 3421; this.anyOperator(); - this.state = 3420; + this.state = 3422; this.definition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3422; + this.state = 3424; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3423; + this.state = 3425; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3424; + this.state = 3426; this.anyName(); - this.state = 3425; + this.state = 3427; this.match(PostgreSqlParser.KW_AS); - this.state = 3443; + this.state = 3445; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3426; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3428; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 3427; + this.state = 3429; this.tableFuncElementList(); } } - this.state = 3430; + this.state = 3432; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_ENUM: { - this.state = 3431; + this.state = 3433; this.match(PostgreSqlParser.KW_ENUM); - this.state = 3432; + this.state = 3434; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3440; + this.state = 3442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 561)) & ~0x1F) === 0 && ((1 << (_la - 561)) & 33554453) !== 0)) { { - this.state = 3433; + this.state = 3435; this.stringConst(); - this.state = 3437; + this.state = 3439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3434; + this.state = 3436; this.notifyPayload(); } } - this.state = 3439; + this.state = 3441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3442; + this.state = 3444; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -19043,30 +19044,30 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3445; + this.state = 3447; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3446; + this.state = 3448; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3447; + this.state = 3449; this.anyName(); - this.state = 3453; + this.state = 3455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3450; + this.state = 3452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3448; + this.state = 3450; this.match(PostgreSqlParser.KW_AS); - this.state = 3449; + this.state = 3451; this.match(PostgreSqlParser.KW_RANGE); } } - this.state = 3452; + this.state = 3454; this.definition(); } break; @@ -19076,13 +19077,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3455; + this.state = 3457; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3456; + this.state = 3458; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3457; + this.state = 3459; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3458; + this.state = 3460; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19091,46 +19092,46 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3459; + this.state = 3461; this.anyName(); - this.state = 3460; + this.state = 3462; this.definition(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3462; + this.state = 3464; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3463; - this.match(PostgreSqlParser.KW_COLLATION); this.state = 3465; + this.match(PostgreSqlParser.KW_COLLATION); + this.state = 3467; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 395, this.context) ) { case 1: { - this.state = 3464; + this.state = 3466; this.ifNotExists(); } break; } - this.state = 3467; + this.state = 3469; this.anyName(); - this.state = 3471; + this.state = 3473; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3468; + this.state = 3470; this.definition(); } break; case PostgreSqlParser.KW_FROM: { { - this.state = 3469; + this.state = 3471; this.match(PostgreSqlParser.KW_FROM); - this.state = 3470; + this.state = 3472; this.anyName(); } } @@ -19163,27 +19164,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3475; + this.state = 3477; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3476; + this.state = 3478; this.defElem(); - this.state = 3481; + this.state = 3483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3477; + this.state = 3479; this.match(PostgreSqlParser.COMMA); - this.state = 3478; + this.state = 3480; this.defElem(); } } - this.state = 3483; + this.state = 3485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3484; + this.state = 3486; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -19208,16 +19209,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3486; + this.state = 3488; this.colLabel(); - this.state = 3489; + this.state = 3491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 3487; + this.state = 3489; this.match(PostgreSqlParser.EQUAL); - this.state = 3488; + this.state = 3490; this.defArg(); } } @@ -19242,48 +19243,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new DefArgContext(this.context, this.state); this.enterRule(localContext, 282, PostgreSqlParser.RULE_defArg); try { - this.state = 3497; + this.state = 3499; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3491; + this.state = 3493; this.funcType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3492; + this.state = 3494; this.reservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3493; + this.state = 3495; this.qualAllOp(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3494; + this.state = 3496; this.numericOnly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3495; + this.state = 3497; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3496; + this.state = 3498; this.match(PostgreSqlParser.KW_NONE); } break; @@ -19309,11 +19310,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3499; + this.state = 3501; this.identifier(); - this.state = 3500; + this.state = 3502; this.match(PostgreSqlParser.EQUAL); - this.state = 3501; + this.state = 3503; this.defArg(); } } @@ -19336,40 +19337,40 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 286, PostgreSqlParser.RULE_alterEnumStmt); let _la: number; try { - this.state = 3525; + this.state = 3527; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3503; + this.state = 3505; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3504; + this.state = 3506; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3505; + this.state = 3507; this.anyName(); - this.state = 3506; + this.state = 3508; this.match(PostgreSqlParser.KW_ADD); - this.state = 3507; - this.match(PostgreSqlParser.KW_VALUE); this.state = 3509; + this.match(PostgreSqlParser.KW_VALUE); + this.state = 3511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3508; + this.state = 3510; this.ifNotExists(); } } - this.state = 3511; + this.state = 3513; this.stringConst(); - this.state = 3514; + this.state = 3516; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: { - this.state = 3512; + this.state = 3514; _la = this.tokenStream.LA(1); if(!(_la === 135 || _la === 145)) { this.errorHandler.recoverInline(this); @@ -19378,7 +19379,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3513; + this.state = 3515; this.stringConst(); } break; @@ -19388,21 +19389,21 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3516; + this.state = 3518; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3517; + this.state = 3519; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3518; + this.state = 3520; this.anyName(); - this.state = 3519; + this.state = 3521; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3520; + this.state = 3522; this.match(PostgreSqlParser.KW_VALUE); - this.state = 3521; + this.state = 3523; this.stringConst(); - this.state = 3522; + this.state = 3524; this.match(PostgreSqlParser.KW_TO); - this.state = 3523; + this.state = 3525; this.stringConst(); } break; @@ -19428,11 +19429,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3527; + this.state = 3529; this.match(PostgreSqlParser.KW_IF); - this.state = 3528; + this.state = 3530; this.match(PostgreSqlParser.KW_NOT); - this.state = 3529; + this.state = 3531; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -19457,61 +19458,61 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3531; + this.state = 3533; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3532; + this.state = 3534; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3533; + this.state = 3535; this.match(PostgreSqlParser.KW_CLASS); - this.state = 3534; - this.anyName(); this.state = 3536; + this.anyName(); + this.state = 3538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 3535; + this.state = 3537; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 3538; + this.state = 3540; this.match(PostgreSqlParser.KW_FOR); - this.state = 3539; + this.state = 3541; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3540; + this.state = 3542; this.typename(); - this.state = 3541; + this.state = 3543; this.tableAccessMethodClause(); - this.state = 3544; + this.state = 3546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3542; + this.state = 3544; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3543; + this.state = 3545; this.anyName(); } } - this.state = 3546; + this.state = 3548; this.match(PostgreSqlParser.KW_AS); - this.state = 3547; + this.state = 3549; this.opClassItem(); - this.state = 3552; + this.state = 3554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3548; + this.state = 3550; this.match(PostgreSqlParser.COMMA); - this.state = 3549; + this.state = 3551; this.opClassItem(); } } - this.state = 3554; + this.state = 3556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19536,52 +19537,52 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 292, PostgreSqlParser.RULE_opClassItem); let _la: number; try { - this.state = 3581; + this.state = 3583; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 3555; + this.state = 3557; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3556; + this.state = 3558; this.match(PostgreSqlParser.Integral); - this.state = 3557; - this.anyOperator(); this.state = 3559; + this.anyOperator(); + this.state = 3561; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { case 1: { - this.state = 3558; + this.state = 3560; this.operatorArgTypes(); } break; } - this.state = 3568; + this.state = 3570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3561; + this.state = 3563; this.match(PostgreSqlParser.KW_FOR); - this.state = 3566; + this.state = 3568; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEARCH: { - this.state = 3562; + this.state = 3564; this.match(PostgreSqlParser.KW_SEARCH); } break; case PostgreSqlParser.KW_ORDER: { { - this.state = 3563; + this.state = 3565; this.match(PostgreSqlParser.KW_ORDER); - this.state = 3564; + this.state = 3566; this.match(PostgreSqlParser.KW_BY); - this.state = 3565; + this.state = 3567; this.anyName(); } } @@ -19592,12 +19593,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3571; + this.state = 3573; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3570; + this.state = 3572; this.match(PostgreSqlParser.KW_RECHECK); } break; @@ -19607,30 +19608,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 2); { - this.state = 3573; + this.state = 3575; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3574; - this.match(PostgreSqlParser.Integral); this.state = 3576; + this.match(PostgreSqlParser.Integral); + this.state = 3578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3575; + this.state = 3577; this.prepTypeClause(); } } - this.state = 3578; + this.state = 3580; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 3); { - this.state = 3579; + this.state = 3581; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 3580; + this.state = 3582; this.typename(); } break; @@ -19658,15 +19659,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3583; + this.state = 3585; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3584; + this.state = 3586; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3585; + this.state = 3587; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3586; + this.state = 3588; this.anyName(); - this.state = 3587; + this.state = 3589; this.tableAccessMethodClause(); } } @@ -19691,38 +19692,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3589; + this.state = 3591; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3590; + this.state = 3592; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3591; + this.state = 3593; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3592; + this.state = 3594; this.anyName(); - this.state = 3593; + this.state = 3595; this.tableAccessMethodClause(); - this.state = 3612; + this.state = 3614; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: { - this.state = 3594; + this.state = 3596; this.match(PostgreSqlParser.KW_ADD); - this.state = 3595; + this.state = 3597; this.opClassItem(); - this.state = 3600; + this.state = 3602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3596; + this.state = 3598; this.match(PostgreSqlParser.COMMA); - this.state = 3597; + this.state = 3599; this.opClassItem(); } } - this.state = 3602; + this.state = 3604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19730,23 +19731,23 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DROP: { - this.state = 3603; + this.state = 3605; this.match(PostgreSqlParser.KW_DROP); - this.state = 3604; + this.state = 3606; this.opClassDrop(); - this.state = 3609; + this.state = 3611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3605; + this.state = 3607; this.match(PostgreSqlParser.COMMA); - this.state = 3606; + this.state = 3608; this.opClassDrop(); } } - this.state = 3611; + this.state = 3613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19778,7 +19779,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3614; + this.state = 3616; _la = this.tokenStream.LA(1); if(!(_la === 211 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -19787,9 +19788,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3615; + this.state = 3617; this.match(PostgreSqlParser.Integral); - this.state = 3616; + this.state = 3618; this.prepTypeClause(); } } @@ -19813,17 +19814,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3618; + this.state = 3620; this.match(PostgreSqlParser.KW_REASSIGN); - this.state = 3619; + this.state = 3621; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3620; + this.state = 3622; this.match(PostgreSqlParser.KW_BY); - this.state = 3621; + this.state = 3623; this.roleList(); - this.state = 3622; + this.state = 3624; this.match(PostgreSqlParser.KW_TO); - this.state = 3623; + this.state = 3625; this.roleSpec(); } } @@ -19846,115 +19847,115 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 302, PostgreSqlParser.RULE_dropStmt); let _la: number; try { - this.state = 3832; + this.state = 3834; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3625; + this.state = 3627; this.match(PostgreSqlParser.KW_DROP); - this.state = 3648; + this.state = 3650; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEQUENCE: { - this.state = 3626; + this.state = 3628; this.match(PostgreSqlParser.KW_SEQUENCE); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 3627; + this.state = 3629; this.match(PostgreSqlParser.KW_INDEX); } break; case PostgreSqlParser.KW_COLLATION: { - this.state = 3628; + this.state = 3630; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 3629; + this.state = 3631; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 3630; + this.state = 3632; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3631; + this.state = 3633; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3632; + this.state = 3634; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3633; + this.state = 3635; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3634; + this.state = 3636; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 3635; + this.state = 3637; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3636; + this.state = 3638; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3637; + this.state = 3639; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3639; + this.state = 3641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3638; + this.state = 3640; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3641; + this.state = 3643; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3642; + this.state = 3644; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3643; + this.state = 3645; this.match(PostgreSqlParser.KW_DATA); - this.state = 3644; + this.state = 3646; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_TEXT: { - this.state = 3645; + this.state = 3647; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3646; + this.state = 3648; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3647; + this.state = 3649; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19968,24 +19969,24 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3651; + this.state = 3653; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 3650; + this.state = 3652; this.ifExists(); } break; } - this.state = 3653; - this.nameList(); this.state = 3655; + this.nameList(); + this.state = 3657; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3654; + this.state = 3656; this.optDropBehavior(); } break; @@ -19995,54 +19996,54 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3657; - this.match(PostgreSqlParser.KW_DROP); this.state = 3659; + this.match(PostgreSqlParser.KW_DROP); + this.state = 3661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3658; + this.state = 3660; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3661; - this.match(PostgreSqlParser.KW_VIEW); this.state = 3663; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 3665; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3662; + this.state = 3664; this.ifExists(); } break; } - this.state = 3665; + this.state = 3667; this.viewName(); - this.state = 3670; + this.state = 3672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3666; + this.state = 3668; this.match(PostgreSqlParser.COMMA); - this.state = 3667; + this.state = 3669; this.viewName(); } } - this.state = 3672; + this.state = 3674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3674; + this.state = 3676; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3673; + this.state = 3675; this.optDropBehavior(); } break; @@ -20052,38 +20053,38 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3676; - this.match(PostgreSqlParser.KW_DROP); this.state = 3678; + this.match(PostgreSqlParser.KW_DROP); + this.state = 3680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3677; + this.state = 3679; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3680; - this.match(PostgreSqlParser.KW_TABLE); this.state = 3682; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 3684; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { - this.state = 3681; + this.state = 3683; this.ifExists(); } break; } - this.state = 3684; - this.tableNameList(); this.state = 3686; + this.tableNameList(); + this.state = 3688; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 3685; + this.state = 3687; this.optDropBehavior(); } break; @@ -20093,28 +20094,28 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3688; + this.state = 3690; this.match(PostgreSqlParser.KW_DROP); - this.state = 3689; - this.match(PostgreSqlParser.KW_SCHEMA); this.state = 3691; + this.match(PostgreSqlParser.KW_SCHEMA); + this.state = 3693; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3690; + this.state = 3692; this.ifExists(); } break; } - this.state = 3693; - this.schemaNameList(); this.state = 3695; + this.schemaNameList(); + this.state = 3697; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 3694; + this.state = 3696; this.optDropBehavior(); } break; @@ -20124,9 +20125,9 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3697; + this.state = 3699; this.match(PostgreSqlParser.KW_DROP); - this.state = 3698; + this.state = 3700; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -20135,28 +20136,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3700; + this.state = 3702; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: { - this.state = 3699; + this.state = 3701; this.ifExists(); } break; } - this.state = 3702; + this.state = 3704; this.colId(); - this.state = 3703; + this.state = 3705; this.match(PostgreSqlParser.KW_ON); - this.state = 3704; - this.anyName(); this.state = 3706; + this.anyName(); + this.state = 3708; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: { - this.state = 3705; + this.state = 3707; this.optDropBehavior(); } break; @@ -20166,9 +20167,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3708; + this.state = 3710; this.match(PostgreSqlParser.KW_DROP); - this.state = 3709; + this.state = 3711; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -20177,40 +20178,40 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3711; + this.state = 3713; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: { - this.state = 3710; + this.state = 3712; this.ifExists(); } break; } - this.state = 3713; + this.state = 3715; this.typename(); - this.state = 3718; + this.state = 3720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3714; + this.state = 3716; this.match(PostgreSqlParser.COMMA); - this.state = 3715; + this.state = 3717; this.typename(); } } - this.state = 3720; + this.state = 3722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3722; + this.state = 3724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 3721; + this.state = 3723; this.optDropBehavior(); } break; @@ -20220,30 +20221,30 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3724; + this.state = 3726; this.match(PostgreSqlParser.KW_DROP); - this.state = 3725; + this.state = 3727; this.match(PostgreSqlParser.KW_INDEX); - this.state = 3726; - this.match(PostgreSqlParser.KW_CONCURRENTLY); this.state = 3728; + this.match(PostgreSqlParser.KW_CONCURRENTLY); + this.state = 3730; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3727; + this.state = 3729; this.ifExists(); } break; } - this.state = 3730; - this.anyNameList(); this.state = 3732; + this.anyNameList(); + this.state = 3734; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: { - this.state = 3731; + this.state = 3733; this.optDropBehavior(); } break; @@ -20253,36 +20254,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3734; + this.state = 3736; this.match(PostgreSqlParser.KW_DROP); - this.state = 3735; - this.match(PostgreSqlParser.KW_CAST); this.state = 3737; + this.match(PostgreSqlParser.KW_CAST); + this.state = 3739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3736; + this.state = 3738; this.ifExists(); } } - this.state = 3739; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3740; - this.typename(); this.state = 3741; - this.match(PostgreSqlParser.KW_AS); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3742; this.typename(); this.state = 3743; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.match(PostgreSqlParser.KW_AS); + this.state = 3744; + this.typename(); this.state = 3745; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 3747; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3744; + this.state = 3746; this.optDropBehavior(); } break; @@ -20292,11 +20293,11 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3747; + this.state = 3749; this.match(PostgreSqlParser.KW_DROP); - this.state = 3748; + this.state = 3750; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3749; + this.state = 3751; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -20305,26 +20306,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3751; + this.state = 3753; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3750; + this.state = 3752; this.ifExists(); } break; } - this.state = 3753; + this.state = 3755; this.anyName(); - this.state = 3754; - this.tableAccessMethodClause(); this.state = 3756; + this.tableAccessMethodClause(); + this.state = 3758; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3755; + this.state = 3757; this.optDropBehavior(); } break; @@ -20334,20 +20335,20 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3758; + this.state = 3760; this.match(PostgreSqlParser.KW_DROP); - this.state = 3759; + this.state = 3761; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3760; + this.state = 3762; this.match(PostgreSqlParser.KW_BY); - this.state = 3761; - this.roleList(); this.state = 3763; + this.roleList(); + this.state = 3765; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3762; + this.state = 3764; this.optDropBehavior(); } break; @@ -20357,28 +20358,28 @@ export class PostgreSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3765; + this.state = 3767; this.match(PostgreSqlParser.KW_DROP); - this.state = 3766; - this.match(PostgreSqlParser.KW_SUBSCRIPTION); this.state = 3768; + this.match(PostgreSqlParser.KW_SUBSCRIPTION); + this.state = 3770; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3767; + this.state = 3769; this.ifExists(); } break; } - this.state = 3770; - this.colId(); this.state = 3772; + this.colId(); + this.state = 3774; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3771; + this.state = 3773; this.optDropBehavior(); } break; @@ -20388,55 +20389,55 @@ export class PostgreSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3774; + this.state = 3776; this.match(PostgreSqlParser.KW_DROP); - this.state = 3775; - this.match(PostgreSqlParser.KW_TABLESPACE); this.state = 3777; + this.match(PostgreSqlParser.KW_TABLESPACE); + this.state = 3779; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 3776; + this.state = 3778; this.ifExists(); } break; } - this.state = 3779; + this.state = 3781; this.tableSpaceName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3780; + this.state = 3782; this.match(PostgreSqlParser.KW_DROP); - this.state = 3781; - this.match(PostgreSqlParser.KW_TRANSFORM); this.state = 3783; + this.match(PostgreSqlParser.KW_TRANSFORM); + this.state = 3785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3782; + this.state = 3784; this.ifExists(); } } - this.state = 3785; + this.state = 3787; this.match(PostgreSqlParser.KW_FOR); - this.state = 3786; + this.state = 3788; this.typename(); - this.state = 3787; + this.state = 3789; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3788; - this.colId(); this.state = 3790; + this.colId(); + this.state = 3792; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3789; + this.state = 3791; this.optDropBehavior(); } break; @@ -20446,9 +20447,9 @@ export class PostgreSqlParser extends SQLParserBase { case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3792; + this.state = 3794; this.match(PostgreSqlParser.KW_DROP); - this.state = 3793; + this.state = 3795; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -20457,42 +20458,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3795; + this.state = 3797; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3794; + this.state = 3796; this.ifExists(); } break; } - this.state = 3797; + this.state = 3799; this.roleList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3798; + this.state = 3800; this.match(PostgreSqlParser.KW_DROP); - this.state = 3799; + this.state = 3801; this.match(PostgreSqlParser.KW_USER); - this.state = 3800; - this.match(PostgreSqlParser.KW_MAPPING); this.state = 3802; + this.match(PostgreSqlParser.KW_MAPPING); + this.state = 3804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3801; + this.state = 3803; this.ifExists(); } } - this.state = 3804; + this.state = 3806; this.match(PostgreSqlParser.KW_FOR); - this.state = 3807; + this.state = 3809; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -20914,81 +20915,81 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3805; + this.state = 3807; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3806; + this.state = 3808; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3809; + this.state = 3811; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3810; + this.state = 3812; this.colId(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3811; + this.state = 3813; this.match(PostgreSqlParser.KW_DROP); - this.state = 3812; - this.match(PostgreSqlParser.KW_DATABASE); this.state = 3814; + this.match(PostgreSqlParser.KW_DATABASE); + this.state = 3816; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3813; + this.state = 3815; this.ifExists(); } break; } - this.state = 3816; + this.state = 3818; this.databaseName(); - this.state = 3830; + this.state = 3832; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3818; + this.state = 3820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3817; + this.state = 3819; this.match(PostgreSqlParser.KW_WITH); } } { - this.state = 3820; + this.state = 3822; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3821; + this.state = 3823; this.match(PostgreSqlParser.KW_FORCE); - this.state = 3826; + this.state = 3828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3822; + this.state = 3824; this.match(PostgreSqlParser.COMMA); - this.state = 3823; + this.state = 3825; this.match(PostgreSqlParser.KW_FORCE); } } - this.state = 3828; + this.state = 3830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3829; + this.state = 3831; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -21017,26 +21018,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 304, PostgreSqlParser.RULE_objectTypeAnyName); let _la: number; try { - this.state = 3850; + this.state = 3852; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 3835; + this.state = 3837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3834; + this.state = 3836; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3837; + this.state = 3839; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3838; + this.state = 3840; this.tableName(); } break; @@ -21044,19 +21045,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VIEW: this.enterOuterAlt(localContext, 2); { - this.state = 3840; + this.state = 3842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3839; + this.state = 3841; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3842; + this.state = 3844; this.match(PostgreSqlParser.KW_VIEW); - this.state = 3843; + this.state = 3845; this.viewName(); } break; @@ -21067,7 +21068,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_STATISTICS: this.enterOuterAlt(localContext, 3); { - this.state = 3844; + this.state = 3846; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 226 || _la === 328 || _la === 342)) { this.errorHandler.recoverInline(this); @@ -21076,18 +21077,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3845; + this.state = 3847; this.anyName(); } break; case PostgreSqlParser.KW_TEXT: this.enterOuterAlt(localContext, 4); { - this.state = 3846; + this.state = 3848; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3847; + this.state = 3849; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3848; + this.state = 3850; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -21096,7 +21097,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3849; + this.state = 3851; this.anyName(); } break; @@ -21123,7 +21124,7 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 306, PostgreSqlParser.RULE_objectTypeName); let _la: number; try { - this.state = 3876; + this.state = 3878; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: @@ -21138,111 +21139,111 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_PUBLICATION: this.enterOuterAlt(localContext, 1); { - this.state = 3868; + this.state = 3870; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EVENT: { - this.state = 3852; + this.state = 3854; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3853; + this.state = 3855; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3854; + this.state = 3856; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3855; + this.state = 3857; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3856; + this.state = 3858; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3857; + this.state = 3859; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3858; + this.state = 3860; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ROLE: { - this.state = 3859; + this.state = 3861; this.match(PostgreSqlParser.KW_ROLE); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 3860; + this.state = 3862; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3861; + this.state = 3863; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3862; + this.state = 3864; this.match(PostgreSqlParser.KW_DATA); - this.state = 3863; + this.state = 3865; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3865; + this.state = 3867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3864; + this.state = 3866; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3867; + this.state = 3869; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3870; + this.state = 3872; this.colId(); } break; case PostgreSqlParser.KW_SCHEMA: this.enterOuterAlt(localContext, 2); { - this.state = 3871; + this.state = 3873; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3872; + this.state = 3874; this.schemaName(); } break; case PostgreSqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 3); { - this.state = 3873; + this.state = 3875; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 3874; + this.state = 3876; this.databaseName(); } break; case PostgreSqlParser.KW_TABLESPACE: this.enterOuterAlt(localContext, 4); { - this.state = 3875; + this.state = 3877; this.optTableSpace(); } break; @@ -21271,21 +21272,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3880; this.anyName(); - this.state = 3883; + this.state = 3885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3879; + this.state = 3881; this.match(PostgreSqlParser.COMMA); - this.state = 3880; + this.state = 3882; this.anyName(); } } - this.state = 3885; + this.state = 3887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21311,14 +21312,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3886; - this.colId(); this.state = 3888; + this.colId(); + this.state = 3890; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: { - this.state = 3887; + this.state = 3889; this.attrs(); } break; @@ -21346,7 +21347,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3892; + this.state = 3894; this.errorHandler.sync(this); alternative = 1; do { @@ -21354,9 +21355,9 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 3890; + this.state = 3892; this.match(PostgreSqlParser.DOT); - this.state = 3891; + this.state = 3893; this.colLabel(); } } @@ -21364,7 +21365,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3894; + this.state = 3896; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 462, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -21391,42 +21392,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3896; - this.match(PostgreSqlParser.KW_TRUNCATE); this.state = 3898; + this.match(PostgreSqlParser.KW_TRUNCATE); + this.state = 3900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 3897; + this.state = 3899; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 3900; + this.state = 3902; this.truncateTable(); - this.state = 3905; + this.state = 3907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3901; + this.state = 3903; this.match(PostgreSqlParser.COMMA); - this.state = 3902; + this.state = 3904; this.truncateTable(); } } - this.state = 3907; + this.state = 3909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3910; + this.state = 3912; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3908; + this.state = 3910; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 314)) { this.errorHandler.recoverInline(this); @@ -21435,17 +21436,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3909; + this.state = 3911; this.match(PostgreSqlParser.KW_IDENTITY); } break; } - this.state = 3913; + this.state = 3915; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3912; + this.state = 3914; this.optDropBehavior(); } break; @@ -21473,24 +21474,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3916; + this.state = 3918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 3915; + this.state = 3917; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 3918; - this.tableName(); this.state = 3920; + this.tableName(); + this.state = 3922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 3919; + this.state = 3921; this.match(PostgreSqlParser.STAR); } } @@ -21518,52 +21519,52 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3922; + this.state = 3924; this.match(PostgreSqlParser.KW_COMMENT); - this.state = 3923; + this.state = 3925; this.match(PostgreSqlParser.KW_ON); - this.state = 3982; + this.state = 3984; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3924; + this.state = 3926; this.objectTypeAnyName(); } break; case 2: { - this.state = 3925; + this.state = 3927; this.objectTypeName(); } break; case 3: { - this.state = 3926; + this.state = 3928; this.match(PostgreSqlParser.KW_COLUMN); { - this.state = 3927; - this.colId(); this.state = 3929; + this.colId(); + this.state = 3931; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3928; + this.state = 3930; this.attrs(); } break; } } - this.state = 3931; + this.state = 3933; this.match(PostgreSqlParser.DOT); - this.state = 3932; + this.state = 3934; this.columnName(); } break; case 4: { - this.state = 3934; + this.state = 3936; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21572,65 +21573,65 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3935; + this.state = 3937; this.typename(); } break; case 5: { - this.state = 3936; + this.state = 3938; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3937; + this.state = 3939; this.aggregateWithArgTypes(); } break; case 6: { - this.state = 3938; + this.state = 3940; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3939; + this.state = 3941; this.functionWithArgTypes(); } break; case 7: { - this.state = 3940; + this.state = 3942; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3941; + this.state = 3943; this.operatorWithArgTypes(); } break; case 8: { - this.state = 3942; + this.state = 3944; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 3943; + this.state = 3945; this.colId(); - this.state = 3944; + this.state = 3946; this.match(PostgreSqlParser.KW_ON); - this.state = 3950; + this.state = 3952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3945; + this.state = 3947; this.tableName(); } break; case 2: { { - this.state = 3947; + this.state = 3949; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3946; + this.state = 3948; this.match(PostgreSqlParser.KW_DOMAIN); } break; } - this.state = 3949; + this.state = 3951; this.anyName(); } } @@ -21640,7 +21641,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 9: { - this.state = 3952; + this.state = 3954; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -21649,49 +21650,49 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3953; + this.state = 3955; this.colId(); - this.state = 3954; + this.state = 3956; this.match(PostgreSqlParser.KW_ON); - this.state = 3955; + this.state = 3957; this.anyName(); } break; case 10: { - this.state = 3957; + this.state = 3959; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3958; + this.state = 3960; this.procedureWithArgTypes(); } break; case 11: { - this.state = 3959; + this.state = 3961; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 3960; + this.state = 3962; this.routineWithArgTypes(); } break; case 12: { - this.state = 3961; + this.state = 3963; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 3962; + this.state = 3964; this.match(PostgreSqlParser.KW_FOR); - this.state = 3963; + this.state = 3965; this.typename(); - this.state = 3964; + this.state = 3966; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3965; + this.state = 3967; this.colId(); } break; case 13: { - this.state = 3967; + this.state = 3969; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3968; + this.state = 3970; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -21700,187 +21701,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3969; + this.state = 3971; this.anyName(); - this.state = 3970; + this.state = 3972; this.tableAccessMethodClause(); } break; case 14: { - this.state = 3972; + this.state = 3974; this.match(PostgreSqlParser.KW_LARGE); - this.state = 3973; + this.state = 3975; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 3974; + this.state = 3976; this.numericOnly(); } break; case 15: { - this.state = 3975; - this.match(PostgreSqlParser.KW_CAST); - this.state = 3976; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3977; - this.typename(); + this.match(PostgreSqlParser.KW_CAST); this.state = 3978; - this.match(PostgreSqlParser.KW_AS); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3979; this.typename(); this.state = 3980; + this.match(PostgreSqlParser.KW_AS); + this.state = 3981; + this.typename(); + this.state = 3982; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 3984; + this.state = 3986; this.match(PostgreSqlParser.KW_IS); - this.state = 3987; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.EscapeStringConstant: - { - this.state = 3985; - this.stringConst(); - } - break; - case PostgreSqlParser.KW_NULL: - { - this.state = 3986; - this.match(PostgreSqlParser.KW_NULL); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public secLabelStmt(): SecLabelStmtContext { - let localContext = new SecLabelStmtContext(this.context, this.state); - this.enterRule(localContext, 320, PostgreSqlParser.RULE_secLabelStmt); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { this.state = 3989; - this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3990; - this.match(PostgreSqlParser.KW_LABEL); - this.state = 3993; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 3991; - this.match(PostgreSqlParser.KW_FOR); - this.state = 3992; - this.nonReservedWordOrStringConst(); - } - } - - this.state = 3995; - this.match(PostgreSqlParser.KW_ON); - this.state = 4013; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { - case 1: - { - this.state = 3996; - _la = this.tokenStream.LA(1); - if(!(_la === 189 || _la === 360)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 3997; - this.typename(); - } - break; - case 2: - { - this.state = 3998; - this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3999; - this.aggregateWithArgTypes(); - } - break; - case 3: - { - this.state = 4000; - this.match(PostgreSqlParser.KW_COLUMN); - this.state = 4001; - this.columnName(); - } - break; - case 4: - { - this.state = 4002; - this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4003; - this.functionWithArgTypes(); - } - break; - case 5: - { - this.state = 4004; - this.match(PostgreSqlParser.KW_LARGE); - this.state = 4005; - this.match(PostgreSqlParser.KW_OBJECT); - this.state = 4006; - this.numericOnly(); - } - break; - case 6: - { - this.state = 4007; - this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4008; - this.procedureWithArgTypes(); - } - break; - case 7: - { - this.state = 4009; - this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4010; - this.routineWithArgTypes(); - } - break; - case 8: - { - this.state = 4011; - this.objectTypeAnyName(); - } - break; - case 9: - { - this.state = 4012; - this.objectTypeName(); - } - break; - } - this.state = 4015; - this.match(PostgreSqlParser.KW_IS); - this.state = 4018; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21888,13 +21744,158 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4016; + this.state = 3987; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 4017; + this.state = 3988; + this.match(PostgreSqlParser.KW_NULL); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public secLabelStmt(): SecLabelStmtContext { + let localContext = new SecLabelStmtContext(this.context, this.state); + this.enterRule(localContext, 320, PostgreSqlParser.RULE_secLabelStmt); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3991; + this.match(PostgreSqlParser.KW_SECURITY); + this.state = 3992; + this.match(PostgreSqlParser.KW_LABEL); + this.state = 3995; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 3993; + this.match(PostgreSqlParser.KW_FOR); + this.state = 3994; + this.nonReservedWordOrStringConst(); + } + } + + this.state = 3997; + this.match(PostgreSqlParser.KW_ON); + this.state = 4015; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + case 1: + { + this.state = 3998; + _la = this.tokenStream.LA(1); + if(!(_la === 189 || _la === 360)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3999; + this.typename(); + } + break; + case 2: + { + this.state = 4000; + this.match(PostgreSqlParser.KW_AGGREGATE); + this.state = 4001; + this.aggregateWithArgTypes(); + } + break; + case 3: + { + this.state = 4002; + this.match(PostgreSqlParser.KW_COLUMN); + this.state = 4003; + this.columnName(); + } + break; + case 4: + { + this.state = 4004; + this.match(PostgreSqlParser.KW_FUNCTION); + this.state = 4005; + this.functionWithArgTypes(); + } + break; + case 5: + { + this.state = 4006; + this.match(PostgreSqlParser.KW_LARGE); + this.state = 4007; + this.match(PostgreSqlParser.KW_OBJECT); + this.state = 4008; + this.numericOnly(); + } + break; + case 6: + { + this.state = 4009; + this.match(PostgreSqlParser.KW_PROCEDURE); + this.state = 4010; + this.procedureWithArgTypes(); + } + break; + case 7: + { + this.state = 4011; + this.match(PostgreSqlParser.KW_ROUTINE); + this.state = 4012; + this.routineWithArgTypes(); + } + break; + case 8: + { + this.state = 4013; + this.objectTypeAnyName(); + } + break; + case 9: + { + this.state = 4014; + this.objectTypeName(); + } + break; + } + this.state = 4017; + this.match(PostgreSqlParser.KW_IS); + this.state = 4020; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.EscapeStringConstant: + { + this.state = 4018; + this.stringConst(); + } + break; + case PostgreSqlParser.KW_NULL: + { + this.state = 4019; this.match(PostgreSqlParser.KW_NULL); } break; @@ -21924,7 +21925,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4020; + this.state = 4022; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 265)) { this.errorHandler.recoverInline(this); @@ -21933,7 +21934,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4021; + this.state = 4023; this.fetch_args(); } } @@ -21956,18 +21957,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 324, PostgreSqlParser.RULE_fetch_args); let _la: number; try { - this.state = 4066; + this.state = 4068; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4024; + this.state = 4026; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 4023; + this.state = 4025; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249 || _la === 268 || _la === 293)) { this.errorHandler.recoverInline(this); @@ -21979,29 +21980,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4027; + this.state = 4029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4026; + this.state = 4028; this.fromIn(); } } - this.state = 4029; + this.state = 4031; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4031; + this.state = 4033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130 || _la === 307) { { - this.state = 4030; + this.state = 4032; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -22013,86 +22014,86 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4033; - this.signedConst(); this.state = 4035; + this.signedConst(); + this.state = 4037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4034; + this.state = 4036; this.fromIn(); } } - this.state = 4037; + this.state = 4039; this.colId(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4039; - this.match(PostgreSqlParser.KW_FORWARD); this.state = 4041; + this.match(PostgreSqlParser.KW_FORWARD); + this.state = 4043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574) { { - this.state = 4040; + this.state = 4042; this.signedConst(); } } - this.state = 4044; + this.state = 4046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4043; + this.state = 4045; this.fromIn(); } } - this.state = 4046; + this.state = 4048; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4048; + this.state = 4050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 4047; + this.state = 4049; this.match(PostgreSqlParser.KW_FORWARD); } } - this.state = 4050; - this.match(PostgreSqlParser.KW_ALL); this.state = 4052; + this.match(PostgreSqlParser.KW_ALL); + this.state = 4054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4051; + this.state = 4053; this.fromIn(); } } - this.state = 4054; + this.state = 4056; this.colId(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4055; + this.state = 4057; this.match(PostgreSqlParser.KW_BACKWARD); - this.state = 4060; + this.state = 4062; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -22493,12 +22494,12 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4057; + this.state = 4059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 4056; + this.state = 4058; this.match(PostgreSqlParser.KW_ALL); } } @@ -22509,24 +22510,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.MINUS: case PostgreSqlParser.Integral: { - this.state = 4059; + this.state = 4061; this.signedConst(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4063; + this.state = 4065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4062; + this.state = 4064; this.fromIn(); } } - this.state = 4065; + this.state = 4067; this.colId(); } break; @@ -22553,7 +22554,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4068; + this.state = 4070; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 68)) { this.errorHandler.recoverInline(this); @@ -22584,28 +22585,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4070; + this.state = 4072; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4071; + this.state = 4073; this.privileges(); - this.state = 4072; + this.state = 4074; this.match(PostgreSqlParser.KW_ON); - this.state = 4073; + this.state = 4075; this.privilegeTarget(); - this.state = 4074; + this.state = 4076; this.match(PostgreSqlParser.KW_TO); - this.state = 4075; + this.state = 4077; this.granteeList(); - this.state = 4079; + this.state = 4081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 4076; + this.state = 4078; this.match(PostgreSqlParser.KW_WITH); - this.state = 4077; + this.state = 4079; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4078; + this.state = 4080; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -22633,38 +22634,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4081; + this.state = 4083; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4085; + this.state = 4087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4082; + this.state = 4084; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4083; + this.state = 4085; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4084; + this.state = 4086; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4087; + this.state = 4089; this.privileges(); - this.state = 4088; + this.state = 4090; this.match(PostgreSqlParser.KW_ON); - this.state = 4089; + this.state = 4091; this.privilegeTarget(); - this.state = 4090; + this.state = 4092; this.match(PostgreSqlParser.KW_FROM); - this.state = 4091; - this.granteeList(); this.state = 4093; + this.granteeList(); + this.state = 4095; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 4092; + this.state = 4094; this.optDropBehavior(); } break; @@ -22690,27 +22691,27 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 332, PostgreSqlParser.RULE_privileges); let _la: number; try { - this.state = 4118; + this.state = 4120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4095; + this.state = 4097; this.privilege(); - this.state = 4100; + this.state = 4102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4096; + this.state = 4098; this.match(PostgreSqlParser.COMMA); - this.state = 4097; + this.state = 4099; this.privilege(); } } - this.state = 4102; + this.state = 4104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22719,24 +22720,24 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4103; - this.match(PostgreSqlParser.KW_ALL); this.state = 4105; + this.match(PostgreSqlParser.KW_ALL); + this.state = 4107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 294) { { - this.state = 4104; + this.state = 4106; this.match(PostgreSqlParser.KW_PRIVILEGES); } } - this.state = 4108; + this.state = 4110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4107; + this.state = 4109; this.optColumnList(); } } @@ -22746,21 +22747,21 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4110; + this.state = 4112; this.beforePrivilegeSelect(); - this.state = 4115; + this.state = 4117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4111; + this.state = 4113; this.match(PostgreSqlParser.COMMA); - this.state = 4112; + this.state = 4114; this.beforePrivilegeSelect(); } } - this.state = 4117; + this.state = 4119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22789,7 +22790,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4120; + this.state = 4122; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 88 || _la === 182 || _la === 202 || _la === 241 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 131173) !== 0) || ((((_la - 521)) & ~0x1F) === 0 && ((1 << (_la - 521)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -22821,24 +22822,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4126; + this.state = 4128; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 4122; + this.state = 4124; this.match(PostgreSqlParser.KW_SELECT); } break; case PostgreSqlParser.KW_REFERENCES: { - this.state = 4123; + this.state = 4125; this.match(PostgreSqlParser.KW_REFERENCES); } break; case PostgreSqlParser.KW_CREATE: { - this.state = 4124; + this.state = 4126; this.match(PostgreSqlParser.KW_CREATE); } break; @@ -23237,19 +23238,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4125; + this.state = 4127; this.colId(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4129; + this.state = 4131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4128; + this.state = 4130; this.optColumnList(); } } @@ -23275,59 +23276,59 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 338, PostgreSqlParser.RULE_privilegeTarget); let _la: number; try { - this.state = 4176; + this.state = 4178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4131; + this.state = 4133; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4132; + this.state = 4134; this.tableNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4134; + this.state = 4136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: { - this.state = 4133; + this.state = 4135; this.match(PostgreSqlParser.KW_SEQUENCE); } break; } - this.state = 4136; + this.state = 4138; this.qualifiedNameList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4144; + this.state = 4146; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4137; + this.state = 4139; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 4141; + this.state = 4143; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 4138; + this.state = 4140; this.match(PostgreSqlParser.KW_DATA); - this.state = 4139; + this.state = 4141; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4140; + this.state = 4142; this.match(PostgreSqlParser.KW_SERVER); } break; @@ -23338,57 +23339,57 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4143; + this.state = 4145; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4146; + this.state = 4148; this.nameList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4147; + this.state = 4149; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4148; + this.state = 4150; this.functionWithArgTypesList(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4149; + this.state = 4151; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4150; + this.state = 4152; this.procedureWithArgTypesList(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4151; + this.state = 4153; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4152; + this.state = 4154; this.routineWithArgTypesList(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4153; + this.state = 4155; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4154; + this.state = 4156; this.databaseNameList(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4155; + this.state = 4157; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23397,32 +23398,32 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4156; + this.state = 4158; this.anyNameList(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4157; + this.state = 4159; this.match(PostgreSqlParser.KW_LARGE); - this.state = 4158; + this.state = 4160; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 4159; + this.state = 4161; this.numericOnly(); - this.state = 4164; + this.state = 4166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4160; + this.state = 4162; this.match(PostgreSqlParser.COMMA); - this.state = 4161; + this.state = 4163; this.numericOnly(); } } - this.state = 4166; + this.state = 4168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23431,27 +23432,27 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4167; + this.state = 4169; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4168; + this.state = 4170; this.schemaNameList(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4169; + this.state = 4171; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 4170; + this.state = 4172; this.tableSpaceNameList(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4171; + this.state = 4173; this.match(PostgreSqlParser.KW_ALL); - this.state = 4172; + this.state = 4174; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 455 || _la === 457)) { this.errorHandler.recoverInline(this); @@ -23460,11 +23461,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4173; + this.state = 4175; this.match(PostgreSqlParser.KW_IN); - this.state = 4174; + this.state = 4176; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4175; + this.state = 4177; this.schemaNameList(); } break; @@ -23492,44 +23493,44 @@ export class PostgreSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 4179; + this.state = 4181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4178; + this.state = 4180; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4181; + this.state = 4183; this.roleSpec(); } - this.state = 4190; + this.state = 4192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4183; + this.state = 4185; this.match(PostgreSqlParser.COMMA); { - this.state = 4185; + this.state = 4187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4184; + this.state = 4186; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4187; + this.state = 4189; this.roleSpec(); } } } - this.state = 4192; + this.state = 4194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23556,54 +23557,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4193; + this.state = 4195; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4194; + this.state = 4196; this.privilege(); - this.state = 4199; + this.state = 4201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4195; + this.state = 4197; this.match(PostgreSqlParser.COMMA); - this.state = 4196; + this.state = 4198; this.privilege(); } } - this.state = 4201; + this.state = 4203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4202; + this.state = 4204; this.match(PostgreSqlParser.KW_TO); - this.state = 4203; + this.state = 4205; this.roleList(); - this.state = 4207; + this.state = 4209; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: { - this.state = 4204; + this.state = 4206; this.match(PostgreSqlParser.KW_WITH); - this.state = 4205; + this.state = 4207; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4206; + this.state = 4208; this.match(PostgreSqlParser.KW_OPTION); } break; } - this.state = 4212; + this.state = 4214; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: { - this.state = 4209; + this.state = 4211; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4210; + this.state = 4212; this.match(PostgreSqlParser.KW_BY); - this.state = 4211; + this.state = 4213; this.roleSpec(); } break; @@ -23631,64 +23632,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4214; + this.state = 4216; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4218; + this.state = 4220; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 4215; + this.state = 4217; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4216; + this.state = 4218; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4217; + this.state = 4219; this.match(PostgreSqlParser.KW_FOR); } break; } - this.state = 4220; + this.state = 4222; this.privilege(); - this.state = 4225; + this.state = 4227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4221; + this.state = 4223; this.match(PostgreSqlParser.COMMA); - this.state = 4222; + this.state = 4224; this.privilege(); } } - this.state = 4227; + this.state = 4229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4228; + this.state = 4230; this.match(PostgreSqlParser.KW_FROM); - this.state = 4229; + this.state = 4231; this.roleList(); - this.state = 4233; + this.state = 4235; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { case 1: { - this.state = 4230; + this.state = 4232; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4231; + this.state = 4233; this.match(PostgreSqlParser.KW_BY); - this.state = 4232; + this.state = 4234; this.roleSpec(); } break; } - this.state = 4236; + this.state = 4238; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 4235; + this.state = 4237; this.optDropBehavior(); } break; @@ -23716,35 +23717,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4238; + this.state = 4240; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4239; + this.state = 4241; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 4240; + this.state = 4242; this.match(PostgreSqlParser.KW_PRIVILEGES); - this.state = 4249; + this.state = 4251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 62 || _la === 68) { { - this.state = 4247; + this.state = 4249; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: { - this.state = 4241; + this.state = 4243; this.match(PostgreSqlParser.KW_IN); - this.state = 4242; + this.state = 4244; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4243; + this.state = 4245; this.schemaNameList(); } break; case PostgreSqlParser.KW_FOR: { - this.state = 4244; + this.state = 4246; this.match(PostgreSqlParser.KW_FOR); - this.state = 4245; + this.state = 4247; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -23753,7 +23754,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4246; + this.state = 4248; this.roleList(); } break; @@ -23761,11 +23762,11 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4251; + this.state = 4253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4252; + this.state = 4254; this.defaclaction(); } } @@ -23788,34 +23789,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 348, PostgreSqlParser.RULE_defaclaction); let _la: number; try { - this.state = 4279; + this.state = 4281; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_GRANT: this.enterOuterAlt(localContext, 1); { - this.state = 4254; + this.state = 4256; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4255; + this.state = 4257; this.privileges(); - this.state = 4256; + this.state = 4258; this.match(PostgreSqlParser.KW_ON); - this.state = 4257; + this.state = 4259; this.defaclPrivilegeTarget(); - this.state = 4258; + this.state = 4260; this.match(PostgreSqlParser.KW_TO); - this.state = 4259; + this.state = 4261; this.granteeList(); - this.state = 4263; + this.state = 4265; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: { - this.state = 4260; + this.state = 4262; this.match(PostgreSqlParser.KW_WITH); - this.state = 4261; + this.state = 4263; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4262; + this.state = 4264; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -23825,38 +23826,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REVOKE: this.enterOuterAlt(localContext, 2); { - this.state = 4265; + this.state = 4267; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4269; + this.state = 4271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4266; + this.state = 4268; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4267; + this.state = 4269; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4268; + this.state = 4270; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4271; + this.state = 4273; this.privileges(); - this.state = 4272; + this.state = 4274; this.match(PostgreSqlParser.KW_ON); - this.state = 4273; + this.state = 4275; this.defaclPrivilegeTarget(); - this.state = 4274; + this.state = 4276; this.match(PostgreSqlParser.KW_FROM); - this.state = 4275; - this.granteeList(); this.state = 4277; + this.granteeList(); + this.state = 4279; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 518, this.context) ) { case 1: { - this.state = 4276; + this.state = 4278; this.optDropBehavior(); } break; @@ -23888,7 +23889,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4281; + this.state = 4283; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 361 || _la === 455 || _la === 456)) { this.errorHandler.recoverInline(this); @@ -23920,126 +23921,126 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4283; - this.match(PostgreSqlParser.KW_CREATE); this.state = 4285; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 4287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98) { { - this.state = 4284; + this.state = 4286; this.match(PostgreSqlParser.KW_UNIQUE); } } - this.state = 4287; - this.match(PostgreSqlParser.KW_INDEX); this.state = 4289; + this.match(PostgreSqlParser.KW_INDEX); + this.state = 4291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4288; + this.state = 4290; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4292; + this.state = 4294; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 4291; + this.state = 4293; this.ifNotExists(); } break; } - this.state = 4295; + this.state = 4297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4294; + this.state = 4296; this.colId(); } } - this.state = 4297; + this.state = 4299; this.match(PostgreSqlParser.KW_ON); - this.state = 4298; - this.relationExpr(); this.state = 4300; + this.relationExpr(); + this.state = 4302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4299; + this.state = 4301; this.tableAccessMethodClause(); } } - this.state = 4302; + this.state = 4304; this.indexParams(); - this.state = 4305; + this.state = 4307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { case 1: { - this.state = 4303; + this.state = 4305; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 4304; + this.state = 4306; this.indexParams(); } break; } - this.state = 4312; + this.state = 4314; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: { - this.state = 4307; - this.match(PostgreSqlParser.KW_NULLS); this.state = 4309; + this.match(PostgreSqlParser.KW_NULLS); + this.state = 4311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 4308; + this.state = 4310; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 4311; + this.state = 4313; this.match(PostgreSqlParser.KW_DISTINCT); } break; } - this.state = 4315; + this.state = 4317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: { - this.state = 4314; + this.state = 4316; this.optRelOptions(); } break; } - this.state = 4318; + this.state = 4320; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { case 1: { - this.state = 4317; + this.state = 4319; this.optTableSpace(); } break; } - this.state = 4321; + this.state = 4323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 4320; + this.state = 4322; this.whereClause(); } } @@ -24067,27 +24068,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4323; + this.state = 4325; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4324; + this.state = 4326; this.indexElem(); - this.state = 4329; + this.state = 4331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4325; + this.state = 4327; this.match(PostgreSqlParser.COMMA); - this.state = 4326; + this.state = 4328; this.indexElem(); } } - this.state = 4331; + this.state = 4333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4332; + this.state = 4334; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24112,53 +24113,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4340; + this.state = 4342; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: { - this.state = 4334; + this.state = 4336; this.columnName(); } break; case 2: { - this.state = 4335; + this.state = 4337; this.funcExprWindowless(); } break; case 3: { - this.state = 4336; + this.state = 4338; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4337; + this.state = 4339; this.expression(); - this.state = 4338; + this.state = 4340; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 4343; + this.state = 4345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 4342; + this.state = 4344; this.collateClause(); } } - this.state = 4351; + this.state = 4353; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 535, this.context) ) { case 1: { - this.state = 4346; + this.state = 4348; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { case 1: { - this.state = 4345; + this.state = 4347; this.anyName(); } break; @@ -24167,19 +24168,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4348; + this.state = 4350; this.anyName(); - this.state = 4349; + this.state = 4351; this.relOptions(); } break; } - this.state = 4354; + this.state = 4356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 4353; + this.state = 4355; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -24191,14 +24192,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4358; + this.state = 4360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 4356; + this.state = 4358; this.match(PostgreSqlParser.KW_NULLS); - this.state = 4357; + this.state = 4359; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -24234,34 +24235,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4360; - this.match(PostgreSqlParser.KW_CREATE); this.state = 4362; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 4364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4361; + this.state = 4363; this.orReplaceOpt(); } } - this.state = 4368; + this.state = 4370; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4364; + this.state = 4366; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4365; + this.state = 4367; this.functionNameCreate(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4366; + this.state = 4368; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4367; + this.state = 4369; this.procedureNameCreate(); } break; @@ -24269,45 +24270,45 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } { - this.state = 4370; + this.state = 4372; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4379; + this.state = 4381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4371; + this.state = 4373; this.funcArgWithDefault(); - this.state = 4376; + this.state = 4378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4372; + this.state = 4374; this.match(PostgreSqlParser.COMMA); - this.state = 4373; + this.state = 4375; this.funcArgWithDefault(); } } - this.state = 4378; + this.state = 4380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4381; + this.state = 4383; this.match(PostgreSqlParser.CLOSE_PAREN); } - this.state = 4399; + this.state = 4401; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 4383; + this.state = 4385; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4397; + this.state = 4399; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -24726,36 +24727,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4384; + this.state = 4386; this.funcType(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4385; + this.state = 4387; this.match(PostgreSqlParser.KW_TABLE); { - this.state = 4386; + this.state = 4388; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4387; + this.state = 4389; this.tableFuncColumn(); - this.state = 4392; + this.state = 4394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4388; + this.state = 4390; this.match(PostgreSqlParser.COMMA); - this.state = 4389; + this.state = 4391; this.tableFuncColumn(); } } - this.state = 4394; + this.state = 4396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4395; + this.state = 4397; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24766,7 +24767,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4402; + this.state = 4404; this.errorHandler.sync(this); alternative = 1; do { @@ -24774,7 +24775,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4401; + this.state = 4403; this.createFuncOptItem(); } } @@ -24782,22 +24783,22 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4404; + this.state = 4406; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4411; + this.state = 4413; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 4406; + this.state = 4408; this.match(PostgreSqlParser.KW_WITH); - this.state = 4407; + this.state = 4409; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4408; + this.state = 4410; this.nameList(); - this.state = 4409; + this.state = 4411; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -24824,9 +24825,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4413; + this.state = 4415; this.match(PostgreSqlParser.KW_OR); - this.state = 4414; + this.state = 4416; this.match(PostgreSqlParser.KW_REPLACE); } } @@ -24851,19 +24852,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4416; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 4418; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 4420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4417; + this.state = 4419; this.funcArgsList(); } } - this.state = 4420; + this.state = 4422; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24888,21 +24889,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4422; + this.state = 4424; this.funcArg(); - this.state = 4427; + this.state = 4429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4423; + this.state = 4425; this.match(PostgreSqlParser.COMMA); - this.state = 4424; + this.state = 4426; this.funcArg(); } } - this.state = 4429; + this.state = 4431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24929,21 +24930,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4430; + this.state = 4432; this.routineWithArgTypes(); - this.state = 4435; + this.state = 4437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4431; + this.state = 4433; this.match(PostgreSqlParser.COMMA); - this.state = 4432; + this.state = 4434; this.routineWithArgTypes(); } } - this.state = 4437; + this.state = 4439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24967,29 +24968,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RoutineWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 368, PostgreSqlParser.RULE_routineWithArgTypes); try { - this.state = 4443; + this.state = 4445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4438; + this.state = 4440; this.routineName(); - this.state = 4439; + this.state = 4441; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4441; + this.state = 4443; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4442; + this.state = 4444; this.qualifiedName(); } break; @@ -25016,21 +25017,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4445; + this.state = 4447; this.procedureWithArgTypes(); - this.state = 4450; + this.state = 4452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4446; + this.state = 4448; this.match(PostgreSqlParser.COMMA); - this.state = 4447; + this.state = 4449; this.procedureWithArgTypes(); } } - this.state = 4452; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25054,29 +25055,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 372, PostgreSqlParser.RULE_procedureWithArgTypes); try { - this.state = 4458; + this.state = 4460; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4453; + this.state = 4455; this.procedureName(); - this.state = 4454; + this.state = 4456; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4456; + this.state = 4458; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4457; + this.state = 4459; this.qualifiedName(); } break; @@ -25103,21 +25104,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4460; + this.state = 4462; this.functionWithArgTypes(); - this.state = 4465; + this.state = 4467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4461; + this.state = 4463; this.match(PostgreSqlParser.COMMA); - this.state = 4462; + this.state = 4464; this.functionWithArgTypes(); } } - this.state = 4467; + this.state = 4469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25141,29 +25142,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 376, PostgreSqlParser.RULE_functionWithArgTypes); try { - this.state = 4473; + this.state = 4475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4468; + this.state = 4470; this.functionName(); - this.state = 4469; + this.state = 4471; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4471; + this.state = 4473; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4472; + this.state = 4474; this.qualifiedName(); } break; @@ -25189,19 +25190,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4483; + this.state = 4485; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 4475; - this.argClass(); this.state = 4477; + this.argClass(); + this.state = 4479; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: { - this.state = 4476; + this.state = 4478; this.typeFunctionName(); } break; @@ -25210,14 +25211,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4479; - this.typeFunctionName(); this.state = 4481; + this.typeFunctionName(); + this.state = 4483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4480; + this.state = 4482; this.argClass(); } break; @@ -25225,7 +25226,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4485; + this.state = 4487; this.funcType(); } } @@ -25247,20 +25248,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ArgClassContext(this.context, this.state); this.enterRule(localContext, 380, PostgreSqlParser.RULE_argClass); try { - this.state = 4494; + this.state = 4496; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4487; - this.match(PostgreSqlParser.KW_IN); this.state = 4489; + this.match(PostgreSqlParser.KW_IN); + this.state = 4491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { case 1: { - this.state = 4488; + this.state = 4490; this.match(PostgreSqlParser.KW_OUT); } break; @@ -25270,21 +25271,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OUT: this.enterOuterAlt(localContext, 2); { - this.state = 4491; + this.state = 4493; this.match(PostgreSqlParser.KW_OUT); } break; case PostgreSqlParser.KW_INOUT: this.enterOuterAlt(localContext, 3); { - this.state = 4492; + this.state = 4494; this.match(PostgreSqlParser.KW_INOUT); } break; case PostgreSqlParser.KW_VARIADIC: this.enterOuterAlt(localContext, 4); { - this.state = 4493; + this.state = 4495; this.match(PostgreSqlParser.KW_VARIADIC); } break; @@ -25311,36 +25312,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 382, PostgreSqlParser.RULE_funcType); let _la: number; try { - this.state = 4505; + this.state = 4507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4496; + this.state = 4498; this.typename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4498; + this.state = 4500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 4497; + this.state = 4499; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 4500; + this.state = 4502; this.typeFunctionName(); - this.state = 4501; + this.state = 4503; this.attrs(); - this.state = 4502; + this.state = 4504; this.match(PostgreSqlParser.PERCENT); - this.state = 4503; + this.state = 4505; this.match(PostgreSqlParser.KW_TYPE); } break; @@ -25367,14 +25368,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4507; + this.state = 4509; this.funcArg(); - this.state = 4510; + this.state = 4512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 53) { { - this.state = 4508; + this.state = 4510; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 53)) { this.errorHandler.recoverInline(this); @@ -25383,7 +25384,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4509; + this.state = 4511; this.expression(); } } @@ -25411,14 +25412,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4512; + this.state = 4514; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4522; + this.state = 4524; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: { - this.state = 4513; + this.state = 4515; this.match(PostgreSqlParser.STAR); } break; @@ -25842,26 +25843,26 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4515; + this.state = 4517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4514; + this.state = 4516; this.funcArgsList(); } } - this.state = 4520; + this.state = 4522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 4517; + this.state = 4519; this.match(PostgreSqlParser.KW_ORDER); - this.state = 4518; + this.state = 4520; this.match(PostgreSqlParser.KW_BY); - this.state = 4519; + this.state = 4521; this.funcArgsList(); } } @@ -25871,7 +25872,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4524; + this.state = 4526; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -25895,9 +25896,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4526; + this.state = 4528; this.functionName(); - this.state = 4527; + this.state = 4529; this.aggregateArgs(); } } @@ -25920,66 +25921,66 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 390, PostgreSqlParser.RULE_commonFuncOptItem); let _la: number; try { - this.state = 4558; + this.state = 4560; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALLED: case PostgreSqlParser.KW_RETURNS: this.enterOuterAlt(localContext, 1); { - this.state = 4532; + this.state = 4534; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RETURNS: { - this.state = 4529; + this.state = 4531; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4530; + this.state = 4532; this.match(PostgreSqlParser.KW_NULL); } break; case PostgreSqlParser.KW_CALLED: { - this.state = 4531; + this.state = 4533; this.match(PostgreSqlParser.KW_CALLED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4534; + this.state = 4536; this.match(PostgreSqlParser.KW_ON); - this.state = 4535; + this.state = 4537; this.match(PostgreSqlParser.KW_NULL); - this.state = 4536; + this.state = 4538; this.match(PostgreSqlParser.KW_INPUT); } break; case PostgreSqlParser.KW_STRICT: this.enterOuterAlt(localContext, 2); { - this.state = 4537; + this.state = 4539; this.match(PostgreSqlParser.KW_STRICT); } break; case PostgreSqlParser.KW_IMMUTABLE: this.enterOuterAlt(localContext, 3); { - this.state = 4538; + this.state = 4540; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case PostgreSqlParser.KW_STABLE: this.enterOuterAlt(localContext, 4); { - this.state = 4539; + this.state = 4541; this.match(PostgreSqlParser.KW_STABLE); } break; case PostgreSqlParser.KW_VOLATILE: this.enterOuterAlt(localContext, 5); { - this.state = 4540; + this.state = 4542; this.match(PostgreSqlParser.KW_VOLATILE); } break; @@ -25987,19 +25988,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SECURITY: this.enterOuterAlt(localContext, 6); { - this.state = 4542; + this.state = 4544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4541; + this.state = 4543; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 4544; + this.state = 4546; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 4545; + this.state = 4547; _la = this.tokenStream.LA(1); if(!(_la === 181 || _la === 243)) { this.errorHandler.recoverInline(this); @@ -26013,16 +26014,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEAKPROOF: this.enterOuterAlt(localContext, 7); { - this.state = 4546; + this.state = 4548; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 8); { - this.state = 4547; + this.state = 4549; this.match(PostgreSqlParser.KW_NOT); - this.state = 4548; + this.state = 4550; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; @@ -26030,7 +26031,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 9); { - this.state = 4549; + this.state = 4551; _la = this.tokenStream.LA(1); if(!(_la === 170 || _la === 320)) { this.errorHandler.recoverInline(this); @@ -26039,41 +26040,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4550; + this.state = 4552; this.numericOnly(); } break; case PostgreSqlParser.KW_SUPPORT: this.enterOuterAlt(localContext, 10); { - this.state = 4551; + this.state = 4553; this.match(PostgreSqlParser.KW_SUPPORT); - this.state = 4552; + this.state = 4554; this.anyName(); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 11); { - this.state = 4553; + this.state = 4555; this.match(PostgreSqlParser.KW_SET); - this.state = 4554; + this.state = 4556; this.setRestMore(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 12); { - this.state = 4555; + this.state = 4557; this.variableResetStmt(); } break; case PostgreSqlParser.KW_PARALLEL: this.enterOuterAlt(localContext, 13); { - this.state = 4556; + this.state = 4558; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 4557; + this.state = 4559; this.colId(); } break; @@ -26100,57 +26101,57 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 392, PostgreSqlParser.RULE_createFuncOptItem); let _la: number; try { - this.state = 4595; + this.state = 4597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4560; + this.state = 4562; this.match(PostgreSqlParser.KW_AS); - this.state = 4561; + this.state = 4563; this.stringConst(); - this.state = 4562; + this.state = 4564; this.notifyPayload(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4564; + this.state = 4566; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4565; + this.state = 4567; this.nonReservedWordOrStringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4566; + this.state = 4568; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4567; + this.state = 4569; this.match(PostgreSqlParser.KW_FOR); - this.state = 4568; + this.state = 4570; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4569; + this.state = 4571; this.typename(); - this.state = 4576; + this.state = 4578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4570; + this.state = 4572; this.match(PostgreSqlParser.COMMA); - this.state = 4571; + this.state = 4573; this.match(PostgreSqlParser.KW_FOR); - this.state = 4572; + this.state = 4574; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4573; + this.state = 4575; this.typename(); } } - this.state = 4578; + this.state = 4580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26159,41 +26160,41 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4579; + this.state = 4581; this.match(PostgreSqlParser.KW_WINDOW); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4580; + this.state = 4582; this.match(PostgreSqlParser.KW_SET); - this.state = 4581; + this.state = 4583; this.colId(); - this.state = 4588; + this.state = 4590; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TO: { - this.state = 4582; + this.state = 4584; this.match(PostgreSqlParser.KW_TO); - this.state = 4583; + this.state = 4585; this.colId(); } break; case PostgreSqlParser.EQUAL: { - this.state = 4584; + this.state = 4586; this.match(PostgreSqlParser.EQUAL); - this.state = 4585; + this.state = 4587; this.colId(); } break; case PostgreSqlParser.KW_FROM: { - this.state = 4586; + this.state = 4588; this.match(PostgreSqlParser.KW_FROM); - this.state = 4587; + this.state = 4589; this.match(PostgreSqlParser.KW_CURRENT); } break; @@ -26205,30 +26206,30 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4590; + this.state = 4592; this.match(PostgreSqlParser.KW_AS); - this.state = 4591; + this.state = 4593; this.colId(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4592; + this.state = 4594; this.stmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4593; + this.state = 4595; this.commonFuncOptItem(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4594; + this.state = 4596; this.colId(); } break; @@ -26254,9 +26255,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4597; + this.state = 4599; this.match(PostgreSqlParser.KW_WITH); - this.state = 4598; + this.state = 4600; this.definition(); } } @@ -26280,9 +26281,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4600; + this.state = 4602; this.columnName(); - this.state = 4601; + this.state = 4603; this.funcType(); } } @@ -26307,39 +26308,39 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4603; + this.state = 4605; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4610; + this.state = 4612; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4604; + this.state = 4606; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4605; + this.state = 4607; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4606; + this.state = 4608; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4607; + this.state = 4609; this.procedureWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4608; + this.state = 4610; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4609; + this.state = 4611; this.routineWithArgTypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4613; + this.state = 4615; this.errorHandler.sync(this); alternative = 1; do { @@ -26347,7 +26348,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4612; + this.state = 4614; this.commonFuncOptItem(); } } @@ -26355,16 +26356,16 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4615; + this.state = 4617; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 573, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4618; + this.state = 4620; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: { - this.state = 4617; + this.state = 4619; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -26391,74 +26392,74 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4620; + this.state = 4622; this.match(PostgreSqlParser.KW_DROP); - this.state = 4636; + this.state = 4638; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4621; - this.match(PostgreSqlParser.KW_FUNCTION); this.state = 4623; + this.match(PostgreSqlParser.KW_FUNCTION); + this.state = 4625; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4622; + this.state = 4624; this.ifExists(); } break; } - this.state = 4625; + this.state = 4627; this.functionWithArgTypesList(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4626; - this.match(PostgreSqlParser.KW_PROCEDURE); this.state = 4628; + this.match(PostgreSqlParser.KW_PROCEDURE); + this.state = 4630; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: { - this.state = 4627; + this.state = 4629; this.ifExists(); } break; } - this.state = 4630; + this.state = 4632; this.procedureWithArgTypesList(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4631; - this.match(PostgreSqlParser.KW_ROUTINE); this.state = 4633; + this.match(PostgreSqlParser.KW_ROUTINE); + this.state = 4635; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4632; + this.state = 4634; this.ifExists(); } break; } - this.state = 4635; + this.state = 4637; this.routineWithArgTypesList(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4639; + this.state = 4641; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4638; + this.state = 4640; this.optDropBehavior(); } break; @@ -26486,46 +26487,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4641; + this.state = 4643; this.match(PostgreSqlParser.KW_DROP); - this.state = 4642; - this.match(PostgreSqlParser.KW_AGGREGATE); this.state = 4644; + this.match(PostgreSqlParser.KW_AGGREGATE); + this.state = 4646; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4643; + this.state = 4645; this.ifExists(); } break; } { - this.state = 4646; + this.state = 4648; this.aggregateWithArgTypes(); - this.state = 4651; + this.state = 4653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4647; + this.state = 4649; this.match(PostgreSqlParser.COMMA); - this.state = 4648; + this.state = 4650; this.aggregateWithArgTypes(); } } - this.state = 4653; + this.state = 4655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4655; + this.state = 4657; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4654; + this.state = 4656; this.optDropBehavior(); } break; @@ -26553,46 +26554,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4657; + this.state = 4659; this.match(PostgreSqlParser.KW_DROP); - this.state = 4658; - this.match(PostgreSqlParser.KW_OPERATOR); this.state = 4660; + this.match(PostgreSqlParser.KW_OPERATOR); + this.state = 4662; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4659; + this.state = 4661; this.ifExists(); } break; } { - this.state = 4662; + this.state = 4664; this.operatorWithArgTypes(); - this.state = 4667; + this.state = 4669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4663; + this.state = 4665; this.match(PostgreSqlParser.COMMA); - this.state = 4664; + this.state = 4666; this.operatorWithArgTypes(); } } - this.state = 4669; + this.state = 4671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4671; + this.state = 4673; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: { - this.state = 4670; + this.state = 4672; this.optDropBehavior(); } break; @@ -26620,23 +26621,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4673; + this.state = 4675; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4686; + this.state = 4688; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { case 1: { - this.state = 4674; + this.state = 4676; this.typename(); - this.state = 4677; + this.state = 4679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4675; + this.state = 4677; this.match(PostgreSqlParser.COMMA); - this.state = 4676; + this.state = 4678; this.typename(); } } @@ -26645,26 +26646,26 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4679; + this.state = 4681; this.match(PostgreSqlParser.KW_NONE); - this.state = 4680; + this.state = 4682; this.match(PostgreSqlParser.COMMA); - this.state = 4681; + this.state = 4683; this.typename(); } break; case 3: { - this.state = 4682; + this.state = 4684; this.typename(); - this.state = 4683; + this.state = 4685; this.match(PostgreSqlParser.COMMA); - this.state = 4684; + this.state = 4686; this.match(PostgreSqlParser.KW_NONE); } break; } - this.state = 4688; + this.state = 4690; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -26689,23 +26690,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4695; + this.state = 4697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { { - this.state = 4690; + this.state = 4692; this.colId(); - this.state = 4691; + this.state = 4693; this.match(PostgreSqlParser.DOT); } } - this.state = 4697; + this.state = 4699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4698; + this.state = 4700; this.allOp(); } } @@ -26729,9 +26730,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4700; + this.state = 4702; this.anyOperator(); - this.state = 4701; + this.state = 4703; this.operatorArgTypes(); } } @@ -26756,16 +26757,16 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4703; + this.state = 4705; this.match(PostgreSqlParser.KW_DO); - this.state = 4707; + this.state = 4709; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 4707; + this.state = 4709; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -26773,15 +26774,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4704; + this.state = 4706; this.stringConst(); } break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4705; + this.state = 4707; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4706; + this.state = 4708; this.nonReservedWordOrStringConst(); } break; @@ -26793,7 +26794,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4709; + this.state = 4711; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -26820,38 +26821,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4711; - this.match(PostgreSqlParser.KW_CREATE); - this.state = 4712; - this.match(PostgreSqlParser.KW_CAST); this.state = 4713; - this.match(PostgreSqlParser.OPEN_PAREN); + this.match(PostgreSqlParser.KW_CREATE); this.state = 4714; - this.typename(); + this.match(PostgreSqlParser.KW_CAST); this.state = 4715; - this.match(PostgreSqlParser.KW_AS); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 4716; this.typename(); this.state = 4717; + this.match(PostgreSqlParser.KW_AS); + this.state = 4718; + this.typename(); + this.state = 4719; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 4734; + this.state = 4736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WITHOUT: { { - this.state = 4718; + this.state = 4720; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 4719; + this.state = 4721; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4722; + this.state = 4724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4720; + this.state = 4722; this.match(PostgreSqlParser.KW_AS); - this.state = 4721; + this.state = 4723; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26869,36 +26870,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: { { - this.state = 4724; + this.state = 4726; this.match(PostgreSqlParser.KW_WITH); - this.state = 4728; + this.state = 4730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4725; + this.state = 4727; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4726; + this.state = 4728; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_INOUT: { - this.state = 4727; + this.state = 4729; this.match(PostgreSqlParser.KW_INOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4732; + this.state = 4734; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4730; + this.state = 4732; this.match(PostgreSqlParser.KW_AS); - this.state = 4731; + this.state = 4733; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26938,9 +26939,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4736; + this.state = 4738; this.match(PostgreSqlParser.KW_IF); - this.state = 4737; + this.state = 4739; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -26965,49 +26966,49 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4739; - this.match(PostgreSqlParser.KW_CREATE); this.state = 4741; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 4743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4740; + this.state = 4742; this.orReplaceOpt(); } } - this.state = 4743; + this.state = 4745; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4744; + this.state = 4746; this.match(PostgreSqlParser.KW_FOR); - this.state = 4745; + this.state = 4747; this.typename(); - this.state = 4746; + this.state = 4748; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4747; + this.state = 4749; this.colId(); - this.state = 4748; + this.state = 4750; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4763; + this.state = 4765; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FROM: { - this.state = 4749; + this.state = 4751; this.match(PostgreSqlParser.KW_FROM); - this.state = 4750; + this.state = 4752; this.sqlWithFunction(); - this.state = 4754; + this.state = 4756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4751; + this.state = 4753; this.match(PostgreSqlParser.COMMA); - this.state = 4752; + this.state = 4754; this.match(PostgreSqlParser.KW_TO); - this.state = 4753; + this.state = 4755; this.sqlWithFunction(); } } @@ -27016,20 +27017,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_TO: { - this.state = 4756; + this.state = 4758; this.match(PostgreSqlParser.KW_TO); - this.state = 4757; + this.state = 4759; this.sqlWithFunction(); - this.state = 4761; + this.state = 4763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4758; + this.state = 4760; this.match(PostgreSqlParser.COMMA); - this.state = 4759; + this.state = 4761; this.match(PostgreSqlParser.KW_FROM); - this.state = 4760; + this.state = 4762; this.sqlWithFunction(); } } @@ -27039,7 +27040,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4765; + this.state = 4767; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -27063,13 +27064,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4767; + this.state = 4769; this.match(PostgreSqlParser.KW_SQL); - this.state = 4768; + this.state = 4770; this.match(PostgreSqlParser.KW_WITH); - this.state = 4769; + this.state = 4771; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4770; + this.state = 4772; this.functionWithArgTypes(); } } @@ -27094,129 +27095,129 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4772; + this.state = 4774; this.match(PostgreSqlParser.KW_REINDEX); - this.state = 4783; + this.state = 4785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4773; + this.state = 4775; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4774; + this.state = 4776; this.match(PostgreSqlParser.KW_VERBOSE); - this.state = 4779; + this.state = 4781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4775; + this.state = 4777; this.match(PostgreSqlParser.COMMA); - this.state = 4776; + this.state = 4778; this.match(PostgreSqlParser.KW_VERBOSE); } } - this.state = 4781; + this.state = 4783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4782; + this.state = 4784; this.match(PostgreSqlParser.CLOSE_PAREN); } } { - this.state = 4810; + this.state = 4812; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INDEX: { - this.state = 4785; - this.match(PostgreSqlParser.KW_INDEX); this.state = 4787; + this.match(PostgreSqlParser.KW_INDEX); + this.state = 4789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4786; + this.state = 4788; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4789; + this.state = 4791; this.qualifiedName(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4790; - this.match(PostgreSqlParser.KW_TABLE); this.state = 4792; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 4794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4791; + this.state = 4793; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4794; + this.state = 4796; this.tableName(); } break; case PostgreSqlParser.KW_SCHEMA: { - this.state = 4795; - this.match(PostgreSqlParser.KW_SCHEMA); this.state = 4797; + this.match(PostgreSqlParser.KW_SCHEMA); + this.state = 4799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4796; + this.state = 4798; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4799; + this.state = 4801; this.schemaName(); } break; case PostgreSqlParser.KW_SYSTEM: { - this.state = 4800; - this.match(PostgreSqlParser.KW_SYSTEM); this.state = 4802; + this.match(PostgreSqlParser.KW_SYSTEM); + this.state = 4804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4801; + this.state = 4803; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4804; + this.state = 4806; this.colId(); } break; case PostgreSqlParser.KW_DATABASE: { - this.state = 4805; - this.match(PostgreSqlParser.KW_DATABASE); this.state = 4807; + this.match(PostgreSqlParser.KW_DATABASE); + this.state = 4809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4806; + this.state = 4808; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4809; + this.state = 4811; this.databaseName(); } break; @@ -27247,11 +27248,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4812; + this.state = 4814; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4813; + this.state = 4815; this.optTableSpace(); - this.state = 4814; + this.state = 4816; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -27260,7 +27261,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4815; + this.state = 4817; this.relOptions(); } } @@ -27283,67 +27284,67 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 426, PostgreSqlParser.RULE_renameStmt); let _la: number; try { - this.state = 5024; + this.state = 5026; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4817; + this.state = 4819; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4822; + this.state = 4824; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AGGREGATE: { - this.state = 4818; + this.state = 4820; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4819; + this.state = 4821; this.aggregateWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4820; + this.state = 4822; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4821; + this.state = 4823; this.routineWithArgTypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4824; + this.state = 4826; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4825; + this.state = 4827; this.match(PostgreSqlParser.KW_TO); - this.state = 4826; + this.state = 4828; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4828; + this.state = 4830; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4829; + this.state = 4831; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4830; + this.state = 4832; this.databaseName(); - this.state = 4831; + this.state = 4833; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4832; + this.state = 4834; this.match(PostgreSqlParser.KW_TO); - this.state = 4833; + this.state = 4835; this.databaseNameCreate(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4835; + this.state = 4837; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4836; + this.state = 4838; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 189 || _la === 342 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -27352,41 +27353,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4837; + this.state = 4839; this.anyName(); - this.state = 4838; + this.state = 4840; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4839; + this.state = 4841; this.match(PostgreSqlParser.KW_TO); - this.state = 4840; + this.state = 4842; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4842; + this.state = 4844; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4843; + this.state = 4845; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4844; + this.state = 4846; this.functionWithArgTypes(); - this.state = 4845; + this.state = 4847; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4846; + this.state = 4848; this.match(PostgreSqlParser.KW_TO); - this.state = 4847; + this.state = 4849; this.functionNameCreate(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4849; + this.state = 4851; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4850; + this.state = 4852; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 4851; + this.state = 4853; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -27395,58 +27396,58 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4852; + this.state = 4854; this.anyName(); - this.state = 4853; + this.state = 4855; this.tableAccessMethodClause(); - this.state = 4854; + this.state = 4856; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4855; + this.state = 4857; this.match(PostgreSqlParser.KW_TO); - this.state = 4856; + this.state = 4858; this.colId(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4858; + this.state = 4860; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4859; + this.state = 4861; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4860; + this.state = 4862; this.procedureWithArgTypes(); - this.state = 4861; + this.state = 4863; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4862; + this.state = 4864; this.match(PostgreSqlParser.KW_TO); - this.state = 4863; + this.state = 4865; this.procedureNameCreate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4865; + this.state = 4867; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4866; + this.state = 4868; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4867; + this.state = 4869; this.schemaName(); - this.state = 4868; + this.state = 4870; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4869; + this.state = 4871; this.match(PostgreSqlParser.KW_TO); - this.state = 4870; + this.state = 4872; this.schemaNameCreate(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4872; + this.state = 4874; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4873; + this.state = 4875; _la = this.tokenStream.LA(1); if(!(_la === 226 || _la === 328)) { this.errorHandler.recoverInline(this); @@ -27455,143 +27456,143 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4875; + this.state = 4877; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: { - this.state = 4874; + this.state = 4876; this.ifExists(); } break; } - this.state = 4877; + this.state = 4879; this.qualifiedName(); - this.state = 4878; + this.state = 4880; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4879; + this.state = 4881; this.match(PostgreSqlParser.KW_TO); - this.state = 4880; + this.state = 4882; this.colId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4882; - this.match(PostgreSqlParser.KW_ALTER); this.state = 4884; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 4886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4883; + this.state = 4885; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4886; - this.match(PostgreSqlParser.KW_VIEW); this.state = 4888; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 4890; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 4887; + this.state = 4889; this.ifExists(); } break; } - this.state = 4890; + this.state = 4892; this.viewName(); - this.state = 4891; + this.state = 4893; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4892; + this.state = 4894; this.match(PostgreSqlParser.KW_TO); - this.state = 4893; + this.state = 4895; this.viewNameCreate(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4895; - this.match(PostgreSqlParser.KW_ALTER); this.state = 4897; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 4899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4896; + this.state = 4898; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4899; - this.match(PostgreSqlParser.KW_TABLE); this.state = 4901; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 4903; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: { - this.state = 4900; + this.state = 4902; this.ifExists(); } break; } - this.state = 4903; + this.state = 4905; this.relationExpr(); - this.state = 4904; + this.state = 4906; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4905; + this.state = 4907; this.match(PostgreSqlParser.KW_TO); - this.state = 4906; + this.state = 4908; this.tableNameCreate(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4908; + this.state = 4910; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4933; + this.state = 4935; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: { - this.state = 4910; + this.state = 4912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4909; + this.state = 4911; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4912; - this.match(PostgreSqlParser.KW_TABLE); this.state = 4914; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 4916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 4913; + this.state = 4915; this.ifExists(); } break; } - this.state = 4916; + this.state = 4918; this.relationExpr(); - this.state = 4917; - this.match(PostgreSqlParser.KW_RENAME); this.state = 4919; + this.match(PostgreSqlParser.KW_RENAME); + this.state = 4921; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: { - this.state = 4918; + this.state = 4920; this.match(PostgreSqlParser.KW_COLUMN); } break; @@ -27601,38 +27602,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MATERIALIZED: case PostgreSqlParser.KW_VIEW: { - this.state = 4922; + this.state = 4924; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4921; + this.state = 4923; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4924; - this.match(PostgreSqlParser.KW_VIEW); this.state = 4926; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 4928; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4925; + this.state = 4927; this.ifExists(); } break; } - this.state = 4928; + this.state = 4930; this.viewName(); - this.state = 4929; - this.match(PostgreSqlParser.KW_RENAME); this.state = 4931; + this.match(PostgreSqlParser.KW_RENAME); + this.state = 4933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 4930; + this.state = 4932; this.match(PostgreSqlParser.KW_COLUMN); } break; @@ -27642,82 +27643,82 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4935; + this.state = 4937; this.columnName(); - this.state = 4936; + this.state = 4938; this.match(PostgreSqlParser.KW_TO); - this.state = 4937; + this.state = 4939; this.columnNameCreate(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4939; + this.state = 4941; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4947; + this.state = 4949; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TABLE: { - this.state = 4940; - this.match(PostgreSqlParser.KW_TABLE); this.state = 4942; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 4944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { case 1: { - this.state = 4941; + this.state = 4943; this.ifExists(); } break; } - this.state = 4944; + this.state = 4946; this.relationExpr(); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 4945; + this.state = 4947; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 4946; + this.state = 4948; this.anyName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4949; + this.state = 4951; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4950; + this.state = 4952; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 4951; + this.state = 4953; this.colId(); - this.state = 4952; + this.state = 4954; this.match(PostgreSqlParser.KW_TO); - this.state = 4953; + this.state = 4955; this.colId(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4955; + this.state = 4957; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4962; + this.state = 4964; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_POLICY: { { - this.state = 4956; - this.match(PostgreSqlParser.KW_POLICY); this.state = 4958; + this.match(PostgreSqlParser.KW_POLICY); + this.state = 4960; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4957; + this.state = 4959; this.ifExists(); } break; @@ -27727,113 +27728,113 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RULE: { - this.state = 4960; + this.state = 4962; this.match(PostgreSqlParser.KW_RULE); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 4961; + this.state = 4963; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4964; + this.state = 4966; this.colId(); - this.state = 4965; + this.state = 4967; this.match(PostgreSqlParser.KW_ON); - this.state = 4966; + this.state = 4968; this.qualifiedName(); - this.state = 4967; + this.state = 4969; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4968; + this.state = 4970; this.match(PostgreSqlParser.KW_TO); - this.state = 4969; + this.state = 4971; this.colId(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4971; + this.state = 4973; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4984; + this.state = 4986; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4972; + this.state = 4974; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 4973; + this.state = 4975; this.match(PostgreSqlParser.KW_DATA); - this.state = 4974; + this.state = 4976; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 4976; + this.state = 4978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 4975; + this.state = 4977; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 4978; + this.state = 4980; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 4979; + this.state = 4981; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4980; + this.state = 4982; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 4981; + this.state = 4983; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 4982; + this.state = 4984; this.match(PostgreSqlParser.KW_EVENT); - this.state = 4983; + this.state = 4985; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4986; + this.state = 4988; this.colId(); - this.state = 4987; + this.state = 4989; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4988; + this.state = 4990; this.match(PostgreSqlParser.KW_TO); - this.state = 4989; + this.state = 4991; this.colId(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4991; + this.state = 4993; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4992; + this.state = 4994; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -27842,41 +27843,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4993; + this.state = 4995; this.roleSpec(); - this.state = 4994; + this.state = 4996; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4995; + this.state = 4997; this.match(PostgreSqlParser.KW_TO); - this.state = 4996; + this.state = 4998; this.roleSpec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4998; + this.state = 5000; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4999; + this.state = 5001; this.optTableSpace(); - this.state = 5000; + this.state = 5002; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5001; + this.state = 5003; this.match(PostgreSqlParser.KW_TO); - this.state = 5002; + this.state = 5004; this.tableSpaceName(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5004; + this.state = 5006; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5005; + this.state = 5007; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5006; + this.state = 5008; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5007; + this.state = 5009; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -27885,41 +27886,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5008; + this.state = 5010; this.anyName(); - this.state = 5009; + this.state = 5011; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5010; + this.state = 5012; this.match(PostgreSqlParser.KW_TO); - this.state = 5011; + this.state = 5013; this.colId(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5013; - this.match(PostgreSqlParser.KW_ALTER); - this.state = 5014; - this.match(PostgreSqlParser.KW_TYPE); this.state = 5015; - this.anyName(); + this.match(PostgreSqlParser.KW_ALTER); this.state = 5016; - this.match(PostgreSqlParser.KW_RENAME); + this.match(PostgreSqlParser.KW_TYPE); this.state = 5017; - this.match(PostgreSqlParser.KW_ATTRIBUTE); + this.anyName(); this.state = 5018; - this.colId(); + this.match(PostgreSqlParser.KW_RENAME); this.state = 5019; - this.match(PostgreSqlParser.KW_TO); + this.match(PostgreSqlParser.KW_ATTRIBUTE); this.state = 5020; this.colId(); + this.state = 5021; + this.match(PostgreSqlParser.KW_TO); this.state = 5022; + this.colId(); + this.state = 5024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 5021; + this.state = 5023; this.optDropBehavior(); } break; @@ -27949,85 +27950,85 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5026; + this.state = 5028; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5043; + this.state = 5045; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 5027; + this.state = 5029; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5028; + this.state = 5030; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 5029; + this.state = 5031; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5030; + this.state = 5032; this.procedureWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 5031; + this.state = 5033; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5032; + this.state = 5034; this.routineWithArgTypes(); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 5033; + this.state = 5035; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 5034; + this.state = 5036; this.colId(); - this.state = 5035; + this.state = 5037; this.match(PostgreSqlParser.KW_ON); - this.state = 5036; + this.state = 5038; this.qualifiedName(); } break; case PostgreSqlParser.KW_MATERIALIZED: { - this.state = 5038; + this.state = 5040; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 5039; + this.state = 5041; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5040; + this.state = 5042; this.viewName(); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 5041; + this.state = 5043; this.match(PostgreSqlParser.KW_INDEX); - this.state = 5042; + this.state = 5044; this.qualifiedName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5046; + this.state = 5048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5045; + this.state = 5047; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5048; + this.state = 5050; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 5049; + this.state = 5051; this.match(PostgreSqlParser.KW_ON); - this.state = 5050; + this.state = 5052; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5051; + this.state = 5053; this.colId(); } } @@ -28050,54 +28051,54 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 430, PostgreSqlParser.RULE_alterObjectSchemaStmt); let _la: number; try { - this.state = 5114; + this.state = 5116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5053; + this.state = 5055; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5092; + this.state = 5094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { case 1: { - this.state = 5054; + this.state = 5056; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5055; + this.state = 5057; this.aggregateWithArgTypes(); } break; case 2: { - this.state = 5056; + this.state = 5058; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5057; + this.state = 5059; this.colId(); } break; case 3: { - this.state = 5058; + this.state = 5060; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5059; + this.state = 5061; this.functionWithArgTypes(); } break; case 4: { - this.state = 5060; + this.state = 5062; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5061; + this.state = 5063; this.operatorWithArgTypes(); } break; case 5: { - this.state = 5062; + this.state = 5064; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5063; + this.state = 5065; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28106,126 +28107,126 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5064; + this.state = 5066; this.anyName(); - this.state = 5065; + this.state = 5067; this.tableAccessMethodClause(); } break; case 6: { - this.state = 5067; + this.state = 5069; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5068; + this.state = 5070; this.procedureWithArgTypes(); } break; case 7: { - this.state = 5069; + this.state = 5071; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5070; + this.state = 5072; this.routineWithArgTypes(); } break; case 8: { - this.state = 5071; - this.match(PostgreSqlParser.KW_SEQUENCE); this.state = 5073; + this.match(PostgreSqlParser.KW_SEQUENCE); + this.state = 5075; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 5072; + this.state = 5074; this.ifExists(); } break; } - this.state = 5075; + this.state = 5077; this.qualifiedName(); } break; case 9: { - this.state = 5077; + this.state = 5079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 5076; + this.state = 5078; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 5079; - this.match(PostgreSqlParser.KW_VIEW); this.state = 5081; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 5083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { case 1: { - this.state = 5080; + this.state = 5082; this.ifExists(); } break; } - this.state = 5083; + this.state = 5085; this.viewName(); } break; case 10: { - this.state = 5085; + this.state = 5087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 5084; + this.state = 5086; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 5087; - this.match(PostgreSqlParser.KW_TABLE); this.state = 5089; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 5091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { case 1: { - this.state = 5088; + this.state = 5090; this.ifExists(); } break; } - this.state = 5091; + this.state = 5093; this.relationExpr(); } break; } - this.state = 5094; + this.state = 5096; this.match(PostgreSqlParser.KW_SET); - this.state = 5095; + this.state = 5097; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5096; + this.state = 5098; this.schemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5098; + this.state = 5100; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5107; + this.state = 5109; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5099; + this.state = 5101; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5100; + this.state = 5102; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5101; + this.state = 5103; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -28238,44 +28239,44 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5102; + this.state = 5104; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5103; + this.state = 5105; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5104; + this.state = 5106; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5105; + this.state = 5107; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5106; + this.state = 5108; this.match(PostgreSqlParser.KW_TYPE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5109; + this.state = 5111; this.anyName(); - this.state = 5110; + this.state = 5112; this.match(PostgreSqlParser.KW_SET); - this.state = 5111; + this.state = 5113; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5112; + this.state = 5114; this.schemaName(); } break; @@ -28301,15 +28302,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5116; + this.state = 5118; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5117; + this.state = 5119; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5118; + this.state = 5120; this.operatorWithArgTypes(); - this.state = 5119; + this.state = 5121; this.match(PostgreSqlParser.KW_SET); - this.state = 5120; + this.state = 5122; this.operatorDefList(); } } @@ -28334,27 +28335,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5122; + this.state = 5124; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5123; + this.state = 5125; this.operatorDefElem(); - this.state = 5128; + this.state = 5130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5124; + this.state = 5126; this.match(PostgreSqlParser.COMMA); - this.state = 5125; + this.state = 5127; this.operatorDefElem(); } } - this.state = 5130; + this.state = 5132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5131; + this.state = 5133; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -28378,46 +28379,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5133; + this.state = 5135; this.colLabel(); - this.state = 5134; + this.state = 5136; this.match(PostgreSqlParser.EQUAL); - this.state = 5141; + this.state = 5143; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { case 1: { - this.state = 5135; + this.state = 5137; this.match(PostgreSqlParser.KW_NONE); } break; case 2: { - this.state = 5136; + this.state = 5138; this.funcType(); } break; case 3: { - this.state = 5137; + this.state = 5139; this.reservedKeyword(); } break; case 4: { - this.state = 5138; + this.state = 5140; this.qualAllOp(); } break; case 5: { - this.state = 5139; + this.state = 5141; this.numericOnly(); } break; case 6: { - this.state = 5140; + this.state = 5142; this.stringConst(); } break; @@ -28444,15 +28445,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5143; + this.state = 5145; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5144; + this.state = 5146; this.match(PostgreSqlParser.KW_TYPE); - this.state = 5145; + this.state = 5147; this.anyName(); - this.state = 5146; + this.state = 5148; this.match(PostgreSqlParser.KW_SET); - this.state = 5147; + this.state = 5149; this.operatorDefList(); } } @@ -28475,17 +28476,17 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 440, PostgreSqlParser.RULE_alterOwnerStmt); let _la: number; try { - this.state = 5223; + this.state = 5225; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5149; + this.state = 5151; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5150; + this.state = 5152; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5151; + this.state = 5153; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28494,150 +28495,150 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5152; + this.state = 5154; this.anyName(); - this.state = 5153; + this.state = 5155; this.tableAccessMethodClause(); - this.state = 5154; + this.state = 5156; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5155; + this.state = 5157; this.match(PostgreSqlParser.KW_TO); - this.state = 5156; + this.state = 5158; this.roleSpec(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5158; + this.state = 5160; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5185; + this.state = 5187; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 641, this.context) ) { case 1: { - this.state = 5159; + this.state = 5161; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5160; + this.state = 5162; this.aggregateWithArgTypes(); } break; case 2: { - this.state = 5161; + this.state = 5163; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5162; + this.state = 5164; this.databaseName(); } break; case 3: { - this.state = 5163; + this.state = 5165; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5164; + this.state = 5166; this.functionWithArgTypes(); } break; case 4: { - this.state = 5166; + this.state = 5168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5165; + this.state = 5167; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 5168; + this.state = 5170; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 5169; + this.state = 5171; this.colId(); } break; case 5: { - this.state = 5170; + this.state = 5172; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5171; + this.state = 5173; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5172; + this.state = 5174; this.numericOnly(); } break; case 6: { - this.state = 5173; + this.state = 5175; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5174; + this.state = 5176; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5175; + this.state = 5177; this.numericOnly(); } break; case 7: { - this.state = 5176; + this.state = 5178; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5177; + this.state = 5179; this.operatorWithArgTypes(); } break; case 8: { - this.state = 5178; + this.state = 5180; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5179; + this.state = 5181; this.procedureWithArgTypes(); } break; case 9: { - this.state = 5180; + this.state = 5182; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5181; + this.state = 5183; this.routineWithArgTypes(); } break; case 10: { - this.state = 5182; + this.state = 5184; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5183; + this.state = 5185; this.schemaName(); } break; case 11: { - this.state = 5184; + this.state = 5186; this.optTableSpace(); } break; } - this.state = 5187; + this.state = 5189; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5188; + this.state = 5190; this.match(PostgreSqlParser.KW_TO); - this.state = 5189; + this.state = 5191; this.roleSpec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5191; + this.state = 5193; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5200; + this.state = 5202; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5192; + this.state = 5194; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5193; + this.state = 5195; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5194; + this.state = 5196; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -28650,69 +28651,69 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5195; + this.state = 5197; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5196; + this.state = 5198; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5197; + this.state = 5199; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5198; + this.state = 5200; this.match(PostgreSqlParser.KW_TYPE); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5199; + this.state = 5201; this.match(PostgreSqlParser.KW_STATISTICS); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5202; + this.state = 5204; this.anyName(); - this.state = 5203; + this.state = 5205; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5204; + this.state = 5206; this.match(PostgreSqlParser.KW_TO); - this.state = 5205; + this.state = 5207; this.roleSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5207; + this.state = 5209; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5216; + this.state = 5218; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SERVER: { - this.state = 5208; + this.state = 5210; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_FOREIGN: { { - this.state = 5209; + this.state = 5211; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 5210; + this.state = 5212; this.match(PostgreSqlParser.KW_DATA); - this.state = 5211; + this.state = 5213; this.match(PostgreSqlParser.KW_WRAPPER); } } @@ -28720,35 +28721,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EVENT: { { - this.state = 5212; + this.state = 5214; this.match(PostgreSqlParser.KW_EVENT); - this.state = 5213; + this.state = 5215; this.match(PostgreSqlParser.KW_TRIGGER); } } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 5214; + this.state = 5216; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 5215; + this.state = 5217; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5218; + this.state = 5220; this.colId(); - this.state = 5219; + this.state = 5221; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5220; + this.state = 5222; this.match(PostgreSqlParser.KW_TO); - this.state = 5221; + this.state = 5223; this.roleSpec(); } break; @@ -28774,42 +28775,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5225; + this.state = 5227; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5226; + this.state = 5228; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5227; + this.state = 5229; this.colId(); - this.state = 5234; + this.state = 5236; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { case 1: { - this.state = 5228; + this.state = 5230; this.match(PostgreSqlParser.KW_FOR); - this.state = 5229; + this.state = 5231; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5230; + this.state = 5232; this.relationExprList(); } break; case 2: { - this.state = 5231; + this.state = 5233; this.match(PostgreSqlParser.KW_FOR); - this.state = 5232; + this.state = 5234; this.match(PostgreSqlParser.KW_ALL); - this.state = 5233; + this.state = 5235; this.match(PostgreSqlParser.KW_TABLES); } break; } - this.state = 5237; + this.state = 5239; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { case 1: { - this.state = 5236; + this.state = 5238; this.optDefinition(); } break; @@ -28837,23 +28838,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5239; + this.state = 5241; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5240; + this.state = 5242; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5241; + this.state = 5243; this.colId(); - this.state = 5259; + this.state = 5261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: { { - this.state = 5242; + this.state = 5244; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5243; + this.state = 5245; this.match(PostgreSqlParser.KW_TO); - this.state = 5244; + this.state = 5246; this.roleSpec(); } } @@ -28861,9 +28862,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: { { - this.state = 5245; + this.state = 5247; this.match(PostgreSqlParser.KW_SET); - this.state = 5246; + this.state = 5248; this.definition(); } } @@ -28871,18 +28872,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 5247; + this.state = 5249; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5248; + this.state = 5250; this.match(PostgreSqlParser.KW_TO); - this.state = 5249; + this.state = 5251; this.colId(); } } break; case 4: { - this.state = 5250; + this.state = 5252; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -28891,21 +28892,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5251; + this.state = 5253; this.publicationRelationExpr(); - this.state = 5256; + this.state = 5258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5252; + this.state = 5254; this.match(PostgreSqlParser.COMMA); - this.state = 5253; + this.state = 5255; this.publicationRelationExpr(); } } - this.state = 5258; + this.state = 5260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28935,44 +28936,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5261; + this.state = 5263; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5262; + this.state = 5264; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5263; + this.state = 5265; this.colId(); - this.state = 5264; + this.state = 5266; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5265; + this.state = 5267; this.stringConst(); - this.state = 5266; + this.state = 5268; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5267; + this.state = 5269; this.colLabel(); - this.state = 5272; + this.state = 5274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5268; + this.state = 5270; this.match(PostgreSqlParser.COMMA); - this.state = 5269; + this.state = 5271; this.colLabel(); } } - this.state = 5274; + this.state = 5276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5276; + this.state = 5278; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { case 1: { - this.state = 5275; + this.state = 5277; this.optDefinition(); } break; @@ -28998,58 +28999,58 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 448, PostgreSqlParser.RULE_alterSubscriptionStmt); let _la: number; try { - this.state = 5334; + this.state = 5336; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5278; + this.state = 5280; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5279; + this.state = 5281; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5280; + this.state = 5282; this.colId(); - this.state = 5281; + this.state = 5283; this.match(PostgreSqlParser.KW_SET); - this.state = 5282; + this.state = 5284; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5284; + this.state = 5286; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5285; + this.state = 5287; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5286; + this.state = 5288; this.colId(); - this.state = 5287; + this.state = 5289; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5288; + this.state = 5290; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5290; + this.state = 5292; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5291; + this.state = 5293; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5292; + this.state = 5294; this.colId(); - this.state = 5293; + this.state = 5295; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5294; - this.match(PostgreSqlParser.KW_PUBLICATION); this.state = 5296; + this.match(PostgreSqlParser.KW_PUBLICATION); + this.state = 5298; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { case 1: { - this.state = 5295; + this.state = 5297; this.optDefinition(); } break; @@ -29059,13 +29060,13 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5298; + this.state = 5300; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5299; + this.state = 5301; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5300; + this.state = 5302; this.colId(); - this.state = 5301; + this.state = 5303; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -29074,34 +29075,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5302; + this.state = 5304; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5303; + this.state = 5305; this.colLabel(); - this.state = 5308; + this.state = 5310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5304; + this.state = 5306; this.match(PostgreSqlParser.COMMA); - this.state = 5305; + this.state = 5307; this.colLabel(); } } - this.state = 5310; + this.state = 5312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5312; + this.state = 5314; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { case 1: { - this.state = 5311; + this.state = 5313; this.optDefinition(); } break; @@ -29111,13 +29112,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5314; + this.state = 5316; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5315; + this.state = 5317; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5316; + this.state = 5318; this.colId(); - this.state = 5317; + this.state = 5319; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 193)) { this.errorHandler.recoverInline(this); @@ -29131,36 +29132,36 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5319; + this.state = 5321; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5320; + this.state = 5322; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5321; + this.state = 5323; this.colId(); - this.state = 5322; + this.state = 5324; this.match(PostgreSqlParser.KW_SKIP); - this.state = 5323; + this.state = 5325; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5324; + this.state = 5326; this.oldAggregateElem(); - this.state = 5325; + this.state = 5327; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5327; + this.state = 5329; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5328; + this.state = 5330; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5329; + this.state = 5331; this.colId(); - this.state = 5330; + this.state = 5332; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5331; + this.state = 5333; this.match(PostgreSqlParser.KW_TO); - this.state = 5332; + this.state = 5334; this.roleSpec(); } break; @@ -29187,27 +29188,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5336; - this.match(PostgreSqlParser.KW_CREATE); this.state = 5338; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 5340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5337; + this.state = 5339; this.orReplaceOpt(); } } - this.state = 5340; + this.state = 5342; this.match(PostgreSqlParser.KW_RULE); - this.state = 5341; + this.state = 5343; this.colId(); - this.state = 5342; + this.state = 5344; this.match(PostgreSqlParser.KW_AS); - this.state = 5343; + this.state = 5345; this.match(PostgreSqlParser.KW_ON); - this.state = 5344; + this.state = 5346; _la = this.tokenStream.LA(1); if(!(_la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -29216,28 +29217,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5345; + this.state = 5347; this.match(PostgreSqlParser.KW_TO); - this.state = 5346; - this.qualifiedName(); this.state = 5348; + this.qualifiedName(); + this.state = 5350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5347; + this.state = 5349; this.whereClause(); } } - this.state = 5350; - this.match(PostgreSqlParser.KW_DO); this.state = 5352; + this.match(PostgreSqlParser.KW_DO); + this.state = 5354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137 || _la === 242) { { - this.state = 5351; + this.state = 5353; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 242)) { this.errorHandler.recoverInline(this); @@ -29249,62 +29250,62 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5370; + this.state = 5372; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { case 1: { - this.state = 5354; + this.state = 5356; this.match(PostgreSqlParser.KW_NOTHING); } break; case 2: { - this.state = 5355; + this.state = 5357; this.ruleActionStmt(); } break; case 3: { - this.state = 5356; + this.state = 5358; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 5358; + this.state = 5360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 5357; + this.state = 5359; this.ruleActionStmt(); } } - this.state = 5366; + this.state = 5368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 7) { { { - this.state = 5360; - this.match(PostgreSqlParser.SEMI); this.state = 5362; + this.match(PostgreSqlParser.SEMI); + this.state = 5364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 5361; + this.state = 5363; this.ruleActionStmt(); } } } } - this.state = 5368; + this.state = 5370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5369; + this.state = 5371; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -29329,41 +29330,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RuleActionStmtContext(this.context, this.state); this.enterRule(localContext, 452, PostgreSqlParser.RULE_ruleActionStmt); try { - this.state = 5377; + this.state = 5379; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5372; + this.state = 5374; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5373; + this.state = 5375; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5374; + this.state = 5376; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5375; + this.state = 5377; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5376; + this.state = 5378; this.notifyStmt(); } break; @@ -29390,16 +29391,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5379; + this.state = 5381; this.match(PostgreSqlParser.KW_NOTIFY); - this.state = 5380; - this.colId(); this.state = 5382; + this.colId(); + this.state = 5384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5381; + this.state = 5383; this.notifyPayload(); } } @@ -29426,9 +29427,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5384; + this.state = 5386; this.match(PostgreSqlParser.COMMA); - this.state = 5385; + this.state = 5387; this.stringConst(); } } @@ -29452,9 +29453,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5387; + this.state = 5389; this.match(PostgreSqlParser.KW_LISTEN); - this.state = 5388; + this.state = 5390; this.colId(); } } @@ -29478,9 +29479,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5390; + this.state = 5392; this.match(PostgreSqlParser.KW_UNLISTEN); - this.state = 5393; + this.state = 5395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -29878,13 +29879,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5391; + this.state = 5393; this.colId(); } break; case PostgreSqlParser.STAR: { - this.state = 5392; + this.state = 5394; this.match(PostgreSqlParser.STAR); } break; @@ -29912,30 +29913,30 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 462, PostgreSqlParser.RULE_transactionStmt); let _la: number; try { - this.state = 5440; + this.state = 5442; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5395; - this.match(PostgreSqlParser.KW_BEGIN); this.state = 5397; + this.match(PostgreSqlParser.KW_BEGIN); + this.state = 5399; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 665, this.context) ) { case 1: { - this.state = 5396; + this.state = 5398; this.optTransaction(); } break; } - this.state = 5400; + this.state = 5402; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 666, this.context) ) { case 1: { - this.state = 5399; + this.state = 5401; this.transactionModeList(); } break; @@ -29945,16 +29946,16 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5402; + this.state = 5404; this.match(PostgreSqlParser.KW_START); - this.state = 5403; - this.match(PostgreSqlParser.KW_TRANSACTION); this.state = 5405; + this.match(PostgreSqlParser.KW_TRANSACTION); + this.state = 5407; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 667, this.context) ) { case 1: { - this.state = 5404; + this.state = 5406; this.transactionModeList(); } break; @@ -29964,46 +29965,46 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5407; + this.state = 5409; this.match(PostgreSqlParser.KW_SAVEPOINT); - this.state = 5408; + this.state = 5410; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5409; - this.match(PostgreSqlParser.KW_RELEASE); this.state = 5411; + this.match(PostgreSqlParser.KW_RELEASE); + this.state = 5413; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 668, this.context) ) { case 1: { - this.state = 5410; + this.state = 5412; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5413; + this.state = 5415; this.colId(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5414; + this.state = 5416; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5415; + this.state = 5417; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 5416; + this.state = 5418; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5417; + this.state = 5419; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -30012,16 +30013,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5418; + this.state = 5420; this.match(PostgreSqlParser.KW_PREPARED); - this.state = 5419; + this.state = 5421; this.stringConst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5420; + this.state = 5422; _la = this.tokenStream.LA(1); if(!(_la === 129 || _la === 161 || _la === 319 || _la === 454)) { this.errorHandler.recoverInline(this); @@ -30030,34 +30031,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5422; + this.state = 5424; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 669, this.context) ) { case 1: { - this.state = 5421; + this.state = 5423; this.optTransaction(); } break; } - this.state = 5429; + this.state = 5431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 5424; - this.match(PostgreSqlParser.KW_AND); this.state = 5426; + this.match(PostgreSqlParser.KW_AND); + this.state = 5428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5425; + this.state = 5427; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5428; + this.state = 5430; this.match(PostgreSqlParser.KW_CHAIN); } } @@ -30067,31 +30068,31 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5431; - this.match(PostgreSqlParser.KW_ROLLBACK); this.state = 5433; + this.match(PostgreSqlParser.KW_ROLLBACK); + this.state = 5435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 356 || _la === 380) { { - this.state = 5432; + this.state = 5434; this.optTransaction(); } } - this.state = 5435; - this.match(PostgreSqlParser.KW_TO); this.state = 5437; + this.match(PostgreSqlParser.KW_TO); + this.state = 5439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { case 1: { - this.state = 5436; + this.state = 5438; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5439; + this.state = 5441; this.colId(); } break; @@ -30118,7 +30119,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5442; + this.state = 5444; _la = this.tokenStream.LA(1); if(!(_la === 356 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -30148,26 +30149,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 466, PostgreSqlParser.RULE_transactionModeItem); let _la: number; try { - this.state = 5453; + this.state = 5455; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 5444; + this.state = 5446; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 5445; + this.state = 5447; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 5446; + this.state = 5448; this.isoLevel(); } break; case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 5447; + this.state = 5449; this.match(PostgreSqlParser.KW_READ); - this.state = 5448; + this.state = 5450; _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -30182,17 +30183,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 3); { - this.state = 5450; + this.state = 5452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 5449; + this.state = 5451; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 5452; + this.state = 5454; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; @@ -30222,31 +30223,31 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5455; + this.state = 5457; this.transactionModeItem(); - this.state = 5462; + this.state = 5464; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5457; + this.state = 5459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5456; + this.state = 5458; this.match(PostgreSqlParser.COMMA); } } - this.state = 5459; + this.state = 5461; this.transactionModeItem(); } } } - this.state = 5464; + this.state = 5466; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); } @@ -30274,55 +30275,55 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5465; + this.state = 5467; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5468; + this.state = 5470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5466; + this.state = 5468; this.match(PostgreSqlParser.KW_OR); - this.state = 5467; + this.state = 5469; this.match(PostgreSqlParser.KW_REPLACE); } } - this.state = 5471; + this.state = 5473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 5470; + this.state = 5472; this.optTemp(); } } - this.state = 5488; + this.state = 5490; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VIEW: { - this.state = 5473; + this.state = 5475; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5474; - this.viewNameCreate(); this.state = 5476; + this.viewNameCreate(); + this.state = 5478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5475; + this.state = 5477; this.columnListCreate(); } } - this.state = 5479; + this.state = 5481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5478; + this.state = 5480; this.optRelOptions(); } } @@ -30331,20 +30332,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RECURSIVE: { - this.state = 5481; + this.state = 5483; this.match(PostgreSqlParser.KW_RECURSIVE); - this.state = 5482; + this.state = 5484; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5483; + this.state = 5485; this.viewNameCreate(); - this.state = 5484; - this.optColumnList(); this.state = 5486; + this.optColumnList(); + this.state = 5488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5485; + this.state = 5487; this.optRelOptions(); } } @@ -30354,23 +30355,23 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5490; + this.state = 5492; this.match(PostgreSqlParser.KW_AS); - this.state = 5491; + this.state = 5493; this.selectStmt(); - this.state = 5498; + this.state = 5500; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 686, this.context) ) { case 1: { - this.state = 5492; - this.match(PostgreSqlParser.KW_WITH); this.state = 5494; + this.match(PostgreSqlParser.KW_WITH); + this.state = 5496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 254) { { - this.state = 5493; + this.state = 5495; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -30382,9 +30383,9 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5496; + this.state = 5498; this.match(PostgreSqlParser.KW_CHECK); - this.state = 5497; + this.state = 5499; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -30411,9 +30412,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5500; + this.state = 5502; this.match(PostgreSqlParser.KW_LOAD); - this.state = 5501; + this.state = 5503; this.stringConst(); } } @@ -30439,28 +30440,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5503; + this.state = 5505; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5504; + this.state = 5506; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5505; - this.databaseNameCreate(); this.state = 5507; + this.databaseNameCreate(); + this.state = 5509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 687, this.context) ) { case 1: { - this.state = 5506; + this.state = 5508; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 5514; + this.state = 5516; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { case 1: { - this.state = 5510; + this.state = 5512; this.errorHandler.sync(this); alternative = 1; do { @@ -30468,7 +30469,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5509; + this.state = 5511; this.createDbOptItem(); } } @@ -30476,7 +30477,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5512; + this.state = 5514; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 688, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30506,82 +30507,82 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5524; + this.state = 5526; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: { - this.state = 5516; + this.state = 5518; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5517; + this.state = 5519; this.match(PostgreSqlParser.KW_LIMIT); } break; case 2: { - this.state = 5518; + this.state = 5520; this.match(PostgreSqlParser.KW_ENCODING); } break; case 3: { - this.state = 5519; + this.state = 5521; this.match(PostgreSqlParser.KW_LOCATION); } break; case 4: { - this.state = 5520; + this.state = 5522; this.match(PostgreSqlParser.KW_OWNER); } break; case 5: { - this.state = 5521; + this.state = 5523; this.match(PostgreSqlParser.KW_TABLESPACE); } break; case 6: { - this.state = 5522; + this.state = 5524; this.match(PostgreSqlParser.KW_TEMPLATE); } break; case 7: { - this.state = 5523; + this.state = 5525; this.identifier(); } break; } - this.state = 5527; + this.state = 5529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 5526; + this.state = 5528; this.match(PostgreSqlParser.EQUAL); } } - this.state = 5532; + this.state = 5534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 692, this.context) ) { case 1: { - this.state = 5529; + this.state = 5531; this.signedConst(); } break; case 2: { - this.state = 5530; + this.state = 5532; this.booleanOrString(); } break; case 3: { - this.state = 5531; + this.state = 5533; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -30610,27 +30611,27 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5534; + this.state = 5536; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5535; + this.state = 5537; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5536; + this.state = 5538; this.databaseName(); - this.state = 5552; + this.state = 5554; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { case 1: { - this.state = 5540; + this.state = 5542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 693, this.context) ) { case 1: { - this.state = 5537; + this.state = 5539; this.match(PostgreSqlParser.KW_SET); - this.state = 5538; + this.state = 5540; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 5539; + this.state = 5541; this.tableSpaceName(); } break; @@ -30639,22 +30640,22 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5550; + this.state = 5552; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: { - this.state = 5543; + this.state = 5545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5542; + this.state = 5544; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 5546; + this.state = 5548; this.errorHandler.sync(this); alternative = 1; do { @@ -30662,7 +30663,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5545; + this.state = 5547; this.createDbOptItem(); } } @@ -30670,7 +30671,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5548; + this.state = 5550; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30702,18 +30703,18 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5554; + this.state = 5556; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5555; + this.state = 5557; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5556; - this.databaseName(); this.state = 5558; + this.databaseName(); + this.state = 5560; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 698, this.context) ) { case 1: { - this.state = 5557; + this.state = 5559; this.setOrResetClause(); } break; @@ -30740,15 +30741,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5560; + this.state = 5562; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5561; + this.state = 5563; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 5562; + this.state = 5564; this.anyName(); - this.state = 5563; + this.state = 5565; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5564; + this.state = 5566; this.match(PostgreSqlParser.KW_VERSION); } } @@ -30773,11 +30774,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5566; + this.state = 5568; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5567; + this.state = 5569; this.match(PostgreSqlParser.KW_SYSTEM); - this.state = 5568; + this.state = 5570; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30786,7 +30787,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5569; + this.state = 5571; this.genericSet(); } } @@ -30812,37 +30813,37 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5571; + this.state = 5573; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5572; + this.state = 5574; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5573; - this.anyName(); this.state = 5575; + this.anyName(); + this.state = 5577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5574; + this.state = 5576; this.match(PostgreSqlParser.KW_AS); } } - this.state = 5577; + this.state = 5579; this.typename(); - this.state = 5581; + this.state = 5583; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5578; + this.state = 5580; this.colConstraint(); } } } - this.state = 5583; + this.state = 5585; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); } @@ -30869,24 +30870,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5584; + this.state = 5586; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5585; + this.state = 5587; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5586; + this.state = 5588; this.anyName(); - this.state = 5609; + this.state = 5611; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 704, this.context) ) { case 1: { - this.state = 5587; + this.state = 5589; this.alterColumnDefault(); } break; case 2: { - this.state = 5588; + this.state = 5590; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30895,56 +30896,56 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5589; + this.state = 5591; this.match(PostgreSqlParser.KW_NOT); - this.state = 5590; + this.state = 5592; this.match(PostgreSqlParser.KW_NULL); } break; case 3: { - this.state = 5591; + this.state = 5593; this.match(PostgreSqlParser.KW_ADD); - this.state = 5594; + this.state = 5596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 5592; + this.state = 5594; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5593; + this.state = 5595; this.colId(); } } - this.state = 5596; + this.state = 5598; this.constraintElem(); } break; case 4: { - this.state = 5597; + this.state = 5599; this.match(PostgreSqlParser.KW_DROP); - this.state = 5598; - this.match(PostgreSqlParser.KW_CONSTRAINT); this.state = 5600; + this.match(PostgreSqlParser.KW_CONSTRAINT); + this.state = 5602; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { case 1: { - this.state = 5599; + this.state = 5601; this.ifExists(); } break; } - this.state = 5602; - this.colId(); this.state = 5604; + this.colId(); + this.state = 5606; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 703, this.context) ) { case 1: { - this.state = 5603; + this.state = 5605; this.optDropBehavior(); } break; @@ -30953,11 +30954,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 5606; + this.state = 5608; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 5607; + this.state = 5609; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5608; + this.state = 5610; this.colId(); } break; @@ -30984,17 +30985,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5611; + this.state = 5613; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5612; + this.state = 5614; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5613; + this.state = 5615; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5614; + this.state = 5616; this.match(PostgreSqlParser.KW_DICTIONARY); - this.state = 5615; + this.state = 5617; this.anyName(); - this.state = 5616; + this.state = 5618; this.definition(); } } @@ -31017,23 +31018,23 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 492, PostgreSqlParser.RULE_alterSearchConfigurationStmt); let _la: number; try { - this.state = 5659; + this.state = 5661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5618; + this.state = 5620; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5619; + this.state = 5621; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5620; + this.state = 5622; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5621; + this.state = 5623; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5622; + this.state = 5624; this.anyName(); - this.state = 5623; + this.state = 5625; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 138)) { this.errorHandler.recoverInline(this); @@ -31042,87 +31043,87 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5624; + this.state = 5626; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5625; + this.state = 5627; this.match(PostgreSqlParser.KW_FOR); - this.state = 5626; + this.state = 5628; this.nameList(); - this.state = 5627; + this.state = 5629; this.match(PostgreSqlParser.KW_WITH); - this.state = 5628; + this.state = 5630; this.anyNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5630; + this.state = 5632; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5631; + this.state = 5633; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5632; + this.state = 5634; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5633; + this.state = 5635; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5634; + this.state = 5636; this.anyName(); - this.state = 5635; + this.state = 5637; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5636; + this.state = 5638; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5639; + this.state = 5641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5637; + this.state = 5639; this.match(PostgreSqlParser.KW_FOR); - this.state = 5638; + this.state = 5640; this.nameList(); } } - this.state = 5641; + this.state = 5643; this.match(PostgreSqlParser.KW_REPLACE); - this.state = 5642; + this.state = 5644; this.anyName(); - this.state = 5643; + this.state = 5645; this.match(PostgreSqlParser.KW_WITH); - this.state = 5644; + this.state = 5646; this.anyName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5646; + this.state = 5648; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5647; + this.state = 5649; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5648; + this.state = 5650; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5649; + this.state = 5651; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5650; + this.state = 5652; this.anyName(); - this.state = 5651; + this.state = 5653; this.match(PostgreSqlParser.KW_DROP); - this.state = 5652; - this.match(PostgreSqlParser.KW_MAPPING); this.state = 5654; + this.match(PostgreSqlParser.KW_MAPPING); + this.state = 5656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5653; + this.state = 5655; this.ifExists(); } } - this.state = 5656; + this.state = 5658; this.match(PostgreSqlParser.KW_FOR); - this.state = 5657; + this.state = 5659; this.nameList(); } break; @@ -31149,33 +31150,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5661; - this.match(PostgreSqlParser.KW_CREATE); this.state = 5663; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 5665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5662; + this.state = 5664; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 5665; - this.match(PostgreSqlParser.KW_CONVERSION); - this.state = 5666; - this.anyName(); this.state = 5667; - this.match(PostgreSqlParser.KW_FOR); + this.match(PostgreSqlParser.KW_CONVERSION); this.state = 5668; - this.stringConst(); + this.anyName(); this.state = 5669; - this.match(PostgreSqlParser.KW_TO); + this.match(PostgreSqlParser.KW_FOR); this.state = 5670; this.stringConst(); this.state = 5671; - this.match(PostgreSqlParser.KW_FROM); + this.match(PostgreSqlParser.KW_TO); this.state = 5672; + this.stringConst(); + this.state = 5673; + this.match(PostgreSqlParser.KW_FROM); + this.state = 5674; this.anyName(); } } @@ -31198,37 +31199,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 496, PostgreSqlParser.RULE_clusterStmt); let _la: number; try { - this.state = 5699; + this.state = 5701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5674; - this.match(PostgreSqlParser.KW_CLUSTER); this.state = 5676; + this.match(PostgreSqlParser.KW_CLUSTER); + this.state = 5678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5675; + this.state = 5677; this.optVerbose(); } } - this.state = 5682; + this.state = 5684; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { case 1: { - this.state = 5678; - this.tableName(); this.state = 5680; + this.tableName(); + this.state = 5682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5679; + this.state = 5681; this.tableAccessMethodClause(); } } @@ -31241,38 +31242,38 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5684; + this.state = 5686; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 5685; + this.state = 5687; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5686; + this.state = 5688; this.optVerbose(); - this.state = 5691; + this.state = 5693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5687; + this.state = 5689; this.match(PostgreSqlParser.COMMA); - this.state = 5688; + this.state = 5690; this.optVerbose(); } } - this.state = 5693; + this.state = 5695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5694; + this.state = 5696; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5695; - this.tableName(); this.state = 5697; + this.tableName(); + this.state = 5699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5696; + this.state = 5698; this.tableAccessMethodClause(); } } @@ -31302,50 +31303,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5701; + this.state = 5703; this.match(PostgreSqlParser.KW_VACUUM); - this.state = 5717; + this.state = 5719; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { case 1: { { - this.state = 5703; + this.state = 5705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 5702; + this.state = 5704; this.match(PostgreSqlParser.KW_FULL); } } - this.state = 5706; + this.state = 5708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 5705; + this.state = 5707; this.match(PostgreSqlParser.KW_FREEZE); } } - this.state = 5709; + this.state = 5711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5708; + this.state = 5710; this.optVerbose(); } } - this.state = 5712; + this.state = 5714; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: { - this.state = 5711; + this.state = 5713; this.analyzeKeyword(); } break; @@ -31355,12 +31356,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5715; + this.state = 5717; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { case 1: { - this.state = 5714; + this.state = 5716; this.explainOptionList(); } break; @@ -31368,12 +31369,12 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5720; + this.state = 5722; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 721, this.context) ) { case 1: { - this.state = 5719; + this.state = 5721; this.vacuumRelationList(); } break; @@ -31401,19 +31402,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5722; + this.state = 5724; this.analyzeKeyword(); - this.state = 5737; + this.state = 5739; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 724, this.context) ) { case 1: { - this.state = 5724; + this.state = 5726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5723; + this.state = 5725; this.optVerbose(); } } @@ -31422,37 +31423,37 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5726; + this.state = 5728; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5727; + this.state = 5729; this.analyzeOptionElem(); - this.state = 5732; + this.state = 5734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5728; + this.state = 5730; this.match(PostgreSqlParser.COMMA); - this.state = 5729; + this.state = 5731; this.analyzeOptionElem(); } } - this.state = 5734; + this.state = 5736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5735; + this.state = 5737; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5740; + this.state = 5742; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { case 1: { - this.state = 5739; + this.state = 5741; this.vacuumRelationList(); } break; @@ -31480,7 +31481,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5742; + this.state = 5744; _la = this.tokenStream.LA(1); if(!(_la === 31 || _la === 32)) { this.errorHandler.recoverInline(this); @@ -31511,7 +31512,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5746; + this.state = 5748; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -31930,21 +31931,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5744; + this.state = 5746; this.nonReservedWord(); } break; case PostgreSqlParser.KW_ANALYSE: case PostgreSqlParser.KW_ANALYZE: { - this.state = 5745; + this.state = 5747; this.analyzeKeyword(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5750; + this.state = 5752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -32366,7 +32367,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5748; + this.state = 5750; this.booleanOrString(); } break; @@ -32375,7 +32376,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5749; + this.state = 5751; this.numericOnly(); } break; @@ -32406,14 +32407,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 506, PostgreSqlParser.RULE_analyzeOptionElem); let _la: number; try { - this.state = 5761; + this.state = 5763; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VERBOSE: case PostgreSqlParser.KW_SKIP_LOCKED: this.enterOuterAlt(localContext, 1); { - this.state = 5752; + this.state = 5754; _la = this.tokenStream.LA(1); if(!(_la === 128 || _la === 547)) { this.errorHandler.recoverInline(this); @@ -32422,12 +32423,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5754; + this.state = 5756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5753; + this.state = 5755; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32444,9 +32445,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 5756; + this.state = 5758; this.match(PostgreSqlParser.KW_BUFFER_USAGE_LIMIT); - this.state = 5759; + this.state = 5761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PLUS: @@ -32454,7 +32455,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5757; + this.state = 5759; this.numericOnly(); } break; @@ -32463,7 +32464,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5758; + this.state = 5760; this.stringConst(); } break; @@ -32497,14 +32498,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5763; - this.match(PostgreSqlParser.KW_VERBOSE); this.state = 5765; + this.match(PostgreSqlParser.KW_VERBOSE); + this.state = 5767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5764; + this.state = 5766; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32538,14 +32539,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5767; - this.tableName(); this.state = 5769; + this.tableName(); + this.state = 5771; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 732, this.context) ) { case 1: { - this.state = 5768; + this.state = 5770; this.optColumnList(); } break; @@ -32573,21 +32574,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5771; + this.state = 5773; this.vacuumRelation(); - this.state = 5776; + this.state = 5778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5772; + this.state = 5774; this.match(PostgreSqlParser.COMMA); - this.state = 5773; + this.state = 5775; this.vacuumRelation(); } } - this.state = 5778; + this.state = 5780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32614,25 +32615,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5779; + this.state = 5781; this.match(PostgreSqlParser.KW_EXPLAIN); - this.state = 5790; + this.state = 5792; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { case 1: { - this.state = 5780; + this.state = 5782; this.explainOptionList(); } break; case 2: { - this.state = 5782; + this.state = 5784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5781; + this.state = 5783; this.match(PostgreSqlParser.KW_VERBOSE); } } @@ -32641,19 +32642,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 5788; + this.state = 5790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31 || _la === 32) { { - this.state = 5784; - this.analyzeKeyword(); this.state = 5786; + this.analyzeKeyword(); + this.state = 5788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5785; + this.state = 5787; this.optVerbose(); } } @@ -32664,7 +32665,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5792; + this.state = 5794; this.explainableStmt(); } } @@ -32686,69 +32687,69 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExplainableStmtContext(this.context, this.state); this.enterRule(localContext, 516, PostgreSqlParser.RULE_explainableStmt); try { - this.state = 5803; + this.state = 5805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5794; + this.state = 5796; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5795; + this.state = 5797; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5796; + this.state = 5798; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5797; + this.state = 5799; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5798; + this.state = 5800; this.declareCursorStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5799; + this.state = 5801; this.createAsStmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5800; + this.state = 5802; this.createMaterializedViewStmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5801; + this.state = 5803; this.refreshMaterializedViewStmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5802; + this.state = 5804; this.executeStmt(); } break; @@ -32775,27 +32776,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5805; + this.state = 5807; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5806; + this.state = 5808; this.vacAnalyzeOptionElem(); - this.state = 5811; + this.state = 5813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5807; + this.state = 5809; this.match(PostgreSqlParser.COMMA); - this.state = 5808; + this.state = 5810; this.vacAnalyzeOptionElem(); } } - this.state = 5813; + this.state = 5815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5814; + this.state = 5816; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32820,23 +32821,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5816; + this.state = 5818; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5817; - this.colId(); this.state = 5819; + this.colId(); + this.state = 5821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5818; + this.state = 5820; this.prepTypeClause(); } } - this.state = 5821; + this.state = 5823; this.match(PostgreSqlParser.KW_AS); - this.state = 5822; + this.state = 5824; this.preParableStmt(); } } @@ -32861,27 +32862,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5824; + this.state = 5826; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5825; + this.state = 5827; this.typename(); - this.state = 5830; + this.state = 5832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5826; + this.state = 5828; this.match(PostgreSqlParser.COMMA); - this.state = 5827; + this.state = 5829; this.typename(); } } - this.state = 5832; + this.state = 5834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5833; + this.state = 5835; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32903,41 +32904,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PreParableStmtContext(this.context, this.state); this.enterRule(localContext, 524, PostgreSqlParser.RULE_preParableStmt); try { - this.state = 5840; + this.state = 5842; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 742, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5835; + this.state = 5837; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5836; + this.state = 5838; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5837; + this.state = 5839; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5838; + this.state = 5840; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5839; + this.state = 5841; this.mergeStmt(); } break; @@ -32962,22 +32963,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 526, PostgreSqlParser.RULE_executeStmt); let _la: number; try { - this.state = 5865; + this.state = 5867; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 1); { - this.state = 5842; + this.state = 5844; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5843; - this.colId(); this.state = 5845; + this.colId(); + this.state = 5847; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { case 1: { - this.state = 5844; + this.state = 5846; this.executeParamClause(); } break; @@ -32987,54 +32988,54 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 2); { - this.state = 5847; - this.match(PostgreSqlParser.KW_CREATE); this.state = 5849; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 5851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 5848; + this.state = 5850; this.optTemp(); } } - this.state = 5851; - this.match(PostgreSqlParser.KW_TABLE); this.state = 5853; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 5855; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 5852; + this.state = 5854; this.ifNotExists(); } break; } - this.state = 5855; + this.state = 5857; this.createAsTarget(); - this.state = 5856; + this.state = 5858; this.match(PostgreSqlParser.KW_AS); - this.state = 5857; + this.state = 5859; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5858; - this.colId(); this.state = 5860; + this.colId(); + this.state = 5862; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 746, this.context) ) { case 1: { - this.state = 5859; + this.state = 5861; this.executeParamClause(); } break; } - this.state = 5863; + this.state = 5865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { case 1: { - this.state = 5862; + this.state = 5864; this.optWithData(); } break; @@ -33065,11 +33066,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5867; + this.state = 5869; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5868; + this.state = 5870; this.exprList(); - this.state = 5869; + this.state = 5871; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -33093,19 +33094,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5871; - this.match(PostgreSqlParser.KW_DEALLOCATE); this.state = 5873; + this.match(PostgreSqlParser.KW_DEALLOCATE); + this.state = 5875; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { case 1: { - this.state = 5872; + this.state = 5874; this.match(PostgreSqlParser.KW_PREPARE); } break; } - this.state = 5877; + this.state = 5879; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -33503,13 +33504,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5875; + this.state = 5877; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 5876; + this.state = 5878; this.match(PostgreSqlParser.KW_ALL); } break; @@ -33540,58 +33541,58 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InsertStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5880; + this.state = 5882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5879; + this.state = 5881; this.withClause(); } } - this.state = 5882; + this.state = 5884; this.match(PostgreSqlParser.KW_INSERT); - this.state = 5883; + this.state = 5885; this.match(PostgreSqlParser.KW_INTO); - this.state = 5884; + this.state = 5886; this.tableName(); - this.state = 5887; + this.state = 5889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5885; + this.state = 5887; this.match(PostgreSqlParser.KW_AS); - this.state = 5886; + this.state = 5888; this.colId(); } } - this.state = 5889; + this.state = 5891; this.insertRest(); - this.state = 5911; + this.state = 5913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 5890; + this.state = 5892; this.match(PostgreSqlParser.KW_ON); - this.state = 5891; + this.state = 5893; this.match(PostgreSqlParser.KW_CONFLICT); - this.state = 5899; + this.state = 5901; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 5892; - this.indexParams(); this.state = 5894; + this.indexParams(); + this.state = 5896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5893; + this.state = 5895; this.whereClause(); } } @@ -33600,11 +33601,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_ON: { - this.state = 5896; + this.state = 5898; this.match(PostgreSqlParser.KW_ON); - this.state = 5897; + this.state = 5899; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5898; + this.state = 5900; this.colId(); } break; @@ -33613,25 +33614,25 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 5901; + this.state = 5903; this.match(PostgreSqlParser.KW_DO); - this.state = 5909; + this.state = 5911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5902; + this.state = 5904; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5903; + this.state = 5905; this.match(PostgreSqlParser.KW_SET); - this.state = 5904; - this.setClauseList(); this.state = 5906; + this.setClauseList(); + this.state = 5908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5905; + this.state = 5907; this.whereClause(); } } @@ -33640,7 +33641,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_NOTHING: { - this.state = 5908; + this.state = 5910; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -33650,12 +33651,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5914; + this.state = 5916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5913; + this.state = 5915; this.returningClause(); } } @@ -33683,28 +33684,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5920; + this.state = 5922; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { case 1: { - this.state = 5916; + this.state = 5918; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5917; + this.state = 5919; this.insertColumnList(); - this.state = 5918; + this.state = 5920; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5925; + this.state = 5927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 5922; + this.state = 5924; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 5923; + this.state = 5925; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -33713,23 +33714,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5924; + this.state = 5926; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 5929; + this.state = 5931; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 761, this.context) ) { case 1: { - this.state = 5927; + this.state = 5929; this.defaultValuesOrValues(); } break; case 2: { - this.state = 5928; + this.state = 5930; this.selectStmt(); } break; @@ -33757,21 +33758,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5931; + this.state = 5933; this.insertColumnItem(); - this.state = 5936; + this.state = 5938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5932; + this.state = 5934; this.match(PostgreSqlParser.COMMA); - this.state = 5933; + this.state = 5935; this.insertColumnItem(); } } - this.state = 5938; + this.state = 5940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33797,9 +33798,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5939; + this.state = 5941; this.columnName(); - this.state = 5940; + this.state = 5942; this.optIndirection(); } } @@ -33823,9 +33824,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5942; + this.state = 5944; this.match(PostgreSqlParser.KW_RETURNING); - this.state = 5943; + this.state = 5945; this.targetList(); } } @@ -33850,50 +33851,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5946; + this.state = 5948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5945; + this.state = 5947; this.withClause(); } } - this.state = 5948; + this.state = 5950; this.match(PostgreSqlParser.KW_DELETE); - this.state = 5949; + this.state = 5951; this.match(PostgreSqlParser.KW_FROM); - this.state = 5950; + this.state = 5952; this.relationExprOptAlias(); - this.state = 5953; + this.state = 5955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5951; + this.state = 5953; this.match(PostgreSqlParser.KW_USING); - this.state = 5952; + this.state = 5954; this.fromList(); } } - this.state = 5956; + this.state = 5958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5955; + this.state = 5957; this.whereOrCurrentClause(); } } - this.state = 5959; + this.state = 5961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5958; + this.state = 5960; this.returningClause(); } } @@ -33921,34 +33922,34 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5961; - this.match(PostgreSqlParser.KW_LOCK); this.state = 5963; + this.match(PostgreSqlParser.KW_LOCK); + this.state = 5965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 5962; + this.state = 5964; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 5965; + this.state = 5967; this.relationExprList(); - this.state = 5980; + this.state = 5982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 5966; + this.state = 5968; this.match(PostgreSqlParser.KW_IN); - this.state = 5977; + this.state = 5979; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ACCESS: case PostgreSqlParser.KW_ROW: { - this.state = 5967; + this.state = 5969; _la = this.tokenStream.LA(1); if(!(_la === 131 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -33957,7 +33958,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5968; + this.state = 5970; _la = this.tokenStream.LA(1); if(!(_la === 201 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -33970,24 +33971,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SHARE: { - this.state = 5969; + this.state = 5971; this.match(PostgreSqlParser.KW_SHARE); - this.state = 5974; + this.state = 5976; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5970; + this.state = 5972; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5971; + this.state = 5973; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; case PostgreSqlParser.KW_ROW: { - this.state = 5972; + this.state = 5974; this.match(PostgreSqlParser.KW_ROW); - this.state = 5973; + this.state = 5975; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; @@ -34000,24 +34001,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_EXCLUSIVE: { - this.state = 5976; + this.state = 5978; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5979; + this.state = 5981; this.match(PostgreSqlParser.KW_MODE); } } - this.state = 5983; + this.state = 5985; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: { - this.state = 5982; + this.state = 5984; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -34045,50 +34046,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5986; + this.state = 5988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5985; + this.state = 5987; this.withClause(); } } - this.state = 5988; + this.state = 5990; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5989; + this.state = 5991; this.relationExprOptAlias(); - this.state = 5990; + this.state = 5992; this.match(PostgreSqlParser.KW_SET); - this.state = 5991; - this.setClauseList(); this.state = 5993; + this.setClauseList(); + this.state = 5995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 5992; + this.state = 5994; this.fromClause(); } } - this.state = 5996; + this.state = 5998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5995; + this.state = 5997; this.whereOrCurrentClause(); } } - this.state = 5999; + this.state = 6001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5998; + this.state = 6000; this.returningClause(); } } @@ -34116,21 +34117,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6001; + this.state = 6003; this.setClause(); - this.state = 6006; + this.state = 6008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6002; + this.state = 6004; this.match(PostgreSqlParser.COMMA); - this.state = 6003; + this.state = 6005; this.setClause(); } } - this.state = 6008; + this.state = 6010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34154,57 +34155,57 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetClauseContext(this.context, this.state); this.enterRule(localContext, 550, PostgreSqlParser.RULE_setClause); try { - this.state = 6027; + this.state = 6029; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6009; + this.state = 6011; this.insertColumnItem(); - this.state = 6010; + this.state = 6012; this.match(PostgreSqlParser.EQUAL); - this.state = 6011; + this.state = 6013; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6013; + this.state = 6015; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6014; + this.state = 6016; this.insertColumnList(); - this.state = 6015; + this.state = 6017; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6016; + this.state = 6018; this.match(PostgreSqlParser.EQUAL); - this.state = 6025; + this.state = 6027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { case 1: { - this.state = 6018; + this.state = 6020; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { case 1: { - this.state = 6017; + this.state = 6019; this.match(PostgreSqlParser.KW_ROW); } break; } - this.state = 6020; + this.state = 6022; this.expression(); } break; case 2: { - this.state = 6021; + this.state = 6023; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6022; + this.state = 6024; this.selectClause(); - this.state = 6023; + this.state = 6025; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -34234,47 +34235,47 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6029; + this.state = 6031; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 6030; + this.state = 6032; this.colId(); { - this.state = 6039; + this.state = 6041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 107 || _la === 240 || _la === 269 || _la === 324) { { - this.state = 6037; + this.state = 6039; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_SCROLL: { { - this.state = 6032; + this.state = 6034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 6031; + this.state = 6033; this.match(PostgreSqlParser.KW_NO); } } - this.state = 6034; + this.state = 6036; this.match(PostgreSqlParser.KW_SCROLL); } } break; case PostgreSqlParser.KW_BINARY: { - this.state = 6035; + this.state = 6037; this.match(PostgreSqlParser.KW_BINARY); } break; case PostgreSqlParser.KW_INSENSITIVE: { - this.state = 6036; + this.state = 6038; this.match(PostgreSqlParser.KW_INSENSITIVE); } break; @@ -34282,19 +34283,19 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6041; + this.state = 6043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6042; + this.state = 6044; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 6045; + this.state = 6047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 6043; + this.state = 6045; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -34303,14 +34304,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6044; + this.state = 6046; this.match(PostgreSqlParser.KW_HOLD); } } - this.state = 6047; + this.state = 6049; this.match(PostgreSqlParser.KW_FOR); - this.state = 6048; + this.state = 6050; this.selectStmt(); } } @@ -34332,14 +34333,14 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SelectStmtContext(this.context, this.state); this.enterRule(localContext, 554, PostgreSqlParser.RULE_selectStmt); try { - this.state = 6052; + this.state = 6054; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { case 1: localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6050; + this.state = 6052; this.selectNoParens(); } break; @@ -34347,7 +34348,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6051; + this.state = 6053; this.selectWithParens(); } break; @@ -34373,25 +34374,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6054; + this.state = 6056; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6057; + this.state = 6059; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: { - this.state = 6055; + this.state = 6057; this.selectNoParens(); } break; case 2: { - this.state = 6056; + this.state = 6058; this.selectWithParens(); } break; } - this.state = 6059; + this.state = 6061; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -34416,41 +34417,41 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6062; + this.state = 6064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 6061; + this.state = 6063; this.withClause(); } } - this.state = 6064; - this.selectClause(); this.state = 6066; + this.selectClause(); + this.state = 6068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6065; + this.state = 6067; this.sortClause(); } } - this.state = 6076; + this.state = 6078; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { case 1: { - this.state = 6068; - this.forLockingClause(); this.state = 6070; + this.forLockingClause(); + this.state = 6072; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { case 1: { - this.state = 6069; + this.state = 6071; this.selectLimit(); } break; @@ -34459,14 +34460,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6072; - this.selectLimit(); this.state = 6074; + this.selectLimit(); + this.state = 6076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 6073; + this.state = 6075; this.forLockingClause(); } } @@ -34494,20 +34495,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SelectClauseContext(this.context, this.state); this.enterRule(localContext, 560, PostgreSqlParser.RULE_selectClause); try { - this.state = 6080; + this.state = 6082; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6078; + this.state = 6080; this.simpleSelect(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6079; + this.state = 6081; this.selectWithParens(); } break; @@ -34534,34 +34535,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6104; + this.state = 6106; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 6082; + this.state = 6084; this.match(PostgreSqlParser.KW_SELECT); - this.state = 6092; + this.state = 6094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 795, this.context) ) { case 1: { - this.state = 6084; + this.state = 6086; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { case 1: { - this.state = 6083; + this.state = 6085; this.match(PostgreSqlParser.KW_ALL); } break; } - this.state = 6087; + this.state = 6089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 793, this.context) ) { case 1: { - this.state = 6086; + this.state = 6088; this.intoClause(); } break; @@ -34570,12 +34571,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6090; + this.state = 6092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { case 1: { - this.state = 6089; + this.state = 6091; this.distinctClause(); } break; @@ -34583,42 +34584,42 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6094; + this.state = 6096; this.sqlExpression(); } break; case PostgreSqlParser.KW_VALUES: { - this.state = 6095; + this.state = 6097; this.valuesClause(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 6096; + this.state = 6098; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6097; + this.state = 6099; this.relationExpr(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6098; + this.state = 6100; this.selectWithParens(); - this.state = 6099; + this.state = 6101; this.setOperatorWithAllOrDistinct(); - this.state = 6102; + this.state = 6104; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { case 1: { - this.state = 6100; + this.state = 6102; this.simpleSelect(); } break; case 2: { - this.state = 6101; + this.state = 6103; this.selectWithParens(); } break; @@ -34628,27 +34629,27 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6113; + this.state = 6115; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6106; + this.state = 6108; this.setOperatorWithAllOrDistinct(); - this.state = 6109; + this.state = 6111; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { case 1: { - this.state = 6107; + this.state = 6109; this.simpleSelect(); } break; case 2: { - this.state = 6108; + this.state = 6110; this.selectWithParens(); } break; @@ -34656,7 +34657,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 6115; + this.state = 6117; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); } @@ -34683,7 +34684,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6116; + this.state = 6118; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 70 || _la === 97)) { this.errorHandler.recoverInline(this); @@ -34692,12 +34693,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6118; + this.state = 6120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 56) { { - this.state = 6117; + this.state = 6119; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -34732,36 +34733,36 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6120; - this.match(PostgreSqlParser.KW_WITH); this.state = 6122; + this.match(PostgreSqlParser.KW_WITH); + this.state = 6124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 801, this.context) ) { case 1: { - this.state = 6121; + this.state = 6123; this.match(PostgreSqlParser.KW_RECURSIVE); } break; } { - this.state = 6124; + this.state = 6126; this.commonTableExpr(); - this.state = 6129; + this.state = 6131; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6125; + this.state = 6127; this.match(PostgreSqlParser.COMMA); - this.state = 6126; + this.state = 6128; this.commonTableExpr(); } } } - this.state = 6131; + this.state = 6133; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); } @@ -34789,62 +34790,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6132; - this.colId(); this.state = 6134; + this.colId(); + this.state = 6136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 6133; + this.state = 6135; this.optColumnList(); } } - this.state = 6136; + this.state = 6138; this.match(PostgreSqlParser.KW_AS); - this.state = 6141; + this.state = 6143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77 || _la === 259) { { - this.state = 6138; + this.state = 6140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6137; + this.state = 6139; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6140; + this.state = 6142; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 6143; + this.state = 6145; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6144; + this.state = 6146; this.preParableStmt(); - this.state = 6145; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 6147; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6149; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 806, this.context) ) { case 1: { - this.state = 6146; + this.state = 6148; this.searchClause(); } break; } - this.state = 6150; + this.state = 6152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { case 1: { - this.state = 6149; + this.state = 6151; this.cycleClause(); } break; @@ -34872,9 +34873,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6152; + this.state = 6154; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 6153; + this.state = 6155; _la = this.tokenStream.LA(1); if(!(_la === 527 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -34883,15 +34884,15 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6154; + this.state = 6156; this.match(PostgreSqlParser.KW_FIRST); - this.state = 6155; + this.state = 6157; this.match(PostgreSqlParser.KW_BY); - this.state = 6156; + this.state = 6158; this.columnList(); - this.state = 6157; + this.state = 6159; this.match(PostgreSqlParser.KW_SET); - this.state = 6158; + this.state = 6160; this.columnName(); } } @@ -34916,33 +34917,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6160; + this.state = 6162; this.match(PostgreSqlParser.KW_CYCLE); - this.state = 6161; + this.state = 6163; this.columnList(); - this.state = 6162; + this.state = 6164; this.match(PostgreSqlParser.KW_SET); - this.state = 6163; + this.state = 6165; this.columnName(); - this.state = 6169; + this.state = 6171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 6164; + this.state = 6166; this.match(PostgreSqlParser.KW_TO); - this.state = 6165; + this.state = 6167; this.colId(); - this.state = 6166; + this.state = 6168; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6167; + this.state = 6169; this.colId(); } } - this.state = 6171; + this.state = 6173; this.match(PostgreSqlParser.KW_USING); - this.state = 6172; + this.state = 6174; this.columnName(); } } @@ -34966,30 +34967,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6174; + this.state = 6176; this.match(PostgreSqlParser.KW_INTO); - this.state = 6180; + this.state = 6182; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 810, this.context) ) { case 1: { - this.state = 6176; + this.state = 6178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { case 1: { - this.state = 6175; + this.state = 6177; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 6178; + this.state = 6180; this.optTempTableName(); } break; case 2: { - this.state = 6179; + this.state = 6181; this.exprList(); } break; @@ -35015,18 +35016,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 576, PostgreSqlParser.RULE_optTempTableName); let _la: number; try { - this.state = 6197; + this.state = 6199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6183; + this.state = 6185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254) { { - this.state = 6182; + this.state = 6184; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -35038,7 +35039,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 6185; + this.state = 6187; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -35047,44 +35048,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6187; + this.state = 6189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 6186; + this.state = 6188; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 6189; + this.state = 6191; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6191; + this.state = 6193; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { case 1: { - this.state = 6190; + this.state = 6192; this.match(PostgreSqlParser.KW_UNLOGGED); } break; } - this.state = 6194; + this.state = 6196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 6193; + this.state = 6195; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 6196; + this.state = 6198; this.tableNameCreate(); } break; @@ -35110,16 +35111,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6199; + this.state = 6201; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6202; + this.state = 6204; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 816, this.context) ) { case 1: { - this.state = 6200; + this.state = 6202; this.match(PostgreSqlParser.KW_ON); - this.state = 6201; + this.state = 6203; this.executeParamClause(); } break; @@ -35147,25 +35148,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6204; + this.state = 6206; this.match(PostgreSqlParser.KW_ORDER); - this.state = 6205; + this.state = 6207; this.match(PostgreSqlParser.KW_BY); - this.state = 6206; + this.state = 6208; this.sortBy(); - this.state = 6211; + this.state = 6213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6207; + this.state = 6209; this.match(PostgreSqlParser.COMMA); - this.state = 6208; + this.state = 6210; this.sortBy(); } } - this.state = 6213; + this.state = 6215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35192,22 +35193,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6214; + this.state = 6216; this.columnExprNoParen(); - this.state = 6218; + this.state = 6220; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 818, this.context) ) { case 1: { - this.state = 6215; + this.state = 6217; this.match(PostgreSqlParser.KW_USING); - this.state = 6216; + this.state = 6218; this.qualAllOp(); } break; case 2: { - this.state = 6217; + this.state = 6219; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -35219,14 +35220,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6222; + this.state = 6224; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 819, this.context) ) { case 1: { - this.state = 6220; + this.state = 6222; this.match(PostgreSqlParser.KW_NULLS); - this.state = 6221; + this.state = 6223; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -35259,20 +35260,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 584, PostgreSqlParser.RULE_selectLimit); let _la: number; try { - this.state = 6235; + this.state = 6237; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OFFSET: this.enterOuterAlt(localContext, 1); { - this.state = 6224; - this.offsetClause(); this.state = 6226; + this.offsetClause(); + this.state = 6228; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { case 1: { - this.state = 6225; + this.state = 6227; this.fetchClause(); } break; @@ -35283,30 +35284,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 6230; + this.state = 6232; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 6228; + this.state = 6230; this.limitClause(); } break; case PostgreSqlParser.KW_FETCH: { - this.state = 6229; + this.state = 6231; this.fetchClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6233; + this.state = 6235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6232; + this.state = 6234; this.offsetClause(); } } @@ -35338,547 +35339,104 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6237; + this.state = 6239; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 6240; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.Operator: - case PostgreSqlParser.KW_ARRAY: - case PostgreSqlParser.KW_CASE: - case PostgreSqlParser.KW_CAST: - case PostgreSqlParser.KW_CURRENT_CATALOG: - case PostgreSqlParser.KW_CURRENT_DATE: - case PostgreSqlParser.KW_CURRENT_ROLE: - case PostgreSqlParser.KW_CURRENT_TIME: - case PostgreSqlParser.KW_CURRENT_TIMESTAMP: - case PostgreSqlParser.KW_CURRENT_USER: - case PostgreSqlParser.KW_DEFAULT: - case PostgreSqlParser.KW_FALSE: - case PostgreSqlParser.KW_LOCALTIME: - case PostgreSqlParser.KW_LOCALTIMESTAMP: - case PostgreSqlParser.KW_NOT: - case PostgreSqlParser.KW_NULL: - case PostgreSqlParser.KW_SESSION_USER: - case PostgreSqlParser.KW_TRUE: - case PostgreSqlParser.KW_UNIQUE: - case PostgreSqlParser.KW_USER: - case PostgreSqlParser.KW_AUTHORIZATION: - case PostgreSqlParser.KW_BINARY: - case PostgreSqlParser.KW_COLLATION: - case PostgreSqlParser.KW_CONCURRENTLY: - case PostgreSqlParser.KW_CROSS: - case PostgreSqlParser.KW_CURRENT_SCHEMA: - case PostgreSqlParser.KW_FREEZE: - case PostgreSqlParser.KW_FULL: - case PostgreSqlParser.KW_ILIKE: - case PostgreSqlParser.KW_INNER: - case PostgreSqlParser.KW_IS: - case PostgreSqlParser.KW_ISNULL: - case PostgreSqlParser.KW_JOIN: - case PostgreSqlParser.KW_LEFT: - case PostgreSqlParser.KW_LIKE: - case PostgreSqlParser.KW_NATURAL: - case PostgreSqlParser.KW_NOTNULL: - case PostgreSqlParser.KW_OUTER: - case PostgreSqlParser.KW_OVER: - case PostgreSqlParser.KW_OVERLAPS: - case PostgreSqlParser.KW_RIGHT: - case PostgreSqlParser.KW_SIMILAR: - case PostgreSqlParser.KW_VERBOSE: - case PostgreSqlParser.KW_ABORT: - case PostgreSqlParser.KW_ABSOLUTE: - case PostgreSqlParser.KW_ACCESS: - case PostgreSqlParser.KW_ACTION: - case PostgreSqlParser.KW_ADD: - case PostgreSqlParser.KW_ADMIN: - case PostgreSqlParser.KW_AFTER: - case PostgreSqlParser.KW_AGGREGATE: - case PostgreSqlParser.KW_ALSO: - case PostgreSqlParser.KW_ALTER: - case PostgreSqlParser.KW_ALWAYS: - case PostgreSqlParser.KW_ASSERTION: - case PostgreSqlParser.KW_ASSIGNMENT: - case PostgreSqlParser.KW_AT: - case PostgreSqlParser.KW_ATTRIBUTE: - case PostgreSqlParser.KW_BACKWARD: - case PostgreSqlParser.KW_BEFORE: - case PostgreSqlParser.KW_BEGIN: - case PostgreSqlParser.KW_BY: - case PostgreSqlParser.KW_CACHE: - case PostgreSqlParser.KW_CALLED: - case PostgreSqlParser.KW_CASCADE: - case PostgreSqlParser.KW_CASCADED: - case PostgreSqlParser.KW_CATALOG: - case PostgreSqlParser.KW_CHAIN: - case PostgreSqlParser.KW_CHARACTERISTICS: - case PostgreSqlParser.KW_CHECKPOINT: - case PostgreSqlParser.KW_CLASS: - case PostgreSqlParser.KW_CLOSE: - case PostgreSqlParser.KW_CLUSTER: - case PostgreSqlParser.KW_COMMENT: - case PostgreSqlParser.KW_COMMENTS: - case PostgreSqlParser.KW_COMMIT: - case PostgreSqlParser.KW_COMMITTED: - case PostgreSqlParser.KW_CONFIGURATION: - case PostgreSqlParser.KW_CONNECTION: - case PostgreSqlParser.KW_CONSTRAINTS: - case PostgreSqlParser.KW_CONTENT: - case PostgreSqlParser.KW_CONTINUE: - case PostgreSqlParser.KW_CONVERSION: - case PostgreSqlParser.KW_COPY: - case PostgreSqlParser.KW_COST: - case PostgreSqlParser.KW_CSV: - case PostgreSqlParser.KW_CURSOR: - case PostgreSqlParser.KW_CYCLE: - case PostgreSqlParser.KW_DATA: - case PostgreSqlParser.KW_DATABASE: - case PostgreSqlParser.KW_DAY: - case PostgreSqlParser.KW_DEALLOCATE: - case PostgreSqlParser.KW_DECLARE: - case PostgreSqlParser.KW_DEFAULTS: - case PostgreSqlParser.KW_DEFERRED: - case PostgreSqlParser.KW_DEFINER: - case PostgreSqlParser.KW_DELETE: - case PostgreSqlParser.KW_DELIMITER: - case PostgreSqlParser.KW_DELIMITERS: - case PostgreSqlParser.KW_DICTIONARY: - case PostgreSqlParser.KW_DISABLE: - case PostgreSqlParser.KW_DISCARD: - case PostgreSqlParser.KW_DOCUMENT: - case PostgreSqlParser.KW_DOMAIN: - case PostgreSqlParser.KW_DOUBLE: - case PostgreSqlParser.KW_DROP: - case PostgreSqlParser.KW_EACH: - case PostgreSqlParser.KW_ENABLE: - case PostgreSqlParser.KW_ENCODING: - case PostgreSqlParser.KW_ENCRYPTED: - case PostgreSqlParser.KW_ENUM: - case PostgreSqlParser.KW_ESCAPE: - case PostgreSqlParser.KW_EVENT: - case PostgreSqlParser.KW_EXCLUDE: - case PostgreSqlParser.KW_EXCLUDING: - case PostgreSqlParser.KW_EXCLUSIVE: - case PostgreSqlParser.KW_EXECUTE: - case PostgreSqlParser.KW_EXPLAIN: - case PostgreSqlParser.KW_EXTENSION: - case PostgreSqlParser.KW_EXTERNAL: - case PostgreSqlParser.KW_FAMILY: - case PostgreSqlParser.KW_FIRST: - case PostgreSqlParser.KW_FOLLOWING: - case PostgreSqlParser.KW_FORCE: - case PostgreSqlParser.KW_FORWARD: - case PostgreSqlParser.KW_FUNCTION: - case PostgreSqlParser.KW_FUNCTIONS: - case PostgreSqlParser.KW_GLOBAL: - case PostgreSqlParser.KW_GRANTED: - case PostgreSqlParser.KW_HANDLER: - case PostgreSqlParser.KW_HEADER: - case PostgreSqlParser.KW_HOLD: - case PostgreSqlParser.KW_HOUR: - case PostgreSqlParser.KW_IDENTITY: - case PostgreSqlParser.KW_IF: - case PostgreSqlParser.KW_IMMEDIATE: - case PostgreSqlParser.KW_IMMUTABLE: - case PostgreSqlParser.KW_IMPLICIT: - case PostgreSqlParser.KW_INCLUDING: - case PostgreSqlParser.KW_INCREMENT: - case PostgreSqlParser.KW_INDEX: - case PostgreSqlParser.KW_INDEXES: - case PostgreSqlParser.KW_INHERIT: - case PostgreSqlParser.KW_INHERITS: - case PostgreSqlParser.KW_INLINE: - case PostgreSqlParser.KW_INSENSITIVE: - case PostgreSqlParser.KW_INSERT: - case PostgreSqlParser.KW_INSTEAD: - case PostgreSqlParser.KW_INVOKER: - case PostgreSqlParser.KW_ISOLATION: - case PostgreSqlParser.KW_KEY: - case PostgreSqlParser.KW_LABEL: - case PostgreSqlParser.KW_LANGUAGE: - case PostgreSqlParser.KW_LARGE: - case PostgreSqlParser.KW_LAST: - case PostgreSqlParser.KW_LEAKPROOF: - case PostgreSqlParser.KW_LEVEL: - case PostgreSqlParser.KW_LISTEN: - case PostgreSqlParser.KW_LOAD: - case PostgreSqlParser.KW_LOCAL: - case PostgreSqlParser.KW_LOCATION: - case PostgreSqlParser.KW_LOCK: - case PostgreSqlParser.KW_MAPPING: - case PostgreSqlParser.KW_MATCH: - case PostgreSqlParser.KW_MATERIALIZED: - case PostgreSqlParser.KW_MAXVALUE: - case PostgreSqlParser.KW_MINUTE: - case PostgreSqlParser.KW_MINVALUE: - case PostgreSqlParser.KW_MODE: - case PostgreSqlParser.KW_MONTH: - case PostgreSqlParser.KW_MOVE: - case PostgreSqlParser.KW_NAME: - case PostgreSqlParser.KW_NAMES: - case PostgreSqlParser.KW_NEXT: - case PostgreSqlParser.KW_NO: - case PostgreSqlParser.KW_NOTHING: - case PostgreSqlParser.KW_NOTIFY: - case PostgreSqlParser.KW_NOWAIT: - case PostgreSqlParser.KW_NULLS: - case PostgreSqlParser.KW_OBJECT: - case PostgreSqlParser.KW_OF: - case PostgreSqlParser.KW_OFF: - case PostgreSqlParser.KW_OIDS: - case PostgreSqlParser.KW_OPERATOR: - case PostgreSqlParser.KW_OPTION: - case PostgreSqlParser.KW_OPTIONS: - case PostgreSqlParser.KW_OWNED: - case PostgreSqlParser.KW_OWNER: - case PostgreSqlParser.KW_PARSER: - case PostgreSqlParser.KW_PARTIAL: - case PostgreSqlParser.KW_PARTITION: - case PostgreSqlParser.KW_PASSING: - case PostgreSqlParser.KW_PASSWORD: - case PostgreSqlParser.KW_PLANS: - case PostgreSqlParser.KW_PRECEDING: - case PostgreSqlParser.KW_PREPARE: - case PostgreSqlParser.KW_PREPARED: - case PostgreSqlParser.KW_PRESERVE: - case PostgreSqlParser.KW_PRIOR: - case PostgreSqlParser.KW_PRIVILEGES: - case PostgreSqlParser.KW_PROCEDURAL: - case PostgreSqlParser.KW_PROCEDURE: - case PostgreSqlParser.KW_PROGRAM: - case PostgreSqlParser.KW_QUOTE: - case PostgreSqlParser.KW_RANGE: - case PostgreSqlParser.KW_READ: - case PostgreSqlParser.KW_REASSIGN: - case PostgreSqlParser.KW_RECHECK: - case PostgreSqlParser.KW_RECURSIVE: - case PostgreSqlParser.KW_REF: - case PostgreSqlParser.KW_REFRESH: - case PostgreSqlParser.KW_REINDEX: - case PostgreSqlParser.KW_RELATIVE: - case PostgreSqlParser.KW_RELEASE: - case PostgreSqlParser.KW_RENAME: - case PostgreSqlParser.KW_REPEATABLE: - case PostgreSqlParser.KW_REPLACE: - case PostgreSqlParser.KW_REPLICA: - case PostgreSqlParser.KW_RESET: - case PostgreSqlParser.KW_RESTART: - case PostgreSqlParser.KW_RESTRICT: - case PostgreSqlParser.KW_RETURNS: - case PostgreSqlParser.KW_REVOKE: - case PostgreSqlParser.KW_ROLE: - case PostgreSqlParser.KW_ROLLBACK: - case PostgreSqlParser.KW_ROWS: - case PostgreSqlParser.KW_RULE: - case PostgreSqlParser.KW_SAVEPOINT: - case PostgreSqlParser.KW_SCHEMA: - case PostgreSqlParser.KW_SCROLL: - case PostgreSqlParser.KW_SEARCH: - case PostgreSqlParser.KW_SECOND: - case PostgreSqlParser.KW_SECURITY: - case PostgreSqlParser.KW_SEQUENCE: - case PostgreSqlParser.KW_SEQUENCES: - case PostgreSqlParser.KW_SERIALIZABLE: - case PostgreSqlParser.KW_SERVER: - case PostgreSqlParser.KW_SESSION: - case PostgreSqlParser.KW_SET: - case PostgreSqlParser.KW_SHARE: - case PostgreSqlParser.KW_SHOW: - case PostgreSqlParser.KW_SIMPLE: - case PostgreSqlParser.KW_SNAPSHOT: - case PostgreSqlParser.KW_STABLE: - case PostgreSqlParser.KW_STANDALONE: - case PostgreSqlParser.KW_START: - case PostgreSqlParser.KW_STATEMENT: - case PostgreSqlParser.KW_STATISTICS: - case PostgreSqlParser.KW_STDIN: - case PostgreSqlParser.KW_STDOUT: - case PostgreSqlParser.KW_STORAGE: - case PostgreSqlParser.KW_STRICT: - case PostgreSqlParser.KW_STRIP: - case PostgreSqlParser.KW_SYSID: - case PostgreSqlParser.KW_SYSTEM: - case PostgreSqlParser.KW_TABLES: - case PostgreSqlParser.KW_TABLESPACE: - case PostgreSqlParser.KW_TEMP: - case PostgreSqlParser.KW_TEMPLATE: - case PostgreSqlParser.KW_TEMPORARY: - case PostgreSqlParser.KW_TEXT: - case PostgreSqlParser.KW_TRANSACTION: - case PostgreSqlParser.KW_TRIGGER: - case PostgreSqlParser.KW_TRUNCATE: - case PostgreSqlParser.KW_TRUSTED: - case PostgreSqlParser.KW_TYPE: - case PostgreSqlParser.KW_TYPES: - case PostgreSqlParser.KW_UNBOUNDED: - case PostgreSqlParser.KW_UNCOMMITTED: - case PostgreSqlParser.KW_UNENCRYPTED: - case PostgreSqlParser.KW_UNKNOWN: - case PostgreSqlParser.KW_UNLISTEN: - case PostgreSqlParser.KW_UNLOGGED: - case PostgreSqlParser.KW_UNTIL: - case PostgreSqlParser.KW_UPDATE: - case PostgreSqlParser.KW_VACUUM: - case PostgreSqlParser.KW_VALID: - case PostgreSqlParser.KW_VALIDATE: - case PostgreSqlParser.KW_VALIDATOR: - case PostgreSqlParser.KW_VARYING: - case PostgreSqlParser.KW_VERSION: - case PostgreSqlParser.KW_VIEW: - case PostgreSqlParser.KW_VOLATILE: - case PostgreSqlParser.KW_WHITESPACE: - case PostgreSqlParser.KW_WITHOUT: - case PostgreSqlParser.KW_WORK: - case PostgreSqlParser.KW_WRAPPER: - case PostgreSqlParser.KW_WRITE: - case PostgreSqlParser.KW_XML: - case PostgreSqlParser.KW_YEAR: - case PostgreSqlParser.KW_YES: - case PostgreSqlParser.KW_ZONE: - case PostgreSqlParser.KW_BETWEEN: - case PostgreSqlParser.KW_BIGINT: - case PostgreSqlParser.KW_BIT: - case PostgreSqlParser.KW_BOOLEAN: - case PostgreSqlParser.KW_CHAR: - case PostgreSqlParser.KW_CHARACTER: - case PostgreSqlParser.KW_COALESCE: - case PostgreSqlParser.KW_DEC: - case PostgreSqlParser.KW_DECIMAL: - case PostgreSqlParser.KW_EXISTS: - case PostgreSqlParser.KW_EXTRACT: - case PostgreSqlParser.KW_FLOAT: - case PostgreSqlParser.KW_GREATEST: - case PostgreSqlParser.KW_INOUT: - case PostgreSqlParser.KW_INT: - case PostgreSqlParser.KW_INTEGER: - case PostgreSqlParser.KW_INTERVAL: - case PostgreSqlParser.KW_LEAST: - case PostgreSqlParser.KW_NATIONAL: - case PostgreSqlParser.KW_NCHAR: - case PostgreSqlParser.KW_NONE: - case PostgreSqlParser.KW_NULLIF: - case PostgreSqlParser.KW_NUMERIC: - case PostgreSqlParser.KW_OVERLAY: - case PostgreSqlParser.KW_POSITION: - case PostgreSqlParser.KW_PRECISION: - case PostgreSqlParser.KW_REAL: - case PostgreSqlParser.KW_ROW: - case PostgreSqlParser.KW_SETOF: - case PostgreSqlParser.KW_SMALLINT: - case PostgreSqlParser.KW_SUBSTRING: - case PostgreSqlParser.KW_TIME: - case PostgreSqlParser.KW_TIMESTAMP: - case PostgreSqlParser.KW_TREAT: - case PostgreSqlParser.KW_TRIM: - case PostgreSqlParser.KW_VALUES: - case PostgreSqlParser.KW_VARCHAR: - case PostgreSqlParser.KW_XMLATTRIBUTES: - case PostgreSqlParser.KW_XMLCONCAT: - case PostgreSqlParser.KW_XMLELEMENT: - case PostgreSqlParser.KW_XMLEXISTS: - case PostgreSqlParser.KW_XMLFOREST: - case PostgreSqlParser.KW_XMLPARSE: - case PostgreSqlParser.KW_XMLPI: - case PostgreSqlParser.KW_XMLROOT: - case PostgreSqlParser.KW_XMLSERIALIZE: - case PostgreSqlParser.KW_CALL: - case PostgreSqlParser.KW_CURRENT: - case PostgreSqlParser.KW_ATTACH: - case PostgreSqlParser.KW_DETACH: - case PostgreSqlParser.KW_EXPRESSION: - case PostgreSqlParser.KW_GENERATED: - case PostgreSqlParser.KW_LOGGED: - case PostgreSqlParser.KW_STORED: - case PostgreSqlParser.KW_INCLUDE: - case PostgreSqlParser.KW_ROUTINE: - case PostgreSqlParser.KW_TRANSFORM: - case PostgreSqlParser.KW_IMPORT: - case PostgreSqlParser.KW_POLICY: - case PostgreSqlParser.KW_METHOD: - case PostgreSqlParser.KW_REFERENCING: - case PostgreSqlParser.KW_NEW: - case PostgreSqlParser.KW_OLD: - case PostgreSqlParser.KW_VALUE: - case PostgreSqlParser.KW_SUBSCRIPTION: - case PostgreSqlParser.KW_PUBLICATION: - case PostgreSqlParser.KW_OUT: - case PostgreSqlParser.KW_ROUTINES: - case PostgreSqlParser.KW_SCHEMAS: - case PostgreSqlParser.KW_PROCEDURES: - case PostgreSqlParser.KW_INPUT: - case PostgreSqlParser.KW_SUPPORT: - case PostgreSqlParser.KW_PARALLEL: - case PostgreSqlParser.KW_SQL: - case PostgreSqlParser.KW_DEPENDS: - case PostgreSqlParser.KW_OVERRIDING: - case PostgreSqlParser.KW_CONFLICT: - case PostgreSqlParser.KW_SKIP: - case PostgreSqlParser.KW_LOCKED: - case PostgreSqlParser.KW_TIES: - case PostgreSqlParser.KW_ROLLUP: - case PostgreSqlParser.KW_CUBE: - case PostgreSqlParser.KW_GROUPING: - case PostgreSqlParser.KW_SETS: - case PostgreSqlParser.KW_TABLESAMPLE: - case PostgreSqlParser.KW_ORDINALITY: - case PostgreSqlParser.KW_XMLTABLE: - case PostgreSqlParser.KW_COLUMNS: - case PostgreSqlParser.KW_XMLNAMESPACES: - case PostgreSqlParser.KW_ROWTYPE: - case PostgreSqlParser.KW_NORMALIZED: - case PostgreSqlParser.KW_WITHIN: - case PostgreSqlParser.KW_FILTER: - case PostgreSqlParser.KW_GROUPS: - case PostgreSqlParser.KW_OTHERS: - case PostgreSqlParser.KW_NFC: - case PostgreSqlParser.KW_NFD: - case PostgreSqlParser.KW_NFKC: - case PostgreSqlParser.KW_NFKD: - case PostgreSqlParser.KW_UESCAPE: - case PostgreSqlParser.KW_VIEWS: - case PostgreSqlParser.KW_NORMALIZE: - case PostgreSqlParser.KW_DUMP: - case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: - case PostgreSqlParser.KW_VARIABLE_CONFLICT: - case PostgreSqlParser.KW_ERROR: - case PostgreSqlParser.KW_USE_VARIABLE: - case PostgreSqlParser.KW_USE_COLUMN: - case PostgreSqlParser.KW_ALIAS: - case PostgreSqlParser.KW_CONSTANT: - case PostgreSqlParser.KW_PERFORM: - case PostgreSqlParser.KW_GET: - case PostgreSqlParser.KW_DIAGNOSTICS: - case PostgreSqlParser.KW_STACKED: - case PostgreSqlParser.KW_ELSIF: - case PostgreSqlParser.KW_REVERSE: - case PostgreSqlParser.KW_SLICE: - case PostgreSqlParser.KW_EXIT: - case PostgreSqlParser.KW_RETURN: - case PostgreSqlParser.KW_QUERY: - case PostgreSqlParser.KW_RAISE: - case PostgreSqlParser.KW_SQLSTATE: - case PostgreSqlParser.KW_DEBUG: - case PostgreSqlParser.KW_LOG: - case PostgreSqlParser.KW_INFO: - case PostgreSqlParser.KW_NOTICE: - case PostgreSqlParser.KW_WARNING: - case PostgreSqlParser.KW_EXCEPTION: - case PostgreSqlParser.KW_ASSERT: - case PostgreSqlParser.KW_OPEN: - case PostgreSqlParser.KW_PUBLIC: - case PostgreSqlParser.KW_SKIP_LOCKED: - case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: - { - this.state = 6238; - this.expression(); - } - break; - case PostgreSqlParser.KW_ALL: - { - this.state = 6239; - this.match(PostgreSqlParser.KW_ALL); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 6244; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 6) { - { - this.state = 6242; - this.match(PostgreSqlParser.COMMA); - this.state = 6243; - this.expression(); - } - } - - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public fetchClause(): FetchClauseContext { - let localContext = new FetchClauseContext(this.context, this.state); - this.enterRule(localContext, 588, PostgreSqlParser.RULE_fetchClause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6246; - this.match(PostgreSqlParser.KW_FETCH); - this.state = 6247; - _la = this.tokenStream.LA(1); - if(!(_la === 207 || _la === 268)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - { - this.state = 6249; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { - case 1: - { - this.state = 6248; - this.selectFetchFirstValue(); - } - break; - } - this.state = 6251; - _la = this.tokenStream.LA(1); - if(!(_la === 320 || _la === 414)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6255; + this.state = 6242; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { + case 1: + { + this.state = 6240; + this.expression(); + } + break; + case 2: + { + this.state = 6241; + this.match(PostgreSqlParser.KW_ALL); + } + break; + } + this.state = 6246; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 6) { + { + this.state = 6244; + this.match(PostgreSqlParser.COMMA); + this.state = 6245; + this.expression(); + } + } + + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public fetchClause(): FetchClauseContext { + let localContext = new FetchClauseContext(this.context, this.state); + this.enterRule(localContext, 588, PostgreSqlParser.RULE_fetchClause); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6248; + this.match(PostgreSqlParser.KW_FETCH); + this.state = 6249; + _la = this.tokenStream.LA(1); + if(!(_la === 207 || _la === 268)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + { + this.state = 6251; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { + case 1: + { + this.state = 6250; + this.selectFetchFirstValue(); + } + break; + } + this.state = 6253; + _la = this.tokenStream.LA(1); + if(!(_la === 320 || _la === 414)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6257; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ONLY: { - this.state = 6252; + this.state = 6254; this.match(PostgreSqlParser.KW_ONLY); } break; case PostgreSqlParser.KW_WITH: { - this.state = 6253; + this.state = 6255; this.match(PostgreSqlParser.KW_WITH); - this.state = 6254; + this.state = 6256; this.match(PostgreSqlParser.KW_TIES); } break; @@ -35909,16 +35467,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6257; + this.state = 6259; this.match(PostgreSqlParser.KW_OFFSET); - this.state = 6262; + this.state = 6264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { case 1: { - this.state = 6258; + this.state = 6260; this.selectFetchFirstValue(); - this.state = 6259; + this.state = 6261; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -35931,7 +35489,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6261; + this.state = 6263; this.expression(); } break; @@ -35957,13 +35515,13 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 592, PostgreSqlParser.RULE_selectFetchFirstValue); let _la: number; try { - this.state = 6267; + this.state = 6269; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6264; + this.state = 6266; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -35972,7 +35530,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6265; + this.state = 6267; _la = this.tokenStream.LA(1); if(!(_la === 574 || _la === 576)) { this.errorHandler.recoverInline(this); @@ -35986,7 +35544,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6266; + this.state = 6268; this.primaryExpression(0); } break; @@ -36013,16 +35571,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6269; + this.state = 6271; this.match(PostgreSqlParser.KW_GROUP); - this.state = 6270; - this.match(PostgreSqlParser.KW_BY); this.state = 6272; + this.match(PostgreSqlParser.KW_BY); + this.state = 6274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 830, this.context) ) { case 1: { - this.state = 6271; + this.state = 6273; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -36034,7 +35592,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6274; + this.state = 6276; this.groupByList(); } } @@ -36059,23 +35617,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6276; + this.state = 6278; this.groupByItem(); - this.state = 6281; + this.state = 6283; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6277; + this.state = 6279; this.match(PostgreSqlParser.COMMA); - this.state = 6278; + this.state = 6280; this.groupByItem(); } } } - this.state = 6283; + this.state = 6285; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); } @@ -36100,34 +35658,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 598, PostgreSqlParser.RULE_groupByItem); let _la: number; try { - this.state = 6307; + this.state = 6309; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6284; + this.state = 6286; this.columnExprNoParen(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6285; + this.state = 6287; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6286; + this.state = 6288; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6288; + this.state = 6290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 468 || _la === 469) { { - this.state = 6287; + this.state = 6289; _la = this.tokenStream.LA(1); if(!(_la === 468 || _la === 469)) { this.errorHandler.recoverInline(this); @@ -36139,44 +35697,44 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 6290; + this.state = 6292; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 6291; + this.state = 6293; this.columnExprNoParen(); - this.state = 6296; + this.state = 6298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6292; + this.state = 6294; this.match(PostgreSqlParser.COMMA); - this.state = 6293; + this.state = 6295; this.columnExprNoParen(); } } - this.state = 6298; + this.state = 6300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6299; + this.state = 6301; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6301; + this.state = 6303; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6302; + this.state = 6304; this.match(PostgreSqlParser.KW_SETS); - this.state = 6303; + this.state = 6305; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6304; + this.state = 6306; this.groupByList(); - this.state = 6305; + this.state = 6307; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36201,95 +35759,95 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 600, PostgreSqlParser.RULE_forLockingClause); let _la: number; try { - this.state = 6337; + this.state = 6339; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6330; + this.state = 6332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6309; + this.state = 6311; this.match(PostgreSqlParser.KW_FOR); - this.state = 6319; + this.state = 6321; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_UPDATE: { - this.state = 6312; + this.state = 6314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 6310; + this.state = 6312; this.match(PostgreSqlParser.KW_NO); - this.state = 6311; + this.state = 6313; this.match(PostgreSqlParser.KW_KEY); } } - this.state = 6314; + this.state = 6316; this.match(PostgreSqlParser.KW_UPDATE); } break; case PostgreSqlParser.KW_KEY: case PostgreSqlParser.KW_SHARE: { - this.state = 6316; + this.state = 6318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 6315; + this.state = 6317; this.match(PostgreSqlParser.KW_KEY); } } - this.state = 6318; + this.state = 6320; this.match(PostgreSqlParser.KW_SHARE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6323; + this.state = 6325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: { - this.state = 6321; + this.state = 6323; this.match(PostgreSqlParser.KW_OF); - this.state = 6322; + this.state = 6324; this.qualifiedNameList(); } break; } - this.state = 6328; + this.state = 6330; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { case 1: { - this.state = 6325; + this.state = 6327; this.match(PostgreSqlParser.KW_NOWAIT); } break; case 2: { - this.state = 6326; + this.state = 6328; this.match(PostgreSqlParser.KW_SKIP); - this.state = 6327; + this.state = 6329; this.match(PostgreSqlParser.KW_LOCKED); } break; } } } - this.state = 6332; + this.state = 6334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 62); @@ -36298,11 +35856,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6334; + this.state = 6336; this.match(PostgreSqlParser.KW_FOR); - this.state = 6335; + this.state = 6337; this.match(PostgreSqlParser.KW_READ); - this.state = 6336; + this.state = 6338; this.match(PostgreSqlParser.KW_ONLY); } break; @@ -36329,23 +35887,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6339; + this.state = 6341; this.match(PostgreSqlParser.KW_VALUES); - this.state = 6340; + this.state = 6342; this.executeParamClause(); - this.state = 6345; + this.state = 6347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6341; + this.state = 6343; this.match(PostgreSqlParser.COMMA); - this.state = 6342; + this.state = 6344; this.executeParamClause(); } } - this.state = 6347; + this.state = 6349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36371,9 +35929,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6348; + this.state = 6350; this.match(PostgreSqlParser.KW_FROM); - this.state = 6349; + this.state = 6351; this.fromList(); } } @@ -36398,23 +35956,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6351; + this.state = 6353; this.tableRef(); - this.state = 6356; + this.state = 6358; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6352; + this.state = 6354; this.match(PostgreSqlParser.COMMA); - this.state = 6353; + this.state = 6355; this.tableRef(); } } } - this.state = 6358; + this.state = 6360; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); } @@ -36442,61 +36000,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6409; + this.state = 6411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 856, this.context) ) { case 1: { - this.state = 6373; + this.state = 6375; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: { - this.state = 6359; + this.state = 6361; this.relationExpr(); } break; case 2: { { - this.state = 6361; + this.state = 6363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 6360; + this.state = 6362; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 6363; - this.viewName(); this.state = 6365; + this.viewName(); + this.state = 6367; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 845, this.context) ) { case 1: { - this.state = 6364; + this.state = 6366; this.match(PostgreSqlParser.STAR); } break; } - this.state = 6368; + this.state = 6370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { case 1: { - this.state = 6367; + this.state = 6369; this.columnList(); } break; } - this.state = 6371; + this.state = 6373; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { case 1: { - this.state = 6370; + this.state = 6372; this.whereClause(); } break; @@ -36505,22 +36063,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6376; + this.state = 6378; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { case 1: { - this.state = 6375; + this.state = 6377; this.aliasClause(); } break; } - this.state = 6379; + this.state = 6381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 472) { { - this.state = 6378; + this.state = 6380; this.tableSampleClause(); } } @@ -36529,56 +36087,56 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6382; + this.state = 6384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 72) { { - this.state = 6381; + this.state = 6383; this.match(PostgreSqlParser.KW_LATERAL); } } - this.state = 6384; + this.state = 6386; this.expressionTable(); } break; case 3: { - this.state = 6385; + this.state = 6387; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6386; + this.state = 6388; this.tableRef(); - this.state = 6403; + this.state = 6405; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CROSS: { - this.state = 6387; + this.state = 6389; this.match(PostgreSqlParser.KW_CROSS); - this.state = 6388; + this.state = 6390; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6389; + this.state = 6391; this.tableRef(); } break; case PostgreSqlParser.KW_NATURAL: { - this.state = 6390; - this.match(PostgreSqlParser.KW_NATURAL); this.state = 6392; + this.match(PostgreSqlParser.KW_NATURAL); + this.state = 6394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6391; + this.state = 6393; this.joinType(); } } - this.state = 6394; + this.state = 6396; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6395; + this.state = 6397; this.tableRef(); } break; @@ -36588,21 +36146,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEFT: case PostgreSqlParser.KW_RIGHT: { - this.state = 6397; + this.state = 6399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6396; + this.state = 6398; this.joinType(); } } - this.state = 6399; + this.state = 6401; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6400; + this.state = 6402; this.tableRef(); - this.state = 6401; + this.state = 6403; this.joinQual(); } break; @@ -36611,14 +36169,14 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 6405; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 6407; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6409; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { case 1: { - this.state = 6406; + this.state = 6408; this.aliasClause(); } break; @@ -36626,42 +36184,42 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6429; + this.state = 6431; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 6427; + this.state = 6429; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CROSS: { - this.state = 6411; + this.state = 6413; this.match(PostgreSqlParser.KW_CROSS); - this.state = 6412; + this.state = 6414; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6413; + this.state = 6415; this.tableRef(); } break; case PostgreSqlParser.KW_NATURAL: { - this.state = 6414; - this.match(PostgreSqlParser.KW_NATURAL); this.state = 6416; + this.match(PostgreSqlParser.KW_NATURAL); + this.state = 6418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6415; + this.state = 6417; this.joinType(); } } - this.state = 6418; + this.state = 6420; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6419; + this.state = 6421; this.tableRef(); } break; @@ -36671,21 +36229,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEFT: case PostgreSqlParser.KW_RIGHT: { - this.state = 6421; + this.state = 6423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6420; + this.state = 6422; this.joinType(); } } - this.state = 6423; + this.state = 6425; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6424; + this.state = 6426; this.tableRef(); - this.state = 6425; + this.state = 6427; this.joinQual(); } break; @@ -36694,7 +36252,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 6431; + this.state = 6433; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); } @@ -36718,20 +36276,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExpressionTableContext(this.context, this.state); this.enterRule(localContext, 610, PostgreSqlParser.RULE_expressionTable); try { - this.state = 6444; + this.state = 6446; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6432; - this.xmlTable(); this.state = 6434; + this.xmlTable(); + this.state = 6436; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { case 1: { - this.state = 6433; + this.state = 6435; this.aliasClause(); } break; @@ -36741,14 +36299,14 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6436; - this.funcTable(); this.state = 6438; + this.funcTable(); + this.state = 6440; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 862, this.context) ) { case 1: { - this.state = 6437; + this.state = 6439; this.funcAliasClause(); } break; @@ -36758,14 +36316,14 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6440; - this.selectWithParens(); this.state = 6442; + this.selectWithParens(); + this.state = 6444; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 863, this.context) ) { case 1: { - this.state = 6441; + this.state = 6443; this.aliasClause(); } break; @@ -36795,28 +36353,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6447; + this.state = 6449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6446; + this.state = 6448; this.match(PostgreSqlParser.KW_AS); } } - this.state = 6449; + this.state = 6451; localContext._alias = this.colId(); - this.state = 6454; + this.state = 6456; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { case 1: { - this.state = 6450; + this.state = 6452; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6451; + this.state = 6453; this.nameList(); - this.state = 6452; + this.state = 6454; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36842,32 +36400,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 614, PostgreSqlParser.RULE_funcAliasClause); let _la: number; try { - this.state = 6468; + this.state = 6470; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6456; + this.state = 6458; this.aliasClause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6462; + this.state = 6464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: { - this.state = 6457; - this.match(PostgreSqlParser.KW_AS); this.state = 6459; + this.match(PostgreSqlParser.KW_AS); + this.state = 6461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 6458; + this.state = 6460; localContext._alias = this.colId(); } } @@ -37269,18 +36827,18 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6461; + this.state = 6463; localContext._alias = this.colId(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6464; + this.state = 6466; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6465; + this.state = 6467; this.tableFuncElementList(); - this.state = 6466; + this.state = 6468; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37307,7 +36865,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6470; + this.state = 6472; _la = this.tokenStream.LA(1); if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { this.errorHandler.recoverInline(this); @@ -37316,12 +36874,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6472; + this.state = 6474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 6471; + this.state = 6473; this.match(PostgreSqlParser.KW_OUTER); } } @@ -37346,24 +36904,24 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new JoinQualContext(this.context, this.state); this.enterRule(localContext, 618, PostgreSqlParser.RULE_joinQual); try { - this.state = 6478; + this.state = 6480; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_USING: this.enterOuterAlt(localContext, 1); { - this.state = 6474; + this.state = 6476; this.match(PostgreSqlParser.KW_USING); - this.state = 6475; + this.state = 6477; this.optColumnList(); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 2); { - this.state = 6476; + this.state = 6478; this.match(PostgreSqlParser.KW_ON); - this.state = 6477; + this.state = 6479; this.expression(); } break; @@ -37389,22 +36947,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RelationExprContext(this.context, this.state); this.enterRule(localContext, 620, PostgreSqlParser.RULE_relationExpr); try { - this.state = 6495; + this.state = 6497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6480; + this.state = 6482; this.truncateTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6481; + this.state = 6483; this.match(PostgreSqlParser.KW_ONLY); - this.state = 6487; + this.state = 6489; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -37802,17 +37360,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6482; + this.state = 6484; this.tableName(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6483; + this.state = 6485; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6484; + this.state = 6486; this.tableName(); - this.state = 6485; + this.state = 6487; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37824,11 +37382,11 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6489; + this.state = 6491; this.match(PostgreSqlParser.KW_IN); - this.state = 6490; + this.state = 6492; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6493; + this.state = 6495; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38226,13 +37784,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6491; + this.state = 6493; this.schemaName(); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6492; + this.state = 6494; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -38262,32 +37820,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 622, PostgreSqlParser.RULE_publicationRelationExpr); let _la: number; try { - this.state = 6521; + this.state = 6523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6497; + this.state = 6499; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6498; - this.truncateTable(); this.state = 6500; + this.truncateTable(); + this.state = 6502; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 875, this.context) ) { case 1: { - this.state = 6499; + this.state = 6501; this.optColumnList(); } break; } - this.state = 6503; + this.state = 6505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 6502; + this.state = 6504; this.whereClause(); } } @@ -38297,11 +37855,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6505; + this.state = 6507; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6506; + this.state = 6508; this.match(PostgreSqlParser.KW_ONLY); - this.state = 6512; + this.state = 6514; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38699,17 +38257,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6507; + this.state = 6509; this.tableName(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6508; + this.state = 6510; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6509; + this.state = 6511; this.tableName(); - this.state = 6510; + this.state = 6512; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -38721,13 +38279,13 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6514; + this.state = 6516; this.match(PostgreSqlParser.KW_TABLES); - this.state = 6515; + this.state = 6517; this.match(PostgreSqlParser.KW_IN); - this.state = 6516; + this.state = 6518; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6519; + this.state = 6521; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -39125,13 +38683,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6517; + this.state = 6519; this.schemaName(); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6518; + this.state = 6520; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -39163,21 +38721,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6523; + this.state = 6525; this.relationExpr(); - this.state = 6528; + this.state = 6530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6524; + this.state = 6526; this.match(PostgreSqlParser.COMMA); - this.state = 6525; + this.state = 6527; this.relationExpr(); } } - this.state = 6530; + this.state = 6532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39204,24 +38762,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6531; + this.state = 6533; this.relationExpr(); - this.state = 6536; + this.state = 6538; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 882, this.context) ) { case 1: { - this.state = 6533; + this.state = 6535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6532; + this.state = 6534; this.match(PostgreSqlParser.KW_AS); } } - this.state = 6535; + this.state = 6537; this.colId(); } break; @@ -39248,24 +38806,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6538; + this.state = 6540; this.match(PostgreSqlParser.KW_TABLESAMPLE); - this.state = 6539; + this.state = 6541; this.functionName(); - this.state = 6540; + this.state = 6542; this.executeParamClause(); - this.state = 6546; + this.state = 6548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 883, this.context) ) { case 1: { - this.state = 6541; + this.state = 6543; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 6542; + this.state = 6544; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6543; + this.state = 6545; this.expression(); - this.state = 6544; + this.state = 6546; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -39293,56 +38851,56 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6562; + this.state = 6564; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { case 1: { - this.state = 6548; + this.state = 6550; this.funcExprWindowless(); } break; case 2: { { - this.state = 6549; + this.state = 6551; this.match(PostgreSqlParser.KW_ROWS); - this.state = 6550; + this.state = 6552; this.match(PostgreSqlParser.KW_FROM); - this.state = 6551; + this.state = 6553; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6552; + this.state = 6554; this.rowsFromItem(); - this.state = 6557; + this.state = 6559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6553; + this.state = 6555; this.match(PostgreSqlParser.COMMA); - this.state = 6554; + this.state = 6556; this.rowsFromItem(); } } - this.state = 6559; + this.state = 6561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6560; + this.state = 6562; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 6566; + this.state = 6568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: { - this.state = 6564; + this.state = 6566; this.match(PostgreSqlParser.KW_WITH); - this.state = 6565; + this.state = 6567; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -39370,20 +38928,20 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6568; + this.state = 6570; this.funcExprWindowless(); - this.state = 6574; + this.state = 6576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6569; + this.state = 6571; this.match(PostgreSqlParser.KW_AS); - this.state = 6570; + this.state = 6572; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6571; + this.state = 6573; this.tableFuncElementList(); - this.state = 6572; + this.state = 6574; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39410,9 +38968,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6576; + this.state = 6578; this.match(PostgreSqlParser.KW_WHERE); - this.state = 6577; + this.state = 6579; this.columnExprNoParen(); } } @@ -39436,24 +38994,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6579; + this.state = 6581; this.match(PostgreSqlParser.KW_WHERE); - this.state = 6584; + this.state = 6586; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 888, this.context) ) { case 1: { - this.state = 6580; + this.state = 6582; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 6581; + this.state = 6583; this.match(PostgreSqlParser.KW_OF); - this.state = 6582; + this.state = 6584; this.colId(); } break; case 2: { - this.state = 6583; + this.state = 6585; this.expression(); } break; @@ -39481,21 +39039,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6586; + this.state = 6588; this.tableFuncElement(); - this.state = 6591; + this.state = 6593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6587; + this.state = 6589; this.match(PostgreSqlParser.COMMA); - this.state = 6588; + this.state = 6590; this.tableFuncElement(); } } - this.state = 6593; + this.state = 6595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39522,16 +39080,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6594; + this.state = 6596; this.colId(); - this.state = 6595; - this.typename(); this.state = 6597; + this.typename(); + this.state = 6599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 6596; + this.state = 6598; this.collateClause(); } } @@ -39559,71 +39117,71 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6599; + this.state = 6601; this.match(PostgreSqlParser.KW_XMLTABLE); - this.state = 6600; + this.state = 6602; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 6614; + this.state = 6616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { case 1: { - this.state = 6601; + this.state = 6603; this.match(PostgreSqlParser.KW_XMLNAMESPACES); - this.state = 6602; + this.state = 6604; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6603; + this.state = 6605; this.xmlNamespaceEle(); - this.state = 6608; + this.state = 6610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6604; + this.state = 6606; this.match(PostgreSqlParser.COMMA); - this.state = 6605; + this.state = 6607; this.xmlNamespaceEle(); } } - this.state = 6610; + this.state = 6612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6611; + this.state = 6613; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6612; + this.state = 6614; this.match(PostgreSqlParser.COMMA); } break; } - this.state = 6616; + this.state = 6618; this.primaryExpression(0); - this.state = 6617; + this.state = 6619; this.xmlExistsArgument(); - this.state = 6618; + this.state = 6620; this.match(PostgreSqlParser.KW_COLUMNS); - this.state = 6619; + this.state = 6621; this.xmlTableColumnEl(); - this.state = 6624; + this.state = 6626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6620; + this.state = 6622; this.match(PostgreSqlParser.COMMA); - this.state = 6621; + this.state = 6623; this.xmlTableColumnEl(); } } - this.state = 6626; + this.state = 6628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6627; + this.state = 6629; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39648,9 +39206,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6629; + this.state = 6631; this.colId(); - this.state = 6648; + this.state = 6650; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -40069,19 +39627,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6630; + this.state = 6632; this.typename(); - this.state = 6644; + this.state = 6646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 6640; + this.state = 6642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { - this.state = 6640; + this.state = 6642; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -40428,40 +39986,40 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6633; + this.state = 6635; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { case 1: { - this.state = 6631; + this.state = 6633; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 6632; + this.state = 6634; this.identifier(); } break; } - this.state = 6635; + this.state = 6637; this.expression(); } break; case PostgreSqlParser.KW_NOT: case PostgreSqlParser.KW_NULL: { - this.state = 6637; + this.state = 6639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6636; + this.state = 6638; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6639; + this.state = 6641; this.match(PostgreSqlParser.KW_NULL); } break; @@ -40469,7 +40027,7 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6642; + this.state = 6644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586); @@ -40480,9 +40038,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_FOR: { - this.state = 6646; + this.state = 6648; this.match(PostgreSqlParser.KW_FOR); - this.state = 6647; + this.state = 6649; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -40509,26 +40067,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new XmlNamespaceEleContext(this.context, this.state); this.enterRule(localContext, 646, PostgreSqlParser.RULE_xmlNamespaceEle); try { - this.state = 6656; + this.state = 6658; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 900, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6650; + this.state = 6652; this.primaryExpression(0); - this.state = 6651; + this.state = 6653; this.match(PostgreSqlParser.KW_AS); - this.state = 6652; + this.state = 6654; this.colLabel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6654; + this.state = 6656; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6655; + this.state = 6657; this.primaryExpression(0); } break; @@ -40554,55 +40112,55 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 6684; + this.state = 6686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6659; + this.state = 6661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 6658; + this.state = 6660; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 6661; + this.state = 6663; this.simpleTypeName(); - this.state = 6678; + this.state = 6680; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { case 1: { { - this.state = 6669; + this.state = 6671; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 903, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6662; - this.match(PostgreSqlParser.OPEN_BRACKET); this.state = 6664; + this.match(PostgreSqlParser.OPEN_BRACKET); + this.state = 6666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 574) { { - this.state = 6663; + this.state = 6665; this.match(PostgreSqlParser.Integral); } } - this.state = 6666; + this.state = 6668; this.match(PostgreSqlParser.CLOSE_BRACKET); } } } - this.state = 6671; + this.state = 6673; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 903, this.context); } @@ -40611,18 +40169,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6672; + this.state = 6674; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6676; + this.state = 6678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { case 1: { - this.state = 6673; + this.state = 6675; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 6674; + this.state = 6676; this.match(PostgreSqlParser.Integral); - this.state = 6675; + this.state = 6677; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -40635,11 +40193,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6680; + this.state = 6682; this.qualifiedName(); - this.state = 6681; + this.state = 6683; this.match(PostgreSqlParser.PERCENT); - this.state = 6682; + this.state = 6684; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -40670,30 +40228,30 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SimpleTypeNameContext(this.context, this.state); this.enterRule(localContext, 650, PostgreSqlParser.RULE_simpleTypeName); try { - this.state = 6701; + this.state = 6703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6686; - this.typeFunctionName(); this.state = 6688; + this.typeFunctionName(); + this.state = 6690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { case 1: { - this.state = 6687; + this.state = 6689; this.attrs(); } break; } - this.state = 6691; + this.state = 6693; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { case 1: { - this.state = 6690; + this.state = 6692; this.executeParamClause(); } break; @@ -40703,26 +40261,26 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6693; + this.state = 6695; this.constTypeName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6694; + this.state = 6696; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6699; + this.state = 6701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 910, this.context) ) { case 1: { - this.state = 6696; + this.state = 6698; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { case 1: { - this.state = 6695; + this.state = 6697; this.optInterval(); } break; @@ -40731,7 +40289,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6698; + this.state = 6700; this.optFloat(); } break; @@ -40758,7 +40316,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ConstTypeNameContext(this.context, this.state); this.enterRule(localContext, 652, PostgreSqlParser.RULE_constTypeName); try { - this.state = 6707; + this.state = 6709; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DOUBLE: @@ -40774,14 +40332,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 1); { - this.state = 6703; + this.state = 6705; this.numeric(); } break; case PostgreSqlParser.KW_BIT: this.enterOuterAlt(localContext, 2); { - this.state = 6704; + this.state = 6706; this.bit(); } break; @@ -40792,7 +40350,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 3); { - this.state = 6705; + this.state = 6707; this.character(); } break; @@ -40800,7 +40358,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 6706; + this.state = 6708; this.constDatetime(); } break; @@ -40827,55 +40385,55 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 654, PostgreSqlParser.RULE_numeric); let _la: number; try { - this.state = 6725; + this.state = 6727; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INT: this.enterOuterAlt(localContext, 1); { - this.state = 6709; + this.state = 6711; this.match(PostgreSqlParser.KW_INT); } break; case PostgreSqlParser.KW_INTEGER: this.enterOuterAlt(localContext, 2); { - this.state = 6710; + this.state = 6712; this.match(PostgreSqlParser.KW_INTEGER); } break; case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 3); { - this.state = 6711; + this.state = 6713; this.match(PostgreSqlParser.KW_SMALLINT); } break; case PostgreSqlParser.KW_BIGINT: this.enterOuterAlt(localContext, 4); { - this.state = 6712; + this.state = 6714; this.match(PostgreSqlParser.KW_BIGINT); } break; case PostgreSqlParser.KW_REAL: this.enterOuterAlt(localContext, 5); { - this.state = 6713; + this.state = 6715; this.match(PostgreSqlParser.KW_REAL); } break; case PostgreSqlParser.KW_FLOAT: this.enterOuterAlt(localContext, 6); { - this.state = 6714; - this.match(PostgreSqlParser.KW_FLOAT); this.state = 6716; + this.match(PostgreSqlParser.KW_FLOAT); + this.state = 6718; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { case 1: { - this.state = 6715; + this.state = 6717; this.optFloat(); } break; @@ -40885,9 +40443,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DOUBLE: this.enterOuterAlt(localContext, 7); { - this.state = 6718; + this.state = 6720; this.match(PostgreSqlParser.KW_DOUBLE); - this.state = 6719; + this.state = 6721; this.match(PostgreSqlParser.KW_PRECISION); } break; @@ -40896,7 +40454,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 8); { - this.state = 6720; + this.state = 6722; _la = this.tokenStream.LA(1); if(!(((((_la - 394)) & ~0x1F) === 0 && ((1 << (_la - 394)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -40905,12 +40463,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6722; + this.state = 6724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { case 1: { - this.state = 6721; + this.state = 6723; this.executeParamClause(); } break; @@ -40920,7 +40478,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BOOLEAN: this.enterOuterAlt(localContext, 9); { - this.state = 6724; + this.state = 6726; this.match(PostgreSqlParser.KW_BOOLEAN); } break; @@ -40948,11 +40506,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6727; + this.state = 6729; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6728; + this.state = 6730; this.match(PostgreSqlParser.Integral); - this.state = 6729; + this.state = 6731; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -40976,24 +40534,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6731; - this.match(PostgreSqlParser.KW_BIT); this.state = 6733; + this.match(PostgreSqlParser.KW_BIT); + this.state = 6735; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { case 1: { - this.state = 6732; + this.state = 6734; this.match(PostgreSqlParser.KW_VARYING); } break; } - this.state = 6736; + this.state = 6738; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 917, this.context) ) { case 1: { - this.state = 6735; + this.state = 6737; this.executeParamClause(); } break; @@ -41021,14 +40579,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6748; + this.state = 6750; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHAR: case PostgreSqlParser.KW_CHARACTER: case PostgreSqlParser.KW_NCHAR: { - this.state = 6738; + this.state = 6740; _la = this.tokenStream.LA(1); if(!(((((_la - 391)) & ~0x1F) === 0 && ((1 << (_la - 391)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -41037,12 +40595,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6740; + this.state = 6742; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 918, this.context) ) { case 1: { - this.state = 6739; + this.state = 6741; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -41051,15 +40609,15 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_VARCHAR: { - this.state = 6742; + this.state = 6744; this.match(PostgreSqlParser.KW_VARCHAR); } break; case PostgreSqlParser.KW_NATIONAL: { - this.state = 6743; + this.state = 6745; this.match(PostgreSqlParser.KW_NATIONAL); - this.state = 6744; + this.state = 6746; _la = this.tokenStream.LA(1); if(!(_la === 391 || _la === 392)) { this.errorHandler.recoverInline(this); @@ -41068,12 +40626,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6746; + this.state = 6748; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 919, this.context) ) { case 1: { - this.state = 6745; + this.state = 6747; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -41083,12 +40641,12 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6751; + this.state = 6753; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: { - this.state = 6750; + this.state = 6752; this.optFloat(); } break; @@ -41116,7 +40674,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6753; + this.state = 6755; _la = this.tokenStream.LA(1); if(!(_la === 418 || _la === 419)) { this.errorHandler.recoverInline(this); @@ -41125,793 +40683,351 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6755; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { - case 1: - { - this.state = 6754; - this.optFloat(); - } - break; - } - this.state = 6760; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { - case 1: - { - this.state = 6757; - _la = this.tokenStream.LA(1); - if(!(_la === 105 || _la === 379)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6758; - this.match(PostgreSqlParser.KW_TIME); - this.state = 6759; - this.match(PostgreSqlParser.KW_ZONE); - } - break; - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public optInterval(): OptIntervalContext { - let localContext = new OptIntervalContext(this.context, this.state); - this.enterRule(localContext, 664, PostgreSqlParser.RULE_optInterval); - try { - this.state = 6791; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_MONTH: - this.enterOuterAlt(localContext, 1); - { - this.state = 6762; - this.match(PostgreSqlParser.KW_MONTH); - } - break; - case PostgreSqlParser.KW_SECOND: - this.enterOuterAlt(localContext, 2); - { - this.state = 6763; - this.intervalSecond(); - } - break; - case PostgreSqlParser.KW_YEAR: - this.enterOuterAlt(localContext, 3); - { - this.state = 6764; - this.match(PostgreSqlParser.KW_YEAR); - this.state = 6767; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { - case 1: - { - this.state = 6765; - this.match(PostgreSqlParser.KW_TO); - this.state = 6766; - this.match(PostgreSqlParser.KW_MONTH); - } - break; - } - } - break; - case PostgreSqlParser.KW_DAY: - this.enterOuterAlt(localContext, 4); - { - this.state = 6769; - this.match(PostgreSqlParser.KW_DAY); - this.state = 6776; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 926, this.context) ) { - case 1: - { - this.state = 6770; - this.match(PostgreSqlParser.KW_TO); - this.state = 6774; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_HOUR: - { - this.state = 6771; - this.match(PostgreSqlParser.KW_HOUR); - } - break; - case PostgreSqlParser.KW_MINUTE: - { - this.state = 6772; - this.match(PostgreSqlParser.KW_MINUTE); - } - break; - case PostgreSqlParser.KW_SECOND: - { - this.state = 6773; - this.intervalSecond(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - } - } - break; - case PostgreSqlParser.KW_HOUR: - this.enterOuterAlt(localContext, 5); - { - this.state = 6778; - this.match(PostgreSqlParser.KW_HOUR); - this.state = 6784; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 928, this.context) ) { - case 1: - { - this.state = 6779; - this.match(PostgreSqlParser.KW_TO); - this.state = 6782; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_MINUTE: - { - this.state = 6780; - this.match(PostgreSqlParser.KW_MINUTE); - } - break; - case PostgreSqlParser.KW_SECOND: - { - this.state = 6781; - this.intervalSecond(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; - } - } - break; - case PostgreSqlParser.KW_MINUTE: - this.enterOuterAlt(localContext, 6); - { - this.state = 6786; - this.match(PostgreSqlParser.KW_MINUTE); - this.state = 6789; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 929, this.context) ) { - case 1: - { - this.state = 6787; - this.match(PostgreSqlParser.KW_TO); - this.state = 6788; - this.intervalSecond(); - } - break; - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public intervalSecond(): IntervalSecondContext { - let localContext = new IntervalSecondContext(this.context, this.state); - this.enterRule(localContext, 666, PostgreSqlParser.RULE_intervalSecond); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6793; - this.match(PostgreSqlParser.KW_SECOND); - this.state = 6795; + this.state = 6757; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { - case 1: - { - this.state = 6794; - this.optFloat(); - } - break; - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public comparisonOperator(): ComparisonOperatorContext { - let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 668, PostgreSqlParser.RULE_comparisonOperator); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6797; - _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public expression(): ExpressionContext { - let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 670, PostgreSqlParser.RULE_expression); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6799; - this.booleanExpression(0); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - - public booleanExpression(): BooleanExpressionContext; - public booleanExpression(_p: number): BooleanExpressionContext; - public booleanExpression(_p?: number): BooleanExpressionContext { - if (_p === undefined) { - _p = 0; - } - - let parentContext = this.context; - let parentState = this.state; - let localContext = new BooleanExpressionContext(this.context, parentState); - let previousContext = localContext; - let _startState = 672; - this.enterRecursionRule(localContext, 672, PostgreSqlParser.RULE_booleanExpression, _p); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 6808; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.Operator: - case PostgreSqlParser.KW_ARRAY: - case PostgreSqlParser.KW_CASE: - case PostgreSqlParser.KW_CAST: - case PostgreSqlParser.KW_CURRENT_CATALOG: - case PostgreSqlParser.KW_CURRENT_DATE: - case PostgreSqlParser.KW_CURRENT_ROLE: - case PostgreSqlParser.KW_CURRENT_TIME: - case PostgreSqlParser.KW_CURRENT_TIMESTAMP: - case PostgreSqlParser.KW_CURRENT_USER: - case PostgreSqlParser.KW_DEFAULT: - case PostgreSqlParser.KW_FALSE: - case PostgreSqlParser.KW_LOCALTIME: - case PostgreSqlParser.KW_LOCALTIMESTAMP: - case PostgreSqlParser.KW_NULL: - case PostgreSqlParser.KW_SESSION_USER: - case PostgreSqlParser.KW_TRUE: - case PostgreSqlParser.KW_UNIQUE: - case PostgreSqlParser.KW_USER: - case PostgreSqlParser.KW_AUTHORIZATION: - case PostgreSqlParser.KW_BINARY: - case PostgreSqlParser.KW_COLLATION: - case PostgreSqlParser.KW_CONCURRENTLY: - case PostgreSqlParser.KW_CROSS: - case PostgreSqlParser.KW_CURRENT_SCHEMA: - case PostgreSqlParser.KW_FREEZE: - case PostgreSqlParser.KW_FULL: - case PostgreSqlParser.KW_ILIKE: - case PostgreSqlParser.KW_INNER: - case PostgreSqlParser.KW_IS: - case PostgreSqlParser.KW_ISNULL: - case PostgreSqlParser.KW_JOIN: - case PostgreSqlParser.KW_LEFT: - case PostgreSqlParser.KW_LIKE: - case PostgreSqlParser.KW_NATURAL: - case PostgreSqlParser.KW_NOTNULL: - case PostgreSqlParser.KW_OUTER: - case PostgreSqlParser.KW_OVER: - case PostgreSqlParser.KW_OVERLAPS: - case PostgreSqlParser.KW_RIGHT: - case PostgreSqlParser.KW_SIMILAR: - case PostgreSqlParser.KW_VERBOSE: - case PostgreSqlParser.KW_ABORT: - case PostgreSqlParser.KW_ABSOLUTE: - case PostgreSqlParser.KW_ACCESS: - case PostgreSqlParser.KW_ACTION: - case PostgreSqlParser.KW_ADD: - case PostgreSqlParser.KW_ADMIN: - case PostgreSqlParser.KW_AFTER: - case PostgreSqlParser.KW_AGGREGATE: - case PostgreSqlParser.KW_ALSO: - case PostgreSqlParser.KW_ALTER: - case PostgreSqlParser.KW_ALWAYS: - case PostgreSqlParser.KW_ASSERTION: - case PostgreSqlParser.KW_ASSIGNMENT: - case PostgreSqlParser.KW_AT: - case PostgreSqlParser.KW_ATTRIBUTE: - case PostgreSqlParser.KW_BACKWARD: - case PostgreSqlParser.KW_BEFORE: - case PostgreSqlParser.KW_BEGIN: - case PostgreSqlParser.KW_BY: - case PostgreSqlParser.KW_CACHE: - case PostgreSqlParser.KW_CALLED: - case PostgreSqlParser.KW_CASCADE: - case PostgreSqlParser.KW_CASCADED: - case PostgreSqlParser.KW_CATALOG: - case PostgreSqlParser.KW_CHAIN: - case PostgreSqlParser.KW_CHARACTERISTICS: - case PostgreSqlParser.KW_CHECKPOINT: - case PostgreSqlParser.KW_CLASS: - case PostgreSqlParser.KW_CLOSE: - case PostgreSqlParser.KW_CLUSTER: - case PostgreSqlParser.KW_COMMENT: - case PostgreSqlParser.KW_COMMENTS: - case PostgreSqlParser.KW_COMMIT: - case PostgreSqlParser.KW_COMMITTED: - case PostgreSqlParser.KW_CONFIGURATION: - case PostgreSqlParser.KW_CONNECTION: - case PostgreSqlParser.KW_CONSTRAINTS: - case PostgreSqlParser.KW_CONTENT: - case PostgreSqlParser.KW_CONTINUE: - case PostgreSqlParser.KW_CONVERSION: - case PostgreSqlParser.KW_COPY: - case PostgreSqlParser.KW_COST: - case PostgreSqlParser.KW_CSV: - case PostgreSqlParser.KW_CURSOR: - case PostgreSqlParser.KW_CYCLE: - case PostgreSqlParser.KW_DATA: - case PostgreSqlParser.KW_DATABASE: - case PostgreSqlParser.KW_DAY: - case PostgreSqlParser.KW_DEALLOCATE: - case PostgreSqlParser.KW_DECLARE: - case PostgreSqlParser.KW_DEFAULTS: - case PostgreSqlParser.KW_DEFERRED: - case PostgreSqlParser.KW_DEFINER: - case PostgreSqlParser.KW_DELETE: - case PostgreSqlParser.KW_DELIMITER: - case PostgreSqlParser.KW_DELIMITERS: - case PostgreSqlParser.KW_DICTIONARY: - case PostgreSqlParser.KW_DISABLE: - case PostgreSqlParser.KW_DISCARD: - case PostgreSqlParser.KW_DOCUMENT: - case PostgreSqlParser.KW_DOMAIN: - case PostgreSqlParser.KW_DOUBLE: - case PostgreSqlParser.KW_DROP: - case PostgreSqlParser.KW_EACH: - case PostgreSqlParser.KW_ENABLE: - case PostgreSqlParser.KW_ENCODING: - case PostgreSqlParser.KW_ENCRYPTED: - case PostgreSqlParser.KW_ENUM: - case PostgreSqlParser.KW_ESCAPE: - case PostgreSqlParser.KW_EVENT: - case PostgreSqlParser.KW_EXCLUDE: - case PostgreSqlParser.KW_EXCLUDING: - case PostgreSqlParser.KW_EXCLUSIVE: - case PostgreSqlParser.KW_EXECUTE: - case PostgreSqlParser.KW_EXPLAIN: - case PostgreSqlParser.KW_EXTENSION: - case PostgreSqlParser.KW_EXTERNAL: - case PostgreSqlParser.KW_FAMILY: - case PostgreSqlParser.KW_FIRST: - case PostgreSqlParser.KW_FOLLOWING: - case PostgreSqlParser.KW_FORCE: - case PostgreSqlParser.KW_FORWARD: - case PostgreSqlParser.KW_FUNCTION: - case PostgreSqlParser.KW_FUNCTIONS: - case PostgreSqlParser.KW_GLOBAL: - case PostgreSqlParser.KW_GRANTED: - case PostgreSqlParser.KW_HANDLER: - case PostgreSqlParser.KW_HEADER: - case PostgreSqlParser.KW_HOLD: - case PostgreSqlParser.KW_HOUR: - case PostgreSqlParser.KW_IDENTITY: - case PostgreSqlParser.KW_IF: - case PostgreSqlParser.KW_IMMEDIATE: - case PostgreSqlParser.KW_IMMUTABLE: - case PostgreSqlParser.KW_IMPLICIT: - case PostgreSqlParser.KW_INCLUDING: - case PostgreSqlParser.KW_INCREMENT: - case PostgreSqlParser.KW_INDEX: - case PostgreSqlParser.KW_INDEXES: - case PostgreSqlParser.KW_INHERIT: - case PostgreSqlParser.KW_INHERITS: - case PostgreSqlParser.KW_INLINE: - case PostgreSqlParser.KW_INSENSITIVE: - case PostgreSqlParser.KW_INSERT: - case PostgreSqlParser.KW_INSTEAD: - case PostgreSqlParser.KW_INVOKER: - case PostgreSqlParser.KW_ISOLATION: - case PostgreSqlParser.KW_KEY: - case PostgreSqlParser.KW_LABEL: - case PostgreSqlParser.KW_LANGUAGE: - case PostgreSqlParser.KW_LARGE: - case PostgreSqlParser.KW_LAST: - case PostgreSqlParser.KW_LEAKPROOF: - case PostgreSqlParser.KW_LEVEL: - case PostgreSqlParser.KW_LISTEN: - case PostgreSqlParser.KW_LOAD: - case PostgreSqlParser.KW_LOCAL: - case PostgreSqlParser.KW_LOCATION: - case PostgreSqlParser.KW_LOCK: - case PostgreSqlParser.KW_MAPPING: - case PostgreSqlParser.KW_MATCH: - case PostgreSqlParser.KW_MATERIALIZED: - case PostgreSqlParser.KW_MAXVALUE: - case PostgreSqlParser.KW_MINUTE: - case PostgreSqlParser.KW_MINVALUE: - case PostgreSqlParser.KW_MODE: - case PostgreSqlParser.KW_MONTH: - case PostgreSqlParser.KW_MOVE: - case PostgreSqlParser.KW_NAME: - case PostgreSqlParser.KW_NAMES: - case PostgreSqlParser.KW_NEXT: - case PostgreSqlParser.KW_NO: - case PostgreSqlParser.KW_NOTHING: - case PostgreSqlParser.KW_NOTIFY: - case PostgreSqlParser.KW_NOWAIT: - case PostgreSqlParser.KW_NULLS: - case PostgreSqlParser.KW_OBJECT: - case PostgreSqlParser.KW_OF: - case PostgreSqlParser.KW_OFF: - case PostgreSqlParser.KW_OIDS: - case PostgreSqlParser.KW_OPERATOR: - case PostgreSqlParser.KW_OPTION: - case PostgreSqlParser.KW_OPTIONS: - case PostgreSqlParser.KW_OWNED: - case PostgreSqlParser.KW_OWNER: - case PostgreSqlParser.KW_PARSER: - case PostgreSqlParser.KW_PARTIAL: - case PostgreSqlParser.KW_PARTITION: - case PostgreSqlParser.KW_PASSING: - case PostgreSqlParser.KW_PASSWORD: - case PostgreSqlParser.KW_PLANS: - case PostgreSqlParser.KW_PRECEDING: - case PostgreSqlParser.KW_PREPARE: - case PostgreSqlParser.KW_PREPARED: - case PostgreSqlParser.KW_PRESERVE: - case PostgreSqlParser.KW_PRIOR: - case PostgreSqlParser.KW_PRIVILEGES: - case PostgreSqlParser.KW_PROCEDURAL: - case PostgreSqlParser.KW_PROCEDURE: - case PostgreSqlParser.KW_PROGRAM: - case PostgreSqlParser.KW_QUOTE: - case PostgreSqlParser.KW_RANGE: - case PostgreSqlParser.KW_READ: - case PostgreSqlParser.KW_REASSIGN: - case PostgreSqlParser.KW_RECHECK: - case PostgreSqlParser.KW_RECURSIVE: - case PostgreSqlParser.KW_REF: - case PostgreSqlParser.KW_REFRESH: - case PostgreSqlParser.KW_REINDEX: - case PostgreSqlParser.KW_RELATIVE: - case PostgreSqlParser.KW_RELEASE: - case PostgreSqlParser.KW_RENAME: - case PostgreSqlParser.KW_REPEATABLE: - case PostgreSqlParser.KW_REPLACE: - case PostgreSqlParser.KW_REPLICA: - case PostgreSqlParser.KW_RESET: - case PostgreSqlParser.KW_RESTART: - case PostgreSqlParser.KW_RESTRICT: - case PostgreSqlParser.KW_RETURNS: - case PostgreSqlParser.KW_REVOKE: - case PostgreSqlParser.KW_ROLE: - case PostgreSqlParser.KW_ROLLBACK: - case PostgreSqlParser.KW_ROWS: - case PostgreSqlParser.KW_RULE: - case PostgreSqlParser.KW_SAVEPOINT: - case PostgreSqlParser.KW_SCHEMA: - case PostgreSqlParser.KW_SCROLL: - case PostgreSqlParser.KW_SEARCH: - case PostgreSqlParser.KW_SECOND: - case PostgreSqlParser.KW_SECURITY: - case PostgreSqlParser.KW_SEQUENCE: - case PostgreSqlParser.KW_SEQUENCES: - case PostgreSqlParser.KW_SERIALIZABLE: - case PostgreSqlParser.KW_SERVER: - case PostgreSqlParser.KW_SESSION: - case PostgreSqlParser.KW_SET: - case PostgreSqlParser.KW_SHARE: - case PostgreSqlParser.KW_SHOW: - case PostgreSqlParser.KW_SIMPLE: - case PostgreSqlParser.KW_SNAPSHOT: - case PostgreSqlParser.KW_STABLE: - case PostgreSqlParser.KW_STANDALONE: - case PostgreSqlParser.KW_START: - case PostgreSqlParser.KW_STATEMENT: - case PostgreSqlParser.KW_STATISTICS: - case PostgreSqlParser.KW_STDIN: - case PostgreSqlParser.KW_STDOUT: - case PostgreSqlParser.KW_STORAGE: - case PostgreSqlParser.KW_STRICT: - case PostgreSqlParser.KW_STRIP: - case PostgreSqlParser.KW_SYSID: - case PostgreSqlParser.KW_SYSTEM: - case PostgreSqlParser.KW_TABLES: - case PostgreSqlParser.KW_TABLESPACE: - case PostgreSqlParser.KW_TEMP: - case PostgreSqlParser.KW_TEMPLATE: - case PostgreSqlParser.KW_TEMPORARY: - case PostgreSqlParser.KW_TEXT: - case PostgreSqlParser.KW_TRANSACTION: - case PostgreSqlParser.KW_TRIGGER: - case PostgreSqlParser.KW_TRUNCATE: - case PostgreSqlParser.KW_TRUSTED: - case PostgreSqlParser.KW_TYPE: - case PostgreSqlParser.KW_TYPES: - case PostgreSqlParser.KW_UNBOUNDED: - case PostgreSqlParser.KW_UNCOMMITTED: - case PostgreSqlParser.KW_UNENCRYPTED: - case PostgreSqlParser.KW_UNKNOWN: - case PostgreSqlParser.KW_UNLISTEN: - case PostgreSqlParser.KW_UNLOGGED: - case PostgreSqlParser.KW_UNTIL: - case PostgreSqlParser.KW_UPDATE: - case PostgreSqlParser.KW_VACUUM: - case PostgreSqlParser.KW_VALID: - case PostgreSqlParser.KW_VALIDATE: - case PostgreSqlParser.KW_VALIDATOR: - case PostgreSqlParser.KW_VARYING: - case PostgreSqlParser.KW_VERSION: - case PostgreSqlParser.KW_VIEW: - case PostgreSqlParser.KW_VOLATILE: - case PostgreSqlParser.KW_WHITESPACE: - case PostgreSqlParser.KW_WITHOUT: - case PostgreSqlParser.KW_WORK: - case PostgreSqlParser.KW_WRAPPER: - case PostgreSqlParser.KW_WRITE: - case PostgreSqlParser.KW_XML: - case PostgreSqlParser.KW_YEAR: - case PostgreSqlParser.KW_YES: - case PostgreSqlParser.KW_ZONE: - case PostgreSqlParser.KW_BETWEEN: - case PostgreSqlParser.KW_BIGINT: - case PostgreSqlParser.KW_BIT: - case PostgreSqlParser.KW_BOOLEAN: - case PostgreSqlParser.KW_CHAR: - case PostgreSqlParser.KW_CHARACTER: - case PostgreSqlParser.KW_COALESCE: - case PostgreSqlParser.KW_DEC: - case PostgreSqlParser.KW_DECIMAL: - case PostgreSqlParser.KW_EXISTS: - case PostgreSqlParser.KW_EXTRACT: - case PostgreSqlParser.KW_FLOAT: - case PostgreSqlParser.KW_GREATEST: - case PostgreSqlParser.KW_INOUT: - case PostgreSqlParser.KW_INT: - case PostgreSqlParser.KW_INTEGER: - case PostgreSqlParser.KW_INTERVAL: - case PostgreSqlParser.KW_LEAST: - case PostgreSqlParser.KW_NATIONAL: - case PostgreSqlParser.KW_NCHAR: - case PostgreSqlParser.KW_NONE: - case PostgreSqlParser.KW_NULLIF: - case PostgreSqlParser.KW_NUMERIC: - case PostgreSqlParser.KW_OVERLAY: - case PostgreSqlParser.KW_POSITION: - case PostgreSqlParser.KW_PRECISION: - case PostgreSqlParser.KW_REAL: - case PostgreSqlParser.KW_ROW: - case PostgreSqlParser.KW_SETOF: - case PostgreSqlParser.KW_SMALLINT: - case PostgreSqlParser.KW_SUBSTRING: - case PostgreSqlParser.KW_TIME: - case PostgreSqlParser.KW_TIMESTAMP: - case PostgreSqlParser.KW_TREAT: - case PostgreSqlParser.KW_TRIM: - case PostgreSqlParser.KW_VALUES: - case PostgreSqlParser.KW_VARCHAR: - case PostgreSqlParser.KW_XMLATTRIBUTES: - case PostgreSqlParser.KW_XMLCONCAT: - case PostgreSqlParser.KW_XMLELEMENT: - case PostgreSqlParser.KW_XMLEXISTS: - case PostgreSqlParser.KW_XMLFOREST: - case PostgreSqlParser.KW_XMLPARSE: - case PostgreSqlParser.KW_XMLPI: - case PostgreSqlParser.KW_XMLROOT: - case PostgreSqlParser.KW_XMLSERIALIZE: - case PostgreSqlParser.KW_CALL: - case PostgreSqlParser.KW_CURRENT: - case PostgreSqlParser.KW_ATTACH: - case PostgreSqlParser.KW_DETACH: - case PostgreSqlParser.KW_EXPRESSION: - case PostgreSqlParser.KW_GENERATED: - case PostgreSqlParser.KW_LOGGED: - case PostgreSqlParser.KW_STORED: - case PostgreSqlParser.KW_INCLUDE: - case PostgreSqlParser.KW_ROUTINE: - case PostgreSqlParser.KW_TRANSFORM: - case PostgreSqlParser.KW_IMPORT: - case PostgreSqlParser.KW_POLICY: - case PostgreSqlParser.KW_METHOD: - case PostgreSqlParser.KW_REFERENCING: - case PostgreSqlParser.KW_NEW: - case PostgreSqlParser.KW_OLD: - case PostgreSqlParser.KW_VALUE: - case PostgreSqlParser.KW_SUBSCRIPTION: - case PostgreSqlParser.KW_PUBLICATION: - case PostgreSqlParser.KW_OUT: - case PostgreSqlParser.KW_ROUTINES: - case PostgreSqlParser.KW_SCHEMAS: - case PostgreSqlParser.KW_PROCEDURES: - case PostgreSqlParser.KW_INPUT: - case PostgreSqlParser.KW_SUPPORT: - case PostgreSqlParser.KW_PARALLEL: - case PostgreSqlParser.KW_SQL: - case PostgreSqlParser.KW_DEPENDS: - case PostgreSqlParser.KW_OVERRIDING: - case PostgreSqlParser.KW_CONFLICT: - case PostgreSqlParser.KW_SKIP: - case PostgreSqlParser.KW_LOCKED: - case PostgreSqlParser.KW_TIES: - case PostgreSqlParser.KW_ROLLUP: - case PostgreSqlParser.KW_CUBE: - case PostgreSqlParser.KW_GROUPING: - case PostgreSqlParser.KW_SETS: - case PostgreSqlParser.KW_TABLESAMPLE: - case PostgreSqlParser.KW_ORDINALITY: - case PostgreSqlParser.KW_XMLTABLE: - case PostgreSqlParser.KW_COLUMNS: - case PostgreSqlParser.KW_XMLNAMESPACES: - case PostgreSqlParser.KW_ROWTYPE: - case PostgreSqlParser.KW_NORMALIZED: - case PostgreSqlParser.KW_WITHIN: - case PostgreSqlParser.KW_FILTER: - case PostgreSqlParser.KW_GROUPS: - case PostgreSqlParser.KW_OTHERS: - case PostgreSqlParser.KW_NFC: - case PostgreSqlParser.KW_NFD: - case PostgreSqlParser.KW_NFKC: - case PostgreSqlParser.KW_NFKD: - case PostgreSqlParser.KW_UESCAPE: - case PostgreSqlParser.KW_VIEWS: - case PostgreSqlParser.KW_NORMALIZE: - case PostgreSqlParser.KW_DUMP: - case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: - case PostgreSqlParser.KW_VARIABLE_CONFLICT: - case PostgreSqlParser.KW_ERROR: - case PostgreSqlParser.KW_USE_VARIABLE: - case PostgreSqlParser.KW_USE_COLUMN: - case PostgreSqlParser.KW_ALIAS: - case PostgreSqlParser.KW_CONSTANT: - case PostgreSqlParser.KW_PERFORM: - case PostgreSqlParser.KW_GET: - case PostgreSqlParser.KW_DIAGNOSTICS: - case PostgreSqlParser.KW_STACKED: - case PostgreSqlParser.KW_ELSIF: - case PostgreSqlParser.KW_REVERSE: - case PostgreSqlParser.KW_SLICE: - case PostgreSqlParser.KW_EXIT: - case PostgreSqlParser.KW_RETURN: - case PostgreSqlParser.KW_QUERY: - case PostgreSqlParser.KW_RAISE: - case PostgreSqlParser.KW_SQLSTATE: - case PostgreSqlParser.KW_DEBUG: - case PostgreSqlParser.KW_LOG: - case PostgreSqlParser.KW_INFO: - case PostgreSqlParser.KW_NOTICE: - case PostgreSqlParser.KW_WARNING: - case PostgreSqlParser.KW_EXCEPTION: - case PostgreSqlParser.KW_ASSERT: - case PostgreSqlParser.KW_OPEN: - case PostgreSqlParser.KW_PUBLIC: - case PostgreSqlParser.KW_SKIP_LOCKED: - case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: + switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { + case 1: + { + this.state = 6756; + this.optFloat(); + } + break; + } + this.state = 6762; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { + case 1: + { + this.state = 6759; + _la = this.tokenStream.LA(1); + if(!(_la === 105 || _la === 379)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6760; + this.match(PostgreSqlParser.KW_TIME); + this.state = 6761; + this.match(PostgreSqlParser.KW_ZONE); + } + break; + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public optInterval(): OptIntervalContext { + let localContext = new OptIntervalContext(this.context, this.state); + this.enterRule(localContext, 664, PostgreSqlParser.RULE_optInterval); + try { + this.state = 6793; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_MONTH: + this.enterOuterAlt(localContext, 1); + { + this.state = 6764; + this.match(PostgreSqlParser.KW_MONTH); + } + break; + case PostgreSqlParser.KW_SECOND: + this.enterOuterAlt(localContext, 2); + { + this.state = 6765; + this.intervalSecond(); + } + break; + case PostgreSqlParser.KW_YEAR: + this.enterOuterAlt(localContext, 3); + { + this.state = 6766; + this.match(PostgreSqlParser.KW_YEAR); + this.state = 6769; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { + case 1: + { + this.state = 6767; + this.match(PostgreSqlParser.KW_TO); + this.state = 6768; + this.match(PostgreSqlParser.KW_MONTH); + } + break; + } + } + break; + case PostgreSqlParser.KW_DAY: + this.enterOuterAlt(localContext, 4); + { + this.state = 6771; + this.match(PostgreSqlParser.KW_DAY); + this.state = 6778; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 926, this.context) ) { + case 1: + { + this.state = 6772; + this.match(PostgreSqlParser.KW_TO); + this.state = 6776; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_HOUR: + { + this.state = 6773; + this.match(PostgreSqlParser.KW_HOUR); + } + break; + case PostgreSqlParser.KW_MINUTE: + { + this.state = 6774; + this.match(PostgreSqlParser.KW_MINUTE); + } + break; + case PostgreSqlParser.KW_SECOND: + { + this.state = 6775; + this.intervalSecond(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + } + } + break; + case PostgreSqlParser.KW_HOUR: + this.enterOuterAlt(localContext, 5); + { + this.state = 6780; + this.match(PostgreSqlParser.KW_HOUR); + this.state = 6786; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 928, this.context) ) { + case 1: + { + this.state = 6781; + this.match(PostgreSqlParser.KW_TO); + this.state = 6784; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_MINUTE: + { + this.state = 6782; + this.match(PostgreSqlParser.KW_MINUTE); + } + break; + case PostgreSqlParser.KW_SECOND: + { + this.state = 6783; + this.intervalSecond(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + } + } + break; + case PostgreSqlParser.KW_MINUTE: + this.enterOuterAlt(localContext, 6); + { + this.state = 6788; + this.match(PostgreSqlParser.KW_MINUTE); + this.state = 6791; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 929, this.context) ) { + case 1: + { + this.state = 6789; + this.match(PostgreSqlParser.KW_TO); + this.state = 6790; + this.intervalSecond(); + } + break; + } + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public intervalSecond(): IntervalSecondContext { + let localContext = new IntervalSecondContext(this.context, this.state); + this.enterRule(localContext, 666, PostgreSqlParser.RULE_intervalSecond); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6795; + this.match(PostgreSqlParser.KW_SECOND); + this.state = 6797; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { + case 1: + { + this.state = 6796; + this.optFloat(); + } + break; + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public comparisonOperator(): ComparisonOperatorContext { + let localContext = new ComparisonOperatorContext(this.context, this.state); + this.enterRule(localContext, 668, PostgreSqlParser.RULE_comparisonOperator); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6799; + _la = this.tokenStream.LA(1); + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public expression(): ExpressionContext { + let localContext = new ExpressionContext(this.context, this.state); + this.enterRule(localContext, 670, PostgreSqlParser.RULE_expression); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6801; + this.booleanExpression(0); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + + public booleanExpression(): BooleanExpressionContext; + public booleanExpression(_p: number): BooleanExpressionContext; + public booleanExpression(_p?: number): BooleanExpressionContext { + if (_p === undefined) { + _p = 0; + } + + let parentContext = this.context; + let parentState = this.state; + let localContext = new BooleanExpressionContext(this.context, parentState); + let previousContext = localContext; + let _startState = 672; + this.enterRecursionRule(localContext, 672, PostgreSqlParser.RULE_booleanExpression, _p); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 6810; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 933, this.context) ) { + case 1: { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6802; - (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); this.state = 6804; + (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); + this.state = 6806; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 932, this.context) ) { case 1: { - this.state = 6803; + this.state = 6805; this.predicate((localContext as PredicatedContext)._valueExpression); } break; } } break; - case PostgreSqlParser.KW_NOT: + case 2: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6806; + this.state = 6808; this.match(PostgreSqlParser.KW_NOT); - this.state = 6807; + this.state = 6809; this.booleanExpression(3); } break; - default: - throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 6818; + this.state = 6820; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -41921,7 +41037,7 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 6816; + this.state = 6818; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 934, this.context) ) { case 1: @@ -41929,13 +41045,13 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6810; + this.state = 6812; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6811; + this.state = 6813; (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_AND); - this.state = 6812; + this.state = 6814; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -41944,20 +41060,20 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6813; + this.state = 6815; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 6814; + this.state = 6816; (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_OR); - this.state = 6815; + this.state = 6817; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 6820; + this.state = 6822; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); } @@ -41982,16 +41098,16 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 674, PostgreSqlParser.RULE_predicate); let _la: number; try { - this.state = 6892; + this.state = 6894; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6821; + this.state = 6823; this.comparisonOperator(); - this.state = 6822; + this.state = 6824; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -41999,28 +41115,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6824; + this.state = 6826; this.comparisonOperator(); - this.state = 6825; + this.state = 6827; this.subqueryOperator(); - this.state = 6826; + this.state = 6828; this.subType(); - this.state = 6832; + this.state = 6834; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { case 1: { - this.state = 6827; + this.state = 6829; this.selectWithParens(); } break; case 2: { - this.state = 6828; + this.state = 6830; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6829; + this.state = 6831; this.expression(); - this.state = 6830; + this.state = 6832; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -42031,23 +41147,23 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6835; + this.state = 6837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6834; + this.state = 6836; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6837; + this.state = 6839; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6838; + this.state = 6840; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 6839; + this.state = 6841; this.match(PostgreSqlParser.KW_AND); - this.state = 6840; + this.state = 6842; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -42055,39 +41171,39 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6843; + this.state = 6845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6842; + this.state = 6844; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6845; + this.state = 6847; this.match(PostgreSqlParser.KW_IN); - this.state = 6846; + this.state = 6848; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6847; + this.state = 6849; this.expression(); - this.state = 6852; + this.state = 6854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6848; + this.state = 6850; this.match(PostgreSqlParser.COMMA); - this.state = 6849; + this.state = 6851; this.expression(); } } - this.state = 6854; + this.state = 6856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6855; + this.state = 6857; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -42095,19 +41211,19 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6858; + this.state = 6860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6857; + this.state = 6859; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6860; + this.state = 6862; this.match(PostgreSqlParser.KW_IN); - this.state = 6861; + this.state = 6863; this.selectWithParens(); } break; @@ -42115,68 +41231,68 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6863; + this.state = 6865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6862; + this.state = 6864; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6873; + this.state = 6875; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIKE: { - this.state = 6865; + this.state = 6867; this.match(PostgreSqlParser.KW_LIKE); } break; case PostgreSqlParser.KW_ILIKE: { - this.state = 6866; + this.state = 6868; this.match(PostgreSqlParser.KW_ILIKE); } break; case PostgreSqlParser.KW_SIMILAR: { - this.state = 6867; + this.state = 6869; this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 6868; + this.state = 6870; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_BETWEEN: { - this.state = 6869; - this.match(PostgreSqlParser.KW_BETWEEN); this.state = 6871; + this.match(PostgreSqlParser.KW_BETWEEN); + this.state = 6873; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 91) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { + case 1: { - this.state = 6870; + this.state = 6872; this.match(PostgreSqlParser.KW_SYMMETRIC); } + break; } - } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6875; + this.state = 6877; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 6878; + this.state = 6880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { case 1: { - this.state = 6876; + this.state = 6878; this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 6877; + this.state = 6879; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -42187,19 +41303,19 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6880; - this.match(PostgreSqlParser.KW_IS); this.state = 6882; + this.match(PostgreSqlParser.KW_IS); + this.state = 6884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6881; + this.state = 6883; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6884; + this.state = 6886; this.match(PostgreSqlParser.KW_NULL); } break; @@ -42207,23 +41323,23 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6885; - this.match(PostgreSqlParser.KW_IS); this.state = 6887; + this.match(PostgreSqlParser.KW_IS); + this.state = 6889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6886; + this.state = 6888; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6889; + this.state = 6891; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6890; + this.state = 6892; this.match(PostgreSqlParser.KW_FROM); - this.state = 6891; + this.state = 6893; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -42262,7 +41378,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6898; + this.state = 6900; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 948, this.context) ) { case 1: @@ -42271,7 +41387,7 @@ export class PostgreSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 6895; + this.state = 6897; this.primaryExpression(0); } break; @@ -42280,7 +41396,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6896; + this.state = 6898; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { @@ -42290,13 +41406,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6897; + this.state = 6899; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 6916; + this.state = 6918; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42306,7 +41422,7 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 6914; + this.state = 6916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { case 1: @@ -42314,11 +41430,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6900; + this.state = 6902; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 6901; + this.state = 6903; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { @@ -42328,7 +41444,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6902; + this.state = 6904; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -42337,11 +41453,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6903; + this.state = 6905; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6904; + this.state = 6906; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { @@ -42351,7 +41467,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6905; + this.state = 6907; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -42360,13 +41476,13 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6906; + this.state = 6908; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 6907; + this.state = 6909; this.match(PostgreSqlParser.CARET); - this.state = 6908; + this.state = 6910; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -42374,24 +41490,24 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6909; + this.state = 6911; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 6910; + this.state = 6912; this.match(PostgreSqlParser.KW_AT); - this.state = 6911; + this.state = 6913; this.match(PostgreSqlParser.KW_TIME); - this.state = 6912; + this.state = 6914; this.match(PostgreSqlParser.KW_ZONE); - this.state = 6913; + this.state = 6915; this.expression(); } break; } } } - this.state = 6918; + this.state = 6920; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); } @@ -42430,12 +41546,12 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7007; + this.state = 7009; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 961, this.context) ) { case 1: { - this.state = 6920; + this.state = 6922; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -42444,26 +41560,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6921; + this.state = 6923; this.selectWithParens(); } break; case 2: { - this.state = 6922; + this.state = 6924; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6925; + this.state = 6927; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 6923; + this.state = 6925; this.selectWithParens(); } break; case PostgreSqlParser.OPEN_BRACKET: { - this.state = 6924; + this.state = 6926; this.arrayExpr(); } break; @@ -42474,49 +41590,49 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 6927; + this.state = 6929; this.match(PostgreSqlParser.PARAM); - this.state = 6928; + this.state = 6930; this.optIndirection(); } break; case 4: { - this.state = 6929; + this.state = 6931; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6930; + this.state = 6932; this.executeParamClause(); } break; case 5: { - this.state = 6931; + this.state = 6933; this.match(PostgreSqlParser.Integral); } break; case 6: { - this.state = 6932; + this.state = 6934; this.match(PostgreSqlParser.Numeric); } break; case 7: { - this.state = 6933; + this.state = 6935; this.match(PostgreSqlParser.BinaryStringConstant); } break; case 8: { - this.state = 6934; + this.state = 6936; this.match(PostgreSqlParser.HexadecimalStringConstant); } break; case 9: { - this.state = 6935; + this.state = 6937; this.functionName(); - this.state = 6945; + this.state = 6947; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -42524,29 +41640,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6936; + this.state = 6938; this.stringConst(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6937; + this.state = 6939; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6938; - this.funcArgList(); this.state = 6940; + this.funcArgList(); + this.state = 6942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6939; + this.state = 6941; this.sortClause(); } } - this.state = 6942; + this.state = 6944; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6943; + this.state = 6945; this.stringConst(); } break; @@ -42557,25 +41673,25 @@ export class PostgreSqlParser extends SQLParserBase { break; case 10: { - this.state = 6948; + this.state = 6950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190 || ((((_la - 388)) & ~0x1F) === 0 && ((1 << (_la - 388)) & 3525731551) !== 0) || _la === 423) { { - this.state = 6947; + this.state = 6949; this.constTypeName(); } } - this.state = 6950; + this.state = 6952; this.stringConst(); } break; case 11: { - this.state = 6951; + this.state = 6953; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6959; + this.state = 6961; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -42583,14 +41699,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6952; - this.stringConst(); this.state = 6954; + this.stringConst(); + this.state = 6956; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 6953; + this.state = 6955; this.optInterval(); } break; @@ -42599,9 +41715,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6956; + this.state = 6958; this.optFloat(); - this.state = 6957; + this.state = 6959; this.stringConst(); } break; @@ -42612,100 +41728,100 @@ export class PostgreSqlParser extends SQLParserBase { break; case 12: { - this.state = 6961; + this.state = 6963; this.match(PostgreSqlParser.KW_TRUE); } break; case 13: { - this.state = 6962; + this.state = 6964; this.match(PostgreSqlParser.KW_FALSE); } break; case 14: { - this.state = 6963; + this.state = 6965; this.match(PostgreSqlParser.KW_NULL); } break; case 15: { - this.state = 6964; + this.state = 6966; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case 16: { - this.state = 6965; + this.state = 6967; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6966; + this.state = 6968; localContext._a_expr_in_parens = this.expression(); - this.state = 6967; + this.state = 6969; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6968; + this.state = 6970; this.optIndirection(); } break; case 17: { - this.state = 6970; - this.match(PostgreSqlParser.KW_CASE); this.state = 6972; + this.match(PostgreSqlParser.KW_CASE); + this.state = 6974; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { + case 1: { - this.state = 6971; + this.state = 6973; this.expression(); } + break; } - - this.state = 6975; + this.state = 6977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6974; + this.state = 6976; this.when_clause(); } } - this.state = 6977; + this.state = 6979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 6981; + this.state = 6983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 6979; + this.state = 6981; this.match(PostgreSqlParser.KW_ELSE); - this.state = 6980; + this.state = 6982; this.expression(); } } - this.state = 6983; + this.state = 6985; this.match(PostgreSqlParser.KW_END); } break; case 18: { - this.state = 6985; + this.state = 6987; this.func_expr(); } break; case 19: { - this.state = 6986; - this.selectWithParens(); this.state = 6988; + this.selectWithParens(); + this.state = 6990; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 6987; + this.state = 6989; this.indirection(); } break; @@ -42714,43 +41830,43 @@ export class PostgreSqlParser extends SQLParserBase { break; case 20: { - this.state = 6990; + this.state = 6992; this.explicitRow(); } break; case 21: { - this.state = 6991; + this.state = 6993; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6992; + this.state = 6994; this.expression(); - this.state = 6993; + this.state = 6995; this.match(PostgreSqlParser.COMMA); - this.state = 6994; + this.state = 6996; this.exprList(); - this.state = 6995; + this.state = 6997; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 22: { - this.state = 6997; + this.state = 6999; this.row(); - this.state = 6998; + this.state = 7000; this.match(PostgreSqlParser.KW_OVERLAPS); - this.state = 6999; + this.state = 7001; this.row(); } break; case 23: { - this.state = 7001; + this.state = 7003; this.columnNamePath(); } break; case 24: { - this.state = 7002; + this.state = 7004; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -42759,21 +41875,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7003; + this.state = 7005; this.primaryExpression(5); } break; case 25: { - this.state = 7004; + this.state = 7006; this.qualOp(); - this.state = 7005; + this.state = 7007; this.primaryExpression(2); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7036; + this.state = 7038; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42783,20 +41899,20 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7034; + this.state = 7036; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7009; + this.state = 7011; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7010; + this.state = 7012; this.mathOp(); - this.state = 7011; + this.state = 7013; this.primaryExpression(4); } break; @@ -42804,13 +41920,13 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7013; + this.state = 7015; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7014; + this.state = 7016; this.match(PostgreSqlParser.TYPECAST); - this.state = 7015; + this.state = 7017; this.typename(); } break; @@ -42818,18 +41934,18 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7016; + this.state = 7018; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7017; - this.qualOp(); this.state = 7019; + this.qualOp(); + this.state = 7021; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 7018; + this.state = 7020; this.primaryExpression(0); } break; @@ -42840,46 +41956,46 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7021; + this.state = 7023; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 7022; - this.match(PostgreSqlParser.KW_IS); this.state = 7024; + this.match(PostgreSqlParser.KW_IS); + this.state = 7026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7023; + this.state = 7025; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7032; + this.state = 7034; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DISTINCT: { - this.state = 7026; + this.state = 7028; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 7027; + this.state = 7029; this.match(PostgreSqlParser.KW_FROM); - this.state = 7028; + this.state = 7030; this.primaryExpression(0); } break; case PostgreSqlParser.KW_OF: { - this.state = 7029; + this.state = 7031; this.match(PostgreSqlParser.KW_OF); - this.state = 7030; + this.state = 7032; this.prepTypeClause(); } break; case PostgreSqlParser.KW_DOCUMENT: { - this.state = 7031; + this.state = 7033; this.match(PostgreSqlParser.KW_DOCUMENT); } break; @@ -42891,7 +42007,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 7038; + this.state = 7040; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); } @@ -42918,37 +42034,37 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7039; + this.state = 7041; this.functionName(); - this.state = 7040; + this.state = 7042; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7061; + this.state = 7063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 971, this.context) ) { case 1: { - this.state = 7041; + this.state = 7043; this.funcArgList(); - this.state = 7045; + this.state = 7047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7042; + this.state = 7044; this.match(PostgreSqlParser.COMMA); - this.state = 7043; + this.state = 7045; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7044; + this.state = 7046; this.funcArgExpr(); } } - this.state = 7048; + this.state = 7050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7047; + this.state = 7049; this.sortClause(); } } @@ -42957,16 +42073,16 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7050; + this.state = 7052; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7051; - this.funcArgExpr(); this.state = 7053; + this.funcArgExpr(); + this.state = 7055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7052; + this.state = 7054; this.sortClause(); } } @@ -42975,7 +42091,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7055; + this.state = 7057; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -42984,14 +42100,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7056; - this.funcArgList(); this.state = 7058; + this.funcArgList(); + this.state = 7060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7057; + this.state = 7059; this.sortClause(); } } @@ -43000,12 +42116,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 4: { - this.state = 7060; + this.state = 7062; this.match(PostgreSqlParser.STAR); } break; } - this.state = 7063; + this.state = 7065; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -43027,63 +42143,63 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Func_exprContext(this.context, this.state); this.enterRule(localContext, 682, PostgreSqlParser.RULE_func_expr); try { - this.state = 7090; + this.state = 7092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7065; + this.state = 7067; this.funcApplication(); - this.state = 7072; + this.state = 7074; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 7066; + this.state = 7068; this.match(PostgreSqlParser.KW_WITHIN); - this.state = 7067; + this.state = 7069; this.match(PostgreSqlParser.KW_GROUP); - this.state = 7068; + this.state = 7070; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7069; + this.state = 7071; this.sortClause(); - this.state = 7070; + this.state = 7072; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7080; + this.state = 7082; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 7074; + this.state = 7076; this.match(PostgreSqlParser.KW_FILTER); - this.state = 7075; + this.state = 7077; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7076; + this.state = 7078; this.match(PostgreSqlParser.KW_WHERE); - this.state = 7077; + this.state = 7079; this.expression(); - this.state = 7078; + this.state = 7080; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7087; + this.state = 7089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { case 1: { - this.state = 7082; + this.state = 7084; this.match(PostgreSqlParser.KW_OVER); - this.state = 7085; + this.state = 7087; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7083; + this.state = 7085; this.windowSpecification(); } break; @@ -43482,7 +42598,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7084; + this.state = 7086; this.colId(); } break; @@ -43497,7 +42613,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7089; + this.state = 7091; this.funcExprCommonSubExpr(); } break; @@ -43521,20 +42637,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FuncExprWindowlessContext(this.context, this.state); this.enterRule(localContext, 684, PostgreSqlParser.RULE_funcExprWindowless); try { - this.state = 7094; + this.state = 7096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7092; + this.state = 7094; this.funcApplication(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7093; + this.state = 7095; this.funcExprCommonSubExpr(); } break; @@ -43559,28 +42675,28 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 686, PostgreSqlParser.RULE_funcExprCommonSubExpr); let _la: number; try { - this.state = 7270; + this.state = 7272; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 1); { - this.state = 7096; + this.state = 7098; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 7097; + this.state = 7099; this.match(PostgreSqlParser.KW_FOR); - this.state = 7098; + this.state = 7100; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7099; + this.state = 7101; this.expression(); - this.state = 7100; + this.state = 7102; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 7102; + this.state = 7104; this.match(PostgreSqlParser.KW_CURRENT_DATE); } break; @@ -43590,7 +42706,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 7103; + this.state = 7105; _la = this.tokenStream.LA(1); if(!(((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 100663299) !== 0))) { this.errorHandler.recoverInline(this); @@ -43599,12 +42715,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7105; + this.state = 7107; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 7104; + this.state = 7106; this.optFloat(); } break; @@ -43614,42 +42730,42 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 4); { - this.state = 7107; + this.state = 7109; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case PostgreSqlParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 5); { - this.state = 7108; + this.state = 7110; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case PostgreSqlParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 6); { - this.state = 7109; + this.state = 7111; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case PostgreSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 7110; + this.state = 7112; this.match(PostgreSqlParser.KW_USER); } break; case PostgreSqlParser.KW_CURRENT_CATALOG: this.enterOuterAlt(localContext, 8); { - this.state = 7111; + this.state = 7113; this.match(PostgreSqlParser.KW_CURRENT_CATALOG); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: this.enterOuterAlt(localContext, 9); { - this.state = 7112; + this.state = 7114; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -43657,7 +42773,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TREAT: this.enterOuterAlt(localContext, 10); { - this.state = 7113; + this.state = 7115; _la = this.tokenStream.LA(1); if(!(_la === 41 || _la === 420)) { this.errorHandler.recoverInline(this); @@ -43666,162 +42782,162 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7114; + this.state = 7116; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7115; + this.state = 7117; this.expression(); - this.state = 7116; + this.state = 7118; this.match(PostgreSqlParser.KW_AS); - this.state = 7117; + this.state = 7119; this.typename(); - this.state = 7118; + this.state = 7120; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_EXTRACT: this.enterOuterAlt(localContext, 11); { - this.state = 7120; + this.state = 7122; this.match(PostgreSqlParser.KW_EXTRACT); - this.state = 7121; + this.state = 7123; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7126; + this.state = 7128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7122; + this.state = 7124; this.extractArg(); - this.state = 7123; + this.state = 7125; this.match(PostgreSqlParser.KW_FROM); - this.state = 7124; + this.state = 7126; this.expression(); } } - this.state = 7128; + this.state = 7130; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NORMALIZE: this.enterOuterAlt(localContext, 12); { - this.state = 7129; + this.state = 7131; this.match(PostgreSqlParser.KW_NORMALIZE); - this.state = 7130; + this.state = 7132; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7131; + this.state = 7133; this.expression(); - this.state = 7134; + this.state = 7136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7132; + this.state = 7134; this.match(PostgreSqlParser.COMMA); - this.state = 7133; + this.state = 7135; this.unicodeNormalForm(); } } - this.state = 7136; + this.state = 7138; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_OVERLAY: this.enterOuterAlt(localContext, 13); { - this.state = 7138; + this.state = 7140; this.match(PostgreSqlParser.KW_OVERLAY); - this.state = 7139; + this.state = 7141; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 7140; - this.expression(); - this.state = 7141; - this.match(PostgreSqlParser.KW_PLACING); this.state = 7142; this.expression(); this.state = 7143; - this.match(PostgreSqlParser.KW_FROM); + this.match(PostgreSqlParser.KW_PLACING); this.state = 7144; this.expression(); - this.state = 7147; + this.state = 7145; + this.match(PostgreSqlParser.KW_FROM); + this.state = 7146; + this.expression(); + this.state = 7149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7145; + this.state = 7147; this.match(PostgreSqlParser.KW_FOR); - this.state = 7146; + this.state = 7148; this.expression(); } } } - this.state = 7149; + this.state = 7151; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_POSITION: this.enterOuterAlt(localContext, 14); { - this.state = 7151; + this.state = 7153; this.match(PostgreSqlParser.KW_POSITION); - this.state = 7152; + this.state = 7154; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7157; + this.state = 7159; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763019) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { + case 1: { - this.state = 7153; + this.state = 7155; this.primaryExpression(0); - this.state = 7154; + this.state = 7156; this.match(PostgreSqlParser.KW_IN); - this.state = 7155; + this.state = 7157; this.primaryExpression(0); } + break; } - - this.state = 7159; + this.state = 7161; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 15); { - this.state = 7160; + this.state = 7162; this.match(PostgreSqlParser.KW_SUBSTRING); - this.state = 7161; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7163; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7165; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { + case 1: { - this.state = 7162; + this.state = 7164; this.substrList(); } + break; } - - this.state = 7165; + this.state = 7167; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_TRIM: this.enterOuterAlt(localContext, 16); { - this.state = 7166; + this.state = 7168; this.match(PostgreSqlParser.KW_TRIM); - this.state = 7167; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7169; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7171; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 39 || _la === 73 || _la === 95) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { + case 1: { - this.state = 7168; + this.state = 7170; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 73 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -43831,50 +42947,50 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } } + break; } - { - this.state = 7175; + this.state = 7177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { case 1: { - this.state = 7172; + this.state = 7174; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 985, this.context) ) { + case 1: { - this.state = 7171; + this.state = 7173; this.expression(); } + break; } - - this.state = 7174; + this.state = 7176; this.match(PostgreSqlParser.KW_FROM); } break; } - this.state = 7177; + this.state = 7179; this.exprList(); } - this.state = 7179; + this.state = 7181; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NULLIF: this.enterOuterAlt(localContext, 17); { - this.state = 7181; - this.match(PostgreSqlParser.KW_NULLIF); - this.state = 7182; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7183; - this.expression(); + this.match(PostgreSqlParser.KW_NULLIF); this.state = 7184; - this.match(PostgreSqlParser.COMMA); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7185; this.expression(); this.state = 7186; + this.match(PostgreSqlParser.COMMA); + this.state = 7187; + this.expression(); + this.state = 7188; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -43884,7 +43000,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_XMLCONCAT: this.enterOuterAlt(localContext, 18); { - this.state = 7188; + this.state = 7190; _la = this.tokenStream.LA(1); if(!(((((_la - 393)) & ~0x1F) === 0 && ((1 << (_la - 393)) & 2113) !== 0) || _la === 425)) { this.errorHandler.recoverInline(this); @@ -43893,48 +43009,48 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7189; + this.state = 7191; this.executeParamClause(); } break; case PostgreSqlParser.KW_XMLELEMENT: this.enterOuterAlt(localContext, 19); { - this.state = 7190; + this.state = 7192; this.match(PostgreSqlParser.KW_XMLELEMENT); - this.state = 7191; + this.state = 7193; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7192; + this.state = 7194; this.match(PostgreSqlParser.KW_NAME); - this.state = 7193; + this.state = 7195; this.colLabel(); - this.state = 7203; + this.state = 7205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7194; + this.state = 7196; this.match(PostgreSqlParser.COMMA); - this.state = 7201; + this.state = 7203; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { { - this.state = 7195; + this.state = 7197; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); - this.state = 7196; + this.state = 7198; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7197; + this.state = 7199; this.xmlAttributeList(); - this.state = 7198; + this.state = 7200; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; case 2: { - this.state = 7200; + this.state = 7202; this.exprList(); } break; @@ -43942,55 +43058,55 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7205; + this.state = 7207; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLEXISTS: this.enterOuterAlt(localContext, 20); { - this.state = 7207; + this.state = 7209; this.match(PostgreSqlParser.KW_XMLEXISTS); - this.state = 7208; + this.state = 7210; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7209; + this.state = 7211; this.primaryExpression(0); - this.state = 7210; + this.state = 7212; this.xmlExistsArgument(); - this.state = 7211; + this.state = 7213; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLFOREST: this.enterOuterAlt(localContext, 21); { - this.state = 7213; + this.state = 7215; this.match(PostgreSqlParser.KW_XMLFOREST); - this.state = 7214; + this.state = 7216; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7215; + this.state = 7217; this.xmlAttributeList(); - this.state = 7216; + this.state = 7218; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPARSE: this.enterOuterAlt(localContext, 22); { - this.state = 7218; + this.state = 7220; this.match(PostgreSqlParser.KW_XMLPARSE); - this.state = 7219; + this.state = 7221; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7220; + this.state = 7222; this.documentOrContent(); - this.state = 7221; + this.state = 7223; this.expression(); - this.state = 7224; + this.state = 7226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 347) { { - this.state = 7222; + this.state = 7224; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -43999,111 +43115,111 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7223; + this.state = 7225; this.match(PostgreSqlParser.KW_WHITESPACE); } } - this.state = 7226; + this.state = 7228; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPI: this.enterOuterAlt(localContext, 23); { - this.state = 7228; + this.state = 7230; this.match(PostgreSqlParser.KW_XMLPI); - this.state = 7229; + this.state = 7231; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7230; + this.state = 7232; this.match(PostgreSqlParser.KW_NAME); - this.state = 7231; + this.state = 7233; this.colLabel(); - this.state = 7234; + this.state = 7236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7232; + this.state = 7234; this.match(PostgreSqlParser.COMMA); - this.state = 7233; + this.state = 7235; this.expression(); } } - this.state = 7236; + this.state = 7238; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLROOT: this.enterOuterAlt(localContext, 24); { - this.state = 7238; + this.state = 7240; this.match(PostgreSqlParser.KW_XMLROOT); - this.state = 7239; + this.state = 7241; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7240; + this.state = 7242; this.match(PostgreSqlParser.KW_XML); - this.state = 7241; + this.state = 7243; this.expression(); - this.state = 7242; + this.state = 7244; this.match(PostgreSqlParser.COMMA); - this.state = 7243; + this.state = 7245; this.match(PostgreSqlParser.KW_VERSION); - this.state = 7247; + this.state = 7249; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: { { - this.state = 7244; + this.state = 7246; this.match(PostgreSqlParser.KW_NO); - this.state = 7245; + this.state = 7247; this.match(PostgreSqlParser.KW_VALUE); } } break; case 2: { - this.state = 7246; + this.state = 7248; this.expression(); } break; } - this.state = 7258; + this.state = 7260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7249; + this.state = 7251; this.match(PostgreSqlParser.COMMA); - this.state = 7250; + this.state = 7252; this.match(PostgreSqlParser.KW_STANDALONE); - this.state = 7256; + this.state = 7258; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_VALUE: { { - this.state = 7252; + this.state = 7254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7251; + this.state = 7253; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7254; + this.state = 7256; this.match(PostgreSqlParser.KW_VALUE); } } break; case PostgreSqlParser.KW_YES: { - this.state = 7255; + this.state = 7257; this.match(PostgreSqlParser.KW_YES); } break; @@ -44113,26 +43229,26 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7260; + this.state = 7262; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLSERIALIZE: this.enterOuterAlt(localContext, 25); { - this.state = 7262; + this.state = 7264; this.match(PostgreSqlParser.KW_XMLSERIALIZE); - this.state = 7263; + this.state = 7265; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7264; + this.state = 7266; this.documentOrContent(); - this.state = 7265; + this.state = 7267; this.expression(); - this.state = 7266; + this.state = 7268; this.match(PostgreSqlParser.KW_AS); - this.state = 7267; + this.state = 7269; this.simpleTypeName(); - this.state = 7268; + this.state = 7270; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -44161,21 +43277,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7272; + this.state = 7274; this.xmlAttributeEl(); - this.state = 7277; + this.state = 7279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7273; + this.state = 7275; this.match(PostgreSqlParser.COMMA); - this.state = 7274; + this.state = 7276; this.xmlAttributeEl(); } } - this.state = 7279; + this.state = 7281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44202,16 +43318,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7280; + this.state = 7282; this.expression(); - this.state = 7283; + this.state = 7285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7281; + this.state = 7283; this.match(PostgreSqlParser.KW_AS); - this.state = 7282; + this.state = 7284; this.colLabel(); } } @@ -44239,7 +43355,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7285; + this.state = 7287; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -44271,26 +43387,26 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7287; - this.match(PostgreSqlParser.KW_PASSING); this.state = 7289; + this.match(PostgreSqlParser.KW_PASSING); + this.state = 7291; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 7288; + this.state = 7290; this.xmlPassingMech(); } break; } - this.state = 7291; - this.primaryExpression(0); this.state = 7293; + this.primaryExpression(0); + this.state = 7295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 7292; + this.state = 7294; this.xmlPassingMech(); } } @@ -44318,9 +43434,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7295; + this.state = 7297; this.match(PostgreSqlParser.KW_BY); - this.state = 7296; + this.state = 7298; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -44352,25 +43468,25 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7298; + this.state = 7300; this.match(PostgreSqlParser.KW_WINDOW); - this.state = 7299; + this.state = 7301; this.windowDefinition(); - this.state = 7304; + this.state = 7306; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7300; + this.state = 7302; this.match(PostgreSqlParser.COMMA); - this.state = 7301; + this.state = 7303; this.windowDefinition(); } } } - this.state = 7306; + this.state = 7308; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); } @@ -44396,9 +43512,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7307; + this.state = 7309; this.match(PostgreSqlParser.KW_HAVING); - this.state = 7308; + this.state = 7310; this.expression(); } } @@ -44422,11 +43538,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7310; + this.state = 7312; this.colId(); - this.state = 7311; + this.state = 7313; this.match(PostgreSqlParser.KW_AS); - this.state = 7312; + this.state = 7314; this.windowSpecification(); } } @@ -44450,14 +43566,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7314; + this.state = 7316; this.match(PostgreSqlParser.KW_OVER); - this.state = 7317; + this.state = 7319; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7315; + this.state = 7317; this.windowSpecification(); } break; @@ -44856,7 +43972,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7316; + this.state = 7318; this.colId(); } break; @@ -44886,53 +44002,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7319; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7321; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 7320; + this.state = 7322; this.colId(); } break; } - this.state = 7326; + this.state = 7328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 7323; + this.state = 7325; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 7324; + this.state = 7326; this.match(PostgreSqlParser.KW_BY); - this.state = 7325; + this.state = 7327; this.exprList(); } } - this.state = 7329; + this.state = 7331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7328; + this.state = 7330; this.sortClause(); } } - this.state = 7332; + this.state = 7334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 299 || _la === 320 || _la === 481) { { - this.state = 7331; + this.state = 7333; this.optFrameClause(); } } - this.state = 7334; + this.state = 7336; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -44957,7 +44073,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7336; + this.state = 7338; _la = this.tokenStream.LA(1); if(!(_la === 299 || _la === 320 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -44967,58 +44083,58 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 7341; + this.state = 7343; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 7337; + this.state = 7339; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 7338; + this.state = 7340; this.frameBound(); - this.state = 7339; + this.state = 7341; this.match(PostgreSqlParser.KW_AND); } break; } - this.state = 7343; + this.state = 7345; this.frameBound(); } - this.state = 7354; + this.state = 7356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 7345; + this.state = 7347; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 7352; + this.state = 7354; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT: { - this.state = 7346; + this.state = 7348; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7347; + this.state = 7349; this.match(PostgreSqlParser.KW_ROW); } break; case PostgreSqlParser.KW_GROUP: { - this.state = 7348; + this.state = 7350; this.match(PostgreSqlParser.KW_GROUP); } break; case PostgreSqlParser.KW_TIES: { - this.state = 7349; + this.state = 7351; this.match(PostgreSqlParser.KW_TIES); } break; case PostgreSqlParser.KW_NO: { - this.state = 7350; + this.state = 7352; this.match(PostgreSqlParser.KW_NO); - this.state = 7351; + this.state = 7353; this.match(PostgreSqlParser.KW_OTHERS); } break; @@ -45049,29 +44165,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 710, PostgreSqlParser.RULE_frameBound); let _la: number; try { - this.state = 7363; + this.state = 7365; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7358; + this.state = 7360; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: { - this.state = 7356; + this.state = 7358; this.match(PostgreSqlParser.KW_UNBOUNDED); } break; case 2: { - this.state = 7357; + this.state = 7359; this.expression(); } break; } - this.state = 7360; + this.state = 7362; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -45085,9 +44201,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7361; + this.state = 7363; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7362; + this.state = 7364; this.match(PostgreSqlParser.KW_ROW); } break; @@ -45111,28 +44227,28 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RowContext(this.context, this.state); this.enterRule(localContext, 712, PostgreSqlParser.RULE_row); try { - this.state = 7372; + this.state = 7374; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ROW: this.enterOuterAlt(localContext, 1); { - this.state = 7365; + this.state = 7367; this.explicitRow(); } break; case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 7366; + this.state = 7368; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7367; + this.state = 7369; this.exprList(); - this.state = 7368; + this.state = 7370; this.match(PostgreSqlParser.COMMA); - this.state = 7369; + this.state = 7371; this.expression(); - this.state = 7370; + this.state = 7372; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45157,25 +44273,24 @@ export class PostgreSqlParser extends SQLParserBase { public explicitRow(): ExplicitRowContext { let localContext = new ExplicitRowContext(this.context, this.state); this.enterRule(localContext, 714, PostgreSqlParser.RULE_explicitRow); - let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7374; + this.state = 7376; this.match(PostgreSqlParser.KW_ROW); - this.state = 7375; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7377; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7379; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { + case 1: { - this.state = 7376; + this.state = 7378; this.exprList(); } + break; } - - this.state = 7379; + this.state = 7381; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45200,7 +44315,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7381; + this.state = 7383; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 34 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -45229,13 +44344,13 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AllOpContext(this.context, this.state); this.enterRule(localContext, 718, PostgreSqlParser.RULE_allOp); try { - this.state = 7385; + this.state = 7387; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7383; + this.state = 7385; this.match(PostgreSqlParser.Operator); } break; @@ -45253,7 +44368,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PERCENT: this.enterOuterAlt(localContext, 2); { - this.state = 7384; + this.state = 7386; this.mathOp(); } break; @@ -45282,7 +44397,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7387; + this.state = 7389; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { this.errorHandler.recoverInline(this); @@ -45311,26 +44426,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new QualOpContext(this.context, this.state); this.enterRule(localContext, 722, PostgreSqlParser.RULE_qualOp); try { - this.state = 7395; + this.state = 7397; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7389; + this.state = 7391; this.match(PostgreSqlParser.Operator); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7390; + this.state = 7392; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7391; + this.state = 7393; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7392; + this.state = 7394; this.anyOperator(); - this.state = 7393; + this.state = 7395; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45356,7 +44471,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new QualAllOpContext(this.context, this.state); this.enterRule(localContext, 724, PostgreSqlParser.RULE_qualAllOp); try { - this.state = 7403; + this.state = 7405; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45374,20 +44489,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7397; + this.state = 7399; this.allOp(); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7398; + this.state = 7400; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7399; + this.state = 7401; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7400; + this.state = 7402; this.anyOperator(); - this.state = 7401; + this.state = 7403; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45414,7 +44529,7 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 726, PostgreSqlParser.RULE_subqueryOperator); let _la: number; try { - this.state = 7410; + this.state = 7412; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45433,7 +44548,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 7405; + this.state = 7407; this.qualAllOp(); } break; @@ -45442,17 +44557,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 7407; + this.state = 7409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7406; + this.state = 7408; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7409; + this.state = 7411; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 120)) { this.errorHandler.recoverInline(this); @@ -45488,23 +44603,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7412; + this.state = 7414; this.expression(); - this.state = 7417; + this.state = 7419; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7413; + this.state = 7415; this.match(PostgreSqlParser.COMMA); - this.state = 7414; + this.state = 7416; this.expression(); } } } - this.state = 7419; + this.state = 7421; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); } @@ -45530,7 +44645,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7420; + this.state = 7422; this.expression(); } } @@ -45554,7 +44669,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7422; + this.state = 7424; this.columnName(); } } @@ -45576,18 +44691,18 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnExprContext(this.context, this.state); this.enterRule(localContext, 734, PostgreSqlParser.RULE_columnExpr); try { - this.state = 7429; + this.state = 7431; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 7424; + this.state = 7426; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7425; + this.state = 7427; this.expression(); - this.state = 7426; + this.state = 7428; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45595,7 +44710,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7428; + this.state = 7430; this.columnName(); } break; @@ -45619,20 +44734,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnExprNoParenContext(this.context, this.state); this.enterRule(localContext, 736, PostgreSqlParser.RULE_columnExprNoParen); try { - this.state = 7433; + this.state = 7435; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7431; + this.state = 7433; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7432; + this.state = 7434; this.columnName(); } break; @@ -45659,23 +44774,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7435; + this.state = 7437; this.funcArgExpr(); - this.state = 7440; + this.state = 7442; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7436; + this.state = 7438; this.match(PostgreSqlParser.COMMA); - this.state = 7437; + this.state = 7439; this.funcArgExpr(); } } } - this.state = 7442; + this.state = 7444; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); } @@ -45700,34 +44815,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 740, PostgreSqlParser.RULE_funcArgExpr); let _la: number; try { - this.state = 7450; + this.state = 7452; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7443; + this.state = 7445; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7444; + this.state = 7446; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7445; + this.state = 7447; this.typeFunctionName(); - this.state = 7448; + this.state = 7450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 22) { { - this.state = 7446; + this.state = 7448; _la = this.tokenStream.LA(1); if(!(_la === 20 || _la === 22)) { this.errorHandler.recoverInline(this); @@ -45736,7 +44851,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7447; + this.state = 7449; this.expression(); } } @@ -45766,488 +44881,43 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7452; + this.state = 7454; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7462; + this.state = 7464; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.OPEN_PAREN: - case PostgreSqlParser.PLUS: - case PostgreSqlParser.MINUS: - case PostgreSqlParser.PARAM: - case PostgreSqlParser.Operator: - case PostgreSqlParser.KW_ARRAY: - case PostgreSqlParser.KW_CASE: - case PostgreSqlParser.KW_CAST: - case PostgreSqlParser.KW_CURRENT_CATALOG: - case PostgreSqlParser.KW_CURRENT_DATE: - case PostgreSqlParser.KW_CURRENT_ROLE: - case PostgreSqlParser.KW_CURRENT_TIME: - case PostgreSqlParser.KW_CURRENT_TIMESTAMP: - case PostgreSqlParser.KW_CURRENT_USER: - case PostgreSqlParser.KW_DEFAULT: - case PostgreSqlParser.KW_FALSE: - case PostgreSqlParser.KW_LOCALTIME: - case PostgreSqlParser.KW_LOCALTIMESTAMP: - case PostgreSqlParser.KW_NOT: - case PostgreSqlParser.KW_NULL: - case PostgreSqlParser.KW_SESSION_USER: - case PostgreSqlParser.KW_TRUE: - case PostgreSqlParser.KW_UNIQUE: - case PostgreSqlParser.KW_USER: - case PostgreSqlParser.KW_AUTHORIZATION: - case PostgreSqlParser.KW_BINARY: - case PostgreSqlParser.KW_COLLATION: - case PostgreSqlParser.KW_CONCURRENTLY: - case PostgreSqlParser.KW_CROSS: - case PostgreSqlParser.KW_CURRENT_SCHEMA: - case PostgreSqlParser.KW_FREEZE: - case PostgreSqlParser.KW_FULL: - case PostgreSqlParser.KW_ILIKE: - case PostgreSqlParser.KW_INNER: - case PostgreSqlParser.KW_IS: - case PostgreSqlParser.KW_ISNULL: - case PostgreSqlParser.KW_JOIN: - case PostgreSqlParser.KW_LEFT: - case PostgreSqlParser.KW_LIKE: - case PostgreSqlParser.KW_NATURAL: - case PostgreSqlParser.KW_NOTNULL: - case PostgreSqlParser.KW_OUTER: - case PostgreSqlParser.KW_OVER: - case PostgreSqlParser.KW_OVERLAPS: - case PostgreSqlParser.KW_RIGHT: - case PostgreSqlParser.KW_SIMILAR: - case PostgreSqlParser.KW_VERBOSE: - case PostgreSqlParser.KW_ABORT: - case PostgreSqlParser.KW_ABSOLUTE: - case PostgreSqlParser.KW_ACCESS: - case PostgreSqlParser.KW_ACTION: - case PostgreSqlParser.KW_ADD: - case PostgreSqlParser.KW_ADMIN: - case PostgreSqlParser.KW_AFTER: - case PostgreSqlParser.KW_AGGREGATE: - case PostgreSqlParser.KW_ALSO: - case PostgreSqlParser.KW_ALTER: - case PostgreSqlParser.KW_ALWAYS: - case PostgreSqlParser.KW_ASSERTION: - case PostgreSqlParser.KW_ASSIGNMENT: - case PostgreSqlParser.KW_AT: - case PostgreSqlParser.KW_ATTRIBUTE: - case PostgreSqlParser.KW_BACKWARD: - case PostgreSqlParser.KW_BEFORE: - case PostgreSqlParser.KW_BEGIN: - case PostgreSqlParser.KW_BY: - case PostgreSqlParser.KW_CACHE: - case PostgreSqlParser.KW_CALLED: - case PostgreSqlParser.KW_CASCADE: - case PostgreSqlParser.KW_CASCADED: - case PostgreSqlParser.KW_CATALOG: - case PostgreSqlParser.KW_CHAIN: - case PostgreSqlParser.KW_CHARACTERISTICS: - case PostgreSqlParser.KW_CHECKPOINT: - case PostgreSqlParser.KW_CLASS: - case PostgreSqlParser.KW_CLOSE: - case PostgreSqlParser.KW_CLUSTER: - case PostgreSqlParser.KW_COMMENT: - case PostgreSqlParser.KW_COMMENTS: - case PostgreSqlParser.KW_COMMIT: - case PostgreSqlParser.KW_COMMITTED: - case PostgreSqlParser.KW_CONFIGURATION: - case PostgreSqlParser.KW_CONNECTION: - case PostgreSqlParser.KW_CONSTRAINTS: - case PostgreSqlParser.KW_CONTENT: - case PostgreSqlParser.KW_CONTINUE: - case PostgreSqlParser.KW_CONVERSION: - case PostgreSqlParser.KW_COPY: - case PostgreSqlParser.KW_COST: - case PostgreSqlParser.KW_CSV: - case PostgreSqlParser.KW_CURSOR: - case PostgreSqlParser.KW_CYCLE: - case PostgreSqlParser.KW_DATA: - case PostgreSqlParser.KW_DATABASE: - case PostgreSqlParser.KW_DAY: - case PostgreSqlParser.KW_DEALLOCATE: - case PostgreSqlParser.KW_DECLARE: - case PostgreSqlParser.KW_DEFAULTS: - case PostgreSqlParser.KW_DEFERRED: - case PostgreSqlParser.KW_DEFINER: - case PostgreSqlParser.KW_DELETE: - case PostgreSqlParser.KW_DELIMITER: - case PostgreSqlParser.KW_DELIMITERS: - case PostgreSqlParser.KW_DICTIONARY: - case PostgreSqlParser.KW_DISABLE: - case PostgreSqlParser.KW_DISCARD: - case PostgreSqlParser.KW_DOCUMENT: - case PostgreSqlParser.KW_DOMAIN: - case PostgreSqlParser.KW_DOUBLE: - case PostgreSqlParser.KW_DROP: - case PostgreSqlParser.KW_EACH: - case PostgreSqlParser.KW_ENABLE: - case PostgreSqlParser.KW_ENCODING: - case PostgreSqlParser.KW_ENCRYPTED: - case PostgreSqlParser.KW_ENUM: - case PostgreSqlParser.KW_ESCAPE: - case PostgreSqlParser.KW_EVENT: - case PostgreSqlParser.KW_EXCLUDE: - case PostgreSqlParser.KW_EXCLUDING: - case PostgreSqlParser.KW_EXCLUSIVE: - case PostgreSqlParser.KW_EXECUTE: - case PostgreSqlParser.KW_EXPLAIN: - case PostgreSqlParser.KW_EXTENSION: - case PostgreSqlParser.KW_EXTERNAL: - case PostgreSqlParser.KW_FAMILY: - case PostgreSqlParser.KW_FIRST: - case PostgreSqlParser.KW_FOLLOWING: - case PostgreSqlParser.KW_FORCE: - case PostgreSqlParser.KW_FORWARD: - case PostgreSqlParser.KW_FUNCTION: - case PostgreSqlParser.KW_FUNCTIONS: - case PostgreSqlParser.KW_GLOBAL: - case PostgreSqlParser.KW_GRANTED: - case PostgreSqlParser.KW_HANDLER: - case PostgreSqlParser.KW_HEADER: - case PostgreSqlParser.KW_HOLD: - case PostgreSqlParser.KW_HOUR: - case PostgreSqlParser.KW_IDENTITY: - case PostgreSqlParser.KW_IF: - case PostgreSqlParser.KW_IMMEDIATE: - case PostgreSqlParser.KW_IMMUTABLE: - case PostgreSqlParser.KW_IMPLICIT: - case PostgreSqlParser.KW_INCLUDING: - case PostgreSqlParser.KW_INCREMENT: - case PostgreSqlParser.KW_INDEX: - case PostgreSqlParser.KW_INDEXES: - case PostgreSqlParser.KW_INHERIT: - case PostgreSqlParser.KW_INHERITS: - case PostgreSqlParser.KW_INLINE: - case PostgreSqlParser.KW_INSENSITIVE: - case PostgreSqlParser.KW_INSERT: - case PostgreSqlParser.KW_INSTEAD: - case PostgreSqlParser.KW_INVOKER: - case PostgreSqlParser.KW_ISOLATION: - case PostgreSqlParser.KW_KEY: - case PostgreSqlParser.KW_LABEL: - case PostgreSqlParser.KW_LANGUAGE: - case PostgreSqlParser.KW_LARGE: - case PostgreSqlParser.KW_LAST: - case PostgreSqlParser.KW_LEAKPROOF: - case PostgreSqlParser.KW_LEVEL: - case PostgreSqlParser.KW_LISTEN: - case PostgreSqlParser.KW_LOAD: - case PostgreSqlParser.KW_LOCAL: - case PostgreSqlParser.KW_LOCATION: - case PostgreSqlParser.KW_LOCK: - case PostgreSqlParser.KW_MAPPING: - case PostgreSqlParser.KW_MATCH: - case PostgreSqlParser.KW_MATERIALIZED: - case PostgreSqlParser.KW_MAXVALUE: - case PostgreSqlParser.KW_MINUTE: - case PostgreSqlParser.KW_MINVALUE: - case PostgreSqlParser.KW_MODE: - case PostgreSqlParser.KW_MONTH: - case PostgreSqlParser.KW_MOVE: - case PostgreSqlParser.KW_NAME: - case PostgreSqlParser.KW_NAMES: - case PostgreSqlParser.KW_NEXT: - case PostgreSqlParser.KW_NO: - case PostgreSqlParser.KW_NOTHING: - case PostgreSqlParser.KW_NOTIFY: - case PostgreSqlParser.KW_NOWAIT: - case PostgreSqlParser.KW_NULLS: - case PostgreSqlParser.KW_OBJECT: - case PostgreSqlParser.KW_OF: - case PostgreSqlParser.KW_OFF: - case PostgreSqlParser.KW_OIDS: - case PostgreSqlParser.KW_OPERATOR: - case PostgreSqlParser.KW_OPTION: - case PostgreSqlParser.KW_OPTIONS: - case PostgreSqlParser.KW_OWNED: - case PostgreSqlParser.KW_OWNER: - case PostgreSqlParser.KW_PARSER: - case PostgreSqlParser.KW_PARTIAL: - case PostgreSqlParser.KW_PARTITION: - case PostgreSqlParser.KW_PASSING: - case PostgreSqlParser.KW_PASSWORD: - case PostgreSqlParser.KW_PLANS: - case PostgreSqlParser.KW_PRECEDING: - case PostgreSqlParser.KW_PREPARE: - case PostgreSqlParser.KW_PREPARED: - case PostgreSqlParser.KW_PRESERVE: - case PostgreSqlParser.KW_PRIOR: - case PostgreSqlParser.KW_PRIVILEGES: - case PostgreSqlParser.KW_PROCEDURAL: - case PostgreSqlParser.KW_PROCEDURE: - case PostgreSqlParser.KW_PROGRAM: - case PostgreSqlParser.KW_QUOTE: - case PostgreSqlParser.KW_RANGE: - case PostgreSqlParser.KW_READ: - case PostgreSqlParser.KW_REASSIGN: - case PostgreSqlParser.KW_RECHECK: - case PostgreSqlParser.KW_RECURSIVE: - case PostgreSqlParser.KW_REF: - case PostgreSqlParser.KW_REFRESH: - case PostgreSqlParser.KW_REINDEX: - case PostgreSqlParser.KW_RELATIVE: - case PostgreSqlParser.KW_RELEASE: - case PostgreSqlParser.KW_RENAME: - case PostgreSqlParser.KW_REPEATABLE: - case PostgreSqlParser.KW_REPLACE: - case PostgreSqlParser.KW_REPLICA: - case PostgreSqlParser.KW_RESET: - case PostgreSqlParser.KW_RESTART: - case PostgreSqlParser.KW_RESTRICT: - case PostgreSqlParser.KW_RETURNS: - case PostgreSqlParser.KW_REVOKE: - case PostgreSqlParser.KW_ROLE: - case PostgreSqlParser.KW_ROLLBACK: - case PostgreSqlParser.KW_ROWS: - case PostgreSqlParser.KW_RULE: - case PostgreSqlParser.KW_SAVEPOINT: - case PostgreSqlParser.KW_SCHEMA: - case PostgreSqlParser.KW_SCROLL: - case PostgreSqlParser.KW_SEARCH: - case PostgreSqlParser.KW_SECOND: - case PostgreSqlParser.KW_SECURITY: - case PostgreSqlParser.KW_SEQUENCE: - case PostgreSqlParser.KW_SEQUENCES: - case PostgreSqlParser.KW_SERIALIZABLE: - case PostgreSqlParser.KW_SERVER: - case PostgreSqlParser.KW_SESSION: - case PostgreSqlParser.KW_SET: - case PostgreSqlParser.KW_SHARE: - case PostgreSqlParser.KW_SHOW: - case PostgreSqlParser.KW_SIMPLE: - case PostgreSqlParser.KW_SNAPSHOT: - case PostgreSqlParser.KW_STABLE: - case PostgreSqlParser.KW_STANDALONE: - case PostgreSqlParser.KW_START: - case PostgreSqlParser.KW_STATEMENT: - case PostgreSqlParser.KW_STATISTICS: - case PostgreSqlParser.KW_STDIN: - case PostgreSqlParser.KW_STDOUT: - case PostgreSqlParser.KW_STORAGE: - case PostgreSqlParser.KW_STRICT: - case PostgreSqlParser.KW_STRIP: - case PostgreSqlParser.KW_SYSID: - case PostgreSqlParser.KW_SYSTEM: - case PostgreSqlParser.KW_TABLES: - case PostgreSqlParser.KW_TABLESPACE: - case PostgreSqlParser.KW_TEMP: - case PostgreSqlParser.KW_TEMPLATE: - case PostgreSqlParser.KW_TEMPORARY: - case PostgreSqlParser.KW_TEXT: - case PostgreSqlParser.KW_TRANSACTION: - case PostgreSqlParser.KW_TRIGGER: - case PostgreSqlParser.KW_TRUNCATE: - case PostgreSqlParser.KW_TRUSTED: - case PostgreSqlParser.KW_TYPE: - case PostgreSqlParser.KW_TYPES: - case PostgreSqlParser.KW_UNBOUNDED: - case PostgreSqlParser.KW_UNCOMMITTED: - case PostgreSqlParser.KW_UNENCRYPTED: - case PostgreSqlParser.KW_UNKNOWN: - case PostgreSqlParser.KW_UNLISTEN: - case PostgreSqlParser.KW_UNLOGGED: - case PostgreSqlParser.KW_UNTIL: - case PostgreSqlParser.KW_UPDATE: - case PostgreSqlParser.KW_VACUUM: - case PostgreSqlParser.KW_VALID: - case PostgreSqlParser.KW_VALIDATE: - case PostgreSqlParser.KW_VALIDATOR: - case PostgreSqlParser.KW_VARYING: - case PostgreSqlParser.KW_VERSION: - case PostgreSqlParser.KW_VIEW: - case PostgreSqlParser.KW_VOLATILE: - case PostgreSqlParser.KW_WHITESPACE: - case PostgreSqlParser.KW_WITHOUT: - case PostgreSqlParser.KW_WORK: - case PostgreSqlParser.KW_WRAPPER: - case PostgreSqlParser.KW_WRITE: - case PostgreSqlParser.KW_XML: - case PostgreSqlParser.KW_YEAR: - case PostgreSqlParser.KW_YES: - case PostgreSqlParser.KW_ZONE: - case PostgreSqlParser.KW_BETWEEN: - case PostgreSqlParser.KW_BIGINT: - case PostgreSqlParser.KW_BIT: - case PostgreSqlParser.KW_BOOLEAN: - case PostgreSqlParser.KW_CHAR: - case PostgreSqlParser.KW_CHARACTER: - case PostgreSqlParser.KW_COALESCE: - case PostgreSqlParser.KW_DEC: - case PostgreSqlParser.KW_DECIMAL: - case PostgreSqlParser.KW_EXISTS: - case PostgreSqlParser.KW_EXTRACT: - case PostgreSqlParser.KW_FLOAT: - case PostgreSqlParser.KW_GREATEST: - case PostgreSqlParser.KW_INOUT: - case PostgreSqlParser.KW_INT: - case PostgreSqlParser.KW_INTEGER: - case PostgreSqlParser.KW_INTERVAL: - case PostgreSqlParser.KW_LEAST: - case PostgreSqlParser.KW_NATIONAL: - case PostgreSqlParser.KW_NCHAR: - case PostgreSqlParser.KW_NONE: - case PostgreSqlParser.KW_NULLIF: - case PostgreSqlParser.KW_NUMERIC: - case PostgreSqlParser.KW_OVERLAY: - case PostgreSqlParser.KW_POSITION: - case PostgreSqlParser.KW_PRECISION: - case PostgreSqlParser.KW_REAL: - case PostgreSqlParser.KW_ROW: - case PostgreSqlParser.KW_SETOF: - case PostgreSqlParser.KW_SMALLINT: - case PostgreSqlParser.KW_SUBSTRING: - case PostgreSqlParser.KW_TIME: - case PostgreSqlParser.KW_TIMESTAMP: - case PostgreSqlParser.KW_TREAT: - case PostgreSqlParser.KW_TRIM: - case PostgreSqlParser.KW_VALUES: - case PostgreSqlParser.KW_VARCHAR: - case PostgreSqlParser.KW_XMLATTRIBUTES: - case PostgreSqlParser.KW_XMLCONCAT: - case PostgreSqlParser.KW_XMLELEMENT: - case PostgreSqlParser.KW_XMLEXISTS: - case PostgreSqlParser.KW_XMLFOREST: - case PostgreSqlParser.KW_XMLPARSE: - case PostgreSqlParser.KW_XMLPI: - case PostgreSqlParser.KW_XMLROOT: - case PostgreSqlParser.KW_XMLSERIALIZE: - case PostgreSqlParser.KW_CALL: - case PostgreSqlParser.KW_CURRENT: - case PostgreSqlParser.KW_ATTACH: - case PostgreSqlParser.KW_DETACH: - case PostgreSqlParser.KW_EXPRESSION: - case PostgreSqlParser.KW_GENERATED: - case PostgreSqlParser.KW_LOGGED: - case PostgreSqlParser.KW_STORED: - case PostgreSqlParser.KW_INCLUDE: - case PostgreSqlParser.KW_ROUTINE: - case PostgreSqlParser.KW_TRANSFORM: - case PostgreSqlParser.KW_IMPORT: - case PostgreSqlParser.KW_POLICY: - case PostgreSqlParser.KW_METHOD: - case PostgreSqlParser.KW_REFERENCING: - case PostgreSqlParser.KW_NEW: - case PostgreSqlParser.KW_OLD: - case PostgreSqlParser.KW_VALUE: - case PostgreSqlParser.KW_SUBSCRIPTION: - case PostgreSqlParser.KW_PUBLICATION: - case PostgreSqlParser.KW_OUT: - case PostgreSqlParser.KW_ROUTINES: - case PostgreSqlParser.KW_SCHEMAS: - case PostgreSqlParser.KW_PROCEDURES: - case PostgreSqlParser.KW_INPUT: - case PostgreSqlParser.KW_SUPPORT: - case PostgreSqlParser.KW_PARALLEL: - case PostgreSqlParser.KW_SQL: - case PostgreSqlParser.KW_DEPENDS: - case PostgreSqlParser.KW_OVERRIDING: - case PostgreSqlParser.KW_CONFLICT: - case PostgreSqlParser.KW_SKIP: - case PostgreSqlParser.KW_LOCKED: - case PostgreSqlParser.KW_TIES: - case PostgreSqlParser.KW_ROLLUP: - case PostgreSqlParser.KW_CUBE: - case PostgreSqlParser.KW_GROUPING: - case PostgreSqlParser.KW_SETS: - case PostgreSqlParser.KW_TABLESAMPLE: - case PostgreSqlParser.KW_ORDINALITY: - case PostgreSqlParser.KW_XMLTABLE: - case PostgreSqlParser.KW_COLUMNS: - case PostgreSqlParser.KW_XMLNAMESPACES: - case PostgreSqlParser.KW_ROWTYPE: - case PostgreSqlParser.KW_NORMALIZED: - case PostgreSqlParser.KW_WITHIN: - case PostgreSqlParser.KW_FILTER: - case PostgreSqlParser.KW_GROUPS: - case PostgreSqlParser.KW_OTHERS: - case PostgreSqlParser.KW_NFC: - case PostgreSqlParser.KW_NFD: - case PostgreSqlParser.KW_NFKC: - case PostgreSqlParser.KW_NFKD: - case PostgreSqlParser.KW_UESCAPE: - case PostgreSqlParser.KW_VIEWS: - case PostgreSqlParser.KW_NORMALIZE: - case PostgreSqlParser.KW_DUMP: - case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: - case PostgreSqlParser.KW_VARIABLE_CONFLICT: - case PostgreSqlParser.KW_ERROR: - case PostgreSqlParser.KW_USE_VARIABLE: - case PostgreSqlParser.KW_USE_COLUMN: - case PostgreSqlParser.KW_ALIAS: - case PostgreSqlParser.KW_CONSTANT: - case PostgreSqlParser.KW_PERFORM: - case PostgreSqlParser.KW_GET: - case PostgreSqlParser.KW_DIAGNOSTICS: - case PostgreSqlParser.KW_STACKED: - case PostgreSqlParser.KW_ELSIF: - case PostgreSqlParser.KW_REVERSE: - case PostgreSqlParser.KW_SLICE: - case PostgreSqlParser.KW_EXIT: - case PostgreSqlParser.KW_RETURN: - case PostgreSqlParser.KW_QUERY: - case PostgreSqlParser.KW_RAISE: - case PostgreSqlParser.KW_SQLSTATE: - case PostgreSqlParser.KW_DEBUG: - case PostgreSqlParser.KW_LOG: - case PostgreSqlParser.KW_INFO: - case PostgreSqlParser.KW_NOTICE: - case PostgreSqlParser.KW_WARNING: - case PostgreSqlParser.KW_EXCEPTION: - case PostgreSqlParser.KW_ASSERT: - case PostgreSqlParser.KW_OPEN: - case PostgreSqlParser.KW_PUBLIC: - case PostgreSqlParser.KW_SKIP_LOCKED: - case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.BinaryStringConstant: - case PostgreSqlParser.HexadecimalStringConstant: - case PostgreSqlParser.Integral: - case PostgreSqlParser.Numeric: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: + switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { + case 1: { - this.state = 7453; + this.state = 7455; this.exprList(); } break; - case PostgreSqlParser.OPEN_BRACKET: + case 2: { { - this.state = 7454; + this.state = 7456; this.arrayExpr(); - this.state = 7459; + this.state = 7461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7455; + this.state = 7457; this.match(PostgreSqlParser.COMMA); - this.state = 7456; + this.state = 7458; this.arrayExpr(); } } - this.state = 7461; + this.state = 7463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } break; - case PostgreSqlParser.CLOSE_BRACKET: - break; - default: - break; } - this.state = 7464; + this.state = 7466; this.match(PostgreSqlParser.CLOSE_BRACKET); } } @@ -46269,62 +44939,62 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExtractArgContext(this.context, this.state); this.enterRule(localContext, 744, PostgreSqlParser.RULE_extractArg); try { - this.state = 7474; + this.state = 7476; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7466; + this.state = 7468; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7467; + this.state = 7469; this.match(PostgreSqlParser.KW_YEAR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7468; + this.state = 7470; this.match(PostgreSqlParser.KW_MONTH); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7469; + this.state = 7471; this.match(PostgreSqlParser.KW_DAY); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7470; + this.state = 7472; this.match(PostgreSqlParser.KW_HOUR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7471; + this.state = 7473; this.match(PostgreSqlParser.KW_MINUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7472; + this.state = 7474; this.match(PostgreSqlParser.KW_SECOND); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7473; + this.state = 7475; this.stringConst(); } break; @@ -46351,7 +45021,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7476; + this.state = 7478; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -46381,26 +45051,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 748, PostgreSqlParser.RULE_substrList); let _la: number; try { - this.state = 7499; + this.state = 7501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7478; + this.state = 7480; this.expression(); - this.state = 7479; + this.state = 7481; this.match(PostgreSqlParser.KW_FROM); - this.state = 7480; + this.state = 7482; this.expression(); - this.state = 7483; + this.state = 7485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7481; + this.state = 7483; this.match(PostgreSqlParser.KW_FOR); - this.state = 7482; + this.state = 7484; this.expression(); } } @@ -46410,20 +45080,20 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7485; + this.state = 7487; this.expression(); - this.state = 7486; + this.state = 7488; this.match(PostgreSqlParser.KW_FOR); - this.state = 7487; + this.state = 7489; this.expression(); - this.state = 7490; + this.state = 7492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 7488; + this.state = 7490; this.match(PostgreSqlParser.KW_FROM); - this.state = 7489; + this.state = 7491; this.expression(); } } @@ -46433,22 +45103,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7492; - this.expression(); - this.state = 7493; - this.match(PostgreSqlParser.KW_SIMILAR); this.state = 7494; this.expression(); this.state = 7495; - this.match(PostgreSqlParser.KW_ESCAPE); + this.match(PostgreSqlParser.KW_SIMILAR); this.state = 7496; this.expression(); + this.state = 7497; + this.match(PostgreSqlParser.KW_ESCAPE); + this.state = 7498; + this.expression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7498; + this.state = 7500; this.exprList(); } break; @@ -46474,13 +45144,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7501; + this.state = 7503; this.match(PostgreSqlParser.KW_WHEN); - this.state = 7502; + this.state = 7504; this.expression(); - this.state = 7503; + this.state = 7505; this.match(PostgreSqlParser.KW_THEN); - this.state = 7504; + this.state = 7506; this.expression(); } } @@ -46501,17 +45171,16 @@ export class PostgreSqlParser extends SQLParserBase { public indirectionEl(): IndirectionElContext { let localContext = new IndirectionElContext(this.context, this.state); this.enterRule(localContext, 752, PostgreSqlParser.RULE_indirectionEl); - let _la: number; try { - this.state = 7523; + this.state = 7525; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.DOT: this.enterOuterAlt(localContext, 1); { - this.state = 7506; + this.state = 7508; this.match(PostgreSqlParser.DOT); - this.state = 7509; + this.state = 7511; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -47005,13 +45674,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7507; + this.state = 7509; this.colLabel(); } break; case PostgreSqlParser.STAR: { - this.state = 7508; + this.state = 7510; this.match(PostgreSqlParser.STAR); } break; @@ -47023,45 +45692,45 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 7511; + this.state = 7513; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7520; + this.state = 7522; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 7512; + this.state = 7514; this.expression(); } break; case 2: { - this.state = 7514; + this.state = 7516; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context) ) { + case 1: { - this.state = 7513; + this.state = 7515; this.expression(); } + break; } - - this.state = 7516; - this.match(PostgreSqlParser.COLON); this.state = 7518; + this.match(PostgreSqlParser.COLON); + this.state = 7520; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { + case 1: { - this.state = 7517; + this.state = 7519; this.expression(); } + break; } - } break; } - this.state = 7522; + this.state = 7524; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -47090,7 +45759,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7526; + this.state = 7528; this.errorHandler.sync(this); alternative = 1; do { @@ -47098,7 +45767,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 7525; + this.state = 7527; this.indirectionEl(); } } @@ -47106,7 +45775,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7528; + this.state = 7530; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -47133,19 +45802,19 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7533; + this.state = 7535; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7530; + this.state = 7532; this.indirectionEl(); } } } - this.state = 7535; + this.state = 7537; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); } @@ -47172,23 +45841,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7536; + this.state = 7538; this.targetEl(); - this.state = 7541; + this.state = 7543; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7537; + this.state = 7539; this.match(PostgreSqlParser.COMMA); - this.state = 7538; + this.state = 7540; this.targetEl(); } } } - this.state = 7543; + this.state = 7545; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); } @@ -47213,14 +45882,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 760, PostgreSqlParser.RULE_targetEl); let _la: number; try { - this.state = 7556; + this.state = 7558; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7544; + this.state = 7546; this.tableAllColumns(); } break; @@ -47228,38 +45897,38 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7547; + this.state = 7549; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7545; + this.state = 7547; this.selectLiteralColumnName(); } break; case 2: { - this.state = 7546; + this.state = 7548; this.selectExpressionColumnName(); } break; } - this.state = 7554; + this.state = 7556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: { - this.state = 7550; + this.state = 7552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7549; + this.state = 7551; this.match(PostgreSqlParser.KW_AS); } } - this.state = 7552; + this.state = 7554; (localContext as Target_labelContext)._alias = this.identifier(); } break; @@ -47294,23 +45963,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7563; + this.state = 7565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { { - this.state = 7558; + this.state = 7560; this.colId(); - this.state = 7559; + this.state = 7561; this.match(PostgreSqlParser.DOT); } } - this.state = 7565; + this.state = 7567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7566; + this.state = 7568; this.match(PostgreSqlParser.STAR); } } @@ -47335,21 +46004,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7568; + this.state = 7570; this.qualifiedName(); - this.state = 7573; + this.state = 7575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7569; + this.state = 7571; this.match(PostgreSqlParser.COMMA); - this.state = 7570; + this.state = 7572; this.qualifiedName(); } } - this.state = 7575; + this.state = 7577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47376,21 +46045,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7576; + this.state = 7578; this.tableName(); - this.state = 7581; + this.state = 7583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7577; + this.state = 7579; this.match(PostgreSqlParser.COMMA); - this.state = 7578; + this.state = 7580; this.tableName(); } } - this.state = 7583; + this.state = 7585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47417,21 +46086,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7584; + this.state = 7586; this.schemaName(); - this.state = 7589; + this.state = 7591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7585; + this.state = 7587; this.match(PostgreSqlParser.COMMA); - this.state = 7586; + this.state = 7588; this.schemaName(); } } - this.state = 7591; + this.state = 7593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47458,21 +46127,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7592; + this.state = 7594; this.databaseName(); - this.state = 7597; + this.state = 7599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7593; + this.state = 7595; this.match(PostgreSqlParser.COMMA); - this.state = 7594; + this.state = 7596; this.databaseName(); } } - this.state = 7599; + this.state = 7601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47498,7 +46167,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7600; + this.state = 7602; this.qualifiedName(); } } @@ -47522,7 +46191,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7602; + this.state = 7604; this.qualifiedName(); } } @@ -47546,7 +46215,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7604; + this.state = 7606; this.qualifiedName(); } } @@ -47570,7 +46239,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7606; + this.state = 7608; this.qualifiedName(); } } @@ -47594,7 +46263,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7608; + this.state = 7610; this.qualifiedName(); } } @@ -47618,7 +46287,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7610; + this.state = 7612; this.anyName(); } } @@ -47642,14 +46311,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7612; - this.colId(); this.state = 7614; + this.colId(); + this.state = 7616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 7613; + this.state = 7615; this.indirection(); } break; @@ -47677,21 +46346,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7616; + this.state = 7618; this.tableSpaceName(); - this.state = 7621; + this.state = 7623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7617; + this.state = 7619; this.match(PostgreSqlParser.COMMA); - this.state = 7618; + this.state = 7620; this.tableSpaceName(); } } - this.state = 7623; + this.state = 7625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47718,21 +46387,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7624; + this.state = 7626; this.colId(); - this.state = 7629; + this.state = 7631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7625; + this.state = 7627; this.match(PostgreSqlParser.COMMA); - this.state = 7626; + this.state = 7628; this.colId(); } } - this.state = 7631; + this.state = 7633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47758,7 +46427,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7632; + this.state = 7634; this.anyName(); } } @@ -47782,7 +46451,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7634; + this.state = 7636; this.anyName(); } } @@ -47806,7 +46475,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7636; + this.state = 7638; this.anyName(); } } @@ -47830,7 +46499,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7638; + this.state = 7640; this.colId(); } } @@ -47854,7 +46523,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7640; + this.state = 7642; this.colId(); } } @@ -47876,22 +46545,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureNameContext(this.context, this.state); this.enterRule(localContext, 800, PostgreSqlParser.RULE_procedureName); try { - this.state = 7646; + this.state = 7648; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7642; + this.state = 7644; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7643; + this.state = 7645; this.colId(); - this.state = 7644; + this.state = 7646; this.indirection(); } break; @@ -47915,22 +46584,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureNameCreateContext(this.context, this.state); this.enterRule(localContext, 802, PostgreSqlParser.RULE_procedureNameCreate); try { - this.state = 7652; + this.state = 7654; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7648; + this.state = 7650; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7649; + this.state = 7651; this.colId(); - this.state = 7650; + this.state = 7652; this.indirection(); } break; @@ -47950,29 +46619,72 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } + public emptyColumn(): EmptyColumnContext { + let localContext = new EmptyColumnContext(this.context, this.state); + this.enterRule(localContext, 804, PostgreSqlParser.RULE_emptyColumn); + try { + this.enterOuterAlt(localContext, 1); + // tslint:disable-next-line:no-empty + { + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 804, PostgreSqlParser.RULE_columnName); + this.enterRule(localContext, 806, PostgreSqlParser.RULE_columnName); try { - this.state = 7658; + this.state = 7669; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7654; + this.state = 7658; this.colId(); - this.state = 7655; + this.state = 7659; this.optIndirection(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7657; + this.state = 7661; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } + this.state = 7667; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + case 1: + { + this.state = 7662; + this.colId(); + this.state = 7663; + this.match(PostgreSqlParser.DOT); + this.state = 7664; + this.emptyColumn(); + } + break; + case 2: + { + this.state = 7666; + this.emptyColumn(); + } + break; + } } break; } @@ -47993,14 +46705,49 @@ export class PostgreSqlParser extends SQLParserBase { } public columnNamePath(): ColumnNamePathContext { let localContext = new ColumnNamePathContext(this.context, this.state); - this.enterRule(localContext, 806, PostgreSqlParser.RULE_columnNamePath); + this.enterRule(localContext, 808, PostgreSqlParser.RULE_columnNamePath); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7660; - this.colId(); - this.state = 7661; - this.optIndirection(); + this.state = 7682; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7671; + this.colId(); + this.state = 7672; + this.optIndirection(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7674; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 7680; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { + case 1: + { + this.state = 7675; + this.colId(); + this.state = 7676; + this.match(PostgreSqlParser.DOT); + this.state = 7677; + this.emptyColumn(); + } + break; + case 2: + { + this.state = 7679; + this.emptyColumn(); + } + break; + } + } + break; } } catch (re) { @@ -48019,11 +46766,11 @@ export class PostgreSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 808, PostgreSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 810, PostgreSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 7663; + this.state = 7684; this.colId(); } } @@ -48043,24 +46790,24 @@ export class PostgreSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 810, PostgreSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 812, PostgreSqlParser.RULE_functionNameCreate); try { - this.state = 7669; + this.state = 7690; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7665; + this.state = 7686; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7666; + this.state = 7687; this.colId(); - this.state = 7667; + this.state = 7688; this.indirection(); } break; @@ -48082,24 +46829,24 @@ export class PostgreSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 812, PostgreSqlParser.RULE_functionName); + this.enterRule(localContext, 814, PostgreSqlParser.RULE_functionName); try { - this.state = 7675; + this.state = 7696; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7671; + this.state = 7692; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7672; + this.state = 7693; this.colId(); - this.state = 7673; + this.state = 7694; this.indirection(); } break; @@ -48121,20 +46868,20 @@ export class PostgreSqlParser extends SQLParserBase { } public stringConst(): StringConstContext { let localContext = new StringConstContext(this.context, this.state); - this.enterRule(localContext, 814, PostgreSqlParser.RULE_stringConst); + this.enterRule(localContext, 816, PostgreSqlParser.RULE_stringConst); try { this.enterOuterAlt(localContext, 1); { - this.state = 7677; + this.state = 7698; this.anysconst(); - this.state = 7680; + this.state = 7701; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: { - this.state = 7678; + this.state = 7699; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7679; + this.state = 7700; this.anysconst(); } break; @@ -48157,53 +46904,53 @@ export class PostgreSqlParser extends SQLParserBase { } public anysconst(): AnysconstContext { let localContext = new AnysconstContext(this.context, this.state); - this.enterRule(localContext, 816, PostgreSqlParser.RULE_anysconst); + this.enterRule(localContext, 818, PostgreSqlParser.RULE_anysconst); let _la: number; try { - this.state = 7693; + this.state = 7714; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7682; + this.state = 7703; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7683; + this.state = 7704; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 7684; + this.state = 7705; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 7688; + this.state = 7709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 590) { { { - this.state = 7685; + this.state = 7706; this.match(PostgreSqlParser.DollarText); } } - this.state = 7690; + this.state = 7711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7691; + this.state = 7712; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 7692; + this.state = 7713; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -48227,17 +46974,17 @@ export class PostgreSqlParser extends SQLParserBase { } public signedConst(): SignedConstContext { let localContext = new SignedConstContext(this.context, this.state); - this.enterRule(localContext, 818, PostgreSqlParser.RULE_signedConst); + this.enterRule(localContext, 820, PostgreSqlParser.RULE_signedConst); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7696; + this.state = 7717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 7695; + this.state = 7716; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -48249,7 +46996,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7698; + this.state = 7719; this.match(PostgreSqlParser.Integral); } } @@ -48269,43 +47016,43 @@ export class PostgreSqlParser extends SQLParserBase { } public roleSpec(): RoleSpecContext { let localContext = new RoleSpecContext(this.context, this.state); - this.enterRule(localContext, 820, PostgreSqlParser.RULE_roleSpec); + this.enterRule(localContext, 822, PostgreSqlParser.RULE_roleSpec); try { - this.state = 7705; + this.state = 7726; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7700; + this.state = 7721; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7701; + this.state = 7722; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7702; + this.state = 7723; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7703; + this.state = 7724; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7704; + this.state = 7725; this.match(PostgreSqlParser.KW_PUBLIC); } break; @@ -48327,26 +47074,26 @@ export class PostgreSqlParser extends SQLParserBase { } public roleList(): RoleListContext { let localContext = new RoleListContext(this.context, this.state); - this.enterRule(localContext, 822, PostgreSqlParser.RULE_roleList); + this.enterRule(localContext, 824, PostgreSqlParser.RULE_roleList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7707; + this.state = 7728; this.roleSpec(); - this.state = 7712; + this.state = 7733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7708; + this.state = 7729; this.match(PostgreSqlParser.COMMA); - this.state = 7709; + this.state = 7730; this.roleSpec(); } } - this.state = 7714; + this.state = 7735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48368,22 +47115,22 @@ export class PostgreSqlParser extends SQLParserBase { } public colId(): ColIdContext { let localContext = new ColIdContext(this.context, this.state); - this.enterRule(localContext, 824, PostgreSqlParser.RULE_colId); + this.enterRule(localContext, 826, PostgreSqlParser.RULE_colId); try { - this.state = 7717; + this.state = 7738; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7715; + this.state = 7736; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7716; + this.state = 7737; this.colNameKeyword(); } break; @@ -48405,22 +47152,22 @@ export class PostgreSqlParser extends SQLParserBase { } public typeFunctionName(): TypeFunctionNameContext { let localContext = new TypeFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 826, PostgreSqlParser.RULE_typeFunctionName); + this.enterRule(localContext, 828, PostgreSqlParser.RULE_typeFunctionName); try { - this.state = 7721; + this.state = 7742; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7719; + this.state = 7740; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7720; + this.state = 7741; this.typeFuncNameKeyword(); } break; @@ -48442,29 +47189,29 @@ export class PostgreSqlParser extends SQLParserBase { } public nonReservedWord(): NonReservedWordContext { let localContext = new NonReservedWordContext(this.context, this.state); - this.enterRule(localContext, 828, PostgreSqlParser.RULE_nonReservedWord); + this.enterRule(localContext, 830, PostgreSqlParser.RULE_nonReservedWord); try { - this.state = 7726; + this.state = 7747; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7723; + this.state = 7744; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7724; + this.state = 7745; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7725; + this.state = 7746; this.typeFuncNameKeyword(); } break; @@ -48486,36 +47233,36 @@ export class PostgreSqlParser extends SQLParserBase { } public colLabel(): ColLabelContext { let localContext = new ColLabelContext(this.context, this.state); - this.enterRule(localContext, 830, PostgreSqlParser.RULE_colLabel); + this.enterRule(localContext, 832, PostgreSqlParser.RULE_colLabel); try { - this.state = 7732; + this.state = 7753; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7728; + this.state = 7749; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7729; + this.state = 7750; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7730; + this.state = 7751; this.typeFuncNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7731; + this.state = 7752; this.reservedKeyword(); } break; @@ -48537,24 +47284,24 @@ export class PostgreSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 832, PostgreSqlParser.RULE_identifier); + this.enterRule(localContext, 834, PostgreSqlParser.RULE_identifier); try { - this.state = 7745; + this.state = 7766; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 7734; + this.state = 7755; this.match(PostgreSqlParser.Identifier); - this.state = 7737; + this.state = 7758; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7735; + this.state = 7756; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7736; + this.state = 7757; this.anysconst(); } break; @@ -48567,35 +47314,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7739; + this.state = 7760; this.stringConst(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 7740; + this.state = 7761; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 7741; + this.state = 7762; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 7742; + this.state = 7763; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 7743; + this.state = 7764; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } break; @@ -48935,7 +47682,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 7); { - this.state = 7744; + this.state = 7765; this.unreservedKeyword(); } break; @@ -48959,12 +47706,12 @@ export class PostgreSqlParser extends SQLParserBase { } public unreservedKeyword(): UnreservedKeywordContext { let localContext = new UnreservedKeywordContext(this.context, this.state); - this.enterRule(localContext, 834, PostgreSqlParser.RULE_unreservedKeyword); + this.enterRule(localContext, 836, PostgreSqlParser.RULE_unreservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7747; + this.state = 7768; _la = this.tokenStream.LA(1); if(!(_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || _la === 547 || _la === 548)) { this.errorHandler.recoverInline(this); @@ -48991,365 +47738,365 @@ export class PostgreSqlParser extends SQLParserBase { } public colNameKeyword(): ColNameKeywordContext { let localContext = new ColNameKeywordContext(this.context, this.state); - this.enterRule(localContext, 836, PostgreSqlParser.RULE_colNameKeyword); + this.enterRule(localContext, 838, PostgreSqlParser.RULE_colNameKeyword); try { - this.state = 7800; + this.state = 7821; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7749; + this.state = 7770; this.match(PostgreSqlParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7750; + this.state = 7771; this.match(PostgreSqlParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7751; + this.state = 7772; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7752; + this.state = 7773; this.match(PostgreSqlParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7753; + this.state = 7774; this.match(PostgreSqlParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7754; + this.state = 7775; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7755; + this.state = 7776; this.match(PostgreSqlParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7756; + this.state = 7777; this.match(PostgreSqlParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7757; + this.state = 7778; this.match(PostgreSqlParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7758; + this.state = 7779; this.match(PostgreSqlParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7759; + this.state = 7780; this.match(PostgreSqlParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7760; + this.state = 7781; this.match(PostgreSqlParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7761; + this.state = 7782; this.match(PostgreSqlParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7762; + this.state = 7783; this.match(PostgreSqlParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7763; + this.state = 7784; this.match(PostgreSqlParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7764; + this.state = 7785; this.match(PostgreSqlParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7765; + this.state = 7786; this.match(PostgreSqlParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7766; + this.state = 7787; this.match(PostgreSqlParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7767; + this.state = 7788; this.match(PostgreSqlParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7768; + this.state = 7789; this.match(PostgreSqlParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7769; + this.state = 7790; this.match(PostgreSqlParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7770; + this.state = 7791; this.match(PostgreSqlParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7771; + this.state = 7792; this.match(PostgreSqlParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7772; + this.state = 7793; this.match(PostgreSqlParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7773; + this.state = 7794; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7774; + this.state = 7795; this.match(PostgreSqlParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7775; + this.state = 7796; this.match(PostgreSqlParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7776; + this.state = 7797; this.match(PostgreSqlParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7777; + this.state = 7798; this.match(PostgreSqlParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7778; + this.state = 7799; this.match(PostgreSqlParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7779; + this.state = 7800; this.match(PostgreSqlParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7780; + this.state = 7801; this.match(PostgreSqlParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7781; + this.state = 7802; this.match(PostgreSqlParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7782; + this.state = 7803; this.match(PostgreSqlParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7783; + this.state = 7804; this.match(PostgreSqlParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7784; + this.state = 7805; this.match(PostgreSqlParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7785; + this.state = 7806; this.match(PostgreSqlParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7786; + this.state = 7807; this.match(PostgreSqlParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7787; + this.state = 7808; this.match(PostgreSqlParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7788; + this.state = 7809; this.match(PostgreSqlParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7789; + this.state = 7810; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7790; + this.state = 7811; this.match(PostgreSqlParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7791; + this.state = 7812; this.match(PostgreSqlParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 7792; + this.state = 7813; this.match(PostgreSqlParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 7793; + this.state = 7814; this.match(PostgreSqlParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 7794; + this.state = 7815; this.match(PostgreSqlParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 7795; + this.state = 7816; this.match(PostgreSqlParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 7796; + this.state = 7817; this.match(PostgreSqlParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 7797; + this.state = 7818; this.match(PostgreSqlParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 7798; + this.state = 7819; this.match(PostgreSqlParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 7799; + this.state = 7820; this.match(PostgreSqlParser.KW_XMLTABLE); } break; @@ -49371,12 +48118,12 @@ export class PostgreSqlParser extends SQLParserBase { } public typeFuncNameKeyword(): TypeFuncNameKeywordContext { let localContext = new TypeFuncNameKeywordContext(this.context, this.state); - this.enterRule(localContext, 838, PostgreSqlParser.RULE_typeFuncNameKeyword); + this.enterRule(localContext, 840, PostgreSqlParser.RULE_typeFuncNameKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7802; + this.state = 7823; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -49403,12 +48150,12 @@ export class PostgreSqlParser extends SQLParserBase { } public reservedKeyword(): ReservedKeywordContext { let localContext = new ReservedKeywordContext(this.context, this.state); - this.enterRule(localContext, 840, PostgreSqlParser.RULE_reservedKeyword); + this.enterRule(localContext, 842, PostgreSqlParser.RULE_reservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7804; + this.state = 7825; _la = this.tokenStream.LA(1); if(!(((((_la - 30)) & ~0x1F) === 0 && ((1 << (_la - 30)) & 4286578687) !== 0) || ((((_la - 62)) & ~0x1F) === 0 && ((1 << (_la - 62)) & 4294966783) !== 0) || ((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 4095) !== 0) || _la === 454)) { this.errorHandler.recoverInline(this); @@ -49435,60 +48182,60 @@ export class PostgreSqlParser extends SQLParserBase { } public plBlock(): PlBlockContext { let localContext = new PlBlockContext(this.context, this.state); - this.enterRule(localContext, 842, PostgreSqlParser.RULE_plBlock); + this.enterRule(localContext, 844, PostgreSqlParser.RULE_plBlock); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 7807; + this.state = 7828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 7806; + this.state = 7827; this.labelDecl(); } } - this.state = 7819; + this.state = 7840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 7809; + this.state = 7830; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 7817; + this.state = 7838; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1071, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { case 1: { - this.state = 7813; + this.state = 7834; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 7813; + this.state = 7834; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context) ) { case 1: { - this.state = 7810; + this.state = 7831; this.declStatement(); } break; case 2: { - this.state = 7811; + this.state = 7832; this.match(PostgreSqlParser.KW_DECLARE); } break; case 3: { - this.state = 7812; + this.state = 7833; this.labelDecl(); } break; @@ -49498,9 +48245,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7815; + this.state = 7836; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -49509,42 +48256,42 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7821; + this.state = 7842; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 7825; + this.state = 7846; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7822; + this.state = 7843; this.procStmt(); } } } - this.state = 7827; + this.state = 7848; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context); } - this.state = 7829; + this.state = 7850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 7828; + this.state = 7849; this.exceptionSect(); } } - this.state = 7831; + this.state = 7852; this.match(PostgreSqlParser.KW_END); - this.state = 7833; + this.state = 7854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7832; + this.state = 7853; this.anyIdentifier(); } } @@ -49567,15 +48314,15 @@ export class PostgreSqlParser extends SQLParserBase { } public labelDecl(): LabelDeclContext { let localContext = new LabelDeclContext(this.context, this.state); - this.enterRule(localContext, 844, PostgreSqlParser.RULE_labelDecl); + this.enterRule(localContext, 846, PostgreSqlParser.RULE_labelDecl); try { this.enterOuterAlt(localContext, 1); { - this.state = 7835; + this.state = 7856; this.match(PostgreSqlParser.LESS_LESS); - this.state = 7836; + this.state = 7857; this.anyIdentifier(); - this.state = 7837; + this.state = 7858; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -49595,28 +48342,28 @@ export class PostgreSqlParser extends SQLParserBase { } public declStatement(): DeclStatementContext { let localContext = new DeclStatementContext(this.context, this.state); - this.enterRule(localContext, 846, PostgreSqlParser.RULE_declStatement); + this.enterRule(localContext, 848, PostgreSqlParser.RULE_declStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7839; + this.state = 7860; this.anyIdentifier(); - this.state = 7886; + this.state = 7907; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { case 1: { - this.state = 7840; + this.state = 7861; this.match(PostgreSqlParser.KW_ALIAS); - this.state = 7841; + this.state = 7862; this.match(PostgreSqlParser.KW_FOR); - this.state = 7844; + this.state = 7865; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: { - this.state = 7842; + this.state = 7863; this.match(PostgreSqlParser.PARAM); } break; @@ -50015,7 +48762,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7843; + this.state = 7864; this.colId(); } break; @@ -50026,65 +48773,65 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7847; + this.state = 7868; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1080, this.context) ) { case 1: { - this.state = 7846; + this.state = 7867; this.match(PostgreSqlParser.KW_CONSTANT); } break; } - this.state = 7849; + this.state = 7870; this.typename(); - this.state = 7851; + this.state = 7872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 7850; + this.state = 7871; this.collateClause(); } } - this.state = 7855; + this.state = 7876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7853; + this.state = 7874; this.match(PostgreSqlParser.KW_NOT); - this.state = 7854; + this.state = 7875; this.match(PostgreSqlParser.KW_NULL); } } - this.state = 7862; + this.state = 7883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 20 || _la === 53) { { - this.state = 7859; + this.state = 7880; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: { - this.state = 7857; + this.state = 7878; this.assignOperator(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 7858; + this.state = 7879; this.match(PostgreSqlParser.KW_DEFAULT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7861; + this.state = 7882; this.sqlExpression(); } } @@ -50093,59 +48840,59 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7868; + this.state = 7889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 7865; + this.state = 7886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7864; + this.state = 7885; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7867; + this.state = 7888; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 7870; + this.state = 7891; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 7882; + this.state = 7903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7871; + this.state = 7892; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7872; + this.state = 7893; this.declCursorArg(); - this.state = 7877; + this.state = 7898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7873; + this.state = 7894; this.match(PostgreSqlParser.COMMA); - this.state = 7874; + this.state = 7895; this.declCursorArg(); } } - this.state = 7879; + this.state = 7900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7880; + this.state = 7901; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7884; + this.state = 7905; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -50154,12 +48901,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7885; + this.state = 7906; this.selectStmt(); } break; } - this.state = 7888; + this.state = 7909; this.match(PostgreSqlParser.SEMI); } } @@ -50179,13 +48926,13 @@ export class PostgreSqlParser extends SQLParserBase { } public declCursorArg(): DeclCursorArgContext { let localContext = new DeclCursorArgContext(this.context, this.state); - this.enterRule(localContext, 848, PostgreSqlParser.RULE_declCursorArg); + this.enterRule(localContext, 850, PostgreSqlParser.RULE_declCursorArg); try { this.enterOuterAlt(localContext, 1); { - this.state = 7890; + this.state = 7911; this.anyIdentifier(); - this.state = 7891; + this.state = 7912; this.typename(); } } @@ -50205,12 +48952,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assignOperator(): AssignOperatorContext { let localContext = new AssignOperatorContext(this.context, this.state); - this.enterRule(localContext, 850, PostgreSqlParser.RULE_assignOperator); + this.enterRule(localContext, 852, PostgreSqlParser.RULE_assignOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7893; + this.state = 7914; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -50237,164 +48984,164 @@ export class PostgreSqlParser extends SQLParserBase { } public procStmt(): ProcStmtContext { let localContext = new ProcStmtContext(this.context, this.state); - this.enterRule(localContext, 852, PostgreSqlParser.RULE_procStmt); + this.enterRule(localContext, 854, PostgreSqlParser.RULE_procStmt); try { - this.state = 7919; + this.state = 7940; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7895; + this.state = 7916; this.plBlock(); - this.state = 7896; + this.state = 7917; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7898; + this.state = 7919; this.stmtReturn(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7899; + this.state = 7920; this.stmtRaise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7900; + this.state = 7921; this.stmtAssign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7901; + this.state = 7922; this.stmtIf(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7902; + this.state = 7923; this.stmtCase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7903; + this.state = 7924; this.stmtLoopWhileFor(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7904; + this.state = 7925; this.stmtForeach(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7905; + this.state = 7926; this.stmtExit(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7906; + this.state = 7927; this.stmtAssert(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7907; + this.state = 7928; this.stmtExecsql(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7908; + this.state = 7929; this.stmtDynexecute(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7909; + this.state = 7930; this.stmtPerform(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7910; + this.state = 7931; this.stmtCall(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7911; + this.state = 7932; this.stmtGetdiag(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7912; + this.state = 7933; this.stmtOpen(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7913; + this.state = 7934; this.stmtFetch(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7914; + this.state = 7935; this.stmtMove(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7915; + this.state = 7936; this.stmtClose(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7916; + this.state = 7937; this.stmtNull(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7917; + this.state = 7938; this.stmtCommitOrRollback(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7918; + this.state = 7939; this.stmtSet(); } break; @@ -50416,15 +49163,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtPerform(): StmtPerformContext { let localContext = new StmtPerformContext(this.context, this.state); - this.enterRule(localContext, 854, PostgreSqlParser.RULE_stmtPerform); + this.enterRule(localContext, 856, PostgreSqlParser.RULE_stmtPerform); try { this.enterOuterAlt(localContext, 1); { - this.state = 7921; + this.state = 7942; this.match(PostgreSqlParser.KW_PERFORM); - this.state = 7922; + this.state = 7943; this.sqlExpression(); - this.state = 7923; + this.state = 7944; this.match(PostgreSqlParser.SEMI); } } @@ -50444,39 +49191,38 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCall(): StmtCallContext { let localContext = new StmtCallContext(this.context, this.state); - this.enterRule(localContext, 856, PostgreSqlParser.RULE_stmtCall); - let _la: number; + this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmtCall); try { - this.state = 7944; + this.state = 7965; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 7925; + this.state = 7946; this.match(PostgreSqlParser.KW_CALL); - this.state = 7926; + this.state = 7947; this.anyIdentifier(); - this.state = 7933; + this.state = 7954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context) ) { case 1: { - this.state = 7927; + this.state = 7948; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7929; + this.state = 7950; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { + case 1: { - this.state = 7928; + this.state = 7949; this.exprList(); } + break; } - - this.state = 7931; + this.state = 7952; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7932; + this.state = 7953; this.match(PostgreSqlParser.SEMI); } break; @@ -50486,25 +49232,25 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 7935; + this.state = 7956; this.match(PostgreSqlParser.KW_DO); - this.state = 7936; + this.state = 7957; this.anyIdentifier(); - this.state = 7937; + this.state = 7958; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7939; + this.state = 7960; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { + case 1: { - this.state = 7938; + this.state = 7959; this.exprList(); } + break; } - - this.state = 7941; + this.state = 7962; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7942; + this.state = 7963; this.match(PostgreSqlParser.SEMI); } break; @@ -50528,17 +49274,17 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtAssign(): StmtAssignContext { let localContext = new StmtAssignContext(this.context, this.state); - this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmtAssign); + this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 7946; + this.state = 7967; this.assignVar(); - this.state = 7947; + this.state = 7968; this.assignOperator(); - this.state = 7948; + this.state = 7969; this.sqlExpression(); - this.state = 7949; + this.state = 7970; this.match(PostgreSqlParser.SEMI); } } @@ -50558,19 +49304,19 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtGetdiag(): StmtGetdiagContext { let localContext = new StmtGetdiagContext(this.context, this.state); - this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtGetdiag); + this.enterRule(localContext, 862, PostgreSqlParser.RULE_stmtGetdiag); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7951; + this.state = 7972; this.match(PostgreSqlParser.KW_GET); - this.state = 7953; + this.state = 7974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 501) { { - this.state = 7952; + this.state = 7973; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 501)) { this.errorHandler.recoverInline(this); @@ -50582,29 +49328,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7955; + this.state = 7976; this.match(PostgreSqlParser.KW_DIAGNOSTICS); { - this.state = 7956; + this.state = 7977; this.getdiagListItem(); - this.state = 7961; + this.state = 7982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7957; + this.state = 7978; this.match(PostgreSqlParser.COMMA); - this.state = 7958; + this.state = 7979; this.getdiagListItem(); } } - this.state = 7963; + this.state = 7984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7964; + this.state = 7985; this.match(PostgreSqlParser.SEMI); } } @@ -50624,15 +49370,15 @@ export class PostgreSqlParser extends SQLParserBase { } public getdiagListItem(): GetdiagListItemContext { let localContext = new GetdiagListItemContext(this.context, this.state); - this.enterRule(localContext, 862, PostgreSqlParser.RULE_getdiagListItem); + this.enterRule(localContext, 864, PostgreSqlParser.RULE_getdiagListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 7966; + this.state = 7987; this.assignVar(); - this.state = 7967; + this.state = 7988; this.assignOperator(); - this.state = 7968; + this.state = 7989; this.colId(); } } @@ -50652,12 +49398,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assignVar(): AssignVarContext { let localContext = new AssignVarContext(this.context, this.state); - this.enterRule(localContext, 864, PostgreSqlParser.RULE_assignVar); + this.enterRule(localContext, 866, PostgreSqlParser.RULE_assignVar); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7972; + this.state = 7993; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -51055,34 +49801,34 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7970; + this.state = 7991; this.anyName(); } break; case PostgreSqlParser.PARAM: { - this.state = 7971; + this.state = 7992; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7980; + this.state = 8001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 7974; + this.state = 7995; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7975; + this.state = 7996; this.expression(); - this.state = 7976; + this.state = 7997; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 7982; + this.state = 8003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -51104,85 +49850,85 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtIf(): StmtIfContext { let localContext = new StmtIfContext(this.context, this.state); - this.enterRule(localContext, 866, PostgreSqlParser.RULE_stmtIf); + this.enterRule(localContext, 868, PostgreSqlParser.RULE_stmtIf); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7983; + this.state = 8004; this.match(PostgreSqlParser.KW_IF); - this.state = 7984; + this.state = 8005; this.sqlExpression(); - this.state = 7985; + this.state = 8006; this.match(PostgreSqlParser.KW_THEN); - this.state = 7989; + this.state = 8010; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7986; + this.state = 8007; this.procStmt(); } } } - this.state = 7991; + this.state = 8012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); } { - this.state = 8003; + this.state = 8024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 7992; + this.state = 8013; this.match(PostgreSqlParser.KW_ELSIF); - this.state = 7993; + this.state = 8014; this.expression(); - this.state = 7994; + this.state = 8015; this.match(PostgreSqlParser.KW_THEN); - this.state = 7998; + this.state = 8019; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7995; + this.state = 8016; this.procStmt(); } } } - this.state = 8000; + this.state = 8021; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context); } } } - this.state = 8005; + this.state = 8026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8007; + this.state = 8028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8006; + this.state = 8027; this.stmtElse(); } } - this.state = 8009; + this.state = 8030; this.match(PostgreSqlParser.KW_END); - this.state = 8010; + this.state = 8031; this.match(PostgreSqlParser.KW_IF); - this.state = 8011; + this.state = 8032; this.match(PostgreSqlParser.SEMI); } } @@ -51202,28 +49948,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtElse(): StmtElseContext { let localContext = new StmtElseContext(this.context, this.state); - this.enterRule(localContext, 868, PostgreSqlParser.RULE_stmtElse); + this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmtElse); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8013; + this.state = 8034; this.match(PostgreSqlParser.KW_ELSE); - this.state = 8017; + this.state = 8038; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8014; + this.state = 8035; this.procStmt(); } } } - this.state = 8019; + this.state = 8040; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context); } } } @@ -51243,73 +49989,73 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCase(): StmtCaseContext { let localContext = new StmtCaseContext(this.context, this.state); - this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmtCase); + this.enterRule(localContext, 872, PostgreSqlParser.RULE_stmtCase); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8020; + this.state = 8041; this.match(PostgreSqlParser.KW_CASE); - this.state = 8022; + this.state = 8043; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { case 1: { - this.state = 8021; + this.state = 8042; this.sqlExpression(); } break; } - this.state = 8033; + this.state = 8054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8024; + this.state = 8045; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8025; + this.state = 8046; this.exprList(); - this.state = 8026; + this.state = 8047; this.match(PostgreSqlParser.KW_THEN); - this.state = 8030; + this.state = 8051; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8027; + this.state = 8048; this.procStmt(); } } } - this.state = 8032; + this.state = 8053; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context); } } } - this.state = 8035; + this.state = 8056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8038; + this.state = 8059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8037; + this.state = 8058; this.stmtElse(); } } - this.state = 8040; + this.state = 8061; this.match(PostgreSqlParser.KW_END); - this.state = 8041; + this.state = 8062; this.match(PostgreSqlParser.KW_CASE); - this.state = 8042; + this.state = 8063; this.match(PostgreSqlParser.SEMI); } } @@ -51329,30 +50075,30 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtLoopWhileFor(): StmtLoopWhileForContext { let localContext = new StmtLoopWhileForContext(this.context, this.state); - this.enterRule(localContext, 872, PostgreSqlParser.RULE_stmtLoopWhileFor); + this.enterRule(localContext, 874, PostgreSqlParser.RULE_stmtLoopWhileFor); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8045; + this.state = 8066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8044; + this.state = 8065; this.labelDecl(); } } - this.state = 8051; + this.state = 8072; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WHILE: { { - this.state = 8047; + this.state = 8068; this.match(PostgreSqlParser.KW_WHILE); - this.state = 8048; + this.state = 8069; this.expression(); } } @@ -51360,9 +50106,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOR: { { - this.state = 8049; + this.state = 8070; this.match(PostgreSqlParser.KW_FOR); - this.state = 8050; + this.state = 8071; this.forControl(); } } @@ -51372,7 +50118,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 8053; + this.state = 8074; this.loopBody(); } } @@ -51392,28 +50138,28 @@ export class PostgreSqlParser extends SQLParserBase { } public forControl(): ForControlContext { let localContext = new ForControlContext(this.context, this.state); - this.enterRule(localContext, 874, PostgreSqlParser.RULE_forControl); + this.enterRule(localContext, 876, PostgreSqlParser.RULE_forControl); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8055; + this.state = 8076; this.anyNameList(); - this.state = 8056; + this.state = 8077; this.match(PostgreSqlParser.KW_IN); - this.state = 8079; + this.state = 8100; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 8057; + this.state = 8078; this.colId(); - this.state = 8059; + this.state = 8080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8058; + this.state = 8079; this.executeParamClause(); } } @@ -51422,30 +50168,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8061; + this.state = 8082; this.selectStmt(); } break; case 3: { - this.state = 8062; + this.state = 8083; this.explainStmt(); } break; case 4: { - this.state = 8063; + this.state = 8084; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8064; + this.state = 8085; this.expression(); - this.state = 8067; + this.state = 8088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8065; + this.state = 8086; this.match(PostgreSqlParser.KW_USING); - this.state = 8066; + this.state = 8087; this.exprList(); } } @@ -51454,30 +50200,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 8070; + this.state = 8091; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { case 1: { - this.state = 8069; + this.state = 8090; this.match(PostgreSqlParser.KW_REVERSE); } break; } - this.state = 8072; + this.state = 8093; this.expression(); - this.state = 8073; + this.state = 8094; this.match(PostgreSqlParser.DOT_DOT); - this.state = 8074; + this.state = 8095; this.expression(); - this.state = 8077; + this.state = 8098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 8075; + this.state = 8096; this.match(PostgreSqlParser.KW_BY); - this.state = 8076; + this.state = 8097; this.expression(); } } @@ -51503,44 +50249,44 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtForeach(): StmtForeachContext { let localContext = new StmtForeachContext(this.context, this.state); - this.enterRule(localContext, 876, PostgreSqlParser.RULE_stmtForeach); + this.enterRule(localContext, 878, PostgreSqlParser.RULE_stmtForeach); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8082; + this.state = 8103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8081; + this.state = 8102; this.labelDecl(); } } - this.state = 8084; + this.state = 8105; this.match(PostgreSqlParser.KW_FOREACH); - this.state = 8085; + this.state = 8106; this.anyNameList(); - this.state = 8088; + this.state = 8109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 8086; + this.state = 8107; this.match(PostgreSqlParser.KW_SLICE); - this.state = 8087; + this.state = 8108; this.match(PostgreSqlParser.Integral); } } - this.state = 8090; + this.state = 8111; this.match(PostgreSqlParser.KW_IN); - this.state = 8091; + this.state = 8112; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 8092; + this.state = 8113; this.expression(); - this.state = 8093; + this.state = 8114; this.loopBody(); } } @@ -51560,12 +50306,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtExit(): StmtExitContext { let localContext = new StmtExitContext(this.context, this.state); - this.enterRule(localContext, 878, PostgreSqlParser.RULE_stmtExit); + this.enterRule(localContext, 880, PostgreSqlParser.RULE_stmtExit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8095; + this.state = 8116; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -51574,29 +50320,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8097; + this.state = 8118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8096; + this.state = 8117; this.anyIdentifier(); } } - this.state = 8101; + this.state = 8122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 8099; + this.state = 8120; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8100; + this.state = 8121; this.sqlExpression(); } } - this.state = 8103; + this.state = 8124; this.match(PostgreSqlParser.SEMI); } } @@ -51616,39 +50362,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtReturn(): StmtReturnContext { let localContext = new StmtReturnContext(this.context, this.state); - this.enterRule(localContext, 880, PostgreSqlParser.RULE_stmtReturn); + this.enterRule(localContext, 882, PostgreSqlParser.RULE_stmtReturn); try { this.enterOuterAlt(localContext, 1); { - this.state = 8105; + this.state = 8126; this.match(PostgreSqlParser.KW_RETURN); - this.state = 8120; + this.state = 8141; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { case 1: { - this.state = 8106; + this.state = 8127; this.match(PostgreSqlParser.KW_NEXT); - this.state = 8107; + this.state = 8128; this.sqlExpression(); } break; case 2: { - this.state = 8108; + this.state = 8129; this.match(PostgreSqlParser.KW_QUERY); - this.state = 8115; + this.state = 8136; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: { - this.state = 8109; + this.state = 8130; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8110; + this.state = 8131; this.expression(); - this.state = 8111; + this.state = 8132; this.match(PostgreSqlParser.KW_USING); - this.state = 8112; + this.state = 8133; this.exprList(); } break; @@ -51658,7 +50404,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8114; + this.state = 8135; this.selectStmt(); } break; @@ -51669,12 +50415,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 8118; + this.state = 8139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { case 1: { - this.state = 8117; + this.state = 8138; this.sqlExpression(); } break; @@ -51682,7 +50428,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8122; + this.state = 8143; this.match(PostgreSqlParser.SEMI); } } @@ -51702,24 +50448,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtRaise(): StmtRaiseContext { let localContext = new StmtRaiseContext(this.context, this.state); - this.enterRule(localContext, 882, PostgreSqlParser.RULE_stmtRaise); + this.enterRule(localContext, 884, PostgreSqlParser.RULE_stmtRaise); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8124; + this.state = 8145; this.match(PostgreSqlParser.KW_RAISE); - this.state = 8154; + this.state = 8175; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context) ) { case 1: { - this.state = 8126; + this.state = 8147; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { case 1: { - this.state = 8125; + this.state = 8146; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -51731,21 +50477,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8140; + this.state = 8161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { case 1: { - this.state = 8128; + this.state = 8149; this.identifier(); } break; case 2: { { - this.state = 8129; + this.state = 8150; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8130; + this.state = 8151; this.stringConst(); } } @@ -51753,26 +50499,26 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 8131; + this.state = 8152; this.stringConst(); - this.state = 8138; + this.state = 8159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8134; + this.state = 8155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8132; + this.state = 8153; this.match(PostgreSqlParser.COMMA); - this.state = 8133; + this.state = 8154; this.expression(); } } - this.state = 8136; + this.state = 8157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -51783,29 +50529,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8151; + this.state = 8172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8142; + this.state = 8163; this.match(PostgreSqlParser.KW_USING); { - this.state = 8143; + this.state = 8164; this.optRaiseUsingElem(); - this.state = 8148; + this.state = 8169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8144; + this.state = 8165; this.match(PostgreSqlParser.COMMA); - this.state = 8145; + this.state = 8166; this.optRaiseUsingElem(); } } - this.state = 8150; + this.state = 8171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -51813,7 +50559,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 8153; + this.state = 8174; this.match(PostgreSqlParser.SEMI); } break; @@ -51836,15 +50582,15 @@ export class PostgreSqlParser extends SQLParserBase { } public optRaiseUsingElem(): OptRaiseUsingElemContext { let localContext = new OptRaiseUsingElemContext(this.context, this.state); - this.enterRule(localContext, 884, PostgreSqlParser.RULE_optRaiseUsingElem); + this.enterRule(localContext, 886, PostgreSqlParser.RULE_optRaiseUsingElem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8156; + this.state = 8177; this.identifier(); - this.state = 8157; + this.state = 8178; this.match(PostgreSqlParser.EQUAL); - this.state = 8158; + this.state = 8179; this.expression(); } } @@ -51864,28 +50610,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtAssert(): StmtAssertContext { let localContext = new StmtAssertContext(this.context, this.state); - this.enterRule(localContext, 886, PostgreSqlParser.RULE_stmtAssert); + this.enterRule(localContext, 888, PostgreSqlParser.RULE_stmtAssert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8160; + this.state = 8181; this.match(PostgreSqlParser.KW_ASSERT); - this.state = 8161; + this.state = 8182; this.sqlExpression(); - this.state = 8164; + this.state = 8185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8162; + this.state = 8183; this.match(PostgreSqlParser.COMMA); - this.state = 8163; + this.state = 8184; this.sqlExpression(); } } - this.state = 8166; + this.state = 8187; this.match(PostgreSqlParser.SEMI); } } @@ -51905,45 +50651,45 @@ export class PostgreSqlParser extends SQLParserBase { } public loopBody(): LoopBodyContext { let localContext = new LoopBodyContext(this.context, this.state); - this.enterRule(localContext, 888, PostgreSqlParser.RULE_loopBody); + this.enterRule(localContext, 890, PostgreSqlParser.RULE_loopBody); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8168; + this.state = 8189; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8172; + this.state = 8193; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8169; + this.state = 8190; this.procStmt(); } } } - this.state = 8174; + this.state = 8195; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context); } - this.state = 8175; + this.state = 8196; this.match(PostgreSqlParser.KW_END); - this.state = 8176; + this.state = 8197; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8178; + this.state = 8199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8177; + this.state = 8198; this.anyIdentifier(); } } - this.state = 8180; + this.state = 8201; this.match(PostgreSqlParser.SEMI); } } @@ -51963,24 +50709,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtExecsql(): StmtExecsqlContext { let localContext = new StmtExecsqlContext(this.context, this.state); - this.enterRule(localContext, 890, PostgreSqlParser.RULE_stmtExecsql); + this.enterRule(localContext, 892, PostgreSqlParser.RULE_stmtExecsql); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8182; + this.state = 8203; this.stmt(); - this.state = 8184; + this.state = 8205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8183; + this.state = 8204; this.optExecuteInto(); } } - this.state = 8186; + this.state = 8207; this.match(PostgreSqlParser.SEMI); } } @@ -52000,38 +50746,38 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtDynexecute(): StmtDynexecuteContext { let localContext = new StmtDynexecuteContext(this.context, this.state); - this.enterRule(localContext, 892, PostgreSqlParser.RULE_stmtDynexecute); + this.enterRule(localContext, 894, PostgreSqlParser.RULE_stmtDynexecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8188; + this.state = 8209; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8189; + this.state = 8210; this.expression(); - this.state = 8205; + this.state = 8226; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { case 1: { - this.state = 8191; + this.state = 8212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8190; + this.state = 8211; this.optExecuteInto(); } } - this.state = 8195; + this.state = 8216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8193; + this.state = 8214; this.match(PostgreSqlParser.KW_USING); - this.state = 8194; + this.state = 8215; this.exprList(); } } @@ -52040,24 +50786,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8199; + this.state = 8220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8197; + this.state = 8218; this.match(PostgreSqlParser.KW_USING); - this.state = 8198; + this.state = 8219; this.exprList(); } } - this.state = 8202; + this.state = 8223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8201; + this.state = 8222; this.optExecuteInto(); } } @@ -52070,7 +50816,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8207; + this.state = 8228; this.match(PostgreSqlParser.SEMI); } } @@ -52090,23 +50836,23 @@ export class PostgreSqlParser extends SQLParserBase { } public optExecuteInto(): OptExecuteIntoContext { let localContext = new OptExecuteIntoContext(this.context, this.state); - this.enterRule(localContext, 894, PostgreSqlParser.RULE_optExecuteInto); + this.enterRule(localContext, 896, PostgreSqlParser.RULE_optExecuteInto); try { this.enterOuterAlt(localContext, 1); { - this.state = 8209; + this.state = 8230; this.match(PostgreSqlParser.KW_INTO); - this.state = 8211; + this.state = 8232; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1138, this.context) ) { case 1: { - this.state = 8210; + this.state = 8231; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 8213; + this.state = 8234; this.exprList(); } } @@ -52126,43 +50872,43 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtOpen(): StmtOpenContext { let localContext = new StmtOpenContext(this.context, this.state); - this.enterRule(localContext, 896, PostgreSqlParser.RULE_stmtOpen); + this.enterRule(localContext, 898, PostgreSqlParser.RULE_stmtOpen); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8215; + this.state = 8236; this.match(PostgreSqlParser.KW_OPEN); - this.state = 8247; + this.state = 8268; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: { - this.state = 8216; + this.state = 8237; this.cursorVariable(); - this.state = 8221; + this.state = 8242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 8218; + this.state = 8239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8217; + this.state = 8238; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8220; + this.state = 8241; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 8223; + this.state = 8244; this.match(PostgreSqlParser.KW_FOR); - this.state = 8231; + this.state = 8252; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -52171,24 +50917,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8224; + this.state = 8245; this.selectStmt(); } break; case PostgreSqlParser.KW_EXECUTE: { - this.state = 8225; + this.state = 8246; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8226; + this.state = 8247; this.sqlExpression(); - this.state = 8229; + this.state = 8250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8227; + this.state = 8248; this.match(PostgreSqlParser.KW_USING); - this.state = 8228; + this.state = 8249; this.exprList(); } } @@ -52202,36 +50948,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8233; + this.state = 8254; this.colId(); - this.state = 8245; + this.state = 8266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8234; + this.state = 8255; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 8235; + this.state = 8256; this.optOpenBoundListItem(); - this.state = 8240; + this.state = 8261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8236; + this.state = 8257; this.match(PostgreSqlParser.COMMA); - this.state = 8237; + this.state = 8258; this.optOpenBoundListItem(); } } - this.state = 8242; + this.state = 8263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8243; + this.state = 8264; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -52239,7 +50985,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8249; + this.state = 8270; this.match(PostgreSqlParser.SEMI); } } @@ -52259,23 +51005,23 @@ export class PostgreSqlParser extends SQLParserBase { } public optOpenBoundListItem(): OptOpenBoundListItemContext { let localContext = new OptOpenBoundListItemContext(this.context, this.state); - this.enterRule(localContext, 898, PostgreSqlParser.RULE_optOpenBoundListItem); + this.enterRule(localContext, 900, PostgreSqlParser.RULE_optOpenBoundListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8254; + this.state = 8275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 8251; + this.state = 8272; this.colId(); - this.state = 8252; + this.state = 8273; this.match(PostgreSqlParser.COLON_EQUALS); } break; } - this.state = 8256; + this.state = 8277; this.expression(); } } @@ -52295,40 +51041,40 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtFetch(): StmtFetchContext { let localContext = new StmtFetchContext(this.context, this.state); - this.enterRule(localContext, 900, PostgreSqlParser.RULE_stmtFetch); + this.enterRule(localContext, 902, PostgreSqlParser.RULE_stmtFetch); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8258; + this.state = 8279; this.match(PostgreSqlParser.KW_FETCH); - this.state = 8260; + this.state = 8281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { case 1: { - this.state = 8259; + this.state = 8280; localContext._direction = this.optFetchFirection(); } break; } - this.state = 8263; + this.state = 8284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 8262; + this.state = 8283; this.fromIn(); } } - this.state = 8265; + this.state = 8286; this.cursorVariable(); - this.state = 8266; + this.state = 8287; this.match(PostgreSqlParser.KW_INTO); - this.state = 8267; + this.state = 8288; this.exprList(); - this.state = 8268; + this.state = 8289; this.match(PostgreSqlParser.SEMI); } } @@ -52348,49 +51094,49 @@ export class PostgreSqlParser extends SQLParserBase { } public optFetchFirection(): OptFetchFirectionContext { let localContext = new OptFetchFirectionContext(this.context, this.state); - this.enterRule(localContext, 902, PostgreSqlParser.RULE_optFetchFirection); + this.enterRule(localContext, 904, PostgreSqlParser.RULE_optFetchFirection); let _la: number; try { - this.state = 8284; + this.state = 8305; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8270; + this.state = 8291; this.match(PostgreSqlParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8271; + this.state = 8292; this.match(PostgreSqlParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8272; + this.state = 8293; this.match(PostgreSqlParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8273; + this.state = 8294; this.match(PostgreSqlParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8275; + this.state = 8296; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { case 1: { - this.state = 8274; + this.state = 8295; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -52402,21 +51148,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8277; + this.state = 8298; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8278; + this.state = 8299; this.match(PostgreSqlParser.KW_ALL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8279; + this.state = 8300; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -52425,18 +51171,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8282; + this.state = 8303; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { case 1: { - this.state = 8280; + this.state = 8301; this.expression(); } break; case 2: { - this.state = 8281; + this.state = 8302; this.match(PostgreSqlParser.KW_ALL); } break; @@ -52461,25 +51207,25 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtMove(): StmtMoveContext { let localContext = new StmtMoveContext(this.context, this.state); - this.enterRule(localContext, 904, PostgreSqlParser.RULE_stmtMove); + this.enterRule(localContext, 906, PostgreSqlParser.RULE_stmtMove); try { this.enterOuterAlt(localContext, 1); { - this.state = 8286; + this.state = 8307; this.match(PostgreSqlParser.KW_MOVE); - this.state = 8288; + this.state = 8309; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context) ) { case 1: { - this.state = 8287; + this.state = 8308; this.optFetchFirection(); } break; } - this.state = 8290; + this.state = 8311; this.cursorVariable(); - this.state = 8291; + this.state = 8312; this.match(PostgreSqlParser.SEMI); } } @@ -52499,95 +51245,95 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeStmt(): MergeStmtContext { let localContext = new MergeStmtContext(this.context, this.state); - this.enterRule(localContext, 906, PostgreSqlParser.RULE_mergeStmt); + this.enterRule(localContext, 908, PostgreSqlParser.RULE_mergeStmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8294; + this.state = 8315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8293; + this.state = 8314; this.withClause(); } } - this.state = 8296; + this.state = 8317; this.match(PostgreSqlParser.KW_MERGE); - this.state = 8297; + this.state = 8318; this.match(PostgreSqlParser.KW_INTO); - this.state = 8299; + this.state = 8320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8298; + this.state = 8319; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8301; + this.state = 8322; this.tableName(); - this.state = 8303; + this.state = 8324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8302; + this.state = 8323; this.match(PostgreSqlParser.STAR); } } - this.state = 8309; + this.state = 8330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8306; + this.state = 8327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8305; + this.state = 8326; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8308; + this.state = 8329; this.colId(); } } - this.state = 8311; + this.state = 8332; this.match(PostgreSqlParser.KW_USING); - this.state = 8312; + this.state = 8333; this.dataSource(); - this.state = 8313; + this.state = 8334; this.match(PostgreSqlParser.KW_ON); - this.state = 8314; + this.state = 8335; this.expression(); - this.state = 8316; + this.state = 8337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8315; + this.state = 8336; this.mergeWhenClause(); } } - this.state = 8318; + this.state = 8339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8321; + this.state = 8342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8320; + this.state = 8341; this.returningClause(); } } @@ -52610,34 +51356,34 @@ export class PostgreSqlParser extends SQLParserBase { } public dataSource(): DataSourceContext { let localContext = new DataSourceContext(this.context, this.state); - this.enterRule(localContext, 908, PostgreSqlParser.RULE_dataSource); + this.enterRule(localContext, 910, PostgreSqlParser.RULE_dataSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8334; + this.state = 8355; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1163, this.context) ) { case 1: { - this.state = 8324; + this.state = 8345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8323; + this.state = 8344; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8326; + this.state = 8347; this.tableName(); - this.state = 8328; + this.state = 8349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8327; + this.state = 8348; this.match(PostgreSqlParser.STAR); } } @@ -52646,18 +51392,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8332; + this.state = 8353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { case 1: { - this.state = 8330; + this.state = 8351; this.selectNoParens(); } break; case 2: { - this.state = 8331; + this.state = 8352; this.valuesClause(); } break; @@ -52665,22 +51411,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8340; + this.state = 8361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8337; + this.state = 8358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8336; + this.state = 8357; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8339; + this.state = 8360; this.colId(); } } @@ -52703,53 +51449,53 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeWhenClause(): MergeWhenClauseContext { let localContext = new MergeWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 910, PostgreSqlParser.RULE_mergeWhenClause); + this.enterRule(localContext, 912, PostgreSqlParser.RULE_mergeWhenClause); let _la: number; try { - this.state = 8368; + this.state = 8389; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1170, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8342; + this.state = 8363; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8343; + this.state = 8364; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8346; + this.state = 8367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8344; + this.state = 8365; this.match(PostgreSqlParser.KW_AND); - this.state = 8345; + this.state = 8366; this.expression(); } } - this.state = 8348; + this.state = 8369; this.match(PostgreSqlParser.KW_THEN); - this.state = 8353; + this.state = 8374; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 8349; + this.state = 8370; this.mergeUpdate(); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 8350; + this.state = 8371; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_DO: { - this.state = 8351; + this.state = 8372; this.match(PostgreSqlParser.KW_DO); - this.state = 8352; + this.state = 8373; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52761,40 +51507,40 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8355; + this.state = 8376; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8356; + this.state = 8377; this.match(PostgreSqlParser.KW_NOT); - this.state = 8357; + this.state = 8378; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8360; + this.state = 8381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8358; + this.state = 8379; this.match(PostgreSqlParser.KW_AND); - this.state = 8359; + this.state = 8380; this.expression(); } } - this.state = 8362; + this.state = 8383; this.match(PostgreSqlParser.KW_THEN); - this.state = 8366; + this.state = 8387; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: { - this.state = 8363; + this.state = 8384; this.mergeInsert(); } break; case PostgreSqlParser.KW_DO: { - this.state = 8364; + this.state = 8385; this.match(PostgreSqlParser.KW_DO); - this.state = 8365; + this.state = 8386; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52821,31 +51567,31 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeInsert(): MergeInsertContext { let localContext = new MergeInsertContext(this.context, this.state); - this.enterRule(localContext, 912, PostgreSqlParser.RULE_mergeInsert); + this.enterRule(localContext, 914, PostgreSqlParser.RULE_mergeInsert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8370; + this.state = 8391; this.match(PostgreSqlParser.KW_INSERT); - this.state = 8372; + this.state = 8393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8371; + this.state = 8392; this.optColumnList(); } } - this.state = 8377; + this.state = 8398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8374; + this.state = 8395; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 8375; + this.state = 8396; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -52854,12 +51600,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8376; + this.state = 8397; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 8379; + this.state = 8400; this.defaultValuesOrValues(); } } @@ -52879,63 +51625,63 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeUpdate(): MergeUpdateContext { let localContext = new MergeUpdateContext(this.context, this.state); - this.enterRule(localContext, 914, PostgreSqlParser.RULE_mergeUpdate); + this.enterRule(localContext, 916, PostgreSqlParser.RULE_mergeUpdate); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8381; + this.state = 8402; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 8382; + this.state = 8403; this.match(PostgreSqlParser.KW_SET); - this.state = 8400; + this.state = 8421; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 8400; + this.state = 8421; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1174, this.context) ) { case 1: { - this.state = 8383; + this.state = 8404; this.columnName(); - this.state = 8384; + this.state = 8405; this.match(PostgreSqlParser.EQUAL); - this.state = 8385; + this.state = 8406; this.exprofdefault(); } break; case 2: { - this.state = 8387; + this.state = 8408; this.optColumnList(); - this.state = 8388; + this.state = 8409; this.match(PostgreSqlParser.EQUAL); - this.state = 8389; + this.state = 8410; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8390; + this.state = 8411; this.exprofdefault(); - this.state = 8395; + this.state = 8416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8391; + this.state = 8412; this.match(PostgreSqlParser.COMMA); - this.state = 8392; + this.state = 8413; this.exprofdefault(); } } - this.state = 8397; + this.state = 8418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8398; + this.state = 8419; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -52945,9 +51691,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 8402; + this.state = 8423; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1175, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -52967,47 +51713,47 @@ export class PostgreSqlParser extends SQLParserBase { } public defaultValuesOrValues(): DefaultValuesOrValuesContext { let localContext = new DefaultValuesOrValuesContext(this.context, this.state); - this.enterRule(localContext, 916, PostgreSqlParser.RULE_defaultValuesOrValues); + this.enterRule(localContext, 918, PostgreSqlParser.RULE_defaultValuesOrValues); let _la: number; try { - this.state = 8418; + this.state = 8439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8404; + this.state = 8425; this.match(PostgreSqlParser.KW_VALUES); - this.state = 8405; + this.state = 8426; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8406; + this.state = 8427; this.exprofdefault(); - this.state = 8411; + this.state = 8432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8407; + this.state = 8428; this.match(PostgreSqlParser.COMMA); - this.state = 8408; + this.state = 8429; this.exprofdefault(); } } - this.state = 8413; + this.state = 8434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8414; + this.state = 8435; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 8416; + this.state = 8437; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8417; + this.state = 8438; this.match(PostgreSqlParser.KW_VALUES); } break; @@ -53031,22 +51777,22 @@ export class PostgreSqlParser extends SQLParserBase { } public exprofdefault(): ExprofdefaultContext { let localContext = new ExprofdefaultContext(this.context, this.state); - this.enterRule(localContext, 918, PostgreSqlParser.RULE_exprofdefault); + this.enterRule(localContext, 920, PostgreSqlParser.RULE_exprofdefault); try { - this.state = 8422; + this.state = 8443; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1175, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1178, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8420; + this.state = 8441; this.sortBy(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8421; + this.state = 8442; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -53068,15 +51814,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtClose(): StmtCloseContext { let localContext = new StmtCloseContext(this.context, this.state); - this.enterRule(localContext, 920, PostgreSqlParser.RULE_stmtClose); + this.enterRule(localContext, 922, PostgreSqlParser.RULE_stmtClose); try { this.enterOuterAlt(localContext, 1); { - this.state = 8424; + this.state = 8445; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 8425; + this.state = 8446; this.cursorVariable(); - this.state = 8426; + this.state = 8447; this.match(PostgreSqlParser.SEMI); } } @@ -53096,13 +51842,13 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtNull(): StmtNullContext { let localContext = new StmtNullContext(this.context, this.state); - this.enterRule(localContext, 922, PostgreSqlParser.RULE_stmtNull); + this.enterRule(localContext, 924, PostgreSqlParser.RULE_stmtNull); try { this.enterOuterAlt(localContext, 1); { - this.state = 8428; + this.state = 8449; this.match(PostgreSqlParser.KW_NULL); - this.state = 8429; + this.state = 8450; this.match(PostgreSqlParser.SEMI); } } @@ -53122,12 +51868,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCommitOrRollback(): StmtCommitOrRollbackContext { let localContext = new StmtCommitOrRollbackContext(this.context, this.state); - this.enterRule(localContext, 924, PostgreSqlParser.RULE_stmtCommitOrRollback); + this.enterRule(localContext, 926, PostgreSqlParser.RULE_stmtCommitOrRollback); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8431; + this.state = 8452; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -53136,29 +51882,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8437; + this.state = 8458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8432; + this.state = 8453; this.match(PostgreSqlParser.KW_AND); - this.state = 8434; + this.state = 8455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8433; + this.state = 8454; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8436; + this.state = 8457; this.match(PostgreSqlParser.KW_CHAIN); } } - this.state = 8439; + this.state = 8460; this.match(PostgreSqlParser.SEMI); } } @@ -53178,32 +51924,32 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtSet(): StmtSetContext { let localContext = new StmtSetContext(this.context, this.state); - this.enterRule(localContext, 926, PostgreSqlParser.RULE_stmtSet); + this.enterRule(localContext, 928, PostgreSqlParser.RULE_stmtSet); try { - this.state = 8453; + this.state = 8474; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 8441; + this.state = 8462; this.match(PostgreSqlParser.KW_SET); - this.state = 8442; + this.state = 8463; this.anyName(); - this.state = 8443; + this.state = 8464; this.match(PostgreSqlParser.KW_TO); - this.state = 8444; + this.state = 8465; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8445; + this.state = 8466; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 8447; + this.state = 8468; this.match(PostgreSqlParser.KW_RESET); - this.state = 8450; + this.state = 8471; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53601,20 +52347,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8448; + this.state = 8469; this.anyName(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 8449; + this.state = 8470; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8452; + this.state = 8473; this.match(PostgreSqlParser.SEMI); } break; @@ -53638,9 +52384,9 @@ export class PostgreSqlParser extends SQLParserBase { } public cursorVariable(): CursorVariableContext { let localContext = new CursorVariableContext(this.context, this.state); - this.enterRule(localContext, 928, PostgreSqlParser.RULE_cursorVariable); + this.enterRule(localContext, 930, PostgreSqlParser.RULE_cursorVariable); try { - this.state = 8457; + this.state = 8478; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -54039,14 +52785,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8455; + this.state = 8476; this.colId(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 8456; + this.state = 8477; this.match(PostgreSqlParser.PARAM); } break; @@ -54070,63 +52816,63 @@ export class PostgreSqlParser extends SQLParserBase { } public exceptionSect(): ExceptionSectContext { let localContext = new ExceptionSectContext(this.context, this.state); - this.enterRule(localContext, 930, PostgreSqlParser.RULE_exceptionSect); + this.enterRule(localContext, 932, PostgreSqlParser.RULE_exceptionSect); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8459; + this.state = 8480; this.match(PostgreSqlParser.KW_EXCEPTION); - this.state = 8476; + this.state = 8497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8460; + this.state = 8481; this.match(PostgreSqlParser.KW_WHEN); { - this.state = 8461; + this.state = 8482; this.procCondition(); - this.state = 8466; + this.state = 8487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 8462; + this.state = 8483; this.match(PostgreSqlParser.KW_OR); - this.state = 8463; + this.state = 8484; this.procCondition(); } } - this.state = 8468; + this.state = 8489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8469; + this.state = 8490; this.match(PostgreSqlParser.KW_THEN); - this.state = 8473; + this.state = 8494; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8470; + this.state = 8491; this.procStmt(); } } } - this.state = 8475; + this.state = 8496; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context); } } } - this.state = 8478; + this.state = 8499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -54148,24 +52894,24 @@ export class PostgreSqlParser extends SQLParserBase { } public procCondition(): ProcConditionContext { let localContext = new ProcConditionContext(this.context, this.state); - this.enterRule(localContext, 932, PostgreSqlParser.RULE_procCondition); + this.enterRule(localContext, 934, PostgreSqlParser.RULE_procCondition); try { - this.state = 8483; + this.state = 8504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1187, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8480; + this.state = 8501; this.anyIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8481; + this.state = 8502; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8482; + this.state = 8503; this.stringConst(); } break; @@ -54187,22 +52933,22 @@ export class PostgreSqlParser extends SQLParserBase { } public anyIdentifier(): AnyIdentifierContext { let localContext = new AnyIdentifierContext(this.context, this.state); - this.enterRule(localContext, 934, PostgreSqlParser.RULE_anyIdentifier); + this.enterRule(localContext, 936, PostgreSqlParser.RULE_anyIdentifier); try { - this.state = 8487; + this.state = 8508; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1188, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8485; + this.state = 8506; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8486; + this.state = 8507; this.unreservedKeyword(); } break; @@ -54224,77 +52970,77 @@ export class PostgreSqlParser extends SQLParserBase { } public sqlExpression(): SqlExpressionContext { let localContext = new SqlExpressionContext(this.context, this.state); - this.enterRule(localContext, 936, PostgreSqlParser.RULE_sqlExpression); + this.enterRule(localContext, 938, PostgreSqlParser.RULE_sqlExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8490; + this.state = 8511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1186, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1189, this.context) ) { case 1: { - this.state = 8489; + this.state = 8510; this.targetList(); } break; } - this.state = 8493; + this.state = 8514; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1187, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1190, this.context) ) { case 1: { - this.state = 8492; + this.state = 8513; this.intoClause(); } break; } - this.state = 8496; + this.state = 8517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8495; + this.state = 8516; this.fromClause(); } } - this.state = 8499; + this.state = 8520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8498; + this.state = 8519; this.whereClause(); } } - this.state = 8502; + this.state = 8523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8501; + this.state = 8522; this.groupClause(); } } - this.state = 8505; + this.state = 8526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8504; + this.state = 8525; this.havingClause(); } } - this.state = 8508; + this.state = 8529; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1192, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1195, this.context) ) { case 1: { - this.state = 8507; + this.state = 8528; this.windowClause(); } break; @@ -54324,8 +53070,10 @@ export class PostgreSqlParser extends SQLParserBase { return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 339: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 402: + case 403: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); + case 404: + return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); } return true; } @@ -54371,9 +53119,16 @@ export class PostgreSqlParser extends SQLParserBase { } return true; } + private columnNamePath_sempred(localContext: ColumnNamePathContext | null, predIndex: number): boolean { + switch (predIndex) { + case 11: + return this.shouldMatchEmpty(); + } + return true; + } public static readonly _serializedATN: number[] = [ - 4,1,592,8511,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,592,8532,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, @@ -54455,782 +53210,785 @@ export class PostgreSqlParser extends SQLParserBase { 7,450,2,451,7,451,2,452,7,452,2,453,7,453,2,454,7,454,2,455,7,455, 2,456,7,456,2,457,7,457,2,458,7,458,2,459,7,459,2,460,7,460,2,461, 7,461,2,462,7,462,2,463,7,463,2,464,7,464,2,465,7,465,2,466,7,466, - 2,467,7,467,2,468,7,468,1,0,5,0,940,8,0,10,0,12,0,943,9,0,1,0,1, - 0,1,1,1,1,3,1,949,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1069,8,2,3,2,1071, - 8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,3,4,1080,8,4,1,4,5,4,1083,8,4,10, - 4,12,4,1086,9,4,1,5,1,5,1,5,3,5,1091,8,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,1126,8,5,1,6,1,6, - 1,6,1,6,1,6,1,6,1,6,1,6,3,6,1136,8,6,1,7,1,7,1,7,1,7,3,7,1142,8, - 7,1,7,5,7,1145,8,7,10,7,12,7,1148,9,7,1,8,1,8,1,8,1,8,3,8,1154,8, - 8,1,8,5,8,1157,8,8,10,8,12,8,1160,9,8,1,9,1,9,1,9,1,9,3,9,1166,8, - 9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,3,10,1177,8,10,1,10,1, - 10,1,11,1,11,5,11,1183,8,11,10,11,12,11,1186,9,11,1,11,3,11,1189, - 8,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1201, - 8,11,1,11,1,11,1,11,1,11,3,11,1207,8,11,1,12,1,12,1,12,1,12,3,12, - 1213,8,12,1,12,1,12,3,12,1217,8,12,1,12,1,12,1,12,3,12,1222,8,12, - 1,12,1,12,3,12,1226,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, - 1,12,1,12,1,12,3,12,1239,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, - 1,12,3,12,1249,8,12,3,12,1251,8,12,1,13,1,13,1,13,1,13,3,13,1257, - 8,13,1,13,5,13,1260,8,13,10,13,12,13,1263,9,13,1,14,1,14,1,14,1, - 14,1,14,1,14,1,14,1,15,1,15,1,15,3,15,1275,8,15,1,15,3,15,1278,8, - 15,1,15,1,15,1,15,3,15,1283,8,15,1,15,5,15,1286,8,15,10,15,12,15, - 1289,9,15,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,3,17,1299,8,17, - 1,18,1,18,3,18,1303,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19, - 1,19,1,19,3,19,1315,8,19,1,20,1,20,3,20,1319,8,20,1,20,3,20,1322, - 8,20,1,20,1,20,3,20,1326,8,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21, - 1,21,1,21,1,21,3,21,1338,8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, - 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1356,8,21,1,22, - 1,22,1,22,5,22,1361,8,22,10,22,12,22,1364,9,22,1,23,1,23,1,23,5, - 23,1369,8,23,10,23,12,23,1372,9,23,1,24,1,24,3,24,1376,8,24,1,25, - 1,25,1,25,1,25,1,25,3,25,1383,8,25,1,26,1,26,1,26,1,26,1,26,1,26, - 3,26,1391,8,26,1,27,1,27,1,27,1,27,3,27,1397,8,27,1,28,1,28,1,28, - 1,28,1,28,1,28,3,28,1405,8,28,1,28,1,28,1,28,1,28,1,28,1,28,3,28, - 1413,8,28,1,29,1,29,3,29,1417,8,29,1,30,1,30,1,30,1,31,1,31,1,31, - 1,31,1,31,1,31,1,31,1,31,1,31,3,31,1431,8,31,1,32,1,32,1,32,3,32, - 1436,8,32,1,33,1,33,1,33,3,33,1441,8,33,1,34,1,34,1,34,1,34,1,34, - 1,34,1,34,1,34,1,34,1,34,3,34,1453,8,34,1,35,1,35,1,35,1,35,3,35, - 1459,8,35,1,35,1,35,1,36,1,36,1,37,1,37,1,37,1,38,1,38,1,38,3,38, - 1471,8,38,1,38,1,38,1,38,3,38,1476,8,38,1,38,1,38,1,38,1,38,1,38, - 1,38,1,38,1,38,3,38,1486,8,38,1,38,1,38,1,38,1,38,3,38,1492,8,38, - 1,38,1,38,1,38,3,38,1497,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, - 3,38,1506,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1513,8,38,1,38,1,38, - 1,38,3,38,1518,8,38,1,38,1,38,1,38,3,38,1523,8,38,1,38,1,38,1,38, - 1,38,1,38,1,38,1,38,1,38,3,38,1533,8,38,1,38,1,38,1,38,3,38,1538, - 8,38,1,38,1,38,1,38,3,38,1543,8,38,1,38,1,38,1,38,1,38,1,38,3,38, - 1550,8,38,1,38,1,38,3,38,1554,8,38,1,38,1,38,1,38,1,38,1,38,1,38, - 1,38,1,38,1,38,1,38,1,38,1,38,3,38,1568,8,38,1,38,1,38,1,38,1,38, - 3,38,1574,8,38,1,38,1,38,1,38,1,38,3,38,1580,8,38,1,38,1,38,1,38, - 3,38,1585,8,38,1,39,1,39,1,39,5,39,1590,8,39,10,39,12,39,1593,9, - 39,1,40,1,40,1,40,1,40,1,40,1,40,3,40,1601,8,40,1,41,1,41,1,41,1, - 41,1,42,1,42,1,42,3,42,1610,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1617, - 8,42,10,42,12,42,1620,9,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1628, - 8,42,1,42,1,42,3,42,1632,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,3,42,1644,8,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42, - 1652,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1662,8,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,3,42,1682,8,42,1,42,1,42,1,42,3,42,1687, - 8,42,1,42,3,42,1690,8,42,1,42,1,42,1,42,1,42,1,42,3,42,1697,8,42, - 1,42,3,42,1700,8,42,1,42,1,42,3,42,1704,8,42,1,42,1,42,3,42,1708, - 8,42,1,42,3,42,1711,8,42,1,42,1,42,1,42,3,42,1716,8,42,1,42,1,42, - 1,42,3,42,1721,8,42,1,42,1,42,3,42,1725,8,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,3,42,1734,8,42,1,42,1,42,1,42,1,42,3,42,1740,8,42, - 1,42,1,42,3,42,1744,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42, - 1753,8,42,1,42,3,42,1756,8,42,1,42,1,42,1,42,1,42,3,42,1762,8,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1771,8,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,4,42,1781,8,42,11,42,12,42,1782,1,42,1, - 42,3,42,1787,8,42,1,42,1,42,3,42,1791,8,42,1,42,1,42,1,42,3,42,1796, - 8,42,1,42,3,42,1799,8,42,1,42,1,42,1,42,1,42,3,42,1805,8,42,4,42, - 1807,8,42,11,42,12,42,1808,1,42,1,42,3,42,1813,8,42,1,42,1,42,1, - 42,1,42,3,42,1819,8,42,1,42,1,42,3,42,1823,8,42,1,42,1,42,1,42,3, - 42,1828,8,42,1,42,1,42,1,42,3,42,1833,8,42,1,42,1,42,3,42,1837,8, - 42,1,42,3,42,1840,8,42,1,43,1,43,1,43,1,43,1,43,3,43,1847,8,43,1, - 44,1,44,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46,1858,8,46,10,46, - 12,46,1861,9,46,1,46,1,46,1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48, - 3,48,1873,8,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,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49, - 3,49,1898,8,49,1,50,1,50,1,50,1,50,1,50,1,50,5,50,1906,8,50,10,50, - 12,50,1909,9,50,1,51,1,51,1,51,1,51,3,51,1915,8,51,1,51,1,51,1,51, - 3,51,1920,8,51,1,51,1,51,3,51,1924,8,51,1,51,1,51,1,51,1,51,1,51, - 3,51,1931,8,51,1,51,1,51,1,51,3,51,1936,8,51,1,51,3,51,1939,8,51, - 3,51,1941,8,51,1,52,1,52,1,52,3,52,1946,8,52,1,53,1,53,3,53,1950, - 8,53,1,53,1,53,3,53,1954,8,53,1,53,1,53,3,53,1958,8,53,1,53,1,53, - 1,53,3,53,1963,8,53,1,53,3,53,1966,8,53,1,53,1,53,3,53,1970,8,53, - 1,53,3,53,1973,8,53,1,53,1,53,3,53,1977,8,53,1,53,1,53,1,53,1,53, - 1,53,1,53,3,53,1985,8,53,1,53,1,53,1,53,3,53,1990,8,53,1,53,3,53, - 1993,8,53,1,53,1,53,3,53,1997,8,53,1,54,1,54,1,54,1,54,3,54,2003, - 8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2012,8,54,1,54,1,54, - 3,54,2016,8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2026, - 8,54,1,54,1,54,1,54,3,54,2031,8,54,5,54,2033,8,54,10,54,12,54,2036, - 9,54,1,54,3,54,2039,8,54,5,54,2041,8,54,10,54,12,54,2044,9,54,1, - 55,1,55,1,55,1,55,3,55,2050,8,55,1,55,1,55,1,55,3,55,2055,8,55,5, - 55,2057,8,55,10,55,12,55,2060,9,55,1,55,1,55,3,55,2064,8,55,1,56, - 1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,2074,8,56,10,56,12,56,2077, - 9,56,1,56,1,56,3,56,2081,8,56,1,57,1,57,3,57,2085,8,57,1,57,1,57, - 3,57,2089,8,57,1,57,1,57,1,57,3,57,2094,8,57,1,57,1,57,3,57,2098, - 8,57,1,57,3,57,2101,8,57,1,57,3,57,2104,8,57,1,57,3,57,2107,8,57, - 1,57,3,57,2110,8,57,1,57,3,57,2113,8,57,1,57,1,57,1,57,3,57,2118, - 8,57,1,57,3,57,2121,8,57,1,57,3,57,2124,8,57,1,57,3,57,2127,8,57, - 1,57,3,57,2130,8,57,1,57,3,57,2133,8,57,1,57,1,57,1,57,1,57,3,57, - 2139,8,57,1,57,1,57,3,57,2143,8,57,1,57,3,57,2146,8,57,1,57,3,57, - 2149,8,57,1,57,3,57,2152,8,57,1,57,3,57,2155,8,57,3,57,2157,8,57, - 1,58,1,58,1,58,1,58,1,58,3,58,2164,8,58,1,59,1,59,1,59,1,59,5,59, - 2170,8,59,10,59,12,59,2173,9,59,1,59,1,59,1,60,1,60,1,60,5,60,2180, - 8,60,10,60,12,60,2183,9,60,1,61,1,61,3,61,2187,8,61,1,61,1,61,1, - 61,1,61,1,61,1,61,5,61,2195,8,61,10,61,12,61,2198,9,61,3,61,2200, - 8,61,1,62,1,62,1,62,3,62,2205,8,62,1,62,5,62,2208,8,62,10,62,12, - 62,2211,9,62,1,62,1,62,3,62,2215,8,62,1,62,3,62,2218,8,62,1,63,1, - 63,1,63,3,63,2223,8,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2232, - 8,63,3,63,2234,8,63,1,63,1,63,3,63,2238,8,63,1,63,3,63,2241,8,63, - 1,63,1,63,3,63,2245,8,63,1,63,5,63,2248,8,63,10,63,12,63,2251,9, - 63,1,64,1,64,3,64,2255,8,64,1,64,1,64,3,64,2259,8,64,1,64,3,64,2262, - 8,64,1,64,1,64,3,64,2266,8,64,1,65,3,65,2269,8,65,1,65,1,65,1,65, - 3,65,2274,8,65,1,65,3,65,2277,8,65,1,65,1,65,1,65,3,65,2282,8,65, - 1,65,3,65,2285,8,65,1,65,1,65,3,65,2289,8,65,1,65,3,65,2292,8,65, - 1,65,3,65,2295,8,65,1,65,1,65,1,65,3,65,2300,8,65,1,65,3,65,2303, - 8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,2311,8,65,1,65,1,65,1,65, - 1,65,1,65,1,65,1,65,1,65,4,65,2321,8,65,11,65,12,65,2322,1,65,1, - 65,3,65,2327,8,65,1,65,1,65,1,65,1,65,1,65,3,65,2334,8,65,1,65,1, - 65,1,65,3,65,2339,8,65,1,65,3,65,2342,8,65,1,65,3,65,2345,8,65,1, - 65,3,65,2348,8,65,1,66,1,66,1,66,3,66,2353,8,66,1,67,1,67,1,68,1, - 68,1,68,1,68,1,68,5,68,2362,8,68,10,68,12,68,2365,9,68,1,68,1,68, - 1,68,3,68,2370,8,68,1,68,1,68,3,68,2374,8,68,1,68,3,68,2377,8,68, - 1,68,3,68,2380,8,68,1,68,5,68,2383,8,68,10,68,12,68,2386,9,68,1, - 68,1,68,5,68,2390,8,68,10,68,12,68,2393,9,68,3,68,2395,8,68,1,68, - 1,68,3,68,2399,8,68,1,68,1,68,1,68,1,68,5,68,2405,8,68,10,68,12, - 68,2408,9,68,1,68,1,68,3,68,2412,8,68,1,68,3,68,2415,8,68,1,68,3, - 68,2418,8,68,1,68,1,68,1,68,1,68,1,68,3,68,2425,8,68,1,68,5,68,2428, - 8,68,10,68,12,68,2431,9,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,2439, - 8,68,1,68,3,68,2442,8,68,1,68,3,68,2445,8,68,1,68,5,68,2448,8,68, - 10,68,12,68,2451,9,68,3,68,2453,8,68,1,69,1,69,1,69,1,69,1,70,1, - 70,1,70,1,70,5,70,2463,8,70,10,70,12,70,2466,9,70,1,70,1,70,1,71, - 1,71,1,71,5,71,2473,8,71,10,71,12,71,2476,9,71,1,72,1,72,1,72,1, - 73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,2492,8, - 74,1,75,1,75,3,75,2496,8,75,1,75,1,75,3,75,2500,8,75,3,75,2502,8, - 75,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1, - 78,1,78,1,78,3,78,2519,8,78,3,78,2521,8,78,1,79,1,79,1,79,1,79,1, - 79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2535,8,80,10,80,12,80, - 2538,9,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2548,8,81, - 1,81,3,81,2551,8,81,1,81,3,81,2554,8,81,1,82,1,82,1,82,1,83,1,83, - 1,83,1,83,3,83,2563,8,83,1,84,1,84,1,84,1,84,1,84,1,84,1,84,3,84, - 2572,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87, - 1,88,1,88,1,88,3,88,2588,8,88,1,88,3,88,2591,8,88,1,88,3,88,2594, - 8,88,1,88,1,88,1,88,1,88,5,88,2600,8,88,10,88,12,88,2603,9,88,1, - 88,3,88,2606,8,88,1,88,1,88,1,89,1,89,1,89,3,89,2613,8,89,1,89,1, - 89,1,89,1,89,1,89,1,90,1,90,3,90,2622,8,90,1,90,1,90,3,90,2626,8, - 90,1,90,1,90,1,90,1,90,3,90,2632,8,90,1,91,1,91,3,91,2636,8,91,1, - 91,3,91,2639,8,91,1,91,3,91,2642,8,91,1,91,3,91,2645,8,91,1,91,3, - 91,2648,8,91,1,92,1,92,1,92,1,92,3,92,2654,8,92,1,93,1,93,3,93,2658, - 8,93,1,93,1,93,1,93,3,93,2663,8,93,1,93,1,93,3,93,2667,8,93,1,93, - 3,93,2670,8,93,1,93,3,93,2673,8,93,1,93,3,93,2676,8,93,1,93,1,93, - 1,93,3,93,2681,8,93,1,94,1,94,1,94,1,94,3,94,2687,8,94,1,94,1,94, - 3,94,2691,8,94,1,95,1,95,3,95,2695,8,95,1,95,1,95,3,95,2699,8,95, - 1,95,1,95,4,95,2703,8,95,11,95,12,95,2704,3,95,2707,8,95,1,96,1, - 96,1,96,3,96,2712,8,96,1,96,1,96,4,96,2716,8,96,11,96,12,96,2717, - 1,97,1,97,1,97,1,97,3,97,2724,8,97,1,97,1,97,3,97,2728,8,97,1,97, - 1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97, - 2743,8,97,1,97,1,97,1,97,3,97,2748,8,97,1,97,3,97,2751,8,97,3,97, - 2753,8,97,1,98,3,98,2756,8,98,1,98,1,98,3,98,2760,8,98,1,99,1,99, - 3,99,2764,8,99,1,99,3,99,2767,8,99,1,99,3,99,2770,8,99,1,99,1,99, - 1,99,1,99,1,99,1,99,3,99,2778,8,99,1,99,1,99,1,99,1,99,3,99,2784, - 8,99,3,99,2786,8,99,1,100,1,100,1,100,1,100,3,100,2792,8,100,1,100, - 1,100,1,100,3,100,2797,8,100,1,101,1,101,1,101,3,101,2802,8,101, - 1,101,1,101,3,101,2806,8,101,1,101,1,101,1,101,1,101,1,101,5,101, - 2813,8,101,10,101,12,101,2816,9,101,1,102,1,102,1,102,1,102,1,102, - 1,102,5,102,2824,8,102,10,102,12,102,2827,9,102,1,103,1,103,1,103, + 2,467,7,467,2,468,7,468,2,469,7,469,1,0,5,0,942,8,0,10,0,12,0,945, + 9,0,1,0,1,0,1,1,1,1,3,1,951,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1071, + 8,2,3,2,1073,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,3,4,1082,8,4,1,4,5, + 4,1085,8,4,10,4,12,4,1088,9,4,1,5,1,5,1,5,3,5,1093,8,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,1128, + 8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1138,8,6,1,7,1,7,1,7,1,7, + 3,7,1144,8,7,1,7,5,7,1147,8,7,10,7,12,7,1150,9,7,1,8,1,8,1,8,1,8, + 3,8,1156,8,8,1,8,5,8,1159,8,8,10,8,12,8,1162,9,8,1,9,1,9,1,9,1,9, + 3,9,1168,8,9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,3,10,1179,8, + 10,1,10,1,10,1,11,1,11,5,11,1185,8,11,10,11,12,11,1188,9,11,1,11, + 3,11,1191,8,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11, + 3,11,1203,8,11,1,11,1,11,1,11,1,11,3,11,1209,8,11,1,12,1,12,1,12, + 1,12,3,12,1215,8,12,1,12,1,12,3,12,1219,8,12,1,12,1,12,1,12,3,12, + 1224,8,12,1,12,1,12,3,12,1228,8,12,1,12,1,12,1,12,1,12,1,12,1,12, + 1,12,1,12,1,12,1,12,1,12,3,12,1241,8,12,1,12,1,12,1,12,1,12,1,12, + 1,12,1,12,1,12,3,12,1251,8,12,3,12,1253,8,12,1,13,1,13,1,13,1,13, + 3,13,1259,8,13,1,13,5,13,1262,8,13,10,13,12,13,1265,9,13,1,14,1, + 14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,3,15,1277,8,15,1,15,3, + 15,1280,8,15,1,15,1,15,1,15,3,15,1285,8,15,1,15,5,15,1288,8,15,10, + 15,12,15,1291,9,15,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,3,17, + 1301,8,17,1,18,1,18,3,18,1305,8,18,1,18,1,18,1,19,1,19,1,19,1,19, + 1,19,1,19,1,19,1,19,3,19,1317,8,19,1,20,1,20,3,20,1321,8,20,1,20, + 3,20,1324,8,20,1,20,1,20,3,20,1328,8,20,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,1,21,1,21,3,21,1340,8,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1358, + 8,21,1,22,1,22,1,22,5,22,1363,8,22,10,22,12,22,1366,9,22,1,23,1, + 23,1,23,5,23,1371,8,23,10,23,12,23,1374,9,23,1,24,1,24,3,24,1378, + 8,24,1,25,1,25,1,25,1,25,1,25,3,25,1385,8,25,1,26,1,26,1,26,1,26, + 1,26,1,26,3,26,1393,8,26,1,27,1,27,1,27,1,27,3,27,1399,8,27,1,28, + 1,28,1,28,1,28,1,28,1,28,3,28,1407,8,28,1,28,1,28,1,28,1,28,1,28, + 1,28,3,28,1415,8,28,1,29,1,29,3,29,1419,8,29,1,30,1,30,1,30,1,31, + 1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,3,31,1433,8,31,1,32,1,32, + 1,32,3,32,1438,8,32,1,33,1,33,1,33,3,33,1443,8,33,1,34,1,34,1,34, + 1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,1455,8,34,1,35,1,35,1,35, + 1,35,3,35,1461,8,35,1,35,1,35,1,36,1,36,1,37,1,37,1,37,1,38,1,38, + 1,38,3,38,1473,8,38,1,38,1,38,1,38,3,38,1478,8,38,1,38,1,38,1,38, + 1,38,1,38,1,38,1,38,1,38,3,38,1488,8,38,1,38,1,38,1,38,1,38,3,38, + 1494,8,38,1,38,1,38,1,38,3,38,1499,8,38,1,38,1,38,1,38,1,38,1,38, + 1,38,1,38,3,38,1508,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1515,8,38, + 1,38,1,38,1,38,3,38,1520,8,38,1,38,1,38,1,38,3,38,1525,8,38,1,38, + 1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1535,8,38,1,38,1,38,1,38, + 3,38,1540,8,38,1,38,1,38,1,38,3,38,1545,8,38,1,38,1,38,1,38,1,38, + 1,38,3,38,1552,8,38,1,38,1,38,3,38,1556,8,38,1,38,1,38,1,38,1,38, + 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1570,8,38,1,38,1,38, + 1,38,1,38,3,38,1576,8,38,1,38,1,38,1,38,1,38,3,38,1582,8,38,1,38, + 1,38,1,38,3,38,1587,8,38,1,39,1,39,1,39,5,39,1592,8,39,10,39,12, + 39,1595,9,39,1,40,1,40,1,40,1,40,1,40,1,40,3,40,1603,8,40,1,41,1, + 41,1,41,1,41,1,42,1,42,1,42,3,42,1612,8,42,1,42,1,42,1,42,1,42,1, + 42,5,42,1619,8,42,10,42,12,42,1622,9,42,1,42,1,42,1,42,1,42,1,42, + 1,42,3,42,1630,8,42,1,42,1,42,3,42,1634,8,42,1,42,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,42,1,42,3,42,1646,8,42,1,42,1,42,1,42,1,42, + 1,42,1,42,3,42,1654,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, + 3,42,1664,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1684,8,42,1,42,1,42, + 1,42,3,42,1689,8,42,1,42,3,42,1692,8,42,1,42,1,42,1,42,1,42,1,42, + 3,42,1699,8,42,1,42,3,42,1702,8,42,1,42,1,42,3,42,1706,8,42,1,42, + 1,42,3,42,1710,8,42,1,42,3,42,1713,8,42,1,42,1,42,1,42,3,42,1718, + 8,42,1,42,1,42,1,42,3,42,1723,8,42,1,42,1,42,3,42,1727,8,42,1,42, + 1,42,1,42,1,42,1,42,1,42,1,42,3,42,1736,8,42,1,42,1,42,1,42,1,42, + 3,42,1742,8,42,1,42,1,42,3,42,1746,8,42,1,42,1,42,1,42,1,42,1,42, + 1,42,1,42,3,42,1755,8,42,1,42,3,42,1758,8,42,1,42,1,42,1,42,1,42, + 3,42,1764,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1773,8,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,4,42,1783,8,42,11,42,12, + 42,1784,1,42,1,42,3,42,1789,8,42,1,42,1,42,3,42,1793,8,42,1,42,1, + 42,1,42,3,42,1798,8,42,1,42,3,42,1801,8,42,1,42,1,42,1,42,1,42,3, + 42,1807,8,42,4,42,1809,8,42,11,42,12,42,1810,1,42,1,42,3,42,1815, + 8,42,1,42,1,42,1,42,1,42,3,42,1821,8,42,1,42,1,42,3,42,1825,8,42, + 1,42,1,42,1,42,3,42,1830,8,42,1,42,1,42,1,42,3,42,1835,8,42,1,42, + 1,42,3,42,1839,8,42,1,42,3,42,1842,8,42,1,43,1,43,1,43,1,43,1,43, + 3,43,1849,8,43,1,44,1,44,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46, + 1860,8,46,10,46,12,46,1863,9,46,1,46,1,46,1,47,1,47,1,47,1,48,1, + 48,1,48,1,48,1,48,3,48,1875,8,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,49,1,49,1,49,1,49,1,49,1,49,1,49,1, + 49,1,49,1,49,1,49,3,49,1900,8,49,1,50,1,50,1,50,1,50,1,50,1,50,5, + 50,1908,8,50,10,50,12,50,1911,9,50,1,51,1,51,1,51,1,51,3,51,1917, + 8,51,1,51,1,51,1,51,3,51,1922,8,51,1,51,1,51,3,51,1926,8,51,1,51, + 1,51,1,51,1,51,1,51,3,51,1933,8,51,1,51,1,51,1,51,3,51,1938,8,51, + 1,51,3,51,1941,8,51,3,51,1943,8,51,1,52,1,52,1,52,3,52,1948,8,52, + 1,53,1,53,3,53,1952,8,53,1,53,1,53,3,53,1956,8,53,1,53,1,53,3,53, + 1960,8,53,1,53,1,53,1,53,3,53,1965,8,53,1,53,3,53,1968,8,53,1,53, + 1,53,3,53,1972,8,53,1,53,3,53,1975,8,53,1,53,1,53,3,53,1979,8,53, + 1,53,1,53,1,53,1,53,1,53,1,53,3,53,1987,8,53,1,53,1,53,1,53,3,53, + 1992,8,53,1,53,3,53,1995,8,53,1,53,1,53,3,53,1999,8,53,1,54,1,54, + 1,54,1,54,3,54,2005,8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54, + 2014,8,54,1,54,1,54,3,54,2018,8,54,1,54,1,54,1,54,1,54,1,54,1,54, + 1,54,1,54,3,54,2028,8,54,1,54,1,54,1,54,3,54,2033,8,54,5,54,2035, + 8,54,10,54,12,54,2038,9,54,1,54,3,54,2041,8,54,5,54,2043,8,54,10, + 54,12,54,2046,9,54,1,55,1,55,1,55,1,55,3,55,2052,8,55,1,55,1,55, + 1,55,3,55,2057,8,55,5,55,2059,8,55,10,55,12,55,2062,9,55,1,55,1, + 55,3,55,2066,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,2076, + 8,56,10,56,12,56,2079,9,56,1,56,1,56,3,56,2083,8,56,1,57,1,57,3, + 57,2087,8,57,1,57,1,57,3,57,2091,8,57,1,57,1,57,1,57,3,57,2096,8, + 57,1,57,1,57,3,57,2100,8,57,1,57,3,57,2103,8,57,1,57,3,57,2106,8, + 57,1,57,3,57,2109,8,57,1,57,3,57,2112,8,57,1,57,3,57,2115,8,57,1, + 57,1,57,1,57,3,57,2120,8,57,1,57,3,57,2123,8,57,1,57,3,57,2126,8, + 57,1,57,3,57,2129,8,57,1,57,3,57,2132,8,57,1,57,3,57,2135,8,57,1, + 57,1,57,1,57,1,57,3,57,2141,8,57,1,57,1,57,3,57,2145,8,57,1,57,3, + 57,2148,8,57,1,57,3,57,2151,8,57,1,57,3,57,2154,8,57,1,57,3,57,2157, + 8,57,3,57,2159,8,57,1,58,1,58,1,58,1,58,1,58,3,58,2166,8,58,1,59, + 1,59,1,59,1,59,5,59,2172,8,59,10,59,12,59,2175,9,59,1,59,1,59,1, + 60,1,60,1,60,5,60,2182,8,60,10,60,12,60,2185,9,60,1,61,1,61,3,61, + 2189,8,61,1,61,1,61,1,61,1,61,1,61,1,61,5,61,2197,8,61,10,61,12, + 61,2200,9,61,3,61,2202,8,61,1,62,1,62,1,62,3,62,2207,8,62,1,62,5, + 62,2210,8,62,10,62,12,62,2213,9,62,1,62,1,62,3,62,2217,8,62,1,62, + 3,62,2220,8,62,1,63,1,63,1,63,3,63,2225,8,63,1,63,1,63,1,63,1,63, + 1,63,1,63,1,63,3,63,2234,8,63,3,63,2236,8,63,1,63,1,63,3,63,2240, + 8,63,1,63,3,63,2243,8,63,1,63,1,63,3,63,2247,8,63,1,63,5,63,2250, + 8,63,10,63,12,63,2253,9,63,1,64,1,64,3,64,2257,8,64,1,64,1,64,3, + 64,2261,8,64,1,64,3,64,2264,8,64,1,64,1,64,3,64,2268,8,64,1,65,3, + 65,2271,8,65,1,65,1,65,1,65,3,65,2276,8,65,1,65,3,65,2279,8,65,1, + 65,1,65,1,65,3,65,2284,8,65,1,65,3,65,2287,8,65,1,65,1,65,3,65,2291, + 8,65,1,65,3,65,2294,8,65,1,65,3,65,2297,8,65,1,65,1,65,1,65,3,65, + 2302,8,65,1,65,3,65,2305,8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65, + 2313,8,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,4,65,2323,8,65, + 11,65,12,65,2324,1,65,1,65,3,65,2329,8,65,1,65,1,65,1,65,1,65,1, + 65,3,65,2336,8,65,1,65,1,65,1,65,3,65,2341,8,65,1,65,3,65,2344,8, + 65,1,65,3,65,2347,8,65,1,65,3,65,2350,8,65,1,66,1,66,1,66,3,66,2355, + 8,66,1,67,1,67,1,68,1,68,1,68,1,68,1,68,5,68,2364,8,68,10,68,12, + 68,2367,9,68,1,68,1,68,1,68,3,68,2372,8,68,1,68,1,68,3,68,2376,8, + 68,1,68,3,68,2379,8,68,1,68,3,68,2382,8,68,1,68,5,68,2385,8,68,10, + 68,12,68,2388,9,68,1,68,1,68,5,68,2392,8,68,10,68,12,68,2395,9,68, + 3,68,2397,8,68,1,68,1,68,3,68,2401,8,68,1,68,1,68,1,68,1,68,5,68, + 2407,8,68,10,68,12,68,2410,9,68,1,68,1,68,3,68,2414,8,68,1,68,3, + 68,2417,8,68,1,68,3,68,2420,8,68,1,68,1,68,1,68,1,68,1,68,3,68,2427, + 8,68,1,68,5,68,2430,8,68,10,68,12,68,2433,9,68,1,68,1,68,1,68,1, + 68,1,68,1,68,3,68,2441,8,68,1,68,3,68,2444,8,68,1,68,3,68,2447,8, + 68,1,68,5,68,2450,8,68,10,68,12,68,2453,9,68,3,68,2455,8,68,1,69, + 1,69,1,69,1,69,1,70,1,70,1,70,1,70,5,70,2465,8,70,10,70,12,70,2468, + 9,70,1,70,1,70,1,71,1,71,1,71,5,71,2475,8,71,10,71,12,71,2478,9, + 71,1,72,1,72,1,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1, + 74,1,74,3,74,2494,8,74,1,75,1,75,3,75,2498,8,75,1,75,1,75,3,75,2502, + 8,75,3,75,2504,8,75,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,78, + 1,78,1,78,1,78,1,78,1,78,1,78,3,78,2521,8,78,3,78,2523,8,78,1,79, + 1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2537, + 8,80,10,80,12,80,2540,9,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1, + 81,3,81,2550,8,81,1,81,3,81,2553,8,81,1,81,3,81,2556,8,81,1,82,1, + 82,1,82,1,83,1,83,1,83,1,83,3,83,2565,8,83,1,84,1,84,1,84,1,84,1, + 84,1,84,1,84,3,84,2574,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1, + 87,1,87,1,87,1,87,1,88,1,88,1,88,3,88,2590,8,88,1,88,3,88,2593,8, + 88,1,88,3,88,2596,8,88,1,88,1,88,1,88,1,88,5,88,2602,8,88,10,88, + 12,88,2605,9,88,1,88,3,88,2608,8,88,1,88,1,88,1,89,1,89,1,89,3,89, + 2615,8,89,1,89,1,89,1,89,1,89,1,89,1,90,1,90,3,90,2624,8,90,1,90, + 1,90,3,90,2628,8,90,1,90,1,90,1,90,1,90,3,90,2634,8,90,1,91,1,91, + 3,91,2638,8,91,1,91,3,91,2641,8,91,1,91,3,91,2644,8,91,1,91,3,91, + 2647,8,91,1,91,3,91,2650,8,91,1,92,1,92,1,92,1,92,3,92,2656,8,92, + 1,93,1,93,3,93,2660,8,93,1,93,1,93,1,93,3,93,2665,8,93,1,93,1,93, + 3,93,2669,8,93,1,93,3,93,2672,8,93,1,93,3,93,2675,8,93,1,93,3,93, + 2678,8,93,1,93,1,93,1,93,3,93,2683,8,93,1,94,1,94,1,94,1,94,3,94, + 2689,8,94,1,94,1,94,3,94,2693,8,94,1,95,1,95,3,95,2697,8,95,1,95, + 1,95,3,95,2701,8,95,1,95,1,95,4,95,2705,8,95,11,95,12,95,2706,3, + 95,2709,8,95,1,96,1,96,1,96,3,96,2714,8,96,1,96,1,96,4,96,2718,8, + 96,11,96,12,96,2719,1,97,1,97,1,97,1,97,3,97,2726,8,97,1,97,1,97, + 3,97,2730,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97, + 1,97,1,97,1,97,3,97,2745,8,97,1,97,1,97,1,97,3,97,2750,8,97,1,97, + 3,97,2753,8,97,3,97,2755,8,97,1,98,3,98,2758,8,98,1,98,1,98,3,98, + 2762,8,98,1,99,1,99,3,99,2766,8,99,1,99,3,99,2769,8,99,1,99,3,99, + 2772,8,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,2780,8,99,1,99,1,99, + 1,99,1,99,3,99,2786,8,99,3,99,2788,8,99,1,100,1,100,1,100,1,100, + 3,100,2794,8,100,1,100,1,100,1,100,3,100,2799,8,100,1,101,1,101, + 1,101,3,101,2804,8,101,1,101,1,101,3,101,2808,8,101,1,101,1,101, + 1,101,1,101,1,101,5,101,2815,8,101,10,101,12,101,2818,9,101,1,102, + 1,102,1,102,1,102,1,102,1,102,5,102,2826,8,102,10,102,12,102,2829, + 9,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,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,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,103,1,103,1,103,1,103, - 3,103,2865,8,103,1,104,1,104,1,104,1,104,1,104,1,104,4,104,2873, - 8,104,11,104,12,104,2874,3,104,2877,8,104,1,104,3,104,2880,8,104, - 1,105,1,105,3,105,2884,8,105,1,105,1,105,3,105,2888,8,105,1,106, - 1,106,1,106,1,106,1,106,1,106,4,106,2896,8,106,11,106,12,106,2897, - 3,106,2900,8,106,1,106,1,106,4,106,2904,8,106,11,106,12,106,2905, - 3,106,2908,8,106,1,107,1,107,1,107,1,107,1,107,5,107,2915,8,107, - 10,107,12,107,2918,9,107,1,107,1,107,1,108,1,108,1,108,1,108,1,108, - 5,108,2927,8,108,10,108,12,108,2930,9,108,1,108,1,108,1,109,1,109, - 1,109,1,110,1,110,1,110,1,111,1,111,1,111,3,111,2943,8,111,1,111, - 1,111,1,111,3,111,2948,8,111,1,111,3,111,2951,8,111,1,111,1,111, - 1,111,1,111,1,111,3,111,2958,8,111,1,112,1,112,1,112,3,112,2963, - 8,112,1,113,1,113,1,113,1,113,1,113,1,113,3,113,2971,8,113,3,113, - 2973,8,113,1,114,1,114,1,114,1,114,3,114,2979,8,114,1,114,1,114, - 1,114,3,114,2984,8,114,1,114,1,114,3,114,2988,8,114,1,114,1,114, - 1,114,3,114,2993,8,114,1,114,1,114,1,114,1,114,3,114,2999,8,114, - 1,114,1,114,1,114,1,114,1,114,3,114,3006,8,114,1,114,1,114,1,114, - 1,114,3,114,3012,8,114,3,114,3014,8,114,1,115,1,115,1,115,1,115, - 1,115,1,115,1,115,3,115,3023,8,115,1,115,1,115,1,115,1,115,3,115, - 3029,8,115,1,115,1,115,1,115,1,115,1,115,1,115,3,115,3037,8,115, - 1,116,1,116,1,116,1,116,3,116,3043,8,116,1,116,1,116,1,116,3,116, - 3048,8,116,1,116,1,116,1,116,3,116,3053,8,116,1,117,1,117,1,117, - 1,117,1,117,1,117,3,117,3061,8,117,1,117,1,117,1,117,1,117,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,3076,8,118, - 3,118,3078,8,118,1,118,1,118,3,118,3082,8,118,1,118,1,118,3,118, - 3086,8,118,1,118,3,118,3089,8,118,1,118,3,118,3092,8,118,1,119,1, - 119,1,119,1,119,1,119,1,119,1,119,3,119,3101,8,119,1,119,3,119,3104, - 8,119,1,119,3,119,3107,8,119,1,120,1,120,1,120,1,120,3,120,3113, - 8,120,1,120,1,120,5,120,3117,8,120,10,120,12,120,3120,9,120,1,120, - 3,120,3123,8,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,120,3,120,3135,8,120,1,120,1,120,1,120,1,120,3,120,3141, - 8,120,1,121,3,121,3144,8,121,1,121,1,121,1,121,3,121,3149,8,121, - 1,121,1,121,3,121,3153,8,121,1,121,1,121,1,121,1,121,1,121,3,121, - 3160,8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, - 3170,8,121,3,121,3172,8,121,1,122,1,122,1,122,1,122,1,122,1,123, - 1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,125,1,125,3,125,3196,8,125,1,125,1,125,1,125, - 1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3208,8,125,1,125, - 4,125,3211,8,125,11,125,12,125,3212,3,125,3215,8,125,1,125,1,125, - 3,125,3219,8,125,1,125,3,125,3222,8,125,1,125,3,125,3225,8,125,1, - 125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3235,8,125,1, - 125,3,125,3238,8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, - 125,3,125,3248,8,125,1,125,5,125,3251,8,125,10,125,12,125,3254,9, - 125,1,125,1,125,3,125,3258,8,125,1,125,3,125,3261,8,125,1,125,3, - 125,3264,8,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3272,8, - 125,1,126,1,126,1,126,1,126,3,126,3278,8,126,1,127,1,127,1,127,5, - 127,3283,8,127,10,127,12,127,3286,9,127,1,128,1,128,1,128,1,128, - 1,128,3,128,3293,8,128,1,128,3,128,3296,8,128,1,129,1,129,1,129, - 1,129,1,129,1,130,1,130,1,130,1,130,3,130,3307,8,130,1,131,1,131, - 3,131,3311,8,131,1,131,1,131,5,131,3315,8,131,10,131,12,131,3318, - 9,131,1,132,1,132,1,132,1,132,3,132,3324,8,132,1,133,3,133,3327, - 8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,3336,8,133, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134, - 3348,8,134,10,134,12,134,3351,9,134,3,134,3353,8,134,1,134,1,134, - 1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,5,135,3365,8,135, - 10,135,12,135,3368,9,135,1,135,1,135,1,136,1,136,1,136,1,136,1,136, - 1,136,3,136,3378,8,136,1,136,3,136,3381,8,136,1,137,1,137,1,137, - 1,137,1,137,1,137,1,137,1,137,5,137,3391,8,137,10,137,12,137,3394, - 9,137,1,138,1,138,3,138,3398,8,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,5,138,3409,8,138,10,138,12,138,3412,9,138, - 1,138,1,138,3,138,3416,8,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,3,138,3429,8,138,1,138,1,138,1,138, - 1,138,1,138,5,138,3436,8,138,10,138,12,138,3439,9,138,3,138,3441, - 8,138,1,138,3,138,3444,8,138,1,138,1,138,1,138,1,138,1,138,3,138, - 3451,8,138,1,138,3,138,3454,8,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,3,138,3466,8,138,1,138,1,138,1,138, - 1,138,3,138,3472,8,138,3,138,3474,8,138,1,139,1,139,1,139,1,139, - 5,139,3480,8,139,10,139,12,139,3483,9,139,1,139,1,139,1,140,1,140, - 1,140,3,140,3490,8,140,1,141,1,141,1,141,1,141,1,141,1,141,3,141, - 3498,8,141,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143, - 1,143,3,143,3510,8,143,1,143,1,143,1,143,3,143,3515,8,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,3526,8,143, - 1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,1,145,3,145,3537, - 8,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,3545,8,145,1,145, - 1,145,1,145,1,145,5,145,3551,8,145,10,145,12,145,3554,9,145,1,146, - 1,146,1,146,1,146,3,146,3560,8,146,1,146,1,146,1,146,1,146,1,146, - 3,146,3567,8,146,3,146,3569,8,146,1,146,3,146,3572,8,146,1,146,1, - 146,1,146,3,146,3577,8,146,1,146,1,146,1,146,3,146,3582,8,146,1, - 147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,5,148,3599,8,148,10,148,12,148,3602,9,148, - 1,148,1,148,1,148,1,148,5,148,3608,8,148,10,148,12,148,3611,9,148, - 3,148,3613,8,148,1,149,1,149,1,149,1,149,1,150,1,150,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,151, - 1,151,1,151,1,151,1,151,1,151,1,151,3,151,3640,8,151,1,151,1,151, - 1,151,1,151,1,151,1,151,1,151,3,151,3649,8,151,1,151,3,151,3652, - 8,151,1,151,1,151,3,151,3656,8,151,1,151,1,151,3,151,3660,8,151, - 1,151,1,151,3,151,3664,8,151,1,151,1,151,1,151,5,151,3669,8,151, - 10,151,12,151,3672,9,151,1,151,3,151,3675,8,151,1,151,1,151,3,151, - 3679,8,151,1,151,1,151,3,151,3683,8,151,1,151,1,151,3,151,3687,8, - 151,1,151,1,151,1,151,3,151,3692,8,151,1,151,1,151,3,151,3696,8, - 151,1,151,1,151,1,151,3,151,3701,8,151,1,151,1,151,1,151,1,151,3, - 151,3707,8,151,1,151,1,151,1,151,3,151,3712,8,151,1,151,1,151,1, - 151,5,151,3717,8,151,10,151,12,151,3720,9,151,1,151,3,151,3723,8, - 151,1,151,1,151,1,151,1,151,3,151,3729,8,151,1,151,1,151,3,151,3733, - 8,151,1,151,1,151,1,151,3,151,3738,8,151,1,151,1,151,1,151,1,151, - 1,151,1,151,3,151,3746,8,151,1,151,1,151,1,151,1,151,3,151,3752, - 8,151,1,151,1,151,1,151,3,151,3757,8,151,1,151,1,151,1,151,1,151, - 1,151,3,151,3764,8,151,1,151,1,151,1,151,3,151,3769,8,151,1,151, - 1,151,3,151,3773,8,151,1,151,1,151,1,151,3,151,3778,8,151,1,151, - 1,151,1,151,1,151,3,151,3784,8,151,1,151,1,151,1,151,1,151,1,151, - 3,151,3791,8,151,1,151,1,151,1,151,3,151,3796,8,151,1,151,1,151, - 1,151,1,151,1,151,3,151,3803,8,151,1,151,1,151,1,151,3,151,3808, - 8,151,1,151,1,151,1,151,1,151,1,151,3,151,3815,8,151,1,151,1,151, - 3,151,3819,8,151,1,151,1,151,1,151,1,151,5,151,3825,8,151,10,151, - 12,151,3828,9,151,1,151,3,151,3831,8,151,3,151,3833,8,151,1,152, - 3,152,3836,8,152,1,152,1,152,1,152,3,152,3841,8,152,1,152,1,152, - 1,152,1,152,1,152,1,152,1,152,1,152,3,152,3851,8,152,1,153,1,153, - 1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, - 3,153,3866,8,153,1,153,3,153,3869,8,153,1,153,1,153,1,153,1,153, - 1,153,1,153,3,153,3877,8,153,1,154,1,154,1,154,5,154,3882,8,154, - 10,154,12,154,3885,9,154,1,155,1,155,3,155,3889,8,155,1,156,1,156, - 4,156,3893,8,156,11,156,12,156,3894,1,157,1,157,3,157,3899,8,157, - 1,157,1,157,1,157,5,157,3904,8,157,10,157,12,157,3907,9,157,1,157, - 1,157,3,157,3911,8,157,1,157,3,157,3914,8,157,1,158,3,158,3917,8, - 158,1,158,1,158,3,158,3921,8,158,1,159,1,159,1,159,1,159,1,159,1, - 159,1,159,3,159,3930,8,159,1,159,1,159,1,159,1,159,1,159,1,159,1, - 159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159, - 3948,8,159,1,159,3,159,3951,8,159,1,159,1,159,1,159,1,159,1,159, + 1,103,1,103,1,103,1,103,3,103,2867,8,103,1,104,1,104,1,104,1,104, + 1,104,1,104,4,104,2875,8,104,11,104,12,104,2876,3,104,2879,8,104, + 1,104,3,104,2882,8,104,1,105,1,105,3,105,2886,8,105,1,105,1,105, + 3,105,2890,8,105,1,106,1,106,1,106,1,106,1,106,1,106,4,106,2898, + 8,106,11,106,12,106,2899,3,106,2902,8,106,1,106,1,106,4,106,2906, + 8,106,11,106,12,106,2907,3,106,2910,8,106,1,107,1,107,1,107,1,107, + 1,107,5,107,2917,8,107,10,107,12,107,2920,9,107,1,107,1,107,1,108, + 1,108,1,108,1,108,1,108,5,108,2929,8,108,10,108,12,108,2932,9,108, + 1,108,1,108,1,109,1,109,1,109,1,110,1,110,1,110,1,111,1,111,1,111, + 3,111,2945,8,111,1,111,1,111,1,111,3,111,2950,8,111,1,111,3,111, + 2953,8,111,1,111,1,111,1,111,1,111,1,111,3,111,2960,8,111,1,112, + 1,112,1,112,3,112,2965,8,112,1,113,1,113,1,113,1,113,1,113,1,113, + 3,113,2973,8,113,3,113,2975,8,113,1,114,1,114,1,114,1,114,3,114, + 2981,8,114,1,114,1,114,1,114,3,114,2986,8,114,1,114,1,114,3,114, + 2990,8,114,1,114,1,114,1,114,3,114,2995,8,114,1,114,1,114,1,114, + 1,114,3,114,3001,8,114,1,114,1,114,1,114,1,114,1,114,3,114,3008, + 8,114,1,114,1,114,1,114,1,114,3,114,3014,8,114,3,114,3016,8,114, + 1,115,1,115,1,115,1,115,1,115,1,115,1,115,3,115,3025,8,115,1,115, + 1,115,1,115,1,115,3,115,3031,8,115,1,115,1,115,1,115,1,115,1,115, + 1,115,3,115,3039,8,115,1,116,1,116,1,116,1,116,3,116,3045,8,116, + 1,116,1,116,1,116,3,116,3050,8,116,1,116,1,116,1,116,3,116,3055, + 8,116,1,117,1,117,1,117,1,117,1,117,1,117,3,117,3063,8,117,1,117, + 1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,3,118,3078,8,118,3,118,3080,8,118,1,118,1,118,3,118,3084,8, + 118,1,118,1,118,3,118,3088,8,118,1,118,3,118,3091,8,118,1,118,3, + 118,3094,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3103, + 8,119,1,119,3,119,3106,8,119,1,119,3,119,3109,8,119,1,120,1,120, + 1,120,1,120,3,120,3115,8,120,1,120,1,120,5,120,3119,8,120,10,120, + 12,120,3122,9,120,1,120,3,120,3125,8,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,3,120,3137,8,120,1,120,1,120, + 1,120,1,120,3,120,3143,8,120,1,121,3,121,3146,8,121,1,121,1,121, + 1,121,3,121,3151,8,121,1,121,1,121,3,121,3155,8,121,1,121,1,121, + 1,121,1,121,1,121,3,121,3162,8,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,3,121,3172,8,121,3,121,3174,8,121,1,122,1,122, + 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,124,1,124, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,3,125,3198, + 8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, + 3,125,3210,8,125,1,125,4,125,3213,8,125,11,125,12,125,3214,3,125, + 3217,8,125,1,125,1,125,3,125,3221,8,125,1,125,3,125,3224,8,125,1, + 125,3,125,3227,8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, + 125,3,125,3237,8,125,1,125,3,125,3240,8,125,1,125,1,125,1,125,1, + 125,1,125,1,125,1,125,1,125,3,125,3250,8,125,1,125,5,125,3253,8, + 125,10,125,12,125,3256,9,125,1,125,1,125,3,125,3260,8,125,1,125, + 3,125,3263,8,125,1,125,3,125,3266,8,125,1,125,1,125,1,125,1,125, + 1,125,1,125,3,125,3274,8,125,1,126,1,126,1,126,1,126,3,126,3280, + 8,126,1,127,1,127,1,127,5,127,3285,8,127,10,127,12,127,3288,9,127, + 1,128,1,128,1,128,1,128,1,128,3,128,3295,8,128,1,128,3,128,3298, + 8,128,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,3,130, + 3309,8,130,1,131,1,131,3,131,3313,8,131,1,131,1,131,5,131,3317,8, + 131,10,131,12,131,3320,9,131,1,132,1,132,1,132,1,132,3,132,3326, + 8,132,1,133,3,133,3329,8,133,1,133,1,133,1,133,1,133,1,133,1,133, + 1,133,3,133,3338,8,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,5,134,3350,8,134,10,134,12,134,3353,9,134,3,134, + 3355,8,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135, + 1,135,5,135,3367,8,135,10,135,12,135,3370,9,135,1,135,1,135,1,136, + 1,136,1,136,1,136,1,136,1,136,3,136,3380,8,136,1,136,3,136,3383, + 8,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,5,137,3393, + 8,137,10,137,12,137,3396,9,137,1,138,1,138,3,138,3400,8,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,5,138,3411,8,138, + 10,138,12,138,3414,9,138,1,138,1,138,3,138,3418,8,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3431, + 8,138,1,138,1,138,1,138,1,138,1,138,5,138,3438,8,138,10,138,12,138, + 3441,9,138,3,138,3443,8,138,1,138,3,138,3446,8,138,1,138,1,138,1, + 138,1,138,1,138,3,138,3453,8,138,1,138,3,138,3456,8,138,1,138,1, + 138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3468,8, + 138,1,138,1,138,1,138,1,138,3,138,3474,8,138,3,138,3476,8,138,1, + 139,1,139,1,139,1,139,5,139,3482,8,139,10,139,12,139,3485,9,139, + 1,139,1,139,1,140,1,140,1,140,3,140,3492,8,140,1,141,1,141,1,141, + 1,141,1,141,1,141,3,141,3500,8,141,1,142,1,142,1,142,1,142,1,143, + 1,143,1,143,1,143,1,143,1,143,3,143,3512,8,143,1,143,1,143,1,143, + 3,143,3517,8,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, + 1,143,3,143,3528,8,143,1,144,1,144,1,144,1,144,1,145,1,145,1,145, + 1,145,1,145,3,145,3539,8,145,1,145,1,145,1,145,1,145,1,145,1,145, + 3,145,3547,8,145,1,145,1,145,1,145,1,145,5,145,3553,8,145,10,145, + 12,145,3556,9,145,1,146,1,146,1,146,1,146,3,146,3562,8,146,1,146, + 1,146,1,146,1,146,1,146,3,146,3569,8,146,3,146,3571,8,146,1,146, + 3,146,3574,8,146,1,146,1,146,1,146,3,146,3579,8,146,1,146,1,146, + 1,146,3,146,3584,8,146,1,147,1,147,1,147,1,147,1,147,1,147,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,5,148,3601,8,148, + 10,148,12,148,3604,9,148,1,148,1,148,1,148,1,148,5,148,3610,8,148, + 10,148,12,148,3613,9,148,3,148,3615,8,148,1,149,1,149,1,149,1,149, + 1,150,1,150,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,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151, + 3642,8,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3651, + 8,151,1,151,3,151,3654,8,151,1,151,1,151,3,151,3658,8,151,1,151, + 1,151,3,151,3662,8,151,1,151,1,151,3,151,3666,8,151,1,151,1,151, + 1,151,5,151,3671,8,151,10,151,12,151,3674,9,151,1,151,3,151,3677, + 8,151,1,151,1,151,3,151,3681,8,151,1,151,1,151,3,151,3685,8,151, + 1,151,1,151,3,151,3689,8,151,1,151,1,151,1,151,3,151,3694,8,151, + 1,151,1,151,3,151,3698,8,151,1,151,1,151,1,151,3,151,3703,8,151, + 1,151,1,151,1,151,1,151,3,151,3709,8,151,1,151,1,151,1,151,3,151, + 3714,8,151,1,151,1,151,1,151,5,151,3719,8,151,10,151,12,151,3722, + 9,151,1,151,3,151,3725,8,151,1,151,1,151,1,151,1,151,3,151,3731, + 8,151,1,151,1,151,3,151,3735,8,151,1,151,1,151,1,151,3,151,3740, + 8,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3748,8,151,1,151, + 1,151,1,151,1,151,3,151,3754,8,151,1,151,1,151,1,151,3,151,3759, + 8,151,1,151,1,151,1,151,1,151,1,151,3,151,3766,8,151,1,151,1,151, + 1,151,3,151,3771,8,151,1,151,1,151,3,151,3775,8,151,1,151,1,151, + 1,151,3,151,3780,8,151,1,151,1,151,1,151,1,151,3,151,3786,8,151, + 1,151,1,151,1,151,1,151,1,151,3,151,3793,8,151,1,151,1,151,1,151, + 3,151,3798,8,151,1,151,1,151,1,151,1,151,1,151,3,151,3805,8,151, + 1,151,1,151,1,151,3,151,3810,8,151,1,151,1,151,1,151,1,151,1,151, + 3,151,3817,8,151,1,151,1,151,3,151,3821,8,151,1,151,1,151,1,151, + 1,151,5,151,3827,8,151,10,151,12,151,3830,9,151,1,151,3,151,3833, + 8,151,3,151,3835,8,151,1,152,3,152,3838,8,152,1,152,1,152,1,152, + 3,152,3843,8,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, + 3,152,3853,8,152,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, + 1,153,1,153,1,153,1,153,1,153,3,153,3868,8,153,1,153,3,153,3871, + 8,153,1,153,1,153,1,153,1,153,1,153,1,153,3,153,3879,8,153,1,154, + 1,154,1,154,5,154,3884,8,154,10,154,12,154,3887,9,154,1,155,1,155, + 3,155,3891,8,155,1,156,1,156,4,156,3895,8,156,11,156,12,156,3896, + 1,157,1,157,3,157,3901,8,157,1,157,1,157,1,157,5,157,3906,8,157, + 10,157,12,157,3909,9,157,1,157,1,157,3,157,3913,8,157,1,157,3,157, + 3916,8,157,1,158,3,158,3919,8,158,1,158,1,158,3,158,3923,8,158,1, + 159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3932,8,159,1,159,1, + 159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, + 1,159,1,159,1,159,1,159,3,159,3950,8,159,1,159,3,159,3953,8,159, 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,3,159,3983,8,159,1,159,1,159,1,159,3,159,3988, - 8,159,1,160,1,160,1,160,1,160,3,160,3994,8,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,3,160,4014,8,160,1,160,1,160,1,160,3,160, - 4019,8,160,1,161,1,161,1,161,1,162,3,162,4025,8,162,1,162,3,162, - 4028,8,162,1,162,1,162,3,162,4032,8,162,1,162,1,162,3,162,4036,8, - 162,1,162,1,162,1,162,1,162,3,162,4042,8,162,1,162,3,162,4045,8, - 162,1,162,1,162,3,162,4049,8,162,1,162,1,162,3,162,4053,8,162,1, - 162,1,162,1,162,3,162,4058,8,162,1,162,3,162,4061,8,162,1,162,3, - 162,4064,8,162,1,162,3,162,4067,8,162,1,163,1,163,1,164,1,164,1, - 164,1,164,1,164,1,164,1,164,1,164,1,164,3,164,4080,8,164,1,165,1, - 165,1,165,1,165,3,165,4086,8,165,1,165,1,165,1,165,1,165,1,165,1, - 165,3,165,4094,8,165,1,166,1,166,1,166,5,166,4099,8,166,10,166,12, - 166,4102,9,166,1,166,1,166,3,166,4106,8,166,1,166,3,166,4109,8,166, - 1,166,1,166,1,166,5,166,4114,8,166,10,166,12,166,4117,9,166,3,166, - 4119,8,166,1,167,1,167,1,168,1,168,1,168,1,168,3,168,4127,8,168, - 1,168,3,168,4130,8,168,1,169,1,169,1,169,3,169,4135,8,169,1,169, - 1,169,1,169,1,169,1,169,3,169,4142,8,169,1,169,3,169,4145,8,169, - 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,5,169,4163,8,169,10,169,12,169,4166, - 9,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,3,169, - 4177,8,169,1,170,3,170,4180,8,170,1,170,1,170,1,170,1,170,3,170, - 4186,8,170,1,170,5,170,4189,8,170,10,170,12,170,4192,9,170,1,171, - 1,171,1,171,1,171,5,171,4198,8,171,10,171,12,171,4201,9,171,1,171, - 1,171,1,171,1,171,1,171,3,171,4208,8,171,1,171,1,171,1,171,3,171, - 4213,8,171,1,172,1,172,1,172,1,172,3,172,4219,8,172,1,172,1,172, - 1,172,5,172,4224,8,172,10,172,12,172,4227,9,172,1,172,1,172,1,172, - 1,172,1,172,3,172,4234,8,172,1,172,3,172,4237,8,172,1,173,1,173, - 1,173,1,173,1,173,1,173,1,173,1,173,1,173,5,173,4248,8,173,10,173, - 12,173,4251,9,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,174, - 1,174,1,174,1,174,3,174,4264,8,174,1,174,1,174,1,174,1,174,3,174, - 4270,8,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,4278,8,174, - 3,174,4280,8,174,1,175,1,175,1,176,1,176,3,176,4286,8,176,1,176, - 1,176,3,176,4290,8,176,1,176,3,176,4293,8,176,1,176,3,176,4296,8, - 176,1,176,1,176,1,176,3,176,4301,8,176,1,176,1,176,1,176,3,176,4306, - 8,176,1,176,1,176,3,176,4310,8,176,1,176,3,176,4313,8,176,1,176, - 3,176,4316,8,176,1,176,3,176,4319,8,176,1,176,3,176,4322,8,176,1, - 177,1,177,1,177,1,177,5,177,4328,8,177,10,177,12,177,4331,9,177, - 1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,3,178,4341,8,178, - 1,178,3,178,4344,8,178,1,178,3,178,4347,8,178,1,178,1,178,1,178, - 3,178,4352,8,178,1,178,3,178,4355,8,178,1,178,1,178,3,178,4359,8, - 178,1,179,1,179,3,179,4363,8,179,1,179,1,179,1,179,1,179,3,179,4369, - 8,179,1,179,1,179,1,179,1,179,5,179,4375,8,179,10,179,12,179,4378, - 9,179,3,179,4380,8,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 1,179,1,179,5,179,4391,8,179,10,179,12,179,4394,9,179,1,179,1,179, - 3,179,4398,8,179,3,179,4400,8,179,1,179,4,179,4403,8,179,11,179, - 12,179,4404,1,179,1,179,1,179,1,179,1,179,3,179,4412,8,179,1,180, - 1,180,1,180,1,181,1,181,3,181,4419,8,181,1,181,1,181,1,182,1,182, - 1,182,5,182,4426,8,182,10,182,12,182,4429,9,182,1,183,1,183,1,183, - 5,183,4434,8,183,10,183,12,183,4437,9,183,1,184,1,184,1,184,1,184, - 1,184,3,184,4444,8,184,1,185,1,185,1,185,5,185,4449,8,185,10,185, - 12,185,4452,9,185,1,186,1,186,1,186,1,186,1,186,3,186,4459,8,186, - 1,187,1,187,1,187,5,187,4464,8,187,10,187,12,187,4467,9,187,1,188, - 1,188,1,188,1,188,1,188,3,188,4474,8,188,1,189,1,189,3,189,4478, - 8,189,1,189,1,189,3,189,4482,8,189,3,189,4484,8,189,1,189,1,189, - 1,190,1,190,3,190,4490,8,190,1,190,1,190,1,190,3,190,4495,8,190, - 1,191,1,191,3,191,4499,8,191,1,191,1,191,1,191,1,191,1,191,3,191, - 4506,8,191,1,192,1,192,1,192,3,192,4511,8,192,1,193,1,193,1,193, - 3,193,4516,8,193,1,193,1,193,1,193,3,193,4521,8,193,3,193,4523,8, - 193,1,193,1,193,1,194,1,194,1,194,1,195,1,195,1,195,3,195,4533,8, - 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,3,195,4543,8, - 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, - 1,195,1,195,1,195,1,195,3,195,4559,8,195,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,5,196, - 4575,8,196,10,196,12,196,4578,9,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,3,196,4589,8,196,1,196,1,196,1,196,1,196, - 1,196,3,196,4596,8,196,1,197,1,197,1,197,1,198,1,198,1,198,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,3,199,4611,8,199,1,199,4,199, - 4614,8,199,11,199,12,199,4615,1,199,3,199,4619,8,199,1,200,1,200, - 1,200,3,200,4624,8,200,1,200,1,200,1,200,3,200,4629,8,200,1,200, - 1,200,1,200,3,200,4634,8,200,1,200,3,200,4637,8,200,1,200,3,200, - 4640,8,200,1,201,1,201,1,201,3,201,4645,8,201,1,201,1,201,1,201, - 5,201,4650,8,201,10,201,12,201,4653,9,201,1,201,3,201,4656,8,201, - 1,202,1,202,1,202,3,202,4661,8,202,1,202,1,202,1,202,5,202,4666, - 8,202,10,202,12,202,4669,9,202,1,202,3,202,4672,8,202,1,203,1,203, - 1,203,1,203,3,203,4678,8,203,1,203,1,203,1,203,1,203,1,203,1,203, - 1,203,3,203,4687,8,203,1,203,1,203,1,204,1,204,1,204,5,204,4694, - 8,204,10,204,12,204,4697,9,204,1,204,1,204,1,205,1,205,1,205,1,206, - 1,206,1,206,1,206,4,206,4708,8,206,11,206,12,206,4709,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,4723, - 8,207,1,207,1,207,1,207,1,207,3,207,4729,8,207,1,207,1,207,3,207, - 4733,8,207,3,207,4735,8,207,1,208,1,208,1,208,1,209,1,209,3,209, - 4742,8,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 1,209,1,209,3,209,4755,8,209,1,209,1,209,1,209,1,209,1,209,3,209, - 4762,8,209,3,209,4764,8,209,1,209,1,209,1,210,1,210,1,210,1,210, - 1,210,1,211,1,211,1,211,1,211,1,211,5,211,4778,8,211,10,211,12,211, - 4781,9,211,1,211,3,211,4784,8,211,1,211,1,211,3,211,4788,8,211,1, - 211,1,211,1,211,3,211,4793,8,211,1,211,1,211,1,211,3,211,4798,8, - 211,1,211,1,211,1,211,3,211,4803,8,211,1,211,1,211,1,211,3,211,4808, - 8,211,1,211,3,211,4811,8,211,1,212,1,212,1,212,1,212,1,212,1,213, - 1,213,1,213,1,213,1,213,3,213,4823,8,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3985,8,159, + 1,159,1,159,1,159,3,159,3990,8,159,1,160,1,160,1,160,1,160,3,160, + 3996,8,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, + 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,3,160,4016, + 8,160,1,160,1,160,1,160,3,160,4021,8,160,1,161,1,161,1,161,1,162, + 3,162,4027,8,162,1,162,3,162,4030,8,162,1,162,1,162,3,162,4034,8, + 162,1,162,1,162,3,162,4038,8,162,1,162,1,162,1,162,1,162,3,162,4044, + 8,162,1,162,3,162,4047,8,162,1,162,1,162,3,162,4051,8,162,1,162, + 1,162,3,162,4055,8,162,1,162,1,162,1,162,3,162,4060,8,162,1,162, + 3,162,4063,8,162,1,162,3,162,4066,8,162,1,162,3,162,4069,8,162,1, + 163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 3,164,4082,8,164,1,165,1,165,1,165,1,165,3,165,4088,8,165,1,165, + 1,165,1,165,1,165,1,165,1,165,3,165,4096,8,165,1,166,1,166,1,166, + 5,166,4101,8,166,10,166,12,166,4104,9,166,1,166,1,166,3,166,4108, + 8,166,1,166,3,166,4111,8,166,1,166,1,166,1,166,5,166,4116,8,166, + 10,166,12,166,4119,9,166,3,166,4121,8,166,1,167,1,167,1,168,1,168, + 1,168,1,168,3,168,4129,8,168,1,168,3,168,4132,8,168,1,169,1,169, + 1,169,3,169,4137,8,169,1,169,1,169,1,169,1,169,1,169,3,169,4144, + 8,169,1,169,3,169,4147,8,169,1,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,5,169, + 4165,8,169,10,169,12,169,4168,9,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,3,169,4179,8,169,1,170,3,170,4182,8,170, + 1,170,1,170,1,170,1,170,3,170,4188,8,170,1,170,5,170,4191,8,170, + 10,170,12,170,4194,9,170,1,171,1,171,1,171,1,171,5,171,4200,8,171, + 10,171,12,171,4203,9,171,1,171,1,171,1,171,1,171,1,171,3,171,4210, + 8,171,1,171,1,171,1,171,3,171,4215,8,171,1,172,1,172,1,172,1,172, + 3,172,4221,8,172,1,172,1,172,1,172,5,172,4226,8,172,10,172,12,172, + 4229,9,172,1,172,1,172,1,172,1,172,1,172,3,172,4236,8,172,1,172, + 3,172,4239,8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, + 1,173,5,173,4250,8,173,10,173,12,173,4253,9,173,1,173,1,173,1,174, + 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,4266,8,174, + 1,174,1,174,1,174,1,174,3,174,4272,8,174,1,174,1,174,1,174,1,174, + 1,174,1,174,3,174,4280,8,174,3,174,4282,8,174,1,175,1,175,1,176, + 1,176,3,176,4288,8,176,1,176,1,176,3,176,4292,8,176,1,176,3,176, + 4295,8,176,1,176,3,176,4298,8,176,1,176,1,176,1,176,3,176,4303,8, + 176,1,176,1,176,1,176,3,176,4308,8,176,1,176,1,176,3,176,4312,8, + 176,1,176,3,176,4315,8,176,1,176,3,176,4318,8,176,1,176,3,176,4321, + 8,176,1,176,3,176,4324,8,176,1,177,1,177,1,177,1,177,5,177,4330, + 8,177,10,177,12,177,4333,9,177,1,177,1,177,1,178,1,178,1,178,1,178, + 1,178,1,178,3,178,4343,8,178,1,178,3,178,4346,8,178,1,178,3,178, + 4349,8,178,1,178,1,178,1,178,3,178,4354,8,178,1,178,3,178,4357,8, + 178,1,178,1,178,3,178,4361,8,178,1,179,1,179,3,179,4365,8,179,1, + 179,1,179,1,179,1,179,3,179,4371,8,179,1,179,1,179,1,179,1,179,5, + 179,4377,8,179,10,179,12,179,4380,9,179,3,179,4382,8,179,1,179,1, + 179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,5,179,4393,8,179,10, + 179,12,179,4396,9,179,1,179,1,179,3,179,4400,8,179,3,179,4402,8, + 179,1,179,4,179,4405,8,179,11,179,12,179,4406,1,179,1,179,1,179, + 1,179,1,179,3,179,4414,8,179,1,180,1,180,1,180,1,181,1,181,3,181, + 4421,8,181,1,181,1,181,1,182,1,182,1,182,5,182,4428,8,182,10,182, + 12,182,4431,9,182,1,183,1,183,1,183,5,183,4436,8,183,10,183,12,183, + 4439,9,183,1,184,1,184,1,184,1,184,1,184,3,184,4446,8,184,1,185, + 1,185,1,185,5,185,4451,8,185,10,185,12,185,4454,9,185,1,186,1,186, + 1,186,1,186,1,186,3,186,4461,8,186,1,187,1,187,1,187,5,187,4466, + 8,187,10,187,12,187,4469,9,187,1,188,1,188,1,188,1,188,1,188,3,188, + 4476,8,188,1,189,1,189,3,189,4480,8,189,1,189,1,189,3,189,4484,8, + 189,3,189,4486,8,189,1,189,1,189,1,190,1,190,3,190,4492,8,190,1, + 190,1,190,1,190,3,190,4497,8,190,1,191,1,191,3,191,4501,8,191,1, + 191,1,191,1,191,1,191,1,191,3,191,4508,8,191,1,192,1,192,1,192,3, + 192,4513,8,192,1,193,1,193,1,193,3,193,4518,8,193,1,193,1,193,1, + 193,3,193,4523,8,193,3,193,4525,8,193,1,193,1,193,1,194,1,194,1, + 194,1,195,1,195,1,195,3,195,4535,8,195,1,195,1,195,1,195,1,195,1, + 195,1,195,1,195,1,195,3,195,4545,8,195,1,195,1,195,1,195,1,195,1, + 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,3,195, + 4561,8,195,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, + 1,196,1,196,1,196,1,196,1,196,5,196,4577,8,196,10,196,12,196,4580, + 9,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,3,196, + 4591,8,196,1,196,1,196,1,196,1,196,1,196,3,196,4598,8,196,1,197, + 1,197,1,197,1,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199, + 1,199,3,199,4613,8,199,1,199,4,199,4616,8,199,11,199,12,199,4617, + 1,199,3,199,4621,8,199,1,200,1,200,1,200,3,200,4626,8,200,1,200, + 1,200,1,200,3,200,4631,8,200,1,200,1,200,1,200,3,200,4636,8,200, + 1,200,3,200,4639,8,200,1,200,3,200,4642,8,200,1,201,1,201,1,201, + 3,201,4647,8,201,1,201,1,201,1,201,5,201,4652,8,201,10,201,12,201, + 4655,9,201,1,201,3,201,4658,8,201,1,202,1,202,1,202,3,202,4663,8, + 202,1,202,1,202,1,202,5,202,4668,8,202,10,202,12,202,4671,9,202, + 1,202,3,202,4674,8,202,1,203,1,203,1,203,1,203,3,203,4680,8,203, + 1,203,1,203,1,203,1,203,1,203,1,203,1,203,3,203,4689,8,203,1,203, + 1,203,1,204,1,204,1,204,5,204,4696,8,204,10,204,12,204,4699,9,204, + 1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206,1,206,4,206,4710, + 8,206,11,206,12,206,4711,1,207,1,207,1,207,1,207,1,207,1,207,1,207, + 1,207,1,207,1,207,1,207,3,207,4725,8,207,1,207,1,207,1,207,1,207, + 3,207,4731,8,207,1,207,1,207,3,207,4735,8,207,3,207,4737,8,207,1, + 208,1,208,1,208,1,209,1,209,3,209,4744,8,209,1,209,1,209,1,209,1, + 209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,4757,8,209,1, + 209,1,209,1,209,1,209,1,209,3,209,4764,8,209,3,209,4766,8,209,1, + 209,1,209,1,210,1,210,1,210,1,210,1,210,1,211,1,211,1,211,1,211, + 1,211,5,211,4780,8,211,10,211,12,211,4783,9,211,1,211,3,211,4786, + 8,211,1,211,1,211,3,211,4790,8,211,1,211,1,211,1,211,3,211,4795, + 8,211,1,211,1,211,1,211,3,211,4800,8,211,1,211,1,211,1,211,3,211, + 4805,8,211,1,211,1,211,1,211,3,211,4810,8,211,1,211,3,211,4813,8, + 211,1,212,1,212,1,212,1,212,1,212,1,213,1,213,1,213,1,213,1,213, + 3,213,4825,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,3,213,4876,8,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,3,213,4885,8,213,1,213,1,213,3,213,4889,8,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4898,8,213,1,213,1,213, - 3,213,4902,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, - 4911,8,213,1,213,1,213,3,213,4915,8,213,1,213,1,213,1,213,3,213, - 4920,8,213,1,213,3,213,4923,8,213,1,213,1,213,3,213,4927,8,213,1, - 213,1,213,1,213,3,213,4932,8,213,3,213,4934,8,213,1,213,1,213,1, - 213,1,213,1,213,1,213,1,213,3,213,4943,8,213,1,213,1,213,1,213,3, - 213,4948,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1, - 213,3,213,4959,8,213,1,213,1,213,3,213,4963,8,213,1,213,1,213,1, - 213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, - 4977,8,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4985,8,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, + 4878,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4887, + 8,213,1,213,1,213,3,213,4891,8,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,3,213,4900,8,213,1,213,1,213,3,213,4904,8,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4913,8,213,1,213,1,213, + 3,213,4917,8,213,1,213,1,213,1,213,3,213,4922,8,213,1,213,3,213, + 4925,8,213,1,213,1,213,3,213,4929,8,213,1,213,1,213,1,213,3,213, + 4934,8,213,3,213,4936,8,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,3,213,4945,8,213,1,213,1,213,1,213,3,213,4950,8,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4961,8,213, + 1,213,1,213,3,213,4965,8,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4979,8,213,1,213,1,213, + 1,213,1,213,1,213,1,213,3,213,4987,8,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,3,213,5023,8,213,3,213,5025,8,213,1,214,1,214, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, + 5025,8,213,3,213,5027,8,213,1,214,1,214,1,214,1,214,1,214,1,214, 1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214, - 1,214,1,214,1,214,1,214,3,214,5044,8,214,1,214,3,214,5047,8,214, - 1,214,1,214,1,214,1,214,1,214,1,215,1,215,1,215,1,215,1,215,1,215, - 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, - 1,215,1,215,1,215,3,215,5074,8,215,1,215,1,215,3,215,5078,8,215, - 1,215,1,215,3,215,5082,8,215,1,215,1,215,3,215,5086,8,215,1,215, - 1,215,3,215,5090,8,215,1,215,3,215,5093,8,215,1,215,1,215,1,215, + 3,214,5046,8,214,1,214,3,214,5049,8,214,1,214,1,214,1,214,1,214, + 1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215, - 5108,8,215,1,215,1,215,1,215,1,215,1,215,3,215,5115,8,215,1,216, - 1,216,1,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,5,217,5127, - 8,217,10,217,12,217,5130,9,217,1,217,1,217,1,218,1,218,1,218,1,218, - 1,218,1,218,1,218,1,218,3,218,5142,8,218,1,219,1,219,1,219,1,219, - 1,219,1,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5167,8,220, + 5076,8,215,1,215,1,215,3,215,5080,8,215,1,215,1,215,3,215,5084,8, + 215,1,215,1,215,3,215,5088,8,215,1,215,1,215,3,215,5092,8,215,1, + 215,3,215,5095,8,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1, + 215,1,215,1,215,1,215,1,215,1,215,3,215,5110,8,215,1,215,1,215,1, + 215,1,215,1,215,3,215,5117,8,215,1,216,1,216,1,216,1,216,1,216,1, + 216,1,217,1,217,1,217,1,217,5,217,5129,8,217,10,217,12,217,5132, + 9,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, + 3,218,5144,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,3,220,5169,8,220,1,220,1,220,1,220,1,220, 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,3,220,5186,8,220,1,220,1,220, + 1,220,1,220,3,220,5188,8,220,1,220,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5203,8,220,1,220, 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 3,220,5201,8,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,3,220,5217,8,220,1,220,1,220, - 1,220,1,220,1,220,3,220,5224,8,220,1,221,1,221,1,221,1,221,1,221, - 1,221,1,221,1,221,1,221,3,221,5235,8,221,1,221,3,221,5238,8,221, + 1,220,1,220,3,220,5219,8,220,1,220,1,220,1,220,1,220,1,220,3,220, + 5226,8,220,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221, + 3,221,5237,8,221,1,221,3,221,5240,8,221,1,222,1,222,1,222,1,222, 1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222, - 1,222,1,222,1,222,1,222,5,222,5255,8,222,10,222,12,222,5258,9,222, - 3,222,5260,8,222,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223, - 1,223,5,223,5271,8,223,10,223,12,223,5274,9,223,1,223,3,223,5277, - 8,223,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,3,224,5297,8,224, - 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,5,224,5307,8,224, - 10,224,12,224,5310,9,224,1,224,3,224,5313,8,224,1,224,1,224,1,224, + 5,222,5257,8,222,10,222,12,222,5260,9,222,3,222,5262,8,222,1,223, + 1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,5,223,5273,8,223, + 10,223,12,223,5276,9,223,1,223,3,223,5279,8,223,1,224,1,224,1,224, 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,1,224,1,224,3,224,5335,8,224,1,225,1,225, - 3,225,5339,8,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225, - 3,225,5349,8,225,1,225,1,225,3,225,5353,8,225,1,225,1,225,1,225, - 1,225,3,225,5359,8,225,1,225,1,225,3,225,5363,8,225,5,225,5365,8, - 225,10,225,12,225,5368,9,225,1,225,3,225,5371,8,225,1,226,1,226, - 1,226,1,226,1,226,3,226,5378,8,226,1,227,1,227,1,227,3,227,5383, - 8,227,1,228,1,228,1,228,1,229,1,229,1,229,1,230,1,230,1,230,3,230, - 5394,8,230,1,231,1,231,3,231,5398,8,231,1,231,3,231,5401,8,231,1, - 231,1,231,1,231,3,231,5406,8,231,1,231,1,231,1,231,1,231,3,231,5412, - 8,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231, - 5423,8,231,1,231,1,231,3,231,5427,8,231,1,231,3,231,5430,8,231,1, - 231,1,231,3,231,5434,8,231,1,231,1,231,3,231,5438,8,231,1,231,3, - 231,5441,8,231,1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,3, - 233,5451,8,233,1,233,3,233,5454,8,233,1,234,1,234,3,234,5458,8,234, - 1,234,5,234,5461,8,234,10,234,12,234,5464,9,234,1,235,1,235,1,235, - 3,235,5469,8,235,1,235,3,235,5472,8,235,1,235,1,235,1,235,3,235, - 5477,8,235,1,235,3,235,5480,8,235,1,235,1,235,1,235,1,235,1,235, - 3,235,5487,8,235,3,235,5489,8,235,1,235,1,235,1,235,1,235,3,235, - 5495,8,235,1,235,1,235,3,235,5499,8,235,1,236,1,236,1,236,1,237, - 1,237,1,237,1,237,3,237,5508,8,237,1,237,4,237,5511,8,237,11,237, - 12,237,5512,3,237,5515,8,237,1,238,1,238,1,238,1,238,1,238,1,238, - 1,238,1,238,3,238,5525,8,238,1,238,3,238,5528,8,238,1,238,1,238, - 1,238,3,238,5533,8,238,1,239,1,239,1,239,1,239,1,239,1,239,3,239, - 5541,8,239,1,239,3,239,5544,8,239,1,239,4,239,5547,8,239,11,239, - 12,239,5548,3,239,5551,8,239,3,239,5553,8,239,1,240,1,240,1,240, - 1,240,3,240,5559,8,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242, - 1,242,1,242,1,242,1,242,1,243,1,243,1,243,1,243,3,243,5576,8,243, - 1,243,1,243,5,243,5580,8,243,10,243,12,243,5583,9,243,1,244,1,244, - 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5595,8,244, - 1,244,1,244,1,244,1,244,3,244,5601,8,244,1,244,1,244,3,244,5605, - 8,244,1,244,1,244,1,244,3,244,5610,8,244,1,245,1,245,1,245,1,245, - 1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,224,1,224,1,224,1,224,3,224,5299,8,224,1,224,1,224,1,224,1,224, + 1,224,1,224,1,224,1,224,5,224,5309,8,224,10,224,12,224,5312,9,224, + 1,224,3,224,5315,8,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,224,1,224,3,224,5337,8,224,1,225,1,225,3,225,5341,8,225,1,225, + 1,225,1,225,1,225,1,225,1,225,1,225,1,225,3,225,5351,8,225,1,225, + 1,225,3,225,5355,8,225,1,225,1,225,1,225,1,225,3,225,5361,8,225, + 1,225,1,225,3,225,5365,8,225,5,225,5367,8,225,10,225,12,225,5370, + 9,225,1,225,3,225,5373,8,225,1,226,1,226,1,226,1,226,1,226,3,226, + 5380,8,226,1,227,1,227,1,227,3,227,5385,8,227,1,228,1,228,1,228, + 1,229,1,229,1,229,1,230,1,230,1,230,3,230,5396,8,230,1,231,1,231, + 3,231,5400,8,231,1,231,3,231,5403,8,231,1,231,1,231,1,231,3,231, + 5408,8,231,1,231,1,231,1,231,1,231,3,231,5414,8,231,1,231,1,231, + 1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5425,8,231,1,231, + 1,231,3,231,5429,8,231,1,231,3,231,5432,8,231,1,231,1,231,3,231, + 5436,8,231,1,231,1,231,3,231,5440,8,231,1,231,3,231,5443,8,231,1, + 232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,3,233,5453,8,233,1, + 233,3,233,5456,8,233,1,234,1,234,3,234,5460,8,234,1,234,5,234,5463, + 8,234,10,234,12,234,5466,9,234,1,235,1,235,1,235,3,235,5471,8,235, + 1,235,3,235,5474,8,235,1,235,1,235,1,235,3,235,5479,8,235,1,235, + 3,235,5482,8,235,1,235,1,235,1,235,1,235,1,235,3,235,5489,8,235, + 3,235,5491,8,235,1,235,1,235,1,235,1,235,3,235,5497,8,235,1,235, + 1,235,3,235,5501,8,235,1,236,1,236,1,236,1,237,1,237,1,237,1,237, + 3,237,5510,8,237,1,237,4,237,5513,8,237,11,237,12,237,5514,3,237, + 5517,8,237,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,3,238, + 5527,8,238,1,238,3,238,5530,8,238,1,238,1,238,1,238,3,238,5535,8, + 238,1,239,1,239,1,239,1,239,1,239,1,239,3,239,5543,8,239,1,239,3, + 239,5546,8,239,1,239,4,239,5549,8,239,11,239,12,239,5550,3,239,5553, + 8,239,3,239,5555,8,239,1,240,1,240,1,240,1,240,3,240,5561,8,240, + 1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242,1,242,1,242,1,242, + 1,243,1,243,1,243,1,243,3,243,5578,8,243,1,243,1,243,5,243,5582, + 8,243,10,243,12,243,5585,9,243,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,3,244,5597,8,244,1,244,1,244,1,244,1,244, + 3,244,5603,8,244,1,244,1,244,3,244,5607,8,244,1,244,1,244,1,244, + 3,244,5612,8,244,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246, 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,3,246,5640,8,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5655,8,246,1,246, - 1,246,1,246,3,246,5660,8,246,1,247,1,247,3,247,5664,8,247,1,247, - 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,248,1,248,3,248, - 5677,8,248,1,248,1,248,3,248,5681,8,248,3,248,5683,8,248,1,248,1, - 248,1,248,1,248,1,248,5,248,5690,8,248,10,248,12,248,5693,9,248, - 1,248,1,248,1,248,3,248,5698,8,248,3,248,5700,8,248,1,249,1,249, - 3,249,5704,8,249,1,249,3,249,5707,8,249,1,249,3,249,5710,8,249,1, - 249,3,249,5713,8,249,1,249,3,249,5716,8,249,3,249,5718,8,249,1,249, - 3,249,5721,8,249,1,250,1,250,3,250,5725,8,250,1,250,1,250,1,250, - 1,250,5,250,5731,8,250,10,250,12,250,5734,9,250,1,250,1,250,3,250, - 5738,8,250,1,250,3,250,5741,8,250,1,251,1,251,1,252,1,252,3,252, - 5747,8,252,1,252,1,252,3,252,5751,8,252,1,253,1,253,3,253,5755,8, - 253,1,253,1,253,1,253,3,253,5760,8,253,3,253,5762,8,253,1,254,1, - 254,3,254,5766,8,254,1,255,1,255,3,255,5770,8,255,1,256,1,256,1, - 256,5,256,5775,8,256,10,256,12,256,5778,9,256,1,257,1,257,1,257, - 3,257,5783,8,257,1,257,1,257,3,257,5787,8,257,3,257,5789,8,257,3, - 257,5791,8,257,1,257,1,257,1,258,1,258,1,258,1,258,1,258,1,258,1, - 258,1,258,1,258,3,258,5804,8,258,1,259,1,259,1,259,1,259,5,259,5810, - 8,259,10,259,12,259,5813,9,259,1,259,1,259,1,260,1,260,1,260,3,260, - 5820,8,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,5,261,5829, - 8,261,10,261,12,261,5832,9,261,1,261,1,261,1,262,1,262,1,262,1,262, - 1,262,3,262,5841,8,262,1,263,1,263,1,263,3,263,5846,8,263,1,263, - 1,263,3,263,5850,8,263,1,263,1,263,3,263,5854,8,263,1,263,1,263, - 1,263,1,263,1,263,3,263,5861,8,263,1,263,3,263,5864,8,263,3,263, - 5866,8,263,1,264,1,264,1,264,1,264,1,265,1,265,3,265,5874,8,265, - 1,265,1,265,3,265,5878,8,265,1,266,3,266,5881,8,266,1,266,1,266, - 1,266,1,266,1,266,3,266,5888,8,266,1,266,1,266,1,266,1,266,1,266, - 3,266,5895,8,266,1,266,1,266,1,266,3,266,5900,8,266,1,266,1,266, - 1,266,1,266,1,266,3,266,5907,8,266,1,266,3,266,5910,8,266,3,266, - 5912,8,266,1,266,3,266,5915,8,266,1,267,1,267,1,267,1,267,3,267, - 5921,8,267,1,267,1,267,1,267,3,267,5926,8,267,1,267,1,267,3,267, - 5930,8,267,1,268,1,268,1,268,5,268,5935,8,268,10,268,12,268,5938, - 9,268,1,269,1,269,1,269,1,270,1,270,1,270,1,271,3,271,5947,8,271, - 1,271,1,271,1,271,1,271,1,271,3,271,5954,8,271,1,271,3,271,5957, - 8,271,1,271,3,271,5960,8,271,1,272,1,272,3,272,5964,8,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,3,272,5975,8,272, - 1,272,3,272,5978,8,272,1,272,3,272,5981,8,272,1,272,3,272,5984,8, - 272,1,273,3,273,5987,8,273,1,273,1,273,1,273,1,273,1,273,3,273,5994, - 8,273,1,273,3,273,5997,8,273,1,273,3,273,6000,8,273,1,274,1,274, - 1,274,5,274,6005,8,274,10,274,12,274,6008,9,274,1,275,1,275,1,275, - 1,275,1,275,1,275,1,275,1,275,1,275,3,275,6019,8,275,1,275,1,275, - 1,275,1,275,1,275,3,275,6026,8,275,3,275,6028,8,275,1,276,1,276, - 1,276,3,276,6033,8,276,1,276,1,276,1,276,5,276,6038,8,276,10,276, - 12,276,6041,9,276,1,276,1,276,1,276,3,276,6046,8,276,1,276,1,276, - 1,276,1,277,1,277,3,277,6053,8,277,1,278,1,278,1,278,3,278,6058, - 8,278,1,278,1,278,1,279,3,279,6063,8,279,1,279,1,279,3,279,6067, - 8,279,1,279,1,279,3,279,6071,8,279,1,279,1,279,3,279,6075,8,279, - 3,279,6077,8,279,1,280,1,280,3,280,6081,8,280,1,281,1,281,3,281, - 6085,8,281,1,281,3,281,6088,8,281,1,281,3,281,6091,8,281,3,281,6093, - 8,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281,6103, - 8,281,3,281,6105,8,281,1,281,1,281,1,281,3,281,6110,8,281,5,281, - 6112,8,281,10,281,12,281,6115,9,281,1,282,1,282,3,282,6119,8,282, - 1,283,1,283,3,283,6123,8,283,1,283,1,283,1,283,5,283,6128,8,283, - 10,283,12,283,6131,9,283,1,284,1,284,3,284,6135,8,284,1,284,1,284, - 3,284,6139,8,284,1,284,3,284,6142,8,284,1,284,1,284,1,284,1,284, - 3,284,6148,8,284,1,284,3,284,6151,8,284,1,285,1,285,1,285,1,285, - 1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286,1,286,1,286, - 1,286,1,286,3,286,6170,8,286,1,286,1,286,1,286,1,287,1,287,3,287, - 6177,8,287,1,287,1,287,3,287,6181,8,287,1,288,3,288,6184,8,288,1, - 288,1,288,3,288,6188,8,288,1,288,1,288,3,288,6192,8,288,1,288,3, - 288,6195,8,288,1,288,3,288,6198,8,288,1,289,1,289,1,289,3,289,6203, - 8,289,1,290,1,290,1,290,1,290,1,290,5,290,6210,8,290,10,290,12,290, - 6213,9,290,1,291,1,291,1,291,1,291,3,291,6219,8,291,1,291,1,291, - 3,291,6223,8,291,1,292,1,292,3,292,6227,8,292,1,292,1,292,3,292, - 6231,8,292,1,292,3,292,6234,8,292,3,292,6236,8,292,1,293,1,293,1, - 293,3,293,6241,8,293,1,293,1,293,3,293,6245,8,293,1,294,1,294,1, - 294,3,294,6250,8,294,1,294,1,294,1,294,1,294,3,294,6256,8,294,1, - 295,1,295,1,295,1,295,1,295,3,295,6263,8,295,1,296,1,296,1,296,3, - 296,6268,8,296,1,297,1,297,1,297,3,297,6273,8,297,1,297,1,297,1, - 298,1,298,1,298,5,298,6280,8,298,10,298,12,298,6283,9,298,1,299, - 1,299,1,299,1,299,3,299,6289,8,299,1,299,1,299,1,299,1,299,5,299, - 6295,8,299,10,299,12,299,6298,9,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,3,299,6308,8,299,1,300,1,300,1,300,3,300,6313, - 8,300,1,300,1,300,3,300,6317,8,300,1,300,3,300,6320,8,300,1,300, - 1,300,3,300,6324,8,300,1,300,1,300,1,300,3,300,6329,8,300,4,300, - 6331,8,300,11,300,12,300,6332,1,300,1,300,1,300,3,300,6338,8,300, - 1,301,1,301,1,301,1,301,5,301,6344,8,301,10,301,12,301,6347,9,301, - 1,302,1,302,1,302,1,303,1,303,1,303,5,303,6355,8,303,10,303,12,303, - 6358,9,303,1,304,1,304,3,304,6362,8,304,1,304,1,304,3,304,6366,8, - 304,1,304,3,304,6369,8,304,1,304,3,304,6372,8,304,3,304,6374,8,304, - 1,304,3,304,6377,8,304,1,304,3,304,6380,8,304,1,304,3,304,6383,8, - 304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,3,304,6393,8, - 304,1,304,1,304,1,304,3,304,6398,8,304,1,304,1,304,1,304,1,304,3, - 304,6404,8,304,1,304,1,304,3,304,6408,8,304,3,304,6410,8,304,1,304, - 1,304,1,304,1,304,1,304,3,304,6417,8,304,1,304,1,304,1,304,3,304, - 6422,8,304,1,304,1,304,1,304,1,304,5,304,6428,8,304,10,304,12,304, - 6431,9,304,1,305,1,305,3,305,6435,8,305,1,305,1,305,3,305,6439,8, - 305,1,305,1,305,3,305,6443,8,305,3,305,6445,8,305,1,306,3,306,6448, - 8,306,1,306,1,306,1,306,1,306,1,306,3,306,6455,8,306,1,307,1,307, - 1,307,3,307,6460,8,307,1,307,3,307,6463,8,307,1,307,1,307,1,307, - 1,307,3,307,6469,8,307,1,308,1,308,3,308,6473,8,308,1,309,1,309, - 1,309,1,309,3,309,6479,8,309,1,310,1,310,1,310,1,310,1,310,1,310, - 1,310,3,310,6488,8,310,1,310,1,310,1,310,1,310,3,310,6494,8,310, - 3,310,6496,8,310,1,311,1,311,1,311,3,311,6501,8,311,1,311,3,311, - 6504,8,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,3,311,6513, - 8,311,1,311,1,311,1,311,1,311,1,311,3,311,6520,8,311,3,311,6522, - 8,311,1,312,1,312,1,312,5,312,6527,8,312,10,312,12,312,6530,9,312, - 1,313,1,313,3,313,6534,8,313,1,313,3,313,6537,8,313,1,314,1,314, - 1,314,1,314,1,314,1,314,1,314,1,314,3,314,6547,8,314,1,315,1,315, - 1,315,1,315,1,315,1,315,1,315,5,315,6556,8,315,10,315,12,315,6559, - 9,315,1,315,1,315,3,315,6563,8,315,1,315,1,315,3,315,6567,8,315, - 1,316,1,316,1,316,1,316,1,316,1,316,3,316,6575,8,316,1,317,1,317, - 1,317,1,318,1,318,1,318,1,318,1,318,3,318,6585,8,318,1,319,1,319, - 1,319,5,319,6590,8,319,10,319,12,319,6593,9,319,1,320,1,320,1,320, - 3,320,6598,8,320,1,321,1,321,1,321,1,321,1,321,1,321,1,321,5,321, - 6607,8,321,10,321,12,321,6610,9,321,1,321,1,321,1,321,3,321,6615, - 8,321,1,321,1,321,1,321,1,321,1,321,1,321,5,321,6623,8,321,10,321, - 12,321,6626,9,321,1,321,1,321,1,322,1,322,1,322,1,322,3,322,6634, - 8,322,1,322,1,322,3,322,6638,8,322,1,322,4,322,6641,8,322,11,322, - 12,322,6642,3,322,6645,8,322,1,322,1,322,3,322,6649,8,322,1,323, - 1,323,1,323,1,323,1,323,1,323,3,323,6657,8,323,1,324,3,324,6660, - 8,324,1,324,1,324,1,324,3,324,6665,8,324,1,324,5,324,6668,8,324, - 10,324,12,324,6671,9,324,1,324,1,324,1,324,1,324,3,324,6677,8,324, - 3,324,6679,8,324,1,324,1,324,1,324,1,324,3,324,6685,8,324,1,325, - 1,325,3,325,6689,8,325,1,325,3,325,6692,8,325,1,325,1,325,1,325, - 3,325,6697,8,325,1,325,3,325,6700,8,325,3,325,6702,8,325,1,326,1, - 326,1,326,1,326,3,326,6708,8,326,1,327,1,327,1,327,1,327,1,327,1, - 327,1,327,3,327,6717,8,327,1,327,1,327,1,327,1,327,3,327,6723,8, - 327,1,327,3,327,6726,8,327,1,328,1,328,1,328,1,328,1,329,1,329,3, - 329,6734,8,329,1,329,3,329,6737,8,329,1,330,1,330,3,330,6741,8,330, - 1,330,1,330,1,330,1,330,3,330,6747,8,330,3,330,6749,8,330,1,330, - 3,330,6752,8,330,1,331,1,331,3,331,6756,8,331,1,331,1,331,1,331, - 3,331,6761,8,331,1,332,1,332,1,332,1,332,1,332,3,332,6768,8,332, - 1,332,1,332,1,332,1,332,1,332,3,332,6775,8,332,3,332,6777,8,332, - 1,332,1,332,1,332,1,332,3,332,6783,8,332,3,332,6785,8,332,1,332, - 1,332,1,332,3,332,6790,8,332,3,332,6792,8,332,1,333,1,333,3,333, - 6796,8,333,1,334,1,334,1,335,1,335,1,336,1,336,1,336,3,336,6805, - 8,336,1,336,1,336,3,336,6809,8,336,1,336,1,336,1,336,1,336,1,336, - 1,336,5,336,6817,8,336,10,336,12,336,6820,9,336,1,337,1,337,1,337, - 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337,6833,8,337, - 1,337,3,337,6836,8,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337, - 6844,8,337,1,337,1,337,1,337,1,337,1,337,5,337,6851,8,337,10,337, - 12,337,6854,9,337,1,337,1,337,1,337,3,337,6859,8,337,1,337,1,337, - 1,337,3,337,6864,8,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337, - 6872,8,337,3,337,6874,8,337,1,337,1,337,1,337,3,337,6879,8,337,1, - 337,1,337,3,337,6883,8,337,1,337,1,337,1,337,3,337,6888,8,337,1, - 337,1,337,1,337,3,337,6893,8,337,1,338,1,338,1,338,1,338,3,338,6899, - 8,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 1,338,1,338,1,338,1,338,5,338,6915,8,338,10,338,12,338,6918,9,338, - 1,339,1,339,1,339,1,339,1,339,1,339,3,339,6926,8,339,1,339,1,339, - 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, - 3,339,6941,8,339,1,339,1,339,1,339,3,339,6946,8,339,1,339,3,339, - 6949,8,339,1,339,1,339,1,339,1,339,3,339,6955,8,339,1,339,1,339, - 1,339,3,339,6960,8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, - 1,339,1,339,1,339,1,339,3,339,6973,8,339,1,339,4,339,6976,8,339, - 11,339,12,339,6977,1,339,1,339,3,339,6982,8,339,1,339,1,339,1,339, - 1,339,1,339,3,339,6989,8,339,1,339,1,339,1,339,1,339,1,339,1,339, - 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, - 3,339,7008,8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, - 1,339,1,339,3,339,7020,8,339,1,339,1,339,1,339,3,339,7025,8,339, - 1,339,1,339,1,339,1,339,1,339,1,339,3,339,7033,8,339,5,339,7035, - 8,339,10,339,12,339,7038,9,339,1,340,1,340,1,340,1,340,1,340,1,340, - 3,340,7046,8,340,1,340,3,340,7049,8,340,1,340,1,340,1,340,3,340, - 7054,8,340,1,340,1,340,1,340,3,340,7059,8,340,1,340,3,340,7062,8, - 340,1,340,1,340,1,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341, - 7073,8,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341,7081,8,341, - 1,341,1,341,1,341,3,341,7086,8,341,3,341,7088,8,341,1,341,3,341, - 7091,8,341,1,342,1,342,3,342,7095,8,342,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,3,343,7106,8,343,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,3,343,7127,8,343,1,343,1,343,1,343, - 1,343,1,343,1,343,3,343,7135,8,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7148,8,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7158,8,343,1,343,1,343, - 1,343,1,343,3,343,7164,8,343,1,343,1,343,1,343,1,343,3,343,7170, - 8,343,1,343,3,343,7173,8,343,1,343,3,343,7176,8,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5642, + 8,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,3,246,5657,8,246,1,246,1,246,1,246,3,246,5662, + 8,246,1,247,1,247,3,247,5666,8,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,247,1,248,1,248,3,248,5679,8,248,1,248,1,248, + 3,248,5683,8,248,3,248,5685,8,248,1,248,1,248,1,248,1,248,1,248, + 5,248,5692,8,248,10,248,12,248,5695,9,248,1,248,1,248,1,248,3,248, + 5700,8,248,3,248,5702,8,248,1,249,1,249,3,249,5706,8,249,1,249,3, + 249,5709,8,249,1,249,3,249,5712,8,249,1,249,3,249,5715,8,249,1,249, + 3,249,5718,8,249,3,249,5720,8,249,1,249,3,249,5723,8,249,1,250,1, + 250,3,250,5727,8,250,1,250,1,250,1,250,1,250,5,250,5733,8,250,10, + 250,12,250,5736,9,250,1,250,1,250,3,250,5740,8,250,1,250,3,250,5743, + 8,250,1,251,1,251,1,252,1,252,3,252,5749,8,252,1,252,1,252,3,252, + 5753,8,252,1,253,1,253,3,253,5757,8,253,1,253,1,253,1,253,3,253, + 5762,8,253,3,253,5764,8,253,1,254,1,254,3,254,5768,8,254,1,255,1, + 255,3,255,5772,8,255,1,256,1,256,1,256,5,256,5777,8,256,10,256,12, + 256,5780,9,256,1,257,1,257,1,257,3,257,5785,8,257,1,257,1,257,3, + 257,5789,8,257,3,257,5791,8,257,3,257,5793,8,257,1,257,1,257,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5806,8,258, + 1,259,1,259,1,259,1,259,5,259,5812,8,259,10,259,12,259,5815,9,259, + 1,259,1,259,1,260,1,260,1,260,3,260,5822,8,260,1,260,1,260,1,260, + 1,261,1,261,1,261,1,261,5,261,5831,8,261,10,261,12,261,5834,9,261, + 1,261,1,261,1,262,1,262,1,262,1,262,1,262,3,262,5843,8,262,1,263, + 1,263,1,263,3,263,5848,8,263,1,263,1,263,3,263,5852,8,263,1,263, + 1,263,3,263,5856,8,263,1,263,1,263,1,263,1,263,1,263,3,263,5863, + 8,263,1,263,3,263,5866,8,263,3,263,5868,8,263,1,264,1,264,1,264, + 1,264,1,265,1,265,3,265,5876,8,265,1,265,1,265,3,265,5880,8,265, + 1,266,3,266,5883,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5890, + 8,266,1,266,1,266,1,266,1,266,1,266,3,266,5897,8,266,1,266,1,266, + 1,266,3,266,5902,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5909, + 8,266,1,266,3,266,5912,8,266,3,266,5914,8,266,1,266,3,266,5917,8, + 266,1,267,1,267,1,267,1,267,3,267,5923,8,267,1,267,1,267,1,267,3, + 267,5928,8,267,1,267,1,267,3,267,5932,8,267,1,268,1,268,1,268,5, + 268,5937,8,268,10,268,12,268,5940,9,268,1,269,1,269,1,269,1,270, + 1,270,1,270,1,271,3,271,5949,8,271,1,271,1,271,1,271,1,271,1,271, + 3,271,5956,8,271,1,271,3,271,5959,8,271,1,271,3,271,5962,8,271,1, + 272,1,272,3,272,5966,8,272,1,272,1,272,1,272,1,272,1,272,1,272,1, + 272,1,272,1,272,3,272,5977,8,272,1,272,3,272,5980,8,272,1,272,3, + 272,5983,8,272,1,272,3,272,5986,8,272,1,273,3,273,5989,8,273,1,273, + 1,273,1,273,1,273,1,273,3,273,5996,8,273,1,273,3,273,5999,8,273, + 1,273,3,273,6002,8,273,1,274,1,274,1,274,5,274,6007,8,274,10,274, + 12,274,6010,9,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, + 1,275,3,275,6021,8,275,1,275,1,275,1,275,1,275,1,275,3,275,6028, + 8,275,3,275,6030,8,275,1,276,1,276,1,276,3,276,6035,8,276,1,276, + 1,276,1,276,5,276,6040,8,276,10,276,12,276,6043,9,276,1,276,1,276, + 1,276,3,276,6048,8,276,1,276,1,276,1,276,1,277,1,277,3,277,6055, + 8,277,1,278,1,278,1,278,3,278,6060,8,278,1,278,1,278,1,279,3,279, + 6065,8,279,1,279,1,279,3,279,6069,8,279,1,279,1,279,3,279,6073,8, + 279,1,279,1,279,3,279,6077,8,279,3,279,6079,8,279,1,280,1,280,3, + 280,6083,8,280,1,281,1,281,3,281,6087,8,281,1,281,3,281,6090,8,281, + 1,281,3,281,6093,8,281,3,281,6095,8,281,1,281,1,281,1,281,1,281, + 1,281,1,281,1,281,1,281,3,281,6105,8,281,3,281,6107,8,281,1,281, + 1,281,1,281,3,281,6112,8,281,5,281,6114,8,281,10,281,12,281,6117, + 9,281,1,282,1,282,3,282,6121,8,282,1,283,1,283,3,283,6125,8,283, + 1,283,1,283,1,283,5,283,6130,8,283,10,283,12,283,6133,9,283,1,284, + 1,284,3,284,6137,8,284,1,284,1,284,3,284,6141,8,284,1,284,3,284, + 6144,8,284,1,284,1,284,1,284,1,284,3,284,6150,8,284,1,284,3,284, + 6153,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,286, + 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,6172,8,286, + 1,286,1,286,1,286,1,287,1,287,3,287,6179,8,287,1,287,1,287,3,287, + 6183,8,287,1,288,3,288,6186,8,288,1,288,1,288,3,288,6190,8,288,1, + 288,1,288,3,288,6194,8,288,1,288,3,288,6197,8,288,1,288,3,288,6200, + 8,288,1,289,1,289,1,289,3,289,6205,8,289,1,290,1,290,1,290,1,290, + 1,290,5,290,6212,8,290,10,290,12,290,6215,9,290,1,291,1,291,1,291, + 1,291,3,291,6221,8,291,1,291,1,291,3,291,6225,8,291,1,292,1,292, + 3,292,6229,8,292,1,292,1,292,3,292,6233,8,292,1,292,3,292,6236,8, + 292,3,292,6238,8,292,1,293,1,293,1,293,3,293,6243,8,293,1,293,1, + 293,3,293,6247,8,293,1,294,1,294,1,294,3,294,6252,8,294,1,294,1, + 294,1,294,1,294,3,294,6258,8,294,1,295,1,295,1,295,1,295,1,295,3, + 295,6265,8,295,1,296,1,296,1,296,3,296,6270,8,296,1,297,1,297,1, + 297,3,297,6275,8,297,1,297,1,297,1,298,1,298,1,298,5,298,6282,8, + 298,10,298,12,298,6285,9,298,1,299,1,299,1,299,1,299,3,299,6291, + 8,299,1,299,1,299,1,299,1,299,5,299,6297,8,299,10,299,12,299,6300, + 9,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,3,299,6310, + 8,299,1,300,1,300,1,300,3,300,6315,8,300,1,300,1,300,3,300,6319, + 8,300,1,300,3,300,6322,8,300,1,300,1,300,3,300,6326,8,300,1,300, + 1,300,1,300,3,300,6331,8,300,4,300,6333,8,300,11,300,12,300,6334, + 1,300,1,300,1,300,3,300,6340,8,300,1,301,1,301,1,301,1,301,5,301, + 6346,8,301,10,301,12,301,6349,9,301,1,302,1,302,1,302,1,303,1,303, + 1,303,5,303,6357,8,303,10,303,12,303,6360,9,303,1,304,1,304,3,304, + 6364,8,304,1,304,1,304,3,304,6368,8,304,1,304,3,304,6371,8,304,1, + 304,3,304,6374,8,304,3,304,6376,8,304,1,304,3,304,6379,8,304,1,304, + 3,304,6382,8,304,1,304,3,304,6385,8,304,1,304,1,304,1,304,1,304, + 1,304,1,304,1,304,1,304,3,304,6395,8,304,1,304,1,304,1,304,3,304, + 6400,8,304,1,304,1,304,1,304,1,304,3,304,6406,8,304,1,304,1,304, + 3,304,6410,8,304,3,304,6412,8,304,1,304,1,304,1,304,1,304,1,304, + 3,304,6419,8,304,1,304,1,304,1,304,3,304,6424,8,304,1,304,1,304, + 1,304,1,304,5,304,6430,8,304,10,304,12,304,6433,9,304,1,305,1,305, + 3,305,6437,8,305,1,305,1,305,3,305,6441,8,305,1,305,1,305,3,305, + 6445,8,305,3,305,6447,8,305,1,306,3,306,6450,8,306,1,306,1,306,1, + 306,1,306,1,306,3,306,6457,8,306,1,307,1,307,1,307,3,307,6462,8, + 307,1,307,3,307,6465,8,307,1,307,1,307,1,307,1,307,3,307,6471,8, + 307,1,308,1,308,3,308,6475,8,308,1,309,1,309,1,309,1,309,3,309,6481, + 8,309,1,310,1,310,1,310,1,310,1,310,1,310,1,310,3,310,6490,8,310, + 1,310,1,310,1,310,1,310,3,310,6496,8,310,3,310,6498,8,310,1,311, + 1,311,1,311,3,311,6503,8,311,1,311,3,311,6506,8,311,1,311,1,311, + 1,311,1,311,1,311,1,311,1,311,3,311,6515,8,311,1,311,1,311,1,311, + 1,311,1,311,3,311,6522,8,311,3,311,6524,8,311,1,312,1,312,1,312, + 5,312,6529,8,312,10,312,12,312,6532,9,312,1,313,1,313,3,313,6536, + 8,313,1,313,3,313,6539,8,313,1,314,1,314,1,314,1,314,1,314,1,314, + 1,314,1,314,3,314,6549,8,314,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,5,315,6558,8,315,10,315,12,315,6561,9,315,1,315,1,315,3,315, + 6565,8,315,1,315,1,315,3,315,6569,8,315,1,316,1,316,1,316,1,316, + 1,316,1,316,3,316,6577,8,316,1,317,1,317,1,317,1,318,1,318,1,318, + 1,318,1,318,3,318,6587,8,318,1,319,1,319,1,319,5,319,6592,8,319, + 10,319,12,319,6595,9,319,1,320,1,320,1,320,3,320,6600,8,320,1,321, + 1,321,1,321,1,321,1,321,1,321,1,321,5,321,6609,8,321,10,321,12,321, + 6612,9,321,1,321,1,321,1,321,3,321,6617,8,321,1,321,1,321,1,321, + 1,321,1,321,1,321,5,321,6625,8,321,10,321,12,321,6628,9,321,1,321, + 1,321,1,322,1,322,1,322,1,322,3,322,6636,8,322,1,322,1,322,3,322, + 6640,8,322,1,322,4,322,6643,8,322,11,322,12,322,6644,3,322,6647, + 8,322,1,322,1,322,3,322,6651,8,322,1,323,1,323,1,323,1,323,1,323, + 1,323,3,323,6659,8,323,1,324,3,324,6662,8,324,1,324,1,324,1,324, + 3,324,6667,8,324,1,324,5,324,6670,8,324,10,324,12,324,6673,9,324, + 1,324,1,324,1,324,1,324,3,324,6679,8,324,3,324,6681,8,324,1,324, + 1,324,1,324,1,324,3,324,6687,8,324,1,325,1,325,3,325,6691,8,325, + 1,325,3,325,6694,8,325,1,325,1,325,1,325,3,325,6699,8,325,1,325, + 3,325,6702,8,325,3,325,6704,8,325,1,326,1,326,1,326,1,326,3,326, + 6710,8,326,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,6719, + 8,327,1,327,1,327,1,327,1,327,3,327,6725,8,327,1,327,3,327,6728, + 8,327,1,328,1,328,1,328,1,328,1,329,1,329,3,329,6736,8,329,1,329, + 3,329,6739,8,329,1,330,1,330,3,330,6743,8,330,1,330,1,330,1,330, + 1,330,3,330,6749,8,330,3,330,6751,8,330,1,330,3,330,6754,8,330,1, + 331,1,331,3,331,6758,8,331,1,331,1,331,1,331,3,331,6763,8,331,1, + 332,1,332,1,332,1,332,1,332,3,332,6770,8,332,1,332,1,332,1,332,1, + 332,1,332,3,332,6777,8,332,3,332,6779,8,332,1,332,1,332,1,332,1, + 332,3,332,6785,8,332,3,332,6787,8,332,1,332,1,332,1,332,3,332,6792, + 8,332,3,332,6794,8,332,1,333,1,333,3,333,6798,8,333,1,334,1,334, + 1,335,1,335,1,336,1,336,1,336,3,336,6807,8,336,1,336,1,336,3,336, + 6811,8,336,1,336,1,336,1,336,1,336,1,336,1,336,5,336,6819,8,336, + 10,336,12,336,6822,9,336,1,337,1,337,1,337,1,337,1,337,1,337,1,337, + 1,337,1,337,1,337,1,337,3,337,6835,8,337,1,337,3,337,6838,8,337, + 1,337,1,337,1,337,1,337,1,337,1,337,3,337,6846,8,337,1,337,1,337, + 1,337,1,337,1,337,5,337,6853,8,337,10,337,12,337,6856,9,337,1,337, + 1,337,1,337,3,337,6861,8,337,1,337,1,337,1,337,3,337,6866,8,337, + 1,337,1,337,1,337,1,337,1,337,1,337,3,337,6874,8,337,3,337,6876, + 8,337,1,337,1,337,1,337,3,337,6881,8,337,1,337,1,337,3,337,6885, + 8,337,1,337,1,337,1,337,3,337,6890,8,337,1,337,1,337,1,337,3,337, + 6895,8,337,1,338,1,338,1,338,1,338,3,338,6901,8,338,1,338,1,338, + 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, + 1,338,5,338,6917,8,338,10,338,12,338,6920,9,338,1,339,1,339,1,339, + 1,339,1,339,1,339,3,339,6928,8,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,3,339,6943,8,339, + 1,339,1,339,1,339,3,339,6948,8,339,1,339,3,339,6951,8,339,1,339, + 1,339,1,339,1,339,3,339,6957,8,339,1,339,1,339,1,339,3,339,6962, + 8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,3,339,6975,8,339,1,339,4,339,6978,8,339,11,339,12,339,6979, + 1,339,1,339,3,339,6984,8,339,1,339,1,339,1,339,1,339,1,339,3,339, + 6991,8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,3,339,7010,8,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,3,339, + 7022,8,339,1,339,1,339,1,339,3,339,7027,8,339,1,339,1,339,1,339, + 1,339,1,339,1,339,3,339,7035,8,339,5,339,7037,8,339,10,339,12,339, + 7040,9,339,1,340,1,340,1,340,1,340,1,340,1,340,3,340,7048,8,340, + 1,340,3,340,7051,8,340,1,340,1,340,1,340,3,340,7056,8,340,1,340, + 1,340,1,340,3,340,7061,8,340,1,340,3,340,7064,8,340,1,340,1,340, + 1,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341,7075,8,341,1,341, + 1,341,1,341,1,341,1,341,1,341,3,341,7083,8,341,1,341,1,341,1,341, + 3,341,7088,8,341,3,341,7090,8,341,1,341,3,341,7093,8,341,1,342,1, + 342,3,342,7097,8,342,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1, + 343,1,343,3,343,7108,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1, + 343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,3,343,7129,8,343,1,343,1,343,1,343,1,343,1,343,1,343, + 3,343,7137,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7150,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7160,8,343,1,343,1,343,1,343,1,343,3,343, + 7166,8,343,1,343,1,343,1,343,1,343,3,343,7172,8,343,1,343,3,343, + 7175,8,343,1,343,3,343,7178,8,343,1,343,1,343,1,343,1,343,1,343, 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 3,343,7202,8,343,3,343,7204,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,3,343,7204,8,343, + 3,343,7206,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,3,343,7225,8,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,3,343,7235,8,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7248,8,343,1,343,1,343, - 1,343,3,343,7253,8,343,1,343,1,343,3,343,7257,8,343,3,343,7259,8, - 343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 3,343,7271,8,343,1,344,1,344,1,344,5,344,7276,8,344,10,344,12,344, - 7279,9,344,1,345,1,345,1,345,3,345,7284,8,345,1,346,1,346,1,347, - 1,347,3,347,7290,8,347,1,347,1,347,3,347,7294,8,347,1,348,1,348, - 1,348,1,349,1,349,1,349,1,349,5,349,7303,8,349,10,349,12,349,7306, - 9,349,1,350,1,350,1,350,1,351,1,351,1,351,1,351,1,352,1,352,1,352, - 3,352,7318,8,352,1,353,1,353,3,353,7322,8,353,1,353,1,353,1,353, - 3,353,7327,8,353,1,353,3,353,7330,8,353,1,353,3,353,7333,8,353,1, - 353,1,353,1,354,1,354,1,354,1,354,1,354,3,354,7342,8,354,1,354,1, - 354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,3,354,7353,8,354,3, - 354,7355,8,354,1,355,1,355,3,355,7359,8,355,1,355,1,355,1,355,3, - 355,7364,8,355,1,356,1,356,1,356,1,356,1,356,1,356,1,356,3,356,7373, - 8,356,1,357,1,357,1,357,3,357,7378,8,357,1,357,1,357,1,358,1,358, - 1,359,1,359,3,359,7386,8,359,1,360,1,360,1,361,1,361,1,361,1,361, - 1,361,1,361,3,361,7396,8,361,1,362,1,362,1,362,1,362,1,362,1,362, - 3,362,7404,8,362,1,363,1,363,3,363,7408,8,363,1,363,3,363,7411,8, - 363,1,364,1,364,1,364,5,364,7416,8,364,10,364,12,364,7419,9,364, - 1,365,1,365,1,366,1,366,1,367,1,367,1,367,1,367,1,367,3,367,7430, - 8,367,1,368,1,368,3,368,7434,8,368,1,369,1,369,1,369,5,369,7439, - 8,369,10,369,12,369,7442,9,369,1,370,1,370,1,370,1,370,1,370,3,370, - 7449,8,370,3,370,7451,8,370,1,371,1,371,1,371,1,371,1,371,5,371, - 7458,8,371,10,371,12,371,7461,9,371,3,371,7463,8,371,1,371,1,371, - 1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,3,372,7475,8,372, - 1,373,1,373,1,374,1,374,1,374,1,374,1,374,3,374,7484,8,374,1,374, - 1,374,1,374,1,374,1,374,3,374,7491,8,374,1,374,1,374,1,374,1,374, - 1,374,1,374,1,374,3,374,7500,8,374,1,375,1,375,1,375,1,375,1,375, - 1,376,1,376,1,376,3,376,7510,8,376,1,376,1,376,1,376,3,376,7515, - 8,376,1,376,1,376,3,376,7519,8,376,3,376,7521,8,376,1,376,3,376, - 7524,8,376,1,377,4,377,7527,8,377,11,377,12,377,7528,1,378,5,378, - 7532,8,378,10,378,12,378,7535,9,378,1,379,1,379,1,379,5,379,7540, - 8,379,10,379,12,379,7543,9,379,1,380,1,380,1,380,3,380,7548,8,380, - 1,380,3,380,7551,8,380,1,380,1,380,3,380,7555,8,380,3,380,7557,8, - 380,1,381,1,381,1,381,5,381,7562,8,381,10,381,12,381,7565,9,381, - 1,381,1,381,1,382,1,382,1,382,5,382,7572,8,382,10,382,12,382,7575, - 9,382,1,383,1,383,1,383,5,383,7580,8,383,10,383,12,383,7583,9,383, - 1,384,1,384,1,384,5,384,7588,8,384,10,384,12,384,7591,9,384,1,385, - 1,385,1,385,5,385,7596,8,385,10,385,12,385,7599,9,385,1,386,1,386, - 1,387,1,387,1,388,1,388,1,389,1,389,1,390,1,390,1,391,1,391,1,392, - 1,392,3,392,7615,8,392,1,393,1,393,1,393,5,393,7620,8,393,10,393, - 12,393,7623,9,393,1,394,1,394,1,394,5,394,7628,8,394,10,394,12,394, - 7631,9,394,1,395,1,395,1,396,1,396,1,397,1,397,1,398,1,398,1,399, - 1,399,1,400,1,400,1,400,1,400,3,400,7647,8,400,1,401,1,401,1,401, - 1,401,3,401,7653,8,401,1,402,1,402,1,402,1,402,3,402,7659,8,402, - 1,403,1,403,1,403,1,404,1,404,1,405,1,405,1,405,1,405,3,405,7670, - 8,405,1,406,1,406,1,406,1,406,3,406,7676,8,406,1,407,1,407,1,407, - 3,407,7681,8,407,1,408,1,408,1,408,1,408,5,408,7687,8,408,10,408, - 12,408,7690,9,408,1,408,1,408,3,408,7694,8,408,1,409,3,409,7697, - 8,409,1,409,1,409,1,410,1,410,1,410,1,410,1,410,3,410,7706,8,410, - 1,411,1,411,1,411,5,411,7711,8,411,10,411,12,411,7714,9,411,1,412, - 1,412,3,412,7718,8,412,1,413,1,413,3,413,7722,8,413,1,414,1,414, - 1,414,3,414,7727,8,414,1,415,1,415,1,415,1,415,3,415,7733,8,415, - 1,416,1,416,1,416,3,416,7738,8,416,1,416,1,416,1,416,1,416,1,416, - 1,416,3,416,7746,8,416,1,417,1,417,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,3,418,7801,8,418,1,419,1,419,1,420,1,420,1,421,3,421, - 7808,8,421,1,421,1,421,1,421,1,421,4,421,7814,8,421,11,421,12,421, - 7815,3,421,7818,8,421,3,421,7820,8,421,1,421,1,421,5,421,7824,8, - 421,10,421,12,421,7827,9,421,1,421,3,421,7830,8,421,1,421,1,421, - 3,421,7834,8,421,1,422,1,422,1,422,1,422,1,423,1,423,1,423,1,423, - 1,423,3,423,7845,8,423,1,423,3,423,7848,8,423,1,423,1,423,3,423, - 7852,8,423,1,423,1,423,3,423,7856,8,423,1,423,1,423,3,423,7860,8, - 423,1,423,3,423,7863,8,423,1,423,3,423,7866,8,423,1,423,3,423,7869, - 8,423,1,423,1,423,1,423,1,423,1,423,5,423,7876,8,423,10,423,12,423, - 7879,9,423,1,423,1,423,3,423,7883,8,423,1,423,1,423,3,423,7887,8, - 423,1,423,1,423,1,424,1,424,1,424,1,425,1,425,1,426,1,426,1,426, - 1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426, - 1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,3,426, - 7920,8,426,1,427,1,427,1,427,1,427,1,428,1,428,1,428,1,428,3,428, - 7930,8,428,1,428,1,428,3,428,7934,8,428,1,428,1,428,1,428,1,428, - 3,428,7940,8,428,1,428,1,428,1,428,3,428,7945,8,428,1,429,1,429, - 1,429,1,429,1,429,1,430,1,430,3,430,7954,8,430,1,430,1,430,1,430, - 1,430,5,430,7960,8,430,10,430,12,430,7963,9,430,1,430,1,430,1,431, - 1,431,1,431,1,431,1,432,1,432,3,432,7973,8,432,1,432,1,432,1,432, - 1,432,5,432,7979,8,432,10,432,12,432,7982,9,432,1,433,1,433,1,433, - 1,433,5,433,7988,8,433,10,433,12,433,7991,9,433,1,433,1,433,1,433, - 1,433,5,433,7997,8,433,10,433,12,433,8000,9,433,5,433,8002,8,433, - 10,433,12,433,8005,9,433,1,433,3,433,8008,8,433,1,433,1,433,1,433, - 1,433,1,434,1,434,5,434,8016,8,434,10,434,12,434,8019,9,434,1,435, - 1,435,3,435,8023,8,435,1,435,1,435,1,435,1,435,5,435,8029,8,435, - 10,435,12,435,8032,9,435,4,435,8034,8,435,11,435,12,435,8035,1,435, - 3,435,8039,8,435,1,435,1,435,1,435,1,435,1,436,3,436,8046,8,436, - 1,436,1,436,1,436,1,436,3,436,8052,8,436,1,436,1,436,1,437,1,437, - 1,437,1,437,3,437,8060,8,437,1,437,1,437,1,437,1,437,1,437,1,437, - 3,437,8068,8,437,1,437,3,437,8071,8,437,1,437,1,437,1,437,1,437, - 1,437,3,437,8078,8,437,3,437,8080,8,437,1,438,3,438,8083,8,438,1, - 438,1,438,1,438,1,438,3,438,8089,8,438,1,438,1,438,1,438,1,438,1, - 438,1,439,1,439,3,439,8098,8,439,1,439,1,439,3,439,8102,8,439,1, - 439,1,439,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440,1,440, - 1,440,3,440,8116,8,440,1,440,3,440,8119,8,440,3,440,8121,8,440,1, - 440,1,440,1,441,1,441,3,441,8127,8,441,1,441,1,441,1,441,1,441,1, - 441,1,441,4,441,8135,8,441,11,441,12,441,8136,3,441,8139,8,441,3, - 441,8141,8,441,1,441,1,441,1,441,1,441,5,441,8147,8,441,10,441,12, - 441,8150,9,441,3,441,8152,8,441,1,441,3,441,8155,8,441,1,442,1,442, - 1,442,1,442,1,443,1,443,1,443,1,443,3,443,8165,8,443,1,443,1,443, - 1,444,1,444,5,444,8171,8,444,10,444,12,444,8174,9,444,1,444,1,444, - 1,444,3,444,8179,8,444,1,444,1,444,1,445,1,445,3,445,8185,8,445, - 1,445,1,445,1,446,1,446,1,446,3,446,8192,8,446,1,446,1,446,3,446, - 8196,8,446,1,446,1,446,3,446,8200,8,446,1,446,3,446,8203,8,446,1, - 446,3,446,8206,8,446,1,446,1,446,1,447,1,447,3,447,8212,8,447,1, - 447,1,447,1,448,1,448,1,448,3,448,8219,8,448,1,448,3,448,8222,8, - 448,1,448,1,448,1,448,1,448,1,448,1,448,3,448,8230,8,448,3,448,8232, - 8,448,1,448,1,448,1,448,1,448,1,448,5,448,8239,8,448,10,448,12,448, - 8242,9,448,1,448,1,448,3,448,8246,8,448,3,448,8248,8,448,1,448,1, - 448,1,449,1,449,1,449,3,449,8255,8,449,1,449,1,449,1,450,1,450,3, - 450,8261,8,450,1,450,3,450,8264,8,450,1,450,1,450,1,450,1,450,1, - 450,1,451,1,451,1,451,1,451,1,451,3,451,8276,8,451,1,451,1,451,1, - 451,1,451,1,451,3,451,8283,8,451,3,451,8285,8,451,1,452,1,452,3, - 452,8289,8,452,1,452,1,452,1,452,1,453,3,453,8295,8,453,1,453,1, - 453,1,453,3,453,8300,8,453,1,453,1,453,3,453,8304,8,453,1,453,3, - 453,8307,8,453,1,453,3,453,8310,8,453,1,453,1,453,1,453,1,453,1, - 453,4,453,8317,8,453,11,453,12,453,8318,1,453,3,453,8322,8,453,1, - 454,3,454,8325,8,454,1,454,1,454,3,454,8329,8,454,1,454,1,454,3, - 454,8333,8,454,3,454,8335,8,454,1,454,3,454,8338,8,454,1,454,3,454, - 8341,8,454,1,455,1,455,1,455,1,455,3,455,8347,8,455,1,455,1,455, - 1,455,1,455,1,455,3,455,8354,8,455,1,455,1,455,1,455,1,455,1,455, - 3,455,8361,8,455,1,455,1,455,1,455,1,455,3,455,8367,8,455,3,455, - 8369,8,455,1,456,1,456,3,456,8373,8,456,1,456,1,456,1,456,3,456, - 8378,8,456,1,456,1,456,1,457,1,457,1,457,1,457,1,457,1,457,1,457, - 1,457,1,457,1,457,1,457,1,457,5,457,8394,8,457,10,457,12,457,8397, - 9,457,1,457,1,457,4,457,8401,8,457,11,457,12,457,8402,1,458,1,458, - 1,458,1,458,1,458,5,458,8410,8,458,10,458,12,458,8413,9,458,1,458, - 1,458,1,458,1,458,3,458,8419,8,458,1,459,1,459,3,459,8423,8,459, - 1,460,1,460,1,460,1,460,1,461,1,461,1,461,1,462,1,462,1,462,3,462, - 8435,8,462,1,462,3,462,8438,8,462,1,462,1,462,1,463,1,463,1,463, - 1,463,1,463,1,463,1,463,1,463,1,463,3,463,8451,8,463,1,463,3,463, - 8454,8,463,1,464,1,464,3,464,8458,8,464,1,465,1,465,1,465,1,465, - 1,465,5,465,8465,8,465,10,465,12,465,8468,9,465,1,465,1,465,5,465, - 8472,8,465,10,465,12,465,8475,9,465,4,465,8477,8,465,11,465,12,465, - 8478,1,466,1,466,1,466,3,466,8484,8,466,1,467,1,467,3,467,8488,8, - 467,1,468,3,468,8491,8,468,1,468,3,468,8494,8,468,1,468,3,468,8497, - 8,468,1,468,3,468,8500,8,468,1,468,3,468,8503,8,468,1,468,3,468, - 8506,8,468,1,468,3,468,8509,8,468,1,468,0,3,672,676,678,469,0,2, + 3,343,7227,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 3,343,7237,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7250,8,343,1,343,1,343,1,343,3,343,7255, + 8,343,1,343,1,343,3,343,7259,8,343,3,343,7261,8,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,3,343,7273,8,343, + 1,344,1,344,1,344,5,344,7278,8,344,10,344,12,344,7281,9,344,1,345, + 1,345,1,345,3,345,7286,8,345,1,346,1,346,1,347,1,347,3,347,7292, + 8,347,1,347,1,347,3,347,7296,8,347,1,348,1,348,1,348,1,349,1,349, + 1,349,1,349,5,349,7305,8,349,10,349,12,349,7308,9,349,1,350,1,350, + 1,350,1,351,1,351,1,351,1,351,1,352,1,352,1,352,3,352,7320,8,352, + 1,353,1,353,3,353,7324,8,353,1,353,1,353,1,353,3,353,7329,8,353, + 1,353,3,353,7332,8,353,1,353,3,353,7335,8,353,1,353,1,353,1,354, + 1,354,1,354,1,354,1,354,3,354,7344,8,354,1,354,1,354,1,354,1,354, + 1,354,1,354,1,354,1,354,1,354,3,354,7355,8,354,3,354,7357,8,354, + 1,355,1,355,3,355,7361,8,355,1,355,1,355,1,355,3,355,7366,8,355, + 1,356,1,356,1,356,1,356,1,356,1,356,1,356,3,356,7375,8,356,1,357, + 1,357,1,357,3,357,7380,8,357,1,357,1,357,1,358,1,358,1,359,1,359, + 3,359,7388,8,359,1,360,1,360,1,361,1,361,1,361,1,361,1,361,1,361, + 3,361,7398,8,361,1,362,1,362,1,362,1,362,1,362,1,362,3,362,7406, + 8,362,1,363,1,363,3,363,7410,8,363,1,363,3,363,7413,8,363,1,364, + 1,364,1,364,5,364,7418,8,364,10,364,12,364,7421,9,364,1,365,1,365, + 1,366,1,366,1,367,1,367,1,367,1,367,1,367,3,367,7432,8,367,1,368, + 1,368,3,368,7436,8,368,1,369,1,369,1,369,5,369,7441,8,369,10,369, + 12,369,7444,9,369,1,370,1,370,1,370,1,370,1,370,3,370,7451,8,370, + 3,370,7453,8,370,1,371,1,371,1,371,1,371,1,371,5,371,7460,8,371, + 10,371,12,371,7463,9,371,3,371,7465,8,371,1,371,1,371,1,372,1,372, + 1,372,1,372,1,372,1,372,1,372,1,372,3,372,7477,8,372,1,373,1,373, + 1,374,1,374,1,374,1,374,1,374,3,374,7486,8,374,1,374,1,374,1,374, + 1,374,1,374,3,374,7493,8,374,1,374,1,374,1,374,1,374,1,374,1,374, + 1,374,3,374,7502,8,374,1,375,1,375,1,375,1,375,1,375,1,376,1,376, + 1,376,3,376,7512,8,376,1,376,1,376,1,376,3,376,7517,8,376,1,376, + 1,376,3,376,7521,8,376,3,376,7523,8,376,1,376,3,376,7526,8,376,1, + 377,4,377,7529,8,377,11,377,12,377,7530,1,378,5,378,7534,8,378,10, + 378,12,378,7537,9,378,1,379,1,379,1,379,5,379,7542,8,379,10,379, + 12,379,7545,9,379,1,380,1,380,1,380,3,380,7550,8,380,1,380,3,380, + 7553,8,380,1,380,1,380,3,380,7557,8,380,3,380,7559,8,380,1,381,1, + 381,1,381,5,381,7564,8,381,10,381,12,381,7567,9,381,1,381,1,381, + 1,382,1,382,1,382,5,382,7574,8,382,10,382,12,382,7577,9,382,1,383, + 1,383,1,383,5,383,7582,8,383,10,383,12,383,7585,9,383,1,384,1,384, + 1,384,5,384,7590,8,384,10,384,12,384,7593,9,384,1,385,1,385,1,385, + 5,385,7598,8,385,10,385,12,385,7601,9,385,1,386,1,386,1,387,1,387, + 1,388,1,388,1,389,1,389,1,390,1,390,1,391,1,391,1,392,1,392,3,392, + 7617,8,392,1,393,1,393,1,393,5,393,7622,8,393,10,393,12,393,7625, + 9,393,1,394,1,394,1,394,5,394,7630,8,394,10,394,12,394,7633,9,394, + 1,395,1,395,1,396,1,396,1,397,1,397,1,398,1,398,1,399,1,399,1,400, + 1,400,1,400,1,400,3,400,7649,8,400,1,401,1,401,1,401,1,401,3,401, + 7655,8,401,1,402,1,402,1,403,1,403,1,403,1,403,1,403,1,403,1,403, + 1,403,1,403,3,403,7668,8,403,3,403,7670,8,403,1,404,1,404,1,404, + 1,404,1,404,1,404,1,404,1,404,1,404,3,404,7681,8,404,3,404,7683, + 8,404,1,405,1,405,1,406,1,406,1,406,1,406,3,406,7691,8,406,1,407, + 1,407,1,407,1,407,3,407,7697,8,407,1,408,1,408,1,408,3,408,7702, + 8,408,1,409,1,409,1,409,1,409,5,409,7708,8,409,10,409,12,409,7711, + 9,409,1,409,1,409,3,409,7715,8,409,1,410,3,410,7718,8,410,1,410, + 1,410,1,411,1,411,1,411,1,411,1,411,3,411,7727,8,411,1,412,1,412, + 1,412,5,412,7732,8,412,10,412,12,412,7735,9,412,1,413,1,413,3,413, + 7739,8,413,1,414,1,414,3,414,7743,8,414,1,415,1,415,1,415,3,415, + 7748,8,415,1,416,1,416,1,416,1,416,3,416,7754,8,416,1,417,1,417, + 1,417,3,417,7759,8,417,1,417,1,417,1,417,1,417,1,417,1,417,3,417, + 7767,8,417,1,418,1,418,1,419,1,419,1,419,1,419,1,419,1,419,1,419, + 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419, + 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419, + 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419, + 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419, + 3,419,7822,8,419,1,420,1,420,1,421,1,421,1,422,3,422,7829,8,422, + 1,422,1,422,1,422,1,422,4,422,7835,8,422,11,422,12,422,7836,3,422, + 7839,8,422,3,422,7841,8,422,1,422,1,422,5,422,7845,8,422,10,422, + 12,422,7848,9,422,1,422,3,422,7851,8,422,1,422,1,422,3,422,7855, + 8,422,1,423,1,423,1,423,1,423,1,424,1,424,1,424,1,424,1,424,3,424, + 7866,8,424,1,424,3,424,7869,8,424,1,424,1,424,3,424,7873,8,424,1, + 424,1,424,3,424,7877,8,424,1,424,1,424,3,424,7881,8,424,1,424,3, + 424,7884,8,424,1,424,3,424,7887,8,424,1,424,3,424,7890,8,424,1,424, + 1,424,1,424,1,424,1,424,5,424,7897,8,424,10,424,12,424,7900,9,424, + 1,424,1,424,3,424,7904,8,424,1,424,1,424,3,424,7908,8,424,1,424, + 1,424,1,425,1,425,1,425,1,426,1,426,1,427,1,427,1,427,1,427,1,427, + 1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427, + 1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,3,427,7941,8,427, + 1,428,1,428,1,428,1,428,1,429,1,429,1,429,1,429,3,429,7951,8,429, + 1,429,1,429,3,429,7955,8,429,1,429,1,429,1,429,1,429,3,429,7961, + 8,429,1,429,1,429,1,429,3,429,7966,8,429,1,430,1,430,1,430,1,430, + 1,430,1,431,1,431,3,431,7975,8,431,1,431,1,431,1,431,1,431,5,431, + 7981,8,431,10,431,12,431,7984,9,431,1,431,1,431,1,432,1,432,1,432, + 1,432,1,433,1,433,3,433,7994,8,433,1,433,1,433,1,433,1,433,5,433, + 8000,8,433,10,433,12,433,8003,9,433,1,434,1,434,1,434,1,434,5,434, + 8009,8,434,10,434,12,434,8012,9,434,1,434,1,434,1,434,1,434,5,434, + 8018,8,434,10,434,12,434,8021,9,434,5,434,8023,8,434,10,434,12,434, + 8026,9,434,1,434,3,434,8029,8,434,1,434,1,434,1,434,1,434,1,435, + 1,435,5,435,8037,8,435,10,435,12,435,8040,9,435,1,436,1,436,3,436, + 8044,8,436,1,436,1,436,1,436,1,436,5,436,8050,8,436,10,436,12,436, + 8053,9,436,4,436,8055,8,436,11,436,12,436,8056,1,436,3,436,8060, + 8,436,1,436,1,436,1,436,1,436,1,437,3,437,8067,8,437,1,437,1,437, + 1,437,1,437,3,437,8073,8,437,1,437,1,437,1,438,1,438,1,438,1,438, + 3,438,8081,8,438,1,438,1,438,1,438,1,438,1,438,1,438,3,438,8089, + 8,438,1,438,3,438,8092,8,438,1,438,1,438,1,438,1,438,1,438,3,438, + 8099,8,438,3,438,8101,8,438,1,439,3,439,8104,8,439,1,439,1,439,1, + 439,1,439,3,439,8110,8,439,1,439,1,439,1,439,1,439,1,439,1,440,1, + 440,3,440,8119,8,440,1,440,1,440,3,440,8123,8,440,1,440,1,440,1, + 441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,3,441, + 8137,8,441,1,441,3,441,8140,8,441,3,441,8142,8,441,1,441,1,441,1, + 442,1,442,3,442,8148,8,442,1,442,1,442,1,442,1,442,1,442,1,442,4, + 442,8156,8,442,11,442,12,442,8157,3,442,8160,8,442,3,442,8162,8, + 442,1,442,1,442,1,442,1,442,5,442,8168,8,442,10,442,12,442,8171, + 9,442,3,442,8173,8,442,1,442,3,442,8176,8,442,1,443,1,443,1,443, + 1,443,1,444,1,444,1,444,1,444,3,444,8186,8,444,1,444,1,444,1,445, + 1,445,5,445,8192,8,445,10,445,12,445,8195,9,445,1,445,1,445,1,445, + 3,445,8200,8,445,1,445,1,445,1,446,1,446,3,446,8206,8,446,1,446, + 1,446,1,447,1,447,1,447,3,447,8213,8,447,1,447,1,447,3,447,8217, + 8,447,1,447,1,447,3,447,8221,8,447,1,447,3,447,8224,8,447,1,447, + 3,447,8227,8,447,1,447,1,447,1,448,1,448,3,448,8233,8,448,1,448, + 1,448,1,449,1,449,1,449,3,449,8240,8,449,1,449,3,449,8243,8,449, + 1,449,1,449,1,449,1,449,1,449,1,449,3,449,8251,8,449,3,449,8253, + 8,449,1,449,1,449,1,449,1,449,1,449,5,449,8260,8,449,10,449,12,449, + 8263,9,449,1,449,1,449,3,449,8267,8,449,3,449,8269,8,449,1,449,1, + 449,1,450,1,450,1,450,3,450,8276,8,450,1,450,1,450,1,451,1,451,3, + 451,8282,8,451,1,451,3,451,8285,8,451,1,451,1,451,1,451,1,451,1, + 451,1,452,1,452,1,452,1,452,1,452,3,452,8297,8,452,1,452,1,452,1, + 452,1,452,1,452,3,452,8304,8,452,3,452,8306,8,452,1,453,1,453,3, + 453,8310,8,453,1,453,1,453,1,453,1,454,3,454,8316,8,454,1,454,1, + 454,1,454,3,454,8321,8,454,1,454,1,454,3,454,8325,8,454,1,454,3, + 454,8328,8,454,1,454,3,454,8331,8,454,1,454,1,454,1,454,1,454,1, + 454,4,454,8338,8,454,11,454,12,454,8339,1,454,3,454,8343,8,454,1, + 455,3,455,8346,8,455,1,455,1,455,3,455,8350,8,455,1,455,1,455,3, + 455,8354,8,455,3,455,8356,8,455,1,455,3,455,8359,8,455,1,455,3,455, + 8362,8,455,1,456,1,456,1,456,1,456,3,456,8368,8,456,1,456,1,456, + 1,456,1,456,1,456,3,456,8375,8,456,1,456,1,456,1,456,1,456,1,456, + 3,456,8382,8,456,1,456,1,456,1,456,1,456,3,456,8388,8,456,3,456, + 8390,8,456,1,457,1,457,3,457,8394,8,457,1,457,1,457,1,457,3,457, + 8399,8,457,1,457,1,457,1,458,1,458,1,458,1,458,1,458,1,458,1,458, + 1,458,1,458,1,458,1,458,1,458,5,458,8415,8,458,10,458,12,458,8418, + 9,458,1,458,1,458,4,458,8422,8,458,11,458,12,458,8423,1,459,1,459, + 1,459,1,459,1,459,5,459,8431,8,459,10,459,12,459,8434,9,459,1,459, + 1,459,1,459,1,459,3,459,8440,8,459,1,460,1,460,3,460,8444,8,460, + 1,461,1,461,1,461,1,461,1,462,1,462,1,462,1,463,1,463,1,463,3,463, + 8456,8,463,1,463,3,463,8459,8,463,1,463,1,463,1,464,1,464,1,464, + 1,464,1,464,1,464,1,464,1,464,1,464,3,464,8472,8,464,1,464,3,464, + 8475,8,464,1,465,1,465,3,465,8479,8,465,1,466,1,466,1,466,1,466, + 1,466,5,466,8486,8,466,10,466,12,466,8489,9,466,1,466,1,466,5,466, + 8493,8,466,10,466,12,466,8496,9,466,4,466,8498,8,466,11,466,12,466, + 8499,1,467,1,467,1,467,3,467,8505,8,467,1,468,1,468,3,468,8509,8, + 468,1,469,3,469,8512,8,469,1,469,3,469,8515,8,469,1,469,3,469,8518, + 8,469,1,469,3,469,8521,8,469,1,469,3,469,8524,8,469,1,469,3,469, + 8527,8,469,1,469,3,469,8530,8,469,1,469,0,3,672,676,678,470,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,120,122,124,126, @@ -55259,18 +54017,18 @@ export class PostgreSqlParser extends SQLParserBase { 832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862, 864,866,868,870,872,874,876,878,880,882,884,886,888,890,892,894, 896,898,900,902,904,906,908,910,912,914,916,918,920,922,924,926, - 928,930,932,934,936,0,119,2,0,195,195,364,364,2,0,66,66,318,318, - 2,0,99,99,318,318,2,0,134,134,318,318,1,0,529,531,2,0,10,10,94,94, - 2,0,133,133,191,191,2,0,254,254,332,332,2,0,162,162,363,363,2,0, - 180,180,221,221,5,0,30,30,288,288,329,329,352,352,354,354,2,0,109, - 109,532,532,2,0,158,158,277,277,2,0,367,367,439,439,2,0,139,139, - 312,312,2,0,191,191,333,333,2,0,313,313,333,333,2,0,150,150,315, - 315,2,0,64,64,94,94,4,0,78,78,183,183,197,197,298,298,1,0,549,551, - 2,0,213,213,254,254,2,0,352,352,354,354,2,0,200,200,224,224,9,0, - 30,30,160,160,165,165,179,179,219,219,227,227,342,342,345,345,438, - 438,3,0,113,113,284,284,336,336,2,0,53,53,78,78,2,0,105,105,379, - 379,2,0,260,260,262,262,3,0,173,173,260,260,262,262,1,0,12,13,2, - 0,64,64,375,375,2,0,156,156,206,206,2,0,189,189,360,360,2,0,215, + 928,930,932,934,936,938,0,119,2,0,195,195,364,364,2,0,66,66,318, + 318,2,0,99,99,318,318,2,0,134,134,318,318,1,0,529,531,2,0,10,10, + 94,94,2,0,133,133,191,191,2,0,254,254,332,332,2,0,162,162,363,363, + 2,0,180,180,221,221,5,0,30,30,288,288,329,329,352,352,354,354,2, + 0,109,109,532,532,2,0,158,158,277,277,2,0,367,367,439,439,2,0,139, + 139,312,312,2,0,191,191,333,333,2,0,313,313,333,333,2,0,150,150, + 315,315,2,0,64,64,94,94,4,0,78,78,183,183,197,197,298,298,1,0,549, + 551,2,0,213,213,254,254,2,0,352,352,354,354,2,0,200,200,224,224, + 9,0,30,30,160,160,165,165,179,179,219,219,227,227,342,342,345,345, + 438,438,3,0,113,113,284,284,336,336,2,0,53,53,78,78,2,0,105,105, + 379,379,2,0,260,260,262,262,3,0,173,173,260,260,262,262,1,0,12,13, + 2,0,64,64,375,375,2,0,156,156,206,206,2,0,189,189,360,360,2,0,215, 215,373,373,3,0,133,133,191,191,333,333,5,0,30,30,88,88,182,182, 241,241,369,369,2,0,9,9,94,94,2,0,92,92,226,226,1,0,448,449,2,0, 92,92,414,414,2,0,341,341,414,414,4,0,163,163,185,185,283,283,353, @@ -55302,2980 +54060,2987 @@ export class PostgreSqlParser extends SQLParserBase { 473,475,475,477,488,490,502,504,504,506,518,520,520,524,524,547, 548,3,0,106,123,125,128,472,472,4,0,30,52,54,70,72,105,454,454,2, 0,62,62,116,116,2,0,10,10,20,20,2,0,434,434,501,501,2,0,167,167, - 507,507,1,0,512,517,2,0,144,144,210,210,9947,0,941,1,0,0,0,2,946, - 1,0,0,0,4,1070,1,0,0,0,6,1072,1,0,0,0,8,1075,1,0,0,0,10,1125,1,0, - 0,0,12,1135,1,0,0,0,14,1137,1,0,0,0,16,1149,1,0,0,0,18,1161,1,0, - 0,0,20,1172,1,0,0,0,22,1206,1,0,0,0,24,1250,1,0,0,0,26,1252,1,0, - 0,0,28,1264,1,0,0,0,30,1271,1,0,0,0,32,1290,1,0,0,0,34,1298,1,0, - 0,0,36,1300,1,0,0,0,38,1314,1,0,0,0,40,1318,1,0,0,0,42,1355,1,0, - 0,0,44,1357,1,0,0,0,46,1365,1,0,0,0,48,1375,1,0,0,0,50,1382,1,0, - 0,0,52,1390,1,0,0,0,54,1396,1,0,0,0,56,1412,1,0,0,0,58,1416,1,0, - 0,0,60,1418,1,0,0,0,62,1430,1,0,0,0,64,1435,1,0,0,0,66,1440,1,0, - 0,0,68,1442,1,0,0,0,70,1454,1,0,0,0,72,1462,1,0,0,0,74,1464,1,0, - 0,0,76,1584,1,0,0,0,78,1586,1,0,0,0,80,1600,1,0,0,0,82,1602,1,0, - 0,0,84,1839,1,0,0,0,86,1846,1,0,0,0,88,1848,1,0,0,0,90,1850,1,0, - 0,0,92,1853,1,0,0,0,94,1864,1,0,0,0,96,1867,1,0,0,0,98,1897,1,0, - 0,0,100,1899,1,0,0,0,102,1940,1,0,0,0,104,1942,1,0,0,0,106,1996, - 1,0,0,0,108,2042,1,0,0,0,110,2063,1,0,0,0,112,2065,1,0,0,0,114,2082, - 1,0,0,0,116,2163,1,0,0,0,118,2165,1,0,0,0,120,2176,1,0,0,0,122,2199, - 1,0,0,0,124,2217,1,0,0,0,126,2219,1,0,0,0,128,2254,1,0,0,0,130,2347, - 1,0,0,0,132,2352,1,0,0,0,134,2354,1,0,0,0,136,2452,1,0,0,0,138,2454, - 1,0,0,0,140,2458,1,0,0,0,142,2469,1,0,0,0,144,2477,1,0,0,0,146,2480, - 1,0,0,0,148,2483,1,0,0,0,150,2501,1,0,0,0,152,2503,1,0,0,0,154,2507, - 1,0,0,0,156,2520,1,0,0,0,158,2522,1,0,0,0,160,2527,1,0,0,0,162,2547, - 1,0,0,0,164,2555,1,0,0,0,166,2562,1,0,0,0,168,2564,1,0,0,0,170,2573, - 1,0,0,0,172,2576,1,0,0,0,174,2580,1,0,0,0,176,2584,1,0,0,0,178,2609, - 1,0,0,0,180,2619,1,0,0,0,182,2633,1,0,0,0,184,2649,1,0,0,0,186,2655, - 1,0,0,0,188,2682,1,0,0,0,190,2692,1,0,0,0,192,2708,1,0,0,0,194,2752, - 1,0,0,0,196,2759,1,0,0,0,198,2761,1,0,0,0,200,2787,1,0,0,0,202,2798, - 1,0,0,0,204,2817,1,0,0,0,206,2828,1,0,0,0,208,2866,1,0,0,0,210,2887, - 1,0,0,0,212,2889,1,0,0,0,214,2909,1,0,0,0,216,2921,1,0,0,0,218,2933, - 1,0,0,0,220,2936,1,0,0,0,222,2939,1,0,0,0,224,2959,1,0,0,0,226,2964, - 1,0,0,0,228,3013,1,0,0,0,230,3015,1,0,0,0,232,3038,1,0,0,0,234,3054, - 1,0,0,0,236,3066,1,0,0,0,238,3093,1,0,0,0,240,3108,1,0,0,0,242,3171, - 1,0,0,0,244,3173,1,0,0,0,246,3178,1,0,0,0,248,3184,1,0,0,0,250,3271, - 1,0,0,0,252,3277,1,0,0,0,254,3279,1,0,0,0,256,3295,1,0,0,0,258,3297, - 1,0,0,0,260,3306,1,0,0,0,262,3310,1,0,0,0,264,3323,1,0,0,0,266,3335, - 1,0,0,0,268,3337,1,0,0,0,270,3359,1,0,0,0,272,3371,1,0,0,0,274,3382, - 1,0,0,0,276,3473,1,0,0,0,278,3475,1,0,0,0,280,3486,1,0,0,0,282,3497, - 1,0,0,0,284,3499,1,0,0,0,286,3525,1,0,0,0,288,3527,1,0,0,0,290,3531, - 1,0,0,0,292,3581,1,0,0,0,294,3583,1,0,0,0,296,3589,1,0,0,0,298,3614, - 1,0,0,0,300,3618,1,0,0,0,302,3832,1,0,0,0,304,3850,1,0,0,0,306,3876, - 1,0,0,0,308,3878,1,0,0,0,310,3886,1,0,0,0,312,3892,1,0,0,0,314,3896, - 1,0,0,0,316,3916,1,0,0,0,318,3922,1,0,0,0,320,3989,1,0,0,0,322,4020, - 1,0,0,0,324,4066,1,0,0,0,326,4068,1,0,0,0,328,4070,1,0,0,0,330,4081, - 1,0,0,0,332,4118,1,0,0,0,334,4120,1,0,0,0,336,4126,1,0,0,0,338,4176, - 1,0,0,0,340,4179,1,0,0,0,342,4193,1,0,0,0,344,4214,1,0,0,0,346,4238, - 1,0,0,0,348,4279,1,0,0,0,350,4281,1,0,0,0,352,4283,1,0,0,0,354,4323, - 1,0,0,0,356,4340,1,0,0,0,358,4360,1,0,0,0,360,4413,1,0,0,0,362,4416, - 1,0,0,0,364,4422,1,0,0,0,366,4430,1,0,0,0,368,4443,1,0,0,0,370,4445, - 1,0,0,0,372,4458,1,0,0,0,374,4460,1,0,0,0,376,4473,1,0,0,0,378,4483, - 1,0,0,0,380,4494,1,0,0,0,382,4505,1,0,0,0,384,4507,1,0,0,0,386,4512, - 1,0,0,0,388,4526,1,0,0,0,390,4558,1,0,0,0,392,4595,1,0,0,0,394,4597, - 1,0,0,0,396,4600,1,0,0,0,398,4603,1,0,0,0,400,4620,1,0,0,0,402,4641, - 1,0,0,0,404,4657,1,0,0,0,406,4673,1,0,0,0,408,4695,1,0,0,0,410,4700, - 1,0,0,0,412,4703,1,0,0,0,414,4711,1,0,0,0,416,4736,1,0,0,0,418,4739, - 1,0,0,0,420,4767,1,0,0,0,422,4772,1,0,0,0,424,4812,1,0,0,0,426,5024, - 1,0,0,0,428,5026,1,0,0,0,430,5114,1,0,0,0,432,5116,1,0,0,0,434,5122, - 1,0,0,0,436,5133,1,0,0,0,438,5143,1,0,0,0,440,5223,1,0,0,0,442,5225, - 1,0,0,0,444,5239,1,0,0,0,446,5261,1,0,0,0,448,5334,1,0,0,0,450,5336, - 1,0,0,0,452,5377,1,0,0,0,454,5379,1,0,0,0,456,5384,1,0,0,0,458,5387, - 1,0,0,0,460,5390,1,0,0,0,462,5440,1,0,0,0,464,5442,1,0,0,0,466,5453, - 1,0,0,0,468,5455,1,0,0,0,470,5465,1,0,0,0,472,5500,1,0,0,0,474,5503, - 1,0,0,0,476,5524,1,0,0,0,478,5534,1,0,0,0,480,5554,1,0,0,0,482,5560, - 1,0,0,0,484,5566,1,0,0,0,486,5571,1,0,0,0,488,5584,1,0,0,0,490,5611, - 1,0,0,0,492,5659,1,0,0,0,494,5661,1,0,0,0,496,5699,1,0,0,0,498,5701, - 1,0,0,0,500,5722,1,0,0,0,502,5742,1,0,0,0,504,5746,1,0,0,0,506,5761, - 1,0,0,0,508,5763,1,0,0,0,510,5767,1,0,0,0,512,5771,1,0,0,0,514,5779, - 1,0,0,0,516,5803,1,0,0,0,518,5805,1,0,0,0,520,5816,1,0,0,0,522,5824, - 1,0,0,0,524,5840,1,0,0,0,526,5865,1,0,0,0,528,5867,1,0,0,0,530,5871, - 1,0,0,0,532,5880,1,0,0,0,534,5920,1,0,0,0,536,5931,1,0,0,0,538,5939, - 1,0,0,0,540,5942,1,0,0,0,542,5946,1,0,0,0,544,5961,1,0,0,0,546,5986, - 1,0,0,0,548,6001,1,0,0,0,550,6027,1,0,0,0,552,6029,1,0,0,0,554,6052, - 1,0,0,0,556,6054,1,0,0,0,558,6062,1,0,0,0,560,6080,1,0,0,0,562,6104, - 1,0,0,0,564,6116,1,0,0,0,566,6120,1,0,0,0,568,6132,1,0,0,0,570,6152, - 1,0,0,0,572,6160,1,0,0,0,574,6174,1,0,0,0,576,6197,1,0,0,0,578,6199, - 1,0,0,0,580,6204,1,0,0,0,582,6214,1,0,0,0,584,6235,1,0,0,0,586,6237, - 1,0,0,0,588,6246,1,0,0,0,590,6257,1,0,0,0,592,6267,1,0,0,0,594,6269, - 1,0,0,0,596,6276,1,0,0,0,598,6307,1,0,0,0,600,6337,1,0,0,0,602,6339, - 1,0,0,0,604,6348,1,0,0,0,606,6351,1,0,0,0,608,6409,1,0,0,0,610,6444, - 1,0,0,0,612,6447,1,0,0,0,614,6468,1,0,0,0,616,6470,1,0,0,0,618,6478, - 1,0,0,0,620,6495,1,0,0,0,622,6521,1,0,0,0,624,6523,1,0,0,0,626,6531, - 1,0,0,0,628,6538,1,0,0,0,630,6562,1,0,0,0,632,6568,1,0,0,0,634,6576, - 1,0,0,0,636,6579,1,0,0,0,638,6586,1,0,0,0,640,6594,1,0,0,0,642,6599, - 1,0,0,0,644,6629,1,0,0,0,646,6656,1,0,0,0,648,6684,1,0,0,0,650,6701, - 1,0,0,0,652,6707,1,0,0,0,654,6725,1,0,0,0,656,6727,1,0,0,0,658,6731, - 1,0,0,0,660,6748,1,0,0,0,662,6753,1,0,0,0,664,6791,1,0,0,0,666,6793, - 1,0,0,0,668,6797,1,0,0,0,670,6799,1,0,0,0,672,6808,1,0,0,0,674,6892, - 1,0,0,0,676,6898,1,0,0,0,678,7007,1,0,0,0,680,7039,1,0,0,0,682,7090, - 1,0,0,0,684,7094,1,0,0,0,686,7270,1,0,0,0,688,7272,1,0,0,0,690,7280, - 1,0,0,0,692,7285,1,0,0,0,694,7287,1,0,0,0,696,7295,1,0,0,0,698,7298, - 1,0,0,0,700,7307,1,0,0,0,702,7310,1,0,0,0,704,7314,1,0,0,0,706,7319, - 1,0,0,0,708,7336,1,0,0,0,710,7363,1,0,0,0,712,7372,1,0,0,0,714,7374, - 1,0,0,0,716,7381,1,0,0,0,718,7385,1,0,0,0,720,7387,1,0,0,0,722,7395, - 1,0,0,0,724,7403,1,0,0,0,726,7410,1,0,0,0,728,7412,1,0,0,0,730,7420, - 1,0,0,0,732,7422,1,0,0,0,734,7429,1,0,0,0,736,7433,1,0,0,0,738,7435, - 1,0,0,0,740,7450,1,0,0,0,742,7452,1,0,0,0,744,7474,1,0,0,0,746,7476, - 1,0,0,0,748,7499,1,0,0,0,750,7501,1,0,0,0,752,7523,1,0,0,0,754,7526, - 1,0,0,0,756,7533,1,0,0,0,758,7536,1,0,0,0,760,7556,1,0,0,0,762,7563, - 1,0,0,0,764,7568,1,0,0,0,766,7576,1,0,0,0,768,7584,1,0,0,0,770,7592, - 1,0,0,0,772,7600,1,0,0,0,774,7602,1,0,0,0,776,7604,1,0,0,0,778,7606, - 1,0,0,0,780,7608,1,0,0,0,782,7610,1,0,0,0,784,7612,1,0,0,0,786,7616, - 1,0,0,0,788,7624,1,0,0,0,790,7632,1,0,0,0,792,7634,1,0,0,0,794,7636, - 1,0,0,0,796,7638,1,0,0,0,798,7640,1,0,0,0,800,7646,1,0,0,0,802,7652, - 1,0,0,0,804,7658,1,0,0,0,806,7660,1,0,0,0,808,7663,1,0,0,0,810,7669, - 1,0,0,0,812,7675,1,0,0,0,814,7677,1,0,0,0,816,7693,1,0,0,0,818,7696, - 1,0,0,0,820,7705,1,0,0,0,822,7707,1,0,0,0,824,7717,1,0,0,0,826,7721, - 1,0,0,0,828,7726,1,0,0,0,830,7732,1,0,0,0,832,7745,1,0,0,0,834,7747, - 1,0,0,0,836,7800,1,0,0,0,838,7802,1,0,0,0,840,7804,1,0,0,0,842,7807, - 1,0,0,0,844,7835,1,0,0,0,846,7839,1,0,0,0,848,7890,1,0,0,0,850,7893, - 1,0,0,0,852,7919,1,0,0,0,854,7921,1,0,0,0,856,7944,1,0,0,0,858,7946, - 1,0,0,0,860,7951,1,0,0,0,862,7966,1,0,0,0,864,7972,1,0,0,0,866,7983, - 1,0,0,0,868,8013,1,0,0,0,870,8020,1,0,0,0,872,8045,1,0,0,0,874,8055, - 1,0,0,0,876,8082,1,0,0,0,878,8095,1,0,0,0,880,8105,1,0,0,0,882,8124, - 1,0,0,0,884,8156,1,0,0,0,886,8160,1,0,0,0,888,8168,1,0,0,0,890,8182, - 1,0,0,0,892,8188,1,0,0,0,894,8209,1,0,0,0,896,8215,1,0,0,0,898,8254, - 1,0,0,0,900,8258,1,0,0,0,902,8284,1,0,0,0,904,8286,1,0,0,0,906,8294, - 1,0,0,0,908,8334,1,0,0,0,910,8368,1,0,0,0,912,8370,1,0,0,0,914,8381, - 1,0,0,0,916,8418,1,0,0,0,918,8422,1,0,0,0,920,8424,1,0,0,0,922,8428, - 1,0,0,0,924,8431,1,0,0,0,926,8453,1,0,0,0,928,8457,1,0,0,0,930,8459, - 1,0,0,0,932,8483,1,0,0,0,934,8487,1,0,0,0,936,8490,1,0,0,0,938,940, - 3,2,1,0,939,938,1,0,0,0,940,943,1,0,0,0,941,939,1,0,0,0,941,942, - 1,0,0,0,942,944,1,0,0,0,943,941,1,0,0,0,944,945,5,0,0,1,945,1,1, - 0,0,0,946,948,3,4,2,0,947,949,5,7,0,0,948,947,1,0,0,0,948,949,1, - 0,0,0,949,3,1,0,0,0,950,1071,3,272,136,0,951,1071,3,482,241,0,952, - 1071,3,478,239,0,953,1071,3,480,240,0,954,1071,3,346,173,0,955,1071, - 3,488,244,0,956,1071,3,286,143,0,957,1071,3,204,102,0,958,1071,3, - 206,103,0,959,1071,3,212,106,0,960,1071,3,226,113,0,961,1071,3,398, - 199,0,962,1071,3,28,14,0,963,1071,3,428,214,0,964,1071,3,430,215, - 0,965,1071,3,440,220,0,966,1071,3,432,216,0,967,1071,3,438,219,0, - 968,1071,3,238,119,0,969,1071,3,240,120,0,970,1071,3,192,96,0,971, - 1071,3,484,242,0,972,1071,3,76,38,0,973,1071,3,424,212,0,974,1071, - 3,100,50,0,975,1071,3,444,222,0,976,1071,3,18,9,0,977,1071,3,20, - 10,0,978,1071,3,16,8,0,979,1071,3,448,224,0,980,1071,3,178,89,0, - 981,1071,3,492,246,0,982,1071,3,490,245,0,983,1071,3,234,117,0,984, - 1071,3,500,250,0,985,1071,3,6,3,0,986,1071,3,72,36,0,987,1071,3, - 104,52,0,988,1071,3,496,248,0,989,1071,3,318,159,0,990,1071,3,70, - 35,0,991,1071,3,106,53,0,992,1071,3,248,124,0,993,1071,3,180,90, - 0,994,1071,3,274,137,0,995,1071,3,414,207,0,996,1071,3,494,247,0, - 997,1071,3,486,243,0,998,1071,3,202,101,0,999,1071,3,208,104,0,1000, - 1071,3,222,111,0,1001,1071,3,228,114,0,1002,1071,3,358,179,0,1003, - 1071,3,26,13,0,1004,1071,3,186,93,0,1005,1071,3,290,145,0,1006,1071, - 3,294,147,0,1007,1071,3,442,221,0,1008,1071,3,296,148,0,1009,1071, - 3,236,118,0,1010,1071,3,198,99,0,1011,1071,3,30,15,0,1012,1071,3, - 190,95,0,1013,1071,3,114,57,0,1014,1071,3,446,223,0,1015,1071,3, - 176,88,0,1016,1071,3,200,100,0,1017,1071,3,418,209,0,1018,1071,3, - 250,125,0,1019,1071,3,268,134,0,1020,1071,3,8,4,0,1021,1071,3,14, - 7,0,1022,1071,3,232,116,0,1023,1071,3,474,237,0,1024,1071,3,530, - 265,0,1025,1071,3,552,276,0,1026,1071,3,276,138,0,1027,1071,3,542, - 271,0,1028,1071,3,74,37,0,1029,1071,3,412,206,0,1030,1071,3,302, - 151,0,1031,1071,3,526,263,0,1032,1071,3,514,257,0,1033,1071,3,322, - 161,0,1034,1071,3,328,164,0,1035,1071,3,342,171,0,1036,1071,3,906, - 453,0,1037,1071,3,230,115,0,1038,1071,3,352,176,0,1039,1071,3,532, - 266,0,1040,1071,3,458,229,0,1041,1071,3,188,94,0,1042,1071,3,472, - 236,0,1043,1071,3,544,272,0,1044,1071,3,454,227,0,1045,1071,3,520, - 260,0,1046,1071,3,300,150,0,1047,1071,3,422,211,0,1048,1071,3,402, - 201,0,1049,1071,3,400,200,0,1050,1071,3,404,202,0,1051,1071,3,426, - 213,0,1052,1071,3,330,165,0,1053,1071,3,344,172,0,1054,1071,3,450, - 225,0,1055,1071,3,320,160,0,1056,1071,3,554,277,0,1057,1071,3,462, - 231,0,1058,1071,3,314,157,0,1059,1071,3,460,230,0,1060,1071,3,546, - 273,0,1061,1071,3,498,249,0,1062,1071,3,60,30,0,1063,1071,3,36,18, - 0,1064,1071,3,68,34,0,1065,1071,3,470,235,0,1066,1068,5,583,0,0, - 1067,1069,5,584,0,0,1068,1067,1,0,0,0,1068,1069,1,0,0,0,1069,1071, - 1,0,0,0,1070,950,1,0,0,0,1070,951,1,0,0,0,1070,952,1,0,0,0,1070, - 953,1,0,0,0,1070,954,1,0,0,0,1070,955,1,0,0,0,1070,956,1,0,0,0,1070, - 957,1,0,0,0,1070,958,1,0,0,0,1070,959,1,0,0,0,1070,960,1,0,0,0,1070, - 961,1,0,0,0,1070,962,1,0,0,0,1070,963,1,0,0,0,1070,964,1,0,0,0,1070, - 965,1,0,0,0,1070,966,1,0,0,0,1070,967,1,0,0,0,1070,968,1,0,0,0,1070, - 969,1,0,0,0,1070,970,1,0,0,0,1070,971,1,0,0,0,1070,972,1,0,0,0,1070, - 973,1,0,0,0,1070,974,1,0,0,0,1070,975,1,0,0,0,1070,976,1,0,0,0,1070, - 977,1,0,0,0,1070,978,1,0,0,0,1070,979,1,0,0,0,1070,980,1,0,0,0,1070, - 981,1,0,0,0,1070,982,1,0,0,0,1070,983,1,0,0,0,1070,984,1,0,0,0,1070, - 985,1,0,0,0,1070,986,1,0,0,0,1070,987,1,0,0,0,1070,988,1,0,0,0,1070, - 989,1,0,0,0,1070,990,1,0,0,0,1070,991,1,0,0,0,1070,992,1,0,0,0,1070, - 993,1,0,0,0,1070,994,1,0,0,0,1070,995,1,0,0,0,1070,996,1,0,0,0,1070, - 997,1,0,0,0,1070,998,1,0,0,0,1070,999,1,0,0,0,1070,1000,1,0,0,0, - 1070,1001,1,0,0,0,1070,1002,1,0,0,0,1070,1003,1,0,0,0,1070,1004, - 1,0,0,0,1070,1005,1,0,0,0,1070,1006,1,0,0,0,1070,1007,1,0,0,0,1070, - 1008,1,0,0,0,1070,1009,1,0,0,0,1070,1010,1,0,0,0,1070,1011,1,0,0, - 0,1070,1012,1,0,0,0,1070,1013,1,0,0,0,1070,1014,1,0,0,0,1070,1015, - 1,0,0,0,1070,1016,1,0,0,0,1070,1017,1,0,0,0,1070,1018,1,0,0,0,1070, - 1019,1,0,0,0,1070,1020,1,0,0,0,1070,1021,1,0,0,0,1070,1022,1,0,0, - 0,1070,1023,1,0,0,0,1070,1024,1,0,0,0,1070,1025,1,0,0,0,1070,1026, - 1,0,0,0,1070,1027,1,0,0,0,1070,1028,1,0,0,0,1070,1029,1,0,0,0,1070, - 1030,1,0,0,0,1070,1031,1,0,0,0,1070,1032,1,0,0,0,1070,1033,1,0,0, - 0,1070,1034,1,0,0,0,1070,1035,1,0,0,0,1070,1036,1,0,0,0,1070,1037, - 1,0,0,0,1070,1038,1,0,0,0,1070,1039,1,0,0,0,1070,1040,1,0,0,0,1070, - 1041,1,0,0,0,1070,1042,1,0,0,0,1070,1043,1,0,0,0,1070,1044,1,0,0, - 0,1070,1045,1,0,0,0,1070,1046,1,0,0,0,1070,1047,1,0,0,0,1070,1048, - 1,0,0,0,1070,1049,1,0,0,0,1070,1050,1,0,0,0,1070,1051,1,0,0,0,1070, - 1052,1,0,0,0,1070,1053,1,0,0,0,1070,1054,1,0,0,0,1070,1055,1,0,0, - 0,1070,1056,1,0,0,0,1070,1057,1,0,0,0,1070,1058,1,0,0,0,1070,1059, - 1,0,0,0,1070,1060,1,0,0,0,1070,1061,1,0,0,0,1070,1062,1,0,0,0,1070, - 1063,1,0,0,0,1070,1064,1,0,0,0,1070,1065,1,0,0,0,1070,1066,1,0,0, - 0,1071,5,1,0,0,0,1072,1073,5,433,0,0,1073,1074,3,680,340,0,1074, - 7,1,0,0,0,1075,1076,5,46,0,0,1076,1077,5,318,0,0,1077,1079,3,820, - 410,0,1078,1080,5,105,0,0,1079,1078,1,0,0,0,1079,1080,1,0,0,0,1080, - 1084,1,0,0,0,1081,1083,3,12,6,0,1082,1081,1,0,0,0,1083,1086,1,0, - 0,0,1084,1082,1,0,0,0,1084,1085,1,0,0,0,1085,9,1,0,0,0,1086,1084, - 1,0,0,0,1087,1090,5,287,0,0,1088,1091,3,814,407,0,1089,1091,5,78, - 0,0,1090,1088,1,0,0,0,1090,1089,1,0,0,0,1091,1126,1,0,0,0,1092,1093, - 7,0,0,0,1093,1094,5,287,0,0,1094,1126,3,814,407,0,1095,1126,5,228, - 0,0,1096,1126,5,229,0,0,1097,1126,5,236,0,0,1098,1126,5,237,0,0, - 1099,1126,5,234,0,0,1100,1126,5,235,0,0,1101,1126,5,232,0,0,1102, - 1126,5,233,0,0,1103,1126,5,230,0,0,1104,1126,5,231,0,0,1105,1126, - 5,535,0,0,1106,1126,5,536,0,0,1107,1126,5,537,0,0,1108,1126,5,538, - 0,0,1109,1126,5,539,0,0,1110,1126,5,540,0,0,1111,1112,5,164,0,0, - 1112,1113,5,74,0,0,1113,1126,3,818,409,0,1114,1115,5,371,0,0,1115, - 1116,5,368,0,0,1116,1126,3,814,407,0,1117,1118,5,68,0,0,1118,1119, - 7,1,0,0,1119,1126,3,788,394,0,1120,1121,7,2,0,0,1121,1126,3,822, - 411,0,1122,1123,5,134,0,0,1123,1126,3,788,394,0,1124,1126,3,832, - 416,0,1125,1087,1,0,0,0,1125,1092,1,0,0,0,1125,1095,1,0,0,0,1125, - 1096,1,0,0,0,1125,1097,1,0,0,0,1125,1098,1,0,0,0,1125,1099,1,0,0, - 0,1125,1100,1,0,0,0,1125,1101,1,0,0,0,1125,1102,1,0,0,0,1125,1103, - 1,0,0,0,1125,1104,1,0,0,0,1125,1105,1,0,0,0,1125,1106,1,0,0,0,1125, - 1107,1,0,0,0,1125,1108,1,0,0,0,1125,1109,1,0,0,0,1125,1110,1,0,0, - 0,1125,1111,1,0,0,0,1125,1114,1,0,0,0,1125,1117,1,0,0,0,1125,1120, - 1,0,0,0,1125,1122,1,0,0,0,1125,1124,1,0,0,0,1126,11,1,0,0,0,1127, - 1136,3,10,5,0,1128,1129,5,348,0,0,1129,1136,5,574,0,0,1130,1131, - 7,3,0,0,1131,1136,3,822,411,0,1132,1133,5,68,0,0,1133,1134,7,1,0, - 0,1134,1136,3,822,411,0,1135,1127,1,0,0,0,1135,1128,1,0,0,0,1135, - 1130,1,0,0,0,1135,1132,1,0,0,0,1136,13,1,0,0,0,1137,1138,5,46,0, - 0,1138,1139,5,99,0,0,1139,1141,3,820,410,0,1140,1142,5,105,0,0,1141, - 1140,1,0,0,0,1141,1142,1,0,0,0,1142,1146,1,0,0,0,1143,1145,3,12, - 6,0,1144,1143,1,0,0,0,1145,1148,1,0,0,0,1146,1144,1,0,0,0,1146,1147, - 1,0,0,0,1147,15,1,0,0,0,1148,1146,1,0,0,0,1149,1150,5,138,0,0,1150, - 1151,7,2,0,0,1151,1153,3,820,410,0,1152,1154,5,105,0,0,1153,1152, - 1,0,0,0,1153,1154,1,0,0,0,1154,1158,1,0,0,0,1155,1157,3,10,5,0,1156, - 1155,1,0,0,0,1157,1160,1,0,0,0,1158,1156,1,0,0,0,1158,1159,1,0,0, - 0,1159,17,1,0,0,0,1160,1158,1,0,0,0,1161,1162,5,138,0,0,1162,1165, - 7,2,0,0,1163,1166,5,30,0,0,1164,1166,3,820,410,0,1165,1163,1,0,0, - 0,1165,1164,1,0,0,0,1166,1167,1,0,0,0,1167,1168,5,68,0,0,1168,1169, - 5,175,0,0,1169,1170,3,792,396,0,1170,1171,3,64,32,0,1171,19,1,0, - 0,0,1172,1173,5,138,0,0,1173,1174,5,442,0,0,1174,1176,3,798,399, - 0,1175,1177,3,362,181,0,1176,1175,1,0,0,0,1176,1177,1,0,0,0,1177, - 1178,1,0,0,0,1178,1179,3,22,11,0,1179,21,1,0,0,0,1180,1184,3,24, - 12,0,1181,1183,3,24,12,0,1182,1181,1,0,0,0,1183,1186,1,0,0,0,1184, - 1182,1,0,0,0,1184,1185,1,0,0,0,1185,1188,1,0,0,0,1186,1184,1,0,0, - 0,1187,1189,5,315,0,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1207, - 1,0,0,0,1190,1191,5,309,0,0,1191,1192,5,94,0,0,1192,1207,3,796,398, - 0,1193,1194,5,282,0,0,1194,1195,5,94,0,0,1195,1207,3,820,410,0,1196, - 1197,5,333,0,0,1197,1198,5,323,0,0,1198,1207,3,32,16,0,1199,1201, - 5,269,0,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201,1202,1,0,0,0, - 1202,1203,5,462,0,0,1203,1204,5,80,0,0,1204,1205,5,204,0,0,1205, - 1207,3,824,412,0,1206,1180,1,0,0,0,1206,1190,1,0,0,0,1206,1193,1, - 0,0,0,1206,1196,1,0,0,0,1206,1200,1,0,0,0,1207,23,1,0,0,0,1208,1251, - 5,222,0,0,1209,1251,5,338,0,0,1210,1251,5,377,0,0,1211,1213,5,77, - 0,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0,1214,1251, - 5,250,0,0,1215,1217,5,205,0,0,1216,1215,1,0,0,0,1216,1217,1,0,0, - 0,1217,1218,1,0,0,0,1218,1219,5,327,0,0,1219,1226,5,243,0,0,1220, - 1222,5,205,0,0,1221,1220,1,0,0,0,1221,1222,1,0,0,0,1222,1223,1,0, - 0,0,1223,1224,5,327,0,0,1224,1226,5,181,0,0,1225,1216,1,0,0,0,1225, - 1221,1,0,0,0,1226,1251,1,0,0,0,1227,1228,5,460,0,0,1228,1251,7,4, - 0,0,1229,1230,5,170,0,0,1230,1251,3,830,415,0,1231,1232,5,320,0, - 0,1232,1251,3,824,412,0,1233,1234,5,333,0,0,1234,1235,3,824,412, - 0,1235,1238,7,5,0,0,1236,1239,3,824,412,0,1237,1239,5,53,0,0,1238, - 1236,1,0,0,0,1238,1237,1,0,0,0,1239,1251,1,0,0,0,1240,1241,5,333, - 0,0,1241,1242,3,824,412,0,1242,1243,5,64,0,0,1243,1244,5,434,0,0, - 1244,1251,1,0,0,0,1245,1248,5,313,0,0,1246,1249,3,824,412,0,1247, - 1249,5,30,0,0,1248,1246,1,0,0,0,1248,1247,1,0,0,0,1249,1251,1,0, - 0,0,1250,1208,1,0,0,0,1250,1209,1,0,0,0,1250,1210,1,0,0,0,1250,1212, - 1,0,0,0,1250,1225,1,0,0,0,1250,1227,1,0,0,0,1250,1229,1,0,0,0,1250, - 1231,1,0,0,0,1250,1233,1,0,0,0,1250,1240,1,0,0,0,1250,1245,1,0,0, - 0,1251,25,1,0,0,0,1252,1253,5,46,0,0,1253,1254,5,66,0,0,1254,1256, - 3,820,410,0,1255,1257,5,105,0,0,1256,1255,1,0,0,0,1256,1257,1,0, - 0,0,1257,1261,1,0,0,0,1258,1260,3,12,6,0,1259,1258,1,0,0,0,1260, - 1263,1,0,0,0,1261,1259,1,0,0,0,1261,1262,1,0,0,0,1262,27,1,0,0,0, - 1263,1261,1,0,0,0,1264,1265,5,138,0,0,1265,1266,5,66,0,0,1266,1267, - 3,820,410,0,1267,1268,7,6,0,0,1268,1269,5,99,0,0,1269,1270,3,822, - 411,0,1270,29,1,0,0,0,1271,1272,5,46,0,0,1272,1274,5,323,0,0,1273, - 1275,3,288,144,0,1274,1273,1,0,0,0,1274,1275,1,0,0,0,1275,1282,1, - 0,0,0,1276,1278,3,32,16,0,1277,1276,1,0,0,0,1277,1278,1,0,0,0,1278, - 1279,1,0,0,0,1279,1280,5,106,0,0,1280,1283,3,820,410,0,1281,1283, - 3,32,16,0,1282,1277,1,0,0,0,1282,1281,1,0,0,0,1283,1287,1,0,0,0, - 1284,1286,3,34,17,0,1285,1284,1,0,0,0,1286,1289,1,0,0,0,1287,1285, - 1,0,0,0,1287,1288,1,0,0,0,1288,31,1,0,0,0,1289,1287,1,0,0,0,1290, - 1291,3,310,155,0,1291,33,1,0,0,0,1292,1299,3,114,57,0,1293,1299, - 3,352,176,0,1294,1299,3,190,95,0,1295,1299,3,250,125,0,1296,1299, - 3,328,164,0,1297,1299,3,470,235,0,1298,1292,1,0,0,0,1298,1293,1, - 0,0,0,1298,1294,1,0,0,0,1298,1295,1,0,0,0,1298,1296,1,0,0,0,1298, - 1297,1,0,0,0,1299,35,1,0,0,0,1300,1302,5,333,0,0,1301,1303,7,7,0, - 0,1302,1301,1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1305, - 3,38,19,0,1305,37,1,0,0,0,1306,1307,5,356,0,0,1307,1315,3,468,234, - 0,1308,1309,5,332,0,0,1309,1310,5,154,0,0,1310,1311,5,36,0,0,1311, - 1312,5,356,0,0,1312,1315,3,468,234,0,1313,1315,3,42,21,0,1314,1306, - 1,0,0,0,1314,1308,1,0,0,0,1314,1313,1,0,0,0,1315,39,1,0,0,0,1316, - 1319,5,30,0,0,1317,1319,3,44,22,0,1318,1316,1,0,0,0,1318,1317,1, - 0,0,0,1319,1321,1,0,0,0,1320,1322,7,5,0,0,1321,1320,1,0,0,0,1321, - 1322,1,0,0,0,1322,1325,1,0,0,0,1323,1326,5,53,0,0,1324,1326,3,46, - 23,0,1325,1323,1,0,0,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326, - 41,1,0,0,0,1327,1328,5,418,0,0,1328,1329,5,386,0,0,1329,1356,3,56, - 28,0,1330,1331,5,152,0,0,1331,1356,3,814,407,0,1332,1333,5,323,0, - 0,1333,1356,3,794,397,0,1334,1337,5,267,0,0,1335,1338,3,814,407, - 0,1336,1338,5,53,0,0,1337,1335,1,0,0,0,1337,1336,1,0,0,0,1337,1338, - 1,0,0,0,1338,1356,1,0,0,0,1339,1340,5,318,0,0,1340,1356,3,58,29, - 0,1341,1342,5,332,0,0,1342,1343,5,106,0,0,1343,1356,3,58,29,0,1344, - 1345,5,383,0,0,1345,1346,5,279,0,0,1346,1356,3,692,346,0,1347,1348, - 5,356,0,0,1348,1349,5,337,0,0,1349,1356,3,814,407,0,1350,1351,3, - 44,22,0,1351,1352,5,64,0,0,1352,1353,5,434,0,0,1353,1356,1,0,0,0, - 1354,1356,3,40,20,0,1355,1327,1,0,0,0,1355,1330,1,0,0,0,1355,1332, - 1,0,0,0,1355,1334,1,0,0,0,1355,1339,1,0,0,0,1355,1341,1,0,0,0,1355, - 1344,1,0,0,0,1355,1347,1,0,0,0,1355,1350,1,0,0,0,1355,1354,1,0,0, - 0,1356,43,1,0,0,0,1357,1362,3,824,412,0,1358,1359,5,11,0,0,1359, - 1361,3,824,412,0,1360,1358,1,0,0,0,1361,1364,1,0,0,0,1362,1360,1, - 0,0,0,1362,1363,1,0,0,0,1363,45,1,0,0,0,1364,1362,1,0,0,0,1365,1370, - 3,48,24,0,1366,1367,5,6,0,0,1367,1369,3,48,24,0,1368,1366,1,0,0, - 0,1369,1372,1,0,0,0,1370,1368,1,0,0,0,1370,1371,1,0,0,0,1371,47, - 1,0,0,0,1372,1370,1,0,0,0,1373,1376,3,54,27,0,1374,1376,3,196,98, - 0,1375,1373,1,0,0,0,1375,1374,1,0,0,0,1376,49,1,0,0,0,1377,1378, - 5,300,0,0,1378,1383,7,8,0,0,1379,1380,5,310,0,0,1380,1383,5,300, - 0,0,1381,1383,5,330,0,0,1382,1377,1,0,0,0,1382,1379,1,0,0,0,1382, - 1381,1,0,0,0,1383,51,1,0,0,0,1384,1391,5,96,0,0,1385,1391,5,60,0, - 0,1386,1391,5,80,0,0,1387,1391,3,804,402,0,1388,1391,3,838,419,0, - 1389,1391,3,814,407,0,1390,1384,1,0,0,0,1390,1385,1,0,0,0,1390,1386, - 1,0,0,0,1390,1387,1,0,0,0,1390,1388,1,0,0,0,1390,1389,1,0,0,0,1391, - 53,1,0,0,0,1392,1397,5,96,0,0,1393,1397,5,60,0,0,1394,1397,5,80, - 0,0,1395,1397,3,58,29,0,1396,1392,1,0,0,0,1396,1393,1,0,0,0,1396, - 1394,1,0,0,0,1396,1395,1,0,0,0,1397,55,1,0,0,0,1398,1413,3,814,407, - 0,1399,1413,5,53,0,0,1400,1413,3,832,416,0,1401,1402,5,403,0,0,1402, - 1404,3,814,407,0,1403,1405,3,664,332,0,1404,1403,1,0,0,0,1404,1405, - 1,0,0,0,1405,1413,1,0,0,0,1406,1407,5,403,0,0,1407,1408,3,656,328, - 0,1408,1409,3,814,407,0,1409,1413,1,0,0,0,1410,1413,3,196,98,0,1411, - 1413,5,254,0,0,1412,1398,1,0,0,0,1412,1399,1,0,0,0,1412,1400,1,0, - 0,0,1412,1401,1,0,0,0,1412,1406,1,0,0,0,1412,1410,1,0,0,0,1412,1411, - 1,0,0,0,1413,57,1,0,0,0,1414,1417,3,828,414,0,1415,1417,3,814,407, - 0,1416,1414,1,0,0,0,1416,1415,1,0,0,0,1417,59,1,0,0,0,1418,1419, - 5,313,0,0,1419,1420,3,62,31,0,1420,61,1,0,0,0,1421,1422,5,418,0, - 0,1422,1431,5,386,0,0,1423,1424,5,356,0,0,1424,1425,5,244,0,0,1425, - 1431,5,251,0,0,1426,1427,5,332,0,0,1427,1431,5,106,0,0,1428,1431, - 5,30,0,0,1429,1431,3,44,22,0,1430,1421,1,0,0,0,1430,1423,1,0,0,0, - 1430,1426,1,0,0,0,1430,1428,1,0,0,0,1430,1429,1,0,0,0,1431,63,1, - 0,0,0,1432,1433,5,333,0,0,1433,1436,3,38,19,0,1434,1436,3,60,30, - 0,1435,1432,1,0,0,0,1435,1434,1,0,0,0,1436,65,1,0,0,0,1437,1438, - 5,333,0,0,1438,1441,3,42,21,0,1439,1441,3,60,30,0,1440,1437,1,0, - 0,0,1440,1439,1,0,0,0,1441,67,1,0,0,0,1442,1452,5,335,0,0,1443,1453, - 3,44,22,0,1444,1445,5,418,0,0,1445,1453,5,386,0,0,1446,1447,5,356, - 0,0,1447,1448,5,244,0,0,1448,1453,5,251,0,0,1449,1450,5,332,0,0, - 1450,1453,5,106,0,0,1451,1453,5,30,0,0,1452,1443,1,0,0,0,1452,1444, - 1,0,0,0,1452,1446,1,0,0,0,1452,1449,1,0,0,0,1452,1451,1,0,0,0,1453, - 69,1,0,0,0,1454,1455,5,333,0,0,1455,1458,5,165,0,0,1456,1459,5,30, - 0,0,1457,1459,3,764,382,0,1458,1456,1,0,0,0,1458,1457,1,0,0,0,1459, - 1460,1,0,0,0,1460,1461,7,9,0,0,1461,71,1,0,0,0,1462,1463,5,155,0, - 0,1463,73,1,0,0,0,1464,1465,5,187,0,0,1465,1466,7,10,0,0,1466,75, - 1,0,0,0,1467,1468,5,138,0,0,1468,1470,5,92,0,0,1469,1471,3,416,208, - 0,1470,1469,1,0,0,0,1470,1471,1,0,0,0,1471,1472,1,0,0,0,1472,1475, - 3,620,310,0,1473,1476,3,78,39,0,1474,1476,3,80,40,0,1475,1473,1, - 0,0,0,1475,1474,1,0,0,0,1476,1585,1,0,0,0,1477,1478,5,138,0,0,1478, - 1479,5,92,0,0,1479,1480,5,30,0,0,1480,1481,5,68,0,0,1481,1485,3, - 170,85,0,1482,1483,5,281,0,0,1483,1484,5,147,0,0,1484,1486,3,822, - 411,0,1485,1482,1,0,0,0,1485,1486,1,0,0,0,1486,1487,1,0,0,0,1487, - 1488,5,333,0,0,1488,1489,5,351,0,0,1489,1491,3,774,387,0,1490,1492, - 5,272,0,0,1491,1490,1,0,0,0,1491,1492,1,0,0,0,1492,1585,1,0,0,0, - 1493,1494,5,138,0,0,1494,1496,5,92,0,0,1495,1497,3,416,208,0,1496, - 1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0,1498,1499,3,778, - 389,0,1499,1500,3,82,41,0,1500,1501,3,98,49,0,1501,1585,1,0,0,0, - 1502,1503,5,138,0,0,1503,1505,5,92,0,0,1504,1506,3,416,208,0,1505, - 1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507,1508,3,778, - 389,0,1508,1509,5,436,0,0,1509,1510,5,285,0,0,1510,1512,3,784,392, - 0,1511,1513,7,11,0,0,1512,1511,1,0,0,0,1512,1513,1,0,0,0,1513,1585, - 1,0,0,0,1514,1515,5,138,0,0,1515,1517,5,226,0,0,1516,1518,3,416, - 208,0,1517,1516,1,0,0,0,1517,1518,1,0,0,0,1518,1519,1,0,0,0,1519, - 1522,3,784,392,0,1520,1523,3,78,39,0,1521,1523,3,82,41,0,1522,1520, - 1,0,0,0,1522,1521,1,0,0,0,1523,1585,1,0,0,0,1524,1525,5,138,0,0, - 1525,1526,5,226,0,0,1526,1527,5,30,0,0,1527,1528,5,68,0,0,1528,1532, - 3,170,85,0,1529,1530,5,281,0,0,1530,1531,5,147,0,0,1531,1533,3,822, - 411,0,1532,1529,1,0,0,0,1532,1533,1,0,0,0,1533,1534,1,0,0,0,1534, - 1535,5,333,0,0,1535,1537,3,170,85,0,1536,1538,5,272,0,0,1537,1536, - 1,0,0,0,1537,1538,1,0,0,0,1538,1585,1,0,0,0,1539,1540,5,138,0,0, - 1540,1542,5,328,0,0,1541,1543,3,416,208,0,1542,1541,1,0,0,0,1542, - 1543,1,0,0,0,1543,1544,1,0,0,0,1544,1545,3,784,392,0,1545,1546,3, - 78,39,0,1546,1585,1,0,0,0,1547,1549,5,138,0,0,1548,1550,5,259,0, - 0,1549,1548,1,0,0,0,1549,1550,1,0,0,0,1550,1551,1,0,0,0,1551,1553, - 5,376,0,0,1552,1554,3,416,208,0,1553,1552,1,0,0,0,1553,1554,1,0, - 0,0,1554,1555,1,0,0,0,1555,1556,3,782,391,0,1556,1557,3,78,39,0, - 1557,1585,1,0,0,0,1558,1559,5,138,0,0,1559,1560,5,259,0,0,1560,1561, - 5,376,0,0,1561,1562,5,30,0,0,1562,1563,5,68,0,0,1563,1567,3,170, - 85,0,1564,1565,5,281,0,0,1565,1566,5,147,0,0,1566,1568,3,822,411, - 0,1567,1564,1,0,0,0,1567,1568,1,0,0,0,1568,1569,1,0,0,0,1569,1570, - 5,333,0,0,1570,1571,5,351,0,0,1571,1573,3,774,387,0,1572,1574,5, - 272,0,0,1573,1572,1,0,0,0,1573,1574,1,0,0,0,1574,1585,1,0,0,0,1575, - 1576,5,138,0,0,1576,1577,5,63,0,0,1577,1579,5,92,0,0,1578,1580,3, - 416,208,0,1579,1578,1,0,0,0,1579,1580,1,0,0,0,1580,1581,1,0,0,0, - 1581,1582,3,620,310,0,1582,1583,3,78,39,0,1583,1585,1,0,0,0,1584, - 1467,1,0,0,0,1584,1477,1,0,0,0,1584,1493,1,0,0,0,1584,1502,1,0,0, - 0,1584,1514,1,0,0,0,1584,1524,1,0,0,0,1584,1539,1,0,0,0,1584,1547, - 1,0,0,0,1584,1558,1,0,0,0,1584,1575,1,0,0,0,1585,77,1,0,0,0,1586, - 1591,3,84,42,0,1587,1588,5,6,0,0,1588,1590,3,84,42,0,1589,1587,1, - 0,0,0,1590,1593,1,0,0,0,1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592, - 79,1,0,0,0,1593,1591,1,0,0,0,1594,1595,3,82,41,0,1595,1596,3,98, - 49,0,1596,1601,1,0,0,0,1597,1598,5,436,0,0,1598,1599,5,285,0,0,1599, - 1601,3,784,392,0,1600,1594,1,0,0,0,1600,1597,1,0,0,0,1601,81,1,0, - 0,0,1602,1603,5,435,0,0,1603,1604,5,285,0,0,1604,1605,3,784,392, - 0,1605,83,1,0,0,0,1606,1609,5,133,0,0,1607,1608,5,45,0,0,1608,1610, - 3,824,412,0,1609,1607,1,0,0,0,1609,1610,1,0,0,0,1610,1611,1,0,0, - 0,1611,1840,3,136,68,0,1612,1613,5,138,0,0,1613,1614,5,45,0,0,1614, - 1618,3,824,412,0,1615,1617,3,266,133,0,1616,1615,1,0,0,0,1617,1620, - 1,0,0,0,1618,1616,1,0,0,0,1618,1619,1,0,0,0,1619,1840,1,0,0,0,1620, - 1618,1,0,0,0,1621,1622,5,372,0,0,1622,1623,5,45,0,0,1623,1840,3, - 824,412,0,1624,1625,5,191,0,0,1625,1627,5,45,0,0,1626,1628,3,416, - 208,0,1627,1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0,0,1629, - 1631,3,824,412,0,1630,1632,3,88,44,0,1631,1630,1,0,0,0,1631,1632, - 1,0,0,0,1632,1840,1,0,0,0,1633,1634,5,333,0,0,1634,1635,5,379,0, - 0,1635,1840,7,12,0,0,1636,1637,5,158,0,0,1637,1638,5,80,0,0,1638, - 1840,3,824,412,0,1639,1640,5,333,0,0,1640,1840,7,13,0,0,1641,1643, - 5,193,0,0,1642,1644,7,14,0,0,1643,1642,1,0,0,0,1643,1644,1,0,0,0, - 1644,1645,1,0,0,0,1645,1840,5,357,0,0,1646,1647,5,186,0,0,1647,1651, - 5,357,0,0,1648,1652,5,30,0,0,1649,1652,5,99,0,0,1650,1652,3,824, - 412,0,1651,1648,1,0,0,0,1651,1649,1,0,0,0,1651,1650,1,0,0,0,1652, - 1840,1,0,0,0,1653,1654,5,193,0,0,1654,1655,7,14,0,0,1655,1656,5, - 321,0,0,1656,1840,3,824,412,0,1657,1658,5,186,0,0,1658,1659,5,321, - 0,0,1659,1840,3,824,412,0,1660,1662,5,269,0,0,1661,1660,1,0,0,0, - 1661,1662,1,0,0,0,1662,1663,1,0,0,0,1663,1664,5,228,0,0,1664,1840, - 3,784,392,0,1665,1666,5,275,0,0,1666,1840,3,310,155,0,1667,1668, - 5,77,0,0,1668,1840,5,275,0,0,1669,1670,5,282,0,0,1670,1671,5,94, - 0,0,1671,1840,3,820,410,0,1672,1673,5,333,0,0,1673,1674,5,351,0, - 0,1674,1840,3,774,387,0,1675,1676,5,312,0,0,1676,1681,5,219,0,0, - 1677,1682,5,270,0,0,1678,1682,5,113,0,0,1679,1682,5,53,0,0,1680, - 1682,3,174,87,0,1681,1677,1,0,0,0,1681,1678,1,0,0,0,1681,1679,1, - 0,0,0,1681,1680,1,0,0,0,1682,1840,1,0,0,0,1683,1690,5,193,0,0,1684, - 1690,5,186,0,0,1685,1687,5,269,0,0,1686,1685,1,0,0,0,1686,1687,1, - 0,0,0,1687,1688,1,0,0,0,1688,1690,5,209,0,0,1689,1683,1,0,0,0,1689, - 1684,1,0,0,0,1689,1686,1,0,0,0,1690,1691,1,0,0,0,1691,1692,5,414, - 0,0,1692,1693,5,251,0,0,1693,1840,5,327,0,0,1694,1696,5,191,0,0, - 1695,1697,5,44,0,0,1696,1695,1,0,0,0,1696,1697,1,0,0,0,1697,1699, - 1,0,0,0,1698,1700,3,416,208,0,1699,1698,1,0,0,0,1699,1700,1,0,0, - 0,1700,1701,1,0,0,0,1701,1703,3,804,402,0,1702,1704,3,88,44,0,1703, - 1702,1,0,0,0,1703,1704,1,0,0,0,1704,1840,1,0,0,0,1705,1707,5,133, - 0,0,1706,1708,5,44,0,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708, - 1710,1,0,0,0,1709,1711,3,288,144,0,1710,1709,1,0,0,0,1710,1711,1, - 0,0,0,1711,1712,1,0,0,0,1712,1840,3,126,63,0,1713,1715,5,138,0,0, - 1714,1716,5,44,0,0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1717, - 1,0,0,0,1717,1720,3,804,402,0,1718,1721,3,86,43,0,1719,1721,3,216, - 108,0,1720,1718,1,0,0,0,1720,1719,1,0,0,0,1721,1840,1,0,0,0,1722, - 1724,5,138,0,0,1723,1725,5,44,0,0,1724,1723,1,0,0,0,1724,1725,1, - 0,0,0,1725,1726,1,0,0,0,1726,1727,3,804,402,0,1727,1728,7,15,0,0, - 1728,1729,5,77,0,0,1729,1730,5,78,0,0,1730,1840,1,0,0,0,1731,1733, - 5,138,0,0,1732,1734,5,44,0,0,1733,1732,1,0,0,0,1733,1734,1,0,0,0, - 1734,1735,1,0,0,0,1735,1736,3,804,402,0,1736,1737,5,191,0,0,1737, - 1739,5,437,0,0,1738,1740,3,416,208,0,1739,1738,1,0,0,0,1739,1740, - 1,0,0,0,1740,1840,1,0,0,0,1741,1743,5,138,0,0,1742,1744,5,44,0,0, - 1743,1742,1,0,0,0,1743,1744,1,0,0,0,1744,1745,1,0,0,0,1745,1746, - 3,804,402,0,1746,1747,5,333,0,0,1747,1748,5,342,0,0,1748,1749,3, - 818,409,0,1749,1840,1,0,0,0,1750,1752,5,138,0,0,1751,1753,5,44,0, - 0,1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753,1754,1,0,0,0,1754,1756, - 3,804,402,0,1755,1750,1,0,0,0,1755,1756,1,0,0,0,1756,1757,1,0,0, - 0,1757,1758,7,16,0,0,1758,1840,3,92,46,0,1759,1761,5,138,0,0,1760, - 1762,5,44,0,0,1761,1760,1,0,0,0,1761,1762,1,0,0,0,1762,1763,1,0, - 0,0,1763,1764,3,804,402,0,1764,1765,5,333,0,0,1765,1766,5,345,0, - 0,1766,1767,3,824,412,0,1767,1840,1,0,0,0,1768,1770,5,138,0,0,1769, - 1771,5,44,0,0,1770,1769,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0, - 0,0,1772,1773,3,804,402,0,1773,1774,5,133,0,0,1774,1775,5,438,0, - 0,1775,1776,3,132,66,0,1776,1777,5,36,0,0,1777,1786,5,219,0,0,1778, - 1780,5,2,0,0,1779,1781,3,194,97,0,1780,1779,1,0,0,0,1781,1782,1, - 0,0,0,1782,1780,1,0,0,0,1782,1783,1,0,0,0,1783,1784,1,0,0,0,1784, - 1785,5,3,0,0,1785,1787,1,0,0,0,1786,1778,1,0,0,0,1786,1787,1,0,0, - 0,1787,1840,1,0,0,0,1788,1790,5,138,0,0,1789,1791,5,44,0,0,1790, - 1789,1,0,0,0,1790,1791,1,0,0,0,1791,1792,1,0,0,0,1792,1806,3,804, - 402,0,1793,1798,5,314,0,0,1794,1796,5,105,0,0,1795,1794,1,0,0,0, - 1795,1796,1,0,0,0,1796,1797,1,0,0,0,1797,1799,3,196,98,0,1798,1795, - 1,0,0,0,1798,1799,1,0,0,0,1799,1807,1,0,0,0,1800,1804,5,333,0,0, - 1801,1805,3,194,97,0,1802,1803,5,438,0,0,1803,1805,3,132,66,0,1804, - 1801,1,0,0,0,1804,1802,1,0,0,0,1805,1807,1,0,0,0,1806,1793,1,0,0, - 0,1806,1800,1,0,0,0,1807,1808,1,0,0,0,1808,1806,1,0,0,0,1808,1809, - 1,0,0,0,1809,1840,1,0,0,0,1810,1812,5,138,0,0,1811,1813,5,44,0,0, - 1812,1811,1,0,0,0,1812,1813,1,0,0,0,1813,1814,1,0,0,0,1814,1815, - 3,804,402,0,1815,1816,5,191,0,0,1816,1818,5,219,0,0,1817,1819,3, - 416,208,0,1818,1817,1,0,0,0,1818,1819,1,0,0,0,1819,1840,1,0,0,0, - 1820,1822,5,138,0,0,1821,1823,5,44,0,0,1822,1821,1,0,0,0,1822,1823, - 1,0,0,0,1823,1824,1,0,0,0,1824,1827,3,804,402,0,1825,1826,5,333, - 0,0,1826,1828,5,174,0,0,1827,1825,1,0,0,0,1827,1828,1,0,0,0,1828, - 1829,1,0,0,0,1829,1830,5,360,0,0,1830,1832,3,648,324,0,1831,1833, - 3,90,45,0,1832,1831,1,0,0,0,1832,1833,1,0,0,0,1833,1836,1,0,0,0, - 1834,1835,5,100,0,0,1835,1837,3,670,335,0,1836,1834,1,0,0,0,1836, - 1837,1,0,0,0,1837,1840,1,0,0,0,1838,1840,3,216,108,0,1839,1606,1, - 0,0,0,1839,1612,1,0,0,0,1839,1621,1,0,0,0,1839,1624,1,0,0,0,1839, - 1633,1,0,0,0,1839,1636,1,0,0,0,1839,1639,1,0,0,0,1839,1641,1,0,0, - 0,1839,1646,1,0,0,0,1839,1653,1,0,0,0,1839,1657,1,0,0,0,1839,1661, - 1,0,0,0,1839,1665,1,0,0,0,1839,1667,1,0,0,0,1839,1669,1,0,0,0,1839, - 1672,1,0,0,0,1839,1675,1,0,0,0,1839,1689,1,0,0,0,1839,1694,1,0,0, - 0,1839,1705,1,0,0,0,1839,1713,1,0,0,0,1839,1722,1,0,0,0,1839,1731, - 1,0,0,0,1839,1741,1,0,0,0,1839,1755,1,0,0,0,1839,1759,1,0,0,0,1839, - 1768,1,0,0,0,1839,1788,1,0,0,0,1839,1810,1,0,0,0,1839,1820,1,0,0, - 0,1839,1838,1,0,0,0,1840,85,1,0,0,0,1841,1842,5,333,0,0,1842,1843, - 5,53,0,0,1843,1847,3,670,335,0,1844,1845,5,191,0,0,1845,1847,5,53, - 0,0,1846,1841,1,0,0,0,1846,1844,1,0,0,0,1847,87,1,0,0,0,1848,1849, - 7,17,0,0,1849,89,1,0,0,0,1850,1851,5,43,0,0,1851,1852,3,310,155, - 0,1852,91,1,0,0,0,1853,1854,5,2,0,0,1854,1859,3,96,48,0,1855,1856, - 5,6,0,0,1856,1858,3,96,48,0,1857,1855,1,0,0,0,1858,1861,1,0,0,0, - 1859,1857,1,0,0,0,1859,1860,1,0,0,0,1860,1862,1,0,0,0,1861,1859, - 1,0,0,0,1862,1863,5,3,0,0,1863,93,1,0,0,0,1864,1865,5,105,0,0,1865, - 1866,3,92,46,0,1866,95,1,0,0,0,1867,1872,3,830,415,0,1868,1869,5, - 10,0,0,1869,1873,3,282,141,0,1870,1871,5,11,0,0,1871,1873,3,280, - 140,0,1872,1868,1,0,0,0,1872,1870,1,0,0,0,1872,1873,1,0,0,0,1873, - 97,1,0,0,0,1874,1875,5,62,0,0,1875,1876,5,422,0,0,1876,1877,5,105, - 0,0,1877,1878,5,2,0,0,1878,1879,5,533,0,0,1879,1880,3,196,98,0,1880, - 1881,5,6,0,0,1881,1882,5,534,0,0,1882,1883,3,196,98,0,1883,1884, - 5,3,0,0,1884,1898,1,0,0,0,1885,1886,5,62,0,0,1886,1887,5,422,0,0, - 1887,1888,5,68,0,0,1888,1898,3,528,264,0,1889,1890,5,62,0,0,1890, - 1891,5,422,0,0,1891,1892,5,64,0,0,1892,1893,3,528,264,0,1893,1894, - 5,94,0,0,1894,1895,3,528,264,0,1895,1898,1,0,0,0,1896,1898,5,53, - 0,0,1897,1874,1,0,0,0,1897,1885,1,0,0,0,1897,1889,1,0,0,0,1897,1896, - 1,0,0,0,1898,99,1,0,0,0,1899,1900,5,138,0,0,1900,1901,5,360,0,0, - 1901,1902,3,310,155,0,1902,1907,3,102,51,0,1903,1904,5,6,0,0,1904, - 1906,3,102,51,0,1905,1903,1,0,0,0,1906,1909,1,0,0,0,1907,1905,1, - 0,0,0,1907,1908,1,0,0,0,1908,101,1,0,0,0,1909,1907,1,0,0,0,1910, - 1911,5,133,0,0,1911,1912,5,143,0,0,1912,1914,3,640,320,0,1913,1915, - 3,88,44,0,1914,1913,1,0,0,0,1914,1915,1,0,0,0,1915,1941,1,0,0,0, - 1916,1917,5,191,0,0,1917,1919,5,143,0,0,1918,1920,3,416,208,0,1919, - 1918,1,0,0,0,1919,1920,1,0,0,0,1920,1921,1,0,0,0,1921,1923,3,824, - 412,0,1922,1924,3,88,44,0,1923,1922,1,0,0,0,1923,1924,1,0,0,0,1924, - 1941,1,0,0,0,1925,1926,5,138,0,0,1926,1927,5,143,0,0,1927,1930,3, - 824,412,0,1928,1929,5,333,0,0,1929,1931,5,174,0,0,1930,1928,1,0, - 0,0,1930,1931,1,0,0,0,1931,1932,1,0,0,0,1932,1933,5,360,0,0,1933, - 1935,3,648,324,0,1934,1936,3,90,45,0,1935,1934,1,0,0,0,1935,1936, - 1,0,0,0,1936,1938,1,0,0,0,1937,1939,3,88,44,0,1938,1937,1,0,0,0, - 1938,1939,1,0,0,0,1939,1941,1,0,0,0,1940,1910,1,0,0,0,1940,1916, - 1,0,0,0,1940,1925,1,0,0,0,1941,103,1,0,0,0,1942,1945,5,157,0,0,1943, - 1946,3,824,412,0,1944,1946,5,30,0,0,1945,1943,1,0,0,0,1945,1944, - 1,0,0,0,1946,105,1,0,0,0,1947,1949,5,169,0,0,1948,1950,5,107,0,0, - 1949,1948,1,0,0,0,1949,1950,1,0,0,0,1950,1951,1,0,0,0,1951,1953, - 3,778,389,0,1952,1954,3,138,69,0,1953,1952,1,0,0,0,1953,1954,1,0, - 0,0,1954,1955,1,0,0,0,1955,1957,7,18,0,0,1956,1958,5,297,0,0,1957, - 1956,1,0,0,0,1957,1958,1,0,0,0,1958,1962,1,0,0,0,1959,1963,3,814, - 407,0,1960,1963,5,343,0,0,1961,1963,5,344,0,0,1962,1959,1,0,0,0, - 1962,1960,1,0,0,0,1962,1961,1,0,0,0,1963,1969,1,0,0,0,1964,1966, - 5,100,0,0,1965,1964,1,0,0,0,1965,1966,1,0,0,0,1966,1967,1,0,0,0, - 1967,1968,5,184,0,0,1968,1970,3,814,407,0,1969,1965,1,0,0,0,1969, - 1970,1,0,0,0,1970,1972,1,0,0,0,1971,1973,5,105,0,0,1972,1971,1,0, - 0,0,1972,1973,1,0,0,0,1973,1974,1,0,0,0,1974,1976,3,110,55,0,1975, - 1977,3,634,317,0,1976,1975,1,0,0,0,1976,1977,1,0,0,0,1977,1997,1, - 0,0,0,1978,1979,5,169,0,0,1979,1980,5,2,0,0,1980,1981,3,524,262, - 0,1981,1982,5,3,0,0,1982,1984,5,94,0,0,1983,1985,5,297,0,0,1984, - 1983,1,0,0,0,1984,1985,1,0,0,0,1985,1989,1,0,0,0,1986,1990,3,814, - 407,0,1987,1990,5,343,0,0,1988,1990,5,344,0,0,1989,1986,1,0,0,0, - 1989,1987,1,0,0,0,1989,1988,1,0,0,0,1990,1992,1,0,0,0,1991,1993, - 5,105,0,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0,1993,1994,1,0,0,0, - 1994,1995,3,110,55,0,1995,1997,1,0,0,0,1996,1947,1,0,0,0,1996,1978, - 1,0,0,0,1997,107,1,0,0,0,1998,2041,5,107,0,0,1999,2041,5,112,0,0, - 2000,2002,7,19,0,0,2001,2003,5,36,0,0,2002,2001,1,0,0,0,2002,2003, - 1,0,0,0,2003,2004,1,0,0,0,2004,2041,3,814,407,0,2005,2041,5,171, - 0,0,2006,2041,5,216,0,0,2007,2008,5,209,0,0,2008,2011,5,298,0,0, - 2009,2012,3,142,71,0,2010,2012,5,9,0,0,2011,2009,1,0,0,0,2011,2010, - 1,0,0,0,2012,2041,1,0,0,0,2013,2015,5,209,0,0,2014,2016,5,77,0,0, - 2015,2014,1,0,0,0,2015,2016,1,0,0,0,2016,2017,1,0,0,0,2017,2018, - 5,78,0,0,2018,2041,3,142,71,0,2019,2020,5,194,0,0,2020,2041,3,814, - 407,0,2021,2038,7,20,0,0,2022,2025,5,2,0,0,2023,2026,3,142,71,0, - 2024,2026,5,9,0,0,2025,2023,1,0,0,0,2025,2024,1,0,0,0,2026,2034, - 1,0,0,0,2027,2030,5,6,0,0,2028,2031,3,142,71,0,2029,2031,5,9,0,0, - 2030,2028,1,0,0,0,2030,2029,1,0,0,0,2031,2033,1,0,0,0,2032,2027, - 1,0,0,0,2033,2036,1,0,0,0,2034,2032,1,0,0,0,2034,2035,1,0,0,0,2035, - 2037,1,0,0,0,2036,2034,1,0,0,0,2037,2039,5,3,0,0,2038,2022,1,0,0, - 0,2038,2039,1,0,0,0,2039,2041,1,0,0,0,2040,1998,1,0,0,0,2040,1999, - 1,0,0,0,2040,2000,1,0,0,0,2040,2005,1,0,0,0,2040,2006,1,0,0,0,2040, - 2007,1,0,0,0,2040,2013,1,0,0,0,2040,2019,1,0,0,0,2040,2021,1,0,0, - 0,2041,2044,1,0,0,0,2042,2040,1,0,0,0,2042,2043,1,0,0,0,2043,109, - 1,0,0,0,2044,2042,1,0,0,0,2045,2064,3,108,54,0,2046,2049,5,2,0,0, - 2047,2050,3,108,54,0,2048,2050,3,112,56,0,2049,2047,1,0,0,0,2049, - 2048,1,0,0,0,2050,2058,1,0,0,0,2051,2054,5,6,0,0,2052,2055,3,108, - 54,0,2053,2055,3,112,56,0,2054,2052,1,0,0,0,2054,2053,1,0,0,0,2055, - 2057,1,0,0,0,2056,2051,1,0,0,0,2057,2060,1,0,0,0,2058,2056,1,0,0, - 0,2058,2059,1,0,0,0,2059,2061,1,0,0,0,2060,2058,1,0,0,0,2061,2062, - 5,3,0,0,2062,2064,1,0,0,0,2063,2045,1,0,0,0,2063,2046,1,0,0,0,2064, - 111,1,0,0,0,2065,2080,3,830,415,0,2066,2081,3,54,27,0,2067,2081, - 3,196,98,0,2068,2081,5,9,0,0,2069,2070,5,2,0,0,2070,2075,3,52,26, - 0,2071,2072,5,6,0,0,2072,2074,3,52,26,0,2073,2071,1,0,0,0,2074,2077, - 1,0,0,0,2075,2073,1,0,0,0,2075,2076,1,0,0,0,2076,2078,1,0,0,0,2077, - 2075,1,0,0,0,2078,2079,5,3,0,0,2079,2081,1,0,0,0,2080,2066,1,0,0, - 0,2080,2067,1,0,0,0,2080,2068,1,0,0,0,2080,2069,1,0,0,0,2080,2081, - 1,0,0,0,2081,113,1,0,0,0,2082,2084,5,46,0,0,2083,2085,3,116,58,0, - 2084,2083,1,0,0,0,2084,2085,1,0,0,0,2085,2086,1,0,0,0,2086,2088, - 5,92,0,0,2087,2089,3,288,144,0,2088,2087,1,0,0,0,2088,2089,1,0,0, - 0,2089,2090,1,0,0,0,2090,2156,3,776,388,0,2091,2093,5,2,0,0,2092, - 2094,3,120,60,0,2093,2092,1,0,0,0,2093,2094,1,0,0,0,2094,2095,1, - 0,0,0,2095,2097,5,3,0,0,2096,2098,3,158,79,0,2097,2096,1,0,0,0,2097, - 2098,1,0,0,0,2098,2100,1,0,0,0,2099,2101,3,160,80,0,2100,2099,1, - 0,0,0,2100,2101,1,0,0,0,2101,2103,1,0,0,0,2102,2104,3,164,82,0,2103, - 2102,1,0,0,0,2103,2104,1,0,0,0,2104,2106,1,0,0,0,2105,2107,3,166, - 83,0,2106,2105,1,0,0,0,2106,2107,1,0,0,0,2107,2109,1,0,0,0,2108, - 2110,3,168,84,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1, - 0,0,0,2111,2113,3,170,85,0,2112,2111,1,0,0,0,2112,2113,1,0,0,0,2113, - 2157,1,0,0,0,2114,2115,5,275,0,0,2115,2117,3,310,155,0,2116,2118, - 3,118,59,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2120,1,0,0,0, - 2119,2121,3,160,80,0,2120,2119,1,0,0,0,2120,2121,1,0,0,0,2121,2123, - 1,0,0,0,2122,2124,3,164,82,0,2123,2122,1,0,0,0,2123,2124,1,0,0,0, - 2124,2126,1,0,0,0,2125,2127,3,166,83,0,2126,2125,1,0,0,0,2126,2127, - 1,0,0,0,2127,2129,1,0,0,0,2128,2130,3,168,84,0,2129,2128,1,0,0,0, - 2129,2130,1,0,0,0,2130,2132,1,0,0,0,2131,2133,3,170,85,0,2132,2131, - 1,0,0,0,2132,2133,1,0,0,0,2133,2157,1,0,0,0,2134,2135,5,285,0,0, - 2135,2136,5,275,0,0,2136,2138,3,784,392,0,2137,2139,3,118,59,0,2138, - 2137,1,0,0,0,2138,2139,1,0,0,0,2139,2140,1,0,0,0,2140,2142,3,98, - 49,0,2141,2143,3,160,80,0,2142,2141,1,0,0,0,2142,2143,1,0,0,0,2143, - 2145,1,0,0,0,2144,2146,3,164,82,0,2145,2144,1,0,0,0,2145,2146,1, - 0,0,0,2146,2148,1,0,0,0,2147,2149,3,166,83,0,2148,2147,1,0,0,0,2148, - 2149,1,0,0,0,2149,2151,1,0,0,0,2150,2152,3,168,84,0,2151,2150,1, - 0,0,0,2151,2152,1,0,0,0,2152,2154,1,0,0,0,2153,2155,3,170,85,0,2154, - 2153,1,0,0,0,2154,2155,1,0,0,0,2155,2157,1,0,0,0,2156,2091,1,0,0, - 0,2156,2114,1,0,0,0,2156,2134,1,0,0,0,2157,115,1,0,0,0,2158,2164, - 5,354,0,0,2159,2164,5,352,0,0,2160,2161,7,21,0,0,2161,2164,7,22, - 0,0,2162,2164,5,367,0,0,2163,2158,1,0,0,0,2163,2159,1,0,0,0,2163, - 2160,1,0,0,0,2163,2162,1,0,0,0,2164,117,1,0,0,0,2165,2166,5,2,0, - 0,2166,2171,3,124,62,0,2167,2168,5,6,0,0,2168,2170,3,124,62,0,2169, - 2167,1,0,0,0,2170,2173,1,0,0,0,2171,2169,1,0,0,0,2171,2172,1,0,0, - 0,2172,2174,1,0,0,0,2173,2171,1,0,0,0,2174,2175,5,3,0,0,2175,119, - 1,0,0,0,2176,2181,3,122,61,0,2177,2178,5,6,0,0,2178,2180,3,122,61, - 0,2179,2177,1,0,0,0,2180,2183,1,0,0,0,2181,2179,1,0,0,0,2181,2182, - 1,0,0,0,2182,121,1,0,0,0,2183,2181,1,0,0,0,2184,2185,5,45,0,0,2185, - 2187,3,824,412,0,2186,2184,1,0,0,0,2186,2187,1,0,0,0,2187,2188,1, - 0,0,0,2188,2200,3,136,68,0,2189,2200,3,126,63,0,2190,2191,5,120, - 0,0,2191,2196,3,784,392,0,2192,2193,7,23,0,0,2193,2195,3,134,67, - 0,2194,2192,1,0,0,0,2195,2198,1,0,0,0,2196,2194,1,0,0,0,2196,2197, - 1,0,0,0,2197,2200,1,0,0,0,2198,2196,1,0,0,0,2199,2186,1,0,0,0,2199, - 2189,1,0,0,0,2199,2190,1,0,0,0,2200,123,1,0,0,0,2201,2204,3,808, - 404,0,2202,2203,5,105,0,0,2203,2205,5,280,0,0,2204,2202,1,0,0,0, - 2204,2205,1,0,0,0,2205,2209,1,0,0,0,2206,2208,3,128,64,0,2207,2206, - 1,0,0,0,2208,2211,1,0,0,0,2209,2207,1,0,0,0,2209,2210,1,0,0,0,2210, - 2218,1,0,0,0,2211,2209,1,0,0,0,2212,2213,5,45,0,0,2213,2215,3,824, - 412,0,2214,2212,1,0,0,0,2214,2215,1,0,0,0,2215,2216,1,0,0,0,2216, - 2218,3,136,68,0,2217,2201,1,0,0,0,2217,2214,1,0,0,0,2218,125,1,0, - 0,0,2219,2220,3,808,404,0,2220,2222,3,648,324,0,2221,2223,3,214, - 107,0,2222,2221,1,0,0,0,2222,2223,1,0,0,0,2223,2233,1,0,0,0,2224, - 2231,5,345,0,0,2225,2232,5,544,0,0,2226,2232,5,205,0,0,2227,2232, - 5,545,0,0,2228,2232,5,546,0,0,2229,2232,5,53,0,0,2230,2232,3,824, - 412,0,2231,2225,1,0,0,0,2231,2226,1,0,0,0,2231,2227,1,0,0,0,2231, - 2228,1,0,0,0,2231,2229,1,0,0,0,2231,2230,1,0,0,0,2232,2234,1,0,0, - 0,2233,2224,1,0,0,0,2233,2234,1,0,0,0,2234,2237,1,0,0,0,2235,2236, - 5,543,0,0,2236,2238,3,824,412,0,2237,2235,1,0,0,0,2237,2238,1,0, - 0,0,2238,2240,1,0,0,0,2239,2241,3,90,45,0,2240,2239,1,0,0,0,2240, - 2241,1,0,0,0,2241,2244,1,0,0,0,2242,2243,5,105,0,0,2243,2245,5,280, - 0,0,2244,2242,1,0,0,0,2244,2245,1,0,0,0,2245,2249,1,0,0,0,2246,2248, - 3,128,64,0,2247,2246,1,0,0,0,2248,2251,1,0,0,0,2249,2247,1,0,0,0, - 2249,2250,1,0,0,0,2250,127,1,0,0,0,2251,2249,1,0,0,0,2252,2253,5, - 45,0,0,2253,2255,3,824,412,0,2254,2252,1,0,0,0,2254,2255,1,0,0,0, - 2255,2256,1,0,0,0,2256,2261,3,130,65,0,2257,2259,5,77,0,0,2258,2257, - 1,0,0,0,2258,2259,1,0,0,0,2259,2260,1,0,0,0,2260,2262,5,54,0,0,2261, - 2258,1,0,0,0,2261,2262,1,0,0,0,2262,2265,1,0,0,0,2263,2264,5,69, - 0,0,2264,2266,7,9,0,0,2265,2263,1,0,0,0,2265,2266,1,0,0,0,2266,129, - 1,0,0,0,2267,2269,5,77,0,0,2268,2267,1,0,0,0,2268,2269,1,0,0,0,2269, - 2270,1,0,0,0,2270,2348,5,78,0,0,2271,2273,5,98,0,0,2272,2274,3,394, - 197,0,2273,2272,1,0,0,0,2273,2274,1,0,0,0,2274,2276,1,0,0,0,2275, - 2277,3,172,86,0,2276,2275,1,0,0,0,2276,2277,1,0,0,0,2277,2348,1, - 0,0,0,2278,2284,5,98,0,0,2279,2281,5,273,0,0,2280,2282,5,77,0,0, - 2281,2280,1,0,0,0,2281,2282,1,0,0,0,2282,2283,1,0,0,0,2283,2285, - 5,56,0,0,2284,2279,1,0,0,0,2284,2285,1,0,0,0,2285,2288,1,0,0,0,2286, - 2287,5,441,0,0,2287,2289,3,354,177,0,2288,2286,1,0,0,0,2288,2289, - 1,0,0,0,2289,2291,1,0,0,0,2290,2292,3,566,283,0,2291,2290,1,0,0, - 0,2291,2292,1,0,0,0,2292,2294,1,0,0,0,2293,2295,3,172,86,0,2294, - 2293,1,0,0,0,2294,2295,1,0,0,0,2295,2348,1,0,0,0,2296,2297,5,85, - 0,0,2297,2299,5,245,0,0,2298,2300,3,394,197,0,2299,2298,1,0,0,0, - 2299,2300,1,0,0,0,2300,2302,1,0,0,0,2301,2303,3,172,86,0,2302,2301, - 1,0,0,0,2302,2303,1,0,0,0,2303,2348,1,0,0,0,2304,2305,5,42,0,0,2305, - 2306,5,2,0,0,2306,2307,3,670,335,0,2307,2310,5,3,0,0,2308,2309,5, - 269,0,0,2309,2311,5,228,0,0,2310,2308,1,0,0,0,2310,2311,1,0,0,0, - 2311,2348,1,0,0,0,2312,2313,5,53,0,0,2313,2348,3,678,339,0,2314, - 2315,5,438,0,0,2315,2316,3,132,66,0,2316,2333,5,36,0,0,2317,2326, - 5,219,0,0,2318,2320,5,2,0,0,2319,2321,3,194,97,0,2320,2319,1,0,0, - 0,2321,2322,1,0,0,0,2322,2320,1,0,0,0,2322,2323,1,0,0,0,2323,2324, - 1,0,0,0,2324,2325,5,3,0,0,2325,2327,1,0,0,0,2326,2318,1,0,0,0,2326, - 2327,1,0,0,0,2327,2334,1,0,0,0,2328,2329,5,2,0,0,2329,2330,3,670, - 335,0,2330,2331,5,3,0,0,2331,2332,5,440,0,0,2332,2334,1,0,0,0,2333, - 2317,1,0,0,0,2333,2328,1,0,0,0,2334,2348,1,0,0,0,2335,2336,5,86, - 0,0,2336,2338,3,784,392,0,2337,2339,3,138,69,0,2338,2337,1,0,0,0, - 2338,2339,1,0,0,0,2339,2341,1,0,0,0,2340,2342,3,146,73,0,2341,2340, - 1,0,0,0,2341,2342,1,0,0,0,2342,2344,1,0,0,0,2343,2345,3,150,75,0, - 2344,2343,1,0,0,0,2344,2345,1,0,0,0,2345,2348,1,0,0,0,2346,2348, - 3,90,45,0,2347,2268,1,0,0,0,2347,2271,1,0,0,0,2347,2278,1,0,0,0, - 2347,2296,1,0,0,0,2347,2304,1,0,0,0,2347,2312,1,0,0,0,2347,2314, - 1,0,0,0,2347,2335,1,0,0,0,2347,2346,1,0,0,0,2348,131,1,0,0,0,2349, - 2353,5,139,0,0,2350,2351,5,147,0,0,2351,2353,5,53,0,0,2352,2349, - 1,0,0,0,2352,2350,1,0,0,0,2353,133,1,0,0,0,2354,2355,7,24,0,0,2355, - 135,1,0,0,0,2356,2357,5,42,0,0,2357,2358,5,2,0,0,2358,2359,3,670, - 335,0,2359,2363,5,3,0,0,2360,2362,3,266,133,0,2361,2360,1,0,0,0, - 2362,2365,1,0,0,0,2363,2361,1,0,0,0,2363,2364,1,0,0,0,2364,2453, - 1,0,0,0,2365,2363,1,0,0,0,2366,2370,5,98,0,0,2367,2368,5,85,0,0, - 2368,2370,5,245,0,0,2369,2366,1,0,0,0,2369,2367,1,0,0,0,2370,2394, - 1,0,0,0,2371,2373,3,138,69,0,2372,2374,3,144,72,0,2373,2372,1,0, - 0,0,2373,2374,1,0,0,0,2374,2376,1,0,0,0,2375,2377,3,394,197,0,2376, - 2375,1,0,0,0,2376,2377,1,0,0,0,2377,2379,1,0,0,0,2378,2380,3,172, - 86,0,2379,2378,1,0,0,0,2379,2380,1,0,0,0,2380,2384,1,0,0,0,2381, - 2383,3,266,133,0,2382,2381,1,0,0,0,2383,2386,1,0,0,0,2384,2382,1, - 0,0,0,2384,2385,1,0,0,0,2385,2395,1,0,0,0,2386,2384,1,0,0,0,2387, - 2391,3,174,87,0,2388,2390,3,266,133,0,2389,2388,1,0,0,0,2390,2393, - 1,0,0,0,2391,2389,1,0,0,0,2391,2392,1,0,0,0,2392,2395,1,0,0,0,2393, - 2391,1,0,0,0,2394,2371,1,0,0,0,2394,2387,1,0,0,0,2395,2453,1,0,0, - 0,2396,2398,5,199,0,0,2397,2399,3,164,82,0,2398,2397,1,0,0,0,2398, - 2399,1,0,0,0,2399,2400,1,0,0,0,2400,2401,5,2,0,0,2401,2406,3,148, - 74,0,2402,2403,5,6,0,0,2403,2405,3,148,74,0,2404,2402,1,0,0,0,2405, - 2408,1,0,0,0,2406,2404,1,0,0,0,2406,2407,1,0,0,0,2407,2409,1,0,0, - 0,2408,2406,1,0,0,0,2409,2411,5,3,0,0,2410,2412,3,144,72,0,2411, - 2410,1,0,0,0,2411,2412,1,0,0,0,2412,2414,1,0,0,0,2413,2415,3,394, - 197,0,2414,2413,1,0,0,0,2414,2415,1,0,0,0,2415,2417,1,0,0,0,2416, - 2418,3,172,86,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2424,1, - 0,0,0,2419,2420,5,103,0,0,2420,2421,5,2,0,0,2421,2422,3,670,335, - 0,2422,2423,5,3,0,0,2423,2425,1,0,0,0,2424,2419,1,0,0,0,2424,2425, - 1,0,0,0,2425,2429,1,0,0,0,2426,2428,3,266,133,0,2427,2426,1,0,0, - 0,2428,2431,1,0,0,0,2429,2427,1,0,0,0,2429,2430,1,0,0,0,2430,2453, - 1,0,0,0,2431,2429,1,0,0,0,2432,2433,5,63,0,0,2433,2434,5,245,0,0, - 2434,2435,3,138,69,0,2435,2436,5,86,0,0,2436,2438,3,784,392,0,2437, - 2439,3,138,69,0,2438,2437,1,0,0,0,2438,2439,1,0,0,0,2439,2441,1, - 0,0,0,2440,2442,3,146,73,0,2441,2440,1,0,0,0,2441,2442,1,0,0,0,2442, - 2444,1,0,0,0,2443,2445,3,150,75,0,2444,2443,1,0,0,0,2444,2445,1, - 0,0,0,2445,2449,1,0,0,0,2446,2448,3,266,133,0,2447,2446,1,0,0,0, - 2448,2451,1,0,0,0,2449,2447,1,0,0,0,2449,2450,1,0,0,0,2450,2453, - 1,0,0,0,2451,2449,1,0,0,0,2452,2356,1,0,0,0,2452,2369,1,0,0,0,2452, - 2396,1,0,0,0,2452,2432,1,0,0,0,2453,137,1,0,0,0,2454,2455,5,2,0, - 0,2455,2456,3,142,71,0,2456,2457,5,3,0,0,2457,139,1,0,0,0,2458,2459, - 5,2,0,0,2459,2464,3,808,404,0,2460,2461,5,6,0,0,2461,2463,3,808, - 404,0,2462,2460,1,0,0,0,2463,2466,1,0,0,0,2464,2462,1,0,0,0,2464, - 2465,1,0,0,0,2465,2467,1,0,0,0,2466,2464,1,0,0,0,2467,2468,5,3,0, - 0,2468,141,1,0,0,0,2469,2474,3,804,402,0,2470,2471,5,6,0,0,2471, - 2473,3,804,402,0,2472,2470,1,0,0,0,2473,2476,1,0,0,0,2474,2472,1, - 0,0,0,2474,2475,1,0,0,0,2475,143,1,0,0,0,2476,2474,1,0,0,0,2477, - 2478,5,441,0,0,2478,2479,3,138,69,0,2479,145,1,0,0,0,2480,2481,5, - 258,0,0,2481,2482,7,25,0,0,2482,147,1,0,0,0,2483,2484,3,356,178, - 0,2484,2491,5,105,0,0,2485,2492,3,408,204,0,2486,2487,5,278,0,0, - 2487,2488,5,2,0,0,2488,2489,3,408,204,0,2489,2490,5,3,0,0,2490,2492, - 1,0,0,0,2491,2485,1,0,0,0,2491,2486,1,0,0,0,2492,149,1,0,0,0,2493, - 2495,3,152,76,0,2494,2496,3,154,77,0,2495,2494,1,0,0,0,2495,2496, - 1,0,0,0,2496,2502,1,0,0,0,2497,2499,3,154,77,0,2498,2500,3,152,76, - 0,2499,2498,1,0,0,0,2499,2500,1,0,0,0,2500,2502,1,0,0,0,2501,2493, - 1,0,0,0,2501,2497,1,0,0,0,2502,151,1,0,0,0,2503,2504,5,80,0,0,2504, - 2505,5,369,0,0,2505,2506,3,156,78,0,2506,153,1,0,0,0,2507,2508,5, - 80,0,0,2508,2509,5,182,0,0,2509,2510,3,156,78,0,2510,155,1,0,0,0, - 2511,2512,5,269,0,0,2512,2521,5,132,0,0,2513,2521,5,315,0,0,2514, - 2521,5,150,0,0,2515,2516,5,333,0,0,2516,2518,7,26,0,0,2517,2519, - 3,142,71,0,2518,2517,1,0,0,0,2518,2519,1,0,0,0,2519,2521,1,0,0,0, - 2520,2511,1,0,0,0,2520,2513,1,0,0,0,2520,2514,1,0,0,0,2520,2515, - 1,0,0,0,2521,157,1,0,0,0,2522,2523,5,238,0,0,2523,2524,5,2,0,0,2524, - 2525,3,764,382,0,2525,2526,5,3,0,0,2526,159,1,0,0,0,2527,2528,5, - 285,0,0,2528,2529,5,147,0,0,2529,2530,3,824,412,0,2530,2531,5,2, - 0,0,2531,2536,3,162,81,0,2532,2533,5,6,0,0,2533,2535,3,162,81,0, - 2534,2532,1,0,0,0,2535,2538,1,0,0,0,2536,2534,1,0,0,0,2536,2537, - 1,0,0,0,2537,2539,1,0,0,0,2538,2536,1,0,0,0,2539,2540,5,3,0,0,2540, - 161,1,0,0,0,2541,2548,3,804,402,0,2542,2548,3,684,342,0,2543,2544, - 5,2,0,0,2544,2545,3,670,335,0,2545,2546,5,3,0,0,2546,2548,1,0,0, - 0,2547,2541,1,0,0,0,2547,2542,1,0,0,0,2547,2543,1,0,0,0,2548,2550, - 1,0,0,0,2549,2551,3,90,45,0,2550,2549,1,0,0,0,2550,2551,1,0,0,0, - 2551,2553,1,0,0,0,2552,2554,3,310,155,0,2553,2552,1,0,0,0,2553,2554, - 1,0,0,0,2554,163,1,0,0,0,2555,2556,5,100,0,0,2556,2557,3,824,412, - 0,2557,165,1,0,0,0,2558,2559,5,105,0,0,2559,2563,3,92,46,0,2560, - 2561,7,27,0,0,2561,2563,5,277,0,0,2562,2558,1,0,0,0,2562,2560,1, - 0,0,0,2563,167,1,0,0,0,2564,2565,5,80,0,0,2565,2571,5,161,0,0,2566, - 2572,5,191,0,0,2567,2568,5,182,0,0,2568,2572,5,320,0,0,2569,2570, - 5,292,0,0,2570,2572,5,320,0,0,2571,2566,1,0,0,0,2571,2567,1,0,0, - 0,2571,2569,1,0,0,0,2572,169,1,0,0,0,2573,2574,5,351,0,0,2574,2575, - 3,774,387,0,2575,171,1,0,0,0,2576,2577,5,100,0,0,2577,2578,5,226, - 0,0,2578,2579,3,170,85,0,2579,173,1,0,0,0,2580,2581,5,100,0,0,2581, - 2582,5,226,0,0,2582,2583,3,824,412,0,2583,175,1,0,0,0,2584,2585, - 5,46,0,0,2585,2590,5,342,0,0,2586,2588,3,288,144,0,2587,2586,1,0, - 0,0,2587,2588,1,0,0,0,2588,2589,1,0,0,0,2589,2591,3,310,155,0,2590, - 2587,1,0,0,0,2590,2591,1,0,0,0,2591,2593,1,0,0,0,2592,2594,3,138, - 69,0,2593,2592,1,0,0,0,2593,2594,1,0,0,0,2594,2595,1,0,0,0,2595, - 2605,5,80,0,0,2596,2601,3,734,367,0,2597,2598,5,6,0,0,2598,2600, - 3,734,367,0,2599,2597,1,0,0,0,2600,2603,1,0,0,0,2601,2599,1,0,0, - 0,2601,2602,1,0,0,0,2602,2606,1,0,0,0,2603,2601,1,0,0,0,2604,2606, - 3,728,364,0,2605,2596,1,0,0,0,2605,2604,1,0,0,0,2606,2607,1,0,0, - 0,2607,2608,3,604,302,0,2608,177,1,0,0,0,2609,2610,5,138,0,0,2610, - 2612,5,342,0,0,2611,2613,3,416,208,0,2612,2611,1,0,0,0,2612,2613, - 1,0,0,0,2613,2614,1,0,0,0,2614,2615,3,310,155,0,2615,2616,5,333, - 0,0,2616,2617,5,342,0,0,2617,2618,3,818,409,0,2618,179,1,0,0,0,2619, - 2621,5,46,0,0,2620,2622,3,116,58,0,2621,2620,1,0,0,0,2621,2622,1, - 0,0,0,2622,2623,1,0,0,0,2623,2625,5,92,0,0,2624,2626,3,288,144,0, - 2625,2624,1,0,0,0,2625,2626,1,0,0,0,2626,2627,1,0,0,0,2627,2628, - 3,182,91,0,2628,2629,5,36,0,0,2629,2631,3,554,277,0,2630,2632,3, - 184,92,0,2631,2630,1,0,0,0,2631,2632,1,0,0,0,2632,181,1,0,0,0,2633, - 2635,3,776,388,0,2634,2636,3,140,70,0,2635,2634,1,0,0,0,2635,2636, - 1,0,0,0,2636,2638,1,0,0,0,2637,2639,3,164,82,0,2638,2637,1,0,0,0, - 2638,2639,1,0,0,0,2639,2641,1,0,0,0,2640,2642,3,166,83,0,2641,2640, - 1,0,0,0,2641,2642,1,0,0,0,2642,2644,1,0,0,0,2643,2645,3,168,84,0, - 2644,2643,1,0,0,0,2644,2645,1,0,0,0,2645,2647,1,0,0,0,2646,2648, - 3,170,85,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,183,1,0,0,0, - 2649,2653,5,105,0,0,2650,2654,5,174,0,0,2651,2652,5,269,0,0,2652, - 2654,5,174,0,0,2653,2650,1,0,0,0,2653,2651,1,0,0,0,2654,185,1,0, - 0,0,2655,2657,5,46,0,0,2656,2658,5,367,0,0,2657,2656,1,0,0,0,2657, - 2658,1,0,0,0,2658,2659,1,0,0,0,2659,2660,5,259,0,0,2660,2662,5,376, - 0,0,2661,2663,3,288,144,0,2662,2661,1,0,0,0,2662,2663,1,0,0,0,2663, - 2664,1,0,0,0,2664,2666,3,780,390,0,2665,2667,3,140,70,0,2666,2665, - 1,0,0,0,2666,2667,1,0,0,0,2667,2669,1,0,0,0,2668,2670,3,164,82,0, - 2669,2668,1,0,0,0,2669,2670,1,0,0,0,2670,2672,1,0,0,0,2671,2673, - 3,94,47,0,2672,2671,1,0,0,0,2672,2673,1,0,0,0,2673,2675,1,0,0,0, - 2674,2676,3,170,85,0,2675,2674,1,0,0,0,2675,2676,1,0,0,0,2676,2677, - 1,0,0,0,2677,2678,5,36,0,0,2678,2680,3,554,277,0,2679,2681,3,184, - 92,0,2680,2679,1,0,0,0,2680,2681,1,0,0,0,2681,187,1,0,0,0,2682,2683, - 5,305,0,0,2683,2684,5,259,0,0,2684,2686,5,376,0,0,2685,2687,5,109, - 0,0,2686,2685,1,0,0,0,2686,2687,1,0,0,0,2687,2688,1,0,0,0,2688,2690, - 3,782,391,0,2689,2691,3,184,92,0,2690,2689,1,0,0,0,2690,2691,1,0, - 0,0,2691,189,1,0,0,0,2692,2694,5,46,0,0,2693,2695,3,116,58,0,2694, - 2693,1,0,0,0,2694,2695,1,0,0,0,2695,2696,1,0,0,0,2696,2698,5,328, - 0,0,2697,2699,3,288,144,0,2698,2697,1,0,0,0,2698,2699,1,0,0,0,2699, - 2700,1,0,0,0,2700,2706,3,784,392,0,2701,2703,3,194,97,0,2702,2701, - 1,0,0,0,2703,2704,1,0,0,0,2704,2702,1,0,0,0,2704,2705,1,0,0,0,2705, - 2707,1,0,0,0,2706,2702,1,0,0,0,2706,2707,1,0,0,0,2707,191,1,0,0, - 0,2708,2709,5,138,0,0,2709,2711,5,328,0,0,2710,2712,3,416,208,0, - 2711,2710,1,0,0,0,2711,2712,1,0,0,0,2712,2713,1,0,0,0,2713,2715, - 3,784,392,0,2714,2716,3,194,97,0,2715,2714,1,0,0,0,2716,2717,1,0, - 0,0,2717,2715,1,0,0,0,2717,2718,1,0,0,0,2718,193,1,0,0,0,2719,2720, - 5,36,0,0,2720,2753,3,650,325,0,2721,2723,5,148,0,0,2722,2724,3,196, - 98,0,2723,2722,1,0,0,0,2723,2724,1,0,0,0,2724,2753,1,0,0,0,2725, - 2727,5,225,0,0,2726,2728,5,147,0,0,2727,2726,1,0,0,0,2727,2728,1, - 0,0,0,2728,2729,1,0,0,0,2729,2753,3,196,98,0,2730,2731,7,28,0,0, - 2731,2753,3,196,98,0,2732,2733,5,269,0,0,2733,2753,7,29,0,0,2734, - 2735,5,281,0,0,2735,2736,5,147,0,0,2736,2753,3,804,402,0,2737,2738, - 5,328,0,0,2738,2739,5,266,0,0,2739,2753,3,310,155,0,2740,2742,5, - 340,0,0,2741,2743,5,105,0,0,2742,2741,1,0,0,0,2742,2743,1,0,0,0, - 2743,2744,1,0,0,0,2744,2753,3,196,98,0,2745,2747,5,314,0,0,2746, - 2748,5,105,0,0,2747,2746,1,0,0,0,2747,2748,1,0,0,0,2748,2750,1,0, - 0,0,2749,2751,3,196,98,0,2750,2749,1,0,0,0,2750,2751,1,0,0,0,2751, - 2753,1,0,0,0,2752,2719,1,0,0,0,2752,2721,1,0,0,0,2752,2725,1,0,0, - 0,2752,2730,1,0,0,0,2752,2732,1,0,0,0,2752,2734,1,0,0,0,2752,2737, - 1,0,0,0,2752,2740,1,0,0,0,2752,2745,1,0,0,0,2753,195,1,0,0,0,2754, - 2756,7,30,0,0,2755,2754,1,0,0,0,2755,2756,1,0,0,0,2756,2757,1,0, - 0,0,2757,2760,5,576,0,0,2758,2760,3,818,409,0,2759,2755,1,0,0,0, - 2759,2758,1,0,0,0,2760,197,1,0,0,0,2761,2763,5,46,0,0,2762,2764, - 3,360,180,0,2763,2762,1,0,0,0,2763,2764,1,0,0,0,2764,2766,1,0,0, - 0,2765,2767,5,359,0,0,2766,2765,1,0,0,0,2766,2767,1,0,0,0,2767,2769, - 1,0,0,0,2768,2770,5,295,0,0,2769,2768,1,0,0,0,2769,2770,1,0,0,0, - 2770,2771,1,0,0,0,2771,2772,5,247,0,0,2772,2785,3,824,412,0,2773, - 2774,5,215,0,0,2774,2777,3,310,155,0,2775,2776,5,239,0,0,2776,2778, - 3,310,155,0,2777,2775,1,0,0,0,2777,2778,1,0,0,0,2778,2783,1,0,0, - 0,2779,2780,5,373,0,0,2780,2784,3,310,155,0,2781,2782,5,269,0,0, - 2782,2784,5,373,0,0,2783,2779,1,0,0,0,2783,2781,1,0,0,0,2783,2784, - 1,0,0,0,2784,2786,1,0,0,0,2785,2773,1,0,0,0,2785,2786,1,0,0,0,2786, - 199,1,0,0,0,2787,2788,5,46,0,0,2788,2791,3,170,85,0,2789,2790,5, - 282,0,0,2790,2792,3,820,410,0,2791,2789,1,0,0,0,2791,2792,1,0,0, - 0,2792,2793,1,0,0,0,2793,2794,5,255,0,0,2794,2796,3,814,407,0,2795, - 2797,3,94,47,0,2796,2795,1,0,0,0,2796,2797,1,0,0,0,2797,201,1,0, - 0,0,2798,2799,5,46,0,0,2799,2801,5,204,0,0,2800,2802,3,288,144,0, - 2801,2800,1,0,0,0,2801,2802,1,0,0,0,2802,2803,1,0,0,0,2803,2805, - 3,824,412,0,2804,2806,5,105,0,0,2805,2804,1,0,0,0,2805,2806,1,0, - 0,0,2806,2814,1,0,0,0,2807,2808,5,323,0,0,2808,2813,3,794,397,0, - 2809,2810,7,31,0,0,2810,2813,3,58,29,0,2811,2813,5,150,0,0,2812, - 2807,1,0,0,0,2812,2809,1,0,0,0,2812,2811,1,0,0,0,2813,2816,1,0,0, - 0,2814,2812,1,0,0,0,2814,2815,1,0,0,0,2815,203,1,0,0,0,2816,2814, - 1,0,0,0,2817,2818,5,138,0,0,2818,2819,5,204,0,0,2819,2820,3,824, - 412,0,2820,2825,5,369,0,0,2821,2822,5,94,0,0,2822,2824,3,58,29,0, - 2823,2821,1,0,0,0,2824,2827,1,0,0,0,2825,2823,1,0,0,0,2825,2826, - 1,0,0,0,2826,205,1,0,0,0,2827,2825,1,0,0,0,2828,2829,5,138,0,0,2829, - 2830,5,204,0,0,2830,2831,3,824,412,0,2831,2864,7,6,0,0,2832,2833, - 5,443,0,0,2833,2834,5,62,0,0,2834,2835,3,648,324,0,2835,2836,5,247, - 0,0,2836,2837,3,824,412,0,2837,2865,1,0,0,0,2838,2839,5,442,0,0, - 2839,2865,3,368,184,0,2840,2841,5,296,0,0,2841,2865,3,372,186,0, - 2842,2843,5,278,0,0,2843,2844,7,32,0,0,2844,2845,3,310,155,0,2845, - 2846,3,164,82,0,2846,2865,1,0,0,0,2847,2848,5,278,0,0,2848,2865, - 3,410,205,0,2849,2850,5,211,0,0,2850,2865,3,376,188,0,2851,2852, - 7,33,0,0,2852,2865,3,648,324,0,2853,2854,5,41,0,0,2854,2855,5,2, - 0,0,2855,2856,3,648,324,0,2856,2857,5,36,0,0,2857,2858,3,648,324, - 0,2858,2859,5,3,0,0,2859,2865,1,0,0,0,2860,2861,5,136,0,0,2861,2865, - 3,388,194,0,2862,2865,3,306,153,0,2863,2865,3,304,152,0,2864,2832, - 1,0,0,0,2864,2838,1,0,0,0,2864,2840,1,0,0,0,2864,2842,1,0,0,0,2864, - 2847,1,0,0,0,2864,2849,1,0,0,0,2864,2851,1,0,0,0,2864,2853,1,0,0, - 0,2864,2860,1,0,0,0,2864,2862,1,0,0,0,2864,2863,1,0,0,0,2865,207, - 1,0,0,0,2866,2867,5,46,0,0,2867,2868,5,63,0,0,2868,2869,5,174,0, - 0,2869,2870,5,381,0,0,2870,2876,3,824,412,0,2871,2873,3,210,105, - 0,2872,2871,1,0,0,0,2873,2874,1,0,0,0,2874,2872,1,0,0,0,2874,2875, - 1,0,0,0,2875,2877,1,0,0,0,2876,2872,1,0,0,0,2876,2877,1,0,0,0,2877, - 2879,1,0,0,0,2878,2880,3,214,107,0,2879,2878,1,0,0,0,2879,2880,1, - 0,0,0,2880,209,1,0,0,0,2881,2883,7,34,0,0,2882,2884,3,310,155,0, - 2883,2882,1,0,0,0,2883,2884,1,0,0,0,2884,2888,1,0,0,0,2885,2886, - 5,269,0,0,2886,2888,7,34,0,0,2887,2881,1,0,0,0,2887,2885,1,0,0,0, - 2888,211,1,0,0,0,2889,2890,5,138,0,0,2890,2891,5,63,0,0,2891,2892, - 5,174,0,0,2892,2893,5,381,0,0,2893,2907,3,824,412,0,2894,2896,3, - 210,105,0,2895,2894,1,0,0,0,2896,2897,1,0,0,0,2897,2895,1,0,0,0, - 2897,2898,1,0,0,0,2898,2900,1,0,0,0,2899,2895,1,0,0,0,2899,2900, - 1,0,0,0,2900,2901,1,0,0,0,2901,2908,3,216,108,0,2902,2904,3,210, - 105,0,2903,2902,1,0,0,0,2904,2905,1,0,0,0,2905,2903,1,0,0,0,2905, - 2906,1,0,0,0,2906,2908,1,0,0,0,2907,2899,1,0,0,0,2907,2903,1,0,0, - 0,2908,213,1,0,0,0,2909,2910,5,280,0,0,2910,2911,5,2,0,0,2911,2916, - 3,220,110,0,2912,2913,5,6,0,0,2913,2915,3,220,110,0,2914,2912,1, - 0,0,0,2915,2918,1,0,0,0,2916,2914,1,0,0,0,2916,2917,1,0,0,0,2917, - 2919,1,0,0,0,2918,2916,1,0,0,0,2919,2920,5,3,0,0,2920,215,1,0,0, - 0,2921,2922,5,280,0,0,2922,2923,5,2,0,0,2923,2928,3,218,109,0,2924, - 2925,5,6,0,0,2925,2927,3,218,109,0,2926,2924,1,0,0,0,2927,2930,1, - 0,0,0,2928,2926,1,0,0,0,2928,2929,1,0,0,0,2929,2931,1,0,0,0,2930, - 2928,1,0,0,0,2931,2932,5,3,0,0,2932,217,1,0,0,0,2933,2934,7,35,0, - 0,2934,2935,3,220,110,0,2935,219,1,0,0,0,2936,2937,3,830,415,0,2937, - 2938,3,814,407,0,2938,221,1,0,0,0,2939,2940,5,46,0,0,2940,2942,5, - 331,0,0,2941,2943,3,288,144,0,2942,2941,1,0,0,0,2942,2943,1,0,0, - 0,2943,2944,1,0,0,0,2944,2947,3,824,412,0,2945,2946,5,360,0,0,2946, - 2948,3,814,407,0,2947,2945,1,0,0,0,2947,2948,1,0,0,0,2948,2950,1, - 0,0,0,2949,2951,3,224,112,0,2950,2949,1,0,0,0,2950,2951,1,0,0,0, - 2951,2952,1,0,0,0,2952,2953,5,63,0,0,2953,2954,5,174,0,0,2954,2955, - 5,381,0,0,2955,2957,3,824,412,0,2956,2958,3,214,107,0,2957,2956, - 1,0,0,0,2957,2958,1,0,0,0,2958,223,1,0,0,0,2959,2962,5,375,0,0,2960, - 2963,3,814,407,0,2961,2963,5,78,0,0,2962,2960,1,0,0,0,2962,2961, - 1,0,0,0,2963,225,1,0,0,0,2964,2965,5,138,0,0,2965,2966,5,331,0,0, - 2966,2972,3,824,412,0,2967,2973,3,216,108,0,2968,2970,3,224,112, - 0,2969,2971,3,216,108,0,2970,2969,1,0,0,0,2970,2971,1,0,0,0,2971, - 2973,1,0,0,0,2972,2967,1,0,0,0,2972,2968,1,0,0,0,2973,227,1,0,0, - 0,2974,2975,5,46,0,0,2975,2976,5,63,0,0,2976,2978,5,92,0,0,2977, - 2979,3,288,144,0,2978,2977,1,0,0,0,2978,2979,1,0,0,0,2979,2980,1, - 0,0,0,2980,2981,3,776,388,0,2981,2983,5,2,0,0,2982,2984,3,120,60, - 0,2983,2982,1,0,0,0,2983,2984,1,0,0,0,2984,2985,1,0,0,0,2985,2987, - 5,3,0,0,2986,2988,3,158,79,0,2987,2986,1,0,0,0,2987,2988,1,0,0,0, - 2988,2989,1,0,0,0,2989,2990,5,331,0,0,2990,2992,3,824,412,0,2991, - 2993,3,214,107,0,2992,2991,1,0,0,0,2992,2993,1,0,0,0,2993,3014,1, - 0,0,0,2994,2995,5,46,0,0,2995,2996,5,63,0,0,2996,2998,5,92,0,0,2997, - 2999,3,288,144,0,2998,2997,1,0,0,0,2998,2999,1,0,0,0,2999,3000,1, - 0,0,0,3000,3001,3,776,388,0,3001,3002,5,285,0,0,3002,3003,5,275, - 0,0,3003,3005,3,778,389,0,3004,3006,3,118,59,0,3005,3004,1,0,0,0, - 3005,3006,1,0,0,0,3006,3007,1,0,0,0,3007,3008,3,98,49,0,3008,3009, - 5,331,0,0,3009,3011,3,824,412,0,3010,3012,3,214,107,0,3011,3010, - 1,0,0,0,3011,3012,1,0,0,0,3012,3014,1,0,0,0,3013,2974,1,0,0,0,3013, - 2994,1,0,0,0,3014,229,1,0,0,0,3015,3016,5,444,0,0,3016,3017,5,63, - 0,0,3017,3018,5,323,0,0,3018,3028,3,794,397,0,3019,3020,5,74,0,0, - 3020,3023,5,94,0,0,3021,3023,5,59,0,0,3022,3019,1,0,0,0,3022,3021, - 1,0,0,0,3023,3024,1,0,0,0,3024,3025,5,2,0,0,3025,3026,3,624,312, - 0,3026,3027,5,3,0,0,3027,3029,1,0,0,0,3028,3022,1,0,0,0,3028,3029, - 1,0,0,0,3029,3030,1,0,0,0,3030,3031,5,64,0,0,3031,3032,5,331,0,0, - 3032,3033,3,824,412,0,3033,3034,5,71,0,0,3034,3036,3,824,412,0,3035, - 3037,3,214,107,0,3036,3035,1,0,0,0,3036,3037,1,0,0,0,3037,231,1, - 0,0,0,3038,3039,5,46,0,0,3039,3040,5,99,0,0,3040,3042,5,257,0,0, - 3041,3043,3,288,144,0,3042,3041,1,0,0,0,3042,3043,1,0,0,0,3043,3044, - 1,0,0,0,3044,3047,5,62,0,0,3045,3048,3,820,410,0,3046,3048,5,99, - 0,0,3047,3045,1,0,0,0,3047,3046,1,0,0,0,3048,3049,1,0,0,0,3049,3050, - 5,331,0,0,3050,3052,3,824,412,0,3051,3053,3,214,107,0,3052,3051, - 1,0,0,0,3052,3053,1,0,0,0,3053,233,1,0,0,0,3054,3055,5,138,0,0,3055, - 3056,5,99,0,0,3056,3057,5,257,0,0,3057,3060,5,62,0,0,3058,3061,3, - 820,410,0,3059,3061,5,99,0,0,3060,3058,1,0,0,0,3060,3059,1,0,0,0, - 3061,3062,1,0,0,0,3062,3063,5,331,0,0,3063,3064,3,824,412,0,3064, - 3065,3,216,108,0,3065,235,1,0,0,0,3066,3067,5,46,0,0,3067,3068,5, - 445,0,0,3068,3069,3,824,412,0,3069,3070,5,80,0,0,3070,3077,3,784, - 392,0,3071,3075,5,36,0,0,3072,3076,5,541,0,0,3073,3076,5,542,0,0, - 3074,3076,3,832,416,0,3075,3072,1,0,0,0,3075,3073,1,0,0,0,3075,3074, - 1,0,0,0,3076,3078,1,0,0,0,3077,3071,1,0,0,0,3077,3078,1,0,0,0,3078, - 3081,1,0,0,0,3079,3080,5,62,0,0,3080,3082,7,36,0,0,3081,3079,1,0, - 0,0,3081,3082,1,0,0,0,3082,3085,1,0,0,0,3083,3084,5,94,0,0,3084, - 3086,3,822,411,0,3085,3083,1,0,0,0,3085,3086,1,0,0,0,3086,3088,1, - 0,0,0,3087,3089,3,244,122,0,3088,3087,1,0,0,0,3088,3089,1,0,0,0, - 3089,3091,1,0,0,0,3090,3092,3,246,123,0,3091,3090,1,0,0,0,3091,3092, - 1,0,0,0,3092,237,1,0,0,0,3093,3094,5,138,0,0,3094,3095,5,445,0,0, - 3095,3096,3,824,412,0,3096,3097,5,80,0,0,3097,3100,3,784,392,0,3098, - 3099,5,94,0,0,3099,3101,3,822,411,0,3100,3098,1,0,0,0,3100,3101, - 1,0,0,0,3101,3103,1,0,0,0,3102,3104,3,244,122,0,3103,3102,1,0,0, - 0,3103,3104,1,0,0,0,3104,3106,1,0,0,0,3105,3107,3,246,123,0,3106, - 3105,1,0,0,0,3106,3107,1,0,0,0,3107,239,1,0,0,0,3108,3109,5,138, - 0,0,3109,3110,5,296,0,0,3110,3112,3,800,400,0,3111,3113,3,362,181, - 0,3112,3111,1,0,0,0,3112,3113,1,0,0,0,3113,3140,1,0,0,0,3114,3118, - 3,242,121,0,3115,3117,3,242,121,0,3116,3115,1,0,0,0,3117,3120,1, - 0,0,0,3118,3116,1,0,0,0,3118,3119,1,0,0,0,3119,3122,1,0,0,0,3120, - 3118,1,0,0,0,3121,3123,5,315,0,0,3122,3121,1,0,0,0,3122,3123,1,0, - 0,0,3123,3141,1,0,0,0,3124,3125,5,309,0,0,3125,3126,5,94,0,0,3126, - 3141,3,802,401,0,3127,3128,5,282,0,0,3128,3129,5,94,0,0,3129,3141, - 3,820,410,0,3130,3131,5,333,0,0,3131,3132,5,323,0,0,3132,3141,3, - 32,16,0,3133,3135,5,269,0,0,3134,3133,1,0,0,0,3134,3135,1,0,0,0, - 3135,3136,1,0,0,0,3136,3137,5,462,0,0,3137,3138,5,80,0,0,3138,3139, - 5,204,0,0,3139,3141,3,824,412,0,3140,3114,1,0,0,0,3140,3124,1,0, - 0,0,3140,3127,1,0,0,0,3140,3130,1,0,0,0,3140,3134,1,0,0,0,3141,241, - 1,0,0,0,3142,3144,5,205,0,0,3143,3142,1,0,0,0,3143,3144,1,0,0,0, - 3144,3145,1,0,0,0,3145,3146,5,327,0,0,3146,3153,5,243,0,0,3147,3149, - 5,205,0,0,3148,3147,1,0,0,0,3148,3149,1,0,0,0,3149,3150,1,0,0,0, - 3150,3151,5,327,0,0,3151,3153,5,181,0,0,3152,3143,1,0,0,0,3152,3148, - 1,0,0,0,3153,3172,1,0,0,0,3154,3155,5,333,0,0,3155,3156,3,824,412, - 0,3156,3159,7,37,0,0,3157,3160,3,824,412,0,3158,3160,5,53,0,0,3159, - 3157,1,0,0,0,3159,3158,1,0,0,0,3160,3172,1,0,0,0,3161,3162,5,333, - 0,0,3162,3163,3,824,412,0,3163,3164,5,64,0,0,3164,3165,5,434,0,0, - 3165,3172,1,0,0,0,3166,3169,5,313,0,0,3167,3170,3,824,412,0,3168, - 3170,5,30,0,0,3169,3167,1,0,0,0,3169,3168,1,0,0,0,3170,3172,1,0, - 0,0,3171,3152,1,0,0,0,3171,3154,1,0,0,0,3171,3161,1,0,0,0,3171,3166, - 1,0,0,0,3172,243,1,0,0,0,3173,3174,5,100,0,0,3174,3175,5,2,0,0,3175, - 3176,3,670,335,0,3176,3177,5,3,0,0,3177,245,1,0,0,0,3178,3179,5, - 105,0,0,3179,3180,5,42,0,0,3180,3181,5,2,0,0,3181,3182,3,670,335, - 0,3182,3183,5,3,0,0,3183,247,1,0,0,0,3184,3185,5,46,0,0,3185,3186, - 5,131,0,0,3186,3187,5,446,0,0,3187,3188,3,824,412,0,3188,3189,5, - 360,0,0,3189,3190,7,38,0,0,3190,3191,5,215,0,0,3191,3192,3,310,155, - 0,3192,249,1,0,0,0,3193,3195,5,46,0,0,3194,3196,3,360,180,0,3195, - 3194,1,0,0,0,3195,3196,1,0,0,0,3196,3197,1,0,0,0,3197,3198,5,357, - 0,0,3198,3199,3,824,412,0,3199,3200,3,252,126,0,3200,3201,3,254, - 127,0,3201,3202,5,80,0,0,3202,3214,3,778,389,0,3203,3210,5,447,0, - 0,3204,3205,7,39,0,0,3205,3207,7,40,0,0,3206,3208,5,36,0,0,3207, - 3206,1,0,0,0,3207,3208,1,0,0,0,3208,3209,1,0,0,0,3209,3211,3,824, - 412,0,3210,3204,1,0,0,0,3211,3212,1,0,0,0,3212,3210,1,0,0,0,3212, - 3213,1,0,0,0,3213,3215,1,0,0,0,3214,3203,1,0,0,0,3214,3215,1,0,0, - 0,3215,3221,1,0,0,0,3216,3218,5,62,0,0,3217,3219,5,192,0,0,3218, - 3217,1,0,0,0,3218,3219,1,0,0,0,3219,3220,1,0,0,0,3220,3222,7,41, - 0,0,3221,3216,1,0,0,0,3221,3222,1,0,0,0,3222,3224,1,0,0,0,3223,3225, - 3,258,129,0,3224,3223,1,0,0,0,3224,3225,1,0,0,0,3225,3226,1,0,0, - 0,3226,3227,5,202,0,0,3227,3228,3,260,130,0,3228,3229,5,2,0,0,3229, - 3230,3,262,131,0,3230,3231,5,3,0,0,3231,3272,1,0,0,0,3232,3234,5, - 46,0,0,3233,3235,3,360,180,0,3234,3233,1,0,0,0,3234,3235,1,0,0,0, - 3235,3237,1,0,0,0,3236,3238,5,45,0,0,3237,3236,1,0,0,0,3237,3238, - 1,0,0,0,3238,3239,1,0,0,0,3239,3240,5,357,0,0,3240,3241,3,824,412, - 0,3241,3242,3,252,126,0,3242,3243,3,254,127,0,3243,3244,5,80,0,0, - 3244,3247,3,778,389,0,3245,3246,5,64,0,0,3246,3248,3,784,392,0,3247, - 3245,1,0,0,0,3247,3248,1,0,0,0,3248,3252,1,0,0,0,3249,3251,3,266, - 133,0,3250,3249,1,0,0,0,3251,3254,1,0,0,0,3252,3250,1,0,0,0,3252, - 3253,1,0,0,0,3253,3260,1,0,0,0,3254,3252,1,0,0,0,3255,3257,5,62, - 0,0,3256,3258,5,192,0,0,3257,3256,1,0,0,0,3257,3258,1,0,0,0,3258, - 3259,1,0,0,0,3259,3261,7,41,0,0,3260,3255,1,0,0,0,3260,3261,1,0, - 0,0,3261,3263,1,0,0,0,3262,3264,3,258,129,0,3263,3262,1,0,0,0,3263, - 3264,1,0,0,0,3264,3265,1,0,0,0,3265,3266,5,202,0,0,3266,3267,3,260, - 130,0,3267,3268,5,2,0,0,3268,3269,3,262,131,0,3269,3270,5,3,0,0, - 3270,3272,1,0,0,0,3271,3193,1,0,0,0,3271,3232,1,0,0,0,3272,251,1, - 0,0,0,3273,3278,5,145,0,0,3274,3278,5,135,0,0,3275,3276,5,242,0, - 0,3276,3278,5,275,0,0,3277,3273,1,0,0,0,3277,3274,1,0,0,0,3277,3275, - 1,0,0,0,3278,253,1,0,0,0,3279,3284,3,256,128,0,3280,3281,5,82,0, - 0,3281,3283,3,256,128,0,3282,3280,1,0,0,0,3283,3286,1,0,0,0,3284, - 3282,1,0,0,0,3284,3285,1,0,0,0,3285,255,1,0,0,0,3286,3284,1,0,0, - 0,3287,3296,5,241,0,0,3288,3296,5,182,0,0,3289,3292,5,369,0,0,3290, - 3291,5,275,0,0,3291,3293,3,142,71,0,3292,3290,1,0,0,0,3292,3293, - 1,0,0,0,3293,3296,1,0,0,0,3294,3296,5,358,0,0,3295,3287,1,0,0,0, - 3295,3288,1,0,0,0,3295,3289,1,0,0,0,3295,3294,1,0,0,0,3296,257,1, - 0,0,0,3297,3298,5,102,0,0,3298,3299,5,2,0,0,3299,3300,3,670,335, - 0,3300,3301,5,3,0,0,3301,259,1,0,0,0,3302,3303,5,211,0,0,3303,3307, - 3,812,406,0,3304,3305,5,296,0,0,3305,3307,3,800,400,0,3306,3302, - 1,0,0,0,3306,3304,1,0,0,0,3307,261,1,0,0,0,3308,3311,3,264,132,0, - 3309,3311,1,0,0,0,3310,3308,1,0,0,0,3310,3309,1,0,0,0,3311,3316, - 1,0,0,0,3312,3313,5,6,0,0,3313,3315,3,264,132,0,3314,3312,1,0,0, - 0,3315,3318,1,0,0,0,3316,3314,1,0,0,0,3316,3317,1,0,0,0,3317,263, - 1,0,0,0,3318,3316,1,0,0,0,3319,3324,5,574,0,0,3320,3324,5,576,0, - 0,3321,3324,3,814,407,0,3322,3324,3,830,415,0,3323,3319,1,0,0,0, - 3323,3320,1,0,0,0,3323,3321,1,0,0,0,3323,3322,1,0,0,0,3324,265,1, - 0,0,0,3325,3327,5,77,0,0,3326,3325,1,0,0,0,3326,3327,1,0,0,0,3327, - 3328,1,0,0,0,3328,3336,5,54,0,0,3329,3330,5,69,0,0,3330,3336,7,9, - 0,0,3331,3332,5,77,0,0,3332,3336,5,371,0,0,3333,3334,5,269,0,0,3334, - 3336,5,228,0,0,3335,3326,1,0,0,0,3335,3329,1,0,0,0,3335,3331,1,0, - 0,0,3335,3333,1,0,0,0,3336,267,1,0,0,0,3337,3338,5,46,0,0,3338,3339, - 5,198,0,0,3339,3340,5,357,0,0,3340,3341,3,824,412,0,3341,3342,5, - 80,0,0,3342,3352,3,830,415,0,3343,3344,5,102,0,0,3344,3349,3,270, - 135,0,3345,3346,5,33,0,0,3346,3348,3,270,135,0,3347,3345,1,0,0,0, - 3348,3351,1,0,0,0,3349,3347,1,0,0,0,3349,3350,1,0,0,0,3350,3353, - 1,0,0,0,3351,3349,1,0,0,0,3352,3343,1,0,0,0,3352,3353,1,0,0,0,3353, - 3354,1,0,0,0,3354,3355,5,202,0,0,3355,3356,3,260,130,0,3356,3357, - 5,2,0,0,3357,3358,5,3,0,0,3358,269,1,0,0,0,3359,3360,3,824,412,0, - 3360,3361,5,68,0,0,3361,3362,5,2,0,0,3362,3366,3,814,407,0,3363, - 3365,3,456,228,0,3364,3363,1,0,0,0,3365,3368,1,0,0,0,3366,3364,1, - 0,0,0,3366,3367,1,0,0,0,3367,3369,1,0,0,0,3368,3366,1,0,0,0,3369, - 3370,5,3,0,0,3370,271,1,0,0,0,3371,3372,5,138,0,0,3372,3373,5,198, - 0,0,3373,3374,5,357,0,0,3374,3380,3,824,412,0,3375,3377,5,193,0, - 0,3376,3378,7,14,0,0,3377,3376,1,0,0,0,3377,3378,1,0,0,0,3378,3381, - 1,0,0,0,3379,3381,5,186,0,0,3380,3375,1,0,0,0,3380,3379,1,0,0,0, - 3381,273,1,0,0,0,3382,3383,5,46,0,0,3383,3384,5,140,0,0,3384,3385, - 3,310,155,0,3385,3386,5,42,0,0,3386,3387,5,2,0,0,3387,3388,3,670, - 335,0,3388,3392,5,3,0,0,3389,3391,3,266,133,0,3390,3389,1,0,0,0, - 3391,3394,1,0,0,0,3392,3390,1,0,0,0,3392,3393,1,0,0,0,3393,275,1, - 0,0,0,3394,3392,1,0,0,0,3395,3397,5,46,0,0,3396,3398,3,360,180,0, - 3397,3396,1,0,0,0,3397,3398,1,0,0,0,3398,3399,1,0,0,0,3399,3400, - 5,136,0,0,3400,3415,3,812,406,0,3401,3402,3,386,193,0,3402,3403, - 3,278,139,0,3403,3416,1,0,0,0,3404,3405,5,2,0,0,3405,3410,3,284, - 142,0,3406,3407,5,6,0,0,3407,3409,3,284,142,0,3408,3406,1,0,0,0, - 3409,3412,1,0,0,0,3410,3408,1,0,0,0,3410,3411,1,0,0,0,3411,3413, - 1,0,0,0,3412,3410,1,0,0,0,3413,3414,5,3,0,0,3414,3416,1,0,0,0,3415, - 3401,1,0,0,0,3415,3404,1,0,0,0,3416,3474,1,0,0,0,3417,3418,5,46, - 0,0,3418,3419,5,278,0,0,3419,3420,3,408,204,0,3420,3421,3,278,139, - 0,3421,3474,1,0,0,0,3422,3423,5,46,0,0,3423,3424,5,360,0,0,3424, - 3425,3,310,155,0,3425,3443,5,36,0,0,3426,3428,5,2,0,0,3427,3429, - 3,638,319,0,3428,3427,1,0,0,0,3428,3429,1,0,0,0,3429,3430,1,0,0, - 0,3430,3444,5,3,0,0,3431,3432,5,196,0,0,3432,3440,5,2,0,0,3433,3437, - 3,814,407,0,3434,3436,3,456,228,0,3435,3434,1,0,0,0,3436,3439,1, - 0,0,0,3437,3435,1,0,0,0,3437,3438,1,0,0,0,3438,3441,1,0,0,0,3439, - 3437,1,0,0,0,3440,3433,1,0,0,0,3440,3441,1,0,0,0,3441,3442,1,0,0, - 0,3442,3444,5,3,0,0,3443,3426,1,0,0,0,3443,3431,1,0,0,0,3444,3474, - 1,0,0,0,3445,3446,5,46,0,0,3446,3447,5,360,0,0,3447,3453,3,310,155, - 0,3448,3449,5,36,0,0,3449,3451,5,299,0,0,3450,3448,1,0,0,0,3450, - 3451,1,0,0,0,3451,3452,1,0,0,0,3452,3454,3,278,139,0,3453,3450,1, - 0,0,0,3453,3454,1,0,0,0,3454,3474,1,0,0,0,3455,3456,5,46,0,0,3456, - 3457,5,355,0,0,3457,3458,5,325,0,0,3458,3459,7,42,0,0,3459,3460, - 3,310,155,0,3460,3461,3,278,139,0,3461,3474,1,0,0,0,3462,3463,5, - 46,0,0,3463,3465,5,108,0,0,3464,3466,3,288,144,0,3465,3464,1,0,0, - 0,3465,3466,1,0,0,0,3466,3467,1,0,0,0,3467,3471,3,310,155,0,3468, - 3472,3,278,139,0,3469,3470,5,64,0,0,3470,3472,3,310,155,0,3471,3468, - 1,0,0,0,3471,3469,1,0,0,0,3472,3474,1,0,0,0,3473,3395,1,0,0,0,3473, - 3417,1,0,0,0,3473,3422,1,0,0,0,3473,3445,1,0,0,0,3473,3455,1,0,0, - 0,3473,3462,1,0,0,0,3474,277,1,0,0,0,3475,3476,5,2,0,0,3476,3481, - 3,280,140,0,3477,3478,5,6,0,0,3478,3480,3,280,140,0,3479,3477,1, - 0,0,0,3480,3483,1,0,0,0,3481,3479,1,0,0,0,3481,3482,1,0,0,0,3482, - 3484,1,0,0,0,3483,3481,1,0,0,0,3484,3485,5,3,0,0,3485,279,1,0,0, - 0,3486,3489,3,830,415,0,3487,3488,5,10,0,0,3488,3490,3,282,141,0, - 3489,3487,1,0,0,0,3489,3490,1,0,0,0,3490,281,1,0,0,0,3491,3498,3, - 382,191,0,3492,3498,3,840,420,0,3493,3498,3,724,362,0,3494,3498, - 3,196,98,0,3495,3498,3,814,407,0,3496,3498,5,407,0,0,3497,3491,1, - 0,0,0,3497,3492,1,0,0,0,3497,3493,1,0,0,0,3497,3494,1,0,0,0,3497, - 3495,1,0,0,0,3497,3496,1,0,0,0,3498,283,1,0,0,0,3499,3500,3,832, - 416,0,3500,3501,5,10,0,0,3501,3502,3,282,141,0,3502,285,1,0,0,0, - 3503,3504,5,138,0,0,3504,3505,5,360,0,0,3505,3506,3,310,155,0,3506, - 3507,5,133,0,0,3507,3509,5,450,0,0,3508,3510,3,288,144,0,3509,3508, - 1,0,0,0,3509,3510,1,0,0,0,3510,3511,1,0,0,0,3511,3514,3,814,407, - 0,3512,3513,7,43,0,0,3513,3515,3,814,407,0,3514,3512,1,0,0,0,3514, - 3515,1,0,0,0,3515,3526,1,0,0,0,3516,3517,5,138,0,0,3517,3518,5,360, - 0,0,3518,3519,3,310,155,0,3519,3520,5,309,0,0,3520,3521,5,450,0, - 0,3521,3522,3,814,407,0,3522,3523,5,94,0,0,3523,3524,3,814,407,0, - 3524,3526,1,0,0,0,3525,3503,1,0,0,0,3525,3516,1,0,0,0,3526,287,1, - 0,0,0,3527,3528,5,220,0,0,3528,3529,5,77,0,0,3529,3530,5,396,0,0, - 3530,289,1,0,0,0,3531,3532,5,46,0,0,3532,3533,5,278,0,0,3533,3534, - 5,156,0,0,3534,3536,3,310,155,0,3535,3537,5,53,0,0,3536,3535,1,0, - 0,0,3536,3537,1,0,0,0,3537,3538,1,0,0,0,3538,3539,5,62,0,0,3539, - 3540,5,360,0,0,3540,3541,3,648,324,0,3541,3544,3,164,82,0,3542,3543, - 5,206,0,0,3543,3545,3,310,155,0,3544,3542,1,0,0,0,3544,3545,1,0, - 0,0,3545,3546,1,0,0,0,3546,3547,5,36,0,0,3547,3552,3,292,146,0,3548, - 3549,5,6,0,0,3549,3551,3,292,146,0,3550,3548,1,0,0,0,3551,3554,1, - 0,0,0,3552,3550,1,0,0,0,3552,3553,1,0,0,0,3553,291,1,0,0,0,3554, - 3552,1,0,0,0,3555,3556,5,278,0,0,3556,3557,5,574,0,0,3557,3559,3, - 408,204,0,3558,3560,3,406,203,0,3559,3558,1,0,0,0,3559,3560,1,0, - 0,0,3560,3568,1,0,0,0,3561,3566,5,62,0,0,3562,3567,5,325,0,0,3563, - 3564,5,83,0,0,3564,3565,5,147,0,0,3565,3567,3,310,155,0,3566,3562, - 1,0,0,0,3566,3563,1,0,0,0,3567,3569,1,0,0,0,3568,3561,1,0,0,0,3568, - 3569,1,0,0,0,3569,3571,1,0,0,0,3570,3572,5,302,0,0,3571,3570,1,0, - 0,0,3571,3572,1,0,0,0,3572,3582,1,0,0,0,3573,3574,5,211,0,0,3574, - 3576,5,574,0,0,3575,3577,3,522,261,0,3576,3575,1,0,0,0,3576,3577, - 1,0,0,0,3577,3578,1,0,0,0,3578,3582,3,376,188,0,3579,3580,5,345, - 0,0,3580,3582,3,648,324,0,3581,3555,1,0,0,0,3581,3573,1,0,0,0,3581, - 3579,1,0,0,0,3582,293,1,0,0,0,3583,3584,5,46,0,0,3584,3585,5,278, - 0,0,3585,3586,5,206,0,0,3586,3587,3,310,155,0,3587,3588,3,164,82, - 0,3588,295,1,0,0,0,3589,3590,5,138,0,0,3590,3591,5,278,0,0,3591, - 3592,5,206,0,0,3592,3593,3,310,155,0,3593,3612,3,164,82,0,3594,3595, - 5,133,0,0,3595,3600,3,292,146,0,3596,3597,5,6,0,0,3597,3599,3,292, - 146,0,3598,3596,1,0,0,0,3599,3602,1,0,0,0,3600,3598,1,0,0,0,3600, - 3601,1,0,0,0,3601,3613,1,0,0,0,3602,3600,1,0,0,0,3603,3604,5,191, - 0,0,3604,3609,3,298,149,0,3605,3606,5,6,0,0,3606,3608,3,298,149, - 0,3607,3605,1,0,0,0,3608,3611,1,0,0,0,3609,3607,1,0,0,0,3609,3610, - 1,0,0,0,3610,3613,1,0,0,0,3611,3609,1,0,0,0,3612,3594,1,0,0,0,3612, - 3603,1,0,0,0,3613,297,1,0,0,0,3614,3615,7,44,0,0,3615,3616,5,574, - 0,0,3616,3617,3,522,261,0,3617,299,1,0,0,0,3618,3619,5,301,0,0,3619, - 3620,5,281,0,0,3620,3621,5,147,0,0,3621,3622,3,822,411,0,3622,3623, - 5,94,0,0,3623,3624,3,820,410,0,3624,301,1,0,0,0,3625,3648,5,191, - 0,0,3626,3649,5,328,0,0,3627,3649,5,226,0,0,3628,3649,5,108,0,0, - 3629,3649,5,168,0,0,3630,3649,5,342,0,0,3631,3649,5,452,0,0,3632, - 3649,5,331,0,0,3633,3634,5,131,0,0,3634,3649,5,446,0,0,3635,3636, - 5,198,0,0,3636,3649,5,357,0,0,3637,3649,5,204,0,0,3638,3640,5,295, - 0,0,3639,3638,1,0,0,0,3639,3640,1,0,0,0,3640,3641,1,0,0,0,3641,3649, - 5,247,0,0,3642,3643,5,63,0,0,3643,3644,5,174,0,0,3644,3649,5,381, - 0,0,3645,3646,5,355,0,0,3646,3647,5,325,0,0,3647,3649,7,42,0,0,3648, - 3626,1,0,0,0,3648,3627,1,0,0,0,3648,3628,1,0,0,0,3648,3629,1,0,0, - 0,3648,3630,1,0,0,0,3648,3631,1,0,0,0,3648,3632,1,0,0,0,3648,3633, - 1,0,0,0,3648,3635,1,0,0,0,3648,3637,1,0,0,0,3648,3639,1,0,0,0,3648, - 3642,1,0,0,0,3648,3645,1,0,0,0,3649,3651,1,0,0,0,3650,3652,3,416, - 208,0,3651,3650,1,0,0,0,3651,3652,1,0,0,0,3652,3653,1,0,0,0,3653, - 3655,3,788,394,0,3654,3656,3,88,44,0,3655,3654,1,0,0,0,3655,3656, - 1,0,0,0,3656,3833,1,0,0,0,3657,3659,5,191,0,0,3658,3660,5,259,0, - 0,3659,3658,1,0,0,0,3659,3660,1,0,0,0,3660,3661,1,0,0,0,3661,3663, - 5,376,0,0,3662,3664,3,416,208,0,3663,3662,1,0,0,0,3663,3664,1,0, - 0,0,3664,3665,1,0,0,0,3665,3670,3,782,391,0,3666,3667,5,6,0,0,3667, - 3669,3,782,391,0,3668,3666,1,0,0,0,3669,3672,1,0,0,0,3670,3668,1, - 0,0,0,3670,3671,1,0,0,0,3671,3674,1,0,0,0,3672,3670,1,0,0,0,3673, - 3675,3,88,44,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0,3675,3833,1,0, - 0,0,3676,3678,5,191,0,0,3677,3679,5,63,0,0,3678,3677,1,0,0,0,3678, - 3679,1,0,0,0,3679,3680,1,0,0,0,3680,3682,5,92,0,0,3681,3683,3,416, - 208,0,3682,3681,1,0,0,0,3682,3683,1,0,0,0,3683,3684,1,0,0,0,3684, - 3686,3,766,383,0,3685,3687,3,88,44,0,3686,3685,1,0,0,0,3686,3687, - 1,0,0,0,3687,3833,1,0,0,0,3688,3689,5,191,0,0,3689,3691,5,323,0, - 0,3690,3692,3,416,208,0,3691,3690,1,0,0,0,3691,3692,1,0,0,0,3692, - 3693,1,0,0,0,3693,3695,3,768,384,0,3694,3696,3,88,44,0,3695,3694, - 1,0,0,0,3695,3696,1,0,0,0,3696,3833,1,0,0,0,3697,3698,5,191,0,0, - 3698,3700,7,45,0,0,3699,3701,3,416,208,0,3700,3699,1,0,0,0,3700, - 3701,1,0,0,0,3701,3702,1,0,0,0,3702,3703,3,824,412,0,3703,3704,5, - 80,0,0,3704,3706,3,310,155,0,3705,3707,3,88,44,0,3706,3705,1,0,0, - 0,3706,3707,1,0,0,0,3707,3833,1,0,0,0,3708,3709,5,191,0,0,3709,3711, - 7,33,0,0,3710,3712,3,416,208,0,3711,3710,1,0,0,0,3711,3712,1,0,0, - 0,3712,3713,1,0,0,0,3713,3718,3,648,324,0,3714,3715,5,6,0,0,3715, - 3717,3,648,324,0,3716,3714,1,0,0,0,3717,3720,1,0,0,0,3718,3716,1, - 0,0,0,3718,3719,1,0,0,0,3719,3722,1,0,0,0,3720,3718,1,0,0,0,3721, - 3723,3,88,44,0,3722,3721,1,0,0,0,3722,3723,1,0,0,0,3723,3833,1,0, - 0,0,3724,3725,5,191,0,0,3725,3726,5,226,0,0,3726,3728,5,109,0,0, - 3727,3729,3,416,208,0,3728,3727,1,0,0,0,3728,3729,1,0,0,0,3729,3730, - 1,0,0,0,3730,3732,3,308,154,0,3731,3733,3,88,44,0,3732,3731,1,0, - 0,0,3732,3733,1,0,0,0,3733,3833,1,0,0,0,3734,3735,5,191,0,0,3735, - 3737,5,41,0,0,3736,3738,3,416,208,0,3737,3736,1,0,0,0,3737,3738, - 1,0,0,0,3738,3739,1,0,0,0,3739,3740,5,2,0,0,3740,3741,3,648,324, - 0,3741,3742,5,36,0,0,3742,3743,3,648,324,0,3743,3745,5,3,0,0,3744, - 3746,3,88,44,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746,3833,1,0, - 0,0,3747,3748,5,191,0,0,3748,3749,5,278,0,0,3749,3751,7,32,0,0,3750, - 3752,3,416,208,0,3751,3750,1,0,0,0,3751,3752,1,0,0,0,3752,3753,1, - 0,0,0,3753,3754,3,310,155,0,3754,3756,3,164,82,0,3755,3757,3,88, - 44,0,3756,3755,1,0,0,0,3756,3757,1,0,0,0,3757,3833,1,0,0,0,3758, - 3759,5,191,0,0,3759,3760,5,281,0,0,3760,3761,5,147,0,0,3761,3763, - 3,822,411,0,3762,3764,3,88,44,0,3763,3762,1,0,0,0,3763,3764,1,0, - 0,0,3764,3833,1,0,0,0,3765,3766,5,191,0,0,3766,3768,5,451,0,0,3767, - 3769,3,416,208,0,3768,3767,1,0,0,0,3768,3769,1,0,0,0,3769,3770,1, - 0,0,0,3770,3772,3,824,412,0,3771,3773,3,88,44,0,3772,3771,1,0,0, - 0,3772,3773,1,0,0,0,3773,3833,1,0,0,0,3774,3775,5,191,0,0,3775,3777, - 5,351,0,0,3776,3778,3,416,208,0,3777,3776,1,0,0,0,3777,3778,1,0, - 0,0,3778,3779,1,0,0,0,3779,3833,3,774,387,0,3780,3781,5,191,0,0, - 3781,3783,5,443,0,0,3782,3784,3,416,208,0,3783,3782,1,0,0,0,3783, - 3784,1,0,0,0,3784,3785,1,0,0,0,3785,3786,5,62,0,0,3786,3787,3,648, - 324,0,3787,3788,5,247,0,0,3788,3790,3,824,412,0,3789,3791,3,88,44, - 0,3790,3789,1,0,0,0,3790,3791,1,0,0,0,3791,3833,1,0,0,0,3792,3793, - 5,191,0,0,3793,3795,7,46,0,0,3794,3796,3,416,208,0,3795,3794,1,0, - 0,0,3795,3796,1,0,0,0,3796,3797,1,0,0,0,3797,3833,3,822,411,0,3798, - 3799,5,191,0,0,3799,3800,5,99,0,0,3800,3802,5,257,0,0,3801,3803, - 3,416,208,0,3802,3801,1,0,0,0,3802,3803,1,0,0,0,3803,3804,1,0,0, - 0,3804,3807,5,62,0,0,3805,3808,3,820,410,0,3806,3808,5,99,0,0,3807, - 3805,1,0,0,0,3807,3806,1,0,0,0,3808,3809,1,0,0,0,3809,3810,5,331, - 0,0,3810,3833,3,824,412,0,3811,3812,5,191,0,0,3812,3814,5,175,0, - 0,3813,3815,3,416,208,0,3814,3813,1,0,0,0,3814,3815,1,0,0,0,3815, - 3816,1,0,0,0,3816,3830,3,792,396,0,3817,3819,5,105,0,0,3818,3817, - 1,0,0,0,3818,3819,1,0,0,0,3819,3820,1,0,0,0,3820,3821,5,2,0,0,3821, - 3826,5,209,0,0,3822,3823,5,6,0,0,3823,3825,5,209,0,0,3824,3822,1, - 0,0,0,3825,3828,1,0,0,0,3826,3824,1,0,0,0,3826,3827,1,0,0,0,3827, - 3829,1,0,0,0,3828,3826,1,0,0,0,3829,3831,5,3,0,0,3830,3818,1,0,0, - 0,3830,3831,1,0,0,0,3831,3833,1,0,0,0,3832,3625,1,0,0,0,3832,3657, - 1,0,0,0,3832,3676,1,0,0,0,3832,3688,1,0,0,0,3832,3697,1,0,0,0,3832, - 3708,1,0,0,0,3832,3724,1,0,0,0,3832,3734,1,0,0,0,3832,3747,1,0,0, - 0,3832,3758,1,0,0,0,3832,3765,1,0,0,0,3832,3774,1,0,0,0,3832,3780, - 1,0,0,0,3832,3792,1,0,0,0,3832,3798,1,0,0,0,3832,3811,1,0,0,0,3833, - 303,1,0,0,0,3834,3836,5,63,0,0,3835,3834,1,0,0,0,3835,3836,1,0,0, - 0,3836,3837,1,0,0,0,3837,3838,5,92,0,0,3838,3851,3,778,389,0,3839, - 3841,5,259,0,0,3840,3839,1,0,0,0,3840,3841,1,0,0,0,3841,3842,1,0, - 0,0,3842,3843,5,376,0,0,3843,3851,3,782,391,0,3844,3845,7,47,0,0, - 3845,3851,3,310,155,0,3846,3847,5,355,0,0,3847,3848,5,325,0,0,3848, - 3849,7,42,0,0,3849,3851,3,310,155,0,3850,3835,1,0,0,0,3850,3840, - 1,0,0,0,3850,3844,1,0,0,0,3850,3846,1,0,0,0,3851,305,1,0,0,0,3852, - 3853,5,198,0,0,3853,3869,5,357,0,0,3854,3855,5,131,0,0,3855,3869, - 5,446,0,0,3856,3869,5,204,0,0,3857,3869,5,452,0,0,3858,3869,5,331, - 0,0,3859,3869,5,318,0,0,3860,3869,5,451,0,0,3861,3862,5,63,0,0,3862, - 3863,5,174,0,0,3863,3869,5,381,0,0,3864,3866,5,295,0,0,3865,3864, - 1,0,0,0,3865,3866,1,0,0,0,3866,3867,1,0,0,0,3867,3869,5,247,0,0, - 3868,3852,1,0,0,0,3868,3854,1,0,0,0,3868,3856,1,0,0,0,3868,3857, - 1,0,0,0,3868,3858,1,0,0,0,3868,3859,1,0,0,0,3868,3860,1,0,0,0,3868, - 3861,1,0,0,0,3868,3865,1,0,0,0,3869,3870,1,0,0,0,3870,3877,3,824, - 412,0,3871,3872,5,323,0,0,3872,3877,3,794,397,0,3873,3874,5,175, - 0,0,3874,3877,3,792,396,0,3875,3877,3,170,85,0,3876,3868,1,0,0,0, - 3876,3871,1,0,0,0,3876,3873,1,0,0,0,3876,3875,1,0,0,0,3877,307,1, - 0,0,0,3878,3883,3,310,155,0,3879,3880,5,6,0,0,3880,3882,3,310,155, - 0,3881,3879,1,0,0,0,3882,3885,1,0,0,0,3883,3881,1,0,0,0,3883,3884, - 1,0,0,0,3884,309,1,0,0,0,3885,3883,1,0,0,0,3886,3888,3,824,412,0, - 3887,3889,3,312,156,0,3888,3887,1,0,0,0,3888,3889,1,0,0,0,3889,311, - 1,0,0,0,3890,3891,5,11,0,0,3891,3893,3,830,415,0,3892,3890,1,0,0, - 0,3893,3894,1,0,0,0,3894,3892,1,0,0,0,3894,3895,1,0,0,0,3895,313, - 1,0,0,0,3896,3898,5,358,0,0,3897,3899,5,92,0,0,3898,3897,1,0,0,0, - 3898,3899,1,0,0,0,3899,3900,1,0,0,0,3900,3905,3,316,158,0,3901,3902, - 5,6,0,0,3902,3904,3,316,158,0,3903,3901,1,0,0,0,3904,3907,1,0,0, - 0,3905,3903,1,0,0,0,3905,3906,1,0,0,0,3906,3910,1,0,0,0,3907,3905, - 1,0,0,0,3908,3909,7,48,0,0,3909,3911,5,219,0,0,3910,3908,1,0,0,0, - 3910,3911,1,0,0,0,3911,3913,1,0,0,0,3912,3914,3,88,44,0,3913,3912, - 1,0,0,0,3913,3914,1,0,0,0,3914,315,1,0,0,0,3915,3917,5,81,0,0,3916, - 3915,1,0,0,0,3916,3917,1,0,0,0,3917,3918,1,0,0,0,3918,3920,3,778, - 389,0,3919,3921,5,9,0,0,3920,3919,1,0,0,0,3920,3921,1,0,0,0,3921, - 317,1,0,0,0,3922,3923,5,159,0,0,3923,3982,5,80,0,0,3924,3983,3,304, - 152,0,3925,3983,3,306,153,0,3926,3927,5,44,0,0,3927,3929,3,824,412, - 0,3928,3930,3,312,156,0,3929,3928,1,0,0,0,3929,3930,1,0,0,0,3930, - 3931,1,0,0,0,3931,3932,5,11,0,0,3932,3933,3,804,402,0,3933,3983, - 1,0,0,0,3934,3935,7,33,0,0,3935,3983,3,648,324,0,3936,3937,5,136, - 0,0,3937,3983,3,388,194,0,3938,3939,5,211,0,0,3939,3983,3,376,188, - 0,3940,3941,5,278,0,0,3941,3983,3,410,205,0,3942,3943,5,45,0,0,3943, - 3944,3,824,412,0,3944,3950,5,80,0,0,3945,3951,3,778,389,0,3946,3948, - 5,189,0,0,3947,3946,1,0,0,0,3947,3948,1,0,0,0,3948,3949,1,0,0,0, - 3949,3951,3,310,155,0,3950,3945,1,0,0,0,3950,3947,1,0,0,0,3951,3983, - 1,0,0,0,3952,3953,7,45,0,0,3953,3954,3,824,412,0,3954,3955,5,80, - 0,0,3955,3956,3,310,155,0,3956,3983,1,0,0,0,3957,3958,5,296,0,0, - 3958,3983,3,372,186,0,3959,3960,5,442,0,0,3960,3983,3,368,184,0, - 3961,3962,5,443,0,0,3962,3963,5,62,0,0,3963,3964,3,648,324,0,3964, - 3965,5,247,0,0,3965,3966,3,824,412,0,3966,3983,1,0,0,0,3967,3968, - 5,278,0,0,3968,3969,7,32,0,0,3969,3970,3,310,155,0,3970,3971,3,164, - 82,0,3971,3983,1,0,0,0,3972,3973,5,248,0,0,3973,3974,5,274,0,0,3974, - 3983,3,196,98,0,3975,3976,5,41,0,0,3976,3977,5,2,0,0,3977,3978,3, - 648,324,0,3978,3979,5,36,0,0,3979,3980,3,648,324,0,3980,3981,5,3, - 0,0,3981,3983,1,0,0,0,3982,3924,1,0,0,0,3982,3925,1,0,0,0,3982,3926, - 1,0,0,0,3982,3934,1,0,0,0,3982,3936,1,0,0,0,3982,3938,1,0,0,0,3982, - 3940,1,0,0,0,3982,3942,1,0,0,0,3982,3952,1,0,0,0,3982,3957,1,0,0, - 0,3982,3959,1,0,0,0,3982,3961,1,0,0,0,3982,3967,1,0,0,0,3982,3972, - 1,0,0,0,3982,3975,1,0,0,0,3983,3984,1,0,0,0,3984,3987,5,116,0,0, - 3985,3988,3,814,407,0,3986,3988,5,78,0,0,3987,3985,1,0,0,0,3987, - 3986,1,0,0,0,3988,319,1,0,0,0,3989,3990,5,327,0,0,3990,3993,5,246, - 0,0,3991,3992,5,62,0,0,3992,3994,3,58,29,0,3993,3991,1,0,0,0,3993, - 3994,1,0,0,0,3994,3995,1,0,0,0,3995,4013,5,80,0,0,3996,3997,7,33, - 0,0,3997,4014,3,648,324,0,3998,3999,5,136,0,0,3999,4014,3,388,194, - 0,4000,4001,5,44,0,0,4001,4014,3,804,402,0,4002,4003,5,211,0,0,4003, - 4014,3,376,188,0,4004,4005,5,248,0,0,4005,4006,5,274,0,0,4006,4014, - 3,196,98,0,4007,4008,5,296,0,0,4008,4014,3,372,186,0,4009,4010,5, - 442,0,0,4010,4014,3,368,184,0,4011,4014,3,304,152,0,4012,4014,3, - 306,153,0,4013,3996,1,0,0,0,4013,3998,1,0,0,0,4013,4000,1,0,0,0, - 4013,4002,1,0,0,0,4013,4004,1,0,0,0,4013,4007,1,0,0,0,4013,4009, - 1,0,0,0,4013,4011,1,0,0,0,4013,4012,1,0,0,0,4014,4015,1,0,0,0,4015, - 4018,5,116,0,0,4016,4019,3,814,407,0,4017,4019,5,78,0,0,4018,4016, - 1,0,0,0,4018,4017,1,0,0,0,4019,321,1,0,0,0,4020,4021,7,49,0,0,4021, - 4022,3,324,162,0,4022,323,1,0,0,0,4023,4025,7,50,0,0,4024,4023,1, - 0,0,0,4024,4025,1,0,0,0,4025,4027,1,0,0,0,4026,4028,3,326,163,0, - 4027,4026,1,0,0,0,4027,4028,1,0,0,0,4028,4029,1,0,0,0,4029,4067, - 3,824,412,0,4030,4032,7,51,0,0,4031,4030,1,0,0,0,4031,4032,1,0,0, - 0,4032,4033,1,0,0,0,4033,4035,3,818,409,0,4034,4036,3,326,163,0, - 4035,4034,1,0,0,0,4035,4036,1,0,0,0,4036,4037,1,0,0,0,4037,4038, - 3,824,412,0,4038,4067,1,0,0,0,4039,4041,5,210,0,0,4040,4042,3,818, - 409,0,4041,4040,1,0,0,0,4041,4042,1,0,0,0,4042,4044,1,0,0,0,4043, - 4045,3,326,163,0,4044,4043,1,0,0,0,4044,4045,1,0,0,0,4045,4046,1, - 0,0,0,4046,4067,3,824,412,0,4047,4049,5,210,0,0,4048,4047,1,0,0, - 0,4048,4049,1,0,0,0,4049,4050,1,0,0,0,4050,4052,5,30,0,0,4051,4053, - 3,326,163,0,4052,4051,1,0,0,0,4052,4053,1,0,0,0,4053,4054,1,0,0, - 0,4054,4067,3,824,412,0,4055,4060,5,144,0,0,4056,4058,5,30,0,0,4057, - 4056,1,0,0,0,4057,4058,1,0,0,0,4058,4061,1,0,0,0,4059,4061,3,818, - 409,0,4060,4057,1,0,0,0,4060,4059,1,0,0,0,4061,4063,1,0,0,0,4062, - 4064,3,326,163,0,4063,4062,1,0,0,0,4063,4064,1,0,0,0,4064,4065,1, - 0,0,0,4065,4067,3,824,412,0,4066,4024,1,0,0,0,4066,4031,1,0,0,0, - 4066,4039,1,0,0,0,4066,4048,1,0,0,0,4066,4055,1,0,0,0,4067,325,1, - 0,0,0,4068,4069,7,52,0,0,4069,327,1,0,0,0,4070,4071,5,65,0,0,4071, - 4072,3,332,166,0,4072,4073,5,80,0,0,4073,4074,3,338,169,0,4074,4075, - 5,94,0,0,4075,4079,3,340,170,0,4076,4077,5,105,0,0,4077,4078,5,65, - 0,0,4078,4080,5,279,0,0,4079,4076,1,0,0,0,4079,4080,1,0,0,0,4080, - 329,1,0,0,0,4081,4085,5,317,0,0,4082,4083,5,65,0,0,4083,4084,5,279, - 0,0,4084,4086,5,62,0,0,4085,4082,1,0,0,0,4085,4086,1,0,0,0,4086, - 4087,1,0,0,0,4087,4088,3,332,166,0,4088,4089,5,80,0,0,4089,4090, - 3,338,169,0,4090,4091,5,64,0,0,4091,4093,3,340,170,0,4092,4094,3, - 88,44,0,4093,4092,1,0,0,0,4093,4094,1,0,0,0,4094,331,1,0,0,0,4095, - 4100,3,336,168,0,4096,4097,5,6,0,0,4097,4099,3,336,168,0,4098,4096, - 1,0,0,0,4099,4102,1,0,0,0,4100,4098,1,0,0,0,4100,4101,1,0,0,0,4101, - 4119,1,0,0,0,4102,4100,1,0,0,0,4103,4105,5,30,0,0,4104,4106,5,294, - 0,0,4105,4104,1,0,0,0,4105,4106,1,0,0,0,4106,4108,1,0,0,0,4107,4109, - 3,138,69,0,4108,4107,1,0,0,0,4108,4109,1,0,0,0,4109,4119,1,0,0,0, - 4110,4115,3,334,167,0,4111,4112,5,6,0,0,4112,4114,3,334,167,0,4113, - 4111,1,0,0,0,4114,4117,1,0,0,0,4115,4113,1,0,0,0,4115,4116,1,0,0, - 0,4116,4119,1,0,0,0,4117,4115,1,0,0,0,4118,4095,1,0,0,0,4118,4103, - 1,0,0,0,4118,4110,1,0,0,0,4119,333,1,0,0,0,4120,4121,7,53,0,0,4121, - 335,1,0,0,0,4122,4127,5,88,0,0,4123,4127,5,86,0,0,4124,4127,5,46, - 0,0,4125,4127,3,824,412,0,4126,4122,1,0,0,0,4126,4123,1,0,0,0,4126, - 4124,1,0,0,0,4126,4125,1,0,0,0,4127,4129,1,0,0,0,4128,4130,3,138, - 69,0,4129,4128,1,0,0,0,4129,4130,1,0,0,0,4130,337,1,0,0,0,4131,4132, - 5,92,0,0,4132,4177,3,766,383,0,4133,4135,5,328,0,0,4134,4133,1,0, - 0,0,4134,4135,1,0,0,0,4135,4136,1,0,0,0,4136,4177,3,764,382,0,4137, - 4141,5,63,0,0,4138,4139,5,174,0,0,4139,4142,5,381,0,0,4140,4142, - 5,331,0,0,4141,4138,1,0,0,0,4141,4140,1,0,0,0,4142,4145,1,0,0,0, - 4143,4145,5,247,0,0,4144,4137,1,0,0,0,4144,4143,1,0,0,0,4145,4146, - 1,0,0,0,4146,4177,3,788,394,0,4147,4148,5,211,0,0,4148,4177,3,374, - 187,0,4149,4150,5,296,0,0,4150,4177,3,370,185,0,4151,4152,5,442, - 0,0,4152,4177,3,366,183,0,4153,4154,5,175,0,0,4154,4177,3,770,385, - 0,4155,4156,7,33,0,0,4156,4177,3,308,154,0,4157,4158,5,248,0,0,4158, - 4159,5,274,0,0,4159,4164,3,196,98,0,4160,4161,5,6,0,0,4161,4163, - 3,196,98,0,4162,4160,1,0,0,0,4163,4166,1,0,0,0,4164,4162,1,0,0,0, - 4164,4165,1,0,0,0,4165,4177,1,0,0,0,4166,4164,1,0,0,0,4167,4168, - 5,323,0,0,4168,4177,3,768,384,0,4169,4170,5,351,0,0,4170,4177,3, - 786,393,0,4171,4172,5,30,0,0,4172,4173,7,54,0,0,4173,4174,5,68,0, - 0,4174,4175,5,323,0,0,4175,4177,3,768,384,0,4176,4131,1,0,0,0,4176, - 4134,1,0,0,0,4176,4144,1,0,0,0,4176,4147,1,0,0,0,4176,4149,1,0,0, - 0,4176,4151,1,0,0,0,4176,4153,1,0,0,0,4176,4155,1,0,0,0,4176,4157, - 1,0,0,0,4176,4167,1,0,0,0,4176,4169,1,0,0,0,4176,4171,1,0,0,0,4177, - 339,1,0,0,0,4178,4180,5,66,0,0,4179,4178,1,0,0,0,4179,4180,1,0,0, - 0,4180,4181,1,0,0,0,4181,4182,3,820,410,0,4182,4190,1,0,0,0,4183, - 4185,5,6,0,0,4184,4186,5,66,0,0,4185,4184,1,0,0,0,4185,4186,1,0, - 0,0,4186,4187,1,0,0,0,4187,4189,3,820,410,0,4188,4183,1,0,0,0,4189, - 4192,1,0,0,0,4190,4188,1,0,0,0,4190,4191,1,0,0,0,4191,341,1,0,0, - 0,4192,4190,1,0,0,0,4193,4194,5,65,0,0,4194,4199,3,336,168,0,4195, - 4196,5,6,0,0,4196,4198,3,336,168,0,4197,4195,1,0,0,0,4198,4201,1, - 0,0,0,4199,4197,1,0,0,0,4199,4200,1,0,0,0,4200,4202,1,0,0,0,4201, - 4199,1,0,0,0,4202,4203,5,94,0,0,4203,4207,3,822,411,0,4204,4205, - 5,105,0,0,4205,4206,5,134,0,0,4206,4208,5,279,0,0,4207,4204,1,0, - 0,0,4207,4208,1,0,0,0,4208,4212,1,0,0,0,4209,4210,5,214,0,0,4210, - 4211,5,147,0,0,4211,4213,3,820,410,0,4212,4209,1,0,0,0,4212,4213, - 1,0,0,0,4213,343,1,0,0,0,4214,4218,5,317,0,0,4215,4216,5,134,0,0, - 4216,4217,5,279,0,0,4217,4219,5,62,0,0,4218,4215,1,0,0,0,4218,4219, - 1,0,0,0,4219,4220,1,0,0,0,4220,4225,3,336,168,0,4221,4222,5,6,0, - 0,4222,4224,3,336,168,0,4223,4221,1,0,0,0,4224,4227,1,0,0,0,4225, - 4223,1,0,0,0,4225,4226,1,0,0,0,4226,4228,1,0,0,0,4227,4225,1,0,0, - 0,4228,4229,5,64,0,0,4229,4233,3,822,411,0,4230,4231,5,214,0,0,4231, - 4232,5,147,0,0,4232,4234,3,820,410,0,4233,4230,1,0,0,0,4233,4234, - 1,0,0,0,4234,4236,1,0,0,0,4235,4237,3,88,44,0,4236,4235,1,0,0,0, - 4236,4237,1,0,0,0,4237,345,1,0,0,0,4238,4239,5,138,0,0,4239,4240, - 5,53,0,0,4240,4249,5,294,0,0,4241,4242,5,68,0,0,4242,4243,5,323, - 0,0,4243,4248,3,768,384,0,4244,4245,5,62,0,0,4245,4246,7,2,0,0,4246, - 4248,3,822,411,0,4247,4241,1,0,0,0,4247,4244,1,0,0,0,4248,4251,1, - 0,0,0,4249,4247,1,0,0,0,4249,4250,1,0,0,0,4250,4252,1,0,0,0,4251, - 4249,1,0,0,0,4252,4253,3,348,174,0,4253,347,1,0,0,0,4254,4255,5, - 65,0,0,4255,4256,3,332,166,0,4256,4257,5,80,0,0,4257,4258,3,350, - 175,0,4258,4259,5,94,0,0,4259,4263,3,340,170,0,4260,4261,5,105,0, - 0,4261,4262,5,65,0,0,4262,4264,5,279,0,0,4263,4260,1,0,0,0,4263, - 4264,1,0,0,0,4264,4280,1,0,0,0,4265,4269,5,317,0,0,4266,4267,5,65, - 0,0,4267,4268,5,279,0,0,4268,4270,5,62,0,0,4269,4266,1,0,0,0,4269, - 4270,1,0,0,0,4270,4271,1,0,0,0,4271,4272,3,332,166,0,4272,4273,5, - 80,0,0,4273,4274,3,350,175,0,4274,4275,5,64,0,0,4275,4277,3,340, - 170,0,4276,4278,3,88,44,0,4277,4276,1,0,0,0,4277,4278,1,0,0,0,4278, - 4280,1,0,0,0,4279,4254,1,0,0,0,4279,4265,1,0,0,0,4280,349,1,0,0, - 0,4281,4282,7,55,0,0,4282,351,1,0,0,0,4283,4285,5,46,0,0,4284,4286, - 5,98,0,0,4285,4284,1,0,0,0,4285,4286,1,0,0,0,4286,4287,1,0,0,0,4287, - 4289,5,226,0,0,4288,4290,5,109,0,0,4289,4288,1,0,0,0,4289,4290,1, - 0,0,0,4290,4292,1,0,0,0,4291,4293,3,288,144,0,4292,4291,1,0,0,0, - 4292,4293,1,0,0,0,4293,4295,1,0,0,0,4294,4296,3,824,412,0,4295,4294, - 1,0,0,0,4295,4296,1,0,0,0,4296,4297,1,0,0,0,4297,4298,5,80,0,0,4298, - 4300,3,620,310,0,4299,4301,3,164,82,0,4300,4299,1,0,0,0,4300,4301, - 1,0,0,0,4301,4302,1,0,0,0,4302,4305,3,354,177,0,4303,4304,5,441, - 0,0,4304,4306,3,354,177,0,4305,4303,1,0,0,0,4305,4306,1,0,0,0,4306, - 4312,1,0,0,0,4307,4309,5,273,0,0,4308,4310,5,77,0,0,4309,4308,1, - 0,0,0,4309,4310,1,0,0,0,4310,4311,1,0,0,0,4311,4313,5,56,0,0,4312, - 4307,1,0,0,0,4312,4313,1,0,0,0,4313,4315,1,0,0,0,4314,4316,3,94, - 47,0,4315,4314,1,0,0,0,4315,4316,1,0,0,0,4316,4318,1,0,0,0,4317, - 4319,3,170,85,0,4318,4317,1,0,0,0,4318,4319,1,0,0,0,4319,4321,1, - 0,0,0,4320,4322,3,634,317,0,4321,4320,1,0,0,0,4321,4322,1,0,0,0, - 4322,353,1,0,0,0,4323,4324,5,2,0,0,4324,4329,3,356,178,0,4325,4326, - 5,6,0,0,4326,4328,3,356,178,0,4327,4325,1,0,0,0,4328,4331,1,0,0, - 0,4329,4327,1,0,0,0,4329,4330,1,0,0,0,4330,4332,1,0,0,0,4331,4329, - 1,0,0,0,4332,4333,5,3,0,0,4333,355,1,0,0,0,4334,4341,3,804,402,0, - 4335,4341,3,684,342,0,4336,4337,5,2,0,0,4337,4338,3,670,335,0,4338, - 4339,5,3,0,0,4339,4341,1,0,0,0,4340,4334,1,0,0,0,4340,4335,1,0,0, - 0,4340,4336,1,0,0,0,4341,4343,1,0,0,0,4342,4344,3,90,45,0,4343,4342, - 1,0,0,0,4343,4344,1,0,0,0,4344,4351,1,0,0,0,4345,4347,3,310,155, - 0,4346,4345,1,0,0,0,4346,4347,1,0,0,0,4347,4352,1,0,0,0,4348,4349, - 3,310,155,0,4349,4350,3,92,46,0,4350,4352,1,0,0,0,4351,4346,1,0, - 0,0,4351,4348,1,0,0,0,4352,4354,1,0,0,0,4353,4355,7,56,0,0,4354, - 4353,1,0,0,0,4354,4355,1,0,0,0,4355,4358,1,0,0,0,4356,4357,5,273, - 0,0,4357,4359,7,57,0,0,4358,4356,1,0,0,0,4358,4359,1,0,0,0,4359, - 357,1,0,0,0,4360,4362,5,46,0,0,4361,4363,3,360,180,0,4362,4361,1, - 0,0,0,4362,4363,1,0,0,0,4363,4368,1,0,0,0,4364,4365,5,211,0,0,4365, - 4369,3,810,405,0,4366,4367,5,296,0,0,4367,4369,3,802,401,0,4368, - 4364,1,0,0,0,4368,4366,1,0,0,0,4369,4370,1,0,0,0,4370,4379,5,2,0, - 0,4371,4376,3,384,192,0,4372,4373,5,6,0,0,4373,4375,3,384,192,0, - 4374,4372,1,0,0,0,4375,4378,1,0,0,0,4376,4374,1,0,0,0,4376,4377, - 1,0,0,0,4377,4380,1,0,0,0,4378,4376,1,0,0,0,4379,4371,1,0,0,0,4379, - 4380,1,0,0,0,4380,4381,1,0,0,0,4381,4382,5,3,0,0,4382,4399,1,0,0, - 0,4383,4397,5,316,0,0,4384,4398,3,382,191,0,4385,4386,5,92,0,0,4386, - 4387,5,2,0,0,4387,4392,3,396,198,0,4388,4389,5,6,0,0,4389,4391,3, - 396,198,0,4390,4388,1,0,0,0,4391,4394,1,0,0,0,4392,4390,1,0,0,0, - 4392,4393,1,0,0,0,4393,4395,1,0,0,0,4394,4392,1,0,0,0,4395,4396, - 5,3,0,0,4396,4398,1,0,0,0,4397,4384,1,0,0,0,4397,4385,1,0,0,0,4398, - 4400,1,0,0,0,4399,4383,1,0,0,0,4399,4400,1,0,0,0,4400,4402,1,0,0, - 0,4401,4403,3,392,196,0,4402,4401,1,0,0,0,4403,4404,1,0,0,0,4404, - 4402,1,0,0,0,4404,4405,1,0,0,0,4405,4411,1,0,0,0,4406,4407,5,105, - 0,0,4407,4408,5,2,0,0,4408,4409,3,788,394,0,4409,4410,5,3,0,0,4410, - 4412,1,0,0,0,4411,4406,1,0,0,0,4411,4412,1,0,0,0,4412,359,1,0,0, - 0,4413,4414,5,82,0,0,4414,4415,5,311,0,0,4415,361,1,0,0,0,4416,4418, - 5,2,0,0,4417,4419,3,364,182,0,4418,4417,1,0,0,0,4418,4419,1,0,0, - 0,4419,4420,1,0,0,0,4420,4421,5,3,0,0,4421,363,1,0,0,0,4422,4427, - 3,378,189,0,4423,4424,5,6,0,0,4424,4426,3,378,189,0,4425,4423,1, - 0,0,0,4426,4429,1,0,0,0,4427,4425,1,0,0,0,4427,4428,1,0,0,0,4428, - 365,1,0,0,0,4429,4427,1,0,0,0,4430,4435,3,368,184,0,4431,4432,5, - 6,0,0,4432,4434,3,368,184,0,4433,4431,1,0,0,0,4434,4437,1,0,0,0, - 4435,4433,1,0,0,0,4435,4436,1,0,0,0,4436,367,1,0,0,0,4437,4435,1, - 0,0,0,4438,4439,3,798,399,0,4439,4440,3,362,181,0,4440,4444,1,0, - 0,0,4441,4444,3,838,419,0,4442,4444,3,784,392,0,4443,4438,1,0,0, - 0,4443,4441,1,0,0,0,4443,4442,1,0,0,0,4444,369,1,0,0,0,4445,4450, - 3,372,186,0,4446,4447,5,6,0,0,4447,4449,3,372,186,0,4448,4446,1, - 0,0,0,4449,4452,1,0,0,0,4450,4448,1,0,0,0,4450,4451,1,0,0,0,4451, - 371,1,0,0,0,4452,4450,1,0,0,0,4453,4454,3,800,400,0,4454,4455,3, - 362,181,0,4455,4459,1,0,0,0,4456,4459,3,838,419,0,4457,4459,3,784, - 392,0,4458,4453,1,0,0,0,4458,4456,1,0,0,0,4458,4457,1,0,0,0,4459, - 373,1,0,0,0,4460,4465,3,376,188,0,4461,4462,5,6,0,0,4462,4464,3, - 376,188,0,4463,4461,1,0,0,0,4464,4467,1,0,0,0,4465,4463,1,0,0,0, - 4465,4466,1,0,0,0,4466,375,1,0,0,0,4467,4465,1,0,0,0,4468,4469,3, - 812,406,0,4469,4470,3,362,181,0,4470,4474,1,0,0,0,4471,4474,3,838, - 419,0,4472,4474,3,784,392,0,4473,4468,1,0,0,0,4473,4471,1,0,0,0, - 4473,4472,1,0,0,0,4474,377,1,0,0,0,4475,4477,3,380,190,0,4476,4478, - 3,826,413,0,4477,4476,1,0,0,0,4477,4478,1,0,0,0,4478,4484,1,0,0, - 0,4479,4481,3,826,413,0,4480,4482,3,380,190,0,4481,4480,1,0,0,0, - 4481,4482,1,0,0,0,4482,4484,1,0,0,0,4483,4475,1,0,0,0,4483,4479, - 1,0,0,0,4483,4484,1,0,0,0,4484,4485,1,0,0,0,4485,4486,3,382,191, - 0,4486,379,1,0,0,0,4487,4489,5,68,0,0,4488,4490,5,453,0,0,4489,4488, - 1,0,0,0,4489,4490,1,0,0,0,4490,4495,1,0,0,0,4491,4495,5,453,0,0, - 4492,4495,5,400,0,0,4493,4495,5,101,0,0,4494,4487,1,0,0,0,4494,4491, - 1,0,0,0,4494,4492,1,0,0,0,4494,4493,1,0,0,0,4495,381,1,0,0,0,4496, - 4506,3,648,324,0,4497,4499,5,415,0,0,4498,4497,1,0,0,0,4498,4499, - 1,0,0,0,4499,4500,1,0,0,0,4500,4501,3,826,413,0,4501,4502,3,312, - 156,0,4502,4503,5,27,0,0,4503,4504,5,360,0,0,4504,4506,1,0,0,0,4505, - 4496,1,0,0,0,4505,4498,1,0,0,0,4506,383,1,0,0,0,4507,4510,3,378, - 189,0,4508,4509,7,58,0,0,4509,4511,3,670,335,0,4510,4508,1,0,0,0, - 4510,4511,1,0,0,0,4511,385,1,0,0,0,4512,4522,5,2,0,0,4513,4523,5, - 9,0,0,4514,4516,3,364,182,0,4515,4514,1,0,0,0,4515,4516,1,0,0,0, - 4516,4520,1,0,0,0,4517,4518,5,83,0,0,4518,4519,5,147,0,0,4519,4521, - 3,364,182,0,4520,4517,1,0,0,0,4520,4521,1,0,0,0,4521,4523,1,0,0, - 0,4522,4513,1,0,0,0,4522,4515,1,0,0,0,4523,4524,1,0,0,0,4524,4525, - 5,3,0,0,4525,387,1,0,0,0,4526,4527,3,812,406,0,4527,4528,3,386,193, - 0,4528,389,1,0,0,0,4529,4530,5,316,0,0,4530,4533,5,78,0,0,4531,4533, - 5,149,0,0,4532,4529,1,0,0,0,4532,4531,1,0,0,0,4533,4534,1,0,0,0, - 4534,4535,5,80,0,0,4535,4536,5,78,0,0,4536,4559,5,458,0,0,4537,4559, - 5,346,0,0,4538,4559,5,222,0,0,4539,4559,5,338,0,0,4540,4559,5,377, - 0,0,4541,4543,5,205,0,0,4542,4541,1,0,0,0,4542,4543,1,0,0,0,4543, - 4544,1,0,0,0,4544,4545,5,327,0,0,4545,4559,7,59,0,0,4546,4559,5, - 250,0,0,4547,4548,5,77,0,0,4548,4559,5,250,0,0,4549,4550,7,60,0, - 0,4550,4559,3,196,98,0,4551,4552,5,459,0,0,4552,4559,3,310,155,0, - 4553,4554,5,333,0,0,4554,4559,3,42,21,0,4555,4559,3,60,30,0,4556, - 4557,5,460,0,0,4557,4559,3,824,412,0,4558,4532,1,0,0,0,4558,4537, - 1,0,0,0,4558,4538,1,0,0,0,4558,4539,1,0,0,0,4558,4540,1,0,0,0,4558, - 4542,1,0,0,0,4558,4546,1,0,0,0,4558,4547,1,0,0,0,4558,4549,1,0,0, - 0,4558,4551,1,0,0,0,4558,4553,1,0,0,0,4558,4555,1,0,0,0,4558,4556, - 1,0,0,0,4559,391,1,0,0,0,4560,4561,5,36,0,0,4561,4562,3,814,407, - 0,4562,4563,3,456,228,0,4563,4596,1,0,0,0,4564,4565,5,247,0,0,4565, - 4596,3,58,29,0,4566,4567,5,443,0,0,4567,4568,5,62,0,0,4568,4569, - 5,360,0,0,4569,4576,3,648,324,0,4570,4571,5,6,0,0,4571,4572,5,62, - 0,0,4572,4573,5,360,0,0,4573,4575,3,648,324,0,4574,4570,1,0,0,0, - 4575,4578,1,0,0,0,4576,4574,1,0,0,0,4576,4577,1,0,0,0,4577,4596, - 1,0,0,0,4578,4576,1,0,0,0,4579,4596,5,104,0,0,4580,4581,5,333,0, - 0,4581,4588,3,824,412,0,4582,4583,5,94,0,0,4583,4589,3,824,412,0, - 4584,4585,5,10,0,0,4585,4589,3,824,412,0,4586,4587,5,64,0,0,4587, - 4589,5,434,0,0,4588,4582,1,0,0,0,4588,4584,1,0,0,0,4588,4586,1,0, - 0,0,4589,4596,1,0,0,0,4590,4591,5,36,0,0,4591,4596,3,824,412,0,4592, - 4596,3,4,2,0,4593,4596,3,390,195,0,4594,4596,3,824,412,0,4595,4560, - 1,0,0,0,4595,4564,1,0,0,0,4595,4566,1,0,0,0,4595,4579,1,0,0,0,4595, - 4580,1,0,0,0,4595,4590,1,0,0,0,4595,4592,1,0,0,0,4595,4593,1,0,0, - 0,4595,4594,1,0,0,0,4596,393,1,0,0,0,4597,4598,5,105,0,0,4598,4599, - 3,278,139,0,4599,395,1,0,0,0,4600,4601,3,804,402,0,4601,4602,3,382, - 191,0,4602,397,1,0,0,0,4603,4610,5,138,0,0,4604,4605,5,211,0,0,4605, - 4611,3,376,188,0,4606,4607,5,296,0,0,4607,4611,3,372,186,0,4608, - 4609,5,442,0,0,4609,4611,3,368,184,0,4610,4604,1,0,0,0,4610,4606, - 1,0,0,0,4610,4608,1,0,0,0,4611,4613,1,0,0,0,4612,4614,3,390,195, - 0,4613,4612,1,0,0,0,4614,4615,1,0,0,0,4615,4613,1,0,0,0,4615,4616, - 1,0,0,0,4616,4618,1,0,0,0,4617,4619,5,315,0,0,4618,4617,1,0,0,0, - 4618,4619,1,0,0,0,4619,399,1,0,0,0,4620,4636,5,191,0,0,4621,4623, - 5,211,0,0,4622,4624,3,416,208,0,4623,4622,1,0,0,0,4623,4624,1,0, - 0,0,4624,4625,1,0,0,0,4625,4637,3,374,187,0,4626,4628,5,296,0,0, - 4627,4629,3,416,208,0,4628,4627,1,0,0,0,4628,4629,1,0,0,0,4629,4630, - 1,0,0,0,4630,4637,3,370,185,0,4631,4633,5,442,0,0,4632,4634,3,416, - 208,0,4633,4632,1,0,0,0,4633,4634,1,0,0,0,4634,4635,1,0,0,0,4635, - 4637,3,366,183,0,4636,4621,1,0,0,0,4636,4626,1,0,0,0,4636,4631,1, - 0,0,0,4637,4639,1,0,0,0,4638,4640,3,88,44,0,4639,4638,1,0,0,0,4639, - 4640,1,0,0,0,4640,401,1,0,0,0,4641,4642,5,191,0,0,4642,4644,5,136, - 0,0,4643,4645,3,416,208,0,4644,4643,1,0,0,0,4644,4645,1,0,0,0,4645, - 4646,1,0,0,0,4646,4651,3,388,194,0,4647,4648,5,6,0,0,4648,4650,3, - 388,194,0,4649,4647,1,0,0,0,4650,4653,1,0,0,0,4651,4649,1,0,0,0, - 4651,4652,1,0,0,0,4652,4655,1,0,0,0,4653,4651,1,0,0,0,4654,4656, - 3,88,44,0,4655,4654,1,0,0,0,4655,4656,1,0,0,0,4656,403,1,0,0,0,4657, - 4658,5,191,0,0,4658,4660,5,278,0,0,4659,4661,3,416,208,0,4660,4659, - 1,0,0,0,4660,4661,1,0,0,0,4661,4662,1,0,0,0,4662,4667,3,410,205, - 0,4663,4664,5,6,0,0,4664,4666,3,410,205,0,4665,4663,1,0,0,0,4666, - 4669,1,0,0,0,4667,4665,1,0,0,0,4667,4668,1,0,0,0,4668,4671,1,0,0, - 0,4669,4667,1,0,0,0,4670,4672,3,88,44,0,4671,4670,1,0,0,0,4671,4672, - 1,0,0,0,4672,405,1,0,0,0,4673,4686,5,2,0,0,4674,4677,3,648,324,0, - 4675,4676,5,6,0,0,4676,4678,3,648,324,0,4677,4675,1,0,0,0,4677,4678, - 1,0,0,0,4678,4687,1,0,0,0,4679,4680,5,407,0,0,4680,4681,5,6,0,0, - 4681,4687,3,648,324,0,4682,4683,3,648,324,0,4683,4684,5,6,0,0,4684, - 4685,5,407,0,0,4685,4687,1,0,0,0,4686,4674,1,0,0,0,4686,4679,1,0, - 0,0,4686,4682,1,0,0,0,4687,4688,1,0,0,0,4688,4689,5,3,0,0,4689,407, - 1,0,0,0,4690,4691,3,824,412,0,4691,4692,5,11,0,0,4692,4694,1,0,0, - 0,4693,4690,1,0,0,0,4694,4697,1,0,0,0,4695,4693,1,0,0,0,4695,4696, - 1,0,0,0,4696,4698,1,0,0,0,4697,4695,1,0,0,0,4698,4699,3,718,359, - 0,4699,409,1,0,0,0,4700,4701,3,408,204,0,4701,4702,3,406,203,0,4702, - 411,1,0,0,0,4703,4707,5,57,0,0,4704,4708,3,814,407,0,4705,4706,5, - 247,0,0,4706,4708,3,58,29,0,4707,4704,1,0,0,0,4707,4705,1,0,0,0, - 4708,4709,1,0,0,0,4709,4707,1,0,0,0,4709,4710,1,0,0,0,4710,413,1, - 0,0,0,4711,4712,5,46,0,0,4712,4713,5,41,0,0,4713,4714,5,2,0,0,4714, - 4715,3,648,324,0,4715,4716,5,36,0,0,4716,4717,3,648,324,0,4717,4734, - 5,3,0,0,4718,4719,5,379,0,0,4719,4722,5,211,0,0,4720,4721,5,36,0, - 0,4721,4723,7,61,0,0,4722,4720,1,0,0,0,4722,4723,1,0,0,0,4723,4735, - 1,0,0,0,4724,4728,5,105,0,0,4725,4726,5,211,0,0,4726,4729,3,376, - 188,0,4727,4729,5,400,0,0,4728,4725,1,0,0,0,4728,4727,1,0,0,0,4729, - 4732,1,0,0,0,4730,4731,5,36,0,0,4731,4733,7,61,0,0,4732,4730,1,0, - 0,0,4732,4733,1,0,0,0,4733,4735,1,0,0,0,4734,4718,1,0,0,0,4734,4724, - 1,0,0,0,4735,415,1,0,0,0,4736,4737,5,220,0,0,4737,4738,5,396,0,0, - 4738,417,1,0,0,0,4739,4741,5,46,0,0,4740,4742,3,360,180,0,4741,4740, - 1,0,0,0,4741,4742,1,0,0,0,4742,4743,1,0,0,0,4743,4744,5,443,0,0, - 4744,4745,5,62,0,0,4745,4746,3,648,324,0,4746,4747,5,247,0,0,4747, - 4748,3,824,412,0,4748,4763,5,2,0,0,4749,4750,5,64,0,0,4750,4754, - 3,420,210,0,4751,4752,5,6,0,0,4752,4753,5,94,0,0,4753,4755,3,420, - 210,0,4754,4751,1,0,0,0,4754,4755,1,0,0,0,4755,4764,1,0,0,0,4756, - 4757,5,94,0,0,4757,4761,3,420,210,0,4758,4759,5,6,0,0,4759,4760, - 5,64,0,0,4760,4762,3,420,210,0,4761,4758,1,0,0,0,4761,4762,1,0,0, - 0,4762,4764,1,0,0,0,4763,4749,1,0,0,0,4763,4756,1,0,0,0,4764,4765, - 1,0,0,0,4765,4766,5,3,0,0,4766,419,1,0,0,0,4767,4768,5,461,0,0,4768, - 4769,5,105,0,0,4769,4770,5,211,0,0,4770,4771,3,376,188,0,4771,421, - 1,0,0,0,4772,4783,5,306,0,0,4773,4774,5,2,0,0,4774,4779,5,128,0, - 0,4775,4776,5,6,0,0,4776,4778,5,128,0,0,4777,4775,1,0,0,0,4778,4781, - 1,0,0,0,4779,4777,1,0,0,0,4779,4780,1,0,0,0,4780,4782,1,0,0,0,4781, - 4779,1,0,0,0,4782,4784,5,3,0,0,4783,4773,1,0,0,0,4783,4784,1,0,0, - 0,4784,4810,1,0,0,0,4785,4787,5,226,0,0,4786,4788,5,109,0,0,4787, - 4786,1,0,0,0,4787,4788,1,0,0,0,4788,4789,1,0,0,0,4789,4811,3,784, - 392,0,4790,4792,5,92,0,0,4791,4793,5,109,0,0,4792,4791,1,0,0,0,4792, - 4793,1,0,0,0,4793,4794,1,0,0,0,4794,4811,3,778,389,0,4795,4797,5, - 323,0,0,4796,4798,5,109,0,0,4797,4796,1,0,0,0,4797,4798,1,0,0,0, - 4798,4799,1,0,0,0,4799,4811,3,794,397,0,4800,4802,5,349,0,0,4801, - 4803,5,109,0,0,4802,4801,1,0,0,0,4802,4803,1,0,0,0,4803,4804,1,0, - 0,0,4804,4811,3,824,412,0,4805,4807,5,175,0,0,4806,4808,5,109,0, - 0,4807,4806,1,0,0,0,4807,4808,1,0,0,0,4808,4809,1,0,0,0,4809,4811, - 3,792,396,0,4810,4785,1,0,0,0,4810,4790,1,0,0,0,4810,4795,1,0,0, - 0,4810,4800,1,0,0,0,4810,4805,1,0,0,0,4811,423,1,0,0,0,4812,4813, - 5,138,0,0,4813,4814,3,170,85,0,4814,4815,7,16,0,0,4815,4816,3,92, - 46,0,4816,425,1,0,0,0,4817,4822,5,138,0,0,4818,4819,5,136,0,0,4819, - 4823,3,388,194,0,4820,4821,5,442,0,0,4821,4823,3,368,184,0,4822, - 4818,1,0,0,0,4822,4820,1,0,0,0,4823,4824,1,0,0,0,4824,4825,5,309, - 0,0,4825,4826,5,94,0,0,4826,4827,3,824,412,0,4827,5025,1,0,0,0,4828, - 4829,5,138,0,0,4829,4830,5,175,0,0,4830,4831,3,792,396,0,4831,4832, - 5,309,0,0,4832,4833,5,94,0,0,4833,4834,3,790,395,0,4834,5025,1,0, - 0,0,4835,4836,5,138,0,0,4836,4837,7,62,0,0,4837,4838,3,310,155,0, - 4838,4839,5,309,0,0,4839,4840,5,94,0,0,4840,4841,3,824,412,0,4841, - 5025,1,0,0,0,4842,4843,5,138,0,0,4843,4844,5,211,0,0,4844,4845,3, - 376,188,0,4845,4846,5,309,0,0,4846,4847,5,94,0,0,4847,4848,3,810, - 405,0,4848,5025,1,0,0,0,4849,4850,5,138,0,0,4850,4851,5,278,0,0, - 4851,4852,7,32,0,0,4852,4853,3,310,155,0,4853,4854,3,164,82,0,4854, - 4855,5,309,0,0,4855,4856,5,94,0,0,4856,4857,3,824,412,0,4857,5025, - 1,0,0,0,4858,4859,5,138,0,0,4859,4860,5,296,0,0,4860,4861,3,372, - 186,0,4861,4862,5,309,0,0,4862,4863,5,94,0,0,4863,4864,3,802,401, - 0,4864,5025,1,0,0,0,4865,4866,5,138,0,0,4866,4867,5,323,0,0,4867, - 4868,3,794,397,0,4868,4869,5,309,0,0,4869,4870,5,94,0,0,4870,4871, - 3,32,16,0,4871,5025,1,0,0,0,4872,4873,5,138,0,0,4873,4875,7,63,0, - 0,4874,4876,3,416,208,0,4875,4874,1,0,0,0,4875,4876,1,0,0,0,4876, - 4877,1,0,0,0,4877,4878,3,784,392,0,4878,4879,5,309,0,0,4879,4880, - 5,94,0,0,4880,4881,3,824,412,0,4881,5025,1,0,0,0,4882,4884,5,138, - 0,0,4883,4885,5,259,0,0,4884,4883,1,0,0,0,4884,4885,1,0,0,0,4885, - 4886,1,0,0,0,4886,4888,5,376,0,0,4887,4889,3,416,208,0,4888,4887, - 1,0,0,0,4888,4889,1,0,0,0,4889,4890,1,0,0,0,4890,4891,3,782,391, - 0,4891,4892,5,309,0,0,4892,4893,5,94,0,0,4893,4894,3,780,390,0,4894, - 5025,1,0,0,0,4895,4897,5,138,0,0,4896,4898,5,63,0,0,4897,4896,1, - 0,0,0,4897,4898,1,0,0,0,4898,4899,1,0,0,0,4899,4901,5,92,0,0,4900, - 4902,3,416,208,0,4901,4900,1,0,0,0,4901,4902,1,0,0,0,4902,4903,1, - 0,0,0,4903,4904,3,620,310,0,4904,4905,5,309,0,0,4905,4906,5,94,0, - 0,4906,4907,3,776,388,0,4907,5025,1,0,0,0,4908,4933,5,138,0,0,4909, - 4911,5,63,0,0,4910,4909,1,0,0,0,4910,4911,1,0,0,0,4911,4912,1,0, - 0,0,4912,4914,5,92,0,0,4913,4915,3,416,208,0,4914,4913,1,0,0,0,4914, - 4915,1,0,0,0,4915,4916,1,0,0,0,4916,4917,3,620,310,0,4917,4919,5, - 309,0,0,4918,4920,5,44,0,0,4919,4918,1,0,0,0,4919,4920,1,0,0,0,4920, - 4934,1,0,0,0,4921,4923,5,259,0,0,4922,4921,1,0,0,0,4922,4923,1,0, - 0,0,4923,4924,1,0,0,0,4924,4926,5,376,0,0,4925,4927,3,416,208,0, - 4926,4925,1,0,0,0,4926,4927,1,0,0,0,4927,4928,1,0,0,0,4928,4929, - 3,782,391,0,4929,4931,5,309,0,0,4930,4932,5,44,0,0,4931,4930,1,0, - 0,0,4931,4932,1,0,0,0,4932,4934,1,0,0,0,4933,4910,1,0,0,0,4933,4922, - 1,0,0,0,4934,4935,1,0,0,0,4935,4936,3,804,402,0,4936,4937,5,94,0, - 0,4937,4938,3,808,404,0,4938,5025,1,0,0,0,4939,4947,5,138,0,0,4940, - 4942,5,92,0,0,4941,4943,3,416,208,0,4942,4941,1,0,0,0,4942,4943, - 1,0,0,0,4943,4944,1,0,0,0,4944,4948,3,620,310,0,4945,4946,5,189, - 0,0,4946,4948,3,310,155,0,4947,4940,1,0,0,0,4947,4945,1,0,0,0,4948, - 4949,1,0,0,0,4949,4950,5,309,0,0,4950,4951,5,45,0,0,4951,4952,3, - 824,412,0,4952,4953,5,94,0,0,4953,4954,3,824,412,0,4954,5025,1,0, - 0,0,4955,4962,5,138,0,0,4956,4958,5,445,0,0,4957,4959,3,416,208, - 0,4958,4957,1,0,0,0,4958,4959,1,0,0,0,4959,4963,1,0,0,0,4960,4963, - 5,321,0,0,4961,4963,5,357,0,0,4962,4956,1,0,0,0,4962,4960,1,0,0, - 0,4962,4961,1,0,0,0,4963,4964,1,0,0,0,4964,4965,3,824,412,0,4965, - 4966,5,80,0,0,4966,4967,3,784,392,0,4967,4968,5,309,0,0,4968,4969, - 5,94,0,0,4969,4970,3,824,412,0,4970,5025,1,0,0,0,4971,4984,5,138, - 0,0,4972,4973,5,63,0,0,4973,4974,5,174,0,0,4974,4985,5,381,0,0,4975, - 4977,5,295,0,0,4976,4975,1,0,0,0,4976,4977,1,0,0,0,4977,4978,1,0, - 0,0,4978,4985,5,247,0,0,4979,4985,5,452,0,0,4980,4985,5,331,0,0, - 4981,4985,5,451,0,0,4982,4983,5,198,0,0,4983,4985,5,357,0,0,4984, - 4972,1,0,0,0,4984,4976,1,0,0,0,4984,4979,1,0,0,0,4984,4980,1,0,0, - 0,4984,4981,1,0,0,0,4984,4982,1,0,0,0,4985,4986,1,0,0,0,4986,4987, - 3,824,412,0,4987,4988,5,309,0,0,4988,4989,5,94,0,0,4989,4990,3,824, - 412,0,4990,5025,1,0,0,0,4991,4992,5,138,0,0,4992,4993,7,46,0,0,4993, - 4994,3,820,410,0,4994,4995,5,309,0,0,4995,4996,5,94,0,0,4996,4997, - 3,820,410,0,4997,5025,1,0,0,0,4998,4999,5,138,0,0,4999,5000,3,170, - 85,0,5000,5001,5,309,0,0,5001,5002,5,94,0,0,5002,5003,3,774,387, - 0,5003,5025,1,0,0,0,5004,5005,5,138,0,0,5005,5006,5,355,0,0,5006, - 5007,5,325,0,0,5007,5008,7,42,0,0,5008,5009,3,310,155,0,5009,5010, - 5,309,0,0,5010,5011,5,94,0,0,5011,5012,3,824,412,0,5012,5025,1,0, - 0,0,5013,5014,5,138,0,0,5014,5015,5,360,0,0,5015,5016,3,310,155, - 0,5016,5017,5,309,0,0,5017,5018,5,143,0,0,5018,5019,3,824,412,0, - 5019,5020,5,94,0,0,5020,5022,3,824,412,0,5021,5023,3,88,44,0,5022, - 5021,1,0,0,0,5022,5023,1,0,0,0,5023,5025,1,0,0,0,5024,4817,1,0,0, - 0,5024,4828,1,0,0,0,5024,4835,1,0,0,0,5024,4842,1,0,0,0,5024,4849, - 1,0,0,0,5024,4858,1,0,0,0,5024,4865,1,0,0,0,5024,4872,1,0,0,0,5024, - 4882,1,0,0,0,5024,4895,1,0,0,0,5024,4908,1,0,0,0,5024,4939,1,0,0, - 0,5024,4955,1,0,0,0,5024,4971,1,0,0,0,5024,4991,1,0,0,0,5024,4998, - 1,0,0,0,5024,5004,1,0,0,0,5024,5013,1,0,0,0,5025,427,1,0,0,0,5026, - 5043,5,138,0,0,5027,5028,5,211,0,0,5028,5044,3,376,188,0,5029,5030, - 5,296,0,0,5030,5044,3,372,186,0,5031,5032,5,442,0,0,5032,5044,3, - 368,184,0,5033,5034,5,357,0,0,5034,5035,3,824,412,0,5035,5036,5, - 80,0,0,5036,5037,3,784,392,0,5037,5044,1,0,0,0,5038,5039,5,259,0, - 0,5039,5040,5,376,0,0,5040,5044,3,782,391,0,5041,5042,5,226,0,0, - 5042,5044,3,784,392,0,5043,5027,1,0,0,0,5043,5029,1,0,0,0,5043,5031, - 1,0,0,0,5043,5033,1,0,0,0,5043,5038,1,0,0,0,5043,5041,1,0,0,0,5044, - 5046,1,0,0,0,5045,5047,5,269,0,0,5046,5045,1,0,0,0,5046,5047,1,0, - 0,0,5047,5048,1,0,0,0,5048,5049,5,462,0,0,5049,5050,5,80,0,0,5050, - 5051,5,204,0,0,5051,5052,3,824,412,0,5052,429,1,0,0,0,5053,5092, - 5,138,0,0,5054,5055,5,136,0,0,5055,5093,3,388,194,0,5056,5057,5, - 204,0,0,5057,5093,3,824,412,0,5058,5059,5,211,0,0,5059,5093,3,376, - 188,0,5060,5061,5,278,0,0,5061,5093,3,410,205,0,5062,5063,5,278, - 0,0,5063,5064,7,32,0,0,5064,5065,3,310,155,0,5065,5066,3,164,82, - 0,5066,5093,1,0,0,0,5067,5068,5,296,0,0,5068,5093,3,372,186,0,5069, - 5070,5,442,0,0,5070,5093,3,368,184,0,5071,5073,5,328,0,0,5072,5074, - 3,416,208,0,5073,5072,1,0,0,0,5073,5074,1,0,0,0,5074,5075,1,0,0, - 0,5075,5093,3,784,392,0,5076,5078,5,259,0,0,5077,5076,1,0,0,0,5077, - 5078,1,0,0,0,5078,5079,1,0,0,0,5079,5081,5,376,0,0,5080,5082,3,416, - 208,0,5081,5080,1,0,0,0,5081,5082,1,0,0,0,5082,5083,1,0,0,0,5083, - 5093,3,782,391,0,5084,5086,5,63,0,0,5085,5084,1,0,0,0,5085,5086, - 1,0,0,0,5086,5087,1,0,0,0,5087,5089,5,92,0,0,5088,5090,3,416,208, - 0,5089,5088,1,0,0,0,5089,5090,1,0,0,0,5090,5091,1,0,0,0,5091,5093, - 3,620,310,0,5092,5054,1,0,0,0,5092,5056,1,0,0,0,5092,5058,1,0,0, - 0,5092,5060,1,0,0,0,5092,5062,1,0,0,0,5092,5067,1,0,0,0,5092,5069, - 1,0,0,0,5092,5071,1,0,0,0,5092,5077,1,0,0,0,5092,5085,1,0,0,0,5093, - 5094,1,0,0,0,5094,5095,5,333,0,0,5095,5096,5,323,0,0,5096,5097,3, - 794,397,0,5097,5115,1,0,0,0,5098,5107,5,138,0,0,5099,5100,5,355, - 0,0,5100,5101,5,325,0,0,5101,5108,7,42,0,0,5102,5108,5,108,0,0,5103, - 5108,5,168,0,0,5104,5108,5,189,0,0,5105,5108,5,342,0,0,5106,5108, - 5,360,0,0,5107,5099,1,0,0,0,5107,5102,1,0,0,0,5107,5103,1,0,0,0, - 5107,5104,1,0,0,0,5107,5105,1,0,0,0,5107,5106,1,0,0,0,5108,5109, - 1,0,0,0,5109,5110,3,310,155,0,5110,5111,5,333,0,0,5111,5112,5,323, - 0,0,5112,5113,3,794,397,0,5113,5115,1,0,0,0,5114,5053,1,0,0,0,5114, - 5098,1,0,0,0,5115,431,1,0,0,0,5116,5117,5,138,0,0,5117,5118,5,278, - 0,0,5118,5119,3,410,205,0,5119,5120,5,333,0,0,5120,5121,3,434,217, - 0,5121,433,1,0,0,0,5122,5123,5,2,0,0,5123,5128,3,436,218,0,5124, - 5125,5,6,0,0,5125,5127,3,436,218,0,5126,5124,1,0,0,0,5127,5130,1, - 0,0,0,5128,5126,1,0,0,0,5128,5129,1,0,0,0,5129,5131,1,0,0,0,5130, - 5128,1,0,0,0,5131,5132,5,3,0,0,5132,435,1,0,0,0,5133,5134,3,830, - 415,0,5134,5141,5,10,0,0,5135,5142,5,407,0,0,5136,5142,3,382,191, - 0,5137,5142,3,840,420,0,5138,5142,3,724,362,0,5139,5142,3,196,98, - 0,5140,5142,3,814,407,0,5141,5135,1,0,0,0,5141,5136,1,0,0,0,5141, - 5137,1,0,0,0,5141,5138,1,0,0,0,5141,5139,1,0,0,0,5141,5140,1,0,0, - 0,5142,437,1,0,0,0,5143,5144,5,138,0,0,5144,5145,5,360,0,0,5145, - 5146,3,310,155,0,5146,5147,5,333,0,0,5147,5148,3,434,217,0,5148, - 439,1,0,0,0,5149,5150,5,138,0,0,5150,5151,5,278,0,0,5151,5152,7, - 32,0,0,5152,5153,3,310,155,0,5153,5154,3,164,82,0,5154,5155,5,282, - 0,0,5155,5156,5,94,0,0,5156,5157,3,820,410,0,5157,5224,1,0,0,0,5158, - 5185,5,138,0,0,5159,5160,5,136,0,0,5160,5186,3,388,194,0,5161,5162, - 5,175,0,0,5162,5186,3,792,396,0,5163,5164,5,211,0,0,5164,5186,3, - 376,188,0,5165,5167,5,295,0,0,5166,5165,1,0,0,0,5166,5167,1,0,0, - 0,5167,5168,1,0,0,0,5168,5169,5,247,0,0,5169,5186,3,824,412,0,5170, - 5171,5,248,0,0,5171,5172,5,274,0,0,5172,5186,3,196,98,0,5173,5174, - 5,248,0,0,5174,5175,5,274,0,0,5175,5186,3,196,98,0,5176,5177,5,278, - 0,0,5177,5186,3,410,205,0,5178,5179,5,296,0,0,5179,5186,3,372,186, - 0,5180,5181,5,442,0,0,5181,5186,3,368,184,0,5182,5183,5,323,0,0, - 5183,5186,3,794,397,0,5184,5186,3,170,85,0,5185,5159,1,0,0,0,5185, - 5161,1,0,0,0,5185,5163,1,0,0,0,5185,5166,1,0,0,0,5185,5170,1,0,0, - 0,5185,5173,1,0,0,0,5185,5176,1,0,0,0,5185,5178,1,0,0,0,5185,5180, - 1,0,0,0,5185,5182,1,0,0,0,5185,5184,1,0,0,0,5186,5187,1,0,0,0,5187, - 5188,5,282,0,0,5188,5189,5,94,0,0,5189,5190,3,820,410,0,5190,5224, - 1,0,0,0,5191,5200,5,138,0,0,5192,5193,5,355,0,0,5193,5194,5,325, - 0,0,5194,5201,7,64,0,0,5195,5201,5,108,0,0,5196,5201,5,168,0,0,5197, - 5201,5,189,0,0,5198,5201,5,360,0,0,5199,5201,5,342,0,0,5200,5192, - 1,0,0,0,5200,5195,1,0,0,0,5200,5196,1,0,0,0,5200,5197,1,0,0,0,5200, - 5198,1,0,0,0,5200,5199,1,0,0,0,5201,5202,1,0,0,0,5202,5203,3,310, - 155,0,5203,5204,5,282,0,0,5204,5205,5,94,0,0,5205,5206,3,820,410, - 0,5206,5224,1,0,0,0,5207,5216,5,138,0,0,5208,5217,5,331,0,0,5209, - 5210,5,63,0,0,5210,5211,5,174,0,0,5211,5217,5,381,0,0,5212,5213, - 5,198,0,0,5213,5217,5,357,0,0,5214,5217,5,452,0,0,5215,5217,5,451, - 0,0,5216,5208,1,0,0,0,5216,5209,1,0,0,0,5216,5212,1,0,0,0,5216,5214, - 1,0,0,0,5216,5215,1,0,0,0,5217,5218,1,0,0,0,5218,5219,3,824,412, - 0,5219,5220,5,282,0,0,5220,5221,5,94,0,0,5221,5222,3,820,410,0,5222, - 5224,1,0,0,0,5223,5149,1,0,0,0,5223,5158,1,0,0,0,5223,5191,1,0,0, - 0,5223,5207,1,0,0,0,5224,441,1,0,0,0,5225,5226,5,46,0,0,5226,5227, - 5,452,0,0,5227,5234,3,824,412,0,5228,5229,5,62,0,0,5229,5230,5,92, - 0,0,5230,5235,3,624,312,0,5231,5232,5,62,0,0,5232,5233,5,30,0,0, - 5233,5235,5,350,0,0,5234,5228,1,0,0,0,5234,5231,1,0,0,0,5234,5235, - 1,0,0,0,5235,5237,1,0,0,0,5236,5238,3,394,197,0,5237,5236,1,0,0, - 0,5237,5238,1,0,0,0,5238,443,1,0,0,0,5239,5240,5,138,0,0,5240,5241, - 5,452,0,0,5241,5259,3,824,412,0,5242,5243,5,282,0,0,5243,5244,5, - 94,0,0,5244,5260,3,820,410,0,5245,5246,5,333,0,0,5246,5260,3,278, - 139,0,5247,5248,5,309,0,0,5248,5249,5,94,0,0,5249,5260,3,824,412, - 0,5250,5251,7,35,0,0,5251,5256,3,622,311,0,5252,5253,5,6,0,0,5253, - 5255,3,622,311,0,5254,5252,1,0,0,0,5255,5258,1,0,0,0,5256,5254,1, - 0,0,0,5256,5257,1,0,0,0,5257,5260,1,0,0,0,5258,5256,1,0,0,0,5259, - 5242,1,0,0,0,5259,5245,1,0,0,0,5259,5247,1,0,0,0,5259,5250,1,0,0, - 0,5260,445,1,0,0,0,5261,5262,5,46,0,0,5262,5263,5,451,0,0,5263,5264, - 3,824,412,0,5264,5265,5,164,0,0,5265,5266,3,814,407,0,5266,5267, - 5,452,0,0,5267,5272,3,830,415,0,5268,5269,5,6,0,0,5269,5271,3,830, - 415,0,5270,5268,1,0,0,0,5271,5274,1,0,0,0,5272,5270,1,0,0,0,5272, - 5273,1,0,0,0,5273,5276,1,0,0,0,5274,5272,1,0,0,0,5275,5277,3,394, - 197,0,5276,5275,1,0,0,0,5276,5277,1,0,0,0,5277,447,1,0,0,0,5278, - 5279,5,138,0,0,5279,5280,5,451,0,0,5280,5281,3,824,412,0,5281,5282, - 5,333,0,0,5282,5283,3,278,139,0,5283,5335,1,0,0,0,5284,5285,5,138, - 0,0,5285,5286,5,451,0,0,5286,5287,3,824,412,0,5287,5288,5,164,0, - 0,5288,5289,3,814,407,0,5289,5335,1,0,0,0,5290,5291,5,138,0,0,5291, - 5292,5,451,0,0,5292,5293,3,824,412,0,5293,5294,5,305,0,0,5294,5296, - 5,452,0,0,5295,5297,3,394,197,0,5296,5295,1,0,0,0,5296,5297,1,0, - 0,0,5297,5335,1,0,0,0,5298,5299,5,138,0,0,5299,5300,5,451,0,0,5300, - 5301,3,824,412,0,5301,5302,7,35,0,0,5302,5303,5,452,0,0,5303,5308, - 3,830,415,0,5304,5305,5,6,0,0,5305,5307,3,830,415,0,5306,5304,1, - 0,0,0,5307,5310,1,0,0,0,5308,5306,1,0,0,0,5308,5309,1,0,0,0,5309, - 5312,1,0,0,0,5310,5308,1,0,0,0,5311,5313,3,394,197,0,5312,5311,1, - 0,0,0,5312,5313,1,0,0,0,5313,5335,1,0,0,0,5314,5315,5,138,0,0,5315, - 5316,5,451,0,0,5316,5317,3,824,412,0,5317,5318,7,65,0,0,5318,5335, - 1,0,0,0,5319,5320,5,138,0,0,5320,5321,5,451,0,0,5321,5322,3,824, - 412,0,5322,5323,5,465,0,0,5323,5324,5,2,0,0,5324,5325,3,284,142, - 0,5325,5326,5,3,0,0,5326,5335,1,0,0,0,5327,5328,5,138,0,0,5328,5329, - 5,451,0,0,5329,5330,3,824,412,0,5330,5331,5,282,0,0,5331,5332,5, - 94,0,0,5332,5333,3,820,410,0,5333,5335,1,0,0,0,5334,5278,1,0,0,0, - 5334,5284,1,0,0,0,5334,5290,1,0,0,0,5334,5298,1,0,0,0,5334,5314, - 1,0,0,0,5334,5319,1,0,0,0,5334,5327,1,0,0,0,5335,449,1,0,0,0,5336, - 5338,5,46,0,0,5337,5339,3,360,180,0,5338,5337,1,0,0,0,5338,5339, - 1,0,0,0,5339,5340,1,0,0,0,5340,5341,5,321,0,0,5341,5342,3,824,412, - 0,5342,5343,5,36,0,0,5343,5344,5,80,0,0,5344,5345,7,66,0,0,5345, - 5346,5,94,0,0,5346,5348,3,784,392,0,5347,5349,3,634,317,0,5348,5347, - 1,0,0,0,5348,5349,1,0,0,0,5349,5350,1,0,0,0,5350,5352,5,57,0,0,5351, - 5353,7,67,0,0,5352,5351,1,0,0,0,5352,5353,1,0,0,0,5353,5370,1,0, - 0,0,5354,5371,5,270,0,0,5355,5371,3,452,226,0,5356,5358,5,2,0,0, - 5357,5359,3,452,226,0,5358,5357,1,0,0,0,5358,5359,1,0,0,0,5359,5366, - 1,0,0,0,5360,5362,5,7,0,0,5361,5363,3,452,226,0,5362,5361,1,0,0, - 0,5362,5363,1,0,0,0,5363,5365,1,0,0,0,5364,5360,1,0,0,0,5365,5368, - 1,0,0,0,5366,5364,1,0,0,0,5366,5367,1,0,0,0,5367,5369,1,0,0,0,5368, - 5366,1,0,0,0,5369,5371,5,3,0,0,5370,5354,1,0,0,0,5370,5355,1,0,0, - 0,5370,5356,1,0,0,0,5371,451,1,0,0,0,5372,5378,3,554,277,0,5373, - 5378,3,532,266,0,5374,5378,3,546,273,0,5375,5378,3,542,271,0,5376, - 5378,3,454,227,0,5377,5372,1,0,0,0,5377,5373,1,0,0,0,5377,5374,1, - 0,0,0,5377,5375,1,0,0,0,5377,5376,1,0,0,0,5378,453,1,0,0,0,5379, - 5380,5,271,0,0,5380,5382,3,824,412,0,5381,5383,3,456,228,0,5382, - 5381,1,0,0,0,5382,5383,1,0,0,0,5383,455,1,0,0,0,5384,5385,5,6,0, - 0,5385,5386,3,814,407,0,5386,457,1,0,0,0,5387,5388,5,252,0,0,5388, - 5389,3,824,412,0,5389,459,1,0,0,0,5390,5393,5,366,0,0,5391,5394, - 3,824,412,0,5392,5394,5,9,0,0,5393,5391,1,0,0,0,5393,5392,1,0,0, - 0,5394,461,1,0,0,0,5395,5397,5,146,0,0,5396,5398,3,464,232,0,5397, - 5396,1,0,0,0,5397,5398,1,0,0,0,5398,5400,1,0,0,0,5399,5401,3,468, - 234,0,5400,5399,1,0,0,0,5400,5401,1,0,0,0,5401,5441,1,0,0,0,5402, - 5403,5,340,0,0,5403,5405,5,356,0,0,5404,5406,3,468,234,0,5405,5404, - 1,0,0,0,5405,5406,1,0,0,0,5406,5441,1,0,0,0,5407,5408,5,322,0,0, - 5408,5441,3,824,412,0,5409,5411,5,308,0,0,5410,5412,5,322,0,0,5411, - 5410,1,0,0,0,5411,5412,1,0,0,0,5412,5413,1,0,0,0,5413,5441,3,824, - 412,0,5414,5415,5,290,0,0,5415,5416,5,356,0,0,5416,5441,3,814,407, - 0,5417,5418,7,68,0,0,5418,5419,5,291,0,0,5419,5441,3,814,407,0,5420, - 5422,7,69,0,0,5421,5423,3,464,232,0,5422,5421,1,0,0,0,5422,5423, - 1,0,0,0,5423,5429,1,0,0,0,5424,5426,5,33,0,0,5425,5427,5,269,0,0, - 5426,5425,1,0,0,0,5426,5427,1,0,0,0,5427,5428,1,0,0,0,5428,5430, - 5,153,0,0,5429,5424,1,0,0,0,5429,5430,1,0,0,0,5430,5441,1,0,0,0, - 5431,5433,5,319,0,0,5432,5434,3,464,232,0,5433,5432,1,0,0,0,5433, - 5434,1,0,0,0,5434,5435,1,0,0,0,5435,5437,5,94,0,0,5436,5438,5,322, - 0,0,5437,5436,1,0,0,0,5437,5438,1,0,0,0,5438,5439,1,0,0,0,5439,5441, - 3,824,412,0,5440,5395,1,0,0,0,5440,5402,1,0,0,0,5440,5407,1,0,0, - 0,5440,5409,1,0,0,0,5440,5414,1,0,0,0,5440,5417,1,0,0,0,5440,5420, - 1,0,0,0,5440,5431,1,0,0,0,5441,463,1,0,0,0,5442,5443,7,70,0,0,5443, - 465,1,0,0,0,5444,5445,5,244,0,0,5445,5446,5,251,0,0,5446,5454,3, - 50,25,0,5447,5448,5,300,0,0,5448,5454,7,71,0,0,5449,5451,5,77,0, - 0,5450,5449,1,0,0,0,5450,5451,1,0,0,0,5451,5452,1,0,0,0,5452,5454, - 5,54,0,0,5453,5444,1,0,0,0,5453,5447,1,0,0,0,5453,5450,1,0,0,0,5454, - 467,1,0,0,0,5455,5462,3,466,233,0,5456,5458,5,6,0,0,5457,5456,1, - 0,0,0,5457,5458,1,0,0,0,5458,5459,1,0,0,0,5459,5461,3,466,233,0, - 5460,5457,1,0,0,0,5461,5464,1,0,0,0,5462,5460,1,0,0,0,5462,5463, - 1,0,0,0,5463,469,1,0,0,0,5464,5462,1,0,0,0,5465,5468,5,46,0,0,5466, - 5467,5,82,0,0,5467,5469,5,311,0,0,5468,5466,1,0,0,0,5468,5469,1, - 0,0,0,5469,5471,1,0,0,0,5470,5472,3,116,58,0,5471,5470,1,0,0,0,5471, - 5472,1,0,0,0,5472,5488,1,0,0,0,5473,5474,5,376,0,0,5474,5476,3,780, - 390,0,5475,5477,3,140,70,0,5476,5475,1,0,0,0,5476,5477,1,0,0,0,5477, - 5479,1,0,0,0,5478,5480,3,94,47,0,5479,5478,1,0,0,0,5479,5480,1,0, - 0,0,5480,5489,1,0,0,0,5481,5482,5,303,0,0,5482,5483,5,376,0,0,5483, - 5484,3,780,390,0,5484,5486,3,138,69,0,5485,5487,3,94,47,0,5486,5485, - 1,0,0,0,5486,5487,1,0,0,0,5487,5489,1,0,0,0,5488,5473,1,0,0,0,5488, - 5481,1,0,0,0,5489,5490,1,0,0,0,5490,5491,5,36,0,0,5491,5498,3,554, - 277,0,5492,5494,5,105,0,0,5493,5495,7,72,0,0,5494,5493,1,0,0,0,5494, - 5495,1,0,0,0,5495,5496,1,0,0,0,5496,5497,5,42,0,0,5497,5499,5,279, - 0,0,5498,5492,1,0,0,0,5498,5499,1,0,0,0,5499,471,1,0,0,0,5500,5501, - 5,253,0,0,5501,5502,3,814,407,0,5502,473,1,0,0,0,5503,5504,5,46, - 0,0,5504,5505,5,175,0,0,5505,5507,3,790,395,0,5506,5508,5,105,0, - 0,5507,5506,1,0,0,0,5507,5508,1,0,0,0,5508,5514,1,0,0,0,5509,5511, - 3,476,238,0,5510,5509,1,0,0,0,5511,5512,1,0,0,0,5512,5510,1,0,0, - 0,5512,5513,1,0,0,0,5513,5515,1,0,0,0,5514,5510,1,0,0,0,5514,5515, - 1,0,0,0,5515,475,1,0,0,0,5516,5517,5,164,0,0,5517,5525,5,74,0,0, - 5518,5525,5,194,0,0,5519,5525,5,255,0,0,5520,5525,5,282,0,0,5521, - 5525,5,351,0,0,5522,5525,5,353,0,0,5523,5525,3,832,416,0,5524,5516, - 1,0,0,0,5524,5518,1,0,0,0,5524,5519,1,0,0,0,5524,5520,1,0,0,0,5524, - 5521,1,0,0,0,5524,5522,1,0,0,0,5524,5523,1,0,0,0,5525,5527,1,0,0, - 0,5526,5528,5,10,0,0,5527,5526,1,0,0,0,5527,5528,1,0,0,0,5528,5532, - 1,0,0,0,5529,5533,3,818,409,0,5530,5533,3,54,27,0,5531,5533,5,53, - 0,0,5532,5529,1,0,0,0,5532,5530,1,0,0,0,5532,5531,1,0,0,0,5533,477, - 1,0,0,0,5534,5535,5,138,0,0,5535,5536,5,175,0,0,5536,5552,3,792, - 396,0,5537,5538,5,333,0,0,5538,5539,5,351,0,0,5539,5541,3,774,387, - 0,5540,5537,1,0,0,0,5540,5541,1,0,0,0,5541,5553,1,0,0,0,5542,5544, - 5,105,0,0,5543,5542,1,0,0,0,5543,5544,1,0,0,0,5544,5546,1,0,0,0, - 5545,5547,3,476,238,0,5546,5545,1,0,0,0,5547,5548,1,0,0,0,5548,5546, - 1,0,0,0,5548,5549,1,0,0,0,5549,5551,1,0,0,0,5550,5543,1,0,0,0,5550, - 5551,1,0,0,0,5551,5553,1,0,0,0,5552,5540,1,0,0,0,5552,5550,1,0,0, - 0,5553,479,1,0,0,0,5554,5555,5,138,0,0,5555,5556,5,175,0,0,5556, - 5558,3,792,396,0,5557,5559,3,64,32,0,5558,5557,1,0,0,0,5558,5559, - 1,0,0,0,5559,481,1,0,0,0,5560,5561,5,138,0,0,5561,5562,5,108,0,0, - 5562,5563,3,310,155,0,5563,5564,5,305,0,0,5564,5565,5,375,0,0,5565, - 483,1,0,0,0,5566,5567,5,138,0,0,5567,5568,5,349,0,0,5568,5569,7, - 16,0,0,5569,5570,3,40,20,0,5570,485,1,0,0,0,5571,5572,5,46,0,0,5572, - 5573,5,189,0,0,5573,5575,3,310,155,0,5574,5576,5,36,0,0,5575,5574, - 1,0,0,0,5575,5576,1,0,0,0,5576,5577,1,0,0,0,5577,5581,3,648,324, - 0,5578,5580,3,128,64,0,5579,5578,1,0,0,0,5580,5583,1,0,0,0,5581, - 5579,1,0,0,0,5581,5582,1,0,0,0,5582,487,1,0,0,0,5583,5581,1,0,0, - 0,5584,5585,5,138,0,0,5585,5586,5,189,0,0,5586,5609,3,310,155,0, - 5587,5610,3,86,43,0,5588,5589,7,15,0,0,5589,5590,5,77,0,0,5590,5610, - 5,78,0,0,5591,5594,5,133,0,0,5592,5593,5,45,0,0,5593,5595,3,824, - 412,0,5594,5592,1,0,0,0,5594,5595,1,0,0,0,5595,5596,1,0,0,0,5596, - 5610,3,136,68,0,5597,5598,5,191,0,0,5598,5600,5,45,0,0,5599,5601, - 3,416,208,0,5600,5599,1,0,0,0,5600,5601,1,0,0,0,5601,5602,1,0,0, - 0,5602,5604,3,824,412,0,5603,5605,3,88,44,0,5604,5603,1,0,0,0,5604, - 5605,1,0,0,0,5605,5610,1,0,0,0,5606,5607,5,372,0,0,5607,5608,5,45, - 0,0,5608,5610,3,824,412,0,5609,5587,1,0,0,0,5609,5588,1,0,0,0,5609, - 5591,1,0,0,0,5609,5597,1,0,0,0,5609,5606,1,0,0,0,5610,489,1,0,0, - 0,5611,5612,5,138,0,0,5612,5613,5,355,0,0,5613,5614,5,325,0,0,5614, - 5615,5,185,0,0,5615,5616,3,310,155,0,5616,5617,3,278,139,0,5617, - 491,1,0,0,0,5618,5619,5,138,0,0,5619,5620,5,355,0,0,5620,5621,5, - 325,0,0,5621,5622,5,163,0,0,5622,5623,3,310,155,0,5623,5624,7,73, - 0,0,5624,5625,5,257,0,0,5625,5626,5,62,0,0,5626,5627,3,788,394,0, - 5627,5628,5,105,0,0,5628,5629,3,308,154,0,5629,5660,1,0,0,0,5630, - 5631,5,138,0,0,5631,5632,5,355,0,0,5632,5633,5,325,0,0,5633,5634, - 5,163,0,0,5634,5635,3,310,155,0,5635,5636,5,138,0,0,5636,5639,5, - 257,0,0,5637,5638,5,62,0,0,5638,5640,3,788,394,0,5639,5637,1,0,0, - 0,5639,5640,1,0,0,0,5640,5641,1,0,0,0,5641,5642,5,311,0,0,5642,5643, - 3,310,155,0,5643,5644,5,105,0,0,5644,5645,3,310,155,0,5645,5660, - 1,0,0,0,5646,5647,5,138,0,0,5647,5648,5,355,0,0,5648,5649,5,325, - 0,0,5649,5650,5,163,0,0,5650,5651,3,310,155,0,5651,5652,5,191,0, - 0,5652,5654,5,257,0,0,5653,5655,3,416,208,0,5654,5653,1,0,0,0,5654, - 5655,1,0,0,0,5655,5656,1,0,0,0,5656,5657,5,62,0,0,5657,5658,3,788, - 394,0,5658,5660,1,0,0,0,5659,5618,1,0,0,0,5659,5630,1,0,0,0,5659, - 5646,1,0,0,0,5660,493,1,0,0,0,5661,5663,5,46,0,0,5662,5664,5,53, - 0,0,5663,5662,1,0,0,0,5663,5664,1,0,0,0,5664,5665,1,0,0,0,5665,5666, - 5,168,0,0,5666,5667,3,310,155,0,5667,5668,5,62,0,0,5668,5669,3,814, - 407,0,5669,5670,5,94,0,0,5670,5671,3,814,407,0,5671,5672,5,64,0, - 0,5672,5673,3,310,155,0,5673,495,1,0,0,0,5674,5676,5,158,0,0,5675, - 5677,3,508,254,0,5676,5675,1,0,0,0,5676,5677,1,0,0,0,5677,5682,1, - 0,0,0,5678,5680,3,778,389,0,5679,5681,3,164,82,0,5680,5679,1,0,0, - 0,5680,5681,1,0,0,0,5681,5683,1,0,0,0,5682,5678,1,0,0,0,5682,5683, - 1,0,0,0,5683,5700,1,0,0,0,5684,5685,5,158,0,0,5685,5686,5,2,0,0, - 5686,5691,3,508,254,0,5687,5688,5,6,0,0,5688,5690,3,508,254,0,5689, - 5687,1,0,0,0,5690,5693,1,0,0,0,5691,5689,1,0,0,0,5691,5692,1,0,0, - 0,5692,5694,1,0,0,0,5693,5691,1,0,0,0,5694,5695,5,3,0,0,5695,5697, - 3,778,389,0,5696,5698,3,164,82,0,5697,5696,1,0,0,0,5697,5698,1,0, - 0,0,5698,5700,1,0,0,0,5699,5674,1,0,0,0,5699,5684,1,0,0,0,5700,497, - 1,0,0,0,5701,5717,5,370,0,0,5702,5704,5,113,0,0,5703,5702,1,0,0, - 0,5703,5704,1,0,0,0,5704,5706,1,0,0,0,5705,5707,5,112,0,0,5706,5705, - 1,0,0,0,5706,5707,1,0,0,0,5707,5709,1,0,0,0,5708,5710,3,508,254, - 0,5709,5708,1,0,0,0,5709,5710,1,0,0,0,5710,5712,1,0,0,0,5711,5713, - 3,502,251,0,5712,5711,1,0,0,0,5712,5713,1,0,0,0,5713,5718,1,0,0, - 0,5714,5716,3,518,259,0,5715,5714,1,0,0,0,5715,5716,1,0,0,0,5716, - 5718,1,0,0,0,5717,5703,1,0,0,0,5717,5715,1,0,0,0,5718,5720,1,0,0, - 0,5719,5721,3,512,256,0,5720,5719,1,0,0,0,5720,5721,1,0,0,0,5721, - 499,1,0,0,0,5722,5737,3,502,251,0,5723,5725,3,508,254,0,5724,5723, - 1,0,0,0,5724,5725,1,0,0,0,5725,5738,1,0,0,0,5726,5727,5,2,0,0,5727, - 5732,3,506,253,0,5728,5729,5,6,0,0,5729,5731,3,506,253,0,5730,5728, - 1,0,0,0,5731,5734,1,0,0,0,5732,5730,1,0,0,0,5732,5733,1,0,0,0,5733, - 5735,1,0,0,0,5734,5732,1,0,0,0,5735,5736,5,3,0,0,5736,5738,1,0,0, - 0,5737,5724,1,0,0,0,5737,5726,1,0,0,0,5738,5740,1,0,0,0,5739,5741, - 3,512,256,0,5740,5739,1,0,0,0,5740,5741,1,0,0,0,5741,501,1,0,0,0, - 5742,5743,7,74,0,0,5743,503,1,0,0,0,5744,5747,3,828,414,0,5745,5747, - 3,502,251,0,5746,5744,1,0,0,0,5746,5745,1,0,0,0,5747,5750,1,0,0, - 0,5748,5751,3,54,27,0,5749,5751,3,196,98,0,5750,5748,1,0,0,0,5750, - 5749,1,0,0,0,5750,5751,1,0,0,0,5751,505,1,0,0,0,5752,5754,7,75,0, - 0,5753,5755,7,76,0,0,5754,5753,1,0,0,0,5754,5755,1,0,0,0,5755,5762, - 1,0,0,0,5756,5759,5,548,0,0,5757,5760,3,196,98,0,5758,5760,3,814, - 407,0,5759,5757,1,0,0,0,5759,5758,1,0,0,0,5760,5762,1,0,0,0,5761, - 5752,1,0,0,0,5761,5756,1,0,0,0,5762,507,1,0,0,0,5763,5765,5,128, - 0,0,5764,5766,7,76,0,0,5765,5764,1,0,0,0,5765,5766,1,0,0,0,5766, - 509,1,0,0,0,5767,5769,3,778,389,0,5768,5770,3,138,69,0,5769,5768, - 1,0,0,0,5769,5770,1,0,0,0,5770,511,1,0,0,0,5771,5776,3,510,255,0, - 5772,5773,5,6,0,0,5773,5775,3,510,255,0,5774,5772,1,0,0,0,5775,5778, - 1,0,0,0,5776,5774,1,0,0,0,5776,5777,1,0,0,0,5777,513,1,0,0,0,5778, - 5776,1,0,0,0,5779,5790,5,203,0,0,5780,5791,3,518,259,0,5781,5783, - 5,128,0,0,5782,5781,1,0,0,0,5782,5783,1,0,0,0,5783,5791,1,0,0,0, - 5784,5786,3,502,251,0,5785,5787,3,508,254,0,5786,5785,1,0,0,0,5786, - 5787,1,0,0,0,5787,5789,1,0,0,0,5788,5784,1,0,0,0,5788,5789,1,0,0, - 0,5789,5791,1,0,0,0,5790,5780,1,0,0,0,5790,5782,1,0,0,0,5790,5788, - 1,0,0,0,5791,5792,1,0,0,0,5792,5793,3,516,258,0,5793,515,1,0,0,0, - 5794,5804,3,554,277,0,5795,5804,3,532,266,0,5796,5804,3,546,273, - 0,5797,5804,3,542,271,0,5798,5804,3,552,276,0,5799,5804,3,180,90, - 0,5800,5804,3,186,93,0,5801,5804,3,188,94,0,5802,5804,3,526,263, - 0,5803,5794,1,0,0,0,5803,5795,1,0,0,0,5803,5796,1,0,0,0,5803,5797, - 1,0,0,0,5803,5798,1,0,0,0,5803,5799,1,0,0,0,5803,5800,1,0,0,0,5803, - 5801,1,0,0,0,5803,5802,1,0,0,0,5804,517,1,0,0,0,5805,5806,5,2,0, - 0,5806,5811,3,504,252,0,5807,5808,5,6,0,0,5808,5810,3,504,252,0, - 5809,5807,1,0,0,0,5810,5813,1,0,0,0,5811,5809,1,0,0,0,5811,5812, - 1,0,0,0,5812,5814,1,0,0,0,5813,5811,1,0,0,0,5814,5815,5,3,0,0,5815, - 519,1,0,0,0,5816,5817,5,290,0,0,5817,5819,3,824,412,0,5818,5820, - 3,522,261,0,5819,5818,1,0,0,0,5819,5820,1,0,0,0,5820,5821,1,0,0, - 0,5821,5822,5,36,0,0,5822,5823,3,524,262,0,5823,521,1,0,0,0,5824, - 5825,5,2,0,0,5825,5830,3,648,324,0,5826,5827,5,6,0,0,5827,5829,3, - 648,324,0,5828,5826,1,0,0,0,5829,5832,1,0,0,0,5830,5828,1,0,0,0, - 5830,5831,1,0,0,0,5831,5833,1,0,0,0,5832,5830,1,0,0,0,5833,5834, - 5,3,0,0,5834,523,1,0,0,0,5835,5841,3,554,277,0,5836,5841,3,532,266, - 0,5837,5841,3,546,273,0,5838,5841,3,542,271,0,5839,5841,3,906,453, - 0,5840,5835,1,0,0,0,5840,5836,1,0,0,0,5840,5837,1,0,0,0,5840,5838, - 1,0,0,0,5840,5839,1,0,0,0,5841,525,1,0,0,0,5842,5843,5,202,0,0,5843, - 5845,3,824,412,0,5844,5846,3,528,264,0,5845,5844,1,0,0,0,5845,5846, - 1,0,0,0,5846,5866,1,0,0,0,5847,5849,5,46,0,0,5848,5850,3,116,58, - 0,5849,5848,1,0,0,0,5849,5850,1,0,0,0,5850,5851,1,0,0,0,5851,5853, - 5,92,0,0,5852,5854,3,288,144,0,5853,5852,1,0,0,0,5853,5854,1,0,0, - 0,5854,5855,1,0,0,0,5855,5856,3,182,91,0,5856,5857,5,36,0,0,5857, - 5858,5,202,0,0,5858,5860,3,824,412,0,5859,5861,3,528,264,0,5860, - 5859,1,0,0,0,5860,5861,1,0,0,0,5861,5863,1,0,0,0,5862,5864,3,184, - 92,0,5863,5862,1,0,0,0,5863,5864,1,0,0,0,5864,5866,1,0,0,0,5865, - 5842,1,0,0,0,5865,5847,1,0,0,0,5866,527,1,0,0,0,5867,5868,5,2,0, - 0,5868,5869,3,728,364,0,5869,5870,5,3,0,0,5870,529,1,0,0,0,5871, - 5873,5,177,0,0,5872,5874,5,290,0,0,5873,5872,1,0,0,0,5873,5874,1, - 0,0,0,5874,5877,1,0,0,0,5875,5878,3,824,412,0,5876,5878,5,30,0,0, - 5877,5875,1,0,0,0,5877,5876,1,0,0,0,5878,531,1,0,0,0,5879,5881,3, - 566,283,0,5880,5879,1,0,0,0,5880,5881,1,0,0,0,5881,5882,1,0,0,0, - 5882,5883,5,241,0,0,5883,5884,5,71,0,0,5884,5887,3,778,389,0,5885, - 5886,5,36,0,0,5886,5888,3,824,412,0,5887,5885,1,0,0,0,5887,5888, - 1,0,0,0,5888,5889,1,0,0,0,5889,5911,3,534,267,0,5890,5891,5,80,0, - 0,5891,5899,5,464,0,0,5892,5894,3,354,177,0,5893,5895,3,634,317, - 0,5894,5893,1,0,0,0,5894,5895,1,0,0,0,5895,5900,1,0,0,0,5896,5897, - 5,80,0,0,5897,5898,5,45,0,0,5898,5900,3,824,412,0,5899,5892,1,0, - 0,0,5899,5896,1,0,0,0,5899,5900,1,0,0,0,5900,5901,1,0,0,0,5901,5909, - 5,57,0,0,5902,5903,5,369,0,0,5903,5904,5,333,0,0,5904,5906,3,548, - 274,0,5905,5907,3,634,317,0,5906,5905,1,0,0,0,5906,5907,1,0,0,0, - 5907,5910,1,0,0,0,5908,5910,5,270,0,0,5909,5902,1,0,0,0,5909,5908, - 1,0,0,0,5910,5912,1,0,0,0,5911,5890,1,0,0,0,5911,5912,1,0,0,0,5912, - 5914,1,0,0,0,5913,5915,3,540,270,0,5914,5913,1,0,0,0,5914,5915,1, - 0,0,0,5915,533,1,0,0,0,5916,5917,5,2,0,0,5917,5918,3,536,268,0,5918, - 5919,5,3,0,0,5919,5921,1,0,0,0,5920,5916,1,0,0,0,5920,5921,1,0,0, - 0,5921,5925,1,0,0,0,5922,5923,5,463,0,0,5923,5924,7,77,0,0,5924, - 5926,5,450,0,0,5925,5922,1,0,0,0,5925,5926,1,0,0,0,5926,5929,1,0, - 0,0,5927,5930,3,916,458,0,5928,5930,3,554,277,0,5929,5927,1,0,0, - 0,5929,5928,1,0,0,0,5930,535,1,0,0,0,5931,5936,3,538,269,0,5932, - 5933,5,6,0,0,5933,5935,3,538,269,0,5934,5932,1,0,0,0,5935,5938,1, - 0,0,0,5936,5934,1,0,0,0,5936,5937,1,0,0,0,5937,537,1,0,0,0,5938, - 5936,1,0,0,0,5939,5940,3,804,402,0,5940,5941,3,756,378,0,5941,539, - 1,0,0,0,5942,5943,5,87,0,0,5943,5944,3,758,379,0,5944,541,1,0,0, - 0,5945,5947,3,566,283,0,5946,5945,1,0,0,0,5946,5947,1,0,0,0,5947, - 5948,1,0,0,0,5948,5949,5,182,0,0,5949,5950,5,64,0,0,5950,5953,3, - 626,313,0,5951,5952,5,100,0,0,5952,5954,3,606,303,0,5953,5951,1, - 0,0,0,5953,5954,1,0,0,0,5954,5956,1,0,0,0,5955,5957,3,636,318,0, - 5956,5955,1,0,0,0,5956,5957,1,0,0,0,5957,5959,1,0,0,0,5958,5960, - 3,540,270,0,5959,5958,1,0,0,0,5959,5960,1,0,0,0,5960,543,1,0,0,0, - 5961,5963,5,256,0,0,5962,5964,5,92,0,0,5963,5962,1,0,0,0,5963,5964, - 1,0,0,0,5964,5965,1,0,0,0,5965,5980,3,624,312,0,5966,5977,5,68,0, - 0,5967,5968,7,78,0,0,5968,5978,7,79,0,0,5969,5974,5,334,0,0,5970, - 5971,5,369,0,0,5971,5975,5,201,0,0,5972,5973,5,414,0,0,5973,5975, - 5,201,0,0,5974,5970,1,0,0,0,5974,5972,1,0,0,0,5974,5975,1,0,0,0, - 5975,5978,1,0,0,0,5976,5978,5,201,0,0,5977,5967,1,0,0,0,5977,5969, - 1,0,0,0,5977,5976,1,0,0,0,5978,5979,1,0,0,0,5979,5981,5,263,0,0, - 5980,5966,1,0,0,0,5980,5981,1,0,0,0,5981,5983,1,0,0,0,5982,5984, - 5,272,0,0,5983,5982,1,0,0,0,5983,5984,1,0,0,0,5984,545,1,0,0,0,5985, - 5987,3,566,283,0,5986,5985,1,0,0,0,5986,5987,1,0,0,0,5987,5988,1, - 0,0,0,5988,5989,5,369,0,0,5989,5990,3,626,313,0,5990,5991,5,333, - 0,0,5991,5993,3,548,274,0,5992,5994,3,604,302,0,5993,5992,1,0,0, - 0,5993,5994,1,0,0,0,5994,5996,1,0,0,0,5995,5997,3,636,318,0,5996, - 5995,1,0,0,0,5996,5997,1,0,0,0,5997,5999,1,0,0,0,5998,6000,3,540, - 270,0,5999,5998,1,0,0,0,5999,6000,1,0,0,0,6000,547,1,0,0,0,6001, - 6006,3,550,275,0,6002,6003,5,6,0,0,6003,6005,3,550,275,0,6004,6002, - 1,0,0,0,6005,6008,1,0,0,0,6006,6004,1,0,0,0,6006,6007,1,0,0,0,6007, - 549,1,0,0,0,6008,6006,1,0,0,0,6009,6010,3,538,269,0,6010,6011,5, - 10,0,0,6011,6012,3,670,335,0,6012,6028,1,0,0,0,6013,6014,5,2,0,0, - 6014,6015,3,536,268,0,6015,6016,5,3,0,0,6016,6025,5,10,0,0,6017, - 6019,5,414,0,0,6018,6017,1,0,0,0,6018,6019,1,0,0,0,6019,6020,1,0, - 0,0,6020,6026,3,670,335,0,6021,6022,5,2,0,0,6022,6023,3,560,280, - 0,6023,6024,5,3,0,0,6024,6026,1,0,0,0,6025,6018,1,0,0,0,6025,6021, - 1,0,0,0,6026,6028,1,0,0,0,6027,6009,1,0,0,0,6027,6013,1,0,0,0,6028, - 551,1,0,0,0,6029,6030,5,178,0,0,6030,6039,3,824,412,0,6031,6033, - 5,269,0,0,6032,6031,1,0,0,0,6032,6033,1,0,0,0,6033,6034,1,0,0,0, - 6034,6038,5,324,0,0,6035,6038,5,107,0,0,6036,6038,5,240,0,0,6037, - 6032,1,0,0,0,6037,6035,1,0,0,0,6037,6036,1,0,0,0,6038,6041,1,0,0, - 0,6039,6037,1,0,0,0,6039,6040,1,0,0,0,6040,6042,1,0,0,0,6041,6039, - 1,0,0,0,6042,6045,5,172,0,0,6043,6044,7,27,0,0,6044,6046,5,217,0, - 0,6045,6043,1,0,0,0,6045,6046,1,0,0,0,6046,6047,1,0,0,0,6047,6048, - 5,62,0,0,6048,6049,3,554,277,0,6049,553,1,0,0,0,6050,6053,3,558, - 279,0,6051,6053,3,556,278,0,6052,6050,1,0,0,0,6052,6051,1,0,0,0, - 6053,555,1,0,0,0,6054,6057,5,2,0,0,6055,6058,3,558,279,0,6056,6058, - 3,556,278,0,6057,6055,1,0,0,0,6057,6056,1,0,0,0,6058,6059,1,0,0, - 0,6059,6060,5,3,0,0,6060,557,1,0,0,0,6061,6063,3,566,283,0,6062, - 6061,1,0,0,0,6062,6063,1,0,0,0,6063,6064,1,0,0,0,6064,6066,3,560, - 280,0,6065,6067,3,580,290,0,6066,6065,1,0,0,0,6066,6067,1,0,0,0, - 6067,6076,1,0,0,0,6068,6070,3,600,300,0,6069,6071,3,584,292,0,6070, - 6069,1,0,0,0,6070,6071,1,0,0,0,6071,6077,1,0,0,0,6072,6074,3,584, - 292,0,6073,6075,3,600,300,0,6074,6073,1,0,0,0,6074,6075,1,0,0,0, - 6075,6077,1,0,0,0,6076,6068,1,0,0,0,6076,6072,1,0,0,0,6076,6077, - 1,0,0,0,6077,559,1,0,0,0,6078,6081,3,562,281,0,6079,6081,3,556,278, - 0,6080,6078,1,0,0,0,6080,6079,1,0,0,0,6081,561,1,0,0,0,6082,6092, - 5,88,0,0,6083,6085,5,30,0,0,6084,6083,1,0,0,0,6084,6085,1,0,0,0, - 6085,6087,1,0,0,0,6086,6088,3,574,287,0,6087,6086,1,0,0,0,6087,6088, - 1,0,0,0,6088,6093,1,0,0,0,6089,6091,3,578,289,0,6090,6089,1,0,0, - 0,6090,6091,1,0,0,0,6091,6093,1,0,0,0,6092,6084,1,0,0,0,6092,6090, - 1,0,0,0,6093,6094,1,0,0,0,6094,6105,3,936,468,0,6095,6105,3,602, - 301,0,6096,6097,5,92,0,0,6097,6105,3,620,310,0,6098,6099,3,556,278, - 0,6099,6102,3,564,282,0,6100,6103,3,562,281,0,6101,6103,3,556,278, - 0,6102,6100,1,0,0,0,6102,6101,1,0,0,0,6103,6105,1,0,0,0,6104,6082, - 1,0,0,0,6104,6095,1,0,0,0,6104,6096,1,0,0,0,6104,6098,1,0,0,0,6105, - 6113,1,0,0,0,6106,6109,3,564,282,0,6107,6110,3,562,281,0,6108,6110, - 3,556,278,0,6109,6107,1,0,0,0,6109,6108,1,0,0,0,6110,6112,1,0,0, - 0,6111,6106,1,0,0,0,6112,6115,1,0,0,0,6113,6111,1,0,0,0,6113,6114, - 1,0,0,0,6114,563,1,0,0,0,6115,6113,1,0,0,0,6116,6118,7,80,0,0,6117, - 6119,7,81,0,0,6118,6117,1,0,0,0,6118,6119,1,0,0,0,6119,565,1,0,0, - 0,6120,6122,5,105,0,0,6121,6123,5,303,0,0,6122,6121,1,0,0,0,6122, - 6123,1,0,0,0,6123,6124,1,0,0,0,6124,6129,3,568,284,0,6125,6126,5, - 6,0,0,6126,6128,3,568,284,0,6127,6125,1,0,0,0,6128,6131,1,0,0,0, - 6129,6127,1,0,0,0,6129,6130,1,0,0,0,6130,567,1,0,0,0,6131,6129,1, - 0,0,0,6132,6134,3,824,412,0,6133,6135,3,138,69,0,6134,6133,1,0,0, - 0,6134,6135,1,0,0,0,6135,6136,1,0,0,0,6136,6141,5,36,0,0,6137,6139, - 5,77,0,0,6138,6137,1,0,0,0,6138,6139,1,0,0,0,6139,6140,1,0,0,0,6140, - 6142,5,259,0,0,6141,6138,1,0,0,0,6141,6142,1,0,0,0,6142,6143,1,0, - 0,0,6143,6144,5,2,0,0,6144,6145,3,524,262,0,6145,6147,5,3,0,0,6146, - 6148,3,570,285,0,6147,6146,1,0,0,0,6147,6148,1,0,0,0,6148,6150,1, - 0,0,0,6149,6151,3,572,286,0,6150,6149,1,0,0,0,6150,6151,1,0,0,0, - 6151,569,1,0,0,0,6152,6153,5,325,0,0,6153,6154,7,82,0,0,6154,6155, - 5,207,0,0,6155,6156,5,147,0,0,6156,6157,3,142,71,0,6157,6158,5,333, - 0,0,6158,6159,3,804,402,0,6159,571,1,0,0,0,6160,6161,5,173,0,0,6161, - 6162,3,142,71,0,6162,6163,5,333,0,0,6163,6169,3,804,402,0,6164,6165, - 5,94,0,0,6165,6166,3,824,412,0,6166,6167,5,53,0,0,6167,6168,3,824, - 412,0,6168,6170,1,0,0,0,6169,6164,1,0,0,0,6169,6170,1,0,0,0,6170, - 6171,1,0,0,0,6171,6172,5,100,0,0,6172,6173,3,804,402,0,6173,573, - 1,0,0,0,6174,6180,5,71,0,0,6175,6177,5,346,0,0,6176,6175,1,0,0,0, - 6176,6177,1,0,0,0,6177,6178,1,0,0,0,6178,6181,3,576,288,0,6179,6181, - 3,728,364,0,6180,6176,1,0,0,0,6180,6179,1,0,0,0,6181,575,1,0,0,0, - 6182,6184,7,21,0,0,6183,6182,1,0,0,0,6183,6184,1,0,0,0,6184,6185, - 1,0,0,0,6185,6187,7,22,0,0,6186,6188,5,92,0,0,6187,6186,1,0,0,0, - 6187,6188,1,0,0,0,6188,6189,1,0,0,0,6189,6198,3,776,388,0,6190,6192, - 5,367,0,0,6191,6190,1,0,0,0,6191,6192,1,0,0,0,6192,6194,1,0,0,0, - 6193,6195,5,92,0,0,6194,6193,1,0,0,0,6194,6195,1,0,0,0,6195,6196, - 1,0,0,0,6196,6198,3,776,388,0,6197,6183,1,0,0,0,6197,6191,1,0,0, - 0,6198,577,1,0,0,0,6199,6202,5,56,0,0,6200,6201,5,80,0,0,6201,6203, - 3,528,264,0,6202,6200,1,0,0,0,6202,6203,1,0,0,0,6203,579,1,0,0,0, - 6204,6205,5,83,0,0,6205,6206,5,147,0,0,6206,6211,3,582,291,0,6207, - 6208,5,6,0,0,6208,6210,3,582,291,0,6209,6207,1,0,0,0,6210,6213,1, - 0,0,0,6211,6209,1,0,0,0,6211,6212,1,0,0,0,6212,581,1,0,0,0,6213, - 6211,1,0,0,0,6214,6218,3,736,368,0,6215,6216,5,100,0,0,6216,6219, - 3,724,362,0,6217,6219,7,56,0,0,6218,6215,1,0,0,0,6218,6217,1,0,0, - 0,6218,6219,1,0,0,0,6219,6222,1,0,0,0,6220,6221,5,273,0,0,6221,6223, - 7,57,0,0,6222,6220,1,0,0,0,6222,6223,1,0,0,0,6223,583,1,0,0,0,6224, - 6226,3,590,295,0,6225,6227,3,588,294,0,6226,6225,1,0,0,0,6226,6227, - 1,0,0,0,6227,6236,1,0,0,0,6228,6231,3,586,293,0,6229,6231,3,588, - 294,0,6230,6228,1,0,0,0,6230,6229,1,0,0,0,6231,6233,1,0,0,0,6232, - 6234,3,590,295,0,6233,6232,1,0,0,0,6233,6234,1,0,0,0,6234,6236,1, - 0,0,0,6235,6224,1,0,0,0,6235,6230,1,0,0,0,6236,585,1,0,0,0,6237, - 6240,5,74,0,0,6238,6241,3,670,335,0,6239,6241,5,30,0,0,6240,6238, - 1,0,0,0,6240,6239,1,0,0,0,6241,6244,1,0,0,0,6242,6243,5,6,0,0,6243, - 6245,3,670,335,0,6244,6242,1,0,0,0,6244,6245,1,0,0,0,6245,587,1, - 0,0,0,6246,6247,5,61,0,0,6247,6249,7,83,0,0,6248,6250,3,592,296, - 0,6249,6248,1,0,0,0,6249,6250,1,0,0,0,6250,6251,1,0,0,0,6251,6255, - 7,84,0,0,6252,6256,5,81,0,0,6253,6254,5,105,0,0,6254,6256,5,467, - 0,0,6255,6252,1,0,0,0,6255,6253,1,0,0,0,6256,589,1,0,0,0,6257,6262, - 5,79,0,0,6258,6259,3,592,296,0,6259,6260,7,84,0,0,6260,6263,1,0, - 0,0,6261,6263,3,670,335,0,6262,6258,1,0,0,0,6262,6261,1,0,0,0,6263, - 591,1,0,0,0,6264,6265,7,30,0,0,6265,6268,7,85,0,0,6266,6268,3,678, - 339,0,6267,6264,1,0,0,0,6267,6266,1,0,0,0,6268,593,1,0,0,0,6269, - 6270,5,66,0,0,6270,6272,5,147,0,0,6271,6273,7,81,0,0,6272,6271,1, - 0,0,0,6272,6273,1,0,0,0,6273,6274,1,0,0,0,6274,6275,3,596,298,0, - 6275,595,1,0,0,0,6276,6281,3,598,299,0,6277,6278,5,6,0,0,6278,6280, - 3,598,299,0,6279,6277,1,0,0,0,6280,6283,1,0,0,0,6281,6279,1,0,0, - 0,6281,6282,1,0,0,0,6282,597,1,0,0,0,6283,6281,1,0,0,0,6284,6308, - 3,736,368,0,6285,6286,5,2,0,0,6286,6308,5,3,0,0,6287,6289,7,86,0, - 0,6288,6287,1,0,0,0,6288,6289,1,0,0,0,6289,6290,1,0,0,0,6290,6291, - 5,2,0,0,6291,6296,3,736,368,0,6292,6293,5,6,0,0,6293,6295,3,736, - 368,0,6294,6292,1,0,0,0,6295,6298,1,0,0,0,6296,6294,1,0,0,0,6296, - 6297,1,0,0,0,6297,6299,1,0,0,0,6298,6296,1,0,0,0,6299,6300,5,3,0, - 0,6300,6308,1,0,0,0,6301,6302,5,470,0,0,6302,6303,5,471,0,0,6303, - 6304,5,2,0,0,6304,6305,3,596,298,0,6305,6306,5,3,0,0,6306,6308,1, - 0,0,0,6307,6284,1,0,0,0,6307,6285,1,0,0,0,6307,6288,1,0,0,0,6307, - 6301,1,0,0,0,6308,599,1,0,0,0,6309,6319,5,62,0,0,6310,6311,5,269, - 0,0,6311,6313,5,245,0,0,6312,6310,1,0,0,0,6312,6313,1,0,0,0,6313, - 6314,1,0,0,0,6314,6320,5,369,0,0,6315,6317,5,245,0,0,6316,6315,1, - 0,0,0,6316,6317,1,0,0,0,6317,6318,1,0,0,0,6318,6320,5,334,0,0,6319, - 6312,1,0,0,0,6319,6316,1,0,0,0,6320,6323,1,0,0,0,6321,6322,5,275, - 0,0,6322,6324,3,764,382,0,6323,6321,1,0,0,0,6323,6324,1,0,0,0,6324, - 6328,1,0,0,0,6325,6329,5,272,0,0,6326,6327,5,465,0,0,6327,6329,5, - 466,0,0,6328,6325,1,0,0,0,6328,6326,1,0,0,0,6328,6329,1,0,0,0,6329, - 6331,1,0,0,0,6330,6309,1,0,0,0,6331,6332,1,0,0,0,6332,6330,1,0,0, - 0,6332,6333,1,0,0,0,6333,6338,1,0,0,0,6334,6335,5,62,0,0,6335,6336, - 5,300,0,0,6336,6338,5,81,0,0,6337,6330,1,0,0,0,6337,6334,1,0,0,0, - 6338,601,1,0,0,0,6339,6340,5,422,0,0,6340,6345,3,528,264,0,6341, - 6342,5,6,0,0,6342,6344,3,528,264,0,6343,6341,1,0,0,0,6344,6347,1, - 0,0,0,6345,6343,1,0,0,0,6345,6346,1,0,0,0,6346,603,1,0,0,0,6347, - 6345,1,0,0,0,6348,6349,5,64,0,0,6349,6350,3,606,303,0,6350,605,1, - 0,0,0,6351,6356,3,608,304,0,6352,6353,5,6,0,0,6353,6355,3,608,304, - 0,6354,6352,1,0,0,0,6355,6358,1,0,0,0,6356,6354,1,0,0,0,6356,6357, - 1,0,0,0,6357,607,1,0,0,0,6358,6356,1,0,0,0,6359,6374,3,620,310,0, - 6360,6362,5,81,0,0,6361,6360,1,0,0,0,6361,6362,1,0,0,0,6362,6363, - 1,0,0,0,6363,6365,3,782,391,0,6364,6366,5,9,0,0,6365,6364,1,0,0, - 0,6365,6366,1,0,0,0,6366,6368,1,0,0,0,6367,6369,3,142,71,0,6368, - 6367,1,0,0,0,6368,6369,1,0,0,0,6369,6371,1,0,0,0,6370,6372,3,634, - 317,0,6371,6370,1,0,0,0,6371,6372,1,0,0,0,6372,6374,1,0,0,0,6373, - 6359,1,0,0,0,6373,6361,1,0,0,0,6374,6376,1,0,0,0,6375,6377,3,612, - 306,0,6376,6375,1,0,0,0,6376,6377,1,0,0,0,6377,6379,1,0,0,0,6378, - 6380,3,628,314,0,6379,6378,1,0,0,0,6379,6380,1,0,0,0,6380,6410,1, - 0,0,0,6381,6383,5,72,0,0,6382,6381,1,0,0,0,6382,6383,1,0,0,0,6383, - 6384,1,0,0,0,6384,6410,3,610,305,0,6385,6386,5,2,0,0,6386,6403,3, - 608,304,0,6387,6388,5,110,0,0,6388,6389,5,118,0,0,6389,6404,3,608, - 304,0,6390,6392,5,121,0,0,6391,6393,3,616,308,0,6392,6391,1,0,0, - 0,6392,6393,1,0,0,0,6393,6394,1,0,0,0,6394,6395,5,118,0,0,6395,6404, - 3,608,304,0,6396,6398,3,616,308,0,6397,6396,1,0,0,0,6397,6398,1, - 0,0,0,6398,6399,1,0,0,0,6399,6400,5,118,0,0,6400,6401,3,608,304, - 0,6401,6402,3,618,309,0,6402,6404,1,0,0,0,6403,6387,1,0,0,0,6403, - 6390,1,0,0,0,6403,6397,1,0,0,0,6403,6404,1,0,0,0,6404,6405,1,0,0, - 0,6405,6407,5,3,0,0,6406,6408,3,612,306,0,6407,6406,1,0,0,0,6407, - 6408,1,0,0,0,6408,6410,1,0,0,0,6409,6373,1,0,0,0,6409,6382,1,0,0, - 0,6409,6385,1,0,0,0,6410,6429,1,0,0,0,6411,6412,5,110,0,0,6412,6413, - 5,118,0,0,6413,6428,3,608,304,0,6414,6416,5,121,0,0,6415,6417,3, - 616,308,0,6416,6415,1,0,0,0,6416,6417,1,0,0,0,6417,6418,1,0,0,0, - 6418,6419,5,118,0,0,6419,6428,3,608,304,0,6420,6422,3,616,308,0, - 6421,6420,1,0,0,0,6421,6422,1,0,0,0,6422,6423,1,0,0,0,6423,6424, - 5,118,0,0,6424,6425,3,608,304,0,6425,6426,3,618,309,0,6426,6428, - 1,0,0,0,6427,6411,1,0,0,0,6427,6414,1,0,0,0,6427,6421,1,0,0,0,6428, - 6431,1,0,0,0,6429,6427,1,0,0,0,6429,6430,1,0,0,0,6430,609,1,0,0, - 0,6431,6429,1,0,0,0,6432,6434,3,642,321,0,6433,6435,3,612,306,0, - 6434,6433,1,0,0,0,6434,6435,1,0,0,0,6435,6445,1,0,0,0,6436,6438, - 3,630,315,0,6437,6439,3,614,307,0,6438,6437,1,0,0,0,6438,6439,1, - 0,0,0,6439,6445,1,0,0,0,6440,6442,3,556,278,0,6441,6443,3,612,306, - 0,6442,6441,1,0,0,0,6442,6443,1,0,0,0,6443,6445,1,0,0,0,6444,6432, - 1,0,0,0,6444,6436,1,0,0,0,6444,6440,1,0,0,0,6445,611,1,0,0,0,6446, - 6448,5,36,0,0,6447,6446,1,0,0,0,6447,6448,1,0,0,0,6448,6449,1,0, - 0,0,6449,6454,3,824,412,0,6450,6451,5,2,0,0,6451,6452,3,788,394, - 0,6452,6453,5,3,0,0,6453,6455,1,0,0,0,6454,6450,1,0,0,0,6454,6455, - 1,0,0,0,6455,613,1,0,0,0,6456,6469,3,612,306,0,6457,6459,5,36,0, - 0,6458,6460,3,824,412,0,6459,6458,1,0,0,0,6459,6460,1,0,0,0,6460, - 6463,1,0,0,0,6461,6463,3,824,412,0,6462,6457,1,0,0,0,6462,6461,1, - 0,0,0,6463,6464,1,0,0,0,6464,6465,5,2,0,0,6465,6466,3,638,319,0, - 6466,6467,5,3,0,0,6467,6469,1,0,0,0,6468,6456,1,0,0,0,6468,6462, - 1,0,0,0,6469,615,1,0,0,0,6470,6472,7,87,0,0,6471,6473,5,123,0,0, - 6472,6471,1,0,0,0,6472,6473,1,0,0,0,6473,617,1,0,0,0,6474,6475,5, - 100,0,0,6475,6479,3,138,69,0,6476,6477,5,80,0,0,6477,6479,3,670, - 335,0,6478,6474,1,0,0,0,6478,6476,1,0,0,0,6479,619,1,0,0,0,6480, - 6496,3,316,158,0,6481,6487,5,81,0,0,6482,6488,3,778,389,0,6483,6484, - 5,2,0,0,6484,6485,3,778,389,0,6485,6486,5,3,0,0,6486,6488,1,0,0, - 0,6487,6482,1,0,0,0,6487,6483,1,0,0,0,6488,6496,1,0,0,0,6489,6490, - 5,68,0,0,6490,6493,5,323,0,0,6491,6494,3,794,397,0,6492,6494,5,111, - 0,0,6493,6491,1,0,0,0,6493,6492,1,0,0,0,6494,6496,1,0,0,0,6495,6480, - 1,0,0,0,6495,6481,1,0,0,0,6495,6489,1,0,0,0,6496,621,1,0,0,0,6497, - 6498,5,92,0,0,6498,6500,3,316,158,0,6499,6501,3,138,69,0,6500,6499, - 1,0,0,0,6500,6501,1,0,0,0,6501,6503,1,0,0,0,6502,6504,3,634,317, - 0,6503,6502,1,0,0,0,6503,6504,1,0,0,0,6504,6522,1,0,0,0,6505,6506, - 5,92,0,0,6506,6512,5,81,0,0,6507,6513,3,778,389,0,6508,6509,5,2, - 0,0,6509,6510,3,778,389,0,6510,6511,5,3,0,0,6511,6513,1,0,0,0,6512, - 6507,1,0,0,0,6512,6508,1,0,0,0,6513,6522,1,0,0,0,6514,6515,5,350, - 0,0,6515,6516,5,68,0,0,6516,6519,5,323,0,0,6517,6520,3,794,397,0, - 6518,6520,5,111,0,0,6519,6517,1,0,0,0,6519,6518,1,0,0,0,6520,6522, - 1,0,0,0,6521,6497,1,0,0,0,6521,6505,1,0,0,0,6521,6514,1,0,0,0,6522, - 623,1,0,0,0,6523,6528,3,620,310,0,6524,6525,5,6,0,0,6525,6527,3, - 620,310,0,6526,6524,1,0,0,0,6527,6530,1,0,0,0,6528,6526,1,0,0,0, - 6528,6529,1,0,0,0,6529,625,1,0,0,0,6530,6528,1,0,0,0,6531,6536,3, - 620,310,0,6532,6534,5,36,0,0,6533,6532,1,0,0,0,6533,6534,1,0,0,0, - 6534,6535,1,0,0,0,6535,6537,3,824,412,0,6536,6533,1,0,0,0,6536,6537, - 1,0,0,0,6537,627,1,0,0,0,6538,6539,5,472,0,0,6539,6540,3,812,406, - 0,6540,6546,3,528,264,0,6541,6542,5,310,0,0,6542,6543,5,2,0,0,6543, - 6544,3,670,335,0,6544,6545,5,3,0,0,6545,6547,1,0,0,0,6546,6541,1, - 0,0,0,6546,6547,1,0,0,0,6547,629,1,0,0,0,6548,6563,3,684,342,0,6549, - 6550,5,320,0,0,6550,6551,5,64,0,0,6551,6552,5,2,0,0,6552,6557,3, - 632,316,0,6553,6554,5,6,0,0,6554,6556,3,632,316,0,6555,6553,1,0, - 0,0,6556,6559,1,0,0,0,6557,6555,1,0,0,0,6557,6558,1,0,0,0,6558,6560, - 1,0,0,0,6559,6557,1,0,0,0,6560,6561,5,3,0,0,6561,6563,1,0,0,0,6562, - 6548,1,0,0,0,6562,6549,1,0,0,0,6563,6566,1,0,0,0,6564,6565,5,105, - 0,0,6565,6567,5,473,0,0,6566,6564,1,0,0,0,6566,6567,1,0,0,0,6567, - 631,1,0,0,0,6568,6574,3,684,342,0,6569,6570,5,36,0,0,6570,6571,5, - 2,0,0,6571,6572,3,638,319,0,6572,6573,5,3,0,0,6573,6575,1,0,0,0, - 6574,6569,1,0,0,0,6574,6575,1,0,0,0,6575,633,1,0,0,0,6576,6577,5, - 103,0,0,6577,6578,3,736,368,0,6578,635,1,0,0,0,6579,6584,5,103,0, - 0,6580,6581,5,434,0,0,6581,6582,5,275,0,0,6582,6585,3,824,412,0, - 6583,6585,3,670,335,0,6584,6580,1,0,0,0,6584,6583,1,0,0,0,6585,637, - 1,0,0,0,6586,6591,3,640,320,0,6587,6588,5,6,0,0,6588,6590,3,640, - 320,0,6589,6587,1,0,0,0,6590,6593,1,0,0,0,6591,6589,1,0,0,0,6591, - 6592,1,0,0,0,6592,639,1,0,0,0,6593,6591,1,0,0,0,6594,6595,3,824, - 412,0,6595,6597,3,648,324,0,6596,6598,3,90,45,0,6597,6596,1,0,0, - 0,6597,6598,1,0,0,0,6598,641,1,0,0,0,6599,6600,5,474,0,0,6600,6614, - 5,2,0,0,6601,6602,5,476,0,0,6602,6603,5,2,0,0,6603,6608,3,646,323, - 0,6604,6605,5,6,0,0,6605,6607,3,646,323,0,6606,6604,1,0,0,0,6607, - 6610,1,0,0,0,6608,6606,1,0,0,0,6608,6609,1,0,0,0,6609,6611,1,0,0, - 0,6610,6608,1,0,0,0,6611,6612,5,3,0,0,6612,6613,5,6,0,0,6613,6615, - 1,0,0,0,6614,6601,1,0,0,0,6614,6615,1,0,0,0,6615,6616,1,0,0,0,6616, - 6617,3,678,339,0,6617,6618,3,694,347,0,6618,6619,5,475,0,0,6619, - 6624,3,644,322,0,6620,6621,5,6,0,0,6621,6623,3,644,322,0,6622,6620, - 1,0,0,0,6623,6626,1,0,0,0,6624,6622,1,0,0,0,6624,6625,1,0,0,0,6625, - 6627,1,0,0,0,6626,6624,1,0,0,0,6627,6628,5,3,0,0,6628,643,1,0,0, - 0,6629,6648,3,824,412,0,6630,6644,3,648,324,0,6631,6634,5,53,0,0, - 6632,6634,3,832,416,0,6633,6631,1,0,0,0,6633,6632,1,0,0,0,6634,6635, - 1,0,0,0,6635,6641,3,670,335,0,6636,6638,5,77,0,0,6637,6636,1,0,0, - 0,6637,6638,1,0,0,0,6638,6639,1,0,0,0,6639,6641,5,78,0,0,6640,6633, - 1,0,0,0,6640,6637,1,0,0,0,6641,6642,1,0,0,0,6642,6640,1,0,0,0,6642, - 6643,1,0,0,0,6643,6645,1,0,0,0,6644,6640,1,0,0,0,6644,6645,1,0,0, - 0,6645,6649,1,0,0,0,6646,6647,5,62,0,0,6647,6649,5,473,0,0,6648, - 6630,1,0,0,0,6648,6646,1,0,0,0,6649,645,1,0,0,0,6650,6651,3,678, - 339,0,6651,6652,5,36,0,0,6652,6653,3,830,415,0,6653,6657,1,0,0,0, - 6654,6655,5,53,0,0,6655,6657,3,678,339,0,6656,6650,1,0,0,0,6656, - 6654,1,0,0,0,6657,647,1,0,0,0,6658,6660,5,415,0,0,6659,6658,1,0, - 0,0,6659,6660,1,0,0,0,6660,6661,1,0,0,0,6661,6678,3,650,325,0,6662, - 6664,5,4,0,0,6663,6665,5,574,0,0,6664,6663,1,0,0,0,6664,6665,1,0, - 0,0,6665,6666,1,0,0,0,6666,6668,5,5,0,0,6667,6662,1,0,0,0,6668,6671, - 1,0,0,0,6669,6667,1,0,0,0,6669,6670,1,0,0,0,6670,6679,1,0,0,0,6671, - 6669,1,0,0,0,6672,6676,5,35,0,0,6673,6674,5,4,0,0,6674,6675,5,574, - 0,0,6675,6677,5,5,0,0,6676,6673,1,0,0,0,6676,6677,1,0,0,0,6677,6679, - 1,0,0,0,6678,6669,1,0,0,0,6678,6672,1,0,0,0,6679,6685,1,0,0,0,6680, - 6681,3,784,392,0,6681,6682,5,27,0,0,6682,6683,7,88,0,0,6683,6685, - 1,0,0,0,6684,6659,1,0,0,0,6684,6680,1,0,0,0,6685,649,1,0,0,0,6686, - 6688,3,826,413,0,6687,6689,3,312,156,0,6688,6687,1,0,0,0,6688,6689, - 1,0,0,0,6689,6691,1,0,0,0,6690,6692,3,528,264,0,6691,6690,1,0,0, - 0,6691,6692,1,0,0,0,6692,6702,1,0,0,0,6693,6702,3,652,326,0,6694, - 6699,5,403,0,0,6695,6697,3,664,332,0,6696,6695,1,0,0,0,6696,6697, - 1,0,0,0,6697,6700,1,0,0,0,6698,6700,3,656,328,0,6699,6696,1,0,0, - 0,6699,6698,1,0,0,0,6700,6702,1,0,0,0,6701,6686,1,0,0,0,6701,6693, - 1,0,0,0,6701,6694,1,0,0,0,6702,651,1,0,0,0,6703,6708,3,654,327,0, - 6704,6708,3,658,329,0,6705,6708,3,660,330,0,6706,6708,3,662,331, - 0,6707,6703,1,0,0,0,6707,6704,1,0,0,0,6707,6705,1,0,0,0,6707,6706, - 1,0,0,0,6708,653,1,0,0,0,6709,6726,5,401,0,0,6710,6726,5,402,0,0, - 6711,6726,5,416,0,0,6712,6726,5,388,0,0,6713,6726,5,413,0,0,6714, - 6716,5,398,0,0,6715,6717,3,656,328,0,6716,6715,1,0,0,0,6716,6717, - 1,0,0,0,6717,6726,1,0,0,0,6718,6719,5,190,0,0,6719,6726,5,412,0, - 0,6720,6722,7,89,0,0,6721,6723,3,528,264,0,6722,6721,1,0,0,0,6722, - 6723,1,0,0,0,6723,6726,1,0,0,0,6724,6726,5,390,0,0,6725,6709,1,0, - 0,0,6725,6710,1,0,0,0,6725,6711,1,0,0,0,6725,6712,1,0,0,0,6725,6713, - 1,0,0,0,6725,6714,1,0,0,0,6725,6718,1,0,0,0,6725,6720,1,0,0,0,6725, - 6724,1,0,0,0,6726,655,1,0,0,0,6727,6728,5,2,0,0,6728,6729,5,574, - 0,0,6729,6730,5,3,0,0,6730,657,1,0,0,0,6731,6733,5,389,0,0,6732, - 6734,5,374,0,0,6733,6732,1,0,0,0,6733,6734,1,0,0,0,6734,6736,1,0, - 0,0,6735,6737,3,528,264,0,6736,6735,1,0,0,0,6736,6737,1,0,0,0,6737, - 659,1,0,0,0,6738,6740,7,90,0,0,6739,6741,5,374,0,0,6740,6739,1,0, - 0,0,6740,6741,1,0,0,0,6741,6749,1,0,0,0,6742,6749,5,423,0,0,6743, - 6744,5,405,0,0,6744,6746,7,91,0,0,6745,6747,5,374,0,0,6746,6745, - 1,0,0,0,6746,6747,1,0,0,0,6747,6749,1,0,0,0,6748,6738,1,0,0,0,6748, - 6742,1,0,0,0,6748,6743,1,0,0,0,6749,6751,1,0,0,0,6750,6752,3,656, - 328,0,6751,6750,1,0,0,0,6751,6752,1,0,0,0,6752,661,1,0,0,0,6753, - 6755,7,92,0,0,6754,6756,3,656,328,0,6755,6754,1,0,0,0,6755,6756, - 1,0,0,0,6756,6760,1,0,0,0,6757,6758,7,27,0,0,6758,6759,5,418,0,0, - 6759,6761,5,386,0,0,6760,6757,1,0,0,0,6760,6761,1,0,0,0,6761,663, - 1,0,0,0,6762,6792,5,264,0,0,6763,6792,3,666,333,0,6764,6767,5,384, - 0,0,6765,6766,5,94,0,0,6766,6768,5,264,0,0,6767,6765,1,0,0,0,6767, - 6768,1,0,0,0,6768,6792,1,0,0,0,6769,6776,5,176,0,0,6770,6774,5,94, - 0,0,6771,6775,5,218,0,0,6772,6775,5,261,0,0,6773,6775,3,666,333, - 0,6774,6771,1,0,0,0,6774,6772,1,0,0,0,6774,6773,1,0,0,0,6775,6777, - 1,0,0,0,6776,6770,1,0,0,0,6776,6777,1,0,0,0,6777,6792,1,0,0,0,6778, - 6784,5,218,0,0,6779,6782,5,94,0,0,6780,6783,5,261,0,0,6781,6783, - 3,666,333,0,6782,6780,1,0,0,0,6782,6781,1,0,0,0,6783,6785,1,0,0, - 0,6784,6779,1,0,0,0,6784,6785,1,0,0,0,6785,6792,1,0,0,0,6786,6789, - 5,261,0,0,6787,6788,5,94,0,0,6788,6790,3,666,333,0,6789,6787,1,0, - 0,0,6789,6790,1,0,0,0,6790,6792,1,0,0,0,6791,6762,1,0,0,0,6791,6763, - 1,0,0,0,6791,6764,1,0,0,0,6791,6769,1,0,0,0,6791,6778,1,0,0,0,6791, - 6786,1,0,0,0,6792,665,1,0,0,0,6793,6795,5,326,0,0,6794,6796,3,656, - 328,0,6795,6794,1,0,0,0,6795,6796,1,0,0,0,6796,667,1,0,0,0,6797, - 6798,7,93,0,0,6798,669,1,0,0,0,6799,6800,3,672,336,0,6800,671,1, - 0,0,0,6801,6802,6,336,-1,0,6802,6804,3,676,338,0,6803,6805,3,674, - 337,0,6804,6803,1,0,0,0,6804,6805,1,0,0,0,6805,6809,1,0,0,0,6806, - 6807,5,77,0,0,6807,6809,3,672,336,3,6808,6801,1,0,0,0,6808,6806, - 1,0,0,0,6809,6818,1,0,0,0,6810,6811,10,2,0,0,6811,6812,5,33,0,0, - 6812,6817,3,672,336,3,6813,6814,10,1,0,0,6814,6815,5,82,0,0,6815, - 6817,3,672,336,2,6816,6810,1,0,0,0,6816,6813,1,0,0,0,6817,6820,1, - 0,0,0,6818,6816,1,0,0,0,6818,6819,1,0,0,0,6819,673,1,0,0,0,6820, - 6818,1,0,0,0,6821,6822,3,668,334,0,6822,6823,3,676,338,0,6823,6893, - 1,0,0,0,6824,6825,3,668,334,0,6825,6826,3,726,363,0,6826,6832,3, - 716,358,0,6827,6833,3,556,278,0,6828,6829,5,2,0,0,6829,6830,3,670, - 335,0,6830,6831,5,3,0,0,6831,6833,1,0,0,0,6832,6827,1,0,0,0,6832, - 6828,1,0,0,0,6833,6893,1,0,0,0,6834,6836,5,77,0,0,6835,6834,1,0, - 0,0,6835,6836,1,0,0,0,6836,6837,1,0,0,0,6837,6838,5,387,0,0,6838, - 6839,3,676,338,0,6839,6840,5,33,0,0,6840,6841,3,676,338,0,6841,6893, - 1,0,0,0,6842,6844,5,77,0,0,6843,6842,1,0,0,0,6843,6844,1,0,0,0,6844, - 6845,1,0,0,0,6845,6846,5,68,0,0,6846,6847,5,2,0,0,6847,6852,3,670, - 335,0,6848,6849,5,6,0,0,6849,6851,3,670,335,0,6850,6848,1,0,0,0, - 6851,6854,1,0,0,0,6852,6850,1,0,0,0,6852,6853,1,0,0,0,6853,6855, - 1,0,0,0,6854,6852,1,0,0,0,6855,6856,5,3,0,0,6856,6893,1,0,0,0,6857, - 6859,5,77,0,0,6858,6857,1,0,0,0,6858,6859,1,0,0,0,6859,6860,1,0, - 0,0,6860,6861,5,68,0,0,6861,6893,3,556,278,0,6862,6864,5,77,0,0, - 6863,6862,1,0,0,0,6863,6864,1,0,0,0,6864,6873,1,0,0,0,6865,6874, - 5,120,0,0,6866,6874,5,114,0,0,6867,6868,5,127,0,0,6868,6874,5,94, - 0,0,6869,6871,5,387,0,0,6870,6872,5,91,0,0,6871,6870,1,0,0,0,6871, - 6872,1,0,0,0,6872,6874,1,0,0,0,6873,6865,1,0,0,0,6873,6866,1,0,0, - 0,6873,6867,1,0,0,0,6873,6869,1,0,0,0,6874,6875,1,0,0,0,6875,6878, - 3,676,338,0,6876,6877,5,197,0,0,6877,6879,3,676,338,0,6878,6876, - 1,0,0,0,6878,6879,1,0,0,0,6879,6893,1,0,0,0,6880,6882,5,116,0,0, - 6881,6883,5,77,0,0,6882,6881,1,0,0,0,6882,6883,1,0,0,0,6883,6884, - 1,0,0,0,6884,6893,5,78,0,0,6885,6887,5,116,0,0,6886,6888,5,77,0, - 0,6887,6886,1,0,0,0,6887,6888,1,0,0,0,6888,6889,1,0,0,0,6889,6890, - 5,56,0,0,6890,6891,5,64,0,0,6891,6893,3,676,338,0,6892,6821,1,0, - 0,0,6892,6824,1,0,0,0,6892,6835,1,0,0,0,6892,6843,1,0,0,0,6892,6858, - 1,0,0,0,6892,6863,1,0,0,0,6892,6880,1,0,0,0,6892,6885,1,0,0,0,6893, - 675,1,0,0,0,6894,6895,6,338,-1,0,6895,6899,3,678,339,0,6896,6897, - 7,30,0,0,6897,6899,3,676,338,4,6898,6894,1,0,0,0,6898,6896,1,0,0, - 0,6899,6916,1,0,0,0,6900,6901,10,3,0,0,6901,6902,7,94,0,0,6902,6915, - 3,676,338,4,6903,6904,10,2,0,0,6904,6905,7,30,0,0,6905,6915,3,676, - 338,3,6906,6907,10,1,0,0,6907,6908,5,15,0,0,6908,6915,3,676,338, - 2,6909,6910,10,5,0,0,6910,6911,5,142,0,0,6911,6912,5,418,0,0,6912, - 6913,5,386,0,0,6913,6915,3,670,335,0,6914,6900,1,0,0,0,6914,6903, - 1,0,0,0,6914,6906,1,0,0,0,6914,6909,1,0,0,0,6915,6918,1,0,0,0,6916, - 6914,1,0,0,0,6916,6917,1,0,0,0,6917,677,1,0,0,0,6918,6916,1,0,0, - 0,6919,6920,6,339,-1,0,6920,6921,7,95,0,0,6921,7008,3,556,278,0, - 6922,6925,5,35,0,0,6923,6926,3,556,278,0,6924,6926,3,742,371,0,6925, - 6923,1,0,0,0,6925,6924,1,0,0,0,6926,7008,1,0,0,0,6927,6928,5,28, - 0,0,6928,7008,3,756,378,0,6929,6930,5,470,0,0,6930,7008,3,528,264, - 0,6931,7008,5,574,0,0,6932,7008,5,576,0,0,6933,7008,5,566,0,0,6934, - 7008,5,570,0,0,6935,6945,3,812,406,0,6936,6946,3,814,407,0,6937, - 6938,5,2,0,0,6938,6940,3,738,369,0,6939,6941,3,580,290,0,6940,6939, - 1,0,0,0,6940,6941,1,0,0,0,6941,6942,1,0,0,0,6942,6943,5,3,0,0,6943, - 6944,3,814,407,0,6944,6946,1,0,0,0,6945,6936,1,0,0,0,6945,6937,1, - 0,0,0,6946,7008,1,0,0,0,6947,6949,3,652,326,0,6948,6947,1,0,0,0, - 6948,6949,1,0,0,0,6949,6950,1,0,0,0,6950,7008,3,814,407,0,6951,6959, - 5,403,0,0,6952,6954,3,814,407,0,6953,6955,3,664,332,0,6954,6953, - 1,0,0,0,6954,6955,1,0,0,0,6955,6960,1,0,0,0,6956,6957,3,656,328, - 0,6957,6958,3,814,407,0,6958,6960,1,0,0,0,6959,6952,1,0,0,0,6959, - 6956,1,0,0,0,6960,7008,1,0,0,0,6961,7008,5,96,0,0,6962,7008,5,60, - 0,0,6963,7008,5,78,0,0,6964,7008,5,577,0,0,6965,6966,5,2,0,0,6966, - 6967,3,670,335,0,6967,6968,5,3,0,0,6968,6969,3,756,378,0,6969,7008, - 1,0,0,0,6970,6972,5,40,0,0,6971,6973,3,670,335,0,6972,6971,1,0,0, - 0,6972,6973,1,0,0,0,6973,6975,1,0,0,0,6974,6976,3,750,375,0,6975, - 6974,1,0,0,0,6976,6977,1,0,0,0,6977,6975,1,0,0,0,6977,6978,1,0,0, - 0,6978,6981,1,0,0,0,6979,6980,5,58,0,0,6980,6982,3,670,335,0,6981, - 6979,1,0,0,0,6981,6982,1,0,0,0,6982,6983,1,0,0,0,6983,6984,5,454, - 0,0,6984,7008,1,0,0,0,6985,7008,3,682,341,0,6986,6988,3,556,278, - 0,6987,6989,3,754,377,0,6988,6987,1,0,0,0,6988,6989,1,0,0,0,6989, - 7008,1,0,0,0,6990,7008,3,714,357,0,6991,6992,5,2,0,0,6992,6993,3, - 670,335,0,6993,6994,5,6,0,0,6994,6995,3,728,364,0,6995,6996,5,3, - 0,0,6996,7008,1,0,0,0,6997,6998,3,712,356,0,6998,6999,5,125,0,0, - 6999,7000,3,712,356,0,7000,7008,1,0,0,0,7001,7008,3,806,403,0,7002, - 7003,7,30,0,0,7003,7008,3,678,339,5,7004,7005,3,722,361,0,7005,7006, - 3,678,339,2,7006,7008,1,0,0,0,7007,6919,1,0,0,0,7007,6922,1,0,0, - 0,7007,6927,1,0,0,0,7007,6929,1,0,0,0,7007,6931,1,0,0,0,7007,6932, - 1,0,0,0,7007,6933,1,0,0,0,7007,6934,1,0,0,0,7007,6935,1,0,0,0,7007, - 6948,1,0,0,0,7007,6951,1,0,0,0,7007,6961,1,0,0,0,7007,6962,1,0,0, - 0,7007,6963,1,0,0,0,7007,6964,1,0,0,0,7007,6965,1,0,0,0,7007,6970, - 1,0,0,0,7007,6985,1,0,0,0,7007,6986,1,0,0,0,7007,6990,1,0,0,0,7007, - 6991,1,0,0,0,7007,6997,1,0,0,0,7007,7001,1,0,0,0,7007,7002,1,0,0, - 0,7007,7004,1,0,0,0,7008,7036,1,0,0,0,7009,7010,10,3,0,0,7010,7011, - 3,720,360,0,7011,7012,3,678,339,4,7012,7035,1,0,0,0,7013,7014,10, - 6,0,0,7014,7015,5,26,0,0,7015,7035,3,648,324,0,7016,7017,10,4,0, - 0,7017,7019,3,722,361,0,7018,7020,3,678,339,0,7019,7018,1,0,0,0, - 7019,7020,1,0,0,0,7020,7035,1,0,0,0,7021,7022,10,1,0,0,7022,7024, - 5,116,0,0,7023,7025,5,77,0,0,7024,7023,1,0,0,0,7024,7025,1,0,0,0, - 7025,7032,1,0,0,0,7026,7027,5,56,0,0,7027,7028,5,64,0,0,7028,7033, - 3,678,339,0,7029,7030,5,275,0,0,7030,7033,3,522,261,0,7031,7033, - 5,188,0,0,7032,7026,1,0,0,0,7032,7029,1,0,0,0,7032,7031,1,0,0,0, - 7033,7035,1,0,0,0,7034,7009,1,0,0,0,7034,7013,1,0,0,0,7034,7016, - 1,0,0,0,7034,7021,1,0,0,0,7035,7038,1,0,0,0,7036,7034,1,0,0,0,7036, - 7037,1,0,0,0,7037,679,1,0,0,0,7038,7036,1,0,0,0,7039,7040,3,812, - 406,0,7040,7061,5,2,0,0,7041,7045,3,738,369,0,7042,7043,5,6,0,0, - 7043,7044,5,101,0,0,7044,7046,3,740,370,0,7045,7042,1,0,0,0,7045, - 7046,1,0,0,0,7046,7048,1,0,0,0,7047,7049,3,580,290,0,7048,7047,1, - 0,0,0,7048,7049,1,0,0,0,7049,7062,1,0,0,0,7050,7051,5,101,0,0,7051, - 7053,3,740,370,0,7052,7054,3,580,290,0,7053,7052,1,0,0,0,7053,7054, - 1,0,0,0,7054,7062,1,0,0,0,7055,7056,7,81,0,0,7056,7058,3,738,369, - 0,7057,7059,3,580,290,0,7058,7057,1,0,0,0,7058,7059,1,0,0,0,7059, - 7062,1,0,0,0,7060,7062,5,9,0,0,7061,7041,1,0,0,0,7061,7050,1,0,0, - 0,7061,7055,1,0,0,0,7061,7060,1,0,0,0,7061,7062,1,0,0,0,7062,7063, - 1,0,0,0,7063,7064,5,3,0,0,7064,681,1,0,0,0,7065,7072,3,680,340,0, - 7066,7067,5,479,0,0,7067,7068,5,66,0,0,7068,7069,5,2,0,0,7069,7070, - 3,580,290,0,7070,7071,5,3,0,0,7071,7073,1,0,0,0,7072,7066,1,0,0, - 0,7072,7073,1,0,0,0,7073,7080,1,0,0,0,7074,7075,5,480,0,0,7075,7076, - 5,2,0,0,7076,7077,5,103,0,0,7077,7078,3,670,335,0,7078,7079,5,3, - 0,0,7079,7081,1,0,0,0,7080,7074,1,0,0,0,7080,7081,1,0,0,0,7081,7087, - 1,0,0,0,7082,7085,5,124,0,0,7083,7086,3,706,353,0,7084,7086,3,824, - 412,0,7085,7083,1,0,0,0,7085,7084,1,0,0,0,7086,7088,1,0,0,0,7087, - 7082,1,0,0,0,7087,7088,1,0,0,0,7088,7091,1,0,0,0,7089,7091,3,686, - 343,0,7090,7065,1,0,0,0,7090,7089,1,0,0,0,7091,683,1,0,0,0,7092, - 7095,3,680,340,0,7093,7095,3,686,343,0,7094,7092,1,0,0,0,7094,7093, - 1,0,0,0,7095,685,1,0,0,0,7096,7097,5,108,0,0,7097,7098,5,62,0,0, - 7098,7099,5,2,0,0,7099,7100,3,670,335,0,7100,7101,5,3,0,0,7101,7271, - 1,0,0,0,7102,7271,5,48,0,0,7103,7105,7,96,0,0,7104,7106,3,656,328, - 0,7105,7104,1,0,0,0,7105,7106,1,0,0,0,7106,7271,1,0,0,0,7107,7271, - 5,49,0,0,7108,7271,5,52,0,0,7109,7271,5,89,0,0,7110,7271,5,99,0, - 0,7111,7271,5,47,0,0,7112,7271,5,111,0,0,7113,7114,7,97,0,0,7114, - 7115,5,2,0,0,7115,7116,3,670,335,0,7116,7117,5,36,0,0,7117,7118, - 3,648,324,0,7118,7119,5,3,0,0,7119,7271,1,0,0,0,7120,7121,5,397, - 0,0,7121,7126,5,2,0,0,7122,7123,3,744,372,0,7123,7124,5,64,0,0,7124, - 7125,3,670,335,0,7125,7127,1,0,0,0,7126,7122,1,0,0,0,7126,7127,1, - 0,0,0,7127,7128,1,0,0,0,7128,7271,5,3,0,0,7129,7130,5,489,0,0,7130, - 7131,5,2,0,0,7131,7134,3,670,335,0,7132,7133,5,6,0,0,7133,7135,3, - 746,373,0,7134,7132,1,0,0,0,7134,7135,1,0,0,0,7135,7136,1,0,0,0, - 7136,7137,5,3,0,0,7137,7271,1,0,0,0,7138,7139,5,410,0,0,7139,7140, - 5,2,0,0,7140,7141,3,670,335,0,7141,7142,5,84,0,0,7142,7143,3,670, - 335,0,7143,7144,5,64,0,0,7144,7147,3,670,335,0,7145,7146,5,62,0, - 0,7146,7148,3,670,335,0,7147,7145,1,0,0,0,7147,7148,1,0,0,0,7148, - 7149,1,0,0,0,7149,7150,5,3,0,0,7150,7271,1,0,0,0,7151,7152,5,411, - 0,0,7152,7157,5,2,0,0,7153,7154,3,678,339,0,7154,7155,5,68,0,0,7155, - 7156,3,678,339,0,7156,7158,1,0,0,0,7157,7153,1,0,0,0,7157,7158,1, - 0,0,0,7158,7159,1,0,0,0,7159,7271,5,3,0,0,7160,7161,5,417,0,0,7161, - 7163,5,2,0,0,7162,7164,3,748,374,0,7163,7162,1,0,0,0,7163,7164,1, - 0,0,0,7164,7165,1,0,0,0,7165,7271,5,3,0,0,7166,7167,5,421,0,0,7167, - 7169,5,2,0,0,7168,7170,7,98,0,0,7169,7168,1,0,0,0,7169,7170,1,0, - 0,0,7170,7175,1,0,0,0,7171,7173,3,670,335,0,7172,7171,1,0,0,0,7172, - 7173,1,0,0,0,7173,7174,1,0,0,0,7174,7176,5,64,0,0,7175,7172,1,0, - 0,0,7175,7176,1,0,0,0,7176,7177,1,0,0,0,7177,7178,3,728,364,0,7178, - 7179,1,0,0,0,7179,7180,5,3,0,0,7180,7271,1,0,0,0,7181,7182,5,408, - 0,0,7182,7183,5,2,0,0,7183,7184,3,670,335,0,7184,7185,5,6,0,0,7185, - 7186,3,670,335,0,7186,7187,5,3,0,0,7187,7271,1,0,0,0,7188,7189,7, - 99,0,0,7189,7271,3,528,264,0,7190,7191,5,426,0,0,7191,7192,5,2,0, - 0,7192,7193,5,266,0,0,7193,7203,3,830,415,0,7194,7201,5,6,0,0,7195, - 7196,5,424,0,0,7196,7197,5,2,0,0,7197,7198,3,688,344,0,7198,7199, - 5,3,0,0,7199,7202,1,0,0,0,7200,7202,3,728,364,0,7201,7195,1,0,0, - 0,7201,7200,1,0,0,0,7202,7204,1,0,0,0,7203,7194,1,0,0,0,7203,7204, - 1,0,0,0,7204,7205,1,0,0,0,7205,7206,5,3,0,0,7206,7271,1,0,0,0,7207, - 7208,5,427,0,0,7208,7209,5,2,0,0,7209,7210,3,678,339,0,7210,7211, - 3,694,347,0,7211,7212,5,3,0,0,7212,7271,1,0,0,0,7213,7214,5,428, - 0,0,7214,7215,5,2,0,0,7215,7216,3,688,344,0,7216,7217,5,3,0,0,7217, - 7271,1,0,0,0,7218,7219,5,429,0,0,7219,7220,5,2,0,0,7220,7221,3,692, - 346,0,7221,7224,3,670,335,0,7222,7223,7,100,0,0,7223,7225,5,378, - 0,0,7224,7222,1,0,0,0,7224,7225,1,0,0,0,7225,7226,1,0,0,0,7226,7227, - 5,3,0,0,7227,7271,1,0,0,0,7228,7229,5,430,0,0,7229,7230,5,2,0,0, - 7230,7231,5,266,0,0,7231,7234,3,830,415,0,7232,7233,5,6,0,0,7233, - 7235,3,670,335,0,7234,7232,1,0,0,0,7234,7235,1,0,0,0,7235,7236,1, - 0,0,0,7236,7237,5,3,0,0,7237,7271,1,0,0,0,7238,7239,5,431,0,0,7239, - 7240,5,2,0,0,7240,7241,5,383,0,0,7241,7242,3,670,335,0,7242,7243, - 5,6,0,0,7243,7247,5,375,0,0,7244,7245,5,269,0,0,7245,7248,5,450, - 0,0,7246,7248,3,670,335,0,7247,7244,1,0,0,0,7247,7246,1,0,0,0,7248, - 7258,1,0,0,0,7249,7250,5,6,0,0,7250,7256,5,339,0,0,7251,7253,5,269, - 0,0,7252,7251,1,0,0,0,7252,7253,1,0,0,0,7253,7254,1,0,0,0,7254,7257, - 5,450,0,0,7255,7257,5,385,0,0,7256,7252,1,0,0,0,7256,7255,1,0,0, - 0,7257,7259,1,0,0,0,7258,7249,1,0,0,0,7258,7259,1,0,0,0,7259,7260, - 1,0,0,0,7260,7261,5,3,0,0,7261,7271,1,0,0,0,7262,7263,5,432,0,0, - 7263,7264,5,2,0,0,7264,7265,3,692,346,0,7265,7266,3,670,335,0,7266, - 7267,5,36,0,0,7267,7268,3,650,325,0,7268,7269,5,3,0,0,7269,7271, - 1,0,0,0,7270,7096,1,0,0,0,7270,7102,1,0,0,0,7270,7103,1,0,0,0,7270, - 7107,1,0,0,0,7270,7108,1,0,0,0,7270,7109,1,0,0,0,7270,7110,1,0,0, - 0,7270,7111,1,0,0,0,7270,7112,1,0,0,0,7270,7113,1,0,0,0,7270,7120, - 1,0,0,0,7270,7129,1,0,0,0,7270,7138,1,0,0,0,7270,7151,1,0,0,0,7270, - 7160,1,0,0,0,7270,7166,1,0,0,0,7270,7181,1,0,0,0,7270,7188,1,0,0, - 0,7270,7190,1,0,0,0,7270,7207,1,0,0,0,7270,7213,1,0,0,0,7270,7218, - 1,0,0,0,7270,7228,1,0,0,0,7270,7238,1,0,0,0,7270,7262,1,0,0,0,7271, - 687,1,0,0,0,7272,7277,3,690,345,0,7273,7274,5,6,0,0,7274,7276,3, - 690,345,0,7275,7273,1,0,0,0,7276,7279,1,0,0,0,7277,7275,1,0,0,0, - 7277,7278,1,0,0,0,7278,689,1,0,0,0,7279,7277,1,0,0,0,7280,7283,3, - 670,335,0,7281,7282,5,36,0,0,7282,7284,3,830,415,0,7283,7281,1,0, - 0,0,7283,7284,1,0,0,0,7284,691,1,0,0,0,7285,7286,7,101,0,0,7286, - 693,1,0,0,0,7287,7289,5,286,0,0,7288,7290,3,696,348,0,7289,7288, - 1,0,0,0,7289,7290,1,0,0,0,7290,7291,1,0,0,0,7291,7293,3,678,339, - 0,7292,7294,3,696,348,0,7293,7292,1,0,0,0,7293,7294,1,0,0,0,7294, - 695,1,0,0,0,7295,7296,5,147,0,0,7296,7297,7,102,0,0,7297,697,1,0, - 0,0,7298,7299,5,104,0,0,7299,7304,3,702,351,0,7300,7301,5,6,0,0, - 7301,7303,3,702,351,0,7302,7300,1,0,0,0,7303,7306,1,0,0,0,7304,7302, - 1,0,0,0,7304,7305,1,0,0,0,7305,699,1,0,0,0,7306,7304,1,0,0,0,7307, - 7308,5,67,0,0,7308,7309,3,670,335,0,7309,701,1,0,0,0,7310,7311,3, - 824,412,0,7311,7312,5,36,0,0,7312,7313,3,706,353,0,7313,703,1,0, - 0,0,7314,7317,5,124,0,0,7315,7318,3,706,353,0,7316,7318,3,824,412, - 0,7317,7315,1,0,0,0,7317,7316,1,0,0,0,7318,705,1,0,0,0,7319,7321, - 5,2,0,0,7320,7322,3,824,412,0,7321,7320,1,0,0,0,7321,7322,1,0,0, - 0,7322,7326,1,0,0,0,7323,7324,5,285,0,0,7324,7325,5,147,0,0,7325, - 7327,3,728,364,0,7326,7323,1,0,0,0,7326,7327,1,0,0,0,7327,7329,1, - 0,0,0,7328,7330,3,580,290,0,7329,7328,1,0,0,0,7329,7330,1,0,0,0, - 7330,7332,1,0,0,0,7331,7333,3,708,354,0,7332,7331,1,0,0,0,7332,7333, - 1,0,0,0,7333,7334,1,0,0,0,7334,7335,5,3,0,0,7335,707,1,0,0,0,7336, - 7341,7,103,0,0,7337,7338,5,387,0,0,7338,7339,3,710,355,0,7339,7340, - 5,33,0,0,7340,7342,1,0,0,0,7341,7337,1,0,0,0,7341,7342,1,0,0,0,7342, - 7343,1,0,0,0,7343,7344,3,710,355,0,7344,7354,1,0,0,0,7345,7352,5, - 199,0,0,7346,7347,5,434,0,0,7347,7353,5,414,0,0,7348,7353,5,66,0, - 0,7349,7353,5,467,0,0,7350,7351,5,269,0,0,7351,7353,5,482,0,0,7352, - 7346,1,0,0,0,7352,7348,1,0,0,0,7352,7349,1,0,0,0,7352,7350,1,0,0, - 0,7353,7355,1,0,0,0,7354,7345,1,0,0,0,7354,7355,1,0,0,0,7355,709, - 1,0,0,0,7356,7359,5,362,0,0,7357,7359,3,670,335,0,7358,7356,1,0, - 0,0,7358,7357,1,0,0,0,7359,7360,1,0,0,0,7360,7364,7,104,0,0,7361, - 7362,5,434,0,0,7362,7364,5,414,0,0,7363,7358,1,0,0,0,7363,7361,1, - 0,0,0,7364,711,1,0,0,0,7365,7373,3,714,357,0,7366,7367,5,2,0,0,7367, - 7368,3,728,364,0,7368,7369,5,6,0,0,7369,7370,3,670,335,0,7370,7371, - 5,3,0,0,7371,7373,1,0,0,0,7372,7365,1,0,0,0,7372,7366,1,0,0,0,7373, - 713,1,0,0,0,7374,7375,5,414,0,0,7375,7377,5,2,0,0,7376,7378,3,728, - 364,0,7377,7376,1,0,0,0,7377,7378,1,0,0,0,7378,7379,1,0,0,0,7379, - 7380,5,3,0,0,7380,715,1,0,0,0,7381,7382,7,105,0,0,7382,717,1,0,0, - 0,7383,7386,5,29,0,0,7384,7386,3,720,360,0,7385,7383,1,0,0,0,7385, - 7384,1,0,0,0,7386,719,1,0,0,0,7387,7388,7,106,0,0,7388,721,1,0,0, - 0,7389,7396,5,29,0,0,7390,7391,5,278,0,0,7391,7392,5,2,0,0,7392, - 7393,3,408,204,0,7393,7394,5,3,0,0,7394,7396,1,0,0,0,7395,7389,1, - 0,0,0,7395,7390,1,0,0,0,7396,723,1,0,0,0,7397,7404,3,718,359,0,7398, - 7399,5,278,0,0,7399,7400,5,2,0,0,7400,7401,3,408,204,0,7401,7402, - 5,3,0,0,7402,7404,1,0,0,0,7403,7397,1,0,0,0,7403,7398,1,0,0,0,7404, - 725,1,0,0,0,7405,7411,3,724,362,0,7406,7408,5,77,0,0,7407,7406,1, - 0,0,0,7407,7408,1,0,0,0,7408,7409,1,0,0,0,7409,7411,7,107,0,0,7410, - 7405,1,0,0,0,7410,7407,1,0,0,0,7411,727,1,0,0,0,7412,7417,3,670, - 335,0,7413,7414,5,6,0,0,7414,7416,3,670,335,0,7415,7413,1,0,0,0, - 7416,7419,1,0,0,0,7417,7415,1,0,0,0,7417,7418,1,0,0,0,7418,729,1, - 0,0,0,7419,7417,1,0,0,0,7420,7421,3,670,335,0,7421,731,1,0,0,0,7422, - 7423,3,804,402,0,7423,733,1,0,0,0,7424,7425,5,2,0,0,7425,7426,3, - 670,335,0,7426,7427,5,3,0,0,7427,7430,1,0,0,0,7428,7430,3,804,402, - 0,7429,7424,1,0,0,0,7429,7428,1,0,0,0,7430,735,1,0,0,0,7431,7434, - 3,670,335,0,7432,7434,3,804,402,0,7433,7431,1,0,0,0,7433,7432,1, - 0,0,0,7434,737,1,0,0,0,7435,7440,3,740,370,0,7436,7437,5,6,0,0,7437, - 7439,3,740,370,0,7438,7436,1,0,0,0,7439,7442,1,0,0,0,7440,7438,1, - 0,0,0,7440,7441,1,0,0,0,7441,739,1,0,0,0,7442,7440,1,0,0,0,7443, - 7451,3,804,402,0,7444,7451,3,670,335,0,7445,7448,3,826,413,0,7446, - 7447,7,108,0,0,7447,7449,3,670,335,0,7448,7446,1,0,0,0,7448,7449, - 1,0,0,0,7449,7451,1,0,0,0,7450,7443,1,0,0,0,7450,7444,1,0,0,0,7450, - 7445,1,0,0,0,7451,741,1,0,0,0,7452,7462,5,4,0,0,7453,7463,3,728, - 364,0,7454,7459,3,742,371,0,7455,7456,5,6,0,0,7456,7458,3,742,371, - 0,7457,7455,1,0,0,0,7458,7461,1,0,0,0,7459,7457,1,0,0,0,7459,7460, - 1,0,0,0,7460,7463,1,0,0,0,7461,7459,1,0,0,0,7462,7453,1,0,0,0,7462, - 7454,1,0,0,0,7462,7463,1,0,0,0,7463,7464,1,0,0,0,7464,7465,5,5,0, - 0,7465,743,1,0,0,0,7466,7475,3,832,416,0,7467,7475,5,384,0,0,7468, - 7475,5,264,0,0,7469,7475,5,176,0,0,7470,7475,5,218,0,0,7471,7475, - 5,261,0,0,7472,7475,5,326,0,0,7473,7475,3,814,407,0,7474,7466,1, - 0,0,0,7474,7467,1,0,0,0,7474,7468,1,0,0,0,7474,7469,1,0,0,0,7474, - 7470,1,0,0,0,7474,7471,1,0,0,0,7474,7472,1,0,0,0,7474,7473,1,0,0, - 0,7475,745,1,0,0,0,7476,7477,7,109,0,0,7477,747,1,0,0,0,7478,7479, - 3,670,335,0,7479,7480,5,64,0,0,7480,7483,3,670,335,0,7481,7482,5, - 62,0,0,7482,7484,3,670,335,0,7483,7481,1,0,0,0,7483,7484,1,0,0,0, - 7484,7500,1,0,0,0,7485,7486,3,670,335,0,7486,7487,5,62,0,0,7487, - 7490,3,670,335,0,7488,7489,5,64,0,0,7489,7491,3,670,335,0,7490,7488, - 1,0,0,0,7490,7491,1,0,0,0,7491,7500,1,0,0,0,7492,7493,3,670,335, - 0,7493,7494,5,127,0,0,7494,7495,3,670,335,0,7495,7496,5,197,0,0, - 7496,7497,3,670,335,0,7497,7500,1,0,0,0,7498,7500,3,728,364,0,7499, - 7478,1,0,0,0,7499,7485,1,0,0,0,7499,7492,1,0,0,0,7499,7498,1,0,0, - 0,7500,749,1,0,0,0,7501,7502,5,102,0,0,7502,7503,3,670,335,0,7503, - 7504,5,93,0,0,7504,7505,3,670,335,0,7505,751,1,0,0,0,7506,7509,5, - 11,0,0,7507,7510,3,830,415,0,7508,7510,5,9,0,0,7509,7507,1,0,0,0, - 7509,7508,1,0,0,0,7510,7524,1,0,0,0,7511,7520,5,4,0,0,7512,7521, - 3,670,335,0,7513,7515,3,670,335,0,7514,7513,1,0,0,0,7514,7515,1, - 0,0,0,7515,7516,1,0,0,0,7516,7518,5,8,0,0,7517,7519,3,670,335,0, - 7518,7517,1,0,0,0,7518,7519,1,0,0,0,7519,7521,1,0,0,0,7520,7512, - 1,0,0,0,7520,7514,1,0,0,0,7521,7522,1,0,0,0,7522,7524,5,5,0,0,7523, - 7506,1,0,0,0,7523,7511,1,0,0,0,7524,753,1,0,0,0,7525,7527,3,752, - 376,0,7526,7525,1,0,0,0,7527,7528,1,0,0,0,7528,7526,1,0,0,0,7528, - 7529,1,0,0,0,7529,755,1,0,0,0,7530,7532,3,752,376,0,7531,7530,1, - 0,0,0,7532,7535,1,0,0,0,7533,7531,1,0,0,0,7533,7534,1,0,0,0,7534, - 757,1,0,0,0,7535,7533,1,0,0,0,7536,7541,3,760,380,0,7537,7538,5, - 6,0,0,7538,7540,3,760,380,0,7539,7537,1,0,0,0,7540,7543,1,0,0,0, - 7541,7539,1,0,0,0,7541,7542,1,0,0,0,7542,759,1,0,0,0,7543,7541,1, - 0,0,0,7544,7557,3,762,381,0,7545,7548,3,732,366,0,7546,7548,3,730, - 365,0,7547,7545,1,0,0,0,7547,7546,1,0,0,0,7548,7554,1,0,0,0,7549, - 7551,5,36,0,0,7550,7549,1,0,0,0,7550,7551,1,0,0,0,7551,7552,1,0, - 0,0,7552,7555,3,832,416,0,7553,7555,1,0,0,0,7554,7550,1,0,0,0,7554, - 7553,1,0,0,0,7555,7557,1,0,0,0,7556,7544,1,0,0,0,7556,7547,1,0,0, - 0,7557,761,1,0,0,0,7558,7559,3,824,412,0,7559,7560,5,11,0,0,7560, - 7562,1,0,0,0,7561,7558,1,0,0,0,7562,7565,1,0,0,0,7563,7561,1,0,0, - 0,7563,7564,1,0,0,0,7564,7566,1,0,0,0,7565,7563,1,0,0,0,7566,7567, - 5,9,0,0,7567,763,1,0,0,0,7568,7573,3,784,392,0,7569,7570,5,6,0,0, - 7570,7572,3,784,392,0,7571,7569,1,0,0,0,7572,7575,1,0,0,0,7573,7571, - 1,0,0,0,7573,7574,1,0,0,0,7574,765,1,0,0,0,7575,7573,1,0,0,0,7576, - 7581,3,778,389,0,7577,7578,5,6,0,0,7578,7580,3,778,389,0,7579,7577, - 1,0,0,0,7580,7583,1,0,0,0,7581,7579,1,0,0,0,7581,7582,1,0,0,0,7582, - 767,1,0,0,0,7583,7581,1,0,0,0,7584,7589,3,794,397,0,7585,7586,5, - 6,0,0,7586,7588,3,794,397,0,7587,7585,1,0,0,0,7588,7591,1,0,0,0, - 7589,7587,1,0,0,0,7589,7590,1,0,0,0,7590,769,1,0,0,0,7591,7589,1, - 0,0,0,7592,7597,3,792,396,0,7593,7594,5,6,0,0,7594,7596,3,792,396, - 0,7595,7593,1,0,0,0,7596,7599,1,0,0,0,7597,7595,1,0,0,0,7597,7598, - 1,0,0,0,7598,771,1,0,0,0,7599,7597,1,0,0,0,7600,7601,3,784,392,0, - 7601,773,1,0,0,0,7602,7603,3,784,392,0,7603,775,1,0,0,0,7604,7605, - 3,784,392,0,7605,777,1,0,0,0,7606,7607,3,784,392,0,7607,779,1,0, - 0,0,7608,7609,3,784,392,0,7609,781,1,0,0,0,7610,7611,3,310,155,0, - 7611,783,1,0,0,0,7612,7614,3,824,412,0,7613,7615,3,754,377,0,7614, - 7613,1,0,0,0,7614,7615,1,0,0,0,7615,785,1,0,0,0,7616,7621,3,774, - 387,0,7617,7618,5,6,0,0,7618,7620,3,774,387,0,7619,7617,1,0,0,0, - 7620,7623,1,0,0,0,7621,7619,1,0,0,0,7621,7622,1,0,0,0,7622,787,1, - 0,0,0,7623,7621,1,0,0,0,7624,7629,3,824,412,0,7625,7626,5,6,0,0, - 7626,7628,3,824,412,0,7627,7625,1,0,0,0,7628,7631,1,0,0,0,7629,7627, - 1,0,0,0,7629,7630,1,0,0,0,7630,789,1,0,0,0,7631,7629,1,0,0,0,7632, - 7633,3,310,155,0,7633,791,1,0,0,0,7634,7635,3,310,155,0,7635,793, - 1,0,0,0,7636,7637,3,310,155,0,7637,795,1,0,0,0,7638,7639,3,824,412, - 0,7639,797,1,0,0,0,7640,7641,3,824,412,0,7641,799,1,0,0,0,7642,7647, - 3,826,413,0,7643,7644,3,824,412,0,7644,7645,3,754,377,0,7645,7647, - 1,0,0,0,7646,7642,1,0,0,0,7646,7643,1,0,0,0,7647,801,1,0,0,0,7648, - 7653,3,826,413,0,7649,7650,3,824,412,0,7650,7651,3,754,377,0,7651, - 7653,1,0,0,0,7652,7648,1,0,0,0,7652,7649,1,0,0,0,7653,803,1,0,0, - 0,7654,7655,3,824,412,0,7655,7656,3,756,378,0,7656,7659,1,0,0,0, - 7657,7659,4,402,10,0,7658,7654,1,0,0,0,7658,7657,1,0,0,0,7659,805, - 1,0,0,0,7660,7661,3,824,412,0,7661,7662,3,756,378,0,7662,807,1,0, - 0,0,7663,7664,3,824,412,0,7664,809,1,0,0,0,7665,7670,3,826,413,0, - 7666,7667,3,824,412,0,7667,7668,3,754,377,0,7668,7670,1,0,0,0,7669, - 7665,1,0,0,0,7669,7666,1,0,0,0,7670,811,1,0,0,0,7671,7676,3,826, - 413,0,7672,7673,3,824,412,0,7673,7674,3,754,377,0,7674,7676,1,0, - 0,0,7675,7671,1,0,0,0,7675,7672,1,0,0,0,7676,813,1,0,0,0,7677,7680, - 3,816,408,0,7678,7679,5,487,0,0,7679,7681,3,816,408,0,7680,7678, - 1,0,0,0,7680,7681,1,0,0,0,7681,815,1,0,0,0,7682,7694,5,561,0,0,7683, - 7694,5,563,0,0,7684,7688,5,565,0,0,7685,7687,5,590,0,0,7686,7685, - 1,0,0,0,7687,7690,1,0,0,0,7688,7686,1,0,0,0,7688,7689,1,0,0,0,7689, - 7691,1,0,0,0,7690,7688,1,0,0,0,7691,7694,5,591,0,0,7692,7694,5,586, - 0,0,7693,7682,1,0,0,0,7693,7683,1,0,0,0,7693,7684,1,0,0,0,7693,7692, - 1,0,0,0,7694,817,1,0,0,0,7695,7697,7,30,0,0,7696,7695,1,0,0,0,7696, - 7697,1,0,0,0,7697,7698,1,0,0,0,7698,7699,5,574,0,0,7699,819,1,0, - 0,0,7700,7706,3,828,414,0,7701,7706,5,52,0,0,7702,7706,5,49,0,0, - 7703,7706,5,89,0,0,7704,7706,5,524,0,0,7705,7700,1,0,0,0,7705,7701, - 1,0,0,0,7705,7702,1,0,0,0,7705,7703,1,0,0,0,7705,7704,1,0,0,0,7706, - 821,1,0,0,0,7707,7712,3,820,410,0,7708,7709,5,6,0,0,7709,7711,3, - 820,410,0,7710,7708,1,0,0,0,7711,7714,1,0,0,0,7712,7710,1,0,0,0, - 7712,7713,1,0,0,0,7713,823,1,0,0,0,7714,7712,1,0,0,0,7715,7718,3, - 832,416,0,7716,7718,3,836,418,0,7717,7715,1,0,0,0,7717,7716,1,0, - 0,0,7718,825,1,0,0,0,7719,7722,3,832,416,0,7720,7722,3,838,419,0, - 7721,7719,1,0,0,0,7721,7720,1,0,0,0,7722,827,1,0,0,0,7723,7727,3, - 832,416,0,7724,7727,3,836,418,0,7725,7727,3,838,419,0,7726,7723, - 1,0,0,0,7726,7724,1,0,0,0,7726,7725,1,0,0,0,7727,829,1,0,0,0,7728, - 7733,3,832,416,0,7729,7733,3,836,418,0,7730,7733,3,838,419,0,7731, - 7733,3,840,420,0,7732,7728,1,0,0,0,7732,7729,1,0,0,0,7732,7730,1, - 0,0,0,7732,7731,1,0,0,0,7733,831,1,0,0,0,7734,7737,5,552,0,0,7735, - 7736,5,487,0,0,7736,7738,3,816,408,0,7737,7735,1,0,0,0,7737,7738, - 1,0,0,0,7738,7746,1,0,0,0,7739,7746,3,814,407,0,7740,7746,5,553, - 0,0,7741,7746,5,557,0,0,7742,7746,5,577,0,0,7743,7746,5,578,0,0, - 7744,7746,3,834,417,0,7745,7734,1,0,0,0,7745,7739,1,0,0,0,7745,7740, - 1,0,0,0,7745,7741,1,0,0,0,7745,7742,1,0,0,0,7745,7743,1,0,0,0,7745, - 7744,1,0,0,0,7746,833,1,0,0,0,7747,7748,7,110,0,0,7748,835,1,0,0, - 0,7749,7801,5,387,0,0,7750,7801,5,388,0,0,7751,7801,3,658,329,0, - 7752,7801,5,390,0,0,7753,7801,5,391,0,0,7754,7801,3,660,330,0,7755, - 7801,5,393,0,0,7756,7801,5,394,0,0,7757,7801,5,395,0,0,7758,7801, - 5,396,0,0,7759,7801,5,397,0,0,7760,7801,5,398,0,0,7761,7801,5,399, - 0,0,7762,7801,5,470,0,0,7763,7801,5,400,0,0,7764,7801,5,401,0,0, - 7765,7801,5,402,0,0,7766,7801,5,403,0,0,7767,7801,5,404,0,0,7768, - 7801,5,405,0,0,7769,7801,5,406,0,0,7770,7801,5,407,0,0,7771,7801, - 5,489,0,0,7772,7801,5,408,0,0,7773,7801,3,654,327,0,7774,7801,5, - 453,0,0,7775,7801,5,410,0,0,7776,7801,5,411,0,0,7777,7801,5,412, - 0,0,7778,7801,5,413,0,0,7779,7801,5,414,0,0,7780,7801,5,415,0,0, - 7781,7801,5,416,0,0,7782,7801,5,417,0,0,7783,7801,5,418,0,0,7784, - 7801,5,419,0,0,7785,7801,5,420,0,0,7786,7801,5,421,0,0,7787,7801, - 5,422,0,0,7788,7801,5,423,0,0,7789,7801,5,424,0,0,7790,7801,5,425, - 0,0,7791,7801,5,426,0,0,7792,7801,5,427,0,0,7793,7801,5,428,0,0, - 7794,7801,5,476,0,0,7795,7801,5,429,0,0,7796,7801,5,430,0,0,7797, - 7801,5,431,0,0,7798,7801,5,432,0,0,7799,7801,5,474,0,0,7800,7749, - 1,0,0,0,7800,7750,1,0,0,0,7800,7751,1,0,0,0,7800,7752,1,0,0,0,7800, - 7753,1,0,0,0,7800,7754,1,0,0,0,7800,7755,1,0,0,0,7800,7756,1,0,0, - 0,7800,7757,1,0,0,0,7800,7758,1,0,0,0,7800,7759,1,0,0,0,7800,7760, - 1,0,0,0,7800,7761,1,0,0,0,7800,7762,1,0,0,0,7800,7763,1,0,0,0,7800, - 7764,1,0,0,0,7800,7765,1,0,0,0,7800,7766,1,0,0,0,7800,7767,1,0,0, - 0,7800,7768,1,0,0,0,7800,7769,1,0,0,0,7800,7770,1,0,0,0,7800,7771, - 1,0,0,0,7800,7772,1,0,0,0,7800,7773,1,0,0,0,7800,7774,1,0,0,0,7800, - 7775,1,0,0,0,7800,7776,1,0,0,0,7800,7777,1,0,0,0,7800,7778,1,0,0, - 0,7800,7779,1,0,0,0,7800,7780,1,0,0,0,7800,7781,1,0,0,0,7800,7782, - 1,0,0,0,7800,7783,1,0,0,0,7800,7784,1,0,0,0,7800,7785,1,0,0,0,7800, - 7786,1,0,0,0,7800,7787,1,0,0,0,7800,7788,1,0,0,0,7800,7789,1,0,0, - 0,7800,7790,1,0,0,0,7800,7791,1,0,0,0,7800,7792,1,0,0,0,7800,7793, - 1,0,0,0,7800,7794,1,0,0,0,7800,7795,1,0,0,0,7800,7796,1,0,0,0,7800, - 7797,1,0,0,0,7800,7798,1,0,0,0,7800,7799,1,0,0,0,7801,837,1,0,0, - 0,7802,7803,7,111,0,0,7803,839,1,0,0,0,7804,7805,7,112,0,0,7805, - 841,1,0,0,0,7806,7808,3,844,422,0,7807,7806,1,0,0,0,7807,7808,1, - 0,0,0,7808,7819,1,0,0,0,7809,7817,5,178,0,0,7810,7814,3,846,423, - 0,7811,7814,5,178,0,0,7812,7814,3,844,422,0,7813,7810,1,0,0,0,7813, - 7811,1,0,0,0,7813,7812,1,0,0,0,7814,7815,1,0,0,0,7815,7813,1,0,0, - 0,7815,7816,1,0,0,0,7816,7818,1,0,0,0,7817,7813,1,0,0,0,7817,7818, - 1,0,0,0,7818,7820,1,0,0,0,7819,7809,1,0,0,0,7819,7820,1,0,0,0,7820, - 7821,1,0,0,0,7821,7825,5,146,0,0,7822,7824,3,852,426,0,7823,7822, - 1,0,0,0,7824,7827,1,0,0,0,7825,7823,1,0,0,0,7825,7826,1,0,0,0,7826, - 7829,1,0,0,0,7827,7825,1,0,0,0,7828,7830,3,930,465,0,7829,7828,1, - 0,0,0,7829,7830,1,0,0,0,7830,7831,1,0,0,0,7831,7833,5,454,0,0,7832, - 7834,3,934,467,0,7833,7832,1,0,0,0,7833,7834,1,0,0,0,7834,843,1, - 0,0,0,7835,7836,5,18,0,0,7836,7837,3,934,467,0,7837,7838,5,19,0, - 0,7838,845,1,0,0,0,7839,7886,3,934,467,0,7840,7841,5,496,0,0,7841, - 7844,5,62,0,0,7842,7845,5,28,0,0,7843,7845,3,824,412,0,7844,7842, - 1,0,0,0,7844,7843,1,0,0,0,7845,7887,1,0,0,0,7846,7848,5,497,0,0, - 7847,7846,1,0,0,0,7847,7848,1,0,0,0,7848,7849,1,0,0,0,7849,7851, - 3,648,324,0,7850,7852,3,90,45,0,7851,7850,1,0,0,0,7851,7852,1,0, - 0,0,7852,7855,1,0,0,0,7853,7854,5,77,0,0,7854,7856,5,78,0,0,7855, - 7853,1,0,0,0,7855,7856,1,0,0,0,7856,7862,1,0,0,0,7857,7860,3,850, - 425,0,7858,7860,5,53,0,0,7859,7857,1,0,0,0,7859,7858,1,0,0,0,7860, - 7861,1,0,0,0,7861,7863,3,936,468,0,7862,7859,1,0,0,0,7862,7863,1, - 0,0,0,7863,7887,1,0,0,0,7864,7866,5,269,0,0,7865,7864,1,0,0,0,7865, - 7866,1,0,0,0,7866,7867,1,0,0,0,7867,7869,5,324,0,0,7868,7865,1,0, - 0,0,7868,7869,1,0,0,0,7869,7870,1,0,0,0,7870,7882,5,172,0,0,7871, - 7872,5,2,0,0,7872,7877,3,848,424,0,7873,7874,5,6,0,0,7874,7876,3, - 848,424,0,7875,7873,1,0,0,0,7876,7879,1,0,0,0,7877,7875,1,0,0,0, - 7877,7878,1,0,0,0,7878,7880,1,0,0,0,7879,7877,1,0,0,0,7880,7881, - 5,3,0,0,7881,7883,1,0,0,0,7882,7871,1,0,0,0,7882,7883,1,0,0,0,7883, - 7884,1,0,0,0,7884,7885,7,113,0,0,7885,7887,3,554,277,0,7886,7840, - 1,0,0,0,7886,7847,1,0,0,0,7886,7868,1,0,0,0,7887,7888,1,0,0,0,7888, - 7889,5,7,0,0,7889,847,1,0,0,0,7890,7891,3,934,467,0,7891,7892,3, - 648,324,0,7892,849,1,0,0,0,7893,7894,7,114,0,0,7894,851,1,0,0,0, - 7895,7896,3,842,421,0,7896,7897,5,7,0,0,7897,7920,1,0,0,0,7898,7920, - 3,880,440,0,7899,7920,3,882,441,0,7900,7920,3,858,429,0,7901,7920, - 3,866,433,0,7902,7920,3,870,435,0,7903,7920,3,872,436,0,7904,7920, - 3,876,438,0,7905,7920,3,878,439,0,7906,7920,3,886,443,0,7907,7920, - 3,890,445,0,7908,7920,3,892,446,0,7909,7920,3,854,427,0,7910,7920, - 3,856,428,0,7911,7920,3,860,430,0,7912,7920,3,896,448,0,7913,7920, - 3,900,450,0,7914,7920,3,904,452,0,7915,7920,3,920,460,0,7916,7920, - 3,922,461,0,7917,7920,3,924,462,0,7918,7920,3,926,463,0,7919,7895, - 1,0,0,0,7919,7898,1,0,0,0,7919,7899,1,0,0,0,7919,7900,1,0,0,0,7919, - 7901,1,0,0,0,7919,7902,1,0,0,0,7919,7903,1,0,0,0,7919,7904,1,0,0, - 0,7919,7905,1,0,0,0,7919,7906,1,0,0,0,7919,7907,1,0,0,0,7919,7908, - 1,0,0,0,7919,7909,1,0,0,0,7919,7910,1,0,0,0,7919,7911,1,0,0,0,7919, - 7912,1,0,0,0,7919,7913,1,0,0,0,7919,7914,1,0,0,0,7919,7915,1,0,0, - 0,7919,7916,1,0,0,0,7919,7917,1,0,0,0,7919,7918,1,0,0,0,7920,853, - 1,0,0,0,7921,7922,5,498,0,0,7922,7923,3,936,468,0,7923,7924,5,7, - 0,0,7924,855,1,0,0,0,7925,7926,5,433,0,0,7926,7933,3,934,467,0,7927, - 7929,5,2,0,0,7928,7930,3,728,364,0,7929,7928,1,0,0,0,7929,7930,1, - 0,0,0,7930,7931,1,0,0,0,7931,7932,5,3,0,0,7932,7934,5,7,0,0,7933, - 7927,1,0,0,0,7933,7934,1,0,0,0,7934,7945,1,0,0,0,7935,7936,5,57, - 0,0,7936,7937,3,934,467,0,7937,7939,5,2,0,0,7938,7940,3,728,364, - 0,7939,7938,1,0,0,0,7939,7940,1,0,0,0,7940,7941,1,0,0,0,7941,7942, - 5,3,0,0,7942,7943,5,7,0,0,7943,7945,1,0,0,0,7944,7925,1,0,0,0,7944, - 7935,1,0,0,0,7945,857,1,0,0,0,7946,7947,3,864,432,0,7947,7948,3, - 850,425,0,7948,7949,3,936,468,0,7949,7950,5,7,0,0,7950,859,1,0,0, - 0,7951,7953,5,499,0,0,7952,7954,7,115,0,0,7953,7952,1,0,0,0,7953, - 7954,1,0,0,0,7954,7955,1,0,0,0,7955,7956,5,500,0,0,7956,7961,3,862, - 431,0,7957,7958,5,6,0,0,7958,7960,3,862,431,0,7959,7957,1,0,0,0, - 7960,7963,1,0,0,0,7961,7959,1,0,0,0,7961,7962,1,0,0,0,7962,7964, - 1,0,0,0,7963,7961,1,0,0,0,7964,7965,5,7,0,0,7965,861,1,0,0,0,7966, - 7967,3,864,432,0,7967,7968,3,850,425,0,7968,7969,3,824,412,0,7969, - 863,1,0,0,0,7970,7973,3,310,155,0,7971,7973,5,28,0,0,7972,7970,1, - 0,0,0,7972,7971,1,0,0,0,7973,7980,1,0,0,0,7974,7975,5,4,0,0,7975, - 7976,3,670,335,0,7976,7977,5,5,0,0,7977,7979,1,0,0,0,7978,7974,1, - 0,0,0,7979,7982,1,0,0,0,7980,7978,1,0,0,0,7980,7981,1,0,0,0,7981, - 865,1,0,0,0,7982,7980,1,0,0,0,7983,7984,5,220,0,0,7984,7985,3,936, - 468,0,7985,7989,5,93,0,0,7986,7988,3,852,426,0,7987,7986,1,0,0,0, - 7988,7991,1,0,0,0,7989,7987,1,0,0,0,7989,7990,1,0,0,0,7990,8003, - 1,0,0,0,7991,7989,1,0,0,0,7992,7993,5,502,0,0,7993,7994,3,670,335, - 0,7994,7998,5,93,0,0,7995,7997,3,852,426,0,7996,7995,1,0,0,0,7997, - 8000,1,0,0,0,7998,7996,1,0,0,0,7998,7999,1,0,0,0,7999,8002,1,0,0, - 0,8000,7998,1,0,0,0,8001,7992,1,0,0,0,8002,8005,1,0,0,0,8003,8001, - 1,0,0,0,8003,8004,1,0,0,0,8004,8007,1,0,0,0,8005,8003,1,0,0,0,8006, - 8008,3,868,434,0,8007,8006,1,0,0,0,8007,8008,1,0,0,0,8008,8009,1, - 0,0,0,8009,8010,5,454,0,0,8010,8011,5,220,0,0,8011,8012,5,7,0,0, - 8012,867,1,0,0,0,8013,8017,5,58,0,0,8014,8016,3,852,426,0,8015,8014, - 1,0,0,0,8016,8019,1,0,0,0,8017,8015,1,0,0,0,8017,8018,1,0,0,0,8018, - 869,1,0,0,0,8019,8017,1,0,0,0,8020,8022,5,40,0,0,8021,8023,3,936, - 468,0,8022,8021,1,0,0,0,8022,8023,1,0,0,0,8023,8033,1,0,0,0,8024, - 8025,5,102,0,0,8025,8026,3,728,364,0,8026,8030,5,93,0,0,8027,8029, - 3,852,426,0,8028,8027,1,0,0,0,8029,8032,1,0,0,0,8030,8028,1,0,0, - 0,8030,8031,1,0,0,0,8031,8034,1,0,0,0,8032,8030,1,0,0,0,8033,8024, - 1,0,0,0,8034,8035,1,0,0,0,8035,8033,1,0,0,0,8035,8036,1,0,0,0,8036, - 8038,1,0,0,0,8037,8039,3,868,434,0,8038,8037,1,0,0,0,8038,8039,1, - 0,0,0,8039,8040,1,0,0,0,8040,8041,5,454,0,0,8041,8042,5,40,0,0,8042, - 8043,5,7,0,0,8043,871,1,0,0,0,8044,8046,3,844,422,0,8045,8044,1, - 0,0,0,8045,8046,1,0,0,0,8046,8051,1,0,0,0,8047,8048,5,503,0,0,8048, - 8052,3,670,335,0,8049,8050,5,62,0,0,8050,8052,3,874,437,0,8051,8047, - 1,0,0,0,8051,8049,1,0,0,0,8051,8052,1,0,0,0,8052,8053,1,0,0,0,8053, - 8054,3,888,444,0,8054,873,1,0,0,0,8055,8056,3,308,154,0,8056,8079, - 5,68,0,0,8057,8059,3,824,412,0,8058,8060,3,528,264,0,8059,8058,1, - 0,0,0,8059,8060,1,0,0,0,8060,8080,1,0,0,0,8061,8080,3,554,277,0, - 8062,8080,3,514,257,0,8063,8064,5,202,0,0,8064,8067,3,670,335,0, - 8065,8066,5,100,0,0,8066,8068,3,728,364,0,8067,8065,1,0,0,0,8067, - 8068,1,0,0,0,8068,8080,1,0,0,0,8069,8071,5,504,0,0,8070,8069,1,0, - 0,0,8070,8071,1,0,0,0,8071,8072,1,0,0,0,8072,8073,3,670,335,0,8073, - 8074,5,24,0,0,8074,8077,3,670,335,0,8075,8076,5,147,0,0,8076,8078, - 3,670,335,0,8077,8075,1,0,0,0,8077,8078,1,0,0,0,8078,8080,1,0,0, - 0,8079,8057,1,0,0,0,8079,8061,1,0,0,0,8079,8062,1,0,0,0,8079,8063, - 1,0,0,0,8079,8070,1,0,0,0,8080,875,1,0,0,0,8081,8083,3,844,422,0, - 8082,8081,1,0,0,0,8082,8083,1,0,0,0,8083,8084,1,0,0,0,8084,8085, - 5,505,0,0,8085,8088,3,308,154,0,8086,8087,5,506,0,0,8087,8089,5, - 574,0,0,8088,8086,1,0,0,0,8088,8089,1,0,0,0,8089,8090,1,0,0,0,8090, - 8091,5,68,0,0,8091,8092,5,35,0,0,8092,8093,3,670,335,0,8093,8094, - 3,888,444,0,8094,877,1,0,0,0,8095,8097,7,116,0,0,8096,8098,3,934, - 467,0,8097,8096,1,0,0,0,8097,8098,1,0,0,0,8098,8101,1,0,0,0,8099, - 8100,5,102,0,0,8100,8102,3,936,468,0,8101,8099,1,0,0,0,8101,8102, - 1,0,0,0,8102,8103,1,0,0,0,8103,8104,5,7,0,0,8104,879,1,0,0,0,8105, - 8120,5,508,0,0,8106,8107,5,268,0,0,8107,8121,3,936,468,0,8108,8115, - 5,509,0,0,8109,8110,5,202,0,0,8110,8111,3,670,335,0,8111,8112,5, - 100,0,0,8112,8113,3,728,364,0,8113,8116,1,0,0,0,8114,8116,3,554, - 277,0,8115,8109,1,0,0,0,8115,8114,1,0,0,0,8116,8121,1,0,0,0,8117, - 8119,3,936,468,0,8118,8117,1,0,0,0,8118,8119,1,0,0,0,8119,8121,1, - 0,0,0,8120,8106,1,0,0,0,8120,8108,1,0,0,0,8120,8118,1,0,0,0,8121, - 8122,1,0,0,0,8122,8123,5,7,0,0,8123,881,1,0,0,0,8124,8154,5,510, - 0,0,8125,8127,7,117,0,0,8126,8125,1,0,0,0,8126,8127,1,0,0,0,8127, - 8140,1,0,0,0,8128,8141,3,832,416,0,8129,8130,5,511,0,0,8130,8141, - 3,814,407,0,8131,8138,3,814,407,0,8132,8133,5,6,0,0,8133,8135,3, - 670,335,0,8134,8132,1,0,0,0,8135,8136,1,0,0,0,8136,8134,1,0,0,0, - 8136,8137,1,0,0,0,8137,8139,1,0,0,0,8138,8134,1,0,0,0,8138,8139, - 1,0,0,0,8139,8141,1,0,0,0,8140,8128,1,0,0,0,8140,8129,1,0,0,0,8140, - 8131,1,0,0,0,8140,8141,1,0,0,0,8141,8151,1,0,0,0,8142,8143,5,100, - 0,0,8143,8148,3,884,442,0,8144,8145,5,6,0,0,8145,8147,3,884,442, - 0,8146,8144,1,0,0,0,8147,8150,1,0,0,0,8148,8146,1,0,0,0,8148,8149, - 1,0,0,0,8149,8152,1,0,0,0,8150,8148,1,0,0,0,8151,8142,1,0,0,0,8151, - 8152,1,0,0,0,8152,8153,1,0,0,0,8153,8155,5,7,0,0,8154,8126,1,0,0, - 0,8154,8155,1,0,0,0,8155,883,1,0,0,0,8156,8157,3,832,416,0,8157, - 8158,5,10,0,0,8158,8159,3,670,335,0,8159,885,1,0,0,0,8160,8161,5, - 518,0,0,8161,8164,3,936,468,0,8162,8163,5,6,0,0,8163,8165,3,936, - 468,0,8164,8162,1,0,0,0,8164,8165,1,0,0,0,8165,8166,1,0,0,0,8166, - 8167,5,7,0,0,8167,887,1,0,0,0,8168,8172,5,519,0,0,8169,8171,3,852, - 426,0,8170,8169,1,0,0,0,8171,8174,1,0,0,0,8172,8170,1,0,0,0,8172, - 8173,1,0,0,0,8173,8175,1,0,0,0,8174,8172,1,0,0,0,8175,8176,5,454, - 0,0,8176,8178,5,519,0,0,8177,8179,3,934,467,0,8178,8177,1,0,0,0, - 8178,8179,1,0,0,0,8179,8180,1,0,0,0,8180,8181,5,7,0,0,8181,889,1, - 0,0,0,8182,8184,3,4,2,0,8183,8185,3,894,447,0,8184,8183,1,0,0,0, - 8184,8185,1,0,0,0,8185,8186,1,0,0,0,8186,8187,5,7,0,0,8187,891,1, - 0,0,0,8188,8189,5,202,0,0,8189,8205,3,670,335,0,8190,8192,3,894, - 447,0,8191,8190,1,0,0,0,8191,8192,1,0,0,0,8192,8195,1,0,0,0,8193, - 8194,5,100,0,0,8194,8196,3,728,364,0,8195,8193,1,0,0,0,8195,8196, - 1,0,0,0,8196,8206,1,0,0,0,8197,8198,5,100,0,0,8198,8200,3,728,364, - 0,8199,8197,1,0,0,0,8199,8200,1,0,0,0,8200,8202,1,0,0,0,8201,8203, - 3,894,447,0,8202,8201,1,0,0,0,8202,8203,1,0,0,0,8203,8206,1,0,0, - 0,8204,8206,1,0,0,0,8205,8191,1,0,0,0,8205,8199,1,0,0,0,8205,8204, - 1,0,0,0,8206,8207,1,0,0,0,8207,8208,5,7,0,0,8208,893,1,0,0,0,8209, - 8211,5,71,0,0,8210,8212,5,346,0,0,8211,8210,1,0,0,0,8211,8212,1, - 0,0,0,8212,8213,1,0,0,0,8213,8214,3,728,364,0,8214,895,1,0,0,0,8215, - 8247,5,520,0,0,8216,8221,3,928,464,0,8217,8219,5,269,0,0,8218,8217, - 1,0,0,0,8218,8219,1,0,0,0,8219,8220,1,0,0,0,8220,8222,5,324,0,0, - 8221,8218,1,0,0,0,8221,8222,1,0,0,0,8222,8223,1,0,0,0,8223,8231, - 5,62,0,0,8224,8232,3,554,277,0,8225,8226,5,202,0,0,8226,8229,3,936, - 468,0,8227,8228,5,100,0,0,8228,8230,3,728,364,0,8229,8227,1,0,0, - 0,8229,8230,1,0,0,0,8230,8232,1,0,0,0,8231,8224,1,0,0,0,8231,8225, - 1,0,0,0,8232,8248,1,0,0,0,8233,8245,3,824,412,0,8234,8235,5,2,0, - 0,8235,8240,3,898,449,0,8236,8237,5,6,0,0,8237,8239,3,898,449,0, - 8238,8236,1,0,0,0,8239,8242,1,0,0,0,8240,8238,1,0,0,0,8240,8241, - 1,0,0,0,8241,8243,1,0,0,0,8242,8240,1,0,0,0,8243,8244,5,3,0,0,8244, - 8246,1,0,0,0,8245,8234,1,0,0,0,8245,8246,1,0,0,0,8246,8248,1,0,0, - 0,8247,8216,1,0,0,0,8247,8233,1,0,0,0,8248,8249,1,0,0,0,8249,8250, - 5,7,0,0,8250,897,1,0,0,0,8251,8252,3,824,412,0,8252,8253,5,20,0, - 0,8253,8255,1,0,0,0,8254,8251,1,0,0,0,8254,8255,1,0,0,0,8255,8256, - 1,0,0,0,8256,8257,3,670,335,0,8257,899,1,0,0,0,8258,8260,5,61,0, - 0,8259,8261,3,902,451,0,8260,8259,1,0,0,0,8260,8261,1,0,0,0,8261, - 8263,1,0,0,0,8262,8264,3,326,163,0,8263,8262,1,0,0,0,8263,8264,1, - 0,0,0,8264,8265,1,0,0,0,8265,8266,3,928,464,0,8266,8267,5,71,0,0, - 8267,8268,3,728,364,0,8268,8269,5,7,0,0,8269,901,1,0,0,0,8270,8285, - 5,268,0,0,8271,8285,5,293,0,0,8272,8285,5,207,0,0,8273,8285,5,249, - 0,0,8274,8276,7,51,0,0,8275,8274,1,0,0,0,8275,8276,1,0,0,0,8276, - 8277,1,0,0,0,8277,8285,3,670,335,0,8278,8285,5,30,0,0,8279,8282, - 7,118,0,0,8280,8283,3,670,335,0,8281,8283,5,30,0,0,8282,8280,1,0, - 0,0,8282,8281,1,0,0,0,8282,8283,1,0,0,0,8283,8285,1,0,0,0,8284,8270, - 1,0,0,0,8284,8271,1,0,0,0,8284,8272,1,0,0,0,8284,8273,1,0,0,0,8284, - 8275,1,0,0,0,8284,8278,1,0,0,0,8284,8279,1,0,0,0,8285,903,1,0,0, - 0,8286,8288,5,265,0,0,8287,8289,3,902,451,0,8288,8287,1,0,0,0,8288, - 8289,1,0,0,0,8289,8290,1,0,0,0,8290,8291,3,928,464,0,8291,8292,5, - 7,0,0,8292,905,1,0,0,0,8293,8295,3,566,283,0,8294,8293,1,0,0,0,8294, - 8295,1,0,0,0,8295,8296,1,0,0,0,8296,8297,5,525,0,0,8297,8299,5,71, - 0,0,8298,8300,5,81,0,0,8299,8298,1,0,0,0,8299,8300,1,0,0,0,8300, - 8301,1,0,0,0,8301,8303,3,778,389,0,8302,8304,5,9,0,0,8303,8302,1, - 0,0,0,8303,8304,1,0,0,0,8304,8309,1,0,0,0,8305,8307,5,36,0,0,8306, - 8305,1,0,0,0,8306,8307,1,0,0,0,8307,8308,1,0,0,0,8308,8310,3,824, - 412,0,8309,8306,1,0,0,0,8309,8310,1,0,0,0,8310,8311,1,0,0,0,8311, - 8312,5,100,0,0,8312,8313,3,908,454,0,8313,8314,5,80,0,0,8314,8316, - 3,670,335,0,8315,8317,3,910,455,0,8316,8315,1,0,0,0,8317,8318,1, - 0,0,0,8318,8316,1,0,0,0,8318,8319,1,0,0,0,8319,8321,1,0,0,0,8320, - 8322,3,540,270,0,8321,8320,1,0,0,0,8321,8322,1,0,0,0,8322,907,1, - 0,0,0,8323,8325,5,81,0,0,8324,8323,1,0,0,0,8324,8325,1,0,0,0,8325, - 8326,1,0,0,0,8326,8328,3,778,389,0,8327,8329,5,9,0,0,8328,8327,1, - 0,0,0,8328,8329,1,0,0,0,8329,8335,1,0,0,0,8330,8333,3,558,279,0, - 8331,8333,3,602,301,0,8332,8330,1,0,0,0,8332,8331,1,0,0,0,8333,8335, - 1,0,0,0,8334,8324,1,0,0,0,8334,8332,1,0,0,0,8335,8340,1,0,0,0,8336, - 8338,5,36,0,0,8337,8336,1,0,0,0,8337,8338,1,0,0,0,8338,8339,1,0, - 0,0,8339,8341,3,824,412,0,8340,8337,1,0,0,0,8340,8341,1,0,0,0,8341, - 909,1,0,0,0,8342,8343,5,102,0,0,8343,8346,5,526,0,0,8344,8345,5, - 33,0,0,8345,8347,3,670,335,0,8346,8344,1,0,0,0,8346,8347,1,0,0,0, - 8347,8348,1,0,0,0,8348,8353,5,93,0,0,8349,8354,3,914,457,0,8350, - 8354,5,182,0,0,8351,8352,5,57,0,0,8352,8354,5,270,0,0,8353,8349, - 1,0,0,0,8353,8350,1,0,0,0,8353,8351,1,0,0,0,8354,8369,1,0,0,0,8355, - 8356,5,102,0,0,8356,8357,5,77,0,0,8357,8360,5,526,0,0,8358,8359, - 5,33,0,0,8359,8361,3,670,335,0,8360,8358,1,0,0,0,8360,8361,1,0,0, - 0,8361,8362,1,0,0,0,8362,8366,5,93,0,0,8363,8367,3,912,456,0,8364, - 8365,5,57,0,0,8365,8367,5,270,0,0,8366,8363,1,0,0,0,8366,8364,1, - 0,0,0,8367,8369,1,0,0,0,8368,8342,1,0,0,0,8368,8355,1,0,0,0,8369, - 911,1,0,0,0,8370,8372,5,241,0,0,8371,8373,3,138,69,0,8372,8371,1, - 0,0,0,8372,8373,1,0,0,0,8373,8377,1,0,0,0,8374,8375,5,463,0,0,8375, - 8376,7,77,0,0,8376,8378,5,450,0,0,8377,8374,1,0,0,0,8377,8378,1, - 0,0,0,8378,8379,1,0,0,0,8379,8380,3,916,458,0,8380,913,1,0,0,0,8381, - 8382,5,369,0,0,8382,8400,5,333,0,0,8383,8384,3,804,402,0,8384,8385, - 5,10,0,0,8385,8386,3,918,459,0,8386,8401,1,0,0,0,8387,8388,3,138, - 69,0,8388,8389,5,10,0,0,8389,8390,5,2,0,0,8390,8395,3,918,459,0, - 8391,8392,5,6,0,0,8392,8394,3,918,459,0,8393,8391,1,0,0,0,8394,8397, - 1,0,0,0,8395,8393,1,0,0,0,8395,8396,1,0,0,0,8396,8398,1,0,0,0,8397, - 8395,1,0,0,0,8398,8399,5,3,0,0,8399,8401,1,0,0,0,8400,8383,1,0,0, - 0,8400,8387,1,0,0,0,8401,8402,1,0,0,0,8402,8400,1,0,0,0,8402,8403, - 1,0,0,0,8403,915,1,0,0,0,8404,8405,5,422,0,0,8405,8406,5,2,0,0,8406, - 8411,3,918,459,0,8407,8408,5,6,0,0,8408,8410,3,918,459,0,8409,8407, - 1,0,0,0,8410,8413,1,0,0,0,8411,8409,1,0,0,0,8411,8412,1,0,0,0,8412, - 8414,1,0,0,0,8413,8411,1,0,0,0,8414,8415,5,3,0,0,8415,8419,1,0,0, - 0,8416,8417,5,53,0,0,8417,8419,5,422,0,0,8418,8404,1,0,0,0,8418, - 8416,1,0,0,0,8419,917,1,0,0,0,8420,8423,3,582,291,0,8421,8423,5, - 53,0,0,8422,8420,1,0,0,0,8422,8421,1,0,0,0,8423,919,1,0,0,0,8424, - 8425,5,157,0,0,8425,8426,3,928,464,0,8426,8427,5,7,0,0,8427,921, - 1,0,0,0,8428,8429,5,78,0,0,8429,8430,5,7,0,0,8430,923,1,0,0,0,8431, - 8437,7,68,0,0,8432,8434,5,33,0,0,8433,8435,5,269,0,0,8434,8433,1, - 0,0,0,8434,8435,1,0,0,0,8435,8436,1,0,0,0,8436,8438,5,153,0,0,8437, - 8432,1,0,0,0,8437,8438,1,0,0,0,8438,8439,1,0,0,0,8439,8440,5,7,0, - 0,8440,925,1,0,0,0,8441,8442,5,333,0,0,8442,8443,3,310,155,0,8443, - 8444,5,94,0,0,8444,8445,5,53,0,0,8445,8446,5,7,0,0,8446,8454,1,0, - 0,0,8447,8450,5,313,0,0,8448,8451,3,310,155,0,8449,8451,5,30,0,0, - 8450,8448,1,0,0,0,8450,8449,1,0,0,0,8451,8452,1,0,0,0,8452,8454, - 5,7,0,0,8453,8441,1,0,0,0,8453,8447,1,0,0,0,8454,927,1,0,0,0,8455, - 8458,3,824,412,0,8456,8458,5,28,0,0,8457,8455,1,0,0,0,8457,8456, - 1,0,0,0,8458,929,1,0,0,0,8459,8476,5,517,0,0,8460,8461,5,102,0,0, - 8461,8466,3,932,466,0,8462,8463,5,82,0,0,8463,8465,3,932,466,0,8464, - 8462,1,0,0,0,8465,8468,1,0,0,0,8466,8464,1,0,0,0,8466,8467,1,0,0, - 0,8467,8469,1,0,0,0,8468,8466,1,0,0,0,8469,8473,5,93,0,0,8470,8472, - 3,852,426,0,8471,8470,1,0,0,0,8472,8475,1,0,0,0,8473,8471,1,0,0, - 0,8473,8474,1,0,0,0,8474,8477,1,0,0,0,8475,8473,1,0,0,0,8476,8460, - 1,0,0,0,8477,8478,1,0,0,0,8478,8476,1,0,0,0,8478,8479,1,0,0,0,8479, - 931,1,0,0,0,8480,8484,3,934,467,0,8481,8482,5,511,0,0,8482,8484, - 3,814,407,0,8483,8480,1,0,0,0,8483,8481,1,0,0,0,8484,933,1,0,0,0, - 8485,8488,3,824,412,0,8486,8488,3,834,417,0,8487,8485,1,0,0,0,8487, - 8486,1,0,0,0,8488,935,1,0,0,0,8489,8491,3,758,379,0,8490,8489,1, - 0,0,0,8490,8491,1,0,0,0,8491,8493,1,0,0,0,8492,8494,3,574,287,0, - 8493,8492,1,0,0,0,8493,8494,1,0,0,0,8494,8496,1,0,0,0,8495,8497, - 3,604,302,0,8496,8495,1,0,0,0,8496,8497,1,0,0,0,8497,8499,1,0,0, - 0,8498,8500,3,634,317,0,8499,8498,1,0,0,0,8499,8500,1,0,0,0,8500, - 8502,1,0,0,0,8501,8503,3,594,297,0,8502,8501,1,0,0,0,8502,8503,1, - 0,0,0,8503,8505,1,0,0,0,8504,8506,3,700,350,0,8505,8504,1,0,0,0, - 8505,8506,1,0,0,0,8506,8508,1,0,0,0,8507,8509,3,698,349,0,8508,8507, - 1,0,0,0,8508,8509,1,0,0,0,8509,937,1,0,0,0,1193,941,948,1068,1070, - 1079,1084,1090,1125,1135,1141,1146,1153,1158,1165,1176,1184,1188, - 1200,1206,1212,1216,1221,1225,1238,1248,1250,1256,1261,1274,1277, - 1282,1287,1298,1302,1314,1318,1321,1325,1337,1355,1362,1370,1375, - 1382,1390,1396,1404,1412,1416,1430,1435,1440,1452,1458,1470,1475, - 1485,1491,1496,1505,1512,1517,1522,1532,1537,1542,1549,1553,1567, - 1573,1579,1584,1591,1600,1609,1618,1627,1631,1643,1651,1661,1681, - 1686,1689,1696,1699,1703,1707,1710,1715,1720,1724,1733,1739,1743, - 1752,1755,1761,1770,1782,1786,1790,1795,1798,1804,1806,1808,1812, - 1818,1822,1827,1832,1836,1839,1846,1859,1872,1897,1907,1914,1919, - 1923,1930,1935,1938,1940,1945,1949,1953,1957,1962,1965,1969,1972, - 1976,1984,1989,1992,1996,2002,2011,2015,2025,2030,2034,2038,2040, - 2042,2049,2054,2058,2063,2075,2080,2084,2088,2093,2097,2100,2103, - 2106,2109,2112,2117,2120,2123,2126,2129,2132,2138,2142,2145,2148, - 2151,2154,2156,2163,2171,2181,2186,2196,2199,2204,2209,2214,2217, - 2222,2231,2233,2237,2240,2244,2249,2254,2258,2261,2265,2268,2273, - 2276,2281,2284,2288,2291,2294,2299,2302,2310,2322,2326,2333,2338, - 2341,2344,2347,2352,2363,2369,2373,2376,2379,2384,2391,2394,2398, - 2406,2411,2414,2417,2424,2429,2438,2441,2444,2449,2452,2464,2474, - 2491,2495,2499,2501,2518,2520,2536,2547,2550,2553,2562,2571,2587, - 2590,2593,2601,2605,2612,2621,2625,2631,2635,2638,2641,2644,2647, - 2653,2657,2662,2666,2669,2672,2675,2680,2686,2690,2694,2698,2704, - 2706,2711,2717,2723,2727,2742,2747,2750,2752,2755,2759,2763,2766, - 2769,2777,2783,2785,2791,2796,2801,2805,2812,2814,2825,2864,2874, - 2876,2879,2883,2887,2897,2899,2905,2907,2916,2928,2942,2947,2950, - 2957,2962,2970,2972,2978,2983,2987,2992,2998,3005,3011,3013,3022, - 3028,3036,3042,3047,3052,3060,3075,3077,3081,3085,3088,3091,3100, - 3103,3106,3112,3118,3122,3134,3140,3143,3148,3152,3159,3169,3171, - 3195,3207,3212,3214,3218,3221,3224,3234,3237,3247,3252,3257,3260, - 3263,3271,3277,3284,3292,3295,3306,3310,3316,3323,3326,3335,3349, - 3352,3366,3377,3380,3392,3397,3410,3415,3428,3437,3440,3443,3450, - 3453,3465,3471,3473,3481,3489,3497,3509,3514,3525,3536,3544,3552, - 3559,3566,3568,3571,3576,3581,3600,3609,3612,3639,3648,3651,3655, - 3659,3663,3670,3674,3678,3682,3686,3691,3695,3700,3706,3711,3718, - 3722,3728,3732,3737,3745,3751,3756,3763,3768,3772,3777,3783,3790, - 3795,3802,3807,3814,3818,3826,3830,3832,3835,3840,3850,3865,3868, - 3876,3883,3888,3894,3898,3905,3910,3913,3916,3920,3929,3947,3950, - 3982,3987,3993,4013,4018,4024,4027,4031,4035,4041,4044,4048,4052, - 4057,4060,4063,4066,4079,4085,4093,4100,4105,4108,4115,4118,4126, - 4129,4134,4141,4144,4164,4176,4179,4185,4190,4199,4207,4212,4218, - 4225,4233,4236,4247,4249,4263,4269,4277,4279,4285,4289,4292,4295, - 4300,4305,4309,4312,4315,4318,4321,4329,4340,4343,4346,4351,4354, - 4358,4362,4368,4376,4379,4392,4397,4399,4404,4411,4418,4427,4435, - 4443,4450,4458,4465,4473,4477,4481,4483,4489,4494,4498,4505,4510, - 4515,4520,4522,4532,4542,4558,4576,4588,4595,4610,4615,4618,4623, - 4628,4633,4636,4639,4644,4651,4655,4660,4667,4671,4677,4686,4695, - 4707,4709,4722,4728,4732,4734,4741,4754,4761,4763,4779,4783,4787, - 4792,4797,4802,4807,4810,4822,4875,4884,4888,4897,4901,4910,4914, - 4919,4922,4926,4931,4933,4942,4947,4958,4962,4976,4984,5022,5024, - 5043,5046,5073,5077,5081,5085,5089,5092,5107,5114,5128,5141,5166, - 5185,5200,5216,5223,5234,5237,5256,5259,5272,5276,5296,5308,5312, - 5334,5338,5348,5352,5358,5362,5366,5370,5377,5382,5393,5397,5400, - 5405,5411,5422,5426,5429,5433,5437,5440,5450,5453,5457,5462,5468, - 5471,5476,5479,5486,5488,5494,5498,5507,5512,5514,5524,5527,5532, - 5540,5543,5548,5550,5552,5558,5575,5581,5594,5600,5604,5609,5639, - 5654,5659,5663,5676,5680,5682,5691,5697,5699,5703,5706,5709,5712, - 5715,5717,5720,5724,5732,5737,5740,5746,5750,5754,5759,5761,5765, - 5769,5776,5782,5786,5788,5790,5803,5811,5819,5830,5840,5845,5849, - 5853,5860,5863,5865,5873,5877,5880,5887,5894,5899,5906,5909,5911, - 5914,5920,5925,5929,5936,5946,5953,5956,5959,5963,5974,5977,5980, - 5983,5986,5993,5996,5999,6006,6018,6025,6027,6032,6037,6039,6045, - 6052,6057,6062,6066,6070,6074,6076,6080,6084,6087,6090,6092,6102, - 6104,6109,6113,6118,6122,6129,6134,6138,6141,6147,6150,6169,6176, - 6180,6183,6187,6191,6194,6197,6202,6211,6218,6222,6226,6230,6233, - 6235,6240,6244,6249,6255,6262,6267,6272,6281,6288,6296,6307,6312, - 6316,6319,6323,6328,6332,6337,6345,6356,6361,6365,6368,6371,6373, - 6376,6379,6382,6392,6397,6403,6407,6409,6416,6421,6427,6429,6434, - 6438,6442,6444,6447,6454,6459,6462,6468,6472,6478,6487,6493,6495, - 6500,6503,6512,6519,6521,6528,6533,6536,6546,6557,6562,6566,6574, - 6584,6591,6597,6608,6614,6624,6633,6637,6640,6642,6644,6648,6656, - 6659,6664,6669,6676,6678,6684,6688,6691,6696,6699,6701,6707,6716, - 6722,6725,6733,6736,6740,6746,6748,6751,6755,6760,6767,6774,6776, - 6782,6784,6789,6791,6795,6804,6808,6816,6818,6832,6835,6843,6852, - 6858,6863,6871,6873,6878,6882,6887,6892,6898,6914,6916,6925,6940, - 6945,6948,6954,6959,6972,6977,6981,6988,7007,7019,7024,7032,7034, - 7036,7045,7048,7053,7058,7061,7072,7080,7085,7087,7090,7094,7105, - 7126,7134,7147,7157,7163,7169,7172,7175,7201,7203,7224,7234,7247, - 7252,7256,7258,7270,7277,7283,7289,7293,7304,7317,7321,7326,7329, - 7332,7341,7352,7354,7358,7363,7372,7377,7385,7395,7403,7407,7410, - 7417,7429,7433,7440,7448,7450,7459,7462,7474,7483,7490,7499,7509, - 7514,7518,7520,7523,7528,7533,7541,7547,7550,7554,7556,7563,7573, - 7581,7589,7597,7614,7621,7629,7646,7652,7658,7669,7675,7680,7688, - 7693,7696,7705,7712,7717,7721,7726,7732,7737,7745,7800,7807,7813, - 7815,7817,7819,7825,7829,7833,7844,7847,7851,7855,7859,7862,7865, - 7868,7877,7882,7886,7919,7929,7933,7939,7944,7953,7961,7972,7980, - 7989,7998,8003,8007,8017,8022,8030,8035,8038,8045,8051,8059,8067, - 8070,8077,8079,8082,8088,8097,8101,8115,8118,8120,8126,8136,8138, - 8140,8148,8151,8154,8164,8172,8178,8184,8191,8195,8199,8202,8205, - 8211,8218,8221,8229,8231,8240,8245,8247,8254,8260,8263,8275,8282, - 8284,8288,8294,8299,8303,8306,8309,8318,8321,8324,8328,8332,8334, - 8337,8340,8346,8353,8360,8366,8368,8372,8377,8395,8400,8402,8411, - 8418,8422,8434,8437,8450,8453,8457,8466,8473,8478,8483,8487,8490, - 8493,8496,8499,8502,8505,8508 + 507,507,1,0,512,517,2,0,144,144,210,210,9970,0,943,1,0,0,0,2,948, + 1,0,0,0,4,1072,1,0,0,0,6,1074,1,0,0,0,8,1077,1,0,0,0,10,1127,1,0, + 0,0,12,1137,1,0,0,0,14,1139,1,0,0,0,16,1151,1,0,0,0,18,1163,1,0, + 0,0,20,1174,1,0,0,0,22,1208,1,0,0,0,24,1252,1,0,0,0,26,1254,1,0, + 0,0,28,1266,1,0,0,0,30,1273,1,0,0,0,32,1292,1,0,0,0,34,1300,1,0, + 0,0,36,1302,1,0,0,0,38,1316,1,0,0,0,40,1320,1,0,0,0,42,1357,1,0, + 0,0,44,1359,1,0,0,0,46,1367,1,0,0,0,48,1377,1,0,0,0,50,1384,1,0, + 0,0,52,1392,1,0,0,0,54,1398,1,0,0,0,56,1414,1,0,0,0,58,1418,1,0, + 0,0,60,1420,1,0,0,0,62,1432,1,0,0,0,64,1437,1,0,0,0,66,1442,1,0, + 0,0,68,1444,1,0,0,0,70,1456,1,0,0,0,72,1464,1,0,0,0,74,1466,1,0, + 0,0,76,1586,1,0,0,0,78,1588,1,0,0,0,80,1602,1,0,0,0,82,1604,1,0, + 0,0,84,1841,1,0,0,0,86,1848,1,0,0,0,88,1850,1,0,0,0,90,1852,1,0, + 0,0,92,1855,1,0,0,0,94,1866,1,0,0,0,96,1869,1,0,0,0,98,1899,1,0, + 0,0,100,1901,1,0,0,0,102,1942,1,0,0,0,104,1944,1,0,0,0,106,1998, + 1,0,0,0,108,2044,1,0,0,0,110,2065,1,0,0,0,112,2067,1,0,0,0,114,2084, + 1,0,0,0,116,2165,1,0,0,0,118,2167,1,0,0,0,120,2178,1,0,0,0,122,2201, + 1,0,0,0,124,2219,1,0,0,0,126,2221,1,0,0,0,128,2256,1,0,0,0,130,2349, + 1,0,0,0,132,2354,1,0,0,0,134,2356,1,0,0,0,136,2454,1,0,0,0,138,2456, + 1,0,0,0,140,2460,1,0,0,0,142,2471,1,0,0,0,144,2479,1,0,0,0,146,2482, + 1,0,0,0,148,2485,1,0,0,0,150,2503,1,0,0,0,152,2505,1,0,0,0,154,2509, + 1,0,0,0,156,2522,1,0,0,0,158,2524,1,0,0,0,160,2529,1,0,0,0,162,2549, + 1,0,0,0,164,2557,1,0,0,0,166,2564,1,0,0,0,168,2566,1,0,0,0,170,2575, + 1,0,0,0,172,2578,1,0,0,0,174,2582,1,0,0,0,176,2586,1,0,0,0,178,2611, + 1,0,0,0,180,2621,1,0,0,0,182,2635,1,0,0,0,184,2651,1,0,0,0,186,2657, + 1,0,0,0,188,2684,1,0,0,0,190,2694,1,0,0,0,192,2710,1,0,0,0,194,2754, + 1,0,0,0,196,2761,1,0,0,0,198,2763,1,0,0,0,200,2789,1,0,0,0,202,2800, + 1,0,0,0,204,2819,1,0,0,0,206,2830,1,0,0,0,208,2868,1,0,0,0,210,2889, + 1,0,0,0,212,2891,1,0,0,0,214,2911,1,0,0,0,216,2923,1,0,0,0,218,2935, + 1,0,0,0,220,2938,1,0,0,0,222,2941,1,0,0,0,224,2961,1,0,0,0,226,2966, + 1,0,0,0,228,3015,1,0,0,0,230,3017,1,0,0,0,232,3040,1,0,0,0,234,3056, + 1,0,0,0,236,3068,1,0,0,0,238,3095,1,0,0,0,240,3110,1,0,0,0,242,3173, + 1,0,0,0,244,3175,1,0,0,0,246,3180,1,0,0,0,248,3186,1,0,0,0,250,3273, + 1,0,0,0,252,3279,1,0,0,0,254,3281,1,0,0,0,256,3297,1,0,0,0,258,3299, + 1,0,0,0,260,3308,1,0,0,0,262,3312,1,0,0,0,264,3325,1,0,0,0,266,3337, + 1,0,0,0,268,3339,1,0,0,0,270,3361,1,0,0,0,272,3373,1,0,0,0,274,3384, + 1,0,0,0,276,3475,1,0,0,0,278,3477,1,0,0,0,280,3488,1,0,0,0,282,3499, + 1,0,0,0,284,3501,1,0,0,0,286,3527,1,0,0,0,288,3529,1,0,0,0,290,3533, + 1,0,0,0,292,3583,1,0,0,0,294,3585,1,0,0,0,296,3591,1,0,0,0,298,3616, + 1,0,0,0,300,3620,1,0,0,0,302,3834,1,0,0,0,304,3852,1,0,0,0,306,3878, + 1,0,0,0,308,3880,1,0,0,0,310,3888,1,0,0,0,312,3894,1,0,0,0,314,3898, + 1,0,0,0,316,3918,1,0,0,0,318,3924,1,0,0,0,320,3991,1,0,0,0,322,4022, + 1,0,0,0,324,4068,1,0,0,0,326,4070,1,0,0,0,328,4072,1,0,0,0,330,4083, + 1,0,0,0,332,4120,1,0,0,0,334,4122,1,0,0,0,336,4128,1,0,0,0,338,4178, + 1,0,0,0,340,4181,1,0,0,0,342,4195,1,0,0,0,344,4216,1,0,0,0,346,4240, + 1,0,0,0,348,4281,1,0,0,0,350,4283,1,0,0,0,352,4285,1,0,0,0,354,4325, + 1,0,0,0,356,4342,1,0,0,0,358,4362,1,0,0,0,360,4415,1,0,0,0,362,4418, + 1,0,0,0,364,4424,1,0,0,0,366,4432,1,0,0,0,368,4445,1,0,0,0,370,4447, + 1,0,0,0,372,4460,1,0,0,0,374,4462,1,0,0,0,376,4475,1,0,0,0,378,4485, + 1,0,0,0,380,4496,1,0,0,0,382,4507,1,0,0,0,384,4509,1,0,0,0,386,4514, + 1,0,0,0,388,4528,1,0,0,0,390,4560,1,0,0,0,392,4597,1,0,0,0,394,4599, + 1,0,0,0,396,4602,1,0,0,0,398,4605,1,0,0,0,400,4622,1,0,0,0,402,4643, + 1,0,0,0,404,4659,1,0,0,0,406,4675,1,0,0,0,408,4697,1,0,0,0,410,4702, + 1,0,0,0,412,4705,1,0,0,0,414,4713,1,0,0,0,416,4738,1,0,0,0,418,4741, + 1,0,0,0,420,4769,1,0,0,0,422,4774,1,0,0,0,424,4814,1,0,0,0,426,5026, + 1,0,0,0,428,5028,1,0,0,0,430,5116,1,0,0,0,432,5118,1,0,0,0,434,5124, + 1,0,0,0,436,5135,1,0,0,0,438,5145,1,0,0,0,440,5225,1,0,0,0,442,5227, + 1,0,0,0,444,5241,1,0,0,0,446,5263,1,0,0,0,448,5336,1,0,0,0,450,5338, + 1,0,0,0,452,5379,1,0,0,0,454,5381,1,0,0,0,456,5386,1,0,0,0,458,5389, + 1,0,0,0,460,5392,1,0,0,0,462,5442,1,0,0,0,464,5444,1,0,0,0,466,5455, + 1,0,0,0,468,5457,1,0,0,0,470,5467,1,0,0,0,472,5502,1,0,0,0,474,5505, + 1,0,0,0,476,5526,1,0,0,0,478,5536,1,0,0,0,480,5556,1,0,0,0,482,5562, + 1,0,0,0,484,5568,1,0,0,0,486,5573,1,0,0,0,488,5586,1,0,0,0,490,5613, + 1,0,0,0,492,5661,1,0,0,0,494,5663,1,0,0,0,496,5701,1,0,0,0,498,5703, + 1,0,0,0,500,5724,1,0,0,0,502,5744,1,0,0,0,504,5748,1,0,0,0,506,5763, + 1,0,0,0,508,5765,1,0,0,0,510,5769,1,0,0,0,512,5773,1,0,0,0,514,5781, + 1,0,0,0,516,5805,1,0,0,0,518,5807,1,0,0,0,520,5818,1,0,0,0,522,5826, + 1,0,0,0,524,5842,1,0,0,0,526,5867,1,0,0,0,528,5869,1,0,0,0,530,5873, + 1,0,0,0,532,5882,1,0,0,0,534,5922,1,0,0,0,536,5933,1,0,0,0,538,5941, + 1,0,0,0,540,5944,1,0,0,0,542,5948,1,0,0,0,544,5963,1,0,0,0,546,5988, + 1,0,0,0,548,6003,1,0,0,0,550,6029,1,0,0,0,552,6031,1,0,0,0,554,6054, + 1,0,0,0,556,6056,1,0,0,0,558,6064,1,0,0,0,560,6082,1,0,0,0,562,6106, + 1,0,0,0,564,6118,1,0,0,0,566,6122,1,0,0,0,568,6134,1,0,0,0,570,6154, + 1,0,0,0,572,6162,1,0,0,0,574,6176,1,0,0,0,576,6199,1,0,0,0,578,6201, + 1,0,0,0,580,6206,1,0,0,0,582,6216,1,0,0,0,584,6237,1,0,0,0,586,6239, + 1,0,0,0,588,6248,1,0,0,0,590,6259,1,0,0,0,592,6269,1,0,0,0,594,6271, + 1,0,0,0,596,6278,1,0,0,0,598,6309,1,0,0,0,600,6339,1,0,0,0,602,6341, + 1,0,0,0,604,6350,1,0,0,0,606,6353,1,0,0,0,608,6411,1,0,0,0,610,6446, + 1,0,0,0,612,6449,1,0,0,0,614,6470,1,0,0,0,616,6472,1,0,0,0,618,6480, + 1,0,0,0,620,6497,1,0,0,0,622,6523,1,0,0,0,624,6525,1,0,0,0,626,6533, + 1,0,0,0,628,6540,1,0,0,0,630,6564,1,0,0,0,632,6570,1,0,0,0,634,6578, + 1,0,0,0,636,6581,1,0,0,0,638,6588,1,0,0,0,640,6596,1,0,0,0,642,6601, + 1,0,0,0,644,6631,1,0,0,0,646,6658,1,0,0,0,648,6686,1,0,0,0,650,6703, + 1,0,0,0,652,6709,1,0,0,0,654,6727,1,0,0,0,656,6729,1,0,0,0,658,6733, + 1,0,0,0,660,6750,1,0,0,0,662,6755,1,0,0,0,664,6793,1,0,0,0,666,6795, + 1,0,0,0,668,6799,1,0,0,0,670,6801,1,0,0,0,672,6810,1,0,0,0,674,6894, + 1,0,0,0,676,6900,1,0,0,0,678,7009,1,0,0,0,680,7041,1,0,0,0,682,7092, + 1,0,0,0,684,7096,1,0,0,0,686,7272,1,0,0,0,688,7274,1,0,0,0,690,7282, + 1,0,0,0,692,7287,1,0,0,0,694,7289,1,0,0,0,696,7297,1,0,0,0,698,7300, + 1,0,0,0,700,7309,1,0,0,0,702,7312,1,0,0,0,704,7316,1,0,0,0,706,7321, + 1,0,0,0,708,7338,1,0,0,0,710,7365,1,0,0,0,712,7374,1,0,0,0,714,7376, + 1,0,0,0,716,7383,1,0,0,0,718,7387,1,0,0,0,720,7389,1,0,0,0,722,7397, + 1,0,0,0,724,7405,1,0,0,0,726,7412,1,0,0,0,728,7414,1,0,0,0,730,7422, + 1,0,0,0,732,7424,1,0,0,0,734,7431,1,0,0,0,736,7435,1,0,0,0,738,7437, + 1,0,0,0,740,7452,1,0,0,0,742,7454,1,0,0,0,744,7476,1,0,0,0,746,7478, + 1,0,0,0,748,7501,1,0,0,0,750,7503,1,0,0,0,752,7525,1,0,0,0,754,7528, + 1,0,0,0,756,7535,1,0,0,0,758,7538,1,0,0,0,760,7558,1,0,0,0,762,7565, + 1,0,0,0,764,7570,1,0,0,0,766,7578,1,0,0,0,768,7586,1,0,0,0,770,7594, + 1,0,0,0,772,7602,1,0,0,0,774,7604,1,0,0,0,776,7606,1,0,0,0,778,7608, + 1,0,0,0,780,7610,1,0,0,0,782,7612,1,0,0,0,784,7614,1,0,0,0,786,7618, + 1,0,0,0,788,7626,1,0,0,0,790,7634,1,0,0,0,792,7636,1,0,0,0,794,7638, + 1,0,0,0,796,7640,1,0,0,0,798,7642,1,0,0,0,800,7648,1,0,0,0,802,7654, + 1,0,0,0,804,7656,1,0,0,0,806,7669,1,0,0,0,808,7682,1,0,0,0,810,7684, + 1,0,0,0,812,7690,1,0,0,0,814,7696,1,0,0,0,816,7698,1,0,0,0,818,7714, + 1,0,0,0,820,7717,1,0,0,0,822,7726,1,0,0,0,824,7728,1,0,0,0,826,7738, + 1,0,0,0,828,7742,1,0,0,0,830,7747,1,0,0,0,832,7753,1,0,0,0,834,7766, + 1,0,0,0,836,7768,1,0,0,0,838,7821,1,0,0,0,840,7823,1,0,0,0,842,7825, + 1,0,0,0,844,7828,1,0,0,0,846,7856,1,0,0,0,848,7860,1,0,0,0,850,7911, + 1,0,0,0,852,7914,1,0,0,0,854,7940,1,0,0,0,856,7942,1,0,0,0,858,7965, + 1,0,0,0,860,7967,1,0,0,0,862,7972,1,0,0,0,864,7987,1,0,0,0,866,7993, + 1,0,0,0,868,8004,1,0,0,0,870,8034,1,0,0,0,872,8041,1,0,0,0,874,8066, + 1,0,0,0,876,8076,1,0,0,0,878,8103,1,0,0,0,880,8116,1,0,0,0,882,8126, + 1,0,0,0,884,8145,1,0,0,0,886,8177,1,0,0,0,888,8181,1,0,0,0,890,8189, + 1,0,0,0,892,8203,1,0,0,0,894,8209,1,0,0,0,896,8230,1,0,0,0,898,8236, + 1,0,0,0,900,8275,1,0,0,0,902,8279,1,0,0,0,904,8305,1,0,0,0,906,8307, + 1,0,0,0,908,8315,1,0,0,0,910,8355,1,0,0,0,912,8389,1,0,0,0,914,8391, + 1,0,0,0,916,8402,1,0,0,0,918,8439,1,0,0,0,920,8443,1,0,0,0,922,8445, + 1,0,0,0,924,8449,1,0,0,0,926,8452,1,0,0,0,928,8474,1,0,0,0,930,8478, + 1,0,0,0,932,8480,1,0,0,0,934,8504,1,0,0,0,936,8508,1,0,0,0,938,8511, + 1,0,0,0,940,942,3,2,1,0,941,940,1,0,0,0,942,945,1,0,0,0,943,941, + 1,0,0,0,943,944,1,0,0,0,944,946,1,0,0,0,945,943,1,0,0,0,946,947, + 5,0,0,1,947,1,1,0,0,0,948,950,3,4,2,0,949,951,5,7,0,0,950,949,1, + 0,0,0,950,951,1,0,0,0,951,3,1,0,0,0,952,1073,3,272,136,0,953,1073, + 3,482,241,0,954,1073,3,478,239,0,955,1073,3,480,240,0,956,1073,3, + 346,173,0,957,1073,3,488,244,0,958,1073,3,286,143,0,959,1073,3,204, + 102,0,960,1073,3,206,103,0,961,1073,3,212,106,0,962,1073,3,226,113, + 0,963,1073,3,398,199,0,964,1073,3,28,14,0,965,1073,3,428,214,0,966, + 1073,3,430,215,0,967,1073,3,440,220,0,968,1073,3,432,216,0,969,1073, + 3,438,219,0,970,1073,3,238,119,0,971,1073,3,240,120,0,972,1073,3, + 192,96,0,973,1073,3,484,242,0,974,1073,3,76,38,0,975,1073,3,424, + 212,0,976,1073,3,100,50,0,977,1073,3,444,222,0,978,1073,3,18,9,0, + 979,1073,3,20,10,0,980,1073,3,16,8,0,981,1073,3,448,224,0,982,1073, + 3,178,89,0,983,1073,3,492,246,0,984,1073,3,490,245,0,985,1073,3, + 234,117,0,986,1073,3,500,250,0,987,1073,3,6,3,0,988,1073,3,72,36, + 0,989,1073,3,104,52,0,990,1073,3,496,248,0,991,1073,3,318,159,0, + 992,1073,3,70,35,0,993,1073,3,106,53,0,994,1073,3,248,124,0,995, + 1073,3,180,90,0,996,1073,3,274,137,0,997,1073,3,414,207,0,998,1073, + 3,494,247,0,999,1073,3,486,243,0,1000,1073,3,202,101,0,1001,1073, + 3,208,104,0,1002,1073,3,222,111,0,1003,1073,3,228,114,0,1004,1073, + 3,358,179,0,1005,1073,3,26,13,0,1006,1073,3,186,93,0,1007,1073,3, + 290,145,0,1008,1073,3,294,147,0,1009,1073,3,442,221,0,1010,1073, + 3,296,148,0,1011,1073,3,236,118,0,1012,1073,3,198,99,0,1013,1073, + 3,30,15,0,1014,1073,3,190,95,0,1015,1073,3,114,57,0,1016,1073,3, + 446,223,0,1017,1073,3,176,88,0,1018,1073,3,200,100,0,1019,1073,3, + 418,209,0,1020,1073,3,250,125,0,1021,1073,3,268,134,0,1022,1073, + 3,8,4,0,1023,1073,3,14,7,0,1024,1073,3,232,116,0,1025,1073,3,474, + 237,0,1026,1073,3,530,265,0,1027,1073,3,552,276,0,1028,1073,3,276, + 138,0,1029,1073,3,542,271,0,1030,1073,3,74,37,0,1031,1073,3,412, + 206,0,1032,1073,3,302,151,0,1033,1073,3,526,263,0,1034,1073,3,514, + 257,0,1035,1073,3,322,161,0,1036,1073,3,328,164,0,1037,1073,3,342, + 171,0,1038,1073,3,908,454,0,1039,1073,3,230,115,0,1040,1073,3,352, + 176,0,1041,1073,3,532,266,0,1042,1073,3,458,229,0,1043,1073,3,188, + 94,0,1044,1073,3,472,236,0,1045,1073,3,544,272,0,1046,1073,3,454, + 227,0,1047,1073,3,520,260,0,1048,1073,3,300,150,0,1049,1073,3,422, + 211,0,1050,1073,3,402,201,0,1051,1073,3,400,200,0,1052,1073,3,404, + 202,0,1053,1073,3,426,213,0,1054,1073,3,330,165,0,1055,1073,3,344, + 172,0,1056,1073,3,450,225,0,1057,1073,3,320,160,0,1058,1073,3,554, + 277,0,1059,1073,3,462,231,0,1060,1073,3,314,157,0,1061,1073,3,460, + 230,0,1062,1073,3,546,273,0,1063,1073,3,498,249,0,1064,1073,3,60, + 30,0,1065,1073,3,36,18,0,1066,1073,3,68,34,0,1067,1073,3,470,235, + 0,1068,1070,5,583,0,0,1069,1071,5,584,0,0,1070,1069,1,0,0,0,1070, + 1071,1,0,0,0,1071,1073,1,0,0,0,1072,952,1,0,0,0,1072,953,1,0,0,0, + 1072,954,1,0,0,0,1072,955,1,0,0,0,1072,956,1,0,0,0,1072,957,1,0, + 0,0,1072,958,1,0,0,0,1072,959,1,0,0,0,1072,960,1,0,0,0,1072,961, + 1,0,0,0,1072,962,1,0,0,0,1072,963,1,0,0,0,1072,964,1,0,0,0,1072, + 965,1,0,0,0,1072,966,1,0,0,0,1072,967,1,0,0,0,1072,968,1,0,0,0,1072, + 969,1,0,0,0,1072,970,1,0,0,0,1072,971,1,0,0,0,1072,972,1,0,0,0,1072, + 973,1,0,0,0,1072,974,1,0,0,0,1072,975,1,0,0,0,1072,976,1,0,0,0,1072, + 977,1,0,0,0,1072,978,1,0,0,0,1072,979,1,0,0,0,1072,980,1,0,0,0,1072, + 981,1,0,0,0,1072,982,1,0,0,0,1072,983,1,0,0,0,1072,984,1,0,0,0,1072, + 985,1,0,0,0,1072,986,1,0,0,0,1072,987,1,0,0,0,1072,988,1,0,0,0,1072, + 989,1,0,0,0,1072,990,1,0,0,0,1072,991,1,0,0,0,1072,992,1,0,0,0,1072, + 993,1,0,0,0,1072,994,1,0,0,0,1072,995,1,0,0,0,1072,996,1,0,0,0,1072, + 997,1,0,0,0,1072,998,1,0,0,0,1072,999,1,0,0,0,1072,1000,1,0,0,0, + 1072,1001,1,0,0,0,1072,1002,1,0,0,0,1072,1003,1,0,0,0,1072,1004, + 1,0,0,0,1072,1005,1,0,0,0,1072,1006,1,0,0,0,1072,1007,1,0,0,0,1072, + 1008,1,0,0,0,1072,1009,1,0,0,0,1072,1010,1,0,0,0,1072,1011,1,0,0, + 0,1072,1012,1,0,0,0,1072,1013,1,0,0,0,1072,1014,1,0,0,0,1072,1015, + 1,0,0,0,1072,1016,1,0,0,0,1072,1017,1,0,0,0,1072,1018,1,0,0,0,1072, + 1019,1,0,0,0,1072,1020,1,0,0,0,1072,1021,1,0,0,0,1072,1022,1,0,0, + 0,1072,1023,1,0,0,0,1072,1024,1,0,0,0,1072,1025,1,0,0,0,1072,1026, + 1,0,0,0,1072,1027,1,0,0,0,1072,1028,1,0,0,0,1072,1029,1,0,0,0,1072, + 1030,1,0,0,0,1072,1031,1,0,0,0,1072,1032,1,0,0,0,1072,1033,1,0,0, + 0,1072,1034,1,0,0,0,1072,1035,1,0,0,0,1072,1036,1,0,0,0,1072,1037, + 1,0,0,0,1072,1038,1,0,0,0,1072,1039,1,0,0,0,1072,1040,1,0,0,0,1072, + 1041,1,0,0,0,1072,1042,1,0,0,0,1072,1043,1,0,0,0,1072,1044,1,0,0, + 0,1072,1045,1,0,0,0,1072,1046,1,0,0,0,1072,1047,1,0,0,0,1072,1048, + 1,0,0,0,1072,1049,1,0,0,0,1072,1050,1,0,0,0,1072,1051,1,0,0,0,1072, + 1052,1,0,0,0,1072,1053,1,0,0,0,1072,1054,1,0,0,0,1072,1055,1,0,0, + 0,1072,1056,1,0,0,0,1072,1057,1,0,0,0,1072,1058,1,0,0,0,1072,1059, + 1,0,0,0,1072,1060,1,0,0,0,1072,1061,1,0,0,0,1072,1062,1,0,0,0,1072, + 1063,1,0,0,0,1072,1064,1,0,0,0,1072,1065,1,0,0,0,1072,1066,1,0,0, + 0,1072,1067,1,0,0,0,1072,1068,1,0,0,0,1073,5,1,0,0,0,1074,1075,5, + 433,0,0,1075,1076,3,680,340,0,1076,7,1,0,0,0,1077,1078,5,46,0,0, + 1078,1079,5,318,0,0,1079,1081,3,822,411,0,1080,1082,5,105,0,0,1081, + 1080,1,0,0,0,1081,1082,1,0,0,0,1082,1086,1,0,0,0,1083,1085,3,12, + 6,0,1084,1083,1,0,0,0,1085,1088,1,0,0,0,1086,1084,1,0,0,0,1086,1087, + 1,0,0,0,1087,9,1,0,0,0,1088,1086,1,0,0,0,1089,1092,5,287,0,0,1090, + 1093,3,816,408,0,1091,1093,5,78,0,0,1092,1090,1,0,0,0,1092,1091, + 1,0,0,0,1093,1128,1,0,0,0,1094,1095,7,0,0,0,1095,1096,5,287,0,0, + 1096,1128,3,816,408,0,1097,1128,5,228,0,0,1098,1128,5,229,0,0,1099, + 1128,5,236,0,0,1100,1128,5,237,0,0,1101,1128,5,234,0,0,1102,1128, + 5,235,0,0,1103,1128,5,232,0,0,1104,1128,5,233,0,0,1105,1128,5,230, + 0,0,1106,1128,5,231,0,0,1107,1128,5,535,0,0,1108,1128,5,536,0,0, + 1109,1128,5,537,0,0,1110,1128,5,538,0,0,1111,1128,5,539,0,0,1112, + 1128,5,540,0,0,1113,1114,5,164,0,0,1114,1115,5,74,0,0,1115,1128, + 3,820,410,0,1116,1117,5,371,0,0,1117,1118,5,368,0,0,1118,1128,3, + 816,408,0,1119,1120,5,68,0,0,1120,1121,7,1,0,0,1121,1128,3,788,394, + 0,1122,1123,7,2,0,0,1123,1128,3,824,412,0,1124,1125,5,134,0,0,1125, + 1128,3,788,394,0,1126,1128,3,834,417,0,1127,1089,1,0,0,0,1127,1094, + 1,0,0,0,1127,1097,1,0,0,0,1127,1098,1,0,0,0,1127,1099,1,0,0,0,1127, + 1100,1,0,0,0,1127,1101,1,0,0,0,1127,1102,1,0,0,0,1127,1103,1,0,0, + 0,1127,1104,1,0,0,0,1127,1105,1,0,0,0,1127,1106,1,0,0,0,1127,1107, + 1,0,0,0,1127,1108,1,0,0,0,1127,1109,1,0,0,0,1127,1110,1,0,0,0,1127, + 1111,1,0,0,0,1127,1112,1,0,0,0,1127,1113,1,0,0,0,1127,1116,1,0,0, + 0,1127,1119,1,0,0,0,1127,1122,1,0,0,0,1127,1124,1,0,0,0,1127,1126, + 1,0,0,0,1128,11,1,0,0,0,1129,1138,3,10,5,0,1130,1131,5,348,0,0,1131, + 1138,5,574,0,0,1132,1133,7,3,0,0,1133,1138,3,824,412,0,1134,1135, + 5,68,0,0,1135,1136,7,1,0,0,1136,1138,3,824,412,0,1137,1129,1,0,0, + 0,1137,1130,1,0,0,0,1137,1132,1,0,0,0,1137,1134,1,0,0,0,1138,13, + 1,0,0,0,1139,1140,5,46,0,0,1140,1141,5,99,0,0,1141,1143,3,822,411, + 0,1142,1144,5,105,0,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144,1148, + 1,0,0,0,1145,1147,3,12,6,0,1146,1145,1,0,0,0,1147,1150,1,0,0,0,1148, + 1146,1,0,0,0,1148,1149,1,0,0,0,1149,15,1,0,0,0,1150,1148,1,0,0,0, + 1151,1152,5,138,0,0,1152,1153,7,2,0,0,1153,1155,3,822,411,0,1154, + 1156,5,105,0,0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156,1160,1,0, + 0,0,1157,1159,3,10,5,0,1158,1157,1,0,0,0,1159,1162,1,0,0,0,1160, + 1158,1,0,0,0,1160,1161,1,0,0,0,1161,17,1,0,0,0,1162,1160,1,0,0,0, + 1163,1164,5,138,0,0,1164,1167,7,2,0,0,1165,1168,5,30,0,0,1166,1168, + 3,822,411,0,1167,1165,1,0,0,0,1167,1166,1,0,0,0,1168,1169,1,0,0, + 0,1169,1170,5,68,0,0,1170,1171,5,175,0,0,1171,1172,3,792,396,0,1172, + 1173,3,64,32,0,1173,19,1,0,0,0,1174,1175,5,138,0,0,1175,1176,5,442, + 0,0,1176,1178,3,798,399,0,1177,1179,3,362,181,0,1178,1177,1,0,0, + 0,1178,1179,1,0,0,0,1179,1180,1,0,0,0,1180,1181,3,22,11,0,1181,21, + 1,0,0,0,1182,1186,3,24,12,0,1183,1185,3,24,12,0,1184,1183,1,0,0, + 0,1185,1188,1,0,0,0,1186,1184,1,0,0,0,1186,1187,1,0,0,0,1187,1190, + 1,0,0,0,1188,1186,1,0,0,0,1189,1191,5,315,0,0,1190,1189,1,0,0,0, + 1190,1191,1,0,0,0,1191,1209,1,0,0,0,1192,1193,5,309,0,0,1193,1194, + 5,94,0,0,1194,1209,3,796,398,0,1195,1196,5,282,0,0,1196,1197,5,94, + 0,0,1197,1209,3,822,411,0,1198,1199,5,333,0,0,1199,1200,5,323,0, + 0,1200,1209,3,32,16,0,1201,1203,5,269,0,0,1202,1201,1,0,0,0,1202, + 1203,1,0,0,0,1203,1204,1,0,0,0,1204,1205,5,462,0,0,1205,1206,5,80, + 0,0,1206,1207,5,204,0,0,1207,1209,3,826,413,0,1208,1182,1,0,0,0, + 1208,1192,1,0,0,0,1208,1195,1,0,0,0,1208,1198,1,0,0,0,1208,1202, + 1,0,0,0,1209,23,1,0,0,0,1210,1253,5,222,0,0,1211,1253,5,338,0,0, + 1212,1253,5,377,0,0,1213,1215,5,77,0,0,1214,1213,1,0,0,0,1214,1215, + 1,0,0,0,1215,1216,1,0,0,0,1216,1253,5,250,0,0,1217,1219,5,205,0, + 0,1218,1217,1,0,0,0,1218,1219,1,0,0,0,1219,1220,1,0,0,0,1220,1221, + 5,327,0,0,1221,1228,5,243,0,0,1222,1224,5,205,0,0,1223,1222,1,0, + 0,0,1223,1224,1,0,0,0,1224,1225,1,0,0,0,1225,1226,5,327,0,0,1226, + 1228,5,181,0,0,1227,1218,1,0,0,0,1227,1223,1,0,0,0,1228,1253,1,0, + 0,0,1229,1230,5,460,0,0,1230,1253,7,4,0,0,1231,1232,5,170,0,0,1232, + 1253,3,832,416,0,1233,1234,5,320,0,0,1234,1253,3,826,413,0,1235, + 1236,5,333,0,0,1236,1237,3,826,413,0,1237,1240,7,5,0,0,1238,1241, + 3,826,413,0,1239,1241,5,53,0,0,1240,1238,1,0,0,0,1240,1239,1,0,0, + 0,1241,1253,1,0,0,0,1242,1243,5,333,0,0,1243,1244,3,826,413,0,1244, + 1245,5,64,0,0,1245,1246,5,434,0,0,1246,1253,1,0,0,0,1247,1250,5, + 313,0,0,1248,1251,3,826,413,0,1249,1251,5,30,0,0,1250,1248,1,0,0, + 0,1250,1249,1,0,0,0,1251,1253,1,0,0,0,1252,1210,1,0,0,0,1252,1211, + 1,0,0,0,1252,1212,1,0,0,0,1252,1214,1,0,0,0,1252,1227,1,0,0,0,1252, + 1229,1,0,0,0,1252,1231,1,0,0,0,1252,1233,1,0,0,0,1252,1235,1,0,0, + 0,1252,1242,1,0,0,0,1252,1247,1,0,0,0,1253,25,1,0,0,0,1254,1255, + 5,46,0,0,1255,1256,5,66,0,0,1256,1258,3,822,411,0,1257,1259,5,105, + 0,0,1258,1257,1,0,0,0,1258,1259,1,0,0,0,1259,1263,1,0,0,0,1260,1262, + 3,12,6,0,1261,1260,1,0,0,0,1262,1265,1,0,0,0,1263,1261,1,0,0,0,1263, + 1264,1,0,0,0,1264,27,1,0,0,0,1265,1263,1,0,0,0,1266,1267,5,138,0, + 0,1267,1268,5,66,0,0,1268,1269,3,822,411,0,1269,1270,7,6,0,0,1270, + 1271,5,99,0,0,1271,1272,3,824,412,0,1272,29,1,0,0,0,1273,1274,5, + 46,0,0,1274,1276,5,323,0,0,1275,1277,3,288,144,0,1276,1275,1,0,0, + 0,1276,1277,1,0,0,0,1277,1284,1,0,0,0,1278,1280,3,32,16,0,1279,1278, + 1,0,0,0,1279,1280,1,0,0,0,1280,1281,1,0,0,0,1281,1282,5,106,0,0, + 1282,1285,3,822,411,0,1283,1285,3,32,16,0,1284,1279,1,0,0,0,1284, + 1283,1,0,0,0,1285,1289,1,0,0,0,1286,1288,3,34,17,0,1287,1286,1,0, + 0,0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1289,1290,1,0,0,0,1290,31, + 1,0,0,0,1291,1289,1,0,0,0,1292,1293,3,310,155,0,1293,33,1,0,0,0, + 1294,1301,3,114,57,0,1295,1301,3,352,176,0,1296,1301,3,190,95,0, + 1297,1301,3,250,125,0,1298,1301,3,328,164,0,1299,1301,3,470,235, + 0,1300,1294,1,0,0,0,1300,1295,1,0,0,0,1300,1296,1,0,0,0,1300,1297, + 1,0,0,0,1300,1298,1,0,0,0,1300,1299,1,0,0,0,1301,35,1,0,0,0,1302, + 1304,5,333,0,0,1303,1305,7,7,0,0,1304,1303,1,0,0,0,1304,1305,1,0, + 0,0,1305,1306,1,0,0,0,1306,1307,3,38,19,0,1307,37,1,0,0,0,1308,1309, + 5,356,0,0,1309,1317,3,468,234,0,1310,1311,5,332,0,0,1311,1312,5, + 154,0,0,1312,1313,5,36,0,0,1313,1314,5,356,0,0,1314,1317,3,468,234, + 0,1315,1317,3,42,21,0,1316,1308,1,0,0,0,1316,1310,1,0,0,0,1316,1315, + 1,0,0,0,1317,39,1,0,0,0,1318,1321,5,30,0,0,1319,1321,3,44,22,0,1320, + 1318,1,0,0,0,1320,1319,1,0,0,0,1321,1323,1,0,0,0,1322,1324,7,5,0, + 0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324,1327,1,0,0,0,1325,1328, + 5,53,0,0,1326,1328,3,46,23,0,1327,1325,1,0,0,0,1327,1326,1,0,0,0, + 1327,1328,1,0,0,0,1328,41,1,0,0,0,1329,1330,5,418,0,0,1330,1331, + 5,386,0,0,1331,1358,3,56,28,0,1332,1333,5,152,0,0,1333,1358,3,816, + 408,0,1334,1335,5,323,0,0,1335,1358,3,794,397,0,1336,1339,5,267, + 0,0,1337,1340,3,816,408,0,1338,1340,5,53,0,0,1339,1337,1,0,0,0,1339, + 1338,1,0,0,0,1339,1340,1,0,0,0,1340,1358,1,0,0,0,1341,1342,5,318, + 0,0,1342,1358,3,58,29,0,1343,1344,5,332,0,0,1344,1345,5,106,0,0, + 1345,1358,3,58,29,0,1346,1347,5,383,0,0,1347,1348,5,279,0,0,1348, + 1358,3,692,346,0,1349,1350,5,356,0,0,1350,1351,5,337,0,0,1351,1358, + 3,816,408,0,1352,1353,3,44,22,0,1353,1354,5,64,0,0,1354,1355,5,434, + 0,0,1355,1358,1,0,0,0,1356,1358,3,40,20,0,1357,1329,1,0,0,0,1357, + 1332,1,0,0,0,1357,1334,1,0,0,0,1357,1336,1,0,0,0,1357,1341,1,0,0, + 0,1357,1343,1,0,0,0,1357,1346,1,0,0,0,1357,1349,1,0,0,0,1357,1352, + 1,0,0,0,1357,1356,1,0,0,0,1358,43,1,0,0,0,1359,1364,3,826,413,0, + 1360,1361,5,11,0,0,1361,1363,3,826,413,0,1362,1360,1,0,0,0,1363, + 1366,1,0,0,0,1364,1362,1,0,0,0,1364,1365,1,0,0,0,1365,45,1,0,0,0, + 1366,1364,1,0,0,0,1367,1372,3,48,24,0,1368,1369,5,6,0,0,1369,1371, + 3,48,24,0,1370,1368,1,0,0,0,1371,1374,1,0,0,0,1372,1370,1,0,0,0, + 1372,1373,1,0,0,0,1373,47,1,0,0,0,1374,1372,1,0,0,0,1375,1378,3, + 54,27,0,1376,1378,3,196,98,0,1377,1375,1,0,0,0,1377,1376,1,0,0,0, + 1378,49,1,0,0,0,1379,1380,5,300,0,0,1380,1385,7,8,0,0,1381,1382, + 5,310,0,0,1382,1385,5,300,0,0,1383,1385,5,330,0,0,1384,1379,1,0, + 0,0,1384,1381,1,0,0,0,1384,1383,1,0,0,0,1385,51,1,0,0,0,1386,1393, + 5,96,0,0,1387,1393,5,60,0,0,1388,1393,5,80,0,0,1389,1393,3,806,403, + 0,1390,1393,3,840,420,0,1391,1393,3,816,408,0,1392,1386,1,0,0,0, + 1392,1387,1,0,0,0,1392,1388,1,0,0,0,1392,1389,1,0,0,0,1392,1390, + 1,0,0,0,1392,1391,1,0,0,0,1393,53,1,0,0,0,1394,1399,5,96,0,0,1395, + 1399,5,60,0,0,1396,1399,5,80,0,0,1397,1399,3,58,29,0,1398,1394,1, + 0,0,0,1398,1395,1,0,0,0,1398,1396,1,0,0,0,1398,1397,1,0,0,0,1399, + 55,1,0,0,0,1400,1415,3,816,408,0,1401,1415,5,53,0,0,1402,1415,3, + 834,417,0,1403,1404,5,403,0,0,1404,1406,3,816,408,0,1405,1407,3, + 664,332,0,1406,1405,1,0,0,0,1406,1407,1,0,0,0,1407,1415,1,0,0,0, + 1408,1409,5,403,0,0,1409,1410,3,656,328,0,1410,1411,3,816,408,0, + 1411,1415,1,0,0,0,1412,1415,3,196,98,0,1413,1415,5,254,0,0,1414, + 1400,1,0,0,0,1414,1401,1,0,0,0,1414,1402,1,0,0,0,1414,1403,1,0,0, + 0,1414,1408,1,0,0,0,1414,1412,1,0,0,0,1414,1413,1,0,0,0,1415,57, + 1,0,0,0,1416,1419,3,830,415,0,1417,1419,3,816,408,0,1418,1416,1, + 0,0,0,1418,1417,1,0,0,0,1419,59,1,0,0,0,1420,1421,5,313,0,0,1421, + 1422,3,62,31,0,1422,61,1,0,0,0,1423,1424,5,418,0,0,1424,1433,5,386, + 0,0,1425,1426,5,356,0,0,1426,1427,5,244,0,0,1427,1433,5,251,0,0, + 1428,1429,5,332,0,0,1429,1433,5,106,0,0,1430,1433,5,30,0,0,1431, + 1433,3,44,22,0,1432,1423,1,0,0,0,1432,1425,1,0,0,0,1432,1428,1,0, + 0,0,1432,1430,1,0,0,0,1432,1431,1,0,0,0,1433,63,1,0,0,0,1434,1435, + 5,333,0,0,1435,1438,3,38,19,0,1436,1438,3,60,30,0,1437,1434,1,0, + 0,0,1437,1436,1,0,0,0,1438,65,1,0,0,0,1439,1440,5,333,0,0,1440,1443, + 3,42,21,0,1441,1443,3,60,30,0,1442,1439,1,0,0,0,1442,1441,1,0,0, + 0,1443,67,1,0,0,0,1444,1454,5,335,0,0,1445,1455,3,44,22,0,1446,1447, + 5,418,0,0,1447,1455,5,386,0,0,1448,1449,5,356,0,0,1449,1450,5,244, + 0,0,1450,1455,5,251,0,0,1451,1452,5,332,0,0,1452,1455,5,106,0,0, + 1453,1455,5,30,0,0,1454,1445,1,0,0,0,1454,1446,1,0,0,0,1454,1448, + 1,0,0,0,1454,1451,1,0,0,0,1454,1453,1,0,0,0,1455,69,1,0,0,0,1456, + 1457,5,333,0,0,1457,1460,5,165,0,0,1458,1461,5,30,0,0,1459,1461, + 3,764,382,0,1460,1458,1,0,0,0,1460,1459,1,0,0,0,1461,1462,1,0,0, + 0,1462,1463,7,9,0,0,1463,71,1,0,0,0,1464,1465,5,155,0,0,1465,73, + 1,0,0,0,1466,1467,5,187,0,0,1467,1468,7,10,0,0,1468,75,1,0,0,0,1469, + 1470,5,138,0,0,1470,1472,5,92,0,0,1471,1473,3,416,208,0,1472,1471, + 1,0,0,0,1472,1473,1,0,0,0,1473,1474,1,0,0,0,1474,1477,3,620,310, + 0,1475,1478,3,78,39,0,1476,1478,3,80,40,0,1477,1475,1,0,0,0,1477, + 1476,1,0,0,0,1478,1587,1,0,0,0,1479,1480,5,138,0,0,1480,1481,5,92, + 0,0,1481,1482,5,30,0,0,1482,1483,5,68,0,0,1483,1487,3,170,85,0,1484, + 1485,5,281,0,0,1485,1486,5,147,0,0,1486,1488,3,824,412,0,1487,1484, + 1,0,0,0,1487,1488,1,0,0,0,1488,1489,1,0,0,0,1489,1490,5,333,0,0, + 1490,1491,5,351,0,0,1491,1493,3,774,387,0,1492,1494,5,272,0,0,1493, + 1492,1,0,0,0,1493,1494,1,0,0,0,1494,1587,1,0,0,0,1495,1496,5,138, + 0,0,1496,1498,5,92,0,0,1497,1499,3,416,208,0,1498,1497,1,0,0,0,1498, + 1499,1,0,0,0,1499,1500,1,0,0,0,1500,1501,3,778,389,0,1501,1502,3, + 82,41,0,1502,1503,3,98,49,0,1503,1587,1,0,0,0,1504,1505,5,138,0, + 0,1505,1507,5,92,0,0,1506,1508,3,416,208,0,1507,1506,1,0,0,0,1507, + 1508,1,0,0,0,1508,1509,1,0,0,0,1509,1510,3,778,389,0,1510,1511,5, + 436,0,0,1511,1512,5,285,0,0,1512,1514,3,784,392,0,1513,1515,7,11, + 0,0,1514,1513,1,0,0,0,1514,1515,1,0,0,0,1515,1587,1,0,0,0,1516,1517, + 5,138,0,0,1517,1519,5,226,0,0,1518,1520,3,416,208,0,1519,1518,1, + 0,0,0,1519,1520,1,0,0,0,1520,1521,1,0,0,0,1521,1524,3,784,392,0, + 1522,1525,3,78,39,0,1523,1525,3,82,41,0,1524,1522,1,0,0,0,1524,1523, + 1,0,0,0,1525,1587,1,0,0,0,1526,1527,5,138,0,0,1527,1528,5,226,0, + 0,1528,1529,5,30,0,0,1529,1530,5,68,0,0,1530,1534,3,170,85,0,1531, + 1532,5,281,0,0,1532,1533,5,147,0,0,1533,1535,3,824,412,0,1534,1531, + 1,0,0,0,1534,1535,1,0,0,0,1535,1536,1,0,0,0,1536,1537,5,333,0,0, + 1537,1539,3,170,85,0,1538,1540,5,272,0,0,1539,1538,1,0,0,0,1539, + 1540,1,0,0,0,1540,1587,1,0,0,0,1541,1542,5,138,0,0,1542,1544,5,328, + 0,0,1543,1545,3,416,208,0,1544,1543,1,0,0,0,1544,1545,1,0,0,0,1545, + 1546,1,0,0,0,1546,1547,3,784,392,0,1547,1548,3,78,39,0,1548,1587, + 1,0,0,0,1549,1551,5,138,0,0,1550,1552,5,259,0,0,1551,1550,1,0,0, + 0,1551,1552,1,0,0,0,1552,1553,1,0,0,0,1553,1555,5,376,0,0,1554,1556, + 3,416,208,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556,1557,1,0,0, + 0,1557,1558,3,782,391,0,1558,1559,3,78,39,0,1559,1587,1,0,0,0,1560, + 1561,5,138,0,0,1561,1562,5,259,0,0,1562,1563,5,376,0,0,1563,1564, + 5,30,0,0,1564,1565,5,68,0,0,1565,1569,3,170,85,0,1566,1567,5,281, + 0,0,1567,1568,5,147,0,0,1568,1570,3,824,412,0,1569,1566,1,0,0,0, + 1569,1570,1,0,0,0,1570,1571,1,0,0,0,1571,1572,5,333,0,0,1572,1573, + 5,351,0,0,1573,1575,3,774,387,0,1574,1576,5,272,0,0,1575,1574,1, + 0,0,0,1575,1576,1,0,0,0,1576,1587,1,0,0,0,1577,1578,5,138,0,0,1578, + 1579,5,63,0,0,1579,1581,5,92,0,0,1580,1582,3,416,208,0,1581,1580, + 1,0,0,0,1581,1582,1,0,0,0,1582,1583,1,0,0,0,1583,1584,3,620,310, + 0,1584,1585,3,78,39,0,1585,1587,1,0,0,0,1586,1469,1,0,0,0,1586,1479, + 1,0,0,0,1586,1495,1,0,0,0,1586,1504,1,0,0,0,1586,1516,1,0,0,0,1586, + 1526,1,0,0,0,1586,1541,1,0,0,0,1586,1549,1,0,0,0,1586,1560,1,0,0, + 0,1586,1577,1,0,0,0,1587,77,1,0,0,0,1588,1593,3,84,42,0,1589,1590, + 5,6,0,0,1590,1592,3,84,42,0,1591,1589,1,0,0,0,1592,1595,1,0,0,0, + 1593,1591,1,0,0,0,1593,1594,1,0,0,0,1594,79,1,0,0,0,1595,1593,1, + 0,0,0,1596,1597,3,82,41,0,1597,1598,3,98,49,0,1598,1603,1,0,0,0, + 1599,1600,5,436,0,0,1600,1601,5,285,0,0,1601,1603,3,784,392,0,1602, + 1596,1,0,0,0,1602,1599,1,0,0,0,1603,81,1,0,0,0,1604,1605,5,435,0, + 0,1605,1606,5,285,0,0,1606,1607,3,784,392,0,1607,83,1,0,0,0,1608, + 1611,5,133,0,0,1609,1610,5,45,0,0,1610,1612,3,826,413,0,1611,1609, + 1,0,0,0,1611,1612,1,0,0,0,1612,1613,1,0,0,0,1613,1842,3,136,68,0, + 1614,1615,5,138,0,0,1615,1616,5,45,0,0,1616,1620,3,826,413,0,1617, + 1619,3,266,133,0,1618,1617,1,0,0,0,1619,1622,1,0,0,0,1620,1618,1, + 0,0,0,1620,1621,1,0,0,0,1621,1842,1,0,0,0,1622,1620,1,0,0,0,1623, + 1624,5,372,0,0,1624,1625,5,45,0,0,1625,1842,3,826,413,0,1626,1627, + 5,191,0,0,1627,1629,5,45,0,0,1628,1630,3,416,208,0,1629,1628,1,0, + 0,0,1629,1630,1,0,0,0,1630,1631,1,0,0,0,1631,1633,3,826,413,0,1632, + 1634,3,88,44,0,1633,1632,1,0,0,0,1633,1634,1,0,0,0,1634,1842,1,0, + 0,0,1635,1636,5,333,0,0,1636,1637,5,379,0,0,1637,1842,7,12,0,0,1638, + 1639,5,158,0,0,1639,1640,5,80,0,0,1640,1842,3,826,413,0,1641,1642, + 5,333,0,0,1642,1842,7,13,0,0,1643,1645,5,193,0,0,1644,1646,7,14, + 0,0,1645,1644,1,0,0,0,1645,1646,1,0,0,0,1646,1647,1,0,0,0,1647,1842, + 5,357,0,0,1648,1649,5,186,0,0,1649,1653,5,357,0,0,1650,1654,5,30, + 0,0,1651,1654,5,99,0,0,1652,1654,3,826,413,0,1653,1650,1,0,0,0,1653, + 1651,1,0,0,0,1653,1652,1,0,0,0,1654,1842,1,0,0,0,1655,1656,5,193, + 0,0,1656,1657,7,14,0,0,1657,1658,5,321,0,0,1658,1842,3,826,413,0, + 1659,1660,5,186,0,0,1660,1661,5,321,0,0,1661,1842,3,826,413,0,1662, + 1664,5,269,0,0,1663,1662,1,0,0,0,1663,1664,1,0,0,0,1664,1665,1,0, + 0,0,1665,1666,5,228,0,0,1666,1842,3,784,392,0,1667,1668,5,275,0, + 0,1668,1842,3,310,155,0,1669,1670,5,77,0,0,1670,1842,5,275,0,0,1671, + 1672,5,282,0,0,1672,1673,5,94,0,0,1673,1842,3,822,411,0,1674,1675, + 5,333,0,0,1675,1676,5,351,0,0,1676,1842,3,774,387,0,1677,1678,5, + 312,0,0,1678,1683,5,219,0,0,1679,1684,5,270,0,0,1680,1684,5,113, + 0,0,1681,1684,5,53,0,0,1682,1684,3,174,87,0,1683,1679,1,0,0,0,1683, + 1680,1,0,0,0,1683,1681,1,0,0,0,1683,1682,1,0,0,0,1684,1842,1,0,0, + 0,1685,1692,5,193,0,0,1686,1692,5,186,0,0,1687,1689,5,269,0,0,1688, + 1687,1,0,0,0,1688,1689,1,0,0,0,1689,1690,1,0,0,0,1690,1692,5,209, + 0,0,1691,1685,1,0,0,0,1691,1686,1,0,0,0,1691,1688,1,0,0,0,1692,1693, + 1,0,0,0,1693,1694,5,414,0,0,1694,1695,5,251,0,0,1695,1842,5,327, + 0,0,1696,1698,5,191,0,0,1697,1699,5,44,0,0,1698,1697,1,0,0,0,1698, + 1699,1,0,0,0,1699,1701,1,0,0,0,1700,1702,3,416,208,0,1701,1700,1, + 0,0,0,1701,1702,1,0,0,0,1702,1703,1,0,0,0,1703,1705,3,806,403,0, + 1704,1706,3,88,44,0,1705,1704,1,0,0,0,1705,1706,1,0,0,0,1706,1842, + 1,0,0,0,1707,1709,5,133,0,0,1708,1710,5,44,0,0,1709,1708,1,0,0,0, + 1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713,3,288,144,0,1712,1711, + 1,0,0,0,1712,1713,1,0,0,0,1713,1714,1,0,0,0,1714,1842,3,126,63,0, + 1715,1717,5,138,0,0,1716,1718,5,44,0,0,1717,1716,1,0,0,0,1717,1718, + 1,0,0,0,1718,1719,1,0,0,0,1719,1722,3,806,403,0,1720,1723,3,86,43, + 0,1721,1723,3,216,108,0,1722,1720,1,0,0,0,1722,1721,1,0,0,0,1723, + 1842,1,0,0,0,1724,1726,5,138,0,0,1725,1727,5,44,0,0,1726,1725,1, + 0,0,0,1726,1727,1,0,0,0,1727,1728,1,0,0,0,1728,1729,3,806,403,0, + 1729,1730,7,15,0,0,1730,1731,5,77,0,0,1731,1732,5,78,0,0,1732,1842, + 1,0,0,0,1733,1735,5,138,0,0,1734,1736,5,44,0,0,1735,1734,1,0,0,0, + 1735,1736,1,0,0,0,1736,1737,1,0,0,0,1737,1738,3,806,403,0,1738,1739, + 5,191,0,0,1739,1741,5,437,0,0,1740,1742,3,416,208,0,1741,1740,1, + 0,0,0,1741,1742,1,0,0,0,1742,1842,1,0,0,0,1743,1745,5,138,0,0,1744, + 1746,5,44,0,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0, + 0,0,1747,1748,3,806,403,0,1748,1749,5,333,0,0,1749,1750,5,342,0, + 0,1750,1751,3,820,410,0,1751,1842,1,0,0,0,1752,1754,5,138,0,0,1753, + 1755,5,44,0,0,1754,1753,1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0, + 0,0,1756,1758,3,806,403,0,1757,1752,1,0,0,0,1757,1758,1,0,0,0,1758, + 1759,1,0,0,0,1759,1760,7,16,0,0,1760,1842,3,92,46,0,1761,1763,5, + 138,0,0,1762,1764,5,44,0,0,1763,1762,1,0,0,0,1763,1764,1,0,0,0,1764, + 1765,1,0,0,0,1765,1766,3,806,403,0,1766,1767,5,333,0,0,1767,1768, + 5,345,0,0,1768,1769,3,826,413,0,1769,1842,1,0,0,0,1770,1772,5,138, + 0,0,1771,1773,5,44,0,0,1772,1771,1,0,0,0,1772,1773,1,0,0,0,1773, + 1774,1,0,0,0,1774,1775,3,806,403,0,1775,1776,5,133,0,0,1776,1777, + 5,438,0,0,1777,1778,3,132,66,0,1778,1779,5,36,0,0,1779,1788,5,219, + 0,0,1780,1782,5,2,0,0,1781,1783,3,194,97,0,1782,1781,1,0,0,0,1783, + 1784,1,0,0,0,1784,1782,1,0,0,0,1784,1785,1,0,0,0,1785,1786,1,0,0, + 0,1786,1787,5,3,0,0,1787,1789,1,0,0,0,1788,1780,1,0,0,0,1788,1789, + 1,0,0,0,1789,1842,1,0,0,0,1790,1792,5,138,0,0,1791,1793,5,44,0,0, + 1792,1791,1,0,0,0,1792,1793,1,0,0,0,1793,1794,1,0,0,0,1794,1808, + 3,806,403,0,1795,1800,5,314,0,0,1796,1798,5,105,0,0,1797,1796,1, + 0,0,0,1797,1798,1,0,0,0,1798,1799,1,0,0,0,1799,1801,3,196,98,0,1800, + 1797,1,0,0,0,1800,1801,1,0,0,0,1801,1809,1,0,0,0,1802,1806,5,333, + 0,0,1803,1807,3,194,97,0,1804,1805,5,438,0,0,1805,1807,3,132,66, + 0,1806,1803,1,0,0,0,1806,1804,1,0,0,0,1807,1809,1,0,0,0,1808,1795, + 1,0,0,0,1808,1802,1,0,0,0,1809,1810,1,0,0,0,1810,1808,1,0,0,0,1810, + 1811,1,0,0,0,1811,1842,1,0,0,0,1812,1814,5,138,0,0,1813,1815,5,44, + 0,0,1814,1813,1,0,0,0,1814,1815,1,0,0,0,1815,1816,1,0,0,0,1816,1817, + 3,806,403,0,1817,1818,5,191,0,0,1818,1820,5,219,0,0,1819,1821,3, + 416,208,0,1820,1819,1,0,0,0,1820,1821,1,0,0,0,1821,1842,1,0,0,0, + 1822,1824,5,138,0,0,1823,1825,5,44,0,0,1824,1823,1,0,0,0,1824,1825, + 1,0,0,0,1825,1826,1,0,0,0,1826,1829,3,806,403,0,1827,1828,5,333, + 0,0,1828,1830,5,174,0,0,1829,1827,1,0,0,0,1829,1830,1,0,0,0,1830, + 1831,1,0,0,0,1831,1832,5,360,0,0,1832,1834,3,648,324,0,1833,1835, + 3,90,45,0,1834,1833,1,0,0,0,1834,1835,1,0,0,0,1835,1838,1,0,0,0, + 1836,1837,5,100,0,0,1837,1839,3,670,335,0,1838,1836,1,0,0,0,1838, + 1839,1,0,0,0,1839,1842,1,0,0,0,1840,1842,3,216,108,0,1841,1608,1, + 0,0,0,1841,1614,1,0,0,0,1841,1623,1,0,0,0,1841,1626,1,0,0,0,1841, + 1635,1,0,0,0,1841,1638,1,0,0,0,1841,1641,1,0,0,0,1841,1643,1,0,0, + 0,1841,1648,1,0,0,0,1841,1655,1,0,0,0,1841,1659,1,0,0,0,1841,1663, + 1,0,0,0,1841,1667,1,0,0,0,1841,1669,1,0,0,0,1841,1671,1,0,0,0,1841, + 1674,1,0,0,0,1841,1677,1,0,0,0,1841,1691,1,0,0,0,1841,1696,1,0,0, + 0,1841,1707,1,0,0,0,1841,1715,1,0,0,0,1841,1724,1,0,0,0,1841,1733, + 1,0,0,0,1841,1743,1,0,0,0,1841,1757,1,0,0,0,1841,1761,1,0,0,0,1841, + 1770,1,0,0,0,1841,1790,1,0,0,0,1841,1812,1,0,0,0,1841,1822,1,0,0, + 0,1841,1840,1,0,0,0,1842,85,1,0,0,0,1843,1844,5,333,0,0,1844,1845, + 5,53,0,0,1845,1849,3,670,335,0,1846,1847,5,191,0,0,1847,1849,5,53, + 0,0,1848,1843,1,0,0,0,1848,1846,1,0,0,0,1849,87,1,0,0,0,1850,1851, + 7,17,0,0,1851,89,1,0,0,0,1852,1853,5,43,0,0,1853,1854,3,310,155, + 0,1854,91,1,0,0,0,1855,1856,5,2,0,0,1856,1861,3,96,48,0,1857,1858, + 5,6,0,0,1858,1860,3,96,48,0,1859,1857,1,0,0,0,1860,1863,1,0,0,0, + 1861,1859,1,0,0,0,1861,1862,1,0,0,0,1862,1864,1,0,0,0,1863,1861, + 1,0,0,0,1864,1865,5,3,0,0,1865,93,1,0,0,0,1866,1867,5,105,0,0,1867, + 1868,3,92,46,0,1868,95,1,0,0,0,1869,1874,3,832,416,0,1870,1871,5, + 10,0,0,1871,1875,3,282,141,0,1872,1873,5,11,0,0,1873,1875,3,280, + 140,0,1874,1870,1,0,0,0,1874,1872,1,0,0,0,1874,1875,1,0,0,0,1875, + 97,1,0,0,0,1876,1877,5,62,0,0,1877,1878,5,422,0,0,1878,1879,5,105, + 0,0,1879,1880,5,2,0,0,1880,1881,5,533,0,0,1881,1882,3,196,98,0,1882, + 1883,5,6,0,0,1883,1884,5,534,0,0,1884,1885,3,196,98,0,1885,1886, + 5,3,0,0,1886,1900,1,0,0,0,1887,1888,5,62,0,0,1888,1889,5,422,0,0, + 1889,1890,5,68,0,0,1890,1900,3,528,264,0,1891,1892,5,62,0,0,1892, + 1893,5,422,0,0,1893,1894,5,64,0,0,1894,1895,3,528,264,0,1895,1896, + 5,94,0,0,1896,1897,3,528,264,0,1897,1900,1,0,0,0,1898,1900,5,53, + 0,0,1899,1876,1,0,0,0,1899,1887,1,0,0,0,1899,1891,1,0,0,0,1899,1898, + 1,0,0,0,1900,99,1,0,0,0,1901,1902,5,138,0,0,1902,1903,5,360,0,0, + 1903,1904,3,310,155,0,1904,1909,3,102,51,0,1905,1906,5,6,0,0,1906, + 1908,3,102,51,0,1907,1905,1,0,0,0,1908,1911,1,0,0,0,1909,1907,1, + 0,0,0,1909,1910,1,0,0,0,1910,101,1,0,0,0,1911,1909,1,0,0,0,1912, + 1913,5,133,0,0,1913,1914,5,143,0,0,1914,1916,3,640,320,0,1915,1917, + 3,88,44,0,1916,1915,1,0,0,0,1916,1917,1,0,0,0,1917,1943,1,0,0,0, + 1918,1919,5,191,0,0,1919,1921,5,143,0,0,1920,1922,3,416,208,0,1921, + 1920,1,0,0,0,1921,1922,1,0,0,0,1922,1923,1,0,0,0,1923,1925,3,826, + 413,0,1924,1926,3,88,44,0,1925,1924,1,0,0,0,1925,1926,1,0,0,0,1926, + 1943,1,0,0,0,1927,1928,5,138,0,0,1928,1929,5,143,0,0,1929,1932,3, + 826,413,0,1930,1931,5,333,0,0,1931,1933,5,174,0,0,1932,1930,1,0, + 0,0,1932,1933,1,0,0,0,1933,1934,1,0,0,0,1934,1935,5,360,0,0,1935, + 1937,3,648,324,0,1936,1938,3,90,45,0,1937,1936,1,0,0,0,1937,1938, + 1,0,0,0,1938,1940,1,0,0,0,1939,1941,3,88,44,0,1940,1939,1,0,0,0, + 1940,1941,1,0,0,0,1941,1943,1,0,0,0,1942,1912,1,0,0,0,1942,1918, + 1,0,0,0,1942,1927,1,0,0,0,1943,103,1,0,0,0,1944,1947,5,157,0,0,1945, + 1948,3,826,413,0,1946,1948,5,30,0,0,1947,1945,1,0,0,0,1947,1946, + 1,0,0,0,1948,105,1,0,0,0,1949,1951,5,169,0,0,1950,1952,5,107,0,0, + 1951,1950,1,0,0,0,1951,1952,1,0,0,0,1952,1953,1,0,0,0,1953,1955, + 3,778,389,0,1954,1956,3,138,69,0,1955,1954,1,0,0,0,1955,1956,1,0, + 0,0,1956,1957,1,0,0,0,1957,1959,7,18,0,0,1958,1960,5,297,0,0,1959, + 1958,1,0,0,0,1959,1960,1,0,0,0,1960,1964,1,0,0,0,1961,1965,3,816, + 408,0,1962,1965,5,343,0,0,1963,1965,5,344,0,0,1964,1961,1,0,0,0, + 1964,1962,1,0,0,0,1964,1963,1,0,0,0,1965,1971,1,0,0,0,1966,1968, + 5,100,0,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968,1969,1,0,0,0, + 1969,1970,5,184,0,0,1970,1972,3,816,408,0,1971,1967,1,0,0,0,1971, + 1972,1,0,0,0,1972,1974,1,0,0,0,1973,1975,5,105,0,0,1974,1973,1,0, + 0,0,1974,1975,1,0,0,0,1975,1976,1,0,0,0,1976,1978,3,110,55,0,1977, + 1979,3,634,317,0,1978,1977,1,0,0,0,1978,1979,1,0,0,0,1979,1999,1, + 0,0,0,1980,1981,5,169,0,0,1981,1982,5,2,0,0,1982,1983,3,524,262, + 0,1983,1984,5,3,0,0,1984,1986,5,94,0,0,1985,1987,5,297,0,0,1986, + 1985,1,0,0,0,1986,1987,1,0,0,0,1987,1991,1,0,0,0,1988,1992,3,816, + 408,0,1989,1992,5,343,0,0,1990,1992,5,344,0,0,1991,1988,1,0,0,0, + 1991,1989,1,0,0,0,1991,1990,1,0,0,0,1992,1994,1,0,0,0,1993,1995, + 5,105,0,0,1994,1993,1,0,0,0,1994,1995,1,0,0,0,1995,1996,1,0,0,0, + 1996,1997,3,110,55,0,1997,1999,1,0,0,0,1998,1949,1,0,0,0,1998,1980, + 1,0,0,0,1999,107,1,0,0,0,2000,2043,5,107,0,0,2001,2043,5,112,0,0, + 2002,2004,7,19,0,0,2003,2005,5,36,0,0,2004,2003,1,0,0,0,2004,2005, + 1,0,0,0,2005,2006,1,0,0,0,2006,2043,3,816,408,0,2007,2043,5,171, + 0,0,2008,2043,5,216,0,0,2009,2010,5,209,0,0,2010,2013,5,298,0,0, + 2011,2014,3,142,71,0,2012,2014,5,9,0,0,2013,2011,1,0,0,0,2013,2012, + 1,0,0,0,2014,2043,1,0,0,0,2015,2017,5,209,0,0,2016,2018,5,77,0,0, + 2017,2016,1,0,0,0,2017,2018,1,0,0,0,2018,2019,1,0,0,0,2019,2020, + 5,78,0,0,2020,2043,3,142,71,0,2021,2022,5,194,0,0,2022,2043,3,816, + 408,0,2023,2040,7,20,0,0,2024,2027,5,2,0,0,2025,2028,3,142,71,0, + 2026,2028,5,9,0,0,2027,2025,1,0,0,0,2027,2026,1,0,0,0,2028,2036, + 1,0,0,0,2029,2032,5,6,0,0,2030,2033,3,142,71,0,2031,2033,5,9,0,0, + 2032,2030,1,0,0,0,2032,2031,1,0,0,0,2033,2035,1,0,0,0,2034,2029, + 1,0,0,0,2035,2038,1,0,0,0,2036,2034,1,0,0,0,2036,2037,1,0,0,0,2037, + 2039,1,0,0,0,2038,2036,1,0,0,0,2039,2041,5,3,0,0,2040,2024,1,0,0, + 0,2040,2041,1,0,0,0,2041,2043,1,0,0,0,2042,2000,1,0,0,0,2042,2001, + 1,0,0,0,2042,2002,1,0,0,0,2042,2007,1,0,0,0,2042,2008,1,0,0,0,2042, + 2009,1,0,0,0,2042,2015,1,0,0,0,2042,2021,1,0,0,0,2042,2023,1,0,0, + 0,2043,2046,1,0,0,0,2044,2042,1,0,0,0,2044,2045,1,0,0,0,2045,109, + 1,0,0,0,2046,2044,1,0,0,0,2047,2066,3,108,54,0,2048,2051,5,2,0,0, + 2049,2052,3,108,54,0,2050,2052,3,112,56,0,2051,2049,1,0,0,0,2051, + 2050,1,0,0,0,2052,2060,1,0,0,0,2053,2056,5,6,0,0,2054,2057,3,108, + 54,0,2055,2057,3,112,56,0,2056,2054,1,0,0,0,2056,2055,1,0,0,0,2057, + 2059,1,0,0,0,2058,2053,1,0,0,0,2059,2062,1,0,0,0,2060,2058,1,0,0, + 0,2060,2061,1,0,0,0,2061,2063,1,0,0,0,2062,2060,1,0,0,0,2063,2064, + 5,3,0,0,2064,2066,1,0,0,0,2065,2047,1,0,0,0,2065,2048,1,0,0,0,2066, + 111,1,0,0,0,2067,2082,3,832,416,0,2068,2083,3,54,27,0,2069,2083, + 3,196,98,0,2070,2083,5,9,0,0,2071,2072,5,2,0,0,2072,2077,3,52,26, + 0,2073,2074,5,6,0,0,2074,2076,3,52,26,0,2075,2073,1,0,0,0,2076,2079, + 1,0,0,0,2077,2075,1,0,0,0,2077,2078,1,0,0,0,2078,2080,1,0,0,0,2079, + 2077,1,0,0,0,2080,2081,5,3,0,0,2081,2083,1,0,0,0,2082,2068,1,0,0, + 0,2082,2069,1,0,0,0,2082,2070,1,0,0,0,2082,2071,1,0,0,0,2082,2083, + 1,0,0,0,2083,113,1,0,0,0,2084,2086,5,46,0,0,2085,2087,3,116,58,0, + 2086,2085,1,0,0,0,2086,2087,1,0,0,0,2087,2088,1,0,0,0,2088,2090, + 5,92,0,0,2089,2091,3,288,144,0,2090,2089,1,0,0,0,2090,2091,1,0,0, + 0,2091,2092,1,0,0,0,2092,2158,3,776,388,0,2093,2095,5,2,0,0,2094, + 2096,3,120,60,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2097,1, + 0,0,0,2097,2099,5,3,0,0,2098,2100,3,158,79,0,2099,2098,1,0,0,0,2099, + 2100,1,0,0,0,2100,2102,1,0,0,0,2101,2103,3,160,80,0,2102,2101,1, + 0,0,0,2102,2103,1,0,0,0,2103,2105,1,0,0,0,2104,2106,3,164,82,0,2105, + 2104,1,0,0,0,2105,2106,1,0,0,0,2106,2108,1,0,0,0,2107,2109,3,166, + 83,0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2111,1,0,0,0,2110, + 2112,3,168,84,0,2111,2110,1,0,0,0,2111,2112,1,0,0,0,2112,2114,1, + 0,0,0,2113,2115,3,170,85,0,2114,2113,1,0,0,0,2114,2115,1,0,0,0,2115, + 2159,1,0,0,0,2116,2117,5,275,0,0,2117,2119,3,310,155,0,2118,2120, + 3,118,59,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0,2120,2122,1,0,0,0, + 2121,2123,3,160,80,0,2122,2121,1,0,0,0,2122,2123,1,0,0,0,2123,2125, + 1,0,0,0,2124,2126,3,164,82,0,2125,2124,1,0,0,0,2125,2126,1,0,0,0, + 2126,2128,1,0,0,0,2127,2129,3,166,83,0,2128,2127,1,0,0,0,2128,2129, + 1,0,0,0,2129,2131,1,0,0,0,2130,2132,3,168,84,0,2131,2130,1,0,0,0, + 2131,2132,1,0,0,0,2132,2134,1,0,0,0,2133,2135,3,170,85,0,2134,2133, + 1,0,0,0,2134,2135,1,0,0,0,2135,2159,1,0,0,0,2136,2137,5,285,0,0, + 2137,2138,5,275,0,0,2138,2140,3,784,392,0,2139,2141,3,118,59,0,2140, + 2139,1,0,0,0,2140,2141,1,0,0,0,2141,2142,1,0,0,0,2142,2144,3,98, + 49,0,2143,2145,3,160,80,0,2144,2143,1,0,0,0,2144,2145,1,0,0,0,2145, + 2147,1,0,0,0,2146,2148,3,164,82,0,2147,2146,1,0,0,0,2147,2148,1, + 0,0,0,2148,2150,1,0,0,0,2149,2151,3,166,83,0,2150,2149,1,0,0,0,2150, + 2151,1,0,0,0,2151,2153,1,0,0,0,2152,2154,3,168,84,0,2153,2152,1, + 0,0,0,2153,2154,1,0,0,0,2154,2156,1,0,0,0,2155,2157,3,170,85,0,2156, + 2155,1,0,0,0,2156,2157,1,0,0,0,2157,2159,1,0,0,0,2158,2093,1,0,0, + 0,2158,2116,1,0,0,0,2158,2136,1,0,0,0,2159,115,1,0,0,0,2160,2166, + 5,354,0,0,2161,2166,5,352,0,0,2162,2163,7,21,0,0,2163,2166,7,22, + 0,0,2164,2166,5,367,0,0,2165,2160,1,0,0,0,2165,2161,1,0,0,0,2165, + 2162,1,0,0,0,2165,2164,1,0,0,0,2166,117,1,0,0,0,2167,2168,5,2,0, + 0,2168,2173,3,124,62,0,2169,2170,5,6,0,0,2170,2172,3,124,62,0,2171, + 2169,1,0,0,0,2172,2175,1,0,0,0,2173,2171,1,0,0,0,2173,2174,1,0,0, + 0,2174,2176,1,0,0,0,2175,2173,1,0,0,0,2176,2177,5,3,0,0,2177,119, + 1,0,0,0,2178,2183,3,122,61,0,2179,2180,5,6,0,0,2180,2182,3,122,61, + 0,2181,2179,1,0,0,0,2182,2185,1,0,0,0,2183,2181,1,0,0,0,2183,2184, + 1,0,0,0,2184,121,1,0,0,0,2185,2183,1,0,0,0,2186,2187,5,45,0,0,2187, + 2189,3,826,413,0,2188,2186,1,0,0,0,2188,2189,1,0,0,0,2189,2190,1, + 0,0,0,2190,2202,3,136,68,0,2191,2202,3,126,63,0,2192,2193,5,120, + 0,0,2193,2198,3,784,392,0,2194,2195,7,23,0,0,2195,2197,3,134,67, + 0,2196,2194,1,0,0,0,2197,2200,1,0,0,0,2198,2196,1,0,0,0,2198,2199, + 1,0,0,0,2199,2202,1,0,0,0,2200,2198,1,0,0,0,2201,2188,1,0,0,0,2201, + 2191,1,0,0,0,2201,2192,1,0,0,0,2202,123,1,0,0,0,2203,2206,3,810, + 405,0,2204,2205,5,105,0,0,2205,2207,5,280,0,0,2206,2204,1,0,0,0, + 2206,2207,1,0,0,0,2207,2211,1,0,0,0,2208,2210,3,128,64,0,2209,2208, + 1,0,0,0,2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212,1,0,0,0,2212, + 2220,1,0,0,0,2213,2211,1,0,0,0,2214,2215,5,45,0,0,2215,2217,3,826, + 413,0,2216,2214,1,0,0,0,2216,2217,1,0,0,0,2217,2218,1,0,0,0,2218, + 2220,3,136,68,0,2219,2203,1,0,0,0,2219,2216,1,0,0,0,2220,125,1,0, + 0,0,2221,2222,3,810,405,0,2222,2224,3,648,324,0,2223,2225,3,214, + 107,0,2224,2223,1,0,0,0,2224,2225,1,0,0,0,2225,2235,1,0,0,0,2226, + 2233,5,345,0,0,2227,2234,5,544,0,0,2228,2234,5,205,0,0,2229,2234, + 5,545,0,0,2230,2234,5,546,0,0,2231,2234,5,53,0,0,2232,2234,3,826, + 413,0,2233,2227,1,0,0,0,2233,2228,1,0,0,0,2233,2229,1,0,0,0,2233, + 2230,1,0,0,0,2233,2231,1,0,0,0,2233,2232,1,0,0,0,2234,2236,1,0,0, + 0,2235,2226,1,0,0,0,2235,2236,1,0,0,0,2236,2239,1,0,0,0,2237,2238, + 5,543,0,0,2238,2240,3,826,413,0,2239,2237,1,0,0,0,2239,2240,1,0, + 0,0,2240,2242,1,0,0,0,2241,2243,3,90,45,0,2242,2241,1,0,0,0,2242, + 2243,1,0,0,0,2243,2246,1,0,0,0,2244,2245,5,105,0,0,2245,2247,5,280, + 0,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2251,1,0,0,0,2248,2250, + 3,128,64,0,2249,2248,1,0,0,0,2250,2253,1,0,0,0,2251,2249,1,0,0,0, + 2251,2252,1,0,0,0,2252,127,1,0,0,0,2253,2251,1,0,0,0,2254,2255,5, + 45,0,0,2255,2257,3,826,413,0,2256,2254,1,0,0,0,2256,2257,1,0,0,0, + 2257,2258,1,0,0,0,2258,2263,3,130,65,0,2259,2261,5,77,0,0,2260,2259, + 1,0,0,0,2260,2261,1,0,0,0,2261,2262,1,0,0,0,2262,2264,5,54,0,0,2263, + 2260,1,0,0,0,2263,2264,1,0,0,0,2264,2267,1,0,0,0,2265,2266,5,69, + 0,0,2266,2268,7,9,0,0,2267,2265,1,0,0,0,2267,2268,1,0,0,0,2268,129, + 1,0,0,0,2269,2271,5,77,0,0,2270,2269,1,0,0,0,2270,2271,1,0,0,0,2271, + 2272,1,0,0,0,2272,2350,5,78,0,0,2273,2275,5,98,0,0,2274,2276,3,394, + 197,0,2275,2274,1,0,0,0,2275,2276,1,0,0,0,2276,2278,1,0,0,0,2277, + 2279,3,172,86,0,2278,2277,1,0,0,0,2278,2279,1,0,0,0,2279,2350,1, + 0,0,0,2280,2286,5,98,0,0,2281,2283,5,273,0,0,2282,2284,5,77,0,0, + 2283,2282,1,0,0,0,2283,2284,1,0,0,0,2284,2285,1,0,0,0,2285,2287, + 5,56,0,0,2286,2281,1,0,0,0,2286,2287,1,0,0,0,2287,2290,1,0,0,0,2288, + 2289,5,441,0,0,2289,2291,3,354,177,0,2290,2288,1,0,0,0,2290,2291, + 1,0,0,0,2291,2293,1,0,0,0,2292,2294,3,566,283,0,2293,2292,1,0,0, + 0,2293,2294,1,0,0,0,2294,2296,1,0,0,0,2295,2297,3,172,86,0,2296, + 2295,1,0,0,0,2296,2297,1,0,0,0,2297,2350,1,0,0,0,2298,2299,5,85, + 0,0,2299,2301,5,245,0,0,2300,2302,3,394,197,0,2301,2300,1,0,0,0, + 2301,2302,1,0,0,0,2302,2304,1,0,0,0,2303,2305,3,172,86,0,2304,2303, + 1,0,0,0,2304,2305,1,0,0,0,2305,2350,1,0,0,0,2306,2307,5,42,0,0,2307, + 2308,5,2,0,0,2308,2309,3,670,335,0,2309,2312,5,3,0,0,2310,2311,5, + 269,0,0,2311,2313,5,228,0,0,2312,2310,1,0,0,0,2312,2313,1,0,0,0, + 2313,2350,1,0,0,0,2314,2315,5,53,0,0,2315,2350,3,678,339,0,2316, + 2317,5,438,0,0,2317,2318,3,132,66,0,2318,2335,5,36,0,0,2319,2328, + 5,219,0,0,2320,2322,5,2,0,0,2321,2323,3,194,97,0,2322,2321,1,0,0, + 0,2323,2324,1,0,0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2326, + 1,0,0,0,2326,2327,5,3,0,0,2327,2329,1,0,0,0,2328,2320,1,0,0,0,2328, + 2329,1,0,0,0,2329,2336,1,0,0,0,2330,2331,5,2,0,0,2331,2332,3,670, + 335,0,2332,2333,5,3,0,0,2333,2334,5,440,0,0,2334,2336,1,0,0,0,2335, + 2319,1,0,0,0,2335,2330,1,0,0,0,2336,2350,1,0,0,0,2337,2338,5,86, + 0,0,2338,2340,3,784,392,0,2339,2341,3,138,69,0,2340,2339,1,0,0,0, + 2340,2341,1,0,0,0,2341,2343,1,0,0,0,2342,2344,3,146,73,0,2343,2342, + 1,0,0,0,2343,2344,1,0,0,0,2344,2346,1,0,0,0,2345,2347,3,150,75,0, + 2346,2345,1,0,0,0,2346,2347,1,0,0,0,2347,2350,1,0,0,0,2348,2350, + 3,90,45,0,2349,2270,1,0,0,0,2349,2273,1,0,0,0,2349,2280,1,0,0,0, + 2349,2298,1,0,0,0,2349,2306,1,0,0,0,2349,2314,1,0,0,0,2349,2316, + 1,0,0,0,2349,2337,1,0,0,0,2349,2348,1,0,0,0,2350,131,1,0,0,0,2351, + 2355,5,139,0,0,2352,2353,5,147,0,0,2353,2355,5,53,0,0,2354,2351, + 1,0,0,0,2354,2352,1,0,0,0,2355,133,1,0,0,0,2356,2357,7,24,0,0,2357, + 135,1,0,0,0,2358,2359,5,42,0,0,2359,2360,5,2,0,0,2360,2361,3,670, + 335,0,2361,2365,5,3,0,0,2362,2364,3,266,133,0,2363,2362,1,0,0,0, + 2364,2367,1,0,0,0,2365,2363,1,0,0,0,2365,2366,1,0,0,0,2366,2455, + 1,0,0,0,2367,2365,1,0,0,0,2368,2372,5,98,0,0,2369,2370,5,85,0,0, + 2370,2372,5,245,0,0,2371,2368,1,0,0,0,2371,2369,1,0,0,0,2372,2396, + 1,0,0,0,2373,2375,3,138,69,0,2374,2376,3,144,72,0,2375,2374,1,0, + 0,0,2375,2376,1,0,0,0,2376,2378,1,0,0,0,2377,2379,3,394,197,0,2378, + 2377,1,0,0,0,2378,2379,1,0,0,0,2379,2381,1,0,0,0,2380,2382,3,172, + 86,0,2381,2380,1,0,0,0,2381,2382,1,0,0,0,2382,2386,1,0,0,0,2383, + 2385,3,266,133,0,2384,2383,1,0,0,0,2385,2388,1,0,0,0,2386,2384,1, + 0,0,0,2386,2387,1,0,0,0,2387,2397,1,0,0,0,2388,2386,1,0,0,0,2389, + 2393,3,174,87,0,2390,2392,3,266,133,0,2391,2390,1,0,0,0,2392,2395, + 1,0,0,0,2393,2391,1,0,0,0,2393,2394,1,0,0,0,2394,2397,1,0,0,0,2395, + 2393,1,0,0,0,2396,2373,1,0,0,0,2396,2389,1,0,0,0,2397,2455,1,0,0, + 0,2398,2400,5,199,0,0,2399,2401,3,164,82,0,2400,2399,1,0,0,0,2400, + 2401,1,0,0,0,2401,2402,1,0,0,0,2402,2403,5,2,0,0,2403,2408,3,148, + 74,0,2404,2405,5,6,0,0,2405,2407,3,148,74,0,2406,2404,1,0,0,0,2407, + 2410,1,0,0,0,2408,2406,1,0,0,0,2408,2409,1,0,0,0,2409,2411,1,0,0, + 0,2410,2408,1,0,0,0,2411,2413,5,3,0,0,2412,2414,3,144,72,0,2413, + 2412,1,0,0,0,2413,2414,1,0,0,0,2414,2416,1,0,0,0,2415,2417,3,394, + 197,0,2416,2415,1,0,0,0,2416,2417,1,0,0,0,2417,2419,1,0,0,0,2418, + 2420,3,172,86,0,2419,2418,1,0,0,0,2419,2420,1,0,0,0,2420,2426,1, + 0,0,0,2421,2422,5,103,0,0,2422,2423,5,2,0,0,2423,2424,3,670,335, + 0,2424,2425,5,3,0,0,2425,2427,1,0,0,0,2426,2421,1,0,0,0,2426,2427, + 1,0,0,0,2427,2431,1,0,0,0,2428,2430,3,266,133,0,2429,2428,1,0,0, + 0,2430,2433,1,0,0,0,2431,2429,1,0,0,0,2431,2432,1,0,0,0,2432,2455, + 1,0,0,0,2433,2431,1,0,0,0,2434,2435,5,63,0,0,2435,2436,5,245,0,0, + 2436,2437,3,138,69,0,2437,2438,5,86,0,0,2438,2440,3,784,392,0,2439, + 2441,3,138,69,0,2440,2439,1,0,0,0,2440,2441,1,0,0,0,2441,2443,1, + 0,0,0,2442,2444,3,146,73,0,2443,2442,1,0,0,0,2443,2444,1,0,0,0,2444, + 2446,1,0,0,0,2445,2447,3,150,75,0,2446,2445,1,0,0,0,2446,2447,1, + 0,0,0,2447,2451,1,0,0,0,2448,2450,3,266,133,0,2449,2448,1,0,0,0, + 2450,2453,1,0,0,0,2451,2449,1,0,0,0,2451,2452,1,0,0,0,2452,2455, + 1,0,0,0,2453,2451,1,0,0,0,2454,2358,1,0,0,0,2454,2371,1,0,0,0,2454, + 2398,1,0,0,0,2454,2434,1,0,0,0,2455,137,1,0,0,0,2456,2457,5,2,0, + 0,2457,2458,3,142,71,0,2458,2459,5,3,0,0,2459,139,1,0,0,0,2460,2461, + 5,2,0,0,2461,2466,3,810,405,0,2462,2463,5,6,0,0,2463,2465,3,810, + 405,0,2464,2462,1,0,0,0,2465,2468,1,0,0,0,2466,2464,1,0,0,0,2466, + 2467,1,0,0,0,2467,2469,1,0,0,0,2468,2466,1,0,0,0,2469,2470,5,3,0, + 0,2470,141,1,0,0,0,2471,2476,3,806,403,0,2472,2473,5,6,0,0,2473, + 2475,3,806,403,0,2474,2472,1,0,0,0,2475,2478,1,0,0,0,2476,2474,1, + 0,0,0,2476,2477,1,0,0,0,2477,143,1,0,0,0,2478,2476,1,0,0,0,2479, + 2480,5,441,0,0,2480,2481,3,138,69,0,2481,145,1,0,0,0,2482,2483,5, + 258,0,0,2483,2484,7,25,0,0,2484,147,1,0,0,0,2485,2486,3,356,178, + 0,2486,2493,5,105,0,0,2487,2494,3,408,204,0,2488,2489,5,278,0,0, + 2489,2490,5,2,0,0,2490,2491,3,408,204,0,2491,2492,5,3,0,0,2492,2494, + 1,0,0,0,2493,2487,1,0,0,0,2493,2488,1,0,0,0,2494,149,1,0,0,0,2495, + 2497,3,152,76,0,2496,2498,3,154,77,0,2497,2496,1,0,0,0,2497,2498, + 1,0,0,0,2498,2504,1,0,0,0,2499,2501,3,154,77,0,2500,2502,3,152,76, + 0,2501,2500,1,0,0,0,2501,2502,1,0,0,0,2502,2504,1,0,0,0,2503,2495, + 1,0,0,0,2503,2499,1,0,0,0,2504,151,1,0,0,0,2505,2506,5,80,0,0,2506, + 2507,5,369,0,0,2507,2508,3,156,78,0,2508,153,1,0,0,0,2509,2510,5, + 80,0,0,2510,2511,5,182,0,0,2511,2512,3,156,78,0,2512,155,1,0,0,0, + 2513,2514,5,269,0,0,2514,2523,5,132,0,0,2515,2523,5,315,0,0,2516, + 2523,5,150,0,0,2517,2518,5,333,0,0,2518,2520,7,26,0,0,2519,2521, + 3,142,71,0,2520,2519,1,0,0,0,2520,2521,1,0,0,0,2521,2523,1,0,0,0, + 2522,2513,1,0,0,0,2522,2515,1,0,0,0,2522,2516,1,0,0,0,2522,2517, + 1,0,0,0,2523,157,1,0,0,0,2524,2525,5,238,0,0,2525,2526,5,2,0,0,2526, + 2527,3,764,382,0,2527,2528,5,3,0,0,2528,159,1,0,0,0,2529,2530,5, + 285,0,0,2530,2531,5,147,0,0,2531,2532,3,826,413,0,2532,2533,5,2, + 0,0,2533,2538,3,162,81,0,2534,2535,5,6,0,0,2535,2537,3,162,81,0, + 2536,2534,1,0,0,0,2537,2540,1,0,0,0,2538,2536,1,0,0,0,2538,2539, + 1,0,0,0,2539,2541,1,0,0,0,2540,2538,1,0,0,0,2541,2542,5,3,0,0,2542, + 161,1,0,0,0,2543,2550,3,806,403,0,2544,2550,3,684,342,0,2545,2546, + 5,2,0,0,2546,2547,3,670,335,0,2547,2548,5,3,0,0,2548,2550,1,0,0, + 0,2549,2543,1,0,0,0,2549,2544,1,0,0,0,2549,2545,1,0,0,0,2550,2552, + 1,0,0,0,2551,2553,3,90,45,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0, + 2553,2555,1,0,0,0,2554,2556,3,310,155,0,2555,2554,1,0,0,0,2555,2556, + 1,0,0,0,2556,163,1,0,0,0,2557,2558,5,100,0,0,2558,2559,3,826,413, + 0,2559,165,1,0,0,0,2560,2561,5,105,0,0,2561,2565,3,92,46,0,2562, + 2563,7,27,0,0,2563,2565,5,277,0,0,2564,2560,1,0,0,0,2564,2562,1, + 0,0,0,2565,167,1,0,0,0,2566,2567,5,80,0,0,2567,2573,5,161,0,0,2568, + 2574,5,191,0,0,2569,2570,5,182,0,0,2570,2574,5,320,0,0,2571,2572, + 5,292,0,0,2572,2574,5,320,0,0,2573,2568,1,0,0,0,2573,2569,1,0,0, + 0,2573,2571,1,0,0,0,2574,169,1,0,0,0,2575,2576,5,351,0,0,2576,2577, + 3,774,387,0,2577,171,1,0,0,0,2578,2579,5,100,0,0,2579,2580,5,226, + 0,0,2580,2581,3,170,85,0,2581,173,1,0,0,0,2582,2583,5,100,0,0,2583, + 2584,5,226,0,0,2584,2585,3,826,413,0,2585,175,1,0,0,0,2586,2587, + 5,46,0,0,2587,2592,5,342,0,0,2588,2590,3,288,144,0,2589,2588,1,0, + 0,0,2589,2590,1,0,0,0,2590,2591,1,0,0,0,2591,2593,3,310,155,0,2592, + 2589,1,0,0,0,2592,2593,1,0,0,0,2593,2595,1,0,0,0,2594,2596,3,138, + 69,0,2595,2594,1,0,0,0,2595,2596,1,0,0,0,2596,2597,1,0,0,0,2597, + 2607,5,80,0,0,2598,2603,3,734,367,0,2599,2600,5,6,0,0,2600,2602, + 3,734,367,0,2601,2599,1,0,0,0,2602,2605,1,0,0,0,2603,2601,1,0,0, + 0,2603,2604,1,0,0,0,2604,2608,1,0,0,0,2605,2603,1,0,0,0,2606,2608, + 3,728,364,0,2607,2598,1,0,0,0,2607,2606,1,0,0,0,2608,2609,1,0,0, + 0,2609,2610,3,604,302,0,2610,177,1,0,0,0,2611,2612,5,138,0,0,2612, + 2614,5,342,0,0,2613,2615,3,416,208,0,2614,2613,1,0,0,0,2614,2615, + 1,0,0,0,2615,2616,1,0,0,0,2616,2617,3,310,155,0,2617,2618,5,333, + 0,0,2618,2619,5,342,0,0,2619,2620,3,820,410,0,2620,179,1,0,0,0,2621, + 2623,5,46,0,0,2622,2624,3,116,58,0,2623,2622,1,0,0,0,2623,2624,1, + 0,0,0,2624,2625,1,0,0,0,2625,2627,5,92,0,0,2626,2628,3,288,144,0, + 2627,2626,1,0,0,0,2627,2628,1,0,0,0,2628,2629,1,0,0,0,2629,2630, + 3,182,91,0,2630,2631,5,36,0,0,2631,2633,3,554,277,0,2632,2634,3, + 184,92,0,2633,2632,1,0,0,0,2633,2634,1,0,0,0,2634,181,1,0,0,0,2635, + 2637,3,776,388,0,2636,2638,3,140,70,0,2637,2636,1,0,0,0,2637,2638, + 1,0,0,0,2638,2640,1,0,0,0,2639,2641,3,164,82,0,2640,2639,1,0,0,0, + 2640,2641,1,0,0,0,2641,2643,1,0,0,0,2642,2644,3,166,83,0,2643,2642, + 1,0,0,0,2643,2644,1,0,0,0,2644,2646,1,0,0,0,2645,2647,3,168,84,0, + 2646,2645,1,0,0,0,2646,2647,1,0,0,0,2647,2649,1,0,0,0,2648,2650, + 3,170,85,0,2649,2648,1,0,0,0,2649,2650,1,0,0,0,2650,183,1,0,0,0, + 2651,2655,5,105,0,0,2652,2656,5,174,0,0,2653,2654,5,269,0,0,2654, + 2656,5,174,0,0,2655,2652,1,0,0,0,2655,2653,1,0,0,0,2656,185,1,0, + 0,0,2657,2659,5,46,0,0,2658,2660,5,367,0,0,2659,2658,1,0,0,0,2659, + 2660,1,0,0,0,2660,2661,1,0,0,0,2661,2662,5,259,0,0,2662,2664,5,376, + 0,0,2663,2665,3,288,144,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665, + 2666,1,0,0,0,2666,2668,3,780,390,0,2667,2669,3,140,70,0,2668,2667, + 1,0,0,0,2668,2669,1,0,0,0,2669,2671,1,0,0,0,2670,2672,3,164,82,0, + 2671,2670,1,0,0,0,2671,2672,1,0,0,0,2672,2674,1,0,0,0,2673,2675, + 3,94,47,0,2674,2673,1,0,0,0,2674,2675,1,0,0,0,2675,2677,1,0,0,0, + 2676,2678,3,170,85,0,2677,2676,1,0,0,0,2677,2678,1,0,0,0,2678,2679, + 1,0,0,0,2679,2680,5,36,0,0,2680,2682,3,554,277,0,2681,2683,3,184, + 92,0,2682,2681,1,0,0,0,2682,2683,1,0,0,0,2683,187,1,0,0,0,2684,2685, + 5,305,0,0,2685,2686,5,259,0,0,2686,2688,5,376,0,0,2687,2689,5,109, + 0,0,2688,2687,1,0,0,0,2688,2689,1,0,0,0,2689,2690,1,0,0,0,2690,2692, + 3,782,391,0,2691,2693,3,184,92,0,2692,2691,1,0,0,0,2692,2693,1,0, + 0,0,2693,189,1,0,0,0,2694,2696,5,46,0,0,2695,2697,3,116,58,0,2696, + 2695,1,0,0,0,2696,2697,1,0,0,0,2697,2698,1,0,0,0,2698,2700,5,328, + 0,0,2699,2701,3,288,144,0,2700,2699,1,0,0,0,2700,2701,1,0,0,0,2701, + 2702,1,0,0,0,2702,2708,3,784,392,0,2703,2705,3,194,97,0,2704,2703, + 1,0,0,0,2705,2706,1,0,0,0,2706,2704,1,0,0,0,2706,2707,1,0,0,0,2707, + 2709,1,0,0,0,2708,2704,1,0,0,0,2708,2709,1,0,0,0,2709,191,1,0,0, + 0,2710,2711,5,138,0,0,2711,2713,5,328,0,0,2712,2714,3,416,208,0, + 2713,2712,1,0,0,0,2713,2714,1,0,0,0,2714,2715,1,0,0,0,2715,2717, + 3,784,392,0,2716,2718,3,194,97,0,2717,2716,1,0,0,0,2718,2719,1,0, + 0,0,2719,2717,1,0,0,0,2719,2720,1,0,0,0,2720,193,1,0,0,0,2721,2722, + 5,36,0,0,2722,2755,3,650,325,0,2723,2725,5,148,0,0,2724,2726,3,196, + 98,0,2725,2724,1,0,0,0,2725,2726,1,0,0,0,2726,2755,1,0,0,0,2727, + 2729,5,225,0,0,2728,2730,5,147,0,0,2729,2728,1,0,0,0,2729,2730,1, + 0,0,0,2730,2731,1,0,0,0,2731,2755,3,196,98,0,2732,2733,7,28,0,0, + 2733,2755,3,196,98,0,2734,2735,5,269,0,0,2735,2755,7,29,0,0,2736, + 2737,5,281,0,0,2737,2738,5,147,0,0,2738,2755,3,806,403,0,2739,2740, + 5,328,0,0,2740,2741,5,266,0,0,2741,2755,3,310,155,0,2742,2744,5, + 340,0,0,2743,2745,5,105,0,0,2744,2743,1,0,0,0,2744,2745,1,0,0,0, + 2745,2746,1,0,0,0,2746,2755,3,196,98,0,2747,2749,5,314,0,0,2748, + 2750,5,105,0,0,2749,2748,1,0,0,0,2749,2750,1,0,0,0,2750,2752,1,0, + 0,0,2751,2753,3,196,98,0,2752,2751,1,0,0,0,2752,2753,1,0,0,0,2753, + 2755,1,0,0,0,2754,2721,1,0,0,0,2754,2723,1,0,0,0,2754,2727,1,0,0, + 0,2754,2732,1,0,0,0,2754,2734,1,0,0,0,2754,2736,1,0,0,0,2754,2739, + 1,0,0,0,2754,2742,1,0,0,0,2754,2747,1,0,0,0,2755,195,1,0,0,0,2756, + 2758,7,30,0,0,2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758,2759,1,0, + 0,0,2759,2762,5,576,0,0,2760,2762,3,820,410,0,2761,2757,1,0,0,0, + 2761,2760,1,0,0,0,2762,197,1,0,0,0,2763,2765,5,46,0,0,2764,2766, + 3,360,180,0,2765,2764,1,0,0,0,2765,2766,1,0,0,0,2766,2768,1,0,0, + 0,2767,2769,5,359,0,0,2768,2767,1,0,0,0,2768,2769,1,0,0,0,2769,2771, + 1,0,0,0,2770,2772,5,295,0,0,2771,2770,1,0,0,0,2771,2772,1,0,0,0, + 2772,2773,1,0,0,0,2773,2774,5,247,0,0,2774,2787,3,826,413,0,2775, + 2776,5,215,0,0,2776,2779,3,310,155,0,2777,2778,5,239,0,0,2778,2780, + 3,310,155,0,2779,2777,1,0,0,0,2779,2780,1,0,0,0,2780,2785,1,0,0, + 0,2781,2782,5,373,0,0,2782,2786,3,310,155,0,2783,2784,5,269,0,0, + 2784,2786,5,373,0,0,2785,2781,1,0,0,0,2785,2783,1,0,0,0,2785,2786, + 1,0,0,0,2786,2788,1,0,0,0,2787,2775,1,0,0,0,2787,2788,1,0,0,0,2788, + 199,1,0,0,0,2789,2790,5,46,0,0,2790,2793,3,170,85,0,2791,2792,5, + 282,0,0,2792,2794,3,822,411,0,2793,2791,1,0,0,0,2793,2794,1,0,0, + 0,2794,2795,1,0,0,0,2795,2796,5,255,0,0,2796,2798,3,816,408,0,2797, + 2799,3,94,47,0,2798,2797,1,0,0,0,2798,2799,1,0,0,0,2799,201,1,0, + 0,0,2800,2801,5,46,0,0,2801,2803,5,204,0,0,2802,2804,3,288,144,0, + 2803,2802,1,0,0,0,2803,2804,1,0,0,0,2804,2805,1,0,0,0,2805,2807, + 3,826,413,0,2806,2808,5,105,0,0,2807,2806,1,0,0,0,2807,2808,1,0, + 0,0,2808,2816,1,0,0,0,2809,2810,5,323,0,0,2810,2815,3,794,397,0, + 2811,2812,7,31,0,0,2812,2815,3,58,29,0,2813,2815,5,150,0,0,2814, + 2809,1,0,0,0,2814,2811,1,0,0,0,2814,2813,1,0,0,0,2815,2818,1,0,0, + 0,2816,2814,1,0,0,0,2816,2817,1,0,0,0,2817,203,1,0,0,0,2818,2816, + 1,0,0,0,2819,2820,5,138,0,0,2820,2821,5,204,0,0,2821,2822,3,826, + 413,0,2822,2827,5,369,0,0,2823,2824,5,94,0,0,2824,2826,3,58,29,0, + 2825,2823,1,0,0,0,2826,2829,1,0,0,0,2827,2825,1,0,0,0,2827,2828, + 1,0,0,0,2828,205,1,0,0,0,2829,2827,1,0,0,0,2830,2831,5,138,0,0,2831, + 2832,5,204,0,0,2832,2833,3,826,413,0,2833,2866,7,6,0,0,2834,2835, + 5,443,0,0,2835,2836,5,62,0,0,2836,2837,3,648,324,0,2837,2838,5,247, + 0,0,2838,2839,3,826,413,0,2839,2867,1,0,0,0,2840,2841,5,442,0,0, + 2841,2867,3,368,184,0,2842,2843,5,296,0,0,2843,2867,3,372,186,0, + 2844,2845,5,278,0,0,2845,2846,7,32,0,0,2846,2847,3,310,155,0,2847, + 2848,3,164,82,0,2848,2867,1,0,0,0,2849,2850,5,278,0,0,2850,2867, + 3,410,205,0,2851,2852,5,211,0,0,2852,2867,3,376,188,0,2853,2854, + 7,33,0,0,2854,2867,3,648,324,0,2855,2856,5,41,0,0,2856,2857,5,2, + 0,0,2857,2858,3,648,324,0,2858,2859,5,36,0,0,2859,2860,3,648,324, + 0,2860,2861,5,3,0,0,2861,2867,1,0,0,0,2862,2863,5,136,0,0,2863,2867, + 3,388,194,0,2864,2867,3,306,153,0,2865,2867,3,304,152,0,2866,2834, + 1,0,0,0,2866,2840,1,0,0,0,2866,2842,1,0,0,0,2866,2844,1,0,0,0,2866, + 2849,1,0,0,0,2866,2851,1,0,0,0,2866,2853,1,0,0,0,2866,2855,1,0,0, + 0,2866,2862,1,0,0,0,2866,2864,1,0,0,0,2866,2865,1,0,0,0,2867,207, + 1,0,0,0,2868,2869,5,46,0,0,2869,2870,5,63,0,0,2870,2871,5,174,0, + 0,2871,2872,5,381,0,0,2872,2878,3,826,413,0,2873,2875,3,210,105, + 0,2874,2873,1,0,0,0,2875,2876,1,0,0,0,2876,2874,1,0,0,0,2876,2877, + 1,0,0,0,2877,2879,1,0,0,0,2878,2874,1,0,0,0,2878,2879,1,0,0,0,2879, + 2881,1,0,0,0,2880,2882,3,214,107,0,2881,2880,1,0,0,0,2881,2882,1, + 0,0,0,2882,209,1,0,0,0,2883,2885,7,34,0,0,2884,2886,3,310,155,0, + 2885,2884,1,0,0,0,2885,2886,1,0,0,0,2886,2890,1,0,0,0,2887,2888, + 5,269,0,0,2888,2890,7,34,0,0,2889,2883,1,0,0,0,2889,2887,1,0,0,0, + 2890,211,1,0,0,0,2891,2892,5,138,0,0,2892,2893,5,63,0,0,2893,2894, + 5,174,0,0,2894,2895,5,381,0,0,2895,2909,3,826,413,0,2896,2898,3, + 210,105,0,2897,2896,1,0,0,0,2898,2899,1,0,0,0,2899,2897,1,0,0,0, + 2899,2900,1,0,0,0,2900,2902,1,0,0,0,2901,2897,1,0,0,0,2901,2902, + 1,0,0,0,2902,2903,1,0,0,0,2903,2910,3,216,108,0,2904,2906,3,210, + 105,0,2905,2904,1,0,0,0,2906,2907,1,0,0,0,2907,2905,1,0,0,0,2907, + 2908,1,0,0,0,2908,2910,1,0,0,0,2909,2901,1,0,0,0,2909,2905,1,0,0, + 0,2910,213,1,0,0,0,2911,2912,5,280,0,0,2912,2913,5,2,0,0,2913,2918, + 3,220,110,0,2914,2915,5,6,0,0,2915,2917,3,220,110,0,2916,2914,1, + 0,0,0,2917,2920,1,0,0,0,2918,2916,1,0,0,0,2918,2919,1,0,0,0,2919, + 2921,1,0,0,0,2920,2918,1,0,0,0,2921,2922,5,3,0,0,2922,215,1,0,0, + 0,2923,2924,5,280,0,0,2924,2925,5,2,0,0,2925,2930,3,218,109,0,2926, + 2927,5,6,0,0,2927,2929,3,218,109,0,2928,2926,1,0,0,0,2929,2932,1, + 0,0,0,2930,2928,1,0,0,0,2930,2931,1,0,0,0,2931,2933,1,0,0,0,2932, + 2930,1,0,0,0,2933,2934,5,3,0,0,2934,217,1,0,0,0,2935,2936,7,35,0, + 0,2936,2937,3,220,110,0,2937,219,1,0,0,0,2938,2939,3,832,416,0,2939, + 2940,3,816,408,0,2940,221,1,0,0,0,2941,2942,5,46,0,0,2942,2944,5, + 331,0,0,2943,2945,3,288,144,0,2944,2943,1,0,0,0,2944,2945,1,0,0, + 0,2945,2946,1,0,0,0,2946,2949,3,826,413,0,2947,2948,5,360,0,0,2948, + 2950,3,816,408,0,2949,2947,1,0,0,0,2949,2950,1,0,0,0,2950,2952,1, + 0,0,0,2951,2953,3,224,112,0,2952,2951,1,0,0,0,2952,2953,1,0,0,0, + 2953,2954,1,0,0,0,2954,2955,5,63,0,0,2955,2956,5,174,0,0,2956,2957, + 5,381,0,0,2957,2959,3,826,413,0,2958,2960,3,214,107,0,2959,2958, + 1,0,0,0,2959,2960,1,0,0,0,2960,223,1,0,0,0,2961,2964,5,375,0,0,2962, + 2965,3,816,408,0,2963,2965,5,78,0,0,2964,2962,1,0,0,0,2964,2963, + 1,0,0,0,2965,225,1,0,0,0,2966,2967,5,138,0,0,2967,2968,5,331,0,0, + 2968,2974,3,826,413,0,2969,2975,3,216,108,0,2970,2972,3,224,112, + 0,2971,2973,3,216,108,0,2972,2971,1,0,0,0,2972,2973,1,0,0,0,2973, + 2975,1,0,0,0,2974,2969,1,0,0,0,2974,2970,1,0,0,0,2975,227,1,0,0, + 0,2976,2977,5,46,0,0,2977,2978,5,63,0,0,2978,2980,5,92,0,0,2979, + 2981,3,288,144,0,2980,2979,1,0,0,0,2980,2981,1,0,0,0,2981,2982,1, + 0,0,0,2982,2983,3,776,388,0,2983,2985,5,2,0,0,2984,2986,3,120,60, + 0,2985,2984,1,0,0,0,2985,2986,1,0,0,0,2986,2987,1,0,0,0,2987,2989, + 5,3,0,0,2988,2990,3,158,79,0,2989,2988,1,0,0,0,2989,2990,1,0,0,0, + 2990,2991,1,0,0,0,2991,2992,5,331,0,0,2992,2994,3,826,413,0,2993, + 2995,3,214,107,0,2994,2993,1,0,0,0,2994,2995,1,0,0,0,2995,3016,1, + 0,0,0,2996,2997,5,46,0,0,2997,2998,5,63,0,0,2998,3000,5,92,0,0,2999, + 3001,3,288,144,0,3000,2999,1,0,0,0,3000,3001,1,0,0,0,3001,3002,1, + 0,0,0,3002,3003,3,776,388,0,3003,3004,5,285,0,0,3004,3005,5,275, + 0,0,3005,3007,3,778,389,0,3006,3008,3,118,59,0,3007,3006,1,0,0,0, + 3007,3008,1,0,0,0,3008,3009,1,0,0,0,3009,3010,3,98,49,0,3010,3011, + 5,331,0,0,3011,3013,3,826,413,0,3012,3014,3,214,107,0,3013,3012, + 1,0,0,0,3013,3014,1,0,0,0,3014,3016,1,0,0,0,3015,2976,1,0,0,0,3015, + 2996,1,0,0,0,3016,229,1,0,0,0,3017,3018,5,444,0,0,3018,3019,5,63, + 0,0,3019,3020,5,323,0,0,3020,3030,3,794,397,0,3021,3022,5,74,0,0, + 3022,3025,5,94,0,0,3023,3025,5,59,0,0,3024,3021,1,0,0,0,3024,3023, + 1,0,0,0,3025,3026,1,0,0,0,3026,3027,5,2,0,0,3027,3028,3,624,312, + 0,3028,3029,5,3,0,0,3029,3031,1,0,0,0,3030,3024,1,0,0,0,3030,3031, + 1,0,0,0,3031,3032,1,0,0,0,3032,3033,5,64,0,0,3033,3034,5,331,0,0, + 3034,3035,3,826,413,0,3035,3036,5,71,0,0,3036,3038,3,826,413,0,3037, + 3039,3,214,107,0,3038,3037,1,0,0,0,3038,3039,1,0,0,0,3039,231,1, + 0,0,0,3040,3041,5,46,0,0,3041,3042,5,99,0,0,3042,3044,5,257,0,0, + 3043,3045,3,288,144,0,3044,3043,1,0,0,0,3044,3045,1,0,0,0,3045,3046, + 1,0,0,0,3046,3049,5,62,0,0,3047,3050,3,822,411,0,3048,3050,5,99, + 0,0,3049,3047,1,0,0,0,3049,3048,1,0,0,0,3050,3051,1,0,0,0,3051,3052, + 5,331,0,0,3052,3054,3,826,413,0,3053,3055,3,214,107,0,3054,3053, + 1,0,0,0,3054,3055,1,0,0,0,3055,233,1,0,0,0,3056,3057,5,138,0,0,3057, + 3058,5,99,0,0,3058,3059,5,257,0,0,3059,3062,5,62,0,0,3060,3063,3, + 822,411,0,3061,3063,5,99,0,0,3062,3060,1,0,0,0,3062,3061,1,0,0,0, + 3063,3064,1,0,0,0,3064,3065,5,331,0,0,3065,3066,3,826,413,0,3066, + 3067,3,216,108,0,3067,235,1,0,0,0,3068,3069,5,46,0,0,3069,3070,5, + 445,0,0,3070,3071,3,826,413,0,3071,3072,5,80,0,0,3072,3079,3,784, + 392,0,3073,3077,5,36,0,0,3074,3078,5,541,0,0,3075,3078,5,542,0,0, + 3076,3078,3,834,417,0,3077,3074,1,0,0,0,3077,3075,1,0,0,0,3077,3076, + 1,0,0,0,3078,3080,1,0,0,0,3079,3073,1,0,0,0,3079,3080,1,0,0,0,3080, + 3083,1,0,0,0,3081,3082,5,62,0,0,3082,3084,7,36,0,0,3083,3081,1,0, + 0,0,3083,3084,1,0,0,0,3084,3087,1,0,0,0,3085,3086,5,94,0,0,3086, + 3088,3,824,412,0,3087,3085,1,0,0,0,3087,3088,1,0,0,0,3088,3090,1, + 0,0,0,3089,3091,3,244,122,0,3090,3089,1,0,0,0,3090,3091,1,0,0,0, + 3091,3093,1,0,0,0,3092,3094,3,246,123,0,3093,3092,1,0,0,0,3093,3094, + 1,0,0,0,3094,237,1,0,0,0,3095,3096,5,138,0,0,3096,3097,5,445,0,0, + 3097,3098,3,826,413,0,3098,3099,5,80,0,0,3099,3102,3,784,392,0,3100, + 3101,5,94,0,0,3101,3103,3,824,412,0,3102,3100,1,0,0,0,3102,3103, + 1,0,0,0,3103,3105,1,0,0,0,3104,3106,3,244,122,0,3105,3104,1,0,0, + 0,3105,3106,1,0,0,0,3106,3108,1,0,0,0,3107,3109,3,246,123,0,3108, + 3107,1,0,0,0,3108,3109,1,0,0,0,3109,239,1,0,0,0,3110,3111,5,138, + 0,0,3111,3112,5,296,0,0,3112,3114,3,800,400,0,3113,3115,3,362,181, + 0,3114,3113,1,0,0,0,3114,3115,1,0,0,0,3115,3142,1,0,0,0,3116,3120, + 3,242,121,0,3117,3119,3,242,121,0,3118,3117,1,0,0,0,3119,3122,1, + 0,0,0,3120,3118,1,0,0,0,3120,3121,1,0,0,0,3121,3124,1,0,0,0,3122, + 3120,1,0,0,0,3123,3125,5,315,0,0,3124,3123,1,0,0,0,3124,3125,1,0, + 0,0,3125,3143,1,0,0,0,3126,3127,5,309,0,0,3127,3128,5,94,0,0,3128, + 3143,3,802,401,0,3129,3130,5,282,0,0,3130,3131,5,94,0,0,3131,3143, + 3,822,411,0,3132,3133,5,333,0,0,3133,3134,5,323,0,0,3134,3143,3, + 32,16,0,3135,3137,5,269,0,0,3136,3135,1,0,0,0,3136,3137,1,0,0,0, + 3137,3138,1,0,0,0,3138,3139,5,462,0,0,3139,3140,5,80,0,0,3140,3141, + 5,204,0,0,3141,3143,3,826,413,0,3142,3116,1,0,0,0,3142,3126,1,0, + 0,0,3142,3129,1,0,0,0,3142,3132,1,0,0,0,3142,3136,1,0,0,0,3143,241, + 1,0,0,0,3144,3146,5,205,0,0,3145,3144,1,0,0,0,3145,3146,1,0,0,0, + 3146,3147,1,0,0,0,3147,3148,5,327,0,0,3148,3155,5,243,0,0,3149,3151, + 5,205,0,0,3150,3149,1,0,0,0,3150,3151,1,0,0,0,3151,3152,1,0,0,0, + 3152,3153,5,327,0,0,3153,3155,5,181,0,0,3154,3145,1,0,0,0,3154,3150, + 1,0,0,0,3155,3174,1,0,0,0,3156,3157,5,333,0,0,3157,3158,3,826,413, + 0,3158,3161,7,37,0,0,3159,3162,3,826,413,0,3160,3162,5,53,0,0,3161, + 3159,1,0,0,0,3161,3160,1,0,0,0,3162,3174,1,0,0,0,3163,3164,5,333, + 0,0,3164,3165,3,826,413,0,3165,3166,5,64,0,0,3166,3167,5,434,0,0, + 3167,3174,1,0,0,0,3168,3171,5,313,0,0,3169,3172,3,826,413,0,3170, + 3172,5,30,0,0,3171,3169,1,0,0,0,3171,3170,1,0,0,0,3172,3174,1,0, + 0,0,3173,3154,1,0,0,0,3173,3156,1,0,0,0,3173,3163,1,0,0,0,3173,3168, + 1,0,0,0,3174,243,1,0,0,0,3175,3176,5,100,0,0,3176,3177,5,2,0,0,3177, + 3178,3,670,335,0,3178,3179,5,3,0,0,3179,245,1,0,0,0,3180,3181,5, + 105,0,0,3181,3182,5,42,0,0,3182,3183,5,2,0,0,3183,3184,3,670,335, + 0,3184,3185,5,3,0,0,3185,247,1,0,0,0,3186,3187,5,46,0,0,3187,3188, + 5,131,0,0,3188,3189,5,446,0,0,3189,3190,3,826,413,0,3190,3191,5, + 360,0,0,3191,3192,7,38,0,0,3192,3193,5,215,0,0,3193,3194,3,310,155, + 0,3194,249,1,0,0,0,3195,3197,5,46,0,0,3196,3198,3,360,180,0,3197, + 3196,1,0,0,0,3197,3198,1,0,0,0,3198,3199,1,0,0,0,3199,3200,5,357, + 0,0,3200,3201,3,826,413,0,3201,3202,3,252,126,0,3202,3203,3,254, + 127,0,3203,3204,5,80,0,0,3204,3216,3,778,389,0,3205,3212,5,447,0, + 0,3206,3207,7,39,0,0,3207,3209,7,40,0,0,3208,3210,5,36,0,0,3209, + 3208,1,0,0,0,3209,3210,1,0,0,0,3210,3211,1,0,0,0,3211,3213,3,826, + 413,0,3212,3206,1,0,0,0,3213,3214,1,0,0,0,3214,3212,1,0,0,0,3214, + 3215,1,0,0,0,3215,3217,1,0,0,0,3216,3205,1,0,0,0,3216,3217,1,0,0, + 0,3217,3223,1,0,0,0,3218,3220,5,62,0,0,3219,3221,5,192,0,0,3220, + 3219,1,0,0,0,3220,3221,1,0,0,0,3221,3222,1,0,0,0,3222,3224,7,41, + 0,0,3223,3218,1,0,0,0,3223,3224,1,0,0,0,3224,3226,1,0,0,0,3225,3227, + 3,258,129,0,3226,3225,1,0,0,0,3226,3227,1,0,0,0,3227,3228,1,0,0, + 0,3228,3229,5,202,0,0,3229,3230,3,260,130,0,3230,3231,5,2,0,0,3231, + 3232,3,262,131,0,3232,3233,5,3,0,0,3233,3274,1,0,0,0,3234,3236,5, + 46,0,0,3235,3237,3,360,180,0,3236,3235,1,0,0,0,3236,3237,1,0,0,0, + 3237,3239,1,0,0,0,3238,3240,5,45,0,0,3239,3238,1,0,0,0,3239,3240, + 1,0,0,0,3240,3241,1,0,0,0,3241,3242,5,357,0,0,3242,3243,3,826,413, + 0,3243,3244,3,252,126,0,3244,3245,3,254,127,0,3245,3246,5,80,0,0, + 3246,3249,3,778,389,0,3247,3248,5,64,0,0,3248,3250,3,784,392,0,3249, + 3247,1,0,0,0,3249,3250,1,0,0,0,3250,3254,1,0,0,0,3251,3253,3,266, + 133,0,3252,3251,1,0,0,0,3253,3256,1,0,0,0,3254,3252,1,0,0,0,3254, + 3255,1,0,0,0,3255,3262,1,0,0,0,3256,3254,1,0,0,0,3257,3259,5,62, + 0,0,3258,3260,5,192,0,0,3259,3258,1,0,0,0,3259,3260,1,0,0,0,3260, + 3261,1,0,0,0,3261,3263,7,41,0,0,3262,3257,1,0,0,0,3262,3263,1,0, + 0,0,3263,3265,1,0,0,0,3264,3266,3,258,129,0,3265,3264,1,0,0,0,3265, + 3266,1,0,0,0,3266,3267,1,0,0,0,3267,3268,5,202,0,0,3268,3269,3,260, + 130,0,3269,3270,5,2,0,0,3270,3271,3,262,131,0,3271,3272,5,3,0,0, + 3272,3274,1,0,0,0,3273,3195,1,0,0,0,3273,3234,1,0,0,0,3274,251,1, + 0,0,0,3275,3280,5,145,0,0,3276,3280,5,135,0,0,3277,3278,5,242,0, + 0,3278,3280,5,275,0,0,3279,3275,1,0,0,0,3279,3276,1,0,0,0,3279,3277, + 1,0,0,0,3280,253,1,0,0,0,3281,3286,3,256,128,0,3282,3283,5,82,0, + 0,3283,3285,3,256,128,0,3284,3282,1,0,0,0,3285,3288,1,0,0,0,3286, + 3284,1,0,0,0,3286,3287,1,0,0,0,3287,255,1,0,0,0,3288,3286,1,0,0, + 0,3289,3298,5,241,0,0,3290,3298,5,182,0,0,3291,3294,5,369,0,0,3292, + 3293,5,275,0,0,3293,3295,3,142,71,0,3294,3292,1,0,0,0,3294,3295, + 1,0,0,0,3295,3298,1,0,0,0,3296,3298,5,358,0,0,3297,3289,1,0,0,0, + 3297,3290,1,0,0,0,3297,3291,1,0,0,0,3297,3296,1,0,0,0,3298,257,1, + 0,0,0,3299,3300,5,102,0,0,3300,3301,5,2,0,0,3301,3302,3,670,335, + 0,3302,3303,5,3,0,0,3303,259,1,0,0,0,3304,3305,5,211,0,0,3305,3309, + 3,814,407,0,3306,3307,5,296,0,0,3307,3309,3,800,400,0,3308,3304, + 1,0,0,0,3308,3306,1,0,0,0,3309,261,1,0,0,0,3310,3313,3,264,132,0, + 3311,3313,1,0,0,0,3312,3310,1,0,0,0,3312,3311,1,0,0,0,3313,3318, + 1,0,0,0,3314,3315,5,6,0,0,3315,3317,3,264,132,0,3316,3314,1,0,0, + 0,3317,3320,1,0,0,0,3318,3316,1,0,0,0,3318,3319,1,0,0,0,3319,263, + 1,0,0,0,3320,3318,1,0,0,0,3321,3326,5,574,0,0,3322,3326,5,576,0, + 0,3323,3326,3,816,408,0,3324,3326,3,832,416,0,3325,3321,1,0,0,0, + 3325,3322,1,0,0,0,3325,3323,1,0,0,0,3325,3324,1,0,0,0,3326,265,1, + 0,0,0,3327,3329,5,77,0,0,3328,3327,1,0,0,0,3328,3329,1,0,0,0,3329, + 3330,1,0,0,0,3330,3338,5,54,0,0,3331,3332,5,69,0,0,3332,3338,7,9, + 0,0,3333,3334,5,77,0,0,3334,3338,5,371,0,0,3335,3336,5,269,0,0,3336, + 3338,5,228,0,0,3337,3328,1,0,0,0,3337,3331,1,0,0,0,3337,3333,1,0, + 0,0,3337,3335,1,0,0,0,3338,267,1,0,0,0,3339,3340,5,46,0,0,3340,3341, + 5,198,0,0,3341,3342,5,357,0,0,3342,3343,3,826,413,0,3343,3344,5, + 80,0,0,3344,3354,3,832,416,0,3345,3346,5,102,0,0,3346,3351,3,270, + 135,0,3347,3348,5,33,0,0,3348,3350,3,270,135,0,3349,3347,1,0,0,0, + 3350,3353,1,0,0,0,3351,3349,1,0,0,0,3351,3352,1,0,0,0,3352,3355, + 1,0,0,0,3353,3351,1,0,0,0,3354,3345,1,0,0,0,3354,3355,1,0,0,0,3355, + 3356,1,0,0,0,3356,3357,5,202,0,0,3357,3358,3,260,130,0,3358,3359, + 5,2,0,0,3359,3360,5,3,0,0,3360,269,1,0,0,0,3361,3362,3,826,413,0, + 3362,3363,5,68,0,0,3363,3364,5,2,0,0,3364,3368,3,816,408,0,3365, + 3367,3,456,228,0,3366,3365,1,0,0,0,3367,3370,1,0,0,0,3368,3366,1, + 0,0,0,3368,3369,1,0,0,0,3369,3371,1,0,0,0,3370,3368,1,0,0,0,3371, + 3372,5,3,0,0,3372,271,1,0,0,0,3373,3374,5,138,0,0,3374,3375,5,198, + 0,0,3375,3376,5,357,0,0,3376,3382,3,826,413,0,3377,3379,5,193,0, + 0,3378,3380,7,14,0,0,3379,3378,1,0,0,0,3379,3380,1,0,0,0,3380,3383, + 1,0,0,0,3381,3383,5,186,0,0,3382,3377,1,0,0,0,3382,3381,1,0,0,0, + 3383,273,1,0,0,0,3384,3385,5,46,0,0,3385,3386,5,140,0,0,3386,3387, + 3,310,155,0,3387,3388,5,42,0,0,3388,3389,5,2,0,0,3389,3390,3,670, + 335,0,3390,3394,5,3,0,0,3391,3393,3,266,133,0,3392,3391,1,0,0,0, + 3393,3396,1,0,0,0,3394,3392,1,0,0,0,3394,3395,1,0,0,0,3395,275,1, + 0,0,0,3396,3394,1,0,0,0,3397,3399,5,46,0,0,3398,3400,3,360,180,0, + 3399,3398,1,0,0,0,3399,3400,1,0,0,0,3400,3401,1,0,0,0,3401,3402, + 5,136,0,0,3402,3417,3,814,407,0,3403,3404,3,386,193,0,3404,3405, + 3,278,139,0,3405,3418,1,0,0,0,3406,3407,5,2,0,0,3407,3412,3,284, + 142,0,3408,3409,5,6,0,0,3409,3411,3,284,142,0,3410,3408,1,0,0,0, + 3411,3414,1,0,0,0,3412,3410,1,0,0,0,3412,3413,1,0,0,0,3413,3415, + 1,0,0,0,3414,3412,1,0,0,0,3415,3416,5,3,0,0,3416,3418,1,0,0,0,3417, + 3403,1,0,0,0,3417,3406,1,0,0,0,3418,3476,1,0,0,0,3419,3420,5,46, + 0,0,3420,3421,5,278,0,0,3421,3422,3,408,204,0,3422,3423,3,278,139, + 0,3423,3476,1,0,0,0,3424,3425,5,46,0,0,3425,3426,5,360,0,0,3426, + 3427,3,310,155,0,3427,3445,5,36,0,0,3428,3430,5,2,0,0,3429,3431, + 3,638,319,0,3430,3429,1,0,0,0,3430,3431,1,0,0,0,3431,3432,1,0,0, + 0,3432,3446,5,3,0,0,3433,3434,5,196,0,0,3434,3442,5,2,0,0,3435,3439, + 3,816,408,0,3436,3438,3,456,228,0,3437,3436,1,0,0,0,3438,3441,1, + 0,0,0,3439,3437,1,0,0,0,3439,3440,1,0,0,0,3440,3443,1,0,0,0,3441, + 3439,1,0,0,0,3442,3435,1,0,0,0,3442,3443,1,0,0,0,3443,3444,1,0,0, + 0,3444,3446,5,3,0,0,3445,3428,1,0,0,0,3445,3433,1,0,0,0,3446,3476, + 1,0,0,0,3447,3448,5,46,0,0,3448,3449,5,360,0,0,3449,3455,3,310,155, + 0,3450,3451,5,36,0,0,3451,3453,5,299,0,0,3452,3450,1,0,0,0,3452, + 3453,1,0,0,0,3453,3454,1,0,0,0,3454,3456,3,278,139,0,3455,3452,1, + 0,0,0,3455,3456,1,0,0,0,3456,3476,1,0,0,0,3457,3458,5,46,0,0,3458, + 3459,5,355,0,0,3459,3460,5,325,0,0,3460,3461,7,42,0,0,3461,3462, + 3,310,155,0,3462,3463,3,278,139,0,3463,3476,1,0,0,0,3464,3465,5, + 46,0,0,3465,3467,5,108,0,0,3466,3468,3,288,144,0,3467,3466,1,0,0, + 0,3467,3468,1,0,0,0,3468,3469,1,0,0,0,3469,3473,3,310,155,0,3470, + 3474,3,278,139,0,3471,3472,5,64,0,0,3472,3474,3,310,155,0,3473,3470, + 1,0,0,0,3473,3471,1,0,0,0,3474,3476,1,0,0,0,3475,3397,1,0,0,0,3475, + 3419,1,0,0,0,3475,3424,1,0,0,0,3475,3447,1,0,0,0,3475,3457,1,0,0, + 0,3475,3464,1,0,0,0,3476,277,1,0,0,0,3477,3478,5,2,0,0,3478,3483, + 3,280,140,0,3479,3480,5,6,0,0,3480,3482,3,280,140,0,3481,3479,1, + 0,0,0,3482,3485,1,0,0,0,3483,3481,1,0,0,0,3483,3484,1,0,0,0,3484, + 3486,1,0,0,0,3485,3483,1,0,0,0,3486,3487,5,3,0,0,3487,279,1,0,0, + 0,3488,3491,3,832,416,0,3489,3490,5,10,0,0,3490,3492,3,282,141,0, + 3491,3489,1,0,0,0,3491,3492,1,0,0,0,3492,281,1,0,0,0,3493,3500,3, + 382,191,0,3494,3500,3,842,421,0,3495,3500,3,724,362,0,3496,3500, + 3,196,98,0,3497,3500,3,816,408,0,3498,3500,5,407,0,0,3499,3493,1, + 0,0,0,3499,3494,1,0,0,0,3499,3495,1,0,0,0,3499,3496,1,0,0,0,3499, + 3497,1,0,0,0,3499,3498,1,0,0,0,3500,283,1,0,0,0,3501,3502,3,834, + 417,0,3502,3503,5,10,0,0,3503,3504,3,282,141,0,3504,285,1,0,0,0, + 3505,3506,5,138,0,0,3506,3507,5,360,0,0,3507,3508,3,310,155,0,3508, + 3509,5,133,0,0,3509,3511,5,450,0,0,3510,3512,3,288,144,0,3511,3510, + 1,0,0,0,3511,3512,1,0,0,0,3512,3513,1,0,0,0,3513,3516,3,816,408, + 0,3514,3515,7,43,0,0,3515,3517,3,816,408,0,3516,3514,1,0,0,0,3516, + 3517,1,0,0,0,3517,3528,1,0,0,0,3518,3519,5,138,0,0,3519,3520,5,360, + 0,0,3520,3521,3,310,155,0,3521,3522,5,309,0,0,3522,3523,5,450,0, + 0,3523,3524,3,816,408,0,3524,3525,5,94,0,0,3525,3526,3,816,408,0, + 3526,3528,1,0,0,0,3527,3505,1,0,0,0,3527,3518,1,0,0,0,3528,287,1, + 0,0,0,3529,3530,5,220,0,0,3530,3531,5,77,0,0,3531,3532,5,396,0,0, + 3532,289,1,0,0,0,3533,3534,5,46,0,0,3534,3535,5,278,0,0,3535,3536, + 5,156,0,0,3536,3538,3,310,155,0,3537,3539,5,53,0,0,3538,3537,1,0, + 0,0,3538,3539,1,0,0,0,3539,3540,1,0,0,0,3540,3541,5,62,0,0,3541, + 3542,5,360,0,0,3542,3543,3,648,324,0,3543,3546,3,164,82,0,3544,3545, + 5,206,0,0,3545,3547,3,310,155,0,3546,3544,1,0,0,0,3546,3547,1,0, + 0,0,3547,3548,1,0,0,0,3548,3549,5,36,0,0,3549,3554,3,292,146,0,3550, + 3551,5,6,0,0,3551,3553,3,292,146,0,3552,3550,1,0,0,0,3553,3556,1, + 0,0,0,3554,3552,1,0,0,0,3554,3555,1,0,0,0,3555,291,1,0,0,0,3556, + 3554,1,0,0,0,3557,3558,5,278,0,0,3558,3559,5,574,0,0,3559,3561,3, + 408,204,0,3560,3562,3,406,203,0,3561,3560,1,0,0,0,3561,3562,1,0, + 0,0,3562,3570,1,0,0,0,3563,3568,5,62,0,0,3564,3569,5,325,0,0,3565, + 3566,5,83,0,0,3566,3567,5,147,0,0,3567,3569,3,310,155,0,3568,3564, + 1,0,0,0,3568,3565,1,0,0,0,3569,3571,1,0,0,0,3570,3563,1,0,0,0,3570, + 3571,1,0,0,0,3571,3573,1,0,0,0,3572,3574,5,302,0,0,3573,3572,1,0, + 0,0,3573,3574,1,0,0,0,3574,3584,1,0,0,0,3575,3576,5,211,0,0,3576, + 3578,5,574,0,0,3577,3579,3,522,261,0,3578,3577,1,0,0,0,3578,3579, + 1,0,0,0,3579,3580,1,0,0,0,3580,3584,3,376,188,0,3581,3582,5,345, + 0,0,3582,3584,3,648,324,0,3583,3557,1,0,0,0,3583,3575,1,0,0,0,3583, + 3581,1,0,0,0,3584,293,1,0,0,0,3585,3586,5,46,0,0,3586,3587,5,278, + 0,0,3587,3588,5,206,0,0,3588,3589,3,310,155,0,3589,3590,3,164,82, + 0,3590,295,1,0,0,0,3591,3592,5,138,0,0,3592,3593,5,278,0,0,3593, + 3594,5,206,0,0,3594,3595,3,310,155,0,3595,3614,3,164,82,0,3596,3597, + 5,133,0,0,3597,3602,3,292,146,0,3598,3599,5,6,0,0,3599,3601,3,292, + 146,0,3600,3598,1,0,0,0,3601,3604,1,0,0,0,3602,3600,1,0,0,0,3602, + 3603,1,0,0,0,3603,3615,1,0,0,0,3604,3602,1,0,0,0,3605,3606,5,191, + 0,0,3606,3611,3,298,149,0,3607,3608,5,6,0,0,3608,3610,3,298,149, + 0,3609,3607,1,0,0,0,3610,3613,1,0,0,0,3611,3609,1,0,0,0,3611,3612, + 1,0,0,0,3612,3615,1,0,0,0,3613,3611,1,0,0,0,3614,3596,1,0,0,0,3614, + 3605,1,0,0,0,3615,297,1,0,0,0,3616,3617,7,44,0,0,3617,3618,5,574, + 0,0,3618,3619,3,522,261,0,3619,299,1,0,0,0,3620,3621,5,301,0,0,3621, + 3622,5,281,0,0,3622,3623,5,147,0,0,3623,3624,3,824,412,0,3624,3625, + 5,94,0,0,3625,3626,3,822,411,0,3626,301,1,0,0,0,3627,3650,5,191, + 0,0,3628,3651,5,328,0,0,3629,3651,5,226,0,0,3630,3651,5,108,0,0, + 3631,3651,5,168,0,0,3632,3651,5,342,0,0,3633,3651,5,452,0,0,3634, + 3651,5,331,0,0,3635,3636,5,131,0,0,3636,3651,5,446,0,0,3637,3638, + 5,198,0,0,3638,3651,5,357,0,0,3639,3651,5,204,0,0,3640,3642,5,295, + 0,0,3641,3640,1,0,0,0,3641,3642,1,0,0,0,3642,3643,1,0,0,0,3643,3651, + 5,247,0,0,3644,3645,5,63,0,0,3645,3646,5,174,0,0,3646,3651,5,381, + 0,0,3647,3648,5,355,0,0,3648,3649,5,325,0,0,3649,3651,7,42,0,0,3650, + 3628,1,0,0,0,3650,3629,1,0,0,0,3650,3630,1,0,0,0,3650,3631,1,0,0, + 0,3650,3632,1,0,0,0,3650,3633,1,0,0,0,3650,3634,1,0,0,0,3650,3635, + 1,0,0,0,3650,3637,1,0,0,0,3650,3639,1,0,0,0,3650,3641,1,0,0,0,3650, + 3644,1,0,0,0,3650,3647,1,0,0,0,3651,3653,1,0,0,0,3652,3654,3,416, + 208,0,3653,3652,1,0,0,0,3653,3654,1,0,0,0,3654,3655,1,0,0,0,3655, + 3657,3,788,394,0,3656,3658,3,88,44,0,3657,3656,1,0,0,0,3657,3658, + 1,0,0,0,3658,3835,1,0,0,0,3659,3661,5,191,0,0,3660,3662,5,259,0, + 0,3661,3660,1,0,0,0,3661,3662,1,0,0,0,3662,3663,1,0,0,0,3663,3665, + 5,376,0,0,3664,3666,3,416,208,0,3665,3664,1,0,0,0,3665,3666,1,0, + 0,0,3666,3667,1,0,0,0,3667,3672,3,782,391,0,3668,3669,5,6,0,0,3669, + 3671,3,782,391,0,3670,3668,1,0,0,0,3671,3674,1,0,0,0,3672,3670,1, + 0,0,0,3672,3673,1,0,0,0,3673,3676,1,0,0,0,3674,3672,1,0,0,0,3675, + 3677,3,88,44,0,3676,3675,1,0,0,0,3676,3677,1,0,0,0,3677,3835,1,0, + 0,0,3678,3680,5,191,0,0,3679,3681,5,63,0,0,3680,3679,1,0,0,0,3680, + 3681,1,0,0,0,3681,3682,1,0,0,0,3682,3684,5,92,0,0,3683,3685,3,416, + 208,0,3684,3683,1,0,0,0,3684,3685,1,0,0,0,3685,3686,1,0,0,0,3686, + 3688,3,766,383,0,3687,3689,3,88,44,0,3688,3687,1,0,0,0,3688,3689, + 1,0,0,0,3689,3835,1,0,0,0,3690,3691,5,191,0,0,3691,3693,5,323,0, + 0,3692,3694,3,416,208,0,3693,3692,1,0,0,0,3693,3694,1,0,0,0,3694, + 3695,1,0,0,0,3695,3697,3,768,384,0,3696,3698,3,88,44,0,3697,3696, + 1,0,0,0,3697,3698,1,0,0,0,3698,3835,1,0,0,0,3699,3700,5,191,0,0, + 3700,3702,7,45,0,0,3701,3703,3,416,208,0,3702,3701,1,0,0,0,3702, + 3703,1,0,0,0,3703,3704,1,0,0,0,3704,3705,3,826,413,0,3705,3706,5, + 80,0,0,3706,3708,3,310,155,0,3707,3709,3,88,44,0,3708,3707,1,0,0, + 0,3708,3709,1,0,0,0,3709,3835,1,0,0,0,3710,3711,5,191,0,0,3711,3713, + 7,33,0,0,3712,3714,3,416,208,0,3713,3712,1,0,0,0,3713,3714,1,0,0, + 0,3714,3715,1,0,0,0,3715,3720,3,648,324,0,3716,3717,5,6,0,0,3717, + 3719,3,648,324,0,3718,3716,1,0,0,0,3719,3722,1,0,0,0,3720,3718,1, + 0,0,0,3720,3721,1,0,0,0,3721,3724,1,0,0,0,3722,3720,1,0,0,0,3723, + 3725,3,88,44,0,3724,3723,1,0,0,0,3724,3725,1,0,0,0,3725,3835,1,0, + 0,0,3726,3727,5,191,0,0,3727,3728,5,226,0,0,3728,3730,5,109,0,0, + 3729,3731,3,416,208,0,3730,3729,1,0,0,0,3730,3731,1,0,0,0,3731,3732, + 1,0,0,0,3732,3734,3,308,154,0,3733,3735,3,88,44,0,3734,3733,1,0, + 0,0,3734,3735,1,0,0,0,3735,3835,1,0,0,0,3736,3737,5,191,0,0,3737, + 3739,5,41,0,0,3738,3740,3,416,208,0,3739,3738,1,0,0,0,3739,3740, + 1,0,0,0,3740,3741,1,0,0,0,3741,3742,5,2,0,0,3742,3743,3,648,324, + 0,3743,3744,5,36,0,0,3744,3745,3,648,324,0,3745,3747,5,3,0,0,3746, + 3748,3,88,44,0,3747,3746,1,0,0,0,3747,3748,1,0,0,0,3748,3835,1,0, + 0,0,3749,3750,5,191,0,0,3750,3751,5,278,0,0,3751,3753,7,32,0,0,3752, + 3754,3,416,208,0,3753,3752,1,0,0,0,3753,3754,1,0,0,0,3754,3755,1, + 0,0,0,3755,3756,3,310,155,0,3756,3758,3,164,82,0,3757,3759,3,88, + 44,0,3758,3757,1,0,0,0,3758,3759,1,0,0,0,3759,3835,1,0,0,0,3760, + 3761,5,191,0,0,3761,3762,5,281,0,0,3762,3763,5,147,0,0,3763,3765, + 3,824,412,0,3764,3766,3,88,44,0,3765,3764,1,0,0,0,3765,3766,1,0, + 0,0,3766,3835,1,0,0,0,3767,3768,5,191,0,0,3768,3770,5,451,0,0,3769, + 3771,3,416,208,0,3770,3769,1,0,0,0,3770,3771,1,0,0,0,3771,3772,1, + 0,0,0,3772,3774,3,826,413,0,3773,3775,3,88,44,0,3774,3773,1,0,0, + 0,3774,3775,1,0,0,0,3775,3835,1,0,0,0,3776,3777,5,191,0,0,3777,3779, + 5,351,0,0,3778,3780,3,416,208,0,3779,3778,1,0,0,0,3779,3780,1,0, + 0,0,3780,3781,1,0,0,0,3781,3835,3,774,387,0,3782,3783,5,191,0,0, + 3783,3785,5,443,0,0,3784,3786,3,416,208,0,3785,3784,1,0,0,0,3785, + 3786,1,0,0,0,3786,3787,1,0,0,0,3787,3788,5,62,0,0,3788,3789,3,648, + 324,0,3789,3790,5,247,0,0,3790,3792,3,826,413,0,3791,3793,3,88,44, + 0,3792,3791,1,0,0,0,3792,3793,1,0,0,0,3793,3835,1,0,0,0,3794,3795, + 5,191,0,0,3795,3797,7,46,0,0,3796,3798,3,416,208,0,3797,3796,1,0, + 0,0,3797,3798,1,0,0,0,3798,3799,1,0,0,0,3799,3835,3,824,412,0,3800, + 3801,5,191,0,0,3801,3802,5,99,0,0,3802,3804,5,257,0,0,3803,3805, + 3,416,208,0,3804,3803,1,0,0,0,3804,3805,1,0,0,0,3805,3806,1,0,0, + 0,3806,3809,5,62,0,0,3807,3810,3,822,411,0,3808,3810,5,99,0,0,3809, + 3807,1,0,0,0,3809,3808,1,0,0,0,3810,3811,1,0,0,0,3811,3812,5,331, + 0,0,3812,3835,3,826,413,0,3813,3814,5,191,0,0,3814,3816,5,175,0, + 0,3815,3817,3,416,208,0,3816,3815,1,0,0,0,3816,3817,1,0,0,0,3817, + 3818,1,0,0,0,3818,3832,3,792,396,0,3819,3821,5,105,0,0,3820,3819, + 1,0,0,0,3820,3821,1,0,0,0,3821,3822,1,0,0,0,3822,3823,5,2,0,0,3823, + 3828,5,209,0,0,3824,3825,5,6,0,0,3825,3827,5,209,0,0,3826,3824,1, + 0,0,0,3827,3830,1,0,0,0,3828,3826,1,0,0,0,3828,3829,1,0,0,0,3829, + 3831,1,0,0,0,3830,3828,1,0,0,0,3831,3833,5,3,0,0,3832,3820,1,0,0, + 0,3832,3833,1,0,0,0,3833,3835,1,0,0,0,3834,3627,1,0,0,0,3834,3659, + 1,0,0,0,3834,3678,1,0,0,0,3834,3690,1,0,0,0,3834,3699,1,0,0,0,3834, + 3710,1,0,0,0,3834,3726,1,0,0,0,3834,3736,1,0,0,0,3834,3749,1,0,0, + 0,3834,3760,1,0,0,0,3834,3767,1,0,0,0,3834,3776,1,0,0,0,3834,3782, + 1,0,0,0,3834,3794,1,0,0,0,3834,3800,1,0,0,0,3834,3813,1,0,0,0,3835, + 303,1,0,0,0,3836,3838,5,63,0,0,3837,3836,1,0,0,0,3837,3838,1,0,0, + 0,3838,3839,1,0,0,0,3839,3840,5,92,0,0,3840,3853,3,778,389,0,3841, + 3843,5,259,0,0,3842,3841,1,0,0,0,3842,3843,1,0,0,0,3843,3844,1,0, + 0,0,3844,3845,5,376,0,0,3845,3853,3,782,391,0,3846,3847,7,47,0,0, + 3847,3853,3,310,155,0,3848,3849,5,355,0,0,3849,3850,5,325,0,0,3850, + 3851,7,42,0,0,3851,3853,3,310,155,0,3852,3837,1,0,0,0,3852,3842, + 1,0,0,0,3852,3846,1,0,0,0,3852,3848,1,0,0,0,3853,305,1,0,0,0,3854, + 3855,5,198,0,0,3855,3871,5,357,0,0,3856,3857,5,131,0,0,3857,3871, + 5,446,0,0,3858,3871,5,204,0,0,3859,3871,5,452,0,0,3860,3871,5,331, + 0,0,3861,3871,5,318,0,0,3862,3871,5,451,0,0,3863,3864,5,63,0,0,3864, + 3865,5,174,0,0,3865,3871,5,381,0,0,3866,3868,5,295,0,0,3867,3866, + 1,0,0,0,3867,3868,1,0,0,0,3868,3869,1,0,0,0,3869,3871,5,247,0,0, + 3870,3854,1,0,0,0,3870,3856,1,0,0,0,3870,3858,1,0,0,0,3870,3859, + 1,0,0,0,3870,3860,1,0,0,0,3870,3861,1,0,0,0,3870,3862,1,0,0,0,3870, + 3863,1,0,0,0,3870,3867,1,0,0,0,3871,3872,1,0,0,0,3872,3879,3,826, + 413,0,3873,3874,5,323,0,0,3874,3879,3,794,397,0,3875,3876,5,175, + 0,0,3876,3879,3,792,396,0,3877,3879,3,170,85,0,3878,3870,1,0,0,0, + 3878,3873,1,0,0,0,3878,3875,1,0,0,0,3878,3877,1,0,0,0,3879,307,1, + 0,0,0,3880,3885,3,310,155,0,3881,3882,5,6,0,0,3882,3884,3,310,155, + 0,3883,3881,1,0,0,0,3884,3887,1,0,0,0,3885,3883,1,0,0,0,3885,3886, + 1,0,0,0,3886,309,1,0,0,0,3887,3885,1,0,0,0,3888,3890,3,826,413,0, + 3889,3891,3,312,156,0,3890,3889,1,0,0,0,3890,3891,1,0,0,0,3891,311, + 1,0,0,0,3892,3893,5,11,0,0,3893,3895,3,832,416,0,3894,3892,1,0,0, + 0,3895,3896,1,0,0,0,3896,3894,1,0,0,0,3896,3897,1,0,0,0,3897,313, + 1,0,0,0,3898,3900,5,358,0,0,3899,3901,5,92,0,0,3900,3899,1,0,0,0, + 3900,3901,1,0,0,0,3901,3902,1,0,0,0,3902,3907,3,316,158,0,3903,3904, + 5,6,0,0,3904,3906,3,316,158,0,3905,3903,1,0,0,0,3906,3909,1,0,0, + 0,3907,3905,1,0,0,0,3907,3908,1,0,0,0,3908,3912,1,0,0,0,3909,3907, + 1,0,0,0,3910,3911,7,48,0,0,3911,3913,5,219,0,0,3912,3910,1,0,0,0, + 3912,3913,1,0,0,0,3913,3915,1,0,0,0,3914,3916,3,88,44,0,3915,3914, + 1,0,0,0,3915,3916,1,0,0,0,3916,315,1,0,0,0,3917,3919,5,81,0,0,3918, + 3917,1,0,0,0,3918,3919,1,0,0,0,3919,3920,1,0,0,0,3920,3922,3,778, + 389,0,3921,3923,5,9,0,0,3922,3921,1,0,0,0,3922,3923,1,0,0,0,3923, + 317,1,0,0,0,3924,3925,5,159,0,0,3925,3984,5,80,0,0,3926,3985,3,304, + 152,0,3927,3985,3,306,153,0,3928,3929,5,44,0,0,3929,3931,3,826,413, + 0,3930,3932,3,312,156,0,3931,3930,1,0,0,0,3931,3932,1,0,0,0,3932, + 3933,1,0,0,0,3933,3934,5,11,0,0,3934,3935,3,806,403,0,3935,3985, + 1,0,0,0,3936,3937,7,33,0,0,3937,3985,3,648,324,0,3938,3939,5,136, + 0,0,3939,3985,3,388,194,0,3940,3941,5,211,0,0,3941,3985,3,376,188, + 0,3942,3943,5,278,0,0,3943,3985,3,410,205,0,3944,3945,5,45,0,0,3945, + 3946,3,826,413,0,3946,3952,5,80,0,0,3947,3953,3,778,389,0,3948,3950, + 5,189,0,0,3949,3948,1,0,0,0,3949,3950,1,0,0,0,3950,3951,1,0,0,0, + 3951,3953,3,310,155,0,3952,3947,1,0,0,0,3952,3949,1,0,0,0,3953,3985, + 1,0,0,0,3954,3955,7,45,0,0,3955,3956,3,826,413,0,3956,3957,5,80, + 0,0,3957,3958,3,310,155,0,3958,3985,1,0,0,0,3959,3960,5,296,0,0, + 3960,3985,3,372,186,0,3961,3962,5,442,0,0,3962,3985,3,368,184,0, + 3963,3964,5,443,0,0,3964,3965,5,62,0,0,3965,3966,3,648,324,0,3966, + 3967,5,247,0,0,3967,3968,3,826,413,0,3968,3985,1,0,0,0,3969,3970, + 5,278,0,0,3970,3971,7,32,0,0,3971,3972,3,310,155,0,3972,3973,3,164, + 82,0,3973,3985,1,0,0,0,3974,3975,5,248,0,0,3975,3976,5,274,0,0,3976, + 3985,3,196,98,0,3977,3978,5,41,0,0,3978,3979,5,2,0,0,3979,3980,3, + 648,324,0,3980,3981,5,36,0,0,3981,3982,3,648,324,0,3982,3983,5,3, + 0,0,3983,3985,1,0,0,0,3984,3926,1,0,0,0,3984,3927,1,0,0,0,3984,3928, + 1,0,0,0,3984,3936,1,0,0,0,3984,3938,1,0,0,0,3984,3940,1,0,0,0,3984, + 3942,1,0,0,0,3984,3944,1,0,0,0,3984,3954,1,0,0,0,3984,3959,1,0,0, + 0,3984,3961,1,0,0,0,3984,3963,1,0,0,0,3984,3969,1,0,0,0,3984,3974, + 1,0,0,0,3984,3977,1,0,0,0,3985,3986,1,0,0,0,3986,3989,5,116,0,0, + 3987,3990,3,816,408,0,3988,3990,5,78,0,0,3989,3987,1,0,0,0,3989, + 3988,1,0,0,0,3990,319,1,0,0,0,3991,3992,5,327,0,0,3992,3995,5,246, + 0,0,3993,3994,5,62,0,0,3994,3996,3,58,29,0,3995,3993,1,0,0,0,3995, + 3996,1,0,0,0,3996,3997,1,0,0,0,3997,4015,5,80,0,0,3998,3999,7,33, + 0,0,3999,4016,3,648,324,0,4000,4001,5,136,0,0,4001,4016,3,388,194, + 0,4002,4003,5,44,0,0,4003,4016,3,806,403,0,4004,4005,5,211,0,0,4005, + 4016,3,376,188,0,4006,4007,5,248,0,0,4007,4008,5,274,0,0,4008,4016, + 3,196,98,0,4009,4010,5,296,0,0,4010,4016,3,372,186,0,4011,4012,5, + 442,0,0,4012,4016,3,368,184,0,4013,4016,3,304,152,0,4014,4016,3, + 306,153,0,4015,3998,1,0,0,0,4015,4000,1,0,0,0,4015,4002,1,0,0,0, + 4015,4004,1,0,0,0,4015,4006,1,0,0,0,4015,4009,1,0,0,0,4015,4011, + 1,0,0,0,4015,4013,1,0,0,0,4015,4014,1,0,0,0,4016,4017,1,0,0,0,4017, + 4020,5,116,0,0,4018,4021,3,816,408,0,4019,4021,5,78,0,0,4020,4018, + 1,0,0,0,4020,4019,1,0,0,0,4021,321,1,0,0,0,4022,4023,7,49,0,0,4023, + 4024,3,324,162,0,4024,323,1,0,0,0,4025,4027,7,50,0,0,4026,4025,1, + 0,0,0,4026,4027,1,0,0,0,4027,4029,1,0,0,0,4028,4030,3,326,163,0, + 4029,4028,1,0,0,0,4029,4030,1,0,0,0,4030,4031,1,0,0,0,4031,4069, + 3,826,413,0,4032,4034,7,51,0,0,4033,4032,1,0,0,0,4033,4034,1,0,0, + 0,4034,4035,1,0,0,0,4035,4037,3,820,410,0,4036,4038,3,326,163,0, + 4037,4036,1,0,0,0,4037,4038,1,0,0,0,4038,4039,1,0,0,0,4039,4040, + 3,826,413,0,4040,4069,1,0,0,0,4041,4043,5,210,0,0,4042,4044,3,820, + 410,0,4043,4042,1,0,0,0,4043,4044,1,0,0,0,4044,4046,1,0,0,0,4045, + 4047,3,326,163,0,4046,4045,1,0,0,0,4046,4047,1,0,0,0,4047,4048,1, + 0,0,0,4048,4069,3,826,413,0,4049,4051,5,210,0,0,4050,4049,1,0,0, + 0,4050,4051,1,0,0,0,4051,4052,1,0,0,0,4052,4054,5,30,0,0,4053,4055, + 3,326,163,0,4054,4053,1,0,0,0,4054,4055,1,0,0,0,4055,4056,1,0,0, + 0,4056,4069,3,826,413,0,4057,4062,5,144,0,0,4058,4060,5,30,0,0,4059, + 4058,1,0,0,0,4059,4060,1,0,0,0,4060,4063,1,0,0,0,4061,4063,3,820, + 410,0,4062,4059,1,0,0,0,4062,4061,1,0,0,0,4063,4065,1,0,0,0,4064, + 4066,3,326,163,0,4065,4064,1,0,0,0,4065,4066,1,0,0,0,4066,4067,1, + 0,0,0,4067,4069,3,826,413,0,4068,4026,1,0,0,0,4068,4033,1,0,0,0, + 4068,4041,1,0,0,0,4068,4050,1,0,0,0,4068,4057,1,0,0,0,4069,325,1, + 0,0,0,4070,4071,7,52,0,0,4071,327,1,0,0,0,4072,4073,5,65,0,0,4073, + 4074,3,332,166,0,4074,4075,5,80,0,0,4075,4076,3,338,169,0,4076,4077, + 5,94,0,0,4077,4081,3,340,170,0,4078,4079,5,105,0,0,4079,4080,5,65, + 0,0,4080,4082,5,279,0,0,4081,4078,1,0,0,0,4081,4082,1,0,0,0,4082, + 329,1,0,0,0,4083,4087,5,317,0,0,4084,4085,5,65,0,0,4085,4086,5,279, + 0,0,4086,4088,5,62,0,0,4087,4084,1,0,0,0,4087,4088,1,0,0,0,4088, + 4089,1,0,0,0,4089,4090,3,332,166,0,4090,4091,5,80,0,0,4091,4092, + 3,338,169,0,4092,4093,5,64,0,0,4093,4095,3,340,170,0,4094,4096,3, + 88,44,0,4095,4094,1,0,0,0,4095,4096,1,0,0,0,4096,331,1,0,0,0,4097, + 4102,3,336,168,0,4098,4099,5,6,0,0,4099,4101,3,336,168,0,4100,4098, + 1,0,0,0,4101,4104,1,0,0,0,4102,4100,1,0,0,0,4102,4103,1,0,0,0,4103, + 4121,1,0,0,0,4104,4102,1,0,0,0,4105,4107,5,30,0,0,4106,4108,5,294, + 0,0,4107,4106,1,0,0,0,4107,4108,1,0,0,0,4108,4110,1,0,0,0,4109,4111, + 3,138,69,0,4110,4109,1,0,0,0,4110,4111,1,0,0,0,4111,4121,1,0,0,0, + 4112,4117,3,334,167,0,4113,4114,5,6,0,0,4114,4116,3,334,167,0,4115, + 4113,1,0,0,0,4116,4119,1,0,0,0,4117,4115,1,0,0,0,4117,4118,1,0,0, + 0,4118,4121,1,0,0,0,4119,4117,1,0,0,0,4120,4097,1,0,0,0,4120,4105, + 1,0,0,0,4120,4112,1,0,0,0,4121,333,1,0,0,0,4122,4123,7,53,0,0,4123, + 335,1,0,0,0,4124,4129,5,88,0,0,4125,4129,5,86,0,0,4126,4129,5,46, + 0,0,4127,4129,3,826,413,0,4128,4124,1,0,0,0,4128,4125,1,0,0,0,4128, + 4126,1,0,0,0,4128,4127,1,0,0,0,4129,4131,1,0,0,0,4130,4132,3,138, + 69,0,4131,4130,1,0,0,0,4131,4132,1,0,0,0,4132,337,1,0,0,0,4133,4134, + 5,92,0,0,4134,4179,3,766,383,0,4135,4137,5,328,0,0,4136,4135,1,0, + 0,0,4136,4137,1,0,0,0,4137,4138,1,0,0,0,4138,4179,3,764,382,0,4139, + 4143,5,63,0,0,4140,4141,5,174,0,0,4141,4144,5,381,0,0,4142,4144, + 5,331,0,0,4143,4140,1,0,0,0,4143,4142,1,0,0,0,4144,4147,1,0,0,0, + 4145,4147,5,247,0,0,4146,4139,1,0,0,0,4146,4145,1,0,0,0,4147,4148, + 1,0,0,0,4148,4179,3,788,394,0,4149,4150,5,211,0,0,4150,4179,3,374, + 187,0,4151,4152,5,296,0,0,4152,4179,3,370,185,0,4153,4154,5,442, + 0,0,4154,4179,3,366,183,0,4155,4156,5,175,0,0,4156,4179,3,770,385, + 0,4157,4158,7,33,0,0,4158,4179,3,308,154,0,4159,4160,5,248,0,0,4160, + 4161,5,274,0,0,4161,4166,3,196,98,0,4162,4163,5,6,0,0,4163,4165, + 3,196,98,0,4164,4162,1,0,0,0,4165,4168,1,0,0,0,4166,4164,1,0,0,0, + 4166,4167,1,0,0,0,4167,4179,1,0,0,0,4168,4166,1,0,0,0,4169,4170, + 5,323,0,0,4170,4179,3,768,384,0,4171,4172,5,351,0,0,4172,4179,3, + 786,393,0,4173,4174,5,30,0,0,4174,4175,7,54,0,0,4175,4176,5,68,0, + 0,4176,4177,5,323,0,0,4177,4179,3,768,384,0,4178,4133,1,0,0,0,4178, + 4136,1,0,0,0,4178,4146,1,0,0,0,4178,4149,1,0,0,0,4178,4151,1,0,0, + 0,4178,4153,1,0,0,0,4178,4155,1,0,0,0,4178,4157,1,0,0,0,4178,4159, + 1,0,0,0,4178,4169,1,0,0,0,4178,4171,1,0,0,0,4178,4173,1,0,0,0,4179, + 339,1,0,0,0,4180,4182,5,66,0,0,4181,4180,1,0,0,0,4181,4182,1,0,0, + 0,4182,4183,1,0,0,0,4183,4184,3,822,411,0,4184,4192,1,0,0,0,4185, + 4187,5,6,0,0,4186,4188,5,66,0,0,4187,4186,1,0,0,0,4187,4188,1,0, + 0,0,4188,4189,1,0,0,0,4189,4191,3,822,411,0,4190,4185,1,0,0,0,4191, + 4194,1,0,0,0,4192,4190,1,0,0,0,4192,4193,1,0,0,0,4193,341,1,0,0, + 0,4194,4192,1,0,0,0,4195,4196,5,65,0,0,4196,4201,3,336,168,0,4197, + 4198,5,6,0,0,4198,4200,3,336,168,0,4199,4197,1,0,0,0,4200,4203,1, + 0,0,0,4201,4199,1,0,0,0,4201,4202,1,0,0,0,4202,4204,1,0,0,0,4203, + 4201,1,0,0,0,4204,4205,5,94,0,0,4205,4209,3,824,412,0,4206,4207, + 5,105,0,0,4207,4208,5,134,0,0,4208,4210,5,279,0,0,4209,4206,1,0, + 0,0,4209,4210,1,0,0,0,4210,4214,1,0,0,0,4211,4212,5,214,0,0,4212, + 4213,5,147,0,0,4213,4215,3,822,411,0,4214,4211,1,0,0,0,4214,4215, + 1,0,0,0,4215,343,1,0,0,0,4216,4220,5,317,0,0,4217,4218,5,134,0,0, + 4218,4219,5,279,0,0,4219,4221,5,62,0,0,4220,4217,1,0,0,0,4220,4221, + 1,0,0,0,4221,4222,1,0,0,0,4222,4227,3,336,168,0,4223,4224,5,6,0, + 0,4224,4226,3,336,168,0,4225,4223,1,0,0,0,4226,4229,1,0,0,0,4227, + 4225,1,0,0,0,4227,4228,1,0,0,0,4228,4230,1,0,0,0,4229,4227,1,0,0, + 0,4230,4231,5,64,0,0,4231,4235,3,824,412,0,4232,4233,5,214,0,0,4233, + 4234,5,147,0,0,4234,4236,3,822,411,0,4235,4232,1,0,0,0,4235,4236, + 1,0,0,0,4236,4238,1,0,0,0,4237,4239,3,88,44,0,4238,4237,1,0,0,0, + 4238,4239,1,0,0,0,4239,345,1,0,0,0,4240,4241,5,138,0,0,4241,4242, + 5,53,0,0,4242,4251,5,294,0,0,4243,4244,5,68,0,0,4244,4245,5,323, + 0,0,4245,4250,3,768,384,0,4246,4247,5,62,0,0,4247,4248,7,2,0,0,4248, + 4250,3,824,412,0,4249,4243,1,0,0,0,4249,4246,1,0,0,0,4250,4253,1, + 0,0,0,4251,4249,1,0,0,0,4251,4252,1,0,0,0,4252,4254,1,0,0,0,4253, + 4251,1,0,0,0,4254,4255,3,348,174,0,4255,347,1,0,0,0,4256,4257,5, + 65,0,0,4257,4258,3,332,166,0,4258,4259,5,80,0,0,4259,4260,3,350, + 175,0,4260,4261,5,94,0,0,4261,4265,3,340,170,0,4262,4263,5,105,0, + 0,4263,4264,5,65,0,0,4264,4266,5,279,0,0,4265,4262,1,0,0,0,4265, + 4266,1,0,0,0,4266,4282,1,0,0,0,4267,4271,5,317,0,0,4268,4269,5,65, + 0,0,4269,4270,5,279,0,0,4270,4272,5,62,0,0,4271,4268,1,0,0,0,4271, + 4272,1,0,0,0,4272,4273,1,0,0,0,4273,4274,3,332,166,0,4274,4275,5, + 80,0,0,4275,4276,3,350,175,0,4276,4277,5,64,0,0,4277,4279,3,340, + 170,0,4278,4280,3,88,44,0,4279,4278,1,0,0,0,4279,4280,1,0,0,0,4280, + 4282,1,0,0,0,4281,4256,1,0,0,0,4281,4267,1,0,0,0,4282,349,1,0,0, + 0,4283,4284,7,55,0,0,4284,351,1,0,0,0,4285,4287,5,46,0,0,4286,4288, + 5,98,0,0,4287,4286,1,0,0,0,4287,4288,1,0,0,0,4288,4289,1,0,0,0,4289, + 4291,5,226,0,0,4290,4292,5,109,0,0,4291,4290,1,0,0,0,4291,4292,1, + 0,0,0,4292,4294,1,0,0,0,4293,4295,3,288,144,0,4294,4293,1,0,0,0, + 4294,4295,1,0,0,0,4295,4297,1,0,0,0,4296,4298,3,826,413,0,4297,4296, + 1,0,0,0,4297,4298,1,0,0,0,4298,4299,1,0,0,0,4299,4300,5,80,0,0,4300, + 4302,3,620,310,0,4301,4303,3,164,82,0,4302,4301,1,0,0,0,4302,4303, + 1,0,0,0,4303,4304,1,0,0,0,4304,4307,3,354,177,0,4305,4306,5,441, + 0,0,4306,4308,3,354,177,0,4307,4305,1,0,0,0,4307,4308,1,0,0,0,4308, + 4314,1,0,0,0,4309,4311,5,273,0,0,4310,4312,5,77,0,0,4311,4310,1, + 0,0,0,4311,4312,1,0,0,0,4312,4313,1,0,0,0,4313,4315,5,56,0,0,4314, + 4309,1,0,0,0,4314,4315,1,0,0,0,4315,4317,1,0,0,0,4316,4318,3,94, + 47,0,4317,4316,1,0,0,0,4317,4318,1,0,0,0,4318,4320,1,0,0,0,4319, + 4321,3,170,85,0,4320,4319,1,0,0,0,4320,4321,1,0,0,0,4321,4323,1, + 0,0,0,4322,4324,3,634,317,0,4323,4322,1,0,0,0,4323,4324,1,0,0,0, + 4324,353,1,0,0,0,4325,4326,5,2,0,0,4326,4331,3,356,178,0,4327,4328, + 5,6,0,0,4328,4330,3,356,178,0,4329,4327,1,0,0,0,4330,4333,1,0,0, + 0,4331,4329,1,0,0,0,4331,4332,1,0,0,0,4332,4334,1,0,0,0,4333,4331, + 1,0,0,0,4334,4335,5,3,0,0,4335,355,1,0,0,0,4336,4343,3,806,403,0, + 4337,4343,3,684,342,0,4338,4339,5,2,0,0,4339,4340,3,670,335,0,4340, + 4341,5,3,0,0,4341,4343,1,0,0,0,4342,4336,1,0,0,0,4342,4337,1,0,0, + 0,4342,4338,1,0,0,0,4343,4345,1,0,0,0,4344,4346,3,90,45,0,4345,4344, + 1,0,0,0,4345,4346,1,0,0,0,4346,4353,1,0,0,0,4347,4349,3,310,155, + 0,4348,4347,1,0,0,0,4348,4349,1,0,0,0,4349,4354,1,0,0,0,4350,4351, + 3,310,155,0,4351,4352,3,92,46,0,4352,4354,1,0,0,0,4353,4348,1,0, + 0,0,4353,4350,1,0,0,0,4354,4356,1,0,0,0,4355,4357,7,56,0,0,4356, + 4355,1,0,0,0,4356,4357,1,0,0,0,4357,4360,1,0,0,0,4358,4359,5,273, + 0,0,4359,4361,7,57,0,0,4360,4358,1,0,0,0,4360,4361,1,0,0,0,4361, + 357,1,0,0,0,4362,4364,5,46,0,0,4363,4365,3,360,180,0,4364,4363,1, + 0,0,0,4364,4365,1,0,0,0,4365,4370,1,0,0,0,4366,4367,5,211,0,0,4367, + 4371,3,812,406,0,4368,4369,5,296,0,0,4369,4371,3,802,401,0,4370, + 4366,1,0,0,0,4370,4368,1,0,0,0,4371,4372,1,0,0,0,4372,4381,5,2,0, + 0,4373,4378,3,384,192,0,4374,4375,5,6,0,0,4375,4377,3,384,192,0, + 4376,4374,1,0,0,0,4377,4380,1,0,0,0,4378,4376,1,0,0,0,4378,4379, + 1,0,0,0,4379,4382,1,0,0,0,4380,4378,1,0,0,0,4381,4373,1,0,0,0,4381, + 4382,1,0,0,0,4382,4383,1,0,0,0,4383,4384,5,3,0,0,4384,4401,1,0,0, + 0,4385,4399,5,316,0,0,4386,4400,3,382,191,0,4387,4388,5,92,0,0,4388, + 4389,5,2,0,0,4389,4394,3,396,198,0,4390,4391,5,6,0,0,4391,4393,3, + 396,198,0,4392,4390,1,0,0,0,4393,4396,1,0,0,0,4394,4392,1,0,0,0, + 4394,4395,1,0,0,0,4395,4397,1,0,0,0,4396,4394,1,0,0,0,4397,4398, + 5,3,0,0,4398,4400,1,0,0,0,4399,4386,1,0,0,0,4399,4387,1,0,0,0,4400, + 4402,1,0,0,0,4401,4385,1,0,0,0,4401,4402,1,0,0,0,4402,4404,1,0,0, + 0,4403,4405,3,392,196,0,4404,4403,1,0,0,0,4405,4406,1,0,0,0,4406, + 4404,1,0,0,0,4406,4407,1,0,0,0,4407,4413,1,0,0,0,4408,4409,5,105, + 0,0,4409,4410,5,2,0,0,4410,4411,3,788,394,0,4411,4412,5,3,0,0,4412, + 4414,1,0,0,0,4413,4408,1,0,0,0,4413,4414,1,0,0,0,4414,359,1,0,0, + 0,4415,4416,5,82,0,0,4416,4417,5,311,0,0,4417,361,1,0,0,0,4418,4420, + 5,2,0,0,4419,4421,3,364,182,0,4420,4419,1,0,0,0,4420,4421,1,0,0, + 0,4421,4422,1,0,0,0,4422,4423,5,3,0,0,4423,363,1,0,0,0,4424,4429, + 3,378,189,0,4425,4426,5,6,0,0,4426,4428,3,378,189,0,4427,4425,1, + 0,0,0,4428,4431,1,0,0,0,4429,4427,1,0,0,0,4429,4430,1,0,0,0,4430, + 365,1,0,0,0,4431,4429,1,0,0,0,4432,4437,3,368,184,0,4433,4434,5, + 6,0,0,4434,4436,3,368,184,0,4435,4433,1,0,0,0,4436,4439,1,0,0,0, + 4437,4435,1,0,0,0,4437,4438,1,0,0,0,4438,367,1,0,0,0,4439,4437,1, + 0,0,0,4440,4441,3,798,399,0,4441,4442,3,362,181,0,4442,4446,1,0, + 0,0,4443,4446,3,840,420,0,4444,4446,3,784,392,0,4445,4440,1,0,0, + 0,4445,4443,1,0,0,0,4445,4444,1,0,0,0,4446,369,1,0,0,0,4447,4452, + 3,372,186,0,4448,4449,5,6,0,0,4449,4451,3,372,186,0,4450,4448,1, + 0,0,0,4451,4454,1,0,0,0,4452,4450,1,0,0,0,4452,4453,1,0,0,0,4453, + 371,1,0,0,0,4454,4452,1,0,0,0,4455,4456,3,800,400,0,4456,4457,3, + 362,181,0,4457,4461,1,0,0,0,4458,4461,3,840,420,0,4459,4461,3,784, + 392,0,4460,4455,1,0,0,0,4460,4458,1,0,0,0,4460,4459,1,0,0,0,4461, + 373,1,0,0,0,4462,4467,3,376,188,0,4463,4464,5,6,0,0,4464,4466,3, + 376,188,0,4465,4463,1,0,0,0,4466,4469,1,0,0,0,4467,4465,1,0,0,0, + 4467,4468,1,0,0,0,4468,375,1,0,0,0,4469,4467,1,0,0,0,4470,4471,3, + 814,407,0,4471,4472,3,362,181,0,4472,4476,1,0,0,0,4473,4476,3,840, + 420,0,4474,4476,3,784,392,0,4475,4470,1,0,0,0,4475,4473,1,0,0,0, + 4475,4474,1,0,0,0,4476,377,1,0,0,0,4477,4479,3,380,190,0,4478,4480, + 3,828,414,0,4479,4478,1,0,0,0,4479,4480,1,0,0,0,4480,4486,1,0,0, + 0,4481,4483,3,828,414,0,4482,4484,3,380,190,0,4483,4482,1,0,0,0, + 4483,4484,1,0,0,0,4484,4486,1,0,0,0,4485,4477,1,0,0,0,4485,4481, + 1,0,0,0,4485,4486,1,0,0,0,4486,4487,1,0,0,0,4487,4488,3,382,191, + 0,4488,379,1,0,0,0,4489,4491,5,68,0,0,4490,4492,5,453,0,0,4491,4490, + 1,0,0,0,4491,4492,1,0,0,0,4492,4497,1,0,0,0,4493,4497,5,453,0,0, + 4494,4497,5,400,0,0,4495,4497,5,101,0,0,4496,4489,1,0,0,0,4496,4493, + 1,0,0,0,4496,4494,1,0,0,0,4496,4495,1,0,0,0,4497,381,1,0,0,0,4498, + 4508,3,648,324,0,4499,4501,5,415,0,0,4500,4499,1,0,0,0,4500,4501, + 1,0,0,0,4501,4502,1,0,0,0,4502,4503,3,828,414,0,4503,4504,3,312, + 156,0,4504,4505,5,27,0,0,4505,4506,5,360,0,0,4506,4508,1,0,0,0,4507, + 4498,1,0,0,0,4507,4500,1,0,0,0,4508,383,1,0,0,0,4509,4512,3,378, + 189,0,4510,4511,7,58,0,0,4511,4513,3,670,335,0,4512,4510,1,0,0,0, + 4512,4513,1,0,0,0,4513,385,1,0,0,0,4514,4524,5,2,0,0,4515,4525,5, + 9,0,0,4516,4518,3,364,182,0,4517,4516,1,0,0,0,4517,4518,1,0,0,0, + 4518,4522,1,0,0,0,4519,4520,5,83,0,0,4520,4521,5,147,0,0,4521,4523, + 3,364,182,0,4522,4519,1,0,0,0,4522,4523,1,0,0,0,4523,4525,1,0,0, + 0,4524,4515,1,0,0,0,4524,4517,1,0,0,0,4525,4526,1,0,0,0,4526,4527, + 5,3,0,0,4527,387,1,0,0,0,4528,4529,3,814,407,0,4529,4530,3,386,193, + 0,4530,389,1,0,0,0,4531,4532,5,316,0,0,4532,4535,5,78,0,0,4533,4535, + 5,149,0,0,4534,4531,1,0,0,0,4534,4533,1,0,0,0,4535,4536,1,0,0,0, + 4536,4537,5,80,0,0,4537,4538,5,78,0,0,4538,4561,5,458,0,0,4539,4561, + 5,346,0,0,4540,4561,5,222,0,0,4541,4561,5,338,0,0,4542,4561,5,377, + 0,0,4543,4545,5,205,0,0,4544,4543,1,0,0,0,4544,4545,1,0,0,0,4545, + 4546,1,0,0,0,4546,4547,5,327,0,0,4547,4561,7,59,0,0,4548,4561,5, + 250,0,0,4549,4550,5,77,0,0,4550,4561,5,250,0,0,4551,4552,7,60,0, + 0,4552,4561,3,196,98,0,4553,4554,5,459,0,0,4554,4561,3,310,155,0, + 4555,4556,5,333,0,0,4556,4561,3,42,21,0,4557,4561,3,60,30,0,4558, + 4559,5,460,0,0,4559,4561,3,826,413,0,4560,4534,1,0,0,0,4560,4539, + 1,0,0,0,4560,4540,1,0,0,0,4560,4541,1,0,0,0,4560,4542,1,0,0,0,4560, + 4544,1,0,0,0,4560,4548,1,0,0,0,4560,4549,1,0,0,0,4560,4551,1,0,0, + 0,4560,4553,1,0,0,0,4560,4555,1,0,0,0,4560,4557,1,0,0,0,4560,4558, + 1,0,0,0,4561,391,1,0,0,0,4562,4563,5,36,0,0,4563,4564,3,816,408, + 0,4564,4565,3,456,228,0,4565,4598,1,0,0,0,4566,4567,5,247,0,0,4567, + 4598,3,58,29,0,4568,4569,5,443,0,0,4569,4570,5,62,0,0,4570,4571, + 5,360,0,0,4571,4578,3,648,324,0,4572,4573,5,6,0,0,4573,4574,5,62, + 0,0,4574,4575,5,360,0,0,4575,4577,3,648,324,0,4576,4572,1,0,0,0, + 4577,4580,1,0,0,0,4578,4576,1,0,0,0,4578,4579,1,0,0,0,4579,4598, + 1,0,0,0,4580,4578,1,0,0,0,4581,4598,5,104,0,0,4582,4583,5,333,0, + 0,4583,4590,3,826,413,0,4584,4585,5,94,0,0,4585,4591,3,826,413,0, + 4586,4587,5,10,0,0,4587,4591,3,826,413,0,4588,4589,5,64,0,0,4589, + 4591,5,434,0,0,4590,4584,1,0,0,0,4590,4586,1,0,0,0,4590,4588,1,0, + 0,0,4591,4598,1,0,0,0,4592,4593,5,36,0,0,4593,4598,3,826,413,0,4594, + 4598,3,4,2,0,4595,4598,3,390,195,0,4596,4598,3,826,413,0,4597,4562, + 1,0,0,0,4597,4566,1,0,0,0,4597,4568,1,0,0,0,4597,4581,1,0,0,0,4597, + 4582,1,0,0,0,4597,4592,1,0,0,0,4597,4594,1,0,0,0,4597,4595,1,0,0, + 0,4597,4596,1,0,0,0,4598,393,1,0,0,0,4599,4600,5,105,0,0,4600,4601, + 3,278,139,0,4601,395,1,0,0,0,4602,4603,3,806,403,0,4603,4604,3,382, + 191,0,4604,397,1,0,0,0,4605,4612,5,138,0,0,4606,4607,5,211,0,0,4607, + 4613,3,376,188,0,4608,4609,5,296,0,0,4609,4613,3,372,186,0,4610, + 4611,5,442,0,0,4611,4613,3,368,184,0,4612,4606,1,0,0,0,4612,4608, + 1,0,0,0,4612,4610,1,0,0,0,4613,4615,1,0,0,0,4614,4616,3,390,195, + 0,4615,4614,1,0,0,0,4616,4617,1,0,0,0,4617,4615,1,0,0,0,4617,4618, + 1,0,0,0,4618,4620,1,0,0,0,4619,4621,5,315,0,0,4620,4619,1,0,0,0, + 4620,4621,1,0,0,0,4621,399,1,0,0,0,4622,4638,5,191,0,0,4623,4625, + 5,211,0,0,4624,4626,3,416,208,0,4625,4624,1,0,0,0,4625,4626,1,0, + 0,0,4626,4627,1,0,0,0,4627,4639,3,374,187,0,4628,4630,5,296,0,0, + 4629,4631,3,416,208,0,4630,4629,1,0,0,0,4630,4631,1,0,0,0,4631,4632, + 1,0,0,0,4632,4639,3,370,185,0,4633,4635,5,442,0,0,4634,4636,3,416, + 208,0,4635,4634,1,0,0,0,4635,4636,1,0,0,0,4636,4637,1,0,0,0,4637, + 4639,3,366,183,0,4638,4623,1,0,0,0,4638,4628,1,0,0,0,4638,4633,1, + 0,0,0,4639,4641,1,0,0,0,4640,4642,3,88,44,0,4641,4640,1,0,0,0,4641, + 4642,1,0,0,0,4642,401,1,0,0,0,4643,4644,5,191,0,0,4644,4646,5,136, + 0,0,4645,4647,3,416,208,0,4646,4645,1,0,0,0,4646,4647,1,0,0,0,4647, + 4648,1,0,0,0,4648,4653,3,388,194,0,4649,4650,5,6,0,0,4650,4652,3, + 388,194,0,4651,4649,1,0,0,0,4652,4655,1,0,0,0,4653,4651,1,0,0,0, + 4653,4654,1,0,0,0,4654,4657,1,0,0,0,4655,4653,1,0,0,0,4656,4658, + 3,88,44,0,4657,4656,1,0,0,0,4657,4658,1,0,0,0,4658,403,1,0,0,0,4659, + 4660,5,191,0,0,4660,4662,5,278,0,0,4661,4663,3,416,208,0,4662,4661, + 1,0,0,0,4662,4663,1,0,0,0,4663,4664,1,0,0,0,4664,4669,3,410,205, + 0,4665,4666,5,6,0,0,4666,4668,3,410,205,0,4667,4665,1,0,0,0,4668, + 4671,1,0,0,0,4669,4667,1,0,0,0,4669,4670,1,0,0,0,4670,4673,1,0,0, + 0,4671,4669,1,0,0,0,4672,4674,3,88,44,0,4673,4672,1,0,0,0,4673,4674, + 1,0,0,0,4674,405,1,0,0,0,4675,4688,5,2,0,0,4676,4679,3,648,324,0, + 4677,4678,5,6,0,0,4678,4680,3,648,324,0,4679,4677,1,0,0,0,4679,4680, + 1,0,0,0,4680,4689,1,0,0,0,4681,4682,5,407,0,0,4682,4683,5,6,0,0, + 4683,4689,3,648,324,0,4684,4685,3,648,324,0,4685,4686,5,6,0,0,4686, + 4687,5,407,0,0,4687,4689,1,0,0,0,4688,4676,1,0,0,0,4688,4681,1,0, + 0,0,4688,4684,1,0,0,0,4689,4690,1,0,0,0,4690,4691,5,3,0,0,4691,407, + 1,0,0,0,4692,4693,3,826,413,0,4693,4694,5,11,0,0,4694,4696,1,0,0, + 0,4695,4692,1,0,0,0,4696,4699,1,0,0,0,4697,4695,1,0,0,0,4697,4698, + 1,0,0,0,4698,4700,1,0,0,0,4699,4697,1,0,0,0,4700,4701,3,718,359, + 0,4701,409,1,0,0,0,4702,4703,3,408,204,0,4703,4704,3,406,203,0,4704, + 411,1,0,0,0,4705,4709,5,57,0,0,4706,4710,3,816,408,0,4707,4708,5, + 247,0,0,4708,4710,3,58,29,0,4709,4706,1,0,0,0,4709,4707,1,0,0,0, + 4710,4711,1,0,0,0,4711,4709,1,0,0,0,4711,4712,1,0,0,0,4712,413,1, + 0,0,0,4713,4714,5,46,0,0,4714,4715,5,41,0,0,4715,4716,5,2,0,0,4716, + 4717,3,648,324,0,4717,4718,5,36,0,0,4718,4719,3,648,324,0,4719,4736, + 5,3,0,0,4720,4721,5,379,0,0,4721,4724,5,211,0,0,4722,4723,5,36,0, + 0,4723,4725,7,61,0,0,4724,4722,1,0,0,0,4724,4725,1,0,0,0,4725,4737, + 1,0,0,0,4726,4730,5,105,0,0,4727,4728,5,211,0,0,4728,4731,3,376, + 188,0,4729,4731,5,400,0,0,4730,4727,1,0,0,0,4730,4729,1,0,0,0,4731, + 4734,1,0,0,0,4732,4733,5,36,0,0,4733,4735,7,61,0,0,4734,4732,1,0, + 0,0,4734,4735,1,0,0,0,4735,4737,1,0,0,0,4736,4720,1,0,0,0,4736,4726, + 1,0,0,0,4737,415,1,0,0,0,4738,4739,5,220,0,0,4739,4740,5,396,0,0, + 4740,417,1,0,0,0,4741,4743,5,46,0,0,4742,4744,3,360,180,0,4743,4742, + 1,0,0,0,4743,4744,1,0,0,0,4744,4745,1,0,0,0,4745,4746,5,443,0,0, + 4746,4747,5,62,0,0,4747,4748,3,648,324,0,4748,4749,5,247,0,0,4749, + 4750,3,826,413,0,4750,4765,5,2,0,0,4751,4752,5,64,0,0,4752,4756, + 3,420,210,0,4753,4754,5,6,0,0,4754,4755,5,94,0,0,4755,4757,3,420, + 210,0,4756,4753,1,0,0,0,4756,4757,1,0,0,0,4757,4766,1,0,0,0,4758, + 4759,5,94,0,0,4759,4763,3,420,210,0,4760,4761,5,6,0,0,4761,4762, + 5,64,0,0,4762,4764,3,420,210,0,4763,4760,1,0,0,0,4763,4764,1,0,0, + 0,4764,4766,1,0,0,0,4765,4751,1,0,0,0,4765,4758,1,0,0,0,4766,4767, + 1,0,0,0,4767,4768,5,3,0,0,4768,419,1,0,0,0,4769,4770,5,461,0,0,4770, + 4771,5,105,0,0,4771,4772,5,211,0,0,4772,4773,3,376,188,0,4773,421, + 1,0,0,0,4774,4785,5,306,0,0,4775,4776,5,2,0,0,4776,4781,5,128,0, + 0,4777,4778,5,6,0,0,4778,4780,5,128,0,0,4779,4777,1,0,0,0,4780,4783, + 1,0,0,0,4781,4779,1,0,0,0,4781,4782,1,0,0,0,4782,4784,1,0,0,0,4783, + 4781,1,0,0,0,4784,4786,5,3,0,0,4785,4775,1,0,0,0,4785,4786,1,0,0, + 0,4786,4812,1,0,0,0,4787,4789,5,226,0,0,4788,4790,5,109,0,0,4789, + 4788,1,0,0,0,4789,4790,1,0,0,0,4790,4791,1,0,0,0,4791,4813,3,784, + 392,0,4792,4794,5,92,0,0,4793,4795,5,109,0,0,4794,4793,1,0,0,0,4794, + 4795,1,0,0,0,4795,4796,1,0,0,0,4796,4813,3,778,389,0,4797,4799,5, + 323,0,0,4798,4800,5,109,0,0,4799,4798,1,0,0,0,4799,4800,1,0,0,0, + 4800,4801,1,0,0,0,4801,4813,3,794,397,0,4802,4804,5,349,0,0,4803, + 4805,5,109,0,0,4804,4803,1,0,0,0,4804,4805,1,0,0,0,4805,4806,1,0, + 0,0,4806,4813,3,826,413,0,4807,4809,5,175,0,0,4808,4810,5,109,0, + 0,4809,4808,1,0,0,0,4809,4810,1,0,0,0,4810,4811,1,0,0,0,4811,4813, + 3,792,396,0,4812,4787,1,0,0,0,4812,4792,1,0,0,0,4812,4797,1,0,0, + 0,4812,4802,1,0,0,0,4812,4807,1,0,0,0,4813,423,1,0,0,0,4814,4815, + 5,138,0,0,4815,4816,3,170,85,0,4816,4817,7,16,0,0,4817,4818,3,92, + 46,0,4818,425,1,0,0,0,4819,4824,5,138,0,0,4820,4821,5,136,0,0,4821, + 4825,3,388,194,0,4822,4823,5,442,0,0,4823,4825,3,368,184,0,4824, + 4820,1,0,0,0,4824,4822,1,0,0,0,4825,4826,1,0,0,0,4826,4827,5,309, + 0,0,4827,4828,5,94,0,0,4828,4829,3,826,413,0,4829,5027,1,0,0,0,4830, + 4831,5,138,0,0,4831,4832,5,175,0,0,4832,4833,3,792,396,0,4833,4834, + 5,309,0,0,4834,4835,5,94,0,0,4835,4836,3,790,395,0,4836,5027,1,0, + 0,0,4837,4838,5,138,0,0,4838,4839,7,62,0,0,4839,4840,3,310,155,0, + 4840,4841,5,309,0,0,4841,4842,5,94,0,0,4842,4843,3,826,413,0,4843, + 5027,1,0,0,0,4844,4845,5,138,0,0,4845,4846,5,211,0,0,4846,4847,3, + 376,188,0,4847,4848,5,309,0,0,4848,4849,5,94,0,0,4849,4850,3,812, + 406,0,4850,5027,1,0,0,0,4851,4852,5,138,0,0,4852,4853,5,278,0,0, + 4853,4854,7,32,0,0,4854,4855,3,310,155,0,4855,4856,3,164,82,0,4856, + 4857,5,309,0,0,4857,4858,5,94,0,0,4858,4859,3,826,413,0,4859,5027, + 1,0,0,0,4860,4861,5,138,0,0,4861,4862,5,296,0,0,4862,4863,3,372, + 186,0,4863,4864,5,309,0,0,4864,4865,5,94,0,0,4865,4866,3,802,401, + 0,4866,5027,1,0,0,0,4867,4868,5,138,0,0,4868,4869,5,323,0,0,4869, + 4870,3,794,397,0,4870,4871,5,309,0,0,4871,4872,5,94,0,0,4872,4873, + 3,32,16,0,4873,5027,1,0,0,0,4874,4875,5,138,0,0,4875,4877,7,63,0, + 0,4876,4878,3,416,208,0,4877,4876,1,0,0,0,4877,4878,1,0,0,0,4878, + 4879,1,0,0,0,4879,4880,3,784,392,0,4880,4881,5,309,0,0,4881,4882, + 5,94,0,0,4882,4883,3,826,413,0,4883,5027,1,0,0,0,4884,4886,5,138, + 0,0,4885,4887,5,259,0,0,4886,4885,1,0,0,0,4886,4887,1,0,0,0,4887, + 4888,1,0,0,0,4888,4890,5,376,0,0,4889,4891,3,416,208,0,4890,4889, + 1,0,0,0,4890,4891,1,0,0,0,4891,4892,1,0,0,0,4892,4893,3,782,391, + 0,4893,4894,5,309,0,0,4894,4895,5,94,0,0,4895,4896,3,780,390,0,4896, + 5027,1,0,0,0,4897,4899,5,138,0,0,4898,4900,5,63,0,0,4899,4898,1, + 0,0,0,4899,4900,1,0,0,0,4900,4901,1,0,0,0,4901,4903,5,92,0,0,4902, + 4904,3,416,208,0,4903,4902,1,0,0,0,4903,4904,1,0,0,0,4904,4905,1, + 0,0,0,4905,4906,3,620,310,0,4906,4907,5,309,0,0,4907,4908,5,94,0, + 0,4908,4909,3,776,388,0,4909,5027,1,0,0,0,4910,4935,5,138,0,0,4911, + 4913,5,63,0,0,4912,4911,1,0,0,0,4912,4913,1,0,0,0,4913,4914,1,0, + 0,0,4914,4916,5,92,0,0,4915,4917,3,416,208,0,4916,4915,1,0,0,0,4916, + 4917,1,0,0,0,4917,4918,1,0,0,0,4918,4919,3,620,310,0,4919,4921,5, + 309,0,0,4920,4922,5,44,0,0,4921,4920,1,0,0,0,4921,4922,1,0,0,0,4922, + 4936,1,0,0,0,4923,4925,5,259,0,0,4924,4923,1,0,0,0,4924,4925,1,0, + 0,0,4925,4926,1,0,0,0,4926,4928,5,376,0,0,4927,4929,3,416,208,0, + 4928,4927,1,0,0,0,4928,4929,1,0,0,0,4929,4930,1,0,0,0,4930,4931, + 3,782,391,0,4931,4933,5,309,0,0,4932,4934,5,44,0,0,4933,4932,1,0, + 0,0,4933,4934,1,0,0,0,4934,4936,1,0,0,0,4935,4912,1,0,0,0,4935,4924, + 1,0,0,0,4936,4937,1,0,0,0,4937,4938,3,806,403,0,4938,4939,5,94,0, + 0,4939,4940,3,810,405,0,4940,5027,1,0,0,0,4941,4949,5,138,0,0,4942, + 4944,5,92,0,0,4943,4945,3,416,208,0,4944,4943,1,0,0,0,4944,4945, + 1,0,0,0,4945,4946,1,0,0,0,4946,4950,3,620,310,0,4947,4948,5,189, + 0,0,4948,4950,3,310,155,0,4949,4942,1,0,0,0,4949,4947,1,0,0,0,4950, + 4951,1,0,0,0,4951,4952,5,309,0,0,4952,4953,5,45,0,0,4953,4954,3, + 826,413,0,4954,4955,5,94,0,0,4955,4956,3,826,413,0,4956,5027,1,0, + 0,0,4957,4964,5,138,0,0,4958,4960,5,445,0,0,4959,4961,3,416,208, + 0,4960,4959,1,0,0,0,4960,4961,1,0,0,0,4961,4965,1,0,0,0,4962,4965, + 5,321,0,0,4963,4965,5,357,0,0,4964,4958,1,0,0,0,4964,4962,1,0,0, + 0,4964,4963,1,0,0,0,4965,4966,1,0,0,0,4966,4967,3,826,413,0,4967, + 4968,5,80,0,0,4968,4969,3,784,392,0,4969,4970,5,309,0,0,4970,4971, + 5,94,0,0,4971,4972,3,826,413,0,4972,5027,1,0,0,0,4973,4986,5,138, + 0,0,4974,4975,5,63,0,0,4975,4976,5,174,0,0,4976,4987,5,381,0,0,4977, + 4979,5,295,0,0,4978,4977,1,0,0,0,4978,4979,1,0,0,0,4979,4980,1,0, + 0,0,4980,4987,5,247,0,0,4981,4987,5,452,0,0,4982,4987,5,331,0,0, + 4983,4987,5,451,0,0,4984,4985,5,198,0,0,4985,4987,5,357,0,0,4986, + 4974,1,0,0,0,4986,4978,1,0,0,0,4986,4981,1,0,0,0,4986,4982,1,0,0, + 0,4986,4983,1,0,0,0,4986,4984,1,0,0,0,4987,4988,1,0,0,0,4988,4989, + 3,826,413,0,4989,4990,5,309,0,0,4990,4991,5,94,0,0,4991,4992,3,826, + 413,0,4992,5027,1,0,0,0,4993,4994,5,138,0,0,4994,4995,7,46,0,0,4995, + 4996,3,822,411,0,4996,4997,5,309,0,0,4997,4998,5,94,0,0,4998,4999, + 3,822,411,0,4999,5027,1,0,0,0,5000,5001,5,138,0,0,5001,5002,3,170, + 85,0,5002,5003,5,309,0,0,5003,5004,5,94,0,0,5004,5005,3,774,387, + 0,5005,5027,1,0,0,0,5006,5007,5,138,0,0,5007,5008,5,355,0,0,5008, + 5009,5,325,0,0,5009,5010,7,42,0,0,5010,5011,3,310,155,0,5011,5012, + 5,309,0,0,5012,5013,5,94,0,0,5013,5014,3,826,413,0,5014,5027,1,0, + 0,0,5015,5016,5,138,0,0,5016,5017,5,360,0,0,5017,5018,3,310,155, + 0,5018,5019,5,309,0,0,5019,5020,5,143,0,0,5020,5021,3,826,413,0, + 5021,5022,5,94,0,0,5022,5024,3,826,413,0,5023,5025,3,88,44,0,5024, + 5023,1,0,0,0,5024,5025,1,0,0,0,5025,5027,1,0,0,0,5026,4819,1,0,0, + 0,5026,4830,1,0,0,0,5026,4837,1,0,0,0,5026,4844,1,0,0,0,5026,4851, + 1,0,0,0,5026,4860,1,0,0,0,5026,4867,1,0,0,0,5026,4874,1,0,0,0,5026, + 4884,1,0,0,0,5026,4897,1,0,0,0,5026,4910,1,0,0,0,5026,4941,1,0,0, + 0,5026,4957,1,0,0,0,5026,4973,1,0,0,0,5026,4993,1,0,0,0,5026,5000, + 1,0,0,0,5026,5006,1,0,0,0,5026,5015,1,0,0,0,5027,427,1,0,0,0,5028, + 5045,5,138,0,0,5029,5030,5,211,0,0,5030,5046,3,376,188,0,5031,5032, + 5,296,0,0,5032,5046,3,372,186,0,5033,5034,5,442,0,0,5034,5046,3, + 368,184,0,5035,5036,5,357,0,0,5036,5037,3,826,413,0,5037,5038,5, + 80,0,0,5038,5039,3,784,392,0,5039,5046,1,0,0,0,5040,5041,5,259,0, + 0,5041,5042,5,376,0,0,5042,5046,3,782,391,0,5043,5044,5,226,0,0, + 5044,5046,3,784,392,0,5045,5029,1,0,0,0,5045,5031,1,0,0,0,5045,5033, + 1,0,0,0,5045,5035,1,0,0,0,5045,5040,1,0,0,0,5045,5043,1,0,0,0,5046, + 5048,1,0,0,0,5047,5049,5,269,0,0,5048,5047,1,0,0,0,5048,5049,1,0, + 0,0,5049,5050,1,0,0,0,5050,5051,5,462,0,0,5051,5052,5,80,0,0,5052, + 5053,5,204,0,0,5053,5054,3,826,413,0,5054,429,1,0,0,0,5055,5094, + 5,138,0,0,5056,5057,5,136,0,0,5057,5095,3,388,194,0,5058,5059,5, + 204,0,0,5059,5095,3,826,413,0,5060,5061,5,211,0,0,5061,5095,3,376, + 188,0,5062,5063,5,278,0,0,5063,5095,3,410,205,0,5064,5065,5,278, + 0,0,5065,5066,7,32,0,0,5066,5067,3,310,155,0,5067,5068,3,164,82, + 0,5068,5095,1,0,0,0,5069,5070,5,296,0,0,5070,5095,3,372,186,0,5071, + 5072,5,442,0,0,5072,5095,3,368,184,0,5073,5075,5,328,0,0,5074,5076, + 3,416,208,0,5075,5074,1,0,0,0,5075,5076,1,0,0,0,5076,5077,1,0,0, + 0,5077,5095,3,784,392,0,5078,5080,5,259,0,0,5079,5078,1,0,0,0,5079, + 5080,1,0,0,0,5080,5081,1,0,0,0,5081,5083,5,376,0,0,5082,5084,3,416, + 208,0,5083,5082,1,0,0,0,5083,5084,1,0,0,0,5084,5085,1,0,0,0,5085, + 5095,3,782,391,0,5086,5088,5,63,0,0,5087,5086,1,0,0,0,5087,5088, + 1,0,0,0,5088,5089,1,0,0,0,5089,5091,5,92,0,0,5090,5092,3,416,208, + 0,5091,5090,1,0,0,0,5091,5092,1,0,0,0,5092,5093,1,0,0,0,5093,5095, + 3,620,310,0,5094,5056,1,0,0,0,5094,5058,1,0,0,0,5094,5060,1,0,0, + 0,5094,5062,1,0,0,0,5094,5064,1,0,0,0,5094,5069,1,0,0,0,5094,5071, + 1,0,0,0,5094,5073,1,0,0,0,5094,5079,1,0,0,0,5094,5087,1,0,0,0,5095, + 5096,1,0,0,0,5096,5097,5,333,0,0,5097,5098,5,323,0,0,5098,5099,3, + 794,397,0,5099,5117,1,0,0,0,5100,5109,5,138,0,0,5101,5102,5,355, + 0,0,5102,5103,5,325,0,0,5103,5110,7,42,0,0,5104,5110,5,108,0,0,5105, + 5110,5,168,0,0,5106,5110,5,189,0,0,5107,5110,5,342,0,0,5108,5110, + 5,360,0,0,5109,5101,1,0,0,0,5109,5104,1,0,0,0,5109,5105,1,0,0,0, + 5109,5106,1,0,0,0,5109,5107,1,0,0,0,5109,5108,1,0,0,0,5110,5111, + 1,0,0,0,5111,5112,3,310,155,0,5112,5113,5,333,0,0,5113,5114,5,323, + 0,0,5114,5115,3,794,397,0,5115,5117,1,0,0,0,5116,5055,1,0,0,0,5116, + 5100,1,0,0,0,5117,431,1,0,0,0,5118,5119,5,138,0,0,5119,5120,5,278, + 0,0,5120,5121,3,410,205,0,5121,5122,5,333,0,0,5122,5123,3,434,217, + 0,5123,433,1,0,0,0,5124,5125,5,2,0,0,5125,5130,3,436,218,0,5126, + 5127,5,6,0,0,5127,5129,3,436,218,0,5128,5126,1,0,0,0,5129,5132,1, + 0,0,0,5130,5128,1,0,0,0,5130,5131,1,0,0,0,5131,5133,1,0,0,0,5132, + 5130,1,0,0,0,5133,5134,5,3,0,0,5134,435,1,0,0,0,5135,5136,3,832, + 416,0,5136,5143,5,10,0,0,5137,5144,5,407,0,0,5138,5144,3,382,191, + 0,5139,5144,3,842,421,0,5140,5144,3,724,362,0,5141,5144,3,196,98, + 0,5142,5144,3,816,408,0,5143,5137,1,0,0,0,5143,5138,1,0,0,0,5143, + 5139,1,0,0,0,5143,5140,1,0,0,0,5143,5141,1,0,0,0,5143,5142,1,0,0, + 0,5144,437,1,0,0,0,5145,5146,5,138,0,0,5146,5147,5,360,0,0,5147, + 5148,3,310,155,0,5148,5149,5,333,0,0,5149,5150,3,434,217,0,5150, + 439,1,0,0,0,5151,5152,5,138,0,0,5152,5153,5,278,0,0,5153,5154,7, + 32,0,0,5154,5155,3,310,155,0,5155,5156,3,164,82,0,5156,5157,5,282, + 0,0,5157,5158,5,94,0,0,5158,5159,3,822,411,0,5159,5226,1,0,0,0,5160, + 5187,5,138,0,0,5161,5162,5,136,0,0,5162,5188,3,388,194,0,5163,5164, + 5,175,0,0,5164,5188,3,792,396,0,5165,5166,5,211,0,0,5166,5188,3, + 376,188,0,5167,5169,5,295,0,0,5168,5167,1,0,0,0,5168,5169,1,0,0, + 0,5169,5170,1,0,0,0,5170,5171,5,247,0,0,5171,5188,3,826,413,0,5172, + 5173,5,248,0,0,5173,5174,5,274,0,0,5174,5188,3,196,98,0,5175,5176, + 5,248,0,0,5176,5177,5,274,0,0,5177,5188,3,196,98,0,5178,5179,5,278, + 0,0,5179,5188,3,410,205,0,5180,5181,5,296,0,0,5181,5188,3,372,186, + 0,5182,5183,5,442,0,0,5183,5188,3,368,184,0,5184,5185,5,323,0,0, + 5185,5188,3,794,397,0,5186,5188,3,170,85,0,5187,5161,1,0,0,0,5187, + 5163,1,0,0,0,5187,5165,1,0,0,0,5187,5168,1,0,0,0,5187,5172,1,0,0, + 0,5187,5175,1,0,0,0,5187,5178,1,0,0,0,5187,5180,1,0,0,0,5187,5182, + 1,0,0,0,5187,5184,1,0,0,0,5187,5186,1,0,0,0,5188,5189,1,0,0,0,5189, + 5190,5,282,0,0,5190,5191,5,94,0,0,5191,5192,3,822,411,0,5192,5226, + 1,0,0,0,5193,5202,5,138,0,0,5194,5195,5,355,0,0,5195,5196,5,325, + 0,0,5196,5203,7,64,0,0,5197,5203,5,108,0,0,5198,5203,5,168,0,0,5199, + 5203,5,189,0,0,5200,5203,5,360,0,0,5201,5203,5,342,0,0,5202,5194, + 1,0,0,0,5202,5197,1,0,0,0,5202,5198,1,0,0,0,5202,5199,1,0,0,0,5202, + 5200,1,0,0,0,5202,5201,1,0,0,0,5203,5204,1,0,0,0,5204,5205,3,310, + 155,0,5205,5206,5,282,0,0,5206,5207,5,94,0,0,5207,5208,3,822,411, + 0,5208,5226,1,0,0,0,5209,5218,5,138,0,0,5210,5219,5,331,0,0,5211, + 5212,5,63,0,0,5212,5213,5,174,0,0,5213,5219,5,381,0,0,5214,5215, + 5,198,0,0,5215,5219,5,357,0,0,5216,5219,5,452,0,0,5217,5219,5,451, + 0,0,5218,5210,1,0,0,0,5218,5211,1,0,0,0,5218,5214,1,0,0,0,5218,5216, + 1,0,0,0,5218,5217,1,0,0,0,5219,5220,1,0,0,0,5220,5221,3,826,413, + 0,5221,5222,5,282,0,0,5222,5223,5,94,0,0,5223,5224,3,822,411,0,5224, + 5226,1,0,0,0,5225,5151,1,0,0,0,5225,5160,1,0,0,0,5225,5193,1,0,0, + 0,5225,5209,1,0,0,0,5226,441,1,0,0,0,5227,5228,5,46,0,0,5228,5229, + 5,452,0,0,5229,5236,3,826,413,0,5230,5231,5,62,0,0,5231,5232,5,92, + 0,0,5232,5237,3,624,312,0,5233,5234,5,62,0,0,5234,5235,5,30,0,0, + 5235,5237,5,350,0,0,5236,5230,1,0,0,0,5236,5233,1,0,0,0,5236,5237, + 1,0,0,0,5237,5239,1,0,0,0,5238,5240,3,394,197,0,5239,5238,1,0,0, + 0,5239,5240,1,0,0,0,5240,443,1,0,0,0,5241,5242,5,138,0,0,5242,5243, + 5,452,0,0,5243,5261,3,826,413,0,5244,5245,5,282,0,0,5245,5246,5, + 94,0,0,5246,5262,3,822,411,0,5247,5248,5,333,0,0,5248,5262,3,278, + 139,0,5249,5250,5,309,0,0,5250,5251,5,94,0,0,5251,5262,3,826,413, + 0,5252,5253,7,35,0,0,5253,5258,3,622,311,0,5254,5255,5,6,0,0,5255, + 5257,3,622,311,0,5256,5254,1,0,0,0,5257,5260,1,0,0,0,5258,5256,1, + 0,0,0,5258,5259,1,0,0,0,5259,5262,1,0,0,0,5260,5258,1,0,0,0,5261, + 5244,1,0,0,0,5261,5247,1,0,0,0,5261,5249,1,0,0,0,5261,5252,1,0,0, + 0,5262,445,1,0,0,0,5263,5264,5,46,0,0,5264,5265,5,451,0,0,5265,5266, + 3,826,413,0,5266,5267,5,164,0,0,5267,5268,3,816,408,0,5268,5269, + 5,452,0,0,5269,5274,3,832,416,0,5270,5271,5,6,0,0,5271,5273,3,832, + 416,0,5272,5270,1,0,0,0,5273,5276,1,0,0,0,5274,5272,1,0,0,0,5274, + 5275,1,0,0,0,5275,5278,1,0,0,0,5276,5274,1,0,0,0,5277,5279,3,394, + 197,0,5278,5277,1,0,0,0,5278,5279,1,0,0,0,5279,447,1,0,0,0,5280, + 5281,5,138,0,0,5281,5282,5,451,0,0,5282,5283,3,826,413,0,5283,5284, + 5,333,0,0,5284,5285,3,278,139,0,5285,5337,1,0,0,0,5286,5287,5,138, + 0,0,5287,5288,5,451,0,0,5288,5289,3,826,413,0,5289,5290,5,164,0, + 0,5290,5291,3,816,408,0,5291,5337,1,0,0,0,5292,5293,5,138,0,0,5293, + 5294,5,451,0,0,5294,5295,3,826,413,0,5295,5296,5,305,0,0,5296,5298, + 5,452,0,0,5297,5299,3,394,197,0,5298,5297,1,0,0,0,5298,5299,1,0, + 0,0,5299,5337,1,0,0,0,5300,5301,5,138,0,0,5301,5302,5,451,0,0,5302, + 5303,3,826,413,0,5303,5304,7,35,0,0,5304,5305,5,452,0,0,5305,5310, + 3,832,416,0,5306,5307,5,6,0,0,5307,5309,3,832,416,0,5308,5306,1, + 0,0,0,5309,5312,1,0,0,0,5310,5308,1,0,0,0,5310,5311,1,0,0,0,5311, + 5314,1,0,0,0,5312,5310,1,0,0,0,5313,5315,3,394,197,0,5314,5313,1, + 0,0,0,5314,5315,1,0,0,0,5315,5337,1,0,0,0,5316,5317,5,138,0,0,5317, + 5318,5,451,0,0,5318,5319,3,826,413,0,5319,5320,7,65,0,0,5320,5337, + 1,0,0,0,5321,5322,5,138,0,0,5322,5323,5,451,0,0,5323,5324,3,826, + 413,0,5324,5325,5,465,0,0,5325,5326,5,2,0,0,5326,5327,3,284,142, + 0,5327,5328,5,3,0,0,5328,5337,1,0,0,0,5329,5330,5,138,0,0,5330,5331, + 5,451,0,0,5331,5332,3,826,413,0,5332,5333,5,282,0,0,5333,5334,5, + 94,0,0,5334,5335,3,822,411,0,5335,5337,1,0,0,0,5336,5280,1,0,0,0, + 5336,5286,1,0,0,0,5336,5292,1,0,0,0,5336,5300,1,0,0,0,5336,5316, + 1,0,0,0,5336,5321,1,0,0,0,5336,5329,1,0,0,0,5337,449,1,0,0,0,5338, + 5340,5,46,0,0,5339,5341,3,360,180,0,5340,5339,1,0,0,0,5340,5341, + 1,0,0,0,5341,5342,1,0,0,0,5342,5343,5,321,0,0,5343,5344,3,826,413, + 0,5344,5345,5,36,0,0,5345,5346,5,80,0,0,5346,5347,7,66,0,0,5347, + 5348,5,94,0,0,5348,5350,3,784,392,0,5349,5351,3,634,317,0,5350,5349, + 1,0,0,0,5350,5351,1,0,0,0,5351,5352,1,0,0,0,5352,5354,5,57,0,0,5353, + 5355,7,67,0,0,5354,5353,1,0,0,0,5354,5355,1,0,0,0,5355,5372,1,0, + 0,0,5356,5373,5,270,0,0,5357,5373,3,452,226,0,5358,5360,5,2,0,0, + 5359,5361,3,452,226,0,5360,5359,1,0,0,0,5360,5361,1,0,0,0,5361,5368, + 1,0,0,0,5362,5364,5,7,0,0,5363,5365,3,452,226,0,5364,5363,1,0,0, + 0,5364,5365,1,0,0,0,5365,5367,1,0,0,0,5366,5362,1,0,0,0,5367,5370, + 1,0,0,0,5368,5366,1,0,0,0,5368,5369,1,0,0,0,5369,5371,1,0,0,0,5370, + 5368,1,0,0,0,5371,5373,5,3,0,0,5372,5356,1,0,0,0,5372,5357,1,0,0, + 0,5372,5358,1,0,0,0,5373,451,1,0,0,0,5374,5380,3,554,277,0,5375, + 5380,3,532,266,0,5376,5380,3,546,273,0,5377,5380,3,542,271,0,5378, + 5380,3,454,227,0,5379,5374,1,0,0,0,5379,5375,1,0,0,0,5379,5376,1, + 0,0,0,5379,5377,1,0,0,0,5379,5378,1,0,0,0,5380,453,1,0,0,0,5381, + 5382,5,271,0,0,5382,5384,3,826,413,0,5383,5385,3,456,228,0,5384, + 5383,1,0,0,0,5384,5385,1,0,0,0,5385,455,1,0,0,0,5386,5387,5,6,0, + 0,5387,5388,3,816,408,0,5388,457,1,0,0,0,5389,5390,5,252,0,0,5390, + 5391,3,826,413,0,5391,459,1,0,0,0,5392,5395,5,366,0,0,5393,5396, + 3,826,413,0,5394,5396,5,9,0,0,5395,5393,1,0,0,0,5395,5394,1,0,0, + 0,5396,461,1,0,0,0,5397,5399,5,146,0,0,5398,5400,3,464,232,0,5399, + 5398,1,0,0,0,5399,5400,1,0,0,0,5400,5402,1,0,0,0,5401,5403,3,468, + 234,0,5402,5401,1,0,0,0,5402,5403,1,0,0,0,5403,5443,1,0,0,0,5404, + 5405,5,340,0,0,5405,5407,5,356,0,0,5406,5408,3,468,234,0,5407,5406, + 1,0,0,0,5407,5408,1,0,0,0,5408,5443,1,0,0,0,5409,5410,5,322,0,0, + 5410,5443,3,826,413,0,5411,5413,5,308,0,0,5412,5414,5,322,0,0,5413, + 5412,1,0,0,0,5413,5414,1,0,0,0,5414,5415,1,0,0,0,5415,5443,3,826, + 413,0,5416,5417,5,290,0,0,5417,5418,5,356,0,0,5418,5443,3,816,408, + 0,5419,5420,7,68,0,0,5420,5421,5,291,0,0,5421,5443,3,816,408,0,5422, + 5424,7,69,0,0,5423,5425,3,464,232,0,5424,5423,1,0,0,0,5424,5425, + 1,0,0,0,5425,5431,1,0,0,0,5426,5428,5,33,0,0,5427,5429,5,269,0,0, + 5428,5427,1,0,0,0,5428,5429,1,0,0,0,5429,5430,1,0,0,0,5430,5432, + 5,153,0,0,5431,5426,1,0,0,0,5431,5432,1,0,0,0,5432,5443,1,0,0,0, + 5433,5435,5,319,0,0,5434,5436,3,464,232,0,5435,5434,1,0,0,0,5435, + 5436,1,0,0,0,5436,5437,1,0,0,0,5437,5439,5,94,0,0,5438,5440,5,322, + 0,0,5439,5438,1,0,0,0,5439,5440,1,0,0,0,5440,5441,1,0,0,0,5441,5443, + 3,826,413,0,5442,5397,1,0,0,0,5442,5404,1,0,0,0,5442,5409,1,0,0, + 0,5442,5411,1,0,0,0,5442,5416,1,0,0,0,5442,5419,1,0,0,0,5442,5422, + 1,0,0,0,5442,5433,1,0,0,0,5443,463,1,0,0,0,5444,5445,7,70,0,0,5445, + 465,1,0,0,0,5446,5447,5,244,0,0,5447,5448,5,251,0,0,5448,5456,3, + 50,25,0,5449,5450,5,300,0,0,5450,5456,7,71,0,0,5451,5453,5,77,0, + 0,5452,5451,1,0,0,0,5452,5453,1,0,0,0,5453,5454,1,0,0,0,5454,5456, + 5,54,0,0,5455,5446,1,0,0,0,5455,5449,1,0,0,0,5455,5452,1,0,0,0,5456, + 467,1,0,0,0,5457,5464,3,466,233,0,5458,5460,5,6,0,0,5459,5458,1, + 0,0,0,5459,5460,1,0,0,0,5460,5461,1,0,0,0,5461,5463,3,466,233,0, + 5462,5459,1,0,0,0,5463,5466,1,0,0,0,5464,5462,1,0,0,0,5464,5465, + 1,0,0,0,5465,469,1,0,0,0,5466,5464,1,0,0,0,5467,5470,5,46,0,0,5468, + 5469,5,82,0,0,5469,5471,5,311,0,0,5470,5468,1,0,0,0,5470,5471,1, + 0,0,0,5471,5473,1,0,0,0,5472,5474,3,116,58,0,5473,5472,1,0,0,0,5473, + 5474,1,0,0,0,5474,5490,1,0,0,0,5475,5476,5,376,0,0,5476,5478,3,780, + 390,0,5477,5479,3,140,70,0,5478,5477,1,0,0,0,5478,5479,1,0,0,0,5479, + 5481,1,0,0,0,5480,5482,3,94,47,0,5481,5480,1,0,0,0,5481,5482,1,0, + 0,0,5482,5491,1,0,0,0,5483,5484,5,303,0,0,5484,5485,5,376,0,0,5485, + 5486,3,780,390,0,5486,5488,3,138,69,0,5487,5489,3,94,47,0,5488,5487, + 1,0,0,0,5488,5489,1,0,0,0,5489,5491,1,0,0,0,5490,5475,1,0,0,0,5490, + 5483,1,0,0,0,5491,5492,1,0,0,0,5492,5493,5,36,0,0,5493,5500,3,554, + 277,0,5494,5496,5,105,0,0,5495,5497,7,72,0,0,5496,5495,1,0,0,0,5496, + 5497,1,0,0,0,5497,5498,1,0,0,0,5498,5499,5,42,0,0,5499,5501,5,279, + 0,0,5500,5494,1,0,0,0,5500,5501,1,0,0,0,5501,471,1,0,0,0,5502,5503, + 5,253,0,0,5503,5504,3,816,408,0,5504,473,1,0,0,0,5505,5506,5,46, + 0,0,5506,5507,5,175,0,0,5507,5509,3,790,395,0,5508,5510,5,105,0, + 0,5509,5508,1,0,0,0,5509,5510,1,0,0,0,5510,5516,1,0,0,0,5511,5513, + 3,476,238,0,5512,5511,1,0,0,0,5513,5514,1,0,0,0,5514,5512,1,0,0, + 0,5514,5515,1,0,0,0,5515,5517,1,0,0,0,5516,5512,1,0,0,0,5516,5517, + 1,0,0,0,5517,475,1,0,0,0,5518,5519,5,164,0,0,5519,5527,5,74,0,0, + 5520,5527,5,194,0,0,5521,5527,5,255,0,0,5522,5527,5,282,0,0,5523, + 5527,5,351,0,0,5524,5527,5,353,0,0,5525,5527,3,834,417,0,5526,5518, + 1,0,0,0,5526,5520,1,0,0,0,5526,5521,1,0,0,0,5526,5522,1,0,0,0,5526, + 5523,1,0,0,0,5526,5524,1,0,0,0,5526,5525,1,0,0,0,5527,5529,1,0,0, + 0,5528,5530,5,10,0,0,5529,5528,1,0,0,0,5529,5530,1,0,0,0,5530,5534, + 1,0,0,0,5531,5535,3,820,410,0,5532,5535,3,54,27,0,5533,5535,5,53, + 0,0,5534,5531,1,0,0,0,5534,5532,1,0,0,0,5534,5533,1,0,0,0,5535,477, + 1,0,0,0,5536,5537,5,138,0,0,5537,5538,5,175,0,0,5538,5554,3,792, + 396,0,5539,5540,5,333,0,0,5540,5541,5,351,0,0,5541,5543,3,774,387, + 0,5542,5539,1,0,0,0,5542,5543,1,0,0,0,5543,5555,1,0,0,0,5544,5546, + 5,105,0,0,5545,5544,1,0,0,0,5545,5546,1,0,0,0,5546,5548,1,0,0,0, + 5547,5549,3,476,238,0,5548,5547,1,0,0,0,5549,5550,1,0,0,0,5550,5548, + 1,0,0,0,5550,5551,1,0,0,0,5551,5553,1,0,0,0,5552,5545,1,0,0,0,5552, + 5553,1,0,0,0,5553,5555,1,0,0,0,5554,5542,1,0,0,0,5554,5552,1,0,0, + 0,5555,479,1,0,0,0,5556,5557,5,138,0,0,5557,5558,5,175,0,0,5558, + 5560,3,792,396,0,5559,5561,3,64,32,0,5560,5559,1,0,0,0,5560,5561, + 1,0,0,0,5561,481,1,0,0,0,5562,5563,5,138,0,0,5563,5564,5,108,0,0, + 5564,5565,3,310,155,0,5565,5566,5,305,0,0,5566,5567,5,375,0,0,5567, + 483,1,0,0,0,5568,5569,5,138,0,0,5569,5570,5,349,0,0,5570,5571,7, + 16,0,0,5571,5572,3,40,20,0,5572,485,1,0,0,0,5573,5574,5,46,0,0,5574, + 5575,5,189,0,0,5575,5577,3,310,155,0,5576,5578,5,36,0,0,5577,5576, + 1,0,0,0,5577,5578,1,0,0,0,5578,5579,1,0,0,0,5579,5583,3,648,324, + 0,5580,5582,3,128,64,0,5581,5580,1,0,0,0,5582,5585,1,0,0,0,5583, + 5581,1,0,0,0,5583,5584,1,0,0,0,5584,487,1,0,0,0,5585,5583,1,0,0, + 0,5586,5587,5,138,0,0,5587,5588,5,189,0,0,5588,5611,3,310,155,0, + 5589,5612,3,86,43,0,5590,5591,7,15,0,0,5591,5592,5,77,0,0,5592,5612, + 5,78,0,0,5593,5596,5,133,0,0,5594,5595,5,45,0,0,5595,5597,3,826, + 413,0,5596,5594,1,0,0,0,5596,5597,1,0,0,0,5597,5598,1,0,0,0,5598, + 5612,3,136,68,0,5599,5600,5,191,0,0,5600,5602,5,45,0,0,5601,5603, + 3,416,208,0,5602,5601,1,0,0,0,5602,5603,1,0,0,0,5603,5604,1,0,0, + 0,5604,5606,3,826,413,0,5605,5607,3,88,44,0,5606,5605,1,0,0,0,5606, + 5607,1,0,0,0,5607,5612,1,0,0,0,5608,5609,5,372,0,0,5609,5610,5,45, + 0,0,5610,5612,3,826,413,0,5611,5589,1,0,0,0,5611,5590,1,0,0,0,5611, + 5593,1,0,0,0,5611,5599,1,0,0,0,5611,5608,1,0,0,0,5612,489,1,0,0, + 0,5613,5614,5,138,0,0,5614,5615,5,355,0,0,5615,5616,5,325,0,0,5616, + 5617,5,185,0,0,5617,5618,3,310,155,0,5618,5619,3,278,139,0,5619, + 491,1,0,0,0,5620,5621,5,138,0,0,5621,5622,5,355,0,0,5622,5623,5, + 325,0,0,5623,5624,5,163,0,0,5624,5625,3,310,155,0,5625,5626,7,73, + 0,0,5626,5627,5,257,0,0,5627,5628,5,62,0,0,5628,5629,3,788,394,0, + 5629,5630,5,105,0,0,5630,5631,3,308,154,0,5631,5662,1,0,0,0,5632, + 5633,5,138,0,0,5633,5634,5,355,0,0,5634,5635,5,325,0,0,5635,5636, + 5,163,0,0,5636,5637,3,310,155,0,5637,5638,5,138,0,0,5638,5641,5, + 257,0,0,5639,5640,5,62,0,0,5640,5642,3,788,394,0,5641,5639,1,0,0, + 0,5641,5642,1,0,0,0,5642,5643,1,0,0,0,5643,5644,5,311,0,0,5644,5645, + 3,310,155,0,5645,5646,5,105,0,0,5646,5647,3,310,155,0,5647,5662, + 1,0,0,0,5648,5649,5,138,0,0,5649,5650,5,355,0,0,5650,5651,5,325, + 0,0,5651,5652,5,163,0,0,5652,5653,3,310,155,0,5653,5654,5,191,0, + 0,5654,5656,5,257,0,0,5655,5657,3,416,208,0,5656,5655,1,0,0,0,5656, + 5657,1,0,0,0,5657,5658,1,0,0,0,5658,5659,5,62,0,0,5659,5660,3,788, + 394,0,5660,5662,1,0,0,0,5661,5620,1,0,0,0,5661,5632,1,0,0,0,5661, + 5648,1,0,0,0,5662,493,1,0,0,0,5663,5665,5,46,0,0,5664,5666,5,53, + 0,0,5665,5664,1,0,0,0,5665,5666,1,0,0,0,5666,5667,1,0,0,0,5667,5668, + 5,168,0,0,5668,5669,3,310,155,0,5669,5670,5,62,0,0,5670,5671,3,816, + 408,0,5671,5672,5,94,0,0,5672,5673,3,816,408,0,5673,5674,5,64,0, + 0,5674,5675,3,310,155,0,5675,495,1,0,0,0,5676,5678,5,158,0,0,5677, + 5679,3,508,254,0,5678,5677,1,0,0,0,5678,5679,1,0,0,0,5679,5684,1, + 0,0,0,5680,5682,3,778,389,0,5681,5683,3,164,82,0,5682,5681,1,0,0, + 0,5682,5683,1,0,0,0,5683,5685,1,0,0,0,5684,5680,1,0,0,0,5684,5685, + 1,0,0,0,5685,5702,1,0,0,0,5686,5687,5,158,0,0,5687,5688,5,2,0,0, + 5688,5693,3,508,254,0,5689,5690,5,6,0,0,5690,5692,3,508,254,0,5691, + 5689,1,0,0,0,5692,5695,1,0,0,0,5693,5691,1,0,0,0,5693,5694,1,0,0, + 0,5694,5696,1,0,0,0,5695,5693,1,0,0,0,5696,5697,5,3,0,0,5697,5699, + 3,778,389,0,5698,5700,3,164,82,0,5699,5698,1,0,0,0,5699,5700,1,0, + 0,0,5700,5702,1,0,0,0,5701,5676,1,0,0,0,5701,5686,1,0,0,0,5702,497, + 1,0,0,0,5703,5719,5,370,0,0,5704,5706,5,113,0,0,5705,5704,1,0,0, + 0,5705,5706,1,0,0,0,5706,5708,1,0,0,0,5707,5709,5,112,0,0,5708,5707, + 1,0,0,0,5708,5709,1,0,0,0,5709,5711,1,0,0,0,5710,5712,3,508,254, + 0,5711,5710,1,0,0,0,5711,5712,1,0,0,0,5712,5714,1,0,0,0,5713,5715, + 3,502,251,0,5714,5713,1,0,0,0,5714,5715,1,0,0,0,5715,5720,1,0,0, + 0,5716,5718,3,518,259,0,5717,5716,1,0,0,0,5717,5718,1,0,0,0,5718, + 5720,1,0,0,0,5719,5705,1,0,0,0,5719,5717,1,0,0,0,5720,5722,1,0,0, + 0,5721,5723,3,512,256,0,5722,5721,1,0,0,0,5722,5723,1,0,0,0,5723, + 499,1,0,0,0,5724,5739,3,502,251,0,5725,5727,3,508,254,0,5726,5725, + 1,0,0,0,5726,5727,1,0,0,0,5727,5740,1,0,0,0,5728,5729,5,2,0,0,5729, + 5734,3,506,253,0,5730,5731,5,6,0,0,5731,5733,3,506,253,0,5732,5730, + 1,0,0,0,5733,5736,1,0,0,0,5734,5732,1,0,0,0,5734,5735,1,0,0,0,5735, + 5737,1,0,0,0,5736,5734,1,0,0,0,5737,5738,5,3,0,0,5738,5740,1,0,0, + 0,5739,5726,1,0,0,0,5739,5728,1,0,0,0,5740,5742,1,0,0,0,5741,5743, + 3,512,256,0,5742,5741,1,0,0,0,5742,5743,1,0,0,0,5743,501,1,0,0,0, + 5744,5745,7,74,0,0,5745,503,1,0,0,0,5746,5749,3,830,415,0,5747,5749, + 3,502,251,0,5748,5746,1,0,0,0,5748,5747,1,0,0,0,5749,5752,1,0,0, + 0,5750,5753,3,54,27,0,5751,5753,3,196,98,0,5752,5750,1,0,0,0,5752, + 5751,1,0,0,0,5752,5753,1,0,0,0,5753,505,1,0,0,0,5754,5756,7,75,0, + 0,5755,5757,7,76,0,0,5756,5755,1,0,0,0,5756,5757,1,0,0,0,5757,5764, + 1,0,0,0,5758,5761,5,548,0,0,5759,5762,3,196,98,0,5760,5762,3,816, + 408,0,5761,5759,1,0,0,0,5761,5760,1,0,0,0,5762,5764,1,0,0,0,5763, + 5754,1,0,0,0,5763,5758,1,0,0,0,5764,507,1,0,0,0,5765,5767,5,128, + 0,0,5766,5768,7,76,0,0,5767,5766,1,0,0,0,5767,5768,1,0,0,0,5768, + 509,1,0,0,0,5769,5771,3,778,389,0,5770,5772,3,138,69,0,5771,5770, + 1,0,0,0,5771,5772,1,0,0,0,5772,511,1,0,0,0,5773,5778,3,510,255,0, + 5774,5775,5,6,0,0,5775,5777,3,510,255,0,5776,5774,1,0,0,0,5777,5780, + 1,0,0,0,5778,5776,1,0,0,0,5778,5779,1,0,0,0,5779,513,1,0,0,0,5780, + 5778,1,0,0,0,5781,5792,5,203,0,0,5782,5793,3,518,259,0,5783,5785, + 5,128,0,0,5784,5783,1,0,0,0,5784,5785,1,0,0,0,5785,5793,1,0,0,0, + 5786,5788,3,502,251,0,5787,5789,3,508,254,0,5788,5787,1,0,0,0,5788, + 5789,1,0,0,0,5789,5791,1,0,0,0,5790,5786,1,0,0,0,5790,5791,1,0,0, + 0,5791,5793,1,0,0,0,5792,5782,1,0,0,0,5792,5784,1,0,0,0,5792,5790, + 1,0,0,0,5793,5794,1,0,0,0,5794,5795,3,516,258,0,5795,515,1,0,0,0, + 5796,5806,3,554,277,0,5797,5806,3,532,266,0,5798,5806,3,546,273, + 0,5799,5806,3,542,271,0,5800,5806,3,552,276,0,5801,5806,3,180,90, + 0,5802,5806,3,186,93,0,5803,5806,3,188,94,0,5804,5806,3,526,263, + 0,5805,5796,1,0,0,0,5805,5797,1,0,0,0,5805,5798,1,0,0,0,5805,5799, + 1,0,0,0,5805,5800,1,0,0,0,5805,5801,1,0,0,0,5805,5802,1,0,0,0,5805, + 5803,1,0,0,0,5805,5804,1,0,0,0,5806,517,1,0,0,0,5807,5808,5,2,0, + 0,5808,5813,3,504,252,0,5809,5810,5,6,0,0,5810,5812,3,504,252,0, + 5811,5809,1,0,0,0,5812,5815,1,0,0,0,5813,5811,1,0,0,0,5813,5814, + 1,0,0,0,5814,5816,1,0,0,0,5815,5813,1,0,0,0,5816,5817,5,3,0,0,5817, + 519,1,0,0,0,5818,5819,5,290,0,0,5819,5821,3,826,413,0,5820,5822, + 3,522,261,0,5821,5820,1,0,0,0,5821,5822,1,0,0,0,5822,5823,1,0,0, + 0,5823,5824,5,36,0,0,5824,5825,3,524,262,0,5825,521,1,0,0,0,5826, + 5827,5,2,0,0,5827,5832,3,648,324,0,5828,5829,5,6,0,0,5829,5831,3, + 648,324,0,5830,5828,1,0,0,0,5831,5834,1,0,0,0,5832,5830,1,0,0,0, + 5832,5833,1,0,0,0,5833,5835,1,0,0,0,5834,5832,1,0,0,0,5835,5836, + 5,3,0,0,5836,523,1,0,0,0,5837,5843,3,554,277,0,5838,5843,3,532,266, + 0,5839,5843,3,546,273,0,5840,5843,3,542,271,0,5841,5843,3,908,454, + 0,5842,5837,1,0,0,0,5842,5838,1,0,0,0,5842,5839,1,0,0,0,5842,5840, + 1,0,0,0,5842,5841,1,0,0,0,5843,525,1,0,0,0,5844,5845,5,202,0,0,5845, + 5847,3,826,413,0,5846,5848,3,528,264,0,5847,5846,1,0,0,0,5847,5848, + 1,0,0,0,5848,5868,1,0,0,0,5849,5851,5,46,0,0,5850,5852,3,116,58, + 0,5851,5850,1,0,0,0,5851,5852,1,0,0,0,5852,5853,1,0,0,0,5853,5855, + 5,92,0,0,5854,5856,3,288,144,0,5855,5854,1,0,0,0,5855,5856,1,0,0, + 0,5856,5857,1,0,0,0,5857,5858,3,182,91,0,5858,5859,5,36,0,0,5859, + 5860,5,202,0,0,5860,5862,3,826,413,0,5861,5863,3,528,264,0,5862, + 5861,1,0,0,0,5862,5863,1,0,0,0,5863,5865,1,0,0,0,5864,5866,3,184, + 92,0,5865,5864,1,0,0,0,5865,5866,1,0,0,0,5866,5868,1,0,0,0,5867, + 5844,1,0,0,0,5867,5849,1,0,0,0,5868,527,1,0,0,0,5869,5870,5,2,0, + 0,5870,5871,3,728,364,0,5871,5872,5,3,0,0,5872,529,1,0,0,0,5873, + 5875,5,177,0,0,5874,5876,5,290,0,0,5875,5874,1,0,0,0,5875,5876,1, + 0,0,0,5876,5879,1,0,0,0,5877,5880,3,826,413,0,5878,5880,5,30,0,0, + 5879,5877,1,0,0,0,5879,5878,1,0,0,0,5880,531,1,0,0,0,5881,5883,3, + 566,283,0,5882,5881,1,0,0,0,5882,5883,1,0,0,0,5883,5884,1,0,0,0, + 5884,5885,5,241,0,0,5885,5886,5,71,0,0,5886,5889,3,778,389,0,5887, + 5888,5,36,0,0,5888,5890,3,826,413,0,5889,5887,1,0,0,0,5889,5890, + 1,0,0,0,5890,5891,1,0,0,0,5891,5913,3,534,267,0,5892,5893,5,80,0, + 0,5893,5901,5,464,0,0,5894,5896,3,354,177,0,5895,5897,3,634,317, + 0,5896,5895,1,0,0,0,5896,5897,1,0,0,0,5897,5902,1,0,0,0,5898,5899, + 5,80,0,0,5899,5900,5,45,0,0,5900,5902,3,826,413,0,5901,5894,1,0, + 0,0,5901,5898,1,0,0,0,5901,5902,1,0,0,0,5902,5903,1,0,0,0,5903,5911, + 5,57,0,0,5904,5905,5,369,0,0,5905,5906,5,333,0,0,5906,5908,3,548, + 274,0,5907,5909,3,634,317,0,5908,5907,1,0,0,0,5908,5909,1,0,0,0, + 5909,5912,1,0,0,0,5910,5912,5,270,0,0,5911,5904,1,0,0,0,5911,5910, + 1,0,0,0,5912,5914,1,0,0,0,5913,5892,1,0,0,0,5913,5914,1,0,0,0,5914, + 5916,1,0,0,0,5915,5917,3,540,270,0,5916,5915,1,0,0,0,5916,5917,1, + 0,0,0,5917,533,1,0,0,0,5918,5919,5,2,0,0,5919,5920,3,536,268,0,5920, + 5921,5,3,0,0,5921,5923,1,0,0,0,5922,5918,1,0,0,0,5922,5923,1,0,0, + 0,5923,5927,1,0,0,0,5924,5925,5,463,0,0,5925,5926,7,77,0,0,5926, + 5928,5,450,0,0,5927,5924,1,0,0,0,5927,5928,1,0,0,0,5928,5931,1,0, + 0,0,5929,5932,3,918,459,0,5930,5932,3,554,277,0,5931,5929,1,0,0, + 0,5931,5930,1,0,0,0,5932,535,1,0,0,0,5933,5938,3,538,269,0,5934, + 5935,5,6,0,0,5935,5937,3,538,269,0,5936,5934,1,0,0,0,5937,5940,1, + 0,0,0,5938,5936,1,0,0,0,5938,5939,1,0,0,0,5939,537,1,0,0,0,5940, + 5938,1,0,0,0,5941,5942,3,806,403,0,5942,5943,3,756,378,0,5943,539, + 1,0,0,0,5944,5945,5,87,0,0,5945,5946,3,758,379,0,5946,541,1,0,0, + 0,5947,5949,3,566,283,0,5948,5947,1,0,0,0,5948,5949,1,0,0,0,5949, + 5950,1,0,0,0,5950,5951,5,182,0,0,5951,5952,5,64,0,0,5952,5955,3, + 626,313,0,5953,5954,5,100,0,0,5954,5956,3,606,303,0,5955,5953,1, + 0,0,0,5955,5956,1,0,0,0,5956,5958,1,0,0,0,5957,5959,3,636,318,0, + 5958,5957,1,0,0,0,5958,5959,1,0,0,0,5959,5961,1,0,0,0,5960,5962, + 3,540,270,0,5961,5960,1,0,0,0,5961,5962,1,0,0,0,5962,543,1,0,0,0, + 5963,5965,5,256,0,0,5964,5966,5,92,0,0,5965,5964,1,0,0,0,5965,5966, + 1,0,0,0,5966,5967,1,0,0,0,5967,5982,3,624,312,0,5968,5979,5,68,0, + 0,5969,5970,7,78,0,0,5970,5980,7,79,0,0,5971,5976,5,334,0,0,5972, + 5973,5,369,0,0,5973,5977,5,201,0,0,5974,5975,5,414,0,0,5975,5977, + 5,201,0,0,5976,5972,1,0,0,0,5976,5974,1,0,0,0,5976,5977,1,0,0,0, + 5977,5980,1,0,0,0,5978,5980,5,201,0,0,5979,5969,1,0,0,0,5979,5971, + 1,0,0,0,5979,5978,1,0,0,0,5980,5981,1,0,0,0,5981,5983,5,263,0,0, + 5982,5968,1,0,0,0,5982,5983,1,0,0,0,5983,5985,1,0,0,0,5984,5986, + 5,272,0,0,5985,5984,1,0,0,0,5985,5986,1,0,0,0,5986,545,1,0,0,0,5987, + 5989,3,566,283,0,5988,5987,1,0,0,0,5988,5989,1,0,0,0,5989,5990,1, + 0,0,0,5990,5991,5,369,0,0,5991,5992,3,626,313,0,5992,5993,5,333, + 0,0,5993,5995,3,548,274,0,5994,5996,3,604,302,0,5995,5994,1,0,0, + 0,5995,5996,1,0,0,0,5996,5998,1,0,0,0,5997,5999,3,636,318,0,5998, + 5997,1,0,0,0,5998,5999,1,0,0,0,5999,6001,1,0,0,0,6000,6002,3,540, + 270,0,6001,6000,1,0,0,0,6001,6002,1,0,0,0,6002,547,1,0,0,0,6003, + 6008,3,550,275,0,6004,6005,5,6,0,0,6005,6007,3,550,275,0,6006,6004, + 1,0,0,0,6007,6010,1,0,0,0,6008,6006,1,0,0,0,6008,6009,1,0,0,0,6009, + 549,1,0,0,0,6010,6008,1,0,0,0,6011,6012,3,538,269,0,6012,6013,5, + 10,0,0,6013,6014,3,670,335,0,6014,6030,1,0,0,0,6015,6016,5,2,0,0, + 6016,6017,3,536,268,0,6017,6018,5,3,0,0,6018,6027,5,10,0,0,6019, + 6021,5,414,0,0,6020,6019,1,0,0,0,6020,6021,1,0,0,0,6021,6022,1,0, + 0,0,6022,6028,3,670,335,0,6023,6024,5,2,0,0,6024,6025,3,560,280, + 0,6025,6026,5,3,0,0,6026,6028,1,0,0,0,6027,6020,1,0,0,0,6027,6023, + 1,0,0,0,6028,6030,1,0,0,0,6029,6011,1,0,0,0,6029,6015,1,0,0,0,6030, + 551,1,0,0,0,6031,6032,5,178,0,0,6032,6041,3,826,413,0,6033,6035, + 5,269,0,0,6034,6033,1,0,0,0,6034,6035,1,0,0,0,6035,6036,1,0,0,0, + 6036,6040,5,324,0,0,6037,6040,5,107,0,0,6038,6040,5,240,0,0,6039, + 6034,1,0,0,0,6039,6037,1,0,0,0,6039,6038,1,0,0,0,6040,6043,1,0,0, + 0,6041,6039,1,0,0,0,6041,6042,1,0,0,0,6042,6044,1,0,0,0,6043,6041, + 1,0,0,0,6044,6047,5,172,0,0,6045,6046,7,27,0,0,6046,6048,5,217,0, + 0,6047,6045,1,0,0,0,6047,6048,1,0,0,0,6048,6049,1,0,0,0,6049,6050, + 5,62,0,0,6050,6051,3,554,277,0,6051,553,1,0,0,0,6052,6055,3,558, + 279,0,6053,6055,3,556,278,0,6054,6052,1,0,0,0,6054,6053,1,0,0,0, + 6055,555,1,0,0,0,6056,6059,5,2,0,0,6057,6060,3,558,279,0,6058,6060, + 3,556,278,0,6059,6057,1,0,0,0,6059,6058,1,0,0,0,6060,6061,1,0,0, + 0,6061,6062,5,3,0,0,6062,557,1,0,0,0,6063,6065,3,566,283,0,6064, + 6063,1,0,0,0,6064,6065,1,0,0,0,6065,6066,1,0,0,0,6066,6068,3,560, + 280,0,6067,6069,3,580,290,0,6068,6067,1,0,0,0,6068,6069,1,0,0,0, + 6069,6078,1,0,0,0,6070,6072,3,600,300,0,6071,6073,3,584,292,0,6072, + 6071,1,0,0,0,6072,6073,1,0,0,0,6073,6079,1,0,0,0,6074,6076,3,584, + 292,0,6075,6077,3,600,300,0,6076,6075,1,0,0,0,6076,6077,1,0,0,0, + 6077,6079,1,0,0,0,6078,6070,1,0,0,0,6078,6074,1,0,0,0,6078,6079, + 1,0,0,0,6079,559,1,0,0,0,6080,6083,3,562,281,0,6081,6083,3,556,278, + 0,6082,6080,1,0,0,0,6082,6081,1,0,0,0,6083,561,1,0,0,0,6084,6094, + 5,88,0,0,6085,6087,5,30,0,0,6086,6085,1,0,0,0,6086,6087,1,0,0,0, + 6087,6089,1,0,0,0,6088,6090,3,574,287,0,6089,6088,1,0,0,0,6089,6090, + 1,0,0,0,6090,6095,1,0,0,0,6091,6093,3,578,289,0,6092,6091,1,0,0, + 0,6092,6093,1,0,0,0,6093,6095,1,0,0,0,6094,6086,1,0,0,0,6094,6092, + 1,0,0,0,6095,6096,1,0,0,0,6096,6107,3,938,469,0,6097,6107,3,602, + 301,0,6098,6099,5,92,0,0,6099,6107,3,620,310,0,6100,6101,3,556,278, + 0,6101,6104,3,564,282,0,6102,6105,3,562,281,0,6103,6105,3,556,278, + 0,6104,6102,1,0,0,0,6104,6103,1,0,0,0,6105,6107,1,0,0,0,6106,6084, + 1,0,0,0,6106,6097,1,0,0,0,6106,6098,1,0,0,0,6106,6100,1,0,0,0,6107, + 6115,1,0,0,0,6108,6111,3,564,282,0,6109,6112,3,562,281,0,6110,6112, + 3,556,278,0,6111,6109,1,0,0,0,6111,6110,1,0,0,0,6112,6114,1,0,0, + 0,6113,6108,1,0,0,0,6114,6117,1,0,0,0,6115,6113,1,0,0,0,6115,6116, + 1,0,0,0,6116,563,1,0,0,0,6117,6115,1,0,0,0,6118,6120,7,80,0,0,6119, + 6121,7,81,0,0,6120,6119,1,0,0,0,6120,6121,1,0,0,0,6121,565,1,0,0, + 0,6122,6124,5,105,0,0,6123,6125,5,303,0,0,6124,6123,1,0,0,0,6124, + 6125,1,0,0,0,6125,6126,1,0,0,0,6126,6131,3,568,284,0,6127,6128,5, + 6,0,0,6128,6130,3,568,284,0,6129,6127,1,0,0,0,6130,6133,1,0,0,0, + 6131,6129,1,0,0,0,6131,6132,1,0,0,0,6132,567,1,0,0,0,6133,6131,1, + 0,0,0,6134,6136,3,826,413,0,6135,6137,3,138,69,0,6136,6135,1,0,0, + 0,6136,6137,1,0,0,0,6137,6138,1,0,0,0,6138,6143,5,36,0,0,6139,6141, + 5,77,0,0,6140,6139,1,0,0,0,6140,6141,1,0,0,0,6141,6142,1,0,0,0,6142, + 6144,5,259,0,0,6143,6140,1,0,0,0,6143,6144,1,0,0,0,6144,6145,1,0, + 0,0,6145,6146,5,2,0,0,6146,6147,3,524,262,0,6147,6149,5,3,0,0,6148, + 6150,3,570,285,0,6149,6148,1,0,0,0,6149,6150,1,0,0,0,6150,6152,1, + 0,0,0,6151,6153,3,572,286,0,6152,6151,1,0,0,0,6152,6153,1,0,0,0, + 6153,569,1,0,0,0,6154,6155,5,325,0,0,6155,6156,7,82,0,0,6156,6157, + 5,207,0,0,6157,6158,5,147,0,0,6158,6159,3,142,71,0,6159,6160,5,333, + 0,0,6160,6161,3,806,403,0,6161,571,1,0,0,0,6162,6163,5,173,0,0,6163, + 6164,3,142,71,0,6164,6165,5,333,0,0,6165,6171,3,806,403,0,6166,6167, + 5,94,0,0,6167,6168,3,826,413,0,6168,6169,5,53,0,0,6169,6170,3,826, + 413,0,6170,6172,1,0,0,0,6171,6166,1,0,0,0,6171,6172,1,0,0,0,6172, + 6173,1,0,0,0,6173,6174,5,100,0,0,6174,6175,3,806,403,0,6175,573, + 1,0,0,0,6176,6182,5,71,0,0,6177,6179,5,346,0,0,6178,6177,1,0,0,0, + 6178,6179,1,0,0,0,6179,6180,1,0,0,0,6180,6183,3,576,288,0,6181,6183, + 3,728,364,0,6182,6178,1,0,0,0,6182,6181,1,0,0,0,6183,575,1,0,0,0, + 6184,6186,7,21,0,0,6185,6184,1,0,0,0,6185,6186,1,0,0,0,6186,6187, + 1,0,0,0,6187,6189,7,22,0,0,6188,6190,5,92,0,0,6189,6188,1,0,0,0, + 6189,6190,1,0,0,0,6190,6191,1,0,0,0,6191,6200,3,776,388,0,6192,6194, + 5,367,0,0,6193,6192,1,0,0,0,6193,6194,1,0,0,0,6194,6196,1,0,0,0, + 6195,6197,5,92,0,0,6196,6195,1,0,0,0,6196,6197,1,0,0,0,6197,6198, + 1,0,0,0,6198,6200,3,776,388,0,6199,6185,1,0,0,0,6199,6193,1,0,0, + 0,6200,577,1,0,0,0,6201,6204,5,56,0,0,6202,6203,5,80,0,0,6203,6205, + 3,528,264,0,6204,6202,1,0,0,0,6204,6205,1,0,0,0,6205,579,1,0,0,0, + 6206,6207,5,83,0,0,6207,6208,5,147,0,0,6208,6213,3,582,291,0,6209, + 6210,5,6,0,0,6210,6212,3,582,291,0,6211,6209,1,0,0,0,6212,6215,1, + 0,0,0,6213,6211,1,0,0,0,6213,6214,1,0,0,0,6214,581,1,0,0,0,6215, + 6213,1,0,0,0,6216,6220,3,736,368,0,6217,6218,5,100,0,0,6218,6221, + 3,724,362,0,6219,6221,7,56,0,0,6220,6217,1,0,0,0,6220,6219,1,0,0, + 0,6220,6221,1,0,0,0,6221,6224,1,0,0,0,6222,6223,5,273,0,0,6223,6225, + 7,57,0,0,6224,6222,1,0,0,0,6224,6225,1,0,0,0,6225,583,1,0,0,0,6226, + 6228,3,590,295,0,6227,6229,3,588,294,0,6228,6227,1,0,0,0,6228,6229, + 1,0,0,0,6229,6238,1,0,0,0,6230,6233,3,586,293,0,6231,6233,3,588, + 294,0,6232,6230,1,0,0,0,6232,6231,1,0,0,0,6233,6235,1,0,0,0,6234, + 6236,3,590,295,0,6235,6234,1,0,0,0,6235,6236,1,0,0,0,6236,6238,1, + 0,0,0,6237,6226,1,0,0,0,6237,6232,1,0,0,0,6238,585,1,0,0,0,6239, + 6242,5,74,0,0,6240,6243,3,670,335,0,6241,6243,5,30,0,0,6242,6240, + 1,0,0,0,6242,6241,1,0,0,0,6243,6246,1,0,0,0,6244,6245,5,6,0,0,6245, + 6247,3,670,335,0,6246,6244,1,0,0,0,6246,6247,1,0,0,0,6247,587,1, + 0,0,0,6248,6249,5,61,0,0,6249,6251,7,83,0,0,6250,6252,3,592,296, + 0,6251,6250,1,0,0,0,6251,6252,1,0,0,0,6252,6253,1,0,0,0,6253,6257, + 7,84,0,0,6254,6258,5,81,0,0,6255,6256,5,105,0,0,6256,6258,5,467, + 0,0,6257,6254,1,0,0,0,6257,6255,1,0,0,0,6258,589,1,0,0,0,6259,6264, + 5,79,0,0,6260,6261,3,592,296,0,6261,6262,7,84,0,0,6262,6265,1,0, + 0,0,6263,6265,3,670,335,0,6264,6260,1,0,0,0,6264,6263,1,0,0,0,6265, + 591,1,0,0,0,6266,6267,7,30,0,0,6267,6270,7,85,0,0,6268,6270,3,678, + 339,0,6269,6266,1,0,0,0,6269,6268,1,0,0,0,6270,593,1,0,0,0,6271, + 6272,5,66,0,0,6272,6274,5,147,0,0,6273,6275,7,81,0,0,6274,6273,1, + 0,0,0,6274,6275,1,0,0,0,6275,6276,1,0,0,0,6276,6277,3,596,298,0, + 6277,595,1,0,0,0,6278,6283,3,598,299,0,6279,6280,5,6,0,0,6280,6282, + 3,598,299,0,6281,6279,1,0,0,0,6282,6285,1,0,0,0,6283,6281,1,0,0, + 0,6283,6284,1,0,0,0,6284,597,1,0,0,0,6285,6283,1,0,0,0,6286,6310, + 3,736,368,0,6287,6288,5,2,0,0,6288,6310,5,3,0,0,6289,6291,7,86,0, + 0,6290,6289,1,0,0,0,6290,6291,1,0,0,0,6291,6292,1,0,0,0,6292,6293, + 5,2,0,0,6293,6298,3,736,368,0,6294,6295,5,6,0,0,6295,6297,3,736, + 368,0,6296,6294,1,0,0,0,6297,6300,1,0,0,0,6298,6296,1,0,0,0,6298, + 6299,1,0,0,0,6299,6301,1,0,0,0,6300,6298,1,0,0,0,6301,6302,5,3,0, + 0,6302,6310,1,0,0,0,6303,6304,5,470,0,0,6304,6305,5,471,0,0,6305, + 6306,5,2,0,0,6306,6307,3,596,298,0,6307,6308,5,3,0,0,6308,6310,1, + 0,0,0,6309,6286,1,0,0,0,6309,6287,1,0,0,0,6309,6290,1,0,0,0,6309, + 6303,1,0,0,0,6310,599,1,0,0,0,6311,6321,5,62,0,0,6312,6313,5,269, + 0,0,6313,6315,5,245,0,0,6314,6312,1,0,0,0,6314,6315,1,0,0,0,6315, + 6316,1,0,0,0,6316,6322,5,369,0,0,6317,6319,5,245,0,0,6318,6317,1, + 0,0,0,6318,6319,1,0,0,0,6319,6320,1,0,0,0,6320,6322,5,334,0,0,6321, + 6314,1,0,0,0,6321,6318,1,0,0,0,6322,6325,1,0,0,0,6323,6324,5,275, + 0,0,6324,6326,3,764,382,0,6325,6323,1,0,0,0,6325,6326,1,0,0,0,6326, + 6330,1,0,0,0,6327,6331,5,272,0,0,6328,6329,5,465,0,0,6329,6331,5, + 466,0,0,6330,6327,1,0,0,0,6330,6328,1,0,0,0,6330,6331,1,0,0,0,6331, + 6333,1,0,0,0,6332,6311,1,0,0,0,6333,6334,1,0,0,0,6334,6332,1,0,0, + 0,6334,6335,1,0,0,0,6335,6340,1,0,0,0,6336,6337,5,62,0,0,6337,6338, + 5,300,0,0,6338,6340,5,81,0,0,6339,6332,1,0,0,0,6339,6336,1,0,0,0, + 6340,601,1,0,0,0,6341,6342,5,422,0,0,6342,6347,3,528,264,0,6343, + 6344,5,6,0,0,6344,6346,3,528,264,0,6345,6343,1,0,0,0,6346,6349,1, + 0,0,0,6347,6345,1,0,0,0,6347,6348,1,0,0,0,6348,603,1,0,0,0,6349, + 6347,1,0,0,0,6350,6351,5,64,0,0,6351,6352,3,606,303,0,6352,605,1, + 0,0,0,6353,6358,3,608,304,0,6354,6355,5,6,0,0,6355,6357,3,608,304, + 0,6356,6354,1,0,0,0,6357,6360,1,0,0,0,6358,6356,1,0,0,0,6358,6359, + 1,0,0,0,6359,607,1,0,0,0,6360,6358,1,0,0,0,6361,6376,3,620,310,0, + 6362,6364,5,81,0,0,6363,6362,1,0,0,0,6363,6364,1,0,0,0,6364,6365, + 1,0,0,0,6365,6367,3,782,391,0,6366,6368,5,9,0,0,6367,6366,1,0,0, + 0,6367,6368,1,0,0,0,6368,6370,1,0,0,0,6369,6371,3,142,71,0,6370, + 6369,1,0,0,0,6370,6371,1,0,0,0,6371,6373,1,0,0,0,6372,6374,3,634, + 317,0,6373,6372,1,0,0,0,6373,6374,1,0,0,0,6374,6376,1,0,0,0,6375, + 6361,1,0,0,0,6375,6363,1,0,0,0,6376,6378,1,0,0,0,6377,6379,3,612, + 306,0,6378,6377,1,0,0,0,6378,6379,1,0,0,0,6379,6381,1,0,0,0,6380, + 6382,3,628,314,0,6381,6380,1,0,0,0,6381,6382,1,0,0,0,6382,6412,1, + 0,0,0,6383,6385,5,72,0,0,6384,6383,1,0,0,0,6384,6385,1,0,0,0,6385, + 6386,1,0,0,0,6386,6412,3,610,305,0,6387,6388,5,2,0,0,6388,6405,3, + 608,304,0,6389,6390,5,110,0,0,6390,6391,5,118,0,0,6391,6406,3,608, + 304,0,6392,6394,5,121,0,0,6393,6395,3,616,308,0,6394,6393,1,0,0, + 0,6394,6395,1,0,0,0,6395,6396,1,0,0,0,6396,6397,5,118,0,0,6397,6406, + 3,608,304,0,6398,6400,3,616,308,0,6399,6398,1,0,0,0,6399,6400,1, + 0,0,0,6400,6401,1,0,0,0,6401,6402,5,118,0,0,6402,6403,3,608,304, + 0,6403,6404,3,618,309,0,6404,6406,1,0,0,0,6405,6389,1,0,0,0,6405, + 6392,1,0,0,0,6405,6399,1,0,0,0,6405,6406,1,0,0,0,6406,6407,1,0,0, + 0,6407,6409,5,3,0,0,6408,6410,3,612,306,0,6409,6408,1,0,0,0,6409, + 6410,1,0,0,0,6410,6412,1,0,0,0,6411,6375,1,0,0,0,6411,6384,1,0,0, + 0,6411,6387,1,0,0,0,6412,6431,1,0,0,0,6413,6414,5,110,0,0,6414,6415, + 5,118,0,0,6415,6430,3,608,304,0,6416,6418,5,121,0,0,6417,6419,3, + 616,308,0,6418,6417,1,0,0,0,6418,6419,1,0,0,0,6419,6420,1,0,0,0, + 6420,6421,5,118,0,0,6421,6430,3,608,304,0,6422,6424,3,616,308,0, + 6423,6422,1,0,0,0,6423,6424,1,0,0,0,6424,6425,1,0,0,0,6425,6426, + 5,118,0,0,6426,6427,3,608,304,0,6427,6428,3,618,309,0,6428,6430, + 1,0,0,0,6429,6413,1,0,0,0,6429,6416,1,0,0,0,6429,6423,1,0,0,0,6430, + 6433,1,0,0,0,6431,6429,1,0,0,0,6431,6432,1,0,0,0,6432,609,1,0,0, + 0,6433,6431,1,0,0,0,6434,6436,3,642,321,0,6435,6437,3,612,306,0, + 6436,6435,1,0,0,0,6436,6437,1,0,0,0,6437,6447,1,0,0,0,6438,6440, + 3,630,315,0,6439,6441,3,614,307,0,6440,6439,1,0,0,0,6440,6441,1, + 0,0,0,6441,6447,1,0,0,0,6442,6444,3,556,278,0,6443,6445,3,612,306, + 0,6444,6443,1,0,0,0,6444,6445,1,0,0,0,6445,6447,1,0,0,0,6446,6434, + 1,0,0,0,6446,6438,1,0,0,0,6446,6442,1,0,0,0,6447,611,1,0,0,0,6448, + 6450,5,36,0,0,6449,6448,1,0,0,0,6449,6450,1,0,0,0,6450,6451,1,0, + 0,0,6451,6456,3,826,413,0,6452,6453,5,2,0,0,6453,6454,3,788,394, + 0,6454,6455,5,3,0,0,6455,6457,1,0,0,0,6456,6452,1,0,0,0,6456,6457, + 1,0,0,0,6457,613,1,0,0,0,6458,6471,3,612,306,0,6459,6461,5,36,0, + 0,6460,6462,3,826,413,0,6461,6460,1,0,0,0,6461,6462,1,0,0,0,6462, + 6465,1,0,0,0,6463,6465,3,826,413,0,6464,6459,1,0,0,0,6464,6463,1, + 0,0,0,6465,6466,1,0,0,0,6466,6467,5,2,0,0,6467,6468,3,638,319,0, + 6468,6469,5,3,0,0,6469,6471,1,0,0,0,6470,6458,1,0,0,0,6470,6464, + 1,0,0,0,6471,615,1,0,0,0,6472,6474,7,87,0,0,6473,6475,5,123,0,0, + 6474,6473,1,0,0,0,6474,6475,1,0,0,0,6475,617,1,0,0,0,6476,6477,5, + 100,0,0,6477,6481,3,138,69,0,6478,6479,5,80,0,0,6479,6481,3,670, + 335,0,6480,6476,1,0,0,0,6480,6478,1,0,0,0,6481,619,1,0,0,0,6482, + 6498,3,316,158,0,6483,6489,5,81,0,0,6484,6490,3,778,389,0,6485,6486, + 5,2,0,0,6486,6487,3,778,389,0,6487,6488,5,3,0,0,6488,6490,1,0,0, + 0,6489,6484,1,0,0,0,6489,6485,1,0,0,0,6490,6498,1,0,0,0,6491,6492, + 5,68,0,0,6492,6495,5,323,0,0,6493,6496,3,794,397,0,6494,6496,5,111, + 0,0,6495,6493,1,0,0,0,6495,6494,1,0,0,0,6496,6498,1,0,0,0,6497,6482, + 1,0,0,0,6497,6483,1,0,0,0,6497,6491,1,0,0,0,6498,621,1,0,0,0,6499, + 6500,5,92,0,0,6500,6502,3,316,158,0,6501,6503,3,138,69,0,6502,6501, + 1,0,0,0,6502,6503,1,0,0,0,6503,6505,1,0,0,0,6504,6506,3,634,317, + 0,6505,6504,1,0,0,0,6505,6506,1,0,0,0,6506,6524,1,0,0,0,6507,6508, + 5,92,0,0,6508,6514,5,81,0,0,6509,6515,3,778,389,0,6510,6511,5,2, + 0,0,6511,6512,3,778,389,0,6512,6513,5,3,0,0,6513,6515,1,0,0,0,6514, + 6509,1,0,0,0,6514,6510,1,0,0,0,6515,6524,1,0,0,0,6516,6517,5,350, + 0,0,6517,6518,5,68,0,0,6518,6521,5,323,0,0,6519,6522,3,794,397,0, + 6520,6522,5,111,0,0,6521,6519,1,0,0,0,6521,6520,1,0,0,0,6522,6524, + 1,0,0,0,6523,6499,1,0,0,0,6523,6507,1,0,0,0,6523,6516,1,0,0,0,6524, + 623,1,0,0,0,6525,6530,3,620,310,0,6526,6527,5,6,0,0,6527,6529,3, + 620,310,0,6528,6526,1,0,0,0,6529,6532,1,0,0,0,6530,6528,1,0,0,0, + 6530,6531,1,0,0,0,6531,625,1,0,0,0,6532,6530,1,0,0,0,6533,6538,3, + 620,310,0,6534,6536,5,36,0,0,6535,6534,1,0,0,0,6535,6536,1,0,0,0, + 6536,6537,1,0,0,0,6537,6539,3,826,413,0,6538,6535,1,0,0,0,6538,6539, + 1,0,0,0,6539,627,1,0,0,0,6540,6541,5,472,0,0,6541,6542,3,814,407, + 0,6542,6548,3,528,264,0,6543,6544,5,310,0,0,6544,6545,5,2,0,0,6545, + 6546,3,670,335,0,6546,6547,5,3,0,0,6547,6549,1,0,0,0,6548,6543,1, + 0,0,0,6548,6549,1,0,0,0,6549,629,1,0,0,0,6550,6565,3,684,342,0,6551, + 6552,5,320,0,0,6552,6553,5,64,0,0,6553,6554,5,2,0,0,6554,6559,3, + 632,316,0,6555,6556,5,6,0,0,6556,6558,3,632,316,0,6557,6555,1,0, + 0,0,6558,6561,1,0,0,0,6559,6557,1,0,0,0,6559,6560,1,0,0,0,6560,6562, + 1,0,0,0,6561,6559,1,0,0,0,6562,6563,5,3,0,0,6563,6565,1,0,0,0,6564, + 6550,1,0,0,0,6564,6551,1,0,0,0,6565,6568,1,0,0,0,6566,6567,5,105, + 0,0,6567,6569,5,473,0,0,6568,6566,1,0,0,0,6568,6569,1,0,0,0,6569, + 631,1,0,0,0,6570,6576,3,684,342,0,6571,6572,5,36,0,0,6572,6573,5, + 2,0,0,6573,6574,3,638,319,0,6574,6575,5,3,0,0,6575,6577,1,0,0,0, + 6576,6571,1,0,0,0,6576,6577,1,0,0,0,6577,633,1,0,0,0,6578,6579,5, + 103,0,0,6579,6580,3,736,368,0,6580,635,1,0,0,0,6581,6586,5,103,0, + 0,6582,6583,5,434,0,0,6583,6584,5,275,0,0,6584,6587,3,826,413,0, + 6585,6587,3,670,335,0,6586,6582,1,0,0,0,6586,6585,1,0,0,0,6587,637, + 1,0,0,0,6588,6593,3,640,320,0,6589,6590,5,6,0,0,6590,6592,3,640, + 320,0,6591,6589,1,0,0,0,6592,6595,1,0,0,0,6593,6591,1,0,0,0,6593, + 6594,1,0,0,0,6594,639,1,0,0,0,6595,6593,1,0,0,0,6596,6597,3,826, + 413,0,6597,6599,3,648,324,0,6598,6600,3,90,45,0,6599,6598,1,0,0, + 0,6599,6600,1,0,0,0,6600,641,1,0,0,0,6601,6602,5,474,0,0,6602,6616, + 5,2,0,0,6603,6604,5,476,0,0,6604,6605,5,2,0,0,6605,6610,3,646,323, + 0,6606,6607,5,6,0,0,6607,6609,3,646,323,0,6608,6606,1,0,0,0,6609, + 6612,1,0,0,0,6610,6608,1,0,0,0,6610,6611,1,0,0,0,6611,6613,1,0,0, + 0,6612,6610,1,0,0,0,6613,6614,5,3,0,0,6614,6615,5,6,0,0,6615,6617, + 1,0,0,0,6616,6603,1,0,0,0,6616,6617,1,0,0,0,6617,6618,1,0,0,0,6618, + 6619,3,678,339,0,6619,6620,3,694,347,0,6620,6621,5,475,0,0,6621, + 6626,3,644,322,0,6622,6623,5,6,0,0,6623,6625,3,644,322,0,6624,6622, + 1,0,0,0,6625,6628,1,0,0,0,6626,6624,1,0,0,0,6626,6627,1,0,0,0,6627, + 6629,1,0,0,0,6628,6626,1,0,0,0,6629,6630,5,3,0,0,6630,643,1,0,0, + 0,6631,6650,3,826,413,0,6632,6646,3,648,324,0,6633,6636,5,53,0,0, + 6634,6636,3,834,417,0,6635,6633,1,0,0,0,6635,6634,1,0,0,0,6636,6637, + 1,0,0,0,6637,6643,3,670,335,0,6638,6640,5,77,0,0,6639,6638,1,0,0, + 0,6639,6640,1,0,0,0,6640,6641,1,0,0,0,6641,6643,5,78,0,0,6642,6635, + 1,0,0,0,6642,6639,1,0,0,0,6643,6644,1,0,0,0,6644,6642,1,0,0,0,6644, + 6645,1,0,0,0,6645,6647,1,0,0,0,6646,6642,1,0,0,0,6646,6647,1,0,0, + 0,6647,6651,1,0,0,0,6648,6649,5,62,0,0,6649,6651,5,473,0,0,6650, + 6632,1,0,0,0,6650,6648,1,0,0,0,6651,645,1,0,0,0,6652,6653,3,678, + 339,0,6653,6654,5,36,0,0,6654,6655,3,832,416,0,6655,6659,1,0,0,0, + 6656,6657,5,53,0,0,6657,6659,3,678,339,0,6658,6652,1,0,0,0,6658, + 6656,1,0,0,0,6659,647,1,0,0,0,6660,6662,5,415,0,0,6661,6660,1,0, + 0,0,6661,6662,1,0,0,0,6662,6663,1,0,0,0,6663,6680,3,650,325,0,6664, + 6666,5,4,0,0,6665,6667,5,574,0,0,6666,6665,1,0,0,0,6666,6667,1,0, + 0,0,6667,6668,1,0,0,0,6668,6670,5,5,0,0,6669,6664,1,0,0,0,6670,6673, + 1,0,0,0,6671,6669,1,0,0,0,6671,6672,1,0,0,0,6672,6681,1,0,0,0,6673, + 6671,1,0,0,0,6674,6678,5,35,0,0,6675,6676,5,4,0,0,6676,6677,5,574, + 0,0,6677,6679,5,5,0,0,6678,6675,1,0,0,0,6678,6679,1,0,0,0,6679,6681, + 1,0,0,0,6680,6671,1,0,0,0,6680,6674,1,0,0,0,6681,6687,1,0,0,0,6682, + 6683,3,784,392,0,6683,6684,5,27,0,0,6684,6685,7,88,0,0,6685,6687, + 1,0,0,0,6686,6661,1,0,0,0,6686,6682,1,0,0,0,6687,649,1,0,0,0,6688, + 6690,3,828,414,0,6689,6691,3,312,156,0,6690,6689,1,0,0,0,6690,6691, + 1,0,0,0,6691,6693,1,0,0,0,6692,6694,3,528,264,0,6693,6692,1,0,0, + 0,6693,6694,1,0,0,0,6694,6704,1,0,0,0,6695,6704,3,652,326,0,6696, + 6701,5,403,0,0,6697,6699,3,664,332,0,6698,6697,1,0,0,0,6698,6699, + 1,0,0,0,6699,6702,1,0,0,0,6700,6702,3,656,328,0,6701,6698,1,0,0, + 0,6701,6700,1,0,0,0,6702,6704,1,0,0,0,6703,6688,1,0,0,0,6703,6695, + 1,0,0,0,6703,6696,1,0,0,0,6704,651,1,0,0,0,6705,6710,3,654,327,0, + 6706,6710,3,658,329,0,6707,6710,3,660,330,0,6708,6710,3,662,331, + 0,6709,6705,1,0,0,0,6709,6706,1,0,0,0,6709,6707,1,0,0,0,6709,6708, + 1,0,0,0,6710,653,1,0,0,0,6711,6728,5,401,0,0,6712,6728,5,402,0,0, + 6713,6728,5,416,0,0,6714,6728,5,388,0,0,6715,6728,5,413,0,0,6716, + 6718,5,398,0,0,6717,6719,3,656,328,0,6718,6717,1,0,0,0,6718,6719, + 1,0,0,0,6719,6728,1,0,0,0,6720,6721,5,190,0,0,6721,6728,5,412,0, + 0,6722,6724,7,89,0,0,6723,6725,3,528,264,0,6724,6723,1,0,0,0,6724, + 6725,1,0,0,0,6725,6728,1,0,0,0,6726,6728,5,390,0,0,6727,6711,1,0, + 0,0,6727,6712,1,0,0,0,6727,6713,1,0,0,0,6727,6714,1,0,0,0,6727,6715, + 1,0,0,0,6727,6716,1,0,0,0,6727,6720,1,0,0,0,6727,6722,1,0,0,0,6727, + 6726,1,0,0,0,6728,655,1,0,0,0,6729,6730,5,2,0,0,6730,6731,5,574, + 0,0,6731,6732,5,3,0,0,6732,657,1,0,0,0,6733,6735,5,389,0,0,6734, + 6736,5,374,0,0,6735,6734,1,0,0,0,6735,6736,1,0,0,0,6736,6738,1,0, + 0,0,6737,6739,3,528,264,0,6738,6737,1,0,0,0,6738,6739,1,0,0,0,6739, + 659,1,0,0,0,6740,6742,7,90,0,0,6741,6743,5,374,0,0,6742,6741,1,0, + 0,0,6742,6743,1,0,0,0,6743,6751,1,0,0,0,6744,6751,5,423,0,0,6745, + 6746,5,405,0,0,6746,6748,7,91,0,0,6747,6749,5,374,0,0,6748,6747, + 1,0,0,0,6748,6749,1,0,0,0,6749,6751,1,0,0,0,6750,6740,1,0,0,0,6750, + 6744,1,0,0,0,6750,6745,1,0,0,0,6751,6753,1,0,0,0,6752,6754,3,656, + 328,0,6753,6752,1,0,0,0,6753,6754,1,0,0,0,6754,661,1,0,0,0,6755, + 6757,7,92,0,0,6756,6758,3,656,328,0,6757,6756,1,0,0,0,6757,6758, + 1,0,0,0,6758,6762,1,0,0,0,6759,6760,7,27,0,0,6760,6761,5,418,0,0, + 6761,6763,5,386,0,0,6762,6759,1,0,0,0,6762,6763,1,0,0,0,6763,663, + 1,0,0,0,6764,6794,5,264,0,0,6765,6794,3,666,333,0,6766,6769,5,384, + 0,0,6767,6768,5,94,0,0,6768,6770,5,264,0,0,6769,6767,1,0,0,0,6769, + 6770,1,0,0,0,6770,6794,1,0,0,0,6771,6778,5,176,0,0,6772,6776,5,94, + 0,0,6773,6777,5,218,0,0,6774,6777,5,261,0,0,6775,6777,3,666,333, + 0,6776,6773,1,0,0,0,6776,6774,1,0,0,0,6776,6775,1,0,0,0,6777,6779, + 1,0,0,0,6778,6772,1,0,0,0,6778,6779,1,0,0,0,6779,6794,1,0,0,0,6780, + 6786,5,218,0,0,6781,6784,5,94,0,0,6782,6785,5,261,0,0,6783,6785, + 3,666,333,0,6784,6782,1,0,0,0,6784,6783,1,0,0,0,6785,6787,1,0,0, + 0,6786,6781,1,0,0,0,6786,6787,1,0,0,0,6787,6794,1,0,0,0,6788,6791, + 5,261,0,0,6789,6790,5,94,0,0,6790,6792,3,666,333,0,6791,6789,1,0, + 0,0,6791,6792,1,0,0,0,6792,6794,1,0,0,0,6793,6764,1,0,0,0,6793,6765, + 1,0,0,0,6793,6766,1,0,0,0,6793,6771,1,0,0,0,6793,6780,1,0,0,0,6793, + 6788,1,0,0,0,6794,665,1,0,0,0,6795,6797,5,326,0,0,6796,6798,3,656, + 328,0,6797,6796,1,0,0,0,6797,6798,1,0,0,0,6798,667,1,0,0,0,6799, + 6800,7,93,0,0,6800,669,1,0,0,0,6801,6802,3,672,336,0,6802,671,1, + 0,0,0,6803,6804,6,336,-1,0,6804,6806,3,676,338,0,6805,6807,3,674, + 337,0,6806,6805,1,0,0,0,6806,6807,1,0,0,0,6807,6811,1,0,0,0,6808, + 6809,5,77,0,0,6809,6811,3,672,336,3,6810,6803,1,0,0,0,6810,6808, + 1,0,0,0,6811,6820,1,0,0,0,6812,6813,10,2,0,0,6813,6814,5,33,0,0, + 6814,6819,3,672,336,3,6815,6816,10,1,0,0,6816,6817,5,82,0,0,6817, + 6819,3,672,336,2,6818,6812,1,0,0,0,6818,6815,1,0,0,0,6819,6822,1, + 0,0,0,6820,6818,1,0,0,0,6820,6821,1,0,0,0,6821,673,1,0,0,0,6822, + 6820,1,0,0,0,6823,6824,3,668,334,0,6824,6825,3,676,338,0,6825,6895, + 1,0,0,0,6826,6827,3,668,334,0,6827,6828,3,726,363,0,6828,6834,3, + 716,358,0,6829,6835,3,556,278,0,6830,6831,5,2,0,0,6831,6832,3,670, + 335,0,6832,6833,5,3,0,0,6833,6835,1,0,0,0,6834,6829,1,0,0,0,6834, + 6830,1,0,0,0,6835,6895,1,0,0,0,6836,6838,5,77,0,0,6837,6836,1,0, + 0,0,6837,6838,1,0,0,0,6838,6839,1,0,0,0,6839,6840,5,387,0,0,6840, + 6841,3,676,338,0,6841,6842,5,33,0,0,6842,6843,3,676,338,0,6843,6895, + 1,0,0,0,6844,6846,5,77,0,0,6845,6844,1,0,0,0,6845,6846,1,0,0,0,6846, + 6847,1,0,0,0,6847,6848,5,68,0,0,6848,6849,5,2,0,0,6849,6854,3,670, + 335,0,6850,6851,5,6,0,0,6851,6853,3,670,335,0,6852,6850,1,0,0,0, + 6853,6856,1,0,0,0,6854,6852,1,0,0,0,6854,6855,1,0,0,0,6855,6857, + 1,0,0,0,6856,6854,1,0,0,0,6857,6858,5,3,0,0,6858,6895,1,0,0,0,6859, + 6861,5,77,0,0,6860,6859,1,0,0,0,6860,6861,1,0,0,0,6861,6862,1,0, + 0,0,6862,6863,5,68,0,0,6863,6895,3,556,278,0,6864,6866,5,77,0,0, + 6865,6864,1,0,0,0,6865,6866,1,0,0,0,6866,6875,1,0,0,0,6867,6876, + 5,120,0,0,6868,6876,5,114,0,0,6869,6870,5,127,0,0,6870,6876,5,94, + 0,0,6871,6873,5,387,0,0,6872,6874,5,91,0,0,6873,6872,1,0,0,0,6873, + 6874,1,0,0,0,6874,6876,1,0,0,0,6875,6867,1,0,0,0,6875,6868,1,0,0, + 0,6875,6869,1,0,0,0,6875,6871,1,0,0,0,6876,6877,1,0,0,0,6877,6880, + 3,676,338,0,6878,6879,5,197,0,0,6879,6881,3,676,338,0,6880,6878, + 1,0,0,0,6880,6881,1,0,0,0,6881,6895,1,0,0,0,6882,6884,5,116,0,0, + 6883,6885,5,77,0,0,6884,6883,1,0,0,0,6884,6885,1,0,0,0,6885,6886, + 1,0,0,0,6886,6895,5,78,0,0,6887,6889,5,116,0,0,6888,6890,5,77,0, + 0,6889,6888,1,0,0,0,6889,6890,1,0,0,0,6890,6891,1,0,0,0,6891,6892, + 5,56,0,0,6892,6893,5,64,0,0,6893,6895,3,676,338,0,6894,6823,1,0, + 0,0,6894,6826,1,0,0,0,6894,6837,1,0,0,0,6894,6845,1,0,0,0,6894,6860, + 1,0,0,0,6894,6865,1,0,0,0,6894,6882,1,0,0,0,6894,6887,1,0,0,0,6895, + 675,1,0,0,0,6896,6897,6,338,-1,0,6897,6901,3,678,339,0,6898,6899, + 7,30,0,0,6899,6901,3,676,338,4,6900,6896,1,0,0,0,6900,6898,1,0,0, + 0,6901,6918,1,0,0,0,6902,6903,10,3,0,0,6903,6904,7,94,0,0,6904,6917, + 3,676,338,4,6905,6906,10,2,0,0,6906,6907,7,30,0,0,6907,6917,3,676, + 338,3,6908,6909,10,1,0,0,6909,6910,5,15,0,0,6910,6917,3,676,338, + 2,6911,6912,10,5,0,0,6912,6913,5,142,0,0,6913,6914,5,418,0,0,6914, + 6915,5,386,0,0,6915,6917,3,670,335,0,6916,6902,1,0,0,0,6916,6905, + 1,0,0,0,6916,6908,1,0,0,0,6916,6911,1,0,0,0,6917,6920,1,0,0,0,6918, + 6916,1,0,0,0,6918,6919,1,0,0,0,6919,677,1,0,0,0,6920,6918,1,0,0, + 0,6921,6922,6,339,-1,0,6922,6923,7,95,0,0,6923,7010,3,556,278,0, + 6924,6927,5,35,0,0,6925,6928,3,556,278,0,6926,6928,3,742,371,0,6927, + 6925,1,0,0,0,6927,6926,1,0,0,0,6928,7010,1,0,0,0,6929,6930,5,28, + 0,0,6930,7010,3,756,378,0,6931,6932,5,470,0,0,6932,7010,3,528,264, + 0,6933,7010,5,574,0,0,6934,7010,5,576,0,0,6935,7010,5,566,0,0,6936, + 7010,5,570,0,0,6937,6947,3,814,407,0,6938,6948,3,816,408,0,6939, + 6940,5,2,0,0,6940,6942,3,738,369,0,6941,6943,3,580,290,0,6942,6941, + 1,0,0,0,6942,6943,1,0,0,0,6943,6944,1,0,0,0,6944,6945,5,3,0,0,6945, + 6946,3,816,408,0,6946,6948,1,0,0,0,6947,6938,1,0,0,0,6947,6939,1, + 0,0,0,6948,7010,1,0,0,0,6949,6951,3,652,326,0,6950,6949,1,0,0,0, + 6950,6951,1,0,0,0,6951,6952,1,0,0,0,6952,7010,3,816,408,0,6953,6961, + 5,403,0,0,6954,6956,3,816,408,0,6955,6957,3,664,332,0,6956,6955, + 1,0,0,0,6956,6957,1,0,0,0,6957,6962,1,0,0,0,6958,6959,3,656,328, + 0,6959,6960,3,816,408,0,6960,6962,1,0,0,0,6961,6954,1,0,0,0,6961, + 6958,1,0,0,0,6962,7010,1,0,0,0,6963,7010,5,96,0,0,6964,7010,5,60, + 0,0,6965,7010,5,78,0,0,6966,7010,5,577,0,0,6967,6968,5,2,0,0,6968, + 6969,3,670,335,0,6969,6970,5,3,0,0,6970,6971,3,756,378,0,6971,7010, + 1,0,0,0,6972,6974,5,40,0,0,6973,6975,3,670,335,0,6974,6973,1,0,0, + 0,6974,6975,1,0,0,0,6975,6977,1,0,0,0,6976,6978,3,750,375,0,6977, + 6976,1,0,0,0,6978,6979,1,0,0,0,6979,6977,1,0,0,0,6979,6980,1,0,0, + 0,6980,6983,1,0,0,0,6981,6982,5,58,0,0,6982,6984,3,670,335,0,6983, + 6981,1,0,0,0,6983,6984,1,0,0,0,6984,6985,1,0,0,0,6985,6986,5,454, + 0,0,6986,7010,1,0,0,0,6987,7010,3,682,341,0,6988,6990,3,556,278, + 0,6989,6991,3,754,377,0,6990,6989,1,0,0,0,6990,6991,1,0,0,0,6991, + 7010,1,0,0,0,6992,7010,3,714,357,0,6993,6994,5,2,0,0,6994,6995,3, + 670,335,0,6995,6996,5,6,0,0,6996,6997,3,728,364,0,6997,6998,5,3, + 0,0,6998,7010,1,0,0,0,6999,7000,3,712,356,0,7000,7001,5,125,0,0, + 7001,7002,3,712,356,0,7002,7010,1,0,0,0,7003,7010,3,808,404,0,7004, + 7005,7,30,0,0,7005,7010,3,678,339,5,7006,7007,3,722,361,0,7007,7008, + 3,678,339,2,7008,7010,1,0,0,0,7009,6921,1,0,0,0,7009,6924,1,0,0, + 0,7009,6929,1,0,0,0,7009,6931,1,0,0,0,7009,6933,1,0,0,0,7009,6934, + 1,0,0,0,7009,6935,1,0,0,0,7009,6936,1,0,0,0,7009,6937,1,0,0,0,7009, + 6950,1,0,0,0,7009,6953,1,0,0,0,7009,6963,1,0,0,0,7009,6964,1,0,0, + 0,7009,6965,1,0,0,0,7009,6966,1,0,0,0,7009,6967,1,0,0,0,7009,6972, + 1,0,0,0,7009,6987,1,0,0,0,7009,6988,1,0,0,0,7009,6992,1,0,0,0,7009, + 6993,1,0,0,0,7009,6999,1,0,0,0,7009,7003,1,0,0,0,7009,7004,1,0,0, + 0,7009,7006,1,0,0,0,7010,7038,1,0,0,0,7011,7012,10,3,0,0,7012,7013, + 3,720,360,0,7013,7014,3,678,339,4,7014,7037,1,0,0,0,7015,7016,10, + 6,0,0,7016,7017,5,26,0,0,7017,7037,3,648,324,0,7018,7019,10,4,0, + 0,7019,7021,3,722,361,0,7020,7022,3,678,339,0,7021,7020,1,0,0,0, + 7021,7022,1,0,0,0,7022,7037,1,0,0,0,7023,7024,10,1,0,0,7024,7026, + 5,116,0,0,7025,7027,5,77,0,0,7026,7025,1,0,0,0,7026,7027,1,0,0,0, + 7027,7034,1,0,0,0,7028,7029,5,56,0,0,7029,7030,5,64,0,0,7030,7035, + 3,678,339,0,7031,7032,5,275,0,0,7032,7035,3,522,261,0,7033,7035, + 5,188,0,0,7034,7028,1,0,0,0,7034,7031,1,0,0,0,7034,7033,1,0,0,0, + 7035,7037,1,0,0,0,7036,7011,1,0,0,0,7036,7015,1,0,0,0,7036,7018, + 1,0,0,0,7036,7023,1,0,0,0,7037,7040,1,0,0,0,7038,7036,1,0,0,0,7038, + 7039,1,0,0,0,7039,679,1,0,0,0,7040,7038,1,0,0,0,7041,7042,3,814, + 407,0,7042,7063,5,2,0,0,7043,7047,3,738,369,0,7044,7045,5,6,0,0, + 7045,7046,5,101,0,0,7046,7048,3,740,370,0,7047,7044,1,0,0,0,7047, + 7048,1,0,0,0,7048,7050,1,0,0,0,7049,7051,3,580,290,0,7050,7049,1, + 0,0,0,7050,7051,1,0,0,0,7051,7064,1,0,0,0,7052,7053,5,101,0,0,7053, + 7055,3,740,370,0,7054,7056,3,580,290,0,7055,7054,1,0,0,0,7055,7056, + 1,0,0,0,7056,7064,1,0,0,0,7057,7058,7,81,0,0,7058,7060,3,738,369, + 0,7059,7061,3,580,290,0,7060,7059,1,0,0,0,7060,7061,1,0,0,0,7061, + 7064,1,0,0,0,7062,7064,5,9,0,0,7063,7043,1,0,0,0,7063,7052,1,0,0, + 0,7063,7057,1,0,0,0,7063,7062,1,0,0,0,7063,7064,1,0,0,0,7064,7065, + 1,0,0,0,7065,7066,5,3,0,0,7066,681,1,0,0,0,7067,7074,3,680,340,0, + 7068,7069,5,479,0,0,7069,7070,5,66,0,0,7070,7071,5,2,0,0,7071,7072, + 3,580,290,0,7072,7073,5,3,0,0,7073,7075,1,0,0,0,7074,7068,1,0,0, + 0,7074,7075,1,0,0,0,7075,7082,1,0,0,0,7076,7077,5,480,0,0,7077,7078, + 5,2,0,0,7078,7079,5,103,0,0,7079,7080,3,670,335,0,7080,7081,5,3, + 0,0,7081,7083,1,0,0,0,7082,7076,1,0,0,0,7082,7083,1,0,0,0,7083,7089, + 1,0,0,0,7084,7087,5,124,0,0,7085,7088,3,706,353,0,7086,7088,3,826, + 413,0,7087,7085,1,0,0,0,7087,7086,1,0,0,0,7088,7090,1,0,0,0,7089, + 7084,1,0,0,0,7089,7090,1,0,0,0,7090,7093,1,0,0,0,7091,7093,3,686, + 343,0,7092,7067,1,0,0,0,7092,7091,1,0,0,0,7093,683,1,0,0,0,7094, + 7097,3,680,340,0,7095,7097,3,686,343,0,7096,7094,1,0,0,0,7096,7095, + 1,0,0,0,7097,685,1,0,0,0,7098,7099,5,108,0,0,7099,7100,5,62,0,0, + 7100,7101,5,2,0,0,7101,7102,3,670,335,0,7102,7103,5,3,0,0,7103,7273, + 1,0,0,0,7104,7273,5,48,0,0,7105,7107,7,96,0,0,7106,7108,3,656,328, + 0,7107,7106,1,0,0,0,7107,7108,1,0,0,0,7108,7273,1,0,0,0,7109,7273, + 5,49,0,0,7110,7273,5,52,0,0,7111,7273,5,89,0,0,7112,7273,5,99,0, + 0,7113,7273,5,47,0,0,7114,7273,5,111,0,0,7115,7116,7,97,0,0,7116, + 7117,5,2,0,0,7117,7118,3,670,335,0,7118,7119,5,36,0,0,7119,7120, + 3,648,324,0,7120,7121,5,3,0,0,7121,7273,1,0,0,0,7122,7123,5,397, + 0,0,7123,7128,5,2,0,0,7124,7125,3,744,372,0,7125,7126,5,64,0,0,7126, + 7127,3,670,335,0,7127,7129,1,0,0,0,7128,7124,1,0,0,0,7128,7129,1, + 0,0,0,7129,7130,1,0,0,0,7130,7273,5,3,0,0,7131,7132,5,489,0,0,7132, + 7133,5,2,0,0,7133,7136,3,670,335,0,7134,7135,5,6,0,0,7135,7137,3, + 746,373,0,7136,7134,1,0,0,0,7136,7137,1,0,0,0,7137,7138,1,0,0,0, + 7138,7139,5,3,0,0,7139,7273,1,0,0,0,7140,7141,5,410,0,0,7141,7142, + 5,2,0,0,7142,7143,3,670,335,0,7143,7144,5,84,0,0,7144,7145,3,670, + 335,0,7145,7146,5,64,0,0,7146,7149,3,670,335,0,7147,7148,5,62,0, + 0,7148,7150,3,670,335,0,7149,7147,1,0,0,0,7149,7150,1,0,0,0,7150, + 7151,1,0,0,0,7151,7152,5,3,0,0,7152,7273,1,0,0,0,7153,7154,5,411, + 0,0,7154,7159,5,2,0,0,7155,7156,3,678,339,0,7156,7157,5,68,0,0,7157, + 7158,3,678,339,0,7158,7160,1,0,0,0,7159,7155,1,0,0,0,7159,7160,1, + 0,0,0,7160,7161,1,0,0,0,7161,7273,5,3,0,0,7162,7163,5,417,0,0,7163, + 7165,5,2,0,0,7164,7166,3,748,374,0,7165,7164,1,0,0,0,7165,7166,1, + 0,0,0,7166,7167,1,0,0,0,7167,7273,5,3,0,0,7168,7169,5,421,0,0,7169, + 7171,5,2,0,0,7170,7172,7,98,0,0,7171,7170,1,0,0,0,7171,7172,1,0, + 0,0,7172,7177,1,0,0,0,7173,7175,3,670,335,0,7174,7173,1,0,0,0,7174, + 7175,1,0,0,0,7175,7176,1,0,0,0,7176,7178,5,64,0,0,7177,7174,1,0, + 0,0,7177,7178,1,0,0,0,7178,7179,1,0,0,0,7179,7180,3,728,364,0,7180, + 7181,1,0,0,0,7181,7182,5,3,0,0,7182,7273,1,0,0,0,7183,7184,5,408, + 0,0,7184,7185,5,2,0,0,7185,7186,3,670,335,0,7186,7187,5,6,0,0,7187, + 7188,3,670,335,0,7188,7189,5,3,0,0,7189,7273,1,0,0,0,7190,7191,7, + 99,0,0,7191,7273,3,528,264,0,7192,7193,5,426,0,0,7193,7194,5,2,0, + 0,7194,7195,5,266,0,0,7195,7205,3,832,416,0,7196,7203,5,6,0,0,7197, + 7198,5,424,0,0,7198,7199,5,2,0,0,7199,7200,3,688,344,0,7200,7201, + 5,3,0,0,7201,7204,1,0,0,0,7202,7204,3,728,364,0,7203,7197,1,0,0, + 0,7203,7202,1,0,0,0,7204,7206,1,0,0,0,7205,7196,1,0,0,0,7205,7206, + 1,0,0,0,7206,7207,1,0,0,0,7207,7208,5,3,0,0,7208,7273,1,0,0,0,7209, + 7210,5,427,0,0,7210,7211,5,2,0,0,7211,7212,3,678,339,0,7212,7213, + 3,694,347,0,7213,7214,5,3,0,0,7214,7273,1,0,0,0,7215,7216,5,428, + 0,0,7216,7217,5,2,0,0,7217,7218,3,688,344,0,7218,7219,5,3,0,0,7219, + 7273,1,0,0,0,7220,7221,5,429,0,0,7221,7222,5,2,0,0,7222,7223,3,692, + 346,0,7223,7226,3,670,335,0,7224,7225,7,100,0,0,7225,7227,5,378, + 0,0,7226,7224,1,0,0,0,7226,7227,1,0,0,0,7227,7228,1,0,0,0,7228,7229, + 5,3,0,0,7229,7273,1,0,0,0,7230,7231,5,430,0,0,7231,7232,5,2,0,0, + 7232,7233,5,266,0,0,7233,7236,3,832,416,0,7234,7235,5,6,0,0,7235, + 7237,3,670,335,0,7236,7234,1,0,0,0,7236,7237,1,0,0,0,7237,7238,1, + 0,0,0,7238,7239,5,3,0,0,7239,7273,1,0,0,0,7240,7241,5,431,0,0,7241, + 7242,5,2,0,0,7242,7243,5,383,0,0,7243,7244,3,670,335,0,7244,7245, + 5,6,0,0,7245,7249,5,375,0,0,7246,7247,5,269,0,0,7247,7250,5,450, + 0,0,7248,7250,3,670,335,0,7249,7246,1,0,0,0,7249,7248,1,0,0,0,7250, + 7260,1,0,0,0,7251,7252,5,6,0,0,7252,7258,5,339,0,0,7253,7255,5,269, + 0,0,7254,7253,1,0,0,0,7254,7255,1,0,0,0,7255,7256,1,0,0,0,7256,7259, + 5,450,0,0,7257,7259,5,385,0,0,7258,7254,1,0,0,0,7258,7257,1,0,0, + 0,7259,7261,1,0,0,0,7260,7251,1,0,0,0,7260,7261,1,0,0,0,7261,7262, + 1,0,0,0,7262,7263,5,3,0,0,7263,7273,1,0,0,0,7264,7265,5,432,0,0, + 7265,7266,5,2,0,0,7266,7267,3,692,346,0,7267,7268,3,670,335,0,7268, + 7269,5,36,0,0,7269,7270,3,650,325,0,7270,7271,5,3,0,0,7271,7273, + 1,0,0,0,7272,7098,1,0,0,0,7272,7104,1,0,0,0,7272,7105,1,0,0,0,7272, + 7109,1,0,0,0,7272,7110,1,0,0,0,7272,7111,1,0,0,0,7272,7112,1,0,0, + 0,7272,7113,1,0,0,0,7272,7114,1,0,0,0,7272,7115,1,0,0,0,7272,7122, + 1,0,0,0,7272,7131,1,0,0,0,7272,7140,1,0,0,0,7272,7153,1,0,0,0,7272, + 7162,1,0,0,0,7272,7168,1,0,0,0,7272,7183,1,0,0,0,7272,7190,1,0,0, + 0,7272,7192,1,0,0,0,7272,7209,1,0,0,0,7272,7215,1,0,0,0,7272,7220, + 1,0,0,0,7272,7230,1,0,0,0,7272,7240,1,0,0,0,7272,7264,1,0,0,0,7273, + 687,1,0,0,0,7274,7279,3,690,345,0,7275,7276,5,6,0,0,7276,7278,3, + 690,345,0,7277,7275,1,0,0,0,7278,7281,1,0,0,0,7279,7277,1,0,0,0, + 7279,7280,1,0,0,0,7280,689,1,0,0,0,7281,7279,1,0,0,0,7282,7285,3, + 670,335,0,7283,7284,5,36,0,0,7284,7286,3,832,416,0,7285,7283,1,0, + 0,0,7285,7286,1,0,0,0,7286,691,1,0,0,0,7287,7288,7,101,0,0,7288, + 693,1,0,0,0,7289,7291,5,286,0,0,7290,7292,3,696,348,0,7291,7290, + 1,0,0,0,7291,7292,1,0,0,0,7292,7293,1,0,0,0,7293,7295,3,678,339, + 0,7294,7296,3,696,348,0,7295,7294,1,0,0,0,7295,7296,1,0,0,0,7296, + 695,1,0,0,0,7297,7298,5,147,0,0,7298,7299,7,102,0,0,7299,697,1,0, + 0,0,7300,7301,5,104,0,0,7301,7306,3,702,351,0,7302,7303,5,6,0,0, + 7303,7305,3,702,351,0,7304,7302,1,0,0,0,7305,7308,1,0,0,0,7306,7304, + 1,0,0,0,7306,7307,1,0,0,0,7307,699,1,0,0,0,7308,7306,1,0,0,0,7309, + 7310,5,67,0,0,7310,7311,3,670,335,0,7311,701,1,0,0,0,7312,7313,3, + 826,413,0,7313,7314,5,36,0,0,7314,7315,3,706,353,0,7315,703,1,0, + 0,0,7316,7319,5,124,0,0,7317,7320,3,706,353,0,7318,7320,3,826,413, + 0,7319,7317,1,0,0,0,7319,7318,1,0,0,0,7320,705,1,0,0,0,7321,7323, + 5,2,0,0,7322,7324,3,826,413,0,7323,7322,1,0,0,0,7323,7324,1,0,0, + 0,7324,7328,1,0,0,0,7325,7326,5,285,0,0,7326,7327,5,147,0,0,7327, + 7329,3,728,364,0,7328,7325,1,0,0,0,7328,7329,1,0,0,0,7329,7331,1, + 0,0,0,7330,7332,3,580,290,0,7331,7330,1,0,0,0,7331,7332,1,0,0,0, + 7332,7334,1,0,0,0,7333,7335,3,708,354,0,7334,7333,1,0,0,0,7334,7335, + 1,0,0,0,7335,7336,1,0,0,0,7336,7337,5,3,0,0,7337,707,1,0,0,0,7338, + 7343,7,103,0,0,7339,7340,5,387,0,0,7340,7341,3,710,355,0,7341,7342, + 5,33,0,0,7342,7344,1,0,0,0,7343,7339,1,0,0,0,7343,7344,1,0,0,0,7344, + 7345,1,0,0,0,7345,7346,3,710,355,0,7346,7356,1,0,0,0,7347,7354,5, + 199,0,0,7348,7349,5,434,0,0,7349,7355,5,414,0,0,7350,7355,5,66,0, + 0,7351,7355,5,467,0,0,7352,7353,5,269,0,0,7353,7355,5,482,0,0,7354, + 7348,1,0,0,0,7354,7350,1,0,0,0,7354,7351,1,0,0,0,7354,7352,1,0,0, + 0,7355,7357,1,0,0,0,7356,7347,1,0,0,0,7356,7357,1,0,0,0,7357,709, + 1,0,0,0,7358,7361,5,362,0,0,7359,7361,3,670,335,0,7360,7358,1,0, + 0,0,7360,7359,1,0,0,0,7361,7362,1,0,0,0,7362,7366,7,104,0,0,7363, + 7364,5,434,0,0,7364,7366,5,414,0,0,7365,7360,1,0,0,0,7365,7363,1, + 0,0,0,7366,711,1,0,0,0,7367,7375,3,714,357,0,7368,7369,5,2,0,0,7369, + 7370,3,728,364,0,7370,7371,5,6,0,0,7371,7372,3,670,335,0,7372,7373, + 5,3,0,0,7373,7375,1,0,0,0,7374,7367,1,0,0,0,7374,7368,1,0,0,0,7375, + 713,1,0,0,0,7376,7377,5,414,0,0,7377,7379,5,2,0,0,7378,7380,3,728, + 364,0,7379,7378,1,0,0,0,7379,7380,1,0,0,0,7380,7381,1,0,0,0,7381, + 7382,5,3,0,0,7382,715,1,0,0,0,7383,7384,7,105,0,0,7384,717,1,0,0, + 0,7385,7388,5,29,0,0,7386,7388,3,720,360,0,7387,7385,1,0,0,0,7387, + 7386,1,0,0,0,7388,719,1,0,0,0,7389,7390,7,106,0,0,7390,721,1,0,0, + 0,7391,7398,5,29,0,0,7392,7393,5,278,0,0,7393,7394,5,2,0,0,7394, + 7395,3,408,204,0,7395,7396,5,3,0,0,7396,7398,1,0,0,0,7397,7391,1, + 0,0,0,7397,7392,1,0,0,0,7398,723,1,0,0,0,7399,7406,3,718,359,0,7400, + 7401,5,278,0,0,7401,7402,5,2,0,0,7402,7403,3,408,204,0,7403,7404, + 5,3,0,0,7404,7406,1,0,0,0,7405,7399,1,0,0,0,7405,7400,1,0,0,0,7406, + 725,1,0,0,0,7407,7413,3,724,362,0,7408,7410,5,77,0,0,7409,7408,1, + 0,0,0,7409,7410,1,0,0,0,7410,7411,1,0,0,0,7411,7413,7,107,0,0,7412, + 7407,1,0,0,0,7412,7409,1,0,0,0,7413,727,1,0,0,0,7414,7419,3,670, + 335,0,7415,7416,5,6,0,0,7416,7418,3,670,335,0,7417,7415,1,0,0,0, + 7418,7421,1,0,0,0,7419,7417,1,0,0,0,7419,7420,1,0,0,0,7420,729,1, + 0,0,0,7421,7419,1,0,0,0,7422,7423,3,670,335,0,7423,731,1,0,0,0,7424, + 7425,3,806,403,0,7425,733,1,0,0,0,7426,7427,5,2,0,0,7427,7428,3, + 670,335,0,7428,7429,5,3,0,0,7429,7432,1,0,0,0,7430,7432,3,806,403, + 0,7431,7426,1,0,0,0,7431,7430,1,0,0,0,7432,735,1,0,0,0,7433,7436, + 3,670,335,0,7434,7436,3,806,403,0,7435,7433,1,0,0,0,7435,7434,1, + 0,0,0,7436,737,1,0,0,0,7437,7442,3,740,370,0,7438,7439,5,6,0,0,7439, + 7441,3,740,370,0,7440,7438,1,0,0,0,7441,7444,1,0,0,0,7442,7440,1, + 0,0,0,7442,7443,1,0,0,0,7443,739,1,0,0,0,7444,7442,1,0,0,0,7445, + 7453,3,806,403,0,7446,7453,3,670,335,0,7447,7450,3,828,414,0,7448, + 7449,7,108,0,0,7449,7451,3,670,335,0,7450,7448,1,0,0,0,7450,7451, + 1,0,0,0,7451,7453,1,0,0,0,7452,7445,1,0,0,0,7452,7446,1,0,0,0,7452, + 7447,1,0,0,0,7453,741,1,0,0,0,7454,7464,5,4,0,0,7455,7465,3,728, + 364,0,7456,7461,3,742,371,0,7457,7458,5,6,0,0,7458,7460,3,742,371, + 0,7459,7457,1,0,0,0,7460,7463,1,0,0,0,7461,7459,1,0,0,0,7461,7462, + 1,0,0,0,7462,7465,1,0,0,0,7463,7461,1,0,0,0,7464,7455,1,0,0,0,7464, + 7456,1,0,0,0,7464,7465,1,0,0,0,7465,7466,1,0,0,0,7466,7467,5,5,0, + 0,7467,743,1,0,0,0,7468,7477,3,834,417,0,7469,7477,5,384,0,0,7470, + 7477,5,264,0,0,7471,7477,5,176,0,0,7472,7477,5,218,0,0,7473,7477, + 5,261,0,0,7474,7477,5,326,0,0,7475,7477,3,816,408,0,7476,7468,1, + 0,0,0,7476,7469,1,0,0,0,7476,7470,1,0,0,0,7476,7471,1,0,0,0,7476, + 7472,1,0,0,0,7476,7473,1,0,0,0,7476,7474,1,0,0,0,7476,7475,1,0,0, + 0,7477,745,1,0,0,0,7478,7479,7,109,0,0,7479,747,1,0,0,0,7480,7481, + 3,670,335,0,7481,7482,5,64,0,0,7482,7485,3,670,335,0,7483,7484,5, + 62,0,0,7484,7486,3,670,335,0,7485,7483,1,0,0,0,7485,7486,1,0,0,0, + 7486,7502,1,0,0,0,7487,7488,3,670,335,0,7488,7489,5,62,0,0,7489, + 7492,3,670,335,0,7490,7491,5,64,0,0,7491,7493,3,670,335,0,7492,7490, + 1,0,0,0,7492,7493,1,0,0,0,7493,7502,1,0,0,0,7494,7495,3,670,335, + 0,7495,7496,5,127,0,0,7496,7497,3,670,335,0,7497,7498,5,197,0,0, + 7498,7499,3,670,335,0,7499,7502,1,0,0,0,7500,7502,3,728,364,0,7501, + 7480,1,0,0,0,7501,7487,1,0,0,0,7501,7494,1,0,0,0,7501,7500,1,0,0, + 0,7502,749,1,0,0,0,7503,7504,5,102,0,0,7504,7505,3,670,335,0,7505, + 7506,5,93,0,0,7506,7507,3,670,335,0,7507,751,1,0,0,0,7508,7511,5, + 11,0,0,7509,7512,3,832,416,0,7510,7512,5,9,0,0,7511,7509,1,0,0,0, + 7511,7510,1,0,0,0,7512,7526,1,0,0,0,7513,7522,5,4,0,0,7514,7523, + 3,670,335,0,7515,7517,3,670,335,0,7516,7515,1,0,0,0,7516,7517,1, + 0,0,0,7517,7518,1,0,0,0,7518,7520,5,8,0,0,7519,7521,3,670,335,0, + 7520,7519,1,0,0,0,7520,7521,1,0,0,0,7521,7523,1,0,0,0,7522,7514, + 1,0,0,0,7522,7516,1,0,0,0,7523,7524,1,0,0,0,7524,7526,5,5,0,0,7525, + 7508,1,0,0,0,7525,7513,1,0,0,0,7526,753,1,0,0,0,7527,7529,3,752, + 376,0,7528,7527,1,0,0,0,7529,7530,1,0,0,0,7530,7528,1,0,0,0,7530, + 7531,1,0,0,0,7531,755,1,0,0,0,7532,7534,3,752,376,0,7533,7532,1, + 0,0,0,7534,7537,1,0,0,0,7535,7533,1,0,0,0,7535,7536,1,0,0,0,7536, + 757,1,0,0,0,7537,7535,1,0,0,0,7538,7543,3,760,380,0,7539,7540,5, + 6,0,0,7540,7542,3,760,380,0,7541,7539,1,0,0,0,7542,7545,1,0,0,0, + 7543,7541,1,0,0,0,7543,7544,1,0,0,0,7544,759,1,0,0,0,7545,7543,1, + 0,0,0,7546,7559,3,762,381,0,7547,7550,3,732,366,0,7548,7550,3,730, + 365,0,7549,7547,1,0,0,0,7549,7548,1,0,0,0,7550,7556,1,0,0,0,7551, + 7553,5,36,0,0,7552,7551,1,0,0,0,7552,7553,1,0,0,0,7553,7554,1,0, + 0,0,7554,7557,3,834,417,0,7555,7557,1,0,0,0,7556,7552,1,0,0,0,7556, + 7555,1,0,0,0,7557,7559,1,0,0,0,7558,7546,1,0,0,0,7558,7549,1,0,0, + 0,7559,761,1,0,0,0,7560,7561,3,826,413,0,7561,7562,5,11,0,0,7562, + 7564,1,0,0,0,7563,7560,1,0,0,0,7564,7567,1,0,0,0,7565,7563,1,0,0, + 0,7565,7566,1,0,0,0,7566,7568,1,0,0,0,7567,7565,1,0,0,0,7568,7569, + 5,9,0,0,7569,763,1,0,0,0,7570,7575,3,784,392,0,7571,7572,5,6,0,0, + 7572,7574,3,784,392,0,7573,7571,1,0,0,0,7574,7577,1,0,0,0,7575,7573, + 1,0,0,0,7575,7576,1,0,0,0,7576,765,1,0,0,0,7577,7575,1,0,0,0,7578, + 7583,3,778,389,0,7579,7580,5,6,0,0,7580,7582,3,778,389,0,7581,7579, + 1,0,0,0,7582,7585,1,0,0,0,7583,7581,1,0,0,0,7583,7584,1,0,0,0,7584, + 767,1,0,0,0,7585,7583,1,0,0,0,7586,7591,3,794,397,0,7587,7588,5, + 6,0,0,7588,7590,3,794,397,0,7589,7587,1,0,0,0,7590,7593,1,0,0,0, + 7591,7589,1,0,0,0,7591,7592,1,0,0,0,7592,769,1,0,0,0,7593,7591,1, + 0,0,0,7594,7599,3,792,396,0,7595,7596,5,6,0,0,7596,7598,3,792,396, + 0,7597,7595,1,0,0,0,7598,7601,1,0,0,0,7599,7597,1,0,0,0,7599,7600, + 1,0,0,0,7600,771,1,0,0,0,7601,7599,1,0,0,0,7602,7603,3,784,392,0, + 7603,773,1,0,0,0,7604,7605,3,784,392,0,7605,775,1,0,0,0,7606,7607, + 3,784,392,0,7607,777,1,0,0,0,7608,7609,3,784,392,0,7609,779,1,0, + 0,0,7610,7611,3,784,392,0,7611,781,1,0,0,0,7612,7613,3,310,155,0, + 7613,783,1,0,0,0,7614,7616,3,826,413,0,7615,7617,3,754,377,0,7616, + 7615,1,0,0,0,7616,7617,1,0,0,0,7617,785,1,0,0,0,7618,7623,3,774, + 387,0,7619,7620,5,6,0,0,7620,7622,3,774,387,0,7621,7619,1,0,0,0, + 7622,7625,1,0,0,0,7623,7621,1,0,0,0,7623,7624,1,0,0,0,7624,787,1, + 0,0,0,7625,7623,1,0,0,0,7626,7631,3,826,413,0,7627,7628,5,6,0,0, + 7628,7630,3,826,413,0,7629,7627,1,0,0,0,7630,7633,1,0,0,0,7631,7629, + 1,0,0,0,7631,7632,1,0,0,0,7632,789,1,0,0,0,7633,7631,1,0,0,0,7634, + 7635,3,310,155,0,7635,791,1,0,0,0,7636,7637,3,310,155,0,7637,793, + 1,0,0,0,7638,7639,3,310,155,0,7639,795,1,0,0,0,7640,7641,3,826,413, + 0,7641,797,1,0,0,0,7642,7643,3,826,413,0,7643,799,1,0,0,0,7644,7649, + 3,828,414,0,7645,7646,3,826,413,0,7646,7647,3,754,377,0,7647,7649, + 1,0,0,0,7648,7644,1,0,0,0,7648,7645,1,0,0,0,7649,801,1,0,0,0,7650, + 7655,3,828,414,0,7651,7652,3,826,413,0,7652,7653,3,754,377,0,7653, + 7655,1,0,0,0,7654,7650,1,0,0,0,7654,7651,1,0,0,0,7655,803,1,0,0, + 0,7656,7657,1,0,0,0,7657,805,1,0,0,0,7658,7659,3,826,413,0,7659, + 7660,3,756,378,0,7660,7670,1,0,0,0,7661,7667,4,403,10,0,7662,7663, + 3,826,413,0,7663,7664,5,11,0,0,7664,7665,3,804,402,0,7665,7668,1, + 0,0,0,7666,7668,3,804,402,0,7667,7662,1,0,0,0,7667,7666,1,0,0,0, + 7668,7670,1,0,0,0,7669,7658,1,0,0,0,7669,7661,1,0,0,0,7670,807,1, + 0,0,0,7671,7672,3,826,413,0,7672,7673,3,756,378,0,7673,7683,1,0, + 0,0,7674,7680,4,404,11,0,7675,7676,3,826,413,0,7676,7677,5,11,0, + 0,7677,7678,3,804,402,0,7678,7681,1,0,0,0,7679,7681,3,804,402,0, + 7680,7675,1,0,0,0,7680,7679,1,0,0,0,7681,7683,1,0,0,0,7682,7671, + 1,0,0,0,7682,7674,1,0,0,0,7683,809,1,0,0,0,7684,7685,3,826,413,0, + 7685,811,1,0,0,0,7686,7691,3,828,414,0,7687,7688,3,826,413,0,7688, + 7689,3,754,377,0,7689,7691,1,0,0,0,7690,7686,1,0,0,0,7690,7687,1, + 0,0,0,7691,813,1,0,0,0,7692,7697,3,828,414,0,7693,7694,3,826,413, + 0,7694,7695,3,754,377,0,7695,7697,1,0,0,0,7696,7692,1,0,0,0,7696, + 7693,1,0,0,0,7697,815,1,0,0,0,7698,7701,3,818,409,0,7699,7700,5, + 487,0,0,7700,7702,3,818,409,0,7701,7699,1,0,0,0,7701,7702,1,0,0, + 0,7702,817,1,0,0,0,7703,7715,5,561,0,0,7704,7715,5,563,0,0,7705, + 7709,5,565,0,0,7706,7708,5,590,0,0,7707,7706,1,0,0,0,7708,7711,1, + 0,0,0,7709,7707,1,0,0,0,7709,7710,1,0,0,0,7710,7712,1,0,0,0,7711, + 7709,1,0,0,0,7712,7715,5,591,0,0,7713,7715,5,586,0,0,7714,7703,1, + 0,0,0,7714,7704,1,0,0,0,7714,7705,1,0,0,0,7714,7713,1,0,0,0,7715, + 819,1,0,0,0,7716,7718,7,30,0,0,7717,7716,1,0,0,0,7717,7718,1,0,0, + 0,7718,7719,1,0,0,0,7719,7720,5,574,0,0,7720,821,1,0,0,0,7721,7727, + 3,830,415,0,7722,7727,5,52,0,0,7723,7727,5,49,0,0,7724,7727,5,89, + 0,0,7725,7727,5,524,0,0,7726,7721,1,0,0,0,7726,7722,1,0,0,0,7726, + 7723,1,0,0,0,7726,7724,1,0,0,0,7726,7725,1,0,0,0,7727,823,1,0,0, + 0,7728,7733,3,822,411,0,7729,7730,5,6,0,0,7730,7732,3,822,411,0, + 7731,7729,1,0,0,0,7732,7735,1,0,0,0,7733,7731,1,0,0,0,7733,7734, + 1,0,0,0,7734,825,1,0,0,0,7735,7733,1,0,0,0,7736,7739,3,834,417,0, + 7737,7739,3,838,419,0,7738,7736,1,0,0,0,7738,7737,1,0,0,0,7739,827, + 1,0,0,0,7740,7743,3,834,417,0,7741,7743,3,840,420,0,7742,7740,1, + 0,0,0,7742,7741,1,0,0,0,7743,829,1,0,0,0,7744,7748,3,834,417,0,7745, + 7748,3,838,419,0,7746,7748,3,840,420,0,7747,7744,1,0,0,0,7747,7745, + 1,0,0,0,7747,7746,1,0,0,0,7748,831,1,0,0,0,7749,7754,3,834,417,0, + 7750,7754,3,838,419,0,7751,7754,3,840,420,0,7752,7754,3,842,421, + 0,7753,7749,1,0,0,0,7753,7750,1,0,0,0,7753,7751,1,0,0,0,7753,7752, + 1,0,0,0,7754,833,1,0,0,0,7755,7758,5,552,0,0,7756,7757,5,487,0,0, + 7757,7759,3,818,409,0,7758,7756,1,0,0,0,7758,7759,1,0,0,0,7759,7767, + 1,0,0,0,7760,7767,3,816,408,0,7761,7767,5,553,0,0,7762,7767,5,557, + 0,0,7763,7767,5,577,0,0,7764,7767,5,578,0,0,7765,7767,3,836,418, + 0,7766,7755,1,0,0,0,7766,7760,1,0,0,0,7766,7761,1,0,0,0,7766,7762, + 1,0,0,0,7766,7763,1,0,0,0,7766,7764,1,0,0,0,7766,7765,1,0,0,0,7767, + 835,1,0,0,0,7768,7769,7,110,0,0,7769,837,1,0,0,0,7770,7822,5,387, + 0,0,7771,7822,5,388,0,0,7772,7822,3,658,329,0,7773,7822,5,390,0, + 0,7774,7822,5,391,0,0,7775,7822,3,660,330,0,7776,7822,5,393,0,0, + 7777,7822,5,394,0,0,7778,7822,5,395,0,0,7779,7822,5,396,0,0,7780, + 7822,5,397,0,0,7781,7822,5,398,0,0,7782,7822,5,399,0,0,7783,7822, + 5,470,0,0,7784,7822,5,400,0,0,7785,7822,5,401,0,0,7786,7822,5,402, + 0,0,7787,7822,5,403,0,0,7788,7822,5,404,0,0,7789,7822,5,405,0,0, + 7790,7822,5,406,0,0,7791,7822,5,407,0,0,7792,7822,5,489,0,0,7793, + 7822,5,408,0,0,7794,7822,3,654,327,0,7795,7822,5,453,0,0,7796,7822, + 5,410,0,0,7797,7822,5,411,0,0,7798,7822,5,412,0,0,7799,7822,5,413, + 0,0,7800,7822,5,414,0,0,7801,7822,5,415,0,0,7802,7822,5,416,0,0, + 7803,7822,5,417,0,0,7804,7822,5,418,0,0,7805,7822,5,419,0,0,7806, + 7822,5,420,0,0,7807,7822,5,421,0,0,7808,7822,5,422,0,0,7809,7822, + 5,423,0,0,7810,7822,5,424,0,0,7811,7822,5,425,0,0,7812,7822,5,426, + 0,0,7813,7822,5,427,0,0,7814,7822,5,428,0,0,7815,7822,5,476,0,0, + 7816,7822,5,429,0,0,7817,7822,5,430,0,0,7818,7822,5,431,0,0,7819, + 7822,5,432,0,0,7820,7822,5,474,0,0,7821,7770,1,0,0,0,7821,7771,1, + 0,0,0,7821,7772,1,0,0,0,7821,7773,1,0,0,0,7821,7774,1,0,0,0,7821, + 7775,1,0,0,0,7821,7776,1,0,0,0,7821,7777,1,0,0,0,7821,7778,1,0,0, + 0,7821,7779,1,0,0,0,7821,7780,1,0,0,0,7821,7781,1,0,0,0,7821,7782, + 1,0,0,0,7821,7783,1,0,0,0,7821,7784,1,0,0,0,7821,7785,1,0,0,0,7821, + 7786,1,0,0,0,7821,7787,1,0,0,0,7821,7788,1,0,0,0,7821,7789,1,0,0, + 0,7821,7790,1,0,0,0,7821,7791,1,0,0,0,7821,7792,1,0,0,0,7821,7793, + 1,0,0,0,7821,7794,1,0,0,0,7821,7795,1,0,0,0,7821,7796,1,0,0,0,7821, + 7797,1,0,0,0,7821,7798,1,0,0,0,7821,7799,1,0,0,0,7821,7800,1,0,0, + 0,7821,7801,1,0,0,0,7821,7802,1,0,0,0,7821,7803,1,0,0,0,7821,7804, + 1,0,0,0,7821,7805,1,0,0,0,7821,7806,1,0,0,0,7821,7807,1,0,0,0,7821, + 7808,1,0,0,0,7821,7809,1,0,0,0,7821,7810,1,0,0,0,7821,7811,1,0,0, + 0,7821,7812,1,0,0,0,7821,7813,1,0,0,0,7821,7814,1,0,0,0,7821,7815, + 1,0,0,0,7821,7816,1,0,0,0,7821,7817,1,0,0,0,7821,7818,1,0,0,0,7821, + 7819,1,0,0,0,7821,7820,1,0,0,0,7822,839,1,0,0,0,7823,7824,7,111, + 0,0,7824,841,1,0,0,0,7825,7826,7,112,0,0,7826,843,1,0,0,0,7827,7829, + 3,846,423,0,7828,7827,1,0,0,0,7828,7829,1,0,0,0,7829,7840,1,0,0, + 0,7830,7838,5,178,0,0,7831,7835,3,848,424,0,7832,7835,5,178,0,0, + 7833,7835,3,846,423,0,7834,7831,1,0,0,0,7834,7832,1,0,0,0,7834,7833, + 1,0,0,0,7835,7836,1,0,0,0,7836,7834,1,0,0,0,7836,7837,1,0,0,0,7837, + 7839,1,0,0,0,7838,7834,1,0,0,0,7838,7839,1,0,0,0,7839,7841,1,0,0, + 0,7840,7830,1,0,0,0,7840,7841,1,0,0,0,7841,7842,1,0,0,0,7842,7846, + 5,146,0,0,7843,7845,3,854,427,0,7844,7843,1,0,0,0,7845,7848,1,0, + 0,0,7846,7844,1,0,0,0,7846,7847,1,0,0,0,7847,7850,1,0,0,0,7848,7846, + 1,0,0,0,7849,7851,3,932,466,0,7850,7849,1,0,0,0,7850,7851,1,0,0, + 0,7851,7852,1,0,0,0,7852,7854,5,454,0,0,7853,7855,3,936,468,0,7854, + 7853,1,0,0,0,7854,7855,1,0,0,0,7855,845,1,0,0,0,7856,7857,5,18,0, + 0,7857,7858,3,936,468,0,7858,7859,5,19,0,0,7859,847,1,0,0,0,7860, + 7907,3,936,468,0,7861,7862,5,496,0,0,7862,7865,5,62,0,0,7863,7866, + 5,28,0,0,7864,7866,3,826,413,0,7865,7863,1,0,0,0,7865,7864,1,0,0, + 0,7866,7908,1,0,0,0,7867,7869,5,497,0,0,7868,7867,1,0,0,0,7868,7869, + 1,0,0,0,7869,7870,1,0,0,0,7870,7872,3,648,324,0,7871,7873,3,90,45, + 0,7872,7871,1,0,0,0,7872,7873,1,0,0,0,7873,7876,1,0,0,0,7874,7875, + 5,77,0,0,7875,7877,5,78,0,0,7876,7874,1,0,0,0,7876,7877,1,0,0,0, + 7877,7883,1,0,0,0,7878,7881,3,852,426,0,7879,7881,5,53,0,0,7880, + 7878,1,0,0,0,7880,7879,1,0,0,0,7881,7882,1,0,0,0,7882,7884,3,938, + 469,0,7883,7880,1,0,0,0,7883,7884,1,0,0,0,7884,7908,1,0,0,0,7885, + 7887,5,269,0,0,7886,7885,1,0,0,0,7886,7887,1,0,0,0,7887,7888,1,0, + 0,0,7888,7890,5,324,0,0,7889,7886,1,0,0,0,7889,7890,1,0,0,0,7890, + 7891,1,0,0,0,7891,7903,5,172,0,0,7892,7893,5,2,0,0,7893,7898,3,850, + 425,0,7894,7895,5,6,0,0,7895,7897,3,850,425,0,7896,7894,1,0,0,0, + 7897,7900,1,0,0,0,7898,7896,1,0,0,0,7898,7899,1,0,0,0,7899,7901, + 1,0,0,0,7900,7898,1,0,0,0,7901,7902,5,3,0,0,7902,7904,1,0,0,0,7903, + 7892,1,0,0,0,7903,7904,1,0,0,0,7904,7905,1,0,0,0,7905,7906,7,113, + 0,0,7906,7908,3,554,277,0,7907,7861,1,0,0,0,7907,7868,1,0,0,0,7907, + 7889,1,0,0,0,7908,7909,1,0,0,0,7909,7910,5,7,0,0,7910,849,1,0,0, + 0,7911,7912,3,936,468,0,7912,7913,3,648,324,0,7913,851,1,0,0,0,7914, + 7915,7,114,0,0,7915,853,1,0,0,0,7916,7917,3,844,422,0,7917,7918, + 5,7,0,0,7918,7941,1,0,0,0,7919,7941,3,882,441,0,7920,7941,3,884, + 442,0,7921,7941,3,860,430,0,7922,7941,3,868,434,0,7923,7941,3,872, + 436,0,7924,7941,3,874,437,0,7925,7941,3,878,439,0,7926,7941,3,880, + 440,0,7927,7941,3,888,444,0,7928,7941,3,892,446,0,7929,7941,3,894, + 447,0,7930,7941,3,856,428,0,7931,7941,3,858,429,0,7932,7941,3,862, + 431,0,7933,7941,3,898,449,0,7934,7941,3,902,451,0,7935,7941,3,906, + 453,0,7936,7941,3,922,461,0,7937,7941,3,924,462,0,7938,7941,3,926, + 463,0,7939,7941,3,928,464,0,7940,7916,1,0,0,0,7940,7919,1,0,0,0, + 7940,7920,1,0,0,0,7940,7921,1,0,0,0,7940,7922,1,0,0,0,7940,7923, + 1,0,0,0,7940,7924,1,0,0,0,7940,7925,1,0,0,0,7940,7926,1,0,0,0,7940, + 7927,1,0,0,0,7940,7928,1,0,0,0,7940,7929,1,0,0,0,7940,7930,1,0,0, + 0,7940,7931,1,0,0,0,7940,7932,1,0,0,0,7940,7933,1,0,0,0,7940,7934, + 1,0,0,0,7940,7935,1,0,0,0,7940,7936,1,0,0,0,7940,7937,1,0,0,0,7940, + 7938,1,0,0,0,7940,7939,1,0,0,0,7941,855,1,0,0,0,7942,7943,5,498, + 0,0,7943,7944,3,938,469,0,7944,7945,5,7,0,0,7945,857,1,0,0,0,7946, + 7947,5,433,0,0,7947,7954,3,936,468,0,7948,7950,5,2,0,0,7949,7951, + 3,728,364,0,7950,7949,1,0,0,0,7950,7951,1,0,0,0,7951,7952,1,0,0, + 0,7952,7953,5,3,0,0,7953,7955,5,7,0,0,7954,7948,1,0,0,0,7954,7955, + 1,0,0,0,7955,7966,1,0,0,0,7956,7957,5,57,0,0,7957,7958,3,936,468, + 0,7958,7960,5,2,0,0,7959,7961,3,728,364,0,7960,7959,1,0,0,0,7960, + 7961,1,0,0,0,7961,7962,1,0,0,0,7962,7963,5,3,0,0,7963,7964,5,7,0, + 0,7964,7966,1,0,0,0,7965,7946,1,0,0,0,7965,7956,1,0,0,0,7966,859, + 1,0,0,0,7967,7968,3,866,433,0,7968,7969,3,852,426,0,7969,7970,3, + 938,469,0,7970,7971,5,7,0,0,7971,861,1,0,0,0,7972,7974,5,499,0,0, + 7973,7975,7,115,0,0,7974,7973,1,0,0,0,7974,7975,1,0,0,0,7975,7976, + 1,0,0,0,7976,7977,5,500,0,0,7977,7982,3,864,432,0,7978,7979,5,6, + 0,0,7979,7981,3,864,432,0,7980,7978,1,0,0,0,7981,7984,1,0,0,0,7982, + 7980,1,0,0,0,7982,7983,1,0,0,0,7983,7985,1,0,0,0,7984,7982,1,0,0, + 0,7985,7986,5,7,0,0,7986,863,1,0,0,0,7987,7988,3,866,433,0,7988, + 7989,3,852,426,0,7989,7990,3,826,413,0,7990,865,1,0,0,0,7991,7994, + 3,310,155,0,7992,7994,5,28,0,0,7993,7991,1,0,0,0,7993,7992,1,0,0, + 0,7994,8001,1,0,0,0,7995,7996,5,4,0,0,7996,7997,3,670,335,0,7997, + 7998,5,5,0,0,7998,8000,1,0,0,0,7999,7995,1,0,0,0,8000,8003,1,0,0, + 0,8001,7999,1,0,0,0,8001,8002,1,0,0,0,8002,867,1,0,0,0,8003,8001, + 1,0,0,0,8004,8005,5,220,0,0,8005,8006,3,938,469,0,8006,8010,5,93, + 0,0,8007,8009,3,854,427,0,8008,8007,1,0,0,0,8009,8012,1,0,0,0,8010, + 8008,1,0,0,0,8010,8011,1,0,0,0,8011,8024,1,0,0,0,8012,8010,1,0,0, + 0,8013,8014,5,502,0,0,8014,8015,3,670,335,0,8015,8019,5,93,0,0,8016, + 8018,3,854,427,0,8017,8016,1,0,0,0,8018,8021,1,0,0,0,8019,8017,1, + 0,0,0,8019,8020,1,0,0,0,8020,8023,1,0,0,0,8021,8019,1,0,0,0,8022, + 8013,1,0,0,0,8023,8026,1,0,0,0,8024,8022,1,0,0,0,8024,8025,1,0,0, + 0,8025,8028,1,0,0,0,8026,8024,1,0,0,0,8027,8029,3,870,435,0,8028, + 8027,1,0,0,0,8028,8029,1,0,0,0,8029,8030,1,0,0,0,8030,8031,5,454, + 0,0,8031,8032,5,220,0,0,8032,8033,5,7,0,0,8033,869,1,0,0,0,8034, + 8038,5,58,0,0,8035,8037,3,854,427,0,8036,8035,1,0,0,0,8037,8040, + 1,0,0,0,8038,8036,1,0,0,0,8038,8039,1,0,0,0,8039,871,1,0,0,0,8040, + 8038,1,0,0,0,8041,8043,5,40,0,0,8042,8044,3,938,469,0,8043,8042, + 1,0,0,0,8043,8044,1,0,0,0,8044,8054,1,0,0,0,8045,8046,5,102,0,0, + 8046,8047,3,728,364,0,8047,8051,5,93,0,0,8048,8050,3,854,427,0,8049, + 8048,1,0,0,0,8050,8053,1,0,0,0,8051,8049,1,0,0,0,8051,8052,1,0,0, + 0,8052,8055,1,0,0,0,8053,8051,1,0,0,0,8054,8045,1,0,0,0,8055,8056, + 1,0,0,0,8056,8054,1,0,0,0,8056,8057,1,0,0,0,8057,8059,1,0,0,0,8058, + 8060,3,870,435,0,8059,8058,1,0,0,0,8059,8060,1,0,0,0,8060,8061,1, + 0,0,0,8061,8062,5,454,0,0,8062,8063,5,40,0,0,8063,8064,5,7,0,0,8064, + 873,1,0,0,0,8065,8067,3,846,423,0,8066,8065,1,0,0,0,8066,8067,1, + 0,0,0,8067,8072,1,0,0,0,8068,8069,5,503,0,0,8069,8073,3,670,335, + 0,8070,8071,5,62,0,0,8071,8073,3,876,438,0,8072,8068,1,0,0,0,8072, + 8070,1,0,0,0,8072,8073,1,0,0,0,8073,8074,1,0,0,0,8074,8075,3,890, + 445,0,8075,875,1,0,0,0,8076,8077,3,308,154,0,8077,8100,5,68,0,0, + 8078,8080,3,826,413,0,8079,8081,3,528,264,0,8080,8079,1,0,0,0,8080, + 8081,1,0,0,0,8081,8101,1,0,0,0,8082,8101,3,554,277,0,8083,8101,3, + 514,257,0,8084,8085,5,202,0,0,8085,8088,3,670,335,0,8086,8087,5, + 100,0,0,8087,8089,3,728,364,0,8088,8086,1,0,0,0,8088,8089,1,0,0, + 0,8089,8101,1,0,0,0,8090,8092,5,504,0,0,8091,8090,1,0,0,0,8091,8092, + 1,0,0,0,8092,8093,1,0,0,0,8093,8094,3,670,335,0,8094,8095,5,24,0, + 0,8095,8098,3,670,335,0,8096,8097,5,147,0,0,8097,8099,3,670,335, + 0,8098,8096,1,0,0,0,8098,8099,1,0,0,0,8099,8101,1,0,0,0,8100,8078, + 1,0,0,0,8100,8082,1,0,0,0,8100,8083,1,0,0,0,8100,8084,1,0,0,0,8100, + 8091,1,0,0,0,8101,877,1,0,0,0,8102,8104,3,846,423,0,8103,8102,1, + 0,0,0,8103,8104,1,0,0,0,8104,8105,1,0,0,0,8105,8106,5,505,0,0,8106, + 8109,3,308,154,0,8107,8108,5,506,0,0,8108,8110,5,574,0,0,8109,8107, + 1,0,0,0,8109,8110,1,0,0,0,8110,8111,1,0,0,0,8111,8112,5,68,0,0,8112, + 8113,5,35,0,0,8113,8114,3,670,335,0,8114,8115,3,890,445,0,8115,879, + 1,0,0,0,8116,8118,7,116,0,0,8117,8119,3,936,468,0,8118,8117,1,0, + 0,0,8118,8119,1,0,0,0,8119,8122,1,0,0,0,8120,8121,5,102,0,0,8121, + 8123,3,938,469,0,8122,8120,1,0,0,0,8122,8123,1,0,0,0,8123,8124,1, + 0,0,0,8124,8125,5,7,0,0,8125,881,1,0,0,0,8126,8141,5,508,0,0,8127, + 8128,5,268,0,0,8128,8142,3,938,469,0,8129,8136,5,509,0,0,8130,8131, + 5,202,0,0,8131,8132,3,670,335,0,8132,8133,5,100,0,0,8133,8134,3, + 728,364,0,8134,8137,1,0,0,0,8135,8137,3,554,277,0,8136,8130,1,0, + 0,0,8136,8135,1,0,0,0,8137,8142,1,0,0,0,8138,8140,3,938,469,0,8139, + 8138,1,0,0,0,8139,8140,1,0,0,0,8140,8142,1,0,0,0,8141,8127,1,0,0, + 0,8141,8129,1,0,0,0,8141,8139,1,0,0,0,8142,8143,1,0,0,0,8143,8144, + 5,7,0,0,8144,883,1,0,0,0,8145,8175,5,510,0,0,8146,8148,7,117,0,0, + 8147,8146,1,0,0,0,8147,8148,1,0,0,0,8148,8161,1,0,0,0,8149,8162, + 3,834,417,0,8150,8151,5,511,0,0,8151,8162,3,816,408,0,8152,8159, + 3,816,408,0,8153,8154,5,6,0,0,8154,8156,3,670,335,0,8155,8153,1, + 0,0,0,8156,8157,1,0,0,0,8157,8155,1,0,0,0,8157,8158,1,0,0,0,8158, + 8160,1,0,0,0,8159,8155,1,0,0,0,8159,8160,1,0,0,0,8160,8162,1,0,0, + 0,8161,8149,1,0,0,0,8161,8150,1,0,0,0,8161,8152,1,0,0,0,8161,8162, + 1,0,0,0,8162,8172,1,0,0,0,8163,8164,5,100,0,0,8164,8169,3,886,443, + 0,8165,8166,5,6,0,0,8166,8168,3,886,443,0,8167,8165,1,0,0,0,8168, + 8171,1,0,0,0,8169,8167,1,0,0,0,8169,8170,1,0,0,0,8170,8173,1,0,0, + 0,8171,8169,1,0,0,0,8172,8163,1,0,0,0,8172,8173,1,0,0,0,8173,8174, + 1,0,0,0,8174,8176,5,7,0,0,8175,8147,1,0,0,0,8175,8176,1,0,0,0,8176, + 885,1,0,0,0,8177,8178,3,834,417,0,8178,8179,5,10,0,0,8179,8180,3, + 670,335,0,8180,887,1,0,0,0,8181,8182,5,518,0,0,8182,8185,3,938,469, + 0,8183,8184,5,6,0,0,8184,8186,3,938,469,0,8185,8183,1,0,0,0,8185, + 8186,1,0,0,0,8186,8187,1,0,0,0,8187,8188,5,7,0,0,8188,889,1,0,0, + 0,8189,8193,5,519,0,0,8190,8192,3,854,427,0,8191,8190,1,0,0,0,8192, + 8195,1,0,0,0,8193,8191,1,0,0,0,8193,8194,1,0,0,0,8194,8196,1,0,0, + 0,8195,8193,1,0,0,0,8196,8197,5,454,0,0,8197,8199,5,519,0,0,8198, + 8200,3,936,468,0,8199,8198,1,0,0,0,8199,8200,1,0,0,0,8200,8201,1, + 0,0,0,8201,8202,5,7,0,0,8202,891,1,0,0,0,8203,8205,3,4,2,0,8204, + 8206,3,896,448,0,8205,8204,1,0,0,0,8205,8206,1,0,0,0,8206,8207,1, + 0,0,0,8207,8208,5,7,0,0,8208,893,1,0,0,0,8209,8210,5,202,0,0,8210, + 8226,3,670,335,0,8211,8213,3,896,448,0,8212,8211,1,0,0,0,8212,8213, + 1,0,0,0,8213,8216,1,0,0,0,8214,8215,5,100,0,0,8215,8217,3,728,364, + 0,8216,8214,1,0,0,0,8216,8217,1,0,0,0,8217,8227,1,0,0,0,8218,8219, + 5,100,0,0,8219,8221,3,728,364,0,8220,8218,1,0,0,0,8220,8221,1,0, + 0,0,8221,8223,1,0,0,0,8222,8224,3,896,448,0,8223,8222,1,0,0,0,8223, + 8224,1,0,0,0,8224,8227,1,0,0,0,8225,8227,1,0,0,0,8226,8212,1,0,0, + 0,8226,8220,1,0,0,0,8226,8225,1,0,0,0,8227,8228,1,0,0,0,8228,8229, + 5,7,0,0,8229,895,1,0,0,0,8230,8232,5,71,0,0,8231,8233,5,346,0,0, + 8232,8231,1,0,0,0,8232,8233,1,0,0,0,8233,8234,1,0,0,0,8234,8235, + 3,728,364,0,8235,897,1,0,0,0,8236,8268,5,520,0,0,8237,8242,3,930, + 465,0,8238,8240,5,269,0,0,8239,8238,1,0,0,0,8239,8240,1,0,0,0,8240, + 8241,1,0,0,0,8241,8243,5,324,0,0,8242,8239,1,0,0,0,8242,8243,1,0, + 0,0,8243,8244,1,0,0,0,8244,8252,5,62,0,0,8245,8253,3,554,277,0,8246, + 8247,5,202,0,0,8247,8250,3,938,469,0,8248,8249,5,100,0,0,8249,8251, + 3,728,364,0,8250,8248,1,0,0,0,8250,8251,1,0,0,0,8251,8253,1,0,0, + 0,8252,8245,1,0,0,0,8252,8246,1,0,0,0,8253,8269,1,0,0,0,8254,8266, + 3,826,413,0,8255,8256,5,2,0,0,8256,8261,3,900,450,0,8257,8258,5, + 6,0,0,8258,8260,3,900,450,0,8259,8257,1,0,0,0,8260,8263,1,0,0,0, + 8261,8259,1,0,0,0,8261,8262,1,0,0,0,8262,8264,1,0,0,0,8263,8261, + 1,0,0,0,8264,8265,5,3,0,0,8265,8267,1,0,0,0,8266,8255,1,0,0,0,8266, + 8267,1,0,0,0,8267,8269,1,0,0,0,8268,8237,1,0,0,0,8268,8254,1,0,0, + 0,8269,8270,1,0,0,0,8270,8271,5,7,0,0,8271,899,1,0,0,0,8272,8273, + 3,826,413,0,8273,8274,5,20,0,0,8274,8276,1,0,0,0,8275,8272,1,0,0, + 0,8275,8276,1,0,0,0,8276,8277,1,0,0,0,8277,8278,3,670,335,0,8278, + 901,1,0,0,0,8279,8281,5,61,0,0,8280,8282,3,904,452,0,8281,8280,1, + 0,0,0,8281,8282,1,0,0,0,8282,8284,1,0,0,0,8283,8285,3,326,163,0, + 8284,8283,1,0,0,0,8284,8285,1,0,0,0,8285,8286,1,0,0,0,8286,8287, + 3,930,465,0,8287,8288,5,71,0,0,8288,8289,3,728,364,0,8289,8290,5, + 7,0,0,8290,903,1,0,0,0,8291,8306,5,268,0,0,8292,8306,5,293,0,0,8293, + 8306,5,207,0,0,8294,8306,5,249,0,0,8295,8297,7,51,0,0,8296,8295, + 1,0,0,0,8296,8297,1,0,0,0,8297,8298,1,0,0,0,8298,8306,3,670,335, + 0,8299,8306,5,30,0,0,8300,8303,7,118,0,0,8301,8304,3,670,335,0,8302, + 8304,5,30,0,0,8303,8301,1,0,0,0,8303,8302,1,0,0,0,8303,8304,1,0, + 0,0,8304,8306,1,0,0,0,8305,8291,1,0,0,0,8305,8292,1,0,0,0,8305,8293, + 1,0,0,0,8305,8294,1,0,0,0,8305,8296,1,0,0,0,8305,8299,1,0,0,0,8305, + 8300,1,0,0,0,8306,905,1,0,0,0,8307,8309,5,265,0,0,8308,8310,3,904, + 452,0,8309,8308,1,0,0,0,8309,8310,1,0,0,0,8310,8311,1,0,0,0,8311, + 8312,3,930,465,0,8312,8313,5,7,0,0,8313,907,1,0,0,0,8314,8316,3, + 566,283,0,8315,8314,1,0,0,0,8315,8316,1,0,0,0,8316,8317,1,0,0,0, + 8317,8318,5,525,0,0,8318,8320,5,71,0,0,8319,8321,5,81,0,0,8320,8319, + 1,0,0,0,8320,8321,1,0,0,0,8321,8322,1,0,0,0,8322,8324,3,778,389, + 0,8323,8325,5,9,0,0,8324,8323,1,0,0,0,8324,8325,1,0,0,0,8325,8330, + 1,0,0,0,8326,8328,5,36,0,0,8327,8326,1,0,0,0,8327,8328,1,0,0,0,8328, + 8329,1,0,0,0,8329,8331,3,826,413,0,8330,8327,1,0,0,0,8330,8331,1, + 0,0,0,8331,8332,1,0,0,0,8332,8333,5,100,0,0,8333,8334,3,910,455, + 0,8334,8335,5,80,0,0,8335,8337,3,670,335,0,8336,8338,3,912,456,0, + 8337,8336,1,0,0,0,8338,8339,1,0,0,0,8339,8337,1,0,0,0,8339,8340, + 1,0,0,0,8340,8342,1,0,0,0,8341,8343,3,540,270,0,8342,8341,1,0,0, + 0,8342,8343,1,0,0,0,8343,909,1,0,0,0,8344,8346,5,81,0,0,8345,8344, + 1,0,0,0,8345,8346,1,0,0,0,8346,8347,1,0,0,0,8347,8349,3,778,389, + 0,8348,8350,5,9,0,0,8349,8348,1,0,0,0,8349,8350,1,0,0,0,8350,8356, + 1,0,0,0,8351,8354,3,558,279,0,8352,8354,3,602,301,0,8353,8351,1, + 0,0,0,8353,8352,1,0,0,0,8354,8356,1,0,0,0,8355,8345,1,0,0,0,8355, + 8353,1,0,0,0,8356,8361,1,0,0,0,8357,8359,5,36,0,0,8358,8357,1,0, + 0,0,8358,8359,1,0,0,0,8359,8360,1,0,0,0,8360,8362,3,826,413,0,8361, + 8358,1,0,0,0,8361,8362,1,0,0,0,8362,911,1,0,0,0,8363,8364,5,102, + 0,0,8364,8367,5,526,0,0,8365,8366,5,33,0,0,8366,8368,3,670,335,0, + 8367,8365,1,0,0,0,8367,8368,1,0,0,0,8368,8369,1,0,0,0,8369,8374, + 5,93,0,0,8370,8375,3,916,458,0,8371,8375,5,182,0,0,8372,8373,5,57, + 0,0,8373,8375,5,270,0,0,8374,8370,1,0,0,0,8374,8371,1,0,0,0,8374, + 8372,1,0,0,0,8375,8390,1,0,0,0,8376,8377,5,102,0,0,8377,8378,5,77, + 0,0,8378,8381,5,526,0,0,8379,8380,5,33,0,0,8380,8382,3,670,335,0, + 8381,8379,1,0,0,0,8381,8382,1,0,0,0,8382,8383,1,0,0,0,8383,8387, + 5,93,0,0,8384,8388,3,914,457,0,8385,8386,5,57,0,0,8386,8388,5,270, + 0,0,8387,8384,1,0,0,0,8387,8385,1,0,0,0,8388,8390,1,0,0,0,8389,8363, + 1,0,0,0,8389,8376,1,0,0,0,8390,913,1,0,0,0,8391,8393,5,241,0,0,8392, + 8394,3,138,69,0,8393,8392,1,0,0,0,8393,8394,1,0,0,0,8394,8398,1, + 0,0,0,8395,8396,5,463,0,0,8396,8397,7,77,0,0,8397,8399,5,450,0,0, + 8398,8395,1,0,0,0,8398,8399,1,0,0,0,8399,8400,1,0,0,0,8400,8401, + 3,918,459,0,8401,915,1,0,0,0,8402,8403,5,369,0,0,8403,8421,5,333, + 0,0,8404,8405,3,806,403,0,8405,8406,5,10,0,0,8406,8407,3,920,460, + 0,8407,8422,1,0,0,0,8408,8409,3,138,69,0,8409,8410,5,10,0,0,8410, + 8411,5,2,0,0,8411,8416,3,920,460,0,8412,8413,5,6,0,0,8413,8415,3, + 920,460,0,8414,8412,1,0,0,0,8415,8418,1,0,0,0,8416,8414,1,0,0,0, + 8416,8417,1,0,0,0,8417,8419,1,0,0,0,8418,8416,1,0,0,0,8419,8420, + 5,3,0,0,8420,8422,1,0,0,0,8421,8404,1,0,0,0,8421,8408,1,0,0,0,8422, + 8423,1,0,0,0,8423,8421,1,0,0,0,8423,8424,1,0,0,0,8424,917,1,0,0, + 0,8425,8426,5,422,0,0,8426,8427,5,2,0,0,8427,8432,3,920,460,0,8428, + 8429,5,6,0,0,8429,8431,3,920,460,0,8430,8428,1,0,0,0,8431,8434,1, + 0,0,0,8432,8430,1,0,0,0,8432,8433,1,0,0,0,8433,8435,1,0,0,0,8434, + 8432,1,0,0,0,8435,8436,5,3,0,0,8436,8440,1,0,0,0,8437,8438,5,53, + 0,0,8438,8440,5,422,0,0,8439,8425,1,0,0,0,8439,8437,1,0,0,0,8440, + 919,1,0,0,0,8441,8444,3,582,291,0,8442,8444,5,53,0,0,8443,8441,1, + 0,0,0,8443,8442,1,0,0,0,8444,921,1,0,0,0,8445,8446,5,157,0,0,8446, + 8447,3,930,465,0,8447,8448,5,7,0,0,8448,923,1,0,0,0,8449,8450,5, + 78,0,0,8450,8451,5,7,0,0,8451,925,1,0,0,0,8452,8458,7,68,0,0,8453, + 8455,5,33,0,0,8454,8456,5,269,0,0,8455,8454,1,0,0,0,8455,8456,1, + 0,0,0,8456,8457,1,0,0,0,8457,8459,5,153,0,0,8458,8453,1,0,0,0,8458, + 8459,1,0,0,0,8459,8460,1,0,0,0,8460,8461,5,7,0,0,8461,927,1,0,0, + 0,8462,8463,5,333,0,0,8463,8464,3,310,155,0,8464,8465,5,94,0,0,8465, + 8466,5,53,0,0,8466,8467,5,7,0,0,8467,8475,1,0,0,0,8468,8471,5,313, + 0,0,8469,8472,3,310,155,0,8470,8472,5,30,0,0,8471,8469,1,0,0,0,8471, + 8470,1,0,0,0,8472,8473,1,0,0,0,8473,8475,5,7,0,0,8474,8462,1,0,0, + 0,8474,8468,1,0,0,0,8475,929,1,0,0,0,8476,8479,3,826,413,0,8477, + 8479,5,28,0,0,8478,8476,1,0,0,0,8478,8477,1,0,0,0,8479,931,1,0,0, + 0,8480,8497,5,517,0,0,8481,8482,5,102,0,0,8482,8487,3,934,467,0, + 8483,8484,5,82,0,0,8484,8486,3,934,467,0,8485,8483,1,0,0,0,8486, + 8489,1,0,0,0,8487,8485,1,0,0,0,8487,8488,1,0,0,0,8488,8490,1,0,0, + 0,8489,8487,1,0,0,0,8490,8494,5,93,0,0,8491,8493,3,854,427,0,8492, + 8491,1,0,0,0,8493,8496,1,0,0,0,8494,8492,1,0,0,0,8494,8495,1,0,0, + 0,8495,8498,1,0,0,0,8496,8494,1,0,0,0,8497,8481,1,0,0,0,8498,8499, + 1,0,0,0,8499,8497,1,0,0,0,8499,8500,1,0,0,0,8500,933,1,0,0,0,8501, + 8505,3,936,468,0,8502,8503,5,511,0,0,8503,8505,3,816,408,0,8504, + 8501,1,0,0,0,8504,8502,1,0,0,0,8505,935,1,0,0,0,8506,8509,3,826, + 413,0,8507,8509,3,836,418,0,8508,8506,1,0,0,0,8508,8507,1,0,0,0, + 8509,937,1,0,0,0,8510,8512,3,758,379,0,8511,8510,1,0,0,0,8511,8512, + 1,0,0,0,8512,8514,1,0,0,0,8513,8515,3,574,287,0,8514,8513,1,0,0, + 0,8514,8515,1,0,0,0,8515,8517,1,0,0,0,8516,8518,3,604,302,0,8517, + 8516,1,0,0,0,8517,8518,1,0,0,0,8518,8520,1,0,0,0,8519,8521,3,634, + 317,0,8520,8519,1,0,0,0,8520,8521,1,0,0,0,8521,8523,1,0,0,0,8522, + 8524,3,594,297,0,8523,8522,1,0,0,0,8523,8524,1,0,0,0,8524,8526,1, + 0,0,0,8525,8527,3,700,350,0,8526,8525,1,0,0,0,8526,8527,1,0,0,0, + 8527,8529,1,0,0,0,8528,8530,3,698,349,0,8529,8528,1,0,0,0,8529,8530, + 1,0,0,0,8530,939,1,0,0,0,1196,943,950,1070,1072,1081,1086,1092,1127, + 1137,1143,1148,1155,1160,1167,1178,1186,1190,1202,1208,1214,1218, + 1223,1227,1240,1250,1252,1258,1263,1276,1279,1284,1289,1300,1304, + 1316,1320,1323,1327,1339,1357,1364,1372,1377,1384,1392,1398,1406, + 1414,1418,1432,1437,1442,1454,1460,1472,1477,1487,1493,1498,1507, + 1514,1519,1524,1534,1539,1544,1551,1555,1569,1575,1581,1586,1593, + 1602,1611,1620,1629,1633,1645,1653,1663,1683,1688,1691,1698,1701, + 1705,1709,1712,1717,1722,1726,1735,1741,1745,1754,1757,1763,1772, + 1784,1788,1792,1797,1800,1806,1808,1810,1814,1820,1824,1829,1834, + 1838,1841,1848,1861,1874,1899,1909,1916,1921,1925,1932,1937,1940, + 1942,1947,1951,1955,1959,1964,1967,1971,1974,1978,1986,1991,1994, + 1998,2004,2013,2017,2027,2032,2036,2040,2042,2044,2051,2056,2060, + 2065,2077,2082,2086,2090,2095,2099,2102,2105,2108,2111,2114,2119, + 2122,2125,2128,2131,2134,2140,2144,2147,2150,2153,2156,2158,2165, + 2173,2183,2188,2198,2201,2206,2211,2216,2219,2224,2233,2235,2239, + 2242,2246,2251,2256,2260,2263,2267,2270,2275,2278,2283,2286,2290, + 2293,2296,2301,2304,2312,2324,2328,2335,2340,2343,2346,2349,2354, + 2365,2371,2375,2378,2381,2386,2393,2396,2400,2408,2413,2416,2419, + 2426,2431,2440,2443,2446,2451,2454,2466,2476,2493,2497,2501,2503, + 2520,2522,2538,2549,2552,2555,2564,2573,2589,2592,2595,2603,2607, + 2614,2623,2627,2633,2637,2640,2643,2646,2649,2655,2659,2664,2668, + 2671,2674,2677,2682,2688,2692,2696,2700,2706,2708,2713,2719,2725, + 2729,2744,2749,2752,2754,2757,2761,2765,2768,2771,2779,2785,2787, + 2793,2798,2803,2807,2814,2816,2827,2866,2876,2878,2881,2885,2889, + 2899,2901,2907,2909,2918,2930,2944,2949,2952,2959,2964,2972,2974, + 2980,2985,2989,2994,3000,3007,3013,3015,3024,3030,3038,3044,3049, + 3054,3062,3077,3079,3083,3087,3090,3093,3102,3105,3108,3114,3120, + 3124,3136,3142,3145,3150,3154,3161,3171,3173,3197,3209,3214,3216, + 3220,3223,3226,3236,3239,3249,3254,3259,3262,3265,3273,3279,3286, + 3294,3297,3308,3312,3318,3325,3328,3337,3351,3354,3368,3379,3382, + 3394,3399,3412,3417,3430,3439,3442,3445,3452,3455,3467,3473,3475, + 3483,3491,3499,3511,3516,3527,3538,3546,3554,3561,3568,3570,3573, + 3578,3583,3602,3611,3614,3641,3650,3653,3657,3661,3665,3672,3676, + 3680,3684,3688,3693,3697,3702,3708,3713,3720,3724,3730,3734,3739, + 3747,3753,3758,3765,3770,3774,3779,3785,3792,3797,3804,3809,3816, + 3820,3828,3832,3834,3837,3842,3852,3867,3870,3878,3885,3890,3896, + 3900,3907,3912,3915,3918,3922,3931,3949,3952,3984,3989,3995,4015, + 4020,4026,4029,4033,4037,4043,4046,4050,4054,4059,4062,4065,4068, + 4081,4087,4095,4102,4107,4110,4117,4120,4128,4131,4136,4143,4146, + 4166,4178,4181,4187,4192,4201,4209,4214,4220,4227,4235,4238,4249, + 4251,4265,4271,4279,4281,4287,4291,4294,4297,4302,4307,4311,4314, + 4317,4320,4323,4331,4342,4345,4348,4353,4356,4360,4364,4370,4378, + 4381,4394,4399,4401,4406,4413,4420,4429,4437,4445,4452,4460,4467, + 4475,4479,4483,4485,4491,4496,4500,4507,4512,4517,4522,4524,4534, + 4544,4560,4578,4590,4597,4612,4617,4620,4625,4630,4635,4638,4641, + 4646,4653,4657,4662,4669,4673,4679,4688,4697,4709,4711,4724,4730, + 4734,4736,4743,4756,4763,4765,4781,4785,4789,4794,4799,4804,4809, + 4812,4824,4877,4886,4890,4899,4903,4912,4916,4921,4924,4928,4933, + 4935,4944,4949,4960,4964,4978,4986,5024,5026,5045,5048,5075,5079, + 5083,5087,5091,5094,5109,5116,5130,5143,5168,5187,5202,5218,5225, + 5236,5239,5258,5261,5274,5278,5298,5310,5314,5336,5340,5350,5354, + 5360,5364,5368,5372,5379,5384,5395,5399,5402,5407,5413,5424,5428, + 5431,5435,5439,5442,5452,5455,5459,5464,5470,5473,5478,5481,5488, + 5490,5496,5500,5509,5514,5516,5526,5529,5534,5542,5545,5550,5552, + 5554,5560,5577,5583,5596,5602,5606,5611,5641,5656,5661,5665,5678, + 5682,5684,5693,5699,5701,5705,5708,5711,5714,5717,5719,5722,5726, + 5734,5739,5742,5748,5752,5756,5761,5763,5767,5771,5778,5784,5788, + 5790,5792,5805,5813,5821,5832,5842,5847,5851,5855,5862,5865,5867, + 5875,5879,5882,5889,5896,5901,5908,5911,5913,5916,5922,5927,5931, + 5938,5948,5955,5958,5961,5965,5976,5979,5982,5985,5988,5995,5998, + 6001,6008,6020,6027,6029,6034,6039,6041,6047,6054,6059,6064,6068, + 6072,6076,6078,6082,6086,6089,6092,6094,6104,6106,6111,6115,6120, + 6124,6131,6136,6140,6143,6149,6152,6171,6178,6182,6185,6189,6193, + 6196,6199,6204,6213,6220,6224,6228,6232,6235,6237,6242,6246,6251, + 6257,6264,6269,6274,6283,6290,6298,6309,6314,6318,6321,6325,6330, + 6334,6339,6347,6358,6363,6367,6370,6373,6375,6378,6381,6384,6394, + 6399,6405,6409,6411,6418,6423,6429,6431,6436,6440,6444,6446,6449, + 6456,6461,6464,6470,6474,6480,6489,6495,6497,6502,6505,6514,6521, + 6523,6530,6535,6538,6548,6559,6564,6568,6576,6586,6593,6599,6610, + 6616,6626,6635,6639,6642,6644,6646,6650,6658,6661,6666,6671,6678, + 6680,6686,6690,6693,6698,6701,6703,6709,6718,6724,6727,6735,6738, + 6742,6748,6750,6753,6757,6762,6769,6776,6778,6784,6786,6791,6793, + 6797,6806,6810,6818,6820,6834,6837,6845,6854,6860,6865,6873,6875, + 6880,6884,6889,6894,6900,6916,6918,6927,6942,6947,6950,6956,6961, + 6974,6979,6983,6990,7009,7021,7026,7034,7036,7038,7047,7050,7055, + 7060,7063,7074,7082,7087,7089,7092,7096,7107,7128,7136,7149,7159, + 7165,7171,7174,7177,7203,7205,7226,7236,7249,7254,7258,7260,7272, + 7279,7285,7291,7295,7306,7319,7323,7328,7331,7334,7343,7354,7356, + 7360,7365,7374,7379,7387,7397,7405,7409,7412,7419,7431,7435,7442, + 7450,7452,7461,7464,7476,7485,7492,7501,7511,7516,7520,7522,7525, + 7530,7535,7543,7549,7552,7556,7558,7565,7575,7583,7591,7599,7616, + 7623,7631,7648,7654,7667,7669,7680,7682,7690,7696,7701,7709,7714, + 7717,7726,7733,7738,7742,7747,7753,7758,7766,7821,7828,7834,7836, + 7838,7840,7846,7850,7854,7865,7868,7872,7876,7880,7883,7886,7889, + 7898,7903,7907,7940,7950,7954,7960,7965,7974,7982,7993,8001,8010, + 8019,8024,8028,8038,8043,8051,8056,8059,8066,8072,8080,8088,8091, + 8098,8100,8103,8109,8118,8122,8136,8139,8141,8147,8157,8159,8161, + 8169,8172,8175,8185,8193,8199,8205,8212,8216,8220,8223,8226,8232, + 8239,8242,8250,8252,8261,8266,8268,8275,8281,8284,8296,8303,8305, + 8309,8315,8320,8324,8327,8330,8339,8342,8345,8349,8353,8355,8358, + 8361,8367,8374,8381,8387,8389,8393,8398,8416,8421,8423,8432,8439, + 8443,8455,8458,8471,8474,8478,8487,8494,8499,8504,8508,8511,8514, + 8517,8520,8523,8526,8529 ]; private static __ATN: antlr.ATN; @@ -81637,6 +80402,33 @@ export class ProcedureNameCreateContext extends antlr.ParserRuleContext { } +export class EmptyColumnContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_emptyColumn; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterEmptyColumn) { + listener.enterEmptyColumn(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitEmptyColumn) { + listener.exitEmptyColumn(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitEmptyColumn) { + return visitor.visitEmptyColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -81647,6 +80439,12 @@ export class ColumnNameContext extends antlr.ParserRuleContext { public optIndirection(): OptIndirectionContext | null { return this.getRuleContext(0, OptIndirectionContext); } + public DOT(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.DOT, 0); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } public override get ruleIndex(): number { return PostgreSqlParser.RULE_columnName; } @@ -81674,11 +80472,17 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colId(): ColIdContext { - return this.getRuleContext(0, ColIdContext)!; + public colId(): ColIdContext | null { + return this.getRuleContext(0, ColIdContext); } - public optIndirection(): OptIndirectionContext { - return this.getRuleContext(0, OptIndirectionContext)!; + public optIndirection(): OptIndirectionContext | null { + return this.getRuleContext(0, OptIndirectionContext); + } + public DOT(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.DOT, 0); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); } public override get ruleIndex(): number { return PostgreSqlParser.RULE_columnNamePath; diff --git a/src/lib/postgresql/PostgreSqlParserListener.ts b/src/lib/postgresql/PostgreSqlParserListener.ts index d61c4877..6bb354d2 100644 --- a/src/lib/postgresql/PostgreSqlParserListener.ts +++ b/src/lib/postgresql/PostgreSqlParserListener.ts @@ -425,6 +425,7 @@ import { RoutineNameCreateContext } from "./PostgreSqlParser.js"; import { RoutineNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameCreateContext } from "./PostgreSqlParser.js"; +import { EmptyColumnContext } from "./PostgreSqlParser.js"; import { ColumnNameContext } from "./PostgreSqlParser.js"; import { ColumnNamePathContext } from "./PostgreSqlParser.js"; import { ColumnNameCreateContext } from "./PostgreSqlParser.js"; @@ -4723,6 +4724,16 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitProcedureNameCreate?: (ctx: ProcedureNameCreateContext) => void; + /** + * Enter a parse tree produced by `PostgreSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + enterEmptyColumn?: (ctx: EmptyColumnContext) => void; + /** + * Exit a parse tree produced by `PostgreSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + exitEmptyColumn?: (ctx: EmptyColumnContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.columnName`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParserVisitor.ts b/src/lib/postgresql/PostgreSqlParserVisitor.ts index 2d790d2f..04bcded7 100644 --- a/src/lib/postgresql/PostgreSqlParserVisitor.ts +++ b/src/lib/postgresql/PostgreSqlParserVisitor.ts @@ -425,6 +425,7 @@ import { RoutineNameCreateContext } from "./PostgreSqlParser.js"; import { RoutineNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameCreateContext } from "./PostgreSqlParser.js"; +import { EmptyColumnContext } from "./PostgreSqlParser.js"; import { ColumnNameContext } from "./PostgreSqlParser.js"; import { ColumnNamePathContext } from "./PostgreSqlParser.js"; import { ColumnNameCreateContext } from "./PostgreSqlParser.js"; @@ -3031,6 +3032,12 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `PostgreSqlParser.emptyColumn`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEmptyColumn?: (ctx: EmptyColumnContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.columnName`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 245721e6..aab2f55d 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -830,8 +830,10 @@ tableNameCreate tableName viewNameCreate viewName +emptyColumn columnName columnNamePath +columnNamePathAllowEmpty columnNameSeq columnNameCreate identifierReference @@ -901,6 +903,7 @@ tableAlias rowFormat multipartIdentifierList multipartIdentifier +multipartIdentifierAllowEmpty multipartIdentifierPropertyList multipartIdentifierProperty tableIdentifier @@ -977,4 +980,4 @@ nonReserved atn: -[4, 1, 393, 3799, 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, 1, 0, 5, 0, 368, 8, 0, 10, 0, 12, 0, 371, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 377, 8, 1, 1, 2, 1, 2, 3, 2, 381, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 386, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 393, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 398, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 408, 8, 2, 10, 2, 12, 2, 411, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 430, 8, 2, 1, 2, 1, 2, 3, 2, 434, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 440, 8, 2, 1, 2, 3, 2, 443, 8, 2, 1, 2, 3, 2, 446, 8, 2, 1, 2, 1, 2, 3, 2, 450, 8, 2, 1, 2, 3, 2, 453, 8, 2, 1, 2, 1, 2, 3, 2, 457, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 464, 8, 2, 1, 2, 3, 2, 467, 8, 2, 1, 2, 1, 2, 3, 2, 471, 8, 2, 1, 2, 3, 2, 474, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 479, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 492, 8, 2, 10, 2, 12, 2, 495, 9, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 508, 8, 2, 1, 2, 3, 2, 511, 8, 2, 1, 2, 1, 2, 3, 2, 515, 8, 2, 1, 2, 3, 2, 518, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 535, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 541, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 546, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 579, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 589, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 600, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 611, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 622, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 627, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 636, 8, 2, 1, 2, 1, 2, 3, 2, 640, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 646, 8, 2, 1, 2, 1, 2, 3, 2, 650, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 655, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 673, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 681, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 687, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 698, 8, 2, 1, 2, 1, 2, 3, 2, 702, 8, 2, 1, 2, 4, 2, 705, 8, 2, 11, 2, 12, 2, 706, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 722, 8, 2, 1, 2, 1, 2, 3, 2, 726, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 731, 8, 2, 10, 2, 12, 2, 734, 9, 2, 1, 2, 3, 2, 737, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 743, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 773, 8, 2, 1, 2, 1, 2, 3, 2, 777, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 782, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 795, 8, 2, 1, 2, 3, 2, 798, 8, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 3, 2, 805, 8, 2, 1, 2, 1, 2, 3, 2, 809, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 818, 8, 2, 10, 2, 12, 2, 821, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 829, 8, 2, 1, 2, 3, 2, 832, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 841, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 846, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 859, 8, 2, 1, 2, 3, 2, 862, 8, 2, 1, 2, 1, 2, 3, 2, 866, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 879, 8, 2, 10, 2, 12, 2, 882, 9, 2, 3, 2, 884, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 890, 8, 2, 1, 2, 1, 2, 3, 2, 894, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 911, 8, 2, 10, 2, 12, 2, 914, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 921, 8, 2, 1, 2, 1, 2, 3, 2, 925, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 931, 8, 2, 1, 2, 3, 2, 934, 8, 2, 1, 2, 1, 2, 3, 2, 938, 8, 2, 1, 2, 3, 2, 941, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 947, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 952, 8, 2, 1, 2, 1, 2, 3, 2, 956, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 963, 8, 2, 1, 2, 3, 2, 966, 8, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 976, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 981, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 990, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 998, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1004, 8, 2, 1, 2, 3, 2, 1007, 8, 2, 1, 2, 3, 2, 1010, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1016, 8, 2, 1, 2, 1, 2, 3, 2, 1020, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1025, 8, 2, 1, 2, 3, 2, 1028, 8, 2, 1, 2, 1, 2, 3, 2, 1032, 8, 2, 3, 2, 1034, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1042, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1050, 8, 2, 1, 2, 3, 2, 1053, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1060, 8, 2, 1, 2, 3, 2, 1063, 8, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1075, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1086, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1091, 8, 2, 1, 2, 3, 2, 1094, 8, 2, 1, 2, 1, 2, 3, 2, 1098, 8, 2, 1, 2, 3, 2, 1101, 8, 2, 1, 2, 1, 2, 3, 2, 1105, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1115, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1120, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1131, 8, 2, 10, 2, 12, 2, 1134, 9, 2, 3, 2, 1136, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1144, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1150, 8, 2, 1, 2, 3, 2, 1153, 8, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1169, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1174, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1180, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1186, 8, 2, 1, 2, 3, 2, 1189, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1196, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1201, 8, 2, 10, 2, 12, 2, 1204, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1209, 8, 2, 10, 2, 12, 2, 1212, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1223, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1229, 8, 2, 10, 2, 12, 2, 1232, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1256, 8, 2, 10, 2, 12, 2, 1259, 9, 2, 3, 2, 1261, 8, 2, 1, 2, 1, 2, 5, 2, 1265, 8, 2, 10, 2, 12, 2, 1268, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1274, 8, 2, 10, 2, 12, 2, 1277, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1283, 8, 2, 10, 2, 12, 2, 1286, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1291, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1296, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1301, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1308, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1313, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1318, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1325, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1331, 8, 2, 10, 2, 12, 2, 1334, 9, 2, 3, 2, 1336, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1342, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1349, 8, 3, 1, 3, 1, 3, 3, 3, 1353, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1416, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1424, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1431, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1439, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1451, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1456, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 3, 8, 1465, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 1473, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1478, 8, 9, 3, 9, 1480, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1488, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1493, 8, 9, 1, 9, 1, 9, 3, 9, 1497, 8, 9, 1, 9, 3, 9, 1500, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1508, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1513, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1522, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1527, 8, 9, 1, 9, 3, 9, 1530, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1535, 8, 9, 1, 9, 1, 9, 3, 9, 1539, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1544, 8, 9, 3, 9, 1546, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1551, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 1558, 8, 11, 10, 11, 12, 11, 1561, 9, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1568, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1574, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1583, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1588, 8, 15, 10, 15, 12, 15, 1591, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1597, 8, 16, 10, 16, 12, 16, 1600, 9, 16, 1, 17, 1, 17, 3, 17, 1604, 8, 17, 1, 17, 3, 17, 1607, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 1632, 8, 19, 10, 19, 12, 19, 1635, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 1644, 8, 21, 10, 21, 12, 21, 1647, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1653, 8, 22, 1, 22, 3, 22, 1656, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1661, 8, 23, 10, 23, 12, 23, 1664, 9, 23, 1, 23, 3, 23, 1667, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1673, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1679, 8, 25, 10, 25, 12, 25, 1682, 9, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1688, 8, 26, 1, 26, 3, 26, 1691, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1697, 8, 27, 10, 27, 12, 27, 1700, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1708, 8, 28, 10, 28, 12, 28, 1711, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1721, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1729, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1735, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 4, 32, 1744, 8, 32, 11, 32, 12, 32, 1745, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1753, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1760, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1772, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1778, 8, 32, 10, 32, 12, 32, 1781, 9, 32, 1, 32, 5, 32, 1784, 8, 32, 10, 32, 12, 32, 1787, 9, 32, 1, 32, 5, 32, 1790, 8, 32, 10, 32, 12, 32, 1793, 9, 32, 3, 32, 1795, 8, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 1811, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 1818, 8, 41, 10, 41, 12, 41, 1821, 9, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1831, 8, 43, 1, 44, 1, 44, 1, 44, 3, 44, 1836, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1841, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1846, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1851, 8, 44, 1, 44, 3, 44, 1854, 8, 44, 1, 44, 3, 44, 1857, 8, 44, 1, 44, 1, 44, 3, 44, 1861, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1866, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1871, 8, 46, 10, 46, 12, 46, 1874, 9, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1879, 8, 47, 10, 47, 12, 47, 1882, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1890, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1896, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1902, 8, 48, 1, 48, 5, 48, 1905, 8, 48, 10, 48, 12, 48, 1908, 9, 48, 1, 49, 1, 49, 1, 49, 4, 49, 1913, 8, 49, 11, 49, 12, 49, 1914, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1923, 8, 49, 10, 49, 12, 49, 1926, 9, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1934, 8, 49, 1, 50, 1, 50, 3, 50, 1938, 8, 50, 1, 50, 3, 50, 1941, 8, 50, 1, 50, 1, 50, 3, 50, 1945, 8, 50, 1, 51, 1, 51, 3, 51, 1949, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1955, 8, 51, 10, 51, 12, 51, 1958, 9, 51, 1, 51, 3, 51, 1961, 8, 51, 1, 51, 3, 51, 1964, 8, 51, 1, 51, 3, 51, 1967, 8, 51, 1, 51, 3, 51, 1970, 8, 51, 1, 51, 1, 51, 3, 51, 1974, 8, 51, 1, 52, 1, 52, 3, 52, 1978, 8, 52, 1, 52, 5, 52, 1981, 8, 52, 10, 52, 12, 52, 1984, 9, 52, 1, 52, 3, 52, 1987, 8, 52, 1, 52, 3, 52, 1990, 8, 52, 1, 52, 3, 52, 1993, 8, 52, 1, 52, 3, 52, 1996, 8, 52, 1, 52, 1, 52, 3, 52, 2000, 8, 52, 1, 52, 5, 52, 2003, 8, 52, 10, 52, 12, 52, 2006, 9, 52, 1, 52, 3, 52, 2009, 8, 52, 1, 52, 3, 52, 2012, 8, 52, 1, 52, 3, 52, 2015, 8, 52, 1, 52, 3, 52, 2018, 8, 52, 3, 52, 2020, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2026, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2033, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2038, 8, 53, 1, 53, 3, 53, 2041, 8, 53, 1, 53, 3, 53, 2044, 8, 53, 1, 53, 1, 53, 3, 53, 2048, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2058, 8, 53, 1, 53, 1, 53, 3, 53, 2062, 8, 53, 3, 53, 2064, 8, 53, 1, 53, 3, 53, 2067, 8, 53, 1, 53, 1, 53, 3, 53, 2071, 8, 53, 1, 54, 1, 54, 5, 54, 2075, 8, 54, 10, 54, 12, 54, 2078, 9, 54, 1, 54, 3, 54, 2081, 8, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2092, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2100, 8, 56, 3, 56, 2102, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 1, 57, 3, 57, 2113, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2125, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2132, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2145, 8, 59, 10, 59, 12, 59, 2148, 9, 59, 1, 59, 1, 59, 3, 59, 2152, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2157, 8, 60, 10, 60, 12, 60, 2160, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 2175, 8, 64, 1, 64, 5, 64, 2178, 8, 64, 10, 64, 12, 64, 2181, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2191, 8, 65, 10, 65, 12, 65, 2194, 9, 65, 1, 65, 1, 65, 3, 65, 2198, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2204, 8, 66, 10, 66, 12, 66, 2207, 9, 66, 1, 66, 5, 66, 2210, 8, 66, 10, 66, 12, 66, 2213, 9, 66, 1, 66, 3, 66, 2216, 8, 66, 1, 66, 3, 66, 2219, 8, 66, 1, 67, 3, 67, 2222, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2229, 8, 67, 1, 67, 3, 67, 2232, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2238, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2245, 8, 68, 10, 68, 12, 68, 2248, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2255, 8, 68, 10, 68, 12, 68, 2258, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2270, 8, 68, 10, 68, 12, 68, 2273, 9, 68, 1, 68, 1, 68, 3, 68, 2277, 8, 68, 3, 68, 2279, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2284, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2291, 8, 70, 10, 70, 12, 70, 2294, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2303, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2308, 8, 70, 5, 70, 2310, 8, 70, 10, 70, 12, 70, 2313, 9, 70, 1, 70, 1, 70, 3, 70, 2317, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2324, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2329, 8, 71, 5, 71, 2331, 8, 71, 10, 71, 12, 71, 2334, 9, 71, 3, 71, 2336, 8, 71, 1, 71, 3, 71, 2339, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2351, 8, 72, 10, 72, 12, 72, 2354, 9, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2364, 8, 73, 10, 73, 12, 73, 2367, 9, 73, 1, 73, 1, 73, 3, 73, 2371, 8, 73, 1, 74, 1, 74, 3, 74, 2375, 8, 74, 1, 74, 3, 74, 2378, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2383, 8, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2388, 8, 75, 1, 75, 1, 75, 3, 75, 2392, 8, 75, 1, 75, 3, 75, 2395, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2405, 8, 76, 10, 76, 12, 76, 2408, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2416, 8, 77, 10, 77, 12, 77, 2419, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2429, 8, 77, 10, 77, 12, 77, 2432, 9, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2440, 8, 78, 10, 78, 12, 78, 2443, 9, 78, 1, 78, 1, 78, 3, 78, 2447, 8, 78, 1, 78, 3, 78, 2450, 8, 78, 1, 79, 1, 79, 3, 79, 2454, 8, 79, 1, 79, 3, 79, 2457, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2469, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2476, 8, 82, 10, 82, 12, 82, 2479, 9, 82, 3, 82, 2481, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2486, 8, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2491, 8, 82, 10, 82, 12, 82, 2494, 9, 82, 3, 82, 2496, 8, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 2502, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2508, 8, 84, 10, 84, 12, 84, 2511, 9, 84, 3, 84, 2513, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 2518, 8, 85, 1, 85, 1, 85, 3, 85, 2522, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2528, 8, 85, 1, 85, 1, 85, 3, 85, 2532, 8, 85, 1, 86, 3, 86, 2535, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2540, 8, 86, 1, 86, 3, 86, 2543, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2548, 8, 86, 3, 86, 2550, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2556, 8, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2561, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2568, 8, 88, 1, 89, 3, 89, 2571, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2589, 8, 89, 3, 89, 2591, 8, 89, 1, 89, 3, 89, 2594, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 5, 91, 2603, 8, 91, 10, 91, 12, 91, 2606, 9, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2612, 8, 92, 10, 92, 12, 92, 2615, 9, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2621, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 2627, 8, 94, 10, 94, 12, 94, 2630, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 3, 95, 2637, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2642, 8, 96, 1, 96, 3, 96, 2645, 8, 96, 1, 96, 3, 96, 2648, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2654, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2662, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2670, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 2680, 8, 98, 10, 98, 12, 98, 2683, 9, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2688, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2695, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2702, 8, 99, 3, 99, 2704, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 2715, 8, 100, 10, 100, 12, 100, 2718, 9, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2723, 8, 100, 3, 100, 2725, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2734, 8, 100, 3, 100, 2736, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 2744, 8, 102, 1, 103, 1, 103, 3, 103, 2748, 8, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 2758, 8, 105, 10, 105, 12, 105, 2761, 9, 105, 3, 105, 2763, 8, 105, 1, 105, 1, 105, 1, 106, 3, 106, 2768, 8, 106, 1, 106, 1, 106, 3, 106, 2772, 8, 106, 3, 106, 2774, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2783, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2795, 8, 107, 3, 107, 2797, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2804, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2811, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2817, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2823, 8, 107, 3, 107, 2825, 8, 107, 1, 108, 1, 108, 1, 108, 5, 108, 2830, 8, 108, 10, 108, 12, 108, 2833, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 2838, 8, 109, 10, 109, 12, 109, 2841, 9, 109, 1, 110, 1, 110, 1, 110, 5, 110, 2846, 8, 110, 10, 110, 12, 110, 2849, 9, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2854, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2859, 8, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2866, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2877, 8, 116, 10, 116, 12, 116, 2880, 9, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 3, 117, 2887, 8, 117, 1, 117, 3, 117, 2890, 8, 117, 1, 117, 1, 117, 3, 117, 2894, 8, 117, 3, 117, 2896, 8, 117, 1, 118, 1, 118, 1, 118, 5, 118, 2901, 8, 118, 10, 118, 12, 118, 2904, 9, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 2912, 8, 120, 10, 120, 12, 120, 2915, 9, 120, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 2921, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 2929, 8, 122, 10, 122, 12, 122, 2932, 9, 122, 1, 122, 1, 122, 3, 122, 2936, 8, 122, 1, 123, 1, 123, 3, 123, 2940, 8, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 3, 126, 2950, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2955, 8, 127, 10, 127, 12, 127, 2958, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 2970, 8, 128, 3, 128, 2972, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 2980, 8, 128, 10, 128, 12, 128, 2983, 9, 128, 1, 129, 3, 129, 2986, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 2994, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3001, 8, 129, 10, 129, 12, 129, 3004, 9, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3009, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3017, 8, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3022, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3032, 8, 129, 10, 129, 12, 129, 3035, 9, 129, 1, 129, 1, 129, 3, 129, 3039, 8, 129, 1, 129, 3, 129, 3042, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3048, 8, 129, 1, 129, 1, 129, 3, 129, 3052, 8, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3057, 8, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3062, 8, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3067, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3073, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3094, 8, 130, 10, 130, 12, 130, 3097, 9, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3107, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3119, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 4, 132, 3129, 8, 132, 11, 132, 12, 132, 3130, 1, 132, 1, 132, 3, 132, 3135, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 4, 132, 3142, 8, 132, 11, 132, 12, 132, 3143, 1, 132, 1, 132, 3, 132, 3148, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3164, 8, 132, 10, 132, 12, 132, 3167, 9, 132, 3, 132, 3169, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3177, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3186, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3195, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 4, 132, 3216, 8, 132, 11, 132, 12, 132, 3217, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3234, 8, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3239, 8, 132, 10, 132, 12, 132, 3242, 9, 132, 3, 132, 3244, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3253, 8, 132, 1, 132, 1, 132, 3, 132, 3257, 8, 132, 1, 132, 1, 132, 3, 132, 3261, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 4, 132, 3271, 8, 132, 11, 132, 12, 132, 3272, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3298, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3305, 8, 132, 1, 132, 3, 132, 3308, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3323, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3344, 8, 132, 1, 132, 1, 132, 3, 132, 3348, 8, 132, 3, 132, 3350, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3360, 8, 132, 10, 132, 12, 132, 3363, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3372, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 4, 134, 3385, 8, 134, 11, 134, 12, 134, 3386, 3, 134, 3389, 8, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 3, 139, 3402, 8, 139, 1, 140, 1, 140, 3, 140, 3406, 8, 140, 1, 141, 1, 141, 1, 141, 4, 141, 3411, 8, 141, 11, 141, 12, 141, 3412, 1, 142, 1, 142, 1, 142, 3, 142, 3418, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 3, 144, 3426, 8, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3431, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 3, 147, 3440, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3472, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 3491, 8, 149, 10, 149, 12, 149, 3494, 9, 149, 3, 149, 3496, 8, 149, 1, 149, 1, 149, 3, 149, 3500, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3506, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3512, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 3519, 8, 149, 10, 149, 12, 149, 3522, 9, 149, 1, 149, 3, 149, 3525, 8, 149, 3, 149, 3527, 8, 149, 1, 150, 1, 150, 1, 150, 5, 150, 3532, 8, 150, 10, 150, 12, 150, 3535, 9, 150, 1, 151, 1, 151, 1, 151, 5, 151, 3540, 8, 151, 10, 151, 12, 151, 3543, 9, 151, 1, 152, 1, 152, 1, 152, 5, 152, 3548, 8, 152, 10, 152, 12, 152, 3551, 9, 152, 1, 153, 1, 153, 1, 153, 5, 153, 3556, 8, 153, 10, 153, 12, 153, 3559, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3568, 8, 154, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3576, 8, 156, 10, 156, 12, 156, 3579, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3585, 8, 157, 1, 157, 1, 157, 3, 157, 3589, 8, 157, 1, 158, 1, 158, 1, 158, 5, 158, 3594, 8, 158, 10, 158, 12, 158, 3597, 9, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3602, 8, 159, 10, 159, 12, 159, 3605, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3620, 8, 160, 1, 161, 1, 161, 3, 161, 3624, 8, 161, 1, 161, 1, 161, 1, 161, 3, 161, 3629, 8, 161, 1, 161, 1, 161, 3, 161, 3633, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 5, 163, 3649, 8, 163, 10, 163, 12, 163, 3652, 9, 163, 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, 165, 5, 165, 3669, 8, 165, 10, 165, 12, 165, 3672, 9, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 3679, 8, 165, 10, 165, 12, 165, 3682, 9, 165, 3, 165, 3684, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3689, 8, 165, 3, 165, 3691, 8, 165, 1, 165, 3, 165, 3694, 8, 165, 1, 165, 3, 165, 3697, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 3707, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3716, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3721, 8, 168, 10, 168, 12, 168, 3724, 9, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3735, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 5, 171, 3742, 8, 171, 10, 171, 12, 171, 3745, 9, 171, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 4, 173, 3752, 8, 173, 11, 173, 12, 173, 3753, 1, 173, 3, 173, 3757, 8, 173, 1, 174, 1, 174, 3, 174, 3761, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 3767, 8, 175, 1, 176, 1, 176, 1, 177, 3, 177, 3772, 8, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3789, 8, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 9, 1132, 1202, 1210, 1230, 1257, 1266, 1275, 1284, 1332, 4, 96, 256, 260, 264, 183, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 0, 76, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 3, 0, 73, 73, 191, 191, 262, 262, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 3, 0, 10, 10, 290, 290, 331, 331, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 2, 0, 59, 59, 96, 96, 2, 0, 129, 129, 249, 249, 6, 0, 54, 54, 129, 129, 143, 143, 172, 172, 228, 228, 313, 313, 3, 0, 11, 11, 59, 59, 96, 96, 4, 0, 107, 107, 139, 139, 171, 171, 326, 326, 2, 0, 171, 171, 326, 326, 3, 0, 45, 45, 275, 275, 279, 279, 2, 0, 45, 45, 275, 275, 3, 0, 18, 18, 103, 103, 320, 320, 3, 0, 72, 72, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 15, 15, 264, 264, 2, 0, 124, 124, 250, 250, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 233, 233, 258, 258, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 379, 387, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4386, 0, 369, 1, 0, 0, 0, 2, 374, 1, 0, 0, 0, 4, 1335, 1, 0, 0, 0, 6, 1430, 1, 0, 0, 0, 8, 1432, 1, 0, 0, 0, 10, 1444, 1, 0, 0, 0, 12, 1457, 1, 0, 0, 0, 14, 1460, 1, 0, 0, 0, 16, 1464, 1, 0, 0, 0, 18, 1545, 1, 0, 0, 0, 20, 1547, 1, 0, 0, 0, 22, 1552, 1, 0, 0, 0, 24, 1573, 1, 0, 0, 0, 26, 1575, 1, 0, 0, 0, 28, 1582, 1, 0, 0, 0, 30, 1584, 1, 0, 0, 0, 32, 1592, 1, 0, 0, 0, 34, 1601, 1, 0, 0, 0, 36, 1612, 1, 0, 0, 0, 38, 1633, 1, 0, 0, 0, 40, 1636, 1, 0, 0, 0, 42, 1639, 1, 0, 0, 0, 44, 1650, 1, 0, 0, 0, 46, 1666, 1, 0, 0, 0, 48, 1672, 1, 0, 0, 0, 50, 1674, 1, 0, 0, 0, 52, 1685, 1, 0, 0, 0, 54, 1692, 1, 0, 0, 0, 56, 1703, 1, 0, 0, 0, 58, 1720, 1, 0, 0, 0, 60, 1728, 1, 0, 0, 0, 62, 1730, 1, 0, 0, 0, 64, 1794, 1, 0, 0, 0, 66, 1796, 1, 0, 0, 0, 68, 1798, 1, 0, 0, 0, 70, 1800, 1, 0, 0, 0, 72, 1802, 1, 0, 0, 0, 74, 1804, 1, 0, 0, 0, 76, 1806, 1, 0, 0, 0, 78, 1810, 1, 0, 0, 0, 80, 1812, 1, 0, 0, 0, 82, 1814, 1, 0, 0, 0, 84, 1822, 1, 0, 0, 0, 86, 1830, 1, 0, 0, 0, 88, 1835, 1, 0, 0, 0, 90, 1862, 1, 0, 0, 0, 92, 1867, 1, 0, 0, 0, 94, 1875, 1, 0, 0, 0, 96, 1883, 1, 0, 0, 0, 98, 1933, 1, 0, 0, 0, 100, 1937, 1, 0, 0, 0, 102, 1973, 1, 0, 0, 0, 104, 2019, 1, 0, 0, 0, 106, 2040, 1, 0, 0, 0, 108, 2072, 1, 0, 0, 0, 110, 2084, 1, 0, 0, 0, 112, 2087, 1, 0, 0, 0, 114, 2103, 1, 0, 0, 0, 116, 2117, 1, 0, 0, 0, 118, 2151, 1, 0, 0, 0, 120, 2153, 1, 0, 0, 0, 122, 2161, 1, 0, 0, 0, 124, 2165, 1, 0, 0, 0, 126, 2168, 1, 0, 0, 0, 128, 2171, 1, 0, 0, 0, 130, 2197, 1, 0, 0, 0, 132, 2199, 1, 0, 0, 0, 134, 2237, 1, 0, 0, 0, 136, 2278, 1, 0, 0, 0, 138, 2283, 1, 0, 0, 0, 140, 2316, 1, 0, 0, 0, 142, 2338, 1, 0, 0, 0, 144, 2340, 1, 0, 0, 0, 146, 2370, 1, 0, 0, 0, 148, 2372, 1, 0, 0, 0, 150, 2379, 1, 0, 0, 0, 152, 2396, 1, 0, 0, 0, 154, 2411, 1, 0, 0, 0, 156, 2435, 1, 0, 0, 0, 158, 2451, 1, 0, 0, 0, 160, 2458, 1, 0, 0, 0, 162, 2462, 1, 0, 0, 0, 164, 2465, 1, 0, 0, 0, 166, 2497, 1, 0, 0, 0, 168, 2512, 1, 0, 0, 0, 170, 2531, 1, 0, 0, 0, 172, 2549, 1, 0, 0, 0, 174, 2555, 1, 0, 0, 0, 176, 2557, 1, 0, 0, 0, 178, 2593, 1, 0, 0, 0, 180, 2595, 1, 0, 0, 0, 182, 2599, 1, 0, 0, 0, 184, 2607, 1, 0, 0, 0, 186, 2618, 1, 0, 0, 0, 188, 2622, 1, 0, 0, 0, 190, 2633, 1, 0, 0, 0, 192, 2669, 1, 0, 0, 0, 194, 2671, 1, 0, 0, 0, 196, 2675, 1, 0, 0, 0, 198, 2703, 1, 0, 0, 0, 200, 2724, 1, 0, 0, 0, 202, 2737, 1, 0, 0, 0, 204, 2743, 1, 0, 0, 0, 206, 2747, 1, 0, 0, 0, 208, 2749, 1, 0, 0, 0, 210, 2752, 1, 0, 0, 0, 212, 2773, 1, 0, 0, 0, 214, 2824, 1, 0, 0, 0, 216, 2826, 1, 0, 0, 0, 218, 2834, 1, 0, 0, 0, 220, 2842, 1, 0, 0, 0, 222, 2850, 1, 0, 0, 0, 224, 2858, 1, 0, 0, 0, 226, 2865, 1, 0, 0, 0, 228, 2869, 1, 0, 0, 0, 230, 2871, 1, 0, 0, 0, 232, 2878, 1, 0, 0, 0, 234, 2886, 1, 0, 0, 0, 236, 2897, 1, 0, 0, 0, 238, 2905, 1, 0, 0, 0, 240, 2907, 1, 0, 0, 0, 242, 2920, 1, 0, 0, 0, 244, 2935, 1, 0, 0, 0, 246, 2939, 1, 0, 0, 0, 248, 2941, 1, 0, 0, 0, 250, 2943, 1, 0, 0, 0, 252, 2949, 1, 0, 0, 0, 254, 2951, 1, 0, 0, 0, 256, 2971, 1, 0, 0, 0, 258, 3066, 1, 0, 0, 0, 260, 3072, 1, 0, 0, 0, 262, 3098, 1, 0, 0, 0, 264, 3349, 1, 0, 0, 0, 266, 3371, 1, 0, 0, 0, 268, 3388, 1, 0, 0, 0, 270, 3390, 1, 0, 0, 0, 272, 3392, 1, 0, 0, 0, 274, 3394, 1, 0, 0, 0, 276, 3396, 1, 0, 0, 0, 278, 3398, 1, 0, 0, 0, 280, 3403, 1, 0, 0, 0, 282, 3410, 1, 0, 0, 0, 284, 3414, 1, 0, 0, 0, 286, 3419, 1, 0, 0, 0, 288, 3425, 1, 0, 0, 0, 290, 3432, 1, 0, 0, 0, 292, 3434, 1, 0, 0, 0, 294, 3439, 1, 0, 0, 0, 296, 3471, 1, 0, 0, 0, 298, 3526, 1, 0, 0, 0, 300, 3528, 1, 0, 0, 0, 302, 3536, 1, 0, 0, 0, 304, 3544, 1, 0, 0, 0, 306, 3552, 1, 0, 0, 0, 308, 3567, 1, 0, 0, 0, 310, 3569, 1, 0, 0, 0, 312, 3572, 1, 0, 0, 0, 314, 3580, 1, 0, 0, 0, 316, 3590, 1, 0, 0, 0, 318, 3598, 1, 0, 0, 0, 320, 3619, 1, 0, 0, 0, 322, 3621, 1, 0, 0, 0, 324, 3634, 1, 0, 0, 0, 326, 3639, 1, 0, 0, 0, 328, 3653, 1, 0, 0, 0, 330, 3696, 1, 0, 0, 0, 332, 3706, 1, 0, 0, 0, 334, 3715, 1, 0, 0, 0, 336, 3717, 1, 0, 0, 0, 338, 3734, 1, 0, 0, 0, 340, 3736, 1, 0, 0, 0, 342, 3738, 1, 0, 0, 0, 344, 3746, 1, 0, 0, 0, 346, 3756, 1, 0, 0, 0, 348, 3760, 1, 0, 0, 0, 350, 3766, 1, 0, 0, 0, 352, 3768, 1, 0, 0, 0, 354, 3771, 1, 0, 0, 0, 356, 3788, 1, 0, 0, 0, 358, 3790, 1, 0, 0, 0, 360, 3792, 1, 0, 0, 0, 362, 3794, 1, 0, 0, 0, 364, 3796, 1, 0, 0, 0, 366, 368, 3, 2, 1, 0, 367, 366, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 372, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 372, 373, 5, 0, 0, 1, 373, 1, 1, 0, 0, 0, 374, 376, 3, 4, 2, 0, 375, 377, 5, 1, 0, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 3, 1, 0, 0, 0, 378, 1336, 3, 16, 8, 0, 379, 381, 3, 32, 16, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 1336, 3, 64, 32, 0, 383, 385, 5, 330, 0, 0, 384, 386, 3, 26, 13, 0, 385, 384, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 1336, 3, 66, 33, 0, 388, 389, 5, 269, 0, 0, 389, 392, 5, 37, 0, 0, 390, 393, 3, 348, 174, 0, 391, 393, 3, 358, 179, 0, 392, 390, 1, 0, 0, 0, 392, 391, 1, 0, 0, 0, 393, 1336, 1, 0, 0, 0, 394, 395, 5, 59, 0, 0, 395, 397, 3, 26, 13, 0, 396, 398, 3, 160, 80, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 409, 3, 68, 34, 0, 400, 401, 5, 51, 0, 0, 401, 408, 3, 358, 179, 0, 402, 403, 5, 170, 0, 0, 403, 408, 3, 358, 179, 0, 404, 405, 5, 346, 0, 0, 405, 406, 7, 0, 0, 0, 406, 408, 3, 42, 21, 0, 407, 400, 1, 0, 0, 0, 407, 402, 1, 0, 0, 0, 407, 404, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 1336, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 413, 5, 11, 0, 0, 413, 414, 3, 26, 13, 0, 414, 415, 3, 66, 33, 0, 415, 416, 5, 269, 0, 0, 416, 417, 7, 0, 0, 0, 417, 418, 3, 42, 21, 0, 418, 1336, 1, 0, 0, 0, 419, 420, 5, 11, 0, 0, 420, 421, 3, 26, 13, 0, 421, 422, 3, 66, 33, 0, 422, 423, 5, 269, 0, 0, 423, 424, 5, 170, 0, 0, 424, 425, 3, 358, 179, 0, 425, 1336, 1, 0, 0, 0, 426, 427, 5, 96, 0, 0, 427, 429, 3, 26, 13, 0, 428, 430, 3, 162, 81, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 433, 3, 66, 33, 0, 432, 434, 7, 1, 0, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 1336, 1, 0, 0, 0, 435, 436, 5, 273, 0, 0, 436, 439, 7, 2, 0, 0, 437, 438, 7, 3, 0, 0, 438, 440, 3, 218, 109, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 445, 1, 0, 0, 0, 441, 443, 5, 163, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 446, 3, 358, 179, 0, 445, 442, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 1336, 1, 0, 0, 0, 447, 449, 5, 59, 0, 0, 448, 450, 5, 298, 0, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 452, 1, 0, 0, 0, 451, 453, 5, 109, 0, 0, 452, 451, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 456, 5, 293, 0, 0, 455, 457, 3, 160, 80, 0, 456, 455, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 463, 3, 70, 35, 0, 459, 460, 5, 2, 0, 0, 460, 461, 3, 316, 158, 0, 461, 462, 5, 3, 0, 0, 462, 464, 1, 0, 0, 0, 463, 459, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 466, 1, 0, 0, 0, 465, 467, 3, 36, 18, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 473, 3, 38, 19, 0, 469, 471, 5, 20, 0, 0, 470, 469, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 474, 3, 16, 8, 0, 473, 470, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 1336, 1, 0, 0, 0, 475, 476, 5, 59, 0, 0, 476, 478, 5, 293, 0, 0, 477, 479, 3, 160, 80, 0, 478, 477, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 481, 3, 70, 35, 0, 481, 482, 5, 163, 0, 0, 482, 493, 3, 72, 36, 0, 483, 492, 3, 36, 18, 0, 484, 492, 3, 214, 107, 0, 485, 492, 3, 58, 29, 0, 486, 487, 5, 170, 0, 0, 487, 492, 3, 358, 179, 0, 488, 489, 5, 297, 0, 0, 489, 492, 3, 42, 21, 0, 490, 492, 3, 40, 20, 0, 491, 483, 1, 0, 0, 0, 491, 484, 1, 0, 0, 0, 491, 485, 1, 0, 0, 0, 491, 486, 1, 0, 0, 0, 491, 488, 1, 0, 0, 0, 491, 490, 1, 0, 0, 0, 492, 495, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 1336, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 496, 497, 5, 59, 0, 0, 497, 499, 5, 208, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 5, 244, 0, 0, 501, 502, 5, 293, 0, 0, 502, 507, 3, 70, 35, 0, 503, 504, 5, 2, 0, 0, 504, 505, 3, 316, 158, 0, 505, 506, 5, 3, 0, 0, 506, 508, 1, 0, 0, 0, 507, 503, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 510, 1, 0, 0, 0, 509, 511, 3, 36, 18, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 517, 3, 38, 19, 0, 513, 515, 5, 20, 0, 0, 514, 513, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 518, 3, 16, 8, 0, 517, 514, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 1336, 1, 0, 0, 0, 519, 520, 5, 13, 0, 0, 520, 521, 5, 293, 0, 0, 521, 523, 3, 72, 36, 0, 522, 524, 3, 22, 11, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 5, 55, 0, 0, 526, 534, 5, 282, 0, 0, 527, 535, 5, 196, 0, 0, 528, 529, 5, 119, 0, 0, 529, 530, 5, 50, 0, 0, 530, 535, 3, 82, 41, 0, 531, 532, 5, 119, 0, 0, 532, 533, 5, 10, 0, 0, 533, 535, 5, 50, 0, 0, 534, 527, 1, 0, 0, 0, 534, 528, 1, 0, 0, 0, 534, 531, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 1336, 1, 0, 0, 0, 536, 537, 5, 13, 0, 0, 537, 540, 5, 294, 0, 0, 538, 539, 7, 3, 0, 0, 539, 541, 3, 66, 33, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 5, 55, 0, 0, 543, 545, 5, 282, 0, 0, 544, 546, 5, 196, 0, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 1336, 1, 0, 0, 0, 547, 548, 5, 11, 0, 0, 548, 549, 5, 293, 0, 0, 549, 550, 3, 72, 36, 0, 550, 551, 5, 8, 0, 0, 551, 552, 5, 49, 0, 0, 552, 553, 3, 302, 151, 0, 553, 1336, 1, 0, 0, 0, 554, 555, 5, 11, 0, 0, 555, 556, 5, 293, 0, 0, 556, 557, 3, 72, 36, 0, 557, 558, 5, 8, 0, 0, 558, 559, 5, 50, 0, 0, 559, 560, 5, 2, 0, 0, 560, 561, 3, 300, 150, 0, 561, 562, 5, 3, 0, 0, 562, 1336, 1, 0, 0, 0, 563, 564, 5, 11, 0, 0, 564, 565, 5, 293, 0, 0, 565, 566, 3, 72, 36, 0, 566, 567, 5, 241, 0, 0, 567, 568, 5, 49, 0, 0, 568, 569, 3, 78, 39, 0, 569, 570, 5, 309, 0, 0, 570, 571, 3, 84, 42, 0, 571, 1336, 1, 0, 0, 0, 572, 573, 5, 11, 0, 0, 573, 574, 5, 293, 0, 0, 574, 575, 3, 72, 36, 0, 575, 576, 5, 96, 0, 0, 576, 578, 5, 49, 0, 0, 577, 579, 3, 162, 81, 0, 578, 577, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 3, 78, 39, 0, 581, 1336, 1, 0, 0, 0, 582, 583, 5, 11, 0, 0, 583, 584, 5, 293, 0, 0, 584, 585, 3, 72, 36, 0, 585, 586, 5, 96, 0, 0, 586, 588, 5, 50, 0, 0, 587, 589, 3, 162, 81, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 5, 2, 0, 0, 591, 592, 3, 82, 41, 0, 592, 593, 5, 3, 0, 0, 593, 1336, 1, 0, 0, 0, 594, 599, 5, 11, 0, 0, 595, 596, 5, 293, 0, 0, 596, 600, 3, 72, 36, 0, 597, 598, 5, 338, 0, 0, 598, 600, 3, 76, 38, 0, 599, 595, 1, 0, 0, 0, 599, 597, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 241, 0, 0, 602, 603, 5, 309, 0, 0, 603, 604, 3, 218, 109, 0, 604, 1336, 1, 0, 0, 0, 605, 610, 5, 11, 0, 0, 606, 607, 5, 293, 0, 0, 607, 611, 3, 72, 36, 0, 608, 609, 5, 338, 0, 0, 609, 611, 3, 76, 38, 0, 610, 606, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 5, 269, 0, 0, 613, 614, 5, 297, 0, 0, 614, 615, 3, 42, 21, 0, 615, 1336, 1, 0, 0, 0, 616, 621, 5, 11, 0, 0, 617, 618, 5, 293, 0, 0, 618, 622, 3, 72, 36, 0, 619, 620, 5, 338, 0, 0, 620, 622, 3, 76, 38, 0, 621, 617, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 5, 328, 0, 0, 624, 626, 5, 297, 0, 0, 625, 627, 3, 162, 81, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 3, 42, 21, 0, 629, 1336, 1, 0, 0, 0, 630, 631, 5, 11, 0, 0, 631, 632, 5, 293, 0, 0, 632, 633, 3, 72, 36, 0, 633, 635, 7, 4, 0, 0, 634, 636, 5, 49, 0, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 639, 3, 78, 39, 0, 638, 640, 3, 356, 178, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 1336, 1, 0, 0, 0, 641, 642, 5, 11, 0, 0, 642, 643, 5, 293, 0, 0, 643, 645, 3, 72, 36, 0, 644, 646, 3, 22, 11, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 649, 5, 39, 0, 0, 648, 650, 5, 49, 0, 0, 649, 648, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 3, 78, 39, 0, 652, 654, 3, 314, 157, 0, 653, 655, 3, 294, 147, 0, 654, 653, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 1336, 1, 0, 0, 0, 656, 657, 5, 11, 0, 0, 657, 658, 5, 293, 0, 0, 658, 660, 3, 72, 36, 0, 659, 661, 3, 22, 11, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 5, 244, 0, 0, 663, 664, 5, 50, 0, 0, 664, 665, 5, 2, 0, 0, 665, 666, 3, 304, 152, 0, 666, 667, 5, 3, 0, 0, 667, 1336, 1, 0, 0, 0, 668, 669, 5, 11, 0, 0, 669, 670, 5, 293, 0, 0, 670, 672, 3, 72, 36, 0, 671, 673, 3, 22, 11, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 5, 269, 0, 0, 675, 676, 5, 266, 0, 0, 676, 680, 3, 358, 179, 0, 677, 678, 5, 346, 0, 0, 678, 679, 5, 267, 0, 0, 679, 681, 3, 42, 21, 0, 680, 677, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 1336, 1, 0, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 5, 293, 0, 0, 684, 686, 3, 72, 36, 0, 685, 687, 3, 22, 11, 0, 686, 685, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 689, 5, 269, 0, 0, 689, 690, 5, 267, 0, 0, 690, 691, 3, 42, 21, 0, 691, 1336, 1, 0, 0, 0, 692, 697, 5, 11, 0, 0, 693, 694, 5, 293, 0, 0, 694, 698, 3, 72, 36, 0, 695, 696, 5, 338, 0, 0, 696, 698, 3, 76, 38, 0, 697, 693, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 701, 5, 8, 0, 0, 700, 702, 3, 160, 80, 0, 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 704, 1, 0, 0, 0, 703, 705, 3, 20, 10, 0, 704, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 1336, 1, 0, 0, 0, 708, 709, 5, 11, 0, 0, 709, 710, 5, 293, 0, 0, 710, 711, 3, 72, 36, 0, 711, 712, 3, 22, 11, 0, 712, 713, 5, 241, 0, 0, 713, 714, 5, 309, 0, 0, 714, 715, 3, 22, 11, 0, 715, 1336, 1, 0, 0, 0, 716, 721, 5, 11, 0, 0, 717, 718, 5, 293, 0, 0, 718, 722, 3, 72, 36, 0, 719, 720, 5, 338, 0, 0, 720, 722, 3, 76, 38, 0, 721, 717, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 725, 5, 96, 0, 0, 724, 726, 3, 162, 81, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 732, 3, 22, 11, 0, 728, 729, 5, 4, 0, 0, 729, 731, 3, 22, 11, 0, 730, 728, 1, 0, 0, 0, 731, 734, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 737, 5, 230, 0, 0, 736, 735, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 1336, 1, 0, 0, 0, 738, 739, 5, 11, 0, 0, 739, 740, 5, 293, 0, 0, 740, 742, 3, 72, 36, 0, 741, 743, 3, 22, 11, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 5, 269, 0, 0, 745, 746, 5, 170, 0, 0, 746, 747, 3, 358, 179, 0, 747, 1336, 1, 0, 0, 0, 748, 749, 5, 11, 0, 0, 749, 750, 5, 293, 0, 0, 750, 751, 3, 72, 36, 0, 751, 752, 5, 237, 0, 0, 752, 753, 5, 219, 0, 0, 753, 1336, 1, 0, 0, 0, 754, 755, 5, 11, 0, 0, 755, 756, 5, 176, 0, 0, 756, 757, 5, 338, 0, 0, 757, 758, 3, 76, 38, 0, 758, 759, 7, 5, 0, 0, 759, 760, 5, 248, 0, 0, 760, 1336, 1, 0, 0, 0, 761, 762, 5, 11, 0, 0, 762, 763, 5, 176, 0, 0, 763, 764, 5, 338, 0, 0, 764, 765, 3, 76, 38, 0, 765, 766, 5, 269, 0, 0, 766, 767, 5, 297, 0, 0, 767, 768, 3, 42, 21, 0, 768, 1336, 1, 0, 0, 0, 769, 770, 5, 96, 0, 0, 770, 772, 5, 293, 0, 0, 771, 773, 3, 162, 81, 0, 772, 771, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 776, 3, 72, 36, 0, 775, 777, 5, 230, 0, 0, 776, 775, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 1336, 1, 0, 0, 0, 778, 779, 5, 96, 0, 0, 779, 781, 5, 338, 0, 0, 780, 782, 3, 162, 81, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 1336, 3, 76, 38, 0, 784, 785, 5, 96, 0, 0, 785, 786, 5, 176, 0, 0, 786, 788, 5, 338, 0, 0, 787, 789, 3, 162, 81, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 1336, 3, 76, 38, 0, 791, 794, 5, 59, 0, 0, 792, 793, 5, 208, 0, 0, 793, 795, 5, 244, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 800, 1, 0, 0, 0, 796, 798, 5, 128, 0, 0, 797, 796, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 801, 5, 298, 0, 0, 800, 797, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 804, 5, 338, 0, 0, 803, 805, 3, 160, 80, 0, 804, 803, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 3, 74, 37, 0, 807, 809, 3, 188, 94, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 819, 1, 0, 0, 0, 810, 811, 5, 51, 0, 0, 811, 818, 3, 358, 179, 0, 812, 813, 5, 218, 0, 0, 813, 814, 5, 203, 0, 0, 814, 818, 3, 180, 90, 0, 815, 816, 5, 297, 0, 0, 816, 818, 3, 42, 21, 0, 817, 810, 1, 0, 0, 0, 817, 812, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 818, 821, 1, 0, 0, 0, 819, 817, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 822, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 822, 823, 5, 20, 0, 0, 823, 824, 3, 16, 8, 0, 824, 1336, 1, 0, 0, 0, 825, 828, 5, 59, 0, 0, 826, 827, 5, 208, 0, 0, 827, 829, 5, 244, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 832, 5, 128, 0, 0, 831, 830, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 834, 5, 298, 0, 0, 834, 835, 5, 338, 0, 0, 835, 840, 3, 74, 37, 0, 836, 837, 5, 2, 0, 0, 837, 838, 3, 312, 156, 0, 838, 839, 5, 3, 0, 0, 839, 841, 1, 0, 0, 0, 840, 836, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 845, 3, 36, 18, 0, 843, 844, 5, 207, 0, 0, 844, 846, 3, 42, 21, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 1336, 1, 0, 0, 0, 847, 848, 5, 11, 0, 0, 848, 849, 5, 338, 0, 0, 849, 851, 3, 76, 38, 0, 850, 852, 5, 20, 0, 0, 851, 850, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 3, 16, 8, 0, 854, 1336, 1, 0, 0, 0, 855, 858, 5, 59, 0, 0, 856, 857, 5, 208, 0, 0, 857, 859, 5, 244, 0, 0, 858, 856, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 862, 5, 298, 0, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 865, 5, 125, 0, 0, 864, 866, 3, 160, 80, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 868, 3, 340, 170, 0, 868, 869, 5, 20, 0, 0, 869, 883, 3, 358, 179, 0, 870, 871, 5, 332, 0, 0, 871, 872, 3, 348, 174, 0, 872, 873, 3, 358, 179, 0, 873, 880, 1, 0, 0, 0, 874, 875, 5, 4, 0, 0, 875, 876, 3, 348, 174, 0, 876, 877, 3, 358, 179, 0, 877, 879, 1, 0, 0, 0, 878, 874, 1, 0, 0, 0, 879, 882, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 884, 1, 0, 0, 0, 882, 880, 1, 0, 0, 0, 883, 870, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 1336, 1, 0, 0, 0, 885, 886, 5, 59, 0, 0, 886, 887, 5, 176, 0, 0, 887, 889, 5, 338, 0, 0, 888, 890, 3, 160, 80, 0, 889, 888, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 893, 3, 74, 37, 0, 892, 894, 3, 36, 18, 0, 893, 892, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 912, 1, 0, 0, 0, 895, 896, 5, 207, 0, 0, 896, 911, 3, 42, 21, 0, 897, 898, 5, 218, 0, 0, 898, 899, 5, 31, 0, 0, 899, 911, 3, 240, 120, 0, 900, 911, 3, 10, 5, 0, 901, 911, 3, 8, 4, 0, 902, 911, 3, 214, 107, 0, 903, 911, 3, 58, 29, 0, 904, 905, 5, 170, 0, 0, 905, 911, 3, 358, 179, 0, 906, 907, 5, 51, 0, 0, 907, 911, 3, 358, 179, 0, 908, 909, 5, 297, 0, 0, 909, 911, 3, 42, 21, 0, 910, 895, 1, 0, 0, 0, 910, 897, 1, 0, 0, 0, 910, 900, 1, 0, 0, 0, 910, 901, 1, 0, 0, 0, 910, 902, 1, 0, 0, 0, 910, 903, 1, 0, 0, 0, 910, 904, 1, 0, 0, 0, 910, 906, 1, 0, 0, 0, 910, 908, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 915, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 916, 5, 20, 0, 0, 916, 917, 3, 16, 8, 0, 917, 1336, 1, 0, 0, 0, 918, 920, 5, 96, 0, 0, 919, 921, 5, 298, 0, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 924, 5, 125, 0, 0, 923, 925, 3, 162, 81, 0, 924, 923, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 1336, 3, 338, 169, 0, 927, 930, 5, 81, 0, 0, 928, 929, 5, 208, 0, 0, 929, 931, 5, 244, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 1, 0, 0, 0, 932, 934, 5, 336, 0, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 3, 338, 169, 0, 936, 938, 3, 298, 149, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 940, 1, 0, 0, 0, 939, 941, 3, 310, 155, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 1336, 1, 0, 0, 0, 942, 943, 5, 96, 0, 0, 943, 944, 5, 298, 0, 0, 944, 946, 5, 336, 0, 0, 945, 947, 3, 162, 81, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 951, 1, 0, 0, 0, 948, 952, 3, 72, 36, 0, 949, 952, 3, 76, 38, 0, 950, 952, 3, 338, 169, 0, 951, 948, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 951, 950, 1, 0, 0, 0, 952, 1336, 1, 0, 0, 0, 953, 955, 5, 106, 0, 0, 954, 956, 7, 6, 0, 0, 955, 954, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 1336, 3, 4, 2, 0, 958, 959, 5, 273, 0, 0, 959, 962, 5, 294, 0, 0, 960, 961, 7, 3, 0, 0, 961, 963, 3, 66, 33, 0, 962, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 968, 1, 0, 0, 0, 964, 966, 5, 163, 0, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 358, 179, 0, 968, 965, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 1336, 1, 0, 0, 0, 970, 971, 5, 273, 0, 0, 971, 972, 5, 293, 0, 0, 972, 975, 5, 108, 0, 0, 973, 974, 7, 3, 0, 0, 974, 976, 3, 66, 33, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 5, 163, 0, 0, 978, 980, 3, 358, 179, 0, 979, 981, 3, 22, 11, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 1336, 1, 0, 0, 0, 982, 983, 5, 273, 0, 0, 983, 984, 5, 297, 0, 0, 984, 989, 3, 72, 36, 0, 985, 986, 5, 2, 0, 0, 986, 987, 3, 46, 23, 0, 987, 988, 5, 3, 0, 0, 988, 990, 1, 0, 0, 0, 989, 985, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 1336, 1, 0, 0, 0, 991, 992, 5, 273, 0, 0, 992, 993, 5, 50, 0, 0, 993, 994, 7, 3, 0, 0, 994, 997, 3, 72, 36, 0, 995, 996, 7, 3, 0, 0, 996, 998, 3, 66, 33, 0, 997, 995, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1336, 1, 0, 0, 0, 999, 1000, 5, 273, 0, 0, 1000, 1003, 5, 339, 0, 0, 1001, 1002, 7, 3, 0, 0, 1002, 1004, 3, 66, 33, 0, 1003, 1001, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1009, 1, 0, 0, 0, 1005, 1007, 5, 163, 0, 0, 1006, 1005, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1010, 3, 358, 179, 0, 1009, 1006, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1336, 1, 0, 0, 0, 1011, 1012, 5, 273, 0, 0, 1012, 1013, 5, 219, 0, 0, 1013, 1015, 3, 72, 36, 0, 1014, 1016, 3, 22, 11, 0, 1015, 1014, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1336, 1, 0, 0, 0, 1017, 1019, 5, 273, 0, 0, 1018, 1020, 7, 7, 0, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1024, 5, 126, 0, 0, 1022, 1023, 7, 3, 0, 0, 1023, 1025, 3, 66, 33, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1033, 1, 0, 0, 0, 1026, 1028, 5, 163, 0, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1031, 1, 0, 0, 0, 1029, 1032, 3, 218, 109, 0, 1030, 1032, 3, 358, 179, 0, 1031, 1029, 1, 0, 0, 0, 1031, 1030, 1, 0, 0, 0, 1032, 1034, 1, 0, 0, 0, 1033, 1027, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1336, 1, 0, 0, 0, 1035, 1036, 5, 273, 0, 0, 1036, 1037, 5, 59, 0, 0, 1037, 1038, 5, 293, 0, 0, 1038, 1041, 3, 72, 36, 0, 1039, 1040, 5, 20, 0, 0, 1040, 1042, 5, 266, 0, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1336, 1, 0, 0, 0, 1043, 1044, 5, 273, 0, 0, 1044, 1045, 5, 62, 0, 0, 1045, 1336, 3, 26, 13, 0, 1046, 1047, 5, 273, 0, 0, 1047, 1052, 5, 38, 0, 0, 1048, 1050, 5, 163, 0, 0, 1049, 1048, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 3, 358, 179, 0, 1052, 1049, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1336, 1, 0, 0, 0, 1054, 1055, 5, 273, 0, 0, 1055, 1056, 5, 176, 0, 0, 1056, 1059, 5, 339, 0, 0, 1057, 1058, 7, 3, 0, 0, 1058, 1060, 3, 66, 33, 0, 1059, 1057, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1065, 1, 0, 0, 0, 1061, 1063, 5, 163, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1066, 3, 358, 179, 0, 1065, 1062, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1336, 1, 0, 0, 0, 1067, 1068, 5, 273, 0, 0, 1068, 1069, 5, 59, 0, 0, 1069, 1070, 5, 176, 0, 0, 1070, 1071, 5, 338, 0, 0, 1071, 1074, 3, 76, 38, 0, 1072, 1073, 5, 20, 0, 0, 1073, 1075, 5, 266, 0, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1336, 1, 0, 0, 0, 1076, 1077, 7, 8, 0, 0, 1077, 1079, 5, 125, 0, 0, 1078, 1080, 5, 108, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1336, 3, 28, 14, 0, 1082, 1083, 7, 8, 0, 0, 1083, 1085, 5, 72, 0, 0, 1084, 1086, 5, 108, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1336, 3, 66, 33, 0, 1088, 1090, 7, 8, 0, 0, 1089, 1091, 5, 293, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1093, 1, 0, 0, 0, 1092, 1094, 7, 9, 0, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1097, 3, 72, 36, 0, 1096, 1098, 3, 22, 11, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1101, 3, 30, 15, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1336, 1, 0, 0, 0, 1102, 1104, 7, 8, 0, 0, 1103, 1105, 5, 232, 0, 0, 1104, 1103, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1336, 3, 16, 8, 0, 1107, 1108, 5, 51, 0, 0, 1108, 1114, 5, 203, 0, 0, 1109, 1110, 3, 26, 13, 0, 1110, 1111, 3, 66, 33, 0, 1111, 1115, 1, 0, 0, 0, 1112, 1113, 5, 293, 0, 0, 1113, 1115, 3, 72, 36, 0, 1114, 1109, 1, 0, 0, 0, 1114, 1112, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1119, 5, 153, 0, 0, 1117, 1120, 3, 358, 179, 0, 1118, 1120, 5, 198, 0, 0, 1119, 1117, 1, 0, 0, 0, 1119, 1118, 1, 0, 0, 0, 1120, 1336, 1, 0, 0, 0, 1121, 1122, 5, 240, 0, 0, 1122, 1123, 5, 293, 0, 0, 1123, 1336, 3, 72, 36, 0, 1124, 1125, 5, 240, 0, 0, 1125, 1126, 5, 125, 0, 0, 1126, 1336, 3, 338, 169, 0, 1127, 1135, 5, 240, 0, 0, 1128, 1136, 3, 358, 179, 0, 1129, 1131, 9, 0, 0, 0, 1130, 1129, 1, 0, 0, 0, 1131, 1134, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1132, 1130, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1128, 1, 0, 0, 0, 1135, 1132, 1, 0, 0, 0, 1136, 1336, 1, 0, 0, 0, 1137, 1138, 5, 240, 0, 0, 1138, 1139, 5, 176, 0, 0, 1139, 1140, 5, 338, 0, 0, 1140, 1336, 3, 76, 38, 0, 1141, 1143, 5, 33, 0, 0, 1142, 1144, 5, 159, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 5, 293, 0, 0, 1146, 1149, 3, 72, 36, 0, 1147, 1148, 5, 207, 0, 0, 1148, 1150, 3, 42, 21, 0, 1149, 1147, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1155, 1, 0, 0, 0, 1151, 1153, 5, 20, 0, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1156, 3, 16, 8, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1336, 1, 0, 0, 0, 1157, 1158, 5, 322, 0, 0, 1158, 1160, 5, 293, 0, 0, 1159, 1161, 3, 162, 81, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1336, 3, 72, 36, 0, 1163, 1164, 5, 43, 0, 0, 1164, 1336, 5, 33, 0, 0, 1165, 1166, 5, 168, 0, 0, 1166, 1168, 5, 70, 0, 0, 1167, 1169, 5, 169, 0, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 5, 145, 0, 0, 1171, 1173, 3, 358, 179, 0, 1172, 1174, 5, 216, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 5, 152, 0, 0, 1176, 1177, 5, 293, 0, 0, 1177, 1179, 3, 72, 36, 0, 1178, 1180, 3, 22, 11, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1336, 1, 0, 0, 0, 1181, 1182, 5, 317, 0, 0, 1182, 1183, 5, 293, 0, 0, 1183, 1185, 3, 72, 36, 0, 1184, 1186, 3, 22, 11, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1336, 1, 0, 0, 0, 1187, 1189, 5, 188, 0, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, 5, 242, 0, 0, 1191, 1192, 5, 293, 0, 0, 1192, 1195, 3, 72, 36, 0, 1193, 1194, 7, 10, 0, 0, 1194, 1196, 5, 219, 0, 0, 1195, 1193, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1336, 1, 0, 0, 0, 1197, 1198, 7, 11, 0, 0, 1198, 1202, 3, 348, 174, 0, 1199, 1201, 9, 0, 0, 0, 1200, 1199, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1336, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1206, 5, 269, 0, 0, 1206, 1210, 5, 253, 0, 0, 1207, 1209, 9, 0, 0, 0, 1208, 1207, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1336, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1214, 5, 269, 0, 0, 1214, 1215, 5, 301, 0, 0, 1215, 1216, 5, 350, 0, 0, 1216, 1336, 3, 278, 139, 0, 1217, 1218, 5, 269, 0, 0, 1218, 1219, 5, 301, 0, 0, 1219, 1222, 5, 350, 0, 0, 1220, 1223, 3, 358, 179, 0, 1221, 1223, 5, 169, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1221, 1, 0, 0, 0, 1223, 1336, 1, 0, 0, 0, 1224, 1225, 5, 269, 0, 0, 1225, 1226, 5, 301, 0, 0, 1226, 1230, 5, 350, 0, 0, 1227, 1229, 9, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1232, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1230, 1228, 1, 0, 0, 0, 1231, 1336, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1234, 5, 269, 0, 0, 1234, 1235, 7, 12, 0, 0, 1235, 1336, 3, 120, 60, 0, 1236, 1237, 5, 269, 0, 0, 1237, 1238, 7, 12, 0, 0, 1238, 1239, 5, 2, 0, 0, 1239, 1240, 3, 216, 108, 0, 1240, 1241, 5, 3, 0, 0, 1241, 1242, 5, 352, 0, 0, 1242, 1243, 5, 2, 0, 0, 1243, 1244, 3, 16, 8, 0, 1244, 1245, 5, 3, 0, 0, 1245, 1336, 1, 0, 0, 0, 1246, 1247, 5, 269, 0, 0, 1247, 1248, 3, 352, 176, 0, 1248, 1249, 5, 352, 0, 0, 1249, 1250, 5, 389, 0, 0, 1250, 1336, 1, 0, 0, 0, 1251, 1252, 5, 269, 0, 0, 1252, 1260, 3, 352, 176, 0, 1253, 1257, 5, 352, 0, 0, 1254, 1256, 9, 0, 0, 0, 1255, 1254, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1253, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1336, 1, 0, 0, 0, 1262, 1266, 5, 269, 0, 0, 1263, 1265, 9, 0, 0, 0, 1264, 1263, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1270, 5, 352, 0, 0, 1270, 1336, 5, 389, 0, 0, 1271, 1275, 5, 269, 0, 0, 1272, 1274, 9, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1277, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1336, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1279, 5, 245, 0, 0, 1279, 1336, 3, 352, 176, 0, 1280, 1284, 5, 245, 0, 0, 1281, 1283, 9, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1286, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1336, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1288, 5, 59, 0, 0, 1288, 1290, 5, 142, 0, 0, 1289, 1291, 3, 160, 80, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 3, 348, 174, 0, 1293, 1295, 5, 203, 0, 0, 1294, 1296, 5, 293, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1300, 3, 72, 36, 0, 1298, 1299, 5, 332, 0, 0, 1299, 1301, 3, 348, 174, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 5, 2, 0, 0, 1303, 1304, 3, 220, 110, 0, 1304, 1307, 5, 3, 0, 0, 1305, 1306, 5, 207, 0, 0, 1306, 1308, 3, 42, 21, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1336, 1, 0, 0, 0, 1309, 1310, 5, 96, 0, 0, 1310, 1312, 5, 142, 0, 0, 1311, 1313, 3, 162, 81, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 3, 348, 174, 0, 1315, 1317, 5, 203, 0, 0, 1316, 1318, 5, 293, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 3, 72, 36, 0, 1320, 1336, 1, 0, 0, 0, 1321, 1322, 5, 205, 0, 0, 1322, 1324, 3, 72, 36, 0, 1323, 1325, 3, 124, 62, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 3, 328, 164, 0, 1327, 1336, 1, 0, 0, 0, 1328, 1332, 3, 6, 3, 0, 1329, 1331, 9, 0, 0, 0, 1330, 1329, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 378, 1, 0, 0, 0, 1335, 380, 1, 0, 0, 0, 1335, 383, 1, 0, 0, 0, 1335, 388, 1, 0, 0, 0, 1335, 394, 1, 0, 0, 0, 1335, 412, 1, 0, 0, 0, 1335, 419, 1, 0, 0, 0, 1335, 426, 1, 0, 0, 0, 1335, 435, 1, 0, 0, 0, 1335, 447, 1, 0, 0, 0, 1335, 475, 1, 0, 0, 0, 1335, 498, 1, 0, 0, 0, 1335, 519, 1, 0, 0, 0, 1335, 536, 1, 0, 0, 0, 1335, 547, 1, 0, 0, 0, 1335, 554, 1, 0, 0, 0, 1335, 563, 1, 0, 0, 0, 1335, 572, 1, 0, 0, 0, 1335, 582, 1, 0, 0, 0, 1335, 594, 1, 0, 0, 0, 1335, 605, 1, 0, 0, 0, 1335, 616, 1, 0, 0, 0, 1335, 630, 1, 0, 0, 0, 1335, 641, 1, 0, 0, 0, 1335, 656, 1, 0, 0, 0, 1335, 668, 1, 0, 0, 0, 1335, 682, 1, 0, 0, 0, 1335, 692, 1, 0, 0, 0, 1335, 708, 1, 0, 0, 0, 1335, 716, 1, 0, 0, 0, 1335, 738, 1, 0, 0, 0, 1335, 748, 1, 0, 0, 0, 1335, 754, 1, 0, 0, 0, 1335, 761, 1, 0, 0, 0, 1335, 769, 1, 0, 0, 0, 1335, 778, 1, 0, 0, 0, 1335, 784, 1, 0, 0, 0, 1335, 791, 1, 0, 0, 0, 1335, 825, 1, 0, 0, 0, 1335, 847, 1, 0, 0, 0, 1335, 855, 1, 0, 0, 0, 1335, 885, 1, 0, 0, 0, 1335, 918, 1, 0, 0, 0, 1335, 927, 1, 0, 0, 0, 1335, 942, 1, 0, 0, 0, 1335, 953, 1, 0, 0, 0, 1335, 958, 1, 0, 0, 0, 1335, 970, 1, 0, 0, 0, 1335, 982, 1, 0, 0, 0, 1335, 991, 1, 0, 0, 0, 1335, 999, 1, 0, 0, 0, 1335, 1011, 1, 0, 0, 0, 1335, 1017, 1, 0, 0, 0, 1335, 1035, 1, 0, 0, 0, 1335, 1043, 1, 0, 0, 0, 1335, 1046, 1, 0, 0, 0, 1335, 1054, 1, 0, 0, 0, 1335, 1067, 1, 0, 0, 0, 1335, 1076, 1, 0, 0, 0, 1335, 1082, 1, 0, 0, 0, 1335, 1088, 1, 0, 0, 0, 1335, 1102, 1, 0, 0, 0, 1335, 1107, 1, 0, 0, 0, 1335, 1121, 1, 0, 0, 0, 1335, 1124, 1, 0, 0, 0, 1335, 1127, 1, 0, 0, 0, 1335, 1137, 1, 0, 0, 0, 1335, 1141, 1, 0, 0, 0, 1335, 1157, 1, 0, 0, 0, 1335, 1163, 1, 0, 0, 0, 1335, 1165, 1, 0, 0, 0, 1335, 1181, 1, 0, 0, 0, 1335, 1188, 1, 0, 0, 0, 1335, 1197, 1, 0, 0, 0, 1335, 1205, 1, 0, 0, 0, 1335, 1213, 1, 0, 0, 0, 1335, 1217, 1, 0, 0, 0, 1335, 1224, 1, 0, 0, 0, 1335, 1233, 1, 0, 0, 0, 1335, 1236, 1, 0, 0, 0, 1335, 1246, 1, 0, 0, 0, 1335, 1251, 1, 0, 0, 0, 1335, 1262, 1, 0, 0, 0, 1335, 1271, 1, 0, 0, 0, 1335, 1278, 1, 0, 0, 0, 1335, 1280, 1, 0, 0, 0, 1335, 1287, 1, 0, 0, 0, 1335, 1309, 1, 0, 0, 0, 1335, 1321, 1, 0, 0, 0, 1335, 1328, 1, 0, 0, 0, 1336, 5, 1, 0, 0, 0, 1337, 1338, 7, 13, 0, 0, 1338, 1431, 5, 253, 0, 0, 1339, 1341, 7, 14, 0, 0, 1340, 1342, 5, 253, 0, 0, 1341, 1340, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1431, 1, 0, 0, 0, 1343, 1344, 5, 273, 0, 0, 1344, 1431, 7, 15, 0, 0, 1345, 1346, 5, 273, 0, 0, 1346, 1348, 5, 253, 0, 0, 1347, 1349, 5, 129, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1431, 1, 0, 0, 0, 1350, 1352, 5, 273, 0, 0, 1351, 1353, 5, 62, 0, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1431, 5, 254, 0, 0, 1355, 1356, 5, 273, 0, 0, 1356, 1357, 5, 59, 0, 0, 1357, 1431, 5, 293, 0, 0, 1358, 1359, 7, 16, 0, 0, 1359, 1431, 5, 142, 0, 0, 1360, 1361, 7, 17, 0, 0, 1361, 1431, 5, 293, 0, 0, 1362, 1363, 7, 18, 0, 0, 1363, 1431, 5, 72, 0, 0, 1364, 1365, 7, 13, 0, 0, 1365, 1366, 5, 298, 0, 0, 1366, 1431, 5, 175, 0, 0, 1367, 1368, 5, 11, 0, 0, 1368, 1369, 5, 293, 0, 0, 1369, 1370, 3, 72, 36, 0, 1370, 1371, 5, 197, 0, 0, 1371, 1372, 7, 19, 0, 0, 1372, 1431, 1, 0, 0, 0, 1373, 1374, 5, 11, 0, 0, 1374, 1375, 5, 293, 0, 0, 1375, 1376, 3, 72, 36, 0, 1376, 1377, 7, 20, 0, 0, 1377, 1378, 5, 31, 0, 0, 1378, 1431, 1, 0, 0, 0, 1379, 1380, 5, 11, 0, 0, 1380, 1381, 5, 293, 0, 0, 1381, 1382, 3, 72, 36, 0, 1382, 1383, 5, 275, 0, 0, 1383, 1384, 5, 31, 0, 0, 1384, 1431, 1, 0, 0, 0, 1385, 1386, 5, 11, 0, 0, 1386, 1387, 5, 293, 0, 0, 1387, 1388, 3, 72, 36, 0, 1388, 1389, 5, 197, 0, 0, 1389, 1390, 5, 283, 0, 0, 1390, 1391, 5, 20, 0, 0, 1391, 1392, 5, 89, 0, 0, 1392, 1431, 1, 0, 0, 0, 1393, 1394, 5, 11, 0, 0, 1394, 1395, 5, 293, 0, 0, 1395, 1396, 3, 72, 36, 0, 1396, 1397, 5, 269, 0, 0, 1397, 1398, 5, 275, 0, 0, 1398, 1399, 5, 170, 0, 0, 1399, 1431, 1, 0, 0, 0, 1400, 1401, 5, 11, 0, 0, 1401, 1402, 5, 293, 0, 0, 1402, 1403, 3, 72, 36, 0, 1403, 1404, 7, 21, 0, 0, 1404, 1405, 5, 217, 0, 0, 1405, 1431, 1, 0, 0, 0, 1406, 1407, 5, 11, 0, 0, 1407, 1408, 5, 293, 0, 0, 1408, 1409, 3, 72, 36, 0, 1409, 1410, 5, 310, 0, 0, 1410, 1431, 1, 0, 0, 0, 1411, 1412, 5, 11, 0, 0, 1412, 1413, 5, 293, 0, 0, 1413, 1415, 3, 72, 36, 0, 1414, 1416, 3, 22, 11, 0, 1415, 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1423, 1, 0, 0, 0, 1417, 1424, 5, 53, 0, 0, 1418, 1424, 5, 56, 0, 0, 1419, 1420, 5, 269, 0, 0, 1420, 1424, 5, 115, 0, 0, 1421, 1422, 5, 244, 0, 0, 1422, 1424, 5, 50, 0, 0, 1423, 1417, 1, 0, 0, 0, 1423, 1418, 1, 0, 0, 0, 1423, 1419, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1424, 1431, 1, 0, 0, 0, 1425, 1426, 5, 281, 0, 0, 1426, 1431, 5, 312, 0, 0, 1427, 1431, 5, 52, 0, 0, 1428, 1431, 5, 255, 0, 0, 1429, 1431, 5, 88, 0, 0, 1430, 1337, 1, 0, 0, 0, 1430, 1339, 1, 0, 0, 0, 1430, 1343, 1, 0, 0, 0, 1430, 1345, 1, 0, 0, 0, 1430, 1350, 1, 0, 0, 0, 1430, 1355, 1, 0, 0, 0, 1430, 1358, 1, 0, 0, 0, 1430, 1360, 1, 0, 0, 0, 1430, 1362, 1, 0, 0, 0, 1430, 1364, 1, 0, 0, 0, 1430, 1367, 1, 0, 0, 0, 1430, 1373, 1, 0, 0, 0, 1430, 1379, 1, 0, 0, 0, 1430, 1385, 1, 0, 0, 0, 1430, 1393, 1, 0, 0, 0, 1430, 1400, 1, 0, 0, 0, 1430, 1406, 1, 0, 0, 0, 1430, 1411, 1, 0, 0, 0, 1430, 1425, 1, 0, 0, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 7, 1, 0, 0, 0, 1432, 1433, 5, 45, 0, 0, 1433, 1434, 5, 31, 0, 0, 1434, 1438, 3, 180, 90, 0, 1435, 1436, 5, 279, 0, 0, 1436, 1437, 5, 31, 0, 0, 1437, 1439, 3, 184, 92, 0, 1438, 1435, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 5, 152, 0, 0, 1441, 1442, 5, 382, 0, 0, 1442, 1443, 5, 30, 0, 0, 1443, 9, 1, 0, 0, 0, 1444, 1445, 5, 275, 0, 0, 1445, 1446, 5, 31, 0, 0, 1446, 1447, 3, 180, 90, 0, 1447, 1450, 5, 203, 0, 0, 1448, 1451, 3, 54, 27, 0, 1449, 1451, 3, 56, 28, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1449, 1, 0, 0, 0, 1451, 1455, 1, 0, 0, 0, 1452, 1453, 5, 283, 0, 0, 1453, 1454, 5, 20, 0, 0, 1454, 1456, 5, 89, 0, 0, 1455, 1452, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 11, 1, 0, 0, 0, 1457, 1458, 5, 170, 0, 0, 1458, 1459, 3, 358, 179, 0, 1459, 13, 1, 0, 0, 0, 1460, 1461, 5, 51, 0, 0, 1461, 1462, 3, 358, 179, 0, 1462, 15, 1, 0, 0, 0, 1463, 1465, 3, 32, 16, 0, 1464, 1463, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 3, 96, 48, 0, 1467, 1468, 3, 88, 44, 0, 1468, 17, 1, 0, 0, 0, 1469, 1470, 5, 147, 0, 0, 1470, 1472, 5, 216, 0, 0, 1471, 1473, 5, 293, 0, 0, 1472, 1471, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1479, 3, 72, 36, 0, 1475, 1477, 3, 22, 11, 0, 1476, 1478, 3, 160, 80, 0, 1477, 1476, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1475, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1487, 1, 0, 0, 0, 1481, 1482, 5, 31, 0, 0, 1482, 1488, 5, 189, 0, 0, 1483, 1484, 5, 2, 0, 0, 1484, 1485, 3, 82, 41, 0, 1485, 1486, 5, 3, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1481, 1, 0, 0, 0, 1487, 1483, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1546, 1, 0, 0, 0, 1489, 1490, 5, 147, 0, 0, 1490, 1492, 5, 152, 0, 0, 1491, 1493, 5, 293, 0, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 3, 72, 36, 0, 1495, 1497, 3, 22, 11, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1500, 3, 160, 80, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1507, 1, 0, 0, 0, 1501, 1502, 5, 31, 0, 0, 1502, 1508, 5, 189, 0, 0, 1503, 1504, 5, 2, 0, 0, 1504, 1505, 3, 82, 41, 0, 1505, 1506, 5, 3, 0, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1501, 1, 0, 0, 0, 1507, 1503, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1546, 1, 0, 0, 0, 1509, 1510, 5, 147, 0, 0, 1510, 1512, 5, 152, 0, 0, 1511, 1513, 5, 293, 0, 0, 1512, 1511, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 3, 72, 36, 0, 1515, 1516, 5, 244, 0, 0, 1516, 1517, 3, 124, 62, 0, 1517, 1546, 1, 0, 0, 0, 1518, 1519, 5, 147, 0, 0, 1519, 1521, 5, 216, 0, 0, 1520, 1522, 5, 169, 0, 0, 1521, 1520, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 5, 90, 0, 0, 1524, 1526, 3, 358, 179, 0, 1525, 1527, 3, 214, 107, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1529, 1, 0, 0, 0, 1528, 1530, 3, 58, 29, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1546, 1, 0, 0, 0, 1531, 1532, 5, 147, 0, 0, 1532, 1534, 5, 216, 0, 0, 1533, 1535, 5, 169, 0, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1538, 5, 90, 0, 0, 1537, 1539, 3, 358, 179, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1543, 3, 36, 18, 0, 1541, 1542, 5, 207, 0, 0, 1542, 1544, 3, 42, 21, 0, 1543, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 1, 0, 0, 0, 1545, 1469, 1, 0, 0, 0, 1545, 1489, 1, 0, 0, 0, 1545, 1509, 1, 0, 0, 0, 1545, 1518, 1, 0, 0, 0, 1545, 1531, 1, 0, 0, 0, 1546, 19, 1, 0, 0, 0, 1547, 1550, 3, 22, 11, 0, 1548, 1549, 5, 170, 0, 0, 1549, 1551, 3, 358, 179, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 21, 1, 0, 0, 0, 1552, 1553, 5, 217, 0, 0, 1553, 1554, 5, 2, 0, 0, 1554, 1559, 3, 24, 12, 0, 1555, 1556, 5, 4, 0, 0, 1556, 1558, 3, 24, 12, 0, 1557, 1555, 1, 0, 0, 0, 1558, 1561, 1, 0, 0, 0, 1559, 1557, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 1, 0, 0, 0, 1561, 1559, 1, 0, 0, 0, 1562, 1563, 5, 3, 0, 0, 1563, 23, 1, 0, 0, 0, 1564, 1567, 3, 348, 174, 0, 1565, 1566, 5, 352, 0, 0, 1566, 1568, 3, 268, 134, 0, 1567, 1565, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1574, 1, 0, 0, 0, 1569, 1570, 3, 348, 174, 0, 1570, 1571, 5, 352, 0, 0, 1571, 1572, 5, 82, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1564, 1, 0, 0, 0, 1573, 1569, 1, 0, 0, 0, 1574, 25, 1, 0, 0, 0, 1575, 1576, 7, 22, 0, 0, 1576, 27, 1, 0, 0, 0, 1577, 1583, 3, 86, 43, 0, 1578, 1583, 3, 358, 179, 0, 1579, 1583, 3, 270, 135, 0, 1580, 1583, 3, 272, 136, 0, 1581, 1583, 3, 274, 137, 0, 1582, 1577, 1, 0, 0, 0, 1582, 1578, 1, 0, 0, 0, 1582, 1579, 1, 0, 0, 0, 1582, 1580, 1, 0, 0, 0, 1582, 1581, 1, 0, 0, 0, 1583, 29, 1, 0, 0, 0, 1584, 1589, 3, 348, 174, 0, 1585, 1586, 5, 5, 0, 0, 1586, 1588, 3, 348, 174, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 31, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, 5, 346, 0, 0, 1593, 1598, 3, 34, 17, 0, 1594, 1595, 5, 4, 0, 0, 1595, 1597, 3, 34, 17, 0, 1596, 1594, 1, 0, 0, 0, 1597, 1600, 1, 0, 0, 0, 1598, 1596, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 33, 1, 0, 0, 0, 1600, 1598, 1, 0, 0, 0, 1601, 1603, 3, 344, 172, 0, 1602, 1604, 3, 180, 90, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1607, 5, 20, 0, 0, 1606, 1605, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 5, 2, 0, 0, 1609, 1610, 3, 16, 8, 0, 1610, 1611, 5, 3, 0, 0, 1611, 35, 1, 0, 0, 0, 1612, 1613, 5, 332, 0, 0, 1613, 1614, 3, 218, 109, 0, 1614, 37, 1, 0, 0, 0, 1615, 1616, 5, 207, 0, 0, 1616, 1632, 3, 50, 25, 0, 1617, 1618, 5, 218, 0, 0, 1618, 1619, 5, 31, 0, 0, 1619, 1632, 3, 240, 120, 0, 1620, 1632, 3, 10, 5, 0, 1621, 1632, 3, 8, 4, 0, 1622, 1632, 3, 214, 107, 0, 1623, 1632, 3, 58, 29, 0, 1624, 1625, 5, 170, 0, 0, 1625, 1632, 3, 358, 179, 0, 1626, 1627, 5, 51, 0, 0, 1627, 1632, 3, 358, 179, 0, 1628, 1629, 5, 297, 0, 0, 1629, 1632, 3, 42, 21, 0, 1630, 1632, 3, 40, 20, 0, 1631, 1615, 1, 0, 0, 0, 1631, 1617, 1, 0, 0, 0, 1631, 1620, 1, 0, 0, 0, 1631, 1621, 1, 0, 0, 0, 1631, 1622, 1, 0, 0, 0, 1631, 1623, 1, 0, 0, 0, 1631, 1624, 1, 0, 0, 0, 1631, 1626, 1, 0, 0, 0, 1631, 1628, 1, 0, 0, 0, 1631, 1630, 1, 0, 0, 0, 1632, 1635, 1, 0, 0, 0, 1633, 1631, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 39, 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1637, 5, 162, 0, 0, 1637, 1638, 5, 382, 0, 0, 1638, 41, 1, 0, 0, 0, 1639, 1640, 5, 2, 0, 0, 1640, 1645, 3, 44, 22, 0, 1641, 1642, 5, 4, 0, 0, 1642, 1644, 3, 44, 22, 0, 1643, 1641, 1, 0, 0, 0, 1644, 1647, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1648, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1648, 1649, 5, 3, 0, 0, 1649, 43, 1, 0, 0, 0, 1650, 1655, 3, 46, 23, 0, 1651, 1653, 5, 352, 0, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1656, 3, 48, 24, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 45, 1, 0, 0, 0, 1657, 1662, 3, 348, 174, 0, 1658, 1659, 5, 5, 0, 0, 1659, 1661, 3, 348, 174, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1667, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1667, 3, 358, 179, 0, 1666, 1657, 1, 0, 0, 0, 1666, 1665, 1, 0, 0, 0, 1667, 47, 1, 0, 0, 0, 1668, 1673, 5, 382, 0, 0, 1669, 1673, 5, 384, 0, 0, 1670, 1673, 3, 276, 138, 0, 1671, 1673, 3, 358, 179, 0, 1672, 1668, 1, 0, 0, 0, 1672, 1669, 1, 0, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1671, 1, 0, 0, 0, 1673, 49, 1, 0, 0, 0, 1674, 1675, 5, 2, 0, 0, 1675, 1680, 3, 52, 26, 0, 1676, 1677, 5, 4, 0, 0, 1677, 1679, 3, 52, 26, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1683, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1684, 5, 3, 0, 0, 1684, 51, 1, 0, 0, 0, 1685, 1690, 3, 46, 23, 0, 1686, 1688, 5, 352, 0, 0, 1687, 1686, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1691, 3, 248, 124, 0, 1690, 1687, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 53, 1, 0, 0, 0, 1692, 1693, 5, 2, 0, 0, 1693, 1698, 3, 268, 134, 0, 1694, 1695, 5, 4, 0, 0, 1695, 1697, 3, 268, 134, 0, 1696, 1694, 1, 0, 0, 0, 1697, 1700, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1701, 1, 0, 0, 0, 1700, 1698, 1, 0, 0, 0, 1701, 1702, 5, 3, 0, 0, 1702, 55, 1, 0, 0, 0, 1703, 1704, 5, 2, 0, 0, 1704, 1709, 3, 54, 27, 0, 1705, 1706, 5, 4, 0, 0, 1706, 1708, 3, 54, 27, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1711, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1713, 5, 3, 0, 0, 1713, 57, 1, 0, 0, 0, 1714, 1715, 5, 283, 0, 0, 1715, 1716, 5, 20, 0, 0, 1716, 1721, 3, 60, 30, 0, 1717, 1718, 5, 283, 0, 0, 1718, 1719, 5, 31, 0, 0, 1719, 1721, 3, 62, 31, 0, 1720, 1714, 1, 0, 0, 0, 1720, 1717, 1, 0, 0, 0, 1721, 59, 1, 0, 0, 0, 1722, 1723, 5, 146, 0, 0, 1723, 1724, 3, 358, 179, 0, 1724, 1725, 5, 212, 0, 0, 1725, 1726, 3, 358, 179, 0, 1726, 1729, 1, 0, 0, 0, 1727, 1729, 3, 348, 174, 0, 1728, 1722, 1, 0, 0, 0, 1728, 1727, 1, 0, 0, 0, 1729, 61, 1, 0, 0, 0, 1730, 1734, 3, 358, 179, 0, 1731, 1732, 5, 346, 0, 0, 1732, 1733, 5, 267, 0, 0, 1733, 1735, 3, 42, 21, 0, 1734, 1731, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 63, 1, 0, 0, 0, 1736, 1737, 3, 18, 9, 0, 1737, 1738, 3, 16, 8, 0, 1738, 1795, 1, 0, 0, 0, 1739, 1743, 3, 132, 66, 0, 1740, 1741, 3, 18, 9, 0, 1741, 1742, 3, 102, 51, 0, 1742, 1744, 1, 0, 0, 0, 1743, 1740, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1795, 1, 0, 0, 0, 1747, 1748, 5, 84, 0, 0, 1748, 1749, 5, 123, 0, 0, 1749, 1750, 3, 72, 36, 0, 1750, 1752, 3, 212, 106, 0, 1751, 1753, 3, 124, 62, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1795, 1, 0, 0, 0, 1754, 1755, 5, 329, 0, 0, 1755, 1756, 3, 72, 36, 0, 1756, 1757, 3, 212, 106, 0, 1757, 1759, 3, 110, 55, 0, 1758, 1760, 3, 124, 62, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1795, 1, 0, 0, 0, 1761, 1762, 5, 179, 0, 0, 1762, 1763, 5, 152, 0, 0, 1763, 1764, 3, 72, 36, 0, 1764, 1765, 3, 212, 106, 0, 1765, 1771, 5, 332, 0, 0, 1766, 1772, 3, 86, 43, 0, 1767, 1768, 5, 2, 0, 0, 1768, 1769, 3, 16, 8, 0, 1769, 1770, 5, 3, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1766, 1, 0, 0, 0, 1771, 1767, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 3, 212, 106, 0, 1774, 1775, 5, 203, 0, 0, 1775, 1779, 3, 256, 128, 0, 1776, 1778, 3, 112, 56, 0, 1777, 1776, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1785, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1784, 3, 114, 57, 0, 1783, 1782, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1791, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1790, 3, 116, 58, 0, 1789, 1788, 1, 0, 0, 0, 1790, 1793, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1794, 1736, 1, 0, 0, 0, 1794, 1739, 1, 0, 0, 0, 1794, 1747, 1, 0, 0, 0, 1794, 1754, 1, 0, 0, 0, 1794, 1761, 1, 0, 0, 0, 1795, 65, 1, 0, 0, 0, 1796, 1797, 3, 86, 43, 0, 1797, 67, 1, 0, 0, 0, 1798, 1799, 3, 86, 43, 0, 1799, 69, 1, 0, 0, 0, 1800, 1801, 3, 224, 112, 0, 1801, 71, 1, 0, 0, 0, 1802, 1803, 3, 224, 112, 0, 1803, 73, 1, 0, 0, 0, 1804, 1805, 3, 226, 113, 0, 1805, 75, 1, 0, 0, 0, 1806, 1807, 3, 226, 113, 0, 1807, 77, 1, 0, 0, 0, 1808, 1811, 3, 218, 109, 0, 1809, 1811, 4, 39, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1809, 1, 0, 0, 0, 1811, 79, 1, 0, 0, 0, 1812, 1813, 3, 218, 109, 0, 1813, 81, 1, 0, 0, 0, 1814, 1819, 3, 78, 39, 0, 1815, 1816, 5, 4, 0, 0, 1816, 1818, 3, 78, 39, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1821, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 83, 1, 0, 0, 0, 1821, 1819, 1, 0, 0, 0, 1822, 1823, 3, 344, 172, 0, 1823, 85, 1, 0, 0, 0, 1824, 1825, 5, 136, 0, 0, 1825, 1826, 5, 2, 0, 0, 1826, 1827, 3, 248, 124, 0, 1827, 1828, 5, 3, 0, 0, 1828, 1831, 1, 0, 0, 0, 1829, 1831, 3, 218, 109, 0, 1830, 1824, 1, 0, 0, 0, 1830, 1829, 1, 0, 0, 0, 1831, 87, 1, 0, 0, 0, 1832, 1833, 5, 209, 0, 0, 1833, 1834, 5, 31, 0, 0, 1834, 1836, 3, 92, 46, 0, 1835, 1832, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1840, 1, 0, 0, 0, 1837, 1838, 5, 44, 0, 0, 1838, 1839, 5, 31, 0, 0, 1839, 1841, 3, 94, 47, 0, 1840, 1837, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1845, 1, 0, 0, 0, 1842, 1843, 5, 93, 0, 0, 1843, 1844, 5, 31, 0, 0, 1844, 1846, 3, 94, 47, 0, 1845, 1842, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1850, 1, 0, 0, 0, 1847, 1848, 5, 278, 0, 0, 1848, 1849, 5, 31, 0, 0, 1849, 1851, 3, 92, 46, 0, 1850, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1854, 3, 326, 163, 0, 1853, 1852, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1857, 3, 90, 45, 0, 1856, 1855, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1860, 1, 0, 0, 0, 1858, 1859, 5, 202, 0, 0, 1859, 1861, 3, 248, 124, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 89, 1, 0, 0, 0, 1862, 1865, 5, 165, 0, 0, 1863, 1866, 5, 10, 0, 0, 1864, 1866, 3, 248, 124, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1864, 1, 0, 0, 0, 1866, 91, 1, 0, 0, 0, 1867, 1872, 3, 100, 50, 0, 1868, 1869, 5, 4, 0, 0, 1869, 1871, 3, 100, 50, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1874, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 93, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1875, 1880, 3, 248, 124, 0, 1876, 1877, 5, 4, 0, 0, 1877, 1879, 3, 248, 124, 0, 1878, 1876, 1, 0, 0, 0, 1879, 1882, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 95, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1884, 6, 48, -1, 0, 1884, 1885, 3, 98, 49, 0, 1885, 1906, 1, 0, 0, 0, 1886, 1887, 10, 3, 0, 0, 1887, 1889, 7, 23, 0, 0, 1888, 1890, 3, 166, 83, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1905, 3, 96, 48, 4, 1892, 1893, 10, 2, 0, 0, 1893, 1895, 5, 148, 0, 0, 1894, 1896, 3, 166, 83, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1905, 3, 96, 48, 3, 1898, 1899, 10, 1, 0, 0, 1899, 1901, 7, 24, 0, 0, 1900, 1902, 3, 166, 83, 0, 1901, 1900, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1905, 3, 96, 48, 2, 1904, 1886, 1, 0, 0, 0, 1904, 1892, 1, 0, 0, 0, 1904, 1898, 1, 0, 0, 0, 1905, 1908, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 97, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1934, 3, 104, 52, 0, 1910, 1912, 3, 132, 66, 0, 1911, 1913, 3, 102, 51, 0, 1912, 1911, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1934, 1, 0, 0, 0, 1916, 1917, 5, 293, 0, 0, 1917, 1934, 3, 72, 36, 0, 1918, 1919, 5, 333, 0, 0, 1919, 1924, 3, 248, 124, 0, 1920, 1921, 5, 4, 0, 0, 1921, 1923, 3, 248, 124, 0, 1922, 1920, 1, 0, 0, 0, 1923, 1926, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1924, 1, 0, 0, 0, 1927, 1928, 3, 212, 106, 0, 1928, 1934, 1, 0, 0, 0, 1929, 1930, 5, 2, 0, 0, 1930, 1931, 3, 16, 8, 0, 1931, 1932, 5, 3, 0, 0, 1932, 1934, 1, 0, 0, 0, 1933, 1909, 1, 0, 0, 0, 1933, 1910, 1, 0, 0, 0, 1933, 1916, 1, 0, 0, 0, 1933, 1918, 1, 0, 0, 0, 1933, 1929, 1, 0, 0, 0, 1934, 99, 1, 0, 0, 0, 1935, 1938, 3, 78, 39, 0, 1936, 1938, 3, 248, 124, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 1940, 1, 0, 0, 0, 1939, 1941, 7, 25, 0, 0, 1940, 1939, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1944, 1, 0, 0, 0, 1942, 1943, 5, 199, 0, 0, 1943, 1945, 7, 26, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 101, 1, 0, 0, 0, 1946, 1948, 3, 106, 53, 0, 1947, 1949, 3, 124, 62, 0, 1948, 1947, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 3, 88, 44, 0, 1951, 1974, 1, 0, 0, 0, 1952, 1956, 3, 108, 54, 0, 1953, 1955, 3, 164, 82, 0, 1954, 1953, 1, 0, 0, 0, 1955, 1958, 1, 0, 0, 0, 1956, 1954, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1961, 3, 124, 62, 0, 1960, 1959, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1963, 1, 0, 0, 0, 1962, 1964, 3, 136, 68, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1967, 3, 126, 63, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1969, 1, 0, 0, 0, 1968, 1970, 3, 326, 163, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 3, 88, 44, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1946, 1, 0, 0, 0, 1973, 1952, 1, 0, 0, 0, 1974, 103, 1, 0, 0, 0, 1975, 1977, 3, 106, 53, 0, 1976, 1978, 3, 132, 66, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1982, 1, 0, 0, 0, 1979, 1981, 3, 164, 82, 0, 1980, 1979, 1, 0, 0, 0, 1981, 1984, 1, 0, 0, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1986, 1, 0, 0, 0, 1984, 1982, 1, 0, 0, 0, 1985, 1987, 3, 124, 62, 0, 1986, 1985, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1990, 3, 136, 68, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1993, 3, 126, 63, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1996, 3, 326, 163, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2020, 1, 0, 0, 0, 1997, 1999, 3, 108, 54, 0, 1998, 2000, 3, 132, 66, 0, 1999, 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2004, 1, 0, 0, 0, 2001, 2003, 3, 164, 82, 0, 2002, 2001, 1, 0, 0, 0, 2003, 2006, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2008, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2007, 2009, 3, 124, 62, 0, 2008, 2007, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2011, 1, 0, 0, 0, 2010, 2012, 3, 136, 68, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2014, 1, 0, 0, 0, 2013, 2015, 3, 126, 63, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2017, 1, 0, 0, 0, 2016, 2018, 3, 326, 163, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2020, 1, 0, 0, 0, 2019, 1975, 1, 0, 0, 0, 2019, 1997, 1, 0, 0, 0, 2020, 105, 1, 0, 0, 0, 2021, 2022, 5, 263, 0, 0, 2022, 2023, 5, 314, 0, 0, 2023, 2025, 5, 2, 0, 0, 2024, 2026, 3, 166, 83, 0, 2025, 2024, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2028, 3, 254, 127, 0, 2028, 2029, 5, 3, 0, 0, 2029, 2041, 1, 0, 0, 0, 2030, 2032, 5, 177, 0, 0, 2031, 2033, 3, 166, 83, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2041, 3, 254, 127, 0, 2035, 2037, 5, 238, 0, 0, 2036, 2038, 3, 166, 83, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 3, 254, 127, 0, 2040, 2021, 1, 0, 0, 0, 2040, 2030, 1, 0, 0, 0, 2040, 2035, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2044, 3, 214, 107, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2046, 5, 236, 0, 0, 2046, 2048, 3, 358, 179, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 5, 332, 0, 0, 2050, 2063, 3, 358, 179, 0, 2051, 2061, 5, 20, 0, 0, 2052, 2062, 3, 182, 91, 0, 2053, 2062, 3, 312, 156, 0, 2054, 2057, 5, 2, 0, 0, 2055, 2058, 3, 182, 91, 0, 2056, 2058, 3, 312, 156, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 5, 3, 0, 0, 2060, 2062, 1, 0, 0, 0, 2061, 2052, 1, 0, 0, 0, 2061, 2053, 1, 0, 0, 0, 2061, 2054, 1, 0, 0, 0, 2062, 2064, 1, 0, 0, 0, 2063, 2051, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2067, 3, 214, 107, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2070, 1, 0, 0, 0, 2068, 2069, 5, 235, 0, 0, 2069, 2071, 3, 358, 179, 0, 2070, 2068, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 107, 1, 0, 0, 0, 2072, 2076, 5, 263, 0, 0, 2073, 2075, 3, 128, 64, 0, 2074, 2073, 1, 0, 0, 0, 2075, 2078, 1, 0, 0, 0, 2076, 2074, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2080, 1, 0, 0, 0, 2078, 2076, 1, 0, 0, 0, 2079, 2081, 3, 166, 83, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2083, 3, 238, 119, 0, 2083, 109, 1, 0, 0, 0, 2084, 2085, 5, 269, 0, 0, 2085, 2086, 3, 120, 60, 0, 2086, 111, 1, 0, 0, 0, 2087, 2088, 5, 343, 0, 0, 2088, 2091, 5, 178, 0, 0, 2089, 2090, 5, 14, 0, 0, 2090, 2092, 3, 256, 128, 0, 2091, 2089, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2101, 5, 300, 0, 0, 2094, 2102, 5, 84, 0, 0, 2095, 2096, 5, 329, 0, 0, 2096, 2099, 5, 269, 0, 0, 2097, 2100, 5, 363, 0, 0, 2098, 2100, 3, 120, 60, 0, 2099, 2097, 1, 0, 0, 0, 2099, 2098, 1, 0, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2094, 1, 0, 0, 0, 2101, 2095, 1, 0, 0, 0, 2102, 113, 1, 0, 0, 0, 2103, 2104, 5, 343, 0, 0, 2104, 2105, 5, 197, 0, 0, 2105, 2108, 5, 178, 0, 0, 2106, 2107, 5, 31, 0, 0, 2107, 2109, 5, 296, 0, 0, 2108, 2106, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2112, 1, 0, 0, 0, 2110, 2111, 5, 14, 0, 0, 2111, 2113, 3, 256, 128, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2115, 5, 300, 0, 0, 2115, 2116, 3, 118, 59, 0, 2116, 115, 1, 0, 0, 0, 2117, 2118, 5, 343, 0, 0, 2118, 2119, 5, 197, 0, 0, 2119, 2120, 5, 178, 0, 0, 2120, 2121, 5, 31, 0, 0, 2121, 2124, 5, 280, 0, 0, 2122, 2123, 5, 14, 0, 0, 2123, 2125, 3, 256, 128, 0, 2124, 2122, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2131, 5, 300, 0, 0, 2127, 2132, 5, 84, 0, 0, 2128, 2129, 5, 329, 0, 0, 2129, 2130, 5, 269, 0, 0, 2130, 2132, 3, 120, 60, 0, 2131, 2127, 1, 0, 0, 0, 2131, 2128, 1, 0, 0, 0, 2132, 117, 1, 0, 0, 0, 2133, 2134, 5, 147, 0, 0, 2134, 2152, 5, 363, 0, 0, 2135, 2136, 5, 147, 0, 0, 2136, 2137, 5, 2, 0, 0, 2137, 2138, 3, 216, 108, 0, 2138, 2139, 5, 3, 0, 0, 2139, 2140, 5, 333, 0, 0, 2140, 2141, 5, 2, 0, 0, 2141, 2146, 3, 248, 124, 0, 2142, 2143, 5, 4, 0, 0, 2143, 2145, 3, 248, 124, 0, 2144, 2142, 1, 0, 0, 0, 2145, 2148, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2149, 2150, 5, 3, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2133, 1, 0, 0, 0, 2151, 2135, 1, 0, 0, 0, 2152, 119, 1, 0, 0, 0, 2153, 2158, 3, 122, 61, 0, 2154, 2155, 5, 4, 0, 0, 2155, 2157, 3, 122, 61, 0, 2156, 2154, 1, 0, 0, 0, 2157, 2160, 1, 0, 0, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 121, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2162, 3, 218, 109, 0, 2162, 2163, 5, 352, 0, 0, 2163, 2164, 3, 248, 124, 0, 2164, 123, 1, 0, 0, 0, 2165, 2166, 5, 344, 0, 0, 2166, 2167, 3, 256, 128, 0, 2167, 125, 1, 0, 0, 0, 2168, 2169, 5, 132, 0, 0, 2169, 2170, 3, 256, 128, 0, 2170, 127, 1, 0, 0, 0, 2171, 2172, 5, 374, 0, 0, 2172, 2179, 3, 130, 65, 0, 2173, 2175, 5, 4, 0, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 3, 130, 65, 0, 2177, 2174, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2182, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2183, 5, 375, 0, 0, 2183, 129, 1, 0, 0, 0, 2184, 2198, 3, 348, 174, 0, 2185, 2186, 3, 348, 174, 0, 2186, 2187, 5, 2, 0, 0, 2187, 2192, 3, 264, 132, 0, 2188, 2189, 5, 4, 0, 0, 2189, 2191, 3, 264, 132, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2194, 1, 0, 0, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2195, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2195, 2196, 5, 3, 0, 0, 2196, 2198, 1, 0, 0, 0, 2197, 2184, 1, 0, 0, 0, 2197, 2185, 1, 0, 0, 0, 2198, 131, 1, 0, 0, 0, 2199, 2200, 5, 123, 0, 0, 2200, 2205, 3, 168, 84, 0, 2201, 2202, 5, 4, 0, 0, 2202, 2204, 3, 168, 84, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2207, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2211, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2208, 2210, 3, 164, 82, 0, 2209, 2208, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2215, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2216, 3, 144, 72, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2218, 1, 0, 0, 0, 2217, 2219, 3, 150, 75, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 133, 1, 0, 0, 0, 2220, 2222, 5, 119, 0, 0, 2221, 2220, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 7, 27, 0, 0, 2224, 2225, 5, 20, 0, 0, 2225, 2228, 5, 201, 0, 0, 2226, 2229, 5, 382, 0, 0, 2227, 2229, 3, 358, 179, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2227, 1, 0, 0, 0, 2229, 2238, 1, 0, 0, 0, 2230, 2232, 5, 119, 0, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2234, 7, 28, 0, 0, 2234, 2235, 5, 20, 0, 0, 2235, 2236, 5, 201, 0, 0, 2236, 2238, 3, 260, 130, 0, 2237, 2221, 1, 0, 0, 0, 2237, 2231, 1, 0, 0, 0, 2238, 135, 1, 0, 0, 0, 2239, 2240, 5, 130, 0, 0, 2240, 2241, 5, 31, 0, 0, 2241, 2246, 3, 138, 69, 0, 2242, 2243, 5, 4, 0, 0, 2243, 2245, 3, 138, 69, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2248, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2279, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2249, 2250, 5, 130, 0, 0, 2250, 2251, 5, 31, 0, 0, 2251, 2256, 3, 248, 124, 0, 2252, 2253, 5, 4, 0, 0, 2253, 2255, 3, 248, 124, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2258, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2276, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2260, 5, 346, 0, 0, 2260, 2277, 5, 256, 0, 0, 2261, 2262, 5, 346, 0, 0, 2262, 2277, 5, 61, 0, 0, 2263, 2264, 5, 131, 0, 0, 2264, 2265, 5, 271, 0, 0, 2265, 2266, 5, 2, 0, 0, 2266, 2271, 3, 142, 71, 0, 2267, 2268, 5, 4, 0, 0, 2268, 2270, 3, 142, 71, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2274, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 5, 3, 0, 0, 2275, 2277, 1, 0, 0, 0, 2276, 2259, 1, 0, 0, 0, 2276, 2261, 1, 0, 0, 0, 2276, 2263, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2239, 1, 0, 0, 0, 2278, 2249, 1, 0, 0, 0, 2279, 137, 1, 0, 0, 0, 2280, 2284, 3, 78, 39, 0, 2281, 2284, 3, 140, 70, 0, 2282, 2284, 3, 248, 124, 0, 2283, 2280, 1, 0, 0, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2282, 1, 0, 0, 0, 2284, 139, 1, 0, 0, 0, 2285, 2286, 7, 29, 0, 0, 2286, 2287, 5, 2, 0, 0, 2287, 2292, 3, 142, 71, 0, 2288, 2289, 5, 4, 0, 0, 2289, 2291, 3, 142, 71, 0, 2290, 2288, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2295, 2296, 5, 3, 0, 0, 2296, 2317, 1, 0, 0, 0, 2297, 2298, 5, 131, 0, 0, 2298, 2299, 5, 271, 0, 0, 2299, 2302, 5, 2, 0, 0, 2300, 2303, 3, 140, 70, 0, 2301, 2303, 3, 142, 71, 0, 2302, 2300, 1, 0, 0, 0, 2302, 2301, 1, 0, 0, 0, 2303, 2311, 1, 0, 0, 0, 2304, 2307, 5, 4, 0, 0, 2305, 2308, 3, 140, 70, 0, 2306, 2308, 3, 142, 71, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2304, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 5, 3, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2285, 1, 0, 0, 0, 2316, 2297, 1, 0, 0, 0, 2317, 141, 1, 0, 0, 0, 2318, 2339, 3, 78, 39, 0, 2319, 2339, 3, 248, 124, 0, 2320, 2335, 5, 2, 0, 0, 2321, 2324, 3, 78, 39, 0, 2322, 2324, 3, 248, 124, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2322, 1, 0, 0, 0, 2324, 2332, 1, 0, 0, 0, 2325, 2328, 5, 4, 0, 0, 2326, 2329, 3, 78, 39, 0, 2327, 2329, 3, 248, 124, 0, 2328, 2326, 1, 0, 0, 0, 2328, 2327, 1, 0, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2325, 1, 0, 0, 0, 2331, 2334, 1, 0, 0, 0, 2332, 2330, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2336, 1, 0, 0, 0, 2334, 2332, 1, 0, 0, 0, 2335, 2323, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2339, 5, 3, 0, 0, 2338, 2318, 1, 0, 0, 0, 2338, 2319, 1, 0, 0, 0, 2338, 2320, 1, 0, 0, 0, 2339, 143, 1, 0, 0, 0, 2340, 2341, 5, 223, 0, 0, 2341, 2342, 5, 2, 0, 0, 2342, 2343, 3, 236, 118, 0, 2343, 2344, 5, 119, 0, 0, 2344, 2345, 3, 146, 73, 0, 2345, 2346, 5, 140, 0, 0, 2346, 2347, 5, 2, 0, 0, 2347, 2352, 3, 148, 74, 0, 2348, 2349, 5, 4, 0, 0, 2349, 2351, 3, 148, 74, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2355, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2356, 5, 3, 0, 0, 2356, 2357, 5, 3, 0, 0, 2357, 145, 1, 0, 0, 0, 2358, 2371, 3, 348, 174, 0, 2359, 2360, 5, 2, 0, 0, 2360, 2365, 3, 348, 174, 0, 2361, 2362, 5, 4, 0, 0, 2362, 2364, 3, 348, 174, 0, 2363, 2361, 1, 0, 0, 0, 2364, 2367, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2368, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2368, 2369, 5, 3, 0, 0, 2369, 2371, 1, 0, 0, 0, 2370, 2358, 1, 0, 0, 0, 2370, 2359, 1, 0, 0, 0, 2371, 147, 1, 0, 0, 0, 2372, 2377, 3, 248, 124, 0, 2373, 2375, 5, 20, 0, 0, 2374, 2373, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2378, 3, 348, 174, 0, 2377, 2374, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 149, 1, 0, 0, 0, 2379, 2382, 5, 327, 0, 0, 2380, 2381, 7, 30, 0, 0, 2381, 2383, 5, 199, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2387, 5, 2, 0, 0, 2385, 2388, 3, 152, 76, 0, 2386, 2388, 3, 154, 77, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2386, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2394, 5, 3, 0, 0, 2390, 2392, 5, 20, 0, 0, 2391, 2390, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2395, 3, 348, 174, 0, 2394, 2391, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 151, 1, 0, 0, 0, 2396, 2397, 3, 348, 174, 0, 2397, 2398, 5, 119, 0, 0, 2398, 2399, 3, 348, 174, 0, 2399, 2400, 5, 140, 0, 0, 2400, 2401, 5, 2, 0, 0, 2401, 2406, 3, 158, 79, 0, 2402, 2403, 5, 4, 0, 0, 2403, 2405, 3, 158, 79, 0, 2404, 2402, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2410, 5, 3, 0, 0, 2410, 153, 1, 0, 0, 0, 2411, 2412, 5, 2, 0, 0, 2412, 2417, 3, 348, 174, 0, 2413, 2414, 5, 4, 0, 0, 2414, 2416, 3, 348, 174, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2419, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2420, 2421, 5, 3, 0, 0, 2421, 2422, 5, 119, 0, 0, 2422, 2423, 3, 348, 174, 0, 2423, 2424, 5, 140, 0, 0, 2424, 2425, 5, 2, 0, 0, 2425, 2430, 3, 156, 78, 0, 2426, 2427, 5, 4, 0, 0, 2427, 2429, 3, 156, 78, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2432, 1, 0, 0, 0, 2430, 2428, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2434, 5, 3, 0, 0, 2434, 155, 1, 0, 0, 0, 2435, 2436, 5, 2, 0, 0, 2436, 2441, 3, 218, 109, 0, 2437, 2438, 5, 4, 0, 0, 2438, 2440, 3, 218, 109, 0, 2439, 2437, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2444, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2449, 5, 3, 0, 0, 2445, 2447, 5, 20, 0, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2450, 3, 348, 174, 0, 2449, 2446, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 157, 1, 0, 0, 0, 2451, 2456, 3, 218, 109, 0, 2452, 2454, 5, 20, 0, 0, 2453, 2452, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 3, 348, 174, 0, 2456, 2453, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 159, 1, 0, 0, 0, 2458, 2459, 5, 137, 0, 0, 2459, 2460, 5, 197, 0, 0, 2460, 2461, 5, 105, 0, 0, 2461, 161, 1, 0, 0, 0, 2462, 2463, 5, 137, 0, 0, 2463, 2464, 5, 105, 0, 0, 2464, 163, 1, 0, 0, 0, 2465, 2466, 5, 158, 0, 0, 2466, 2468, 5, 338, 0, 0, 2467, 2469, 5, 211, 0, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 3, 76, 38, 0, 2471, 2480, 5, 2, 0, 0, 2472, 2477, 3, 248, 124, 0, 2473, 2474, 5, 4, 0, 0, 2474, 2476, 3, 248, 124, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2479, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2481, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2480, 2472, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2483, 5, 3, 0, 0, 2483, 2495, 3, 212, 106, 0, 2484, 2486, 5, 20, 0, 0, 2485, 2484, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2492, 3, 348, 174, 0, 2488, 2489, 5, 4, 0, 0, 2489, 2491, 3, 348, 174, 0, 2490, 2488, 1, 0, 0, 0, 2491, 2494, 1, 0, 0, 0, 2492, 2490, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2496, 1, 0, 0, 0, 2494, 2492, 1, 0, 0, 0, 2495, 2485, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 165, 1, 0, 0, 0, 2497, 2498, 7, 31, 0, 0, 2498, 167, 1, 0, 0, 0, 2499, 2513, 3, 72, 36, 0, 2500, 2502, 5, 158, 0, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2509, 3, 192, 96, 0, 2504, 2508, 3, 170, 85, 0, 2505, 2508, 3, 144, 72, 0, 2506, 2508, 3, 150, 75, 0, 2507, 2504, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2506, 1, 0, 0, 0, 2508, 2511, 1, 0, 0, 0, 2509, 2507, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2513, 1, 0, 0, 0, 2511, 2509, 1, 0, 0, 0, 2512, 2499, 1, 0, 0, 0, 2512, 2501, 1, 0, 0, 0, 2513, 169, 1, 0, 0, 0, 2514, 2515, 3, 172, 86, 0, 2515, 2517, 5, 155, 0, 0, 2516, 2518, 5, 158, 0, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2521, 3, 192, 96, 0, 2520, 2522, 3, 174, 87, 0, 2521, 2520, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2532, 1, 0, 0, 0, 2523, 2524, 5, 194, 0, 0, 2524, 2525, 3, 172, 86, 0, 2525, 2527, 5, 155, 0, 0, 2526, 2528, 5, 158, 0, 0, 2527, 2526, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2530, 3, 192, 96, 0, 2530, 2532, 1, 0, 0, 0, 2531, 2514, 1, 0, 0, 0, 2531, 2523, 1, 0, 0, 0, 2532, 171, 1, 0, 0, 0, 2533, 2535, 5, 144, 0, 0, 2534, 2533, 1, 0, 0, 0, 2534, 2535, 1, 0, 0, 0, 2535, 2550, 1, 0, 0, 0, 2536, 2550, 5, 60, 0, 0, 2537, 2539, 5, 161, 0, 0, 2538, 2540, 5, 211, 0, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2550, 1, 0, 0, 0, 2541, 2543, 5, 161, 0, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2550, 7, 32, 0, 0, 2545, 2547, 7, 33, 0, 0, 2546, 2548, 5, 211, 0, 0, 2547, 2546, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2550, 1, 0, 0, 0, 2549, 2534, 1, 0, 0, 0, 2549, 2536, 1, 0, 0, 0, 2549, 2537, 1, 0, 0, 0, 2549, 2542, 1, 0, 0, 0, 2549, 2545, 1, 0, 0, 0, 2550, 173, 1, 0, 0, 0, 2551, 2552, 5, 203, 0, 0, 2552, 2556, 3, 256, 128, 0, 2553, 2554, 5, 332, 0, 0, 2554, 2556, 3, 180, 90, 0, 2555, 2551, 1, 0, 0, 0, 2555, 2553, 1, 0, 0, 0, 2556, 175, 1, 0, 0, 0, 2557, 2558, 5, 295, 0, 0, 2558, 2560, 5, 2, 0, 0, 2559, 2561, 3, 178, 89, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2567, 5, 3, 0, 0, 2563, 2564, 5, 243, 0, 0, 2564, 2565, 5, 2, 0, 0, 2565, 2566, 5, 382, 0, 0, 2566, 2568, 5, 3, 0, 0, 2567, 2563, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 177, 1, 0, 0, 0, 2569, 2571, 5, 362, 0, 0, 2570, 2569, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 7, 34, 0, 0, 2573, 2594, 5, 222, 0, 0, 2574, 2575, 3, 248, 124, 0, 2575, 2576, 5, 258, 0, 0, 2576, 2594, 1, 0, 0, 0, 2577, 2578, 5, 29, 0, 0, 2578, 2579, 5, 382, 0, 0, 2579, 2580, 5, 210, 0, 0, 2580, 2581, 5, 201, 0, 0, 2581, 2590, 5, 382, 0, 0, 2582, 2588, 5, 203, 0, 0, 2583, 2589, 3, 348, 174, 0, 2584, 2585, 3, 342, 171, 0, 2585, 2586, 5, 2, 0, 0, 2586, 2587, 5, 3, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2583, 1, 0, 0, 0, 2588, 2584, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2582, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2594, 1, 0, 0, 0, 2592, 2594, 3, 248, 124, 0, 2593, 2570, 1, 0, 0, 0, 2593, 2574, 1, 0, 0, 0, 2593, 2577, 1, 0, 0, 0, 2593, 2592, 1, 0, 0, 0, 2594, 179, 1, 0, 0, 0, 2595, 2596, 5, 2, 0, 0, 2596, 2597, 3, 182, 91, 0, 2597, 2598, 5, 3, 0, 0, 2598, 181, 1, 0, 0, 0, 2599, 2604, 3, 344, 172, 0, 2600, 2601, 5, 4, 0, 0, 2601, 2603, 3, 344, 172, 0, 2602, 2600, 1, 0, 0, 0, 2603, 2606, 1, 0, 0, 0, 2604, 2602, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 183, 1, 0, 0, 0, 2606, 2604, 1, 0, 0, 0, 2607, 2608, 5, 2, 0, 0, 2608, 2613, 3, 186, 93, 0, 2609, 2610, 5, 4, 0, 0, 2610, 2612, 3, 186, 93, 0, 2611, 2609, 1, 0, 0, 0, 2612, 2615, 1, 0, 0, 0, 2613, 2611, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2613, 1, 0, 0, 0, 2616, 2617, 5, 3, 0, 0, 2617, 185, 1, 0, 0, 0, 2618, 2620, 3, 344, 172, 0, 2619, 2621, 7, 25, 0, 0, 2620, 2619, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 187, 1, 0, 0, 0, 2622, 2623, 5, 2, 0, 0, 2623, 2628, 3, 190, 95, 0, 2624, 2625, 5, 4, 0, 0, 2625, 2627, 3, 190, 95, 0, 2626, 2624, 1, 0, 0, 0, 2627, 2630, 1, 0, 0, 0, 2628, 2626, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2631, 1, 0, 0, 0, 2630, 2628, 1, 0, 0, 0, 2631, 2632, 5, 3, 0, 0, 2632, 189, 1, 0, 0, 0, 2633, 2636, 3, 84, 42, 0, 2634, 2635, 5, 51, 0, 0, 2635, 2637, 3, 358, 179, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 191, 1, 0, 0, 0, 2638, 2642, 3, 72, 36, 0, 2639, 2642, 3, 76, 38, 0, 2640, 2642, 3, 86, 43, 0, 2641, 2638, 1, 0, 0, 0, 2641, 2639, 1, 0, 0, 0, 2641, 2640, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2645, 3, 134, 67, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2648, 3, 176, 88, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 3, 212, 106, 0, 2650, 2670, 1, 0, 0, 0, 2651, 2653, 3, 194, 97, 0, 2652, 2654, 3, 176, 88, 0, 2653, 2652, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2656, 3, 212, 106, 0, 2656, 2670, 1, 0, 0, 0, 2657, 2658, 5, 2, 0, 0, 2658, 2659, 3, 168, 84, 0, 2659, 2661, 5, 3, 0, 0, 2660, 2662, 3, 176, 88, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 3, 212, 106, 0, 2664, 2670, 1, 0, 0, 0, 2665, 2666, 3, 196, 98, 0, 2666, 2667, 3, 212, 106, 0, 2667, 2670, 1, 0, 0, 0, 2668, 2670, 3, 208, 104, 0, 2669, 2641, 1, 0, 0, 0, 2669, 2651, 1, 0, 0, 0, 2669, 2657, 1, 0, 0, 0, 2669, 2665, 1, 0, 0, 0, 2669, 2668, 1, 0, 0, 0, 2670, 193, 1, 0, 0, 0, 2671, 2672, 5, 2, 0, 0, 2672, 2673, 3, 16, 8, 0, 2673, 2674, 5, 3, 0, 0, 2674, 195, 1, 0, 0, 0, 2675, 2676, 5, 333, 0, 0, 2676, 2681, 3, 248, 124, 0, 2677, 2678, 5, 4, 0, 0, 2678, 2680, 3, 248, 124, 0, 2679, 2677, 1, 0, 0, 0, 2680, 2683, 1, 0, 0, 0, 2681, 2679, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 197, 1, 0, 0, 0, 2683, 2681, 1, 0, 0, 0, 2684, 2685, 5, 293, 0, 0, 2685, 2687, 3, 72, 36, 0, 2686, 2688, 3, 200, 100, 0, 2687, 2686, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2704, 1, 0, 0, 0, 2689, 2690, 5, 293, 0, 0, 2690, 2691, 5, 2, 0, 0, 2691, 2692, 3, 72, 36, 0, 2692, 2694, 5, 3, 0, 0, 2693, 2695, 3, 200, 100, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2704, 1, 0, 0, 0, 2696, 2697, 5, 293, 0, 0, 2697, 2698, 5, 2, 0, 0, 2698, 2699, 3, 16, 8, 0, 2699, 2701, 5, 3, 0, 0, 2700, 2702, 3, 200, 100, 0, 2701, 2700, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2704, 1, 0, 0, 0, 2703, 2684, 1, 0, 0, 0, 2703, 2689, 1, 0, 0, 0, 2703, 2696, 1, 0, 0, 0, 2704, 199, 1, 0, 0, 0, 2705, 2706, 5, 346, 0, 0, 2706, 2707, 5, 274, 0, 0, 2707, 2725, 5, 217, 0, 0, 2708, 2709, 7, 35, 0, 0, 2709, 2722, 5, 31, 0, 0, 2710, 2711, 5, 2, 0, 0, 2711, 2716, 3, 248, 124, 0, 2712, 2713, 5, 4, 0, 0, 2713, 2715, 3, 248, 124, 0, 2714, 2712, 1, 0, 0, 0, 2715, 2718, 1, 0, 0, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2719, 1, 0, 0, 0, 2718, 2716, 1, 0, 0, 0, 2719, 2720, 5, 3, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2723, 3, 248, 124, 0, 2722, 2710, 1, 0, 0, 0, 2722, 2721, 1, 0, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2705, 1, 0, 0, 0, 2724, 2708, 1, 0, 0, 0, 2725, 2735, 1, 0, 0, 0, 2726, 2727, 7, 36, 0, 0, 2727, 2733, 5, 31, 0, 0, 2728, 2729, 5, 2, 0, 0, 2729, 2730, 3, 92, 46, 0, 2730, 2731, 5, 3, 0, 0, 2731, 2734, 1, 0, 0, 0, 2732, 2734, 3, 100, 50, 0, 2733, 2728, 1, 0, 0, 0, 2733, 2732, 1, 0, 0, 0, 2734, 2736, 1, 0, 0, 0, 2735, 2726, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 201, 1, 0, 0, 0, 2737, 2738, 3, 348, 174, 0, 2738, 2739, 5, 373, 0, 0, 2739, 2740, 3, 198, 99, 0, 2740, 203, 1, 0, 0, 0, 2741, 2744, 3, 198, 99, 0, 2742, 2744, 3, 202, 101, 0, 2743, 2741, 1, 0, 0, 0, 2743, 2742, 1, 0, 0, 0, 2744, 205, 1, 0, 0, 0, 2745, 2748, 3, 204, 102, 0, 2746, 2748, 3, 252, 126, 0, 2747, 2745, 1, 0, 0, 0, 2747, 2746, 1, 0, 0, 0, 2748, 207, 1, 0, 0, 0, 2749, 2750, 3, 210, 105, 0, 2750, 2751, 3, 212, 106, 0, 2751, 209, 1, 0, 0, 0, 2752, 2753, 3, 338, 169, 0, 2753, 2762, 5, 2, 0, 0, 2754, 2759, 3, 206, 103, 0, 2755, 2756, 5, 4, 0, 0, 2756, 2758, 3, 206, 103, 0, 2757, 2755, 1, 0, 0, 0, 2758, 2761, 1, 0, 0, 0, 2759, 2757, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2763, 1, 0, 0, 0, 2761, 2759, 1, 0, 0, 0, 2762, 2754, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 5, 3, 0, 0, 2765, 211, 1, 0, 0, 0, 2766, 2768, 5, 20, 0, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2771, 3, 350, 175, 0, 2770, 2772, 3, 180, 90, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2774, 1, 0, 0, 0, 2773, 2767, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 213, 1, 0, 0, 0, 2775, 2776, 5, 257, 0, 0, 2776, 2777, 5, 121, 0, 0, 2777, 2778, 5, 266, 0, 0, 2778, 2782, 3, 358, 179, 0, 2779, 2780, 5, 346, 0, 0, 2780, 2781, 5, 267, 0, 0, 2781, 2783, 3, 42, 21, 0, 2782, 2779, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2825, 1, 0, 0, 0, 2784, 2785, 5, 257, 0, 0, 2785, 2786, 5, 121, 0, 0, 2786, 2796, 5, 85, 0, 0, 2787, 2788, 5, 113, 0, 0, 2788, 2789, 5, 299, 0, 0, 2789, 2790, 5, 31, 0, 0, 2790, 2794, 3, 358, 179, 0, 2791, 2792, 5, 101, 0, 0, 2792, 2793, 5, 31, 0, 0, 2793, 2795, 3, 358, 179, 0, 2794, 2791, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 1, 0, 0, 0, 2796, 2787, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2803, 1, 0, 0, 0, 2798, 2799, 5, 48, 0, 0, 2799, 2800, 5, 154, 0, 0, 2800, 2801, 5, 299, 0, 0, 2801, 2802, 5, 31, 0, 0, 2802, 2804, 3, 358, 179, 0, 2803, 2798, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2810, 1, 0, 0, 0, 2805, 2806, 5, 177, 0, 0, 2806, 2807, 5, 156, 0, 0, 2807, 2808, 5, 299, 0, 0, 2808, 2809, 5, 31, 0, 0, 2809, 2811, 3, 358, 179, 0, 2810, 2805, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, 0, 2811, 2816, 1, 0, 0, 0, 2812, 2813, 5, 166, 0, 0, 2813, 2814, 5, 299, 0, 0, 2814, 2815, 5, 31, 0, 0, 2815, 2817, 3, 358, 179, 0, 2816, 2812, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2822, 1, 0, 0, 0, 2818, 2819, 5, 198, 0, 0, 2819, 2820, 5, 83, 0, 0, 2820, 2821, 5, 20, 0, 0, 2821, 2823, 3, 358, 179, 0, 2822, 2818, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2825, 1, 0, 0, 0, 2824, 2775, 1, 0, 0, 0, 2824, 2784, 1, 0, 0, 0, 2825, 215, 1, 0, 0, 0, 2826, 2831, 3, 218, 109, 0, 2827, 2828, 5, 4, 0, 0, 2828, 2830, 3, 218, 109, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2833, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 217, 1, 0, 0, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2839, 3, 344, 172, 0, 2835, 2836, 5, 5, 0, 0, 2836, 2838, 3, 344, 172, 0, 2837, 2835, 1, 0, 0, 0, 2838, 2841, 1, 0, 0, 0, 2839, 2837, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 219, 1, 0, 0, 0, 2841, 2839, 1, 0, 0, 0, 2842, 2847, 3, 222, 111, 0, 2843, 2844, 5, 4, 0, 0, 2844, 2846, 3, 222, 111, 0, 2845, 2843, 1, 0, 0, 0, 2846, 2849, 1, 0, 0, 0, 2847, 2845, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 221, 1, 0, 0, 0, 2849, 2847, 1, 0, 0, 0, 2850, 2853, 3, 218, 109, 0, 2851, 2852, 5, 207, 0, 0, 2852, 2854, 3, 42, 21, 0, 2853, 2851, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 223, 1, 0, 0, 0, 2855, 2856, 3, 344, 172, 0, 2856, 2857, 5, 5, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2855, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2861, 3, 344, 172, 0, 2861, 225, 1, 0, 0, 0, 2862, 2863, 3, 344, 172, 0, 2863, 2864, 5, 5, 0, 0, 2864, 2866, 1, 0, 0, 0, 2865, 2862, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2868, 3, 344, 172, 0, 2868, 227, 1, 0, 0, 0, 2869, 2870, 3, 78, 39, 0, 2870, 229, 1, 0, 0, 0, 2871, 2872, 3, 248, 124, 0, 2872, 231, 1, 0, 0, 0, 2873, 2874, 3, 342, 171, 0, 2874, 2875, 5, 5, 0, 0, 2875, 2877, 1, 0, 0, 0, 2876, 2873, 1, 0, 0, 0, 2877, 2880, 1, 0, 0, 0, 2878, 2876, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2881, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2881, 2882, 5, 363, 0, 0, 2882, 233, 1, 0, 0, 0, 2883, 2887, 3, 232, 116, 0, 2884, 2887, 3, 228, 114, 0, 2885, 2887, 3, 230, 115, 0, 2886, 2883, 1, 0, 0, 0, 2886, 2884, 1, 0, 0, 0, 2886, 2885, 1, 0, 0, 0, 2887, 2895, 1, 0, 0, 0, 2888, 2890, 5, 20, 0, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2894, 3, 344, 172, 0, 2892, 2894, 3, 180, 90, 0, 2893, 2891, 1, 0, 0, 0, 2893, 2892, 1, 0, 0, 0, 2894, 2896, 1, 0, 0, 0, 2895, 2889, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 235, 1, 0, 0, 0, 2897, 2902, 3, 234, 117, 0, 2898, 2899, 5, 4, 0, 0, 2899, 2901, 3, 234, 117, 0, 2900, 2898, 1, 0, 0, 0, 2901, 2904, 1, 0, 0, 0, 2902, 2900, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 237, 1, 0, 0, 0, 2904, 2902, 1, 0, 0, 0, 2905, 2906, 3, 236, 118, 0, 2906, 239, 1, 0, 0, 0, 2907, 2908, 5, 2, 0, 0, 2908, 2913, 3, 242, 121, 0, 2909, 2910, 5, 4, 0, 0, 2910, 2912, 3, 242, 121, 0, 2911, 2909, 1, 0, 0, 0, 2912, 2915, 1, 0, 0, 0, 2913, 2911, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2916, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2916, 2917, 5, 3, 0, 0, 2917, 241, 1, 0, 0, 0, 2918, 2921, 3, 244, 122, 0, 2919, 2921, 3, 314, 157, 0, 2920, 2918, 1, 0, 0, 0, 2920, 2919, 1, 0, 0, 0, 2921, 243, 1, 0, 0, 0, 2922, 2936, 3, 342, 171, 0, 2923, 2924, 3, 348, 174, 0, 2924, 2925, 5, 2, 0, 0, 2925, 2930, 3, 246, 123, 0, 2926, 2927, 5, 4, 0, 0, 2927, 2929, 3, 246, 123, 0, 2928, 2926, 1, 0, 0, 0, 2929, 2932, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2933, 1, 0, 0, 0, 2932, 2930, 1, 0, 0, 0, 2933, 2934, 5, 3, 0, 0, 2934, 2936, 1, 0, 0, 0, 2935, 2922, 1, 0, 0, 0, 2935, 2923, 1, 0, 0, 0, 2936, 245, 1, 0, 0, 0, 2937, 2940, 3, 342, 171, 0, 2938, 2940, 3, 268, 134, 0, 2939, 2937, 1, 0, 0, 0, 2939, 2938, 1, 0, 0, 0, 2940, 247, 1, 0, 0, 0, 2941, 2942, 3, 256, 128, 0, 2942, 249, 1, 0, 0, 0, 2943, 2944, 3, 348, 174, 0, 2944, 2945, 5, 373, 0, 0, 2945, 2946, 3, 248, 124, 0, 2946, 251, 1, 0, 0, 0, 2947, 2950, 3, 248, 124, 0, 2948, 2950, 3, 250, 125, 0, 2949, 2947, 1, 0, 0, 0, 2949, 2948, 1, 0, 0, 0, 2950, 253, 1, 0, 0, 0, 2951, 2956, 3, 248, 124, 0, 2952, 2953, 5, 4, 0, 0, 2953, 2955, 3, 248, 124, 0, 2954, 2952, 1, 0, 0, 0, 2955, 2958, 1, 0, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 255, 1, 0, 0, 0, 2958, 2956, 1, 0, 0, 0, 2959, 2960, 6, 128, -1, 0, 2960, 2961, 7, 37, 0, 0, 2961, 2972, 3, 256, 128, 5, 2962, 2963, 5, 105, 0, 0, 2963, 2964, 5, 2, 0, 0, 2964, 2965, 3, 16, 8, 0, 2965, 2966, 5, 3, 0, 0, 2966, 2972, 1, 0, 0, 0, 2967, 2969, 3, 260, 130, 0, 2968, 2970, 3, 258, 129, 0, 2969, 2968, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 2972, 1, 0, 0, 0, 2971, 2959, 1, 0, 0, 0, 2971, 2962, 1, 0, 0, 0, 2971, 2967, 1, 0, 0, 0, 2972, 2981, 1, 0, 0, 0, 2973, 2974, 10, 2, 0, 0, 2974, 2975, 5, 14, 0, 0, 2975, 2980, 3, 256, 128, 3, 2976, 2977, 10, 1, 0, 0, 2977, 2978, 5, 208, 0, 0, 2978, 2980, 3, 256, 128, 2, 2979, 2973, 1, 0, 0, 0, 2979, 2976, 1, 0, 0, 0, 2980, 2983, 1, 0, 0, 0, 2981, 2979, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 257, 1, 0, 0, 0, 2983, 2981, 1, 0, 0, 0, 2984, 2986, 5, 197, 0, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 5, 24, 0, 0, 2988, 2989, 3, 260, 130, 0, 2989, 2990, 5, 14, 0, 0, 2990, 2991, 3, 260, 130, 0, 2991, 3067, 1, 0, 0, 0, 2992, 2994, 5, 197, 0, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2996, 5, 140, 0, 0, 2996, 2997, 5, 2, 0, 0, 2997, 3002, 3, 248, 124, 0, 2998, 2999, 5, 4, 0, 0, 2999, 3001, 3, 248, 124, 0, 3000, 2998, 1, 0, 0, 0, 3001, 3004, 1, 0, 0, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3005, 1, 0, 0, 0, 3004, 3002, 1, 0, 0, 0, 3005, 3006, 5, 3, 0, 0, 3006, 3067, 1, 0, 0, 0, 3007, 3009, 5, 197, 0, 0, 3008, 3007, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 5, 140, 0, 0, 3011, 3012, 5, 2, 0, 0, 3012, 3013, 3, 16, 8, 0, 3013, 3014, 5, 3, 0, 0, 3014, 3067, 1, 0, 0, 0, 3015, 3017, 5, 197, 0, 0, 3016, 3015, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 7, 38, 0, 0, 3019, 3067, 3, 260, 130, 0, 3020, 3022, 5, 197, 0, 0, 3021, 3020, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 7, 39, 0, 0, 3024, 3038, 7, 40, 0, 0, 3025, 3026, 5, 2, 0, 0, 3026, 3039, 5, 3, 0, 0, 3027, 3028, 5, 2, 0, 0, 3028, 3033, 3, 248, 124, 0, 3029, 3030, 5, 4, 0, 0, 3030, 3032, 3, 248, 124, 0, 3031, 3029, 1, 0, 0, 0, 3032, 3035, 1, 0, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3036, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3036, 3037, 5, 3, 0, 0, 3037, 3039, 1, 0, 0, 0, 3038, 3025, 1, 0, 0, 0, 3038, 3027, 1, 0, 0, 0, 3039, 3067, 1, 0, 0, 0, 3040, 3042, 5, 197, 0, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 7, 39, 0, 0, 3044, 3047, 3, 260, 130, 0, 3045, 3046, 5, 100, 0, 0, 3046, 3048, 3, 358, 179, 0, 3047, 3045, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3067, 1, 0, 0, 0, 3049, 3051, 5, 153, 0, 0, 3050, 3052, 5, 197, 0, 0, 3051, 3050, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3067, 5, 198, 0, 0, 3054, 3056, 5, 153, 0, 0, 3055, 3057, 5, 197, 0, 0, 3056, 3055, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3067, 7, 41, 0, 0, 3059, 3061, 5, 153, 0, 0, 3060, 3062, 5, 197, 0, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3064, 5, 92, 0, 0, 3064, 3065, 5, 123, 0, 0, 3065, 3067, 3, 260, 130, 0, 3066, 2985, 1, 0, 0, 0, 3066, 2993, 1, 0, 0, 0, 3066, 3008, 1, 0, 0, 0, 3066, 3016, 1, 0, 0, 0, 3066, 3021, 1, 0, 0, 0, 3066, 3041, 1, 0, 0, 0, 3066, 3049, 1, 0, 0, 0, 3066, 3054, 1, 0, 0, 0, 3066, 3059, 1, 0, 0, 0, 3067, 259, 1, 0, 0, 0, 3068, 3069, 6, 130, -1, 0, 3069, 3073, 3, 264, 132, 0, 3070, 3071, 7, 42, 0, 0, 3071, 3073, 3, 260, 130, 7, 3072, 3068, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3095, 1, 0, 0, 0, 3074, 3075, 10, 6, 0, 0, 3075, 3076, 7, 43, 0, 0, 3076, 3094, 3, 260, 130, 7, 3077, 3078, 10, 5, 0, 0, 3078, 3079, 7, 44, 0, 0, 3079, 3094, 3, 260, 130, 6, 3080, 3081, 10, 4, 0, 0, 3081, 3082, 5, 367, 0, 0, 3082, 3094, 3, 260, 130, 5, 3083, 3084, 10, 3, 0, 0, 3084, 3085, 5, 370, 0, 0, 3085, 3094, 3, 260, 130, 4, 3086, 3087, 10, 2, 0, 0, 3087, 3088, 5, 368, 0, 0, 3088, 3094, 3, 260, 130, 3, 3089, 3090, 10, 1, 0, 0, 3090, 3091, 3, 270, 135, 0, 3091, 3092, 3, 260, 130, 2, 3092, 3094, 1, 0, 0, 0, 3093, 3074, 1, 0, 0, 0, 3093, 3077, 1, 0, 0, 0, 3093, 3080, 1, 0, 0, 0, 3093, 3083, 1, 0, 0, 0, 3093, 3086, 1, 0, 0, 0, 3093, 3089, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 261, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3099, 7, 45, 0, 0, 3099, 263, 1, 0, 0, 0, 3100, 3101, 6, 132, -1, 0, 3101, 3350, 7, 46, 0, 0, 3102, 3103, 7, 47, 0, 0, 3103, 3106, 5, 2, 0, 0, 3104, 3107, 3, 262, 131, 0, 3105, 3107, 3, 358, 179, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3105, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 5, 4, 0, 0, 3109, 3110, 3, 260, 130, 0, 3110, 3111, 5, 4, 0, 0, 3111, 3112, 3, 260, 130, 0, 3112, 3113, 5, 3, 0, 0, 3113, 3350, 1, 0, 0, 0, 3114, 3115, 7, 48, 0, 0, 3115, 3118, 5, 2, 0, 0, 3116, 3119, 3, 262, 131, 0, 3117, 3119, 3, 358, 179, 0, 3118, 3116, 1, 0, 0, 0, 3118, 3117, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3121, 5, 4, 0, 0, 3121, 3122, 3, 260, 130, 0, 3122, 3123, 5, 4, 0, 0, 3123, 3124, 3, 260, 130, 0, 3124, 3125, 5, 3, 0, 0, 3125, 3350, 1, 0, 0, 0, 3126, 3128, 5, 35, 0, 0, 3127, 3129, 3, 324, 162, 0, 3128, 3127, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3134, 1, 0, 0, 0, 3132, 3133, 5, 97, 0, 0, 3133, 3135, 3, 248, 124, 0, 3134, 3132, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 5, 99, 0, 0, 3137, 3350, 1, 0, 0, 0, 3138, 3139, 5, 35, 0, 0, 3139, 3141, 3, 248, 124, 0, 3140, 3142, 3, 324, 162, 0, 3141, 3140, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3141, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3146, 5, 97, 0, 0, 3146, 3148, 3, 248, 124, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 99, 0, 0, 3150, 3350, 1, 0, 0, 0, 3151, 3152, 7, 49, 0, 0, 3152, 3153, 5, 2, 0, 0, 3153, 3154, 3, 248, 124, 0, 3154, 3155, 5, 20, 0, 0, 3155, 3156, 3, 298, 149, 0, 3156, 3157, 5, 3, 0, 0, 3157, 3350, 1, 0, 0, 0, 3158, 3159, 5, 286, 0, 0, 3159, 3168, 5, 2, 0, 0, 3160, 3165, 3, 234, 117, 0, 3161, 3162, 5, 4, 0, 0, 3162, 3164, 3, 234, 117, 0, 3163, 3161, 1, 0, 0, 0, 3164, 3167, 1, 0, 0, 0, 3165, 3163, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3169, 1, 0, 0, 0, 3167, 3165, 1, 0, 0, 0, 3168, 3160, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3350, 5, 3, 0, 0, 3171, 3172, 5, 116, 0, 0, 3172, 3173, 5, 2, 0, 0, 3173, 3176, 3, 248, 124, 0, 3174, 3175, 5, 138, 0, 0, 3175, 3177, 5, 199, 0, 0, 3176, 3174, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 5, 3, 0, 0, 3179, 3350, 1, 0, 0, 0, 3180, 3181, 5, 17, 0, 0, 3181, 3182, 5, 2, 0, 0, 3182, 3185, 3, 248, 124, 0, 3183, 3184, 5, 138, 0, 0, 3184, 3186, 5, 199, 0, 0, 3185, 3183, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3188, 5, 3, 0, 0, 3188, 3350, 1, 0, 0, 0, 3189, 3190, 5, 157, 0, 0, 3190, 3191, 5, 2, 0, 0, 3191, 3194, 3, 248, 124, 0, 3192, 3193, 5, 138, 0, 0, 3193, 3195, 5, 199, 0, 0, 3194, 3192, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 5, 3, 0, 0, 3197, 3350, 1, 0, 0, 0, 3198, 3199, 5, 225, 0, 0, 3199, 3200, 5, 2, 0, 0, 3200, 3201, 3, 260, 130, 0, 3201, 3202, 5, 140, 0, 0, 3202, 3203, 3, 260, 130, 0, 3203, 3204, 5, 3, 0, 0, 3204, 3350, 1, 0, 0, 0, 3205, 3350, 3, 268, 134, 0, 3206, 3350, 5, 363, 0, 0, 3207, 3208, 3, 342, 171, 0, 3208, 3209, 5, 5, 0, 0, 3209, 3210, 5, 363, 0, 0, 3210, 3350, 1, 0, 0, 0, 3211, 3212, 5, 2, 0, 0, 3212, 3215, 3, 234, 117, 0, 3213, 3214, 5, 4, 0, 0, 3214, 3216, 3, 234, 117, 0, 3215, 3213, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3215, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3220, 5, 3, 0, 0, 3220, 3350, 1, 0, 0, 0, 3221, 3222, 5, 2, 0, 0, 3222, 3223, 3, 16, 8, 0, 3223, 3224, 5, 3, 0, 0, 3224, 3350, 1, 0, 0, 0, 3225, 3226, 5, 136, 0, 0, 3226, 3227, 5, 2, 0, 0, 3227, 3228, 3, 248, 124, 0, 3228, 3229, 5, 3, 0, 0, 3229, 3350, 1, 0, 0, 0, 3230, 3231, 3, 338, 169, 0, 3231, 3243, 5, 2, 0, 0, 3232, 3234, 3, 166, 83, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3240, 3, 252, 126, 0, 3236, 3237, 5, 4, 0, 0, 3237, 3239, 3, 252, 126, 0, 3238, 3236, 1, 0, 0, 0, 3239, 3242, 1, 0, 0, 0, 3240, 3238, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3244, 1, 0, 0, 0, 3242, 3240, 1, 0, 0, 0, 3243, 3233, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3252, 5, 3, 0, 0, 3246, 3247, 5, 114, 0, 0, 3247, 3248, 5, 2, 0, 0, 3248, 3249, 5, 344, 0, 0, 3249, 3250, 3, 256, 128, 0, 3250, 3251, 5, 3, 0, 0, 3251, 3253, 1, 0, 0, 0, 3252, 3246, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3256, 1, 0, 0, 0, 3254, 3255, 7, 50, 0, 0, 3255, 3257, 5, 199, 0, 0, 3256, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3260, 1, 0, 0, 0, 3258, 3259, 5, 213, 0, 0, 3259, 3261, 3, 330, 165, 0, 3260, 3258, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3350, 1, 0, 0, 0, 3262, 3263, 3, 348, 174, 0, 3263, 3264, 5, 372, 0, 0, 3264, 3265, 3, 248, 124, 0, 3265, 3350, 1, 0, 0, 0, 3266, 3267, 5, 2, 0, 0, 3267, 3270, 3, 348, 174, 0, 3268, 3269, 5, 4, 0, 0, 3269, 3271, 3, 348, 174, 0, 3270, 3268, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3270, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3275, 5, 3, 0, 0, 3275, 3276, 5, 372, 0, 0, 3276, 3277, 3, 248, 124, 0, 3277, 3350, 1, 0, 0, 0, 3278, 3350, 3, 80, 40, 0, 3279, 3280, 5, 2, 0, 0, 3280, 3281, 3, 248, 124, 0, 3281, 3282, 5, 3, 0, 0, 3282, 3350, 1, 0, 0, 0, 3283, 3284, 5, 110, 0, 0, 3284, 3285, 5, 2, 0, 0, 3285, 3286, 3, 348, 174, 0, 3286, 3287, 5, 123, 0, 0, 3287, 3288, 3, 260, 130, 0, 3288, 3289, 5, 3, 0, 0, 3289, 3350, 1, 0, 0, 0, 3290, 3291, 7, 51, 0, 0, 3291, 3292, 5, 2, 0, 0, 3292, 3293, 3, 260, 130, 0, 3293, 3294, 7, 52, 0, 0, 3294, 3297, 3, 260, 130, 0, 3295, 3296, 7, 53, 0, 0, 3296, 3298, 3, 260, 130, 0, 3297, 3295, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3300, 5, 3, 0, 0, 3300, 3350, 1, 0, 0, 0, 3301, 3302, 5, 315, 0, 0, 3302, 3304, 5, 2, 0, 0, 3303, 3305, 7, 54, 0, 0, 3304, 3303, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3307, 1, 0, 0, 0, 3306, 3308, 3, 260, 130, 0, 3307, 3306, 1, 0, 0, 0, 3307, 3308, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 5, 123, 0, 0, 3310, 3311, 3, 260, 130, 0, 3311, 3312, 5, 3, 0, 0, 3312, 3350, 1, 0, 0, 0, 3313, 3314, 5, 215, 0, 0, 3314, 3315, 5, 2, 0, 0, 3315, 3316, 3, 260, 130, 0, 3316, 3317, 5, 224, 0, 0, 3317, 3318, 3, 260, 130, 0, 3318, 3319, 5, 123, 0, 0, 3319, 3322, 3, 260, 130, 0, 3320, 3321, 5, 119, 0, 0, 3321, 3323, 3, 260, 130, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3325, 5, 3, 0, 0, 3325, 3350, 1, 0, 0, 0, 3326, 3327, 7, 55, 0, 0, 3327, 3328, 5, 2, 0, 0, 3328, 3329, 3, 260, 130, 0, 3329, 3330, 5, 3, 0, 0, 3330, 3331, 5, 347, 0, 0, 3331, 3332, 5, 130, 0, 0, 3332, 3333, 5, 2, 0, 0, 3333, 3334, 5, 209, 0, 0, 3334, 3335, 5, 31, 0, 0, 3335, 3336, 3, 100, 50, 0, 3336, 3343, 5, 3, 0, 0, 3337, 3338, 5, 114, 0, 0, 3338, 3339, 5, 2, 0, 0, 3339, 3340, 5, 344, 0, 0, 3340, 3341, 3, 256, 128, 0, 3341, 3342, 5, 3, 0, 0, 3342, 3344, 1, 0, 0, 0, 3343, 3337, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3347, 1, 0, 0, 0, 3345, 3346, 5, 213, 0, 0, 3346, 3348, 3, 330, 165, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3350, 1, 0, 0, 0, 3349, 3100, 1, 0, 0, 0, 3349, 3102, 1, 0, 0, 0, 3349, 3114, 1, 0, 0, 0, 3349, 3126, 1, 0, 0, 0, 3349, 3138, 1, 0, 0, 0, 3349, 3151, 1, 0, 0, 0, 3349, 3158, 1, 0, 0, 0, 3349, 3171, 1, 0, 0, 0, 3349, 3180, 1, 0, 0, 0, 3349, 3189, 1, 0, 0, 0, 3349, 3198, 1, 0, 0, 0, 3349, 3205, 1, 0, 0, 0, 3349, 3206, 1, 0, 0, 0, 3349, 3207, 1, 0, 0, 0, 3349, 3211, 1, 0, 0, 0, 3349, 3221, 1, 0, 0, 0, 3349, 3225, 1, 0, 0, 0, 3349, 3230, 1, 0, 0, 0, 3349, 3262, 1, 0, 0, 0, 3349, 3266, 1, 0, 0, 0, 3349, 3278, 1, 0, 0, 0, 3349, 3279, 1, 0, 0, 0, 3349, 3283, 1, 0, 0, 0, 3349, 3290, 1, 0, 0, 0, 3349, 3301, 1, 0, 0, 0, 3349, 3313, 1, 0, 0, 0, 3349, 3326, 1, 0, 0, 0, 3350, 3361, 1, 0, 0, 0, 3351, 3352, 10, 9, 0, 0, 3352, 3353, 5, 6, 0, 0, 3353, 3354, 3, 260, 130, 0, 3354, 3355, 5, 7, 0, 0, 3355, 3360, 1, 0, 0, 0, 3356, 3357, 10, 7, 0, 0, 3357, 3358, 5, 5, 0, 0, 3358, 3360, 3, 348, 174, 0, 3359, 3351, 1, 0, 0, 0, 3359, 3356, 1, 0, 0, 0, 3360, 3363, 1, 0, 0, 0, 3361, 3359, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 265, 1, 0, 0, 0, 3363, 3361, 1, 0, 0, 0, 3364, 3372, 5, 71, 0, 0, 3365, 3372, 5, 303, 0, 0, 3366, 3372, 5, 304, 0, 0, 3367, 3372, 5, 305, 0, 0, 3368, 3372, 5, 149, 0, 0, 3369, 3372, 5, 133, 0, 0, 3370, 3372, 3, 348, 174, 0, 3371, 3364, 1, 0, 0, 0, 3371, 3365, 1, 0, 0, 0, 3371, 3366, 1, 0, 0, 0, 3371, 3367, 1, 0, 0, 0, 3371, 3368, 1, 0, 0, 0, 3371, 3369, 1, 0, 0, 0, 3371, 3370, 1, 0, 0, 0, 3372, 267, 1, 0, 0, 0, 3373, 3389, 5, 198, 0, 0, 3374, 3389, 5, 376, 0, 0, 3375, 3376, 5, 371, 0, 0, 3376, 3389, 3, 348, 174, 0, 3377, 3389, 3, 278, 139, 0, 3378, 3379, 3, 266, 133, 0, 3379, 3380, 3, 358, 179, 0, 3380, 3389, 1, 0, 0, 0, 3381, 3389, 3, 354, 177, 0, 3382, 3389, 3, 276, 138, 0, 3383, 3385, 3, 358, 179, 0, 3384, 3383, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3389, 1, 0, 0, 0, 3388, 3373, 1, 0, 0, 0, 3388, 3374, 1, 0, 0, 0, 3388, 3375, 1, 0, 0, 0, 3388, 3377, 1, 0, 0, 0, 3388, 3378, 1, 0, 0, 0, 3388, 3381, 1, 0, 0, 0, 3388, 3382, 1, 0, 0, 0, 3388, 3384, 1, 0, 0, 0, 3389, 269, 1, 0, 0, 0, 3390, 3391, 7, 56, 0, 0, 3391, 271, 1, 0, 0, 0, 3392, 3393, 7, 57, 0, 0, 3393, 273, 1, 0, 0, 0, 3394, 3395, 7, 58, 0, 0, 3395, 275, 1, 0, 0, 0, 3396, 3397, 7, 59, 0, 0, 3397, 277, 1, 0, 0, 0, 3398, 3401, 5, 149, 0, 0, 3399, 3402, 3, 280, 140, 0, 3400, 3402, 3, 284, 142, 0, 3401, 3399, 1, 0, 0, 0, 3401, 3400, 1, 0, 0, 0, 3402, 279, 1, 0, 0, 0, 3403, 3405, 3, 282, 141, 0, 3404, 3406, 3, 286, 143, 0, 3405, 3404, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 281, 1, 0, 0, 0, 3407, 3408, 3, 288, 144, 0, 3408, 3409, 3, 290, 145, 0, 3409, 3411, 1, 0, 0, 0, 3410, 3407, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3410, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 283, 1, 0, 0, 0, 3414, 3417, 3, 286, 143, 0, 3415, 3418, 3, 282, 141, 0, 3416, 3418, 3, 286, 143, 0, 3417, 3415, 1, 0, 0, 0, 3417, 3416, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 285, 1, 0, 0, 0, 3419, 3420, 3, 288, 144, 0, 3420, 3421, 3, 292, 146, 0, 3421, 3422, 5, 309, 0, 0, 3422, 3423, 3, 292, 146, 0, 3423, 287, 1, 0, 0, 0, 3424, 3426, 7, 60, 0, 0, 3425, 3424, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3430, 1, 0, 0, 0, 3427, 3431, 5, 382, 0, 0, 3428, 3431, 5, 384, 0, 0, 3429, 3431, 3, 358, 179, 0, 3430, 3427, 1, 0, 0, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3429, 1, 0, 0, 0, 3431, 289, 1, 0, 0, 0, 3432, 3433, 7, 61, 0, 0, 3433, 291, 1, 0, 0, 0, 3434, 3435, 7, 62, 0, 0, 3435, 293, 1, 0, 0, 0, 3436, 3440, 5, 116, 0, 0, 3437, 3438, 5, 9, 0, 0, 3438, 3440, 3, 344, 172, 0, 3439, 3436, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 295, 1, 0, 0, 0, 3441, 3472, 5, 27, 0, 0, 3442, 3472, 5, 308, 0, 0, 3443, 3472, 5, 32, 0, 0, 3444, 3472, 5, 276, 0, 0, 3445, 3472, 5, 272, 0, 0, 3446, 3472, 5, 150, 0, 0, 3447, 3472, 5, 151, 0, 0, 3448, 3472, 5, 25, 0, 0, 3449, 3472, 5, 174, 0, 0, 3450, 3472, 5, 117, 0, 0, 3451, 3472, 5, 234, 0, 0, 3452, 3472, 5, 95, 0, 0, 3453, 3472, 5, 71, 0, 0, 3454, 3472, 5, 303, 0, 0, 3455, 3472, 5, 305, 0, 0, 3456, 3472, 5, 304, 0, 0, 3457, 3472, 5, 285, 0, 0, 3458, 3472, 5, 41, 0, 0, 3459, 3472, 5, 40, 0, 0, 3460, 3472, 5, 334, 0, 0, 3461, 3472, 5, 26, 0, 0, 3462, 3472, 5, 80, 0, 0, 3463, 3472, 5, 79, 0, 0, 3464, 3472, 5, 200, 0, 0, 3465, 3472, 5, 340, 0, 0, 3466, 3472, 5, 149, 0, 0, 3467, 3472, 5, 19, 0, 0, 3468, 3472, 5, 286, 0, 0, 3469, 3472, 5, 177, 0, 0, 3470, 3472, 3, 348, 174, 0, 3471, 3441, 1, 0, 0, 0, 3471, 3442, 1, 0, 0, 0, 3471, 3443, 1, 0, 0, 0, 3471, 3444, 1, 0, 0, 0, 3471, 3445, 1, 0, 0, 0, 3471, 3446, 1, 0, 0, 0, 3471, 3447, 1, 0, 0, 0, 3471, 3448, 1, 0, 0, 0, 3471, 3449, 1, 0, 0, 0, 3471, 3450, 1, 0, 0, 0, 3471, 3451, 1, 0, 0, 0, 3471, 3452, 1, 0, 0, 0, 3471, 3453, 1, 0, 0, 0, 3471, 3454, 1, 0, 0, 0, 3471, 3455, 1, 0, 0, 0, 3471, 3456, 1, 0, 0, 0, 3471, 3457, 1, 0, 0, 0, 3471, 3458, 1, 0, 0, 0, 3471, 3459, 1, 0, 0, 0, 3471, 3460, 1, 0, 0, 0, 3471, 3461, 1, 0, 0, 0, 3471, 3462, 1, 0, 0, 0, 3471, 3463, 1, 0, 0, 0, 3471, 3464, 1, 0, 0, 0, 3471, 3465, 1, 0, 0, 0, 3471, 3466, 1, 0, 0, 0, 3471, 3467, 1, 0, 0, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3470, 1, 0, 0, 0, 3472, 297, 1, 0, 0, 0, 3473, 3474, 5, 19, 0, 0, 3474, 3475, 5, 356, 0, 0, 3475, 3476, 3, 298, 149, 0, 3476, 3477, 5, 358, 0, 0, 3477, 3527, 1, 0, 0, 0, 3478, 3479, 5, 177, 0, 0, 3479, 3480, 5, 356, 0, 0, 3480, 3481, 3, 298, 149, 0, 3481, 3482, 5, 4, 0, 0, 3482, 3483, 3, 298, 149, 0, 3483, 3484, 5, 358, 0, 0, 3484, 3527, 1, 0, 0, 0, 3485, 3499, 5, 286, 0, 0, 3486, 3495, 5, 356, 0, 0, 3487, 3492, 3, 322, 161, 0, 3488, 3489, 5, 4, 0, 0, 3489, 3491, 3, 322, 161, 0, 3490, 3488, 1, 0, 0, 0, 3491, 3494, 1, 0, 0, 0, 3492, 3490, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3496, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3495, 3487, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3497, 1, 0, 0, 0, 3497, 3500, 5, 358, 0, 0, 3498, 3500, 5, 354, 0, 0, 3499, 3486, 1, 0, 0, 0, 3499, 3498, 1, 0, 0, 0, 3500, 3527, 1, 0, 0, 0, 3501, 3502, 5, 149, 0, 0, 3502, 3505, 7, 63, 0, 0, 3503, 3504, 5, 309, 0, 0, 3504, 3506, 5, 186, 0, 0, 3505, 3503, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3527, 1, 0, 0, 0, 3507, 3508, 5, 149, 0, 0, 3508, 3511, 7, 64, 0, 0, 3509, 3510, 5, 309, 0, 0, 3510, 3512, 7, 65, 0, 0, 3511, 3509, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3527, 1, 0, 0, 0, 3513, 3524, 3, 296, 148, 0, 3514, 3515, 5, 2, 0, 0, 3515, 3520, 5, 382, 0, 0, 3516, 3517, 5, 4, 0, 0, 3517, 3519, 5, 382, 0, 0, 3518, 3516, 1, 0, 0, 0, 3519, 3522, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3523, 1, 0, 0, 0, 3522, 3520, 1, 0, 0, 0, 3523, 3525, 5, 3, 0, 0, 3524, 3514, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3527, 1, 0, 0, 0, 3526, 3473, 1, 0, 0, 0, 3526, 3478, 1, 0, 0, 0, 3526, 3485, 1, 0, 0, 0, 3526, 3501, 1, 0, 0, 0, 3526, 3507, 1, 0, 0, 0, 3526, 3513, 1, 0, 0, 0, 3527, 299, 1, 0, 0, 0, 3528, 3533, 3, 302, 151, 0, 3529, 3530, 5, 4, 0, 0, 3530, 3532, 3, 302, 151, 0, 3531, 3529, 1, 0, 0, 0, 3532, 3535, 1, 0, 0, 0, 3533, 3531, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 301, 1, 0, 0, 0, 3535, 3533, 1, 0, 0, 0, 3536, 3537, 3, 84, 42, 0, 3537, 3541, 3, 298, 149, 0, 3538, 3540, 3, 308, 154, 0, 3539, 3538, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 303, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3549, 3, 306, 153, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3548, 3, 306, 153, 0, 3547, 3545, 1, 0, 0, 0, 3548, 3551, 1, 0, 0, 0, 3549, 3547, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 305, 1, 0, 0, 0, 3551, 3549, 1, 0, 0, 0, 3552, 3553, 3, 78, 39, 0, 3553, 3557, 3, 298, 149, 0, 3554, 3556, 3, 308, 154, 0, 3555, 3554, 1, 0, 0, 0, 3556, 3559, 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 307, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3561, 5, 197, 0, 0, 3561, 3568, 5, 198, 0, 0, 3562, 3563, 5, 82, 0, 0, 3563, 3568, 3, 248, 124, 0, 3564, 3565, 5, 51, 0, 0, 3565, 3568, 3, 358, 179, 0, 3566, 3568, 3, 294, 147, 0, 3567, 3560, 1, 0, 0, 0, 3567, 3562, 1, 0, 0, 0, 3567, 3564, 1, 0, 0, 0, 3567, 3566, 1, 0, 0, 0, 3568, 309, 1, 0, 0, 0, 3569, 3570, 7, 66, 0, 0, 3570, 3571, 3, 248, 124, 0, 3571, 311, 1, 0, 0, 0, 3572, 3577, 3, 314, 157, 0, 3573, 3574, 5, 4, 0, 0, 3574, 3576, 3, 314, 157, 0, 3575, 3573, 1, 0, 0, 0, 3576, 3579, 1, 0, 0, 0, 3577, 3575, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 313, 1, 0, 0, 0, 3579, 3577, 1, 0, 0, 0, 3580, 3581, 3, 344, 172, 0, 3581, 3584, 3, 298, 149, 0, 3582, 3583, 5, 197, 0, 0, 3583, 3585, 5, 198, 0, 0, 3584, 3582, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3587, 5, 51, 0, 0, 3587, 3589, 3, 358, 179, 0, 3588, 3586, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 315, 1, 0, 0, 0, 3590, 3595, 3, 318, 159, 0, 3591, 3592, 5, 4, 0, 0, 3592, 3594, 3, 318, 159, 0, 3593, 3591, 1, 0, 0, 0, 3594, 3597, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 317, 1, 0, 0, 0, 3597, 3595, 1, 0, 0, 0, 3598, 3599, 3, 84, 42, 0, 3599, 3603, 3, 298, 149, 0, 3600, 3602, 3, 320, 160, 0, 3601, 3600, 1, 0, 0, 0, 3602, 3605, 1, 0, 0, 0, 3603, 3601, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 319, 1, 0, 0, 0, 3605, 3603, 1, 0, 0, 0, 3606, 3607, 5, 197, 0, 0, 3607, 3620, 5, 198, 0, 0, 3608, 3609, 5, 82, 0, 0, 3609, 3620, 3, 248, 124, 0, 3610, 3611, 5, 127, 0, 0, 3611, 3612, 5, 12, 0, 0, 3612, 3613, 5, 20, 0, 0, 3613, 3614, 5, 2, 0, 0, 3614, 3615, 3, 248, 124, 0, 3615, 3616, 5, 3, 0, 0, 3616, 3620, 1, 0, 0, 0, 3617, 3618, 5, 51, 0, 0, 3618, 3620, 3, 358, 179, 0, 3619, 3606, 1, 0, 0, 0, 3619, 3608, 1, 0, 0, 0, 3619, 3610, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3620, 321, 1, 0, 0, 0, 3621, 3623, 3, 348, 174, 0, 3622, 3624, 5, 371, 0, 0, 3623, 3622, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3628, 3, 298, 149, 0, 3626, 3627, 5, 197, 0, 0, 3627, 3629, 5, 198, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 3632, 1, 0, 0, 0, 3630, 3631, 5, 51, 0, 0, 3631, 3633, 3, 358, 179, 0, 3632, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 323, 1, 0, 0, 0, 3634, 3635, 5, 343, 0, 0, 3635, 3636, 3, 248, 124, 0, 3636, 3637, 5, 300, 0, 0, 3637, 3638, 3, 248, 124, 0, 3638, 325, 1, 0, 0, 0, 3639, 3640, 5, 345, 0, 0, 3640, 3641, 3, 344, 172, 0, 3641, 3642, 5, 20, 0, 0, 3642, 3650, 3, 330, 165, 0, 3643, 3644, 5, 4, 0, 0, 3644, 3645, 3, 344, 172, 0, 3645, 3646, 5, 20, 0, 0, 3646, 3647, 3, 330, 165, 0, 3647, 3649, 1, 0, 0, 0, 3648, 3643, 1, 0, 0, 0, 3649, 3652, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 327, 1, 0, 0, 0, 3652, 3650, 1, 0, 0, 0, 3653, 3654, 5, 351, 0, 0, 3654, 3655, 5, 31, 0, 0, 3655, 3656, 3, 82, 41, 0, 3656, 329, 1, 0, 0, 0, 3657, 3697, 3, 344, 172, 0, 3658, 3659, 5, 2, 0, 0, 3659, 3660, 3, 344, 172, 0, 3660, 3661, 5, 3, 0, 0, 3661, 3697, 1, 0, 0, 0, 3662, 3690, 5, 2, 0, 0, 3663, 3664, 5, 44, 0, 0, 3664, 3665, 5, 31, 0, 0, 3665, 3670, 3, 248, 124, 0, 3666, 3667, 5, 4, 0, 0, 3667, 3669, 3, 248, 124, 0, 3668, 3666, 1, 0, 0, 0, 3669, 3672, 1, 0, 0, 0, 3670, 3668, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3691, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3674, 7, 35, 0, 0, 3674, 3675, 5, 31, 0, 0, 3675, 3680, 3, 248, 124, 0, 3676, 3677, 5, 4, 0, 0, 3677, 3679, 3, 248, 124, 0, 3678, 3676, 1, 0, 0, 0, 3679, 3682, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3684, 1, 0, 0, 0, 3682, 3680, 1, 0, 0, 0, 3683, 3673, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3688, 1, 0, 0, 0, 3685, 3686, 7, 36, 0, 0, 3686, 3687, 5, 31, 0, 0, 3687, 3689, 3, 92, 46, 0, 3688, 3685, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3691, 1, 0, 0, 0, 3690, 3663, 1, 0, 0, 0, 3690, 3683, 1, 0, 0, 0, 3691, 3693, 1, 0, 0, 0, 3692, 3694, 3, 332, 166, 0, 3693, 3692, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 1, 0, 0, 0, 3695, 3697, 5, 3, 0, 0, 3696, 3657, 1, 0, 0, 0, 3696, 3658, 1, 0, 0, 0, 3696, 3662, 1, 0, 0, 0, 3697, 331, 1, 0, 0, 0, 3698, 3699, 7, 67, 0, 0, 3699, 3707, 3, 334, 167, 0, 3700, 3701, 7, 67, 0, 0, 3701, 3702, 5, 24, 0, 0, 3702, 3703, 3, 334, 167, 0, 3703, 3704, 5, 14, 0, 0, 3704, 3705, 3, 334, 167, 0, 3705, 3707, 1, 0, 0, 0, 3706, 3698, 1, 0, 0, 0, 3706, 3700, 1, 0, 0, 0, 3707, 333, 1, 0, 0, 0, 3708, 3709, 5, 321, 0, 0, 3709, 3716, 7, 68, 0, 0, 3710, 3711, 5, 62, 0, 0, 3711, 3716, 5, 257, 0, 0, 3712, 3713, 3, 248, 124, 0, 3713, 3714, 7, 68, 0, 0, 3714, 3716, 1, 0, 0, 0, 3715, 3708, 1, 0, 0, 0, 3715, 3710, 1, 0, 0, 0, 3715, 3712, 1, 0, 0, 0, 3716, 335, 1, 0, 0, 0, 3717, 3722, 3, 342, 171, 0, 3718, 3719, 5, 4, 0, 0, 3719, 3721, 3, 342, 171, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 337, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3725, 3726, 5, 136, 0, 0, 3726, 3727, 5, 2, 0, 0, 3727, 3728, 3, 248, 124, 0, 3728, 3729, 5, 3, 0, 0, 3729, 3735, 1, 0, 0, 0, 3730, 3735, 3, 342, 171, 0, 3731, 3735, 5, 114, 0, 0, 3732, 3735, 5, 161, 0, 0, 3733, 3735, 5, 250, 0, 0, 3734, 3725, 1, 0, 0, 0, 3734, 3730, 1, 0, 0, 0, 3734, 3731, 1, 0, 0, 0, 3734, 3732, 1, 0, 0, 0, 3734, 3733, 1, 0, 0, 0, 3735, 339, 1, 0, 0, 0, 3736, 3737, 3, 342, 171, 0, 3737, 341, 1, 0, 0, 0, 3738, 3743, 3, 348, 174, 0, 3739, 3740, 5, 5, 0, 0, 3740, 3742, 3, 348, 174, 0, 3741, 3739, 1, 0, 0, 0, 3742, 3745, 1, 0, 0, 0, 3743, 3741, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 343, 1, 0, 0, 0, 3745, 3743, 1, 0, 0, 0, 3746, 3747, 3, 348, 174, 0, 3747, 3748, 3, 346, 173, 0, 3748, 345, 1, 0, 0, 0, 3749, 3750, 5, 362, 0, 0, 3750, 3752, 3, 348, 174, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3757, 1, 0, 0, 0, 3755, 3757, 1, 0, 0, 0, 3756, 3751, 1, 0, 0, 0, 3756, 3755, 1, 0, 0, 0, 3757, 347, 1, 0, 0, 0, 3758, 3761, 3, 350, 175, 0, 3759, 3761, 3, 362, 181, 0, 3760, 3758, 1, 0, 0, 0, 3760, 3759, 1, 0, 0, 0, 3761, 349, 1, 0, 0, 0, 3762, 3767, 5, 388, 0, 0, 3763, 3767, 3, 352, 176, 0, 3764, 3767, 3, 360, 180, 0, 3765, 3767, 3, 364, 182, 0, 3766, 3762, 1, 0, 0, 0, 3766, 3763, 1, 0, 0, 0, 3766, 3764, 1, 0, 0, 0, 3766, 3765, 1, 0, 0, 0, 3767, 351, 1, 0, 0, 0, 3768, 3769, 7, 69, 0, 0, 3769, 353, 1, 0, 0, 0, 3770, 3772, 5, 362, 0, 0, 3771, 3770, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3774, 7, 70, 0, 0, 3774, 355, 1, 0, 0, 0, 3775, 3776, 5, 319, 0, 0, 3776, 3789, 3, 298, 149, 0, 3777, 3778, 5, 51, 0, 0, 3778, 3789, 3, 358, 179, 0, 3779, 3789, 3, 294, 147, 0, 3780, 3781, 7, 71, 0, 0, 3781, 3782, 5, 197, 0, 0, 3782, 3789, 5, 198, 0, 0, 3783, 3784, 5, 269, 0, 0, 3784, 3785, 5, 82, 0, 0, 3785, 3789, 3, 248, 124, 0, 3786, 3787, 5, 96, 0, 0, 3787, 3789, 5, 82, 0, 0, 3788, 3775, 1, 0, 0, 0, 3788, 3777, 1, 0, 0, 0, 3788, 3779, 1, 0, 0, 0, 3788, 3780, 1, 0, 0, 0, 3788, 3783, 1, 0, 0, 0, 3788, 3786, 1, 0, 0, 0, 3789, 357, 1, 0, 0, 0, 3790, 3791, 7, 72, 0, 0, 3791, 359, 1, 0, 0, 0, 3792, 3793, 7, 73, 0, 0, 3793, 361, 1, 0, 0, 0, 3794, 3795, 7, 74, 0, 0, 3795, 363, 1, 0, 0, 0, 3796, 3797, 7, 75, 0, 0, 3797, 365, 1, 0, 0, 0, 505, 369, 376, 380, 385, 392, 397, 407, 409, 429, 433, 439, 442, 445, 449, 452, 456, 463, 466, 470, 473, 478, 491, 493, 498, 507, 510, 514, 517, 523, 534, 540, 545, 578, 588, 599, 610, 621, 626, 635, 639, 645, 649, 654, 660, 672, 680, 686, 697, 701, 706, 721, 725, 732, 736, 742, 772, 776, 781, 788, 794, 797, 800, 804, 808, 817, 819, 828, 831, 840, 845, 851, 858, 861, 865, 880, 883, 889, 893, 910, 912, 920, 924, 930, 933, 937, 940, 946, 951, 955, 962, 965, 968, 975, 980, 989, 997, 1003, 1006, 1009, 1015, 1019, 1024, 1027, 1031, 1033, 1041, 1049, 1052, 1059, 1062, 1065, 1074, 1079, 1085, 1090, 1093, 1097, 1100, 1104, 1114, 1119, 1132, 1135, 1143, 1149, 1152, 1155, 1160, 1168, 1173, 1179, 1185, 1188, 1195, 1202, 1210, 1222, 1230, 1257, 1260, 1266, 1275, 1284, 1290, 1295, 1300, 1307, 1312, 1317, 1324, 1332, 1335, 1341, 1348, 1352, 1415, 1423, 1430, 1438, 1450, 1455, 1464, 1472, 1477, 1479, 1487, 1492, 1496, 1499, 1507, 1512, 1521, 1526, 1529, 1534, 1538, 1543, 1545, 1550, 1559, 1567, 1573, 1582, 1589, 1598, 1603, 1606, 1631, 1633, 1645, 1652, 1655, 1662, 1666, 1672, 1680, 1687, 1690, 1698, 1709, 1720, 1728, 1734, 1745, 1752, 1759, 1771, 1779, 1785, 1791, 1794, 1810, 1819, 1830, 1835, 1840, 1845, 1850, 1853, 1856, 1860, 1865, 1872, 1880, 1889, 1895, 1901, 1904, 1906, 1914, 1924, 1933, 1937, 1940, 1944, 1948, 1956, 1960, 1963, 1966, 1969, 1973, 1977, 1982, 1986, 1989, 1992, 1995, 1999, 2004, 2008, 2011, 2014, 2017, 2019, 2025, 2032, 2037, 2040, 2043, 2047, 2057, 2061, 2063, 2066, 2070, 2076, 2080, 2091, 2099, 2101, 2108, 2112, 2124, 2131, 2146, 2151, 2158, 2174, 2179, 2192, 2197, 2205, 2211, 2215, 2218, 2221, 2228, 2231, 2237, 2246, 2256, 2271, 2276, 2278, 2283, 2292, 2302, 2307, 2311, 2316, 2323, 2328, 2332, 2335, 2338, 2352, 2365, 2370, 2374, 2377, 2382, 2387, 2391, 2394, 2406, 2417, 2430, 2441, 2446, 2449, 2453, 2456, 2468, 2477, 2480, 2485, 2492, 2495, 2501, 2507, 2509, 2512, 2517, 2521, 2527, 2531, 2534, 2539, 2542, 2547, 2549, 2555, 2560, 2567, 2570, 2588, 2590, 2593, 2604, 2613, 2620, 2628, 2636, 2641, 2644, 2647, 2653, 2661, 2669, 2681, 2687, 2694, 2701, 2703, 2716, 2722, 2724, 2733, 2735, 2743, 2747, 2759, 2762, 2767, 2771, 2773, 2782, 2794, 2796, 2803, 2810, 2816, 2822, 2824, 2831, 2839, 2847, 2853, 2858, 2865, 2878, 2886, 2889, 2893, 2895, 2902, 2913, 2920, 2930, 2935, 2939, 2949, 2956, 2969, 2971, 2979, 2981, 2985, 2993, 3002, 3008, 3016, 3021, 3033, 3038, 3041, 3047, 3051, 3056, 3061, 3066, 3072, 3093, 3095, 3106, 3118, 3130, 3134, 3143, 3147, 3165, 3168, 3176, 3185, 3194, 3217, 3233, 3240, 3243, 3252, 3256, 3260, 3272, 3297, 3304, 3307, 3322, 3343, 3347, 3349, 3359, 3361, 3371, 3386, 3388, 3401, 3405, 3412, 3417, 3425, 3430, 3439, 3471, 3492, 3495, 3499, 3505, 3511, 3520, 3524, 3526, 3533, 3541, 3549, 3557, 3567, 3577, 3584, 3588, 3595, 3603, 3619, 3623, 3628, 3632, 3650, 3670, 3680, 3683, 3688, 3690, 3693, 3696, 3706, 3715, 3722, 3734, 3743, 3753, 3756, 3760, 3766, 3771, 3788] \ No newline at end of file +[4, 1, 393, 3828, 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, 1, 0, 5, 0, 374, 8, 0, 10, 0, 12, 0, 377, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 383, 8, 1, 1, 2, 1, 2, 3, 2, 387, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 392, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 399, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 404, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 414, 8, 2, 10, 2, 12, 2, 417, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 436, 8, 2, 1, 2, 1, 2, 3, 2, 440, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 446, 8, 2, 1, 2, 3, 2, 449, 8, 2, 1, 2, 3, 2, 452, 8, 2, 1, 2, 1, 2, 3, 2, 456, 8, 2, 1, 2, 3, 2, 459, 8, 2, 1, 2, 1, 2, 3, 2, 463, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 470, 8, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 3, 2, 480, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 485, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 498, 8, 2, 10, 2, 12, 2, 501, 9, 2, 1, 2, 1, 2, 3, 2, 505, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 514, 8, 2, 1, 2, 3, 2, 517, 8, 2, 1, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 530, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 541, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 547, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 552, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 585, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 595, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 606, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 617, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 628, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 633, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 642, 8, 2, 1, 2, 1, 2, 3, 2, 646, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 652, 8, 2, 1, 2, 1, 2, 3, 2, 656, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 667, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 679, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 687, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 693, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 704, 8, 2, 1, 2, 1, 2, 3, 2, 708, 8, 2, 1, 2, 4, 2, 711, 8, 2, 11, 2, 12, 2, 712, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 728, 8, 2, 1, 2, 1, 2, 3, 2, 732, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 737, 8, 2, 10, 2, 12, 2, 740, 9, 2, 1, 2, 3, 2, 743, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 749, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 779, 8, 2, 1, 2, 1, 2, 3, 2, 783, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 788, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 795, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 3, 2, 804, 8, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 1, 2, 3, 2, 811, 8, 2, 1, 2, 1, 2, 3, 2, 815, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 824, 8, 2, 10, 2, 12, 2, 827, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 835, 8, 2, 1, 2, 3, 2, 838, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 847, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 858, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 865, 8, 2, 1, 2, 3, 2, 868, 8, 2, 1, 2, 1, 2, 3, 2, 872, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 885, 8, 2, 10, 2, 12, 2, 888, 9, 2, 3, 2, 890, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 896, 8, 2, 1, 2, 1, 2, 3, 2, 900, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 917, 8, 2, 10, 2, 12, 2, 920, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 927, 8, 2, 1, 2, 1, 2, 3, 2, 931, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 937, 8, 2, 1, 2, 3, 2, 940, 8, 2, 1, 2, 1, 2, 3, 2, 944, 8, 2, 1, 2, 3, 2, 947, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 953, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 958, 8, 2, 1, 2, 1, 2, 3, 2, 962, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 3, 2, 972, 8, 2, 1, 2, 3, 2, 975, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 982, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 987, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 996, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1004, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1010, 8, 2, 1, 2, 3, 2, 1013, 8, 2, 1, 2, 3, 2, 1016, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1022, 8, 2, 1, 2, 1, 2, 3, 2, 1026, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1031, 8, 2, 1, 2, 3, 2, 1034, 8, 2, 1, 2, 1, 2, 3, 2, 1038, 8, 2, 3, 2, 1040, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1048, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1056, 8, 2, 1, 2, 3, 2, 1059, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 3, 2, 1069, 8, 2, 1, 2, 3, 2, 1072, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1081, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1086, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1092, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 3, 2, 1100, 8, 2, 1, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 3, 2, 1107, 8, 2, 1, 2, 1, 2, 3, 2, 1111, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1121, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1126, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1137, 8, 2, 10, 2, 12, 2, 1140, 9, 2, 3, 2, 1142, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1150, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 3, 2, 1159, 8, 2, 1, 2, 3, 2, 1162, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1167, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1175, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1180, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1186, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1192, 8, 2, 1, 2, 3, 2, 1195, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1202, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1207, 8, 2, 10, 2, 12, 2, 1210, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1215, 8, 2, 10, 2, 12, 2, 1218, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1229, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1235, 8, 2, 10, 2, 12, 2, 1238, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1262, 8, 2, 10, 2, 12, 2, 1265, 9, 2, 3, 2, 1267, 8, 2, 1, 2, 1, 2, 5, 2, 1271, 8, 2, 10, 2, 12, 2, 1274, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1280, 8, 2, 10, 2, 12, 2, 1283, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1289, 8, 2, 10, 2, 12, 2, 1292, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1297, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1302, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1307, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1314, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1319, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1324, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1331, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1337, 8, 2, 10, 2, 12, 2, 1340, 9, 2, 3, 2, 1342, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1348, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1355, 8, 3, 1, 3, 1, 3, 3, 3, 1359, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1422, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1430, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1437, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1445, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1457, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1462, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 3, 8, 1471, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 1479, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1484, 8, 9, 3, 9, 1486, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1494, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1499, 8, 9, 1, 9, 1, 9, 3, 9, 1503, 8, 9, 1, 9, 3, 9, 1506, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1514, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1519, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1528, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1533, 8, 9, 1, 9, 3, 9, 1536, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1541, 8, 9, 1, 9, 1, 9, 3, 9, 1545, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1550, 8, 9, 3, 9, 1552, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1557, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 1564, 8, 11, 10, 11, 12, 11, 1567, 9, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1574, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1580, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1589, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1594, 8, 15, 10, 15, 12, 15, 1597, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1603, 8, 16, 10, 16, 12, 16, 1606, 9, 16, 1, 17, 1, 17, 3, 17, 1610, 8, 17, 1, 17, 3, 17, 1613, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 1638, 8, 19, 10, 19, 12, 19, 1641, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 1650, 8, 21, 10, 21, 12, 21, 1653, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1659, 8, 22, 1, 22, 3, 22, 1662, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1667, 8, 23, 10, 23, 12, 23, 1670, 9, 23, 1, 23, 3, 23, 1673, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1679, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1685, 8, 25, 10, 25, 12, 25, 1688, 9, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1694, 8, 26, 1, 26, 3, 26, 1697, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1703, 8, 27, 10, 27, 12, 27, 1706, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1714, 8, 28, 10, 28, 12, 28, 1717, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1727, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1735, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1741, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 4, 32, 1750, 8, 32, 11, 32, 12, 32, 1751, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1759, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1766, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1778, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1784, 8, 32, 10, 32, 12, 32, 1787, 9, 32, 1, 32, 5, 32, 1790, 8, 32, 10, 32, 12, 32, 1793, 9, 32, 1, 32, 5, 32, 1796, 8, 32, 10, 32, 12, 32, 1799, 9, 32, 3, 32, 1801, 8, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1820, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1827, 8, 42, 1, 43, 1, 43, 1, 43, 5, 43, 1832, 8, 43, 10, 43, 12, 43, 1835, 9, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1845, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1850, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1855, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1860, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1865, 8, 46, 1, 46, 3, 46, 1868, 8, 46, 1, 46, 3, 46, 1871, 8, 46, 1, 46, 1, 46, 3, 46, 1875, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1880, 8, 47, 1, 48, 1, 48, 1, 48, 5, 48, 1885, 8, 48, 10, 48, 12, 48, 1888, 9, 48, 1, 49, 1, 49, 1, 49, 5, 49, 1893, 8, 49, 10, 49, 12, 49, 1896, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1904, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1910, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1916, 8, 50, 1, 50, 5, 50, 1919, 8, 50, 10, 50, 12, 50, 1922, 9, 50, 1, 51, 1, 51, 1, 51, 4, 51, 1927, 8, 51, 11, 51, 12, 51, 1928, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1937, 8, 51, 10, 51, 12, 51, 1940, 9, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1948, 8, 51, 1, 52, 1, 52, 3, 52, 1952, 8, 52, 1, 52, 3, 52, 1955, 8, 52, 1, 52, 1, 52, 3, 52, 1959, 8, 52, 1, 53, 1, 53, 3, 53, 1963, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1969, 8, 53, 10, 53, 12, 53, 1972, 9, 53, 1, 53, 3, 53, 1975, 8, 53, 1, 53, 3, 53, 1978, 8, 53, 1, 53, 3, 53, 1981, 8, 53, 1, 53, 3, 53, 1984, 8, 53, 1, 53, 1, 53, 3, 53, 1988, 8, 53, 1, 54, 1, 54, 3, 54, 1992, 8, 54, 1, 54, 5, 54, 1995, 8, 54, 10, 54, 12, 54, 1998, 9, 54, 1, 54, 3, 54, 2001, 8, 54, 1, 54, 3, 54, 2004, 8, 54, 1, 54, 3, 54, 2007, 8, 54, 1, 54, 3, 54, 2010, 8, 54, 1, 54, 1, 54, 3, 54, 2014, 8, 54, 1, 54, 5, 54, 2017, 8, 54, 10, 54, 12, 54, 2020, 9, 54, 1, 54, 3, 54, 2023, 8, 54, 1, 54, 3, 54, 2026, 8, 54, 1, 54, 3, 54, 2029, 8, 54, 1, 54, 3, 54, 2032, 8, 54, 3, 54, 2034, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2040, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2047, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2052, 8, 55, 1, 55, 3, 55, 2055, 8, 55, 1, 55, 3, 55, 2058, 8, 55, 1, 55, 1, 55, 3, 55, 2062, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2072, 8, 55, 1, 55, 1, 55, 3, 55, 2076, 8, 55, 3, 55, 2078, 8, 55, 1, 55, 3, 55, 2081, 8, 55, 1, 55, 1, 55, 3, 55, 2085, 8, 55, 1, 56, 1, 56, 5, 56, 2089, 8, 56, 10, 56, 12, 56, 2092, 9, 56, 1, 56, 3, 56, 2095, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2106, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2114, 8, 58, 3, 58, 2116, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2123, 8, 59, 1, 59, 1, 59, 3, 59, 2127, 8, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2139, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2146, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2159, 8, 61, 10, 61, 12, 61, 2162, 9, 61, 1, 61, 1, 61, 3, 61, 2166, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 2171, 8, 62, 10, 62, 12, 62, 2174, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2189, 8, 66, 1, 66, 5, 66, 2192, 8, 66, 10, 66, 12, 66, 2195, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2205, 8, 67, 10, 67, 12, 67, 2208, 9, 67, 1, 67, 1, 67, 3, 67, 2212, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2218, 8, 68, 10, 68, 12, 68, 2221, 9, 68, 1, 68, 5, 68, 2224, 8, 68, 10, 68, 12, 68, 2227, 9, 68, 1, 68, 3, 68, 2230, 8, 68, 1, 68, 3, 68, 2233, 8, 68, 1, 69, 3, 69, 2236, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2243, 8, 69, 1, 69, 3, 69, 2246, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2252, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2259, 8, 70, 10, 70, 12, 70, 2262, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2269, 8, 70, 10, 70, 12, 70, 2272, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2284, 8, 70, 10, 70, 12, 70, 2287, 9, 70, 1, 70, 1, 70, 3, 70, 2291, 8, 70, 3, 70, 2293, 8, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2298, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2305, 8, 72, 10, 72, 12, 72, 2308, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2317, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2322, 8, 72, 5, 72, 2324, 8, 72, 10, 72, 12, 72, 2327, 9, 72, 1, 72, 1, 72, 3, 72, 2331, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2338, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2343, 8, 73, 5, 73, 2345, 8, 73, 10, 73, 12, 73, 2348, 9, 73, 3, 73, 2350, 8, 73, 1, 73, 3, 73, 2353, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2365, 8, 74, 10, 74, 12, 74, 2368, 9, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2378, 8, 75, 10, 75, 12, 75, 2381, 9, 75, 1, 75, 1, 75, 3, 75, 2385, 8, 75, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 1, 76, 3, 76, 2392, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2397, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2402, 8, 77, 1, 77, 1, 77, 3, 77, 2406, 8, 77, 1, 77, 3, 77, 2409, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2419, 8, 78, 10, 78, 12, 78, 2422, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2430, 8, 79, 10, 79, 12, 79, 2433, 9, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2443, 8, 79, 10, 79, 12, 79, 2446, 9, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2454, 8, 80, 10, 80, 12, 80, 2457, 9, 80, 1, 80, 1, 80, 3, 80, 2461, 8, 80, 1, 80, 3, 80, 2464, 8, 80, 1, 81, 1, 81, 3, 81, 2468, 8, 81, 1, 81, 3, 81, 2471, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 3, 84, 2483, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2490, 8, 84, 10, 84, 12, 84, 2493, 9, 84, 3, 84, 2495, 8, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2500, 8, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2505, 8, 84, 10, 84, 12, 84, 2508, 9, 84, 3, 84, 2510, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2516, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2522, 8, 86, 10, 86, 12, 86, 2525, 9, 86, 3, 86, 2527, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 2532, 8, 87, 1, 87, 1, 87, 3, 87, 2536, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2542, 8, 87, 1, 87, 1, 87, 3, 87, 2546, 8, 87, 1, 88, 3, 88, 2549, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2554, 8, 88, 1, 88, 3, 88, 2557, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2562, 8, 88, 3, 88, 2564, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2571, 8, 89, 3, 89, 2573, 8, 89, 1, 89, 1, 89, 3, 89, 2577, 8, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2582, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2589, 8, 90, 1, 91, 3, 91, 2592, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2610, 8, 91, 3, 91, 2612, 8, 91, 1, 91, 3, 91, 2615, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 2624, 8, 93, 10, 93, 12, 93, 2627, 9, 93, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 2633, 8, 94, 10, 94, 12, 94, 2636, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 3, 95, 2642, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2648, 8, 96, 10, 96, 12, 96, 2651, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2658, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 2663, 8, 98, 1, 98, 3, 98, 2666, 8, 98, 1, 98, 3, 98, 2669, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2675, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2683, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2691, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 2701, 8, 100, 10, 100, 12, 100, 2704, 9, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2709, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2716, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2723, 8, 101, 3, 101, 2725, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2736, 8, 102, 10, 102, 12, 102, 2739, 9, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2744, 8, 102, 3, 102, 2746, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2755, 8, 102, 3, 102, 2757, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 3, 104, 2765, 8, 104, 1, 105, 1, 105, 3, 105, 2769, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2779, 8, 107, 10, 107, 12, 107, 2782, 9, 107, 3, 107, 2784, 8, 107, 1, 107, 1, 107, 1, 108, 3, 108, 2789, 8, 108, 1, 108, 1, 108, 3, 108, 2793, 8, 108, 3, 108, 2795, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2804, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2816, 8, 109, 3, 109, 2818, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2825, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2832, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2838, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2844, 8, 109, 3, 109, 2846, 8, 109, 1, 110, 1, 110, 1, 110, 5, 110, 2851, 8, 110, 10, 110, 12, 110, 2854, 9, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2859, 8, 111, 10, 111, 12, 111, 2862, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2870, 8, 112, 1, 113, 1, 113, 1, 113, 5, 113, 2875, 8, 113, 10, 113, 12, 113, 2878, 9, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2883, 8, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2888, 8, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 3, 116, 2895, 8, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 5, 119, 2906, 8, 119, 10, 119, 12, 119, 2909, 9, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 3, 120, 2916, 8, 120, 1, 120, 3, 120, 2919, 8, 120, 1, 120, 1, 120, 3, 120, 2923, 8, 120, 3, 120, 2925, 8, 120, 1, 121, 1, 121, 1, 121, 5, 121, 2930, 8, 121, 10, 121, 12, 121, 2933, 9, 121, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 2941, 8, 123, 10, 123, 12, 123, 2944, 9, 123, 1, 123, 1, 123, 1, 124, 1, 124, 3, 124, 2950, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 2958, 8, 125, 10, 125, 12, 125, 2961, 9, 125, 1, 125, 1, 125, 3, 125, 2965, 8, 125, 1, 126, 1, 126, 3, 126, 2969, 8, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 3, 129, 2979, 8, 129, 1, 130, 1, 130, 1, 130, 5, 130, 2984, 8, 130, 10, 130, 12, 130, 2987, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2999, 8, 131, 3, 131, 3001, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3009, 8, 131, 10, 131, 12, 131, 3012, 9, 131, 1, 132, 3, 132, 3015, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3023, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3030, 8, 132, 10, 132, 12, 132, 3033, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3038, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3046, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3051, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3061, 8, 132, 10, 132, 12, 132, 3064, 9, 132, 1, 132, 1, 132, 3, 132, 3068, 8, 132, 1, 132, 3, 132, 3071, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3077, 8, 132, 1, 132, 1, 132, 3, 132, 3081, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3086, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3091, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3096, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3102, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3123, 8, 133, 10, 133, 12, 133, 3126, 9, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3136, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3148, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3158, 8, 135, 11, 135, 12, 135, 3159, 1, 135, 1, 135, 3, 135, 3164, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3171, 8, 135, 11, 135, 12, 135, 3172, 1, 135, 1, 135, 3, 135, 3177, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3193, 8, 135, 10, 135, 12, 135, 3196, 9, 135, 3, 135, 3198, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3206, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3215, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3224, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3245, 8, 135, 11, 135, 12, 135, 3246, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3263, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3268, 8, 135, 10, 135, 12, 135, 3271, 9, 135, 3, 135, 3273, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3282, 8, 135, 1, 135, 1, 135, 3, 135, 3286, 8, 135, 1, 135, 1, 135, 3, 135, 3290, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3300, 8, 135, 11, 135, 12, 135, 3301, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3327, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3334, 8, 135, 1, 135, 3, 135, 3337, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3352, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3373, 8, 135, 1, 135, 1, 135, 3, 135, 3377, 8, 135, 3, 135, 3379, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3389, 8, 135, 10, 135, 12, 135, 3392, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3401, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 4, 137, 3414, 8, 137, 11, 137, 12, 137, 3415, 3, 137, 3418, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 3, 142, 3431, 8, 142, 1, 143, 1, 143, 3, 143, 3435, 8, 143, 1, 144, 1, 144, 1, 144, 4, 144, 3440, 8, 144, 11, 144, 12, 144, 3441, 1, 145, 1, 145, 1, 145, 3, 145, 3447, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 3, 147, 3455, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3460, 8, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 3, 150, 3469, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3501, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 3520, 8, 152, 10, 152, 12, 152, 3523, 9, 152, 3, 152, 3525, 8, 152, 1, 152, 1, 152, 3, 152, 3529, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3535, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3541, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 3548, 8, 152, 10, 152, 12, 152, 3551, 9, 152, 1, 152, 3, 152, 3554, 8, 152, 3, 152, 3556, 8, 152, 1, 153, 1, 153, 1, 153, 5, 153, 3561, 8, 153, 10, 153, 12, 153, 3564, 9, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3569, 8, 154, 10, 154, 12, 154, 3572, 9, 154, 1, 155, 1, 155, 1, 155, 5, 155, 3577, 8, 155, 10, 155, 12, 155, 3580, 9, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3585, 8, 156, 10, 156, 12, 156, 3588, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3597, 8, 157, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3605, 8, 159, 10, 159, 12, 159, 3608, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3614, 8, 160, 1, 160, 1, 160, 3, 160, 3618, 8, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3623, 8, 161, 10, 161, 12, 161, 3626, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3631, 8, 162, 10, 162, 12, 162, 3634, 9, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3649, 8, 163, 1, 164, 1, 164, 3, 164, 3653, 8, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3658, 8, 164, 1, 164, 1, 164, 3, 164, 3662, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 3678, 8, 166, 10, 166, 12, 166, 3681, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 3698, 8, 168, 10, 168, 12, 168, 3701, 9, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 3708, 8, 168, 10, 168, 12, 168, 3711, 9, 168, 3, 168, 3713, 8, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3718, 8, 168, 3, 168, 3720, 8, 168, 1, 168, 3, 168, 3723, 8, 168, 1, 168, 3, 168, 3726, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3736, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3745, 8, 170, 1, 171, 1, 171, 1, 171, 5, 171, 3750, 8, 171, 10, 171, 12, 171, 3753, 9, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 3764, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 3771, 8, 174, 10, 174, 12, 174, 3774, 9, 174, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 4, 176, 3781, 8, 176, 11, 176, 12, 176, 3782, 1, 176, 3, 176, 3786, 8, 176, 1, 177, 1, 177, 3, 177, 3790, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3796, 8, 178, 1, 179, 1, 179, 1, 180, 3, 180, 3801, 8, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3818, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 9, 1138, 1208, 1216, 1236, 1263, 1272, 1281, 1290, 1338, 4, 100, 262, 266, 270, 186, 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, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 0, 76, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 3, 0, 73, 73, 191, 191, 262, 262, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 3, 0, 10, 10, 290, 290, 331, 331, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 2, 0, 59, 59, 96, 96, 2, 0, 129, 129, 249, 249, 6, 0, 54, 54, 129, 129, 143, 143, 172, 172, 228, 228, 313, 313, 3, 0, 11, 11, 59, 59, 96, 96, 4, 0, 107, 107, 139, 139, 171, 171, 326, 326, 2, 0, 171, 171, 326, 326, 3, 0, 45, 45, 275, 275, 279, 279, 2, 0, 45, 45, 275, 275, 3, 0, 18, 18, 103, 103, 320, 320, 3, 0, 72, 72, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 15, 15, 264, 264, 2, 0, 124, 124, 250, 250, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 233, 233, 258, 258, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 379, 387, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4416, 0, 375, 1, 0, 0, 0, 2, 380, 1, 0, 0, 0, 4, 1341, 1, 0, 0, 0, 6, 1436, 1, 0, 0, 0, 8, 1438, 1, 0, 0, 0, 10, 1450, 1, 0, 0, 0, 12, 1463, 1, 0, 0, 0, 14, 1466, 1, 0, 0, 0, 16, 1470, 1, 0, 0, 0, 18, 1551, 1, 0, 0, 0, 20, 1553, 1, 0, 0, 0, 22, 1558, 1, 0, 0, 0, 24, 1579, 1, 0, 0, 0, 26, 1581, 1, 0, 0, 0, 28, 1588, 1, 0, 0, 0, 30, 1590, 1, 0, 0, 0, 32, 1598, 1, 0, 0, 0, 34, 1607, 1, 0, 0, 0, 36, 1618, 1, 0, 0, 0, 38, 1639, 1, 0, 0, 0, 40, 1642, 1, 0, 0, 0, 42, 1645, 1, 0, 0, 0, 44, 1656, 1, 0, 0, 0, 46, 1672, 1, 0, 0, 0, 48, 1678, 1, 0, 0, 0, 50, 1680, 1, 0, 0, 0, 52, 1691, 1, 0, 0, 0, 54, 1698, 1, 0, 0, 0, 56, 1709, 1, 0, 0, 0, 58, 1726, 1, 0, 0, 0, 60, 1734, 1, 0, 0, 0, 62, 1736, 1, 0, 0, 0, 64, 1800, 1, 0, 0, 0, 66, 1802, 1, 0, 0, 0, 68, 1804, 1, 0, 0, 0, 70, 1806, 1, 0, 0, 0, 72, 1808, 1, 0, 0, 0, 74, 1810, 1, 0, 0, 0, 76, 1812, 1, 0, 0, 0, 78, 1814, 1, 0, 0, 0, 80, 1819, 1, 0, 0, 0, 82, 1821, 1, 0, 0, 0, 84, 1826, 1, 0, 0, 0, 86, 1828, 1, 0, 0, 0, 88, 1836, 1, 0, 0, 0, 90, 1844, 1, 0, 0, 0, 92, 1849, 1, 0, 0, 0, 94, 1876, 1, 0, 0, 0, 96, 1881, 1, 0, 0, 0, 98, 1889, 1, 0, 0, 0, 100, 1897, 1, 0, 0, 0, 102, 1947, 1, 0, 0, 0, 104, 1951, 1, 0, 0, 0, 106, 1987, 1, 0, 0, 0, 108, 2033, 1, 0, 0, 0, 110, 2054, 1, 0, 0, 0, 112, 2086, 1, 0, 0, 0, 114, 2098, 1, 0, 0, 0, 116, 2101, 1, 0, 0, 0, 118, 2117, 1, 0, 0, 0, 120, 2131, 1, 0, 0, 0, 122, 2165, 1, 0, 0, 0, 124, 2167, 1, 0, 0, 0, 126, 2175, 1, 0, 0, 0, 128, 2179, 1, 0, 0, 0, 130, 2182, 1, 0, 0, 0, 132, 2185, 1, 0, 0, 0, 134, 2211, 1, 0, 0, 0, 136, 2213, 1, 0, 0, 0, 138, 2251, 1, 0, 0, 0, 140, 2292, 1, 0, 0, 0, 142, 2297, 1, 0, 0, 0, 144, 2330, 1, 0, 0, 0, 146, 2352, 1, 0, 0, 0, 148, 2354, 1, 0, 0, 0, 150, 2384, 1, 0, 0, 0, 152, 2386, 1, 0, 0, 0, 154, 2393, 1, 0, 0, 0, 156, 2410, 1, 0, 0, 0, 158, 2425, 1, 0, 0, 0, 160, 2449, 1, 0, 0, 0, 162, 2465, 1, 0, 0, 0, 164, 2472, 1, 0, 0, 0, 166, 2476, 1, 0, 0, 0, 168, 2479, 1, 0, 0, 0, 170, 2511, 1, 0, 0, 0, 172, 2526, 1, 0, 0, 0, 174, 2545, 1, 0, 0, 0, 176, 2563, 1, 0, 0, 0, 178, 2576, 1, 0, 0, 0, 180, 2578, 1, 0, 0, 0, 182, 2614, 1, 0, 0, 0, 184, 2616, 1, 0, 0, 0, 186, 2620, 1, 0, 0, 0, 188, 2628, 1, 0, 0, 0, 190, 2639, 1, 0, 0, 0, 192, 2643, 1, 0, 0, 0, 194, 2654, 1, 0, 0, 0, 196, 2690, 1, 0, 0, 0, 198, 2692, 1, 0, 0, 0, 200, 2696, 1, 0, 0, 0, 202, 2724, 1, 0, 0, 0, 204, 2745, 1, 0, 0, 0, 206, 2758, 1, 0, 0, 0, 208, 2764, 1, 0, 0, 0, 210, 2768, 1, 0, 0, 0, 212, 2770, 1, 0, 0, 0, 214, 2773, 1, 0, 0, 0, 216, 2794, 1, 0, 0, 0, 218, 2845, 1, 0, 0, 0, 220, 2847, 1, 0, 0, 0, 222, 2855, 1, 0, 0, 0, 224, 2869, 1, 0, 0, 0, 226, 2871, 1, 0, 0, 0, 228, 2879, 1, 0, 0, 0, 230, 2887, 1, 0, 0, 0, 232, 2894, 1, 0, 0, 0, 234, 2898, 1, 0, 0, 0, 236, 2900, 1, 0, 0, 0, 238, 2907, 1, 0, 0, 0, 240, 2915, 1, 0, 0, 0, 242, 2926, 1, 0, 0, 0, 244, 2934, 1, 0, 0, 0, 246, 2936, 1, 0, 0, 0, 248, 2949, 1, 0, 0, 0, 250, 2964, 1, 0, 0, 0, 252, 2968, 1, 0, 0, 0, 254, 2970, 1, 0, 0, 0, 256, 2972, 1, 0, 0, 0, 258, 2978, 1, 0, 0, 0, 260, 2980, 1, 0, 0, 0, 262, 3000, 1, 0, 0, 0, 264, 3095, 1, 0, 0, 0, 266, 3101, 1, 0, 0, 0, 268, 3127, 1, 0, 0, 0, 270, 3378, 1, 0, 0, 0, 272, 3400, 1, 0, 0, 0, 274, 3417, 1, 0, 0, 0, 276, 3419, 1, 0, 0, 0, 278, 3421, 1, 0, 0, 0, 280, 3423, 1, 0, 0, 0, 282, 3425, 1, 0, 0, 0, 284, 3427, 1, 0, 0, 0, 286, 3432, 1, 0, 0, 0, 288, 3439, 1, 0, 0, 0, 290, 3443, 1, 0, 0, 0, 292, 3448, 1, 0, 0, 0, 294, 3454, 1, 0, 0, 0, 296, 3461, 1, 0, 0, 0, 298, 3463, 1, 0, 0, 0, 300, 3468, 1, 0, 0, 0, 302, 3500, 1, 0, 0, 0, 304, 3555, 1, 0, 0, 0, 306, 3557, 1, 0, 0, 0, 308, 3565, 1, 0, 0, 0, 310, 3573, 1, 0, 0, 0, 312, 3581, 1, 0, 0, 0, 314, 3596, 1, 0, 0, 0, 316, 3598, 1, 0, 0, 0, 318, 3601, 1, 0, 0, 0, 320, 3609, 1, 0, 0, 0, 322, 3619, 1, 0, 0, 0, 324, 3627, 1, 0, 0, 0, 326, 3648, 1, 0, 0, 0, 328, 3650, 1, 0, 0, 0, 330, 3663, 1, 0, 0, 0, 332, 3668, 1, 0, 0, 0, 334, 3682, 1, 0, 0, 0, 336, 3725, 1, 0, 0, 0, 338, 3735, 1, 0, 0, 0, 340, 3744, 1, 0, 0, 0, 342, 3746, 1, 0, 0, 0, 344, 3763, 1, 0, 0, 0, 346, 3765, 1, 0, 0, 0, 348, 3767, 1, 0, 0, 0, 350, 3775, 1, 0, 0, 0, 352, 3785, 1, 0, 0, 0, 354, 3789, 1, 0, 0, 0, 356, 3795, 1, 0, 0, 0, 358, 3797, 1, 0, 0, 0, 360, 3800, 1, 0, 0, 0, 362, 3817, 1, 0, 0, 0, 364, 3819, 1, 0, 0, 0, 366, 3821, 1, 0, 0, 0, 368, 3823, 1, 0, 0, 0, 370, 3825, 1, 0, 0, 0, 372, 374, 3, 2, 1, 0, 373, 372, 1, 0, 0, 0, 374, 377, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 378, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 378, 379, 5, 0, 0, 1, 379, 1, 1, 0, 0, 0, 380, 382, 3, 4, 2, 0, 381, 383, 5, 1, 0, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 3, 1, 0, 0, 0, 384, 1342, 3, 16, 8, 0, 385, 387, 3, 32, 16, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 1342, 3, 64, 32, 0, 389, 391, 5, 330, 0, 0, 390, 392, 3, 26, 13, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 1342, 3, 66, 33, 0, 394, 395, 5, 269, 0, 0, 395, 398, 5, 37, 0, 0, 396, 399, 3, 354, 177, 0, 397, 399, 3, 364, 182, 0, 398, 396, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 1342, 1, 0, 0, 0, 400, 401, 5, 59, 0, 0, 401, 403, 3, 26, 13, 0, 402, 404, 3, 164, 82, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 415, 3, 68, 34, 0, 406, 407, 5, 51, 0, 0, 407, 414, 3, 364, 182, 0, 408, 409, 5, 170, 0, 0, 409, 414, 3, 364, 182, 0, 410, 411, 5, 346, 0, 0, 411, 412, 7, 0, 0, 0, 412, 414, 3, 42, 21, 0, 413, 406, 1, 0, 0, 0, 413, 408, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1342, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 11, 0, 0, 419, 420, 3, 26, 13, 0, 420, 421, 3, 66, 33, 0, 421, 422, 5, 269, 0, 0, 422, 423, 7, 0, 0, 0, 423, 424, 3, 42, 21, 0, 424, 1342, 1, 0, 0, 0, 425, 426, 5, 11, 0, 0, 426, 427, 3, 26, 13, 0, 427, 428, 3, 66, 33, 0, 428, 429, 5, 269, 0, 0, 429, 430, 5, 170, 0, 0, 430, 431, 3, 364, 182, 0, 431, 1342, 1, 0, 0, 0, 432, 433, 5, 96, 0, 0, 433, 435, 3, 26, 13, 0, 434, 436, 3, 166, 83, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 439, 3, 66, 33, 0, 438, 440, 7, 1, 0, 0, 439, 438, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 1342, 1, 0, 0, 0, 441, 442, 5, 273, 0, 0, 442, 445, 7, 2, 0, 0, 443, 444, 7, 3, 0, 0, 444, 446, 3, 222, 111, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 451, 1, 0, 0, 0, 447, 449, 5, 163, 0, 0, 448, 447, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 452, 3, 364, 182, 0, 451, 448, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 1342, 1, 0, 0, 0, 453, 455, 5, 59, 0, 0, 454, 456, 5, 298, 0, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 1, 0, 0, 0, 457, 459, 5, 109, 0, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 462, 5, 293, 0, 0, 461, 463, 3, 164, 82, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 469, 3, 70, 35, 0, 465, 466, 5, 2, 0, 0, 466, 467, 3, 322, 161, 0, 467, 468, 5, 3, 0, 0, 468, 470, 1, 0, 0, 0, 469, 465, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 1, 0, 0, 0, 471, 473, 3, 36, 18, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 479, 3, 38, 19, 0, 475, 477, 5, 20, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 3, 16, 8, 0, 479, 476, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 1342, 1, 0, 0, 0, 481, 482, 5, 59, 0, 0, 482, 484, 5, 293, 0, 0, 483, 485, 3, 164, 82, 0, 484, 483, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 3, 70, 35, 0, 487, 488, 5, 163, 0, 0, 488, 499, 3, 72, 36, 0, 489, 498, 3, 36, 18, 0, 490, 498, 3, 218, 109, 0, 491, 498, 3, 58, 29, 0, 492, 493, 5, 170, 0, 0, 493, 498, 3, 364, 182, 0, 494, 495, 5, 297, 0, 0, 495, 498, 3, 42, 21, 0, 496, 498, 3, 40, 20, 0, 497, 489, 1, 0, 0, 0, 497, 490, 1, 0, 0, 0, 497, 491, 1, 0, 0, 0, 497, 492, 1, 0, 0, 0, 497, 494, 1, 0, 0, 0, 497, 496, 1, 0, 0, 0, 498, 501, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 1342, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 502, 503, 5, 59, 0, 0, 503, 505, 5, 208, 0, 0, 504, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 5, 244, 0, 0, 507, 508, 5, 293, 0, 0, 508, 513, 3, 70, 35, 0, 509, 510, 5, 2, 0, 0, 510, 511, 3, 322, 161, 0, 511, 512, 5, 3, 0, 0, 512, 514, 1, 0, 0, 0, 513, 509, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 516, 1, 0, 0, 0, 515, 517, 3, 36, 18, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 523, 3, 38, 19, 0, 519, 521, 5, 20, 0, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 3, 16, 8, 0, 523, 520, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 1342, 1, 0, 0, 0, 525, 526, 5, 13, 0, 0, 526, 527, 5, 293, 0, 0, 527, 529, 3, 72, 36, 0, 528, 530, 3, 22, 11, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 55, 0, 0, 532, 540, 5, 282, 0, 0, 533, 541, 5, 196, 0, 0, 534, 535, 5, 119, 0, 0, 535, 536, 5, 50, 0, 0, 536, 541, 3, 86, 43, 0, 537, 538, 5, 119, 0, 0, 538, 539, 5, 10, 0, 0, 539, 541, 5, 50, 0, 0, 540, 533, 1, 0, 0, 0, 540, 534, 1, 0, 0, 0, 540, 537, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 1342, 1, 0, 0, 0, 542, 543, 5, 13, 0, 0, 543, 546, 5, 294, 0, 0, 544, 545, 7, 3, 0, 0, 545, 547, 3, 66, 33, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 55, 0, 0, 549, 551, 5, 282, 0, 0, 550, 552, 5, 196, 0, 0, 551, 550, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 1342, 1, 0, 0, 0, 553, 554, 5, 11, 0, 0, 554, 555, 5, 293, 0, 0, 555, 556, 3, 72, 36, 0, 556, 557, 5, 8, 0, 0, 557, 558, 5, 49, 0, 0, 558, 559, 3, 308, 154, 0, 559, 1342, 1, 0, 0, 0, 560, 561, 5, 11, 0, 0, 561, 562, 5, 293, 0, 0, 562, 563, 3, 72, 36, 0, 563, 564, 5, 8, 0, 0, 564, 565, 5, 50, 0, 0, 565, 566, 5, 2, 0, 0, 566, 567, 3, 306, 153, 0, 567, 568, 5, 3, 0, 0, 568, 1342, 1, 0, 0, 0, 569, 570, 5, 11, 0, 0, 570, 571, 5, 293, 0, 0, 571, 572, 3, 72, 36, 0, 572, 573, 5, 241, 0, 0, 573, 574, 5, 49, 0, 0, 574, 575, 3, 80, 40, 0, 575, 576, 5, 309, 0, 0, 576, 577, 3, 88, 44, 0, 577, 1342, 1, 0, 0, 0, 578, 579, 5, 11, 0, 0, 579, 580, 5, 293, 0, 0, 580, 581, 3, 72, 36, 0, 581, 582, 5, 96, 0, 0, 582, 584, 5, 49, 0, 0, 583, 585, 3, 166, 83, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 3, 80, 40, 0, 587, 1342, 1, 0, 0, 0, 588, 589, 5, 11, 0, 0, 589, 590, 5, 293, 0, 0, 590, 591, 3, 72, 36, 0, 591, 592, 5, 96, 0, 0, 592, 594, 5, 50, 0, 0, 593, 595, 3, 166, 83, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 2, 0, 0, 597, 598, 3, 86, 43, 0, 598, 599, 5, 3, 0, 0, 599, 1342, 1, 0, 0, 0, 600, 605, 5, 11, 0, 0, 601, 602, 5, 293, 0, 0, 602, 606, 3, 72, 36, 0, 603, 604, 5, 338, 0, 0, 604, 606, 3, 76, 38, 0, 605, 601, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 241, 0, 0, 608, 609, 5, 309, 0, 0, 609, 610, 3, 222, 111, 0, 610, 1342, 1, 0, 0, 0, 611, 616, 5, 11, 0, 0, 612, 613, 5, 293, 0, 0, 613, 617, 3, 72, 36, 0, 614, 615, 5, 338, 0, 0, 615, 617, 3, 76, 38, 0, 616, 612, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 5, 269, 0, 0, 619, 620, 5, 297, 0, 0, 620, 621, 3, 42, 21, 0, 621, 1342, 1, 0, 0, 0, 622, 627, 5, 11, 0, 0, 623, 624, 5, 293, 0, 0, 624, 628, 3, 72, 36, 0, 625, 626, 5, 338, 0, 0, 626, 628, 3, 76, 38, 0, 627, 623, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 5, 328, 0, 0, 630, 632, 5, 297, 0, 0, 631, 633, 3, 166, 83, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 3, 42, 21, 0, 635, 1342, 1, 0, 0, 0, 636, 637, 5, 11, 0, 0, 637, 638, 5, 293, 0, 0, 638, 639, 3, 72, 36, 0, 639, 641, 7, 4, 0, 0, 640, 642, 5, 49, 0, 0, 641, 640, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 645, 3, 80, 40, 0, 644, 646, 3, 362, 181, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 1342, 1, 0, 0, 0, 647, 648, 5, 11, 0, 0, 648, 649, 5, 293, 0, 0, 649, 651, 3, 72, 36, 0, 650, 652, 3, 22, 11, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 5, 39, 0, 0, 654, 656, 5, 49, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 3, 80, 40, 0, 658, 660, 3, 320, 160, 0, 659, 661, 3, 300, 150, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 1342, 1, 0, 0, 0, 662, 663, 5, 11, 0, 0, 663, 664, 5, 293, 0, 0, 664, 666, 3, 72, 36, 0, 665, 667, 3, 22, 11, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 5, 244, 0, 0, 669, 670, 5, 50, 0, 0, 670, 671, 5, 2, 0, 0, 671, 672, 3, 310, 155, 0, 672, 673, 5, 3, 0, 0, 673, 1342, 1, 0, 0, 0, 674, 675, 5, 11, 0, 0, 675, 676, 5, 293, 0, 0, 676, 678, 3, 72, 36, 0, 677, 679, 3, 22, 11, 0, 678, 677, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 5, 269, 0, 0, 681, 682, 5, 266, 0, 0, 682, 686, 3, 364, 182, 0, 683, 684, 5, 346, 0, 0, 684, 685, 5, 267, 0, 0, 685, 687, 3, 42, 21, 0, 686, 683, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 1342, 1, 0, 0, 0, 688, 689, 5, 11, 0, 0, 689, 690, 5, 293, 0, 0, 690, 692, 3, 72, 36, 0, 691, 693, 3, 22, 11, 0, 692, 691, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 5, 269, 0, 0, 695, 696, 5, 267, 0, 0, 696, 697, 3, 42, 21, 0, 697, 1342, 1, 0, 0, 0, 698, 703, 5, 11, 0, 0, 699, 700, 5, 293, 0, 0, 700, 704, 3, 72, 36, 0, 701, 702, 5, 338, 0, 0, 702, 704, 3, 76, 38, 0, 703, 699, 1, 0, 0, 0, 703, 701, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 707, 5, 8, 0, 0, 706, 708, 3, 164, 82, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 710, 1, 0, 0, 0, 709, 711, 3, 20, 10, 0, 710, 709, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 1342, 1, 0, 0, 0, 714, 715, 5, 11, 0, 0, 715, 716, 5, 293, 0, 0, 716, 717, 3, 72, 36, 0, 717, 718, 3, 22, 11, 0, 718, 719, 5, 241, 0, 0, 719, 720, 5, 309, 0, 0, 720, 721, 3, 22, 11, 0, 721, 1342, 1, 0, 0, 0, 722, 727, 5, 11, 0, 0, 723, 724, 5, 293, 0, 0, 724, 728, 3, 72, 36, 0, 725, 726, 5, 338, 0, 0, 726, 728, 3, 76, 38, 0, 727, 723, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 731, 5, 96, 0, 0, 730, 732, 3, 166, 83, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 738, 3, 22, 11, 0, 734, 735, 5, 4, 0, 0, 735, 737, 3, 22, 11, 0, 736, 734, 1, 0, 0, 0, 737, 740, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 742, 1, 0, 0, 0, 740, 738, 1, 0, 0, 0, 741, 743, 5, 230, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 1342, 1, 0, 0, 0, 744, 745, 5, 11, 0, 0, 745, 746, 5, 293, 0, 0, 746, 748, 3, 72, 36, 0, 747, 749, 3, 22, 11, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 5, 269, 0, 0, 751, 752, 5, 170, 0, 0, 752, 753, 3, 364, 182, 0, 753, 1342, 1, 0, 0, 0, 754, 755, 5, 11, 0, 0, 755, 756, 5, 293, 0, 0, 756, 757, 3, 72, 36, 0, 757, 758, 5, 237, 0, 0, 758, 759, 5, 219, 0, 0, 759, 1342, 1, 0, 0, 0, 760, 761, 5, 11, 0, 0, 761, 762, 5, 176, 0, 0, 762, 763, 5, 338, 0, 0, 763, 764, 3, 76, 38, 0, 764, 765, 7, 5, 0, 0, 765, 766, 5, 248, 0, 0, 766, 1342, 1, 0, 0, 0, 767, 768, 5, 11, 0, 0, 768, 769, 5, 176, 0, 0, 769, 770, 5, 338, 0, 0, 770, 771, 3, 76, 38, 0, 771, 772, 5, 269, 0, 0, 772, 773, 5, 297, 0, 0, 773, 774, 3, 42, 21, 0, 774, 1342, 1, 0, 0, 0, 775, 776, 5, 96, 0, 0, 776, 778, 5, 293, 0, 0, 777, 779, 3, 166, 83, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 782, 3, 72, 36, 0, 781, 783, 5, 230, 0, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 1342, 1, 0, 0, 0, 784, 785, 5, 96, 0, 0, 785, 787, 5, 338, 0, 0, 786, 788, 3, 166, 83, 0, 787, 786, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 1342, 3, 76, 38, 0, 790, 791, 5, 96, 0, 0, 791, 792, 5, 176, 0, 0, 792, 794, 5, 338, 0, 0, 793, 795, 3, 166, 83, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 1342, 3, 76, 38, 0, 797, 800, 5, 59, 0, 0, 798, 799, 5, 208, 0, 0, 799, 801, 5, 244, 0, 0, 800, 798, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 806, 1, 0, 0, 0, 802, 804, 5, 128, 0, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 807, 5, 298, 0, 0, 806, 803, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 810, 5, 338, 0, 0, 809, 811, 3, 164, 82, 0, 810, 809, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 3, 74, 37, 0, 813, 815, 3, 192, 96, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 825, 1, 0, 0, 0, 816, 817, 5, 51, 0, 0, 817, 824, 3, 364, 182, 0, 818, 819, 5, 218, 0, 0, 819, 820, 5, 203, 0, 0, 820, 824, 3, 184, 92, 0, 821, 822, 5, 297, 0, 0, 822, 824, 3, 42, 21, 0, 823, 816, 1, 0, 0, 0, 823, 818, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 829, 5, 20, 0, 0, 829, 830, 3, 16, 8, 0, 830, 1342, 1, 0, 0, 0, 831, 834, 5, 59, 0, 0, 832, 833, 5, 208, 0, 0, 833, 835, 5, 244, 0, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 838, 5, 128, 0, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 5, 298, 0, 0, 840, 841, 5, 338, 0, 0, 841, 846, 3, 74, 37, 0, 842, 843, 5, 2, 0, 0, 843, 844, 3, 318, 159, 0, 844, 845, 5, 3, 0, 0, 845, 847, 1, 0, 0, 0, 846, 842, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 851, 3, 36, 18, 0, 849, 850, 5, 207, 0, 0, 850, 852, 3, 42, 21, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 1342, 1, 0, 0, 0, 853, 854, 5, 11, 0, 0, 854, 855, 5, 338, 0, 0, 855, 857, 3, 76, 38, 0, 856, 858, 5, 20, 0, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 3, 16, 8, 0, 860, 1342, 1, 0, 0, 0, 861, 864, 5, 59, 0, 0, 862, 863, 5, 208, 0, 0, 863, 865, 5, 244, 0, 0, 864, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 867, 1, 0, 0, 0, 866, 868, 5, 298, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 5, 125, 0, 0, 870, 872, 3, 164, 82, 0, 871, 870, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 3, 346, 173, 0, 874, 875, 5, 20, 0, 0, 875, 889, 3, 364, 182, 0, 876, 877, 5, 332, 0, 0, 877, 878, 3, 354, 177, 0, 878, 879, 3, 364, 182, 0, 879, 886, 1, 0, 0, 0, 880, 881, 5, 4, 0, 0, 881, 882, 3, 354, 177, 0, 882, 883, 3, 364, 182, 0, 883, 885, 1, 0, 0, 0, 884, 880, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 889, 876, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 1342, 1, 0, 0, 0, 891, 892, 5, 59, 0, 0, 892, 893, 5, 176, 0, 0, 893, 895, 5, 338, 0, 0, 894, 896, 3, 164, 82, 0, 895, 894, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 899, 3, 74, 37, 0, 898, 900, 3, 36, 18, 0, 899, 898, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 918, 1, 0, 0, 0, 901, 902, 5, 207, 0, 0, 902, 917, 3, 42, 21, 0, 903, 904, 5, 218, 0, 0, 904, 905, 5, 31, 0, 0, 905, 917, 3, 246, 123, 0, 906, 917, 3, 10, 5, 0, 907, 917, 3, 8, 4, 0, 908, 917, 3, 218, 109, 0, 909, 917, 3, 58, 29, 0, 910, 911, 5, 170, 0, 0, 911, 917, 3, 364, 182, 0, 912, 913, 5, 51, 0, 0, 913, 917, 3, 364, 182, 0, 914, 915, 5, 297, 0, 0, 915, 917, 3, 42, 21, 0, 916, 901, 1, 0, 0, 0, 916, 903, 1, 0, 0, 0, 916, 906, 1, 0, 0, 0, 916, 907, 1, 0, 0, 0, 916, 908, 1, 0, 0, 0, 916, 909, 1, 0, 0, 0, 916, 910, 1, 0, 0, 0, 916, 912, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, 920, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 921, 922, 5, 20, 0, 0, 922, 923, 3, 16, 8, 0, 923, 1342, 1, 0, 0, 0, 924, 926, 5, 96, 0, 0, 925, 927, 5, 298, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 930, 5, 125, 0, 0, 929, 931, 3, 166, 83, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 1342, 3, 344, 172, 0, 933, 936, 5, 81, 0, 0, 934, 935, 5, 208, 0, 0, 935, 937, 5, 244, 0, 0, 936, 934, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 939, 1, 0, 0, 0, 938, 940, 5, 336, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 3, 344, 172, 0, 942, 944, 3, 304, 152, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 946, 1, 0, 0, 0, 945, 947, 3, 316, 158, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1342, 1, 0, 0, 0, 948, 949, 5, 96, 0, 0, 949, 950, 5, 298, 0, 0, 950, 952, 5, 336, 0, 0, 951, 953, 3, 166, 83, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 957, 1, 0, 0, 0, 954, 958, 3, 72, 36, 0, 955, 958, 3, 76, 38, 0, 956, 958, 3, 344, 172, 0, 957, 954, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 956, 1, 0, 0, 0, 958, 1342, 1, 0, 0, 0, 959, 961, 5, 106, 0, 0, 960, 962, 7, 6, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 1342, 3, 4, 2, 0, 964, 965, 5, 273, 0, 0, 965, 968, 5, 294, 0, 0, 966, 967, 7, 3, 0, 0, 967, 969, 3, 66, 33, 0, 968, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 974, 1, 0, 0, 0, 970, 972, 5, 163, 0, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 975, 3, 364, 182, 0, 974, 971, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1342, 1, 0, 0, 0, 976, 977, 5, 273, 0, 0, 977, 978, 5, 293, 0, 0, 978, 981, 5, 108, 0, 0, 979, 980, 7, 3, 0, 0, 980, 982, 3, 66, 33, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 5, 163, 0, 0, 984, 986, 3, 364, 182, 0, 985, 987, 3, 22, 11, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 1342, 1, 0, 0, 0, 988, 989, 5, 273, 0, 0, 989, 990, 5, 297, 0, 0, 990, 995, 3, 72, 36, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 46, 23, 0, 993, 994, 5, 3, 0, 0, 994, 996, 1, 0, 0, 0, 995, 991, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 1342, 1, 0, 0, 0, 997, 998, 5, 273, 0, 0, 998, 999, 5, 50, 0, 0, 999, 1000, 7, 3, 0, 0, 1000, 1003, 3, 72, 36, 0, 1001, 1002, 7, 3, 0, 0, 1002, 1004, 3, 66, 33, 0, 1003, 1001, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1342, 1, 0, 0, 0, 1005, 1006, 5, 273, 0, 0, 1006, 1009, 5, 339, 0, 0, 1007, 1008, 7, 3, 0, 0, 1008, 1010, 3, 66, 33, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1015, 1, 0, 0, 0, 1011, 1013, 5, 163, 0, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 3, 364, 182, 0, 1015, 1012, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1342, 1, 0, 0, 0, 1017, 1018, 5, 273, 0, 0, 1018, 1019, 5, 219, 0, 0, 1019, 1021, 3, 72, 36, 0, 1020, 1022, 3, 22, 11, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1342, 1, 0, 0, 0, 1023, 1025, 5, 273, 0, 0, 1024, 1026, 7, 7, 0, 0, 1025, 1024, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1030, 5, 126, 0, 0, 1028, 1029, 7, 3, 0, 0, 1029, 1031, 3, 66, 33, 0, 1030, 1028, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1039, 1, 0, 0, 0, 1032, 1034, 5, 163, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1037, 1, 0, 0, 0, 1035, 1038, 3, 222, 111, 0, 1036, 1038, 3, 364, 182, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1036, 1, 0, 0, 0, 1038, 1040, 1, 0, 0, 0, 1039, 1033, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1342, 1, 0, 0, 0, 1041, 1042, 5, 273, 0, 0, 1042, 1043, 5, 59, 0, 0, 1043, 1044, 5, 293, 0, 0, 1044, 1047, 3, 72, 36, 0, 1045, 1046, 5, 20, 0, 0, 1046, 1048, 5, 266, 0, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1342, 1, 0, 0, 0, 1049, 1050, 5, 273, 0, 0, 1050, 1051, 5, 62, 0, 0, 1051, 1342, 3, 26, 13, 0, 1052, 1053, 5, 273, 0, 0, 1053, 1058, 5, 38, 0, 0, 1054, 1056, 5, 163, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1059, 3, 364, 182, 0, 1058, 1055, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1342, 1, 0, 0, 0, 1060, 1061, 5, 273, 0, 0, 1061, 1062, 5, 176, 0, 0, 1062, 1065, 5, 339, 0, 0, 1063, 1064, 7, 3, 0, 0, 1064, 1066, 3, 66, 33, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1071, 1, 0, 0, 0, 1067, 1069, 5, 163, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1072, 3, 364, 182, 0, 1071, 1068, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1342, 1, 0, 0, 0, 1073, 1074, 5, 273, 0, 0, 1074, 1075, 5, 59, 0, 0, 1075, 1076, 5, 176, 0, 0, 1076, 1077, 5, 338, 0, 0, 1077, 1080, 3, 76, 38, 0, 1078, 1079, 5, 20, 0, 0, 1079, 1081, 5, 266, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1342, 1, 0, 0, 0, 1082, 1083, 7, 8, 0, 0, 1083, 1085, 5, 125, 0, 0, 1084, 1086, 5, 108, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1342, 3, 28, 14, 0, 1088, 1089, 7, 8, 0, 0, 1089, 1091, 5, 72, 0, 0, 1090, 1092, 5, 108, 0, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1342, 3, 66, 33, 0, 1094, 1096, 7, 8, 0, 0, 1095, 1097, 5, 293, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1100, 7, 9, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 3, 72, 36, 0, 1102, 1104, 3, 22, 11, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1107, 3, 30, 15, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1342, 1, 0, 0, 0, 1108, 1110, 7, 8, 0, 0, 1109, 1111, 5, 232, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1342, 3, 16, 8, 0, 1113, 1114, 5, 51, 0, 0, 1114, 1120, 5, 203, 0, 0, 1115, 1116, 3, 26, 13, 0, 1116, 1117, 3, 66, 33, 0, 1117, 1121, 1, 0, 0, 0, 1118, 1119, 5, 293, 0, 0, 1119, 1121, 3, 72, 36, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1125, 5, 153, 0, 0, 1123, 1126, 3, 364, 182, 0, 1124, 1126, 5, 198, 0, 0, 1125, 1123, 1, 0, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 1342, 1, 0, 0, 0, 1127, 1128, 5, 240, 0, 0, 1128, 1129, 5, 293, 0, 0, 1129, 1342, 3, 72, 36, 0, 1130, 1131, 5, 240, 0, 0, 1131, 1132, 5, 125, 0, 0, 1132, 1342, 3, 344, 172, 0, 1133, 1141, 5, 240, 0, 0, 1134, 1142, 3, 364, 182, 0, 1135, 1137, 9, 0, 0, 0, 1136, 1135, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1134, 1, 0, 0, 0, 1141, 1138, 1, 0, 0, 0, 1142, 1342, 1, 0, 0, 0, 1143, 1144, 5, 240, 0, 0, 1144, 1145, 5, 176, 0, 0, 1145, 1146, 5, 338, 0, 0, 1146, 1342, 3, 76, 38, 0, 1147, 1149, 5, 33, 0, 0, 1148, 1150, 5, 159, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 5, 293, 0, 0, 1152, 1155, 3, 72, 36, 0, 1153, 1154, 5, 207, 0, 0, 1154, 1156, 3, 42, 21, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1161, 1, 0, 0, 0, 1157, 1159, 5, 20, 0, 0, 1158, 1157, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 3, 16, 8, 0, 1161, 1158, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1342, 1, 0, 0, 0, 1163, 1164, 5, 322, 0, 0, 1164, 1166, 5, 293, 0, 0, 1165, 1167, 3, 166, 83, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1342, 3, 72, 36, 0, 1169, 1170, 5, 43, 0, 0, 1170, 1342, 5, 33, 0, 0, 1171, 1172, 5, 168, 0, 0, 1172, 1174, 5, 70, 0, 0, 1173, 1175, 5, 169, 0, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1177, 5, 145, 0, 0, 1177, 1179, 3, 364, 182, 0, 1178, 1180, 5, 216, 0, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 5, 152, 0, 0, 1182, 1183, 5, 293, 0, 0, 1183, 1185, 3, 72, 36, 0, 1184, 1186, 3, 22, 11, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1342, 1, 0, 0, 0, 1187, 1188, 5, 317, 0, 0, 1188, 1189, 5, 293, 0, 0, 1189, 1191, 3, 72, 36, 0, 1190, 1192, 3, 22, 11, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1342, 1, 0, 0, 0, 1193, 1195, 5, 188, 0, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 242, 0, 0, 1197, 1198, 5, 293, 0, 0, 1198, 1201, 3, 72, 36, 0, 1199, 1200, 7, 10, 0, 0, 1200, 1202, 5, 219, 0, 0, 1201, 1199, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1342, 1, 0, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1208, 3, 354, 177, 0, 1205, 1207, 9, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 1210, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1342, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1212, 5, 269, 0, 0, 1212, 1216, 5, 253, 0, 0, 1213, 1215, 9, 0, 0, 0, 1214, 1213, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1217, 1342, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1220, 5, 269, 0, 0, 1220, 1221, 5, 301, 0, 0, 1221, 1222, 5, 350, 0, 0, 1222, 1342, 3, 284, 142, 0, 1223, 1224, 5, 269, 0, 0, 1224, 1225, 5, 301, 0, 0, 1225, 1228, 5, 350, 0, 0, 1226, 1229, 3, 364, 182, 0, 1227, 1229, 5, 169, 0, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1342, 1, 0, 0, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 5, 301, 0, 0, 1232, 1236, 5, 350, 0, 0, 1233, 1235, 9, 0, 0, 0, 1234, 1233, 1, 0, 0, 0, 1235, 1238, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1342, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1240, 5, 269, 0, 0, 1240, 1241, 7, 12, 0, 0, 1241, 1342, 3, 124, 62, 0, 1242, 1243, 5, 269, 0, 0, 1243, 1244, 7, 12, 0, 0, 1244, 1245, 5, 2, 0, 0, 1245, 1246, 3, 220, 110, 0, 1246, 1247, 5, 3, 0, 0, 1247, 1248, 5, 352, 0, 0, 1248, 1249, 5, 2, 0, 0, 1249, 1250, 3, 16, 8, 0, 1250, 1251, 5, 3, 0, 0, 1251, 1342, 1, 0, 0, 0, 1252, 1253, 5, 269, 0, 0, 1253, 1254, 3, 358, 179, 0, 1254, 1255, 5, 352, 0, 0, 1255, 1256, 5, 389, 0, 0, 1256, 1342, 1, 0, 0, 0, 1257, 1258, 5, 269, 0, 0, 1258, 1266, 3, 358, 179, 0, 1259, 1263, 5, 352, 0, 0, 1260, 1262, 9, 0, 0, 0, 1261, 1260, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1264, 1267, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1259, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1342, 1, 0, 0, 0, 1268, 1272, 5, 269, 0, 0, 1269, 1271, 9, 0, 0, 0, 1270, 1269, 1, 0, 0, 0, 1271, 1274, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1272, 1270, 1, 0, 0, 0, 1273, 1275, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1275, 1276, 5, 352, 0, 0, 1276, 1342, 5, 389, 0, 0, 1277, 1281, 5, 269, 0, 0, 1278, 1280, 9, 0, 0, 0, 1279, 1278, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1282, 1342, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1285, 5, 245, 0, 0, 1285, 1342, 3, 358, 179, 0, 1286, 1290, 5, 245, 0, 0, 1287, 1289, 9, 0, 0, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1291, 1342, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 59, 0, 0, 1294, 1296, 5, 142, 0, 0, 1295, 1297, 3, 164, 82, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 3, 354, 177, 0, 1299, 1301, 5, 203, 0, 0, 1300, 1302, 5, 293, 0, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1306, 3, 72, 36, 0, 1304, 1305, 5, 332, 0, 0, 1305, 1307, 3, 354, 177, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 5, 2, 0, 0, 1309, 1310, 3, 226, 113, 0, 1310, 1313, 5, 3, 0, 0, 1311, 1312, 5, 207, 0, 0, 1312, 1314, 3, 42, 21, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1342, 1, 0, 0, 0, 1315, 1316, 5, 96, 0, 0, 1316, 1318, 5, 142, 0, 0, 1317, 1319, 3, 166, 83, 0, 1318, 1317, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 3, 354, 177, 0, 1321, 1323, 5, 203, 0, 0, 1322, 1324, 5, 293, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 3, 72, 36, 0, 1326, 1342, 1, 0, 0, 0, 1327, 1328, 5, 205, 0, 0, 1328, 1330, 3, 72, 36, 0, 1329, 1331, 3, 128, 64, 0, 1330, 1329, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 3, 334, 167, 0, 1333, 1342, 1, 0, 0, 0, 1334, 1338, 3, 6, 3, 0, 1335, 1337, 9, 0, 0, 0, 1336, 1335, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1341, 384, 1, 0, 0, 0, 1341, 386, 1, 0, 0, 0, 1341, 389, 1, 0, 0, 0, 1341, 394, 1, 0, 0, 0, 1341, 400, 1, 0, 0, 0, 1341, 418, 1, 0, 0, 0, 1341, 425, 1, 0, 0, 0, 1341, 432, 1, 0, 0, 0, 1341, 441, 1, 0, 0, 0, 1341, 453, 1, 0, 0, 0, 1341, 481, 1, 0, 0, 0, 1341, 504, 1, 0, 0, 0, 1341, 525, 1, 0, 0, 0, 1341, 542, 1, 0, 0, 0, 1341, 553, 1, 0, 0, 0, 1341, 560, 1, 0, 0, 0, 1341, 569, 1, 0, 0, 0, 1341, 578, 1, 0, 0, 0, 1341, 588, 1, 0, 0, 0, 1341, 600, 1, 0, 0, 0, 1341, 611, 1, 0, 0, 0, 1341, 622, 1, 0, 0, 0, 1341, 636, 1, 0, 0, 0, 1341, 647, 1, 0, 0, 0, 1341, 662, 1, 0, 0, 0, 1341, 674, 1, 0, 0, 0, 1341, 688, 1, 0, 0, 0, 1341, 698, 1, 0, 0, 0, 1341, 714, 1, 0, 0, 0, 1341, 722, 1, 0, 0, 0, 1341, 744, 1, 0, 0, 0, 1341, 754, 1, 0, 0, 0, 1341, 760, 1, 0, 0, 0, 1341, 767, 1, 0, 0, 0, 1341, 775, 1, 0, 0, 0, 1341, 784, 1, 0, 0, 0, 1341, 790, 1, 0, 0, 0, 1341, 797, 1, 0, 0, 0, 1341, 831, 1, 0, 0, 0, 1341, 853, 1, 0, 0, 0, 1341, 861, 1, 0, 0, 0, 1341, 891, 1, 0, 0, 0, 1341, 924, 1, 0, 0, 0, 1341, 933, 1, 0, 0, 0, 1341, 948, 1, 0, 0, 0, 1341, 959, 1, 0, 0, 0, 1341, 964, 1, 0, 0, 0, 1341, 976, 1, 0, 0, 0, 1341, 988, 1, 0, 0, 0, 1341, 997, 1, 0, 0, 0, 1341, 1005, 1, 0, 0, 0, 1341, 1017, 1, 0, 0, 0, 1341, 1023, 1, 0, 0, 0, 1341, 1041, 1, 0, 0, 0, 1341, 1049, 1, 0, 0, 0, 1341, 1052, 1, 0, 0, 0, 1341, 1060, 1, 0, 0, 0, 1341, 1073, 1, 0, 0, 0, 1341, 1082, 1, 0, 0, 0, 1341, 1088, 1, 0, 0, 0, 1341, 1094, 1, 0, 0, 0, 1341, 1108, 1, 0, 0, 0, 1341, 1113, 1, 0, 0, 0, 1341, 1127, 1, 0, 0, 0, 1341, 1130, 1, 0, 0, 0, 1341, 1133, 1, 0, 0, 0, 1341, 1143, 1, 0, 0, 0, 1341, 1147, 1, 0, 0, 0, 1341, 1163, 1, 0, 0, 0, 1341, 1169, 1, 0, 0, 0, 1341, 1171, 1, 0, 0, 0, 1341, 1187, 1, 0, 0, 0, 1341, 1194, 1, 0, 0, 0, 1341, 1203, 1, 0, 0, 0, 1341, 1211, 1, 0, 0, 0, 1341, 1219, 1, 0, 0, 0, 1341, 1223, 1, 0, 0, 0, 1341, 1230, 1, 0, 0, 0, 1341, 1239, 1, 0, 0, 0, 1341, 1242, 1, 0, 0, 0, 1341, 1252, 1, 0, 0, 0, 1341, 1257, 1, 0, 0, 0, 1341, 1268, 1, 0, 0, 0, 1341, 1277, 1, 0, 0, 0, 1341, 1284, 1, 0, 0, 0, 1341, 1286, 1, 0, 0, 0, 1341, 1293, 1, 0, 0, 0, 1341, 1315, 1, 0, 0, 0, 1341, 1327, 1, 0, 0, 0, 1341, 1334, 1, 0, 0, 0, 1342, 5, 1, 0, 0, 0, 1343, 1344, 7, 13, 0, 0, 1344, 1437, 5, 253, 0, 0, 1345, 1347, 7, 14, 0, 0, 1346, 1348, 5, 253, 0, 0, 1347, 1346, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1437, 1, 0, 0, 0, 1349, 1350, 5, 273, 0, 0, 1350, 1437, 7, 15, 0, 0, 1351, 1352, 5, 273, 0, 0, 1352, 1354, 5, 253, 0, 0, 1353, 1355, 5, 129, 0, 0, 1354, 1353, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1437, 1, 0, 0, 0, 1356, 1358, 5, 273, 0, 0, 1357, 1359, 5, 62, 0, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1437, 5, 254, 0, 0, 1361, 1362, 5, 273, 0, 0, 1362, 1363, 5, 59, 0, 0, 1363, 1437, 5, 293, 0, 0, 1364, 1365, 7, 16, 0, 0, 1365, 1437, 5, 142, 0, 0, 1366, 1367, 7, 17, 0, 0, 1367, 1437, 5, 293, 0, 0, 1368, 1369, 7, 18, 0, 0, 1369, 1437, 5, 72, 0, 0, 1370, 1371, 7, 13, 0, 0, 1371, 1372, 5, 298, 0, 0, 1372, 1437, 5, 175, 0, 0, 1373, 1374, 5, 11, 0, 0, 1374, 1375, 5, 293, 0, 0, 1375, 1376, 3, 72, 36, 0, 1376, 1377, 5, 197, 0, 0, 1377, 1378, 7, 19, 0, 0, 1378, 1437, 1, 0, 0, 0, 1379, 1380, 5, 11, 0, 0, 1380, 1381, 5, 293, 0, 0, 1381, 1382, 3, 72, 36, 0, 1382, 1383, 7, 20, 0, 0, 1383, 1384, 5, 31, 0, 0, 1384, 1437, 1, 0, 0, 0, 1385, 1386, 5, 11, 0, 0, 1386, 1387, 5, 293, 0, 0, 1387, 1388, 3, 72, 36, 0, 1388, 1389, 5, 275, 0, 0, 1389, 1390, 5, 31, 0, 0, 1390, 1437, 1, 0, 0, 0, 1391, 1392, 5, 11, 0, 0, 1392, 1393, 5, 293, 0, 0, 1393, 1394, 3, 72, 36, 0, 1394, 1395, 5, 197, 0, 0, 1395, 1396, 5, 283, 0, 0, 1396, 1397, 5, 20, 0, 0, 1397, 1398, 5, 89, 0, 0, 1398, 1437, 1, 0, 0, 0, 1399, 1400, 5, 11, 0, 0, 1400, 1401, 5, 293, 0, 0, 1401, 1402, 3, 72, 36, 0, 1402, 1403, 5, 269, 0, 0, 1403, 1404, 5, 275, 0, 0, 1404, 1405, 5, 170, 0, 0, 1405, 1437, 1, 0, 0, 0, 1406, 1407, 5, 11, 0, 0, 1407, 1408, 5, 293, 0, 0, 1408, 1409, 3, 72, 36, 0, 1409, 1410, 7, 21, 0, 0, 1410, 1411, 5, 217, 0, 0, 1411, 1437, 1, 0, 0, 0, 1412, 1413, 5, 11, 0, 0, 1413, 1414, 5, 293, 0, 0, 1414, 1415, 3, 72, 36, 0, 1415, 1416, 5, 310, 0, 0, 1416, 1437, 1, 0, 0, 0, 1417, 1418, 5, 11, 0, 0, 1418, 1419, 5, 293, 0, 0, 1419, 1421, 3, 72, 36, 0, 1420, 1422, 3, 22, 11, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1429, 1, 0, 0, 0, 1423, 1430, 5, 53, 0, 0, 1424, 1430, 5, 56, 0, 0, 1425, 1426, 5, 269, 0, 0, 1426, 1430, 5, 115, 0, 0, 1427, 1428, 5, 244, 0, 0, 1428, 1430, 5, 50, 0, 0, 1429, 1423, 1, 0, 0, 0, 1429, 1424, 1, 0, 0, 0, 1429, 1425, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1437, 1, 0, 0, 0, 1431, 1432, 5, 281, 0, 0, 1432, 1437, 5, 312, 0, 0, 1433, 1437, 5, 52, 0, 0, 1434, 1437, 5, 255, 0, 0, 1435, 1437, 5, 88, 0, 0, 1436, 1343, 1, 0, 0, 0, 1436, 1345, 1, 0, 0, 0, 1436, 1349, 1, 0, 0, 0, 1436, 1351, 1, 0, 0, 0, 1436, 1356, 1, 0, 0, 0, 1436, 1361, 1, 0, 0, 0, 1436, 1364, 1, 0, 0, 0, 1436, 1366, 1, 0, 0, 0, 1436, 1368, 1, 0, 0, 0, 1436, 1370, 1, 0, 0, 0, 1436, 1373, 1, 0, 0, 0, 1436, 1379, 1, 0, 0, 0, 1436, 1385, 1, 0, 0, 0, 1436, 1391, 1, 0, 0, 0, 1436, 1399, 1, 0, 0, 0, 1436, 1406, 1, 0, 0, 0, 1436, 1412, 1, 0, 0, 0, 1436, 1417, 1, 0, 0, 0, 1436, 1431, 1, 0, 0, 0, 1436, 1433, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 7, 1, 0, 0, 0, 1438, 1439, 5, 45, 0, 0, 1439, 1440, 5, 31, 0, 0, 1440, 1444, 3, 184, 92, 0, 1441, 1442, 5, 279, 0, 0, 1442, 1443, 5, 31, 0, 0, 1443, 1445, 3, 188, 94, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 5, 152, 0, 0, 1447, 1448, 5, 382, 0, 0, 1448, 1449, 5, 30, 0, 0, 1449, 9, 1, 0, 0, 0, 1450, 1451, 5, 275, 0, 0, 1451, 1452, 5, 31, 0, 0, 1452, 1453, 3, 184, 92, 0, 1453, 1456, 5, 203, 0, 0, 1454, 1457, 3, 54, 27, 0, 1455, 1457, 3, 56, 28, 0, 1456, 1454, 1, 0, 0, 0, 1456, 1455, 1, 0, 0, 0, 1457, 1461, 1, 0, 0, 0, 1458, 1459, 5, 283, 0, 0, 1459, 1460, 5, 20, 0, 0, 1460, 1462, 5, 89, 0, 0, 1461, 1458, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 11, 1, 0, 0, 0, 1463, 1464, 5, 170, 0, 0, 1464, 1465, 3, 364, 182, 0, 1465, 13, 1, 0, 0, 0, 1466, 1467, 5, 51, 0, 0, 1467, 1468, 3, 364, 182, 0, 1468, 15, 1, 0, 0, 0, 1469, 1471, 3, 32, 16, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1473, 3, 100, 50, 0, 1473, 1474, 3, 92, 46, 0, 1474, 17, 1, 0, 0, 0, 1475, 1476, 5, 147, 0, 0, 1476, 1478, 5, 216, 0, 0, 1477, 1479, 5, 293, 0, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1485, 3, 72, 36, 0, 1481, 1483, 3, 22, 11, 0, 1482, 1484, 3, 164, 82, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1486, 1, 0, 0, 0, 1485, 1481, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1493, 1, 0, 0, 0, 1487, 1488, 5, 31, 0, 0, 1488, 1494, 5, 189, 0, 0, 1489, 1490, 5, 2, 0, 0, 1490, 1491, 3, 86, 43, 0, 1491, 1492, 5, 3, 0, 0, 1492, 1494, 1, 0, 0, 0, 1493, 1487, 1, 0, 0, 0, 1493, 1489, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1552, 1, 0, 0, 0, 1495, 1496, 5, 147, 0, 0, 1496, 1498, 5, 152, 0, 0, 1497, 1499, 5, 293, 0, 0, 1498, 1497, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1502, 3, 72, 36, 0, 1501, 1503, 3, 22, 11, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1505, 1, 0, 0, 0, 1504, 1506, 3, 164, 82, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1513, 1, 0, 0, 0, 1507, 1508, 5, 31, 0, 0, 1508, 1514, 5, 189, 0, 0, 1509, 1510, 5, 2, 0, 0, 1510, 1511, 3, 86, 43, 0, 1511, 1512, 5, 3, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1507, 1, 0, 0, 0, 1513, 1509, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1552, 1, 0, 0, 0, 1515, 1516, 5, 147, 0, 0, 1516, 1518, 5, 152, 0, 0, 1517, 1519, 5, 293, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 3, 72, 36, 0, 1521, 1522, 5, 244, 0, 0, 1522, 1523, 3, 128, 64, 0, 1523, 1552, 1, 0, 0, 0, 1524, 1525, 5, 147, 0, 0, 1525, 1527, 5, 216, 0, 0, 1526, 1528, 5, 169, 0, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 5, 90, 0, 0, 1530, 1532, 3, 364, 182, 0, 1531, 1533, 3, 218, 109, 0, 1532, 1531, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1536, 3, 58, 29, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1552, 1, 0, 0, 0, 1537, 1538, 5, 147, 0, 0, 1538, 1540, 5, 216, 0, 0, 1539, 1541, 5, 169, 0, 0, 1540, 1539, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 5, 90, 0, 0, 1543, 1545, 3, 364, 182, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 3, 36, 18, 0, 1547, 1548, 5, 207, 0, 0, 1548, 1550, 3, 42, 21, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 1, 0, 0, 0, 1551, 1475, 1, 0, 0, 0, 1551, 1495, 1, 0, 0, 0, 1551, 1515, 1, 0, 0, 0, 1551, 1524, 1, 0, 0, 0, 1551, 1537, 1, 0, 0, 0, 1552, 19, 1, 0, 0, 0, 1553, 1556, 3, 22, 11, 0, 1554, 1555, 5, 170, 0, 0, 1555, 1557, 3, 364, 182, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 21, 1, 0, 0, 0, 1558, 1559, 5, 217, 0, 0, 1559, 1560, 5, 2, 0, 0, 1560, 1565, 3, 24, 12, 0, 1561, 1562, 5, 4, 0, 0, 1562, 1564, 3, 24, 12, 0, 1563, 1561, 1, 0, 0, 0, 1564, 1567, 1, 0, 0, 0, 1565, 1563, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1565, 1, 0, 0, 0, 1568, 1569, 5, 3, 0, 0, 1569, 23, 1, 0, 0, 0, 1570, 1573, 3, 354, 177, 0, 1571, 1572, 5, 352, 0, 0, 1572, 1574, 3, 274, 137, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1580, 1, 0, 0, 0, 1575, 1576, 3, 354, 177, 0, 1576, 1577, 5, 352, 0, 0, 1577, 1578, 5, 82, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1570, 1, 0, 0, 0, 1579, 1575, 1, 0, 0, 0, 1580, 25, 1, 0, 0, 0, 1581, 1582, 7, 22, 0, 0, 1582, 27, 1, 0, 0, 0, 1583, 1589, 3, 90, 45, 0, 1584, 1589, 3, 364, 182, 0, 1585, 1589, 3, 276, 138, 0, 1586, 1589, 3, 278, 139, 0, 1587, 1589, 3, 280, 140, 0, 1588, 1583, 1, 0, 0, 0, 1588, 1584, 1, 0, 0, 0, 1588, 1585, 1, 0, 0, 0, 1588, 1586, 1, 0, 0, 0, 1588, 1587, 1, 0, 0, 0, 1589, 29, 1, 0, 0, 0, 1590, 1595, 3, 354, 177, 0, 1591, 1592, 5, 5, 0, 0, 1592, 1594, 3, 354, 177, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1597, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 31, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1599, 5, 346, 0, 0, 1599, 1604, 3, 34, 17, 0, 1600, 1601, 5, 4, 0, 0, 1601, 1603, 3, 34, 17, 0, 1602, 1600, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1602, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 33, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1607, 1609, 3, 350, 175, 0, 1608, 1610, 3, 184, 92, 0, 1609, 1608, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1613, 5, 20, 0, 0, 1612, 1611, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 5, 2, 0, 0, 1615, 1616, 3, 16, 8, 0, 1616, 1617, 5, 3, 0, 0, 1617, 35, 1, 0, 0, 0, 1618, 1619, 5, 332, 0, 0, 1619, 1620, 3, 222, 111, 0, 1620, 37, 1, 0, 0, 0, 1621, 1622, 5, 207, 0, 0, 1622, 1638, 3, 50, 25, 0, 1623, 1624, 5, 218, 0, 0, 1624, 1625, 5, 31, 0, 0, 1625, 1638, 3, 246, 123, 0, 1626, 1638, 3, 10, 5, 0, 1627, 1638, 3, 8, 4, 0, 1628, 1638, 3, 218, 109, 0, 1629, 1638, 3, 58, 29, 0, 1630, 1631, 5, 170, 0, 0, 1631, 1638, 3, 364, 182, 0, 1632, 1633, 5, 51, 0, 0, 1633, 1638, 3, 364, 182, 0, 1634, 1635, 5, 297, 0, 0, 1635, 1638, 3, 42, 21, 0, 1636, 1638, 3, 40, 20, 0, 1637, 1621, 1, 0, 0, 0, 1637, 1623, 1, 0, 0, 0, 1637, 1626, 1, 0, 0, 0, 1637, 1627, 1, 0, 0, 0, 1637, 1628, 1, 0, 0, 0, 1637, 1629, 1, 0, 0, 0, 1637, 1630, 1, 0, 0, 0, 1637, 1632, 1, 0, 0, 0, 1637, 1634, 1, 0, 0, 0, 1637, 1636, 1, 0, 0, 0, 1638, 1641, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 39, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1643, 5, 162, 0, 0, 1643, 1644, 5, 382, 0, 0, 1644, 41, 1, 0, 0, 0, 1645, 1646, 5, 2, 0, 0, 1646, 1651, 3, 44, 22, 0, 1647, 1648, 5, 4, 0, 0, 1648, 1650, 3, 44, 22, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1653, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1654, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1654, 1655, 5, 3, 0, 0, 1655, 43, 1, 0, 0, 0, 1656, 1661, 3, 46, 23, 0, 1657, 1659, 5, 352, 0, 0, 1658, 1657, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1662, 3, 48, 24, 0, 1661, 1658, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 45, 1, 0, 0, 0, 1663, 1668, 3, 354, 177, 0, 1664, 1665, 5, 5, 0, 0, 1665, 1667, 3, 354, 177, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1670, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1673, 1, 0, 0, 0, 1670, 1668, 1, 0, 0, 0, 1671, 1673, 3, 364, 182, 0, 1672, 1663, 1, 0, 0, 0, 1672, 1671, 1, 0, 0, 0, 1673, 47, 1, 0, 0, 0, 1674, 1679, 5, 382, 0, 0, 1675, 1679, 5, 384, 0, 0, 1676, 1679, 3, 282, 141, 0, 1677, 1679, 3, 364, 182, 0, 1678, 1674, 1, 0, 0, 0, 1678, 1675, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1677, 1, 0, 0, 0, 1679, 49, 1, 0, 0, 0, 1680, 1681, 5, 2, 0, 0, 1681, 1686, 3, 52, 26, 0, 1682, 1683, 5, 4, 0, 0, 1683, 1685, 3, 52, 26, 0, 1684, 1682, 1, 0, 0, 0, 1685, 1688, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 1, 0, 0, 0, 1688, 1686, 1, 0, 0, 0, 1689, 1690, 5, 3, 0, 0, 1690, 51, 1, 0, 0, 0, 1691, 1696, 3, 46, 23, 0, 1692, 1694, 5, 352, 0, 0, 1693, 1692, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1697, 3, 254, 127, 0, 1696, 1693, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 53, 1, 0, 0, 0, 1698, 1699, 5, 2, 0, 0, 1699, 1704, 3, 274, 137, 0, 1700, 1701, 5, 4, 0, 0, 1701, 1703, 3, 274, 137, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1706, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1707, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1708, 5, 3, 0, 0, 1708, 55, 1, 0, 0, 0, 1709, 1710, 5, 2, 0, 0, 1710, 1715, 3, 54, 27, 0, 1711, 1712, 5, 4, 0, 0, 1712, 1714, 3, 54, 27, 0, 1713, 1711, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1719, 5, 3, 0, 0, 1719, 57, 1, 0, 0, 0, 1720, 1721, 5, 283, 0, 0, 1721, 1722, 5, 20, 0, 0, 1722, 1727, 3, 60, 30, 0, 1723, 1724, 5, 283, 0, 0, 1724, 1725, 5, 31, 0, 0, 1725, 1727, 3, 62, 31, 0, 1726, 1720, 1, 0, 0, 0, 1726, 1723, 1, 0, 0, 0, 1727, 59, 1, 0, 0, 0, 1728, 1729, 5, 146, 0, 0, 1729, 1730, 3, 364, 182, 0, 1730, 1731, 5, 212, 0, 0, 1731, 1732, 3, 364, 182, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1735, 3, 354, 177, 0, 1734, 1728, 1, 0, 0, 0, 1734, 1733, 1, 0, 0, 0, 1735, 61, 1, 0, 0, 0, 1736, 1740, 3, 364, 182, 0, 1737, 1738, 5, 346, 0, 0, 1738, 1739, 5, 267, 0, 0, 1739, 1741, 3, 42, 21, 0, 1740, 1737, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 63, 1, 0, 0, 0, 1742, 1743, 3, 18, 9, 0, 1743, 1744, 3, 16, 8, 0, 1744, 1801, 1, 0, 0, 0, 1745, 1749, 3, 136, 68, 0, 1746, 1747, 3, 18, 9, 0, 1747, 1748, 3, 106, 53, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1746, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1801, 1, 0, 0, 0, 1753, 1754, 5, 84, 0, 0, 1754, 1755, 5, 123, 0, 0, 1755, 1756, 3, 72, 36, 0, 1756, 1758, 3, 216, 108, 0, 1757, 1759, 3, 128, 64, 0, 1758, 1757, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1801, 1, 0, 0, 0, 1760, 1761, 5, 329, 0, 0, 1761, 1762, 3, 72, 36, 0, 1762, 1763, 3, 216, 108, 0, 1763, 1765, 3, 114, 57, 0, 1764, 1766, 3, 128, 64, 0, 1765, 1764, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1801, 1, 0, 0, 0, 1767, 1768, 5, 179, 0, 0, 1768, 1769, 5, 152, 0, 0, 1769, 1770, 3, 72, 36, 0, 1770, 1771, 3, 216, 108, 0, 1771, 1777, 5, 332, 0, 0, 1772, 1778, 3, 90, 45, 0, 1773, 1774, 5, 2, 0, 0, 1774, 1775, 3, 16, 8, 0, 1775, 1776, 5, 3, 0, 0, 1776, 1778, 1, 0, 0, 0, 1777, 1772, 1, 0, 0, 0, 1777, 1773, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 3, 216, 108, 0, 1780, 1781, 5, 203, 0, 0, 1781, 1785, 3, 262, 131, 0, 1782, 1784, 3, 116, 58, 0, 1783, 1782, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1791, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1790, 3, 118, 59, 0, 1789, 1788, 1, 0, 0, 0, 1790, 1793, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1797, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1794, 1796, 3, 120, 60, 0, 1795, 1794, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1801, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1742, 1, 0, 0, 0, 1800, 1745, 1, 0, 0, 0, 1800, 1753, 1, 0, 0, 0, 1800, 1760, 1, 0, 0, 0, 1800, 1767, 1, 0, 0, 0, 1801, 65, 1, 0, 0, 0, 1802, 1803, 3, 90, 45, 0, 1803, 67, 1, 0, 0, 0, 1804, 1805, 3, 90, 45, 0, 1805, 69, 1, 0, 0, 0, 1806, 1807, 3, 230, 115, 0, 1807, 71, 1, 0, 0, 0, 1808, 1809, 3, 230, 115, 0, 1809, 73, 1, 0, 0, 0, 1810, 1811, 3, 232, 116, 0, 1811, 75, 1, 0, 0, 0, 1812, 1813, 3, 232, 116, 0, 1813, 77, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 79, 1, 0, 0, 0, 1816, 1820, 3, 224, 112, 0, 1817, 1818, 4, 40, 0, 0, 1818, 1820, 3, 78, 39, 0, 1819, 1816, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1820, 81, 1, 0, 0, 0, 1821, 1822, 3, 222, 111, 0, 1822, 83, 1, 0, 0, 0, 1823, 1827, 3, 224, 112, 0, 1824, 1825, 4, 42, 1, 0, 1825, 1827, 3, 78, 39, 0, 1826, 1823, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1827, 85, 1, 0, 0, 0, 1828, 1833, 3, 80, 40, 0, 1829, 1830, 5, 4, 0, 0, 1830, 1832, 3, 80, 40, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1835, 1, 0, 0, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 87, 1, 0, 0, 0, 1835, 1833, 1, 0, 0, 0, 1836, 1837, 3, 350, 175, 0, 1837, 89, 1, 0, 0, 0, 1838, 1839, 5, 136, 0, 0, 1839, 1840, 5, 2, 0, 0, 1840, 1841, 3, 254, 127, 0, 1841, 1842, 5, 3, 0, 0, 1842, 1845, 1, 0, 0, 0, 1843, 1845, 3, 222, 111, 0, 1844, 1838, 1, 0, 0, 0, 1844, 1843, 1, 0, 0, 0, 1845, 91, 1, 0, 0, 0, 1846, 1847, 5, 209, 0, 0, 1847, 1848, 5, 31, 0, 0, 1848, 1850, 3, 96, 48, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1854, 1, 0, 0, 0, 1851, 1852, 5, 44, 0, 0, 1852, 1853, 5, 31, 0, 0, 1853, 1855, 3, 98, 49, 0, 1854, 1851, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1859, 1, 0, 0, 0, 1856, 1857, 5, 93, 0, 0, 1857, 1858, 5, 31, 0, 0, 1858, 1860, 3, 98, 49, 0, 1859, 1856, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1864, 1, 0, 0, 0, 1861, 1862, 5, 278, 0, 0, 1862, 1863, 5, 31, 0, 0, 1863, 1865, 3, 96, 48, 0, 1864, 1861, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1867, 1, 0, 0, 0, 1866, 1868, 3, 332, 166, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1870, 1, 0, 0, 0, 1869, 1871, 3, 94, 47, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1874, 1, 0, 0, 0, 1872, 1873, 5, 202, 0, 0, 1873, 1875, 3, 254, 127, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 93, 1, 0, 0, 0, 1876, 1879, 5, 165, 0, 0, 1877, 1880, 5, 10, 0, 0, 1878, 1880, 3, 254, 127, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1878, 1, 0, 0, 0, 1880, 95, 1, 0, 0, 0, 1881, 1886, 3, 104, 52, 0, 1882, 1883, 5, 4, 0, 0, 1883, 1885, 3, 104, 52, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1888, 1, 0, 0, 0, 1886, 1884, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 97, 1, 0, 0, 0, 1888, 1886, 1, 0, 0, 0, 1889, 1894, 3, 254, 127, 0, 1890, 1891, 5, 4, 0, 0, 1891, 1893, 3, 254, 127, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1896, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 99, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 1898, 6, 50, -1, 0, 1898, 1899, 3, 102, 51, 0, 1899, 1920, 1, 0, 0, 0, 1900, 1901, 10, 3, 0, 0, 1901, 1903, 7, 23, 0, 0, 1902, 1904, 3, 170, 85, 0, 1903, 1902, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1919, 3, 100, 50, 4, 1906, 1907, 10, 2, 0, 0, 1907, 1909, 5, 148, 0, 0, 1908, 1910, 3, 170, 85, 0, 1909, 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1919, 3, 100, 50, 3, 1912, 1913, 10, 1, 0, 0, 1913, 1915, 7, 24, 0, 0, 1914, 1916, 3, 170, 85, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1919, 3, 100, 50, 2, 1918, 1900, 1, 0, 0, 0, 1918, 1906, 1, 0, 0, 0, 1918, 1912, 1, 0, 0, 0, 1919, 1922, 1, 0, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 101, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1923, 1948, 3, 108, 54, 0, 1924, 1926, 3, 136, 68, 0, 1925, 1927, 3, 106, 53, 0, 1926, 1925, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1948, 1, 0, 0, 0, 1930, 1931, 5, 293, 0, 0, 1931, 1948, 3, 72, 36, 0, 1932, 1933, 5, 333, 0, 0, 1933, 1938, 3, 254, 127, 0, 1934, 1935, 5, 4, 0, 0, 1935, 1937, 3, 254, 127, 0, 1936, 1934, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1941, 1942, 3, 216, 108, 0, 1942, 1948, 1, 0, 0, 0, 1943, 1944, 5, 2, 0, 0, 1944, 1945, 3, 16, 8, 0, 1945, 1946, 5, 3, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1923, 1, 0, 0, 0, 1947, 1924, 1, 0, 0, 0, 1947, 1930, 1, 0, 0, 0, 1947, 1932, 1, 0, 0, 0, 1947, 1943, 1, 0, 0, 0, 1948, 103, 1, 0, 0, 0, 1949, 1952, 3, 80, 40, 0, 1950, 1952, 3, 254, 127, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1950, 1, 0, 0, 0, 1952, 1954, 1, 0, 0, 0, 1953, 1955, 7, 25, 0, 0, 1954, 1953, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1958, 1, 0, 0, 0, 1956, 1957, 5, 199, 0, 0, 1957, 1959, 7, 26, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 105, 1, 0, 0, 0, 1960, 1962, 3, 110, 55, 0, 1961, 1963, 3, 128, 64, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 3, 92, 46, 0, 1965, 1988, 1, 0, 0, 0, 1966, 1970, 3, 112, 56, 0, 1967, 1969, 3, 168, 84, 0, 1968, 1967, 1, 0, 0, 0, 1969, 1972, 1, 0, 0, 0, 1970, 1968, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1974, 1, 0, 0, 0, 1972, 1970, 1, 0, 0, 0, 1973, 1975, 3, 128, 64, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 140, 70, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1981, 3, 130, 65, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1984, 3, 332, 166, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 3, 92, 46, 0, 1986, 1988, 1, 0, 0, 0, 1987, 1960, 1, 0, 0, 0, 1987, 1966, 1, 0, 0, 0, 1988, 107, 1, 0, 0, 0, 1989, 1991, 3, 110, 55, 0, 1990, 1992, 3, 136, 68, 0, 1991, 1990, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1996, 1, 0, 0, 0, 1993, 1995, 3, 168, 84, 0, 1994, 1993, 1, 0, 0, 0, 1995, 1998, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2000, 1, 0, 0, 0, 1998, 1996, 1, 0, 0, 0, 1999, 2001, 3, 128, 64, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2003, 1, 0, 0, 0, 2002, 2004, 3, 140, 70, 0, 2003, 2002, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2007, 3, 130, 65, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2010, 3, 332, 166, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2034, 1, 0, 0, 0, 2011, 2013, 3, 112, 56, 0, 2012, 2014, 3, 136, 68, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2018, 1, 0, 0, 0, 2015, 2017, 3, 168, 84, 0, 2016, 2015, 1, 0, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2018, 1, 0, 0, 0, 2021, 2023, 3, 128, 64, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2026, 3, 140, 70, 0, 2025, 2024, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2028, 1, 0, 0, 0, 2027, 2029, 3, 130, 65, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2031, 1, 0, 0, 0, 2030, 2032, 3, 332, 166, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2034, 1, 0, 0, 0, 2033, 1989, 1, 0, 0, 0, 2033, 2011, 1, 0, 0, 0, 2034, 109, 1, 0, 0, 0, 2035, 2036, 5, 263, 0, 0, 2036, 2037, 5, 314, 0, 0, 2037, 2039, 5, 2, 0, 0, 2038, 2040, 3, 170, 85, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 3, 260, 130, 0, 2042, 2043, 5, 3, 0, 0, 2043, 2055, 1, 0, 0, 0, 2044, 2046, 5, 177, 0, 0, 2045, 2047, 3, 170, 85, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2055, 3, 260, 130, 0, 2049, 2051, 5, 238, 0, 0, 2050, 2052, 3, 170, 85, 0, 2051, 2050, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2055, 3, 260, 130, 0, 2054, 2035, 1, 0, 0, 0, 2054, 2044, 1, 0, 0, 0, 2054, 2049, 1, 0, 0, 0, 2055, 2057, 1, 0, 0, 0, 2056, 2058, 3, 218, 109, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2061, 1, 0, 0, 0, 2059, 2060, 5, 236, 0, 0, 2060, 2062, 3, 364, 182, 0, 2061, 2059, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2064, 5, 332, 0, 0, 2064, 2077, 3, 364, 182, 0, 2065, 2075, 5, 20, 0, 0, 2066, 2076, 3, 186, 93, 0, 2067, 2076, 3, 318, 159, 0, 2068, 2071, 5, 2, 0, 0, 2069, 2072, 3, 186, 93, 0, 2070, 2072, 3, 318, 159, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2070, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 5, 3, 0, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2066, 1, 0, 0, 0, 2075, 2067, 1, 0, 0, 0, 2075, 2068, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2065, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 1, 0, 0, 0, 2079, 2081, 3, 218, 109, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2084, 1, 0, 0, 0, 2082, 2083, 5, 235, 0, 0, 2083, 2085, 3, 364, 182, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 111, 1, 0, 0, 0, 2086, 2090, 5, 263, 0, 0, 2087, 2089, 3, 132, 66, 0, 2088, 2087, 1, 0, 0, 0, 2089, 2092, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2094, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2093, 2095, 3, 170, 85, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 3, 244, 122, 0, 2097, 113, 1, 0, 0, 0, 2098, 2099, 5, 269, 0, 0, 2099, 2100, 3, 124, 62, 0, 2100, 115, 1, 0, 0, 0, 2101, 2102, 5, 343, 0, 0, 2102, 2105, 5, 178, 0, 0, 2103, 2104, 5, 14, 0, 0, 2104, 2106, 3, 262, 131, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2115, 5, 300, 0, 0, 2108, 2116, 5, 84, 0, 0, 2109, 2110, 5, 329, 0, 0, 2110, 2113, 5, 269, 0, 0, 2111, 2114, 5, 363, 0, 0, 2112, 2114, 3, 124, 62, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2112, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2108, 1, 0, 0, 0, 2115, 2109, 1, 0, 0, 0, 2116, 117, 1, 0, 0, 0, 2117, 2118, 5, 343, 0, 0, 2118, 2119, 5, 197, 0, 0, 2119, 2122, 5, 178, 0, 0, 2120, 2121, 5, 31, 0, 0, 2121, 2123, 5, 296, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2126, 1, 0, 0, 0, 2124, 2125, 5, 14, 0, 0, 2125, 2127, 3, 262, 131, 0, 2126, 2124, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 5, 300, 0, 0, 2129, 2130, 3, 122, 61, 0, 2130, 119, 1, 0, 0, 0, 2131, 2132, 5, 343, 0, 0, 2132, 2133, 5, 197, 0, 0, 2133, 2134, 5, 178, 0, 0, 2134, 2135, 5, 31, 0, 0, 2135, 2138, 5, 280, 0, 0, 2136, 2137, 5, 14, 0, 0, 2137, 2139, 3, 262, 131, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2145, 5, 300, 0, 0, 2141, 2146, 5, 84, 0, 0, 2142, 2143, 5, 329, 0, 0, 2143, 2144, 5, 269, 0, 0, 2144, 2146, 3, 124, 62, 0, 2145, 2141, 1, 0, 0, 0, 2145, 2142, 1, 0, 0, 0, 2146, 121, 1, 0, 0, 0, 2147, 2148, 5, 147, 0, 0, 2148, 2166, 5, 363, 0, 0, 2149, 2150, 5, 147, 0, 0, 2150, 2151, 5, 2, 0, 0, 2151, 2152, 3, 220, 110, 0, 2152, 2153, 5, 3, 0, 0, 2153, 2154, 5, 333, 0, 0, 2154, 2155, 5, 2, 0, 0, 2155, 2160, 3, 254, 127, 0, 2156, 2157, 5, 4, 0, 0, 2157, 2159, 3, 254, 127, 0, 2158, 2156, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2164, 5, 3, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2147, 1, 0, 0, 0, 2165, 2149, 1, 0, 0, 0, 2166, 123, 1, 0, 0, 0, 2167, 2172, 3, 126, 63, 0, 2168, 2169, 5, 4, 0, 0, 2169, 2171, 3, 126, 63, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2174, 1, 0, 0, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 125, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2176, 3, 222, 111, 0, 2176, 2177, 5, 352, 0, 0, 2177, 2178, 3, 254, 127, 0, 2178, 127, 1, 0, 0, 0, 2179, 2180, 5, 344, 0, 0, 2180, 2181, 3, 262, 131, 0, 2181, 129, 1, 0, 0, 0, 2182, 2183, 5, 132, 0, 0, 2183, 2184, 3, 262, 131, 0, 2184, 131, 1, 0, 0, 0, 2185, 2186, 5, 374, 0, 0, 2186, 2193, 3, 134, 67, 0, 2187, 2189, 5, 4, 0, 0, 2188, 2187, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 3, 134, 67, 0, 2191, 2188, 1, 0, 0, 0, 2192, 2195, 1, 0, 0, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2196, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2196, 2197, 5, 375, 0, 0, 2197, 133, 1, 0, 0, 0, 2198, 2212, 3, 354, 177, 0, 2199, 2200, 3, 354, 177, 0, 2200, 2201, 5, 2, 0, 0, 2201, 2206, 3, 270, 135, 0, 2202, 2203, 5, 4, 0, 0, 2203, 2205, 3, 270, 135, 0, 2204, 2202, 1, 0, 0, 0, 2205, 2208, 1, 0, 0, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2209, 1, 0, 0, 0, 2208, 2206, 1, 0, 0, 0, 2209, 2210, 5, 3, 0, 0, 2210, 2212, 1, 0, 0, 0, 2211, 2198, 1, 0, 0, 0, 2211, 2199, 1, 0, 0, 0, 2212, 135, 1, 0, 0, 0, 2213, 2214, 5, 123, 0, 0, 2214, 2219, 3, 172, 86, 0, 2215, 2216, 5, 4, 0, 0, 2216, 2218, 3, 172, 86, 0, 2217, 2215, 1, 0, 0, 0, 2218, 2221, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2225, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2222, 2224, 3, 168, 84, 0, 2223, 2222, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2229, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2230, 3, 148, 74, 0, 2229, 2228, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2233, 3, 154, 77, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 137, 1, 0, 0, 0, 2234, 2236, 5, 119, 0, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 7, 27, 0, 0, 2238, 2239, 5, 20, 0, 0, 2239, 2242, 5, 201, 0, 0, 2240, 2243, 5, 382, 0, 0, 2241, 2243, 3, 364, 182, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2241, 1, 0, 0, 0, 2243, 2252, 1, 0, 0, 0, 2244, 2246, 5, 119, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 7, 28, 0, 0, 2248, 2249, 5, 20, 0, 0, 2249, 2250, 5, 201, 0, 0, 2250, 2252, 3, 266, 133, 0, 2251, 2235, 1, 0, 0, 0, 2251, 2245, 1, 0, 0, 0, 2252, 139, 1, 0, 0, 0, 2253, 2254, 5, 130, 0, 0, 2254, 2255, 5, 31, 0, 0, 2255, 2260, 3, 142, 71, 0, 2256, 2257, 5, 4, 0, 0, 2257, 2259, 3, 142, 71, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2262, 1, 0, 0, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2293, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2264, 5, 130, 0, 0, 2264, 2265, 5, 31, 0, 0, 2265, 2270, 3, 254, 127, 0, 2266, 2267, 5, 4, 0, 0, 2267, 2269, 3, 254, 127, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2272, 1, 0, 0, 0, 2270, 2268, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2290, 1, 0, 0, 0, 2272, 2270, 1, 0, 0, 0, 2273, 2274, 5, 346, 0, 0, 2274, 2291, 5, 256, 0, 0, 2275, 2276, 5, 346, 0, 0, 2276, 2291, 5, 61, 0, 0, 2277, 2278, 5, 131, 0, 0, 2278, 2279, 5, 271, 0, 0, 2279, 2280, 5, 2, 0, 0, 2280, 2285, 3, 146, 73, 0, 2281, 2282, 5, 4, 0, 0, 2282, 2284, 3, 146, 73, 0, 2283, 2281, 1, 0, 0, 0, 2284, 2287, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2288, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2288, 2289, 5, 3, 0, 0, 2289, 2291, 1, 0, 0, 0, 2290, 2273, 1, 0, 0, 0, 2290, 2275, 1, 0, 0, 0, 2290, 2277, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2293, 1, 0, 0, 0, 2292, 2253, 1, 0, 0, 0, 2292, 2263, 1, 0, 0, 0, 2293, 141, 1, 0, 0, 0, 2294, 2298, 3, 80, 40, 0, 2295, 2298, 3, 144, 72, 0, 2296, 2298, 3, 254, 127, 0, 2297, 2294, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2296, 1, 0, 0, 0, 2298, 143, 1, 0, 0, 0, 2299, 2300, 7, 29, 0, 0, 2300, 2301, 5, 2, 0, 0, 2301, 2306, 3, 146, 73, 0, 2302, 2303, 5, 4, 0, 0, 2303, 2305, 3, 146, 73, 0, 2304, 2302, 1, 0, 0, 0, 2305, 2308, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2309, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2310, 5, 3, 0, 0, 2310, 2331, 1, 0, 0, 0, 2311, 2312, 5, 131, 0, 0, 2312, 2313, 5, 271, 0, 0, 2313, 2316, 5, 2, 0, 0, 2314, 2317, 3, 144, 72, 0, 2315, 2317, 3, 146, 73, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2317, 2325, 1, 0, 0, 0, 2318, 2321, 5, 4, 0, 0, 2319, 2322, 3, 144, 72, 0, 2320, 2322, 3, 146, 73, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2320, 1, 0, 0, 0, 2322, 2324, 1, 0, 0, 0, 2323, 2318, 1, 0, 0, 0, 2324, 2327, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2328, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2328, 2329, 5, 3, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2299, 1, 0, 0, 0, 2330, 2311, 1, 0, 0, 0, 2331, 145, 1, 0, 0, 0, 2332, 2353, 3, 80, 40, 0, 2333, 2353, 3, 254, 127, 0, 2334, 2349, 5, 2, 0, 0, 2335, 2338, 3, 80, 40, 0, 2336, 2338, 3, 254, 127, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2336, 1, 0, 0, 0, 2338, 2346, 1, 0, 0, 0, 2339, 2342, 5, 4, 0, 0, 2340, 2343, 3, 80, 40, 0, 2341, 2343, 3, 254, 127, 0, 2342, 2340, 1, 0, 0, 0, 2342, 2341, 1, 0, 0, 0, 2343, 2345, 1, 0, 0, 0, 2344, 2339, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2337, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2353, 5, 3, 0, 0, 2352, 2332, 1, 0, 0, 0, 2352, 2333, 1, 0, 0, 0, 2352, 2334, 1, 0, 0, 0, 2353, 147, 1, 0, 0, 0, 2354, 2355, 5, 223, 0, 0, 2355, 2356, 5, 2, 0, 0, 2356, 2357, 3, 242, 121, 0, 2357, 2358, 5, 119, 0, 0, 2358, 2359, 3, 150, 75, 0, 2359, 2360, 5, 140, 0, 0, 2360, 2361, 5, 2, 0, 0, 2361, 2366, 3, 152, 76, 0, 2362, 2363, 5, 4, 0, 0, 2363, 2365, 3, 152, 76, 0, 2364, 2362, 1, 0, 0, 0, 2365, 2368, 1, 0, 0, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2369, 2370, 5, 3, 0, 0, 2370, 2371, 5, 3, 0, 0, 2371, 149, 1, 0, 0, 0, 2372, 2385, 3, 354, 177, 0, 2373, 2374, 5, 2, 0, 0, 2374, 2379, 3, 354, 177, 0, 2375, 2376, 5, 4, 0, 0, 2376, 2378, 3, 354, 177, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2381, 1, 0, 0, 0, 2379, 2377, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2383, 5, 3, 0, 0, 2383, 2385, 1, 0, 0, 0, 2384, 2372, 1, 0, 0, 0, 2384, 2373, 1, 0, 0, 0, 2385, 151, 1, 0, 0, 0, 2386, 2391, 3, 254, 127, 0, 2387, 2389, 5, 20, 0, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2392, 3, 354, 177, 0, 2391, 2388, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 153, 1, 0, 0, 0, 2393, 2396, 5, 327, 0, 0, 2394, 2395, 7, 30, 0, 0, 2395, 2397, 5, 199, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2401, 5, 2, 0, 0, 2399, 2402, 3, 156, 78, 0, 2400, 2402, 3, 158, 79, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2400, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2408, 5, 3, 0, 0, 2404, 2406, 5, 20, 0, 0, 2405, 2404, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 3, 354, 177, 0, 2408, 2405, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 155, 1, 0, 0, 0, 2410, 2411, 3, 354, 177, 0, 2411, 2412, 5, 119, 0, 0, 2412, 2413, 3, 354, 177, 0, 2413, 2414, 5, 140, 0, 0, 2414, 2415, 5, 2, 0, 0, 2415, 2420, 3, 162, 81, 0, 2416, 2417, 5, 4, 0, 0, 2417, 2419, 3, 162, 81, 0, 2418, 2416, 1, 0, 0, 0, 2419, 2422, 1, 0, 0, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2420, 1, 0, 0, 0, 2423, 2424, 5, 3, 0, 0, 2424, 157, 1, 0, 0, 0, 2425, 2426, 5, 2, 0, 0, 2426, 2431, 3, 354, 177, 0, 2427, 2428, 5, 4, 0, 0, 2428, 2430, 3, 354, 177, 0, 2429, 2427, 1, 0, 0, 0, 2430, 2433, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2434, 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2434, 2435, 5, 3, 0, 0, 2435, 2436, 5, 119, 0, 0, 2436, 2437, 3, 354, 177, 0, 2437, 2438, 5, 140, 0, 0, 2438, 2439, 5, 2, 0, 0, 2439, 2444, 3, 160, 80, 0, 2440, 2441, 5, 4, 0, 0, 2441, 2443, 3, 160, 80, 0, 2442, 2440, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2447, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2447, 2448, 5, 3, 0, 0, 2448, 159, 1, 0, 0, 0, 2449, 2450, 5, 2, 0, 0, 2450, 2455, 3, 222, 111, 0, 2451, 2452, 5, 4, 0, 0, 2452, 2454, 3, 222, 111, 0, 2453, 2451, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2458, 1, 0, 0, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2463, 5, 3, 0, 0, 2459, 2461, 5, 20, 0, 0, 2460, 2459, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2464, 3, 354, 177, 0, 2463, 2460, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 161, 1, 0, 0, 0, 2465, 2470, 3, 222, 111, 0, 2466, 2468, 5, 20, 0, 0, 2467, 2466, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 3, 354, 177, 0, 2470, 2467, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 163, 1, 0, 0, 0, 2472, 2473, 5, 137, 0, 0, 2473, 2474, 5, 197, 0, 0, 2474, 2475, 5, 105, 0, 0, 2475, 165, 1, 0, 0, 0, 2476, 2477, 5, 137, 0, 0, 2477, 2478, 5, 105, 0, 0, 2478, 167, 1, 0, 0, 0, 2479, 2480, 5, 158, 0, 0, 2480, 2482, 5, 338, 0, 0, 2481, 2483, 5, 211, 0, 0, 2482, 2481, 1, 0, 0, 0, 2482, 2483, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 3, 76, 38, 0, 2485, 2494, 5, 2, 0, 0, 2486, 2491, 3, 254, 127, 0, 2487, 2488, 5, 4, 0, 0, 2488, 2490, 3, 254, 127, 0, 2489, 2487, 1, 0, 0, 0, 2490, 2493, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2494, 2486, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 5, 3, 0, 0, 2497, 2509, 3, 216, 108, 0, 2498, 2500, 5, 20, 0, 0, 2499, 2498, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2506, 3, 354, 177, 0, 2502, 2503, 5, 4, 0, 0, 2503, 2505, 3, 354, 177, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2508, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2509, 2499, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 169, 1, 0, 0, 0, 2511, 2512, 7, 31, 0, 0, 2512, 171, 1, 0, 0, 0, 2513, 2527, 3, 72, 36, 0, 2514, 2516, 5, 158, 0, 0, 2515, 2514, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2523, 3, 196, 98, 0, 2518, 2522, 3, 174, 87, 0, 2519, 2522, 3, 148, 74, 0, 2520, 2522, 3, 154, 77, 0, 2521, 2518, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2521, 2520, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2513, 1, 0, 0, 0, 2526, 2515, 1, 0, 0, 0, 2527, 173, 1, 0, 0, 0, 2528, 2529, 3, 176, 88, 0, 2529, 2531, 5, 155, 0, 0, 2530, 2532, 5, 158, 0, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 3, 196, 98, 0, 2534, 2536, 3, 178, 89, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2546, 1, 0, 0, 0, 2537, 2538, 5, 194, 0, 0, 2538, 2539, 3, 176, 88, 0, 2539, 2541, 5, 155, 0, 0, 2540, 2542, 5, 158, 0, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2544, 3, 196, 98, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2528, 1, 0, 0, 0, 2545, 2537, 1, 0, 0, 0, 2546, 175, 1, 0, 0, 0, 2547, 2549, 5, 144, 0, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2564, 1, 0, 0, 0, 2550, 2564, 5, 60, 0, 0, 2551, 2553, 5, 161, 0, 0, 2552, 2554, 5, 211, 0, 0, 2553, 2552, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2564, 1, 0, 0, 0, 2555, 2557, 5, 161, 0, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2564, 7, 32, 0, 0, 2559, 2561, 7, 33, 0, 0, 2560, 2562, 5, 211, 0, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 1, 0, 0, 0, 2563, 2548, 1, 0, 0, 0, 2563, 2550, 1, 0, 0, 0, 2563, 2551, 1, 0, 0, 0, 2563, 2556, 1, 0, 0, 0, 2563, 2559, 1, 0, 0, 0, 2564, 177, 1, 0, 0, 0, 2565, 2572, 5, 203, 0, 0, 2566, 2573, 3, 262, 131, 0, 2567, 2570, 3, 84, 42, 0, 2568, 2569, 5, 352, 0, 0, 2569, 2571, 3, 84, 42, 0, 2570, 2568, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2566, 1, 0, 0, 0, 2572, 2567, 1, 0, 0, 0, 2573, 2577, 1, 0, 0, 0, 2574, 2575, 5, 332, 0, 0, 2575, 2577, 3, 184, 92, 0, 2576, 2565, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2577, 179, 1, 0, 0, 0, 2578, 2579, 5, 295, 0, 0, 2579, 2581, 5, 2, 0, 0, 2580, 2582, 3, 182, 91, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2588, 5, 3, 0, 0, 2584, 2585, 5, 243, 0, 0, 2585, 2586, 5, 2, 0, 0, 2586, 2587, 5, 382, 0, 0, 2587, 2589, 5, 3, 0, 0, 2588, 2584, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 181, 1, 0, 0, 0, 2590, 2592, 5, 362, 0, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2594, 7, 34, 0, 0, 2594, 2615, 5, 222, 0, 0, 2595, 2596, 3, 254, 127, 0, 2596, 2597, 5, 258, 0, 0, 2597, 2615, 1, 0, 0, 0, 2598, 2599, 5, 29, 0, 0, 2599, 2600, 5, 382, 0, 0, 2600, 2601, 5, 210, 0, 0, 2601, 2602, 5, 201, 0, 0, 2602, 2611, 5, 382, 0, 0, 2603, 2609, 5, 203, 0, 0, 2604, 2610, 3, 354, 177, 0, 2605, 2606, 3, 348, 174, 0, 2606, 2607, 5, 2, 0, 0, 2607, 2608, 5, 3, 0, 0, 2608, 2610, 1, 0, 0, 0, 2609, 2604, 1, 0, 0, 0, 2609, 2605, 1, 0, 0, 0, 2610, 2612, 1, 0, 0, 0, 2611, 2603, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2615, 1, 0, 0, 0, 2613, 2615, 3, 254, 127, 0, 2614, 2591, 1, 0, 0, 0, 2614, 2595, 1, 0, 0, 0, 2614, 2598, 1, 0, 0, 0, 2614, 2613, 1, 0, 0, 0, 2615, 183, 1, 0, 0, 0, 2616, 2617, 5, 2, 0, 0, 2617, 2618, 3, 186, 93, 0, 2618, 2619, 5, 3, 0, 0, 2619, 185, 1, 0, 0, 0, 2620, 2625, 3, 350, 175, 0, 2621, 2622, 5, 4, 0, 0, 2622, 2624, 3, 350, 175, 0, 2623, 2621, 1, 0, 0, 0, 2624, 2627, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 187, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2628, 2629, 5, 2, 0, 0, 2629, 2634, 3, 190, 95, 0, 2630, 2631, 5, 4, 0, 0, 2631, 2633, 3, 190, 95, 0, 2632, 2630, 1, 0, 0, 0, 2633, 2636, 1, 0, 0, 0, 2634, 2632, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2637, 1, 0, 0, 0, 2636, 2634, 1, 0, 0, 0, 2637, 2638, 5, 3, 0, 0, 2638, 189, 1, 0, 0, 0, 2639, 2641, 3, 350, 175, 0, 2640, 2642, 7, 25, 0, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 191, 1, 0, 0, 0, 2643, 2644, 5, 2, 0, 0, 2644, 2649, 3, 194, 97, 0, 2645, 2646, 5, 4, 0, 0, 2646, 2648, 3, 194, 97, 0, 2647, 2645, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2652, 1, 0, 0, 0, 2651, 2649, 1, 0, 0, 0, 2652, 2653, 5, 3, 0, 0, 2653, 193, 1, 0, 0, 0, 2654, 2657, 3, 88, 44, 0, 2655, 2656, 5, 51, 0, 0, 2656, 2658, 3, 364, 182, 0, 2657, 2655, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 195, 1, 0, 0, 0, 2659, 2663, 3, 72, 36, 0, 2660, 2663, 3, 76, 38, 0, 2661, 2663, 3, 90, 45, 0, 2662, 2659, 1, 0, 0, 0, 2662, 2660, 1, 0, 0, 0, 2662, 2661, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 138, 69, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2669, 3, 180, 90, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2671, 3, 216, 108, 0, 2671, 2691, 1, 0, 0, 0, 2672, 2674, 3, 198, 99, 0, 2673, 2675, 3, 180, 90, 0, 2674, 2673, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 3, 216, 108, 0, 2677, 2691, 1, 0, 0, 0, 2678, 2679, 5, 2, 0, 0, 2679, 2680, 3, 172, 86, 0, 2680, 2682, 5, 3, 0, 0, 2681, 2683, 3, 180, 90, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 3, 216, 108, 0, 2685, 2691, 1, 0, 0, 0, 2686, 2687, 3, 200, 100, 0, 2687, 2688, 3, 216, 108, 0, 2688, 2691, 1, 0, 0, 0, 2689, 2691, 3, 212, 106, 0, 2690, 2662, 1, 0, 0, 0, 2690, 2672, 1, 0, 0, 0, 2690, 2678, 1, 0, 0, 0, 2690, 2686, 1, 0, 0, 0, 2690, 2689, 1, 0, 0, 0, 2691, 197, 1, 0, 0, 0, 2692, 2693, 5, 2, 0, 0, 2693, 2694, 3, 16, 8, 0, 2694, 2695, 5, 3, 0, 0, 2695, 199, 1, 0, 0, 0, 2696, 2697, 5, 333, 0, 0, 2697, 2702, 3, 254, 127, 0, 2698, 2699, 5, 4, 0, 0, 2699, 2701, 3, 254, 127, 0, 2700, 2698, 1, 0, 0, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 201, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2706, 5, 293, 0, 0, 2706, 2708, 3, 72, 36, 0, 2707, 2709, 3, 204, 102, 0, 2708, 2707, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2725, 1, 0, 0, 0, 2710, 2711, 5, 293, 0, 0, 2711, 2712, 5, 2, 0, 0, 2712, 2713, 3, 72, 36, 0, 2713, 2715, 5, 3, 0, 0, 2714, 2716, 3, 204, 102, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2725, 1, 0, 0, 0, 2717, 2718, 5, 293, 0, 0, 2718, 2719, 5, 2, 0, 0, 2719, 2720, 3, 16, 8, 0, 2720, 2722, 5, 3, 0, 0, 2721, 2723, 3, 204, 102, 0, 2722, 2721, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2705, 1, 0, 0, 0, 2724, 2710, 1, 0, 0, 0, 2724, 2717, 1, 0, 0, 0, 2725, 203, 1, 0, 0, 0, 2726, 2727, 5, 346, 0, 0, 2727, 2728, 5, 274, 0, 0, 2728, 2746, 5, 217, 0, 0, 2729, 2730, 7, 35, 0, 0, 2730, 2743, 5, 31, 0, 0, 2731, 2732, 5, 2, 0, 0, 2732, 2737, 3, 254, 127, 0, 2733, 2734, 5, 4, 0, 0, 2734, 2736, 3, 254, 127, 0, 2735, 2733, 1, 0, 0, 0, 2736, 2739, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2737, 1, 0, 0, 0, 2740, 2741, 5, 3, 0, 0, 2741, 2744, 1, 0, 0, 0, 2742, 2744, 3, 254, 127, 0, 2743, 2731, 1, 0, 0, 0, 2743, 2742, 1, 0, 0, 0, 2744, 2746, 1, 0, 0, 0, 2745, 2726, 1, 0, 0, 0, 2745, 2729, 1, 0, 0, 0, 2746, 2756, 1, 0, 0, 0, 2747, 2748, 7, 36, 0, 0, 2748, 2754, 5, 31, 0, 0, 2749, 2750, 5, 2, 0, 0, 2750, 2751, 3, 96, 48, 0, 2751, 2752, 5, 3, 0, 0, 2752, 2755, 1, 0, 0, 0, 2753, 2755, 3, 104, 52, 0, 2754, 2749, 1, 0, 0, 0, 2754, 2753, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2747, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 205, 1, 0, 0, 0, 2758, 2759, 3, 354, 177, 0, 2759, 2760, 5, 373, 0, 0, 2760, 2761, 3, 202, 101, 0, 2761, 207, 1, 0, 0, 0, 2762, 2765, 3, 202, 101, 0, 2763, 2765, 3, 206, 103, 0, 2764, 2762, 1, 0, 0, 0, 2764, 2763, 1, 0, 0, 0, 2765, 209, 1, 0, 0, 0, 2766, 2769, 3, 208, 104, 0, 2767, 2769, 3, 258, 129, 0, 2768, 2766, 1, 0, 0, 0, 2768, 2767, 1, 0, 0, 0, 2769, 211, 1, 0, 0, 0, 2770, 2771, 3, 214, 107, 0, 2771, 2772, 3, 216, 108, 0, 2772, 213, 1, 0, 0, 0, 2773, 2774, 3, 344, 172, 0, 2774, 2783, 5, 2, 0, 0, 2775, 2780, 3, 210, 105, 0, 2776, 2777, 5, 4, 0, 0, 2777, 2779, 3, 210, 105, 0, 2778, 2776, 1, 0, 0, 0, 2779, 2782, 1, 0, 0, 0, 2780, 2778, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2784, 1, 0, 0, 0, 2782, 2780, 1, 0, 0, 0, 2783, 2775, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 5, 3, 0, 0, 2786, 215, 1, 0, 0, 0, 2787, 2789, 5, 20, 0, 0, 2788, 2787, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 2792, 3, 356, 178, 0, 2791, 2793, 3, 184, 92, 0, 2792, 2791, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2795, 1, 0, 0, 0, 2794, 2788, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 217, 1, 0, 0, 0, 2796, 2797, 5, 257, 0, 0, 2797, 2798, 5, 121, 0, 0, 2798, 2799, 5, 266, 0, 0, 2799, 2803, 3, 364, 182, 0, 2800, 2801, 5, 346, 0, 0, 2801, 2802, 5, 267, 0, 0, 2802, 2804, 3, 42, 21, 0, 2803, 2800, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2846, 1, 0, 0, 0, 2805, 2806, 5, 257, 0, 0, 2806, 2807, 5, 121, 0, 0, 2807, 2817, 5, 85, 0, 0, 2808, 2809, 5, 113, 0, 0, 2809, 2810, 5, 299, 0, 0, 2810, 2811, 5, 31, 0, 0, 2811, 2815, 3, 364, 182, 0, 2812, 2813, 5, 101, 0, 0, 2813, 2814, 5, 31, 0, 0, 2814, 2816, 3, 364, 182, 0, 2815, 2812, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 1, 0, 0, 0, 2817, 2808, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2824, 1, 0, 0, 0, 2819, 2820, 5, 48, 0, 0, 2820, 2821, 5, 154, 0, 0, 2821, 2822, 5, 299, 0, 0, 2822, 2823, 5, 31, 0, 0, 2823, 2825, 3, 364, 182, 0, 2824, 2819, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2831, 1, 0, 0, 0, 2826, 2827, 5, 177, 0, 0, 2827, 2828, 5, 156, 0, 0, 2828, 2829, 5, 299, 0, 0, 2829, 2830, 5, 31, 0, 0, 2830, 2832, 3, 364, 182, 0, 2831, 2826, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2837, 1, 0, 0, 0, 2833, 2834, 5, 166, 0, 0, 2834, 2835, 5, 299, 0, 0, 2835, 2836, 5, 31, 0, 0, 2836, 2838, 3, 364, 182, 0, 2837, 2833, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2843, 1, 0, 0, 0, 2839, 2840, 5, 198, 0, 0, 2840, 2841, 5, 83, 0, 0, 2841, 2842, 5, 20, 0, 0, 2842, 2844, 3, 364, 182, 0, 2843, 2839, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2846, 1, 0, 0, 0, 2845, 2796, 1, 0, 0, 0, 2845, 2805, 1, 0, 0, 0, 2846, 219, 1, 0, 0, 0, 2847, 2852, 3, 222, 111, 0, 2848, 2849, 5, 4, 0, 0, 2849, 2851, 3, 222, 111, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2854, 1, 0, 0, 0, 2852, 2850, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 221, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2855, 2860, 3, 350, 175, 0, 2856, 2857, 5, 5, 0, 0, 2857, 2859, 3, 350, 175, 0, 2858, 2856, 1, 0, 0, 0, 2859, 2862, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 223, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2870, 3, 222, 111, 0, 2864, 2865, 4, 112, 5, 0, 2865, 2866, 3, 222, 111, 0, 2866, 2867, 5, 5, 0, 0, 2867, 2868, 3, 78, 39, 0, 2868, 2870, 1, 0, 0, 0, 2869, 2863, 1, 0, 0, 0, 2869, 2864, 1, 0, 0, 0, 2870, 225, 1, 0, 0, 0, 2871, 2876, 3, 228, 114, 0, 2872, 2873, 5, 4, 0, 0, 2873, 2875, 3, 228, 114, 0, 2874, 2872, 1, 0, 0, 0, 2875, 2878, 1, 0, 0, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 227, 1, 0, 0, 0, 2878, 2876, 1, 0, 0, 0, 2879, 2882, 3, 222, 111, 0, 2880, 2881, 5, 207, 0, 0, 2881, 2883, 3, 42, 21, 0, 2882, 2880, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 229, 1, 0, 0, 0, 2884, 2885, 3, 350, 175, 0, 2885, 2886, 5, 5, 0, 0, 2886, 2888, 1, 0, 0, 0, 2887, 2884, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2890, 3, 350, 175, 0, 2890, 231, 1, 0, 0, 0, 2891, 2892, 3, 350, 175, 0, 2892, 2893, 5, 5, 0, 0, 2893, 2895, 1, 0, 0, 0, 2894, 2891, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2897, 3, 350, 175, 0, 2897, 233, 1, 0, 0, 0, 2898, 2899, 3, 80, 40, 0, 2899, 235, 1, 0, 0, 0, 2900, 2901, 3, 254, 127, 0, 2901, 237, 1, 0, 0, 0, 2902, 2903, 3, 348, 174, 0, 2903, 2904, 5, 5, 0, 0, 2904, 2906, 1, 0, 0, 0, 2905, 2902, 1, 0, 0, 0, 2906, 2909, 1, 0, 0, 0, 2907, 2905, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2910, 1, 0, 0, 0, 2909, 2907, 1, 0, 0, 0, 2910, 2911, 5, 363, 0, 0, 2911, 239, 1, 0, 0, 0, 2912, 2916, 3, 238, 119, 0, 2913, 2916, 3, 234, 117, 0, 2914, 2916, 3, 236, 118, 0, 2915, 2912, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2914, 1, 0, 0, 0, 2916, 2924, 1, 0, 0, 0, 2917, 2919, 5, 20, 0, 0, 2918, 2917, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2923, 3, 350, 175, 0, 2921, 2923, 3, 184, 92, 0, 2922, 2920, 1, 0, 0, 0, 2922, 2921, 1, 0, 0, 0, 2923, 2925, 1, 0, 0, 0, 2924, 2918, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 241, 1, 0, 0, 0, 2926, 2931, 3, 240, 120, 0, 2927, 2928, 5, 4, 0, 0, 2928, 2930, 3, 240, 120, 0, 2929, 2927, 1, 0, 0, 0, 2930, 2933, 1, 0, 0, 0, 2931, 2929, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 243, 1, 0, 0, 0, 2933, 2931, 1, 0, 0, 0, 2934, 2935, 3, 242, 121, 0, 2935, 245, 1, 0, 0, 0, 2936, 2937, 5, 2, 0, 0, 2937, 2942, 3, 248, 124, 0, 2938, 2939, 5, 4, 0, 0, 2939, 2941, 3, 248, 124, 0, 2940, 2938, 1, 0, 0, 0, 2941, 2944, 1, 0, 0, 0, 2942, 2940, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2945, 1, 0, 0, 0, 2944, 2942, 1, 0, 0, 0, 2945, 2946, 5, 3, 0, 0, 2946, 247, 1, 0, 0, 0, 2947, 2950, 3, 250, 125, 0, 2948, 2950, 3, 320, 160, 0, 2949, 2947, 1, 0, 0, 0, 2949, 2948, 1, 0, 0, 0, 2950, 249, 1, 0, 0, 0, 2951, 2965, 3, 348, 174, 0, 2952, 2953, 3, 354, 177, 0, 2953, 2954, 5, 2, 0, 0, 2954, 2959, 3, 252, 126, 0, 2955, 2956, 5, 4, 0, 0, 2956, 2958, 3, 252, 126, 0, 2957, 2955, 1, 0, 0, 0, 2958, 2961, 1, 0, 0, 0, 2959, 2957, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 2962, 1, 0, 0, 0, 2961, 2959, 1, 0, 0, 0, 2962, 2963, 5, 3, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2951, 1, 0, 0, 0, 2964, 2952, 1, 0, 0, 0, 2965, 251, 1, 0, 0, 0, 2966, 2969, 3, 348, 174, 0, 2967, 2969, 3, 274, 137, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2967, 1, 0, 0, 0, 2969, 253, 1, 0, 0, 0, 2970, 2971, 3, 262, 131, 0, 2971, 255, 1, 0, 0, 0, 2972, 2973, 3, 354, 177, 0, 2973, 2974, 5, 373, 0, 0, 2974, 2975, 3, 254, 127, 0, 2975, 257, 1, 0, 0, 0, 2976, 2979, 3, 254, 127, 0, 2977, 2979, 3, 256, 128, 0, 2978, 2976, 1, 0, 0, 0, 2978, 2977, 1, 0, 0, 0, 2979, 259, 1, 0, 0, 0, 2980, 2985, 3, 254, 127, 0, 2981, 2982, 5, 4, 0, 0, 2982, 2984, 3, 254, 127, 0, 2983, 2981, 1, 0, 0, 0, 2984, 2987, 1, 0, 0, 0, 2985, 2983, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 261, 1, 0, 0, 0, 2987, 2985, 1, 0, 0, 0, 2988, 2989, 6, 131, -1, 0, 2989, 2990, 7, 37, 0, 0, 2990, 3001, 3, 262, 131, 5, 2991, 2992, 5, 105, 0, 0, 2992, 2993, 5, 2, 0, 0, 2993, 2994, 3, 16, 8, 0, 2994, 2995, 5, 3, 0, 0, 2995, 3001, 1, 0, 0, 0, 2996, 2998, 3, 266, 133, 0, 2997, 2999, 3, 264, 132, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3001, 1, 0, 0, 0, 3000, 2988, 1, 0, 0, 0, 3000, 2991, 1, 0, 0, 0, 3000, 2996, 1, 0, 0, 0, 3001, 3010, 1, 0, 0, 0, 3002, 3003, 10, 2, 0, 0, 3003, 3004, 5, 14, 0, 0, 3004, 3009, 3, 262, 131, 3, 3005, 3006, 10, 1, 0, 0, 3006, 3007, 5, 208, 0, 0, 3007, 3009, 3, 262, 131, 2, 3008, 3002, 1, 0, 0, 0, 3008, 3005, 1, 0, 0, 0, 3009, 3012, 1, 0, 0, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 263, 1, 0, 0, 0, 3012, 3010, 1, 0, 0, 0, 3013, 3015, 5, 197, 0, 0, 3014, 3013, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 5, 24, 0, 0, 3017, 3018, 3, 266, 133, 0, 3018, 3019, 5, 14, 0, 0, 3019, 3020, 3, 266, 133, 0, 3020, 3096, 1, 0, 0, 0, 3021, 3023, 5, 197, 0, 0, 3022, 3021, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 5, 140, 0, 0, 3025, 3026, 5, 2, 0, 0, 3026, 3031, 3, 254, 127, 0, 3027, 3028, 5, 4, 0, 0, 3028, 3030, 3, 254, 127, 0, 3029, 3027, 1, 0, 0, 0, 3030, 3033, 1, 0, 0, 0, 3031, 3029, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3034, 1, 0, 0, 0, 3033, 3031, 1, 0, 0, 0, 3034, 3035, 5, 3, 0, 0, 3035, 3096, 1, 0, 0, 0, 3036, 3038, 5, 197, 0, 0, 3037, 3036, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3040, 5, 140, 0, 0, 3040, 3041, 5, 2, 0, 0, 3041, 3042, 3, 16, 8, 0, 3042, 3043, 5, 3, 0, 0, 3043, 3096, 1, 0, 0, 0, 3044, 3046, 5, 197, 0, 0, 3045, 3044, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 7, 38, 0, 0, 3048, 3096, 3, 266, 133, 0, 3049, 3051, 5, 197, 0, 0, 3050, 3049, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3053, 7, 39, 0, 0, 3053, 3067, 7, 40, 0, 0, 3054, 3055, 5, 2, 0, 0, 3055, 3068, 5, 3, 0, 0, 3056, 3057, 5, 2, 0, 0, 3057, 3062, 3, 254, 127, 0, 3058, 3059, 5, 4, 0, 0, 3059, 3061, 3, 254, 127, 0, 3060, 3058, 1, 0, 0, 0, 3061, 3064, 1, 0, 0, 0, 3062, 3060, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3065, 1, 0, 0, 0, 3064, 3062, 1, 0, 0, 0, 3065, 3066, 5, 3, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 3054, 1, 0, 0, 0, 3067, 3056, 1, 0, 0, 0, 3068, 3096, 1, 0, 0, 0, 3069, 3071, 5, 197, 0, 0, 3070, 3069, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 7, 39, 0, 0, 3073, 3076, 3, 266, 133, 0, 3074, 3075, 5, 100, 0, 0, 3075, 3077, 3, 364, 182, 0, 3076, 3074, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3096, 1, 0, 0, 0, 3078, 3080, 5, 153, 0, 0, 3079, 3081, 5, 197, 0, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3096, 5, 198, 0, 0, 3083, 3085, 5, 153, 0, 0, 3084, 3086, 5, 197, 0, 0, 3085, 3084, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3096, 7, 41, 0, 0, 3088, 3090, 5, 153, 0, 0, 3089, 3091, 5, 197, 0, 0, 3090, 3089, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3093, 5, 92, 0, 0, 3093, 3094, 5, 123, 0, 0, 3094, 3096, 3, 266, 133, 0, 3095, 3014, 1, 0, 0, 0, 3095, 3022, 1, 0, 0, 0, 3095, 3037, 1, 0, 0, 0, 3095, 3045, 1, 0, 0, 0, 3095, 3050, 1, 0, 0, 0, 3095, 3070, 1, 0, 0, 0, 3095, 3078, 1, 0, 0, 0, 3095, 3083, 1, 0, 0, 0, 3095, 3088, 1, 0, 0, 0, 3096, 265, 1, 0, 0, 0, 3097, 3098, 6, 133, -1, 0, 3098, 3102, 3, 270, 135, 0, 3099, 3100, 7, 42, 0, 0, 3100, 3102, 3, 266, 133, 7, 3101, 3097, 1, 0, 0, 0, 3101, 3099, 1, 0, 0, 0, 3102, 3124, 1, 0, 0, 0, 3103, 3104, 10, 6, 0, 0, 3104, 3105, 7, 43, 0, 0, 3105, 3123, 3, 266, 133, 7, 3106, 3107, 10, 5, 0, 0, 3107, 3108, 7, 44, 0, 0, 3108, 3123, 3, 266, 133, 6, 3109, 3110, 10, 4, 0, 0, 3110, 3111, 5, 367, 0, 0, 3111, 3123, 3, 266, 133, 5, 3112, 3113, 10, 3, 0, 0, 3113, 3114, 5, 370, 0, 0, 3114, 3123, 3, 266, 133, 4, 3115, 3116, 10, 2, 0, 0, 3116, 3117, 5, 368, 0, 0, 3117, 3123, 3, 266, 133, 3, 3118, 3119, 10, 1, 0, 0, 3119, 3120, 3, 276, 138, 0, 3120, 3121, 3, 266, 133, 2, 3121, 3123, 1, 0, 0, 0, 3122, 3103, 1, 0, 0, 0, 3122, 3106, 1, 0, 0, 0, 3122, 3109, 1, 0, 0, 0, 3122, 3112, 1, 0, 0, 0, 3122, 3115, 1, 0, 0, 0, 3122, 3118, 1, 0, 0, 0, 3123, 3126, 1, 0, 0, 0, 3124, 3122, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 267, 1, 0, 0, 0, 3126, 3124, 1, 0, 0, 0, 3127, 3128, 7, 45, 0, 0, 3128, 269, 1, 0, 0, 0, 3129, 3130, 6, 135, -1, 0, 3130, 3379, 7, 46, 0, 0, 3131, 3132, 7, 47, 0, 0, 3132, 3135, 5, 2, 0, 0, 3133, 3136, 3, 268, 134, 0, 3134, 3136, 3, 364, 182, 0, 3135, 3133, 1, 0, 0, 0, 3135, 3134, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 5, 4, 0, 0, 3138, 3139, 3, 266, 133, 0, 3139, 3140, 5, 4, 0, 0, 3140, 3141, 3, 266, 133, 0, 3141, 3142, 5, 3, 0, 0, 3142, 3379, 1, 0, 0, 0, 3143, 3144, 7, 48, 0, 0, 3144, 3147, 5, 2, 0, 0, 3145, 3148, 3, 268, 134, 0, 3146, 3148, 3, 364, 182, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3146, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 4, 0, 0, 3150, 3151, 3, 266, 133, 0, 3151, 3152, 5, 4, 0, 0, 3152, 3153, 3, 266, 133, 0, 3153, 3154, 5, 3, 0, 0, 3154, 3379, 1, 0, 0, 0, 3155, 3157, 5, 35, 0, 0, 3156, 3158, 3, 330, 165, 0, 3157, 3156, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3163, 1, 0, 0, 0, 3161, 3162, 5, 97, 0, 0, 3162, 3164, 3, 254, 127, 0, 3163, 3161, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3166, 5, 99, 0, 0, 3166, 3379, 1, 0, 0, 0, 3167, 3168, 5, 35, 0, 0, 3168, 3170, 3, 254, 127, 0, 3169, 3171, 3, 330, 165, 0, 3170, 3169, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3170, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3176, 1, 0, 0, 0, 3174, 3175, 5, 97, 0, 0, 3175, 3177, 3, 254, 127, 0, 3176, 3174, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 5, 99, 0, 0, 3179, 3379, 1, 0, 0, 0, 3180, 3181, 7, 49, 0, 0, 3181, 3182, 5, 2, 0, 0, 3182, 3183, 3, 254, 127, 0, 3183, 3184, 5, 20, 0, 0, 3184, 3185, 3, 304, 152, 0, 3185, 3186, 5, 3, 0, 0, 3186, 3379, 1, 0, 0, 0, 3187, 3188, 5, 286, 0, 0, 3188, 3197, 5, 2, 0, 0, 3189, 3194, 3, 240, 120, 0, 3190, 3191, 5, 4, 0, 0, 3191, 3193, 3, 240, 120, 0, 3192, 3190, 1, 0, 0, 0, 3193, 3196, 1, 0, 0, 0, 3194, 3192, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3198, 1, 0, 0, 0, 3196, 3194, 1, 0, 0, 0, 3197, 3189, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3379, 5, 3, 0, 0, 3200, 3201, 5, 116, 0, 0, 3201, 3202, 5, 2, 0, 0, 3202, 3205, 3, 254, 127, 0, 3203, 3204, 5, 138, 0, 0, 3204, 3206, 5, 199, 0, 0, 3205, 3203, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3208, 5, 3, 0, 0, 3208, 3379, 1, 0, 0, 0, 3209, 3210, 5, 17, 0, 0, 3210, 3211, 5, 2, 0, 0, 3211, 3214, 3, 254, 127, 0, 3212, 3213, 5, 138, 0, 0, 3213, 3215, 5, 199, 0, 0, 3214, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3217, 5, 3, 0, 0, 3217, 3379, 1, 0, 0, 0, 3218, 3219, 5, 157, 0, 0, 3219, 3220, 5, 2, 0, 0, 3220, 3223, 3, 254, 127, 0, 3221, 3222, 5, 138, 0, 0, 3222, 3224, 5, 199, 0, 0, 3223, 3221, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3226, 5, 3, 0, 0, 3226, 3379, 1, 0, 0, 0, 3227, 3228, 5, 225, 0, 0, 3228, 3229, 5, 2, 0, 0, 3229, 3230, 3, 266, 133, 0, 3230, 3231, 5, 140, 0, 0, 3231, 3232, 3, 266, 133, 0, 3232, 3233, 5, 3, 0, 0, 3233, 3379, 1, 0, 0, 0, 3234, 3379, 3, 274, 137, 0, 3235, 3379, 5, 363, 0, 0, 3236, 3237, 3, 348, 174, 0, 3237, 3238, 5, 5, 0, 0, 3238, 3239, 5, 363, 0, 0, 3239, 3379, 1, 0, 0, 0, 3240, 3241, 5, 2, 0, 0, 3241, 3244, 3, 240, 120, 0, 3242, 3243, 5, 4, 0, 0, 3243, 3245, 3, 240, 120, 0, 3244, 3242, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3244, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3249, 5, 3, 0, 0, 3249, 3379, 1, 0, 0, 0, 3250, 3251, 5, 2, 0, 0, 3251, 3252, 3, 16, 8, 0, 3252, 3253, 5, 3, 0, 0, 3253, 3379, 1, 0, 0, 0, 3254, 3255, 5, 136, 0, 0, 3255, 3256, 5, 2, 0, 0, 3256, 3257, 3, 254, 127, 0, 3257, 3258, 5, 3, 0, 0, 3258, 3379, 1, 0, 0, 0, 3259, 3260, 3, 344, 172, 0, 3260, 3272, 5, 2, 0, 0, 3261, 3263, 3, 170, 85, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3269, 3, 258, 129, 0, 3265, 3266, 5, 4, 0, 0, 3266, 3268, 3, 258, 129, 0, 3267, 3265, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3273, 1, 0, 0, 0, 3271, 3269, 1, 0, 0, 0, 3272, 3262, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3281, 5, 3, 0, 0, 3275, 3276, 5, 114, 0, 0, 3276, 3277, 5, 2, 0, 0, 3277, 3278, 5, 344, 0, 0, 3278, 3279, 3, 262, 131, 0, 3279, 3280, 5, 3, 0, 0, 3280, 3282, 1, 0, 0, 0, 3281, 3275, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3285, 1, 0, 0, 0, 3283, 3284, 7, 50, 0, 0, 3284, 3286, 5, 199, 0, 0, 3285, 3283, 1, 0, 0, 0, 3285, 3286, 1, 0, 0, 0, 3286, 3289, 1, 0, 0, 0, 3287, 3288, 5, 213, 0, 0, 3288, 3290, 3, 336, 168, 0, 3289, 3287, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3379, 1, 0, 0, 0, 3291, 3292, 3, 354, 177, 0, 3292, 3293, 5, 372, 0, 0, 3293, 3294, 3, 254, 127, 0, 3294, 3379, 1, 0, 0, 0, 3295, 3296, 5, 2, 0, 0, 3296, 3299, 3, 354, 177, 0, 3297, 3298, 5, 4, 0, 0, 3298, 3300, 3, 354, 177, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3299, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3304, 5, 3, 0, 0, 3304, 3305, 5, 372, 0, 0, 3305, 3306, 3, 254, 127, 0, 3306, 3379, 1, 0, 0, 0, 3307, 3379, 3, 82, 41, 0, 3308, 3309, 5, 2, 0, 0, 3309, 3310, 3, 254, 127, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3379, 1, 0, 0, 0, 3312, 3313, 5, 110, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3315, 3, 354, 177, 0, 3315, 3316, 5, 123, 0, 0, 3316, 3317, 3, 266, 133, 0, 3317, 3318, 5, 3, 0, 0, 3318, 3379, 1, 0, 0, 0, 3319, 3320, 7, 51, 0, 0, 3320, 3321, 5, 2, 0, 0, 3321, 3322, 3, 266, 133, 0, 3322, 3323, 7, 52, 0, 0, 3323, 3326, 3, 266, 133, 0, 3324, 3325, 7, 53, 0, 0, 3325, 3327, 3, 266, 133, 0, 3326, 3324, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3329, 5, 3, 0, 0, 3329, 3379, 1, 0, 0, 0, 3330, 3331, 5, 315, 0, 0, 3331, 3333, 5, 2, 0, 0, 3332, 3334, 7, 54, 0, 0, 3333, 3332, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3336, 1, 0, 0, 0, 3335, 3337, 3, 266, 133, 0, 3336, 3335, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3339, 5, 123, 0, 0, 3339, 3340, 3, 266, 133, 0, 3340, 3341, 5, 3, 0, 0, 3341, 3379, 1, 0, 0, 0, 3342, 3343, 5, 215, 0, 0, 3343, 3344, 5, 2, 0, 0, 3344, 3345, 3, 266, 133, 0, 3345, 3346, 5, 224, 0, 0, 3346, 3347, 3, 266, 133, 0, 3347, 3348, 5, 123, 0, 0, 3348, 3351, 3, 266, 133, 0, 3349, 3350, 5, 119, 0, 0, 3350, 3352, 3, 266, 133, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 5, 3, 0, 0, 3354, 3379, 1, 0, 0, 0, 3355, 3356, 7, 55, 0, 0, 3356, 3357, 5, 2, 0, 0, 3357, 3358, 3, 266, 133, 0, 3358, 3359, 5, 3, 0, 0, 3359, 3360, 5, 347, 0, 0, 3360, 3361, 5, 130, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3363, 5, 209, 0, 0, 3363, 3364, 5, 31, 0, 0, 3364, 3365, 3, 104, 52, 0, 3365, 3372, 5, 3, 0, 0, 3366, 3367, 5, 114, 0, 0, 3367, 3368, 5, 2, 0, 0, 3368, 3369, 5, 344, 0, 0, 3369, 3370, 3, 262, 131, 0, 3370, 3371, 5, 3, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3366, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3376, 1, 0, 0, 0, 3374, 3375, 5, 213, 0, 0, 3375, 3377, 3, 336, 168, 0, 3376, 3374, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3379, 1, 0, 0, 0, 3378, 3129, 1, 0, 0, 0, 3378, 3131, 1, 0, 0, 0, 3378, 3143, 1, 0, 0, 0, 3378, 3155, 1, 0, 0, 0, 3378, 3167, 1, 0, 0, 0, 3378, 3180, 1, 0, 0, 0, 3378, 3187, 1, 0, 0, 0, 3378, 3200, 1, 0, 0, 0, 3378, 3209, 1, 0, 0, 0, 3378, 3218, 1, 0, 0, 0, 3378, 3227, 1, 0, 0, 0, 3378, 3234, 1, 0, 0, 0, 3378, 3235, 1, 0, 0, 0, 3378, 3236, 1, 0, 0, 0, 3378, 3240, 1, 0, 0, 0, 3378, 3250, 1, 0, 0, 0, 3378, 3254, 1, 0, 0, 0, 3378, 3259, 1, 0, 0, 0, 3378, 3291, 1, 0, 0, 0, 3378, 3295, 1, 0, 0, 0, 3378, 3307, 1, 0, 0, 0, 3378, 3308, 1, 0, 0, 0, 3378, 3312, 1, 0, 0, 0, 3378, 3319, 1, 0, 0, 0, 3378, 3330, 1, 0, 0, 0, 3378, 3342, 1, 0, 0, 0, 3378, 3355, 1, 0, 0, 0, 3379, 3390, 1, 0, 0, 0, 3380, 3381, 10, 9, 0, 0, 3381, 3382, 5, 6, 0, 0, 3382, 3383, 3, 266, 133, 0, 3383, 3384, 5, 7, 0, 0, 3384, 3389, 1, 0, 0, 0, 3385, 3386, 10, 7, 0, 0, 3386, 3387, 5, 5, 0, 0, 3387, 3389, 3, 354, 177, 0, 3388, 3380, 1, 0, 0, 0, 3388, 3385, 1, 0, 0, 0, 3389, 3392, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 271, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3393, 3401, 5, 71, 0, 0, 3394, 3401, 5, 303, 0, 0, 3395, 3401, 5, 304, 0, 0, 3396, 3401, 5, 305, 0, 0, 3397, 3401, 5, 149, 0, 0, 3398, 3401, 5, 133, 0, 0, 3399, 3401, 3, 354, 177, 0, 3400, 3393, 1, 0, 0, 0, 3400, 3394, 1, 0, 0, 0, 3400, 3395, 1, 0, 0, 0, 3400, 3396, 1, 0, 0, 0, 3400, 3397, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3400, 3399, 1, 0, 0, 0, 3401, 273, 1, 0, 0, 0, 3402, 3418, 5, 198, 0, 0, 3403, 3418, 5, 376, 0, 0, 3404, 3405, 5, 371, 0, 0, 3405, 3418, 3, 354, 177, 0, 3406, 3418, 3, 284, 142, 0, 3407, 3408, 3, 272, 136, 0, 3408, 3409, 3, 364, 182, 0, 3409, 3418, 1, 0, 0, 0, 3410, 3418, 3, 360, 180, 0, 3411, 3418, 3, 282, 141, 0, 3412, 3414, 3, 364, 182, 0, 3413, 3412, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3418, 1, 0, 0, 0, 3417, 3402, 1, 0, 0, 0, 3417, 3403, 1, 0, 0, 0, 3417, 3404, 1, 0, 0, 0, 3417, 3406, 1, 0, 0, 0, 3417, 3407, 1, 0, 0, 0, 3417, 3410, 1, 0, 0, 0, 3417, 3411, 1, 0, 0, 0, 3417, 3413, 1, 0, 0, 0, 3418, 275, 1, 0, 0, 0, 3419, 3420, 7, 56, 0, 0, 3420, 277, 1, 0, 0, 0, 3421, 3422, 7, 57, 0, 0, 3422, 279, 1, 0, 0, 0, 3423, 3424, 7, 58, 0, 0, 3424, 281, 1, 0, 0, 0, 3425, 3426, 7, 59, 0, 0, 3426, 283, 1, 0, 0, 0, 3427, 3430, 5, 149, 0, 0, 3428, 3431, 3, 286, 143, 0, 3429, 3431, 3, 290, 145, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3429, 1, 0, 0, 0, 3431, 285, 1, 0, 0, 0, 3432, 3434, 3, 288, 144, 0, 3433, 3435, 3, 292, 146, 0, 3434, 3433, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 287, 1, 0, 0, 0, 3436, 3437, 3, 294, 147, 0, 3437, 3438, 3, 296, 148, 0, 3438, 3440, 1, 0, 0, 0, 3439, 3436, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 289, 1, 0, 0, 0, 3443, 3446, 3, 292, 146, 0, 3444, 3447, 3, 288, 144, 0, 3445, 3447, 3, 292, 146, 0, 3446, 3444, 1, 0, 0, 0, 3446, 3445, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 291, 1, 0, 0, 0, 3448, 3449, 3, 294, 147, 0, 3449, 3450, 3, 298, 149, 0, 3450, 3451, 5, 309, 0, 0, 3451, 3452, 3, 298, 149, 0, 3452, 293, 1, 0, 0, 0, 3453, 3455, 7, 60, 0, 0, 3454, 3453, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3459, 1, 0, 0, 0, 3456, 3460, 5, 382, 0, 0, 3457, 3460, 5, 384, 0, 0, 3458, 3460, 3, 364, 182, 0, 3459, 3456, 1, 0, 0, 0, 3459, 3457, 1, 0, 0, 0, 3459, 3458, 1, 0, 0, 0, 3460, 295, 1, 0, 0, 0, 3461, 3462, 7, 61, 0, 0, 3462, 297, 1, 0, 0, 0, 3463, 3464, 7, 62, 0, 0, 3464, 299, 1, 0, 0, 0, 3465, 3469, 5, 116, 0, 0, 3466, 3467, 5, 9, 0, 0, 3467, 3469, 3, 350, 175, 0, 3468, 3465, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3469, 301, 1, 0, 0, 0, 3470, 3501, 5, 27, 0, 0, 3471, 3501, 5, 308, 0, 0, 3472, 3501, 5, 32, 0, 0, 3473, 3501, 5, 276, 0, 0, 3474, 3501, 5, 272, 0, 0, 3475, 3501, 5, 150, 0, 0, 3476, 3501, 5, 151, 0, 0, 3477, 3501, 5, 25, 0, 0, 3478, 3501, 5, 174, 0, 0, 3479, 3501, 5, 117, 0, 0, 3480, 3501, 5, 234, 0, 0, 3481, 3501, 5, 95, 0, 0, 3482, 3501, 5, 71, 0, 0, 3483, 3501, 5, 303, 0, 0, 3484, 3501, 5, 305, 0, 0, 3485, 3501, 5, 304, 0, 0, 3486, 3501, 5, 285, 0, 0, 3487, 3501, 5, 41, 0, 0, 3488, 3501, 5, 40, 0, 0, 3489, 3501, 5, 334, 0, 0, 3490, 3501, 5, 26, 0, 0, 3491, 3501, 5, 80, 0, 0, 3492, 3501, 5, 79, 0, 0, 3493, 3501, 5, 200, 0, 0, 3494, 3501, 5, 340, 0, 0, 3495, 3501, 5, 149, 0, 0, 3496, 3501, 5, 19, 0, 0, 3497, 3501, 5, 286, 0, 0, 3498, 3501, 5, 177, 0, 0, 3499, 3501, 3, 354, 177, 0, 3500, 3470, 1, 0, 0, 0, 3500, 3471, 1, 0, 0, 0, 3500, 3472, 1, 0, 0, 0, 3500, 3473, 1, 0, 0, 0, 3500, 3474, 1, 0, 0, 0, 3500, 3475, 1, 0, 0, 0, 3500, 3476, 1, 0, 0, 0, 3500, 3477, 1, 0, 0, 0, 3500, 3478, 1, 0, 0, 0, 3500, 3479, 1, 0, 0, 0, 3500, 3480, 1, 0, 0, 0, 3500, 3481, 1, 0, 0, 0, 3500, 3482, 1, 0, 0, 0, 3500, 3483, 1, 0, 0, 0, 3500, 3484, 1, 0, 0, 0, 3500, 3485, 1, 0, 0, 0, 3500, 3486, 1, 0, 0, 0, 3500, 3487, 1, 0, 0, 0, 3500, 3488, 1, 0, 0, 0, 3500, 3489, 1, 0, 0, 0, 3500, 3490, 1, 0, 0, 0, 3500, 3491, 1, 0, 0, 0, 3500, 3492, 1, 0, 0, 0, 3500, 3493, 1, 0, 0, 0, 3500, 3494, 1, 0, 0, 0, 3500, 3495, 1, 0, 0, 0, 3500, 3496, 1, 0, 0, 0, 3500, 3497, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3499, 1, 0, 0, 0, 3501, 303, 1, 0, 0, 0, 3502, 3503, 5, 19, 0, 0, 3503, 3504, 5, 356, 0, 0, 3504, 3505, 3, 304, 152, 0, 3505, 3506, 5, 358, 0, 0, 3506, 3556, 1, 0, 0, 0, 3507, 3508, 5, 177, 0, 0, 3508, 3509, 5, 356, 0, 0, 3509, 3510, 3, 304, 152, 0, 3510, 3511, 5, 4, 0, 0, 3511, 3512, 3, 304, 152, 0, 3512, 3513, 5, 358, 0, 0, 3513, 3556, 1, 0, 0, 0, 3514, 3528, 5, 286, 0, 0, 3515, 3524, 5, 356, 0, 0, 3516, 3521, 3, 328, 164, 0, 3517, 3518, 5, 4, 0, 0, 3518, 3520, 3, 328, 164, 0, 3519, 3517, 1, 0, 0, 0, 3520, 3523, 1, 0, 0, 0, 3521, 3519, 1, 0, 0, 0, 3521, 3522, 1, 0, 0, 0, 3522, 3525, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3524, 3516, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3529, 5, 358, 0, 0, 3527, 3529, 5, 354, 0, 0, 3528, 3515, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 3556, 1, 0, 0, 0, 3530, 3531, 5, 149, 0, 0, 3531, 3534, 7, 63, 0, 0, 3532, 3533, 5, 309, 0, 0, 3533, 3535, 5, 186, 0, 0, 3534, 3532, 1, 0, 0, 0, 3534, 3535, 1, 0, 0, 0, 3535, 3556, 1, 0, 0, 0, 3536, 3537, 5, 149, 0, 0, 3537, 3540, 7, 64, 0, 0, 3538, 3539, 5, 309, 0, 0, 3539, 3541, 7, 65, 0, 0, 3540, 3538, 1, 0, 0, 0, 3540, 3541, 1, 0, 0, 0, 3541, 3556, 1, 0, 0, 0, 3542, 3553, 3, 302, 151, 0, 3543, 3544, 5, 2, 0, 0, 3544, 3549, 5, 382, 0, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3548, 5, 382, 0, 0, 3547, 3545, 1, 0, 0, 0, 3548, 3551, 1, 0, 0, 0, 3549, 3547, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3552, 1, 0, 0, 0, 3551, 3549, 1, 0, 0, 0, 3552, 3554, 5, 3, 0, 0, 3553, 3543, 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3556, 1, 0, 0, 0, 3555, 3502, 1, 0, 0, 0, 3555, 3507, 1, 0, 0, 0, 3555, 3514, 1, 0, 0, 0, 3555, 3530, 1, 0, 0, 0, 3555, 3536, 1, 0, 0, 0, 3555, 3542, 1, 0, 0, 0, 3556, 305, 1, 0, 0, 0, 3557, 3562, 3, 308, 154, 0, 3558, 3559, 5, 4, 0, 0, 3559, 3561, 3, 308, 154, 0, 3560, 3558, 1, 0, 0, 0, 3561, 3564, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 307, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3565, 3566, 3, 88, 44, 0, 3566, 3570, 3, 304, 152, 0, 3567, 3569, 3, 314, 157, 0, 3568, 3567, 1, 0, 0, 0, 3569, 3572, 1, 0, 0, 0, 3570, 3568, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 309, 1, 0, 0, 0, 3572, 3570, 1, 0, 0, 0, 3573, 3578, 3, 312, 156, 0, 3574, 3575, 5, 4, 0, 0, 3575, 3577, 3, 312, 156, 0, 3576, 3574, 1, 0, 0, 0, 3577, 3580, 1, 0, 0, 0, 3578, 3576, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 311, 1, 0, 0, 0, 3580, 3578, 1, 0, 0, 0, 3581, 3582, 3, 80, 40, 0, 3582, 3586, 3, 304, 152, 0, 3583, 3585, 3, 314, 157, 0, 3584, 3583, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3584, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 313, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3589, 3590, 5, 197, 0, 0, 3590, 3597, 5, 198, 0, 0, 3591, 3592, 5, 82, 0, 0, 3592, 3597, 3, 254, 127, 0, 3593, 3594, 5, 51, 0, 0, 3594, 3597, 3, 364, 182, 0, 3595, 3597, 3, 300, 150, 0, 3596, 3589, 1, 0, 0, 0, 3596, 3591, 1, 0, 0, 0, 3596, 3593, 1, 0, 0, 0, 3596, 3595, 1, 0, 0, 0, 3597, 315, 1, 0, 0, 0, 3598, 3599, 7, 66, 0, 0, 3599, 3600, 3, 254, 127, 0, 3600, 317, 1, 0, 0, 0, 3601, 3606, 3, 320, 160, 0, 3602, 3603, 5, 4, 0, 0, 3603, 3605, 3, 320, 160, 0, 3604, 3602, 1, 0, 0, 0, 3605, 3608, 1, 0, 0, 0, 3606, 3604, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 319, 1, 0, 0, 0, 3608, 3606, 1, 0, 0, 0, 3609, 3610, 3, 350, 175, 0, 3610, 3613, 3, 304, 152, 0, 3611, 3612, 5, 197, 0, 0, 3612, 3614, 5, 198, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3617, 1, 0, 0, 0, 3615, 3616, 5, 51, 0, 0, 3616, 3618, 3, 364, 182, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3618, 1, 0, 0, 0, 3618, 321, 1, 0, 0, 0, 3619, 3624, 3, 324, 162, 0, 3620, 3621, 5, 4, 0, 0, 3621, 3623, 3, 324, 162, 0, 3622, 3620, 1, 0, 0, 0, 3623, 3626, 1, 0, 0, 0, 3624, 3622, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 323, 1, 0, 0, 0, 3626, 3624, 1, 0, 0, 0, 3627, 3628, 3, 88, 44, 0, 3628, 3632, 3, 304, 152, 0, 3629, 3631, 3, 326, 163, 0, 3630, 3629, 1, 0, 0, 0, 3631, 3634, 1, 0, 0, 0, 3632, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 325, 1, 0, 0, 0, 3634, 3632, 1, 0, 0, 0, 3635, 3636, 5, 197, 0, 0, 3636, 3649, 5, 198, 0, 0, 3637, 3638, 5, 82, 0, 0, 3638, 3649, 3, 254, 127, 0, 3639, 3640, 5, 127, 0, 0, 3640, 3641, 5, 12, 0, 0, 3641, 3642, 5, 20, 0, 0, 3642, 3643, 5, 2, 0, 0, 3643, 3644, 3, 254, 127, 0, 3644, 3645, 5, 3, 0, 0, 3645, 3649, 1, 0, 0, 0, 3646, 3647, 5, 51, 0, 0, 3647, 3649, 3, 364, 182, 0, 3648, 3635, 1, 0, 0, 0, 3648, 3637, 1, 0, 0, 0, 3648, 3639, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3649, 327, 1, 0, 0, 0, 3650, 3652, 3, 354, 177, 0, 3651, 3653, 5, 371, 0, 0, 3652, 3651, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3657, 3, 304, 152, 0, 3655, 3656, 5, 197, 0, 0, 3656, 3658, 5, 198, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3661, 1, 0, 0, 0, 3659, 3660, 5, 51, 0, 0, 3660, 3662, 3, 364, 182, 0, 3661, 3659, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 329, 1, 0, 0, 0, 3663, 3664, 5, 343, 0, 0, 3664, 3665, 3, 254, 127, 0, 3665, 3666, 5, 300, 0, 0, 3666, 3667, 3, 254, 127, 0, 3667, 331, 1, 0, 0, 0, 3668, 3669, 5, 345, 0, 0, 3669, 3670, 3, 350, 175, 0, 3670, 3671, 5, 20, 0, 0, 3671, 3679, 3, 336, 168, 0, 3672, 3673, 5, 4, 0, 0, 3673, 3674, 3, 350, 175, 0, 3674, 3675, 5, 20, 0, 0, 3675, 3676, 3, 336, 168, 0, 3676, 3678, 1, 0, 0, 0, 3677, 3672, 1, 0, 0, 0, 3678, 3681, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 333, 1, 0, 0, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3683, 5, 351, 0, 0, 3683, 3684, 5, 31, 0, 0, 3684, 3685, 3, 86, 43, 0, 3685, 335, 1, 0, 0, 0, 3686, 3726, 3, 350, 175, 0, 3687, 3688, 5, 2, 0, 0, 3688, 3689, 3, 350, 175, 0, 3689, 3690, 5, 3, 0, 0, 3690, 3726, 1, 0, 0, 0, 3691, 3719, 5, 2, 0, 0, 3692, 3693, 5, 44, 0, 0, 3693, 3694, 5, 31, 0, 0, 3694, 3699, 3, 254, 127, 0, 3695, 3696, 5, 4, 0, 0, 3696, 3698, 3, 254, 127, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3701, 1, 0, 0, 0, 3699, 3697, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3720, 1, 0, 0, 0, 3701, 3699, 1, 0, 0, 0, 3702, 3703, 7, 35, 0, 0, 3703, 3704, 5, 31, 0, 0, 3704, 3709, 3, 254, 127, 0, 3705, 3706, 5, 4, 0, 0, 3706, 3708, 3, 254, 127, 0, 3707, 3705, 1, 0, 0, 0, 3708, 3711, 1, 0, 0, 0, 3709, 3707, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3713, 1, 0, 0, 0, 3711, 3709, 1, 0, 0, 0, 3712, 3702, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3717, 1, 0, 0, 0, 3714, 3715, 7, 36, 0, 0, 3715, 3716, 5, 31, 0, 0, 3716, 3718, 3, 96, 48, 0, 3717, 3714, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3692, 1, 0, 0, 0, 3719, 3712, 1, 0, 0, 0, 3720, 3722, 1, 0, 0, 0, 3721, 3723, 3, 338, 169, 0, 3722, 3721, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3726, 5, 3, 0, 0, 3725, 3686, 1, 0, 0, 0, 3725, 3687, 1, 0, 0, 0, 3725, 3691, 1, 0, 0, 0, 3726, 337, 1, 0, 0, 0, 3727, 3728, 7, 67, 0, 0, 3728, 3736, 3, 340, 170, 0, 3729, 3730, 7, 67, 0, 0, 3730, 3731, 5, 24, 0, 0, 3731, 3732, 3, 340, 170, 0, 3732, 3733, 5, 14, 0, 0, 3733, 3734, 3, 340, 170, 0, 3734, 3736, 1, 0, 0, 0, 3735, 3727, 1, 0, 0, 0, 3735, 3729, 1, 0, 0, 0, 3736, 339, 1, 0, 0, 0, 3737, 3738, 5, 321, 0, 0, 3738, 3745, 7, 68, 0, 0, 3739, 3740, 5, 62, 0, 0, 3740, 3745, 5, 257, 0, 0, 3741, 3742, 3, 254, 127, 0, 3742, 3743, 7, 68, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3737, 1, 0, 0, 0, 3744, 3739, 1, 0, 0, 0, 3744, 3741, 1, 0, 0, 0, 3745, 341, 1, 0, 0, 0, 3746, 3751, 3, 348, 174, 0, 3747, 3748, 5, 4, 0, 0, 3748, 3750, 3, 348, 174, 0, 3749, 3747, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 343, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3754, 3755, 5, 136, 0, 0, 3755, 3756, 5, 2, 0, 0, 3756, 3757, 3, 254, 127, 0, 3757, 3758, 5, 3, 0, 0, 3758, 3764, 1, 0, 0, 0, 3759, 3764, 3, 348, 174, 0, 3760, 3764, 5, 114, 0, 0, 3761, 3764, 5, 161, 0, 0, 3762, 3764, 5, 250, 0, 0, 3763, 3754, 1, 0, 0, 0, 3763, 3759, 1, 0, 0, 0, 3763, 3760, 1, 0, 0, 0, 3763, 3761, 1, 0, 0, 0, 3763, 3762, 1, 0, 0, 0, 3764, 345, 1, 0, 0, 0, 3765, 3766, 3, 348, 174, 0, 3766, 347, 1, 0, 0, 0, 3767, 3772, 3, 354, 177, 0, 3768, 3769, 5, 5, 0, 0, 3769, 3771, 3, 354, 177, 0, 3770, 3768, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 349, 1, 0, 0, 0, 3774, 3772, 1, 0, 0, 0, 3775, 3776, 3, 354, 177, 0, 3776, 3777, 3, 352, 176, 0, 3777, 351, 1, 0, 0, 0, 3778, 3779, 5, 362, 0, 0, 3779, 3781, 3, 354, 177, 0, 3780, 3778, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3786, 1, 0, 0, 0, 3784, 3786, 1, 0, 0, 0, 3785, 3780, 1, 0, 0, 0, 3785, 3784, 1, 0, 0, 0, 3786, 353, 1, 0, 0, 0, 3787, 3790, 3, 356, 178, 0, 3788, 3790, 3, 368, 184, 0, 3789, 3787, 1, 0, 0, 0, 3789, 3788, 1, 0, 0, 0, 3790, 355, 1, 0, 0, 0, 3791, 3796, 5, 388, 0, 0, 3792, 3796, 3, 358, 179, 0, 3793, 3796, 3, 366, 183, 0, 3794, 3796, 3, 370, 185, 0, 3795, 3791, 1, 0, 0, 0, 3795, 3792, 1, 0, 0, 0, 3795, 3793, 1, 0, 0, 0, 3795, 3794, 1, 0, 0, 0, 3796, 357, 1, 0, 0, 0, 3797, 3798, 7, 69, 0, 0, 3798, 359, 1, 0, 0, 0, 3799, 3801, 5, 362, 0, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3803, 7, 70, 0, 0, 3803, 361, 1, 0, 0, 0, 3804, 3805, 5, 319, 0, 0, 3805, 3818, 3, 304, 152, 0, 3806, 3807, 5, 51, 0, 0, 3807, 3818, 3, 364, 182, 0, 3808, 3818, 3, 300, 150, 0, 3809, 3810, 7, 71, 0, 0, 3810, 3811, 5, 197, 0, 0, 3811, 3818, 5, 198, 0, 0, 3812, 3813, 5, 269, 0, 0, 3813, 3814, 5, 82, 0, 0, 3814, 3818, 3, 254, 127, 0, 3815, 3816, 5, 96, 0, 0, 3816, 3818, 5, 82, 0, 0, 3817, 3804, 1, 0, 0, 0, 3817, 3806, 1, 0, 0, 0, 3817, 3808, 1, 0, 0, 0, 3817, 3809, 1, 0, 0, 0, 3817, 3812, 1, 0, 0, 0, 3817, 3815, 1, 0, 0, 0, 3818, 363, 1, 0, 0, 0, 3819, 3820, 7, 72, 0, 0, 3820, 365, 1, 0, 0, 0, 3821, 3822, 7, 73, 0, 0, 3822, 367, 1, 0, 0, 0, 3823, 3824, 7, 74, 0, 0, 3824, 369, 1, 0, 0, 0, 3825, 3826, 7, 75, 0, 0, 3826, 371, 1, 0, 0, 0, 509, 375, 382, 386, 391, 398, 403, 413, 415, 435, 439, 445, 448, 451, 455, 458, 462, 469, 472, 476, 479, 484, 497, 499, 504, 513, 516, 520, 523, 529, 540, 546, 551, 584, 594, 605, 616, 627, 632, 641, 645, 651, 655, 660, 666, 678, 686, 692, 703, 707, 712, 727, 731, 738, 742, 748, 778, 782, 787, 794, 800, 803, 806, 810, 814, 823, 825, 834, 837, 846, 851, 857, 864, 867, 871, 886, 889, 895, 899, 916, 918, 926, 930, 936, 939, 943, 946, 952, 957, 961, 968, 971, 974, 981, 986, 995, 1003, 1009, 1012, 1015, 1021, 1025, 1030, 1033, 1037, 1039, 1047, 1055, 1058, 1065, 1068, 1071, 1080, 1085, 1091, 1096, 1099, 1103, 1106, 1110, 1120, 1125, 1138, 1141, 1149, 1155, 1158, 1161, 1166, 1174, 1179, 1185, 1191, 1194, 1201, 1208, 1216, 1228, 1236, 1263, 1266, 1272, 1281, 1290, 1296, 1301, 1306, 1313, 1318, 1323, 1330, 1338, 1341, 1347, 1354, 1358, 1421, 1429, 1436, 1444, 1456, 1461, 1470, 1478, 1483, 1485, 1493, 1498, 1502, 1505, 1513, 1518, 1527, 1532, 1535, 1540, 1544, 1549, 1551, 1556, 1565, 1573, 1579, 1588, 1595, 1604, 1609, 1612, 1637, 1639, 1651, 1658, 1661, 1668, 1672, 1678, 1686, 1693, 1696, 1704, 1715, 1726, 1734, 1740, 1751, 1758, 1765, 1777, 1785, 1791, 1797, 1800, 1819, 1826, 1833, 1844, 1849, 1854, 1859, 1864, 1867, 1870, 1874, 1879, 1886, 1894, 1903, 1909, 1915, 1918, 1920, 1928, 1938, 1947, 1951, 1954, 1958, 1962, 1970, 1974, 1977, 1980, 1983, 1987, 1991, 1996, 2000, 2003, 2006, 2009, 2013, 2018, 2022, 2025, 2028, 2031, 2033, 2039, 2046, 2051, 2054, 2057, 2061, 2071, 2075, 2077, 2080, 2084, 2090, 2094, 2105, 2113, 2115, 2122, 2126, 2138, 2145, 2160, 2165, 2172, 2188, 2193, 2206, 2211, 2219, 2225, 2229, 2232, 2235, 2242, 2245, 2251, 2260, 2270, 2285, 2290, 2292, 2297, 2306, 2316, 2321, 2325, 2330, 2337, 2342, 2346, 2349, 2352, 2366, 2379, 2384, 2388, 2391, 2396, 2401, 2405, 2408, 2420, 2431, 2444, 2455, 2460, 2463, 2467, 2470, 2482, 2491, 2494, 2499, 2506, 2509, 2515, 2521, 2523, 2526, 2531, 2535, 2541, 2545, 2548, 2553, 2556, 2561, 2563, 2570, 2572, 2576, 2581, 2588, 2591, 2609, 2611, 2614, 2625, 2634, 2641, 2649, 2657, 2662, 2665, 2668, 2674, 2682, 2690, 2702, 2708, 2715, 2722, 2724, 2737, 2743, 2745, 2754, 2756, 2764, 2768, 2780, 2783, 2788, 2792, 2794, 2803, 2815, 2817, 2824, 2831, 2837, 2843, 2845, 2852, 2860, 2869, 2876, 2882, 2887, 2894, 2907, 2915, 2918, 2922, 2924, 2931, 2942, 2949, 2959, 2964, 2968, 2978, 2985, 2998, 3000, 3008, 3010, 3014, 3022, 3031, 3037, 3045, 3050, 3062, 3067, 3070, 3076, 3080, 3085, 3090, 3095, 3101, 3122, 3124, 3135, 3147, 3159, 3163, 3172, 3176, 3194, 3197, 3205, 3214, 3223, 3246, 3262, 3269, 3272, 3281, 3285, 3289, 3301, 3326, 3333, 3336, 3351, 3372, 3376, 3378, 3388, 3390, 3400, 3415, 3417, 3430, 3434, 3441, 3446, 3454, 3459, 3468, 3500, 3521, 3524, 3528, 3534, 3540, 3549, 3553, 3555, 3562, 3570, 3578, 3586, 3596, 3606, 3613, 3617, 3624, 3632, 3648, 3652, 3657, 3661, 3679, 3699, 3709, 3712, 3717, 3719, 3722, 3725, 3735, 3744, 3751, 3763, 3772, 3782, 3785, 3789, 3795, 3800, 3817] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index 5f63187d..1e8fba53 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -449,150 +449,153 @@ export class SparkSqlParser extends SQLParserBase { public static readonly RULE_tableName = 36; public static readonly RULE_viewNameCreate = 37; public static readonly RULE_viewName = 38; - public static readonly RULE_columnName = 39; - public static readonly RULE_columnNamePath = 40; - public static readonly RULE_columnNameSeq = 41; - public static readonly RULE_columnNameCreate = 42; - public static readonly RULE_identifierReference = 43; - public static readonly RULE_queryOrganization = 44; - public static readonly RULE_limitClause = 45; - public static readonly RULE_orderOrSortByClause = 46; - public static readonly RULE_clusterOrDistributeBy = 47; - public static readonly RULE_queryTerm = 48; - public static readonly RULE_queryPrimary = 49; - public static readonly RULE_sortItem = 50; - public static readonly RULE_fromStatementBody = 51; - public static readonly RULE_querySpecification = 52; - public static readonly RULE_transformClause = 53; - public static readonly RULE_selectClause = 54; - public static readonly RULE_setClause = 55; - public static readonly RULE_matchedClause = 56; - public static readonly RULE_notMatchedClause = 57; - public static readonly RULE_notMatchedBySourceClause = 58; - public static readonly RULE_notMatchedAction = 59; - public static readonly RULE_assignmentList = 60; - public static readonly RULE_assignment = 61; - public static readonly RULE_whereClause = 62; - public static readonly RULE_havingClause = 63; - public static readonly RULE_hint = 64; - public static readonly RULE_hintStatement = 65; - public static readonly RULE_fromClause = 66; - public static readonly RULE_temporalClause = 67; - public static readonly RULE_aggregationClause = 68; - public static readonly RULE_groupByClause = 69; - public static readonly RULE_groupingAnalytics = 70; - public static readonly RULE_groupingSet = 71; - public static readonly RULE_pivotClause = 72; - public static readonly RULE_pivotColumn = 73; - public static readonly RULE_pivotValue = 74; - public static readonly RULE_unPivotClause = 75; - public static readonly RULE_unPivotSingleValueColumnClause = 76; - public static readonly RULE_unPivotMultiValueColumnClause = 77; - public static readonly RULE_unPivotColumnSet = 78; - public static readonly RULE_unPivotColumnAndAlias = 79; - public static readonly RULE_ifNotExists = 80; - public static readonly RULE_ifExists = 81; - public static readonly RULE_lateralView = 82; - public static readonly RULE_setQuantifier = 83; - public static readonly RULE_relation = 84; - public static readonly RULE_joinRelation = 85; - public static readonly RULE_joinType = 86; - public static readonly RULE_joinCriteria = 87; - public static readonly RULE_sample = 88; - public static readonly RULE_sampleMethod = 89; - public static readonly RULE_identifierList = 90; - public static readonly RULE_identifierSeq = 91; - public static readonly RULE_orderedIdentifierList = 92; - public static readonly RULE_orderedIdentifier = 93; - public static readonly RULE_identifierCommentList = 94; - public static readonly RULE_identifierComment = 95; - public static readonly RULE_relationPrimary = 96; - public static readonly RULE_atomSubQueryTableSource = 97; - public static readonly RULE_inlineTable = 98; - public static readonly RULE_functionTableSubqueryArgument = 99; - public static readonly RULE_tableArgumentPartitioning = 100; - public static readonly RULE_functionTableNamedArgumentExpression = 101; - public static readonly RULE_functionTableReferenceArgument = 102; - public static readonly RULE_functionTableArgument = 103; - public static readonly RULE_functionTable = 104; - public static readonly RULE_atomFunctionTable = 105; - public static readonly RULE_tableAlias = 106; - public static readonly RULE_rowFormat = 107; - public static readonly RULE_multipartIdentifierList = 108; - public static readonly RULE_multipartIdentifier = 109; - public static readonly RULE_multipartIdentifierPropertyList = 110; - public static readonly RULE_multipartIdentifierProperty = 111; - public static readonly RULE_tableIdentifier = 112; - public static readonly RULE_viewIdentifier = 113; - public static readonly RULE_selectLiteralColumnName = 114; - public static readonly RULE_selectExpressionColumnName = 115; - public static readonly RULE_tableAllColumns = 116; - public static readonly RULE_namedExpression = 117; - public static readonly RULE_namedExpressionSeq = 118; - public static readonly RULE_selectList = 119; - public static readonly RULE_partitionFieldList = 120; - public static readonly RULE_partitionField = 121; - public static readonly RULE_transform = 122; - public static readonly RULE_transformArgument = 123; - public static readonly RULE_expression = 124; - public static readonly RULE_namedArgumentExpression = 125; - public static readonly RULE_functionArgument = 126; - public static readonly RULE_expressionSeq = 127; - public static readonly RULE_booleanExpression = 128; - public static readonly RULE_predicate = 129; - public static readonly RULE_valueExpression = 130; - public static readonly RULE_datetimeUnit = 131; - public static readonly RULE_primaryExpression = 132; - public static readonly RULE_literalType = 133; - public static readonly RULE_constant = 134; - public static readonly RULE_comparisonOperator = 135; - public static readonly RULE_arithmeticOperator = 136; - public static readonly RULE_predicateOperator = 137; - public static readonly RULE_booleanValue = 138; - public static readonly RULE_interval = 139; - public static readonly RULE_errorCapturingMultiUnitsInterval = 140; - public static readonly RULE_multiUnitsInterval = 141; - public static readonly RULE_errorCapturingUnitToUnitInterval = 142; - public static readonly RULE_unitToUnitInterval = 143; - public static readonly RULE_intervalValue = 144; - public static readonly RULE_unitInMultiUnits = 145; - public static readonly RULE_unitInUnitToUnit = 146; - public static readonly RULE_colPosition = 147; - public static readonly RULE_type = 148; - public static readonly RULE_dataType = 149; - public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 150; - public static readonly RULE_qualifiedColTypeWithPositionForAdd = 151; - public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 152; - public static readonly RULE_qualifiedColTypeWithPositionForReplace = 153; - public static readonly RULE_colDefinitionDescriptorWithPosition = 154; - public static readonly RULE_variableDefaultExpression = 155; - public static readonly RULE_colTypeList = 156; - public static readonly RULE_columnType = 157; - public static readonly RULE_createOrReplaceTableColTypeList = 158; - public static readonly RULE_createOrReplaceTableColType = 159; - public static readonly RULE_colDefinitionOption = 160; - public static readonly RULE_complexColType = 161; - public static readonly RULE_whenClause = 162; - public static readonly RULE_windowClause = 163; - public static readonly RULE_zOrderClause = 164; - public static readonly RULE_windowSpec = 165; - public static readonly RULE_windowFrame = 166; - public static readonly RULE_frameBound = 167; - public static readonly RULE_qualifiedNameList = 168; - public static readonly RULE_functionName = 169; - public static readonly RULE_functionNameCreate = 170; - public static readonly RULE_qualifiedName = 171; - public static readonly RULE_errorCapturingIdentifier = 172; - public static readonly RULE_errorCapturingIdentifierExtra = 173; - public static readonly RULE_identifier = 174; - public static readonly RULE_strictIdentifier = 175; - public static readonly RULE_quotedIdentifier = 176; - public static readonly RULE_number = 177; - public static readonly RULE_alterColumnAction = 178; - public static readonly RULE_stringLit = 179; - public static readonly RULE_ansiNonReserved = 180; - public static readonly RULE_strictNonReserved = 181; - public static readonly RULE_nonReserved = 182; + public static readonly RULE_emptyColumn = 39; + public static readonly RULE_columnName = 40; + public static readonly RULE_columnNamePath = 41; + public static readonly RULE_columnNamePathAllowEmpty = 42; + public static readonly RULE_columnNameSeq = 43; + public static readonly RULE_columnNameCreate = 44; + public static readonly RULE_identifierReference = 45; + public static readonly RULE_queryOrganization = 46; + public static readonly RULE_limitClause = 47; + public static readonly RULE_orderOrSortByClause = 48; + public static readonly RULE_clusterOrDistributeBy = 49; + public static readonly RULE_queryTerm = 50; + public static readonly RULE_queryPrimary = 51; + public static readonly RULE_sortItem = 52; + public static readonly RULE_fromStatementBody = 53; + public static readonly RULE_querySpecification = 54; + public static readonly RULE_transformClause = 55; + public static readonly RULE_selectClause = 56; + public static readonly RULE_setClause = 57; + public static readonly RULE_matchedClause = 58; + public static readonly RULE_notMatchedClause = 59; + public static readonly RULE_notMatchedBySourceClause = 60; + public static readonly RULE_notMatchedAction = 61; + public static readonly RULE_assignmentList = 62; + public static readonly RULE_assignment = 63; + public static readonly RULE_whereClause = 64; + public static readonly RULE_havingClause = 65; + public static readonly RULE_hint = 66; + public static readonly RULE_hintStatement = 67; + public static readonly RULE_fromClause = 68; + public static readonly RULE_temporalClause = 69; + public static readonly RULE_aggregationClause = 70; + public static readonly RULE_groupByClause = 71; + public static readonly RULE_groupingAnalytics = 72; + public static readonly RULE_groupingSet = 73; + public static readonly RULE_pivotClause = 74; + public static readonly RULE_pivotColumn = 75; + public static readonly RULE_pivotValue = 76; + public static readonly RULE_unPivotClause = 77; + public static readonly RULE_unPivotSingleValueColumnClause = 78; + public static readonly RULE_unPivotMultiValueColumnClause = 79; + public static readonly RULE_unPivotColumnSet = 80; + public static readonly RULE_unPivotColumnAndAlias = 81; + public static readonly RULE_ifNotExists = 82; + public static readonly RULE_ifExists = 83; + public static readonly RULE_lateralView = 84; + public static readonly RULE_setQuantifier = 85; + public static readonly RULE_relation = 86; + public static readonly RULE_joinRelation = 87; + public static readonly RULE_joinType = 88; + public static readonly RULE_joinCriteria = 89; + public static readonly RULE_sample = 90; + public static readonly RULE_sampleMethod = 91; + public static readonly RULE_identifierList = 92; + public static readonly RULE_identifierSeq = 93; + public static readonly RULE_orderedIdentifierList = 94; + public static readonly RULE_orderedIdentifier = 95; + public static readonly RULE_identifierCommentList = 96; + public static readonly RULE_identifierComment = 97; + public static readonly RULE_relationPrimary = 98; + public static readonly RULE_atomSubQueryTableSource = 99; + public static readonly RULE_inlineTable = 100; + public static readonly RULE_functionTableSubqueryArgument = 101; + public static readonly RULE_tableArgumentPartitioning = 102; + public static readonly RULE_functionTableNamedArgumentExpression = 103; + public static readonly RULE_functionTableReferenceArgument = 104; + public static readonly RULE_functionTableArgument = 105; + public static readonly RULE_functionTable = 106; + public static readonly RULE_atomFunctionTable = 107; + public static readonly RULE_tableAlias = 108; + public static readonly RULE_rowFormat = 109; + public static readonly RULE_multipartIdentifierList = 110; + public static readonly RULE_multipartIdentifier = 111; + public static readonly RULE_multipartIdentifierAllowEmpty = 112; + public static readonly RULE_multipartIdentifierPropertyList = 113; + public static readonly RULE_multipartIdentifierProperty = 114; + public static readonly RULE_tableIdentifier = 115; + public static readonly RULE_viewIdentifier = 116; + public static readonly RULE_selectLiteralColumnName = 117; + public static readonly RULE_selectExpressionColumnName = 118; + public static readonly RULE_tableAllColumns = 119; + public static readonly RULE_namedExpression = 120; + public static readonly RULE_namedExpressionSeq = 121; + public static readonly RULE_selectList = 122; + public static readonly RULE_partitionFieldList = 123; + public static readonly RULE_partitionField = 124; + public static readonly RULE_transform = 125; + public static readonly RULE_transformArgument = 126; + public static readonly RULE_expression = 127; + public static readonly RULE_namedArgumentExpression = 128; + public static readonly RULE_functionArgument = 129; + public static readonly RULE_expressionSeq = 130; + public static readonly RULE_booleanExpression = 131; + public static readonly RULE_predicate = 132; + public static readonly RULE_valueExpression = 133; + public static readonly RULE_datetimeUnit = 134; + public static readonly RULE_primaryExpression = 135; + public static readonly RULE_literalType = 136; + public static readonly RULE_constant = 137; + public static readonly RULE_comparisonOperator = 138; + public static readonly RULE_arithmeticOperator = 139; + public static readonly RULE_predicateOperator = 140; + public static readonly RULE_booleanValue = 141; + public static readonly RULE_interval = 142; + public static readonly RULE_errorCapturingMultiUnitsInterval = 143; + public static readonly RULE_multiUnitsInterval = 144; + public static readonly RULE_errorCapturingUnitToUnitInterval = 145; + public static readonly RULE_unitToUnitInterval = 146; + public static readonly RULE_intervalValue = 147; + public static readonly RULE_unitInMultiUnits = 148; + public static readonly RULE_unitInUnitToUnit = 149; + public static readonly RULE_colPosition = 150; + public static readonly RULE_type = 151; + public static readonly RULE_dataType = 152; + public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 153; + public static readonly RULE_qualifiedColTypeWithPositionForAdd = 154; + public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 155; + public static readonly RULE_qualifiedColTypeWithPositionForReplace = 156; + public static readonly RULE_colDefinitionDescriptorWithPosition = 157; + public static readonly RULE_variableDefaultExpression = 158; + public static readonly RULE_colTypeList = 159; + public static readonly RULE_columnType = 160; + public static readonly RULE_createOrReplaceTableColTypeList = 161; + public static readonly RULE_createOrReplaceTableColType = 162; + public static readonly RULE_colDefinitionOption = 163; + public static readonly RULE_complexColType = 164; + public static readonly RULE_whenClause = 165; + public static readonly RULE_windowClause = 166; + public static readonly RULE_zOrderClause = 167; + public static readonly RULE_windowSpec = 168; + public static readonly RULE_windowFrame = 169; + public static readonly RULE_frameBound = 170; + public static readonly RULE_qualifiedNameList = 171; + public static readonly RULE_functionName = 172; + public static readonly RULE_functionNameCreate = 173; + public static readonly RULE_qualifiedName = 174; + public static readonly RULE_errorCapturingIdentifier = 175; + public static readonly RULE_errorCapturingIdentifierExtra = 176; + public static readonly RULE_identifier = 177; + public static readonly RULE_strictIdentifier = 178; + public static readonly RULE_quotedIdentifier = 179; + public static readonly RULE_number = 180; + public static readonly RULE_alterColumnAction = 181; + public static readonly RULE_stringLit = 182; + public static readonly RULE_ansiNonReserved = 183; + public static readonly RULE_strictNonReserved = 184; + public static readonly RULE_nonReserved = 185; public static readonly literalNames = [ null, "';'", "'('", "')'", "','", "'.'", "'['", "']'", "'ADD'", @@ -751,15 +754,16 @@ export class SparkSqlParser extends SQLParserBase { "expressionProperty", "constantList", "nestedConstantList", "createFileFormat", "fileFormat", "storageHandler", "dmlStatementNoWith", "namespaceName", "namespaceNameCreate", "tableNameCreate", "tableName", "viewNameCreate", - "viewName", "columnName", "columnNamePath", "columnNameSeq", "columnNameCreate", - "identifierReference", "queryOrganization", "limitClause", "orderOrSortByClause", - "clusterOrDistributeBy", "queryTerm", "queryPrimary", "sortItem", - "fromStatementBody", "querySpecification", "transformClause", "selectClause", - "setClause", "matchedClause", "notMatchedClause", "notMatchedBySourceClause", - "notMatchedAction", "assignmentList", "assignment", "whereClause", - "havingClause", "hint", "hintStatement", "fromClause", "temporalClause", - "aggregationClause", "groupByClause", "groupingAnalytics", "groupingSet", - "pivotClause", "pivotColumn", "pivotValue", "unPivotClause", "unPivotSingleValueColumnClause", + "viewName", "emptyColumn", "columnName", "columnNamePath", "columnNamePathAllowEmpty", + "columnNameSeq", "columnNameCreate", "identifierReference", "queryOrganization", + "limitClause", "orderOrSortByClause", "clusterOrDistributeBy", "queryTerm", + "queryPrimary", "sortItem", "fromStatementBody", "querySpecification", + "transformClause", "selectClause", "setClause", "matchedClause", + "notMatchedClause", "notMatchedBySourceClause", "notMatchedAction", + "assignmentList", "assignment", "whereClause", "havingClause", "hint", + "hintStatement", "fromClause", "temporalClause", "aggregationClause", + "groupByClause", "groupingAnalytics", "groupingSet", "pivotClause", + "pivotColumn", "pivotValue", "unPivotClause", "unPivotSingleValueColumnClause", "unPivotMultiValueColumnClause", "unPivotColumnSet", "unPivotColumnAndAlias", "ifNotExists", "ifExists", "lateralView", "setQuantifier", "relation", "joinRelation", "joinType", "joinCriteria", "sample", "sampleMethod", @@ -769,21 +773,21 @@ export class SparkSqlParser extends SQLParserBase { "tableArgumentPartitioning", "functionTableNamedArgumentExpression", "functionTableReferenceArgument", "functionTableArgument", "functionTable", "atomFunctionTable", "tableAlias", "rowFormat", "multipartIdentifierList", - "multipartIdentifier", "multipartIdentifierPropertyList", "multipartIdentifierProperty", - "tableIdentifier", "viewIdentifier", "selectLiteralColumnName", - "selectExpressionColumnName", "tableAllColumns", "namedExpression", - "namedExpressionSeq", "selectList", "partitionFieldList", "partitionField", - "transform", "transformArgument", "expression", "namedArgumentExpression", - "functionArgument", "expressionSeq", "booleanExpression", "predicate", - "valueExpression", "datetimeUnit", "primaryExpression", "literalType", - "constant", "comparisonOperator", "arithmeticOperator", "predicateOperator", - "booleanValue", "interval", "errorCapturingMultiUnitsInterval", - "multiUnitsInterval", "errorCapturingUnitToUnitInterval", "unitToUnitInterval", - "intervalValue", "unitInMultiUnits", "unitInUnitToUnit", "colPosition", - "type", "dataType", "qualifiedColTypeWithPositionSeqForAdd", "qualifiedColTypeWithPositionForAdd", - "qualifiedColTypeWithPositionSeqForReplace", "qualifiedColTypeWithPositionForReplace", - "colDefinitionDescriptorWithPosition", "variableDefaultExpression", - "colTypeList", "columnType", "createOrReplaceTableColTypeList", + "multipartIdentifier", "multipartIdentifierAllowEmpty", "multipartIdentifierPropertyList", + "multipartIdentifierProperty", "tableIdentifier", "viewIdentifier", + "selectLiteralColumnName", "selectExpressionColumnName", "tableAllColumns", + "namedExpression", "namedExpressionSeq", "selectList", "partitionFieldList", + "partitionField", "transform", "transformArgument", "expression", + "namedArgumentExpression", "functionArgument", "expressionSeq", + "booleanExpression", "predicate", "valueExpression", "datetimeUnit", + "primaryExpression", "literalType", "constant", "comparisonOperator", + "arithmeticOperator", "predicateOperator", "booleanValue", "interval", + "errorCapturingMultiUnitsInterval", "multiUnitsInterval", "errorCapturingUnitToUnitInterval", + "unitToUnitInterval", "intervalValue", "unitInMultiUnits", "unitInUnitToUnit", + "colPosition", "type", "dataType", "qualifiedColTypeWithPositionSeqForAdd", + "qualifiedColTypeWithPositionForAdd", "qualifiedColTypeWithPositionSeqForReplace", + "qualifiedColTypeWithPositionForReplace", "colDefinitionDescriptorWithPosition", + "variableDefaultExpression", "colTypeList", "columnType", "createOrReplaceTableColTypeList", "createOrReplaceTableColType", "colDefinitionOption", "complexColType", "whenClause", "windowClause", "zOrderClause", "windowSpec", "windowFrame", "frameBound", "qualifiedNameList", "functionName", "functionNameCreate", @@ -814,21 +818,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 369; + this.state = 375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 10500) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 67896321) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & 100696297) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 16842817) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 2102291) !== 0) || _la === 205 || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 2181171413) !== 0) || ((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 1048833) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 536949281) !== 0)) { { { - this.state = 366; + this.state = 372; this.singleStatement(); } } - this.state = 371; + this.state = 377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 372; + this.state = 378; this.match(SparkSqlParser.EOF); } } @@ -853,14 +857,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 374; + this.state = 380; this.statement(); - this.state = 376; + this.state = 382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 375; + this.state = 381; this.match(SparkSqlParser.SEMICOLON); } } @@ -887,14 +891,14 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1335; + this.state = 1341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 378; + this.state = 384; this.query(); } break; @@ -902,17 +906,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DmlStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 380; + this.state = 386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 379; + this.state = 385; this.ctes(); } } - this.state = 382; + this.state = 388; this.dmlStatementNoWith(); } break; @@ -920,19 +924,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UseNamespaceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 383; + this.state = 389; this.match(SparkSqlParser.KW_USE); - this.state = 385; + this.state = 391; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: { - this.state = 384; + this.state = 390; this.namespace(); } break; } - this.state = 387; + this.state = 393; this.namespaceName(); } break; @@ -940,22 +944,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 388; + this.state = 394; this.match(SparkSqlParser.KW_SET); - this.state = 389; + this.state = 395; this.match(SparkSqlParser.KW_CATALOG); - this.state = 392; + this.state = 398; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 390; + this.state = 396; this.identifier(); } break; case 2: { - this.state = 391; + this.state = 397; this.stringLit(); } break; @@ -966,37 +970,37 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateNamespaceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 394; + this.state = 400; this.match(SparkSqlParser.KW_CREATE); - this.state = 395; + this.state = 401; this.namespace(); - this.state = 397; + this.state = 403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: { - this.state = 396; + this.state = 402; this.ifNotExists(); } break; } - this.state = 399; + this.state = 405; this.namespaceNameCreate(); - this.state = 409; + this.state = 415; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 407; + this.state = 413; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { { - this.state = 400; + this.state = 406; this.match(SparkSqlParser.KW_COMMENT); - this.state = 401; + this.state = 407; (localContext as CreateNamespaceContext)._comment = this.stringLit(); } } @@ -1004,9 +1008,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_LOCATION: { { - this.state = 402; + this.state = 408; this.match(SparkSqlParser.KW_LOCATION); - this.state = 403; + this.state = 409; this.stringLit(); } } @@ -1014,9 +1018,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WITH: { { - this.state = 404; + this.state = 410; this.match(SparkSqlParser.KW_WITH); - this.state = 405; + this.state = 411; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1025,7 +1029,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 406; + this.state = 412; this.propertyList(); } } @@ -1035,7 +1039,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 411; + this.state = 417; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); } @@ -1045,15 +1049,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespacePropertiesContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 412; + this.state = 418; this.match(SparkSqlParser.KW_ALTER); - this.state = 413; + this.state = 419; this.namespace(); - this.state = 414; + this.state = 420; this.namespaceName(); - this.state = 415; + this.state = 421; this.match(SparkSqlParser.KW_SET); - this.state = 416; + this.state = 422; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1062,7 +1066,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 417; + this.state = 423; this.propertyList(); } break; @@ -1070,17 +1074,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespaceLocationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 419; + this.state = 425; this.match(SparkSqlParser.KW_ALTER); - this.state = 420; + this.state = 426; this.namespace(); - this.state = 421; + this.state = 427; this.namespaceName(); - this.state = 422; + this.state = 428; this.match(SparkSqlParser.KW_SET); - this.state = 423; + this.state = 429; this.match(SparkSqlParser.KW_LOCATION); - this.state = 424; + this.state = 430; this.stringLit(); } break; @@ -1088,28 +1092,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropNamespaceContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 426; + this.state = 432; this.match(SparkSqlParser.KW_DROP); - this.state = 427; + this.state = 433; this.namespace(); - this.state = 429; + this.state = 435; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 428; + this.state = 434; this.ifExists(); } break; } - this.state = 431; + this.state = 437; this.namespaceName(); - this.state = 433; + this.state = 439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 247) { { - this.state = 432; + this.state = 438; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -1127,9 +1131,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowNamespacesContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 435; + this.state = 441; this.match(SparkSqlParser.KW_SHOW); - this.state = 436; + this.state = 442; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 191 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -1138,12 +1142,12 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 439; + this.state = 445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 437; + this.state = 443; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1152,27 +1156,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 438; + this.state = 444; this.multipartIdentifier(); } break; } - this.state = 445; + this.state = 451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 442; + this.state = 448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 441; + this.state = 447; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 444; + this.state = 450; (localContext as ShowNamespacesContext)._pattern = this.stringLit(); } } @@ -1183,84 +1187,84 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 447; + this.state = 453; this.match(SparkSqlParser.KW_CREATE); - this.state = 449; + this.state = 455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 448; + this.state = 454; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 452; + this.state = 458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 451; + this.state = 457; this.match(SparkSqlParser.KW_EXTERNAL); } } - this.state = 454; + this.state = 460; this.match(SparkSqlParser.KW_TABLE); - this.state = 456; + this.state = 462; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 455; + this.state = 461; this.ifNotExists(); } break; } - this.state = 458; + this.state = 464; this.tableNameCreate(); - this.state = 463; + this.state = 469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 459; + this.state = 465; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 460; + this.state = 466; this.createOrReplaceTableColTypeList(); - this.state = 461; + this.state = 467; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 466; + this.state = 472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 465; + this.state = 471; this.tableProvider(); } } - this.state = 468; + this.state = 474; this.createTableClauses(); - this.state = 473; + this.state = 479; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 470; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 469; + this.state = 475; this.match(SparkSqlParser.KW_AS); } } - this.state = 472; + this.state = 478; this.query(); } break; @@ -1271,58 +1275,58 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableLikeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 475; + this.state = 481; this.match(SparkSqlParser.KW_CREATE); - this.state = 476; + this.state = 482; this.match(SparkSqlParser.KW_TABLE); - this.state = 478; + this.state = 484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 477; + this.state = 483; this.ifNotExists(); } break; } - this.state = 480; + this.state = 486; (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); - this.state = 481; + this.state = 487; this.match(SparkSqlParser.KW_LIKE); - this.state = 482; + this.state = 488; (localContext as CreateTableLikeContext)._source = this.tableName(); - this.state = 493; + this.state = 499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 162 || _la === 170 || _la === 257 || _la === 283 || _la === 297 || _la === 332) { { - this.state = 491; + this.state = 497; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_USING: { - this.state = 483; + this.state = 489; this.tableProvider(); } break; case SparkSqlParser.KW_ROW: { - this.state = 484; + this.state = 490; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 485; + this.state = 491; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { { - this.state = 486; + this.state = 492; this.match(SparkSqlParser.KW_LOCATION); - this.state = 487; + this.state = 493; this.stringLit(); } } @@ -1330,16 +1334,16 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 488; + this.state = 494; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 489; + this.state = 495; (localContext as CreateTableLikeContext)._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 490; + this.state = 496; this.tableLifecycle(); } break; @@ -1347,7 +1351,7 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 495; + this.state = 501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1357,66 +1361,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ReplaceTableContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 498; + this.state = 504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 496; + this.state = 502; this.match(SparkSqlParser.KW_CREATE); - this.state = 497; + this.state = 503; this.match(SparkSqlParser.KW_OR); } } - this.state = 500; + this.state = 506; this.match(SparkSqlParser.KW_REPLACE); - this.state = 501; + this.state = 507; this.match(SparkSqlParser.KW_TABLE); - this.state = 502; + this.state = 508; this.tableNameCreate(); - this.state = 507; + this.state = 513; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 503; + this.state = 509; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 504; + this.state = 510; this.createOrReplaceTableColTypeList(); - this.state = 505; + this.state = 511; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 510; + this.state = 516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 509; + this.state = 515; this.tableProvider(); } } - this.state = 512; + this.state = 518; this.createTableClauses(); - this.state = 517; + this.state = 523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 514; + this.state = 520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 513; + this.state = 519; this.match(SparkSqlParser.KW_AS); } } - this.state = 516; + this.state = 522; this.query(); } break; @@ -1427,52 +1431,52 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 519; + this.state = 525; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 520; + this.state = 526; this.match(SparkSqlParser.KW_TABLE); - this.state = 521; + this.state = 527; this.tableName(); - this.state = 523; + this.state = 529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 522; + this.state = 528; this.partitionSpec(); } } - this.state = 525; + this.state = 531; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 526; + this.state = 532; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 534; + this.state = 540; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 527; + this.state = 533; this.match(SparkSqlParser.KW_NOSCAN); } break; case 2: { - this.state = 528; + this.state = 534; this.match(SparkSqlParser.KW_FOR); - this.state = 529; + this.state = 535; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 530; + this.state = 536; this.columnNameSeq(); } break; case 3: { - this.state = 531; + this.state = 537; this.match(SparkSqlParser.KW_FOR); - this.state = 532; + this.state = 538; this.match(SparkSqlParser.KW_ALL); - this.state = 533; + this.state = 539; this.match(SparkSqlParser.KW_COLUMNS); } break; @@ -1483,16 +1487,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeTablesContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 536; + this.state = 542; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 537; + this.state = 543; this.match(SparkSqlParser.KW_TABLES); - this.state = 540; + this.state = 546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 538; + this.state = 544; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1501,21 +1505,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 539; + this.state = 545; this.namespaceName(); } } - this.state = 542; + this.state = 548; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 543; + this.state = 549; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 545; + this.state = 551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 544; + this.state = 550; this.match(SparkSqlParser.KW_NOSCAN); } } @@ -1526,17 +1530,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 547; + this.state = 553; this.match(SparkSqlParser.KW_ALTER); - this.state = 548; + this.state = 554; this.match(SparkSqlParser.KW_TABLE); - this.state = 549; + this.state = 555; this.tableName(); - this.state = 550; + this.state = 556; this.match(SparkSqlParser.KW_ADD); - this.state = 551; + this.state = 557; this.match(SparkSqlParser.KW_COLUMN); - this.state = 552; + this.state = 558; this.qualifiedColTypeWithPositionForAdd(); } break; @@ -1544,21 +1548,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnsContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 554; + this.state = 560; this.match(SparkSqlParser.KW_ALTER); - this.state = 555; + this.state = 561; this.match(SparkSqlParser.KW_TABLE); - this.state = 556; + this.state = 562; this.tableName(); - this.state = 557; + this.state = 563; this.match(SparkSqlParser.KW_ADD); - this.state = 558; + this.state = 564; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 559; + this.state = 565; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 560; + this.state = 566; this.qualifiedColTypeWithPositionSeqForAdd(); - this.state = 561; + this.state = 567; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1566,21 +1570,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 563; + this.state = 569; this.match(SparkSqlParser.KW_ALTER); - this.state = 564; + this.state = 570; this.match(SparkSqlParser.KW_TABLE); - this.state = 565; + this.state = 571; (localContext as RenameTableColumnContext)._table = this.tableName(); - this.state = 566; + this.state = 572; this.match(SparkSqlParser.KW_RENAME); - this.state = 567; + this.state = 573; this.match(SparkSqlParser.KW_COLUMN); - this.state = 568; + this.state = 574; this.columnName(); - this.state = 569; + this.state = 575; this.match(SparkSqlParser.KW_TO); - this.state = 570; + this.state = 576; this.columnNameCreate(); } break; @@ -1588,27 +1592,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableDropColumnContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 572; + this.state = 578; this.match(SparkSqlParser.KW_ALTER); - this.state = 573; + this.state = 579; this.match(SparkSqlParser.KW_TABLE); - this.state = 574; + this.state = 580; this.tableName(); - this.state = 575; + this.state = 581; this.match(SparkSqlParser.KW_DROP); - this.state = 576; + this.state = 582; this.match(SparkSqlParser.KW_COLUMN); - this.state = 578; + this.state = 584; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 577; + this.state = 583; this.ifExists(); } break; } - this.state = 580; + this.state = 586; this.columnName(); } break; @@ -1616,31 +1620,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableColumnsContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 582; + this.state = 588; this.match(SparkSqlParser.KW_ALTER); - this.state = 583; + this.state = 589; this.match(SparkSqlParser.KW_TABLE); - this.state = 584; + this.state = 590; this.tableName(); - this.state = 585; + this.state = 591; this.match(SparkSqlParser.KW_DROP); - this.state = 586; + this.state = 592; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 588; + this.state = 594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 587; + this.state = 593; this.ifExists(); } } - this.state = 590; + this.state = 596; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 591; + this.state = 597; this.columnNameSeq(); - this.state = 592; + this.state = 598; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1648,35 +1652,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 594; + this.state = 600; this.match(SparkSqlParser.KW_ALTER); - this.state = 599; + this.state = 605; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 595; + this.state = 601; this.match(SparkSqlParser.KW_TABLE); - this.state = 596; + this.state = 602; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 597; + this.state = 603; this.match(SparkSqlParser.KW_VIEW); - this.state = 598; + this.state = 604; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 601; + this.state = 607; this.match(SparkSqlParser.KW_RENAME); - this.state = 602; + this.state = 608; this.match(SparkSqlParser.KW_TO); - this.state = 603; + this.state = 609; this.multipartIdentifier(); } break; @@ -1684,35 +1688,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 605; + this.state = 611; this.match(SparkSqlParser.KW_ALTER); - this.state = 610; + this.state = 616; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 606; + this.state = 612; this.match(SparkSqlParser.KW_TABLE); - this.state = 607; + this.state = 613; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 608; + this.state = 614; this.match(SparkSqlParser.KW_VIEW); - this.state = 609; + this.state = 615; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 612; + this.state = 618; this.match(SparkSqlParser.KW_SET); - this.state = 613; + this.state = 619; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 614; + this.state = 620; this.propertyList(); } break; @@ -1720,45 +1724,45 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 616; + this.state = 622; this.match(SparkSqlParser.KW_ALTER); - this.state = 621; + this.state = 627; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 617; + this.state = 623; this.match(SparkSqlParser.KW_TABLE); - this.state = 618; + this.state = 624; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 619; + this.state = 625; this.match(SparkSqlParser.KW_VIEW); - this.state = 620; + this.state = 626; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 623; + this.state = 629; this.match(SparkSqlParser.KW_UNSET); - this.state = 624; + this.state = 630; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 626; + this.state = 632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 625; + this.state = 631; this.ifExists(); } } - this.state = 628; + this.state = 634; this.propertyList(); } break; @@ -1766,13 +1770,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAlterColumnContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 630; + this.state = 636; this.match(SparkSqlParser.KW_ALTER); - this.state = 631; + this.state = 637; this.match(SparkSqlParser.KW_TABLE); - this.state = 632; + this.state = 638; (localContext as AlterTableAlterColumnContext)._table = this.tableName(); - this.state = 633; + this.state = 639; _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 39)) { this.errorHandler.recoverInline(this); @@ -1781,24 +1785,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 635; + this.state = 641; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 634; + this.state = 640; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 637; + this.state = 643; (localContext as AlterTableAlterColumnContext)._column = this.columnName(); - this.state = 639; + this.state = 645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 638; + this.state = 644; this.alterColumnAction(); } break; @@ -1809,44 +1813,44 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveChangeColumnContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 641; + this.state = 647; this.match(SparkSqlParser.KW_ALTER); - this.state = 642; + this.state = 648; this.match(SparkSqlParser.KW_TABLE); - this.state = 643; + this.state = 649; (localContext as HiveChangeColumnContext)._table = this.tableName(); - this.state = 645; + this.state = 651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 644; + this.state = 650; this.partitionSpec(); } } - this.state = 647; + this.state = 653; this.match(SparkSqlParser.KW_CHANGE); - this.state = 649; + this.state = 655; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 648; + this.state = 654; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 651; + this.state = 657; (localContext as HiveChangeColumnContext)._colName = this.columnName(); - this.state = 652; + this.state = 658; this.columnType(); - this.state = 654; + this.state = 660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 116) { { - this.state = 653; + this.state = 659; this.colPosition(); } } @@ -1857,31 +1861,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveReplaceColumnsContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 656; + this.state = 662; this.match(SparkSqlParser.KW_ALTER); - this.state = 657; + this.state = 663; this.match(SparkSqlParser.KW_TABLE); - this.state = 658; + this.state = 664; (localContext as HiveReplaceColumnsContext)._table = this.tableName(); - this.state = 660; + this.state = 666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 659; + this.state = 665; this.partitionSpec(); } } - this.state = 662; + this.state = 668; this.match(SparkSqlParser.KW_REPLACE); - this.state = 663; + this.state = 669; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 664; + this.state = 670; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 665; + this.state = 671; this.qualifiedColTypeWithPositionSeqForReplace(); - this.state = 666; + this.state = 672; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1889,38 +1893,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDeContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 668; + this.state = 674; this.match(SparkSqlParser.KW_ALTER); - this.state = 669; + this.state = 675; this.match(SparkSqlParser.KW_TABLE); - this.state = 670; + this.state = 676; this.tableName(); - this.state = 672; + this.state = 678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 671; + this.state = 677; this.partitionSpec(); } } - this.state = 674; + this.state = 680; this.match(SparkSqlParser.KW_SET); - this.state = 675; + this.state = 681; this.match(SparkSqlParser.KW_SERDE); - this.state = 676; + this.state = 682; this.stringLit(); - this.state = 680; + this.state = 686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: { - this.state = 677; + this.state = 683; this.match(SparkSqlParser.KW_WITH); - this.state = 678; + this.state = 684; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 679; + this.state = 685; this.propertyList(); } break; @@ -1931,27 +1935,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDePropertiesContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 682; + this.state = 688; this.match(SparkSqlParser.KW_ALTER); - this.state = 683; + this.state = 689; this.match(SparkSqlParser.KW_TABLE); - this.state = 684; + this.state = 690; this.tableName(); - this.state = 686; + this.state = 692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 685; + this.state = 691; this.partitionSpec(); } } - this.state = 688; + this.state = 694; this.match(SparkSqlParser.KW_SET); - this.state = 689; + this.state = 695; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 690; + this.state = 696; this.propertyList(); } break; @@ -1959,53 +1963,53 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AddTablePartitionContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 692; + this.state = 698; this.match(SparkSqlParser.KW_ALTER); - this.state = 697; + this.state = 703; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 693; + this.state = 699; this.match(SparkSqlParser.KW_TABLE); - this.state = 694; + this.state = 700; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 695; + this.state = 701; this.match(SparkSqlParser.KW_VIEW); - this.state = 696; + this.state = 702; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 699; + this.state = 705; this.match(SparkSqlParser.KW_ADD); - this.state = 701; + this.state = 707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 700; + this.state = 706; this.ifNotExists(); } } - this.state = 704; + this.state = 710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 703; + this.state = 709; this.partitionSpecLocation(); } } - this.state = 706; + this.state = 712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 217); @@ -2015,19 +2019,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTablePartitionContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 708; + this.state = 714; this.match(SparkSqlParser.KW_ALTER); - this.state = 709; + this.state = 715; this.match(SparkSqlParser.KW_TABLE); - this.state = 710; + this.state = 716; this.tableName(); - this.state = 711; + this.state = 717; this.partitionSpec(); - this.state = 712; + this.state = 718; this.match(SparkSqlParser.KW_RENAME); - this.state = 713; + this.state = 719; this.match(SparkSqlParser.KW_TO); - this.state = 714; + this.state = 720; this.partitionSpec(); } break; @@ -2035,66 +2039,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTablePartitionsContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 716; + this.state = 722; this.match(SparkSqlParser.KW_ALTER); - this.state = 721; + this.state = 727; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 717; + this.state = 723; this.match(SparkSqlParser.KW_TABLE); - this.state = 718; + this.state = 724; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 719; + this.state = 725; this.match(SparkSqlParser.KW_VIEW); - this.state = 720; + this.state = 726; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 723; + this.state = 729; this.match(SparkSqlParser.KW_DROP); - this.state = 725; + this.state = 731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 724; + this.state = 730; this.ifExists(); } } - this.state = 727; + this.state = 733; this.partitionSpec(); - this.state = 732; + this.state = 738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 728; + this.state = 734; this.match(SparkSqlParser.COMMA); - this.state = 729; + this.state = 735; this.partitionSpec(); } } - this.state = 734; + this.state = 740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 736; + this.state = 742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 735; + this.state = 741; this.match(SparkSqlParser.KW_PURGE); } } @@ -2105,27 +2109,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableLocationContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 738; + this.state = 744; this.match(SparkSqlParser.KW_ALTER); - this.state = 739; + this.state = 745; this.match(SparkSqlParser.KW_TABLE); - this.state = 740; + this.state = 746; this.tableName(); - this.state = 742; + this.state = 748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 741; + this.state = 747; this.partitionSpec(); } } - this.state = 744; + this.state = 750; this.match(SparkSqlParser.KW_SET); - this.state = 745; + this.state = 751; this.match(SparkSqlParser.KW_LOCATION); - this.state = 746; + this.state = 752; this.stringLit(); } break; @@ -2133,15 +2137,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RecoverPartitionsContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 748; + this.state = 754; this.match(SparkSqlParser.KW_ALTER); - this.state = 749; + this.state = 755; this.match(SparkSqlParser.KW_TABLE); - this.state = 750; + this.state = 756; this.tableName(); - this.state = 751; + this.state = 757; this.match(SparkSqlParser.KW_RECOVER); - this.state = 752; + this.state = 758; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -2149,15 +2153,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewRewriteContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 754; + this.state = 760; this.match(SparkSqlParser.KW_ALTER); - this.state = 755; + this.state = 761; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 756; + this.state = 762; this.match(SparkSqlParser.KW_VIEW); - this.state = 757; + this.state = 763; this.viewName(); - this.state = 758; + this.state = 764; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 98)) { this.errorHandler.recoverInline(this); @@ -2166,7 +2170,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 759; + this.state = 765; this.match(SparkSqlParser.KW_REWRITE); } break; @@ -2174,19 +2178,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 761; + this.state = 767; this.match(SparkSqlParser.KW_ALTER); - this.state = 762; + this.state = 768; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 763; + this.state = 769; this.match(SparkSqlParser.KW_VIEW); - this.state = 764; + this.state = 770; this.viewName(); - this.state = 765; + this.state = 771; this.match(SparkSqlParser.KW_SET); - this.state = 766; + this.state = 772; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 767; + this.state = 773; this.propertyList(); } break; @@ -2194,28 +2198,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 769; + this.state = 775; this.match(SparkSqlParser.KW_DROP); - this.state = 770; + this.state = 776; this.match(SparkSqlParser.KW_TABLE); - this.state = 772; + this.state = 778; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 771; + this.state = 777; this.ifExists(); } break; } - this.state = 774; + this.state = 780; this.tableName(); - this.state = 776; + this.state = 782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 775; + this.state = 781; this.match(SparkSqlParser.KW_PURGE); } } @@ -2226,21 +2230,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 778; + this.state = 784; this.match(SparkSqlParser.KW_DROP); - this.state = 779; + this.state = 785; this.match(SparkSqlParser.KW_VIEW); - this.state = 781; + this.state = 787; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 780; + this.state = 786; this.ifExists(); } break; } - this.state = 783; + this.state = 789; this.viewName(); } break; @@ -2248,23 +2252,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 784; + this.state = 790; this.match(SparkSqlParser.KW_DROP); - this.state = 785; + this.state = 791; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 786; + this.state = 792; this.match(SparkSqlParser.KW_VIEW); - this.state = 788; + this.state = 794; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 787; + this.state = 793; this.ifExists(); } break; } - this.state = 790; + this.state = 796; this.viewName(); } break; @@ -2272,78 +2276,78 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 791; + this.state = 797; this.match(SparkSqlParser.KW_CREATE); - this.state = 794; + this.state = 800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 792; + this.state = 798; this.match(SparkSqlParser.KW_OR); - this.state = 793; + this.state = 799; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 800; + this.state = 806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128 || _la === 298) { { - this.state = 797; + this.state = 803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 796; + this.state = 802; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 799; + this.state = 805; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 802; + this.state = 808; this.match(SparkSqlParser.KW_VIEW); - this.state = 804; + this.state = 810; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { case 1: { - this.state = 803; + this.state = 809; this.ifNotExists(); } break; } - this.state = 806; + this.state = 812; this.viewNameCreate(); - this.state = 808; + this.state = 814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 807; + this.state = 813; this.identifierCommentList(); } } - this.state = 819; + this.state = 825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 218 || _la === 297) { { - this.state = 817; + this.state = 823; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { { - this.state = 810; + this.state = 816; this.match(SparkSqlParser.KW_COMMENT); - this.state = 811; + this.state = 817; (localContext as CreateViewContext)._comment = this.stringLit(); } } @@ -2351,11 +2355,11 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 812; + this.state = 818; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 813; + this.state = 819; this.match(SparkSqlParser.KW_ON); - this.state = 814; + this.state = 820; this.identifierList(); } } @@ -2363,9 +2367,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 815; + this.state = 821; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 816; + this.state = 822; this.propertyList(); } } @@ -2374,13 +2378,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 821; + this.state = 827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 822; + this.state = 828; this.match(SparkSqlParser.KW_AS); - this.state = 823; + this.state = 829; this.query(); } break; @@ -2388,60 +2392,60 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTempViewUsingContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 825; + this.state = 831; this.match(SparkSqlParser.KW_CREATE); - this.state = 828; + this.state = 834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 826; + this.state = 832; this.match(SparkSqlParser.KW_OR); - this.state = 827; + this.state = 833; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 831; + this.state = 837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 830; + this.state = 836; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 833; + this.state = 839; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 834; + this.state = 840; this.match(SparkSqlParser.KW_VIEW); - this.state = 835; + this.state = 841; this.viewNameCreate(); - this.state = 840; + this.state = 846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 836; + this.state = 842; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 837; + this.state = 843; this.colTypeList(); - this.state = 838; + this.state = 844; this.match(SparkSqlParser.RIGHT_PAREN); } } - this.state = 842; + this.state = 848; this.tableProvider(); - this.state = 845; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 843; + this.state = 849; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 844; + this.state = 850; this.propertyList(); } } @@ -2452,23 +2456,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterViewQueryContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 847; + this.state = 853; this.match(SparkSqlParser.KW_ALTER); - this.state = 848; + this.state = 854; this.match(SparkSqlParser.KW_VIEW); - this.state = 849; + this.state = 855; this.viewName(); - this.state = 851; + this.state = 857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 850; + this.state = 856; this.match(SparkSqlParser.KW_AS); } } - this.state = 853; + this.state = 859; this.query(); } break; @@ -2476,78 +2480,78 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 855; + this.state = 861; this.match(SparkSqlParser.KW_CREATE); - this.state = 858; + this.state = 864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 856; + this.state = 862; this.match(SparkSqlParser.KW_OR); - this.state = 857; + this.state = 863; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 861; + this.state = 867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 860; + this.state = 866; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 863; + this.state = 869; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 865; + this.state = 871; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 864; + this.state = 870; this.ifNotExists(); } break; } - this.state = 867; + this.state = 873; this.functionNameCreate(); - this.state = 868; + this.state = 874; this.match(SparkSqlParser.KW_AS); - this.state = 869; + this.state = 875; (localContext as CreateFunctionContext)._className = this.stringLit(); - this.state = 883; + this.state = 889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 870; + this.state = 876; this.match(SparkSqlParser.KW_USING); { - this.state = 871; + this.state = 877; this.identifier(); - this.state = 872; + this.state = 878; this.stringLit(); } - this.state = 880; + this.state = 886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 874; + this.state = 880; this.match(SparkSqlParser.COMMA); { - this.state = 875; + this.state = 881; this.identifier(); - this.state = 876; + this.state = 882; this.stringLit(); } } } - this.state = 882; + this.state = 888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2560,48 +2564,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 885; + this.state = 891; this.match(SparkSqlParser.KW_CREATE); - this.state = 886; + this.state = 892; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 887; + this.state = 893; this.match(SparkSqlParser.KW_VIEW); - this.state = 889; + this.state = 895; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 888; + this.state = 894; this.ifNotExists(); } break; } - this.state = 891; + this.state = 897; this.viewNameCreate(); - this.state = 893; + this.state = 899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 892; + this.state = 898; this.tableProvider(); } } - this.state = 912; + this.state = 918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 45 || _la === 51 || _la === 170 || _la === 207 || _la === 218 || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 67371009) !== 0) || _la === 297) { { - this.state = 910; + this.state = 916; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 895; + this.state = 901; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 896; + this.state = 902; (localContext as CreateMaterializedViewContext)._options = this.propertyList(); } } @@ -2609,45 +2613,45 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 897; + this.state = 903; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 898; + this.state = 904; this.match(SparkSqlParser.KW_BY); - this.state = 899; + this.state = 905; (localContext as CreateMaterializedViewContext)._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 900; + this.state = 906; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 901; + this.state = 907; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 902; + this.state = 908; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 903; + this.state = 909; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { { - this.state = 904; + this.state = 910; this.match(SparkSqlParser.KW_LOCATION); - this.state = 905; + this.state = 911; this.stringLit(); } } @@ -2655,9 +2659,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_COMMENT: { { - this.state = 906; + this.state = 912; this.match(SparkSqlParser.KW_COMMENT); - this.state = 907; + this.state = 913; (localContext as CreateMaterializedViewContext)._comment = this.stringLit(); } } @@ -2665,9 +2669,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 908; + this.state = 914; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 909; + this.state = 915; (localContext as CreateMaterializedViewContext)._tableProps = this.propertyList(); } } @@ -2676,13 +2680,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 914; + this.state = 920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 915; + this.state = 921; this.match(SparkSqlParser.KW_AS); - this.state = 916; + this.state = 922; this.query(); } break; @@ -2690,31 +2694,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 918; + this.state = 924; this.match(SparkSqlParser.KW_DROP); - this.state = 920; + this.state = 926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 919; + this.state = 925; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 922; + this.state = 928; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 924; + this.state = 930; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { case 1: { - this.state = 923; + this.state = 929; this.ifExists(); } break; } - this.state = 926; + this.state = 932; this.functionName(); } break; @@ -2722,48 +2726,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeclareVariableContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 927; + this.state = 933; this.match(SparkSqlParser.KW_DECLARE); - this.state = 930; + this.state = 936; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 928; + this.state = 934; this.match(SparkSqlParser.KW_OR); - this.state = 929; + this.state = 935; this.match(SparkSqlParser.KW_REPLACE); } break; } - this.state = 933; + this.state = 939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 932; + this.state = 938; this.match(SparkSqlParser.KW_VARIABLE); } break; } - this.state = 935; + this.state = 941; this.functionName(); - this.state = 937; + this.state = 943; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 936; + this.state = 942; this.dataType(); } break; } - this.state = 940; + this.state = 946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 352) { { - this.state = 939; + this.state = 945; this.variableDefaultExpression(); } } @@ -2774,40 +2778,40 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropVariableContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 942; + this.state = 948; this.match(SparkSqlParser.KW_DROP); - this.state = 943; + this.state = 949; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 944; + this.state = 950; this.match(SparkSqlParser.KW_VARIABLE); - this.state = 946; + this.state = 952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 945; + this.state = 951; this.ifExists(); } break; } - this.state = 951; + this.state = 957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 948; + this.state = 954; this.tableName(); } break; case 2: { - this.state = 949; + this.state = 955; this.viewName(); } break; case 3: { - this.state = 950; + this.state = 956; this.functionName(); } break; @@ -2818,14 +2822,14 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ExplainStatementContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 953; + this.state = 959; this.match(SparkSqlParser.KW_EXPLAIN); - this.state = 955; + this.state = 961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173) { { - this.state = 954; + this.state = 960; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173)) { this.errorHandler.recoverInline(this); @@ -2837,7 +2841,7 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 957; + this.state = 963; this.statement(); } break; @@ -2845,16 +2849,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 958; + this.state = 964; this.match(SparkSqlParser.KW_SHOW); - this.state = 959; + this.state = 965; this.match(SparkSqlParser.KW_TABLES); - this.state = 962; + this.state = 968; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 960; + this.state = 966; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2863,27 +2867,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 961; + this.state = 967; this.namespaceName(); } break; } - this.state = 968; + this.state = 974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 965; + this.state = 971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 964; + this.state = 970; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 967; + this.state = 973; (localContext as ShowTablesContext)._pattern = this.stringLit(); } } @@ -2894,18 +2898,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTableExtendedContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 970; + this.state = 976; this.match(SparkSqlParser.KW_SHOW); - this.state = 971; + this.state = 977; this.match(SparkSqlParser.KW_TABLE); - this.state = 972; + this.state = 978; this.match(SparkSqlParser.KW_EXTENDED); - this.state = 975; + this.state = 981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 973; + this.state = 979; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2914,21 +2918,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 974; + this.state = 980; (localContext as ShowTableExtendedContext)._ns = this.namespaceName(); } } - this.state = 977; + this.state = 983; this.match(SparkSqlParser.KW_LIKE); - this.state = 978; + this.state = 984; (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); - this.state = 980; + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 979; + this.state = 985; this.partitionSpec(); } } @@ -2939,22 +2943,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTblPropertiesContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 982; + this.state = 988; this.match(SparkSqlParser.KW_SHOW); - this.state = 983; + this.state = 989; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 984; + this.state = 990; (localContext as ShowTblPropertiesContext)._table = this.tableName(); - this.state = 989; + this.state = 995; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 985; + this.state = 991; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 986; + this.state = 992; (localContext as ShowTblPropertiesContext)._key = this.propertyKey(); - this.state = 987; + this.state = 993; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -2965,11 +2969,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 991; + this.state = 997; this.match(SparkSqlParser.KW_SHOW); - this.state = 992; + this.state = 998; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 993; + this.state = 999; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2978,14 +2982,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 994; + this.state = 1000; (localContext as ShowColumnsContext)._table = this.tableName(); - this.state = 997; + this.state = 1003; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: { - this.state = 995; + this.state = 1001; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2994,7 +2998,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 996; + this.state = 1002; this.namespaceName(); } break; @@ -3005,16 +3009,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowViewsContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 999; + this.state = 1005; this.match(SparkSqlParser.KW_SHOW); - this.state = 1000; + this.state = 1006; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1003; + this.state = 1009; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 1001; + this.state = 1007; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3023,27 +3027,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1002; + this.state = 1008; this.namespaceName(); } break; } - this.state = 1009; + this.state = 1015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1006; + this.state = 1012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1005; + this.state = 1011; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1008; + this.state = 1014; (localContext as ShowViewsContext)._pattern = this.stringLit(); } } @@ -3054,18 +3058,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowPartitionsContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 1011; + this.state = 1017; this.match(SparkSqlParser.KW_SHOW); - this.state = 1012; + this.state = 1018; this.match(SparkSqlParser.KW_PARTITIONS); - this.state = 1013; + this.state = 1019; this.tableName(); - this.state = 1015; + this.state = 1021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1014; + this.state = 1020; this.partitionSpec(); } } @@ -3076,14 +3080,14 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1017; + this.state = 1023; this.match(SparkSqlParser.KW_SHOW); - this.state = 1019; + this.state = 1025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 290 || _la === 331) { { - this.state = 1018; + this.state = 1024; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 290 || _la === 331)) { this.errorHandler.recoverInline(this); @@ -3095,14 +3099,14 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1021; + this.state = 1027; this.match(SparkSqlParser.KW_FUNCTIONS); - this.state = 1024; + this.state = 1030; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1022; + this.state = 1028; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3111,38 +3115,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1023; + this.state = 1029; (localContext as ShowFunctionsContext)._ns = this.namespaceName(); } break; } - this.state = 1033; + this.state = 1039; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1027; + this.state = 1033; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1026; + this.state = 1032; this.match(SparkSqlParser.KW_LIKE); } break; } - this.state = 1031; + this.state = 1037; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1029; + this.state = 1035; (localContext as ShowFunctionsContext)._legacy = this.multipartIdentifier(); } break; case 2: { - this.state = 1030; + this.state = 1036; (localContext as ShowFunctionsContext)._pattern = this.stringLit(); } break; @@ -3156,22 +3160,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 1035; + this.state = 1041; this.match(SparkSqlParser.KW_SHOW); - this.state = 1036; + this.state = 1042; this.match(SparkSqlParser.KW_CREATE); - this.state = 1037; + this.state = 1043; this.match(SparkSqlParser.KW_TABLE); - this.state = 1038; + this.state = 1044; this.tableName(); - this.state = 1041; + this.state = 1047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1039; + this.state = 1045; this.match(SparkSqlParser.KW_AS); - this.state = 1040; + this.state = 1046; this.match(SparkSqlParser.KW_SERDE); } } @@ -3182,11 +3186,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCurrentNamespaceContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1043; + this.state = 1049; this.match(SparkSqlParser.KW_SHOW); - this.state = 1044; + this.state = 1050; this.match(SparkSqlParser.KW_CURRENT); - this.state = 1045; + this.state = 1051; this.namespace(); } break; @@ -3194,26 +3198,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1046; + this.state = 1052; this.match(SparkSqlParser.KW_SHOW); - this.state = 1047; + this.state = 1053; this.match(SparkSqlParser.KW_CATALOGS); - this.state = 1052; + this.state = 1058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1049; + this.state = 1055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1048; + this.state = 1054; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1051; + this.state = 1057; (localContext as ShowCatalogsContext)._pattern = this.stringLit(); } } @@ -3224,18 +3228,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowMaterializedViewsContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1054; + this.state = 1060; this.match(SparkSqlParser.KW_SHOW); - this.state = 1055; + this.state = 1061; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1056; + this.state = 1062; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1059; + this.state = 1065; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1057; + this.state = 1063; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3244,27 +3248,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1058; + this.state = 1064; (localContext as ShowMaterializedViewsContext)._db_name = this.namespaceName(); } break; } - this.state = 1065; + this.state = 1071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1062; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1061; + this.state = 1067; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1064; + this.state = 1070; (localContext as ShowMaterializedViewsContext)._pattern = this.stringLit(); } } @@ -3275,24 +3279,24 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1067; + this.state = 1073; this.match(SparkSqlParser.KW_SHOW); - this.state = 1068; + this.state = 1074; this.match(SparkSqlParser.KW_CREATE); - this.state = 1069; + this.state = 1075; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1070; + this.state = 1076; this.match(SparkSqlParser.KW_VIEW); - this.state = 1071; + this.state = 1077; this.viewName(); - this.state = 1074; + this.state = 1080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1072; + this.state = 1078; this.match(SparkSqlParser.KW_AS); - this.state = 1073; + this.state = 1079; this.match(SparkSqlParser.KW_SERDE); } } @@ -3303,7 +3307,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeFunctionContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1076; + this.state = 1082; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3312,19 +3316,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1077; + this.state = 1083; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1079; + this.state = 1085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1078; + this.state = 1084; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1081; + this.state = 1087; this.describeFuncName(); } break; @@ -3332,7 +3336,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeNamespaceContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1082; + this.state = 1088; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3341,19 +3345,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1083; + this.state = 1089; this.match(SparkSqlParser.KW_DATABASE); - this.state = 1085; + this.state = 1091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1084; + this.state = 1090; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1087; + this.state = 1093; this.namespaceName(); } break; @@ -3361,7 +3365,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeRelationContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1088; + this.state = 1094; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3370,22 +3374,22 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1090; + this.state = 1096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1089; + this.state = 1095; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1093; + this.state = 1099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1092; + this.state = 1098; (localContext as DescribeRelationContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 122)) { @@ -3398,24 +3402,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1095; + this.state = 1101; this.tableName(); - this.state = 1097; + this.state = 1103; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1096; + this.state = 1102; this.partitionSpec(); } break; } - this.state = 1100; + this.state = 1106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1099; + this.state = 1105; this.describeColName(); } break; @@ -3426,7 +3430,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeQueryContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1102; + this.state = 1108; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3435,17 +3439,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1104; + this.state = 1110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 1103; + this.state = 1109; this.match(SparkSqlParser.KW_QUERY); } } - this.state = 1106; + this.state = 1112; this.query(); } break; @@ -3453,11 +3457,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1107; + this.state = 1113; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1108; - this.match(SparkSqlParser.KW_ON); this.state = 1114; + this.match(SparkSqlParser.KW_ON); + this.state = 1120; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DATABASE: @@ -3465,9 +3469,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SCHEMA: { { - this.state = 1109; + this.state = 1115; this.namespace(); - this.state = 1110; + this.state = 1116; this.namespaceName(); } } @@ -3475,9 +3479,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TABLE: { { - this.state = 1112; + this.state = 1118; this.match(SparkSqlParser.KW_TABLE); - this.state = 1113; + this.state = 1119; this.tableName(); } } @@ -3485,21 +3489,21 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1116; + this.state = 1122; this.match(SparkSqlParser.KW_IS); - this.state = 1119; + this.state = 1125; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 1117; + this.state = 1123; this.stringLit(); } break; case SparkSqlParser.KW_NULL: { - this.state = 1118; + this.state = 1124; this.match(SparkSqlParser.KW_NULL); } break; @@ -3512,11 +3516,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshTableContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1121; + this.state = 1127; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1122; + this.state = 1128; this.match(SparkSqlParser.KW_TABLE); - this.state = 1123; + this.state = 1129; this.tableName(); } break; @@ -3524,11 +3528,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshFunctionContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1124; + this.state = 1130; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1125; + this.state = 1131; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1126; + this.state = 1132; this.functionName(); } break; @@ -3536,32 +3540,32 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshResourceContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1127; + this.state = 1133; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1135; + this.state = 1141; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1128; + this.state = 1134; this.stringLit(); } break; case 2: { - this.state = 1132; + this.state = 1138; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1129; + this.state = 1135; this.matchWildcard(); } } } - this.state = 1134; + this.state = 1140; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); } @@ -3574,13 +3578,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1137; + this.state = 1143; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1138; + this.state = 1144; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1139; + this.state = 1145; this.match(SparkSqlParser.KW_VIEW); - this.state = 1140; + this.state = 1146; this.viewName(); } break; @@ -3588,50 +3592,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CacheTableContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1141; + this.state = 1147; this.match(SparkSqlParser.KW_CACHE); - this.state = 1143; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 1142; + this.state = 1148; this.match(SparkSqlParser.KW_LAZY); } } - this.state = 1145; + this.state = 1151; this.match(SparkSqlParser.KW_TABLE); - this.state = 1146; + this.state = 1152; this.tableName(); - this.state = 1149; + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1147; + this.state = 1153; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1148; + this.state = 1154; (localContext as CacheTableContext)._options = this.propertyList(); } } - this.state = 1155; + this.state = 1161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1152; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1151; + this.state = 1157; this.match(SparkSqlParser.KW_AS); } } - this.state = 1154; + this.state = 1160; this.query(); } break; @@ -3642,21 +3646,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnCacheTableContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1157; + this.state = 1163; this.match(SparkSqlParser.KW_UNCACHE); - this.state = 1158; + this.state = 1164; this.match(SparkSqlParser.KW_TABLE); - this.state = 1160; + this.state = 1166; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1159; + this.state = 1165; this.ifExists(); } break; } - this.state = 1162; + this.state = 1168; this.tableName(); } break; @@ -3664,9 +3668,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ClearCacheContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1163; + this.state = 1169; this.match(SparkSqlParser.KW_CLEAR); - this.state = 1164; + this.state = 1170; this.match(SparkSqlParser.KW_CACHE); } break; @@ -3674,46 +3678,46 @@ export class SparkSqlParser extends SQLParserBase { localContext = new LoadDataContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1165; + this.state = 1171; this.match(SparkSqlParser.KW_LOAD); - this.state = 1166; + this.state = 1172; this.match(SparkSqlParser.KW_DATA); - this.state = 1168; + this.state = 1174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1167; + this.state = 1173; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1170; + this.state = 1176; this.match(SparkSqlParser.KW_INPATH); - this.state = 1171; + this.state = 1177; (localContext as LoadDataContext)._path = this.stringLit(); - this.state = 1173; + this.state = 1179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1172; + this.state = 1178; this.match(SparkSqlParser.KW_OVERWRITE); } } - this.state = 1175; + this.state = 1181; this.match(SparkSqlParser.KW_INTO); - this.state = 1176; + this.state = 1182; this.match(SparkSqlParser.KW_TABLE); - this.state = 1177; + this.state = 1183; this.tableName(); - this.state = 1179; + this.state = 1185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1178; + this.state = 1184; this.partitionSpec(); } } @@ -3724,18 +3728,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1181; + this.state = 1187; this.match(SparkSqlParser.KW_TRUNCATE); - this.state = 1182; + this.state = 1188; this.match(SparkSqlParser.KW_TABLE); - this.state = 1183; + this.state = 1189; this.tableName(); - this.state = 1185; + this.state = 1191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1184; + this.state = 1190; this.partitionSpec(); } } @@ -3746,28 +3750,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RepairTableContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1188; + this.state = 1194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1187; + this.state = 1193; this.match(SparkSqlParser.KW_MSCK); } } - this.state = 1190; + this.state = 1196; this.match(SparkSqlParser.KW_REPAIR); - this.state = 1191; + this.state = 1197; this.match(SparkSqlParser.KW_TABLE); - this.state = 1192; + this.state = 1198; this.tableName(); - this.state = 1195; + this.state = 1201; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1193; + this.state = 1199; (localContext as RepairTableContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 96 || _la === 289)) { @@ -3777,7 +3781,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1194; + this.state = 1200; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -3788,7 +3792,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ManageResourceContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1197; + this.state = 1203; (localContext as ManageResourceContext)._op = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 167)) { @@ -3798,21 +3802,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1198; + this.state = 1204; this.identifier(); - this.state = 1202; + this.state = 1208; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1199; + this.state = 1205; this.matchWildcard(); } } } - this.state = 1204; + this.state = 1210; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } @@ -3822,23 +3826,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new FailNativeCommandContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1205; + this.state = 1211; this.match(SparkSqlParser.KW_SET); - this.state = 1206; + this.state = 1212; this.match(SparkSqlParser.KW_ROLE); - this.state = 1210; + this.state = 1216; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1207; + this.state = 1213; this.matchWildcard(); } } } - this.state = 1212; + this.state = 1218; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } @@ -3848,13 +3852,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1213; + this.state = 1219; this.match(SparkSqlParser.KW_SET); - this.state = 1214; + this.state = 1220; this.match(SparkSqlParser.KW_TIME); - this.state = 1215; + this.state = 1221; this.match(SparkSqlParser.KW_ZONE); - this.state = 1216; + this.state = 1222; this.interval(); } break; @@ -3862,25 +3866,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1217; + this.state = 1223; this.match(SparkSqlParser.KW_SET); - this.state = 1218; + this.state = 1224; this.match(SparkSqlParser.KW_TIME); - this.state = 1219; + this.state = 1225; this.match(SparkSqlParser.KW_ZONE); - this.state = 1222; + this.state = 1228; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 1220; + this.state = 1226; this.stringLit(); } break; case SparkSqlParser.KW_LOCAL: { - this.state = 1221; + this.state = 1227; this.match(SparkSqlParser.KW_LOCAL); } break; @@ -3893,25 +3897,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneAnyContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1224; + this.state = 1230; this.match(SparkSqlParser.KW_SET); - this.state = 1225; + this.state = 1231; this.match(SparkSqlParser.KW_TIME); - this.state = 1226; + this.state = 1232; this.match(SparkSqlParser.KW_ZONE); - this.state = 1230; + this.state = 1236; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1227; + this.state = 1233; this.matchWildcard(); } } } - this.state = 1232; + this.state = 1238; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); } @@ -3921,9 +3925,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableAssignmentContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1233; + this.state = 1239; this.match(SparkSqlParser.KW_SET); - this.state = 1234; + this.state = 1240; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3932,7 +3936,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1235; + this.state = 1241; this.assignmentList(); } break; @@ -3940,9 +3944,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableMultiAssignmentContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1236; + this.state = 1242; this.match(SparkSqlParser.KW_SET); - this.state = 1237; + this.state = 1243; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3951,19 +3955,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1238; + this.state = 1244; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1239; + this.state = 1245; this.multipartIdentifierList(); - this.state = 1240; + this.state = 1246; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1241; + this.state = 1247; this.match(SparkSqlParser.EQ); - this.state = 1242; + this.state = 1248; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1243; + this.state = 1249; this.query(); - this.state = 1244; + this.state = 1250; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -3971,13 +3975,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1246; + this.state = 1252; this.match(SparkSqlParser.KW_SET); - this.state = 1247; + this.state = 1253; this.quotedIdentifier(); - this.state = 1248; + this.state = 1254; this.match(SparkSqlParser.EQ); - this.state = 1249; + this.state = 1255; this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -3985,30 +3989,30 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAndValueContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1251; + this.state = 1257; this.match(SparkSqlParser.KW_SET); - this.state = 1252; + this.state = 1258; this.quotedIdentifier(); - this.state = 1260; + this.state = 1266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1253; + this.state = 1259; this.match(SparkSqlParser.EQ); - this.state = 1257; + this.state = 1263; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 138, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1254; + this.state = 1260; this.matchWildcard(); } } } - this.state = 1259; + this.state = 1265; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 138, this.context); } @@ -4021,27 +4025,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAnyKeyContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1262; + this.state = 1268; this.match(SparkSqlParser.KW_SET); - this.state = 1266; + this.state = 1272; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1263; + this.state = 1269; this.matchWildcard(); } } } - this.state = 1268; + this.state = 1274; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); } - this.state = 1269; + this.state = 1275; this.match(SparkSqlParser.EQ); - this.state = 1270; + this.state = 1276; this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -4049,21 +4053,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetAnyContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1271; + this.state = 1277; this.match(SparkSqlParser.KW_SET); - this.state = 1275; + this.state = 1281; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1272; + this.state = 1278; this.matchWildcard(); } } } - this.state = 1277; + this.state = 1283; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); } @@ -4073,9 +4077,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetConfigContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1278; + this.state = 1284; this.match(SparkSqlParser.KW_RESET); - this.state = 1279; + this.state = 1285; this.quotedIdentifier(); } break; @@ -4083,21 +4087,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetAnyContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1280; + this.state = 1286; this.match(SparkSqlParser.KW_RESET); - this.state = 1284; + this.state = 1290; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1281; + this.state = 1287; this.matchWildcard(); } } } - this.state = 1286; + this.state = 1292; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); } @@ -4107,62 +4111,62 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateIndexContext(localContext); this.enterOuterAlt(localContext, 87); { - this.state = 1287; + this.state = 1293; this.match(SparkSqlParser.KW_CREATE); - this.state = 1288; + this.state = 1294; this.match(SparkSqlParser.KW_INDEX); - this.state = 1290; + this.state = 1296; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1289; + this.state = 1295; this.ifNotExists(); } break; } - this.state = 1292; + this.state = 1298; this.identifier(); - this.state = 1293; + this.state = 1299; this.match(SparkSqlParser.KW_ON); - this.state = 1295; + this.state = 1301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1294; + this.state = 1300; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1297; + this.state = 1303; this.tableName(); - this.state = 1300; + this.state = 1306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1298; + this.state = 1304; this.match(SparkSqlParser.KW_USING); - this.state = 1299; + this.state = 1305; (localContext as CreateIndexContext)._indexType = this.identifier(); } } - this.state = 1302; + this.state = 1308; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1303; + this.state = 1309; this.multipartIdentifierPropertyList(); - this.state = 1304; + this.state = 1310; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1307; + this.state = 1313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1305; + this.state = 1311; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1306; + this.state = 1312; (localContext as CreateIndexContext)._options = this.propertyList(); } } @@ -4173,35 +4177,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropIndexContext(localContext); this.enterOuterAlt(localContext, 88); { - this.state = 1309; + this.state = 1315; this.match(SparkSqlParser.KW_DROP); - this.state = 1310; + this.state = 1316; this.match(SparkSqlParser.KW_INDEX); - this.state = 1312; + this.state = 1318; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1311; + this.state = 1317; this.ifExists(); } break; } - this.state = 1314; + this.state = 1320; this.identifier(); - this.state = 1315; + this.state = 1321; this.match(SparkSqlParser.KW_ON); - this.state = 1317; + this.state = 1323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1316; + this.state = 1322; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1319; + this.state = 1325; this.tableName(); } break; @@ -4209,21 +4213,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new OptimizeTableContext(localContext); this.enterOuterAlt(localContext, 89); { - this.state = 1321; + this.state = 1327; this.match(SparkSqlParser.KW_OPTIMIZE); - this.state = 1322; + this.state = 1328; this.tableName(); - this.state = 1324; + this.state = 1330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1323; + this.state = 1329; this.whereClause(); } } - this.state = 1326; + this.state = 1332; this.zOrderClause(); } break; @@ -4231,21 +4235,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsupportHiveCommandsContext(localContext); this.enterOuterAlt(localContext, 90); { - this.state = 1328; + this.state = 1334; this.unsupportedHiveNativeCommands(); - this.state = 1332; + this.state = 1338; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1329; + this.state = 1335; this.matchWildcard(); } } } - this.state = 1334; + this.state = 1340; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } @@ -4272,13 +4276,13 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 6, SparkSqlParser.RULE_unsupportedHiveNativeCommands); let _la: number; try { - this.state = 1430; + this.state = 1436; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1337; + this.state = 1343; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 96)) { @@ -4288,14 +4292,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1338; + this.state = 1344; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1339; + this.state = 1345; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 129 || _la === 249)) { @@ -4305,12 +4309,12 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1341; + this.state = 1347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1340; + this.state = 1346; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4320,9 +4324,9 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1343; + this.state = 1349; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1344; + this.state = 1350; localContext._kw2 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 129 || _la === 143 || _la === 172 || _la === 228 || _la === 313)) { @@ -4337,16 +4341,16 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1345; + this.state = 1351; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1346; + this.state = 1352; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); - this.state = 1348; + this.state = 1354; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1347; + this.state = 1353; localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); } break; @@ -4356,37 +4360,37 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1350; + this.state = 1356; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1352; + this.state = 1358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 1351; + this.state = 1357; this.match(SparkSqlParser.KW_CURRENT); } } - this.state = 1354; + this.state = 1360; this.match(SparkSqlParser.KW_ROLES); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1355; + this.state = 1361; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1356; + this.state = 1362; localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1357; + this.state = 1363; localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1358; + this.state = 1364; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 59 || _la === 96)) { @@ -4396,14 +4400,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1359; + this.state = 1365; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1360; + this.state = 1366; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 139 || _la === 171 || _la === 326)) { @@ -4413,14 +4417,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1361; + this.state = 1367; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1362; + this.state = 1368; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 171 || _la === 326)) { @@ -4430,14 +4434,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1363; + this.state = 1369; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1364; + this.state = 1370; localContext._kw1 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 96)) { @@ -4447,24 +4451,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1365; + this.state = 1371; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1366; + this.state = 1372; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1367; + this.state = 1373; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1368; + this.state = 1374; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1369; + this.state = 1375; this.tableName(); - this.state = 1370; + this.state = 1376; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1371; + this.state = 1377; localContext._kw4 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 275 || _la === 279)) { @@ -4479,13 +4483,13 @@ export class SparkSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1373; + this.state = 1379; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1374; + this.state = 1380; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1375; + this.state = 1381; this.tableName(); - this.state = 1376; + this.state = 1382; localContext._kw3 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 275)) { @@ -4495,71 +4499,71 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1377; + this.state = 1383; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1379; + this.state = 1385; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1380; + this.state = 1386; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1381; + this.state = 1387; this.tableName(); - this.state = 1382; + this.state = 1388; localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1383; + this.state = 1389; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1385; + this.state = 1391; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1386; + this.state = 1392; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1387; + this.state = 1393; this.tableName(); - this.state = 1388; + this.state = 1394; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1389; + this.state = 1395; localContext._kw4 = this.match(SparkSqlParser.KW_STORED); - this.state = 1390; + this.state = 1396; localContext._kw5 = this.match(SparkSqlParser.KW_AS); - this.state = 1391; + this.state = 1397; localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1393; + this.state = 1399; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1394; + this.state = 1400; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1395; + this.state = 1401; this.tableName(); - this.state = 1396; + this.state = 1402; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1397; + this.state = 1403; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1398; + this.state = 1404; localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1400; + this.state = 1406; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1401; + this.state = 1407; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1402; + this.state = 1408; this.tableName(); - this.state = 1403; + this.state = 1409; localContext._kw3 = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 103 || _la === 320)) { @@ -4569,63 +4573,63 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1404; + this.state = 1410; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1406; + this.state = 1412; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1407; + this.state = 1413; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1408; + this.state = 1414; this.tableName(); - this.state = 1409; + this.state = 1415; localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1411; + this.state = 1417; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1412; + this.state = 1418; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1413; + this.state = 1419; this.tableName(); - this.state = 1415; + this.state = 1421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1414; + this.state = 1420; this.partitionSpec(); } } - this.state = 1423; + this.state = 1429; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMPACT: { - this.state = 1417; + this.state = 1423; this.match(SparkSqlParser.KW_COMPACT); } break; case SparkSqlParser.KW_CONCATENATE: { - this.state = 1418; + this.state = 1424; this.match(SparkSqlParser.KW_CONCATENATE); } break; case SparkSqlParser.KW_SET: { { - this.state = 1419; + this.state = 1425; this.match(SparkSqlParser.KW_SET); - this.state = 1420; + this.state = 1426; this.match(SparkSqlParser.KW_FILEFORMAT); } } @@ -4633,9 +4637,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_REPLACE: { { - this.state = 1421; + this.state = 1427; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1422; + this.state = 1428; this.match(SparkSqlParser.KW_COLUMNS); } } @@ -4648,30 +4652,30 @@ export class SparkSqlParser extends SQLParserBase { case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1425; + this.state = 1431; localContext._kw1 = this.match(SparkSqlParser.KW_START); - this.state = 1426; + this.state = 1432; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1427; + this.state = 1433; localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1428; + this.state = 1434; localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1429; + this.state = 1435; localContext._kw1 = this.match(SparkSqlParser.KW_DFS); } break; @@ -4698,31 +4702,31 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1432; + this.state = 1438; this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1433; + this.state = 1439; this.match(SparkSqlParser.KW_BY); - this.state = 1434; + this.state = 1440; this.identifierList(); - this.state = 1438; + this.state = 1444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 279) { { - this.state = 1435; + this.state = 1441; this.match(SparkSqlParser.KW_SORTED); - this.state = 1436; + this.state = 1442; this.match(SparkSqlParser.KW_BY); - this.state = 1437; + this.state = 1443; this.orderedIdentifierList(); } } - this.state = 1440; + this.state = 1446; this.match(SparkSqlParser.KW_INTO); - this.state = 1441; + this.state = 1447; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 1442; + this.state = 1448; this.match(SparkSqlParser.KW_BUCKETS); } } @@ -4746,40 +4750,40 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1444; + this.state = 1450; this.match(SparkSqlParser.KW_SKEWED); - this.state = 1445; + this.state = 1451; this.match(SparkSqlParser.KW_BY); - this.state = 1446; + this.state = 1452; this.identifierList(); - this.state = 1447; + this.state = 1453; this.match(SparkSqlParser.KW_ON); - this.state = 1450; + this.state = 1456; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1448; + this.state = 1454; this.constantList(); } break; case 2: { - this.state = 1449; + this.state = 1455; this.nestedConstantList(); } break; } - this.state = 1455; + this.state = 1461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1452; + this.state = 1458; this.match(SparkSqlParser.KW_STORED); - this.state = 1453; + this.state = 1459; this.match(SparkSqlParser.KW_AS); - this.state = 1454; + this.state = 1460; this.match(SparkSqlParser.KW_DIRECTORIES); } break; @@ -4806,9 +4810,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1463; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1458; + this.state = 1464; this.stringLit(); } } @@ -4832,9 +4836,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1460; + this.state = 1466; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1461; + this.state = 1467; localContext._comment = this.stringLit(); } } @@ -4860,19 +4864,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 1463; + this.state = 1469; this.ctes(); } } - this.state = 1466; + this.state = 1472; this.queryTerm(0); - this.state = 1467; + this.state = 1473; this.queryOrganization(); } } @@ -4895,41 +4899,41 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 18, SparkSqlParser.RULE_insertInto); let _la: number; try { - this.state = 1545; + this.state = 1551; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1469; + this.state = 1475; this.match(SparkSqlParser.KW_INSERT); - this.state = 1470; + this.state = 1476; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1472; + this.state = 1478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1471; + this.state = 1477; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1474; + this.state = 1480; this.tableName(); - this.state = 1479; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1475; + this.state = 1481; this.partitionSpec(); - this.state = 1477; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1476; + this.state = 1482; this.ifNotExists(); } } @@ -4937,15 +4941,15 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1487; + this.state = 1493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { { - this.state = 1481; + this.state = 1487; this.match(SparkSqlParser.KW_BY); - this.state = 1482; + this.state = 1488; this.match(SparkSqlParser.KW_NAME); } } @@ -4953,11 +4957,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1483; + this.state = 1489; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1484; + this.state = 1490; this.columnNameSeq(); - this.state = 1485; + this.state = 1491; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -4968,51 +4972,51 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1489; + this.state = 1495; this.match(SparkSqlParser.KW_INSERT); - this.state = 1490; + this.state = 1496; this.match(SparkSqlParser.KW_INTO); - this.state = 1492; + this.state = 1498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1491; + this.state = 1497; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1494; + this.state = 1500; this.tableName(); - this.state = 1496; + this.state = 1502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1495; + this.state = 1501; this.partitionSpec(); } } - this.state = 1499; + this.state = 1505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1498; + this.state = 1504; this.ifNotExists(); } } - this.state = 1507; + this.state = 1513; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { { - this.state = 1501; + this.state = 1507; this.match(SparkSqlParser.KW_BY); - this.state = 1502; + this.state = 1508; this.match(SparkSqlParser.KW_NAME); } } @@ -5020,11 +5024,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1503; + this.state = 1509; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1504; + this.state = 1510; this.columnNameSeq(); - this.state = 1505; + this.state = 1511; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5035,65 +5039,65 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1509; + this.state = 1515; this.match(SparkSqlParser.KW_INSERT); - this.state = 1510; + this.state = 1516; this.match(SparkSqlParser.KW_INTO); - this.state = 1512; + this.state = 1518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1511; + this.state = 1517; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1514; + this.state = 1520; this.tableName(); - this.state = 1515; + this.state = 1521; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1516; + this.state = 1522; this.whereClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1518; + this.state = 1524; this.match(SparkSqlParser.KW_INSERT); - this.state = 1519; + this.state = 1525; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1521; + this.state = 1527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1520; + this.state = 1526; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1523; + this.state = 1529; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1524; + this.state = 1530; localContext._path = this.stringLit(); - this.state = 1526; + this.state = 1532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1525; + this.state = 1531; this.rowFormat(); } } - this.state = 1529; + this.state = 1535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 283) { { - this.state = 1528; + this.state = 1534; this.createFileFormat(); } } @@ -5103,42 +5107,42 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1531; + this.state = 1537; this.match(SparkSqlParser.KW_INSERT); - this.state = 1532; + this.state = 1538; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1534; + this.state = 1540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1533; + this.state = 1539; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1536; + this.state = 1542; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1538; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 377 || _la === 378) { { - this.state = 1537; + this.state = 1543; localContext._path = this.stringLit(); } } - this.state = 1540; + this.state = 1546; this.tableProvider(); - this.state = 1543; + this.state = 1549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1541; + this.state = 1547; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1542; + this.state = 1548; localContext._options = this.propertyList(); } } @@ -5168,16 +5172,16 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1547; + this.state = 1553; this.partitionSpec(); - this.state = 1550; + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 170) { { - this.state = 1548; + this.state = 1554; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1549; + this.state = 1555; this.stringLit(); } } @@ -5205,29 +5209,29 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1552; + this.state = 1558; this.match(SparkSqlParser.KW_PARTITION); - this.state = 1553; + this.state = 1559; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1554; + this.state = 1560; this.partitionVal(); - this.state = 1559; + this.state = 1565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1555; + this.state = 1561; this.match(SparkSqlParser.COMMA); - this.state = 1556; + this.state = 1562; this.partitionVal(); } } - this.state = 1561; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1562; + this.state = 1568; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5250,22 +5254,22 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, SparkSqlParser.RULE_partitionVal); let _la: number; try { - this.state = 1573; + this.state = 1579; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1564; + this.state = 1570; this.identifier(); - this.state = 1567; + this.state = 1573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1565; + this.state = 1571; this.match(SparkSqlParser.EQ); - this.state = 1566; + this.state = 1572; this.constant(); } } @@ -5275,11 +5279,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1569; + this.state = 1575; this.identifier(); - this.state = 1570; + this.state = 1576; this.match(SparkSqlParser.EQ); - this.state = 1571; + this.state = 1577; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -5306,7 +5310,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1575; + this.state = 1581; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 190 || _la === 261)) { this.errorHandler.recoverInline(this); @@ -5335,41 +5339,41 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new DescribeFuncNameContext(this.context, this.state); this.enterRule(localContext, 28, SparkSqlParser.RULE_describeFuncName); try { - this.state = 1582; + this.state = 1588; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1577; + this.state = 1583; this.identifierReference(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1578; + this.state = 1584; this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1579; + this.state = 1585; this.comparisonOperator(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1580; + this.state = 1586; this.arithmeticOperator(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1581; + this.state = 1587; this.predicateOperator(); } break; @@ -5396,23 +5400,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1584; + this.state = 1590; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); - this.state = 1589; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1585; + this.state = 1591; this.match(SparkSqlParser.DOT); - this.state = 1586; + this.state = 1592; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); } } - this.state = 1591; + this.state = 1597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5439,23 +5443,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1592; + this.state = 1598; this.match(SparkSqlParser.KW_WITH); - this.state = 1593; + this.state = 1599; this.namedQuery(); - this.state = 1598; + this.state = 1604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1594; + this.state = 1600; this.match(SparkSqlParser.COMMA); - this.state = 1595; + this.state = 1601; this.namedQuery(); } } - this.state = 1600; + this.state = 1606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5482,33 +5486,33 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1601; + this.state = 1607; localContext._name = this.errorCapturingIdentifier(); - this.state = 1603; + this.state = 1609; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1602; + this.state = 1608; localContext._columnAliases = this.identifierList(); } break; } - this.state = 1606; + this.state = 1612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1605; + this.state = 1611; this.match(SparkSqlParser.KW_AS); } } - this.state = 1608; + this.state = 1614; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1609; + this.state = 1615; this.query(); - this.state = 1610; + this.state = 1616; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5532,9 +5536,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1612; + this.state = 1618; this.match(SparkSqlParser.KW_USING); - this.state = 1613; + this.state = 1619; this.multipartIdentifier(); } } @@ -5559,21 +5563,21 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1633; + this.state = 1639; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1631; + this.state = 1637; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 1615; + this.state = 1621; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1616; + this.state = 1622; localContext._options = this.expressionPropertyList(); } } @@ -5581,68 +5585,68 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 1617; + this.state = 1623; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 1618; + this.state = 1624; this.match(SparkSqlParser.KW_BY); - this.state = 1619; + this.state = 1625; localContext._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 1620; + this.state = 1626; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 1621; + this.state = 1627; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 1622; + this.state = 1628; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 1623; + this.state = 1629; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 1624; + this.state = 1630; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1625; + this.state = 1631; this.stringLit(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 1626; + this.state = 1632; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1627; + this.state = 1633; localContext._comment = this.stringLit(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 1628; + this.state = 1634; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 1629; + this.state = 1635; localContext._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 1630; + this.state = 1636; this.tableLifecycle(); } break; @@ -5651,7 +5655,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 1635; + this.state = 1641; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); } @@ -5677,9 +5681,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1636; + this.state = 1642; this.match(SparkSqlParser.KW_LIFECYCLE); - this.state = 1637; + this.state = 1643; this.match(SparkSqlParser.INTEGER_VALUE); } } @@ -5704,27 +5708,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1639; + this.state = 1645; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1640; + this.state = 1646; this.property(); - this.state = 1645; + this.state = 1651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1641; + this.state = 1647; this.match(SparkSqlParser.COMMA); - this.state = 1642; + this.state = 1648; this.property(); } } - this.state = 1647; + this.state = 1653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1648; + this.state = 1654; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5749,24 +5753,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1650; + this.state = 1656; localContext._key = this.propertyKey(); - this.state = 1655; + this.state = 1661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111 || _la === 316 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 1174405121) !== 0) || _la === 384) { { - this.state = 1652; + this.state = 1658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1651; + this.state = 1657; this.match(SparkSqlParser.EQ); } } - this.state = 1654; + this.state = 1660; localContext._value = this.propertyValue(); } } @@ -5792,27 +5796,27 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 46, SparkSqlParser.RULE_propertyKey); let _la: number; try { - this.state = 1666; + this.state = 1672; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1663; this.identifier(); - this.state = 1662; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1658; + this.state = 1664; this.match(SparkSqlParser.DOT); - this.state = 1659; + this.state = 1665; this.identifier(); } } - this.state = 1664; + this.state = 1670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5821,7 +5825,7 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1665; + this.state = 1671; this.stringLit(); } break; @@ -5845,20 +5849,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 48, SparkSqlParser.RULE_propertyValue); try { - this.state = 1672; + this.state = 1678; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1668; + this.state = 1674; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1669; + this.state = 1675; this.match(SparkSqlParser.DECIMAL_VALUE); } break; @@ -5866,7 +5870,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 1670; + this.state = 1676; this.booleanValue(); } break; @@ -5874,7 +5878,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 4); { - this.state = 1671; + this.state = 1677; this.stringLit(); } break; @@ -5903,27 +5907,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1674; + this.state = 1680; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1675; + this.state = 1681; this.expressionProperty(); - this.state = 1680; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1676; + this.state = 1682; this.match(SparkSqlParser.COMMA); - this.state = 1677; + this.state = 1683; this.expressionProperty(); } } - this.state = 1682; + this.state = 1688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1683; + this.state = 1689; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5948,24 +5952,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1685; + this.state = 1691; localContext._key = this.propertyKey(); - this.state = 1690; + this.state = 1696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & 4294967233) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 4294967295) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 4294967295) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 4261412863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4294967295) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4294967295) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4294967291) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4294967295) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4294967263) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 4294967287) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 1687; + this.state = 1693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1686; + this.state = 1692; this.match(SparkSqlParser.EQ); } } - this.state = 1689; + this.state = 1695; localContext._value = this.expression(); } } @@ -5993,27 +5997,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1692; + this.state = 1698; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1693; + this.state = 1699; this.constant(); - this.state = 1698; + this.state = 1704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1694; + this.state = 1700; this.match(SparkSqlParser.COMMA); - this.state = 1695; + this.state = 1701; this.constant(); } } - this.state = 1700; + this.state = 1706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1701; + this.state = 1707; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6038,27 +6042,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1703; + this.state = 1709; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1704; + this.state = 1710; this.constantList(); - this.state = 1709; + this.state = 1715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1705; + this.state = 1711; this.match(SparkSqlParser.COMMA); - this.state = 1706; + this.state = 1712; this.constantList(); } } - this.state = 1711; + this.state = 1717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1712; + this.state = 1718; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6080,28 +6084,28 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new CreateFileFormatContext(this.context, this.state); this.enterRule(localContext, 58, SparkSqlParser.RULE_createFileFormat); try { - this.state = 1720; + this.state = 1726; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1714; + this.state = 1720; this.match(SparkSqlParser.KW_STORED); - this.state = 1715; + this.state = 1721; this.match(SparkSqlParser.KW_AS); - this.state = 1716; + this.state = 1722; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1717; + this.state = 1723; this.match(SparkSqlParser.KW_STORED); - this.state = 1718; + this.state = 1724; this.match(SparkSqlParser.KW_BY); - this.state = 1719; + this.state = 1725; this.storageHandler(); } break; @@ -6125,26 +6129,26 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new FileFormatContext(this.context, this.state); this.enterRule(localContext, 60, SparkSqlParser.RULE_fileFormat); try { - this.state = 1728; + this.state = 1734; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1722; + this.state = 1728; this.match(SparkSqlParser.KW_INPUTFORMAT); - this.state = 1723; + this.state = 1729; localContext._inFmt = this.stringLit(); - this.state = 1724; + this.state = 1730; this.match(SparkSqlParser.KW_OUTPUTFORMAT); - this.state = 1725; + this.state = 1731; localContext._outFmt = this.stringLit(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1727; + this.state = 1733; this.identifier(); } break; @@ -6170,18 +6174,18 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1730; + this.state = 1736; this.stringLit(); - this.state = 1734; + this.state = 1740; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1731; + this.state = 1737; this.match(SparkSqlParser.KW_WITH); - this.state = 1732; + this.state = 1738; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 1733; + this.state = 1739; this.propertyList(); } break; @@ -6208,16 +6212,16 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1794; + this.state = 1800; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_INSERT: localContext = new InsertFromQueryContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1736; + this.state = 1742; this.insertInto(); - this.state = 1737; + this.state = 1743; this.query(); } break; @@ -6225,9 +6229,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MultipleInsertContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1739; + this.state = 1745; this.fromClause(); - this.state = 1743; + this.state = 1749; this.errorHandler.sync(this); alternative = 1; do { @@ -6235,9 +6239,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1740; + this.state = 1746; this.insertInto(); - this.state = 1741; + this.state = 1747; this.fromStatementBody(); } } @@ -6245,7 +6249,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1745; + this.state = 1751; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -6255,20 +6259,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeleteFromTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1747; + this.state = 1753; this.match(SparkSqlParser.KW_DELETE); - this.state = 1748; + this.state = 1754; this.match(SparkSqlParser.KW_FROM); - this.state = 1749; + this.state = 1755; this.tableName(); - this.state = 1750; + this.state = 1756; this.tableAlias(); - this.state = 1752; + this.state = 1758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1751; + this.state = 1757; this.whereClause(); } } @@ -6279,20 +6283,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UpdateTableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1754; + this.state = 1760; this.match(SparkSqlParser.KW_UPDATE); - this.state = 1755; + this.state = 1761; this.tableName(); - this.state = 1756; + this.state = 1762; this.tableAlias(); - this.state = 1757; + this.state = 1763; this.setClause(); - this.state = 1759; + this.state = 1765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1758; + this.state = 1764; this.whereClause(); } } @@ -6303,17 +6307,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MergeIntoTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1761; + this.state = 1767; this.match(SparkSqlParser.KW_MERGE); - this.state = 1762; + this.state = 1768; this.match(SparkSqlParser.KW_INTO); - this.state = 1763; + this.state = 1769; (localContext as MergeIntoTableContext)._target = this.tableName(); - this.state = 1764; + this.state = 1770; (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); - this.state = 1765; - this.match(SparkSqlParser.KW_USING); this.state = 1771; + this.match(SparkSqlParser.KW_USING); + this.state = 1777; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -6660,72 +6664,72 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1766; + this.state = 1772; (localContext as MergeIntoTableContext)._source = this.identifierReference(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 1767; + this.state = 1773; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1768; + this.state = 1774; (localContext as MergeIntoTableContext)._sourceQuery = this.query(); - this.state = 1769; + this.state = 1775; this.match(SparkSqlParser.RIGHT_PAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1773; + this.state = 1779; (localContext as MergeIntoTableContext)._sourceAlias = this.tableAlias(); - this.state = 1774; + this.state = 1780; this.match(SparkSqlParser.KW_ON); - this.state = 1775; + this.state = 1781; (localContext as MergeIntoTableContext)._mergeCondition = this.booleanExpression(0); - this.state = 1779; + this.state = 1785; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1776; + this.state = 1782; this.matchedClause(); } } } - this.state = 1781; + this.state = 1787; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); } - this.state = 1785; + this.state = 1791; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1782; + this.state = 1788; this.notMatchedClause(); } } } - this.state = 1787; + this.state = 1793; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); } - this.state = 1791; + this.state = 1797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 343) { { { - this.state = 1788; + this.state = 1794; this.notMatchedBySourceClause(); } } - this.state = 1793; + this.state = 1799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6755,7 +6759,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1802; this.identifierReference(); } } @@ -6779,7 +6783,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1798; + this.state = 1804; this.identifierReference(); } } @@ -6803,7 +6807,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1800; + this.state = 1806; this.tableIdentifier(); } } @@ -6827,7 +6831,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1802; + this.state = 1808; this.tableIdentifier(); } } @@ -6851,7 +6855,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1804; + this.state = 1810; this.viewIdentifier(); } } @@ -6875,7 +6879,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1806; + this.state = 1812; this.viewIdentifier(); } } @@ -6893,27 +6897,52 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public emptyColumn(): EmptyColumnContext { + let localContext = new EmptyColumnContext(this.context, this.state); + this.enterRule(localContext, 78, SparkSqlParser.RULE_emptyColumn); + try { + this.enterOuterAlt(localContext, 1); + // tslint:disable-next-line:no-empty + { + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 78, SparkSqlParser.RULE_columnName); + this.enterRule(localContext, 80, SparkSqlParser.RULE_columnName); try { - this.state = 1810; + this.state = 1819; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1808; - this.multipartIdentifier(); + this.state = 1816; + this.multipartIdentifierAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1809; + this.state = 1817; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } + this.state = 1818; + this.emptyColumn(); } break; } @@ -6934,11 +6963,11 @@ export class SparkSqlParser extends SQLParserBase { } public columnNamePath(): ColumnNamePathContext { let localContext = new ColumnNamePathContext(this.context, this.state); - this.enterRule(localContext, 80, SparkSqlParser.RULE_columnNamePath); + this.enterRule(localContext, 82, SparkSqlParser.RULE_columnNamePath); try { this.enterOuterAlt(localContext, 1); { - this.state = 1812; + this.state = 1821; this.multipartIdentifier(); } } @@ -6956,28 +6985,69 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext { + let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 84, SparkSqlParser.RULE_columnNamePathAllowEmpty); + try { + this.state = 1826; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1823; + this.multipartIdentifierAllowEmpty(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1824; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 1825; + this.emptyColumn(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnNameSeq(): ColumnNameSeqContext { let localContext = new ColumnNameSeqContext(this.context, this.state); - this.enterRule(localContext, 82, SparkSqlParser.RULE_columnNameSeq); + this.enterRule(localContext, 86, SparkSqlParser.RULE_columnNameSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1814; + this.state = 1828; this.columnName(); - this.state = 1819; + this.state = 1833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1815; + this.state = 1829; this.match(SparkSqlParser.COMMA); - this.state = 1816; + this.state = 1830; this.columnName(); } } - this.state = 1821; + this.state = 1835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6999,11 +7069,11 @@ export class SparkSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 84, SparkSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 88, SparkSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1822; + this.state = 1836; this.errorCapturingIdentifier(); } } @@ -7023,28 +7093,28 @@ export class SparkSqlParser extends SQLParserBase { } public identifierReference(): IdentifierReferenceContext { let localContext = new IdentifierReferenceContext(this.context, this.state); - this.enterRule(localContext, 86, SparkSqlParser.RULE_identifierReference); + this.enterRule(localContext, 90, SparkSqlParser.RULE_identifierReference); try { - this.state = 1830; + this.state = 1844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1824; + this.state = 1838; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 1825; + this.state = 1839; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1826; + this.state = 1840; this.expression(); - this.state = 1827; + this.state = 1841; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1829; + this.state = 1843; this.multipartIdentifier(); } break; @@ -7066,94 +7136,94 @@ export class SparkSqlParser extends SQLParserBase { } public queryOrganization(): QueryOrganizationContext { let localContext = new QueryOrganizationContext(this.context, this.state); - this.enterRule(localContext, 88, SparkSqlParser.RULE_queryOrganization); + this.enterRule(localContext, 92, SparkSqlParser.RULE_queryOrganization); try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1849; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1832; + this.state = 1846; this.match(SparkSqlParser.KW_ORDER); - this.state = 1833; + this.state = 1847; this.match(SparkSqlParser.KW_BY); - this.state = 1834; + this.state = 1848; this.orderOrSortByClause(); } break; } - this.state = 1840; + this.state = 1854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1837; + this.state = 1851; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 1838; + this.state = 1852; this.match(SparkSqlParser.KW_BY); - this.state = 1839; + this.state = 1853; this.clusterOrDistributeBy(); } break; } - this.state = 1845; + this.state = 1859; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1842; + this.state = 1856; this.match(SparkSqlParser.KW_DISTRIBUTE); - this.state = 1843; + this.state = 1857; this.match(SparkSqlParser.KW_BY); - this.state = 1844; + this.state = 1858; this.clusterOrDistributeBy(); } break; } - this.state = 1850; + this.state = 1864; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 1847; + this.state = 1861; this.match(SparkSqlParser.KW_SORT); - this.state = 1848; + this.state = 1862; this.match(SparkSqlParser.KW_BY); - this.state = 1849; + this.state = 1863; this.orderOrSortByClause(); } break; } - this.state = 1853; + this.state = 1867; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 1852; + this.state = 1866; this.windowClause(); } break; } - this.state = 1856; + this.state = 1870; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 1855; + this.state = 1869; this.limitClause(); } break; } - this.state = 1860; + this.state = 1874; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1858; + this.state = 1872; this.match(SparkSqlParser.KW_OFFSET); - this.state = 1859; + this.state = 1873; localContext._offset = this.expression(); } break; @@ -7176,24 +7246,24 @@ export class SparkSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 90, SparkSqlParser.RULE_limitClause); + this.enterRule(localContext, 94, SparkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1862; + this.state = 1876; this.match(SparkSqlParser.KW_LIMIT); - this.state = 1865; + this.state = 1879; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 1863; + this.state = 1877; this.match(SparkSqlParser.KW_ALL); } break; case 2: { - this.state = 1864; + this.state = 1878; localContext._limit = this.expression(); } break; @@ -7216,30 +7286,30 @@ export class SparkSqlParser extends SQLParserBase { } public orderOrSortByClause(): OrderOrSortByClauseContext { let localContext = new OrderOrSortByClauseContext(this.context, this.state); - this.enterRule(localContext, 92, SparkSqlParser.RULE_orderOrSortByClause); + this.enterRule(localContext, 96, SparkSqlParser.RULE_orderOrSortByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1867; + this.state = 1881; this.sortItem(); - this.state = 1872; + this.state = 1886; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1868; + this.state = 1882; this.match(SparkSqlParser.COMMA); - this.state = 1869; + this.state = 1883; this.sortItem(); } } } - this.state = 1874; + this.state = 1888; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); } } } @@ -7259,30 +7329,30 @@ export class SparkSqlParser extends SQLParserBase { } public clusterOrDistributeBy(): ClusterOrDistributeByContext { let localContext = new ClusterOrDistributeByContext(this.context, this.state); - this.enterRule(localContext, 94, SparkSqlParser.RULE_clusterOrDistributeBy); + this.enterRule(localContext, 98, SparkSqlParser.RULE_clusterOrDistributeBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1875; + this.state = 1889; this.expression(); - this.state = 1880; + this.state = 1894; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 224, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1876; + this.state = 1890; this.match(SparkSqlParser.COMMA); - this.state = 1877; + this.state = 1891; this.expression(); } } } - this.state = 1882; + this.state = 1896; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 224, this.context); } } } @@ -7312,21 +7382,21 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 96; - this.enterRecursionRule(localContext, 96, SparkSqlParser.RULE_queryTerm, _p); + let _startState = 100; + this.enterRecursionRule(localContext, 100, SparkSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 1884; + this.state = 1898; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1906; + this.state = 1920; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -7334,19 +7404,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1904; + this.state = 1918; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 1886; + this.state = 1900; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1887; + this.state = 1901; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 148 || _la === 270 || _la === 323)) { @@ -7356,17 +7426,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1889; + this.state = 1903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 1888; + this.state = 1902; this.setQuantifier(); } } - this.state = 1891; + this.state = 1905; localContext._right = this.queryTerm(4); } break; @@ -7375,23 +7445,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 1892; + this.state = 1906; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1893; + this.state = 1907; localContext._operator = this.match(SparkSqlParser.KW_INTERSECT); - this.state = 1895; + this.state = 1909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 1894; + this.state = 1908; this.setQuantifier(); } } - this.state = 1897; + this.state = 1911; localContext._right = this.queryTerm(3); } break; @@ -7400,11 +7470,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 1898; + this.state = 1912; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1899; + this.state = 1913; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 270 || _la === 323)) { @@ -7414,26 +7484,26 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1901; + this.state = 1915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 1900; + this.state = 1914; this.setQuantifier(); } } - this.state = 1903; + this.state = 1917; localContext._right = this.queryTerm(2); } break; } } } - this.state = 1908; + this.state = 1922; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); } } } @@ -7453,10 +7523,10 @@ export class SparkSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 98, SparkSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 102, SparkSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1933; + this.state = 1947; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_MAP: @@ -7464,16 +7534,16 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 1909; + this.state = 1923; this.querySpecification(); } break; case SparkSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 1910; + this.state = 1924; this.fromClause(); - this.state = 1912; + this.state = 1926; this.errorHandler.sync(this); alternative = 1; do { @@ -7481,7 +7551,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1911; + this.state = 1925; this.fromStatementBody(); } } @@ -7489,58 +7559,58 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1914; + this.state = 1928; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 3); { - this.state = 1916; + this.state = 1930; this.match(SparkSqlParser.KW_TABLE); - this.state = 1917; + this.state = 1931; this.tableName(); } break; case SparkSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 4); { - this.state = 1918; + this.state = 1932; this.match(SparkSqlParser.KW_VALUES); - this.state = 1919; + this.state = 1933; this.expression(); - this.state = 1924; + this.state = 1938; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1920; + this.state = 1934; this.match(SparkSqlParser.COMMA); - this.state = 1921; + this.state = 1935; this.expression(); } } } - this.state = 1926; + this.state = 1940; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); } - this.state = 1927; + this.state = 1941; this.tableAlias(); } break; case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 5); { - this.state = 1929; + this.state = 1943; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1930; + this.state = 1944; this.query(); - this.state = 1931; + this.state = 1945; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -7564,33 +7634,33 @@ export class SparkSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 100, SparkSqlParser.RULE_sortItem); + this.enterRule(localContext, 104, SparkSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1937; + this.state = 1951; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 1935; + this.state = 1949; this.columnName(); } break; case 2: { - this.state = 1936; + this.state = 1950; this.expression(); } break; } - this.state = 1940; + this.state = 1954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 1939; + this.state = 1953; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -7603,14 +7673,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1944; + this.state = 1958; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 1942; + this.state = 1956; this.match(SparkSqlParser.KW_NULLS); - this.state = 1943; + this.state = 1957; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 157)) { @@ -7641,93 +7711,93 @@ export class SparkSqlParser extends SQLParserBase { } public fromStatementBody(): FromStatementBodyContext { let localContext = new FromStatementBodyContext(this.context, this.state); - this.enterRule(localContext, 102, SparkSqlParser.RULE_fromStatementBody); + this.enterRule(localContext, 106, SparkSqlParser.RULE_fromStatementBody); try { let alternative: number; - this.state = 1973; + this.state = 1987; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1946; + this.state = 1960; this.transformClause(); - this.state = 1948; + this.state = 1962; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 1947; + this.state = 1961; this.whereClause(); } break; } - this.state = 1950; + this.state = 1964; this.queryOrganization(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1952; + this.state = 1966; this.selectClause(); - this.state = 1956; + this.state = 1970; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1953; + this.state = 1967; this.lateralView(); } } } - this.state = 1958; + this.state = 1972; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } - this.state = 1960; + this.state = 1974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1959; + this.state = 1973; this.whereClause(); } break; } - this.state = 1963; + this.state = 1977; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 1962; + this.state = 1976; this.aggregationClause(); } break; } - this.state = 1966; + this.state = 1980; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 1965; + this.state = 1979; this.havingClause(); } break; } - this.state = 1969; + this.state = 1983; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1968; + this.state = 1982; this.windowClause(); } break; } - this.state = 1971; + this.state = 1985; this.queryOrganization(); } break; @@ -7749,79 +7819,79 @@ export class SparkSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 104, SparkSqlParser.RULE_querySpecification); + this.enterRule(localContext, 108, SparkSqlParser.RULE_querySpecification); try { let alternative: number; - this.state = 2019; + this.state = 2033; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1975; + this.state = 1989; this.transformClause(); - this.state = 1977; + this.state = 1991; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 1976; + this.state = 1990; this.fromClause(); } break; } - this.state = 1982; + this.state = 1996; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1979; + this.state = 1993; this.lateralView(); } } } - this.state = 1984; + this.state = 1998; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); } - this.state = 1986; + this.state = 2000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 1985; + this.state = 1999; this.whereClause(); } break; } - this.state = 1989; + this.state = 2003; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 1988; + this.state = 2002; this.aggregationClause(); } break; } - this.state = 1992; + this.state = 2006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 1991; + this.state = 2005; this.havingClause(); } break; } - this.state = 1995; + this.state = 2009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1994; + this.state = 2008; this.windowClause(); } break; @@ -7831,70 +7901,70 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1997; + this.state = 2011; this.selectClause(); - this.state = 1999; + this.state = 2013; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 1998; + this.state = 2012; this.fromClause(); } break; } - this.state = 2004; + this.state = 2018; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2001; + this.state = 2015; this.lateralView(); } } } - this.state = 2006; + this.state = 2020; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); } - this.state = 2008; + this.state = 2022; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2007; + this.state = 2021; this.whereClause(); } break; } - this.state = 2011; + this.state = 2025; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2010; + this.state = 2024; this.aggregationClause(); } break; } - this.state = 2014; + this.state = 2028; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2013; + this.state = 2027; this.havingClause(); } break; } - this.state = 2017; + this.state = 2031; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2016; + this.state = 2030; this.windowClause(); } break; @@ -7919,147 +7989,147 @@ export class SparkSqlParser extends SQLParserBase { } public transformClause(): TransformClauseContext { let localContext = new TransformClauseContext(this.context, this.state); - this.enterRule(localContext, 106, SparkSqlParser.RULE_transformClause); + this.enterRule(localContext, 110, SparkSqlParser.RULE_transformClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2040; + this.state = 2054; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_SELECT: { - this.state = 2021; + this.state = 2035; this.match(SparkSqlParser.KW_SELECT); - this.state = 2022; + this.state = 2036; localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); - this.state = 2023; + this.state = 2037; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2025; + this.state = 2039; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2024; + this.state = 2038; this.setQuantifier(); } break; } - this.state = 2027; + this.state = 2041; this.expressionSeq(); - this.state = 2028; + this.state = 2042; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_MAP: { - this.state = 2030; + this.state = 2044; localContext._kind = this.match(SparkSqlParser.KW_MAP); - this.state = 2032; + this.state = 2046; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2031; + this.state = 2045; this.setQuantifier(); } break; } - this.state = 2034; + this.state = 2048; this.expressionSeq(); } break; case SparkSqlParser.KW_REDUCE: { - this.state = 2035; + this.state = 2049; localContext._kind = this.match(SparkSqlParser.KW_REDUCE); - this.state = 2037; + this.state = 2051; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2036; + this.state = 2050; this.setQuantifier(); } break; } - this.state = 2039; + this.state = 2053; this.expressionSeq(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2043; + this.state = 2057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 2042; + this.state = 2056; localContext._inRowFormat = this.rowFormat(); } } - this.state = 2047; + this.state = 2061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 2045; + this.state = 2059; this.match(SparkSqlParser.KW_RECORDWRITER); - this.state = 2046; + this.state = 2060; localContext._recordWriter = this.stringLit(); } } - this.state = 2049; + this.state = 2063; this.match(SparkSqlParser.KW_USING); - this.state = 2050; + this.state = 2064; localContext._script = this.stringLit(); - this.state = 2063; + this.state = 2077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2051; + this.state = 2065; this.match(SparkSqlParser.KW_AS); - this.state = 2061; + this.state = 2075; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2052; + this.state = 2066; this.identifierSeq(); } break; case 2: { - this.state = 2053; + this.state = 2067; this.colTypeList(); } break; case 3: { { - this.state = 2054; + this.state = 2068; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2057; + this.state = 2071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2055; + this.state = 2069; this.identifierSeq(); } break; case 2: { - this.state = 2056; + this.state = 2070; this.colTypeList(); } break; } - this.state = 2059; + this.state = 2073; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -8068,24 +8138,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2066; + this.state = 2080; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2065; + this.state = 2079; localContext._outRowFormat = this.rowFormat(); } break; } - this.state = 2070; + this.state = 2084; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2068; + this.state = 2082; this.match(SparkSqlParser.KW_RECORDREADER); - this.state = 2069; + this.state = 2083; localContext._recordReader = this.stringLit(); } break; @@ -8108,41 +8178,41 @@ export class SparkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 108, SparkSqlParser.RULE_selectClause); + this.enterRule(localContext, 112, SparkSqlParser.RULE_selectClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2072; + this.state = 2086; this.match(SparkSqlParser.KW_SELECT); - this.state = 2076; + this.state = 2090; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 266, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2073; + this.state = 2087; localContext._hint = this.hint(); localContext._hints.push(localContext._hint); } } } - this.state = 2078; + this.state = 2092; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 266, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); } - this.state = 2080; + this.state = 2094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2079; + this.state = 2093; this.setQuantifier(); } break; } - this.state = 2082; + this.state = 2096; this.selectList(); } } @@ -8162,13 +8232,13 @@ export class SparkSqlParser extends SQLParserBase { } public setClause(): SetClauseContext { let localContext = new SetClauseContext(this.context, this.state); - this.enterRule(localContext, 110, SparkSqlParser.RULE_setClause); + this.enterRule(localContext, 114, SparkSqlParser.RULE_setClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2098; this.match(SparkSqlParser.KW_SET); - this.state = 2085; + this.state = 2099; this.assignmentList(); } } @@ -8188,50 +8258,50 @@ export class SparkSqlParser extends SQLParserBase { } public matchedClause(): MatchedClauseContext { let localContext = new MatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 112, SparkSqlParser.RULE_matchedClause); + this.enterRule(localContext, 116, SparkSqlParser.RULE_matchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2087; + this.state = 2101; this.match(SparkSqlParser.KW_WHEN); - this.state = 2088; + this.state = 2102; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2091; + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2089; + this.state = 2103; this.match(SparkSqlParser.KW_AND); - this.state = 2090; + this.state = 2104; localContext._matchedCond = this.booleanExpression(0); } } - this.state = 2093; + this.state = 2107; this.match(SparkSqlParser.KW_THEN); - this.state = 2101; + this.state = 2115; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DELETE: { - this.state = 2094; + this.state = 2108; this.match(SparkSqlParser.KW_DELETE); } break; case SparkSqlParser.KW_UPDATE: { - this.state = 2095; + this.state = 2109; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2096; + this.state = 2110; this.match(SparkSqlParser.KW_SET); - this.state = 2099; + this.state = 2113; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.ASTERISK: { - this.state = 2097; + this.state = 2111; this.match(SparkSqlParser.ASTERISK); } break; @@ -8579,7 +8649,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2098; + this.state = 2112; this.assignmentList(); } break; @@ -8609,44 +8679,44 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedClause(): NotMatchedClauseContext { let localContext = new NotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 114, SparkSqlParser.RULE_notMatchedClause); + this.enterRule(localContext, 118, SparkSqlParser.RULE_notMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2103; + this.state = 2117; this.match(SparkSqlParser.KW_WHEN); - this.state = 2104; + this.state = 2118; this.match(SparkSqlParser.KW_NOT); - this.state = 2105; + this.state = 2119; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2108; + this.state = 2122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2106; + this.state = 2120; this.match(SparkSqlParser.KW_BY); - this.state = 2107; + this.state = 2121; this.match(SparkSqlParser.KW_TARGET); } } - this.state = 2112; + this.state = 2126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2110; + this.state = 2124; this.match(SparkSqlParser.KW_AND); - this.state = 2111; + this.state = 2125; localContext._notMatchedCond = this.booleanExpression(0); } } - this.state = 2114; + this.state = 2128; this.match(SparkSqlParser.KW_THEN); - this.state = 2115; + this.state = 2129; this.notMatchedAction(); } } @@ -8666,51 +8736,51 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedBySourceClause(): NotMatchedBySourceClauseContext { let localContext = new NotMatchedBySourceClauseContext(this.context, this.state); - this.enterRule(localContext, 116, SparkSqlParser.RULE_notMatchedBySourceClause); + this.enterRule(localContext, 120, SparkSqlParser.RULE_notMatchedBySourceClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 2131; this.match(SparkSqlParser.KW_WHEN); - this.state = 2118; + this.state = 2132; this.match(SparkSqlParser.KW_NOT); - this.state = 2119; + this.state = 2133; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2120; + this.state = 2134; this.match(SparkSqlParser.KW_BY); - this.state = 2121; + this.state = 2135; this.match(SparkSqlParser.KW_SOURCE); - this.state = 2124; + this.state = 2138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2122; + this.state = 2136; this.match(SparkSqlParser.KW_AND); - this.state = 2123; + this.state = 2137; localContext._notMatchedBySourceCond = this.booleanExpression(0); } } - this.state = 2126; + this.state = 2140; this.match(SparkSqlParser.KW_THEN); - this.state = 2131; + this.state = 2145; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DELETE: { - this.state = 2127; + this.state = 2141; this.match(SparkSqlParser.KW_DELETE); } break; case SparkSqlParser.KW_UPDATE: { - this.state = 2128; + this.state = 2142; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2129; + this.state = 2143; this.match(SparkSqlParser.KW_SET); - this.state = 2130; + this.state = 2144; this.assignmentList(); } break; @@ -8735,55 +8805,55 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedAction(): NotMatchedActionContext { let localContext = new NotMatchedActionContext(this.context, this.state); - this.enterRule(localContext, 118, SparkSqlParser.RULE_notMatchedAction); + this.enterRule(localContext, 122, SparkSqlParser.RULE_notMatchedAction); let _la: number; try { - this.state = 2151; + this.state = 2165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2133; + this.state = 2147; this.match(SparkSqlParser.KW_INSERT); - this.state = 2134; + this.state = 2148; this.match(SparkSqlParser.ASTERISK); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2135; + this.state = 2149; this.match(SparkSqlParser.KW_INSERT); - this.state = 2136; + this.state = 2150; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2137; + this.state = 2151; this.multipartIdentifierList(); - this.state = 2138; + this.state = 2152; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2139; + this.state = 2153; this.match(SparkSqlParser.KW_VALUES); - this.state = 2140; + this.state = 2154; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2141; + this.state = 2155; this.expression(); - this.state = 2146; + this.state = 2160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2142; + this.state = 2156; this.match(SparkSqlParser.COMMA); - this.state = 2143; + this.state = 2157; this.expression(); } } - this.state = 2148; + this.state = 2162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2149; + this.state = 2163; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8805,26 +8875,26 @@ export class SparkSqlParser extends SQLParserBase { } public assignmentList(): AssignmentListContext { let localContext = new AssignmentListContext(this.context, this.state); - this.enterRule(localContext, 120, SparkSqlParser.RULE_assignmentList); + this.enterRule(localContext, 124, SparkSqlParser.RULE_assignmentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2153; + this.state = 2167; this.assignment(); - this.state = 2158; + this.state = 2172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2154; + this.state = 2168; this.match(SparkSqlParser.COMMA); - this.state = 2155; + this.state = 2169; this.assignment(); } } - this.state = 2160; + this.state = 2174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8846,15 +8916,15 @@ export class SparkSqlParser extends SQLParserBase { } public assignment(): AssignmentContext { let localContext = new AssignmentContext(this.context, this.state); - this.enterRule(localContext, 122, SparkSqlParser.RULE_assignment); + this.enterRule(localContext, 126, SparkSqlParser.RULE_assignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 2161; + this.state = 2175; localContext._key = this.multipartIdentifier(); - this.state = 2162; + this.state = 2176; this.match(SparkSqlParser.EQ); - this.state = 2163; + this.state = 2177; localContext._value = this.expression(); } } @@ -8874,13 +8944,13 @@ export class SparkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 124, SparkSqlParser.RULE_whereClause); + this.enterRule(localContext, 128, SparkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2179; this.match(SparkSqlParser.KW_WHERE); - this.state = 2166; + this.state = 2180; this.booleanExpression(0); } } @@ -8900,13 +8970,13 @@ export class SparkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 126, SparkSqlParser.RULE_havingClause); + this.enterRule(localContext, 130, SparkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2168; + this.state = 2182; this.match(SparkSqlParser.KW_HAVING); - this.state = 2169; + this.state = 2183; this.booleanExpression(0); } } @@ -8926,42 +8996,42 @@ export class SparkSqlParser extends SQLParserBase { } public hint(): HintContext { let localContext = new HintContext(this.context, this.state); - this.enterRule(localContext, 128, SparkSqlParser.RULE_hint); + this.enterRule(localContext, 132, SparkSqlParser.RULE_hint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2185; this.match(SparkSqlParser.HENT_START); - this.state = 2172; + this.state = 2186; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); - this.state = 2179; + this.state = 2193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { { - this.state = 2174; + this.state = 2188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4) { { - this.state = 2173; + this.state = 2187; this.match(SparkSqlParser.COMMA); } } - this.state = 2176; + this.state = 2190; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); } } - this.state = 2181; + this.state = 2195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2182; + this.state = 2196; this.match(SparkSqlParser.HENT_END); } } @@ -8981,47 +9051,47 @@ export class SparkSqlParser extends SQLParserBase { } public hintStatement(): HintStatementContext { let localContext = new HintStatementContext(this.context, this.state); - this.enterRule(localContext, 130, SparkSqlParser.RULE_hintStatement); + this.enterRule(localContext, 134, SparkSqlParser.RULE_hintStatement); let _la: number; try { - this.state = 2197; + this.state = 2211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2184; + this.state = 2198; localContext._hintName = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2185; + this.state = 2199; localContext._hintName = this.identifier(); - this.state = 2186; + this.state = 2200; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2187; + this.state = 2201; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); - this.state = 2192; + this.state = 2206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2188; + this.state = 2202; this.match(SparkSqlParser.COMMA); - this.state = 2189; + this.state = 2203; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); } } - this.state = 2194; + this.state = 2208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2195; + this.state = 2209; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9043,65 +9113,65 @@ export class SparkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 132, SparkSqlParser.RULE_fromClause); + this.enterRule(localContext, 136, SparkSqlParser.RULE_fromClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2199; + this.state = 2213; this.match(SparkSqlParser.KW_FROM); - this.state = 2200; + this.state = 2214; this.relation(); - this.state = 2205; + this.state = 2219; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2201; + this.state = 2215; this.match(SparkSqlParser.COMMA); - this.state = 2202; + this.state = 2216; this.relation(); } } } - this.state = 2207; + this.state = 2221; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); } - this.state = 2211; + this.state = 2225; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2208; + this.state = 2222; this.lateralView(); } } } - this.state = 2213; + this.state = 2227; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); } - this.state = 2215; + this.state = 2229; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2214; + this.state = 2228; this.pivotClause(); } break; } - this.state = 2218; + this.state = 2232; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 286, this.context) ) { case 1: { - this.state = 2217; + this.state = 2231; this.unPivotClause(); } break; @@ -9124,26 +9194,26 @@ export class SparkSqlParser extends SQLParserBase { } public temporalClause(): TemporalClauseContext { let localContext = new TemporalClauseContext(this.context, this.state); - this.enterRule(localContext, 134, SparkSqlParser.RULE_temporalClause); + this.enterRule(localContext, 138, SparkSqlParser.RULE_temporalClause); let _la: number; try { - this.state = 2237; + this.state = 2251; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2221; + this.state = 2235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2220; + this.state = 2234; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2223; + this.state = 2237; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -9152,23 +9222,23 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2224; + this.state = 2238; this.match(SparkSqlParser.KW_AS); - this.state = 2225; + this.state = 2239; this.match(SparkSqlParser.KW_OF); - this.state = 2228; + this.state = 2242; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 2226; + this.state = 2240; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 2227; + this.state = 2241; this.stringLit(); } break; @@ -9180,17 +9250,17 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2231; + this.state = 2245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2230; + this.state = 2244; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2233; + this.state = 2247; _la = this.tokenStream.LA(1); if(!(_la === 291 || _la === 303)) { this.errorHandler.recoverInline(this); @@ -9199,11 +9269,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2234; + this.state = 2248; this.match(SparkSqlParser.KW_AS); - this.state = 2235; + this.state = 2249; this.match(SparkSqlParser.KW_OF); - this.state = 2236; + this.state = 2250; localContext._timestamp = this.valueExpression(0); } break; @@ -9225,119 +9295,119 @@ export class SparkSqlParser extends SQLParserBase { } public aggregationClause(): AggregationClauseContext { let localContext = new AggregationClauseContext(this.context, this.state); - this.enterRule(localContext, 136, SparkSqlParser.RULE_aggregationClause); + this.enterRule(localContext, 140, SparkSqlParser.RULE_aggregationClause); let _la: number; try { let alternative: number; - this.state = 2278; + this.state = 2292; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2239; + this.state = 2253; this.match(SparkSqlParser.KW_GROUP); - this.state = 2240; + this.state = 2254; this.match(SparkSqlParser.KW_BY); - this.state = 2241; + this.state = 2255; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); - this.state = 2246; + this.state = 2260; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2242; + this.state = 2256; this.match(SparkSqlParser.COMMA); - this.state = 2243; + this.state = 2257; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); } } } - this.state = 2248; + this.state = 2262; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2249; + this.state = 2263; this.match(SparkSqlParser.KW_GROUP); - this.state = 2250; + this.state = 2264; this.match(SparkSqlParser.KW_BY); - this.state = 2251; + this.state = 2265; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); - this.state = 2256; + this.state = 2270; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 292, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2252; + this.state = 2266; this.match(SparkSqlParser.COMMA); - this.state = 2253; + this.state = 2267; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); } } } - this.state = 2258; + this.state = 2272; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 292, this.context); } - this.state = 2276; + this.state = 2290; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { - this.state = 2259; + this.state = 2273; this.match(SparkSqlParser.KW_WITH); - this.state = 2260; + this.state = 2274; localContext._kind = this.match(SparkSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 2261; + this.state = 2275; this.match(SparkSqlParser.KW_WITH); - this.state = 2262; + this.state = 2276; localContext._kind = this.match(SparkSqlParser.KW_CUBE); } break; case 3: { - this.state = 2263; + this.state = 2277; localContext._kind = this.match(SparkSqlParser.KW_GROUPING); - this.state = 2264; + this.state = 2278; this.match(SparkSqlParser.KW_SETS); - this.state = 2265; + this.state = 2279; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2266; + this.state = 2280; this.groupingSet(); - this.state = 2271; + this.state = 2285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2267; + this.state = 2281; this.match(SparkSqlParser.COMMA); - this.state = 2268; + this.state = 2282; this.groupingSet(); } } - this.state = 2273; + this.state = 2287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2274; + this.state = 2288; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9362,29 +9432,29 @@ export class SparkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 138, SparkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 142, SparkSqlParser.RULE_groupByClause); try { - this.state = 2283; + this.state = 2297; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2280; + this.state = 2294; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2281; + this.state = 2295; this.groupingAnalytics(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2282; + this.state = 2296; this.expression(); } break; @@ -9406,17 +9476,17 @@ export class SparkSqlParser extends SQLParserBase { } public groupingAnalytics(): GroupingAnalyticsContext { let localContext = new GroupingAnalyticsContext(this.context, this.state); - this.enterRule(localContext, 140, SparkSqlParser.RULE_groupingAnalytics); + this.enterRule(localContext, 144, SparkSqlParser.RULE_groupingAnalytics); let _la: number; try { - this.state = 2316; + this.state = 2330; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CUBE: case SparkSqlParser.KW_ROLLUP: this.enterOuterAlt(localContext, 1); { - this.state = 2285; + this.state = 2299; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 256)) { this.errorHandler.recoverInline(this); @@ -9425,86 +9495,86 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2286; + this.state = 2300; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2287; + this.state = 2301; this.groupingSet(); - this.state = 2292; + this.state = 2306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2288; + this.state = 2302; this.match(SparkSqlParser.COMMA); - this.state = 2289; + this.state = 2303; this.groupingSet(); } } - this.state = 2294; + this.state = 2308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2295; + this.state = 2309; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 2); { - this.state = 2297; + this.state = 2311; this.match(SparkSqlParser.KW_GROUPING); - this.state = 2298; + this.state = 2312; this.match(SparkSqlParser.KW_SETS); - this.state = 2299; + this.state = 2313; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2302; + this.state = 2316; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { case 1: { - this.state = 2300; + this.state = 2314; this.groupingAnalytics(); } break; case 2: { - this.state = 2301; + this.state = 2315; this.groupingSet(); } break; } - this.state = 2311; + this.state = 2325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2304; + this.state = 2318; this.match(SparkSqlParser.COMMA); - this.state = 2307; + this.state = 2321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2305; + this.state = 2319; this.groupingAnalytics(); } break; case 2: { - this.state = 2306; + this.state = 2320; this.groupingSet(); } break; } } } - this.state = 2313; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2314; + this.state = 2328; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9528,86 +9598,86 @@ export class SparkSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 142, SparkSqlParser.RULE_groupingSet); + this.enterRule(localContext, 146, SparkSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2338; + this.state = 2352; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2318; + this.state = 2332; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2319; + this.state = 2333; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2320; + this.state = 2334; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2335; + this.state = 2349; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2323; + this.state = 2337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2321; + this.state = 2335; this.columnName(); } break; case 2: { - this.state = 2322; + this.state = 2336; this.expression(); } break; } - this.state = 2332; + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2325; + this.state = 2339; this.match(SparkSqlParser.COMMA); - this.state = 2328; + this.state = 2342; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2326; + this.state = 2340; this.columnName(); } break; case 2: { - this.state = 2327; + this.state = 2341; this.expression(); } break; } } } - this.state = 2334; + this.state = 2348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2337; + this.state = 2351; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9629,48 +9699,48 @@ export class SparkSqlParser extends SQLParserBase { } public pivotClause(): PivotClauseContext { let localContext = new PivotClauseContext(this.context, this.state); - this.enterRule(localContext, 144, SparkSqlParser.RULE_pivotClause); + this.enterRule(localContext, 148, SparkSqlParser.RULE_pivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2340; + this.state = 2354; this.match(SparkSqlParser.KW_PIVOT); - this.state = 2341; + this.state = 2355; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2342; + this.state = 2356; localContext._aggregates = this.namedExpressionSeq(); - this.state = 2343; + this.state = 2357; this.match(SparkSqlParser.KW_FOR); - this.state = 2344; + this.state = 2358; this.pivotColumn(); - this.state = 2345; + this.state = 2359; this.match(SparkSqlParser.KW_IN); - this.state = 2346; + this.state = 2360; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2347; + this.state = 2361; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); - this.state = 2352; + this.state = 2366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2348; + this.state = 2362; this.match(SparkSqlParser.COMMA); - this.state = 2349; + this.state = 2363; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); } } - this.state = 2354; + this.state = 2368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2355; + this.state = 2369; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2356; + this.state = 2370; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -9690,10 +9760,10 @@ export class SparkSqlParser extends SQLParserBase { } public pivotColumn(): PivotColumnContext { let localContext = new PivotColumnContext(this.context, this.state); - this.enterRule(localContext, 146, SparkSqlParser.RULE_pivotColumn); + this.enterRule(localContext, 150, SparkSqlParser.RULE_pivotColumn); let _la: number; try { - this.state = 2370; + this.state = 2384; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10041,7 +10111,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2358; + this.state = 2372; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } @@ -10049,29 +10119,29 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2359; + this.state = 2373; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2360; + this.state = 2374; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); - this.state = 2365; + this.state = 2379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2361; + this.state = 2375; this.match(SparkSqlParser.COMMA); - this.state = 2362; + this.state = 2376; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } } - this.state = 2367; + this.state = 2381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2368; + this.state = 2382; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -10095,29 +10165,29 @@ export class SparkSqlParser extends SQLParserBase { } public pivotValue(): PivotValueContext { let localContext = new PivotValueContext(this.context, this.state); - this.enterRule(localContext, 148, SparkSqlParser.RULE_pivotValue); + this.enterRule(localContext, 152, SparkSqlParser.RULE_pivotValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2372; + this.state = 2386; this.expression(); - this.state = 2377; + this.state = 2391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2374; + this.state = 2388; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2373; + this.state = 2387; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2376; + this.state = 2390; this.identifier(); } } @@ -10140,19 +10210,19 @@ export class SparkSqlParser extends SQLParserBase { } public unPivotClause(): UnPivotClauseContext { let localContext = new UnPivotClauseContext(this.context, this.state); - this.enterRule(localContext, 150, SparkSqlParser.RULE_unPivotClause); + this.enterRule(localContext, 154, SparkSqlParser.RULE_unPivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2379; + this.state = 2393; this.match(SparkSqlParser.KW_UNPIVOT); - this.state = 2382; + this.state = 2396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104 || _la === 141) { { - this.state = 2380; + this.state = 2394; _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 141)) { this.errorHandler.recoverInline(this); @@ -10161,14 +10231,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2381; + this.state = 2395; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 2384; + this.state = 2398; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2387; + this.state = 2401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10515,37 +10585,37 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2385; + this.state = 2399; this.unPivotSingleValueColumnClause(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2386; + this.state = 2400; this.unPivotMultiValueColumnClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2389; + this.state = 2403; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2394; + this.state = 2408; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { - this.state = 2391; + this.state = 2405; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2390; + this.state = 2404; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2393; + this.state = 2407; this.identifier(); } break; @@ -10568,42 +10638,42 @@ export class SparkSqlParser extends SQLParserBase { } public unPivotSingleValueColumnClause(): UnPivotSingleValueColumnClauseContext { let localContext = new UnPivotSingleValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 152, SparkSqlParser.RULE_unPivotSingleValueColumnClause); + this.enterRule(localContext, 156, SparkSqlParser.RULE_unPivotSingleValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2396; + this.state = 2410; this.identifier(); - this.state = 2397; + this.state = 2411; this.match(SparkSqlParser.KW_FOR); - this.state = 2398; + this.state = 2412; this.identifier(); - this.state = 2399; + this.state = 2413; this.match(SparkSqlParser.KW_IN); - this.state = 2400; + this.state = 2414; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2401; + this.state = 2415; localContext._unPivotColumnAndAlias = this.unPivotColumnAndAlias(); localContext._unPivotColumns.push(localContext._unPivotColumnAndAlias); - this.state = 2406; + this.state = 2420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2402; + this.state = 2416; this.match(SparkSqlParser.COMMA); - this.state = 2403; + this.state = 2417; localContext._unPivotColumnAndAlias = this.unPivotColumnAndAlias(); localContext._unPivotColumns.push(localContext._unPivotColumnAndAlias); } } - this.state = 2408; + this.state = 2422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2409; + this.state = 2423; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10623,64 +10693,64 @@ export class SparkSqlParser extends SQLParserBase { } public unPivotMultiValueColumnClause(): UnPivotMultiValueColumnClauseContext { let localContext = new UnPivotMultiValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 154, SparkSqlParser.RULE_unPivotMultiValueColumnClause); + this.enterRule(localContext, 158, SparkSqlParser.RULE_unPivotMultiValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2411; + this.state = 2425; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2412; + this.state = 2426; localContext._identifier = this.identifier(); localContext._unPivotValueColumns.push(localContext._identifier); - this.state = 2417; + this.state = 2431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2413; + this.state = 2427; this.match(SparkSqlParser.COMMA); - this.state = 2414; + this.state = 2428; localContext._identifier = this.identifier(); localContext._unPivotValueColumns.push(localContext._identifier); } } - this.state = 2419; + this.state = 2433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2420; + this.state = 2434; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2421; + this.state = 2435; this.match(SparkSqlParser.KW_FOR); - this.state = 2422; + this.state = 2436; this.identifier(); - this.state = 2423; + this.state = 2437; this.match(SparkSqlParser.KW_IN); - this.state = 2424; + this.state = 2438; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2425; + this.state = 2439; localContext._unPivotColumnSet = this.unPivotColumnSet(); localContext._unPivotColumnSets.push(localContext._unPivotColumnSet); - this.state = 2430; + this.state = 2444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2426; + this.state = 2440; this.match(SparkSqlParser.COMMA); - this.state = 2427; + this.state = 2441; localContext._unPivotColumnSet = this.unPivotColumnSet(); localContext._unPivotColumnSets.push(localContext._unPivotColumnSet); } } - this.state = 2432; + this.state = 2446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2433; + this.state = 2447; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10700,51 +10770,51 @@ export class SparkSqlParser extends SQLParserBase { } public unPivotColumnSet(): UnPivotColumnSetContext { let localContext = new UnPivotColumnSetContext(this.context, this.state); - this.enterRule(localContext, 156, SparkSqlParser.RULE_unPivotColumnSet); + this.enterRule(localContext, 160, SparkSqlParser.RULE_unPivotColumnSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2435; + this.state = 2449; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2436; + this.state = 2450; localContext._multipartIdentifier = this.multipartIdentifier(); localContext._unPivotColumns.push(localContext._multipartIdentifier); - this.state = 2441; + this.state = 2455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2437; + this.state = 2451; this.match(SparkSqlParser.COMMA); - this.state = 2438; + this.state = 2452; localContext._multipartIdentifier = this.multipartIdentifier(); localContext._unPivotColumns.push(localContext._multipartIdentifier); } } - this.state = 2443; + this.state = 2457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2444; + this.state = 2458; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2449; + this.state = 2463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2446; + this.state = 2460; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2445; + this.state = 2459; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2448; + this.state = 2462; this.identifier(); } } @@ -10767,29 +10837,29 @@ export class SparkSqlParser extends SQLParserBase { } public unPivotColumnAndAlias(): UnPivotColumnAndAliasContext { let localContext = new UnPivotColumnAndAliasContext(this.context, this.state); - this.enterRule(localContext, 158, SparkSqlParser.RULE_unPivotColumnAndAlias); + this.enterRule(localContext, 162, SparkSqlParser.RULE_unPivotColumnAndAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2451; + this.state = 2465; this.multipartIdentifier(); - this.state = 2456; + this.state = 2470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2453; + this.state = 2467; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { - this.state = 2452; + this.state = 2466; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2455; + this.state = 2469; this.identifier(); } } @@ -10812,15 +10882,15 @@ export class SparkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 160, SparkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 164, SparkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2458; + this.state = 2472; this.match(SparkSqlParser.KW_IF); - this.state = 2459; + this.state = 2473; this.match(SparkSqlParser.KW_NOT); - this.state = 2460; + this.state = 2474; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10840,13 +10910,13 @@ export class SparkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 162, SparkSqlParser.RULE_ifExists); + this.enterRule(localContext, 166, SparkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2462; + this.state = 2476; this.match(SparkSqlParser.KW_IF); - this.state = 2463; + this.state = 2477; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10866,96 +10936,96 @@ export class SparkSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 164, SparkSqlParser.RULE_lateralView); + this.enterRule(localContext, 168, SparkSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2465; + this.state = 2479; this.match(SparkSqlParser.KW_LATERAL); - this.state = 2466; + this.state = 2480; this.match(SparkSqlParser.KW_VIEW); - this.state = 2468; + this.state = 2482; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2467; + this.state = 2481; this.match(SparkSqlParser.KW_OUTER); } break; } - this.state = 2470; + this.state = 2484; this.viewName(); - this.state = 2471; + this.state = 2485; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2480; + this.state = 2494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2472; + this.state = 2486; this.expression(); - this.state = 2477; + this.state = 2491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2473; + this.state = 2487; this.match(SparkSqlParser.COMMA); - this.state = 2474; + this.state = 2488; this.expression(); } } - this.state = 2479; + this.state = 2493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2482; + this.state = 2496; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2483; + this.state = 2497; this.tableAlias(); - this.state = 2495; + this.state = 2509; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2485; + this.state = 2499; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2484; + this.state = 2498; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2487; + this.state = 2501; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); - this.state = 2492; + this.state = 2506; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 328, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2488; + this.state = 2502; this.match(SparkSqlParser.COMMA); - this.state = 2489; + this.state = 2503; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); } } } - this.state = 2494; + this.state = 2508; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 328, this.context); } } break; @@ -10978,12 +11048,12 @@ export class SparkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 166, SparkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 170, SparkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2497; + this.state = 2511; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11010,41 +11080,41 @@ export class SparkSqlParser extends SQLParserBase { } public relation(): RelationContext { let localContext = new RelationContext(this.context, this.state); - this.enterRule(localContext, 168, SparkSqlParser.RULE_relation); + this.enterRule(localContext, 172, SparkSqlParser.RULE_relation); try { let alternative: number; - this.state = 2512; + this.state = 2526; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2499; + this.state = 2513; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2501; + this.state = 2515; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2500; + this.state = 2514; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2503; + this.state = 2517; this.relationPrimary(); - this.state = 2509; + this.state = 2523; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2507; + this.state = 2521; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11057,19 +11127,19 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_RIGHT: case SparkSqlParser.KW_SEMI: { - this.state = 2504; + this.state = 2518; this.joinRelation(); } break; case SparkSqlParser.KW_PIVOT: { - this.state = 2505; + this.state = 2519; this.pivotClause(); } break; case SparkSqlParser.KW_UNPIVOT: { - this.state = 2506; + this.state = 2520; this.unPivotClause(); } break; @@ -11078,9 +11148,9 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 2511; + this.state = 2525; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); } } break; @@ -11102,9 +11172,9 @@ export class SparkSqlParser extends SQLParserBase { } public joinRelation(): JoinRelationContext { let localContext = new JoinRelationContext(this.context, this.state); - this.enterRule(localContext, 170, SparkSqlParser.RULE_joinRelation); + this.enterRule(localContext, 174, SparkSqlParser.RULE_joinRelation); try { - this.state = 2531; + this.state = 2545; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11118,29 +11188,29 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 2514; + this.state = 2528; this.joinType(); } - this.state = 2515; + this.state = 2529; this.match(SparkSqlParser.KW_JOIN); - this.state = 2517; + this.state = 2531; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 2516; + this.state = 2530; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2519; + this.state = 2533; localContext._right = this.relationPrimary(); - this.state = 2521; + this.state = 2535; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: { - this.state = 2520; + this.state = 2534; this.joinCriteria(); } break; @@ -11150,23 +11220,23 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_NATURAL: this.enterOuterAlt(localContext, 2); { - this.state = 2523; + this.state = 2537; this.match(SparkSqlParser.KW_NATURAL); - this.state = 2524; + this.state = 2538; this.joinType(); - this.state = 2525; + this.state = 2539; this.match(SparkSqlParser.KW_JOIN); - this.state = 2527; + this.state = 2541; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 2526; + this.state = 2540; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2529; + this.state = 2543; localContext._right = this.relationPrimary(); } break; @@ -11190,21 +11260,21 @@ export class SparkSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 172, SparkSqlParser.RULE_joinType); + this.enterRule(localContext, 176, SparkSqlParser.RULE_joinType); let _la: number; try { - this.state = 2549; + this.state = 2563; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2534; + this.state = 2548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2533; + this.state = 2547; this.match(SparkSqlParser.KW_INNER); } } @@ -11214,21 +11284,21 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2536; + this.state = 2550; this.match(SparkSqlParser.KW_CROSS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2537; + this.state = 2551; this.match(SparkSqlParser.KW_LEFT); - this.state = 2539; + this.state = 2553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2538; + this.state = 2552; this.match(SparkSqlParser.KW_OUTER); } } @@ -11238,17 +11308,17 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2542; + this.state = 2556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2541; + this.state = 2555; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2544; + this.state = 2558; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 264)) { this.errorHandler.recoverInline(this); @@ -11262,7 +11332,7 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2545; + this.state = 2559; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 250)) { this.errorHandler.recoverInline(this); @@ -11271,12 +11341,12 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2547; + this.state = 2561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2546; + this.state = 2560; this.match(SparkSqlParser.KW_OUTER); } } @@ -11301,26 +11371,52 @@ export class SparkSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 174, SparkSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 178, SparkSqlParser.RULE_joinCriteria); try { - this.state = 2555; + this.state = 2576; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2551; + this.state = 2565; this.match(SparkSqlParser.KW_ON); - this.state = 2552; - this.booleanExpression(0); + this.state = 2572; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + case 1: + { + this.state = 2566; + this.booleanExpression(0); + } + break; + case 2: + { + this.state = 2567; + this.columnNamePathAllowEmpty(); + this.state = 2570; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + case 1: + { + this.state = 2568; + this.match(SparkSqlParser.EQ); + this.state = 2569; + this.columnNamePathAllowEmpty(); + } + break; + } + } + break; + } } break; case SparkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2553; + this.state = 2574; this.match(SparkSqlParser.KW_USING); - this.state = 2554; + this.state = 2575; this.identifierList(); } break; @@ -11344,39 +11440,39 @@ export class SparkSqlParser extends SQLParserBase { } public sample(): SampleContext { let localContext = new SampleContext(this.context, this.state); - this.enterRule(localContext, 176, SparkSqlParser.RULE_sample); + this.enterRule(localContext, 180, SparkSqlParser.RULE_sample); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2557; + this.state = 2578; this.match(SparkSqlParser.KW_TABLESAMPLE); - this.state = 2558; + this.state = 2579; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2560; + this.state = 2581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2559; + this.state = 2580; this.sampleMethod(); } } - this.state = 2562; + this.state = 2583; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2567; + this.state = 2588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: { - this.state = 2563; + this.state = 2584; this.match(SparkSqlParser.KW_REPEATABLE); - this.state = 2564; + this.state = 2585; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2565; + this.state = 2586; localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2566; + this.state = 2587; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11399,26 +11495,26 @@ export class SparkSqlParser extends SQLParserBase { } public sampleMethod(): SampleMethodContext { let localContext = new SampleMethodContext(this.context, this.state); - this.enterRule(localContext, 178, SparkSqlParser.RULE_sampleMethod); + this.enterRule(localContext, 182, SparkSqlParser.RULE_sampleMethod); let _la: number; try { - this.state = 2593; + this.state = 2614; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2570; + this.state = 2591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 2569; + this.state = 2590; localContext._negativeSign = this.match(SparkSqlParser.MINUS); } } - this.state = 2572; + this.state = 2593; localContext._percentage = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 382 || _la === 384)) { @@ -11428,55 +11524,55 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2573; + this.state = 2594; this.match(SparkSqlParser.KW_PERCENTLIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2574; + this.state = 2595; this.expression(); - this.state = 2575; + this.state = 2596; this.match(SparkSqlParser.KW_ROWS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2577; + this.state = 2598; localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); - this.state = 2578; + this.state = 2599; localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2579; + this.state = 2600; this.match(SparkSqlParser.KW_OUT); - this.state = 2580; + this.state = 2601; this.match(SparkSqlParser.KW_OF); - this.state = 2581; + this.state = 2602; localContext._denominator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2590; + this.state = 2611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2582; + this.state = 2603; this.match(SparkSqlParser.KW_ON); - this.state = 2588; + this.state = 2609; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { case 1: { - this.state = 2583; + this.state = 2604; this.identifier(); } break; case 2: { - this.state = 2584; + this.state = 2605; this.qualifiedName(); - this.state = 2585; + this.state = 2606; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2586; + this.state = 2607; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11489,7 +11585,7 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2592; + this.state = 2613; localContext._bytes = this.expression(); } break; @@ -11511,15 +11607,15 @@ export class SparkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 180, SparkSqlParser.RULE_identifierList); + this.enterRule(localContext, 184, SparkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2595; + this.state = 2616; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2596; + this.state = 2617; this.identifierSeq(); - this.state = 2597; + this.state = 2618; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11539,32 +11635,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 182, SparkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 186, SparkSqlParser.RULE_identifierSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2599; + this.state = 2620; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); - this.state = 2604; + this.state = 2625; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 352, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2600; + this.state = 2621; this.match(SparkSqlParser.COMMA); - this.state = 2601; + this.state = 2622; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); } } } - this.state = 2606; + this.state = 2627; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 352, this.context); } } } @@ -11584,32 +11680,32 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifierList(): OrderedIdentifierListContext { let localContext = new OrderedIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 184, SparkSqlParser.RULE_orderedIdentifierList); + this.enterRule(localContext, 188, SparkSqlParser.RULE_orderedIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2607; + this.state = 2628; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2608; + this.state = 2629; this.orderedIdentifier(); - this.state = 2613; + this.state = 2634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2609; + this.state = 2630; this.match(SparkSqlParser.COMMA); - this.state = 2610; + this.state = 2631; this.orderedIdentifier(); } } - this.state = 2615; + this.state = 2636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2616; + this.state = 2637; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11629,19 +11725,19 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifier(): OrderedIdentifierContext { let localContext = new OrderedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 186, SparkSqlParser.RULE_orderedIdentifier); + this.enterRule(localContext, 190, SparkSqlParser.RULE_orderedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2618; + this.state = 2639; localContext._ident = this.errorCapturingIdentifier(); - this.state = 2620; + this.state = 2641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 86) { { - this.state = 2619; + this.state = 2640; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -11672,32 +11768,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierCommentList(): IdentifierCommentListContext { let localContext = new IdentifierCommentListContext(this.context, this.state); - this.enterRule(localContext, 188, SparkSqlParser.RULE_identifierCommentList); + this.enterRule(localContext, 192, SparkSqlParser.RULE_identifierCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2622; + this.state = 2643; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2623; + this.state = 2644; this.identifierComment(); - this.state = 2628; + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2624; + this.state = 2645; this.match(SparkSqlParser.COMMA); - this.state = 2625; + this.state = 2646; this.identifierComment(); } } - this.state = 2630; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2631; + this.state = 2652; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11717,21 +11813,21 @@ export class SparkSqlParser extends SQLParserBase { } public identifierComment(): IdentifierCommentContext { let localContext = new IdentifierCommentContext(this.context, this.state); - this.enterRule(localContext, 190, SparkSqlParser.RULE_identifierComment); + this.enterRule(localContext, 194, SparkSqlParser.RULE_identifierComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2633; + this.state = 2654; this.columnNameCreate(); - this.state = 2636; + this.state = 2657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 2634; + this.state = 2655; this.match(SparkSqlParser.KW_COMMENT); - this.state = 2635; + this.state = 2656; localContext._comment = this.stringLit(); } } @@ -11754,58 +11850,58 @@ export class SparkSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 192, SparkSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 196, SparkSqlParser.RULE_relationPrimary); try { - this.state = 2669; + this.state = 2690; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { case 1: localContext = new TableSourceContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2641; + this.state = 2662; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2638; + this.state = 2659; this.tableName(); } break; case 2: { - this.state = 2639; + this.state = 2660; this.viewName(); } break; case 3: { - this.state = 2640; + this.state = 2661; this.identifierReference(); } break; } - this.state = 2644; + this.state = 2665; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { - this.state = 2643; + this.state = 2664; this.temporalClause(); } break; } - this.state = 2647; + this.state = 2668; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: { - this.state = 2646; + this.state = 2667; this.sample(); } break; } - this.state = 2649; + this.state = 2670; this.tableAlias(); } break; @@ -11813,19 +11909,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SubQueryTableSourceContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2651; + this.state = 2672; this.atomSubQueryTableSource(); - this.state = 2653; + this.state = 2674; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: { - this.state = 2652; + this.state = 2673; this.sample(); } break; } - this.state = 2655; + this.state = 2676; this.tableAlias(); } break; @@ -11833,23 +11929,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new JoinTableSourceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2657; + this.state = 2678; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2658; + this.state = 2679; this.relation(); - this.state = 2659; + this.state = 2680; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2661; + this.state = 2682; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { case 1: { - this.state = 2660; + this.state = 2681; this.sample(); } break; } - this.state = 2663; + this.state = 2684; this.tableAlias(); } break; @@ -11857,9 +11953,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new InlineTableSourceContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2665; + this.state = 2686; this.inlineTable(); - this.state = 2666; + this.state = 2687; this.tableAlias(); } break; @@ -11867,7 +11963,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new FunctionTableSourceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2668; + this.state = 2689; this.functionTable(); } break; @@ -11889,15 +11985,15 @@ export class SparkSqlParser extends SQLParserBase { } public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); - this.enterRule(localContext, 194, SparkSqlParser.RULE_atomSubQueryTableSource); + this.enterRule(localContext, 198, SparkSqlParser.RULE_atomSubQueryTableSource); try { this.enterOuterAlt(localContext, 1); { - this.state = 2671; + this.state = 2692; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2672; + this.state = 2693; this.query(); - this.state = 2673; + this.state = 2694; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11917,32 +12013,32 @@ export class SparkSqlParser extends SQLParserBase { } public inlineTable(): InlineTableContext { let localContext = new InlineTableContext(this.context, this.state); - this.enterRule(localContext, 196, SparkSqlParser.RULE_inlineTable); + this.enterRule(localContext, 200, SparkSqlParser.RULE_inlineTable); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2675; + this.state = 2696; this.match(SparkSqlParser.KW_VALUES); - this.state = 2676; + this.state = 2697; this.expression(); - this.state = 2681; + this.state = 2702; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 360, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 363, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2677; + this.state = 2698; this.match(SparkSqlParser.COMMA); - this.state = 2678; + this.state = 2699; this.expression(); } } } - this.state = 2683; + this.state = 2704; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 360, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 363, this.context); } } } @@ -11962,25 +12058,25 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableSubqueryArgument(): FunctionTableSubqueryArgumentContext { let localContext = new FunctionTableSubqueryArgumentContext(this.context, this.state); - this.enterRule(localContext, 198, SparkSqlParser.RULE_functionTableSubqueryArgument); + this.enterRule(localContext, 202, SparkSqlParser.RULE_functionTableSubqueryArgument); let _la: number; try { - this.state = 2703; + this.state = 2724; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 367, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2684; + this.state = 2705; this.match(SparkSqlParser.KW_TABLE); - this.state = 2685; + this.state = 2706; this.tableName(); - this.state = 2687; + this.state = 2708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2686; + this.state = 2707; this.tableArgumentPartitioning(); } } @@ -11990,20 +12086,20 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2689; + this.state = 2710; this.match(SparkSqlParser.KW_TABLE); - this.state = 2690; + this.state = 2711; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2691; + this.state = 2712; this.tableName(); - this.state = 2692; + this.state = 2713; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2694; + this.state = 2715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2693; + this.state = 2714; this.tableArgumentPartitioning(); } } @@ -12013,20 +12109,20 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2696; + this.state = 2717; this.match(SparkSqlParser.KW_TABLE); - this.state = 2697; + this.state = 2718; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2698; + this.state = 2719; this.query(); - this.state = 2699; + this.state = 2720; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2701; + this.state = 2722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2700; + this.state = 2721; this.tableArgumentPartitioning(); } } @@ -12051,22 +12147,22 @@ export class SparkSqlParser extends SQLParserBase { } public tableArgumentPartitioning(): TableArgumentPartitioningContext { let localContext = new TableArgumentPartitioningContext(this.context, this.state); - this.enterRule(localContext, 200, SparkSqlParser.RULE_tableArgumentPartitioning); + this.enterRule(localContext, 204, SparkSqlParser.RULE_tableArgumentPartitioning); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_WITH: { { - this.state = 2705; + this.state = 2726; this.match(SparkSqlParser.KW_WITH); - this.state = 2706; + this.state = 2727; this.match(SparkSqlParser.KW_SINGLE); - this.state = 2707; + this.state = 2728; this.match(SparkSqlParser.KW_PARTITION); } } @@ -12075,7 +12171,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITION: { { - this.state = 2708; + this.state = 2729; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -12084,38 +12180,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2709; + this.state = 2730; this.match(SparkSqlParser.KW_BY); - this.state = 2722; + this.state = 2743; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 366, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: { { { - this.state = 2710; + this.state = 2731; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2711; + this.state = 2732; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2716; + this.state = 2737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2712; + this.state = 2733; this.match(SparkSqlParser.COMMA); - this.state = 2713; + this.state = 2734; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2718; + this.state = 2739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2719; + this.state = 2740; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12123,7 +12219,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 2721; + this.state = 2742; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } @@ -12135,12 +12231,12 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2735; + this.state = 2756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 2726; + this.state = 2747; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -12149,27 +12245,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2727; + this.state = 2748; this.match(SparkSqlParser.KW_BY); { - this.state = 2733; + this.state = 2754; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { { - this.state = 2728; + this.state = 2749; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2729; + this.state = 2750; this.orderOrSortByClause(); - this.state = 2730; + this.state = 2751; this.match(SparkSqlParser.RIGHT_PAREN); } } break; case 2: { - this.state = 2732; + this.state = 2753; this.sortItem(); } break; @@ -12196,15 +12292,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableNamedArgumentExpression(): FunctionTableNamedArgumentExpressionContext { let localContext = new FunctionTableNamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 202, SparkSqlParser.RULE_functionTableNamedArgumentExpression); + this.enterRule(localContext, 206, SparkSqlParser.RULE_functionTableNamedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2737; + this.state = 2758; localContext._key = this.identifier(); - this.state = 2738; + this.state = 2759; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2739; + this.state = 2760; localContext._table = this.functionTableSubqueryArgument(); } } @@ -12224,15 +12320,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableReferenceArgument(): FunctionTableReferenceArgumentContext { let localContext = new FunctionTableReferenceArgumentContext(this.context, this.state); - this.enterRule(localContext, 204, SparkSqlParser.RULE_functionTableReferenceArgument); + this.enterRule(localContext, 208, SparkSqlParser.RULE_functionTableReferenceArgument); try { - this.state = 2743; + this.state = 2764; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2741; + this.state = 2762; this.functionTableSubqueryArgument(); } break; @@ -12581,7 +12677,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2742; + this.state = 2763; this.functionTableNamedArgumentExpression(); } break; @@ -12605,22 +12701,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableArgument(): FunctionTableArgumentContext { let localContext = new FunctionTableArgumentContext(this.context, this.state); - this.enterRule(localContext, 206, SparkSqlParser.RULE_functionTableArgument); + this.enterRule(localContext, 210, SparkSqlParser.RULE_functionTableArgument); try { - this.state = 2747; + this.state = 2768; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2745; + this.state = 2766; this.functionTableReferenceArgument(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2746; + this.state = 2767; this.functionArgument(); } break; @@ -12642,13 +12738,13 @@ export class SparkSqlParser extends SQLParserBase { } public functionTable(): FunctionTableContext { let localContext = new FunctionTableContext(this.context, this.state); - this.enterRule(localContext, 208, SparkSqlParser.RULE_functionTable); + this.enterRule(localContext, 212, SparkSqlParser.RULE_functionTable); try { this.enterOuterAlt(localContext, 1); { - this.state = 2749; + this.state = 2770; this.atomFunctionTable(); - this.state = 2750; + this.state = 2771; this.tableAlias(); } } @@ -12668,42 +12764,42 @@ export class SparkSqlParser extends SQLParserBase { } public atomFunctionTable(): AtomFunctionTableContext { let localContext = new AtomFunctionTableContext(this.context, this.state); - this.enterRule(localContext, 210, SparkSqlParser.RULE_atomFunctionTable); + this.enterRule(localContext, 214, SparkSqlParser.RULE_atomFunctionTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2752; + this.state = 2773; this.functionName(); - this.state = 2753; + this.state = 2774; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2762; + this.state = 2783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2754; + this.state = 2775; this.functionTableArgument(); - this.state = 2759; + this.state = 2780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2755; + this.state = 2776; this.match(SparkSqlParser.COMMA); - this.state = 2756; + this.state = 2777; this.functionTableArgument(); } } - this.state = 2761; + this.state = 2782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2764; + this.state = 2785; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12723,33 +12819,33 @@ export class SparkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 212, SparkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 216, SparkSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2773; + this.state = 2794; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2767; + this.state = 2788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2766; + this.state = 2787; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2769; + this.state = 2790; localContext._alias = this.strictIdentifier(); - this.state = 2771; + this.state = 2792; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2770; + this.state = 2791; this.identifierList(); } break; @@ -12775,32 +12871,32 @@ export class SparkSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 214, SparkSqlParser.RULE_rowFormat); + this.enterRule(localContext, 218, SparkSqlParser.RULE_rowFormat); try { - this.state = 2824; + this.state = 2845; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2775; + this.state = 2796; this.match(SparkSqlParser.KW_ROW); - this.state = 2776; + this.state = 2797; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2777; + this.state = 2798; this.match(SparkSqlParser.KW_SERDE); - this.state = 2778; + this.state = 2799; localContext._name = this.stringLit(); - this.state = 2782; + this.state = 2803; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2779; + this.state = 2800; this.match(SparkSqlParser.KW_WITH); - this.state = 2780; + this.state = 2801; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 2781; + this.state = 2802; localContext._props = this.propertyList(); } break; @@ -12810,35 +12906,35 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2784; + this.state = 2805; this.match(SparkSqlParser.KW_ROW); - this.state = 2785; + this.state = 2806; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2786; + this.state = 2807; this.match(SparkSqlParser.KW_DELIMITED); - this.state = 2796; + this.state = 2817; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2787; + this.state = 2808; this.match(SparkSqlParser.KW_FIELDS); - this.state = 2788; + this.state = 2809; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2789; + this.state = 2810; this.match(SparkSqlParser.KW_BY); - this.state = 2790; + this.state = 2811; localContext._fieldsTerminatedBy = this.stringLit(); - this.state = 2794; + this.state = 2815; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2791; + this.state = 2812; this.match(SparkSqlParser.KW_ESCAPED); - this.state = 2792; + this.state = 2813; this.match(SparkSqlParser.KW_BY); - this.state = 2793; + this.state = 2814; localContext._escapedBy = this.stringLit(); } break; @@ -12846,70 +12942,70 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2803; + this.state = 2824; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2798; + this.state = 2819; this.match(SparkSqlParser.KW_COLLECTION); - this.state = 2799; + this.state = 2820; this.match(SparkSqlParser.KW_ITEMS); - this.state = 2800; + this.state = 2821; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2801; + this.state = 2822; this.match(SparkSqlParser.KW_BY); - this.state = 2802; + this.state = 2823; localContext._collectionItemsTerminatedBy = this.stringLit(); } break; } - this.state = 2810; + this.state = 2831; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2805; + this.state = 2826; this.match(SparkSqlParser.KW_MAP); - this.state = 2806; + this.state = 2827; this.match(SparkSqlParser.KW_KEYS); - this.state = 2807; + this.state = 2828; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2808; + this.state = 2829; this.match(SparkSqlParser.KW_BY); - this.state = 2809; + this.state = 2830; localContext._keysTerminatedBy = this.stringLit(); } break; } - this.state = 2816; + this.state = 2837; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: { - this.state = 2812; + this.state = 2833; this.match(SparkSqlParser.KW_LINES); - this.state = 2813; + this.state = 2834; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2814; + this.state = 2835; this.match(SparkSqlParser.KW_BY); - this.state = 2815; + this.state = 2836; localContext._linesSeparatedBy = this.stringLit(); } break; } - this.state = 2822; + this.state = 2843; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 2818; + this.state = 2839; this.match(SparkSqlParser.KW_NULL); - this.state = 2819; + this.state = 2840; this.match(SparkSqlParser.KW_DEFINED); - this.state = 2820; + this.state = 2841; this.match(SparkSqlParser.KW_AS); - this.state = 2821; + this.state = 2842; localContext._nullDefinedAs = this.stringLit(); } break; @@ -12934,26 +13030,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierList(): MultipartIdentifierListContext { let localContext = new MultipartIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 216, SparkSqlParser.RULE_multipartIdentifierList); + this.enterRule(localContext, 220, SparkSqlParser.RULE_multipartIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2826; + this.state = 2847; this.multipartIdentifier(); - this.state = 2831; + this.state = 2852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2827; + this.state = 2848; this.match(SparkSqlParser.COMMA); - this.state = 2828; + this.state = 2849; this.multipartIdentifier(); } } - this.state = 2833; + this.state = 2854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12975,33 +13071,78 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifier(): MultipartIdentifierContext { let localContext = new MultipartIdentifierContext(this.context, this.state); - this.enterRule(localContext, 218, SparkSqlParser.RULE_multipartIdentifier); + this.enterRule(localContext, 222, SparkSqlParser.RULE_multipartIdentifier); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2834; + this.state = 2855; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); - this.state = 2839; + this.state = 2860; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 389, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2835; + this.state = 2856; this.match(SparkSqlParser.DOT); - this.state = 2836; + this.state = 2857; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); } } } - this.state = 2841; + this.state = 2862; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 389, this.context); + } } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public multipartIdentifierAllowEmpty(): MultipartIdentifierAllowEmptyContext { + let localContext = new MultipartIdentifierAllowEmptyContext(this.context, this.state); + this.enterRule(localContext, 224, SparkSqlParser.RULE_multipartIdentifierAllowEmpty); + try { + this.state = 2869; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2863; + this.multipartIdentifier(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2864; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 2865; + this.multipartIdentifier(); + this.state = 2866; + this.match(SparkSqlParser.DOT); + this.state = 2867; + this.emptyColumn(); + } + break; } } catch (re) { @@ -13020,26 +13161,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext { let localContext = new MultipartIdentifierPropertyListContext(this.context, this.state); - this.enterRule(localContext, 220, SparkSqlParser.RULE_multipartIdentifierPropertyList); + this.enterRule(localContext, 226, SparkSqlParser.RULE_multipartIdentifierPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2842; + this.state = 2871; this.multipartIdentifierProperty(); - this.state = 2847; + this.state = 2876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2843; + this.state = 2872; this.match(SparkSqlParser.COMMA); - this.state = 2844; + this.state = 2873; this.multipartIdentifierProperty(); } } - this.state = 2849; + this.state = 2878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13061,21 +13202,21 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierProperty(): MultipartIdentifierPropertyContext { let localContext = new MultipartIdentifierPropertyContext(this.context, this.state); - this.enterRule(localContext, 222, SparkSqlParser.RULE_multipartIdentifierProperty); + this.enterRule(localContext, 228, SparkSqlParser.RULE_multipartIdentifierProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2850; + this.state = 2879; this.multipartIdentifier(); - this.state = 2853; + this.state = 2882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 2851; + this.state = 2880; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 2852; + this.state = 2881; localContext._options = this.propertyList(); } } @@ -13098,23 +13239,23 @@ export class SparkSqlParser extends SQLParserBase { } public tableIdentifier(): TableIdentifierContext { let localContext = new TableIdentifierContext(this.context, this.state); - this.enterRule(localContext, 224, SparkSqlParser.RULE_tableIdentifier); + this.enterRule(localContext, 230, SparkSqlParser.RULE_tableIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2858; + this.state = 2887; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 2855; + this.state = 2884; localContext._db = this.errorCapturingIdentifier(); - this.state = 2856; + this.state = 2885; this.match(SparkSqlParser.DOT); } break; } - this.state = 2860; + this.state = 2889; localContext._table = this.errorCapturingIdentifier(); } } @@ -13134,23 +13275,23 @@ export class SparkSqlParser extends SQLParserBase { } public viewIdentifier(): ViewIdentifierContext { let localContext = new ViewIdentifierContext(this.context, this.state); - this.enterRule(localContext, 226, SparkSqlParser.RULE_viewIdentifier); + this.enterRule(localContext, 232, SparkSqlParser.RULE_viewIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2865; + this.state = 2894; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 2862; + this.state = 2891; localContext._db = this.errorCapturingIdentifier(); - this.state = 2863; + this.state = 2892; this.match(SparkSqlParser.DOT); } break; } - this.state = 2867; + this.state = 2896; localContext._view = this.errorCapturingIdentifier(); } } @@ -13170,11 +13311,11 @@ export class SparkSqlParser extends SQLParserBase { } public selectLiteralColumnName(): SelectLiteralColumnNameContext { let localContext = new SelectLiteralColumnNameContext(this.context, this.state); - this.enterRule(localContext, 228, SparkSqlParser.RULE_selectLiteralColumnName); + this.enterRule(localContext, 234, SparkSqlParser.RULE_selectLiteralColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2869; + this.state = 2898; this.columnName(); } } @@ -13194,11 +13335,11 @@ export class SparkSqlParser extends SQLParserBase { } public selectExpressionColumnName(): SelectExpressionColumnNameContext { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); - this.enterRule(localContext, 230, SparkSqlParser.RULE_selectExpressionColumnName); + this.enterRule(localContext, 236, SparkSqlParser.RULE_selectExpressionColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2871; + this.state = 2900; this.expression(); } } @@ -13218,28 +13359,28 @@ export class SparkSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 232, SparkSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 238, SparkSqlParser.RULE_tableAllColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2878; + this.state = 2907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { { - this.state = 2873; + this.state = 2902; this.qualifiedName(); - this.state = 2874; + this.state = 2903; this.match(SparkSqlParser.DOT); } } - this.state = 2880; + this.state = 2909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2881; + this.state = 2910; this.match(SparkSqlParser.ASTERISK); } } @@ -13259,48 +13400,48 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpression(): NamedExpressionContext { let localContext = new NamedExpressionContext(this.context, this.state); - this.enterRule(localContext, 234, SparkSqlParser.RULE_namedExpression); + this.enterRule(localContext, 240, SparkSqlParser.RULE_namedExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2886; + this.state = 2915; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: { - this.state = 2883; + this.state = 2912; this.tableAllColumns(); } break; case 2: { - this.state = 2884; + this.state = 2913; this.selectLiteralColumnName(); } break; case 3: { - this.state = 2885; + this.state = 2914; this.selectExpressionColumnName(); } break; } - this.state = 2895; + this.state = 2924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 395, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: { - this.state = 2889; + this.state = 2918; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: { - this.state = 2888; + this.state = 2917; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2893; + this.state = 2922; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -13647,13 +13788,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2891; + this.state = 2920; localContext._alias = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2892; + this.state = 2921; this.identifierList(); } break; @@ -13681,30 +13822,30 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpressionSeq(): NamedExpressionSeqContext { let localContext = new NamedExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 236, SparkSqlParser.RULE_namedExpressionSeq); + this.enterRule(localContext, 242, SparkSqlParser.RULE_namedExpressionSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2897; + this.state = 2926; this.namedExpression(); - this.state = 2902; + this.state = 2931; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 396, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 400, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2898; + this.state = 2927; this.match(SparkSqlParser.COMMA); - this.state = 2899; + this.state = 2928; this.namedExpression(); } } } - this.state = 2904; + this.state = 2933; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 396, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 400, this.context); } } } @@ -13724,11 +13865,11 @@ export class SparkSqlParser extends SQLParserBase { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 238, SparkSqlParser.RULE_selectList); + this.enterRule(localContext, 244, SparkSqlParser.RULE_selectList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2905; + this.state = 2934; this.namedExpressionSeq(); } } @@ -13748,34 +13889,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionFieldList(): PartitionFieldListContext { let localContext = new PartitionFieldListContext(this.context, this.state); - this.enterRule(localContext, 240, SparkSqlParser.RULE_partitionFieldList); + this.enterRule(localContext, 246, SparkSqlParser.RULE_partitionFieldList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2907; + this.state = 2936; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2908; + this.state = 2937; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 2913; + this.state = 2942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2909; + this.state = 2938; this.match(SparkSqlParser.COMMA); - this.state = 2910; + this.state = 2939; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 2915; + this.state = 2944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2916; + this.state = 2945; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13795,22 +13936,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionField(): PartitionFieldContext { let localContext = new PartitionFieldContext(this.context, this.state); - this.enterRule(localContext, 242, SparkSqlParser.RULE_partitionField); + this.enterRule(localContext, 248, SparkSqlParser.RULE_partitionField); try { - this.state = 2920; + this.state = 2949; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2918; + this.state = 2947; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2919; + this.state = 2948; this.columnType(); } break; @@ -13832,45 +13973,45 @@ export class SparkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 244, SparkSqlParser.RULE_transform); + this.enterRule(localContext, 250, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 2935; + this.state = 2964; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2922; + this.state = 2951; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2923; + this.state = 2952; localContext._transformName = this.identifier(); - this.state = 2924; + this.state = 2953; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2925; + this.state = 2954; this.transformArgument(); - this.state = 2930; + this.state = 2959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2926; + this.state = 2955; this.match(SparkSqlParser.COMMA); - this.state = 2927; + this.state = 2956; this.transformArgument(); } } - this.state = 2932; + this.state = 2961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2933; + this.state = 2962; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -13892,22 +14033,22 @@ export class SparkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 246, SparkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 252, SparkSqlParser.RULE_transformArgument); try { - this.state = 2939; + this.state = 2968; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2937; + this.state = 2966; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2938; + this.state = 2967; this.constant(); } break; @@ -13929,11 +14070,11 @@ export class SparkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 248, SparkSqlParser.RULE_expression); + this.enterRule(localContext, 254, SparkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2941; + this.state = 2970; this.booleanExpression(0); } } @@ -13953,15 +14094,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedArgumentExpression(): NamedArgumentExpressionContext { let localContext = new NamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 250, SparkSqlParser.RULE_namedArgumentExpression); + this.enterRule(localContext, 256, SparkSqlParser.RULE_namedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2943; + this.state = 2972; localContext._key = this.identifier(); - this.state = 2944; + this.state = 2973; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2945; + this.state = 2974; localContext._value = this.expression(); } } @@ -13981,22 +14122,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionArgument(): FunctionArgumentContext { let localContext = new FunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 252, SparkSqlParser.RULE_functionArgument); + this.enterRule(localContext, 258, SparkSqlParser.RULE_functionArgument); try { - this.state = 2949; + this.state = 2978; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2947; + this.state = 2976; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2948; + this.state = 2977; this.namedArgumentExpression(); } break; @@ -14018,26 +14159,26 @@ export class SparkSqlParser extends SQLParserBase { } public expressionSeq(): ExpressionSeqContext { let localContext = new ExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 254, SparkSqlParser.RULE_expressionSeq); + this.enterRule(localContext, 260, SparkSqlParser.RULE_expressionSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2951; + this.state = 2980; this.expression(); - this.state = 2956; + this.state = 2985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2952; + this.state = 2981; this.match(SparkSqlParser.COMMA); - this.state = 2953; + this.state = 2982; this.expression(); } } - this.state = 2958; + this.state = 2987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14069,19 +14210,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 256; - this.enterRecursionRule(localContext, 256, SparkSqlParser.RULE_booleanExpression, _p); + let _startState = 262; + this.enterRecursionRule(localContext, 262, SparkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2971; + this.state = 3000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: { - this.state = 2960; + this.state = 2989; _la = this.tokenStream.LA(1); if(!(_la === 197 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14090,32 +14231,32 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2961; + this.state = 2990; this.booleanExpression(5); } break; case 2: { - this.state = 2962; + this.state = 2991; this.match(SparkSqlParser.KW_EXISTS); - this.state = 2963; + this.state = 2992; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2964; + this.state = 2993; this.query(); - this.state = 2965; + this.state = 2994; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 2967; + this.state = 2996; this.valueExpression(0); - this.state = 2969; + this.state = 2998; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 2968; + this.state = 2997; this.predicate(); } break; @@ -14124,9 +14265,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2981; + this.state = 3010; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 407, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 411, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14134,21 +14275,21 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2979; + this.state = 3008; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 2973; + this.state = 3002; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2974; + this.state = 3003; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 2975; + this.state = 3004; localContext._right = this.booleanExpression(3); } break; @@ -14157,22 +14298,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 2976; + this.state = 3005; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2977; + this.state = 3006; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 2978; + this.state = 3007; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 2983; + this.state = 3012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 407, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 411, this.context); } } } @@ -14192,111 +14333,111 @@ export class SparkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 258, SparkSqlParser.RULE_predicate); + this.enterRule(localContext, 264, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3066; + this.state = 3095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2985; + this.state = 3014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 2984; + this.state = 3013; this.match(SparkSqlParser.KW_NOT); } } - this.state = 2987; + this.state = 3016; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 2988; + this.state = 3017; localContext._lower = this.valueExpression(0); - this.state = 2989; + this.state = 3018; this.match(SparkSqlParser.KW_AND); - this.state = 2990; + this.state = 3019; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2993; + this.state = 3022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 2992; + this.state = 3021; this.match(SparkSqlParser.KW_NOT); } } - this.state = 2995; + this.state = 3024; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 2996; + this.state = 3025; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2997; + this.state = 3026; this.expression(); - this.state = 3002; + this.state = 3031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2998; + this.state = 3027; this.match(SparkSqlParser.COMMA); - this.state = 2999; + this.state = 3028; this.expression(); } } - this.state = 3004; + this.state = 3033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3005; + this.state = 3034; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3008; + this.state = 3037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3007; + this.state = 3036; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3010; + this.state = 3039; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3011; + this.state = 3040; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3012; + this.state = 3041; this.query(); - this.state = 3013; + this.state = 3042; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3016; + this.state = 3045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3015; + this.state = 3044; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3018; + this.state = 3047; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 252)) { @@ -14306,24 +14447,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3019; + this.state = 3048; localContext._pattern = this.valueExpression(0); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3021; + this.state = 3050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3020; + this.state = 3049; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3023; + this.state = 3052; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14333,7 +14474,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3024; + this.state = 3053; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 16 || _la === 277)) { @@ -14343,40 +14484,40 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3038; + this.state = 3067; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3025; + this.state = 3054; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3026; + this.state = 3055; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: { - this.state = 3027; + this.state = 3056; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3028; + this.state = 3057; this.expression(); - this.state = 3033; + this.state = 3062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3029; + this.state = 3058; this.match(SparkSqlParser.COMMA); - this.state = 3030; + this.state = 3059; this.expression(); } } - this.state = 3035; + this.state = 3064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3036; + this.state = 3065; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14386,17 +14527,17 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3041; + this.state = 3070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3040; + this.state = 3069; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3043; + this.state = 3072; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14406,16 +14547,16 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3044; + this.state = 3073; localContext._pattern = this.valueExpression(0); - this.state = 3047; + this.state = 3076; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3045; + this.state = 3074; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3046; + this.state = 3075; localContext._escapeChar = this.stringLit(); } break; @@ -14425,38 +14566,38 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3049; + this.state = 3078; this.match(SparkSqlParser.KW_IS); - this.state = 3051; + this.state = 3080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3050; + this.state = 3079; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3053; + this.state = 3082; localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3054; + this.state = 3083; this.match(SparkSqlParser.KW_IS); - this.state = 3056; + this.state = 3085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3055; + this.state = 3084; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3058; + this.state = 3087; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316 || _la === 325)) { @@ -14471,23 +14612,23 @@ export class SparkSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3059; + this.state = 3088; this.match(SparkSqlParser.KW_IS); - this.state = 3061; + this.state = 3090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3060; + this.state = 3089; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3063; + this.state = 3092; localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); - this.state = 3064; + this.state = 3093; this.match(SparkSqlParser.KW_FROM); - this.state = 3065; + this.state = 3094; localContext._right = this.valueExpression(0); } break; @@ -14519,25 +14660,25 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 260; - this.enterRecursionRule(localContext, 260, SparkSqlParser.RULE_valueExpression, _p); + let _startState = 266; + this.enterRecursionRule(localContext, 266, SparkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3072; + this.state = 3101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 3069; + this.state = 3098; this.primaryExpression(0); } break; case 2: { - this.state = 3070; + this.state = 3099; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 35) !== 0))) { @@ -14547,15 +14688,15 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3071; + this.state = 3100; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3095; + this.state = 3124; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 424, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 428, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14563,19 +14704,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3093; + this.state = 3122; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3074; + this.state = 3103; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3075; + this.state = 3104; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 7) !== 0))) { @@ -14585,7 +14726,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3076; + this.state = 3105; localContext._right = this.valueExpression(7); } break; @@ -14594,11 +14735,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3077; + this.state = 3106; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3078; + this.state = 3107; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 259) !== 0))) { @@ -14608,7 +14749,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3079; + this.state = 3108; localContext._right = this.valueExpression(6); } break; @@ -14617,13 +14758,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3080; + this.state = 3109; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3081; + this.state = 3110; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3082; + this.state = 3111; localContext._right = this.valueExpression(5); } break; @@ -14632,13 +14773,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3083; + this.state = 3112; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3084; + this.state = 3113; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3085; + this.state = 3114; localContext._right = this.valueExpression(4); } break; @@ -14647,13 +14788,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3086; + this.state = 3115; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3087; + this.state = 3116; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3088; + this.state = 3117; localContext._right = this.valueExpression(3); } break; @@ -14662,22 +14803,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3089; + this.state = 3118; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3090; + this.state = 3119; this.comparisonOperator(); - this.state = 3091; + this.state = 3120; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3097; + this.state = 3126; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 424, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 428, this.context); } } } @@ -14697,12 +14838,12 @@ export class SparkSqlParser extends SQLParserBase { } public datetimeUnit(): DatetimeUnitContext { let localContext = new DatetimeUnitContext(this.context, this.state); - this.enterRule(localContext, 262, SparkSqlParser.RULE_datetimeUnit); + this.enterRule(localContext, 268, SparkSqlParser.RULE_datetimeUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3098; + this.state = 3127; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 85) !== 0) || _la === 231 || _la === 259 || _la === 341 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -14739,19 +14880,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 264; - this.enterRecursionRule(localContext, 264, SparkSqlParser.RULE_primaryExpression, _p); + let _startState = 270; + this.enterRecursionRule(localContext, 270, SparkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3349; + this.state = 3378; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: { - this.state = 3101; + this.state = 3130; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 268 || _la === 331)) { @@ -14765,7 +14906,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 3102; + this.state = 3131; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 75 || _la === 306)) { @@ -14775,9 +14916,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3103; + this.state = 3132; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3106; + this.state = 3135; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14792,35 +14933,35 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3104; + this.state = 3133; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3105; + this.state = 3134; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3108; + this.state = 3137; this.match(SparkSqlParser.COMMA); - this.state = 3109; + this.state = 3138; localContext._unitsAmount = this.valueExpression(0); - this.state = 3110; + this.state = 3139; this.match(SparkSqlParser.COMMA); - this.state = 3111; + this.state = 3140; localContext._timestamp = this.valueExpression(0); - this.state = 3112; + this.state = 3141; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3114; + this.state = 3143; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 76 || _la === 77 || _la === 302 || _la === 307)) { @@ -14830,9 +14971,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3115; + this.state = 3144; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3118; + this.state = 3147; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14847,105 +14988,105 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3116; + this.state = 3145; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3117; + this.state = 3146; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3120; + this.state = 3149; this.match(SparkSqlParser.COMMA); - this.state = 3121; + this.state = 3150; localContext._startTimestamp = this.valueExpression(0); - this.state = 3122; + this.state = 3151; this.match(SparkSqlParser.COMMA); - this.state = 3123; + this.state = 3152; localContext._endTimestamp = this.valueExpression(0); - this.state = 3124; + this.state = 3153; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3126; + this.state = 3155; this.match(SparkSqlParser.KW_CASE); - this.state = 3128; + this.state = 3157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3127; + this.state = 3156; this.whenClause(); } } - this.state = 3130; + this.state = 3159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3134; + this.state = 3163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3132; + this.state = 3161; this.match(SparkSqlParser.KW_ELSE); - this.state = 3133; + this.state = 3162; localContext._elseExpression = this.expression(); } } - this.state = 3136; + this.state = 3165; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3138; + this.state = 3167; this.match(SparkSqlParser.KW_CASE); - this.state = 3139; + this.state = 3168; this.expression(); - this.state = 3141; + this.state = 3170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3140; + this.state = 3169; this.whenClause(); } } - this.state = 3143; + this.state = 3172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3147; + this.state = 3176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3145; + this.state = 3174; this.match(SparkSqlParser.KW_ELSE); - this.state = 3146; + this.state = 3175; localContext._elseExpression = this.expression(); } } - this.state = 3149; + this.state = 3178; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3151; + this.state = 3180; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 318)) { @@ -14955,280 +15096,280 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3152; + this.state = 3181; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3153; + this.state = 3182; this.expression(); - this.state = 3154; + this.state = 3183; this.match(SparkSqlParser.KW_AS); - this.state = 3155; + this.state = 3184; this.dataType(); - this.state = 3156; + this.state = 3185; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3158; + this.state = 3187; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3159; + this.state = 3188; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3168; + this.state = 3197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 3160; + this.state = 3189; this.namedExpression(); - this.state = 3165; + this.state = 3194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3161; + this.state = 3190; this.match(SparkSqlParser.COMMA); - this.state = 3162; + this.state = 3191; this.namedExpression(); } } - this.state = 3167; + this.state = 3196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3170; + this.state = 3199; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3171; + this.state = 3200; this.match(SparkSqlParser.KW_FIRST); - this.state = 3172; + this.state = 3201; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3173; + this.state = 3202; this.expression(); - this.state = 3176; + this.state = 3205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3174; + this.state = 3203; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3175; + this.state = 3204; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3178; + this.state = 3207; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3180; + this.state = 3209; this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3181; + this.state = 3210; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3182; + this.state = 3211; this.expression(); - this.state = 3185; + this.state = 3214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3183; + this.state = 3212; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3184; + this.state = 3213; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3187; + this.state = 3216; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3189; + this.state = 3218; this.match(SparkSqlParser.KW_LAST); - this.state = 3190; + this.state = 3219; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3191; + this.state = 3220; this.expression(); - this.state = 3194; + this.state = 3223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3192; + this.state = 3221; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3193; + this.state = 3222; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3196; + this.state = 3225; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3198; + this.state = 3227; this.match(SparkSqlParser.KW_POSITION); - this.state = 3199; + this.state = 3228; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3200; + this.state = 3229; localContext._substr = this.valueExpression(0); - this.state = 3201; + this.state = 3230; this.match(SparkSqlParser.KW_IN); - this.state = 3202; + this.state = 3231; localContext._str = this.valueExpression(0); - this.state = 3203; + this.state = 3232; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3205; + this.state = 3234; this.constant(); } break; case 13: { - this.state = 3206; + this.state = 3235; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3207; + this.state = 3236; this.qualifiedName(); - this.state = 3208; + this.state = 3237; this.match(SparkSqlParser.DOT); - this.state = 3209; + this.state = 3238; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3211; + this.state = 3240; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3212; + this.state = 3241; this.namedExpression(); - this.state = 3215; + this.state = 3244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3213; + this.state = 3242; this.match(SparkSqlParser.COMMA); - this.state = 3214; + this.state = 3243; this.namedExpression(); } } - this.state = 3217; + this.state = 3246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3219; + this.state = 3248; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3221; + this.state = 3250; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3222; + this.state = 3251; this.query(); - this.state = 3223; + this.state = 3252; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3225; + this.state = 3254; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3226; + this.state = 3255; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3227; + this.state = 3256; this.expression(); - this.state = 3228; + this.state = 3257; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3230; + this.state = 3259; this.functionName(); - this.state = 3231; + this.state = 3260; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3243; + this.state = 3272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 3233; + this.state = 3262; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3232; + this.state = 3261; this.setQuantifier(); } break; } - this.state = 3235; + this.state = 3264; this.functionArgument(); - this.state = 3240; + this.state = 3269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3236; + this.state = 3265; this.match(SparkSqlParser.COMMA); - this.state = 3237; + this.state = 3266; this.functionArgument(); } } - this.state = 3242; + this.state = 3271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3245; + this.state = 3274; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3252; + this.state = 3281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3246; + this.state = 3275; this.match(SparkSqlParser.KW_FILTER); - this.state = 3247; + this.state = 3276; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3248; + this.state = 3277; this.match(SparkSqlParser.KW_WHERE); - this.state = 3249; + this.state = 3278; localContext._where = this.booleanExpression(0); - this.state = 3250; + this.state = 3279; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3256; + this.state = 3285; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3254; + this.state = 3283; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 138 || _la === 246)) { @@ -15238,19 +15379,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3255; + this.state = 3284; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3260; + this.state = 3289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3258; + this.state = 3287; this.match(SparkSqlParser.KW_OVER); - this.state = 3259; + this.state = 3288; this.windowSpec(); } break; @@ -15259,79 +15400,79 @@ export class SparkSqlParser extends SQLParserBase { break; case 19: { - this.state = 3262; + this.state = 3291; this.identifier(); - this.state = 3263; + this.state = 3292; this.match(SparkSqlParser.ARROW); - this.state = 3264; + this.state = 3293; this.expression(); } break; case 20: { - this.state = 3266; + this.state = 3295; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3267; + this.state = 3296; this.identifier(); - this.state = 3270; + this.state = 3299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3268; + this.state = 3297; this.match(SparkSqlParser.COMMA); - this.state = 3269; + this.state = 3298; this.identifier(); } } - this.state = 3272; + this.state = 3301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3274; + this.state = 3303; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3275; + this.state = 3304; this.match(SparkSqlParser.ARROW); - this.state = 3276; + this.state = 3305; this.expression(); } break; case 21: { - this.state = 3278; + this.state = 3307; this.columnNamePath(); } break; case 22: { - this.state = 3279; + this.state = 3308; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3280; + this.state = 3309; this.expression(); - this.state = 3281; + this.state = 3310; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3283; + this.state = 3312; this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3284; + this.state = 3313; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3285; + this.state = 3314; localContext._field = this.identifier(); - this.state = 3286; + this.state = 3315; this.match(SparkSqlParser.KW_FROM); - this.state = 3287; + this.state = 3316; localContext._source = this.valueExpression(0); - this.state = 3288; + this.state = 3317; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3290; + this.state = 3319; _la = this.tokenStream.LA(1); if(!(_la === 287 || _la === 288)) { this.errorHandler.recoverInline(this); @@ -15340,11 +15481,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3291; + this.state = 3320; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3292; + this.state = 3321; localContext._str = this.valueExpression(0); - this.state = 3293; + this.state = 3322; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -15353,14 +15494,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3294; + this.state = 3323; localContext._pos = this.valueExpression(0); - this.state = 3297; + this.state = 3326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3295; + this.state = 3324; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -15369,27 +15510,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3296; + this.state = 3325; localContext._len = this.valueExpression(0); } } - this.state = 3299; + this.state = 3328; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3301; + this.state = 3330; this.match(SparkSqlParser.KW_TRIM); - this.state = 3302; + this.state = 3331; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3304; + this.state = 3333; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3303; + this.state = 3332; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 28 || _la === 160 || _la === 311)) { @@ -15402,59 +15543,59 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 3307; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 536839207) !== 0)) { { - this.state = 3306; + this.state = 3335; localContext._trimStr = this.valueExpression(0); } } - this.state = 3309; + this.state = 3338; this.match(SparkSqlParser.KW_FROM); - this.state = 3310; + this.state = 3339; localContext._srcStr = this.valueExpression(0); - this.state = 3311; + this.state = 3340; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3313; + this.state = 3342; this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3314; + this.state = 3343; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3315; + this.state = 3344; localContext._input = this.valueExpression(0); - this.state = 3316; + this.state = 3345; this.match(SparkSqlParser.KW_PLACING); - this.state = 3317; + this.state = 3346; localContext._replace = this.valueExpression(0); - this.state = 3318; + this.state = 3347; this.match(SparkSqlParser.KW_FROM); - this.state = 3319; + this.state = 3348; localContext._position = this.valueExpression(0); - this.state = 3322; + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3320; + this.state = 3349; this.match(SparkSqlParser.KW_FOR); - this.state = 3321; + this.state = 3350; localContext._length = this.valueExpression(0); } } - this.state = 3324; + this.state = 3353; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3326; + this.state = 3355; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 220 || _la === 221)) { @@ -15464,52 +15605,52 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3327; + this.state = 3356; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3328; + this.state = 3357; localContext._percentage = this.valueExpression(0); - this.state = 3329; + this.state = 3358; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3330; + this.state = 3359; this.match(SparkSqlParser.KW_WITHIN); - this.state = 3331; + this.state = 3360; this.match(SparkSqlParser.KW_GROUP); - this.state = 3332; + this.state = 3361; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3333; + this.state = 3362; this.match(SparkSqlParser.KW_ORDER); - this.state = 3334; + this.state = 3363; this.match(SparkSqlParser.KW_BY); - this.state = 3335; + this.state = 3364; this.sortItem(); - this.state = 3336; + this.state = 3365; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3343; + this.state = 3372; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3337; + this.state = 3366; this.match(SparkSqlParser.KW_FILTER); - this.state = 3338; + this.state = 3367; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3339; + this.state = 3368; this.match(SparkSqlParser.KW_WHERE); - this.state = 3340; + this.state = 3369; localContext._where = this.booleanExpression(0); - this.state = 3341; + this.state = 3370; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3347; + this.state = 3376; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 3345; + this.state = 3374; this.match(SparkSqlParser.KW_OVER); - this.state = 3346; + this.state = 3375; this.windowSpec(); } break; @@ -15518,9 +15659,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3361; + this.state = 3390; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 452, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -15528,23 +15669,23 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3359; + this.state = 3388; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3351; + this.state = 3380; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3352; + this.state = 3381; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3353; + this.state = 3382; localContext._index = this.valueExpression(0); - this.state = 3354; + this.state = 3383; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15553,22 +15694,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3356; + this.state = 3385; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3357; + this.state = 3386; this.match(SparkSqlParser.DOT); - this.state = 3358; + this.state = 3387; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3363; + this.state = 3392; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 452, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); } } } @@ -15588,57 +15729,57 @@ export class SparkSqlParser extends SQLParserBase { } public literalType(): LiteralTypeContext { let localContext = new LiteralTypeContext(this.context, this.state); - this.enterRule(localContext, 266, SparkSqlParser.RULE_literalType); + this.enterRule(localContext, 272, SparkSqlParser.RULE_literalType); try { - this.state = 3371; + this.state = 3400; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3364; + this.state = 3393; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3365; + this.state = 3394; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3366; + this.state = 3395; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3367; + this.state = 3396; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3368; + this.state = 3397; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3369; + this.state = 3398; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3370; + this.state = 3399; localContext._unsupportedType = this.identifier(); } break; @@ -15660,69 +15801,69 @@ export class SparkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 268, SparkSqlParser.RULE_constant); + this.enterRule(localContext, 274, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3388; + this.state = 3417; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3373; + this.state = 3402; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3374; + this.state = 3403; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3375; + this.state = 3404; this.match(SparkSqlParser.COLON); - this.state = 3376; + this.state = 3405; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3377; + this.state = 3406; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3378; + this.state = 3407; this.literalType(); - this.state = 3379; + this.state = 3408; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3381; + this.state = 3410; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3382; + this.state = 3411; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3384; + this.state = 3413; this.errorHandler.sync(this); alternative = 1; do { @@ -15730,7 +15871,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3383; + this.state = 3412; this.stringLit(); } } @@ -15738,9 +15879,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3386; + this.state = 3415; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 458, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -15762,12 +15903,12 @@ export class SparkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 270, SparkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 276, SparkSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3390; + this.state = 3419; _la = this.tokenStream.LA(1); if(!(((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -15794,12 +15935,12 @@ export class SparkSqlParser extends SQLParserBase { } public arithmeticOperator(): ArithmeticOperatorContext { let localContext = new ArithmeticOperatorContext(this.context, this.state); - this.enterRule(localContext, 272, SparkSqlParser.RULE_arithmeticOperator); + this.enterRule(localContext, 278, SparkSqlParser.RULE_arithmeticOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3392; + this.state = 3421; _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -15826,12 +15967,12 @@ export class SparkSqlParser extends SQLParserBase { } public predicateOperator(): PredicateOperatorContext { let localContext = new PredicateOperatorContext(this.context, this.state); - this.enterRule(localContext, 274, SparkSqlParser.RULE_predicateOperator); + this.enterRule(localContext, 280, SparkSqlParser.RULE_predicateOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3394; + this.state = 3423; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 140 || _la === 197 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -15858,12 +15999,12 @@ export class SparkSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 276, SparkSqlParser.RULE_booleanValue); + this.enterRule(localContext, 282, SparkSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3396; + this.state = 3425; _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316)) { this.errorHandler.recoverInline(this); @@ -15890,24 +16031,24 @@ export class SparkSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 278, SparkSqlParser.RULE_interval); + this.enterRule(localContext, 284, SparkSqlParser.RULE_interval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3398; + this.state = 3427; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3401; + this.state = 3430; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3399; + this.state = 3428; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3400; + this.state = 3429; this.errorCapturingUnitToUnitInterval(); } break; @@ -15930,18 +16071,18 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 280, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 286, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3403; + this.state = 3432; localContext._body = this.multiUnitsInterval(); - this.state = 3405; + this.state = 3434; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: { - this.state = 3404; + this.state = 3433; this.unitToUnitInterval(); } break; @@ -15964,12 +16105,12 @@ export class SparkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 282, SparkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 288, SparkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3410; + this.state = 3439; this.errorHandler.sync(this); alternative = 1; do { @@ -15977,9 +16118,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3407; + this.state = 3436; this.intervalValue(); - this.state = 3408; + this.state = 3437; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -15988,9 +16129,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3412; + this.state = 3441; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 458, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 462, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -16010,24 +16151,24 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 284, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 290, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3414; + this.state = 3443; localContext._body = this.unitToUnitInterval(); - this.state = 3417; + this.state = 3446; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 3415; + this.state = 3444; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3416; + this.state = 3445; localContext._error2 = this.unitToUnitInterval(); } break; @@ -16050,17 +16191,17 @@ export class SparkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 286, SparkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 292, SparkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3419; + this.state = 3448; localContext._value = this.intervalValue(); - this.state = 3420; + this.state = 3449; this.unitInUnitToUnit(); - this.state = 3421; + this.state = 3450; this.match(SparkSqlParser.KW_TO); - this.state = 3422; + this.state = 3451; this.unitInUnitToUnit(); } } @@ -16080,17 +16221,17 @@ export class SparkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 288, SparkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 294, SparkSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3425; + this.state = 3454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361 || _la === 362) { { - this.state = 3424; + this.state = 3453; _la = this.tokenStream.LA(1); if(!(_la === 361 || _la === 362)) { this.errorHandler.recoverInline(this); @@ -16102,25 +16243,25 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 3430; + this.state = 3459; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3427; + this.state = 3456; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3428; + this.state = 3457; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3429; + this.state = 3458; this.stringLit(); } break; @@ -16145,12 +16286,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInMultiUnits(): UnitInMultiUnitsContext { let localContext = new UnitInMultiUnitsContext(this.context, this.state); - this.enterRule(localContext, 290, SparkSqlParser.RULE_unitInMultiUnits); + this.enterRule(localContext, 296, SparkSqlParser.RULE_unitInMultiUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3432; + this.state = 3461; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 12543) !== 0) || _la === 259 || _la === 260 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -16177,12 +16318,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInUnitToUnit(): UnitInUnitToUnitContext { let localContext = new UnitInUnitToUnitContext(this.context, this.state); - this.enterRule(localContext, 292, SparkSqlParser.RULE_unitInUnitToUnit); + this.enterRule(localContext, 298, SparkSqlParser.RULE_unitInUnitToUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3434; + this.state = 3463; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 186 || _la === 259 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16209,24 +16350,24 @@ export class SparkSqlParser extends SQLParserBase { } public colPosition(): ColPositionContext { let localContext = new ColPositionContext(this.context, this.state); - this.enterRule(localContext, 294, SparkSqlParser.RULE_colPosition); + this.enterRule(localContext, 300, SparkSqlParser.RULE_colPosition); try { - this.state = 3439; + this.state = 3468; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3436; + this.state = 3465; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3437; + this.state = 3466; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3438; + this.state = 3467; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -16250,218 +16391,218 @@ export class SparkSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 296, SparkSqlParser.RULE_type); + this.enterRule(localContext, 302, SparkSqlParser.RULE_type); try { - this.state = 3471; + this.state = 3500; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3441; + this.state = 3470; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3442; + this.state = 3471; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3443; + this.state = 3472; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3444; + this.state = 3473; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3445; + this.state = 3474; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3446; + this.state = 3475; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3447; + this.state = 3476; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3448; + this.state = 3477; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3449; + this.state = 3478; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3450; + this.state = 3479; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3451; + this.state = 3480; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3452; + this.state = 3481; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3453; + this.state = 3482; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3454; + this.state = 3483; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3455; + this.state = 3484; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3456; + this.state = 3485; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3457; + this.state = 3486; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3458; + this.state = 3487; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3459; + this.state = 3488; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3460; + this.state = 3489; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3461; + this.state = 3490; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3462; + this.state = 3491; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3463; + this.state = 3492; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3464; + this.state = 3493; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3465; + this.state = 3494; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3466; + this.state = 3495; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3467; + this.state = 3496; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3468; + this.state = 3497; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3469; + this.state = 3498; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3470; + this.state = 3499; localContext._unsupportedType = this.identifier(); } break; @@ -16483,87 +16624,87 @@ export class SparkSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 298, SparkSqlParser.RULE_dataType); + this.enterRule(localContext, 304, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3526; + this.state = 3555; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3473; + this.state = 3502; localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3474; + this.state = 3503; this.match(SparkSqlParser.LT); - this.state = 3475; + this.state = 3504; this.dataType(); - this.state = 3476; + this.state = 3505; this.match(SparkSqlParser.GT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3478; + this.state = 3507; localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3479; + this.state = 3508; this.match(SparkSqlParser.LT); - this.state = 3480; + this.state = 3509; this.dataType(); - this.state = 3481; + this.state = 3510; this.match(SparkSqlParser.COMMA); - this.state = 3482; + this.state = 3511; this.dataType(); - this.state = 3483; + this.state = 3512; this.match(SparkSqlParser.GT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3485; + this.state = 3514; localContext._complex = this.match(SparkSqlParser.KW_STRUCT); - this.state = 3499; + this.state = 3528; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3486; + this.state = 3515; this.match(SparkSqlParser.LT); - this.state = 3495; + this.state = 3524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 3487; + this.state = 3516; this.complexColType(); - this.state = 3492; + this.state = 3521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3488; + this.state = 3517; this.match(SparkSqlParser.COMMA); - this.state = 3489; + this.state = 3518; this.complexColType(); } } - this.state = 3494; + this.state = 3523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3497; + this.state = 3526; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3498; + this.state = 3527; this.match(SparkSqlParser.NEQ); } break; @@ -16575,9 +16716,9 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3501; + this.state = 3530; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3502; + this.state = 3531; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16586,14 +16727,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3505; + this.state = 3534; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3503; + this.state = 3532; this.match(SparkSqlParser.KW_TO); - this.state = 3504; + this.state = 3533; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16603,9 +16744,9 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3507; + this.state = 3536; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3508; + this.state = 3537; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16614,14 +16755,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3511; + this.state = 3540; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3509; + this.state = 3538; this.match(SparkSqlParser.KW_TO); - this.state = 3510; + this.state = 3539; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16638,34 +16779,34 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3513; + this.state = 3542; this.type_(); - this.state = 3524; + this.state = 3553; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { case 1: { - this.state = 3514; + this.state = 3543; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3515; + this.state = 3544; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 3520; + this.state = 3549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3516; + this.state = 3545; this.match(SparkSqlParser.COMMA); - this.state = 3517; + this.state = 3546; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3522; + this.state = 3551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3523; + this.state = 3552; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16690,26 +16831,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext { let localContext = new QualifiedColTypeWithPositionSeqForAddContext(this.context, this.state); - this.enterRule(localContext, 300, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); + this.enterRule(localContext, 306, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3528; + this.state = 3557; this.qualifiedColTypeWithPositionForAdd(); - this.state = 3533; + this.state = 3562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3529; + this.state = 3558; this.match(SparkSqlParser.COMMA); - this.state = 3530; + this.state = 3559; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3535; + this.state = 3564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16731,30 +16872,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext { let localContext = new QualifiedColTypeWithPositionForAddContext(this.context, this.state); - this.enterRule(localContext, 302, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); + this.enterRule(localContext, 308, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3536; + this.state = 3565; localContext._name = this.columnNameCreate(); - this.state = 3537; + this.state = 3566; this.dataType(); - this.state = 3541; + this.state = 3570; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3538; + this.state = 3567; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3543; + this.state = 3572; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); } } } @@ -16774,26 +16915,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext { let localContext = new QualifiedColTypeWithPositionSeqForReplaceContext(this.context, this.state); - this.enterRule(localContext, 304, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); + this.enterRule(localContext, 310, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3544; + this.state = 3573; this.qualifiedColTypeWithPositionForReplace(); - this.state = 3549; + this.state = 3578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3545; + this.state = 3574; this.match(SparkSqlParser.COMMA); - this.state = 3546; + this.state = 3575; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3551; + this.state = 3580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16815,26 +16956,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForReplace(): QualifiedColTypeWithPositionForReplaceContext { let localContext = new QualifiedColTypeWithPositionForReplaceContext(this.context, this.state); - this.enterRule(localContext, 306, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); + this.enterRule(localContext, 312, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3552; + this.state = 3581; localContext._name = this.columnName(); - this.state = 3553; + this.state = 3582; this.dataType(); - this.state = 3557; + this.state = 3586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 197) { { { - this.state = 3554; + this.state = 3583; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3559; + this.state = 3588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16856,35 +16997,35 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionDescriptorWithPosition(): ColDefinitionDescriptorWithPositionContext { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); - this.enterRule(localContext, 308, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); + this.enterRule(localContext, 314, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3567; + this.state = 3596; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3560; + this.state = 3589; this.match(SparkSqlParser.KW_NOT); - this.state = 3561; + this.state = 3590; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3562; + this.state = 3591; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3563; + this.state = 3592; this.expression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3564; + this.state = 3593; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3565; + this.state = 3594; localContext._comment = this.stringLit(); } break; @@ -16892,7 +17033,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3566; + this.state = 3595; this.colPosition(); } break; @@ -16916,12 +17057,12 @@ export class SparkSqlParser extends SQLParserBase { } public variableDefaultExpression(): VariableDefaultExpressionContext { let localContext = new VariableDefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 310, SparkSqlParser.RULE_variableDefaultExpression); + this.enterRule(localContext, 316, SparkSqlParser.RULE_variableDefaultExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3569; + this.state = 3598; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 352)) { this.errorHandler.recoverInline(this); @@ -16930,7 +17071,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3570; + this.state = 3599; this.expression(); } } @@ -16950,30 +17091,30 @@ export class SparkSqlParser extends SQLParserBase { } public colTypeList(): ColTypeListContext { let localContext = new ColTypeListContext(this.context, this.state); - this.enterRule(localContext, 312, SparkSqlParser.RULE_colTypeList); + this.enterRule(localContext, 318, SparkSqlParser.RULE_colTypeList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3572; + this.state = 3601; this.columnType(); - this.state = 3577; + this.state = 3606; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 481, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3573; + this.state = 3602; this.match(SparkSqlParser.COMMA); - this.state = 3574; + this.state = 3603; this.columnType(); } } } - this.state = 3579; + this.state = 3608; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 481, this.context); } } } @@ -16993,34 +17134,34 @@ export class SparkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 314, SparkSqlParser.RULE_columnType); + this.enterRule(localContext, 320, SparkSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3580; + this.state = 3609; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3581; + this.state = 3610; this.dataType(); - this.state = 3584; + this.state = 3613; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 482, this.context) ) { case 1: { - this.state = 3582; + this.state = 3611; this.match(SparkSqlParser.KW_NOT); - this.state = 3583; + this.state = 3612; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3588; + this.state = 3617; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 483, this.context) ) { case 1: { - this.state = 3586; + this.state = 3615; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3587; + this.state = 3616; localContext._comment = this.stringLit(); } break; @@ -17043,26 +17184,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext { let localContext = new CreateOrReplaceTableColTypeListContext(this.context, this.state); - this.enterRule(localContext, 316, SparkSqlParser.RULE_createOrReplaceTableColTypeList); + this.enterRule(localContext, 322, SparkSqlParser.RULE_createOrReplaceTableColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3590; + this.state = 3619; this.createOrReplaceTableColType(); - this.state = 3595; + this.state = 3624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3591; + this.state = 3620; this.match(SparkSqlParser.COMMA); - this.state = 3592; + this.state = 3621; this.createOrReplaceTableColType(); } } - this.state = 3597; + this.state = 3626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17084,26 +17225,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColType(): CreateOrReplaceTableColTypeContext { let localContext = new CreateOrReplaceTableColTypeContext(this.context, this.state); - this.enterRule(localContext, 318, SparkSqlParser.RULE_createOrReplaceTableColType); + this.enterRule(localContext, 324, SparkSqlParser.RULE_createOrReplaceTableColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3598; + this.state = 3627; localContext._colName = this.columnNameCreate(); - this.state = 3599; + this.state = 3628; localContext._colType = this.dataType(); - this.state = 3603; + this.state = 3632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 82 || _la === 127 || _la === 197) { { { - this.state = 3600; + this.state = 3629; this.colDefinitionOption(); } } - this.state = 3605; + this.state = 3634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17125,52 +17266,52 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionOption(): ColDefinitionOptionContext { let localContext = new ColDefinitionOptionContext(this.context, this.state); - this.enterRule(localContext, 320, SparkSqlParser.RULE_colDefinitionOption); + this.enterRule(localContext, 326, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3619; + this.state = 3648; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3606; + this.state = 3635; this.match(SparkSqlParser.KW_NOT); - this.state = 3607; + this.state = 3636; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3608; + this.state = 3637; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3609; + this.state = 3638; this.expression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3610; + this.state = 3639; this.match(SparkSqlParser.KW_GENERATED); - this.state = 3611; + this.state = 3640; this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3612; + this.state = 3641; this.match(SparkSqlParser.KW_AS); - this.state = 3613; + this.state = 3642; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3614; + this.state = 3643; this.expression(); - this.state = 3615; + this.state = 3644; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3617; + this.state = 3646; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3618; + this.state = 3647; localContext._comment = this.stringLit(); } break; @@ -17194,45 +17335,45 @@ export class SparkSqlParser extends SQLParserBase { } public complexColType(): ComplexColTypeContext { let localContext = new ComplexColTypeContext(this.context, this.state); - this.enterRule(localContext, 322, SparkSqlParser.RULE_complexColType); + this.enterRule(localContext, 328, SparkSqlParser.RULE_complexColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3621; + this.state = 3650; this.identifier(); - this.state = 3623; + this.state = 3652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 371) { { - this.state = 3622; + this.state = 3651; this.match(SparkSqlParser.COLON); } } - this.state = 3625; + this.state = 3654; this.dataType(); - this.state = 3628; + this.state = 3657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3626; + this.state = 3655; this.match(SparkSqlParser.KW_NOT); - this.state = 3627; + this.state = 3656; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3632; + this.state = 3661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3630; + this.state = 3659; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3631; + this.state = 3660; localContext._comment = this.stringLit(); } } @@ -17255,17 +17396,17 @@ export class SparkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 324, SparkSqlParser.RULE_whenClause); + this.enterRule(localContext, 330, SparkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3634; + this.state = 3663; this.match(SparkSqlParser.KW_WHEN); - this.state = 3635; + this.state = 3664; localContext._condition = this.expression(); - this.state = 3636; + this.state = 3665; this.match(SparkSqlParser.KW_THEN); - this.state = 3637; + this.state = 3666; localContext._result = this.expression(); } } @@ -17285,40 +17426,40 @@ export class SparkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 326, SparkSqlParser.RULE_windowClause); + this.enterRule(localContext, 332, SparkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3639; + this.state = 3668; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3640; + this.state = 3669; localContext._name = this.errorCapturingIdentifier(); - this.state = 3641; + this.state = 3670; this.match(SparkSqlParser.KW_AS); - this.state = 3642; + this.state = 3671; this.windowSpec(); - this.state = 3650; + this.state = 3679; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 486, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 490, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3643; + this.state = 3672; this.match(SparkSqlParser.COMMA); - this.state = 3644; + this.state = 3673; localContext._name = this.errorCapturingIdentifier(); - this.state = 3645; + this.state = 3674; this.match(SparkSqlParser.KW_AS); - this.state = 3646; + this.state = 3675; this.windowSpec(); } } } - this.state = 3652; + this.state = 3681; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 486, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 490, this.context); } } } @@ -17338,15 +17479,15 @@ export class SparkSqlParser extends SQLParserBase { } public zOrderClause(): ZOrderClauseContext { let localContext = new ZOrderClauseContext(this.context, this.state); - this.enterRule(localContext, 328, SparkSqlParser.RULE_zOrderClause); + this.enterRule(localContext, 334, SparkSqlParser.RULE_zOrderClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3653; + this.state = 3682; this.match(SparkSqlParser.KW_ZORDER); - this.state = 3654; + this.state = 3683; this.match(SparkSqlParser.KW_BY); - this.state = 3655; + this.state = 3684; this.columnNameSeq(); } } @@ -17366,61 +17507,61 @@ export class SparkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 330, SparkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 336, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3696; + this.state = 3725; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3657; + this.state = 3686; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3658; + this.state = 3687; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3659; + this.state = 3688; localContext._name = this.errorCapturingIdentifier(); - this.state = 3660; + this.state = 3689; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3662; + this.state = 3691; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3690; + this.state = 3719; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3663; + this.state = 3692; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3664; + this.state = 3693; this.match(SparkSqlParser.KW_BY); - this.state = 3665; + this.state = 3694; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3670; + this.state = 3699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3666; + this.state = 3695; this.match(SparkSqlParser.COMMA); - this.state = 3667; + this.state = 3696; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3672; + this.state = 3701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17434,12 +17575,12 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3683; + this.state = 3712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217) { { - this.state = 3673; + this.state = 3702; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -17448,37 +17589,37 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3674; + this.state = 3703; this.match(SparkSqlParser.KW_BY); - this.state = 3675; + this.state = 3704; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3680; + this.state = 3709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3676; + this.state = 3705; this.match(SparkSqlParser.COMMA); - this.state = 3677; + this.state = 3706; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3682; + this.state = 3711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3688; + this.state = 3717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 3685; + this.state = 3714; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -17487,9 +17628,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3686; + this.state = 3715; this.match(SparkSqlParser.KW_BY); - this.state = 3687; + this.state = 3716; this.orderOrSortByClause(); } } @@ -17499,17 +17640,17 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3693; + this.state = 3722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233 || _la === 258) { { - this.state = 3692; + this.state = 3721; this.windowFrame(); } } - this.state = 3695; + this.state = 3724; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17531,16 +17672,16 @@ export class SparkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 332, SparkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 338, SparkSqlParser.RULE_windowFrame); let _la: number; try { - this.state = 3706; + this.state = 3735; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3698; + this.state = 3727; localContext._frameType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 233 || _la === 258)) { @@ -17550,14 +17691,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3699; + this.state = 3728; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3700; + this.state = 3729; localContext._frameType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 233 || _la === 258)) { @@ -17567,13 +17708,13 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3701; + this.state = 3730; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3702; + this.state = 3731; localContext._start_ = this.frameBound(); - this.state = 3703; + this.state = 3732; this.match(SparkSqlParser.KW_AND); - this.state = 3704; + this.state = 3733; localContext._end = this.frameBound(); } break; @@ -17595,18 +17736,18 @@ export class SparkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 334, SparkSqlParser.RULE_frameBound); + this.enterRule(localContext, 340, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3715; + this.state = 3744; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3708; + this.state = 3737; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3709; + this.state = 3738; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17621,18 +17762,18 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3710; + this.state = 3739; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3711; + this.state = 3740; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3712; + this.state = 3741; this.expression(); - this.state = 3713; + this.state = 3742; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17662,26 +17803,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 336, SparkSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 342, SparkSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3717; + this.state = 3746; this.qualifiedName(); - this.state = 3722; + this.state = 3751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3718; + this.state = 3747; this.match(SparkSqlParser.COMMA); - this.state = 3719; + this.state = 3748; this.qualifiedName(); } } - this.state = 3724; + this.state = 3753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17703,49 +17844,49 @@ export class SparkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 338, SparkSqlParser.RULE_functionName); + this.enterRule(localContext, 344, SparkSqlParser.RULE_functionName); try { - this.state = 3734; + this.state = 3763; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3725; + this.state = 3754; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3726; + this.state = 3755; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3727; + this.state = 3756; this.expression(); - this.state = 3728; + this.state = 3757; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3730; + this.state = 3759; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3731; + this.state = 3760; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3732; + this.state = 3761; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3733; + this.state = 3762; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17767,11 +17908,11 @@ export class SparkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 340, SparkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 346, SparkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3736; + this.state = 3765; this.qualifiedName(); } } @@ -17791,30 +17932,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 342, SparkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 348, SparkSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3738; + this.state = 3767; this.identifier(); - this.state = 3743; + this.state = 3772; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 502, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3739; + this.state = 3768; this.match(SparkSqlParser.DOT); - this.state = 3740; + this.state = 3769; this.identifier(); } } } - this.state = 3745; + this.state = 3774; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 502, this.context); } } } @@ -17834,13 +17975,13 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 344, SparkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 350, SparkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3746; + this.state = 3775; this.identifier(); - this.state = 3747; + this.state = 3776; this.errorCapturingIdentifierExtra(); } } @@ -17860,16 +18001,16 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 346, SparkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 352, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3756; + this.state = 3785; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3751; + this.state = 3780; this.errorHandler.sync(this); alternative = 1; do { @@ -17877,9 +18018,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3749; + this.state = 3778; this.match(SparkSqlParser.MINUS); - this.state = 3750; + this.state = 3779; this.identifier(); } } @@ -17887,9 +18028,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3753; + this.state = 3782; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 503, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -17917,22 +18058,22 @@ export class SparkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 348, SparkSqlParser.RULE_identifier); + this.enterRule(localContext, 354, SparkSqlParser.RULE_identifier); try { - this.state = 3760; + this.state = 3789; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3758; + this.state = 3787; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3759; + this.state = 3788; this.strictNonReserved(); } break; @@ -17954,36 +18095,36 @@ export class SparkSqlParser extends SQLParserBase { } public strictIdentifier(): StrictIdentifierContext { let localContext = new StrictIdentifierContext(this.context, this.state); - this.enterRule(localContext, 350, SparkSqlParser.RULE_strictIdentifier); + this.enterRule(localContext, 356, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3766; + this.state = 3795; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3762; + this.state = 3791; this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3763; + this.state = 3792; this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3764; + this.state = 3793; this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3765; + this.state = 3794; this.nonReserved(); } break; @@ -18005,12 +18146,12 @@ export class SparkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 352, SparkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 358, SparkSqlParser.RULE_quotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3768; + this.state = 3797; _la = this.tokenStream.LA(1); if(!(_la === 378 || _la === 389)) { this.errorHandler.recoverInline(this); @@ -18037,22 +18178,22 @@ export class SparkSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 354, SparkSqlParser.RULE_number); + this.enterRule(localContext, 360, SparkSqlParser.RULE_number); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3771; + this.state = 3800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3770; + this.state = 3799; this.match(SparkSqlParser.MINUS); } } - this.state = 3773; + this.state = 3802; _la = this.tokenStream.LA(1); if(!(((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -18079,41 +18220,41 @@ export class SparkSqlParser extends SQLParserBase { } public alterColumnAction(): AlterColumnActionContext { let localContext = new AlterColumnActionContext(this.context, this.state); - this.enterRule(localContext, 356, SparkSqlParser.RULE_alterColumnAction); + this.enterRule(localContext, 362, SparkSqlParser.RULE_alterColumnAction); let _la: number; try { - this.state = 3788; + this.state = 3817; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3775; + this.state = 3804; this.match(SparkSqlParser.KW_TYPE); - this.state = 3776; + this.state = 3805; this.dataType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3777; + this.state = 3806; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3778; + this.state = 3807; localContext._comment = this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3779; + this.state = 3808; this.colPosition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3780; + this.state = 3809; localContext._setOrDrop = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 96 || _la === 269)) { @@ -18123,29 +18264,29 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3781; + this.state = 3810; this.match(SparkSqlParser.KW_NOT); - this.state = 3782; + this.state = 3811; this.match(SparkSqlParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3783; + this.state = 3812; this.match(SparkSqlParser.KW_SET); - this.state = 3784; + this.state = 3813; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3785; + this.state = 3814; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3786; + this.state = 3815; localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3787; + this.state = 3816; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -18167,12 +18308,12 @@ export class SparkSqlParser extends SQLParserBase { } public stringLit(): StringLitContext { let localContext = new StringLitContext(this.context, this.state); - this.enterRule(localContext, 358, SparkSqlParser.RULE_stringLit); + this.enterRule(localContext, 364, SparkSqlParser.RULE_stringLit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3790; + this.state = 3819; _la = this.tokenStream.LA(1); if(!(_la === 377 || _la === 378)) { this.errorHandler.recoverInline(this); @@ -18199,12 +18340,12 @@ export class SparkSqlParser extends SQLParserBase { } public ansiNonReserved(): AnsiNonReservedContext { let localContext = new AnsiNonReservedContext(this.context, this.state); - this.enterRule(localContext, 360, SparkSqlParser.RULE_ansiNonReserved); + this.enterRule(localContext, 366, SparkSqlParser.RULE_ansiNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3792; + this.state = 3821; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3316086655) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 1610612735) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 4020201927) !== 0) || ((((_la - 231)) & ~0x1F) === 0 && ((1 << (_la - 231)) & 4294442751) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 3758088175) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3355402191) !== 0) || ((((_la - 328)) & ~0x1F) === 0 && ((1 << (_la - 328)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); @@ -18231,12 +18372,12 @@ export class SparkSqlParser extends SQLParserBase { } public strictNonReserved(): StrictNonReservedContext { let localContext = new StrictNonReservedContext(this.context, this.state); - this.enterRule(localContext, 362, SparkSqlParser.RULE_strictNonReserved); + this.enterRule(localContext, 368, SparkSqlParser.RULE_strictNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3794; + this.state = 3823; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 194 || _la === 203 || ((((_la - 250)) & ~0x1F) === 0 && ((1 << (_la - 250)) & 1064961) !== 0) || _la === 323 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -18263,12 +18404,12 @@ export class SparkSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 364, SparkSqlParser.RULE_nonReserved); + this.enterRule(localContext, 370, SparkSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3796; + this.state = 3825; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294965227) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4227858431) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294950527) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294963191) !== 0))) { this.errorHandler.recoverInline(this); @@ -18296,15 +18437,19 @@ export class SparkSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 39: + case 40: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 48: + case 42: + return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); + case 50: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 128: + case 112: + return this.multipartIdentifierAllowEmpty_sempred(localContext as MultipartIdentifierAllowEmptyContext, predIndex); + case 131: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 130: + case 133: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 132: + case 135: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -18316,55 +18461,69 @@ export class SparkSqlParser extends SQLParserBase { } return true; } - private queryTerm_sempred(localContext: QueryTermContext | null, predIndex: number): boolean { + private columnNamePathAllowEmpty_sempred(localContext: ColumnNamePathAllowEmptyContext | null, predIndex: number): boolean { switch (predIndex) { case 1: - return this.precpred(this.context, 3); + return this.shouldMatchEmpty(); + } + return true; + } + private queryTerm_sempred(localContext: QueryTermContext | null, predIndex: number): boolean { + switch (predIndex) { case 2: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 3: + return this.precpred(this.context, 2); + case 4: return this.precpred(this.context, 1); } return true; } + private multipartIdentifierAllowEmpty_sempred(localContext: MultipartIdentifierAllowEmptyContext | null, predIndex: number): boolean { + switch (predIndex) { + case 5: + return this.shouldMatchEmpty(); + } + return true; + } private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 4: + case 6: return this.precpred(this.context, 2); - case 5: + case 7: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 6: + case 8: return this.precpred(this.context, 6); - case 7: + case 9: return this.precpred(this.context, 5); - case 8: + case 10: return this.precpred(this.context, 4); - case 9: + case 11: return this.precpred(this.context, 3); - case 10: + case 12: return this.precpred(this.context, 2); - case 11: + case 13: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 12: + case 14: return this.precpred(this.context, 9); - case 13: + case 15: return this.precpred(this.context, 7); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,393,3799,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,393,3828,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, @@ -18394,1641 +18553,1654 @@ export class SparkSqlParser extends SQLParserBase { 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,1,0,5,0,368,8,0,10,0,12,0,371,9,0,1,0,1, - 0,1,1,1,1,3,1,377,8,1,1,2,1,2,3,2,381,8,2,1,2,1,2,1,2,3,2,386,8, - 2,1,2,1,2,1,2,1,2,1,2,3,2,393,8,2,1,2,1,2,1,2,3,2,398,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,408,8,2,10,2,12,2,411,9,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 430,8,2,1,2,1,2,3,2,434,8,2,1,2,1,2,1,2,1,2,3,2,440,8,2,1,2,3,2, - 443,8,2,1,2,3,2,446,8,2,1,2,1,2,3,2,450,8,2,1,2,3,2,453,8,2,1,2, - 1,2,3,2,457,8,2,1,2,1,2,1,2,1,2,1,2,3,2,464,8,2,1,2,3,2,467,8,2, - 1,2,1,2,3,2,471,8,2,1,2,3,2,474,8,2,1,2,1,2,1,2,3,2,479,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,492,8,2,10,2,12,2,495, - 9,2,1,2,1,2,3,2,499,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,508,8,2, - 1,2,3,2,511,8,2,1,2,1,2,3,2,515,8,2,1,2,3,2,518,8,2,1,2,1,2,1,2, - 1,2,3,2,524,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,535,8,2, - 1,2,1,2,1,2,1,2,3,2,541,8,2,1,2,1,2,1,2,3,2,546,8,2,1,2,1,2,1,2, + 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,1,0, + 5,0,374,8,0,10,0,12,0,377,9,0,1,0,1,0,1,1,1,1,3,1,383,8,1,1,2,1, + 2,3,2,387,8,2,1,2,1,2,1,2,3,2,392,8,2,1,2,1,2,1,2,1,2,1,2,3,2,399, + 8,2,1,2,1,2,1,2,3,2,404,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2, + 414,8,2,10,2,12,2,417,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,436,8,2,1,2,1,2,3,2,440,8,2,1, + 2,1,2,1,2,1,2,3,2,446,8,2,1,2,3,2,449,8,2,1,2,3,2,452,8,2,1,2,1, + 2,3,2,456,8,2,1,2,3,2,459,8,2,1,2,1,2,3,2,463,8,2,1,2,1,2,1,2,1, + 2,1,2,3,2,470,8,2,1,2,3,2,473,8,2,1,2,1,2,3,2,477,8,2,1,2,3,2,480, + 8,2,1,2,1,2,1,2,3,2,485,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,5,2,498,8,2,10,2,12,2,501,9,2,1,2,1,2,3,2,505,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,3,2,514,8,2,1,2,3,2,517,8,2,1,2,1,2,3,2,521, + 8,2,1,2,3,2,524,8,2,1,2,1,2,1,2,1,2,3,2,530,8,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,3,2,541,8,2,1,2,1,2,1,2,1,2,3,2,547,8,2,1,2, + 1,2,1,2,3,2,552,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,3,2,585,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 595,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,606,8,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,617,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,628,8,2,1,2,1,2,1,2,3,2,633,8,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,642,8,2,1,2,1,2,3,2,646,8,2,1,2,1,2,1,2,1,2,3,2, + 652,8,2,1,2,1,2,3,2,656,8,2,1,2,1,2,1,2,3,2,661,8,2,1,2,1,2,1,2, + 1,2,3,2,667,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,679, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,687,8,2,1,2,1,2,1,2,1,2,3,2,693, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,704,8,2,1,2,1,2,3,2, + 708,8,2,1,2,4,2,711,8,2,11,2,12,2,712,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,728,8,2,1,2,1,2,3,2,732,8,2,1,2,1, + 2,1,2,5,2,737,8,2,10,2,12,2,740,9,2,1,2,3,2,743,8,2,1,2,1,2,1,2, + 1,2,3,2,749,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 3,2,779,8,2,1,2,1,2,3,2,783,8,2,1,2,1,2,1,2,3,2,788,8,2,1,2,1,2, + 1,2,1,2,1,2,3,2,795,8,2,1,2,1,2,1,2,1,2,3,2,801,8,2,1,2,3,2,804, + 8,2,1,2,3,2,807,8,2,1,2,1,2,3,2,811,8,2,1,2,1,2,3,2,815,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,5,2,824,8,2,10,2,12,2,827,9,2,1,2,1,2,1, + 2,1,2,1,2,1,2,3,2,835,8,2,1,2,3,2,838,8,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,3,2,847,8,2,1,2,1,2,1,2,3,2,852,8,2,1,2,1,2,1,2,1,2,3,2,858, + 8,2,1,2,1,2,1,2,1,2,1,2,3,2,865,8,2,1,2,3,2,868,8,2,1,2,1,2,3,2, + 872,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,885,8,2, + 10,2,12,2,888,9,2,3,2,890,8,2,1,2,1,2,1,2,1,2,3,2,896,8,2,1,2,1, + 2,3,2,900,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,5,2,917,8,2,10,2,12,2,920,9,2,1,2,1,2,1,2,1,2,1,2,3,2, + 927,8,2,1,2,1,2,3,2,931,8,2,1,2,1,2,1,2,1,2,3,2,937,8,2,1,2,3,2, + 940,8,2,1,2,1,2,3,2,944,8,2,1,2,3,2,947,8,2,1,2,1,2,1,2,1,2,3,2, + 953,8,2,1,2,1,2,1,2,3,2,958,8,2,1,2,1,2,3,2,962,8,2,1,2,1,2,1,2, + 1,2,1,2,3,2,969,8,2,1,2,3,2,972,8,2,1,2,3,2,975,8,2,1,2,1,2,1,2, + 1,2,1,2,3,2,982,8,2,1,2,1,2,1,2,3,2,987,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,3,2,996,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1004,8,2,1,2,1,2, + 1,2,1,2,3,2,1010,8,2,1,2,3,2,1013,8,2,1,2,3,2,1016,8,2,1,2,1,2,1, + 2,1,2,3,2,1022,8,2,1,2,1,2,3,2,1026,8,2,1,2,1,2,1,2,3,2,1031,8,2, + 1,2,3,2,1034,8,2,1,2,1,2,3,2,1038,8,2,3,2,1040,8,2,1,2,1,2,1,2,1, + 2,1,2,1,2,3,2,1048,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1056,8,2,1,2, + 3,2,1059,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1066,8,2,1,2,3,2,1069,8,2,1, + 2,3,2,1072,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1081,8,2,1,2,1,2, + 1,2,3,2,1086,8,2,1,2,1,2,1,2,1,2,3,2,1092,8,2,1,2,1,2,1,2,3,2,1097, + 8,2,1,2,3,2,1100,8,2,1,2,1,2,3,2,1104,8,2,1,2,3,2,1107,8,2,1,2,1, + 2,3,2,1111,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1121,8,2,1,2, + 1,2,1,2,3,2,1126,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1137, + 8,2,10,2,12,2,1140,9,2,3,2,1142,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 1150,8,2,1,2,1,2,1,2,1,2,3,2,1156,8,2,1,2,3,2,1159,8,2,1,2,3,2,1162, + 8,2,1,2,1,2,1,2,3,2,1167,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1175,8, + 2,1,2,1,2,1,2,3,2,1180,8,2,1,2,1,2,1,2,1,2,3,2,1186,8,2,1,2,1,2, + 1,2,1,2,3,2,1192,8,2,1,2,3,2,1195,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1202, + 8,2,1,2,1,2,1,2,5,2,1207,8,2,10,2,12,2,1210,9,2,1,2,1,2,1,2,5,2, + 1215,8,2,10,2,12,2,1218,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 3,2,1229,8,2,1,2,1,2,1,2,1,2,5,2,1235,8,2,10,2,12,2,1238,9,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,579,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,589,8,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,600,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 611,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,622,8,2,1,2,1,2, - 1,2,3,2,627,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,636,8,2,1,2,1,2, - 3,2,640,8,2,1,2,1,2,1,2,1,2,3,2,646,8,2,1,2,1,2,3,2,650,8,2,1,2, - 1,2,1,2,3,2,655,8,2,1,2,1,2,1,2,1,2,3,2,661,8,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,673,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 681,8,2,1,2,1,2,1,2,1,2,3,2,687,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,698,8,2,1,2,1,2,3,2,702,8,2,1,2,4,2,705,8,2,11,2,12, - 2,706,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,722, - 8,2,1,2,1,2,3,2,726,8,2,1,2,1,2,1,2,5,2,731,8,2,10,2,12,2,734,9, - 2,1,2,3,2,737,8,2,1,2,1,2,1,2,1,2,3,2,743,8,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,773,8,2,1,2,1,2,3,2,777,8,2,1, - 2,1,2,1,2,3,2,782,8,2,1,2,1,2,1,2,1,2,1,2,3,2,789,8,2,1,2,1,2,1, - 2,1,2,3,2,795,8,2,1,2,3,2,798,8,2,1,2,3,2,801,8,2,1,2,1,2,3,2,805, - 8,2,1,2,1,2,3,2,809,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,818,8,2, - 10,2,12,2,821,9,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,829,8,2,1,2,3,2,832, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,841,8,2,1,2,1,2,1,2,3,2,846, - 8,2,1,2,1,2,1,2,1,2,3,2,852,8,2,1,2,1,2,1,2,1,2,1,2,3,2,859,8,2, - 1,2,3,2,862,8,2,1,2,1,2,3,2,866,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,5,2,879,8,2,10,2,12,2,882,9,2,3,2,884,8,2,1,2,1, - 2,1,2,1,2,3,2,890,8,2,1,2,1,2,3,2,894,8,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,911,8,2,10,2,12,2,914, - 9,2,1,2,1,2,1,2,1,2,1,2,3,2,921,8,2,1,2,1,2,3,2,925,8,2,1,2,1,2, - 1,2,1,2,3,2,931,8,2,1,2,3,2,934,8,2,1,2,1,2,3,2,938,8,2,1,2,3,2, - 941,8,2,1,2,1,2,1,2,1,2,3,2,947,8,2,1,2,1,2,1,2,3,2,952,8,2,1,2, - 1,2,3,2,956,8,2,1,2,1,2,1,2,1,2,1,2,3,2,963,8,2,1,2,3,2,966,8,2, - 1,2,3,2,969,8,2,1,2,1,2,1,2,1,2,1,2,3,2,976,8,2,1,2,1,2,1,2,3,2, - 981,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,990,8,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,998,8,2,1,2,1,2,1,2,1,2,3,2,1004,8,2,1,2,3,2,1007,8, - 2,1,2,3,2,1010,8,2,1,2,1,2,1,2,1,2,3,2,1016,8,2,1,2,1,2,3,2,1020, - 8,2,1,2,1,2,1,2,3,2,1025,8,2,1,2,3,2,1028,8,2,1,2,1,2,3,2,1032,8, - 2,3,2,1034,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1042,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1050,8,2,1,2,3,2,1053,8,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1060,8,2,1,2,3,2,1063,8,2,1,2,3,2,1066,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,1075,8,2,1,2,1,2,1,2,3,2,1080,8,2,1,2,1,2,1,2,1,2,3, - 2,1086,8,2,1,2,1,2,1,2,3,2,1091,8,2,1,2,3,2,1094,8,2,1,2,1,2,3,2, - 1098,8,2,1,2,3,2,1101,8,2,1,2,1,2,3,2,1105,8,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,3,2,1115,8,2,1,2,1,2,1,2,3,2,1120,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,5,2,1131,8,2,10,2,12,2,1134,9,2,3,2,1136, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1144,8,2,1,2,1,2,1,2,1,2,3,2,1150, - 8,2,1,2,3,2,1153,8,2,1,2,3,2,1156,8,2,1,2,1,2,1,2,3,2,1161,8,2,1, - 2,1,2,1,2,1,2,1,2,1,2,3,2,1169,8,2,1,2,1,2,1,2,3,2,1174,8,2,1,2, - 1,2,1,2,1,2,3,2,1180,8,2,1,2,1,2,1,2,1,2,3,2,1186,8,2,1,2,3,2,1189, - 8,2,1,2,1,2,1,2,1,2,1,2,3,2,1196,8,2,1,2,1,2,1,2,5,2,1201,8,2,10, - 2,12,2,1204,9,2,1,2,1,2,1,2,5,2,1209,8,2,10,2,12,2,1212,9,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1223,8,2,1,2,1,2,1,2,1,2,5,2, - 1229,8,2,10,2,12,2,1232,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1256,8,2, - 10,2,12,2,1259,9,2,3,2,1261,8,2,1,2,1,2,5,2,1265,8,2,10,2,12,2,1268, - 9,2,1,2,1,2,1,2,1,2,5,2,1274,8,2,10,2,12,2,1277,9,2,1,2,1,2,1,2, - 1,2,5,2,1283,8,2,10,2,12,2,1286,9,2,1,2,1,2,1,2,3,2,1291,8,2,1,2, - 1,2,1,2,3,2,1296,8,2,1,2,1,2,1,2,3,2,1301,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1308,8,2,1,2,1,2,1,2,3,2,1313,8,2,1,2,1,2,1,2,3,2,1318,8,2, - 1,2,1,2,1,2,1,2,1,2,3,2,1325,8,2,1,2,1,2,1,2,1,2,5,2,1331,8,2,10, - 2,12,2,1334,9,2,3,2,1336,8,2,1,3,1,3,1,3,1,3,3,3,1342,8,3,1,3,1, - 3,1,3,1,3,1,3,3,3,1349,8,3,1,3,1,3,3,3,1353,8,3,1,3,1,3,1,3,1,3, + 1,2,1,2,1,2,1,2,1,2,5,2,1262,8,2,10,2,12,2,1265,9,2,3,2,1267,8,2, + 1,2,1,2,5,2,1271,8,2,10,2,12,2,1274,9,2,1,2,1,2,1,2,1,2,5,2,1280, + 8,2,10,2,12,2,1283,9,2,1,2,1,2,1,2,1,2,5,2,1289,8,2,10,2,12,2,1292, + 9,2,1,2,1,2,1,2,3,2,1297,8,2,1,2,1,2,1,2,3,2,1302,8,2,1,2,1,2,1, + 2,3,2,1307,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1314,8,2,1,2,1,2,1,2,3,2, + 1319,8,2,1,2,1,2,1,2,3,2,1324,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1331,8, + 2,1,2,1,2,1,2,1,2,5,2,1337,8,2,10,2,12,2,1340,9,2,3,2,1342,8,2,1, + 3,1,3,1,3,1,3,3,3,1348,8,3,1,3,1,3,1,3,1,3,1,3,3,3,1355,8,3,1,3, + 1,3,3,3,1359,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, - 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1416,8,3,1,3,1,3,1,3,1,3, - 1,3,1,3,3,3,1424,8,3,1,3,1,3,1,3,1,3,1,3,3,3,1431,8,3,1,4,1,4,1, - 4,1,4,1,4,1,4,3,4,1439,8,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1, - 5,3,5,1451,8,5,1,5,1,5,1,5,3,5,1456,8,5,1,6,1,6,1,6,1,7,1,7,1,7, - 1,8,3,8,1465,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,1473,8,9,1,9,1,9,1, - 9,3,9,1478,8,9,3,9,1480,8,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1488,8,9, - 1,9,1,9,1,9,3,9,1493,8,9,1,9,1,9,3,9,1497,8,9,1,9,3,9,1500,8,9,1, - 9,1,9,1,9,1,9,1,9,1,9,3,9,1508,8,9,1,9,1,9,1,9,3,9,1513,8,9,1,9, - 1,9,1,9,1,9,1,9,1,9,1,9,3,9,1522,8,9,1,9,1,9,1,9,3,9,1527,8,9,1, - 9,3,9,1530,8,9,1,9,1,9,1,9,3,9,1535,8,9,1,9,1,9,3,9,1539,8,9,1,9, - 1,9,1,9,3,9,1544,8,9,3,9,1546,8,9,1,10,1,10,1,10,3,10,1551,8,10, - 1,11,1,11,1,11,1,11,1,11,5,11,1558,8,11,10,11,12,11,1561,9,11,1, - 11,1,11,1,12,1,12,1,12,3,12,1568,8,12,1,12,1,12,1,12,1,12,3,12,1574, - 8,12,1,13,1,13,1,14,1,14,1,14,1,14,1,14,3,14,1583,8,14,1,15,1,15, - 1,15,5,15,1588,8,15,10,15,12,15,1591,9,15,1,16,1,16,1,16,1,16,5, - 16,1597,8,16,10,16,12,16,1600,9,16,1,17,1,17,3,17,1604,8,17,1,17, - 3,17,1607,8,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,19,1,19,1,19, - 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19, - 5,19,1632,8,19,10,19,12,19,1635,9,19,1,20,1,20,1,20,1,21,1,21,1, - 21,1,21,5,21,1644,8,21,10,21,12,21,1647,9,21,1,21,1,21,1,22,1,22, - 3,22,1653,8,22,1,22,3,22,1656,8,22,1,23,1,23,1,23,5,23,1661,8,23, - 10,23,12,23,1664,9,23,1,23,3,23,1667,8,23,1,24,1,24,1,24,1,24,3, - 24,1673,8,24,1,25,1,25,1,25,1,25,5,25,1679,8,25,10,25,12,25,1682, - 9,25,1,25,1,25,1,26,1,26,3,26,1688,8,26,1,26,3,26,1691,8,26,1,27, - 1,27,1,27,1,27,5,27,1697,8,27,10,27,12,27,1700,9,27,1,27,1,27,1, - 28,1,28,1,28,1,28,5,28,1708,8,28,10,28,12,28,1711,9,28,1,28,1,28, - 1,29,1,29,1,29,1,29,1,29,1,29,3,29,1721,8,29,1,30,1,30,1,30,1,30, - 1,30,1,30,3,30,1729,8,30,1,31,1,31,1,31,1,31,3,31,1735,8,31,1,32, - 1,32,1,32,1,32,1,32,1,32,1,32,4,32,1744,8,32,11,32,12,32,1745,1, - 32,1,32,1,32,1,32,1,32,3,32,1753,8,32,1,32,1,32,1,32,1,32,1,32,3, - 32,1760,8,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,3, - 32,1772,8,32,1,32,1,32,1,32,1,32,5,32,1778,8,32,10,32,12,32,1781, - 9,32,1,32,5,32,1784,8,32,10,32,12,32,1787,9,32,1,32,5,32,1790,8, - 32,10,32,12,32,1793,9,32,3,32,1795,8,32,1,33,1,33,1,34,1,34,1,35, - 1,35,1,36,1,36,1,37,1,37,1,38,1,38,1,39,1,39,3,39,1811,8,39,1,40, - 1,40,1,41,1,41,1,41,5,41,1818,8,41,10,41,12,41,1821,9,41,1,42,1, - 42,1,43,1,43,1,43,1,43,1,43,1,43,3,43,1831,8,43,1,44,1,44,1,44,3, - 44,1836,8,44,1,44,1,44,1,44,3,44,1841,8,44,1,44,1,44,1,44,3,44,1846, - 8,44,1,44,1,44,1,44,3,44,1851,8,44,1,44,3,44,1854,8,44,1,44,3,44, - 1857,8,44,1,44,1,44,3,44,1861,8,44,1,45,1,45,1,45,3,45,1866,8,45, - 1,46,1,46,1,46,5,46,1871,8,46,10,46,12,46,1874,9,46,1,47,1,47,1, - 47,5,47,1879,8,47,10,47,12,47,1882,9,47,1,48,1,48,1,48,1,48,1,48, - 1,48,3,48,1890,8,48,1,48,1,48,1,48,1,48,3,48,1896,8,48,1,48,1,48, - 1,48,1,48,3,48,1902,8,48,1,48,5,48,1905,8,48,10,48,12,48,1908,9, - 48,1,49,1,49,1,49,4,49,1913,8,49,11,49,12,49,1914,1,49,1,49,1,49, - 1,49,1,49,1,49,5,49,1923,8,49,10,49,12,49,1926,9,49,1,49,1,49,1, - 49,1,49,1,49,1,49,3,49,1934,8,49,1,50,1,50,3,50,1938,8,50,1,50,3, - 50,1941,8,50,1,50,1,50,3,50,1945,8,50,1,51,1,51,3,51,1949,8,51,1, - 51,1,51,1,51,1,51,5,51,1955,8,51,10,51,12,51,1958,9,51,1,51,3,51, - 1961,8,51,1,51,3,51,1964,8,51,1,51,3,51,1967,8,51,1,51,3,51,1970, - 8,51,1,51,1,51,3,51,1974,8,51,1,52,1,52,3,52,1978,8,52,1,52,5,52, - 1981,8,52,10,52,12,52,1984,9,52,1,52,3,52,1987,8,52,1,52,3,52,1990, - 8,52,1,52,3,52,1993,8,52,1,52,3,52,1996,8,52,1,52,1,52,3,52,2000, - 8,52,1,52,5,52,2003,8,52,10,52,12,52,2006,9,52,1,52,3,52,2009,8, - 52,1,52,3,52,2012,8,52,1,52,3,52,2015,8,52,1,52,3,52,2018,8,52,3, - 52,2020,8,52,1,53,1,53,1,53,1,53,3,53,2026,8,53,1,53,1,53,1,53,1, - 53,1,53,3,53,2033,8,53,1,53,1,53,1,53,3,53,2038,8,53,1,53,3,53,2041, - 8,53,1,53,3,53,2044,8,53,1,53,1,53,3,53,2048,8,53,1,53,1,53,1,53, - 1,53,1,53,1,53,1,53,1,53,3,53,2058,8,53,1,53,1,53,3,53,2062,8,53, - 3,53,2064,8,53,1,53,3,53,2067,8,53,1,53,1,53,3,53,2071,8,53,1,54, - 1,54,5,54,2075,8,54,10,54,12,54,2078,9,54,1,54,3,54,2081,8,54,1, - 54,1,54,1,55,1,55,1,55,1,56,1,56,1,56,1,56,3,56,2092,8,56,1,56,1, - 56,1,56,1,56,1,56,1,56,3,56,2100,8,56,3,56,2102,8,56,1,57,1,57,1, - 57,1,57,1,57,3,57,2109,8,57,1,57,1,57,3,57,2113,8,57,1,57,1,57,1, - 57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2125,8,58,1,58,1,58,1, - 58,1,58,1,58,3,58,2132,8,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1, - 59,1,59,1,59,1,59,5,59,2145,8,59,10,59,12,59,2148,9,59,1,59,1,59, - 3,59,2152,8,59,1,60,1,60,1,60,5,60,2157,8,60,10,60,12,60,2160,9, - 60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1, - 64,3,64,2175,8,64,1,64,5,64,2178,8,64,10,64,12,64,2181,9,64,1,64, - 1,64,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2191,8,65,10,65,12,65,2194, - 9,65,1,65,1,65,3,65,2198,8,65,1,66,1,66,1,66,1,66,5,66,2204,8,66, - 10,66,12,66,2207,9,66,1,66,5,66,2210,8,66,10,66,12,66,2213,9,66, - 1,66,3,66,2216,8,66,1,66,3,66,2219,8,66,1,67,3,67,2222,8,67,1,67, - 1,67,1,67,1,67,1,67,3,67,2229,8,67,1,67,3,67,2232,8,67,1,67,1,67, - 1,67,1,67,3,67,2238,8,67,1,68,1,68,1,68,1,68,1,68,5,68,2245,8,68, - 10,68,12,68,2248,9,68,1,68,1,68,1,68,1,68,1,68,5,68,2255,8,68,10, - 68,12,68,2258,9,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68, - 1,68,5,68,2270,8,68,10,68,12,68,2273,9,68,1,68,1,68,3,68,2277,8, - 68,3,68,2279,8,68,1,69,1,69,1,69,3,69,2284,8,69,1,70,1,70,1,70,1, - 70,1,70,5,70,2291,8,70,10,70,12,70,2294,9,70,1,70,1,70,1,70,1,70, - 1,70,1,70,1,70,3,70,2303,8,70,1,70,1,70,1,70,3,70,2308,8,70,5,70, - 2310,8,70,10,70,12,70,2313,9,70,1,70,1,70,3,70,2317,8,70,1,71,1, - 71,1,71,1,71,1,71,3,71,2324,8,71,1,71,1,71,1,71,3,71,2329,8,71,5, - 71,2331,8,71,10,71,12,71,2334,9,71,3,71,2336,8,71,1,71,3,71,2339, - 8,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2351, - 8,72,10,72,12,72,2354,9,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1, - 73,5,73,2364,8,73,10,73,12,73,2367,9,73,1,73,1,73,3,73,2371,8,73, - 1,74,1,74,3,74,2375,8,74,1,74,3,74,2378,8,74,1,75,1,75,1,75,3,75, - 2383,8,75,1,75,1,75,1,75,3,75,2388,8,75,1,75,1,75,3,75,2392,8,75, - 1,75,3,75,2395,8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,5,76, - 2405,8,76,10,76,12,76,2408,9,76,1,76,1,76,1,77,1,77,1,77,1,77,5, - 77,2416,8,77,10,77,12,77,2419,9,77,1,77,1,77,1,77,1,77,1,77,1,77, - 1,77,1,77,5,77,2429,8,77,10,77,12,77,2432,9,77,1,77,1,77,1,78,1, - 78,1,78,1,78,5,78,2440,8,78,10,78,12,78,2443,9,78,1,78,1,78,3,78, - 2447,8,78,1,78,3,78,2450,8,78,1,79,1,79,3,79,2454,8,79,1,79,3,79, - 2457,8,79,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,82,1,82,1,82,3,82, - 2469,8,82,1,82,1,82,1,82,1,82,1,82,5,82,2476,8,82,10,82,12,82,2479, - 9,82,3,82,2481,8,82,1,82,1,82,1,82,3,82,2486,8,82,1,82,1,82,1,82, - 5,82,2491,8,82,10,82,12,82,2494,9,82,3,82,2496,8,82,1,83,1,83,1, - 84,1,84,3,84,2502,8,84,1,84,1,84,1,84,1,84,5,84,2508,8,84,10,84, - 12,84,2511,9,84,3,84,2513,8,84,1,85,1,85,1,85,3,85,2518,8,85,1,85, - 1,85,3,85,2522,8,85,1,85,1,85,1,85,1,85,3,85,2528,8,85,1,85,1,85, - 3,85,2532,8,85,1,86,3,86,2535,8,86,1,86,1,86,1,86,3,86,2540,8,86, - 1,86,3,86,2543,8,86,1,86,1,86,1,86,3,86,2548,8,86,3,86,2550,8,86, - 1,87,1,87,1,87,1,87,3,87,2556,8,87,1,88,1,88,1,88,3,88,2561,8,88, - 1,88,1,88,1,88,1,88,1,88,3,88,2568,8,88,1,89,3,89,2571,8,89,1,89, - 1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89, - 1,89,1,89,3,89,2589,8,89,3,89,2591,8,89,1,89,3,89,2594,8,89,1,90, - 1,90,1,90,1,90,1,91,1,91,1,91,5,91,2603,8,91,10,91,12,91,2606,9, - 91,1,92,1,92,1,92,1,92,5,92,2612,8,92,10,92,12,92,2615,9,92,1,92, - 1,92,1,93,1,93,3,93,2621,8,93,1,94,1,94,1,94,1,94,5,94,2627,8,94, - 10,94,12,94,2630,9,94,1,94,1,94,1,95,1,95,1,95,3,95,2637,8,95,1, - 96,1,96,1,96,3,96,2642,8,96,1,96,3,96,2645,8,96,1,96,3,96,2648,8, - 96,1,96,1,96,1,96,1,96,3,96,2654,8,96,1,96,1,96,1,96,1,96,1,96,1, - 96,3,96,2662,8,96,1,96,1,96,1,96,1,96,1,96,1,96,3,96,2670,8,96,1, - 97,1,97,1,97,1,97,1,98,1,98,1,98,1,98,5,98,2680,8,98,10,98,12,98, - 2683,9,98,1,99,1,99,1,99,3,99,2688,8,99,1,99,1,99,1,99,1,99,1,99, - 3,99,2695,8,99,1,99,1,99,1,99,1,99,1,99,3,99,2702,8,99,3,99,2704, - 8,99,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,5,100, - 2715,8,100,10,100,12,100,2718,9,100,1,100,1,100,1,100,3,100,2723, - 8,100,3,100,2725,8,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 3,100,2734,8,100,3,100,2736,8,100,1,101,1,101,1,101,1,101,1,102, - 1,102,3,102,2744,8,102,1,103,1,103,3,103,2748,8,103,1,104,1,104, - 1,104,1,105,1,105,1,105,1,105,1,105,5,105,2758,8,105,10,105,12,105, - 2761,9,105,3,105,2763,8,105,1,105,1,105,1,106,3,106,2768,8,106,1, - 106,1,106,3,106,2772,8,106,3,106,2774,8,106,1,107,1,107,1,107,1, - 107,1,107,1,107,1,107,3,107,2783,8,107,1,107,1,107,1,107,1,107,1, - 107,1,107,1,107,1,107,1,107,1,107,3,107,2795,8,107,3,107,2797,8, - 107,1,107,1,107,1,107,1,107,1,107,3,107,2804,8,107,1,107,1,107,1, - 107,1,107,1,107,3,107,2811,8,107,1,107,1,107,1,107,1,107,3,107,2817, - 8,107,1,107,1,107,1,107,1,107,3,107,2823,8,107,3,107,2825,8,107, - 1,108,1,108,1,108,5,108,2830,8,108,10,108,12,108,2833,9,108,1,109, - 1,109,1,109,5,109,2838,8,109,10,109,12,109,2841,9,109,1,110,1,110, - 1,110,5,110,2846,8,110,10,110,12,110,2849,9,110,1,111,1,111,1,111, - 3,111,2854,8,111,1,112,1,112,1,112,3,112,2859,8,112,1,112,1,112, - 1,113,1,113,1,113,3,113,2866,8,113,1,113,1,113,1,114,1,114,1,115, - 1,115,1,116,1,116,1,116,5,116,2877,8,116,10,116,12,116,2880,9,116, - 1,116,1,116,1,117,1,117,1,117,3,117,2887,8,117,1,117,3,117,2890, - 8,117,1,117,1,117,3,117,2894,8,117,3,117,2896,8,117,1,118,1,118, - 1,118,5,118,2901,8,118,10,118,12,118,2904,9,118,1,119,1,119,1,120, - 1,120,1,120,1,120,5,120,2912,8,120,10,120,12,120,2915,9,120,1,120, - 1,120,1,121,1,121,3,121,2921,8,121,1,122,1,122,1,122,1,122,1,122, - 1,122,5,122,2929,8,122,10,122,12,122,2932,9,122,1,122,1,122,3,122, - 2936,8,122,1,123,1,123,3,123,2940,8,123,1,124,1,124,1,125,1,125, - 1,125,1,125,1,126,1,126,3,126,2950,8,126,1,127,1,127,1,127,5,127, - 2955,8,127,10,127,12,127,2958,9,127,1,128,1,128,1,128,1,128,1,128, - 1,128,1,128,1,128,1,128,1,128,3,128,2970,8,128,3,128,2972,8,128, - 1,128,1,128,1,128,1,128,1,128,1,128,5,128,2980,8,128,10,128,12,128, - 2983,9,128,1,129,3,129,2986,8,129,1,129,1,129,1,129,1,129,1,129, - 1,129,3,129,2994,8,129,1,129,1,129,1,129,1,129,1,129,5,129,3001, - 8,129,10,129,12,129,3004,9,129,1,129,1,129,1,129,3,129,3009,8,129, - 1,129,1,129,1,129,1,129,1,129,1,129,3,129,3017,8,129,1,129,1,129, - 1,129,3,129,3022,8,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, - 1,129,5,129,3032,8,129,10,129,12,129,3035,9,129,1,129,1,129,3,129, - 3039,8,129,1,129,3,129,3042,8,129,1,129,1,129,1,129,1,129,3,129, - 3048,8,129,1,129,1,129,3,129,3052,8,129,1,129,1,129,1,129,3,129, - 3057,8,129,1,129,1,129,1,129,3,129,3062,8,129,1,129,1,129,1,129, - 3,129,3067,8,129,1,130,1,130,1,130,1,130,3,130,3073,8,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,5,130,3094,8,130,10,130, - 12,130,3097,9,130,1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,132, - 3,132,3107,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,3,132,3119,8,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,4,132,3129,8,132,11,132,12,132,3130,1,132,1,132,3,132, - 3135,8,132,1,132,1,132,1,132,1,132,1,132,4,132,3142,8,132,11,132, - 12,132,3143,1,132,1,132,3,132,3148,8,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,5,132, - 3164,8,132,10,132,12,132,3167,9,132,3,132,3169,8,132,1,132,1,132, - 1,132,1,132,1,132,1,132,3,132,3177,8,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,3,132,3186,8,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,3,132,3195,8,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,4,132,3216,8,132,11,132,12,132,3217,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 3,132,3234,8,132,1,132,1,132,1,132,5,132,3239,8,132,10,132,12,132, - 3242,9,132,3,132,3244,8,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,3,132,3253,8,132,1,132,1,132,3,132,3257,8,132,1,132,1,132, - 3,132,3261,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 4,132,3271,8,132,11,132,12,132,3272,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,3298,8,132,1,132, - 1,132,1,132,1,132,1,132,3,132,3305,8,132,1,132,3,132,3308,8,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,3,132,3323,8,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,3,132,3344,8,132,1,132,1,132,3,132,3348,8,132,3,132, - 3350,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,5,132, - 3360,8,132,10,132,12,132,3363,9,132,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,3,133,3372,8,133,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,4,134,3385,8,134,11,134,12,134,3386, - 3,134,3389,8,134,1,135,1,135,1,136,1,136,1,137,1,137,1,138,1,138, - 1,139,1,139,1,139,3,139,3402,8,139,1,140,1,140,3,140,3406,8,140, - 1,141,1,141,1,141,4,141,3411,8,141,11,141,12,141,3412,1,142,1,142, - 1,142,3,142,3418,8,142,1,143,1,143,1,143,1,143,1,143,1,144,3,144, - 3426,8,144,1,144,1,144,1,144,3,144,3431,8,144,1,145,1,145,1,146, - 1,146,1,147,1,147,1,147,3,147,3440,8,147,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,3,148,3472,8,148,1,149,1,149,1,149,1,149, - 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, - 1,149,1,149,5,149,3491,8,149,10,149,12,149,3494,9,149,3,149,3496, - 8,149,1,149,1,149,3,149,3500,8,149,1,149,1,149,1,149,1,149,3,149, - 3506,8,149,1,149,1,149,1,149,1,149,3,149,3512,8,149,1,149,1,149, - 1,149,1,149,1,149,5,149,3519,8,149,10,149,12,149,3522,9,149,1,149, - 3,149,3525,8,149,3,149,3527,8,149,1,150,1,150,1,150,5,150,3532,8, - 150,10,150,12,150,3535,9,150,1,151,1,151,1,151,5,151,3540,8,151, - 10,151,12,151,3543,9,151,1,152,1,152,1,152,5,152,3548,8,152,10,152, - 12,152,3551,9,152,1,153,1,153,1,153,5,153,3556,8,153,10,153,12,153, - 3559,9,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154,3,154,3568, - 8,154,1,155,1,155,1,155,1,156,1,156,1,156,5,156,3576,8,156,10,156, - 12,156,3579,9,156,1,157,1,157,1,157,1,157,3,157,3585,8,157,1,157, - 1,157,3,157,3589,8,157,1,158,1,158,1,158,5,158,3594,8,158,10,158, - 12,158,3597,9,158,1,159,1,159,1,159,5,159,3602,8,159,10,159,12,159, - 3605,9,159,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,3,160,3620,8,160,1,161,1,161,3,161,3624, - 8,161,1,161,1,161,1,161,3,161,3629,8,161,1,161,1,161,3,161,3633, - 8,161,1,162,1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163, - 1,163,1,163,1,163,1,163,5,163,3649,8,163,10,163,12,163,3652,9,163, - 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,165,5,165,3669,8,165,10,165,12,165,3672,9,165, - 1,165,1,165,1,165,1,165,1,165,5,165,3679,8,165,10,165,12,165,3682, - 9,165,3,165,3684,8,165,1,165,1,165,1,165,3,165,3689,8,165,3,165, - 3691,8,165,1,165,3,165,3694,8,165,1,165,3,165,3697,8,165,1,166,1, - 166,1,166,1,166,1,166,1,166,1,166,1,166,3,166,3707,8,166,1,167,1, - 167,1,167,1,167,1,167,1,167,1,167,3,167,3716,8,167,1,168,1,168,1, - 168,5,168,3721,8,168,10,168,12,168,3724,9,168,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,1,169,3,169,3735,8,169,1,170,1,170, - 1,171,1,171,1,171,5,171,3742,8,171,10,171,12,171,3745,9,171,1,172, - 1,172,1,172,1,173,1,173,4,173,3752,8,173,11,173,12,173,3753,1,173, - 3,173,3757,8,173,1,174,1,174,3,174,3761,8,174,1,175,1,175,1,175, - 1,175,3,175,3767,8,175,1,176,1,176,1,177,3,177,3772,8,177,1,177, - 1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, - 1,178,1,178,1,178,3,178,3789,8,178,1,179,1,179,1,180,1,180,1,181, - 1,181,1,182,1,182,1,182,9,1132,1202,1210,1230,1257,1266,1275,1284, - 1332,4,96,256,260,264,183,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,120,122,124,126,128,130,132,134,136,138,140,142,144, - 146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176, - 178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208, - 210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240, - 242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272, - 274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304, - 306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336, - 338,340,342,344,346,348,350,352,354,356,358,360,362,364,0,76,2,0, - 78,78,229,229,2,0,34,34,247,247,3,0,73,73,191,191,262,262,2,0,123, - 123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5,0,46,46,58,58,108, - 108,122,122,173,173,3,0,10,10,290,290,331,331,1,0,86,87,2,0,108, - 108,122,122,3,0,8,8,96,96,289,289,2,0,8,8,167,167,1,0,335,336,2, - 0,59,59,96,96,2,0,129,129,249,249,6,0,54,54,129,129,143,143,172, - 172,228,228,313,313,3,0,11,11,59,59,96,96,4,0,107,107,139,139,171, - 171,326,326,2,0,171,171,326,326,3,0,45,45,275,275,279,279,2,0,45, - 45,275,275,3,0,18,18,103,103,320,320,3,0,72,72,190,190,261,261,4, - 0,102,102,148,148,270,270,323,323,3,0,102,102,270,270,323,323,2, - 0,21,21,86,86,2,0,116,116,157,157,2,0,292,292,337,337,2,0,291,291, - 303,303,2,0,61,61,256,256,2,0,104,104,141,141,2,0,10,10,92,92,2, - 0,15,15,264,264,2,0,124,124,250,250,2,0,382,382,384,384,2,0,93,93, - 217,217,2,0,209,209,278,278,2,0,197,197,360,360,1,0,251,252,1,0, - 163,164,3,0,10,10,16,16,277,277,3,0,111,111,316,316,325,325,2,0, - 361,362,366,366,2,0,94,94,363,365,2,0,361,362,369,369,11,0,67,67, - 69,69,134,134,180,180,182,182,184,184,186,186,231,231,259,259,341, - 341,348,348,4,0,63,63,65,66,268,268,331,331,2,0,74,75,306,306,3, - 0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138,138,246,246,1, - 0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28,160,160,311, - 311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14,14,140,140, - 197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67,68,134,135, - 180,187,192,193,259,260,341,342,348,349,6,0,67,67,134,134,184,184, - 186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67,134,134,184, - 184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352,352,2,0,233, - 233,258,258,2,0,118,118,226,226,2,0,378,378,389,389,1,0,379,387, - 2,0,96,96,269,269,1,0,377,378,52,0,8,9,11,13,15,15,17,19,21,22,24, - 27,29,34,37,41,43,46,48,48,50,56,58,58,61,62,67,91,93,96,98,98,101, - 101,103,110,113,113,115,118,121,122,125,128,131,131,133,139,141, - 143,145,147,149,151,154,154,156,157,159,159,163,193,195,195,199, - 201,205,207,210,210,212,213,215,219,222,226,228,238,240,249,251, - 262,264,267,269,276,278,292,294,299,302,308,310,310,312,322,326, - 330,333,342,345,345,348,351,16,0,15,15,60,60,102,102,124,124,144, - 144,148,148,155,155,158,158,161,161,194,194,203,203,250,250,264, - 264,270,270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125,143, - 145,147,149,154,156,157,159,160,162,193,195,195,197,202,204,249, - 251,262,265,269,271,292,294,322,324,331,333,351,4386,0,369,1,0,0, - 0,2,374,1,0,0,0,4,1335,1,0,0,0,6,1430,1,0,0,0,8,1432,1,0,0,0,10, - 1444,1,0,0,0,12,1457,1,0,0,0,14,1460,1,0,0,0,16,1464,1,0,0,0,18, - 1545,1,0,0,0,20,1547,1,0,0,0,22,1552,1,0,0,0,24,1573,1,0,0,0,26, - 1575,1,0,0,0,28,1582,1,0,0,0,30,1584,1,0,0,0,32,1592,1,0,0,0,34, - 1601,1,0,0,0,36,1612,1,0,0,0,38,1633,1,0,0,0,40,1636,1,0,0,0,42, - 1639,1,0,0,0,44,1650,1,0,0,0,46,1666,1,0,0,0,48,1672,1,0,0,0,50, - 1674,1,0,0,0,52,1685,1,0,0,0,54,1692,1,0,0,0,56,1703,1,0,0,0,58, - 1720,1,0,0,0,60,1728,1,0,0,0,62,1730,1,0,0,0,64,1794,1,0,0,0,66, - 1796,1,0,0,0,68,1798,1,0,0,0,70,1800,1,0,0,0,72,1802,1,0,0,0,74, - 1804,1,0,0,0,76,1806,1,0,0,0,78,1810,1,0,0,0,80,1812,1,0,0,0,82, - 1814,1,0,0,0,84,1822,1,0,0,0,86,1830,1,0,0,0,88,1835,1,0,0,0,90, - 1862,1,0,0,0,92,1867,1,0,0,0,94,1875,1,0,0,0,96,1883,1,0,0,0,98, - 1933,1,0,0,0,100,1937,1,0,0,0,102,1973,1,0,0,0,104,2019,1,0,0,0, - 106,2040,1,0,0,0,108,2072,1,0,0,0,110,2084,1,0,0,0,112,2087,1,0, - 0,0,114,2103,1,0,0,0,116,2117,1,0,0,0,118,2151,1,0,0,0,120,2153, - 1,0,0,0,122,2161,1,0,0,0,124,2165,1,0,0,0,126,2168,1,0,0,0,128,2171, - 1,0,0,0,130,2197,1,0,0,0,132,2199,1,0,0,0,134,2237,1,0,0,0,136,2278, - 1,0,0,0,138,2283,1,0,0,0,140,2316,1,0,0,0,142,2338,1,0,0,0,144,2340, - 1,0,0,0,146,2370,1,0,0,0,148,2372,1,0,0,0,150,2379,1,0,0,0,152,2396, - 1,0,0,0,154,2411,1,0,0,0,156,2435,1,0,0,0,158,2451,1,0,0,0,160,2458, - 1,0,0,0,162,2462,1,0,0,0,164,2465,1,0,0,0,166,2497,1,0,0,0,168,2512, - 1,0,0,0,170,2531,1,0,0,0,172,2549,1,0,0,0,174,2555,1,0,0,0,176,2557, - 1,0,0,0,178,2593,1,0,0,0,180,2595,1,0,0,0,182,2599,1,0,0,0,184,2607, - 1,0,0,0,186,2618,1,0,0,0,188,2622,1,0,0,0,190,2633,1,0,0,0,192,2669, - 1,0,0,0,194,2671,1,0,0,0,196,2675,1,0,0,0,198,2703,1,0,0,0,200,2724, - 1,0,0,0,202,2737,1,0,0,0,204,2743,1,0,0,0,206,2747,1,0,0,0,208,2749, - 1,0,0,0,210,2752,1,0,0,0,212,2773,1,0,0,0,214,2824,1,0,0,0,216,2826, - 1,0,0,0,218,2834,1,0,0,0,220,2842,1,0,0,0,222,2850,1,0,0,0,224,2858, - 1,0,0,0,226,2865,1,0,0,0,228,2869,1,0,0,0,230,2871,1,0,0,0,232,2878, - 1,0,0,0,234,2886,1,0,0,0,236,2897,1,0,0,0,238,2905,1,0,0,0,240,2907, - 1,0,0,0,242,2920,1,0,0,0,244,2935,1,0,0,0,246,2939,1,0,0,0,248,2941, - 1,0,0,0,250,2943,1,0,0,0,252,2949,1,0,0,0,254,2951,1,0,0,0,256,2971, - 1,0,0,0,258,3066,1,0,0,0,260,3072,1,0,0,0,262,3098,1,0,0,0,264,3349, - 1,0,0,0,266,3371,1,0,0,0,268,3388,1,0,0,0,270,3390,1,0,0,0,272,3392, - 1,0,0,0,274,3394,1,0,0,0,276,3396,1,0,0,0,278,3398,1,0,0,0,280,3403, - 1,0,0,0,282,3410,1,0,0,0,284,3414,1,0,0,0,286,3419,1,0,0,0,288,3425, - 1,0,0,0,290,3432,1,0,0,0,292,3434,1,0,0,0,294,3439,1,0,0,0,296,3471, - 1,0,0,0,298,3526,1,0,0,0,300,3528,1,0,0,0,302,3536,1,0,0,0,304,3544, - 1,0,0,0,306,3552,1,0,0,0,308,3567,1,0,0,0,310,3569,1,0,0,0,312,3572, - 1,0,0,0,314,3580,1,0,0,0,316,3590,1,0,0,0,318,3598,1,0,0,0,320,3619, - 1,0,0,0,322,3621,1,0,0,0,324,3634,1,0,0,0,326,3639,1,0,0,0,328,3653, - 1,0,0,0,330,3696,1,0,0,0,332,3706,1,0,0,0,334,3715,1,0,0,0,336,3717, - 1,0,0,0,338,3734,1,0,0,0,340,3736,1,0,0,0,342,3738,1,0,0,0,344,3746, - 1,0,0,0,346,3756,1,0,0,0,348,3760,1,0,0,0,350,3766,1,0,0,0,352,3768, - 1,0,0,0,354,3771,1,0,0,0,356,3788,1,0,0,0,358,3790,1,0,0,0,360,3792, - 1,0,0,0,362,3794,1,0,0,0,364,3796,1,0,0,0,366,368,3,2,1,0,367,366, - 1,0,0,0,368,371,1,0,0,0,369,367,1,0,0,0,369,370,1,0,0,0,370,372, - 1,0,0,0,371,369,1,0,0,0,372,373,5,0,0,1,373,1,1,0,0,0,374,376,3, - 4,2,0,375,377,5,1,0,0,376,375,1,0,0,0,376,377,1,0,0,0,377,3,1,0, - 0,0,378,1336,3,16,8,0,379,381,3,32,16,0,380,379,1,0,0,0,380,381, - 1,0,0,0,381,382,1,0,0,0,382,1336,3,64,32,0,383,385,5,330,0,0,384, - 386,3,26,13,0,385,384,1,0,0,0,385,386,1,0,0,0,386,387,1,0,0,0,387, - 1336,3,66,33,0,388,389,5,269,0,0,389,392,5,37,0,0,390,393,3,348, - 174,0,391,393,3,358,179,0,392,390,1,0,0,0,392,391,1,0,0,0,393,1336, - 1,0,0,0,394,395,5,59,0,0,395,397,3,26,13,0,396,398,3,160,80,0,397, - 396,1,0,0,0,397,398,1,0,0,0,398,399,1,0,0,0,399,409,3,68,34,0,400, - 401,5,51,0,0,401,408,3,358,179,0,402,403,5,170,0,0,403,408,3,358, - 179,0,404,405,5,346,0,0,405,406,7,0,0,0,406,408,3,42,21,0,407,400, - 1,0,0,0,407,402,1,0,0,0,407,404,1,0,0,0,408,411,1,0,0,0,409,407, - 1,0,0,0,409,410,1,0,0,0,410,1336,1,0,0,0,411,409,1,0,0,0,412,413, - 5,11,0,0,413,414,3,26,13,0,414,415,3,66,33,0,415,416,5,269,0,0,416, - 417,7,0,0,0,417,418,3,42,21,0,418,1336,1,0,0,0,419,420,5,11,0,0, - 420,421,3,26,13,0,421,422,3,66,33,0,422,423,5,269,0,0,423,424,5, - 170,0,0,424,425,3,358,179,0,425,1336,1,0,0,0,426,427,5,96,0,0,427, - 429,3,26,13,0,428,430,3,162,81,0,429,428,1,0,0,0,429,430,1,0,0,0, - 430,431,1,0,0,0,431,433,3,66,33,0,432,434,7,1,0,0,433,432,1,0,0, - 0,433,434,1,0,0,0,434,1336,1,0,0,0,435,436,5,273,0,0,436,439,7,2, - 0,0,437,438,7,3,0,0,438,440,3,218,109,0,439,437,1,0,0,0,439,440, - 1,0,0,0,440,445,1,0,0,0,441,443,5,163,0,0,442,441,1,0,0,0,442,443, - 1,0,0,0,443,444,1,0,0,0,444,446,3,358,179,0,445,442,1,0,0,0,445, - 446,1,0,0,0,446,1336,1,0,0,0,447,449,5,59,0,0,448,450,5,298,0,0, - 449,448,1,0,0,0,449,450,1,0,0,0,450,452,1,0,0,0,451,453,5,109,0, - 0,452,451,1,0,0,0,452,453,1,0,0,0,453,454,1,0,0,0,454,456,5,293, - 0,0,455,457,3,160,80,0,456,455,1,0,0,0,456,457,1,0,0,0,457,458,1, - 0,0,0,458,463,3,70,35,0,459,460,5,2,0,0,460,461,3,316,158,0,461, - 462,5,3,0,0,462,464,1,0,0,0,463,459,1,0,0,0,463,464,1,0,0,0,464, - 466,1,0,0,0,465,467,3,36,18,0,466,465,1,0,0,0,466,467,1,0,0,0,467, - 468,1,0,0,0,468,473,3,38,19,0,469,471,5,20,0,0,470,469,1,0,0,0,470, - 471,1,0,0,0,471,472,1,0,0,0,472,474,3,16,8,0,473,470,1,0,0,0,473, - 474,1,0,0,0,474,1336,1,0,0,0,475,476,5,59,0,0,476,478,5,293,0,0, - 477,479,3,160,80,0,478,477,1,0,0,0,478,479,1,0,0,0,479,480,1,0,0, - 0,480,481,3,70,35,0,481,482,5,163,0,0,482,493,3,72,36,0,483,492, - 3,36,18,0,484,492,3,214,107,0,485,492,3,58,29,0,486,487,5,170,0, - 0,487,492,3,358,179,0,488,489,5,297,0,0,489,492,3,42,21,0,490,492, - 3,40,20,0,491,483,1,0,0,0,491,484,1,0,0,0,491,485,1,0,0,0,491,486, - 1,0,0,0,491,488,1,0,0,0,491,490,1,0,0,0,492,495,1,0,0,0,493,491, - 1,0,0,0,493,494,1,0,0,0,494,1336,1,0,0,0,495,493,1,0,0,0,496,497, - 5,59,0,0,497,499,5,208,0,0,498,496,1,0,0,0,498,499,1,0,0,0,499,500, - 1,0,0,0,500,501,5,244,0,0,501,502,5,293,0,0,502,507,3,70,35,0,503, - 504,5,2,0,0,504,505,3,316,158,0,505,506,5,3,0,0,506,508,1,0,0,0, - 507,503,1,0,0,0,507,508,1,0,0,0,508,510,1,0,0,0,509,511,3,36,18, - 0,510,509,1,0,0,0,510,511,1,0,0,0,511,512,1,0,0,0,512,517,3,38,19, - 0,513,515,5,20,0,0,514,513,1,0,0,0,514,515,1,0,0,0,515,516,1,0,0, - 0,516,518,3,16,8,0,517,514,1,0,0,0,517,518,1,0,0,0,518,1336,1,0, - 0,0,519,520,5,13,0,0,520,521,5,293,0,0,521,523,3,72,36,0,522,524, - 3,22,11,0,523,522,1,0,0,0,523,524,1,0,0,0,524,525,1,0,0,0,525,526, - 5,55,0,0,526,534,5,282,0,0,527,535,5,196,0,0,528,529,5,119,0,0,529, - 530,5,50,0,0,530,535,3,82,41,0,531,532,5,119,0,0,532,533,5,10,0, - 0,533,535,5,50,0,0,534,527,1,0,0,0,534,528,1,0,0,0,534,531,1,0,0, - 0,534,535,1,0,0,0,535,1336,1,0,0,0,536,537,5,13,0,0,537,540,5,294, - 0,0,538,539,7,3,0,0,539,541,3,66,33,0,540,538,1,0,0,0,540,541,1, - 0,0,0,541,542,1,0,0,0,542,543,5,55,0,0,543,545,5,282,0,0,544,546, - 5,196,0,0,545,544,1,0,0,0,545,546,1,0,0,0,546,1336,1,0,0,0,547,548, - 5,11,0,0,548,549,5,293,0,0,549,550,3,72,36,0,550,551,5,8,0,0,551, - 552,5,49,0,0,552,553,3,302,151,0,553,1336,1,0,0,0,554,555,5,11,0, - 0,555,556,5,293,0,0,556,557,3,72,36,0,557,558,5,8,0,0,558,559,5, - 50,0,0,559,560,5,2,0,0,560,561,3,300,150,0,561,562,5,3,0,0,562,1336, - 1,0,0,0,563,564,5,11,0,0,564,565,5,293,0,0,565,566,3,72,36,0,566, - 567,5,241,0,0,567,568,5,49,0,0,568,569,3,78,39,0,569,570,5,309,0, - 0,570,571,3,84,42,0,571,1336,1,0,0,0,572,573,5,11,0,0,573,574,5, - 293,0,0,574,575,3,72,36,0,575,576,5,96,0,0,576,578,5,49,0,0,577, - 579,3,162,81,0,578,577,1,0,0,0,578,579,1,0,0,0,579,580,1,0,0,0,580, - 581,3,78,39,0,581,1336,1,0,0,0,582,583,5,11,0,0,583,584,5,293,0, - 0,584,585,3,72,36,0,585,586,5,96,0,0,586,588,5,50,0,0,587,589,3, - 162,81,0,588,587,1,0,0,0,588,589,1,0,0,0,589,590,1,0,0,0,590,591, - 5,2,0,0,591,592,3,82,41,0,592,593,5,3,0,0,593,1336,1,0,0,0,594,599, - 5,11,0,0,595,596,5,293,0,0,596,600,3,72,36,0,597,598,5,338,0,0,598, - 600,3,76,38,0,599,595,1,0,0,0,599,597,1,0,0,0,600,601,1,0,0,0,601, - 602,5,241,0,0,602,603,5,309,0,0,603,604,3,218,109,0,604,1336,1,0, - 0,0,605,610,5,11,0,0,606,607,5,293,0,0,607,611,3,72,36,0,608,609, - 5,338,0,0,609,611,3,76,38,0,610,606,1,0,0,0,610,608,1,0,0,0,611, - 612,1,0,0,0,612,613,5,269,0,0,613,614,5,297,0,0,614,615,3,42,21, - 0,615,1336,1,0,0,0,616,621,5,11,0,0,617,618,5,293,0,0,618,622,3, - 72,36,0,619,620,5,338,0,0,620,622,3,76,38,0,621,617,1,0,0,0,621, - 619,1,0,0,0,622,623,1,0,0,0,623,624,5,328,0,0,624,626,5,297,0,0, - 625,627,3,162,81,0,626,625,1,0,0,0,626,627,1,0,0,0,627,628,1,0,0, - 0,628,629,3,42,21,0,629,1336,1,0,0,0,630,631,5,11,0,0,631,632,5, - 293,0,0,632,633,3,72,36,0,633,635,7,4,0,0,634,636,5,49,0,0,635,634, - 1,0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,639,3,78,39,0,638,640, - 3,356,178,0,639,638,1,0,0,0,639,640,1,0,0,0,640,1336,1,0,0,0,641, - 642,5,11,0,0,642,643,5,293,0,0,643,645,3,72,36,0,644,646,3,22,11, - 0,645,644,1,0,0,0,645,646,1,0,0,0,646,647,1,0,0,0,647,649,5,39,0, - 0,648,650,5,49,0,0,649,648,1,0,0,0,649,650,1,0,0,0,650,651,1,0,0, - 0,651,652,3,78,39,0,652,654,3,314,157,0,653,655,3,294,147,0,654, - 653,1,0,0,0,654,655,1,0,0,0,655,1336,1,0,0,0,656,657,5,11,0,0,657, - 658,5,293,0,0,658,660,3,72,36,0,659,661,3,22,11,0,660,659,1,0,0, - 0,660,661,1,0,0,0,661,662,1,0,0,0,662,663,5,244,0,0,663,664,5,50, - 0,0,664,665,5,2,0,0,665,666,3,304,152,0,666,667,5,3,0,0,667,1336, - 1,0,0,0,668,669,5,11,0,0,669,670,5,293,0,0,670,672,3,72,36,0,671, - 673,3,22,11,0,672,671,1,0,0,0,672,673,1,0,0,0,673,674,1,0,0,0,674, - 675,5,269,0,0,675,676,5,266,0,0,676,680,3,358,179,0,677,678,5,346, - 0,0,678,679,5,267,0,0,679,681,3,42,21,0,680,677,1,0,0,0,680,681, - 1,0,0,0,681,1336,1,0,0,0,682,683,5,11,0,0,683,684,5,293,0,0,684, - 686,3,72,36,0,685,687,3,22,11,0,686,685,1,0,0,0,686,687,1,0,0,0, - 687,688,1,0,0,0,688,689,5,269,0,0,689,690,5,267,0,0,690,691,3,42, - 21,0,691,1336,1,0,0,0,692,697,5,11,0,0,693,694,5,293,0,0,694,698, - 3,72,36,0,695,696,5,338,0,0,696,698,3,76,38,0,697,693,1,0,0,0,697, - 695,1,0,0,0,698,699,1,0,0,0,699,701,5,8,0,0,700,702,3,160,80,0,701, - 700,1,0,0,0,701,702,1,0,0,0,702,704,1,0,0,0,703,705,3,20,10,0,704, - 703,1,0,0,0,705,706,1,0,0,0,706,704,1,0,0,0,706,707,1,0,0,0,707, - 1336,1,0,0,0,708,709,5,11,0,0,709,710,5,293,0,0,710,711,3,72,36, - 0,711,712,3,22,11,0,712,713,5,241,0,0,713,714,5,309,0,0,714,715, - 3,22,11,0,715,1336,1,0,0,0,716,721,5,11,0,0,717,718,5,293,0,0,718, - 722,3,72,36,0,719,720,5,338,0,0,720,722,3,76,38,0,721,717,1,0,0, - 0,721,719,1,0,0,0,722,723,1,0,0,0,723,725,5,96,0,0,724,726,3,162, - 81,0,725,724,1,0,0,0,725,726,1,0,0,0,726,727,1,0,0,0,727,732,3,22, - 11,0,728,729,5,4,0,0,729,731,3,22,11,0,730,728,1,0,0,0,731,734,1, - 0,0,0,732,730,1,0,0,0,732,733,1,0,0,0,733,736,1,0,0,0,734,732,1, - 0,0,0,735,737,5,230,0,0,736,735,1,0,0,0,736,737,1,0,0,0,737,1336, - 1,0,0,0,738,739,5,11,0,0,739,740,5,293,0,0,740,742,3,72,36,0,741, - 743,3,22,11,0,742,741,1,0,0,0,742,743,1,0,0,0,743,744,1,0,0,0,744, - 745,5,269,0,0,745,746,5,170,0,0,746,747,3,358,179,0,747,1336,1,0, - 0,0,748,749,5,11,0,0,749,750,5,293,0,0,750,751,3,72,36,0,751,752, - 5,237,0,0,752,753,5,219,0,0,753,1336,1,0,0,0,754,755,5,11,0,0,755, - 756,5,176,0,0,756,757,5,338,0,0,757,758,3,76,38,0,758,759,7,5,0, - 0,759,760,5,248,0,0,760,1336,1,0,0,0,761,762,5,11,0,0,762,763,5, - 176,0,0,763,764,5,338,0,0,764,765,3,76,38,0,765,766,5,269,0,0,766, - 767,5,297,0,0,767,768,3,42,21,0,768,1336,1,0,0,0,769,770,5,96,0, - 0,770,772,5,293,0,0,771,773,3,162,81,0,772,771,1,0,0,0,772,773,1, - 0,0,0,773,774,1,0,0,0,774,776,3,72,36,0,775,777,5,230,0,0,776,775, - 1,0,0,0,776,777,1,0,0,0,777,1336,1,0,0,0,778,779,5,96,0,0,779,781, - 5,338,0,0,780,782,3,162,81,0,781,780,1,0,0,0,781,782,1,0,0,0,782, - 783,1,0,0,0,783,1336,3,76,38,0,784,785,5,96,0,0,785,786,5,176,0, - 0,786,788,5,338,0,0,787,789,3,162,81,0,788,787,1,0,0,0,788,789,1, - 0,0,0,789,790,1,0,0,0,790,1336,3,76,38,0,791,794,5,59,0,0,792,793, - 5,208,0,0,793,795,5,244,0,0,794,792,1,0,0,0,794,795,1,0,0,0,795, - 800,1,0,0,0,796,798,5,128,0,0,797,796,1,0,0,0,797,798,1,0,0,0,798, - 799,1,0,0,0,799,801,5,298,0,0,800,797,1,0,0,0,800,801,1,0,0,0,801, - 802,1,0,0,0,802,804,5,338,0,0,803,805,3,160,80,0,804,803,1,0,0,0, - 804,805,1,0,0,0,805,806,1,0,0,0,806,808,3,74,37,0,807,809,3,188, - 94,0,808,807,1,0,0,0,808,809,1,0,0,0,809,819,1,0,0,0,810,811,5,51, - 0,0,811,818,3,358,179,0,812,813,5,218,0,0,813,814,5,203,0,0,814, - 818,3,180,90,0,815,816,5,297,0,0,816,818,3,42,21,0,817,810,1,0,0, - 0,817,812,1,0,0,0,817,815,1,0,0,0,818,821,1,0,0,0,819,817,1,0,0, - 0,819,820,1,0,0,0,820,822,1,0,0,0,821,819,1,0,0,0,822,823,5,20,0, - 0,823,824,3,16,8,0,824,1336,1,0,0,0,825,828,5,59,0,0,826,827,5,208, - 0,0,827,829,5,244,0,0,828,826,1,0,0,0,828,829,1,0,0,0,829,831,1, - 0,0,0,830,832,5,128,0,0,831,830,1,0,0,0,831,832,1,0,0,0,832,833, - 1,0,0,0,833,834,5,298,0,0,834,835,5,338,0,0,835,840,3,74,37,0,836, - 837,5,2,0,0,837,838,3,312,156,0,838,839,5,3,0,0,839,841,1,0,0,0, - 840,836,1,0,0,0,840,841,1,0,0,0,841,842,1,0,0,0,842,845,3,36,18, - 0,843,844,5,207,0,0,844,846,3,42,21,0,845,843,1,0,0,0,845,846,1, - 0,0,0,846,1336,1,0,0,0,847,848,5,11,0,0,848,849,5,338,0,0,849,851, - 3,76,38,0,850,852,5,20,0,0,851,850,1,0,0,0,851,852,1,0,0,0,852,853, - 1,0,0,0,853,854,3,16,8,0,854,1336,1,0,0,0,855,858,5,59,0,0,856,857, - 5,208,0,0,857,859,5,244,0,0,858,856,1,0,0,0,858,859,1,0,0,0,859, - 861,1,0,0,0,860,862,5,298,0,0,861,860,1,0,0,0,861,862,1,0,0,0,862, - 863,1,0,0,0,863,865,5,125,0,0,864,866,3,160,80,0,865,864,1,0,0,0, - 865,866,1,0,0,0,866,867,1,0,0,0,867,868,3,340,170,0,868,869,5,20, - 0,0,869,883,3,358,179,0,870,871,5,332,0,0,871,872,3,348,174,0,872, - 873,3,358,179,0,873,880,1,0,0,0,874,875,5,4,0,0,875,876,3,348,174, - 0,876,877,3,358,179,0,877,879,1,0,0,0,878,874,1,0,0,0,879,882,1, - 0,0,0,880,878,1,0,0,0,880,881,1,0,0,0,881,884,1,0,0,0,882,880,1, - 0,0,0,883,870,1,0,0,0,883,884,1,0,0,0,884,1336,1,0,0,0,885,886,5, - 59,0,0,886,887,5,176,0,0,887,889,5,338,0,0,888,890,3,160,80,0,889, - 888,1,0,0,0,889,890,1,0,0,0,890,891,1,0,0,0,891,893,3,74,37,0,892, - 894,3,36,18,0,893,892,1,0,0,0,893,894,1,0,0,0,894,912,1,0,0,0,895, - 896,5,207,0,0,896,911,3,42,21,0,897,898,5,218,0,0,898,899,5,31,0, - 0,899,911,3,240,120,0,900,911,3,10,5,0,901,911,3,8,4,0,902,911,3, - 214,107,0,903,911,3,58,29,0,904,905,5,170,0,0,905,911,3,358,179, - 0,906,907,5,51,0,0,907,911,3,358,179,0,908,909,5,297,0,0,909,911, - 3,42,21,0,910,895,1,0,0,0,910,897,1,0,0,0,910,900,1,0,0,0,910,901, - 1,0,0,0,910,902,1,0,0,0,910,903,1,0,0,0,910,904,1,0,0,0,910,906, - 1,0,0,0,910,908,1,0,0,0,911,914,1,0,0,0,912,910,1,0,0,0,912,913, - 1,0,0,0,913,915,1,0,0,0,914,912,1,0,0,0,915,916,5,20,0,0,916,917, - 3,16,8,0,917,1336,1,0,0,0,918,920,5,96,0,0,919,921,5,298,0,0,920, - 919,1,0,0,0,920,921,1,0,0,0,921,922,1,0,0,0,922,924,5,125,0,0,923, - 925,3,162,81,0,924,923,1,0,0,0,924,925,1,0,0,0,925,926,1,0,0,0,926, - 1336,3,338,169,0,927,930,5,81,0,0,928,929,5,208,0,0,929,931,5,244, - 0,0,930,928,1,0,0,0,930,931,1,0,0,0,931,933,1,0,0,0,932,934,5,336, - 0,0,933,932,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935,937,3,338, - 169,0,936,938,3,298,149,0,937,936,1,0,0,0,937,938,1,0,0,0,938,940, - 1,0,0,0,939,941,3,310,155,0,940,939,1,0,0,0,940,941,1,0,0,0,941, - 1336,1,0,0,0,942,943,5,96,0,0,943,944,5,298,0,0,944,946,5,336,0, - 0,945,947,3,162,81,0,946,945,1,0,0,0,946,947,1,0,0,0,947,951,1,0, - 0,0,948,952,3,72,36,0,949,952,3,76,38,0,950,952,3,338,169,0,951, - 948,1,0,0,0,951,949,1,0,0,0,951,950,1,0,0,0,952,1336,1,0,0,0,953, - 955,5,106,0,0,954,956,7,6,0,0,955,954,1,0,0,0,955,956,1,0,0,0,956, - 957,1,0,0,0,957,1336,3,4,2,0,958,959,5,273,0,0,959,962,5,294,0,0, - 960,961,7,3,0,0,961,963,3,66,33,0,962,960,1,0,0,0,962,963,1,0,0, - 0,963,968,1,0,0,0,964,966,5,163,0,0,965,964,1,0,0,0,965,966,1,0, - 0,0,966,967,1,0,0,0,967,969,3,358,179,0,968,965,1,0,0,0,968,969, - 1,0,0,0,969,1336,1,0,0,0,970,971,5,273,0,0,971,972,5,293,0,0,972, - 975,5,108,0,0,973,974,7,3,0,0,974,976,3,66,33,0,975,973,1,0,0,0, - 975,976,1,0,0,0,976,977,1,0,0,0,977,978,5,163,0,0,978,980,3,358, - 179,0,979,981,3,22,11,0,980,979,1,0,0,0,980,981,1,0,0,0,981,1336, - 1,0,0,0,982,983,5,273,0,0,983,984,5,297,0,0,984,989,3,72,36,0,985, - 986,5,2,0,0,986,987,3,46,23,0,987,988,5,3,0,0,988,990,1,0,0,0,989, - 985,1,0,0,0,989,990,1,0,0,0,990,1336,1,0,0,0,991,992,5,273,0,0,992, - 993,5,50,0,0,993,994,7,3,0,0,994,997,3,72,36,0,995,996,7,3,0,0,996, - 998,3,66,33,0,997,995,1,0,0,0,997,998,1,0,0,0,998,1336,1,0,0,0,999, - 1000,5,273,0,0,1000,1003,5,339,0,0,1001,1002,7,3,0,0,1002,1004,3, - 66,33,0,1003,1001,1,0,0,0,1003,1004,1,0,0,0,1004,1009,1,0,0,0,1005, - 1007,5,163,0,0,1006,1005,1,0,0,0,1006,1007,1,0,0,0,1007,1008,1,0, - 0,0,1008,1010,3,358,179,0,1009,1006,1,0,0,0,1009,1010,1,0,0,0,1010, - 1336,1,0,0,0,1011,1012,5,273,0,0,1012,1013,5,219,0,0,1013,1015,3, - 72,36,0,1014,1016,3,22,11,0,1015,1014,1,0,0,0,1015,1016,1,0,0,0, - 1016,1336,1,0,0,0,1017,1019,5,273,0,0,1018,1020,7,7,0,0,1019,1018, - 1,0,0,0,1019,1020,1,0,0,0,1020,1021,1,0,0,0,1021,1024,5,126,0,0, - 1022,1023,7,3,0,0,1023,1025,3,66,33,0,1024,1022,1,0,0,0,1024,1025, - 1,0,0,0,1025,1033,1,0,0,0,1026,1028,5,163,0,0,1027,1026,1,0,0,0, - 1027,1028,1,0,0,0,1028,1031,1,0,0,0,1029,1032,3,218,109,0,1030,1032, - 3,358,179,0,1031,1029,1,0,0,0,1031,1030,1,0,0,0,1032,1034,1,0,0, - 0,1033,1027,1,0,0,0,1033,1034,1,0,0,0,1034,1336,1,0,0,0,1035,1036, - 5,273,0,0,1036,1037,5,59,0,0,1037,1038,5,293,0,0,1038,1041,3,72, - 36,0,1039,1040,5,20,0,0,1040,1042,5,266,0,0,1041,1039,1,0,0,0,1041, - 1042,1,0,0,0,1042,1336,1,0,0,0,1043,1044,5,273,0,0,1044,1045,5,62, - 0,0,1045,1336,3,26,13,0,1046,1047,5,273,0,0,1047,1052,5,38,0,0,1048, - 1050,5,163,0,0,1049,1048,1,0,0,0,1049,1050,1,0,0,0,1050,1051,1,0, - 0,0,1051,1053,3,358,179,0,1052,1049,1,0,0,0,1052,1053,1,0,0,0,1053, - 1336,1,0,0,0,1054,1055,5,273,0,0,1055,1056,5,176,0,0,1056,1059,5, - 339,0,0,1057,1058,7,3,0,0,1058,1060,3,66,33,0,1059,1057,1,0,0,0, - 1059,1060,1,0,0,0,1060,1065,1,0,0,0,1061,1063,5,163,0,0,1062,1061, - 1,0,0,0,1062,1063,1,0,0,0,1063,1064,1,0,0,0,1064,1066,3,358,179, - 0,1065,1062,1,0,0,0,1065,1066,1,0,0,0,1066,1336,1,0,0,0,1067,1068, - 5,273,0,0,1068,1069,5,59,0,0,1069,1070,5,176,0,0,1070,1071,5,338, - 0,0,1071,1074,3,76,38,0,1072,1073,5,20,0,0,1073,1075,5,266,0,0,1074, - 1072,1,0,0,0,1074,1075,1,0,0,0,1075,1336,1,0,0,0,1076,1077,7,8,0, - 0,1077,1079,5,125,0,0,1078,1080,5,108,0,0,1079,1078,1,0,0,0,1079, - 1080,1,0,0,0,1080,1081,1,0,0,0,1081,1336,3,28,14,0,1082,1083,7,8, - 0,0,1083,1085,5,72,0,0,1084,1086,5,108,0,0,1085,1084,1,0,0,0,1085, - 1086,1,0,0,0,1086,1087,1,0,0,0,1087,1336,3,66,33,0,1088,1090,7,8, - 0,0,1089,1091,5,293,0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0,1091, - 1093,1,0,0,0,1092,1094,7,9,0,0,1093,1092,1,0,0,0,1093,1094,1,0,0, - 0,1094,1095,1,0,0,0,1095,1097,3,72,36,0,1096,1098,3,22,11,0,1097, - 1096,1,0,0,0,1097,1098,1,0,0,0,1098,1100,1,0,0,0,1099,1101,3,30, - 15,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1336,1,0,0,0,1102, - 1104,7,8,0,0,1103,1105,5,232,0,0,1104,1103,1,0,0,0,1104,1105,1,0, - 0,0,1105,1106,1,0,0,0,1106,1336,3,16,8,0,1107,1108,5,51,0,0,1108, - 1114,5,203,0,0,1109,1110,3,26,13,0,1110,1111,3,66,33,0,1111,1115, - 1,0,0,0,1112,1113,5,293,0,0,1113,1115,3,72,36,0,1114,1109,1,0,0, - 0,1114,1112,1,0,0,0,1115,1116,1,0,0,0,1116,1119,5,153,0,0,1117,1120, - 3,358,179,0,1118,1120,5,198,0,0,1119,1117,1,0,0,0,1119,1118,1,0, - 0,0,1120,1336,1,0,0,0,1121,1122,5,240,0,0,1122,1123,5,293,0,0,1123, - 1336,3,72,36,0,1124,1125,5,240,0,0,1125,1126,5,125,0,0,1126,1336, - 3,338,169,0,1127,1135,5,240,0,0,1128,1136,3,358,179,0,1129,1131, - 9,0,0,0,1130,1129,1,0,0,0,1131,1134,1,0,0,0,1132,1133,1,0,0,0,1132, - 1130,1,0,0,0,1133,1136,1,0,0,0,1134,1132,1,0,0,0,1135,1128,1,0,0, - 0,1135,1132,1,0,0,0,1136,1336,1,0,0,0,1137,1138,5,240,0,0,1138,1139, - 5,176,0,0,1139,1140,5,338,0,0,1140,1336,3,76,38,0,1141,1143,5,33, - 0,0,1142,1144,5,159,0,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144, - 1145,1,0,0,0,1145,1146,5,293,0,0,1146,1149,3,72,36,0,1147,1148,5, - 207,0,0,1148,1150,3,42,21,0,1149,1147,1,0,0,0,1149,1150,1,0,0,0, - 1150,1155,1,0,0,0,1151,1153,5,20,0,0,1152,1151,1,0,0,0,1152,1153, - 1,0,0,0,1153,1154,1,0,0,0,1154,1156,3,16,8,0,1155,1152,1,0,0,0,1155, - 1156,1,0,0,0,1156,1336,1,0,0,0,1157,1158,5,322,0,0,1158,1160,5,293, - 0,0,1159,1161,3,162,81,0,1160,1159,1,0,0,0,1160,1161,1,0,0,0,1161, - 1162,1,0,0,0,1162,1336,3,72,36,0,1163,1164,5,43,0,0,1164,1336,5, - 33,0,0,1165,1166,5,168,0,0,1166,1168,5,70,0,0,1167,1169,5,169,0, - 0,1168,1167,1,0,0,0,1168,1169,1,0,0,0,1169,1170,1,0,0,0,1170,1171, - 5,145,0,0,1171,1173,3,358,179,0,1172,1174,5,216,0,0,1173,1172,1, - 0,0,0,1173,1174,1,0,0,0,1174,1175,1,0,0,0,1175,1176,5,152,0,0,1176, - 1177,5,293,0,0,1177,1179,3,72,36,0,1178,1180,3,22,11,0,1179,1178, - 1,0,0,0,1179,1180,1,0,0,0,1180,1336,1,0,0,0,1181,1182,5,317,0,0, - 1182,1183,5,293,0,0,1183,1185,3,72,36,0,1184,1186,3,22,11,0,1185, - 1184,1,0,0,0,1185,1186,1,0,0,0,1186,1336,1,0,0,0,1187,1189,5,188, - 0,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1190,1,0,0,0,1190,1191, - 5,242,0,0,1191,1192,5,293,0,0,1192,1195,3,72,36,0,1193,1194,7,10, - 0,0,1194,1196,5,219,0,0,1195,1193,1,0,0,0,1195,1196,1,0,0,0,1196, - 1336,1,0,0,0,1197,1198,7,11,0,0,1198,1202,3,348,174,0,1199,1201, - 9,0,0,0,1200,1199,1,0,0,0,1201,1204,1,0,0,0,1202,1203,1,0,0,0,1202, - 1200,1,0,0,0,1203,1336,1,0,0,0,1204,1202,1,0,0,0,1205,1206,5,269, - 0,0,1206,1210,5,253,0,0,1207,1209,9,0,0,0,1208,1207,1,0,0,0,1209, - 1212,1,0,0,0,1210,1211,1,0,0,0,1210,1208,1,0,0,0,1211,1336,1,0,0, - 0,1212,1210,1,0,0,0,1213,1214,5,269,0,0,1214,1215,5,301,0,0,1215, - 1216,5,350,0,0,1216,1336,3,278,139,0,1217,1218,5,269,0,0,1218,1219, - 5,301,0,0,1219,1222,5,350,0,0,1220,1223,3,358,179,0,1221,1223,5, - 169,0,0,1222,1220,1,0,0,0,1222,1221,1,0,0,0,1223,1336,1,0,0,0,1224, - 1225,5,269,0,0,1225,1226,5,301,0,0,1226,1230,5,350,0,0,1227,1229, - 9,0,0,0,1228,1227,1,0,0,0,1229,1232,1,0,0,0,1230,1231,1,0,0,0,1230, - 1228,1,0,0,0,1231,1336,1,0,0,0,1232,1230,1,0,0,0,1233,1234,5,269, - 0,0,1234,1235,7,12,0,0,1235,1336,3,120,60,0,1236,1237,5,269,0,0, - 1237,1238,7,12,0,0,1238,1239,5,2,0,0,1239,1240,3,216,108,0,1240, - 1241,5,3,0,0,1241,1242,5,352,0,0,1242,1243,5,2,0,0,1243,1244,3,16, - 8,0,1244,1245,5,3,0,0,1245,1336,1,0,0,0,1246,1247,5,269,0,0,1247, - 1248,3,352,176,0,1248,1249,5,352,0,0,1249,1250,5,389,0,0,1250,1336, - 1,0,0,0,1251,1252,5,269,0,0,1252,1260,3,352,176,0,1253,1257,5,352, - 0,0,1254,1256,9,0,0,0,1255,1254,1,0,0,0,1256,1259,1,0,0,0,1257,1258, - 1,0,0,0,1257,1255,1,0,0,0,1258,1261,1,0,0,0,1259,1257,1,0,0,0,1260, - 1253,1,0,0,0,1260,1261,1,0,0,0,1261,1336,1,0,0,0,1262,1266,5,269, - 0,0,1263,1265,9,0,0,0,1264,1263,1,0,0,0,1265,1268,1,0,0,0,1266,1267, - 1,0,0,0,1266,1264,1,0,0,0,1267,1269,1,0,0,0,1268,1266,1,0,0,0,1269, - 1270,5,352,0,0,1270,1336,5,389,0,0,1271,1275,5,269,0,0,1272,1274, - 9,0,0,0,1273,1272,1,0,0,0,1274,1277,1,0,0,0,1275,1276,1,0,0,0,1275, - 1273,1,0,0,0,1276,1336,1,0,0,0,1277,1275,1,0,0,0,1278,1279,5,245, - 0,0,1279,1336,3,352,176,0,1280,1284,5,245,0,0,1281,1283,9,0,0,0, - 1282,1281,1,0,0,0,1283,1286,1,0,0,0,1284,1285,1,0,0,0,1284,1282, - 1,0,0,0,1285,1336,1,0,0,0,1286,1284,1,0,0,0,1287,1288,5,59,0,0,1288, - 1290,5,142,0,0,1289,1291,3,160,80,0,1290,1289,1,0,0,0,1290,1291, - 1,0,0,0,1291,1292,1,0,0,0,1292,1293,3,348,174,0,1293,1295,5,203, - 0,0,1294,1296,5,293,0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296, - 1297,1,0,0,0,1297,1300,3,72,36,0,1298,1299,5,332,0,0,1299,1301,3, - 348,174,0,1300,1298,1,0,0,0,1300,1301,1,0,0,0,1301,1302,1,0,0,0, - 1302,1303,5,2,0,0,1303,1304,3,220,110,0,1304,1307,5,3,0,0,1305,1306, - 5,207,0,0,1306,1308,3,42,21,0,1307,1305,1,0,0,0,1307,1308,1,0,0, - 0,1308,1336,1,0,0,0,1309,1310,5,96,0,0,1310,1312,5,142,0,0,1311, - 1313,3,162,81,0,1312,1311,1,0,0,0,1312,1313,1,0,0,0,1313,1314,1, - 0,0,0,1314,1315,3,348,174,0,1315,1317,5,203,0,0,1316,1318,5,293, - 0,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1319,1,0,0,0,1319,1320, - 3,72,36,0,1320,1336,1,0,0,0,1321,1322,5,205,0,0,1322,1324,3,72,36, - 0,1323,1325,3,124,62,0,1324,1323,1,0,0,0,1324,1325,1,0,0,0,1325, - 1326,1,0,0,0,1326,1327,3,328,164,0,1327,1336,1,0,0,0,1328,1332,3, - 6,3,0,1329,1331,9,0,0,0,1330,1329,1,0,0,0,1331,1334,1,0,0,0,1332, - 1333,1,0,0,0,1332,1330,1,0,0,0,1333,1336,1,0,0,0,1334,1332,1,0,0, - 0,1335,378,1,0,0,0,1335,380,1,0,0,0,1335,383,1,0,0,0,1335,388,1, - 0,0,0,1335,394,1,0,0,0,1335,412,1,0,0,0,1335,419,1,0,0,0,1335,426, - 1,0,0,0,1335,435,1,0,0,0,1335,447,1,0,0,0,1335,475,1,0,0,0,1335, - 498,1,0,0,0,1335,519,1,0,0,0,1335,536,1,0,0,0,1335,547,1,0,0,0,1335, - 554,1,0,0,0,1335,563,1,0,0,0,1335,572,1,0,0,0,1335,582,1,0,0,0,1335, - 594,1,0,0,0,1335,605,1,0,0,0,1335,616,1,0,0,0,1335,630,1,0,0,0,1335, - 641,1,0,0,0,1335,656,1,0,0,0,1335,668,1,0,0,0,1335,682,1,0,0,0,1335, - 692,1,0,0,0,1335,708,1,0,0,0,1335,716,1,0,0,0,1335,738,1,0,0,0,1335, - 748,1,0,0,0,1335,754,1,0,0,0,1335,761,1,0,0,0,1335,769,1,0,0,0,1335, - 778,1,0,0,0,1335,784,1,0,0,0,1335,791,1,0,0,0,1335,825,1,0,0,0,1335, - 847,1,0,0,0,1335,855,1,0,0,0,1335,885,1,0,0,0,1335,918,1,0,0,0,1335, - 927,1,0,0,0,1335,942,1,0,0,0,1335,953,1,0,0,0,1335,958,1,0,0,0,1335, - 970,1,0,0,0,1335,982,1,0,0,0,1335,991,1,0,0,0,1335,999,1,0,0,0,1335, - 1011,1,0,0,0,1335,1017,1,0,0,0,1335,1035,1,0,0,0,1335,1043,1,0,0, - 0,1335,1046,1,0,0,0,1335,1054,1,0,0,0,1335,1067,1,0,0,0,1335,1076, - 1,0,0,0,1335,1082,1,0,0,0,1335,1088,1,0,0,0,1335,1102,1,0,0,0,1335, - 1107,1,0,0,0,1335,1121,1,0,0,0,1335,1124,1,0,0,0,1335,1127,1,0,0, - 0,1335,1137,1,0,0,0,1335,1141,1,0,0,0,1335,1157,1,0,0,0,1335,1163, - 1,0,0,0,1335,1165,1,0,0,0,1335,1181,1,0,0,0,1335,1188,1,0,0,0,1335, - 1197,1,0,0,0,1335,1205,1,0,0,0,1335,1213,1,0,0,0,1335,1217,1,0,0, - 0,1335,1224,1,0,0,0,1335,1233,1,0,0,0,1335,1236,1,0,0,0,1335,1246, - 1,0,0,0,1335,1251,1,0,0,0,1335,1262,1,0,0,0,1335,1271,1,0,0,0,1335, - 1278,1,0,0,0,1335,1280,1,0,0,0,1335,1287,1,0,0,0,1335,1309,1,0,0, - 0,1335,1321,1,0,0,0,1335,1328,1,0,0,0,1336,5,1,0,0,0,1337,1338,7, - 13,0,0,1338,1431,5,253,0,0,1339,1341,7,14,0,0,1340,1342,5,253,0, - 0,1341,1340,1,0,0,0,1341,1342,1,0,0,0,1342,1431,1,0,0,0,1343,1344, - 5,273,0,0,1344,1431,7,15,0,0,1345,1346,5,273,0,0,1346,1348,5,253, - 0,0,1347,1349,5,129,0,0,1348,1347,1,0,0,0,1348,1349,1,0,0,0,1349, - 1431,1,0,0,0,1350,1352,5,273,0,0,1351,1353,5,62,0,0,1352,1351,1, - 0,0,0,1352,1353,1,0,0,0,1353,1354,1,0,0,0,1354,1431,5,254,0,0,1355, - 1356,5,273,0,0,1356,1357,5,59,0,0,1357,1431,5,293,0,0,1358,1359, - 7,16,0,0,1359,1431,5,142,0,0,1360,1361,7,17,0,0,1361,1431,5,293, - 0,0,1362,1363,7,18,0,0,1363,1431,5,72,0,0,1364,1365,7,13,0,0,1365, - 1366,5,298,0,0,1366,1431,5,175,0,0,1367,1368,5,11,0,0,1368,1369, - 5,293,0,0,1369,1370,3,72,36,0,1370,1371,5,197,0,0,1371,1372,7,19, - 0,0,1372,1431,1,0,0,0,1373,1374,5,11,0,0,1374,1375,5,293,0,0,1375, - 1376,3,72,36,0,1376,1377,7,20,0,0,1377,1378,5,31,0,0,1378,1431,1, - 0,0,0,1379,1380,5,11,0,0,1380,1381,5,293,0,0,1381,1382,3,72,36,0, - 1382,1383,5,275,0,0,1383,1384,5,31,0,0,1384,1431,1,0,0,0,1385,1386, - 5,11,0,0,1386,1387,5,293,0,0,1387,1388,3,72,36,0,1388,1389,5,197, - 0,0,1389,1390,5,283,0,0,1390,1391,5,20,0,0,1391,1392,5,89,0,0,1392, - 1431,1,0,0,0,1393,1394,5,11,0,0,1394,1395,5,293,0,0,1395,1396,3, - 72,36,0,1396,1397,5,269,0,0,1397,1398,5,275,0,0,1398,1399,5,170, - 0,0,1399,1431,1,0,0,0,1400,1401,5,11,0,0,1401,1402,5,293,0,0,1402, - 1403,3,72,36,0,1403,1404,7,21,0,0,1404,1405,5,217,0,0,1405,1431, - 1,0,0,0,1406,1407,5,11,0,0,1407,1408,5,293,0,0,1408,1409,3,72,36, - 0,1409,1410,5,310,0,0,1410,1431,1,0,0,0,1411,1412,5,11,0,0,1412, - 1413,5,293,0,0,1413,1415,3,72,36,0,1414,1416,3,22,11,0,1415,1414, - 1,0,0,0,1415,1416,1,0,0,0,1416,1423,1,0,0,0,1417,1424,5,53,0,0,1418, - 1424,5,56,0,0,1419,1420,5,269,0,0,1420,1424,5,115,0,0,1421,1422, - 5,244,0,0,1422,1424,5,50,0,0,1423,1417,1,0,0,0,1423,1418,1,0,0,0, - 1423,1419,1,0,0,0,1423,1421,1,0,0,0,1424,1431,1,0,0,0,1425,1426, - 5,281,0,0,1426,1431,5,312,0,0,1427,1431,5,52,0,0,1428,1431,5,255, - 0,0,1429,1431,5,88,0,0,1430,1337,1,0,0,0,1430,1339,1,0,0,0,1430, - 1343,1,0,0,0,1430,1345,1,0,0,0,1430,1350,1,0,0,0,1430,1355,1,0,0, - 0,1430,1358,1,0,0,0,1430,1360,1,0,0,0,1430,1362,1,0,0,0,1430,1364, - 1,0,0,0,1430,1367,1,0,0,0,1430,1373,1,0,0,0,1430,1379,1,0,0,0,1430, - 1385,1,0,0,0,1430,1393,1,0,0,0,1430,1400,1,0,0,0,1430,1406,1,0,0, - 0,1430,1411,1,0,0,0,1430,1425,1,0,0,0,1430,1427,1,0,0,0,1430,1428, - 1,0,0,0,1430,1429,1,0,0,0,1431,7,1,0,0,0,1432,1433,5,45,0,0,1433, - 1434,5,31,0,0,1434,1438,3,180,90,0,1435,1436,5,279,0,0,1436,1437, - 5,31,0,0,1437,1439,3,184,92,0,1438,1435,1,0,0,0,1438,1439,1,0,0, - 0,1439,1440,1,0,0,0,1440,1441,5,152,0,0,1441,1442,5,382,0,0,1442, - 1443,5,30,0,0,1443,9,1,0,0,0,1444,1445,5,275,0,0,1445,1446,5,31, - 0,0,1446,1447,3,180,90,0,1447,1450,5,203,0,0,1448,1451,3,54,27,0, - 1449,1451,3,56,28,0,1450,1448,1,0,0,0,1450,1449,1,0,0,0,1451,1455, - 1,0,0,0,1452,1453,5,283,0,0,1453,1454,5,20,0,0,1454,1456,5,89,0, - 0,1455,1452,1,0,0,0,1455,1456,1,0,0,0,1456,11,1,0,0,0,1457,1458, - 5,170,0,0,1458,1459,3,358,179,0,1459,13,1,0,0,0,1460,1461,5,51,0, - 0,1461,1462,3,358,179,0,1462,15,1,0,0,0,1463,1465,3,32,16,0,1464, - 1463,1,0,0,0,1464,1465,1,0,0,0,1465,1466,1,0,0,0,1466,1467,3,96, - 48,0,1467,1468,3,88,44,0,1468,17,1,0,0,0,1469,1470,5,147,0,0,1470, - 1472,5,216,0,0,1471,1473,5,293,0,0,1472,1471,1,0,0,0,1472,1473,1, - 0,0,0,1473,1474,1,0,0,0,1474,1479,3,72,36,0,1475,1477,3,22,11,0, - 1476,1478,3,160,80,0,1477,1476,1,0,0,0,1477,1478,1,0,0,0,1478,1480, - 1,0,0,0,1479,1475,1,0,0,0,1479,1480,1,0,0,0,1480,1487,1,0,0,0,1481, - 1482,5,31,0,0,1482,1488,5,189,0,0,1483,1484,5,2,0,0,1484,1485,3, - 82,41,0,1485,1486,5,3,0,0,1486,1488,1,0,0,0,1487,1481,1,0,0,0,1487, - 1483,1,0,0,0,1487,1488,1,0,0,0,1488,1546,1,0,0,0,1489,1490,5,147, - 0,0,1490,1492,5,152,0,0,1491,1493,5,293,0,0,1492,1491,1,0,0,0,1492, - 1493,1,0,0,0,1493,1494,1,0,0,0,1494,1496,3,72,36,0,1495,1497,3,22, - 11,0,1496,1495,1,0,0,0,1496,1497,1,0,0,0,1497,1499,1,0,0,0,1498, - 1500,3,160,80,0,1499,1498,1,0,0,0,1499,1500,1,0,0,0,1500,1507,1, - 0,0,0,1501,1502,5,31,0,0,1502,1508,5,189,0,0,1503,1504,5,2,0,0,1504, - 1505,3,82,41,0,1505,1506,5,3,0,0,1506,1508,1,0,0,0,1507,1501,1,0, - 0,0,1507,1503,1,0,0,0,1507,1508,1,0,0,0,1508,1546,1,0,0,0,1509,1510, - 5,147,0,0,1510,1512,5,152,0,0,1511,1513,5,293,0,0,1512,1511,1,0, - 0,0,1512,1513,1,0,0,0,1513,1514,1,0,0,0,1514,1515,3,72,36,0,1515, - 1516,5,244,0,0,1516,1517,3,124,62,0,1517,1546,1,0,0,0,1518,1519, - 5,147,0,0,1519,1521,5,216,0,0,1520,1522,5,169,0,0,1521,1520,1,0, - 0,0,1521,1522,1,0,0,0,1522,1523,1,0,0,0,1523,1524,5,90,0,0,1524, - 1526,3,358,179,0,1525,1527,3,214,107,0,1526,1525,1,0,0,0,1526,1527, - 1,0,0,0,1527,1529,1,0,0,0,1528,1530,3,58,29,0,1529,1528,1,0,0,0, - 1529,1530,1,0,0,0,1530,1546,1,0,0,0,1531,1532,5,147,0,0,1532,1534, - 5,216,0,0,1533,1535,5,169,0,0,1534,1533,1,0,0,0,1534,1535,1,0,0, - 0,1535,1536,1,0,0,0,1536,1538,5,90,0,0,1537,1539,3,358,179,0,1538, - 1537,1,0,0,0,1538,1539,1,0,0,0,1539,1540,1,0,0,0,1540,1543,3,36, - 18,0,1541,1542,5,207,0,0,1542,1544,3,42,21,0,1543,1541,1,0,0,0,1543, - 1544,1,0,0,0,1544,1546,1,0,0,0,1545,1469,1,0,0,0,1545,1489,1,0,0, - 0,1545,1509,1,0,0,0,1545,1518,1,0,0,0,1545,1531,1,0,0,0,1546,19, - 1,0,0,0,1547,1550,3,22,11,0,1548,1549,5,170,0,0,1549,1551,3,358, - 179,0,1550,1548,1,0,0,0,1550,1551,1,0,0,0,1551,21,1,0,0,0,1552,1553, - 5,217,0,0,1553,1554,5,2,0,0,1554,1559,3,24,12,0,1555,1556,5,4,0, - 0,1556,1558,3,24,12,0,1557,1555,1,0,0,0,1558,1561,1,0,0,0,1559,1557, - 1,0,0,0,1559,1560,1,0,0,0,1560,1562,1,0,0,0,1561,1559,1,0,0,0,1562, - 1563,5,3,0,0,1563,23,1,0,0,0,1564,1567,3,348,174,0,1565,1566,5,352, - 0,0,1566,1568,3,268,134,0,1567,1565,1,0,0,0,1567,1568,1,0,0,0,1568, - 1574,1,0,0,0,1569,1570,3,348,174,0,1570,1571,5,352,0,0,1571,1572, - 5,82,0,0,1572,1574,1,0,0,0,1573,1564,1,0,0,0,1573,1569,1,0,0,0,1574, - 25,1,0,0,0,1575,1576,7,22,0,0,1576,27,1,0,0,0,1577,1583,3,86,43, - 0,1578,1583,3,358,179,0,1579,1583,3,270,135,0,1580,1583,3,272,136, - 0,1581,1583,3,274,137,0,1582,1577,1,0,0,0,1582,1578,1,0,0,0,1582, - 1579,1,0,0,0,1582,1580,1,0,0,0,1582,1581,1,0,0,0,1583,29,1,0,0,0, - 1584,1589,3,348,174,0,1585,1586,5,5,0,0,1586,1588,3,348,174,0,1587, - 1585,1,0,0,0,1588,1591,1,0,0,0,1589,1587,1,0,0,0,1589,1590,1,0,0, - 0,1590,31,1,0,0,0,1591,1589,1,0,0,0,1592,1593,5,346,0,0,1593,1598, - 3,34,17,0,1594,1595,5,4,0,0,1595,1597,3,34,17,0,1596,1594,1,0,0, - 0,1597,1600,1,0,0,0,1598,1596,1,0,0,0,1598,1599,1,0,0,0,1599,33, - 1,0,0,0,1600,1598,1,0,0,0,1601,1603,3,344,172,0,1602,1604,3,180, - 90,0,1603,1602,1,0,0,0,1603,1604,1,0,0,0,1604,1606,1,0,0,0,1605, - 1607,5,20,0,0,1606,1605,1,0,0,0,1606,1607,1,0,0,0,1607,1608,1,0, - 0,0,1608,1609,5,2,0,0,1609,1610,3,16,8,0,1610,1611,5,3,0,0,1611, - 35,1,0,0,0,1612,1613,5,332,0,0,1613,1614,3,218,109,0,1614,37,1,0, - 0,0,1615,1616,5,207,0,0,1616,1632,3,50,25,0,1617,1618,5,218,0,0, - 1618,1619,5,31,0,0,1619,1632,3,240,120,0,1620,1632,3,10,5,0,1621, - 1632,3,8,4,0,1622,1632,3,214,107,0,1623,1632,3,58,29,0,1624,1625, - 5,170,0,0,1625,1632,3,358,179,0,1626,1627,5,51,0,0,1627,1632,3,358, - 179,0,1628,1629,5,297,0,0,1629,1632,3,42,21,0,1630,1632,3,40,20, - 0,1631,1615,1,0,0,0,1631,1617,1,0,0,0,1631,1620,1,0,0,0,1631,1621, - 1,0,0,0,1631,1622,1,0,0,0,1631,1623,1,0,0,0,1631,1624,1,0,0,0,1631, - 1626,1,0,0,0,1631,1628,1,0,0,0,1631,1630,1,0,0,0,1632,1635,1,0,0, - 0,1633,1631,1,0,0,0,1633,1634,1,0,0,0,1634,39,1,0,0,0,1635,1633, - 1,0,0,0,1636,1637,5,162,0,0,1637,1638,5,382,0,0,1638,41,1,0,0,0, - 1639,1640,5,2,0,0,1640,1645,3,44,22,0,1641,1642,5,4,0,0,1642,1644, - 3,44,22,0,1643,1641,1,0,0,0,1644,1647,1,0,0,0,1645,1643,1,0,0,0, - 1645,1646,1,0,0,0,1646,1648,1,0,0,0,1647,1645,1,0,0,0,1648,1649, - 5,3,0,0,1649,43,1,0,0,0,1650,1655,3,46,23,0,1651,1653,5,352,0,0, - 1652,1651,1,0,0,0,1652,1653,1,0,0,0,1653,1654,1,0,0,0,1654,1656, - 3,48,24,0,1655,1652,1,0,0,0,1655,1656,1,0,0,0,1656,45,1,0,0,0,1657, - 1662,3,348,174,0,1658,1659,5,5,0,0,1659,1661,3,348,174,0,1660,1658, - 1,0,0,0,1661,1664,1,0,0,0,1662,1660,1,0,0,0,1662,1663,1,0,0,0,1663, - 1667,1,0,0,0,1664,1662,1,0,0,0,1665,1667,3,358,179,0,1666,1657,1, - 0,0,0,1666,1665,1,0,0,0,1667,47,1,0,0,0,1668,1673,5,382,0,0,1669, - 1673,5,384,0,0,1670,1673,3,276,138,0,1671,1673,3,358,179,0,1672, - 1668,1,0,0,0,1672,1669,1,0,0,0,1672,1670,1,0,0,0,1672,1671,1,0,0, - 0,1673,49,1,0,0,0,1674,1675,5,2,0,0,1675,1680,3,52,26,0,1676,1677, - 5,4,0,0,1677,1679,3,52,26,0,1678,1676,1,0,0,0,1679,1682,1,0,0,0, - 1680,1678,1,0,0,0,1680,1681,1,0,0,0,1681,1683,1,0,0,0,1682,1680, - 1,0,0,0,1683,1684,5,3,0,0,1684,51,1,0,0,0,1685,1690,3,46,23,0,1686, - 1688,5,352,0,0,1687,1686,1,0,0,0,1687,1688,1,0,0,0,1688,1689,1,0, - 0,0,1689,1691,3,248,124,0,1690,1687,1,0,0,0,1690,1691,1,0,0,0,1691, - 53,1,0,0,0,1692,1693,5,2,0,0,1693,1698,3,268,134,0,1694,1695,5,4, - 0,0,1695,1697,3,268,134,0,1696,1694,1,0,0,0,1697,1700,1,0,0,0,1698, - 1696,1,0,0,0,1698,1699,1,0,0,0,1699,1701,1,0,0,0,1700,1698,1,0,0, - 0,1701,1702,5,3,0,0,1702,55,1,0,0,0,1703,1704,5,2,0,0,1704,1709, - 3,54,27,0,1705,1706,5,4,0,0,1706,1708,3,54,27,0,1707,1705,1,0,0, - 0,1708,1711,1,0,0,0,1709,1707,1,0,0,0,1709,1710,1,0,0,0,1710,1712, - 1,0,0,0,1711,1709,1,0,0,0,1712,1713,5,3,0,0,1713,57,1,0,0,0,1714, - 1715,5,283,0,0,1715,1716,5,20,0,0,1716,1721,3,60,30,0,1717,1718, - 5,283,0,0,1718,1719,5,31,0,0,1719,1721,3,62,31,0,1720,1714,1,0,0, - 0,1720,1717,1,0,0,0,1721,59,1,0,0,0,1722,1723,5,146,0,0,1723,1724, - 3,358,179,0,1724,1725,5,212,0,0,1725,1726,3,358,179,0,1726,1729, - 1,0,0,0,1727,1729,3,348,174,0,1728,1722,1,0,0,0,1728,1727,1,0,0, - 0,1729,61,1,0,0,0,1730,1734,3,358,179,0,1731,1732,5,346,0,0,1732, - 1733,5,267,0,0,1733,1735,3,42,21,0,1734,1731,1,0,0,0,1734,1735,1, - 0,0,0,1735,63,1,0,0,0,1736,1737,3,18,9,0,1737,1738,3,16,8,0,1738, - 1795,1,0,0,0,1739,1743,3,132,66,0,1740,1741,3,18,9,0,1741,1742,3, - 102,51,0,1742,1744,1,0,0,0,1743,1740,1,0,0,0,1744,1745,1,0,0,0,1745, - 1743,1,0,0,0,1745,1746,1,0,0,0,1746,1795,1,0,0,0,1747,1748,5,84, - 0,0,1748,1749,5,123,0,0,1749,1750,3,72,36,0,1750,1752,3,212,106, - 0,1751,1753,3,124,62,0,1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753, - 1795,1,0,0,0,1754,1755,5,329,0,0,1755,1756,3,72,36,0,1756,1757,3, - 212,106,0,1757,1759,3,110,55,0,1758,1760,3,124,62,0,1759,1758,1, - 0,0,0,1759,1760,1,0,0,0,1760,1795,1,0,0,0,1761,1762,5,179,0,0,1762, - 1763,5,152,0,0,1763,1764,3,72,36,0,1764,1765,3,212,106,0,1765,1771, - 5,332,0,0,1766,1772,3,86,43,0,1767,1768,5,2,0,0,1768,1769,3,16,8, - 0,1769,1770,5,3,0,0,1770,1772,1,0,0,0,1771,1766,1,0,0,0,1771,1767, - 1,0,0,0,1772,1773,1,0,0,0,1773,1774,3,212,106,0,1774,1775,5,203, - 0,0,1775,1779,3,256,128,0,1776,1778,3,112,56,0,1777,1776,1,0,0,0, - 1778,1781,1,0,0,0,1779,1777,1,0,0,0,1779,1780,1,0,0,0,1780,1785, - 1,0,0,0,1781,1779,1,0,0,0,1782,1784,3,114,57,0,1783,1782,1,0,0,0, + 1,3,3,3,1422,8,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1430,8,3,1,3,1,3,1, + 3,1,3,1,3,3,3,1437,8,3,1,4,1,4,1,4,1,4,1,4,1,4,3,4,1445,8,4,1,4, + 1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,3,5,1457,8,5,1,5,1,5,1,5,3,5, + 1462,8,5,1,6,1,6,1,6,1,7,1,7,1,7,1,8,3,8,1471,8,8,1,8,1,8,1,8,1, + 9,1,9,1,9,3,9,1479,8,9,1,9,1,9,1,9,3,9,1484,8,9,3,9,1486,8,9,1,9, + 1,9,1,9,1,9,1,9,1,9,3,9,1494,8,9,1,9,1,9,1,9,3,9,1499,8,9,1,9,1, + 9,3,9,1503,8,9,1,9,3,9,1506,8,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1514, + 8,9,1,9,1,9,1,9,3,9,1519,8,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1528, + 8,9,1,9,1,9,1,9,3,9,1533,8,9,1,9,3,9,1536,8,9,1,9,1,9,1,9,3,9,1541, + 8,9,1,9,1,9,3,9,1545,8,9,1,9,1,9,1,9,3,9,1550,8,9,3,9,1552,8,9,1, + 10,1,10,1,10,3,10,1557,8,10,1,11,1,11,1,11,1,11,1,11,5,11,1564,8, + 11,10,11,12,11,1567,9,11,1,11,1,11,1,12,1,12,1,12,3,12,1574,8,12, + 1,12,1,12,1,12,1,12,3,12,1580,8,12,1,13,1,13,1,14,1,14,1,14,1,14, + 1,14,3,14,1589,8,14,1,15,1,15,1,15,5,15,1594,8,15,10,15,12,15,1597, + 9,15,1,16,1,16,1,16,1,16,5,16,1603,8,16,10,16,12,16,1606,9,16,1, + 17,1,17,3,17,1610,8,17,1,17,3,17,1613,8,17,1,17,1,17,1,17,1,17,1, + 18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, + 19,1,19,1,19,1,19,1,19,1,19,5,19,1638,8,19,10,19,12,19,1641,9,19, + 1,20,1,20,1,20,1,21,1,21,1,21,1,21,5,21,1650,8,21,10,21,12,21,1653, + 9,21,1,21,1,21,1,22,1,22,3,22,1659,8,22,1,22,3,22,1662,8,22,1,23, + 1,23,1,23,5,23,1667,8,23,10,23,12,23,1670,9,23,1,23,3,23,1673,8, + 23,1,24,1,24,1,24,1,24,3,24,1679,8,24,1,25,1,25,1,25,1,25,5,25,1685, + 8,25,10,25,12,25,1688,9,25,1,25,1,25,1,26,1,26,3,26,1694,8,26,1, + 26,3,26,1697,8,26,1,27,1,27,1,27,1,27,5,27,1703,8,27,10,27,12,27, + 1706,9,27,1,27,1,27,1,28,1,28,1,28,1,28,5,28,1714,8,28,10,28,12, + 28,1717,9,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,3,29,1727,8, + 29,1,30,1,30,1,30,1,30,1,30,1,30,3,30,1735,8,30,1,31,1,31,1,31,1, + 31,3,31,1741,8,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,4,32,1750,8, + 32,11,32,12,32,1751,1,32,1,32,1,32,1,32,1,32,3,32,1759,8,32,1,32, + 1,32,1,32,1,32,1,32,3,32,1766,8,32,1,32,1,32,1,32,1,32,1,32,1,32, + 1,32,1,32,1,32,1,32,3,32,1778,8,32,1,32,1,32,1,32,1,32,5,32,1784, + 8,32,10,32,12,32,1787,9,32,1,32,5,32,1790,8,32,10,32,12,32,1793, + 9,32,1,32,5,32,1796,8,32,10,32,12,32,1799,9,32,3,32,1801,8,32,1, + 33,1,33,1,34,1,34,1,35,1,35,1,36,1,36,1,37,1,37,1,38,1,38,1,39,1, + 39,1,40,1,40,1,40,3,40,1820,8,40,1,41,1,41,1,42,1,42,1,42,3,42,1827, + 8,42,1,43,1,43,1,43,5,43,1832,8,43,10,43,12,43,1835,9,43,1,44,1, + 44,1,45,1,45,1,45,1,45,1,45,1,45,3,45,1845,8,45,1,46,1,46,1,46,3, + 46,1850,8,46,1,46,1,46,1,46,3,46,1855,8,46,1,46,1,46,1,46,3,46,1860, + 8,46,1,46,1,46,1,46,3,46,1865,8,46,1,46,3,46,1868,8,46,1,46,3,46, + 1871,8,46,1,46,1,46,3,46,1875,8,46,1,47,1,47,1,47,3,47,1880,8,47, + 1,48,1,48,1,48,5,48,1885,8,48,10,48,12,48,1888,9,48,1,49,1,49,1, + 49,5,49,1893,8,49,10,49,12,49,1896,9,49,1,50,1,50,1,50,1,50,1,50, + 1,50,3,50,1904,8,50,1,50,1,50,1,50,1,50,3,50,1910,8,50,1,50,1,50, + 1,50,1,50,3,50,1916,8,50,1,50,5,50,1919,8,50,10,50,12,50,1922,9, + 50,1,51,1,51,1,51,4,51,1927,8,51,11,51,12,51,1928,1,51,1,51,1,51, + 1,51,1,51,1,51,5,51,1937,8,51,10,51,12,51,1940,9,51,1,51,1,51,1, + 51,1,51,1,51,1,51,3,51,1948,8,51,1,52,1,52,3,52,1952,8,52,1,52,3, + 52,1955,8,52,1,52,1,52,3,52,1959,8,52,1,53,1,53,3,53,1963,8,53,1, + 53,1,53,1,53,1,53,5,53,1969,8,53,10,53,12,53,1972,9,53,1,53,3,53, + 1975,8,53,1,53,3,53,1978,8,53,1,53,3,53,1981,8,53,1,53,3,53,1984, + 8,53,1,53,1,53,3,53,1988,8,53,1,54,1,54,3,54,1992,8,54,1,54,5,54, + 1995,8,54,10,54,12,54,1998,9,54,1,54,3,54,2001,8,54,1,54,3,54,2004, + 8,54,1,54,3,54,2007,8,54,1,54,3,54,2010,8,54,1,54,1,54,3,54,2014, + 8,54,1,54,5,54,2017,8,54,10,54,12,54,2020,9,54,1,54,3,54,2023,8, + 54,1,54,3,54,2026,8,54,1,54,3,54,2029,8,54,1,54,3,54,2032,8,54,3, + 54,2034,8,54,1,55,1,55,1,55,1,55,3,55,2040,8,55,1,55,1,55,1,55,1, + 55,1,55,3,55,2047,8,55,1,55,1,55,1,55,3,55,2052,8,55,1,55,3,55,2055, + 8,55,1,55,3,55,2058,8,55,1,55,1,55,3,55,2062,8,55,1,55,1,55,1,55, + 1,55,1,55,1,55,1,55,1,55,3,55,2072,8,55,1,55,1,55,3,55,2076,8,55, + 3,55,2078,8,55,1,55,3,55,2081,8,55,1,55,1,55,3,55,2085,8,55,1,56, + 1,56,5,56,2089,8,56,10,56,12,56,2092,9,56,1,56,3,56,2095,8,56,1, + 56,1,56,1,57,1,57,1,57,1,58,1,58,1,58,1,58,3,58,2106,8,58,1,58,1, + 58,1,58,1,58,1,58,1,58,3,58,2114,8,58,3,58,2116,8,58,1,59,1,59,1, + 59,1,59,1,59,3,59,2123,8,59,1,59,1,59,3,59,2127,8,59,1,59,1,59,1, + 59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2139,8,60,1,60,1,60,1, + 60,1,60,1,60,3,60,2146,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1, + 61,1,61,1,61,1,61,5,61,2159,8,61,10,61,12,61,2162,9,61,1,61,1,61, + 3,61,2166,8,61,1,62,1,62,1,62,5,62,2171,8,62,10,62,12,62,2174,9, + 62,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1,65,1,65,1,65,1,66,1,66,1, + 66,3,66,2189,8,66,1,66,5,66,2192,8,66,10,66,12,66,2195,9,66,1,66, + 1,66,1,67,1,67,1,67,1,67,1,67,1,67,5,67,2205,8,67,10,67,12,67,2208, + 9,67,1,67,1,67,3,67,2212,8,67,1,68,1,68,1,68,1,68,5,68,2218,8,68, + 10,68,12,68,2221,9,68,1,68,5,68,2224,8,68,10,68,12,68,2227,9,68, + 1,68,3,68,2230,8,68,1,68,3,68,2233,8,68,1,69,3,69,2236,8,69,1,69, + 1,69,1,69,1,69,1,69,3,69,2243,8,69,1,69,3,69,2246,8,69,1,69,1,69, + 1,69,1,69,3,69,2252,8,69,1,70,1,70,1,70,1,70,1,70,5,70,2259,8,70, + 10,70,12,70,2262,9,70,1,70,1,70,1,70,1,70,1,70,5,70,2269,8,70,10, + 70,12,70,2272,9,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70, + 1,70,5,70,2284,8,70,10,70,12,70,2287,9,70,1,70,1,70,3,70,2291,8, + 70,3,70,2293,8,70,1,71,1,71,1,71,3,71,2298,8,71,1,72,1,72,1,72,1, + 72,1,72,5,72,2305,8,72,10,72,12,72,2308,9,72,1,72,1,72,1,72,1,72, + 1,72,1,72,1,72,3,72,2317,8,72,1,72,1,72,1,72,3,72,2322,8,72,5,72, + 2324,8,72,10,72,12,72,2327,9,72,1,72,1,72,3,72,2331,8,72,1,73,1, + 73,1,73,1,73,1,73,3,73,2338,8,73,1,73,1,73,1,73,3,73,2343,8,73,5, + 73,2345,8,73,10,73,12,73,2348,9,73,3,73,2350,8,73,1,73,3,73,2353, + 8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2365, + 8,74,10,74,12,74,2368,9,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1, + 75,5,75,2378,8,75,10,75,12,75,2381,9,75,1,75,1,75,3,75,2385,8,75, + 1,76,1,76,3,76,2389,8,76,1,76,3,76,2392,8,76,1,77,1,77,1,77,3,77, + 2397,8,77,1,77,1,77,1,77,3,77,2402,8,77,1,77,1,77,3,77,2406,8,77, + 1,77,3,77,2409,8,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78, + 2419,8,78,10,78,12,78,2422,9,78,1,78,1,78,1,79,1,79,1,79,1,79,5, + 79,2430,8,79,10,79,12,79,2433,9,79,1,79,1,79,1,79,1,79,1,79,1,79, + 1,79,1,79,5,79,2443,8,79,10,79,12,79,2446,9,79,1,79,1,79,1,80,1, + 80,1,80,1,80,5,80,2454,8,80,10,80,12,80,2457,9,80,1,80,1,80,3,80, + 2461,8,80,1,80,3,80,2464,8,80,1,81,1,81,3,81,2468,8,81,1,81,3,81, + 2471,8,81,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,84,1,84,1,84,3,84, + 2483,8,84,1,84,1,84,1,84,1,84,1,84,5,84,2490,8,84,10,84,12,84,2493, + 9,84,3,84,2495,8,84,1,84,1,84,1,84,3,84,2500,8,84,1,84,1,84,1,84, + 5,84,2505,8,84,10,84,12,84,2508,9,84,3,84,2510,8,84,1,85,1,85,1, + 86,1,86,3,86,2516,8,86,1,86,1,86,1,86,1,86,5,86,2522,8,86,10,86, + 12,86,2525,9,86,3,86,2527,8,86,1,87,1,87,1,87,3,87,2532,8,87,1,87, + 1,87,3,87,2536,8,87,1,87,1,87,1,87,1,87,3,87,2542,8,87,1,87,1,87, + 3,87,2546,8,87,1,88,3,88,2549,8,88,1,88,1,88,1,88,3,88,2554,8,88, + 1,88,3,88,2557,8,88,1,88,1,88,1,88,3,88,2562,8,88,3,88,2564,8,88, + 1,89,1,89,1,89,1,89,1,89,3,89,2571,8,89,3,89,2573,8,89,1,89,1,89, + 3,89,2577,8,89,1,90,1,90,1,90,3,90,2582,8,90,1,90,1,90,1,90,1,90, + 1,90,3,90,2589,8,90,1,91,3,91,2592,8,91,1,91,1,91,1,91,1,91,1,91, + 1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,3,91,2610, + 8,91,3,91,2612,8,91,1,91,3,91,2615,8,91,1,92,1,92,1,92,1,92,1,93, + 1,93,1,93,5,93,2624,8,93,10,93,12,93,2627,9,93,1,94,1,94,1,94,1, + 94,5,94,2633,8,94,10,94,12,94,2636,9,94,1,94,1,94,1,95,1,95,3,95, + 2642,8,95,1,96,1,96,1,96,1,96,5,96,2648,8,96,10,96,12,96,2651,9, + 96,1,96,1,96,1,97,1,97,1,97,3,97,2658,8,97,1,98,1,98,1,98,3,98,2663, + 8,98,1,98,3,98,2666,8,98,1,98,3,98,2669,8,98,1,98,1,98,1,98,1,98, + 3,98,2675,8,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,2683,8,98,1,98, + 1,98,1,98,1,98,1,98,1,98,3,98,2691,8,98,1,99,1,99,1,99,1,99,1,100, + 1,100,1,100,1,100,5,100,2701,8,100,10,100,12,100,2704,9,100,1,101, + 1,101,1,101,3,101,2709,8,101,1,101,1,101,1,101,1,101,1,101,3,101, + 2716,8,101,1,101,1,101,1,101,1,101,1,101,3,101,2723,8,101,3,101, + 2725,8,101,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102, + 5,102,2736,8,102,10,102,12,102,2739,9,102,1,102,1,102,1,102,3,102, + 2744,8,102,3,102,2746,8,102,1,102,1,102,1,102,1,102,1,102,1,102, + 1,102,3,102,2755,8,102,3,102,2757,8,102,1,103,1,103,1,103,1,103, + 1,104,1,104,3,104,2765,8,104,1,105,1,105,3,105,2769,8,105,1,106, + 1,106,1,106,1,107,1,107,1,107,1,107,1,107,5,107,2779,8,107,10,107, + 12,107,2782,9,107,3,107,2784,8,107,1,107,1,107,1,108,3,108,2789, + 8,108,1,108,1,108,3,108,2793,8,108,3,108,2795,8,108,1,109,1,109, + 1,109,1,109,1,109,1,109,1,109,3,109,2804,8,109,1,109,1,109,1,109, + 1,109,1,109,1,109,1,109,1,109,1,109,1,109,3,109,2816,8,109,3,109, + 2818,8,109,1,109,1,109,1,109,1,109,1,109,3,109,2825,8,109,1,109, + 1,109,1,109,1,109,1,109,3,109,2832,8,109,1,109,1,109,1,109,1,109, + 3,109,2838,8,109,1,109,1,109,1,109,1,109,3,109,2844,8,109,3,109, + 2846,8,109,1,110,1,110,1,110,5,110,2851,8,110,10,110,12,110,2854, + 9,110,1,111,1,111,1,111,5,111,2859,8,111,10,111,12,111,2862,9,111, + 1,112,1,112,1,112,1,112,1,112,1,112,3,112,2870,8,112,1,113,1,113, + 1,113,5,113,2875,8,113,10,113,12,113,2878,9,113,1,114,1,114,1,114, + 3,114,2883,8,114,1,115,1,115,1,115,3,115,2888,8,115,1,115,1,115, + 1,116,1,116,1,116,3,116,2895,8,116,1,116,1,116,1,117,1,117,1,118, + 1,118,1,119,1,119,1,119,5,119,2906,8,119,10,119,12,119,2909,9,119, + 1,119,1,119,1,120,1,120,1,120,3,120,2916,8,120,1,120,3,120,2919, + 8,120,1,120,1,120,3,120,2923,8,120,3,120,2925,8,120,1,121,1,121, + 1,121,5,121,2930,8,121,10,121,12,121,2933,9,121,1,122,1,122,1,123, + 1,123,1,123,1,123,5,123,2941,8,123,10,123,12,123,2944,9,123,1,123, + 1,123,1,124,1,124,3,124,2950,8,124,1,125,1,125,1,125,1,125,1,125, + 1,125,5,125,2958,8,125,10,125,12,125,2961,9,125,1,125,1,125,3,125, + 2965,8,125,1,126,1,126,3,126,2969,8,126,1,127,1,127,1,128,1,128, + 1,128,1,128,1,129,1,129,3,129,2979,8,129,1,130,1,130,1,130,5,130, + 2984,8,130,10,130,12,130,2987,9,130,1,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,3,131,2999,8,131,3,131,3001,8,131, + 1,131,1,131,1,131,1,131,1,131,1,131,5,131,3009,8,131,10,131,12,131, + 3012,9,131,1,132,3,132,3015,8,132,1,132,1,132,1,132,1,132,1,132, + 1,132,3,132,3023,8,132,1,132,1,132,1,132,1,132,1,132,5,132,3030, + 8,132,10,132,12,132,3033,9,132,1,132,1,132,1,132,3,132,3038,8,132, + 1,132,1,132,1,132,1,132,1,132,1,132,3,132,3046,8,132,1,132,1,132, + 1,132,3,132,3051,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,5,132,3061,8,132,10,132,12,132,3064,9,132,1,132,1,132,3,132, + 3068,8,132,1,132,3,132,3071,8,132,1,132,1,132,1,132,1,132,3,132, + 3077,8,132,1,132,1,132,3,132,3081,8,132,1,132,1,132,1,132,3,132, + 3086,8,132,1,132,1,132,1,132,3,132,3091,8,132,1,132,1,132,1,132, + 3,132,3096,8,132,1,133,1,133,1,133,1,133,3,133,3102,8,133,1,133, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,3123,8,133,10,133, + 12,133,3126,9,133,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,135, + 3,135,3136,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,3,135,3148,8,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,4,135,3158,8,135,11,135,12,135,3159,1,135,1,135,3,135, + 3164,8,135,1,135,1,135,1,135,1,135,1,135,4,135,3171,8,135,11,135, + 12,135,3172,1,135,1,135,3,135,3177,8,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,5,135, + 3193,8,135,10,135,12,135,3196,9,135,3,135,3198,8,135,1,135,1,135, + 1,135,1,135,1,135,1,135,3,135,3206,8,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,3,135,3215,8,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,3,135,3224,8,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,4,135,3245,8,135,11,135,12,135,3246,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 3,135,3263,8,135,1,135,1,135,1,135,5,135,3268,8,135,10,135,12,135, + 3271,9,135,3,135,3273,8,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,3,135,3282,8,135,1,135,1,135,3,135,3286,8,135,1,135,1,135, + 3,135,3290,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 4,135,3300,8,135,11,135,12,135,3301,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,3327,8,135,1,135, + 1,135,1,135,1,135,1,135,3,135,3334,8,135,1,135,3,135,3337,8,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,3,135,3352,8,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,3,135,3373,8,135,1,135,1,135,3,135,3377,8,135,3,135, + 3379,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,5,135, + 3389,8,135,10,135,12,135,3392,9,135,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,3,136,3401,8,136,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,4,137,3414,8,137,11,137,12,137,3415, + 3,137,3418,8,137,1,138,1,138,1,139,1,139,1,140,1,140,1,141,1,141, + 1,142,1,142,1,142,3,142,3431,8,142,1,143,1,143,3,143,3435,8,143, + 1,144,1,144,1,144,4,144,3440,8,144,11,144,12,144,3441,1,145,1,145, + 1,145,3,145,3447,8,145,1,146,1,146,1,146,1,146,1,146,1,147,3,147, + 3455,8,147,1,147,1,147,1,147,3,147,3460,8,147,1,148,1,148,1,149, + 1,149,1,150,1,150,1,150,3,150,3469,8,150,1,151,1,151,1,151,1,151, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, + 1,151,1,151,1,151,1,151,3,151,3501,8,151,1,152,1,152,1,152,1,152, + 1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, + 1,152,1,152,5,152,3520,8,152,10,152,12,152,3523,9,152,3,152,3525, + 8,152,1,152,1,152,3,152,3529,8,152,1,152,1,152,1,152,1,152,3,152, + 3535,8,152,1,152,1,152,1,152,1,152,3,152,3541,8,152,1,152,1,152, + 1,152,1,152,1,152,5,152,3548,8,152,10,152,12,152,3551,9,152,1,152, + 3,152,3554,8,152,3,152,3556,8,152,1,153,1,153,1,153,5,153,3561,8, + 153,10,153,12,153,3564,9,153,1,154,1,154,1,154,5,154,3569,8,154, + 10,154,12,154,3572,9,154,1,155,1,155,1,155,5,155,3577,8,155,10,155, + 12,155,3580,9,155,1,156,1,156,1,156,5,156,3585,8,156,10,156,12,156, + 3588,9,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,3597, + 8,157,1,158,1,158,1,158,1,159,1,159,1,159,5,159,3605,8,159,10,159, + 12,159,3608,9,159,1,160,1,160,1,160,1,160,3,160,3614,8,160,1,160, + 1,160,3,160,3618,8,160,1,161,1,161,1,161,5,161,3623,8,161,10,161, + 12,161,3626,9,161,1,162,1,162,1,162,5,162,3631,8,162,10,162,12,162, + 3634,9,162,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163, + 1,163,1,163,1,163,1,163,3,163,3649,8,163,1,164,1,164,3,164,3653, + 8,164,1,164,1,164,1,164,3,164,3658,8,164,1,164,1,164,3,164,3662, + 8,164,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,5,166,3678,8,166,10,166,12,166,3681,9,166, + 1,167,1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,1,168,5,168,3698,8,168,10,168,12,168,3701,9,168, + 1,168,1,168,1,168,1,168,1,168,5,168,3708,8,168,10,168,12,168,3711, + 9,168,3,168,3713,8,168,1,168,1,168,1,168,3,168,3718,8,168,3,168, + 3720,8,168,1,168,3,168,3723,8,168,1,168,3,168,3726,8,168,1,169,1, + 169,1,169,1,169,1,169,1,169,1,169,1,169,3,169,3736,8,169,1,170,1, + 170,1,170,1,170,1,170,1,170,1,170,3,170,3745,8,170,1,171,1,171,1, + 171,5,171,3750,8,171,10,171,12,171,3753,9,171,1,172,1,172,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,3,172,3764,8,172,1,173,1,173, + 1,174,1,174,1,174,5,174,3771,8,174,10,174,12,174,3774,9,174,1,175, + 1,175,1,175,1,176,1,176,4,176,3781,8,176,11,176,12,176,3782,1,176, + 3,176,3786,8,176,1,177,1,177,3,177,3790,8,177,1,178,1,178,1,178, + 1,178,3,178,3796,8,178,1,179,1,179,1,180,3,180,3801,8,180,1,180, + 1,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,3,181,3818,8,181,1,182,1,182,1,183,1,183,1,184, + 1,184,1,185,1,185,1,185,9,1138,1208,1216,1236,1263,1272,1281,1290, + 1338,4,100,262,266,270,186,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,120,122,124,126,128,130,132,134,136,138,140,142, + 144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174, + 176,178,180,182,184,186,188,190,192,194,196,198,200,202,204,206, + 208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238, + 240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270, + 272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302, + 304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334, + 336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366, + 368,370,0,76,2,0,78,78,229,229,2,0,34,34,247,247,3,0,73,73,191,191, + 262,262,2,0,123,123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5,0, + 46,46,58,58,108,108,122,122,173,173,3,0,10,10,290,290,331,331,1, + 0,86,87,2,0,108,108,122,122,3,0,8,8,96,96,289,289,2,0,8,8,167,167, + 1,0,335,336,2,0,59,59,96,96,2,0,129,129,249,249,6,0,54,54,129,129, + 143,143,172,172,228,228,313,313,3,0,11,11,59,59,96,96,4,0,107,107, + 139,139,171,171,326,326,2,0,171,171,326,326,3,0,45,45,275,275,279, + 279,2,0,45,45,275,275,3,0,18,18,103,103,320,320,3,0,72,72,190,190, + 261,261,4,0,102,102,148,148,270,270,323,323,3,0,102,102,270,270, + 323,323,2,0,21,21,86,86,2,0,116,116,157,157,2,0,292,292,337,337, + 2,0,291,291,303,303,2,0,61,61,256,256,2,0,104,104,141,141,2,0,10, + 10,92,92,2,0,15,15,264,264,2,0,124,124,250,250,2,0,382,382,384,384, + 2,0,93,93,217,217,2,0,209,209,278,278,2,0,197,197,360,360,1,0,251, + 252,1,0,163,164,3,0,10,10,16,16,277,277,3,0,111,111,316,316,325, + 325,2,0,361,362,366,366,2,0,94,94,363,365,2,0,361,362,369,369,11, + 0,67,67,69,69,134,134,180,180,182,182,184,184,186,186,231,231,259, + 259,341,341,348,348,4,0,63,63,65,66,268,268,331,331,2,0,74,75,306, + 306,3,0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138,138,246, + 246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28,160,160, + 311,311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14,14,140, + 140,197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67,68,134, + 135,180,187,192,193,259,260,341,342,348,349,6,0,67,67,134,134,184, + 184,186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67,134,134, + 184,184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352,352,2, + 0,233,233,258,258,2,0,118,118,226,226,2,0,378,378,389,389,1,0,379, + 387,2,0,96,96,269,269,1,0,377,378,52,0,8,9,11,13,15,15,17,19,21, + 22,24,27,29,34,37,41,43,46,48,48,50,56,58,58,61,62,67,91,93,96,98, + 98,101,101,103,110,113,113,115,118,121,122,125,128,131,131,133,139, + 141,143,145,147,149,151,154,154,156,157,159,159,163,193,195,195, + 199,201,205,207,210,210,212,213,215,219,222,226,228,238,240,249, + 251,262,264,267,269,276,278,292,294,299,302,308,310,310,312,322, + 326,330,333,342,345,345,348,351,16,0,15,15,60,60,102,102,124,124, + 144,144,148,148,155,155,158,158,161,161,194,194,203,203,250,250, + 264,264,270,270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125, + 143,145,147,149,154,156,157,159,160,162,193,195,195,197,202,204, + 249,251,262,265,269,271,292,294,322,324,331,333,351,4416,0,375,1, + 0,0,0,2,380,1,0,0,0,4,1341,1,0,0,0,6,1436,1,0,0,0,8,1438,1,0,0,0, + 10,1450,1,0,0,0,12,1463,1,0,0,0,14,1466,1,0,0,0,16,1470,1,0,0,0, + 18,1551,1,0,0,0,20,1553,1,0,0,0,22,1558,1,0,0,0,24,1579,1,0,0,0, + 26,1581,1,0,0,0,28,1588,1,0,0,0,30,1590,1,0,0,0,32,1598,1,0,0,0, + 34,1607,1,0,0,0,36,1618,1,0,0,0,38,1639,1,0,0,0,40,1642,1,0,0,0, + 42,1645,1,0,0,0,44,1656,1,0,0,0,46,1672,1,0,0,0,48,1678,1,0,0,0, + 50,1680,1,0,0,0,52,1691,1,0,0,0,54,1698,1,0,0,0,56,1709,1,0,0,0, + 58,1726,1,0,0,0,60,1734,1,0,0,0,62,1736,1,0,0,0,64,1800,1,0,0,0, + 66,1802,1,0,0,0,68,1804,1,0,0,0,70,1806,1,0,0,0,72,1808,1,0,0,0, + 74,1810,1,0,0,0,76,1812,1,0,0,0,78,1814,1,0,0,0,80,1819,1,0,0,0, + 82,1821,1,0,0,0,84,1826,1,0,0,0,86,1828,1,0,0,0,88,1836,1,0,0,0, + 90,1844,1,0,0,0,92,1849,1,0,0,0,94,1876,1,0,0,0,96,1881,1,0,0,0, + 98,1889,1,0,0,0,100,1897,1,0,0,0,102,1947,1,0,0,0,104,1951,1,0,0, + 0,106,1987,1,0,0,0,108,2033,1,0,0,0,110,2054,1,0,0,0,112,2086,1, + 0,0,0,114,2098,1,0,0,0,116,2101,1,0,0,0,118,2117,1,0,0,0,120,2131, + 1,0,0,0,122,2165,1,0,0,0,124,2167,1,0,0,0,126,2175,1,0,0,0,128,2179, + 1,0,0,0,130,2182,1,0,0,0,132,2185,1,0,0,0,134,2211,1,0,0,0,136,2213, + 1,0,0,0,138,2251,1,0,0,0,140,2292,1,0,0,0,142,2297,1,0,0,0,144,2330, + 1,0,0,0,146,2352,1,0,0,0,148,2354,1,0,0,0,150,2384,1,0,0,0,152,2386, + 1,0,0,0,154,2393,1,0,0,0,156,2410,1,0,0,0,158,2425,1,0,0,0,160,2449, + 1,0,0,0,162,2465,1,0,0,0,164,2472,1,0,0,0,166,2476,1,0,0,0,168,2479, + 1,0,0,0,170,2511,1,0,0,0,172,2526,1,0,0,0,174,2545,1,0,0,0,176,2563, + 1,0,0,0,178,2576,1,0,0,0,180,2578,1,0,0,0,182,2614,1,0,0,0,184,2616, + 1,0,0,0,186,2620,1,0,0,0,188,2628,1,0,0,0,190,2639,1,0,0,0,192,2643, + 1,0,0,0,194,2654,1,0,0,0,196,2690,1,0,0,0,198,2692,1,0,0,0,200,2696, + 1,0,0,0,202,2724,1,0,0,0,204,2745,1,0,0,0,206,2758,1,0,0,0,208,2764, + 1,0,0,0,210,2768,1,0,0,0,212,2770,1,0,0,0,214,2773,1,0,0,0,216,2794, + 1,0,0,0,218,2845,1,0,0,0,220,2847,1,0,0,0,222,2855,1,0,0,0,224,2869, + 1,0,0,0,226,2871,1,0,0,0,228,2879,1,0,0,0,230,2887,1,0,0,0,232,2894, + 1,0,0,0,234,2898,1,0,0,0,236,2900,1,0,0,0,238,2907,1,0,0,0,240,2915, + 1,0,0,0,242,2926,1,0,0,0,244,2934,1,0,0,0,246,2936,1,0,0,0,248,2949, + 1,0,0,0,250,2964,1,0,0,0,252,2968,1,0,0,0,254,2970,1,0,0,0,256,2972, + 1,0,0,0,258,2978,1,0,0,0,260,2980,1,0,0,0,262,3000,1,0,0,0,264,3095, + 1,0,0,0,266,3101,1,0,0,0,268,3127,1,0,0,0,270,3378,1,0,0,0,272,3400, + 1,0,0,0,274,3417,1,0,0,0,276,3419,1,0,0,0,278,3421,1,0,0,0,280,3423, + 1,0,0,0,282,3425,1,0,0,0,284,3427,1,0,0,0,286,3432,1,0,0,0,288,3439, + 1,0,0,0,290,3443,1,0,0,0,292,3448,1,0,0,0,294,3454,1,0,0,0,296,3461, + 1,0,0,0,298,3463,1,0,0,0,300,3468,1,0,0,0,302,3500,1,0,0,0,304,3555, + 1,0,0,0,306,3557,1,0,0,0,308,3565,1,0,0,0,310,3573,1,0,0,0,312,3581, + 1,0,0,0,314,3596,1,0,0,0,316,3598,1,0,0,0,318,3601,1,0,0,0,320,3609, + 1,0,0,0,322,3619,1,0,0,0,324,3627,1,0,0,0,326,3648,1,0,0,0,328,3650, + 1,0,0,0,330,3663,1,0,0,0,332,3668,1,0,0,0,334,3682,1,0,0,0,336,3725, + 1,0,0,0,338,3735,1,0,0,0,340,3744,1,0,0,0,342,3746,1,0,0,0,344,3763, + 1,0,0,0,346,3765,1,0,0,0,348,3767,1,0,0,0,350,3775,1,0,0,0,352,3785, + 1,0,0,0,354,3789,1,0,0,0,356,3795,1,0,0,0,358,3797,1,0,0,0,360,3800, + 1,0,0,0,362,3817,1,0,0,0,364,3819,1,0,0,0,366,3821,1,0,0,0,368,3823, + 1,0,0,0,370,3825,1,0,0,0,372,374,3,2,1,0,373,372,1,0,0,0,374,377, + 1,0,0,0,375,373,1,0,0,0,375,376,1,0,0,0,376,378,1,0,0,0,377,375, + 1,0,0,0,378,379,5,0,0,1,379,1,1,0,0,0,380,382,3,4,2,0,381,383,5, + 1,0,0,382,381,1,0,0,0,382,383,1,0,0,0,383,3,1,0,0,0,384,1342,3,16, + 8,0,385,387,3,32,16,0,386,385,1,0,0,0,386,387,1,0,0,0,387,388,1, + 0,0,0,388,1342,3,64,32,0,389,391,5,330,0,0,390,392,3,26,13,0,391, + 390,1,0,0,0,391,392,1,0,0,0,392,393,1,0,0,0,393,1342,3,66,33,0,394, + 395,5,269,0,0,395,398,5,37,0,0,396,399,3,354,177,0,397,399,3,364, + 182,0,398,396,1,0,0,0,398,397,1,0,0,0,399,1342,1,0,0,0,400,401,5, + 59,0,0,401,403,3,26,13,0,402,404,3,164,82,0,403,402,1,0,0,0,403, + 404,1,0,0,0,404,405,1,0,0,0,405,415,3,68,34,0,406,407,5,51,0,0,407, + 414,3,364,182,0,408,409,5,170,0,0,409,414,3,364,182,0,410,411,5, + 346,0,0,411,412,7,0,0,0,412,414,3,42,21,0,413,406,1,0,0,0,413,408, + 1,0,0,0,413,410,1,0,0,0,414,417,1,0,0,0,415,413,1,0,0,0,415,416, + 1,0,0,0,416,1342,1,0,0,0,417,415,1,0,0,0,418,419,5,11,0,0,419,420, + 3,26,13,0,420,421,3,66,33,0,421,422,5,269,0,0,422,423,7,0,0,0,423, + 424,3,42,21,0,424,1342,1,0,0,0,425,426,5,11,0,0,426,427,3,26,13, + 0,427,428,3,66,33,0,428,429,5,269,0,0,429,430,5,170,0,0,430,431, + 3,364,182,0,431,1342,1,0,0,0,432,433,5,96,0,0,433,435,3,26,13,0, + 434,436,3,166,83,0,435,434,1,0,0,0,435,436,1,0,0,0,436,437,1,0,0, + 0,437,439,3,66,33,0,438,440,7,1,0,0,439,438,1,0,0,0,439,440,1,0, + 0,0,440,1342,1,0,0,0,441,442,5,273,0,0,442,445,7,2,0,0,443,444,7, + 3,0,0,444,446,3,222,111,0,445,443,1,0,0,0,445,446,1,0,0,0,446,451, + 1,0,0,0,447,449,5,163,0,0,448,447,1,0,0,0,448,449,1,0,0,0,449,450, + 1,0,0,0,450,452,3,364,182,0,451,448,1,0,0,0,451,452,1,0,0,0,452, + 1342,1,0,0,0,453,455,5,59,0,0,454,456,5,298,0,0,455,454,1,0,0,0, + 455,456,1,0,0,0,456,458,1,0,0,0,457,459,5,109,0,0,458,457,1,0,0, + 0,458,459,1,0,0,0,459,460,1,0,0,0,460,462,5,293,0,0,461,463,3,164, + 82,0,462,461,1,0,0,0,462,463,1,0,0,0,463,464,1,0,0,0,464,469,3,70, + 35,0,465,466,5,2,0,0,466,467,3,322,161,0,467,468,5,3,0,0,468,470, + 1,0,0,0,469,465,1,0,0,0,469,470,1,0,0,0,470,472,1,0,0,0,471,473, + 3,36,18,0,472,471,1,0,0,0,472,473,1,0,0,0,473,474,1,0,0,0,474,479, + 3,38,19,0,475,477,5,20,0,0,476,475,1,0,0,0,476,477,1,0,0,0,477,478, + 1,0,0,0,478,480,3,16,8,0,479,476,1,0,0,0,479,480,1,0,0,0,480,1342, + 1,0,0,0,481,482,5,59,0,0,482,484,5,293,0,0,483,485,3,164,82,0,484, + 483,1,0,0,0,484,485,1,0,0,0,485,486,1,0,0,0,486,487,3,70,35,0,487, + 488,5,163,0,0,488,499,3,72,36,0,489,498,3,36,18,0,490,498,3,218, + 109,0,491,498,3,58,29,0,492,493,5,170,0,0,493,498,3,364,182,0,494, + 495,5,297,0,0,495,498,3,42,21,0,496,498,3,40,20,0,497,489,1,0,0, + 0,497,490,1,0,0,0,497,491,1,0,0,0,497,492,1,0,0,0,497,494,1,0,0, + 0,497,496,1,0,0,0,498,501,1,0,0,0,499,497,1,0,0,0,499,500,1,0,0, + 0,500,1342,1,0,0,0,501,499,1,0,0,0,502,503,5,59,0,0,503,505,5,208, + 0,0,504,502,1,0,0,0,504,505,1,0,0,0,505,506,1,0,0,0,506,507,5,244, + 0,0,507,508,5,293,0,0,508,513,3,70,35,0,509,510,5,2,0,0,510,511, + 3,322,161,0,511,512,5,3,0,0,512,514,1,0,0,0,513,509,1,0,0,0,513, + 514,1,0,0,0,514,516,1,0,0,0,515,517,3,36,18,0,516,515,1,0,0,0,516, + 517,1,0,0,0,517,518,1,0,0,0,518,523,3,38,19,0,519,521,5,20,0,0,520, + 519,1,0,0,0,520,521,1,0,0,0,521,522,1,0,0,0,522,524,3,16,8,0,523, + 520,1,0,0,0,523,524,1,0,0,0,524,1342,1,0,0,0,525,526,5,13,0,0,526, + 527,5,293,0,0,527,529,3,72,36,0,528,530,3,22,11,0,529,528,1,0,0, + 0,529,530,1,0,0,0,530,531,1,0,0,0,531,532,5,55,0,0,532,540,5,282, + 0,0,533,541,5,196,0,0,534,535,5,119,0,0,535,536,5,50,0,0,536,541, + 3,86,43,0,537,538,5,119,0,0,538,539,5,10,0,0,539,541,5,50,0,0,540, + 533,1,0,0,0,540,534,1,0,0,0,540,537,1,0,0,0,540,541,1,0,0,0,541, + 1342,1,0,0,0,542,543,5,13,0,0,543,546,5,294,0,0,544,545,7,3,0,0, + 545,547,3,66,33,0,546,544,1,0,0,0,546,547,1,0,0,0,547,548,1,0,0, + 0,548,549,5,55,0,0,549,551,5,282,0,0,550,552,5,196,0,0,551,550,1, + 0,0,0,551,552,1,0,0,0,552,1342,1,0,0,0,553,554,5,11,0,0,554,555, + 5,293,0,0,555,556,3,72,36,0,556,557,5,8,0,0,557,558,5,49,0,0,558, + 559,3,308,154,0,559,1342,1,0,0,0,560,561,5,11,0,0,561,562,5,293, + 0,0,562,563,3,72,36,0,563,564,5,8,0,0,564,565,5,50,0,0,565,566,5, + 2,0,0,566,567,3,306,153,0,567,568,5,3,0,0,568,1342,1,0,0,0,569,570, + 5,11,0,0,570,571,5,293,0,0,571,572,3,72,36,0,572,573,5,241,0,0,573, + 574,5,49,0,0,574,575,3,80,40,0,575,576,5,309,0,0,576,577,3,88,44, + 0,577,1342,1,0,0,0,578,579,5,11,0,0,579,580,5,293,0,0,580,581,3, + 72,36,0,581,582,5,96,0,0,582,584,5,49,0,0,583,585,3,166,83,0,584, + 583,1,0,0,0,584,585,1,0,0,0,585,586,1,0,0,0,586,587,3,80,40,0,587, + 1342,1,0,0,0,588,589,5,11,0,0,589,590,5,293,0,0,590,591,3,72,36, + 0,591,592,5,96,0,0,592,594,5,50,0,0,593,595,3,166,83,0,594,593,1, + 0,0,0,594,595,1,0,0,0,595,596,1,0,0,0,596,597,5,2,0,0,597,598,3, + 86,43,0,598,599,5,3,0,0,599,1342,1,0,0,0,600,605,5,11,0,0,601,602, + 5,293,0,0,602,606,3,72,36,0,603,604,5,338,0,0,604,606,3,76,38,0, + 605,601,1,0,0,0,605,603,1,0,0,0,606,607,1,0,0,0,607,608,5,241,0, + 0,608,609,5,309,0,0,609,610,3,222,111,0,610,1342,1,0,0,0,611,616, + 5,11,0,0,612,613,5,293,0,0,613,617,3,72,36,0,614,615,5,338,0,0,615, + 617,3,76,38,0,616,612,1,0,0,0,616,614,1,0,0,0,617,618,1,0,0,0,618, + 619,5,269,0,0,619,620,5,297,0,0,620,621,3,42,21,0,621,1342,1,0,0, + 0,622,627,5,11,0,0,623,624,5,293,0,0,624,628,3,72,36,0,625,626,5, + 338,0,0,626,628,3,76,38,0,627,623,1,0,0,0,627,625,1,0,0,0,628,629, + 1,0,0,0,629,630,5,328,0,0,630,632,5,297,0,0,631,633,3,166,83,0,632, + 631,1,0,0,0,632,633,1,0,0,0,633,634,1,0,0,0,634,635,3,42,21,0,635, + 1342,1,0,0,0,636,637,5,11,0,0,637,638,5,293,0,0,638,639,3,72,36, + 0,639,641,7,4,0,0,640,642,5,49,0,0,641,640,1,0,0,0,641,642,1,0,0, + 0,642,643,1,0,0,0,643,645,3,80,40,0,644,646,3,362,181,0,645,644, + 1,0,0,0,645,646,1,0,0,0,646,1342,1,0,0,0,647,648,5,11,0,0,648,649, + 5,293,0,0,649,651,3,72,36,0,650,652,3,22,11,0,651,650,1,0,0,0,651, + 652,1,0,0,0,652,653,1,0,0,0,653,655,5,39,0,0,654,656,5,49,0,0,655, + 654,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,658,3,80,40,0,658, + 660,3,320,160,0,659,661,3,300,150,0,660,659,1,0,0,0,660,661,1,0, + 0,0,661,1342,1,0,0,0,662,663,5,11,0,0,663,664,5,293,0,0,664,666, + 3,72,36,0,665,667,3,22,11,0,666,665,1,0,0,0,666,667,1,0,0,0,667, + 668,1,0,0,0,668,669,5,244,0,0,669,670,5,50,0,0,670,671,5,2,0,0,671, + 672,3,310,155,0,672,673,5,3,0,0,673,1342,1,0,0,0,674,675,5,11,0, + 0,675,676,5,293,0,0,676,678,3,72,36,0,677,679,3,22,11,0,678,677, + 1,0,0,0,678,679,1,0,0,0,679,680,1,0,0,0,680,681,5,269,0,0,681,682, + 5,266,0,0,682,686,3,364,182,0,683,684,5,346,0,0,684,685,5,267,0, + 0,685,687,3,42,21,0,686,683,1,0,0,0,686,687,1,0,0,0,687,1342,1,0, + 0,0,688,689,5,11,0,0,689,690,5,293,0,0,690,692,3,72,36,0,691,693, + 3,22,11,0,692,691,1,0,0,0,692,693,1,0,0,0,693,694,1,0,0,0,694,695, + 5,269,0,0,695,696,5,267,0,0,696,697,3,42,21,0,697,1342,1,0,0,0,698, + 703,5,11,0,0,699,700,5,293,0,0,700,704,3,72,36,0,701,702,5,338,0, + 0,702,704,3,76,38,0,703,699,1,0,0,0,703,701,1,0,0,0,704,705,1,0, + 0,0,705,707,5,8,0,0,706,708,3,164,82,0,707,706,1,0,0,0,707,708,1, + 0,0,0,708,710,1,0,0,0,709,711,3,20,10,0,710,709,1,0,0,0,711,712, + 1,0,0,0,712,710,1,0,0,0,712,713,1,0,0,0,713,1342,1,0,0,0,714,715, + 5,11,0,0,715,716,5,293,0,0,716,717,3,72,36,0,717,718,3,22,11,0,718, + 719,5,241,0,0,719,720,5,309,0,0,720,721,3,22,11,0,721,1342,1,0,0, + 0,722,727,5,11,0,0,723,724,5,293,0,0,724,728,3,72,36,0,725,726,5, + 338,0,0,726,728,3,76,38,0,727,723,1,0,0,0,727,725,1,0,0,0,728,729, + 1,0,0,0,729,731,5,96,0,0,730,732,3,166,83,0,731,730,1,0,0,0,731, + 732,1,0,0,0,732,733,1,0,0,0,733,738,3,22,11,0,734,735,5,4,0,0,735, + 737,3,22,11,0,736,734,1,0,0,0,737,740,1,0,0,0,738,736,1,0,0,0,738, + 739,1,0,0,0,739,742,1,0,0,0,740,738,1,0,0,0,741,743,5,230,0,0,742, + 741,1,0,0,0,742,743,1,0,0,0,743,1342,1,0,0,0,744,745,5,11,0,0,745, + 746,5,293,0,0,746,748,3,72,36,0,747,749,3,22,11,0,748,747,1,0,0, + 0,748,749,1,0,0,0,749,750,1,0,0,0,750,751,5,269,0,0,751,752,5,170, + 0,0,752,753,3,364,182,0,753,1342,1,0,0,0,754,755,5,11,0,0,755,756, + 5,293,0,0,756,757,3,72,36,0,757,758,5,237,0,0,758,759,5,219,0,0, + 759,1342,1,0,0,0,760,761,5,11,0,0,761,762,5,176,0,0,762,763,5,338, + 0,0,763,764,3,76,38,0,764,765,7,5,0,0,765,766,5,248,0,0,766,1342, + 1,0,0,0,767,768,5,11,0,0,768,769,5,176,0,0,769,770,5,338,0,0,770, + 771,3,76,38,0,771,772,5,269,0,0,772,773,5,297,0,0,773,774,3,42,21, + 0,774,1342,1,0,0,0,775,776,5,96,0,0,776,778,5,293,0,0,777,779,3, + 166,83,0,778,777,1,0,0,0,778,779,1,0,0,0,779,780,1,0,0,0,780,782, + 3,72,36,0,781,783,5,230,0,0,782,781,1,0,0,0,782,783,1,0,0,0,783, + 1342,1,0,0,0,784,785,5,96,0,0,785,787,5,338,0,0,786,788,3,166,83, + 0,787,786,1,0,0,0,787,788,1,0,0,0,788,789,1,0,0,0,789,1342,3,76, + 38,0,790,791,5,96,0,0,791,792,5,176,0,0,792,794,5,338,0,0,793,795, + 3,166,83,0,794,793,1,0,0,0,794,795,1,0,0,0,795,796,1,0,0,0,796,1342, + 3,76,38,0,797,800,5,59,0,0,798,799,5,208,0,0,799,801,5,244,0,0,800, + 798,1,0,0,0,800,801,1,0,0,0,801,806,1,0,0,0,802,804,5,128,0,0,803, + 802,1,0,0,0,803,804,1,0,0,0,804,805,1,0,0,0,805,807,5,298,0,0,806, + 803,1,0,0,0,806,807,1,0,0,0,807,808,1,0,0,0,808,810,5,338,0,0,809, + 811,3,164,82,0,810,809,1,0,0,0,810,811,1,0,0,0,811,812,1,0,0,0,812, + 814,3,74,37,0,813,815,3,192,96,0,814,813,1,0,0,0,814,815,1,0,0,0, + 815,825,1,0,0,0,816,817,5,51,0,0,817,824,3,364,182,0,818,819,5,218, + 0,0,819,820,5,203,0,0,820,824,3,184,92,0,821,822,5,297,0,0,822,824, + 3,42,21,0,823,816,1,0,0,0,823,818,1,0,0,0,823,821,1,0,0,0,824,827, + 1,0,0,0,825,823,1,0,0,0,825,826,1,0,0,0,826,828,1,0,0,0,827,825, + 1,0,0,0,828,829,5,20,0,0,829,830,3,16,8,0,830,1342,1,0,0,0,831,834, + 5,59,0,0,832,833,5,208,0,0,833,835,5,244,0,0,834,832,1,0,0,0,834, + 835,1,0,0,0,835,837,1,0,0,0,836,838,5,128,0,0,837,836,1,0,0,0,837, + 838,1,0,0,0,838,839,1,0,0,0,839,840,5,298,0,0,840,841,5,338,0,0, + 841,846,3,74,37,0,842,843,5,2,0,0,843,844,3,318,159,0,844,845,5, + 3,0,0,845,847,1,0,0,0,846,842,1,0,0,0,846,847,1,0,0,0,847,848,1, + 0,0,0,848,851,3,36,18,0,849,850,5,207,0,0,850,852,3,42,21,0,851, + 849,1,0,0,0,851,852,1,0,0,0,852,1342,1,0,0,0,853,854,5,11,0,0,854, + 855,5,338,0,0,855,857,3,76,38,0,856,858,5,20,0,0,857,856,1,0,0,0, + 857,858,1,0,0,0,858,859,1,0,0,0,859,860,3,16,8,0,860,1342,1,0,0, + 0,861,864,5,59,0,0,862,863,5,208,0,0,863,865,5,244,0,0,864,862,1, + 0,0,0,864,865,1,0,0,0,865,867,1,0,0,0,866,868,5,298,0,0,867,866, + 1,0,0,0,867,868,1,0,0,0,868,869,1,0,0,0,869,871,5,125,0,0,870,872, + 3,164,82,0,871,870,1,0,0,0,871,872,1,0,0,0,872,873,1,0,0,0,873,874, + 3,346,173,0,874,875,5,20,0,0,875,889,3,364,182,0,876,877,5,332,0, + 0,877,878,3,354,177,0,878,879,3,364,182,0,879,886,1,0,0,0,880,881, + 5,4,0,0,881,882,3,354,177,0,882,883,3,364,182,0,883,885,1,0,0,0, + 884,880,1,0,0,0,885,888,1,0,0,0,886,884,1,0,0,0,886,887,1,0,0,0, + 887,890,1,0,0,0,888,886,1,0,0,0,889,876,1,0,0,0,889,890,1,0,0,0, + 890,1342,1,0,0,0,891,892,5,59,0,0,892,893,5,176,0,0,893,895,5,338, + 0,0,894,896,3,164,82,0,895,894,1,0,0,0,895,896,1,0,0,0,896,897,1, + 0,0,0,897,899,3,74,37,0,898,900,3,36,18,0,899,898,1,0,0,0,899,900, + 1,0,0,0,900,918,1,0,0,0,901,902,5,207,0,0,902,917,3,42,21,0,903, + 904,5,218,0,0,904,905,5,31,0,0,905,917,3,246,123,0,906,917,3,10, + 5,0,907,917,3,8,4,0,908,917,3,218,109,0,909,917,3,58,29,0,910,911, + 5,170,0,0,911,917,3,364,182,0,912,913,5,51,0,0,913,917,3,364,182, + 0,914,915,5,297,0,0,915,917,3,42,21,0,916,901,1,0,0,0,916,903,1, + 0,0,0,916,906,1,0,0,0,916,907,1,0,0,0,916,908,1,0,0,0,916,909,1, + 0,0,0,916,910,1,0,0,0,916,912,1,0,0,0,916,914,1,0,0,0,917,920,1, + 0,0,0,918,916,1,0,0,0,918,919,1,0,0,0,919,921,1,0,0,0,920,918,1, + 0,0,0,921,922,5,20,0,0,922,923,3,16,8,0,923,1342,1,0,0,0,924,926, + 5,96,0,0,925,927,5,298,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927,928, + 1,0,0,0,928,930,5,125,0,0,929,931,3,166,83,0,930,929,1,0,0,0,930, + 931,1,0,0,0,931,932,1,0,0,0,932,1342,3,344,172,0,933,936,5,81,0, + 0,934,935,5,208,0,0,935,937,5,244,0,0,936,934,1,0,0,0,936,937,1, + 0,0,0,937,939,1,0,0,0,938,940,5,336,0,0,939,938,1,0,0,0,939,940, + 1,0,0,0,940,941,1,0,0,0,941,943,3,344,172,0,942,944,3,304,152,0, + 943,942,1,0,0,0,943,944,1,0,0,0,944,946,1,0,0,0,945,947,3,316,158, + 0,946,945,1,0,0,0,946,947,1,0,0,0,947,1342,1,0,0,0,948,949,5,96, + 0,0,949,950,5,298,0,0,950,952,5,336,0,0,951,953,3,166,83,0,952,951, + 1,0,0,0,952,953,1,0,0,0,953,957,1,0,0,0,954,958,3,72,36,0,955,958, + 3,76,38,0,956,958,3,344,172,0,957,954,1,0,0,0,957,955,1,0,0,0,957, + 956,1,0,0,0,958,1342,1,0,0,0,959,961,5,106,0,0,960,962,7,6,0,0,961, + 960,1,0,0,0,961,962,1,0,0,0,962,963,1,0,0,0,963,1342,3,4,2,0,964, + 965,5,273,0,0,965,968,5,294,0,0,966,967,7,3,0,0,967,969,3,66,33, + 0,968,966,1,0,0,0,968,969,1,0,0,0,969,974,1,0,0,0,970,972,5,163, + 0,0,971,970,1,0,0,0,971,972,1,0,0,0,972,973,1,0,0,0,973,975,3,364, + 182,0,974,971,1,0,0,0,974,975,1,0,0,0,975,1342,1,0,0,0,976,977,5, + 273,0,0,977,978,5,293,0,0,978,981,5,108,0,0,979,980,7,3,0,0,980, + 982,3,66,33,0,981,979,1,0,0,0,981,982,1,0,0,0,982,983,1,0,0,0,983, + 984,5,163,0,0,984,986,3,364,182,0,985,987,3,22,11,0,986,985,1,0, + 0,0,986,987,1,0,0,0,987,1342,1,0,0,0,988,989,5,273,0,0,989,990,5, + 297,0,0,990,995,3,72,36,0,991,992,5,2,0,0,992,993,3,46,23,0,993, + 994,5,3,0,0,994,996,1,0,0,0,995,991,1,0,0,0,995,996,1,0,0,0,996, + 1342,1,0,0,0,997,998,5,273,0,0,998,999,5,50,0,0,999,1000,7,3,0,0, + 1000,1003,3,72,36,0,1001,1002,7,3,0,0,1002,1004,3,66,33,0,1003,1001, + 1,0,0,0,1003,1004,1,0,0,0,1004,1342,1,0,0,0,1005,1006,5,273,0,0, + 1006,1009,5,339,0,0,1007,1008,7,3,0,0,1008,1010,3,66,33,0,1009,1007, + 1,0,0,0,1009,1010,1,0,0,0,1010,1015,1,0,0,0,1011,1013,5,163,0,0, + 1012,1011,1,0,0,0,1012,1013,1,0,0,0,1013,1014,1,0,0,0,1014,1016, + 3,364,182,0,1015,1012,1,0,0,0,1015,1016,1,0,0,0,1016,1342,1,0,0, + 0,1017,1018,5,273,0,0,1018,1019,5,219,0,0,1019,1021,3,72,36,0,1020, + 1022,3,22,11,0,1021,1020,1,0,0,0,1021,1022,1,0,0,0,1022,1342,1,0, + 0,0,1023,1025,5,273,0,0,1024,1026,7,7,0,0,1025,1024,1,0,0,0,1025, + 1026,1,0,0,0,1026,1027,1,0,0,0,1027,1030,5,126,0,0,1028,1029,7,3, + 0,0,1029,1031,3,66,33,0,1030,1028,1,0,0,0,1030,1031,1,0,0,0,1031, + 1039,1,0,0,0,1032,1034,5,163,0,0,1033,1032,1,0,0,0,1033,1034,1,0, + 0,0,1034,1037,1,0,0,0,1035,1038,3,222,111,0,1036,1038,3,364,182, + 0,1037,1035,1,0,0,0,1037,1036,1,0,0,0,1038,1040,1,0,0,0,1039,1033, + 1,0,0,0,1039,1040,1,0,0,0,1040,1342,1,0,0,0,1041,1042,5,273,0,0, + 1042,1043,5,59,0,0,1043,1044,5,293,0,0,1044,1047,3,72,36,0,1045, + 1046,5,20,0,0,1046,1048,5,266,0,0,1047,1045,1,0,0,0,1047,1048,1, + 0,0,0,1048,1342,1,0,0,0,1049,1050,5,273,0,0,1050,1051,5,62,0,0,1051, + 1342,3,26,13,0,1052,1053,5,273,0,0,1053,1058,5,38,0,0,1054,1056, + 5,163,0,0,1055,1054,1,0,0,0,1055,1056,1,0,0,0,1056,1057,1,0,0,0, + 1057,1059,3,364,182,0,1058,1055,1,0,0,0,1058,1059,1,0,0,0,1059,1342, + 1,0,0,0,1060,1061,5,273,0,0,1061,1062,5,176,0,0,1062,1065,5,339, + 0,0,1063,1064,7,3,0,0,1064,1066,3,66,33,0,1065,1063,1,0,0,0,1065, + 1066,1,0,0,0,1066,1071,1,0,0,0,1067,1069,5,163,0,0,1068,1067,1,0, + 0,0,1068,1069,1,0,0,0,1069,1070,1,0,0,0,1070,1072,3,364,182,0,1071, + 1068,1,0,0,0,1071,1072,1,0,0,0,1072,1342,1,0,0,0,1073,1074,5,273, + 0,0,1074,1075,5,59,0,0,1075,1076,5,176,0,0,1076,1077,5,338,0,0,1077, + 1080,3,76,38,0,1078,1079,5,20,0,0,1079,1081,5,266,0,0,1080,1078, + 1,0,0,0,1080,1081,1,0,0,0,1081,1342,1,0,0,0,1082,1083,7,8,0,0,1083, + 1085,5,125,0,0,1084,1086,5,108,0,0,1085,1084,1,0,0,0,1085,1086,1, + 0,0,0,1086,1087,1,0,0,0,1087,1342,3,28,14,0,1088,1089,7,8,0,0,1089, + 1091,5,72,0,0,1090,1092,5,108,0,0,1091,1090,1,0,0,0,1091,1092,1, + 0,0,0,1092,1093,1,0,0,0,1093,1342,3,66,33,0,1094,1096,7,8,0,0,1095, + 1097,5,293,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097,1099,1,0, + 0,0,1098,1100,7,9,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1101, + 1,0,0,0,1101,1103,3,72,36,0,1102,1104,3,22,11,0,1103,1102,1,0,0, + 0,1103,1104,1,0,0,0,1104,1106,1,0,0,0,1105,1107,3,30,15,0,1106,1105, + 1,0,0,0,1106,1107,1,0,0,0,1107,1342,1,0,0,0,1108,1110,7,8,0,0,1109, + 1111,5,232,0,0,1110,1109,1,0,0,0,1110,1111,1,0,0,0,1111,1112,1,0, + 0,0,1112,1342,3,16,8,0,1113,1114,5,51,0,0,1114,1120,5,203,0,0,1115, + 1116,3,26,13,0,1116,1117,3,66,33,0,1117,1121,1,0,0,0,1118,1119,5, + 293,0,0,1119,1121,3,72,36,0,1120,1115,1,0,0,0,1120,1118,1,0,0,0, + 1121,1122,1,0,0,0,1122,1125,5,153,0,0,1123,1126,3,364,182,0,1124, + 1126,5,198,0,0,1125,1123,1,0,0,0,1125,1124,1,0,0,0,1126,1342,1,0, + 0,0,1127,1128,5,240,0,0,1128,1129,5,293,0,0,1129,1342,3,72,36,0, + 1130,1131,5,240,0,0,1131,1132,5,125,0,0,1132,1342,3,344,172,0,1133, + 1141,5,240,0,0,1134,1142,3,364,182,0,1135,1137,9,0,0,0,1136,1135, + 1,0,0,0,1137,1140,1,0,0,0,1138,1139,1,0,0,0,1138,1136,1,0,0,0,1139, + 1142,1,0,0,0,1140,1138,1,0,0,0,1141,1134,1,0,0,0,1141,1138,1,0,0, + 0,1142,1342,1,0,0,0,1143,1144,5,240,0,0,1144,1145,5,176,0,0,1145, + 1146,5,338,0,0,1146,1342,3,76,38,0,1147,1149,5,33,0,0,1148,1150, + 5,159,0,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1151,1,0,0,0, + 1151,1152,5,293,0,0,1152,1155,3,72,36,0,1153,1154,5,207,0,0,1154, + 1156,3,42,21,0,1155,1153,1,0,0,0,1155,1156,1,0,0,0,1156,1161,1,0, + 0,0,1157,1159,5,20,0,0,1158,1157,1,0,0,0,1158,1159,1,0,0,0,1159, + 1160,1,0,0,0,1160,1162,3,16,8,0,1161,1158,1,0,0,0,1161,1162,1,0, + 0,0,1162,1342,1,0,0,0,1163,1164,5,322,0,0,1164,1166,5,293,0,0,1165, + 1167,3,166,83,0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1168,1, + 0,0,0,1168,1342,3,72,36,0,1169,1170,5,43,0,0,1170,1342,5,33,0,0, + 1171,1172,5,168,0,0,1172,1174,5,70,0,0,1173,1175,5,169,0,0,1174, + 1173,1,0,0,0,1174,1175,1,0,0,0,1175,1176,1,0,0,0,1176,1177,5,145, + 0,0,1177,1179,3,364,182,0,1178,1180,5,216,0,0,1179,1178,1,0,0,0, + 1179,1180,1,0,0,0,1180,1181,1,0,0,0,1181,1182,5,152,0,0,1182,1183, + 5,293,0,0,1183,1185,3,72,36,0,1184,1186,3,22,11,0,1185,1184,1,0, + 0,0,1185,1186,1,0,0,0,1186,1342,1,0,0,0,1187,1188,5,317,0,0,1188, + 1189,5,293,0,0,1189,1191,3,72,36,0,1190,1192,3,22,11,0,1191,1190, + 1,0,0,0,1191,1192,1,0,0,0,1192,1342,1,0,0,0,1193,1195,5,188,0,0, + 1194,1193,1,0,0,0,1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197, + 5,242,0,0,1197,1198,5,293,0,0,1198,1201,3,72,36,0,1199,1200,7,10, + 0,0,1200,1202,5,219,0,0,1201,1199,1,0,0,0,1201,1202,1,0,0,0,1202, + 1342,1,0,0,0,1203,1204,7,11,0,0,1204,1208,3,354,177,0,1205,1207, + 9,0,0,0,1206,1205,1,0,0,0,1207,1210,1,0,0,0,1208,1209,1,0,0,0,1208, + 1206,1,0,0,0,1209,1342,1,0,0,0,1210,1208,1,0,0,0,1211,1212,5,269, + 0,0,1212,1216,5,253,0,0,1213,1215,9,0,0,0,1214,1213,1,0,0,0,1215, + 1218,1,0,0,0,1216,1217,1,0,0,0,1216,1214,1,0,0,0,1217,1342,1,0,0, + 0,1218,1216,1,0,0,0,1219,1220,5,269,0,0,1220,1221,5,301,0,0,1221, + 1222,5,350,0,0,1222,1342,3,284,142,0,1223,1224,5,269,0,0,1224,1225, + 5,301,0,0,1225,1228,5,350,0,0,1226,1229,3,364,182,0,1227,1229,5, + 169,0,0,1228,1226,1,0,0,0,1228,1227,1,0,0,0,1229,1342,1,0,0,0,1230, + 1231,5,269,0,0,1231,1232,5,301,0,0,1232,1236,5,350,0,0,1233,1235, + 9,0,0,0,1234,1233,1,0,0,0,1235,1238,1,0,0,0,1236,1237,1,0,0,0,1236, + 1234,1,0,0,0,1237,1342,1,0,0,0,1238,1236,1,0,0,0,1239,1240,5,269, + 0,0,1240,1241,7,12,0,0,1241,1342,3,124,62,0,1242,1243,5,269,0,0, + 1243,1244,7,12,0,0,1244,1245,5,2,0,0,1245,1246,3,220,110,0,1246, + 1247,5,3,0,0,1247,1248,5,352,0,0,1248,1249,5,2,0,0,1249,1250,3,16, + 8,0,1250,1251,5,3,0,0,1251,1342,1,0,0,0,1252,1253,5,269,0,0,1253, + 1254,3,358,179,0,1254,1255,5,352,0,0,1255,1256,5,389,0,0,1256,1342, + 1,0,0,0,1257,1258,5,269,0,0,1258,1266,3,358,179,0,1259,1263,5,352, + 0,0,1260,1262,9,0,0,0,1261,1260,1,0,0,0,1262,1265,1,0,0,0,1263,1264, + 1,0,0,0,1263,1261,1,0,0,0,1264,1267,1,0,0,0,1265,1263,1,0,0,0,1266, + 1259,1,0,0,0,1266,1267,1,0,0,0,1267,1342,1,0,0,0,1268,1272,5,269, + 0,0,1269,1271,9,0,0,0,1270,1269,1,0,0,0,1271,1274,1,0,0,0,1272,1273, + 1,0,0,0,1272,1270,1,0,0,0,1273,1275,1,0,0,0,1274,1272,1,0,0,0,1275, + 1276,5,352,0,0,1276,1342,5,389,0,0,1277,1281,5,269,0,0,1278,1280, + 9,0,0,0,1279,1278,1,0,0,0,1280,1283,1,0,0,0,1281,1282,1,0,0,0,1281, + 1279,1,0,0,0,1282,1342,1,0,0,0,1283,1281,1,0,0,0,1284,1285,5,245, + 0,0,1285,1342,3,358,179,0,1286,1290,5,245,0,0,1287,1289,9,0,0,0, + 1288,1287,1,0,0,0,1289,1292,1,0,0,0,1290,1291,1,0,0,0,1290,1288, + 1,0,0,0,1291,1342,1,0,0,0,1292,1290,1,0,0,0,1293,1294,5,59,0,0,1294, + 1296,5,142,0,0,1295,1297,3,164,82,0,1296,1295,1,0,0,0,1296,1297, + 1,0,0,0,1297,1298,1,0,0,0,1298,1299,3,354,177,0,1299,1301,5,203, + 0,0,1300,1302,5,293,0,0,1301,1300,1,0,0,0,1301,1302,1,0,0,0,1302, + 1303,1,0,0,0,1303,1306,3,72,36,0,1304,1305,5,332,0,0,1305,1307,3, + 354,177,0,1306,1304,1,0,0,0,1306,1307,1,0,0,0,1307,1308,1,0,0,0, + 1308,1309,5,2,0,0,1309,1310,3,226,113,0,1310,1313,5,3,0,0,1311,1312, + 5,207,0,0,1312,1314,3,42,21,0,1313,1311,1,0,0,0,1313,1314,1,0,0, + 0,1314,1342,1,0,0,0,1315,1316,5,96,0,0,1316,1318,5,142,0,0,1317, + 1319,3,166,83,0,1318,1317,1,0,0,0,1318,1319,1,0,0,0,1319,1320,1, + 0,0,0,1320,1321,3,354,177,0,1321,1323,5,203,0,0,1322,1324,5,293, + 0,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324,1325,1,0,0,0,1325,1326, + 3,72,36,0,1326,1342,1,0,0,0,1327,1328,5,205,0,0,1328,1330,3,72,36, + 0,1329,1331,3,128,64,0,1330,1329,1,0,0,0,1330,1331,1,0,0,0,1331, + 1332,1,0,0,0,1332,1333,3,334,167,0,1333,1342,1,0,0,0,1334,1338,3, + 6,3,0,1335,1337,9,0,0,0,1336,1335,1,0,0,0,1337,1340,1,0,0,0,1338, + 1339,1,0,0,0,1338,1336,1,0,0,0,1339,1342,1,0,0,0,1340,1338,1,0,0, + 0,1341,384,1,0,0,0,1341,386,1,0,0,0,1341,389,1,0,0,0,1341,394,1, + 0,0,0,1341,400,1,0,0,0,1341,418,1,0,0,0,1341,425,1,0,0,0,1341,432, + 1,0,0,0,1341,441,1,0,0,0,1341,453,1,0,0,0,1341,481,1,0,0,0,1341, + 504,1,0,0,0,1341,525,1,0,0,0,1341,542,1,0,0,0,1341,553,1,0,0,0,1341, + 560,1,0,0,0,1341,569,1,0,0,0,1341,578,1,0,0,0,1341,588,1,0,0,0,1341, + 600,1,0,0,0,1341,611,1,0,0,0,1341,622,1,0,0,0,1341,636,1,0,0,0,1341, + 647,1,0,0,0,1341,662,1,0,0,0,1341,674,1,0,0,0,1341,688,1,0,0,0,1341, + 698,1,0,0,0,1341,714,1,0,0,0,1341,722,1,0,0,0,1341,744,1,0,0,0,1341, + 754,1,0,0,0,1341,760,1,0,0,0,1341,767,1,0,0,0,1341,775,1,0,0,0,1341, + 784,1,0,0,0,1341,790,1,0,0,0,1341,797,1,0,0,0,1341,831,1,0,0,0,1341, + 853,1,0,0,0,1341,861,1,0,0,0,1341,891,1,0,0,0,1341,924,1,0,0,0,1341, + 933,1,0,0,0,1341,948,1,0,0,0,1341,959,1,0,0,0,1341,964,1,0,0,0,1341, + 976,1,0,0,0,1341,988,1,0,0,0,1341,997,1,0,0,0,1341,1005,1,0,0,0, + 1341,1017,1,0,0,0,1341,1023,1,0,0,0,1341,1041,1,0,0,0,1341,1049, + 1,0,0,0,1341,1052,1,0,0,0,1341,1060,1,0,0,0,1341,1073,1,0,0,0,1341, + 1082,1,0,0,0,1341,1088,1,0,0,0,1341,1094,1,0,0,0,1341,1108,1,0,0, + 0,1341,1113,1,0,0,0,1341,1127,1,0,0,0,1341,1130,1,0,0,0,1341,1133, + 1,0,0,0,1341,1143,1,0,0,0,1341,1147,1,0,0,0,1341,1163,1,0,0,0,1341, + 1169,1,0,0,0,1341,1171,1,0,0,0,1341,1187,1,0,0,0,1341,1194,1,0,0, + 0,1341,1203,1,0,0,0,1341,1211,1,0,0,0,1341,1219,1,0,0,0,1341,1223, + 1,0,0,0,1341,1230,1,0,0,0,1341,1239,1,0,0,0,1341,1242,1,0,0,0,1341, + 1252,1,0,0,0,1341,1257,1,0,0,0,1341,1268,1,0,0,0,1341,1277,1,0,0, + 0,1341,1284,1,0,0,0,1341,1286,1,0,0,0,1341,1293,1,0,0,0,1341,1315, + 1,0,0,0,1341,1327,1,0,0,0,1341,1334,1,0,0,0,1342,5,1,0,0,0,1343, + 1344,7,13,0,0,1344,1437,5,253,0,0,1345,1347,7,14,0,0,1346,1348,5, + 253,0,0,1347,1346,1,0,0,0,1347,1348,1,0,0,0,1348,1437,1,0,0,0,1349, + 1350,5,273,0,0,1350,1437,7,15,0,0,1351,1352,5,273,0,0,1352,1354, + 5,253,0,0,1353,1355,5,129,0,0,1354,1353,1,0,0,0,1354,1355,1,0,0, + 0,1355,1437,1,0,0,0,1356,1358,5,273,0,0,1357,1359,5,62,0,0,1358, + 1357,1,0,0,0,1358,1359,1,0,0,0,1359,1360,1,0,0,0,1360,1437,5,254, + 0,0,1361,1362,5,273,0,0,1362,1363,5,59,0,0,1363,1437,5,293,0,0,1364, + 1365,7,16,0,0,1365,1437,5,142,0,0,1366,1367,7,17,0,0,1367,1437,5, + 293,0,0,1368,1369,7,18,0,0,1369,1437,5,72,0,0,1370,1371,7,13,0,0, + 1371,1372,5,298,0,0,1372,1437,5,175,0,0,1373,1374,5,11,0,0,1374, + 1375,5,293,0,0,1375,1376,3,72,36,0,1376,1377,5,197,0,0,1377,1378, + 7,19,0,0,1378,1437,1,0,0,0,1379,1380,5,11,0,0,1380,1381,5,293,0, + 0,1381,1382,3,72,36,0,1382,1383,7,20,0,0,1383,1384,5,31,0,0,1384, + 1437,1,0,0,0,1385,1386,5,11,0,0,1386,1387,5,293,0,0,1387,1388,3, + 72,36,0,1388,1389,5,275,0,0,1389,1390,5,31,0,0,1390,1437,1,0,0,0, + 1391,1392,5,11,0,0,1392,1393,5,293,0,0,1393,1394,3,72,36,0,1394, + 1395,5,197,0,0,1395,1396,5,283,0,0,1396,1397,5,20,0,0,1397,1398, + 5,89,0,0,1398,1437,1,0,0,0,1399,1400,5,11,0,0,1400,1401,5,293,0, + 0,1401,1402,3,72,36,0,1402,1403,5,269,0,0,1403,1404,5,275,0,0,1404, + 1405,5,170,0,0,1405,1437,1,0,0,0,1406,1407,5,11,0,0,1407,1408,5, + 293,0,0,1408,1409,3,72,36,0,1409,1410,7,21,0,0,1410,1411,5,217,0, + 0,1411,1437,1,0,0,0,1412,1413,5,11,0,0,1413,1414,5,293,0,0,1414, + 1415,3,72,36,0,1415,1416,5,310,0,0,1416,1437,1,0,0,0,1417,1418,5, + 11,0,0,1418,1419,5,293,0,0,1419,1421,3,72,36,0,1420,1422,3,22,11, + 0,1421,1420,1,0,0,0,1421,1422,1,0,0,0,1422,1429,1,0,0,0,1423,1430, + 5,53,0,0,1424,1430,5,56,0,0,1425,1426,5,269,0,0,1426,1430,5,115, + 0,0,1427,1428,5,244,0,0,1428,1430,5,50,0,0,1429,1423,1,0,0,0,1429, + 1424,1,0,0,0,1429,1425,1,0,0,0,1429,1427,1,0,0,0,1430,1437,1,0,0, + 0,1431,1432,5,281,0,0,1432,1437,5,312,0,0,1433,1437,5,52,0,0,1434, + 1437,5,255,0,0,1435,1437,5,88,0,0,1436,1343,1,0,0,0,1436,1345,1, + 0,0,0,1436,1349,1,0,0,0,1436,1351,1,0,0,0,1436,1356,1,0,0,0,1436, + 1361,1,0,0,0,1436,1364,1,0,0,0,1436,1366,1,0,0,0,1436,1368,1,0,0, + 0,1436,1370,1,0,0,0,1436,1373,1,0,0,0,1436,1379,1,0,0,0,1436,1385, + 1,0,0,0,1436,1391,1,0,0,0,1436,1399,1,0,0,0,1436,1406,1,0,0,0,1436, + 1412,1,0,0,0,1436,1417,1,0,0,0,1436,1431,1,0,0,0,1436,1433,1,0,0, + 0,1436,1434,1,0,0,0,1436,1435,1,0,0,0,1437,7,1,0,0,0,1438,1439,5, + 45,0,0,1439,1440,5,31,0,0,1440,1444,3,184,92,0,1441,1442,5,279,0, + 0,1442,1443,5,31,0,0,1443,1445,3,188,94,0,1444,1441,1,0,0,0,1444, + 1445,1,0,0,0,1445,1446,1,0,0,0,1446,1447,5,152,0,0,1447,1448,5,382, + 0,0,1448,1449,5,30,0,0,1449,9,1,0,0,0,1450,1451,5,275,0,0,1451,1452, + 5,31,0,0,1452,1453,3,184,92,0,1453,1456,5,203,0,0,1454,1457,3,54, + 27,0,1455,1457,3,56,28,0,1456,1454,1,0,0,0,1456,1455,1,0,0,0,1457, + 1461,1,0,0,0,1458,1459,5,283,0,0,1459,1460,5,20,0,0,1460,1462,5, + 89,0,0,1461,1458,1,0,0,0,1461,1462,1,0,0,0,1462,11,1,0,0,0,1463, + 1464,5,170,0,0,1464,1465,3,364,182,0,1465,13,1,0,0,0,1466,1467,5, + 51,0,0,1467,1468,3,364,182,0,1468,15,1,0,0,0,1469,1471,3,32,16,0, + 1470,1469,1,0,0,0,1470,1471,1,0,0,0,1471,1472,1,0,0,0,1472,1473, + 3,100,50,0,1473,1474,3,92,46,0,1474,17,1,0,0,0,1475,1476,5,147,0, + 0,1476,1478,5,216,0,0,1477,1479,5,293,0,0,1478,1477,1,0,0,0,1478, + 1479,1,0,0,0,1479,1480,1,0,0,0,1480,1485,3,72,36,0,1481,1483,3,22, + 11,0,1482,1484,3,164,82,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484, + 1486,1,0,0,0,1485,1481,1,0,0,0,1485,1486,1,0,0,0,1486,1493,1,0,0, + 0,1487,1488,5,31,0,0,1488,1494,5,189,0,0,1489,1490,5,2,0,0,1490, + 1491,3,86,43,0,1491,1492,5,3,0,0,1492,1494,1,0,0,0,1493,1487,1,0, + 0,0,1493,1489,1,0,0,0,1493,1494,1,0,0,0,1494,1552,1,0,0,0,1495,1496, + 5,147,0,0,1496,1498,5,152,0,0,1497,1499,5,293,0,0,1498,1497,1,0, + 0,0,1498,1499,1,0,0,0,1499,1500,1,0,0,0,1500,1502,3,72,36,0,1501, + 1503,3,22,11,0,1502,1501,1,0,0,0,1502,1503,1,0,0,0,1503,1505,1,0, + 0,0,1504,1506,3,164,82,0,1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506, + 1513,1,0,0,0,1507,1508,5,31,0,0,1508,1514,5,189,0,0,1509,1510,5, + 2,0,0,1510,1511,3,86,43,0,1511,1512,5,3,0,0,1512,1514,1,0,0,0,1513, + 1507,1,0,0,0,1513,1509,1,0,0,0,1513,1514,1,0,0,0,1514,1552,1,0,0, + 0,1515,1516,5,147,0,0,1516,1518,5,152,0,0,1517,1519,5,293,0,0,1518, + 1517,1,0,0,0,1518,1519,1,0,0,0,1519,1520,1,0,0,0,1520,1521,3,72, + 36,0,1521,1522,5,244,0,0,1522,1523,3,128,64,0,1523,1552,1,0,0,0, + 1524,1525,5,147,0,0,1525,1527,5,216,0,0,1526,1528,5,169,0,0,1527, + 1526,1,0,0,0,1527,1528,1,0,0,0,1528,1529,1,0,0,0,1529,1530,5,90, + 0,0,1530,1532,3,364,182,0,1531,1533,3,218,109,0,1532,1531,1,0,0, + 0,1532,1533,1,0,0,0,1533,1535,1,0,0,0,1534,1536,3,58,29,0,1535,1534, + 1,0,0,0,1535,1536,1,0,0,0,1536,1552,1,0,0,0,1537,1538,5,147,0,0, + 1538,1540,5,216,0,0,1539,1541,5,169,0,0,1540,1539,1,0,0,0,1540,1541, + 1,0,0,0,1541,1542,1,0,0,0,1542,1544,5,90,0,0,1543,1545,3,364,182, + 0,1544,1543,1,0,0,0,1544,1545,1,0,0,0,1545,1546,1,0,0,0,1546,1549, + 3,36,18,0,1547,1548,5,207,0,0,1548,1550,3,42,21,0,1549,1547,1,0, + 0,0,1549,1550,1,0,0,0,1550,1552,1,0,0,0,1551,1475,1,0,0,0,1551,1495, + 1,0,0,0,1551,1515,1,0,0,0,1551,1524,1,0,0,0,1551,1537,1,0,0,0,1552, + 19,1,0,0,0,1553,1556,3,22,11,0,1554,1555,5,170,0,0,1555,1557,3,364, + 182,0,1556,1554,1,0,0,0,1556,1557,1,0,0,0,1557,21,1,0,0,0,1558,1559, + 5,217,0,0,1559,1560,5,2,0,0,1560,1565,3,24,12,0,1561,1562,5,4,0, + 0,1562,1564,3,24,12,0,1563,1561,1,0,0,0,1564,1567,1,0,0,0,1565,1563, + 1,0,0,0,1565,1566,1,0,0,0,1566,1568,1,0,0,0,1567,1565,1,0,0,0,1568, + 1569,5,3,0,0,1569,23,1,0,0,0,1570,1573,3,354,177,0,1571,1572,5,352, + 0,0,1572,1574,3,274,137,0,1573,1571,1,0,0,0,1573,1574,1,0,0,0,1574, + 1580,1,0,0,0,1575,1576,3,354,177,0,1576,1577,5,352,0,0,1577,1578, + 5,82,0,0,1578,1580,1,0,0,0,1579,1570,1,0,0,0,1579,1575,1,0,0,0,1580, + 25,1,0,0,0,1581,1582,7,22,0,0,1582,27,1,0,0,0,1583,1589,3,90,45, + 0,1584,1589,3,364,182,0,1585,1589,3,276,138,0,1586,1589,3,278,139, + 0,1587,1589,3,280,140,0,1588,1583,1,0,0,0,1588,1584,1,0,0,0,1588, + 1585,1,0,0,0,1588,1586,1,0,0,0,1588,1587,1,0,0,0,1589,29,1,0,0,0, + 1590,1595,3,354,177,0,1591,1592,5,5,0,0,1592,1594,3,354,177,0,1593, + 1591,1,0,0,0,1594,1597,1,0,0,0,1595,1593,1,0,0,0,1595,1596,1,0,0, + 0,1596,31,1,0,0,0,1597,1595,1,0,0,0,1598,1599,5,346,0,0,1599,1604, + 3,34,17,0,1600,1601,5,4,0,0,1601,1603,3,34,17,0,1602,1600,1,0,0, + 0,1603,1606,1,0,0,0,1604,1602,1,0,0,0,1604,1605,1,0,0,0,1605,33, + 1,0,0,0,1606,1604,1,0,0,0,1607,1609,3,350,175,0,1608,1610,3,184, + 92,0,1609,1608,1,0,0,0,1609,1610,1,0,0,0,1610,1612,1,0,0,0,1611, + 1613,5,20,0,0,1612,1611,1,0,0,0,1612,1613,1,0,0,0,1613,1614,1,0, + 0,0,1614,1615,5,2,0,0,1615,1616,3,16,8,0,1616,1617,5,3,0,0,1617, + 35,1,0,0,0,1618,1619,5,332,0,0,1619,1620,3,222,111,0,1620,37,1,0, + 0,0,1621,1622,5,207,0,0,1622,1638,3,50,25,0,1623,1624,5,218,0,0, + 1624,1625,5,31,0,0,1625,1638,3,246,123,0,1626,1638,3,10,5,0,1627, + 1638,3,8,4,0,1628,1638,3,218,109,0,1629,1638,3,58,29,0,1630,1631, + 5,170,0,0,1631,1638,3,364,182,0,1632,1633,5,51,0,0,1633,1638,3,364, + 182,0,1634,1635,5,297,0,0,1635,1638,3,42,21,0,1636,1638,3,40,20, + 0,1637,1621,1,0,0,0,1637,1623,1,0,0,0,1637,1626,1,0,0,0,1637,1627, + 1,0,0,0,1637,1628,1,0,0,0,1637,1629,1,0,0,0,1637,1630,1,0,0,0,1637, + 1632,1,0,0,0,1637,1634,1,0,0,0,1637,1636,1,0,0,0,1638,1641,1,0,0, + 0,1639,1637,1,0,0,0,1639,1640,1,0,0,0,1640,39,1,0,0,0,1641,1639, + 1,0,0,0,1642,1643,5,162,0,0,1643,1644,5,382,0,0,1644,41,1,0,0,0, + 1645,1646,5,2,0,0,1646,1651,3,44,22,0,1647,1648,5,4,0,0,1648,1650, + 3,44,22,0,1649,1647,1,0,0,0,1650,1653,1,0,0,0,1651,1649,1,0,0,0, + 1651,1652,1,0,0,0,1652,1654,1,0,0,0,1653,1651,1,0,0,0,1654,1655, + 5,3,0,0,1655,43,1,0,0,0,1656,1661,3,46,23,0,1657,1659,5,352,0,0, + 1658,1657,1,0,0,0,1658,1659,1,0,0,0,1659,1660,1,0,0,0,1660,1662, + 3,48,24,0,1661,1658,1,0,0,0,1661,1662,1,0,0,0,1662,45,1,0,0,0,1663, + 1668,3,354,177,0,1664,1665,5,5,0,0,1665,1667,3,354,177,0,1666,1664, + 1,0,0,0,1667,1670,1,0,0,0,1668,1666,1,0,0,0,1668,1669,1,0,0,0,1669, + 1673,1,0,0,0,1670,1668,1,0,0,0,1671,1673,3,364,182,0,1672,1663,1, + 0,0,0,1672,1671,1,0,0,0,1673,47,1,0,0,0,1674,1679,5,382,0,0,1675, + 1679,5,384,0,0,1676,1679,3,282,141,0,1677,1679,3,364,182,0,1678, + 1674,1,0,0,0,1678,1675,1,0,0,0,1678,1676,1,0,0,0,1678,1677,1,0,0, + 0,1679,49,1,0,0,0,1680,1681,5,2,0,0,1681,1686,3,52,26,0,1682,1683, + 5,4,0,0,1683,1685,3,52,26,0,1684,1682,1,0,0,0,1685,1688,1,0,0,0, + 1686,1684,1,0,0,0,1686,1687,1,0,0,0,1687,1689,1,0,0,0,1688,1686, + 1,0,0,0,1689,1690,5,3,0,0,1690,51,1,0,0,0,1691,1696,3,46,23,0,1692, + 1694,5,352,0,0,1693,1692,1,0,0,0,1693,1694,1,0,0,0,1694,1695,1,0, + 0,0,1695,1697,3,254,127,0,1696,1693,1,0,0,0,1696,1697,1,0,0,0,1697, + 53,1,0,0,0,1698,1699,5,2,0,0,1699,1704,3,274,137,0,1700,1701,5,4, + 0,0,1701,1703,3,274,137,0,1702,1700,1,0,0,0,1703,1706,1,0,0,0,1704, + 1702,1,0,0,0,1704,1705,1,0,0,0,1705,1707,1,0,0,0,1706,1704,1,0,0, + 0,1707,1708,5,3,0,0,1708,55,1,0,0,0,1709,1710,5,2,0,0,1710,1715, + 3,54,27,0,1711,1712,5,4,0,0,1712,1714,3,54,27,0,1713,1711,1,0,0, + 0,1714,1717,1,0,0,0,1715,1713,1,0,0,0,1715,1716,1,0,0,0,1716,1718, + 1,0,0,0,1717,1715,1,0,0,0,1718,1719,5,3,0,0,1719,57,1,0,0,0,1720, + 1721,5,283,0,0,1721,1722,5,20,0,0,1722,1727,3,60,30,0,1723,1724, + 5,283,0,0,1724,1725,5,31,0,0,1725,1727,3,62,31,0,1726,1720,1,0,0, + 0,1726,1723,1,0,0,0,1727,59,1,0,0,0,1728,1729,5,146,0,0,1729,1730, + 3,364,182,0,1730,1731,5,212,0,0,1731,1732,3,364,182,0,1732,1735, + 1,0,0,0,1733,1735,3,354,177,0,1734,1728,1,0,0,0,1734,1733,1,0,0, + 0,1735,61,1,0,0,0,1736,1740,3,364,182,0,1737,1738,5,346,0,0,1738, + 1739,5,267,0,0,1739,1741,3,42,21,0,1740,1737,1,0,0,0,1740,1741,1, + 0,0,0,1741,63,1,0,0,0,1742,1743,3,18,9,0,1743,1744,3,16,8,0,1744, + 1801,1,0,0,0,1745,1749,3,136,68,0,1746,1747,3,18,9,0,1747,1748,3, + 106,53,0,1748,1750,1,0,0,0,1749,1746,1,0,0,0,1750,1751,1,0,0,0,1751, + 1749,1,0,0,0,1751,1752,1,0,0,0,1752,1801,1,0,0,0,1753,1754,5,84, + 0,0,1754,1755,5,123,0,0,1755,1756,3,72,36,0,1756,1758,3,216,108, + 0,1757,1759,3,128,64,0,1758,1757,1,0,0,0,1758,1759,1,0,0,0,1759, + 1801,1,0,0,0,1760,1761,5,329,0,0,1761,1762,3,72,36,0,1762,1763,3, + 216,108,0,1763,1765,3,114,57,0,1764,1766,3,128,64,0,1765,1764,1, + 0,0,0,1765,1766,1,0,0,0,1766,1801,1,0,0,0,1767,1768,5,179,0,0,1768, + 1769,5,152,0,0,1769,1770,3,72,36,0,1770,1771,3,216,108,0,1771,1777, + 5,332,0,0,1772,1778,3,90,45,0,1773,1774,5,2,0,0,1774,1775,3,16,8, + 0,1775,1776,5,3,0,0,1776,1778,1,0,0,0,1777,1772,1,0,0,0,1777,1773, + 1,0,0,0,1778,1779,1,0,0,0,1779,1780,3,216,108,0,1780,1781,5,203, + 0,0,1781,1785,3,262,131,0,1782,1784,3,116,58,0,1783,1782,1,0,0,0, 1784,1787,1,0,0,0,1785,1783,1,0,0,0,1785,1786,1,0,0,0,1786,1791, - 1,0,0,0,1787,1785,1,0,0,0,1788,1790,3,116,58,0,1789,1788,1,0,0,0, - 1790,1793,1,0,0,0,1791,1789,1,0,0,0,1791,1792,1,0,0,0,1792,1795, - 1,0,0,0,1793,1791,1,0,0,0,1794,1736,1,0,0,0,1794,1739,1,0,0,0,1794, - 1747,1,0,0,0,1794,1754,1,0,0,0,1794,1761,1,0,0,0,1795,65,1,0,0,0, - 1796,1797,3,86,43,0,1797,67,1,0,0,0,1798,1799,3,86,43,0,1799,69, - 1,0,0,0,1800,1801,3,224,112,0,1801,71,1,0,0,0,1802,1803,3,224,112, - 0,1803,73,1,0,0,0,1804,1805,3,226,113,0,1805,75,1,0,0,0,1806,1807, - 3,226,113,0,1807,77,1,0,0,0,1808,1811,3,218,109,0,1809,1811,4,39, - 0,0,1810,1808,1,0,0,0,1810,1809,1,0,0,0,1811,79,1,0,0,0,1812,1813, - 3,218,109,0,1813,81,1,0,0,0,1814,1819,3,78,39,0,1815,1816,5,4,0, - 0,1816,1818,3,78,39,0,1817,1815,1,0,0,0,1818,1821,1,0,0,0,1819,1817, - 1,0,0,0,1819,1820,1,0,0,0,1820,83,1,0,0,0,1821,1819,1,0,0,0,1822, - 1823,3,344,172,0,1823,85,1,0,0,0,1824,1825,5,136,0,0,1825,1826,5, - 2,0,0,1826,1827,3,248,124,0,1827,1828,5,3,0,0,1828,1831,1,0,0,0, - 1829,1831,3,218,109,0,1830,1824,1,0,0,0,1830,1829,1,0,0,0,1831,87, - 1,0,0,0,1832,1833,5,209,0,0,1833,1834,5,31,0,0,1834,1836,3,92,46, - 0,1835,1832,1,0,0,0,1835,1836,1,0,0,0,1836,1840,1,0,0,0,1837,1838, - 5,44,0,0,1838,1839,5,31,0,0,1839,1841,3,94,47,0,1840,1837,1,0,0, - 0,1840,1841,1,0,0,0,1841,1845,1,0,0,0,1842,1843,5,93,0,0,1843,1844, - 5,31,0,0,1844,1846,3,94,47,0,1845,1842,1,0,0,0,1845,1846,1,0,0,0, - 1846,1850,1,0,0,0,1847,1848,5,278,0,0,1848,1849,5,31,0,0,1849,1851, - 3,92,46,0,1850,1847,1,0,0,0,1850,1851,1,0,0,0,1851,1853,1,0,0,0, - 1852,1854,3,326,163,0,1853,1852,1,0,0,0,1853,1854,1,0,0,0,1854,1856, - 1,0,0,0,1855,1857,3,90,45,0,1856,1855,1,0,0,0,1856,1857,1,0,0,0, - 1857,1860,1,0,0,0,1858,1859,5,202,0,0,1859,1861,3,248,124,0,1860, - 1858,1,0,0,0,1860,1861,1,0,0,0,1861,89,1,0,0,0,1862,1865,5,165,0, - 0,1863,1866,5,10,0,0,1864,1866,3,248,124,0,1865,1863,1,0,0,0,1865, - 1864,1,0,0,0,1866,91,1,0,0,0,1867,1872,3,100,50,0,1868,1869,5,4, - 0,0,1869,1871,3,100,50,0,1870,1868,1,0,0,0,1871,1874,1,0,0,0,1872, - 1870,1,0,0,0,1872,1873,1,0,0,0,1873,93,1,0,0,0,1874,1872,1,0,0,0, - 1875,1880,3,248,124,0,1876,1877,5,4,0,0,1877,1879,3,248,124,0,1878, - 1876,1,0,0,0,1879,1882,1,0,0,0,1880,1878,1,0,0,0,1880,1881,1,0,0, - 0,1881,95,1,0,0,0,1882,1880,1,0,0,0,1883,1884,6,48,-1,0,1884,1885, - 3,98,49,0,1885,1906,1,0,0,0,1886,1887,10,3,0,0,1887,1889,7,23,0, - 0,1888,1890,3,166,83,0,1889,1888,1,0,0,0,1889,1890,1,0,0,0,1890, - 1891,1,0,0,0,1891,1905,3,96,48,4,1892,1893,10,2,0,0,1893,1895,5, - 148,0,0,1894,1896,3,166,83,0,1895,1894,1,0,0,0,1895,1896,1,0,0,0, - 1896,1897,1,0,0,0,1897,1905,3,96,48,3,1898,1899,10,1,0,0,1899,1901, - 7,24,0,0,1900,1902,3,166,83,0,1901,1900,1,0,0,0,1901,1902,1,0,0, - 0,1902,1903,1,0,0,0,1903,1905,3,96,48,2,1904,1886,1,0,0,0,1904,1892, - 1,0,0,0,1904,1898,1,0,0,0,1905,1908,1,0,0,0,1906,1904,1,0,0,0,1906, - 1907,1,0,0,0,1907,97,1,0,0,0,1908,1906,1,0,0,0,1909,1934,3,104,52, - 0,1910,1912,3,132,66,0,1911,1913,3,102,51,0,1912,1911,1,0,0,0,1913, - 1914,1,0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915,1934,1,0,0, - 0,1916,1917,5,293,0,0,1917,1934,3,72,36,0,1918,1919,5,333,0,0,1919, - 1924,3,248,124,0,1920,1921,5,4,0,0,1921,1923,3,248,124,0,1922,1920, - 1,0,0,0,1923,1926,1,0,0,0,1924,1922,1,0,0,0,1924,1925,1,0,0,0,1925, - 1927,1,0,0,0,1926,1924,1,0,0,0,1927,1928,3,212,106,0,1928,1934,1, - 0,0,0,1929,1930,5,2,0,0,1930,1931,3,16,8,0,1931,1932,5,3,0,0,1932, - 1934,1,0,0,0,1933,1909,1,0,0,0,1933,1910,1,0,0,0,1933,1916,1,0,0, - 0,1933,1918,1,0,0,0,1933,1929,1,0,0,0,1934,99,1,0,0,0,1935,1938, - 3,78,39,0,1936,1938,3,248,124,0,1937,1935,1,0,0,0,1937,1936,1,0, - 0,0,1938,1940,1,0,0,0,1939,1941,7,25,0,0,1940,1939,1,0,0,0,1940, - 1941,1,0,0,0,1941,1944,1,0,0,0,1942,1943,5,199,0,0,1943,1945,7,26, - 0,0,1944,1942,1,0,0,0,1944,1945,1,0,0,0,1945,101,1,0,0,0,1946,1948, - 3,106,53,0,1947,1949,3,124,62,0,1948,1947,1,0,0,0,1948,1949,1,0, - 0,0,1949,1950,1,0,0,0,1950,1951,3,88,44,0,1951,1974,1,0,0,0,1952, - 1956,3,108,54,0,1953,1955,3,164,82,0,1954,1953,1,0,0,0,1955,1958, - 1,0,0,0,1956,1954,1,0,0,0,1956,1957,1,0,0,0,1957,1960,1,0,0,0,1958, - 1956,1,0,0,0,1959,1961,3,124,62,0,1960,1959,1,0,0,0,1960,1961,1, - 0,0,0,1961,1963,1,0,0,0,1962,1964,3,136,68,0,1963,1962,1,0,0,0,1963, - 1964,1,0,0,0,1964,1966,1,0,0,0,1965,1967,3,126,63,0,1966,1965,1, - 0,0,0,1966,1967,1,0,0,0,1967,1969,1,0,0,0,1968,1970,3,326,163,0, - 1969,1968,1,0,0,0,1969,1970,1,0,0,0,1970,1971,1,0,0,0,1971,1972, - 3,88,44,0,1972,1974,1,0,0,0,1973,1946,1,0,0,0,1973,1952,1,0,0,0, - 1974,103,1,0,0,0,1975,1977,3,106,53,0,1976,1978,3,132,66,0,1977, - 1976,1,0,0,0,1977,1978,1,0,0,0,1978,1982,1,0,0,0,1979,1981,3,164, - 82,0,1980,1979,1,0,0,0,1981,1984,1,0,0,0,1982,1980,1,0,0,0,1982, - 1983,1,0,0,0,1983,1986,1,0,0,0,1984,1982,1,0,0,0,1985,1987,3,124, - 62,0,1986,1985,1,0,0,0,1986,1987,1,0,0,0,1987,1989,1,0,0,0,1988, - 1990,3,136,68,0,1989,1988,1,0,0,0,1989,1990,1,0,0,0,1990,1992,1, - 0,0,0,1991,1993,3,126,63,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0,1993, - 1995,1,0,0,0,1994,1996,3,326,163,0,1995,1994,1,0,0,0,1995,1996,1, - 0,0,0,1996,2020,1,0,0,0,1997,1999,3,108,54,0,1998,2000,3,132,66, - 0,1999,1998,1,0,0,0,1999,2000,1,0,0,0,2000,2004,1,0,0,0,2001,2003, - 3,164,82,0,2002,2001,1,0,0,0,2003,2006,1,0,0,0,2004,2002,1,0,0,0, - 2004,2005,1,0,0,0,2005,2008,1,0,0,0,2006,2004,1,0,0,0,2007,2009, - 3,124,62,0,2008,2007,1,0,0,0,2008,2009,1,0,0,0,2009,2011,1,0,0,0, - 2010,2012,3,136,68,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012,2014, - 1,0,0,0,2013,2015,3,126,63,0,2014,2013,1,0,0,0,2014,2015,1,0,0,0, - 2015,2017,1,0,0,0,2016,2018,3,326,163,0,2017,2016,1,0,0,0,2017,2018, - 1,0,0,0,2018,2020,1,0,0,0,2019,1975,1,0,0,0,2019,1997,1,0,0,0,2020, - 105,1,0,0,0,2021,2022,5,263,0,0,2022,2023,5,314,0,0,2023,2025,5, - 2,0,0,2024,2026,3,166,83,0,2025,2024,1,0,0,0,2025,2026,1,0,0,0,2026, - 2027,1,0,0,0,2027,2028,3,254,127,0,2028,2029,5,3,0,0,2029,2041,1, - 0,0,0,2030,2032,5,177,0,0,2031,2033,3,166,83,0,2032,2031,1,0,0,0, - 2032,2033,1,0,0,0,2033,2034,1,0,0,0,2034,2041,3,254,127,0,2035,2037, - 5,238,0,0,2036,2038,3,166,83,0,2037,2036,1,0,0,0,2037,2038,1,0,0, - 0,2038,2039,1,0,0,0,2039,2041,3,254,127,0,2040,2021,1,0,0,0,2040, - 2030,1,0,0,0,2040,2035,1,0,0,0,2041,2043,1,0,0,0,2042,2044,3,214, - 107,0,2043,2042,1,0,0,0,2043,2044,1,0,0,0,2044,2047,1,0,0,0,2045, - 2046,5,236,0,0,2046,2048,3,358,179,0,2047,2045,1,0,0,0,2047,2048, - 1,0,0,0,2048,2049,1,0,0,0,2049,2050,5,332,0,0,2050,2063,3,358,179, - 0,2051,2061,5,20,0,0,2052,2062,3,182,91,0,2053,2062,3,312,156,0, - 2054,2057,5,2,0,0,2055,2058,3,182,91,0,2056,2058,3,312,156,0,2057, - 2055,1,0,0,0,2057,2056,1,0,0,0,2058,2059,1,0,0,0,2059,2060,5,3,0, - 0,2060,2062,1,0,0,0,2061,2052,1,0,0,0,2061,2053,1,0,0,0,2061,2054, - 1,0,0,0,2062,2064,1,0,0,0,2063,2051,1,0,0,0,2063,2064,1,0,0,0,2064, - 2066,1,0,0,0,2065,2067,3,214,107,0,2066,2065,1,0,0,0,2066,2067,1, - 0,0,0,2067,2070,1,0,0,0,2068,2069,5,235,0,0,2069,2071,3,358,179, - 0,2070,2068,1,0,0,0,2070,2071,1,0,0,0,2071,107,1,0,0,0,2072,2076, - 5,263,0,0,2073,2075,3,128,64,0,2074,2073,1,0,0,0,2075,2078,1,0,0, - 0,2076,2074,1,0,0,0,2076,2077,1,0,0,0,2077,2080,1,0,0,0,2078,2076, - 1,0,0,0,2079,2081,3,166,83,0,2080,2079,1,0,0,0,2080,2081,1,0,0,0, - 2081,2082,1,0,0,0,2082,2083,3,238,119,0,2083,109,1,0,0,0,2084,2085, - 5,269,0,0,2085,2086,3,120,60,0,2086,111,1,0,0,0,2087,2088,5,343, - 0,0,2088,2091,5,178,0,0,2089,2090,5,14,0,0,2090,2092,3,256,128,0, - 2091,2089,1,0,0,0,2091,2092,1,0,0,0,2092,2093,1,0,0,0,2093,2101, - 5,300,0,0,2094,2102,5,84,0,0,2095,2096,5,329,0,0,2096,2099,5,269, - 0,0,2097,2100,5,363,0,0,2098,2100,3,120,60,0,2099,2097,1,0,0,0,2099, - 2098,1,0,0,0,2100,2102,1,0,0,0,2101,2094,1,0,0,0,2101,2095,1,0,0, - 0,2102,113,1,0,0,0,2103,2104,5,343,0,0,2104,2105,5,197,0,0,2105, - 2108,5,178,0,0,2106,2107,5,31,0,0,2107,2109,5,296,0,0,2108,2106, - 1,0,0,0,2108,2109,1,0,0,0,2109,2112,1,0,0,0,2110,2111,5,14,0,0,2111, - 2113,3,256,128,0,2112,2110,1,0,0,0,2112,2113,1,0,0,0,2113,2114,1, - 0,0,0,2114,2115,5,300,0,0,2115,2116,3,118,59,0,2116,115,1,0,0,0, - 2117,2118,5,343,0,0,2118,2119,5,197,0,0,2119,2120,5,178,0,0,2120, - 2121,5,31,0,0,2121,2124,5,280,0,0,2122,2123,5,14,0,0,2123,2125,3, - 256,128,0,2124,2122,1,0,0,0,2124,2125,1,0,0,0,2125,2126,1,0,0,0, - 2126,2131,5,300,0,0,2127,2132,5,84,0,0,2128,2129,5,329,0,0,2129, - 2130,5,269,0,0,2130,2132,3,120,60,0,2131,2127,1,0,0,0,2131,2128, - 1,0,0,0,2132,117,1,0,0,0,2133,2134,5,147,0,0,2134,2152,5,363,0,0, - 2135,2136,5,147,0,0,2136,2137,5,2,0,0,2137,2138,3,216,108,0,2138, - 2139,5,3,0,0,2139,2140,5,333,0,0,2140,2141,5,2,0,0,2141,2146,3,248, - 124,0,2142,2143,5,4,0,0,2143,2145,3,248,124,0,2144,2142,1,0,0,0, - 2145,2148,1,0,0,0,2146,2144,1,0,0,0,2146,2147,1,0,0,0,2147,2149, - 1,0,0,0,2148,2146,1,0,0,0,2149,2150,5,3,0,0,2150,2152,1,0,0,0,2151, - 2133,1,0,0,0,2151,2135,1,0,0,0,2152,119,1,0,0,0,2153,2158,3,122, - 61,0,2154,2155,5,4,0,0,2155,2157,3,122,61,0,2156,2154,1,0,0,0,2157, - 2160,1,0,0,0,2158,2156,1,0,0,0,2158,2159,1,0,0,0,2159,121,1,0,0, - 0,2160,2158,1,0,0,0,2161,2162,3,218,109,0,2162,2163,5,352,0,0,2163, - 2164,3,248,124,0,2164,123,1,0,0,0,2165,2166,5,344,0,0,2166,2167, - 3,256,128,0,2167,125,1,0,0,0,2168,2169,5,132,0,0,2169,2170,3,256, - 128,0,2170,127,1,0,0,0,2171,2172,5,374,0,0,2172,2179,3,130,65,0, - 2173,2175,5,4,0,0,2174,2173,1,0,0,0,2174,2175,1,0,0,0,2175,2176, - 1,0,0,0,2176,2178,3,130,65,0,2177,2174,1,0,0,0,2178,2181,1,0,0,0, - 2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,2182,1,0,0,0,2181,2179, - 1,0,0,0,2182,2183,5,375,0,0,2183,129,1,0,0,0,2184,2198,3,348,174, - 0,2185,2186,3,348,174,0,2186,2187,5,2,0,0,2187,2192,3,264,132,0, - 2188,2189,5,4,0,0,2189,2191,3,264,132,0,2190,2188,1,0,0,0,2191,2194, - 1,0,0,0,2192,2190,1,0,0,0,2192,2193,1,0,0,0,2193,2195,1,0,0,0,2194, - 2192,1,0,0,0,2195,2196,5,3,0,0,2196,2198,1,0,0,0,2197,2184,1,0,0, - 0,2197,2185,1,0,0,0,2198,131,1,0,0,0,2199,2200,5,123,0,0,2200,2205, - 3,168,84,0,2201,2202,5,4,0,0,2202,2204,3,168,84,0,2203,2201,1,0, - 0,0,2204,2207,1,0,0,0,2205,2203,1,0,0,0,2205,2206,1,0,0,0,2206,2211, - 1,0,0,0,2207,2205,1,0,0,0,2208,2210,3,164,82,0,2209,2208,1,0,0,0, - 2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212,1,0,0,0,2212,2215, - 1,0,0,0,2213,2211,1,0,0,0,2214,2216,3,144,72,0,2215,2214,1,0,0,0, - 2215,2216,1,0,0,0,2216,2218,1,0,0,0,2217,2219,3,150,75,0,2218,2217, - 1,0,0,0,2218,2219,1,0,0,0,2219,133,1,0,0,0,2220,2222,5,119,0,0,2221, - 2220,1,0,0,0,2221,2222,1,0,0,0,2222,2223,1,0,0,0,2223,2224,7,27, - 0,0,2224,2225,5,20,0,0,2225,2228,5,201,0,0,2226,2229,5,382,0,0,2227, - 2229,3,358,179,0,2228,2226,1,0,0,0,2228,2227,1,0,0,0,2229,2238,1, - 0,0,0,2230,2232,5,119,0,0,2231,2230,1,0,0,0,2231,2232,1,0,0,0,2232, - 2233,1,0,0,0,2233,2234,7,28,0,0,2234,2235,5,20,0,0,2235,2236,5,201, - 0,0,2236,2238,3,260,130,0,2237,2221,1,0,0,0,2237,2231,1,0,0,0,2238, - 135,1,0,0,0,2239,2240,5,130,0,0,2240,2241,5,31,0,0,2241,2246,3,138, - 69,0,2242,2243,5,4,0,0,2243,2245,3,138,69,0,2244,2242,1,0,0,0,2245, - 2248,1,0,0,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2279,1,0,0, - 0,2248,2246,1,0,0,0,2249,2250,5,130,0,0,2250,2251,5,31,0,0,2251, - 2256,3,248,124,0,2252,2253,5,4,0,0,2253,2255,3,248,124,0,2254,2252, - 1,0,0,0,2255,2258,1,0,0,0,2256,2254,1,0,0,0,2256,2257,1,0,0,0,2257, - 2276,1,0,0,0,2258,2256,1,0,0,0,2259,2260,5,346,0,0,2260,2277,5,256, - 0,0,2261,2262,5,346,0,0,2262,2277,5,61,0,0,2263,2264,5,131,0,0,2264, - 2265,5,271,0,0,2265,2266,5,2,0,0,2266,2271,3,142,71,0,2267,2268, - 5,4,0,0,2268,2270,3,142,71,0,2269,2267,1,0,0,0,2270,2273,1,0,0,0, - 2271,2269,1,0,0,0,2271,2272,1,0,0,0,2272,2274,1,0,0,0,2273,2271, - 1,0,0,0,2274,2275,5,3,0,0,2275,2277,1,0,0,0,2276,2259,1,0,0,0,2276, - 2261,1,0,0,0,2276,2263,1,0,0,0,2276,2277,1,0,0,0,2277,2279,1,0,0, - 0,2278,2239,1,0,0,0,2278,2249,1,0,0,0,2279,137,1,0,0,0,2280,2284, - 3,78,39,0,2281,2284,3,140,70,0,2282,2284,3,248,124,0,2283,2280,1, - 0,0,0,2283,2281,1,0,0,0,2283,2282,1,0,0,0,2284,139,1,0,0,0,2285, - 2286,7,29,0,0,2286,2287,5,2,0,0,2287,2292,3,142,71,0,2288,2289,5, - 4,0,0,2289,2291,3,142,71,0,2290,2288,1,0,0,0,2291,2294,1,0,0,0,2292, - 2290,1,0,0,0,2292,2293,1,0,0,0,2293,2295,1,0,0,0,2294,2292,1,0,0, - 0,2295,2296,5,3,0,0,2296,2317,1,0,0,0,2297,2298,5,131,0,0,2298,2299, - 5,271,0,0,2299,2302,5,2,0,0,2300,2303,3,140,70,0,2301,2303,3,142, - 71,0,2302,2300,1,0,0,0,2302,2301,1,0,0,0,2303,2311,1,0,0,0,2304, - 2307,5,4,0,0,2305,2308,3,140,70,0,2306,2308,3,142,71,0,2307,2305, - 1,0,0,0,2307,2306,1,0,0,0,2308,2310,1,0,0,0,2309,2304,1,0,0,0,2310, - 2313,1,0,0,0,2311,2309,1,0,0,0,2311,2312,1,0,0,0,2312,2314,1,0,0, - 0,2313,2311,1,0,0,0,2314,2315,5,3,0,0,2315,2317,1,0,0,0,2316,2285, - 1,0,0,0,2316,2297,1,0,0,0,2317,141,1,0,0,0,2318,2339,3,78,39,0,2319, - 2339,3,248,124,0,2320,2335,5,2,0,0,2321,2324,3,78,39,0,2322,2324, - 3,248,124,0,2323,2321,1,0,0,0,2323,2322,1,0,0,0,2324,2332,1,0,0, - 0,2325,2328,5,4,0,0,2326,2329,3,78,39,0,2327,2329,3,248,124,0,2328, - 2326,1,0,0,0,2328,2327,1,0,0,0,2329,2331,1,0,0,0,2330,2325,1,0,0, - 0,2331,2334,1,0,0,0,2332,2330,1,0,0,0,2332,2333,1,0,0,0,2333,2336, - 1,0,0,0,2334,2332,1,0,0,0,2335,2323,1,0,0,0,2335,2336,1,0,0,0,2336, - 2337,1,0,0,0,2337,2339,5,3,0,0,2338,2318,1,0,0,0,2338,2319,1,0,0, - 0,2338,2320,1,0,0,0,2339,143,1,0,0,0,2340,2341,5,223,0,0,2341,2342, - 5,2,0,0,2342,2343,3,236,118,0,2343,2344,5,119,0,0,2344,2345,3,146, - 73,0,2345,2346,5,140,0,0,2346,2347,5,2,0,0,2347,2352,3,148,74,0, - 2348,2349,5,4,0,0,2349,2351,3,148,74,0,2350,2348,1,0,0,0,2351,2354, - 1,0,0,0,2352,2350,1,0,0,0,2352,2353,1,0,0,0,2353,2355,1,0,0,0,2354, - 2352,1,0,0,0,2355,2356,5,3,0,0,2356,2357,5,3,0,0,2357,145,1,0,0, - 0,2358,2371,3,348,174,0,2359,2360,5,2,0,0,2360,2365,3,348,174,0, - 2361,2362,5,4,0,0,2362,2364,3,348,174,0,2363,2361,1,0,0,0,2364,2367, - 1,0,0,0,2365,2363,1,0,0,0,2365,2366,1,0,0,0,2366,2368,1,0,0,0,2367, - 2365,1,0,0,0,2368,2369,5,3,0,0,2369,2371,1,0,0,0,2370,2358,1,0,0, - 0,2370,2359,1,0,0,0,2371,147,1,0,0,0,2372,2377,3,248,124,0,2373, - 2375,5,20,0,0,2374,2373,1,0,0,0,2374,2375,1,0,0,0,2375,2376,1,0, - 0,0,2376,2378,3,348,174,0,2377,2374,1,0,0,0,2377,2378,1,0,0,0,2378, - 149,1,0,0,0,2379,2382,5,327,0,0,2380,2381,7,30,0,0,2381,2383,5,199, - 0,0,2382,2380,1,0,0,0,2382,2383,1,0,0,0,2383,2384,1,0,0,0,2384,2387, - 5,2,0,0,2385,2388,3,152,76,0,2386,2388,3,154,77,0,2387,2385,1,0, - 0,0,2387,2386,1,0,0,0,2388,2389,1,0,0,0,2389,2394,5,3,0,0,2390,2392, - 5,20,0,0,2391,2390,1,0,0,0,2391,2392,1,0,0,0,2392,2393,1,0,0,0,2393, - 2395,3,348,174,0,2394,2391,1,0,0,0,2394,2395,1,0,0,0,2395,151,1, - 0,0,0,2396,2397,3,348,174,0,2397,2398,5,119,0,0,2398,2399,3,348, - 174,0,2399,2400,5,140,0,0,2400,2401,5,2,0,0,2401,2406,3,158,79,0, - 2402,2403,5,4,0,0,2403,2405,3,158,79,0,2404,2402,1,0,0,0,2405,2408, - 1,0,0,0,2406,2404,1,0,0,0,2406,2407,1,0,0,0,2407,2409,1,0,0,0,2408, - 2406,1,0,0,0,2409,2410,5,3,0,0,2410,153,1,0,0,0,2411,2412,5,2,0, - 0,2412,2417,3,348,174,0,2413,2414,5,4,0,0,2414,2416,3,348,174,0, - 2415,2413,1,0,0,0,2416,2419,1,0,0,0,2417,2415,1,0,0,0,2417,2418, - 1,0,0,0,2418,2420,1,0,0,0,2419,2417,1,0,0,0,2420,2421,5,3,0,0,2421, - 2422,5,119,0,0,2422,2423,3,348,174,0,2423,2424,5,140,0,0,2424,2425, - 5,2,0,0,2425,2430,3,156,78,0,2426,2427,5,4,0,0,2427,2429,3,156,78, - 0,2428,2426,1,0,0,0,2429,2432,1,0,0,0,2430,2428,1,0,0,0,2430,2431, - 1,0,0,0,2431,2433,1,0,0,0,2432,2430,1,0,0,0,2433,2434,5,3,0,0,2434, - 155,1,0,0,0,2435,2436,5,2,0,0,2436,2441,3,218,109,0,2437,2438,5, - 4,0,0,2438,2440,3,218,109,0,2439,2437,1,0,0,0,2440,2443,1,0,0,0, - 2441,2439,1,0,0,0,2441,2442,1,0,0,0,2442,2444,1,0,0,0,2443,2441, - 1,0,0,0,2444,2449,5,3,0,0,2445,2447,5,20,0,0,2446,2445,1,0,0,0,2446, - 2447,1,0,0,0,2447,2448,1,0,0,0,2448,2450,3,348,174,0,2449,2446,1, - 0,0,0,2449,2450,1,0,0,0,2450,157,1,0,0,0,2451,2456,3,218,109,0,2452, - 2454,5,20,0,0,2453,2452,1,0,0,0,2453,2454,1,0,0,0,2454,2455,1,0, - 0,0,2455,2457,3,348,174,0,2456,2453,1,0,0,0,2456,2457,1,0,0,0,2457, - 159,1,0,0,0,2458,2459,5,137,0,0,2459,2460,5,197,0,0,2460,2461,5, - 105,0,0,2461,161,1,0,0,0,2462,2463,5,137,0,0,2463,2464,5,105,0,0, - 2464,163,1,0,0,0,2465,2466,5,158,0,0,2466,2468,5,338,0,0,2467,2469, - 5,211,0,0,2468,2467,1,0,0,0,2468,2469,1,0,0,0,2469,2470,1,0,0,0, - 2470,2471,3,76,38,0,2471,2480,5,2,0,0,2472,2477,3,248,124,0,2473, - 2474,5,4,0,0,2474,2476,3,248,124,0,2475,2473,1,0,0,0,2476,2479,1, - 0,0,0,2477,2475,1,0,0,0,2477,2478,1,0,0,0,2478,2481,1,0,0,0,2479, - 2477,1,0,0,0,2480,2472,1,0,0,0,2480,2481,1,0,0,0,2481,2482,1,0,0, - 0,2482,2483,5,3,0,0,2483,2495,3,212,106,0,2484,2486,5,20,0,0,2485, - 2484,1,0,0,0,2485,2486,1,0,0,0,2486,2487,1,0,0,0,2487,2492,3,348, - 174,0,2488,2489,5,4,0,0,2489,2491,3,348,174,0,2490,2488,1,0,0,0, - 2491,2494,1,0,0,0,2492,2490,1,0,0,0,2492,2493,1,0,0,0,2493,2496, - 1,0,0,0,2494,2492,1,0,0,0,2495,2485,1,0,0,0,2495,2496,1,0,0,0,2496, - 165,1,0,0,0,2497,2498,7,31,0,0,2498,167,1,0,0,0,2499,2513,3,72,36, - 0,2500,2502,5,158,0,0,2501,2500,1,0,0,0,2501,2502,1,0,0,0,2502,2503, - 1,0,0,0,2503,2509,3,192,96,0,2504,2508,3,170,85,0,2505,2508,3,144, - 72,0,2506,2508,3,150,75,0,2507,2504,1,0,0,0,2507,2505,1,0,0,0,2507, - 2506,1,0,0,0,2508,2511,1,0,0,0,2509,2507,1,0,0,0,2509,2510,1,0,0, - 0,2510,2513,1,0,0,0,2511,2509,1,0,0,0,2512,2499,1,0,0,0,2512,2501, - 1,0,0,0,2513,169,1,0,0,0,2514,2515,3,172,86,0,2515,2517,5,155,0, - 0,2516,2518,5,158,0,0,2517,2516,1,0,0,0,2517,2518,1,0,0,0,2518,2519, - 1,0,0,0,2519,2521,3,192,96,0,2520,2522,3,174,87,0,2521,2520,1,0, - 0,0,2521,2522,1,0,0,0,2522,2532,1,0,0,0,2523,2524,5,194,0,0,2524, - 2525,3,172,86,0,2525,2527,5,155,0,0,2526,2528,5,158,0,0,2527,2526, - 1,0,0,0,2527,2528,1,0,0,0,2528,2529,1,0,0,0,2529,2530,3,192,96,0, - 2530,2532,1,0,0,0,2531,2514,1,0,0,0,2531,2523,1,0,0,0,2532,171,1, - 0,0,0,2533,2535,5,144,0,0,2534,2533,1,0,0,0,2534,2535,1,0,0,0,2535, - 2550,1,0,0,0,2536,2550,5,60,0,0,2537,2539,5,161,0,0,2538,2540,5, - 211,0,0,2539,2538,1,0,0,0,2539,2540,1,0,0,0,2540,2550,1,0,0,0,2541, - 2543,5,161,0,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2544,1,0, - 0,0,2544,2550,7,32,0,0,2545,2547,7,33,0,0,2546,2548,5,211,0,0,2547, - 2546,1,0,0,0,2547,2548,1,0,0,0,2548,2550,1,0,0,0,2549,2534,1,0,0, - 0,2549,2536,1,0,0,0,2549,2537,1,0,0,0,2549,2542,1,0,0,0,2549,2545, - 1,0,0,0,2550,173,1,0,0,0,2551,2552,5,203,0,0,2552,2556,3,256,128, - 0,2553,2554,5,332,0,0,2554,2556,3,180,90,0,2555,2551,1,0,0,0,2555, - 2553,1,0,0,0,2556,175,1,0,0,0,2557,2558,5,295,0,0,2558,2560,5,2, - 0,0,2559,2561,3,178,89,0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561, - 2562,1,0,0,0,2562,2567,5,3,0,0,2563,2564,5,243,0,0,2564,2565,5,2, - 0,0,2565,2566,5,382,0,0,2566,2568,5,3,0,0,2567,2563,1,0,0,0,2567, - 2568,1,0,0,0,2568,177,1,0,0,0,2569,2571,5,362,0,0,2570,2569,1,0, - 0,0,2570,2571,1,0,0,0,2571,2572,1,0,0,0,2572,2573,7,34,0,0,2573, - 2594,5,222,0,0,2574,2575,3,248,124,0,2575,2576,5,258,0,0,2576,2594, - 1,0,0,0,2577,2578,5,29,0,0,2578,2579,5,382,0,0,2579,2580,5,210,0, - 0,2580,2581,5,201,0,0,2581,2590,5,382,0,0,2582,2588,5,203,0,0,2583, - 2589,3,348,174,0,2584,2585,3,342,171,0,2585,2586,5,2,0,0,2586,2587, - 5,3,0,0,2587,2589,1,0,0,0,2588,2583,1,0,0,0,2588,2584,1,0,0,0,2589, - 2591,1,0,0,0,2590,2582,1,0,0,0,2590,2591,1,0,0,0,2591,2594,1,0,0, - 0,2592,2594,3,248,124,0,2593,2570,1,0,0,0,2593,2574,1,0,0,0,2593, - 2577,1,0,0,0,2593,2592,1,0,0,0,2594,179,1,0,0,0,2595,2596,5,2,0, - 0,2596,2597,3,182,91,0,2597,2598,5,3,0,0,2598,181,1,0,0,0,2599,2604, - 3,344,172,0,2600,2601,5,4,0,0,2601,2603,3,344,172,0,2602,2600,1, - 0,0,0,2603,2606,1,0,0,0,2604,2602,1,0,0,0,2604,2605,1,0,0,0,2605, - 183,1,0,0,0,2606,2604,1,0,0,0,2607,2608,5,2,0,0,2608,2613,3,186, - 93,0,2609,2610,5,4,0,0,2610,2612,3,186,93,0,2611,2609,1,0,0,0,2612, - 2615,1,0,0,0,2613,2611,1,0,0,0,2613,2614,1,0,0,0,2614,2616,1,0,0, - 0,2615,2613,1,0,0,0,2616,2617,5,3,0,0,2617,185,1,0,0,0,2618,2620, - 3,344,172,0,2619,2621,7,25,0,0,2620,2619,1,0,0,0,2620,2621,1,0,0, - 0,2621,187,1,0,0,0,2622,2623,5,2,0,0,2623,2628,3,190,95,0,2624,2625, - 5,4,0,0,2625,2627,3,190,95,0,2626,2624,1,0,0,0,2627,2630,1,0,0,0, - 2628,2626,1,0,0,0,2628,2629,1,0,0,0,2629,2631,1,0,0,0,2630,2628, - 1,0,0,0,2631,2632,5,3,0,0,2632,189,1,0,0,0,2633,2636,3,84,42,0,2634, - 2635,5,51,0,0,2635,2637,3,358,179,0,2636,2634,1,0,0,0,2636,2637, - 1,0,0,0,2637,191,1,0,0,0,2638,2642,3,72,36,0,2639,2642,3,76,38,0, - 2640,2642,3,86,43,0,2641,2638,1,0,0,0,2641,2639,1,0,0,0,2641,2640, - 1,0,0,0,2642,2644,1,0,0,0,2643,2645,3,134,67,0,2644,2643,1,0,0,0, - 2644,2645,1,0,0,0,2645,2647,1,0,0,0,2646,2648,3,176,88,0,2647,2646, - 1,0,0,0,2647,2648,1,0,0,0,2648,2649,1,0,0,0,2649,2650,3,212,106, - 0,2650,2670,1,0,0,0,2651,2653,3,194,97,0,2652,2654,3,176,88,0,2653, - 2652,1,0,0,0,2653,2654,1,0,0,0,2654,2655,1,0,0,0,2655,2656,3,212, - 106,0,2656,2670,1,0,0,0,2657,2658,5,2,0,0,2658,2659,3,168,84,0,2659, - 2661,5,3,0,0,2660,2662,3,176,88,0,2661,2660,1,0,0,0,2661,2662,1, - 0,0,0,2662,2663,1,0,0,0,2663,2664,3,212,106,0,2664,2670,1,0,0,0, - 2665,2666,3,196,98,0,2666,2667,3,212,106,0,2667,2670,1,0,0,0,2668, - 2670,3,208,104,0,2669,2641,1,0,0,0,2669,2651,1,0,0,0,2669,2657,1, - 0,0,0,2669,2665,1,0,0,0,2669,2668,1,0,0,0,2670,193,1,0,0,0,2671, - 2672,5,2,0,0,2672,2673,3,16,8,0,2673,2674,5,3,0,0,2674,195,1,0,0, - 0,2675,2676,5,333,0,0,2676,2681,3,248,124,0,2677,2678,5,4,0,0,2678, - 2680,3,248,124,0,2679,2677,1,0,0,0,2680,2683,1,0,0,0,2681,2679,1, - 0,0,0,2681,2682,1,0,0,0,2682,197,1,0,0,0,2683,2681,1,0,0,0,2684, - 2685,5,293,0,0,2685,2687,3,72,36,0,2686,2688,3,200,100,0,2687,2686, - 1,0,0,0,2687,2688,1,0,0,0,2688,2704,1,0,0,0,2689,2690,5,293,0,0, - 2690,2691,5,2,0,0,2691,2692,3,72,36,0,2692,2694,5,3,0,0,2693,2695, - 3,200,100,0,2694,2693,1,0,0,0,2694,2695,1,0,0,0,2695,2704,1,0,0, - 0,2696,2697,5,293,0,0,2697,2698,5,2,0,0,2698,2699,3,16,8,0,2699, - 2701,5,3,0,0,2700,2702,3,200,100,0,2701,2700,1,0,0,0,2701,2702,1, - 0,0,0,2702,2704,1,0,0,0,2703,2684,1,0,0,0,2703,2689,1,0,0,0,2703, - 2696,1,0,0,0,2704,199,1,0,0,0,2705,2706,5,346,0,0,2706,2707,5,274, - 0,0,2707,2725,5,217,0,0,2708,2709,7,35,0,0,2709,2722,5,31,0,0,2710, - 2711,5,2,0,0,2711,2716,3,248,124,0,2712,2713,5,4,0,0,2713,2715,3, - 248,124,0,2714,2712,1,0,0,0,2715,2718,1,0,0,0,2716,2714,1,0,0,0, - 2716,2717,1,0,0,0,2717,2719,1,0,0,0,2718,2716,1,0,0,0,2719,2720, - 5,3,0,0,2720,2723,1,0,0,0,2721,2723,3,248,124,0,2722,2710,1,0,0, - 0,2722,2721,1,0,0,0,2723,2725,1,0,0,0,2724,2705,1,0,0,0,2724,2708, - 1,0,0,0,2725,2735,1,0,0,0,2726,2727,7,36,0,0,2727,2733,5,31,0,0, - 2728,2729,5,2,0,0,2729,2730,3,92,46,0,2730,2731,5,3,0,0,2731,2734, - 1,0,0,0,2732,2734,3,100,50,0,2733,2728,1,0,0,0,2733,2732,1,0,0,0, - 2734,2736,1,0,0,0,2735,2726,1,0,0,0,2735,2736,1,0,0,0,2736,201,1, - 0,0,0,2737,2738,3,348,174,0,2738,2739,5,373,0,0,2739,2740,3,198, - 99,0,2740,203,1,0,0,0,2741,2744,3,198,99,0,2742,2744,3,202,101,0, - 2743,2741,1,0,0,0,2743,2742,1,0,0,0,2744,205,1,0,0,0,2745,2748,3, - 204,102,0,2746,2748,3,252,126,0,2747,2745,1,0,0,0,2747,2746,1,0, - 0,0,2748,207,1,0,0,0,2749,2750,3,210,105,0,2750,2751,3,212,106,0, - 2751,209,1,0,0,0,2752,2753,3,338,169,0,2753,2762,5,2,0,0,2754,2759, - 3,206,103,0,2755,2756,5,4,0,0,2756,2758,3,206,103,0,2757,2755,1, - 0,0,0,2758,2761,1,0,0,0,2759,2757,1,0,0,0,2759,2760,1,0,0,0,2760, - 2763,1,0,0,0,2761,2759,1,0,0,0,2762,2754,1,0,0,0,2762,2763,1,0,0, - 0,2763,2764,1,0,0,0,2764,2765,5,3,0,0,2765,211,1,0,0,0,2766,2768, - 5,20,0,0,2767,2766,1,0,0,0,2767,2768,1,0,0,0,2768,2769,1,0,0,0,2769, - 2771,3,350,175,0,2770,2772,3,180,90,0,2771,2770,1,0,0,0,2771,2772, - 1,0,0,0,2772,2774,1,0,0,0,2773,2767,1,0,0,0,2773,2774,1,0,0,0,2774, - 213,1,0,0,0,2775,2776,5,257,0,0,2776,2777,5,121,0,0,2777,2778,5, - 266,0,0,2778,2782,3,358,179,0,2779,2780,5,346,0,0,2780,2781,5,267, - 0,0,2781,2783,3,42,21,0,2782,2779,1,0,0,0,2782,2783,1,0,0,0,2783, - 2825,1,0,0,0,2784,2785,5,257,0,0,2785,2786,5,121,0,0,2786,2796,5, - 85,0,0,2787,2788,5,113,0,0,2788,2789,5,299,0,0,2789,2790,5,31,0, - 0,2790,2794,3,358,179,0,2791,2792,5,101,0,0,2792,2793,5,31,0,0,2793, - 2795,3,358,179,0,2794,2791,1,0,0,0,2794,2795,1,0,0,0,2795,2797,1, - 0,0,0,2796,2787,1,0,0,0,2796,2797,1,0,0,0,2797,2803,1,0,0,0,2798, - 2799,5,48,0,0,2799,2800,5,154,0,0,2800,2801,5,299,0,0,2801,2802, - 5,31,0,0,2802,2804,3,358,179,0,2803,2798,1,0,0,0,2803,2804,1,0,0, - 0,2804,2810,1,0,0,0,2805,2806,5,177,0,0,2806,2807,5,156,0,0,2807, - 2808,5,299,0,0,2808,2809,5,31,0,0,2809,2811,3,358,179,0,2810,2805, - 1,0,0,0,2810,2811,1,0,0,0,2811,2816,1,0,0,0,2812,2813,5,166,0,0, - 2813,2814,5,299,0,0,2814,2815,5,31,0,0,2815,2817,3,358,179,0,2816, - 2812,1,0,0,0,2816,2817,1,0,0,0,2817,2822,1,0,0,0,2818,2819,5,198, - 0,0,2819,2820,5,83,0,0,2820,2821,5,20,0,0,2821,2823,3,358,179,0, - 2822,2818,1,0,0,0,2822,2823,1,0,0,0,2823,2825,1,0,0,0,2824,2775, - 1,0,0,0,2824,2784,1,0,0,0,2825,215,1,0,0,0,2826,2831,3,218,109,0, - 2827,2828,5,4,0,0,2828,2830,3,218,109,0,2829,2827,1,0,0,0,2830,2833, - 1,0,0,0,2831,2829,1,0,0,0,2831,2832,1,0,0,0,2832,217,1,0,0,0,2833, - 2831,1,0,0,0,2834,2839,3,344,172,0,2835,2836,5,5,0,0,2836,2838,3, - 344,172,0,2837,2835,1,0,0,0,2838,2841,1,0,0,0,2839,2837,1,0,0,0, - 2839,2840,1,0,0,0,2840,219,1,0,0,0,2841,2839,1,0,0,0,2842,2847,3, - 222,111,0,2843,2844,5,4,0,0,2844,2846,3,222,111,0,2845,2843,1,0, - 0,0,2846,2849,1,0,0,0,2847,2845,1,0,0,0,2847,2848,1,0,0,0,2848,221, - 1,0,0,0,2849,2847,1,0,0,0,2850,2853,3,218,109,0,2851,2852,5,207, - 0,0,2852,2854,3,42,21,0,2853,2851,1,0,0,0,2853,2854,1,0,0,0,2854, - 223,1,0,0,0,2855,2856,3,344,172,0,2856,2857,5,5,0,0,2857,2859,1, - 0,0,0,2858,2855,1,0,0,0,2858,2859,1,0,0,0,2859,2860,1,0,0,0,2860, - 2861,3,344,172,0,2861,225,1,0,0,0,2862,2863,3,344,172,0,2863,2864, - 5,5,0,0,2864,2866,1,0,0,0,2865,2862,1,0,0,0,2865,2866,1,0,0,0,2866, - 2867,1,0,0,0,2867,2868,3,344,172,0,2868,227,1,0,0,0,2869,2870,3, - 78,39,0,2870,229,1,0,0,0,2871,2872,3,248,124,0,2872,231,1,0,0,0, - 2873,2874,3,342,171,0,2874,2875,5,5,0,0,2875,2877,1,0,0,0,2876,2873, - 1,0,0,0,2877,2880,1,0,0,0,2878,2876,1,0,0,0,2878,2879,1,0,0,0,2879, - 2881,1,0,0,0,2880,2878,1,0,0,0,2881,2882,5,363,0,0,2882,233,1,0, - 0,0,2883,2887,3,232,116,0,2884,2887,3,228,114,0,2885,2887,3,230, - 115,0,2886,2883,1,0,0,0,2886,2884,1,0,0,0,2886,2885,1,0,0,0,2887, - 2895,1,0,0,0,2888,2890,5,20,0,0,2889,2888,1,0,0,0,2889,2890,1,0, - 0,0,2890,2893,1,0,0,0,2891,2894,3,344,172,0,2892,2894,3,180,90,0, - 2893,2891,1,0,0,0,2893,2892,1,0,0,0,2894,2896,1,0,0,0,2895,2889, - 1,0,0,0,2895,2896,1,0,0,0,2896,235,1,0,0,0,2897,2902,3,234,117,0, - 2898,2899,5,4,0,0,2899,2901,3,234,117,0,2900,2898,1,0,0,0,2901,2904, - 1,0,0,0,2902,2900,1,0,0,0,2902,2903,1,0,0,0,2903,237,1,0,0,0,2904, - 2902,1,0,0,0,2905,2906,3,236,118,0,2906,239,1,0,0,0,2907,2908,5, - 2,0,0,2908,2913,3,242,121,0,2909,2910,5,4,0,0,2910,2912,3,242,121, - 0,2911,2909,1,0,0,0,2912,2915,1,0,0,0,2913,2911,1,0,0,0,2913,2914, - 1,0,0,0,2914,2916,1,0,0,0,2915,2913,1,0,0,0,2916,2917,5,3,0,0,2917, - 241,1,0,0,0,2918,2921,3,244,122,0,2919,2921,3,314,157,0,2920,2918, - 1,0,0,0,2920,2919,1,0,0,0,2921,243,1,0,0,0,2922,2936,3,342,171,0, - 2923,2924,3,348,174,0,2924,2925,5,2,0,0,2925,2930,3,246,123,0,2926, - 2927,5,4,0,0,2927,2929,3,246,123,0,2928,2926,1,0,0,0,2929,2932,1, - 0,0,0,2930,2928,1,0,0,0,2930,2931,1,0,0,0,2931,2933,1,0,0,0,2932, - 2930,1,0,0,0,2933,2934,5,3,0,0,2934,2936,1,0,0,0,2935,2922,1,0,0, - 0,2935,2923,1,0,0,0,2936,245,1,0,0,0,2937,2940,3,342,171,0,2938, - 2940,3,268,134,0,2939,2937,1,0,0,0,2939,2938,1,0,0,0,2940,247,1, - 0,0,0,2941,2942,3,256,128,0,2942,249,1,0,0,0,2943,2944,3,348,174, - 0,2944,2945,5,373,0,0,2945,2946,3,248,124,0,2946,251,1,0,0,0,2947, - 2950,3,248,124,0,2948,2950,3,250,125,0,2949,2947,1,0,0,0,2949,2948, - 1,0,0,0,2950,253,1,0,0,0,2951,2956,3,248,124,0,2952,2953,5,4,0,0, - 2953,2955,3,248,124,0,2954,2952,1,0,0,0,2955,2958,1,0,0,0,2956,2954, - 1,0,0,0,2956,2957,1,0,0,0,2957,255,1,0,0,0,2958,2956,1,0,0,0,2959, - 2960,6,128,-1,0,2960,2961,7,37,0,0,2961,2972,3,256,128,5,2962,2963, - 5,105,0,0,2963,2964,5,2,0,0,2964,2965,3,16,8,0,2965,2966,5,3,0,0, - 2966,2972,1,0,0,0,2967,2969,3,260,130,0,2968,2970,3,258,129,0,2969, - 2968,1,0,0,0,2969,2970,1,0,0,0,2970,2972,1,0,0,0,2971,2959,1,0,0, - 0,2971,2962,1,0,0,0,2971,2967,1,0,0,0,2972,2981,1,0,0,0,2973,2974, - 10,2,0,0,2974,2975,5,14,0,0,2975,2980,3,256,128,3,2976,2977,10,1, - 0,0,2977,2978,5,208,0,0,2978,2980,3,256,128,2,2979,2973,1,0,0,0, - 2979,2976,1,0,0,0,2980,2983,1,0,0,0,2981,2979,1,0,0,0,2981,2982, - 1,0,0,0,2982,257,1,0,0,0,2983,2981,1,0,0,0,2984,2986,5,197,0,0,2985, - 2984,1,0,0,0,2985,2986,1,0,0,0,2986,2987,1,0,0,0,2987,2988,5,24, - 0,0,2988,2989,3,260,130,0,2989,2990,5,14,0,0,2990,2991,3,260,130, - 0,2991,3067,1,0,0,0,2992,2994,5,197,0,0,2993,2992,1,0,0,0,2993,2994, - 1,0,0,0,2994,2995,1,0,0,0,2995,2996,5,140,0,0,2996,2997,5,2,0,0, - 2997,3002,3,248,124,0,2998,2999,5,4,0,0,2999,3001,3,248,124,0,3000, - 2998,1,0,0,0,3001,3004,1,0,0,0,3002,3000,1,0,0,0,3002,3003,1,0,0, - 0,3003,3005,1,0,0,0,3004,3002,1,0,0,0,3005,3006,5,3,0,0,3006,3067, - 1,0,0,0,3007,3009,5,197,0,0,3008,3007,1,0,0,0,3008,3009,1,0,0,0, - 3009,3010,1,0,0,0,3010,3011,5,140,0,0,3011,3012,5,2,0,0,3012,3013, - 3,16,8,0,3013,3014,5,3,0,0,3014,3067,1,0,0,0,3015,3017,5,197,0,0, - 3016,3015,1,0,0,0,3016,3017,1,0,0,0,3017,3018,1,0,0,0,3018,3019, - 7,38,0,0,3019,3067,3,260,130,0,3020,3022,5,197,0,0,3021,3020,1,0, - 0,0,3021,3022,1,0,0,0,3022,3023,1,0,0,0,3023,3024,7,39,0,0,3024, - 3038,7,40,0,0,3025,3026,5,2,0,0,3026,3039,5,3,0,0,3027,3028,5,2, - 0,0,3028,3033,3,248,124,0,3029,3030,5,4,0,0,3030,3032,3,248,124, - 0,3031,3029,1,0,0,0,3032,3035,1,0,0,0,3033,3031,1,0,0,0,3033,3034, - 1,0,0,0,3034,3036,1,0,0,0,3035,3033,1,0,0,0,3036,3037,5,3,0,0,3037, - 3039,1,0,0,0,3038,3025,1,0,0,0,3038,3027,1,0,0,0,3039,3067,1,0,0, - 0,3040,3042,5,197,0,0,3041,3040,1,0,0,0,3041,3042,1,0,0,0,3042,3043, - 1,0,0,0,3043,3044,7,39,0,0,3044,3047,3,260,130,0,3045,3046,5,100, - 0,0,3046,3048,3,358,179,0,3047,3045,1,0,0,0,3047,3048,1,0,0,0,3048, - 3067,1,0,0,0,3049,3051,5,153,0,0,3050,3052,5,197,0,0,3051,3050,1, - 0,0,0,3051,3052,1,0,0,0,3052,3053,1,0,0,0,3053,3067,5,198,0,0,3054, - 3056,5,153,0,0,3055,3057,5,197,0,0,3056,3055,1,0,0,0,3056,3057,1, - 0,0,0,3057,3058,1,0,0,0,3058,3067,7,41,0,0,3059,3061,5,153,0,0,3060, - 3062,5,197,0,0,3061,3060,1,0,0,0,3061,3062,1,0,0,0,3062,3063,1,0, - 0,0,3063,3064,5,92,0,0,3064,3065,5,123,0,0,3065,3067,3,260,130,0, - 3066,2985,1,0,0,0,3066,2993,1,0,0,0,3066,3008,1,0,0,0,3066,3016, - 1,0,0,0,3066,3021,1,0,0,0,3066,3041,1,0,0,0,3066,3049,1,0,0,0,3066, - 3054,1,0,0,0,3066,3059,1,0,0,0,3067,259,1,0,0,0,3068,3069,6,130, - -1,0,3069,3073,3,264,132,0,3070,3071,7,42,0,0,3071,3073,3,260,130, - 7,3072,3068,1,0,0,0,3072,3070,1,0,0,0,3073,3095,1,0,0,0,3074,3075, - 10,6,0,0,3075,3076,7,43,0,0,3076,3094,3,260,130,7,3077,3078,10,5, - 0,0,3078,3079,7,44,0,0,3079,3094,3,260,130,6,3080,3081,10,4,0,0, - 3081,3082,5,367,0,0,3082,3094,3,260,130,5,3083,3084,10,3,0,0,3084, - 3085,5,370,0,0,3085,3094,3,260,130,4,3086,3087,10,2,0,0,3087,3088, - 5,368,0,0,3088,3094,3,260,130,3,3089,3090,10,1,0,0,3090,3091,3,270, - 135,0,3091,3092,3,260,130,2,3092,3094,1,0,0,0,3093,3074,1,0,0,0, - 3093,3077,1,0,0,0,3093,3080,1,0,0,0,3093,3083,1,0,0,0,3093,3086, - 1,0,0,0,3093,3089,1,0,0,0,3094,3097,1,0,0,0,3095,3093,1,0,0,0,3095, - 3096,1,0,0,0,3096,261,1,0,0,0,3097,3095,1,0,0,0,3098,3099,7,45,0, - 0,3099,263,1,0,0,0,3100,3101,6,132,-1,0,3101,3350,7,46,0,0,3102, - 3103,7,47,0,0,3103,3106,5,2,0,0,3104,3107,3,262,131,0,3105,3107, - 3,358,179,0,3106,3104,1,0,0,0,3106,3105,1,0,0,0,3107,3108,1,0,0, - 0,3108,3109,5,4,0,0,3109,3110,3,260,130,0,3110,3111,5,4,0,0,3111, - 3112,3,260,130,0,3112,3113,5,3,0,0,3113,3350,1,0,0,0,3114,3115,7, - 48,0,0,3115,3118,5,2,0,0,3116,3119,3,262,131,0,3117,3119,3,358,179, - 0,3118,3116,1,0,0,0,3118,3117,1,0,0,0,3119,3120,1,0,0,0,3120,3121, - 5,4,0,0,3121,3122,3,260,130,0,3122,3123,5,4,0,0,3123,3124,3,260, - 130,0,3124,3125,5,3,0,0,3125,3350,1,0,0,0,3126,3128,5,35,0,0,3127, - 3129,3,324,162,0,3128,3127,1,0,0,0,3129,3130,1,0,0,0,3130,3128,1, - 0,0,0,3130,3131,1,0,0,0,3131,3134,1,0,0,0,3132,3133,5,97,0,0,3133, - 3135,3,248,124,0,3134,3132,1,0,0,0,3134,3135,1,0,0,0,3135,3136,1, - 0,0,0,3136,3137,5,99,0,0,3137,3350,1,0,0,0,3138,3139,5,35,0,0,3139, - 3141,3,248,124,0,3140,3142,3,324,162,0,3141,3140,1,0,0,0,3142,3143, - 1,0,0,0,3143,3141,1,0,0,0,3143,3144,1,0,0,0,3144,3147,1,0,0,0,3145, - 3146,5,97,0,0,3146,3148,3,248,124,0,3147,3145,1,0,0,0,3147,3148, - 1,0,0,0,3148,3149,1,0,0,0,3149,3150,5,99,0,0,3150,3350,1,0,0,0,3151, - 3152,7,49,0,0,3152,3153,5,2,0,0,3153,3154,3,248,124,0,3154,3155, - 5,20,0,0,3155,3156,3,298,149,0,3156,3157,5,3,0,0,3157,3350,1,0,0, - 0,3158,3159,5,286,0,0,3159,3168,5,2,0,0,3160,3165,3,234,117,0,3161, - 3162,5,4,0,0,3162,3164,3,234,117,0,3163,3161,1,0,0,0,3164,3167,1, - 0,0,0,3165,3163,1,0,0,0,3165,3166,1,0,0,0,3166,3169,1,0,0,0,3167, - 3165,1,0,0,0,3168,3160,1,0,0,0,3168,3169,1,0,0,0,3169,3170,1,0,0, - 0,3170,3350,5,3,0,0,3171,3172,5,116,0,0,3172,3173,5,2,0,0,3173,3176, - 3,248,124,0,3174,3175,5,138,0,0,3175,3177,5,199,0,0,3176,3174,1, - 0,0,0,3176,3177,1,0,0,0,3177,3178,1,0,0,0,3178,3179,5,3,0,0,3179, - 3350,1,0,0,0,3180,3181,5,17,0,0,3181,3182,5,2,0,0,3182,3185,3,248, - 124,0,3183,3184,5,138,0,0,3184,3186,5,199,0,0,3185,3183,1,0,0,0, - 3185,3186,1,0,0,0,3186,3187,1,0,0,0,3187,3188,5,3,0,0,3188,3350, - 1,0,0,0,3189,3190,5,157,0,0,3190,3191,5,2,0,0,3191,3194,3,248,124, - 0,3192,3193,5,138,0,0,3193,3195,5,199,0,0,3194,3192,1,0,0,0,3194, - 3195,1,0,0,0,3195,3196,1,0,0,0,3196,3197,5,3,0,0,3197,3350,1,0,0, - 0,3198,3199,5,225,0,0,3199,3200,5,2,0,0,3200,3201,3,260,130,0,3201, - 3202,5,140,0,0,3202,3203,3,260,130,0,3203,3204,5,3,0,0,3204,3350, - 1,0,0,0,3205,3350,3,268,134,0,3206,3350,5,363,0,0,3207,3208,3,342, - 171,0,3208,3209,5,5,0,0,3209,3210,5,363,0,0,3210,3350,1,0,0,0,3211, - 3212,5,2,0,0,3212,3215,3,234,117,0,3213,3214,5,4,0,0,3214,3216,3, - 234,117,0,3215,3213,1,0,0,0,3216,3217,1,0,0,0,3217,3215,1,0,0,0, - 3217,3218,1,0,0,0,3218,3219,1,0,0,0,3219,3220,5,3,0,0,3220,3350, - 1,0,0,0,3221,3222,5,2,0,0,3222,3223,3,16,8,0,3223,3224,5,3,0,0,3224, - 3350,1,0,0,0,3225,3226,5,136,0,0,3226,3227,5,2,0,0,3227,3228,3,248, - 124,0,3228,3229,5,3,0,0,3229,3350,1,0,0,0,3230,3231,3,338,169,0, - 3231,3243,5,2,0,0,3232,3234,3,166,83,0,3233,3232,1,0,0,0,3233,3234, - 1,0,0,0,3234,3235,1,0,0,0,3235,3240,3,252,126,0,3236,3237,5,4,0, - 0,3237,3239,3,252,126,0,3238,3236,1,0,0,0,3239,3242,1,0,0,0,3240, - 3238,1,0,0,0,3240,3241,1,0,0,0,3241,3244,1,0,0,0,3242,3240,1,0,0, - 0,3243,3233,1,0,0,0,3243,3244,1,0,0,0,3244,3245,1,0,0,0,3245,3252, - 5,3,0,0,3246,3247,5,114,0,0,3247,3248,5,2,0,0,3248,3249,5,344,0, - 0,3249,3250,3,256,128,0,3250,3251,5,3,0,0,3251,3253,1,0,0,0,3252, - 3246,1,0,0,0,3252,3253,1,0,0,0,3253,3256,1,0,0,0,3254,3255,7,50, - 0,0,3255,3257,5,199,0,0,3256,3254,1,0,0,0,3256,3257,1,0,0,0,3257, - 3260,1,0,0,0,3258,3259,5,213,0,0,3259,3261,3,330,165,0,3260,3258, - 1,0,0,0,3260,3261,1,0,0,0,3261,3350,1,0,0,0,3262,3263,3,348,174, - 0,3263,3264,5,372,0,0,3264,3265,3,248,124,0,3265,3350,1,0,0,0,3266, - 3267,5,2,0,0,3267,3270,3,348,174,0,3268,3269,5,4,0,0,3269,3271,3, - 348,174,0,3270,3268,1,0,0,0,3271,3272,1,0,0,0,3272,3270,1,0,0,0, - 3272,3273,1,0,0,0,3273,3274,1,0,0,0,3274,3275,5,3,0,0,3275,3276, - 5,372,0,0,3276,3277,3,248,124,0,3277,3350,1,0,0,0,3278,3350,3,80, - 40,0,3279,3280,5,2,0,0,3280,3281,3,248,124,0,3281,3282,5,3,0,0,3282, - 3350,1,0,0,0,3283,3284,5,110,0,0,3284,3285,5,2,0,0,3285,3286,3,348, - 174,0,3286,3287,5,123,0,0,3287,3288,3,260,130,0,3288,3289,5,3,0, - 0,3289,3350,1,0,0,0,3290,3291,7,51,0,0,3291,3292,5,2,0,0,3292,3293, - 3,260,130,0,3293,3294,7,52,0,0,3294,3297,3,260,130,0,3295,3296,7, - 53,0,0,3296,3298,3,260,130,0,3297,3295,1,0,0,0,3297,3298,1,0,0,0, - 3298,3299,1,0,0,0,3299,3300,5,3,0,0,3300,3350,1,0,0,0,3301,3302, - 5,315,0,0,3302,3304,5,2,0,0,3303,3305,7,54,0,0,3304,3303,1,0,0,0, - 3304,3305,1,0,0,0,3305,3307,1,0,0,0,3306,3308,3,260,130,0,3307,3306, - 1,0,0,0,3307,3308,1,0,0,0,3308,3309,1,0,0,0,3309,3310,5,123,0,0, - 3310,3311,3,260,130,0,3311,3312,5,3,0,0,3312,3350,1,0,0,0,3313,3314, - 5,215,0,0,3314,3315,5,2,0,0,3315,3316,3,260,130,0,3316,3317,5,224, - 0,0,3317,3318,3,260,130,0,3318,3319,5,123,0,0,3319,3322,3,260,130, - 0,3320,3321,5,119,0,0,3321,3323,3,260,130,0,3322,3320,1,0,0,0,3322, - 3323,1,0,0,0,3323,3324,1,0,0,0,3324,3325,5,3,0,0,3325,3350,1,0,0, - 0,3326,3327,7,55,0,0,3327,3328,5,2,0,0,3328,3329,3,260,130,0,3329, - 3330,5,3,0,0,3330,3331,5,347,0,0,3331,3332,5,130,0,0,3332,3333,5, - 2,0,0,3333,3334,5,209,0,0,3334,3335,5,31,0,0,3335,3336,3,100,50, - 0,3336,3343,5,3,0,0,3337,3338,5,114,0,0,3338,3339,5,2,0,0,3339,3340, - 5,344,0,0,3340,3341,3,256,128,0,3341,3342,5,3,0,0,3342,3344,1,0, - 0,0,3343,3337,1,0,0,0,3343,3344,1,0,0,0,3344,3347,1,0,0,0,3345,3346, - 5,213,0,0,3346,3348,3,330,165,0,3347,3345,1,0,0,0,3347,3348,1,0, - 0,0,3348,3350,1,0,0,0,3349,3100,1,0,0,0,3349,3102,1,0,0,0,3349,3114, - 1,0,0,0,3349,3126,1,0,0,0,3349,3138,1,0,0,0,3349,3151,1,0,0,0,3349, - 3158,1,0,0,0,3349,3171,1,0,0,0,3349,3180,1,0,0,0,3349,3189,1,0,0, - 0,3349,3198,1,0,0,0,3349,3205,1,0,0,0,3349,3206,1,0,0,0,3349,3207, - 1,0,0,0,3349,3211,1,0,0,0,3349,3221,1,0,0,0,3349,3225,1,0,0,0,3349, - 3230,1,0,0,0,3349,3262,1,0,0,0,3349,3266,1,0,0,0,3349,3278,1,0,0, - 0,3349,3279,1,0,0,0,3349,3283,1,0,0,0,3349,3290,1,0,0,0,3349,3301, - 1,0,0,0,3349,3313,1,0,0,0,3349,3326,1,0,0,0,3350,3361,1,0,0,0,3351, - 3352,10,9,0,0,3352,3353,5,6,0,0,3353,3354,3,260,130,0,3354,3355, - 5,7,0,0,3355,3360,1,0,0,0,3356,3357,10,7,0,0,3357,3358,5,5,0,0,3358, - 3360,3,348,174,0,3359,3351,1,0,0,0,3359,3356,1,0,0,0,3360,3363,1, - 0,0,0,3361,3359,1,0,0,0,3361,3362,1,0,0,0,3362,265,1,0,0,0,3363, - 3361,1,0,0,0,3364,3372,5,71,0,0,3365,3372,5,303,0,0,3366,3372,5, - 304,0,0,3367,3372,5,305,0,0,3368,3372,5,149,0,0,3369,3372,5,133, - 0,0,3370,3372,3,348,174,0,3371,3364,1,0,0,0,3371,3365,1,0,0,0,3371, - 3366,1,0,0,0,3371,3367,1,0,0,0,3371,3368,1,0,0,0,3371,3369,1,0,0, - 0,3371,3370,1,0,0,0,3372,267,1,0,0,0,3373,3389,5,198,0,0,3374,3389, - 5,376,0,0,3375,3376,5,371,0,0,3376,3389,3,348,174,0,3377,3389,3, - 278,139,0,3378,3379,3,266,133,0,3379,3380,3,358,179,0,3380,3389, - 1,0,0,0,3381,3389,3,354,177,0,3382,3389,3,276,138,0,3383,3385,3, - 358,179,0,3384,3383,1,0,0,0,3385,3386,1,0,0,0,3386,3384,1,0,0,0, - 3386,3387,1,0,0,0,3387,3389,1,0,0,0,3388,3373,1,0,0,0,3388,3374, - 1,0,0,0,3388,3375,1,0,0,0,3388,3377,1,0,0,0,3388,3378,1,0,0,0,3388, - 3381,1,0,0,0,3388,3382,1,0,0,0,3388,3384,1,0,0,0,3389,269,1,0,0, - 0,3390,3391,7,56,0,0,3391,271,1,0,0,0,3392,3393,7,57,0,0,3393,273, - 1,0,0,0,3394,3395,7,58,0,0,3395,275,1,0,0,0,3396,3397,7,59,0,0,3397, - 277,1,0,0,0,3398,3401,5,149,0,0,3399,3402,3,280,140,0,3400,3402, - 3,284,142,0,3401,3399,1,0,0,0,3401,3400,1,0,0,0,3402,279,1,0,0,0, - 3403,3405,3,282,141,0,3404,3406,3,286,143,0,3405,3404,1,0,0,0,3405, - 3406,1,0,0,0,3406,281,1,0,0,0,3407,3408,3,288,144,0,3408,3409,3, - 290,145,0,3409,3411,1,0,0,0,3410,3407,1,0,0,0,3411,3412,1,0,0,0, - 3412,3410,1,0,0,0,3412,3413,1,0,0,0,3413,283,1,0,0,0,3414,3417,3, - 286,143,0,3415,3418,3,282,141,0,3416,3418,3,286,143,0,3417,3415, - 1,0,0,0,3417,3416,1,0,0,0,3417,3418,1,0,0,0,3418,285,1,0,0,0,3419, - 3420,3,288,144,0,3420,3421,3,292,146,0,3421,3422,5,309,0,0,3422, - 3423,3,292,146,0,3423,287,1,0,0,0,3424,3426,7,60,0,0,3425,3424,1, - 0,0,0,3425,3426,1,0,0,0,3426,3430,1,0,0,0,3427,3431,5,382,0,0,3428, - 3431,5,384,0,0,3429,3431,3,358,179,0,3430,3427,1,0,0,0,3430,3428, - 1,0,0,0,3430,3429,1,0,0,0,3431,289,1,0,0,0,3432,3433,7,61,0,0,3433, - 291,1,0,0,0,3434,3435,7,62,0,0,3435,293,1,0,0,0,3436,3440,5,116, - 0,0,3437,3438,5,9,0,0,3438,3440,3,344,172,0,3439,3436,1,0,0,0,3439, - 3437,1,0,0,0,3440,295,1,0,0,0,3441,3472,5,27,0,0,3442,3472,5,308, - 0,0,3443,3472,5,32,0,0,3444,3472,5,276,0,0,3445,3472,5,272,0,0,3446, - 3472,5,150,0,0,3447,3472,5,151,0,0,3448,3472,5,25,0,0,3449,3472, - 5,174,0,0,3450,3472,5,117,0,0,3451,3472,5,234,0,0,3452,3472,5,95, - 0,0,3453,3472,5,71,0,0,3454,3472,5,303,0,0,3455,3472,5,305,0,0,3456, - 3472,5,304,0,0,3457,3472,5,285,0,0,3458,3472,5,41,0,0,3459,3472, - 5,40,0,0,3460,3472,5,334,0,0,3461,3472,5,26,0,0,3462,3472,5,80,0, - 0,3463,3472,5,79,0,0,3464,3472,5,200,0,0,3465,3472,5,340,0,0,3466, - 3472,5,149,0,0,3467,3472,5,19,0,0,3468,3472,5,286,0,0,3469,3472, - 5,177,0,0,3470,3472,3,348,174,0,3471,3441,1,0,0,0,3471,3442,1,0, - 0,0,3471,3443,1,0,0,0,3471,3444,1,0,0,0,3471,3445,1,0,0,0,3471,3446, - 1,0,0,0,3471,3447,1,0,0,0,3471,3448,1,0,0,0,3471,3449,1,0,0,0,3471, - 3450,1,0,0,0,3471,3451,1,0,0,0,3471,3452,1,0,0,0,3471,3453,1,0,0, - 0,3471,3454,1,0,0,0,3471,3455,1,0,0,0,3471,3456,1,0,0,0,3471,3457, - 1,0,0,0,3471,3458,1,0,0,0,3471,3459,1,0,0,0,3471,3460,1,0,0,0,3471, - 3461,1,0,0,0,3471,3462,1,0,0,0,3471,3463,1,0,0,0,3471,3464,1,0,0, - 0,3471,3465,1,0,0,0,3471,3466,1,0,0,0,3471,3467,1,0,0,0,3471,3468, - 1,0,0,0,3471,3469,1,0,0,0,3471,3470,1,0,0,0,3472,297,1,0,0,0,3473, - 3474,5,19,0,0,3474,3475,5,356,0,0,3475,3476,3,298,149,0,3476,3477, - 5,358,0,0,3477,3527,1,0,0,0,3478,3479,5,177,0,0,3479,3480,5,356, - 0,0,3480,3481,3,298,149,0,3481,3482,5,4,0,0,3482,3483,3,298,149, - 0,3483,3484,5,358,0,0,3484,3527,1,0,0,0,3485,3499,5,286,0,0,3486, - 3495,5,356,0,0,3487,3492,3,322,161,0,3488,3489,5,4,0,0,3489,3491, - 3,322,161,0,3490,3488,1,0,0,0,3491,3494,1,0,0,0,3492,3490,1,0,0, - 0,3492,3493,1,0,0,0,3493,3496,1,0,0,0,3494,3492,1,0,0,0,3495,3487, - 1,0,0,0,3495,3496,1,0,0,0,3496,3497,1,0,0,0,3497,3500,5,358,0,0, - 3498,3500,5,354,0,0,3499,3486,1,0,0,0,3499,3498,1,0,0,0,3500,3527, - 1,0,0,0,3501,3502,5,149,0,0,3502,3505,7,63,0,0,3503,3504,5,309,0, - 0,3504,3506,5,186,0,0,3505,3503,1,0,0,0,3505,3506,1,0,0,0,3506,3527, - 1,0,0,0,3507,3508,5,149,0,0,3508,3511,7,64,0,0,3509,3510,5,309,0, - 0,3510,3512,7,65,0,0,3511,3509,1,0,0,0,3511,3512,1,0,0,0,3512,3527, - 1,0,0,0,3513,3524,3,296,148,0,3514,3515,5,2,0,0,3515,3520,5,382, - 0,0,3516,3517,5,4,0,0,3517,3519,5,382,0,0,3518,3516,1,0,0,0,3519, - 3522,1,0,0,0,3520,3518,1,0,0,0,3520,3521,1,0,0,0,3521,3523,1,0,0, - 0,3522,3520,1,0,0,0,3523,3525,5,3,0,0,3524,3514,1,0,0,0,3524,3525, - 1,0,0,0,3525,3527,1,0,0,0,3526,3473,1,0,0,0,3526,3478,1,0,0,0,3526, - 3485,1,0,0,0,3526,3501,1,0,0,0,3526,3507,1,0,0,0,3526,3513,1,0,0, - 0,3527,299,1,0,0,0,3528,3533,3,302,151,0,3529,3530,5,4,0,0,3530, - 3532,3,302,151,0,3531,3529,1,0,0,0,3532,3535,1,0,0,0,3533,3531,1, - 0,0,0,3533,3534,1,0,0,0,3534,301,1,0,0,0,3535,3533,1,0,0,0,3536, - 3537,3,84,42,0,3537,3541,3,298,149,0,3538,3540,3,308,154,0,3539, - 3538,1,0,0,0,3540,3543,1,0,0,0,3541,3539,1,0,0,0,3541,3542,1,0,0, - 0,3542,303,1,0,0,0,3543,3541,1,0,0,0,3544,3549,3,306,153,0,3545, - 3546,5,4,0,0,3546,3548,3,306,153,0,3547,3545,1,0,0,0,3548,3551,1, - 0,0,0,3549,3547,1,0,0,0,3549,3550,1,0,0,0,3550,305,1,0,0,0,3551, - 3549,1,0,0,0,3552,3553,3,78,39,0,3553,3557,3,298,149,0,3554,3556, - 3,308,154,0,3555,3554,1,0,0,0,3556,3559,1,0,0,0,3557,3555,1,0,0, - 0,3557,3558,1,0,0,0,3558,307,1,0,0,0,3559,3557,1,0,0,0,3560,3561, - 5,197,0,0,3561,3568,5,198,0,0,3562,3563,5,82,0,0,3563,3568,3,248, - 124,0,3564,3565,5,51,0,0,3565,3568,3,358,179,0,3566,3568,3,294,147, - 0,3567,3560,1,0,0,0,3567,3562,1,0,0,0,3567,3564,1,0,0,0,3567,3566, - 1,0,0,0,3568,309,1,0,0,0,3569,3570,7,66,0,0,3570,3571,3,248,124, - 0,3571,311,1,0,0,0,3572,3577,3,314,157,0,3573,3574,5,4,0,0,3574, - 3576,3,314,157,0,3575,3573,1,0,0,0,3576,3579,1,0,0,0,3577,3575,1, - 0,0,0,3577,3578,1,0,0,0,3578,313,1,0,0,0,3579,3577,1,0,0,0,3580, - 3581,3,344,172,0,3581,3584,3,298,149,0,3582,3583,5,197,0,0,3583, - 3585,5,198,0,0,3584,3582,1,0,0,0,3584,3585,1,0,0,0,3585,3588,1,0, - 0,0,3586,3587,5,51,0,0,3587,3589,3,358,179,0,3588,3586,1,0,0,0,3588, - 3589,1,0,0,0,3589,315,1,0,0,0,3590,3595,3,318,159,0,3591,3592,5, - 4,0,0,3592,3594,3,318,159,0,3593,3591,1,0,0,0,3594,3597,1,0,0,0, - 3595,3593,1,0,0,0,3595,3596,1,0,0,0,3596,317,1,0,0,0,3597,3595,1, - 0,0,0,3598,3599,3,84,42,0,3599,3603,3,298,149,0,3600,3602,3,320, - 160,0,3601,3600,1,0,0,0,3602,3605,1,0,0,0,3603,3601,1,0,0,0,3603, - 3604,1,0,0,0,3604,319,1,0,0,0,3605,3603,1,0,0,0,3606,3607,5,197, - 0,0,3607,3620,5,198,0,0,3608,3609,5,82,0,0,3609,3620,3,248,124,0, - 3610,3611,5,127,0,0,3611,3612,5,12,0,0,3612,3613,5,20,0,0,3613,3614, - 5,2,0,0,3614,3615,3,248,124,0,3615,3616,5,3,0,0,3616,3620,1,0,0, - 0,3617,3618,5,51,0,0,3618,3620,3,358,179,0,3619,3606,1,0,0,0,3619, - 3608,1,0,0,0,3619,3610,1,0,0,0,3619,3617,1,0,0,0,3620,321,1,0,0, - 0,3621,3623,3,348,174,0,3622,3624,5,371,0,0,3623,3622,1,0,0,0,3623, - 3624,1,0,0,0,3624,3625,1,0,0,0,3625,3628,3,298,149,0,3626,3627,5, - 197,0,0,3627,3629,5,198,0,0,3628,3626,1,0,0,0,3628,3629,1,0,0,0, - 3629,3632,1,0,0,0,3630,3631,5,51,0,0,3631,3633,3,358,179,0,3632, - 3630,1,0,0,0,3632,3633,1,0,0,0,3633,323,1,0,0,0,3634,3635,5,343, - 0,0,3635,3636,3,248,124,0,3636,3637,5,300,0,0,3637,3638,3,248,124, - 0,3638,325,1,0,0,0,3639,3640,5,345,0,0,3640,3641,3,344,172,0,3641, - 3642,5,20,0,0,3642,3650,3,330,165,0,3643,3644,5,4,0,0,3644,3645, - 3,344,172,0,3645,3646,5,20,0,0,3646,3647,3,330,165,0,3647,3649,1, - 0,0,0,3648,3643,1,0,0,0,3649,3652,1,0,0,0,3650,3648,1,0,0,0,3650, - 3651,1,0,0,0,3651,327,1,0,0,0,3652,3650,1,0,0,0,3653,3654,5,351, - 0,0,3654,3655,5,31,0,0,3655,3656,3,82,41,0,3656,329,1,0,0,0,3657, - 3697,3,344,172,0,3658,3659,5,2,0,0,3659,3660,3,344,172,0,3660,3661, - 5,3,0,0,3661,3697,1,0,0,0,3662,3690,5,2,0,0,3663,3664,5,44,0,0,3664, - 3665,5,31,0,0,3665,3670,3,248,124,0,3666,3667,5,4,0,0,3667,3669, - 3,248,124,0,3668,3666,1,0,0,0,3669,3672,1,0,0,0,3670,3668,1,0,0, - 0,3670,3671,1,0,0,0,3671,3691,1,0,0,0,3672,3670,1,0,0,0,3673,3674, - 7,35,0,0,3674,3675,5,31,0,0,3675,3680,3,248,124,0,3676,3677,5,4, - 0,0,3677,3679,3,248,124,0,3678,3676,1,0,0,0,3679,3682,1,0,0,0,3680, - 3678,1,0,0,0,3680,3681,1,0,0,0,3681,3684,1,0,0,0,3682,3680,1,0,0, - 0,3683,3673,1,0,0,0,3683,3684,1,0,0,0,3684,3688,1,0,0,0,3685,3686, - 7,36,0,0,3686,3687,5,31,0,0,3687,3689,3,92,46,0,3688,3685,1,0,0, - 0,3688,3689,1,0,0,0,3689,3691,1,0,0,0,3690,3663,1,0,0,0,3690,3683, - 1,0,0,0,3691,3693,1,0,0,0,3692,3694,3,332,166,0,3693,3692,1,0,0, - 0,3693,3694,1,0,0,0,3694,3695,1,0,0,0,3695,3697,5,3,0,0,3696,3657, - 1,0,0,0,3696,3658,1,0,0,0,3696,3662,1,0,0,0,3697,331,1,0,0,0,3698, - 3699,7,67,0,0,3699,3707,3,334,167,0,3700,3701,7,67,0,0,3701,3702, - 5,24,0,0,3702,3703,3,334,167,0,3703,3704,5,14,0,0,3704,3705,3,334, - 167,0,3705,3707,1,0,0,0,3706,3698,1,0,0,0,3706,3700,1,0,0,0,3707, - 333,1,0,0,0,3708,3709,5,321,0,0,3709,3716,7,68,0,0,3710,3711,5,62, - 0,0,3711,3716,5,257,0,0,3712,3713,3,248,124,0,3713,3714,7,68,0,0, - 3714,3716,1,0,0,0,3715,3708,1,0,0,0,3715,3710,1,0,0,0,3715,3712, - 1,0,0,0,3716,335,1,0,0,0,3717,3722,3,342,171,0,3718,3719,5,4,0,0, - 3719,3721,3,342,171,0,3720,3718,1,0,0,0,3721,3724,1,0,0,0,3722,3720, - 1,0,0,0,3722,3723,1,0,0,0,3723,337,1,0,0,0,3724,3722,1,0,0,0,3725, - 3726,5,136,0,0,3726,3727,5,2,0,0,3727,3728,3,248,124,0,3728,3729, - 5,3,0,0,3729,3735,1,0,0,0,3730,3735,3,342,171,0,3731,3735,5,114, - 0,0,3732,3735,5,161,0,0,3733,3735,5,250,0,0,3734,3725,1,0,0,0,3734, - 3730,1,0,0,0,3734,3731,1,0,0,0,3734,3732,1,0,0,0,3734,3733,1,0,0, - 0,3735,339,1,0,0,0,3736,3737,3,342,171,0,3737,341,1,0,0,0,3738,3743, - 3,348,174,0,3739,3740,5,5,0,0,3740,3742,3,348,174,0,3741,3739,1, - 0,0,0,3742,3745,1,0,0,0,3743,3741,1,0,0,0,3743,3744,1,0,0,0,3744, - 343,1,0,0,0,3745,3743,1,0,0,0,3746,3747,3,348,174,0,3747,3748,3, - 346,173,0,3748,345,1,0,0,0,3749,3750,5,362,0,0,3750,3752,3,348,174, - 0,3751,3749,1,0,0,0,3752,3753,1,0,0,0,3753,3751,1,0,0,0,3753,3754, - 1,0,0,0,3754,3757,1,0,0,0,3755,3757,1,0,0,0,3756,3751,1,0,0,0,3756, - 3755,1,0,0,0,3757,347,1,0,0,0,3758,3761,3,350,175,0,3759,3761,3, - 362,181,0,3760,3758,1,0,0,0,3760,3759,1,0,0,0,3761,349,1,0,0,0,3762, - 3767,5,388,0,0,3763,3767,3,352,176,0,3764,3767,3,360,180,0,3765, - 3767,3,364,182,0,3766,3762,1,0,0,0,3766,3763,1,0,0,0,3766,3764,1, - 0,0,0,3766,3765,1,0,0,0,3767,351,1,0,0,0,3768,3769,7,69,0,0,3769, - 353,1,0,0,0,3770,3772,5,362,0,0,3771,3770,1,0,0,0,3771,3772,1,0, - 0,0,3772,3773,1,0,0,0,3773,3774,7,70,0,0,3774,355,1,0,0,0,3775,3776, - 5,319,0,0,3776,3789,3,298,149,0,3777,3778,5,51,0,0,3778,3789,3,358, - 179,0,3779,3789,3,294,147,0,3780,3781,7,71,0,0,3781,3782,5,197,0, - 0,3782,3789,5,198,0,0,3783,3784,5,269,0,0,3784,3785,5,82,0,0,3785, - 3789,3,248,124,0,3786,3787,5,96,0,0,3787,3789,5,82,0,0,3788,3775, - 1,0,0,0,3788,3777,1,0,0,0,3788,3779,1,0,0,0,3788,3780,1,0,0,0,3788, - 3783,1,0,0,0,3788,3786,1,0,0,0,3789,357,1,0,0,0,3790,3791,7,72,0, - 0,3791,359,1,0,0,0,3792,3793,7,73,0,0,3793,361,1,0,0,0,3794,3795, - 7,74,0,0,3795,363,1,0,0,0,3796,3797,7,75,0,0,3797,365,1,0,0,0,505, - 369,376,380,385,392,397,407,409,429,433,439,442,445,449,452,456, - 463,466,470,473,478,491,493,498,507,510,514,517,523,534,540,545, - 578,588,599,610,621,626,635,639,645,649,654,660,672,680,686,697, - 701,706,721,725,732,736,742,772,776,781,788,794,797,800,804,808, - 817,819,828,831,840,845,851,858,861,865,880,883,889,893,910,912, - 920,924,930,933,937,940,946,951,955,962,965,968,975,980,989,997, - 1003,1006,1009,1015,1019,1024,1027,1031,1033,1041,1049,1052,1059, - 1062,1065,1074,1079,1085,1090,1093,1097,1100,1104,1114,1119,1132, - 1135,1143,1149,1152,1155,1160,1168,1173,1179,1185,1188,1195,1202, - 1210,1222,1230,1257,1260,1266,1275,1284,1290,1295,1300,1307,1312, - 1317,1324,1332,1335,1341,1348,1352,1415,1423,1430,1438,1450,1455, - 1464,1472,1477,1479,1487,1492,1496,1499,1507,1512,1521,1526,1529, - 1534,1538,1543,1545,1550,1559,1567,1573,1582,1589,1598,1603,1606, - 1631,1633,1645,1652,1655,1662,1666,1672,1680,1687,1690,1698,1709, - 1720,1728,1734,1745,1752,1759,1771,1779,1785,1791,1794,1810,1819, - 1830,1835,1840,1845,1850,1853,1856,1860,1865,1872,1880,1889,1895, - 1901,1904,1906,1914,1924,1933,1937,1940,1944,1948,1956,1960,1963, - 1966,1969,1973,1977,1982,1986,1989,1992,1995,1999,2004,2008,2011, - 2014,2017,2019,2025,2032,2037,2040,2043,2047,2057,2061,2063,2066, - 2070,2076,2080,2091,2099,2101,2108,2112,2124,2131,2146,2151,2158, - 2174,2179,2192,2197,2205,2211,2215,2218,2221,2228,2231,2237,2246, - 2256,2271,2276,2278,2283,2292,2302,2307,2311,2316,2323,2328,2332, - 2335,2338,2352,2365,2370,2374,2377,2382,2387,2391,2394,2406,2417, - 2430,2441,2446,2449,2453,2456,2468,2477,2480,2485,2492,2495,2501, - 2507,2509,2512,2517,2521,2527,2531,2534,2539,2542,2547,2549,2555, - 2560,2567,2570,2588,2590,2593,2604,2613,2620,2628,2636,2641,2644, - 2647,2653,2661,2669,2681,2687,2694,2701,2703,2716,2722,2724,2733, - 2735,2743,2747,2759,2762,2767,2771,2773,2782,2794,2796,2803,2810, - 2816,2822,2824,2831,2839,2847,2853,2858,2865,2878,2886,2889,2893, - 2895,2902,2913,2920,2930,2935,2939,2949,2956,2969,2971,2979,2981, - 2985,2993,3002,3008,3016,3021,3033,3038,3041,3047,3051,3056,3061, - 3066,3072,3093,3095,3106,3118,3130,3134,3143,3147,3165,3168,3176, - 3185,3194,3217,3233,3240,3243,3252,3256,3260,3272,3297,3304,3307, - 3322,3343,3347,3349,3359,3361,3371,3386,3388,3401,3405,3412,3417, - 3425,3430,3439,3471,3492,3495,3499,3505,3511,3520,3524,3526,3533, - 3541,3549,3557,3567,3577,3584,3588,3595,3603,3619,3623,3628,3632, - 3650,3670,3680,3683,3688,3690,3693,3696,3706,3715,3722,3734,3743, - 3753,3756,3760,3766,3771,3788 + 1,0,0,0,1787,1785,1,0,0,0,1788,1790,3,118,59,0,1789,1788,1,0,0,0, + 1790,1793,1,0,0,0,1791,1789,1,0,0,0,1791,1792,1,0,0,0,1792,1797, + 1,0,0,0,1793,1791,1,0,0,0,1794,1796,3,120,60,0,1795,1794,1,0,0,0, + 1796,1799,1,0,0,0,1797,1795,1,0,0,0,1797,1798,1,0,0,0,1798,1801, + 1,0,0,0,1799,1797,1,0,0,0,1800,1742,1,0,0,0,1800,1745,1,0,0,0,1800, + 1753,1,0,0,0,1800,1760,1,0,0,0,1800,1767,1,0,0,0,1801,65,1,0,0,0, + 1802,1803,3,90,45,0,1803,67,1,0,0,0,1804,1805,3,90,45,0,1805,69, + 1,0,0,0,1806,1807,3,230,115,0,1807,71,1,0,0,0,1808,1809,3,230,115, + 0,1809,73,1,0,0,0,1810,1811,3,232,116,0,1811,75,1,0,0,0,1812,1813, + 3,232,116,0,1813,77,1,0,0,0,1814,1815,1,0,0,0,1815,79,1,0,0,0,1816, + 1820,3,224,112,0,1817,1818,4,40,0,0,1818,1820,3,78,39,0,1819,1816, + 1,0,0,0,1819,1817,1,0,0,0,1820,81,1,0,0,0,1821,1822,3,222,111,0, + 1822,83,1,0,0,0,1823,1827,3,224,112,0,1824,1825,4,42,1,0,1825,1827, + 3,78,39,0,1826,1823,1,0,0,0,1826,1824,1,0,0,0,1827,85,1,0,0,0,1828, + 1833,3,80,40,0,1829,1830,5,4,0,0,1830,1832,3,80,40,0,1831,1829,1, + 0,0,0,1832,1835,1,0,0,0,1833,1831,1,0,0,0,1833,1834,1,0,0,0,1834, + 87,1,0,0,0,1835,1833,1,0,0,0,1836,1837,3,350,175,0,1837,89,1,0,0, + 0,1838,1839,5,136,0,0,1839,1840,5,2,0,0,1840,1841,3,254,127,0,1841, + 1842,5,3,0,0,1842,1845,1,0,0,0,1843,1845,3,222,111,0,1844,1838,1, + 0,0,0,1844,1843,1,0,0,0,1845,91,1,0,0,0,1846,1847,5,209,0,0,1847, + 1848,5,31,0,0,1848,1850,3,96,48,0,1849,1846,1,0,0,0,1849,1850,1, + 0,0,0,1850,1854,1,0,0,0,1851,1852,5,44,0,0,1852,1853,5,31,0,0,1853, + 1855,3,98,49,0,1854,1851,1,0,0,0,1854,1855,1,0,0,0,1855,1859,1,0, + 0,0,1856,1857,5,93,0,0,1857,1858,5,31,0,0,1858,1860,3,98,49,0,1859, + 1856,1,0,0,0,1859,1860,1,0,0,0,1860,1864,1,0,0,0,1861,1862,5,278, + 0,0,1862,1863,5,31,0,0,1863,1865,3,96,48,0,1864,1861,1,0,0,0,1864, + 1865,1,0,0,0,1865,1867,1,0,0,0,1866,1868,3,332,166,0,1867,1866,1, + 0,0,0,1867,1868,1,0,0,0,1868,1870,1,0,0,0,1869,1871,3,94,47,0,1870, + 1869,1,0,0,0,1870,1871,1,0,0,0,1871,1874,1,0,0,0,1872,1873,5,202, + 0,0,1873,1875,3,254,127,0,1874,1872,1,0,0,0,1874,1875,1,0,0,0,1875, + 93,1,0,0,0,1876,1879,5,165,0,0,1877,1880,5,10,0,0,1878,1880,3,254, + 127,0,1879,1877,1,0,0,0,1879,1878,1,0,0,0,1880,95,1,0,0,0,1881,1886, + 3,104,52,0,1882,1883,5,4,0,0,1883,1885,3,104,52,0,1884,1882,1,0, + 0,0,1885,1888,1,0,0,0,1886,1884,1,0,0,0,1886,1887,1,0,0,0,1887,97, + 1,0,0,0,1888,1886,1,0,0,0,1889,1894,3,254,127,0,1890,1891,5,4,0, + 0,1891,1893,3,254,127,0,1892,1890,1,0,0,0,1893,1896,1,0,0,0,1894, + 1892,1,0,0,0,1894,1895,1,0,0,0,1895,99,1,0,0,0,1896,1894,1,0,0,0, + 1897,1898,6,50,-1,0,1898,1899,3,102,51,0,1899,1920,1,0,0,0,1900, + 1901,10,3,0,0,1901,1903,7,23,0,0,1902,1904,3,170,85,0,1903,1902, + 1,0,0,0,1903,1904,1,0,0,0,1904,1905,1,0,0,0,1905,1919,3,100,50,4, + 1906,1907,10,2,0,0,1907,1909,5,148,0,0,1908,1910,3,170,85,0,1909, + 1908,1,0,0,0,1909,1910,1,0,0,0,1910,1911,1,0,0,0,1911,1919,3,100, + 50,3,1912,1913,10,1,0,0,1913,1915,7,24,0,0,1914,1916,3,170,85,0, + 1915,1914,1,0,0,0,1915,1916,1,0,0,0,1916,1917,1,0,0,0,1917,1919, + 3,100,50,2,1918,1900,1,0,0,0,1918,1906,1,0,0,0,1918,1912,1,0,0,0, + 1919,1922,1,0,0,0,1920,1918,1,0,0,0,1920,1921,1,0,0,0,1921,101,1, + 0,0,0,1922,1920,1,0,0,0,1923,1948,3,108,54,0,1924,1926,3,136,68, + 0,1925,1927,3,106,53,0,1926,1925,1,0,0,0,1927,1928,1,0,0,0,1928, + 1926,1,0,0,0,1928,1929,1,0,0,0,1929,1948,1,0,0,0,1930,1931,5,293, + 0,0,1931,1948,3,72,36,0,1932,1933,5,333,0,0,1933,1938,3,254,127, + 0,1934,1935,5,4,0,0,1935,1937,3,254,127,0,1936,1934,1,0,0,0,1937, + 1940,1,0,0,0,1938,1936,1,0,0,0,1938,1939,1,0,0,0,1939,1941,1,0,0, + 0,1940,1938,1,0,0,0,1941,1942,3,216,108,0,1942,1948,1,0,0,0,1943, + 1944,5,2,0,0,1944,1945,3,16,8,0,1945,1946,5,3,0,0,1946,1948,1,0, + 0,0,1947,1923,1,0,0,0,1947,1924,1,0,0,0,1947,1930,1,0,0,0,1947,1932, + 1,0,0,0,1947,1943,1,0,0,0,1948,103,1,0,0,0,1949,1952,3,80,40,0,1950, + 1952,3,254,127,0,1951,1949,1,0,0,0,1951,1950,1,0,0,0,1952,1954,1, + 0,0,0,1953,1955,7,25,0,0,1954,1953,1,0,0,0,1954,1955,1,0,0,0,1955, + 1958,1,0,0,0,1956,1957,5,199,0,0,1957,1959,7,26,0,0,1958,1956,1, + 0,0,0,1958,1959,1,0,0,0,1959,105,1,0,0,0,1960,1962,3,110,55,0,1961, + 1963,3,128,64,0,1962,1961,1,0,0,0,1962,1963,1,0,0,0,1963,1964,1, + 0,0,0,1964,1965,3,92,46,0,1965,1988,1,0,0,0,1966,1970,3,112,56,0, + 1967,1969,3,168,84,0,1968,1967,1,0,0,0,1969,1972,1,0,0,0,1970,1968, + 1,0,0,0,1970,1971,1,0,0,0,1971,1974,1,0,0,0,1972,1970,1,0,0,0,1973, + 1975,3,128,64,0,1974,1973,1,0,0,0,1974,1975,1,0,0,0,1975,1977,1, + 0,0,0,1976,1978,3,140,70,0,1977,1976,1,0,0,0,1977,1978,1,0,0,0,1978, + 1980,1,0,0,0,1979,1981,3,130,65,0,1980,1979,1,0,0,0,1980,1981,1, + 0,0,0,1981,1983,1,0,0,0,1982,1984,3,332,166,0,1983,1982,1,0,0,0, + 1983,1984,1,0,0,0,1984,1985,1,0,0,0,1985,1986,3,92,46,0,1986,1988, + 1,0,0,0,1987,1960,1,0,0,0,1987,1966,1,0,0,0,1988,107,1,0,0,0,1989, + 1991,3,110,55,0,1990,1992,3,136,68,0,1991,1990,1,0,0,0,1991,1992, + 1,0,0,0,1992,1996,1,0,0,0,1993,1995,3,168,84,0,1994,1993,1,0,0,0, + 1995,1998,1,0,0,0,1996,1994,1,0,0,0,1996,1997,1,0,0,0,1997,2000, + 1,0,0,0,1998,1996,1,0,0,0,1999,2001,3,128,64,0,2000,1999,1,0,0,0, + 2000,2001,1,0,0,0,2001,2003,1,0,0,0,2002,2004,3,140,70,0,2003,2002, + 1,0,0,0,2003,2004,1,0,0,0,2004,2006,1,0,0,0,2005,2007,3,130,65,0, + 2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2009,1,0,0,0,2008,2010, + 3,332,166,0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010,2034,1,0,0, + 0,2011,2013,3,112,56,0,2012,2014,3,136,68,0,2013,2012,1,0,0,0,2013, + 2014,1,0,0,0,2014,2018,1,0,0,0,2015,2017,3,168,84,0,2016,2015,1, + 0,0,0,2017,2020,1,0,0,0,2018,2016,1,0,0,0,2018,2019,1,0,0,0,2019, + 2022,1,0,0,0,2020,2018,1,0,0,0,2021,2023,3,128,64,0,2022,2021,1, + 0,0,0,2022,2023,1,0,0,0,2023,2025,1,0,0,0,2024,2026,3,140,70,0,2025, + 2024,1,0,0,0,2025,2026,1,0,0,0,2026,2028,1,0,0,0,2027,2029,3,130, + 65,0,2028,2027,1,0,0,0,2028,2029,1,0,0,0,2029,2031,1,0,0,0,2030, + 2032,3,332,166,0,2031,2030,1,0,0,0,2031,2032,1,0,0,0,2032,2034,1, + 0,0,0,2033,1989,1,0,0,0,2033,2011,1,0,0,0,2034,109,1,0,0,0,2035, + 2036,5,263,0,0,2036,2037,5,314,0,0,2037,2039,5,2,0,0,2038,2040,3, + 170,85,0,2039,2038,1,0,0,0,2039,2040,1,0,0,0,2040,2041,1,0,0,0,2041, + 2042,3,260,130,0,2042,2043,5,3,0,0,2043,2055,1,0,0,0,2044,2046,5, + 177,0,0,2045,2047,3,170,85,0,2046,2045,1,0,0,0,2046,2047,1,0,0,0, + 2047,2048,1,0,0,0,2048,2055,3,260,130,0,2049,2051,5,238,0,0,2050, + 2052,3,170,85,0,2051,2050,1,0,0,0,2051,2052,1,0,0,0,2052,2053,1, + 0,0,0,2053,2055,3,260,130,0,2054,2035,1,0,0,0,2054,2044,1,0,0,0, + 2054,2049,1,0,0,0,2055,2057,1,0,0,0,2056,2058,3,218,109,0,2057,2056, + 1,0,0,0,2057,2058,1,0,0,0,2058,2061,1,0,0,0,2059,2060,5,236,0,0, + 2060,2062,3,364,182,0,2061,2059,1,0,0,0,2061,2062,1,0,0,0,2062,2063, + 1,0,0,0,2063,2064,5,332,0,0,2064,2077,3,364,182,0,2065,2075,5,20, + 0,0,2066,2076,3,186,93,0,2067,2076,3,318,159,0,2068,2071,5,2,0,0, + 2069,2072,3,186,93,0,2070,2072,3,318,159,0,2071,2069,1,0,0,0,2071, + 2070,1,0,0,0,2072,2073,1,0,0,0,2073,2074,5,3,0,0,2074,2076,1,0,0, + 0,2075,2066,1,0,0,0,2075,2067,1,0,0,0,2075,2068,1,0,0,0,2076,2078, + 1,0,0,0,2077,2065,1,0,0,0,2077,2078,1,0,0,0,2078,2080,1,0,0,0,2079, + 2081,3,218,109,0,2080,2079,1,0,0,0,2080,2081,1,0,0,0,2081,2084,1, + 0,0,0,2082,2083,5,235,0,0,2083,2085,3,364,182,0,2084,2082,1,0,0, + 0,2084,2085,1,0,0,0,2085,111,1,0,0,0,2086,2090,5,263,0,0,2087,2089, + 3,132,66,0,2088,2087,1,0,0,0,2089,2092,1,0,0,0,2090,2088,1,0,0,0, + 2090,2091,1,0,0,0,2091,2094,1,0,0,0,2092,2090,1,0,0,0,2093,2095, + 3,170,85,0,2094,2093,1,0,0,0,2094,2095,1,0,0,0,2095,2096,1,0,0,0, + 2096,2097,3,244,122,0,2097,113,1,0,0,0,2098,2099,5,269,0,0,2099, + 2100,3,124,62,0,2100,115,1,0,0,0,2101,2102,5,343,0,0,2102,2105,5, + 178,0,0,2103,2104,5,14,0,0,2104,2106,3,262,131,0,2105,2103,1,0,0, + 0,2105,2106,1,0,0,0,2106,2107,1,0,0,0,2107,2115,5,300,0,0,2108,2116, + 5,84,0,0,2109,2110,5,329,0,0,2110,2113,5,269,0,0,2111,2114,5,363, + 0,0,2112,2114,3,124,62,0,2113,2111,1,0,0,0,2113,2112,1,0,0,0,2114, + 2116,1,0,0,0,2115,2108,1,0,0,0,2115,2109,1,0,0,0,2116,117,1,0,0, + 0,2117,2118,5,343,0,0,2118,2119,5,197,0,0,2119,2122,5,178,0,0,2120, + 2121,5,31,0,0,2121,2123,5,296,0,0,2122,2120,1,0,0,0,2122,2123,1, + 0,0,0,2123,2126,1,0,0,0,2124,2125,5,14,0,0,2125,2127,3,262,131,0, + 2126,2124,1,0,0,0,2126,2127,1,0,0,0,2127,2128,1,0,0,0,2128,2129, + 5,300,0,0,2129,2130,3,122,61,0,2130,119,1,0,0,0,2131,2132,5,343, + 0,0,2132,2133,5,197,0,0,2133,2134,5,178,0,0,2134,2135,5,31,0,0,2135, + 2138,5,280,0,0,2136,2137,5,14,0,0,2137,2139,3,262,131,0,2138,2136, + 1,0,0,0,2138,2139,1,0,0,0,2139,2140,1,0,0,0,2140,2145,5,300,0,0, + 2141,2146,5,84,0,0,2142,2143,5,329,0,0,2143,2144,5,269,0,0,2144, + 2146,3,124,62,0,2145,2141,1,0,0,0,2145,2142,1,0,0,0,2146,121,1,0, + 0,0,2147,2148,5,147,0,0,2148,2166,5,363,0,0,2149,2150,5,147,0,0, + 2150,2151,5,2,0,0,2151,2152,3,220,110,0,2152,2153,5,3,0,0,2153,2154, + 5,333,0,0,2154,2155,5,2,0,0,2155,2160,3,254,127,0,2156,2157,5,4, + 0,0,2157,2159,3,254,127,0,2158,2156,1,0,0,0,2159,2162,1,0,0,0,2160, + 2158,1,0,0,0,2160,2161,1,0,0,0,2161,2163,1,0,0,0,2162,2160,1,0,0, + 0,2163,2164,5,3,0,0,2164,2166,1,0,0,0,2165,2147,1,0,0,0,2165,2149, + 1,0,0,0,2166,123,1,0,0,0,2167,2172,3,126,63,0,2168,2169,5,4,0,0, + 2169,2171,3,126,63,0,2170,2168,1,0,0,0,2171,2174,1,0,0,0,2172,2170, + 1,0,0,0,2172,2173,1,0,0,0,2173,125,1,0,0,0,2174,2172,1,0,0,0,2175, + 2176,3,222,111,0,2176,2177,5,352,0,0,2177,2178,3,254,127,0,2178, + 127,1,0,0,0,2179,2180,5,344,0,0,2180,2181,3,262,131,0,2181,129,1, + 0,0,0,2182,2183,5,132,0,0,2183,2184,3,262,131,0,2184,131,1,0,0,0, + 2185,2186,5,374,0,0,2186,2193,3,134,67,0,2187,2189,5,4,0,0,2188, + 2187,1,0,0,0,2188,2189,1,0,0,0,2189,2190,1,0,0,0,2190,2192,3,134, + 67,0,2191,2188,1,0,0,0,2192,2195,1,0,0,0,2193,2191,1,0,0,0,2193, + 2194,1,0,0,0,2194,2196,1,0,0,0,2195,2193,1,0,0,0,2196,2197,5,375, + 0,0,2197,133,1,0,0,0,2198,2212,3,354,177,0,2199,2200,3,354,177,0, + 2200,2201,5,2,0,0,2201,2206,3,270,135,0,2202,2203,5,4,0,0,2203,2205, + 3,270,135,0,2204,2202,1,0,0,0,2205,2208,1,0,0,0,2206,2204,1,0,0, + 0,2206,2207,1,0,0,0,2207,2209,1,0,0,0,2208,2206,1,0,0,0,2209,2210, + 5,3,0,0,2210,2212,1,0,0,0,2211,2198,1,0,0,0,2211,2199,1,0,0,0,2212, + 135,1,0,0,0,2213,2214,5,123,0,0,2214,2219,3,172,86,0,2215,2216,5, + 4,0,0,2216,2218,3,172,86,0,2217,2215,1,0,0,0,2218,2221,1,0,0,0,2219, + 2217,1,0,0,0,2219,2220,1,0,0,0,2220,2225,1,0,0,0,2221,2219,1,0,0, + 0,2222,2224,3,168,84,0,2223,2222,1,0,0,0,2224,2227,1,0,0,0,2225, + 2223,1,0,0,0,2225,2226,1,0,0,0,2226,2229,1,0,0,0,2227,2225,1,0,0, + 0,2228,2230,3,148,74,0,2229,2228,1,0,0,0,2229,2230,1,0,0,0,2230, + 2232,1,0,0,0,2231,2233,3,154,77,0,2232,2231,1,0,0,0,2232,2233,1, + 0,0,0,2233,137,1,0,0,0,2234,2236,5,119,0,0,2235,2234,1,0,0,0,2235, + 2236,1,0,0,0,2236,2237,1,0,0,0,2237,2238,7,27,0,0,2238,2239,5,20, + 0,0,2239,2242,5,201,0,0,2240,2243,5,382,0,0,2241,2243,3,364,182, + 0,2242,2240,1,0,0,0,2242,2241,1,0,0,0,2243,2252,1,0,0,0,2244,2246, + 5,119,0,0,2245,2244,1,0,0,0,2245,2246,1,0,0,0,2246,2247,1,0,0,0, + 2247,2248,7,28,0,0,2248,2249,5,20,0,0,2249,2250,5,201,0,0,2250,2252, + 3,266,133,0,2251,2235,1,0,0,0,2251,2245,1,0,0,0,2252,139,1,0,0,0, + 2253,2254,5,130,0,0,2254,2255,5,31,0,0,2255,2260,3,142,71,0,2256, + 2257,5,4,0,0,2257,2259,3,142,71,0,2258,2256,1,0,0,0,2259,2262,1, + 0,0,0,2260,2258,1,0,0,0,2260,2261,1,0,0,0,2261,2293,1,0,0,0,2262, + 2260,1,0,0,0,2263,2264,5,130,0,0,2264,2265,5,31,0,0,2265,2270,3, + 254,127,0,2266,2267,5,4,0,0,2267,2269,3,254,127,0,2268,2266,1,0, + 0,0,2269,2272,1,0,0,0,2270,2268,1,0,0,0,2270,2271,1,0,0,0,2271,2290, + 1,0,0,0,2272,2270,1,0,0,0,2273,2274,5,346,0,0,2274,2291,5,256,0, + 0,2275,2276,5,346,0,0,2276,2291,5,61,0,0,2277,2278,5,131,0,0,2278, + 2279,5,271,0,0,2279,2280,5,2,0,0,2280,2285,3,146,73,0,2281,2282, + 5,4,0,0,2282,2284,3,146,73,0,2283,2281,1,0,0,0,2284,2287,1,0,0,0, + 2285,2283,1,0,0,0,2285,2286,1,0,0,0,2286,2288,1,0,0,0,2287,2285, + 1,0,0,0,2288,2289,5,3,0,0,2289,2291,1,0,0,0,2290,2273,1,0,0,0,2290, + 2275,1,0,0,0,2290,2277,1,0,0,0,2290,2291,1,0,0,0,2291,2293,1,0,0, + 0,2292,2253,1,0,0,0,2292,2263,1,0,0,0,2293,141,1,0,0,0,2294,2298, + 3,80,40,0,2295,2298,3,144,72,0,2296,2298,3,254,127,0,2297,2294,1, + 0,0,0,2297,2295,1,0,0,0,2297,2296,1,0,0,0,2298,143,1,0,0,0,2299, + 2300,7,29,0,0,2300,2301,5,2,0,0,2301,2306,3,146,73,0,2302,2303,5, + 4,0,0,2303,2305,3,146,73,0,2304,2302,1,0,0,0,2305,2308,1,0,0,0,2306, + 2304,1,0,0,0,2306,2307,1,0,0,0,2307,2309,1,0,0,0,2308,2306,1,0,0, + 0,2309,2310,5,3,0,0,2310,2331,1,0,0,0,2311,2312,5,131,0,0,2312,2313, + 5,271,0,0,2313,2316,5,2,0,0,2314,2317,3,144,72,0,2315,2317,3,146, + 73,0,2316,2314,1,0,0,0,2316,2315,1,0,0,0,2317,2325,1,0,0,0,2318, + 2321,5,4,0,0,2319,2322,3,144,72,0,2320,2322,3,146,73,0,2321,2319, + 1,0,0,0,2321,2320,1,0,0,0,2322,2324,1,0,0,0,2323,2318,1,0,0,0,2324, + 2327,1,0,0,0,2325,2323,1,0,0,0,2325,2326,1,0,0,0,2326,2328,1,0,0, + 0,2327,2325,1,0,0,0,2328,2329,5,3,0,0,2329,2331,1,0,0,0,2330,2299, + 1,0,0,0,2330,2311,1,0,0,0,2331,145,1,0,0,0,2332,2353,3,80,40,0,2333, + 2353,3,254,127,0,2334,2349,5,2,0,0,2335,2338,3,80,40,0,2336,2338, + 3,254,127,0,2337,2335,1,0,0,0,2337,2336,1,0,0,0,2338,2346,1,0,0, + 0,2339,2342,5,4,0,0,2340,2343,3,80,40,0,2341,2343,3,254,127,0,2342, + 2340,1,0,0,0,2342,2341,1,0,0,0,2343,2345,1,0,0,0,2344,2339,1,0,0, + 0,2345,2348,1,0,0,0,2346,2344,1,0,0,0,2346,2347,1,0,0,0,2347,2350, + 1,0,0,0,2348,2346,1,0,0,0,2349,2337,1,0,0,0,2349,2350,1,0,0,0,2350, + 2351,1,0,0,0,2351,2353,5,3,0,0,2352,2332,1,0,0,0,2352,2333,1,0,0, + 0,2352,2334,1,0,0,0,2353,147,1,0,0,0,2354,2355,5,223,0,0,2355,2356, + 5,2,0,0,2356,2357,3,242,121,0,2357,2358,5,119,0,0,2358,2359,3,150, + 75,0,2359,2360,5,140,0,0,2360,2361,5,2,0,0,2361,2366,3,152,76,0, + 2362,2363,5,4,0,0,2363,2365,3,152,76,0,2364,2362,1,0,0,0,2365,2368, + 1,0,0,0,2366,2364,1,0,0,0,2366,2367,1,0,0,0,2367,2369,1,0,0,0,2368, + 2366,1,0,0,0,2369,2370,5,3,0,0,2370,2371,5,3,0,0,2371,149,1,0,0, + 0,2372,2385,3,354,177,0,2373,2374,5,2,0,0,2374,2379,3,354,177,0, + 2375,2376,5,4,0,0,2376,2378,3,354,177,0,2377,2375,1,0,0,0,2378,2381, + 1,0,0,0,2379,2377,1,0,0,0,2379,2380,1,0,0,0,2380,2382,1,0,0,0,2381, + 2379,1,0,0,0,2382,2383,5,3,0,0,2383,2385,1,0,0,0,2384,2372,1,0,0, + 0,2384,2373,1,0,0,0,2385,151,1,0,0,0,2386,2391,3,254,127,0,2387, + 2389,5,20,0,0,2388,2387,1,0,0,0,2388,2389,1,0,0,0,2389,2390,1,0, + 0,0,2390,2392,3,354,177,0,2391,2388,1,0,0,0,2391,2392,1,0,0,0,2392, + 153,1,0,0,0,2393,2396,5,327,0,0,2394,2395,7,30,0,0,2395,2397,5,199, + 0,0,2396,2394,1,0,0,0,2396,2397,1,0,0,0,2397,2398,1,0,0,0,2398,2401, + 5,2,0,0,2399,2402,3,156,78,0,2400,2402,3,158,79,0,2401,2399,1,0, + 0,0,2401,2400,1,0,0,0,2402,2403,1,0,0,0,2403,2408,5,3,0,0,2404,2406, + 5,20,0,0,2405,2404,1,0,0,0,2405,2406,1,0,0,0,2406,2407,1,0,0,0,2407, + 2409,3,354,177,0,2408,2405,1,0,0,0,2408,2409,1,0,0,0,2409,155,1, + 0,0,0,2410,2411,3,354,177,0,2411,2412,5,119,0,0,2412,2413,3,354, + 177,0,2413,2414,5,140,0,0,2414,2415,5,2,0,0,2415,2420,3,162,81,0, + 2416,2417,5,4,0,0,2417,2419,3,162,81,0,2418,2416,1,0,0,0,2419,2422, + 1,0,0,0,2420,2418,1,0,0,0,2420,2421,1,0,0,0,2421,2423,1,0,0,0,2422, + 2420,1,0,0,0,2423,2424,5,3,0,0,2424,157,1,0,0,0,2425,2426,5,2,0, + 0,2426,2431,3,354,177,0,2427,2428,5,4,0,0,2428,2430,3,354,177,0, + 2429,2427,1,0,0,0,2430,2433,1,0,0,0,2431,2429,1,0,0,0,2431,2432, + 1,0,0,0,2432,2434,1,0,0,0,2433,2431,1,0,0,0,2434,2435,5,3,0,0,2435, + 2436,5,119,0,0,2436,2437,3,354,177,0,2437,2438,5,140,0,0,2438,2439, + 5,2,0,0,2439,2444,3,160,80,0,2440,2441,5,4,0,0,2441,2443,3,160,80, + 0,2442,2440,1,0,0,0,2443,2446,1,0,0,0,2444,2442,1,0,0,0,2444,2445, + 1,0,0,0,2445,2447,1,0,0,0,2446,2444,1,0,0,0,2447,2448,5,3,0,0,2448, + 159,1,0,0,0,2449,2450,5,2,0,0,2450,2455,3,222,111,0,2451,2452,5, + 4,0,0,2452,2454,3,222,111,0,2453,2451,1,0,0,0,2454,2457,1,0,0,0, + 2455,2453,1,0,0,0,2455,2456,1,0,0,0,2456,2458,1,0,0,0,2457,2455, + 1,0,0,0,2458,2463,5,3,0,0,2459,2461,5,20,0,0,2460,2459,1,0,0,0,2460, + 2461,1,0,0,0,2461,2462,1,0,0,0,2462,2464,3,354,177,0,2463,2460,1, + 0,0,0,2463,2464,1,0,0,0,2464,161,1,0,0,0,2465,2470,3,222,111,0,2466, + 2468,5,20,0,0,2467,2466,1,0,0,0,2467,2468,1,0,0,0,2468,2469,1,0, + 0,0,2469,2471,3,354,177,0,2470,2467,1,0,0,0,2470,2471,1,0,0,0,2471, + 163,1,0,0,0,2472,2473,5,137,0,0,2473,2474,5,197,0,0,2474,2475,5, + 105,0,0,2475,165,1,0,0,0,2476,2477,5,137,0,0,2477,2478,5,105,0,0, + 2478,167,1,0,0,0,2479,2480,5,158,0,0,2480,2482,5,338,0,0,2481,2483, + 5,211,0,0,2482,2481,1,0,0,0,2482,2483,1,0,0,0,2483,2484,1,0,0,0, + 2484,2485,3,76,38,0,2485,2494,5,2,0,0,2486,2491,3,254,127,0,2487, + 2488,5,4,0,0,2488,2490,3,254,127,0,2489,2487,1,0,0,0,2490,2493,1, + 0,0,0,2491,2489,1,0,0,0,2491,2492,1,0,0,0,2492,2495,1,0,0,0,2493, + 2491,1,0,0,0,2494,2486,1,0,0,0,2494,2495,1,0,0,0,2495,2496,1,0,0, + 0,2496,2497,5,3,0,0,2497,2509,3,216,108,0,2498,2500,5,20,0,0,2499, + 2498,1,0,0,0,2499,2500,1,0,0,0,2500,2501,1,0,0,0,2501,2506,3,354, + 177,0,2502,2503,5,4,0,0,2503,2505,3,354,177,0,2504,2502,1,0,0,0, + 2505,2508,1,0,0,0,2506,2504,1,0,0,0,2506,2507,1,0,0,0,2507,2510, + 1,0,0,0,2508,2506,1,0,0,0,2509,2499,1,0,0,0,2509,2510,1,0,0,0,2510, + 169,1,0,0,0,2511,2512,7,31,0,0,2512,171,1,0,0,0,2513,2527,3,72,36, + 0,2514,2516,5,158,0,0,2515,2514,1,0,0,0,2515,2516,1,0,0,0,2516,2517, + 1,0,0,0,2517,2523,3,196,98,0,2518,2522,3,174,87,0,2519,2522,3,148, + 74,0,2520,2522,3,154,77,0,2521,2518,1,0,0,0,2521,2519,1,0,0,0,2521, + 2520,1,0,0,0,2522,2525,1,0,0,0,2523,2521,1,0,0,0,2523,2524,1,0,0, + 0,2524,2527,1,0,0,0,2525,2523,1,0,0,0,2526,2513,1,0,0,0,2526,2515, + 1,0,0,0,2527,173,1,0,0,0,2528,2529,3,176,88,0,2529,2531,5,155,0, + 0,2530,2532,5,158,0,0,2531,2530,1,0,0,0,2531,2532,1,0,0,0,2532,2533, + 1,0,0,0,2533,2535,3,196,98,0,2534,2536,3,178,89,0,2535,2534,1,0, + 0,0,2535,2536,1,0,0,0,2536,2546,1,0,0,0,2537,2538,5,194,0,0,2538, + 2539,3,176,88,0,2539,2541,5,155,0,0,2540,2542,5,158,0,0,2541,2540, + 1,0,0,0,2541,2542,1,0,0,0,2542,2543,1,0,0,0,2543,2544,3,196,98,0, + 2544,2546,1,0,0,0,2545,2528,1,0,0,0,2545,2537,1,0,0,0,2546,175,1, + 0,0,0,2547,2549,5,144,0,0,2548,2547,1,0,0,0,2548,2549,1,0,0,0,2549, + 2564,1,0,0,0,2550,2564,5,60,0,0,2551,2553,5,161,0,0,2552,2554,5, + 211,0,0,2553,2552,1,0,0,0,2553,2554,1,0,0,0,2554,2564,1,0,0,0,2555, + 2557,5,161,0,0,2556,2555,1,0,0,0,2556,2557,1,0,0,0,2557,2558,1,0, + 0,0,2558,2564,7,32,0,0,2559,2561,7,33,0,0,2560,2562,5,211,0,0,2561, + 2560,1,0,0,0,2561,2562,1,0,0,0,2562,2564,1,0,0,0,2563,2548,1,0,0, + 0,2563,2550,1,0,0,0,2563,2551,1,0,0,0,2563,2556,1,0,0,0,2563,2559, + 1,0,0,0,2564,177,1,0,0,0,2565,2572,5,203,0,0,2566,2573,3,262,131, + 0,2567,2570,3,84,42,0,2568,2569,5,352,0,0,2569,2571,3,84,42,0,2570, + 2568,1,0,0,0,2570,2571,1,0,0,0,2571,2573,1,0,0,0,2572,2566,1,0,0, + 0,2572,2567,1,0,0,0,2573,2577,1,0,0,0,2574,2575,5,332,0,0,2575,2577, + 3,184,92,0,2576,2565,1,0,0,0,2576,2574,1,0,0,0,2577,179,1,0,0,0, + 2578,2579,5,295,0,0,2579,2581,5,2,0,0,2580,2582,3,182,91,0,2581, + 2580,1,0,0,0,2581,2582,1,0,0,0,2582,2583,1,0,0,0,2583,2588,5,3,0, + 0,2584,2585,5,243,0,0,2585,2586,5,2,0,0,2586,2587,5,382,0,0,2587, + 2589,5,3,0,0,2588,2584,1,0,0,0,2588,2589,1,0,0,0,2589,181,1,0,0, + 0,2590,2592,5,362,0,0,2591,2590,1,0,0,0,2591,2592,1,0,0,0,2592,2593, + 1,0,0,0,2593,2594,7,34,0,0,2594,2615,5,222,0,0,2595,2596,3,254,127, + 0,2596,2597,5,258,0,0,2597,2615,1,0,0,0,2598,2599,5,29,0,0,2599, + 2600,5,382,0,0,2600,2601,5,210,0,0,2601,2602,5,201,0,0,2602,2611, + 5,382,0,0,2603,2609,5,203,0,0,2604,2610,3,354,177,0,2605,2606,3, + 348,174,0,2606,2607,5,2,0,0,2607,2608,5,3,0,0,2608,2610,1,0,0,0, + 2609,2604,1,0,0,0,2609,2605,1,0,0,0,2610,2612,1,0,0,0,2611,2603, + 1,0,0,0,2611,2612,1,0,0,0,2612,2615,1,0,0,0,2613,2615,3,254,127, + 0,2614,2591,1,0,0,0,2614,2595,1,0,0,0,2614,2598,1,0,0,0,2614,2613, + 1,0,0,0,2615,183,1,0,0,0,2616,2617,5,2,0,0,2617,2618,3,186,93,0, + 2618,2619,5,3,0,0,2619,185,1,0,0,0,2620,2625,3,350,175,0,2621,2622, + 5,4,0,0,2622,2624,3,350,175,0,2623,2621,1,0,0,0,2624,2627,1,0,0, + 0,2625,2623,1,0,0,0,2625,2626,1,0,0,0,2626,187,1,0,0,0,2627,2625, + 1,0,0,0,2628,2629,5,2,0,0,2629,2634,3,190,95,0,2630,2631,5,4,0,0, + 2631,2633,3,190,95,0,2632,2630,1,0,0,0,2633,2636,1,0,0,0,2634,2632, + 1,0,0,0,2634,2635,1,0,0,0,2635,2637,1,0,0,0,2636,2634,1,0,0,0,2637, + 2638,5,3,0,0,2638,189,1,0,0,0,2639,2641,3,350,175,0,2640,2642,7, + 25,0,0,2641,2640,1,0,0,0,2641,2642,1,0,0,0,2642,191,1,0,0,0,2643, + 2644,5,2,0,0,2644,2649,3,194,97,0,2645,2646,5,4,0,0,2646,2648,3, + 194,97,0,2647,2645,1,0,0,0,2648,2651,1,0,0,0,2649,2647,1,0,0,0,2649, + 2650,1,0,0,0,2650,2652,1,0,0,0,2651,2649,1,0,0,0,2652,2653,5,3,0, + 0,2653,193,1,0,0,0,2654,2657,3,88,44,0,2655,2656,5,51,0,0,2656,2658, + 3,364,182,0,2657,2655,1,0,0,0,2657,2658,1,0,0,0,2658,195,1,0,0,0, + 2659,2663,3,72,36,0,2660,2663,3,76,38,0,2661,2663,3,90,45,0,2662, + 2659,1,0,0,0,2662,2660,1,0,0,0,2662,2661,1,0,0,0,2663,2665,1,0,0, + 0,2664,2666,3,138,69,0,2665,2664,1,0,0,0,2665,2666,1,0,0,0,2666, + 2668,1,0,0,0,2667,2669,3,180,90,0,2668,2667,1,0,0,0,2668,2669,1, + 0,0,0,2669,2670,1,0,0,0,2670,2671,3,216,108,0,2671,2691,1,0,0,0, + 2672,2674,3,198,99,0,2673,2675,3,180,90,0,2674,2673,1,0,0,0,2674, + 2675,1,0,0,0,2675,2676,1,0,0,0,2676,2677,3,216,108,0,2677,2691,1, + 0,0,0,2678,2679,5,2,0,0,2679,2680,3,172,86,0,2680,2682,5,3,0,0,2681, + 2683,3,180,90,0,2682,2681,1,0,0,0,2682,2683,1,0,0,0,2683,2684,1, + 0,0,0,2684,2685,3,216,108,0,2685,2691,1,0,0,0,2686,2687,3,200,100, + 0,2687,2688,3,216,108,0,2688,2691,1,0,0,0,2689,2691,3,212,106,0, + 2690,2662,1,0,0,0,2690,2672,1,0,0,0,2690,2678,1,0,0,0,2690,2686, + 1,0,0,0,2690,2689,1,0,0,0,2691,197,1,0,0,0,2692,2693,5,2,0,0,2693, + 2694,3,16,8,0,2694,2695,5,3,0,0,2695,199,1,0,0,0,2696,2697,5,333, + 0,0,2697,2702,3,254,127,0,2698,2699,5,4,0,0,2699,2701,3,254,127, + 0,2700,2698,1,0,0,0,2701,2704,1,0,0,0,2702,2700,1,0,0,0,2702,2703, + 1,0,0,0,2703,201,1,0,0,0,2704,2702,1,0,0,0,2705,2706,5,293,0,0,2706, + 2708,3,72,36,0,2707,2709,3,204,102,0,2708,2707,1,0,0,0,2708,2709, + 1,0,0,0,2709,2725,1,0,0,0,2710,2711,5,293,0,0,2711,2712,5,2,0,0, + 2712,2713,3,72,36,0,2713,2715,5,3,0,0,2714,2716,3,204,102,0,2715, + 2714,1,0,0,0,2715,2716,1,0,0,0,2716,2725,1,0,0,0,2717,2718,5,293, + 0,0,2718,2719,5,2,0,0,2719,2720,3,16,8,0,2720,2722,5,3,0,0,2721, + 2723,3,204,102,0,2722,2721,1,0,0,0,2722,2723,1,0,0,0,2723,2725,1, + 0,0,0,2724,2705,1,0,0,0,2724,2710,1,0,0,0,2724,2717,1,0,0,0,2725, + 203,1,0,0,0,2726,2727,5,346,0,0,2727,2728,5,274,0,0,2728,2746,5, + 217,0,0,2729,2730,7,35,0,0,2730,2743,5,31,0,0,2731,2732,5,2,0,0, + 2732,2737,3,254,127,0,2733,2734,5,4,0,0,2734,2736,3,254,127,0,2735, + 2733,1,0,0,0,2736,2739,1,0,0,0,2737,2735,1,0,0,0,2737,2738,1,0,0, + 0,2738,2740,1,0,0,0,2739,2737,1,0,0,0,2740,2741,5,3,0,0,2741,2744, + 1,0,0,0,2742,2744,3,254,127,0,2743,2731,1,0,0,0,2743,2742,1,0,0, + 0,2744,2746,1,0,0,0,2745,2726,1,0,0,0,2745,2729,1,0,0,0,2746,2756, + 1,0,0,0,2747,2748,7,36,0,0,2748,2754,5,31,0,0,2749,2750,5,2,0,0, + 2750,2751,3,96,48,0,2751,2752,5,3,0,0,2752,2755,1,0,0,0,2753,2755, + 3,104,52,0,2754,2749,1,0,0,0,2754,2753,1,0,0,0,2755,2757,1,0,0,0, + 2756,2747,1,0,0,0,2756,2757,1,0,0,0,2757,205,1,0,0,0,2758,2759,3, + 354,177,0,2759,2760,5,373,0,0,2760,2761,3,202,101,0,2761,207,1,0, + 0,0,2762,2765,3,202,101,0,2763,2765,3,206,103,0,2764,2762,1,0,0, + 0,2764,2763,1,0,0,0,2765,209,1,0,0,0,2766,2769,3,208,104,0,2767, + 2769,3,258,129,0,2768,2766,1,0,0,0,2768,2767,1,0,0,0,2769,211,1, + 0,0,0,2770,2771,3,214,107,0,2771,2772,3,216,108,0,2772,213,1,0,0, + 0,2773,2774,3,344,172,0,2774,2783,5,2,0,0,2775,2780,3,210,105,0, + 2776,2777,5,4,0,0,2777,2779,3,210,105,0,2778,2776,1,0,0,0,2779,2782, + 1,0,0,0,2780,2778,1,0,0,0,2780,2781,1,0,0,0,2781,2784,1,0,0,0,2782, + 2780,1,0,0,0,2783,2775,1,0,0,0,2783,2784,1,0,0,0,2784,2785,1,0,0, + 0,2785,2786,5,3,0,0,2786,215,1,0,0,0,2787,2789,5,20,0,0,2788,2787, + 1,0,0,0,2788,2789,1,0,0,0,2789,2790,1,0,0,0,2790,2792,3,356,178, + 0,2791,2793,3,184,92,0,2792,2791,1,0,0,0,2792,2793,1,0,0,0,2793, + 2795,1,0,0,0,2794,2788,1,0,0,0,2794,2795,1,0,0,0,2795,217,1,0,0, + 0,2796,2797,5,257,0,0,2797,2798,5,121,0,0,2798,2799,5,266,0,0,2799, + 2803,3,364,182,0,2800,2801,5,346,0,0,2801,2802,5,267,0,0,2802,2804, + 3,42,21,0,2803,2800,1,0,0,0,2803,2804,1,0,0,0,2804,2846,1,0,0,0, + 2805,2806,5,257,0,0,2806,2807,5,121,0,0,2807,2817,5,85,0,0,2808, + 2809,5,113,0,0,2809,2810,5,299,0,0,2810,2811,5,31,0,0,2811,2815, + 3,364,182,0,2812,2813,5,101,0,0,2813,2814,5,31,0,0,2814,2816,3,364, + 182,0,2815,2812,1,0,0,0,2815,2816,1,0,0,0,2816,2818,1,0,0,0,2817, + 2808,1,0,0,0,2817,2818,1,0,0,0,2818,2824,1,0,0,0,2819,2820,5,48, + 0,0,2820,2821,5,154,0,0,2821,2822,5,299,0,0,2822,2823,5,31,0,0,2823, + 2825,3,364,182,0,2824,2819,1,0,0,0,2824,2825,1,0,0,0,2825,2831,1, + 0,0,0,2826,2827,5,177,0,0,2827,2828,5,156,0,0,2828,2829,5,299,0, + 0,2829,2830,5,31,0,0,2830,2832,3,364,182,0,2831,2826,1,0,0,0,2831, + 2832,1,0,0,0,2832,2837,1,0,0,0,2833,2834,5,166,0,0,2834,2835,5,299, + 0,0,2835,2836,5,31,0,0,2836,2838,3,364,182,0,2837,2833,1,0,0,0,2837, + 2838,1,0,0,0,2838,2843,1,0,0,0,2839,2840,5,198,0,0,2840,2841,5,83, + 0,0,2841,2842,5,20,0,0,2842,2844,3,364,182,0,2843,2839,1,0,0,0,2843, + 2844,1,0,0,0,2844,2846,1,0,0,0,2845,2796,1,0,0,0,2845,2805,1,0,0, + 0,2846,219,1,0,0,0,2847,2852,3,222,111,0,2848,2849,5,4,0,0,2849, + 2851,3,222,111,0,2850,2848,1,0,0,0,2851,2854,1,0,0,0,2852,2850,1, + 0,0,0,2852,2853,1,0,0,0,2853,221,1,0,0,0,2854,2852,1,0,0,0,2855, + 2860,3,350,175,0,2856,2857,5,5,0,0,2857,2859,3,350,175,0,2858,2856, + 1,0,0,0,2859,2862,1,0,0,0,2860,2858,1,0,0,0,2860,2861,1,0,0,0,2861, + 223,1,0,0,0,2862,2860,1,0,0,0,2863,2870,3,222,111,0,2864,2865,4, + 112,5,0,2865,2866,3,222,111,0,2866,2867,5,5,0,0,2867,2868,3,78,39, + 0,2868,2870,1,0,0,0,2869,2863,1,0,0,0,2869,2864,1,0,0,0,2870,225, + 1,0,0,0,2871,2876,3,228,114,0,2872,2873,5,4,0,0,2873,2875,3,228, + 114,0,2874,2872,1,0,0,0,2875,2878,1,0,0,0,2876,2874,1,0,0,0,2876, + 2877,1,0,0,0,2877,227,1,0,0,0,2878,2876,1,0,0,0,2879,2882,3,222, + 111,0,2880,2881,5,207,0,0,2881,2883,3,42,21,0,2882,2880,1,0,0,0, + 2882,2883,1,0,0,0,2883,229,1,0,0,0,2884,2885,3,350,175,0,2885,2886, + 5,5,0,0,2886,2888,1,0,0,0,2887,2884,1,0,0,0,2887,2888,1,0,0,0,2888, + 2889,1,0,0,0,2889,2890,3,350,175,0,2890,231,1,0,0,0,2891,2892,3, + 350,175,0,2892,2893,5,5,0,0,2893,2895,1,0,0,0,2894,2891,1,0,0,0, + 2894,2895,1,0,0,0,2895,2896,1,0,0,0,2896,2897,3,350,175,0,2897,233, + 1,0,0,0,2898,2899,3,80,40,0,2899,235,1,0,0,0,2900,2901,3,254,127, + 0,2901,237,1,0,0,0,2902,2903,3,348,174,0,2903,2904,5,5,0,0,2904, + 2906,1,0,0,0,2905,2902,1,0,0,0,2906,2909,1,0,0,0,2907,2905,1,0,0, + 0,2907,2908,1,0,0,0,2908,2910,1,0,0,0,2909,2907,1,0,0,0,2910,2911, + 5,363,0,0,2911,239,1,0,0,0,2912,2916,3,238,119,0,2913,2916,3,234, + 117,0,2914,2916,3,236,118,0,2915,2912,1,0,0,0,2915,2913,1,0,0,0, + 2915,2914,1,0,0,0,2916,2924,1,0,0,0,2917,2919,5,20,0,0,2918,2917, + 1,0,0,0,2918,2919,1,0,0,0,2919,2922,1,0,0,0,2920,2923,3,350,175, + 0,2921,2923,3,184,92,0,2922,2920,1,0,0,0,2922,2921,1,0,0,0,2923, + 2925,1,0,0,0,2924,2918,1,0,0,0,2924,2925,1,0,0,0,2925,241,1,0,0, + 0,2926,2931,3,240,120,0,2927,2928,5,4,0,0,2928,2930,3,240,120,0, + 2929,2927,1,0,0,0,2930,2933,1,0,0,0,2931,2929,1,0,0,0,2931,2932, + 1,0,0,0,2932,243,1,0,0,0,2933,2931,1,0,0,0,2934,2935,3,242,121,0, + 2935,245,1,0,0,0,2936,2937,5,2,0,0,2937,2942,3,248,124,0,2938,2939, + 5,4,0,0,2939,2941,3,248,124,0,2940,2938,1,0,0,0,2941,2944,1,0,0, + 0,2942,2940,1,0,0,0,2942,2943,1,0,0,0,2943,2945,1,0,0,0,2944,2942, + 1,0,0,0,2945,2946,5,3,0,0,2946,247,1,0,0,0,2947,2950,3,250,125,0, + 2948,2950,3,320,160,0,2949,2947,1,0,0,0,2949,2948,1,0,0,0,2950,249, + 1,0,0,0,2951,2965,3,348,174,0,2952,2953,3,354,177,0,2953,2954,5, + 2,0,0,2954,2959,3,252,126,0,2955,2956,5,4,0,0,2956,2958,3,252,126, + 0,2957,2955,1,0,0,0,2958,2961,1,0,0,0,2959,2957,1,0,0,0,2959,2960, + 1,0,0,0,2960,2962,1,0,0,0,2961,2959,1,0,0,0,2962,2963,5,3,0,0,2963, + 2965,1,0,0,0,2964,2951,1,0,0,0,2964,2952,1,0,0,0,2965,251,1,0,0, + 0,2966,2969,3,348,174,0,2967,2969,3,274,137,0,2968,2966,1,0,0,0, + 2968,2967,1,0,0,0,2969,253,1,0,0,0,2970,2971,3,262,131,0,2971,255, + 1,0,0,0,2972,2973,3,354,177,0,2973,2974,5,373,0,0,2974,2975,3,254, + 127,0,2975,257,1,0,0,0,2976,2979,3,254,127,0,2977,2979,3,256,128, + 0,2978,2976,1,0,0,0,2978,2977,1,0,0,0,2979,259,1,0,0,0,2980,2985, + 3,254,127,0,2981,2982,5,4,0,0,2982,2984,3,254,127,0,2983,2981,1, + 0,0,0,2984,2987,1,0,0,0,2985,2983,1,0,0,0,2985,2986,1,0,0,0,2986, + 261,1,0,0,0,2987,2985,1,0,0,0,2988,2989,6,131,-1,0,2989,2990,7,37, + 0,0,2990,3001,3,262,131,5,2991,2992,5,105,0,0,2992,2993,5,2,0,0, + 2993,2994,3,16,8,0,2994,2995,5,3,0,0,2995,3001,1,0,0,0,2996,2998, + 3,266,133,0,2997,2999,3,264,132,0,2998,2997,1,0,0,0,2998,2999,1, + 0,0,0,2999,3001,1,0,0,0,3000,2988,1,0,0,0,3000,2991,1,0,0,0,3000, + 2996,1,0,0,0,3001,3010,1,0,0,0,3002,3003,10,2,0,0,3003,3004,5,14, + 0,0,3004,3009,3,262,131,3,3005,3006,10,1,0,0,3006,3007,5,208,0,0, + 3007,3009,3,262,131,2,3008,3002,1,0,0,0,3008,3005,1,0,0,0,3009,3012, + 1,0,0,0,3010,3008,1,0,0,0,3010,3011,1,0,0,0,3011,263,1,0,0,0,3012, + 3010,1,0,0,0,3013,3015,5,197,0,0,3014,3013,1,0,0,0,3014,3015,1,0, + 0,0,3015,3016,1,0,0,0,3016,3017,5,24,0,0,3017,3018,3,266,133,0,3018, + 3019,5,14,0,0,3019,3020,3,266,133,0,3020,3096,1,0,0,0,3021,3023, + 5,197,0,0,3022,3021,1,0,0,0,3022,3023,1,0,0,0,3023,3024,1,0,0,0, + 3024,3025,5,140,0,0,3025,3026,5,2,0,0,3026,3031,3,254,127,0,3027, + 3028,5,4,0,0,3028,3030,3,254,127,0,3029,3027,1,0,0,0,3030,3033,1, + 0,0,0,3031,3029,1,0,0,0,3031,3032,1,0,0,0,3032,3034,1,0,0,0,3033, + 3031,1,0,0,0,3034,3035,5,3,0,0,3035,3096,1,0,0,0,3036,3038,5,197, + 0,0,3037,3036,1,0,0,0,3037,3038,1,0,0,0,3038,3039,1,0,0,0,3039,3040, + 5,140,0,0,3040,3041,5,2,0,0,3041,3042,3,16,8,0,3042,3043,5,3,0,0, + 3043,3096,1,0,0,0,3044,3046,5,197,0,0,3045,3044,1,0,0,0,3045,3046, + 1,0,0,0,3046,3047,1,0,0,0,3047,3048,7,38,0,0,3048,3096,3,266,133, + 0,3049,3051,5,197,0,0,3050,3049,1,0,0,0,3050,3051,1,0,0,0,3051,3052, + 1,0,0,0,3052,3053,7,39,0,0,3053,3067,7,40,0,0,3054,3055,5,2,0,0, + 3055,3068,5,3,0,0,3056,3057,5,2,0,0,3057,3062,3,254,127,0,3058,3059, + 5,4,0,0,3059,3061,3,254,127,0,3060,3058,1,0,0,0,3061,3064,1,0,0, + 0,3062,3060,1,0,0,0,3062,3063,1,0,0,0,3063,3065,1,0,0,0,3064,3062, + 1,0,0,0,3065,3066,5,3,0,0,3066,3068,1,0,0,0,3067,3054,1,0,0,0,3067, + 3056,1,0,0,0,3068,3096,1,0,0,0,3069,3071,5,197,0,0,3070,3069,1,0, + 0,0,3070,3071,1,0,0,0,3071,3072,1,0,0,0,3072,3073,7,39,0,0,3073, + 3076,3,266,133,0,3074,3075,5,100,0,0,3075,3077,3,364,182,0,3076, + 3074,1,0,0,0,3076,3077,1,0,0,0,3077,3096,1,0,0,0,3078,3080,5,153, + 0,0,3079,3081,5,197,0,0,3080,3079,1,0,0,0,3080,3081,1,0,0,0,3081, + 3082,1,0,0,0,3082,3096,5,198,0,0,3083,3085,5,153,0,0,3084,3086,5, + 197,0,0,3085,3084,1,0,0,0,3085,3086,1,0,0,0,3086,3087,1,0,0,0,3087, + 3096,7,41,0,0,3088,3090,5,153,0,0,3089,3091,5,197,0,0,3090,3089, + 1,0,0,0,3090,3091,1,0,0,0,3091,3092,1,0,0,0,3092,3093,5,92,0,0,3093, + 3094,5,123,0,0,3094,3096,3,266,133,0,3095,3014,1,0,0,0,3095,3022, + 1,0,0,0,3095,3037,1,0,0,0,3095,3045,1,0,0,0,3095,3050,1,0,0,0,3095, + 3070,1,0,0,0,3095,3078,1,0,0,0,3095,3083,1,0,0,0,3095,3088,1,0,0, + 0,3096,265,1,0,0,0,3097,3098,6,133,-1,0,3098,3102,3,270,135,0,3099, + 3100,7,42,0,0,3100,3102,3,266,133,7,3101,3097,1,0,0,0,3101,3099, + 1,0,0,0,3102,3124,1,0,0,0,3103,3104,10,6,0,0,3104,3105,7,43,0,0, + 3105,3123,3,266,133,7,3106,3107,10,5,0,0,3107,3108,7,44,0,0,3108, + 3123,3,266,133,6,3109,3110,10,4,0,0,3110,3111,5,367,0,0,3111,3123, + 3,266,133,5,3112,3113,10,3,0,0,3113,3114,5,370,0,0,3114,3123,3,266, + 133,4,3115,3116,10,2,0,0,3116,3117,5,368,0,0,3117,3123,3,266,133, + 3,3118,3119,10,1,0,0,3119,3120,3,276,138,0,3120,3121,3,266,133,2, + 3121,3123,1,0,0,0,3122,3103,1,0,0,0,3122,3106,1,0,0,0,3122,3109, + 1,0,0,0,3122,3112,1,0,0,0,3122,3115,1,0,0,0,3122,3118,1,0,0,0,3123, + 3126,1,0,0,0,3124,3122,1,0,0,0,3124,3125,1,0,0,0,3125,267,1,0,0, + 0,3126,3124,1,0,0,0,3127,3128,7,45,0,0,3128,269,1,0,0,0,3129,3130, + 6,135,-1,0,3130,3379,7,46,0,0,3131,3132,7,47,0,0,3132,3135,5,2,0, + 0,3133,3136,3,268,134,0,3134,3136,3,364,182,0,3135,3133,1,0,0,0, + 3135,3134,1,0,0,0,3136,3137,1,0,0,0,3137,3138,5,4,0,0,3138,3139, + 3,266,133,0,3139,3140,5,4,0,0,3140,3141,3,266,133,0,3141,3142,5, + 3,0,0,3142,3379,1,0,0,0,3143,3144,7,48,0,0,3144,3147,5,2,0,0,3145, + 3148,3,268,134,0,3146,3148,3,364,182,0,3147,3145,1,0,0,0,3147,3146, + 1,0,0,0,3148,3149,1,0,0,0,3149,3150,5,4,0,0,3150,3151,3,266,133, + 0,3151,3152,5,4,0,0,3152,3153,3,266,133,0,3153,3154,5,3,0,0,3154, + 3379,1,0,0,0,3155,3157,5,35,0,0,3156,3158,3,330,165,0,3157,3156, + 1,0,0,0,3158,3159,1,0,0,0,3159,3157,1,0,0,0,3159,3160,1,0,0,0,3160, + 3163,1,0,0,0,3161,3162,5,97,0,0,3162,3164,3,254,127,0,3163,3161, + 1,0,0,0,3163,3164,1,0,0,0,3164,3165,1,0,0,0,3165,3166,5,99,0,0,3166, + 3379,1,0,0,0,3167,3168,5,35,0,0,3168,3170,3,254,127,0,3169,3171, + 3,330,165,0,3170,3169,1,0,0,0,3171,3172,1,0,0,0,3172,3170,1,0,0, + 0,3172,3173,1,0,0,0,3173,3176,1,0,0,0,3174,3175,5,97,0,0,3175,3177, + 3,254,127,0,3176,3174,1,0,0,0,3176,3177,1,0,0,0,3177,3178,1,0,0, + 0,3178,3179,5,99,0,0,3179,3379,1,0,0,0,3180,3181,7,49,0,0,3181,3182, + 5,2,0,0,3182,3183,3,254,127,0,3183,3184,5,20,0,0,3184,3185,3,304, + 152,0,3185,3186,5,3,0,0,3186,3379,1,0,0,0,3187,3188,5,286,0,0,3188, + 3197,5,2,0,0,3189,3194,3,240,120,0,3190,3191,5,4,0,0,3191,3193,3, + 240,120,0,3192,3190,1,0,0,0,3193,3196,1,0,0,0,3194,3192,1,0,0,0, + 3194,3195,1,0,0,0,3195,3198,1,0,0,0,3196,3194,1,0,0,0,3197,3189, + 1,0,0,0,3197,3198,1,0,0,0,3198,3199,1,0,0,0,3199,3379,5,3,0,0,3200, + 3201,5,116,0,0,3201,3202,5,2,0,0,3202,3205,3,254,127,0,3203,3204, + 5,138,0,0,3204,3206,5,199,0,0,3205,3203,1,0,0,0,3205,3206,1,0,0, + 0,3206,3207,1,0,0,0,3207,3208,5,3,0,0,3208,3379,1,0,0,0,3209,3210, + 5,17,0,0,3210,3211,5,2,0,0,3211,3214,3,254,127,0,3212,3213,5,138, + 0,0,3213,3215,5,199,0,0,3214,3212,1,0,0,0,3214,3215,1,0,0,0,3215, + 3216,1,0,0,0,3216,3217,5,3,0,0,3217,3379,1,0,0,0,3218,3219,5,157, + 0,0,3219,3220,5,2,0,0,3220,3223,3,254,127,0,3221,3222,5,138,0,0, + 3222,3224,5,199,0,0,3223,3221,1,0,0,0,3223,3224,1,0,0,0,3224,3225, + 1,0,0,0,3225,3226,5,3,0,0,3226,3379,1,0,0,0,3227,3228,5,225,0,0, + 3228,3229,5,2,0,0,3229,3230,3,266,133,0,3230,3231,5,140,0,0,3231, + 3232,3,266,133,0,3232,3233,5,3,0,0,3233,3379,1,0,0,0,3234,3379,3, + 274,137,0,3235,3379,5,363,0,0,3236,3237,3,348,174,0,3237,3238,5, + 5,0,0,3238,3239,5,363,0,0,3239,3379,1,0,0,0,3240,3241,5,2,0,0,3241, + 3244,3,240,120,0,3242,3243,5,4,0,0,3243,3245,3,240,120,0,3244,3242, + 1,0,0,0,3245,3246,1,0,0,0,3246,3244,1,0,0,0,3246,3247,1,0,0,0,3247, + 3248,1,0,0,0,3248,3249,5,3,0,0,3249,3379,1,0,0,0,3250,3251,5,2,0, + 0,3251,3252,3,16,8,0,3252,3253,5,3,0,0,3253,3379,1,0,0,0,3254,3255, + 5,136,0,0,3255,3256,5,2,0,0,3256,3257,3,254,127,0,3257,3258,5,3, + 0,0,3258,3379,1,0,0,0,3259,3260,3,344,172,0,3260,3272,5,2,0,0,3261, + 3263,3,170,85,0,3262,3261,1,0,0,0,3262,3263,1,0,0,0,3263,3264,1, + 0,0,0,3264,3269,3,258,129,0,3265,3266,5,4,0,0,3266,3268,3,258,129, + 0,3267,3265,1,0,0,0,3268,3271,1,0,0,0,3269,3267,1,0,0,0,3269,3270, + 1,0,0,0,3270,3273,1,0,0,0,3271,3269,1,0,0,0,3272,3262,1,0,0,0,3272, + 3273,1,0,0,0,3273,3274,1,0,0,0,3274,3281,5,3,0,0,3275,3276,5,114, + 0,0,3276,3277,5,2,0,0,3277,3278,5,344,0,0,3278,3279,3,262,131,0, + 3279,3280,5,3,0,0,3280,3282,1,0,0,0,3281,3275,1,0,0,0,3281,3282, + 1,0,0,0,3282,3285,1,0,0,0,3283,3284,7,50,0,0,3284,3286,5,199,0,0, + 3285,3283,1,0,0,0,3285,3286,1,0,0,0,3286,3289,1,0,0,0,3287,3288, + 5,213,0,0,3288,3290,3,336,168,0,3289,3287,1,0,0,0,3289,3290,1,0, + 0,0,3290,3379,1,0,0,0,3291,3292,3,354,177,0,3292,3293,5,372,0,0, + 3293,3294,3,254,127,0,3294,3379,1,0,0,0,3295,3296,5,2,0,0,3296,3299, + 3,354,177,0,3297,3298,5,4,0,0,3298,3300,3,354,177,0,3299,3297,1, + 0,0,0,3300,3301,1,0,0,0,3301,3299,1,0,0,0,3301,3302,1,0,0,0,3302, + 3303,1,0,0,0,3303,3304,5,3,0,0,3304,3305,5,372,0,0,3305,3306,3,254, + 127,0,3306,3379,1,0,0,0,3307,3379,3,82,41,0,3308,3309,5,2,0,0,3309, + 3310,3,254,127,0,3310,3311,5,3,0,0,3311,3379,1,0,0,0,3312,3313,5, + 110,0,0,3313,3314,5,2,0,0,3314,3315,3,354,177,0,3315,3316,5,123, + 0,0,3316,3317,3,266,133,0,3317,3318,5,3,0,0,3318,3379,1,0,0,0,3319, + 3320,7,51,0,0,3320,3321,5,2,0,0,3321,3322,3,266,133,0,3322,3323, + 7,52,0,0,3323,3326,3,266,133,0,3324,3325,7,53,0,0,3325,3327,3,266, + 133,0,3326,3324,1,0,0,0,3326,3327,1,0,0,0,3327,3328,1,0,0,0,3328, + 3329,5,3,0,0,3329,3379,1,0,0,0,3330,3331,5,315,0,0,3331,3333,5,2, + 0,0,3332,3334,7,54,0,0,3333,3332,1,0,0,0,3333,3334,1,0,0,0,3334, + 3336,1,0,0,0,3335,3337,3,266,133,0,3336,3335,1,0,0,0,3336,3337,1, + 0,0,0,3337,3338,1,0,0,0,3338,3339,5,123,0,0,3339,3340,3,266,133, + 0,3340,3341,5,3,0,0,3341,3379,1,0,0,0,3342,3343,5,215,0,0,3343,3344, + 5,2,0,0,3344,3345,3,266,133,0,3345,3346,5,224,0,0,3346,3347,3,266, + 133,0,3347,3348,5,123,0,0,3348,3351,3,266,133,0,3349,3350,5,119, + 0,0,3350,3352,3,266,133,0,3351,3349,1,0,0,0,3351,3352,1,0,0,0,3352, + 3353,1,0,0,0,3353,3354,5,3,0,0,3354,3379,1,0,0,0,3355,3356,7,55, + 0,0,3356,3357,5,2,0,0,3357,3358,3,266,133,0,3358,3359,5,3,0,0,3359, + 3360,5,347,0,0,3360,3361,5,130,0,0,3361,3362,5,2,0,0,3362,3363,5, + 209,0,0,3363,3364,5,31,0,0,3364,3365,3,104,52,0,3365,3372,5,3,0, + 0,3366,3367,5,114,0,0,3367,3368,5,2,0,0,3368,3369,5,344,0,0,3369, + 3370,3,262,131,0,3370,3371,5,3,0,0,3371,3373,1,0,0,0,3372,3366,1, + 0,0,0,3372,3373,1,0,0,0,3373,3376,1,0,0,0,3374,3375,5,213,0,0,3375, + 3377,3,336,168,0,3376,3374,1,0,0,0,3376,3377,1,0,0,0,3377,3379,1, + 0,0,0,3378,3129,1,0,0,0,3378,3131,1,0,0,0,3378,3143,1,0,0,0,3378, + 3155,1,0,0,0,3378,3167,1,0,0,0,3378,3180,1,0,0,0,3378,3187,1,0,0, + 0,3378,3200,1,0,0,0,3378,3209,1,0,0,0,3378,3218,1,0,0,0,3378,3227, + 1,0,0,0,3378,3234,1,0,0,0,3378,3235,1,0,0,0,3378,3236,1,0,0,0,3378, + 3240,1,0,0,0,3378,3250,1,0,0,0,3378,3254,1,0,0,0,3378,3259,1,0,0, + 0,3378,3291,1,0,0,0,3378,3295,1,0,0,0,3378,3307,1,0,0,0,3378,3308, + 1,0,0,0,3378,3312,1,0,0,0,3378,3319,1,0,0,0,3378,3330,1,0,0,0,3378, + 3342,1,0,0,0,3378,3355,1,0,0,0,3379,3390,1,0,0,0,3380,3381,10,9, + 0,0,3381,3382,5,6,0,0,3382,3383,3,266,133,0,3383,3384,5,7,0,0,3384, + 3389,1,0,0,0,3385,3386,10,7,0,0,3386,3387,5,5,0,0,3387,3389,3,354, + 177,0,3388,3380,1,0,0,0,3388,3385,1,0,0,0,3389,3392,1,0,0,0,3390, + 3388,1,0,0,0,3390,3391,1,0,0,0,3391,271,1,0,0,0,3392,3390,1,0,0, + 0,3393,3401,5,71,0,0,3394,3401,5,303,0,0,3395,3401,5,304,0,0,3396, + 3401,5,305,0,0,3397,3401,5,149,0,0,3398,3401,5,133,0,0,3399,3401, + 3,354,177,0,3400,3393,1,0,0,0,3400,3394,1,0,0,0,3400,3395,1,0,0, + 0,3400,3396,1,0,0,0,3400,3397,1,0,0,0,3400,3398,1,0,0,0,3400,3399, + 1,0,0,0,3401,273,1,0,0,0,3402,3418,5,198,0,0,3403,3418,5,376,0,0, + 3404,3405,5,371,0,0,3405,3418,3,354,177,0,3406,3418,3,284,142,0, + 3407,3408,3,272,136,0,3408,3409,3,364,182,0,3409,3418,1,0,0,0,3410, + 3418,3,360,180,0,3411,3418,3,282,141,0,3412,3414,3,364,182,0,3413, + 3412,1,0,0,0,3414,3415,1,0,0,0,3415,3413,1,0,0,0,3415,3416,1,0,0, + 0,3416,3418,1,0,0,0,3417,3402,1,0,0,0,3417,3403,1,0,0,0,3417,3404, + 1,0,0,0,3417,3406,1,0,0,0,3417,3407,1,0,0,0,3417,3410,1,0,0,0,3417, + 3411,1,0,0,0,3417,3413,1,0,0,0,3418,275,1,0,0,0,3419,3420,7,56,0, + 0,3420,277,1,0,0,0,3421,3422,7,57,0,0,3422,279,1,0,0,0,3423,3424, + 7,58,0,0,3424,281,1,0,0,0,3425,3426,7,59,0,0,3426,283,1,0,0,0,3427, + 3430,5,149,0,0,3428,3431,3,286,143,0,3429,3431,3,290,145,0,3430, + 3428,1,0,0,0,3430,3429,1,0,0,0,3431,285,1,0,0,0,3432,3434,3,288, + 144,0,3433,3435,3,292,146,0,3434,3433,1,0,0,0,3434,3435,1,0,0,0, + 3435,287,1,0,0,0,3436,3437,3,294,147,0,3437,3438,3,296,148,0,3438, + 3440,1,0,0,0,3439,3436,1,0,0,0,3440,3441,1,0,0,0,3441,3439,1,0,0, + 0,3441,3442,1,0,0,0,3442,289,1,0,0,0,3443,3446,3,292,146,0,3444, + 3447,3,288,144,0,3445,3447,3,292,146,0,3446,3444,1,0,0,0,3446,3445, + 1,0,0,0,3446,3447,1,0,0,0,3447,291,1,0,0,0,3448,3449,3,294,147,0, + 3449,3450,3,298,149,0,3450,3451,5,309,0,0,3451,3452,3,298,149,0, + 3452,293,1,0,0,0,3453,3455,7,60,0,0,3454,3453,1,0,0,0,3454,3455, + 1,0,0,0,3455,3459,1,0,0,0,3456,3460,5,382,0,0,3457,3460,5,384,0, + 0,3458,3460,3,364,182,0,3459,3456,1,0,0,0,3459,3457,1,0,0,0,3459, + 3458,1,0,0,0,3460,295,1,0,0,0,3461,3462,7,61,0,0,3462,297,1,0,0, + 0,3463,3464,7,62,0,0,3464,299,1,0,0,0,3465,3469,5,116,0,0,3466,3467, + 5,9,0,0,3467,3469,3,350,175,0,3468,3465,1,0,0,0,3468,3466,1,0,0, + 0,3469,301,1,0,0,0,3470,3501,5,27,0,0,3471,3501,5,308,0,0,3472,3501, + 5,32,0,0,3473,3501,5,276,0,0,3474,3501,5,272,0,0,3475,3501,5,150, + 0,0,3476,3501,5,151,0,0,3477,3501,5,25,0,0,3478,3501,5,174,0,0,3479, + 3501,5,117,0,0,3480,3501,5,234,0,0,3481,3501,5,95,0,0,3482,3501, + 5,71,0,0,3483,3501,5,303,0,0,3484,3501,5,305,0,0,3485,3501,5,304, + 0,0,3486,3501,5,285,0,0,3487,3501,5,41,0,0,3488,3501,5,40,0,0,3489, + 3501,5,334,0,0,3490,3501,5,26,0,0,3491,3501,5,80,0,0,3492,3501,5, + 79,0,0,3493,3501,5,200,0,0,3494,3501,5,340,0,0,3495,3501,5,149,0, + 0,3496,3501,5,19,0,0,3497,3501,5,286,0,0,3498,3501,5,177,0,0,3499, + 3501,3,354,177,0,3500,3470,1,0,0,0,3500,3471,1,0,0,0,3500,3472,1, + 0,0,0,3500,3473,1,0,0,0,3500,3474,1,0,0,0,3500,3475,1,0,0,0,3500, + 3476,1,0,0,0,3500,3477,1,0,0,0,3500,3478,1,0,0,0,3500,3479,1,0,0, + 0,3500,3480,1,0,0,0,3500,3481,1,0,0,0,3500,3482,1,0,0,0,3500,3483, + 1,0,0,0,3500,3484,1,0,0,0,3500,3485,1,0,0,0,3500,3486,1,0,0,0,3500, + 3487,1,0,0,0,3500,3488,1,0,0,0,3500,3489,1,0,0,0,3500,3490,1,0,0, + 0,3500,3491,1,0,0,0,3500,3492,1,0,0,0,3500,3493,1,0,0,0,3500,3494, + 1,0,0,0,3500,3495,1,0,0,0,3500,3496,1,0,0,0,3500,3497,1,0,0,0,3500, + 3498,1,0,0,0,3500,3499,1,0,0,0,3501,303,1,0,0,0,3502,3503,5,19,0, + 0,3503,3504,5,356,0,0,3504,3505,3,304,152,0,3505,3506,5,358,0,0, + 3506,3556,1,0,0,0,3507,3508,5,177,0,0,3508,3509,5,356,0,0,3509,3510, + 3,304,152,0,3510,3511,5,4,0,0,3511,3512,3,304,152,0,3512,3513,5, + 358,0,0,3513,3556,1,0,0,0,3514,3528,5,286,0,0,3515,3524,5,356,0, + 0,3516,3521,3,328,164,0,3517,3518,5,4,0,0,3518,3520,3,328,164,0, + 3519,3517,1,0,0,0,3520,3523,1,0,0,0,3521,3519,1,0,0,0,3521,3522, + 1,0,0,0,3522,3525,1,0,0,0,3523,3521,1,0,0,0,3524,3516,1,0,0,0,3524, + 3525,1,0,0,0,3525,3526,1,0,0,0,3526,3529,5,358,0,0,3527,3529,5,354, + 0,0,3528,3515,1,0,0,0,3528,3527,1,0,0,0,3529,3556,1,0,0,0,3530,3531, + 5,149,0,0,3531,3534,7,63,0,0,3532,3533,5,309,0,0,3533,3535,5,186, + 0,0,3534,3532,1,0,0,0,3534,3535,1,0,0,0,3535,3556,1,0,0,0,3536,3537, + 5,149,0,0,3537,3540,7,64,0,0,3538,3539,5,309,0,0,3539,3541,7,65, + 0,0,3540,3538,1,0,0,0,3540,3541,1,0,0,0,3541,3556,1,0,0,0,3542,3553, + 3,302,151,0,3543,3544,5,2,0,0,3544,3549,5,382,0,0,3545,3546,5,4, + 0,0,3546,3548,5,382,0,0,3547,3545,1,0,0,0,3548,3551,1,0,0,0,3549, + 3547,1,0,0,0,3549,3550,1,0,0,0,3550,3552,1,0,0,0,3551,3549,1,0,0, + 0,3552,3554,5,3,0,0,3553,3543,1,0,0,0,3553,3554,1,0,0,0,3554,3556, + 1,0,0,0,3555,3502,1,0,0,0,3555,3507,1,0,0,0,3555,3514,1,0,0,0,3555, + 3530,1,0,0,0,3555,3536,1,0,0,0,3555,3542,1,0,0,0,3556,305,1,0,0, + 0,3557,3562,3,308,154,0,3558,3559,5,4,0,0,3559,3561,3,308,154,0, + 3560,3558,1,0,0,0,3561,3564,1,0,0,0,3562,3560,1,0,0,0,3562,3563, + 1,0,0,0,3563,307,1,0,0,0,3564,3562,1,0,0,0,3565,3566,3,88,44,0,3566, + 3570,3,304,152,0,3567,3569,3,314,157,0,3568,3567,1,0,0,0,3569,3572, + 1,0,0,0,3570,3568,1,0,0,0,3570,3571,1,0,0,0,3571,309,1,0,0,0,3572, + 3570,1,0,0,0,3573,3578,3,312,156,0,3574,3575,5,4,0,0,3575,3577,3, + 312,156,0,3576,3574,1,0,0,0,3577,3580,1,0,0,0,3578,3576,1,0,0,0, + 3578,3579,1,0,0,0,3579,311,1,0,0,0,3580,3578,1,0,0,0,3581,3582,3, + 80,40,0,3582,3586,3,304,152,0,3583,3585,3,314,157,0,3584,3583,1, + 0,0,0,3585,3588,1,0,0,0,3586,3584,1,0,0,0,3586,3587,1,0,0,0,3587, + 313,1,0,0,0,3588,3586,1,0,0,0,3589,3590,5,197,0,0,3590,3597,5,198, + 0,0,3591,3592,5,82,0,0,3592,3597,3,254,127,0,3593,3594,5,51,0,0, + 3594,3597,3,364,182,0,3595,3597,3,300,150,0,3596,3589,1,0,0,0,3596, + 3591,1,0,0,0,3596,3593,1,0,0,0,3596,3595,1,0,0,0,3597,315,1,0,0, + 0,3598,3599,7,66,0,0,3599,3600,3,254,127,0,3600,317,1,0,0,0,3601, + 3606,3,320,160,0,3602,3603,5,4,0,0,3603,3605,3,320,160,0,3604,3602, + 1,0,0,0,3605,3608,1,0,0,0,3606,3604,1,0,0,0,3606,3607,1,0,0,0,3607, + 319,1,0,0,0,3608,3606,1,0,0,0,3609,3610,3,350,175,0,3610,3613,3, + 304,152,0,3611,3612,5,197,0,0,3612,3614,5,198,0,0,3613,3611,1,0, + 0,0,3613,3614,1,0,0,0,3614,3617,1,0,0,0,3615,3616,5,51,0,0,3616, + 3618,3,364,182,0,3617,3615,1,0,0,0,3617,3618,1,0,0,0,3618,321,1, + 0,0,0,3619,3624,3,324,162,0,3620,3621,5,4,0,0,3621,3623,3,324,162, + 0,3622,3620,1,0,0,0,3623,3626,1,0,0,0,3624,3622,1,0,0,0,3624,3625, + 1,0,0,0,3625,323,1,0,0,0,3626,3624,1,0,0,0,3627,3628,3,88,44,0,3628, + 3632,3,304,152,0,3629,3631,3,326,163,0,3630,3629,1,0,0,0,3631,3634, + 1,0,0,0,3632,3630,1,0,0,0,3632,3633,1,0,0,0,3633,325,1,0,0,0,3634, + 3632,1,0,0,0,3635,3636,5,197,0,0,3636,3649,5,198,0,0,3637,3638,5, + 82,0,0,3638,3649,3,254,127,0,3639,3640,5,127,0,0,3640,3641,5,12, + 0,0,3641,3642,5,20,0,0,3642,3643,5,2,0,0,3643,3644,3,254,127,0,3644, + 3645,5,3,0,0,3645,3649,1,0,0,0,3646,3647,5,51,0,0,3647,3649,3,364, + 182,0,3648,3635,1,0,0,0,3648,3637,1,0,0,0,3648,3639,1,0,0,0,3648, + 3646,1,0,0,0,3649,327,1,0,0,0,3650,3652,3,354,177,0,3651,3653,5, + 371,0,0,3652,3651,1,0,0,0,3652,3653,1,0,0,0,3653,3654,1,0,0,0,3654, + 3657,3,304,152,0,3655,3656,5,197,0,0,3656,3658,5,198,0,0,3657,3655, + 1,0,0,0,3657,3658,1,0,0,0,3658,3661,1,0,0,0,3659,3660,5,51,0,0,3660, + 3662,3,364,182,0,3661,3659,1,0,0,0,3661,3662,1,0,0,0,3662,329,1, + 0,0,0,3663,3664,5,343,0,0,3664,3665,3,254,127,0,3665,3666,5,300, + 0,0,3666,3667,3,254,127,0,3667,331,1,0,0,0,3668,3669,5,345,0,0,3669, + 3670,3,350,175,0,3670,3671,5,20,0,0,3671,3679,3,336,168,0,3672,3673, + 5,4,0,0,3673,3674,3,350,175,0,3674,3675,5,20,0,0,3675,3676,3,336, + 168,0,3676,3678,1,0,0,0,3677,3672,1,0,0,0,3678,3681,1,0,0,0,3679, + 3677,1,0,0,0,3679,3680,1,0,0,0,3680,333,1,0,0,0,3681,3679,1,0,0, + 0,3682,3683,5,351,0,0,3683,3684,5,31,0,0,3684,3685,3,86,43,0,3685, + 335,1,0,0,0,3686,3726,3,350,175,0,3687,3688,5,2,0,0,3688,3689,3, + 350,175,0,3689,3690,5,3,0,0,3690,3726,1,0,0,0,3691,3719,5,2,0,0, + 3692,3693,5,44,0,0,3693,3694,5,31,0,0,3694,3699,3,254,127,0,3695, + 3696,5,4,0,0,3696,3698,3,254,127,0,3697,3695,1,0,0,0,3698,3701,1, + 0,0,0,3699,3697,1,0,0,0,3699,3700,1,0,0,0,3700,3720,1,0,0,0,3701, + 3699,1,0,0,0,3702,3703,7,35,0,0,3703,3704,5,31,0,0,3704,3709,3,254, + 127,0,3705,3706,5,4,0,0,3706,3708,3,254,127,0,3707,3705,1,0,0,0, + 3708,3711,1,0,0,0,3709,3707,1,0,0,0,3709,3710,1,0,0,0,3710,3713, + 1,0,0,0,3711,3709,1,0,0,0,3712,3702,1,0,0,0,3712,3713,1,0,0,0,3713, + 3717,1,0,0,0,3714,3715,7,36,0,0,3715,3716,5,31,0,0,3716,3718,3,96, + 48,0,3717,3714,1,0,0,0,3717,3718,1,0,0,0,3718,3720,1,0,0,0,3719, + 3692,1,0,0,0,3719,3712,1,0,0,0,3720,3722,1,0,0,0,3721,3723,3,338, + 169,0,3722,3721,1,0,0,0,3722,3723,1,0,0,0,3723,3724,1,0,0,0,3724, + 3726,5,3,0,0,3725,3686,1,0,0,0,3725,3687,1,0,0,0,3725,3691,1,0,0, + 0,3726,337,1,0,0,0,3727,3728,7,67,0,0,3728,3736,3,340,170,0,3729, + 3730,7,67,0,0,3730,3731,5,24,0,0,3731,3732,3,340,170,0,3732,3733, + 5,14,0,0,3733,3734,3,340,170,0,3734,3736,1,0,0,0,3735,3727,1,0,0, + 0,3735,3729,1,0,0,0,3736,339,1,0,0,0,3737,3738,5,321,0,0,3738,3745, + 7,68,0,0,3739,3740,5,62,0,0,3740,3745,5,257,0,0,3741,3742,3,254, + 127,0,3742,3743,7,68,0,0,3743,3745,1,0,0,0,3744,3737,1,0,0,0,3744, + 3739,1,0,0,0,3744,3741,1,0,0,0,3745,341,1,0,0,0,3746,3751,3,348, + 174,0,3747,3748,5,4,0,0,3748,3750,3,348,174,0,3749,3747,1,0,0,0, + 3750,3753,1,0,0,0,3751,3749,1,0,0,0,3751,3752,1,0,0,0,3752,343,1, + 0,0,0,3753,3751,1,0,0,0,3754,3755,5,136,0,0,3755,3756,5,2,0,0,3756, + 3757,3,254,127,0,3757,3758,5,3,0,0,3758,3764,1,0,0,0,3759,3764,3, + 348,174,0,3760,3764,5,114,0,0,3761,3764,5,161,0,0,3762,3764,5,250, + 0,0,3763,3754,1,0,0,0,3763,3759,1,0,0,0,3763,3760,1,0,0,0,3763,3761, + 1,0,0,0,3763,3762,1,0,0,0,3764,345,1,0,0,0,3765,3766,3,348,174,0, + 3766,347,1,0,0,0,3767,3772,3,354,177,0,3768,3769,5,5,0,0,3769,3771, + 3,354,177,0,3770,3768,1,0,0,0,3771,3774,1,0,0,0,3772,3770,1,0,0, + 0,3772,3773,1,0,0,0,3773,349,1,0,0,0,3774,3772,1,0,0,0,3775,3776, + 3,354,177,0,3776,3777,3,352,176,0,3777,351,1,0,0,0,3778,3779,5,362, + 0,0,3779,3781,3,354,177,0,3780,3778,1,0,0,0,3781,3782,1,0,0,0,3782, + 3780,1,0,0,0,3782,3783,1,0,0,0,3783,3786,1,0,0,0,3784,3786,1,0,0, + 0,3785,3780,1,0,0,0,3785,3784,1,0,0,0,3786,353,1,0,0,0,3787,3790, + 3,356,178,0,3788,3790,3,368,184,0,3789,3787,1,0,0,0,3789,3788,1, + 0,0,0,3790,355,1,0,0,0,3791,3796,5,388,0,0,3792,3796,3,358,179,0, + 3793,3796,3,366,183,0,3794,3796,3,370,185,0,3795,3791,1,0,0,0,3795, + 3792,1,0,0,0,3795,3793,1,0,0,0,3795,3794,1,0,0,0,3796,357,1,0,0, + 0,3797,3798,7,69,0,0,3798,359,1,0,0,0,3799,3801,5,362,0,0,3800,3799, + 1,0,0,0,3800,3801,1,0,0,0,3801,3802,1,0,0,0,3802,3803,7,70,0,0,3803, + 361,1,0,0,0,3804,3805,5,319,0,0,3805,3818,3,304,152,0,3806,3807, + 5,51,0,0,3807,3818,3,364,182,0,3808,3818,3,300,150,0,3809,3810,7, + 71,0,0,3810,3811,5,197,0,0,3811,3818,5,198,0,0,3812,3813,5,269,0, + 0,3813,3814,5,82,0,0,3814,3818,3,254,127,0,3815,3816,5,96,0,0,3816, + 3818,5,82,0,0,3817,3804,1,0,0,0,3817,3806,1,0,0,0,3817,3808,1,0, + 0,0,3817,3809,1,0,0,0,3817,3812,1,0,0,0,3817,3815,1,0,0,0,3818,363, + 1,0,0,0,3819,3820,7,72,0,0,3820,365,1,0,0,0,3821,3822,7,73,0,0,3822, + 367,1,0,0,0,3823,3824,7,74,0,0,3824,369,1,0,0,0,3825,3826,7,75,0, + 0,3826,371,1,0,0,0,509,375,382,386,391,398,403,413,415,435,439,445, + 448,451,455,458,462,469,472,476,479,484,497,499,504,513,516,520, + 523,529,540,546,551,584,594,605,616,627,632,641,645,651,655,660, + 666,678,686,692,703,707,712,727,731,738,742,748,778,782,787,794, + 800,803,806,810,814,823,825,834,837,846,851,857,864,867,871,886, + 889,895,899,916,918,926,930,936,939,943,946,952,957,961,968,971, + 974,981,986,995,1003,1009,1012,1015,1021,1025,1030,1033,1037,1039, + 1047,1055,1058,1065,1068,1071,1080,1085,1091,1096,1099,1103,1106, + 1110,1120,1125,1138,1141,1149,1155,1158,1161,1166,1174,1179,1185, + 1191,1194,1201,1208,1216,1228,1236,1263,1266,1272,1281,1290,1296, + 1301,1306,1313,1318,1323,1330,1338,1341,1347,1354,1358,1421,1429, + 1436,1444,1456,1461,1470,1478,1483,1485,1493,1498,1502,1505,1513, + 1518,1527,1532,1535,1540,1544,1549,1551,1556,1565,1573,1579,1588, + 1595,1604,1609,1612,1637,1639,1651,1658,1661,1668,1672,1678,1686, + 1693,1696,1704,1715,1726,1734,1740,1751,1758,1765,1777,1785,1791, + 1797,1800,1819,1826,1833,1844,1849,1854,1859,1864,1867,1870,1874, + 1879,1886,1894,1903,1909,1915,1918,1920,1928,1938,1947,1951,1954, + 1958,1962,1970,1974,1977,1980,1983,1987,1991,1996,2000,2003,2006, + 2009,2013,2018,2022,2025,2028,2031,2033,2039,2046,2051,2054,2057, + 2061,2071,2075,2077,2080,2084,2090,2094,2105,2113,2115,2122,2126, + 2138,2145,2160,2165,2172,2188,2193,2206,2211,2219,2225,2229,2232, + 2235,2242,2245,2251,2260,2270,2285,2290,2292,2297,2306,2316,2321, + 2325,2330,2337,2342,2346,2349,2352,2366,2379,2384,2388,2391,2396, + 2401,2405,2408,2420,2431,2444,2455,2460,2463,2467,2470,2482,2491, + 2494,2499,2506,2509,2515,2521,2523,2526,2531,2535,2541,2545,2548, + 2553,2556,2561,2563,2570,2572,2576,2581,2588,2591,2609,2611,2614, + 2625,2634,2641,2649,2657,2662,2665,2668,2674,2682,2690,2702,2708, + 2715,2722,2724,2737,2743,2745,2754,2756,2764,2768,2780,2783,2788, + 2792,2794,2803,2815,2817,2824,2831,2837,2843,2845,2852,2860,2869, + 2876,2882,2887,2894,2907,2915,2918,2922,2924,2931,2942,2949,2959, + 2964,2968,2978,2985,2998,3000,3008,3010,3014,3022,3031,3037,3045, + 3050,3062,3067,3070,3076,3080,3085,3090,3095,3101,3122,3124,3135, + 3147,3159,3163,3172,3176,3194,3197,3205,3214,3223,3246,3262,3269, + 3272,3281,3285,3289,3301,3326,3333,3336,3351,3372,3376,3378,3388, + 3390,3400,3415,3417,3430,3434,3441,3446,3454,3459,3468,3500,3521, + 3524,3528,3534,3540,3549,3553,3555,3562,3570,3578,3586,3596,3606, + 3613,3617,3624,3632,3648,3652,3657,3661,3679,3699,3709,3712,3717, + 3719,3722,3725,3735,3744,3751,3763,3772,3782,3785,3789,3795,3800, + 3817 ]; private static __ATN: antlr.ATN; @@ -26332,12 +26504,42 @@ export class ViewNameContext extends antlr.ParserRuleContext { } +export class EmptyColumnContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_emptyColumn; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterEmptyColumn) { + listener.enterEmptyColumn(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitEmptyColumn) { + listener.exitEmptyColumn(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitEmptyColumn) { + return visitor.visitEmptyColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public multipartIdentifier(): MultipartIdentifierContext | null { - return this.getRuleContext(0, MultipartIdentifierContext); + public multipartIdentifierAllowEmpty(): MultipartIdentifierAllowEmptyContext | null { + return this.getRuleContext(0, MultipartIdentifierAllowEmptyContext); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_columnName; @@ -26392,6 +26594,39 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { } +export class ColumnNamePathAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public multipartIdentifierAllowEmpty(): MultipartIdentifierAllowEmptyContext | null { + return this.getRuleContext(0, MultipartIdentifierAllowEmptyContext); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_columnNamePathAllowEmpty; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterColumnNamePathAllowEmpty) { + listener.enterColumnNamePathAllowEmpty(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitColumnNamePathAllowEmpty) { + listener.exitColumnNamePathAllowEmpty(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePathAllowEmpty) { + return visitor.visitColumnNamePathAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameSeqContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -28921,6 +29156,18 @@ export class JoinCriteriaContext extends antlr.ParserRuleContext { public booleanExpression(): BooleanExpressionContext | null { return this.getRuleContext(0, BooleanExpressionContext); } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext[]; + public columnNamePathAllowEmpty(i: number): ColumnNamePathAllowEmptyContext | null; + public columnNamePathAllowEmpty(i?: number): ColumnNamePathAllowEmptyContext[] | ColumnNamePathAllowEmptyContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnNamePathAllowEmptyContext); + } + + return this.getRuleContext(i, ColumnNamePathAllowEmptyContext); + } + public EQ(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.EQ, 0); + } public KW_USING(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_USING, 0); } @@ -30188,6 +30435,42 @@ export class MultipartIdentifierContext extends antlr.ParserRuleContext { } +export class MultipartIdentifierAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public multipartIdentifier(): MultipartIdentifierContext { + return this.getRuleContext(0, MultipartIdentifierContext)!; + } + public DOT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.DOT, 0); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_multipartIdentifierAllowEmpty; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterMultipartIdentifierAllowEmpty) { + listener.enterMultipartIdentifierAllowEmpty(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitMultipartIdentifierAllowEmpty) { + listener.exitMultipartIdentifierAllowEmpty(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitMultipartIdentifierAllowEmpty) { + return visitor.visitMultipartIdentifierAllowEmpty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class MultipartIdentifierPropertyListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index b72a5cdb..f8aa2acd 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -140,8 +140,10 @@ import { TableNameCreateContext } from "./SparkSqlParser.js"; import { TableNameContext } from "./SparkSqlParser.js"; import { ViewNameCreateContext } from "./SparkSqlParser.js"; import { ViewNameContext } from "./SparkSqlParser.js"; +import { EmptyColumnContext } from "./SparkSqlParser.js"; import { ColumnNameContext } from "./SparkSqlParser.js"; import { ColumnNamePathContext } from "./SparkSqlParser.js"; +import { ColumnNamePathAllowEmptyContext } from "./SparkSqlParser.js"; import { ColumnNameSeqContext } from "./SparkSqlParser.js"; import { ColumnNameCreateContext } from "./SparkSqlParser.js"; import { IdentifierReferenceContext } from "./SparkSqlParser.js"; @@ -215,6 +217,7 @@ import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; import { MultipartIdentifierContext } from "./SparkSqlParser.js"; +import { MultipartIdentifierAllowEmptyContext } from "./SparkSqlParser.js"; import { MultipartIdentifierPropertyListContext } from "./SparkSqlParser.js"; import { MultipartIdentifierPropertyContext } from "./SparkSqlParser.js"; import { TableIdentifierContext } from "./SparkSqlParser.js"; @@ -1807,6 +1810,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitViewName?: (ctx: ViewNameContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + enterEmptyColumn?: (ctx: EmptyColumnContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + exitEmptyColumn?: (ctx: EmptyColumnContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.columnName`. * @param ctx the parse tree @@ -1827,6 +1840,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + */ + enterColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + */ + exitColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.columnNameSeq`. * @param ctx the parse tree @@ -2567,6 +2590,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitMultipartIdentifier?: (ctx: MultipartIdentifierContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.multipartIdentifierAllowEmpty`. + * @param ctx the parse tree + */ + enterMultipartIdentifierAllowEmpty?: (ctx: MultipartIdentifierAllowEmptyContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.multipartIdentifierAllowEmpty`. + * @param ctx the parse tree + */ + exitMultipartIdentifierAllowEmpty?: (ctx: MultipartIdentifierAllowEmptyContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.multipartIdentifierPropertyList`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index d227e2f4..ce0e30c4 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -140,8 +140,10 @@ import { TableNameCreateContext } from "./SparkSqlParser.js"; import { TableNameContext } from "./SparkSqlParser.js"; import { ViewNameCreateContext } from "./SparkSqlParser.js"; import { ViewNameContext } from "./SparkSqlParser.js"; +import { EmptyColumnContext } from "./SparkSqlParser.js"; import { ColumnNameContext } from "./SparkSqlParser.js"; import { ColumnNamePathContext } from "./SparkSqlParser.js"; +import { ColumnNamePathAllowEmptyContext } from "./SparkSqlParser.js"; import { ColumnNameSeqContext } from "./SparkSqlParser.js"; import { ColumnNameCreateContext } from "./SparkSqlParser.js"; import { IdentifierReferenceContext } from "./SparkSqlParser.js"; @@ -215,6 +217,7 @@ import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; import { MultipartIdentifierContext } from "./SparkSqlParser.js"; +import { MultipartIdentifierAllowEmptyContext } from "./SparkSqlParser.js"; import { MultipartIdentifierPropertyListContext } from "./SparkSqlParser.js"; import { MultipartIdentifierPropertyContext } from "./SparkSqlParser.js"; import { TableIdentifierContext } from "./SparkSqlParser.js"; @@ -1186,6 +1189,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.emptyColumn`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEmptyColumn?: (ctx: EmptyColumnContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.columnName`. * @param ctx the parse tree @@ -1198,6 +1207,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.columnNamePathAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePathAllowEmpty?: (ctx: ColumnNamePathAllowEmptyContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.columnNameSeq`. * @param ctx the parse tree @@ -1641,6 +1656,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.multipartIdentifierAllowEmpty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitMultipartIdentifierAllowEmpty?: (ctx: MultipartIdentifierAllowEmptyContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.multipartIdentifierPropertyList`. * @param ctx the parse tree diff --git a/src/parser/common/basicSQL.ts b/src/parser/common/basicSQL.ts index cf96267b..58d5a3f8 100644 --- a/src/parser/common/basicSQL.ts +++ b/src/parser/common/basicSQL.ts @@ -538,7 +538,7 @@ export abstract class BasicSQL< const core = new CodeCompletionCore(sqlParserIns); core.preferredRules = this.preferredRules; // core.showRuleStack = true; - // core.showResult = true; + // core.showResult = true; const candidates = core.collectCandidates(caretTokenIndex, parseTree); const originalSuggestions = this.processCandidates(candidates, allTokens, caretTokenIndex); diff --git a/src/parser/flink/index.ts b/src/parser/flink/index.ts index b196b27b..f6247420 100644 --- a/src/parser/flink/index.ts +++ b/src/parser/flink/index.ts @@ -55,6 +55,7 @@ export class FlinkSQL extends BasicSQL { MySqlParser.RULE_functionName, MySqlParser.RULE_functionNameCreate, MySqlParser.RULE_columnName, + MySqlParser.RULE_columnNamePath, MySqlParser.RULE_columnNameCreate, ...this.excludeKeywordRules, ]); @@ -115,7 +116,8 @@ export class MySQL extends BasicSQL { syntaxContextType = EntityContextType.FUNCTION_CREATE; break; } - case MySqlParser.RULE_columnName: { + case MySqlParser.RULE_columnName: + case MySqlParser.RULE_columnNamePath: { syntaxContextType = EntityContextType.COLUMN; break; } diff --git a/src/parser/mysql/mysqlErrorListener.ts b/src/parser/mysql/mysqlErrorListener.ts index fe2668fd..e9229a76 100644 --- a/src/parser/mysql/mysqlErrorListener.ts +++ b/src/parser/mysql/mysqlErrorListener.ts @@ -14,6 +14,7 @@ export class MysqlErrorListener extends ParseErrorListener { [MySqlParser.RULE_functionName, 'function'], [MySqlParser.RULE_functionNameCreate, 'function'], [MySqlParser.RULE_columnName, 'column'], + [MySqlParser.RULE_columnNamePath, 'column'], [MySqlParser.RULE_columnNameCreate, 'column'], ]); @@ -57,6 +58,7 @@ export class MysqlErrorListener extends ParseErrorListener { case MySqlParser.RULE_tableName: case MySqlParser.RULE_functionName: case MySqlParser.RULE_viewName: + case MySqlParser.RULE_columnNamePath: case MySqlParser.RULE_columnName: { if (!result.includes(`{existing}${name}`)) { result.push(`{existing}${name}`); diff --git a/src/parser/spark/index.ts b/src/parser/spark/index.ts index 22c62124..6a89145b 100644 --- a/src/parser/spark/index.ts +++ b/src/parser/spark/index.ts @@ -49,6 +49,7 @@ export class SparkSQL extends BasicSQL